[
  {
    "answer": "SELECT COUNT(*) FROM head WHERE age > 56",
    "question_en": "How many heads of the departments are older than 56 ?",
    "question_th": "มีหัวหน้าแผนกกี่คนที่อายุมากกว่า 56 ปี ?",
    "context": "CREATE TABLE head (age INTEGER)"
  },
  {
    "answer": "SELECT name, born_state, age FROM head ORDER BY age",
    "question_en": "List the name, born state and age of the heads of departments ordered by age.",
    "question_th": "ระบุชื่อ รัฐเกิด และอายุของหัวหน้าแผนก เรียงลำดับตามอายุ",
    "context": "CREATE TABLE head (name VARCHAR, born_state VARCHAR, age VARCHAR)"
  },
  {
    "answer": "SELECT creation, name, budget_in_billions FROM department",
    "question_en": "List the creation year, name and budget of each department.",
    "question_th": "ระบุปีที่สร้าง ชื่อ และงบประมาณของแต่ละแผนก",
    "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_en": "What are the maximum and minimum budget of the departments?",
    "question_th": "งบประมาณสูงสุดและขั้นต่ำของหน่วยงานคือเท่าไร?",
    "context": "CREATE TABLE department (budget_in_billions INTEGER)"
  },
  {
    "answer": "SELECT AVG(num_employees) FROM department WHERE ranking BETWEEN 10 AND 15",
    "question_en": "What is the average number of employees of the departments whose rank is between 10 and 15?",
    "question_th": "จำนวนพนักงานโดยเฉลี่ยของแผนกที่มีอันดับระหว่าง 10 ถึง 15 คือเท่าใด",
    "context": "CREATE TABLE department (num_employees INTEGER, ranking INTEGER)"
  },
  {
    "answer": "SELECT name FROM head WHERE born_state <> 'California'",
    "question_en": "What are the names of the heads who are born outside the California state?",
    "question_th": "หัวหน้าที่เกิดนอกรัฐแคลิฟอร์เนียชื่ออะไร",
    "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_en": "What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'?",
    "question_th": "ปีแห่งการสร้างที่แตกต่างกันของแผนกที่บริหารโดยเลขานุการที่เกิดในรัฐ 'อลาบามา' คืออะไร?",
    "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_en": "What are the names of the states where at least 3 heads were born?",
    "question_th": "รัฐที่เกิดอย่างน้อย 3 หัวมีชื่ออะไรบ้าง?",
    "context": "CREATE TABLE head (born_state VARCHAR)"
  },
  {
    "answer": "SELECT creation FROM department GROUP BY creation ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "In which year were most departments established?",
    "question_th": "หน่วยงานส่วนใหญ่ก่อตั้งในปีใด?",
    "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_en": "Show the name and number of employees for the departments managed by heads whose temporary acting value is 'Yes'?",
    "question_th": "แสดงชื่อและจำนวนพนักงานของแผนกที่บริหารโดยหัวหน้าซึ่งมีค่ารักษาการชั่วคราวเป็น 'ใช่' หรือไม่?",
    "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_en": "How many acting statuses are there?",
    "question_th": "สถานะการแสดงมีกี่สถานะ?",
    "context": "CREATE TABLE management (temporary_acting VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM department WHERE NOT department_id IN (SELECT department_id FROM management)",
    "question_en": "How many departments are led by heads who are not mentioned?",
    "question_th": "มีกี่แผนกที่นำโดยหัวหน้าที่ไม่ได้กล่าวถึง?",
    "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_en": "What are the distinct ages of the heads who are acting?",
    "question_th": "หัวหน้าที่แสดงมีอายุเท่าไร?",
    "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_en": "List the states where both the secretary of 'Treasury' department and the secretary of 'Homeland Security' were born.",
    "question_th": "ระบุรัฐที่ทั้งเลขาธิการแผนก 'กระทรวงการคลัง' และเลขาธิการ 'ความมั่นคงแห่งมาตุภูมิ' เกิด",
    "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_en": "Which department has more than 1 head at a time? List the id, name and the number of heads.",
    "question_th": "แผนกใดมีมากกว่า 1 หัวต่อครั้ง? ระบุรหัส ชื่อ และจำนวนหัว",
    "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_en": "Which head's name has the substring 'Ha'? List the id and name.",
    "question_th": "ชื่อหัวไหนมีสายย่อย 'ฮา'? ระบุไอดีและชื่อ",
    "context": "CREATE TABLE head (head_id VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM farm",
    "question_en": "How many farms are there?",
    "question_th": "มีฟาร์มทั้งหมดกี่แห่ง?",
    "context": "CREATE TABLE farm (Id VARCHAR)"
  },
  {
    "answer": "SELECT Total_Horses FROM farm ORDER BY Total_Horses",
    "question_en": "List the total number of horses on farms in ascending order.",
    "question_th": "แสดงรายการจำนวนม้าทั้งหมดในฟาร์มโดยเรียงลำดับจากน้อยไปหามาก",
    "context": "CREATE TABLE farm (Total_Horses VARCHAR)"
  },
  {
    "answer": "SELECT Hosts FROM farm_competition WHERE Theme <> 'Aliens'",
    "question_en": "What are the hosts of competitions whose theme is not \"Aliens\"?",
    "question_th": "เจ้าภาพการแข่งขันใดบ้างที่มีธีมไม่ใช่ \"เอเลี่ยน\"?",
    "context": "CREATE TABLE farm_competition (Hosts VARCHAR, Theme VARCHAR)"
  },
  {
    "answer": "SELECT Theme FROM farm_competition ORDER BY YEAR",
    "question_en": "What are the themes of farm competitions sorted by year in ascending order?",
    "question_th": "หัวข้อของการแข่งขันฟาร์มเรียงตามปีจากน้อยไปมากมีอะไรบ้าง",
    "context": "CREATE TABLE farm_competition (Theme VARCHAR, YEAR VARCHAR)"
  },
  {
    "answer": "SELECT AVG(Working_Horses) FROM farm WHERE Total_Horses > 5000",
    "question_en": "What is the average number of working horses of farms with more than 5000 total number of horses?",
    "question_th": "จำนวนม้าใช้งานโดยเฉลี่ยของฟาร์มที่มีจำนวนม้ารวมมากกว่า 5,000 ตัวคือเท่าไร?",
    "context": "CREATE TABLE farm (Working_Horses INTEGER, Total_Horses INTEGER)"
  },
  {
    "answer": "SELECT MAX(Cows), MIN(Cows) FROM farm",
    "question_en": "What are the maximum and minimum number of cows across all farms.",
    "question_th": "จำนวนวัวสูงสุดและต่ำสุดในทุกฟาร์มคือเท่าใด",
    "context": "CREATE TABLE farm (Cows INTEGER)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT Status) FROM city",
    "question_en": "How many different statuses do cities have?",
    "question_th": "เมืองต่างๆ มีสถานะแตกต่างกันกี่สถานะ?",
    "context": "CREATE TABLE city (Status VARCHAR)"
  },
  {
    "answer": "SELECT Official_Name FROM city ORDER BY Population DESC",
    "question_en": "List official names of cities in descending order of population.",
    "question_th": "รายชื่อเมืองอย่างเป็นทางการ เรียงตามจำนวนประชากรจากมากไปน้อย",
    "context": "CREATE TABLE city (Official_Name VARCHAR, Population VARCHAR)"
  },
  {
    "answer": "SELECT Official_Name, Status FROM city ORDER BY Population DESC LIMIT 1",
    "question_en": "List the official name and status of the city with the largest population.",
    "question_th": "ระบุชื่อและสถานะอย่างเป็นทางการของเมืองที่มีประชากรมากที่สุด",
    "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_en": "Show the years and the official names of the host cities of competitions.",
    "question_th": "แสดงปีและชื่ออย่างเป็นทางการของเมืองเจ้าภาพการแข่งขัน",
    "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_en": "Show the official names of the cities that have hosted more than one competition.",
    "question_th": "แสดงชื่ออย่างเป็นทางการของเมืองที่เป็นเจ้าภาพการแข่งขันมากกว่าหนึ่งครั้ง",
    "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_en": "Show the status of the city that has hosted the greatest number of competitions.",
    "question_th": "แสดงสถานะเมืองที่จัดการแข่งขันมากที่สุด",
    "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_en": "Please show the themes of competitions with host cities having populations larger than 1000.",
    "question_th": "โปรดแสดงหัวข้อของการแข่งขันกับเมืองเจ้าภาพที่มีประชากรมากกว่า 1,000 คน",
    "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_en": "Please show the different statuses of cities and the average population of cities with each status.",
    "question_th": "โปรดแสดงสถานะต่างๆ ของเมืองและจำนวนประชากรเฉลี่ยของเมืองในแต่ละสถานะ",
    "context": "CREATE TABLE city (Status VARCHAR, Population INTEGER)"
  },
  {
    "answer": "SELECT Status FROM city GROUP BY Status ORDER BY COUNT(*)",
    "question_en": "Please show the different statuses, ordered by the number of cities that have each.",
    "question_th": "กรุณาแสดงสถานะต่างๆ เรียงตามจำนวนเมืองที่มีแต่ละเมือง",
    "context": "CREATE TABLE city (Status VARCHAR)"
  },
  {
    "answer": "SELECT Status FROM city GROUP BY Status ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "List the most common type of Status across cities.",
    "question_th": "แสดงรายการสถานะประเภทที่พบบ่อยที่สุดในเมืองต่างๆ",
    "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_en": "List the official names of cities that have not held any competition.",
    "question_th": "รายชื่อเมืองอย่างเป็นทางการที่ยังไม่มีการแข่งขันใดๆ",
    "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_en": "Show the status shared by cities with population bigger than 1500 and smaller than 500.",
    "question_th": "แสดงสถานะที่ใช้ร่วมกันโดยเมืองที่มีประชากรมากกว่า 1,500 คนและน้อยกว่า 500 คน",
    "context": "CREATE TABLE city (Status VARCHAR, Population INTEGER)"
  },
  {
    "answer": "SELECT Official_Name FROM city WHERE Population > 1500 OR Population < 500",
    "question_en": "Find the official names of cities with population bigger than 1500 or smaller than 500.",
    "question_th": "ค้นหาชื่ออย่างเป็นทางการของเมืองที่มีประชากรมากกว่า 1,500 คนหรือน้อยกว่า 500 คน",
    "context": "CREATE TABLE city (Official_Name VARCHAR, Population VARCHAR)"
  },
  {
    "answer": "SELECT Census_Ranking FROM city WHERE Status <> \"Village\"",
    "question_en": "Show the census ranking of cities whose status are not \"Village\".",
    "question_th": "แสดงอันดับเมืองที่มีสถานะไม่ใช่ \"หมู่บ้าน\"",
    "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_en": "which course has most number of registered students?",
    "question_th": "สาขาวิชาใดมีจำนวนนักศึกษาลงทะเบียนมากที่สุด?",
    "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_en": "what is id of students who registered some courses but the least number of courses in these students?",
    "question_th": "รหัสของนักเรียนที่ลงทะเบียนบางหลักสูตรแต่มีจำนวนหลักสูตรน้อยที่สุดในนักเรียนเหล่านี้คืออะไร?",
    "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_en": "what are the first name and last name of all candidates?",
    "question_th": "ชื่อและนามสกุลของผู้สมัครทั้งหมดคืออะไร?",
    "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_en": "List the id of students who never attends courses?",
    "question_th": "ระบุรหัสนักศึกษาที่ไม่เคยเข้าเรียน?",
    "context": "CREATE TABLE student_course_attendance (student_id VARCHAR); CREATE TABLE students (student_id VARCHAR)"
  },
  {
    "answer": "SELECT student_id FROM student_course_attendance",
    "question_en": "List the id of students who attended some courses?",
    "question_th": "ระบุรหัสนักศึกษาที่เข้าเรียนบางหลักสูตร?",
    "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_en": "What are the ids of all students for courses and what are the names of those courses?",
    "question_th": "รหัสของนักเรียนทุกคนสำหรับหลักสูตรคืออะไร และหลักสูตรเหล่านั้นชื่ออะไร?",
    "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_en": "What is detail of the student who most recently registered course?",
    "question_th": "รายละเอียดของนักศึกษาที่ลงทะเบียนเรียนหลักสูตรล่าสุดเป็นอย่างไร?",
    "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_en": "How many students attend course English?",
    "question_th": "มีนักเรียนกี่คนที่เข้าเรียนหลักสูตรภาษาอังกฤษ?",
    "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_en": "How many courses do the student whose id is 171 attend?",
    "question_th": "นักเรียนที่มีรหัส 171 เข้าร่วมกี่หลักสูตร?",
    "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_en": "Find id of the candidate whose email is stanley.monahan@example.org?",
    "question_th": "ค้นหารหัสของผู้สมัครที่มีอีเมลคือ 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_en": "Find id of the candidate who most recently accessed the course?",
    "question_th": "ค้นหารหัสของผู้สมัครที่เข้าถึงหลักสูตรล่าสุดหรือไม่",
    "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_en": "What is detail of the student who registered the most number of courses?",
    "question_th": "รายละเอียดของนักศึกษาที่ลงทะเบียนรายวิชามากที่สุดเป็นอย่างไร?",
    "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_en": "List the id of students who registered some courses and the number of their registered courses?",
    "question_th": "ระบุรหัสนักศึกษาที่ลงทะเบียนบางหลักสูตรและจำนวนหลักสูตรที่ลงทะเบียน?",
    "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_en": "How many registed students do each course have? List course name and the number of their registered students?",
    "question_th": "แต่ละหลักสูตรมีนักศึกษาที่ลงทะเบียนจำนวนกี่คน? ระบุชื่อหลักสูตรและจำนวนนักศึกษาที่ลงทะเบียน?",
    "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_en": "Find id of candidates whose assessment code is \"Pass\"?",
    "question_th": "ค้นหา ID ของผู้สมัครที่มีรหัสการประเมินเป็น \"ผ่าน\" หรือไม่",
    "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_en": "Find the cell mobile number of the candidates whose assessment code is \"Fail\"?",
    "question_th": "ค้นหาหมายเลขโทรศัพท์มือถือของผู้สมัครที่มีรหัสการประเมินว่า \"ล้มเหลว\" หรือไม่",
    "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_en": "What are the id of students who registered course 301?",
    "question_th": "รหัสนักศึกษาที่ลงทะเบียนหลักสูตร 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_en": "What is the id of the student who most recently registered course 301?",
    "question_th": "รหัสของนักเรียนที่ลงทะเบียนหลักสูตร 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_en": "Find distinct cities of addresses of people?",
    "question_th": "ค้นหาเมืองที่อยู่ของผู้คนที่แตกต่างกันหรือไม่?",
    "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_en": "Find distinct cities of address of students?",
    "question_th": "ค้นหาเมืองที่อยู่ของนักเรียนที่แตกต่างกันหรือไม่",
    "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_en": "List the names of courses in alphabetical order?",
    "question_th": "รายชื่อรายวิชาเรียงตามตัวอักษร?",
    "context": "CREATE TABLE courses (course_name VARCHAR)"
  },
  {
    "answer": "SELECT first_name FROM people ORDER BY first_name",
    "question_en": "List the first names of people in alphabetical order?",
    "question_th": "เรียงชื่อคนตามลำดับตัวอักษร?",
    "context": "CREATE TABLE people (first_name VARCHAR)"
  },
  {
    "answer": "SELECT student_id FROM student_course_registrations UNION SELECT student_id FROM student_course_attendance",
    "question_en": "What are the id of students who registered courses or attended courses?",
    "question_th": "รหัสของนักเรียนที่ลงทะเบียนหลักสูตรหรือเข้าเรียนหลักสูตรคืออะไร?",
    "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_en": "Find the id of courses which are registered or attended by student whose id is 121?",
    "question_th": "ค้นหารหัสหลักสูตรที่ลงทะเบียนหรือเข้าเรียนโดยนักศึกษาที่มีรหัส 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_en": "What are all info of students who registered courses but not attended courses?",
    "question_th": "ข้อมูลของนักศึกษาที่ลงทะเบียนเรียนแต่ไม่ได้เข้าเรียนมีอะไรบ้าง?",
    "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_en": "List the id of students who registered course statistics in the order of registration date.",
    "question_th": "ระบุรหัสนักศึกษาที่ลงทะเบียนสถิติรายวิชาตามลำดับวันที่ลงทะเบียน",
    "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_en": "List the id of students who attended  statistics courses in the order of attendance date.",
    "question_th": "ระบุรหัสนักศึกษาที่เข้าเรียนหลักสูตรสถิติตามลำดับวันที่เข้าเรียน",
    "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_en": "Give me the dates when the max temperature was higher than 85.",
    "question_th": "บอกวันที่ที่อุณหภูมิสูงสุดสูงกว่า 85 ให้ฉันหน่อย",
    "context": "CREATE TABLE weather (date VARCHAR, max_temperature_f INTEGER)"
  },
  {
    "answer": "SELECT name FROM station WHERE lat < 37.5",
    "question_en": "What are the names of stations that have latitude lower than 37.5?",
    "question_th": "สถานีที่มีละติจูดต่ำกว่า 37.5 ชื่อสถานีใดบ้าง",
    "context": "CREATE TABLE station (name VARCHAR, lat INTEGER)"
  },
  {
    "answer": "SELECT city, MAX(lat) FROM station GROUP BY city",
    "question_en": "For each city, return the highest latitude among its stations.",
    "question_th": "สำหรับแต่ละเมือง ให้ส่งคืนละติจูดสูงสุดในบรรดาสถานีต่างๆ",
    "context": "CREATE TABLE station (city VARCHAR, lat INTEGER)"
  },
  {
    "answer": "SELECT start_station_name, end_station_name FROM trip ORDER BY id LIMIT 3",
    "question_en": "Give me the start station and end station for the trips with the three oldest id.",
    "question_th": "บอกสถานีเริ่มต้นและสถานีปลายทางสำหรับการเดินทางด้วยรหัสที่เก่าแก่ที่สุดสามรหัส",
    "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_en": "What is the average latitude and longitude of stations located in San Jose city?",
    "question_th": "ละติจูดและลองจิจูดเฉลี่ยของสถานีที่ตั้งอยู่ในเมือง แซนโฮเซ คือเท่าใด",
    "context": "CREATE TABLE station (lat INTEGER, long INTEGER, city VARCHAR)"
  },
  {
    "answer": "SELECT id FROM trip ORDER BY duration LIMIT 1",
    "question_en": "What is the id of the trip that has the shortest duration?",
    "question_th": "ID ของการเดินทางที่มีระยะเวลาสั้นที่สุดคืออะไร?",
    "context": "CREATE TABLE trip (id VARCHAR, duration VARCHAR)"
  },
  {
    "answer": "SELECT SUM(duration), MAX(duration) FROM trip WHERE bike_id = 636",
    "question_en": "What is the total and maximum duration of trips with bike id 636?",
    "question_th": "ระยะเวลาการเดินทางทั้งหมดและสูงสุดด้วยจักรยาน 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_en": "For each zip code, return the average mean temperature of August there.",
    "question_th": "สำหรับแต่ละรหัสไปรษณีย์ ให้ส่งกลับอุณหภูมิเฉลี่ยเฉลี่ยของเดือนสิงหาคมที่นั่น",
    "context": "CREATE TABLE weather (zip_code VARCHAR, mean_temperature_f INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT bike_id) FROM trip",
    "question_en": "From the trip record, find the number of unique bikes.",
    "question_th": "จากบันทึกการเดินทาง จงหาจำนวนจักรยานที่ไม่ซ้ำ",
    "context": "CREATE TABLE trip (bike_id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT city) FROM station",
    "question_en": "What is the number of distinct cities the stations are located at?",
    "question_th": "สถานีต่างๆ ตั้งอยู่ที่เมืองจำนวนเท่าใด",
    "context": "CREATE TABLE station (city VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM station WHERE city = \"Mountain View\"",
    "question_en": "How many stations does Mountain View city has?",
    "question_th": "เมาท์เทนวิวซิตี้มีกี่สถานี?",
    "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_en": "Return the unique name for stations that have ever had 7 bikes available.",
    "question_th": "ส่งกลับชื่อเฉพาะของสถานีที่เคยมีจักรยาน 7 คัน",
    "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_en": "Which start station had the most trips starting from August? Give me the name and id of the station.",
    "question_th": "สถานีต้นทางใดมีการเดินทางมากที่สุดตั้งแต่เดือนสิงหาคม? แจ้งชื่อและรหัสสถานีให้ฉันทราบ",
    "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_en": "Which bike traveled the most often in zip code 94002?",
    "question_th": "จักรยานคันไหนเดินทางบ่อยที่สุดในรหัสไปรษณีย์ 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_en": "How many days had both mean humidity above 50 and mean visibility above 8?",
    "question_th": "กี่วันที่มีความชื้นเฉลี่ยสูงกว่า 50 และทัศนวิสัยเฉลี่ยมากกว่า 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_en": "What is the latitude, longitude, city of the station from which the shortest trip started?",
    "question_th": "ละติจูด ลองจิจูด เมืองของสถานีที่เริ่มการเดินทางสั้นที่สุดคือเท่าใด",
    "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_en": "What are the ids of stations that are located in San Francisco and have average bike availability above 10.",
    "question_th": "รหัสของสถานีที่ตั้งอยู่ในซานฟรานซิสโกและมีจักรยานว่างโดยเฉลี่ยมากกว่า 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_en": "What are the names and ids of stations that had more than 14 bikes available on average or were installed in December?",
    "question_th": "ชื่อและรหัสของสถานีที่มีจักรยานโดยเฉลี่ยมากกว่า 14 คันหรือติดตั้งในเดือนธันวาคมคืออะไร",
    "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_en": "What is the 3 most common cloud cover rates in the region of zip code 94107?",
    "question_th": "อัตราการปกคลุมของเมฆที่พบบ่อยที่สุด 3 อันดับในภูมิภาครหัสไปรษณีย์ 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_en": "What is the zip code in which the average mean sea level pressure is the lowest?",
    "question_th": "รหัสไปรษณีย์ที่ความดันเฉลี่ยระดับน้ำทะเลเฉลี่ยต่ำสุดคือข้อใด",
    "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_en": "What is the average bike availability in stations that are not located in Palo Alto?",
    "question_th": "ความพร้อมใช้งานของจักรยานโดยเฉลี่ยในสถานีที่ไม่ได้อยู่ใน 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_en": "What is the average longitude of stations that never had bike availability more than 10?",
    "question_th": "ลองจิจูดเฉลี่ยของสถานีที่ไม่เคยมีจักรยานว่างเกิน 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_en": "When and in what zip code did max temperature reach 80?",
    "question_th": "เมื่อใดและในรหัสไปรษณีย์ใดอุณหภูมิสูงสุดถึง 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_en": "Give me ids for all the trip that took place in a zip code area with average mean temperature above 60.",
    "question_th": "ให้รหัสสำหรับการเดินทางทั้งหมดที่เกิดขึ้นในพื้นที่รหัสไปรษณีย์ซึ่งมีอุณหภูมิเฉลี่ยสูงกว่า 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_en": "For each zip code, return how many times max wind speed reached 25?",
    "question_th": "สำหรับแต่ละรหัสไปรษณีย์ ให้ส่งคืนจำนวนครั้งที่ความเร็วลมสูงสุดถึง 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_en": "On which day and in which zip code was the min dew point lower than any day in zip code 94107?",
    "question_th": "จุดน้ำค้างขั้นต่ำต่ำกว่าวันใดในรหัสไปรษณีย์ 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_en": "For each trip, return its ending station's installation date.",
    "question_th": "สำหรับการเดินทางแต่ละครั้ง ให้ส่งคืนวันที่ติดตั้งสถานีปลายทาง",
    "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_en": "Which trip started from the station with the largest dock count? Give me the trip id.",
    "question_th": "การเดินทางใดเริ่มต้นจากสถานีที่มีจำนวนท่าเรือมากที่สุด? ขอรหัสทริปหน่อยค่ะ",
    "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_en": "Count the number of trips that did not end in San Francisco city.",
    "question_th": "นับจำนวนเที่ยวที่ไม่สิ้นสุดในเมืองซานฟรานซิสโก",
    "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_en": "In zip code 94107, on which day neither Fog nor Rain was not observed?",
    "question_th": "ในรหัสไปรษณีย์ 94107 ไม่พบทั้งหมอกและฝนในวันใด",
    "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_en": "What are the ids of stations that have latitude above 37.4 and never had bike availability below 7?",
    "question_th": "รหัสของสถานีที่มีละติจูดสูงกว่า 37.4 และไม่เคยมีจักรยานว่างต่ำกว่า 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_en": "What are names of stations that have average bike availability above 10 and are not located in San Jose city?",
    "question_th": "ชื่อสถานีใดบ้างที่มีจักรยานว่างโดยเฉลี่ยมากกว่า 10 และไม่ได้ตั้งอยู่ในเมืองซานโฮเซ",
    "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_en": "What are the name, latitude, and city of the station with the lowest latitude?",
    "question_th": "ชื่อ ละติจูด และเมืองของสถานีที่มีละติจูดต่ำสุดคืออะไร",
    "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_en": "What are the date, mean temperature and mean humidity for the top 3 days with the largest max gust speeds?",
    "question_th": "อุณหภูมิเฉลี่ย และความชื้นเฉลี่ยในช่วง 3 วันแรกที่มีลมกระโชกสูงสุดสูงสุดคือวันที่เท่าไร",
    "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_en": "List the name and the number of stations for all the cities that have at least 15 stations.",
    "question_th": "ระบุชื่อและจำนวนสถานีของเมืองทั้งหมดที่มีอย่างน้อย 15 สถานี",
    "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_en": "Find the ids and names of stations from which at least 200 trips started.",
    "question_th": "ค้นหารหัสและชื่อสถานีที่เริ่มการเดินทางอย่างน้อย 200 ครั้ง",
    "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_en": "Find the zip code in which the average mean visibility is lower than 10.",
    "question_th": "ค้นหารหัสไปรษณีย์ที่มีค่าการมองเห็นเฉลี่ยต่ำกว่า 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_en": "List all the cities in a decreasing order of each city's stations' highest latitude.",
    "question_th": "รายชื่อเมืองทั้งหมดโดยเรียงจากละติจูดสูงสุดของสถานีแต่ละเมืองโดยเรียงลำดับจากลดลง",
    "context": "CREATE TABLE station (city VARCHAR, lat INTEGER)"
  },
  {
    "answer": "SELECT date, cloud_cover FROM weather ORDER BY cloud_cover DESC LIMIT 5",
    "question_en": "What are the dates that had the top 5 cloud cover rates? Also tell me the cloud cover rate.",
    "question_th": "วันที่ใดที่มีอัตราการครอบคลุมคลาวด์ 5 อันดับแรก? บอกอัตราการปกคลุมของเมฆให้ฉันด้วย",
    "context": "CREATE TABLE weather (date VARCHAR, cloud_cover VARCHAR)"
  },
  {
    "answer": "SELECT id, duration FROM trip ORDER BY duration DESC LIMIT 3",
    "question_en": "What are the ids and durations of the trips with the top 3 durations?",
    "question_th": "รหัสและระยะเวลาของการเดินทางที่มีระยะเวลา 3 อันดับแรกคือเท่าใด",
    "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_en": "For each station, return its longitude and the average duration of trips that started from the station.",
    "question_th": "สำหรับแต่ละสถานี ให้ส่งคืนลองจิจูดและระยะเวลาเฉลี่ยของการเดินทางที่เริ่มต้นจากสถานี",
    "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_en": "For each station, find its latitude and the minimum duration of trips that ended at the station.",
    "question_th": "สำหรับแต่ละสถานี ให้ค้นหาละติจูดและระยะเวลาต่ำสุดของการเดินทางที่สิ้นสุดที่สถานี",
    "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_en": "List all the distinct stations from which a trip of duration below 100 started.",
    "question_th": "ระบุสถานีที่แตกต่างกันทั้งหมดที่เริ่มต้นการเดินทางที่มีระยะเวลาต่ำกว่า 100",
    "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_en": "Find all the zip codes in which the max dew point have never reached 70.",
    "question_th": "ค้นหารหัสไปรษณีย์ทั้งหมดที่จุดน้ำค้างสูงสุดไม่เคยถึง 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_en": "Find the id for the trips that lasted at least as long as the average duration of trips in zip code 94103.",
    "question_th": "ค้นหารหัสสำหรับการเดินทางที่กินเวลาอย่างน้อยตราบเท่าที่ระยะเวลาเฉลี่ยของการเดินทางในรหัสไปรษณีย์ 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_en": "What are the dates in which the mean sea level pressure was between 30.3 and 31?",
    "question_th": "วันที่ความกดอากาศเฉลี่ยของระดับน้ำทะเลอยู่ระหว่าง 30.3 ถึง 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_en": "Find the day in which the difference between the max temperature and min temperature was the smallest. Also report the difference.",
    "question_th": "ค้นหาวันที่ความแตกต่างระหว่างอุณหภูมิสูงสุดและอุณหภูมิต่ำสุดน้อยที่สุด รายงานความแตกต่างด้วย",
    "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_en": "What are the id and name of the stations that have ever had more than 12 bikes available?",
    "question_th": "รหัสและชื่อของสถานีที่เคยมีจักรยานมากกว่า 12 คันคืออะไร?",
    "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_en": "Give me the zip code where the average mean humidity is below 70 and at least 100 trips took place.",
    "question_th": "ขอรหัสไปรษณีย์ที่มีความชื้นเฉลี่ยเฉลี่ยต่ำกว่า 70 และมีการเดินทางอย่างน้อย 100 ครั้ง",
    "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_en": "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?",
    "question_th": "สถานีที่ตั้งอยู่ในเมืองปาโลอัลโตแต่ไม่เคยเป็นจุดสิ้นสุดการเดินทางเกิน 100 ครั้งมีชื่อว่าอะไร?",
    "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_en": "How many trips started from Mountain View city and ended at Palo Alto city?",
    "question_th": "มีกี่เที่ยวที่เริ่มจากเมือง Mountain View และไปสิ้นสุดที่เมือง Palo Alto?",
    "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_en": "What is the average latitude and longitude of the starting points of all trips?",
    "question_th": "ละติจูดและลองจิจูดเฉลี่ยของจุดเริ่มต้นของการเดินทางทั้งหมดคือเท่าใด",
    "context": "CREATE TABLE trip (start_station_id VARCHAR); CREATE TABLE station (lat INTEGER, long INTEGER, id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM book",
    "question_en": "How many books are there?",
    "question_th": "มีกี่เล่มคะ?",
    "context": "CREATE TABLE book (Id VARCHAR)"
  },
  {
    "answer": "SELECT Writer FROM book ORDER BY Writer",
    "question_en": "List the writers of the books in ascending alphabetical order.",
    "question_th": "รายชื่อผู้เขียนหนังสือตามลำดับตัวอักษรจากน้อยไปหามาก",
    "context": "CREATE TABLE book (Writer VARCHAR)"
  },
  {
    "answer": "SELECT Title FROM book ORDER BY Issues",
    "question_en": "List the titles of the books in ascending order of issues.",
    "question_th": "เรียงลำดับชื่อหนังสือตามลำดับประเด็น",
    "context": "CREATE TABLE book (Title VARCHAR, Issues VARCHAR)"
  },
  {
    "answer": "SELECT Title FROM book WHERE Writer <> \"Elaine Lee\"",
    "question_en": "What are the titles of the books whose writer is not \"Elaine Lee\"?",
    "question_th": "หนังสือที่ผู้เขียนไม่ใช่ \"เอเลน ลี\" ชื่ออะไร",
    "context": "CREATE TABLE book (Title VARCHAR, Writer VARCHAR)"
  },
  {
    "answer": "SELECT Title, Issues FROM book",
    "question_en": "What are the title and issues of the books?",
    "question_th": "ชื่อหนังสือและประเด็นของหนังสือคืออะไร?",
    "context": "CREATE TABLE book (Title VARCHAR, Issues VARCHAR)"
  },
  {
    "answer": "SELECT Publication_Date FROM publication ORDER BY Price DESC",
    "question_en": "What are the dates of publications in descending order of price?",
    "question_th": "วันที่ตีพิมพ์โดยเรียงลำดับราคาจากมากไปหาน้อยคือเมื่อใด",
    "context": "CREATE TABLE publication (Publication_Date VARCHAR, Price VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT Publisher FROM publication WHERE Price > 5000000",
    "question_en": "What are the distinct publishers of publications with price higher than 5000000?",
    "question_th": "ผู้จัดพิมพ์สิ่งพิมพ์ที่มีราคาสูงกว่า 5000000 รายใดบ้าง",
    "context": "CREATE TABLE publication (Publisher VARCHAR, Price INTEGER)"
  },
  {
    "answer": "SELECT Publisher FROM publication ORDER BY Price DESC LIMIT 1",
    "question_en": "List the publisher of the publication with the highest price.",
    "question_th": "รายชื่อผู้จัดพิมพ์สิ่งพิมพ์ที่มีราคาสูงสุด",
    "context": "CREATE TABLE publication (Publisher VARCHAR, Price VARCHAR)"
  },
  {
    "answer": "SELECT Publication_Date FROM publication ORDER BY Price LIMIT 3",
    "question_en": "List the publication dates of publications with 3 lowest prices.",
    "question_th": "ระบุวันที่ตีพิมพ์สิ่งพิมพ์ที่มีราคาต่ำสุด 3 รายการ",
    "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_en": "Show the title and publication dates of books.",
    "question_th": "แสดงชื่อและวันที่พิมพ์หนังสือ",
    "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_en": "Show writers who have published a book with price more than 4000000.",
    "question_th": "แสดงนักเขียนที่ได้ตีพิมพ์หนังสือที่มีราคามากกว่า 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_en": "Show the titles of books in descending order of publication price.",
    "question_th": "แสดงชื่อหนังสือตามลำดับราคาสิ่งพิมพ์จากมากไปหาน้อย",
    "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_en": "Show publishers that have more than one publication.",
    "question_th": "แสดงผู้จัดพิมพ์ที่มีสิ่งพิมพ์มากกว่าหนึ่งรายการ",
    "context": "CREATE TABLE publication (Publisher VARCHAR)"
  },
  {
    "answer": "SELECT Publisher, COUNT(*) FROM publication GROUP BY Publisher",
    "question_en": "Show different publishers together with the number of publications they have.",
    "question_th": "แสดงผู้จัดพิมพ์ที่แตกต่างกันพร้อมจำนวนสิ่งพิมพ์ที่พวกเขามี",
    "context": "CREATE TABLE publication (Publisher VARCHAR)"
  },
  {
    "answer": "SELECT Publication_Date FROM publication GROUP BY Publication_Date ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "Please show the most common publication date.",
    "question_th": "กรุณาแสดงวันที่ตีพิมพ์ที่พบบ่อยที่สุด",
    "context": "CREATE TABLE publication (Publication_Date VARCHAR)"
  },
  {
    "answer": "SELECT Writer FROM book GROUP BY Writer HAVING COUNT(*) > 1",
    "question_en": "List the writers who have written more than one book.",
    "question_th": "รายชื่อผู้เขียนที่เขียนหนังสือมากกว่าหนึ่งเล่ม",
    "context": "CREATE TABLE book (Writer VARCHAR)"
  },
  {
    "answer": "SELECT Title FROM book WHERE NOT Book_ID IN (SELECT Book_ID FROM publication)",
    "question_en": "List the titles of books that are not published.",
    "question_th": "รายชื่อหนังสือที่ยังไม่ได้จัดพิมพ์",
    "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_en": "Show the publishers that have publications with price higher than 10000000 and publications with price lower than 5000000.",
    "question_th": "แสดงผู้จัดพิมพ์ที่มีสิ่งพิมพ์ที่มีราคาสูงกว่า 10000000 และสิ่งตีพิมพ์ที่มีราคาต่ำกว่า 5000000",
    "context": "CREATE TABLE publication (Publisher VARCHAR, Price INTEGER)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT Publication_Date) FROM publication",
    "question_en": "What is the number of distinct publication dates?",
    "question_th": "จำนวนวันที่ตีพิมพ์ที่แตกต่างกันคือเท่าใด?",
    "context": "CREATE TABLE publication (Publication_Date VARCHAR)"
  },
  {
    "answer": "SELECT Price FROM publication WHERE Publisher = \"Person\" OR Publisher = \"Wiley\"",
    "question_en": "Show the prices of publications whose publisher is either \"Person\" or \"Wiley\"",
    "question_th": "แสดงราคาสิ่งพิมพ์ที่ผู้จัดพิมพ์เป็น \"บุคคล\" หรือ \"ไวลีย์\"",
    "context": "CREATE TABLE publication (Price VARCHAR, Publisher VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM actor",
    "question_en": "How many actors are there?",
    "question_th": "มีนักแสดงกี่คน?",
    "context": "CREATE TABLE actor (Id VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM actor ORDER BY Name",
    "question_en": "List the name of actors in ascending alphabetical order.",
    "question_th": "รายชื่อนักแสดงตามลำดับตัวอักษรจากน้อยไปหามาก",
    "context": "CREATE TABLE actor (Name VARCHAR)"
  },
  {
    "answer": "SELECT Character, Duration FROM actor",
    "question_en": "What are the characters and duration of actors?",
    "question_th": "ตัวละครและระยะเวลาของนักแสดงคืออะไร?",
    "context": "CREATE TABLE actor (Character VARCHAR, Duration VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM actor WHERE Age <> 20",
    "question_en": "List the name of actors whose age is not 20.",
    "question_th": "รายชื่อนักแสดงที่อายุไม่ต่ำกว่า 20 ปี",
    "context": "CREATE TABLE actor (Name VARCHAR, Age VARCHAR)"
  },
  {
    "answer": "SELECT Character FROM actor ORDER BY age DESC",
    "question_en": "What are the characters of actors in descending order of age?",
    "question_th": "ตัวละครของนักแสดงเรียงตามอายุจากมากไปหาน้อยมีอะไรบ้าง?",
    "context": "CREATE TABLE actor (Character VARCHAR, age VARCHAR)"
  },
  {
    "answer": "SELECT Duration FROM actor ORDER BY Age DESC LIMIT 1",
    "question_en": "What is the duration of the oldest actor?",
    "question_th": "นักแสดงที่อายุมากที่สุดมีอายุเท่าไร?",
    "context": "CREATE TABLE actor (Duration VARCHAR, Age VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM musical WHERE Nominee = \"Bob Fosse\"",
    "question_en": "What are the names of musicals with nominee \"Bob Fosse\"?",
    "question_th": "ละครเพลงที่ได้รับการเสนอชื่อเข้าชิง \"Bob Fosse\" ชื่ออะไร?",
    "context": "CREATE TABLE musical (Name VARCHAR, Nominee VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT Nominee FROM musical WHERE Award <> \"Tony Award\"",
    "question_en": "What are the distinct nominees of the musicals with the award that is not \"Tony Award\"?",
    "question_th": "ผู้ที่ได้รับการเสนอชื่อเข้าชิงรางวัลละครเพลงประเภทต่าง ๆ ที่ไม่ใช่ \"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_en": "Show names of actors and names of musicals they are in.",
    "question_th": "แสดงชื่อนักแสดงและชื่อละครเพลงที่พวกเขาอยู่",
    "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_en": "Show names of actors that have appeared in musical with name \"The Phantom of the Opera\".",
    "question_th": "แสดงรายชื่อนักแสดงที่เคยแสดงละครเพลงชื่อ “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_en": "Show names of actors in descending order of the year their musical is awarded.",
    "question_th": "แสดงรายชื่อนักแสดงโดยเรียงลำดับตามปีที่ละครเพลงที่ได้รับรางวัล",
    "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_en": "Show names of musicals and the number of actors who have appeared in the musicals.",
    "question_th": "แสดงชื่อละครเพลงและจำนวนนักแสดงที่ร่วมแสดงละครเพลง",
    "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_en": "Show names of musicals which have at least three actors.",
    "question_th": "แสดงชื่อละครเพลงที่มีนักแสดงอย่างน้อยสามคน",
    "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_en": "Show different nominees and the number of musicals they have been nominated.",
    "question_th": "แสดงผู้ได้รับการเสนอชื่อเข้าชิงที่แตกต่างกันและจำนวนละครเพลงที่พวกเขาได้รับการเสนอชื่อ",
    "context": "CREATE TABLE musical (Nominee VARCHAR)"
  },
  {
    "answer": "SELECT Nominee FROM musical GROUP BY Nominee ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "Please show the nominee who has been nominated the greatest number of times.",
    "question_th": "กรุณาแสดงผู้ที่ได้รับการเสนอชื่อมากที่สุดจำนวนครั้ง",
    "context": "CREATE TABLE musical (Nominee VARCHAR)"
  },
  {
    "answer": "SELECT RESULT FROM musical GROUP BY RESULT ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "List the most common result of the musicals.",
    "question_th": "แสดงรายการผลงานละครเพลงที่พบบ่อยที่สุด",
    "context": "CREATE TABLE musical (RESULT VARCHAR)"
  },
  {
    "answer": "SELECT Nominee FROM musical GROUP BY Nominee HAVING COUNT(*) > 2",
    "question_en": "List the nominees that have been nominated more than two musicals.",
    "question_th": "รายชื่อผู้ที่ได้รับการเสนอชื่อเข้าชิงละครเพลงมากกว่าสองเรื่อง",
    "context": "CREATE TABLE musical (Nominee VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM musical WHERE NOT Musical_ID IN (SELECT Musical_ID FROM actor)",
    "question_en": "List the name of musicals that do not have actors.",
    "question_th": "รายชื่อละครเพลงที่ไม่มีนักแสดง",
    "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_en": "Show the nominees that have nominated musicals for both \"Tony Award\" and \"Drama Desk Award\".",
    "question_th": "แสดงรายชื่อผู้เข้าชิงผลงานละครเพลงทั้ง \"Tony Award\" และ \"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_en": "Show the musical nominee with award \"Bob Fosse\" or \"Cleavant Derricks\".",
    "question_th": "แสดงผู้เข้าชิงละครเพลงพร้อมรางวัล \"Bob Fosse\" หรือ \"Cleavant Derricks\"",
    "context": "CREATE TABLE musical (Nominee VARCHAR, Award VARCHAR)"
  },
  {
    "answer": "SELECT email FROM user_profiles WHERE name = 'Mary'",
    "question_en": "Find the emails of the user named \"Mary\".",
    "question_th": "ค้นหาอีเมลของผู้ใช้ชื่อ \"แมรี่\"",
    "context": "CREATE TABLE user_profiles (email VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT partitionid FROM user_profiles WHERE name = 'Iron Man'",
    "question_en": "What is the partition id of the user named \"Iron Man\".",
    "question_th": "ID พาร์ติชันของผู้ใช้ชื่อ \"Iron Man\" คืออะไร",
    "context": "CREATE TABLE user_profiles (partitionid VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM user_profiles",
    "question_en": "How many users are there?",
    "question_th": "มีผู้ใช้งานกี่คน?",
    "context": "CREATE TABLE user_profiles (Id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM follows",
    "question_en": "How many followers does each user have?",
    "question_th": "ผู้ใช้แต่ละคนมีผู้ติดตามกี่คน?",
    "context": "CREATE TABLE follows (Id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM follows GROUP BY f1",
    "question_en": "Find the number of followers for each user.",
    "question_th": "ค้นหาจำนวนผู้ติดตามของผู้ใช้แต่ละคน",
    "context": "CREATE TABLE follows (f1 VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM tweets",
    "question_en": "Find the number of tweets in record.",
    "question_th": "ค้นหาจำนวนทวีตในบันทึก",
    "context": "CREATE TABLE tweets (Id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT UID) FROM tweets",
    "question_en": "Find the number of users who posted some tweets.",
    "question_th": "ค้นหาจำนวนผู้ใช้ที่โพสต์ทวีตบางส่วน",
    "context": "CREATE TABLE tweets (UID VARCHAR)"
  },
  {
    "answer": "SELECT name, email FROM user_profiles WHERE name LIKE '%Swift%'",
    "question_en": "Find the name and email of the user whose name contains the word ‘Swift’.",
    "question_th": "ค้นหาชื่อและอีเมลของผู้ใช้ที่มีชื่อที่มีคำว่า 'Swift'",
    "context": "CREATE TABLE user_profiles (name VARCHAR, email VARCHAR)"
  },
  {
    "answer": "SELECT name FROM user_profiles WHERE email LIKE '%superstar%' OR email LIKE '%edu%'",
    "question_en": "Find the names of users whose emails contain ‘superstar’ or ‘edu’.",
    "question_th": "ค้นหาชื่อผู้ใช้ที่อีเมลมีคำว่า 'superstar' หรือ 'edu'",
    "context": "CREATE TABLE user_profiles (name VARCHAR, email VARCHAR)"
  },
  {
    "answer": "SELECT text FROM tweets WHERE text LIKE '%intern%'",
    "question_en": "Return the text of tweets about the topic 'intern'.",
    "question_th": "ส่งกลับข้อความทวีตเกี่ยวกับหัวข้อ 'ฝึกงาน'",
    "context": "CREATE TABLE tweets (text VARCHAR)"
  },
  {
    "answer": "SELECT name, email FROM user_profiles WHERE followers > 1000",
    "question_en": "Find the name and email of the users who have more than 1000 followers.",
    "question_th": "ค้นหาชื่อและอีเมลของผู้ใช้ที่มีผู้ติดตามมากกว่า 1,000 คน",
    "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_en": "Find the names of the users whose number of followers is greater than that of the user named \"Tyler Swift\".",
    "question_th": "ค้นหาชื่อผู้ใช้ที่มีจำนวนผู้ติดตามมากกว่าผู้ใช้ชื่อ \"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_en": "Find the name and email for the users who have more than one follower.",
    "question_th": "ค้นหาชื่อและอีเมลสำหรับผู้ใช้ที่มีผู้ติดตามมากกว่าหนึ่งคน",
    "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_en": "Find the names of users who have more than one tweet.",
    "question_th": "ค้นหาชื่อของผู้ใช้ที่มีมากกว่าหนึ่งทวีต",
    "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_en": "Find the id of users who are followed by Mary and Susan.",
    "question_th": "ค้นหา ID ของผู้ใช้ที่ติดตามโดย Mary และ 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_en": "Find the id of users who are followed by Mary or Susan.",
    "question_th": "ค้นหารหัสของผู้ใช้ที่ติดตามโดย Mary หรือ 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_en": "Find the name of the user who has the largest number of followers.",
    "question_th": "ค้นหาชื่อผู้ใช้ที่มีจำนวนผู้ติดตามมากที่สุด",
    "context": "CREATE TABLE user_profiles (name VARCHAR, followers VARCHAR)"
  },
  {
    "answer": "SELECT name, email FROM user_profiles ORDER BY followers LIMIT 1",
    "question_en": "Find the name and email of the user followed by the least number of people.",
    "question_th": "ค้นหาชื่อและอีเมลของผู้ใช้ ตามด้วยจำนวนคนน้อยที่สุด",
    "context": "CREATE TABLE user_profiles (name VARCHAR, email VARCHAR, followers VARCHAR)"
  },
  {
    "answer": "SELECT name, followers FROM user_profiles ORDER BY followers DESC",
    "question_en": "List the name and number of followers for each user, and sort the results by the number of followers in descending order.",
    "question_th": "ระบุชื่อและจำนวนผู้ติดตามสำหรับผู้ใช้แต่ละราย และจัดเรียงผลลัพธ์ตามจำนวนผู้ติดตามจากมากไปน้อย",
    "context": "CREATE TABLE user_profiles (name VARCHAR, followers VARCHAR)"
  },
  {
    "answer": "SELECT name FROM user_profiles ORDER BY followers DESC LIMIT 5",
    "question_en": "List the names of 5 users followed by the largest number of other users.",
    "question_th": "ระบุชื่อผู้ใช้ 5 ราย ตามด้วยผู้ใช้อื่นๆ จำนวนมากที่สุด",
    "context": "CREATE TABLE user_profiles (name VARCHAR, followers VARCHAR)"
  },
  {
    "answer": "SELECT text FROM tweets ORDER BY createdate",
    "question_en": "List the text of all tweets in the order of date.",
    "question_th": "แสดงรายการข้อความของทวีตทั้งหมดตามลำดับวันที่",
    "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_en": "Find the name of each user and number of tweets tweeted by each of them.",
    "question_th": "ค้นหาชื่อของผู้ใช้แต่ละคนและจำนวนทวีตที่แต่ละคนทวีต",
    "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_en": "Find the name and partition id for users who tweeted less than twice.",
    "question_th": "ค้นหาชื่อและรหัสพาร์ติชันสำหรับผู้ใช้ที่ทวีตน้อยกว่าสองครั้ง",
    "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_en": "Find the name of the user who tweeted more than once, and number of tweets tweeted by them.",
    "question_th": "ค้นหาชื่อผู้ใช้ที่ทวีตมากกว่าหนึ่งครั้ง และจำนวนทวีตที่พวกเขาทวีต",
    "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_en": "Find the average number of followers for the users who do not have any tweet.",
    "question_th": "ค้นหาจำนวนผู้ติดตามโดยเฉลี่ยสำหรับผู้ใช้ที่ไม่มีทวีต",
    "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_en": "Find the average number of followers for the users who had some tweets.",
    "question_th": "ค้นหาจำนวนผู้ติดตามโดยเฉลี่ยสำหรับผู้ใช้ที่มีการทวีต",
    "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_en": "Find the maximum and total number of followers of all users.",
    "question_th": "ค้นหาจำนวนผู้ติดตามสูงสุดและรวมของผู้ใช้ทั้งหมด",
    "context": "CREATE TABLE user_profiles (followers INTEGER)"
  },
  {
    "answer": "SELECT DISTINCT (catalog_entry_name) FROM catalog_contents",
    "question_en": "Find the names of all the catalog entries.",
    "question_th": "ค้นหาชื่อของรายการแค็ตตาล็อกทั้งหมด",
    "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_en": "Find the list of attribute data types possessed by more than 3 attribute definitions.",
    "question_th": "ค้นหารายการประเภทข้อมูลแอตทริบิวต์ที่มีคำจำกัดความแอตทริบิวต์มากกว่า 3 รายการ",
    "context": "CREATE TABLE Attribute_Definitions (attribute_data_type VARCHAR)"
  },
  {
    "answer": "SELECT attribute_data_type FROM Attribute_Definitions WHERE attribute_name = \"Green\"",
    "question_en": "What is the attribute data type of the attribute with name \"Green\"?",
    "question_th": "ประเภทข้อมูลแอตทริบิวต์ของแอตทริบิวต์ชื่อ \"สีเขียว\" คืออะไร",
    "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_en": "Find the name and level of catalog structure with level between 5 and 10.",
    "question_th": "ค้นหาชื่อและระดับของโครงสร้างแค็ตตาล็อกที่มีระดับระหว่าง 5 ถึง 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_en": "Find all the catalog publishers whose name contains \"Murray\"",
    "question_th": "ค้นหาผู้จัดพิมพ์แค็ตตาล็อกทั้งหมดที่มีชื่อ \"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_en": "Which catalog publisher has published the most catalogs?",
    "question_th": "ผู้จัดพิมพ์แคตตาล็อกรายใดได้เผยแพร่แคตตาล็อกมากที่สุด?",
    "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_en": "Find the names and publication dates of all catalogs that have catalog level number greater than 5.",
    "question_th": "ค้นหาชื่อและวันที่ตีพิมพ์ของแค็ตตาล็อกทั้งหมดที่มีหมายเลขระดับแค็ตตาล็อกมากกว่า 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_en": "What are the entry names of catalog with the attribute possessed by most entries.",
    "question_th": "ชื่อรายการของแค็ตตาล็อกที่มีแอตทริบิวต์ครอบครองโดยรายการส่วนใหญ่คืออะไร",
    "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_en": "What is the entry name of the most expensive catalog (in USD)?",
    "question_th": "ชื่อรายการของแคตตาล็อกที่แพงที่สุด (เป็น 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_en": "What is the level name of the cheapest catalog (in USD)?",
    "question_th": "ชื่อระดับของแคตตาล็อกที่ถูกที่สุด (เป็น 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_en": "What are the average and minimum price (in Euro) of all products?",
    "question_th": "ราคาเฉลี่ยและขั้นต่ำ (ในสกุลเงินยูโร) ของผลิตภัณฑ์ทั้งหมดคือเท่าใด",
    "context": "CREATE TABLE catalog_contents (price_in_euros INTEGER)"
  },
  {
    "answer": "SELECT catalog_entry_name FROM catalog_contents ORDER BY height DESC LIMIT 1",
    "question_en": "What is the product with the highest height? Give me the catalog entry name.",
    "question_th": "สินค้าที่มีความสูงสูงสุดคืออะไร? แจ้งชื่อรายการแค็ตตาล็อกให้ฉันทราบ",
    "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_en": "Find the name of the product that has the smallest capacity.",
    "question_th": "ค้นหาชื่อผลิตภัณฑ์ที่มีความจุน้อยที่สุด",
    "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_en": "Find the names of all the products whose stock number starts with \"2\".",
    "question_th": "ค้นหาชื่อผลิตภัณฑ์ทั้งหมดที่มีหมายเลขสต็อกขึ้นต้นด้วย \"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_en": "Find the names of catalog entries with level number 8.",
    "question_th": "ค้นหาชื่อของรายการแค็ตตาล็อกที่มีหมายเลขระดับ 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_en": "Find the names of the products with length smaller than 3 or height greater than 5.",
    "question_th": "ค้นหาชื่อผลิตภัณฑ์ที่มีความยาวน้อยกว่า 3 หรือความสูงมากกว่า 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_en": "Find the name and attribute ID of the attribute definitions with attribute value 0.",
    "question_th": "ค้นหาชื่อและ ID แอ็ตทริบิวต์ของคำจำกัดความแอ็ตทริบิวต์ที่มีค่าแอ็ตทริบิวต์ 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_en": "Find the name and capacity of products with price greater than 700 (in USD).",
    "question_th": "ค้นหาชื่อและกำลังการผลิตของผลิตภัณฑ์ที่มีราคามากกว่า 700 (เป็น 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_en": "Find the dates on which more than one revisions were made.",
    "question_th": "ค้นหาวันที่ที่มีการแก้ไขมากกว่าหนึ่งครั้ง",
    "context": "CREATE TABLE Catalogs (date_of_latest_revision VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM catalog_contents",
    "question_en": "How many products are there in the records?",
    "question_th": "มีสินค้ากี่รายการในบันทึก?",
    "context": "CREATE TABLE catalog_contents (Id VARCHAR)"
  },
  {
    "answer": "SELECT catalog_entry_name FROM catalog_contents WHERE next_entry_id > 8",
    "question_en": "Name all the products with next entry ID greater than 8.",
    "question_th": "ตั้งชื่อผลิตภัณฑ์ทั้งหมดที่มีรหัสรายการถัดไปมากกว่า 8",
    "context": "CREATE TABLE catalog_contents (catalog_entry_name VARCHAR, next_entry_id INTEGER)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Aircraft",
    "question_en": "How many aircrafts do we have?",
    "question_th": "เรามีเครื่องบินกี่ลำ?",
    "context": "CREATE TABLE Aircraft (Id VARCHAR)"
  },
  {
    "answer": "SELECT name, distance FROM Aircraft",
    "question_en": "Show name and distance for all aircrafts.",
    "question_th": "แสดงชื่อและระยะทางของเครื่องบินทุกลำ",
    "context": "CREATE TABLE Aircraft (name VARCHAR, distance VARCHAR)"
  },
  {
    "answer": "SELECT aid FROM Aircraft WHERE distance > 1000",
    "question_en": "Show ids for all aircrafts with more than 1000 distance.",
    "question_th": "แสดงรหัสสำหรับเครื่องบินทุกลำที่มีระยะทางมากกว่า 1,000",
    "context": "CREATE TABLE Aircraft (aid VARCHAR, distance INTEGER)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Aircraft WHERE distance BETWEEN 1000 AND 5000",
    "question_en": "How many aircrafts have distance between 1000 and 5000?",
    "question_th": "มีเครื่องบินกี่ลำที่มีระยะห่างระหว่าง 1,000 ถึง 5,000?",
    "context": "CREATE TABLE Aircraft (distance INTEGER)"
  },
  {
    "answer": "SELECT name, distance FROM Aircraft WHERE aid = 12",
    "question_en": "What is the name and distance for aircraft with id 12?",
    "question_th": "ชื่อและระยะทางของเครื่องบินที่มีรหัส 12 คืออะไร?",
    "context": "CREATE TABLE Aircraft (name VARCHAR, distance VARCHAR, aid VARCHAR)"
  },
  {
    "answer": "SELECT MIN(distance), AVG(distance), MAX(distance) FROM Aircraft",
    "question_en": "What is the minimum, average, and maximum distance of all aircrafts.",
    "question_th": "ระยะทางต่ำสุด เฉลี่ย และสูงสุดของเครื่องบินทุกลำคือเท่าใด",
    "context": "CREATE TABLE Aircraft (distance INTEGER)"
  },
  {
    "answer": "SELECT aid, name FROM Aircraft ORDER BY distance DESC LIMIT 1",
    "question_en": "Show the id and name of the aircraft with the maximum distance.",
    "question_th": "แสดงรหัสและชื่อเครื่องบินที่มีระยะทางสูงสุด",
    "context": "CREATE TABLE Aircraft (aid VARCHAR, name VARCHAR, distance VARCHAR)"
  },
  {
    "answer": "SELECT name FROM Aircraft ORDER BY distance LIMIT 3",
    "question_en": "Show the name of aircrafts with top three lowest distances.",
    "question_th": "แสดงชื่อเครื่องบินที่มีระยะทางต่ำสุดสามอันดับแรก",
    "context": "CREATE TABLE Aircraft (name VARCHAR, distance VARCHAR)"
  },
  {
    "answer": "SELECT name FROM Aircraft WHERE distance > (SELECT AVG(distance) FROM Aircraft)",
    "question_en": "Show names for all aircrafts with distances more than the average.",
    "question_th": "แสดงชื่อเครื่องบินทุกลำที่มีระยะทางมากกว่าค่าเฉลี่ย",
    "context": "CREATE TABLE Aircraft (name VARCHAR, distance INTEGER)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Employee",
    "question_en": "How many employees do we have?",
    "question_th": "เรามีพนักงานกี่คน?",
    "context": "CREATE TABLE Employee (Id VARCHAR)"
  },
  {
    "answer": "SELECT name, salary FROM Employee ORDER BY salary",
    "question_en": "Show name and salary for all employees sorted by salary.",
    "question_th": "แสดงชื่อและเงินเดือนของพนักงานทุกคน เรียงตามเงินเดือน",
    "context": "CREATE TABLE Employee (name VARCHAR, salary VARCHAR)"
  },
  {
    "answer": "SELECT eid FROM Employee WHERE salary > 100000",
    "question_en": "Show ids for all employees with at least 100000 salary.",
    "question_th": "แสดงรหัสสำหรับพนักงานทุกคนที่มีเงินเดือนอย่างน้อย 100,000",
    "context": "CREATE TABLE Employee (eid VARCHAR, salary INTEGER)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Employee WHERE salary BETWEEN 100000 AND 200000",
    "question_en": "How many employees have salary between 100000 and 200000?",
    "question_th": "มีพนักงานกี่คนที่มีเงินเดือนระหว่าง 100,000 ถึง 200,000?",
    "context": "CREATE TABLE Employee (salary INTEGER)"
  },
  {
    "answer": "SELECT name, salary FROM Employee WHERE eid = 242518965",
    "question_en": "What is the name and salary for employee with id 242518965?",
    "question_th": "ชื่อและเงินเดือนของพนักงาน ID 242518965 คืออะไร?",
    "context": "CREATE TABLE Employee (name VARCHAR, salary VARCHAR, eid VARCHAR)"
  },
  {
    "answer": "SELECT AVG(salary), MAX(salary) FROM Employee",
    "question_en": "What is average and maximum salary of all employees.",
    "question_th": "เงินเดือนเฉลี่ยและสูงสุดของพนักงานทุกคนคือเท่าใด",
    "context": "CREATE TABLE Employee (salary INTEGER)"
  },
  {
    "answer": "SELECT eid, name FROM Employee ORDER BY salary DESC LIMIT 1",
    "question_en": "Show the id and name of the employee with maximum salary.",
    "question_th": "แสดงรหัสและชื่อของพนักงานที่มีเงินเดือนสูงสุด",
    "context": "CREATE TABLE Employee (eid VARCHAR, name VARCHAR, salary VARCHAR)"
  },
  {
    "answer": "SELECT name FROM Employee ORDER BY salary LIMIT 3",
    "question_en": "Show the name of employees with three lowest salaries.",
    "question_th": "แสดงชื่อพนักงานที่ได้รับเงินเดือนต่ำสุด 3 อันดับ",
    "context": "CREATE TABLE Employee (name VARCHAR, salary VARCHAR)"
  },
  {
    "answer": "SELECT name FROM Employee WHERE salary > (SELECT AVG(salary) FROM Employee)",
    "question_en": "Show names for all employees with salary more than the average.",
    "question_th": "แสดงชื่อพนักงานทุกคนที่มีเงินเดือนมากกว่าค่าเฉลี่ย",
    "context": "CREATE TABLE Employee (name VARCHAR, salary INTEGER)"
  },
  {
    "answer": "SELECT eid, salary FROM Employee WHERE name = 'Mark Young'",
    "question_en": "Show the id and salary of Mark Young.",
    "question_th": "แสดงบัตรประจำตัวและเงินเดือนของมาร์คยัง",
    "context": "CREATE TABLE Employee (eid VARCHAR, salary VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Flight",
    "question_en": "How many flights do we have?",
    "question_th": "เรามีเที่ยวบินกี่เที่ยว?",
    "context": "CREATE TABLE Flight (Id VARCHAR)"
  },
  {
    "answer": "SELECT flno, origin, destination FROM Flight ORDER BY origin",
    "question_en": "Show flight number, origin, destination of all flights in the alphabetical order of the departure cities.",
    "question_th": "แสดงหมายเลขเที่ยวบิน ต้นทาง ปลายทางของเที่ยวบินทั้งหมดตามลำดับตัวอักษรของเมืองต้นทาง",
    "context": "CREATE TABLE Flight (flno VARCHAR, origin VARCHAR, destination VARCHAR)"
  },
  {
    "answer": "SELECT flno FROM Flight WHERE origin = \"Los Angeles\"",
    "question_en": "Show all flight number from Los Angeles.",
    "question_th": "แสดงหมายเลขเที่ยวบินทั้งหมดจากลอสแอนเจลิส",
    "context": "CREATE TABLE Flight (flno VARCHAR, origin VARCHAR)"
  },
  {
    "answer": "SELECT origin FROM Flight WHERE destination = \"Honolulu\"",
    "question_en": "Show origins of all flights with destination Honolulu.",
    "question_th": "แสดงต้นทางของเที่ยวบินทั้งหมดที่มีจุดหมายปลายทาง โฮโนลูลู",
    "context": "CREATE TABLE Flight (origin VARCHAR, destination VARCHAR)"
  },
  {
    "answer": "SELECT departure_date, arrival_date FROM Flight WHERE origin = \"Los Angeles\" AND destination = \"Honolulu\"",
    "question_en": "Show me the departure date and arrival date for all flights from Los Angeles to Honolulu.",
    "question_th": "แสดงวันที่ออกเดินทางและวันที่มาถึงของเที่ยวบินทั้งหมดจากลอสแอนเจลีสไปโฮโนลูลู",
    "context": "CREATE TABLE Flight (departure_date VARCHAR, arrival_date VARCHAR, origin VARCHAR, destination VARCHAR)"
  },
  {
    "answer": "SELECT flno FROM Flight WHERE distance > 2000",
    "question_en": "Show flight number for all flights with more than 2000 distance.",
    "question_th": "แสดงหมายเลขเที่ยวบินทุกเที่ยวบินที่มีระยะทางมากกว่า 2,000 เที่ยวบิน",
    "context": "CREATE TABLE Flight (flno VARCHAR, distance INTEGER)"
  },
  {
    "answer": "SELECT AVG(price) FROM Flight WHERE origin = \"Los Angeles\" AND destination = \"Honolulu\"",
    "question_en": "What is the average price for flights from Los Angeles to Honolulu.",
    "question_th": "ราคาตั๋วเครื่องบินโดยเฉลี่ยจาก ลอสแอนเจลีส ไป โฮโนลูลู",
    "context": "CREATE TABLE Flight (price INTEGER, origin VARCHAR, destination VARCHAR)"
  },
  {
    "answer": "SELECT origin, destination FROM Flight WHERE price > 300",
    "question_en": "Show origin and destination for flights with price higher than 300.",
    "question_th": "แสดงต้นทางและปลายทางสำหรับเที่ยวบินที่มีราคาสูงกว่า 300",
    "context": "CREATE TABLE Flight (origin VARCHAR, destination VARCHAR, price INTEGER)"
  },
  {
    "answer": "SELECT flno, distance FROM Flight ORDER BY price DESC LIMIT 1",
    "question_en": "Show the flight number and distance of the flight with maximum price.",
    "question_th": "แสดงหมายเลขเที่ยวบินและระยะทางของเที่ยวบินพร้อมราคาสูงสุด",
    "context": "CREATE TABLE Flight (flno VARCHAR, distance VARCHAR, price VARCHAR)"
  },
  {
    "answer": "SELECT flno FROM Flight ORDER BY distance LIMIT 3",
    "question_en": "Show the flight number of flights with three lowest distances.",
    "question_th": "แสดงจำนวนเที่ยวบินที่มีระยะทางต่ำสุดสามเที่ยวบิน",
    "context": "CREATE TABLE Flight (flno VARCHAR, distance VARCHAR)"
  },
  {
    "answer": "SELECT AVG(distance), AVG(price) FROM Flight WHERE origin = \"Los Angeles\"",
    "question_en": "What is the average distance and average price for flights from Los Angeles.",
    "question_th": "ระยะทางเฉลี่ยและราคาเฉลี่ยสำหรับเที่ยวบินจากลอสแอนเจลิสคือเท่าใด",
    "context": "CREATE TABLE Flight (distance INTEGER, price INTEGER, origin VARCHAR)"
  },
  {
    "answer": "SELECT origin, COUNT(*) FROM Flight GROUP BY origin",
    "question_en": "Show all origins and the number of flights from each origin.",
    "question_th": "แสดงต้นทางทั้งหมดและจำนวนเที่ยวบินจากแต่ละต้นทาง",
    "context": "CREATE TABLE Flight (origin VARCHAR)"
  },
  {
    "answer": "SELECT destination, COUNT(*) FROM Flight GROUP BY destination",
    "question_en": "Show all destinations and the number of flights to each destination.",
    "question_th": "แสดงจุดหมายปลายทางทั้งหมดและจำนวนเที่ยวบินไปยังจุดหมายปลายทางแต่ละแห่ง",
    "context": "CREATE TABLE Flight (destination VARCHAR)"
  },
  {
    "answer": "SELECT origin FROM Flight GROUP BY origin ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "Which origin has most number of flights?",
    "question_th": "ต้นทางใดมีจำนวนเที่ยวบินมากที่สุด?",
    "context": "CREATE TABLE Flight (origin VARCHAR)"
  },
  {
    "answer": "SELECT destination FROM Flight GROUP BY destination ORDER BY COUNT(*) LIMIT 1",
    "question_en": "Which destination has least number of flights?",
    "question_th": "จุดหมายปลายทางใดมีจำนวนเที่ยวบินน้อยที่สุด?",
    "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_en": "What is the aircraft name for the flight with number 99",
    "question_th": "เครื่องบินหมายเลข 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_en": "Show all flight numbers with aircraft Airbus A340-300.",
    "question_th": "แสดงหมายเลขเที่ยวบินทั้งหมดด้วยเครื่องบินแอร์บัส 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_en": "Show aircraft names and number of flights for each aircraft.",
    "question_th": "แสดงชื่อเครื่องบินและจำนวนเที่ยวบินของเครื่องบินแต่ละลำ",
    "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_en": "Show names for all aircraft with at least two flights.",
    "question_th": "แสดงชื่อเครื่องบินทุกลำที่มีอย่างน้อยสองเที่ยวบิน",
    "context": "CREATE TABLE Aircraft (name VARCHAR, aid VARCHAR); CREATE TABLE Flight (aid VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT eid) FROM Certificate",
    "question_en": "How many employees have certificate.",
    "question_th": "มีใบรับรองพนักงานกี่คน",
    "context": "CREATE TABLE Certificate (eid VARCHAR)"
  },
  {
    "answer": "SELECT eid FROM Employee EXCEPT SELECT eid FROM Certificate",
    "question_en": "Show ids for all employees who don't have a certificate.",
    "question_th": "แสดงรหัสสำหรับพนักงานทุกคนที่ไม่มีใบรับรอง",
    "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_en": "Show names for all aircrafts of which John Williams has certificates.",
    "question_th": "แสดงชื่อเครื่องบินทุกลำที่ John Williams มีใบรับรอง",
    "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_en": "Show names for all employees who have certificate of Boeing 737-800.",
    "question_th": "แสดงชื่อพนักงานทุกคนที่มีใบรับรองโบอิ้ง 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_en": "Show names for all employees who have certificates on both Boeing 737-800 and Airbus A340-300.",
    "question_th": "แสดงชื่อพนักงานทุกคนที่มีใบรับรองทั้งบนเครื่องบินโบอิ้ง 737-800 และแอร์บัส 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_en": "Show names for all employees who do not have certificate of Boeing 737-800.",
    "question_th": "แสดงชื่อพนักงานทุกคนที่ไม่มีใบรับรองโบอิ้ง 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_en": "Show the name of aircraft which fewest people have its certificate.",
    "question_th": "แสดงชื่อเครื่องบินที่มีผู้ได้รับใบรับรองน้อยที่สุด",
    "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_en": "Show the name and distance of the aircrafts with more than 5000 distance and which at least 5 people have its certificate.",
    "question_th": "แสดงชื่อและระยะทางของเครื่องบินที่มีระยะทางเกิน 5,000 ลำ และมีใบรับรองอย่างน้อย 5 ลำ",
    "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_en": "what is the salary and name of the employee who has the most number of aircraft certificates?",
    "question_th": "เงินเดือนและชื่อของพนักงานที่มีใบรับรองเครื่องบินมากที่สุดคือเท่าไร?",
    "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_en": "What is the salary and name of the employee who has the most number of certificates on aircrafts with distance more than 5000?",
    "question_th": "เงินเดือนและชื่อของพนักงานที่มีใบรับรองจำนวนมากที่สุดบนเครื่องบินที่มีระยะทางมากกว่า 5,000 คืออะไร?",
    "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_en": "How many allergies are there?",
    "question_th": "โรคภูมิแพ้มีกี่แบบ?",
    "context": "CREATE TABLE Allergy_type (allergy VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT allergytype) FROM Allergy_type",
    "question_en": "How many different allergy types exist?",
    "question_th": "โรคภูมิแพ้มีกี่ประเภท?",
    "context": "CREATE TABLE Allergy_type (allergytype VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT allergytype FROM Allergy_type",
    "question_en": "Show all allergy types.",
    "question_th": "แสดงอาการแพ้ทุกประเภท",
    "context": "CREATE TABLE Allergy_type (allergytype VARCHAR)"
  },
  {
    "answer": "SELECT allergy, allergytype FROM Allergy_type",
    "question_en": "Show all allergies and their types.",
    "question_th": "แสดงอาการแพ้และประเภททั้งหมด",
    "context": "CREATE TABLE Allergy_type (allergy VARCHAR, allergytype VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT allergy FROM Allergy_type WHERE allergytype = \"food\"",
    "question_en": "Show all allergies with type food.",
    "question_th": "แสดงอาการภูมิแพ้ทั้งหมดด้วยอาหารประเภท",
    "context": "CREATE TABLE Allergy_type (allergy VARCHAR, allergytype VARCHAR)"
  },
  {
    "answer": "SELECT allergytype FROM Allergy_type WHERE allergy = \"Cat\"",
    "question_en": "What is the type of allergy Cat?",
    "question_th": "โรคภูมิแพ้แมวมีกี่ประเภท?",
    "context": "CREATE TABLE Allergy_type (allergytype VARCHAR, allergy VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Allergy_type WHERE allergytype = \"animal\"",
    "question_en": "How many allergies have type animal?",
    "question_th": "สัตว์ประเภทภูมิแพ้มีกี่ประเภท?",
    "context": "CREATE TABLE Allergy_type (allergytype VARCHAR)"
  },
  {
    "answer": "SELECT allergytype, COUNT(*) FROM Allergy_type GROUP BY allergytype",
    "question_en": "Show all allergy types and the number of allergies in each type.",
    "question_th": "แสดงอาการแพ้ทุกประเภทและจำนวนอาการแพ้ในแต่ละประเภท",
    "context": "CREATE TABLE Allergy_type (allergytype VARCHAR)"
  },
  {
    "answer": "SELECT allergytype FROM Allergy_type GROUP BY allergytype ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "Which allergy type has most number of allergies?",
    "question_th": "โรคภูมิแพ้ชนิดใดที่มีจำนวนโรคภูมิแพ้มากที่สุด?",
    "context": "CREATE TABLE Allergy_type (allergytype VARCHAR)"
  },
  {
    "answer": "SELECT allergytype FROM Allergy_type GROUP BY allergytype ORDER BY COUNT(*) LIMIT 1",
    "question_en": "Which allergy type has least number of allergies?",
    "question_th": "โรคภูมิแพ้ชนิดใดมีจำนวนอาการแพ้น้อยที่สุด?",
    "context": "CREATE TABLE Allergy_type (allergytype VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Student",
    "question_en": "How many students are there?",
    "question_th": "มีนักเรียนกี่คน?",
    "context": "CREATE TABLE Student (Id VARCHAR)"
  },
  {
    "answer": "SELECT Fname, Lname FROM Student",
    "question_en": "Show first name and last name for all students.",
    "question_th": "แสดงชื่อและนามสกุลของนักเรียนทุกคน",
    "context": "CREATE TABLE Student (Fname VARCHAR, Lname VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT advisor) FROM Student",
    "question_en": "How many different advisors are listed?",
    "question_th": "มีที่ปรึกษาที่แตกต่างกันกี่รายการ?",
    "context": "CREATE TABLE Student (advisor VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT Major FROM Student",
    "question_en": "Show all majors.",
    "question_th": "แสดงสาขาวิชาทั้งหมด",
    "context": "CREATE TABLE Student (Major VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT city_code FROM Student",
    "question_en": "Show all cities where students live.",
    "question_th": "แสดงเมืองทั้งหมดที่นักเรียนอาศัยอยู่",
    "context": "CREATE TABLE Student (city_code VARCHAR)"
  },
  {
    "answer": "SELECT Fname, Lname, Age FROM Student WHERE Sex = 'F'",
    "question_en": "Show first name, last name, age for all female students. Their sex is F.",
    "question_th": "แสดงชื่อ นามสกุล อายุ ของนักเรียนหญิงทุกคน เพศของพวกเขาคือ F.",
    "context": "CREATE TABLE Student (Fname VARCHAR, Lname VARCHAR, Age VARCHAR, Sex VARCHAR)"
  },
  {
    "answer": "SELECT StuID FROM Student WHERE Sex = 'M'",
    "question_en": "Show student ids for all male students.",
    "question_th": "แสดงรหัสนักศึกษาสำหรับนักศึกษาชายทุกคน",
    "context": "CREATE TABLE Student (StuID VARCHAR, Sex VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Student WHERE age = 18",
    "question_en": "How many students are age 18?",
    "question_th": "นักเรียนอายุ 18 ปีมีกี่คน?",
    "context": "CREATE TABLE Student (age VARCHAR)"
  },
  {
    "answer": "SELECT StuID FROM Student WHERE age > 20",
    "question_en": "Show all student ids who are older than 20.",
    "question_th": "แสดงรหัสนักศึกษาทั้งหมดที่มีอายุมากกว่า 20 ปี",
    "context": "CREATE TABLE Student (StuID VARCHAR, age INTEGER)"
  },
  {
    "answer": "SELECT city_code FROM Student WHERE LName = \"Kim\"",
    "question_en": "Which city does the student whose last name is \"Kim\" live in?",
    "question_th": "นักเรียนที่มีนามสกุล \"คิม\" อาศัยอยู่ที่เมืองใด",
    "context": "CREATE TABLE Student (city_code VARCHAR, LName VARCHAR)"
  },
  {
    "answer": "SELECT Advisor FROM Student WHERE StuID = 1004",
    "question_en": "Who is the advisor of student with ID 1004?",
    "question_th": "ใครคือที่ปรึกษาของนักเรียนที่มี ID 1004?",
    "context": "CREATE TABLE Student (Advisor VARCHAR, StuID VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Student WHERE city_code = \"HKG\" OR city_code = \"CHI\"",
    "question_en": "How many students live in HKG or CHI?",
    "question_th": "มีนักเรียนกี่คนที่อาศัยอยู่ใน HKG หรือ CHI",
    "context": "CREATE TABLE Student (city_code VARCHAR)"
  },
  {
    "answer": "SELECT MIN(age), AVG(age), MAX(age) FROM Student",
    "question_en": "Show the minimum, average, and maximum age of all students.",
    "question_th": "แสดงอายุขั้นต่ำ ค่าเฉลี่ย และสูงสุดของนักเรียนทุกคน",
    "context": "CREATE TABLE Student (age INTEGER)"
  },
  {
    "answer": "SELECT LName FROM Student WHERE age = (SELECT MIN(age) FROM Student)",
    "question_en": "What is the last name of the youngest student?",
    "question_th": "นักเรียนคนเล็กนามสกุลอะไร?",
    "context": "CREATE TABLE Student (LName VARCHAR, age INTEGER)"
  },
  {
    "answer": "SELECT StuID FROM Student WHERE age = (SELECT MAX(age) FROM Student)",
    "question_en": "Show the student id of the oldest student.",
    "question_th": "แสดงรหัสนักศึกษาของนักเรียนที่อายุมากที่สุด",
    "context": "CREATE TABLE Student (StuID VARCHAR, age INTEGER)"
  },
  {
    "answer": "SELECT major, COUNT(*) FROM Student GROUP BY major",
    "question_en": "Show all majors and corresponding number of students.",
    "question_th": "แสดงสาขาวิชาเอกและจำนวนนักศึกษาที่เกี่ยวข้องทั้งหมด",
    "context": "CREATE TABLE Student (major VARCHAR)"
  },
  {
    "answer": "SELECT major FROM Student GROUP BY major ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "Which major has most number of students?",
    "question_th": "สาขาวิชาใดมีจำนวนนักศึกษามากที่สุด?",
    "context": "CREATE TABLE Student (major VARCHAR)"
  },
  {
    "answer": "SELECT age, COUNT(*) FROM Student GROUP BY age",
    "question_en": "Show all ages and corresponding number of students.",
    "question_th": "แสดงทุกช่วงอายุและจำนวนนักเรียนที่สอดคล้องกัน",
    "context": "CREATE TABLE Student (age VARCHAR)"
  },
  {
    "answer": "SELECT AVG(age), sex FROM Student GROUP BY sex",
    "question_en": "Show the average age for male and female students.",
    "question_th": "แสดงอายุเฉลี่ยของนักเรียนชายและหญิง",
    "context": "CREATE TABLE Student (sex VARCHAR, age INTEGER)"
  },
  {
    "answer": "SELECT city_code, COUNT(*) FROM Student GROUP BY city_code",
    "question_en": "Show all cities and corresponding number of students.",
    "question_th": "แสดงเมืองทั้งหมดและจำนวนนักเรียนที่สอดคล้องกัน",
    "context": "CREATE TABLE Student (city_code VARCHAR)"
  },
  {
    "answer": "SELECT advisor, COUNT(*) FROM Student GROUP BY advisor",
    "question_en": "Show all advisors and corresponding number of students.",
    "question_th": "แสดงที่ปรึกษาทั้งหมดและจำนวนนักเรียนที่เกี่ยวข้อง",
    "context": "CREATE TABLE Student (advisor VARCHAR)"
  },
  {
    "answer": "SELECT advisor FROM Student GROUP BY advisor ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "Which advisor has most number of students?",
    "question_th": "อาจารย์ที่ปรึกษาคนไหนมีจำนวนนักศึกษามากที่สุด?",
    "context": "CREATE TABLE Student (advisor VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Has_allergy WHERE Allergy = \"Cat\"",
    "question_en": "How many students have cat allergies?",
    "question_th": "มีนักเรียนกี่คนที่แพ้แมว?",
    "context": "CREATE TABLE Has_allergy (Allergy VARCHAR)"
  },
  {
    "answer": "SELECT StuID FROM Has_allergy GROUP BY StuID HAVING COUNT(*) >= 2",
    "question_en": "Show all student IDs who have at least two allergies.",
    "question_th": "แสดงบัตรประจำตัวนักเรียนทั้งหมดที่มีอาการแพ้อย่างน้อยสองครั้ง",
    "context": "CREATE TABLE Has_allergy (StuID VARCHAR)"
  },
  {
    "answer": "SELECT StuID FROM Student EXCEPT SELECT StuID FROM Has_allergy",
    "question_en": "What are the student ids of students who don't have any allergies?",
    "question_th": "รหัสประจำตัวนักเรียนของนักเรียนที่ไม่มีอาการแพ้คืออะไร?",
    "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_en": "How many female students have milk or egg allergies?",
    "question_th": "นักเรียนหญิงกี่คนที่แพ้นมหรือไข่?",
    "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_en": "How many students have a food allergy?",
    "question_th": "มีนักเรียนกี่คนที่แพ้อาหาร?",
    "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_en": "Which allergy has most number of students affected?",
    "question_th": "โรคภูมิแพ้ใดที่นักเรียนจำนวนมากที่สุดได้รับผลกระทบ?",
    "context": "CREATE TABLE Has_allergy (Allergy VARCHAR)"
  },
  {
    "answer": "SELECT Allergy, COUNT(*) FROM Has_allergy GROUP BY Allergy",
    "question_en": "Show all allergies with number of students affected.",
    "question_th": "แสดงอาการแพ้ทั้งหมดพร้อมจำนวนนักเรียนที่ได้รับผลกระทบ",
    "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_en": "Show all allergy type with number of students affected.",
    "question_th": "แสดงประเภทโรคภูมิแพ้ทั้งหมดพร้อมจำนวนนักเรียนที่ได้รับผลกระทบ",
    "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_en": "Find the last name and age of the student who has allergy to both milk and cat.",
    "question_th": "ค้นหานามสกุลและอายุของนักเรียนที่แพ้ทั้งนมและแมว",
    "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_en": "What are the allergies and their types that the student with first name Lisa has? And order the result by name of allergies.",
    "question_th": "นักเรียนที่ชื่อลิซ่ามีอาการแพ้และประเภทใดบ้าง? และเรียงลำดับผลตามชื่อโรคภูมิแพ้",
    "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_en": "Find the first name and gender of the student who has allergy to milk but not cat.",
    "question_th": "ค้นหาชื่อและเพศของนักเรียนที่แพ้นมแต่ไม่แพ้แมว",
    "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_en": "Find the average age of the students who have allergies with food and animal types.",
    "question_th": "ค้นหาอายุเฉลี่ยของนักเรียนที่แพ้อาหารและสัตว์ประเภทต่างๆ",
    "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_en": "List the first and last name of the students who do not have any food type allergy.",
    "question_th": "ระบุชื่อและนามสกุลของนักเรียนที่ไม่แพ้อาหารประเภทใด",
    "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_en": "Find the number of male (sex is 'M') students who have some food type allery.",
    "question_th": "จงหาจำนวนนักเรียนชาย (เพศ M') ที่แพ้อาหารบางประเภท",
    "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_en": "Find the different first names and cities of the students who have allergy to milk or cat.",
    "question_th": "ค้นหาชื่อและเมืองต่างๆ ของนักเรียนที่แพ้นมหรือแมว",
    "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_en": "Find the number of students who are older than 18 and do not have allergy to either food or animal.",
    "question_th": "ค้นหาจำนวนนักเรียนที่มีอายุมากกว่า 18 ปี และไม่มีอาการแพ้อาหารหรือสัตว์",
    "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_en": "Find the first name and major of the students who are not allegry to soy.",
    "question_th": "ค้นหาชื่อและสาขาวิชาของนักศึกษาที่ไม่เกี่ยวข้องกับถั่วเหลือง",
    "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_en": "A list of the top 5 countries by number of invoices. List country name and number of invoices.",
    "question_th": "รายชื่อประเทศ 5 อันดับแรกตามจำนวนใบแจ้งหนี้ ระบุชื่อประเทศและหมายเลขใบแจ้งหนี้",
    "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_en": "A list of the top 8 countries by gross/total invoice size. List country name and gross invoice size.",
    "question_th": "รายชื่อประเทศ 8 อันดับแรกเรียงตามขนาดใบแจ้งหนี้รวม/ทั้งหมด แสดงรายการชื่อประเทศและขนาดใบแจ้งหนี้รวม",
    "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_en": "A list of the top 10 countries by average invoice size. List country name and average invoice size.",
    "question_th": "รายชื่อประเทศ 10 อันดับแรกตามขนาดใบแจ้งหนี้โดยเฉลี่ย แสดงรายการชื่อประเทศและขนาดใบแจ้งหนี้โดยเฉลี่ย",
    "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_en": "Find out 5 customers who most recently purchased something. List customers' first and last name.",
    "question_th": "ค้นหาลูกค้า 5 รายที่เพิ่งซื้อของบางอย่างล่าสุด ระบุชื่อและนามสกุลของลูกค้า",
    "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_en": "Find out the top 10 customers by total number of orders. List customers' first and last name and the number of total orders.",
    "question_th": "ค้นหาลูกค้า 10 อันดับแรกตามจำนวนคำสั่งซื้อทั้งหมด ระบุชื่อและนามสกุลของลูกค้า และจำนวนคำสั่งซื้อทั้งหมด",
    "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_en": "List the top 10 customers by total gross sales. List customers' first and last name and total gross sales.",
    "question_th": "รายชื่อลูกค้า 10 อันดับแรกโดยเรียงตามยอดขายรวม แสดงรายการชื่อและนามสกุลของลูกค้าและยอดขายรวมทั้งหมด",
    "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_en": "List the top 5 genres by number of tracks. List genres name and total tracks.",
    "question_th": "แสดงรายการแนวเพลง 5 อันดับแรกตามจำนวนเพลง แสดงรายการชื่อประเภทและแทร็กทั้งหมด",
    "context": "CREATE TABLE tracks (genre_id VARCHAR); CREATE TABLE genres (name VARCHAR, id VARCHAR)"
  },
  {
    "answer": "SELECT title FROM albums",
    "question_en": "List every album's title.",
    "question_th": "ระบุชื่ออัลบั้มทุกอัลบั้ม",
    "context": "CREATE TABLE albums (title VARCHAR)"
  },
  {
    "answer": "SELECT title FROM albums ORDER BY title",
    "question_en": "List every album ordered by album title in ascending order.",
    "question_th": "แสดงรายการทุกอัลบั้มโดยเรียงลำดับตามชื่ออัลบั้มจากน้อยไปหามาก",
    "context": "CREATE TABLE albums (title VARCHAR)"
  },
  {
    "answer": "SELECT title FROM albums WHERE title LIKE 'A%' ORDER BY title",
    "question_en": "List every album whose title starts with A in alphabetical order.",
    "question_th": "รายชื่อทุกอัลบั้มที่มีชื่อขึ้นต้นด้วย A ตามลำดับตัวอักษร",
    "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_en": "List the customers first and last name of 10 least expensive invoices.",
    "question_th": "รายชื่อลูกค้าชื่อและนามสกุลของใบแจ้งหนี้ที่แพงที่สุด 10 ใบ",
    "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_en": "List total amount of  invoice from Chicago, IL.",
    "question_th": "แสดงรายการยอดรวมของใบแจ้งหนี้จากชิคาโก อิลลินอยส์",
    "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_en": "List the number of invoices from Chicago, IL.",
    "question_th": "แสดงรายการจำนวนใบแจ้งหนี้จากชิคาโก อิลลินอยส์",
    "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_en": "List the number of invoices from the US, grouped by state.",
    "question_th": "แสดงรายการจำนวนใบแจ้งหนี้จากสหรัฐอเมริกา โดยจัดกลุ่มตามรัฐ",
    "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_en": "List the state in the US with the most invoices.",
    "question_th": "ระบุรัฐในสหรัฐอเมริกาที่มีใบแจ้งหนี้มากที่สุด",
    "context": "CREATE TABLE invoices (billing_state VARCHAR, billing_country VARCHAR)"
  },
  {
    "answer": "SELECT billing_state, COUNT(*), SUM(total) FROM invoices WHERE billing_state = \"CA\"",
    "question_en": "List the number of invoices and the invoice total from California.",
    "question_th": "แสดงรายการจำนวนใบแจ้งหนี้และยอดรวมใบแจ้งหนี้จากแคลิฟอร์เนีย",
    "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_en": "List Aerosmith's albums.",
    "question_th": "รายชื่ออัลบั้มของ Aerosmith",
    "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_en": "How many albums does Billy Cobham has?",
    "question_th": "Billy Cobham มีกี่อัลบั้ม?",
    "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_en": "Eduardo Martins is a customer at which company?",
    "question_th": "Eduardo Martins เป็นลูกค้าของบริษัทใด",
    "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_en": "What is Astrid Gruber's email and phone number?",
    "question_th": "อีเมลและหมายเลขโทรศัพท์ของ Astrid Gruber คืออะไร",
    "context": "CREATE TABLE customers (email VARCHAR, phone VARCHAR, first_name VARCHAR, last_name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM customers WHERE city = \"Prague\"",
    "question_en": "How many customers live in Prague city?",
    "question_th": "มีลูกค้ากี่คนที่อาศัยอยู่ในเมืองปราก?",
    "context": "CREATE TABLE customers (city VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM customers WHERE state = \"CA\"",
    "question_en": "How many customers in state of CA?",
    "question_th": "มีลูกค้ากี่รายในรัฐแคลิฟอร์เนีย?",
    "context": "CREATE TABLE customers (state VARCHAR)"
  },
  {
    "answer": "SELECT country FROM customers WHERE first_name = \"Roberto\" AND last_name = \"Almeida\"",
    "question_en": "What country does Roberto Almeida live?",
    "question_th": "โรแบร์โต อัลเมดา อาศัยอยู่ประเทศใด",
    "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_en": "List the name of albums that are released by aritist whose name has 'Led'",
    "question_th": "รายชื่ออัลบั้มที่ออกโดยศิลปินที่มีชื่อว่า '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_en": "How many customers does Steve Johnson support?",
    "question_th": "Steve Johnson รองรับลูกค้าได้กี่ราย?",
    "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_en": "What is the title, phone and hire date of Nancy Edwards?",
    "question_th": "ชื่อ โทรศัพท์ และวันที่จ้างของ 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_en": "find the full name of employees who report to Nancy Edwards?",
    "question_th": "หาชื่อเต็มของพนักงานที่รายงานต่อ 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_en": "What is the address of employee Nancy Edwards?",
    "question_th": "ที่อยู่ของพนักงาน 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_en": "Find the full name of employee who supported the most number of customers.",
    "question_th": "ค้นหาชื่อเต็มของพนักงานที่รองรับลูกค้าได้มากที่สุด",
    "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_en": "How many employees are living in Canada?",
    "question_th": "มีพนักงานกี่คนที่อาศัยอยู่ในแคนาดา?",
    "context": "CREATE TABLE employees (country VARCHAR)"
  },
  {
    "answer": "SELECT phone FROM employees WHERE first_name = \"Nancy\" AND last_name = \"Edwards\"",
    "question_en": "What is employee Nancy Edwards's phone number?",
    "question_th": "หมายเลขโทรศัพท์ของพนักงาน Nancy Edwards คืออะไร?",
    "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_en": "Who is the youngest employee in the company? List employee's first and last name.",
    "question_th": "พนักงานอายุน้อยที่สุดในบริษัทคือใคร? รายชื่อและนามสกุลของพนักงาน",
    "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_en": "List top 10 employee work longest in the company. List employee's first and last name.",
    "question_th": "รายชื่อพนักงาน 10 อันดับแรกที่ทำงานยาวนานที่สุดในบริษัท รายชื่อและนามสกุลของพนักงาน",
    "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_en": "Find the number of employees whose title is IT Staff from each city?",
    "question_th": "ค้นหาจำนวนพนักงานที่มีตำแหน่งเป็น IT Staff จากแต่ละเมือง?",
    "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_en": "Which employee manage most number of peoples? List employee's first and last name, and number of people report to that employee.",
    "question_th": "พนักงานคนไหนที่บริหารคนได้มากที่สุด? รายชื่อและนามสกุลของพนักงาน และจำนวนคนที่รายงานต่อพนักงานคนนั้น",
    "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_en": "How many orders does Lucas Mancini has?",
    "question_th": "Lucas Mancini มีคำสั่งซื้อกี่รายการ?",
    "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_en": "What is the total amount of money spent by Lucas Mancini?",
    "question_th": "จำนวนเงินทั้งหมดที่ลูคัส มันชินี่ใช้ไปคือเท่าไร?",
    "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_en": "List all media types.",
    "question_th": "แสดงรายการสื่อทุกประเภท",
    "context": "CREATE TABLE media_types (name VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT name FROM genres",
    "question_en": "List all different genre types.",
    "question_th": "แสดงรายการประเภทต่าง ๆ ทั้งหมด",
    "context": "CREATE TABLE genres (name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM playlists",
    "question_en": "List the name of all playlist.",
    "question_th": "ระบุชื่อเพลย์ลิสต์ทั้งหมด",
    "context": "CREATE TABLE playlists (name VARCHAR)"
  },
  {
    "answer": "SELECT composer FROM tracks WHERE name = \"Fast As a Shark\"",
    "question_en": "Who is the composer of track Fast As a Shark?",
    "question_th": "ใครคือผู้แต่งเพลง Fast As a Shark?",
    "context": "CREATE TABLE tracks (composer VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT milliseconds FROM tracks WHERE name = \"Fast As a Shark\"",
    "question_en": "How long does track Fast As a Shark has?",
    "question_th": "Fast As a Shark มีความยาวเท่าไร?",
    "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_en": "What is the name of tracks whose genre is Rock?",
    "question_th": "เพลงที่มีแนวเพลงร็อคชื่ออะไร?",
    "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_en": "What is title of album which track Balls to the Wall belongs to?",
    "question_th": "อัลบั้มที่มีเพลง Balls to the Wall อยู่ในชื่ออะไร?",
    "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_en": "List name of all tracks in Balls to the Wall.",
    "question_th": "รายชื่อเพลงทั้งหมดใน 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_en": "List title of albums have the number of tracks greater than 10.",
    "question_th": "ชื่ออัลบั้มมีจำนวนเพลงมากกว่า 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_en": "List the name of tracks belongs to genre Rock and whose media type is MPEG audio file.",
    "question_th": "รายชื่อเพลงที่อยู่ในประเภท Rock และมีประเภทสื่อเป็นไฟล์เสียง MPEG",
    "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_en": "List the name of tracks belongs to genre Rock or media type is MPEG audio file.",
    "question_th": "รายชื่อเพลงที่อยู่ในประเภท Rock หรือประเภทสื่อเป็นไฟล์เสียง MPEG",
    "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_en": "List the name of tracks belongs to genre Rock or genre Jazz.",
    "question_th": "รายชื่อเพลงที่อยู่ในประเภท Rock หรือประเภท 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_en": "List the name of all tracks in the playlists of Movies.",
    "question_th": "ระบุชื่อแทร็กทั้งหมดในรายการเพลงของภาพยนตร์",
    "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_en": "List the name of playlist which has number of tracks greater than 100.",
    "question_th": "ระบุชื่อเพลย์ลิสต์ซึ่งมีจำนวนแทร็กมากกว่า 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_en": "List all tracks bought by customer Daan Peeters.",
    "question_th": "แสดงรายการเพลงทั้งหมดที่ลูกค้า 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_en": "How much is the track Fast As a Shark?",
    "question_th": "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_en": "Find the name of tracks which are in Movies playlist but not in music playlist.",
    "question_th": "ค้นหาชื่อแทร็กที่อยู่ในรายการเพลงภาพยนตร์แต่ไม่อยู่ในรายการเพลง",
    "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_en": "Find the name of tracks which are in both Movies and music playlists.",
    "question_th": "ค้นหาชื่อเพลงที่อยู่ในรายการเพลงและภาพยนตร์",
    "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_en": "Find number of tracks in each genre?",
    "question_th": "ค้นหาจำนวนเพลงในแต่ละประเภทหรือไม่?",
    "context": "CREATE TABLE tracks (genre_id VARCHAR); CREATE TABLE genres (name VARCHAR, id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM editor",
    "question_en": "How many editors are there?",
    "question_th": "มีบรรณาธิการกี่คน?",
    "context": "CREATE TABLE editor (Id VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM editor ORDER BY Age",
    "question_en": "List the names of editors in ascending order of age.",
    "question_th": "ระบุรายชื่อบรรณาธิการโดยเรียงตามอายุจากน้อยไปหามาก",
    "context": "CREATE TABLE editor (Name VARCHAR, Age VARCHAR)"
  },
  {
    "answer": "SELECT Name, Age FROM editor",
    "question_en": "What are the names and ages of editors?",
    "question_th": "ชื่อและอายุของบรรณาธิการคืออะไร?",
    "context": "CREATE TABLE editor (Name VARCHAR, Age VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM editor WHERE Age > 25",
    "question_en": "List the names of editors who are older than 25.",
    "question_th": "รายชื่อบรรณาธิการที่มีอายุมากกว่า 25 ปี",
    "context": "CREATE TABLE editor (Name VARCHAR, Age INTEGER)"
  },
  {
    "answer": "SELECT Name FROM editor WHERE Age = 24 OR Age = 25",
    "question_en": "Show the names of editors of age either 24 or 25.",
    "question_th": "แสดงชื่อบรรณาธิการที่มีอายุ 24 หรือ 25 ปี",
    "context": "CREATE TABLE editor (Name VARCHAR, Age VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM editor ORDER BY Age LIMIT 1",
    "question_en": "What is the name of the youngest editor?",
    "question_th": "บรรณาธิการที่อายุน้อยที่สุดชื่ออะไร?",
    "context": "CREATE TABLE editor (Name VARCHAR, Age VARCHAR)"
  },
  {
    "answer": "SELECT Age, COUNT(*) FROM editor GROUP BY Age",
    "question_en": "What are the different ages of editors? Show each age along with the number of editors of that age.",
    "question_th": "บรรณาธิการอายุต่างกันอย่างไร? แสดงแต่ละยุคพร้อมทั้งจำนวนบรรณาธิการในยุคนั้น",
    "context": "CREATE TABLE editor (Age VARCHAR)"
  },
  {
    "answer": "SELECT Age FROM editor GROUP BY Age ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "Please show the most common age of editors.",
    "question_th": "โปรดระบุอายุของบรรณาธิการที่พบบ่อยที่สุด",
    "context": "CREATE TABLE editor (Age VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT Theme FROM journal",
    "question_en": "Show the distinct themes of journals.",
    "question_th": "นำเสนอประเด็นสำคัญของวารสาร",
    "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_en": "Show the names of editors and the theme of journals for which they serve on committees.",
    "question_th": "แสดงชื่อบรรณาธิการและหัวข้อวารสารที่พวกเขาทำหน้าที่ในคณะกรรมการ",
    "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_en": "Show the names and ages of editors and the theme of journals for which they serve on committees, in ascending alphabetical order of theme.",
    "question_th": "แสดงชื่อและอายุของบรรณาธิการและหัวข้อวารสารที่ทำหน้าที่ในคณะกรรมการ โดยเรียงตามตัวอักษรจากน้อยไปหามาก",
    "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_en": "Show the names of editors that are on the committee of journals with sales bigger than 3000.",
    "question_th": "แสดงรายชื่อบรรณาธิการที่อยู่ในคณะกรรมการวารสารที่มียอดขายมากกว่า 3,000 ฉบับ",
    "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_en": "Show the id, name of each editor and the number of journal committees they are on.",
    "question_th": "แสดงรหัส ชื่อของบรรณาธิการแต่ละคน และจำนวนคณะกรรมการวารสารที่พวกเขาอยู่",
    "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_en": "Show the names of editors that are on at least two journal committees.",
    "question_th": "แสดงชื่อบรรณาธิการที่อยู่ในคณะกรรมการวารสารอย่างน้อยสองชุด",
    "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_en": "List the names of editors that are not on any journal committee.",
    "question_th": "รายชื่อบรรณาธิการที่ไม่อยู่ในคณะกรรมการวารสารใดๆ",
    "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_en": "List the date, theme and sales of the journal which did not have any of the listed editors serving on committee.",
    "question_th": "ระบุวันที่ หัวข้อ และยอดขายของวารสารที่ไม่มีบรรณาธิการคนใดดำรงตำแหน่งเป็นคณะกรรมการ",
    "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_en": "What is the average sales of the journals that have an editor whose work type is 'Photo'?",
    "question_th": "ยอดขายเฉลี่ยของวารสารที่มีบรรณาธิการประเภทงาน 'ภาพถ่าย' คือเท่าไร?",
    "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_en": "How many accounts do we have?",
    "question_th": "เรามีบัญชีกี่บัญชี?",
    "context": "CREATE TABLE Accounts (Id VARCHAR)"
  },
  {
    "answer": "SELECT account_id, customer_id, account_name FROM Accounts",
    "question_en": "Show ids, customer ids, names for all accounts.",
    "question_th": "แสดงรหัส รหัสลูกค้า ชื่อบัญชีทั้งหมด",
    "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_en": "Show other account details for account with name 338.",
    "question_th": "แสดงรายละเอียดบัญชีอื่นๆ สำหรับบัญชีชื่อ 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_en": "What is the first name, last name, and phone of the customer with account name 162?",
    "question_th": "ชื่อ นามสกุล และหมายเลขโทรศัพท์ของลูกค้าชื่อบัญชี 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_en": "How many accounts does the customer with first name Art and last name Turcotte have?",
    "question_th": "ลูกค้าชื่อ อาร์ต และนามสกุล Turcotte มีกี่บัญชี?",
    "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_en": "Show all customer ids and the number of accounts for each customer.",
    "question_th": "แสดงรหัสลูกค้าทั้งหมดและจำนวนบัญชีของลูกค้าแต่ละราย",
    "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_en": "Show the customer id and number of accounts with most accounts.",
    "question_th": "แสดงรหัสลูกค้าและจำนวนบัญชีที่มีบัญชีมากที่สุด",
    "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_en": "What is the customer first, last name and id with least number of accounts.",
    "question_th": "ชื่อ นามสกุล และรหัสลูกค้าคืออะไร โดยมีจำนวนบัญชีน้อยที่สุด",
    "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_en": "Show the number of all customers without an account.",
    "question_th": "แสดงจำนวนลูกค้าทั้งหมดที่ไม่มีบัญชี",
    "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_en": "Show the first names and last names of customers without any account.",
    "question_th": "แสดงชื่อและนามสกุลของลูกค้าโดยไม่ต้องมีบัญชีใดๆ",
    "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_en": "Show distinct first and last names for all customers with an account.",
    "question_th": "แสดงชื่อและนามสกุลที่ชัดเจนสำหรับลูกค้าทุกคนที่มีบัญชี",
    "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_en": "How many customers have an account?",
    "question_th": "ลูกค้ามีบัญชีกี่คน?",
    "context": "CREATE TABLE Accounts (customer_id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Customers",
    "question_en": "How many customers do we have?",
    "question_th": "เรามีลูกค้ากี่คน?",
    "context": "CREATE TABLE Customers (Id VARCHAR)"
  },
  {
    "answer": "SELECT customer_id, customer_first_name, customer_last_name, customer_phone FROM Customers",
    "question_en": "Show ids, first names, last names, and phones for all customers.",
    "question_th": "แสดงรหัส ชื่อ นามสกุล และหมายเลขโทรศัพท์ให้กับลูกค้าทุกคน",
    "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_en": "What is the phone and email for customer with first name Aniyah and last name Feest?",
    "question_th": "หมายเลขโทรศัพท์และอีเมลสำหรับลูกค้าชื่อ Aniyah และนามสกุล 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_en": "Show the number of customer cards.",
    "question_th": "แสดงจำนวนบัตรลูกค้า",
    "context": "CREATE TABLE Customers_cards (Id VARCHAR)"
  },
  {
    "answer": "SELECT card_id, customer_id, card_type_code, card_number FROM Customers_cards",
    "question_en": "Show ids, customer ids, card type codes, card numbers for all cards.",
    "question_th": "แสดงรหัส รหัสลูกค้า รหัสประเภทบัตร หมายเลขบัตร ทุกบัตร",
    "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_en": "Show the date valid from and the date valid to for the card with card number '4560596484842'.",
    "question_th": "แสดงวันที่ที่ถูกต้องและวันที่ที่ถูกต้องสำหรับบัตรที่มีหมายเลขบัตร '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_en": "What is the first name, last name, and phone of the customer with card 4560596484842.",
    "question_th": "ชื่อ นามสกุล และหมายเลขโทรศัพท์ของลูกค้าที่มีบัตรคืออะไร 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_en": "How many cards does customer Art Turcotte have?",
    "question_th": "ลูกค้า Art Turcotte มีการ์ดกี่ใบ?",
    "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_en": "How many debit cards do we have?",
    "question_th": "เรามีบัตรเดบิตกี่ใบ?",
    "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_en": "How many credit cards does customer Blanche Huels have?",
    "question_th": "ลูกค้า Blanche Huels มีบัตรเครดิตกี่ใบ?",
    "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_en": "Show all customer ids and the number of cards owned by each customer.",
    "question_th": "แสดงรหัสลูกค้าทั้งหมดและจำนวนบัตรที่ลูกค้าแต่ละรายเป็นเจ้าของ",
    "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_en": "What is the customer id with most number of cards, and how many does he have?",
    "question_th": "รหัสลูกค้าที่มีบัตรมากที่สุดคืออะไร และเขามีกี่ใบ?",
    "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_en": "Show id, first and last names for all customers with at least two cards.",
    "question_th": "แสดงรหัส ชื่อ และนามสกุลให้กับลูกค้าทุกคนด้วยบัตรอย่างน้อยสองใบ",
    "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_en": "What is the customer id, first and last name with least number of accounts.",
    "question_th": "รหัสลูกค้า ชื่อ และนามสกุลที่มีจำนวนบัญชีน้อยที่สุดคืออะไร",
    "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_en": "Show all card type codes and the number of cards in each type.",
    "question_th": "แสดงรหัสประเภทบัตรทั้งหมดและจำนวนบัตรในแต่ละประเภท",
    "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_en": "What is the card type code with most number of cards?",
    "question_th": "รหัสประเภทบัตรใดที่มีจำนวนบัตรมากที่สุด?",
    "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_en": "Show card type codes with at least 5 cards.",
    "question_th": "แสดงรหัสประเภทบัตรอย่างน้อย 5 ใบ",
    "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_en": "Show all card type codes and the number of customers holding cards in each type.",
    "question_th": "แสดงรหัสประเภทบัตรทั้งหมด และจำนวนลูกค้าที่ถือบัตรในแต่ละประเภท",
    "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_en": "Show the customer ids and firstname without a credit card.",
    "question_th": "แสดงรหัสลูกค้าและชื่อโดยไม่ต้องใช้บัตรเครดิต",
    "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_en": "Show all card type codes.",
    "question_th": "แสดงรหัสประเภทบัตรทั้งหมด",
    "context": "CREATE TABLE Customers_Cards (card_type_code VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT card_type_code) FROM Customers_Cards",
    "question_en": "Show the number of card types.",
    "question_th": "แสดงจำนวนประเภทบัตร",
    "context": "CREATE TABLE Customers_Cards (card_type_code VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT transaction_type FROM Financial_Transactions",
    "question_en": "Show all transaction types.",
    "question_th": "แสดงประเภทธุรกรรมทั้งหมด",
    "context": "CREATE TABLE Financial_Transactions (transaction_type VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT transaction_type) FROM Financial_Transactions",
    "question_en": "Show the number of transaction types.",
    "question_th": "แสดงจำนวนประเภทธุรกรรม",
    "context": "CREATE TABLE Financial_Transactions (transaction_type VARCHAR)"
  },
  {
    "answer": "SELECT AVG(transaction_amount), SUM(transaction_amount) FROM Financial_transactions",
    "question_en": "What is the average and total transaction amount?",
    "question_th": "มูลค่าธุรกรรมเฉลี่ยและยอดรวมคือเท่าไร?",
    "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_en": "Show the card type codes and the number of transactions.",
    "question_th": "แสดงรหัสประเภทบัตรและจำนวนรายการ",
    "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_en": "Show the transaction type and the number of transactions.",
    "question_th": "แสดงประเภทรายการและจำนวนรายการ",
    "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_en": "What is the transaction type that has processed the greatest total amount in transactions?",
    "question_th": "ธุรกรรมประเภทใดที่มีการประมวลผลยอดรวมสูงสุดในธุรกรรมคืออะไร?",
    "context": "CREATE TABLE Financial_transactions (transaction_type VARCHAR, transaction_amount INTEGER)"
  },
  {
    "answer": "SELECT account_id, COUNT(*) FROM Financial_transactions GROUP BY account_id",
    "question_en": "Show the account id and the number of transactions for each account",
    "question_th": "แสดงรหัสบัญชีและจำนวนธุรกรรมของแต่ละบัญชี",
    "context": "CREATE TABLE Financial_transactions (account_id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM track",
    "question_en": "How many tracks do we have?",
    "question_th": "เรามีเพลงกี่เพลง?",
    "context": "CREATE TABLE track (Id VARCHAR)"
  },
  {
    "answer": "SELECT name, LOCATION FROM track",
    "question_en": "Show the name and location for all tracks.",
    "question_th": "แสดงชื่อและตำแหน่งของแทร็กทั้งหมด",
    "context": "CREATE TABLE track (name VARCHAR, LOCATION VARCHAR)"
  },
  {
    "answer": "SELECT name, seating FROM track WHERE year_opened > 2000 ORDER BY seating",
    "question_en": "Show names and seatings, ordered by seating for all tracks opened after 2000.",
    "question_th": "แสดงชื่อและที่นั่ง เรียงตามที่นั่งสำหรับเส้นทางทั้งหมดที่เปิดหลังปี 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_en": "What is the name, location and seating for the most recently opened track?",
    "question_th": "ชื่อ สถานที่ และที่นั่งสำหรับแทร็กที่เพิ่งเปิดล่าสุดคืออะไร?",
    "context": "CREATE TABLE track (name VARCHAR, LOCATION VARCHAR, seating VARCHAR, year_opened VARCHAR)"
  },
  {
    "answer": "SELECT MIN(seating), MAX(seating), AVG(seating) FROM track",
    "question_en": "What is the minimum, maximum, and average seating for all tracks.",
    "question_th": "ที่นั่งขั้นต่ำ สูงสุด และเฉลี่ยสำหรับทุกแทร็กคือเท่าใด",
    "context": "CREATE TABLE track (seating INTEGER)"
  },
  {
    "answer": "SELECT name, LOCATION, year_opened FROM track WHERE seating > (SELECT AVG(seating) FROM track)",
    "question_en": "Show the name, location, open year for all tracks with a seating higher than the average.",
    "question_th": "แสดงชื่อ สถานที่ ปีที่เปิด ทุกสนามที่มีที่นั่งสูงกว่าค่าเฉลี่ย",
    "context": "CREATE TABLE track (name VARCHAR, LOCATION VARCHAR, year_opened VARCHAR, seating INTEGER)"
  },
  {
    "answer": "SELECT DISTINCT LOCATION FROM track",
    "question_en": "What are distinct locations where tracks are located?",
    "question_th": "สถานที่ที่แตกต่างกันซึ่งมีรางรถไฟคืออะไร?",
    "context": "CREATE TABLE track (LOCATION VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM race",
    "question_en": "How many races are there?",
    "question_th": "มีกี่เผ่าพันธุ์?",
    "context": "CREATE TABLE race (Id VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT CLASS FROM race",
    "question_en": "What are the distinct classes that races can have?",
    "question_th": "เผ่าพันธุ์สามารถมีคลาสที่แตกต่างกันได้อะไรบ้าง?",
    "context": "CREATE TABLE race (CLASS VARCHAR)"
  },
  {
    "answer": "SELECT name, CLASS, date FROM race",
    "question_en": "Show name, class, and date for all races.",
    "question_th": "แสดงชื่อ ชั้น และวันที่ของการแข่งขันทั้งหมด",
    "context": "CREATE TABLE race (name VARCHAR, CLASS VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT CLASS, COUNT(*) FROM race GROUP BY CLASS",
    "question_en": "Show the race class and number of races in each class.",
    "question_th": "แสดงประเภทการแข่งขันและจำนวนการแข่งขันในแต่ละประเภท",
    "context": "CREATE TABLE race (CLASS VARCHAR)"
  },
  {
    "answer": "SELECT CLASS FROM race GROUP BY CLASS ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "What is the race class with most number of races.",
    "question_th": "คลาสใดที่มีจำนวนการแข่งขันมากที่สุด",
    "context": "CREATE TABLE race (CLASS VARCHAR)"
  },
  {
    "answer": "SELECT CLASS FROM race GROUP BY CLASS HAVING COUNT(*) >= 2",
    "question_en": "List the race class with at least two races.",
    "question_th": "ระบุประเภทการแข่งขันที่มีการแข่งขันอย่างน้อยสองรายการ",
    "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_en": "What are the names for tracks without a race in class 'GT'.",
    "question_th": "สนามแข่งที่ไม่มีการแข่งขันในคลาส '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_en": "Show all track names that have had no races.",
    "question_th": "แสดงชื่อสนามแข่งทั้งหมดที่ไม่มีการแข่งขัน",
    "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_en": "Show year where a track with a seating at least 5000 opened and a track with seating no more than 4000 opened.",
    "question_th": "ปีที่จัดแสดงซึ่งสนามแข่งที่มีที่นั่งอย่างน้อย 5,000 ที่นั่งเปิด และสนามแข่งที่มีที่นั่งไม่เกิน 4,000 ที่นั่งเปิด",
    "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_en": "Show the name of track and the number of races in each track.",
    "question_th": "แสดงชื่อสนามและจำนวนการแข่งขันในแต่ละสนาม",
    "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_en": "Show the name of track with most number of races.",
    "question_th": "แสดงชื่อสนามแข่งที่มีจำนวนการแข่งขันมากที่สุด",
    "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_en": "Show the name and date for each race and its track name.",
    "question_th": "แสดงชื่อและวันที่ของแต่ละการแข่งขันและชื่อสนาม",
    "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_en": "Show the name and location of track with 1 race.",
    "question_th": "แสดงชื่อและที่ตั้งสนามแข่ง 1 สนาม",
    "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_en": "Find the locations where have both tracks with more than 90000 seats and tracks with less than 70000 seats.",
    "question_th": "ค้นหาสถานที่ซึ่งมีทั้งรางที่มีที่นั่งมากกว่า 90,000 ที่นั่ง และรางที่มีที่นั่งน้อยกว่า 70,000 ที่นั่ง",
    "context": "CREATE TABLE track (LOCATION VARCHAR, seating INTEGER)"
  },
  {
    "answer": "SELECT COUNT(*) FROM member WHERE Membership_card = 'Black'",
    "question_en": "How many members have the black membership card?",
    "question_th": "สมาชิกมีบัตรสมาชิกสีดำกี่คน?",
    "context": "CREATE TABLE member (Membership_card VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*), address FROM member GROUP BY address",
    "question_en": "Find the number of members living in each address.",
    "question_th": "ค้นหาจำนวนสมาชิกที่อาศัยอยู่ในแต่ละที่อยู่",
    "context": "CREATE TABLE member (address VARCHAR)"
  },
  {
    "answer": "SELECT name FROM member WHERE address = 'Harford' OR address = 'Waterbury'",
    "question_en": "Give me the names of members whose address is in Harford or Waterbury.",
    "question_th": "แจ้งชื่อสมาชิกที่มีที่อยู่ในฮาร์ฟอร์ดหรือวอเตอร์เบอรีให้ฉันทราบ",
    "context": "CREATE TABLE member (name VARCHAR, address VARCHAR)"
  },
  {
    "answer": "SELECT name, member_id FROM member WHERE Membership_card = 'Black' OR age < 30",
    "question_en": "Find the ids and names of members who are under age 30 or with black membership card.",
    "question_th": "ค้นหารหัสและชื่อสมาชิกที่มีอายุต่ำกว่า 30 ปี หรือบัตรสมาชิกสีดำ",
    "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_en": "Find the purchase time, age and address of each member, and show the results in the order of purchase time.",
    "question_th": "ค้นหาเวลาซื้อ อายุ และที่อยู่ของสมาชิกแต่ละคน และแสดงผลตามลำดับเวลาซื้อ",
    "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_en": "Which membership card has more than 5 members?",
    "question_th": "บัตรสมาชิกใดมีสมาชิกมากกว่า 5 คน?",
    "context": "CREATE TABLE member (Membership_card VARCHAR)"
  },
  {
    "answer": "SELECT address FROM member WHERE age < 30 INTERSECT SELECT address FROM member WHERE age > 40",
    "question_en": "Which address has both members younger than 30 and members older than 40?",
    "question_th": "ที่อยู่ใดมีทั้งสมาชิกอายุน้อยกว่า 30 ปีและสมาชิกอายุมากกว่า 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_en": "What is the membership card held by both members living in Hartford and ones living in Waterbury address?",
    "question_th": "บัตรสมาชิกที่ถือโดยสมาชิกทั้งสองที่อาศัยอยู่ในฮาร์ตฟอร์ดและผู้ที่อาศัยอยู่ในวอเตอร์เบอรี่คืออะไร?",
    "context": "CREATE TABLE member (membership_card VARCHAR, address VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM member WHERE address <> 'Hartford'",
    "question_en": "How many members are not living in Hartford?",
    "question_th": "มีสมาชิกกี่คนที่ไม่ได้อาศัยอยู่ในฮาร์ตฟอร์ด",
    "context": "CREATE TABLE member (address VARCHAR)"
  },
  {
    "answer": "SELECT address FROM member EXCEPT SELECT address FROM member WHERE Membership_card = 'Black'",
    "question_en": "Which address do not have any member with the black membership card?",
    "question_th": "ที่อยู่ไหนไม่มีสมาชิกบัตรสมาชิกสีดำ?",
    "context": "CREATE TABLE member (address VARCHAR, Membership_card VARCHAR)"
  },
  {
    "answer": "SELECT address FROM shop ORDER BY open_year",
    "question_en": "Show the shop addresses ordered by their opening year.",
    "question_th": "แสดงที่อยู่ร้านค้าโดยเรียงลำดับตามปีที่เปิดทำการ",
    "context": "CREATE TABLE shop (address VARCHAR, open_year VARCHAR)"
  },
  {
    "answer": "SELECT AVG(num_of_staff), AVG(score) FROM shop",
    "question_en": "What are the average score and average staff number of all shops?",
    "question_th": "คะแนนเฉลี่ยและจำนวนพนักงานเฉลี่ยของร้านค้าทั้งหมดเป็นเท่าใด",
    "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_en": "Find the id and address of the shops whose score is below the average score.",
    "question_th": "ค้นหารหัสและที่อยู่ของร้านค้าที่มีคะแนนต่ำกว่าคะแนนเฉลี่ย",
    "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_en": "Find the address and staff number of the shops that do not have any happy hour.",
    "question_th": "ค้นหาที่อยู่และหมายเลขพนักงานของร้านค้าที่ไม่มีชั่วโมงแห่งความสุข",
    "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_en": "What are the id and address of the shops which have a happy hour in May?",
    "question_th": "id และที่อยู่ของร้านค้าที่มีชั่วโมงแห่งความสุขในเดือนพฤษภาคมคืออะไร?",
    "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_en": "which shop has happy hour most frequently? List its id and number of happy hours.",
    "question_th": "ร้านไหนมี happy hour บ่อยที่สุด? ระบุรหัสและจำนวนชั่วโมงแห่งความสุข",
    "context": "CREATE TABLE happy_hour (shop_id VARCHAR)"
  },
  {
    "answer": "SELECT MONTH FROM happy_hour GROUP BY MONTH ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "Which month has the most happy hours?",
    "question_th": "เดือนไหนมีชั่วโมงแห่งความสุขมากที่สุด?",
    "context": "CREATE TABLE happy_hour (MONTH VARCHAR)"
  },
  {
    "answer": "SELECT MONTH FROM happy_hour GROUP BY MONTH HAVING COUNT(*) > 2",
    "question_en": "Which months have more than 2 happy hours?",
    "question_th": "เดือนไหนมีชั่วโมงแห่งความสุขมากกว่า 2 ชั่วโมง?",
    "context": "CREATE TABLE happy_hour (MONTH VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM ALBUM",
    "question_en": "How many albums are there?",
    "question_th": "มีกี่อัลบั้มคะ?",
    "context": "CREATE TABLE ALBUM (Id VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM GENRE",
    "question_en": "List the names of all music genres.",
    "question_th": "รายชื่อแนวเพลงทั้งหมด",
    "context": "CREATE TABLE GENRE (Name VARCHAR)"
  },
  {
    "answer": "SELECT * FROM CUSTOMER WHERE State = \"NY\"",
    "question_en": "Find all the customer information in state NY.",
    "question_th": "ค้นหาข้อมูลลูกค้าทั้งหมดในรัฐนิวยอร์ก",
    "context": "CREATE TABLE CUSTOMER (State VARCHAR)"
  },
  {
    "answer": "SELECT FirstName, LastName FROM EMPLOYEE WHERE City = \"Calgary\"",
    "question_en": "What are the first names and last names of the employees who live in Calgary city.",
    "question_th": "ชื่อและนามสกุลของพนักงานที่อาศัยอยู่ในเมืองคาลการีคืออะไร",
    "context": "CREATE TABLE EMPLOYEE (FirstName VARCHAR, LastName VARCHAR, City VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT (BillingCountry) FROM INVOICE",
    "question_en": "What are the distinct billing countries of the invoices?",
    "question_th": "ประเทศสำหรับการเรียกเก็บเงินที่แตกต่างกันของใบแจ้งหนี้คือประเทศใด",
    "context": "CREATE TABLE INVOICE (BillingCountry VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM ARTIST WHERE Name LIKE \"%a%\"",
    "question_en": "Find the names of all artists that have \"a\" in their names.",
    "question_th": "ค้นหาชื่อศิลปินทั้งหมดที่มี \"a\" อยู่ในชื่อ",
    "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_en": "Find the title of all the albums of the artist \"AC/DC\".",
    "question_th": "ค้นหาชื่ออัลบั้มทั้งหมดของศิลปิน \"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_en": "Hom many albums does the artist \"Metallica\" have?",
    "question_th": "ศิลปิน \"Metallica\" มีอัลบั้มกี่อัลบั้ม?",
    "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_en": "Which artist does the album \"Balls to the Wall\" belong to?",
    "question_th": "อัลบั้ม \"Balls to the Wall\" เป็นของศิลปินคนใด",
    "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_en": "Which artist has the most albums?",
    "question_th": "ศิลปินคนไหนมีอัลบั้มมากที่สุด?",
    "context": "CREATE TABLE ALBUM (ArtistId VARCHAR); CREATE TABLE ARTIST (Name VARCHAR, ArtistId VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM TRACK WHERE Name LIKE '%you%'",
    "question_en": "Find the names of all the tracks that contain the word \"you\".",
    "question_th": "ค้นหาชื่อเพลงทั้งหมดที่มีคำว่า \"คุณ\"",
    "context": "CREATE TABLE TRACK (Name VARCHAR)"
  },
  {
    "answer": "SELECT AVG(UnitPrice) FROM TRACK",
    "question_en": "What is the average unit price of all the tracks?",
    "question_th": "ราคาเฉลี่ยต่อหน่วยของแทร็กทั้งหมดคือเท่าไร?",
    "context": "CREATE TABLE TRACK (UnitPrice INTEGER)"
  },
  {
    "answer": "SELECT MAX(Milliseconds), MIN(Milliseconds) FROM TRACK",
    "question_en": "What are the durations of the longest and the shortest tracks in milliseconds?",
    "question_th": "ระยะเวลาของแทร็กที่ยาวที่สุดและสั้นที่สุดในหน่วยมิลลิวินาทีคือเท่าไร?",
    "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_en": "Show the album names, ids and the number of tracks for each album.",
    "question_th": "แสดงชื่ออัลบั้ม รหัส และจำนวนเพลงของแต่ละอัลบั้ม",
    "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_en": "What is the name of the most common genre in all tracks?",
    "question_th": "แนวเพลงที่พบมากที่สุดในทุกเพลงชื่ออะไร?",
    "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_en": "What is the least common media type in all tracks?",
    "question_th": "ประเภทสื่อที่พบน้อยที่สุดในทุกแทร็กคืออะไร",
    "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_en": "Show the album names and ids for albums that contain tracks with unit price bigger than 1.",
    "question_th": "แสดงชื่ออัลบั้มและรหัสสำหรับอัลบั้มที่มีแทร็กที่มีราคาต่อหน่วยมากกว่า 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_en": "How many tracks belong to rock genre?",
    "question_th": "มีกี่เพลงที่อยู่ในแนวร็อค?",
    "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_en": "What is the average unit price of tracks that belong to Jazz genre?",
    "question_th": "ราคาเฉลี่ยต่อหน่วยของเพลงที่อยู่ในประเภทแจ๊สคือเท่าไร?",
    "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_en": "What is the first name and last name of the customer that has email \"luisg@embraer.com.br\"?",
    "question_th": "ชื่อและนามสกุลของลูกค้าที่มีอีเมล \"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_en": "How many customers have email that contains \"gmail.com\"?",
    "question_th": "มีลูกค้ากี่รายที่มีอีเมลที่มี \"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_en": "What is the first name and last name employee helps the customer with first name Leonie?",
    "question_th": "ชื่อและนามสกุลของพนักงานช่วยลูกค้าชื่อลีโอนี่คืออะไร?",
    "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_en": "What city does the employee who helps the customer with postal code 70174 live in?",
    "question_th": "พนักงานที่ช่วยเหลือลูกค้ารหัสไปรษณีย์ 70174 อาศัยอยู่ในเมืองใด",
    "context": "CREATE TABLE EMPLOYEE (City VARCHAR, EmployeeId VARCHAR); CREATE TABLE CUSTOMER (SupportRepId VARCHAR, PostalCode VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT city) FROM EMPLOYEE",
    "question_en": "How many distinct cities does the employees live in?",
    "question_th": "พนักงานอาศัยอยู่ในเมืองที่แตกต่างกันกี่เมือง?",
    "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_en": "Find all invoice dates corresponding to customers with first name Astrid and last name Gruber.",
    "question_th": "ค้นหาวันที่ในใบแจ้งหนี้ทั้งหมดที่ตรงกับลูกค้าด้วยชื่อ Astrid และนามสกุล 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_en": "Find all the customer last names that do not have invoice totals larger than 20.",
    "question_th": "ค้นหานามสกุลของลูกค้าทั้งหมดที่ไม่มียอดรวมใบแจ้งหนี้มากกว่า 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_en": "Find the first names of all customers that live in Brazil and have an invoice.",
    "question_th": "ค้นหาชื่อของลูกค้าทั้งหมดที่อาศัยอยู่ในบราซิลและมีใบแจ้งหนี้",
    "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_en": "Find the address of all customers that live in Germany and have invoice.",
    "question_th": "ค้นหาที่อยู่ของลูกค้าทั้งหมดที่อาศัยอยู่ในเยอรมนีและมีใบแจ้งหนี้",
    "context": "CREATE TABLE INVOICE (CustomerId VARCHAR); CREATE TABLE CUSTOMER (Address VARCHAR, CustomerId VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT Phone FROM EMPLOYEE",
    "question_en": "List the phone numbers of all employees.",
    "question_th": "ระบุหมายเลขโทรศัพท์ของพนักงานทุกคน",
    "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_en": "How many tracks are in the AAC audio file media type?",
    "question_th": "สื่อประเภทไฟล์เสียง AAC มีกี่แทร็ก",
    "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_en": "What is the average duration in milliseconds of tracks that belong to Latin or Pop genre?",
    "question_th": "ระยะเวลาเฉลี่ยในหน่วยมิลลิวินาทีของแทร็กที่อยู่ในประเภทละตินหรือป๊อปคือเท่าใด",
    "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_en": "Please show the employee first names and ids of employees who serve at least 10 customers.",
    "question_th": "กรุณาแสดงชื่อพนักงานและรหัสของพนักงานที่ให้บริการลูกค้าอย่างน้อย 10 ราย",
    "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_en": "Please show the employee last names that serves no more than 20 customers.",
    "question_th": "กรุณาแสดงนามสกุลพนักงานที่ให้บริการลูกค้าไม่เกิน 20 ราย",
    "context": "CREATE TABLE EMPLOYEE (EmployeeId VARCHAR); CREATE TABLE CUSTOMER (LastName VARCHAR, SupportRepId VARCHAR)"
  },
  {
    "answer": "SELECT Title FROM ALBUM ORDER BY Title",
    "question_en": "Please list all album titles in alphabetical order.",
    "question_th": "กรุณาระบุชื่ออัลบั้มทั้งหมดตามลำดับตัวอักษร",
    "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_en": "Please list the name and id of all artists that have at least 3 albums in alphabetical order.",
    "question_th": "โปรดระบุชื่อและรหัสของศิลปินทั้งหมดที่มีอย่างน้อย 3 อัลบั้มตามลำดับตัวอักษร",
    "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_en": "Find the names of artists that do not have any albums.",
    "question_th": "ค้นหาชื่อศิลปินที่ไม่มีอัลบั้มใดๆ",
    "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_en": "What is the average unit price of rock tracks?",
    "question_th": "ราคาเฉลี่ยต่อเพลงของเพลงร็อคคือเท่าไร?",
    "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_en": "What are the duration of the longest and shortest pop tracks in milliseconds?",
    "question_th": "ระยะเวลาของเพลงป๊อปที่ยาวที่สุดและสั้นที่สุดในหน่วยมิลลิวินาทีคือเท่าไร?",
    "context": "CREATE TABLE TRACK (GenreId VARCHAR); CREATE TABLE GENRE (GenreId VARCHAR, Name VARCHAR)"
  },
  {
    "answer": "SELECT BirthDate FROM EMPLOYEE WHERE City = \"Edmonton\"",
    "question_en": "What are the birth dates of employees living in Edmonton?",
    "question_th": "วันเกิดของพนักงานที่อาศัยอยู่ในเอดมันตันคือวันที่เท่าไหร่?",
    "context": "CREATE TABLE EMPLOYEE (BirthDate VARCHAR, City VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT (UnitPrice) FROM TRACK",
    "question_en": "What are the distinct unit prices of all tracks?",
    "question_th": "ราคาต่อหน่วยของแทร็กทั้งหมดคือเท่าใด",
    "context": "CREATE TABLE TRACK (UnitPrice VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM ARTIST WHERE NOT artistid IN (SELECT artistid FROM ALBUM)",
    "question_en": "How many artists do not have any album?",
    "question_th": "มีศิลปินกี่คนที่ไม่มีอัลบั้ม?",
    "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_en": "What are the album titles for albums containing both 'Reggae' and 'Rock' genre tracks?",
    "question_th": "ชื่ออัลบั้มของอัลบั้มที่มีทั้งเพลงแนว 'Reggae' และ 'Rock' คืออะไร",
    "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_en": "Find all the phone numbers.",
    "question_th": "ค้นหาหมายเลขโทรศัพท์ทั้งหมด",
    "context": "CREATE TABLE available_policies (customer_phone VARCHAR)"
  },
  {
    "answer": "SELECT customer_phone FROM available_policies WHERE policy_type_code = \"Life Insurance\"",
    "question_en": "What are the customer phone numbers under the policy \"Life Insurance\"?",
    "question_th": "หมายเลขโทรศัพท์ของลูกค้าภายใต้กรมธรรม์ “ประกันชีวิต” คืออะไร?",
    "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_en": "Which policy type has the most records in the database?",
    "question_th": "นโยบายประเภทใดมีบันทึกข้อมูลในฐานข้อมูลมากที่สุด",
    "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_en": "What are all the customer phone numbers under the most popular policy type?",
    "question_th": "หมายเลขโทรศัพท์ของลูกค้าตามประเภทกรมธรรม์ยอดนิยมคืออะไร?",
    "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_en": "Find the policy type used by more than 4 customers.",
    "question_th": "ค้นหาประเภทนโยบายที่ลูกค้ามากกว่า 4 รายใช้",
    "context": "CREATE TABLE available_policies (policy_type_code VARCHAR)"
  },
  {
    "answer": "SELECT SUM(settlement_amount), AVG(settlement_amount) FROM settlements",
    "question_en": "Find the total and average amount of settlements.",
    "question_th": "ค้นหาจำนวนการชำระหนี้ทั้งหมดและเฉลี่ย",
    "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_en": "Find the name of services that have been used for more than 2 times in first notification of loss.",
    "question_th": "ค้นหาชื่อบริการที่มีการใช้บริการเกิน 2 ครั้งในการแจ้งการสูญหายครั้งแรก",
    "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_en": "What is the effective date of the claim that has the largest amount of total settlement?",
    "question_th": "วันที่มีผลใช้บังคับของการเรียกร้องที่มีจำนวนเงินชำระหนี้รวมมากที่สุดคือเมื่อใด",
    "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_en": "How many policies are listed for the customer named \"Dayana Robel\"?",
    "question_th": "มีกี่กรมธรรม์ที่ระบุไว้สำหรับลูกค้าที่ชื่อ \"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_en": "What is the name of the customer who has the most policies listed?",
    "question_th": "ลูกค้าที่มีกรมธรรม์ระบุไว้มากที่สุดชื่ออะไร?",
    "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_en": "What are all the policy types of the customer named \"Dayana Robel\"?",
    "question_th": "ลูกค้าชื่อ \"ดายาน่า โรเบล\" มีกรมธรรม์ประเภทใดบ้าง?",
    "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_en": "What are all the policy types of the customer that has the most policies listed?",
    "question_th": "ลูกค้ามีกรมธรรม์ประเภทใดบ้างที่มีกรมธรรม์มากที่สุด?",
    "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_en": "List all the services in the alphabetical order.",
    "question_th": "แสดงรายการบริการทั้งหมดตามลำดับตัวอักษร",
    "context": "CREATE TABLE services (service_name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM services",
    "question_en": "How many services are there?",
    "question_th": "มีบริการกี่อย่าง?",
    "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_en": "Find the names of users who do not have a first notification of loss record.",
    "question_th": "ค้นหาชื่อของผู้ใช้ที่ไม่มีการแจ้งเตือนบันทึกการสูญเสียครั้งแรก",
    "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_en": "Find the names of customers who have used either the service \"Close a policy\" or the service \"Upgrade a policy\".",
    "question_th": "ค้นหาชื่อลูกค้าที่เคยใช้บริการ \"ปิดกรมธรรม์\" หรือบริการ \"อัปเกรดกรมธรรม์\"",
    "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_en": "Find the names of customers who have used both the service \"Close a policy\" and the service \"New policy application\".",
    "question_th": "ค้นหาชื่อลูกค้าที่เคยใช้บริการทั้ง \"ปิดกรมธรรม์\" และบริการ \"สมัครกรมธรรม์ใหม่\"",
    "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_en": "Find the IDs of customers whose name contains \"Diana\".",
    "question_th": "ค้นหารหัสของลูกค้าที่มีชื่อมี \"ไดอาน่า\"",
    "context": "CREATE TABLE customers (customer_id VARCHAR, customer_name VARCHAR)"
  },
  {
    "answer": "SELECT MAX(settlement_amount), MIN(settlement_amount) FROM settlements",
    "question_en": "What are the maximum and minimum settlement amount on record?",
    "question_th": "จำนวนเงินการชำระบัญชีสูงสุดและต่ำสุดที่บันทึกไว้คือเท่าใด",
    "context": "CREATE TABLE settlements (settlement_amount INTEGER)"
  },
  {
    "answer": "SELECT customer_id, customer_name FROM customers ORDER BY customer_id",
    "question_en": "List all the customers in increasing order of IDs.",
    "question_th": "แสดงรายการลูกค้าทั้งหมดตามลำดับรหัสที่เพิ่มขึ้น",
    "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_en": "Retrieve the open and close dates of all the policies associated with the customer whose name contains \"Diana\"",
    "question_th": "รับวันเปิดและปิดกรมธรรม์ทั้งหมดที่เกี่ยวข้องกับลูกค้าที่มีชื่อ \"ไดอาน่า\"",
    "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_en": "How many kinds of enzymes are there?",
    "question_th": "เอนไซม์มีกี่ชนิด?",
    "context": "CREATE TABLE enzyme (Id VARCHAR)"
  },
  {
    "answer": "SELECT name FROM enzyme ORDER BY name DESC",
    "question_en": "List the name of enzymes in descending lexicographical order.",
    "question_th": "ระบุชื่อเอนไซม์ตามลำดับพจนานุกรมจากมากไปน้อย",
    "context": "CREATE TABLE enzyme (name VARCHAR)"
  },
  {
    "answer": "SELECT name, LOCATION FROM enzyme",
    "question_en": "List the names and the locations that the enzymes can make an effect.",
    "question_th": "ระบุชื่อและตำแหน่งที่เอนไซม์สามารถสร้างผลกระทบได้",
    "context": "CREATE TABLE enzyme (name VARCHAR, LOCATION VARCHAR)"
  },
  {
    "answer": "SELECT MAX(OMIM) FROM enzyme",
    "question_en": "What is the maximum Online Mendelian Inheritance in Man (OMIM) value of the enzymes?",
    "question_th": "ค่า Online Mendelian Inheritance in Man (OMIM) สูงสุดของเอนไซม์คือเท่าใด",
    "context": "CREATE TABLE enzyme (OMIM INTEGER)"
  },
  {
    "answer": "SELECT product, chromosome, porphyria FROM enzyme WHERE LOCATION = 'Cytosol'",
    "question_en": "What is the product, chromosome and porphyria related to the enzymes which take effect at the location 'Cytosol'?",
    "question_th": "ผลิตภัณฑ์ โครโมโซม และพอร์ฟีเรียเกี่ยวข้องกับเอนไซม์ที่ออกฤทธิ์ที่ตำแหน่ง 'ไซโตซอล' คืออะไร?",
    "context": "CREATE TABLE enzyme (product VARCHAR, chromosome VARCHAR, porphyria VARCHAR, LOCATION VARCHAR)"
  },
  {
    "answer": "SELECT name FROM enzyme WHERE product <> 'Heme'",
    "question_en": "What are the names of enzymes who does not produce 'Heme'?",
    "question_th": "เอนไซม์ที่ไม่ผลิตฮีมชื่ออะไร",
    "context": "CREATE TABLE enzyme (name VARCHAR, product VARCHAR)"
  },
  {
    "answer": "SELECT name, trade_name FROM medicine WHERE FDA_approved = 'Yes'",
    "question_en": "What are the names and trade names of the medicines which has 'Yes' value in the FDA record?",
    "question_th": "ชื่อและชื่อทางการค้าของยาที่มีมูลค่า 'ใช่' ในบันทึกของ FDA คืออะไร?",
    "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_en": "What are the names of enzymes in the medicine named 'Amisulpride' that can serve as an 'inhibitor'?",
    "question_th": "เอนไซม์ในยาชื่อ 'Amisulpride' ที่สามารถทำหน้าที่เป็น 'สารยับยั้ง' ได้มีชื่ออะไรบ้าง?",
    "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_en": "What are the ids and names of the medicine that can interact with two or more enzymes?",
    "question_th": "รหัสและชื่อของยาที่สามารถโต้ตอบกับเอนไซม์ตั้งแต่สองตัวขึ้นไปมีอะไรบ้าง?",
    "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_en": "What are the ids, names and FDA approval status of medicines in descending order of the number of enzymes that it can interact with.",
    "question_th": "รหัส ชื่อ และสถานะการอนุมัติของ FDA ของยาคืออะไร โดยเรียงลำดับตามจำนวนเอนไซม์ที่ยาสามารถโต้ตอบด้วยได้จากมากไปน้อย",
    "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_en": "What is the id and name of the enzyme with most number of medicines that can interact as 'activator'?",
    "question_th": "รหัสและชื่อของเอนไซม์ที่มียาจำนวนมากที่สุดที่สามารถโต้ตอบเป็น 'ตัวกระตุ้น' คืออะไร?",
    "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_en": "What is the interaction type of the enzyme named 'ALA synthase' and the medicine named 'Aripiprazole'?",
    "question_th": "ประเภทปฏิสัมพันธ์ของเอนไซม์ชื่อ 'ALA synthase' และยาชื่อ '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_en": "What is the most common interaction type between enzymes and medicine? And how many are there?",
    "question_th": "ปฏิกิริยาระหว่างเอนไซม์กับยาที่พบบ่อยที่สุดคืออะไร? และมีกี่คน?",
    "context": "CREATE TABLE medicine_enzyme_interaction (interaction_type VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM medicine WHERE FDA_approved = 'No'",
    "question_en": "How many medicines have the FDA approval status 'No' ?",
    "question_th": "มียากี่ตัวที่ได้รับสถานะ อย. 'ไม่ใช่' ?",
    "context": "CREATE TABLE medicine (FDA_approved VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM enzyme WHERE NOT id IN (SELECT enzyme_id FROM medicine_enzyme_interaction)",
    "question_en": "How many enzymes do not have any interactions?",
    "question_th": "มีเอ็นไซม์กี่ตัวที่ไม่มีปฏิกิริยาโต้ตอบ?",
    "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_en": "What is the id and trade name of the medicines can interact with at least 3 enzymes?",
    "question_th": "รหัสและชื่อทางการค้าของยาที่สามารถโต้ตอบกับเอนไซม์ได้อย่างน้อย 3 ชนิดคืออะไร?",
    "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_en": "What are the distinct name, location and products of the enzymes which has any 'inhibitor' interaction?",
    "question_th": "ชื่อ ตำแหน่ง และผลิตภัณฑ์ที่แตกต่างกันของเอนไซม์ซึ่งมีปฏิกิริยาระหว่าง 'สารยับยั้ง' คืออะไร",
    "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_en": "List the medicine name and trade name which can both interact as 'inhibitor' and 'activitor' with enzymes.",
    "question_th": "ระบุชื่อยาและชื่อทางการค้าที่สามารถโต้ตอบเป็น 'สารยับยั้ง' และ 'สารกระตุ้น' กับเอนไซม์ได้",
    "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_en": "Show the medicine names and trade names that cannot interact with the enzyme with product 'Heme'.",
    "question_th": "แสดงชื่อยาและชื่อทางการค้าที่ไม่สามารถทำปฏิกิริยากับเอนไซม์กับผลิตภัณฑ์ 'ฮีม'",
    "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_en": "How many distinct FDA approval statuses are there for the medicines?",
    "question_th": "ยามีสถานะการอนุมัติจาก FDA ที่แตกต่างกันกี่แบบ?",
    "context": "CREATE TABLE medicine (FDA_approved VARCHAR)"
  },
  {
    "answer": "SELECT name FROM enzyme WHERE name LIKE \"%ALA%\"",
    "question_en": "Which enzyme names have the substring \"ALA\"?",
    "question_th": "ชื่อเอนไซม์ใดมีสายอักขระย่อย \"ALA\"",
    "context": "CREATE TABLE enzyme (name VARCHAR)"
  },
  {
    "answer": "SELECT trade_name, COUNT(*) FROM medicine GROUP BY trade_name",
    "question_en": "find the number of medicines offered by each trade.",
    "question_th": "ค้นหาจำนวนยาที่นำเสนอในแต่ละการค้า",
    "context": "CREATE TABLE medicine (trade_name VARCHAR)"
  },
  {
    "answer": "SELECT school, nickname FROM university ORDER BY founded",
    "question_en": "List all schools and their nicknames in the order of founded year.",
    "question_th": "รายชื่อโรงเรียนและชื่อเล่นทั้งหมดตามลำดับปีที่ก่อตั้ง",
    "context": "CREATE TABLE university (school VARCHAR, nickname VARCHAR, founded VARCHAR)"
  },
  {
    "answer": "SELECT school, LOCATION FROM university WHERE affiliation = 'Public'",
    "question_en": "List all public schools and their locations.",
    "question_th": "รายชื่อโรงเรียนรัฐบาลทั้งหมดและสถานที่ตั้ง",
    "context": "CREATE TABLE university (school VARCHAR, LOCATION VARCHAR, affiliation VARCHAR)"
  },
  {
    "answer": "SELECT founded FROM university ORDER BY enrollment DESC LIMIT 1",
    "question_en": "When was the school with the largest enrollment founded?",
    "question_th": "โรงเรียนที่มีจำนวนผู้ลงทะเบียนเรียนมากที่สุดก่อตั้งขึ้นเมื่อใด",
    "context": "CREATE TABLE university (founded VARCHAR, enrollment VARCHAR)"
  },
  {
    "answer": "SELECT founded FROM university WHERE affiliation <> 'Public' ORDER BY founded DESC LIMIT 1",
    "question_en": "Find the founded year of the newest non public school.",
    "question_th": "ค้นหาปีก่อตั้งของโรงเรียนที่ไม่ใช่ของรัฐแห่งใหม่ล่าสุด",
    "context": "CREATE TABLE university (founded VARCHAR, affiliation VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT school_id) FROM basketball_match",
    "question_en": "How many schools are in the basketball match?",
    "question_th": "การแข่งขันบาสเก็ตบอลมีกี่โรงเรียน?",
    "context": "CREATE TABLE basketball_match (school_id VARCHAR)"
  },
  {
    "answer": "SELECT acc_percent FROM basketball_match ORDER BY acc_percent DESC LIMIT 1",
    "question_en": "What is the highest acc percent score in the competition?",
    "question_th": "คะแนนเปอร์เซ็นต์สูงสุดในการแข่งขันคืออะไร?",
    "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_en": "What is the primary conference of the school that has the lowest acc percent score in the competition?",
    "question_th": "การประชุมใหญ่ของโรงเรียนที่มีคะแนนร้อยละ Acc ต่ำที่สุดในการแข่งขันคืออะไร?",
    "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_en": "What is the team name and acc regular season score of the school that was founded for the longest time?",
    "question_th": "ชื่อทีมและคะแนนประจำฤดูกาลของโรงเรียนที่ก่อตั้งยาวนานที่สุดคืออะไร?",
    "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_en": "Find the location and all games score of the school that has Clemson as its team name.",
    "question_th": "ค้นหาสถานที่และคะแนนเกมทั้งหมดของโรงเรียนที่มีเคลมสันเป็นชื่อทีม",
    "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_en": "What are the average enrollment size of the universities that are founded before 1850?",
    "question_th": "ขนาดการลงทะเบียนเฉลี่ยของมหาวิทยาลัยที่ก่อตั้งก่อนปี 1850 คือเท่าใด",
    "context": "CREATE TABLE university (enrollment INTEGER, founded INTEGER)"
  },
  {
    "answer": "SELECT enrollment, primary_conference FROM university ORDER BY founded LIMIT 1",
    "question_en": "Show the enrollment and primary_conference of the oldest college.",
    "question_th": "แสดงการลงทะเบียนและprimary_conferenceของวิทยาลัยที่เก่าแก่ที่สุด",
    "context": "CREATE TABLE university (enrollment VARCHAR, primary_conference VARCHAR, founded VARCHAR)"
  },
  {
    "answer": "SELECT SUM(enrollment), MIN(enrollment) FROM university",
    "question_en": "What is the total and minimum enrollment of all schools?",
    "question_th": "การลงทะเบียนทั้งหมดและขั้นต่ำของโรงเรียนทั้งหมดคือเท่าใด",
    "context": "CREATE TABLE university (enrollment INTEGER)"
  },
  {
    "answer": "SELECT SUM(enrollment), affiliation FROM university GROUP BY affiliation",
    "question_en": "Find the total student enrollment for different affiliation type schools.",
    "question_th": "ค้นหาการลงทะเบียนนักเรียนทั้งหมดสำหรับโรงเรียนประเภทสังกัดต่างๆ",
    "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_en": "How many schools do not participate in the basketball match?",
    "question_th": "มีโรงเรียนกี่แห่งที่ไม่เข้าร่วมการแข่งขันบาสเก็ตบอล?",
    "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_en": "Find the schools that were either founded after 1850 or public.",
    "question_th": "ค้นหาโรงเรียนที่ก่อตั้งหลังปี 1850 หรือโรงเรียนสาธารณะ",
    "context": "CREATE TABLE university (school VARCHAR, founded VARCHAR, affiliation VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT affiliation) FROM university",
    "question_en": "Find how many different affiliation types there are.",
    "question_th": "ค้นหาว่ามีประเภทสังกัดที่แตกต่างกันกี่ประเภท",
    "context": "CREATE TABLE university (affiliation VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM university WHERE LOCATION LIKE \"%NY%\"",
    "question_en": "Find how many school locations have the word 'NY'.",
    "question_th": "ค้นหาว่ามีโรงเรียนกี่แห่งที่มีคำว่า '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_en": "Find the team names of the universities whose enrollments are smaller than the average enrollment size.",
    "question_th": "ค้นหาชื่อทีมของมหาวิทยาลัยที่มีจำนวนการลงทะเบียนน้อยกว่าขนาดการลงทะเบียนเฉลี่ย",
    "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_en": "Find the number of universities that have over a 20000 enrollment size for each affiliation type.",
    "question_th": "ค้นหาจำนวนมหาวิทยาลัยที่มีจำนวนการลงทะเบียนมากกว่า 20,000 รายการสำหรับแต่ละประเภทสังกัด",
    "context": "CREATE TABLE university (affiliation VARCHAR, enrollment INTEGER)"
  },
  {
    "answer": "SELECT SUM(Enrollment), affiliation FROM university WHERE founded > 1850 GROUP BY affiliation",
    "question_en": "Find the total number of students enrolled in the colleges that were founded after the year of 1850 for each affiliation type.",
    "question_th": "ค้นหาจำนวนนักศึกษาทั้งหมดที่ลงทะเบียนเรียนในวิทยาลัยที่ก่อตั้งขึ้นหลังปี 1850 สำหรับแต่ละประเภทสังกัด",
    "context": "CREATE TABLE university (affiliation VARCHAR, Enrollment INTEGER, founded INTEGER)"
  },
  {
    "answer": "SELECT MAX(Enrollment) FROM university",
    "question_en": "What is the maximum enrollment across all schools?",
    "question_th": "การลงทะเบียนสูงสุดในทุกโรงเรียนคือเท่าใด",
    "context": "CREATE TABLE university (Enrollment INTEGER)"
  },
  {
    "answer": "SELECT * FROM basketball_match",
    "question_en": "List all information regarding the basketball match.",
    "question_th": "แสดงรายการข้อมูลทั้งหมดเกี่ยวกับการแข่งขันบาสเก็ตบอล",
    "context": "CREATE TABLE basketball_match (Id VARCHAR)"
  },
  {
    "answer": "SELECT team_name FROM basketball_match ORDER BY All_Home DESC",
    "question_en": "List names of all teams in the basketball competition, ordered by all home scores in descending order.",
    "question_th": "รายชื่อทีมทั้งหมดในการแข่งขันบาสเก็ตบอล เรียงตามคะแนนเหย้าทั้งหมดเรียงจากมากไปน้อย",
    "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_en": "the names of models that launched between 2002 and 2004.",
    "question_th": "ชื่อรุ่นที่เปิดตัวระหว่างปี 2545 ถึง 2547",
    "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_en": "Which model has the least amount of RAM? List the model name and the amount of RAM.",
    "question_th": "รุ่นไหนมี RAM น้อยที่สุด? ระบุชื่อรุ่นและจำนวน 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_en": "What are the chip model and screen mode of the phone with hardware model name \"LG-P760\"?",
    "question_th": "โทรศัพท์ที่มีฮาร์ดแวร์ชื่อรุ่น \"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_en": "How many phone hardware models are produced by the company named \"Nokia Corporation\"?",
    "question_th": "บริษัทที่ชื่อ \"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_en": "What is maximum and minimum RAM size of phone produced by company named \"Nokia Corporation\"?",
    "question_th": "ขนาด RAM สูงสุดและต่ำสุดของโทรศัพท์ที่ผลิตโดยบริษัทชื่อ \"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_en": "What is the average ROM size of phones produced by the company named \"Nokia Corporation\"?",
    "question_th": "ขนาด ROM เฉลี่ยของโทรศัพท์ที่ผลิตโดยบริษัทชื่อ \"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_en": "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.",
    "question_th": "ระบุชื่อรุ่นฮาร์ดแวร์และชื่อบริษัทสำหรับโทรศัพท์ทั้งหมดที่เปิดตัวในปี 2545 หรือมีขนาด RAM มากกว่า 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_en": "Find all phones that have word 'Full' in their accreditation types. List the Hardware Model name and Company name.",
    "question_th": "ค้นหาโทรศัพท์ทั้งหมดที่มีคำว่า 'เต็ม' ในประเภทการรับรอง ระบุชื่อรุ่นฮาร์ดแวร์และชื่อบริษัท",
    "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_en": "Find the Char cells, Pixels and Hardware colours for the screen of the phone whose hardware model name is \"LG-P760\".",
    "question_th": "ค้นหาชาร์เซลล์ พิกเซล และสีฮาร์ดแวร์สำหรับหน้าจอของโทรศัพท์ที่มีชื่อรุ่นฮาร์ดแวร์คือ \"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_en": "List the hardware model name and company name for the phone whose screen mode type is \"Graphics.\"",
    "question_th": "ระบุชื่อรุ่นฮาร์ดแวร์และชื่อบริษัทสำหรับโทรศัพท์ที่มีโหมดหน้าจอเป็น \"กราฟิก\"",
    "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_en": "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.",
    "question_th": "ค้นหาชื่อบริษัทที่มีรุ่นโทรศัพท์น้อยที่สุด ระบุชื่อบริษัทและหมายเลขรุ่นโทรศัพท์ที่ผลิตโดยบริษัทนั้น",
    "context": "CREATE TABLE phone (Company_name VARCHAR)"
  },
  {
    "answer": "SELECT Company_name FROM phone GROUP BY Company_name HAVING COUNT(*) > 1",
    "question_en": "List the name of the company that produced more than one phone model.",
    "question_th": "ระบุชื่อบริษัทที่ผลิตโทรศัพท์มากกว่าหนึ่งรุ่น",
    "context": "CREATE TABLE phone (Company_name VARCHAR)"
  },
  {
    "answer": "SELECT MAX(used_kb), MIN(used_kb), AVG(used_kb) FROM screen_mode",
    "question_en": "List the maximum, minimum and average number of used kb in screen mode.",
    "question_th": "แสดงรายการจำนวน kb ที่ใช้สูงสุด ต่ำสุด และเฉลี่ยในโหมดหน้าจอ",
    "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_en": "List the name of the phone model launched in year 2002 and with the highest RAM size.",
    "question_th": "รายชื่อโทรศัพท์รุ่นที่เปิดตัวในปี 2545 และมีขนาด RAM สูงสุด",
    "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_en": "What are the wifi and screen mode type of the hardware model named \"LG-P760\"?",
    "question_th": "wifi และโหมดหน้าจอของฮาร์ดแวร์รุ่น \"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_en": "List the hardware model name for the phones that have screen mode type \"Text\" or RAM size greater than 32.",
    "question_th": "แสดงรายการชื่อรุ่นฮาร์ดแวร์สำหรับโทรศัพท์ที่มีโหมดหน้าจอประเภท \"ข้อความ\" หรือขนาด RAM มากกว่า 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_en": "List the hardware model name for the phones that were produced by \"Nokia Corporation\" or whose screen mode type is \"Graphics.\"",
    "question_th": "ระบุชื่อรุ่นฮาร์ดแวร์สำหรับโทรศัพท์ที่ผลิตโดย \"Nokia Corporation\" หรือประเภทโหมดหน้าจอเป็น \"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_en": "List the hardware model name for the phons that were produced by \"Nokia Corporation\" but whose screen mode type is not Text.",
    "question_th": "ระบุชื่อรุ่นฮาร์ดแวร์สำหรับโทรศัพท์ที่ผลิตโดย \"Nokia Corporation\" แต่ประเภทโหมดหน้าจอไม่ใช่ข้อความ",
    "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_en": "List the phone hardware model and company name for the phones whose screen usage in kb is between 10 and 15.",
    "question_th": "ระบุรุ่นฮาร์ดแวร์โทรศัพท์และชื่อบริษัทสำหรับโทรศัพท์ที่มีการใช้งานหน้าจอเป็น kb อยู่ระหว่าง 10 ถึง 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_en": "Find the number of phones for each accreditation type.",
    "question_th": "ค้นหาจำนวนโทรศัพท์สำหรับการรับรองแต่ละประเภท",
    "context": "CREATE TABLE phone (Accreditation_type VARCHAR)"
  },
  {
    "answer": "SELECT Accreditation_level FROM phone GROUP BY Accreditation_level HAVING COUNT(*) > 3",
    "question_en": "Find the accreditation level that more than 3 phones use.",
    "question_th": "ค้นหาระดับการรับรองที่โทรศัพท์มากกว่า 3 เครื่องใช้",
    "context": "CREATE TABLE phone (Accreditation_level VARCHAR)"
  },
  {
    "answer": "SELECT * FROM chip_model",
    "question_en": "Find the details for all chip models.",
    "question_th": "ค้นหารายละเอียดสำหรับชิปทุกรุ่น",
    "context": "CREATE TABLE chip_model (Id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM chip_model WHERE wifi = 'No'",
    "question_en": "How many models do not have the wifi function?",
    "question_th": "มีกี่รุ่นที่ไม่มีฟังก์ชั่น wifi?",
    "context": "CREATE TABLE chip_model (wifi VARCHAR)"
  },
  {
    "answer": "SELECT model_name FROM chip_model ORDER BY launch_year",
    "question_en": "List all the model names sorted by their launch year.",
    "question_th": "รายชื่อรุ่นทั้งหมดเรียงตามปีที่เปิดตัว",
    "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_en": "Find the average ram mib size of the chip models that are never used by any phone.",
    "question_th": "ค้นหาขนาด ram mib เฉลี่ยของชิปรุ่นต่างๆ ที่ไม่เคยมีในโทรศัพท์เครื่องใดเลย",
    "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_en": "Find the names of the chip models that are not used by any phone with full accreditation type.",
    "question_th": "ค้นหาชื่อรุ่นชิปที่โทรศัพท์บางรุ่นไม่ได้ใช้โดยได้รับการรับรองเต็มรูปแบบ",
    "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_en": "Find the pixels of the screen modes that are used by both phones with full accreditation types and phones with Provisional accreditation types.",
    "question_th": "ค้นหาพิกเซลของโหมดหน้าจอที่ใช้โดยโทรศัพท์ทั้งสองประเภทที่มีประเภทการรับรองเต็มรูปแบบและโทรศัพท์ที่มีประเภทการรับรองชั่วคราว",
    "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_en": "How many countries are there in total?",
    "question_th": "มีทั้งหมดกี่ประเทศ?",
    "context": "CREATE TABLE country (Id VARCHAR)"
  },
  {
    "answer": "SELECT Country_name, Capital FROM country",
    "question_en": "Show the country name and capital of all countries.",
    "question_th": "แสดงชื่อประเทศและเมืองหลวงของทุกประเทศ",
    "context": "CREATE TABLE country (Country_name VARCHAR, Capital VARCHAR)"
  },
  {
    "answer": "SELECT Official_native_language FROM country WHERE Official_native_language LIKE \"%English%\"",
    "question_en": "Show all official native languages that contain the word \"English\".",
    "question_th": "แสดงภาษาท้องถิ่นอย่างเป็นทางการทั้งหมดที่มีคำว่า \"ภาษาอังกฤษ\"",
    "context": "CREATE TABLE country (Official_native_language VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT POSITION FROM match_season",
    "question_en": "Show all distinct positions of matches.",
    "question_th": "แสดงตำแหน่งการแข่งขันที่แตกต่างกันทั้งหมด",
    "context": "CREATE TABLE match_season (POSITION VARCHAR)"
  },
  {
    "answer": "SELECT Player FROM match_season WHERE College = \"UCLA\"",
    "question_en": "Show the players from college UCLA.",
    "question_th": "แสดงผู้เล่นจากวิทยาลัย UCLA",
    "context": "CREATE TABLE match_season (Player VARCHAR, College VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT POSITION FROM match_season WHERE College = \"UCLA\" OR College = \"Duke\"",
    "question_en": "Show the distinct position of players from college UCLA or Duke.",
    "question_th": "แสดงตำแหน่งที่ชัดเจนของผู้เล่นจากวิทยาลัย UCLA หรือ Duke",
    "context": "CREATE TABLE match_season (POSITION VARCHAR, College VARCHAR)"
  },
  {
    "answer": "SELECT Draft_Pick_Number, Draft_Class FROM match_season WHERE POSITION = \"Defender\"",
    "question_en": "Show the draft pick numbers and draft classes of players whose positions are defenders.",
    "question_th": "แสดงหมายเลขการเลือกร่างและคลาสร่างของผู้เล่นที่มีตำแหน่งเป็นกองหลัง",
    "context": "CREATE TABLE match_season (Draft_Pick_Number VARCHAR, Draft_Class VARCHAR, POSITION VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT Team) FROM match_season",
    "question_en": "How many distinct teams are involved in match seasons?",
    "question_th": "มีทีมที่แตกต่างกันกี่ทีมที่เกี่ยวข้องในฤดูกาลการแข่งขัน?",
    "context": "CREATE TABLE match_season (Team VARCHAR)"
  },
  {
    "answer": "SELECT Player, Years_Played FROM player",
    "question_en": "Show the players and the years played.",
    "question_th": "แสดงผู้เล่นและปีที่เล่น",
    "context": "CREATE TABLE player (Player VARCHAR, Years_Played VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM Team",
    "question_en": "Show all team names.",
    "question_th": "แสดงชื่อทีมทั้งหมด",
    "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_en": "Show the season, the player, and the name of the country that player belongs to.",
    "question_th": "แสดงฤดูกาล ผู้เล่น และชื่อประเทศที่ผู้เล่นอยู่",
    "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_en": "Which players are from Indonesia?",
    "question_th": "นักเตะคนไหนมาจากอินโดนีเซีย?",
    "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_en": "What are the distinct positions of the players from a country whose capital is Dublin?",
    "question_th": "ตำแหน่งที่แตกต่างกันของผู้เล่นจากประเทศที่มีเมืองหลวงคือดับลินมีอะไรบ้าง?",
    "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_en": "What are the official languages of the countries of players from Maryland or Duke college?",
    "question_th": "ภาษาทางการของประเทศของผู้เล่นจาก Maryland หรือ 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_en": "How many distinct official languages are there among countries of players whose positions are defenders.",
    "question_th": "มีภาษาราชการที่แตกต่างกันกี่ภาษาในประเทศของผู้เล่นที่มีตำแหน่งเป็นกองหลัง",
    "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_en": "Show the season, the player, and the name of the team that players belong to.",
    "question_th": "แสดงฤดูกาล ผู้เล่น และชื่อทีมที่ผู้เล่นอยู่",
    "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_en": "Show the positions of the players from the team with name \"Ryley Goldner\".",
    "question_th": "แสดงตำแหน่งผู้เล่นจากทีมชื่อ \"ไรลีย์ โกลด์เนอร์\"",
    "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_en": "How many distinct colleges are associated with players from the team with name \"Columbus Crew\".",
    "question_th": "มีวิทยาลัยที่แตกต่างกันกี่แห่งที่เกี่ยวข้องกับผู้เล่นจากทีมที่ชื่อ \"โคลัมบัส ครูว์\"",
    "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_en": "Show the players and years played for players from team \"Columbus Crew\".",
    "question_th": "แสดงรายชื่อผู้เล่นและจำนวนปีที่เล่นให้กับผู้เล่นจากทีมโคลัมบัส ครูว์",
    "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_en": "Show the position of players and the corresponding number of players.",
    "question_th": "แสดงตำแหน่งผู้เล่นและจำนวนผู้เล่นที่สอดคล้องกัน",
    "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_en": "Show the country names and the corresponding number of players.",
    "question_th": "แสดงชื่อประเทศและจำนวนผู้เล่นที่เกี่ยวข้อง",
    "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_en": "Return all players sorted by college in ascending alphabetical order.",
    "question_th": "ส่งคืนผู้เล่นทั้งหมดโดยเรียงตามวิทยาลัยโดยเรียงจากน้อยไปหามาก",
    "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_en": "Show the most common position of players in match seasons.",
    "question_th": "แสดงตำแหน่งผู้เล่นที่พบบ่อยที่สุดในฤดูกาลการแข่งขัน",
    "context": "CREATE TABLE match_season (POSITION VARCHAR)"
  },
  {
    "answer": "SELECT College FROM match_season GROUP BY College ORDER BY COUNT(*) DESC LIMIT 3",
    "question_en": "Show the top 3 most common colleges of players in match seasons.",
    "question_th": "แสดงวิทยาลัยผู้เล่นที่พบมากที่สุด 3 อันดับแรกในฤดูกาลการแข่งขัน",
    "context": "CREATE TABLE match_season (College VARCHAR)"
  },
  {
    "answer": "SELECT College FROM match_season GROUP BY College HAVING COUNT(*) >= 2",
    "question_en": "Show the name of colleges that have at least two players.",
    "question_th": "แสดงชื่อวิทยาลัยที่มีผู้เล่นอย่างน้อยสองคน",
    "context": "CREATE TABLE match_season (College VARCHAR)"
  },
  {
    "answer": "SELECT College FROM match_season GROUP BY College HAVING COUNT(*) >= 2 ORDER BY College DESC",
    "question_en": "Show the name of colleges that have at least two players in descending alphabetical order.",
    "question_th": "แสดงชื่อวิทยาลัยที่มีผู้เล่นอย่างน้อยสองคนตามลำดับตัวอักษรจากมากไปน้อย",
    "context": "CREATE TABLE match_season (College VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM team WHERE NOT Team_id IN (SELECT Team FROM match_season)",
    "question_en": "What are the names of teams that do no have match season record?",
    "question_th": "ทีมที่ไม่มีสถิติการแข่งขันมีชื่ออะไรบ้าง?",
    "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_en": "What are the names of countries that have both players with position forward and players with position defender?",
    "question_th": "ประเทศที่มีทั้งผู้เล่นตำแหน่งกองหน้าและผู้เล่นตำแหน่งกองหลังชื่ออะไร?",
    "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_en": "Which college have both players with position midfielder and players with position defender?",
    "question_th": "วิทยาลัยไหนมีทั้งผู้เล่นตำแหน่งกองกลางและผู้เล่นตำแหน่งกองหลัง?",
    "context": "CREATE TABLE match_season (College VARCHAR, POSITION VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM climber",
    "question_en": "How many climbers are there?",
    "question_th": "มีนักปีนเขากี่คน?",
    "context": "CREATE TABLE climber (Id VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM climber ORDER BY Points DESC",
    "question_en": "List the names of climbers in descending order of points.",
    "question_th": "รายชื่อนักปีนเขาตามลำดับคะแนนจากมากไปน้อย",
    "context": "CREATE TABLE climber (Name VARCHAR, Points VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM climber WHERE Country <> \"Switzerland\"",
    "question_en": "List the names of climbers whose country is not Switzerland.",
    "question_th": "รายชื่อนักปีนเขาที่ไม่ใช่ประเทศสวิตเซอร์แลนด์",
    "context": "CREATE TABLE climber (Name VARCHAR, Country VARCHAR)"
  },
  {
    "answer": "SELECT MAX(Points) FROM climber WHERE Country = \"United Kingdom\"",
    "question_en": "What is the maximum point for climbers whose country is United Kingdom?",
    "question_th": "จุดสูงสุดสำหรับนักปีนเขาที่มีประเทศคือสหราชอาณาจักรคือเท่าไร?",
    "context": "CREATE TABLE climber (Points INTEGER, Country VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT Country) FROM climber",
    "question_en": "How many distinct countries are the climbers from?",
    "question_th": "นักปีนเขามาจากกี่ประเทศ?",
    "context": "CREATE TABLE climber (Country VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM mountain ORDER BY Name",
    "question_en": "What are the names of mountains in ascending alphabetical order?",
    "question_th": "ภูเขาชื่ออะไรเรียงตามลำดับตัวอักษร?",
    "context": "CREATE TABLE mountain (Name VARCHAR)"
  },
  {
    "answer": "SELECT Country FROM mountain WHERE Height > 5000",
    "question_en": "What are the countries of mountains with height bigger than 5000?",
    "question_th": "ประเทศใดบ้างที่มีภูเขาสูงกว่า 5,000 ภูเขา?",
    "context": "CREATE TABLE mountain (Country VARCHAR, Height INTEGER)"
  },
  {
    "answer": "SELECT Name FROM mountain ORDER BY Height DESC LIMIT 1",
    "question_en": "What is the name of the highest mountain?",
    "question_th": "ภูเขาที่สูงที่สุดชื่ออะไร?",
    "context": "CREATE TABLE mountain (Name VARCHAR, Height VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT Range FROM mountain ORDER BY Prominence DESC LIMIT 3",
    "question_en": "List the distinct ranges of the mountains with the top 3 prominence.",
    "question_th": "รายชื่อเทือกเขาที่แตกต่างกันโดยมีความโดดเด่น 3 อันดับแรก",
    "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_en": "Show names of climbers and the names of mountains they climb.",
    "question_th": "แสดงชื่อนักปีนเขาและชื่อภูเขาที่พวกเขาปีน",
    "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_en": "Show the names of climbers and the heights of mountains they climb.",
    "question_th": "แสดงชื่อนักปีนเขาและความสูงของภูเขาที่พวกเขาปีน",
    "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_en": "Show the height of the mountain climbed by the climber with the maximum points.",
    "question_th": "แสดงความสูงของภูเขาที่นักปีนเขาปีนขึ้นไปด้วยคะแนนสูงสุด",
    "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_en": "Show the distinct names of mountains climbed by climbers from country \"West Germany\".",
    "question_th": "แสดงชื่อภูเขาที่นักปีนเขาจากประเทศ \"เยอรมนีตะวันตก\" ปีนขึ้นไป",
    "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_en": "Show the times used by climbers to climb mountains in Country Uganda.",
    "question_th": "แสดงเวลาที่นักปีนเขาใช้เพื่อปีนภูเขาในประเทศยูกันดา",
    "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_en": "Please show the countries and the number of climbers from each country.",
    "question_th": "กรุณาแสดงประเทศและจำนวนนักปีนเขาในแต่ละประเทศ",
    "context": "CREATE TABLE climber (Country VARCHAR)"
  },
  {
    "answer": "SELECT Country FROM mountain GROUP BY Country HAVING COUNT(*) > 1",
    "question_en": "List the countries that have more than one mountain.",
    "question_th": "รายชื่อประเทศที่มีภูเขามากกว่าหนึ่งลูก",
    "context": "CREATE TABLE mountain (Country VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM mountain WHERE NOT Mountain_ID IN (SELECT Mountain_ID FROM climber)",
    "question_en": "List the names of mountains that do not have any climber.",
    "question_th": "รายชื่อภูเขาที่ไม่มีนักปีนเขา",
    "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_en": "Show the countries that have mountains with height more than 5600 stories and mountains with height less than 5200.",
    "question_th": "แสดงประเทศที่มีภูเขาสูงเกิน 5600 ชั้น และภูเขาสูงน้อยกว่า 5200 ชั้น",
    "context": "CREATE TABLE mountain (Country VARCHAR, Height INTEGER)"
  },
  {
    "answer": "SELECT Range FROM mountain GROUP BY Range ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "Show the range that has the most number of mountains.",
    "question_th": "แสดงช่วงที่มีจำนวนภูเขามากที่สุด",
    "context": "CREATE TABLE mountain (Range VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM mountain WHERE Height > 5000 OR Prominence > 1000",
    "question_en": "Show the names of mountains with height more than 5000 or prominence more than 1000.",
    "question_th": "แสดงชื่อภูเขาที่มีความสูงกว่า 5,000 หรือโดดเด่นมากกว่า 1,000",
    "context": "CREATE TABLE mountain (Name VARCHAR, Height VARCHAR, Prominence VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM body_builder",
    "question_en": "How many body builders are there?",
    "question_th": "มีนักเพาะกายกี่คน?",
    "context": "CREATE TABLE body_builder (Id VARCHAR)"
  },
  {
    "answer": "SELECT Total FROM body_builder ORDER BY Total",
    "question_en": "List the total scores of body builders in ascending order.",
    "question_th": "แสดงรายการคะแนนรวมของนักเพาะกายโดยเรียงจากน้อยไปหามาก",
    "context": "CREATE TABLE body_builder (Total VARCHAR)"
  },
  {
    "answer": "SELECT Snatch, Clean_Jerk FROM body_builder ORDER BY Snatch",
    "question_en": "List the snatch score and clean jerk score of body builders in ascending order of snatch score.",
    "question_th": "แสดงรายการคะแนนการฉกและคะแนนการกระตุกที่สะอาดของนักเพาะกายโดยเรียงลำดับจากคะแนนการฉกจากน้อยไปมาก",
    "context": "CREATE TABLE body_builder (Snatch VARCHAR, Clean_Jerk VARCHAR)"
  },
  {
    "answer": "SELECT AVG(Snatch) FROM body_builder",
    "question_en": "What is the average snatch score of body builders?",
    "question_th": "คะแนนเฉลี่ยของนักเพาะกายคือเท่าไร?",
    "context": "CREATE TABLE body_builder (Snatch INTEGER)"
  },
  {
    "answer": "SELECT Clean_Jerk FROM body_builder ORDER BY Total DESC LIMIT 1",
    "question_en": "What are the clean and jerk score of the body builder with the highest total score?",
    "question_th": "คะแนน Clean and Jerk ของนักเพาะกายที่มีคะแนนรวมสูงสุดคือเท่าไร?",
    "context": "CREATE TABLE body_builder (Clean_Jerk VARCHAR, Total VARCHAR)"
  },
  {
    "answer": "SELECT Birth_Date FROM People ORDER BY Height",
    "question_en": "What are the birthdays of people in ascending order of height?",
    "question_th": "วันเกิดของคนเรียงลำดับส่วนสูงคือวันไหน?",
    "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_en": "What are the names of body builders?",
    "question_th": "นักเพาะกายชื่ออะไร?",
    "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_en": "What are the names of body builders whose total score is higher than 300?",
    "question_th": "นักเพาะกายที่มีคะแนนรวมเกิน 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_en": "What is the name of the body builder with the greatest body weight?",
    "question_th": "นักเพาะกายที่มีน้ำหนักตัวมากที่สุดชื่ออะไร?",
    "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_en": "What are the birth date and birth place of the body builder with the highest total points?",
    "question_th": "วันเกิดและสถานที่เกิดของนักเพาะกายที่มีคะแนนรวมสูงสุดคือวันไหน?",
    "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_en": "What are the heights of body builders with total score smaller than 315?",
    "question_th": "นักเพาะกายที่มีคะแนนรวมต่ำกว่า 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_en": "What is the average total score of body builders with height bigger than 200?",
    "question_th": "คะแนนรวมเฉลี่ยของนักเพาะกายที่มีส่วนสูงเกิน 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_en": "What are the names of body builders in descending order of total scores?",
    "question_th": "นักเพาะกายชื่ออะไรเรียงตามคะแนนรวมจากมากไปน้อย?",
    "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_en": "List each birth place along with the number of people from there.",
    "question_th": "ระบุสถานที่เกิดแต่ละแห่งพร้อมจำนวนผู้คนจากที่นั่น",
    "context": "CREATE TABLE people (Birth_Place VARCHAR)"
  },
  {
    "answer": "SELECT Birth_Place FROM people GROUP BY Birth_Place ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "What is the most common birth place of people?",
    "question_th": "คนเกิดที่ไหนบ่อยที่สุด?",
    "context": "CREATE TABLE people (Birth_Place VARCHAR)"
  },
  {
    "answer": "SELECT Birth_Place FROM people GROUP BY Birth_Place HAVING COUNT(*) >= 2",
    "question_en": "What are the birth places that are shared by at least two people?",
    "question_th": "สถานที่เกิดที่มีคนร่วมกันอย่างน้อยสองคนคือที่ใด",
    "context": "CREATE TABLE people (Birth_Place VARCHAR)"
  },
  {
    "answer": "SELECT Height, Weight FROM people ORDER BY Height DESC",
    "question_en": "List the height and weight of people in descending order of height.",
    "question_th": "ระบุส่วนสูงและน้ำหนักของบุคคลตามลำดับส่วนสูงจากมากไปน้อย",
    "context": "CREATE TABLE people (Height VARCHAR, Weight VARCHAR)"
  },
  {
    "answer": "SELECT * FROM body_builder",
    "question_en": "Show all information about each body builder.",
    "question_th": "แสดงข้อมูลทั้งหมดเกี่ยวกับนักเพาะกายแต่ละคน",
    "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_en": "List the names and origins of people who are not body builders.",
    "question_th": "ระบุชื่อและที่มาของผู้ที่ไม่ใช่นักเพาะกาย",
    "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_en": "How many distinct birth places are there?",
    "question_th": "มีสถานที่เกิดที่แตกต่างกันกี่แห่ง?",
    "context": "CREATE TABLE people (Birth_Place VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM people WHERE NOT people_id IN (SELECT People_ID FROM body_builder)",
    "question_en": "How many persons are not body builders?",
    "question_th": "มีกี่คนที่ไม่ใช่นักเพาะกาย?",
    "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_en": "List the weight of the body builders who have snatch score higher than 140 or have the height greater than 200.",
    "question_th": "ระบุน้ำหนักของนักเพาะกายที่มีคะแนน Snatch Score สูงกว่า 140 หรือมีส่วนสูงมากกว่า 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_en": "What are the total scores of the body builders whose birthday contains the string \"January\" ?",
    "question_th": "คะแนนรวมนักเพาะกายที่มีวันเกิดมีคำว่า \"มกราคม\" เป็นเท่าใด ?",
    "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_en": "What is the minimum snatch score?",
    "question_th": "คะแนนฉกขั้นต่ำคือเท่าไร?",
    "context": "CREATE TABLE body_builder (snatch INTEGER)"
  },
  {
    "answer": "SELECT COUNT(*) FROM election",
    "question_en": "How many elections are there?",
    "question_th": "มีการเลือกตั้งกี่ครั้ง?",
    "context": "CREATE TABLE election (Id VARCHAR)"
  },
  {
    "answer": "SELECT Votes FROM election ORDER BY Votes DESC",
    "question_en": "List the votes of elections in descending order.",
    "question_th": "แสดงรายการคะแนนเสียงของการเลือกตั้งตามลำดับจากมากไปน้อย",
    "context": "CREATE TABLE election (Votes VARCHAR)"
  },
  {
    "answer": "SELECT Date, Vote_Percent FROM election",
    "question_en": "List the dates and vote percents of elections.",
    "question_th": "ระบุวันที่และเปอร์เซ็นต์การลงคะแนนเสียงของการเลือกตั้ง",
    "context": "CREATE TABLE election (Date VARCHAR, Vote_Percent VARCHAR)"
  },
  {
    "answer": "SELECT MIN(Vote_Percent), MAX(Vote_Percent) FROM election",
    "question_en": "What are the minimum and maximum vote percents of elections?",
    "question_th": "เปอร์เซ็นต์คะแนนเสียงต่ำสุดและสูงสุดในการเลือกตั้งคือเท่าใด",
    "context": "CREATE TABLE election (Vote_Percent INTEGER)"
  },
  {
    "answer": "SELECT Name, Party FROM representative",
    "question_en": "What are the names and parties of representatives?",
    "question_th": "ชื่อและฝ่ายของผู้แทนคืออะไร?",
    "context": "CREATE TABLE representative (Name VARCHAR, Party VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM Representative WHERE Party <> \"Republican\"",
    "question_en": "What are the names of representatives whose party is not \"Republican\"?",
    "question_th": "ตัวแทนของพรรคที่ไม่ใช่ \"พรรครีพับลิกัน\" มีชื่ออะไรบ้าง?",
    "context": "CREATE TABLE Representative (Name VARCHAR, Party VARCHAR)"
  },
  {
    "answer": "SELECT Lifespan FROM representative WHERE State = \"New York\" OR State = \"Indiana\"",
    "question_en": "What are the life spans of representatives from New York state or Indiana state?",
    "question_th": "อายุขัยของผู้แทนจากรัฐนิวยอร์กหรือรัฐอินเดียน่าคือเท่าใด",
    "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_en": "What are the names of representatives and the dates of elections they participated in.",
    "question_th": "ตัวแทนชื่ออะไรและวันที่เลือกตั้งที่พวกเขาเข้าร่วม",
    "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_en": "What are the names of representatives with more than 10000 votes in election?",
    "question_th": "ตัวแทนที่ได้รับคะแนนเสียงมากกว่า 10,000 เสียงในการเลือกตั้งชื่ออะไร?",
    "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_en": "What are the names of representatives in descending order of votes?",
    "question_th": "รายชื่อผู้แทนเรียงตามการลงคะแนนเสียงจากมากไปหาน้อยมีชื่ออะไรบ้าง?",
    "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_en": "What is the party of the representative that has the smallest number of votes.",
    "question_th": "พรรคใดของผู้แทนราษฎรที่ได้คะแนนเสียงน้อยที่สุดคือพรรคใด",
    "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_en": "What are the lifespans of representatives in descending order of vote percent?",
    "question_th": "ตัวแทนจะมีอายุขัยเท่าใดโดยเรียงตามเปอร์เซ็นต์การลงคะแนนจากมากไปน้อย?",
    "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_en": "What is the average number of votes of representatives from party \"Republican\"?",
    "question_th": "จำนวนคะแนนเสียงเฉลี่ยของผู้แทนจากพรรค \"รีพับลิกัน\" คือเท่าไร?",
    "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_en": "What are the different parties of representative? Show the party name and the number of representatives in each party.",
    "question_th": "ฝ่ายต่างๆ ของตัวแทนมีอะไรบ้าง? แสดงชื่อพรรคและจำนวนผู้แทนในแต่ละพรรค",
    "context": "CREATE TABLE representative (Party VARCHAR)"
  },
  {
    "answer": "SELECT Party, COUNT(*) FROM representative GROUP BY Party ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "What is the party that has the largest number of representatives?",
    "question_th": "พรรคใดมีผู้แทนมากที่สุด?",
    "context": "CREATE TABLE representative (Party VARCHAR)"
  },
  {
    "answer": "SELECT Party FROM representative GROUP BY Party HAVING COUNT(*) >= 3",
    "question_en": "What parties have at least three representatives?",
    "question_th": "ฝ่ายใดมีผู้แทนอย่างน้อยสามคน?",
    "context": "CREATE TABLE representative (Party VARCHAR)"
  },
  {
    "answer": "SELECT State FROM representative GROUP BY State HAVING COUNT(*) >= 2",
    "question_en": "What states have at least two representatives?",
    "question_th": "รัฐใดมีตัวแทนอย่างน้อยสองคน?",
    "context": "CREATE TABLE representative (State VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM representative WHERE NOT Representative_ID IN (SELECT Representative_ID FROM election)",
    "question_en": "List the names of representatives that have not participated in elections listed here.",
    "question_th": "รายชื่อผู้แทนที่ไม่ได้เข้าร่วมการเลือกตั้งแสดงไว้ที่นี่",
    "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_en": "Show the parties that have both representatives in New York state and representatives in Pennsylvania state.",
    "question_th": "แสดงฝ่ายที่มีทั้งตัวแทนในรัฐนิวยอร์กและตัวแทนในรัฐเพนซิลเวเนีย",
    "context": "CREATE TABLE representative (Party VARCHAR, State VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT Party) FROM representative",
    "question_en": "How many distinct parties are there for representatives?",
    "question_th": "มีฝ่ายที่แตกต่างกันสำหรับตัวแทนกี่ฝ่าย?",
    "context": "CREATE TABLE representative (Party VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Apartment_Bookings",
    "question_en": "How many apartment bookings are there in total?",
    "question_th": "มีการจองอพาร์ทเมนท์ทั้งหมดกี่ห้อง?",
    "context": "CREATE TABLE Apartment_Bookings (Id VARCHAR)"
  },
  {
    "answer": "SELECT booking_start_date, booking_end_date FROM Apartment_Bookings",
    "question_en": "Show the start dates and end dates of all the apartment bookings.",
    "question_th": "แสดงวันที่เริ่มต้นและวันที่สิ้นสุดของการจองอพาร์ทเมนท์ทั้งหมด",
    "context": "CREATE TABLE Apartment_Bookings (booking_start_date VARCHAR, booking_end_date VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT building_description FROM Apartment_Buildings",
    "question_en": "Show all distinct building descriptions.",
    "question_th": "แสดงคำอธิบายอาคารที่แตกต่างกันทั้งหมด",
    "context": "CREATE TABLE Apartment_Buildings (building_description VARCHAR)"
  },
  {
    "answer": "SELECT building_short_name FROM Apartment_Buildings WHERE building_manager = \"Emma\"",
    "question_en": "Show the short names of the buildings managed by \"Emma\".",
    "question_th": "แสดงชื่อย่อของอาคารที่จัดการโดย \"เอ็มม่า\"",
    "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_en": "Show the addresses and phones of all the buildings managed by \"Brenden\".",
    "question_th": "แสดงที่อยู่และโทรศัพท์ของอาคารทั้งหมดที่จัดการโดย \"เบรนเดน\"",
    "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_en": "What are the building full names that contain the word \"court\"?",
    "question_th": "ชื่อเต็มของอาคารที่มีคำว่า \"ศาล\" คืออะไร",
    "context": "CREATE TABLE Apartment_Buildings (building_full_name VARCHAR)"
  },
  {
    "answer": "SELECT MIN(bathroom_count), MAX(bathroom_count) FROM Apartments",
    "question_en": "What is the minimum and maximum number of bathrooms of all the apartments?",
    "question_th": "จำนวนห้องน้ำขั้นต่ำและสูงสุดของอพาร์ทเมนท์ทั้งหมดคือเท่าไร?",
    "context": "CREATE TABLE Apartments (bathroom_count INTEGER)"
  },
  {
    "answer": "SELECT AVG(bedroom_count) FROM Apartments",
    "question_en": "What is the average number of bedrooms of all apartments?",
    "question_th": "จำนวนห้องนอนโดยเฉลี่ยของอพาร์ทเมนท์ทั้งหมดคือเท่าไร?",
    "context": "CREATE TABLE Apartments (bedroom_count INTEGER)"
  },
  {
    "answer": "SELECT apt_number, room_count FROM Apartments",
    "question_en": "Return the apartment number and the number of rooms for each apartment.",
    "question_th": "ส่งกลับหมายเลขอพาร์ทเมนท์และจำนวนห้องของแต่ละอพาร์ตเมนต์",
    "context": "CREATE TABLE Apartments (apt_number VARCHAR, room_count VARCHAR)"
  },
  {
    "answer": "SELECT AVG(room_count) FROM Apartments WHERE apt_type_code = \"Studio\"",
    "question_en": "What is the average number of rooms of apartments with type code \"Studio\"?",
    "question_th": "จำนวนห้องโดยเฉลี่ยของอพาร์ทเมนต์ที่มีรหัสประเภท \"สตูดิโอ\" คือเท่าไร?",
    "context": "CREATE TABLE Apartments (room_count INTEGER, apt_type_code VARCHAR)"
  },
  {
    "answer": "SELECT apt_number FROM Apartments WHERE apt_type_code = \"Flat\"",
    "question_en": "Return the apartment numbers of the apartments with type code \"Flat\".",
    "question_th": "ส่งกลับหมายเลขอพาร์ทเมนต์ของอพาร์ทเมนต์พร้อมรหัสประเภท \"Flat\"",
    "context": "CREATE TABLE Apartments (apt_number VARCHAR, apt_type_code VARCHAR)"
  },
  {
    "answer": "SELECT guest_first_name, guest_last_name FROM Guests",
    "question_en": "Return the first names and last names of all guests",
    "question_th": "ส่งกลับชื่อและนามสกุลของแขกทุกคน",
    "context": "CREATE TABLE Guests (guest_first_name VARCHAR, guest_last_name VARCHAR)"
  },
  {
    "answer": "SELECT date_of_birth FROM Guests WHERE gender_code = \"Male\"",
    "question_en": "Return the date of birth for all the guests with gender code \"Male\".",
    "question_th": "กลับวันเกิดของแขกทุกคนด้วยรหัสเพศ \"ชาย\"",
    "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_en": "Show the apartment numbers, start dates, and end dates of all the apartment bookings.",
    "question_th": "แสดงหมายเลขอพาร์ทเมนท์ วันที่เริ่มต้น และวันที่สิ้นสุดของการจองอพาร์ทเมนท์ทั้งหมด",
    "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_en": "What are the booking start and end dates of the apartments with type code \"Duplex\"?",
    "question_th": "วันที่เริ่มต้นและสิ้นสุดการจองของอพาร์ทเมนท์ที่มีรหัสประเภท \"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_en": "What are the booking start and end dates of the apartments with more than 2 bedrooms?",
    "question_th": "วันที่เริ่มต้นและสิ้นสุดการจองของอพาร์ทเมนท์ที่มีมากกว่า 2 ห้องนอนคือเมื่อใด?",
    "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_en": "What is the booking status code of the apartment with apartment number \"Suite 634\"?",
    "question_th": "รหัสสถานะการจองอพาร์ทเมนท์หมายเลข \"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_en": "Show the distinct apartment numbers of the apartments that have bookings with status code \"Confirmed\".",
    "question_th": "แสดงหมายเลขอพาร์ตเมนต์ที่แตกต่างกันของอพาร์ตเมนต์ที่ได้จองพร้อมรหัสสถานะ \"ยืนยันแล้ว\"",
    "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_en": "Show the average room count of the apartments that have booking status code \"Provisional\".",
    "question_th": "แสดงจำนวนห้องพักโดยเฉลี่ยของอพาร์ทเมนท์ที่มีรหัสสถานะการจอง \"ชั่วคราว\"",
    "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_en": "Show the guest first names, start dates, and end dates of all the apartment bookings.",
    "question_th": "แสดงชื่อผู้เข้าพัก วันที่เริ่มต้น และวันที่สิ้นสุดของการจองอพาร์ทเมนท์ทั้งหมด",
    "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_en": "Show the start dates and end dates of all the apartment bookings made by guests with gender code \"Female\".",
    "question_th": "แสดงวันที่เริ่มต้นและวันที่สิ้นสุดของการจองอพาร์ทเมนท์ทั้งหมดที่จองโดยผู้เข้าพักโดยมีรหัสเพศ \"หญิง\"",
    "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_en": "Show the first names and last names of all the guests that have apartment bookings with status code \"Confirmed\".",
    "question_th": "แสดงชื่อและนามสกุลของแขกทุกคนที่จองอพาร์ทเมนท์พร้อมรหัสสถานะ \"ยืนยันแล้ว\"",
    "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_en": "Show the facility codes of apartments with more than 4 bedrooms.",
    "question_th": "แสดงรหัสสิ่งอำนวยความสะดวกของอพาร์ทเมนท์ที่มีมากกว่า 4 ห้องนอน",
    "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_en": "Show the total number of rooms of all apartments with facility code \"Gym\".",
    "question_th": "แสดงจำนวนห้องทั้งหมดของอพาร์ทเมนท์ทั้งหมดด้วยรหัสสิ่งอำนวยความสะดวก \"ยิม\"",
    "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_en": "Show the total number of rooms of the apartments in the building with short name \"Columbus Square\".",
    "question_th": "แสดงจำนวนห้องทั้งหมดของอพาร์ทเมนท์ในอาคารที่มีชื่อสั้นว่า \"โคลัมบัสสแควร์\"",
    "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_en": "Show the addresses of the buildings that have apartments with more than 2 bathrooms.",
    "question_th": "แสดงที่อยู่ของอาคารที่มีอพาร์ตเมนต์ที่มีห้องน้ำมากกว่า 2 ห้อง",
    "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_en": "Show the apartment type codes and apartment numbers in the buildings managed by \"Kyle\".",
    "question_th": "แสดงรหัสประเภทอพาร์ทเมนต์และหมายเลขอพาร์ทเมนต์ในอาคารที่จัดการโดย \"ไคล์\"",
    "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_en": "Show the booking status code and the corresponding number of bookings.",
    "question_th": "แสดงรหัสสถานะการจองและจำนวนการจองที่เกี่ยวข้อง",
    "context": "CREATE TABLE Apartment_Bookings (booking_status_code VARCHAR)"
  },
  {
    "answer": "SELECT apt_number FROM Apartments ORDER BY room_count",
    "question_en": "Return all the apartment numbers sorted by the room count in ascending order.",
    "question_th": "ส่งกลับหมายเลขอพาร์ทเมนท์ทั้งหมดที่จัดเรียงตามจำนวนห้องโดยเรียงลำดับจากน้อยไปหามาก",
    "context": "CREATE TABLE Apartments (apt_number VARCHAR, room_count VARCHAR)"
  },
  {
    "answer": "SELECT apt_number FROM Apartments ORDER BY bedroom_count DESC LIMIT 1",
    "question_en": "Return the apartment number with the largest number of bedrooms.",
    "question_th": "กลับหมายเลขอพาร์ทเมนต์ที่มีจำนวนห้องนอนมากที่สุด",
    "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_en": "Show the apartment type codes and the corresponding number of apartments sorted by the number of apartments in ascending order.",
    "question_th": "แสดงรหัสประเภทอพาร์ทเมนต์และจำนวนอพาร์ทเมนท์ที่เกี่ยวข้อง เรียงตามจำนวนอพาร์ทเมนท์จากน้อยไปหามาก",
    "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_en": "Show the top 3 apartment type codes sorted by the average number of rooms in descending order.",
    "question_th": "แสดงรหัสประเภทอพาร์ตเมนต์ 3 อันดับแรก เรียงตามจำนวนห้องเฉลี่ยจากมากไปน้อย",
    "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_en": "Show the apartment type code that has the largest number of total rooms, together with the number of bathrooms and number of bedrooms.",
    "question_th": "แสดงรหัสประเภทอพาร์ทเมนต์ที่มีจำนวนห้องมากที่สุด พร้อมจำนวนห้องน้ำและจำนวนห้องนอน",
    "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_en": "Show the most common apartment type code.",
    "question_th": "แสดงรหัสประเภทอพาร์ตเมนต์ที่พบบ่อยที่สุด",
    "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_en": "Show the most common apartment type code among apartments with more than 1 bathroom.",
    "question_th": "แสดงรหัสประเภทอพาร์ตเมนต์ที่พบบ่อยที่สุดในอพาร์ตเมนต์ที่มีห้องน้ำมากกว่า 1 ห้อง",
    "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_en": "Show each apartment type code, and the maximum and minimum number of rooms for each type.",
    "question_th": "แสดงรหัสประเภทอพาร์ตเมนต์แต่ละประเภท และจำนวนห้องสูงสุดและต่ำสุดสำหรับแต่ละประเภท",
    "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_en": "Show each gender code and the corresponding count of guests sorted by the count in descending order.",
    "question_th": "แสดงรหัสเพศแต่ละรหัสและจำนวนแขกที่เกี่ยวข้องโดยจัดเรียงตามจำนวนจากมากไปน้อย",
    "context": "CREATE TABLE Guests (gender_code VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Apartments WHERE NOT apt_id IN (SELECT apt_id FROM Apartment_Facilities)",
    "question_en": "How many apartments do not have any facility?",
    "question_th": "มีอพาร์ทเมนท์จำนวนกี่ห้องที่ไม่มีสิ่งอำนวยความสะดวกใดๆ?",
    "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_en": "Show the apartment numbers of apartments with bookings that have status code both \"Provisional\" and \"Confirmed\"",
    "question_th": "แสดงหมายเลขอพาร์ตเมนต์ของอพาร์ตเมนต์พร้อมการจองที่มีรหัสสถานะทั้ง \"ชั่วคราว\" และ \"ยืนยันแล้ว\"",
    "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_en": "Show the apartment numbers of apartments with unit status availability of both 0 and 1.",
    "question_th": "แสดงหมายเลขอพาร์ทเมนต์ของอพาร์ทเมนต์ที่มีสถานะห้องว่างทั้ง 0 และ 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_en": "How many games are held after season 2007?",
    "question_th": "หลังจากฤดูกาล 2550 มีการแข่งขันกี่เกม?",
    "context": "CREATE TABLE game (season INTEGER)"
  },
  {
    "answer": "SELECT Date FROM game ORDER BY home_team DESC",
    "question_en": "List the dates of games by the home team name in descending order.",
    "question_th": "ระบุวันที่แข่งขันตามชื่อทีมเจ้าบ้านโดยเรียงลำดับจากมากไปน้อย",
    "context": "CREATE TABLE game (Date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT season, home_team, away_team FROM game",
    "question_en": "List the season, home team, away team of all the games.",
    "question_th": "รายชื่อฤดูกาล ทีมเหย้า ทีมเยือน รวมทุกเกม",
    "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_en": "What are the maximum, minimum and average home games each stadium held?",
    "question_th": "เกมเหย้าสูงสุด ต่ำสุด และเฉลี่ยแต่ละสนามที่จัดขึ้นคือเท่าใด?",
    "context": "CREATE TABLE stadium (home_games INTEGER)"
  },
  {
    "answer": "SELECT average_attendance FROM stadium WHERE capacity_percentage > 100",
    "question_en": "What is the average attendance of stadiums with capacity percentage higher than 100%?",
    "question_th": "จำนวนผู้เข้าชมสนามกีฬาโดยเฉลี่ยที่มีเปอร์เซ็นต์ความจุสูงกว่า 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_en": "What are the player name, number of matches, and information source for players who do not suffer from injury of 'Knee problem'?",
    "question_th": "ชื่อผู้เล่น จำนวนนัด และแหล่งข้อมูลสำหรับผู้เล่นที่ไม่ได้รับบาดเจ็บจาก 'ปัญหาเข่า' คืออะไร?",
    "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_en": "What is the season of the game which causes the player 'Walter Samuel' to get injured?",
    "question_th": "ฤดูกาลของเกมที่ทำให้ผู้เล่น 'วอลเตอร์ ซามูเอล' ได้รับบาดเจ็บคือฤดูกาลใด?",
    "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_en": "What are the ids, scores, and dates of the games which caused at least two injury accidents?",
    "question_th": "รหัส คะแนน และวันที่ของเกมที่ทำให้เกิดอุบัติเหตุการบาดเจ็บอย่างน้อยสองครั้งคืออะไร",
    "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_en": "What are the id and name of the stadium where the most injury accidents happened?",
    "question_th": "หมายเลขประจำตัวและชื่อสนามที่เกิดอุบัติเหตุการบาดเจ็บมากที่สุดคืออะไร?",
    "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_en": "In which season and which stadium did any player have an injury of 'Foot injury' or 'Knee problem'?",
    "question_th": "ในฤดูกาลใดและสนามใดที่ผู้เล่นคนใดได้รับบาดเจ็บจาก 'อาการบาดเจ็บที่เท้า' หรือ 'ปัญหาเข่า'?",
    "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_en": "How many different kinds of information sources are there for injury accidents?",
    "question_th": "มีแหล่งข้อมูลเกี่ยวกับอุบัติเหตุการบาดเจ็บกี่ประเภท?",
    "context": "CREATE TABLE injury_accident (SOURCE VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM game WHERE NOT id IN (SELECT game_id FROM injury_accident)",
    "question_en": "How many games are free of injury accidents?",
    "question_th": "มีกี่เกมที่ไม่มีอาการบาดเจ็บ?",
    "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_en": "How many distinct kinds of injuries happened after season 2010?",
    "question_th": "อาการบาดเจ็บที่เกิดขึ้นหลังฤดูกาล 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_en": "List the name of the stadium where both the player 'Walter Samuel' and the player 'Thiago Motta' got injured.",
    "question_th": "ระบุชื่อสนามกีฬาที่ทั้งผู้เล่น 'วอลเตอร์ ซามูเอล' และผู้เล่น 'ธิอาโก มอตต้า' ได้รับบาดเจ็บ",
    "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_en": "Show the name, average attendance, total attendance for stadiums where no accidents happened.",
    "question_th": "แสดงชื่อ จำนวนผู้เข้าแข่งขันโดยเฉลี่ย จำนวนผู้เข้าแข่งขันในสนามกีฬาที่ไม่มีอุบัติเหตุเกิดขึ้น",
    "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_en": "Which stadium name contains the substring \"Bank\"?",
    "question_th": "ชื่อสนามใดมีสตริงย่อยว่า \"ธนาคาร\"?",
    "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_en": "How many games has each stadium held?",
    "question_th": "แต่ละสนามจัดการแข่งขันกี่เกม?",
    "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_en": "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.",
    "question_th": "สำหรับอุบัติเหตุการบาดเจ็บแต่ละครั้ง ให้ค้นหาวันที่แข่งขันและชื่อผู้เล่นที่ได้รับบาดเจ็บในเกม และเรียงลำดับผลลัพธ์ตามลำดับฤดูกาลของเกมจากมากไปหาน้อย",
    "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_en": "List all country and league names.",
    "question_th": "รายชื่อประเทศและลีกทั้งหมด",
    "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_en": "How many leagues are there in England?",
    "question_th": "อังกฤษมีกี่ลีกคะ?",
    "context": "CREATE TABLE League (country_id VARCHAR); CREATE TABLE Country (id VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT AVG(weight) FROM Player",
    "question_en": "What is the average weight of all players?",
    "question_th": "น้ำหนักเฉลี่ยของผู้เล่นทุกคนคือเท่าไร?",
    "context": "CREATE TABLE Player (weight INTEGER)"
  },
  {
    "answer": "SELECT MAX(weight), MIN(weight) FROM Player",
    "question_en": "What is the maximum and minimum height of all players?",
    "question_th": "ความสูงสูงสุดและต่ำสุดของผู้เล่นทุกคนคือเท่าใด?",
    "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_en": "List all player names who have an overall rating higher than the average.",
    "question_th": "รายชื่อผู้เล่นทั้งหมดที่มีเรตติ้งโดยรวมสูงกว่าค่าเฉลี่ย",
    "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_en": "What are the names of players who have the best dribbling?",
    "question_th": "นักเตะที่เลี้ยงบอลเก่งที่สุดชื่ออะไร?",
    "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_en": "List the names of all players who have a crossing score higher than 90 and prefer their right foot.",
    "question_th": "รายชื่อผู้เล่นทุกคนที่มีคะแนนครอสบอลสูงกว่า 90 และชอบใช้เท้าขวา",
    "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_en": "List the names of all left-footed players who have overall rating between 85 and 90.",
    "question_th": "รายชื่อผู้เล่นเท้าซ้ายทั้งหมดที่มีคะแนนรวมระหว่าง 85 ถึง 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_en": "What is the average rating for right-footed players and left-footed players?",
    "question_th": "เรตติ้งเฉลี่ยของผู้เล่นเท้าขวาและเท้าซ้ายคือเท่าไร?",
    "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_en": "Of all players with an overall rating greater than 80, how many are right-footed and left-footed?",
    "question_th": "ในบรรดาผู้เล่นทั้งหมดที่มีเรตติ้งโดยรวมมากกว่า 80 มีนักเตะเท้าขวาและเท้าซ้ายกี่คน?",
    "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_en": "List all of the player ids with a height of at least 180cm and an overall rating higher than 85.",
    "question_th": "ระบุรหัสผู้เล่นทั้งหมดที่มีส่วนสูงอย่างน้อย 180 ซม. และคะแนนโดยรวมสูงกว่า 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_en": "List all of the ids for left-footed players with a height between 180cm and 190cm.",
    "question_th": "ระบุรหัสทั้งหมดสำหรับผู้เล่นเท้าซ้ายที่มีส่วนสูงระหว่าง 180 ซม. ถึง 190 ซม.",
    "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_en": "Who are the top 3 players in terms of overall rating?",
    "question_th": "ใครคือผู้เล่น 3 อันดับแรกในแง่ของเรตติ้งโดยรวม?",
    "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_en": "List the names and birthdays of the top five players in terms of potential.",
    "question_th": "รายชื่อและวันเกิดของผู้เล่นห้าอันดับแรกในแง่ของศักยภาพ",
    "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_en": "How many performances are there?",
    "question_th": "มีการแสดงกี่รอบ?",
    "context": "CREATE TABLE performance (Id VARCHAR)"
  },
  {
    "answer": "SELECT HOST FROM performance ORDER BY Attendance",
    "question_en": "List the hosts of performances in ascending order of attendance.",
    "question_th": "รายชื่อเจ้าภาพการแสดงตามลำดับการเข้าร่วมจากน้อยไปหามาก",
    "context": "CREATE TABLE performance (HOST VARCHAR, Attendance VARCHAR)"
  },
  {
    "answer": "SELECT Date, LOCATION FROM performance",
    "question_en": "What are the dates and locations of performances?",
    "question_th": "วันที่และสถานที่แสดงคือเมื่อใด?",
    "context": "CREATE TABLE performance (Date VARCHAR, LOCATION VARCHAR)"
  },
  {
    "answer": "SELECT Attendance FROM performance WHERE LOCATION = \"TD Garden\" OR LOCATION = \"Bell Centre\"",
    "question_en": "Show the attendances of the performances at location \"TD Garden\" or \"Bell Centre\"",
    "question_th": "แสดงการเข้าชมการแสดง ณ สถานที่ “TD Garden” หรือ “Bell Centre”",
    "context": "CREATE TABLE performance (Attendance VARCHAR, LOCATION VARCHAR)"
  },
  {
    "answer": "SELECT AVG(Attendance) FROM performance",
    "question_en": "What is the average number of attendees for performances?",
    "question_th": "จำนวนผู้เข้าร่วมการแสดงโดยเฉลี่ยคือเท่าไร?",
    "context": "CREATE TABLE performance (Attendance INTEGER)"
  },
  {
    "answer": "SELECT Date FROM performance ORDER BY Attendance DESC LIMIT 1",
    "question_en": "What is the date of the performance with the highest number of attendees?",
    "question_th": "การแสดงที่มีผู้เข้าชมมากที่สุดคือวันไหน?",
    "context": "CREATE TABLE performance (Date VARCHAR, Attendance VARCHAR)"
  },
  {
    "answer": "SELECT LOCATION, COUNT(*) FROM performance GROUP BY LOCATION",
    "question_en": "Show different locations and the number of performances at each location.",
    "question_th": "แสดงสถานที่และจำนวนการแสดงในแต่ละสถานที่",
    "context": "CREATE TABLE performance (LOCATION VARCHAR)"
  },
  {
    "answer": "SELECT LOCATION FROM performance GROUP BY LOCATION ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "Show the most common location of performances.",
    "question_th": "แสดงสถานที่แสดงที่พบบ่อยที่สุด",
    "context": "CREATE TABLE performance (LOCATION VARCHAR)"
  },
  {
    "answer": "SELECT LOCATION FROM performance GROUP BY LOCATION HAVING COUNT(*) >= 2",
    "question_en": "Show the locations that have at least two performances.",
    "question_th": "แสดงสถานที่ที่มีการแสดงอย่างน้อยสองครั้ง",
    "context": "CREATE TABLE performance (LOCATION VARCHAR)"
  },
  {
    "answer": "SELECT LOCATION FROM performance WHERE Attendance > 2000 INTERSECT SELECT LOCATION FROM performance WHERE Attendance < 1000",
    "question_en": "Show the locations that have both performances with more than 2000 attendees and performances with less than 1000 attendees.",
    "question_th": "แสดงสถานที่ที่มีทั้งการแสดงที่มีผู้เข้าร่วมมากกว่า 2,000 คน และการแสดงที่มีผู้เข้าร่วมน้อยกว่า 1,000 คน",
    "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_en": "Show the names of members and the location of the performances they attended.",
    "question_th": "แสดงชื่อสมาชิกและสถานที่แสดงที่เข้าร่วม",
    "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_en": "Show the names of members and the location of performances they attended in ascending alphabetical order of their names.",
    "question_th": "แสดงชื่อสมาชิกและสถานที่แสดงที่เข้าร่วมโดยเรียงตามตัวอักษรจากน้อยไปมาก",
    "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_en": "Show the dates of performances with attending members whose roles are \"Violin\".",
    "question_th": "แสดงวันแสดงร่วมกับสมาชิกที่มาร่วมงานซึ่งมีบทบาทเป็น \"ไวโอลิน\"",
    "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_en": "Show the names of members and the dates of performances they attended in descending order of attendance of the performances.",
    "question_th": "แสดงรายชื่อสมาชิกและวันที่เข้าร่วมการแสดงโดยเรียงลำดับจากมากไปน้อยในการเข้าร่วมการแสดง",
    "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_en": "List the names of members who did not attend any performance.",
    "question_th": "รายชื่อสมาชิกที่ไม่ได้เข้าร่วมการแสดงใดๆ",
    "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_en": "Find the buildings which have rooms with capacity more than 50.",
    "question_th": "ค้นหาอาคารที่มีห้องความจุมากกว่า 50 ห้อง",
    "context": "CREATE TABLE classroom (building VARCHAR, capacity INTEGER)"
  },
  {
    "answer": "SELECT COUNT(*) FROM classroom WHERE building <> 'Lamberton'",
    "question_en": "Count the number of rooms that are not in the Lamberton building.",
    "question_th": "นับจำนวนห้องที่ไม่ได้อยู่ในอาคารแลมเบอร์ตัน",
    "context": "CREATE TABLE classroom (building VARCHAR)"
  },
  {
    "answer": "SELECT dept_name, building FROM department WHERE budget > (SELECT AVG(budget) FROM department)",
    "question_en": "What is the name and building of the departments whose budget is more than the average budget?",
    "question_th": "ชื่อและอาคารของหน่วยงานที่มีงบประมาณมากกว่างบประมาณเฉลี่ยคืออะไร?",
    "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_en": "Find the room number of the rooms which can sit 50 to 100 students and their buildings.",
    "question_th": "ค้นหาหมายเลขห้องของห้องที่สามารถรองรับนักเรียนได้ 50 ถึง 100 คน และอาคารของห้องเหล่านั้น",
    "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_en": "Find the name and building of the department with the highest budget.",
    "question_th": "ค้นหาชื่อและอาคารหน่วยงานที่มีงบประมาณสูงสุด",
    "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_en": "What is the name of the student who has the highest total credits in the History department.",
    "question_th": "นักศึกษาที่มีหน่วยกิตรวมสูงสุดในภาควิชาประวัติศาสตร์ชื่ออะไร",
    "context": "CREATE TABLE student (name VARCHAR, dept_name VARCHAR, tot_cred VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM classroom WHERE building = 'Lamberton'",
    "question_en": "How many rooms does the Lamberton building have?",
    "question_th": "อาคารแลมเบอร์ตันมีกี่ห้อง",
    "context": "CREATE TABLE classroom (building VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT s_id) FROM advisor",
    "question_en": "How many students have advisors?",
    "question_th": "นักเรียนมีที่ปรึกษากี่คน?",
    "context": "CREATE TABLE advisor (s_id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT dept_name) FROM course",
    "question_en": "How many departments offer courses?",
    "question_th": "มีกี่แผนกที่เปิดสอน?",
    "context": "CREATE TABLE course (dept_name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT course_id) FROM course WHERE dept_name = 'Physics'",
    "question_en": "How many different courses offered by Physics department?",
    "question_th": "ภาควิชาฟิสิกส์เปิดสอนกี่หลักสูตร?",
    "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_en": "Find the title of courses that have two prerequisites?",
    "question_th": "ค้นหาชื่อหลักสูตรที่มีข้อกำหนดเบื้องต้นสองประการหรือไม่",
    "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_en": "Find the title, credit, and department name of courses that have more than one prerequisites?",
    "question_th": "ค้นหาชื่อเรื่อง เครดิต และชื่อแผนกของหลักสูตรที่มีข้อกำหนดเบื้องต้นมากกว่าหนึ่งรายการใช่หรือไม่",
    "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_en": "How many courses that do not have prerequisite?",
    "question_th": "มีกี่หลักสูตรที่ไม่มีข้อกำหนดเบื้องต้น?",
    "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_en": "Find the name of the courses that do not have any prerequisite?",
    "question_th": "ค้นหาชื่อหลักสูตรที่ไม่มีข้อกำหนดเบื้องต้น?",
    "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_en": "How many different instructors have taught some course?",
    "question_th": "มีอาจารย์ผู้สอนที่แตกต่างกันกี่คนที่สอนหลักสูตรใดหลักสูตรหนึ่ง?",
    "context": "CREATE TABLE teaches (id VARCHAR)"
  },
  {
    "answer": "SELECT SUM(budget) FROM department WHERE dept_name = 'Marketing' OR dept_name = 'Finance'",
    "question_en": "Find the total budgets of the Marketing or Finance department.",
    "question_th": "ค้นหางบประมาณรวมของฝ่ายการตลาดหรือการเงิน",
    "context": "CREATE TABLE department (budget INTEGER, dept_name VARCHAR)"
  },
  {
    "answer": "SELECT dept_name FROM instructor WHERE name LIKE '%Soisalon%'",
    "question_en": "Find the department name of the instructor whose name contains 'Soisalon'.",
    "question_th": "ค้นหาชื่อแผนกของผู้สอนที่มีชื่อว่า 'ซอยซาลอน'",
    "context": "CREATE TABLE instructor (dept_name VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM classroom WHERE building = 'Lamberton' AND capacity < 50",
    "question_en": "How many rooms whose capacity is less than 50 does the Lamberton building have?",
    "question_th": "อาคาร Lamberton มีห้องพักกี่ห้องซึ่งสามารถรองรับได้น้อยกว่า 50 ห้อง",
    "context": "CREATE TABLE classroom (building VARCHAR, capacity VARCHAR)"
  },
  {
    "answer": "SELECT dept_name, budget FROM department WHERE budget > (SELECT AVG(budget) FROM department)",
    "question_en": "Find the name and budget of departments whose budgets are more than the average budget.",
    "question_th": "ค้นหาชื่อและงบประมาณของหน่วยงานที่มีงบประมาณมากกว่างบประมาณเฉลี่ย",
    "context": "CREATE TABLE department (dept_name VARCHAR, budget INTEGER)"
  },
  {
    "answer": "SELECT name FROM instructor WHERE dept_name = 'Statistics' ORDER BY salary LIMIT 1",
    "question_en": "what is the name of the instructor who is in Statistics department and earns the lowest salary?",
    "question_th": "อาจารย์ประจำภาควิชาสถิติและเงินเดือนต่ำสุดชื่ออะไรครับ?",
    "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_en": "Find the title of course that is provided by both Statistics and Psychology departments.",
    "question_th": "ค้นหาชื่อหลักสูตรที่เปิดสอนโดยทั้งแผนกสถิติและจิตวิทยา",
    "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_en": "Find the title of course that is provided by Statistics but not Psychology departments.",
    "question_th": "ค้นหาชื่อหลักสูตรที่จัดทำโดยสถิติ แต่ไม่ใช่แผนกจิตวิทยา",
    "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_en": "Find the id of instructors who taught a class in Fall 2009 but not in Spring 2010.",
    "question_th": "ค้นหารหัสของผู้สอนที่สอนชั้นเรียนในฤดูใบไม้ร่วงปี 2009 แต่ไม่ใช่ในฤดูใบไม้ผลิปี 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_en": "Find the name of students who took any class in the years of 2009 and 2010.",
    "question_th": "ค้นหารายชื่อนักเรียนที่เข้าชั้นเรียนในปี พ.ศ. 2552 และ พ.ศ. 2553",
    "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_en": "Find the names of the top 3 departments that provide the largest amount of courses?",
    "question_th": "ค้นหาชื่อ 3 หน่วยงานชั้นนำที่เปิดหลักสูตรจำนวนมากที่สุด?",
    "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_en": "Find the name of the department that offers the highest total credits?",
    "question_th": "ค้นหาชื่อหน่วยงานที่ให้หน่วยกิตรวมสูงสุด?",
    "context": "CREATE TABLE course (dept_name VARCHAR, credits INTEGER)"
  },
  {
    "answer": "SELECT title FROM course ORDER BY title, credits",
    "question_en": "List the names of all courses ordered by their titles and credits.",
    "question_th": "รายชื่อรายวิชาทั้งหมดเรียงตามชื่อเรื่องและหน่วยกิต",
    "context": "CREATE TABLE course (title VARCHAR, credits VARCHAR)"
  },
  {
    "answer": "SELECT dept_name FROM department ORDER BY budget LIMIT 1",
    "question_en": "Which department has the lowest budget?",
    "question_th": "หน่วยงานไหนมีงบประมาณน้อยที่สุด?",
    "context": "CREATE TABLE department (dept_name VARCHAR, budget VARCHAR)"
  },
  {
    "answer": "SELECT dept_name, building FROM department ORDER BY budget DESC",
    "question_en": "List the names and buildings of all departments sorted by the budget from large to small.",
    "question_th": "รายชื่อและอาคารของทุกแผนกเรียงตามงบประมาณจากมากไปหาน้อย",
    "context": "CREATE TABLE department (dept_name VARCHAR, building VARCHAR, budget VARCHAR)"
  },
  {
    "answer": "SELECT name FROM instructor ORDER BY salary DESC LIMIT 1",
    "question_en": "Who is the instructor with the highest salary?",
    "question_th": "อาจารย์ผู้สอนที่ได้รับเงินเดือนสูงสุดคือใคร?",
    "context": "CREATE TABLE instructor (name VARCHAR, salary VARCHAR)"
  },
  {
    "answer": "SELECT * FROM instructor ORDER BY salary",
    "question_en": "List the information of all instructors ordered by their salary in ascending order.",
    "question_th": "แสดงรายการข้อมูลของอาจารย์ทั้งหมดโดยเรียงลำดับตามเงินเดือนจากน้อยไปหามาก",
    "context": "CREATE TABLE instructor (salary VARCHAR)"
  },
  {
    "answer": "SELECT name, dept_name FROM student ORDER BY tot_cred",
    "question_en": "Find the name of the students and their department names sorted by their total credits in ascending order.",
    "question_th": "ค้นหาชื่อนักศึกษาและชื่อแผนกโดยเรียงตามหน่วยกิตรวมจากน้อยไปหามาก",
    "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_en": "list in alphabetic order all course names and their instructors' names in year 2008.",
    "question_th": "รายชื่อรายวิชาและชื่ออาจารย์ตามลำดับตัวอักษรในปี พ.ศ. 2551",
    "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_en": "Find the name of instructors who are advising more than one student.",
    "question_th": "ค้นหาชื่ออาจารย์ผู้สอนที่ให้คำปรึกษานักเรียนมากกว่าหนึ่งคน",
    "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_en": "Find the name of the students who have more than one advisor?",
    "question_th": "ค้นหารายชื่อนักศึกษาที่มีอาจารย์ที่ปรึกษามากกว่า 1 ท่าน?",
    "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_en": "Find the number of rooms with more than 50 capacity for each building.",
    "question_th": "ค้นหาจำนวนห้องที่สามารถรองรับได้มากกว่า 50 ห้องในแต่ละอาคาร",
    "context": "CREATE TABLE classroom (building VARCHAR, capacity INTEGER)"
  },
  {
    "answer": "SELECT MAX(capacity), AVG(capacity), building FROM classroom GROUP BY building",
    "question_en": "Find the maximum and average capacity among rooms in each building.",
    "question_th": "ค้นหาความจุสูงสุดและเฉลี่ยของห้องในแต่ละอาคาร",
    "context": "CREATE TABLE classroom (building VARCHAR, capacity INTEGER)"
  },
  {
    "answer": "SELECT title FROM course GROUP BY title HAVING COUNT(*) > 1",
    "question_en": "Find the title of the course that is offered by more than one department.",
    "question_th": "ค้นหาชื่อหลักสูตรที่เปิดสอนโดยแผนกมากกว่าหนึ่งแผนก",
    "context": "CREATE TABLE course (title VARCHAR)"
  },
  {
    "answer": "SELECT SUM(credits), dept_name FROM course GROUP BY dept_name",
    "question_en": "Find the total credits of courses provided by different department.",
    "question_th": "ค้นหาหน่วยกิตรวมของหลักสูตรที่เปิดสอนโดยแผนกต่างๆ",
    "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_en": "Find the minimum salary for the departments whose average salary is above the average payment of all instructors.",
    "question_th": "ค้นหาเงินเดือนขั้นต่ำสำหรับแผนกที่มีเงินเดือนเฉลี่ยสูงกว่าค่าจ้างเฉลี่ยของอาจารย์ทุกคน",
    "context": "CREATE TABLE instructor (dept_name VARCHAR, salary INTEGER)"
  },
  {
    "answer": "SELECT COUNT(*), semester, YEAR FROM SECTION GROUP BY semester, YEAR",
    "question_en": "Find the number of courses provided in each semester and year.",
    "question_th": "ค้นหาจำนวนหลักสูตรที่เปิดสอนในแต่ละภาคการศึกษาและปี",
    "context": "CREATE TABLE SECTION (semester VARCHAR, YEAR VARCHAR)"
  },
  {
    "answer": "SELECT YEAR FROM SECTION GROUP BY YEAR ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "Find the year which offers the largest number of courses.",
    "question_th": "ค้นหาปีที่เปิดสอนหลักสูตรจำนวนมากที่สุด",
    "context": "CREATE TABLE SECTION (YEAR VARCHAR)"
  },
  {
    "answer": "SELECT semester, YEAR FROM SECTION GROUP BY semester, YEAR ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "Find the year and semester when offers the largest number of courses.",
    "question_th": "ค้นหาปีและภาคการศึกษาเมื่อมีหลักสูตรจำนวนมากที่สุด",
    "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_en": "Find the name of department has the highest amount of students?",
    "question_th": "ค้นหาชื่อภาควิชาที่มีจำนวนนักศึกษามากที่สุด?",
    "context": "CREATE TABLE student (dept_name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*), dept_name FROM student GROUP BY dept_name",
    "question_en": "Find the total number of students in each department.",
    "question_th": "ค้นหาจำนวนนักศึกษาทั้งหมดในแต่ละแผนก",
    "context": "CREATE TABLE student (dept_name VARCHAR)"
  },
  {
    "answer": "SELECT semester, YEAR FROM takes GROUP BY semester, YEAR ORDER BY COUNT(*) LIMIT 1",
    "question_en": "Find the semester and year which has the least number of student taking any class.",
    "question_th": "ค้นหาภาคการศึกษาและปีที่มีจำนวนนักเรียนเข้าเรียนน้อยที่สุด",
    "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_en": "What is the id of the instructor who advises of all students from History department?",
    "question_th": "อาจารย์ผู้สอนที่ให้คำปรึกษาแก่นักศึกษาภาควิชาประวัติศาสตร์ทุกคนมีรหัสประจำตัวอะไร?",
    "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_en": "Find the name and salary of the instructors who are advisors of any student from History department?",
    "question_th": "ค้นหาชื่อและเงินเดือนของอาจารย์ที่ปรึกษาของนักศึกษาภาควิชาประวัติศาสตร์คนใด?",
    "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_en": "Find the id of the courses that do not have any prerequisite?",
    "question_th": "ค้นหารหัสหลักสูตรที่ไม่มีข้อกำหนดเบื้องต้นหรือไม่?",
    "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_en": "What is the title of the prerequisite class of International Finance course?",
    "question_th": "วิชาบังคับก่อนของหลักสูตรการเงินระหว่างประเทศมีชื่อว่าอะไร",
    "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_en": "Find the title of course whose prerequisite is course Differential Geometry.",
    "question_th": "ค้นหาชื่อหลักสูตรที่มีวิชาบังคับก่อนเป็นหลักสูตรเรขาคณิตเชิงอนุพันธ์",
    "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_en": "Find the names of students who have taken any course in the fall semester of year 2003.",
    "question_th": "ค้นหารายชื่อนักศึกษาที่ได้เรียนรายวิชาใด ๆ ในภาคเรียนฤดูใบไม้ร่วง ปี พ.ศ. 2546",
    "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_en": "What is the title of the course that was offered at building Chandler during the fall semester in the year of 2010?",
    "question_th": "หลักสูตรที่เปิดสอนในการสร้างแชนด์เลอร์ระหว่างภาคเรียนฤดูใบไม้ร่วงปี 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_en": "Find the name of the instructors who taught C Programming course before.",
    "question_th": "ค้นหาชื่ออาจารย์ผู้สอนที่เคยสอนหลักสูตรการเขียนโปรแกรม C มาก่อน",
    "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_en": "Find the name and salary of instructors who are advisors of the students from the Math department.",
    "question_th": "ค้นหาชื่อและเงินเดือนของอาจารย์ที่ปรึกษาของนักศึกษาภาควิชาคณิตศาสตร์",
    "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_en": "Find the name of instructors who are advisors of the students from the Math department, and sort the results by students' total credit.",
    "question_th": "ค้นหาชื่ออาจารย์ที่ปรึกษาของนักศึกษาภาควิชาคณิตศาสตร์ และเรียงลำดับผลคะแนนตามหน่วยกิตรวมของนักศึกษา",
    "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_en": "What is the course title of the prerequisite of course Mobile Computing?",
    "question_th": "ชื่อหลักสูตรของวิชาบังคับก่อนของหลักสูตร 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_en": "Find the name of instructor who is the advisor of the student who has the highest number of total credits.",
    "question_th": "หารายชื่ออาจารย์ผู้สอนที่เป็นที่ปรึกษาของนักศึกษาที่มีจำนวนหน่วยกิตรวมมากที่สุด",
    "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_en": "Find the name of instructors who didn't teach any courses?",
    "question_th": "หาชื่ออาจารย์ที่ไม่ได้สอนวิชาไหนเลย?",
    "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_en": "Find the id of instructors who didn't teach any courses?",
    "question_th": "ค้นหา ID อาจารย์ที่ไม่ได้สอนหลักสูตรใดๆ เลย?",
    "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_en": "Find the names of instructors who didn't each any courses in any Spring semester.",
    "question_th": "ค้นหารายชื่อผู้สอนที่ไม่ได้แต่ละรายวิชาในภาคเรียนฤดูใบไม้ผลิ",
    "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_en": "Find the name of the department which has the highest average salary of professors.",
    "question_th": "ค้นหาชื่อสาขาวิชาที่มีเงินเดือนอาจารย์เฉลี่ยสูงสุด",
    "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_en": "Find the number and averaged salary of all instructors who are in the department with the highest budget.",
    "question_th": "หาจำนวนและเงินเดือนเฉลี่ยของอาจารย์ประจำภาควิชาที่มีงบประมาณสูงสุดทั้งหมด",
    "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_en": "What is the title and credits of the course that is taught in the largest classroom (with the highest capacity)?",
    "question_th": "ชื่อและหน่วยกิตของหลักสูตรที่สอนในห้องเรียนที่ใหญ่ที่สุด (ที่มีความจุสูงสุด) มีชื่อว่าอะไร?",
    "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_en": "Find the name of students who didn't take any course from Biology department.",
    "question_th": "ค้นหารายชื่อนักศึกษาที่ไม่ได้เรียนรายวิชาใดจากภาควิชาชีววิทยา",
    "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_en": "Find the total number of students and total number of instructors for each department.",
    "question_th": "ค้นหาจำนวนนักศึกษาและจำนวนอาจารย์รวมของแต่ละแผนก",
    "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_en": "Find the name of students who have taken the prerequisite course of the course with title International Finance.",
    "question_th": "ค้นหารายชื่อนักศึกษาที่ได้เรียนรายวิชาบังคับก่อนของรายวิชาที่มีชื่อ การเงินระหว่างประเทศ",
    "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_en": "Find the name and salary of instructors whose salary is below the average salary of the instructors in the Physics department.",
    "question_th": "ค้นหาชื่อและเงินเดือนของอาจารย์ผู้สอนที่มีเงินเดือนต่ำกว่าเงินเดือนเฉลี่ยของอาจารย์ในภาควิชาฟิสิกส์",
    "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_en": "Find the name of students who took some course offered by Statistics department.",
    "question_th": "ค้นหารายชื่อนักศึกษาที่เรียนรายวิชาที่เปิดสอนโดยภาควิชาสถิติ",
    "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_en": "Find the building, room number, semester and year of all courses offered by Psychology department sorted by course titles.",
    "question_th": "ค้นหาอาคาร หมายเลขห้อง ภาคการศึกษา และปีของหลักสูตรทั้งหมดที่เปิดสอนโดยแผนกจิตวิทยา จัดเรียงตามชื่อหลักสูตร",
    "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_en": "Find the names of all instructors in computer science department",
    "question_th": "ค้นหารายชื่ออาจารย์ผู้สอนในภาควิชาวิทยาการคอมพิวเตอร์ทุกคน",
    "context": "CREATE TABLE instructor (name VARCHAR, dept_name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM instructor WHERE dept_name = 'Comp. Sci.' AND salary > 80000",
    "question_en": "Find the names of all instructors in Comp. Sci. department with salary > 80000.",
    "question_th": "ค้นหารายชื่ออาจารย์ผู้สอนทั้งหมดในคอมพ์ วิทยาศาสตร์ แผนกที่มีเงินเดือน> 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_en": "Find the names of all instructors who have taught some course and the course_id.",
    "question_th": "ค้นหาชื่อผู้สอนทุกคนที่สอนบางหลักสูตรและ 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_en": "Find the names of all instructors in the Art department who have taught some course and the course_id.",
    "question_th": "ค้นหารายชื่ออาจารย์ผู้สอนในแผนกศิลป์ที่เคยสอนบางหลักสูตรและ 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_en": "Find the names of all instructors whose name includes the substring “dar”.",
    "question_th": "ค้นหาชื่ออาจารย์ผู้สอนทั้งหมดที่มีชื่อโดยมีสตริงย่อย “ดาร์”",
    "context": "CREATE TABLE instructor (name VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT name FROM instructor ORDER BY name",
    "question_en": "List in alphabetic order the names of all distinct instructors.",
    "question_th": "รายชื่ออาจารย์ผู้สอนตามลำดับตัวอักษรทั้งหมด",
    "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_en": "Find courses that ran in Fall 2009 or in Spring 2010.",
    "question_th": "ค้นหาหลักสูตรที่เปิดดำเนินการในฤดูใบไม้ร่วงปี 2009 หรือในฤดูใบไม้ผลิปี 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_en": "Find courses that ran in Fall 2009 and in Spring 2010.",
    "question_th": "ค้นหาหลักสูตรที่ดำเนินการในฤดูใบไม้ร่วงปี 2009 และฤดูใบไม้ผลิปี 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_en": "Find courses that ran in Fall 2009 but not in Spring 2010.",
    "question_th": "ค้นหาหลักสูตรที่เปิดดำเนินการในฤดูใบไม้ร่วงปี 2009 แต่ไม่ใช่ในฤดูใบไม้ผลิปี 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_en": "Find the salaries of all distinct instructors that are less than the largest salary.",
    "question_th": "ค้นหาเงินเดือนของอาจารย์ผู้สอนที่แตกต่างกันทั้งหมดที่น้อยกว่าเงินเดือนสูงสุด",
    "context": "CREATE TABLE instructor (salary INTEGER)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT ID) FROM teaches WHERE semester = 'Spring' AND YEAR = 2010",
    "question_en": "Find the total number of instructors who teach a course in the Spring 2010 semester.",
    "question_th": "ค้นหาจำนวนผู้สอนทั้งหมดที่สอนหลักสูตรในภาคเรียนฤดูใบไม้ผลิ 2010",
    "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_en": "Find the names and average salaries of all departments whose average salary is greater than 42000.",
    "question_th": "ค้นหาชื่อและเงินเดือนเฉลี่ยของทุกแผนกที่มีเงินเดือนเฉลี่ยมากกว่า 42,000",
    "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_en": "Find names of instructors with salary greater than that of some (at least one) instructor in the Biology department.",
    "question_th": "ค้นหารายชื่ออาจารย์ผู้สอนที่มีเงินเดือนมากกว่าอาจารย์บางคน (อย่างน้อยหนึ่งคน) ในภาควิชาชีววิทยา",
    "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_en": "Find the names of all instructors whose salary is greater than the salary of all instructors in the Biology department.",
    "question_th": "ค้นหารายชื่ออาจารย์ที่มีเงินเดือนมากกว่าเงินเดือนอาจารย์ในภาควิชาชีววิทยาทั้งหมด",
    "context": "CREATE TABLE instructor (name VARCHAR, salary INTEGER, dept_name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM debate",
    "question_en": "How many debates are there?",
    "question_th": "มีการอภิปรายกี่ครั้ง?",
    "context": "CREATE TABLE debate (Id VARCHAR)"
  },
  {
    "answer": "SELECT Venue FROM debate ORDER BY Num_of_Audience",
    "question_en": "List the venues of debates in ascending order of the number of audience.",
    "question_th": "ระบุสถานที่อภิปรายโดยเรียงตามจำนวนผู้ชมจากน้อยไปมาก",
    "context": "CREATE TABLE debate (Venue VARCHAR, Num_of_Audience VARCHAR)"
  },
  {
    "answer": "SELECT Date, Venue FROM debate",
    "question_en": "What are the date and venue of each debate?",
    "question_th": "วันและสถานที่ของการอภิปรายแต่ละครั้งคือเมื่อใด?",
    "context": "CREATE TABLE debate (Date VARCHAR, Venue VARCHAR)"
  },
  {
    "answer": "SELECT Date FROM debate WHERE Num_of_Audience > 150",
    "question_en": "List the dates of debates with number of audience bigger than 150",
    "question_th": "ระบุวันที่ของการอภิปรายที่มีจำนวนผู้ชมมากกว่า 150 คน",
    "context": "CREATE TABLE debate (Date VARCHAR, Num_of_Audience INTEGER)"
  },
  {
    "answer": "SELECT Name FROM people WHERE Age = 35 OR Age = 36",
    "question_en": "Show the names of people aged either 35 or 36.",
    "question_th": "แสดงชื่อผู้ที่มีอายุ 35 หรือ 36 ปี",
    "context": "CREATE TABLE people (Name VARCHAR, Age VARCHAR)"
  },
  {
    "answer": "SELECT Party FROM people ORDER BY Age LIMIT 1",
    "question_en": "What is the party of the youngest people?",
    "question_th": "ปาร์ตี้ของคนอายุน้อยที่สุดคืออะไร?",
    "context": "CREATE TABLE people (Party VARCHAR, Age VARCHAR)"
  },
  {
    "answer": "SELECT Party, COUNT(*) FROM people GROUP BY Party",
    "question_en": "Show different parties of people along with the number of people in each party.",
    "question_th": "แสดงจำนวนคนในแต่ละฝ่ายพร้อมทั้งจำนวนคนในแต่ละฝ่าย",
    "context": "CREATE TABLE people (Party VARCHAR)"
  },
  {
    "answer": "SELECT Party FROM people GROUP BY Party ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "Show the party that has the most people.",
    "question_th": "แสดงปาร์ตี้ที่มีคนมากที่สุด",
    "context": "CREATE TABLE people (Party VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT Venue FROM debate",
    "question_en": "Show the distinct venues of debates",
    "question_th": "แสดงสถานที่อภิปรายที่ชัดเจน",
    "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_en": "Show the names of people, and dates and venues of debates they are on the affirmative side.",
    "question_th": "แสดงชื่อบุคคล และวันที่และสถานที่อภิปรายที่พวกเขาเห็นด้วย",
    "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_en": "Show the names of people, and dates and venues of debates they are on the negative side, ordered in ascending alphabetical order of name.",
    "question_th": "แสดงชื่อบุคคล วันที่และสถานที่อภิปรายเป็นด้านลบ เรียงลำดับตามตัวอักษรจากน้อยไปหามาก",
    "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_en": "Show the names of people that are on affirmative side of debates with number of audience bigger than 200.",
    "question_th": "แสดงชื่อบุคคลที่เห็นด้วยกับการอภิปรายโดยมีจำนวนผู้ชมมากกว่า 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_en": "Show the names of people and the number of times they have been on the affirmative side of debates.",
    "question_th": "แสดงชื่อบุคคลและจำนวนครั้งที่พวกเขาเห็นด้วยกับการอภิปราย",
    "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_en": "Show the names of people who have been on the negative side of debates at least twice.",
    "question_th": "แสดงชื่อผู้ที่คิดในแง่ลบจากการโต้วาทีอย่างน้อยสองครั้ง",
    "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_en": "List the names of people that have not been on the affirmative side of debates.",
    "question_th": "ระบุรายชื่อบุคคลที่ไม่เห็นด้วยกับการอภิปราย",
    "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_en": "List the names of all the customers in alphabetical order.",
    "question_th": "รายชื่อลูกค้าทั้งหมดตามลำดับตัวอักษร",
    "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_en": "Find all the policy type codes associated with the customer \"Dayana Robel\"",
    "question_th": "ค้นหารหัสประเภทนโยบายทั้งหมดที่เกี่ยวข้องกับลูกค้า \"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_en": "Which type of policy is most frequently used? Give me the policy type code.",
    "question_th": "นโยบายประเภทใดที่ใช้บ่อยที่สุด? ขอรหัสประเภทกรมธรรม์ให้ฉันด้วย",
    "context": "CREATE TABLE policies (policy_type_code VARCHAR)"
  },
  {
    "answer": "SELECT policy_type_code FROM policies GROUP BY policy_type_code HAVING COUNT(*) > 2",
    "question_en": "Find all the policy types that are used by more than 2 customers.",
    "question_th": "ค้นหาประเภทนโยบายทั้งหมดที่ลูกค้ามากกว่า 2 รายใช้",
    "context": "CREATE TABLE policies (policy_type_code VARCHAR)"
  },
  {
    "answer": "SELECT SUM(amount_piad), AVG(amount_piad) FROM claim_headers",
    "question_en": "Find the total and average amount paid in claim headers.",
    "question_th": "ค้นหาจำนวนเงินรวมและจำนวนเงินเฉลี่ยที่จ่ายในส่วนหัวของการอ้างสิทธิ์",
    "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_en": "Find the total amount claimed in the most recently created document.",
    "question_th": "ค้นหาจำนวนเงินทั้งหมดที่อ้างสิทธิ์ในเอกสารที่สร้างขึ้นล่าสุด",
    "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_en": "What is the name of the customer who has made the largest amount of claim in a single claim?",
    "question_th": "ลูกค้าที่ทำการเคลมจำนวนมากที่สุดในการเคลมครั้งเดียวชื่ออะไร?",
    "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_en": "What is the name of the customer who has made the minimum amount of payment in one claim?",
    "question_th": "ลูกค้าที่ชำระเงินขั้นต่ำในการเคลมหนึ่งครั้งชื่ออะไร?",
    "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_en": "Find the names of customers who have no policies associated.",
    "question_th": "ค้นหาชื่อลูกค้าที่ไม่มีนโยบายเกี่ยวข้อง",
    "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_en": "How many claim processing stages are there in total?",
    "question_th": "มีขั้นตอนการดำเนินการเรียกร้องสินไหมทั้งหมดกี่ขั้นตอน?",
    "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_en": "What is the name of the claim processing stage that most of the claims are on?",
    "question_th": "ขั้นตอนการดำเนินการเรียกร้องค่าสินไหมทดแทนซึ่งการเรียกร้องส่วนใหญ่ดำเนินการอยู่มีชื่อว่าอะไร?",
    "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_en": "Find the names of customers whose name contains \"Diana\".",
    "question_th": "ค้นหาชื่อลูกค้าที่มีชื่อมีคำว่า \"ไดอาน่า\"",
    "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_en": "Find the names of the customers who have an deputy policy.",
    "question_th": "ค้นหาชื่อลูกค้าที่มีนโยบายรอง",
    "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_en": "Find the names of customers who either have an deputy policy or uniformed policy.",
    "question_th": "ค้นหาชื่อลูกค้าที่มีนโยบายรองหรือนโยบายเครื่องแบบ",
    "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_en": "Find the names of all the customers and staff members.",
    "question_th": "ค้นหาชื่อของลูกค้าและพนักงานทั้งหมด",
    "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_en": "Find the number of records of each policy type and its type code.",
    "question_th": "ค้นหาจำนวนบันทึกของนโยบายแต่ละประเภทและรหัสประเภท",
    "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_en": "Find the name of the customer that has been involved in the most policies.",
    "question_th": "ค้นหาชื่อลูกค้าที่เกี่ยวข้องกับกรมธรรม์มากที่สุด",
    "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_en": "What is the description of the claim status \"Open\"?",
    "question_th": "คำอธิบายสถานะการเคลม \"เปิด\" คืออะไร?",
    "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_en": "How many distinct claim outcome codes are there?",
    "question_th": "มีรหัสผลการเรียกร้องที่แตกต่างกันกี่รหัส?",
    "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_en": "Which customer is associated with the latest policy?",
    "question_th": "ลูกค้ารายใดที่เกี่ยวข้องกับนโยบายล่าสุด",
    "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_en": "Show the id, the date of account opened, the account name, and other account detail for all accounts.",
    "question_th": "แสดงรหัส วันที่เปิดบัญชี ชื่อบัญชี และรายละเอียดบัญชีอื่นๆ ของทุกบัญชี",
    "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_en": "Show the id, the account name, and other account details for all accounts by the customer with first name 'Meaghan'.",
    "question_th": "แสดงรหัส ชื่อบัญชี และรายละเอียดบัญชีอื่นๆ สำหรับทุกบัญชีโดยลูกค้าที่มีชื่อ '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_en": "Show the account name and other account detail for all accounts by the customer with first name Meaghan and last name Keeling.",
    "question_th": "แสดงชื่อบัญชีและรายละเอียดบัญชีอื่น ๆ สำหรับทุกบัญชีโดยลูกค้าชื่อ Meaghan และนามสกุล 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_en": "Show the first name and last name for the customer with account name 900.",
    "question_th": "แสดงชื่อและนามสกุลให้กับลูกค้าที่มีชื่อบัญชี 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_en": "Show the unique first names, last names, and phone numbers for all customers with any account.",
    "question_th": "แสดงชื่อ นามสกุล และหมายเลขโทรศัพท์ที่ไม่ซ้ำกันสำหรับลูกค้าทุกคนที่มีบัญชีใดๆ",
    "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_en": "Show customer ids who don't have an account.",
    "question_th": "แสดงรหัสลูกค้าที่ไม่มีบัญชี",
    "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_en": "How many accounts does each customer have? List the number and customer id.",
    "question_th": "ลูกค้าแต่ละรายมีกี่บัญชี? ระบุหมายเลขและรหัสลูกค้า",
    "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_en": "What is the customer id, first and last name with most number of accounts.",
    "question_th": "รหัสลูกค้า ชื่อ และนามสกุลที่มีจำนวนบัญชีมากที่สุดคืออะไร",
    "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_en": "Show id, first name and last name for all customers and the number of accounts.",
    "question_th": "แสดงรหัส ชื่อและนามสกุลของลูกค้าทั้งหมดและจำนวนบัญชี",
    "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_en": "Show first name and id for all customers with at least 2 accounts.",
    "question_th": "แสดงชื่อและรหัสสำหรับลูกค้าทั้งหมดที่มีอย่างน้อย 2 บัญชี",
    "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_en": "Show the number of customers for each gender.",
    "question_th": "แสดงจำนวนลูกค้าแต่ละเพศ",
    "context": "CREATE TABLE Customers (gender VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Financial_transactions",
    "question_en": "How many transactions do we have?",
    "question_th": "เรามีธุรกรรมกี่รายการ?",
    "context": "CREATE TABLE Financial_transactions (Id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*), account_id FROM Financial_transactions",
    "question_en": "How many transaction does each account have? Show the number and account id.",
    "question_th": "แต่ละบัญชีมีธุรกรรมจำนวนเท่าใด? แสดงหมายเลขและรหัสบัญชี",
    "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_en": "How many transaction does account with name 337 have?",
    "question_th": "บัญชีชื่อ 337 มีธุรกรรมกี่รายการ?",
    "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_en": "What is the average, minimum, maximum, and total transaction amount?",
    "question_th": "จำนวนธุรกรรมเฉลี่ย ขั้นต่ำ สูงสุด และทั้งหมดคือเท่าใด",
    "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_en": "Show ids for all transactions whose amounts are greater than the average.",
    "question_th": "แสดงรหัสสำหรับธุรกรรมทั้งหมดที่มีมูลค่ามากกว่าค่าเฉลี่ย",
    "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_en": "Show the transaction types and the total amount of transactions.",
    "question_th": "แสดงประเภทรายการและจำนวนรายการทั้งหมด",
    "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_en": "Show the account name, id and the number of transactions for each account.",
    "question_th": "แสดงชื่อบัญชี รหัสประจำตัว และจำนวนธุรกรรมของแต่ละบัญชี",
    "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_en": "Show the account id with most number of transactions.",
    "question_th": "แสดงรหัสบัญชีที่มีจำนวนธุรกรรมมากที่สุด",
    "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_en": "Show the account id and name with at least 4 transactions.",
    "question_th": "แสดงรหัสบัญชีและชื่อที่มีธุรกรรมอย่างน้อย 4 รายการ",
    "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_en": "Show all product sizes.",
    "question_th": "แสดงขนาดสินค้าทั้งหมด",
    "context": "CREATE TABLE Products (product_size VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT product_color FROM Products",
    "question_en": "Show all product colors.",
    "question_th": "แสดงสีสินค้าทั้งหมด",
    "context": "CREATE TABLE Products (product_color VARCHAR)"
  },
  {
    "answer": "SELECT invoice_number, COUNT(*) FROM Financial_transactions GROUP BY invoice_number",
    "question_en": "Show the invoice number and the number of transactions for each invoice.",
    "question_th": "แสดงหมายเลขใบแจ้งหนี้และจำนวนธุรกรรมสำหรับแต่ละใบแจ้งหนี้",
    "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_en": "What is the invoice number and invoice date for the invoice with most number of transactions?",
    "question_th": "หมายเลขใบแจ้งหนี้และวันที่ในใบแจ้งหนี้สำหรับใบแจ้งหนี้ที่มีจำนวนธุรกรรมมากที่สุดคือเมื่อใด",
    "context": "CREATE TABLE Invoices (invoice_number VARCHAR, invoice_date VARCHAR); CREATE TABLE Financial_transactions (invoice_number VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Invoices",
    "question_en": "How many invoices do we have?",
    "question_th": "เรามีใบแจ้งหนี้กี่ใบ?",
    "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_en": "Show invoice dates and order id and details for all invoices.",
    "question_th": "แสดงวันที่ในใบแจ้งหนี้ รหัสคำสั่งซื้อ และรายละเอียดสำหรับใบแจ้งหนี้ทั้งหมด",
    "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_en": "Show the order ids and the number of invoices for each order.",
    "question_th": "แสดงรหัสคำสั่งซื้อและจำนวนใบแจ้งหนี้สำหรับคำสั่งซื้อแต่ละรายการ",
    "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_en": "What is the order id and order details for the order more than two invoices.",
    "question_th": "รหัสคำสั่งซื้อและรายละเอียดคำสั่งซื้อสำหรับคำสั่งซื้อมากกว่าสองใบแจ้งหนี้คืออะไร",
    "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_en": "What is the customer last name, id and phone number with most number of orders?",
    "question_th": "ลูกค้าชื่อนามสกุล รหัส และหมายเลขโทรศัพท์ที่มีจำนวนการสั่งซื้อมากที่สุดคือหมายเลขใด",
    "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_en": "Show all product names without an order.",
    "question_th": "แสดงชื่อผลิตภัณฑ์ทั้งหมดโดยไม่ต้องสั่งซื้อ",
    "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_en": "Show all product names and the total quantity ordered for each product name.",
    "question_th": "แสดงชื่อผลิตภัณฑ์ทั้งหมดและจำนวนรวมที่สั่งซื้อสำหรับชื่อผลิตภัณฑ์แต่ละชื่อ",
    "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_en": "Show the order ids and the number of items in each order.",
    "question_th": "แสดงรหัสคำสั่งซื้อและจำนวนสินค้าในแต่ละคำสั่งซื้อ",
    "context": "CREATE TABLE Order_items (order_id VARCHAR)"
  },
  {
    "answer": "SELECT product_id, COUNT(DISTINCT order_id) FROM Order_items GROUP BY product_id",
    "question_en": "Show the product ids and the number of unique orders containing each product.",
    "question_th": "แสดงรหัสผลิตภัณฑ์และจำนวนคำสั่งซื้อที่ไม่ซ้ำกันซึ่งมีผลิตภัณฑ์แต่ละรายการ",
    "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_en": "Show all product names and the number of customers having an order on each product.",
    "question_th": "แสดงชื่อผลิตภัณฑ์ทั้งหมดและจำนวนลูกค้าที่มีการสั่งซื้อผลิตภัณฑ์แต่ละรายการ",
    "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_en": "Show order ids and the number of products in each order.",
    "question_th": "แสดงรหัสคำสั่งซื้อและจำนวนสินค้าในแต่ละคำสั่งซื้อ",
    "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_en": "Show order ids and the total quantity in each order.",
    "question_th": "แสดงรหัสคำสั่งซื้อและจำนวนรวมในแต่ละคำสั่งซื้อ",
    "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_en": "How many products were not included in any order?",
    "question_th": "ไม่รวมผลิตภัณฑ์จำนวนเท่าใดในคำสั่งซื้อใด ๆ",
    "context": "CREATE TABLE products (product_id VARCHAR); CREATE TABLE Order_items (product_id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Church WHERE Open_Date < 1850",
    "question_en": "How many churches opened before 1850 are there?",
    "question_th": "มีโบสถ์กี่แห่งที่เปิดก่อนปี 1850?",
    "context": "CREATE TABLE Church (Open_Date INTEGER)"
  },
  {
    "answer": "SELECT name, open_date, organized_by FROM Church",
    "question_en": "Show the name, open date, and organizer for all churches.",
    "question_th": "แสดงชื่อ วันที่เปิด และผู้จัดงานสำหรับคริสตจักรทั้งหมด",
    "context": "CREATE TABLE Church (name VARCHAR, open_date VARCHAR, organized_by VARCHAR)"
  },
  {
    "answer": "SELECT name FROM church ORDER BY open_date DESC",
    "question_en": "List all church names in descending order of opening date.",
    "question_th": "รายชื่อคริสตจักรทั้งหมดตามลำดับวันที่เปิดจากมากไปหาน้อย",
    "context": "CREATE TABLE church (name VARCHAR, open_date VARCHAR)"
  },
  {
    "answer": "SELECT open_date FROM church GROUP BY open_date HAVING COUNT(*) >= 2",
    "question_en": "Show the opening year in whcih at least two churches opened.",
    "question_th": "แสดงปีเปิดทำการซึ่งมีคริสตจักรอย่างน้อยสองแห่งเปิดทำการ",
    "context": "CREATE TABLE church (open_date VARCHAR)"
  },
  {
    "answer": "SELECT organized_by, name FROM church WHERE open_date BETWEEN 1830 AND 1840",
    "question_en": "Show the organizer and name for churches that opened between 1830 and 1840.",
    "question_th": "แสดงผู้จัดงานและชื่อโบสถ์ที่เปิดระหว่างปี 1830 ถึง 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_en": "Show all opening years and the number of churches that opened in that year.",
    "question_th": "แสดงปีที่เปิดทั้งหมดและจำนวนคริสตจักรที่เปิดในปีนั้น",
    "context": "CREATE TABLE church (open_date VARCHAR)"
  },
  {
    "answer": "SELECT name, open_date FROM church ORDER BY open_date DESC LIMIT 3",
    "question_en": "Show the name and opening year for three churches that opened most recently.",
    "question_th": "แสดงชื่อและปีที่เปิดโบสถ์ 3 แห่งที่เปิดล่าสุด",
    "context": "CREATE TABLE church (name VARCHAR, open_date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM people WHERE is_male = 'F' AND age > 30",
    "question_en": "How many female people are older than 30 in our record?",
    "question_th": "ในบันทึกของเรา มีผู้หญิงอายุมากกว่า 30 ปีกี่คน?",
    "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_en": "Show the country where people older than 30 and younger than 25 are from.",
    "question_th": "แสดงประเทศที่มีผู้ที่มีอายุมากกว่า 30 ปีและอายุน้อยกว่า 25 ปีมา",
    "context": "CREATE TABLE people (country VARCHAR, age INTEGER)"
  },
  {
    "answer": "SELECT MIN(age), MAX(age), AVG(age) FROM people",
    "question_en": "Show the minimum, maximum, and average age for all people.",
    "question_th": "แสดงอายุขั้นต่ำ สูงสุด และอายุเฉลี่ยสำหรับทุกคน",
    "context": "CREATE TABLE people (age INTEGER)"
  },
  {
    "answer": "SELECT name, country FROM people WHERE age < (SELECT AVG(age) FROM people)",
    "question_en": "Show the name and country for all people whose age is smaller than the average.",
    "question_th": "แสดงชื่อและประเทศสำหรับทุกคนที่มีอายุน้อยกว่าค่าเฉลี่ย",
    "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_en": "Show the pair of male and female names in all weddings after year 2014",
    "question_th": "แสดงชื่อคู่ชายและหญิงในงานแต่งงานทั้งหมดหลังปี 2557",
    "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_en": "Show the name and age for all male people who don't have a wedding.",
    "question_th": "แสดงชื่อและอายุของผู้ชายทุกคนที่ไม่มีงานแต่งงาน",
    "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_en": "Show all church names except for those that had a wedding in year 2015.",
    "question_th": "แสดงชื่อคริสตจักรทั้งหมด ยกเว้นชื่อคริสตจักรที่จัดงานแต่งงานในปี 2558",
    "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_en": "Show all church names that have hosted least two weddings.",
    "question_th": "แสดงชื่อคริสตจักรทั้งหมดที่จัดงานแต่งงานอย่างน้อยสองครั้ง",
    "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_en": "Show the names for all females from Canada having a wedding in year 2016.",
    "question_th": "แสดงรายชื่อผู้หญิงทุกคนที่มาจากแคนาดาที่จะจัดงานแต่งงานในปี 2559",
    "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_en": "How many weddings are there in year 2016?",
    "question_th": "ในปี 2559 มีงานแต่งงานกี่งาน?",
    "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_en": "Show the church names for the weddings of all people older than 30.",
    "question_th": "แสดงชื่อคริสตจักรสำหรับงานแต่งงานของทุกคนที่อายุมากกว่า 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_en": "Show all countries and the number of people from each country.",
    "question_th": "แสดงทุกประเทศและจำนวนคนในแต่ละประเทศ",
    "context": "CREATE TABLE people (country VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT church_id) FROM wedding WHERE YEAR = 2016",
    "question_en": "How many churches have a wedding in year 2016?",
    "question_th": "ในปี 2559 มีคริสตจักรกี่แห่งที่มีงานแต่งงาน?",
    "context": "CREATE TABLE wedding (church_id VARCHAR, YEAR VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM artist",
    "question_en": "How many artists do we have?",
    "question_th": "เรามีศิลปินกี่คน?",
    "context": "CREATE TABLE artist (Id VARCHAR)"
  },
  {
    "answer": "SELECT name, age, country FROM artist ORDER BY Year_Join",
    "question_en": "Show all artist name, age, and country ordered by the yeared they joined.",
    "question_th": "แสดงชื่อศิลปิน อายุ และประเทศทั้งหมด เรียงตามปีที่เข้าร่วม",
    "context": "CREATE TABLE artist (name VARCHAR, age VARCHAR, country VARCHAR, Year_Join VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT country FROM artist",
    "question_en": "What are all distinct country for artists?",
    "question_th": "ประเทศที่แตกต่างกันสำหรับศิลปินคืออะไร?",
    "context": "CREATE TABLE artist (country VARCHAR)"
  },
  {
    "answer": "SELECT name, year_join FROM artist WHERE country <> 'United States'",
    "question_en": "Show all artist names and the year joined who are not from United States.",
    "question_th": "แสดงชื่อศิลปินและปีที่เข้าร่วมทั้งหมดซึ่งไม่ได้มาจากสหรัฐอเมริกา",
    "context": "CREATE TABLE artist (name VARCHAR, year_join VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM artist WHERE age > 46 AND year_join > 1990",
    "question_en": "How many artists are above age 46 and joined after 1990?",
    "question_th": "มีศิลปินกี่คนที่อายุมากกว่า 46 ปีและเข้าร่วมหลังปี 1990",
    "context": "CREATE TABLE artist (age VARCHAR, year_join VARCHAR)"
  },
  {
    "answer": "SELECT AVG(age), MIN(age) FROM artist WHERE country = 'United States'",
    "question_en": "What is the average and minimum age of all artists from United States.",
    "question_th": "อายุเฉลี่ยและอายุขั้นต่ำของศิลปินทั้งหมดจากสหรัฐอเมริกาคือเท่าใด",
    "context": "CREATE TABLE artist (age INTEGER, country VARCHAR)"
  },
  {
    "answer": "SELECT name FROM artist ORDER BY year_join DESC LIMIT 1",
    "question_en": "What is the name of the artist who joined latest?",
    "question_th": "ศิลปินที่เข้าร่วมล่าสุดชื่ออะไร?",
    "context": "CREATE TABLE artist (name VARCHAR, year_join VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM exhibition WHERE YEAR >= 2005",
    "question_en": "How many exhibition are there in year 2005 or after?",
    "question_th": "ปี พ.ศ. 2548 หรือหลังจากนั้นมีนิทรรศการจำนวนกี่นิทรรศการ?",
    "context": "CREATE TABLE exhibition (YEAR VARCHAR)"
  },
  {
    "answer": "SELECT theme, YEAR FROM exhibition WHERE ticket_price < 15",
    "question_en": "Show theme and year for all exhibitions with ticket prices lower than 15.",
    "question_th": "แสดงธีมและปีสำหรับนิทรรศการทั้งหมดที่ราคาตั๋วต่ำกว่า 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_en": "Show all artist names and the number of exhibitions for each artist.",
    "question_th": "แสดงชื่อศิลปินทั้งหมดและจำนวนนิทรรศการของศิลปินแต่ละคน",
    "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_en": "What is the name and country for the artist with most number of exhibitions?",
    "question_th": "ชื่อและประเทศของศิลปินที่มีการจัดนิทรรศการมากที่สุดคืออะไร?",
    "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_en": "Show names for artists without any exhibition.",
    "question_th": "แสดงชื่อศิลปินที่ไม่มีนิทรรศการใดๆ",
    "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_en": "What is the theme and artist name for the exhibition with a ticket price higher than the average?",
    "question_th": "นิทรรศการนี้มีธีมและชื่อศิลปินอะไรซึ่งมีราคาตั๋วสูงกว่าค่าเฉลี่ย?",
    "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_en": "Show the average, minimum, and maximum ticket prices for exhibitions for all years before 2009.",
    "question_th": "แสดงราคาตั๋วเฉลี่ย ต่ำสุด และสูงสุดสำหรับนิทรรศการทุกปีก่อนปี 2009",
    "context": "CREATE TABLE exhibition (ticket_price INTEGER, YEAR INTEGER)"
  },
  {
    "answer": "SELECT theme, YEAR FROM exhibition ORDER BY ticket_price DESC",
    "question_en": "Show theme and year for all exhibitions in an descending order of ticket price.",
    "question_th": "แสดงธีมและปีของนิทรรศการทั้งหมดโดยเรียงตามราคาตั๋วจากมากไปหาน้อย",
    "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_en": "What is the theme, date, and attendance for the exhibition in year 2004?",
    "question_th": "หัวข้อ วันที่ และการเข้าร่วมงานนิทรรศการในปี พ.ศ. 2547 คืออะไร?",
    "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_en": "Show all artist names who didn't have an exhibition in 2004.",
    "question_th": "แสดงรายชื่อศิลปินทั้งหมดที่ไม่มีนิทรรศการในปี 2547",
    "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_en": "Show the theme for exhibitions with both records of an attendance below 100 and above 500.",
    "question_th": "แสดงหัวข้อนิทรรศการที่มีผู้เข้าร่วมต่ำกว่า 100 คนและมากกว่า 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_en": "How many exhibitions have a attendance more than 100 or have a ticket price below 10?",
    "question_th": "มีกี่นิทรรศการที่มีผู้เข้าชมเกิน 100 หรือมีราคาตั๋วต่ำกว่า 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_en": "Show all artist names with an average exhibition attendance over 200.",
    "question_th": "แสดงชื่อศิลปินทั้งหมดที่มีผู้เข้าชมนิทรรศการเฉลี่ยมากกว่า 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_en": "Find the id of the item whose title is \"orange\".",
    "question_th": "ค้นหารหัสของรายการที่มีชื่อว่า \"สีส้ม\"",
    "context": "CREATE TABLE item (i_id VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT * FROM item",
    "question_en": "List all information in the item table.",
    "question_th": "แสดงรายการข้อมูลทั้งหมดในตารางรายการ",
    "context": "CREATE TABLE item (Id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM review",
    "question_en": "Find the number of reviews.",
    "question_th": "ค้นหาจำนวนบทวิจารณ์",
    "context": "CREATE TABLE review (Id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM useracct",
    "question_en": "How many users are there?",
    "question_th": "มีผู้ใช้งานกี่คน?",
    "context": "CREATE TABLE useracct (Id VARCHAR)"
  },
  {
    "answer": "SELECT AVG(rating), MAX(rating) FROM review",
    "question_en": "Find the average and maximum rating of all reviews.",
    "question_th": "ค้นหาคะแนนเฉลี่ยและคะแนนสูงสุดของบทวิจารณ์ทั้งหมด",
    "context": "CREATE TABLE review (rating INTEGER)"
  },
  {
    "answer": "SELECT MIN(rank) FROM review",
    "question_en": "Find the highest rank of all reviews.",
    "question_th": "ค้นหาอันดับสูงสุดของบทวิจารณ์ทั้งหมด",
    "context": "CREATE TABLE review (rank INTEGER)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT u_id) FROM review",
    "question_en": "How many different users wrote some reviews?",
    "question_th": "มีผู้ใช้กี่คนที่เขียนบทวิจารณ์บ้าง?",
    "context": "CREATE TABLE review (u_id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT i_id) FROM review",
    "question_en": "How many different items were reviewed by some users?",
    "question_th": "ผู้ใช้บางคนตรวจสอบสินค้าที่แตกต่างกันกี่รายการ?",
    "context": "CREATE TABLE review (i_id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM item WHERE NOT i_id IN (SELECT i_id FROM review)",
    "question_en": "Find the number of items that did not receive any review.",
    "question_th": "ค้นหาจำนวนสินค้าที่ไม่ได้รับการตรวจสอบใดๆ",
    "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_en": "Find the names of users who did not leave any review.",
    "question_th": "ค้นหาชื่อผู้ใช้ที่ไม่ได้ออกความเห็นใดๆ",
    "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_en": "Find the names of goods that receive a rating of 10.",
    "question_th": "ค้นหาชื่อสินค้าที่ได้รับคะแนน 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_en": "Find the titles of items whose rating is higher than the average review rating of all items.",
    "question_th": "ค้นหาชื่อของรายการที่มีการให้คะแนนสูงกว่าคะแนนรีวิวเฉลี่ยของรายการทั้งหมด",
    "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_en": "Find the titles of items that received any rating below 5.",
    "question_th": "ค้นหาชื่อของรายการที่ได้รับคะแนนต่ำกว่า 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_en": "Find the titles of items that received both a rating higher than 8 and a rating below 5.",
    "question_th": "ค้นหาชื่อของรายการที่ได้รับทั้งคะแนนสูงกว่า 8 และคะแนนต่ำกว่า 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_en": "Find the names of items whose rank is higher than 3 and whose average rating is above 5.",
    "question_th": "ค้นหาชื่อรายการที่มีอันดับสูงกว่า 3 และมีคะแนนเฉลี่ยมากกว่า 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_en": "Find the name of the item with the lowest average rating.",
    "question_th": "ค้นหาชื่อรายการที่มีคะแนนเฉลี่ยต่ำสุด",
    "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_en": "List the titles of all items in alphabetic order .",
    "question_th": "ตั้งชื่อรายการทั้งหมดตามลำดับตัวอักษร",
    "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_en": "Find the name of the user who gives the most reviews.",
    "question_th": "ค้นหาชื่อผู้ใช้ที่ให้ความเห็นมากที่สุด",
    "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_en": "Find the name and id of the item with the highest average rating.",
    "question_th": "ค้นหาชื่อและรหัสของรายการที่มีคะแนนเฉลี่ยสูงสุด",
    "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_en": "Find the name and id of the good with the highest average rank.",
    "question_th": "ค้นหาชื่อและรหัสสินค้าที่มีอันดับเฉลี่ยสูงสุด",
    "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_en": "For each user, return the name and the average rating of reviews given by them.",
    "question_th": "สำหรับผู้ใช้แต่ละราย ให้ส่งคืนชื่อและคะแนนเฉลี่ยของบทวิจารณ์ที่ได้รับจากพวกเขา",
    "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_en": "For each user, find their name and the number of reviews written by them.",
    "question_th": "สำหรับผู้ใช้แต่ละคน ให้ค้นหาชื่อและจำนวนบทวิจารณ์ที่เขียนโดยพวกเขา",
    "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_en": "Find the name of the user who gave the highest rating.",
    "question_th": "ค้นหาชื่อผู้ใช้ที่ให้คะแนนสูงสุด",
    "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_en": "Find the name of the source user with the highest average trust score.",
    "question_th": "ค้นหาชื่อผู้ใช้ต้นทางที่มีคะแนนความน่าเชื่อถือเฉลี่ยสูงสุด",
    "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_en": "Find each target user's name and average trust score.",
    "question_th": "ค้นหาชื่อผู้ใช้เป้าหมายแต่ละรายและคะแนนความน่าเชื่อถือเฉลี่ย",
    "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_en": "Find the name of the target user with the lowest trust score.",
    "question_th": "ค้นหาชื่อของผู้ใช้เป้าหมายที่มีคะแนนความน่าเชื่อถือต่ำที่สุด",
    "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_en": "Find the names of the items that did not receive any review.",
    "question_th": "ค้นหาชื่อรายการที่ไม่ได้รับการตรวจสอบใดๆ",
    "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_en": "Find the number of users who did not write any review.",
    "question_th": "ค้นหาจำนวนผู้ใช้ที่ไม่ได้เขียนบทวิจารณ์ใดๆ",
    "context": "CREATE TABLE review (u_id VARCHAR); CREATE TABLE useracct (u_id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM player",
    "question_en": "How many players are there?",
    "question_th": "มีผู้เล่นกี่คน?",
    "context": "CREATE TABLE player (Id VARCHAR)"
  },
  {
    "answer": "SELECT Player_name FROM player ORDER BY Votes",
    "question_en": "List the names of players in ascending order of votes.",
    "question_th": "รายชื่อผู้เล่นตามลำดับการโหวตจากน้อยไปหามาก",
    "context": "CREATE TABLE player (Player_name VARCHAR, Votes VARCHAR)"
  },
  {
    "answer": "SELECT Gender, Occupation FROM player",
    "question_en": "What are the gender and occupation of players?",
    "question_th": "ผู้เล่นมีเพศและอาชีพอะไร?",
    "context": "CREATE TABLE player (Gender VARCHAR, Occupation VARCHAR)"
  },
  {
    "answer": "SELECT Player_name, residence FROM player WHERE Occupation <> \"Researcher\"",
    "question_en": "List the name and residence for players whose occupation is not \"Researcher\".",
    "question_th": "ระบุชื่อและถิ่นที่อยู่ของผู้เล่นที่อาชีพไม่ใช่ \"นักวิจัย\"",
    "context": "CREATE TABLE player (Player_name VARCHAR, residence VARCHAR, Occupation VARCHAR)"
  },
  {
    "answer": "SELECT Sponsor_name FROM player WHERE Residence = \"Brandon\" OR Residence = \"Birtle\"",
    "question_en": "Show the names of sponsors of players whose residence is either \"Brandon\" or \"Birtle\".",
    "question_th": "แสดงชื่อผู้สนับสนุนผู้เล่นที่มีถิ่นที่อยู่เป็น \"แบรนดอน\" หรือ \"เบิร์ต\"",
    "context": "CREATE TABLE player (Sponsor_name VARCHAR, Residence VARCHAR)"
  },
  {
    "answer": "SELECT Player_name FROM player ORDER BY Votes DESC LIMIT 1",
    "question_en": "What is the name of the player with the largest number of votes?",
    "question_th": "ผู้เล่นที่ได้รับการโหวตมากที่สุดชื่ออะไร?",
    "context": "CREATE TABLE player (Player_name VARCHAR, Votes VARCHAR)"
  },
  {
    "answer": "SELECT Occupation, COUNT(*) FROM player GROUP BY Occupation",
    "question_en": "Show different occupations along with the number of players in each occupation.",
    "question_th": "แสดงอาชีพที่แตกต่างกันพร้อมกับจำนวนผู้เล่นในแต่ละอาชีพ",
    "context": "CREATE TABLE player (Occupation VARCHAR)"
  },
  {
    "answer": "SELECT Occupation FROM player GROUP BY Occupation ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "Please show the most common occupation of players.",
    "question_th": "กรุณาแสดงอาชีพของผู้เล่นที่พบบ่อยที่สุด",
    "context": "CREATE TABLE player (Occupation VARCHAR)"
  },
  {
    "answer": "SELECT Residence FROM player GROUP BY Residence HAVING COUNT(*) >= 2",
    "question_en": "Show the residences that have at least two players.",
    "question_th": "แสดงที่อยู่อาศัยที่มีผู้เล่นอย่างน้อยสองคน",
    "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_en": "Show the names of players and names of their coaches.",
    "question_th": "แสดงชื่อผู้เล่นและชื่อโค้ชของพวกเขา",
    "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_en": "Show the names of players coached by the rank 1 coach.",
    "question_th": "แสดงรายชื่อผู้เล่นที่ได้รับการฝึกสอนโดยโค้ชอันดับ 1",
    "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_en": "Show the names and genders of players with a coach starting after 2011.",
    "question_th": "แสดงชื่อและเพศของผู้เล่นกับโค้ชที่เริ่มหลังปี 2554",
    "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_en": "Show the names of players and names of their coaches in descending order of the votes of players.",
    "question_th": "แสดงชื่อผู้เล่นและชื่อโค้ชตามลำดับคะแนนโหวตของผู้เล่นจากมากไปน้อย",
    "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_en": "List the names of players that do not have coaches.",
    "question_th": "รายชื่อผู้เล่นที่ไม่มีโค้ช",
    "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_en": "Show the residences that have both a player of gender \"M\" and a player of gender \"F\".",
    "question_th": "แสดงที่อยู่อาศัยที่มีทั้งผู้เล่นเพศ \"M\" และผู้เล่นเพศ \"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_en": "How many coaches does each club has? List the club id, name and the number of coaches.",
    "question_th": "แต่ละสโมสรมีโค้ชกี่คน? ระบุรหัสสโมสร ชื่อ และจำนวนโค้ช",
    "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_en": "How many gold medals has the club with the most coaches won?",
    "question_th": "สโมสรที่มีโค้ชมากที่สุดชนะได้กี่เหรียญทอง?",
    "context": "CREATE TABLE match_result (club_id VARCHAR, gold VARCHAR); CREATE TABLE coach (club_id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM gymnast",
    "question_en": "How many gymnasts are there?",
    "question_th": "มีนักยิมนาสติกกี่คน?",
    "context": "CREATE TABLE gymnast (Id VARCHAR)"
  },
  {
    "answer": "SELECT Total_Points FROM gymnast ORDER BY Total_Points DESC",
    "question_en": "List the total points of gymnasts in descending order.",
    "question_th": "แสดงรายการคะแนนรวมของนักยิมนาสติกตามลำดับจากมากไปน้อย",
    "context": "CREATE TABLE gymnast (Total_Points VARCHAR)"
  },
  {
    "answer": "SELECT Total_Points FROM gymnast ORDER BY Floor_Exercise_Points DESC",
    "question_en": "List the total points of gymnasts in descending order of floor exercise points.",
    "question_th": "แสดงรายการคะแนนรวมของนักยิมนาสติกตามลำดับคะแนนการออกกำลังกายบนพื้นจากมากไปหาน้อย",
    "context": "CREATE TABLE gymnast (Total_Points VARCHAR, Floor_Exercise_Points VARCHAR)"
  },
  {
    "answer": "SELECT AVG(Horizontal_Bar_Points) FROM gymnast",
    "question_en": "What is the average horizontal bar points for all gymnasts?",
    "question_th": "คะแนนแถบแนวนอนเฉลี่ยสำหรับนักยิมนาสติกทุกคนคือเท่าไร?",
    "context": "CREATE TABLE gymnast (Horizontal_Bar_Points INTEGER)"
  },
  {
    "answer": "SELECT Name FROM People ORDER BY Name",
    "question_en": "What are the names of people in ascending alphabetical order?",
    "question_th": "ชื่อของบุคคลตามลำดับตัวอักษรจากน้อยไปหามากคืออะไร?",
    "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_en": "What are the names of gymnasts?",
    "question_th": "นักยิมนาสติกชื่ออะไร?",
    "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_en": "What are the names of gymnasts whose hometown is not \"Santo Domingo\"?",
    "question_th": "นักยิมนาสติกชื่ออะไรที่ไม่ใช่บ้านเกิด \"ซานโตโดมิงโก\"?",
    "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_en": "What is the age of the tallest person?",
    "question_th": "คนที่สูงที่สุดอายุเท่าไหร่?",
    "context": "CREATE TABLE people (Age VARCHAR, Height VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM People ORDER BY Age DESC LIMIT 5",
    "question_en": "List the names of the top 5 oldest people.",
    "question_th": "รายชื่อบุคคลที่อายุมากที่สุด 5 อันดับแรก",
    "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_en": "What is the total point count of the youngest gymnast?",
    "question_th": "นักยิมนาสติกอายุน้อยที่สุดมีคะแนนรวมเท่าไร?",
    "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_en": "What is the average age of all gymnasts?",
    "question_th": "อายุเฉลี่ยของนักยิมนาสติกทุกคนคือเท่าไร?",
    "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_en": "What are the distinct hometowns of gymnasts with total points more than 57.5?",
    "question_th": "บ้านเกิดของนักยิมนาสติกที่มีคะแนนรวมมากกว่า 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_en": "What are the hometowns of gymnasts and the corresponding number of gymnasts?",
    "question_th": "บ้านเกิดของนักยิมนาสติกและนักยิมนาสติกมีกี่คน?",
    "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_en": "What is the most common hometown of gymnasts?",
    "question_th": "บ้านเกิดของนักยิมนาสติกที่พบบ่อยที่สุดคืออะไร?",
    "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_en": "What are the hometowns that are shared by at least two gymnasts?",
    "question_th": "บ้านเกิดที่มีนักยิมนาสติกอย่างน้อยสองคนร่วมกันคืออะไร?",
    "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_en": "List the names of gymnasts in ascending order by their heights.",
    "question_th": "รายชื่อนักยิมนาสติกเรียงตามความสูงจากน้อยไปหามาก",
    "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_en": "List the distinct hometowns that are not associated with any gymnast.",
    "question_th": "ระบุบ้านเกิดที่ไม่เกี่ยวข้องกับนักกายกรรม",
    "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_en": "Show the hometowns shared by people older than 23 and younger than 20.",
    "question_th": "แสดงบ้านเกิดที่แบ่งปันโดยผู้ที่มีอายุมากกว่า 23 ปีและอายุน้อยกว่า 20 ปี",
    "context": "CREATE TABLE people (Hometown VARCHAR, Age INTEGER)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT Hometown) FROM people",
    "question_en": "How many distinct hometowns did these people have?",
    "question_th": "คนเหล่านี้มีบ้านเกิดที่แตกต่างกันกี่แห่ง?",
    "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_en": "Show the ages of gymnasts in descending order of total points.",
    "question_th": "แสดงอายุของนักยิมนาสติกโดยเรียงลำดับคะแนนรวมจากมากไปหาน้อย",
    "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_en": "Find the total savings balance of all accounts except the account with name ‘Brown’.",
    "question_th": "ค้นหายอดออมทรัพย์รวมของทุกบัญชี ยกเว้นบัญชีชื่อ 'บราวน์'",
    "context": "CREATE TABLE accounts (custid VARCHAR, name VARCHAR); CREATE TABLE savings (balance INTEGER, custid VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM accounts",
    "question_en": "How many accounts are there in total?",
    "question_th": "มีทั้งหมดกี่บัญชี?",
    "context": "CREATE TABLE accounts (Id VARCHAR)"
  },
  {
    "answer": "SELECT SUM(balance) FROM checking",
    "question_en": "What is the total checking balance in all accounts?",
    "question_th": "ยอดเช็ครวมในทุกบัญชีคือเท่าไร?",
    "context": "CREATE TABLE checking (balance INTEGER)"
  },
  {
    "answer": "SELECT AVG(balance) FROM checking",
    "question_en": "Find the average checking balance.",
    "question_th": "ค้นหายอดการตรวจสอบเฉลี่ย",
    "context": "CREATE TABLE checking (balance INTEGER)"
  },
  {
    "answer": "SELECT COUNT(*) FROM savings WHERE balance > (SELECT AVG(balance) FROM savings)",
    "question_en": "How many accounts have a savings balance above the average savings balance?",
    "question_th": "มีกี่บัญชีที่มียอดออมทรัพย์สูงกว่ายอดออมทรัพย์เฉลี่ย?",
    "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_en": "Find the name and id of accounts whose checking balance is below the maximum checking balance.",
    "question_th": "ค้นหาชื่อและรหัสบัญชีที่มียอดคงเหลือในบัญชีต่ำกว่ายอดคงเหลือสูงสุด",
    "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_en": "What is the checking balance of the account whose owner’s name contains the substring ‘ee’?",
    "question_th": "ยอดเงินในเช็คของบัญชีที่มีชื่อเจ้าของมีอักษรย่อย 'ee' คืออะไร?",
    "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_en": "Find the checking balance and saving balance in the Brown’s account.",
    "question_th": "ค้นหายอดคงเหลือในบัญชีและยอดออมทรัพย์ในบัญชีของบราวน์",
    "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_en": "Find the names of accounts whose checking balance is above the average checking balance, but savings balance is below the average savings balance.",
    "question_th": "ค้นหาชื่อบัญชีที่มียอดคงเหลือในกระแสรายวันสูงกว่ายอดกระแสรายวันเฉลี่ย แต่ยอดออมทรัพย์ต่ำกว่ายอดออมทรัพย์เฉลี่ย",
    "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_en": "Find the checking balance of the accounts whose savings balance is higher than the average savings balance.",
    "question_th": "ค้นหายอดเงินคงเหลือในบัญชีที่มียอดออมทรัพย์สูงกว่ายอดออมทรัพย์เฉลี่ย",
    "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_en": "List all customers’ names in the alphabetical order.",
    "question_th": "ระบุชื่อลูกค้าทั้งหมดตามลำดับตัวอักษร",
    "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_en": "Find the name of account that has the lowest total checking and saving balance.",
    "question_th": "ค้นหาชื่อบัญชีที่มียอดฝากและเช็คยอดรวมต่ำสุด",
    "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_en": "Find the names and total checking and savings balances of accounts whose savings balance is higher than the average savings balance.",
    "question_th": "ค้นหาชื่อและยอดรวมเช็คและออมทรัพย์ของบัญชีที่มียอดออมทรัพย์สูงกว่ายอดออมทรัพย์เฉลี่ย",
    "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_en": "Find the name and checking balance of the account with the lowest savings balance.",
    "question_th": "ค้นหาชื่อและตรวจสอบยอดเงินในบัญชีที่มียอดออมน้อยที่สุด",
    "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_en": "Find the number of checking accounts for each account name.",
    "question_th": "ค้นหาจำนวนบัญชีเช็คสำหรับแต่ละชื่อบัญชี",
    "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_en": "Find the total saving balance for each account name.",
    "question_th": "ค้นหายอดคงเหลือรวมของแต่ละชื่อบัญชี",
    "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_en": "Find the name of accounts whose checking balance is below the average checking balance.",
    "question_th": "ค้นหาชื่อบัญชีที่มียอดเช็คต่ำกว่ายอดเช็คเฉลี่ย",
    "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_en": "Find the saving balance of the account with the highest checking balance.",
    "question_th": "ค้นหายอดเงินออมของบัญชีที่มียอดเช็คสูงสุด",
    "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_en": "Find the total checking and saving balance of all accounts sorted by the total balance in ascending order.",
    "question_th": "ค้นหายอดฝากและฝากรวมของทุกบัญชี เรียงตามยอดรวมจากน้อยไปหามาก",
    "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_en": "Find the name and checking balance of the account with the lowest saving balance.",
    "question_th": "ค้นหาชื่อและตรวจสอบยอดเงินในบัญชีที่มียอดออมต่ำสุด",
    "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_en": "Find the name, checking balance and saving balance of all accounts in the bank.",
    "question_th": "ค้นหาชื่อ ตรวจสอบยอดเงิน และยอดออมของทุกบัญชีในธนาคาร",
    "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_en": "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.",
    "question_th": "ค้นหาชื่อ ยอดเช็คและยอดออมทรัพย์ของทุกบัญชีในธนาคาร เรียงตามยอดรวมเช็คและออมทรัพย์ตามลำดับจากมากไปน้อย",
    "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_en": "Find the name of accounts whose checking balance is higher than corresponding saving balance.",
    "question_th": "ค้นหาชื่อบัญชีที่มียอดคงเหลือในบัญชีมากกว่ายอดออมทรัพย์ที่เกี่ยวข้อง",
    "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_en": "Find the name and total checking and savings balance of the accounts whose savings balance is lower than corresponding checking balance.",
    "question_th": "ค้นหาชื่อและยอดรวมเช็คและออมทรัพย์ของบัญชีที่มียอดออมทรัพย์ต่ำกว่ายอดเช็คที่สอดคล้องกัน",
    "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_en": "Find the name and savings balance of the top 3 accounts with the highest saving balance sorted by savings balance in descending order.",
    "question_th": "ค้นหาชื่อและยอดออมทรัพย์ของบัญชีที่มียอดออมสูงสุด 3 อันดับแรก เรียงตามยอดออมทรัพย์ตามลำดับจากมากไปน้อย",
    "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_en": "How many main stream browsers whose market share is at least 5 exist?",
    "question_th": "มีเบราว์เซอร์กระแสหลักกี่ตัวที่มีส่วนแบ่งการตลาดอย่างน้อย 5 ตัว?",
    "context": "CREATE TABLE browser (market_share VARCHAR)"
  },
  {
    "answer": "SELECT name FROM browser ORDER BY market_share DESC",
    "question_en": "List the name of browsers in descending order by market share.",
    "question_th": "แสดงรายการชื่อเบราว์เซอร์ตามลำดับจากมากไปน้อยตามส่วนแบ่งการตลาด",
    "context": "CREATE TABLE browser (name VARCHAR, market_share VARCHAR)"
  },
  {
    "answer": "SELECT id, name, market_share FROM browser",
    "question_en": "List the ids, names and market shares of all browsers.",
    "question_th": "ระบุรหัส ชื่อ และส่วนแบ่งการตลาดของเบราว์เซอร์ทั้งหมด",
    "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_en": "What is the maximum, minimum and average market share of the listed browsers?",
    "question_th": "ส่วนแบ่งการตลาดสูงสุด ต่ำสุด และเฉลี่ยของเบราว์เซอร์ที่อยู่ในรายการคือเท่าใด",
    "context": "CREATE TABLE browser (market_share INTEGER)"
  },
  {
    "answer": "SELECT id, market_share FROM browser WHERE name = 'Safari'",
    "question_en": "What is the id and market share of the browser Safari?",
    "question_th": "ID และส่วนแบ่งการตลาดของเบราว์เซอร์ 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_en": "What are the name and os of web client accelerators that do not work with only a 'Broadband' type connection?",
    "question_th": "ชื่อและระบบปฏิบัติการของตัวเร่งความเร็วเว็บไคลเอ็นต์ที่ไม่สามารถใช้งานได้กับการเชื่อมต่อประเภท 'บรอดแบนด์' คืออะไร",
    "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_en": "What is the name of the browser that became compatible with the accelerator 'CProxy' after year 1998 ?",
    "question_th": "เบราว์เซอร์ที่เข้ากันได้กับตัวเร่งความเร็ว 'CProxy' หลังจากปี 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_en": "What are the ids and names of the web accelerators that are compatible with two or more browsers?",
    "question_th": "รหัสและชื่อของตัวเร่งความเร็วเว็บที่เข้ากันได้กับเบราว์เซอร์ตั้งแต่สองตัวขึ้นไปคืออะไร",
    "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_en": "What is the id and name of the browser that is compatible with the most web accelerators?",
    "question_th": "ID และชื่อของเบราว์เซอร์ที่เข้ากันได้กับตัวเร่งความเร็วเว็บส่วนใหญ่คืออะไร?",
    "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_en": "When did the web accelerator 'CACHEbox' and browser 'Internet Explorer' become compatible?",
    "question_th": "ตัวเร่งความเร็วเว็บ 'CACHEbox' และเบราว์เซอร์ 'Internet Explorer' เข้ากันได้เมื่อใด",
    "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_en": "How many different kinds of clients are supported by the web clients accelerators?",
    "question_th": "Web Client Accelerator รองรับไคลเอนต์กี่ประเภท?",
    "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_en": "How many accelerators are not compatible with the browsers listed ?",
    "question_th": "มีตัวเร่งความเร็วกี่ตัวที่ไม่เข้ากันกับเบราว์เซอร์ที่อยู่ในรายการ ?",
    "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_en": "What distinct accelerator names are compatible with the browswers that have market share higher than 15?",
    "question_th": "ชื่อตัวเร่งที่ชัดเจนใดบ้างที่เข้ากันได้กับเบราว์เซอร์ที่มีส่วนแบ่งการตลาดสูงกว่า 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_en": "List the names of the browser that are compatible with both 'CACHEbox' and 'Fasterfox'.",
    "question_th": "แสดงรายการชื่อของเบราว์เซอร์ที่เข้ากันได้กับทั้ง 'CACHEbox' และ '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_en": "Show the accelerator names and supporting operating systems that are not compatible with the browser named 'Opera'.",
    "question_th": "แสดงชื่อตัวเร่งความเร็วและระบบปฏิบัติการที่รองรับซึ่งเข้ากันไม่ได้กับเบราว์เซอร์ชื่อ '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_en": "Which accelerator name contains substring \"Opera\"?",
    "question_th": "ชื่อคันเร่งใดมีสตริงย่อย \"Opera\"",
    "context": "CREATE TABLE web_client_accelerator (name VARCHAR)"
  },
  {
    "answer": "SELECT Operating_system, COUNT(*) FROM web_client_accelerator GROUP BY Operating_system",
    "question_en": "Find the number of web accelerators used for each Operating system.",
    "question_th": "ค้นหาจำนวนตัวเร่งความเร็วเว็บที่ใช้สำหรับระบบปฏิบัติการแต่ละระบบ",
    "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_en": "give me names of all compatible browsers and accelerators in the descending order of compatible year",
    "question_th": "แจ้งชื่อเบราว์เซอร์และตัวเร่งความเร็วที่เข้ากันได้ทั้งหมดให้ฉันโดยเรียงลำดับจากมากไปหาน้อยของปีที่เข้ากันได้",
    "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_en": "How many wrestlers are there?",
    "question_th": "มีนักมวยปล้ำกี่คน?",
    "context": "CREATE TABLE wrestler (Id VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM wrestler ORDER BY Days_held DESC",
    "question_en": "List the names of wrestlers in descending order of days held.",
    "question_th": "รายชื่อนักมวยปล้ำเรียงตามวันที่จัดขึ้นจากมากไปหาน้อย",
    "context": "CREATE TABLE wrestler (Name VARCHAR, Days_held VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM wrestler ORDER BY Days_held LIMIT 1",
    "question_en": "What is the name of the wrestler with the fewest days held?",
    "question_th": "นักมวยปล้ำที่มีวันน้อยที่สุดชื่ออะไร?",
    "context": "CREATE TABLE wrestler (Name VARCHAR, Days_held VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT Reign FROM wrestler WHERE LOCATION <> \"Tokyo , Japan\"",
    "question_en": "What are the distinct reigns of wrestlers whose location is not \"Tokyo,Japan\" ?",
    "question_th": "อะไรคือรัชสมัยของนักมวยปล้ำที่ไม่ได้มีที่ตั้ง \"โตเกียว ประเทศญี่ปุ่น\" ที่แตกต่างกัน?",
    "context": "CREATE TABLE wrestler (Reign VARCHAR, LOCATION VARCHAR)"
  },
  {
    "answer": "SELECT Name, LOCATION FROM wrestler",
    "question_en": "What are the names and location of the wrestlers?",
    "question_th": "ชื่อและที่ตั้งของนักมวยปล้ำคืออะไร?",
    "context": "CREATE TABLE wrestler (Name VARCHAR, LOCATION VARCHAR)"
  },
  {
    "answer": "SELECT Elimination_Move FROM Elimination WHERE Team = \"Team Orton\"",
    "question_en": "What are the elimination moves of wrestlers whose team is \"Team Orton\"?",
    "question_th": "การเคลื่อนไหวแบบคัดออกของนักมวยปล้ำที่มีทีมคือ \"ทีมออร์ตัน\" คืออะไร?",
    "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_en": "What are the names of wrestlers and the elimination moves?",
    "question_th": "นักมวยปล้ำชื่ออะไรและท่าคัดออกคืออะไร?",
    "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_en": "List the names of wrestlers and the teams in elimination in descending order of days held.",
    "question_th": "รายชื่อนักมวยปล้ำและทีมที่คัดออกโดยเรียงลำดับตามวันที่จัดขึ้นจากมากไปน้อย",
    "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_en": "List the time of elimination of the wrestlers with largest days held.",
    "question_th": "ระบุเวลากำจัดนักมวยปล้ำที่มีวันจัดมากที่สุด",
    "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_en": "Show times of elimination of wrestlers with days held more than 50.",
    "question_th": "แสดงเวลาคัดนักมวยปล้ำที่มีวันจัดเกิน 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_en": "Show different teams in eliminations and the number of eliminations from each team.",
    "question_th": "แสดงทีมที่แตกต่างกันในการคัดออกและจำนวนการคัดออกของแต่ละทีม",
    "context": "CREATE TABLE elimination (Team VARCHAR)"
  },
  {
    "answer": "SELECT Team FROM elimination GROUP BY Team HAVING COUNT(*) > 3",
    "question_en": "Show teams that have suffered more than three eliminations.",
    "question_th": "แสดงทีมที่ได้รับการคัดออกมากกว่าสามครั้ง",
    "context": "CREATE TABLE elimination (Team VARCHAR)"
  },
  {
    "answer": "SELECT Reign, Days_held FROM wrestler",
    "question_en": "Show the reign and days held of wrestlers.",
    "question_th": "แสดงรัชสมัยและวันที่จัดขึ้นของนักมวยปล้ำ",
    "context": "CREATE TABLE wrestler (Reign VARCHAR, Days_held VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM wrestler WHERE Days_held < 100",
    "question_en": "What are the names of wrestlers days held less than 100?",
    "question_th": "วันนักมวยปล้ำที่จัดขึ้นไม่ถึง 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_en": "Please show the most common reigns of wrestlers.",
    "question_th": "โปรดแสดงรัชสมัยของนักมวยปล้ำที่พบบ่อยที่สุด",
    "context": "CREATE TABLE wrestler (Reign VARCHAR)"
  },
  {
    "answer": "SELECT LOCATION FROM wrestler GROUP BY LOCATION HAVING COUNT(*) > 2",
    "question_en": "List the locations that are shared by more than two wrestlers.",
    "question_th": "ระบุสถานที่ที่นักมวยปล้ำมากกว่าสองคนแชร์กัน",
    "context": "CREATE TABLE wrestler (LOCATION VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM wrestler WHERE NOT Wrestler_ID IN (SELECT Wrestler_ID FROM elimination)",
    "question_en": "List the names of wrestlers that have not been eliminated.",
    "question_th": "รายชื่อนักมวยปล้ำที่ยังไม่ถูกตัดออก",
    "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_en": "Show the teams that have both wrestlers eliminated by \"Orton\" and wrestlers eliminated by \"Benjamin\".",
    "question_th": "แสดงทีมที่มีทั้งนักมวยปล้ำตกรอบโดย \"ออร์ตัน\" และนักมวยปล้ำตกรอบโดย \"เบนจามิน\"",
    "context": "CREATE TABLE Elimination (Team VARCHAR, Eliminated_By VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT team) FROM elimination",
    "question_en": "What is the number of distinct teams that suffer elimination?",
    "question_th": "จำนวนทีมที่แตกต่างกันที่ต้องตกรอบคือเท่าใด?",
    "context": "CREATE TABLE elimination (team VARCHAR)"
  },
  {
    "answer": "SELECT TIME FROM elimination WHERE Eliminated_By = \"Punk\" OR Eliminated_By = \"Orton\"",
    "question_en": "Show the times of elimination by \"Punk\" or \"Orton\".",
    "question_th": "แสดงเวลาคัดออกด้วย \"พังค์\" หรือ \"ออร์ตัน\"",
    "context": "CREATE TABLE elimination (TIME VARCHAR, Eliminated_By VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM school",
    "question_en": "How many schools are there?",
    "question_th": "มีกี่โรงเรียน?",
    "context": "CREATE TABLE school (Id VARCHAR)"
  },
  {
    "answer": "SELECT school_name FROM school ORDER BY school_name",
    "question_en": "Show all school names in alphabetical order.",
    "question_th": "แสดงชื่อโรงเรียนทั้งหมดตามลำดับตัวอักษร",
    "context": "CREATE TABLE school (school_name VARCHAR)"
  },
  {
    "answer": "SELECT school_name, LOCATION, mascot FROM school",
    "question_en": "List the name, location, mascot for all schools.",
    "question_th": "แจ้งชื่อ ที่ตั้ง มาสคอตของทุกโรงเรียน",
    "context": "CREATE TABLE school (school_name VARCHAR, LOCATION VARCHAR, mascot VARCHAR)"
  },
  {
    "answer": "SELECT SUM(enrollment), AVG(enrollment) FROM school",
    "question_en": "What are the total and average enrollment of all schools?",
    "question_th": "จำนวนการลงทะเบียนรวมและเฉลี่ยของทุกโรงเรียนคือเท่าใด",
    "context": "CREATE TABLE school (enrollment INTEGER)"
  },
  {
    "answer": "SELECT mascot FROM school WHERE enrollment > (SELECT AVG(enrollment) FROM school)",
    "question_en": "What are the mascots for schools with enrollments above the average?",
    "question_th": "ตัวนำโชคสำหรับโรงเรียนที่มีการลงทะเบียนสูงกว่าค่าเฉลี่ยคืออะไร?",
    "context": "CREATE TABLE school (mascot VARCHAR, enrollment INTEGER)"
  },
  {
    "answer": "SELECT school_name FROM school ORDER BY enrollment LIMIT 1",
    "question_en": "List the name of the school with the smallest enrollment.",
    "question_th": "ระบุชื่อโรงเรียนที่มีการลงทะเบียนน้อยที่สุด",
    "context": "CREATE TABLE school (school_name VARCHAR, enrollment VARCHAR)"
  },
  {
    "answer": "SELECT AVG(enrollment), MAX(enrollment), MIN(enrollment) FROM school",
    "question_en": "Show the average, maximum, minimum enrollment of all schools.",
    "question_th": "แสดงการลงทะเบียนเฉลี่ย สูงสุด ขั้นต่ำของทุกโรงเรียน",
    "context": "CREATE TABLE school (enrollment INTEGER)"
  },
  {
    "answer": "SELECT county, COUNT(*), SUM(enrollment) FROM school GROUP BY county",
    "question_en": "Show each county along with the number of schools and total enrollment in each county.",
    "question_th": "แสดงแต่ละเคาน์ตีพร้อมกับจำนวนโรงเรียนและจำนวนการลงทะเบียนทั้งหมดในแต่ละเคาน์ตี",
    "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_en": "How many donors have endowment for school named \"Glenn\"?",
    "question_th": "มีผู้บริจาคเงินบริจาคให้กับโรงเรียนชื่อ \"เกลนน์\" กี่คน?",
    "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_en": "List each donator name and the amount of endowment in descending order of the amount of endowment.",
    "question_th": "ระบุชื่อผู้บริจาคแต่ละรายและจำนวนการบริจาคตามลำดับจากมากไปน้อยของจำนวนการบริจาค",
    "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_en": "List the names of the schools without any endowment.",
    "question_th": "รายชื่อโรงเรียนที่ไม่มีทุนสนับสนุนใดๆ",
    "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_en": "List all the names of schools with an endowment amount smaller than or equal to 10.",
    "question_th": "รายชื่อโรงเรียนทั้งหมดที่มีจำนวนเงินบริจาคน้อยกว่าหรือเท่ากับ 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_en": "Show the names of donors who donated to both school \"Glenn\" and \"Triton.\"",
    "question_th": "แสดงรายชื่อผู้บริจาคเงินบริจาคให้ทั้งโรงเรียน \"เกลนน์\" และ \"ไทรทัน\"",
    "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_en": "Show the names of all the donors except those whose donation amount less than 9.",
    "question_th": "แสดงรายชื่อผู้บริจาคทั้งหมด ยกเว้นผู้ที่มียอดบริจาคน้อยกว่า 9",
    "context": "CREATE TABLE endowment (donator_name VARCHAR, amount INTEGER)"
  },
  {
    "answer": "SELECT amount, donator_name FROM endowment ORDER BY amount DESC LIMIT 1",
    "question_en": "List the amount and donor name for the largest amount of donation.",
    "question_th": "ระบุจำนวนเงินและชื่อผู้บริจาคสำหรับยอดบริจาคสูงสุด",
    "context": "CREATE TABLE endowment (amount VARCHAR, donator_name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM budget WHERE budgeted > 3000 AND YEAR <= 2001",
    "question_en": "How many budgets are above 3000 in year 2001 or before?",
    "question_th": "งบประมาณที่เกิน 3000 ในปี 2544 หรือก่อนหน้านั้นมีกี่งบประมาณ",
    "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_en": "Show each school name, its budgeted amount, and invested amount in year 2002 or after.",
    "question_th": "แสดงชื่อโรงเรียน งบประมาณ และจำนวนเงินที่ลงทุนในปี พ.ศ. 2545 เป็นต้นไป",
    "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_en": "Show all donor names.",
    "question_th": "แสดงชื่อผู้บริจาคทั้งหมด",
    "context": "CREATE TABLE endowment (donator_name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM budget WHERE budgeted < invested",
    "question_en": "How many budget record has a budget amount smaller than the invested amount?",
    "question_th": "บันทึกงบประมาณจำนวนเท่าใดที่มีจำนวนงบประมาณน้อยกว่าจำนวนที่ลงทุน",
    "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_en": "What is the total budget amount for school \"Glenn\" in all years?",
    "question_th": "งบประมาณรวมของโรงเรียน \"เกลน\" ตลอดทั้งปีคือเท่าไร?",
    "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_en": "Show the names of schools with a total budget amount greater than 100 or a total endowment greater than 10.",
    "question_th": "แสดงชื่อโรงเรียนที่มีงบประมาณรวมมากกว่า 100 หรือเงินบริจาครวมมากกว่า 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_en": "Find the names of schools that have more than one donator with donation amount above 8.5.",
    "question_th": "ค้นหารายชื่อโรงเรียนที่มีผู้บริจาคมากกว่าหนึ่งรายซึ่งมียอดบริจาคมากกว่า 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_en": "Find the number of schools that have more than one donator whose donation amount is less than 8.5.",
    "question_th": "ค้นหาจำนวนโรงเรียนที่มีผู้บริจาคมากกว่าหนึ่งรายซึ่งมียอดบริจาคน้อยกว่า 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_en": "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.",
    "question_th": "ระบุชื่อ IHSAA Football Class และ Mascot ของโรงเรียนที่มีจำนวนงบประมาณมากกว่า 6,000 แห่งหรือก่อตั้งก่อนปี 2003 ตามลำดับเปอร์เซ็นต์ของงบประมาณที่ลงทุนทั้งหมดและงบประมาณงบประมาณทั้งหมด",
    "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_en": "How many buildings are there?",
    "question_th": "มีกี่อาคาร?",
    "context": "CREATE TABLE building (Id VARCHAR)"
  },
  {
    "answer": "SELECT name, street_address, floors FROM building ORDER BY floors",
    "question_en": "Show the name, street address, and number of floors for all buildings ordered by the number of floors.",
    "question_th": "แสดงชื่อ ที่อยู่ และจำนวนชั้นของอาคารทั้งหมด เรียงตามจำนวนชั้น",
    "context": "CREATE TABLE building (name VARCHAR, street_address VARCHAR, floors VARCHAR)"
  },
  {
    "answer": "SELECT name FROM building ORDER BY height_feet DESC LIMIT 1",
    "question_en": "What is the name of the tallest building?",
    "question_th": "ตึกที่สูงที่สุดชื่ออะไร?",
    "context": "CREATE TABLE building (name VARCHAR, height_feet VARCHAR)"
  },
  {
    "answer": "SELECT AVG(floors), MAX(floors), MIN(floors) FROM building",
    "question_en": "What are the average, maximum, and minimum number of floors for all buildings?",
    "question_th": "จำนวนชั้นเฉลี่ย สูงสุด และต่ำสุดของอาคารทั้งหมดคือเท่าใด",
    "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_en": "Show the number of buildings with a height above the average or a number of floors above the average.",
    "question_th": "แสดงจำนวนอาคารที่มีความสูงสูงกว่าค่าเฉลี่ยหรือจำนวนชั้นที่สูงกว่าค่าเฉลี่ย",
    "context": "CREATE TABLE building (height_feet INTEGER, floors INTEGER)"
  },
  {
    "answer": "SELECT name FROM building WHERE height_feet >= 200 AND floors >= 20",
    "question_en": "List the names of buildings with at least 200 feet of height and with at least 20 floors.",
    "question_th": "ระบุชื่ออาคารที่มีความสูงอย่างน้อย 200 ฟุตและมีชั้นอย่างน้อย 20 ชั้น",
    "context": "CREATE TABLE building (name VARCHAR, height_feet VARCHAR, floors VARCHAR)"
  },
  {
    "answer": "SELECT institution, LOCATION FROM institution WHERE founded > 1990 AND TYPE = 'Private'",
    "question_en": "Show the names and locations of institutions that are founded after 1990 and have the type \"Private\".",
    "question_th": "แสดงชื่อและที่ตั้งของสถาบันที่ก่อตั้งหลังปี 2533 และมีประเภทเป็น \"เอกชน\"",
    "context": "CREATE TABLE institution (institution VARCHAR, LOCATION VARCHAR, founded VARCHAR, TYPE VARCHAR)"
  },
  {
    "answer": "SELECT TYPE, COUNT(*), SUM(enrollment) FROM institution GROUP BY TYPE",
    "question_en": "Show institution types, along with the number of institutions and total enrollment for each type.",
    "question_th": "แสดงประเภทสถาบัน พร้อมด้วยจำนวนสถาบันและการลงทะเบียนทั้งหมดสำหรับแต่ละประเภท",
    "context": "CREATE TABLE institution (TYPE VARCHAR, enrollment INTEGER)"
  },
  {
    "answer": "SELECT TYPE FROM institution GROUP BY TYPE ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "Show the institution type with the largest number of institutions.",
    "question_th": "แสดงประเภทสถาบันที่มีจำนวนสถาบันมากที่สุด",
    "context": "CREATE TABLE institution (TYPE VARCHAR)"
  },
  {
    "answer": "SELECT TYPE FROM institution WHERE founded > 1990 AND enrollment >= 1000",
    "question_en": "Show the institution type with an institution founded after 1990 and an institution with at least 1000 enrollment.",
    "question_th": "แสดงประเภทสถาบันโดยระบุสถาบันที่ก่อตั้งหลังปี 1990 และสถาบันที่มีผู้ลงทะเบียนอย่างน้อย 1,000 คน",
    "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_en": "Show the name of buildings that do not have any institution.",
    "question_th": "แสดงชื่ออาคารที่ไม่มีสถาบันใดๆ",
    "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_en": "Show the names of buildings except for those having an institution founded in 2003.",
    "question_th": "แสดงชื่ออาคาร ยกเว้นอาคารที่มีสถาบันก่อตั้งเมื่อ พ.ศ. 2546",
    "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_en": "For each building, show the name of the building and the number of institutions in it.",
    "question_th": "สำหรับแต่ละอาคาร ให้แสดงชื่ออาคารและจำนวนสถาบันที่อยู่ในนั้น",
    "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_en": "Show the names and heights of buildings with at least two institutions founded after 1880.",
    "question_th": "แสดงชื่อและความสูงของอาคารที่มีสถาบันอย่างน้อย 2 แห่งที่ก่อตั้งหลังปี 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_en": "Show all the distinct institution types.",
    "question_th": "แสดงประเภทสถาบันที่แตกต่างกันทั้งหมด",
    "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_en": "Show institution names along with the number of proteins for each institution.",
    "question_th": "แสดงชื่อสถาบันพร้อมจำนวนโปรตีนของแต่ละสถาบัน",
    "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_en": "How many proteins are associated with an institution founded after 1880 or an institution with type \"Private\"?",
    "question_th": "มีโปรตีนจำนวนเท่าใดที่เกี่ยวข้องกับสถาบันที่ก่อตั้งหลังปี 1880 หรือสถาบันประเภท \"เอกชน\"",
    "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_en": "Show the protein name and the institution name.",
    "question_th": "แสดงชื่อโปรตีนและชื่อสถาบัน",
    "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_en": "How many proteins are associated with an institution in a building with at least 20 floors?",
    "question_th": "อาคารที่มีความสูงอย่างน้อย 20 ชั้นมีโปรตีนกี่ตัวที่เกี่ยวข้องกับสถาบันหนึ่งๆ",
    "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_en": "How many institutions do not have an associated protein in our record?",
    "question_th": "มีกี่สถาบันที่ไม่มีโปรตีนที่เกี่ยวข้องในบันทึกของเรา",
    "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_en": "Show all the locations where no cinema has capacity over 800.",
    "question_th": "แสดงสถานที่ทั้งหมดที่ไม่มีโรงภาพยนตร์ความจุเกิน 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_en": "Show all the locations where some cinemas were opened in both year 2010 and year 2011.",
    "question_th": "แสดงสถานที่ทั้งหมดที่โรงภาพยนตร์บางแห่งเปิดทำการในปี 2553 และปี 2554",
    "context": "CREATE TABLE cinema (LOCATION VARCHAR, openning_year VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM cinema",
    "question_en": "How many cinema do we have?",
    "question_th": "เรามีโรงภาพยนตร์กี่โรง?",
    "context": "CREATE TABLE cinema (Id VARCHAR)"
  },
  {
    "answer": "SELECT name, openning_year, capacity FROM cinema",
    "question_en": "Show name, opening year, and capacity for each cinema.",
    "question_th": "ชื่อการแสดง ปีที่เปิดให้บริการ และความจุของโรงภาพยนตร์แต่ละแห่ง",
    "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_en": "Show the cinema name and location for cinemas with capacity above average.",
    "question_th": "แสดงชื่อโรงภาพยนตร์และที่ตั้งของโรงภาพยนตร์ที่มีความจุสูงกว่าค่าเฉลี่ย",
    "context": "CREATE TABLE cinema (name VARCHAR, LOCATION VARCHAR, capacity INTEGER)"
  },
  {
    "answer": "SELECT DISTINCT LOCATION FROM cinema",
    "question_en": "What are all the locations with a cinema?",
    "question_th": "สถานที่ทั้งหมดที่มีโรงภาพยนตร์มีอะไรบ้าง?",
    "context": "CREATE TABLE cinema (LOCATION VARCHAR)"
  },
  {
    "answer": "SELECT name, openning_year FROM cinema ORDER BY openning_year DESC",
    "question_en": "Show all the cinema names and opening years in descending order of opening year.",
    "question_th": "แสดงชื่อโรงภาพยนตร์ทั้งหมดและปีที่เปิดทำการตามลำดับปีเปิดจากมากไปหาน้อย",
    "context": "CREATE TABLE cinema (name VARCHAR, openning_year VARCHAR)"
  },
  {
    "answer": "SELECT name, LOCATION FROM cinema ORDER BY capacity DESC LIMIT 1",
    "question_en": "What are the name and location of the cinema with the largest capacity?",
    "question_th": "ชื่อและที่ตั้งของโรงภาพยนตร์ที่มีความจุมากที่สุดคือที่ใด?",
    "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_en": "Show the average, minimum, and maximum capacity for all the cinemas opened in year 2011 or later.",
    "question_th": "แสดงความจุเฉลี่ย ขั้นต่ำ และสูงสุดสำหรับโรงภาพยนตร์ทุกแห่งที่เปิดในปี 2011 หรือหลังจากนั้น",
    "context": "CREATE TABLE cinema (capacity INTEGER, openning_year VARCHAR)"
  },
  {
    "answer": "SELECT LOCATION, COUNT(*) FROM cinema GROUP BY LOCATION",
    "question_en": "Show each location and the number of cinemas there.",
    "question_th": "แสดงสถานที่แต่ละแห่งและจำนวนโรงภาพยนตร์ที่นั่น",
    "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_en": "What is the location with the most cinemas opened in year 2010 or later?",
    "question_th": "สถานที่ใดที่มีโรงภาพยนตร์เปิดมากที่สุดในปี 2010 หรือหลังจากนั้นคือที่ใด",
    "context": "CREATE TABLE cinema (LOCATION VARCHAR, openning_year VARCHAR)"
  },
  {
    "answer": "SELECT LOCATION FROM cinema WHERE capacity > 300 GROUP BY LOCATION HAVING COUNT(*) >= 2",
    "question_en": "Show all the locations with at least two cinemas with capacity above 300.",
    "question_th": "แสดงสถานที่ทั้งหมดที่มีโรงภาพยนตร์อย่างน้อยสองแห่งซึ่งมีความจุมากกว่า 300 แห่ง",
    "context": "CREATE TABLE cinema (LOCATION VARCHAR, capacity INTEGER)"
  },
  {
    "answer": "SELECT title, directed_by FROM film",
    "question_en": "Show the title and director for all films.",
    "question_th": "แสดงชื่อและผู้กำกับภาพยนตร์ทุกเรื่อง",
    "context": "CREATE TABLE film (title VARCHAR, directed_by VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT directed_by FROM film",
    "question_en": "Show all directors.",
    "question_th": "แสดงกรรมการทั้งหมด",
    "context": "CREATE TABLE film (directed_by VARCHAR)"
  },
  {
    "answer": "SELECT directed_by, COUNT(*) FROM film GROUP BY directed_by",
    "question_en": "List all directors along with the number of films directed by each director.",
    "question_th": "รายชื่อผู้กำกับทั้งหมดพร้อมจำนวนภาพยนตร์ที่ผู้กำกับแต่ละคนกำกับ",
    "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_en": "What is total number of show times per dat for each cinema?",
    "question_th": "จำนวนรอบการแสดงทั้งหมดต่อวันสำหรับโรงภาพยนตร์แต่ละแห่งคือเท่าใด",
    "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_en": "What are the title and maximum price of each film?",
    "question_th": "หนังแต่ละเรื่องชื่อเรื่องและราคาสูงสุดเท่าไหร่?",
    "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_en": "Show cinema name, film title, date, and price for each record in schedule.",
    "question_th": "แสดงชื่อภาพยนตร์ ชื่อภาพยนตร์ วันที่ และราคาสำหรับแต่ละบันทึกในกำหนดการ",
    "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_en": "What are the title and director of the films without any schedule?",
    "question_th": "ชื่อเรื่องและผู้กำกับของภาพยนตร์ที่ไม่มีกำหนดคืออะไร?",
    "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_en": "Show director with the largest number of show times in total.",
    "question_th": "ผู้กำกับการแสดงที่มีจำนวนรอบการแสดงมากที่สุด",
    "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_en": "Find the locations that have more than one movie theater with capacity above 300.",
    "question_th": "ค้นหาสถานที่ที่มีโรงภาพยนตร์มากกว่าหนึ่งแห่งซึ่งมีความจุมากกว่า 300 แห่ง",
    "context": "CREATE TABLE cinema (LOCATION VARCHAR, capacity INTEGER)"
  },
  {
    "answer": "SELECT COUNT(*) FROM film WHERE title LIKE \"%Dummy%\"",
    "question_en": "How many films have the word 'Dummy' in their titles?",
    "question_th": "มีภาพยนตร์กี่เรื่องที่มีคำว่า 'Dummy' ในชื่อ?",
    "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_en": "Are the customers holding coupons with amount 500 bad or good?",
    "question_th": "ลูกค้าที่ถือคูปองมูลค่า 500 เสียหรือดี?",
    "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_en": "How many bookings did each customer make? List the customer id, first name, and the count.",
    "question_th": "ลูกค้าแต่ละรายจองไว้กี่ราย? ระบุรหัสลูกค้า ชื่อ และจำนวน",
    "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_en": "What is the maximum total amount paid by a customer? List the customer id and amount.",
    "question_th": "จำนวนเงินสูงสุดที่ลูกค้าชำระคือเท่าใด? ระบุรหัสลูกค้าและจำนวนเงิน",
    "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_en": "What are the id and the amount of refund of the booking that incurred the most times of payments?",
    "question_th": "หมายเลขประจำตัวและจำนวนเงินคืนของการจองที่เกิดขึ้นบ่อยที่สุดในการชำระเงินคือเท่าใด",
    "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_en": "What is the id of the product that is booked for 3 times?",
    "question_th": "รหัสสินค้าที่จอง 3 ครั้ง คืออะไร?",
    "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_en": "What is the product description of the product booked with an amount of 102.76?",
    "question_th": "รายละเอียดสินค้าสินค้าที่จองจำนวน 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_en": "What are the start date and end date of the booking that has booked the product named 'Book collection A'?",
    "question_th": "วันที่เริ่มต้นและวันที่สิ้นสุดของการจองที่ได้จองผลิตภัณฑ์ชื่อ '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_en": "What are the names of products whose availability equals to 1?",
    "question_th": "ชื่อของผลิตภัณฑ์ที่มีความพร้อมเท่ากับ 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_en": "How many different product types are there?",
    "question_th": "สินค้ามีกี่ประเภท?",
    "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_en": "What are the first name, last name, and gender of all the good customers? Order by their last name.",
    "question_th": "ชื่อ นามสกุล และเพศของลูกค้าที่ดีทั้งหมดคืออะไร? เรียงตามนามสกุลครับ.",
    "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_en": "What is the average amount due for all the payments?",
    "question_th": "จำนวนเงินเฉลี่ยที่ต้องชำระสำหรับการชำระเงินทั้งหมดคือเท่าไร?",
    "context": "CREATE TABLE payments (amount_due INTEGER)"
  },
  {
    "answer": "SELECT MAX(booked_count), MIN(booked_count), AVG(booked_count) FROM products_booked",
    "question_en": "What are the maximum, minimum, and average booked count for the products booked?",
    "question_th": "จำนวนการจองสูงสุด ขั้นต่ำ และเฉลี่ยสำหรับผลิตภัณฑ์ที่จองคือเท่าใด",
    "context": "CREATE TABLE products_booked (booked_count INTEGER)"
  },
  {
    "answer": "SELECT DISTINCT payment_type_code FROM payments",
    "question_en": "What are all the distinct payment types?",
    "question_th": "ประเภทการชำระเงินที่แตกต่างกันทั้งหมดมีอะไรบ้าง?",
    "context": "CREATE TABLE payments (payment_type_code VARCHAR)"
  },
  {
    "answer": "SELECT daily_hire_cost FROM Products_for_hire WHERE product_name LIKE '%Book%'",
    "question_en": "What are the daily hire costs for the products with substring 'Book' in its name?",
    "question_th": "ค่าเช่ารายวันสำหรับผลิตภัณฑ์ที่มีสตริงย่อย 'Book' อยู่ในชื่อคือเท่าใด",
    "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_en": "How many products are never booked with amount higher than 200?",
    "question_th": "มีสินค้าจำนวนเท่าใดที่ไม่เคยจองด้วยจำนวนที่สูงกว่า 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_en": "What are the coupon amount of the coupons owned by both good and bad customers?",
    "question_th": "จำนวนคูปองของคูปองที่เป็นของลูกค้าทั้งดีและไม่ดีคือเท่าใด",
    "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_en": "What are the payment date of the payment with amount paid higher than 300 or with payment type is 'Check'",
    "question_th": "วันที่ชำระเงินคือวันที่ชำระเงินที่มียอดชำระมากกว่า 300 หรือประเภทการชำระเงินคือ 'เช็ค'",
    "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_en": "What are the names and descriptions of the products that are of 'Cutlery' type and have daily hire cost lower than 20?",
    "question_th": "สินค้าประเภท 'Cutlery' มีชื่อและคำอธิบายอย่างไร และมีต้นทุนค่าเช่ารายวันต่ำกว่า 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_en": "How many phones are there?",
    "question_th": "มีโทรศัพท์กี่เครื่อง?",
    "context": "CREATE TABLE phone (Id VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM phone ORDER BY Price",
    "question_en": "List the names of phones in ascending order of price.",
    "question_th": "รายชื่อโทรศัพท์ตามลำดับราคาจากน้อยไปหามาก",
    "context": "CREATE TABLE phone (Name VARCHAR, Price VARCHAR)"
  },
  {
    "answer": "SELECT Memory_in_G, Carrier FROM phone",
    "question_en": "What are the memories and carriers of phones?",
    "question_th": "ความทรงจำและผู้ให้บริการโทรศัพท์คืออะไร?",
    "context": "CREATE TABLE phone (Memory_in_G VARCHAR, Carrier VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT Carrier FROM phone WHERE Memory_in_G > 32",
    "question_en": "List the distinct carriers of phones with memories bigger than 32.",
    "question_th": "รายชื่อผู้ให้บริการโทรศัพท์ที่มีหน่วยความจำมากกว่า 32",
    "context": "CREATE TABLE phone (Carrier VARCHAR, Memory_in_G INTEGER)"
  },
  {
    "answer": "SELECT Name FROM phone WHERE Carrier = \"Sprint\" OR Carrier = \"TMobile\"",
    "question_en": "Show the names of phones with carrier either \"Sprint\" or \"TMobile\".",
    "question_th": "แสดงชื่อโทรศัพท์กับผู้ให้บริการทั้ง \"Sprint\" หรือ \"TMobile\"",
    "context": "CREATE TABLE phone (Name VARCHAR, Carrier VARCHAR)"
  },
  {
    "answer": "SELECT Carrier FROM phone ORDER BY Price DESC LIMIT 1",
    "question_en": "What is the carrier of the most expensive phone?",
    "question_th": "ผู้ให้บริการโทรศัพท์ที่แพงที่สุดคืออะไร?",
    "context": "CREATE TABLE phone (Carrier VARCHAR, Price VARCHAR)"
  },
  {
    "answer": "SELECT Carrier, COUNT(*) FROM phone GROUP BY Carrier",
    "question_en": "Show different carriers of phones together with the number of phones with each carrier.",
    "question_th": "แสดงโทรศัพท์ของผู้ให้บริการรายต่างๆ พร้อมจำนวนโทรศัพท์ของผู้ให้บริการแต่ละราย",
    "context": "CREATE TABLE phone (Carrier VARCHAR)"
  },
  {
    "answer": "SELECT Carrier FROM phone GROUP BY Carrier ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "Show the most frequently used carrier of the phones.",
    "question_th": "แสดงผู้ให้บริการโทรศัพท์ที่ใช้บ่อยที่สุด",
    "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_en": "Show the carriers that have both phones with memory smaller than 32 and phones with memory bigger than 64.",
    "question_th": "แสดงผู้ให้บริการที่มีโทรศัพท์ทั้งสองเครื่องที่มีหน่วยความจำน้อยกว่า 32 และโทรศัพท์ที่มีหน่วยความจำใหญ่กว่า 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_en": "Show the names of phones and the districts of markets they are on.",
    "question_th": "แสดงชื่อโทรศัพท์และเขตตลาดที่เปิดอยู่",
    "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_en": "Show the names of phones and the districts of markets they are on, in ascending order of the ranking of the market.",
    "question_th": "แสดงชื่อโทรศัพท์และเขตของตลาดที่เปิดอยู่ โดยเรียงลำดับจากน้อยไปหามากในการจัดอันดับตลาด",
    "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_en": "Show the names of phones that are on market with number of shops greater than 50.",
    "question_th": "แสดงชื่อโทรศัพท์ที่อยู่ในตลาดพร้อมจำนวนร้านค้ามากกว่า 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_en": "For each phone, show its names and total number of stocks.",
    "question_th": "สำหรับโทรศัพท์แต่ละเครื่อง ให้แสดงชื่อ และจำนวนหุ้นทั้งหมด",
    "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_en": "Show the names of phones that have total number of stocks bigger than 2000, in descending order of the total number of stocks.",
    "question_th": "แสดงชื่อโทรศัพท์ที่มีจำนวนสต็อกมากกว่า 2,000 รายการ โดยเรียงจากมากไปน้อยของจำนวนสต็อกทั้งหมด",
    "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_en": "List the names of phones that are not on any market.",
    "question_th": "รายชื่อโทรศัพท์ที่ไม่มีอยู่ในตลาดใดๆ",
    "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_en": "How many gas companies are there?",
    "question_th": "มีบริษัทก๊าซกี่แห่ง?",
    "context": "CREATE TABLE company (Id VARCHAR)"
  },
  {
    "answer": "SELECT company, rank FROM company ORDER BY Sales_billion DESC",
    "question_en": "List the company name and rank for all companies in the decreasing order of their sales.",
    "question_th": "ระบุชื่อบริษัทและอันดับของบริษัททั้งหมดโดยเรียงตามยอดขายลดลง",
    "context": "CREATE TABLE company (company VARCHAR, rank VARCHAR, Sales_billion VARCHAR)"
  },
  {
    "answer": "SELECT company, main_industry FROM company WHERE headquarters <> 'USA'",
    "question_en": "Show the company name and the main industry for all companies whose headquarters are not from USA.",
    "question_th": "แสดงชื่อบริษัทและอุตสาหกรรมหลักสำหรับทุกบริษัทที่มีสำนักงานใหญ่ไม่ได้มาจากสหรัฐอเมริกา",
    "context": "CREATE TABLE company (company VARCHAR, main_industry VARCHAR, headquarters VARCHAR)"
  },
  {
    "answer": "SELECT company, headquarters FROM company ORDER BY market_value DESC",
    "question_en": "Show all company names and headquarters in the descending order of market value.",
    "question_th": "แสดงชื่อบริษัทและสำนักงานใหญ่ทั้งหมดโดยเรียงตามมูลค่าตลาดจากมากไปหาน้อย",
    "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_en": "Show minimum, maximum, and average market value for all companies.",
    "question_th": "แสดงมูลค่าตลาดขั้นต่ำ สูงสุด และเฉลี่ยสำหรับทุกบริษัท",
    "context": "CREATE TABLE company (market_value INTEGER)"
  },
  {
    "answer": "SELECT DISTINCT main_industry FROM company",
    "question_en": "Show all main industry for all companies.",
    "question_th": "แสดงอุตสาหกรรมหลักทั้งหมดสำหรับทุกบริษัท",
    "context": "CREATE TABLE company (main_industry VARCHAR)"
  },
  {
    "answer": "SELECT headquarters, COUNT(*) FROM company GROUP BY headquarters",
    "question_en": "List all headquarters and the number of companies in each headquarter.",
    "question_th": "ระบุสำนักงานใหญ่ทั้งหมดและจำนวนบริษัทในแต่ละสำนักงานใหญ่",
    "context": "CREATE TABLE company (headquarters VARCHAR)"
  },
  {
    "answer": "SELECT main_industry, SUM(market_value) FROM company GROUP BY main_industry",
    "question_en": "Show all main industry and total market value in each industry.",
    "question_th": "แสดงอุตสาหกรรมหลักทั้งหมดและมูลค่าตลาดรวมในแต่ละอุตสาหกรรม",
    "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_en": "List the main industry with highest total market value and its number of companies.",
    "question_th": "แสดงรายการอุตสาหกรรมหลักที่มีมูลค่าตลาดรวมสูงสุดและจำนวนบริษัท",
    "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_en": "Show headquarters with at least two companies in the banking industry.",
    "question_th": "แสดงสำนักงานใหญ่ที่มีอย่างน้อยสองบริษัทในอุตสาหกรรมการธนาคาร",
    "context": "CREATE TABLE company (headquarters VARCHAR, main_industry VARCHAR)"
  },
  {
    "answer": "SELECT station_id, LOCATION, manager_name FROM gas_station ORDER BY open_year",
    "question_en": "Show gas station id, location, and manager_name for all gas stations ordered by open year.",
    "question_th": "แสดงรหัสปั๊มน้ำมัน ที่ตั้ง และชื่อผู้จัดการสำหรับปั๊มน้ำมันทั้งหมดเรียงตามปีที่เปิด",
    "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_en": "How many gas station are opened between 2000 and 2005?",
    "question_th": "ระหว่างปี 2543 ถึง 2548 มีปั๊มน้ำมันเปิดกี่แห่ง",
    "context": "CREATE TABLE gas_station (open_year INTEGER)"
  },
  {
    "answer": "SELECT LOCATION, COUNT(*) FROM gas_station GROUP BY LOCATION ORDER BY COUNT(*)",
    "question_en": "Show all locations and the number of gas stations in each location ordered by the count.",
    "question_th": "แสดงสถานที่ทั้งหมดและจำนวนปั๊มน้ำมันในแต่ละสถานที่โดยเรียงลำดับตามการนับ",
    "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_en": "Show all headquarters with both a company in banking industry and a company in Oil and gas.",
    "question_th": "แสดงสำนักงานใหญ่ทั้งหมดที่มีทั้งบริษัทในอุตสาหกรรมการธนาคารและบริษัทในอุตสาหกรรมน้ำมันและก๊าซ",
    "context": "CREATE TABLE company (headquarters VARCHAR, main_industry VARCHAR)"
  },
  {
    "answer": "SELECT headquarters FROM company EXCEPT SELECT headquarters FROM company WHERE main_industry = 'Banking'",
    "question_en": "Show all headquarters without a company in banking industry.",
    "question_th": "แสดงสำนักงานใหญ่ทั้งหมดที่ไม่มีบริษัทในอุตสาหกรรมธนาคาร",
    "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_en": "Show the company name with the number of gas station.",
    "question_th": "แสดงชื่อบริษัทพร้อมหมายเลขปั๊มน้ำมัน",
    "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_en": "Show company name and main industry without a gas station.",
    "question_th": "แสดงชื่อบริษัทและอุตสาหกรรมหลักโดยไม่มีปั๊มน้ำมัน",
    "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_en": "Show the manager name for gas stations belonging to the ExxonMobil company.",
    "question_th": "แสดงชื่อผู้จัดการปั๊มน้ำมันของบริษัทเอ็กซอนโมบิล",
    "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_en": "Show all locations where a gas station for company with market value greater than 100 is located.",
    "question_th": "แสดงสถานที่ทั้งหมดที่มีปั๊มน้ำมันของบริษัทที่มีมูลค่าตลาดมากกว่า 100 ตั้งอยู่",
    "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_en": "Show the manager name with most number of gas stations opened after 2000.",
    "question_th": "แสดงชื่อผู้จัดการโดยมีจำนวนปั๊มน้ำมันที่เปิดมากที่สุดหลังปี 2543",
    "context": "CREATE TABLE gas_station (manager_name VARCHAR, open_year INTEGER)"
  },
  {
    "answer": "SELECT LOCATION FROM gas_station ORDER BY open_year",
    "question_en": "order all gas station locations by the opening year.",
    "question_th": "สั่งซื้อที่ตั้งปั๊มน้ำมันทั้งหมดภายในปีเปิดทำการ",
    "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_en": "find the rank, company names, market values of the companies in the banking industry order by their sales and profits in billion.",
    "question_th": "ค้นหาอันดับ ชื่อบริษัท มูลค่าตลาดของบริษัทในอุตสาหกรรมการธนาคาร เรียงลำดับจากยอดขายและกำไรเป็นพันล้าน",
    "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_en": "find the location and Representative name of the gas stations owned by the companies with top 3 Asset amounts.",
    "question_th": "ค้นหาที่ตั้งและชื่อตัวแทนของปั๊มน้ำมันที่บริษัทเป็นเจ้าของซึ่งมีปริมาณสินทรัพย์ 3 อันดับแรก",
    "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_en": "How many regions do we have?",
    "question_th": "เรามีกี่ภูมิภาค?",
    "context": "CREATE TABLE region (Id VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT region_name FROM region ORDER BY Label",
    "question_en": "Show all distinct region names ordered by their labels.",
    "question_th": "แสดงชื่อภูมิภาคที่แตกต่างกันทั้งหมดโดยเรียงลำดับตามป้ายกำกับ",
    "context": "CREATE TABLE region (region_name VARCHAR, Label VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT party_name) FROM party",
    "question_en": "How many parties do we have?",
    "question_th": "เรามีปาร์ตี้กี่พรรค?",
    "context": "CREATE TABLE party (party_name VARCHAR)"
  },
  {
    "answer": "SELECT minister, took_office, left_office FROM party ORDER BY left_office",
    "question_en": "Show the ministers and the time they took and left office, listed by the time they left office.",
    "question_th": "แสดงรัฐมนตรีและเวลาที่เข้ารับตำแหน่งและออกจากตำแหน่ง แสดงรายการตามเวลาที่พวกเขาออกจากตำแหน่ง",
    "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_en": "Show the minister who took office after 1961 or before 1959.",
    "question_th": "แสดงรัฐมนตรีที่เข้ารับตำแหน่งหลังปี 1961 หรือก่อนปี 1959",
    "context": "CREATE TABLE party (minister VARCHAR, took_office VARCHAR)"
  },
  {
    "answer": "SELECT minister FROM party WHERE party_name <> 'Progress Party'",
    "question_en": "Show all ministers who do not belong to Progress Party.",
    "question_th": "แสดงรัฐมนตรีทุกคนที่ไม่ได้อยู่ในพรรคก้าวหน้า",
    "context": "CREATE TABLE party (minister VARCHAR, party_name VARCHAR)"
  },
  {
    "answer": "SELECT minister, party_name FROM party ORDER BY took_office DESC",
    "question_en": "Show all ministers and parties they belong to in descending order of the time they took office.",
    "question_th": "แสดงรัฐมนตรีและพรรคการเมืองทั้งหมดที่พวกเขาเป็นสมาชิกโดยเรียงตามลำดับเวลาที่พวกเขาเข้ารับตำแหน่งจากมากไปหาน้อย",
    "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_en": "Return the minister who left office at the latest time.",
    "question_th": "คืนรัฐมนตรีที่ออกจากตำแหน่งครั้งล่าสุด",
    "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_en": "List member names and their party names.",
    "question_th": "รายชื่อสมาชิกและชื่อพรรคของพวกเขา",
    "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_en": "Show all party names and the number of members in each party.",
    "question_th": "แสดงชื่อปาร์ตี้ทั้งหมดและจำนวนสมาชิกในแต่ละปาร์ตี้",
    "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_en": "What is the name of party with most number of members?",
    "question_th": "พรรคที่มีสมาชิกมากที่สุดชื่ออะไร",
    "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_en": "Show all party names and their region names.",
    "question_th": "แสดงชื่อปาร์ตี้ทั้งหมดและชื่อภูมิภาค",
    "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_en": "Show names of parties that does not have any members.",
    "question_th": "แสดงชื่อพรรคที่ไม่มีสมาชิก",
    "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_en": "Show the member names which are in both the party with id 3 and the party with id 1.",
    "question_th": "แสดงชื่อสมาชิกที่อยู่ทั้งฝ่ายที่มี ID 3 และฝ่ายที่มี 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_en": "Show member names that are not in the Progress Party.",
    "question_th": "แสดงชื่อสมาชิกที่ไม่อยู่ในพรรคก้าวหน้า",
    "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_en": "How many party events do we have?",
    "question_th": "เรามีงานปาร์ตี้กี่งาน?",
    "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_en": "Show party names and the number of events for each party.",
    "question_th": "แสดงชื่อปาร์ตี้และจำนวนกิจกรรมของแต่ละฝ่าย",
    "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_en": "Show all member names who are not in charge of any event.",
    "question_th": "แสดงชื่อสมาชิกทุกคนที่ไม่ได้รับผิดชอบงานใดๆ",
    "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_en": "What are the names of parties with at least 2 events?",
    "question_th": "ฝ่ายที่มีกิจกรรมอย่างน้อย 2 รายการชื่ออะไร",
    "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_en": "What is the name of member in charge of greatest number of events?",
    "question_th": "สมาชิกที่รับผิดชอบกิจกรรมจำนวนมากที่สุดชื่ออะไร?",
    "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_en": "find the event names that have more than 2 records.",
    "question_th": "ค้นหาชื่อเหตุการณ์ที่มีมากกว่า 2 เรคคอร์ด",
    "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_en": "How many Annual Meeting events happened in the United Kingdom region?",
    "question_th": "มีกิจกรรมการประชุมประจำปีเกิดขึ้นในภูมิภาคสหราชอาณาจักรกี่ครั้ง",
    "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_en": "How many pilots are there?",
    "question_th": "มีนักบินกี่คน?",
    "context": "CREATE TABLE pilot (Id VARCHAR)"
  },
  {
    "answer": "SELECT Pilot_name FROM pilot ORDER BY Rank",
    "question_en": "List the names of pilots in ascending order of rank.",
    "question_th": "รายชื่อนักบินเรียงตามลำดับยศ",
    "context": "CREATE TABLE pilot (Pilot_name VARCHAR, Rank VARCHAR)"
  },
  {
    "answer": "SELECT POSITION, Team FROM pilot",
    "question_en": "What are the positions and teams of pilots?",
    "question_th": "นักบินมีตำแหน่งและทีมอะไรบ้าง?",
    "context": "CREATE TABLE pilot (POSITION VARCHAR, Team VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT POSITION FROM pilot WHERE Age > 30",
    "question_en": "List the distinct positions of pilots older than 30.",
    "question_th": "รายชื่อตำแหน่งนักบินที่มีอายุมากกว่า 30 ปี",
    "context": "CREATE TABLE pilot (POSITION VARCHAR, Age INTEGER)"
  },
  {
    "answer": "SELECT Pilot_name FROM pilot WHERE Team = \"Bradley\" OR Team = \"Fordham\"",
    "question_en": "Show the names of pilots from team \"Bradley\" or \"Fordham\".",
    "question_th": "แสดงชื่อนักบินจากทีม \"แบรดลีย์\" หรือ \"ฟอร์ดแฮม\"",
    "context": "CREATE TABLE pilot (Pilot_name VARCHAR, Team VARCHAR)"
  },
  {
    "answer": "SELECT Join_Year FROM pilot ORDER BY Rank LIMIT 1",
    "question_en": "What is the joined year of the pilot of the highest rank?",
    "question_th": "นักบินที่มีตำแหน่งสูงสุดเข้าร่วมในปีใด?",
    "context": "CREATE TABLE pilot (Join_Year VARCHAR, Rank VARCHAR)"
  },
  {
    "answer": "SELECT Nationality, COUNT(*) FROM pilot GROUP BY Nationality",
    "question_en": "What are the different nationalities of pilots? Show each nationality and the number of pilots of each nationality.",
    "question_th": "นักบินมีสัญชาติอะไรบ้าง? แสดงแต่ละสัญชาติและจำนวนนักบินแต่ละสัญชาติ",
    "context": "CREATE TABLE pilot (Nationality VARCHAR)"
  },
  {
    "answer": "SELECT Nationality FROM pilot GROUP BY Nationality ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "Show the most common nationality of pilots.",
    "question_th": "แสดงสัญชาติของนักบินที่พบบ่อยที่สุด",
    "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_en": "Show the pilot positions that have both pilots joining after year 2005 and pilots joining before 2000.",
    "question_th": "แสดงตำแหน่งนักบินที่มีนักบินทั้งสองเข้าร่วมหลังปี 2548 และนักบินเข้าร่วมก่อนปี 2543",
    "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_en": "Show the names of pilots and models of aircrafts they have flied with.",
    "question_th": "แสดงชื่อนักบินและรุ่นเครื่องบินที่พวกเขาบินด้วย",
    "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_en": "Show the names of pilots and fleet series of the aircrafts they have flied with in ascending order of the rank of the pilot.",
    "question_th": "แสดงชื่อนักบินและลำดับฝูงบินของเครื่องบินที่พวกเขาใช้บินโดยเรียงลำดับจากน้อยไปหามากของนักบิน",
    "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_en": "Show the fleet series of the aircrafts flied by pilots younger than 34",
    "question_th": "แสดงชุดฝูงบินของเครื่องบินที่บินโดยนักบินอายุน้อยกว่า 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_en": "Show the names of pilots and the number of records they have.",
    "question_th": "แสดงชื่อนักบินและจำนวนบันทึกที่มี",
    "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_en": "Show names of pilots that have more than one record.",
    "question_th": "แสดงชื่อนักบินที่มีมากกว่าหนึ่งรายการ",
    "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_en": "List the names of pilots that do not have any record.",
    "question_th": "รายชื่อนักบินที่ไม่มีประวัติ",
    "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_en": "What document status codes do we have?",
    "question_th": "เรามีรหัสสถานะเอกสารอะไรบ้าง?",
    "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_en": "What is the description of document status code 'working'?",
    "question_th": "คำอธิบายรหัสสถานะเอกสาร 'ใช้งานได้' คืออะไร?",
    "context": "CREATE TABLE Ref_Document_Status (document_status_description VARCHAR, document_status_code VARCHAR)"
  },
  {
    "answer": "SELECT document_type_code FROM Ref_Document_Types",
    "question_en": "What document type codes do we have?",
    "question_th": "เรามีรหัสประเภทเอกสารอะไรบ้าง?",
    "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_en": "What is the description of document type 'Paper'?",
    "question_th": "เอกสารประเภท 'กระดาษ' มีลักษณะอย่างไร?",
    "context": "CREATE TABLE Ref_Document_Types (document_type_description VARCHAR, document_type_code VARCHAR)"
  },
  {
    "answer": "SELECT shipping_agent_name FROM Ref_Shipping_Agents",
    "question_en": "What are the shipping agent names?",
    "question_th": "ชื่อตัวแทนจัดส่งคืออะไร?",
    "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_en": "What is the shipping agent code of shipping agent UPS?",
    "question_th": "รหัสตัวแทนจัดส่งของตัวแทนจัดส่ง UPS คืออะไร",
    "context": "CREATE TABLE Ref_Shipping_Agents (shipping_agent_code VARCHAR, shipping_agent_name VARCHAR)"
  },
  {
    "answer": "SELECT role_code FROM ROLES",
    "question_en": "What are all role codes?",
    "question_th": "รหัสบทบาททั้งหมดคืออะไร?",
    "context": "CREATE TABLE ROLES (role_code VARCHAR)"
  },
  {
    "answer": "SELECT role_description FROM ROLES WHERE role_code = \"ED\"",
    "question_en": "What is the description of role code ED?",
    "question_th": "คำอธิบายของรหัสบทบาท ED คืออะไร?",
    "context": "CREATE TABLE ROLES (role_description VARCHAR, role_code VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Employees",
    "question_en": "How many employees do we have?",
    "question_th": "เรามีพนักงานกี่คน?",
    "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_en": "What is the role of the employee named Koby?",
    "question_th": "พนักงานชื่อโคบี้มีหน้าที่อะไร?",
    "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_en": "List all document ids and receipt dates of documents.",
    "question_th": "แสดงรายการรหัสเอกสารทั้งหมดและวันที่รับเอกสาร",
    "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_en": "How many employees does each role have? List role description, id and number of employees.",
    "question_th": "แต่ละบทบาทมีพนักงานกี่คน? ระบุคำอธิบายบทบาท รหัส และจำนวนพนักงาน",
    "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_en": "List roles that have more than one employee. List the role description and number of employees.",
    "question_th": "แสดงรายการบทบาทที่มีพนักงานมากกว่าหนึ่งคน ระบุคำอธิบายบทบาทและจำนวนพนักงาน",
    "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_en": "What is the document status description of the document with id 1?",
    "question_th": "คำอธิบายสถานะเอกสารของเอกสารที่มีรหัส 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_en": "How many documents have the status code done?",
    "question_th": "รหัสสถานะทำไปกี่เอกสารแล้ว?",
    "context": "CREATE TABLE Documents (document_status_code VARCHAR)"
  },
  {
    "answer": "SELECT document_type_code FROM Documents WHERE document_id = 2",
    "question_en": "List the document type code for the document with the id 2.",
    "question_th": "แสดงรายการรหัสประเภทเอกสารสำหรับเอกสารด้วย 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_en": "List the document ids for any documents with the status code done and the type code paper.",
    "question_th": "แสดงรายการรหัสเอกสารสำหรับเอกสารใดๆ ที่มีรหัสสถานะเสร็จสิ้นและรหัสประเภทกระดาษ",
    "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_en": "What is the name of the shipping agent of the document with id 2?",
    "question_th": "ชื่อตัวแทนจัดส่งของเอกสาร 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_en": "How many documents were shipped by USPS?",
    "question_th": "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_en": "Which shipping agent shipped the most documents? List the shipping agent name and the number of documents.",
    "question_th": "ตัวแทนจัดส่งรายใดจัดส่งเอกสารมากที่สุด? ระบุชื่อตัวแทนจัดส่งและจำนวนเอกสาร",
    "context": "CREATE TABLE Documents (Id VARCHAR); CREATE TABLE Ref_Shipping_Agents (Id VARCHAR)"
  },
  {
    "answer": "SELECT receipt_date FROM Documents WHERE document_id = 3",
    "question_en": "What is the receipt date of the document with id 3?",
    "question_th": "วันที่ได้รับเอกสาร 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_en": "What address was the document with id 4 mailed to?",
    "question_th": "เอกสารที่มี ID 4 ส่งไปที่ที่อยู่ใด",
    "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_en": "What is the mail date of the document with id 7?",
    "question_th": "วันที่ส่งเอกสารที่มีรหัส 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_en": "List the document ids of documents with the status done and type Paper, which not shipped by the shipping agent named USPS.",
    "question_th": "แสดงรายการรหัสเอกสารของเอกสารที่มีสถานะเสร็จสิ้นและพิมพ์ Paper ซึ่งไม่ได้จัดส่งโดยตัวแทนจัดส่งชื่อ 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_en": "List document id of documents status is done and document type is Paper and the document is shipped by shipping agent named USPS.",
    "question_th": "รายการรหัสเอกสารของสถานะเอกสารเสร็จสิ้นแล้วและประเภทเอกสารคือกระดาษ และเอกสารถูกจัดส่งโดยตัวแทนจัดส่งชื่อ 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_en": "What is draft detail of the document with id 7?",
    "question_th": "รายละเอียดร่างเอกสาร ID 7 คืออะไร?",
    "context": "CREATE TABLE Document_Drafts (draft_details VARCHAR, document_id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Draft_Copies WHERE document_id = 2",
    "question_en": "How many draft copies does the document with id 2 have?",
    "question_th": "เอกสาร ID 2 มีฉบับร่างกี่ชุด?",
    "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_en": "Which document has the most draft copies? List its document id and number of draft copies.",
    "question_th": "เอกสารใดมีสำเนาร่างมากที่สุด? ระบุรหัสเอกสารและจำนวนสำเนาแบบร่าง",
    "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_en": "Which documents have more than 1 draft copies? List document id and number of draft copies.",
    "question_th": "เอกสารใดมีสำเนาร่างมากกว่า 1 ชุด แสดงรายการรหัสเอกสารและจำนวนสำเนาแบบร่าง",
    "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_en": "List all employees in the circulation history of the document with id 1. List the employee's name.",
    "question_th": "แสดงรายการพนักงานทั้งหมดในประวัติการหมุนเวียนของเอกสารด้วยรหัส 1. ระบุชื่อพนักงาน",
    "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_en": "List the employees who have not showed up in any circulation history of documents. List the employee's name.",
    "question_th": "รายชื่อพนักงานที่ไม่ปรากฏในประวัติการหมุนเวียนของเอกสาร ระบุชื่อพนักงาน.",
    "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_en": "Which employee has showed up in most circulation history documents. List the employee's name and the number of drafts and copies.",
    "question_th": "พนักงานคนไหนที่ปรากฏอยู่ในเอกสารประวัติการหมุนเวียนส่วนใหญ่ ระบุชื่อพนักงานและจำนวนฉบับร่างและสำเนา",
    "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_en": "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.",
    "question_th": "สำหรับเอกสารแต่ละฉบับ ให้ระบุจำนวนพนักงานที่ปรากฏในประวัติการหมุนเวียนของเอกสารนั้น แสดงรายการรหัสเอกสารและจำนวนพนักงาน",
    "context": "CREATE TABLE Circulation_History (document_id VARCHAR, employee_id VARCHAR)"
  },
  {
    "answer": "SELECT dname FROM department ORDER BY mgr_start_date",
    "question_en": "List all department names ordered by their starting date.",
    "question_th": "แสดงรายการชื่อแผนกทั้งหมดเรียงตามวันที่เริ่มต้น",
    "context": "CREATE TABLE department (dname VARCHAR, mgr_start_date VARCHAR)"
  },
  {
    "answer": "SELECT Dependent_name FROM dependent WHERE relationship = 'Spouse'",
    "question_en": "find all dependent names who have a spouse relation with some employee.",
    "question_th": "ค้นหาชื่อที่อยู่ในอุปการะทั้งหมดที่มีความสัมพันธ์คู่สมรสกับพนักงานบางคน",
    "context": "CREATE TABLE dependent (Dependent_name VARCHAR, relationship VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM dependent WHERE sex = 'F'",
    "question_en": "how many female dependents are there?",
    "question_th": "มีผู้อยู่ในอุปการะหญิงกี่คน?",
    "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_en": "Find the names of departments that are located in Houston.",
    "question_th": "ค้นหาชื่อแผนกต่างๆ ที่ตั้งอยู่ในฮูสตัน",
    "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_en": "Return the first names and last names of employees who earn more than 30000 in salary.",
    "question_th": "ส่งคืนชื่อและนามสกุลของพนักงานที่ได้รับเงินเดือนตั้งแต่ 30,000 ขึ้นไป",
    "context": "CREATE TABLE employee (fname VARCHAR, lname VARCHAR, salary INTEGER)"
  },
  {
    "answer": "SELECT COUNT(*), sex FROM employee WHERE salary < 50000 GROUP BY sex",
    "question_en": "Find the number of employees of each gender whose salary is lower than 50000.",
    "question_th": "หาจำนวนพนักงานแต่ละเพศที่มีเงินเดือนต่ำกว่า 50,000 คน",
    "context": "CREATE TABLE employee (sex VARCHAR, salary INTEGER)"
  },
  {
    "answer": "SELECT fname, lname, address FROM employee ORDER BY Bdate",
    "question_en": "list the first and last names, and the addresses of all employees in the ascending order of their birth date.",
    "question_th": "ระบุชื่อและนามสกุล และที่อยู่ของพนักงานทุกคนตามลำดับวันเกิดจากน้อยไปหามาก",
    "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_en": "what are the event details of the services that have the type code 'Marriage'?",
    "question_th": "รายละเอียดงานบริการที่มีรหัสประเภท 'การแต่งงาน' มีอะไรบ้าง?",
    "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_en": "What are the ids and details of events that have more than one participants?",
    "question_th": "รหัสและรายละเอียดของกิจกรรมที่มีผู้เข้าร่วมมากกว่าหนึ่งคนคืออะไร?",
    "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_en": "How many events have each participants attended? List the participant id, type and the number.",
    "question_th": "ผู้เข้าร่วมแต่ละคนเข้าร่วมกิจกรรมจำนวนเท่าใด ระบุรหัสผู้เข้าร่วม ประเภท และหมายเลข",
    "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_en": "What are all the the participant ids, type code and details?",
    "question_th": "รหัสผู้เข้าร่วม ประเภทรหัส และรายละเอียดทั้งหมดคืออะไร?",
    "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_en": "How many participants belong to the type 'Organizer'?",
    "question_th": "มีผู้เข้าร่วมประเภท 'ผู้จัด' จำนวนกี่คน?",
    "context": "CREATE TABLE participants (participant_type_code VARCHAR)"
  },
  {
    "answer": "SELECT service_type_code FROM services ORDER BY service_type_code",
    "question_en": "List the type of the services in alphabetical order.",
    "question_th": "ระบุประเภทของบริการตามลำดับตัวอักษร",
    "context": "CREATE TABLE services (service_type_code VARCHAR)"
  },
  {
    "answer": "SELECT service_id, event_details FROM EVENTS",
    "question_en": "List the service id and details for the events.",
    "question_th": "ระบุรหัสบริการและรายละเอียดสำหรับกิจกรรม",
    "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_en": "How many events had participants whose details had the substring 'Dr.'",
    "question_th": "มีผู้เข้าร่วมกี่กิจกรรมซึ่งมีรายละเอียดย่อยว่า 'ดร.'",
    "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_en": "What is the most common participant type?",
    "question_th": "ประเภทผู้เข้าร่วมที่พบบ่อยที่สุดคืออะไร?",
    "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_en": "Which service id and type has the least number of participants?",
    "question_th": "รหัสบริการและประเภทใดที่มีจำนวนผู้เข้าร่วมน้อยที่สุด",
    "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_en": "What is the id of the event with the most participants?",
    "question_th": "ID ของกิจกรรมที่มีผู้เข้าร่วมมากที่สุดคืออะไร?",
    "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_en": "Which events id does not have any participant with detail 'Kenyatta Kuhn'?",
    "question_th": "รหัสกิจกรรมใดไม่มีผู้เข้าร่วมที่มีรายละเอียด '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_en": "Which services type had both successful and failure event details?",
    "question_th": "บริการประเภทใดที่มีรายละเอียดเหตุการณ์ทั้งสำเร็จและล้มเหลว",
    "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_en": "How many events did not have any participants?",
    "question_th": "มีกี่งานที่ไม่มีผู้เข้าร่วม?",
    "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_en": "What are all the distinct participant ids who attended any events?",
    "question_th": "รหัสผู้เข้าร่วมที่ชัดเจนทั้งหมดที่เข้าร่วมกิจกรรมใดๆ คืออะไร",
    "context": "CREATE TABLE participants_in_Events (participant_id VARCHAR)"
  },
  {
    "answer": "SELECT name FROM races ORDER BY date DESC LIMIT 1",
    "question_en": "What is the name of the race held most recently?",
    "question_th": "การแข่งขันที่จัดขึ้นล่าสุดชื่ออะไร?",
    "context": "CREATE TABLE races (name VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT name, date FROM races ORDER BY date DESC LIMIT 1",
    "question_en": "What is the name and date of the most recent race?",
    "question_th": "ชื่อและวันที่ของการแข่งขันล่าสุดคืออะไร?",
    "context": "CREATE TABLE races (name VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT name FROM races WHERE YEAR = 2017",
    "question_en": "Find the names of all races held in 2017.",
    "question_th": "ค้นหารายชื่อการแข่งขันทั้งหมดที่จัดขึ้นในปี 2560",
    "context": "CREATE TABLE races (name VARCHAR, YEAR VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT name FROM races WHERE YEAR BETWEEN 2014 AND 2017",
    "question_en": "Find the distinct names of all races held between 2014 and 2017?",
    "question_th": "ค้นหาชื่อที่ชัดเจนของการแข่งขันทั้งหมดที่จัดขึ้นระหว่างปี 2014 ถึง 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_en": "List the forename and surname of all distinct drivers who once had laptime less than 93000 milliseconds?",
    "question_th": "ระบุชื่อและนามสกุลของผู้ขับขี่ที่แตกต่างกันทั้งหมดที่ครั้งหนึ่งเคยมีเวลารอบน้อยกว่า 93,000 มิลลิวินาที?",
    "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_en": "Find all the distinct id and nationality of drivers who have had laptime more than 100000 milliseconds?",
    "question_th": "ค้นหารหัสและสัญชาติของผู้ขับขี่ที่มีเวลารอบมากกว่า 100,000 มิลลิวินาทีหรือไม่",
    "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_en": "What are the forename and surname of the driver who has the smallest laptime?",
    "question_th": "ชื่อและนามสกุลของผู้ขับขี่ที่มีเวลารอบน้อยที่สุดคืออะไร?",
    "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_en": "What is the id and family name of the driver who has the longest laptime?",
    "question_th": "รหัสและนามสกุลของผู้ขับขี่ที่มีเวลารอบนานที่สุดคืออะไร?",
    "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_en": "What is the id, forname and surname of the driver who had the first position in terms of laptime at least twice?",
    "question_th": "รหัส ชื่อ และนามสกุลของผู้ขับขี่ที่มีตำแหน่งแรกในแง่ของเวลารอบอย่างน้อยสองครั้งคืออะไร?",
    "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_en": "How many drivers participated in the race Australian Grand Prix held in 2009?",
    "question_th": "มีนักแข่งกี่คนที่เข้าร่วมการแข่งขัน Australian Grand Prix ที่จัดขึ้นในปี 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_en": "How many drivers did not participate in the races held in 2009?",
    "question_th": "มีนักแข่งกี่คนที่ไม่ได้เข้าร่วมการแข่งขันที่จัดขึ้นในปี 2552?",
    "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_en": "Give me a list of names and years of races that had any driver whose forename is Lewis?",
    "question_th": "ขอรายชื่อและปีการแข่งขันที่มีนักแข่งคนไหนชื่อลูอิสหน่อย?",
    "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_en": "Find the forename and surname of drivers whose nationality is German?",
    "question_th": "ค้นหาชื่อและนามสกุลของผู้ขับขี่ที่มีสัญชาติเยอรมัน?",
    "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_en": "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?",
    "question_th": "ค้นหารหัสและชื่อหน้าของนักแข่งที่เข้าร่วมทั้งการแข่งขันในชื่อ Australian Grand Prix และการแข่งขันในชื่อ 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_en": "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?",
    "question_th": "ชื่อและนามสกุลของนักแข่งที่เข้าร่วมการแข่งขันที่ชื่อ Australian Grand Prix แต่ไม่ใช่การแข่งขันที่ชื่อว่า 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_en": "Find all the forenames of distinct drivers who was in position 1 as standing and won?",
    "question_th": "ค้นหาชื่อทั้งหมดของนักแข่งที่แตกต่างกันซึ่งอยู่ในตำแหน่ง 1 ยืนหยัดและชนะใช่ไหม",
    "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_en": "Find all the forenames of distinct drivers who won in position 1 as driver standing and had more than 20 points?",
    "question_th": "ค้นหาชื่อทั้งหมดของนักแข่งที่แตกต่างกันซึ่งชนะตำแหน่ง 1 ในฐานะนักแข่งที่ยืนและมีคะแนนมากกว่า 20 คะแนนใช่ไหม",
    "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_en": "What are the numbers of constructors for different nationalities?",
    "question_th": "มีจำนวนผู้สร้างสำหรับสัญชาติต่างๆ มีจำนวนเท่าใด?",
    "context": "CREATE TABLE constructors (nationality VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*), constructorid FROM constructorStandings GROUP BY constructorid",
    "question_en": "What are the numbers of races for each constructor id?",
    "question_th": "จำนวนการแข่งขันสำหรับรหัสคอนสตรัคเตอร์แต่ละรายการคือเท่าใด",
    "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_en": "What are the names of races that were held after 2017 and the circuits were in the country of Spain?",
    "question_th": "การแข่งขันที่จัดขึ้นหลังปี 2560 และสนามแข่งในประเทศสเปนมีชื่ออะไรบ้าง?",
    "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_en": "What are the unique names of races that held after 2000 and the circuits were in Spain?",
    "question_th": "อะไรคือชื่อเฉพาะของการแข่งขันที่จัดขึ้นหลังปี 2000 และแต่ละสนามอยู่ในสเปน?",
    "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_en": "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.",
    "question_th": "ค้นหารหัสผู้ขับขี่ที่ชัดเจนและหมายเลขหยุดของนักแข่งทั้งหมดที่มีระยะเวลาเข้าพิทสั้นกว่านักแข่งบางคนในการแข่งขันด้วยรหัส 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_en": "Find the distinct driver id of all drivers that have a longer stop duration than some drivers in the race whose id is 841?",
    "question_th": "ค้นหารหัสไดรเวอร์ที่ชัดเจนของนักแข่งทั้งหมดที่มีระยะเวลาหยุดนานกว่านักแข่งบางคนในการแข่งขันที่มีรหัส 841",
    "context": "CREATE TABLE pitstops (driverid VARCHAR, STOP VARCHAR, duration INTEGER, raceid VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT forename FROM drivers ORDER BY forename",
    "question_en": "List the forenames of all distinct drivers in alphabetical order?",
    "question_th": "แสดงรายการชื่อต้นของไดรเวอร์ที่แตกต่างกันทั้งหมดตามลำดับตัวอักษรหรือไม่",
    "context": "CREATE TABLE drivers (forename VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT name FROM races ORDER BY name DESC",
    "question_en": "List the names of all distinct races in reversed  lexicographic order?",
    "question_th": "ระบุชื่อเชื้อชาติที่แตกต่างกันทั้งหมดโดยเรียงตามพจนานุกรมย้อนกลับหรือไม่",
    "context": "CREATE TABLE races (name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM races WHERE YEAR BETWEEN 2009 AND 2011",
    "question_en": "What are the names of races held between 2009 and 2011?",
    "question_th": "การแข่งขันที่จัดขึ้นระหว่างปี 2552 ถึง 2554 มีชื่ออะไรบ้าง?",
    "context": "CREATE TABLE races (name VARCHAR, YEAR INTEGER)"
  },
  {
    "answer": "SELECT name FROM races WHERE TIME > \"12:00:00\" OR TIME < \"09:00:00\"",
    "question_en": "What are the names of races held after 12:00:00 or before 09:00:00?",
    "question_th": "การแข่งขันที่จัดขึ้นหลังเวลา 12:00:00 น. หรือก่อน 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_en": "What are the drivers' first, last names and id who had more than 8 pit stops or participated in more than 5 race results?",
    "question_th": "ชื่อ นามสกุล และรหัสประจำตัวของนักแข่งที่เข้าพิทมากกว่า 8 ครั้งหรือเข้าร่วมผลการแข่งขันมากกว่า 5 ครั้งคืออะไร",
    "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_en": "What are the drivers' last names and id who had 11 pit stops and participated in more than 5 race results?",
    "question_th": "นามสกุลและรหัสประจำตัวของนักแข่งที่เข้าพิท 11 ครั้งและเข้าร่วมผลการแข่งขันมากกว่า 5 ครั้งคืออะไร",
    "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_en": "What is the id and last name of the driver who participated in the most races after 2010?",
    "question_th": "รหัสและนามสกุลของนักแข่งที่เข้าร่วมการแข่งขันมากที่สุดหลังปี 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_en": "What are the names of circuits that belong to UK or Malaysia?",
    "question_th": "วงจรที่เป็นของสหราชอาณาจักรหรือมาเลเซียชื่ออะไร",
    "context": "CREATE TABLE circuits (name VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT circuitid, LOCATION FROM circuits WHERE country = \"France\" OR country = \"Belgium\"",
    "question_en": "Find the id and location of circuits that belong to France or Belgium?",
    "question_th": "ค้นหารหัสและที่ตั้งของวงจรที่เป็นของฝรั่งเศสหรือเบลเยียม",
    "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_en": "Find the names of Japanese constructors that have once earned more than 5 points?",
    "question_th": "ค้นหาชื่อผู้สร้างชาวญี่ปุ่นที่เคยได้รับมากกว่า 5 คะแนนหรือไม่?",
    "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_en": "What is the average fastest lap speed in race named 'Monaco Grand Prix' in 2008 ?",
    "question_th": "ความเร็วเฉลี่ยต่อรอบที่เร็วที่สุดในการแข่งขันชื่อ 'Monaco Grand Prix' ในปี 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_en": "What is the maximum fastest lap speed in race named 'Monaco Grand Prix' in 2008 ?",
    "question_th": "ความเร็วรอบสูงสุดในการแข่งขันชื่อ 'Monaco Grand Prix' ในปี 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_en": "What are the maximum fastest lap speed in races held after 2004 grouped by race name and ordered by year?",
    "question_th": "ความเร็วรอบสูงสุดในการแข่งขันที่จัดขึ้นหลังปี 2004 จัดกลุ่มตามชื่อการแข่งขันและเรียงลำดับตามปีคือเท่าใด",
    "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_en": "What are the average fastest lap speed in races held after 2004 grouped by race name and ordered by year?",
    "question_th": "ความเร็วรอบเฉลี่ยที่เร็วที่สุดในการแข่งขันที่จัดขึ้นหลังปี 2004 จัดกลุ่มตามชื่อการแข่งขันและเรียงลำดับตามปีคือเท่าใด",
    "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_en": "Find the id, forename and number of races of all drivers who have at least participated in two races?",
    "question_th": "ค้นหารหัส ชื่อหน้า และจำนวนการแข่งขันของนักแข่งทั้งหมดที่เข้าร่วมการแข่งขันอย่างน้อยสองครั้งหรือไม่",
    "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_en": "Find the driver id and number of races of all drivers who have at most participated in 30 races?",
    "question_th": "ค้นหารหัสผู้ขับขี่และจำนวนการแข่งขันของนักแข่งทั้งหมดที่เข้าร่วมการแข่งขันสูงสุด 30 ครั้งหรือไม่",
    "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_en": "Find the id and surname of the driver who participated the most number of races?",
    "question_th": "ค้นหารหัสและนามสกุลของนักแข่งที่เข้าร่วมการแข่งขันมากที่สุด?",
    "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_en": "How many technicians are there?",
    "question_th": "มีช่างกี่คน?",
    "context": "CREATE TABLE technician (Id VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM technician ORDER BY Age",
    "question_en": "List the names of technicians in ascending order of age.",
    "question_th": "รายชื่อช่างเทคนิคเรียงตามอายุจากน้อยไปหามาก",
    "context": "CREATE TABLE technician (Name VARCHAR, Age VARCHAR)"
  },
  {
    "answer": "SELECT Team, Starting_Year FROM technician",
    "question_en": "What are the team and starting year of technicians?",
    "question_th": "ทีมงานและปีเริ่มต้นของช่างคือทีมอะไร?",
    "context": "CREATE TABLE technician (Team VARCHAR, Starting_Year VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM technician WHERE Team <> \"NYY\"",
    "question_en": "List the name of technicians whose team is not \"NYY\".",
    "question_th": "รายชื่อช่างที่ทีมงานไม่ใช่ \"NYY\"",
    "context": "CREATE TABLE technician (Name VARCHAR, Team VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM technician WHERE Age = 36 OR Age = 37",
    "question_en": "Show the name of technicians aged either 36 or 37",
    "question_th": "แสดงชื่อช่างที่มีอายุ 36 หรือ 37 ปี",
    "context": "CREATE TABLE technician (Name VARCHAR, Age VARCHAR)"
  },
  {
    "answer": "SELECT Starting_Year FROM technician ORDER BY Age DESC LIMIT 1",
    "question_en": "What is the starting year of the oldest technicians?",
    "question_th": "ช่างที่เก่าแก่ที่สุดเริ่มปีไหน?",
    "context": "CREATE TABLE technician (Starting_Year VARCHAR, Age VARCHAR)"
  },
  {
    "answer": "SELECT Team, COUNT(*) FROM technician GROUP BY Team",
    "question_en": "Show different teams of technicians and the number of technicians in each team.",
    "question_th": "แสดงทีมช่างที่แตกต่างกันและจำนวนช่างในแต่ละทีม",
    "context": "CREATE TABLE technician (Team VARCHAR)"
  },
  {
    "answer": "SELECT Team FROM technician GROUP BY Team ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "Please show the team that has the most number of technicians.",
    "question_th": "โปรดแสดงทีมที่มีช่างจำนวนมากที่สุด",
    "context": "CREATE TABLE technician (Team VARCHAR)"
  },
  {
    "answer": "SELECT Team FROM technician GROUP BY Team HAVING COUNT(*) >= 2",
    "question_en": "Show the team that have at least two technicians.",
    "question_th": "แสดงทีมที่มีช่างอย่างน้อยสองคน",
    "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_en": "Show names of technicians and series of machines they are assigned to repair.",
    "question_th": "แสดงชื่อช่างเทคนิคและชุดเครื่องจักรที่ได้รับมอบหมายให้ซ่อม",
    "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_en": "Show names of technicians in ascending order of quality rank of the machine they are assigned.",
    "question_th": "แสดงชื่อของช่างเทคนิคโดยเรียงลำดับตามอันดับคุณภาพของเครื่องจักรที่ได้รับมอบหมายจากน้อยไปมาก",
    "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_en": "Show names of technicians who are assigned to repair machines with value point more than 70.",
    "question_th": "แสดงรายชื่อช่างที่ได้รับมอบหมายให้ซ่อมเครื่องจักรที่มีค่าคะแนนมากกว่า 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_en": "Show names of technicians and the number of machines they are assigned to repair.",
    "question_th": "แสดงชื่อช่างเทคนิคและจำนวนเครื่องจักรที่ได้รับมอบหมายให้ซ่อม",
    "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_en": "List the names of technicians who have not been assigned to repair machines.",
    "question_th": "รายชื่อช่างที่ไม่ได้รับมอบหมายให้ซ่อมเครื่องจักร",
    "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_en": "Show the starting years shared by technicians from team \"CLE\" and \"CWS\".",
    "question_th": "แสดงปีเริ่มต้นที่ช่างเทคนิคจากทีม \"CLE\" และ \"CWS\" แชร์",
    "context": "CREATE TABLE technician (Starting_Year VARCHAR, Team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM entrepreneur",
    "question_en": "How many entrepreneurs are there?",
    "question_th": "มีผู้ประกอบการกี่ราย?",
    "context": "CREATE TABLE entrepreneur (Id VARCHAR)"
  },
  {
    "answer": "SELECT Company FROM entrepreneur ORDER BY Money_Requested DESC",
    "question_en": "List the companies of entrepreneurs in descending order of money requested.",
    "question_th": "รายชื่อบริษัทของผู้ประกอบการเรียงตามจำนวนเงินที่ร้องขอจากมากไปหาน้อย",
    "context": "CREATE TABLE entrepreneur (Company VARCHAR, Money_Requested VARCHAR)"
  },
  {
    "answer": "SELECT Company, Investor FROM entrepreneur",
    "question_en": "List the companies and the investors of entrepreneurs.",
    "question_th": "รายชื่อบริษัทและนักลงทุนของผู้ประกอบการ",
    "context": "CREATE TABLE entrepreneur (Company VARCHAR, Investor VARCHAR)"
  },
  {
    "answer": "SELECT AVG(Money_Requested) FROM entrepreneur",
    "question_en": "What is the average money requested by all entrepreneurs?",
    "question_th": "ผู้ประกอบการทั้งหมดร้องขอเงินเฉลี่ยเป็นเท่าใด?",
    "context": "CREATE TABLE entrepreneur (Money_Requested INTEGER)"
  },
  {
    "answer": "SELECT Name FROM People ORDER BY Weight",
    "question_en": "What are the names of people in ascending order of weight?",
    "question_th": "คนเรียงลำดับตามน้ำหนักชื่ออะไรคะ?",
    "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_en": "What are the names of entrepreneurs?",
    "question_th": "ผู้ประกอบการชื่ออะไร?",
    "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_en": "What are the names of entrepreneurs whose investor is not \"Rachel Elnaugh\"?",
    "question_th": "ผู้ประกอบการที่นักลงทุนไม่ใช่ \"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_en": "What is the weight of the shortest person?",
    "question_th": "คนที่เตี้ยที่สุดมีน้ำหนักเท่าไหร่?",
    "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_en": "What is the name of the entrepreneur with the greatest weight?",
    "question_th": "ผู้ประกอบการที่มีน้ำหนักมากที่สุดชื่ออะไร?",
    "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_en": "What is the total money requested by entrepreneurs with height more than 1.85?",
    "question_th": "ผู้ประกอบการที่มีส่วนสูงเกิน 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_en": "What are the dates of birth of entrepreneurs with investor \"Simon Woodroffe\" or \"Peter Jones\"?",
    "question_th": "วันเกิดของผู้ประกอบการกับนักลงทุน \"Simon Woodroffe\" หรือ \"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_en": "What are the weights of entrepreneurs in descending order of money requested?",
    "question_th": "ผู้ประกอบการเรียงลำดับเงินที่ขอไปมีน้ำหนักเท่าใด?",
    "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_en": "What are the investors of entrepreneurs and the corresponding number of entrepreneurs invested by each investor?",
    "question_th": "นักลงทุนของผู้ประกอบการคือเท่าใด และจำนวนผู้ประกอบการที่นักลงทุนแต่ละรายลงทุนเท่ากันคืออะไร?",
    "context": "CREATE TABLE entrepreneur (Investor VARCHAR)"
  },
  {
    "answer": "SELECT Investor FROM entrepreneur GROUP BY Investor ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "What is the investor that has invested in the most number of entrepreneurs?",
    "question_th": "นักลงทุนรายไหนที่ลงทุนในผู้ประกอบการมากที่สุด?",
    "context": "CREATE TABLE entrepreneur (Investor VARCHAR)"
  },
  {
    "answer": "SELECT Investor FROM entrepreneur GROUP BY Investor HAVING COUNT(*) >= 2",
    "question_en": "What are the investors that have invested in at least two entrepreneurs?",
    "question_th": "นักลงทุนที่ลงทุนในผู้ประกอบการอย่างน้อย 2 รายมีอะไรบ้าง?",
    "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_en": "List the names of entrepreneurs and their companies in descending order of money requested?",
    "question_th": "ระบุรายชื่อผู้ประกอบการและบริษัทตามลำดับจำนวนเงินที่ขอ?",
    "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_en": "List the names of people that are not entrepreneurs.",
    "question_th": "รายชื่อบุคคลที่ไม่ใช่ผู้ประกอบการ",
    "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_en": "Show the investors shared by entrepreneurs that requested more than 140000 and entrepreneurs that requested less than 120000.",
    "question_th": "แสดงนักลงทุนที่แบ่งปันโดยผู้ประกอบการที่ขอมากกว่า 140000 และผู้ประกอบการที่ขอน้อยกว่า 120000",
    "context": "CREATE TABLE entrepreneur (Investor VARCHAR, Money_Requested INTEGER)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT Company) FROM entrepreneur",
    "question_en": "How many distinct companies are there?",
    "question_th": "มีบริษัทที่แตกต่างกันกี่บริษัท?",
    "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_en": "Show the company of the tallest entrepreneur.",
    "question_th": "แสดงบริษัทของผู้ประกอบการที่สูงที่สุด",
    "context": "CREATE TABLE entrepreneur (Company VARCHAR, People_ID VARCHAR); CREATE TABLE people (People_ID VARCHAR, Height VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM perpetrator",
    "question_en": "How many perpetrators are there?",
    "question_th": "ผู้กระทำผิดมีกี่คน?",
    "context": "CREATE TABLE perpetrator (Id VARCHAR)"
  },
  {
    "answer": "SELECT Date FROM perpetrator ORDER BY Killed DESC",
    "question_en": "List the date of perpetrators in descending order of the number of people killed.",
    "question_th": "ระบุวันที่ผู้กระทำผิดเรียงตามจำนวนผู้เสียชีวิตจากมากไปหาน้อย",
    "context": "CREATE TABLE perpetrator (Date VARCHAR, Killed VARCHAR)"
  },
  {
    "answer": "SELECT Injured FROM perpetrator ORDER BY Injured",
    "question_en": "List the number of people injured by perpetrators in ascending order.",
    "question_th": "ระบุจำนวนผู้ได้รับบาดเจ็บจากผู้กระทำผิดตามลำดับจากน้อยไปหามาก",
    "context": "CREATE TABLE perpetrator (Injured VARCHAR)"
  },
  {
    "answer": "SELECT AVG(Injured) FROM perpetrator",
    "question_en": "What is the average number of people injured by all perpetrators?",
    "question_th": "จำนวนผู้ได้รับบาดเจ็บจากผู้กระทำความผิดทั้งหมดโดยเฉลี่ยคือเท่าใด?",
    "context": "CREATE TABLE perpetrator (Injured INTEGER)"
  },
  {
    "answer": "SELECT LOCATION FROM perpetrator ORDER BY Killed DESC LIMIT 1",
    "question_en": "What is the location of the perpetrator with the largest kills.",
    "question_th": "สถานที่ของผู้กระทำผิดที่มีการสังหารมากที่สุดคือที่ใด",
    "context": "CREATE TABLE perpetrator (LOCATION VARCHAR, Killed VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM People ORDER BY Height",
    "question_en": "What are the names of people in ascending order of height?",
    "question_th": "คนเรียงลำดับส่วนสูงชื่ออะไรคะ?",
    "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_en": "What are the names of perpetrators?",
    "question_th": "ผู้กระทำผิดชื่ออะไร?",
    "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_en": "What are the names of perpetrators whose country is not \"China\"?",
    "question_th": "ผู้กระทำผิดในประเทศที่ไม่ใช่ \"จีน\" มีชื่ออะไรบ้าง?",
    "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_en": "What is the name of the perpetrator with the biggest weight.",
    "question_th": "ผู้กระทำผิดที่มีน้ำหนักมากที่สุดชื่ออะไร",
    "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_en": "What is the total kills of the perpetrators with height more than 1.84.",
    "question_th": "ยอดผู้เสียชีวิตรวมผู้ก่อเหตุสูงเกิน 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_en": "What are the names of perpetrators in country \"China\" or \"Japan\"?",
    "question_th": "ผู้กระทำผิดในประเทศ \"จีน\" หรือ \"ญี่ปุ่น\" ชื่ออะไร?",
    "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_en": "What are the heights of perpetrators in descending order of the number of people they injured?",
    "question_th": "ผู้กระทำความผิดเรียงลำดับจากมากไปน้อยของจำนวนผู้ได้รับบาดเจ็บเป็นเท่าใด",
    "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_en": "What are the countries of perpetrators? Show each country and the corresponding number of perpetrators there.",
    "question_th": "ประเทศของผู้กระทำผิดมีอะไรบ้าง? แสดงแต่ละประเทศและจำนวนผู้กระทำผิดที่เกี่ยวข้อง",
    "context": "CREATE TABLE perpetrator (Country VARCHAR)"
  },
  {
    "answer": "SELECT Country, COUNT(*) FROM perpetrator GROUP BY Country ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "What is the country that has the most perpetrators?",
    "question_th": "ประเทศใดมีผู้กระทำผิดมากที่สุด?",
    "context": "CREATE TABLE perpetrator (Country VARCHAR)"
  },
  {
    "answer": "SELECT Country, COUNT(*) FROM perpetrator GROUP BY Country HAVING COUNT(*) >= 2",
    "question_en": "What are the countries that have at least two perpetrators?",
    "question_th": "ประเทศใดบ้างที่มีผู้กระทำผิดอย่างน้อยสองคน",
    "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_en": "List the names of perpetrators in descending order of the year.",
    "question_th": "รายชื่อผู้กระทำผิดตามลำดับปีจากมากไปน้อย",
    "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_en": "List the names of people that are not perpetrators.",
    "question_th": "รายชื่อบุคคลที่ไม่ใช่ผู้กระทำความผิด",
    "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_en": "Show the countries that have both perpetrators with injures more than 50 and perpetrators with injures smaller than 20.",
    "question_th": "แสดงประเทศที่มีทั้งผู้กระทำผิดที่ได้รับบาดเจ็บมากกว่า 50 ราย และผู้กระทำผิดที่ได้รับบาดเจ็บน้อยกว่า 20 ราย",
    "context": "CREATE TABLE perpetrator (Country VARCHAR, Injured INTEGER)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT LOCATION) FROM perpetrator",
    "question_en": "How many distinct locations of perpetrators are there?",
    "question_th": "มีสถานที่ของผู้กระทำผิดกี่แห่ง?",
    "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_en": "Show the date of the tallest perpetrator.",
    "question_th": "แสดงวันที่ผู้กระทำความผิดสูงสุด",
    "context": "CREATE TABLE perpetrator (Date VARCHAR, People_ID VARCHAR); CREATE TABLE people (People_ID VARCHAR, Height VARCHAR)"
  },
  {
    "answer": "SELECT MAX(YEAR) FROM perpetrator",
    "question_en": "In which year did the most recent crime happen?",
    "question_th": "อาชญากรรมล่าสุดเกิดขึ้นในปีใด?",
    "context": "CREATE TABLE perpetrator (YEAR INTEGER)"
  },
  {
    "answer": "SELECT campus FROM campuses WHERE county = \"Los Angeles\"",
    "question_en": "Report the name of all campuses in Los Angeles county.",
    "question_th": "รายงานชื่อวิทยาเขตทั้งหมดในเขตลอสแอนเจลิส",
    "context": "CREATE TABLE campuses (campus VARCHAR, county VARCHAR)"
  },
  {
    "answer": "SELECT campus FROM campuses WHERE LOCATION = \"Chico\"",
    "question_en": "What are the names of all campuses located at Chico?",
    "question_th": "วิทยาเขตทั้งหมดที่ตั้งอยู่ที่ Chico ชื่ออะไร",
    "context": "CREATE TABLE campuses (campus VARCHAR, LOCATION VARCHAR)"
  },
  {
    "answer": "SELECT campus FROM campuses WHERE YEAR = 1958",
    "question_en": "Find all the campuses opened in 1958.",
    "question_th": "ค้นหาวิทยาเขตทั้งหมดที่เปิดในปี 1958",
    "context": "CREATE TABLE campuses (campus VARCHAR, YEAR VARCHAR)"
  },
  {
    "answer": "SELECT campus FROM campuses WHERE YEAR < 1800",
    "question_en": "Find the name of the campuses opened before 1800.",
    "question_th": "ค้นหาชื่อวิทยาเขตที่เปิดก่อนปี 1800",
    "context": "CREATE TABLE campuses (campus VARCHAR, YEAR INTEGER)"
  },
  {
    "answer": "SELECT campus FROM campuses WHERE YEAR >= 1935 AND YEAR <= 1939",
    "question_en": "Which campus was opened between 1935 and 1939?",
    "question_th": "วิทยาเขตใดเปิดระหว่างปี 1935 ถึง 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_en": "Find the name of the campuses that is in Northridge, Los Angeles or in San Francisco, San Francisco.",
    "question_th": "ค้นหาชื่อวิทยาเขตที่อยู่ใน Northridge, Los Angeles หรือใน 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_en": "What is the campus fee of \"San Jose State University\" in year 1996?",
    "question_th": "ค่าธรรมเนียมวิทยาเขตของ \"San Jose State University\" ในปี 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_en": "What is the campus fee of \"San Francisco State University\" in year 1996?",
    "question_th": "ค่าธรรมเนียมวิทยาเขตของ \"San Francisco State University\" ในปี 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_en": "Find the count of universities whose campus fee is greater than the average campus fee.",
    "question_th": "ค้นหาจำนวนมหาวิทยาลัยที่ค่าธรรมเนียมวิทยาเขตสูงกว่าค่าธรรมเนียมวิทยาเขตโดยเฉลี่ย",
    "context": "CREATE TABLE csu_fees (campusfee INTEGER)"
  },
  {
    "answer": "SELECT campus FROM campuses WHERE county = \"Los Angeles\" AND YEAR > 1950",
    "question_en": "Which university is in Los Angeles county and opened after 1950?",
    "question_th": "มหาวิทยาลัยใดอยู่ในเทศมณฑลลอสแอนเจลีสและเปิดหลังปี 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_en": "Which year has the most degrees conferred?",
    "question_th": "ปีใดที่มีปริญญามากที่สุด?",
    "context": "CREATE TABLE degrees (YEAR VARCHAR, degrees INTEGER)"
  },
  {
    "answer": "SELECT campus FROM degrees GROUP BY campus ORDER BY SUM(degrees) DESC LIMIT 1",
    "question_en": "Which campus has the most degrees conferred in all times?",
    "question_th": "วิทยาเขตใดมีวุฒิการศึกษามากที่สุดตลอดกาล?",
    "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_en": "Which campus has the most faculties in year 2003?",
    "question_th": "วิทยาเขตใดมีคณะมากที่สุดในปี พ.ศ. 2546?",
    "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_en": "Find the average fee on a CSU campus in 1996",
    "question_th": "ค้นหาค่าธรรมเนียมเฉลี่ยในวิทยาเขต CSU ในปี 1996",
    "context": "CREATE TABLE csu_fees (campusfee INTEGER, YEAR VARCHAR)"
  },
  {
    "answer": "SELECT AVG(campusfee) FROM csu_fees WHERE YEAR = 2005",
    "question_en": "What is the average fee on a CSU campus in 2005?",
    "question_th": "ค่าธรรมเนียมเฉลี่ยของวิทยาเขต CSU ในปี 2548 คือเท่าใด",
    "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_en": "report the total number of degrees granted between 1998 and 2002.",
    "question_th": "รายงานจำนวนปริญญาที่ได้รับระหว่างปี 2541 ถึง 2545",
    "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_en": "For each Orange county campus, report the number of degrees granted after 2000.",
    "question_th": "สำหรับวิทยาเขต Orange County แต่ละแห่ง ให้รายงานจำนวนปริญญาที่ได้รับหลังปี 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_en": "Find the names of the campus which has more faculties in 2002 than every campus in Orange county.",
    "question_th": "ค้นหาชื่อวิทยาเขตที่มีคณะต่างๆ ในปี 2002 มากกว่าทุกวิทยาเขตในออเรนจ์เคาน์ตี้",
    "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_en": "What campus had more than 400 total enrollment but more than 200 full time enrollment in year 1956?",
    "question_th": "วิทยาเขตใดมีผู้ลงทะเบียนเรียนมากกว่า 400 คน แต่มีผู้ลงทะเบียนเรียนเต็มเวลามากกว่า 200 คนในปี 1956",
    "context": "CREATE TABLE enrollments (campus VARCHAR, year VARCHAR); CREATE TABLE campuses (id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM campuses WHERE county = \"Los Angeles\"",
    "question_en": "How many campuses are there in Los Angeles county?",
    "question_th": "ลอสแองเจลีสเคาน์ตี้มีวิทยาเขตกี่แห่ง",
    "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_en": "How many degrees were conferred in \"San Jose State University\" in 2000?",
    "question_th": "ในปี 2000 \"San Jose State University\" ได้รับปริญญากี่ปริญญา",
    "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_en": "What are the degrees conferred in \"San Francisco State University\" in 2001.",
    "question_th": "องศาที่มอบให้ใน \"San Francisco State University\" ในปี 2544 คืออะไร",
    "context": "CREATE TABLE degrees (Id VARCHAR); CREATE TABLE campuses (Id VARCHAR)"
  },
  {
    "answer": "SELECT SUM(faculty) FROM faculty WHERE YEAR = 2002",
    "question_en": "How many faculty is there in total in the year of 2002?",
    "question_th": "ในปี พ.ศ. 2545 มีคณะทั้งหมดกี่คณะ?",
    "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_en": "What is the number of faculty lines in campus \"Long Beach State University\" in 2002?",
    "question_th": "จำนวนคณะในวิทยาเขต \"Long Beach State University\" ในปี 2545 คือเท่าใด",
    "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_en": "How many faculty lines are there in \"San Francisco State University\" in year 2004?",
    "question_th": "ในปี 2547 \"San Francisco State University\" มีคณะกี่สาย?",
    "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_en": "List the campus that have between 600 and 1000 faculty lines in year 2004.",
    "question_th": "รายชื่อวิทยาเขตที่มีคณะระหว่าง 600 ถึง 1,000 สายในปี 2547",
    "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_en": "How many faculty lines are there in the university that conferred the most number of degrees in year 2002?",
    "question_th": "มีคณะกี่สายในมหาวิทยาลัยที่ได้รับปริญญามากที่สุดในปี พ.ศ. 2545",
    "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_en": "How many faculty lines are there in the university that conferred the least number of degrees in year 2001?",
    "question_th": "มีคณะกี่สายในมหาวิทยาลัยที่ได้รับปริญญาน้อยที่สุดในปี 2544",
    "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_en": "How many undergraduates are there in \"San Jose State University\" in year 2004?",
    "question_th": "\"San Jose State University\" ในปี 2547 มีนักศึกษาระดับปริญญาตรีกี่คน",
    "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_en": "What is the number of graduates in \"San Francisco State University\" in year 2004?",
    "question_th": "จำนวนผู้สำเร็จการศึกษาใน \"San Francisco State University\" ในปี พ.ศ. 2547 เป็นเท่าใด",
    "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_en": "What is the campus fee of \"San Francisco State University\" in year 2000?",
    "question_th": "ค่าธรรมเนียมวิทยาเขตของ \"San Francisco State University\" ในปี 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_en": "Find the campus fee of \"San Jose State University\" in year 2000.",
    "question_th": "ค้นหาค่าธรรมเนียมวิทยาเขตของ \"San Jose State University\" ในปี 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_en": "How many CSU campuses are there?",
    "question_th": "CSU มีวิทยาเขตทั้งหมดกี่แห่ง?",
    "context": "CREATE TABLE campuses (Id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM candidate",
    "question_en": "How many candidates are there?",
    "question_th": "มีผู้สมัครกี่คน?",
    "context": "CREATE TABLE candidate (Id VARCHAR)"
  },
  {
    "answer": "SELECT poll_source FROM candidate GROUP BY poll_source ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "Which poll resource provided the most number of candidate information?",
    "question_th": "แหล่งข้อมูลการสำรวจใดที่ให้ข้อมูลผู้สมัครได้มากที่สุด",
    "context": "CREATE TABLE candidate (poll_source VARCHAR)"
  },
  {
    "answer": "SELECT support_rate FROM candidate ORDER BY support_rate DESC LIMIT 3",
    "question_en": "what are the top 3 highest support rates?",
    "question_th": "อัตราการสนับสนุนสูงสุด 3 อันดับแรกคืออะไร?",
    "context": "CREATE TABLE candidate (support_rate VARCHAR)"
  },
  {
    "answer": "SELECT Candidate_ID FROM candidate ORDER BY oppose_rate LIMIT 1",
    "question_en": "Find the id of the candidate who got the lowest oppose rate.",
    "question_th": "ค้นหารหัสของผู้สมัครที่มีอัตราการคัดค้านต่ำที่สุด",
    "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_en": "Please list support, consider, and oppose rates for each candidate in ascending order by unsure rate.",
    "question_th": "โปรดระบุการสนับสนุน พิจารณา และคัดค้านอัตราสำหรับผู้สมัครแต่ละคนโดยเรียงลำดับจากน้อยไปมากด้วยอัตราที่ไม่แน่นอน",
    "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_en": "which poll source does the highest oppose rate come from?",
    "question_th": "อัตราการคัดค้านสูงสุดมาจากแหล่งใด",
    "context": "CREATE TABLE candidate (poll_source VARCHAR, oppose_rate VARCHAR)"
  },
  {
    "answer": "SELECT name FROM people ORDER BY date_of_birth",
    "question_en": "List all people names in the order of their date of birth from old to young.",
    "question_th": "ระบุชื่อทุกคนตามลำดับวันเดือนปีเกิดตั้งแต่อายุมากจนถึงอายุน้อย",
    "context": "CREATE TABLE people (name VARCHAR, date_of_birth VARCHAR)"
  },
  {
    "answer": "SELECT AVG(height), AVG(weight) FROM people WHERE sex = 'M'",
    "question_en": "Find the average height and weight for all males (sex is M).",
    "question_th": "ค้นหาส่วนสูงและน้ำหนักโดยเฉลี่ยของผู้ชายทุกคน (เพศคือ M)",
    "context": "CREATE TABLE people (height INTEGER, weight INTEGER, sex VARCHAR)"
  },
  {
    "answer": "SELECT name FROM people WHERE height > 200 OR height < 190",
    "question_en": "find the names of people who are taller than 200 or lower than 190.",
    "question_th": "ค้นหาชื่อบุคคลที่สูงเกิน 200 หรือต่ำกว่า 190",
    "context": "CREATE TABLE people (name VARCHAR, height VARCHAR)"
  },
  {
    "answer": "SELECT AVG(weight), MIN(weight), sex FROM people GROUP BY sex",
    "question_en": "Find the average and minimum weight for each gender.",
    "question_th": "ค้นหาน้ำหนักเฉลี่ยและน้ำหนักขั้นต่ำของแต่ละเพศ",
    "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_en": "Find the name and gender of the candidate who got the highest support rate.",
    "question_th": "ค้นหาชื่อและเพศของผู้สมัครที่ได้รับการสนับสนุนสูงสุด",
    "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_en": "Find the name of the candidates whose oppose percentage is the lowest for each sex.",
    "question_th": "ค้นหารายชื่อผู้สมัครที่มีเปอร์เซนต์ฝ่ายตรงข้ามน้อยที่สุดในแต่ละเพศ",
    "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_en": "which gender got the highest average uncertain ratio.",
    "question_th": "เพศใดมีอัตราส่วนความไม่แน่นอนเฉลี่ยสูงสุด",
    "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_en": "what are the names of people who did not participate in the candidate election.",
    "question_th": "ผู้ที่ไม่เข้าร่วมการเลือกตั้งผู้สมัครชื่ออะไร",
    "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_en": "Find the names of the candidates whose support percentage is lower than their oppose rate.",
    "question_th": "ค้นหารายชื่อผู้สมัครที่มีเปอร์เซ็นต์การสนับสนุนต่ำกว่าอัตราที่คัดค้าน",
    "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_en": "how many people are there whose weight is higher than 85 for each gender?",
    "question_th": "มีกี่คนที่น้ำหนักเกิน 85 ในแต่ละเพศ?",
    "context": "CREATE TABLE people (sex VARCHAR, weight INTEGER)"
  },
  {
    "answer": "SELECT MAX(support_rate), MIN(consider_rate), MIN(oppose_rate) FROM candidate",
    "question_en": "find the highest support percentage, lowest consider rate and oppose rate of all candidates.",
    "question_th": "ค้นหาเปอร์เซ็นต์การสนับสนุนสูงสุด อัตราการพิจารณาต่ำสุด และอัตราการคัดค้านของผู้สมัครทั้งหมด",
    "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_en": "list all female (sex is F) candidate names in the alphabetical order.",
    "question_th": "รายชื่อผู้สมัครที่เป็นเพศหญิง (เพศคือ F) ทั้งหมดตามลำดับตัวอักษร",
    "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_en": "find the name of people whose height is lower than the average.",
    "question_th": "ค้นหาชื่อคนที่มีส่วนสูงต่ำกว่าค่าเฉลี่ย",
    "context": "CREATE TABLE people (name VARCHAR, height INTEGER)"
  },
  {
    "answer": "SELECT * FROM people",
    "question_en": "List all info about all people.",
    "question_th": "แสดงรายการข้อมูลทั้งหมดเกี่ยวกับทุกคน",
    "context": "CREATE TABLE people (Id VARCHAR)"
  },
  {
    "answer": "SELECT title FROM Movie WHERE director = 'Steven Spielberg'",
    "question_en": "Find the titles of all movies directed by steven spielberg.",
    "question_th": "ค้นหาชื่อภาพยนตร์ทั้งหมดที่กำกับโดยสตีเว่น สปีลเบิร์ก",
    "context": "CREATE TABLE Movie (title VARCHAR, director VARCHAR)"
  },
  {
    "answer": "SELECT title FROM Movie WHERE director = 'James Cameron' AND YEAR > 2000",
    "question_en": "What is the name of the movie produced after 2000 and directed by James Cameron?",
    "question_th": "ภาพยนตร์ที่ผลิตหลังปี 2000 และกำกับโดยเจมส์ คาเมรอนชื่ออะไร",
    "context": "CREATE TABLE Movie (title VARCHAR, director VARCHAR, YEAR VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Movie WHERE YEAR < 2000",
    "question_en": "How many movies were made before 2000?",
    "question_th": "ก่อนปี 2000 มีภาพยนตร์กี่เรื่องที่ถูกสร้างขึ้น?",
    "context": "CREATE TABLE Movie (YEAR INTEGER)"
  },
  {
    "answer": "SELECT director FROM Movie WHERE title = 'Avatar'",
    "question_en": "Who is the director of movie Avatar?",
    "question_th": "ใครเป็นผู้กำกับภาพยนตร์เรื่อง Avatar?",
    "context": "CREATE TABLE Movie (director VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Reviewer",
    "question_en": "How many reviewers listed?",
    "question_th": "มีผู้วิจารณ์กี่คนในรายการ?",
    "context": "CREATE TABLE Reviewer (Id VARCHAR)"
  },
  {
    "answer": "SELECT rID FROM Reviewer WHERE name LIKE \"%Mike%\"",
    "question_en": "What is the id of the reviewer whose name has substring “Mike”?",
    "question_th": "รหัสของผู้วิจารณ์ที่มีชื่อสตริงย่อยว่า “ไมค์” คืออะไร",
    "context": "CREATE TABLE Reviewer (rID VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT rID FROM Reviewer WHERE name = \"Daniel Lewis\"",
    "question_en": "What is the reviewer id of Daniel Lewis?",
    "question_th": "รหัสผู้วิจารณ์ของ Daniel Lewis คืออะไร",
    "context": "CREATE TABLE Reviewer (rID VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Rating WHERE stars > 3",
    "question_en": "What is the total number of ratings that has more than 3 stars?",
    "question_th": "คะแนนรวมที่มีมากกว่า 3 ดาวคือเท่าใด",
    "context": "CREATE TABLE Rating (stars INTEGER)"
  },
  {
    "answer": "SELECT MAX(stars), MIN(stars) FROM Rating",
    "question_en": "What is the lowest and highest rating star?",
    "question_th": "ดาวที่มีเรตติ้งต่ำสุดและสูงสุดคืออะไร?",
    "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_en": "Find all years that have a movie that received a rating of 4 or 5, and sort them in increasing order of year.",
    "question_th": "ค้นหาปีทั้งหมดที่มีภาพยนตร์ที่ได้รับเรตติ้ง 4 หรือ 5 และจัดเรียงตามปีที่เพิ่มขึ้น",
    "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_en": "What are the names of directors who directed movies with 5 star rating? Also return the title of these movies.",
    "question_th": "ผู้กำกับที่กำกับภาพยนตร์ระดับ 5 ดาวชื่ออะไร คืนชื่อเรื่องของภาพยนตร์เหล่านี้ด้วย",
    "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_en": "What is the average rating star for each reviewer?",
    "question_th": "คะแนนเฉลี่ยของผู้รีวิวแต่ละคนคือเท่าใด",
    "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_en": "Find the titles of all movies that have no ratings.",
    "question_th": "ค้นหาชื่อภาพยนตร์ทั้งหมดที่ไม่มีเรตติ้ง",
    "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_en": "Find the names of all reviewers who have ratings with a NULL value for the date.",
    "question_th": "ค้นหาชื่อของผู้วิจารณ์ทั้งหมดที่มีการให้คะแนนโดยมีค่า NULL สำหรับวันที่นั้น",
    "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_en": "What is the average rating stars and title for the oldest movie?",
    "question_th": "คะแนนเฉลี่ยของดาวและชื่อเรื่องของภาพยนตร์ที่เก่าแก่ที่สุดคือเท่าใด",
    "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_en": "What is the name of the most recent movie?",
    "question_th": "หนังเรื่องล่าสุดชื่ออะไรคะ?",
    "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_en": "What is the maximum stars and year for the most recent movie?",
    "question_th": "ภาพยนตร์ล่าสุดจะได้ดาวและปีสูงสุดคือเท่าใด",
    "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_en": "What is the names of movies whose created year is after all movies directed by Steven Spielberg?",
    "question_th": "ภาพยนตร์ที่มีปีสร้างชื่ออะไรตามชื่อภาพยนตร์ที่กำกับโดย 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_en": "What are the titles and directors of the movies whose star is greater than the average stars of the movies directed by James Cameron?",
    "question_th": "ชื่อเรื่องและผู้กำกับของภาพยนตร์ที่มีดารามากกว่าดาราทั่วไปของภาพยนตร์ที่กำกับโดยเจมส์ คาเมรอนคืออะไร",
    "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_en": "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.",
    "question_th": "ชื่อผู้วิจารณ์ ชื่อภาพยนตร์ ดาว และวันที่ให้คะแนน และจัดเรียงข้อมูลก่อนตามชื่อผู้วิจารณ์ จากนั้นตามชื่อภาพยนตร์ และสุดท้ายตามจำนวนดาว",
    "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_en": "Find the names of all reviewers who have contributed three or more ratings.",
    "question_th": "ค้นหาชื่อของผู้วิจารณ์ทั้งหมดที่ให้คะแนนตั้งแต่สามรายการขึ้นไป",
    "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_en": "Find the names of all reviewers who rated Gone with the Wind.",
    "question_th": "ค้นหาชื่อของผู้วิจารณ์ทั้งหมดที่ให้คะแนน 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_en": "Find the names of all directors whose movies are rated by Sarah Martinez.",
    "question_th": "ค้นหารายชื่อผู้กำกับทั้งหมดที่ได้รับการจัดอันดับภาพยนตร์โดย 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_en": "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.",
    "question_th": "สำหรับการจัดอันดับใดๆ ที่ชื่อผู้วิจารณ์เหมือนกันกับผู้กำกับภาพยนตร์ ให้ส่งคืนชื่อผู้วิจารณ์ ชื่อภาพยนตร์ และจำนวนดาว",
    "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_en": "Return all reviewer names and movie names together in a single list.",
    "question_th": "แสดงชื่อผู้วิจารณ์และชื่อภาพยนตร์ทั้งหมดไว้ด้วยกันในรายการเดียว",
    "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_en": "Find the titles of all movies not reviewed by Chris Jackson.",
    "question_th": "ค้นหาชื่อภาพยนตร์ทั้งหมดที่ไม่ได้ตรวจสอบโดย 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_en": "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.",
    "question_th": "สำหรับผู้กำกับทุกคนที่กำกับภาพยนตร์มากกว่าหนึ่งเรื่อง ให้ส่งคืนชื่อภาพยนตร์ทั้งหมดที่กำกับโดยพวกเขา พร้อมด้วยชื่อผู้กำกับ เรียงตามชื่อผู้กำกับ ตามด้วยชื่อภาพยนตร์",
    "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_en": "For directors who had more than one movie, return the titles and produced years of all movies directed by them.",
    "question_th": "สำหรับผู้กำกับที่มีภาพยนตร์มากกว่าหนึ่งเรื่อง ให้คืนชื่อเรื่องและผลิตภาพยนตร์ทั้งหมดที่กำกับโดยพวกเขาเป็นเวลาหลายปี",
    "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_en": "What are the names of the directors who made exactly one movie?",
    "question_th": "ผู้กำกับที่สร้างภาพยนตร์เรื่องหนึ่งเรื่องชื่ออะไร?",
    "context": "CREATE TABLE Movie (director VARCHAR)"
  },
  {
    "answer": "SELECT director FROM Movie WHERE director <> \"null\" GROUP BY director HAVING COUNT(*) = 1",
    "question_en": "What are the names of the directors who made exactly one movie excluding director NULL?",
    "question_th": "ชื่อของผู้กำกับที่สร้างภาพยนตร์หนึ่งเรื่องไม่รวมผู้กำกับ 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_en": "How many movie reviews does each director get?",
    "question_th": "ผู้กำกับแต่ละคนได้รับบทวิจารณ์ภาพยนตร์กี่เรื่อง?",
    "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_en": "Find the movies with the highest average rating. Return the movie titles and average rating.",
    "question_th": "ค้นหาภาพยนตร์ที่มีเรตติ้งเฉลี่ยสูงสุด กลับชื่อภาพยนตร์และเรตติ้งเฉลี่ย",
    "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_en": "What are the movie titles and average rating of the movies with the lowest average rating?",
    "question_th": "ชื่อภาพยนตร์และเรตติ้งเฉลี่ยของภาพยนตร์ที่มีเรตติ้งเฉลี่ยต่ำสุดคือเรื่องใด",
    "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_en": "What are the names and years of the movies that has the top 3 highest rating star?",
    "question_th": "หนังเรื่องไหนที่มีเรตติ้งสูงสุด 3 อันดับแรก มีชื่อและปีอะไรบ้าง?",
    "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_en": "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.",
    "question_th": "สำหรับผู้กำกับแต่ละคน ให้ส่งคืนชื่อผู้กำกับพร้อมกับชื่อภาพยนตร์ที่พวกเขากำกับซึ่งได้รับเรตติ้งสูงสุดในบรรดาภาพยนตร์ทั้งหมดของพวกเขา และมูลค่าของเรตติ้งนั้น ไม่ต้องสนใจภาพยนตร์ที่มีผู้กำกับเป็น 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_en": "Find the title and star rating of the movie that got the least rating star for each reviewer.",
    "question_th": "ค้นหาชื่อเรื่องและระดับดาวของภาพยนตร์ที่ได้รับคะแนนดาวน้อยที่สุดสำหรับผู้วิจารณ์แต่ละคน",
    "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_en": "Find the title and score of the movie with the lowest rating among all movies directed by each director.",
    "question_th": "ค้นหาชื่อและคะแนนภาพยนตร์ที่มีเรตติ้งต่ำที่สุดในบรรดาภาพยนตร์ที่กำกับโดยผู้กำกับแต่ละคน",
    "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_en": "What is the name of the movie that is rated by most of times?",
    "question_th": "หนังที่ได้รับการเรตติ้งมากที่สุดชื่ออะไร?",
    "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_en": "What are the titles of all movies that have rating star is between 3 and 5?",
    "question_th": "ภาพยนตร์ทุกเรื่องที่มีเรตติ้งดาวอยู่ระหว่าง 3 ถึง 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_en": "Find the names of reviewers who had given higher than 3 star ratings.",
    "question_th": "ค้นหาชื่อผู้วิจารณ์ที่ให้คะแนนมากกว่า 3 ดาว",
    "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_en": "Find the average rating star for each movie that are not reviewed by Brittany Harris.",
    "question_th": "ค้นหาดาวเรตติ้งเฉลี่ยสำหรับภาพยนตร์แต่ละเรื่องที่บริตตานี แฮร์ริสไม่ได้วิจารณ์",
    "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_en": "What are the ids of the movies that are not reviewed by Brittany Harris.",
    "question_th": "รหัสของภาพยนตร์ที่ 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_en": "Find the average rating star for each movie that received at least 2 ratings.",
    "question_th": "ค้นหาดาวเรตติ้งเฉลี่ยของภาพยนตร์แต่ละเรื่องที่ได้รับเรตติ้งอย่างน้อย 2 เรตติ้ง",
    "context": "CREATE TABLE Rating (mID VARCHAR, stars INTEGER)"
  },
  {
    "answer": "SELECT rID FROM Rating EXCEPT SELECT rID FROM Rating WHERE stars = 4",
    "question_en": "find the ids of reviewers who did not give 4 star.",
    "question_th": "ค้นหารหัสของผู้วิจารณ์ที่ไม่ได้ให้ 4 ดาว",
    "context": "CREATE TABLE Rating (rID VARCHAR, stars VARCHAR)"
  },
  {
    "answer": "SELECT rID FROM Rating WHERE stars <> 4",
    "question_en": "Find the ids of reviewers who didn't only give 4 star.",
    "question_th": "ค้นหารหัสของผู้วิจารณ์ที่ไม่ได้ให้แค่ 4 ดาวเท่านั้น",
    "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_en": "What are names of the movies that are either made after 2000 or reviewed by Brittany Harris?",
    "question_th": "ภาพยนตร์ชื่ออะไรที่สร้างขึ้นหลังปี 2000 หรือวิจารณ์โดย 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_en": "What are names of the movies that are either made before 1980 or directed by James Cameron?",
    "question_th": "ภาพยนตร์ที่สร้างก่อนปี 1980 หรือกำกับโดยเจมส์ คาเมรอนชื่ออะไร",
    "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_en": "What are the names of reviewers who had rated 3 star and 4 star?",
    "question_th": "ผู้วิจารณ์ที่ให้คะแนน 3 ดาวและ 4 ดาวชื่ออะไร",
    "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_en": "What are the names of movies that get 3 star and 4 star?",
    "question_th": "หนังที่ได้ 3 ดาว และ 4 ดาว ชื่ออะไรคะ?",
    "context": "CREATE TABLE Rating (mID VARCHAR, stars VARCHAR); CREATE TABLE Movie (title VARCHAR, mID VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM county_public_safety",
    "question_en": "How many counties are there?",
    "question_th": "มีกี่จังหวัด?",
    "context": "CREATE TABLE county_public_safety (Id VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM county_public_safety ORDER BY Population DESC",
    "question_en": "List the names of counties in descending order of population.",
    "question_th": "รายชื่อจังหวัดตามลำดับจำนวนประชากรจากมากไปน้อย",
    "context": "CREATE TABLE county_public_safety (Name VARCHAR, Population VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT Police_force FROM county_public_safety WHERE LOCATION <> \"East\"",
    "question_en": "List the distinct police forces of counties whose location is not on east side.",
    "question_th": "รายชื่อกองกำลังตำรวจที่แตกต่างกันของเทศมณฑลซึ่งไม่ได้ตั้งอยู่ทางด้านตะวันออก",
    "context": "CREATE TABLE county_public_safety (Police_force VARCHAR, LOCATION VARCHAR)"
  },
  {
    "answer": "SELECT MIN(Crime_rate), MAX(Crime_rate) FROM county_public_safety",
    "question_en": "What are the minimum and maximum crime rate of counties?",
    "question_th": "อัตราอาชญากรรมขั้นต่ำและสูงสุดของเทศมณฑลคือเท่าไร?",
    "context": "CREATE TABLE county_public_safety (Crime_rate INTEGER)"
  },
  {
    "answer": "SELECT Crime_rate FROM county_public_safety ORDER BY Police_officers",
    "question_en": "Show the crime rates of counties in ascending order of number of police officers.",
    "question_th": "แสดงอัตราการเกิดอาชญากรรมของเทศมณฑลโดยเรียงตามจำนวนเจ้าหน้าที่ตำรวจจากน้อยไปหามาก",
    "context": "CREATE TABLE county_public_safety (Crime_rate VARCHAR, Police_officers VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM city ORDER BY Name",
    "question_en": "What are the names of cities in ascending alphabetical order?",
    "question_th": "เมืองต่างๆ เรียงตามตัวอักษรชื่ออะไร?",
    "context": "CREATE TABLE city (Name VARCHAR)"
  },
  {
    "answer": "SELECT Hispanic FROM city WHERE Black > 10",
    "question_en": "What are the percentage of hispanics in cities with the black percentage higher than 10?",
    "question_th": "เปอร์เซ็นต์ของชาวฮิสแปนิกในเมืองที่มีเปอร์เซ็นต์คนผิวดำสูงกว่า 10 เป็นเท่าใด",
    "context": "CREATE TABLE city (Hispanic VARCHAR, Black INTEGER)"
  },
  {
    "answer": "SELECT Name FROM county_public_safety ORDER BY Population DESC LIMIT 1",
    "question_en": "List the name of the county with the largest population.",
    "question_th": "รายชื่อจังหวัดที่มีประชากรมากที่สุด",
    "context": "CREATE TABLE county_public_safety (Name VARCHAR, Population VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM city ORDER BY White DESC LIMIT 5",
    "question_en": "List the names of the city with the top 5 white percentages.",
    "question_th": "รายชื่อเมืองที่มีเปอร์เซ็นต์คนผิวขาว 5 อันดับแรก",
    "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_en": "Show names of cities and names of counties they are in.",
    "question_th": "แสดงชื่อเมืองและชื่อมณฑลที่อยู่",
    "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_en": "Show white percentages of cities and the crime rates of counties they are in.",
    "question_th": "แสดงเปอร์เซ็นต์ของเมืองสีขาวและอัตราอาชญากรรมของเทศมณฑลที่พวกเขาอยู่",
    "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_en": "Show the name of cities in the county that has the largest number of police officers.",
    "question_th": "แสดงชื่อเมืองในจังหวัดที่มีจำนวนเจ้าหน้าที่ตำรวจมากที่สุด",
    "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_en": "Show the number of cities in counties that have a population more than 20000.",
    "question_th": "แสดงจำนวนเมืองในเทศมณฑลที่มีประชากรมากกว่า 20,000 คน",
    "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_en": "Show the crime rate of counties with a city having white percentage more than 90.",
    "question_th": "แสดงอัตราการเกิดอาชญากรรมของมณฑลโดยเมืองที่มีเปอร์เซ็นต์คนผิวขาวมากกว่า 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_en": "Please show the police forces and the number of counties with each police force.",
    "question_th": "กรุณาแสดงกำลังตำรวจและจำนวนมณฑลในแต่ละกำลังตำรวจ",
    "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_en": "What is the location shared by most counties?",
    "question_th": "มณฑลส่วนใหญ่ใช้สถานที่ตั้งร่วมกันคือที่ใด",
    "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_en": "List the names of counties that do not have any cities.",
    "question_th": "รายชื่อจังหวัดที่ไม่มีเมือง",
    "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_en": "Show the police force shared by counties with location on the east and west.",
    "question_th": "แสดงกำลังตำรวจแบ่งตามมณฑลซึ่งมีที่ตั้งทางทิศตะวันออกและทิศตะวันตก",
    "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_en": "Show the names of cities in counties that have a crime rate less than 100.",
    "question_th": "แสดงชื่อเมืองในมณฑลที่มีอัตราการเกิดอาชญากรรมน้อยกว่า 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_en": "Show the case burden of counties in descending order of population.",
    "question_th": "แสดงภาระกรณีของเทศมณฑลโดยเรียงลำดับประชากรจากมากไปหาน้อย",
    "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_en": "Find the names of all modern rooms with a base price below $160 and two beds.",
    "question_th": "ค้นหาชื่อห้องพักทันสมัยทั้งหมดที่มีราคาพื้นฐานต่ำกว่า 160 ดอลลาร์และเตียง 2 เตียง",
    "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_en": "Find all the rooms that have a price higher than 160 and can accommodate more than 2 people. Report room names and ids.",
    "question_th": "พบห้องพักทั้งหมดที่มีราคาสูงกว่า 160 และสามารถรองรับได้มากกว่า 2 คน รายงานชื่อห้องและรหัส",
    "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_en": "Find the most popular room in the hotel. The most popular room is the room that had seen the largest number of reservations.",
    "question_th": "ค้นหาห้องพักยอดนิยมในโรงแรม ห้องที่ได้รับความนิยมมากที่สุดคือห้องที่มียอดจองมากที่สุด",
    "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_en": "How many kids stay in the rooms reserved by ROY SWEAZY?",
    "question_th": "มีเด็กเข้าพักในห้องที่ ROY SWEAZY จองไว้กี่คน",
    "context": "CREATE TABLE Reservations (kids VARCHAR, FirstName VARCHAR, LastName VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Reservations WHERE FirstName = \"ROY\" AND LastName = \"SWEAZY\"",
    "question_en": "How many times does ROY SWEAZY has reserved a room.",
    "question_th": "ROY SWEAZY จองห้องพักไปกี่ครั้งแล้ว",
    "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_en": "Which room has the highest rate? List the room's full name, rate, check in and check out date.",
    "question_th": "ห้องไหนมีเรทสูงสุด? แจ้งชื่อเต็มห้อง ราคา วันที่เช็คอินและเช็คเอาท์",
    "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_en": "How many adults stay in the room CONRAD SELBIG checked in on Oct 23, 2010?",
    "question_th": "มีผู้ใหญ่กี่คนที่เข้าพักในห้อง CONRAD SELBIG ที่เช็คอินเมื่อวันที่ 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_en": "How many kids stay in the room DAMIEN TRACHSEL checked in on Sep 21, 2010?",
    "question_th": "มีเด็กกี่คนที่เข้าพักในห้อง DAMIEN TRACSEL ที่เช็คอินเมื่อวันที่ 21 กันยายน 2010",
    "context": "CREATE TABLE Reservations (Kids VARCHAR, LastName VARCHAR, CheckIn VARCHAR, FirstName VARCHAR)"
  },
  {
    "answer": "SELECT SUM(beds) FROM Rooms WHERE bedtype = 'King'",
    "question_en": "How many king beds are there?",
    "question_th": "มีเตียงขนาดคิงไซส์กี่เตียง?",
    "context": "CREATE TABLE Rooms (beds INTEGER, bedtype VARCHAR)"
  },
  {
    "answer": "SELECT roomName, decor FROM Rooms WHERE bedtype = 'King' ORDER BY basePrice",
    "question_en": "List the names and decor of rooms that have a king bed. Sort the list by their price.",
    "question_th": "ระบุชื่อและการตกแต่งห้องที่มีเตียงคิงไซส์ จัดเรียงรายการตามราคา",
    "context": "CREATE TABLE Rooms (roomName VARCHAR, decor VARCHAR, bedtype VARCHAR, basePrice VARCHAR)"
  },
  {
    "answer": "SELECT roomName, basePrice FROM Rooms ORDER BY basePrice LIMIT 1",
    "question_en": "Which room has cheapest base price? List the room's name and the base price.",
    "question_th": "ห้องไหนมีราคาพื้นฐานที่ถูกที่สุด? ระบุชื่อห้องและราคาพื้นฐาน",
    "context": "CREATE TABLE Rooms (roomName VARCHAR, basePrice VARCHAR)"
  },
  {
    "answer": "SELECT decor FROM Rooms WHERE roomName = \"Recluse and defiance\"",
    "question_en": "What is the decor of room Recluse and defiance?",
    "question_th": "การตกแต่งห้องสันโดษและการท้าทายเป็นอย่างไร?",
    "context": "CREATE TABLE Rooms (decor VARCHAR, roomName VARCHAR)"
  },
  {
    "answer": "SELECT bedType, AVG(basePrice) FROM Rooms GROUP BY bedType",
    "question_en": "What is the average base price of different bed type? List bed type and average base price.",
    "question_th": "ราคาฐานเฉลี่ยของเตียงแต่ละประเภทคือเท่าไร? แสดงรายการประเภทเตียงและราคาฐานเฉลี่ย",
    "context": "CREATE TABLE Rooms (bedType VARCHAR, basePrice INTEGER)"
  },
  {
    "answer": "SELECT SUM(maxOccupancy) FROM Rooms WHERE decor = 'modern'",
    "question_en": "What is the total number of people who could stay in the modern rooms in this inn?",
    "question_th": "จำนวนคนทั้งหมดที่สามารถเข้าพักในห้องทันสมัยในโรงแรมแห่งนี้คือเท่าไร?",
    "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_en": "What kind of decor has the least number of reservations?",
    "question_th": "ของแต่งแบบไหนมีจำนวนจองน้อยที่สุด?",
    "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_en": "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.",
    "question_th": "ระบุจำนวนคนในห้องถึงจำนวนผู้เข้าพักสูงสุดของห้องกี่ครั้ง จำนวนคนมีทั้งผู้ใหญ่และเด็ก",
    "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_en": "Find the first and last names of people who payed more than the rooms' base prices.",
    "question_th": "ค้นหาชื่อและนามสกุลของผู้ที่ชำระค่าห้องพักมากกว่าราคาฐานของห้องพัก",
    "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_en": "How many rooms are there?",
    "question_th": "มีกี่ห้องคะ?",
    "context": "CREATE TABLE Rooms (Id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Rooms WHERE bedType = \"King\"",
    "question_en": "Find the number of rooms with a king bed.",
    "question_th": "ค้นหาจำนวนห้องที่มีเตียงคิงไซส์",
    "context": "CREATE TABLE Rooms (bedType VARCHAR)"
  },
  {
    "answer": "SELECT bedType, COUNT(*) FROM Rooms GROUP BY bedType",
    "question_en": "Find the number of rooms for each bed type.",
    "question_th": "ค้นหาจำนวนห้องสำหรับเตียงแต่ละประเภท",
    "context": "CREATE TABLE Rooms (bedType VARCHAR)"
  },
  {
    "answer": "SELECT roomName FROM Rooms ORDER BY maxOccupancy DESC LIMIT 1",
    "question_en": "Find the name of the room with the maximum occupancy.",
    "question_th": "ค้นหาชื่อห้องที่มีจำนวนผู้เข้าพักสูงสุด",
    "context": "CREATE TABLE Rooms (roomName VARCHAR, maxOccupancy VARCHAR)"
  },
  {
    "answer": "SELECT RoomId, roomName FROM Rooms ORDER BY basePrice DESC LIMIT 1",
    "question_en": "Find the id and name of the most expensive base price room.",
    "question_th": "ค้นหารหัสและชื่อห้องราคาฐานที่แพงที่สุด",
    "context": "CREATE TABLE Rooms (RoomId VARCHAR, roomName VARCHAR, basePrice VARCHAR)"
  },
  {
    "answer": "SELECT roomName, bedType FROM Rooms WHERE decor = \"traditional\"",
    "question_en": "List the type of bed and name of all traditional rooms.",
    "question_th": "ระบุประเภทเตียงและชื่อห้องแบบดั้งเดิมทั้งหมด",
    "context": "CREATE TABLE Rooms (roomName VARCHAR, bedType VARCHAR, decor VARCHAR)"
  },
  {
    "answer": "SELECT decor, COUNT(*) FROM Rooms WHERE bedType = \"King\" GROUP BY decor",
    "question_en": "Find the number of rooms with king bed for each decor type.",
    "question_th": "ค้นหาจำนวนห้องที่มีเตียงขนาดคิงไซส์สำหรับการตกแต่งแต่ละประเภท",
    "context": "CREATE TABLE Rooms (decor VARCHAR, bedType VARCHAR)"
  },
  {
    "answer": "SELECT decor, AVG(basePrice), MIN(basePrice) FROM Rooms GROUP BY decor",
    "question_en": "Find the average and minimum price of the rooms in different decor.",
    "question_th": "ค้นหาราคาเฉลี่ยและต่ำสุดของห้องที่มีการตกแต่งแบบต่างๆ",
    "context": "CREATE TABLE Rooms (decor VARCHAR, basePrice INTEGER)"
  },
  {
    "answer": "SELECT roomName FROM Rooms ORDER BY basePrice",
    "question_en": "List the name of all rooms sorted by their prices.",
    "question_th": "รายชื่อห้องทั้งหมดเรียงตามราคา",
    "context": "CREATE TABLE Rooms (roomName VARCHAR, basePrice VARCHAR)"
  },
  {
    "answer": "SELECT decor, COUNT(*) FROM Rooms WHERE basePrice > 120 GROUP BY decor",
    "question_en": "Find the number of rooms with price higher than 120 for different decor.",
    "question_th": "ค้นหาจำนวนห้องที่มีราคาสูงกว่า 120 สำหรับการตกแต่งที่แตกต่างกัน",
    "context": "CREATE TABLE Rooms (decor VARCHAR, basePrice INTEGER)"
  },
  {
    "answer": "SELECT roomName FROM Rooms WHERE bedType = \"King\" OR bedType = \"Queen\"",
    "question_en": "List the name of rooms with king or queen bed.",
    "question_th": "ระบุชื่อห้องที่มีเตียงขนาดคิงไซส์หรือเตียงควีนไซส์",
    "context": "CREATE TABLE Rooms (roomName VARCHAR, bedType VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT bedType) FROM Rooms",
    "question_en": "How many different types of beds are there?",
    "question_th": "เตียงนอนมีกี่แบบ?",
    "context": "CREATE TABLE Rooms (bedType VARCHAR)"
  },
  {
    "answer": "SELECT RoomId, roomName FROM Rooms ORDER BY basePrice DESC LIMIT 3",
    "question_en": "Find the name and id of the top 3 expensive rooms.",
    "question_th": "ค้นหาชื่อและรหัสของห้องราคาแพง 3 อันดับแรก",
    "context": "CREATE TABLE Rooms (RoomId VARCHAR, roomName VARCHAR, basePrice VARCHAR)"
  },
  {
    "answer": "SELECT roomName FROM Rooms WHERE basePrice > (SELECT AVG(basePrice) FROM Rooms)",
    "question_en": "Find the name of rooms whose price is higher than the average price.",
    "question_th": "ค้นหาชื่อห้องที่มีราคาสูงกว่าราคาเฉลี่ย",
    "context": "CREATE TABLE Rooms (roomName VARCHAR, basePrice INTEGER)"
  },
  {
    "answer": "SELECT COUNT(*) FROM rooms WHERE NOT roomid IN (SELECT DISTINCT room FROM reservations)",
    "question_en": "Find the number of rooms that do not have any reservation.",
    "question_th": "ค้นหาจำนวนห้องที่ไม่มีการจองใดๆ",
    "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_en": "Return the name and number of reservations made for each of the rooms.",
    "question_th": "แจ้งชื่อและจำนวนการจองของแต่ละห้อง",
    "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_en": "Find the names of rooms that have been reserved for more than 60 times.",
    "question_th": "ค้นหาชื่อห้องที่ถูกจองเกิน 60 ครั้ง",
    "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_en": "Find the name of rooms whose base price is between 120 and 150.",
    "question_th": "ค้นหาชื่อห้องที่มีราคาพื้นฐานอยู่ระหว่าง 120 ถึง 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_en": "Find the name of rooms booked by some customers whose first name contains ROY.",
    "question_th": "ค้นหาชื่อห้องที่จองโดยลูกค้าบางรายซึ่งมีชื่อจริงประกอบด้วย 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_en": "what are the details of the cmi masters that have the cross reference code 'Tax'?",
    "question_th": "รายละเอียดของ cmi masters ที่มีรหัสอ้างอิงโยง 'ภาษี' คืออะไร?",
    "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_en": "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.",
    "question_th": "รหัสอ้างอิงโยง cmi ที่เกี่ยวข้องกับรายการภาษีของสภาอย่างน้อยหนึ่งรายการคืออะไร แสดงรายการรหัสอ้างอิงโยงและรหัสระบบต้นทาง",
    "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_en": "How many business rates are related to each cmi cross reference? List cross reference id, master customer id and the n",
    "question_th": "อัตราธุรกิจจำนวนเท่าใดที่เกี่ยวข้องกับการอ้างอิงโยง Cmi แต่ละรายการ แสดงรายการรหัสอ้างอิงโยง รหัสลูกค้าหลัก และ 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_en": "What is the tax source system code related to the benefits and overpayments? List the code and the benifit id, order by benifit id.",
    "question_th": "รหัสระบบแหล่งภาษีที่เกี่ยวข้องกับสิทธิประโยชน์และการจ่ายเงินเกินคืออะไร? แสดงรายการรหัสและรหัสสิทธิประโยชน์ เรียงลำดับตามรหัสสิทธิประโยชน์",
    "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_en": "Wat is the tax source system code and master customer id of the taxes related to each parking fine id?",
    "question_th": "รหัสระบบแหล่งภาษีและรหัสลูกค้าหลักของภาษีที่เกี่ยวข้องกับรหัสค่าปรับที่จอดรถแต่ละแห่งคืออะไร?",
    "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_en": "What are the renting arrears tax ids related to the customer master index whose detail is not 'Schmidt, Kertzmann and Lubowitz'?",
    "question_th": "หมายเลขภาษีค่าเช่าค้างชำระที่เกี่ยวข้องกับดัชนีหลักของลูกค้าซึ่งมีรายละเอียดไม่ใช่ 'Schmidt, Kertzmann และ 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_en": "What are the register ids of electoral registries that have the cross reference source system code 'Electoral' or 'Tax'?",
    "question_th": "รหัสทะเบียนของสำนักทะเบียนการเลือกตั้งที่มีรหัสระบบแหล่งที่มาอ้างอิงโยง 'การเลือกตั้ง' หรือ 'ภาษี' คืออะไร",
    "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_en": "How many different source system code for the cmi cross references are there?",
    "question_th": "มีซอร์สโค้ดระบบที่แตกต่างกันจำนวนเท่าใดสำหรับการอ้างอิงโยง cmi",
    "context": "CREATE TABLE CMI_cross_references (source_system_code VARCHAR)"
  },
  {
    "answer": "SELECT * FROM customer_master_index ORDER BY cmi_details DESC",
    "question_en": "List all information about customer master index, and sort them by details in descending order.",
    "question_th": "แสดงรายการข้อมูลทั้งหมดเกี่ยวกับดัชนีหลักของลูกค้า และจัดเรียงตามรายละเอียดจากมากไปน้อย",
    "context": "CREATE TABLE customer_master_index (cmi_details VARCHAR)"
  },
  {
    "answer": "SELECT council_tax_id, cmi_cross_ref_id FROM parking_fines",
    "question_en": "List the council tax ids and their related cmi cross references of all the parking fines.",
    "question_th": "ระบุรหัสภาษีของสภาและการอ้างอิงโยง CMI ที่เกี่ยวข้องของค่าปรับที่จอดรถทั้งหมด",
    "context": "CREATE TABLE parking_fines (council_tax_id VARCHAR, cmi_cross_ref_id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM rent_arrears",
    "question_en": "How many council taxes are collected for renting arrears ?",
    "question_th": "จะมีการเก็บภาษีสภาสำหรับค่าเช่าที่ค้างชำระจำนวนเท่าใด?",
    "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_en": "What are the distinct cross reference source system codes which are related to the master customer details 'Gottlieb, Becker and Wyman'?",
    "question_th": "รหัสระบบแหล่งอ้างอิงโยงที่แตกต่างกันซึ่งเกี่ยวข้องกับรายละเอียดลูกค้าหลัก 'Gottlieb, Becker และ 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_en": "Which cmi cross reference id is not related to any parking taxes?",
    "question_th": "รหัสอ้างอิงโยง cmi ใดที่ไม่เกี่ยวข้องกับภาษีที่จอดรถใด ๆ",
    "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_en": "Which distinct source system code includes the substring 'en'?",
    "question_th": "รหัสระบบแหล่งที่มาที่แตกต่างกันใดที่มีสตริงย่อย 'en'",
    "context": "CREATE TABLE cmi_cross_references (source_system_code VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM party",
    "question_en": "How many parties are there?",
    "question_th": "มีกี่ฝ่าย?",
    "context": "CREATE TABLE party (Id VARCHAR)"
  },
  {
    "answer": "SELECT Party_Theme FROM party ORDER BY Number_of_hosts",
    "question_en": "List the themes of parties in ascending order of number of hosts.",
    "question_th": "ระบุหัวข้อของฝ่ายต่างๆ ตามลำดับจำนวนเจ้าภาพจากน้อยไปหามาก",
    "context": "CREATE TABLE party (Party_Theme VARCHAR, Number_of_hosts VARCHAR)"
  },
  {
    "answer": "SELECT Party_Theme, LOCATION FROM party",
    "question_en": "What are the themes and locations of parties?",
    "question_th": "ธีมปาร์ตี้และสถานที่จัดงานมีอะไรบ้าง?",
    "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_en": "Show the first year and last year of parties with theme \"Spring\" or \"Teqnology\".",
    "question_th": "แสดงปีแรกและปีสุดท้ายของงานปาร์ตี้ในธีม \"ฤดูใบไม้ผลิ\" หรือ \"เทคโนโลยี\"",
    "context": "CREATE TABLE party (First_year VARCHAR, Last_year VARCHAR, Party_Theme VARCHAR)"
  },
  {
    "answer": "SELECT AVG(Number_of_hosts) FROM party",
    "question_en": "What is the average number of hosts for parties?",
    "question_th": "จำนวนเจ้าภาพโดยเฉลี่ยสำหรับงานปาร์ตี้คือเท่าไร?",
    "context": "CREATE TABLE party (Number_of_hosts INTEGER)"
  },
  {
    "answer": "SELECT LOCATION FROM party ORDER BY Number_of_hosts DESC LIMIT 1",
    "question_en": "What is the location of the party with the most hosts?",
    "question_th": "สถานที่จัดงานที่มีเจ้าภาพมากที่สุดคือที่ไหน?",
    "context": "CREATE TABLE party (LOCATION VARCHAR, Number_of_hosts VARCHAR)"
  },
  {
    "answer": "SELECT Nationality, COUNT(*) FROM HOST GROUP BY Nationality",
    "question_en": "Show different nationalities along with the number of hosts of each nationality.",
    "question_th": "แสดงสัญชาติต่างๆ พร้อมจำนวนเจ้าภาพของแต่ละสัญชาติ",
    "context": "CREATE TABLE HOST (Nationality VARCHAR)"
  },
  {
    "answer": "SELECT Nationality FROM HOST GROUP BY Nationality ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "Show the most common nationality of hosts.",
    "question_th": "แสดงสัญชาติของเจ้าภาพที่พบบ่อยที่สุด",
    "context": "CREATE TABLE HOST (Nationality VARCHAR)"
  },
  {
    "answer": "SELECT Nationality FROM HOST WHERE Age > 45 INTERSECT SELECT Nationality FROM HOST WHERE Age < 35",
    "question_en": "Show the nations that have both hosts older than 45 and hosts younger than 35.",
    "question_th": "แสดงประเทศที่มีทั้งเจ้าภาพอายุมากกว่า 45 ปีและเจ้าบ้านอายุน้อยกว่า 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_en": "Show the themes of parties and the names of the party hosts.",
    "question_th": "แสดงธีมปาร์ตี้และชื่อเจ้าภาพปาร์ตี้",
    "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_en": "Show the locations of parties and the names of the party hosts in ascending order of the age of the host.",
    "question_th": "แสดงสถานที่จัดงานเลี้ยงและชื่อเจ้าภาพโดยเรียงตามอายุของเจ้าภาพจากน้อยไปหามาก",
    "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_en": "Show the locations of parties with hosts older than 50.",
    "question_th": "แสดงสถานที่จัดงานปาร์ตี้ที่มีเจ้าภาพอายุมากกว่า 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_en": "Show the host names for parties with number of hosts greater than 20.",
    "question_th": "แสดงชื่อโฮสต์สำหรับฝ่ายที่มีจำนวนโฮสต์มากกว่า 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_en": "Show the name and the nationality of the oldest host.",
    "question_th": "แสดงชื่อและสัญชาติของเจ้าภาพที่เก่าแก่ที่สุด",
    "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_en": "List the names of hosts who did not serve as a host of any party in our record.",
    "question_th": "ระบุชื่อของเจ้าภาพที่ไม่ได้ทำหน้าที่เป็นเจ้าภาพของฝ่ายใดๆ ในบันทึกของเรา",
    "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_en": "Show all region code and region name sorted by the codes.",
    "question_th": "แสดงรหัสภูมิภาคและชื่อภูมิภาคทั้งหมดเรียงตามรหัส",
    "context": "CREATE TABLE region (region_code VARCHAR, region_name VARCHAR)"
  },
  {
    "answer": "SELECT region_name FROM region ORDER BY region_name",
    "question_en": "List all region names in alphabetical order.",
    "question_th": "แสดงรายการชื่อภูมิภาคทั้งหมดตามลำดับตัวอักษร",
    "context": "CREATE TABLE region (region_name VARCHAR)"
  },
  {
    "answer": "SELECT region_name FROM region WHERE region_name <> 'Denmark'",
    "question_en": "Show names for all regions except for Denmark.",
    "question_th": "แสดงชื่อสำหรับทุกภูมิภาค ยกเว้นเดนมาร์ก",
    "context": "CREATE TABLE region (region_name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM storm WHERE Number_Deaths > 0",
    "question_en": "How many storms had death records?",
    "question_th": "มีพายุกี่ลูกที่มีบันทึกการเสียชีวิต?",
    "context": "CREATE TABLE storm (Number_Deaths INTEGER)"
  },
  {
    "answer": "SELECT name, dates_active, number_deaths FROM storm WHERE number_deaths >= 1",
    "question_en": "List name, dates active, and number of deaths for all storms with at least 1 death.",
    "question_th": "ชื่อรายการ วันที่เกิดเหตุการณ์ และจำนวนผู้เสียชีวิตสำหรับพายุทั้งหมดที่มีผู้เสียชีวิตอย่างน้อย 1 ราย",
    "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_en": "Show the average and maximum damage for all storms with max speed higher than 1000.",
    "question_th": "แสดงค่าเฉลี่ยและความเสียหายสูงสุดสำหรับพายุทั้งหมดด้วยความเร็วสูงสุดสูงกว่า 1,000",
    "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_en": "What is the total number of deaths and damage for all storms with a max speed greater than the average?",
    "question_th": "จำนวนผู้เสียชีวิตและความเสียหายรวมของพายุทั้งหมดที่มีความเร็วสูงสุดมากกว่าค่าเฉลี่ยคือเท่าใด?",
    "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_en": "List name and damage for all storms in a descending order of max speed.",
    "question_th": "รายชื่อและความเสียหายของพายุทั้งหมดโดยเรียงตามความเร็วสูงสุดจากมากไปหาน้อย",
    "context": "CREATE TABLE storm (name VARCHAR, damage_millions_USD VARCHAR, max_speed VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT region_id) FROM affected_region",
    "question_en": "How many regions are affected?",
    "question_th": "มีกี่ภูมิภาคที่ได้รับผลกระทบ?",
    "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_en": "Show the name for regions not affected.",
    "question_th": "แสดงชื่อภูมิภาคที่ไม่ได้รับผลกระทบ",
    "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_en": "Show the name for regions and the number of storms for each region.",
    "question_th": "แสดงชื่อภูมิภาคและจำนวนพายุในแต่ละภูมิภาค",
    "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_en": "List the name for storms and the number of affected regions for each storm.",
    "question_th": "ระบุชื่อพายุและจำนวนพื้นที่ที่ได้รับผลกระทบสำหรับพายุแต่ละลูก",
    "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_en": "What is the storm name and max speed which affected the greatest number of regions?",
    "question_th": "ชื่อพายุและความเร็วสูงสุดที่ส่งผลกระทบต่อภูมิภาคจำนวนมากที่สุดคืออะไร",
    "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_en": "Show the name of storms which don't have affected region in record.",
    "question_th": "แสดงชื่อพายุที่ไม่ส่งผลกระทบต่อภูมิภาคเป็นประวัติการณ์",
    "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_en": "Show storm name with at least two regions and 10 cities affected.",
    "question_th": "แสดงชื่อพายุอย่างน้อยสองภูมิภาคและ 10 เมืองที่ได้รับผลกระทบ",
    "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_en": "Show all storm names except for those with at least two affected regions.",
    "question_th": "แสดงชื่อพายุทั้งหมด ยกเว้นที่มีพื้นที่ได้รับผลกระทบอย่างน้อยสองแห่ง",
    "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_en": "What are the region names affected by the storm with a number of deaths of least 10?",
    "question_th": "ชื่อภูมิภาคที่ได้รับผลกระทบจากพายุและมีผู้เสียชีวิตอย่างน้อย 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_en": "Show all storm names affecting region \"Denmark\".",
    "question_th": "แสดงชื่อพายุทั้งหมดที่ส่งผลต่อภูมิภาค \"เดนมาร์ก\"",
    "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_en": "Show the region name with at least two storms.",
    "question_th": "แสดงชื่อภูมิภาคที่มีพายุอย่างน้อย 2 ลูก",
    "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_en": "Find the names of the regions which were affected by the storm that killed the greatest number of people.",
    "question_th": "ค้นหาชื่อของภูมิภาคที่ได้รับผลกระทบจากพายุที่คร่าชีวิตผู้คนไปมากที่สุด",
    "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_en": "Find the name of the storm that affected both Afghanistan and Albania regions.",
    "question_th": "ค้นหาชื่อพายุที่ส่งผลกระทบต่อทั้งภูมิภาคอัฟกานิสถานและแอลเบเนีย",
    "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_en": "How many counties are there in total?",
    "question_th": "มีทั้งหมดกี่จังหวัด?",
    "context": "CREATE TABLE county (Id VARCHAR)"
  },
  {
    "answer": "SELECT County_name, Population FROM county",
    "question_en": "Show the county name and population of all counties.",
    "question_th": "แสดงชื่อมณฑลและจำนวนประชากรของทุกมณฑล",
    "context": "CREATE TABLE county (County_name VARCHAR, Population VARCHAR)"
  },
  {
    "answer": "SELECT AVG(Population) FROM county",
    "question_en": "Show the average population of all counties.",
    "question_th": "แสดงจำนวนประชากรเฉลี่ยของทุกมณฑล",
    "context": "CREATE TABLE county (Population INTEGER)"
  },
  {
    "answer": "SELECT MAX(Population), MIN(Population) FROM county",
    "question_en": "Return the maximum and minimum population among all counties.",
    "question_th": "ส่งกลับจำนวนประชากรสูงสุดและต่ำสุดในทุกเทศมณฑล",
    "context": "CREATE TABLE county (Population INTEGER)"
  },
  {
    "answer": "SELECT DISTINCT District FROM election",
    "question_en": "Show all the distinct districts for elections.",
    "question_th": "แสดงเขตเลือกตั้งที่แตกต่างกันทั้งหมด",
    "context": "CREATE TABLE election (District VARCHAR)"
  },
  {
    "answer": "SELECT Zip_code FROM county WHERE County_name = \"Howard\"",
    "question_en": "Show the zip code of the county with name \"Howard\".",
    "question_th": "แสดงรหัสไปรษณีย์ของเทศมณฑล ชื่อ \"Howard\"",
    "context": "CREATE TABLE county (Zip_code VARCHAR, County_name VARCHAR)"
  },
  {
    "answer": "SELECT Delegate FROM election WHERE District = 1",
    "question_en": "Show the delegate from district 1 in election.",
    "question_th": "แสดงผู้แทนจากเขต 1 ในการเลือกตั้ง",
    "context": "CREATE TABLE election (Delegate VARCHAR, District VARCHAR)"
  },
  {
    "answer": "SELECT Delegate, Committee FROM election",
    "question_en": "Show the delegate and committee information of elections.",
    "question_th": "แสดงข้อมูลผู้แทนและคณะกรรมการการเลือกตั้ง",
    "context": "CREATE TABLE election (Delegate VARCHAR, Committee VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT Governor) FROM party",
    "question_en": "How many distinct governors are there?",
    "question_th": "มีผู้ว่าราชการที่แตกต่างกันกี่คน?",
    "context": "CREATE TABLE party (Governor VARCHAR)"
  },
  {
    "answer": "SELECT Lieutenant_Governor, Comptroller FROM party WHERE Party = \"Democratic\"",
    "question_en": "Show the lieutenant governor and comptroller from the democratic party.",
    "question_th": "แสดงรองผู้ว่าการและผู้ควบคุมจากพรรคประชาธิปัตย์",
    "context": "CREATE TABLE party (Lieutenant_Governor VARCHAR, Comptroller VARCHAR, Party VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT YEAR FROM party WHERE Governor = \"Eliot Spitzer\"",
    "question_en": "In which distinct years was the governor \"Eliot Spitzer\"?",
    "question_th": "ผู้ว่าการ \"เอเลียต สปิตเซอร์\" เป็นผู้ว่าราชการในปีใดที่แตกต่างกัน",
    "context": "CREATE TABLE party (YEAR VARCHAR, Governor VARCHAR)"
  },
  {
    "answer": "SELECT * FROM election",
    "question_en": "Show all the information about election.",
    "question_th": "แสดงข้อมูลทั้งหมดเกี่ยวกับการเลือกตั้ง",
    "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_en": "Show the delegates and the names of county they belong to.",
    "question_th": "แสดงผู้แทนและชื่อเขตที่พวกเขาอยู่",
    "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_en": "Which delegates are from counties with population smaller than 100000?",
    "question_th": "ผู้แทนคนไหนมาจากเทศมณฑลที่มีประชากรน้อยกว่า 100,000 คน",
    "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_en": "How many distinct delegates are from counties with population larger than 50000?",
    "question_th": "มีผู้แทนที่แตกต่างกันกี่คนจากมณฑลที่มีประชากรมากกว่า 50,000 คน",
    "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_en": "What are the names of the county that the delegates on \"Appropriations\" committee belong to?",
    "question_th": "มณฑลที่ผู้แทนในคณะกรรมการ \"การจัดสรร\" มีชื่ออะไรบ้าง?",
    "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_en": "Show the delegates and the names of the party they belong to.",
    "question_th": "แสดงผู้ร่วมประชุมและชื่อของฝ่ายที่พวกเขาอยู่",
    "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_en": "Who were the governors of the parties associated with delegates from district 1?",
    "question_th": "ใครคือผู้ว่าการของฝ่ายต่างๆ ที่เกี่ยวข้องกับผู้แทนจากเขต 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_en": "Who were the comptrollers of the parties associated with the delegates from district 1 or district 2?",
    "question_th": "ใครคือผู้ควบคุมฝ่ายที่เกี่ยวข้องกับผู้แทนจากเขต 1 หรือเขต 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_en": "Return all the committees that have delegates from Democratic party.",
    "question_th": "คืนคณะกรรมการทั้งหมดที่มีผู้แทนจากพรรคประชาธิปัตย์",
    "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_en": "Show the name of each county along with the corresponding number of delegates from that county.",
    "question_th": "แสดงชื่อของแต่ละเทศมณฑลพร้อมกับจำนวนผู้แทนจากเทศมณฑลนั้นๆ",
    "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_en": "Show the name of each party and the corresponding number of delegates from that party.",
    "question_th": "แสดงชื่อของแต่ละฝ่ายและจำนวนผู้ร่วมประชุมจากฝ่ายนั้น",
    "context": "CREATE TABLE election (Party VARCHAR); CREATE TABLE party (Party VARCHAR, Party_ID VARCHAR)"
  },
  {
    "answer": "SELECT County_name FROM county ORDER BY Population",
    "question_en": "Return the names of all counties sorted by population in ascending order.",
    "question_th": "ส่งกลับชื่อของมณฑลทั้งหมดโดยเรียงตามจำนวนประชากรจากน้อยไปหามาก",
    "context": "CREATE TABLE county (County_name VARCHAR, Population VARCHAR)"
  },
  {
    "answer": "SELECT County_name FROM county ORDER BY County_name DESC",
    "question_en": "Return the names of all counties sorted by county name in descending alphabetical order.",
    "question_th": "ส่งกลับชื่อของมณฑลทั้งหมดโดยเรียงตามชื่อเทศมณฑลตามลำดับตัวอักษรจากมากไปหาน้อย",
    "context": "CREATE TABLE county (County_name VARCHAR)"
  },
  {
    "answer": "SELECT County_name FROM county ORDER BY Population DESC LIMIT 1",
    "question_en": "Show the name of the county with the biggest population.",
    "question_th": "แสดงชื่อจังหวัดที่มีประชากรมากที่สุด",
    "context": "CREATE TABLE county (County_name VARCHAR, Population VARCHAR)"
  },
  {
    "answer": "SELECT County_name FROM county ORDER BY Population LIMIT 3",
    "question_en": "Show the 3 counties with the smallest population.",
    "question_th": "แสดง 3 มณฑลที่มีประชากรน้อยที่สุด",
    "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_en": "Show the names of counties that have at least two delegates.",
    "question_th": "แสดงชื่อมณฑลที่มีผู้แทนอย่างน้อยสองคน",
    "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_en": "Show the name of the party that has at least two records.",
    "question_th": "แสดงชื่อของฝ่ายที่มีอย่างน้อยสองเรกคอร์ด",
    "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_en": "Show the name of the party that has the most delegates.",
    "question_th": "แสดงชื่อพรรคที่มีผู้ร่วมประชุมมากที่สุด",
    "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_en": "Show the people that have been governor the most times.",
    "question_th": "แสดงให้คนที่ได้เป็นเจ้าเมืองบ่อยที่สุด",
    "context": "CREATE TABLE party (Governor VARCHAR)"
  },
  {
    "answer": "SELECT Comptroller, COUNT(*) FROM party GROUP BY Comptroller ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "Show the people that have been comptroller the most times and the corresponding number of times.",
    "question_th": "แสดงผู้ที่ถูกควบคุมมากที่สุดและจำนวนครั้งที่สอดคล้องกัน",
    "context": "CREATE TABLE party (Comptroller VARCHAR)"
  },
  {
    "answer": "SELECT Party FROM party WHERE NOT Party_ID IN (SELECT Party FROM election)",
    "question_en": "What are the names of parties that do not have delegates in election?",
    "question_th": "พรรคที่ไม่มีผู้แทนในการเลือกตั้งมีชื่ออะไรบ้าง?",
    "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_en": "What are the names of parties that have both delegates on \"Appropriations\" committee and",
    "question_th": "ชื่อพรรคที่มีผู้แทนทั้งคณะกรรมการ \"จัดสรร\" และ",
    "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_en": "Which committees have delegates from both democratic party and liberal party?",
    "question_th": "คณะกรรมการชุดไหนมีผู้แทนจากทั้งพรรคประชาธิปัตย์และพรรคเสรีนิยม?",
    "context": "CREATE TABLE election (Committee VARCHAR, Party VARCHAR); CREATE TABLE party (Party_ID VARCHAR, Party VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM journalist",
    "question_en": "How many journalists are there?",
    "question_th": "มีนักข่าวกี่คน?",
    "context": "CREATE TABLE journalist (Id VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM journalist ORDER BY Years_working",
    "question_en": "List the names of journalists in ascending order of years working.",
    "question_th": "รายชื่อนักข่าวโดยเรียงตามอายุงานจากน้อยไปหามาก",
    "context": "CREATE TABLE journalist (Name VARCHAR, Years_working VARCHAR)"
  },
  {
    "answer": "SELECT Nationality, Age FROM journalist",
    "question_en": "What are the nationalities and ages of journalists?",
    "question_th": "นักข่าวมีสัญชาติและอายุเท่าไร?",
    "context": "CREATE TABLE journalist (Nationality VARCHAR, Age VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM journalist WHERE Nationality = \"England\" OR Nationality = \"Wales\"",
    "question_en": "Show the names of journalists from \"England\" or \"Wales\".",
    "question_th": "แสดงชื่อนักข่าวจาก \"อังกฤษ\" หรือ \"เวลส์\"",
    "context": "CREATE TABLE journalist (Name VARCHAR, Nationality VARCHAR)"
  },
  {
    "answer": "SELECT AVG(Years_working) FROM journalist",
    "question_en": "What is the average number of years spent working as a journalist?",
    "question_th": "การทำงานเป็นนักข่าวใช้เวลาโดยเฉลี่ยกี่ปี?",
    "context": "CREATE TABLE journalist (Years_working INTEGER)"
  },
  {
    "answer": "SELECT Nationality FROM journalist ORDER BY Years_working DESC LIMIT 1",
    "question_en": "What is the nationality of the journalist with the largest number of years working?",
    "question_th": "นักข่าวสัญชาติอะไรและมีจำนวนปีทำงานมากที่สุด?",
    "context": "CREATE TABLE journalist (Nationality VARCHAR, Years_working VARCHAR)"
  },
  {
    "answer": "SELECT Nationality, COUNT(*) FROM journalist GROUP BY Nationality",
    "question_en": "Show the different nationalities and the number of journalists of each nationality.",
    "question_th": "แสดงเชื้อชาติและจำนวนนักข่าวแต่ละสัญชาติ",
    "context": "CREATE TABLE journalist (Nationality VARCHAR)"
  },
  {
    "answer": "SELECT Nationality FROM journalist GROUP BY Nationality ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "Show the most common nationality for journalists.",
    "question_th": "แสดงสัญชาติที่พบบ่อยที่สุดสำหรับนักข่าว",
    "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_en": "Show the nations that have both journalists with more than 10 years of working and journalists with less than 3 years of working.",
    "question_th": "แสดงประเทศที่มีทั้งนักข่าวที่ทำงานมากกว่า 10 ปี และนักข่าวที่ทำงานน้อยกว่า 3 ปี",
    "context": "CREATE TABLE journalist (Nationality VARCHAR, Years_working INTEGER)"
  },
  {
    "answer": "SELECT Date, Name, venue FROM event ORDER BY Event_Attendance DESC",
    "question_en": "Show the dates, places, and names of events in descending order of the attendance.",
    "question_th": "แสดงวันที่ สถานที่ และชื่อของเหตุการณ์โดยเรียงลำดับจากมากไปน้อยของการเข้าร่วม",
    "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_en": "Show the names of journalists and the dates of the events they reported.",
    "question_th": "แสดงชื่อนักข่าวและวันที่ของเหตุการณ์ที่พวกเขารายงาน",
    "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_en": "Show the names of journalists and the names of the events they reported in ascending order",
    "question_th": "แสดงชื่อนักข่าวและชื่อเหตุการณ์ที่พวกเขารายงานโดยเรียงลำดับจากน้อยไปหามาก",
    "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_en": "Show the names of journalists and the number of events they reported.",
    "question_th": "แสดงชื่อนักข่าวและจำนวนเหตุการณ์ที่พวกเขารายงาน",
    "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_en": "Show the names of journalists that have reported more than one event.",
    "question_th": "แสดงรายชื่อนักข่าวที่รายงานเหตุการณ์มากกว่า 1 ครั้ง",
    "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_en": "List the names of journalists who have not reported any event.",
    "question_th": "รายชื่อนักข่าวที่ยังไม่ได้รายงานเหตุการณ์ใดๆ",
    "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_en": "what are the average and maximum attendances of all events?",
    "question_th": "ผู้เข้าร่วมงานทั้งหมดโดยเฉลี่ยและสูงสุดคือเท่าไร?",
    "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_en": "Find the average age and experience working length of journalists working on different role type.",
    "question_th": "ค้นหาอายุเฉลี่ยและประสบการณ์ในการทำงานของนักข่าวที่ทำงานตามบทบาทประเภทต่างๆ",
    "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_en": "List the event venues and names that have the top 2 most number of people attended.",
    "question_th": "ระบุสถานที่จัดงานและชื่อที่มีผู้เข้าร่วมมากที่สุด 2 อันดับแรก",
    "context": "CREATE TABLE event (venue VARCHAR, name VARCHAR, Event_Attendance VARCHAR)"
  },
  {
    "answer": "SELECT ResName FROM Restaurant",
    "question_en": "Show me all the restaurants.",
    "question_th": "แสดงร้านอาหารทั้งหมดให้ฉันดู",
    "context": "CREATE TABLE Restaurant (ResName VARCHAR)"
  },
  {
    "answer": "SELECT Address FROM Restaurant WHERE ResName = \"Subway\"",
    "question_en": "What is the address of the restaurant Subway?",
    "question_th": "ที่อยู่ของร้านอาหาร Subway คืออะไร?",
    "context": "CREATE TABLE Restaurant (Address VARCHAR, ResName VARCHAR)"
  },
  {
    "answer": "SELECT Rating FROM Restaurant WHERE ResName = \"Subway\"",
    "question_en": "What is the rating of the restaurant Subway?",
    "question_th": "เรตติ้งของร้านอาหาร Subway คือเท่าไร?",
    "context": "CREATE TABLE Restaurant (Rating VARCHAR, ResName VARCHAR)"
  },
  {
    "answer": "SELECT ResTypeName FROM Restaurant_Type",
    "question_en": "List all restaurant types.",
    "question_th": "รายชื่อร้านอาหารทุกประเภท",
    "context": "CREATE TABLE Restaurant_Type (ResTypeName VARCHAR)"
  },
  {
    "answer": "SELECT ResTypeDescription FROM Restaurant_Type WHERE ResTypeName = \"Sandwich\"",
    "question_en": "What is the description of the restaurant type Sandwich?",
    "question_th": "ร้านอาหารประเภทแซนด์วิชมีคำอธิบายว่าอย่างไร?",
    "context": "CREATE TABLE Restaurant_Type (ResTypeDescription VARCHAR, ResTypeName VARCHAR)"
  },
  {
    "answer": "SELECT ResName, Rating FROM Restaurant ORDER BY Rating DESC LIMIT 1",
    "question_en": "Which restaurants have highest rating? List the restaurant name and its rating.",
    "question_th": "ร้านอาหารใดได้รับคะแนนสูงสุด? ระบุชื่อร้านอาหารและคะแนน",
    "context": "CREATE TABLE Restaurant (ResName VARCHAR, Rating VARCHAR)"
  },
  {
    "answer": "SELECT Age FROM Student WHERE Fname = \"Linda\" AND Lname = \"Smith\"",
    "question_en": "What is the age of student Linda Smith?",
    "question_th": "นักเรียนลินดา สมิธอายุเท่าไหร่?",
    "context": "CREATE TABLE Student (Age VARCHAR, Fname VARCHAR, Lname VARCHAR)"
  },
  {
    "answer": "SELECT Sex FROM Student WHERE Fname = \"Linda\" AND Lname = \"Smith\"",
    "question_en": "What is the gender of the student Linda Smith?",
    "question_th": "นักเรียนลินดา สมิธเป็นเพศอะไร",
    "context": "CREATE TABLE Student (Sex VARCHAR, Fname VARCHAR, Lname VARCHAR)"
  },
  {
    "answer": "SELECT Fname, Lname FROM Student WHERE Major = 600",
    "question_en": "List all students' first names and last names who majored in 600.",
    "question_th": "รายชื่อและนามสกุลของนักศึกษาทุกคนที่เรียนวิชาเอก 600",
    "context": "CREATE TABLE Student (Fname VARCHAR, Lname VARCHAR, Major VARCHAR)"
  },
  {
    "answer": "SELECT city_code FROM Student WHERE Fname = \"Linda\" AND Lname = \"Smith\"",
    "question_en": "Which city does student Linda Smith live in?",
    "question_th": "นักเรียน Linda Smith อาศัยอยู่ในเมืองใด",
    "context": "CREATE TABLE Student (city_code VARCHAR, Fname VARCHAR, Lname VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Student WHERE Advisor = 1121",
    "question_en": "Advisor 1121 has how many students?",
    "question_th": "ที่ปรึกษา 1121 มีนักเรียนกี่คน?",
    "context": "CREATE TABLE Student (Advisor VARCHAR)"
  },
  {
    "answer": "SELECT Advisor, COUNT(*) FROM Student GROUP BY Advisor ORDER BY COUNT(Advisor) DESC LIMIT 1",
    "question_en": "Which Advisor has most of students? List advisor and the number of students.",
    "question_th": "อาจารย์ที่ปรึกษาคนไหนมีนักเรียนมากที่สุด? รายชื่อที่ปรึกษาและจำนวนนักศึกษา",
    "context": "CREATE TABLE Student (Advisor VARCHAR)"
  },
  {
    "answer": "SELECT Major, COUNT(*) FROM Student GROUP BY Major ORDER BY COUNT(Major) LIMIT 1",
    "question_en": "Which major has least number of students? List the major and the number of students.",
    "question_th": "สาขาวิชาใดมีจำนวนนักศึกษาน้อยที่สุด? ระบุสาขาวิชาและจำนวนนักศึกษา",
    "context": "CREATE TABLE Student (Major VARCHAR)"
  },
  {
    "answer": "SELECT Major, COUNT(*) FROM Student GROUP BY Major HAVING COUNT(Major) BETWEEN 2 AND 30",
    "question_en": "Which major has between 2 and 30 number of students? List major and the number of students.",
    "question_th": "สาขาวิชาเอกใดมีจำนวนนักศึกษาระหว่าง 2 ถึง 30 คน รายชื่อเอกและจำนวนนักศึกษา",
    "context": "CREATE TABLE Student (Major VARCHAR)"
  },
  {
    "answer": "SELECT Fname, Lname FROM Student WHERE Age > 18 AND Major = 600",
    "question_en": "Which student's age is older than 18 and is majoring in 600? List each student's first and last name.",
    "question_th": "นักเรียนคนไหนอายุเกิน 18 ปี และเรียนเอก 600 ปี? ระบุชื่อและนามสกุลของนักเรียนแต่ละคน",
    "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_en": "List all female students age is older than 18 who is not majoring in 600. List students' first name and last name.",
    "question_th": "รายชื่อนักเรียนหญิงทุกคนที่มีอายุมากกว่า 18 ปี และไม่ได้เรียนวิชาเอกในปี 600 ให้ระบุชื่อและนามสกุลของนักเรียน",
    "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_en": "How many restaurant is the Sandwich type restaurant?",
    "question_th": "ร้านอาหารประเภทแซนวิชมีกี่ร้าน?",
    "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_en": "How long does student Linda Smith spend on the restaurant in total?",
    "question_th": "นักเรียน Linda Smith ใช้เวลาอยู่ที่ร้านอาหารทั้งหมดนานเท่าใด",
    "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_en": "How many times has the student Linda Smith visited Subway?",
    "question_th": "นักเรียน Linda Smith ไปที่ 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_en": "When did Linda Smith visit Subway?",
    "question_th": "Linda Smith ไปเยี่ยม 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_en": "At which restaurant did the students spend the least amount of time? List restaurant and the time students spent on in total.",
    "question_th": "นักเรียนใช้เวลาอยู่ที่ร้านอาหารใดน้อยที่สุด รายชื่อร้านอาหารและเวลาที่นักเรียนใช้ไปทั้งหมด",
    "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_en": "Which student visited restaurant most often? List student's first name and last name.",
    "question_th": "นักเรียนคนไหนไปร้านอาหารบ่อยที่สุด? ระบุชื่อและนามสกุลของนักเรียน",
    "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_en": "Find the ids of orders whose status is 'Success'.",
    "question_th": "ค้นหารหัสคำสั่งซื้อที่มีสถานะเป็น 'สำเร็จ'",
    "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_en": "Find the name and price of the product that has been ordered the greatest number of times.",
    "question_th": "ค้นหาชื่อและราคาของผลิตภัณฑ์ที่มีการสั่งซื้อมากที่สุด",
    "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_en": "Find the number of customers in total.",
    "question_th": "ค้นหาจำนวนลูกค้าทั้งหมด",
    "context": "CREATE TABLE customers (Id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT payment_method) FROM customers",
    "question_en": "How many different payment methods are there?",
    "question_th": "มีวิธีการชำระเงินที่แตกต่างกันกี่วิธี?",
    "context": "CREATE TABLE customers (payment_method VARCHAR)"
  },
  {
    "answer": "SELECT truck_details FROM trucks ORDER BY truck_licence_number",
    "question_en": "Show the details of all trucks in the order of their license number.",
    "question_th": "แสดงรายละเอียดของรถบรรทุกทั้งหมดตามลำดับหมายเลขใบอนุญาต",
    "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_en": "Find the name of the most expensive product.",
    "question_th": "ค้นหาชื่อผลิตภัณฑ์ที่แพงที่สุด",
    "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_en": "Find the names of customers who are not living in the state of California.",
    "question_th": "ค้นหาชื่อลูกค้าที่ไม่ได้อาศัยอยู่ในรัฐแคลิฟอร์เนีย",
    "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_en": "List the names and emails of customers who payed by Visa card.",
    "question_th": "ระบุชื่อและอีเมลของลูกค้าที่ชำระเงินด้วยบัตรวีซ่า",
    "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_en": "Find the names and phone numbers of customers living in California state.",
    "question_th": "ค้นหาชื่อและหมายเลขโทรศัพท์ของลูกค้าที่อาศัยอยู่ในรัฐแคลิฟอร์เนีย",
    "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_en": "Find the states which do not have any employee in their record.",
    "question_th": "ค้นหารัฐที่ไม่มีพนักงานอยู่ในบันทึก",
    "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_en": "List the names, phone numbers, and emails of all customers sorted by their dates of becoming customers.",
    "question_th": "ระบุชื่อ หมายเลขโทรศัพท์ และอีเมลของลูกค้าทั้งหมด เรียงตามวันที่เป็นลูกค้า",
    "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_en": "Find the name of the first 5 customers.",
    "question_th": "ค้นหาชื่อลูกค้า 5 คนแรก",
    "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_en": "Find the payment method that is used most frequently.",
    "question_th": "ค้นหาวิธีการชำระเงินที่ใช้บ่อยที่สุด",
    "context": "CREATE TABLE Customers (payment_method VARCHAR)"
  },
  {
    "answer": "SELECT route_name FROM Delivery_Routes ORDER BY route_name",
    "question_en": "List the names of all routes in alphabetic order.",
    "question_th": "รายชื่อเส้นทางทั้งหมดตามลำดับตัวอักษร",
    "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_en": "Find the name of route that has the highest number of deliveries.",
    "question_th": "ค้นหาชื่อเส้นทางที่มีจำนวนการส่งมอบสูงสุด",
    "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_en": "List the state names and the number of customers living in each state.",
    "question_th": "ระบุชื่อรัฐและจำนวนลูกค้าที่อาศัยอยู่ในแต่ละรัฐ",
    "context": "CREATE TABLE customer_addresses (address_id VARCHAR); CREATE TABLE addresses (state_province_county VARCHAR, address_id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM authors",
    "question_en": "How many authors are there?",
    "question_th": "มีผู้เขียนกี่คน?",
    "context": "CREATE TABLE authors (Id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM inst",
    "question_en": "How many institutions are there?",
    "question_th": "มีกี่สถาบัน?",
    "context": "CREATE TABLE inst (Id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM papers",
    "question_en": "How many papers are published in total?",
    "question_th": "มีตีพิมพ์ทั้งหมดกี่ฉบับ?",
    "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_en": "What are the titles of papers published by \"Jeremy Gibbons\"?",
    "question_th": "บทความที่จัดพิมพ์โดย \"เจเรมี กิบบอนส์\" มีชื่อว่าอะไร?",
    "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_en": "Find all the papers published by \"Aaron Turon\".",
    "question_th": "ค้นหาเอกสารทั้งหมดที่จัดพิมพ์โดย \"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_en": "How many papers have \"Atsushi Ohori\" published?",
    "question_th": "มีผลงานตีพิมพ์เรื่อง \"อัตสึชิ โอโฮริ\" กี่เรื่อง?",
    "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_en": "What is the name of the institution that \"Matthias Blume\" belongs to?",
    "question_th": "สถาบันที่ \"Matthias Blume\" สังกัดอยู่ชื่ออะไร?",
    "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_en": "Which institution does \"Katsuhiro Ueno\" belong to?",
    "question_th": "\"คัตสึฮิโระ อุเอโนะ\" สังกัดสถาบันใด?",
    "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_en": "Who belong to the institution \"University of Oxford\"? Show the first names and last names.",
    "question_th": "ใครอยู่ในสถาบัน \"University of Oxford\"? แสดงชื่อและนามสกุล",
    "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_en": "Which authors belong to the institution \"Google\"? Show the first names and last names.",
    "question_th": "ผู้เขียนคนไหนอยู่ในสถาบัน \"Google\"? แสดงชื่อและนามสกุล",
    "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_en": "What are the last names of the author of the paper titled \"Binders Unbound\"?",
    "question_th": "นามสกุลของผู้เขียนบทความเรื่อง \"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_en": "Find the first and last name of the author(s) who wrote the paper \"Nameless, Painless\".",
    "question_th": "ค้นหาชื่อและนามสกุลของผู้แต่งที่เขียนบทความเรื่อง 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_en": "What are the papers published under the institution \"Indiana University\"?",
    "question_th": "เอกสารเผยแพร่ภายใต้สถาบัน \"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_en": "Find all the papers published by the institution \"Google\".",
    "question_th": "ค้นหาเอกสารทั้งหมดที่เผยแพร่โดยสถาบัน \"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_en": "How many papers are published by the institution \"Tokohu University\"?",
    "question_th": "สถาบัน \"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_en": "Find the number of papers published by the institution \"University of Pennsylvania\".",
    "question_th": "ค้นหาจำนวนบทความที่จัดพิมพ์โดยสถาบัน \"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_en": "Find the papers which have \"Olin Shivers\" as an author.",
    "question_th": "ค้นหาบทความที่มี \"Olin Shivers\" เป็นผู้เขียน",
    "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_en": "Which papers have \"Stephanie Weirich\" as an author?",
    "question_th": "เอกสารใดบ้างที่มี \"สเตฟานี ไวริช\" เป็นผู้เขียน?",
    "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_en": "Which paper is published in an institution in \"USA\" and have \"Turon\" as its second author?",
    "question_th": "บทความใดที่ตีพิมพ์ในสถาบันใน \"สหรัฐอเมริกา\" และมี \"Turon\" เป็นผู้เขียนคนที่สอง",
    "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_en": "Find the titles of papers whose first author is affiliated with an institution in the country \"Japan\" and has last name \"Ohori\"?",
    "question_th": "ค้นหาชื่อบทความที่มีผู้เขียนคนแรกสังกัดสถาบันในประเทศ \"ญี่ปุ่น\" และมีนามสกุล \"โอโฮริ\"?",
    "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_en": "What is the last name of the author that has published the most papers?",
    "question_th": "นามสกุลของผู้เขียนที่มีผลงานตีพิมพ์มากที่สุดคืออะไร?",
    "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_en": "Retrieve the country that has published the most papers.",
    "question_th": "ดึงประเทศที่มีการตีพิมพ์เอกสารมากที่สุด",
    "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_en": "Find the name of the organization that has published the largest number of papers.",
    "question_th": "ค้นหาชื่อองค์กรที่มีการตีพิมพ์เอกสารจำนวนมากที่สุด",
    "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_en": "Find the titles of the papers that contain the word \"ML\".",
    "question_th": "ค้นหาชื่อบทความที่มีคำว่า \"ML\"",
    "context": "CREATE TABLE papers (title VARCHAR)"
  },
  {
    "answer": "SELECT title FROM papers WHERE title LIKE \"%Database%\"",
    "question_en": "Which paper's title contains the word \"Database\"?",
    "question_th": "บทความใดมีคำว่า \"ฐานข้อมูล\"",
    "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_en": "Find the first names of all the authors who have written a paper with title containing the word \"Functional\".",
    "question_th": "ค้นหาชื่อผู้แต่งทุกคนที่เขียนบทความที่มีชื่อเรื่องที่มีคำว่า \"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_en": "Find the last names of all the authors that have written a paper with title containing the word \"Monadic\".",
    "question_th": "ค้นหานามสกุลของผู้แต่งทุกคนที่เขียนบทความที่มีชื่อเรื่องที่มีคำว่า \"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_en": "Retrieve the title of the paper that has the largest number of authors.",
    "question_th": "ดึงชื่อบทความที่มีจำนวนผู้เขียนมากที่สุด",
    "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_en": "What is the first name of the author with last name \"Ueno\"?",
    "question_th": "ชื่อผู้แต่งนามสกุล \"อุเอโนะ\" คืออะไร?",
    "context": "CREATE TABLE authors (fname VARCHAR, lname VARCHAR)"
  },
  {
    "answer": "SELECT lname FROM authors WHERE fname = \"Amal\"",
    "question_en": "Find the last name of the author with first name \"Amal\".",
    "question_th": "ค้นหานามสกุลของผู้แต่งชื่อ \"อามาล\"",
    "context": "CREATE TABLE authors (lname VARCHAR, fname VARCHAR)"
  },
  {
    "answer": "SELECT fname FROM authors ORDER BY fname",
    "question_en": "Find the first names of all the authors ordered in alphabetical order.",
    "question_th": "ค้นหาชื่อผู้แต่งทั้งหมดโดยเรียงลำดับตามตัวอักษร",
    "context": "CREATE TABLE authors (fname VARCHAR)"
  },
  {
    "answer": "SELECT lname FROM authors ORDER BY lname",
    "question_en": "Retrieve all the last names of authors in alphabetical order.",
    "question_th": "ดึงนามสกุลของผู้แต่งทั้งหมดตามลำดับตัวอักษร",
    "context": "CREATE TABLE authors (lname VARCHAR)"
  },
  {
    "answer": "SELECT fname, lname FROM authors ORDER BY lname",
    "question_en": "Retrieve all the first and last names of authors in the alphabetical order of last names.",
    "question_th": "ดึงชื่อและนามสกุลของผู้แต่งทั้งหมดตามลำดับตัวอักษรของนามสกุล",
    "context": "CREATE TABLE authors (fname VARCHAR, lname VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT last_name) FROM actor",
    "question_en": "How many different last names do the actors and actresses have?",
    "question_th": "นักแสดงและนักแสดงมีนามสกุลต่างกันกี่ชื่อ?",
    "context": "CREATE TABLE actor (last_name VARCHAR)"
  },
  {
    "answer": "SELECT first_name FROM actor GROUP BY first_name ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "What is the most popular first name of the actors?",
    "question_th": "ชื่อนักแสดงที่ได้รับความนิยมมากที่สุดคืออะไร?",
    "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_en": "What is the most popular full name of the actors?",
    "question_th": "ชื่อเต็มของนักแสดงที่ได้รับความนิยมมากที่สุดคืออะไร?",
    "context": "CREATE TABLE actor (first_name VARCHAR, last_name VARCHAR)"
  },
  {
    "answer": "SELECT district FROM address GROUP BY district HAVING COUNT(*) >= 2",
    "question_en": "Which districts have at least two addresses?",
    "question_th": "เขตใดมีที่อยู่อย่างน้อยสองแห่ง?",
    "context": "CREATE TABLE address (district VARCHAR)"
  },
  {
    "answer": "SELECT phone, postal_code FROM address WHERE address = '1031 Daugavpils Parkway'",
    "question_en": "What is the phone number and postal code of the address 1031 Daugavpils Parkway?",
    "question_th": "หมายเลขโทรศัพท์และรหัสไปรษณีย์ของที่อยู่ 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_en": "Which city has the most addresses? List the city name, number of addresses, and city id.",
    "question_th": "เมืองใดมีที่อยู่มากที่สุด? ระบุชื่อเมือง จำนวนที่อยู่ และรหัสเมือง",
    "context": "CREATE TABLE address (city_id VARCHAR); CREATE TABLE city (city VARCHAR, city_id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM address WHERE district = 'California'",
    "question_en": "How many addresses are in the district of California?",
    "question_th": "มีที่อยู่กี่แห่งในเขตแคลิฟอร์เนีย",
    "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_en": "Which film is rented at a fee of 0.99 and has less than 3 in the inventory? List the film title and id.",
    "question_th": "ภาพยนตร์เรื่องไหนเช่าราคา 0.99 และมีสินค้าในคลังไม่ถึง 3 เรื่อง? ระบุชื่อภาพยนตร์และรหัส",
    "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_en": "How many cities are in Australia?",
    "question_th": "ออสเตรเลียมีกี่เมือง?",
    "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_en": "Which countries have at least 3 cities?",
    "question_th": "ประเทศใดมีอย่างน้อย 3 เมือง?",
    "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_en": "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.",
    "question_th": "ค้นหาวันที่ชำระเงินทั้งหมดสำหรับการชำระเงินที่มีมูลค่ามากกว่า 10 และการชำระเงินที่จัดการโดยพนักงานชื่อ 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_en": "How many customers have an active value of 1?",
    "question_th": "มีลูกค้ากี่รายที่มีมูลค่าใช้งานอยู่ที่ 1?",
    "context": "CREATE TABLE customer (active VARCHAR)"
  },
  {
    "answer": "SELECT title, rental_rate FROM film ORDER BY rental_rate DESC LIMIT 1",
    "question_en": "Which film has the highest rental rate? And what is the rate?",
    "question_th": "ภาพยนตร์เรื่องใดมีอัตราการเช่าสูงสุด? และอัตราเท่าไหร่?",
    "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_en": "Which film has the most number of actors or actresses? List the film name, film id and description.",
    "question_th": "ภาพยนตร์เรื่องใดมีนักแสดงมากที่สุด? ระบุชื่อภาพยนตร์ รหัสภาพยนตร์ และคำอธิบาย",
    "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_en": "Which film actor (actress) starred the most films? List his or her first name, last name and actor id.",
    "question_th": "นักแสดงภาพยนตร์คนไหนที่นำแสดงโดยภาพยนตร์มากที่สุด? ระบุชื่อ นามสกุล และรหัสนักแสดง",
    "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_en": "Which film actors (actresses) played a role in more than 30 films? List his or her first name and last name.",
    "question_th": "นักแสดงภาพยนตร์คนไหนที่มีบทบาทในภาพยนตร์มากกว่า 30 เรื่อง? ระบุชื่อและนามสกุลของเขาหรือเธอ",
    "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_en": "Which store owns most items?",
    "question_th": "ร้านค้าใดเป็นเจ้าของสินค้ามากที่สุด?",
    "context": "CREATE TABLE inventory (store_id VARCHAR)"
  },
  {
    "answer": "SELECT SUM(amount) FROM payment",
    "question_en": "What is the total amount of all payments?",
    "question_th": "จำนวนเงินที่ชำระทั้งหมดคือเท่าไร?",
    "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_en": "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.",
    "question_th": "ลูกค้ารายใดที่ชำระเงินอย่างน้อยหนึ่งครั้งและใช้จ่ายเงินน้อยที่สุด? ระบุชื่อ นามสกุล และรหัสประจำตัวของเขาหรือเธอ",
    "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_en": "What is the genre name of the film HUNGER ROOF?",
    "question_th": "ชื่อประเภทของภาพยนตร์เรื่อง 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_en": "How many films are there in each category? List the genre name, genre id and the count.",
    "question_th": "แต่ละหมวดมีภาพยนตร์กี่เรื่อง? ระบุชื่อประเภท รหัสประเภท และจำนวน",
    "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_en": "Which film has the most copies in the inventory? List both title and id.",
    "question_th": "ภาพยนตร์เรื่องใดมีสำเนามากที่สุดในสินค้าคงคลัง? ระบุทั้งชื่อและรหัส",
    "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_en": "What is the film title and inventory id of the item in the inventory which was rented most frequently?",
    "question_th": "ชื่อภาพยนตร์และรหัสสินค้าคงคลังของรายการในสินค้าคงคลังที่ถูกเช่าบ่อยที่สุดคืออะไร?",
    "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_en": "How many languages are in these films?",
    "question_th": "ภาพยนตร์เหล่านี้มีกี่ภาษา?",
    "context": "CREATE TABLE film (language_id VARCHAR)"
  },
  {
    "answer": "SELECT title FROM film WHERE rating = 'R'",
    "question_en": "What are all the movies rated as R? List the titles.",
    "question_th": "หนังเรื่องไหนได้เรท R บ้างคะ? รายชื่อชื่อเรื่อง",
    "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_en": "Where is store 1 located?",
    "question_th": "ที่ตั้งของ ร้าน 1 อยู่ที่ไหน?",
    "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_en": "Which staff handled least number of payments? List the full name and the id.",
    "question_th": "พนักงานคนไหนจัดการเรื่องการชำระเงินน้อยที่สุด? ระบุชื่อเต็มและรหัสประจำตัว",
    "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_en": "Which language does the film AIRPORT POLLOCK use? List the language name.",
    "question_th": "ภาพยนตร์เรื่อง AIRPORT POLLOCK ใช้ภาษาใด แสดงรายการชื่อภาษา",
    "context": "CREATE TABLE film (language_id VARCHAR, title VARCHAR); CREATE TABLE LANGUAGE (name VARCHAR, language_id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM store",
    "question_en": "How many stores are there?",
    "question_th": "มีกี่ร้านคะ?",
    "context": "CREATE TABLE store (Id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT rating) FROM film",
    "question_en": "How many kinds of different ratings are listed?",
    "question_th": "การให้คะแนนที่แตกต่างกันมีกี่ประเภท?",
    "context": "CREATE TABLE film (rating VARCHAR)"
  },
  {
    "answer": "SELECT title FROM film WHERE special_features LIKE '%Deleted Scenes%'",
    "question_en": "Which movies have 'Deleted Scenes' as a substring in the special feature?",
    "question_th": "ภาพยนตร์เรื่องใดที่มี 'ฉากที่ถูกลบ' เป็นสตริงย่อยในฟีเจอร์พิเศษนี้",
    "context": "CREATE TABLE film (title VARCHAR, special_features VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM inventory WHERE store_id = 1",
    "question_en": "How many items in inventory does store 1 have?",
    "question_th": "ร้านค้า 1 มีสินค้ากี่รายการ?",
    "context": "CREATE TABLE inventory (store_id VARCHAR)"
  },
  {
    "answer": "SELECT payment_date FROM payment ORDER BY payment_date LIMIT 1",
    "question_en": "When did the first payment happen?",
    "question_th": "การชำระเงินครั้งแรกเกิดขึ้นเมื่อใด?",
    "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_en": "Where does the customer with the first name Linda live? And what is her email?",
    "question_th": "ลูกค้าชื่อลินดาอาศัยอยู่ที่ไหน? แล้วอีเมลของเธอคืออะไร?",
    "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_en": "Find all the films longer than 100 minutes, or rated PG, except those who cost more than 200 for replacement. List the titles.",
    "question_th": "ค้นหาภาพยนตร์ทั้งหมดที่มีความยาวเกิน 100 นาที หรือเรต PG ยกเว้นภาพยนตร์ที่มีราคามากกว่า 200 เพื่อทดแทน รายชื่อชื่อเรื่อง",
    "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_en": "What is the first name and the last name of the customer who made the earliest rental?",
    "question_th": "ชื่อและนามสกุลของลูกค้าที่ทำการเช่าเร็วที่สุดคืออะไร?",
    "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_en": "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?",
    "question_th": "พนักงานที่เช่าหนังให้ลูกค้าชื่อเต็มว่าอะไรครับชื่อเอพริลและนามสกุลเบิร์นส์?",
    "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_en": "Which store has most the customers?",
    "question_th": "ร้านไหนมีลูกค้ามากที่สุด?",
    "context": "CREATE TABLE customer (store_id VARCHAR)"
  },
  {
    "answer": "SELECT amount FROM payment ORDER BY amount DESC LIMIT 1",
    "question_en": "What is the largest payment amount?",
    "question_th": "จำนวนเงินที่ชำระมากที่สุดคือเท่าไร?",
    "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_en": "Where does the staff member with the first name Elsa live?",
    "question_th": "พนักงานชื่อเอลซ่าอาศัยอยู่ที่ไหน?",
    "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_en": "What are the first names of customers who have not rented any films after '2005-08-23 02:06:01'?",
    "question_th": "ลูกค้าที่ไม่ได้เช่าภาพยนตร์หลังจาก '23-08-2548 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_en": "How many bank branches are there?",
    "question_th": "ธนาคารมีกี่สาขา?",
    "context": "CREATE TABLE bank (Id VARCHAR)"
  },
  {
    "answer": "SELECT SUM(no_of_customers) FROM bank",
    "question_en": "How many customers are there?",
    "question_th": "มีลูกค้ากี่คน?",
    "context": "CREATE TABLE bank (no_of_customers INTEGER)"
  },
  {
    "answer": "SELECT SUM(no_of_customers) FROM bank WHERE city = 'New York City'",
    "question_en": "Find the number of customers in the banks at New York City.",
    "question_th": "ค้นหาจำนวนลูกค้าในธนาคารที่นิวยอร์กซิตี้",
    "context": "CREATE TABLE bank (no_of_customers INTEGER, city VARCHAR)"
  },
  {
    "answer": "SELECT AVG(no_of_customers) FROM bank WHERE state = 'Utah'",
    "question_en": "Find the average number of customers in all banks of Utah state.",
    "question_th": "ค้นหาจำนวนลูกค้าโดยเฉลี่ยในทุกธนาคารของรัฐยูทาห์",
    "context": "CREATE TABLE bank (no_of_customers INTEGER, state VARCHAR)"
  },
  {
    "answer": "SELECT AVG(no_of_customers) FROM bank",
    "question_en": "Find the average number of customers cross all banks.",
    "question_th": "ค้นหาจำนวนลูกค้าเฉลี่ยที่ข้ามทุกธนาคาร",
    "context": "CREATE TABLE bank (no_of_customers INTEGER)"
  },
  {
    "answer": "SELECT city, state FROM bank WHERE bname = 'morningside'",
    "question_en": "Find the city and state of the bank branch named morningside.",
    "question_th": "ค้นหาเมืองและรัฐของสาขาธนาคารชื่อมอร์นิ่งไซด์",
    "context": "CREATE TABLE bank (city VARCHAR, state VARCHAR, bname VARCHAR)"
  },
  {
    "answer": "SELECT bname FROM bank WHERE state = 'New York'",
    "question_en": "Find the branch names of banks in the New York state.",
    "question_th": "ค้นหาชื่อสาขาของธนาคารในรัฐนิวยอร์ก",
    "context": "CREATE TABLE bank (bname VARCHAR, state VARCHAR)"
  },
  {
    "answer": "SELECT cust_name FROM customer ORDER BY acc_bal",
    "question_en": "List the name of all customers sorted by their account balance in ascending order.",
    "question_th": "รายชื่อลูกค้าทั้งหมดเรียงตามยอดคงเหลือในบัญชีจากน้อยไปหามาก",
    "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_en": "List the name of all different customers who have some loan sorted by their total loan amount.",
    "question_th": "ระบุชื่อของลูกค้าที่แตกต่างกันทั้งหมดที่มีสินเชื่อบางส่วนเรียงตามจำนวนเงินกู้ทั้งหมด",
    "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_en": "Find the state, account type, and credit score of the customer whose number of loan is 0.",
    "question_th": "ค้นหาสถานะ ประเภทบัญชี และคะแนนเครดิตของลูกค้าที่มีจำนวนสินเชื่อเป็น 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_en": "Find the number of different cities which banks are located at.",
    "question_th": "ค้นหาจำนวนเมืองต่างๆ ที่ธนาคารตั้งอยู่",
    "context": "CREATE TABLE bank (city VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT state) FROM bank",
    "question_en": "Find the number of different states which banks are located at.",
    "question_th": "ค้นหาจำนวนรัฐต่างๆ ที่ธนาคารตั้งอยู่",
    "context": "CREATE TABLE bank (state VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT acc_type) FROM customer",
    "question_en": "How many distinct types of accounts are there?",
    "question_th": "มีบัญชีที่แตกต่างกันกี่ประเภท?",
    "context": "CREATE TABLE customer (acc_type VARCHAR)"
  },
  {
    "answer": "SELECT cust_name, acc_bal FROM customer WHERE cust_name LIKE '%a%'",
    "question_en": "Find the name and account balance of the customer whose name includes the letter ‘a’.",
    "question_th": "ค้นหาชื่อและยอดคงเหลือในบัญชีของลูกค้าที่มีชื่อมีตัวอักษร 'a'",
    "context": "CREATE TABLE customer (cust_name VARCHAR, acc_bal VARCHAR)"
  },
  {
    "answer": "SELECT SUM(acc_bal) FROM customer WHERE state = 'Utah' OR state = 'Texas'",
    "question_en": "Find the total account balance of each customer from Utah or Texas.",
    "question_th": "ค้นหายอดเงินในบัญชีรวมของลูกค้าแต่ละรายจากยูทาห์หรือเท็กซัส",
    "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_en": "Find the name of customers who have both saving and checking account types.",
    "question_th": "ค้นหาชื่อลูกค้าที่มีทั้งประเภทบัญชีออมทรัพย์และบัญชีกระแสรายวัน",
    "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_en": "Find the name of customers who do not have an saving account.",
    "question_th": "ค้นหาชื่อลูกค้าที่ไม่มีบัญชีออมทรัพย์",
    "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_en": "Find the name of customers who do not have a loan with a type of Mortgages.",
    "question_th": "ค้นหาชื่อลูกค้าที่ไม่มีสินเชื่อประเภทจำนอง",
    "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_en": "Find the name of customers who have loans of both Mortgages and Auto.",
    "question_th": "ค้นหาชื่อลูกค้าที่มีสินเชื่อทั้งสินเชื่อจำนองและรถยนต์",
    "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_en": "Find the name of customers whose credit score is below the average credit scores of all customers.",
    "question_th": "ค้นหาชื่อลูกค้าที่มีคะแนนเครดิตต่ำกว่าคะแนนเครดิตเฉลี่ยของลูกค้าทั้งหมด",
    "context": "CREATE TABLE customer (cust_name VARCHAR, credit_score INTEGER)"
  },
  {
    "answer": "SELECT bname FROM bank ORDER BY no_of_customers DESC LIMIT 1",
    "question_en": "Find the branch name of the bank that has the most number of customers.",
    "question_th": "ค้นหาชื่อสาขาของธนาคารที่มีลูกค้ามากที่สุด",
    "context": "CREATE TABLE bank (bname VARCHAR, no_of_customers VARCHAR)"
  },
  {
    "answer": "SELECT cust_name FROM customer ORDER BY credit_score LIMIT 1",
    "question_en": "Find the name of customer who has the lowest credit score.",
    "question_th": "ค้นหาชื่อลูกค้าที่มีคะแนนเครดิตต่ำที่สุด",
    "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_en": "Find the name, account type, and account balance of the customer who has the highest credit score.",
    "question_th": "ค้นหาชื่อ ประเภทบัญชี และยอดคงเหลือในบัญชีของลูกค้าที่มีคะแนนเครดิตสูงสุด",
    "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_en": "Find the name of customer who has the highest amount of loans.",
    "question_th": "ค้นหาชื่อลูกค้าที่มีวงเงินกู้สูงสุด",
    "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_en": "Find the state which has the most number of customers.",
    "question_th": "ค้นหารัฐที่มีลูกค้ามากที่สุด",
    "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_en": "For each account type, find the average account balance of customers with credit score lower than 50.",
    "question_th": "สำหรับบัญชีแต่ละประเภท ให้ค้นหายอดบัญชีเฉลี่ยของลูกค้าที่มีคะแนนเครดิตต่ำกว่า 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_en": "For each state, find the total account balance of customers whose credit score is above 100.",
    "question_th": "สำหรับแต่ละรัฐ ให้ค้นหายอดคงเหลือในบัญชีทั้งหมดของลูกค้าที่มีคะแนนเครดิตสูงกว่า 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_en": "Find the total amount of loans offered by each bank branch.",
    "question_th": "ค้นหาจำนวนสินเชื่อทั้งหมดที่เสนอโดยแต่ละสาขาของธนาคาร",
    "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_en": "Find the name of customers who have more than one loan.",
    "question_th": "ค้นหาชื่อลูกค้าที่มีสินเชื่อมากกว่าหนึ่งรายการ",
    "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_en": "Find the name and account balance of the customers who have loans with a total amount of more than 5000.",
    "question_th": "ค้นหาชื่อและยอดเงินในบัญชีของลูกค้าที่มีสินเชื่อรวมมากกว่า 5,000",
    "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_en": "Find the name of bank branch that provided the greatest total amount of loans.",
    "question_th": "ค้นหาชื่อสาขาของธนาคารที่ให้สินเชื่อรวมมากที่สุด",
    "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_en": "Find the name of bank branch that provided the greatest total amount of loans to customers with credit score is less than 100.",
    "question_th": "ค้นหาชื่อสาขาธนาคารที่ให้สินเชื่อรวมสูงสุดแก่ลูกค้าที่มีคะแนนเครดิตน้อยกว่า 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_en": "Find the name of bank branches that provided some loans.",
    "question_th": "ค้นหาชื่อสาขาธนาคารที่ให้สินเชื่อบางส่วน",
    "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_en": "Find the name and credit score of the customers who have some loans.",
    "question_th": "ค้นหาชื่อและคะแนนเครดิตของลูกค้าที่มีสินเชื่อบางส่วน",
    "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_en": "Find the the name of the customers who have a loan with amount more than 3000.",
    "question_th": "ค้นหาชื่อลูกค้าที่มีวงเงินกู้ตั้งแต่ 3,000 ขึ้นไป",
    "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_en": "Find the city and name of bank branches that provide business loans.",
    "question_th": "ค้นหาเมืองและชื่อสาขาของธนาคารที่ให้บริการสินเชื่อธุรกิจ",
    "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_en": "Find the names of bank branches that have provided a loan to any customer whose credit score is below 100.",
    "question_th": "ค้นหาชื่อสาขาของธนาคารที่ให้สินเชื่อแก่ลูกค้าที่มีคะแนนเครดิตต่ำกว่า 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_en": "Find the total amount of loans provided by bank branches in the state of New York.",
    "question_th": "ค้นหาจำนวนเงินกู้ทั้งหมดที่สาขาของธนาคารในรัฐนิวยอร์กให้ไว้",
    "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_en": "Find the average credit score of the customers who have some loan.",
    "question_th": "ค้นหาคะแนนเครดิตเฉลี่ยของลูกค้าที่มีสินเชื่อบางส่วน",
    "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_en": "Find the average credit score of the customers who do not have any loan.",
    "question_th": "ค้นหาคะแนนเครดิตเฉลี่ยของลูกค้าที่ไม่มีสินเชื่อ",
    "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_en": "How many assessment notes are there in total?",
    "question_th": "มีบันทึกการประเมินทั้งหมดกี่ฉบับ?",
    "context": "CREATE TABLE ASSESSMENT_NOTES (Id VARCHAR)"
  },
  {
    "answer": "SELECT date_of_notes FROM Assessment_Notes",
    "question_en": "What are the dates of the assessment notes?",
    "question_th": "บันทึกการประเมินคือวันที่เท่าไร?",
    "context": "CREATE TABLE Assessment_Notes (date_of_notes VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM ADDRESSES WHERE zip_postcode = \"197\"",
    "question_en": "How many addresses have zip code 197?",
    "question_th": "มีที่อยู่กี่แห่งที่มีรหัสไปรษณีย์ 197",
    "context": "CREATE TABLE ADDRESSES (zip_postcode VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT incident_type_code) FROM Behavior_Incident",
    "question_en": "How many distinct incident type codes are there?",
    "question_th": "มีรหัสประเภทเหตุการณ์ที่แตกต่างกันกี่รหัส",
    "context": "CREATE TABLE Behavior_Incident (incident_type_code VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT detention_type_code FROM Detention",
    "question_en": "Return all distinct detention type codes.",
    "question_th": "ส่งคืนรหัสประเภทการกักขังที่แตกต่างกันทั้งหมด",
    "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_en": "What are the start and end dates for incidents with incident type code \"NOISE\"?",
    "question_th": "วันที่เริ่มต้นและสิ้นสุดสำหรับเหตุการณ์ที่มีรหัสประเภทเหตุการณ์ \"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_en": "Return all detention summaries.",
    "question_th": "กลับสรุปการควบคุมตัวทั้งหมด",
    "context": "CREATE TABLE Detention (detention_summary VARCHAR)"
  },
  {
    "answer": "SELECT cell_mobile_number, email_address FROM STUDENTS",
    "question_en": "Return the cell phone number and email address for all students.",
    "question_th": "คืนหมายเลขโทรศัพท์มือถือและที่อยู่อีเมลของนักเรียนทุกคน",
    "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_en": "What is the email of the student with first name \"Emma\" and last name \"Rohan\"?",
    "question_th": "อีเมลของนักเรียนชื่อ \"เอ็มม่า\" และนามสกุล \"โรฮาน\" คืออะไร?",
    "context": "CREATE TABLE Students (email_address VARCHAR, first_name VARCHAR, last_name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT student_id) FROM Students_in_Detention",
    "question_en": "How many distinct students have been in detention?",
    "question_th": "มีนักเรียนที่แตกต่างกันกี่คนที่ถูกคุมขัง?",
    "context": "CREATE TABLE Students_in_Detention (student_id VARCHAR)"
  },
  {
    "answer": "SELECT gender FROM TEACHERS WHERE last_name = \"Medhurst\"",
    "question_en": "What is the gender of the teacher with last name \"Medhurst\"?",
    "question_th": "ครูที่มีนามสกุล \"เมดเฮิร์สต์\" เพศอะไร?",
    "context": "CREATE TABLE TEACHERS (gender VARCHAR, last_name VARCHAR)"
  },
  {
    "answer": "SELECT incident_type_description FROM Ref_Incident_Type WHERE incident_type_code = \"VIOLENCE\"",
    "question_en": "What is the incident type description for the incident type with code \"VIOLENCE\"?",
    "question_th": "คำอธิบายประเภทเหตุการณ์สำหรับประเภทเหตุการณ์ที่มีรหัส \"ความรุนแรง\" คืออะไร",
    "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_en": "Find the maximum and minimum monthly rental for all student addresses.",
    "question_th": "ค้นหาค่าเช่ารายเดือนสูงสุดและต่ำสุดสำหรับที่อยู่ของนักเรียนทั้งหมด",
    "context": "CREATE TABLE Student_Addresses (monthly_rental INTEGER)"
  },
  {
    "answer": "SELECT first_name FROM Teachers WHERE email_address LIKE '%man%'",
    "question_en": "Find the first names of teachers whose email address contains the word \"man\".",
    "question_th": "ค้นหาชื่อครูที่มีที่อยู่อีเมลที่มีคำว่า \"ชาย\"",
    "context": "CREATE TABLE Teachers (first_name VARCHAR, email_address VARCHAR)"
  },
  {
    "answer": "SELECT * FROM Assessment_Notes ORDER BY date_of_notes",
    "question_en": "List all information about the assessment notes sorted by date in ascending order.",
    "question_th": "แสดงรายการข้อมูลทั้งหมดเกี่ยวกับบันทึกการประเมินโดยจัดเรียงตามวันที่จากน้อยไปหามาก",
    "context": "CREATE TABLE Assessment_Notes (date_of_notes VARCHAR)"
  },
  {
    "answer": "SELECT city FROM Addresses ORDER BY city",
    "question_en": "List all cities of addresses in alphabetical order.",
    "question_th": "ระบุเมืองที่อยู่ทั้งหมดตามลำดับตัวอักษร",
    "context": "CREATE TABLE Addresses (city VARCHAR)"
  },
  {
    "answer": "SELECT first_name, last_name FROM Teachers ORDER BY last_name",
    "question_en": "Find the first names and last names of teachers in alphabetical order of last name.",
    "question_th": "ค้นหาชื่อและนามสกุลของครูตามลำดับตัวอักษรของนามสกุล",
    "context": "CREATE TABLE Teachers (first_name VARCHAR, last_name VARCHAR)"
  },
  {
    "answer": "SELECT * FROM Student_Addresses ORDER BY monthly_rental DESC",
    "question_en": "Find all information about student addresses, and sort by monthly rental in descending order.",
    "question_th": "ค้นหาข้อมูลทั้งหมดเกี่ยวกับที่อยู่ของนักเรียน และจัดเรียงตามค่าเช่ารายเดือนจากมากไปน้อย",
    "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_en": "Find the id and first name of the student that has the most number of assessment notes?",
    "question_th": "ค้นหารหัสและชื่อของนักเรียนที่มีบันทึกการประเมินมากที่สุด?",
    "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_en": "Find the ids and first names of the 3 teachers that have the most number of assessment notes?",
    "question_th": "ค้นหารหัสและชื่อของครู 3 คนที่มีบันทึกการประเมินมากที่สุด?",
    "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_en": "Find the id and last name of the student that has the most behavior incidents?",
    "question_th": "ค้นหารหัสและนามสกุลนักศึกษาที่มีเหตุการณ์พฤติกรรมมากที่สุด?",
    "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_en": "Find the id and last name of the teacher that has the most detentions with detention type code \"AFTER\"?",
    "question_th": "ค้นหา ID และนามสกุลครูที่ถูกกักขังมากที่สุด พร้อมรหัสประเภทกักขัง “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_en": "What are the id and first name of the student whose addresses have the highest average monthly rental?",
    "question_th": "รหัสและชื่อของนักเรียนที่มีที่อยู่มีค่าเช่าเฉลี่ยต่อเดือนสูงสุดคืออะไร?",
    "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_en": "Find the id and city of the student address with the highest average monthly rental.",
    "question_th": "ค้นหารหัสและเมืองของที่อยู่นักเรียนที่มีค่าเช่าเฉลี่ยต่อเดือนสูงสุด",
    "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_en": "What are the code and description of the most frequent behavior incident type?",
    "question_th": "รหัสและคำอธิบายของประเภทเหตุการณ์พฤติกรรมที่พบบ่อยที่สุดคืออะไร",
    "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_en": "What are the code and description of the least frequent detention type ?",
    "question_th": "ประเภทการกักขังที่พบบ่อยที่สุดมีรหัสและคำอธิบายอย่างไร",
    "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_en": "Find the dates of assessment notes for students with first name \"Fanny\".",
    "question_th": "ค้นหาวันที่บันทึกการประเมินสำหรับนักเรียนที่มีชื่อ \"แฟนนี่\"",
    "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_en": "Find the texts of assessment notes for teachers with last name \"Schuster\".",
    "question_th": "ค้นหาข้อความบันทึกการประเมินสำหรับครูที่มีนามสกุล \"ชูสเตอร์\"",
    "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_en": "Find the start and end dates of behavior incidents of students with last name \"Fahey\".",
    "question_th": "ค้นหาวันเริ่มต้นและสิ้นสุดเหตุการณ์พฤติกรรมของนักศึกษาโดยใช้นามสกุล \"ฟ้าเฮย์\"",
    "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_en": "Find the start and end dates of detentions of teachers with last name \"Schultz\".",
    "question_th": "ค้นหาวันเริ่มต้นและสิ้นสุดการกักขังครูด้วยนามสกุล “ชูลท์ซ”",
    "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_en": "What are the id and zip code of the address with the highest monthly rental?",
    "question_th": "รหัสและรหัสไปรษณีย์ของที่อยู่ที่มีค่าเช่ารายเดือนสูงสุดคืออะไร?",
    "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_en": "What is the cell phone number of the student whose address has the lowest monthly rental?",
    "question_th": "หมายเลขโทรศัพท์มือถือของนักเรียนที่มีที่อยู่ให้เช่ารายเดือนต่ำที่สุดคืออะไร?",
    "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_en": "What are the monthly rentals of student addresses in Texas state?",
    "question_th": "ที่อยู่ของนักเรียนในรัฐเท็กซัสให้เช่ารายเดือนเท่าไร?",
    "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_en": "What are the first names and last names of students with address in Wisconsin state?",
    "question_th": "ชื่อและนามสกุลของนักเรียนที่มีที่อยู่ในรัฐวิสคอนซินคืออะไร",
    "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_en": "What are the line 1 and average monthly rentals of all student addresses?",
    "question_th": "บรรทัดที่ 1 และค่าเช่ารายเดือนเฉลี่ยของที่อยู่นักเรียนทั้งหมดคือเท่าใด",
    "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_en": "What is the zip code of the address where the teacher with first name \"Lyla\" lives?",
    "question_th": "รหัสไปรษณีย์ของที่อยู่ของครูชื่อ \"ไลลา\" คืออะไร?",
    "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_en": "What are the email addresses of teachers whose address has zip code \"918\"?",
    "question_th": "ที่อยู่อีเมลของครูที่มีที่อยู่รหัสไปรษณีย์ \"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_en": "How many students are not involved in any behavior incident?",
    "question_th": "มีนักเรียนกี่คนที่ไม่เกี่ยวข้องกับเหตุการณ์พฤติกรรมใดๆ",
    "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_en": "Find the last names of teachers who are not involved in any detention.",
    "question_th": "ค้นหานามสกุลครูที่ไม่เกี่ยวข้องกับการคุมขังใดๆ",
    "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_en": "What are the line 1 of addresses shared by some students and some teachers?",
    "question_th": "ที่อยู่บรรทัดที่ 1 ที่นักเรียนและครูบางคนแชร์คืออะไร",
    "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_en": "Which assets have 2 parts and have less than 2 fault logs? List the asset id and detail.",
    "question_th": "สินทรัพย์ใดมี 2 ส่วนและมีบันทึกข้อผิดพลาดน้อยกว่า 2 รายการ ระบุรหัสสินทรัพย์และรายละเอียด",
    "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_en": "How many assets does each maintenance contract contain? List the number and the contract id.",
    "question_th": "สัญญาการบำรุงรักษาแต่ละฉบับมีสินทรัพย์จำนวนเท่าใด ระบุหมายเลขและรหัสสัญญา",
    "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_en": "How many assets does each third party company supply? List the count and the company id.",
    "question_th": "บริษัทบุคคลที่สามแต่ละแห่งจัดหาสินทรัพย์จำนวนเท่าใด แสดงรายการจำนวนและรหัสบริษัท",
    "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_en": "Which third party companies have at least 2 maintenance engineers or have at least 2 maintenance contracts? List the company id and name.",
    "question_th": "บริษัทบุคคลที่สามใดที่มีวิศวกรซ่อมบำรุงอย่างน้อย 2 คน หรือมีสัญญาบำรุงรักษาอย่างน้อย 2 ฉบับ ระบุรหัสบริษัทและชื่อ",
    "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_en": "What is the name and id of the staff who recorded the fault log but has not contacted any visiting engineers?",
    "question_th": "ชื่อและรหัสของเจ้าหน้าที่ที่บันทึกบันทึกข้อผิดพลาดแต่ไม่ได้ติดต่อกับวิศวกรที่มาเยี่ยมคนใดเลย?",
    "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_en": "Which engineer has visited the most times? Show the engineer id, first name and last name.",
    "question_th": "วิศวกรคนไหนเข้าเยี่ยมชมบ่อยที่สุด? แสดงรหัสวิศวกร ชื่อ และนามสกุล",
    "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_en": "Which parts have more than 2 faults? Show the part name and id.",
    "question_th": "ชิ้นส่วนใดมีข้อบกพร่องมากกว่า 2 ข้อ? แสดงชื่อชิ้นส่วนและรหัส",
    "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_en": "List all every engineer's first name, last name, details and coresponding skill description.",
    "question_th": "ระบุชื่อ นามสกุล รายละเอียด และคำอธิบายทักษะที่ตอบสนองความต้องการของวิศวกรทุกคน",
    "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_en": "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.",
    "question_th": "สำหรับข้อบกพร่องทั้งหมดของส่วนต่างๆ ทักษะที่จำเป็นในการแก้ไขมีอะไรบ้าง ระบุชื่อข้อบกพร่องและคำอธิบายทักษะ",
    "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_en": "How many assets can each parts be used in? List the part name and the number.",
    "question_th": "แต่ละชิ้นส่วนสามารถใช้ในทรัพย์สินได้จำนวนเท่าใด ระบุชื่อชิ้นส่วนและหมายเลข",
    "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_en": "What are all the fault descriptions and the fault status of all the faults recoreded in the logs?",
    "question_th": "คำอธิบายข้อบกพร่องทั้งหมดและสถานะข้อบกพร่องของข้อบกพร่องทั้งหมดที่บันทึกไว้ในบันทึกคืออะไร",
    "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_en": "How many engineer visits are required at most for a single fault log? List the number and the log entry id.",
    "question_th": "จำเป็นต้องมีการเยี่ยมชมวิศวกรมากที่สุดกี่ครั้งสำหรับบันทึกข้อผิดพลาดเดียว ระบุหมายเลขและรหัสรายการบันทึก",
    "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_en": "What are all the distinct last names of all the engineers?",
    "question_th": "นามสกุลที่แตกต่างกันของวิศวกรทั้งหมดคืออะไร?",
    "context": "CREATE TABLE Maintenance_Engineers (last_name VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT fault_status FROM Fault_Log_Parts",
    "question_en": "How many fault status codes are recorded in the fault log parts table?",
    "question_th": "มีการบันทึกรหัสสถานะข้อบกพร่องจำนวนเท่าใดในตารางชิ้นส่วนบันทึกข้อผิดพลาด",
    "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_en": "Which engineers have never visited to maintain the assets? List the engineer first name and last name.",
    "question_th": "วิศวกรคนไหนไม่เคยไปเยี่ยมชมเพื่อรักษาทรัพย์สิน? ระบุชื่อและนามสกุลวิศวกร",
    "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_en": "List the asset id, details, make and model for every asset.",
    "question_th": "ระบุรหัสสินทรัพย์ รายละเอียด ยี่ห้อ และรุ่นของสินทรัพย์ทุกรายการ",
    "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_en": "When was the first asset acquired?",
    "question_th": "สินทรัพย์แรกได้มาเมื่อใด?",
    "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_en": "Which part fault requires the most number of skills to fix? List part id and name.",
    "question_th": "ข้อบกพร่องของชิ้นส่วนใดต้องใช้ทักษะจำนวนมากที่สุดในการแก้ไข รายการรหัสและชื่อชิ้นส่วน",
    "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_en": "Which kind of part has the least number of faults? List the part name.",
    "question_th": "ชิ้นส่วนใดมีข้อผิดพลาดน้อยที่สุด? ระบุชื่อชิ้นส่วน",
    "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_en": "Among those engineers who have visited, which engineer makes the least number of visits? List the engineer id, first name and last name.",
    "question_th": "ในบรรดาวิศวกรที่เคยเข้าเยี่ยมชม วิศวกรคนใดเข้าเยี่ยมชมน้อยที่สุด? ระบุรหัสวิศวกร ชื่อ และนามสกุล",
    "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_en": "Which staff have contacted which engineers? List the staff name and the engineer first name and last name.",
    "question_th": "เจ้าหน้าที่คนไหนติดต่อวิศวกรคนไหน? ระบุชื่อพนักงานและชื่อและนามสกุลวิศวกร",
    "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_en": "Which fault log included the most number of faulty parts? List the fault log id, description and record time.",
    "question_th": "บันทึกข้อผิดพลาดใดที่มีชิ้นส่วนที่ผิดพลาดมากที่สุด แสดงรายการรหัสบันทึกข้อผิดพลาด คำอธิบาย และเวลาบันทึก",
    "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_en": "Which skill is used in fixing the most number of faults? List the skill id and description.",
    "question_th": "ทักษะใดใช้ในการแก้ไขข้อผิดพลาดได้มากที่สุด? ระบุรหัสทักษะและคำอธิบาย",
    "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_en": "What are all the distinct asset models?",
    "question_th": "โมเดลสินทรัพย์ที่แตกต่างกันทั้งหมดมีอะไรบ้าง?",
    "context": "CREATE TABLE Assets (asset_model VARCHAR)"
  },
  {
    "answer": "SELECT asset_make, asset_model, asset_details FROM Assets ORDER BY asset_disposed_date",
    "question_en": "List the all the assets make, model, details by the disposed date ascendingly.",
    "question_th": "แสดงรายการทรัพย์สินทั้งหมดยี่ห้อ รุ่น รายละเอียดตามวันที่จำหน่ายโดยเรียงจากน้อยไปมาก",
    "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_en": "Which part has the least chargeable amount? List the part id and amount.",
    "question_th": "ส่วนใดมีค่าใช้จ่ายน้อยที่สุด? ระบุรหัสชิ้นส่วนและจำนวน",
    "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_en": "Which company started the earliest the maintenance contract? Show the company name.",
    "question_th": "บริษัทใดที่เริ่มสัญญาการบำรุงรักษาเร็วที่สุด? แสดงชื่อบริษัท",
    "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_en": "What is the description of the type of the company who concluded its contracts most recently?",
    "question_th": "ประเภทของ บริษัท ที่สรุปสัญญาล่าสุดคืออะไร?",
    "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_en": "Which gender makes up the majority of the staff?",
    "question_th": "เพศใดที่ประกอบขึ้นเป็นพนักงานส่วนใหญ่?",
    "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_en": "How many engineers did each staff contact? List both the contact staff name and number of engineers contacted.",
    "question_th": "พนักงานแต่ละคนติดต่อกับวิศวกรกี่คน? ระบุทั้งชื่อเจ้าหน้าที่ติดต่อและจำนวนวิศวกรที่ติดต่อ",
    "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_en": "Which assets did not incur any fault log? List the asset model.",
    "question_th": "สินทรัพย์ใดที่ไม่มีบันทึกข้อผิดพลาดใดๆ แสดงรายการแบบจำลองสินทรัพย์",
    "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_en": "list the local authorities and services provided by all stations.",
    "question_th": "รายชื่อหน่วยงานท้องถิ่นและบริการที่จัดทำโดยทุกสถานี",
    "context": "CREATE TABLE station (local_authority VARCHAR, services VARCHAR)"
  },
  {
    "answer": "SELECT train_number, name FROM train ORDER BY TIME",
    "question_en": "show all train numbers and names ordered by their time from early to late.",
    "question_th": "แสดงหมายเลขและชื่อรถไฟทั้งหมดเรียงตามเวลาตั้งแต่ต้นถึงสาย",
    "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_en": "Give me the times and numbers of all trains that go to Chennai, ordered by time.",
    "question_th": "บอกเวลาและหมายเลขของรถไฟทั้งหมดที่ไปเจนไน เรียงตามเวลา",
    "context": "CREATE TABLE train (TIME VARCHAR, train_number VARCHAR, destination VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM train WHERE name LIKE \"%Express%\"",
    "question_en": "How many trains have 'Express' in their names?",
    "question_th": "รถไฟขบวนไหนมีคำว่า 'Express' อยู่ในชื่อ?",
    "context": "CREATE TABLE train (name VARCHAR)"
  },
  {
    "answer": "SELECT train_number, TIME FROM train WHERE origin = 'Chennai' AND destination = 'Guruvayur'",
    "question_en": "Find the number and time of the train that goes from Chennai to Guruvayur.",
    "question_th": "ค้นหาหมายเลขและเวลาของรถไฟที่วิ่งจาก เจนไน ไป กูรูวาเยอร์",
    "context": "CREATE TABLE train (train_number VARCHAR, TIME VARCHAR, origin VARCHAR, destination VARCHAR)"
  },
  {
    "answer": "SELECT origin, COUNT(*) FROM train GROUP BY origin",
    "question_en": "Find the number of trains starting from each origin.",
    "question_th": "ค้นหาจำนวนขบวนรถไฟที่เริ่มต้นจากแต่ละต้นทาง",
    "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_en": "Find the name of the train whose route runs through greatest number of stations.",
    "question_th": "ค้นหาชื่อรถไฟที่มีเส้นทางวิ่งผ่านสถานีจำนวนมากที่สุด",
    "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_en": "Find the number of trains for each station, as well as the station network name and services.",
    "question_th": "ค้นหาจำนวนรถไฟของแต่ละสถานี รวมถึงชื่อเครือข่ายสถานีและบริการ",
    "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_en": "What is the average high temperature for each day of week?",
    "question_th": "อุณหภูมิสูงสุดเฉลี่ยในแต่ละวันในสัปดาห์คือเท่าใด?",
    "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_en": "Give me the maximum low temperature and average precipitation at the Amersham station.",
    "question_th": "ขออุณหภูมิต่ำสุดสูงสุดและปริมาณฝนเฉลี่ยที่สถานีอาเมอร์ชัมหน่อย",
    "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_en": "Find names and times of trains that run through stations for the local authority Chiltern.",
    "question_th": "ค้นหาชื่อและเวลาของรถไฟที่วิ่งผ่านสถานีของหน่วยงานท้องถิ่น 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_en": "How many different services are provided by all stations?",
    "question_th": "ทุกสถานีให้บริการที่แตกต่างกันกี่บริการ?",
    "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_en": "Find the id and local authority of the station with has the highest average high temperature.",
    "question_th": "ค้นหารหัสและหน่วยงานท้องถิ่นของสถานีที่มีอุณหภูมิสูงเฉลี่ยสูงสุด",
    "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_en": "Find the id and local authority of the station whose maximum precipitation is higher than 50.",
    "question_th": "ค้นหารหัสและหน่วยงานท้องถิ่นของสถานีที่มีปริมาณฝนสูงสุดมากกว่า 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_en": "show the lowest low temperature and highest wind speed in miles per hour.",
    "question_th": "แสดงอุณหภูมิต่ำสุดและความเร็วลมสูงสุด หน่วยเป็นไมล์ต่อชั่วโมง",
    "context": "CREATE TABLE weekly_weather (low_temperature INTEGER, wind_speed_mph INTEGER)"
  },
  {
    "answer": "SELECT origin FROM train GROUP BY origin HAVING COUNT(*) > 1",
    "question_en": "Find the origins from which more than 1 train starts.",
    "question_th": "ค้นหาต้นทางที่รถไฟมากกว่า 1 ขบวนเริ่มต้น",
    "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_en": "Find the number of professors in accounting department.",
    "question_th": "หาจำนวนอาจารย์ประจำภาควิชาบัญชี",
    "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_en": "How many professors are teaching class with code ACCT-211?",
    "question_th": "ชั้นเรียนสอนด้วยรหัส 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_en": "What is the first and last name of the professor in biology department?",
    "question_th": "ชื่อและนามสกุลของศาสตราจารย์ภาควิชาชีววิทยาคืออะไร?",
    "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_en": "What are the first names and date of birth of professors teaching course ACCT-211?",
    "question_th": "ชื่อและวันเกิดของอาจารย์ที่สอนหลักสูตร 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_en": "How many classes are professor whose last name is Graztevski has?",
    "question_th": "ศาสตราจารย์ที่มีนามสกุล Graztevski มีกี่ชั้นเรียน?",
    "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_en": "What is the code of the school where the accounting department belongs to?",
    "question_th": "รหัสโรงเรียนที่เป็นแผนกบัญชีคืออะไร?",
    "context": "CREATE TABLE department (school_code VARCHAR, dept_name VARCHAR)"
  },
  {
    "answer": "SELECT crs_credit, crs_description FROM course WHERE crs_code = 'CIS-220'",
    "question_en": "How many credits does course CIS-220 have, and what its description?",
    "question_th": "หลักสูตร CIS-220 มีหน่วยกิตกี่หน่วยกิต และมีคำอธิบายอะไรบ้าง",
    "context": "CREATE TABLE course (crs_credit VARCHAR, crs_description VARCHAR, crs_code VARCHAR)"
  },
  {
    "answer": "SELECT dept_address FROM department WHERE dept_name = 'History'",
    "question_en": "what is the address of history department?",
    "question_th": "ที่อยู่ของแผนกประวัติศาสตร์คืออะไร?",
    "context": "CREATE TABLE department (dept_address VARCHAR, dept_name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT dept_address) FROM department WHERE school_code = 'BUS'",
    "question_en": "How many different locations does the school with code BUS has?",
    "question_th": "โรงเรียนที่มีรหัส BUS มีสถานที่ตั้งที่แตกต่างกันทั้งหมดกี่แห่ง",
    "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_en": "How many different locations does each school have?",
    "question_th": "แต่ละโรงเรียนมีสถานที่ต่างกันกี่แห่ง?",
    "context": "CREATE TABLE department (school_code VARCHAR, dept_address VARCHAR)"
  },
  {
    "answer": "SELECT crs_credit, crs_description FROM course WHERE crs_code = 'QM-261'",
    "question_en": "Find the description and credit for the course QM-261?",
    "question_th": "ค้นหาคำอธิบายและเครดิตของหลักสูตร 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_en": "Find the number of departments in each school.",
    "question_th": "ค้นหาจำนวนแผนกในแต่ละโรงเรียน",
    "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_en": "Find the number of different departments in each school whose number of different departments is less than 5.",
    "question_th": "จงหาจำนวนแผนกต่างๆ ในแต่ละโรงเรียนที่มีจำนวนแผนกต่างๆ น้อยกว่า 5 แผนก",
    "context": "CREATE TABLE department (school_code VARCHAR, dept_name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*), crs_code FROM CLASS GROUP BY crs_code",
    "question_en": "How many sections does each course has?",
    "question_th": "แต่ละหลักสูตรมีกี่ส่วน?",
    "context": "CREATE TABLE CLASS (crs_code VARCHAR)"
  },
  {
    "answer": "SELECT SUM(crs_credit), dept_code FROM course GROUP BY dept_code",
    "question_en": "What is the total credit does each department offer?",
    "question_th": "แต่ละแผนกเสนอสินเชื่อรวมเป็นเท่าใด?",
    "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_en": "Find the number of classes offered for all class rooms that held at least 2 classes.",
    "question_th": "ค้นหาจำนวนชั้นเรียนที่เปิดสอนสำหรับห้องเรียนทั้งหมดที่มีชั้นเรียนอย่างน้อย 2 ชั้นเรียน",
    "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_en": "Find the number of classes in each department.",
    "question_th": "ค้นหาจำนวนชั้นเรียนในแต่ละแผนก",
    "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_en": "Find the number of classes in each school.",
    "question_th": "ค้นหาจำนวนชั้นเรียนในแต่ละโรงเรียน",
    "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_en": "What is the number of professors for different school?",
    "question_th": "อาจารย์ประจำโรงเรียนต่างกันมีจำนวนเท่าไร?",
    "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_en": "Find the count and code of the job has most employees.",
    "question_th": "ค้นหาจำนวนและรหัสงานที่มีพนักงานมากที่สุด",
    "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_en": "Which school has the smallest amount of professors?",
    "question_th": "โรงเรียนใดมีอาจารย์น้อยที่สุด?",
    "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_en": "Find the number of professors with a Ph.D. degree in each department.",
    "question_th": "ค้นหาจำนวนอาจารย์ที่มีปริญญาเอก ปริญญาในแต่ละแผนก",
    "context": "CREATE TABLE professor (dept_code VARCHAR, prof_high_degree VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*), dept_code FROM student GROUP BY dept_code",
    "question_en": "Find the number of students for each department.",
    "question_th": "ค้นหาจำนวนนักศึกษาในแต่ละแผนก",
    "context": "CREATE TABLE student (dept_code VARCHAR)"
  },
  {
    "answer": "SELECT SUM(stu_hrs), dept_code FROM student GROUP BY dept_code",
    "question_en": "Find the total number of hours have done for all students in each department.",
    "question_th": "หาจำนวนชั่วโมงที่ทำไปแล้วของนักศึกษาทุกคนในแต่ละแผนก",
    "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_en": "Find the max, average, and minimum gpa of all students in each department.",
    "question_th": "ค้นหาเกรดเฉลี่ยสูงสุด ค่าเฉลี่ย และต่ำสุดของนักเรียนทั้งหมดในแต่ละแผนก",
    "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_en": "What is the name and the average gpa of department whose students have the highest average gpa?",
    "question_th": "ชื่อและเกรดเฉลี่ยของภาควิชาที่นักเรียนมีเกรดเฉลี่ยสูงสุดคืออะไร",
    "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_en": "how many schools exist in total?",
    "question_th": "มีโรงเรียนทั้งหมดกี่โรงเรียน?",
    "context": "CREATE TABLE department (school_code VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT class_code) FROM CLASS",
    "question_en": "How many different classes are there?",
    "question_th": "มีกี่ชั้นเรียนที่แตกต่างกัน?",
    "context": "CREATE TABLE CLASS (class_code VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT crs_code) FROM CLASS",
    "question_en": "How many courses are offered?",
    "question_th": "มีกี่หลักสูตรที่เปิดสอน?",
    "context": "CREATE TABLE CLASS (crs_code VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT dept_name) FROM department",
    "question_en": "How many departments does the college has?",
    "question_th": "วิทยาลัยมีกี่แผนก?",
    "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_en": "How many courses are offered by the Computer Info. Systems department?",
    "question_th": "ข้อมูลคอมพิวเตอร์เปิดสอนกี่หลักสูตร ฝ่ายระบบ?",
    "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_en": "How many sections does course ACCT-211 has?",
    "question_th": "หลักสูตร ACCT-211 มีกี่ส่วน?",
    "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_en": "Find the total credits of all classes offered by each department.",
    "question_th": "ค้นหาหน่วยกิตรวมของชั้นเรียนทั้งหมดที่นำเสนอโดยแต่ละแผนก",
    "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_en": "Find the name of the department that offers the largest number of credits of all classes.",
    "question_th": "ค้นหาชื่อแผนกที่เปิดสอนจำนวนหน่วยกิตมากที่สุดในทุกชั้นเรียน",
    "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_en": "How many students enrolled in class ACCT-211?",
    "question_th": "มีนักเรียนกี่คนที่ลงทะเบียนในชั้นเรียน 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_en": "What is the first name of each student enrolled in class ACCT-211?",
    "question_th": "ชื่อของนักเรียนแต่ละคนที่ลงทะเบียนในชั้นเรียน 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_en": "What is the first name of students enrolled in class ACCT-211 and got grade C?",
    "question_th": "นักเรียนที่ลงทะเบียนเรียนในห้อง ACCT-211 และได้เกรด 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_en": "Find the total number of employees.",
    "question_th": "ค้นหาจำนวนพนักงานทั้งหมด",
    "context": "CREATE TABLE employee (Id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM professor WHERE prof_high_degree = 'Ph.D.'",
    "question_en": "How many professors do have a Ph.D. degree?",
    "question_th": "มีอาจารย์กี่คนที่มีปริญญาเอก ระดับ?",
    "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_en": "How many students are enrolled in the class taught by some professor from the accounting department?",
    "question_th": "มีนักเรียนกี่คนที่ลงทะเบียนเรียนในชั้นเรียนที่สอนโดยอาจารย์จากแผนกบัญชี",
    "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_en": "What is the name of the department that has the largest number of students enrolled?",
    "question_th": "แผนกที่มีนักศึกษาลงทะเบียนมากที่สุดชื่ออะไร?",
    "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_en": "list names of all departments ordered by their names.",
    "question_th": "รายชื่อแผนกทั้งหมดเรียงตามชื่อ",
    "context": "CREATE TABLE department (dept_name VARCHAR)"
  },
  {
    "answer": "SELECT class_code FROM CLASS WHERE class_room = 'KLR209'",
    "question_en": "List the codes of all courses that take place in room KLR209.",
    "question_th": "ระบุรหัสของหลักสูตรทั้งหมดที่เกิดขึ้นในห้อง 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_en": "List the first name of all employees with job code PROF ordered by their date of birth.",
    "question_th": "ระบุชื่อพนักงานทั้งหมดที่มีรหัสงาน PROF เรียงตามวันเดือนปีเกิด",
    "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_en": "Find the first names and offices of all professors sorted by alphabetical order of their first name.",
    "question_th": "ค้นหาชื่อและตำแหน่งตำแหน่งของอาจารย์ทั้งหมดโดยเรียงลำดับตามตัวอักษรของชื่อ",
    "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_en": "What is the first and last name of the oldest employee?",
    "question_th": "ชื่อและนามสกุลของพนักงานที่อายุมากที่สุดคืออะไร?",
    "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_en": "What is the first, last name, gpa of the youngest one among students whose GPA is above 3?",
    "question_th": "ชื่อ นามสกุล เกรดเฉลี่ยของนักเรียนที่อายุน้อยที่สุดในบรรดานักเรียนที่มีเกรดเฉลี่ยมากกว่า 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_en": "What is the first name of students who got grade C in any class?",
    "question_th": "นักเรียนที่ได้เกรด C ในชั้นเรียนใดชื่ออะไร",
    "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_en": "What is the name of department where has the smallest number of professors?",
    "question_th": "ชื่อภาควิชาอะไรมีจำนวนอาจารย์น้อยที่สุด?",
    "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_en": "What is the name of department where has the largest number of professors with a Ph.D. degree?",
    "question_th": "แผนกชื่ออะไรที่มีอาจารย์ที่มีปริญญาเอกมากที่สุด ระดับ?",
    "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_en": "What are the first names of the professors who do not teach a class.",
    "question_th": "อาจารย์ที่ไม่ได้สอนในชั้นเรียนชื่ออะไร",
    "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_en": "What is the first names of the professors from the history department who do not teach a class.",
    "question_th": "อาจารย์ภาควิชาประวัติศาสตร์ที่ไม่ได้สอนในชั้นเรียนมีชื่ออะไร",
    "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_en": "What is the last name and office of the professor from the history department?",
    "question_th": "นามสกุลและตำแหน่งศาสตราจารย์จากภาควิชาประวัติศาสตร์คืออะไร?",
    "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_en": "What is department name and office for the professor whose last name is Heffington?",
    "question_th": "ชื่อแผนกและสำนักงานของศาสตราจารย์ที่มีนามสกุลคือ 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_en": "Find the last name and hire date of the professor who is in office DRE 102.",
    "question_th": "ค้นหานามสกุลและวันที่จ้างของศาสตราจารย์ที่อยู่ในสำนักงาน 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_en": "What is the code of the course which the student whose last name is Smithson took?",
    "question_th": "นักเรียนนามสกุล Smithson ใช้รหัสรายวิชาอะไร",
    "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_en": "What are the description and credit of the course which the student whose last name is Smithson took?",
    "question_th": "คำอธิบายและเครดิตของหลักสูตรที่นักเรียนที่มีนามสกุล Smithson ใช้คืออะไร?",
    "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_en": "How many professors who has a either Ph.D. or MA degree?",
    "question_th": "มีอาจารย์กี่คนที่มีปริญญาเอกอย่างใดอย่างหนึ่ง หรือปริญญาโท?",
    "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_en": "How many professors who are from either Accounting or Biology department?",
    "question_th": "มีอาจารย์จากภาควิชาบัญชีหรือชีววิทยากี่คน?",
    "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_en": "Find the first name of the professor who is teaching two courses with code CIS-220 and QM-261.",
    "question_th": "ค้นหาชื่อศาสตราจารย์ที่กำลังสอนสองหลักสูตร รหัส CIS-220 และ 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_en": "Find the first name of student who is taking classes from accounting and Computer Info. Systems departments",
    "question_th": "ค้นหาชื่อนักศึกษาที่จะเรียนวิชาบัญชีและข้อมูลคอมพิวเตอร์ แผนกระบบ",
    "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_en": "What is the average gpa of the students enrolled in the course with code ACCT-211?",
    "question_th": "เกรดเฉลี่ยเฉลี่ยของนักเรียนที่ลงทะเบียนในหลักสูตรที่มีรหัส 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_en": "What is the first name, gpa and phone number of the top 5 students with highest gpa?",
    "question_th": "ชื่อ เกรดเฉลี่ย และหมายเลขโทรศัพท์ของนักเรียน 5 อันดับแรกที่มีเกรดเฉลี่ยสูงสุดคืออะไร?",
    "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_en": "What is the department name of the students with lowest gpa belongs to?",
    "question_th": "นักเรียนที่มีเกรดเฉลี่ยต่ำสุดอยู่ในชื่อภาควิชาอะไร?",
    "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_en": "Find the first name and gpa of the students whose gpa is lower than the average gpa of all students.",
    "question_th": "ค้นหาชื่อและเกรดเฉลี่ยของนักเรียนที่มีเกรดเฉลี่ยต่ำกว่าเกรดเฉลี่ยของนักเรียนทุกคน",
    "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_en": "Find the name and address of the department that has the highest number of students.",
    "question_th": "ค้นหาชื่อและที่อยู่ของภาควิชาที่มีจำนวนนักศึกษามากที่สุด",
    "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_en": "Find the name, address, number of students in the departments that have the top 3 highest number of students.",
    "question_th": "ค้นหาชื่อ ที่อยู่ จำนวนนักศึกษาในสาขาวิชาที่มีจำนวนนักศึกษาสูงสุด 3 อันดับแรก",
    "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_en": "Find the first name and office of the professor who is in the history department and has a Ph.D. degree.",
    "question_th": "ค้นหาชื่อและตำแหน่งศาสตราจารย์ที่อยู่ในภาควิชาประวัติศาสตร์และมีวุฒิปริญญาเอก ระดับ.",
    "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_en": "Find the first names of all instructors who have taught some course and the course code.",
    "question_th": "ค้นหาชื่อผู้สอนทุกคนที่สอนบางหลักสูตรและรหัสหลักสูตร",
    "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_en": "Find the first names of all instructors who have taught some course and the course description.",
    "question_th": "ค้นหาชื่อผู้สอนทุกคนที่สอนหลักสูตรใดหลักสูตรหนึ่งและคำอธิบายหลักสูตร",
    "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_en": "Find the first names and offices of all instructors who have taught some course and also find the course description.",
    "question_th": "ค้นหาชื่อและตำแหน่งตำแหน่งของอาจารย์ผู้สอนทุกคนที่สอนหลักสูตรใดหลักสูตรหนึ่งและค้นหาคำอธิบายหลักสูตรด้วย",
    "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_en": "Find the first names and offices of all instructors who have taught some course and the course description and the department name.",
    "question_th": "ค้นหาชื่อและตำแหน่งตำแหน่งของอาจารย์ผู้สอนทุกคนที่สอนหลักสูตรใดหลักสูตรหนึ่ง คำอธิบายหลักสูตร และชื่อแผนกต่างๆ",
    "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_en": "Find names of all students who took some course and the course description.",
    "question_th": "ค้นหารายชื่อนักเรียนทุกคนที่เรียนหลักสูตรใดหลักสูตรหนึ่งและคำอธิบายหลักสูตร",
    "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_en": "Find names of all students who took some course and got A or C.",
    "question_th": "ค้นหารายชื่อนักเรียนทุกคนที่เรียนหลักสูตรใดวิชาหนึ่งแล้วได้ A หรือ 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_en": "Find the first names of all professors in the Accounting department who is teaching some course and the class room.",
    "question_th": "ค้นหารายชื่ออาจารย์ประจำภาควิชาบัญชีที่กำลังสอนบางหลักสูตรและในห้องเรียนทั้งหมด",
    "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_en": "Find the first names and degree of all professors who are teaching some class in Computer Info. Systems department.",
    "question_th": "ค้นหาชื่อและวุฒิการศึกษาของอาจารย์ที่กำลังสอนบางชั้นเรียนในข้อมูลคอมพิวเตอร์ แผนกระบบ.",
    "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_en": "What is the last name of the student who got a grade A in the class with code 10018.",
    "question_th": "นักเรียนที่ได้เกรด A ในชั้นเรียน รหัส 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_en": "Find the first name and office of history professor who did not get a Ph.D. degree.",
    "question_th": "ค้นหาชื่อและตำแหน่งศาสตราจารย์ประวัติศาสตร์ที่ไม่ได้รับปริญญาเอก ระดับ.",
    "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_en": "Find the first names of professors who are teaching more than one class.",
    "question_th": "ค้นหาชื่ออาจารย์ที่กำลังสอนมากกว่าหนึ่งชั้นเรียน",
    "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_en": "Find the first names of students who took exactly one class.",
    "question_th": "ค้นหาชื่อนักเรียนที่เข้าเรียนเพียงชั้นเรียนเดียว",
    "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_en": "Find the name of department that offers the class whose description has the word \"Statistics\".",
    "question_th": "ค้นหาชื่อแผนกที่เปิดสอนชั้นเรียนซึ่งมีคำอธิบายซึ่งมีคำว่า \"สถิติ\"",
    "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_en": "What is the first name of the student whose last name starting with the letter S and is taking ACCT-211 class?",
    "question_th": "ชื่อของนักเรียนที่มีนามสกุลขึ้นต้นด้วยตัวอักษร S และกำลังเรียนวิชา 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_fname VARCHAR, stu_num VARCHAR, stu_lname VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM club",
    "question_en": "How many clubs are there?",
    "question_th": "มีกี่สโมสร?",
    "context": "CREATE TABLE club (Id VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT Region FROM club ORDER BY Region",
    "question_en": "List the distinct region of clubs in ascending alphabetical order.",
    "question_th": "ระบุภูมิภาคที่แตกต่างกันของไม้กอล์ฟโดยเรียงตามตัวอักษรจากน้อยไปหามาก",
    "context": "CREATE TABLE club (Region VARCHAR)"
  },
  {
    "answer": "SELECT AVG(Gold) FROM club_rank",
    "question_en": "What is the average number of gold medals for clubs?",
    "question_th": "จำนวนเหรียญทองเฉลี่ยของสโมสรคือเท่าไร?",
    "context": "CREATE TABLE club_rank (Gold INTEGER)"
  },
  {
    "answer": "SELECT Competition_type, Country FROM competition",
    "question_en": "What are the types and countries of competitions?",
    "question_th": "การแข่งขันมีประเภทและประเทศอะไรบ้าง?",
    "context": "CREATE TABLE competition (Competition_type VARCHAR, Country VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT YEAR FROM competition WHERE Competition_type <> \"Tournament\"",
    "question_en": "What are the distinct years in which the competitions type is not \"Tournament\"?",
    "question_th": "ปีใดบ้างที่ประเภทการแข่งขันไม่ใช่ \"ทัวร์นาเมนท์\"?",
    "context": "CREATE TABLE competition (YEAR VARCHAR, Competition_type VARCHAR)"
  },
  {
    "answer": "SELECT MAX(Silver), MIN(Silver) FROM club_rank",
    "question_en": "What are the maximum and minimum number of silver medals for clubs.",
    "question_th": "จำนวนเหรียญเงินสูงสุดและต่ำสุดสำหรับสโมสรคือเท่าใด",
    "context": "CREATE TABLE club_rank (Silver INTEGER)"
  },
  {
    "answer": "SELECT COUNT(*) FROM club_rank WHERE Total < 10",
    "question_en": "How many clubs have total medals less than 10?",
    "question_th": "มีกี่สโมสรที่มีเหรียญรางวัลรวมน้อยกว่า 10 เหรียญ?",
    "context": "CREATE TABLE club_rank (Total INTEGER)"
  },
  {
    "answer": "SELECT name FROM club ORDER BY Start_year",
    "question_en": "List all club names in ascending order of start year.",
    "question_th": "รายชื่อสโมสรทั้งหมดโดยเรียงลำดับจากปีเริ่มต้นจากน้อยไปหามาก",
    "context": "CREATE TABLE club (name VARCHAR, Start_year VARCHAR)"
  },
  {
    "answer": "SELECT name FROM club ORDER BY name DESC",
    "question_en": "List all club names in descending alphabetical order.",
    "question_th": "รายชื่อสโมสรทั้งหมดตามลำดับตัวอักษรจากมากไปน้อย",
    "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_en": "Please show the names and the players of clubs.",
    "question_th": "กรุณาแสดงชื่อและผู้เล่นของสโมสร",
    "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_en": "Show the names of clubs that have players with position \"Right Wing\".",
    "question_th": "แสดงชื่อสโมสรที่มีผู้เล่นตำแหน่ง \"ปีกขวา\"",
    "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_en": "What is the average points of players from club with name \"AIB\".",
    "question_th": "คะแนนเฉลี่ยของผู้เล่นจากสโมสรชื่อ \"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_en": "List the position of players and the average number of points of players of each position.",
    "question_th": "ระบุตำแหน่งผู้เล่นและจำนวนคะแนนเฉลี่ยของผู้เล่นแต่ละตำแหน่ง",
    "context": "CREATE TABLE player (POSITION VARCHAR, Points INTEGER)"
  },
  {
    "answer": "SELECT POSITION FROM player GROUP BY name HAVING AVG(Points) >= 20",
    "question_en": "List the position of players with average number of points scored by players of that position bigger than 20.",
    "question_th": "ระบุตำแหน่งของผู้เล่นที่มีจำนวนคะแนนเฉลี่ยที่ทำได้โดยผู้เล่นในตำแหน่งนั้นมากกว่า 20",
    "context": "CREATE TABLE player (POSITION VARCHAR, name VARCHAR, Points INTEGER)"
  },
  {
    "answer": "SELECT Competition_type, COUNT(*) FROM competition GROUP BY Competition_type",
    "question_en": "List the types of competition and the number of competitions of each type.",
    "question_th": "ระบุประเภทการแข่งขันและจำนวนการแข่งขันแต่ละประเภท",
    "context": "CREATE TABLE competition (Competition_type VARCHAR)"
  },
  {
    "answer": "SELECT Competition_type FROM competition GROUP BY Competition_type ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "List the most common type of competition.",
    "question_th": "แสดงรายการประเภทการแข่งขันที่พบบ่อยที่สุด",
    "context": "CREATE TABLE competition (Competition_type VARCHAR)"
  },
  {
    "answer": "SELECT Competition_type FROM competition GROUP BY Competition_type HAVING COUNT(*) <= 5",
    "question_en": "List the types of competition that have at most five competitions of that type.",
    "question_th": "ระบุประเภทการแข่งขันที่มีการแข่งขันประเภทนั้นไม่เกินห้ารายการ",
    "context": "CREATE TABLE competition (Competition_type VARCHAR)"
  },
  {
    "answer": "SELECT name FROM CLub WHERE NOT Club_ID IN (SELECT Club_ID FROM player)",
    "question_en": "List the names of clubs that do not have any players.",
    "question_th": "รายชื่อสโมสรที่ไม่มีผู้เล่น",
    "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_en": "What are the positions with both players having more than 20 points and less than 10 points.",
    "question_th": "ตำแหน่งใดที่ผู้เล่นทั้งสองมีมากกว่า 20 แต้มและน้อยกว่า 10 แต้มคือตำแหน่งใด",
    "context": "CREATE TABLE player (POSITION VARCHAR, Points INTEGER)"
  },
  {
    "answer": "SELECT SUM(Points) FROM player",
    "question_en": "Show total points of all players.",
    "question_th": "แสดงคะแนนรวมของผู้เล่นทุกคน",
    "context": "CREATE TABLE player (Points INTEGER)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT POSITION) FROM player",
    "question_en": "how many different positions are there?",
    "question_th": "มีกี่ตำแหน่งที่แตกต่างกัน?",
    "context": "CREATE TABLE player (POSITION VARCHAR)"
  },
  {
    "answer": "SELECT name FROM player WHERE points > (SELECT AVG(points) FROM player)",
    "question_en": "what are the name of players who get more than the average points.",
    "question_th": "ผู้เล่นที่ได้คะแนนมากกว่าค่าเฉลี่ยชื่ออะไร",
    "context": "CREATE TABLE player (name VARCHAR, points INTEGER)"
  },
  {
    "answer": "SELECT COUNT(*), POSITION FROM player WHERE points < 30 GROUP BY POSITION",
    "question_en": "find the number of players whose points are lower than 30 in each position.",
    "question_th": "หาจำนวนผู้เล่นที่มีคะแนนต่ำกว่า 30 ในแต่ละตำแหน่ง",
    "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_en": "which country did participated in the most number of Tournament competitions?",
    "question_th": "ประเทศใดที่เข้าร่วมการแข่งขันทัวร์นาเมนท์จำนวนมากที่สุด?",
    "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_en": "which countries did participated in both Friendly and Tournament type competitions.",
    "question_th": "ประเทศใดได้เข้าร่วมการแข่งขันทั้งประเภทกระชับมิตรและทัวร์นาเมนท์",
    "context": "CREATE TABLE competition (country VARCHAR, competition_type VARCHAR)"
  },
  {
    "answer": "SELECT country FROM competition EXCEPT SELECT country FROM competition WHERE competition_type = 'Friendly'",
    "question_en": "Find the countries that have never participated in any competition with Friendly type.",
    "question_th": "ค้นหาประเทศที่ไม่เคยเข้าร่วมการแข่งขันประเภทกระชับมิตรใดๆ",
    "context": "CREATE TABLE competition (country VARCHAR, competition_type VARCHAR)"
  },
  {
    "answer": "SELECT SUM(num_of_component) FROM furniture",
    "question_en": "How many furniture components are there in total?",
    "question_th": "มีส่วนประกอบเฟอร์นิเจอร์ทั้งหมดกี่ชิ้น?",
    "context": "CREATE TABLE furniture (num_of_component INTEGER)"
  },
  {
    "answer": "SELECT name, furniture_id FROM furniture ORDER BY market_rate DESC LIMIT 1",
    "question_en": "Return the name and id of the furniture with the highest market rate.",
    "question_th": "คืนชื่อและรหัสเฟอร์นิเจอร์ที่มีอัตราตลาดสูงสุด",
    "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_en": "find the total market rate of the furnitures that have the top 2 market shares.",
    "question_th": "หาอัตราตลาดรวมของเฟอร์นิเจอร์ที่มีส่วนแบ่งการตลาด 2 อันดับแรก",
    "context": "CREATE TABLE furniture (market_rate INTEGER)"
  },
  {
    "answer": "SELECT Num_of_Component, name FROM furniture WHERE Num_of_Component > 10",
    "question_en": "Find the component amounts and names of all furnitures that have more than 10 components.",
    "question_th": "ค้นหาจำนวนส่วนประกอบและชื่อของเฟอร์นิเจอร์ทั้งหมดที่มีส่วนประกอบมากกว่า 10 ชิ้น",
    "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_en": "Find the name and component amount of the least popular furniture.",
    "question_th": "ค้นหาชื่อและจำนวนส่วนประกอบของเฟอร์นิเจอร์ที่ได้รับความนิยมน้อยที่สุด",
    "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_en": "Find the names of furnitures whose prices are lower than the highest price.",
    "question_th": "ค้นหาชื่อเฟอร์นิเจอร์ที่มีราคาต่ำกว่าราคาสูงสุด",
    "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_en": "Which manufacturer has the most number of shops? List its name and year of opening.",
    "question_th": "ผู้ผลิตรายใดมีจำนวนร้านค้ามากที่สุด? ระบุชื่อและปีที่เปิดดำเนินการ",
    "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_en": "Find the average number of factories for the manufacturers that have more than 20 shops.",
    "question_th": "ค้นหาจำนวนโรงงานโดยเฉลี่ยของผู้ผลิตที่มีร้านค้ามากกว่า 20 แห่ง",
    "context": "CREATE TABLE manufacturer (Num_of_Factories INTEGER, num_of_shops INTEGER)"
  },
  {
    "answer": "SELECT name, manufacturer_id FROM manufacturer ORDER BY open_year",
    "question_en": "List all manufacturer names and ids ordered by their opening year.",
    "question_th": "ระบุชื่อผู้ผลิตและรหัสทั้งหมดเรียงตามปีที่เปิดดำเนินการ",
    "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_en": "Give me the name and year of opening of the manufacturers that have either less than 10 factories or more than 10 shops.",
    "question_th": "ขอชื่อและปีที่เปิดกิจการของผู้ผลิตที่มีโรงงานน้อยกว่า 10 แห่งหรือมากกว่า 10 แห่ง",
    "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_en": "what is the average number of factories and maximum number of shops for manufacturers that opened before 1990.",
    "question_th": "จำนวนโรงงานโดยเฉลี่ยและจำนวนร้านค้าสูงสุดสำหรับผู้ผลิตที่เปิดก่อนปี 2533 คือเท่าใด",
    "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_en": "Find the id and number of shops for the company that produces the most expensive furniture.",
    "question_th": "ค้นหารหัสและจำนวนร้านค้าของบริษัทที่ผลิตเฟอร์นิเจอร์ที่แพงที่สุด",
    "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_en": "Find the number of funiture types produced by each manufacturer as well as the company names.",
    "question_th": "ค้นหาจำนวนประเภทเฟอร์นิเจอร์ที่ผู้ผลิตแต่ละรายผลิตและชื่อบริษัท",
    "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_en": "Give me the names and prices of furnitures which some companies are manufacturing.",
    "question_th": "ขอชื่อและราคาเฟอร์นิเจอร์ที่บางบริษัทรับผลิตหน่อยค่ะ",
    "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_en": "Find the market shares and names of furnitures which no any company is producing in our records.",
    "question_th": "ค้นหาส่วนแบ่งการตลาดและชื่อของเฟอร์นิเจอร์ที่ไม่มีบริษัทใดผลิตในบันทึกของเรา",
    "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_en": "Find the name of the company that produces both furnitures with less than 6 components and furnitures with more than 10 components.",
    "question_th": "ค้นหาชื่อบริษัทที่ผลิตทั้งเฟอร์นิเจอร์ที่มีส่วนประกอบน้อยกว่า 6 ชิ้น และเฟอร์นิเจอร์ที่มีส่วนประกอบมากกว่า 10 ชิ้น",
    "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_en": "Display the first name and department name for each employee.",
    "question_th": "แสดงชื่อและชื่อแผนกของพนักงานแต่ละคน",
    "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_en": "List the full name (first and last name), and salary for those employees who earn below 6000.",
    "question_th": "ระบุชื่อนามสกุล (ชื่อและนามสกุล) และเงินเดือนสำหรับพนักงานที่มีรายได้ต่ำกว่า 6,000",
    "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_en": "Display the first name, and department number for all employees whose last name is \"McEwen\".",
    "question_th": "แสดงชื่อและหมายเลขแผนกสำหรับพนักงานทุกคนที่มีนามสกุล \"แมคอีเวน\"",
    "context": "CREATE TABLE employees (first_name VARCHAR, department_id VARCHAR, last_name VARCHAR)"
  },
  {
    "answer": "SELECT * FROM employees WHERE department_id = \"null\"",
    "question_en": "Return all the information for all employees without any department number.",
    "question_th": "ส่งคืนข้อมูลทั้งหมดสำหรับพนักงานทุกคนโดยไม่มีหมายเลขแผนก",
    "context": "CREATE TABLE employees (department_id VARCHAR)"
  },
  {
    "answer": "SELECT * FROM departments WHERE department_name = 'Marketing'",
    "question_en": "Display all the information about the department Marketing.",
    "question_th": "แสดงข้อมูลทั้งหมดเกี่ยวกับแผนกการตลาด",
    "context": "CREATE TABLE departments (department_name VARCHAR)"
  },
  {
    "answer": "SELECT hire_date FROM employees WHERE NOT first_name LIKE '%M%'",
    "question_en": "when is the hire date for those employees whose first name does not containing the letter M?",
    "question_th": "วันที่จ้างงานสำหรับพนักงานที่ไม่มีชื่อตัว 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_en": "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.",
    "question_th": "แสดงชื่อเต็ม (ชื่อและนามสกุล) วันที่จ้าง เงินเดือน และหมายเลขแผนกสำหรับพนักงานที่ชื่อไม่ประกอบด้วยตัวอักษร 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_en": "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.",
    "question_th": "แสดงชื่อนามสกุล (ชื่อและนามสกุล) วันที่จ้าง เงินเดือน และหมายเลขแผนกของพนักงานที่ชื่อไม่ขึ้นต้นด้วยตัวอักษร M และให้ผลลัพธ์เรียงลำดับจากน้อยไปมากตามหมายเลขแผนก",
    "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_en": "what is the phone number of employees whose salary is in the range of 8000 and 12000?",
    "question_th": "หมายเลขโทรศัพท์ของพนักงานที่มีเงินเดือนอยู่ในช่วง 8000 และ 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_en": "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.",
    "question_th": "แสดงข้อมูลทั้งหมดของพนักงานที่มีเงินเดือนอยู่ในช่วง 8,000 และ 12,000 และค่าคอมมิชชันไม่เป็นโมฆะหรือหมายเลขแผนกไม่เท่ากับ 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_en": "What are the full name (first and last name) and salary for all employees who does not have any value for commission?",
    "question_th": "ชื่อเต็ม (ชื่อและนามสกุล) และเงินเดือนสำหรับพนักงานทุกคนที่ไม่มีค่าคอมมิชชั่นคืออะไร?",
    "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_en": "Display the first and last name, and salary for those employees whose first name is ending with the letter m.",
    "question_th": "แสดงชื่อและนามสกุล และเงินเดือนของพนักงานที่ชื่อลงท้ายด้วยตัวอักษร ม.",
    "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_en": "Find job id and date of hire for those employees who was hired between November 5th, 2007 and July 5th, 2009.",
    "question_th": "ค้นหารหัสงานและวันที่จ้างสำหรับพนักงานที่ได้รับการว่าจ้างระหว่างวันที่ 5 พฤศจิกายน 2550 ถึง 5 กรกฎาคม 2552",
    "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_en": "What are the first and last name for those employees who works either in department 70 or 90?",
    "question_th": "ชื่อและนามสกุลของพนักงานที่ทำงานในแผนก 70 หรือ 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_en": "Find the salary and manager number for those employees who is working under a manager.",
    "question_th": "ค้นหาเงินเดือนและหมายเลขผู้จัดการสำหรับพนักงานที่ทำงานภายใต้ผู้จัดการ",
    "context": "CREATE TABLE employees (salary VARCHAR, manager_id VARCHAR)"
  },
  {
    "answer": "SELECT * FROM employees WHERE hire_date < '2002-06-21'",
    "question_en": "display all the details from Employees table for those employees who was hired before 2002-06-21.",
    "question_th": "แสดงรายละเอียดทั้งหมดจากตารางพนักงานสำหรับพนักงานที่ได้รับการว่าจ้างก่อนปี 2545-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_en": "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.",
    "question_th": "แสดงข้อมูลทั้งหมดสำหรับพนักงานทุกคนที่มีตัวอักษร D หรือ S อยู่ในชื่อของตน และจัดเรียงผลลัพธ์โดยเรียงลำดับตามเงินเดือนจากมากไปน้อย",
    "context": "CREATE TABLE employees (salary VARCHAR, first_name VARCHAR)"
  },
  {
    "answer": "SELECT * FROM employees WHERE hire_date > '1987-09-07'",
    "question_en": "display those employees who joined after 7th September, 1987.",
    "question_th": "แสดงพนักงานที่เข้าร่วมหลังวันที่ 7 กันยายน พ.ศ. 2530",
    "context": "CREATE TABLE employees (hire_date INTEGER)"
  },
  {
    "answer": "SELECT job_title FROM jobs WHERE min_salary > 9000",
    "question_en": "display the job title of jobs which minimum salary is greater than 9000.",
    "question_th": "แสดงตำแหน่งงานของงานที่เงินเดือนขั้นต่ำมากกว่า 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_en": "display job Title, the difference between minimum and maximum salaries for those jobs which max salary within the range 12000 to 18000.",
    "question_th": "แสดงตำแหน่งงาน ความแตกต่างระหว่างเงินเดือนขั้นต่ำและสูงสุดสำหรับงานเหล่านั้นซึ่งเงินเดือนสูงสุดอยู่ในช่วง 12,000 ถึง 18,000",
    "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_en": "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.",
    "question_th": "แสดงอีเมลของพนักงานที่ไม่มีเปอร์เซ็นต์ค่าคอมมิชชั่นและเงินเดือนอยู่ในช่วง 7,000 ถึง 12,000 และทำงานในแผนกนั้นซึ่งมีจำนวน 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_en": "display the employee ID for each employee and the date on which he ended his previous job.",
    "question_th": "แสดงรหัสพนักงานของพนักงานแต่ละคนและวันที่เขาสิ้นสุดงานก่อนหน้า",
    "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_en": "display those departments where more than ten employees work who got a commission percentage.",
    "question_th": "แสดงแผนกต่างๆ ที่มีพนักงานมากกว่า 10 คนทำงานและได้รับค่าคอมมิชชันเป็นเปอร์เซ็นต์",
    "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_en": "Find the ids of the departments where any manager is managing 4 or more employees.",
    "question_th": "ค้นหารหัสของแผนกที่ผู้จัดการคนใดคนหนึ่งจัดการพนักงาน 4 คนขึ้นไป",
    "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_en": "display the average salary of employees for each department who gets a commission percentage.",
    "question_th": "แสดงเงินเดือนเฉลี่ยของพนักงานแต่ละแผนกที่ได้รับค่าคอมมิชชันเป็นเปอร์เซ็นต์",
    "context": "CREATE TABLE employees (department_id VARCHAR, salary INTEGER, commission_pct VARCHAR)"
  },
  {
    "answer": "SELECT country_id, COUNT(*) FROM locations GROUP BY country_id",
    "question_en": "display the country ID and number of cities for each country.",
    "question_th": "แสดงรหัสประเทศและจำนวนเมืองของแต่ละประเทศ",
    "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_en": "display job ID for those jobs that were done by two or more for more than 300 days.",
    "question_th": "แสดงรหัสงานสำหรับงานเหล่านั้นที่ทำโดยสองคนขึ้นไปเป็นเวลานานกว่า 300 วัน",
    "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_en": "display the ID for those employees who did two or more jobs in the past.",
    "question_th": "แสดง ID สำหรับพนักงานที่เคยทำงานสองงานขึ้นไปในอดีต",
    "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_en": "Find employee with ID and name of the country presently where (s)he is working.",
    "question_th": "ค้นหาพนักงานที่มี ID และชื่อประเทศที่เขาทำงานอยู่ในปัจจุบัน",
    "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_en": "display the department name and number of employees in each of the department.",
    "question_th": "แสดงชื่อแผนกและจำนวนพนักงานในแต่ละแผนก",
    "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_en": "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?",
    "question_th": "คุณสามารถส่งคืนข้อมูลโดยละเอียดทั้งหมดของงานที่ทำโดยพนักงานคนใดคนหนึ่งซึ่งปัจจุบันได้รับเงินเดือนตั้งแต่ 12,000 ขึ้นไปได้หรือไม่",
    "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_en": "display job title and average salary of employees.",
    "question_th": "แสดงตำแหน่งงานและเงินเดือนเฉลี่ยของพนักงาน",
    "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_en": "What is the full name ( first name and last name ) for those employees who gets more salary than the employee whose id is 163?",
    "question_th": "ชื่อเต็ม (ชื่อและนามสกุล) สำหรับพนักงานที่ได้รับเงินเดือนมากกว่าพนักงานที่มี ID 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_en": "return the smallest salary for every departments.",
    "question_th": "คืนเงินเดือนน้อยที่สุดสำหรับทุกแผนก",
    "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_en": "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.",
    "question_th": "ค้นหาชื่อ นามสกุล และรหัสแผนกของพนักงานที่ได้รับเงินเดือนจำนวนดังกล่าว ซึ่งเป็นเงินเดือนที่น้อยที่สุดของแผนกต่างๆ",
    "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_en": "Find the employee id for all employees who earn more than the average salary.",
    "question_th": "ค้นหารหัสพนักงานสำหรับพนักงานทุกคนที่มีรายได้มากกว่าเงินเดือนโดยเฉลี่ย",
    "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_en": "display the employee id and salary of all employees who report to Payam (first name).",
    "question_th": "แสดงรหัสพนักงานและเงินเดือนของพนักงานทุกคนที่รายงานต่อพยาม (ชื่อจริง)",
    "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_en": "find the name of all departments that do actually have one or more employees assigned to them.",
    "question_th": "ค้นหาชื่อของทุกแผนกที่มีพนักงานตั้งแต่หนึ่งคนขึ้นไปที่ได้รับมอบหมายให้ทำงานจริงๆ",
    "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_en": "get the details of employees who manage a department.",
    "question_th": "รับรายละเอียดของพนักงานที่จัดการแผนก",
    "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_en": "Find the job ID for those jobs which average salary is above 8000.",
    "question_th": "ค้นหารหัสงานสำหรับงานเหล่านั้นซึ่งมีเงินเดือนเฉลี่ยมากกว่า 8,000",
    "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_en": "display the employee ID and job name for all those jobs in department 80.",
    "question_th": "แสดงรหัสพนักงานและชื่องานสำหรับงานเหล่านั้นทั้งหมดในแผนก 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_en": "What is the first name and job id for all employees in the Finance department?",
    "question_th": "ชื่อและรหัสงานของพนักงานทุกคนในแผนกการเงินคืออะไร?",
    "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_en": "display all the information of the employees whose salary if within the range of smallest salary and 2500.",
    "question_th": "แสดงข้อมูลทั้งหมดของพนักงานที่มีเงินเดือนหากอยู่ในช่วงเงินเดือนขั้นต่ำและ 2,500",
    "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_en": "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.",
    "question_th": "ค้นหารหัสของพนักงานที่ไม่ได้ทำงานในแผนกเหล่านั้นซึ่งมีพนักงานบางคนทำงานซึ่งมีรหัสผู้จัดการอยู่ในช่วง 100 และ 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_en": "display the employee name ( first name and last name ) and hire date for all employees in the same department as Clara.",
    "question_th": "แสดงชื่อพนักงาน (ชื่อและนามสกุล) และวันที่จ้างของพนักงานทุกคนในแผนกเดียวกับคลาร่า",
    "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_en": "display the employee name ( first name and last name ) and hire date for all employees in the same department as Clara excluding Clara.",
    "question_th": "แสดงชื่อพนักงาน (ชื่อและนามสกุล) และวันที่จ้างของพนักงานทุกคนในแผนกเดียวกับคลาร่า ยกเว้นคลาร่า",
    "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_en": "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 ’T’.",
    "question_th": "แสดงหมายเลขและชื่อพนักงาน (ชื่อและนามสกุล) สำหรับพนักงานทุกคนที่ทำงานในแผนกกับพนักงานที่มีชื่อมี 'T'",
    "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_en": "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.",
    "question_th": "แสดงหมายเลขพนักงาน ชื่อ (ชื่อและนามสกุล) และเงินเดือนสำหรับพนักงานทุกคนที่มีรายได้มากกว่าเงินเดือนโดยเฉลี่ย และผู้ที่ทำงานในแผนกกับพนักงานที่มีตัว 'J' อยู่ในชื่อ",
    "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_en": "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.",
    "question_th": "แสดงหมายเลขพนักงานและรหัสงานสำหรับพนักงานทุกคนที่มีเงินเดือนน้อยกว่าเงินเดือนของพนักงานที่มีตำแหน่งงานเป็น 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_en": "display the employee number, name( first name and last name ) and job title for all employees whose salary is more than any salary of those employees whose job title is PU_MAN.",
    "question_th": "แสดงหมายเลขพนักงาน ชื่อ (ชื่อและนามสกุล) และตำแหน่งงานสำหรับพนักงานทุกคนที่มีเงินเดือนมากกว่าเงินเดือนของพนักงานที่มีตำแหน่งงานเป็น 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_en": "display the department id and the total salary for those departments which contains at least two employees.",
    "question_th": "แสดงรหัสแผนกและเงินเดือนรวมสำหรับแผนกเหล่านั้นที่มีพนักงานอย่างน้อยสองคน",
    "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_en": "display all the information of those employees who did not have any job in the past.",
    "question_th": "แสดงข้อมูลทั้งหมดของพนักงานที่ไม่มีงานทำในอดีต",
    "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_en": "display the department ID, full name (first and last name), salary for those employees who is highest salary in every department.",
    "question_th": "แสดงรหัสแผนก ชื่อนามสกุล (ชื่อและนามสกุล) เงินเดือนของพนักงานที่ได้รับเงินเดือนสูงสุดในทุกแผนก",
    "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_en": "display the first and last name, department, city, and state province for each employee.",
    "question_th": "แสดงชื่อและนามสกุล แผนก เมือง และจังหวัดของพนักงานแต่ละคน",
    "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_en": "display those employees who contain a letter z to their first name and also display their last name, city.",
    "question_th": "แสดงชื่อพนักงานที่มีตัวอักษร z และแสดงนามสกุล, เมืองด้วย",
    "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_en": "display the department name, city, and state province for each department.",
    "question_th": "แสดงชื่อแผนก เมือง และจังหวัดของรัฐของแต่ละแผนก",
    "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_en": "display the full name (first and last name ) of employee with ID and name of the country presently where (s)he is working.",
    "question_th": "แสดงชื่อนามสกุล (ชื่อและนามสกุล) ของพนักงานพร้อมบัตรประจำตัว และชื่อประเทศที่ตนทำงานอยู่ในปัจจุบัน",
    "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_en": "display the department name and number of employees in each of the department.",
    "question_th": "แสดงชื่อแผนกและจำนวนพนักงานในแต่ละแผนก",
    "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_en": "display the full name (first and last name), and salary of those employees who working in any department located in London.",
    "question_th": "แสดงชื่อเต็ม (ชื่อและนามสกุล) และเงินเดือนของพนักงานที่ทำงานในแผนกใด ๆ ที่ตั้งอยู่ในลอนดอน",
    "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_en": "What is the name of the song that was released in the most recent year?",
    "question_th": "เพลงที่ออกเมื่อปีที่แล้วชื่ออะไรคะ?",
    "context": "CREATE TABLE song (song_name VARCHAR, releasedate VARCHAR)"
  },
  {
    "answer": "SELECT f_id FROM files ORDER BY duration DESC LIMIT 1",
    "question_en": "What is the id of the longest song?",
    "question_th": "id ของเพลงที่ยาวที่สุดคืออะไร?",
    "context": "CREATE TABLE files (f_id VARCHAR, duration VARCHAR)"
  },
  {
    "answer": "SELECT song_name FROM song WHERE languages = \"english\"",
    "question_en": "Find the names of all English songs.",
    "question_th": "ค้นหาชื่อเพลงภาษาอังกฤษทั้งหมด",
    "context": "CREATE TABLE song (song_name VARCHAR, languages VARCHAR)"
  },
  {
    "answer": "SELECT f_id FROM files WHERE formats = \"mp3\"",
    "question_en": "What are the id of songs whose format is mp3.",
    "question_th": "ID ของเพลงที่มีรูปแบบเป็น 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_en": "List the name and country of origin for all singers who have produced songs with rating above 9.",
    "question_th": "ระบุชื่อและประเทศต้นทางของนักร้องทุกคนที่ผลิตเพลงที่มีเรตติ้งสูงกว่า 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_en": "List the file size and format for all songs that have resolution lower than 800.",
    "question_th": "ระบุขนาดและรูปแบบของไฟล์สำหรับเพลงทั้งหมดที่มีความละเอียดต่ำกว่า 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_en": "What is the name of the artist who produced the shortest song?",
    "question_th": "ศิลปินที่ผลิตเพลงสั้นที่สุดชื่ออะไร",
    "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_en": "What are the names and countries of origin for the artists who produced the top three highly rated songs.",
    "question_th": "ชื่อและประเทศต้นกำเนิดของศิลปินที่ผลิตเพลงยอดนิยมสามอันดับแรกคืออะไร",
    "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_en": "How many songs have 4 minute duration?",
    "question_th": "กี่เพลงที่มีระยะเวลา 4 นาที?",
    "context": "CREATE TABLE files (duration VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM artist WHERE country = \"Bangladesh\"",
    "question_en": "How many artists are from Bangladesh?",
    "question_th": "มีศิลปินจากบังคลาเทศกี่คน?",
    "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_en": "What is the average rating of songs produced by female artists?",
    "question_th": "เรตติ้งเฉลี่ยของเพลงที่ศิลปินหญิงแต่งคือเท่าไร?",
    "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_en": "What is the most popular file format?",
    "question_th": "รูปแบบไฟล์ยอดนิยมคืออะไร?",
    "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_en": "Find the names of the artists who are from UK and have produced English songs.",
    "question_th": "ค้นหารายชื่อศิลปินที่มาจากสหราชอาณาจักรและเคยผลิตเพลงภาษาอังกฤษ",
    "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_en": "Find the id of songs that are available in mp4 format and have resolution lower than 1000.",
    "question_th": "ค้นหารหัสเพลงที่มีอยู่ในรูปแบบ MP4 และมีความละเอียดต่ำกว่า 1,000",
    "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_en": "What is the country of origin of the artist who is female and produced a song in Bangla?",
    "question_th": "ศิลปินที่เป็นผู้หญิงและผลิตเพลงในบางลามาจากประเทศใด?",
    "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_en": "What is the average duration of songs that have mp3 format and resolution below 800?",
    "question_th": "ระยะเวลาเฉลี่ยของเพลงที่มีรูปแบบ MP3 และความละเอียดต่ำกว่า 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_en": "What is the number of artists for each gender?",
    "question_th": "ศิลปินแต่ละเพศมีจำนวนเท่าไร?",
    "context": "CREATE TABLE artist (gender VARCHAR)"
  },
  {
    "answer": "SELECT AVG(rating), languages FROM song GROUP BY languages",
    "question_en": "What is the average rating of songs for each language?",
    "question_th": "คะแนนเฉลี่ยของเพลงแต่ละภาษาคือเท่าไร?",
    "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_en": "Return the gender and name of artist who produced the song with the lowest resolution.",
    "question_th": "ส่งกลับเพศและชื่อศิลปินที่ผลิตเพลงด้วยความละเอียดต่ำสุด",
    "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_en": "For each file format, return the number of artists who released songs in that format.",
    "question_th": "สำหรับแต่ละรูปแบบไฟล์ ให้ส่งคืนจำนวนศิลปินที่ออกเพลงในรูปแบบนั้น",
    "context": "CREATE TABLE files (formats VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT song_name FROM song WHERE resolution > (SELECT MIN(resolution) FROM song WHERE languages = \"english\")",
    "question_en": "Find the distinct names of all songs that have a higher resolution than some songs in English.",
    "question_th": "ค้นหาชื่อเพลงทั้งหมดที่มีความละเอียดสูงกว่าเพลงภาษาอังกฤษบางเพลง",
    "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_en": "What are the names of all songs that have a lower rating than some song of blues genre?",
    "question_th": "เพลงทั้งหมดที่มีเรตติ้งต่ำกว่าเพลงบลูส์บางเพลงชื่ออะไร?",
    "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_en": "What is the name and country of origin of the artist who released a song that has \"love\" in its title?",
    "question_th": "ชื่อและประเทศต้นกำเนิดของศิลปินที่ปล่อยเพลงที่มีคำว่า \"ความรัก\" อยู่ในชื่อคืออะไร?",
    "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_en": "List the name and gender for all artists who released songs in March.",
    "question_th": "รายชื่อและเพศของศิลปินทุกคนที่ออกเพลงในเดือนมีนาคม",
    "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_en": "List the names of all genres in alphabetical oder, together with its ratings.",
    "question_th": "ระบุชื่อทุกประเภทตามลำดับตัวอักษรพร้อมการจัดอันดับ",
    "context": "CREATE TABLE genre (g_name VARCHAR, rating VARCHAR)"
  },
  {
    "answer": "SELECT song_name FROM song ORDER BY resolution",
    "question_en": "Give me a list of the names of all songs ordered by their resolution.",
    "question_th": "ขอรายชื่อเพลงทั้งหมดเรียงตามมติครับ",
    "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_en": "What are the ids of songs that are available in either mp4 format or have resolution above 720?",
    "question_th": "ID ของเพลงที่มีอยู่ในรูปแบบ MP4 หรือมีความละเอียดสูงกว่า 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_en": "List the names of all songs that have 4 minute duration or are in English.",
    "question_th": "รายชื่อเพลงทั้งหมดที่มีระยะเวลา 4 นาทีหรือเป็นภาษาอังกฤษ",
    "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_en": "What is the language used most often in the songs?",
    "question_th": "ภาษาอะไรที่ใช้ในเพลงบ่อยที่สุด?",
    "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_en": "What is the language that was used most often in songs with resolution above 500?",
    "question_th": "ภาษาใดที่ใช้บ่อยที่สุดในเพลงที่มีความละเอียดสูงกว่า 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_en": "What are the names of artists who are Male and are from UK?",
    "question_th": "ศิลปินที่เป็นชายและมาจากอังกฤษชื่ออะไร?",
    "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_en": "Find the names of songs whose genre is modern or language is English.",
    "question_th": "ค้นหาชื่อเพลงที่มีแนวเพลงสมัยใหม่หรือภาษาอังกฤษ",
    "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_en": "Return the names of songs for which format is mp3 and resolution is below 1000.",
    "question_th": "ส่งกลับชื่อเพลงที่มีรูปแบบเป็น MP3 และความละเอียดต่ำกว่า 1,000",
    "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_en": "Return the names of singers who are from UK and released an English song.",
    "question_th": "กลับชื่อนักร้องที่มาจากสหราชอาณาจักรและออกเพลงภาษาอังกฤษ",
    "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_en": "What are the average rating and resolution of songs that are in Bangla?",
    "question_th": "คะแนนเฉลี่ยและความละเอียดของเพลงที่อยู่ในบางลาคือเท่าใด",
    "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_en": "What are the maximum and minimum resolution of songs whose duration is 3 minutes?",
    "question_th": "ความละเอียดสูงสุดและต่ำสุดของเพลงที่มีระยะเวลา 3 นาทีคือเท่าใด?",
    "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_en": "What are the maximum duration and resolution of songs grouped and ordered by languages?",
    "question_th": "ระยะเวลาและความละเอียดสูงสุดของเพลงที่จัดกลุ่มและเรียงลำดับตามภาษาคือเท่าใด",
    "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_en": "What are the shortest duration and lowest rating of songs grouped by genre and ordered by genre?",
    "question_th": "ระยะเวลาที่สั้นที่สุดและเรตติ้งต่ำสุดของเพลงที่จัดกลุ่มตามประเภทและเรียงลำดับตามประเภทคือเท่าใด",
    "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_en": "Find the names and number of works of all artists who have at least one English songs.",
    "question_th": "ค้นหาชื่อและจำนวนผลงานของศิลปินทุกคนที่มีเพลงภาษาอังกฤษอย่างน้อยหนึ่งเพลง",
    "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_en": "Find the name and country of origin for all artists who have release at least one song of resolution above 900.",
    "question_th": "ค้นหาชื่อและประเทศต้นทางของศิลปินทุกคนที่ได้ออกเพลงที่มีความละเอียดมากกว่า 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_en": "Find the names and number of works of the three artists who have produced the most songs.",
    "question_th": "ค้นหาชื่อและจำนวนผลงานของสามศิลปินที่มีผลงานเพลงมากที่สุด",
    "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_en": "Find the country of origin for the artist who made the least number of songs?",
    "question_th": "ค้นหาประเทศต้นกำเนิดของศิลปินที่ทำเพลงน้อยที่สุด?",
    "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_en": "What are the names of the songs whose rating is below the rating of all songs in English?",
    "question_th": "เพลงที่มีเรตติ้งต่ำกว่าเรตติ้งภาษาอังกฤษทั้งหมดชื่ออะไรคะ?",
    "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_en": "What is ids of the songs whose resolution is higher than the resolution of any songs with rating lower than 8?",
    "question_th": "รหัสของเพลงที่มีความละเอียดสูงกว่าความละเอียดของเพลงใด ๆ ที่มีเรตติ้งต่ำกว่า 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_en": "What is ids of the songs whose resolution is higher than the average resolution of songs in modern genre?",
    "question_th": "รหัสของเพลงที่มีความละเอียดสูงกว่าความละเอียดเฉลี่ยของเพลงในประเภทสมัยใหม่คืออะไร?",
    "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_en": "Find the top 3 artists who have the largest number of songs works whose language is Bangla.",
    "question_th": "ค้นหาศิลปิน 3 อันดับแรกที่มีจำนวนเพลงมากที่สุดซึ่งมีภาษาเป็นบางลา",
    "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_en": "List the id, genre and artist name of English songs ordered by rating.",
    "question_th": "ระบุรหัส ประเภท และชื่อศิลปินของเพลงภาษาอังกฤษ เรียงตามเรตติ้ง",
    "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_en": "List the duration, file size and format of songs whose genre is pop, ordered by title?",
    "question_th": "แสดงรายการระยะเวลา ขนาดไฟล์ และรูปแบบของเพลงที่มีแนวเพลงป๊อป เรียงตามชื่อเพลง?",
    "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_en": "Find the names of the artists who have produced English songs but have never received rating higher than 8.",
    "question_th": "ค้นหารายชื่อศิลปินที่ผลิตเพลงภาษาอังกฤษแต่ไม่เคยได้รับเรตติ้งเกิน 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_en": "Find the names of the artists who are from Bangladesh and have never received rating higher than 7.",
    "question_th": "ค้นหารายชื่อศิลปินที่มาจากประเทศบังคลาเทศและไม่เคยได้รับเรตติ้งสูงกว่า 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_en": "what is the full name and id of the college with the largest number of baseball players?",
    "question_th": "ชื่อเต็มและรหัสของวิทยาลัยที่มีผู้เล่นเบสบอลมากที่สุดคืออะไร?",
    "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_en": "What is average salary of the players in the team named 'Boston Red Stockings' ?",
    "question_th": "เงินเดือนเฉลี่ยของนักเตะในทีมชื่อ 'บอสตัน เรด สต็อคกิ้งส์' คือเท่าไร?",
    "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_en": "What are first and last names of players participating in all star game in 1998?",
    "question_th": "ชื่อและนามสกุลของผู้เล่นที่เข้าร่วมในเกมออลสตาร์ในปี 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_en": "What are the first name, last name and id of the player with the most all star game experiences? Also list the count.",
    "question_th": "ชื่อ นามสกุล และรหัสของผู้เล่นที่มีประสบการณ์เกมออลสตาร์มากที่สุดคืออะไร? ลงรายการนับด้วย",
    "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_en": "How many players enter hall of fame each year?",
    "question_th": "มีผู้เล่นกี่คนที่เข้าสู่หอเกียรติยศในแต่ละปี?",
    "context": "CREATE TABLE hall_of_fame (yearid VARCHAR)"
  },
  {
    "answer": "SELECT YEAR, AVG(attendance) FROM home_game GROUP BY YEAR",
    "question_en": "What is the average number of attendance at home games for each year?",
    "question_th": "จำนวนผู้เข้าชมเกมในบ้านโดยเฉลี่ยในแต่ละปีคือเท่าไร?",
    "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_en": "In 2014, what are the id and rank of the team that has the largest average number of attendance?",
    "question_th": "ในปี 2014 ID และอันดับของทีมที่มีจำนวนผู้เข้าร่วมเฉลี่ยมากที่สุดคือทีมใด?",
    "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_en": "What are the manager's first name, last name and id who won the most manager award?",
    "question_th": "ชื่อ นามสกุล และรหัสของผู้จัดการที่ได้รับรางวัลผู้จัดการทีมมากที่สุดคืออะไร?",
    "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_en": "How many parks are there in the state of NY?",
    "question_th": "รัฐนิวยอร์กมีสวนสาธารณะกี่แห่ง?",
    "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_en": "Which 3 players won the most player awards? List their full name and id.",
    "question_th": "ผู้เล่น 3 คนใดได้รับรางวัลผู้เล่นมากที่สุด? ระบุชื่อเต็มและรหัสประจำตัวของพวกเขา",
    "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_en": "List three countries which are the origins of the least players.",
    "question_th": "รายชื่อ 3 ประเทศที่มีต้นกำเนิดผู้เล่นน้อยที่สุด",
    "context": "CREATE TABLE player (birth_country VARCHAR)"
  },
  {
    "answer": "SELECT name_first, name_last FROM player WHERE death_year = ''",
    "question_en": "Find all the players' first name and last name who have empty death record.",
    "question_th": "ค้นหาชื่อและนามสกุลของผู้เล่นทั้งหมดที่มีประวัติการตายที่ว่างเปล่า",
    "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_en": "How many players born in USA are right-handed batters? That is, have the batter value 'R'.",
    "question_th": "ผู้เล่นที่เกิดในสหรัฐอเมริกามีผู้เล่นถนัดขวากี่คน? นั่นคือมีค่าแป้ง '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_en": "What is the average height of the players from the college named 'Yale University'?",
    "question_th": "ความสูงเฉลี่ยของผู้เล่นจากวิทยาลัยชื่อ '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_en": "What is the highest salary among each team? List the team name, id and maximum salary.",
    "question_th": "เงินเดือนสูงสุดของแต่ละทีมคือเท่าไร? ระบุชื่อทีม รหัส และเงินเดือนสูงสุด",
    "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_en": "What are the name and id of the team offering the lowest average salary?",
    "question_th": "ชื่อและรหัสของทีมที่เสนอเงินเดือนเฉลี่ยต่ำสุดคืออะไร?",
    "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_en": "Find the players' first name and last name who won award both in 1960 and in 1961.",
    "question_th": "ค้นหาชื่อและนามสกุลของผู้เล่นที่ได้รับรางวัลทั้งในปี 1960 และ 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_en": "List players' first name and last name who have weight greater than 220 or height shorter than 75.",
    "question_th": "รายชื่อผู้เล่นและนามสกุลที่มีน้ำหนักมากกว่า 220 หรือส่วนสูงน้อยกว่า 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_en": "List the maximum scores of the team Boston Red Stockings when the team won in postseason?",
    "question_th": "แสดงรายการคะแนนสูงสุดของทีม Boston Red Stockings เมื่อทีมชนะในช่วงหลังฤดูกาล?",
    "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_en": "How many times did Boston Red Stockings lose in 2009 postseason?",
    "question_th": "Boston Red Stockings แพ้กี่ครั้งในช่วงหลังฤดูกาลปี 2009?",
    "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_en": "What are the name and id of the team with the most victories in 2008 postseason?",
    "question_th": "ชื่อและรหัสของทีมที่ได้รับชัยชนะมากที่สุดในช่วงหลังฤดูกาล 2551 คืออะไร?",
    "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_en": "What is the number of wins the team Boston Red Stockings got in the postseasons each year in history?",
    "question_th": "จำนวนชัยชนะที่ทีม Boston Red Stockings ได้รับในช่วงหลังฤดูกาลในแต่ละปีในประวัติศาสตร์คือเท่าใด",
    "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_en": "What is the total number of postseason games that team Boston Red Stockings participated in?",
    "question_th": "จำนวนเกมหลังฤดูกาลที่ทีม Boston Red Stockings เข้าร่วมเป็นจำนวนเท่าใด",
    "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_en": "How many games in 1885 postseason resulted in ties (that is, the value of \"ties\" is '1')?",
    "question_th": "มีกี่เกมในช่วงหลังฤดูกาลปี 1885 ที่มีผลเสมอกัน (นั่นคือ ค่าของ \"เสมอ\" คือ '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_en": "What is the total salary paid by team Boston Red Stockings in 2010?",
    "question_th": "เงินเดือนทั้งหมดที่ทีม Boston Red Stockings จ่ายในปี 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_en": "How many players were in the team Boston Red Stockings in 2000?",
    "question_th": "มีผู้เล่นกี่คนในทีม Boston Red Stockings ในปี 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_en": "List the 3 highest salaries of the players in 2001?",
    "question_th": "รายชื่อ 3 นักเตะเงินเดือนสูงสุดในปี 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_en": "What were all the salary values of players in 2010 and 2001?",
    "question_th": "เงินเดือนของผู้เล่นในปี 2010 และ 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_en": "In which year did the least people enter hall of fame?",
    "question_th": "ปีไหนที่คนเข้าหอเกียรติยศน้อยที่สุด?",
    "context": "CREATE TABLE hall_of_fame (yearid VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM park WHERE city = 'Atlanta'",
    "question_en": "How many parks are there in Atlanta city?",
    "question_th": "ในเมืองแอตแลนตามีสวนสาธารณะกี่แห่ง?",
    "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_en": "How many games were played in park \"Columbia Park\" in 1907?",
    "question_th": "มีการเล่นเกมกี่เกมในสวนสาธารณะ \"โคลัมเบียพาร์ค\" ในปี 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_en": "How many games were played in city Atlanta in 2000?",
    "question_th": "มีกี่เกมที่เล่นในเมืองแอตแลนตาในปี 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_en": "What is the total home game attendance of team Boston Red Stockings from 2000 to 2010?",
    "question_th": "จำนวนการเข้าร่วมเกมเหย้าของทีมบอสตัน เรด สต็อคกิ้งส์ ตั้งแต่ปี 2000 ถึง 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_en": "How much did the the player with first name Len and last name Barker earn between 1985 to 1990 in total?",
    "question_th": "ผู้เล่นที่มีชื่อ Len และนามสกุล Barker มีรายได้รวมระหว่างปี 1985 ถึง 1990 เท่าไหร่?",
    "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_en": "List players' first name and last name who received salary from team Washington Nationals in both 2005 and 2007.",
    "question_th": "รายชื่อผู้เล่นและนามสกุลที่ได้รับเงินเดือนจากทีม Washington Nationals ในปี 2548 และ 2550",
    "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_en": "How many home games did the team Boston Red Stockings play from 1990 to 2000 in total?",
    "question_th": "ทีมบอสตัน เรด สต็อคกิ้งส์ลงเล่นในบ้านกี่เกมตั้งแต่ปี 1990 ถึง 2000 ทั้งหมด?",
    "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_en": "Which team had the least number of attendances in home games in 1980?",
    "question_th": "ทีมใดมีผู้เข้าชมเกมเหย้าน้อยที่สุดในปี 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_en": "List the names of states that have more than 2 parks.",
    "question_th": "รายชื่อรัฐที่มีสวนสาธารณะมากกว่า 2 แห่ง",
    "context": "CREATE TABLE park (state VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM team_franchise WHERE active = 'Y'",
    "question_en": "How many team franchises are active, with active value 'Y'?",
    "question_th": "มีแฟรนไชส์ทีมจำนวนเท่าใดที่ใช้งานอยู่ โดยมีค่า 'Y' ที่ใช้งานอยู่",
    "context": "CREATE TABLE team_franchise (active VARCHAR)"
  },
  {
    "answer": "SELECT city FROM park GROUP BY city HAVING COUNT(*) BETWEEN 2 AND 4",
    "question_en": "Which cities have 2 to 4 parks?",
    "question_th": "เมืองใดมีสวนสาธารณะ 2 ถึง 4 แห่ง?",
    "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_en": "Which park had most attendances in 2008?",
    "question_th": "สวนสาธารณะใดที่มีผู้เข้าร่วมมากที่สุดในปี 2551",
    "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_en": "How many camera lenses have a focal length longer than 15 mm?",
    "question_th": "เลนส์กล้องจำนวนเท่าใดที่มีความยาวโฟกัสมากกว่า 15 มม.",
    "context": "CREATE TABLE camera_lens (focal_length_mm INTEGER)"
  },
  {
    "answer": "SELECT brand, name FROM camera_lens ORDER BY max_aperture DESC",
    "question_en": "Find the brand and name for each camera lens, and sort in descending order of maximum aperture.",
    "question_th": "ค้นหายี่ห้อและชื่อเลนส์กล้องแต่ละตัว และจัดเรียงรูรับแสงกว้างสุดจากมากไปน้อย",
    "context": "CREATE TABLE camera_lens (brand VARCHAR, name VARCHAR, max_aperture VARCHAR)"
  },
  {
    "answer": "SELECT id, color, name FROM photos",
    "question_en": "List the id, color scheme, and name for all the photos.",
    "question_th": "ระบุรหัส รูปแบบสี และชื่อรูปภาพทั้งหมด",
    "context": "CREATE TABLE photos (id VARCHAR, color VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT MAX(height), AVG(height) FROM mountain",
    "question_en": "What are the maximum and average height of the mountains?",
    "question_th": "ความสูงสูงสุดและเฉลี่ยของภูเขาคือเท่าใด",
    "context": "CREATE TABLE mountain (height INTEGER)"
  },
  {
    "answer": "SELECT AVG(prominence) FROM mountain WHERE country = 'Morocco'",
    "question_en": "What are the average prominence of the mountains in country 'Morocco'?",
    "question_th": "ภูเขาในประเทศ 'โมร็อกโก' มีความโดดเด่นโดยเฉลี่ยเท่าใด",
    "context": "CREATE TABLE mountain (prominence INTEGER, country VARCHAR)"
  },
  {
    "answer": "SELECT name, height, prominence FROM mountain WHERE range <> 'Aberdare Range'",
    "question_en": "What are the name, height and prominence of mountains which do not belong to the range 'Aberdare Range'?",
    "question_th": "ชื่อ ความสูง และความโดดเด่นของภูเขาที่ไม่อยู่ในเทือกเขา 'เทือกเขาอาเบอร์แดร์' คืออะไร?",
    "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_en": "What are the id and name of the photos for mountains?",
    "question_th": "id และชื่อภาพภูเขาคืออะไรคะ?",
    "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_en": "What are the id and name of the mountains that have at least 2 photos?",
    "question_th": "id และชื่อภูเขาที่มีรูปอย่างน้อย 2 รูป คืออะไร?",
    "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_en": "What are the names of the cameras that have taken picture of the most mountains?",
    "question_th": "กล้องที่ถ่ายภูเขาได้มากที่สุดชื่ออะไร?",
    "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_en": "What are the names of photos taken with the lens brand 'Sigma' or 'Olympus'?",
    "question_th": "ภาพถ่ายที่ถ่ายด้วยเลนส์ยี่ห้อ 'Sigma' หรือ '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_en": "How many different kinds of lens brands are there?",
    "question_th": "เลนส์ยี่ห้อต่างๆ มีกี่ยี่ห้อ?",
    "context": "CREATE TABLE camera_lens (brand VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM camera_lens WHERE NOT id IN (SELECT camera_lens_id FROM photos)",
    "question_en": "How many camera lenses are not used in taking any photos?",
    "question_th": "ไม่ได้ใช้เลนส์กล้องกี่ตัวในการถ่ายภาพ?",
    "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_en": "How many distinct kinds of camera lenses are used to take photos of mountains in the country 'Ethiopia'?",
    "question_th": "เลนส์กล้องที่ใช้ในการถ่ายภาพภูเขาในประเทศ 'เอธิโอเปีย' มีกี่ประเภท?",
    "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_en": "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'",
    "question_th": "รายชื่อยี่ห้อเลนส์ที่ถ่ายทั้งภาพภูเขาด้วย Range 'Toubkal Atlas' และภาพภูเขาด้วย 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_en": "Show the name and prominence of the mountains whose picture is not taken by a lens of brand 'Sigma'.",
    "question_th": "แสดงชื่อและความโดดเด่นของภูเขาที่ไม่ได้ถ่ายด้วยเลนส์ยี่ห้อ '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_en": "List the camera lens names containing substring \"Digital\".",
    "question_th": "ระบุชื่อเลนส์กล้องที่มีสตริงย่อย \"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_en": "What is the name of each camera lens and the number of photos taken by it? Order the result by the count of photos.",
    "question_th": "เลนส์กล้องแต่ละตัวชื่ออะไร และจำนวนภาพที่ถ่าย? เรียงลำดับผลลัพธ์ตามจำนวนภาพถ่าย",
    "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_en": "Find the names of channels that are not owned by CCTV.",
    "question_th": "ค้นหาชื่อช่องที่ CCTV ไม่ได้เป็นของ",
    "context": "CREATE TABLE channel (name VARCHAR, OWNER VARCHAR)"
  },
  {
    "answer": "SELECT name FROM channel ORDER BY rating_in_percent DESC",
    "question_en": "List all channel names ordered by their rating in percent from big to small.",
    "question_th": "แสดงรายการชื่อช่องทั้งหมดเรียงตามการให้คะแนนเป็นเปอร์เซ็นต์จากมากไปน้อย",
    "context": "CREATE TABLE channel (name VARCHAR, rating_in_percent VARCHAR)"
  },
  {
    "answer": "SELECT OWNER FROM channel ORDER BY rating_in_percent DESC LIMIT 1",
    "question_en": "What is the owner of the channel that has the highest rating ratio?",
    "question_th": "เจ้าของช่องที่มีเรตติ้งสูงสุดคือใคร?",
    "context": "CREATE TABLE channel (OWNER VARCHAR, rating_in_percent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM program",
    "question_en": "how many programs are there?",
    "question_th": "มีกี่โปรแกรม?",
    "context": "CREATE TABLE program (Id VARCHAR)"
  },
  {
    "answer": "SELECT name FROM program ORDER BY launch",
    "question_en": "list all the names of programs, ordering by launch time.",
    "question_th": "แสดงรายการชื่อโปรแกรมทั้งหมด เรียงตามเวลาเปิดตัว",
    "context": "CREATE TABLE program (name VARCHAR, launch VARCHAR)"
  },
  {
    "answer": "SELECT name, origin, OWNER FROM program",
    "question_en": "List the name, origin and owner of each program.",
    "question_th": "ระบุชื่อ ที่มา และเจ้าของแต่ละโปรแกรม",
    "context": "CREATE TABLE program (name VARCHAR, origin VARCHAR, OWNER VARCHAR)"
  },
  {
    "answer": "SELECT name FROM program ORDER BY launch DESC LIMIT 1",
    "question_en": "find the name of the program that was launched most recently.",
    "question_th": "ค้นหาชื่อโปรแกรมที่เปิดตัวล่าสุด",
    "context": "CREATE TABLE program (name VARCHAR, launch VARCHAR)"
  },
  {
    "answer": "SELECT SUM(Share_in_percent) FROM channel WHERE OWNER = 'CCTV'",
    "question_en": "find the total percentage share of all channels owned by CCTV.",
    "question_th": "ค้นหาเปอร์เซ็นต์ส่วนแบ่งทั้งหมดของทุกช่องที่ 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_en": "Find the names of the channels that are broadcast in the morning.",
    "question_th": "ค้นหาชื่อช่องที่ออกอากาศในตอนเช้า",
    "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_en": "what are the names of the channels that broadcast in both morning and night?",
    "question_th": "ช่องที่ออกอากาศทั้งเช้าและกลางคืนชื่ออะไร?",
    "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_en": "how many programs are broadcast in each time section of the day?",
    "question_th": "แต่ละช่วงเวลาของวันมีรายการออกอากาศกี่รายการ?",
    "context": "CREATE TABLE broadcast (time_of_day VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT program_id) FROM broadcast WHERE time_of_day = 'Night'",
    "question_en": "find the number of different programs that are broadcast during night time.",
    "question_th": "ค้นหาจำนวนรายการต่างๆ ที่ออกอากาศในช่วงเวลากลางคืน",
    "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_en": "Find the names of programs that are never broadcasted in the morning.",
    "question_th": "ค้นหารายชื่อรายการที่ไม่เคยออกอากาศในตอนเช้า",
    "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_en": "find the program owners that have some programs in both morning and night time.",
    "question_th": "หาเจ้าของโปรแกรมที่มีบางโปรแกรมทั้งช่วงเช้าและกลางคืน",
    "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_en": "List all program origins in the alphabetical order.",
    "question_th": "แสดงรายการที่มาของโปรแกรมทั้งหมดตามลำดับตัวอักษร",
    "context": "CREATE TABLE program (origin VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT OWNER) FROM channel",
    "question_en": "what is the number of different channel owners?",
    "question_th": "เจ้าของช่องมีจำนวนเท่าใด?",
    "context": "CREATE TABLE channel (OWNER VARCHAR)"
  },
  {
    "answer": "SELECT name FROM program WHERE origin <> 'Beijing'",
    "question_en": "find the names of programs whose origin is not in Beijing.",
    "question_th": "ค้นหาชื่อโปรแกรมที่ไม่ได้มีต้นกำเนิดอยู่ที่ปักกิ่ง",
    "context": "CREATE TABLE program (name VARCHAR, origin VARCHAR)"
  },
  {
    "answer": "SELECT name FROM channel WHERE OWNER = 'CCTV' OR OWNER = 'HBS'",
    "question_en": "What are the names of the channels owned by CCTV or HBS?",
    "question_th": "ชื่อช่องที่เป็นของ CCTV หรือ HBS คืออะไร?",
    "context": "CREATE TABLE channel (name VARCHAR, OWNER VARCHAR)"
  },
  {
    "answer": "SELECT SUM(Rating_in_percent), OWNER FROM channel GROUP BY OWNER",
    "question_en": "Find the total rating ratio for each channel owner.",
    "question_th": "ค้นหาอัตราส่วนเรตติ้งรวมสำหรับเจ้าของช่องแต่ละราย",
    "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_en": "Find the name of the program that is broadcast most frequently.",
    "question_th": "ค้นหาชื่อรายการที่ออกอากาศบ่อยที่สุด",
    "context": "CREATE TABLE program (name VARCHAR, program_id VARCHAR); CREATE TABLE broadcast (program_id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM COURSES",
    "question_en": "How many courses are there in total?",
    "question_th": "มีทั้งหมดกี่หลักสูตร?",
    "context": "CREATE TABLE COURSES (Id VARCHAR)"
  },
  {
    "answer": "SELECT course_description FROM COURSES WHERE course_name = \"database\"",
    "question_en": "What are the descriptions of the courses with name \"database\"?",
    "question_th": "รายวิชาชื่อ “ฐานข้อมูล” มีคำอธิบายอย่างไร?",
    "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_en": "What are the addresses of the course authors or tutors with personal name \"Cathrine\"",
    "question_th": "ที่อยู่ของผู้เขียนหลักสูตรหรือผู้สอนที่มีชื่อส่วนตัวว่า \"แคทรีน\" คืออะไร",
    "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_en": "List the addresses of all the course authors or tutors.",
    "question_th": "ระบุที่อยู่ของผู้เขียนหลักสูตรหรือผู้สอนทั้งหมด",
    "context": "CREATE TABLE Course_Authors_and_Tutors (address_line_1 VARCHAR)"
  },
  {
    "answer": "SELECT login_name, family_name FROM Course_Authors_and_Tutors",
    "question_en": "List all the login names and family names of course author and tutors.",
    "question_th": "ระบุชื่อล็อกอินและนามสกุลของผู้แต่งหลักสูตรและผู้สอน",
    "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_en": "List all the dates of enrollment and completion of students.",
    "question_th": "ระบุวันที่ลงทะเบียนและสำเร็จการศึกษาของนักเรียนทั้งหมด",
    "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_en": "How many distinct students are enrolled in courses?",
    "question_th": "มีนักศึกษาที่แตกต่างกันกี่คนที่ลงทะเบียนเรียนในหลักสูตร?",
    "context": "CREATE TABLE Student_Course_Enrolment (student_id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(course_id) FROM Student_Course_Enrolment",
    "question_en": "How many distinct courses are enrolled in by students?",
    "question_th": "นักเรียนลงทะเบียนเรียนในหลักสูตรที่แตกต่างกันกี่หลักสูตร?",
    "context": "CREATE TABLE Student_Course_Enrolment (course_id VARCHAR)"
  },
  {
    "answer": "SELECT date_test_taken FROM Student_Tests_Taken WHERE test_result = \"Pass\"",
    "question_en": "Find the dates of the tests taken with result \"Pass\".",
    "question_th": "ค้นหาวันที่ทำการทดสอบพร้อมผล \"ผ่าน\"",
    "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_en": "How many tests have result \"Fail\"?",
    "question_th": "มีการทดสอบกี่ครั้งที่ผลลัพธ์ \"ล้มเหลว\"?",
    "context": "CREATE TABLE Student_Tests_Taken (test_result VARCHAR)"
  },
  {
    "answer": "SELECT login_name FROM Students WHERE family_name = \"Ward\"",
    "question_en": "What are the login names of the students with family name \"Ward\"?",
    "question_th": "ชื่อล็อกอินของนักเรียนที่มีนามสกุล \"วอร์ด\" คืออะไร?",
    "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_en": "What are the dates of the latest logon of the students with family name \"Jaskolski\" or \"Langosh\"?",
    "question_th": "วันที่เข้าสู่ระบบล่าสุดของนักเรียนที่มีนามสกุล \"Jaskolski\" หรือ \"Langosh\" คือวันที่ใด",
    "context": "CREATE TABLE Students (date_of_latest_logon VARCHAR, family_name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Students WHERE personal_name LIKE \"%son%\"",
    "question_en": "How many students have personal names that contain the word \"son\"?",
    "question_th": "มีนักเรียนกี่คนที่มีชื่อส่วนตัวที่มีคำว่า \"ลูกชาย\"?",
    "context": "CREATE TABLE Students (personal_name VARCHAR)"
  },
  {
    "answer": "SELECT subject_name FROM SUBJECTS",
    "question_en": "List all the subject names.",
    "question_th": "ระบุชื่อเรื่องทั้งหมด",
    "context": "CREATE TABLE SUBJECTS (subject_name VARCHAR)"
  },
  {
    "answer": "SELECT * FROM Course_Authors_and_Tutors ORDER BY personal_name",
    "question_en": "List all the information about course authors and tutors in alphabetical order of the personal name.",
    "question_th": "แสดงรายการข้อมูลทั้งหมดเกี่ยวกับผู้เขียนหลักสูตรและผู้สอนตามลำดับตัวอักษรของชื่อบุคคล",
    "context": "CREATE TABLE Course_Authors_and_Tutors (personal_name VARCHAR)"
  },
  {
    "answer": "SELECT personal_name, family_name FROM Students ORDER BY family_name",
    "question_en": "List the personal names and family names of all the students in alphabetical order of family name.",
    "question_th": "ระบุชื่อบุคคลและนามสกุลของนักเรียนทุกคนตามลำดับตัวอักษรของนามสกุล",
    "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_en": "List each test result and its count in descending order of count.",
    "question_th": "แสดงรายการผลการทดสอบแต่ละรายการและการนับตามลำดับการนับจากมากไปน้อย",
    "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_en": "Find the login name of the course author that teaches the course with name \"advanced database\".",
    "question_th": "ค้นหาชื่อเข้าสู่ระบบของผู้เขียนรายวิชาที่สอนรายวิชาชื่อ \"ฐานข้อมูลขั้นสูง\"",
    "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_en": "Find the addresses of the course authors who teach the course with name \"operating system\" or \"data structure\".",
    "question_th": "ค้นหาที่อยู่ของผู้เขียนรายวิชาที่สอนรายวิชาชื่อ \"ระบบปฏิบัติการ\" หรือ \"โครงสร้างข้อมูล\"",
    "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_en": "Find the personal name, family name, and author ID of the course author that teaches the most courses.",
    "question_th": "ค้นหาชื่อบุคคล ชื่อสกุล และรหัสผู้เขียนของผู้เขียนหลักสูตรที่สอนหลักสูตรมากที่สุด",
    "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_en": "Find the addresses and author IDs of the course authors that teach at least two courses.",
    "question_th": "ค้นหาที่อยู่และรหัสผู้เขียนของผู้เขียนหลักสูตรที่สอนอย่างน้อยสองหลักสูตร",
    "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_en": "Find the names of courses taught by the tutor who has personal name \"Julio\".",
    "question_th": "ค้นหาชื่อหลักสูตรที่สอนโดยอาจารย์ผู้สอนที่มีชื่อส่วนตัวว่า \"จูลิโอ\"",
    "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_en": "Find the names and descriptions of courses that belong to the subject named \"Computer Science\".",
    "question_th": "ค้นหาชื่อและคำอธิบายรายวิชาที่อยู่ในหัวข้อ “วิทยาการคอมพิวเตอร์”",
    "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_en": "Find the subject ID, subject name, and the corresponding number of available courses for each subject.",
    "question_th": "ค้นหารหัสวิชา ชื่อวิชา และจำนวนหลักสูตรที่มีอยู่สำหรับแต่ละวิชา",
    "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_en": "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.",
    "question_th": "ค้นหารหัสวิชา ชื่อวิชา และจำนวนหลักสูตรที่สอดคล้องกันสำหรับแต่ละวิชา และจัดเรียงตามจำนวนหลักสูตรจากน้อยไปหามาก",
    "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_en": "What is the date of enrollment of the course named \"Spanish\"?",
    "question_th": "วันที่ลงทะเบียนเรียนหลักสูตรภาษาสเปนคือเมื่อใด",
    "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_en": "What is the name of the course that has the most student enrollment?",
    "question_th": "รายวิชาใดที่มีผู้ลงทะเบียนเรียนมากที่สุดชื่ออะไร",
    "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_en": "What are the names of the courses that have exactly 1 student enrollment?",
    "question_th": "รายวิชาที่มีผู้ลงทะเบียนเรียนเพียง 1 คน ชื่อหลักสูตรอะไร",
    "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_en": "What are the descriptions and names of the courses that have student enrollment bigger than 2?",
    "question_th": "คำอธิบายและชื่อของหลักสูตรที่มีจำนวนนักศึกษาลงทะเบียนมากกว่า 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_en": "What is the name of each course and the corresponding number of student enrollment?",
    "question_th": "แต่ละหลักสูตรชื่ออะไรและจำนวนนักศึกษาที่ลงทะเบียนตรงกันคืออะไร?",
    "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_en": "What are the enrollment dates of all the tests that have result \"Pass\"?",
    "question_th": "วันที่ลงทะเบียนของการทดสอบทั้งหมดที่มีผล \"ผ่าน\" คือเมื่อใด",
    "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_en": "What are the completion dates of all the tests that have result \"Fail\"?",
    "question_th": "การทดสอบทั้งหมดที่มีผล \"ล้มเหลว\" จะแล้วเสร็จเมื่อใด",
    "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_en": "List the dates of enrollment and completion of the student with personal name \"Karson\".",
    "question_th": "ระบุวันที่ลงทะเบียนและสำเร็จการศึกษาของนักศึกษาโดยใช้ชื่อบุคคลว่า \"คาร์สัน\"",
    "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_en": "List the dates of enrollment and completion of the student with family name \"Zieme\" and personal name \"Bernie\".",
    "question_th": "ระบุวันที่ลงทะเบียนและสำเร็จการศึกษาของนักเรียนด้วยนามสกุล \"Zieme\" และชื่อส่วนตัว \"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_en": "Find the student ID and login name of the student with the most course enrollments",
    "question_th": "ค้นหารหัสนักศึกษาและชื่อล็อกอินของนักศึกษาที่มีการลงทะเบียนเรียนมากที่สุด",
    "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_en": "Find the student ID and personal name of the student with at least two enrollments.",
    "question_th": "ค้นหาบัตรประจำตัวนักเรียนและชื่อส่วนตัวของนักเรียนที่มีการลงทะเบียนอย่างน้อยสองครั้ง",
    "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_en": "Find the student ID and middle name for all the students with at most two enrollments.",
    "question_th": "ค้นหารหัสนักศึกษาและชื่อกลางของนักเรียนทุกคนที่ลงทะเบียนได้สูงสุดสองครั้ง",
    "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_en": "Find the personal names of students not enrolled in any course.",
    "question_th": "ค้นหารายชื่อนักศึกษาที่ไม่ได้ลงทะเบียนรายวิชาใดๆ",
    "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_en": "How many students did not have any course enrollment?",
    "question_th": "มีนักเรียนกี่คนที่ไม่ได้ลงทะเบียนเรียนหลักสูตรใดเลย?",
    "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_en": "Find the common login name of course authors and students.",
    "question_th": "ค้นหาชื่อเข้าสู่ระบบทั่วไปของผู้เขียนหลักสูตรและนักศึกษา",
    "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_en": "Find the common personal name of course authors and students.",
    "question_th": "ค้นหาชื่อบุคคลทั่วไปของผู้เขียนรายวิชาและนักศึกษา",
    "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_en": "Which claims caused more than 2 settlements or have the maximum claim value? List the date the claim was made and the claim id.",
    "question_th": "การเรียกร้องใดทำให้เกิดการชำระหนี้มากกว่า 2 ครั้งหรือมีมูลค่าการเรียกร้องสูงสุด? ระบุวันที่ที่ทำการเรียกร้องและรหัสการเรียกร้อง",
    "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_en": "Which customer had at least 2 policies but did not file any claims? List the customer details and id.",
    "question_th": "ลูกค้ารายใดที่มีกรมธรรม์อย่างน้อย 2 กรมธรรม์แต่ไม่ได้ยื่นคำร้องใดๆ ระบุรายละเอียดลูกค้าและรหัสประจำตัว",
    "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_en": "List the method, date and amount of all the payments, in ascending order of date.",
    "question_th": "ระบุวิธี วันที่ และจำนวนเงินที่ชำระทั้งหมด โดยเรียงตามลำดับวันที่จากน้อยไปหามาก",
    "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_en": "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.",
    "question_th": "ในบรรดาการเรียกร้องทั้งหมด จำนวนเงินการชำระหนี้ของการเรียกร้องที่มีจำนวนเงินการเรียกร้องมากที่สุดคือเท่าใด? ระบุทั้งจำนวนเงินที่ชำระและจำนวนเงินที่เรียกร้อง",
    "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_en": "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.",
    "question_th": "ในบรรดาการเรียกร้องทั้งหมด จำนวนเงินที่เรียกร้องในการเรียกร้องที่มีการชำระหนี้น้อยที่สุดคือเท่าใด? ระบุทั้งจำนวนเงินที่ชำระและจำนวนเงินที่เรียกร้อง",
    "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_en": "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.",
    "question_th": "ในบรรดาการเรียกร้องทั้งหมด การเรียกร้องใดที่มีจำนวนเงินที่เรียกร้องมากกว่าค่าเฉลี่ย? ระบุวันที่ที่มีการเรียกร้องและวันที่มีการยุติ",
    "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_en": "Among all the claims, which settlements have a claimed amount that is no more than the average? List the claim start date.",
    "question_th": "ในบรรดาการเรียกร้องทั้งหมด การชำระหนี้ข้อใดมีจำนวนเงินที่เรียกร้องไม่เกินค่าเฉลี่ย? ระบุวันที่เริ่มต้นการเรียกร้อง",
    "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_en": "How many settlements does each claim correspond to? List the claim id and the number of settlements.",
    "question_th": "การเรียกร้องแต่ละครั้งสอดคล้องกับการชำระหนี้กี่ครั้ง? ระบุรหัสการอ้างสิทธิ์และจำนวนการชำระหนี้",
    "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_en": "Which claim incurred the most number of settlements? List the claim id, the date the claim was made, and the number.",
    "question_th": "การเรียกร้องใดทำให้เกิดการชำระหนี้มากที่สุด? ระบุรหัสการเรียกร้อง วันที่ที่มีการเรียกร้อง และหมายเลข",
    "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_en": "How many settlements were made on the claim with the most recent claim settlement date? List the number and the claim id.",
    "question_th": "มีการชำระหนี้จำนวนเท่าใดในการเรียกร้อง ณ วันที่ยุติการเรียกร้องครั้งล่าสุด ระบุหมายเลขและรหัสการอ้างสิทธิ์",
    "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_en": "Of all the claims, what was the earliest date when any claim was made?",
    "question_th": "ในบรรดาการเรียกร้องทั้งหมด การเรียกร้องเกิดขึ้นเร็วที่สุดคือเมื่อใด",
    "context": "CREATE TABLE Claims (Date_Claim_Made VARCHAR)"
  },
  {
    "answer": "SELECT SUM(Amount_Settled) FROM Settlements",
    "question_en": "What is the total amount of settlement made for all the settlements?",
    "question_th": "จำนวนเงินรวมของการชำระหนี้สำหรับการชำระหนี้ทั้งหมดคือเท่าใด?",
    "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_en": "Who are the customers that had more than 1 policy? List the customer details and id.",
    "question_th": "ลูกค้าที่มีกรมธรรม์มากกว่า 1 ฉบับ คือใคร? ระบุรายละเอียดลูกค้าและรหัสประจำตัว",
    "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_en": "What are the claim dates and settlement dates of all the settlements?",
    "question_th": "วันที่เรียกร้องและวันที่ชำระหนี้ของการชำระหนี้ทั้งหมดคือเมื่อใด",
    "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_en": "What is the most popular payment method?",
    "question_th": "วิธีการชำระเงินที่ได้รับความนิยมมากที่สุดคืออะไร?",
    "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_en": "With which kind of payment method were the least number of payments processed?",
    "question_th": "วิธีการชำระเงินแบบใดที่มีการประมวลผลการชำระเงินน้อยที่สุด",
    "context": "CREATE TABLE Payments (Payment_Method_Code VARCHAR)"
  },
  {
    "answer": "SELECT SUM(Amount_Payment) FROM Payments",
    "question_en": "What is the total amount of payment?",
    "question_th": "จำนวนเงินที่ชำระทั้งหมดคือเท่าไร?",
    "context": "CREATE TABLE Payments (Amount_Payment INTEGER)"
  },
  {
    "answer": "SELECT DISTINCT customer_details FROM Customers",
    "question_en": "What are all the distinct details of the customers?",
    "question_th": "รายละเอียดที่แตกต่างของลูกค้าคืออะไร?",
    "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_en": "Which kind of policy type was chosen by the most customers?",
    "question_th": "ลูกค้าเลือกกรมธรรม์ประเภทใดมากที่สุด?",
    "context": "CREATE TABLE Customer_Policies (Policy_Type_Code VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Settlements",
    "question_en": "How many settlements are there in total?",
    "question_th": "มีการตั้งถิ่นฐานทั้งหมดกี่แห่ง?",
    "context": "CREATE TABLE Settlements (Id VARCHAR)"
  },
  {
    "answer": "SELECT Payment_ID, Date_Payment_Made, Amount_Payment FROM Payments WHERE Payment_Method_Code = 'Visa'",
    "question_en": "Which Payments were processed with Visa? List the payment Id, the date and the amount.",
    "question_th": "การชำระเงินใดบ้างที่ประมวลผลด้วย Visa ระบุรหัสการชำระเงิน วันที่ และจำนวนเงิน",
    "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_en": "List the details of the customers who do not have any policies.",
    "question_th": "ระบุรายละเอียดของลูกค้าที่ไม่มีกรมธรรม์ใดๆ",
    "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_en": "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.",
    "question_th": "ระบุวันที่ที่มีการเรียกร้อง วันที่ที่มีการชำระหนี้ และจำนวนเงินที่ชำระสำหรับการเรียกร้องทั้งหมดที่มีการชำระหนี้เพียงครั้งเดียว",
    "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_en": "Find the total claimed amount of all the claims.",
    "question_th": "ค้นหายอดรวมของการเรียกร้องทั้งหมด",
    "context": "CREATE TABLE Claims (Amount_Claimed INTEGER)"
  },
  {
    "answer": "SELECT name FROM department GROUP BY departmentID ORDER BY COUNT(departmentID) DESC LIMIT 1",
    "question_en": "Which department has the largest number of employees?",
    "question_th": "แผนกใดมีจำนวนพนักงานมากที่สุด?",
    "context": "CREATE TABLE department (name VARCHAR, departmentID VARCHAR)"
  },
  {
    "answer": "SELECT head FROM department GROUP BY departmentID ORDER BY COUNT(departmentID) LIMIT 1",
    "question_en": "What is the employee id of the head whose department has the least number of employees?",
    "question_th": "รหัสพนักงานของหัวหน้าแผนกที่มีจำนวนพนักงานน้อยที่สุดคือข้อใด",
    "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_en": "what is the name and position of the head whose department has least number of employees?",
    "question_th": "ชื่อและตำแหน่งหัวหน้าแผนกที่มีจำนวนพนักงานน้อยที่สุดคือข้อใด",
    "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_en": "What are names of patients who made an appointment?",
    "question_th": "คนไข้ที่นัดหมายชื่ออะไรบ้าง?",
    "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_en": "what are name and phone number of patients who had more than one appointment?",
    "question_th": "ชื่อและหมายเลขโทรศัพท์ของผู้ป่วยที่ได้รับการนัดหมายมากกว่าหนึ่งครั้งคืออะไร?",
    "context": "CREATE TABLE appointment (patient VARCHAR); CREATE TABLE patient (ssn VARCHAR)"
  },
  {
    "answer": "SELECT appointmentid FROM appointment ORDER BY START DESC LIMIT 1",
    "question_en": "Find the id of the appointment with the most recent start date?",
    "question_th": "ค้นหารหัสของการนัดหมายพร้อมวันที่เริ่มต้นล่าสุดหรือไม่",
    "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_en": "List the name of physicians who took some appointment.",
    "question_th": "รายชื่อแพทย์ที่ได้รับการนัดหมาย",
    "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_en": "List the name of physicians who never took any appointment.",
    "question_th": "รายชื่อแพทย์ที่ไม่เคยนัดหมายใดๆ",
    "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_en": "Find the names of all physicians and their primary affiliated departments' names.",
    "question_th": "ค้นหาชื่อแพทย์ทั้งหมดและชื่อแผนกหลักในเครือ",
    "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_en": "What is the name of the patient who made the most recent appointment?",
    "question_th": "คนไข้ที่นัดครั้งล่าสุดชื่ออะไร?",
    "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_en": "How many patients stay in room 112?",
    "question_th": "ผู้ป่วยพักอยู่ในห้อง 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_en": "How many patients' prescriptions are made by physician John Dorian?",
    "question_th": "แพทย์ 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_en": "Find the name of medication used on the patient who stays in room 111?",
    "question_th": "ค้นหาชื่อยาที่ใช้กับคนไข้ที่เข้าพักห้อง 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_en": "Find the patient who most recently stayed in room 111.",
    "question_th": "ค้นหาผู้ป่วยที่เพิ่งพักในห้อง 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_en": "What is the name of the nurse has the most appointments?",
    "question_th": "พยาบาลชื่ออะไรมีนัดมากที่สุด?",
    "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_en": "How many patients do each physician take care of? List their names and number of patients they take care of.",
    "question_th": "แพทย์แต่ละคนดูแลคนไข้กี่คน? ระบุชื่อและจำนวนผู้ป่วยที่พวกเขาดูแล",
    "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_en": "Find the name of physicians who are in charge of more than one patient.",
    "question_th": "ค้นหาชื่อแพทย์ที่รับผิดชอบผู้ป่วยมากกว่าหนึ่งราย",
    "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_en": "Find the number of rooms located on each block floor.",
    "question_th": "ค้นหาจำนวนห้องในแต่ละชั้น",
    "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_en": "Find the number of rooms for different block code?",
    "question_th": "ค้นหาจำนวนห้องสำหรับรหัสบล็อกต่างๆ",
    "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_en": "What are the unique block codes that have available rooms?",
    "question_th": "รหัสบล็อคเฉพาะที่มีห้องว่างคืออะไร?",
    "context": "CREATE TABLE room (blockcode VARCHAR, unavailable VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT roomtype) FROM room",
    "question_en": "How many different types of rooms are there?",
    "question_th": "ห้องพักมีกี่ประเภท?",
    "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_en": "What is the names of the physicians who prescribe medication Thesisin?",
    "question_th": "แพทย์ที่สั่งยาธีสิซินชื่ออะไร",
    "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_en": "Find the name and position of physicians who prescribe some medication whose brand is X?",
    "question_th": "ค้นหาชื่อและตำแหน่งของแพทย์ที่สั่งจ่ายยาบางชนิดยี่ห้อ 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_en": "Find the number of medications prescribed for each brand.",
    "question_th": "ค้นหาจำนวนยาที่กำหนดสำหรับแต่ละยี่ห้อ",
    "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_en": "Find the name of physicians whose position title contains the word 'senior'.",
    "question_th": "ค้นหาชื่อแพทย์ที่มีตำแหน่งที่มีคำว่าอาวุโส",
    "context": "CREATE TABLE physician (name VARCHAR, POSITION VARCHAR)"
  },
  {
    "answer": "SELECT patient FROM undergoes ORDER BY dateundergoes LIMIT 1",
    "question_en": "Find the patient who has the most recent undergoing treatment?",
    "question_th": "ค้นหาผู้ป่วยที่เข้ารับการรักษาล่าสุด?",
    "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_en": "Find the names of all patients who have an undergoing treatment and are staying in room 111.",
    "question_th": "ค้นหาชื่อผู้ป่วยทั้งหมดที่เข้ารับการรักษาและพักอยู่ในห้อง 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_en": "List the names of all distinct nurses ordered by alphabetical order?",
    "question_th": "ระบุชื่อพยาบาลเฉพาะรายทั้งหมด เรียงตามตัวอักษร ?",
    "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_en": "Find the names of nurses who are nursing an undergoing treatment.",
    "question_th": "ค้นหารายชื่อพยาบาลที่กำลังให้การรักษาอยู่",
    "context": "CREATE TABLE undergoes (AssistingNurse VARCHAR); CREATE TABLE nurse (name VARCHAR, EmployeeID VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT name FROM medication ORDER BY name",
    "question_en": "List the names of all distinct medications, ordered in an alphabetical order.",
    "question_th": "ระบุชื่อยาที่แตกต่างกันทั้งหมด เรียงตามตัวอักษร",
    "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_en": "What are the names of the physician who prescribed the highest dose?",
    "question_th": "แพทย์ที่สั่งยาปริมาณสูงสุดมีชื่ออะไรบ้าง?",
    "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_en": "List the physicians' employee ids together with their primary affiliation departments' ids.",
    "question_th": "ระบุรหัสพนักงานของแพทย์พร้อมกับรหัสแผนกสังกัดหลัก",
    "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_en": "List the names of departments where some physicians are primarily affiliated with.",
    "question_th": "ระบุรายชื่อแผนกต่างๆ ที่แพทย์บางคนสังกัดอยู่เป็นหลัก",
    "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_en": "What nurses are on call with block floor 1 and block code 1? Tell me their names.",
    "question_th": "มีพยาบาลคนใดบ้างที่บล็อกชั้น 1 และบล็อกรหัส 1 บอกชื่อพวกเขามา",
    "context": "CREATE TABLE on_call (nurse VARCHAR, blockfloor VARCHAR, blockcode VARCHAR)"
  },
  {
    "answer": "SELECT MAX(cost), MIN(cost), AVG(cost) FROM procedures",
    "question_en": "What are the highest cost, lowest cost and average cost of procedures?",
    "question_th": "ต้นทุนสูงสุด ต้นทุนต่ำสุด และต้นทุนเฉลี่ยของขั้นตอนคือเท่าใด",
    "context": "CREATE TABLE procedures (cost INTEGER)"
  },
  {
    "answer": "SELECT name, cost FROM procedures ORDER BY cost DESC",
    "question_en": "List the name and cost of all procedures sorted by the cost from the highest to the lowest.",
    "question_th": "ระบุชื่อและค่าใช้จ่ายของขั้นตอนทั้งหมดเรียงตามต้นทุนจากมากไปน้อย",
    "context": "CREATE TABLE procedures (name VARCHAR, cost VARCHAR)"
  },
  {
    "answer": "SELECT name FROM procedures ORDER BY cost LIMIT 3",
    "question_en": "Find the three most expensive procedures.",
    "question_th": "ค้นหาสามขั้นตอนที่แพงที่สุด",
    "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_en": "Find the physicians who are trained in a procedure that costs more than 5000.",
    "question_th": "ค้นหาแพทย์ที่ได้รับการฝึกอบรมในกระบวนการที่มีค่าใช้จ่ายมากกว่า 5,000",
    "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_en": "Find the physician who was trained in the most expensive procedure?",
    "question_th": "ค้นหาแพทย์ที่ได้รับการฝึกอบรมในขั้นตอนที่แพงที่สุด?",
    "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_en": "What is the average cost of procedures that physician John Wen was trained in?",
    "question_th": "ค่าใช้จ่ายเฉลี่ยของขั้นตอนที่แพทย์ John Wen ได้รับการฝึกอบรมคือเท่าใด?",
    "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_en": "Find the names of procedures which physician John Wen was trained in.",
    "question_th": "ค้นหาชื่อหัตถการที่แพทย์ จอห์น เหวิน ได้รับการฝึกอบรม",
    "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_en": "Find all procedures which cost more than 1000 or which physician John Wen was trained in.",
    "question_th": "ค้นหาขั้นตอนทั้งหมดที่มีค่าใช้จ่ายมากกว่า 1,000 หรือแพทย์ที่ John Wen ได้รับการฝึกอบรมมา",
    "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_en": "Find the names of all procedures which cost more than 1000 but which physician John Wen was not trained in?",
    "question_th": "ค้นหาชื่อของหัตถการทั้งหมดที่มีค่าใช้จ่ายมากกว่า 1,000 ราย แต่แพทย์คนไหนที่จอห์น เหวินไม่ได้รับการฝึกอบรมมา?",
    "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_en": "Find the names of all procedures such that the cost is less than 5000 and physician John Wen was trained in.",
    "question_th": "ค้นหาชื่อหัตถการทั้งหมด ค่าใช้จ่ายไม่เกิน 5,000 และแพทย์จอห์น เหวิน ได้รับการอบรมมา",
    "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_en": "Find the name of physicians who are affiliated with both Surgery and Psychiatry departments.",
    "question_th": "ค้นหาชื่อแพทย์สังกัดแผนกศัลยศาสตร์และจิตเวช",
    "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_en": "Find the name of physicians who are affiliated with Surgery or Psychiatry department.",
    "question_th": "ค้นหาชื่อแพทย์สังกัดแผนกศัลยศาสตร์หรือจิตเวช",
    "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_en": "Find the names of patients who are not using the medication of Procrastin-X.",
    "question_th": "ค้นหาชื่อผู้ป่วยที่ไม่ได้ใช้ยา 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_en": "Find the number of patients who are not using the medication of Procrastin-X.",
    "question_th": "ค้นหาจำนวนผู้ป่วยที่ไม่ได้ใช้ยา 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_en": "How many appointments are there?",
    "question_th": "มีนัดกันกี่คน?",
    "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_en": "Find the names of nurses who are on call.",
    "question_th": "ค้นหาชื่อพยาบาลที่โทรมา",
    "context": "CREATE TABLE on_call (nurse VARCHAR); CREATE TABLE nurse (name VARCHAR, EmployeeID VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM ship",
    "question_en": "How many ships are there?",
    "question_th": "มีเรือกี่ลำ?",
    "context": "CREATE TABLE ship (Id VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM ship ORDER BY Tonnage",
    "question_en": "List the name of ships in ascending order of tonnage.",
    "question_th": "รายชื่อเรือตามลำดับน้ำหนักจากน้อยไปหามาก",
    "context": "CREATE TABLE ship (Name VARCHAR, Tonnage VARCHAR)"
  },
  {
    "answer": "SELECT TYPE, Nationality FROM ship",
    "question_en": "What are the type and nationality of ships?",
    "question_th": "เรือประเภทและสัญชาติคืออะไร?",
    "context": "CREATE TABLE ship (TYPE VARCHAR, Nationality VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM ship WHERE Nationality <> \"United States\"",
    "question_en": "List the name of ships whose nationality is not \"United States\".",
    "question_th": "ระบุชื่อเรือที่ไม่มีสัญชาติ \"สหรัฐอเมริกา\"",
    "context": "CREATE TABLE ship (Name VARCHAR, Nationality VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM ship WHERE Nationality = \"United States\" OR Nationality = \"United Kingdom\"",
    "question_en": "Show the name of ships whose nationality is either United States or United Kingdom.",
    "question_th": "แสดงชื่อเรือที่มีสัญชาติเป็นสหรัฐอเมริกาหรือสหราชอาณาจักร",
    "context": "CREATE TABLE ship (Name VARCHAR, Nationality VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM ship ORDER BY Tonnage DESC LIMIT 1",
    "question_en": "What is the name of the ship with the largest tonnage?",
    "question_th": "เรือที่มีน้ำหนักมากที่สุดชื่ออะไร?",
    "context": "CREATE TABLE ship (Name VARCHAR, Tonnage VARCHAR)"
  },
  {
    "answer": "SELECT TYPE, COUNT(*) FROM ship GROUP BY TYPE",
    "question_en": "Show different types of ships and the number of ships of each type.",
    "question_th": "แสดงประเภทเรือและจำนวนเรือแต่ละประเภท",
    "context": "CREATE TABLE ship (TYPE VARCHAR)"
  },
  {
    "answer": "SELECT TYPE FROM ship GROUP BY TYPE ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "Please show the most common type of ships.",
    "question_th": "กรุณาแสดงประเภทเรือที่พบบ่อยที่สุด",
    "context": "CREATE TABLE ship (TYPE VARCHAR)"
  },
  {
    "answer": "SELECT Nationality FROM ship GROUP BY Nationality HAVING COUNT(*) > 2",
    "question_en": "List the nations that have more than two ships.",
    "question_th": "รายชื่อประเทศที่มีเรือมากกว่าสองลำ",
    "context": "CREATE TABLE ship (Nationality VARCHAR)"
  },
  {
    "answer": "SELECT TYPE, AVG(Tonnage) FROM ship GROUP BY TYPE",
    "question_en": "Show different types of ships and the average tonnage of ships of each type.",
    "question_th": "แสดงเรือประเภทต่างๆ และน้ำหนักเฉลี่ยของเรือแต่ละประเภท",
    "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_en": "Show codes and fates of missions, and names of ships involved.",
    "question_th": "แสดงรหัสและชะตากรรมของภารกิจ และชื่อเรือที่เกี่ยวข้อง",
    "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_en": "Show names of ships involved in a mission launched after 1928.",
    "question_th": "แสดงชื่อเรือที่เกี่ยวข้องกับภารกิจที่เปิดตัวหลังปี 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_en": "Show the distinct fate of missions that involve ships with nationality \"United States\"",
    "question_th": "เผยชะตากรรมที่ชัดเจนของภารกิจที่เกี่ยวข้องกับเรือสัญชาติ \"สหรัฐอเมริกา\"",
    "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_en": "List the name of ships that are not involved in any mission",
    "question_th": "รายชื่อเรือที่ไม่เกี่ยวข้องกับภารกิจใดๆ",
    "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_en": "Show the types of ships that have both ships with tonnage larger than 6000 and ships with tonnage smaller than 4000.",
    "question_th": "แสดงประเภทเรือที่มีทั้งเรือที่มีระวางน้ำหนักมากกว่า 6,000 และเรือที่มีระวางน้ำหนักน้อยกว่า 4,000",
    "context": "CREATE TABLE ship (TYPE VARCHAR, Tonnage INTEGER)"
  },
  {
    "answer": "SELECT COUNT(*) FROM list",
    "question_en": "Find the number of students in total.",
    "question_th": "ค้นหาจำนวนนักเรียนทั้งหมด",
    "context": "CREATE TABLE list (Id VARCHAR)"
  },
  {
    "answer": "SELECT lastname FROM list WHERE classroom = 111",
    "question_en": "Find the last names of students studying in room 111.",
    "question_th": "ค้นหานามสกุลของนักเรียนที่กำลังศึกษาอยู่ในห้อง 111",
    "context": "CREATE TABLE list (lastname VARCHAR, classroom VARCHAR)"
  },
  {
    "answer": "SELECT firstname FROM list WHERE classroom = 108",
    "question_en": "Find the first names of students studying in room 108.",
    "question_th": "ค้นหารายชื่อนักเรียนที่กำลังศึกษาอยู่ในห้อง 108",
    "context": "CREATE TABLE list (firstname VARCHAR, classroom VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT firstname FROM list WHERE classroom = 107",
    "question_en": "What are the first names of students studying in room 107?",
    "question_th": "นักเรียนที่กำลังศึกษาอยู่ในห้อง 107 มีชื่อแรกว่าอะไร?",
    "context": "CREATE TABLE list (firstname VARCHAR, classroom VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT classroom, grade FROM list",
    "question_en": "For each classroom report the grade that is taught in it. Report just the classroom number and the grade number.",
    "question_th": "สำหรับแต่ละห้องเรียนให้รายงานเกรดที่สอนในนั้น แจ้งเฉพาะเลขห้องเรียนและเลขเกรด",
    "context": "CREATE TABLE list (classroom VARCHAR, grade VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT grade FROM list WHERE classroom = 103",
    "question_en": "Which grade is studying in classroom 103?",
    "question_th": "กำลังเรียนอยู่ชั้นไหนในห้องเรียน 103?",
    "context": "CREATE TABLE list (grade VARCHAR, classroom VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT grade FROM list WHERE classroom = 105",
    "question_en": "Find the grade studying in room 105.",
    "question_th": "ค้นหาเกรดที่กำลังเรียนอยู่ในห้อง 105",
    "context": "CREATE TABLE list (grade VARCHAR, classroom VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT classroom FROM list WHERE grade = 4",
    "question_en": "Which classrooms are used by grade 4?",
    "question_th": "ชั้นประถมศึกษาปีที่ 4 ใช้ห้องเรียนใดบ้าง",
    "context": "CREATE TABLE list (classroom VARCHAR, grade VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT classroom FROM list WHERE grade = 5",
    "question_en": "Which classrooms are used by grade 5?",
    "question_th": "ชั้นประถมศึกษาปีที่ 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_en": "Find the last names of the teachers that teach fifth grade.",
    "question_th": "ค้นหานามสกุลครูที่สอนชั้นประถมศึกษาปีที่ 5",
    "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_en": "Find the first names of the teachers that teach first grade.",
    "question_th": "ค้นหาชื่อครูที่สอนชั้นประถมศึกษาปีที่ 1",
    "context": "CREATE TABLE list (classroom VARCHAR); CREATE TABLE teachers (firstname VARCHAR, classroom VARCHAR)"
  },
  {
    "answer": "SELECT firstname FROM teachers WHERE classroom = 110",
    "question_en": "Find the first names of all the teachers that teach in classroom 110.",
    "question_th": "ค้นหาชื่อครูทุกคนที่สอนในห้องเรียน 110",
    "context": "CREATE TABLE teachers (firstname VARCHAR, classroom VARCHAR)"
  },
  {
    "answer": "SELECT lastname FROM teachers WHERE classroom = 109",
    "question_en": "Find the last names of teachers teaching in classroom 109.",
    "question_th": "ค้นหานามสกุลครูผู้สอนในห้องเรียน 109",
    "context": "CREATE TABLE teachers (lastname VARCHAR, classroom VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT firstname, lastname FROM teachers",
    "question_en": "Report the first name and last name of all the teachers.",
    "question_th": "แจ้งชื่อและนามสกุลของอาจารย์ทุกท่าน",
    "context": "CREATE TABLE teachers (firstname VARCHAR, lastname VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT firstname, lastname FROM list",
    "question_en": "Report the first name and last name of all the students.",
    "question_th": "แจ้งชื่อและนามสกุลของนักเรียนทุกคน",
    "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_en": "Find all students taught by OTHA MOYER. Output the first and last names of the students.",
    "question_th": "ค้นหานักเรียนทั้งหมดที่สอนโดย OTHA MOYER แจ้งชื่อและนามสกุลของนักเรียน",
    "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_en": "Find all students taught by MARROTTE KIRK. Output first and last names of students.",
    "question_th": "ค้นหานักเรียนทุกคนที่สอนโดย MARROTTE KIRK แจ้งชื่อและนามสกุลของนักเรียน",
    "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_en": "Find the first and last name of all the teachers that teach EVELINA BROMLEY.",
    "question_th": "ค้นหาชื่อและนามสกุลของครูทุกคนที่สอน 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_en": "Find the last names of all the teachers that teach GELL TAMI.",
    "question_th": "ค้นหานามสกุลของครูทุกคนที่สอน 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_en": "How many students does LORIA ONDERSMA teaches?",
    "question_th": "LORIA ONDERSMA สอนนักเรียนกี่คน",
    "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_en": "How many students does KAWA GORDON teaches?",
    "question_th": "KAWA GORDON สอนนักเรียนกี่คน",
    "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_en": "Find the number of students taught by TARRING LEIA.",
    "question_th": "ค้นหาจำนวนนักเรียนที่สอนโดย 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_en": "How many teachers does the student named CHRISSY NABOZNY have?",
    "question_th": "นักเรียนชื่อ CHRISSY NABOZNY มีครูกี่คน",
    "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_en": "How many teachers does the student named MADLOCK RAY have?",
    "question_th": "นักเรียนชื่อ MADLOCK RAY มีครูกี่คน",
    "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_en": "Find all first-grade students who are NOT taught by OTHA MOYER. Report their first and last names.",
    "question_th": "ค้นหานักเรียนชั้นประถมศึกษาปีที่ 1 ที่ไม่ได้สอนโดย OTHA MOYER แจ้งชื่อและนามสกุลของตน",
    "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_en": "Find the last names of the students in third grade that are not taught by COVIN JEROME.",
    "question_th": "ค้นหานามสกุลของนักเรียนชั้นประถมศึกษาปีที่ 3 ที่ไม่ได้สอนโดย 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_en": "For each grade, report the grade, the number of classrooms in which it is taught and the total number of students in the grade.",
    "question_th": "สำหรับแต่ละเกรด ให้รายงานเกรด จำนวนห้องเรียนที่สอน และจำนวนนักเรียนทั้งหมดในเกรดนั้น",
    "context": "CREATE TABLE list (grade VARCHAR, classroom VARCHAR)"
  },
  {
    "answer": "SELECT classroom, COUNT(DISTINCT grade) FROM list GROUP BY classroom",
    "question_en": "For each classroom, report the classroom number and the number of grades using it.",
    "question_th": "สำหรับแต่ละห้องเรียน ให้รายงานจำนวนห้องเรียนและจำนวนเกรดที่ใช้งาน",
    "context": "CREATE TABLE list (classroom VARCHAR, grade VARCHAR)"
  },
  {
    "answer": "SELECT classroom FROM list GROUP BY classroom ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "Which classroom has the most students?",
    "question_th": "ห้องเรียนใดมีนักเรียนมากที่สุด?",
    "context": "CREATE TABLE list (classroom VARCHAR)"
  },
  {
    "answer": "SELECT classroom, COUNT(*) FROM list GROUP BY classroom",
    "question_en": "Report the number of students in each classroom.",
    "question_th": "รายงานจำนวนนักเรียนในแต่ละห้องเรียน",
    "context": "CREATE TABLE list (classroom VARCHAR)"
  },
  {
    "answer": "SELECT classroom, COUNT(*) FROM list WHERE grade = \"0\" GROUP BY classroom",
    "question_en": "For each grade 0 classroom, report the total number of students.",
    "question_th": "สำหรับห้องเรียนชั้นประถมศึกษาปีที่ 0 แต่ละห้อง ให้รายงานจำนวนนักเรียนทั้งหมด",
    "context": "CREATE TABLE list (classroom VARCHAR, grade VARCHAR)"
  },
  {
    "answer": "SELECT classroom, COUNT(*) FROM list WHERE grade = \"4\" GROUP BY classroom",
    "question_en": "Report the total number of students for each fourth-grade classroom.",
    "question_th": "รายงานจำนวนนักเรียนทั้งหมดในแต่ละห้องเรียนชั้นประถมศึกษาปีที่ 4",
    "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_en": "Find the name of the teacher who teaches the largest number of students.",
    "question_th": "ค้นหาชื่อครูผู้สอนที่มีนักเรียนมากที่สุด",
    "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_en": "Find the number of students in one classroom.",
    "question_th": "ค้นหาจำนวนนักเรียนในหนึ่งห้องเรียน",
    "context": "CREATE TABLE list (classroom VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM company WHERE Headquarters = 'USA'",
    "question_en": "How many companies are headquartered in the US?",
    "question_th": "มีบริษัทกี่แห่งที่มีสำนักงานใหญ่ในสหรัฐอเมริกา?",
    "context": "CREATE TABLE company (Headquarters VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM company ORDER BY Sales_in_Billion",
    "question_en": "List the names of companies by ascending number of sales.",
    "question_th": "รายชื่อบริษัทโดยเรียงตามจำนวนยอดขายจากน้อยไปมาก",
    "context": "CREATE TABLE company (Name VARCHAR, Sales_in_Billion VARCHAR)"
  },
  {
    "answer": "SELECT Headquarters, Industry FROM company",
    "question_en": "What are the headquarters and industries of all companies?",
    "question_th": "สำนักงานใหญ่และอุตสาหกรรมของบริษัททั้งหมดคืออะไร?",
    "context": "CREATE TABLE company (Headquarters VARCHAR, Industry VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM company WHERE Industry = \"Banking\" OR Industry = \"Retailing\"",
    "question_en": "Show the names of companies in the banking or retailing industry?",
    "question_th": "แสดงชื่อบริษัทในอุตสาหกรรมการธนาคารหรือการค้าปลีก?",
    "context": "CREATE TABLE company (Name VARCHAR, Industry VARCHAR)"
  },
  {
    "answer": "SELECT MAX(Market_Value_in_Billion), MIN(Market_Value_in_Billion) FROM company",
    "question_en": "What is the maximum and minimum market value of companies?",
    "question_th": "มูลค่าตลาดสูงสุดและต่ำสุดของบริษัทคือเท่าใด?",
    "context": "CREATE TABLE company (Market_Value_in_Billion INTEGER)"
  },
  {
    "answer": "SELECT Headquarters FROM company ORDER BY Sales_in_Billion DESC LIMIT 1",
    "question_en": "What is the headquarter of the company with the largest sales?",
    "question_th": "สำนักงานใหญ่ของบริษัทที่มียอดขายมากที่สุดคือที่ใด?",
    "context": "CREATE TABLE company (Headquarters VARCHAR, Sales_in_Billion VARCHAR)"
  },
  {
    "answer": "SELECT Headquarters, COUNT(*) FROM company GROUP BY Headquarters",
    "question_en": "Show the different headquarters and number of companies at each headquarter.",
    "question_th": "แสดงสำนักงานใหญ่และจำนวนบริษัทที่แตกต่างกันในแต่ละสำนักงานใหญ่",
    "context": "CREATE TABLE company (Headquarters VARCHAR)"
  },
  {
    "answer": "SELECT Headquarters FROM company GROUP BY Headquarters ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "Show the most common headquarter for companies.",
    "question_th": "แสดงสำนักงานใหญ่ที่พบบ่อยที่สุดสำหรับบริษัทต่างๆ",
    "context": "CREATE TABLE company (Headquarters VARCHAR)"
  },
  {
    "answer": "SELECT Headquarters FROM company GROUP BY Headquarters HAVING COUNT(*) >= 2",
    "question_en": "Show the headquarters that have at least two companies.",
    "question_th": "แสดงสำนักงานใหญ่ที่มีอย่างน้อยสองบริษัท",
    "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_en": "Show the headquarters that have both companies in banking industry and companies in oil and gas industry.",
    "question_th": "แสดงสำนักงานใหญ่ที่มีทั้งบริษัทในอุตสาหกรรมการธนาคารและบริษัทในอุตสาหกรรมน้ำมันและก๊าซ",
    "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_en": "Show the names of companies and of employees.",
    "question_th": "แสดงชื่อบริษัทและพนักงาน",
    "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_en": "Show names of companies and that of employees in descending order of number of years working for that employee.",
    "question_th": "แสดงชื่อบริษัทและพนักงานโดยเรียงลำดับตามจำนวนปีที่ทำงานให้กับพนักงานคนนั้นจากมากไปน้อย",
    "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_en": "Show the names of employees that work for companies with sales bigger than 200.",
    "question_th": "แสดงชื่อพนักงานที่ทำงานให้กับบริษัทที่มียอดขายมากกว่า 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_en": "Show the names of companies and the number of employees they have",
    "question_th": "แสดงชื่อบริษัทและจำนวนพนักงานที่พวกเขามี",
    "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_en": "List the names of people that are not employed by any company",
    "question_th": "รายชื่อบุคคลที่ไม่ได้รับการว่าจ้างจากบริษัทใดๆ",
    "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_en": "list the names of the companies with more than 200 sales in the descending order of sales and profits.",
    "question_th": "รายชื่อบริษัทที่มียอดขายมากกว่า 200 ราย โดยเรียงลำดับยอดขายและกำไรจากมากไปหาน้อย",
    "context": "CREATE TABLE company (name VARCHAR, Sales_in_Billion INTEGER, Profits_in_Billion VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM film",
    "question_en": "How many film are there?",
    "question_th": "มีหนังกี่เรื่อง?",
    "context": "CREATE TABLE film (Id VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT Director FROM film",
    "question_en": "List the distinct director of all films.",
    "question_th": "รายชื่อผู้กำกับที่โดดเด่นของภาพยนตร์ทั้งหมด",
    "context": "CREATE TABLE film (Director VARCHAR)"
  },
  {
    "answer": "SELECT AVG(Gross_in_dollar) FROM film",
    "question_en": "What is the average ticket sales gross in dollars of films?",
    "question_th": "ยอดขายตั๋วเฉลี่ยรวมเป็นดอลลาร์ของภาพยนตร์คือเท่าไร?",
    "context": "CREATE TABLE film (Gross_in_dollar INTEGER)"
  },
  {
    "answer": "SELECT Low_Estimate, High_Estimate FROM film_market_estimation",
    "question_en": "What are the low and high estimates of film markets?",
    "question_th": "ประมาณการตลาดภาพยนตร์ต่ำและสูงเป็นอย่างไร?",
    "context": "CREATE TABLE film_market_estimation (Low_Estimate VARCHAR, High_Estimate VARCHAR)"
  },
  {
    "answer": "SELECT TYPE FROM film_market_estimation WHERE YEAR = 1995",
    "question_en": "What are the types of film market estimations in year 1995?",
    "question_th": "การประมาณการณ์ตลาดภาพยนตร์ในปี 2538 มีกี่ประเภท?",
    "context": "CREATE TABLE film_market_estimation (TYPE VARCHAR, YEAR VARCHAR)"
  },
  {
    "answer": "SELECT MAX(Number_cities), MIN(Number_cities) FROM market",
    "question_en": "What are the maximum and minimum number of cities in all markets.",
    "question_th": "จำนวนเมืองสูงสุดและต่ำสุดในทุกตลาดคือเท่าใด",
    "context": "CREATE TABLE market (Number_cities INTEGER)"
  },
  {
    "answer": "SELECT COUNT(*) FROM market WHERE Number_cities < 300",
    "question_en": "How many markets have number of cities smaller than 300?",
    "question_th": "มีกี่ตลาดที่มีเมืองจำนวนน้อยกว่า 300 แห่ง",
    "context": "CREATE TABLE market (Number_cities INTEGER)"
  },
  {
    "answer": "SELECT Country FROM market ORDER BY Country",
    "question_en": "List all countries of markets in ascending alphabetical order.",
    "question_th": "รายชื่อประเทศของตลาดทั้งหมดตามลำดับตัวอักษรจากน้อยไปมาก",
    "context": "CREATE TABLE market (Country VARCHAR)"
  },
  {
    "answer": "SELECT Country FROM market ORDER BY Number_cities DESC",
    "question_en": "List all countries of markets in descending order of number of cities.",
    "question_th": "รายชื่อประเทศของตลาดทั้งหมดโดยเรียงตามจำนวนเมืองจากมากไปหาน้อย",
    "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_en": "Please show the titles of films and the types of market estimations.",
    "question_th": "กรุณาแสดงชื่อภาพยนตร์และประเภทการประมาณการตลาด",
    "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_en": "Show the distinct director of films with market estimation in the year of 1995.",
    "question_th": "แสดงผลงานผู้กำกับภาพยนตร์ที่โดดเด่นพร้อมประมาณการตลาดปี 2538",
    "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_en": "What is the average number of cities of markets with low film market estimate bigger than 10000?",
    "question_th": "จำนวนเมืองโดยเฉลี่ยของตลาดที่มีการประมาณตลาดภาพยนตร์ต่ำมากกว่า 10,000 คือเท่าใด",
    "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_en": "Please list the countries and years of film market estimations.",
    "question_th": "โปรดระบุประเทศและปีของการประมาณการตลาดภาพยนตร์",
    "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_en": "Please list the years of film market estimations when the market is in country \"Japan\" in descending order.",
    "question_th": "โปรดระบุปีของการประมาณการณ์ตลาดภาพยนตร์เมื่อตลาดอยู่ในประเทศ \"ญี่ปุ่น\" ตามลำดับจากมากไปน้อย",
    "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_en": "List the studios of each film and the number of films produced by that studio.",
    "question_th": "ระบุสตูดิโอของภาพยนตร์แต่ละเรื่องและจำนวนภาพยนตร์ที่ผลิตโดยสตูดิโอนั้น",
    "context": "CREATE TABLE film (Studio VARCHAR)"
  },
  {
    "answer": "SELECT Studio FROM film GROUP BY Studio ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "List the name of film studio that have the most number of films.",
    "question_th": "รายชื่อสตูดิโอภาพยนตร์ที่มีจำนวนภาพยนตร์มากที่สุด",
    "context": "CREATE TABLE film (Studio VARCHAR)"
  },
  {
    "answer": "SELECT Studio FROM film GROUP BY Studio HAVING COUNT(*) >= 2",
    "question_en": "List the names of studios that have at least two films.",
    "question_th": "รายชื่อสตูดิโอที่มีภาพยนตร์อย่างน้อยสองเรื่อง",
    "context": "CREATE TABLE film (Studio VARCHAR)"
  },
  {
    "answer": "SELECT Title FROM film WHERE NOT Film_ID IN (SELECT Film_ID FROM film_market_estimation)",
    "question_en": "List the title of films that do not have any market estimation.",
    "question_th": "รายชื่อภาพยนตร์ที่ไม่มีการประเมินตลาด",
    "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_en": "Show the studios that have produced films with director \"Nicholas Meyer\" and \"Walter Hill\".",
    "question_th": "แสดงสตูดิโอที่ผลิตภาพยนตร์ร่วมกับผู้กำกับ \"Nicholas Meyer\" และ \"Walter Hill\"",
    "context": "CREATE TABLE film (Studio VARCHAR, Director VARCHAR)"
  },
  {
    "answer": "SELECT title, Studio FROM film WHERE Studio LIKE \"%Universal%\"",
    "question_en": "Find the titles and studios of the films that are produced by some film studios that contained the word \"Universal\".",
    "question_th": "ค้นหาชื่อและสตูดิโอของภาพยนตร์ที่ผลิตโดยสตูดิโอภาพยนตร์บางแห่งที่มีคำว่า \"Universal\"",
    "context": "CREATE TABLE film (title VARCHAR, Studio VARCHAR)"
  },
  {
    "answer": "SELECT Studio FROM film EXCEPT SELECT Studio FROM film WHERE Director = \"Walter Hill\"",
    "question_en": "Show the studios that have not produced films with director \"Walter Hill\".",
    "question_th": "แสดงสตูดิโอที่ยังไม่ได้ผลิตภาพยนตร์ร่วมกับผู้กำกับ \"วอลเตอร์ ฮิลล์\"",
    "context": "CREATE TABLE film (Studio VARCHAR, Director VARCHAR)"
  },
  {
    "answer": "SELECT Studio FROM film GROUP BY Studio HAVING AVG(Gross_in_dollar) >= 4500000",
    "question_en": "List the studios which average gross is above 4500000.",
    "question_th": "รายชื่อสตูดิโอที่มียอดรวมเฉลี่ยสูงกว่า 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_en": "What is the title of the film that has the highest high market estimation.",
    "question_th": "หนังเรื่องไหนที่ครองตลาดสูงที่สุด",
    "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_en": "What are the titles and directors of the films were never presented in China?",
    "question_th": "ชื่อและผู้กำกับของภาพยนตร์ใดบ้างที่ไม่เคยถูกนำเสนอในประเทศจีน?",
    "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_en": "How many calendar items do we have?",
    "question_th": "เรามีรายการปฏิทินกี่รายการ?",
    "context": "CREATE TABLE Ref_calendar (Id VARCHAR)"
  },
  {
    "answer": "SELECT calendar_date, day_Number FROM Ref_calendar",
    "question_en": "Show all calendar dates and day Numbers.",
    "question_th": "แสดงวันที่และหมายเลขวันในปฏิทินทั้งหมด",
    "context": "CREATE TABLE Ref_calendar (calendar_date VARCHAR, day_Number VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Ref_document_types",
    "question_en": "Show the number of document types.",
    "question_th": "แสดงจำนวนประเภทเอกสาร",
    "context": "CREATE TABLE Ref_document_types (Id VARCHAR)"
  },
  {
    "answer": "SELECT document_type_code, document_type_name FROM Ref_document_types",
    "question_en": "List all document type codes and document type names.",
    "question_th": "แสดงรายการรหัสประเภทเอกสารและชื่อประเภทเอกสารทั้งหมด",
    "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_en": "What is the name and description for document type code RV?",
    "question_th": "ชื่อและคำอธิบายของรหัสประเภทเอกสาร 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_en": "What is the document type code for document type \"Paper\"?",
    "question_th": "รหัสประเภทเอกสารสำหรับเอกสารประเภท \"กระดาษ\" คืออะไร?",
    "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_en": "Show the number of documents with document type code CV or BK.",
    "question_th": "แสดงจำนวนเอกสารพร้อมรหัสประเภทเอกสาร CV หรือ BK",
    "context": "CREATE TABLE All_documents (document_type_code VARCHAR)"
  },
  {
    "answer": "SELECT date_stored FROM All_documents WHERE Document_name = \"Marry CV\"",
    "question_en": "What is the date when the document \"Marry CV\" was stored?",
    "question_th": "เอกสาร \"Marry CV\" ถูกจัดเก็บไว้เมื่อใด?",
    "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_en": "What is the day Number and date of all the documents?",
    "question_th": "วันที่เท่าไหร่และวันที่ของเอกสารทั้งหมดคืออะไร?",
    "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_en": "What is the document type name for the document with name \"How to read a book\"?",
    "question_th": "ชื่อประเภทเอกสารของเอกสารชื่อ \"อ่านหนังสืออย่างไร\" คืออะไร",
    "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_en": "Show the number of locations.",
    "question_th": "แสดงจำนวนสถานที่",
    "context": "CREATE TABLE Ref_locations (Id VARCHAR)"
  },
  {
    "answer": "SELECT location_code, location_name FROM Ref_locations",
    "question_en": "List all location codes and location names.",
    "question_th": "ระบุรหัสสถานที่และชื่อสถานที่ทั้งหมด",
    "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_en": "What are the name and description for location code x?",
    "question_th": "ชื่อและคำอธิบายของรหัสสถานที่ 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_en": "What is the location code for the country \"Canada\"?",
    "question_th": "รหัสสถานที่ของประเทศ \"แคนาดา\" คืออะไร?",
    "context": "CREATE TABLE Ref_locations (location_code VARCHAR, location_name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM ROLES",
    "question_en": "How many roles are there?",
    "question_th": "มีกี่บทบาท?",
    "context": "CREATE TABLE ROLES (Id VARCHAR)"
  },
  {
    "answer": "SELECT role_code, role_name, role_description FROM ROLES",
    "question_en": "List all role codes, role names, and role descriptions.",
    "question_th": "แสดงรายการรหัสบทบาท ชื่อบทบาท และคำอธิบายบทบาททั้งหมด",
    "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_en": "What are the name and description for role code \"MG\"?",
    "question_th": "ชื่อและคำอธิบายของรหัสบทบาท \"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_en": "Show the description for role name \"Proof Reader\".",
    "question_th": "แสดงคำอธิบายชื่อบทบาท \"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_en": "Show the name, role code, and date of birth for the employee with name 'Armani'.",
    "question_th": "แสดงชื่อ รหัสบทบาท และวันเกิดของพนักงานชื่อ 'อาร์มานี่'",
    "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_en": "What is the id for the employee called Ebba?",
    "question_th": "ID ของพนักงานชื่อ Ebba คืออะไร?",
    "context": "CREATE TABLE Employees (employee_ID VARCHAR, employee_name VARCHAR)"
  },
  {
    "answer": "SELECT employee_name FROM Employees WHERE role_code = \"HR\"",
    "question_en": "Show the names of all the employees with role \"HR\".",
    "question_th": "แสดงรายชื่อพนักงานทั้งหมดที่มีบทบาท \"HR\"",
    "context": "CREATE TABLE Employees (employee_name VARCHAR, role_code VARCHAR)"
  },
  {
    "answer": "SELECT role_code, COUNT(*) FROM Employees GROUP BY role_code",
    "question_en": "Show all role codes and the number of employees in each role.",
    "question_th": "แสดงรหัสบทบาททั้งหมดและจำนวนพนักงานในแต่ละบทบาท",
    "context": "CREATE TABLE Employees (role_code VARCHAR)"
  },
  {
    "answer": "SELECT role_code FROM Employees GROUP BY role_code ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "What is the role code with the largest number of employees?",
    "question_th": "รหัสบทบาทที่มีพนักงานมากที่สุดคืออะไร?",
    "context": "CREATE TABLE Employees (role_code VARCHAR)"
  },
  {
    "answer": "SELECT role_code FROM Employees GROUP BY role_code HAVING COUNT(*) >= 3",
    "question_en": "Show all role codes with at least 3 employees.",
    "question_th": "แสดงรหัสบทบาททั้งหมดที่มีพนักงานอย่างน้อย 3 คน",
    "context": "CREATE TABLE Employees (role_code VARCHAR)"
  },
  {
    "answer": "SELECT role_code FROM Employees GROUP BY role_code ORDER BY COUNT(*) LIMIT 1",
    "question_en": "Show the role code with the least employees.",
    "question_th": "แสดงรหัสบทบาทโดยมีพนักงานน้อยที่สุด",
    "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_en": "What is the role name and role description for employee called Ebba?",
    "question_th": "ชื่อบทบาทและคำอธิบายบทบาทสำหรับพนักงานชื่อ 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_en": "Show the names of employees with role name Editor.",
    "question_th": "แสดงชื่อพนักงานพร้อมชื่อบทบาทบรรณาธิการ",
    "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_en": "Show the employee ids for all employees with role name \"Human Resource\" or \"Manager\".",
    "question_th": "แสดงรหัสพนักงานสำหรับพนักงานทุกคนที่มีชื่อบทบาท \"ทรัพยากรบุคคล\" หรือ \"ผู้จัดการ\"",
    "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_en": "What are the different location codes for documents?",
    "question_th": "รหัสสถานที่ต่าง ๆ สำหรับเอกสารคืออะไร?",
    "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_en": "Show the location name for document \"Robin CV\".",
    "question_th": "แสดงชื่อสถานที่สำหรับเอกสาร \"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_en": "Show the location code, the starting date and ending data in that location for all the documents.",
    "question_th": "แสดงรหัสสถานที่ วันที่เริ่มต้น และข้อมูลสิ้นสุดในตำแหน่งนั้นสำหรับเอกสารทั้งหมด",
    "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_en": "What is \"the date in location from\" and \"the date in location to\" for the document with name \"Robin CV\"?",
    "question_th": "\"วันที่ในสถานที่ตั้งแต่\" และ \"วันที่ในสถานที่ถึง\" สำหรับเอกสารชื่อ \"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_en": "Show the location codes and the number of documents in each location.",
    "question_th": "แสดงรหัสสถานที่และจำนวนเอกสารในแต่ละสถานที่",
    "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_en": "What is the location code with the most documents?",
    "question_th": "รหัสสถานที่ที่มีเอกสารมากที่สุดคืออะไร?",
    "context": "CREATE TABLE Document_locations (location_code VARCHAR)"
  },
  {
    "answer": "SELECT location_code FROM Document_locations GROUP BY location_code HAVING COUNT(*) >= 3",
    "question_en": "Show the location codes with at least 3 documents.",
    "question_th": "แสดงรหัสสถานที่พร้อมเอกสารอย่างน้อย 3 ชุด",
    "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_en": "Show the location name and code with the least documents.",
    "question_th": "แสดงชื่อสถานที่และรหัสด้วยเอกสารน้อยที่สุด",
    "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_en": "What are the names of the employees who authorised the destruction and the employees who destroyed the corresponding documents?",
    "question_th": "พนักงานที่อนุญาตให้ทำลายและพนักงานที่ทำลายเอกสารที่เกี่ยวข้องมีชื่อว่าอะไร?",
    "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_en": "Show the id of each employee and the number of document destruction authorised by that employee.",
    "question_th": "แสดงรหัสของพนักงานแต่ละคนและจำนวนการทำลายเอกสารที่ได้รับอนุญาตจากพนักงานคนนั้น",
    "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_en": "Show the employee ids and the number of documents destroyed by each employee.",
    "question_th": "แสดงรหัสพนักงานและจำนวนเอกสารที่พนักงานแต่ละคนทำลาย",
    "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_en": "Show the ids of the employees who don't authorize destruction for any document.",
    "question_th": "แสดงรหัสพนักงานที่ไม่อนุญาตให้ทำลายเอกสารใดๆ",
    "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_en": "Show the ids of all employees who have authorized destruction.",
    "question_th": "แสดงรหัสของพนักงานทุกคนที่ได้รับอนุญาตให้ทำลาย",
    "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_en": "Show the ids of all employees who have destroyed a document.",
    "question_th": "แสดงรหัสของพนักงานทุกคนที่ได้ทำลายเอกสาร",
    "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_en": "Show the ids of all employees who don't destroy any document.",
    "question_th": "แสดงรหัสพนักงานทุกคนที่ไม่ทำลายเอกสารใดๆ",
    "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_en": "Show the ids of all employees who have either destroyed a document or made an authorization to do this.",
    "question_th": "แสดงรหัสของพนักงานทุกคนที่ได้ทำลายเอกสารหรือได้รับอนุญาตให้ดำเนินการนี้",
    "context": "CREATE TABLE Documents_to_be_destroyed (Destroyed_by_Employee_ID VARCHAR, Destruction_Authorised_by_Employee_ID VARCHAR)"
  },
  {
    "answer": "SELECT clubname FROM club",
    "question_en": "What are the names of all clubs?",
    "question_th": "ชื่อสโมสรทั้งหมดคืออะไร?",
    "context": "CREATE TABLE club (clubname VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM student",
    "question_en": "How many students are there?",
    "question_th": "มีนักเรียนกี่คน?",
    "context": "CREATE TABLE student (Id VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT fname FROM student",
    "question_en": "What are the first names of all the students?",
    "question_th": "ชื่อของนักเรียนทั้งหมดคืออะไร?",
    "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_en": "Find the last names of the members of the club \"Bootup Baltimore\".",
    "question_th": "ค้นหานามสกุลของสมาชิกของสโมสร \"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_en": "Who are the members of the club named \"Hopkins Student Enterprises\"? Show the last name.",
    "question_th": "สมาชิกของชมรมชื่อ \"Hopkins Student Enterprises\" คือใคร? แสดงนามสกุล.",
    "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_en": "How many members does the club \"Tennis Club\" has?",
    "question_th": "ชมรมเทนนิสมีสมาชิกกี่คน?",
    "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_en": "Find the number of members of club \"Pen and Paper Gaming\".",
    "question_th": "ค้นหาจำนวนสมาชิกของชมรม \"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_en": "How many clubs does \"Linda Smith\" belong to?",
    "question_th": "“ลินดา สมิธ” อยู่กี่สโมสร?",
    "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_en": "Find the number of clubs where \"Tracy Kim\" is a member.",
    "question_th": "ค้นหาจำนวนคลับที่ \"เทรซี่ คิม\" เป็นสมาชิก",
    "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_en": "Find all the female members of club \"Bootup Baltimore\". Show the first name and last name.",
    "question_th": "ค้นหาสมาชิกหญิงทั้งหมดของคลับ \"Bootup Baltimore\" แสดงชื่อและนามสกุล",
    "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_en": "Find all the male members of club \"Hopkins Student Enterprises\". Show the first name and last name.",
    "question_th": "ค้นหาสมาชิกชายทั้งหมดของชมรม \"Hopkins Student Enterprises\" แสดงชื่อและนามสกุล",
    "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_en": "Find all members of \"Bootup Baltimore\" whose major is \"600\". Show the first name and last name.",
    "question_th": "ค้นหาสมาชิกทั้งหมดของ \"Bootup Baltimore\" ซึ่งวิชาเอกคือ \"600\" แสดงชื่อและนามสกุล",
    "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_en": "Which club has the most members majoring in \"600\"?",
    "question_th": "สโมสรใดมีสมาชิกวิชาเอก \"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_en": "Find the name of the club that has the most female students.",
    "question_th": "ค้นหาชื่อชมรมที่มีนักเรียนหญิงมากที่สุด",
    "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_en": "What is the description of the club named \"Tennis Club\"?",
    "question_th": "สโมสรชื่อ \"Tennis Club\" มีคำอธิบายว่าอย่างไร?",
    "context": "CREATE TABLE club (clubdesc VARCHAR, clubname VARCHAR)"
  },
  {
    "answer": "SELECT clubdesc FROM club WHERE clubname = \"Pen and Paper Gaming\"",
    "question_en": "Find the description of the club \"Pen and Paper Gaming\".",
    "question_th": "ค้นหาคำอธิบายของสโมสร \"เกมปากกาและกระดาษ\"",
    "context": "CREATE TABLE club (clubdesc VARCHAR, clubname VARCHAR)"
  },
  {
    "answer": "SELECT clublocation FROM club WHERE clubname = \"Tennis Club\"",
    "question_en": "What is the location of the club named \"Tennis Club\"?",
    "question_th": "สโมสรชื่อ \"ชมรมเทนนิส\" ตั้งอยู่ที่ใด?",
    "context": "CREATE TABLE club (clublocation VARCHAR, clubname VARCHAR)"
  },
  {
    "answer": "SELECT clublocation FROM club WHERE clubname = \"Pen and Paper Gaming\"",
    "question_en": "Find the location of the club \"Pen and Paper Gaming\".",
    "question_th": "ค้นหาที่ตั้งของชมรม \"เกมปากกาและกระดาษ\"",
    "context": "CREATE TABLE club (clublocation VARCHAR, clubname VARCHAR)"
  },
  {
    "answer": "SELECT clublocation FROM club WHERE clubname = \"Hopkins Student Enterprises\"",
    "question_en": "Where is the club \"Hopkins Student Enterprises\" located?",
    "question_th": "สโมสร \"Hopkins Student Enterprises\" ตั้งอยู่ที่ไหน?",
    "context": "CREATE TABLE club (clublocation VARCHAR, clubname VARCHAR)"
  },
  {
    "answer": "SELECT clubname FROM club WHERE clublocation = \"AKW\"",
    "question_en": "Find the name of all the clubs at \"AKW\".",
    "question_th": "ค้นหาชื่อของสโมสรทั้งหมดที่ \"AKW\"",
    "context": "CREATE TABLE club (clubname VARCHAR, clublocation VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM club WHERE clublocation = \"HHH\"",
    "question_en": "How many clubs are located at \"HHH\"?",
    "question_th": "มีกี่สโมสรที่ \"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_en": "What are the first and last name of the president of the club \"Bootup Baltimore\"?",
    "question_th": "ชื่อและนามสกุลของประธานสโมสร \"บูทอัพ บัลติมอร์\" คืออะไร?",
    "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_en": "Who is the \"CTO\" of club \"Hopkins Student Enterprises\"? Show the first name and last name.",
    "question_th": "ใครคือ \"CTO\" ของสโมสร \"Hopkins Student Enterprises\"? แสดงชื่อและนามสกุล",
    "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_en": "How many different roles are there in the club \"Bootup Baltimore\"?",
    "question_th": "สโมสร 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_en": "How many members of \"Bootup Baltimore\" are older than 18?",
    "question_th": "สมาชิก \"Bootup Baltimore\" ที่มีอายุมากกว่า 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_en": "How many members of club \"Bootup Baltimore\" are younger than 18?",
    "question_th": "สมาชิกชมรม \"Bootup Baltimore\" อายุน้อยกว่า 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_en": "Find the names of all the clubs that have at least a member from the city with city code \"BAL\".",
    "question_th": "ค้นหาชื่อของสโมสรทั้งหมดที่มีสมาชิกจากเมืองเป็นอย่างน้อยด้วยรหัสเมือง \"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_en": "Find the names of the clubs that have at least a member from the city with city code \"HOU\".",
    "question_th": "ค้นหาชื่อสโมสรที่มีสมาชิกจากเมืองเป็นอย่างน้อย โดยมีรหัสเมือง \"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_en": "How many clubs does the student named \"Eric Tai\" belong to?",
    "question_th": "นักเรียนชื่อ \"เอริค ต่าย\" อยู่กี่ชมรม?",
    "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_en": "List the clubs having \"Davis Steven\" as a member.",
    "question_th": "รายชื่อสโมสรที่มี \"เดวิส สตีเวน\" เป็นสมาชิก",
    "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_en": "List the clubs that have at least a member with advisor \"1121\".",
    "question_th": "รายชื่อสโมสรที่มีสมาชิกเป็นที่ปรึกษา \"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_en": "What is the average age of the members of the club \"Bootup Baltimore\"?",
    "question_th": "อายุเฉลี่ยของสมาชิกของสโมสร \"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_en": "Find the average age of members of the club \"Hopkins Student Enterprises\".",
    "question_th": "ค้นหาอายุเฉลี่ยของสมาชิกของสโมสร 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_en": "Retrieve the average age of members of the club \"Tennis Club\".",
    "question_th": "ดึงข้อมูลอายุเฉลี่ยของสมาชิกของสโมสร \"ชมรมเทนนิส\"",
    "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_en": "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'?",
    "question_th": "จำนวนเงินช่วยเหลือที่แตกต่างกันสำหรับทุนที่ส่งเอกสารก่อน '1986-08-26 20:49:27' และทุนสิ้นสุดหลัง '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_en": "List the project details of the project both producing patent and paper as outcomes.",
    "question_th": "ระบุรายละเอียดโครงการของโครงการทั้งการผลิตสิทธิบัตรและกระดาษเป็นผลลัพธ์",
    "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_en": "What is the total grant amount of the organisations described as research?",
    "question_th": "จำนวนทุนทั้งหมดขององค์กรที่ได้รับการอธิบายว่าเป็นการวิจัยคือเท่าใด",
    "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_en": "List from which date and to which date these staff work: project staff of the project which hires the most staffs",
    "question_th": "รายชื่อพนักงานเหล่านี้ทำงานตั้งแต่วันไหนและถึงวันไหน: พนักงานโครงการของโครงการที่จ้างพนักงานมากที่สุด",
    "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_en": "Find the organisation ids and details of the organisations which are involved in",
    "question_th": "ค้นหารหัสองค์กรและรายละเอียดขององค์กรที่เกี่ยวข้อง",
    "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_en": "What is the organisation type and id of the organisation which has the most number of research staff?",
    "question_th": "ประเภทองค์กรและรหัสขององค์กรที่มีจำนวนบุคลากรวิจัยมากที่สุดคืออะไร?",
    "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_en": "Which organisation type hires most research staff?",
    "question_th": "องค์กรประเภทใดที่จ้างเจ้าหน้าที่วิจัยมากที่สุด",
    "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_en": "Find out the send dates of the documents with the grant amount of more than 5000 were granted by organisation type described",
    "question_th": "ค้นหาวันที่ส่งเอกสารที่มีจำนวนทุนมากกว่า 5,000 ที่ได้รับตามประเภทองค์กรที่อธิบายไว้",
    "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_en": "What are the response received dates for the documents described as 'Regular' or granted with more than 100?",
    "question_th": "วันที่ได้รับคำตอบสำหรับเอกสารที่อธิบายว่า 'ปกติ' หรือได้รับมากกว่า 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_en": "List the project details of the projects which did not hire any staff for a researcher role.",
    "question_th": "ระบุรายละเอียดโครงการของโครงการที่ไม่มีการจ้างบุคลากรเป็นนักวิจัย",
    "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_en": "What are the task details, task id and project id for the projects which are detailed as 'omnis' or  have more than 2 outcomes?",
    "question_th": "รายละเอียดงาน รหัสงาน และรหัสโครงการสำหรับโครงการที่มีรายละเอียดเป็น 'omnis' หรือมีผลลัพธ์มากกว่า 2 รายการคืออะไร",
    "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_en": "When do all the researcher role staff start to work, and when do they stop working?",
    "question_th": "เจ้าหน้าที่บทบาทนักวิจัยทั้งหมดเริ่มทำงานเมื่อใด และจะหยุดทำงานเมื่อใด",
    "context": "CREATE TABLE Project_Staff (date_from VARCHAR, date_to VARCHAR, role_code VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT role_code) FROM Project_Staff",
    "question_en": "How many kinds of roles are there for the staff?",
    "question_th": "บทบาทของพนักงานมีกี่ประเภท?",
    "context": "CREATE TABLE Project_Staff (role_code VARCHAR)"
  },
  {
    "answer": "SELECT SUM(grant_amount), organisation_id FROM Grants GROUP BY organisation_id",
    "question_en": "What is the total amount of grants given by each organisations? Also list the organisation id.",
    "question_th": "แต่ละองค์กรได้รับทุนสนับสนุนทั้งหมดเป็นจำนวนเท่าใด? ระบุรหัสองค์กรด้วย",
    "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_en": "List the project details of the projects with the research outcome described with the substring 'Published'.",
    "question_th": "แสดงรายการรายละเอียดโครงการของโครงการพร้อมผลการวิจัยที่อธิบายด้วยสตริงย่อย 'เผยแพร่แล้ว'",
    "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_en": "How many staff does each project has? List the project id and the number in an ascending order.",
    "question_th": "แต่ละโครงการมีพนักงานกี่คน? แสดงรายการรหัสโครงการและหมายเลขตามลำดับจากน้อยไปหามาก",
    "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_en": "What is the complete description of the researcher role.",
    "question_th": "คำอธิบายบทบาทของนักวิจัยที่สมบูรณ์คืออะไร",
    "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_en": "When did the first staff for the projects started working?",
    "question_th": "พนักงานคนแรกของโครงการเริ่มทำงานเมื่อใด",
    "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_en": "Which project made the most number of outcomes? List the project details and the project id.",
    "question_th": "โครงการใดสร้างผลลัพธ์ได้มากที่สุด? แสดงรายการรายละเอียดโครงการและรหัสโครงการ",
    "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_en": "Which projects have no outcome? List the project details.",
    "question_th": "โครงการไหนไม่มีผลงาน? แสดงรายการรายละเอียดโครงการ",
    "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_en": "Which organisation hired the most number of research staff? List the organisation id, type and detail.",
    "question_th": "องค์กรใดจ้างเจ้าหน้าที่วิจัยจำนวนมากที่สุด? ระบุรหัสองค์กร ประเภท และรายละเอียด",
    "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_en": "Show the role description and the id of the project staff involved in most number of project outcomes?",
    "question_th": "แสดงคำอธิบายบทบาทและรหัสของเจ้าหน้าที่โครงการที่เกี่ยวข้องกับผลลัพธ์ของโครงการส่วนใหญ่หรือไม่",
    "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_en": "Which document type is described with the prefix 'Initial'?",
    "question_th": "เอกสารประเภทใดที่อธิบายด้วยคำนำหน้า 'เริ่มต้น'",
    "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_en": "For grants with both documents described as 'Regular' and documents described as 'Initial Application', list its start date.",
    "question_th": "สำหรับทุนที่มีทั้งเอกสารที่อธิบายว่า 'ปกติ' และเอกสารที่อธิบายว่า 'การสมัครเริ่มต้น' ให้ระบุวันที่เริ่มต้น",
    "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_en": "How many documents can one grant have at most? List the grant id and number.",
    "question_th": "หนึ่งทุนสามารถมีเอกสารได้มากสุดกี่ฉบับ? ระบุรหัสและหมายเลขการให้สิทธิ์",
    "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_en": "Find the organisation type description of the organisation detailed as 'quo'.",
    "question_th": "ค้นหาคำอธิบายประเภทองค์กรขององค์กรที่มีรายละเอียดเป็น 'ที่เป็นอยู่'",
    "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_en": "What are all the details of the organisations described as 'Sponsor'? Sort the result in an ascending order.",
    "question_th": "รายละเอียดทั้งหมดขององค์กรที่ได้รับการอธิบายว่าเป็น 'ผู้สนับสนุน' มีอะไรบ้าง เรียงลำดับผลลัพธ์จากน้อยไปหามาก",
    "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_en": "How many Patent outcomes are generated from all the projects?",
    "question_th": "มีผลลัพธ์ด้านสิทธิบัตรจำนวนเท่าใดจากโครงการทั้งหมด?",
    "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_en": "How many project staff worked as leaders or started working before '1989-04-24 23:51:54'?",
    "question_th": "มีเจ้าหน้าที่โครงการกี่คนที่ทำงานเป็นผู้นำหรือเริ่มทำงานก่อน '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_en": "What is the last date of the staff leaving the projects?",
    "question_th": "พนักงานออกจากโครงการวันสุดท้ายคือเมื่อใด",
    "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_en": "What are the result description of the project whose detail is 'sint'?",
    "question_th": "คำอธิบายผลลัพธ์ของโครงการที่มีรายละเอียด '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_en": "List the organisation id with the maximum outcome count, and the count.",
    "question_th": "ระบุรหัสองค์กรที่มีการนับผลลัพธ์สูงสุดและจำนวน",
    "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_en": "List the project details of the projects launched by the organisation",
    "question_th": "แสดงรายการรายละเอียดโครงการของโครงการที่เปิดตัวโดยองค์กร",
    "context": "CREATE TABLE Projects (project_details VARCHAR, organisation_id VARCHAR)"
  },
  {
    "answer": "SELECT staff_details FROM Research_Staff ORDER BY staff_details",
    "question_en": "List the research staff details, and order in ascending order.",
    "question_th": "ระบุรายละเอียดของเจ้าหน้าที่วิจัย และเรียงลำดับจากน้อยไปหามาก",
    "context": "CREATE TABLE Research_Staff (staff_details VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Tasks",
    "question_en": "How many tasks are there in total?",
    "question_th": "มีงานทั้งหมดกี่งาน?",
    "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_en": "How many tasks does each project have? List the task count and the project detail.",
    "question_th": "แต่ละโครงการมีงานกี่งาน? แสดงรายการจำนวนงานและรายละเอียดโครงการ",
    "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_en": "What are the staff roles of the staff who",
    "question_th": "บทบาทของพนักงานของพนักงานคืออะไร",
    "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_en": "What are the descriptions of all the project outcomes?",
    "question_th": "รายละเอียดของผลลัพธ์ของโครงการทั้งหมดมีอะไรบ้าง?",
    "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_en": "Which role is most common for the staff?",
    "question_th": "บทบาทใดที่พบบ่อยที่สุดสำหรับพนักงาน?",
    "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_en": "How many friends does Dan have?",
    "question_th": "แดนมีเพื่อนกี่คน?",
    "context": "CREATE TABLE PersonFriend (friend VARCHAR, name VARCHAR); CREATE TABLE Person (name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Person WHERE gender = 'female'",
    "question_en": "How many females does this network has?",
    "question_th": "เครือข่ายนี้มีผู้หญิงกี่คน?",
    "context": "CREATE TABLE Person (gender VARCHAR)"
  },
  {
    "answer": "SELECT AVG(age) FROM Person",
    "question_en": "What is the average age for all person?",
    "question_th": "อายุเฉลี่ยของทุกคนคือเท่าไร?",
    "context": "CREATE TABLE Person (age INTEGER)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT city) FROM Person",
    "question_en": "How many different cities are they from?",
    "question_th": "พวกเขามาจากเมืองต่างๆ กี่เมือง?",
    "context": "CREATE TABLE Person (city VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT job) FROM Person",
    "question_en": "How many type of jobs do they have?",
    "question_th": "พวกเขามีงานกี่ประเภท?",
    "context": "CREATE TABLE Person (job VARCHAR)"
  },
  {
    "answer": "SELECT name FROM Person WHERE age = (SELECT MAX(age) FROM person)",
    "question_en": "Who is the oldest person?",
    "question_th": "ใครคือบุคคลที่อายุมากที่สุด?",
    "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_en": "Who is the oldest person whose job is student?",
    "question_th": "ใครอายุมากที่สุดที่ทำงานเป็นนักศึกษา?",
    "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_en": "Who is the youngest male?",
    "question_th": "ใครคือผู้ชายที่อายุน้อยที่สุด?",
    "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_en": "How old is the doctor named Zach?",
    "question_th": "หมอชื่อแซคอายุเท่าไหร่?",
    "context": "CREATE TABLE Person (age VARCHAR, job VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM Person WHERE age < 30",
    "question_en": "Who is the person whose age is below 30?",
    "question_th": "ใครคือผู้ที่มีอายุต่ำกว่า 30 ปี?",
    "context": "CREATE TABLE Person (name VARCHAR, age INTEGER)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Person WHERE age > 30 AND job = 'engineer'",
    "question_en": "How many people whose age is greater 30 and job is engineer?",
    "question_th": "อายุ 30 ปีขึ้นไป และอาชีพวิศวกรมีกี่คน?",
    "context": "CREATE TABLE Person (age VARCHAR, job VARCHAR)"
  },
  {
    "answer": "SELECT AVG(age), gender FROM Person GROUP BY gender",
    "question_en": "What is the average age for each gender?",
    "question_th": "อายุเฉลี่ยของแต่ละเพศคือเท่าไร?",
    "context": "CREATE TABLE Person (gender VARCHAR, age INTEGER)"
  },
  {
    "answer": "SELECT AVG(age), job FROM Person GROUP BY job",
    "question_en": "What is average age for different job title?",
    "question_th": "อายุเฉลี่ยสำหรับตำแหน่งงานที่แตกต่างกันคือเท่าใด",
    "context": "CREATE TABLE Person (job VARCHAR, age INTEGER)"
  },
  {
    "answer": "SELECT AVG(age), job FROM Person WHERE gender = 'male' GROUP BY job",
    "question_en": "What is average age of male for different job title?",
    "question_th": "อายุเฉลี่ยของผู้ชายในตำแหน่งงานที่แตกต่างกันคือเท่าไร?",
    "context": "CREATE TABLE Person (job VARCHAR, age INTEGER, gender VARCHAR)"
  },
  {
    "answer": "SELECT MIN(age), job FROM Person GROUP BY job",
    "question_en": "What is minimum age for different job title?",
    "question_th": "อายุขั้นต่ำสำหรับตำแหน่งงานที่แตกต่างกันคือเท่าไร?",
    "context": "CREATE TABLE Person (job VARCHAR, age INTEGER)"
  },
  {
    "answer": "SELECT COUNT(*), gender FROM Person WHERE age < 40 GROUP BY gender",
    "question_en": "Find the number of people who is under 40 for each gender.",
    "question_th": "ค้นหาจำนวนผู้ที่มีอายุต่ำกว่า 40 ปี ในแต่ละเพศ",
    "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_en": "Find the name of people whose age is greater than any engineer sorted by their age.",
    "question_th": "ค้นหารายชื่อผู้ที่มีอายุมากกว่าวิศวกรโดยเรียงตามอายุ",
    "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_en": "Find the number of people whose age is greater than all engineers.",
    "question_th": "ค้นหาจำนวนผู้ที่มีอายุมากกว่าวิศวกรทุกคน",
    "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_en": "list the name, job title of all people ordered by their names.",
    "question_th": "ระบุชื่อ ตำแหน่งงานของทุกคนตามลำดับชื่อ",
    "context": "CREATE TABLE Person (name VARCHAR, job VARCHAR)"
  },
  {
    "answer": "SELECT name FROM Person ORDER BY age DESC",
    "question_en": "Find the names of all person sorted in the descending order using age.",
    "question_th": "ค้นหาชื่อของบุคคลทั้งหมดโดยเรียงลำดับตามอายุจากมากไปน้อย",
    "context": "CREATE TABLE Person (name VARCHAR, age VARCHAR)"
  },
  {
    "answer": "SELECT name FROM Person WHERE gender = 'male' ORDER BY age",
    "question_en": "Find the name and age of all males in order of their age.",
    "question_th": "ค้นหาชื่อและอายุของผู้ชายทุกคนตามลำดับอายุ",
    "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_en": "Find the name and age of the person who is a friend of both Dan and Alice.",
    "question_th": "ค้นหาชื่อและอายุของบุคคลที่เป็นเพื่อนของทั้งแดนและอลิซ",
    "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_en": "Find the name and age of the person who is a friend of Dan or Alice.",
    "question_th": "ค้นหาชื่อและอายุของบุคคลที่เป็นเพื่อนของแดนหรืออลิซ",
    "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_en": "Find the name of the person who has friends with age above 40 and under age 30?",
    "question_th": "หาชื่อคนที่มีเพื่อนอายุเกิน 40 แต่ไม่เกิน 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_en": "Find the name of the person who has friends with age above 40 but not under age 30?",
    "question_th": "หาชื่อคนที่มีเพื่อนอายุเกิน 40 ปีแต่ไม่ต่ำกว่า 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_en": "Find the name of the person who has no student friends.",
    "question_th": "ค้นหาชื่อบุคคลที่ไม่มีเพื่อนนักศึกษา",
    "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_en": "Find the person who has exactly one friend.",
    "question_th": "ค้นหาคนที่มีเพื่อนเพียงคนเดียว",
    "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_en": "Who are the friends of Bob?",
    "question_th": "เพื่อนของบ๊อบคือใคร?",
    "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_en": "Find the name of persons who are friends with Bob.",
    "question_th": "ค้นหาชื่อบุคคลที่เป็นเพื่อนกับบ๊อบ",
    "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_en": "Find the names of females who are friends with Zach",
    "question_th": "ค้นหาชื่อผู้หญิงที่เป็นเพื่อนกับแซค",
    "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_en": "Find the female friends of Alice.",
    "question_th": "ค้นหาเพื่อนผู้หญิงของอลิซ",
    "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_en": "Find the male friend of Alice whose job is a doctor?",
    "question_th": "ตามหาเพื่อนผู้ชายของอลิซที่ทำงานเป็นหมอ?",
    "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_en": "Who has a friend that is from new york city?",
    "question_th": "ใครมีเพื่อนที่มาจากนิวยอร์กซิตี้บ้าง?",
    "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_en": "Who has friends that are younger than the average age?",
    "question_th": "ใครมีเพื่อนที่อายุน้อยกว่าอายุเฉลี่ยบ้าง?",
    "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_en": "Who has friends that are older than the average age? Print their friends and their ages as well",
    "question_th": "ใครมีเพื่อนที่อายุมากกว่าอายุเฉลี่ยบ้าง? พิมพ์เพื่อนและอายุของพวกเขาด้วย",
    "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_en": "Who is the friend of Zach with longest year relationship?",
    "question_th": "ใครคือเพื่อนของ Zach ที่มีความสัมพันธ์ยาวนานที่สุด?",
    "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_en": "What is the age of the friend of Zach with longest year relationship?",
    "question_th": "เพื่อนของ Zach ที่มีความสัมพันธ์ยาวนานที่สุดอายุเท่าไหร่?",
    "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_en": "Find the name of persons who are friends with Alice for the shortest years.",
    "question_th": "ค้นหาชื่อบุคคลที่เป็นเพื่อนกับอลิซในช่วงปีที่สั้นที่สุด",
    "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_en": "Find the name, age, and job title of persons who are friends with Alice for the longest years.",
    "question_th": "ค้นหาชื่อ อายุ และตำแหน่งงานของบุคคลที่เป็นเพื่อนกับอลิซมานานที่สุด",
    "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_en": "Who is the person that has no friend?",
    "question_th": "ใครคือคนไม่มีเพื่อน?",
    "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_en": "Which person whose friends have the oldest average age?",
    "question_th": "บุคคลใดที่เพื่อนมีอายุเฉลี่ยมากที่สุด?",
    "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_en": "What is the total number of people who has no friend living in the city of Austin.",
    "question_th": "จำนวนคนที่ไม่มีเพื่อนอาศัยอยู่ในเมืองออสตินทั้งหมดเป็นเท่าใด",
    "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_en": "Find Alice's friends of friends.",
    "question_th": "ค้นหาเพื่อนของเพื่อนของอลิซ",
    "context": "CREATE TABLE PersonFriend (name VARCHAR); CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR); CREATE TABLE Person (name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM member",
    "question_en": "How many members are there?",
    "question_th": "มีสมาชิกกี่คน?",
    "context": "CREATE TABLE member (Id VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM member ORDER BY Name",
    "question_en": "List the names of members in ascending alphabetical order.",
    "question_th": "รายชื่อสมาชิกตามลำดับตัวอักษรจากน้อยไปหามาก",
    "context": "CREATE TABLE member (Name VARCHAR)"
  },
  {
    "answer": "SELECT Name, Country FROM member",
    "question_en": "What are the names and countries of members?",
    "question_th": "สมาชิกมีชื่อและประเทศอะไรบ้าง?",
    "context": "CREATE TABLE member (Name VARCHAR, Country VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM member WHERE Country = \"United States\" OR Country = \"Canada\"",
    "question_en": "Show the names of members whose country is \"United States\" or \"Canada\".",
    "question_th": "แสดงชื่อสมาชิกที่มีประเทศคือ \"สหรัฐอเมริกา\" หรือ \"แคนาดา\"",
    "context": "CREATE TABLE member (Name VARCHAR, Country VARCHAR)"
  },
  {
    "answer": "SELECT Country, COUNT(*) FROM member GROUP BY Country",
    "question_en": "Show the different countries and the number of members from each.",
    "question_th": "แสดงประเทศต่างๆ และจำนวนสมาชิกจากแต่ละประเทศ",
    "context": "CREATE TABLE member (Country VARCHAR)"
  },
  {
    "answer": "SELECT Country FROM member GROUP BY Country ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "Show the most common country across members.",
    "question_th": "แสดงประเทศที่พบมากที่สุดจากสมาชิก",
    "context": "CREATE TABLE member (Country VARCHAR)"
  },
  {
    "answer": "SELECT Country FROM member GROUP BY Country HAVING COUNT(*) > 2",
    "question_en": "Which countries have more than two members?",
    "question_th": "ประเทศใดมีสมาชิกมากกว่าสองคน?",
    "context": "CREATE TABLE member (Country VARCHAR)"
  },
  {
    "answer": "SELECT Leader_Name, College_Location FROM college",
    "question_en": "Show the leader names and locations of colleges.",
    "question_th": "แสดงชื่อผู้นำและที่ตั้งของวิทยาลัย",
    "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_en": "Show the names of members and names of colleges they go to.",
    "question_th": "แสดงชื่อสมาชิกและชื่อวิทยาลัยที่พวกเขาไป",
    "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_en": "Show the names of members and the locations of colleges they go to in ascending alphabetical order of member names.",
    "question_th": "แสดงชื่อสมาชิกและที่ตั้งของวิทยาลัยที่พวกเขาไปโดยเรียงตามตัวอักษรจากชื่อสมาชิก",
    "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_en": "Show the distinct leader names of colleges associated with members from country \"Canada\".",
    "question_th": "แสดงชื่อผู้นำที่ชัดเจนของวิทยาลัยที่เกี่ยวข้องกับสมาชิกจากประเทศ \"แคนาดา\"",
    "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_en": "Show the names of members and the decoration themes they have.",
    "question_th": "แสดงชื่อสมาชิกและธีมการตกแต่งที่พวกเขามี",
    "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_en": "Show the names of members that have a rank in round higher than 3.",
    "question_th": "แสดงรายชื่อสมาชิกที่มีอันดับในรอบสูงกว่า 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_en": "Show the names of members in ascending order of their rank in rounds.",
    "question_th": "แสดงรายชื่อสมาชิกตามลำดับจากน้อยไปหามากในรอบ",
    "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_en": "List the names of members who did not participate in any round.",
    "question_th": "รายชื่อสมาชิกที่ไม่ได้เข้าร่วมในรอบใด",
    "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_en": "Find the name and access counts of all documents, in alphabetic order of the document name.",
    "question_th": "ค้นหาชื่อและจำนวนการเข้าถึงเอกสารทั้งหมด ตามลำดับตัวอักษรของชื่อเอกสาร",
    "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_en": "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?",
    "question_th": "ค้นหาชื่อเอกสารที่มีการเข้าใช้มากที่สุด และจำนวนครั้งที่เข้าใช้?",
    "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_en": "Find the types of documents with more than 4 documents.",
    "question_th": "ค้นหาประเภทเอกสารที่มีเอกสารมากกว่า 4 รายการ",
    "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_en": "Find the total access count of all documents in the most popular document type.",
    "question_th": "ค้นหาจำนวนการเข้าถึงเอกสารทั้งหมดในประเภทเอกสารที่ได้รับความนิยมสูงสุด",
    "context": "CREATE TABLE documents (access_count INTEGER, document_type_code VARCHAR)"
  },
  {
    "answer": "SELECT AVG(access_count) FROM documents",
    "question_en": "What is the average access count of documents?",
    "question_th": "จำนวนการเข้าถึงเอกสารโดยเฉลี่ยคือเท่าใด",
    "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_en": "What is the structure of the document with the least number of accesses?",
    "question_th": "โครงสร้างของเอกสารที่มีจำนวนการเข้าถึงน้อยที่สุดคืออะไร?",
    "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_en": "What is the type of the document named \"David CV\"?",
    "question_th": "เอกสารชื่อ \"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_en": "Find the list of documents that are both in the most three popular type and have the most three popular structure.",
    "question_th": "ค้นหารายการเอกสารที่มีทั้งประเภทยอดนิยมสามประเภทและมีโครงสร้างยอดนิยมสามอันดับสูงสุด",
    "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_en": "What document types do have more than 10000 total access number.",
    "question_th": "เอกสารประเภทใดที่มีจำนวนการเข้าถึงรวมมากกว่า 10,000 หมายเลข",
    "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_en": "What are all the section titles of the document named \"David CV\"?",
    "question_th": "ชื่อหัวข้อทั้งหมดของเอกสารชื่อ \"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_en": "Find all the name of documents without any sections.",
    "question_th": "ค้นหาชื่อเอกสารทั้งหมดโดยไม่มีส่วนใดๆ",
    "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_en": "List all the username and passwords of users with the most popular role.",
    "question_th": "ระบุชื่อผู้ใช้และรหัสผ่านทั้งหมดของผู้ใช้ที่มีบทบาทยอดนิยม",
    "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_en": "Find the average access counts of documents with functional area \"Acknowledgement\".",
    "question_th": "ค้นหาจำนวนการเข้าถึงเอกสารโดยเฉลี่ยด้วยขอบเขตการทำงาน \"การรับทราบ\"",
    "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_en": "Find names of the document without any images.",
    "question_th": "ค้นหาชื่อเอกสารโดยไม่มีรูปภาพ",
    "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_en": "What is the name of the document with the most number of sections?",
    "question_th": "เอกสารที่มีจำนวนส่วนมากที่สุดชื่ออะไร",
    "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_en": "List all the document names which contains \"CV\".",
    "question_th": "แสดงรายการชื่อเอกสารทั้งหมดที่มี \"CV\"",
    "context": "CREATE TABLE documents (document_name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM users WHERE user_login = 1",
    "question_en": "How many users are logged in?",
    "question_th": "มีผู้ใช้เข้าสู่ระบบกี่คน?",
    "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_en": "Find the description of the most popular role among the users that have logged in.",
    "question_th": "ค้นหาคำอธิบายบทบาทยอดนิยมในหมู่ผู้ใช้ที่เข้าสู่ระบบ",
    "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_en": "Find the average access count of documents with the least popular structure.",
    "question_th": "ค้นหาจำนวนการเข้าถึงโดยเฉลี่ยของเอกสารที่มีโครงสร้างที่ได้รับความนิยมน้อยที่สุด",
    "context": "CREATE TABLE documents (access_count INTEGER, document_structure_code VARCHAR)"
  },
  {
    "answer": "SELECT image_name, image_url FROM images ORDER BY image_name",
    "question_en": "List all the image name and URLs in the order of their names.",
    "question_th": "ระบุชื่อรูปภาพและ URL ทั้งหมดตามลำดับชื่อ",
    "context": "CREATE TABLE images (image_name VARCHAR, image_url VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*), role_code FROM users GROUP BY role_code",
    "question_en": "Find the number of users in each role.",
    "question_th": "ค้นหาจำนวนผู้ใช้ในแต่ละบทบาท",
    "context": "CREATE TABLE users (role_code VARCHAR)"
  },
  {
    "answer": "SELECT document_type_code FROM documents GROUP BY document_type_code HAVING COUNT(*) > 2",
    "question_en": "What document types have more than 2 corresponding documents?",
    "question_th": "เอกสารประเภทใดที่มีเอกสารที่เกี่ยวข้องมากกว่า 2 ฉบับ",
    "context": "CREATE TABLE documents (document_type_code VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Companies",
    "question_en": "How many companies are there?",
    "question_th": "มีกี่บริษัท?",
    "context": "CREATE TABLE Companies (Id VARCHAR)"
  },
  {
    "answer": "SELECT name FROM Companies ORDER BY Market_Value_billion DESC",
    "question_en": "List the names of companies in descending order of market value.",
    "question_th": "รายชื่อบริษัทตามลำดับมูลค่าตลาดจากมากไปหาน้อย",
    "context": "CREATE TABLE Companies (name VARCHAR, Market_Value_billion VARCHAR)"
  },
  {
    "answer": "SELECT name FROM Companies WHERE Headquarters <> 'USA'",
    "question_en": "What are the names of companies whose headquarters are not \"USA\"?",
    "question_th": "บริษัทที่ไม่ได้มีสำนักงานใหญ่ไม่ใช่ \"สหรัฐอเมริกา\" ชื่ออะไร",
    "context": "CREATE TABLE Companies (name VARCHAR, Headquarters VARCHAR)"
  },
  {
    "answer": "SELECT name, Assets_billion FROM Companies ORDER BY name",
    "question_en": "What are the name and assets of each company, sorted in ascending order of company name?",
    "question_th": "ชื่อและทรัพย์สินของแต่ละบริษัทคืออะไร เรียงตามชื่อบริษัทจากน้อยไปหามาก?",
    "context": "CREATE TABLE Companies (name VARCHAR, Assets_billion VARCHAR)"
  },
  {
    "answer": "SELECT AVG(Profits_billion) FROM Companies",
    "question_en": "What are the average profits of companies?",
    "question_th": "ผลกำไรเฉลี่ยของบริษัทคือเท่าไร?",
    "context": "CREATE TABLE Companies (Profits_billion INTEGER)"
  },
  {
    "answer": "SELECT MAX(Sales_billion), MIN(Sales_billion) FROM Companies WHERE Industry <> \"Banking\"",
    "question_en": "What are the maximum and minimum sales of the companies whose industries are not \"Banking\".",
    "question_th": "ยอดขายสูงสุดและต่ำสุดของบริษัทที่อุตสาหกรรมที่ไม่ใช่ \"การธนาคาร\" คือเท่าใด",
    "context": "CREATE TABLE Companies (Sales_billion INTEGER, Industry VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT Industry) FROM Companies",
    "question_en": "How many different industries are the companies in?",
    "question_th": "บริษัทต่างๆ อยู่ในอุตสาหกรรมที่แตกต่างกันกี่แห่ง?",
    "context": "CREATE TABLE Companies (Industry VARCHAR)"
  },
  {
    "answer": "SELECT name FROM buildings ORDER BY Height DESC",
    "question_en": "List the names of buildings in descending order of building height.",
    "question_th": "ระบุชื่ออาคารตามลำดับความสูงของอาคารจากมากไปน้อย",
    "context": "CREATE TABLE buildings (name VARCHAR, Height VARCHAR)"
  },
  {
    "answer": "SELECT Stories FROM buildings ORDER BY Height DESC LIMIT 1",
    "question_en": "Find the stories of the building with the largest height.",
    "question_th": "ค้นหาเรื่องราวของอาคารที่มีความสูงมากที่สุด",
    "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_en": "List the name of a building along with the name of a company whose office is in the building.",
    "question_th": "ระบุชื่ออาคารพร้อมกับชื่อบริษัทที่มีสำนักงานอยู่ในอาคาร",
    "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_en": "Show the names of the buildings that have more than one company offices.",
    "question_th": "แสดงชื่ออาคารที่มีสำนักงานของบริษัทมากกว่าหนึ่งแห่ง",
    "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_en": "Show the name of the building that has the most company offices.",
    "question_th": "แสดงชื่ออาคารที่มีสำนักงานของบริษัทมากที่สุด",
    "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_en": "Please show the names of the buildings whose status is \"on-hold\", in ascending order of stories.",
    "question_th": "กรุณาแสดงชื่ออาคารที่มีสถานะเป็น \"ระงับ\" เรียงตามลำดับเรื่องจากน้อยไปมาก",
    "context": "CREATE TABLE buildings (name VARCHAR, Status VARCHAR, Stories VARCHAR)"
  },
  {
    "answer": "SELECT Industry, COUNT(*) FROM Companies GROUP BY Industry",
    "question_en": "Please show each industry and the corresponding number of companies in that industry.",
    "question_th": "โปรดแสดงแต่ละอุตสาหกรรมและจำนวนบริษัทที่เกี่ยวข้องในอุตสาหกรรมนั้น",
    "context": "CREATE TABLE Companies (Industry VARCHAR)"
  },
  {
    "answer": "SELECT Industry FROM Companies GROUP BY Industry ORDER BY COUNT(*) DESC",
    "question_en": "Please show the industries of companies in descending order of the number of companies.",
    "question_th": "กรุณาแสดงอุตสาหกรรมของบริษัทโดยเรียงตามจำนวนบริษัทจากมากไปหาน้อย",
    "context": "CREATE TABLE Companies (Industry VARCHAR)"
  },
  {
    "answer": "SELECT Industry FROM Companies GROUP BY Industry ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "List the industry shared by the most companies.",
    "question_th": "รายชื่ออุตสาหกรรมที่มีบริษัทส่วนใหญ่ใช้ร่วมกัน",
    "context": "CREATE TABLE Companies (Industry VARCHAR)"
  },
  {
    "answer": "SELECT name FROM buildings WHERE NOT id IN (SELECT building_id FROM Office_locations)",
    "question_en": "List the names of buildings that have no company office.",
    "question_th": "รายชื่ออาคารที่ไม่มีสำนักงานของบริษัท",
    "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_en": "Show the industries shared by companies whose headquarters are \"USA\" and companies whose headquarters are \"China\".",
    "question_th": "แสดงอุตสาหกรรมที่ใช้ร่วมกันโดยบริษัทที่มีสำนักงานใหญ่คือ \"สหรัฐอเมริกา\" และบริษัทที่มีสำนักงานใหญ่คือ \"จีน\"",
    "context": "CREATE TABLE Companies (Industry VARCHAR, Headquarters VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Companies WHERE Industry = \"Banking\" OR Industry = \"Conglomerate\"",
    "question_en": "Find the number of companies whose industry is \"Banking\" or \"Conglomerate\",",
    "question_th": "ค้นหาจำนวนบริษัทที่มีอุตสาหกรรมเป็น \"การธนาคาร\" หรือ \"กลุ่มบริษัทในเครือ\"",
    "context": "CREATE TABLE Companies (Industry VARCHAR)"
  },
  {
    "answer": "SELECT Headquarters FROM Companies GROUP BY Headquarters HAVING COUNT(*) > 2",
    "question_en": "Show the headquarters shared by more than two companies.",
    "question_th": "แสดงสำนักงานใหญ่ที่ใช้ร่วมกันโดยบริษัทมากกว่าสองแห่ง",
    "context": "CREATE TABLE Companies (Headquarters VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Products",
    "question_en": "How many products are there?",
    "question_th": "สินค้ามีกี่รายการคะ?",
    "context": "CREATE TABLE Products (Id VARCHAR)"
  },
  {
    "answer": "SELECT Product_Name FROM Products ORDER BY Product_Price",
    "question_en": "List the name of products in ascending order of price.",
    "question_th": "ระบุชื่อผลิตภัณฑ์โดยเรียงลำดับราคาจากน้อยไปหามาก",
    "context": "CREATE TABLE Products (Product_Name VARCHAR, Product_Price VARCHAR)"
  },
  {
    "answer": "SELECT Product_Name, Product_Type_Code FROM Products",
    "question_en": "What are the names and type codes of products?",
    "question_th": "ชื่อและรหัสประเภทสินค้าคืออะไร?",
    "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_en": "Show the prices of the products named \"Dining\" or \"Trading Policy\".",
    "question_th": "แสดงราคาสินค้าชื่อ \"การรับประทานอาหาร\" หรือ \"นโยบายการค้า\"",
    "context": "CREATE TABLE Products (Product_Price VARCHAR, Product_Name VARCHAR)"
  },
  {
    "answer": "SELECT AVG(Product_Price) FROM Products",
    "question_en": "What is the average price for products?",
    "question_th": "ราคาเฉลี่ยของสินค้าคือเท่าไร?",
    "context": "CREATE TABLE Products (Product_Price INTEGER)"
  },
  {
    "answer": "SELECT Product_Name FROM Products ORDER BY Product_Price DESC LIMIT 1",
    "question_en": "What is the name of the product with the highest price?",
    "question_th": "สินค้าราคาสูงสุดชื่ออะไรคะ?",
    "context": "CREATE TABLE Products (Product_Name VARCHAR, Product_Price VARCHAR)"
  },
  {
    "answer": "SELECT Product_Type_Code, COUNT(*) FROM Products GROUP BY Product_Type_Code",
    "question_en": "Show different type codes of products and the number of products with each type code.",
    "question_th": "แสดงรหัสประเภทสินค้าและจำนวนสินค้าพร้อมรหัสแต่ละประเภท",
    "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_en": "Show the most common type code across products.",
    "question_th": "แสดงรหัสประเภทที่พบบ่อยที่สุดในผลิตภัณฑ์ต่างๆ",
    "context": "CREATE TABLE Products (Product_Type_Code VARCHAR)"
  },
  {
    "answer": "SELECT Product_Type_Code FROM Products GROUP BY Product_Type_Code HAVING COUNT(*) >= 2",
    "question_en": "Show the product type codes that have at least two products.",
    "question_th": "แสดงรหัสประเภทผลิตภัณฑ์ที่มีผลิตภัณฑ์อย่างน้อยสองรายการ",
    "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_en": "Show the product type codes that have both products with price higher than 4500 and products with price lower than 3000.",
    "question_th": "แสดงรหัสประเภทสินค้าที่มีทั้งสินค้าราคาสูงกว่า 4,500 และสินค้าราคาต่ำกว่า 3,000",
    "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_en": "Show the names of products and the number of events they are in.",
    "question_th": "แสดงชื่อผลิตภัณฑ์และจำนวนกิจกรรมที่เข้าร่วม",
    "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_en": "Show the names of products and the number of events they are in, sorted by the number of events in descending order.",
    "question_th": "แสดงชื่อผลิตภัณฑ์และจำนวนเหตุการณ์ที่อยู่ใน จัดเรียงตามจำนวนเหตุการณ์จากมากไปน้อย",
    "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_en": "Show the names of products that are in at least two events.",
    "question_th": "แสดงชื่อผลิตภัณฑ์ที่อยู่ในเหตุการณ์อย่างน้อยสองเหตุการณ์",
    "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_en": "Show the names of products that are in at least two events in ascending alphabetical order of product name.",
    "question_th": "แสดงชื่อของผลิตภัณฑ์ที่อยู่ในเหตุการณ์อย่างน้อยสองเหตุการณ์โดยเรียงลำดับตามตัวอักษรของชื่อผลิตภัณฑ์",
    "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_en": "List the names of products that are not in any event.",
    "question_th": "แจ้งชื่อสินค้าที่ไม่อยู่ในกรณีใดๆ",
    "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_en": "How many artworks are there?",
    "question_th": "มีผลงานกี่ชิ้น?",
    "context": "CREATE TABLE artwork (Id VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM artwork ORDER BY Name",
    "question_en": "List the name of artworks in ascending alphabetical order.",
    "question_th": "รายชื่อผลงานโดยเรียงตามตัวอักษรจากน้อยไปหามาก",
    "context": "CREATE TABLE artwork (Name VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM artwork WHERE TYPE <> \"Program Talent Show\"",
    "question_en": "List the name of artworks whose type is not \"Program Talent Show\".",
    "question_th": "ระบุชื่อผลงานที่ไม่ใช่ประเภท \"Program Talent Show\"",
    "context": "CREATE TABLE artwork (Name VARCHAR, TYPE VARCHAR)"
  },
  {
    "answer": "SELECT Festival_Name, LOCATION FROM festival_detail",
    "question_en": "What are the names and locations of festivals?",
    "question_th": "ชื่อและที่ตั้งของเทศกาลคืออะไร?",
    "context": "CREATE TABLE festival_detail (Festival_Name VARCHAR, LOCATION VARCHAR)"
  },
  {
    "answer": "SELECT Chair_Name FROM festival_detail ORDER BY YEAR",
    "question_en": "What are the names of the chairs of festivals, sorted in ascending order of the year held?",
    "question_th": "ชื่อประธานในเทศกาลต่างๆ เรียงตามปีที่จัดขึ้นมีชื่ออะไรบ้าง?",
    "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_en": "What is the location of the festival with the largest number of audience?",
    "question_th": "สถานที่จัดงานเทศกาลที่มีผู้ชมมากที่สุดคือที่ไหน?",
    "context": "CREATE TABLE festival_detail (LOCATION VARCHAR, Num_of_Audience VARCHAR)"
  },
  {
    "answer": "SELECT Festival_Name FROM festival_detail WHERE YEAR = 2007",
    "question_en": "What are the names of festivals held in year 2007?",
    "question_th": "เทศกาลที่จัดขึ้นในปี 2550 มีชื่ออะไรบ้าง?",
    "context": "CREATE TABLE festival_detail (Festival_Name VARCHAR, YEAR VARCHAR)"
  },
  {
    "answer": "SELECT AVG(Num_of_Audience) FROM festival_detail",
    "question_en": "What is the average number of audience for festivals?",
    "question_th": "จำนวนผู้ชมเทศกาลโดยเฉลี่ยคือเท่าไร?",
    "context": "CREATE TABLE festival_detail (Num_of_Audience INTEGER)"
  },
  {
    "answer": "SELECT Festival_Name FROM festival_detail ORDER BY YEAR DESC LIMIT 3",
    "question_en": "Show the names of the three most recent festivals.",
    "question_th": "แสดงชื่อเทศกาลสามเทศกาลล่าสุด",
    "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_en": "For each nomination, show the name of the artwork and name of the festival where it is nominated.",
    "question_th": "ในการเสนอชื่อแต่ละครั้งให้แสดงชื่อผลงานและชื่อเทศกาลที่ได้รับการเสนอชื่อเข้าชิง",
    "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_en": "Show distinct types of artworks that are nominated in festivals in 2007.",
    "question_th": "จัดแสดงผลงานศิลปะประเภทต่างๆ ที่ได้รับการเสนอชื่อเข้าชิงในเทศกาลประจำปี 2550",
    "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_en": "Show the names of artworks in ascending order of the year they are nominated in.",
    "question_th": "แสดงชื่อผลงานตามลำดับปีที่ได้รับการเสนอชื่อเข้าชิง",
    "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_en": "Show the names of festivals that have nominated artworks of type \"Program Talent Show\".",
    "question_th": "แสดงรายชื่อเทศกาลที่มีการเสนอชื่อผลงานประเภท “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_en": "Show the ids and names of festivals that have at least two nominations for artworks.",
    "question_th": "แสดงรหัสและชื่อของเทศกาลที่ได้รับการเสนอชื่อเข้าชิงงานศิลปะอย่างน้อยสองครั้ง",
    "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_en": "Show the id, name of each festival and the number of artworks it has nominated.",
    "question_th": "แสดงรหัส ชื่อของแต่ละเทศกาล และจำนวนผลงานที่ได้รับการเสนอชื่อ",
    "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_en": "Please show different types of artworks with the corresponding number of artworks of each type.",
    "question_th": "กรุณาแสดงผลงานศิลปะประเภทต่างๆ โดยมีจำนวนผลงานแต่ละประเภทที่สอดคล้องกัน",
    "context": "CREATE TABLE artwork (TYPE VARCHAR)"
  },
  {
    "answer": "SELECT TYPE FROM artwork GROUP BY TYPE ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "List the most common type of artworks.",
    "question_th": "แสดงรายการงานศิลปะประเภทที่พบบ่อยที่สุด",
    "context": "CREATE TABLE artwork (TYPE VARCHAR)"
  },
  {
    "answer": "SELECT YEAR FROM festival_detail GROUP BY YEAR HAVING COUNT(*) > 1",
    "question_en": "List the year in which there are more than one festivals.",
    "question_th": "ระบุปีที่มีเทศกาลมากกว่าหนึ่งเทศกาล",
    "context": "CREATE TABLE festival_detail (YEAR VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM Artwork WHERE NOT Artwork_ID IN (SELECT Artwork_ID FROM nomination)",
    "question_en": "List the name of artworks that are not nominated.",
    "question_th": "รายชื่อผลงานที่ไม่ได้รับการเสนอชื่อเข้าชิง",
    "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_en": "Show the number of audience in year 2008 or 2010.",
    "question_th": "แสดงจำนวนผู้ชมในปี 2551 หรือ 2553",
    "context": "CREATE TABLE festival_detail (Num_of_Audience VARCHAR, YEAR VARCHAR)"
  },
  {
    "answer": "SELECT SUM(Num_of_Audience) FROM festival_detail",
    "question_en": "What are the total number of the audiences who visited any of the festivals?",
    "question_th": "จำนวนผู้ชมทั้งหมดที่มาเยี่ยมชมเทศกาลใด ๆ เป็นจำนวนเท่าใด?",
    "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_en": "In which year are there festivals both inside the 'United States' and outside the 'United States'?",
    "question_th": "ในปีใดที่มีเทศกาลทั้งใน 'สหรัฐอเมริกา' และนอก 'สหรัฐอเมริกา'?",
    "context": "CREATE TABLE festival_detail (YEAR VARCHAR, LOCATION VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM premises",
    "question_en": "How many premises are there?",
    "question_th": "มีกี่แห่ง?",
    "context": "CREATE TABLE premises (Id VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT premises_type FROM premises",
    "question_en": "What are all the distinct premise types?",
    "question_th": "ประเภทสถานที่ตั้งที่แตกต่างกันทั้งหมดมีอะไรบ้าง",
    "context": "CREATE TABLE premises (premises_type VARCHAR)"
  },
  {
    "answer": "SELECT premises_type, premise_details FROM premises ORDER BY premises_type",
    "question_en": "Find the types and details for all premises and order by the premise type.",
    "question_th": "ค้นหาประเภทและรายละเอียดสำหรับสถานที่ทั้งหมดและสั่งซื้อตามประเภทสถานที่",
    "context": "CREATE TABLE premises (premises_type VARCHAR, premise_details VARCHAR)"
  },
  {
    "answer": "SELECT premises_type, COUNT(*) FROM premises GROUP BY premises_type",
    "question_en": "Show each premise type and the number of premises in that type.",
    "question_th": "แสดงสถานที่แต่ละประเภทและจำนวนสถานที่ในประเภทนั้น",
    "context": "CREATE TABLE premises (premises_type VARCHAR)"
  },
  {
    "answer": "SELECT product_category, COUNT(*) FROM mailshot_campaigns GROUP BY product_category",
    "question_en": "Show all distinct product categories along with the number of mailshots in each category.",
    "question_th": "แสดงหมวดหมู่ผลิตภัณฑ์ที่แตกต่างกันทั้งหมด พร้อมด้วยจำนวนเมลช็อตในแต่ละหมวดหมู่",
    "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_en": "Show the name and phone of the customer without any mailshot.",
    "question_th": "แสดงชื่อและหมายเลขโทรศัพท์ของลูกค้าโดยไม่มีการส่งจดหมาย",
    "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_en": "Show the name and phone for customers with a mailshot with outcome code 'No Response'.",
    "question_th": "แสดงชื่อและหมายเลขโทรศัพท์ให้กับลูกค้าด้วยอีเมล์ช็อตพร้อมรหัสผลลัพธ์ 'ไม่มีการตอบกลับ'",
    "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_en": "Show the outcome code of mailshots along with the number of mailshots in each outcome code.",
    "question_th": "แสดงรหัสผลลัพธ์ของเมลช็อตพร้อมกับจำนวนเมลช็อตในโค้ดผลลัพธ์แต่ละรายการ",
    "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_en": "Show the names of customers who have at least 2 mailshots with outcome code 'Order'.",
    "question_th": "แสดงชื่อลูกค้าที่มีอย่างน้อย 2 เมล์ช็อตพร้อมรหัสผลลัพธ์ 'คำสั่งซื้อ'",
    "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_en": "Show the names of customers who have the most mailshots.",
    "question_th": "แสดงชื่อลูกค้าที่มีเมลช็อตมากที่สุด",
    "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_en": "What are the name and payment method of customers who have both mailshots in 'Order' outcome and mailshots in 'No Response' outcome.",
    "question_th": "ชื่อและวิธีการชำระเงินของลูกค้าที่มีทั้งเมลช็อตในผลลัพธ์ 'คำสั่งซื้อ' และเมลช็อตในผลลัพธ์ 'ไม่มีการตอบกลับ' คืออะไร",
    "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_en": "Show the premise type and address type code for all customer addresses.",
    "question_th": "แสดงประเภทสถานที่และรหัสประเภทที่อยู่สำหรับที่อยู่ลูกค้าทั้งหมด",
    "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_en": "What are the distinct address type codes for all customer addresses?",
    "question_th": "รหัสประเภทที่อยู่ที่แตกต่างกันสำหรับที่อยู่ลูกค้าทั้งหมดคืออะไร",
    "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_en": "Show the shipping charge and customer id for customer orders with order status Cancelled or Paid.",
    "question_th": "แสดงค่าจัดส่งและรหัสลูกค้าสำหรับคำสั่งซื้อของลูกค้าพร้อมสถานะคำสั่งซื้อยกเลิกหรือชำระเงินแล้ว",
    "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_en": "Show the names of customers having an order with shipping method FedEx and order status Paid.",
    "question_th": "แสดงชื่อลูกค้าที่สั่งซื้อพร้อมวิธีจัดส่ง FedEx และสถานะการสั่งซื้อ ชำระเงินแล้ว",
    "context": "CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE customer_orders (customer_id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM COURSE",
    "question_en": "How many courses are there in total?",
    "question_th": "มีทั้งหมดกี่หลักสูตร?",
    "context": "CREATE TABLE COURSE (Id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM COURSE WHERE Credits > 2",
    "question_en": "How many courses have more than 2 credits?",
    "question_th": "มีกี่รายวิชาที่มีมากกว่า 2 หน่วยกิต?",
    "context": "CREATE TABLE COURSE (Credits INTEGER)"
  },
  {
    "answer": "SELECT CName FROM COURSE WHERE Credits = 1",
    "question_en": "List all names of courses with 1 credit?",
    "question_th": "ระบุรายชื่อรายวิชาทั้งหมด 1 หน่วยกิต?",
    "context": "CREATE TABLE COURSE (CName VARCHAR, Credits VARCHAR)"
  },
  {
    "answer": "SELECT CName FROM COURSE WHERE Days = \"MTW\"",
    "question_en": "Which courses are taught on days MTW?",
    "question_th": "หลักสูตรใดบ้างที่สอนในวัน MTW?",
    "context": "CREATE TABLE COURSE (CName VARCHAR, Days VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM DEPARTMENT WHERE Division = \"AS\"",
    "question_en": "What is the number of departments in Division \"AS\"?",
    "question_th": "แผนก AS มีกี่แผนก?",
    "context": "CREATE TABLE DEPARTMENT (Division VARCHAR)"
  },
  {
    "answer": "SELECT DPhone FROM DEPARTMENT WHERE Room = 268",
    "question_en": "What are the phones of departments in Room 268?",
    "question_th": "โทรศัพท์ของแผนกต่างๆ ในห้อง 268 คืออะไร?",
    "context": "CREATE TABLE DEPARTMENT (DPhone VARCHAR, Room VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT StuID) FROM ENROLLED_IN WHERE Grade = \"B\"",
    "question_en": "Find the number of students that have at least one grade \"B\".",
    "question_th": "จงหาจำนวนนักเรียนที่ได้เกรด \"B\" อย่างน้อยหนึ่งเกรด",
    "context": "CREATE TABLE ENROLLED_IN (StuID VARCHAR, Grade VARCHAR)"
  },
  {
    "answer": "SELECT MAX(gradepoint), MIN(gradepoint) FROM GRADECONVERSION",
    "question_en": "Find the max and min grade point for all letter grade.",
    "question_th": "ค้นหาคะแนนเกรดสูงสุดและต่ำสุดสำหรับเกรดตัวอักษรทั้งหมด",
    "context": "CREATE TABLE GRADECONVERSION (gradepoint INTEGER)"
  },
  {
    "answer": "SELECT DISTINCT Fname FROM STUDENT WHERE Fname LIKE '%a%'",
    "question_en": "Find the first names of students whose first names contain letter \"a\".",
    "question_th": "ค้นหาชื่อนักเรียนที่มีชื่อมีตัวอักษร \"a\"",
    "context": "CREATE TABLE STUDENT (Fname VARCHAR)"
  },
  {
    "answer": "SELECT Fname, Lname FROM FACULTY WHERE sex = \"M\" AND Building = \"NEB\"",
    "question_en": "Find the first names and last names of male (sex is M) faculties who live in building NEB.",
    "question_th": "ค้นหาชื่อและนามสกุลของคณะชาย (เพศคือ M) ที่อาศัยอยู่ในอาคาร 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_en": "Find the rooms of faculties with rank professor who live in building NEB.",
    "question_th": "ค้นหาห้องคณะที่มีตำแหน่งศาสตราจารย์ประจำอาคาร NEB",
    "context": "CREATE TABLE FACULTY (Room VARCHAR, Rank VARCHAR, Building VARCHAR)"
  },
  {
    "answer": "SELECT DName FROM DEPARTMENT WHERE Building = \"Mergenthaler\"",
    "question_en": "Find the department name that is in Building \"Mergenthaler\".",
    "question_th": "ค้นหาชื่อแผนกที่อยู่ในอาคาร \"Mergenthaler\"",
    "context": "CREATE TABLE DEPARTMENT (DName VARCHAR, Building VARCHAR)"
  },
  {
    "answer": "SELECT * FROM COURSE ORDER BY Credits",
    "question_en": "List all information about courses sorted by credits in the ascending order.",
    "question_th": "แสดงรายการข้อมูลทั้งหมดเกี่ยวกับรายวิชาโดยเรียงลำดับตามหน่วยกิตจากน้อยไปมาก",
    "context": "CREATE TABLE COURSE (Credits VARCHAR)"
  },
  {
    "answer": "SELECT CName FROM COURSE ORDER BY Credits",
    "question_en": "List the course name of courses sorted by credits.",
    "question_th": "รายชื่อรายวิชารายวิชาเรียงตามหน่วยกิต",
    "context": "CREATE TABLE COURSE (CName VARCHAR, Credits VARCHAR)"
  },
  {
    "answer": "SELECT Fname FROM STUDENT ORDER BY Age DESC",
    "question_en": "Find the first name of students in the descending order of age.",
    "question_th": "ค้นหาชื่อนักเรียนตามลำดับอายุจากมากไปหาน้อย",
    "context": "CREATE TABLE STUDENT (Fname VARCHAR, Age VARCHAR)"
  },
  {
    "answer": "SELECT LName FROM STUDENT WHERE Sex = \"F\" ORDER BY Age DESC",
    "question_en": "Find the last name of female (sex is F) students in the descending order of age.",
    "question_th": "ค้นหานามสกุลของนักเรียนหญิง (เพศ F) ตามลำดับอายุจากมากไปน้อย",
    "context": "CREATE TABLE STUDENT (LName VARCHAR, Sex VARCHAR, Age VARCHAR)"
  },
  {
    "answer": "SELECT Lname FROM FACULTY WHERE Building = \"Barton\" ORDER BY Lname",
    "question_en": "Find the last names of faculties in building Barton in alphabetic order.",
    "question_th": "ค้นหานามสกุลของคณะในการสร้างบาร์ตันตามลำดับตัวอักษร",
    "context": "CREATE TABLE FACULTY (Lname VARCHAR, Building VARCHAR)"
  },
  {
    "answer": "SELECT Fname FROM FACULTY WHERE Rank = \"Professor\" ORDER BY Fname",
    "question_en": "Find the first names of faculties of rank Professor in alphabetic order.",
    "question_th": "ค้นหาชื่อคณะที่มีตำแหน่งศาสตราจารย์ตามลำดับตัวอักษร",
    "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_en": "Find the name of the department that has the biggest number of students minored in?",
    "question_th": "ค้นหาชื่อภาควิชาที่มีนักศึกษาเข้าเรียนมากที่สุด?",
    "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_en": "Find the name of the department that has no students minored in?",
    "question_th": "ค้นหาชื่อภาควิชาที่ไม่มีนักศึกษาเข้าศึกษา?",
    "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_en": "Find the name of the department that has the fewest members.",
    "question_th": "ค้นหาชื่อหน่วยงานที่มีสมาชิกน้อยที่สุด",
    "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_en": "Find the rank of the faculty that the fewest faculties belong to.",
    "question_th": "ค้นหาอันดับคณะที่มีคณะน้อยที่สุด",
    "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_en": "What are the first and last names of the instructors who teach the top 3 number of courses?",
    "question_th": "ชื่อและนามสกุลของอาจารย์ผู้สอนที่สอนในจำนวน 3 หลักสูตรแรกคืออะไร?",
    "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_en": "Which building does the instructor who teaches the most number of courses live in?",
    "question_th": "ผู้สอนที่สอนหลักสูตรจำนวนมากที่สุดอาศัยอยู่ในอาคารใด",
    "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_en": "What are the name of courses that have at least five enrollments?",
    "question_th": "หลักสูตรที่มีผู้ลงทะเบียนอย่างน้อย 5 คนชื่ออะไร",
    "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_en": "Find the first name and last name of the instructor of course that has course name",
    "question_th": "ค้นหาชื่อและนามสกุลของผู้สอนหลักสูตรที่มีชื่อหลักสูตร",
    "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_en": "Find the department name and room of the course INTRODUCTION TO COMPUTER SCIENCE.",
    "question_th": "ค้นหาชื่อแผนกและห้องของหลักสูตร 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_en": "Find the student first and last names and grade points of all enrollments.",
    "question_th": "ค้นหาชื่อและนามสกุลของนักเรียนและคะแนนระดับของการลงทะเบียนทั้งหมด",
    "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_en": "Find the distinct student first names of all students that have grade point at least 3.8 in one course.",
    "question_th": "ค้นหาชื่อนักเรียนที่ชัดเจนของนักเรียนทุกคนที่มีคะแนนเกรดอย่างน้อย 3.8 ในหนึ่งหลักสูตร",
    "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_en": "Find the full names of faculties who are members of department with department number 520.",
    "question_th": "ค้นหาชื่อเต็มคณะที่เป็นสมาชิกของภาควิชา หมายเลข 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_en": "What are the first names and last names of the students that minor in the department with DNO 140.",
    "question_th": "ชื่อและนามสกุลของนักศึกษาที่เป็นผู้เยาว์ในแผนกที่มี 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_en": "Find the last names of faculties who are members of computer science department.",
    "question_th": "ค้นหานามสกุลคณะที่เป็นสมาชิกภาควิชาวิทยาการคอมพิวเตอร์",
    "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_en": "Find the average grade point of student whose last name is Smith.",
    "question_th": "ค้นหาคะแนนเฉลี่ยของนักเรียนที่มีนามสกุล สมิธ",
    "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_en": "What is the maximum and minimum grade point of students who live in NYC?",
    "question_th": "คะแนนเกรดสูงสุดและต่ำสุดของนักเรียนที่อาศัยอยู่ในนิวยอร์คคือเท่าใด",
    "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_en": "Find the names of courses that have either 3 credits or 1 credit but 4 hours.",
    "question_th": "หารายวิชาที่มี 3 หน่วยกิต หรือ 1 หน่วยกิต แต่มี 4 ชั่วโมง",
    "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_en": "Find the names of departments that are either in division AS or in division EN and in Building NEB.",
    "question_th": "ค้นหาชื่อแผนกที่อยู่ในแผนก AS หรือแผนก EN และใน 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_en": "Find the first name of students not enrolled in any course.",
    "question_th": "ค้นหาชื่อนักศึกษาที่ไม่ได้ลงทะเบียนรายวิชาใดๆ",
    "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_en": "What are the ids of the top three products that were purchased in the largest amount?",
    "question_th": "รหัสของผลิตภัณฑ์สามอันดับแรกที่มีการซื้อในปริมาณมากที่สุดคืออะไร",
    "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_en": "What are the product id and product type of the cheapest product?",
    "question_th": "รหัสผลิตภัณฑ์และประเภทผลิตภัณฑ์ของผลิตภัณฑ์ที่ถูกที่สุดคืออะไร?",
    "context": "CREATE TABLE products (product_id VARCHAR, product_type_code VARCHAR, product_price VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT product_type_code) FROM products",
    "question_en": "Find the number of different product types.",
    "question_th": "ค้นหาจำนวนประเภทผลิตภัณฑ์ต่างๆ",
    "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_en": "Return the address of customer 10.",
    "question_th": "ส่งคืนที่อยู่ของลูกค้า 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_en": "What are the staff ids and genders of all staffs whose job title is Department Manager?",
    "question_th": "รหัสพนักงานและเพศของพนักงานทุกคนที่มีตำแหน่งงานเป็นผู้จัดการแผนกคืออะไร?",
    "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_en": "For each payment method, return how many customers use it.",
    "question_th": "สำหรับวิธีการชำระเงินแต่ละวิธี ให้ส่งคืนจำนวนลูกค้าที่ใช้งาน",
    "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_en": "What is the id of the product that was ordered the most often?",
    "question_th": "รหัสสินค้าที่ถูกสั่งซื้อบ่อยที่สุดคืออะไร?",
    "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_en": "What are the name, phone number and email address of the customer who made the largest number of orders?",
    "question_th": "ชื่อ หมายเลขโทรศัพท์ และที่อยู่อีเมลของลูกค้าที่ทำการสั่งซื้อจำนวนมากที่สุดคืออะไร?",
    "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_en": "What is the average price for each type of product?",
    "question_th": "ราคาเฉลี่ยของสินค้าแต่ละประเภทคือเท่าไร?",
    "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_en": "How many department stores does the store chain South have?",
    "question_th": "ห้างสาขาภาคใต้มีกี่ห้างสรรพสินค้า?",
    "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_en": "What is the name and job title of the staff who was assigned the latest?",
    "question_th": "ชื่อและตำแหน่งงานของพนักงานที่ได้รับมอบหมายล่าสุดคืออะไร?",
    "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_en": "Give me the product type, name and price for all the products supplied by supplier id 3.",
    "question_th": "แจ้งประเภทผลิตภัณฑ์ ชื่อ และราคาของผลิตภัณฑ์ทั้งหมดที่จัดทำโดยซัพพลายเออร์ 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_en": "Return the distinct name of customers whose order status is Pending, in the order of customer id.",
    "question_th": "ส่งกลับชื่อของลูกค้าที่ชัดเจนซึ่งมีสถานะคำสั่งซื้อเป็นรอดำเนินการตามลำดับรหัสลูกค้า",
    "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_en": "Find the name and address of the customers who have both New and Pending orders.",
    "question_th": "ค้นหาชื่อและที่อยู่ของลูกค้าที่มีทั้งคำสั่งซื้อใหม่และรอดำเนินการ",
    "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_en": "Return ids of all the products that are supplied by supplier id 2 and are more expensive than the average price of all products.",
    "question_th": "รหัสการคืนสินค้าของผลิตภัณฑ์ทั้งหมดที่จัดหาโดยซัพพลายเออร์รหัส 2 และมีราคาแพงกว่าราคาเฉลี่ยของผลิตภัณฑ์ทั้งหมด",
    "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_en": "What is the id and name of the department store that has both marketing and managing department?",
    "question_th": "รหัสและชื่อห้างสรรพสินค้าที่มีทั้งฝ่ายการตลาดและฝ่ายจัดการคืออะไร?",
    "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_en": "What are the ids of the two department store chains with the largest number of department stores?",
    "question_th": "รหัสของห้างสรรพสินค้า 2 แห่งที่มีจำนวนห้างสรรพสินค้ามากที่สุดคือข้อใด",
    "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_en": "What is the id of the department with the least number of staff?",
    "question_th": "ID ของแผนกที่มีจำนวนพนักงานน้อยที่สุดคือรหัสอะไร?",
    "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_en": "For each product type, return the maximum and minimum price.",
    "question_th": "สำหรับผลิตภัณฑ์แต่ละประเภท ให้ส่งคืนราคาสูงสุดและต่ำสุด",
    "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_en": "Find the product type whose average price is higher than the average price of all products.",
    "question_th": "ค้นหาประเภทสินค้าที่มีราคาเฉลี่ยสูงกว่าราคาเฉลี่ยของสินค้าทั้งหมด",
    "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_en": "Find the id and name of the staff who has been assigned for the shortest period.",
    "question_th": "ค้นหารหัสและชื่อของพนักงานที่ได้รับมอบหมายในช่วงเวลาที่สั้นที่สุด",
    "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_en": "Return the names and ids of all products whose price is between 600 and 700.",
    "question_th": "ส่งกลับชื่อและรหัสของผลิตภัณฑ์ทั้งหมดที่มีราคาอยู่ระหว่าง 600 ถึง 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_en": "Find the ids of all distinct customers who made order after some orders that were Cancelled.",
    "question_th": "ค้นหารหัสของลูกค้าที่แตกต่างกันทั้งหมดที่ทำการสั่งซื้อหลังจากคำสั่งซื้อบางรายการถูกยกเลิก",
    "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_en": "What is id of the staff who had a Staff Department Assignment earlier than any Clerical Staff?",
    "question_th": "รหัสของเจ้าหน้าที่ที่ได้รับมอบหมายแผนกเจ้าหน้าที่เร็วกว่าเจ้าหน้าที่ธุรการใด ๆ คืออะไร?",
    "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_en": "What are the names and ids of customers whose address contains TN?",
    "question_th": "ชื่อและรหัสของลูกค้าที่มีที่อยู่ 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_en": "Return the name and gender of the staff who was assigned in 2016.",
    "question_th": "กลับชื่อและเพศของพนักงานที่ได้รับมอบหมายในปี 2559",
    "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_en": "List the name of staff who has been assigned multiple jobs.",
    "question_th": "ระบุชื่อพนักงานที่ได้รับมอบหมายงานหลายตำแหน่ง",
    "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_en": "List the name and phone number of all suppliers in the alphabetical order of their addresses.",
    "question_th": "ระบุชื่อและหมายเลขโทรศัพท์ของซัพพลายเออร์ทั้งหมดตามลำดับตัวอักษรของที่อยู่",
    "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_en": "What are the phone numbers of all customers and suppliers.",
    "question_th": "หมายเลขโทรศัพท์ของลูกค้าและซัพพลายเออร์ทั้งหมดคืออะไร",
    "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_en": "Return the ids of all products that were ordered more than three times or supplied more than 80000.",
    "question_th": "ส่งคืนรหัสของผลิตภัณฑ์ทั้งหมดที่สั่งซื้อมากกว่าสามครั้งหรือจัดส่งมากกว่า 80,000 รายการ",
    "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_en": "What are id and name of the products whose price is lower than 600 or higher than 900?",
    "question_th": "รหัสและชื่อของผลิตภัณฑ์ที่มีราคาต่ำกว่า 600 หรือสูงกว่า 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_en": "Find the id of suppliers whose average amount purchased for each product is above 50000 or below 30000.",
    "question_th": "ค้นหารหัสของซัพพลายเออร์ที่มียอดซื้อเฉลี่ยสำหรับแต่ละผลิตภัณฑ์มากกว่า 50,000 หรือต่ำกว่า 30,000",
    "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_en": "What are the average amount purchased and value purchased for the supplier who supplies the most products.",
    "question_th": "จำนวนเงินเฉลี่ยที่ซื้อและมูลค่าที่ซื้อสำหรับซัพพลายเออร์ที่จัดหาผลิตภัณฑ์มากที่สุดคือเท่าใด",
    "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_en": "What is the largest and smallest customer codes?",
    "question_th": "รหัสลูกค้าที่ใหญ่ที่สุดและเล็กที่สุดคืออะไร?",
    "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_en": "List the names of all the distinct customers who bought a keyboard.",
    "question_th": "ระบุชื่อของลูกค้าเฉพาะรายทั้งหมดที่ซื้อคีย์บอร์ด",
    "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_en": "List the names and phone numbers of all the distinct suppliers who supply red jeans.",
    "question_th": "ระบุชื่อและหมายเลขโทรศัพท์ของซัพพลายเออร์ที่แตกต่างกันทั้งหมดที่จัดหากางเกงยีนส์สีแดง",
    "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_en": "What are the highest and lowest prices of products, grouped by and alphabetically ordered by product type?",
    "question_th": "ราคาสินค้าสูงสุดและต่ำสุด แบ่งกลุ่มและเรียงตามตัวอักษรตามประเภทสินค้าคือเท่าใด",
    "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_en": "List the order id, customer id for orders in Cancelled status, ordered by their order dates.",
    "question_th": "แสดงรายการรหัสคำสั่งซื้อ รหัสลูกค้าสำหรับคำสั่งซื้อในสถานะยกเลิก โดยเรียงลำดับตามวันที่สั่งซื้อ",
    "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_en": "Find the names of products that were bought by at least two distinct customers.",
    "question_th": "ค้นหาชื่อผลิตภัณฑ์ที่ซื้อโดยลูกค้าที่แตกต่างกันอย่างน้อยสองคน",
    "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_en": "Find the names of customers who have bought by at least three distinct products.",
    "question_th": "ค้นหาชื่อลูกค้าที่ซื้อผลิตภัณฑ์ที่แตกต่างกันอย่างน้อยสามรายการ",
    "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_en": "Find the name and gender of the staff who has been assigned the job of Sales Person but never Clerical Staff.",
    "question_th": "ค้นหาชื่อและเพศของพนักงานที่ได้รับการมอบหมายงานให้เป็นพนักงานขายแต่ไม่เคยได้รับมอบหมายให้เป็นพนักงานเสมียน",
    "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_en": "Find the id and name of customers whose address contains WY state and do not use credit card for payment.",
    "question_th": "ค้นหารหัสและชื่อของลูกค้าที่มีที่อยู่มีสถานะ WY และไม่ใช้บัตรเครดิตในการชำระเงิน",
    "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_en": "Find the average price of all product clothes.",
    "question_th": "ค้นหาราคาเฉลี่ยของเสื้อผ้าสินค้าทั้งหมด",
    "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_en": "Find the name of the most expensive hardware product.",
    "question_th": "ค้นหาชื่อผลิตภัณฑ์ฮาร์ดแวร์ที่แพงที่สุด",
    "context": "CREATE TABLE products (product_name VARCHAR, product_type_code VARCHAR, product_price VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM aircraft",
    "question_en": "How many aircrafts are there?",
    "question_th": "มีเครื่องบินกี่ลำ?",
    "context": "CREATE TABLE aircraft (Id VARCHAR)"
  },
  {
    "answer": "SELECT Description FROM aircraft",
    "question_en": "List the description of all aircrafts.",
    "question_th": "แสดงรายการคำอธิบายของเครื่องบินทั้งหมด",
    "context": "CREATE TABLE aircraft (Description VARCHAR)"
  },
  {
    "answer": "SELECT AVG(International_Passengers) FROM airport",
    "question_en": "What is the average number of international passengers of all airports?",
    "question_th": "จำนวนผู้โดยสารระหว่างประเทศโดยเฉลี่ยของทุกสนามบินคือเท่าใด",
    "context": "CREATE TABLE airport (International_Passengers INTEGER)"
  },
  {
    "answer": "SELECT International_Passengers, Domestic_Passengers FROM airport WHERE Airport_Name = \"London Heathrow\"",
    "question_en": "What are the number of international and domestic passengers of the airport named London \"Heathrow\"?",
    "question_th": "สนามบินลอนดอนฮีทโธรว์มีผู้โดยสารทั้งในและต่างประเทศจำนวนเท่าใด",
    "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_en": "What are the total number of Domestic Passengers of airports that contain the word \"London\".",
    "question_th": "จำนวนผู้โดยสารภายในประเทศของสนามบินที่มีคำว่า \"ลอนดอน\" ทั้งหมดคือเท่าใด",
    "context": "CREATE TABLE airport (Domestic_Passengers INTEGER, Airport_Name VARCHAR)"
  },
  {
    "answer": "SELECT MAX(Transit_Passengers), MIN(Transit_Passengers) FROM airport",
    "question_en": "What are the maximum and minimum number of transit passengers of all aiports.",
    "question_th": "จำนวนผู้โดยสารต่อเครื่องสูงสุดและต่ำสุดของสนามบินทั้งหมดคือเท่าใด",
    "context": "CREATE TABLE airport (Transit_Passengers INTEGER)"
  },
  {
    "answer": "SELECT Name FROM pilot WHERE Age >= 25",
    "question_en": "What are the name of pilots aged 25 or older?",
    "question_th": "นักบินอายุ 25 ปีขึ้นไปชื่ออะไร",
    "context": "CREATE TABLE pilot (Name VARCHAR, Age VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM pilot ORDER BY Name",
    "question_en": "List all pilot names in ascending alphabetical order.",
    "question_th": "รายชื่อนักบินทั้งหมดตามลำดับตัวอักษรจากน้อยไปหามาก",
    "context": "CREATE TABLE pilot (Name VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM pilot WHERE Age <= 30 ORDER BY Name DESC",
    "question_en": "List names of all pilot aged 30 or younger in descending alphabetical order.",
    "question_th": "รายชื่อนักบินทุกคนที่มีอายุ 30 ปีหรือต่ำกว่า ตามลำดับตัวอักษรจากมากไปน้อย",
    "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_en": "Please show the names of aircrafts associated with airport with name \"London Gatwick\".",
    "question_th": "กรุณาแสดงชื่อเครื่องบินที่เกี่ยวข้องกับสนามบินชื่อ \"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_en": "Please show the names and descriptions of aircrafts associated with airports that have a total number of passengers bigger than 10000000.",
    "question_th": "กรุณาแสดงชื่อและคำอธิบายของเครื่องบินที่เกี่ยวข้องกับสนามบินที่มีจำนวนผู้โดยสารรวมมากกว่า 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_en": "What is the average total number of passengers of airports that are associated with aircraft \"Robinson R-22\"?",
    "question_th": "จำนวนผู้โดยสารโดยเฉลี่ยของสนามบินที่เกี่ยวข้องกับเครื่องบิน \"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_en": "Please list the location and the winning aircraft name.",
    "question_th": "กรุณาระบุสถานที่และชื่อเครื่องบินที่ชนะรางวัล",
    "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_en": "List the name of the aircraft that has been named winning aircraft the most number of times.",
    "question_th": "รายชื่อเครื่องบินที่ได้รับการเสนอชื่อเครื่องบินที่ชนะรางวัลมากที่สุดจำนวนครั้ง",
    "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_en": "List the names of aircrafts and the number of times it won matches.",
    "question_th": "ระบุชื่อเครื่องบินและจำนวนครั้งที่ชนะการแข่งขัน",
    "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_en": "List names of all pilot in descending order of age.",
    "question_th": "รายชื่อนักบินทั้งหมดเรียงตามอายุจากมากไปน้อย",
    "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_en": "List the names of aircrafts and that won matches at least twice.",
    "question_th": "รายชื่อเครื่องบินและที่ชนะการแข่งขันอย่างน้อยสองครั้ง",
    "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_en": "List the names of aircrafts and that did not win any match.",
    "question_th": "ระบุชื่อเครื่องบินและไม่ชนะการแข่งขันใดๆ",
    "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_en": "Show the names of aircrafts that are associated with both an airport named \"London Heathrow\" and an airport named \"London Gatwick\"",
    "question_th": "แสดงชื่อเครื่องบินที่เกี่ยวข้องกับทั้งสนามบินชื่อ \"London Heathrow\" และสนามบินชื่อ \"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_en": "Show all information on the airport that has the largest number of international passengers.",
    "question_th": "แสดงข้อมูลทั้งหมดเกี่ยวกับสนามบินที่มีผู้โดยสารระหว่างประเทศมากที่สุด",
    "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_en": "find the name and age of the pilot who has won the most number of times among the pilots who are younger than 30.",
    "question_th": "ค้นหาชื่อและอายุของนักบินที่ชนะรางวัลมากที่สุดในบรรดานักบินที่มีอายุน้อยกว่า 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_en": "what is the name and age of the youngest winning pilot?",
    "question_th": "ชื่อและอายุของนักบินที่ชนะรางวัลอายุน้อยที่สุดคืออะไร?",
    "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_en": "find the name of pilots who did not win the matches held in the country of Australia.",
    "question_th": "ค้นหารายชื่อนักบินที่ไม่ชนะการแข่งขันที่จัดขึ้นในประเทศออสเตรเลีย",
    "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_en": "How many residents does each property have? List property id and resident count.",
    "question_th": "แต่ละทรัพย์สินมีผู้อยู่อาศัยกี่คน? แสดงรายการรหัสทรัพย์สินและจำนวนผู้อยู่อาศัย",
    "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_en": "What is the distinct service types that are provided by the organization which has detail 'Denesik and Sons Party'?",
    "question_th": "องค์กรที่ให้บริการประเภทใดที่มีรายละเอียด '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_en": "How many services has each resident requested? List the resident id, details, and the count in descending order of the count.",
    "question_th": "ผู้พักอาศัยแต่ละคนร้องขอบริการจำนวนเท่าใด ระบุรหัสประจำตัวผู้พักอาศัย รายละเอียด และการนับโดยเรียงลำดับจากมากไปหาน้อย",
    "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_en": "What is the maximum number that a certain service is provided? List the service id, details and number.",
    "question_th": "จำนวนสูงสุดที่ให้บริการบางอย่างคือเท่าใด? ระบุรหัสบริการ รายละเอียด และหมายเลข",
    "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_en": "List the id and type of each thing, and the details of the organization that owns it.",
    "question_th": "ระบุรหัสและประเภทของแต่ละรายการ และรายละเอียดขององค์กรที่เป็นเจ้าของ",
    "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_en": "What are the id and details of the customers who have at least 3 events?",
    "question_th": "id และรายละเอียดของลูกค้าที่มีอย่างน้อย 3 กิจกรรมคืออะไร?",
    "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_en": "What is each customer's move in date, and the corresponding customer id and details?",
    "question_th": "วันที่ย้ายเข้าของลูกค้าแต่ละรายคืออะไร และรหัสลูกค้าและรายละเอียดที่เกี่ยวข้อง",
    "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_en": "Which events have the number of notes between one and three? List the event id and the property id.",
    "question_th": "เหตุการณ์ใดมีจำนวนโน้ตระหว่างหนึ่งถึงสาม แสดงรายการรหัสเหตุการณ์และรหัสคุณสมบัติ",
    "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_en": "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'",
    "question_th": "อะไรคือรหัสประจำตัวและประเภทของสิ่งของที่มีสถานะ 'ปิด' หรือมีบันทึกสถานะก่อนวันที่ '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_en": "How many distinct locations have the things with service detail 'Unsatisfied' been located in?",
    "question_th": "มีสถานที่ที่แตกต่างกันกี่แห่งที่มีรายละเอียดบริการ 'ไม่พอใจ'",
    "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_en": "How many different status codes of things are there?",
    "question_th": "มีรหัสสถานะของสิ่งต่าง ๆ กี่แบบ?",
    "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_en": "Which organizations are not a parent organization of others? List the organization id.",
    "question_th": "องค์กรใดไม่ใช่องค์กรแม่ของผู้อื่น ระบุรหัสองค์กร",
    "context": "CREATE TABLE organizations (organization_id VARCHAR, parent_organization_id VARCHAR)"
  },
  {
    "answer": "SELECT MAX(date_moved_in) FROM Residents",
    "question_en": "When is the last day any resident moved in?",
    "question_th": "ผู้พักอาศัยคนใดย้ายเข้าวันสุดท้ายคือเมื่อใด",
    "context": "CREATE TABLE Residents (date_moved_in INTEGER)"
  },
  {
    "answer": "SELECT other_details FROM Residents WHERE other_details LIKE '%Miss%'",
    "question_en": "What are the resident details containing the substring 'Miss'?",
    "question_th": "รายละเอียดผู้อยู่อาศัยที่มีสตริงย่อย 'นางสาว' คืออะไร?",
    "context": "CREATE TABLE Residents (other_details VARCHAR)"
  },
  {
    "answer": "SELECT customer_event_id, date_moved_in, property_id FROM customer_events",
    "question_en": "List the customer event id and the corresponding move in date and property id.",
    "question_th": "แสดงรายการรหัสเหตุการณ์ของลูกค้าและวันที่ย้ายเข้าและรหัสทรัพย์สินที่เกี่ยวข้อง",
    "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_en": "How many customers did not have any event?",
    "question_th": "มีลูกค้ากี่คนที่ไม่มีงานอะไร?",
    "context": "CREATE TABLE customers (customer_id VARCHAR); CREATE TABLE customer_events (customer_id VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT date_moved_in FROM residents",
    "question_en": "What are the distinct move in dates of the residents?",
    "question_th": "การย้ายถิ่นฐานของผู้อยู่อาศัยมีกำหนดวันที่ชัดเจนอย่างไร?",
    "context": "CREATE TABLE residents (date_moved_in VARCHAR)"
  },
  {
    "answer": "SELECT LOCATION FROM school ORDER BY Enrollment",
    "question_en": "List the locations of schools in ascending order of enrollment.",
    "question_th": "รายชื่อสถานที่ตั้งของโรงเรียนตามลำดับการลงทะเบียนจากน้อยไปหามาก",
    "context": "CREATE TABLE school (LOCATION VARCHAR, Enrollment VARCHAR)"
  },
  {
    "answer": "SELECT LOCATION FROM school ORDER BY Founded DESC",
    "question_en": "List the locations of schools in descending order of founded year.",
    "question_th": "รายชื่อที่ตั้งของโรงเรียนโดยเรียงตามปีที่ก่อตั้งจากมากไปหาน้อย",
    "context": "CREATE TABLE school (LOCATION VARCHAR, Founded VARCHAR)"
  },
  {
    "answer": "SELECT Enrollment FROM school WHERE Denomination <> \"Catholic\"",
    "question_en": "What are the enrollments of schools whose denomination is not \"Catholic\"?",
    "question_th": "โรงเรียนใดบ้างที่ไม่ได้อยู่ในนิกาย \"คาทอลิก\"?",
    "context": "CREATE TABLE school (Enrollment VARCHAR, Denomination VARCHAR)"
  },
  {
    "answer": "SELECT AVG(Enrollment) FROM school",
    "question_en": "What is the average enrollment of schools?",
    "question_th": "การลงทะเบียนเรียนโดยเฉลี่ยของโรงเรียนคือเท่าไร?",
    "context": "CREATE TABLE school (Enrollment INTEGER)"
  },
  {
    "answer": "SELECT Team FROM player ORDER BY Team",
    "question_en": "What are the teams of the players, sorted in ascending alphabetical order?",
    "question_th": "ผู้เล่นทีมใดบ้าง เรียงตามตัวอักษรจากน้อยไปหามาก?",
    "context": "CREATE TABLE player (Team VARCHAR)"
  },
  {
    "answer": "SELECT Team FROM player ORDER BY Age DESC LIMIT 1",
    "question_en": "Find the team of the player of the highest age.",
    "question_th": "ค้นหาทีมผู้เล่นอายุสูงสุด",
    "context": "CREATE TABLE player (Team VARCHAR, Age VARCHAR)"
  },
  {
    "answer": "SELECT Team FROM player ORDER BY Age DESC LIMIT 5",
    "question_en": "List the teams of the players with the top 5 largest ages.",
    "question_th": "รายชื่อทีมผู้เล่นที่มีอายุสูงสุด 5 อันดับแรก",
    "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_en": "For each player, show the team and the location of school they belong to.",
    "question_th": "สำหรับผู้เล่นแต่ละคน ให้แสดงทีมและที่ตั้งของโรงเรียนที่พวกเขาอยู่",
    "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_en": "Show the locations of schools that have more than 1 player.",
    "question_th": "แสดงตำแหน่งของโรงเรียนที่มีผู้เล่นมากกว่า 1 คน",
    "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_en": "Show the denomination of the school that has the most players.",
    "question_th": "แสดงรายชื่อโรงเรียนที่มีผู้เล่นมากที่สุด",
    "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_en": "Show locations and nicknames of schools.",
    "question_th": "แสดงที่ตั้งและชื่อเล่นของโรงเรียน",
    "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_en": "Please show different denominations and the corresponding number of schools.",
    "question_th": "กรุณาแสดงนิกายที่แตกต่างกันและจำนวนโรงเรียนที่สอดคล้องกัน",
    "context": "CREATE TABLE school (Denomination VARCHAR)"
  },
  {
    "answer": "SELECT Denomination, COUNT(*) FROM school GROUP BY Denomination ORDER BY COUNT(*) DESC",
    "question_en": "Please show different denominations and the corresponding number of schools in descending order.",
    "question_th": "กรุณาแสดงนิกายที่แตกต่างกันและจำนวนโรงเรียนตามลำดับจากมากไปหาน้อย",
    "context": "CREATE TABLE school (Denomination VARCHAR)"
  },
  {
    "answer": "SELECT School_Colors FROM school ORDER BY Enrollment DESC LIMIT 1",
    "question_en": "List the school color of the school that has the largest enrollment.",
    "question_th": "ระบุสีโรงเรียนของโรงเรียนที่มีการลงทะเบียนมากที่สุด",
    "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_en": "List the locations of schools that do not have any player.",
    "question_th": "รายชื่อสถานศึกษาที่ไม่มีเครื่องเล่น",
    "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_en": "Show the denomination shared by schools founded before 1890 and schools founded after 1900",
    "question_th": "แสดงนิกายที่ใช้ร่วมกันโดยโรงเรียนที่ก่อตั้งก่อนปี 1890 และโรงเรียนที่ก่อตั้งหลังปี 1900",
    "context": "CREATE TABLE school (Denomination VARCHAR, Founded INTEGER)"
  },
  {
    "answer": "SELECT Nickname FROM school_details WHERE Division <> \"Division 1\"",
    "question_en": "Show the nicknames of schools that are not in division 1.",
    "question_th": "แสดงชื่อเล่นโรงเรียนที่ไม่อยู่ในหมวด 1",
    "context": "CREATE TABLE school_details (Nickname VARCHAR, Division VARCHAR)"
  },
  {
    "answer": "SELECT Denomination FROM school GROUP BY Denomination HAVING COUNT(*) > 1",
    "question_en": "Show the denomination shared by more than one school.",
    "question_th": "แสดงนิกายที่ใช้ร่วมกันโดยโรงเรียนมากกว่าหนึ่งแห่ง",
    "context": "CREATE TABLE school (Denomination VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT District_name FROM district ORDER BY city_area DESC",
    "question_en": "Find all the distinct district names ordered by city area in descending.",
    "question_th": "ค้นหาชื่อเขตที่แตกต่างกันทั้งหมดโดยเรียงลำดับตามพื้นที่เมืองจากมากไปน้อย",
    "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_en": "Find the list of page size which have more than 3 product listed",
    "question_th": "ค้นหารายการขนาดหน้าซึ่งมีรายการผลิตภัณฑ์มากกว่า 3 รายการ",
    "context": "CREATE TABLE product (max_page_size VARCHAR)"
  },
  {
    "answer": "SELECT District_name, City_Population FROM district WHERE City_Population BETWEEN 200000 AND 2000000",
    "question_en": "Find the name and population of district with population between 200000 and 2000000",
    "question_th": "ค้นหาชื่อและประชากรของเขตที่มีจำนวนประชากรระหว่าง 200000 ถึง 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_en": "Find the name all districts with city area greater than 10 or population larger than 100000",
    "question_th": "ค้นหาชื่อเขตทั้งหมดที่มีพื้นที่เมืองมากกว่า 10 หรือมีประชากรมากกว่า 100,000 คน",
    "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_en": "Which district has the largest population?",
    "question_th": "อำเภอใดมีประชากรมากที่สุด?",
    "context": "CREATE TABLE district (district_name VARCHAR, city_population VARCHAR)"
  },
  {
    "answer": "SELECT district_name FROM district ORDER BY city_area LIMIT 1",
    "question_en": "Which district has the least area?",
    "question_th": "อำเภอใดมีพื้นที่น้อยที่สุด?",
    "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_en": "Find the total population of the top 3 districts with the largest area.",
    "question_th": "ค้นหาจำนวนประชากรทั้งหมดของ 3 อันดับแรกที่มีพื้นที่มากที่สุด",
    "context": "CREATE TABLE district (city_population INTEGER, city_area VARCHAR)"
  },
  {
    "answer": "SELECT TYPE, COUNT(*) FROM store GROUP BY TYPE",
    "question_en": "Find all types of store and number of them.",
    "question_th": "ค้นหาร้านค้าทุกประเภทและจำนวนร้านค้า",
    "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_en": "Find the names of all stores in Khanewal District.",
    "question_th": "ค้นหาชื่อร้านค้าทั้งหมดในอำเภอคันวัล",
    "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_en": "Find all the stores in the district with the most population.",
    "question_th": "ค้นหาร้านค้าทั้งหมดในเขตที่มีประชากรมากที่สุด",
    "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_en": "Which city is the headquarter of the store named \"Blackville\" in?",
    "question_th": "สำนักงานใหญ่ของร้านชื่อ \"แบล็ควิลล์\" ตั้งอยู่ที่เมืองใด",
    "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_en": "Find the number of stores in each city.",
    "question_th": "ค้นหาจำนวนร้านค้าในแต่ละเมือง",
    "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_en": "Find the city with the most number of stores.",
    "question_th": "ค้นหาเมืองที่มีร้านค้ามากที่สุด",
    "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_en": "What is the average pages per minute color?",
    "question_th": "จำนวนหน้าเฉลี่ยต่อนาทีของสีคือเท่าไร?",
    "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_en": "What products are available at store named \"Miramichi\"?",
    "question_th": "มีสินค้าอะไรบ้างที่ร้านค้าชื่อ \"มิรามิจิ\"?",
    "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_en": "Find products with max page size as \"A4\" and pages per minute color smaller than 5.",
    "question_th": "ค้นหาผลิตภัณฑ์ที่มีขนาดหน้าสูงสุดเป็น \"A4\" และจำนวนหน้าต่อนาทีสีน้อยกว่า 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_en": "Find products with max page size as \"A4\" or pages per minute color smaller than 5.",
    "question_th": "ค้นหาผลิตภัณฑ์ที่มีขนาดหน้าสูงสุดเป็น \"A4\" หรือหน้าต่อนาทีสีน้อยกว่า 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_en": "Find all the product whose name contains the word \"Scanner\".",
    "question_th": "ค้นหาผลิตภัณฑ์ทั้งหมดที่มีชื่อมีคำว่า \"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_en": "Find the most prominent max page size among all the products.",
    "question_th": "ค้นหาขนาดหน้าสูงสุดที่โดดเด่นที่สุดในบรรดาผลิตภัณฑ์ทั้งหมด",
    "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_en": "Find the name of the products that are not using the most frequently-used max page size.",
    "question_th": "ค้นหาชื่อผลิตภัณฑ์ที่ไม่ได้ใช้ขนาดหน้าสูงสุดที่ใช้บ่อยที่สุด",
    "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_en": "Find the total population of the districts where the area is bigger than the average city area.",
    "question_th": "ค้นหาจำนวนประชากรทั้งหมดของเขตที่มีพื้นที่มากกว่าพื้นที่เมืองโดยเฉลี่ย",
    "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_en": "Find the names of districts where have both city mall and village store type stores.",
    "question_th": "ค้นหาชื่ออำเภอที่มีทั้งห้างสรรพสินค้าในเมืองและร้านค้าประเภทร้านค้าในหมู่บ้าน",
    "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_en": "What is the total enrollment number of all colleges?",
    "question_th": "จำนวนการลงทะเบียนทั้งหมดของวิทยาลัยทั้งหมดเป็นเท่าใด",
    "context": "CREATE TABLE College (enr INTEGER)"
  },
  {
    "answer": "SELECT AVG(enr) FROM College",
    "question_en": "What is the average enrollment number?",
    "question_th": "หมายเลขการลงทะเบียนเฉลี่ยคืออะไร?",
    "context": "CREATE TABLE College (enr INTEGER)"
  },
  {
    "answer": "SELECT COUNT(*) FROM College",
    "question_en": "How many colleges in total?",
    "question_th": "มีทั้งหมดกี่วิทยาลัย?",
    "context": "CREATE TABLE College (Id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Player WHERE HS > 1000",
    "question_en": "How many players have more than 1000 hours of training?",
    "question_th": "มีผู้เล่นกี่คนที่ฝึกฝนมากกว่า 1,000 ชั่วโมง?",
    "context": "CREATE TABLE Player (HS INTEGER)"
  },
  {
    "answer": "SELECT COUNT(*) FROM College WHERE enr > 15000",
    "question_en": "How many colleges has more than 15000 students?",
    "question_th": "มีกี่วิทยาลัยที่มีนักศึกษามากกว่า 15,000 คน",
    "context": "CREATE TABLE College (enr INTEGER)"
  },
  {
    "answer": "SELECT AVG(HS) FROM Player",
    "question_en": "What is the average training hours of all players?",
    "question_th": "ชั่วโมงการฝึกซ้อมเฉลี่ยของผู้เล่นทุกคนคือเท่าไร?",
    "context": "CREATE TABLE Player (HS INTEGER)"
  },
  {
    "answer": "SELECT pName, HS FROM Player WHERE HS < 1500",
    "question_en": "Find the name and training hours of players whose hours are below 1500.",
    "question_th": "ค้นหาชื่อและชั่วโมงการฝึกซ้อมของผู้เล่นที่มีชั่วโมงต่ำกว่า 1,500 น.",
    "context": "CREATE TABLE Player (pName VARCHAR, HS INTEGER)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT cName) FROM tryout",
    "question_en": "How many different colleges do attend the tryout test?",
    "question_th": "มีวิทยาลัยใดบ้างที่เข้าร่วมการทดสอบแบบทดลอง?",
    "context": "CREATE TABLE tryout (cName VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT pPos) FROM tryout",
    "question_en": "What are the unique types of player positions in the tryout?",
    "question_th": "ตำแหน่งผู้เล่นที่ไม่ซ้ำกันในการทดลองมีอะไรบ้าง?",
    "context": "CREATE TABLE tryout (pPos VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM tryout WHERE decision = 'yes'",
    "question_en": "How many students got accepted after the tryout?",
    "question_th": "มีนักเรียนกี่คนที่ได้รับการยอมรับหลังจากการทดลอง?",
    "context": "CREATE TABLE tryout (decision VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM tryout WHERE pPos = 'goalie'",
    "question_en": "How many students whose are playing the role of goalie?",
    "question_th": "มีนักเรียนกี่คนที่เล่นเป็นผู้รักษาประตู?",
    "context": "CREATE TABLE tryout (pPos VARCHAR)"
  },
  {
    "answer": "SELECT AVG(HS), MAX(HS), MIN(HS) FROM Player",
    "question_en": "Find the max, average and min training hours of all players.",
    "question_th": "ค้นหาชั่วโมงการฝึกซ้อมสูงสุด เฉลี่ย และต่ำสุดของผู้เล่นทุกคน",
    "context": "CREATE TABLE Player (HS INTEGER)"
  },
  {
    "answer": "SELECT AVG(enr) FROM College WHERE state = 'FL'",
    "question_en": "What is average enrollment of colleges in the state FL?",
    "question_th": "การลงทะเบียนวิทยาลัยในรัฐฟลอริดาโดยเฉลี่ยคือเท่าใด",
    "context": "CREATE TABLE College (enr INTEGER, state VARCHAR)"
  },
  {
    "answer": "SELECT pName FROM Player WHERE HS BETWEEN 500 AND 1500",
    "question_en": "What are the names of players whose training hours is between 500 and 1500?",
    "question_th": "รายชื่อนักเตะที่มีชั่วโมงฝึกซ้อมระหว่าง 500 ถึง 15.00 น. มีชื่ออะไรบ้าง?",
    "context": "CREATE TABLE Player (pName VARCHAR, HS INTEGER)"
  },
  {
    "answer": "SELECT DISTINCT pName FROM Player WHERE pName LIKE '%a%'",
    "question_en": "Find the players whose names contain letter 'a'.",
    "question_th": "ค้นหาผู้เล่นที่มีชื่อมีตัวอักษร 'a'",
    "context": "CREATE TABLE Player (pName VARCHAR)"
  },
  {
    "answer": "SELECT cName, enr FROM College WHERE enr > 10000 AND state = \"LA\"",
    "question_en": "Find the name, enrollment of the colleges whose size is bigger than 10000 and location is in state LA.",
    "question_th": "ค้นหาชื่อ การลงทะเบียนของวิทยาลัยที่มีขนาดมากกว่า 10,000 และสถานที่ตั้งอยู่ในรัฐแอลเอ",
    "context": "CREATE TABLE College (cName VARCHAR, enr VARCHAR, state VARCHAR)"
  },
  {
    "answer": "SELECT * FROM College ORDER BY enr",
    "question_en": "List all information about college sorted by enrollment number in the ascending order.",
    "question_th": "แสดงรายการข้อมูลทั้งหมดเกี่ยวกับวิทยาลัยโดยเรียงลำดับตามหมายเลขการลงทะเบียนจากน้อยไปหามาก",
    "context": "CREATE TABLE College (enr VARCHAR)"
  },
  {
    "answer": "SELECT cName FROM College WHERE enr > 18000 ORDER BY cName",
    "question_en": "List the name of the colleges whose enrollment is greater 18000 sorted by the college's name.",
    "question_th": "รายชื่อวิทยาลัยที่มีการลงทะเบียนมากกว่า 18,000 เรียงตามชื่อวิทยาลัย",
    "context": "CREATE TABLE College (cName VARCHAR, enr INTEGER)"
  },
  {
    "answer": "SELECT pName FROM Player WHERE yCard = 'yes' ORDER BY HS DESC",
    "question_en": "Find the name of players whose card is yes in the descending order of training hours.",
    "question_th": "ค้นหาชื่อผู้เล่นที่มีไพ่เป็นใช่ตามลำดับชั่วโมงการฝึกซ้อมจากมากไปหาน้อย",
    "context": "CREATE TABLE Player (pName VARCHAR, yCard VARCHAR, HS VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT cName FROM tryout ORDER BY cName",
    "question_en": "Find the name of different colleges involved in the tryout in alphabetical order.",
    "question_th": "ค้นหาชื่อวิทยาลัยต่างๆ ที่เกี่ยวข้องกับการคัดเลือกโดยเรียงตามตัวอักษร",
    "context": "CREATE TABLE tryout (cName VARCHAR)"
  },
  {
    "answer": "SELECT pPos FROM tryout GROUP BY pPos ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "Which position is most popular among players in the tryout?",
    "question_th": "ตำแหน่งใดที่ได้รับความนิยมมากที่สุดในหมู่ผู้เล่นในการทดลองใช้?",
    "context": "CREATE TABLE tryout (pPos VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*), cName FROM tryout GROUP BY cName ORDER BY COUNT(*) DESC",
    "question_en": "Find the number of students who participate in the tryout for each college ordered by descending count.",
    "question_th": "ค้นหาจำนวนนักเรียนที่เข้าร่วมการทดลองสำหรับแต่ละวิทยาลัย เรียงลำดับจากมากไปน้อย",
    "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_en": "What is minimum hours of the students playing in different position?",
    "question_th": "ชั่วโมงขั้นต่ำของนักเรียนที่เล่นในตำแหน่งที่แตกต่างกันคือเท่าไร?",
    "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_en": "What are the names of schools with the top 3 largest size?",
    "question_th": "โรงเรียนที่มีขนาดสูงสุด 3 อันดับแรกชื่ออะไร?",
    "context": "CREATE TABLE college (cName VARCHAR, enr VARCHAR)"
  },
  {
    "answer": "SELECT cName, state, MIN(enr) FROM college GROUP BY state",
    "question_en": "What is the name of school that has the smallest enrollment in each state?",
    "question_th": "โรงเรียนที่มีการลงทะเบียนน้อยที่สุดในแต่ละรัฐชื่ออะไร?",
    "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_en": "Find the states where have some college students in tryout.",
    "question_th": "ค้นหารัฐที่มีนักศึกษาทดลองอยู่",
    "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_en": "Find the states where have some college students in tryout and their decisions are yes.",
    "question_th": "ค้นหารัฐที่มีนักศึกษาทดลองอยู่และการตัดสินใจของพวกเขาก็ใช่",
    "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_en": "Find the name and college of students whose decisions are yes in the tryout.",
    "question_th": "ค้นหาชื่อและวิทยาลัยของนักเรียนที่มีการตัดสินว่าใช่ในการทดลอง",
    "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_en": "Find the name of all students who were in the tryout sorted in alphabetic order.",
    "question_th": "ค้นหาชื่อนักเรียนทุกคนที่เข้าทดสอบโดยเรียงตามตัวอักษร",
    "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_en": "Find the name and hours of the students whose tryout decision is yes.",
    "question_th": "ค้นหาชื่อและเวลาทำการของนักเรียนที่ตัดสินใจทดลองเรียนว่าใช่",
    "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_en": "Find the states of the colleges that have students in the tryout who played in striker position.",
    "question_th": "ค้นหาสถานะของวิทยาลัยที่มีนักเรียนในการคัดเลือกซึ่งเล่นในตำแหน่งกองหน้า",
    "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_en": "Find the names of the students who are in the position of striker and got a yes tryout decision.",
    "question_th": "ค้นหารายชื่อนักเรียนที่อยู่ในตำแหน่งกองหน้าและได้รับการตัดสินว่าใช่",
    "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_en": "Find the state of the college which player Charles is attending.",
    "question_th": "ค้นหาสถานะของวิทยาลัยที่ผู้เล่น Charles กำลังเข้าเรียนอยู่",
    "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_en": "Find the average and maximum hours for the students whose tryout decision is yes.",
    "question_th": "ค้นหาชั่วโมงเฉลี่ยและชั่วโมงสูงสุดสำหรับนักเรียนที่ตัดสินใจทดลองเรียนว่าใช่",
    "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_en": "Find the average hours for the students whose tryout decision is no.",
    "question_th": "ค้นหาชั่วโมงเฉลี่ยของนักเรียนที่ตัดสินใจไม่ทดลองเรียน",
    "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_en": "What is the maximum training hours for the students whose training hours is greater than 1000 in different positions?",
    "question_th": "ชั่วโมงการฝึกอบรมสูงสุดสำหรับนักเรียนที่มีชั่วโมงการฝึกอบรมมากกว่า 1,000 ในตำแหน่งที่แตกต่างกันคือเท่าใด",
    "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_en": "Which colleges do the tryout players whose name starts with letter D go to?",
    "question_th": "ผู้เล่นทดลองเรียนที่มีชื่อขึ้นต้นด้วยตัวอักษร D เข้าเรียนที่วิทยาลัยใดบ้าง",
    "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_en": "Which college has any student who is a goalie and succeeded in the tryout.",
    "question_th": "วิทยาลัยไหนมีนักศึกษาคนไหนที่เป็นผู้รักษาประตูและประสบความสำเร็จในการประลอง",
    "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_en": "Find the name of the tryout players who are from the college with largest size.",
    "question_th": "ค้นหารายชื่อผู้เล่นทดลองที่มาจากวิทยาลัยที่มีขนาดใหญ่ที่สุด",
    "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_en": "What is the state and enrollment of the colleges where have any students who got accepted in the tryout decision.",
    "question_th": "รัฐและการลงทะเบียนของวิทยาลัยเป็นอย่างไรซึ่งมีนักศึกษาคนใดที่ได้รับการยอมรับในการตัดสินใจทดลองเรียน",
    "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_en": "Find the names of either colleges in LA with greater than 15000 size or in state AZ with less than 13000 enrollment.",
    "question_th": "ค้นหารายชื่อวิทยาลัยใน LA ที่มีจำนวนมากกว่า 15,000 ชื่อ หรือในรัฐ AZ ที่มีจำนวนการลงทะเบียนน้อยกว่า 13,000 ชื่อ",
    "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_en": "Find the names of schools that have some students playing in goalie and mid positions.",
    "question_th": "ค้นหาชื่อโรงเรียนที่มีนักเรียนบางคนเล่นในตำแหน่งผู้รักษาประตูและตำแหน่งกลาง",
    "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_en": "Find the names of states that have some college students playing in goalie and mid positions.",
    "question_th": "ค้นหาชื่อรัฐที่มีนักศึกษาบางคนเล่นในตำแหน่งผู้รักษาประตูและตำแหน่งกลาง",
    "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_en": "How many schools have some students playing in goalie and mid positions.",
    "question_th": "มีกี่โรงเรียนที่มีนักเรียนเล่นในตำแหน่งผู้รักษาประตูและตำแหน่งกลาง",
    "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_en": "Find the names of schools that have some players in the mid position but not in the goalie position.",
    "question_th": "ค้นหารายชื่อโรงเรียนที่มีผู้เล่นตำแหน่งกลางแต่ไม่อยู่ในตำแหน่งผู้รักษาประตู",
    "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_en": "Find the names of states that have some college students playing in the mid position but not in the goalie position.",
    "question_th": "ค้นหาชื่อของรัฐที่มีนักศึกษาบางคนเล่นในตำแหน่งกลางแต่ไม่อยู่ในตำแหน่งผู้รักษาประตู",
    "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_en": "How many states that have some college students playing in the mid position but not in the goalie position.",
    "question_th": "มีกี่รัฐที่มีนักศึกษาเล่นในตำแหน่งกลางแต่ไม่อยู่ในตำแหน่งผู้รักษาประตู",
    "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_en": "Find the states where have the colleges whose enrollments are less than the largest size.",
    "question_th": "ค้นหารัฐที่มีวิทยาลัยที่มีการลงทะเบียนน้อยกว่าขนาดที่ใหญ่ที่สุด",
    "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_en": "Find names of colleges with enrollment greater than that of some (at least one) college in the FL state.",
    "question_th": "ค้นหาชื่อวิทยาลัยที่มีการลงทะเบียนมากกว่าวิทยาลัยบางแห่ง (อย่างน้อยหนึ่งแห่ง) ในรัฐฟลอริดา",
    "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_en": "Find names of all colleges whose enrollment is greater than that of all colleges in the FL state.",
    "question_th": "ค้นหารายชื่อวิทยาลัยทั้งหมดที่มีการลงทะเบียนมากกว่าวิทยาลัยทั้งหมดในรัฐฟลอริดา",
    "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_en": "What is the total number of enrollment of schools that do not have any goalie player?",
    "question_th": "จำนวนการลงทะเบียนของโรงเรียนที่ไม่มีผู้เล่นผู้รักษาประตูเป็นจำนวนเท่าใด?",
    "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_en": "What is the number of states that has some college whose enrollment is larger than the average enrollment?",
    "question_th": "จำนวนรัฐที่มีวิทยาลัยบางแห่งซึ่งมีการลงทะเบียนมากกว่าการลงทะเบียนเฉลี่ยคือเท่าใด",
    "context": "CREATE TABLE college (state VARCHAR, enr INTEGER)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT state) FROM college WHERE enr < (SELECT AVG(enr) FROM college)",
    "question_en": "What is the number of states that has some colleges whose enrollment is smaller than the average enrollment?",
    "question_th": "จำนวนรัฐที่มีวิทยาลัยบางแห่งที่มีการลงทะเบียนน้อยกว่าการลงทะเบียนโดยเฉลี่ยคือจำนวนเท่าใด",
    "context": "CREATE TABLE college (state VARCHAR, enr INTEGER)"
  },
  {
    "answer": "SELECT COUNT(*) FROM device",
    "question_en": "How many devices are there?",
    "question_th": "มีอุปกรณ์กี่เครื่อง?",
    "context": "CREATE TABLE device (Id VARCHAR)"
  },
  {
    "answer": "SELECT Carrier FROM device ORDER BY Carrier",
    "question_en": "List the carriers of devices in ascending alphabetical order.",
    "question_th": "รายชื่อผู้ให้บริการอุปกรณ์ตามลำดับตัวอักษรจากน้อยไปหามาก",
    "context": "CREATE TABLE device (Carrier VARCHAR)"
  },
  {
    "answer": "SELECT Carrier FROM device WHERE Software_Platform <> 'Android'",
    "question_en": "What are the carriers of devices whose software platforms are not \"Android\"?",
    "question_th": "ผู้ให้บริการอุปกรณ์ใดบ้างที่มีแพลตฟอร์มซอฟต์แวร์ไม่ใช่ \"Android\"?",
    "context": "CREATE TABLE device (Carrier VARCHAR, Software_Platform VARCHAR)"
  },
  {
    "answer": "SELECT Shop_Name FROM shop ORDER BY Open_Year",
    "question_en": "What are the names of shops in ascending order of open year?",
    "question_th": "ร้านค้าเรียงตามปีเปิดมีชื่ออะไรบ้าง?",
    "context": "CREATE TABLE shop (Shop_Name VARCHAR, Open_Year VARCHAR)"
  },
  {
    "answer": "SELECT AVG(Quantity) FROM stock",
    "question_en": "What is the average quantity of stocks?",
    "question_th": "จำนวนหุ้นเฉลี่ยคือเท่าไร?",
    "context": "CREATE TABLE stock (Quantity INTEGER)"
  },
  {
    "answer": "SELECT Shop_Name, LOCATION FROM shop ORDER BY Shop_Name",
    "question_en": "What are the names and location of the shops in ascending alphabetical order of name.",
    "question_th": "ชื่อและที่ตั้งของร้านค้าต่างๆ เรียงตามตัวอักษรจากน้อยไปหามาก",
    "context": "CREATE TABLE shop (Shop_Name VARCHAR, LOCATION VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT Software_Platform) FROM device",
    "question_en": "How many different software platforms are there for devices?",
    "question_th": "มีแพลตฟอร์มซอฟต์แวร์ที่แตกต่างกันกี่แพลตฟอร์มสำหรับอุปกรณ์",
    "context": "CREATE TABLE device (Software_Platform VARCHAR)"
  },
  {
    "answer": "SELECT Open_Date, Open_Year FROM shop WHERE Shop_Name = \"Apple\"",
    "question_en": "List the open date of open year of the shop named \"Apple\".",
    "question_th": "ระบุวันเปิดปีเปิดร้านชื่อ \"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_en": "List the name of the shop with the latest open year.",
    "question_th": "ระบุชื่อร้านกับปีที่เปิดล่าสุด",
    "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_en": "Show names of shops and the carriers of devices they have in stock.",
    "question_th": "แสดงชื่อร้านค้าและผู้ให้บริการอุปกรณ์ที่มีอยู่ในสต็อก",
    "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_en": "Show names of shops that have more than one kind of device in stock.",
    "question_th": "แสดงชื่อร้านค้าที่มีอุปกรณ์ในสต็อกมากกว่าหนึ่งประเภท",
    "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_en": "Show the name of the shop that has the most kind of devices in stock.",
    "question_th": "แสดงชื่อร้านที่มีอุปกรณ์ในสต็อกมากที่สุด",
    "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_en": "Show the name of the shop that have the largest quantity of devices in stock.",
    "question_th": "แสดงชื่อร้านค้าที่มีจำนวนอุปกรณ์ในสต็อกมากที่สุด",
    "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_en": "Please show different software platforms and the corresponding number of devices using each.",
    "question_th": "โปรดแสดงแพลตฟอร์มซอฟต์แวร์ที่แตกต่างกันและจำนวนอุปกรณ์ที่เกี่ยวข้องที่ใช้แต่ละแพลตฟอร์ม",
    "context": "CREATE TABLE device (Software_Platform VARCHAR)"
  },
  {
    "answer": "SELECT Software_Platform FROM device GROUP BY Software_Platform ORDER BY COUNT(*) DESC",
    "question_en": "Please show the software platforms of devices in descending order of the count.",
    "question_th": "โปรดแสดงแพลตฟอร์มซอฟต์แวร์ของอุปกรณ์ตามลำดับการนับจากมากไปหาน้อย",
    "context": "CREATE TABLE device (Software_Platform VARCHAR)"
  },
  {
    "answer": "SELECT Software_Platform FROM device GROUP BY Software_Platform ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "List the software platform shared by the greatest number of devices.",
    "question_th": "แสดงรายการแพลตฟอร์มซอฟต์แวร์ที่ใช้ร่วมกันโดยอุปกรณ์จำนวนมากที่สุด",
    "context": "CREATE TABLE device (Software_Platform VARCHAR)"
  },
  {
    "answer": "SELECT Shop_Name FROM shop WHERE NOT Shop_ID IN (SELECT Shop_ID FROM stock)",
    "question_en": "List the names of shops that have no devices in stock.",
    "question_th": "รายชื่อร้านค้าที่ไม่มีอุปกรณ์ในสต็อก",
    "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_en": "Show the locations shared by shops with open year later than 2012 and shops with open year before 2008.",
    "question_th": "แสดงสถานที่ที่ใช้ร่วมกันโดยร้านค้าที่เปิดในปีหลังปี 2555 และร้านค้าที่เปิดปีก่อนปี 2551",
    "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_en": "List the carriers of devices that have no devices in stock.",
    "question_th": "รายชื่อผู้ให้บริการอุปกรณ์ที่ไม่มีอุปกรณ์ในสต็อก",
    "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_en": "Show the carriers of devices in stock at more than one shop.",
    "question_th": "แสดงผู้ให้บริการอุปกรณ์ในสต็อกที่ร้านค้ามากกว่าหนึ่งแห่ง",
    "context": "CREATE TABLE stock (Device_ID VARCHAR); CREATE TABLE device (Carrier VARCHAR, Device_ID VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM BOOKINGS",
    "question_en": "How many bookings do we have?",
    "question_th": "เรามียอดจองกี่รายการ?",
    "context": "CREATE TABLE BOOKINGS (Id VARCHAR)"
  },
  {
    "answer": "SELECT Order_Date FROM BOOKINGS",
    "question_en": "List the order dates of all the bookings.",
    "question_th": "ระบุวันที่สั่งจองทั้งหมด",
    "context": "CREATE TABLE BOOKINGS (Order_Date VARCHAR)"
  },
  {
    "answer": "SELECT Planned_Delivery_Date, Actual_Delivery_Date FROM BOOKINGS",
    "question_en": "Show all the planned delivery dates and actual delivery dates of bookings.",
    "question_th": "แสดงวันที่จัดส่งที่วางแผนไว้และวันที่จัดส่งตามจริงของการจองทั้งหมด",
    "context": "CREATE TABLE BOOKINGS (Planned_Delivery_Date VARCHAR, Actual_Delivery_Date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM CUSTOMERS",
    "question_en": "How many customers do we have?",
    "question_th": "เรามีลูกค้ากี่คน?",
    "context": "CREATE TABLE CUSTOMERS (Id VARCHAR)"
  },
  {
    "answer": "SELECT Customer_Phone, Customer_Email_Address FROM CUSTOMERS WHERE Customer_Name = \"Harold\"",
    "question_en": "What are the phone and email for customer Harold?",
    "question_th": "โทรศัพท์และอีเมลสำหรับลูกค้า Harold คืออะไร?",
    "context": "CREATE TABLE CUSTOMERS (Customer_Phone VARCHAR, Customer_Email_Address VARCHAR, Customer_Name VARCHAR)"
  },
  {
    "answer": "SELECT Store_Name FROM Drama_Workshop_Groups",
    "question_en": "Show all the Store_Name of drama workshop groups.",
    "question_th": "แสดง Store_Name ของกลุ่มเวิร์คช็อปละครทั้งหมด",
    "context": "CREATE TABLE Drama_Workshop_Groups (Store_Name VARCHAR)"
  },
  {
    "answer": "SELECT MIN(Order_Quantity), AVG(Order_Quantity), MAX(Order_Quantity) FROM INVOICES",
    "question_en": "Show the minimum, average, maximum order quantity of all invoices.",
    "question_th": "แสดงปริมาณการสั่งซื้อขั้นต่ำ เฉลี่ย และสูงสุดของใบแจ้งหนี้ทั้งหมด",
    "context": "CREATE TABLE INVOICES (Order_Quantity INTEGER)"
  },
  {
    "answer": "SELECT DISTINCT payment_method_code FROM INVOICES",
    "question_en": "What are the distinct payment method codes in all the invoices?",
    "question_th": "รหัสวิธีการชำระเงินที่แตกต่างกันในใบแจ้งหนี้ทั้งหมดคืออะไร",
    "context": "CREATE TABLE INVOICES (payment_method_code VARCHAR)"
  },
  {
    "answer": "SELECT Marketing_Region_Descriptrion FROM Marketing_Regions WHERE Marketing_Region_Name = \"China\"",
    "question_en": "What is the description of the marketing region China?",
    "question_th": "คำอธิบายของภูมิภาคการตลาดของจีนคืออะไร?",
    "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_en": "Show all the distinct product names with price higher than the average.",
    "question_th": "แสดงชื่อผลิตภัณฑ์ที่แตกต่างกันทั้งหมดซึ่งมีราคาสูงกว่าค่าเฉลี่ย",
    "context": "CREATE TABLE PRODUCTS (Product_Name VARCHAR, Product_Price INTEGER)"
  },
  {
    "answer": "SELECT Product_Name FROM PRODUCTS ORDER BY Product_Price DESC LIMIT 1",
    "question_en": "What is the name of the most expensive product?",
    "question_th": "สินค้าที่แพงที่สุดชื่ออะไร?",
    "context": "CREATE TABLE PRODUCTS (Product_Name VARCHAR, Product_Price VARCHAR)"
  },
  {
    "answer": "SELECT Customer_Phone FROM PERFORMERS WHERE Customer_Name = \"Ashley\"",
    "question_en": "What is the phone number of the performer Ashley?",
    "question_th": "หมายเลขโทรศัพท์ของนักแสดง 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_en": "Show all payment method codes and the number of orders for each code.",
    "question_th": "แสดงรหัสวิธีการชำระเงินทั้งหมดและจำนวนคำสั่งซื้อสำหรับแต่ละรหัส",
    "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_en": "What is the payment method code used by the most orders?",
    "question_th": "รหัสวิธีการชำระเงินที่คำสั่งซื้อส่วนใหญ่ใช้คืออะไร?",
    "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_en": "Which city is the address of the store named \"FJA Filming\" located in?",
    "question_th": "ที่อยู่ของร้านชื่อ \"FJA Filming\" ตั้งอยู่ที่เมืองใด",
    "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_en": "What are the states or counties of the address of the stores with marketing region code \"CA\"?",
    "question_th": "รัฐหรือเทศมณฑลของที่อยู่ของร้านค้าที่มีรหัสภูมิภาคทางการตลาด \"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_en": "What is the name of the marketing region that the store Rob Dinning belongs to?",
    "question_th": "เขตการตลาดของร้าน Rob Dinning ชื่อว่าอะไร",
    "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_en": "What are the descriptions of the service types with product price above 100?",
    "question_th": "ประเภทบริการที่มีราคาสินค้าเกิน 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_en": "What is the description, code and the corresponding count of each service type?",
    "question_th": "คำอธิบาย รหัส และจำนวนที่สอดคล้องกันของบริการแต่ละประเภทคืออะไร?",
    "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_en": "What is the description and code of the type of service that is performed the most often?",
    "question_th": "คำอธิบายและรหัสของประเภทของบริการที่มีการดำเนินการบ่อยที่สุดคืออะไร?",
    "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_en": "What are the phones and emails of workshop groups in which services are performed?",
    "question_th": "โทรศัพท์และอีเมลของกลุ่มเวิร์กช็อปที่ให้บริการมีอะไรบ้าง?",
    "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_en": "What are the names of workshop groups in which services with product name \"film\" are performed?",
    "question_th": "ชื่อของกลุ่มเวิร์กช็อปที่ให้บริการเกี่ยวกับชื่อผลิตภัณฑ์ \"ฟิล์ม\" คืออะไร?",
    "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_en": "What are the different product names? What is the average product price for each of them?",
    "question_th": "ชื่อผลิตภัณฑ์ที่แตกต่างกันคืออะไร? ราคาสินค้าเฉลี่ยของแต่ละรายการคือเท่าไร?",
    "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_en": "What are the product names with average product price smaller than 1000000?",
    "question_th": "ชื่อผลิตภัณฑ์ที่มีราคาสินค้าเฉลี่ยน้อยกว่า 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_en": "What are the total order quantities of photo products?",
    "question_th": "จำนวนสั่งซื้อผลิตภัณฑ์ภาพถ่ายทั้งหมดคือเท่าใด",
    "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_en": "What are the order details of the products with price higher than 2000?",
    "question_th": "รายละเอียดการสั่งสินค้าราคาสูงกว่า 2,000 เป็นอย่างไรบ้าง?",
    "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_en": "What are the actual delivery dates of orders with quantity 1?",
    "question_th": "วันที่จัดส่งจริงของคำสั่งซื้อที่มีปริมาณ 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_en": "What are the order dates of orders with price higher than 1000?",
    "question_th": "วันที่สั่งของที่มีราคาสูงกว่า 1,000 คือเมื่อใด",
    "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_en": "How many distinct currency codes are there for all drama workshop groups?",
    "question_th": "มีรหัสสกุลเงินที่แตกต่างกันกี่รหัสสำหรับกลุ่มเวิร์คช็อปละครทั้งหมด?",
    "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_en": "What are the names of the drama workshop groups with address in Feliciaberg city?",
    "question_th": "กลุ่มเวิร์คช็อปละครที่มีที่อยู่ในเมืองเฟลิเซียเบิร์กชื่ออะไร",
    "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_en": "What are the email addresses of the drama workshop groups with address in Alaska state?",
    "question_th": "ที่อยู่อีเมลของกลุ่มเวิร์คช็อปละครที่มีที่อยู่ในรัฐอลาสก้าคืออะไร?",
    "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_en": "Show all cities along with the number of drama workshop groups in each city.",
    "question_th": "แสดงเมืองทั้งหมดพร้อมจำนวนกลุ่มเวิร์คช็อปละครในแต่ละเมือง",
    "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_en": "What is the marketing region code that has the most drama workshop groups?",
    "question_th": "รหัสภูมิภาคการตลาดที่มีกลุ่มเวิร์คช็อปละครมากที่สุดคืออะไร?",
    "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_en": "Show all cities where at least one customer lives in but no performer lives in.",
    "question_th": "แสดงเมืองทั้งหมดที่มีลูกค้าอย่างน้อยหนึ่งรายอาศัยอยู่ แต่ไม่มีนักแสดงอาศัยอยู่",
    "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_en": "What is the most frequent status of bookings?",
    "question_th": "สถานะการจองบ่อยที่สุดคืออะไร?",
    "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_en": "What are the names of the workshop groups that have bookings with status code \"stop\"?",
    "question_th": "กลุ่มเวิร์กช็อปที่มีการจองด้วยรหัสสถานะ \"หยุด\" ชื่ออะไร",
    "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_en": "Show the names of all the clients with no booking.",
    "question_th": "แสดงชื่อลูกค้าทั้งหมดที่ไม่มีการจอง",
    "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_en": "What is the average quantities ordered with payment method code \"MasterCard\" on invoices?",
    "question_th": "ปริมาณเฉลี่ยที่สั่งซื้อด้วยรหัสวิธีการชำระเงิน \"MasterCard\" ในใบแจ้งหนี้คือเท่าใด",
    "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_en": "What is the product ID of the most frequently ordered item on invoices?",
    "question_th": "รหัสผลิตภัณฑ์ของสินค้าที่สั่งซื้อบ่อยที่สุดในใบแจ้งหนี้คืออะไร?",
    "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_en": "What is the description of the service type which offers both the photo product and the film product?",
    "question_th": "ประเภทบริการที่มีทั้งผลิตภัณฑ์ภาพถ่ายและผลิตภัณฑ์ฟิล์มมีคำอธิบายอะไรบ้าง?",
    "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_en": "How many bands are there?",
    "question_th": "มีกี่วงครับ?",
    "context": "CREATE TABLE Band (Id VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT label FROM Albums",
    "question_en": "What are all the labels?",
    "question_th": "มีป้ายทั้งหมดอะไรบ้าง?",
    "context": "CREATE TABLE Albums (label VARCHAR)"
  },
  {
    "answer": "SELECT * FROM Albums WHERE YEAR = 2012",
    "question_en": "Find all the albums in 2012.",
    "question_th": "ค้นหาอัลบั้มทั้งหมดในปี 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_en": "Find all the stage positions of the musicians with first name \"Solveig\"",
    "question_th": "ค้นหาตำแหน่งบนเวทีทั้งหมดของนักดนตรีชื่อ \"Solveig\"",
    "context": "CREATE TABLE Band (id VARCHAR); CREATE TABLE Performance (stageposition VARCHAR, bandmate VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Songs",
    "question_en": "How many songs are there?",
    "question_th": "มีกี่เพลงคะ?",
    "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_en": "Find all the songs performed by artist with last name \"Heilo\"",
    "question_th": "ค้นหาเพลงทั้งหมดที่แสดงโดยศิลปินที่มีนามสกุล \"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_en": "Hom many musicians performed in the song \"Flash\"?",
    "question_th": "นักดนตรีหลายคนแสดงในเพลง \"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_en": "Find all the songs produced by artists with first name \"Marianne\".",
    "question_th": "ค้นหาเพลงทั้งหมดที่ผลิตโดยศิลปินชื่อ \"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_en": "Who performed the song named \"Badlands\"? Show the first name and the last name.",
    "question_th": "ใครเป็นผู้แสดงเพลงชื่อ \"Badlands\"? แสดงชื่อและนามสกุล",
    "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_en": "Who is performing in the back stage position for the song \"Badlands\"? Show the first name and the last name.",
    "question_th": "ใครแสดงตำแหน่งหลังเวทีเพลง \"Badlands\" บ้าง? แสดงชื่อและนามสกุล",
    "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_en": "How many unique labels are there for albums?",
    "question_th": "มีค่ายเพลงที่ไม่ซ้ำกันกี่ค่ายสำหรับอัลบั้ม?",
    "context": "CREATE TABLE albums (label VARCHAR)"
  },
  {
    "answer": "SELECT label FROM albums GROUP BY label ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "What is the label that has the most albums?",
    "question_th": "ค่ายไหนมีอัลบั้มมากที่สุด?",
    "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_en": "What is the last name of the musician that have produced the most number of songs?",
    "question_th": "นักดนตรีที่มีผลงานเพลงมากที่สุดคือนามสกุลอะไร?",
    "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_en": "What is the last name of the musician that has been at the back position the most?",
    "question_th": "นักดนตรีที่อยู่ในตำแหน่งหลังสุดชื่ออะไร?",
    "context": "CREATE TABLE Band (lastname VARCHAR, id VARCHAR); CREATE TABLE Performance (bandmate VARCHAR)"
  },
  {
    "answer": "SELECT title FROM songs WHERE title LIKE '% the %'",
    "question_en": "Find all the songs whose name contains the word \"the\".",
    "question_th": "ค้นหาเพลงทั้งหมดที่มีชื่อมีคำว่า \"the\"",
    "context": "CREATE TABLE songs (title VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT instrument FROM Instruments",
    "question_en": "What are all the instruments used?",
    "question_th": "ใช้เครื่องมือทั้งหมดอะไรบ้าง?",
    "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_en": "What instrument did the musician with last name \"Heilo\" use in the song \"Le Pop\"?",
    "question_th": "นักดนตรีนามสกุล \"Heilo\" ใช้เครื่องดนตรีอะไรในเพลง \"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_en": "What is the most used instrument?",
    "question_th": "เครื่องดนตรีที่ใช้มากที่สุดคืออะไร?",
    "context": "CREATE TABLE instruments (instrument VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM instruments WHERE instrument = \"drums\"",
    "question_en": "How many songs have used the instrument \"drums\"?",
    "question_th": "มีกี่เพลงที่ใช้เครื่องดนตรี \"กลอง\"?",
    "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_en": "What instruments does the the song \"Le Pop\" use?",
    "question_th": "เพลง \"Le Pop\" ใช้เครื่องดนตรีอะไร?",
    "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_en": "How many instruments does the song \"Le Pop\" use?",
    "question_th": "เพลง \"Le Pop\" ใช้เครื่องดนตรีกี่เครื่อง?",
    "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_en": "How many instrument does the musician with last name \"Heilo\" use?",
    "question_th": "นักดนตรีที่มีนามสกุล \"ไฮโล\" ใช้เครื่องดนตรีกี่เครื่อง?",
    "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_en": "Find all the instruments ever used by the musician with last name \"Heilo\"?",
    "question_th": "ค้นหาเครื่องดนตรีทั้งหมดที่นักดนตรีนามสกุล \"ไฮโล\" เคยใช้?",
    "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_en": "Which song has the most vocals?",
    "question_th": "เพลงไหนมีเสียงร้องมากที่สุด?",
    "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_en": "Which vocal type is the most frequently appearring type?",
    "question_th": "ประเภทเสียงร้องใดเป็นประเภทที่ปรากฏบ่อยที่สุด?",
    "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_en": "Which vocal type has the band mate with last name \"Heilo\" played the most?",
    "question_th": "นักร้องประเภทไหนที่เพื่อนร่วมวงนามสกุล 'ไฮโล' เล่นบ่อยที่สุด?",
    "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_en": "What are the vocal types used in song \"Le Pop\"?",
    "question_th": "ประเภทของเสียงร้องที่ใช้ในเพลง \"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_en": "Find the number of vocal types used in song \"Demon Kitty Rag\"?",
    "question_th": "ค้นหาจำนวนประเภทเสียงร้องที่ใช้ในเพลง \"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_en": "How many songs have a lead vocal?",
    "question_th": "มีกี่เพลงที่มีนักร้องนำ?",
    "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_en": "Which vocal type did the musician with first name \"Solveig\" played in the song with title \"A Bar in Amsterdam\"?",
    "question_th": "นักดนตรีชื่อ \"Solveig\" ร้องเพลงประเภทใดในเพลงชื่อ \"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_en": "Find all the songs that do not have a lead vocal.",
    "question_th": "ค้นหาเพลงทั้งหมดที่ไม่มีเสียงร้องนำ",
    "context": "CREATE TABLE songs (title VARCHAR, songid VARCHAR); CREATE TABLE vocals (songid VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT TYPE FROM vocals",
    "question_en": "Find all the vocal types.",
    "question_th": "ค้นหาประเภทเสียงร้องทั้งหมด",
    "context": "CREATE TABLE vocals (TYPE VARCHAR)"
  },
  {
    "answer": "SELECT * FROM Albums WHERE YEAR = 2010",
    "question_en": "What are the albums produced in year 2010?",
    "question_th": "อัลบั้มอะไรที่ผลิตในปี 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_en": "Who performed the song named \"Le Pop\"?",
    "question_th": "ใครเป็นคนร้องเพลงชื่อ \"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_en": "What instrument did the musician with last name \"Heilo\" use in the song \"Badlands\"?",
    "question_th": "นักดนตรีนามสกุล \"Heilo\" ใช้เครื่องดนตรีอะไรในเพลง \"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_en": "How many instruments does the song \"Badlands\" use?",
    "question_th": "เพลง \"Badlands\" ใช้เครื่องดนตรีกี่เครื่อง?",
    "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_en": "What are the vocal types used in song \"Badlands\"?",
    "question_th": "ประเภทของเสียงร้องที่ใช้ในเพลง \"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_en": "Find the number of vocal types used in song \"Le Pop\"",
    "question_th": "หาจำนวนประเภทเสียงร้องที่ใช้ในเพลง \"เลอป็อป\"",
    "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_en": "How many songs have a shared vocal?",
    "question_th": "มีกี่เพลงที่มีเสียงร้องร่วมกัน?",
    "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_en": "Find all the songs that do not have a back vocal.",
    "question_th": "ค้นหาเพลงทั้งหมดที่ไม่มีเสียงร้องกลับ",
    "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_en": "Which vocal type has the band mate with first name \"Solveig\" played the most?",
    "question_th": "นักร้องประเภทไหนที่เพื่อนชื่อ “Solveig” เล่นมากที่สุด?",
    "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_en": "Which vocal type did the musician with last name \"Heilo\" played in the song with title \"Der Kapitan\"?",
    "question_th": "นักดนตรีนามสกุล \"Heilo\" เล่นเสียงประเภทใดในเพลงชื่อ \"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_en": "Find the first name of the band mate that has performed in most songs.",
    "question_th": "ค้นหาชื่อเพื่อนร่วมวงที่เคยแสดงในเพลงส่วนใหญ่",
    "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_en": "Which vocal type has the band mate with first name \"Marianne\" played the most?",
    "question_th": "นักร้องประเภทไหนที่เพื่อนชื่อ “มารีแอนน์” เล่นมากที่สุด?",
    "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_en": "Who is performing in the back stage position for the song \"Der Kapitan\"? Show the first name and last name.",
    "question_th": "ใครแสดงตำแหน่งหลังเวทีเพลง \"เดอร์ กะปิตัน\" บ้าง? แสดงชื่อและนามสกุล",
    "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_en": "What are the songs in album \"A Kiss Before You Go: Live in Hamburg\"?",
    "question_th": "เพลงในอัลบั้ม 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_en": "What are all the songs in albums under label \"Universal Music Group\"?",
    "question_th": "เพลงในอัลบั้มภายใต้ค่าย 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_en": "Find the number of songs in all the studio albums.",
    "question_th": "ค้นหาจำนวนเพลงในสตูดิโออัลบั้มทั้งหมด",
    "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_en": "Who is the founder of Sony?",
    "question_th": "ใครคือผู้ก่อตั้งโซนี่?",
    "context": "CREATE TABLE manufacturers (founder VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT headquarter FROM manufacturers WHERE founder = 'James'",
    "question_en": "Where is the headquarter of the company founded by James?",
    "question_th": "สำนักงานใหญ่ของบริษัทก่อตั้งโดยเจมส์อยู่ที่ไหน?",
    "context": "CREATE TABLE manufacturers (headquarter VARCHAR, founder VARCHAR)"
  },
  {
    "answer": "SELECT name, headquarter FROM manufacturers ORDER BY revenue DESC",
    "question_en": "Find all manufacturers' names and their headquarters, sorted by the ones with highest revenue first.",
    "question_th": "ค้นหาชื่อผู้ผลิตและสำนักงานใหญ่ทั้งหมด โดยจัดเรียงตามรายชื่อที่มีรายได้สูงสุดก่อน",
    "context": "CREATE TABLE manufacturers (name VARCHAR, headquarter VARCHAR, revenue VARCHAR)"
  },
  {
    "answer": "SELECT AVG(revenue), MAX(revenue), SUM(revenue) FROM manufacturers",
    "question_en": "What are the average, maximum and total revenues of all companies?",
    "question_th": "รายได้เฉลี่ย สูงสุด และรายได้รวมของบริษัททั้งหมดเป็นเท่าใด",
    "context": "CREATE TABLE manufacturers (revenue INTEGER)"
  },
  {
    "answer": "SELECT COUNT(*) FROM manufacturers WHERE founder = 'Andy'",
    "question_en": "How many companies were created by Andy?",
    "question_th": "Andy ก่อตั้งบริษัทกี่บริษัท?",
    "context": "CREATE TABLE manufacturers (founder VARCHAR)"
  },
  {
    "answer": "SELECT SUM(revenue) FROM manufacturers WHERE headquarter = 'Austin'",
    "question_en": "Find the total revenue created by the companies whose headquarter is located at Austin.",
    "question_th": "ค้นหารายได้ทั้งหมดที่สร้างโดยบริษัทที่มีสำนักงานใหญ่ตั้งอยู่ที่ออสติน",
    "context": "CREATE TABLE manufacturers (revenue INTEGER, headquarter VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT headquarter FROM manufacturers",
    "question_en": "What are the different cities listed?",
    "question_th": "เมืองต่างๆ ที่ระบุไว้มีอะไรบ้าง?",
    "context": "CREATE TABLE manufacturers (headquarter VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM manufacturers WHERE headquarter = 'Tokyo' OR headquarter = 'Beijing'",
    "question_en": "Find the number of manufactures that are based in Tokyo or Beijing.",
    "question_th": "ค้นหาจำนวนผู้ผลิตที่อยู่ในโตเกียวหรือปักกิ่ง",
    "context": "CREATE TABLE manufacturers (headquarter VARCHAR)"
  },
  {
    "answer": "SELECT founder FROM manufacturers WHERE name LIKE 'S%'",
    "question_en": "Find the founder of the company whose name begins with the letter 'S'.",
    "question_th": "ค้นหาผู้ก่อตั้งบริษัทที่ชื่อขึ้นต้นด้วยตัวอักษร 'S'",
    "context": "CREATE TABLE manufacturers (founder VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM manufacturers WHERE revenue BETWEEN 100 AND 150",
    "question_en": "Find the name of companies whose revenue is between 100 and 150.",
    "question_th": "ค้นหาชื่อบริษัทที่มีรายได้ระหว่าง 100 ถึง 150",
    "context": "CREATE TABLE manufacturers (name VARCHAR, revenue INTEGER)"
  },
  {
    "answer": "SELECT SUM(revenue) FROM manufacturers WHERE Headquarter = 'Tokyo' OR Headquarter = 'Taiwan'",
    "question_en": "What is the total revenue of all companies whose main office is at Tokyo or Taiwan?",
    "question_th": "รายได้รวมของบริษัททั้งหมดที่มีสำนักงานใหญ่อยู่ที่โตเกียวหรือไต้หวันเป็นเท่าใด",
    "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_en": "Find the name of product that is produced by both companies Creative Labs and Sony.",
    "question_th": "ค้นหาชื่อผลิตภัณฑ์ที่ผลิตโดยทั้งบริษัท Creative Labs และ 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_en": "Find the name, headquarter and founder of the manufacturer that has the highest revenue.",
    "question_th": "ค้นหาชื่อ สำนักงานใหญ่ และผู้ก่อตั้งผู้ผลิตที่มีรายได้สูงสุด",
    "context": "CREATE TABLE manufacturers (name VARCHAR, headquarter VARCHAR, founder VARCHAR, revenue VARCHAR)"
  },
  {
    "answer": "SELECT name, headquarter, revenue FROM manufacturers ORDER BY revenue DESC",
    "question_en": "Find the name, headquarter and revenue of all manufacturers sorted by their revenue in the descending order.",
    "question_th": "ค้นหาชื่อ สำนักงานใหญ่ และรายได้ของผู้ผลิตทั้งหมดโดยจัดเรียงตามรายได้จากมากไปน้อย",
    "context": "CREATE TABLE manufacturers (name VARCHAR, headquarter VARCHAR, revenue VARCHAR)"
  },
  {
    "answer": "SELECT name FROM manufacturers WHERE revenue > (SELECT AVG(revenue) FROM manufacturers)",
    "question_en": "Find the name of companies whose revenue is greater than the average revenue of all companies.",
    "question_th": "ค้นหาชื่อบริษัทที่มีรายได้มากกว่ารายได้เฉลี่ยของบริษัททั้งหมด",
    "context": "CREATE TABLE manufacturers (name VARCHAR, revenue INTEGER)"
  },
  {
    "answer": "SELECT name FROM manufacturers WHERE revenue < (SELECT MIN(revenue) FROM manufacturers WHERE headquarter = 'Austin')",
    "question_en": "Find the name of companies whose revenue is smaller than the revenue of all companies based in Austin.",
    "question_th": "ค้นหาชื่อบริษัทที่มีรายได้น้อยกว่ารายได้ของบริษัททั้งหมดที่อยู่ในออสติน",
    "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_en": "Find the total revenue of companies whose revenue is larger than the revenue of some companies based in Austin.",
    "question_th": "ค้นหารายได้รวมของบริษัทที่มีรายได้มากกว่ารายได้ของบริษัทบางแห่งในออสติน",
    "context": "CREATE TABLE manufacturers (revenue INTEGER, headquarter VARCHAR)"
  },
  {
    "answer": "SELECT SUM(revenue), founder FROM manufacturers GROUP BY founder",
    "question_en": "Find the total revenue of companies of each founder.",
    "question_th": "ค้นหารายได้รวมของบริษัทของผู้ก่อตั้งแต่ละคน",
    "context": "CREATE TABLE manufacturers (founder VARCHAR, revenue INTEGER)"
  },
  {
    "answer": "SELECT name, MAX(revenue), Headquarter FROM manufacturers GROUP BY Headquarter",
    "question_en": "Find the name and revenue of the company that earns the highest revenue in each city.",
    "question_th": "ค้นหาชื่อและรายได้ของบริษัทที่ทำรายได้สูงสุดในแต่ละเมือง",
    "context": "CREATE TABLE manufacturers (name VARCHAR, Headquarter VARCHAR, revenue INTEGER)"
  },
  {
    "answer": "SELECT SUM(revenue), name FROM manufacturers GROUP BY name",
    "question_en": "Find the total revenue for each manufacturer.",
    "question_th": "ค้นหารายได้รวมของผู้ผลิตแต่ละราย",
    "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_en": "Find the average prices of all products from each manufacture, and list each company's name.",
    "question_th": "ค้นหาราคาเฉลี่ยของผลิตภัณฑ์ทั้งหมดจากแต่ละผู้ผลิต และระบุชื่อบริษัทแต่ละแห่ง",
    "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_en": "Find the number of different products that are produced by companies at different headquarter cities.",
    "question_th": "ค้นหาจำนวนผลิตภัณฑ์ต่างๆ ที่ผลิตโดยบริษัทต่างๆ ในเมืองที่มีสำนักงานใหญ่ต่างๆ",
    "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_en": "Find number of products which Sony does not make.",
    "question_th": "ค้นหาจำนวนผลิตภัณฑ์ที่ Sony ไม่ได้ผลิต",
    "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_en": "Find the name of companies that do not make DVD drive.",
    "question_th": "ค้นหาชื่อบริษัทที่ไม่ผลิตดีวีดีไดรฟ์",
    "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_en": "Find the number of products for each manufacturer, showing the name of each company.",
    "question_th": "ค้นหาจำนวนผลิตภัณฑ์สำหรับผู้ผลิตแต่ละราย โดยแสดงชื่อของแต่ละบริษัท",
    "context": "CREATE TABLE products (Manufacturer VARCHAR); CREATE TABLE manufacturers (name VARCHAR, code VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM Products",
    "question_en": "Select the names of all the products in the store.",
    "question_th": "เลือกชื่อผลิตภัณฑ์ทั้งหมดในร้านค้า",
    "context": "CREATE TABLE Products (Name VARCHAR)"
  },
  {
    "answer": "SELECT name, price FROM products",
    "question_en": "Select the names and the prices of all the products in the store.",
    "question_th": "เลือกชื่อและราคาของผลิตภัณฑ์ทั้งหมดในร้านค้า",
    "context": "CREATE TABLE products (name VARCHAR, price VARCHAR)"
  },
  {
    "answer": "SELECT name FROM products WHERE price <= 200",
    "question_en": "Select the name of the products with a price less than or equal to $200.",
    "question_th": "เลือกชื่อผลิตภัณฑ์ที่มีราคาน้อยกว่าหรือเท่ากับ $200",
    "context": "CREATE TABLE products (name VARCHAR, price VARCHAR)"
  },
  {
    "answer": "SELECT * FROM products WHERE price BETWEEN 60 AND 120",
    "question_en": "Find all information of all the products with a price between $60 and $120.",
    "question_th": "ค้นหาข้อมูลทั้งหมดของผลิตภัณฑ์ทั้งหมดที่มีราคาระหว่าง $60 ถึง $120",
    "context": "CREATE TABLE products (price INTEGER)"
  },
  {
    "answer": "SELECT AVG(price) FROM products",
    "question_en": "Compute the average price of all the products.",
    "question_th": "คำนวณราคาเฉลี่ยของผลิตภัณฑ์ทั้งหมด",
    "context": "CREATE TABLE products (price INTEGER)"
  },
  {
    "answer": "SELECT AVG(price) FROM products WHERE Manufacturer = 2",
    "question_en": "Compute the average price of all products with manufacturer code equal to 2.",
    "question_th": "คำนวณราคาเฉลี่ยของผลิตภัณฑ์ทั้งหมดโดยมีรหัสผู้ผลิตเท่ากับ 2",
    "context": "CREATE TABLE products (price INTEGER, Manufacturer VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM products WHERE price >= 180",
    "question_en": "Compute the number of products with a price larger than or equal to $180.",
    "question_th": "คำนวณจำนวนผลิตภัณฑ์ที่มีราคามากกว่าหรือเท่ากับ 180 ดอลลาร์",
    "context": "CREATE TABLE products (price VARCHAR)"
  },
  {
    "answer": "SELECT name, price FROM products WHERE price >= 180 ORDER BY price DESC, name",
    "question_en": "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).",
    "question_th": "เลือกชื่อและราคาของผลิตภัณฑ์ทั้งหมดที่มีราคามากกว่าหรือเท่ากับ 180 ดอลลาร์ และเรียงลำดับตามราคาก่อน (ตามลำดับจากมากไปหาน้อย) จากนั้นตามด้วยชื่อ (ตามลำดับจากน้อยไปมาก)",
    "context": "CREATE TABLE products (name VARCHAR, price VARCHAR)"
  },
  {
    "answer": "SELECT * FROM products AS T1 JOIN Manufacturers AS T2 ON T1.manufacturer = T2.code",
    "question_en": "Select all the data from the products and each product's manufacturer.",
    "question_th": "เลือกข้อมูลทั้งหมดจากผลิตภัณฑ์และผู้ผลิตผลิตภัณฑ์แต่ละราย",
    "context": "CREATE TABLE products (manufacturer VARCHAR); CREATE TABLE Manufacturers (code VARCHAR)"
  },
  {
    "answer": "SELECT AVG(Price), Manufacturer FROM Products GROUP BY Manufacturer",
    "question_en": "Select the average price of each manufacturer's products, showing only the manufacturer's code.",
    "question_th": "เลือกราคาเฉลี่ยของผลิตภัณฑ์ของผู้ผลิตแต่ละราย โดยแสดงเฉพาะรหัสของผู้ผลิต",
    "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_en": "Select the average price of each manufacturer's products, showing the manufacturer's name.",
    "question_th": "เลือกราคาเฉลี่ยของผลิตภัณฑ์ของผู้ผลิตแต่ละรายโดยแสดงชื่อผู้ผลิต",
    "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_en": "Select the names of manufacturer whose products have an average price higher than or equal to $150.",
    "question_th": "เลือกชื่อผู้ผลิตที่มีผลิตภัณฑ์ซึ่งมีราคาเฉลี่ยสูงกว่าหรือเท่ากับ 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_en": "Select the name and price of the cheapest product.",
    "question_th": "เลือกชื่อและราคาของผลิตภัณฑ์ที่ถูกที่สุด",
    "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_en": "Select the name of each manufacturer along with the name and price of its most expensive product.",
    "question_th": "เลือกชื่อของผู้ผลิตแต่ละราย พร้อมด้วยชื่อและราคาของสินค้าที่แพงที่สุด",
    "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_en": "Select the code of the product that is cheapest in each product category.",
    "question_th": "เลือกรหัสสินค้าที่ถูกที่สุดในแต่ละหมวดหมู่สินค้า",
    "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_en": "What is the id of the problem log that is created most recently?",
    "question_th": "รหัสของบันทึกปัญหาที่สร้างขึ้นล่าสุดคืออะไร?",
    "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_en": "What is the oldest log id and its corresponding problem id?",
    "question_th": "รหัสบันทึกที่เก่าที่สุดและรหัสปัญหาที่เกี่ยวข้องคืออะไร",
    "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_en": "Find all the ids and dates of the logs for the problem whose id is 10.",
    "question_th": "ค้นหารหัสและวันที่ทั้งหมดของบันทึกสำหรับปัญหาที่มีรหัสเป็น 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_en": "List all the log ids and their descriptions from the problem logs.",
    "question_th": "แสดงรายการรหัสบันทึกทั้งหมดและคำอธิบายจากบันทึกปัญหา",
    "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_en": "List the first and last names of all distinct staff members who are assigned to the problem whose id is 1.",
    "question_th": "ระบุชื่อและนามสกุลของพนักงานที่แตกต่างกันทั้งหมดที่ได้รับมอบหมายให้แก้ไขปัญหาซึ่งมีรหัส 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_en": "List the problem id and log id which are assigned to the staff named Rylan Homenick.",
    "question_th": "ระบุรหัสปัญหาและรหัสบันทึกที่กำหนดให้กับเจ้าหน้าที่ชื่อ 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_en": "How many problems are there for product voluptatem?",
    "question_th": "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_en": "How many problems does the product with the most problems have? List the number of the problems and product name.",
    "question_th": "สินค้าที่มีปัญหามากที่สุดมีกี่ปัญหา? ระบุจำนวนปัญหาและชื่อผลิตภัณฑ์",
    "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_en": "Give me a list of descriptions of the problems that are reported by the staff whose first name is Christop.",
    "question_th": "ให้ฉันรายการคำอธิบายปัญหาที่เจ้าหน้าที่รายงานชื่อคริสตอป",
    "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_en": "Find the ids of the problems that are reported by the staff whose last name is Bosco.",
    "question_th": "ค้นหารหัสของปัญหาที่เจ้าหน้าที่รายงานซึ่งมีนามสกุล 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_en": "What are the ids of the problems which are reported after 1978-06-26?",
    "question_th": "รหัสของปัญหาที่รายงานหลังปี 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_en": "What are the ids of the problems which are reported before 1978-06-26?",
    "question_th": "รหัสของปัญหาที่รายงานก่อนวันที่ 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_en": "For each product which has problems, what are the number of problems and the product id?",
    "question_th": "สินค้าแต่ละชิ้นที่มีปัญหามีจำนวนปัญหาและรหัสสินค้าเท่าไร?",
    "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_en": "For each product that has problems, find the number of problems reported after 1986-11-13 and the product id?",
    "question_th": "สำหรับแต่ละผลิตภัณฑ์ที่มีปัญหา ให้ค้นหาจำนวนปัญหาที่รายงานหลังปี 1986-11-13 และรหัสผลิตภัณฑ์",
    "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_en": "List the names of all the distinct product names in alphabetical order?",
    "question_th": "แสดงรายการชื่อผลิตภัณฑ์ที่แตกต่างกันทั้งหมดตามลำดับตัวอักษรหรือไม่",
    "context": "CREATE TABLE product (product_name VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT product_name FROM product ORDER BY product_id",
    "question_en": "List all the distinct product names ordered by product id?",
    "question_th": "แสดงรายการชื่อผลิตภัณฑ์ที่แตกต่างกันทั้งหมดโดยเรียงลำดับตามรหัสผลิตภัณฑ์หรือไม่",
    "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_en": "What are the id of problems reported by the staff named Dameon Frami or Jolie Weber?",
    "question_th": "รหัสของปัญหาที่รายงานโดยเจ้าหน้าที่ชื่อ Dameon Frami หรือ 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_en": "What are the product ids for the problems reported by Christop Berge with closure authorised by Ashley Medhurst?",
    "question_th": "รหัสผลิตภัณฑ์สำหรับปัญหาที่รายงานโดย Christop Berge โดยได้รับอนุญาตจาก 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_en": "What are the ids of the problems reported before the date of any problem reported by Lysanne Turcotte?",
    "question_th": "รหัสของปัญหาที่รายงานก่อนวันที่มีปัญหาใด ๆ ที่รายงานโดย 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_en": "What are the ids of the problems reported after the date of any problems reported by Rylan Homenick?",
    "question_th": "รหัสของปัญหาที่รายงานหลังจากวันที่มีปัญหาใด ๆ ที่รายงานโดย 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_en": "Find the top 3 products which have the largest number of problems?",
    "question_th": "พบสินค้า 3 อันดับแรกที่มีปัญหาจำนวนมากที่สุด?",
    "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_en": "List the ids of the problems from the product \"voluptatem\" that are reported after 1995?",
    "question_th": "แสดงรายการรหัสของปัญหาจากผลิตภัณฑ์ \"voluptatem\" ที่รายงานหลังปี 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_en": "Find the first and last name of the staff members who reported problems from the product \"rem\" but not \"aut\"?",
    "question_th": "หาชื่อและนามสกุลพนักงานที่แจ้งปัญหาจากสินค้า \"rem\" แต่ไม่ใช่ \"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_en": "Find the products which have problems reported by both Lacey Bosco and Kenton Champlin?",
    "question_th": "ค้นหาผลิตภัณฑ์ที่มีปัญหารายงานโดยทั้ง Lacey Bosco และ 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_en": "How many branches where have more than average number of memberships are there?",
    "question_th": "มีกี่สาขาที่มีจำนวนสมาชิกมากกว่าค่าเฉลี่ย?",
    "context": "CREATE TABLE branch (membership_amount INTEGER)"
  },
  {
    "answer": "SELECT name, address_road, city FROM branch ORDER BY open_year",
    "question_en": "Show name, address road, and city for all branches sorted by open year.",
    "question_th": "แสดงชื่อ ที่อยู่ ถนน และเมือง ของสาขาทั้งหมด เรียงตามปีที่เปิด",
    "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_en": "What are names for top three branches with most number of membership?",
    "question_th": "สาขาสามอันดับแรกที่มีจำนวนสมาชิกมากที่สุดชื่ออะไร",
    "context": "CREATE TABLE branch (name VARCHAR, membership_amount VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT city FROM branch WHERE membership_amount >= 100",
    "question_en": "Show all distinct city where branches with at least 100 memberships are located.",
    "question_th": "แสดงเมืองที่แตกต่างกันทั้งหมดซึ่งมีสาขาที่มีสมาชิกอย่างน้อย 100 ราย",
    "context": "CREATE TABLE branch (city VARCHAR, membership_amount VARCHAR)"
  },
  {
    "answer": "SELECT open_year FROM branch GROUP BY open_year HAVING COUNT(*) >= 2",
    "question_en": "List all open years when at least two shops are opened.",
    "question_th": "ระบุปีที่เปิดทำการทั้งหมดเมื่อมีการเปิดร้านอย่างน้อย 2 แห่ง",
    "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_en": "Show minimum and maximum amount of memberships for all branches opened in 2011 or located at city London.",
    "question_th": "แสดงจำนวนสมาชิกขั้นต่ำและสูงสุดสำหรับทุกสาขาที่เปิดในปี 2554 หรือตั้งอยู่ที่เมืองลอนดอน",
    "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_en": "Show the city and the number of branches opened before 2010 for each city.",
    "question_th": "แสดงเมืองและจำนวนสาขาที่เปิดก่อนปี 2010 สำหรับแต่ละเมือง",
    "context": "CREATE TABLE branch (city VARCHAR, open_year INTEGER)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT LEVEL) FROM member",
    "question_en": "How many different levels do members have?",
    "question_th": "สมาชิกมีกี่ระดับที่แตกต่างกัน?",
    "context": "CREATE TABLE member (LEVEL VARCHAR)"
  },
  {
    "answer": "SELECT card_number, name, hometown FROM member ORDER BY LEVEL DESC",
    "question_en": "Show card number, name, and hometown for all members in a descending order of level.",
    "question_th": "แสดงหมายเลขบัตร ชื่อ และบ้านเกิดของสมาชิกทุกคนตามลำดับระดับจากมากไปหาน้อย",
    "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_en": "Show the membership level with most number of members.",
    "question_th": "แสดงระดับสมาชิกที่มีจำนวนสมาชิกมากที่สุด",
    "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_en": "Show all member names and registered branch names sorted by register year.",
    "question_th": "แสดงชื่อสมาชิกและชื่อสาขาที่จดทะเบียนทั้งหมด เรียงตามปีที่จดทะเบียน",
    "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_en": "Show all branch names with the number of members in each branch registered after 2015.",
    "question_th": "แสดงชื่อสาขาทั้งหมดพร้อมจำนวนสมาชิกในแต่ละสาขาที่ลงทะเบียนหลังปี 2558",
    "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_en": "Show member names without any registered branch.",
    "question_th": "แสดงชื่อสมาชิกที่ไม่มีสาขาที่ลงทะเบียน",
    "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_en": "List the branch name and city without any registered members.",
    "question_th": "ระบุชื่อสาขาและเมืองที่ไม่มีสมาชิกลงทะเบียน",
    "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_en": "What is the name and open year for the branch with most number of memberships registered in 2016?",
    "question_th": "ชื่อและปีที่เปิดให้บริการของสาขาที่มีจำนวนสมาชิกลงทะเบียนมากที่สุดในปี 2559 คืออะไร?",
    "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_en": "Show the member name and hometown who registered a branch in 2016.",
    "question_th": "แสดงชื่อสมาชิกและบ้านเกิดที่จดทะเบียนสาขาในปี 2559",
    "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_en": "Show all city with a branch opened in 2001 and a branch with more than 100 membership.",
    "question_th": "แสดงทุกเมืองที่มีสาขาเปิดในปี 2544 และสาขาที่มีสมาชิกมากกว่า 100 ราย",
    "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_en": "Show all cities without a branch having more than 100 memberships.",
    "question_th": "แสดงเมืองทั้งหมดที่ไม่มีสาขาที่มีสมาชิกมากกว่า 100 ราย",
    "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_en": "What is the sum of total pounds of purchase in year 2018 for all branches in London?",
    "question_th": "ยอดรวมของการซื้อในปี 2561 สำหรับทุกสาขาในลอนดอนเป็นเท่าใด",
    "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_en": "What is the total number of purchases for members with level 6?",
    "question_th": "จำนวนการซื้อทั้งหมดสำหรับสมาชิกที่มีเลเวล 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_en": "Find the name of branches where have some members whose hometown is in Louisville, Kentucky and some in Hiram, Georgia.",
    "question_th": "ค้นหาชื่อสาขาที่มีสมาชิกบางคนซึ่งมีบ้านเกิดอยู่ที่เมืองหลุยส์วิลล์ รัฐเคนตักกี้ และบางแห่งในเมืองไฮรัม รัฐจอร์เจีย",
    "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_en": "list the card number of all members whose hometown address includes word \"Kentucky\".",
    "question_th": "ระบุหมายเลขบัตรของสมาชิกทุกคนที่มีที่อยู่บ้านเกิดมีคำว่า \"เคนตักกี้\"",
    "context": "CREATE TABLE member (card_number VARCHAR, Hometown VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM STUDENT",
    "question_en": "Find the number of students in total.",
    "question_th": "ค้นหาจำนวนนักเรียนทั้งหมด",
    "context": "CREATE TABLE STUDENT (Id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM VOTING_RECORD",
    "question_en": "Find the number of voting records in total.",
    "question_th": "ค้นหาจำนวนบันทึกการลงคะแนนเสียงทั้งหมด",
    "context": "CREATE TABLE VOTING_RECORD (Id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT President_Vote) FROM VOTING_RECORD",
    "question_en": "Find the distinct number of president votes.",
    "question_th": "ค้นหาจำนวนคะแนนเสียงของประธานาธิบดีที่ชัดเจน",
    "context": "CREATE TABLE VOTING_RECORD (President_Vote VARCHAR)"
  },
  {
    "answer": "SELECT MAX(Age) FROM STUDENT",
    "question_en": "Find the maximum age of all the students.",
    "question_th": "ค้นหาอายุสูงสุดของนักเรียนทุกคน",
    "context": "CREATE TABLE STUDENT (Age INTEGER)"
  },
  {
    "answer": "SELECT LName FROM STUDENT WHERE Major = 50",
    "question_en": "Find the last names of students with major 50.",
    "question_th": "ค้นหานามสกุลของนักศึกษาที่มีวิชาเอก 50",
    "context": "CREATE TABLE STUDENT (LName VARCHAR, Major VARCHAR)"
  },
  {
    "answer": "SELECT Fname FROM STUDENT WHERE Age > 22",
    "question_en": "Find the first names of students with age above 22.",
    "question_th": "ค้นหารายชื่อนักเรียนที่มีอายุ 22 ปีขึ้นไป",
    "context": "CREATE TABLE STUDENT (Fname VARCHAR, Age INTEGER)"
  },
  {
    "answer": "SELECT Major FROM STUDENT WHERE Sex = \"M\"",
    "question_en": "What are the majors of male (sex is M) students?",
    "question_th": "นักเรียนชาย (เพศ M) สาขาวิชาเอกอะไรบ้าง?",
    "context": "CREATE TABLE STUDENT (Major VARCHAR, Sex VARCHAR)"
  },
  {
    "answer": "SELECT AVG(Age) FROM STUDENT WHERE Sex = \"F\"",
    "question_en": "What is the average age of female (sex is F) students?",
    "question_th": "นักเรียนหญิง (เพศ F) มีอายุเฉลี่ยเท่าใด",
    "context": "CREATE TABLE STUDENT (Age INTEGER, Sex VARCHAR)"
  },
  {
    "answer": "SELECT MAX(Age), MIN(Age) FROM STUDENT WHERE Major = 600",
    "question_en": "What are the maximum and minimum age of students with major 600?",
    "question_th": "นักเรียนที่มีวิชาเอก 600 อายุสูงสุดและขั้นต่ำคือเท่าใด",
    "context": "CREATE TABLE STUDENT (Age INTEGER, Major VARCHAR)"
  },
  {
    "answer": "SELECT Advisor FROM STUDENT WHERE city_code = \"BAL\"",
    "question_en": "Who are the advisors for students that live in a city with city code \"BAL\"?",
    "question_th": "ใครคือที่ปรึกษาสำหรับนักศึกษาที่อาศัยอยู่ในเมืองที่มีรหัสเมือง \"BAL\"?",
    "context": "CREATE TABLE STUDENT (Advisor VARCHAR, city_code VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT Secretary_Vote FROM VOTING_RECORD WHERE ELECTION_CYCLE = \"Fall\"",
    "question_en": "What are the distinct secretary votes in the fall election cycle?",
    "question_th": "คะแนนเสียงของเลขานุการที่ชัดเจนในรอบการเลือกตั้งฤดูใบไม้ร่วงคืออะไร?",
    "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_en": "What are the distinct president votes on 08/30/2015?",
    "question_th": "การลงคะแนนเสียงของประธานาธิบดีที่แตกต่างกันในวันที่ 30/08/2558 คืออะไร",
    "context": "CREATE TABLE VOTING_RECORD (PRESIDENT_Vote VARCHAR, Registration_Date VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT Registration_Date, Election_Cycle FROM VOTING_RECORD",
    "question_en": "Report the distinct registration date and the election cycle.",
    "question_th": "รายงานวันลงทะเบียนที่ชัดเจนและรอบการเลือกตั้ง",
    "context": "CREATE TABLE VOTING_RECORD (Registration_Date VARCHAR, Election_Cycle VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT President_Vote, VICE_President_Vote FROM VOTING_RECORD",
    "question_en": "Report the distinct president vote and the vice president vote.",
    "question_th": "รายงานการลงคะแนนเสียงของประธานาธิบดีและการลงคะแนนเสียงของรองประธานาธิบดี",
    "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_en": "Find the distinct last names of the students who have class president votes.",
    "question_th": "ค้นหานามสกุลที่ชัดเจนของนักเรียนที่ได้รับการโหวตจากประธานชั้นเรียน",
    "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_en": "Find the distinct first names of the students who have class senator votes.",
    "question_th": "ค้นหาชื่อที่ชัดเจนของนักเรียนที่ได้รับการโหวตจากสมาชิกวุฒิสภา",
    "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_en": "Find the distinct ages of students who have secretary votes in the fall election cycle.",
    "question_th": "ค้นหาอายุที่แตกต่างกันของนักเรียนที่ได้รับการลงคะแนนเสียงเป็นเลขานุการในรอบการเลือกตั้งในช่วงฤดูใบไม้ร่วง",
    "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_en": "Find the distinct Advisor of students who have treasurer votes in the spring election cycle.",
    "question_th": "ค้นหาที่ปรึกษาที่ชัดเจนของนักเรียนที่ได้รับการโหวตจากเหรัญญิกในรอบการเลือกตั้งฤดูใบไม้ผลิ",
    "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_en": "Find the distinct majors of students who have treasurer votes.",
    "question_th": "ค้นหาสาขาวิชาเอกที่แตกต่างกันของนักศึกษาที่ได้รับการโหวตจากเหรัญญิก",
    "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_en": "Find the first and last names of all the female (sex is F) students who have president votes.",
    "question_th": "ค้นหาชื่อและนามสกุลของนักเรียนหญิงทุกคน (เพศคือ F) ที่ได้รับการโหวตจากประธานาธิบดี",
    "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_en": "Find the first and last name of all the students of age 18 who have vice president votes.",
    "question_th": "ค้นหาชื่อและนามสกุลของนักเรียนทุกคนที่มีอายุ 18 ปีที่ได้รับการโหวตเป็นรองประธานาธิบดี",
    "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_en": "How many male (sex is M) students have class senator votes in the fall election cycle?",
    "question_th": "นักเรียนชาย (เพศ M) จำนวนกี่คนที่ได้รับคะแนนเสียงจากสมาชิกวุฒิสภาในรอบการเลือกตั้งฤดูใบไม้ร่วง",
    "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_en": "Find the number of students whose city code is NYC and who have class senator votes in the spring election cycle.",
    "question_th": "ค้นหาจำนวนนักเรียนที่มีรหัสเมืองคือ NYC และผู้ที่มีคะแนนเสียงของสมาชิกวุฒิสภาในรอบการเลือกตั้งฤดูใบไม้ผลิ",
    "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_en": "Find the average age of students who live in the city with code \"NYC\" and have secretary votes in the spring election cycle.",
    "question_th": "ค้นหาอายุเฉลี่ยของนักเรียนที่อาศัยอยู่ในเมืองด้วยรหัส \"NYC\" และมีคะแนนเสียงเป็นเลขานุการในรอบการเลือกตั้งฤดูใบไม้ผลิ",
    "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_en": "Find the average age of female (sex is F) students who have secretary votes in the spring election cycle.",
    "question_th": "ค้นหาอายุเฉลี่ยของนักเรียนหญิง (เพศ F) ที่ได้รับการลงคะแนนเสียงเป็นเลขานุการในรอบการเลือกตั้งฤดูใบไม้ผลิ",
    "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_en": "Find the distinct first names of all the students who have vice president votes and whose city code is not PIT.",
    "question_th": "ค้นหาชื่อที่ชัดเจนของนักเรียนทุกคนที่ได้รับการโหวตจากรองประธานและรหัสเมืองไม่ใช่ 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_en": "Find the distinct last names of all the students who have president votes and whose advisor is not 2192.",
    "question_th": "ค้นหานามสกุลที่ชัดเจนของนักเรียนทุกคนที่ได้รับการโหวตจากประธานาธิบดีและที่ปรึกษาไม่ใช่ 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_en": "Find the distinct last names of all the students who have president votes and whose advisor is 8741.",
    "question_th": "ค้นหานามสกุลที่ชัดเจนของนักเรียนทุกคนที่ได้รับการโหวตจากประธานาธิบดีและมีที่ปรึกษาคือ 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_en": "For each advisor, report the total number of students advised by him or her.",
    "question_th": "สำหรับอาจารย์ที่ปรึกษาแต่ละคน ให้รายงานจำนวนนักเรียนทั้งหมดที่ได้รับการแนะนำจากอาจารย์ที่ปรึกษา",
    "context": "CREATE TABLE STUDENT (Advisor VARCHAR)"
  },
  {
    "answer": "SELECT Advisor FROM STUDENT GROUP BY Advisor HAVING COUNT(*) > 2",
    "question_en": "Report all advisors that advise more than 2 students.",
    "question_th": "รายงานอาจารย์ที่ปรึกษาทั้งหมดที่ให้คำแนะนำนักเรียนมากกว่า 2 คน",
    "context": "CREATE TABLE STUDENT (Advisor VARCHAR)"
  },
  {
    "answer": "SELECT Major FROM STUDENT GROUP BY Major HAVING COUNT(*) < 3",
    "question_en": "Report all majors that have less than 3 students.",
    "question_th": "รายงานสาขาวิชาเอกที่มีนักศึกษาน้อยกว่า 3 คน",
    "context": "CREATE TABLE STUDENT (Major VARCHAR)"
  },
  {
    "answer": "SELECT Election_Cycle, COUNT(*) FROM VOTING_RECORD GROUP BY Election_Cycle",
    "question_en": "For each election cycle, report the number of voting records.",
    "question_th": "ในแต่ละรอบการเลือกตั้งให้รายงานจำนวนบันทึกการลงคะแนนเสียง",
    "context": "CREATE TABLE VOTING_RECORD (Election_Cycle VARCHAR)"
  },
  {
    "answer": "SELECT Major FROM STUDENT GROUP BY major ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "Which major has the most students?",
    "question_th": "สาขาวิชาใดมีนักศึกษามากที่สุด?",
    "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_en": "What is the most common major among female (sex is F) students?",
    "question_th": "วิชาเอกที่พบมากที่สุดในหมู่นักเรียนหญิง (เพศคือ F) คืออะไร?",
    "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_en": "What is the city_code of the city that the most students live in?",
    "question_th": "city_code ของเมืองที่นักเรียนอาศัยอยู่มากที่สุดคืออะไร?",
    "context": "CREATE TABLE STUDENT (city_code VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM products",
    "question_en": "How many products are there?",
    "question_th": "สินค้ามีกี่รายการคะ?",
    "context": "CREATE TABLE products (Id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM ref_colors",
    "question_en": "How many colors are there?",
    "question_th": "มีกี่สี?",
    "context": "CREATE TABLE ref_colors (Id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM CHARACTERISTICS",
    "question_en": "How many characteristics are there?",
    "question_th": "มีกี่ลักษณะ?",
    "context": "CREATE TABLE CHARACTERISTICS (Id VARCHAR)"
  },
  {
    "answer": "SELECT product_name, typical_buying_price FROM products",
    "question_en": "What are the names and buying prices of all the products?",
    "question_th": "ชื่อและราคาซื้อของผลิตภัณฑ์ทั้งหมดคืออะไร?",
    "context": "CREATE TABLE products (product_name VARCHAR, typical_buying_price VARCHAR)"
  },
  {
    "answer": "SELECT color_description FROM ref_colors",
    "question_en": "List the description of all the colors.",
    "question_th": "ระบุคำอธิบายของสีทั้งหมด",
    "context": "CREATE TABLE ref_colors (color_description VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT characteristic_name FROM CHARACTERISTICS",
    "question_en": "Find the names of all the product characteristics.",
    "question_th": "ค้นหาชื่อคุณลักษณะของผลิตภัณฑ์ทั้งหมด",
    "context": "CREATE TABLE CHARACTERISTICS (characteristic_name VARCHAR)"
  },
  {
    "answer": "SELECT product_name FROM products WHERE product_category_code = \"Spices\"",
    "question_en": "What are the names of products with category \"Spices\"?",
    "question_th": "สินค้าที่อยู่ในหมวดหมู่ \"เครื่องเทศ\" มีชื่อว่าอะไร?",
    "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_en": "List the names, color descriptions and product descriptions of products with category \"Herbs\".",
    "question_th": "ระบุชื่อ คำอธิบายสี และคำอธิบายผลิตภัณฑ์ของผลิตภัณฑ์ในหมวด \"สมุนไพร\"",
    "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_en": "How many products are there under the category \"Seeds\"?",
    "question_th": "สินค้าที่อยู่ในหมวด \"เมล็ดพันธุ์\" มีกี่รายการ?",
    "context": "CREATE TABLE products (product_category_code VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM products WHERE product_category_code = \"Spices\" AND typical_buying_price > 1000",
    "question_en": "Find the number of products with category \"Spices\" and typically sold above 1000.",
    "question_th": "ค้นหาจำนวนผลิตภัณฑ์ที่มีหมวดหมู่ \"เครื่องเทศ\" และโดยทั่วไปขายเกิน 1,000 รายการ",
    "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_en": "What is the category and typical buying price  of the product with name \"cumin\"?",
    "question_th": "ประเภทและราคาซื้อทั่วไปของผลิตภัณฑ์ชื่อ \"ยี่หร่า\" คืออะไร?",
    "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_en": "Which category does the product named \"flax\" belong to?",
    "question_th": "สินค้าชื่อ \"ผ้าลินิน\" อยู่ในหมวดหมู่ใด",
    "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_en": "What is the name of the product with the color description 'yellow'?",
    "question_th": "สินค้าชื่ออะไรคะ สี 'สีเหลือง' คะ?",
    "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_en": "Find the category descriptions of the products whose descriptions include letter 't'.",
    "question_th": "ค้นหาคำอธิบายหมวดหมู่ของผลิตภัณฑ์ที่มีคำอธิบายประกอบด้วยตัวอักษร '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_en": "What is the color description of the product with name \"catnip\"?",
    "question_th": "รายละเอียดสินค้าชื่อ \"แคทนิป\" มีสีอะไรบ้าง?",
    "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_en": "What is the color code and description of the product named \"chervil\"?",
    "question_th": "รหัสสีและคำอธิบายของผลิตภัณฑ์ชื่อ \"เชอร์วิล\" คืออะไร?",
    "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_en": "Find the id and color description of the products with at least 2 characteristics.",
    "question_th": "ค้นหารหัสและคำอธิบายสีของผลิตภัณฑ์ที่มีคุณสมบัติอย่างน้อย 2 อย่าง",
    "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_en": "List all the product names with the color description \"white\".",
    "question_th": "ระบุชื่อผลิตภัณฑ์ทั้งหมดพร้อมคำอธิบายสี \"สีขาว\"",
    "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_en": "What are the name and typical buying and selling prices of the products that have color described as \"yellow\"?",
    "question_th": "ชื่อและราคาซื้อโดยทั่วไปของผลิตภัณฑ์ที่มีสีเรียกว่า \"สีเหลือง\" คืออะไร?",
    "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_en": "How many characteristics does the product named \"sesame\" have?",
    "question_th": "ผลิตภัณฑ์ชื่อ \"งาดำ\" มีคุณสมบัติกี่ประการ?",
    "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_en": "How many distinct characteristic names does the product \"cumin\" have?",
    "question_th": "ผลิตภัณฑ์ \"ยี่หร่า\" มีลักษณะเฉพาะที่แตกต่างกันกี่ชื่อ?",
    "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_en": "What are all the characteristic names of product \"sesame\"?",
    "question_th": "ชื่อลักษณะเฉพาะของผลิตภัณฑ์ \"งา\" คืออะไร?",
    "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_en": "List all the characteristic names and data types of product \"cumin\".",
    "question_th": "แสดงรายการชื่อคุณลักษณะและประเภทข้อมูลทั้งหมดของผลิตภัณฑ์ \"ยี่หร่า\"",
    "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_en": "List all characteristics of product named \"sesame\" with type code \"Grade\".",
    "question_th": "แสดงคุณลักษณะทั้งหมดของผลิตภัณฑ์ชื่อ \"งา\" พร้อมรหัสประเภท \"เกรด\"",
    "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_en": "How many characteristics does the product named \"laurel\" have?",
    "question_th": "สินค้าชื่อ \"ลอเรล\" มีคุณสมบัติกี่ประการ?",
    "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_en": "Find the number of characteristics that the product \"flax\" has.",
    "question_th": "ค้นหาจำนวนคุณลักษณะที่ผลิตภัณฑ์ \"ผ้าลินิน\" มี",
    "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_en": "Find the name of the products that have the color description \"red\" and have the characteristic name \"fast\".",
    "question_th": "ค้นหาชื่อผลิตภัณฑ์ที่มีคำอธิบายสี \"สีแดง\" และมีลักษณะชื่อ \"เร็ว\"",
    "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_en": "How many products have the characteristic named \"hot\"?",
    "question_th": "มีสินค้ากี่ตัวที่มีลักษณะที่เรียกว่า “ฮอต”?",
    "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_en": "List the all the distinct names of the products with the characteristic name 'warm'.",
    "question_th": "ระบุชื่อที่แตกต่างกันทั้งหมดของผลิตภัณฑ์ด้วยชื่อลักษณะเฉพาะ 'อบอุ่น'",
    "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_en": "Find the number of the products that have their color described as \"red\" and have a characteristic named \"slow\".",
    "question_th": "ค้นหาหมายเลขของผลิตภัณฑ์ที่มีสีเป็น \"สีแดง\" และมีลักษณะที่เรียกว่า \"ช้า\"",
    "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_en": "Count the products that have the color description \"white\" or have the characteristic name \"hot\".",
    "question_th": "นับสินค้าที่มีคำอธิบายสี \"สีขาว\" หรือมีลักษณะชื่อ \"ร้อน\"",
    "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_en": "What is the unit of measuerment of the product category code \"Herbs\"?",
    "question_th": "รหัสหมวดหมู่สินค้า “สมุนไพร” มีหน่วยวัดว่าข้อใด",
    "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_en": "Find the product category description of the product category with code \"Spices\".",
    "question_th": "ค้นหาคำอธิบายหมวดหมู่ผลิตภัณฑ์ของหมวดหมู่ผลิตภัณฑ์ด้วยรหัส \"เครื่องเทศ\"",
    "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_en": "What is the product category description and unit of measurement of category \"Herbs\"?",
    "question_th": "คำอธิบายหมวดหมู่ผลิตภัณฑ์และหน่วยวัดของหมวดหมู่ \"สมุนไพร\" คืออะไร?",
    "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_en": "What is the unit of measurement of product named \"cumin\"?",
    "question_th": "ผลิตภัณฑ์ชื่อ \"ยี่หร่า\" มีหน่วยวัดเป็นข้อใด",
    "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_en": "Find the unit of measurement and product category code of product named \"chervil\".",
    "question_th": "ค้นหาหน่วยวัดและรหัสหมวดหมู่สินค้าของผลิตภัณฑ์ชื่อ \"เชอร์วิล\"",
    "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_en": "Find the product names that are colored 'white' but do not have unit of measurement \"Handful\".",
    "question_th": "ค้นหาชื่อผลิตภัณฑ์ที่มีสี 'สีขาว' แต่ไม่มีหน่วยวัด \"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_en": "What is the description of the color for most products?",
    "question_th": "คำอธิบายของสีสำหรับผลิตภัณฑ์ส่วนใหญ่คืออะไร?",
    "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_en": "What is the description of the color used by least products?",
    "question_th": "คำอธิบายของสีที่ใช้โดยผลิตภัณฑ์น้อยที่สุดคืออะไร?",
    "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_en": "What is the characteristic name used by most number of the products?",
    "question_th": "ชื่อลักษณะเฉพาะที่ใช้โดยผลิตภัณฑ์ส่วนใหญ่คืออะไร?",
    "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_en": "What are the names, details and data types of the characteristics which are never used by any product?",
    "question_th": "ชื่อ รายละเอียด และประเภทข้อมูลของคุณลักษณะที่ผลิตภัณฑ์ใดไม่เคยใช้มีอะไรบ้าง",
    "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_en": "What are characteristic names used at least twice across all products?",
    "question_th": "ชื่อลักษณะเฉพาะที่ใช้อย่างน้อยสองครั้งกับผลิตภัณฑ์ทั้งหมดคืออะไร",
    "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_en": "How many colors are never used by any product?",
    "question_th": "สินค้าไม่เคยใช้กี่สี?",
    "context": "CREATE TABLE products (color_code VARCHAR); CREATE TABLE Ref_colors (color_code VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM event",
    "question_en": "How many events are there?",
    "question_th": "มีกี่เหตุการณ์?",
    "context": "CREATE TABLE event (Id VARCHAR)"
  },
  {
    "answer": "SELECT name FROM event ORDER BY YEAR DESC",
    "question_en": "List all the event names by year from the most recent to the oldest.",
    "question_th": "รายชื่อเหตุการณ์ทั้งหมดตามปีจากล่าสุดไปหาเก่าที่สุด",
    "context": "CREATE TABLE event (name VARCHAR, YEAR VARCHAR)"
  },
  {
    "answer": "SELECT name FROM event ORDER BY YEAR DESC LIMIT 1",
    "question_en": "What is the name of the event that happened in the most recent year?",
    "question_th": "เหตุการณ์ที่เกิดขึ้นในปีที่ผ่านมาชื่ออะไร?",
    "context": "CREATE TABLE event (name VARCHAR, YEAR VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM stadium",
    "question_en": "How many stadiums are there?",
    "question_th": "มีสนามกีฬากี่แห่ง?",
    "context": "CREATE TABLE stadium (Id VARCHAR)"
  },
  {
    "answer": "SELECT name FROM stadium ORDER BY capacity DESC LIMIT 1",
    "question_en": "Find the name of the stadium that has the maximum capacity.",
    "question_th": "ค้นหาชื่อสนามที่มีความจุสูงสุด",
    "context": "CREATE TABLE stadium (name VARCHAR, capacity VARCHAR)"
  },
  {
    "answer": "SELECT name FROM stadium WHERE capacity < (SELECT AVG(capacity) FROM stadium)",
    "question_en": "Find the names of stadiums whose capacity is smaller than the average capacity.",
    "question_th": "ค้นหาชื่อสนามกีฬาที่มีความจุน้อยกว่าความจุเฉลี่ย",
    "context": "CREATE TABLE stadium (name VARCHAR, capacity INTEGER)"
  },
  {
    "answer": "SELECT country FROM stadium GROUP BY country ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "Find the country that has the most stadiums.",
    "question_th": "ค้นหาประเทศที่มีสนามกีฬามากที่สุด",
    "context": "CREATE TABLE stadium (country VARCHAR)"
  },
  {
    "answer": "SELECT country FROM stadium GROUP BY country HAVING COUNT(*) <= 3",
    "question_en": "Which country has at most 3 stadiums listed?",
    "question_th": "ประเทศใดมีสนามกีฬามากที่สุด 3 แห่ง?",
    "context": "CREATE TABLE stadium (country VARCHAR)"
  },
  {
    "answer": "SELECT country FROM stadium WHERE capacity > 60000 INTERSECT SELECT country FROM stadium WHERE capacity < 50000",
    "question_en": "Which country has both stadiums with capacity greater than 60000 and stadiums with capacity less than 50000?",
    "question_th": "ประเทศใดที่มีทั้งสนามกีฬาที่มีความจุมากกว่า 60000 และสนามกีฬาที่มีความจุน้อยกว่า 50000",
    "context": "CREATE TABLE stadium (country VARCHAR, capacity INTEGER)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT city) FROM stadium WHERE opening_year < 2006",
    "question_en": "How many cities have a stadium that was opened before the year of 2006?",
    "question_th": "มีกี่เมืองที่มีสนามกีฬาที่เปิดก่อนปี 2549",
    "context": "CREATE TABLE stadium (city VARCHAR, opening_year INTEGER)"
  },
  {
    "answer": "SELECT country, COUNT(*) FROM stadium GROUP BY country",
    "question_en": "How many stadiums does each country have?",
    "question_th": "แต่ละประเทศมีสนามกีฬากี่แห่ง?",
    "context": "CREATE TABLE stadium (country VARCHAR)"
  },
  {
    "answer": "SELECT country FROM stadium EXCEPT SELECT country FROM stadium WHERE opening_year > 2006",
    "question_en": "Which countries do not have a stadium that was opened after 2006?",
    "question_th": "ประเทศใดบ้างที่ไม่มีสนามกีฬาที่เปิดหลังปี 2549",
    "context": "CREATE TABLE stadium (country VARCHAR, opening_year INTEGER)"
  },
  {
    "answer": "SELECT COUNT(*) FROM stadium WHERE country <> 'Russia'",
    "question_en": "How many stadiums are not in country \"Russia\"?",
    "question_th": "มีกี่สนามกีฬาที่ไม่ได้อยู่ในประเทศ \"รัสเซีย\"?",
    "context": "CREATE TABLE stadium (country VARCHAR)"
  },
  {
    "answer": "SELECT name FROM swimmer ORDER BY meter_100",
    "question_en": "Find the names of all swimmers, sorted by their 100 meter scores in ascending order.",
    "question_th": "ค้นหาชื่อนักว่ายน้ำทั้งหมด เรียงตามคะแนน 100 เมตรตามลำดับจากน้อยไปหามาก",
    "context": "CREATE TABLE swimmer (name VARCHAR, meter_100 VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT nationality) FROM swimmer",
    "question_en": "How many different countries are all the swimmers from?",
    "question_th": "นักว่ายน้ำทั้งหมดมาจากกี่ประเทศ?",
    "context": "CREATE TABLE swimmer (nationality VARCHAR)"
  },
  {
    "answer": "SELECT nationality, COUNT(*) FROM swimmer GROUP BY nationality HAVING COUNT(*) > 1",
    "question_en": "List countries that have more than one swimmer.",
    "question_th": "รายชื่อประเทศที่มีนักว่ายน้ำมากกว่าหนึ่งคน",
    "context": "CREATE TABLE swimmer (nationality VARCHAR)"
  },
  {
    "answer": "SELECT meter_200, meter_300 FROM swimmer WHERE nationality = 'Australia'",
    "question_en": "Find all 200 meter and 300 meter results of swimmers with nationality \"Australia\".",
    "question_th": "พบนักว่ายน้ำ 200 เมตร และ 300 เมตร สัญชาติ \"ออสเตรเลีย\"",
    "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_en": "Find the names of swimmers who has a result of \"win\".",
    "question_th": "ค้นหารายชื่อนักว่ายน้ำที่มีผล \"ชนะ\"",
    "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_en": "What is the name of the stadium which held the most events?",
    "question_th": "สนามกีฬาที่จัดงานมากที่สุดชื่ออะไร?",
    "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_en": "Find the name and capacity of the stadium where the event named \"World Junior\" happened.",
    "question_th": "ค้นหาชื่อและความจุของสนามกีฬาที่จัดงานชื่อ \"World Junior\" เกิดขึ้น",
    "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_en": "Find the names of stadiums which have never had any event.",
    "question_th": "ค้นหาชื่อสนามที่ไม่เคยมีงานใดๆ",
    "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_en": "Find the name of the swimmer who has the most records.",
    "question_th": "ค้นหาชื่อนักว่ายน้ำที่มีสถิติมากที่สุด",
    "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_en": "Find the name of the swimmer who has at least 2 records.",
    "question_th": "ค้นหาชื่อนักว่ายน้ำที่มีประวัติอย่างน้อย 2 รายการ",
    "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_en": "Find the name and nationality of the swimmer who has won (i.e., has a result of \"win\") more than 1 time.",
    "question_th": "ค้นหาชื่อและสัญชาตินักว่ายน้ำที่ชนะ (คือ มีผล \"ชนะ\") มากกว่า 1 ครั้ง",
    "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_en": "Find the names of the swimmers who have no record.",
    "question_th": "ค้นหารายชื่อนักว่ายน้ำที่ไม่มีประวัติ",
    "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_en": "Find the names of the swimmers who have both \"win\" and \"loss\" results in the record.",
    "question_th": "ค้นหารายชื่อนักว่ายน้ำที่มีทั้งผลลัพธ์ \"ชนะ\" และ \"แพ้\" ในบันทึก",
    "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_en": "Find the names of stadiums that some Australian swimmers have been to.",
    "question_th": "ค้นหาชื่อสนามกีฬาที่นักว่ายน้ำชาวออสเตรเลียเคยไป",
    "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_en": "Find the names of stadiums that the most swimmers have been to.",
    "question_th": "ค้นหาชื่อสนามกีฬาที่นักว่ายน้ำเคยไปมากที่สุด",
    "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_en": "Find all details for each swimmer.",
    "question_th": "ค้นหารายละเอียดทั้งหมดสำหรับนักว่ายน้ำแต่ละคน",
    "context": "CREATE TABLE swimmer (Id VARCHAR)"
  },
  {
    "answer": "SELECT AVG(capacity) FROM stadium WHERE opening_year = 2005",
    "question_en": "What is the average capacity of the stadiums that were opened in year 2005?",
    "question_th": "ความจุเฉลี่ยของสนามกีฬาที่เปิดในปี 2548 เป็นเท่าใด",
    "context": "CREATE TABLE stadium (capacity INTEGER, opening_year VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM railway",
    "question_en": "How many railways are there?",
    "question_th": "ทางรถไฟมีกี่สาย?",
    "context": "CREATE TABLE railway (Id VARCHAR)"
  },
  {
    "answer": "SELECT Builder FROM railway ORDER BY Builder",
    "question_en": "List the builders of railways in ascending alphabetical order.",
    "question_th": "รายชื่อผู้สร้างทางรถไฟเรียงจากน้อยไปหามาก",
    "context": "CREATE TABLE railway (Builder VARCHAR)"
  },
  {
    "answer": "SELECT Wheels, LOCATION FROM railway",
    "question_en": "List the wheels and locations of the railways.",
    "question_th": "รายชื่อล้อและที่ตั้งของทางรถไฟ",
    "context": "CREATE TABLE railway (Wheels VARCHAR, LOCATION VARCHAR)"
  },
  {
    "answer": "SELECT MAX(LEVEL) FROM manager WHERE Country <> \"Australia\t\"",
    "question_en": "What is the maximum level of managers in countries that are not \"Australia\"?",
    "question_th": "ระดับสูงสุดของผู้จัดการในประเทศที่ไม่ใช่ \"ออสเตรเลีย\" คืออะไร?",
    "context": "CREATE TABLE manager (LEVEL INTEGER, Country VARCHAR)"
  },
  {
    "answer": "SELECT AVG(Age) FROM manager",
    "question_en": "What is the average age for all managers?",
    "question_th": "อายุเฉลี่ยของผู้จัดการทุกคนคือเท่าไร?",
    "context": "CREATE TABLE manager (Age INTEGER)"
  },
  {
    "answer": "SELECT Name FROM manager ORDER BY LEVEL",
    "question_en": "What are the names of managers in ascending order of level?",
    "question_th": "ชื่อของผู้จัดการตามลำดับจากน้อยไปหามากคืออะไร?",
    "context": "CREATE TABLE manager (Name VARCHAR, LEVEL VARCHAR)"
  },
  {
    "answer": "SELECT Name, Arrival FROM train",
    "question_en": "What are the names and arrival times of trains?",
    "question_th": "รถไฟชื่ออะไรและเวลาที่มาถึงคือเท่าไร?",
    "context": "CREATE TABLE train (Name VARCHAR, Arrival VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM manager ORDER BY Age DESC LIMIT 1",
    "question_en": "What is the name of the oldest manager?",
    "question_th": "ผู้จัดการที่อายุมากที่สุดชื่ออะไร?",
    "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_en": "Show the names of trains and locations of railways they are in.",
    "question_th": "แสดงชื่อรถไฟและตำแหน่งของเส้นทางรถไฟที่พวกเขาอยู่",
    "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_en": "Show the builder of railways associated with the trains named \"Andaman Exp\".",
    "question_th": "แสดงผู้สร้างทางรถไฟที่เกี่ยวข้องกับรถไฟชื่อ \"อันดามันเอ็กซ์พี\"",
    "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_en": "Show id and location of railways that are associated with more than one train.",
    "question_th": "แสดงรหัสและที่ตั้งของรถไฟที่เกี่ยวข้องกับรถไฟมากกว่าหนึ่งขบวน",
    "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_en": "Show the id and builder of the railway that are associated with the most trains.",
    "question_th": "แสดงรหัสและผู้สร้างทางรถไฟที่เกี่ยวข้องกับรถไฟมากที่สุด",
    "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_en": "Show different builders of railways, along with the corresponding number of railways using each builder.",
    "question_th": "แสดงผู้สร้างทางรถไฟรายต่างๆ พร้อมด้วยจำนวนทางรถไฟที่สอดคล้องกันโดยใช้ผู้สร้างแต่ละราย",
    "context": "CREATE TABLE railway (Builder VARCHAR)"
  },
  {
    "answer": "SELECT Builder FROM railway GROUP BY Builder ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "Show the most common builder of railways.",
    "question_th": "แสดงผู้สร้างทางรถไฟที่พบมากที่สุด",
    "context": "CREATE TABLE railway (Builder VARCHAR)"
  },
  {
    "answer": "SELECT LOCATION, COUNT(*) FROM railway GROUP BY LOCATION",
    "question_en": "Show different locations of railways along with the corresponding number of railways at each location.",
    "question_th": "แสดงตำแหน่งเส้นทางรถไฟต่างๆ พร้อมจำนวนเส้นทางรถไฟที่สอดคล้องกันในแต่ละสถานที่",
    "context": "CREATE TABLE railway (LOCATION VARCHAR)"
  },
  {
    "answer": "SELECT LOCATION FROM railway GROUP BY LOCATION HAVING COUNT(*) > 1",
    "question_en": "Show the locations that have more than one railways.",
    "question_th": "แสดงสถานที่ที่มีทางรถไฟมากกว่าหนึ่งสาย",
    "context": "CREATE TABLE railway (LOCATION VARCHAR)"
  },
  {
    "answer": "SELECT ObjectNumber FROM railway WHERE NOT Railway_ID IN (SELECT Railway_ID FROM train)",
    "question_en": "List the object number of railways that do not have any trains.",
    "question_th": "ระบุหมายเลขวัตถุของการรถไฟที่ไม่มีรถไฟใด ๆ",
    "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_en": "Show the countries that have both managers of age above 50 and managers of age below 46.",
    "question_th": "แสดงประเทศที่มีทั้งผู้จัดการอายุมากกว่า 50 ปีและผู้จัดการอายุต่ำกว่า 46 ปี",
    "context": "CREATE TABLE manager (Country VARCHAR, Age INTEGER)"
  },
  {
    "answer": "SELECT DISTINCT Country FROM manager",
    "question_en": "Show the distinct countries of managers.",
    "question_th": "แสดงประเทศที่แตกต่างกันของผู้จัดการ",
    "context": "CREATE TABLE manager (Country VARCHAR)"
  },
  {
    "answer": "SELECT Working_year_starts FROM manager ORDER BY LEVEL DESC",
    "question_en": "Show the working years of managers in descending order of their level.",
    "question_th": "แสดงปีการทำงานของผู้จัดการตามลำดับจากมากไปหาน้อย",
    "context": "CREATE TABLE manager (Working_year_starts VARCHAR, LEVEL VARCHAR)"
  },
  {
    "answer": "SELECT Country FROM manager WHERE Age > 50 OR Age < 46",
    "question_en": "Show the countries that have managers of age above 50 or below 46.",
    "question_th": "แสดงประเทศที่มีผู้จัดการที่มีอายุมากกว่า 50 ปีหรือต่ำกว่า 46 ปี",
    "context": "CREATE TABLE manager (Country VARCHAR, Age VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM addresses WHERE country = 'USA'",
    "question_en": "How many addresses are there in country USA?",
    "question_th": "มีที่อยู่กี่แห่งในประเทศสหรัฐอเมริกา",
    "context": "CREATE TABLE addresses (country VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT city FROM addresses",
    "question_en": "Show all distinct cities in the address record.",
    "question_th": "แสดงเมืองที่แตกต่างกันทั้งหมดในบันทึกที่อยู่",
    "context": "CREATE TABLE addresses (city VARCHAR)"
  },
  {
    "answer": "SELECT state_province_county, COUNT(*) FROM addresses GROUP BY state_province_county",
    "question_en": "Show each state and the number of addresses in each state.",
    "question_th": "แสดงแต่ละรัฐและจำนวนที่อยู่ในแต่ละรัฐ",
    "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_en": "Show names and phones of customers who do not have address information.",
    "question_th": "แสดงชื่อและหมายเลขโทรศัพท์ของลูกค้าที่ไม่มีข้อมูลที่อยู่",
    "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_en": "Show the name of the customer who has the most orders.",
    "question_th": "แสดงชื่อลูกค้าที่มียอดสั่งซื้อมากที่สุด",
    "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_en": "Show the product type codes which have at least two products.",
    "question_th": "แสดงรหัสประเภทผลิตภัณฑ์ที่มีผลิตภัณฑ์อย่างน้อยสองรายการ",
    "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_en": "Show the names of customers who have both an order in completed status and an order in part status.",
    "question_th": "แสดงชื่อลูกค้าที่มีทั้งสถานะคำสั่งซื้อเสร็จสมบูรณ์และสถานะคำสั่งซื้อชิ้นส่วน",
    "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_en": "Show the name, phone, and payment method code for all customers in descending order of customer number.",
    "question_th": "แสดงชื่อ หมายเลขโทรศัพท์ และรหัสวิธีการชำระเงินสำหรับลูกค้าทุกคนตามลำดับหมายเลขลูกค้าจากมากไปหาน้อย",
    "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_en": "Show the product name and total order quantity for each product.",
    "question_th": "แสดงชื่อผลิตภัณฑ์และปริมาณการสั่งซื้อรวมของผลิตภัณฑ์แต่ละรายการ",
    "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_en": "Show the minimum, maximum, average price for all products.",
    "question_th": "แสดงราคาต่ำสุด สูงสุด เฉลี่ยสำหรับผลิตภัณฑ์ทั้งหมด",
    "context": "CREATE TABLE products (product_price INTEGER)"
  },
  {
    "answer": "SELECT COUNT(*) FROM products WHERE product_price > (SELECT AVG(product_price) FROM products)",
    "question_en": "How many products have a price higher than the average?",
    "question_th": "มีสินค้ากี่ชิ้นที่มีราคาสูงกว่าค่าเฉลี่ย?",
    "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_en": "Show the customer name, customer address city, date from, and date to for each customer address history.",
    "question_th": "แสดงชื่อลูกค้า เมืองที่อยู่ของลูกค้า วันที่เริ่มต้น และวันที่ถึง สำหรับประวัติที่อยู่ของลูกค้าแต่ละราย",
    "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_en": "Show the names of customers who use Credit Card payment method and have more than 2 orders.",
    "question_th": "แสดงชื่อลูกค้าที่ใช้วิธีการชำระเงินด้วยบัตรเครดิตและมียอดสั่งซื้อมากกว่า 2 รายการ",
    "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_en": "What are the name and phone of the customer with the most ordered product quantity?",
    "question_th": "ชื่อและหมายเลขโทรศัพท์ของลูกค้าที่มีปริมาณสินค้าสั่งซื้อมากที่สุดคืออะไร?",
    "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_en": "Show the product type and name for the products with price higher than 1000 or lower than 500.",
    "question_th": "แสดงประเภทสินค้าและชื่อสินค้าที่มีราคาสูงกว่า 1,000 หรือต่ำกว่า 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_en": "Find the name of dorms only for female (F gender).",
    "question_th": "ค้นหาชื่อหอพักเฉพาะสตรี (เพศ F)",
    "context": "CREATE TABLE dorm (dorm_name VARCHAR, gender VARCHAR)"
  },
  {
    "answer": "SELECT dorm_name FROM dorm WHERE student_capacity > 300",
    "question_en": "Find the name of dorms that can accommodate more than 300 students.",
    "question_th": "ค้นหาชื่อหอพักที่สามารถรองรับนักศึกษาได้มากกว่า 300 คน",
    "context": "CREATE TABLE dorm (dorm_name VARCHAR, student_capacity INTEGER)"
  },
  {
    "answer": "SELECT COUNT(*) FROM student WHERE sex = 'F' AND age < 25",
    "question_en": "How many female students (sex is F) whose age is below 25?",
    "question_th": "นักเรียนหญิง (เพศ F) อายุต่ำกว่า 25 ปี มีกี่คน",
    "context": "CREATE TABLE student (sex VARCHAR, age VARCHAR)"
  },
  {
    "answer": "SELECT fname FROM student WHERE age > 20",
    "question_en": "Find the first name of students who is older than 20.",
    "question_th": "ค้นหาชื่อนักเรียนที่มีอายุมากกว่า 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_en": "Find the first name of students living in city PHL whose age is between 20 and 25.",
    "question_th": "ค้นหาชื่อของนักเรียนที่อาศัยอยู่ในเมือง PHL ซึ่งมีอายุระหว่าง 20 ถึง 25 ปี",
    "context": "CREATE TABLE student (fname VARCHAR, city_code VARCHAR, age VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM dorm",
    "question_en": "How many dorms are there?",
    "question_th": "มีหอพักกี่ห้อง?",
    "context": "CREATE TABLE dorm (Id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM dorm_amenity",
    "question_en": "Find the number of distinct amenities.",
    "question_th": "ค้นหาสิ่งอำนวยความสะดวกที่แตกต่างกันจำนวนมากมาย",
    "context": "CREATE TABLE dorm_amenity (Id VARCHAR)"
  },
  {
    "answer": "SELECT SUM(student_capacity) FROM dorm",
    "question_en": "Find the total capacity of all dorms.",
    "question_th": "ค้นหาความจุรวมของหอพักทั้งหมด",
    "context": "CREATE TABLE dorm (student_capacity INTEGER)"
  },
  {
    "answer": "SELECT AVG(age), city_code FROM student GROUP BY city_code",
    "question_en": "Find the average age of all students living in the each city.",
    "question_th": "ค้นหาอายุเฉลี่ยของนักเรียนทุกคนที่อาศัยอยู่ในแต่ละเมือง",
    "context": "CREATE TABLE student (city_code VARCHAR, age INTEGER)"
  },
  {
    "answer": "SELECT AVG(student_capacity), SUM(student_capacity) FROM dorm WHERE gender = 'X'",
    "question_en": "Find the average and total capacity of dorms for the students with gender X.",
    "question_th": "ค้นหาความจุเฉลี่ยและความจุรวมของหอพักสำหรับนักเรียนที่มีเพศ X",
    "context": "CREATE TABLE dorm (student_capacity INTEGER, gender VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT dormid) FROM has_amenity",
    "question_en": "Find the number of dorms that have some amenity.",
    "question_th": "ค้นหาจำนวนหอพักที่มีสิ่งอำนวยความสะดวก",
    "context": "CREATE TABLE has_amenity (dormid VARCHAR)"
  },
  {
    "answer": "SELECT dorm_name FROM dorm WHERE NOT dormid IN (SELECT dormid FROM has_amenity)",
    "question_en": "Find the name of dorms that do not have any amenity",
    "question_th": "ค้นหาชื่อหอพักที่ไม่มีสิ่งอำนวยความสะดวกใดๆ",
    "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_en": "Find the number of distinct gender for dorms.",
    "question_th": "ค้นหาจำนวนเพศที่แตกต่างกันสำหรับหอพัก",
    "context": "CREATE TABLE dorm (gender VARCHAR)"
  },
  {
    "answer": "SELECT student_capacity, gender FROM dorm WHERE dorm_name LIKE '%Donor%'",
    "question_en": "Find the capacity and gender type of the dorm whose name has substring ‘Donor’.",
    "question_th": "ค้นหาความจุและประเภทเพศของหอพักที่มีชื่อย่อยว่า 'ผู้บริจาค'",
    "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_en": "Find the name and gender type of the dorms whose capacity is greater than 300 or less than 100.",
    "question_th": "ค้นหาชื่อและประเภทหอพักที่มีความจุมากกว่า 300 หรือน้อยกว่า 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_en": "Find the numbers of different majors and cities.",
    "question_th": "ค้นหาจำนวนสาขาวิชาและเมืองต่างๆ",
    "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_en": "Find the name of dorms which have both TV Lounge and Study Room as amenities.",
    "question_th": "ค้นหาชื่อหอพักที่มีทั้งห้องดูทีวีและห้องอ่านหนังสือเป็นสิ่งอำนวยความสะดวก",
    "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_en": "Find the name of dorms which have TV Lounge but no Study Room as amenity.",
    "question_th": "ค้นหาชื่อหอพักที่มีห้องดูทีวี แต่ไม่มีห้องอ่านหนังสือเป็นสิ่งอำนวยความสะดวก",
    "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_en": "Find the last name of students who is either female (sex is F) and living in the city of code BAL or male (sex is M) and in age of below 20.",
    "question_th": "ค้นหานามสกุลของนักเรียนที่เป็นเพศหญิง (เพศคือ F) และอาศัยอยู่ในเมืองรหัส BAL หรือชาย (เพศคือ M) และมีอายุต่ำกว่า 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_en": "Find the name of the dorm with the largest capacity.",
    "question_th": "ค้นหาชื่อหอพักที่มีความจุมากที่สุด",
    "context": "CREATE TABLE dorm (dorm_name VARCHAR, student_capacity VARCHAR)"
  },
  {
    "answer": "SELECT amenity_name FROM dorm_amenity ORDER BY amenity_name",
    "question_en": "List in alphabetic order all different amenities.",
    "question_th": "รายการสิ่งอำนวยความสะดวกต่างๆ ตามลำดับตัวอักษร",
    "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_en": "Find the code of city where most of students are living in.",
    "question_th": "ค้นหารหัสเมืองที่นักเรียนส่วนใหญ่อาศัยอยู่",
    "context": "CREATE TABLE student (city_code VARCHAR)"
  },
  {
    "answer": "SELECT fname, lname FROM student WHERE age < (SELECT AVG(age) FROM student)",
    "question_en": "Find the first and last name of students whose age is younger than the average age.",
    "question_th": "ค้นหาชื่อและนามสกุลของนักเรียนที่อายุน้อยกว่าอายุเฉลี่ย",
    "context": "CREATE TABLE student (fname VARCHAR, lname VARCHAR, age INTEGER)"
  },
  {
    "answer": "SELECT fname, lname FROM student WHERE city_code <> 'HKG' ORDER BY age",
    "question_en": "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.",
    "question_th": "ระบุชื่อและนามสกุลของนักเรียนที่ไม่ได้อาศัยอยู่ในเมืองด้วยรหัส HKG และจัดเรียงผลลัพธ์ตามอายุ",
    "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_en": "List name of all amenities which Anonymous Donor Hall has, and sort the results in alphabetic order.",
    "question_th": "รายชื่อสิ่งอำนวยความสะดวกทั้งหมดที่ Hall ผู้บริจาคนิรนามมี และจัดเรียงผลลัพธ์ตามลำดับตัวอักษร",
    "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_en": "Find the number of dorms and total capacity for each gender.",
    "question_th": "ค้นหาจำนวนหอพักและความจุรวมของแต่ละเพศ",
    "context": "CREATE TABLE dorm (gender VARCHAR, student_capacity INTEGER)"
  },
  {
    "answer": "SELECT AVG(age), MAX(age), sex FROM student GROUP BY sex",
    "question_en": "Find the average and oldest age for students with different sex.",
    "question_th": "ค้นหาอายุเฉลี่ยและอายุมากที่สุดของนักเรียนที่มีเพศต่างกัน",
    "context": "CREATE TABLE student (sex VARCHAR, age INTEGER)"
  },
  {
    "answer": "SELECT COUNT(*), major FROM student GROUP BY major",
    "question_en": "Find the number of students in each major.",
    "question_th": "ค้นหาจำนวนนักศึกษาในแต่ละสาขาวิชา",
    "context": "CREATE TABLE student (major VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*), AVG(age), city_code FROM student GROUP BY city_code",
    "question_en": "Find the number and average age of students living in each city.",
    "question_th": "ค้นหาจำนวนและอายุเฉลี่ยของนักเรียนที่อาศัยอยู่ในแต่ละเมือง",
    "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_en": "Find the average age and number of male students (with sex M) from each city.",
    "question_th": "ค้นหาอายุเฉลี่ยและจำนวนนักเรียนชาย (เพศ M) จากแต่ละเมือง",
    "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_en": "Find the number of students for the cities where have more than one student.",
    "question_th": "ค้นหาจำนวนนักเรียนในเมืองที่มีนักเรียนมากกว่าหนึ่งคน",
    "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_en": "Find the first and last name of students who are not in the largest major.",
    "question_th": "ค้นหาชื่อและนามสกุลของนักศึกษาที่ไม่อยู่ในสาขาวิชาเอกที่ใหญ่ที่สุด",
    "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_en": "Find the number of students whose age is older than the average age for each gender.",
    "question_th": "หาจำนวนนักเรียนที่มีอายุมากกว่าอายุเฉลี่ยของแต่ละเพศ",
    "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_en": "Find the average age of students living in each dorm and the name of dorm.",
    "question_th": "ค้นหาอายุเฉลี่ยของนักเรียนที่อาศัยอยู่ในหอพักแต่ละแห่งและชื่อหอพัก",
    "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_en": "Find the number of amenities for each of the dorms that can accommodate more than 100 students.",
    "question_th": "ค้นหาสิ่งอำนวยความสะดวกมากมายสำหรับหอพักแต่ละแห่งที่สามารถรองรับนักเรียนได้มากกว่า 100 คน",
    "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_en": "Find the number of students who is older than 20 in each dorm.",
    "question_th": "ค้นหาจำนวนนักเรียนที่มีอายุมากกว่า 20 ปีในแต่ละหอพัก",
    "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_en": "Find the first name of students who are living in the Smith Hall.",
    "question_th": "ค้นหาชื่อนักเรียนที่อาศัยอยู่ใน 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_en": "Find the average age of students who are living in the dorm with the largest capacity.",
    "question_th": "ค้นหาอายุเฉลี่ยของนักเรียนที่อาศัยอยู่ในหอพักที่มีความจุมากที่สุด",
    "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_en": "Find the total number of students living in the male dorm (with gender M).",
    "question_th": "หาจำนวนนักศึกษาทั้งหมดที่อาศัยอยู่ในหอพักชาย (เพศ 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_en": "Find the number of female students (with F sex) living in Smith Hall",
    "question_th": "ค้นหาจำนวนนักเรียนหญิง (เพศ F) ที่อาศัยอยู่ใน 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_en": "Find the name of amenities Smith Hall dorm have.",
    "question_th": "ค้นหาชื่อสิ่งอำนวยความสะดวกที่หอพัก Smith Hall มี",
    "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_en": "Find the name of amenities Smith Hall dorm have. ordered the results by amenity names.",
    "question_th": "ค้นหาชื่อสิ่งอำนวยความสะดวกที่หอพัก Smith Hall มี เรียงลำดับผลลัพธ์ตามชื่อสิ่งอำนวยความสะดวก",
    "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_en": "Find the name of amenity that is most common in all dorms.",
    "question_th": "ค้นหาชื่อสิ่งอำนวยความสะดวกที่พบบ่อยที่สุดในหอพักทั้งหมด",
    "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_en": "Find the first name of students who are living in the dorm that has most number of amenities.",
    "question_th": "ค้นหาชื่อนักศึกษาที่อาศัยอยู่ในหอพักที่มีสิ่งอำนวยความสะดวกมากที่สุด",
    "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_en": "Find the name and capacity of the dorm with least number of amenities.",
    "question_th": "ค้นหาชื่อและความจุของหอพักที่มีสิ่งอำนวยความสะดวกน้อยที่สุด",
    "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_en": "Find the name of dorms that do not have amenity TV Lounge.",
    "question_th": "ค้นหาชื่อหอพักที่ไม่มีสิ่งอำนวยความสะดวก 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_en": "Find the first and last name of students who are living in the dorms that have amenity TV Lounge.",
    "question_th": "ค้นหาชื่อและนามสกุลของนักเรียนที่อาศัยอยู่ในหอพักที่มีสิ่งอำนวยความสะดวกครบครัน 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_en": "Find the first name and age of students who are living in the dorms that do not have amenity TV Lounge.",
    "question_th": "ค้นหาชื่อและอายุของนักเรียนที่อาศัยอยู่ในหอพักที่ไม่มีสิ่งอำนวยความสะดวก ห้องดูทีวี",
    "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_en": "Find the name of amenities of the dorm where the student with last name Smith is living in.",
    "question_th": "ค้นหาชื่อสิ่งอำนวยความสะดวกของหอพักที่นักเรียนนามสกุล Smith อาศัยอยู่",
    "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_en": "Find the emails and phone numbers of all the customers, ordered by email address and phone number.",
    "question_th": "ค้นหาอีเมลและหมายเลขโทรศัพท์ของลูกค้าทั้งหมด เรียงลำดับตามที่อยู่อีเมลและหมายเลขโทรศัพท์",
    "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_en": "Which city has the least number of customers whose type code is \"Good Credit Rating\"?",
    "question_th": "เมืองใดมีลูกค้าที่มีรหัสประเภท \"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_en": "List the name of all products along with the number of complaints that they have received.",
    "question_th": "ระบุชื่อผลิตภัณฑ์ทั้งหมดพร้อมจำนวนข้อร้องเรียนที่ได้รับ",
    "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_en": "Find the emails of customers who has filed a complaints of the product with the most complaints.",
    "question_th": "ค้นหาอีเมลของลูกค้าที่ได้ยื่นข้อร้องเรียนเกี่ยวกับผลิตภัณฑ์ที่มีการร้องเรียนมากที่สุด",
    "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_en": "Which products has been complained by the customer who has filed least amount of complaints?",
    "question_th": "สินค้าใดบ้างที่ได้รับการร้องเรียนจากลูกค้าที่มีการร้องเรียนน้อยที่สุด?",
    "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_en": "What is the phone number of the customer who has filed the most recent complaint?",
    "question_th": "หมายเลขโทรศัพท์ของลูกค้าที่ยื่นเรื่องร้องเรียนล่าสุดคืออะไร?",
    "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_en": "Find the email and phone number of the customers who have never filed a complaint before.",
    "question_th": "ค้นหาอีเมลและหมายเลขโทรศัพท์ของลูกค้าที่ไม่เคยยื่นเรื่องร้องเรียนมาก่อน",
    "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_en": "Find the phone number of all the customers and staff.",
    "question_th": "ค้นหาหมายเลขโทรศัพท์ของลูกค้าและพนักงานทุกคน",
    "context": "CREATE TABLE staff (phone_number VARCHAR); CREATE TABLE customers (phone_number VARCHAR)"
  },
  {
    "answer": "SELECT product_description FROM products WHERE product_name = \"Chocolate\"",
    "question_en": "What is the description of the product named \"Chocolate\"?",
    "question_th": "รายละเอียดสินค้าชื่อ \"ช็อคโกแลต\" คืออะไร?",
    "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_en": "Find the name and category of the most expensive product.",
    "question_th": "ค้นหาชื่อและหมวดหมู่ของผลิตภัณฑ์ที่แพงที่สุด",
    "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_en": "Find the prices of products which has never received a single complaint.",
    "question_th": "ค้นหาราคาของผลิตภัณฑ์ที่ไม่เคยได้รับการร้องเรียนแม้แต่ครั้งเดียว",
    "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_en": "What is the average price of the products for each category?",
    "question_th": "ราคาเฉลี่ยของผลิตภัณฑ์แต่ละประเภทคือเท่าไร?",
    "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_en": "Find the last name of the staff member who processed the complaint of the cheapest product.",
    "question_th": "ค้นหานามสกุลของพนักงานที่ดำเนินการเรื่องร้องเรียนเกี่ยวกับสินค้าที่ถูกที่สุด",
    "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_en": "Which complaint status has more than 3 records on file?",
    "question_th": "สถานะการร้องเรียนใดมีบันทึกอยู่ในไฟล์มากกว่า 3 รายการ",
    "context": "CREATE TABLE complaints (complaint_status_code VARCHAR)"
  },
  {
    "answer": "SELECT last_name FROM staff WHERE email_address LIKE \"%wrau%\"",
    "question_en": "Find the last name of the staff whose email address contains \"wrau\".",
    "question_th": "ค้นหานามสกุลของพนักงานที่มีที่อยู่อีเมลว่า \"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_en": "How many customers are there in the customer type with the most customers?",
    "question_th": "ประเภทลูกค้ามีลูกค้ากี่รายและมีลูกค้ามากที่สุด?",
    "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_en": "What is the last name of the staff who has handled the first ever complaint?",
    "question_th": "นามสกุลของพนักงานที่จัดการเรื่องร้องเรียนครั้งแรกคืออะไร?",
    "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_en": "How many distinct complaint type codes are there in the database?",
    "question_th": "มีรหัสประเภทการร้องเรียนที่แตกต่างกันกี่รหัสในฐานข้อมูล",
    "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_en": "Find the address line 1 and 2 of the customer with email \"vbogisich@example.org\".",
    "question_th": "ค้นหาที่อยู่บรรทัดที่ 1 และ 2 ของลูกค้าด้วยอีเมล \"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_en": "Find the number of complaints with Product Failure type for each complaint status.",
    "question_th": "ค้นหาจำนวนข้อร้องเรียนด้วยประเภท Product Failure สำหรับแต่ละสถานะข้อร้องเรียน",
    "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_en": "What is first names of the top 5 staff who have handled the greatest number of complaints?",
    "question_th": "ชื่อแรกของพนักงาน 5 อันดับแรกที่จัดการข้อร้องเรียนจำนวนมากที่สุดคืออะไร?",
    "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_en": "Which state has the most customers?",
    "question_th": "รัฐใดมีลูกค้ามากที่สุด?",
    "context": "CREATE TABLE customers (state VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM submission",
    "question_en": "How many submissions are there?",
    "question_th": "มีส่งกี่รายการคะ?",
    "context": "CREATE TABLE submission (Id VARCHAR)"
  },
  {
    "answer": "SELECT Author FROM submission ORDER BY Scores",
    "question_en": "List the authors of submissions in ascending order of scores.",
    "question_th": "รายชื่อผู้เขียนผลงานเรียงตามคะแนนจากน้อยไปหามาก",
    "context": "CREATE TABLE submission (Author VARCHAR, Scores VARCHAR)"
  },
  {
    "answer": "SELECT Author, College FROM submission",
    "question_en": "What are the authors of submissions and their colleges?",
    "question_th": "ผู้เขียนผลงานที่ส่งเข้าประกวดและวิทยาลัยของพวกเขาคือใคร?",
    "context": "CREATE TABLE submission (Author VARCHAR, College VARCHAR)"
  },
  {
    "answer": "SELECT Author FROM submission WHERE College = \"Florida\" OR College = \"Temple\"",
    "question_en": "Show the names of authors from college \"Florida\" or \"Temple\"",
    "question_th": "แสดงชื่อผู้เขียนจากวิทยาลัย \"ฟลอริดา\" หรือ \"วัด\"",
    "context": "CREATE TABLE submission (Author VARCHAR, College VARCHAR)"
  },
  {
    "answer": "SELECT AVG(Scores) FROM submission",
    "question_en": "What is the average score of submissions?",
    "question_th": "คะแนนเฉลี่ยของการส่งคืออะไร?",
    "context": "CREATE TABLE submission (Scores INTEGER)"
  },
  {
    "answer": "SELECT Author FROM submission ORDER BY Scores DESC LIMIT 1",
    "question_en": "What is the author of the submission with the highest score?",
    "question_th": "ผู้เขียนผลงานที่ได้คะแนนสูงสุดคือใคร?",
    "context": "CREATE TABLE submission (Author VARCHAR, Scores VARCHAR)"
  },
  {
    "answer": "SELECT College, COUNT(*) FROM submission GROUP BY College",
    "question_en": "Show different colleges along with the number of authors of submission from each college.",
    "question_th": "แสดงวิทยาลัยต่างๆ พร้อมด้วยจำนวนผู้เขียนที่ส่งผลงานจากแต่ละวิทยาลัย",
    "context": "CREATE TABLE submission (College VARCHAR)"
  },
  {
    "answer": "SELECT College FROM submission GROUP BY College ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "Show the most common college of authors of submissions.",
    "question_th": "แสดงวิทยาลัยผู้เขียนส่งผลงานที่พบบ่อยที่สุด",
    "context": "CREATE TABLE submission (College VARCHAR)"
  },
  {
    "answer": "SELECT College FROM submission WHERE Scores > 90 INTERSECT SELECT College FROM submission WHERE Scores < 80",
    "question_en": "Show the colleges that have both authors with submission score larger than 90 and authors with submission score smaller than 80.",
    "question_th": "แสดงวิทยาลัยที่มีทั้งผู้เขียนที่มีคะแนนส่งมากกว่า 90 และผู้แต่งที่มีคะแนนส่งน้อยกว่า 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_en": "Show the authors of submissions and the acceptance results of their submissions.",
    "question_th": "แสดงผู้เขียนผลงานที่ส่งและผลการยอมรับของผลงานที่ส่ง",
    "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_en": "Show the result of the submission with the highest score.",
    "question_th": "แสดงผลการส่งที่มีคะแนนสูงสุด",
    "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_en": "Show each author and the number of workshops they submitted to.",
    "question_th": "แสดงผู้เขียนแต่ละคนและจำนวนการประชุมเชิงปฏิบัติการที่พวกเขาส่งไป",
    "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_en": "Show the authors who have submissions to more than one workshop.",
    "question_th": "แสดงผู้เขียนที่มีผลงานส่งเข้าร่วมเวิร์คช็อปมากกว่าหนึ่งรายการ",
    "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_en": "Show the date and venue of each workshop in ascending alphabetical order of the venue.",
    "question_th": "แสดงวันที่และสถานที่ของแต่ละเวิร์คช็อปโดยเรียงตามตัวอักษรของสถานที่",
    "context": "CREATE TABLE workshop (Date VARCHAR, Venue VARCHAR)"
  },
  {
    "answer": "SELECT Author FROM submission WHERE NOT Submission_ID IN (SELECT Submission_ID FROM acceptance)",
    "question_en": "List the authors who do not have submission to any workshop.",
    "question_th": "รายชื่อผู้เขียนที่ไม่มีการส่งผลงานเข้าเวิร์คช็อปใดๆ",
    "context": "CREATE TABLE acceptance (Author VARCHAR, Submission_ID VARCHAR); CREATE TABLE submission (Author VARCHAR, Submission_ID VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM INVESTORS",
    "question_en": "Find the number of investors in total.",
    "question_th": "ค้นหาจำนวนผู้ลงทุนทั้งหมด",
    "context": "CREATE TABLE INVESTORS (Id VARCHAR)"
  },
  {
    "answer": "SELECT Investor_details FROM INVESTORS",
    "question_en": "Show all investor details.",
    "question_th": "แสดงรายละเอียดนักลงทุนทั้งหมด",
    "context": "CREATE TABLE INVESTORS (Investor_details VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT lot_details FROM LOTS",
    "question_en": "Show all distinct lot details.",
    "question_th": "แสดงรายละเอียดล็อตที่แตกต่างกันทั้งหมด",
    "context": "CREATE TABLE LOTS (lot_details VARCHAR)"
  },
  {
    "answer": "SELECT MAX(amount_of_transaction) FROM TRANSACTIONS",
    "question_en": "Show the maximum amount of transaction.",
    "question_th": "แสดงจำนวนการทำธุรกรรมสูงสุด",
    "context": "CREATE TABLE TRANSACTIONS (amount_of_transaction INTEGER)"
  },
  {
    "answer": "SELECT date_of_transaction, share_count FROM TRANSACTIONS",
    "question_en": "Show all date and share count of transactions.",
    "question_th": "แสดงวันที่และจำนวนหุ้นของการทำธุรกรรมทั้งหมด",
    "context": "CREATE TABLE TRANSACTIONS (date_of_transaction VARCHAR, share_count VARCHAR)"
  },
  {
    "answer": "SELECT SUM(share_count) FROM TRANSACTIONS",
    "question_en": "What is the total share of transactions?",
    "question_th": "ส่วนแบ่งการทำธุรกรรมทั้งหมดคือเท่าไร?",
    "context": "CREATE TABLE TRANSACTIONS (share_count INTEGER)"
  },
  {
    "answer": "SELECT transaction_id FROM TRANSACTIONS WHERE transaction_type_code = 'PUR'",
    "question_en": "Show all transaction ids with transaction code 'PUR'.",
    "question_th": "แสดงรหัสธุรกรรมทั้งหมดด้วยรหัสธุรกรรม '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_en": "Show all dates of transactions whose type code is \"SALE\".",
    "question_th": "แสดงวันที่ทำรายการทั้งหมดที่มีรหัสประเภท \"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_en": "Show the average amount of transactions with type code \"SALE\".",
    "question_th": "แสดงจำนวนรายการเฉลี่ยด้วยรหัสประเภท \"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_en": "Show the description of transaction type with code \"PUR\".",
    "question_th": "แสดงคำอธิบายประเภทธุรกรรมด้วยรหัส \"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_en": "Show the minimum amount of transactions whose type code is \"PUR\" and whose share count is bigger than 50.",
    "question_th": "แสดงจำนวนธุรกรรมขั้นต่ำที่มีรหัสประเภท \"PUR\" และมีจำนวนหุ้นมากกว่า 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_en": "Show the maximum share count of transactions where the amount is smaller than 10000",
    "question_th": "แสดงจำนวนหุ้นสูงสุดของธุรกรรมที่จำนวนเงินน้อยกว่า 10,000",
    "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_en": "Show the dates of transactions if the share count is bigger than 100 or the amount is bigger than 1000.",
    "question_th": "แสดงวันที่ทำรายการหากจำนวนหุ้นมากกว่า 100 หรือจำนวนมากกว่า 1,000",
    "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_en": "Show the transaction type descriptions and dates if the share count is smaller than 10.",
    "question_th": "แสดงคำอธิบายประเภทธุรกรรมและวันที่หากจำนวนหุ้นน้อยกว่า 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_en": "Show details of all investors if they make any transaction with share count greater than 100.",
    "question_th": "แสดงรายละเอียดของนักลงทุนทั้งหมดหากทำธุรกรรมใด ๆ ที่มีจำนวนหุ้นมากกว่า 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_en": "How many distinct transaction types are used in the transactions?",
    "question_th": "มีการใช้ธุรกรรมประเภทที่แตกต่างกันกี่ประเภทในธุรกรรม?",
    "context": "CREATE TABLE TRANSACTIONS (transaction_type_code VARCHAR)"
  },
  {
    "answer": "SELECT lot_details, investor_id FROM LOTS",
    "question_en": "Return the lot details and investor ids.",
    "question_th": "ส่งคืนรายละเอียดล็อตและรหัสนักลงทุน",
    "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_en": "Return the lot details of lots that belong to investors with details \"l\"?",
    "question_th": "คืนรายละเอียดล็อตของล็อตที่เป็นของผู้ลงทุนพร้อมรายละเอียด \"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_en": "What are the purchase details of transactions with amount bigger than 10000?",
    "question_th": "รายละเอียดการซื้อของธุรกรรมที่มีมูลค่ามากกว่า 10,000 คืออะไร?",
    "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_en": "What are the sale details and dates of transactions with amount smaller than 3000?",
    "question_th": "รายละเอียดการขายและวันที่ทำรายการที่มียอดน้อยกว่า 3,000 คืออะไร?",
    "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_en": "What are the lot details of lots associated with transactions with share count smaller than 50?",
    "question_th": "รายละเอียดล็อตของล็อตที่เกี่ยวข้องกับธุรกรรมที่มีจำนวนหุ้นน้อยกว่า 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_en": "What are the lot details of lots associated with transactions whose share count is bigger than 100 and whose type code is \"PUR\"?",
    "question_th": "รายละเอียดล็อตของล็อตที่เกี่ยวข้องกับธุรกรรมที่มีจำนวนหุ้นมากกว่า 100 และมีรหัสประเภทคือ \"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_en": "Show the average transaction amount for different transaction types.",
    "question_th": "แสดงมูลค่าธุรกรรมเฉลี่ยสำหรับธุรกรรมประเภทต่างๆ",
    "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_en": "Show the maximum and minimum share count of different transaction types.",
    "question_th": "แสดงจำนวนหุ้นสูงสุดและต่ำสุดของธุรกรรมประเภทต่างๆ",
    "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_en": "Show the average share count of transactions for different investors.",
    "question_th": "แสดงจำนวนหุ้นเฉลี่ยของการทำธุรกรรมสำหรับนักลงทุนรายต่างๆ",
    "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_en": "Show the average share count of transactions each each investor, ordered by average share count.",
    "question_th": "แสดงจำนวนหุ้นเฉลี่ยของการทำธุรกรรมของนักลงทุนแต่ละราย เรียงตามจำนวนหุ้นเฉลี่ย",
    "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_en": "Show the average amount of transactions for different investors.",
    "question_th": "แสดงจำนวนธุรกรรมโดยเฉลี่ยสำหรับนักลงทุนรายต่างๆ",
    "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_en": "Show the average amount of transactions for different lots.",
    "question_th": "แสดงจำนวนธุรกรรมเฉลี่ยสำหรับล็อตต่างๆ",
    "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_en": "Show the average amount of transactions for different lots, ordered by average amount of transactions.",
    "question_th": "แสดงจำนวนธุรกรรมโดยเฉลี่ยสำหรับล็อตต่างๆ โดยเรียงลำดับตามจำนวนธุรกรรมโดยเฉลี่ย",
    "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_en": "Show the number of transactions with transaction type code \"SALE\" for different investors if it is larger than 0.",
    "question_th": "แสดงจำนวนรายการที่มีรหัสประเภทธุรกรรม \"SALE\" สำหรับนักลงทุนรายต่างๆ หากมากกว่า 0",
    "context": "CREATE TABLE TRANSACTIONS (investor_id VARCHAR, transaction_type_code VARCHAR)"
  },
  {
    "answer": "SELECT investor_id, COUNT(*) FROM TRANSACTIONS GROUP BY investor_id",
    "question_en": "Show the number of transactions for different investors.",
    "question_th": "แสดงจำนวนธุรกรรมสำหรับนักลงทุนรายต่างๆ",
    "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_en": "Show the transaction type code that occurs the fewest times.",
    "question_th": "แสดงรหัสประเภทธุรกรรมที่เกิดขึ้นน้อยที่สุด",
    "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_en": "Show the transaction type code that occurs the most frequently.",
    "question_th": "แสดงรหัสประเภทธุรกรรมที่เกิดขึ้นบ่อยที่สุด",
    "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_en": "Show the description of the transaction type that occurs most frequently.",
    "question_th": "แสดงคำอธิบายประเภทธุรกรรมที่เกิดขึ้นบ่อยที่สุด",
    "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_en": "Show the id and details of the investor that has the largest number of transactions.",
    "question_th": "แสดงรหัสและรายละเอียดของนักลงทุนที่มีจำนวนการทำธุรกรรมมากที่สุด",
    "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_en": "Show the id and details for the investors who have the top 3 number of transactions.",
    "question_th": "แสดงรหัสและรายละเอียดสำหรับผู้ลงทุนที่มีจำนวนธุรกรรมสูงสุด 3 อันดับแรก",
    "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_en": "Show the ids of the investors who have at least two transactions.",
    "question_th": "แสดงรหัสของผู้ลงทุนที่มีธุรกรรมอย่างน้อยสองรายการ",
    "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_en": "Show the ids and details of the investors who have at least two transactions with type code \"SALE\".",
    "question_th": "แสดงรหัสและรายละเอียดของผู้ลงทุนที่มีธุรกรรมอย่างน้อย 2 รายการพร้อมรหัสประเภท \"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_en": "What are the dates of transactions with at least 100 share count or amount bigger than 100?",
    "question_th": "มียอดหุ้นตั้งแต่ 100 หุ้นขึ้นไป หรือเกิน 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_en": "What are the details of all sales and purchases?",
    "question_th": "รายละเอียดการขายและการซื้อทั้งหมดมีอะไรบ้าง?",
    "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_en": "What are the details of the lots which are not used in any transactions?",
    "question_th": "รายละเอียดของล็อตที่ไม่ได้ใช้ทำรายการมีอะไรบ้าง?",
    "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_en": "How many available hotels are there in total?",
    "question_th": "มีโรงแรมว่างทั้งหมดกี่แห่ง?",
    "context": "CREATE TABLE HOTELS (Id VARCHAR)"
  },
  {
    "answer": "SELECT price_range FROM HOTELS",
    "question_en": "What are the price ranges of hotels?",
    "question_th": "โรงแรมราคาเท่าไหร่คะ?",
    "context": "CREATE TABLE HOTELS (price_range VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT Location_Name FROM LOCATIONS",
    "question_en": "Show all distinct location names.",
    "question_th": "แสดงชื่อสถานที่ที่แตกต่างกันทั้งหมด",
    "context": "CREATE TABLE LOCATIONS (Location_Name VARCHAR)"
  },
  {
    "answer": "SELECT Name, Other_Details FROM Staff",
    "question_en": "Show the names and details of all the staff members.",
    "question_th": "แสดงชื่อและรายละเอียดของพนักงานทุกคน",
    "context": "CREATE TABLE Staff (Name VARCHAR, Other_Details VARCHAR)"
  },
  {
    "answer": "SELECT Tourist_Details FROM VISITORS",
    "question_en": "Show details of all visitors.",
    "question_th": "แสดงรายละเอียดของผู้เข้าชมทั้งหมด",
    "context": "CREATE TABLE VISITORS (Tourist_Details VARCHAR)"
  },
  {
    "answer": "SELECT price_range FROM HOTELS WHERE star_rating_code = \"5\"",
    "question_en": "Show the price ranges of hotels with 5 star ratings.",
    "question_th": "แสดงช่วงราคาของโรงแรมระดับ 5 ดาว",
    "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_en": "Show the average price range of hotels that have 5 star ratings and allow pets.",
    "question_th": "แสดงช่วงราคาเฉลี่ยของโรงแรมที่มีระดับ 5 ดาวและอนุญาตให้นำสัตว์เลี้ยงเข้าได้",
    "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_en": "What is the address of the location \"UK Gallery\"?",
    "question_th": "ที่อยู่ของที่ตั้ง \"UK Gallery\" คืออะไร?",
    "context": "CREATE TABLE LOCATIONS (Address VARCHAR, Location_Name VARCHAR)"
  },
  {
    "answer": "SELECT Other_Details FROM LOCATIONS WHERE Location_Name = \"UK Gallery\"",
    "question_en": "What is the detail of the location UK Gallery?",
    "question_th": "รายละเอียดที่ตั้งของ UK Gallery คืออะไร?",
    "context": "CREATE TABLE LOCATIONS (Other_Details VARCHAR, Location_Name VARCHAR)"
  },
  {
    "answer": "SELECT Location_Name FROM LOCATIONS WHERE Location_Name LIKE \"%film%\"",
    "question_en": "Which location names contain the word \"film\"?",
    "question_th": "ชื่อสถานที่ใดมีคำว่า \"ภาพยนตร์\"?",
    "context": "CREATE TABLE LOCATIONS (Location_Name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT Name) FROM PHOTOS",
    "question_en": "How many distinct names are associated with all the photos?",
    "question_th": "ภาพถ่ายทั้งหมดมีชื่อที่แตกต่างกันกี่ชื่อ?",
    "context": "CREATE TABLE PHOTOS (Name VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT Visit_Date FROM VISITS",
    "question_en": "What are the distinct visit dates?",
    "question_th": "วันเข้าชมที่ชัดเจนคือเมื่อใด",
    "context": "CREATE TABLE VISITS (Visit_Date VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM TOURIST_ATTRACTIONS WHERE How_to_Get_There = \"bus\"",
    "question_en": "What are the names of the tourist attractions that can be accessed by bus?",
    "question_th": "สถานที่ท่องเที่ยวที่สามารถนั่งรถบัสเข้าไปได้มีชื่อว่าอะไร?",
    "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_en": "What are the names and opening hours of the tourist attractions that can be accessed by bus or walk?",
    "question_th": "สถานที่ท่องเที่ยวที่สามารถเข้าถึงได้ด้วยรถบัสหรือเดินมีชื่อและเวลาเปิดทำการอะไรบ้าง?",
    "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_en": "What are the star rating descriptions of the hotels with price above 10000?",
    "question_th": "คำอธิบายระดับดาวของโรงแรมที่มีราคามากกว่า 10,000 คืออะไร?",
    "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_en": "What are the details and opening hours of the museums?",
    "question_th": "รายละเอียดและเวลาทำการของพิพิธภัณฑ์เป็นอย่างไร?",
    "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_en": "What is the name of the tourist attraction that is associated with the photo \"game1\"?",
    "question_th": "สถานที่ท่องเที่ยวที่เกี่ยวข้องกับภาพถ่าย \"เกม 1\" ชื่ออะไร?",
    "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_en": "What are the names and descriptions of the photos taken at the tourist attraction \"film festival\"?",
    "question_th": "ภาพถ่ายที่ถ่ายในสถานที่ท่องเที่ยว \"เทศกาลภาพยนตร์\" มีชื่อและคำอธิบายว่าอะไรบ้าง?",
    "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_en": "What are the details and ways to get to tourist attractions related to royal family?",
    "question_th": "มีรายละเอียดและวิธีการเดินทางไปยังสถานที่ท่องเที่ยวที่เกี่ยวข้องกับราชวงศ์อย่างไรบ้าง?",
    "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_en": "What are the details of the shops that can be accessed by walk?",
    "question_th": "รายละเอียดร้านค้าที่สามารถเดินเข้าไปได้มีอะไรบ้าง?",
    "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_en": "What is the name of the staff that is in charge of the attraction named \"US museum\"?",
    "question_th": "เจ้าหน้าที่ที่ดูแลสถานที่ท่องเที่ยวชื่อ \"พิพิธภัณฑ์สหรัฐฯ\" คืออะไร?",
    "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_en": "What are the details of the markets that can be accessed by walk or bus?",
    "question_th": "รายละเอียดของตลาดที่สามารถเดินทางมาได้ด้วยการเดินหรือรถประจำทางมีอะไรบ้าง?",
    "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_en": "What are the visit date and details of the visitor whose detail is 'Vincent'?",
    "question_th": "วันที่เข้าชมและรายละเอียดของผู้เข้าชมที่มีรายละเอียดคือ 'วินเซนต์' คืออะไร?",
    "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_en": "Which tourist attractions does the visitor with detail 'Vincent' visit?",
    "question_th": "สถานที่ท่องเที่ยวใดบ้างที่ผู้มาเยือนมีรายละเอียดการเยี่ยมชม 'Vincent'?",
    "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_en": "What are the names of the tourist attractions and the dates when the tourists named Vincent or Vivian visited there?",
    "question_th": "สถานที่ท่องเที่ยวชื่ออะไร และวันที่นักท่องเที่ยวชื่อวินเซนต์หรือวิเวียนมาเยี่ยมชมที่นั่นมีชื่ออะไรบ้าง?",
    "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_en": "Show the average price of hotels for each star rating code.",
    "question_th": "แสดงราคาเฉลี่ยของโรงแรมสำหรับรหัสระดับดาวแต่ละดวง",
    "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_en": "Show the average price of hotels for different pet policy.",
    "question_th": "แสดงราคาเฉลี่ยของโรงแรมสำหรับนโยบายสัตว์เลี้ยงต่างๆ",
    "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_en": "Show the id and star rating of each hotel, ordered by its price from low to high.",
    "question_th": "แสดงรหัสและระดับดาวของโรงแรมแต่ละแห่ง เรียงตามราคาจากต่ำไปสูง",
    "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_en": "Show the details of the top 3 most expensive hotels.",
    "question_th": "แสดงรายละเอียดของโรงแรมที่แพงที่สุด 3 อันดับแรก",
    "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_en": "Show the details and star ratings of the 3 least expensive hotels.",
    "question_th": "แสดงรายละเอียดและระดับดาวของโรงแรมที่ถูกที่สุด 3 แห่ง",
    "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_en": "Show the transportation method most people choose to get to tourist attractions.",
    "question_th": "แสดงวิธีการเดินทางที่คนส่วนใหญ่เลือกเดินทางไปยังสถานที่ท่องเที่ยว",
    "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_en": "Show the description and code of the attraction type most tourist attractions belong to.",
    "question_th": "แสดงคำอธิบายและรหัสของประเภทสถานที่ท่องเที่ยวที่นักท่องเที่ยวส่วนใหญ่อยู่",
    "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_en": "Show different ways to get to attractions and the number of attractions that can be accessed in the corresponding way.",
    "question_th": "แสดงวิธีเดินทางไปยังสถานที่ท่องเที่ยวต่างๆ และจำนวนสถานที่ท่องเที่ยวที่สามารถเข้าถึงได้ในลักษณะที่สอดคล้องกัน",
    "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_en": "Show different tourist attractions' names, ids, and the corresponding number of visits.",
    "question_th": "แสดงชื่อสถานที่ท่องเที่ยว รหัส และจำนวนการเข้าชมที่สอดคล้องกัน",
    "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_en": "Show the names and ids of tourist attractions that are visited at least two times.",
    "question_th": "แสดงชื่อและรหัสสถานที่ท่องเที่ยวที่มีการเยี่ยมชมอย่างน้อยสองครั้ง",
    "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_en": "Show the names and ids of tourist attractions that are visited at most once.",
    "question_th": "แสดงชื่อและรหัสของสถานที่ท่องเที่ยวที่มีการเยี่ยมชมมากที่สุดหนึ่งครั้ง",
    "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_en": "What are the names of tourist attractions that can be reached by walk or is at address 660 Shea Crescent?",
    "question_th": "สถานที่ท่องเที่ยวที่สามารถเดินถึงได้ชื่ออะไร หรืออยู่ที่ 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_en": "What are the names of the tourist attractions that have parking or shopping as their feature details?",
    "question_th": "สถานที่ท่องเที่ยวที่มีที่จอดรถหรือแหล่งช้อปปิ้งมีชื่ออะไรบ้าง?",
    "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_en": "What are the names of tourist attractions that can be reached by bus or is at address 254 Ottilie Junction?",
    "question_th": "สถานที่ท่องเที่ยวที่สามารถเข้าถึงได้โดยรถประจำทางหรือตามที่อยู่ 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_en": "What are the names of the tourist attractions Vincent and Marcelle visit?",
    "question_th": "สถานที่ท่องเที่ยวที่ Vincent และ Marcelle ไปเยี่ยมชมชื่ออะไร",
    "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_en": "What are the names of tourist attraction that Alison visited but Rosalind did not visit?",
    "question_th": "สถานที่ท่องเที่ยวที่อลิสันไปเยี่ยมแต่โรซาลินด์ไม่ได้ไปชื่ออะไร",
    "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_en": "How many tourists did not make any visit?",
    "question_th": "มีนักท่องเที่ยวไม่มาเยี่ยมชมกี่คน?",
    "context": "CREATE TABLE Visitors (Tourist_ID VARCHAR); CREATE TABLE Visits (Tourist_ID VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Video_games",
    "question_en": "How many video games exist?",
    "question_th": "มีวิดีโอเกมกี่เกม?",
    "context": "CREATE TABLE Video_games (Id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT gtype) FROM Video_games",
    "question_en": "How many video game types exist?",
    "question_th": "วิดีโอเกมมีกี่ประเภท?",
    "context": "CREATE TABLE Video_games (gtype VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT gtype FROM Video_games",
    "question_en": "Show all video game types.",
    "question_th": "แสดงวิดีโอเกมทุกประเภท",
    "context": "CREATE TABLE Video_games (gtype VARCHAR)"
  },
  {
    "answer": "SELECT gname, gtype FROM Video_games ORDER BY gname",
    "question_en": "Show all video games and their types in the order of their names.",
    "question_th": "แสดงวิดีโอเกมทั้งหมดและประเภทตามลำดับชื่อ",
    "context": "CREATE TABLE Video_games (gname VARCHAR, gtype VARCHAR)"
  },
  {
    "answer": "SELECT gname FROM Video_games WHERE gtype = \"Collectible card game\"",
    "question_en": "Show all video games with type Collectible card game.",
    "question_th": "แสดงวิดีโอเกมทั้งหมดประเภทเกมไพ่สะสม",
    "context": "CREATE TABLE Video_games (gname VARCHAR, gtype VARCHAR)"
  },
  {
    "answer": "SELECT gtype FROM Video_games WHERE gname = \"Call of Destiny\"",
    "question_en": "What is the type of video game Call of Destiny.",
    "question_th": "วิดีโอเกมประเภท 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_en": "How many video games have type Massively multiplayer online game?",
    "question_th": "มีวิดีโอเกมกี่เกมที่มีประเภทเกมออนไลน์ที่มีผู้เล่นหลายคนจำนวนมาก?",
    "context": "CREATE TABLE Video_games (gtype VARCHAR)"
  },
  {
    "answer": "SELECT gtype, COUNT(*) FROM Video_games GROUP BY gtype",
    "question_en": "Show all video game types and the number of video games in each type.",
    "question_th": "แสดงวิดีโอเกมทุกประเภทและจำนวนวิดีโอเกมในแต่ละประเภท",
    "context": "CREATE TABLE Video_games (gtype VARCHAR)"
  },
  {
    "answer": "SELECT gtype FROM Video_games GROUP BY gtype ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "Which game type has most number of games?",
    "question_th": "เกมประเภทใดที่มีจำนวนเกมมากที่สุด?",
    "context": "CREATE TABLE Video_games (gtype VARCHAR)"
  },
  {
    "answer": "SELECT gtype FROM Video_games GROUP BY gtype ORDER BY COUNT(*) LIMIT 1",
    "question_en": "Which game type has least number of games?",
    "question_th": "เกมประเภทใดมีจำนวนเกมน้อยที่สุด?",
    "context": "CREATE TABLE Video_games (gtype VARCHAR)"
  },
  {
    "answer": "SELECT StuID FROM Student WHERE city_code = \"CHI\"",
    "question_en": "Show ids for all students who live in CHI.",
    "question_th": "แสดงรหัสสำหรับนักเรียนทุกคนที่อาศัยอยู่ใน CHI",
    "context": "CREATE TABLE Student (StuID VARCHAR, city_code VARCHAR)"
  },
  {
    "answer": "SELECT StuID FROM Student WHERE Advisor = 1121",
    "question_en": "Show ids for all students who have advisor 1121.",
    "question_th": "แสดงรหัสสำหรับนักเรียนทุกคนที่มีที่ปรึกษา 1121",
    "context": "CREATE TABLE Student (StuID VARCHAR, Advisor VARCHAR)"
  },
  {
    "answer": "SELECT Fname FROM Student WHERE Major = 600",
    "question_en": "Show first name for all students with major 600.",
    "question_th": "แสดงชื่อสำหรับนักเรียนทุกคนที่มีวิชาเอก 600",
    "context": "CREATE TABLE Student (Fname VARCHAR, Major VARCHAR)"
  },
  {
    "answer": "SELECT major, AVG(age), MIN(age), MAX(age) FROM Student GROUP BY major",
    "question_en": "Show the average, minimum, and maximum age for different majors.",
    "question_th": "แสดงอายุเฉลี่ย ต่ำสุด และสูงสุดสำหรับสาขาวิชาเอกต่างๆ",
    "context": "CREATE TABLE Student (major VARCHAR, age INTEGER)"
  },
  {
    "answer": "SELECT advisor FROM Student GROUP BY advisor HAVING COUNT(*) >= 2",
    "question_en": "Show all advisors who have at least two students.",
    "question_th": "แสดงที่ปรึกษาทั้งหมดที่มีนักเรียนอย่างน้อยสองคน",
    "context": "CREATE TABLE Student (advisor VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT sportname) FROM Sportsinfo",
    "question_en": "How many sports do we have?",
    "question_th": "เรามีกีฬากี่ประเภท?",
    "context": "CREATE TABLE Sportsinfo (sportname VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT StuID) FROM Sportsinfo",
    "question_en": "How many students play sports?",
    "question_th": "นักเรียนเล่นกีฬากี่คน?",
    "context": "CREATE TABLE Sportsinfo (StuID VARCHAR)"
  },
  {
    "answer": "SELECT StuID FROM Sportsinfo WHERE onscholarship = 'Y'",
    "question_en": "List ids for all student who are on scholarship.",
    "question_th": "ระบุรหัสสำหรับนักเรียนทุกคนที่ได้รับทุน",
    "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_en": "Show last names for all student who are on scholarship.",
    "question_th": "แสดงนามสกุลของนักเรียนที่ได้รับทุนทุกคน",
    "context": "CREATE TABLE Student (Lname VARCHAR, StuID VARCHAR); CREATE TABLE Sportsinfo (StuID VARCHAR, onscholarship VARCHAR)"
  },
  {
    "answer": "SELECT SUM(gamesplayed) FROM Sportsinfo",
    "question_en": "How many games are played for all students?",
    "question_th": "นักเรียนทุกคนเล่นเกมได้กี่เกม?",
    "context": "CREATE TABLE Sportsinfo (gamesplayed INTEGER)"
  },
  {
    "answer": "SELECT SUM(gamesplayed) FROM Sportsinfo WHERE sportname = \"Football\" AND onscholarship = 'Y'",
    "question_en": "How many games are played for all football games by students on scholarship?",
    "question_th": "นักเรียนที่ได้รับทุนการศึกษาเล่นเกมฟุตบอลทั้งหมดกี่เกม?",
    "context": "CREATE TABLE Sportsinfo (gamesplayed INTEGER, sportname VARCHAR, onscholarship VARCHAR)"
  },
  {
    "answer": "SELECT sportname, COUNT(*) FROM Sportsinfo GROUP BY sportname",
    "question_en": "Show all sport name and the number of students.",
    "question_th": "แสดงชื่อกีฬาและจำนวนนักเรียนทั้งหมด",
    "context": "CREATE TABLE Sportsinfo (sportname VARCHAR)"
  },
  {
    "answer": "SELECT StuID, COUNT(*), SUM(gamesplayed) FROM Sportsinfo GROUP BY StuID",
    "question_en": "Show all student IDs with the number of sports and total number of games played",
    "question_th": "แสดงบัตรนักศึกษาทั้งหมดพร้อมจำนวนกีฬาและจำนวนเกมที่เล่นทั้งหมด",
    "context": "CREATE TABLE Sportsinfo (StuID VARCHAR, gamesplayed INTEGER)"
  },
  {
    "answer": "SELECT StuID FROM Sportsinfo GROUP BY StuID HAVING SUM(hoursperweek) > 10",
    "question_en": "Show all student IDs with more than total 10 hours per week on all sports played.",
    "question_th": "แสดงบัตรประจำตัวนักเรียนทั้งหมดที่มีเวลาเล่นกีฬาทุกประเภทมากกว่า 10 ชั่วโมงต่อสัปดาห์",
    "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_en": "What is the first name and last name of the student who have most number of sports?",
    "question_th": "ชื่อและนามสกุลของนักเรียนที่มีกีฬามากที่สุดคืออะไร?",
    "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_en": "Which sport has most number of students on scholarship?",
    "question_th": "กีฬาใดที่มีนักเรียนได้รับทุนมากที่สุด?",
    "context": "CREATE TABLE Sportsinfo (sportname VARCHAR, onscholarship VARCHAR)"
  },
  {
    "answer": "SELECT StuID FROM Student EXCEPT SELECT StuID FROM Sportsinfo",
    "question_en": "Show student ids who don't have any sports.",
    "question_th": "แสดงบัตรนักศึกษาที่ไม่มีกีฬาใดๆ",
    "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_en": "Show student ids who are on scholarship and have major 600.",
    "question_th": "แสดงบัตรประจำตัวนักศึกษาที่มีทุนและมีวิชาเอก 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_en": "Show student ids who are female and play football.",
    "question_th": "แสดงบัตรนักศึกษาที่เป็นเพศหญิงและเล่นฟุตบอล",
    "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_en": "Show all male student ids who don't play football.",
    "question_th": "แสดงรหัสนักศึกษาชายที่ไม่เล่นฟุตบอลทั้งหมด",
    "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_en": "Show total hours per week and number of games played for student David Shieber.",
    "question_th": "แสดงชั่วโมงทั้งหมดต่อสัปดาห์และจำนวนเกมที่เล่นสำหรับนักเรียน 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_en": "Show total hours per week and number of games played for students under 20.",
    "question_th": "แสดงชั่วโมงรวมต่อสัปดาห์และจำนวนเกมที่เล่นสำหรับนักเรียนอายุต่ำกว่า 20 ปี",
    "context": "CREATE TABLE Student (StuID VARCHAR, age INTEGER); CREATE TABLE Sportsinfo (StuID VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT StuID) FROM Plays_games",
    "question_en": "How many students play video games?",
    "question_th": "นักเรียนเล่นวิดีโอเกมกี่คน?",
    "context": "CREATE TABLE Plays_games (StuID VARCHAR)"
  },
  {
    "answer": "SELECT StuID FROM Student EXCEPT SELECT StuID FROM Plays_games",
    "question_en": "Show ids of students who don't play video game.",
    "question_th": "แสดงรหัสนักเรียนที่ไม่เล่นวิดีโอเกม",
    "context": "CREATE TABLE Plays_games (StuID VARCHAR); CREATE TABLE Student (StuID VARCHAR)"
  },
  {
    "answer": "SELECT StuID FROM Sportsinfo INTERSECT SELECT StuID FROM Plays_games",
    "question_en": "Show ids of students who play video game and play sports.",
    "question_th": "แสดงรหัสนักเรียนที่เล่นวิดีโอเกมและเล่นกีฬา",
    "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_en": "Show all game ids and the number of hours played.",
    "question_th": "แสดงรหัสเกมทั้งหมดและจำนวนชั่วโมงที่เล่น",
    "context": "CREATE TABLE Plays_games (gameid VARCHAR, hours_played INTEGER)"
  },
  {
    "answer": "SELECT Stuid, SUM(hours_played) FROM Plays_games GROUP BY Stuid",
    "question_en": "Show all student ids and the number of hours played.",
    "question_th": "แสดงรหัสนักศึกษาทั้งหมดและจำนวนชั่วโมงที่เล่น",
    "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_en": "Show the game name that has most number of hours played.",
    "question_th": "แสดงชื่อเกมที่มีจำนวนชั่วโมงเล่นมากที่สุด",
    "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_en": "Show all game names played by at least 1000 hours.",
    "question_th": "แสดงชื่อเกมทั้งหมดที่เล่นอย่างน้อย 1,000 ชั่วโมง",
    "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_en": "Show all game names played by Linda Smith",
    "question_th": "แสดงชื่อเกมทั้งหมดที่เล่นโดย 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_en": "Find the last and first name of students who are playing Football or Lacrosse.",
    "question_th": "ค้นหานามสกุลและชื่อของนักเรียนที่กำลังเล่นฟุตบอลหรือลาครอส",
    "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_en": "Find the first name and age of the students who are playing both Football and Lacrosse.",
    "question_th": "ค้นหาชื่อและอายุของนักเรียนที่กำลังเล่นทั้งฟุตบอลและลาครอส",
    "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_en": "Find the last name and gender of the students who are playing both Call of Destiny and Works of Widenius games.",
    "question_th": "ค้นหานามสกุลและเพศของนักเรียนที่กำลังเล่นเกม Call of Destiny และ Works of Widenius",
    "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_en": "Find the name of all customers.",
    "question_th": "ค้นหาชื่อของลูกค้าทั้งหมด",
    "context": "CREATE TABLE customers (customer_name VARCHAR)"
  },
  {
    "answer": "SELECT AVG(order_quantity) FROM order_items",
    "question_en": "What is the average amount of items ordered in each order?",
    "question_th": "จำนวนสินค้าที่สั่งซื้อโดยเฉลี่ยในแต่ละคำสั่งซื้อคือเท่าใด",
    "context": "CREATE TABLE order_items (order_quantity INTEGER)"
  },
  {
    "answer": "SELECT customer_name FROM customers WHERE payment_method = \"Cash\"",
    "question_en": "What are the names of customers who use payment method \"Cash\"?",
    "question_th": "ลูกค้าที่ใช้วิธีการชำระเงินแบบ \"เงินสด\" มีชื่ออะไรบ้าง?",
    "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_en": "Find the \"date became customers\" of the customers whose ID is between 10 and 20.",
    "question_th": "ค้นหา \"วันที่กลายเป็นลูกค้า\" ของลูกค้าที่มี ID อยู่ระหว่าง 10 ถึง 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_en": "Which payment method is used by most customers?",
    "question_th": "ลูกค้าส่วนใหญ่ใช้วิธีการชำระเงินแบบใด?",
    "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_en": "What are the names of customers using the most popular payment method?",
    "question_th": "ลูกค้าที่ใช้วิธีการชำระเงินที่ได้รับความนิยมมากที่สุดชื่ออะไร?",
    "context": "CREATE TABLE customers (customer_name VARCHAR, payment_method VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT payment_method FROM customers",
    "question_en": "What are all the payment methods?",
    "question_th": "วิธีการชำระเงินทั้งหมดมีอะไรบ้าง?",
    "context": "CREATE TABLE customers (payment_method VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT product_details FROM products",
    "question_en": "What are the details of all products?",
    "question_th": "รายละเอียดสินค้าทั้งหมดมีอะไรบ้าง?",
    "context": "CREATE TABLE products (product_details VARCHAR)"
  },
  {
    "answer": "SELECT customer_name FROM customers WHERE customer_name LIKE \"%Alex%\"",
    "question_en": "Find the name of all customers whose name contains \"Alex\".",
    "question_th": "ค้นหาชื่อของลูกค้าทั้งหมดที่มีชื่อเป็น \"อเล็กซ์\"",
    "context": "CREATE TABLE customers (customer_name VARCHAR)"
  },
  {
    "answer": "SELECT product_details FROM products WHERE product_details LIKE \"%Latte%\" OR product_details LIKE \"%Americano%\"",
    "question_en": "Find the detail of products whose detail contains the word \"Latte\" or the word \"Americano\"",
    "question_th": "ค้นหารายละเอียดสินค้าที่มีรายละเอียดคำว่า \"Latte\" หรือคำว่า \"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_en": "What is the address content of the customer named \"Maudie Kertzmann\"?",
    "question_th": "เนื้อหาที่อยู่ของลูกค้าชื่อ \"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_en": "How many customers are living in city \"Lake Geovannyton\"?",
    "question_th": "มีลูกค้ากี่คนที่อาศัยอยู่ในเมือง \"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_en": "Find the name of customers who are living in Colorado?",
    "question_th": "ค้นหาชื่อลูกค้าที่อาศัยอยู่ในโคโลราโด?",
    "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_en": "Find the list of cities that no customer is living in.",
    "question_th": "ค้นหารายชื่อเมืองที่ไม่มีลูกค้าอาศัยอยู่",
    "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_en": "Which city has the most customers living in?",
    "question_th": "เมืองใดมีลูกค้าอาศัยอยู่มากที่สุด?",
    "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_en": "Find the city with post code 255.",
    "question_th": "ค้นหาเมืองด้วยรหัสไปรษณีย์ 255",
    "context": "CREATE TABLE addresses (city VARCHAR, zip_postcode VARCHAR)"
  },
  {
    "answer": "SELECT state_province_county, country FROM addresses WHERE zip_postcode LIKE \"4%\"",
    "question_en": "Find the state and country of all cities with post code starting with 4.",
    "question_th": "ค้นหารัฐและประเทศของเมืองทั้งหมดด้วยรหัสไปรษณีย์ที่ขึ้นต้นด้วย 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_en": "List the countries having more than 4 addresses listed.",
    "question_th": "รายชื่อประเทศที่มีที่อยู่มากกว่า 4 รายการ",
    "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_en": "List all the contact channel codes that were used less than 5 times.",
    "question_th": "แสดงรายการรหัสช่องทางการติดต่อทั้งหมดที่ใช้น้อยกว่า 5 ครั้ง",
    "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_en": "Which contact channel has been used by the customer with name \"Tillman Ernser\"?",
    "question_th": "ลูกค้าชื่อ \"ทิลแมน เอิร์นเซอร์\" ใช้ช่องทางการติดต่อใด?",
    "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_en": "What is the \"active to date\" of the latest contact channel used by \"Tillman Ernser\"?",
    "question_th": "\"ใช้งานจนถึงปัจจุบัน\" ของช่องทางการติดต่อล่าสุดที่ใช้โดย \"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_en": "What is the average time span of contact channels in the database?",
    "question_th": "ช่องทางการติดต่อในฐานข้อมูลมีระยะเวลาเฉลี่ยเท่าใด",
    "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_en": "What is the channel code and contact number of the customer contact channel that was active for the longest time?",
    "question_th": "รหัสช่องทางและเบอร์ติดต่อของช่องทางการติดต่อลูกค้าที่ใช้งานนานที่สุดคืออะไร?",
    "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_en": "Find the name and active date of the customer that use email as the contact channel.",
    "question_th": "ค้นหาชื่อและวันที่ใช้งานของลูกค้าที่ใช้อีเมลเป็นช่องทางการติดต่อ",
    "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_en": "What is the name of the customer that made the order with the largest quantity?",
    "question_th": "ลูกค้าที่สั่งสินค้าจำนวนมากที่สุดชื่ออะไร?",
    "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_en": "What is the name of the customer that has purchased the most items?",
    "question_th": "ชื่อของลูกค้าที่ซื้อสินค้ามากที่สุดคืออะไร?",
    "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_en": "What is the payment method of the customer that has purchased the least quantity of items?",
    "question_th": "วิธีการชำระเงินของลูกค้าที่ซื้อสินค้าจำนวนน้อยที่สุดคืออะไร?",
    "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_en": "How many types of products have Rodrick Heaney bought in total?",
    "question_th": "Rodrick Heaney ซื้อผลิตภัณฑ์ทั้งหมดกี่ประเภท",
    "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_en": "What is the total quantity of products purchased by \"Rodrick Heaney\"?",
    "question_th": "จำนวนสินค้าทั้งหมดที่ซื้อโดย \"ร็อดริก ฮีนีย์\" คือเท่าใด",
    "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_en": "How many customers have at least one order with status \"Cancelled\"?",
    "question_th": "มีลูกค้ากี่รายที่มีคำสั่งซื้อที่มีสถานะ \"ยกเลิก\" อย่างน้อยหนึ่งรายการ",
    "context": "CREATE TABLE customer_orders (customer_id VARCHAR, order_status VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM customer_orders WHERE order_details = \"Second time\"",
    "question_en": "How many orders have detail \"Second time\"?",
    "question_th": "มีกี่ออเดอร์ที่มีรายละเอียด \"ครั้งที่สอง\"?",
    "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_en": "Find the customer name and date of the orders that have the status \"Delivered\".",
    "question_th": "ค้นหาชื่อลูกค้าและวันที่ของคำสั่งซื้อที่มีสถานะ \"จัดส่งแล้ว\"",
    "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_en": "What is the total number of products that are in orders with status \"Cancelled\"?",
    "question_th": "จำนวนสินค้าทั้งหมดที่อยู่ในคำสั่งซื้อที่มีสถานะ \"ยกเลิก\" คือเท่าใด",
    "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_en": "Find the total amount of products ordered before 2018-03-17 07:13:53.",
    "question_th": "ค้นหาจำนวนสินค้าทั้งหมดที่สั่งซื้อก่อน 17-03-2018 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_en": "Who made the latest order?",
    "question_th": "ใครสั่งล่าสุด?",
    "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_en": "Which product has been ordered most number of times?",
    "question_th": "สินค้าตัวไหนถูกสั่งบ่อยที่สุด?",
    "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_en": "Find the name and ID of the product whose total order quantity is the largest.",
    "question_th": "ค้นหาชื่อและรหัสของผลิตภัณฑ์ที่มีปริมาณการสั่งซื้อรวมมากที่สุด",
    "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_en": "Find all the addresses in East Julianaside, Texas or in Gleasonmouth, Arizona.",
    "question_th": "ค้นหาที่อยู่ทั้งหมดใน East Julianaside, Texas หรือใน 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_en": "Find the name of customers who did not pay with Cash.",
    "question_th": "ค้นหาชื่อลูกค้าที่ไม่ได้ชำระด้วยเงินสด",
    "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_en": "Find the names of customers who never ordered product Latte.",
    "question_th": "ค้นหาชื่อลูกค้าที่ไม่เคยสั่งผลิตภัณฑ์ 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_en": "Find the names of customers who never placed an order.",
    "question_th": "ค้นหาชื่อลูกค้าที่ไม่เคยสั่งซื้อ",
    "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_en": "Find the names of customers who ordered both products Latte and Americano.",
    "question_th": "ค้นหาชื่อลูกค้าที่สั่งสินค้าทั้ง Latte และ 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_en": "List the age of all music artists.",
    "question_th": "รายชื่ออายุของศิลปินเพลงทั้งหมด",
    "context": "CREATE TABLE artist (Age VARCHAR)"
  },
  {
    "answer": "SELECT AVG(Age) FROM artist",
    "question_en": "What is the average age of all artists?",
    "question_th": "อายุเฉลี่ยของศิลปินทั้งหมดคือเท่าไร?",
    "context": "CREATE TABLE artist (Age INTEGER)"
  },
  {
    "answer": "SELECT Famous_Title FROM artist WHERE Artist = \"Triumfall\"",
    "question_en": "What are the famous titles of the artist \"Triumfall\"?",
    "question_th": "ชื่อที่มีชื่อเสียงของศิลปิน \"Triumfall\" คืออะไร?",
    "context": "CREATE TABLE artist (Famous_Title VARCHAR, Artist VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT (Famous_Release_date) FROM artist",
    "question_en": "What are the distinct Famous release dates?",
    "question_th": "วันวางจำหน่ายที่มีชื่อเสียงที่แตกต่างกันคือวันใด?",
    "context": "CREATE TABLE artist (Famous_Release_date VARCHAR)"
  },
  {
    "answer": "SELECT Date_of_ceremony, RESULT FROM music_festival",
    "question_en": "Return the dates of ceremony and the results of all music festivals",
    "question_th": "ส่งคืนวันพิธีและผลเทศกาลดนตรีทั้งหมด",
    "context": "CREATE TABLE music_festival (Date_of_ceremony VARCHAR, RESULT VARCHAR)"
  },
  {
    "answer": "SELECT Category FROM music_festival WHERE RESULT = \"Awarded\"",
    "question_en": "What are the category of music festivals with result \"Awarded\"?",
    "question_th": "เทศกาลดนตรีประเภทใดบ้างที่มีผล \"ได้รับรางวัล\"?",
    "context": "CREATE TABLE music_festival (Category VARCHAR, RESULT VARCHAR)"
  },
  {
    "answer": "SELECT MAX(Weeks_on_Top), MIN(Weeks_on_Top) FROM volume",
    "question_en": "What are the maximum and minimum week on top of all volumes?",
    "question_th": "สัปดาห์สูงสุดและต่ำสุดนอกเหนือจากปริมาณทั้งหมดคือเท่าใด?",
    "context": "CREATE TABLE volume (Weeks_on_Top INTEGER)"
  },
  {
    "answer": "SELECT Song FROM volume WHERE Weeks_on_Top > 1",
    "question_en": "What are the songs in volumes with more than 1 week on top?",
    "question_th": "เพลงอะไรที่มียอดเกิน 1 สัปดาห์มีอะไรบ้าง?",
    "context": "CREATE TABLE volume (Song VARCHAR, Weeks_on_Top INTEGER)"
  },
  {
    "answer": "SELECT Song FROM volume ORDER BY Song",
    "question_en": "Please list all songs in volumes in ascending alphabetical order.",
    "question_th": "กรุณาระบุเพลงทั้งหมดในเล่มโดยเรียงตามตัวอักษรจากน้อยไปหามาก",
    "context": "CREATE TABLE volume (Song VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT Artist_ID) FROM volume",
    "question_en": "How many distinct artists do the volumes associate to?",
    "question_th": "หนังสือเล่มนี้เชื่อมโยงกับศิลปินที่แตกต่างกันกี่คน?",
    "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_en": "Please show the date of ceremony of the volumes that last more than 2 weeks on top.",
    "question_th": "กรุณาแสดงวันพิธีจัดเล่มที่มีอายุเกิน 2 สัปดาห์ ด้านบน",
    "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_en": "Please show the songs that have result \"nominated\" at music festivals.",
    "question_th": "กรุณาแสดงเพลงที่มีผล \"เสนอชื่อเข้าชิง\" ในเทศกาลดนตรี",
    "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_en": "What are the issue dates of volumes associated with the artist \"Gorgoroth\"?",
    "question_th": "เล่มที่เกี่ยวข้องกับศิลปิน \"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_en": "What are the songs in volumes associated with the artist aged 32 or older?",
    "question_th": "เพลงใดบ้างที่เกี่ยวข้องกับศิลปินอายุ 32 ปีขึ้นไป?",
    "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_en": "What is the average weeks on top of volumes associated with the artist aged 25 or younger?",
    "question_th": "สัปดาห์โดยเฉลี่ยนอกเหนือจากปริมาณที่เกี่ยวข้องกับศิลปินอายุ 25 ปีหรือน้อยกว่าคือเท่าใด",
    "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_en": "What are the famous title of the artists associated with volumes with more than 2 weeks on top?",
    "question_th": "ชื่อที่มีชื่อเสียงของศิลปินที่เกี่ยวข้องกับปริมาณมากกว่า 2 สัปดาห์คืออะไร?",
    "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_en": "Please list the age and famous title of artists in descending order of age.",
    "question_th": "โปรดระบุอายุและชื่อศิลปินที่มีชื่อเสียงโดยเรียงตามอายุจากมากไปน้อย",
    "context": "CREATE TABLE artist (Famous_Title VARCHAR, Age VARCHAR)"
  },
  {
    "answer": "SELECT Famous_Release_date FROM artist ORDER BY Age DESC LIMIT 1",
    "question_en": "What is the famous release date of the artist with the oldest age?",
    "question_th": "วันที่ออกฉายที่มีชื่อเสียงของศิลปินที่มีอายุมากที่สุดคือเมื่อใด?",
    "context": "CREATE TABLE artist (Famous_Release_date VARCHAR, Age VARCHAR)"
  },
  {
    "answer": "SELECT Category, COUNT(*) FROM music_festival GROUP BY Category",
    "question_en": "Please show the categories of the music festivals and the count.",
    "question_th": "กรุณาแสดงประเภทเทศกาลดนตรีและการนับ",
    "context": "CREATE TABLE music_festival (Category VARCHAR)"
  },
  {
    "answer": "SELECT RESULT FROM music_festival GROUP BY RESULT ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "What is the most common result of the music festival?",
    "question_th": "ผลลัพธ์ของเทศกาลดนตรีที่พบบ่อยที่สุดคืออะไร?",
    "context": "CREATE TABLE music_festival (RESULT VARCHAR)"
  },
  {
    "answer": "SELECT Category FROM music_festival GROUP BY Category HAVING COUNT(*) > 1",
    "question_en": "Please show the categories of the music festivals with count more than 1.",
    "question_th": "กรุณาแสดงหมวดหมู่เทศกาลดนตรีที่มีจำนวนมากกว่า 1",
    "context": "CREATE TABLE music_festival (Category VARCHAR)"
  },
  {
    "answer": "SELECT Song FROM volume ORDER BY Weeks_on_Top DESC LIMIT 1",
    "question_en": "What is the song in the volume with the maximum weeks on top?",
    "question_th": "เพลงในวอลุ่มที่มีจำนวนสัปดาห์อยู่สูงสุดคือเพลงอะไร?",
    "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_en": "Find the famous titles of artists that do not have any volume.",
    "question_th": "ค้นหาชื่อศิลปินชื่อดังที่ไม่มีเล่มใดเลย",
    "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_en": "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.",
    "question_th": "แสดงชื่อที่มีชื่อเสียงของศิลปินโดยมีทั้งเล่มที่กินเวลานานกว่า 2 สัปดาห์และเล่มที่อยู่ด้านบนน้อยกว่า 2 สัปดาห์",
    "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_en": "What are the date of ceremony of music festivals with category \"Best Song\" and result \"Awarded\"?",
    "question_th": "พิธีจัดงานเทศกาลดนตรีประเภท \"เพลงยอดเยี่ยม\" และผลรางวัล \"ได้รับรางวัล\" คือวันไหน?",
    "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_en": "What is the issue date of the volume with the minimum weeks on top?",
    "question_th": "วันที่ออกวอลุ่มโดยมีสัปดาห์ขั้นต่ำอยู่ด้านบนคือเมื่อใด",
    "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_en": "Please show the results of music festivals and the number of music festivals that have had each, ordered by this count.",
    "question_th": "กรุณาแสดงผลเทศกาลดนตรีและจำนวนเทศกาลดนตรีที่มีแต่ละเทศกาลโดยเรียงลำดับตามนี้",
    "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_en": "What are the issue dates of volumes associated with the artist aged 23 or younger?",
    "question_th": "เล่มที่เกี่ยวข้องกับศิลปินที่มีอายุ 23 ปีหรือต่ำกว่าจะออกเมื่อใด",
    "context": "CREATE TABLE volume (Artist_ID VARCHAR); CREATE TABLE artist (Artist_ID VARCHAR, age VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM roller_coaster",
    "question_en": "How many roller coasters are there?",
    "question_th": "รถไฟเหาะมีกี่อัน?",
    "context": "CREATE TABLE roller_coaster (Id VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM roller_coaster ORDER BY LENGTH",
    "question_en": "List the names of roller coasters by ascending order of length.",
    "question_th": "รายชื่อรถไฟเหาะเรียงตามความยาวจากน้อยไปหามาก",
    "context": "CREATE TABLE roller_coaster (Name VARCHAR, LENGTH VARCHAR)"
  },
  {
    "answer": "SELECT LENGTH, Height FROM roller_coaster",
    "question_en": "What are the lengths and heights of roller coasters?",
    "question_th": "รถไฟเหาะมีความยาวและสูงเท่าไร?",
    "context": "CREATE TABLE roller_coaster (LENGTH VARCHAR, Height VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM country WHERE Languages <> \"German\"",
    "question_en": "List the names of countries whose language is not \"German\".",
    "question_th": "รายชื่อประเทศที่ภาษาไม่ใช่ \"เยอรมัน\"",
    "context": "CREATE TABLE country (Name VARCHAR, Languages VARCHAR)"
  },
  {
    "answer": "SELECT Status FROM roller_coaster WHERE LENGTH > 3300 OR Height > 100",
    "question_en": "Show the statuses of roller coasters longer than 3300 or higher than 100.",
    "question_th": "แสดงสถานะของรถไฟเหาะที่ยาวกว่า 3300 หรือสูงกว่า 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_en": "What are the speeds of the longest roller coaster?",
    "question_th": "รถไฟเหาะที่ยาวที่สุดมีความเร็วเท่าไร?",
    "context": "CREATE TABLE roller_coaster (Speed VARCHAR, LENGTH VARCHAR)"
  },
  {
    "answer": "SELECT AVG(Speed) FROM roller_coaster",
    "question_en": "What is the average speed of roller coasters?",
    "question_th": "รถไฟเหาะตีลังกามีความเร็วเฉลี่ยเท่าไร?",
    "context": "CREATE TABLE roller_coaster (Speed INTEGER)"
  },
  {
    "answer": "SELECT Status, COUNT(*) FROM roller_coaster GROUP BY Status",
    "question_en": "Show the different statuses and the numbers of roller coasters for each status.",
    "question_th": "แสดงสถานะต่างๆ และจำนวนรถไฟเหาะสำหรับแต่ละสถานะ",
    "context": "CREATE TABLE roller_coaster (Status VARCHAR)"
  },
  {
    "answer": "SELECT Status FROM roller_coaster GROUP BY Status ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "Please show the most common status of roller coasters.",
    "question_th": "โปรดแสดงสถานะรถไฟเหาะที่พบบ่อยที่สุด",
    "context": "CREATE TABLE roller_coaster (Status VARCHAR)"
  },
  {
    "answer": "SELECT Status FROM roller_coaster GROUP BY Status HAVING COUNT(*) > 2",
    "question_en": "List the status shared by more than two roller coaster.",
    "question_th": "แสดงรายการสถานะที่ใช้ร่วมกันโดยรถไฟเหาะมากกว่าสองเครื่อง",
    "context": "CREATE TABLE roller_coaster (Status VARCHAR)"
  },
  {
    "answer": "SELECT Park FROM roller_coaster ORDER BY Speed DESC LIMIT 1",
    "question_en": "Show the park of the roller coaster with the highest speed.",
    "question_th": "แสดงการจอดรถไฟเหาะด้วยความเร็วสูงสุด",
    "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_en": "Show the names of roller coasters and names of country they are in.",
    "question_th": "แสดงชื่อรถไฟเหาะและชื่อประเทศที่รถไฟเหาะอยู่",
    "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_en": "Show the names of countries that have more than one roller coaster.",
    "question_th": "แสดงชื่อประเทศที่มีรถไฟเหาะมากกว่าหนึ่งแห่ง",
    "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_en": "Show the name and population of the country that has the highest roller coaster.",
    "question_th": "แสดงชื่อและประชากรของประเทศที่มีรถไฟเหาะสูงที่สุด",
    "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_en": "Show the names of countries and the average speed of roller coasters from each country.",
    "question_th": "แสดงชื่อประเทศและความเร็วเฉลี่ยของรถไฟเหาะของแต่ละประเทศ",
    "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_en": "How many countries do not have an roller coaster longer than 3000?",
    "question_th": "มีกี่ประเทศที่ไม่มีรถไฟเหาะยาวเกิน 3,000 รถไฟเหาะ?",
    "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_en": "What are the country names, area and population which has both roller coasters with speed higher",
    "question_th": "ชื่อประเทศ พื้นที่ และจำนวนประชากรที่มีรถไฟเหาะทั้งสองคันมีความเร็วสูงกว่านั้นคืออะไรบ้าง",
    "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_en": "How many different captain ranks are there?",
    "question_th": "มีระดับกัปตันที่แตกต่างกันกี่ระดับ?",
    "context": "CREATE TABLE captain (rank VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*), rank FROM captain GROUP BY rank",
    "question_en": "How many captains are in each rank?",
    "question_th": "แต่ละระดับมีกัปตันกี่คน?",
    "context": "CREATE TABLE captain (rank VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*), rank FROM captain WHERE age < 50 GROUP BY rank",
    "question_en": "How many captains with younger than 50 are in each rank?",
    "question_th": "แต่ละระดับจะมีกัปตันที่อายุน้อยกว่า 50 ปีกี่คน?",
    "context": "CREATE TABLE captain (rank VARCHAR, age INTEGER)"
  },
  {
    "answer": "SELECT name FROM captain ORDER BY age DESC",
    "question_en": "Sort all captain names by their ages from old to young.",
    "question_th": "จัดเรียงชื่อกัปตันทั้งหมดตามอายุตั้งแต่อายุมากจนถึงอายุน้อย",
    "context": "CREATE TABLE captain (name VARCHAR, age VARCHAR)"
  },
  {
    "answer": "SELECT name, CLASS, rank FROM captain",
    "question_en": "Find the name, class and rank of all captains.",
    "question_th": "ค้นหาชื่อ คลาส และยศของกัปตันทั้งหมด",
    "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_en": "Which rank is the most common among captains?",
    "question_th": "อันดับใดที่พบมากที่สุดในหมู่กัปตัน?",
    "context": "CREATE TABLE captain (rank VARCHAR)"
  },
  {
    "answer": "SELECT CLASS FROM captain GROUP BY CLASS HAVING COUNT(*) > 2",
    "question_en": "Which classes have more than two captains?",
    "question_th": "คลาสใดมีกัปตันมากกว่าสองคน?",
    "context": "CREATE TABLE captain (CLASS VARCHAR)"
  },
  {
    "answer": "SELECT name FROM captain WHERE rank = 'Midshipman' OR rank = 'Lieutenant'",
    "question_en": "Find the name of captains whose rank are either Midshipman or Lieutenant.",
    "question_th": "ค้นหาชื่อกัปตันที่มียศเป็นนายเรือหรือผู้หมวด",
    "context": "CREATE TABLE captain (name VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT AVG(age), MIN(age), CLASS FROM captain GROUP BY CLASS",
    "question_en": "What are the average and minimum age of captains in different class?",
    "question_th": "อายุเฉลี่ยและขั้นต่ำของกัปตันในแต่ละคลาสคือเท่าไร?",
    "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_en": "Find the captain rank that has some captains in both Cutter and Armed schooner classes.",
    "question_th": "ค้นหาตำแหน่งกัปตันที่มีกัปตันบางส่วนในคลาสเครื่องตัดและเรือใบติดอาวุธ",
    "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_en": "Find the captain rank that has no captain in Third-rate ship of the line class.",
    "question_th": "ค้นหายศกัปตันที่ไม่มีกัปตันในเรืออัตราที่สามของชั้นสาย",
    "context": "CREATE TABLE captain (rank VARCHAR, CLASS VARCHAR)"
  },
  {
    "answer": "SELECT name FROM captain ORDER BY age LIMIT 1",
    "question_en": "What is the name of the youngest captain?",
    "question_th": "กัปตันที่อายุน้อยที่สุดชื่ออะไร?",
    "context": "CREATE TABLE captain (name VARCHAR, age VARCHAR)"
  },
  {
    "answer": "SELECT name, TYPE, flag FROM ship ORDER BY built_year DESC LIMIT 1",
    "question_en": "Find the name, type, and flag of the ship that is built in the most recent year.",
    "question_th": "ค้นหาชื่อ ประเภท และธงของเรือที่สร้างขึ้นในปีล่าสุด",
    "context": "CREATE TABLE ship (name VARCHAR, TYPE VARCHAR, flag VARCHAR, built_year VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*), flag FROM ship GROUP BY flag",
    "question_en": "Group by ships by flag, and return number of ships that have each flag.",
    "question_th": "จัดกลุ่มตามเรือตามธง และส่งคืนจำนวนเรือที่มีแต่ละธง",
    "context": "CREATE TABLE ship (flag VARCHAR)"
  },
  {
    "answer": "SELECT flag FROM ship GROUP BY flag ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "Which flag is most widely used among all ships?",
    "question_th": "ธงใดที่ใช้กันอย่างแพร่หลายมากที่สุดในบรรดาเรือทุกลำ?",
    "context": "CREATE TABLE ship (flag VARCHAR)"
  },
  {
    "answer": "SELECT name FROM ship ORDER BY built_year, CLASS",
    "question_en": "List all ship names in the order of built year and class.",
    "question_th": "ระบุชื่อเรือทั้งหมดตามลำดับปีและชั้นที่สร้าง",
    "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_en": "Find the ship type that are used by both ships with Panama and Malta flags.",
    "question_th": "ค้นหาประเภทเรือที่เรือทั้งสองลำใช้ซึ่งมีธงปานามาและมอลตา",
    "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_en": "In which year were most of ships built?",
    "question_th": "เรือส่วนใหญ่สร้างในปีใด?",
    "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_en": "Find the name of the ships that have more than one captain.",
    "question_th": "ค้นหาชื่อเรือที่มีกัปตันมากกว่าหนึ่งคน",
    "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_en": "what are the names and classes of the ships that do not have any captain yet?",
    "question_th": "เรือที่ยังไม่มีกัปตันมีชื่อและประเภทอะไรบ้าง?",
    "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_en": "Find the name of the ship that is steered by the youngest captain.",
    "question_th": "ค้นหาชื่อเรือที่กัปตันอายุน้อยที่สุดเป็นผู้นำ",
    "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_en": "Find the name and flag of ships that are not steered by any captain with Midshipman rank.",
    "question_th": "ค้นหาชื่อและธงของเรือที่ไม่ได้ควบคุมโดยกัปตันเรือระดับ Midshipman",
    "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_en": "Find the name of the ships that are steered by both a captain with Midshipman rank and a captain with Lieutenant rank.",
    "question_th": "ค้นหาชื่อเรือที่ควบคุมโดยทั้งกัปตันที่มียศ Midshipman และกัปตันที่มียศร้อยโท",
    "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_en": "What is id of the city that hosted events in the most recent year?",
    "question_th": "รหัสของเมืองที่จัดงานในปีล่าสุดคืออะไร?",
    "context": "CREATE TABLE hosting_city (host_city VARCHAR, YEAR VARCHAR)"
  },
  {
    "answer": "SELECT match_id FROM MATCH WHERE competition = \"1994 FIFA World Cup qualification\"",
    "question_en": "Find the match ids of the cities that hosted competition \"1994 FIFA World Cup qualification\"?",
    "question_th": "ค้นหารหัสการแข่งขันของเมืองที่เป็นเจ้าภาพการแข่งขัน \"ฟุตบอลโลก 1994 รอบคัดเลือก\" หรือไม่?",
    "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_en": "Find the cities which were once a host city after 2010?",
    "question_th": "ค้นหาเมืองที่ครั้งหนึ่งเคยเป็นเมืองเจ้าภาพหลังปี 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_en": "Which city has hosted the most events?",
    "question_th": "เมืองใดที่จัดงานมากที่สุด?",
    "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_en": "What is the venue of the competition \"1994 FIFA World Cup qualification\" hosted by \"Nanjing ( Jiangsu )\"?",
    "question_th": "สถานที่จัดการแข่งขัน \"ฟุตบอลโลก 1994 รอบคัดเลือก\" ซึ่งจัดโดย \"หนานจิง (เจียงซู)\" คือที่ไหน?",
    "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_en": "Give me the temperature of Shanghai in January.",
    "question_th": "ขออุณหภูมิเซี่ยงไฮ้เดือนมกราคมหน่อยค่ะ",
    "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_en": "What is the host year of city \"Taizhou ( Zhejiang )\"?",
    "question_th": "เมืองไท่โจว (เจ้อเจียง) เป็นเจ้าภาพในปีใด",
    "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_en": "Which three cities have the largest regional population?",
    "question_th": "เมืองใดสามเมืองใดที่มีประชากรในภูมิภาคมากที่สุด",
    "context": "CREATE TABLE city (city VARCHAR, regional_population VARCHAR)"
  },
  {
    "answer": "SELECT city, GDP FROM city ORDER BY GDP LIMIT 1",
    "question_en": "Which city has the lowest GDP? Please list the city name and its GDP.",
    "question_th": "เมืองใดมี GDP ต่ำที่สุด? โปรดระบุชื่อเมืองและ 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_en": "Which city has the highest temperature in February?",
    "question_th": "เมืองใดมีอุณหภูมิสูงสุดในเดือนกุมภาพันธ์",
    "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_en": "Give me a list of cities whose temperature in March is lower than that in July or higher than that in Oct?",
    "question_th": "ขอรายชื่อเมืองที่มีอุณหภูมิในเดือนมีนาคมต่ำกว่าเดือนกรกฎาคมหรือสูงกว่าเดือนตุลาคมหน่อยคะ?",
    "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_en": "Give me a list of cities whose temperature in Mar is lower than that in July and which have also served as host cities?",
    "question_th": "ขอรายชื่อเมืองที่มีอุณหภูมิในเดือนมีนาคมต่ำกว่าเดือนกรกฎาคมและเป็นเมืองเจ้าภาพด้วย?",
    "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_en": "Give me a list of cities whose temperature in Mar is lower than that in Dec and which have never been host cities.",
    "question_th": "ขอรายชื่อเมืองที่มีอุณหภูมิในเดือนมีนาคมต่ำกว่าเดือนธันวาคมและไม่เคยเป็นเมืองเจ้าภาพมาก่อน",
    "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_en": "Give me a list of cities whose temperature in Feb is higher than that in Jun or cities that were once host cities?",
    "question_th": "ขอรายชื่อเมืองที่มีอุณหภูมิในเดือนกุมภาพันธ์สูงกว่าในเดือนมิถุนายน หรือเมืองที่ครั้งหนึ่งเคยเป็นเมืองเจ้าภาพ?",
    "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_en": "Please give me a list of cities whose regional population is over 10000000.",
    "question_th": "โปรดระบุรายชื่อเมืองที่มีประชากรในภูมิภาคมากกว่า 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_en": "Please give me a list of cities whose regional population is over 8000000 or under 5000000.",
    "question_th": "โปรดระบุรายชื่อเมืองที่มีประชากรในภูมิภาคมากกว่า 8000000 หรือต่ำกว่า 5000000 คน",
    "context": "CREATE TABLE city (city VARCHAR, regional_population INTEGER)"
  },
  {
    "answer": "SELECT COUNT(*), Competition FROM MATCH GROUP BY Competition",
    "question_en": "Find the number of matches in different competitions.",
    "question_th": "ค้นหาจำนวนการแข่งขันในการแข่งขันต่างๆ",
    "context": "CREATE TABLE MATCH (Competition VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM MATCH ORDER BY date DESC",
    "question_en": "List venues of all matches in the order of their dates starting from the most recent one.",
    "question_th": "รายชื่อสถานที่ของการแข่งขันทั้งหมดตามลำดับวันที่โดยเริ่มจากนัดล่าสุด",
    "context": "CREATE TABLE MATCH (venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT gdp FROM city ORDER BY Regional_Population DESC LIMIT 1",
    "question_en": "what is the GDP of the city with the largest population.",
    "question_th": "GDP ของเมืองที่มีประชากรมากที่สุดคือเท่าใด",
    "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_en": "What are the GDP and population of the city that already served as a host more than once?",
    "question_th": "GDP และจำนวนประชากรของเมืองที่เป็นเจ้าภาพมากกว่าหนึ่งครั้งเป็นเท่าใด",
    "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_en": "List every individual's first name, middle name and last name in alphabetical order by last name.",
    "question_th": "ระบุชื่อ ชื่อกลาง และนามสกุลของแต่ละคนตามลำดับตัวอักษรตามนามสกุล",
    "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_en": "List all the types of forms.",
    "question_th": "แสดงรายการแบบฟอร์มทุกประเภท",
    "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_en": "Find the name of the most popular party form.",
    "question_th": "ค้นหาชื่อรูปแบบปาร์ตี้ที่ได้รับความนิยมสูงสุด",
    "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_en": "Find the payment method and phone of the party with email \"enrico09@example.com\".",
    "question_th": "ค้นหาวิธีการชำระเงินและหมายเลขโทรศัพท์ของฝ่ายด้วยอีเมล \"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_en": "Find the emails of parties with the most popular party form.",
    "question_th": "ค้นหาอีเมลของฝ่ายที่มีรูปแบบปาร์ตี้ยอดนิยม",
    "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_en": "List all the name of organizations in order of the date formed.",
    "question_th": "ระบุชื่อองค์กรทั้งหมดตามลำดับวันที่จัดทำ",
    "context": "CREATE TABLE organizations (organization_name VARCHAR, date_formed VARCHAR)"
  },
  {
    "answer": "SELECT organization_name FROM organizations ORDER BY date_formed DESC LIMIT 1",
    "question_en": "Find the name of the youngest organization.",
    "question_th": "ค้นหาชื่อขององค์กรที่อายุน้อยที่สุด",
    "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_en": "Find the last name of the latest contact individual of the organization \"Labour Party\".",
    "question_th": "ค้นหานามสกุลของบุคคลที่ติดต่อล่าสุดขององค์กร \"พรรคแรงงาน\"",
    "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_en": "Find the last name of the first ever contact person of the organization with the highest UK Vat number.",
    "question_th": "ค้นหานามสกุลของผู้ติดต่อคนแรกขององค์กรที่มีหมายเลข UK Vat สูงสุด",
    "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_en": "Find name of the services that has never been used.",
    "question_th": "ค้นหาชื่อบริการที่ไม่เคยใช้",
    "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_en": "Find the name of all the cities and states.",
    "question_th": "ค้นหาชื่อเมืองและรัฐทั้งหมด",
    "context": "CREATE TABLE addresses (town_city VARCHAR, state_province_county VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM addresses WHERE state_province_county = \"Colorado\"",
    "question_en": "How many cities are there in state \"Colorado\"?",
    "question_th": "รัฐ \"โคโลราโด\" มีกี่เมือง",
    "context": "CREATE TABLE addresses (state_province_county VARCHAR)"
  },
  {
    "answer": "SELECT payment_method_code FROM parties GROUP BY payment_method_code HAVING COUNT(*) > 3",
    "question_en": "Find the payment method code used by more than 3 parties.",
    "question_th": "ค้นหารหัสวิธีการชำระเงินที่ใช้โดยมากกว่า 3 ฝ่าย",
    "context": "CREATE TABLE parties (payment_method_code VARCHAR)"
  },
  {
    "answer": "SELECT organization_name FROM organizations WHERE organization_name LIKE \"%Party%\"",
    "question_en": "Find the name of organizations whose names contain \"Party\".",
    "question_th": "ค้นหาชื่อองค์กรที่มีชื่อประกอบด้วย \"พรรค\"",
    "context": "CREATE TABLE organizations (organization_name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT payment_method_code) FROM parties",
    "question_en": "How many distinct payment methods are used by parties?",
    "question_th": "ฝ่ายต่างๆ ใช้วิธีการชำระเงินที่แตกต่างกันกี่วิธี?",
    "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_en": "Which is the email of the party that has used the services the most number of times?",
    "question_th": "อีเมลของฝ่ายใดที่มีการใช้บริการมากที่สุดคืออีเมลใด",
    "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_en": "Which state can address \"6862 Kaitlyn Knolls\" possibly be in?",
    "question_th": "รัฐใดที่สามารถระบุ \"6862 Kaitlyn Knolls\" ได้",
    "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_en": "What is the name of organization that has the greatest number of contact individuals?",
    "question_th": "ชื่อขององค์กรที่มีจำนวนผู้ติดต่อมากที่สุดคืออะไร?",
    "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_en": "Find the last name of the individuals that have been contact individuals of an organization.",
    "question_th": "ค้นหานามสกุลของบุคคลที่ติดต่อกับบุคคลในองค์กร",
    "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_en": "How many drivers are there?",
    "question_th": "มีคนขับกี่คน?",
    "context": "CREATE TABLE driver (Id VARCHAR)"
  },
  {
    "answer": "SELECT name, home_city, age FROM driver",
    "question_en": "Show the name, home city, and age for all drivers.",
    "question_th": "แสดงชื่อ เมืองบ้านเกิด และอายุของผู้ขับขี่ทุกคน",
    "context": "CREATE TABLE driver (name VARCHAR, home_city VARCHAR, age VARCHAR)"
  },
  {
    "answer": "SELECT party, COUNT(*) FROM driver GROUP BY party",
    "question_en": "Show the party and the number of drivers in each party.",
    "question_th": "แสดงฝ่ายและจำนวนผู้ขับขี่ในแต่ละฝ่าย",
    "context": "CREATE TABLE driver (party VARCHAR)"
  },
  {
    "answer": "SELECT name FROM driver ORDER BY age DESC",
    "question_en": "Show the name of drivers in descending order of age.",
    "question_th": "แสดงชื่อผู้ขับขี่โดยเรียงตามอายุจากมากไปหาน้อย",
    "context": "CREATE TABLE driver (name VARCHAR, age VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT home_city FROM driver",
    "question_en": "Show all different home cities.",
    "question_th": "แสดงเมืองบ้านเกิดที่แตกต่างกันทั้งหมด",
    "context": "CREATE TABLE driver (home_city VARCHAR)"
  },
  {
    "answer": "SELECT home_city FROM driver GROUP BY home_city ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "Show the home city with the most number of drivers.",
    "question_th": "แสดงเมืองบ้านเกิดที่มีผู้ขับขี่มากที่สุด",
    "context": "CREATE TABLE driver (home_city VARCHAR)"
  },
  {
    "answer": "SELECT party FROM driver WHERE home_city = 'Hartford' AND age > 40",
    "question_en": "Show the party with drivers from Hartford and drivers older than 40.",
    "question_th": "แสดงปาร์ตี้พร้อมคนขับจากฮาร์ตฟอร์ดและคนขับที่มีอายุมากกว่า 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_en": "Show home city where at least two drivers older than 40 are from.",
    "question_th": "แสดงเมืองบ้านเกิดที่มีคนขับอย่างน้อยสองคนที่มีอายุมากกว่า 40 ปีมาจาก",
    "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_en": "Show all home cities except for those having a driver older than 40.",
    "question_th": "แสดงเมืองบ้านเกิดทั้งหมด ยกเว้นเมืองที่มีคนขับอายุมากกว่า 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_en": "Show the names of the drivers without a school bus.",
    "question_th": "แสดงชื่อผู้ขับขี่ที่ไม่มีรถโรงเรียน",
    "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_en": "Show the types of schools that have two schools.",
    "question_th": "แสดงประเภทของโรงเรียนที่มีสองโรงเรียน",
    "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_en": "Show the school name and driver name for all school buses.",
    "question_th": "แสดงชื่อโรงเรียนและชื่อคนขับรถของรถโรงเรียนทุกคัน",
    "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_en": "What is the maximum, minimum and average years spent working on a school bus?",
    "question_th": "ปีสูงสุด ต่ำสุด และเฉลี่ยที่ใช้ทำงานบนรถโรงเรียนคือเท่าใด",
    "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_en": "Show the school name and type for schools without a school bus.",
    "question_th": "แสดงชื่อโรงเรียนและประเภทโรงเรียนที่ไม่มีรถโรงเรียน",
    "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_en": "Show the type of school and the number of buses for each type.",
    "question_th": "แสดงประเภทโรงเรียนและจำนวนรถโดยสารแต่ละประเภท",
    "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_en": "How many drivers are from Hartford city or younger than 40?",
    "question_th": "มีคนขับกี่คนที่มาจากเมืองฮาร์ตฟอร์ดหรืออายุน้อยกว่า 40 ปี",
    "context": "CREATE TABLE driver (home_city VARCHAR, age VARCHAR)"
  },
  {
    "answer": "SELECT name FROM driver WHERE home_city = 'Hartford' AND age < 40",
    "question_en": "List names for drivers from Hartford city and younger than 40.",
    "question_th": "รายชื่อผู้ขับขี่จากเมืองฮาร์ตฟอร์ดและอายุน้อยกว่า 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_en": "find the name of driver who is driving the school bus with the longest working history.",
    "question_th": "ค้นหาชื่อคนขับรถโรงเรียนที่มีประวัติการทำงานยาวนานที่สุด",
    "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_en": "How many flights have a velocity larger than 200?",
    "question_th": "มีกี่เที่ยวบินที่มีความเร็วมากกว่า 200?",
    "context": "CREATE TABLE flight (velocity INTEGER)"
  },
  {
    "answer": "SELECT vehicle_flight_number, date, pilot FROM flight ORDER BY altitude",
    "question_en": "List the vehicle flight number, date and pilot of all the flights, ordered by altitude.",
    "question_th": "ระบุหมายเลขเที่ยวบินของยานพาหนะ วันที่ และนักบินของเที่ยวบินทั้งหมด เรียงตามระดับความสูง",
    "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_en": "List the id, country, city and name of the airports ordered alphabetically by the name.",
    "question_th": "ระบุรหัส ประเทศ เมือง และชื่อสนามบินโดยเรียงตามตัวอักษรชื่อ",
    "context": "CREATE TABLE airport (id VARCHAR, country VARCHAR, city VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT MAX(group_equity_shareholding) FROM operate_company",
    "question_en": "What is maximum group equity shareholding of the companies?",
    "question_th": "การถือหุ้นของกลุ่มบริษัทสูงสุดคือเท่าใด",
    "context": "CREATE TABLE operate_company (group_equity_shareholding INTEGER)"
  },
  {
    "answer": "SELECT AVG(velocity) FROM flight WHERE pilot = 'Thompson'",
    "question_en": "What is the velocity of the pilot named 'Thompson'?",
    "question_th": "นักบินชื่อ 'ทอมป์สัน' มีความเร็วเท่าใด?",
    "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_en": "What are the names and types of the companies that have ever operated a flight?",
    "question_th": "บริษัทที่เคยให้บริการเที่ยวบินมีชื่อและประเภทใดบ้าง",
    "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_en": "What are the names of the airports which are not in the country 'Iceland'?",
    "question_th": "สนามบินที่ไม่ได้อยู่ในประเทศ 'ไอซ์แลนด์' ชื่ออะไร?",
    "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_en": "What are the distinct types of the companies that have operated any flights with velocity less than 200?",
    "question_th": "บริษัทประเภทใดบ้างที่ให้บริการเที่ยวบินด้วยความเร็วน้อยกว่า 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_en": "What are the ids and names of the companies that operated more than one flight?",
    "question_th": "รหัสและชื่อของบริษัทที่ให้บริการมากกว่าหนึ่งเที่ยวบินคืออะไร?",
    "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_en": "What is the id, name and IATA code of the airport that had most number of flights?",
    "question_th": "หมายเลขประจำตัว ชื่อ และรหัส IATA ของสนามบินที่มีจำนวนเที่ยวบินมากที่สุดคืออะไร",
    "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_en": "What are the different pilot names who had piloted a flight in the country 'United States' or in the airport named 'Billund Airport'?",
    "question_th": "นักบินที่เคยทำการบินในประเทศ 'สหรัฐอเมริกา' หรือในสนามบินชื่อ 'สนามบินบิลลันด์' มีชื่ออะไรบ้าง",
    "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_en": "What is the most common company type, and how many are there?",
    "question_th": "บริษัทประเภทใดที่พบบ่อยที่สุด และมีกี่บริษัท?",
    "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_en": "How many airports haven't the pilot 'Thompson' driven an aircraft?",
    "question_th": "มีกี่สนามบินที่นักบิน 'ทอมป์สัน' ไม่ได้ขับเครื่องบิน?",
    "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_en": "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.",
    "question_th": "ระบุชื่อนักบินที่บินให้กับทั้งบริษัทที่ให้บริการ 'ขนส่งสินค้า' เป็นหลัก และบริษัทที่ดำเนินกิจกรรม 'บริการจัดเลี้ยง'",
    "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_en": "Which of the airport names contains the word 'international'?",
    "question_th": "ชื่อสนามบินใดมีคำว่า 'นานาชาติ'",
    "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_en": "How many companies operates airlines in each airport?",
    "question_th": "แต่ละสนามบินมีสายการบินกี่บริษัท?",
    "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_en": "how many airports are there in each country?",
    "question_th": "แต่ละประเทศมีสนามบินกี่แห่ง?",
    "context": "CREATE TABLE airport (country VARCHAR)"
  },
  {
    "answer": "SELECT country FROM airport GROUP BY country HAVING COUNT(*) > 2",
    "question_en": "which countries have more than 2 airports?",
    "question_th": "ประเทศใดมีสนามบินมากกว่า 2 แห่ง?",
    "context": "CREATE TABLE airport (country VARCHAR)"
  },
  {
    "answer": "SELECT pilot FROM flight GROUP BY pilot ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "which pilot is in charge of the most number of flights?",
    "question_th": "นักบินคนไหนที่ดูแลเที่ยวบินมากที่สุด?",
    "context": "CREATE TABLE flight (pilot VARCHAR)"
  },
  {
    "answer": "SELECT account_id, account_details FROM Accounts",
    "question_en": "Show all account ids and account details.",
    "question_th": "แสดงรหัสบัญชีและรายละเอียดบัญชีทั้งหมด",
    "context": "CREATE TABLE Accounts (account_id VARCHAR, account_details VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Statements",
    "question_en": "How many statements do we have?",
    "question_th": "เรามีงบกี่ข้อ?",
    "context": "CREATE TABLE Statements (Id VARCHAR)"
  },
  {
    "answer": "SELECT STATEMENT_ID, statement_details FROM Statements",
    "question_en": "List all statement ids and statement details.",
    "question_th": "แสดงรายการรหัสคำสั่งและรายละเอียดคำสั่งทั้งหมด",
    "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_en": "Show statement id, statement detail, account detail for accounts.",
    "question_th": "แสดง ID ใบแจ้งยอด รายละเอียดใบแจ้งยอด รายละเอียดบัญชี",
    "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_en": "Show all statement id and the number of accounts for each statement.",
    "question_th": "แสดงรหัสใบแจ้งยอดทั้งหมดและจำนวนบัญชีสำหรับแต่ละใบแจ้งยอด",
    "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_en": "Show the statement id and the statement detail for the statement with most number of accounts.",
    "question_th": "แสดงรหัสใบแจ้งยอดและรายละเอียดใบแจ้งยอดของใบแจ้งยอดที่มีจำนวนบัญชีมากที่สุด",
    "context": "CREATE TABLE Accounts (statement_id VARCHAR); CREATE TABLE Statements (statement_details VARCHAR, statement_id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Documents",
    "question_en": "Show the number of documents.",
    "question_th": "แสดงจำนวนเอกสาร",
    "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_en": "List the document type code, document name, and document description for the document with name 'Noel CV' or name 'King Book'.",
    "question_th": "ระบุรหัสประเภทเอกสาร ชื่อเอกสาร และคำอธิบายเอกสารสำหรับเอกสารชื่อ 'Noel CV' หรือชื่อ '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_en": "Show the ids and names of all documents.",
    "question_th": "แสดงรหัสและชื่อของเอกสารทั้งหมด",
    "context": "CREATE TABLE Documents (document_id VARCHAR, document_name VARCHAR)"
  },
  {
    "answer": "SELECT document_name, document_id FROM Documents WHERE document_type_code = \"BK\"",
    "question_en": "Find names and ids of all documents with document type code BK.",
    "question_th": "ค้นหาชื่อและรหัสของเอกสารทั้งหมดด้วยรหัสประเภทเอกสาร 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_en": "How many documents are with document type code BK for each product id?",
    "question_th": "รหัสประเภทเอกสาร BK สำหรับแต่ละรหัสผลิตภัณฑ์มีเอกสารจำนวนเท่าใด",
    "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_en": "Show the document name and the document date for all documents on project with details 'Graph Database project'.",
    "question_th": "แสดงชื่อเอกสารและวันที่ของเอกสารสำหรับเอกสารทั้งหมดในโครงการพร้อมรายละเอียด 'โครงการฐานข้อมูลกราฟ'",
    "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_en": "Show project ids and the number of documents in each project.",
    "question_th": "แสดงรหัสโครงการและจำนวนเอกสารในแต่ละโครงการ",
    "context": "CREATE TABLE Documents (project_id VARCHAR)"
  },
  {
    "answer": "SELECT project_id FROM Documents GROUP BY project_id ORDER BY COUNT(*) LIMIT 1",
    "question_en": "What is the id of the project with least number of documents?",
    "question_th": "รหัสของโครงการที่มีจำนวนเอกสารน้อยที่สุดคืออะไร?",
    "context": "CREATE TABLE Documents (project_id VARCHAR)"
  },
  {
    "answer": "SELECT project_id FROM Documents GROUP BY project_id HAVING COUNT(*) >= 2",
    "question_en": "Show the ids for projects with at least 2 documents.",
    "question_th": "แสดงรหัสสำหรับโครงการที่มีเอกสารอย่างน้อย 2 รายการ",
    "context": "CREATE TABLE Documents (project_id VARCHAR)"
  },
  {
    "answer": "SELECT document_type_code, COUNT(*) FROM Documents GROUP BY document_type_code",
    "question_en": "List document type codes and the number of documents in each code.",
    "question_th": "แสดงรายการรหัสประเภทเอกสารและจำนวนเอกสารในแต่ละรหัส",
    "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_en": "What is the document type code with most number of documents?",
    "question_th": "รหัสประเภทเอกสารที่มีจำนวนเอกสารมากที่สุดคือข้อใด",
    "context": "CREATE TABLE Documents (document_type_code VARCHAR)"
  },
  {
    "answer": "SELECT document_type_code FROM Documents GROUP BY document_type_code HAVING COUNT(*) < 3",
    "question_en": "Show the document type code with fewer than 3 documents.",
    "question_th": "แสดงรหัสประเภทเอกสารที่มีเอกสารน้อยกว่า 3 รายการ",
    "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_en": "Show the statement detail and the corresponding document name for the statement with detail 'Private Project'.",
    "question_th": "แสดงรายละเอียดใบแจ้งยอดและชื่อเอกสารที่เกี่ยวข้องสำหรับใบแจ้งยอดพร้อมรายละเอียด 'โครงการส่วนตัว'",
    "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_en": "Show all document type codes, document type names, document type descriptions.",
    "question_th": "แสดงรหัสประเภทเอกสารทั้งหมด ชื่อประเภทเอกสาร คำอธิบายประเภทเอกสาร",
    "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_en": "What is the document type description for document type named Film?",
    "question_th": "คำอธิบายประเภทเอกสารสำหรับประเภทเอกสารชื่อ 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_en": "What is the document type name and the document type description and creation date for all the documents?",
    "question_th": "ชื่อประเภทเอกสาร คำอธิบายประเภทเอกสาร และวันที่สร้างสำหรับเอกสารทั้งหมดคืออะไร",
    "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_en": "Show the number of projects.",
    "question_th": "แสดงจำนวนโครงการ",
    "context": "CREATE TABLE Projects (Id VARCHAR)"
  },
  {
    "answer": "SELECT project_id, project_details FROM Projects",
    "question_en": "List ids and details for all projects.",
    "question_th": "รหัสรายการและรายละเอียดสำหรับทุกโครงการ",
    "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_en": "What is the project id and detail for the project with at least two documents?",
    "question_th": "รหัสโครงการและรายละเอียดสำหรับโครงการที่มีเอกสารอย่างน้อยสองฉบับคืออะไร",
    "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_en": "What is the project detail for the project with document \"King Book\"?",
    "question_th": "รายละเอียดโครงการพร้อมเอกสาร 'คิง บุ๊ค' เป็นอย่างไรบ้าง?",
    "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_en": "How many budget types do we have?",
    "question_th": "เรามีงบประมาณกี่ประเภท?",
    "context": "CREATE TABLE Ref_budget_codes (Id VARCHAR)"
  },
  {
    "answer": "SELECT budget_type_code, budget_type_description FROM Ref_budget_codes",
    "question_en": "List all budget type codes and descriptions.",
    "question_th": "แสดงรายการรหัสและคำอธิบายประเภทงบประมาณทั้งหมด",
    "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_en": "What is the description for the budget type with code ORG?",
    "question_th": "คำอธิบายประเภทงบประมาณที่มีรหัส ORG คืออะไร",
    "context": "CREATE TABLE Ref_budget_codes (budget_type_description VARCHAR, budget_type_code VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Documents_with_expenses",
    "question_en": "How many documents have expenses?",
    "question_th": "เอกสารมีค่าใช้จ่ายกี่ฉบับ?",
    "context": "CREATE TABLE Documents_with_expenses (Id VARCHAR)"
  },
  {
    "answer": "SELECT document_id FROM Documents_with_expenses WHERE budget_type_code = 'SF'",
    "question_en": "What are the document ids for the budget type code 'SF'?",
    "question_th": "รหัสเอกสารสำหรับรหัสประเภทงบประมาณ '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_en": "Show the budget type code and description and the corresponding document id.",
    "question_th": "แสดงรหัสประเภทงบประมาณและคำอธิบาย และรหัสเอกสารที่เกี่ยวข้อง",
    "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_en": "Show ids for all documents with budget types described as 'Government'.",
    "question_th": "แสดงรหัสสำหรับเอกสารทั้งหมดที่มีประเภทงบประมาณซึ่งเรียกว่า 'รัฐบาล'",
    "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_en": "Show budget type codes and the number of documents in each budget type.",
    "question_th": "แสดงรหัสประเภทงบประมาณและจำนวนเอกสารในงบประมาณแต่ละประเภท",
    "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_en": "What is the budget type code with most number of documents.",
    "question_th": "รหัสประเภทงบประมาณที่มีเอกสารมากที่สุดคือข้อใด",
    "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_en": "What are the ids of documents which don't have expense budgets?",
    "question_th": "รหัสเอกสารที่ไม่มีงบประมาณค่าใช้จ่ายมีอะไรบ้าง",
    "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_en": "Show ids for all documents in type CV without expense budgets.",
    "question_th": "แสดงรหัสสำหรับเอกสารทุกประเภท CV โดยไม่มีงบประมาณค่าใช้จ่าย",
    "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_en": "What are the ids of documents with letter 's' in the name with any expense budgets.",
    "question_th": "รหัสเอกสารที่มีตัวอักษร 's' ในชื่อพร้อมงบประมาณค่าใช้จ่ายใด ๆ คืออะไร",
    "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_en": "How many documents do not have any expense?",
    "question_th": "ไม่มีค่าใช้จ่ายเอกสารกี่ฉบับ?",
    "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_en": "What are the dates for the documents with both 'GV' type and 'SF' type expenses?",
    "question_th": "เอกสารที่มีค่าใช้จ่ายทั้งประเภท 'GV' และ 'SF' คือวันที่ใด",
    "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_en": "What are the account details with the largest value or with value having char '5' in it?",
    "question_th": "รายละเอียดบัญชีใดที่มีมูลค่ามากที่สุดหรือมีมูลค่าที่มีอักขระ '5' อยู่ในนั้น?",
    "context": "CREATE TABLE Accounts (Account_details INTEGER)"
  },
  {
    "answer": "SELECT COUNT(*) FROM scientists",
    "question_en": "Find the total number of scientists.",
    "question_th": "ค้นหาจำนวนนักวิทยาศาสตร์ทั้งหมด",
    "context": "CREATE TABLE scientists (Id VARCHAR)"
  },
  {
    "answer": "SELECT SUM(hours) FROM projects",
    "question_en": "Find the total hours of all projects.",
    "question_th": "ค้นหาชั่วโมงรวมของโครงการทั้งหมด",
    "context": "CREATE TABLE projects (hours INTEGER)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT scientist) FROM assignedto",
    "question_en": "How many different scientists are assigned to any project?",
    "question_th": "มีนักวิทยาศาสตร์กี่คนที่ได้รับมอบหมายให้ทำโครงการใดๆ?",
    "context": "CREATE TABLE assignedto (scientist VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT name) FROM projects",
    "question_en": "Find the number of distinct projects.",
    "question_th": "ค้นหาจำนวนโครงการที่แตกต่างกัน",
    "context": "CREATE TABLE projects (name VARCHAR)"
  },
  {
    "answer": "SELECT AVG(hours) FROM projects",
    "question_en": "Find the average hours of all projects.",
    "question_th": "ค้นหาชั่วโมงเฉลี่ยของโครงการทั้งหมด",
    "context": "CREATE TABLE projects (hours INTEGER)"
  },
  {
    "answer": "SELECT name FROM projects ORDER BY hours DESC LIMIT 1",
    "question_en": "Find the name of project that continues for the longest time.",
    "question_th": "ค้นหาชื่อโครงการที่ดำเนินต่อเนื่องยาวนานที่สุด",
    "context": "CREATE TABLE projects (name VARCHAR, hours VARCHAR)"
  },
  {
    "answer": "SELECT name FROM projects WHERE hours > (SELECT AVG(hours) FROM projects)",
    "question_en": "List the name of all projects that are operated longer than the average working hours of all projects.",
    "question_th": "ระบุชื่อโครงการทั้งหมดที่ดำเนินการนานกว่าชั่วโมงทำงานเฉลี่ยของทุกโครงการ",
    "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_en": "Find the name and hours of project that has the most number of scientists.",
    "question_th": "ค้นหาชื่อและเวลาทำการของโครงการที่มีนักวิทยาศาสตร์มากที่สุด",
    "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_en": "Find the name of the project for which a scientist whose name contains ‘Smith’ is assigned to.",
    "question_th": "ค้นหาชื่อของโครงการที่นักวิทยาศาสตร์ซึ่งมีชื่อว่า 'Smith' ได้รับมอบหมายให้ทำ",
    "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_en": "Find the total hours of the projects that scientists named Michael Rogers or Carol Smith are assigned to.",
    "question_th": "ค้นหาชั่วโมงรวมของโครงการที่นักวิทยาศาสตร์ชื่อ Michael Rogers หรือ Carol Smith ได้รับมอบหมาย",
    "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_en": "Find the name of projects that require between 100 and 300 hours of work.",
    "question_th": "ค้นหาชื่อโครงการที่ต้องใช้เวลาทำงานระหว่าง 100 ถึง 300 ชั่วโมง",
    "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_en": "Find the name of the scientist who worked on both a project named 'Matter of Time' and a project named 'A Puzzling Parallax'.",
    "question_th": "ค้นหาชื่อของนักวิทยาศาสตร์ที่ทำงานทั้งในโครงการชื่อ 'Matter of Time' และโครงการชื่อ '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_en": "List the names of all scientists sorted in alphabetical order.",
    "question_th": "รายชื่อนักวิทยาศาสตร์ทุกคนเรียงตามตัวอักษร",
    "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_en": "Find the number of scientists involved for each project name.",
    "question_th": "ค้นหาจำนวนนักวิทยาศาสตร์ที่เกี่ยวข้องกับแต่ละชื่อโครงการ",
    "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_en": "Find the number of scientists involved for the projects that require more than 300 hours.",
    "question_th": "ค้นหาจำนวนนักวิทยาศาสตร์ที่เกี่ยวข้องกับโครงการที่ต้องใช้เวลามากกว่า 300 ชั่วโมง",
    "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_en": "Find the number of projects which each scientist is working on and scientist's name.",
    "question_th": "ค้นหาจำนวนโครงการที่นักวิทยาศาสตร์แต่ละคนกำลังทำอยู่และชื่อนักวิทยาศาสตร์",
    "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_en": "Find the SSN and name of scientists who are assigned to the project with the longest hours.",
    "question_th": "ค้นหา SSN และชื่อนักวิทยาศาสตร์ที่ได้รับมอบหมายให้ทำโครงการที่มีชั่วโมงทำงานยาวนานที่สุด",
    "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_en": "Find the name of scientists who are assigned to some project.",
    "question_th": "ค้นหาชื่อนักวิทยาศาสตร์ที่ได้รับมอบหมายให้ทำโครงการบางโครงการ",
    "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_en": "Select the project names which are not assigned yet.",
    "question_th": "เลือกชื่อโครงการที่ยังไม่ได้กำหนด",
    "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_en": "Find the name of scientists who are not assigned to any project.",
    "question_th": "ค้นหารายชื่อนักวิทยาศาสตร์ที่ไม่ได้รับมอบหมายให้ทำโครงงานใดๆ",
    "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_en": "Find the number of scientists who are not assigned to any project.",
    "question_th": "ค้นหาจำนวนนักวิทยาศาสตร์ที่ไม่ได้รับมอบหมายให้ทำโครงการใดๆ",
    "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_en": "Find the names of scientists who are not working on the project with the highest hours.",
    "question_th": "ค้นหารายชื่อนักวิทยาศาสตร์ที่ไม่ได้ทำงานในโครงการที่มีชั่วโมงทำงานสูงสุด",
    "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_en": "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.",
    "question_th": "ระบุชื่อนักวิทยาศาสตร์ทั้งหมด ชื่อโครงการ และชั่วโมงทำงานของนักวิทยาศาสตร์คนนั้นในแต่ละโครงการ ตามลำดับตัวอักษรของชื่อโครงการ ตามด้วยชื่อนักวิทยาศาสตร์",
    "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_en": "Find name of the project that needs the least amount of time to finish and the name of scientists who worked on it.",
    "question_th": "ค้นหาชื่อโครงการที่ใช้เวลาดำเนินการน้อยที่สุด และชื่อนักวิทยาศาสตร์ที่ทำโครงการนั้น",
    "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_en": "What is the name of the highest rated wine?",
    "question_th": "ไวน์ที่ได้รับคะแนนสูงสุดชื่ออะไร?",
    "context": "CREATE TABLE WINE (Name VARCHAR, Score VARCHAR)"
  },
  {
    "answer": "SELECT Winery FROM WINE ORDER BY SCORE LIMIT 1",
    "question_en": "Which winery is the wine that has the highest score from?",
    "question_th": "ไวน์จากโรงบ่มไวน์ใดคือไวน์ที่มีคะแนนสูงสุดจาก?",
    "context": "CREATE TABLE WINE (Winery VARCHAR, SCORE VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM WINE WHERE YEAR = \"2008\"",
    "question_en": "Find the names of all wines produced in 2008.",
    "question_th": "ค้นหาชื่อไวน์ทั้งหมดที่ผลิตในปี 2008",
    "context": "CREATE TABLE WINE (Name VARCHAR, YEAR VARCHAR)"
  },
  {
    "answer": "SELECT Grape, Appelation FROM WINE",
    "question_en": "List the grapes and appelations of all wines.",
    "question_th": "ระบุรายชื่อองุ่นและชื่อเรียกไวน์ทั้งหมด",
    "context": "CREATE TABLE WINE (Grape VARCHAR, Appelation VARCHAR)"
  },
  {
    "answer": "SELECT Name, Score FROM WINE",
    "question_en": "List the names and scores of all wines.",
    "question_th": "ระบุชื่อและคะแนนของไวน์ทั้งหมด",
    "context": "CREATE TABLE WINE (Name VARCHAR, Score VARCHAR)"
  },
  {
    "answer": "SELECT Area, County FROM APPELLATIONS",
    "question_en": "List the area and county of all appelations.",
    "question_th": "รายชื่อเขตและเขตของชื่อทั้งหมด",
    "context": "CREATE TABLE APPELLATIONS (Area VARCHAR, County VARCHAR)"
  },
  {
    "answer": "SELECT Price FROM WINE WHERE YEAR < 2010",
    "question_en": "What are the prices of wines produced before the year of 2010?",
    "question_th": "ราคาไวน์ที่ผลิตก่อนปี 2010 เป็นเท่าใด?",
    "context": "CREATE TABLE WINE (Price VARCHAR, YEAR INTEGER)"
  },
  {
    "answer": "SELECT Name FROM WINE WHERE score > 90",
    "question_en": "List the names of all distinct wines that have scores higher than 90.",
    "question_th": "ระบุชื่อไวน์ที่แตกต่างกันทั้งหมดที่มีคะแนนสูงกว่า 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_en": "List the names of all distinct wines that are made of red color grape.",
    "question_th": "รายชื่อไวน์ที่แตกต่างกันทั้งหมดที่ทำจากองุ่นสีแดง",
    "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_en": "Find the names of all distinct wines that have appellations in North Coast area.",
    "question_th": "ค้นหาชื่อไวน์ที่แตกต่างกันทั้งหมดซึ่งมีชื่อเรียกในพื้นที่ชายฝั่งทางเหนือ",
    "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_en": "How many wines are produced at Robert Biale winery?",
    "question_th": "โรงกลั่นเหล้าองุ่น Robert Biale ผลิตไวน์ได้กี่ชนิด?",
    "context": "CREATE TABLE WINE (Winery VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM APPELLATIONS WHERE County = \"Napa\"",
    "question_en": "How many appelations are in Napa Country?",
    "question_th": "ประเทศนภามีกี่ใบสมัคร?",
    "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_en": "Give me the average prices of wines that are produced by appelations in Sonoma County.",
    "question_th": "ขอราคาเฉลี่ยของไวน์ที่ผลิตโดยการกำหนดในโซโนมาเคาน์ตี้",
    "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_en": "What are the names and scores of wines that are made of white color grapes?",
    "question_th": "ชื่อและคะแนนของไวน์ที่ทำจากองุ่นสีขาวคืออะไร?",
    "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_en": "Find the maximum price of wins from the appelations in Central Coast area and produced before the year of 2005.",
    "question_th": "ค้นหาราคาสูงสุดที่ชนะจากการอุทธรณ์ในพื้นที่ Central Coast และผลิตก่อนปี 2548",
    "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_en": "Find the the grape whose white color grapes are used to produce wines with scores higher than 90.",
    "question_th": "ค้นหาองุ่นที่ใช้องุ่นสีขาวในการผลิตไวน์ที่มีคะแนนสูงกว่า 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_en": "What are the wines that have prices higher than 50 and made of Red color grapes?",
    "question_th": "ไวน์ใดบ้างที่มีราคาสูงกว่า 50 และทำจากองุ่นสีแดง?",
    "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_en": "What are the wines that have prices lower than 50 and have appelations in Monterey county?",
    "question_th": "ไวน์ใดบ้างที่มีราคาต่ำกว่า 50 และมีชื่อเรียกในเขตมอนเทอเรย์",
    "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_en": "What are the numbers of wines for different grapes?",
    "question_th": "ไวน์สำหรับองุ่นแต่ละชนิดมีจำนวนเท่าใด?",
    "context": "CREATE TABLE WINE (Grape VARCHAR)"
  },
  {
    "answer": "SELECT AVG(Price), YEAR FROM WINE GROUP BY YEAR",
    "question_en": "What are the average prices of wines for different years?",
    "question_th": "ราคาเฉลี่ยของไวน์ในปีต่างๆ คือเท่าไร?",
    "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_en": "Find the distinct names of all wines that have prices higher than some wines from John Anthony winery.",
    "question_th": "ค้นหาชื่อที่ชัดเจนของไวน์ทั้งหมดที่มีราคาสูงกว่าไวน์บางชนิดจากโรงกลั่นเหล้าองุ่น John Anthony",
    "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_en": "List the names of all distinct wines in alphabetical order.",
    "question_th": "ระบุชื่อไวน์ที่แตกต่างกันทั้งหมดตามลำดับตัวอักษร",
    "context": "CREATE TABLE WINE (Name VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT Name FROM WINE ORDER BY price",
    "question_en": "List the names of all distinct wines ordered by price.",
    "question_th": "รายชื่อไวน์ที่แตกต่างกันทั้งหมดเรียงตามราคา",
    "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_en": "What is the area of the appelation that produces the highest number of wines before the year of 2010?",
    "question_th": "พื้นที่ของชื่อที่ผลิตไวน์จำนวนสูงสุดก่อนปี 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_en": "What is the color of the grape whose wine products has the highest average price?",
    "question_th": "องุ่นที่ผลิตภัณฑ์ไวน์มีราคาเฉลี่ยสูงสุดมีสีอะไร?",
    "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_en": "Find the distinct names of wines produced before the year of 2000 or after the year of 2010.",
    "question_th": "ค้นหาชื่อไวน์ที่ผลิตก่อนปี 2000 หรือหลังปี 2010",
    "context": "CREATE TABLE WINE (Name VARCHAR, YEAR VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT Winery FROM WINE WHERE Price BETWEEN 50 AND 100",
    "question_en": "Find the distinct winery of wines having price between 50 and 100.",
    "question_th": "ค้นหาโรงบ่มไวน์ที่แตกต่างกันซึ่งมีราคาระหว่าง 50 ถึง 100",
    "context": "CREATE TABLE WINE (Winery VARCHAR, Price INTEGER)"
  },
  {
    "answer": "SELECT AVG(Price), AVG(Cases) FROM WINE WHERE YEAR = 2009 AND Grape = \"Zinfandel\"",
    "question_en": "What are the average prices and cases of wines produced in the year of 2009 and made of Zinfandel grape?",
    "question_th": "ราคาเฉลี่ยและจำนวนลังของไวน์ที่ผลิตในปี 2009 และทำจากองุ่น Zinfandel คืออะไร?",
    "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_en": "What are the maximum price and score of wines produced by St. Helena appelation?",
    "question_th": "ราคาและคะแนนสูงสุดของไวน์ที่ผลิตโดยชื่อ St. Helena คือเท่าไร?",
    "context": "CREATE TABLE WINE (Price INTEGER, Score INTEGER, Appelation VARCHAR)"
  },
  {
    "answer": "SELECT MAX(Price), MAX(Score), YEAR FROM WINE GROUP BY YEAR",
    "question_en": "What are the maximum price and score of wines in each year?",
    "question_th": "ราคาและคะแนนไวน์สูงสุดในแต่ละปีคือเท่าไร?",
    "context": "CREATE TABLE WINE (YEAR VARCHAR, Price INTEGER, Score INTEGER)"
  },
  {
    "answer": "SELECT AVG(Price), AVG(Score), Appelation FROM WINE GROUP BY Appelation",
    "question_en": "What are the average price and score of wines grouped by appelation?",
    "question_th": "ราคาเฉลี่ยและคะแนนของไวน์ที่จัดกลุ่มตามชื่อคือเท่าใด",
    "context": "CREATE TABLE WINE (Appelation VARCHAR, Price INTEGER, Score INTEGER)"
  },
  {
    "answer": "SELECT Winery FROM WINE GROUP BY Winery HAVING COUNT(*) >= 4",
    "question_en": "Find the wineries that have at least four wines.",
    "question_th": "ค้นหาโรงบ่มไวน์ที่มีไวน์อย่างน้อยสี่แห่ง",
    "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_en": "Find the country of all appelations who have at most three wines.",
    "question_th": "ค้นหาประเทศในชื่อทั้งหมดที่มีไวน์ไม่เกินสามรายการ",
    "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_en": "What are the names of wines whose production year are before the year of all wines by Brander winery?",
    "question_th": "ไวน์ชื่ออะไรซึ่งปีที่ผลิตอยู่ก่อนปีไวน์ทั้งหมดโดยโรงไวน์ Brander?",
    "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_en": "What are the names of wines that are more expensive then all wines made in the year 2006?",
    "question_th": "ไวน์ชื่ออะไรราคาแพงกว่าไวน์ที่ผลิตในปี 2549 ทั้งหมด?",
    "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_en": "Find the top 3 wineries with the greatest number of wines made of white color grapes.",
    "question_th": "ค้นหาโรงบ่มไวน์ 3 อันดับแรกที่มีไวน์ที่ทำจากองุ่นสีขาวมากที่สุด",
    "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_en": "List the grape, winery and year of the wines whose price is bigger than 100 ordered by year.",
    "question_th": "ระบุรายชื่อองุ่น โรงกลั่นไวน์ และปีที่ผลิตไวน์ซึ่งมีราคามากกว่า 100 โดยเรียงลำดับตามปี",
    "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_en": "List the grape, appelation and name of wines whose score is higher than 93 ordered by Name.",
    "question_th": "ระบุชื่อองุ่น ชื่อไวน์ และชื่อไวน์ที่มีคะแนนสูงกว่า 93 เรียงตามชื่อ",
    "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_en": "Find the appelations that produce wines after the year of 2008 but not in Central Coast area.",
    "question_th": "ค้นหาชื่อที่ผลิตไวน์หลังปี 2008 แต่ไม่ใช่ในพื้นที่ชายฝั่งตอนกลาง",
    "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_en": "Find the average price of wines that are not produced from Sonoma county.",
    "question_th": "ค้นหาราคาเฉลี่ยของไวน์ที่ไม่ได้ผลิตจากเขตโซโนมา",
    "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_en": "Find the county where produces the most number of wines with score higher than 90.",
    "question_th": "ค้นหาประเทศที่ผลิตไวน์มากที่สุดโดยมีคะแนนสูงกว่า 90",
    "context": "CREATE TABLE WINE (Appelation VARCHAR, Score INTEGER); CREATE TABLE APPELLATIONS (County VARCHAR, Appelation VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM station",
    "question_en": "How many train stations are there?",
    "question_th": "มีสถานีรถไฟกี่แห่ง?",
    "context": "CREATE TABLE station (Id VARCHAR)"
  },
  {
    "answer": "SELECT name, LOCATION, number_of_platforms FROM station",
    "question_en": "Show the name, location, and number of platforms for all stations.",
    "question_th": "แสดงชื่อ ที่ตั้ง และจำนวนชานชาลาของทุกสถานี",
    "context": "CREATE TABLE station (name VARCHAR, LOCATION VARCHAR, number_of_platforms VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT LOCATION FROM station",
    "question_en": "What are all locations of train stations?",
    "question_th": "สถานีรถไฟมีที่ตั้งทั้งหมดกี่แห่ง?",
    "context": "CREATE TABLE station (LOCATION VARCHAR)"
  },
  {
    "answer": "SELECT name, total_passengers FROM station WHERE LOCATION <> 'London'",
    "question_en": "Show the names and total passengers for all train stations not in London.",
    "question_th": "แสดงชื่อและจำนวนผู้โดยสารของสถานีรถไฟทุกแห่งที่ไม่ได้อยู่ในลอนดอน",
    "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_en": "Show the names and main services for train stations that have the top three total number of passengers.",
    "question_th": "แสดงชื่อและบริการหลักสำหรับสถานีรถไฟที่มีจำนวนผู้โดยสารรวม 3 อันดับแรก",
    "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_en": "What is the average and maximum number of total passengers for train stations in London or Glasgow?",
    "question_th": "จำนวนผู้โดยสารโดยเฉลี่ยและสูงสุดสำหรับสถานีรถไฟในลอนดอนหรือกลาสโกว์คือเท่าใด",
    "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_en": "Show all locations and the total number of platforms and passengers for all train stations in each location.",
    "question_th": "แสดงสถานที่ทั้งหมดและจำนวนชานชาลาและผู้โดยสารทั้งหมดของสถานีรถไฟทั้งหมดในแต่ละสถานที่",
    "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_en": "Show all locations that have train stations with at least 15 platforms and train stations with more than 25 total passengers.",
    "question_th": "แสดงสถานที่ทั้งหมดที่มีสถานีรถไฟอย่างน้อย 15 ชานชาลา และสถานีรถไฟที่มีผู้โดยสารรวมมากกว่า 25 คน",
    "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_en": "Show all locations which don't have a train station with at least 15 platforms.",
    "question_th": "แสดงสถานที่ทั้งหมดที่ไม่มีสถานีรถไฟและมีชานชาลาอย่างน้อย 15 ชานชาลา",
    "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_en": "Show the location with most number of train stations.",
    "question_th": "แสดงตำแหน่งที่มีสถานีรถไฟมากที่สุด",
    "context": "CREATE TABLE station (LOCATION VARCHAR)"
  },
  {
    "answer": "SELECT name, TIME, service FROM train",
    "question_en": "Show the name, time, and service for all trains.",
    "question_th": "แสดงชื่อ เวลา และบริการของรถไฟทั้งหมด",
    "context": "CREATE TABLE train (name VARCHAR, TIME VARCHAR, service VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM train",
    "question_en": "Show the number of trains",
    "question_th": "แสดงจำนวนขบวนรถไฟ",
    "context": "CREATE TABLE train (Id VARCHAR)"
  },
  {
    "answer": "SELECT name, service FROM train ORDER BY TIME",
    "question_en": "Show the name and service for all trains in order by time.",
    "question_th": "แสดงชื่อและบริการของรถไฟทั้งหมดตามลำดับเวลา",
    "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_en": "Show the station name and number of trains in each station.",
    "question_th": "แสดงชื่อสถานีและจำนวนขบวนรถไฟในแต่ละสถานี",
    "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_en": "show the train name and station name for each train.",
    "question_th": "แสดงชื่อรถไฟและชื่อสถานีของรถไฟแต่ละขบวน",
    "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_en": "Show all train names and times in stations in London in descending order by train time.",
    "question_th": "แสดงชื่อและเวลารถไฟทั้งหมดในสถานีในลอนดอนจากมากไปน้อยตามเวลารถไฟ",
    "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_en": "Show the station name with greatest number of trains.",
    "question_th": "แสดงชื่อสถานีที่มีจำนวนขบวนรถไฟมากที่สุด",
    "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_en": "Show the station name with at least two trains.",
    "question_th": "แสดงชื่อสถานีพร้อมขบวนรถไฟอย่างน้อยสองขบวน",
    "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_en": "Show all locations with only 1 station.",
    "question_th": "แสดงสถานที่ทั้งหมดเพียง 1 สถานี",
    "context": "CREATE TABLE station (LOCATION VARCHAR)"
  },
  {
    "answer": "SELECT name FROM station WHERE NOT station_id IN (SELECT station_id FROM train_station)",
    "question_en": "Show station names without any trains.",
    "question_th": "แสดงชื่อสถานีที่ไม่มีรถไฟ",
    "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_en": "What are the names of the stations which serve both \"Ananthapuri Express\" and \"Guruvayur Express\" trains?",
    "question_th": "ชื่อสถานีที่ให้บริการทั้งรถไฟ \"Ananthapuri Express\" และ \"Guruvayur Express\" คืออะไร",
    "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_en": "Find the names of the trains that do not pass any station located in London.",
    "question_th": "ค้นหาชื่อรถไฟที่ไม่ผ่านสถานีใดๆ ในลอนดอน",
    "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_en": "List the names and locations of all stations ordered by their yearly entry exit and interchange amounts.",
    "question_th": "ระบุชื่อและที่ตั้งของสถานีทั้งหมด เรียงตามทางเข้าออกและจำนวนการแลกเปลี่ยนในแต่ละปี",
    "context": "CREATE TABLE station (name VARCHAR, LOCATION VARCHAR, Annual_entry_exit VARCHAR, Annual_interchanges VARCHAR)"
  },
  {
    "answer": "SELECT vehicle_id FROM Vehicles",
    "question_en": "List all vehicle id",
    "question_th": "แสดงรายการรหัสยานพาหนะทั้งหมด",
    "context": "CREATE TABLE Vehicles (vehicle_id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Vehicles",
    "question_en": "How many vehicle in total?",
    "question_th": "มีรถทั้งหมดกี่คัน?",
    "context": "CREATE TABLE Vehicles (Id VARCHAR)"
  },
  {
    "answer": "SELECT vehicle_details FROM Vehicles WHERE vehicle_id = 1",
    "question_en": "Show the detail of vehicle with id 1.",
    "question_th": "แสดงรายละเอียดรถด้วยรหัส 1",
    "context": "CREATE TABLE Vehicles (vehicle_details VARCHAR, vehicle_id VARCHAR)"
  },
  {
    "answer": "SELECT first_name, middle_name, last_name FROM Staff",
    "question_en": "List the first name middle name and last name of all staff.",
    "question_th": "ระบุชื่อ ชื่อกลาง และนามสกุลของพนักงานทุกคน",
    "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_en": "What is the birthday of the staff member with first name as Janessa and last name as Sawayn?",
    "question_th": "วันเกิดของพนักงานชื่อ เจเนสซ่า และนามสกุล ซาเวน คือวันเกิดอะไร?",
    "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_en": "When did the staff member with first name as Janessa and last name as Sawayn join the company?",
    "question_th": "พนักงานชื่อ Janessa และนามสกุล Sawayn เข้าร่วมงานกับบริษัทเมื่อใด",
    "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_en": "When did the staff member with first name as Janessa and last name as Sawayn leave the company?",
    "question_th": "พนักงานที่ชื่อ Janessa และนามสกุล Sawayn ออกจากบริษัทเมื่อใด",
    "context": "CREATE TABLE Staff (date_left_staff VARCHAR, first_name VARCHAR, last_name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Staff WHERE first_name = \"Ludie\"",
    "question_en": "How many staff have the first name Ludie?",
    "question_th": "มีพนักงานกี่คนที่ชื่อลูดี้?",
    "context": "CREATE TABLE Staff (first_name VARCHAR)"
  },
  {
    "answer": "SELECT nickname FROM Staff WHERE first_name = \"Janessa\" AND last_name = \"Sawayn\"",
    "question_en": "What is the nickname of staff with first name as Janessa and last name as Sawayn?",
    "question_th": "ชื่อเล่นของพนักงานชื่อ เจเนสซ่า และนามสกุล ซาเวน คืออะไร?",
    "context": "CREATE TABLE Staff (nickname VARCHAR, first_name VARCHAR, last_name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Staff",
    "question_en": "How many staff in total?",
    "question_th": "มีพนักงานทั้งหมดกี่คน?",
    "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_en": "Which city does staff with first name as Janessa and last name as Sawayn live?",
    "question_th": "พนักงานชื่อ Janessa และนามสกุล Sawyn อาศัยอยู่เมืองใด",
    "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_en": "Which country and state does staff with first name as Janessa and last name as Sawayn lived?",
    "question_th": "พนักงานที่มีชื่อจริงว่า Janessa และนามสกุลเป็น Sawayn อาศัยอยู่ในประเทศและรัฐใด",
    "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_en": "How long is the total lesson time took by customer with first name as Rylan and last name as Goodwin?",
    "question_th": "ลูกค้าใช้เวลาเรียนโดยชื่อ Rylan และนามสกุล 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_en": "What is the zip code of staff with first name as Janessa and last name as Sawayn lived?",
    "question_th": "รหัสไปรษณีย์ของพนักงานชื่อ Janessa และนามสกุล Sawayn คืออะไร?",
    "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_en": "How many staff live in state Georgia?",
    "question_th": "มีพนักงานกี่คนที่อาศัยอยู่ในรัฐจอร์เจีย",
    "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_en": "Find out the first name and last name of staff lived in city Damianfort.",
    "question_th": "ค้นหาชื่อและนามสกุลของพนักงานที่อาศัยอยู่ในเมือง 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_en": "Which city lives most of staffs? List the city name and number of staffs.",
    "question_th": "เมืองใดมีพนักงานมากที่สุด? ระบุชื่อเมืองและจำนวนเจ้าหน้าที่",
    "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_en": "List the states which have between 2 to 4 staffs living there.",
    "question_th": "รายชื่อรัฐที่มีพนักงาน 2 ถึง 4 คนอาศัยอยู่ที่นั่น",
    "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_en": "List the first name and last name of all customers.",
    "question_th": "แจ้งชื่อและนามสกุลของลูกค้าทุกคน",
    "context": "CREATE TABLE Customers (first_name VARCHAR, last_name VARCHAR)"
  },
  {
    "answer": "SELECT email_address, date_of_birth FROM Customers WHERE first_name = \"Carole\"",
    "question_en": "List email address and birthday of customer whose first name as Carole.",
    "question_th": "ระบุที่อยู่อีเมลและวันเกิดของลูกค้าที่มีชื่อแรกว่า 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_en": "List phone number and email address of customer with more than 2000 outstanding balance.",
    "question_th": "ระบุหมายเลขโทรศัพท์และที่อยู่อีเมลของลูกค้าที่มียอดค้างชำระมากกว่า 2,000 รายการ",
    "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_en": "What is the status code, mobile phone number and email address of customer with last name as Kohler or first name as Marina?",
    "question_th": "รหัสสถานะ หมายเลขโทรศัพท์มือถือ และที่อยู่อีเมลของลูกค้าที่มีนามสกุล Kohler หรือชื่อ 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_en": "When are the birthdays of customer who are classified as 'Good Customer' status?",
    "question_th": "วันเกิดของลูกค้าที่ถูกจัดอยู่ในสถานะ 'ลูกค้าดี' คือเมื่อใด",
    "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_en": "When did customer with first name as Carole and last name as Bernhard became a customer?",
    "question_th": "ลูกค้าชื่อ Carole และนามสกุล Bernhard กลายเป็นลูกค้าเมื่อใด",
    "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_en": "List all customer status codes and the number of customers having each status code.",
    "question_th": "แสดงรายการรหัสสถานะลูกค้าทั้งหมด และจำนวนลูกค้าที่มีรหัสสถานะแต่ละรหัส",
    "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_en": "Which customer status code has least number of customers?",
    "question_th": "รหัสสถานะลูกค้าใดมีจำนวนลูกค้าน้อยที่สุด?",
    "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_en": "How many lessons taken by customer with first name as Rylan and last name as Goodwin were completed?",
    "question_th": "ลูกค้าที่ชื่อ Rylan และนามสกุล Goodwin เรียนจบไปกี่บทเรียนแล้ว",
    "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_en": "What is maximum, minimum and average amount of outstanding of customer?",
    "question_th": "ยอดคงค้างของลูกค้าสูงสุด ต่ำสุด และเฉลี่ยคือเท่าใด?",
    "context": "CREATE TABLE Customers (amount_outstanding INTEGER)"
  },
  {
    "answer": "SELECT first_name, last_name FROM Customers WHERE amount_outstanding BETWEEN 1000 AND 3000",
    "question_en": "List the first name and last name of customers have the amount of outstanding between 1000 and 3000.",
    "question_th": "รายการชื่อและนามสกุลของลูกค้ามียอดค้างชำระระหว่าง 1,000 ถึง 3,000",
    "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_en": "List first name and last name of customers lived in city Lockmanfurt.",
    "question_th": "รายการชื่อและนามสกุลของลูกค้าที่อาศัยอยู่ในเมืองล็อคแมนเฟิร์ต",
    "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_en": "Which country does customer with first name as Carole and last name as Bernhard lived in?",
    "question_th": "ลูกค้าที่มีชื่อจริงว่า Carole และนามสกุลเป็น Bernhard อาศัยอยู่ในประเทศใด",
    "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_en": "What is zip code of customer with first name as Carole and last name as Bernhard?",
    "question_th": "รหัสไปรษณีย์ของลูกค้าชื่อ Carole และนามสกุล 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_en": "Which city does has most number of customers?",
    "question_th": "เมืองใดมีลูกค้ามากที่สุด?",
    "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_en": "How much in total does customer with first name as Carole and last name as Bernhard paid?",
    "question_th": "ลูกค้าชื่อ Carole และนามสกุล Bernhard จ่ายเงินทั้งหมดเท่าไร?",
    "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_en": "List the number of customers that did not have any payment history.",
    "question_th": "ระบุจำนวนลูกค้าที่ไม่มีประวัติการชำระเงิน",
    "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_en": "List first name and last name of customers that have more than 2 payments.",
    "question_th": "ระบุชื่อและนามสกุลของลูกค้าที่มีการชำระเงินมากกว่า 2 ครั้ง",
    "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_en": "List all payment methods and number of payments using each payment methods.",
    "question_th": "ระบุวิธีการชำระเงินทั้งหมดและจำนวนการชำระเงินโดยใช้วิธีการชำระเงินแต่ละวิธี",
    "context": "CREATE TABLE Customer_Payments (payment_method_code VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Lessons WHERE lesson_status_code = \"Cancelled\"",
    "question_en": "How many lessons were in cancelled state?",
    "question_th": "มีกี่บทเรียนที่อยู่ในสถานะยกเลิก?",
    "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_en": "List lesson id of all lessons taught by staff with first name as Janessa, last name as Sawayn and nickname containing letter 's'.",
    "question_th": "ระบุรหัสบทเรียนของบทเรียนทั้งหมดที่สอนโดยเจ้าหน้าที่ซึ่งมีชื่อจริงว่า Janessa นามสกุลเป็น Sawayn และชื่อเล่นที่มีตัวอักษร '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_en": "How many lessons taught by staff whose first name has letter 'a' in it?",
    "question_th": "มีเจ้าหน้าที่สอนกี่บทเรียนที่มีชื่อมีตัวอักษร 'a' อยู่ในนั้น?",
    "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_en": "How long is the total lesson time taught by staff with first name as Janessa and last name as Sawayn?",
    "question_th": "อาจารย์ที่ชื่อ Janessa และนามสกุล 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_en": "What is average lesson price taught by staff with first name as Janessa and last name as Sawayn?",
    "question_th": "ราคาบทเรียนเฉลี่ยที่สอนโดยเจ้าหน้าที่ชื่อ Janessa และนามสกุล 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_en": "How many lesson does customer with first name Ray took?",
    "question_th": "ลูกค้าที่ชื่อเรย์เรียนบทเรียนกี่บทเรียน?",
    "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_en": "Which last names are both used by customers and by staff?",
    "question_th": "นามสกุลใดที่ทั้งลูกค้าและพนักงานใช้?",
    "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_en": "What is the first name of the staff who did not give any lesson?",
    "question_th": "เจ้าหน้าที่ที่ไม่ได้สอนชื่ออะไร?",
    "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_en": "What is the id and detail of the vehicle used in lessons for most of the times?",
    "question_th": "รหัสและรายละเอียดของยานพาหนะที่ใช้ในบทเรียนเป็นส่วนใหญ่คืออะไร?",
    "context": "CREATE TABLE Lessons (vehicle_id VARCHAR); CREATE TABLE Vehicles (vehicle_id VARCHAR, vehicle_details VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Faculty",
    "question_en": "How many faculty do we have?",
    "question_th": "เรามีคณะทั้งหมดกี่คณะ?",
    "context": "CREATE TABLE Faculty (Id VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT rank FROM Faculty",
    "question_en": "What ranks do we have for faculty?",
    "question_th": "คณะเรามีอันดับเท่าไร?",
    "context": "CREATE TABLE Faculty (rank VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT building FROM Faculty",
    "question_en": "Show all the distinct buildings that have faculty rooms.",
    "question_th": "แสดงอาคารที่โดดเด่นทั้งหมดที่มีห้องอาจารย์",
    "context": "CREATE TABLE Faculty (building VARCHAR)"
  },
  {
    "answer": "SELECT rank, Fname, Lname FROM Faculty",
    "question_en": "Show the rank, first name, and last name for all the faculty.",
    "question_th": "แสดงยศ ชื่อ และนามสกุลของคณะทั้งหมด",
    "context": "CREATE TABLE Faculty (rank VARCHAR, Fname VARCHAR, Lname VARCHAR)"
  },
  {
    "answer": "SELECT Fname, Lname, phone FROM Faculty WHERE Sex = 'F'",
    "question_en": "Show the first name, last name, and phone number for all female faculty members.",
    "question_th": "แสดงชื่อ นามสกุล และหมายเลขโทรศัพท์ของอาจารย์หญิงทุกคน",
    "context": "CREATE TABLE Faculty (Fname VARCHAR, Lname VARCHAR, phone VARCHAR, Sex VARCHAR)"
  },
  {
    "answer": "SELECT FacID FROM Faculty WHERE Sex = 'M'",
    "question_en": "Show ids for all the male faculty.",
    "question_th": "แสดงรหัสคณะชายทั้งหมด",
    "context": "CREATE TABLE Faculty (FacID VARCHAR, Sex VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Faculty WHERE Sex = 'F' AND Rank = \"Professor\"",
    "question_en": "How many female Professors do we have?",
    "question_th": "เรามีอาจารย์หญิงกี่คน?",
    "context": "CREATE TABLE Faculty (Sex VARCHAR, Rank VARCHAR)"
  },
  {
    "answer": "SELECT phone, room, building FROM Faculty WHERE Fname = \"Jerry\" AND Lname = \"Prince\"",
    "question_en": "Show the phone, room, and building for the faculty named Jerry Prince.",
    "question_th": "โชว์โทรศัพท์ ห้อง และอาคารให้คณะชื่อเจอร์รี่ ปริ๊นซ์",
    "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_en": "How many Professors are in building NEB?",
    "question_th": "มีศาสตราจารย์กี่คนในการสร้าง NEB",
    "context": "CREATE TABLE Faculty (Rank VARCHAR, building VARCHAR)"
  },
  {
    "answer": "SELECT fname, lname FROM Faculty WHERE Rank = \"Instructor\"",
    "question_en": "Show the first name and last name for all the instructors.",
    "question_th": "แสดงชื่อและนามสกุลของอาจารย์ผู้สอนทุกคน",
    "context": "CREATE TABLE Faculty (fname VARCHAR, lname VARCHAR, Rank VARCHAR)"
  },
  {
    "answer": "SELECT building, COUNT(*) FROM Faculty GROUP BY building",
    "question_en": "Show all the buildings along with the number of faculty members the buildings have.",
    "question_th": "แสดงอาคารทั้งหมดพร้อมจำนวนอาจารย์ที่อาคารมี",
    "context": "CREATE TABLE Faculty (building VARCHAR)"
  },
  {
    "answer": "SELECT building FROM Faculty GROUP BY building ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "Which building has most faculty members?",
    "question_th": "อาคารใดมีอาจารย์มากที่สุด?",
    "context": "CREATE TABLE Faculty (building VARCHAR)"
  },
  {
    "answer": "SELECT building FROM Faculty WHERE rank = \"Professor\" GROUP BY building HAVING COUNT(*) >= 10",
    "question_en": "Show all the buildings that have at least 10 professors.",
    "question_th": "แสดงอาคารทั้งหมดที่มีอาจารย์อย่างน้อย 10 คน",
    "context": "CREATE TABLE Faculty (building VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT rank, COUNT(*) FROM Faculty GROUP BY rank",
    "question_en": "For each faculty rank, show the number of faculty members who have it.",
    "question_th": "สำหรับแต่ละอันดับของคณะ ให้แสดงจำนวนคณาจารย์ที่มี",
    "context": "CREATE TABLE Faculty (rank VARCHAR)"
  },
  {
    "answer": "SELECT rank, sex, COUNT(*) FROM Faculty GROUP BY rank, sex",
    "question_en": "Show all the ranks and the number of male and female faculty for each rank.",
    "question_th": "แสดงตำแหน่งทั้งหมดและจำนวนอาจารย์ชายและหญิงในแต่ละตำแหน่ง",
    "context": "CREATE TABLE Faculty (rank VARCHAR, sex VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM Faculty GROUP BY rank ORDER BY COUNT(*) LIMIT 1",
    "question_en": "Which rank has the smallest number of faculty members?",
    "question_th": "อันดับใดมีจำนวนอาจารย์น้อยที่สุด?",
    "context": "CREATE TABLE Faculty (rank VARCHAR)"
  },
  {
    "answer": "SELECT sex, COUNT(*) FROM Faculty WHERE rank = \"AsstProf\" GROUP BY sex",
    "question_en": "Show the number of male and female assistant professors.",
    "question_th": "แสดงจำนวนผู้ช่วยศาสตราจารย์ชายและหญิง",
    "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_en": "What are the first name and last name of Linda Smith's advisor?",
    "question_th": "ชื่อและนามสกุลของที่ปรึกษาของลินดา สมิธคืออะไร?",
    "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_en": "Show the ids of students whose advisors are professors.",
    "question_th": "แสดงรหัสนักศึกษาที่มีอาจารย์ที่ปรึกษาเป็นอาจารย์",
    "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_en": "Show first name and last name for all the students advised by Michael Goodrich.",
    "question_th": "แสดงชื่อและนามสกุลสำหรับนักเรียนทุกคนที่ 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_en": "Show the faculty id of each faculty member, along with the number of students he or she advises.",
    "question_th": "แสดงรหัสอาจารย์ของคณาจารย์แต่ละคน พร้อมด้วยจำนวนนักศึกษาที่เขาหรือเธอแนะนำ",
    "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_en": "Show all the faculty ranks and the number of students advised by each rank.",
    "question_th": "แสดงอันดับคณาจารย์ทั้งหมดและจำนวนนักศึกษาที่แนะนำในแต่ละอันดับ",
    "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_en": "What are the first and last name of the faculty who has the most students?",
    "question_th": "ชื่อและนามสกุลของคณะที่มีนักศึกษามากที่สุดคือชื่ออะไร?",
    "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_en": "Show the ids for all the faculty members who have at least 2 students.",
    "question_th": "แสดงรหัสของคณาจารย์ทุกคนที่มีนักศึกษาตั้งแต่ 2 คนขึ้นไป",
    "context": "CREATE TABLE Faculty (FacID VARCHAR); CREATE TABLE Student (advisor VARCHAR)"
  },
  {
    "answer": "SELECT FacID FROM Faculty EXCEPT SELECT advisor FROM Student",
    "question_en": "Show ids for the faculty members who don't advise any student.",
    "question_th": "แสดงรหัสสำหรับคณาจารย์ที่ไม่แนะนำนักศึกษาคนใด",
    "context": "CREATE TABLE Faculty (FacID VARCHAR, advisor VARCHAR); CREATE TABLE Student (FacID VARCHAR, advisor VARCHAR)"
  },
  {
    "answer": "SELECT activity_name FROM Activity",
    "question_en": "What activities do we have?",
    "question_th": "เรามีกิจกรรมอะไรบ้าง?",
    "context": "CREATE TABLE Activity (activity_name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Activity",
    "question_en": "How many activities do we have?",
    "question_th": "เรามีกิจกรรมกี่กิจกรรม?",
    "context": "CREATE TABLE Activity (Id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT FacID) FROM Faculty_participates_in",
    "question_en": "How many faculty members participate in an activity?",
    "question_th": "มีคณาจารย์เข้าร่วมกิจกรรมกี่คน?",
    "context": "CREATE TABLE Faculty_participates_in (FacID VARCHAR)"
  },
  {
    "answer": "SELECT FacID FROM Faculty EXCEPT SELECT FacID FROM Faculty_participates_in",
    "question_en": "Show the ids of the faculty who don't participate in any activity.",
    "question_th": "แสดงรหัสคณะที่ไม่เข้าร่วมกิจกรรมใดๆ",
    "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_en": "Show the ids of all the faculty members who participate in an activity and advise a student.",
    "question_th": "แสดงรหัสของคณาจารย์ทุกคนที่เข้าร่วมกิจกรรมและให้คำแนะนำนักศึกษา",
    "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_en": "How many activities does Mark Giuliano participate in?",
    "question_th": "Mark Giuliano เข้าร่วมกิจกรรมกี่กิจกรรม?",
    "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_en": "Show the names of all the activities Mark Giuliano participates in.",
    "question_th": "แสดงชื่อกิจกรรมทั้งหมดที่ Mark Giuliano เข้าร่วม",
    "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_en": "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.",
    "question_th": "แสดงชื่อและนามสกุลของคณาจารย์ทั้งหมดที่เข้าร่วมกิจกรรมบางกิจกรรม พร้อมด้วยจำนวนกิจกรรมที่เข้าร่วม",
    "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_en": "Show all the activity names and the number of faculty involved in each activity.",
    "question_th": "แสดงชื่อกิจกรรมทั้งหมดและจำนวนคณาจารย์ที่เกี่ยวข้องในแต่ละกิจกรรม",
    "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_en": "What is the first and last name of the faculty participating in the most activities?",
    "question_th": "ชื่อและนามสกุลของคณะที่เข้าร่วมกิจกรรมมากที่สุดคืออะไร?",
    "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_en": "What is the name of the activity that has the most faculty members involved in?",
    "question_th": "กิจกรรมที่มีคณาจารย์เข้าร่วมมากที่สุดชื่ออะไร?",
    "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_en": "Show the ids of the students who don't participate in any activity.",
    "question_th": "แสดงรหัสนักศึกษาที่ไม่เข้าร่วมกิจกรรมใดๆ",
    "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_en": "Show the ids for all the students who participate in an activity and are under 20.",
    "question_th": "แสดงรหัสสำหรับนักเรียนทุกคนที่เข้าร่วมกิจกรรมและอายุต่ำกว่า 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_en": "What is the first and last name of the student participating in the most activities?",
    "question_th": "ชื่อและนามสกุลของนักเรียนที่เข้าร่วมกิจกรรมมากที่สุดคืออะไร?",
    "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_en": "What is the name of the activity with the most students?",
    "question_th": "กิจกรรมที่มีนักเรียนมากที่สุดชื่ออะไร?",
    "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_en": "Find the first names of the faculty members who are playing Canoeing or Kayaking.",
    "question_th": "ค้นหาชื่ออาจารย์ที่เล่นพายเรือแคนูหรือพายเรือคายัค",
    "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_en": "Find the first names of professors who are not playing Canoeing or Kayaking.",
    "question_th": "ค้นหารายชื่ออาจารย์ที่ไม่ได้เล่นพายเรือแคนูหรือพายเรือคายัค",
    "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_en": "Find the first names of the faculty members who participate in Canoeing and Kayaking.",
    "question_th": "ค้นหาชื่ออาจารย์ที่เข้าร่วมกิจกรรมพายเรือแคนูและพายเรือคายัค",
    "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_en": "Find the ids of the students who participate in Canoeing and Kayaking.",
    "question_th": "ค้นหารหัสของนักเรียนที่เข้าร่วมในการพายเรือแคนูและพายเรือคายัค",
    "context": "CREATE TABLE activity (actid VARCHAR, activity_name VARCHAR); CREATE TABLE participates_in (stuid VARCHAR)"
  },
  {
    "answer": "SELECT name FROM airports WHERE city = 'Goroka'",
    "question_en": "Find the name of the airport in the city of Goroka.",
    "question_th": "ค้นหาชื่อสนามบินในเมืองโกโรกา",
    "context": "CREATE TABLE airports (name VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT name, city, country, elevation FROM airports WHERE city = 'New York'",
    "question_en": "Find the name, city, country, and altitude (or elevation) of the airports in the city of New York.",
    "question_th": "ค้นหาชื่อ เมือง ประเทศ และระดับความสูง (หรือระดับความสูง) ของสนามบินในเมืองนิวยอร์ก",
    "context": "CREATE TABLE airports (name VARCHAR, city VARCHAR, country VARCHAR, elevation VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM airlines",
    "question_en": "How many airlines are there?",
    "question_th": "มีกี่สายการบิน?",
    "context": "CREATE TABLE airlines (Id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM airlines WHERE country = 'Russia'",
    "question_en": "How many airlines does Russia has?",
    "question_th": "รัสเซียมีกี่สายการบิน?",
    "context": "CREATE TABLE airlines (country VARCHAR)"
  },
  {
    "answer": "SELECT MAX(elevation) FROM airports WHERE country = 'Iceland'",
    "question_en": "What is the maximum elevation of all airports in the country of Iceland?",
    "question_th": "ระดับความสูงสูงสุดของสนามบินทั้งหมดในประเทศไอซ์แลนด์คือเท่าใด",
    "context": "CREATE TABLE airports (elevation INTEGER, country VARCHAR)"
  },
  {
    "answer": "SELECT name FROM airports WHERE country = 'Cuba' OR country = 'Argentina'",
    "question_en": "Find the name of the airports located in Cuba or Argentina.",
    "question_th": "ค้นหาชื่อสนามบินที่ตั้งอยู่ในคิวบาหรืออาร์เจนตินา",
    "context": "CREATE TABLE airports (name VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT country FROM airlines WHERE name LIKE 'Orbit%'",
    "question_en": "Find the country of the airlines whose name starts with 'Orbit'.",
    "question_th": "ค้นหาประเทศของสายการบินที่ชื่อขึ้นต้นด้วย 'Orbit'",
    "context": "CREATE TABLE airlines (country VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM airports WHERE elevation BETWEEN -50 AND 50",
    "question_en": "Find the name of airports whose altitude is between -50 and 50.",
    "question_th": "ค้นหาชื่อสนามบินที่มีระดับความสูงระหว่าง -50 ถึง 50",
    "context": "CREATE TABLE airports (name VARCHAR, elevation INTEGER)"
  },
  {
    "answer": "SELECT country FROM airports ORDER BY elevation DESC LIMIT 1",
    "question_en": "Which country is the airport that has the highest altitude located in?",
    "question_th": "สนามบินใดที่มีระดับความสูงสูงสุดตั้งอยู่ในประเทศใด",
    "context": "CREATE TABLE airports (country VARCHAR, elevation VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM airports WHERE name LIKE '%International%'",
    "question_en": "Find the number of airports whose name contain the word 'International'.",
    "question_th": "ค้นหาจำนวนสนามบินที่มีชื่อมีคำว่า 'International'",
    "context": "CREATE TABLE airports (name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT city) FROM airports WHERE country = 'Greenland'",
    "question_en": "How many different cities do have some airport in the country of Greenland?",
    "question_th": "มีสนามบินกี่เมืองในประเทศกรีนแลนด์",
    "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_en": "Find the number of routes operated by American Airlines.",
    "question_th": "ค้นหาจำนวนเส้นทางที่ให้บริการโดย 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_en": "Find the number of routes whose destination airports are in Canada.",
    "question_th": "ค้นหาจำนวนเส้นทางที่มีสนามบินปลายทางอยู่ในแคนาดา",
    "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_en": "Find the name, city, and country of the airport that has the lowest altitude.",
    "question_th": "ค้นหาชื่อ เมือง และประเทศของสนามบินที่มีระดับความสูงต่ำสุด",
    "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_en": "Find the name, city, and country of the airport that has the highest latitude.",
    "question_th": "ค้นหาชื่อ เมือง และประเทศของสนามบินที่มีละติจูดสูงสุด",
    "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_en": "Find the name and city of the airport which is the destination of the most number of routes.",
    "question_th": "ค้นหาชื่อและเมืองของสนามบินที่เป็นจุดหมายปลายทางของเส้นทางต่างๆ มากที่สุด",
    "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_en": "Find the names of the top 10 airlines that operate the most number of routes.",
    "question_th": "ค้นหารายชื่อสายการบิน 10 อันดับแรกที่ให้บริการเส้นทางบินมากที่สุด",
    "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_en": "Find the name and city of the airport which is the source for the most number of flight routes.",
    "question_th": "ค้นหาชื่อและเมืองของสนามบินที่เป็นแหล่งที่มาของเส้นทางการบินจำนวนมากที่สุด",
    "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_en": "Find the number of different airports which are the destinations of the American Airlines.",
    "question_th": "ค้นหาจำนวนสนามบินต่างๆ ซึ่งเป็นจุดหมายปลายทางของ 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_en": "Which countries has the most number of airlines?",
    "question_th": "ประเทศใดมีจำนวนสายการบินมากที่สุด?",
    "context": "CREATE TABLE airlines (country VARCHAR)"
  },
  {
    "answer": "SELECT country FROM airlines WHERE active = 'Y' GROUP BY country ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "Which countries has the most number of airlines whose active status is 'Y'?",
    "question_th": "ประเทศใดมีสายการบินที่มีสถานะ 'Y' มากที่สุด?",
    "context": "CREATE TABLE airlines (country VARCHAR, active VARCHAR)"
  },
  {
    "answer": "SELECT country, COUNT(*) FROM airlines GROUP BY country ORDER BY COUNT(*) DESC",
    "question_en": "List all countries and their number of airlines in the descending order of number of airlines.",
    "question_th": "แสดงรายการประเทศและจำนวนสายการบินทั้งหมดโดยเรียงตามจำนวนสายการบินจากมากไปหาน้อย",
    "context": "CREATE TABLE airlines (country VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*), country FROM airports GROUP BY country ORDER BY COUNT(*) DESC",
    "question_en": "How many airports are there per country? Order the countries by decreasing number of airports.",
    "question_th": "มีสนามบินกี่แห่งต่อประเทศ? เรียงลำดับประเทศโดยการลดจำนวนสนามบิน",
    "context": "CREATE TABLE airports (country VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*), city FROM airports WHERE country = 'United States' GROUP BY city ORDER BY COUNT(*) DESC",
    "question_en": "How many airports are there per city in the United States? Order the cities by decreasing number of airports.",
    "question_th": "สหรัฐอเมริกามีสนามบินกี่แห่งต่อเมือง? เรียงลำดับเมืองโดยการลดจำนวนสนามบิน",
    "context": "CREATE TABLE airports (city VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT city FROM airports WHERE country = 'United States' GROUP BY city HAVING COUNT(*) > 3",
    "question_en": "Return the cities with more than 3 airports in the United States.",
    "question_th": "กลับเมืองที่มีสนามบินมากกว่า 3 แห่งในสหรัฐอเมริกา",
    "context": "CREATE TABLE airports (city VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM (SELECT city FROM airports GROUP BY city HAVING COUNT(*) > 3)",
    "question_en": "How many cities are there that have more than 3 airports?",
    "question_th": "มีกี่เมืองที่มีสนามบินมากกว่า 3 แห่ง?",
    "context": "CREATE TABLE airports (city VARCHAR)"
  },
  {
    "answer": "SELECT city, COUNT(*) FROM airports GROUP BY city HAVING COUNT(*) > 1",
    "question_en": "List the cities which have more than one airport and number of airports.",
    "question_th": "รายชื่อเมืองที่มีสนามบินมากกว่าหนึ่งแห่งและจำนวนสนามบิน",
    "context": "CREATE TABLE airports (city VARCHAR)"
  },
  {
    "answer": "SELECT city FROM airports GROUP BY city HAVING COUNT(*) > 2 ORDER BY COUNT(*)",
    "question_en": "List the cities which have more than 2 airports sorted by the number of airports.",
    "question_th": "รายชื่อเมืองที่มีสนามบินมากกว่า 2 แห่ง เรียงตามจำนวนสนามบิน",
    "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_en": "Find the number of routes for each source airport and the airport name.",
    "question_th": "ค้นหาจำนวนเส้นทางของแต่ละสนามบินต้นทางและชื่อสนามบิน",
    "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_en": "Find the number of routes and airport name for each source airport, order the results by decreasing number of routes.",
    "question_th": "ค้นหาจำนวนเส้นทางและชื่อสนามบินของแต่ละสนามบินต้นทาง เรียงลำดับผลลัพธ์โดยการลดจำนวนเส้นทาง",
    "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_en": "Find the average elevation of all airports for each country.",
    "question_th": "ค้นหาระดับความสูงเฉลี่ยของสนามบินทั้งหมดในแต่ละประเทศ",
    "context": "CREATE TABLE airports (country VARCHAR, elevation INTEGER)"
  },
  {
    "answer": "SELECT city FROM airports GROUP BY city HAVING COUNT(*) = 2",
    "question_en": "Find the cities which have exactly two airports.",
    "question_th": "ค้นหาเมืองที่มีสนามบินสองแห่ง",
    "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_en": "For each country and airline name, how many routes are there?",
    "question_th": "แต่ละประเทศและชื่อสายการบินมีกี่เส้นทาง?",
    "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_en": "Find the number of routes with destination airports in Italy.",
    "question_th": "ค้นหาจำนวนเส้นทางที่มีสนามบินปลายทางในอิตาลี",
    "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_en": "Return the number of routes with destination airport in Italy operated by the airline with name 'American Airlines'.",
    "question_th": "ส่งกลับจำนวนเส้นทางที่มีสนามบินปลายทางในอิตาลี ดำเนินการโดยสายการบินชื่อ '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_en": "Find the number of routes that have destination John F Kennedy International Airport.",
    "question_th": "ค้นหาจำนวนเส้นทางที่มีจุดหมายปลายทาง ท่าอากาศยานนานาชาติจอห์น เอฟ เคนเนดี้",
    "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_en": "Find the number of routes from the United States to Canada.",
    "question_th": "ค้นหาเส้นทางจากสหรัฐอเมริกาไปแคนาดา",
    "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_en": "Find the id of routes whose source and destination airports are in the United States.",
    "question_th": "ค้นหารหัสเส้นทางที่มีสนามบินต้นทางและปลายทางอยู่ในสหรัฐอเมริกา",
    "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_en": "Find the name of airline which runs the most number of routes.",
    "question_th": "ค้นหาชื่อสายการบินที่มีเส้นทางบินมากที่สุด",
    "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_en": "Find the busiest source airport that runs most number of routes in China.",
    "question_th": "ค้นหาสนามบินต้นทางที่พลุกพล่านที่สุดซึ่งมีเส้นทางส่วนใหญ่ในจีน",
    "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_en": "Find the busiest destination airport that runs most number of routes in China.",
    "question_th": "ค้นหาสนามบินปลายทางที่พลุกพล่านที่สุดซึ่งมีเส้นทางบินมากที่สุดในจีน",
    "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_en": "What is the id of the most recent order?",
    "question_th": "รหัสของคำสั่งซื้อล่าสุดคืออะไร?",
    "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_en": "what are the order id and customer id of the oldest order?",
    "question_th": "รหัสคำสั่งซื้อและรหัสลูกค้าของคำสั่งซื้อที่เก่าแก่ที่สุดคืออะไร",
    "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_en": "Find the id of the order whose shipment tracking number is \"3452\".",
    "question_th": "ค้นหารหัสคำสั่งซื้อที่มีหมายเลขติดตามการจัดส่งเป็น \"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_en": "Find the ids of all the order items whose product id is 11.",
    "question_th": "ค้นหารหัสของรายการสั่งซื้อทั้งหมดที่มีรหัสผลิตภัณฑ์เป็น 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_en": "List the name of all the distinct customers who have orders with status \"Packing\".",
    "question_th": "ระบุชื่อของลูกค้าเฉพาะทั้งหมดที่มีคำสั่งซื้อที่มีสถานะ \"กำลังบรรจุ\"",
    "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_en": "Find the details of all the distinct customers who have orders with status \"On Road\".",
    "question_th": "ค้นหารายละเอียดของลูกค้าเฉพาะรายทั้งหมดที่มีคำสั่งซื้อที่มีสถานะ \"บนถนน\"",
    "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_en": "What is the name of the customer who has the most orders?",
    "question_th": "ชื่อของลูกค้าที่มีคำสั่งซื้อมากที่สุดคืออะไร?",
    "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_en": "What is the customer id of the customer who has the most orders?",
    "question_th": "รหัสลูกค้าของลูกค้าที่มีคำสั่งซื้อมากที่สุดคืออะไร?",
    "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_en": "Give me a list of id and status of orders which belong to the customer named \"Jeramie\".",
    "question_th": "แจ้ง ID และสถานะคำสั่งซื้อของลูกค้าชื่อ \"เจอรามี่\" ให้ฉันทราบ",
    "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_en": "Find the dates of orders which belong to the customer named \"Jeramie\".",
    "question_th": "ค้นหาวันที่สั่งซื้อของลูกค้าชื่อ \"เจอรามี\"",
    "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_en": "Give me the names of customers who have placed orders between 2009-01-01 and 2010-01-01.",
    "question_th": "แจ้งชื่อลูกค้าที่สั่งซื้อระหว่าง 2009-01-01 ถึง 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_en": "Give me a list of distinct product ids from orders placed between 1975-01-01 and 1976-01-01?",
    "question_th": "ขอรายการรหัสผลิตภัณฑ์ที่แตกต่างกันจากคำสั่งซื้อระหว่าง 1975-01-01 ถึง 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_en": "Find the names of the customers who have order status both \"On Road\" and \"Shipped\".",
    "question_th": "ค้นหาชื่อลูกค้าที่มีสถานะการสั่งซื้อทั้ง \"บนถนน\" และ \"จัดส่งแล้ว\"",
    "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_en": "Find the id of the customers who have order status both \"On Road\" and \"Shipped\".",
    "question_th": "ค้นหารหัสของลูกค้าที่มีสถานะการสั่งซื้อทั้ง \"บนถนน\" และ \"จัดส่งแล้ว\"",
    "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_en": "When was the order placed whose shipment tracking number is 3452? Give me the date.",
    "question_th": "คำสั่งซื้อมีหมายเลขติดตามการจัดส่งคือ 3452 เกิดขึ้นเมื่อใด ให้ฉันวันที่.",
    "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_en": "What is the placement date of the order whose invoice number is 10?",
    "question_th": "วันที่วางคำสั่งซื้อที่มีหมายเลขใบแจ้งหนี้คือ 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_en": "List the count and id of each product in all the orders.",
    "question_th": "แสดงรายการจำนวนและรหัสของผลิตภัณฑ์แต่ละรายการในคำสั่งซื้อทั้งหมด",
    "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_en": "List the name and count of each product in all orders.",
    "question_th": "ระบุชื่อและจำนวนสินค้าแต่ละรายการในคำสั่งซื้อทั้งหมด",
    "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_en": "Find the ids of orders which are shipped after 2000-01-01.",
    "question_th": "ค้นหารหัสคำสั่งซื้อที่จัดส่งหลัง 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_en": "Find the id of the order which is shipped most recently.",
    "question_th": "ค้นหารหัสของคำสั่งซื้อที่จัดส่งล่าสุด",
    "context": "CREATE TABLE shipments (order_id VARCHAR, shipment_date INTEGER)"
  },
  {
    "answer": "SELECT DISTINCT product_name FROM products ORDER BY product_name",
    "question_en": "List the names of all distinct products in alphabetical order.",
    "question_th": "ระบุชื่อผลิตภัณฑ์ที่แตกต่างกันทั้งหมดตามลำดับตัวอักษร",
    "context": "CREATE TABLE products (product_name VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT order_id FROM orders ORDER BY date_order_placed",
    "question_en": "List the ids of all distinct orders ordered by placed date.",
    "question_th": "แสดงรายการรหัสของคำสั่งซื้อที่แตกต่างกันทั้งหมดโดยเรียงลำดับตามวันที่วาง",
    "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_en": "What is the id of the order which has the most items?",
    "question_th": "รหัสคำสั่งซื้อที่มีสินค้ามากที่สุดคืออะไร?",
    "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_en": "Find the invoice numbers which are created before 1989-09-03 or after 2007-12-25.",
    "question_th": "ค้นหาหมายเลขใบแจ้งหนี้ที่สร้างขึ้นก่อน 1989-09-03 หรือหลัง 2550-12-2550",
    "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_en": "Find the distinct details of invoices which are created before 1989-09-03 or after 2007-12-25.",
    "question_th": "ค้นหารายละเอียดที่ชัดเจนของใบแจ้งหนี้ที่สร้างขึ้นก่อน 1989-09-03 หรือหลัง 2550-12-2550",
    "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_en": "For each customer who has at least two orders, find the customer name and number of orders made.",
    "question_th": "สำหรับลูกค้าแต่ละรายที่มีคำสั่งซื้ออย่างน้อยสองรายการ ให้ค้นหาชื่อลูกค้าและจำนวนคำสั่งซื้อที่ทำ",
    "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_en": "Find the name of the customers who have at most two orders.",
    "question_th": "ค้นหาชื่อลูกค้าที่มีคำสั่งซื้อไม่เกินสองรายการ",
    "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_en": "List the names of the customers who have once bought product \"food\".",
    "question_th": "ระบุชื่อลูกค้าที่เคยซื้อผลิตภัณฑ์ \"อาหาร\"",
    "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_en": "List the names of customers who have once canceled the purchase of the product \"food\" (the item status is \"Cancel\").",
    "question_th": "ระบุชื่อลูกค้าที่เคยยกเลิกการซื้อผลิตภัณฑ์ \"อาหาร\" (สถานะรายการคือ \"ยกเลิก\")",
    "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_en": "How many architects are female?",
    "question_th": "สถาปนิกเป็นผู้หญิงกี่คน?",
    "context": "CREATE TABLE architect (gender VARCHAR)"
  },
  {
    "answer": "SELECT name, nationality, id FROM architect WHERE gender = 'male' ORDER BY name",
    "question_en": "List the name, nationality and id of all male architects ordered by their names lexicographically.",
    "question_th": "ระบุชื่อ สัญชาติ และรหัสประจำตัวของสถาปนิกชายทั้งหมด เรียงตามชื่อตามพจนานุกรม",
    "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_en": "What is the maximum length in meters for the bridges and what are the architects' names?",
    "question_th": "สะพานมีความยาวสูงสุดกี่เมตร และสถาปนิกชื่ออะไร",
    "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_en": "What is the average length in feet of the bridges?",
    "question_th": "ความยาวเฉลี่ยของสะพานเป็นฟุตเท่าไร?",
    "context": "CREATE TABLE bridge (length_feet INTEGER)"
  },
  {
    "answer": "SELECT name, built_year FROM mill WHERE TYPE = 'Grondzeiler'",
    "question_en": "What are the names and year of construction for the mills of 'Grondzeiler' type?",
    "question_th": "ชื่อและปีที่ก่อสร้างสำหรับโรงงานประเภท 'Grondzeiler' คืออะไร?",
    "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_en": "What are the distinct names and nationalities of the architects who have ever built a mill?",
    "question_th": "ชื่อและสัญชาติของสถาปนิกที่เคยสร้างโรงสีมีชื่อและสัญชาติอะไรบ้าง?",
    "context": "CREATE TABLE mill (Id VARCHAR); CREATE TABLE architect (name VARCHAR, nationality VARCHAR, id VARCHAR)"
  },
  {
    "answer": "SELECT name FROM mill WHERE LOCATION <> 'Donceel'",
    "question_en": "What are the names of the mills which are not located in 'Donceel'?",
    "question_th": "โรงงานที่ไม่ได้อยู่ใน '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_en": "What are the distinct types of mills that are built by American or Canadian architects?",
    "question_th": "โรงสีประเภทใดที่สร้างขึ้นโดยสถาปนิกชาวอเมริกันหรือชาวแคนาดา?",
    "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_en": "What are the ids and names of the architects who built at least 3 bridges ?",
    "question_th": "รหัสและชื่อของสถาปนิกที่สร้างสะพานอย่างน้อย 3 แห่งคืออะไร",
    "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_en": "What is the id, name and nationality of the architect who built most mills?",
    "question_th": "รหัส ชื่อ และสัญชาติของสถาปนิกที่สร้างโรงงานส่วนใหญ่คืออะไร?",
    "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_en": "What are the ids, names and genders of the architects who built two bridges or one mill?",
    "question_th": "รหัส ชื่อ และเพศของสถาปนิกที่สร้างสะพานสองแห่งหรือหนึ่งโรงสีคืออะไร",
    "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_en": "What is the location of the bridge named 'Kolob Arch' or 'Rainbow Bridge'?",
    "question_th": "สะพานชื่อ 'โกลบโค้ง' หรือ 'สะพานสายรุ้ง' อยู่ที่ไหน?",
    "context": "CREATE TABLE bridge (LOCATION VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM mill WHERE name LIKE '%Moulin%'",
    "question_en": "Which of the mill names contains the french word 'Moulin'?",
    "question_th": "ชื่อโรงงานใดมีคำภาษาฝรั่งเศสว่า '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_en": "What are the distinct name of the mills built by the architects who have also built a bridge longer than 80 meters?",
    "question_th": "โรงสีที่สร้างโดยสถาปนิกที่สร้างสะพานยาวกว่า 80 เมตรมีชื่อเฉพาะว่าอะไร?",
    "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_en": "What is the most common mill type, and how many are there?",
    "question_th": "ประเภทโรงสีที่พบมากที่สุดคืออะไร และมีกี่ประเภท?",
    "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_en": "How many architects haven't built a mill before year 1850?",
    "question_th": "มีสถาปนิกกี่คนที่ยังไม่ได้สร้างโรงสีก่อนปี 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_en": "show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length.",
    "question_th": "แสดงชื่อสะพานทั้งหมดที่ออกแบบโดย American Archtect และเรียงลำดับผลลัพธ์ตามความยาวเท้าของสะพาน",
    "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_en": "How many book clubs are there?",
    "question_th": "มีชมรมหนังสือกี่แห่ง?",
    "context": "CREATE TABLE book_club (Id VARCHAR)"
  },
  {
    "answer": "SELECT book_title, author_or_editor FROM book_club WHERE YEAR > 1989",
    "question_en": "show the titles, and authors or editors for all books made after the year 1989.",
    "question_th": "แสดงชื่อหนังสือ และผู้แต่งหรือบรรณาธิการของหนังสือทุกเล่มที่ทำหลังปี พ.ศ. 2532",
    "context": "CREATE TABLE book_club (book_title VARCHAR, author_or_editor VARCHAR, YEAR INTEGER)"
  },
  {
    "answer": "SELECT DISTINCT publisher FROM book_club",
    "question_en": "Show all distinct publishers for books.",
    "question_th": "แสดงผู้จัดพิมพ์หนังสือที่แตกต่างกันทั้งหมด",
    "context": "CREATE TABLE book_club (publisher VARCHAR)"
  },
  {
    "answer": "SELECT YEAR, book_title, publisher FROM book_club ORDER BY YEAR DESC",
    "question_en": "Show the years, book titles, and publishers for all books, in descending order by year.",
    "question_th": "แสดงปี ชื่อหนังสือ และผู้จัดพิมพ์ของหนังสือทั้งหมด ตามลำดับปีจากมากไปน้อย",
    "context": "CREATE TABLE book_club (YEAR VARCHAR, book_title VARCHAR, publisher VARCHAR)"
  },
  {
    "answer": "SELECT publisher, COUNT(*) FROM book_club GROUP BY publisher",
    "question_en": "Show all publishers and the number of books for each publisher.",
    "question_th": "แสดงผู้จัดพิมพ์ทั้งหมดและจำนวนหนังสือของผู้จัดพิมพ์แต่ละราย",
    "context": "CREATE TABLE book_club (publisher VARCHAR)"
  },
  {
    "answer": "SELECT publisher FROM book_club GROUP BY publisher ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "What is the publisher with most number of books?",
    "question_th": "สำนักพิมพ์ใดที่มีจำนวนหนังสือมากที่สุด?",
    "context": "CREATE TABLE book_club (publisher VARCHAR)"
  },
  {
    "answer": "SELECT category, COUNT(*) FROM book_club GROUP BY category",
    "question_en": "Show all book categories and the number of books in each category.",
    "question_th": "แสดงหมวดหมู่หนังสือทั้งหมดและจำนวนหนังสือในแต่ละหมวดหมู่",
    "context": "CREATE TABLE book_club (category VARCHAR)"
  },
  {
    "answer": "SELECT category FROM book_club WHERE YEAR > 1989 GROUP BY category HAVING COUNT(*) >= 2",
    "question_en": "List categories that have at least two books after year 1989.",
    "question_th": "รายชื่อหมวดหมู่ที่มีหนังสืออย่างน้อยสองเล่มหลังจากปี 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_en": "Show publishers with a book published in 1989 and a book in 1990.",
    "question_th": "แสดงผู้จัดพิมพ์ด้วยหนังสือที่ตีพิมพ์ในปี 1989 และหนังสือในปี 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_en": "Show all publishers which do not have a book in 1989.",
    "question_th": "แสดงผู้จัดพิมพ์ทั้งหมดที่ไม่มีหนังสือในปี 1989",
    "context": "CREATE TABLE book_club (publisher VARCHAR, YEAR VARCHAR)"
  },
  {
    "answer": "SELECT title, YEAR, director FROM movie ORDER BY budget_million",
    "question_en": "Show all movie titles, years, and directors, ordered by budget.",
    "question_th": "แสดงชื่อภาพยนตร์ ปี และผู้กำกับทั้งหมด เรียงตามงบประมาณ",
    "context": "CREATE TABLE movie (title VARCHAR, YEAR VARCHAR, director VARCHAR, budget_million VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT director) FROM movie",
    "question_en": "How many movie directors are there?",
    "question_th": "ผู้กำกับภาพยนตร์มีกี่คน?",
    "context": "CREATE TABLE movie (director VARCHAR)"
  },
  {
    "answer": "SELECT title, director FROM movie WHERE YEAR <= 2000 ORDER BY gross_worldwide DESC LIMIT 1",
    "question_en": "What is the title and director for the movie with highest worldwide gross in the year 2000 or before?",
    "question_th": "ชื่อเรื่องและผู้กำกับสำหรับภาพยนตร์ที่ทำรายได้ทั่วโลกสูงสุดในปี 2000 หรือก่อนหน้านั้นคืออะไร?",
    "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_en": "Show all director names who have a movie in both year 1999 and 2000.",
    "question_th": "แสดงรายชื่อผู้กำกับที่มีภาพยนตร์ทั้งปี 2542 และ 2543",
    "context": "CREATE TABLE movie (director VARCHAR, YEAR VARCHAR)"
  },
  {
    "answer": "SELECT director FROM movie WHERE YEAR = 1999 OR YEAR = 2000",
    "question_en": "Show all director names who have a movie in the year 1999 or 2000.",
    "question_th": "แสดงรายชื่อผู้กำกับที่มีภาพยนตร์ในปี 2542 หรือ 2543",
    "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_en": "What is the average, maximum, and minimum budget for all movies before 2000.",
    "question_th": "งบประมาณเฉลี่ย สูงสุด และต่ำสุดสำหรับภาพยนตร์ทั้งหมดก่อนปี 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_en": "List all company names with a book published by Alyson.",
    "question_th": "ระบุชื่อบริษัททั้งหมดพร้อมหนังสือที่จัดพิมพ์โดย 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_en": "Show the movie titles and book titles for all companies in China.",
    "question_th": "แสดงชื่อภาพยนตร์และชื่อหนังสือของบริษัททั้งหมดในประเทศจีน",
    "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_en": "Show all company names with a movie directed in year 1999.",
    "question_th": "แสดงชื่อบริษัททั้งหมดที่มีภาพยนตร์กำกับในปี 2542",
    "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_en": "How many singers do we have?",
    "question_th": "เรามีนักร้องกี่คน?",
    "context": "CREATE TABLE singer (Id VARCHAR)"
  },
  {
    "answer": "SELECT name, country, age FROM singer ORDER BY age DESC",
    "question_en": "Show name, country, age for all singers ordered by age from the oldest to the youngest.",
    "question_th": "แสดงชื่อ ประเทศ อายุของนักร้องทุกคน เรียงตามอายุจากอายุมากที่สุดไปอายุน้อยที่สุด",
    "context": "CREATE TABLE singer (name VARCHAR, country VARCHAR, age VARCHAR)"
  },
  {
    "answer": "SELECT AVG(age), MIN(age), MAX(age) FROM singer WHERE country = 'France'",
    "question_en": "What is the average, minimum, and maximum age of all singers from France?",
    "question_th": "อายุเฉลี่ย ขั้นต่ำ และสูงสุดของนักร้องทุกคนจากฝรั่งเศสคือเท่าใด",
    "context": "CREATE TABLE singer (age INTEGER, country VARCHAR)"
  },
  {
    "answer": "SELECT song_name, song_release_year FROM singer ORDER BY age LIMIT 1",
    "question_en": "Show the name and the release year of the song by the youngest singer.",
    "question_th": "แสดงชื่อและปีที่ออกเพลงโดยนักร้องอายุน้อยที่สุด",
    "context": "CREATE TABLE singer (song_name VARCHAR, song_release_year VARCHAR, age VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT country FROM singer WHERE age > 20",
    "question_en": "What are all distinct countries where singers above age 20 are from?",
    "question_th": "นักร้องอายุ 20 ปีขึ้นไปมาจากประเทศใดบ้าง",
    "context": "CREATE TABLE singer (country VARCHAR, age INTEGER)"
  },
  {
    "answer": "SELECT country, COUNT(*) FROM singer GROUP BY country",
    "question_en": "Show all countries and the number of singers in each country.",
    "question_th": "แสดงทุกประเทศและจำนวนนักร้องในแต่ละประเทศ",
    "context": "CREATE TABLE singer (country VARCHAR)"
  },
  {
    "answer": "SELECT song_name FROM singer WHERE age > (SELECT AVG(age) FROM singer)",
    "question_en": "List all song names by singers above the average age.",
    "question_th": "รายชื่อเพลงทั้งหมดโดยนักร้องที่อายุมากกว่าค่าเฉลี่ย",
    "context": "CREATE TABLE singer (song_name VARCHAR, age INTEGER)"
  },
  {
    "answer": "SELECT LOCATION, name FROM stadium WHERE capacity BETWEEN 5000 AND 10000",
    "question_en": "Show location and name for all stadiums with a capacity between 5000 and 10000.",
    "question_th": "แสดงที่ตั้งและชื่อสนามกีฬาทั้งหมดที่มีความจุระหว่าง 5,000 ถึง 10,000",
    "context": "CREATE TABLE stadium (LOCATION VARCHAR, name VARCHAR, capacity INTEGER)"
  },
  {
    "answer": "SELECT MAX(capacity), average FROM stadium",
    "question_en": "What is the maximum capacity and the average of all stadiums ?",
    "question_th": "ความจุสูงสุดและค่าเฉลี่ยของสนามทั้งหมดคือเท่าใด ?",
    "context": "CREATE TABLE stadium (average VARCHAR, capacity INTEGER)"
  },
  {
    "answer": "SELECT AVG(capacity), MAX(capacity) FROM stadium",
    "question_en": "What is the average and maximum capacities for all stadiums ?",
    "question_th": "ความจุเฉลี่ยและสูงสุดสำหรับสนามกีฬาทั้งหมดคือเท่าใด ?",
    "context": "CREATE TABLE stadium (capacity INTEGER)"
  },
  {
    "answer": "SELECT name, capacity FROM stadium ORDER BY average DESC LIMIT 1",
    "question_en": "What is the name and capacity for the stadium with highest average attendance?",
    "question_th": "ชื่อและความจุของสนามกีฬาที่มีผู้เข้าชมเฉลี่ยสูงสุดคืออะไร?",
    "context": "CREATE TABLE stadium (name VARCHAR, capacity VARCHAR, average VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM concert WHERE YEAR = 2014 OR YEAR = 2015",
    "question_en": "How many concerts are there in year 2014 or 2015?",
    "question_th": "ปี 2557 หรือ 2558 มีคอนเสิร์ตกี่รอบ?",
    "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_en": "Show the stadium name and the number of concerts in each stadium.",
    "question_th": "แสดงชื่อสนามและจำนวนคอนเสิร์ตในแต่ละสนาม",
    "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_en": "Show the stadium name and capacity with most number of concerts in year 2014 or after.",
    "question_th": "แสดงชื่อสนามกีฬาและความจุที่มีจำนวนคอนเสิร์ตมากที่สุดในปี 2557 เป็นต้นไป",
    "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_en": "What is the name and capacity of the stadium with the most concerts after 2013 ?",
    "question_th": "ชื่อและความจุของสนามกีฬาที่มีคอนเสิร์ตมากที่สุดหลังปี 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_en": "Which year has most number of concerts?",
    "question_th": "ปีไหนมีคอนเสิร์ตมากที่สุด?",
    "context": "CREATE TABLE concert (YEAR VARCHAR)"
  },
  {
    "answer": "SELECT name FROM stadium WHERE NOT stadium_id IN (SELECT stadium_id FROM concert)",
    "question_en": "Show the stadium names without any concert.",
    "question_th": "แสดงชื่อสนามโดยไม่มีคอนเสิร์ตใดๆ",
    "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_en": "Show countries where a singer above age 40 and a singer below 30 are from.",
    "question_th": "แสดงประเทศที่มีนักร้องอายุมากกว่า 40 ปี และนักร้องอายุต่ำกว่า 30 ปี มาจาก",
    "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_en": "Show names for all stadiums except for stadiums having a concert in year 2014.",
    "question_th": "แสดงชื่อสนามทั้งหมด ยกเว้นสนามที่มีคอนเสิร์ตในปี 2557",
    "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_en": "Show the name and theme for all concerts and the number of singers in each concert.",
    "question_th": "แสดงชื่อและธีมคอนเสิร์ตทั้งหมด และจำนวนนักร้องในแต่ละคอนเสิร์ต",
    "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_en": "What are the names , themes , and number of singers for every concert ?",
    "question_th": "ชื่อ ธีม และจำนวนนักร้องในแต่ละคอนเสิร์ตมีอะไรบ้าง?",
    "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_en": "List singer names and number of concerts for each singer.",
    "question_th": "รายชื่อนักร้องและจำนวนคอนเสิร์ตของนักร้องแต่ละคน",
    "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_en": "List all singer names in concerts in year 2014.",
    "question_th": "รายชื่อนักร้องทั้งหมดในคอนเสิร์ตปี 2557",
    "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_en": "what is the name and nation of the singer who have a song having 'Hey' in its name?",
    "question_th": "ชื่อและสัญชาติของนักร้องที่มีเพลงว่า 'เฮ้' อยู่ในชื่ออะไร?",
    "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_en": "Find the name and location of the stadiums which some concerts happened in the years of both 2014 and 2015.",
    "question_th": "ค้นหาชื่อและที่ตั้งของสนามกีฬาที่มีคอนเสิร์ตบางแห่งเกิดขึ้นในปี 2014 และ 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_en": "Find the number of concerts happened in the stadium with the highest capacity .",
    "question_th": "ค้นหาจำนวนคอนเสิร์ตที่เกิดขึ้นในสนามกีฬาที่มีความจุสูงสุด",
    "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_en": "Find the number of pets whose weight is heavier than 10.",
    "question_th": "จงหาจำนวนสัตว์เลี้ยงที่มีน้ำหนักมากกว่า 10",
    "context": "CREATE TABLE pets (weight INTEGER)"
  },
  {
    "answer": "SELECT weight FROM pets ORDER BY pet_age LIMIT 1",
    "question_en": "Find the weight of the youngest dog.",
    "question_th": "ค้นหาน้ำหนักของสุนัขที่อายุน้อยที่สุด",
    "context": "CREATE TABLE pets (weight VARCHAR, pet_age VARCHAR)"
  },
  {
    "answer": "SELECT MAX(weight), petType FROM pets GROUP BY petType",
    "question_en": "Find the maximum weight for each type of pet. List the maximum weight and pet type.",
    "question_th": "ค้นหาน้ำหนักสูงสุดสำหรับสัตว์เลี้ยงแต่ละประเภท ระบุน้ำหนักสูงสุดและประเภทสัตว์เลี้ยง",
    "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_en": "Find number of pets owned by students who are older than 20.",
    "question_th": "ค้นหาจำนวนสัตว์เลี้ยงของนักเรียนที่มีอายุมากกว่า 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_en": "Find the number of dog pets that are raised by female students (with sex F).",
    "question_th": "จงหาจำนวนสุนัขที่นักเรียนหญิงเลี้ยงไว้ (เพศ 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_en": "Find the number of distinct type of pets.",
    "question_th": "ค้นหาจำนวนสัตว์เลี้ยงประเภทต่างๆ",
    "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_en": "Find the first name of students who have cat or dog pet.",
    "question_th": "ค้นหาชื่อนักเรียนที่มีสัตว์เลี้ยงแมวหรือสุนัข",
    "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_en": "Find the first name of students who have both cat and dog pets .",
    "question_th": "ค้นหาชื่อนักเรียนที่มีทั้งสัตว์เลี้ยงแมวและสุนัข",
    "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_en": "What are the students' first names who have both cats and dogs as pets?",
    "question_th": "ชื่อของนักเรียนที่มีทั้งแมวและสุนัขเป็นสัตว์เลี้ยงคืออะไร?",
    "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_en": "Find the major and age of students who do not have a cat pet.",
    "question_th": "ค้นหาสาขาวิชาและอายุของนักเรียนที่ไม่มีสัตว์เลี้ยงแมว",
    "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_en": "Find the id of students who do not have a cat pet.",
    "question_th": "ค้นหารหัสนักเรียนที่ไม่มีสัตว์เลี้ยงแมว",
    "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_en": "Find the first name and age of students who have a dog but do not have a cat as a pet.",
    "question_th": "ค้นหาชื่อและอายุของนักเรียนที่มีสุนัขแต่ไม่มีแมวเป็นสัตว์เลี้ยง",
    "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_en": "Find the type and weight of the youngest pet.",
    "question_th": "ค้นหาประเภทและน้ำหนักของสัตว์เลี้ยงที่อายุน้อยที่สุด",
    "context": "CREATE TABLE pets (pettype VARCHAR, weight VARCHAR, pet_age VARCHAR)"
  },
  {
    "answer": "SELECT petid, weight FROM pets WHERE pet_age > 1",
    "question_en": "Find the id and weight of all pets whose age is older than 1.",
    "question_th": "ค้นหารหัสและน้ำหนักของสัตว์เลี้ยงทุกตัวที่มีอายุมากกว่า 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_en": "Find the average and maximum age for each type of pet.",
    "question_th": "ค้นหาอายุเฉลี่ยและอายุสูงสุดของสัตว์เลี้ยงแต่ละประเภท",
    "context": "CREATE TABLE pets (pettype VARCHAR, pet_age INTEGER)"
  },
  {
    "answer": "SELECT AVG(weight), pettype FROM pets GROUP BY pettype",
    "question_en": "Find the average weight for each pet type.",
    "question_th": "ค้นหาน้ำหนักเฉลี่ยของสัตว์เลี้ยงแต่ละประเภท",
    "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_en": "Find the first name and age of students who have a pet.",
    "question_th": "ค้นหาชื่อและอายุของนักเรียนที่มีสัตว์เลี้ยง",
    "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_en": "Find the id of the pet owned by student whose last name is ‘Smith’.",
    "question_th": "ค้นหารหัสสัตว์เลี้ยงของนักเรียนที่มีนามสกุล 'Smith'",
    "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_en": "Find the number of pets for each student who has any pet and student id.",
    "question_th": "ค้นหาจำนวนสัตว์เลี้ยงของนักเรียนแต่ละคนที่มีสัตว์เลี้ยงและรหัสนักเรียน",
    "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_en": "For students who have pets , how many pets does each student have ? list their ids instead of names .",
    "question_th": "สำหรับนักเรียนที่มีสัตว์เลี้ยง นักเรียนแต่ละคนมีสัตว์เลี้ยงกี่ตัว ? แสดงรายการรหัสแทนชื่อ",
    "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_en": "Find the first name and gender of student who have more than one pet.",
    "question_th": "ค้นหาชื่อและเพศของนักเรียนที่มีสัตว์เลี้ยงมากกว่าหนึ่งตัว",
    "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_en": "Find the last name of the student who has a cat that is age 3.",
    "question_th": "ค้นหานามสกุลของนักเรียนที่มีแมวอายุ 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_en": "Find the average age of students who do not have any pet .",
    "question_th": "จงหาอายุเฉลี่ยของนักเรียนที่ไม่มีสัตว์เลี้ยง",
    "context": "CREATE TABLE student (age INTEGER, stuid VARCHAR); CREATE TABLE has_pet (age INTEGER, stuid VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM CONTINENTS",
    "question_en": "How many continents are there?",
    "question_th": "มีกี่ทวีป?",
    "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_en": "How many countries does each continent have? List the continent id, continent name and the number of countries.",
    "question_th": "แต่ละทวีปมีกี่ประเทศ? ระบุรหัสทวีป ชื่อทวีป และจำนวนประเทศ",
    "context": "CREATE TABLE COUNTRIES (Continent VARCHAR); CREATE TABLE CONTINENTS (ContId VARCHAR, Continent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM COUNTRIES",
    "question_en": "How many countries are listed?",
    "question_th": "มีรายชื่อกี่ประเทศ?",
    "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_en": "How many models does each car maker produce? List maker full name, id and the number.",
    "question_th": "ผู้ผลิตรถยนต์แต่ละรายผลิตรถยนต์ได้กี่รุ่น? ผู้สร้างรายการชื่อเต็ม ID และหมายเลข",
    "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_en": "Which model of the car has the minimum horsepower?",
    "question_th": "รถรุ่นไหนมีแรงม้าขั้นต่ำ?",
    "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_en": "Find the model of the car whose weight is below the average weight.",
    "question_th": "ค้นหารุ่นรถที่มีน้ำหนักต่ำกว่าน้ำหนักเฉลี่ย",
    "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_en": "Find the name of the makers that produced some cars in the year of 1970?",
    "question_th": "ค้นหาชื่อผู้ผลิตที่ผลิตรถยนต์บางคันในปี 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_en": "Find the make and production time of the cars that were produced in the earliest year?",
    "question_th": "ค้นหายี่ห้อและเวลาการผลิตของรถยนต์ที่ผลิตในปีแรกสุดหรือไม่?",
    "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_en": "Which distinct car models are the produced after 1980?",
    "question_th": "รถยนต์รุ่นใดบ้างที่ผลิตหลังปี 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_en": "How many car makers are there in each continents? List the continent name and the count.",
    "question_th": "แต่ละทวีปมีผู้ผลิตรถยนต์กี่ราย? ระบุชื่อทวีปและจำนวน",
    "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_en": "Which of the countries has the most car makers? List the country name.",
    "question_th": "ประเทศใดมีผู้ผลิตรถยนต์มากที่สุด? รายชื่อประเทศ.",
    "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_en": "How many car models are produced by each maker ? Only list the count and the maker full name .",
    "question_th": "แต่ละผู้ผลิตผลิตรถยนต์ได้กี่รุ่น ? ระบุเฉพาะจำนวนและชื่อเต็มของผู้สร้างเท่านั้น",
    "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_en": "What is the number of car models that are produced by each maker and what is the id and full name of each maker?",
    "question_th": "แต่ละยี่ห้อผลิตรถยนต์จำนวนกี่รุ่น และรหัสและชื่อเต็มของแต่ละยี่ห้อคือเท่าไร?",
    "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_en": "What is the accelerate of the car make amc hornet sportabout (sw)?",
    "question_th": "รถยี่ห้อ 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_en": "How many car makers are there in france?",
    "question_th": "ฝรั่งเศสมีผู้ผลิตรถยนต์กี่ราย?",
    "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_en": "How many car models are produced in the usa?",
    "question_th": "รถยนต์ที่ผลิตในอเมริกามีกี่รุ่น?",
    "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_en": "What is the average miles per gallon(mpg) of the cars with 4 cylinders?",
    "question_th": "รถ 4 สูบใช้ระยะทางเฉลี่ยต่อแกลลอน (mpg) เท่าไร?",
    "context": "CREATE TABLE CARS_DATA (mpg INTEGER, Cylinders VARCHAR)"
  },
  {
    "answer": "SELECT MIN(weight) FROM cars_data WHERE cylinders = 8 AND year = 1974",
    "question_en": "What is the smallest weight of the car produced with 8 cylinders on 1974 ?",
    "question_th": "รถ 8 สูบที่มีน้ำหนักน้อยที่สุดในปี 1974 คือเท่าไร ?",
    "context": "CREATE TABLE cars_data (weight INTEGER, cylinders VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT Maker, Model FROM MODEL_LIST",
    "question_en": "What are all the makers and models?",
    "question_th": "ผู้ผลิตและรุ่นทั้งหมดมีอะไรบ้าง?",
    "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_en": "What are the countries having at least one car maker? List name and id.",
    "question_th": "ประเทศใดบ้างที่มีผู้ผลิตรถยนต์อย่างน้อยหนึ่งราย ชื่อรายการและรหัส",
    "context": "CREATE TABLE CAR_MAKERS (Country VARCHAR); CREATE TABLE COUNTRIES (CountryName VARCHAR, CountryId VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM CARS_DATA WHERE horsepower > 150",
    "question_en": "What is the number of the cars with horsepower more than 150?",
    "question_th": "รถที่มีแรงม้าเกิน 150 มีกี่คัน?",
    "context": "CREATE TABLE CARS_DATA (horsepower INTEGER)"
  },
  {
    "answer": "SELECT AVG(Weight), YEAR FROM CARS_DATA GROUP BY YEAR",
    "question_en": "What is the average weight of cars each year?",
    "question_th": "น้ำหนักเฉลี่ยของรถยนต์ในแต่ละปีคือเท่าไร?",
    "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_en": "Which countries in europe have at least 3 car manufacturers?",
    "question_th": "ประเทศใดในยุโรปที่มีผู้ผลิตรถยนต์อย่างน้อย 3 ราย",
    "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_en": "What is the maximum horsepower and the make of the car models with 3 cylinders?",
    "question_th": "แรงม้าสูงสุดและยี่ห้อของรถรุ่น 3 สูบคือเท่าไร?",
    "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_en": "Which model saves the most gasoline? That is to say, have the maximum miles per gallon.",
    "question_th": "รุ่นไหนประหยัดน้ำมันมากที่สุด? กล่าวคือ มีไมล์สูงสุดต่อแกลลอน",
    "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_en": "What is the car model with the highest mpg ?",
    "question_th": "รถรุ่นอะไร 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_en": "What is the average horsepower of the cars before 1980?",
    "question_th": "แรงม้าเฉลี่ยของรถยนต์ก่อนปี 1980 เป็นเท่าใด?",
    "context": "CREATE TABLE CARS_DATA (horsepower INTEGER, YEAR INTEGER)"
  },
  {
    "answer": "SELECT AVG(horsepower) FROM cars_data WHERE year < 1980",
    "question_en": "What is the average horsepower for all cars produced before 1980 ?",
    "question_th": "แรงม้าเฉลี่ยของรถยนต์ทุกคันที่ผลิตก่อนปี 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_en": "What is the average edispl of the cars of model volvo?",
    "question_th": "ค่าเฉลี่ยของรถยนต์รุ่น 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_en": "What is the maximum accelerate for different number of cylinders?",
    "question_th": "อัตราเร่งสูงสุดสำหรับจำนวนกระบอกสูบต่างกันคือเท่าใด",
    "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_en": "Which model has the most version(make) of cars?",
    "question_th": "รถยนต์รุ่นใดมีรุ่น(ยี่ห้อ) มากที่สุด?",
    "context": "CREATE TABLE CAR_NAMES (Model VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM CARS_DATA WHERE Cylinders > 4",
    "question_en": "How many cars have more than 4 cylinders?",
    "question_th": "มีรถกี่คันที่มีมากกว่า 4 สูบ?",
    "context": "CREATE TABLE CARS_DATA (Cylinders INTEGER)"
  },
  {
    "answer": "SELECT COUNT(*) FROM CARS_DATA WHERE YEAR = 1980",
    "question_en": "how many cars were produced in 1980?",
    "question_th": "มีรถยนต์กี่คันที่ผลิตในปี 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_en": "How many car models were produced by the maker with full name American Motor Company?",
    "question_th": "ผู้ผลิตรถยนต์ที่มีชื่อเต็มว่า 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_en": "Which makers designed more than 3 car models? List full name and the id.",
    "question_th": "ผู้ผลิตรายไหนออกแบบรถมากกว่า 3 รุ่น? รายชื่อเต็มและรหัส",
    "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_en": "Which distinctive models are produced by maker with the full name General Motors or weighing more than 3500?",
    "question_th": "รุ่นที่โดดเด่นใดบ้างที่ผลิตโดยผู้ผลิตที่มีชื่อเต็มว่า General Motors หรือมีน้ำหนักมากกว่า 3,500?",
    "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_en": "In which years cars were produced weighing no less than 3000 and no more than 4000 ?",
    "question_th": "ในปีใดมีการผลิตรถยนต์ที่มีน้ำหนักไม่ต่ำกว่า 3,000 คัน และไม่เกิน 4,000 คัน ?",
    "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_en": "What is the horsepower of the car with the largest accelerate?",
    "question_th": "แรงม้าของรถที่มีอัตราเร่งสูงสุดคือเท่าไร?",
    "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_en": "For model volvo, how many cylinders does the car with the least accelerate have?",
    "question_th": "สำหรับรุ่นวอลโว่ รถที่มีอัตราเร่งน้อยที่สุดมีกี่กระบอกสูบ?",
    "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_en": "How many cars have a larger accelerate than the car with the largest horsepower?",
    "question_th": "มีรถยนต์กี่คันที่มีอัตราเร่งมากกว่ารถที่มีแรงม้ามากที่สุด?",
    "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_en": "How many countries has more than 2 car makers ?",
    "question_th": "มีกี่ประเทศที่มีผู้ผลิตรถยนต์มากกว่า 2 ราย?",
    "context": "CREATE TABLE car_makers (country VARCHAR); CREATE TABLE countries (countryid VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM CARS_DATA WHERE Cylinders > 6",
    "question_en": "How many cars has over 6 cylinders?",
    "question_th": "มีรถกี่คันที่มีมากกว่า 6 สูบ?",
    "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_en": "For the cars with 4 cylinders, which model has the largest horsepower?",
    "question_th": "สำหรับรถยนต์ที่มี 4 สูบ รุ่นไหนมีแรงม้ามากที่สุด?",
    "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_en": "Among the cars with more than lowest horsepower, which ones do not have more than 3 cylinders? List the car makeid and make name.",
    "question_th": "ในบรรดารถที่มีแรงม้ามากกว่าต่ำสุด คันไหนมีไม่เกิน 3 สูบ? ระบุยี่ห้อรถและชื่อ",
    "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_en": "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 ?",
    "question_th": "ในบรรดารถที่ไม่มีแรงม้าขั้นต่ำ มียี่ห้อและชื่อรถที่มีเครื่องยนต์น้อยกว่า 4 สูบอะไรบ้าง ?",
    "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_en": "What is the maximum miles per gallon of the car with 8 cylinders or produced before 1980 ?",
    "question_th": "รถ 8 สูบ หรือผลิตก่อนปี 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_en": "Which models are lighter than 3500 but not built by the 'Ford Motor Company'?",
    "question_th": "รุ่นไหนเบากว่า 3500 แต่ไม่ได้สร้างโดย 'บริษัท Ford Motor'?",
    "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_en": "What are the name of the countries where there is not a single car maker?",
    "question_th": "ประเทศที่ไม่มีผู้ผลิตรถยนต์รายเดียวชื่ออะไร?",
    "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_en": "Which are the car makers which produce at least 2 models and more than 3 car makers ? List the id and the maker .",
    "question_th": "ผู้ผลิตรถยนต์รายใดที่ผลิตรถยนต์อย่างน้อย 2 รุ่นและมากกว่า 3 ผู้ผลิตรถยนต์คือบริษัทใด ? ระบุรหัสและผู้สร้าง",
    "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_en": "What are the ids and makers of all car makers that produce at least 2 models and make more than 3 cars?",
    "question_th": "รหัสและผู้ผลิตของผู้ผลิตรถยนต์ทั้งหมดที่ผลิตอย่างน้อย 2 รุ่นและผลิตรถยนต์มากกว่า 3 คันคืออะไร",
    "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_en": "What are the id and names of the countries which have more than 3 car makers or produce the 'fiat' model?",
    "question_th": "ID และชื่อของประเทศที่มีผู้ผลิตรถยนต์มากกว่า 3 รายหรือผลิตรุ่น 'Fiat' คืออะไร?",
    "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_en": "What are the ids and names of all countries that either have more than 3 car makers or produce fiat model ?",
    "question_th": "รหัสและชื่อของทุกประเทศที่มีผู้ผลิตรถยนต์มากกว่า 3 รายหรือผลิตรุ่น fiat คืออะไร",
    "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_en": "Which country does Airline \"JetBlue Airways\" belong to?",
    "question_th": "สายการบิน \"เจ็ทบลูแอร์เวย์\" อยู่ในประเทศใด?",
    "context": "CREATE TABLE AIRLINES (Country VARCHAR, Airline VARCHAR)"
  },
  {
    "answer": "SELECT Abbreviation FROM AIRLINES WHERE Airline = \"JetBlue Airways\"",
    "question_en": "What is the abbreviation of Airline \"JetBlue Airways\"?",
    "question_th": "สายการบิน JetBlue Airways อักษรย่อว่าอะไร?",
    "context": "CREATE TABLE AIRLINES (Abbreviation VARCHAR, Airline VARCHAR)"
  },
  {
    "answer": "SELECT Airline, Abbreviation FROM AIRLINES WHERE Country = \"USA\"",
    "question_en": "List all airline names and their abbreviations in \"USA\".",
    "question_th": "ระบุชื่อสายการบินและตัวย่อทั้งหมดใน \"USA\"",
    "context": "CREATE TABLE AIRLINES (Airline VARCHAR, Abbreviation VARCHAR, Country VARCHAR)"
  },
  {
    "answer": "SELECT AirportCode, AirportName FROM AIRPORTS WHERE city = \"Anthony\"",
    "question_en": "List the airport code and name in the city of Anthony.",
    "question_th": "ระบุรหัสสนามบินและชื่อในเมือง Anthony",
    "context": "CREATE TABLE AIRPORTS (AirportCode VARCHAR, AirportName VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM AIRLINES",
    "question_en": "How many airlines do we have?",
    "question_th": "เรามีสายการบินกี่สาย?",
    "context": "CREATE TABLE AIRLINES (Id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM AIRPORTS",
    "question_en": "How many airports do we have?",
    "question_th": "เรามีสนามบินกี่แห่ง?",
    "context": "CREATE TABLE AIRPORTS (Id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM FLIGHTS",
    "question_en": "How many flights do we have?",
    "question_th": "เรามีเที่ยวบินกี่เที่ยว?",
    "context": "CREATE TABLE FLIGHTS (Id VARCHAR)"
  },
  {
    "answer": "SELECT Airline FROM AIRLINES WHERE Abbreviation = \"UAL\"",
    "question_en": "Which airline has abbreviation 'UAL'?",
    "question_th": "สายการบินใดมีอักษรย่อ 'UAL'?",
    "context": "CREATE TABLE AIRLINES (Airline VARCHAR, Abbreviation VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM AIRLINES WHERE Country = \"USA\"",
    "question_en": "How many airlines are from USA?",
    "question_th": "มีสายการบินกี่แห่งจากสหรัฐอเมริกา?",
    "context": "CREATE TABLE AIRLINES (Country VARCHAR)"
  },
  {
    "answer": "SELECT City, Country FROM AIRPORTS WHERE AirportName = \"Alton\"",
    "question_en": "Which city and country is the Alton airport at?",
    "question_th": "สนามบินอัลตันตั้งอยู่ที่เมืองและประเทศใด",
    "context": "CREATE TABLE AIRPORTS (City VARCHAR, Country VARCHAR, AirportName VARCHAR)"
  },
  {
    "answer": "SELECT AirportName FROM AIRPORTS WHERE AirportCode = \"AKO\"",
    "question_en": "What is the airport name for airport 'AKO'?",
    "question_th": "ชื่อสนามบินของสนามบิน 'AKO' คืออะไร?",
    "context": "CREATE TABLE AIRPORTS (AirportName VARCHAR, AirportCode VARCHAR)"
  },
  {
    "answer": "SELECT AirportName FROM AIRPORTS WHERE City = \"Aberdeen\"",
    "question_en": "What are airport names at City 'Aberdeen'?",
    "question_th": "ชื่อสนามบินใน City 'Aberdeen' คืออะไร?",
    "context": "CREATE TABLE AIRPORTS (AirportName VARCHAR, City VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM FLIGHTS WHERE SourceAirport = \"APG\"",
    "question_en": "How many flights depart from 'APG'?",
    "question_th": "มีเที่ยวบินกี่เที่ยวที่ออกจาก 'APG'",
    "context": "CREATE TABLE FLIGHTS (SourceAirport VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM FLIGHTS WHERE DestAirport = \"ATO\"",
    "question_en": "How many flights have destination ATO?",
    "question_th": "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_en": "How many flights depart from City Aberdeen?",
    "question_th": "มีเที่ยวบินที่เดินทางออกจากซิตี้ อเบอร์ดีน กี่เที่ยว?",
    "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_en": "How many flights arriving in Aberdeen city?",
    "question_th": "มีเที่ยวบินกี่เที่ยวที่มาถึงเมืองอเบอร์ดีน?",
    "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_en": "How many flights depart from City 'Aberdeen' and have destination City 'Ashley'?",
    "question_th": "มีเที่ยวบินที่เดินทางออกจากเมือง 'แอเบอร์ดีน' และมีเมืองปลายทาง 'แอชลีย์' กี่เที่ยวบิน?",
    "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_en": "How many flights does airline 'JetBlue Airways' have?",
    "question_th": "สายการบิน 'เจ็ทบลูแอร์เวย์' มีกี่เที่ยวบิน?",
    "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_en": "How many 'United Airlines' flights go to Airport 'ASY'?",
    "question_th": "เที่ยวบินของ 'ยูไนเต็ดแอร์ไลน์' ไปยังสนามบิน '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_en": "How many 'United Airlines' flights depart from Airport 'AHD'?",
    "question_th": "มีเที่ยวบินของ 'ยูไนเต็ดแอร์ไลน์' ที่ออกจากสนามบิน '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_en": "How many United Airlines flights go to City 'Aberdeen'?",
    "question_th": "มีเที่ยวบินของ United Airlines ไปยังเมือง 'อเบอร์ดีน' กี่เที่ยว?",
    "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_en": "Which city has most number of arriving flights?",
    "question_th": "เมืองใดมีเที่ยวบินขาเข้ามากที่สุด",
    "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_en": "Which city has most number of departing flights?",
    "question_th": "เมืองใดมีเที่ยวบินขาออกมากที่สุด",
    "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_en": "What is the code of airport that has the highest number of flights?",
    "question_th": "รหัสสนามบินที่มีจำนวนเที่ยวบินมากที่สุดคือข้อใด",
    "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_en": "What is the code of airport that has fewest number of flights?",
    "question_th": "รหัสสนามบินที่มีจำนวนเที่ยวบินน้อยที่สุดคือข้อใด",
    "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_en": "Which airline has most number of flights?",
    "question_th": "สายการบินใดมีจำนวนเที่ยวบินมากที่สุด?",
    "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_en": "Find the abbreviation and country of the airline that has fewest number of flights?",
    "question_th": "ค้นหาชื่อย่อและประเทศของสายการบินที่มีจำนวนเที่ยวบินน้อยที่สุด?",
    "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_en": "What are airlines that have some flight departing from airport 'AHD'?",
    "question_th": "สายการบินใดบ้างที่มีเที่ยวบินที่ออกเดินทางจากสนามบิน '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_en": "What are airlines that have flights arriving at airport 'AHD'?",
    "question_th": "สายการบินใดบ้างที่มีเที่ยวบินมาถึงสนามบิน '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_en": "Find all airlines that have flights from both airports 'APG' and 'CVO'.",
    "question_th": "ค้นหาสายการบินทั้งหมดที่มีเที่ยวบินจากทั้งสนามบิน 'APG' และ '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_en": "Find all airlines that have flights from airport 'CVO' but not from 'APG'.",
    "question_th": "ค้นหาสายการบินทั้งหมดที่มีเที่ยวบินจากสนามบิน 'CVO' แต่ไม่ใช่เที่ยวบินจาก '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_en": "Find all airlines that have at least 10 flights.",
    "question_th": "ค้นหาสายการบินทั้งหมดที่มีอย่างน้อย 10 เที่ยวบิน",
    "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_en": "Find all airlines that have fewer than 200 flights.",
    "question_th": "ค้นหาสายการบินทั้งหมดที่มีเที่ยวบินน้อยกว่า 200 เที่ยวบิน",
    "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_en": "What are flight numbers of Airline \"United Airlines\"?",
    "question_th": "หมายเลขเที่ยวบินของสายการบิน \"ยูไนเต็ดแอร์ไลน์\" คืออะไร?",
    "context": "CREATE TABLE AIRLINES (uid VARCHAR, Airline VARCHAR); CREATE TABLE FLIGHTS (FlightNo VARCHAR, Airline VARCHAR)"
  },
  {
    "answer": "SELECT FlightNo FROM FLIGHTS WHERE SourceAirport = \"APG\"",
    "question_en": "What are flight numbers of flights departing from Airport \"APG\"?",
    "question_th": "เที่ยวบินจำนวนเท่าใดที่ออกเดินทางจากสนามบิน \"APG\"",
    "context": "CREATE TABLE FLIGHTS (FlightNo VARCHAR, SourceAirport VARCHAR)"
  },
  {
    "answer": "SELECT FlightNo FROM FLIGHTS WHERE DestAirport = \"APG\"",
    "question_en": "What are flight numbers of flights arriving at Airport \"APG\"?",
    "question_th": "เที่ยวบินที่มาถึงสนามบิน \"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_en": "What are flight numbers of flights departing from City \"Aberdeen \"?",
    "question_th": "เที่ยวบินจำนวนเท่าใดที่ออกเดินทางจากเมือง \"อเบอร์ดีน \"?",
    "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_en": "What are flight numbers of flights arriving at City \"Aberdeen\"?",
    "question_th": "เที่ยวบินที่มาถึงเมือง \"อเบอร์ดีน\" หมายเลขเที่ยวบินใด",
    "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_en": "Find the number of flights landing in the city of Aberdeen or Abilene.",
    "question_th": "ค้นหาจำนวนเที่ยวบินที่ลงจอดในเมืองอเบอร์ดีนหรืออาบีลีน",
    "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_en": "Find the name of airports which do not have any flight in and out.",
    "question_th": "ค้นหาชื่อสนามบินที่ไม่มีเที่ยวบินเข้าออก",
    "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_en": "Sort employee names by their age in ascending order.",
    "question_th": "จัดเรียงชื่อพนักงานตามอายุโดยเรียงลำดับจากน้อยไปมาก",
    "context": "CREATE TABLE employee (name VARCHAR, age VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*), city FROM employee GROUP BY city",
    "question_en": "What is the number of employees from each city?",
    "question_th": "จำนวนพนักงานจากแต่ละเมืองคือเท่าไร?",
    "context": "CREATE TABLE employee (city VARCHAR)"
  },
  {
    "answer": "SELECT city FROM employee WHERE age < 30 GROUP BY city HAVING COUNT(*) > 1",
    "question_en": "Which cities do more than one employee under age 30 come from?",
    "question_th": "พนักงานอายุต่ำกว่า 30 ปีมากกว่าหนึ่งคนมาจากเมืองใดบ้าง",
    "context": "CREATE TABLE employee (city VARCHAR, age INTEGER)"
  },
  {
    "answer": "SELECT COUNT(*), LOCATION FROM shop GROUP BY LOCATION",
    "question_en": "Find the number of shops in each location.",
    "question_th": "ค้นหาจำนวนร้านค้าในแต่ละสถานที่",
    "context": "CREATE TABLE shop (LOCATION VARCHAR)"
  },
  {
    "answer": "SELECT manager_name, district FROM shop ORDER BY number_products DESC LIMIT 1",
    "question_en": "Find the manager name and district of the shop whose number of products is the largest.",
    "question_th": "ค้นหาชื่อผู้จัดการและเขตของร้านค้าที่มีจำนวนสินค้ามากที่สุด",
    "context": "CREATE TABLE shop (manager_name VARCHAR, district VARCHAR, number_products VARCHAR)"
  },
  {
    "answer": "SELECT MIN(Number_products), MAX(Number_products) FROM shop",
    "question_en": "find the minimum and maximum number of products of all stores.",
    "question_th": "ค้นหาจำนวนสินค้าขั้นต่ำและสูงสุดของร้านค้าทั้งหมด",
    "context": "CREATE TABLE shop (Number_products INTEGER)"
  },
  {
    "answer": "SELECT name, LOCATION, district FROM shop ORDER BY number_products DESC",
    "question_en": "Return the name, location and district of all shops in descending order of number of products.",
    "question_th": "กลับชื่อ ที่ตั้ง และอำเภอของร้านค้าทั้งหมดโดยเรียงตามจำนวนสินค้าจากมากไปน้อย",
    "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_en": "Find the names of stores whose number products is more than the average number of products.",
    "question_th": "ค้นหาชื่อร้านค้าที่มีจำนวนสินค้ามากกว่าจำนวนสินค้าโดยเฉลี่ย",
    "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_en": "find the name of employee who was awarded the most times in the evaluation.",
    "question_th": "ค้นหาชื่อพนักงานที่ได้รับรางวัลมากที่สุดในการประเมิน",
    "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_en": "Find the name of the employee who got the highest one time bonus.",
    "question_th": "ค้นหาชื่อพนักงานที่ได้รับโบนัสครั้งเดียวสูงสุด",
    "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_en": "Find the names of employees who never won any award in the evaluation.",
    "question_th": "ค้นหารายชื่อพนักงานที่ไม่เคยได้รับรางวัลใดๆ ในการประเมิน",
    "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_en": "What is the name of the shop that is hiring the largest number of employees?",
    "question_th": "ร้านที่รับสมัครพนักงานมากที่สุดชื่อว่าอะไรคะ?",
    "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_en": "Find the name of the shops that do not hire any employee.",
    "question_th": "ค้นหาชื่อร้านค้าที่ไม่จ้างพนักงานคนใด",
    "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_en": "Find the number of employees hired in each shop; show the shop name as well.",
    "question_th": "ค้นหาจำนวนพนักงานที่ได้รับการว่าจ้างในแต่ละร้าน แสดงชื่อร้านด้วย",
    "context": "CREATE TABLE shop (name VARCHAR, shop_id VARCHAR); CREATE TABLE hiring (shop_id VARCHAR)"
  },
  {
    "answer": "SELECT SUM(bonus) FROM evaluation",
    "question_en": "What is total bonus given in all evaluations?",
    "question_th": "โบนัสทั้งหมดที่มอบให้ในการประเมินทั้งหมดคือเท่าไร?",
    "context": "CREATE TABLE evaluation (bonus INTEGER)"
  },
  {
    "answer": "SELECT * FROM hiring",
    "question_en": "Give me all the information about hiring.",
    "question_th": "ให้ข้อมูลทั้งหมดเกี่ยวกับการจ้างงานแก่ฉัน",
    "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_en": "Which district has both stores with less than 3000 products and stores with more than 10000 products?",
    "question_th": "เขตใดมีทั้งร้านค้าที่มีสินค้าน้อยกว่า 3,000 รายการและร้านค้าที่มีสินค้ามากกว่า 10,000 รายการ",
    "context": "CREATE TABLE shop (district VARCHAR, Number_products INTEGER)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT LOCATION) FROM shop",
    "question_en": "How many different store locations are there?",
    "question_th": "มีร้านค้าที่แตกต่างกันกี่แห่ง?",
    "context": "CREATE TABLE shop (LOCATION VARCHAR)"
  },
  {
    "answer": "SELECT document_id, document_name, document_description FROM Documents",
    "question_en": "List document IDs, document names, and document descriptions for all documents.",
    "question_th": "แสดงรายการ ID เอกสาร ชื่อเอกสาร และคำอธิบายเอกสารสำหรับเอกสารทั้งหมด",
    "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_en": "What is the document name and template id for document with description with the letter 'w' in it?",
    "question_th": "ชื่อเอกสารและรหัสเทมเพลตสำหรับเอกสารที่มีคำอธิบายมีตัวอักษร 'w' อยู่ในนั้นคืออะไร",
    "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_en": "What is the document id, template id and description for document named \"Robbin CV\"?",
    "question_th": "รหัสเอกสาร รหัสเทมเพลต และคำอธิบายสำหรับเอกสารชื่อ \"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_en": "How many different templates do all document use?",
    "question_th": "เอกสารทั้งหมดใช้เทมเพลตที่แตกต่างกันกี่แบบ",
    "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_en": "How many documents are using the template with type code 'PPT'?",
    "question_th": "มีเอกสารกี่ฉบับที่ใช้เทมเพลตที่มีรหัสประเภท '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_en": "Show all template ids and number of documents using each template.",
    "question_th": "แสดงรหัสเทมเพลตทั้งหมดและจำนวนเอกสารโดยใช้แต่ละเทมเพลต",
    "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_en": "What is the id and type code for the template used by the most documents?",
    "question_th": "รหัส id และรหัสประเภทสำหรับเทมเพลตที่ใช้โดยเอกสารส่วนใหญ่คืออะไร?",
    "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_en": "Show ids for all templates that are used by more than one document.",
    "question_th": "แสดงรหัสสำหรับเทมเพลตทั้งหมดที่ใช้โดยเอกสารมากกว่าหนึ่งฉบับ",
    "context": "CREATE TABLE Documents (template_id VARCHAR)"
  },
  {
    "answer": "SELECT template_id FROM Templates EXCEPT SELECT template_id FROM Documents",
    "question_en": "Show ids for all templates not used by any document.",
    "question_th": "แสดงรหัสสำหรับเทมเพลตทั้งหมดที่เอกสารใดไม่ได้ใช้",
    "context": "CREATE TABLE Documents (template_id VARCHAR); CREATE TABLE Templates (template_id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Templates",
    "question_en": "How many templates do we have?",
    "question_th": "เรามีเทมเพลตกี่แบบ?",
    "context": "CREATE TABLE Templates (Id VARCHAR)"
  },
  {
    "answer": "SELECT template_id, version_number, template_type_code FROM Templates",
    "question_en": "Show template ids, version numbers, and template type codes for all templates.",
    "question_th": "แสดงรหัสเทมเพลต หมายเลขเวอร์ชัน และรหัสประเภทเทมเพลตสำหรับเทมเพลตทั้งหมด",
    "context": "CREATE TABLE Templates (template_id VARCHAR, version_number VARCHAR, template_type_code VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT template_type_code FROM Templates",
    "question_en": "Show all distinct template type codes for all templates.",
    "question_th": "แสดงรหัสประเภทเทมเพลตที่แตกต่างกันทั้งหมดสำหรับเทมเพลตทั้งหมด",
    "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_en": "What are the ids of templates with template type code PP or PPT?",
    "question_th": "รหัสของเทมเพลตที่มีรหัสประเภทเทมเพลต PP หรือ PPT คืออะไร",
    "context": "CREATE TABLE Templates (template_id VARCHAR, template_type_code VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Templates WHERE template_type_code = \"CV\"",
    "question_en": "How many templates have template type code CV?",
    "question_th": "มีเทมเพลตกี่แบบที่มีรหัสประเภทเทมเพลต CV",
    "context": "CREATE TABLE Templates (template_type_code VARCHAR)"
  },
  {
    "answer": "SELECT version_number, template_type_code FROM Templates WHERE version_number > 5",
    "question_en": "What is the version number and template type code for the template with version number later than 5?",
    "question_th": "หมายเลขเวอร์ชันและรหัสประเภทเทมเพลตสำหรับเทมเพลตที่มีหมายเลขเวอร์ชันใหม่กว่า 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_en": "Show all template type codes and number of templates for each.",
    "question_th": "แสดงรหัสประเภทเทมเพลตทั้งหมดและจำนวนเทมเพลตสำหรับแต่ละรายการ",
    "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_en": "Which template type code has most number of templates?",
    "question_th": "โค้ดประเภทเทมเพลตใดมีจำนวนเทมเพลตมากที่สุด",
    "context": "CREATE TABLE Templates (template_type_code VARCHAR)"
  },
  {
    "answer": "SELECT template_type_code FROM Templates GROUP BY template_type_code HAVING COUNT(*) < 3",
    "question_en": "Show all template type codes with less than three templates.",
    "question_th": "แสดงรหัสประเภทเทมเพลตทั้งหมดที่มีเทมเพลตน้อยกว่าสามเทมเพลต",
    "context": "CREATE TABLE Templates (template_type_code VARCHAR)"
  },
  {
    "answer": "SELECT MIN(Version_Number), template_type_code FROM Templates",
    "question_en": "What the smallest version number and its template type code?",
    "question_th": "หมายเลขเวอร์ชันที่เล็กที่สุดและรหัสประเภทเทมเพลตคืออะไร?",
    "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_en": "What is the template type code of the template used by document with the name \"Data base\"?",
    "question_th": "รหัสประเภทเทมเพลตของเทมเพลตที่ใช้โดยเอกสารชื่อ \"ฐานข้อมูล\" คืออะไร",
    "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_en": "Show all document names using templates with template type code BK.",
    "question_th": "แสดงชื่อเอกสารทั้งหมดโดยใช้เทมเพลตพร้อมรหัสประเภทเทมเพลต 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_en": "Show all template type codes and the number of documents using each type.",
    "question_th": "แสดงรหัสประเภทเทมเพลตทั้งหมดและจำนวนเอกสารที่ใช้แต่ละประเภท",
    "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_en": "Which template type code is used by most number of documents?",
    "question_th": "เอกสารส่วนใหญ่ใช้รหัสประเภทเทมเพลตใด",
    "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_en": "Show all template type codes that are not used by any document.",
    "question_th": "แสดงรหัสประเภทเทมเพลตทั้งหมดที่เอกสารใดไม่ได้ใช้",
    "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_en": "Show all template type codes and descriptions.",
    "question_th": "แสดงรหัสและคำอธิบายประเภทเทมเพลตทั้งหมด",
    "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_en": "What is the template type descriptions for template type code \"AD\".",
    "question_th": "คำอธิบายประเภทเทมเพลตสำหรับรหัสประเภทเทมเพลต \"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_en": "What is the template type code for template type description \"Book\".",
    "question_th": "รหัสประเภทเทมเพลตสำหรับคำอธิบายประเภทเทมเพลต \"หนังสือ\" คืออะไร",
    "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_en": "What are the distinct template type descriptions for the templates ever used by any document?",
    "question_th": "คำอธิบายประเภทเทมเพลตที่ชัดเจนสำหรับเทมเพลตที่เคยใช้ในเอกสารใด ๆ คืออะไร",
    "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_en": "What are the template ids with template type description \"Presentation\".",
    "question_th": "รหัสเทมเพลตที่มีคำอธิบายประเภทเทมเพลต \"การนำเสนอ\" คืออะไร",
    "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_en": "How many paragraphs in total?",
    "question_th": "มีทั้งหมดกี่ย่อหน้า?",
    "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_en": "How many paragraphs for the document with name 'Summer Show'?",
    "question_th": "เอกสารชื่อ '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_en": "Show paragraph details for paragraph with text 'Korea ' .",
    "question_th": "แสดงรายละเอียดย่อหน้าสำหรับย่อหน้าที่มีข้อความ '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_en": "Show all paragraph ids and texts for the document with name 'Welcome to NY'.",
    "question_th": "แสดงรหัสย่อหน้าและข้อความทั้งหมดสำหรับเอกสารชื่อ \"ยินดีต้อนรับสู่นิวยอร์ก\"",
    "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_en": "Show all paragraph texts for the document \"Customer reviews\".",
    "question_th": "แสดงข้อความย่อหน้าทั้งหมดสำหรับเอกสาร \"บทวิจารณ์ของลูกค้า\"",
    "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_en": "Show all document ids and the number of paragraphs in each document. Order by document id.",
    "question_th": "แสดงรหัสเอกสารทั้งหมดและจำนวนย่อหน้าในแต่ละเอกสาร สั่งซื้อตามรหัสเอกสาร",
    "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_en": "Show all document ids, names and the number of paragraphs in each document.",
    "question_th": "แสดงรหัสเอกสาร ชื่อ และจำนวนย่อหน้าทั้งหมดในแต่ละเอกสาร",
    "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_en": "List all document ids with at least two paragraphs.",
    "question_th": "แสดงรายการรหัสเอกสารทั้งหมดที่มีอย่างน้อยสองย่อหน้า",
    "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_en": "What is the document id and name with greatest number of paragraphs?",
    "question_th": "รหัสเอกสารและชื่อที่มีจำนวนย่อหน้ามากที่สุดคืออะไร?",
    "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_en": "What is the document id with least number of paragraphs?",
    "question_th": "รหัสเอกสารที่มีจำนวนย่อหน้าน้อยที่สุดคืออะไร?",
    "context": "CREATE TABLE Paragraphs (document_id VARCHAR)"
  },
  {
    "answer": "SELECT document_id FROM Paragraphs GROUP BY document_id HAVING COUNT(*) BETWEEN 1 AND 2",
    "question_en": "What is the document id with 1 to 2 paragraphs?",
    "question_th": "รหัสเอกสารที่มี 1 ถึง 2 ย่อหน้าคืออะไร?",
    "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_en": "Show the document id with paragraph text 'Brazil' and 'Ireland'.",
    "question_th": "แสดงรหัสเอกสารพร้อมข้อความย่อหน้า 'บราซิล' และ 'ไอร์แลนด์'",
    "context": "CREATE TABLE Paragraphs (document_id VARCHAR, paragraph_text VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM teacher",
    "question_en": "How many teachers are there?",
    "question_th": "มีครูกี่คน?",
    "context": "CREATE TABLE teacher (Id VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM teacher ORDER BY Age",
    "question_en": "List the names of teachers in ascending order of age.",
    "question_th": "รายชื่อครูตามลำดับอายุจากน้อยไปมาก",
    "context": "CREATE TABLE teacher (Name VARCHAR, Age VARCHAR)"
  },
  {
    "answer": "SELECT Age, Hometown FROM teacher",
    "question_en": "What are the age and hometown of teachers?",
    "question_th": "อายุและบ้านเกิดของครูคือเท่าไร?",
    "context": "CREATE TABLE teacher (Age VARCHAR, Hometown VARCHAR)"
  },
  {
    "answer": "SELECT name FROM teacher WHERE hometown <> \"little lever urban district\"",
    "question_en": "List the name of teachers whose hometown is not `` Little Lever Urban District '' .",
    "question_th": "รายชื่อครูที่บ้านเกิดไม่ใช่ `` เขตเมืองลีเวอร์น้อย ''",
    "context": "CREATE TABLE teacher (name VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM teacher WHERE Age = 32 OR Age = 33",
    "question_en": "Show the name of teachers aged either 32 or 33?",
    "question_th": "แสดงชื่อครูอายุ 32 หรือ 33 ปี?",
    "context": "CREATE TABLE teacher (Name VARCHAR, Age VARCHAR)"
  },
  {
    "answer": "SELECT Hometown FROM teacher ORDER BY Age LIMIT 1",
    "question_en": "What is the hometown of the youngest teacher?",
    "question_th": "บ้านเกิดของครูที่อายุน้อยที่สุดคืออะไร?",
    "context": "CREATE TABLE teacher (Hometown VARCHAR, Age VARCHAR)"
  },
  {
    "answer": "SELECT Hometown, COUNT(*) FROM teacher GROUP BY Hometown",
    "question_en": "Show different hometown of teachers and the number of teachers from each hometown.",
    "question_th": "แสดงบ้านเกิดของครูที่แตกต่างกัน และจำนวนครูจากแต่ละบ้านเกิด",
    "context": "CREATE TABLE teacher (Hometown VARCHAR)"
  },
  {
    "answer": "SELECT Hometown FROM teacher GROUP BY Hometown ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "List the most common hometown of teachers.",
    "question_th": "รายชื่อบ้านเกิดของครูที่พบมากที่สุด",
    "context": "CREATE TABLE teacher (Hometown VARCHAR)"
  },
  {
    "answer": "SELECT Hometown FROM teacher GROUP BY Hometown HAVING COUNT(*) >= 2",
    "question_en": "Show the hometowns shared by at least two teachers.",
    "question_th": "แสดงบ้านเกิดที่ครูอย่างน้อยสองคนมีร่วมกัน",
    "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_en": "Show names of teachers and the courses they are arranged to teach.",
    "question_th": "แสดงชื่อครูและหลักสูตรที่จัดสอน",
    "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_en": "Show names of teachers and the courses they are arranged to teach in ascending alphabetical order of the teacher's name.",
    "question_th": "แสดงชื่อครูและรายวิชาที่จัดสอนโดยเรียงตามตัวอักษรของชื่อครู",
    "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_en": "Show the name of the teacher for the math course.",
    "question_th": "แสดงชื่อครูประจำวิชาคณิตศาสตร์",
    "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_en": "Show names of teachers and the number of courses they teach.",
    "question_th": "แสดงชื่อครูและจำนวนรายวิชาที่สอน",
    "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_en": "Show names of teachers that teach at least two courses.",
    "question_th": "แสดงชื่อครูที่สอนอย่างน้อยสองรายวิชา",
    "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_en": "List the names of teachers who have not been arranged to teach courses.",
    "question_th": "รายชื่อครูที่ยังไม่ได้จัดการเรียนการสอนรายวิชา",
    "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_en": "How many visitors below age 30 are there?",
    "question_th": "มีผู้เข้าชมที่มีอายุต่ำกว่า 30 ปีกี่คน?",
    "context": "CREATE TABLE visitor (age INTEGER)"
  },
  {
    "answer": "SELECT name FROM visitor WHERE Level_of_membership > 4 ORDER BY Level_of_membership DESC",
    "question_en": "Find the names of the visitors whose membership level is higher than 4, and order the results by the level from high to low.",
    "question_th": "ค้นหาชื่อผู้เข้าชมที่มีระดับสมาชิกสูงกว่า 4 และเรียงลำดับผลลัพธ์ตามระดับจากสูงไปต่ำ",
    "context": "CREATE TABLE visitor (name VARCHAR, Level_of_membership INTEGER)"
  },
  {
    "answer": "SELECT AVG(age) FROM visitor WHERE Level_of_membership <= 4",
    "question_en": "What is the average age of the visitors whose membership level is not higher than 4?",
    "question_th": "อายุเฉลี่ยของผู้เข้าชมที่มีระดับสมาชิกไม่สูงกว่า 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_en": "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.",
    "question_th": "ค้นหาชื่อและระดับสมาชิกของผู้เข้าชมที่มีระดับสมาชิกสูงกว่า 4 และจัดเรียงตามอายุตั้งแต่อายุมากจนถึงอายุน้อย",
    "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_en": "Find the id and name of the museum that has the most staff members?",
    "question_th": "ค้นหารหัสและชื่อพิพิธภัณฑ์ที่มีเจ้าหน้าที่มากที่สุด?",
    "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_en": "Find the average number of staff working for the museums that were open before 2009.",
    "question_th": "ค้นหาจำนวนพนักงานโดยเฉลี่ยที่ทำงานให้กับพิพิธภัณฑ์ที่เปิดก่อนปี 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_en": "What are the opening year and staff number of the museum named Plaza Museum?",
    "question_th": "พิพิธภัณฑ์พลาซ่ามิวเซียมเปิดทำการและหมายเลขเจ้าหน้าที่คือเมื่อใด",
    "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_en": "find the names of museums which have more staff than the minimum staff number of all museums opened after 2010.",
    "question_th": "ค้นหาชื่อพิพิธภัณฑ์ที่มีเจ้าหน้าที่มากกว่าจำนวนพนักงานขั้นต่ำของพิพิธภัณฑ์ทุกแห่งที่เปิดหลังปี 2553",
    "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_en": "find the id, name and age for visitors who visited some museums more than once.",
    "question_th": "ค้นหารหัส ชื่อ และอายุของผู้เยี่ยมชมที่เคยเยี่ยมชมพิพิธภัณฑ์บางแห่งมากกว่าหนึ่งครั้ง",
    "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_en": "What are the id, name and membership level of visitors who have spent the largest amount of money in total in all museum tickets?",
    "question_th": "รหัส ชื่อ และระดับสมาชิกของผู้เข้าชมที่ใช้เงินรวมมากที่สุดในตั๋วพิพิธภัณฑ์ทั้งหมดคือเท่าใด",
    "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_en": "What are the id and name of the museum visited most times?",
    "question_th": "รหัสและชื่อของพิพิธภัณฑ์ที่เข้าชมบ่อยที่สุดคืออะไร?",
    "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_en": "What is the name of the museum that had no visitor yet?",
    "question_th": "พิพิธภัณฑ์ที่ยังไม่มีผู้เยี่ยมชมชื่ออะไร?",
    "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_en": "Find the name and age of the visitor who bought the most tickets at once.",
    "question_th": "ค้นหาชื่อและอายุของผู้เข้าชมที่ซื้อตั๋วมากที่สุดในคราวเดียว",
    "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_en": "What are the average and maximum number of tickets bought in all visits?",
    "question_th": "จำนวนตั๋วโดยเฉลี่ยและสูงสุดที่ซื้อในการเข้าชมทั้งหมดคือเท่าใด",
    "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_en": "What is the total ticket expense of the visitors whose membership level is 1?",
    "question_th": "ค่าตั๋วทั้งหมดของผู้เยี่ยมชมที่มีระดับสมาชิกเป็น 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_en": "What is the name of the visitor who visited both a museum opened before 2009 and a museum opened after 2011?",
    "question_th": "ผู้เข้าชมที่เยี่ยมชมทั้งพิพิธภัณฑ์ที่เปิดก่อนปี 2009 และพิพิธภัณฑ์ที่เปิดหลังปี 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_en": "Find the number of visitors who did not visit any museum opened after 2010.",
    "question_th": "ค้นหาจำนวนผู้เข้าชมที่ไม่ได้เยี่ยมชมพิพิธภัณฑ์ใดๆ ที่เปิดหลังปี 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_en": "How many museums were opened after 2013 or before 2008?",
    "question_th": "มีพิพิธภัณฑ์กี่แห่งที่เปิดหลังปี 2556 หรือก่อนปี 2551",
    "context": "CREATE TABLE museum (open_year VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM players",
    "question_en": "Find the total number of players.",
    "question_th": "ค้นหาจำนวนผู้เล่นทั้งหมด",
    "context": "CREATE TABLE players (Id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM matches",
    "question_en": "Find the total number of matches.",
    "question_th": "ค้นหาจำนวนการแข่งขันทั้งหมด",
    "context": "CREATE TABLE matches (Id VARCHAR)"
  },
  {
    "answer": "SELECT first_name, birth_date FROM players WHERE country_code = 'USA'",
    "question_en": "List the first name and birth date of all players from the country with code USA.",
    "question_th": "รายชื่อและวันเกิดของผู้เล่นทั้งหมดจากประเทศที่มีรหัส 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_en": "Find the average age of losers and winners of all matches.",
    "question_th": "ค้นหาอายุเฉลี่ยของผู้แพ้และผู้ชนะการแข่งขันทั้งหมด",
    "context": "CREATE TABLE matches (loser_age INTEGER, winner_age INTEGER)"
  },
  {
    "answer": "SELECT AVG(winner_rank) FROM matches",
    "question_en": "Find the average rank of winners in all matches.",
    "question_th": "ค้นหาอันดับเฉลี่ยของผู้ชนะในการแข่งขันทั้งหมด",
    "context": "CREATE TABLE matches (winner_rank INTEGER)"
  },
  {
    "answer": "SELECT MIN(loser_rank) FROM matches",
    "question_en": "Find the highest rank of losers in all matches.",
    "question_th": "ค้นหาผู้แพ้อันดับสูงสุดในทุกแมตช์",
    "context": "CREATE TABLE matches (loser_rank INTEGER)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT country_code) FROM players",
    "question_en": "find the number of distinct country codes of all players.",
    "question_th": "ค้นหาหมายเลขรหัสประเทศที่แตกต่างกันของผู้เล่นทุกคน",
    "context": "CREATE TABLE players (country_code VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT loser_name) FROM matches",
    "question_en": "Find the number of distinct name of losers.",
    "question_th": "ค้นหาจำนวนชื่อที่ชัดเจนของผู้แพ้",
    "context": "CREATE TABLE matches (loser_name VARCHAR)"
  },
  {
    "answer": "SELECT tourney_name FROM matches GROUP BY tourney_name HAVING COUNT(*) > 10",
    "question_en": "Find the name of tourney that has more than 10 matches.",
    "question_th": "ค้นหาชื่อทัวร์นาเมนท์ที่มีมากกว่า 10 นัด",
    "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_en": "List the names of all winners who played in both 2013 and 2016.",
    "question_th": "รายชื่อผู้ชนะทั้งหมดที่เล่นในปี 2013 และ 2016",
    "context": "CREATE TABLE matches (winner_name VARCHAR, YEAR VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM matches WHERE YEAR = 2013 OR YEAR = 2016",
    "question_en": "List the number of all matches who played in years of 2013 or 2016.",
    "question_th": "ระบุจำนวนการแข่งขันทั้งหมดที่เล่นในปี 2013 หรือ 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_en": "What are the country code and first name of the players who won in both tourney WTA Championships and Australian Open?",
    "question_th": "รหัสประเทศและชื่อของผู้เล่นที่ชนะทั้งทัวร์นาเมนต์ WTA Championships และ 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_en": "Find the first name and country code of the oldest player.",
    "question_th": "ค้นหาชื่อและรหัสประเทศของผู้เล่นอายุมากที่สุด",
    "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_en": "List the first and last name of all players in the order of birth date.",
    "question_th": "ระบุชื่อและนามสกุลของผู้เล่นทั้งหมดตามลำดับวันเกิด",
    "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_en": "List the first and last name of all players who are left / L hand in the order of birth date.",
    "question_th": "ระบุชื่อและนามสกุลของผู้เล่นทั้งหมดที่เหลืออยู่ / มือ L ตามลำดับวันเกิด",
    "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_en": "Find the first name and country code of the player who did the most number of tours.",
    "question_th": "ค้นหาชื่อและรหัสประเทศของผู้เล่นที่ทำทัวร์มากที่สุด",
    "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_en": "Find the year that has the most number of matches.",
    "question_th": "ค้นหาปีที่มีจำนวนการแข่งขันมากที่สุด",
    "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_en": "Find the name and rank points of the winner who won the most times.",
    "question_th": "ค้นหาชื่อและอันดับคะแนนของผู้ชนะที่ชนะมากที่สุด",
    "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_en": "Find the name of the winner who has the highest rank points and participated in the Australian Open tourney.",
    "question_th": "ค้นหาชื่อผู้ชนะที่มีคะแนนอันดับสูงสุดและเข้าร่วมการแข่งขัน Australian Open",
    "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_en": "find the names of loser and winner who played in the match with greatest number of minutes.",
    "question_th": "ค้นหาชื่อผู้แพ้และผู้ชนะที่เล่นในนัดที่มีจำนวนนาทีมากที่สุด",
    "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_en": "Find the average ranking for each player and their first name.",
    "question_th": "ค้นหาอันดับเฉลี่ยของผู้เล่นแต่ละคนและชื่อของพวกเขา",
    "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_en": "Find the total ranking points for each player and their first name.",
    "question_th": "ค้นหาคะแนนรวมของผู้เล่นแต่ละคนและชื่อของพวกเขา",
    "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_en": "find the number of players for each country.",
    "question_th": "ค้นหาจำนวนผู้เล่นในแต่ละประเทศ",
    "context": "CREATE TABLE players (country_code VARCHAR)"
  },
  {
    "answer": "SELECT country_code FROM players GROUP BY country_code ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "find the code of the country where has the greatest number of players.",
    "question_th": "ค้นหารหัสของประเทศที่มีจำนวนผู้เล่นมากที่สุด",
    "context": "CREATE TABLE players (country_code VARCHAR)"
  },
  {
    "answer": "SELECT country_code FROM players GROUP BY country_code HAVING COUNT(*) > 50",
    "question_en": "Find the codes of countries that have more than 50 players.",
    "question_th": "ค้นหารหัสประเทศที่มีผู้เล่นมากกว่า 50 คน",
    "context": "CREATE TABLE players (country_code VARCHAR)"
  },
  {
    "answer": "SELECT SUM(tours), ranking_date FROM rankings GROUP BY ranking_date",
    "question_en": "Find the total number of tours for each ranking date.",
    "question_th": "ค้นหาจำนวนทัวร์ทั้งหมดในแต่ละวันที่มีการจัดอันดับ",
    "context": "CREATE TABLE rankings (ranking_date VARCHAR, tours INTEGER)"
  },
  {
    "answer": "SELECT COUNT(*), YEAR FROM matches GROUP BY YEAR",
    "question_en": "Find the number of matches happened in each year.",
    "question_th": "ค้นหาจำนวนการแข่งขันที่เกิดขึ้นในแต่ละปี",
    "context": "CREATE TABLE matches (YEAR VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT winner_name, winner_rank FROM matches ORDER BY winner_age LIMIT 3",
    "question_en": "Find the name and rank of the 3 youngest winners across all matches.",
    "question_th": "ค้นหาชื่อและอันดับของผู้ชนะที่อายุน้อยที่สุด 3 รายจากทุกแมตช์",
    "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_en": "How many different winners both participated in the WTA Championships and were left handed?",
    "question_th": "มีผู้ชนะที่แตกต่างกันกี่คนที่เข้าร่วมการแข่งขัน WTA Championships และถูกถนัดซ้าย?",
    "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_en": "Find the first name, country code and birth date of the winner who has the highest rank points in all matches.",
    "question_th": "ค้นหาชื่อ รหัสประเทศ และวันเกิดของผู้ชนะที่มีแต้มอันดับสูงสุดในทุกแมตช์",
    "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_en": "Find the number of players for each hand type.",
    "question_th": "ค้นหาจำนวนผู้เล่นสำหรับแต่ละประเภทมือ",
    "context": "CREATE TABLE players (hand VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM ship WHERE disposition_of_ship = 'Captured'",
    "question_en": "How many ships ended up being 'Captured'?",
    "question_th": "มีเรือกี่ลำที่ถูก 'ยึด'?",
    "context": "CREATE TABLE ship (disposition_of_ship VARCHAR)"
  },
  {
    "answer": "SELECT name, tonnage FROM ship ORDER BY name DESC",
    "question_en": "List the name and tonnage ordered by in descending alphaetical order for the names.",
    "question_th": "ระบุชื่อและระวางน้ำหนักโดยเรียงลำดับตามตัวอักษรจากมากไปน้อยสำหรับชื่อ",
    "context": "CREATE TABLE ship (name VARCHAR, tonnage VARCHAR)"
  },
  {
    "answer": "SELECT name, date FROM battle",
    "question_en": "List the name, date and result of each battle.",
    "question_th": "ระบุชื่อ วันที่ และผลการต่อสู้แต่ละครั้ง",
    "context": "CREATE TABLE battle (name VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(killed), MIN(killed) FROM death",
    "question_en": "What is maximum and minimum death toll caused each time?",
    "question_th": "ยอดผู้เสียชีวิตสูงสุดและต่ำสุดที่เกิดขึ้นในแต่ละครั้งคือเท่าใด?",
    "context": "CREATE TABLE death (killed INTEGER)"
  },
  {
    "answer": "SELECT AVG(injured) FROM death",
    "question_en": "What is the average number of injuries caused each time?",
    "question_th": "จำนวนการบาดเจ็บที่เกิดขึ้นในแต่ละครั้งโดยเฉลี่ยคือเท่าใด?",
    "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_en": "What are the death and injury situations caused by the ship with tonnage 't'?",
    "question_th": "สถานการณ์การเสียชีวิตและการบาดเจ็บที่เกิดจากเรือที่มีน้ำหนัก '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_en": "What are the name and results of the battles when the bulgarian commander is not 'Boril'",
    "question_th": "ชื่อและผลลัพธ์ของการรบคืออะไรเมื่อผู้บัญชาการบัลแกเรียไม่ใช่ 'โบริล'",
    "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_en": "What are the different ids and names of the battles that lost any 'Brig' type shipes?",
    "question_th": "อะไรคือรหัสและชื่อของการรบที่สูญเสียเรือรบประเภท 'Brig'?",
    "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_en": "What are the ids and names of the battles that led to more than 10 people killed in total.",
    "question_th": "รหัสและชื่อของการต่อสู้ที่ทำให้มีผู้เสียชีวิตทั้งหมดมากกว่า 10 คนคืออะไร",
    "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_en": "What is the ship id and name that caused most total injuries?",
    "question_th": "รหัสเรือและชื่อใดที่ทำให้เกิดการบาดเจ็บทั้งหมดมากที่สุด?",
    "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_en": "What are the distinct battle names which are between bulgarian commander 'Kaloyan' and latin commander 'Baldwin I'?",
    "question_th": "ชื่อการต่อสู้ที่แตกต่างกันระหว่างผู้บัญชาการบัลแกเรีย 'Kaloyan' และผู้บัญชาการภาษาละติน 'Baldwin I' คืออะไร",
    "context": "CREATE TABLE battle (name VARCHAR, bulgarian_commander VARCHAR, latin_commander VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT RESULT) FROM battle",
    "question_en": "How many different results are there for the battles?",
    "question_th": "มีผลลัพธ์ที่แตกต่างกันกี่แบบสำหรับการต่อสู้?",
    "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_en": "How many battles did not lose any ship with tonnage '225'?",
    "question_th": "มีกี่การรบที่ไม่แพ้เรือลำใดที่มีน้ำหนัก '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_en": "List the name and date the battle that has lost the ship named 'Lettice' and the ship named 'HMS Atalanta'",
    "question_th": "ระบุชื่อและวันที่การรบที่สูญเสียเรือชื่อ 'Lettice' และเรือชื่อ '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_en": "Show names, results and bulgarian commanders of the battles with no ships lost in the 'English Channel'.",
    "question_th": "แสดงชื่อ ผลลัพธ์ และผู้บัญชาการการรบบัลแกเรียโดยไม่มีเรือสูญหายใน 'ช่องแคบอังกฤษ'",
    "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_en": "What are the notes of the death events which has substring 'East'?",
    "question_th": "บันทึกเหตุการณ์การตายซึ่งมีซับสตริง 'ตะวันออก' คืออะไร?",
    "context": "CREATE TABLE death (note VARCHAR)"
  },
  {
    "answer": "SELECT line_1, line_2 FROM addresses",
    "question_en": "what are all the addresses including line 1 and line 2?",
    "question_th": "ที่อยู่ทั้งหมดรวมถึงบรรทัด 1 และบรรทัด 2 คืออะไร?",
    "context": "CREATE TABLE addresses (line_1 VARCHAR, line_2 VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Courses",
    "question_en": "How many courses in total are listed?",
    "question_th": "มีรายชื่อหลักสูตรทั้งหมดกี่หลักสูตร?",
    "context": "CREATE TABLE Courses (Id VARCHAR)"
  },
  {
    "answer": "SELECT course_description FROM Courses WHERE course_name = 'math'",
    "question_en": "How is the math course described?",
    "question_th": "วิชาคณิตศาสตร์อธิบายไว้อย่างไร?",
    "context": "CREATE TABLE Courses (course_description VARCHAR, course_name VARCHAR)"
  },
  {
    "answer": "SELECT zip_postcode FROM Addresses WHERE city = 'Port Chelsea'",
    "question_en": "What is the zip code of the address in the city Port Chelsea?",
    "question_th": "รหัสไปรษณีย์ของที่อยู่ในเมือง 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_en": "Which department offers the most number of degrees? List department name and id.",
    "question_th": "แผนกใดเปิดสอนหลักสูตรจำนวนมากที่สุด? รายชื่อแผนกชื่อและรหัส",
    "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_en": "What is the name and id of the department with the most number of degrees ?",
    "question_th": "ชื่อและรหัสของแผนกที่มีจำนวนปริญญามากที่สุดคืออะไร?",
    "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_en": "How many departments offer any degree?",
    "question_th": "มีกี่แผนกที่เปิดสอนระดับปริญญาใด ๆ ?",
    "context": "CREATE TABLE Degree_Programs (department_id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT degree_summary_name) FROM Degree_Programs",
    "question_en": "How many different degree names are offered?",
    "question_th": "มีการเสนอชื่อปริญญาที่แตกต่างกันกี่ชื่อ?",
    "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_en": "How many degrees does the engineering department offer?",
    "question_th": "คณะวิศวกรรมศาสตร์เปิดสอนกี่ปริญญา?",
    "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_en": "What are the names and descriptions of all the sections?",
    "question_th": "ชื่อและคำอธิบายของทุกส่วนคืออะไร?",
    "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_en": "What are the names and id of courses having at most 2 sections?",
    "question_th": "ชื่อและรหัสของหลักสูตรที่มีไม่เกิน 2 ส่วนคืออะไร",
    "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_en": "List the section_name in reversed lexicographical order.",
    "question_th": "แสดงรายการ Section_name ตามลำดับพจนานุกรมแบบย้อนกลับ",
    "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_en": "What is the semester which most student registered in? Show both the name and the id.",
    "question_th": "นักเรียนส่วนใหญ่ลงทะเบียนเรียนในภาคการศึกษาใด? แสดงทั้งชื่อและรหัส",
    "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_en": "What is the description of the department whose name has the substring the computer?",
    "question_th": "คำอธิบายของแผนกที่มีชื่อย่อยอยู่ในคอมพิวเตอร์คืออะไร?",
    "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_en": "Who are enrolled in 2 degree programs in one semester? List the first name, middle name and last name and the id.",
    "question_th": "ใครบ้างที่ลงทะเบียนในหลักสูตร 2 องศาในหนึ่งภาคการศึกษา? ระบุชื่อ ชื่อกลาง และนามสกุล และรหัสประจำตัว",
    "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_en": "Who is enrolled in a Bachelor degree program? List the first name, middle name, last name.",
    "question_th": "ใครบ้างที่ลงทะเบียนเรียนหลักสูตรปริญญาตรี? ระบุชื่อ ชื่อกลาง นามสกุล.",
    "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_en": "Find the kind of program which most number of students are enrolled in?",
    "question_th": "ค้นหาโปรแกรมประเภทใดที่มีนักเรียนลงทะเบียนเรียนมากที่สุด?",
    "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_en": "Find the program which most number of students are enrolled in. List both the id and the summary.",
    "question_th": "ค้นหาโปรแกรมที่มีผู้เรียนมากที่สุด ระบุทั้ง ID และสรุป",
    "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_en": "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.",
    "question_th": "นักเรียนคนไหนที่ลงทะเบียนเรียนในโปรแกรมใด ๆ มากที่สุด? ระบุรหัส ชื่อ ชื่อกลาง นามสกุล จำนวนการลงทะเบียน และรหัสนักศึกษา",
    "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_en": "Which semesters do not have any student enrolled? List the semester name.",
    "question_th": "ภาคการศึกษาใดไม่มีนักศึกษาลงทะเบียนเรียน? รายชื่อภาคการศึกษา",
    "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_en": "What are all the course names of the courses which ever have students enrolled in?",
    "question_th": "ชื่อหลักสูตรของหลักสูตรที่นักศึกษาเคยลงทะเบียนเรียนมีชื่ออะไรบ้าง?",
    "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_en": "What's the name of the course with most number of enrollments?",
    "question_th": "ชื่อวิชาอะไรที่มีผู้ลงทะเบียนเรียนมากที่สุด?",
    "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_en": "Find the last name of the students who currently live in the state of North Carolina but have not registered in any degree program.",
    "question_th": "ค้นหานามสกุลของนักศึกษาที่ปัจจุบันอาศัยอยู่ในรัฐนอร์ธแคโรไลนา แต่ไม่ได้ลงทะเบียนในหลักสูตรปริญญาใดๆ",
    "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_en": "Show the date and id of the transcript with at least 2 course results.",
    "question_th": "แสดงวันที่และรหัสของใบรับรองผลการเรียนพร้อมผลการเรียนอย่างน้อย 2 รายการ",
    "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_en": "What is the phone number of the man with the first name Timmothy and the last name Ward?",
    "question_th": "หมายเลขโทรศัพท์ของชายชื่อ ทิมโมธี และนามสกุล วอร์ด คืออะไร?",
    "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_en": "What is the mobile phone number of the student named Timmothy Ward ?",
    "question_th": "หมายเลขโทรศัพท์มือถือของนักเรียนชื่อ ทิมโมธี วอร์ด คืออะไร?",
    "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_en": "Who is the first student to register? List the first name, middle name and last name.",
    "question_th": "นักเรียนคนแรกที่ลงทะเบียนคือใคร? ระบุชื่อ ชื่อกลาง และนามสกุล.",
    "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_en": "Who is the earliest graduate of the school? List the first name, middle name and last name.",
    "question_th": "ใครคือผู้ที่สำเร็จการศึกษาเร็วที่สุดในโรงเรียน? ระบุชื่อ ชื่อกลาง และนามสกุล.",
    "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_en": "Whose permanent address is different from his or her current address? List his or her first name.",
    "question_th": "ที่อยู่ถาวรของใครแตกต่างจากที่อยู่ปัจจุบันของเขาหรือเธอ? ระบุชื่อของเขาหรือเธอ",
    "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_en": "Which address holds the most number of students currently? List the address id and all lines.",
    "question_th": "ที่อยู่ใดมีนักเรียนจำนวนมากที่สุดในปัจจุบัน ระบุรหัสที่อยู่และบรรทัดทั้งหมด",
    "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_en": "On average, when were the transcripts printed?",
    "question_th": "โดยเฉลี่ยแล้วใบรับรองผลการเรียนจะถูกพิมพ์เมื่อใด",
    "context": "CREATE TABLE Transcripts (transcript_date INTEGER)"
  },
  {
    "answer": "SELECT transcript_date, other_details FROM Transcripts ORDER BY transcript_date LIMIT 1",
    "question_en": "When is the first transcript released? List the date and details.",
    "question_th": "Transcript ฉบับแรกจะออกเมื่อใด ระบุวันที่และรายละเอียด",
    "context": "CREATE TABLE Transcripts (transcript_date VARCHAR, other_details VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Transcripts",
    "question_en": "How many transcripts are released?",
    "question_th": "มีการออกใบรับรองผลการเรียนกี่ฉบับ?",
    "context": "CREATE TABLE Transcripts (Id VARCHAR)"
  },
  {
    "answer": "SELECT transcript_date FROM Transcripts ORDER BY transcript_date DESC LIMIT 1",
    "question_en": "What is the last transcript release date?",
    "question_th": "วันที่เผยแพร่การถอดเสียงครั้งสุดท้ายคือเมื่อใด",
    "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_en": "How many times at most can a course enrollment result show in different transcripts? Also show the course enrollment id.",
    "question_th": "ผลการลงทะเบียนหลักสูตรสามารถแสดงในใบรับรองผลการเรียนที่แตกต่างกันได้มากสุดกี่ครั้ง แสดงรหัสการลงทะเบียนหลักสูตรด้วย",
    "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_en": "Show the date of the transcript which shows the least number of results, also list the id.",
    "question_th": "แสดงวันที่ของทรานสคริปต์ซึ่งแสดงผลจำนวนน้อยที่สุดพร้อมระบุรหัสด้วย",
    "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_en": "Find the semester when both Master students and Bachelor students got enrolled in.",
    "question_th": "ค้นหาภาคการศึกษาที่นักศึกษาทั้งระดับปริญญาโทและปริญญาตรีลงทะเบียนเรียน",
    "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_en": "How many different addresses do the students currently live?",
    "question_th": "ปัจจุบันนักเรียนอาศัยอยู่ตามที่อยู่ที่แตกต่างกันกี่แห่ง?",
    "context": "CREATE TABLE Students (current_address_id VARCHAR)"
  },
  {
    "answer": "SELECT other_student_details FROM Students ORDER BY other_student_details DESC",
    "question_en": "List all the student details in reversed lexicographical order.",
    "question_th": "ระบุรายละเอียดของนักเรียนทั้งหมดโดยกลับลำดับพจนานุกรม",
    "context": "CREATE TABLE Students (other_student_details VARCHAR)"
  },
  {
    "answer": "SELECT section_description FROM Sections WHERE section_name = 'h'",
    "question_en": "Describe the section h.",
    "question_th": "อธิบายส่วน ซ.",
    "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_en": "Find the first name of the students who permanently live in the country Haiti or have the cell phone number 09700166582 .",
    "question_th": "ค้นหาชื่อของนักเรียนที่อาศัยอยู่อย่างถาวรในประเทศเฮติ หรือมีหมายเลขโทรศัพท์มือถือ 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_en": "List the title of all cartoons in alphabetical order.",
    "question_th": "ตั้งชื่อการ์ตูนทั้งหมดตามลำดับตัวอักษร",
    "context": "CREATE TABLE Cartoon (Title VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT Title FROM Cartoon WHERE Directed_by = \"Ben Jones\"",
    "question_en": "List all cartoon directed by \"Ben Jones\".",
    "question_th": "รายชื่อการ์ตูนทั้งหมดที่กำกับโดย \"เบน โจนส์\"",
    "context": "CREATE TABLE Cartoon (Title VARCHAR, Directed_by VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Cartoon WHERE Written_by = \"Joseph Kuhr\"",
    "question_en": "How many cartoons were written by \"Joseph Kuhr\"?",
    "question_th": "มีการ์ตูนกี่เรื่องที่เขียนโดย \"Joseph Kuhr\"?",
    "context": "CREATE TABLE Cartoon (Written_by VARCHAR)"
  },
  {
    "answer": "SELECT title, Directed_by FROM Cartoon ORDER BY Original_air_date",
    "question_en": "list all cartoon titles and their directors ordered by their air date",
    "question_th": "รายชื่อการ์ตูนทั้งหมดและผู้กำกับเรียงตามวันที่ออกอากาศ",
    "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_en": "List the title of all cartoon directed by \"Ben Jones\" or \"Brandon Vietti\".",
    "question_th": "ระบุชื่อการ์ตูนทั้งหมดที่กำกับโดย \"Ben Jones\" หรือ \"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_en": "Which country has the most of TV Channels? List the country and number of TV Channels it has.",
    "question_th": "ประเทศใดมีช่องทีวีมากที่สุด? ระบุประเทศและจำนวนช่องทีวีที่มี",
    "context": "CREATE TABLE TV_Channel (Country VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT series_name), COUNT(DISTINCT content) FROM TV_Channel",
    "question_en": "List the number of different series names and contents in the TV Channel table.",
    "question_th": "ระบุจำนวนชื่อซีรีส์และเนื้อหาต่างๆ ในตารางช่องทีวี",
    "context": "CREATE TABLE TV_Channel (series_name VARCHAR, content VARCHAR)"
  },
  {
    "answer": "SELECT Content FROM TV_Channel WHERE series_name = \"Sky Radio\"",
    "question_en": "What is the content of TV Channel with serial name \"Sky Radio\"?",
    "question_th": "เนื้อหาของช่องทีวีชื่อซีเรียล \"สกายเรดิโอ\" มีอะไรบ้าง?",
    "context": "CREATE TABLE TV_Channel (Content VARCHAR, series_name VARCHAR)"
  },
  {
    "answer": "SELECT Package_Option FROM TV_Channel WHERE series_name = \"Sky Radio\"",
    "question_en": "What is the Package Option of TV Channel with serial name \"Sky Radio\"?",
    "question_th": "Package Option ของช่องทีวีที่มีชื่อซีเรียลว่า \"Sky Radio\" คืออะไร?",
    "context": "CREATE TABLE TV_Channel (Package_Option VARCHAR, series_name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM TV_Channel WHERE LANGUAGE = \"English\"",
    "question_en": "How many TV Channel using language English?",
    "question_th": "มีทีวีกี่ช่องที่ใช้ภาษาอังกฤษ?",
    "context": "CREATE TABLE TV_Channel (LANGUAGE VARCHAR)"
  },
  {
    "answer": "SELECT LANGUAGE, COUNT(*) FROM TV_Channel GROUP BY LANGUAGE ORDER BY COUNT(*) LIMIT 1",
    "question_en": "List the language used least number of TV Channel. List language and number of TV Channel.",
    "question_th": "รายการภาษาที่ใช้จำนวนช่องทีวีน้อยที่สุด รายการภาษาและหมายเลขช่องทีวี",
    "context": "CREATE TABLE TV_Channel (LANGUAGE VARCHAR)"
  },
  {
    "answer": "SELECT LANGUAGE, COUNT(*) FROM TV_Channel GROUP BY LANGUAGE",
    "question_en": "List each language and the number of TV Channels using it.",
    "question_th": "ระบุแต่ละภาษาและจำนวนช่องทีวีที่ใช้",
    "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_en": "What is the TV Channel that shows the cartoon \"The Rise of the Blue Beetle!\"? List the TV Channel's series name.",
    "question_th": "ช่องทีวีที่แสดงการ์ตูนเรื่อง The Rise of the Blue Beetle! คือช่องอะไร? ระบุชื่อซีรีส์ของช่องทีวี",
    "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_en": "List the title of all  Cartoons showed on TV Channel with series name \"Sky Radio\".",
    "question_th": "รายชื่อการ์ตูนทั้งหมดที่ฉายทางช่องทีวีชื่อซีรีส์ \"สกายเรดิโอ\"",
    "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_en": "List the Episode of all TV series sorted by rating.",
    "question_th": "รายชื่อตอนของซีรีย์ทีวีทั้งหมดเรียงตามเรตติ้ง",
    "context": "CREATE TABLE TV_series (Episode VARCHAR, rating VARCHAR)"
  },
  {
    "answer": "SELECT Episode, Rating FROM TV_series ORDER BY Rating DESC LIMIT 3",
    "question_en": "List top 3 highest Rating  TV series. List the TV series's Episode and Rating.",
    "question_th": "รายชื่อซีรีย์ทีวีที่มีเรตติ้งสูงสุด 3 อันดับแรก แสดงรายการตอนและเรตติ้งของซีรีส์ทีวี",
    "context": "CREATE TABLE TV_series (Episode VARCHAR, Rating VARCHAR)"
  },
  {
    "answer": "SELECT MAX(SHARE), MIN(SHARE) FROM TV_series",
    "question_en": "What is minimum and maximum share of TV series?",
    "question_th": "ส่วนแบ่งขั้นต่ำและสูงสุดของซีรีย์ทีวีคือเท่าใด",
    "context": "CREATE TABLE TV_series (SHARE INTEGER)"
  },
  {
    "answer": "SELECT Air_Date FROM TV_series WHERE Episode = \"A Love of a Lifetime\"",
    "question_en": "What is the air date of TV series with Episode \"A Love of a Lifetime\"?",
    "question_th": "ละครโทรทัศน์ที่มีตอน \"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_en": "What is Weekly Rank of TV series with Episode \"A Love of a Lifetime\"?",
    "question_th": "อันดับรายสัปดาห์ของซีรีส์ทีวีที่มีตอน \"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_en": "What is the TV Channel of TV series with Episode \"A Love of a Lifetime\"? List the TV Channel's series name.",
    "question_th": "ช่องทีวีของละครโทรทัศน์ที่มีตอน \"รักชั่วชีวิต\" คืออะไร? ระบุชื่อซีรีส์ของช่องทีวี",
    "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_en": "List the Episode of all  TV series showed on TV Channel with series name \"Sky Radio\".",
    "question_th": "รายการตอนของละครโทรทัศน์ทั้งหมดที่ฉายทางช่องทีวีชื่อซีรีส์ \"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_en": "Find the number of cartoons directed by each of the listed directors.",
    "question_th": "ค้นหาจำนวนการ์ตูนที่กำกับโดยผู้กำกับแต่ละคน",
    "context": "CREATE TABLE cartoon (Directed_by VARCHAR)"
  },
  {
    "answer": "SELECT production_code, channel FROM cartoon ORDER BY original_air_date DESC LIMIT 1",
    "question_en": "Find the production code and channel of the most recently aired cartoon .",
    "question_th": "ค้นหารหัสการผลิตและช่องการ์ตูนที่ออกอากาศล่าสุด",
    "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_en": "Find the package choice and series name of the TV channel that has high definition TV.",
    "question_th": "ค้นหาตัวเลือกแพ็กเกจและชื่อซีรีส์ของช่องทีวีที่มีทีวีความคมชัดสูง",
    "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_en": "which countries' tv channels are playing some cartoon written by Todd Casey?",
    "question_th": "ช่องทีวีของประเทศใดบ้างที่เปิดดูการ์ตูนที่เขียนโดย 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_en": "which countries' tv channels are not playing any cartoon written by Todd Casey?",
    "question_th": "ช่องทีวีของประเทศใดบ้างที่ไม่เปิดดูการ์ตูนที่เขียนโดย 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_en": "Find the series name and country of the tv channel that is playing some cartoons directed by Ben Jones and Michael Chang?",
    "question_th": "ค้นหาชื่อซีรีส์และประเทศของช่องทีวีที่กำลังเล่นการ์ตูนที่กำกับโดย Ben Jones และ 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_en": "find the pixel aspect ratio and nation of the tv channels that do not use English.",
    "question_th": "ค้นหาอัตราส่วนพิกเซลและประเทศของช่องทีวีที่ไม่ใช้ภาษาอังกฤษ",
    "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_en": "find id of the tv channels that from the countries where have more than two tv channels.",
    "question_th": "ค้นหารหัสช่องทีวีจากประเทศที่มีช่องทีวีมากกว่าสองช่อง",
    "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_en": "find the id of tv channels that do not play any cartoon directed by Ben Jones.",
    "question_th": "ค้นหารหัสช่องทีวีที่ไม่เล่นการ์ตูนที่กำกับโดย 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_en": "find the package option of the tv channel that do not have any cartoon directed by Ben Jones.",
    "question_th": "ค้นหาตัวเลือกแพ็กเกจของช่องทีวีที่ไม่มีการ์ตูนกำกับโดย 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_en": "How many poker players are there?",
    "question_th": "มีผู้เล่นโป๊กเกอร์กี่คน?",
    "context": "CREATE TABLE poker_player (Id VARCHAR)"
  },
  {
    "answer": "SELECT Earnings FROM poker_player ORDER BY Earnings DESC",
    "question_en": "List the earnings of poker players in descending order.",
    "question_th": "แสดงรายการรายได้ของผู้เล่นโป๊กเกอร์ตามลำดับจากมากไปน้อย",
    "context": "CREATE TABLE poker_player (Earnings VARCHAR)"
  },
  {
    "answer": "SELECT Final_Table_Made, Best_Finish FROM poker_player",
    "question_en": "List the final tables made and the best finishes of poker players.",
    "question_th": "รายชื่อตารางสุดท้ายที่ทำขึ้นและการจบสกอร์ที่ดีที่สุดของผู้เล่นโป๊กเกอร์",
    "context": "CREATE TABLE poker_player (Final_Table_Made VARCHAR, Best_Finish VARCHAR)"
  },
  {
    "answer": "SELECT AVG(Earnings) FROM poker_player",
    "question_en": "What is the average earnings of poker players?",
    "question_th": "รายได้เฉลี่ยของผู้เล่นโป๊กเกอร์คือเท่าไร?",
    "context": "CREATE TABLE poker_player (Earnings INTEGER)"
  },
  {
    "answer": "SELECT Money_Rank FROM poker_player ORDER BY Earnings DESC LIMIT 1",
    "question_en": "What is the money rank of the poker player with the highest earnings?",
    "question_th": "อันดับเงินของผู้เล่นโป๊กเกอร์ที่มีรายได้สูงสุดคือเท่าไร?",
    "context": "CREATE TABLE poker_player (Money_Rank VARCHAR, Earnings VARCHAR)"
  },
  {
    "answer": "SELECT MAX(Final_Table_Made) FROM poker_player WHERE Earnings < 200000",
    "question_en": "What is the maximum number of final tables made among poker players with earnings less than 200000?",
    "question_th": "จำนวนโต๊ะสุดท้ายสูงสุดที่เกิดขึ้นในหมู่ผู้เล่นโป๊กเกอร์ที่มีรายได้น้อยกว่า 200,000 คือเท่าไร?",
    "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_en": "What are the names of poker players?",
    "question_th": "ผู้เล่นโป๊กเกอร์ชื่ออะไร?",
    "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_en": "What are the names of poker players whose earnings is higher than 300000?",
    "question_th": "ผู้เล่นโป๊กเกอร์ที่มีรายได้มากกว่า 300,000 ชื่ออะไร?",
    "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_en": "List the names of poker players ordered by the final tables made in ascending order.",
    "question_th": "รายชื่อผู้เล่นโป๊กเกอร์เรียงตามโต๊ะสุดท้ายตามลำดับจากน้อยไปหามาก",
    "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_en": "What is the birth date of the poker player with the lowest earnings?",
    "question_th": "วันเกิดของผู้เล่นโป๊กเกอร์ที่มีรายได้ต่ำที่สุดคือวันที่เท่าไหร่?",
    "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_en": "What is the money rank of the tallest poker player?",
    "question_th": "อันดับเงินของผู้เล่นโป๊กเกอร์ที่สูงที่สุดคืออะไร?",
    "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_en": "What is the average earnings of poker players with height higher than 200?",
    "question_th": "รายได้เฉลี่ยของผู้เล่นโป๊กเกอร์ที่มีส่วนสูงมากกว่า 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_en": "What are the names of poker players in descending order of earnings?",
    "question_th": "ผู้เล่นโป๊กเกอร์ชื่ออะไรโดยเรียงตามรายรับจากมากไปหาน้อย?",
    "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_en": "What are different nationalities of people and the corresponding number of people from each nation?",
    "question_th": "เชื้อชาติของผู้คนและจำนวนผู้คนจากแต่ละประเทศมีอะไรบ้าง?",
    "context": "CREATE TABLE people (Nationality VARCHAR)"
  },
  {
    "answer": "SELECT Nationality FROM people GROUP BY Nationality ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "What is the most common nationality of people?",
    "question_th": "คนส่วนใหญ่มีสัญชาติอะไร?",
    "context": "CREATE TABLE people (Nationality VARCHAR)"
  },
  {
    "answer": "SELECT Nationality FROM people GROUP BY Nationality HAVING COUNT(*) >= 2",
    "question_en": "What are the nationalities that are shared by at least two people?",
    "question_th": "เชื้อชาติใดบ้างที่มีคนร่วมกันอย่างน้อยสองคน?",
    "context": "CREATE TABLE people (Nationality VARCHAR)"
  },
  {
    "answer": "SELECT Name, Birth_Date FROM people ORDER BY Name",
    "question_en": "List the names and birth dates of people in ascending alphabetical order of name.",
    "question_th": "รายชื่อและวันเกิดของบุคคลตามลำดับตัวอักษรจากน้อยไปหามาก",
    "context": "CREATE TABLE people (Name VARCHAR, Birth_Date VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM people WHERE Nationality <> \"Russia\"",
    "question_en": "Show names of people whose nationality is not \"Russia\".",
    "question_th": "แสดงชื่อบุคคลซึ่งไม่ใช่สัญชาติ \"รัสเซีย\"",
    "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_en": "List the names of people that are not poker players.",
    "question_th": "รายชื่อบุคคลที่ไม่ใช่ผู้เล่นโป๊กเกอร์",
    "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_en": "How many distinct nationalities are there?",
    "question_th": "มีกี่เชื้อชาติที่แตกต่างกัน?",
    "context": "CREATE TABLE people (Nationality VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM area_code_state",
    "question_en": "How many states are there?",
    "question_th": "มีกี่รัฐ?",
    "context": "CREATE TABLE area_code_state (Id VARCHAR)"
  },
  {
    "answer": "SELECT contestant_number, contestant_name FROM contestants ORDER BY contestant_name DESC",
    "question_en": "List the contestant numbers and names, ordered by contestant name descending.",
    "question_th": "ระบุหมายเลขและชื่อผู้เข้าแข่งขัน เรียงตามชื่อผู้เข้าแข่งขันจากมากไปน้อย",
    "context": "CREATE TABLE contestants (contestant_number VARCHAR, contestant_name VARCHAR)"
  },
  {
    "answer": "SELECT vote_id, phone_number, state FROM votes",
    "question_en": "List the vote ids, phone numbers and states of all votes.",
    "question_th": "ระบุรหัสการลงคะแนน หมายเลขโทรศัพท์ และสถานะของการลงคะแนนทั้งหมด",
    "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_en": "What are the maximum and minimum values of area codes?",
    "question_th": "ค่าสูงสุดและต่ำสุดของรหัสพื้นที่คือเท่าใด",
    "context": "CREATE TABLE area_code_state (area_code INTEGER)"
  },
  {
    "answer": "SELECT MAX(created) FROM votes WHERE state = 'CA'",
    "question_en": "What is last date created of votes from the state 'CA'?",
    "question_th": "วันสุดท้ายที่สร้างคะแนนเสียงจากรัฐ 'CA' คืออะไร?",
    "context": "CREATE TABLE votes (created INTEGER, state VARCHAR)"
  },
  {
    "answer": "SELECT contestant_name FROM contestants WHERE contestant_name <> 'Jessie Alloway'",
    "question_en": "What are the names of the contestants whose names are not 'Jessie Alloway'",
    "question_th": "ผู้เข้าแข่งขันที่ไม่ใช่ชื่อ 'เจสซี่ อโลเวย์' ชื่ออะไร",
    "context": "CREATE TABLE contestants (contestant_name VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT state, created FROM votes",
    "question_en": "What are the distinct states and create time of all votes?",
    "question_th": "รัฐที่แตกต่างและสร้างเวลาของการลงคะแนนเสียงทั้งหมดคืออะไร?",
    "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_en": "What are the contestant numbers and names of the contestants who had at least two votes?",
    "question_th": "หมายเลขผู้เข้าแข่งขันและชื่อของผู้เข้าแข่งขันที่ได้รับการโหวตอย่างน้อยสองเสียงคือข้อใด",
    "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_en": "Of all the contestants who got voted, what is the contestant number and name of the contestant who got least votes?",
    "question_th": "ในบรรดาผู้เข้าแข่งขันที่ได้รับการโหวตทั้งหมด มีผู้เข้าแข่งขันหมายเลขใดและชื่อผู้เข้าแข่งขันที่ได้รับคะแนนน้อยที่สุดคือหมายเลขใด",
    "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_en": "What are the number of votes from state 'NY' or 'CA'?",
    "question_th": "จำนวนคะแนนเสียงจากรัฐ 'NY' หรือ 'CA' คือเท่าไร?",
    "context": "CREATE TABLE votes (state VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM contestants WHERE NOT contestant_number IN (SELECT contestant_number FROM votes)",
    "question_en": "How many contestants did not get voted?",
    "question_th": "มีผู้เข้าแข่งขันกี่คนที่ไม่ได้รับการโหวต?",
    "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_en": "What is the area code in which the most voters voted?",
    "question_th": "รหัสพื้นที่ที่ผู้ลงคะแนนเสียงลงคะแนนมากที่สุดคืออะไร?",
    "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_en": "What are the create dates, states, and phone numbers of the votes that were for the contestant named 'Tabatha Gehling'?",
    "question_th": "วันที่กำหนด รัฐ และหมายเลขโทรศัพท์ของการลงคะแนนเสียงของผู้เข้าแข่งขันชื่อ '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_en": "List the area codes in which voters voted both for the contestant 'Tabatha Gehling' and the contestant 'Kelly Clauss'.",
    "question_th": "ระบุรหัสพื้นที่ที่ผู้ลงคะแนนโหวตให้ทั้งผู้เข้าแข่งขัน 'Tabatha Gehling' และผู้แข่งขัน '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_en": "Return the names of the contestants whose names contain the substring 'Al' .",
    "question_th": "ส่งกลับชื่อของผู้เข้าแข่งขันที่มีชื่อประกอบด้วยสตริงย่อย 'Al'",
    "context": "CREATE TABLE contestants (contestant_name VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM country WHERE IndepYear > 1950",
    "question_en": "What are the names of all the countries that became independent after 1950?",
    "question_th": "ประเทศทั้งหมดที่ได้รับเอกราชหลังปี 1950 ชื่ออะไร",
    "context": "CREATE TABLE country (Name VARCHAR, IndepYear INTEGER)"
  },
  {
    "answer": "SELECT COUNT(*) FROM country WHERE GovernmentForm = \"Republic\"",
    "question_en": "How many countries have a republic as their form of government?",
    "question_th": "มีกี่ประเทศที่มีสาธารณรัฐเป็นรูปแบบการปกครองของตน",
    "context": "CREATE TABLE country (GovernmentForm VARCHAR)"
  },
  {
    "answer": "SELECT SUM(SurfaceArea) FROM country WHERE Region = \"Caribbean\"",
    "question_en": "What is the total surface area of the countries in the Caribbean region?",
    "question_th": "พื้นที่ผิวทั้งหมดของประเทศในภูมิภาคแคริบเบียนเป็นเท่าใด",
    "context": "CREATE TABLE country (SurfaceArea INTEGER, Region VARCHAR)"
  },
  {
    "answer": "SELECT Continent FROM country WHERE Name = \"Anguilla\"",
    "question_en": "Which continent is Anguilla in?",
    "question_th": "แองกวิลลาอยู่ในทวีปใด",
    "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_en": "Which region is the city Kabul located in?",
    "question_th": "เมืองคาบูลตั้งอยู่ในภูมิภาคใด",
    "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_en": "Which language is the most popular in Aruba?",
    "question_th": "ภาษาใดที่ได้รับความนิยมมากที่สุดในอารูบา?",
    "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_en": "What are the population and life expectancies in Brazil?",
    "question_th": "ประชากรและอายุขัยในบราซิลคือเท่าใด",
    "context": "CREATE TABLE country (Population VARCHAR, LifeExpectancy VARCHAR, Name VARCHAR)"
  },
  {
    "answer": "SELECT Population, Region FROM country WHERE Name = \"Angola\"",
    "question_en": "What are the region and population of Angola?",
    "question_th": "แองโกลามีภูมิภาคและประชากรเท่าใด",
    "context": "CREATE TABLE country (Population VARCHAR, Region VARCHAR, Name VARCHAR)"
  },
  {
    "answer": "SELECT AVG(LifeExpectancy) FROM country WHERE Region = \"Central Africa\"",
    "question_en": "What is the average expected life expectancy for countries in the region of Central Africa?",
    "question_th": "อายุขัยเฉลี่ยที่คาดหวังของประเทศในภูมิภาคแอฟริกากลางคือเท่าไร?",
    "context": "CREATE TABLE country (LifeExpectancy INTEGER, Region VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM country WHERE Continent = \"Asia\" ORDER BY LifeExpectancy LIMIT 1",
    "question_en": "What is the name of country that has the shortest life expectancy in Asia?",
    "question_th": "ประเทศที่มีอายุขัยสั้นที่สุดในเอเชียชื่ออะไร",
    "context": "CREATE TABLE country (Name VARCHAR, Continent VARCHAR, LifeExpectancy VARCHAR)"
  },
  {
    "answer": "SELECT SUM(Population), MAX(GNP) FROM country WHERE Continent = \"Asia\"",
    "question_en": "What is the total population and maximum GNP in Asia?",
    "question_th": "ประชากรทั้งหมดและ GNP สูงสุดในเอเชียคือเท่าใด",
    "context": "CREATE TABLE country (Population INTEGER, GNP INTEGER, Continent VARCHAR)"
  },
  {
    "answer": "SELECT AVG(LifeExpectancy) FROM country WHERE Continent = \"Africa\" AND GovernmentForm = \"Republic\"",
    "question_en": "What is the average life expectancy in African countries that are republics?",
    "question_th": "อายุขัยเฉลี่ยในประเทศแอฟริกาที่เป็นสาธารณรัฐคือเท่าใด",
    "context": "CREATE TABLE country (LifeExpectancy INTEGER, Continent VARCHAR, GovernmentForm VARCHAR)"
  },
  {
    "answer": "SELECT SUM(SurfaceArea) FROM country WHERE Continent = \"Asia\" OR Continent = \"Europe\"",
    "question_en": "What is the total surface area of the continents Asia and Europe?",
    "question_th": "พื้นที่ผิวทั้งหมดของทวีปเอเชียและยุโรปเป็นเท่าใด",
    "context": "CREATE TABLE country (SurfaceArea INTEGER, Continent VARCHAR)"
  },
  {
    "answer": "SELECT SUM(Population) FROM city WHERE District = \"Gelderland\"",
    "question_en": "How many people live in Gelderland district?",
    "question_th": "มีกี่คนที่อาศัยอยู่ในเขต Gelderland?",
    "context": "CREATE TABLE city (Population INTEGER, District VARCHAR)"
  },
  {
    "answer": "SELECT AVG(GNP), SUM(population) FROM country WHERE GovernmentForm = \"US Territory\"",
    "question_en": "What is the average GNP and total population in all nations whose government is US territory?",
    "question_th": "GNP เฉลี่ยและจำนวนประชากรทั้งหมดในทุกประเทศที่มีรัฐบาลอยู่ในดินแดนของสหรัฐอเมริกาคือเท่าใด",
    "context": "CREATE TABLE country (GNP INTEGER, population INTEGER, GovernmentForm VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT LANGUAGE) FROM countrylanguage",
    "question_en": "How many unique languages are spoken in the world?",
    "question_th": "มีภาษาที่พูดกันทั่วโลกกี่ภาษา?",
    "context": "CREATE TABLE countrylanguage (LANGUAGE VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT GovernmentForm) FROM country WHERE Continent = \"Africa\"",
    "question_en": "How many type of governments are in Africa?",
    "question_th": "รัฐบาลในแอฟริกามีกี่ประเภท?",
    "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_en": "What is the total number of languages used in Aruba?",
    "question_th": "Aruba มีภาษาใดบ้างที่ใช้ใน 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_en": "How many official languages does Afghanistan have?",
    "question_th": "อัฟกานิสถานมีภาษาราชการกี่ภาษา",
    "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_en": "What is name of the country that speaks the largest number of languages?",
    "question_th": "ประเทศที่พูดภาษาได้มากที่สุดชื่ออะไร",
    "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_en": "Which continent has the most diverse languages?",
    "question_th": "ทวีปใดมีภาษาที่หลากหลายที่สุด",
    "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_en": "How many countries speak both English and Dutch?",
    "question_th": "มีกี่ประเทศที่พูดทั้งภาษาอังกฤษและภาษาดัตช์?",
    "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_en": "What are the names of nations speak both English and French?",
    "question_th": "ชื่อประเทศอะไรพูดได้ทั้งภาษาอังกฤษและฝรั่งเศส?",
    "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_en": "What are the names of nations where both English and French are official languages?",
    "question_th": "ชื่อของประเทศใดที่มีทั้งภาษาอังกฤษและฝรั่งเศสเป็นภาษาราชการ?",
    "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_en": "What is the number of distinct continents where Chinese is spoken?",
    "question_th": "ทวีปที่พูดภาษาจีนมีกี่ทวีป?",
    "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_en": "What are the regions that use English or Dutch?",
    "question_th": "ภูมิภาคใดบ้างที่ใช้ภาษาอังกฤษหรือดัตช์?",
    "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_en": "What are the countries where either English or Dutch is the official language ?",
    "question_th": "ประเทศใดบ้างที่ภาษาอังกฤษหรือดัตช์เป็นภาษาราชการ?",
    "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_en": "Which countries have either English or Dutch as an official language?",
    "question_th": "ประเทศใดบ้างที่มีภาษาอังกฤษหรือภาษาดัตช์เป็นภาษาราชการ",
    "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_en": "Which language is the most popular on the Asian continent?",
    "question_th": "ภาษาใดที่ได้รับความนิยมมากที่สุดในทวีปเอเชีย",
    "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_en": "Which languages are spoken by only one country in republic governments?",
    "question_th": "ประเทศใดในรัฐบาลสาธารณรัฐเพียงประเทศเดียวที่พูดภาษาใด",
    "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_en": "Find the city with the largest population that uses English.",
    "question_th": "ค้นหาเมืองที่มีประชากรใช้ภาษาอังกฤษมากที่สุด",
    "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_en": "Find the name, population and expected life length of asian country with the largest area?",
    "question_th": "ค้นหาชื่อ ประชากร และอายุขัยที่คาดหวังของประเทศในเอเชียที่มีพื้นที่มากที่สุด?",
    "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_en": "What is average life expectancy in the countries where English is not the official language?",
    "question_th": "อายุขัยเฉลี่ยในประเทศที่ภาษาอังกฤษไม่ใช่ภาษาราชการคือเท่าใด",
    "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_en": "What is the total number of people living in the nations that do not use English?",
    "question_th": "จำนวนประชากรทั้งหมดที่อาศัยอยู่ในประเทศที่ไม่ใช้ภาษาอังกฤษคือเท่าไร?",
    "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_en": "What is the official language spoken in the country whose head of state is Beatrix?",
    "question_th": "ภาษาราชการที่ใช้ในประเทศที่มีประมุขแห่งรัฐคือเบียทริกซ์คือภาษาอะไร",
    "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_en": "What is the total number of unique official languages spoken in the countries that are founded before 1930?",
    "question_th": "จำนวนภาษาราชการเฉพาะที่พูดในประเทศต่างๆ ที่ก่อตั้งขึ้นก่อนปี 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_en": "What are the countries that have greater surface area than any country in Europe?",
    "question_th": "ประเทศใดบ้างที่มีพื้นที่ผิวมากกว่าประเทศใดๆ ในยุโรป?",
    "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_en": "What are the African countries that have a  population less than any country in Asia?",
    "question_th": "ประเทศในแอฟริกาที่มีประชากรน้อยกว่าประเทศใดในเอเชียคือประเทศใด",
    "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_en": "Which African countries have a smaller population than that of any country in Asia?",
    "question_th": "ประเทศใดในแอฟริกาที่มีประชากรน้อยกว่าประเทศใดๆ ในเอเชีย",
    "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_en": "Which Asian countries have a population that is larger than any country in Africa?",
    "question_th": "ประเทศใดในเอเชียมีประชากรมากกว่าประเทศใดๆ ในแอฟริกา",
    "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_en": "What are the Asian countries which have a population larger than that of any country in Africa?",
    "question_th": "ประเทศใดในเอเชียที่มีประชากรมากกว่าประเทศใดๆ ในแอฟริกา",
    "context": "CREATE TABLE country (Name VARCHAR, Continent VARCHAR, population INTEGER)"
  },
  {
    "answer": "SELECT CountryCode FROM countrylanguage EXCEPT SELECT CountryCode FROM countrylanguage WHERE LANGUAGE = \"English\"",
    "question_en": "What are the country codes for countries that do not speak English?",
    "question_th": "รหัสประเทศสำหรับประเทศที่ไม่พูดภาษาอังกฤษคืออะไร?",
    "context": "CREATE TABLE countrylanguage (CountryCode VARCHAR, LANGUAGE VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT CountryCode FROM countrylanguage WHERE LANGUAGE <> \"English\"",
    "question_en": "What are the country codes of countries where people use languages other than English?",
    "question_th": "รหัสประเทศของประเทศใดบ้างที่ผู้คนใช้ภาษาอื่นที่ไม่ใช่ภาษาอังกฤษ",
    "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_en": "What are the codes of the countries that do not speak English and whose government forms are not Republic?",
    "question_th": "รหัสของประเทศที่ไม่พูดภาษาอังกฤษและรูปแบบการปกครองไม่ใช่สาธารณรัฐมีอะไรบ้าง",
    "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_en": "Which cities are in European countries where English is not the official language?",
    "question_th": "เมืองใดบ้างที่อยู่ในประเทศแถบยุโรปที่ภาษาอังกฤษไม่ใช่ภาษาราชการ",
    "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_en": "Which unique cities are in Asian countries where Chinese is the official language ?",
    "question_th": "เมืองใดที่มีเอกลักษณ์เฉพาะในประเทศแถบเอเชียซึ่งมีภาษาจีนเป็นภาษาราชการ",
    "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_en": "Return the different names of cities that are in Asia and for which Chinese is the official language.",
    "question_th": "ส่งกลับชื่อเมืองต่างๆ ในเอเชีย และภาษาจีนเป็นภาษาราชการ",
    "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_en": "What are the name, independence year, and surface area of the country with the smallest population?",
    "question_th": "ชื่ออะไร ปีเอกราช และพื้นที่ผิวของประเทศที่มีประชากรน้อยที่สุดคืออะไร",
    "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_en": "What are the population, name and leader of the country with the largest area?",
    "question_th": "ประชากร ชื่อ และผู้นำของประเทศที่มีพื้นที่มากที่สุดคือข้อใด",
    "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_en": "Return the country name and the numbers of languages spoken for each country that speaks at least 3 languages.",
    "question_th": "ส่งกลับชื่อประเทศและจำนวนภาษาที่พูดสำหรับแต่ละประเทศที่พูดอย่างน้อย 3 ภาษา",
    "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_en": "Find the number of cities in each district whose population is greater than the average population of cities?",
    "question_th": "ค้นหาจำนวนเมืองในแต่ละเขตที่มีประชากรมากกว่าจำนวนประชากรเฉลี่ยของเมือง?",
    "context": "CREATE TABLE city (District VARCHAR, Population INTEGER)"
  },
  {
    "answer": "SELECT SUM(Population), GovernmentForm FROM country GROUP BY GovernmentForm HAVING AVG(LifeExpectancy) > 72",
    "question_en": "Find the government form name and total population for each government form whose average life expectancy is longer than 72.",
    "question_th": "ค้นหาชื่อแบบฟอร์มของรัฐบาลและจำนวนประชากรทั้งหมดสำหรับแต่ละแบบฟอร์มของรัฐบาลที่มีอายุขัยเฉลี่ยมากกว่า 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_en": "Find the average life expectancy and total population for each continent where the average life expectancy is shorter than 72?",
    "question_th": "ค้นหาอายุขัยเฉลี่ยและจำนวนประชากรทั้งหมดในแต่ละทวีปที่มีอายุขัยเฉลี่ยสั้นกว่า 72?",
    "context": "CREATE TABLE country (Continent VARCHAR, Population INTEGER, LifeExpectancy INTEGER)"
  },
  {
    "answer": "SELECT Name, SurfaceArea FROM country ORDER BY SurfaceArea DESC LIMIT 5",
    "question_en": "What are the names and areas of countries with the top 5 largest area?",
    "question_th": "ชื่อและพื้นที่ของประเทศที่มีพื้นที่ใหญ่ที่สุด 5 อันดับแรกคืออะไร?",
    "context": "CREATE TABLE country (Name VARCHAR, SurfaceArea VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM country ORDER BY Population DESC LIMIT 3",
    "question_en": "What are names of countries with the top 3 largest population?",
    "question_th": "ประเทศที่มีประชากรมากที่สุด 3 อันดับแรกชื่ออะไร?",
    "context": "CREATE TABLE country (Name VARCHAR, Population VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM country ORDER BY Population LIMIT 3",
    "question_en": "What are the names of the nations with the 3 lowest populations?",
    "question_th": "ประเทศที่มีประชากรน้อยที่สุด 3 อันดับแรกมีชื่ออะไรบ้าง?",
    "context": "CREATE TABLE country (Name VARCHAR, Population VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM country WHERE continent = \"Asia\"",
    "question_en": "how many countries are in Asia?",
    "question_th": "มีกี่ประเทศในเอเชีย?",
    "context": "CREATE TABLE country (continent VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM country WHERE continent = \"Europe\" AND Population = \"80000\"",
    "question_en": "What are the names of the countries that are in the continent of Europe and have a population of 80000?",
    "question_th": "ประเทศที่อยู่ในทวีปยุโรปและมีประชากร 80,000 ชื่ออะไร",
    "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_en": "What is the total population and average area of countries in the continent of North America whose area is bigger than 3000 ?",
    "question_th": "ประชากรทั้งหมดและพื้นที่เฉลี่ยของประเทศในทวีปอเมริกาเหนือซึ่งมีพื้นที่มากกว่า 3,000 คือเท่าใด",
    "context": "CREATE TABLE country (population INTEGER, surfacearea INTEGER, continent VARCHAR)"
  },
  {
    "answer": "SELECT name FROM city WHERE Population BETWEEN 160000 AND 900000",
    "question_en": "What are the cities whose population is between 160000 and 900000?",
    "question_th": "เมืองใดบ้างที่มีประชากรระหว่าง 160,000 ถึง 900,000 คน",
    "context": "CREATE TABLE city (name VARCHAR, Population INTEGER)"
  },
  {
    "answer": "SELECT name FROM city WHERE population BETWEEN 160000 AND 900000",
    "question_en": "Return the names of cities that have a population between 160000 and 900000 .",
    "question_th": "ส่งกลับชื่อเมืองที่มีประชากรระหว่าง 160000 ถึง 900000",
    "context": "CREATE TABLE city (name VARCHAR, population INTEGER)"
  },
  {
    "answer": "SELECT LANGUAGE FROM countrylanguage GROUP BY LANGUAGE ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "Which language is spoken by the largest number of countries?",
    "question_th": "ประเทศใดพูดภาษาใดมากที่สุด?",
    "context": "CREATE TABLE countrylanguage (LANGUAGE VARCHAR)"
  },
  {
    "answer": "SELECT LANGUAGE, CountryCode, MAX(Percentage) FROM countrylanguage GROUP BY CountryCode",
    "question_en": "What is the language spoken by the largest percentage of people in each country?",
    "question_th": "ภาษาใดที่มีคนพูดมากที่สุดในแต่ละประเทศ?",
    "context": "CREATE TABLE countrylanguage (LANGUAGE VARCHAR, CountryCode VARCHAR, Percentage INTEGER)"
  },
  {
    "answer": "SELECT COUNT(*), MAX(Percentage) FROM countrylanguage WHERE LANGUAGE = \"Spanish\" GROUP BY CountryCode",
    "question_en": "What is the total number of countries where Spanish is spoken by the largest percentage of people?",
    "question_th": "จำนวนประเทศที่มีผู้พูดภาษาสเปนมากที่สุดคือจำนวนเท่าใด",
    "context": "CREATE TABLE countrylanguage (Percentage INTEGER, CountryCode VARCHAR, LANGUAGE VARCHAR)"
  },
  {
    "answer": "SELECT CountryCode, MAX(Percentage) FROM countrylanguage WHERE LANGUAGE = \"Spanish\" GROUP BY CountryCode",
    "question_en": "What are the codes of countries where Spanish is spoken by the largest percentage of people?",
    "question_th": "รหัสของประเทศใดที่ผู้คนพูดภาษาสเปนมากที่สุดคือรหัสอะไร",
    "context": "CREATE TABLE countrylanguage (CountryCode VARCHAR, Percentage INTEGER, LANGUAGE VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM conductor",
    "question_en": "How many conductors are there?",
    "question_th": "มีตัวนำกี่ตัว?",
    "context": "CREATE TABLE conductor (Id VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM conductor ORDER BY Age",
    "question_en": "List the names of conductors in ascending order of age.",
    "question_th": "รายชื่อผู้ควบคุมวงเรียงตามอายุจากน้อยไปหามาก",
    "context": "CREATE TABLE conductor (Name VARCHAR, Age VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM conductor WHERE Nationality <> 'USA'",
    "question_en": "What are the names of conductors whose nationalities are not \"USA\"?",
    "question_th": "ชื่อของผู้ควบคุมวงที่ไม่ใช่สัญชาติ \"สหรัฐอเมริกา\" คืออะไร?",
    "context": "CREATE TABLE conductor (Name VARCHAR, Nationality VARCHAR)"
  },
  {
    "answer": "SELECT Record_Company FROM orchestra ORDER BY Year_of_Founded DESC",
    "question_en": "What are the record companies of orchestras in descending order of years in which they were founded?",
    "question_th": "บริษัทแผ่นเสียงของวงออเคสตราโดยเรียงตามปีที่พวกเขาก่อตั้งขึ้นจากมากไปหาน้อยคืออะไร?",
    "context": "CREATE TABLE orchestra (Record_Company VARCHAR, Year_of_Founded VARCHAR)"
  },
  {
    "answer": "SELECT AVG(Attendance) FROM SHOW",
    "question_en": "What is the average attendance of shows?",
    "question_th": "ผู้เข้าชมการแสดงโดยเฉลี่ยคือเท่าไร?",
    "context": "CREATE TABLE SHOW (Attendance INTEGER)"
  },
  {
    "answer": "SELECT MAX(SHARE), MIN(SHARE) FROM performance WHERE TYPE <> \"Live final\"",
    "question_en": "What are the maximum and minimum share of performances whose type is not \"Live final\".",
    "question_th": "ส่วนแบ่งสูงสุดและต่ำสุดของการแสดงที่ไม่ใช่ประเภท \"รอบชิงชนะเลิศสด\" คือเท่าใด",
    "context": "CREATE TABLE performance (SHARE INTEGER, TYPE VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT Nationality) FROM conductor",
    "question_en": "How many different nationalities do conductors have?",
    "question_th": "วาทยากรมีกี่สัญชาติ?",
    "context": "CREATE TABLE conductor (Nationality VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM conductor ORDER BY Year_of_Work DESC",
    "question_en": "List names of conductors in descending order of years of work.",
    "question_th": "รายชื่อผู้ควบคุมวงตามลำดับอายุงานจากมากไปหาน้อย",
    "context": "CREATE TABLE conductor (Name VARCHAR, Year_of_Work VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM conductor ORDER BY Year_of_Work DESC LIMIT 1",
    "question_en": "List the name of the conductor with the most years of work.",
    "question_th": "รายชื่อผู้ควบคุมวงที่มีผลงานมากที่สุด",
    "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_en": "Show the names of conductors and the orchestras they have conducted.",
    "question_th": "แสดงชื่อวาทยกรและวงออเคสตราที่พวกเขาแสดง",
    "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_en": "Show the names of conductors that have conducted more than one orchestras.",
    "question_th": "แสดงชื่อวาทยากรที่เคยเล่นออเคสตรามากกว่าหนึ่งวง",
    "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_en": "Show the name of the conductor that has conducted the most number of orchestras.",
    "question_th": "แสดงชื่อวาทยากรที่เล่นออเคสตรามากที่สุด",
    "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_en": "Please show the name of the conductor that has conducted orchestras founded after 2008.",
    "question_th": "กรุณาแสดงชื่อวาทยากรที่เคยเล่นออเคสตราที่ก่อตั้งหลังปี 2551",
    "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_en": "Please show the different record companies and the corresponding number of orchestras.",
    "question_th": "โปรดแสดงบริษัทแผ่นเสียงต่างๆ และจำนวนออร์เคสตราที่เกี่ยวข้อง",
    "context": "CREATE TABLE orchestra (Record_Company VARCHAR)"
  },
  {
    "answer": "SELECT Major_Record_Format FROM orchestra GROUP BY Major_Record_Format ORDER BY COUNT(*)",
    "question_en": "Please show the record formats of orchestras in ascending order of count.",
    "question_th": "กรุณาแสดงรูปแบบการบันทึกของวงออเคสตราโดยเรียงลำดับจากน้อยไปมาก",
    "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_en": "List the record company shared by the most number of orchestras.",
    "question_th": "รายชื่อบริษัทแผ่นเสียงที่มีวงออเคสตราแบ่งปันมากที่สุด",
    "context": "CREATE TABLE orchestra (Record_Company VARCHAR)"
  },
  {
    "answer": "SELECT Orchestra FROM orchestra WHERE NOT Orchestra_ID IN (SELECT Orchestra_ID FROM performance)",
    "question_en": "List the names of orchestras that have no performance.",
    "question_th": "รายชื่อวงออเคสตราที่ไม่มีการแสดง",
    "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_en": "Show the record companies shared by orchestras founded before 2003 and after 2003.",
    "question_th": "แสดงบริษัทแผ่นเสียงที่ใช้ร่วมกันโดยวงออเคสตราที่ก่อตั้งก่อนปี 2003 และหลังปี 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_en": "Find the number of orchestras whose record format is \"CD\" or \"DVD\".",
    "question_th": "ค้นหาจำนวนออเคสตราที่มีรูปแบบบันทึกเป็น \"CD\" หรือ \"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_en": "Show the years in which orchestras that have given more than one performance are founded.",
    "question_th": "แสดงปีที่มีการก่อตั้งวงออร์เคสตราที่มีการแสดงมากกว่าหนึ่งรายการ",
    "context": "CREATE TABLE performance (Orchestra_ID VARCHAR); CREATE TABLE orchestra (Orchestra_ID VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Highschooler",
    "question_en": "How many high schoolers are there?",
    "question_th": "มีนักเรียนมัธยมปลายกี่คน?",
    "context": "CREATE TABLE Highschooler (Id VARCHAR)"
  },
  {
    "answer": "SELECT name, grade FROM Highschooler",
    "question_en": "Show the names and grades of each high schooler.",
    "question_th": "แสดงชื่อและเกรดของนักเรียนมัธยมปลายแต่ละคน",
    "context": "CREATE TABLE Highschooler (name VARCHAR, grade VARCHAR)"
  },
  {
    "answer": "SELECT grade FROM Highschooler",
    "question_en": "Show all the grades of the high schoolers.",
    "question_th": "แสดงคะแนนทั้งหมดของนักเรียนมัธยมปลาย",
    "context": "CREATE TABLE Highschooler (grade VARCHAR)"
  },
  {
    "answer": "SELECT grade FROM Highschooler WHERE name = \"Kyle\"",
    "question_en": "What grade is Kyle in?",
    "question_th": "ไคล์อยู่ชั้นไหน?",
    "context": "CREATE TABLE Highschooler (grade VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM Highschooler WHERE grade = 10",
    "question_en": "Show the names of all high schoolers in grade 10.",
    "question_th": "แสดงชื่อนักเรียนมัธยมปลายทุกคนในชั้นประถมศึกษาปีที่ 10",
    "context": "CREATE TABLE Highschooler (name VARCHAR, grade VARCHAR)"
  },
  {
    "answer": "SELECT ID FROM Highschooler WHERE name = \"Kyle\"",
    "question_en": "Show the ID of the high schooler named Kyle.",
    "question_th": "แสดงบัตรประจำตัวของนักเรียนมัธยมปลายชื่อไคล์",
    "context": "CREATE TABLE Highschooler (ID VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Highschooler WHERE grade = 9 OR grade = 10",
    "question_en": "How many high schoolers are there in grade 9 or 10?",
    "question_th": "มีนักเรียนมัธยมปลายกี่คนในเกรด 9 หรือ 10",
    "context": "CREATE TABLE Highschooler (grade VARCHAR)"
  },
  {
    "answer": "SELECT grade, COUNT(*) FROM Highschooler GROUP BY grade",
    "question_en": "Show the number of high schoolers for each grade.",
    "question_th": "แสดงจำนวนนักเรียนมัธยมปลายในแต่ละชั้น",
    "context": "CREATE TABLE Highschooler (grade VARCHAR)"
  },
  {
    "answer": "SELECT grade FROM Highschooler GROUP BY grade ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "Which grade has the most high schoolers?",
    "question_th": "เกรดไหนมีนักเรียนมัธยมปลายมากที่สุด?",
    "context": "CREATE TABLE Highschooler (grade VARCHAR)"
  },
  {
    "answer": "SELECT grade FROM Highschooler GROUP BY grade HAVING COUNT(*) >= 4",
    "question_en": "Show me all grades that have at least 4 students.",
    "question_th": "แสดงเกรดทั้งหมดที่มีนักเรียนอย่างน้อย 4 คนให้ฉันดู",
    "context": "CREATE TABLE Highschooler (grade VARCHAR)"
  },
  {
    "answer": "SELECT student_id, COUNT(*) FROM Friend GROUP BY student_id",
    "question_en": "Show the student IDs and numbers of friends corresponding to each.",
    "question_th": "แสดงบัตรประจำตัวนักศึกษาและจำนวนเพื่อนที่ตรงกัน",
    "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_en": "Show the names of high school students and their corresponding number of friends.",
    "question_th": "แสดงชื่อนักเรียนมัธยมปลายและจำนวนเพื่อนที่ตรงกัน",
    "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_en": "What is the name of the high schooler who has the greatest number of friends?",
    "question_th": "นักเรียนมัธยมปลายที่มีเพื่อนมากที่สุดชื่ออะไร?",
    "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_en": "Show the names of high schoolers who have at least 3 friends.",
    "question_th": "แสดงรายชื่อนักเรียนมัธยมปลายที่มีเพื่อนอย่างน้อย 3 คน",
    "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_en": "Show the names of all of the high schooler Kyle's friends.",
    "question_th": "แสดงชื่อเพื่อนของ Kyle นักเรียนมัธยมปลายทุกคน",
    "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_en": "How many friends does the high school student Kyle have?",
    "question_th": "ไคล์ นักเรียนมัธยมปลายมีเพื่อนกี่คน?",
    "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_en": "Show ids of all students who do not have any friends.",
    "question_th": "แสดงรหัสนักเรียนทุกคนที่ไม่มีเพื่อน",
    "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_en": "Show names of all high school students who do not have any friends.",
    "question_th": "แสดงรายชื่อนักเรียนมัธยมปลายทุกคนที่ไม่มีเพื่อน",
    "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_en": "Show the ids of high schoolers who have friends and are also liked by someone else.",
    "question_th": "แสดงรหัสของนักเรียนมัธยมปลายที่มีเพื่อนและเป็นที่ชื่นชอบของคนอื่นด้วย",
    "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_en": "Show name of all students who have some friends and also are liked by someone else.",
    "question_th": "แสดงชื่อนักเรียนทุกคนที่มีเพื่อนและมีคนอื่นชื่นชอบด้วย",
    "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_en": "Count the number of likes for each student id.",
    "question_th": "นับจำนวนการถูกใจสำหรับรหัสนักเรียนแต่ละคน",
    "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_en": "Show the names of high schoolers who have likes, and numbers of likes for each.",
    "question_th": "แสดงรายชื่อนักเรียนมัธยมปลายที่มียอดไลค์ และจำนวนไลค์ของแต่ละคน",
    "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_en": "What is the name of the high schooler who has the greatest number of likes?",
    "question_th": "นักเรียนมัธยมปลายที่มียอดไลค์มากที่สุดชื่ออะไร?",
    "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_en": "Show the names of students who have at least 2 likes.",
    "question_th": "แสดงรายชื่อนักเรียนที่มีการถูกใจอย่างน้อย 2 ครั้ง",
    "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_en": "Show the names of students who have a grade higher than 5 and have at least 2 friends.",
    "question_th": "แสดงรายชื่อนักเรียนที่มีเกรดมากกว่า 5 และมีเพื่อนอย่างน้อย 2 คน",
    "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_en": "How many likes does Kyle have?",
    "question_th": "ไคล์มีคนกดไลค์กี่คน?",
    "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_en": "Find the average grade of all students who have some friends.",
    "question_th": "ค้นหาเกรดเฉลี่ยของนักเรียนทุกคนที่มีเพื่อน",
    "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_en": "Find the minimum grade of students who have no friends.",
    "question_th": "ค้นหาเกรดขั้นต่ำของนักเรียนที่ไม่มีเพื่อน",
    "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_en": "Which states have both owners and professionals living there?",
    "question_th": "รัฐใดที่มีทั้งเจ้าของและผู้เชี่ยวชาญอาศัยอยู่ที่นั่น",
    "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_en": "What is the average age of the dogs who have gone through any treatments?",
    "question_th": "อายุเฉลี่ยของสุนัขที่เข้ารับการรักษาคือเท่าไร?",
    "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_en": "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.",
    "question_th": "ผู้เชี่ยวชาญคนไหนที่อาศัยอยู่ในรัฐอินเดียนาหรือเคยทำการรักษามากกว่า 2 ครั้ง? ระบุรหัส นามสกุล และโทรศัพท์มือถือของเขาหรือเธอ",
    "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_en": "Which dogs have not cost their owner more than 1000 for treatment ? List the dog names .",
    "question_th": "สุนัขตัวไหนที่เจ้าของไม่เสียค่ารักษาเกิน 1,000 ? รายชื่อสุนัข.",
    "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_en": "Which first names are used for professionals or owners but are not used as dog names?",
    "question_th": "ชื่อใดที่ใช้สำหรับมืออาชีพหรือเจ้าของ แต่ไม่ได้ใช้เป็นชื่อสุนัข",
    "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_en": "Which professional did not operate any treatment on dogs? List the professional's id, role and email.",
    "question_th": "มืออาชีพคนไหนที่ไม่ได้ทำการรักษาสุนัขเลย? ระบุ ID บทบาท และอีเมลของผู้เชี่ยวชาญ",
    "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_en": "Which owner owns the most dogs? List the owner id, first name and last name.",
    "question_th": "เจ้าของคนไหนเลี้ยงสุนัขมากที่สุด? ระบุรหัสเจ้าของ ชื่อ และนามสกุล",
    "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_en": "Which professionals have done at least two treatments? List the professional's id, role, and first name.",
    "question_th": "ผู้เชี่ยวชาญคนไหนเคยทำการรักษามาแล้วอย่างน้อยสองครั้ง? ระบุรหัส บทบาท และชื่อของผู้เชี่ยวชาญ",
    "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_en": "What is the name of the breed with the most dogs?",
    "question_th": "ชื่อพันธุ์อะไรมีสุนัขมากที่สุด?",
    "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_en": "Which owner has paid for the most treatments on his or her dogs? List the owner id and last name.",
    "question_th": "เจ้าของคนไหนที่จ่ายค่ารักษาสุนัขของตนมากที่สุด? ระบุรหัสเจ้าของและนามสกุล",
    "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_en": "What is the description of the treatment type that costs the least money in total?",
    "question_th": "คำอธิบายประเภทการรักษาที่มีค่าใช้จ่ายรวมน้อยที่สุดคืออะไร?",
    "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_en": "Which owner has paid the largest amount of money in total for their dogs? Show the owner id and zip code.",
    "question_th": "เจ้าของคนไหนที่จ่ายเงินให้กับสุนัขของตนมากที่สุด? แสดงรหัสเจ้าของและรหัสไปรษณีย์",
    "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_en": "Which professionals have done at least two types of treatments? List the professional id and cell phone.",
    "question_th": "ผู้เชี่ยวชาญคนไหนเคยทำการรักษามาแล้วอย่างน้อย 2 ประเภท? ระบุ ID มืออาชีพและโทรศัพท์มือถือ",
    "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_en": "What are the first name and last name of the professionals who have done treatment with cost below average?",
    "question_th": "ชื่อและนามสกุลของผู้เชี่ยวชาญที่ทำการรักษาโดยมีค่าใช้จ่ายต่ำกว่าค่าเฉลี่ยคืออะไร?",
    "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_en": "List the date of each treatment, together with the first name of the professional who operated it.",
    "question_th": "ระบุวันที่ของการรักษาแต่ละครั้ง พร้อมด้วยชื่อของผู้เชี่ยวชาญที่ดำเนินการ",
    "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_en": "List the cost of each treatment and the corresponding treatment type description.",
    "question_th": "ระบุค่าใช้จ่ายของการรักษาแต่ละครั้งและคำอธิบายประเภทการรักษาที่เกี่ยวข้อง",
    "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_en": "List each owner's first name, last name, and the size of his for her dog.",
    "question_th": "ระบุชื่อ นามสกุล และขนาดสุนัขของเจ้าของแต่ละคน",
    "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_en": "List pairs of the owner's first name and the dogs's name.",
    "question_th": "ระบุคู่ชื่อเจ้าของและชื่อสุนัข",
    "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_en": "List the names of the dogs of the rarest breed and the treatment dates of them.",
    "question_th": "ระบุชื่อสุนัขสายพันธุ์ที่หายากที่สุดและวันที่ได้รับการรักษา",
    "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_en": "Which dogs are owned by someone who lives in Virginia? List the owner's first name and the dog's name.",
    "question_th": "สุนัขตัวไหนเป็นของคนที่อาศัยอยู่ในเวอร์จิเนีย? ระบุชื่อเจ้าของและชื่อสุนัข",
    "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_en": "What are the arriving date and the departing date of the dogs who have gone through a treatment?",
    "question_th": "วันที่มาถึงและวันที่ออกจากสุนัขที่เข้ารับการรักษาคือเมื่อใด",
    "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_en": "List the last name of the owner owning the youngest dog.",
    "question_th": "ระบุนามสกุลของเจ้าของสุนัขที่อายุน้อยที่สุด",
    "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_en": "List the emails of the professionals who live in the state of Hawaii or the state of Wisconsin.",
    "question_th": "ระบุอีเมลของผู้เชี่ยวชาญที่อาศัยอยู่ในรัฐฮาวายหรือรัฐวิสคอนซิน",
    "context": "CREATE TABLE Professionals (email_address VARCHAR, state VARCHAR)"
  },
  {
    "answer": "SELECT date_arrived, date_departed FROM Dogs",
    "question_en": "What are the arriving date and the departing date of all the dogs?",
    "question_th": "วันที่มาถึงและวันที่จากไปของสุนัขทุกตัวคือเมื่อใด?",
    "context": "CREATE TABLE Dogs (date_arrived VARCHAR, date_departed VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT dog_id) FROM Treatments",
    "question_en": "How many dogs went through any treatments?",
    "question_th": "มีสุนัขกี่ตัวที่เข้ารับการรักษา?",
    "context": "CREATE TABLE Treatments (dog_id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(DISTINCT professional_id) FROM Treatments",
    "question_en": "How many professionals have performed any treatment to dogs?",
    "question_th": "มีผู้เชี่ยวชาญกี่คนที่ทำการรักษาสุนัข?",
    "context": "CREATE TABLE Treatments (professional_id VARCHAR)"
  },
  {
    "answer": "SELECT role_code, street, city, state FROM professionals WHERE city LIKE '%West%'",
    "question_en": "Which professionals live in a city containing the substring 'West'? List his or her role, street, city and state.",
    "question_th": "มืออาชีพคนไหนที่อาศัยอยู่ในเมืองที่มีอักษรย่อย 'ตะวันตก' ระบุบทบาท ถนน เมือง และรัฐของเขาหรือเธอ",
    "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_en": "Which owners live in the state whose name contains the substring 'North'? List his first name, last name and email.",
    "question_th": "เจ้าของรายใดอาศัยอยู่ในรัฐที่ชื่อมีสตริงย่อย 'ภาคเหนือ'? ระบุชื่อ นามสกุล และอีเมลของเขา",
    "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_en": "How many dogs have an age below the average?",
    "question_th": "มีสุนัขกี่ตัวที่มีอายุต่ำกว่าค่าเฉลี่ย?",
    "context": "CREATE TABLE Dogs (age INTEGER)"
  },
  {
    "answer": "SELECT cost_of_treatment FROM Treatments ORDER BY date_of_treatment DESC LIMIT 1",
    "question_en": "How much does the most recent treatment cost?",
    "question_th": "ค่ารักษาล่าสุดเท่าไหร่?",
    "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_en": "How many dogs have not gone through any treatment?",
    "question_th": "มีสุนัขกี่ตัวที่ไม่ได้รับการรักษาเลย?",
    "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_en": "Tell me the number of dogs that have not received any treatment .",
    "question_th": "แจ้งจำนวนสุนัขที่ไม่ได้รับการรักษาใดๆ",
    "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_en": "How many owners temporarily do not have any dogs?",
    "question_th": "มีเจ้าของกี่คนที่ไม่มีสุนัขชั่วคราว?",
    "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_en": "How many professionals did not operate any treatment on dogs?",
    "question_th": "มีผู้เชี่ยวชาญกี่คนที่ไม่ได้ทำการรักษาสุนัขเลย?",
    "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_en": "List the dog name, age and weight of the dogs who have been abandoned? 1 stands for yes, and 0 stands for no.",
    "question_th": "ระบุชื่อสุนัข อายุ และน้ำหนักของสุนัขที่ถูกทิ้ง? 1 ย่อมาจากใช่ และ 0 ย่อมาจากไม่ใช่",
    "context": "CREATE TABLE Dogs (name VARCHAR, age VARCHAR, weight VARCHAR, abandoned_yn VARCHAR)"
  },
  {
    "answer": "SELECT AVG(age) FROM Dogs",
    "question_en": "What is the average age of all the dogs?",
    "question_th": "อายุเฉลี่ยของสุนัขทุกตัวคือเท่าไร?",
    "context": "CREATE TABLE Dogs (age INTEGER)"
  },
  {
    "answer": "SELECT MAX(age) FROM Dogs",
    "question_en": "What is the age of the oldest dog?",
    "question_th": "สุนัขที่เก่าแก่ที่สุดอายุเท่าไหร่?",
    "context": "CREATE TABLE Dogs (age INTEGER)"
  },
  {
    "answer": "SELECT charge_type, charge_amount FROM Charges",
    "question_en": "How much does each charge type costs? List both charge type and amount.",
    "question_th": "ค่าบริการแต่ละประเภทมีค่าใช้จ่ายเท่าไร? ระบุทั้งประเภทการเรียกเก็บเงินและจำนวนเงิน",
    "context": "CREATE TABLE Charges (charge_type VARCHAR, charge_amount VARCHAR)"
  },
  {
    "answer": "SELECT MAX(charge_amount) FROM Charges",
    "question_en": "How much does the most expensive charge type costs?",
    "question_th": "ประเภทการเรียกเก็บเงินที่แพงที่สุดมีค่าใช้จ่ายเท่าไร?",
    "context": "CREATE TABLE Charges (charge_amount INTEGER)"
  },
  {
    "answer": "SELECT email_address, cell_number, home_phone FROM professionals",
    "question_en": "List the email, cell phone and home phone of all the professionals.",
    "question_th": "ระบุอีเมล โทรศัพท์มือถือ และโทรศัพท์บ้านของมืออาชีพทั้งหมด",
    "context": "CREATE TABLE professionals (email_address VARCHAR, cell_number VARCHAR, home_phone VARCHAR)"
  },
  {
    "answer": "SELECT DISTINCT breed_code, size_code FROM dogs",
    "question_en": "What are all the possible breed type and size type combinations?",
    "question_th": "การผสมพันธุ์ประเภทและขนาดที่เป็นไปได้ทั้งหมดคืออะไร?",
    "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_en": "List the first name of all the professionals along with the description of the treatment they have done.",
    "question_th": "ระบุชื่อของผู้เชี่ยวชาญทั้งหมดพร้อมกับคำอธิบายการรักษาที่พวกเขาได้ทำ",
    "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_en": "List the name of singers in ascending order of net worth.",
    "question_th": "รายชื่อนักร้องเรียงตามมูลค่าสุทธิจากน้อยไปมาก",
    "context": "CREATE TABLE singer (Name VARCHAR, Net_Worth_Millions VARCHAR)"
  },
  {
    "answer": "SELECT Birth_Year, Citizenship FROM singer",
    "question_en": "What are the birth year and citizenship of singers?",
    "question_th": "นักร้องเกิดปีอะไรและสัญชาติอะไร",
    "context": "CREATE TABLE singer (Birth_Year VARCHAR, Citizenship VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM singer WHERE Citizenship <> \"France\"",
    "question_en": "List the name of singers whose citizenship is not \"France\".",
    "question_th": "รายชื่อนักร้องที่ไม่มีสัญชาติ \"ฝรั่งเศส\"",
    "context": "CREATE TABLE singer (Name VARCHAR, Citizenship VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM singer WHERE Birth_Year = 1948 OR Birth_Year = 1949",
    "question_en": "Show the name of singers whose birth year is either 1948 or 1949?",
    "question_th": "แสดงชื่อนักร้องที่มีปีเกิดเป็น พ.ศ. 2491 หรือ พ.ศ. 2492?",
    "context": "CREATE TABLE singer (Name VARCHAR, Birth_Year VARCHAR)"
  },
  {
    "answer": "SELECT Name FROM singer ORDER BY Net_Worth_Millions DESC LIMIT 1",
    "question_en": "What is the name of the singer with the largest net worth?",
    "question_th": "นักร้องที่มีมูลค่าสุทธิมากที่สุดชื่ออะไร?",
    "context": "CREATE TABLE singer (Name VARCHAR, Net_Worth_Millions VARCHAR)"
  },
  {
    "answer": "SELECT Citizenship, COUNT(*) FROM singer GROUP BY Citizenship",
    "question_en": "Show different citizenship of singers and the number of singers of each citizenship.",
    "question_th": "แสดงสัญชาติของนักร้องที่แตกต่างกันและจำนวนนักร้องของแต่ละสัญชาติ",
    "context": "CREATE TABLE singer (Citizenship VARCHAR)"
  },
  {
    "answer": "SELECT Citizenship FROM singer GROUP BY Citizenship ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "Please show the most common citizenship of singers.",
    "question_th": "กรุณาแสดงสัญชาติของนักร้องที่พบบ่อยที่สุด",
    "context": "CREATE TABLE singer (Citizenship VARCHAR)"
  },
  {
    "answer": "SELECT citizenship FROM singer GROUP BY citizenship ORDER BY COUNT(*) DESC LIMIT 1",
    "question_en": "What is the most common singer citizenship ?",
    "question_th": "สัญชาตินักร้องที่พบบ่อยที่สุดคืออะไร?",
    "context": "CREATE TABLE singer (citizenship VARCHAR)"
  },
  {
    "answer": "SELECT Citizenship, MAX(Net_Worth_Millions) FROM singer GROUP BY Citizenship",
    "question_en": "Show different citizenships and the maximum net worth of singers of each citizenship.",
    "question_th": "แสดงสัญชาติที่แตกต่างกันและมูลค่าสุทธิสูงสุดของนักร้องในแต่ละสัญชาติ",
    "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_en": "Show titles of songs and names of singers.",
    "question_th": "แสดงชื่อเพลงและชื่อนักร้อง",
    "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_en": "Show distinct names of singers that have songs with sales more than 300000.",
    "question_th": "แสดงรายชื่อนักร้องที่มีเพลงที่มียอดขายมากกว่า 300,000 เพลง",
    "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_en": "Show the names of singers that have more than one song.",
    "question_th": "แสดงชื่อนักร้องที่มีมากกว่าหนึ่งเพลง",
    "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_en": "Show the names of singers and the total sales of their songs.",
    "question_th": "แสดงชื่อนักร้องและยอดขายรวมของเพลง",
    "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_en": "List the name of singers that do not have any song.",
    "question_th": "รายชื่อนักร้องที่ไม่มีเพลงใดๆ",
    "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_en": "Show the citizenship shared by singers with birth year before 1945 and after 1955.",
    "question_th": "แสดงสัญชาติของนักร้องที่เกิดก่อนปี พ.ศ. 2488 และหลังปี พ.ศ. 2498",
    "context": "CREATE TABLE singer (Citizenship VARCHAR, Birth_Year INTEGER)"
  },
  {
    "answer": "SELECT COUNT(*) FROM Other_Available_Features",
    "question_en": "How many available features are there in total?",
    "question_th": "มีทั้งหมดกี่คุณสมบัติที่มีอยู่?",
    "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_en": "What is the feature type name of feature AirCon?",
    "question_th": "ชื่อฟีเจอร์ของฟีเจอร์ 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_en": "Show the property type descriptions of properties belonging to that code.",
    "question_th": "แสดงคำอธิบายประเภทคุณสมบัติของคุณสมบัติที่เป็นของรหัสนั้น",
    "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_en": "What are the names of properties that are either houses or apartments with more than 1 room?",
    "question_th": "คุณสมบัติที่เป็นบ้านหรืออพาร์ตเมนต์ที่มีมากกว่า 1 ห้องชื่ออะไร",
    "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_en": "What is terrence ross' nationality",
    "question_th": "สัญชาติของเทอร์เรนซ์ รอสส์คืออะไร",
    "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_en": "What clu was in toronto 1995-96",
    "question_th": "สโมสรใดอยู่ในโตรอนโต 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_en": "which club was in toronto 2003-06",
    "question_th": "สโมสรใดอยู่ในโตรอนโต 2546-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_en": "how many schools or teams had jalen rose",
    "question_th": "มีโรงเรียนหรือทีมกี่แห่งที่มีจาเลนลุกขึ้น",
    "context": "CREATE TABLE table_10015132_16 (school_club_team VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_10083598_1 WHERE circuit = \"Assen\"",
    "question_en": "Where was Assen held?",
    "question_th": "Assen จัดขึ้นที่ไหน?",
    "context": "CREATE TABLE table_10083598_1 (round VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(no) FROM table_10083598_1 WHERE pole_position = \"Kevin Curtain\"",
    "question_en": "What was the number of race that Kevin Curtain won?",
    "question_th": "Kevin Curtain ชนะการแข่งขันหมายเลขเท่าไร?",
    "context": "CREATE TABLE table_10083598_1 (no VARCHAR, pole_position VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_10083598_1 WHERE circuit = \"Misano\"",
    "question_en": "What was the date of the race in Misano?",
    "question_th": "การแข่งขันที่มิซาโนะวันที่เท่าไหร่?",
    "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_en": "How many different positions did Sherbrooke Faucons (qmjhl) provide in the draft?",
    "question_th": "Sherbrooke Faucons (qmjhl) ระบุตำแหน่งที่แตกต่างกันกี่ตำแหน่งในร่าง?",
    "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_en": "What are the nationalities of the player picked from Thunder Bay Flyers (ushl)",
    "question_th": "ผู้เล่นที่เลือกจาก 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_en": "How many different college/junior/club teams provided a player to the Washington Capitals NHL Team?",
    "question_th": "มีทีมวิทยาลัย/จูเนียร์/สโมสรที่แตกต่างกันกี่ทีมที่จัดหาผู้เล่นให้กับทีม Washington Capitals NHL",
    "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_en": "How many different nationalities do the players of New Jersey Devils come from?",
    "question_th": "ผู้เล่นของนิวเจอร์ซีย์เดวิลส์มาจากกี่เชื้อชาติ?",
    "context": "CREATE TABLE table_1013129_3 (nationality VARCHAR, nhl_team VARCHAR)"
  },
  {
    "answer": "SELECT pick FROM table_1013129_3 WHERE player = \"Dorain Anneck\"",
    "question_en": "What's Dorain Anneck's pick number?",
    "question_th": "หมายเลขเลือกของ Dorain Anneneck คืออะไร?",
    "context": "CREATE TABLE table_1013129_3 (pick VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_1013129_3 WHERE nhl_team = \"Vancouver Canucks\"",
    "question_en": "What is the nationality of the player from Vancouver Canucks?",
    "question_th": "นักเตะแวนคูเวอร์ คานัคส์ มีสัญชาติอะไร?",
    "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_en": "What's the pick number of the player from Springfield Olympics (Nejhl)?",
    "question_th": "ผู้เล่นจาก 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_en": "When were the ships launched that were laid down on september 1, 1964?",
    "question_th": "เรือที่ปล่อยเมื่อวันที่ 1 กันยายน พ.ศ. 2507 เปิดตัวเมื่อใด",
    "context": "CREATE TABLE table_1014206_2 (launched VARCHAR, laid_down VARCHAR)"
  },
  {
    "answer": "SELECT _number FROM table_1014206_2 WHERE commissioned = \"December 18, 1965\"",
    "question_en": "List the # for ships commissioned on december 18, 1965.",
    "question_th": "ระบุ # สำหรับเรือที่เข้าประจำการเมื่อวันที่ 18 ธันวาคม พ.ศ. 2508",
    "context": "CREATE TABLE table_1014206_2 (_number VARCHAR, commissioned VARCHAR)"
  },
  {
    "answer": "SELECT _number FROM table_1014206_2 WHERE commissioned = \"September 30, 1967\"",
    "question_en": "List the # for ships commissioned on september 30, 1967.",
    "question_th": "ระบุ # สำหรับเรือที่เข้าประจำการเมื่อวันที่ 30 กันยายน พ.ศ. 2510",
    "context": "CREATE TABLE table_1014206_2 (_number VARCHAR, commissioned VARCHAR)"
  },
  {
    "answer": "SELECT laid_down FROM table_1014206_2 WHERE commissioned = \"October 29, 1965\"",
    "question_en": "When were ships laid down that were commissioned on october 29, 1965?",
    "question_th": "เรือถูกวางลงซึ่งเข้าประจำการในวันที่ 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_en": " What could a spanish coronel be addressed as in the commonwealth military?",
    "question_th": " เจ้าหน้าที่ชันสูตรศพชาวสเปนสามารถพูดถึงอะไรได้บ้างในกองทัพเครือจักรภพ?",
    "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_en": "Give me a list of all spanish officer titles that could receive recognition as group captain in english",
    "question_th": "ขอรายชื่อตำแหน่งเจ้าหน้าที่สเปนทั้งหมดที่สามารถได้รับการยอมรับในฐานะกัปตันกลุ่มเป็นภาษาอังกฤษ",
    "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_en": "If you are a pilot officer in the commonwealth then what will you called as in the US air force?",
    "question_th": "หากคุณเป็นนักบินในเครือจักรภพ คุณจะเรียกว่าอะไรในกองทัพอากาศสหรัฐฯ",
    "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_en": "If you're a major general in the US air force then what ranking will you receive in the commonwealth's air force?",
    "question_th": "หากคุณเป็นนายพลตรีในกองทัพอากาศสหรัฐฯ คุณจะได้รับยศอะไรในกองทัพอากาศของเครือจักรภพ?",
    "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_en": "If you get a ranking as major in the  english military then what would the spanish military address you as? ",
    "question_th": " หากคุณได้รับการจัดอันดับเป็นเอกในกองทัพอังกฤษ แล้วกองทัพสเปนจะเรียกคุณว่าอะไร?",
    "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_en": "Which province is grey and bell electorate in",
    "question_th": "จังหวัดไหนเป็นสีเทาและเขตเลือกตั้งระฆังอยู่",
    "context": "CREATE TABLE table_1024710_2 (province VARCHAR, electorate VARCHAR)"
  },
  {
    "answer": "SELECT province FROM table_1024710_2 WHERE electorate = \"Bay of Islands\"",
    "question_en": "Which province is bay of islands in",
    "question_th": "จังหวัดใดเป็นอ่าวหมู่เกาะ",
    "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–11\"",
    "question_en": "what is the total number of total w–l where doubles w–l is 11–11",
    "question_th": "คือจำนวนรวมของ w-l ทั้งหมด โดยที่ w-l สองเท่าคือ 11–11",
    "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–14\"",
    "question_en": "what is the total number of singles w–l where doubles w–l is 11–14",
    "question_th": "จำนวนคนโสดทั้งหมด w–l คือเท่าใด โดยที่คนโสด w–l คือ 11–14",
    "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ć Category:Articles with hCards\"",
    "question_en": " what's the total w–l where player is boro jovanović category:articles with hcards",
    "question_th": " ค่า w–l ทั้งหมดคือเท่าใด โดยที่ผู้เล่นคือ boro jovanović หมวดหมู่:บทความที่มี 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_en": "what is the maximum ties played where player is josip palada category:articles with hcards",
    "question_th": "ความสัมพันธ์สูงสุดที่เล่นโดยที่ผู้เล่นคือหมวดหมู่ josip palada:บทความที่มี 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–24\"",
    "question_en": "what is the total number of ties played where total w–l is 38–24",
    "question_th": "จำนวนเสมอทั้งหมดที่เล่นโดยที่ผลรวม w–l คือ 38–24",
    "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_en": "What is the Frequency at the Market/Rank of Burlington - Plattsburgh , Vermont - New York /143?",
    "question_th": "ความถี่ที่ตลาด/อันดับของ 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_en": "What is the Branding for Group Owner Qantam of Cape Cod, LLC?",
    "question_th": "การสร้างแบรนด์สำหรับเจ้าของกลุ่ม 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_en": "What Branding does WRKO calls use?",
    "question_th": "WRKO call ใช้การสร้างแบรนด์แบบใด",
    "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_en": "What is the Format for Branding of 1290 wkbk w281au 104.1?",
    "question_th": "รูปแบบการสร้างแบรนด์ของ 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_en": "Which Market/Rank is associated with WCRN calls?",
    "question_th": "ตลาด/อันดับใดที่เกี่ยวข้องกับการโทร WCRN",
    "context": "CREATE TABLE table_10333757_1 (market_rank VARCHAR, calls VARCHAR)"
  },
  {
    "answer": "SELECT frequency FROM table_10333757_1 WHERE calls = \"WEGP\"",
    "question_en": "Which Frequency is used for WEGP calls?",
    "question_th": "ความถี่ใดที่ใช้สำหรับการโทร WEGP",
    "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_en": "What is the regulated retail price for the tariff code ff0 prs?",
    "question_th": "ราคาขายปลีกที่ได้รับการควบคุมสำหรับรหัสภาษี 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_en": "What is the premium associated with tariff code g9?",
    "question_th": "เบี้ยประกันภัยที่เกี่ยวข้องกับรหัสภาษี 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_en": "How many tariff codes have a bts retail price of 2p/min or inclusive?",
    "question_th": "มีรหัสภาษีกี่รหัสที่มีราคาขายปลีก bts 2 p/min หรือรวมอยู่ด้วย",
    "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_en": "How many tariff codes have a bts retail price of 2.553p/min?",
    "question_th": "มีรหัสภาษีกี่รหัสที่มีราคาขายปลีก bts 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_en": "What prefixes are priced at pence per minute, fixed at all times with a premium of 3p/min?",
    "question_th": "คำนำหน้าใดมีราคาเป็นเพนนีต่อนาที แก้ไขตลอดเวลาด้วยพรีเมี่ยม 3p/นาที",
    "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_en": "What is the bts retail price (regulated) for tariff code g10?",
    "question_th": "ราคาขายปลีก bts (ควบคุม) สำหรับรหัสภาษี 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_en": "What is the smallest possible radius?",
    "question_th": "รัศมีที่เล็กที่สุดที่เป็นไปได้คืออะไร?",
    "context": "CREATE TABLE table_10432351_1 (radius__r___ INTEGER)"
  },
  {
    "answer": "SELECT spectral_type FROM table_10432351_1 WHERE star__pismis24__number_ = \"1SW\"",
    "question_en": "What are all the spectral types for star mismis24-# is 1sw?",
    "question_th": "สเปกตรัมของดาว mismis24-# คือ 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_en": "If a radius is 10, what  is the lowest possible mass?",
    "question_th": "หากรัศมีคือ 10 มวลต่ำสุดที่เป็นไปได้คือเท่าใด",
    "context": "CREATE TABLE table_10432351_1 (mass__m___ INTEGER, radius__r___ VARCHAR)"
  },
  {
    "answer": "SELECT seat_factor FROM table_105344_2 WHERE year = 2006",
    "question_en": "What percentage of seats were filled in 2006?",
    "question_th": "มีที่นั่งเต็มกี่เปอร์เซ็นต์ในปี 2549",
    "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_en": "How many hours were flown in each of the years where more than 64379058.0 kilometers were flown?",
    "question_th": "ในแต่ละปีที่บินมากกว่า 64379058.0 กิโลเมตร มีกี่ชั่วโมง?",
    "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_en": "Of the years that had exactly 17096 departures, what is the greatest number of aircraft kilometers flown?",
    "question_th": "จากปีที่มีเที่ยวบินออก 1,7096 ลำพอดี เครื่องบินบินได้มากที่สุดกี่กิโลเมตร?",
    "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_en": "Which winning team beat the New York Yankees?",
    "question_th": "ทีมใดชนะนิวยอร์กแยงกี้?",
    "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_en": "What was the final score for the game that was contested on February 1, 2009?",
    "question_th": "คะแนนสุดท้ายของเกมที่แข่งขันเมื่อวันที่ 1 กุมภาพันธ์ พ.ศ. 2552 เป็นเท่าใด",
    "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_en": "What sport had a final score of 3-2?",
    "question_th": "กีฬาใดมีสกอร์สุดท้าย 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_en": "Who was the winning team of the game that was contested on February 1, 2009?",
    "question_th": "ทีมใดเป็นผู้ชนะในเกมที่แข่งขันเมื่อวันที่ 1 กุมภาพันธ์ พ.ศ. 2552",
    "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_en": "Who was the losing team of the game that was contested on February 1, 2004?",
    "question_th": "ทีมที่แพ้ในเกมที่แข่งขันเมื่อวันที่ 1 กุมภาพันธ์ พ.ศ. 2547 คือใคร?",
    "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_en": "what's the minimum total with crop (kilotonnes) being s lupin",
    "question_th": "ยอดรวมขั้นต่ำคือเท่าใดเมื่อพืชผล (กิโลตัน) เป็นลูปิน",
    "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_en": "what's the new south wales with crop (kilotonnes) being canola",
    "question_th": "นิวเซาท์เวลส์ที่มีพืชผล (กิโลตัน) เป็นคาโนลาคืออะไร",
    "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_en": "what's the total number of south australia with victoria value of 2173",
    "question_th": "ออสเตรเลียใต้ซึ่งมีมูลค่าวิกตอเรียอยู่ที่ 2173 ทั้งหมดคือเท่าไร",
    "context": "CREATE TABLE table_1057262_2 (south_australia VARCHAR, victoria VARCHAR)"
  },
  {
    "answer": "SELECT MIN(tasmania) FROM table_1057262_2",
    "question_en": "what's the minimum tasmania value",
    "question_th": "ค่าแทสเมเนียขั้นต่ำคือเท่าไร",
    "context": "CREATE TABLE table_1057262_2 (tasmania INTEGER)"
  },
  {
    "answer": "SELECT COUNT(tasmania) FROM table_1057262_2 WHERE new_south_wales = 190",
    "question_en": "what's the total number of tasmania with new south wales crop of 190 kilotonnes",
    "question_th": "แทสเมเนียที่มีผลผลิตนิวเซาท์เวลส์ทั้งหมดเป็นจำนวน 190 กิโลตัน",
    "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_en": "How many significant relationships list Will as a virtue?",
    "question_th": "รายการความสัมพันธ์ที่สำคัญจะมีคุณธรรมกี่รายการ?",
    "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_en": "Which examples ask the existential question \"Can I Love?\"",
    "question_th": "ตัวอย่างใดที่ถามคำถามอัตถิภาวนิยม \"ฉันสามารถรักได้หรือไม่\"",
    "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_en": "How many countries got 796.7 points?",
    "question_th": "มีกี่ประเทศที่ได้ 796.7 คะแนน",
    "context": "CREATE TABLE table_1059743_2 (rank VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(group_stage) FROM table_1059743_2 WHERE points = \"177.2\"",
    "question_en": "In what group stage were 177.2 points awarded?",
    "question_th": "ในรอบแบ่งกลุ่มใดที่ได้ 177.2 คะแนน?",
    "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_en": "What is the lowest group to earn 886.6 points?",
    "question_th": "กลุ่มไหนได้ต่ำสุดที่ได้ 886.6 คะแนน?",
    "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_en": "How many countries earned 177.2 points?",
    "question_th": "มีกี่ประเทศที่ได้รับ 177.2 คะแนน",
    "context": "CREATE TABLE table_1059743_2 (member_association VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT county FROM table_10586064_2 WHERE total = \"18,900 (R)\"",
    "question_en": "What country had the total 18,900 (r)?",
    "question_th": "ประเทศใดมีทั้งหมด 18,900 (r)?",
    "context": "CREATE TABLE table_10586064_2 (county VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT county FROM table_10586064_2 WHERE precincts = 515",
    "question_en": "What is the county of precints 515?",
    "question_th": "เขต 515 คืออะไร?",
    "context": "CREATE TABLE table_10586064_2 (county VARCHAR, precincts VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_10601843_2 WHERE capacity = 41903",
    "question_en": "Which city has a capacity of 41903?",
    "question_th": "เมืองใดมีความจุ 41903?",
    "context": "CREATE TABLE table_10601843_2 (city VARCHAR, capacity VARCHAR)"
  },
  {
    "answer": "SELECT MAX(capacity) FROM table_10601843_2 WHERE stadium = \"Otkrytie Arena\"",
    "question_en": "What is the maximum capacity of the Otkrytie Arena stadium?",
    "question_th": "ความจุสูงสุดของสนามกีฬา Otkrytie Arena คือเท่าใด?",
    "context": "CREATE TABLE table_10601843_2 (capacity INTEGER, stadium VARCHAR)"
  },
  {
    "answer": "SELECT MIN(opening) FROM table_10601843_2 WHERE tenant = \"Bursaspor\"",
    "question_en": "When did the stadium where Bursaspor is the tenant open?",
    "question_th": "สนามกีฬาที่บูร์ซาสปอร์เป็นผู้เช่าเปิดเมื่อใด?",
    "context": "CREATE TABLE table_10601843_2 (opening INTEGER, tenant VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(tenant) FROM table_10601843_2 WHERE city = \"Samsun\"",
    "question_en": "How many tenants are there in the city of Samsun?",
    "question_th": "ในเมืองซัมซันมีผู้เช่ากี่คน?",
    "context": "CREATE TABLE table_10601843_2 (tenant VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT shivalik_zone FROM table_10638523_1 WHERE mid_hill_zone = \"10%\"",
    "question_en": "What is the percentage of the Shivalik Zone where the percentage of the Mid-Hill Zone is 10%?",
    "question_th": "เปอร์เซ็นต์ของโซนศิวลิกโดยที่เปอร์เซ็นต์ของโซน Mid-Hill คือ 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_en": "For mid-hill zone  what is the altitude?",
    "question_th": "สำหรับโซนกลางเขาสูงเท่าไร?",
    "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_en": "What are the climatic conditions for the trance- n himalaya zone?",
    "question_th": "สภาพภูมิอากาศของเขตภวังค์หิมาลัยมีอะไรบ้าง?",
    "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_en": "What is the percentage of the  trance- n himalaya zone that corresponds with the high hill zone is 25%?",
    "question_th": "ร้อยละของโซนมึนงงหิมาลัยที่สอดคล้องกับโซนเนินสูงคือ 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_en": "What is the state of Ted Stevens?",
    "question_th": "สถานะของ 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_en": "What's the standard of the country who won its first title in 1992?",
    "question_th": "มาตรฐานของประเทศที่คว้าแชมป์ครั้งแรกในปี 1992 คืออะไร?",
    "context": "CREATE TABLE table_10682862_68 (standard INTEGER, first_title VARCHAR)"
  },
  {
    "answer": "SELECT MIN(players) FROM table_10682862_68",
    "question_en": "What's the smallest number of players?",
    "question_th": "จำนวนผู้เล่นน้อยที่สุดคือเท่าไร?",
    "context": "CREATE TABLE table_10682862_68 (players INTEGER)"
  },
  {
    "answer": "SELECT MAX(last_title) FROM table_10682862_68",
    "question_en": "In what year was the last last title received, by any of the countries?",
    "question_th": "ประเทศใดได้รับตำแหน่งสุดท้ายครั้งสุดท้ายในปีใด",
    "context": "CREATE TABLE table_10682862_68 (last_title INTEGER)"
  },
  {
    "answer": "SELECT religious_group FROM table_10710364_1 WHERE population__percentage_2001 = \"0.72%\"",
    "question_en": "What religious groups made up 0.72% of the Indian population in 2001?",
    "question_th": "กลุ่มศาสนาใดคิดเป็น 0.72% ของประชากรอินเดียในปี 2544",
    "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_en": "What is the original air date for episode 15 of season 6?",
    "question_th": "ตอนที่ 15 ของซีซั่น 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_en": "Which podiums did the Williams team have with a margin of defeat of 2?",
    "question_th": "ทีมวิลเลียมส์ขึ้นโพเดี้ยมใดโดยมีความพ่ายแพ้ 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_en": "How many drivers on the williams team had a margin of defeat of 2?",
    "question_th": "มีนักแข่งกี่คนในทีมวิลเลียมส์ที่แพ้ 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_en": "How many seasons was clay regazzoni the driver?",
    "question_th": "ดินเหนียว regazzoni ขับมากี่ฤดูกาล?",
    "context": "CREATE TABLE table_10753917_1 (season VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT margin_of_defeat FROM table_10753917_1 WHERE points = \"30\"",
    "question_en": "Which margin of defeats had points of 30?",
    "question_th": "ความพ่ายแพ้ใดมีคะแนน 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_en": "Which podiums did the alfa romeo team have?",
    "question_th": "ทีมอัลฟ่าโรมิโอมีโพเดียมใด",
    "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_en": "What was the percent of slovenes 1951 for bach?",
    "question_th": "เปอร์เซ็นต์ของสโลวีเนียปี 1951 สำหรับบัคคือเท่าใด",
    "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_en": "What college's team is the Saskatchewan Roughriders?",
    "question_th": "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_en": "What position did Calvin Mccarty play?",
    "question_th": "Calvin McCarty เล่นตำแหน่งอะไร?",
    "context": "CREATE TABLE table_10812403_4 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(position) FROM table_10812403_4 WHERE pick__number = 30",
    "question_en": "How many people were pick #30?",
    "question_th": "มีคนถูกเลือก #30 กี่คน?",
    "context": "CREATE TABLE table_10812403_4 (position VARCHAR, pick__number VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_10812403_4 WHERE player = \"Calvin McCarty\"",
    "question_en": "What college did Calvin McCarty play at?",
    "question_th": "Calvin McCarty เล่นที่วิทยาลัยใด",
    "context": "CREATE TABLE table_10812403_4 (college VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_10812403_4 WHERE position = \"LB\"",
    "question_en": "What college had a LB in the draft?",
    "question_th": "วิทยาลัยใดมี LB อยู่ในแบบร่าง",
    "context": "CREATE TABLE table_10812403_4 (college VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_10812293_6 WHERE date = \"February 9\"",
    "question_en": "Who got high assists for the game played on February 9?",
    "question_th": "ใครทำแอสซิสต์ได้สูงในเกมที่เล่นเมื่อวันที่ 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_en": "Which lava domes erupted or had a growth episode during the Holocene period?",
    "question_th": "โดมลาวาใดที่ปะทุหรือมีการเติบโตในช่วงยุคโฮโลซีน?",
    "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_en": "What is the composition at Valles lava dome?",
    "question_th": "โดมลาวา Valles มีส่วนผสมอะไรบ้าง?",
    "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_en": "How many countries are the Tata Sabaya Lava domes located in?",
    "question_th": "โดมลาวาทาทาซาบายาตั้งอยู่ในกี่ประเทศ",
    "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_en": "What countries have had eruptions of growth episodes in 1986?",
    "question_th": "ประเทศใดบ้างที่มีการปะทุของช่วงการเติบโตในปี 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_en": "Who is the lyricist for the song with a length of 3:05?",
    "question_th": "ใครเป็นคนแต่งเนื้อร้องเพลงความยาว 3:05?",
    "context": "CREATE TABLE table_10848177_1 (lyricist VARCHAR, length VARCHAR)"
  },
  {
    "answer": "SELECT song FROM table_10848177_1 WHERE length = \"3:05\"",
    "question_en": "What song has a length of 3:05?",
    "question_th": "เพลงอะไรมีความยาว 3:05 ครับ?",
    "context": "CREATE TABLE table_10848177_1 (song VARCHAR, length VARCHAR)"
  },
  {
    "answer": "SELECT lyricist FROM table_10848177_1 WHERE length = \"6:14\"",
    "question_en": "Which lyricist has a song with a length of 6:14?",
    "question_th": "ผู้แต่งเพลงคนไหนมีเพลงความยาว 6:14?",
    "context": "CREATE TABLE table_10848177_1 (lyricist VARCHAR, length VARCHAR)"
  },
  {
    "answer": "SELECT MAX(track__number) FROM table_10848177_1",
    "question_en": "What is the highest track number?",
    "question_th": "หมายเลขเพลงสูงสุดคืออะไร?",
    "context": "CREATE TABLE table_10848177_1 (track__number INTEGER)"
  },
  {
    "answer": "SELECT song FROM table_10848177_1 WHERE picturization = \"Vijay\"",
    "question_en": "Which song has picturization by only vijay?",
    "question_th": "เพลงไหนมีภาพเฉพาะวีเจย์คะ?",
    "context": "CREATE TABLE table_10848177_1 (song VARCHAR, picturization VARCHAR)"
  },
  {
    "answer": "SELECT singers FROM table_10848177_1 WHERE lyricist = \"Alangudi Somu\"",
    "question_en": "For which singers was Alangudi Somu the lyricist?",
    "question_th": "Alangudi Somu เป็นผู้แต่งบทเพลงสำหรับนักร้องคนไหน?",
    "context": "CREATE TABLE table_10848177_1 (singers VARCHAR, lyricist VARCHAR)"
  },
  {
    "answer": "SELECT publisher FROM table_10875694_11 WHERE product_no = \"SCUS-97265\"",
    "question_en": "What publishers were involved with product number SCUS-97265?",
    "question_th": "ผู้จัดพิมพ์รายใดที่เกี่ยวข้องกับหมายเลขผลิตภัณฑ์ 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_en": "What is the total number of James Bond 007: Everything or Nothing for each system?",
    "question_th": "จำนวนรวมของ James Bond 007: Everything or Nothing สำหรับแต่ละระบบคือเท่าใด",
    "context": "CREATE TABLE table_10875694_11 (system VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(product_no) FROM table_10875694_11 WHERE title = \"Jak 3\"",
    "question_en": "How many products have the title \"Jak 3\"?",
    "question_th": "มีสินค้ากี่รายการที่มีชื่อว่า \"จักร 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_en": "Which James Bond 007: Agent Under Fire from Electronic Arts is compatible with 60 gb pal/80 gb NTSC PS3 (CECHC/CECHE)?",
    "question_th": "James Bond 007: Agent Under Fire จาก Electronic Arts ใดที่เข้ากันได้กับ NTSC PS3 ขนาด 60 gb pal/80 gb (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_en": "What publishers produce product number SLUS-20265?",
    "question_th": "ผู้จัดพิมพ์รายใดผลิตหมายเลขผลิตภัณฑ์ 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_en": "How many titles have the product number SCUS-97330?",
    "question_th": "สินค้ามีกี่รายการ เลขที่ SCUS-97330?",
    "context": "CREATE TABLE table_10875694_11 (title VARCHAR, product_no VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_1090916_2 WHERE livery = \"Blue\"",
    "question_en": "What is  the status when livery is blue?",
    "question_th": "สถานะเมื่อชุดเครื่องแบบเป็นสีน้ำเงินคืออะไร?",
    "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_en": "What is the location when the status is in service as coaching stock?",
    "question_th": "สถานะเป็นสต็อคฝึกสอนอยู่ที่ใด?",
    "context": "CREATE TABLE table_1090916_2 (location VARCHAR, status VARCHAR)"
  },
  {
    "answer": "SELECT first_season FROM table_1096793_1 WHERE last_title = \"2012\"",
    "question_en": "What was the first season of the club who last won a title in 2012?",
    "question_th": "ฤดูกาลแรกของสโมสรที่คว้าแชมป์ครั้งล่าสุดในปี 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_en": "What was the first season of the club that in 2012 was 2nd in Superettan?",
    "question_th": "ฤดูกาลแรกของสโมสรในปี 2012 คืออันดับที่ 2 ใน 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_en": "Who directed the second episode of \"The Homecoming\" which was written by Tommy Thompson?",
    "question_th": "ใครเป็นผู้กำกับตอนที่สองของ \"The Homecoming\" ที่เขียนโดย 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_en": "What percentage of The Bronx voters occured when Manhattan had 29.9% of voters?",
    "question_th": "ผู้มีสิทธิเลือกตั้ง The Bronx กี่เปอร์เซ็นต์ที่เกิดขึ้นเมื่อแมนฮัตตันมีผู้ลงคะแนน 29.9%",
    "context": "CREATE TABLE table_1108394_34 (the_bronx VARCHAR, manhattan VARCHAR)"
  },
  {
    "answer": "SELECT the_bronx FROM table_1108394_34 WHERE total = 2054",
    "question_en": "What number of voters did the Bronx have when the total number was 2054?",
    "question_th": "Bronx มีผู้ลงคะแนนจำนวนเท่าใดเมื่อจำนวนทั้งหมดคือ 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_en": "What number of voters did Queens have when Staten Island had 295 voters?",
    "question_th": "ควีนส์มีผู้ลงคะแนนจำนวนเท่าใดเมื่อเกาะสตาเตนมีผู้มีสิทธิเลือกตั้ง 295 คน",
    "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_en": "What was Staten Island when Brooklyn was 940?",
    "question_th": "เกาะสตาเตนเมื่อบรูคลินอายุ 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_en": "What was the total number in Manhattan when Staten Island was 12,658?",
    "question_th": "จำนวนทั้งหมดในแมนฮัตตันเมื่อเกาะสตาเตนอยู่ที่ 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_en": "What was the total in Brooklyn when Manhattan was 3,139?",
    "question_th": "ยอดรวมในบรูคลินเมื่อแมนฮัตตันอยู่ที่ 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_en": "Who was the republican candidate in 2013 when Staten Island was 451?",
    "question_th": "ใครคือผู้สมัครชิงตำแหน่งพรรครีพับลิกันในปี 2013 เมื่อเกาะสตาเตนอายุ 451 ปี",
    "context": "CREATE TABLE table_1108394_6 (staten_island VARCHAR)"
  },
  {
    "answer": "SELECT staten_island FROM table_1108394_6 WHERE the_bronx = \"1,281\"",
    "question_en": "What was the amount in Staten Island when The Bronx was 1,281?",
    "question_th": "จำนวนเงินใน Staten Island เมื่อ The Bronx อยู่ที่ 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_en": "The candidate who received 133 votes in the Bronx won what percentage overall?",
    "question_th": "ผู้สมัครที่ได้รับคะแนนเสียง 133 เสียงในบรองซ์จะได้รับรางวัลโดยรวมเป็นเปอร์เซ็นต์เท่าใด",
    "context": "CREATE TABLE table_1108394_47 (_percentage VARCHAR, the_bronx VARCHAR)"
  },
  {
    "answer": "SELECT 1921 FROM table_1108394_47 WHERE queens = \"88\"",
    "question_en": "Which candidate won 88 votes in Queens in 1921?",
    "question_th": "ผู้สมัครคนใดได้รับคะแนนเสียง 88 คะแนนในควีนส์ในปี 2464",
    "context": "CREATE TABLE table_1108394_47 (queens VARCHAR)"
  },
  {
    "answer": "SELECT brooklyn FROM table_1108394_47 WHERE manhattan = \"321\"",
    "question_en": "How many votes in Brooklyn were won by the candidate who won 321 votes in Manhattan?",
    "question_th": "ผู้สมัครที่ได้รับคะแนนเสียง 321 เสียงในแมนฮัตตันชนะในบรูคลินกี่คะแนน?",
    "context": "CREATE TABLE table_1108394_47 (brooklyn VARCHAR, manhattan VARCHAR)"
  },
  {
    "answer": "SELECT _percentage FROM table_1108394_47 WHERE queens = \"87,676\"",
    "question_en": "The man who received 87,676 votes in Queens won what percentage of the total for the election?",
    "question_th": "ชายที่ได้รับคะแนนเสียง 87,676 เสียงในควีนส์ ชนะการเลือกตั้งทั้งหมดกี่เปอร์เซ็นต์",
    "context": "CREATE TABLE table_1108394_47 (_percentage VARCHAR, queens VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(party) FROM table_1108394_47 WHERE manhattan = \"29.9_percentage\"",
    "question_en": "How many parties received 29.9% of the vote in Manhattan?",
    "question_th": "มีกี่พรรคที่ได้รับคะแนนเสียง 29.9% ในแมนฮัตตัน",
    "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_en": "Name the most late 1943 with late 194 in slovenia",
    "question_th": "ตั้งชื่อช่วงปลายปี 1943 กับช่วงปลายปี 194 ในภาษาสโลวีเนีย",
    "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_en": "What is the least september 1943 when late 1943 is 78000",
    "question_th": "เดือนกันยายน 2486 น้อยที่สุดคือช่วงปลายปี 2486 อยู่ที่ 78,000",
    "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_en": "What was Eric Dickerson's longest run?",
    "question_th": "การวิ่งที่ยาวนานที่สุดของ Eric Dickerson คืออะไร?",
    "context": "CREATE TABLE table_11157122_5 (longest_run VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MIN(attempts) FROM table_11157122_5 WHERE player = \"Charles White\"",
    "question_en": "How many attempts did Charles White make?",
    "question_th": "Charles White พยายามกี่ครั้ง?",
    "context": "CREATE TABLE table_11157122_5 (attempts INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT yards FROM table_11157122_5 WHERE attempts = 87",
    "question_en": "How many yards did the player with 87 attempts rush?",
    "question_th": "ผู้เล่นวิ่งได้ 87 หลากี่หลา?",
    "context": "CREATE TABLE table_11157122_5 (yards VARCHAR, attempts VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(highest) FROM table_11206916_1 WHERE team = \"Elgin City\"",
    "question_en": "What was the highest amount of people that attended the elgin city team?",
    "question_th": "จำนวนคนที่เข้าร่วมทีมเอลจินซิตี้มากที่สุดคือเท่าไร?",
    "context": "CREATE TABLE table_11206916_1 (highest VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT MIN(average) FROM table_11206916_1 WHERE stadium = \"Firs Park\"",
    "question_en": "The firs park stadium had the lowest average attendence of what?",
    "question_th": "สนามกีฬาเฟิร์สพาร์คมีผู้เข้าชมเฉลี่ยต่ำที่สุดในเรื่องใด",
    "context": "CREATE TABLE table_11206916_1 (average INTEGER, stadium VARCHAR)"
  },
  {
    "answer": "SELECT MIN(highest) FROM table_11206916_1 WHERE team = \"Dumbarton\"",
    "question_en": "What was the lowest highest attendance for the dumbarton team?",
    "question_th": "จำนวนผู้เข้าร่วมสูงสุดที่ต่ำที่สุดสำหรับทีมดัมบาร์ตันคือเท่าใด",
    "context": "CREATE TABLE table_11206916_1 (highest INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(highest) FROM table_11206916_1 WHERE stadium = \"Gayfield Park\"",
    "question_en": "The gayfield park stadium had a highest attendance of what?",
    "question_th": "สนามกีฬา Gayfield Park มีผู้ชมมากที่สุดในเรื่องใด?",
    "context": "CREATE TABLE table_11206916_1 (highest INTEGER, stadium VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(highest) FROM table_11206916_1 WHERE team = \"Stenhousemuir\"",
    "question_en": "The stenhousemuir team had how many highest attendances?",
    "question_th": "ทีมสเตนเฮาส์มัวร์มีผู้เข้าชมมากที่สุดกี่ทีม?",
    "context": "CREATE TABLE table_11206916_1 (highest VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT premiere FROM table_11174272_1 WHERE hk_viewers = \"2.09 million\"",
    "question_en": "what's the premiere with hk viewers of 2.09 million",
    "question_th": "รอบปฐมทัศน์ที่มีผู้ชมฮ่องกง 2.09 ล้านคนคืออะไร",
    "context": "CREATE TABLE table_11174272_1 (premiere VARCHAR, hk_viewers VARCHAR)"
  },
  {
    "answer": "SELECT MIN(rank) FROM table_11174272_1",
    "question_en": "what is the minimum rank",
    "question_th": "อันดับขั้นต่ำคืออะไร",
    "context": "CREATE TABLE table_11174272_1 (rank INTEGER)"
  },
  {
    "answer": "SELECT MIN(capacity) FROM table_11208143_9 WHERE team = \"Dundee United\"",
    "question_en": "What is the minimum capacity of Dundee United's stadium?",
    "question_th": "ความจุขั้นต่ำของสนามของ Dundee United คือเท่าไร?",
    "context": "CREATE TABLE table_11208143_9 (capacity INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT stadium FROM table_11208143_9 WHERE capacity = 51082",
    "question_en": "Which stadiums have a capacity of 51082?",
    "question_th": "สนามกีฬาใดมีความจุ 51082?",
    "context": "CREATE TABLE table_11208143_9 (stadium VARCHAR, capacity VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(stadium) FROM table_11208143_9 WHERE capacity = 7500",
    "question_en": "How many stadiums are there with a capacity of 7500?",
    "question_th": "มีสนามกีฬากี่แห่งความจุ 7,500 ที่นั่ง?",
    "context": "CREATE TABLE table_11208143_9 (stadium VARCHAR, capacity VARCHAR)"
  },
  {
    "answer": "SELECT MAX(capacity) FROM table_11208143_9 WHERE stadium = \"Pittodrie\"",
    "question_en": "What is Pittodrie Stadium's maximum capacity?",
    "question_th": "ความจุสูงสุดของ Pittodrie Stadium คือเท่าใด?",
    "context": "CREATE TABLE table_11208143_9 (capacity INTEGER, stadium VARCHAR)"
  },
  {
    "answer": "SELECT stadium FROM table_11208143_9 WHERE average = 13840",
    "question_en": "Which stadiums have an average attendance of 13840?",
    "question_th": "สนามกีฬาใดมีผู้ชมเฉลี่ย 13,840 คน?",
    "context": "CREATE TABLE table_11208143_9 (stadium VARCHAR, average VARCHAR)"
  },
  {
    "answer": "SELECT highest FROM table_11208143_9 WHERE average = 4752",
    "question_en": "What are the highest recorded attendance rates of the stadiums with an average attendance of 4752?",
    "question_th": "อัตราการเข้าชมสนามกีฬาสูงสุดที่บันทึกไว้โดยมีผู้เข้าชมเฉลี่ย 4,752 คนคือเท่าใด",
    "context": "CREATE TABLE table_11208143_9 (highest VARCHAR, average VARCHAR)"
  },
  {
    "answer": "SELECT MAX(ties) FROM table_11233358_2",
    "question_en": "What is the highest number of ties?",
    "question_th": "จำนวนความสัมพันธ์สูงสุดคือเท่าใด?",
    "context": "CREATE TABLE table_11233358_2 (ties INTEGER)"
  },
  {
    "answer": "SELECT COUNT(w_l__total_) FROM table_11233358_2 WHERE debut = 2013",
    "question_en": "During the 2013 debut, what is the w-I(total) number?",
    "question_th": "ระหว่างเดบิวต์ปี 2013 ตัวเลข wi(รวม) คืออะไร?",
    "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_en": "What is the catalog number named callanetics: 10 years younger in 10 hours",
    "question_th": "หมายเลขแคตตาล็อกชื่อ Callanetics คืออะไร อายุน้อยกว่า 10 ปีใน 10 ชั่วโมง",
    "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_en": "how many studios have the catalog number \"cal03 / 0091037137333\"?",
    "question_th": "มีกี่สตูดิโอที่มีหมายเลขแคตตาล็อก \"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_en": "what is the format of \"callanetics: 10 years younger in 10 hours\"?",
    "question_th": "รูปแบบของ \" Callanetics: อายุน้อยกว่า 10 ปีใน 10 ชั่วโมง\" คืออะไร?",
    "context": "CREATE TABLE table_11222744_3 (format VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT catalog_number FROM table_11222744_3 WHERE title = \"Super Callanetics\"",
    "question_en": "What is the catalog number of the title called \"super callanetics\"?",
    "question_th": "หมายเลขแค็ตตาล็อกของชื่อที่เรียกว่า \"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_en": "how many titles have the name \"quick callanetics\"?",
    "question_th": "มีกี่ชื่อที่มีชื่อว่า \"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_en": "Who creates the catalog with the number \"cal03 / 0091037137333\"?",
    "question_th": "ใครเป็นคนสร้างแค็ตตาล็อกหมายเลข \"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_en": "What was the rating for the episode with 1.83 viewers (millions)?",
    "question_th": "เรตติ้งตอนที่มีคนดู 1.83 (ล้านคน) อยู่ที่เท่าไหร่?",
    "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_en": "What was the share for the episode with the air date december 10, 2008?",
    "question_th": "ส่วนแบ่งของตอนที่ออกอากาศวันที่ 10 ธันวาคม 2551 เป็นเท่าใด",
    "context": "CREATE TABLE table_11238597_4 (share VARCHAR, air_date VARCHAR)"
  },
  {
    "answer": "SELECT premiere FROM table_11323532_2 WHERE languages = \"Danish\"",
    "question_en": "Which premiere had languages in danish?",
    "question_th": "รอบปฐมทัศน์ใดที่มีภาษาเดนมาร์ก",
    "context": "CREATE TABLE table_11323532_2 (premiere VARCHAR, languages VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(channel) FROM table_11323532_2 WHERE country_region = \"New Zealand\"",
    "question_en": "What was the number of channels in New Zealand?",
    "question_th": "นิวซีแลนด์มีจำนวนช่องกี่ช่อง?",
    "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_en": "What is the premiere where the host is lieke van lexmond dennis weening?",
    "question_th": "รอบปฐมทัศน์คืออะไรซึ่งพิธีกรคือ ลีเก แวน เล็กซ์มอนด์ เดนนิส วีนนิง?",
    "context": "CREATE TABLE table_11323532_2 (premiere VARCHAR, host VARCHAR)"
  },
  {
    "answer": "SELECT premiere FROM table_11323532_2 WHERE channel = \"Mega channel\"",
    "question_en": "What is the premiere on the mega channel?",
    "question_th": "รอบปฐมทัศน์ของ 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_en": "What is the symbol for Windpower in China?",
    "question_th": "สัญลักษณ์ของ Windpower ในประเทศจีนคืออะไร?",
    "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_en": "who were the winners in west virginia",
    "question_th": "ซึ่งเป็นผู้ชนะในเวสต์เวอร์จิเนีย",
    "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_en": "tell the final for lindsey graham",
    "question_th": "เล่าตอนจบของลินด์ซีย์ เกรแฮม",
    "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_en": "who won the senate seat in arkansas",
    "question_th": "ที่ได้ที่นั่งวุฒิสภาในอาร์คันซอ",
    "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_en": "What is the dysart of the principal?",
    "question_th": "Dyart ของอาจารย์ใหญ่คืออะไร?",
    "context": "CREATE TABLE table_11340432_1 (dysart VARCHAR, information VARCHAR)"
  },
  {
    "answer": "SELECT willow_canyon FROM table_11340432_1 WHERE dysart = \"Roberta Lockhart\"",
    "question_en": "What is williow canyon of Roberta Lockhart?",
    "question_th": "Williow Canyon ของ 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_en": "What is the willow canyon of Stallion?",
    "question_th": "หุบเขาวิลโลว์ของ 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_en": "Name the Valley Vista of Anthony Capuano",
    "question_th": "ตั้งชื่อ Valley Vista ของ 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_en": "How many informations does Michael Hawkins have?",
    "question_th": "Michael Hawkins มีข้อมูลกี่อัน?",
    "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_en": "How many total rounds did Damon Hill come in First Place?",
    "question_th": "Damon Hill ได้ที่หนึ่งทั้งหมดกี่รอบ?",
    "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_en": "Who drove the winning car constructed by Jordan - Mugen-Honda?",
    "question_th": "ใครขับรถผู้ชนะที่สร้างโดย 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_en": "Which Grand Prix was won by a car constructed by Jordan - Mugen-Honda?",
    "question_th": "กรังด์ปรีซ์คันไหนที่ชนะโดยรถยนต์ที่สร้างโดย 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_en": "Which location belongs to the website, http://www.mudgeerabasoccer.com/?",
    "question_th": "ตำแหน่งใดเป็นของเว็บไซต์ 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_en": "The president, peter williamson, had how many home grounds?",
    "question_th": "ประธานาธิบดี ปีเตอร์ วิลเลียมสัน มีสนามเหย้ากี่แห่ง?",
    "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_en": "How many head coaches are there for the website, http://www.burleighbulldogs.org/?",
    "question_th": "เว็บไซต์มีเฮดโค้ชกี่คน 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_en": "The head coach, steve radoslavic, is related to which websites?",
    "question_th": "เฮดโค้ช สตีฟ ราโดสลาวิช เกี่ยวข้องกับเว็บไหน?",
    "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_en": "Who is the driver of the european grand prix?",
    "question_th": "ใครคือคนขับรถของ 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_en": "What is the report for round 3?",
    "question_th": "รายงานรอบ 3 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_1137696_3 (report VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT winning_driver FROM table_1137696_3 WHERE round = 7",
    "question_en": "What is the winning driver of round 7?",
    "question_th": "นักแข่งที่ชนะในรอบที่ 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_en": "Name the grand prix with a driver of Michael Schumacher and a round of 7?",
    "question_th": "ทายชื่อกรังด์ปรีซ์กับนักขับ มิชาเอล ชูมัคเกอร์ และรอบ 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_en": "Which round was the winning constructor was Benetton - Ford and in the Pole Position was Damon Hill?",
    "question_th": "คอนสตรัคเตอร์ที่ชนะคือ Benetton - Ford และ Pole Position คือ 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_en": "How many Grand Prix were the winning constructor Benetton - Ford and the pole position was Michael Schumacher?",
    "question_th": "Benetton - Ford ผู้สร้างรางวัล Grand Prix กี่คนและตำแหน่งโพลคือ 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_en": "Who was the winning driver in round 6?",
    "question_th": "ใครคือนักแข่งที่ชนะในรอบที่ 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_en": "Who was the winning driver in the grand prix at Pacific Grand Prix?",
    "question_th": "ใครคือนักแข่งที่ชนะในการแข่งขันกรังด์ปรีซ์ที่ 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_en": "Who was the winning driver when the grand Prix was at Belgian Grand Prix?",
    "question_th": "ใครคือนักแข่งที่ชนะเมื่อกรังด์ปรีซ์อยู่ที่ 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_en": "Who was the winning driver when the pole position was held by Ayrton Senna and the Fastest lap was Michael Schumacher?",
    "question_th": "ใครคือนักแข่งที่ชนะเมื่อไอร์ตัน เซนนา ครองตำแหน่งโพลโพซิชั่น และไมเคิล ชูมัคเกอร์ทำรอบเร็วที่สุด",
    "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_en": "On which date was the winning driver Alain Prost and and had Damon Hill in the pole position?",
    "question_th": "Alain Prost นักแข่งที่ชนะคือวันไหน และมี Damon Hill อยู่ในตำแหน่งโพลโพซิชั่นในวันไหน?",
    "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_en": "Which round was the Spanish Grand Prix?",
    "question_th": "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_en": "What was the record at week 7",
    "question_th": "บันทึกในสัปดาห์ที่ 7 คืออะไร",
    "context": "CREATE TABLE table_11391448_2 (record VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(opponent) FROM table_11391448_2 WHERE week = 6",
    "question_en": "How many teams did they play week 6",
    "question_th": "สัปดาห์ที่ 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_en": "What is the number of reports for the italian grand prix?",
    "question_th": "จำนวนรายงานสำหรับกรังด์ปรีซ์อิตาลีคือเท่าไร?",
    "context": "CREATE TABLE table_1140078_2 (report VARCHAR, race VARCHAR)"
  },
  {
    "answer": "SELECT pole_position FROM table_1140078_2 WHERE race = \"Belgian Grand Prix\"",
    "question_en": "What is the pole position of the belgian grand prix?",
    "question_th": "ตำแหน่งโพลโพซิชั่นของเบลเยียม กรังด์ปรีซ์ คืออะไร?",
    "context": "CREATE TABLE table_1140078_2 (pole_position VARCHAR, race VARCHAR)"
  },
  {
    "answer": "SELECT pole_position FROM table_1140078_2 WHERE location = \"Paul Ricard\"",
    "question_en": "What is the pole position of paul ricard?",
    "question_th": "ตำแหน่งโพลของพอล ริคาร์ดคืออะไร?",
    "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_en": "What is the report of the united states grand prix west?",
    "question_th": "รายงานของ 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_en": "Where is the German Grand Prix?",
    "question_th": "เยอรมันกรังด์ปรีซ์อยู่ที่ไหน?",
    "context": "CREATE TABLE table_1140082_2 (location VARCHAR, race VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_1140082_2 WHERE race = \"Swedish Grand Prix\"",
    "question_en": "What is the constructor of the Swedish Grand Prix?",
    "question_th": "ผู้สร้าง 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_en": "Who did the fastest lap at Watkins glen?",
    "question_th": "ใครทำรอบเร็วที่สุดที่วัตคินส์เกลน?",
    "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_en": "What circuit has a race called ii cape south easter trophy.",
    "question_th": "สนามใดมีการแข่งขันที่เรียกว่า 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_en": "Which driver won the i race of champions?",
    "question_th": "นักแข่งคนไหนชนะการแข่งขัน 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_en": "What is the report for the race that Mike Spence won.",
    "question_th": "รายงานการแข่งขันที่ ไมค์ สเปนซ์ ชนะคืออะไร",
    "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_en": "What is the report for the race i sunday mirror trophy?",
    "question_th": "รายงานผลการแข่งขัน 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_en": "How many winners did I Dessau Autobahnspinne have?",
    "question_th": "ฉันมีผู้ชนะกี่คนใน Dessau Autobahnspinne?",
    "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_en": "What is the date on which a race was run at Halle-Saale-Schleife circuit?",
    "question_th": "การแข่งขันจัดขึ้นที่สนาม Halle-Saale-Schleife วันที่เท่าไหร่?",
    "context": "CREATE TABLE table_1140116_6 (date VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(race_name) FROM table_1140116_6 WHERE circuit = \"Dessau\"",
    "question_en": "How many races take place in Dessau circuit?",
    "question_th": "มีการแข่งขันกี่รายการในสนาม 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_en": "Which races did Paul Greifzu win?",
    "question_th": "Paul Greifzu ชนะการแข่งขันรายการใด",
    "context": "CREATE TABLE table_1140116_6 (race_name VARCHAR, winning_driver VARCHAR)"
  },
  {
    "answer": "SELECT winning_driver FROM table_1140114_5 WHERE circuit = \"Sachsenring\"",
    "question_en": "Which driver won at the Sachsenring circuit?",
    "question_th": "นักแข่งคนไหนชนะที่สนามซัคเซนริง",
    "context": "CREATE TABLE table_1140114_5 (winning_driver VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_1140114_5 WHERE race_name = \"RedeX Trophy\"",
    "question_en": "Which constructor was present at the Redex Trophy race?",
    "question_th": "คอนสตรัคเตอร์คนไหนที่เข้าร่วมการแข่งขัน Redex Trophy?",
    "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_en": "How many different constructors had Paul Thiel as a winning driver?",
    "question_th": "มีผู้สร้างที่แตกต่างกันกี่คนที่มี Paul Thiel เป็นตัวขับเคลื่อนที่ชนะ",
    "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_en": " who is the opponent where tv is abc and game site is tampa stadium",
    "question_th": " ฝ่ายตรงข้ามที่ทีวีเป็น abc และไซต์เกมคือแทมปาสเตเดียม",
    "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_en": "what is the total number of opponent where date is november 23, 1980",
    "question_th": "จำนวนฝ่ายตรงข้ามทั้งหมดคือเท่าใด ซึ่งวันที่ 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_en": "what is the total number of kickoff [a ] where week is week",
    "question_th": "จำนวนการเขี่ยทั้งหมด [a ] คือเท่าใด โดยที่สัปดาห์คือสัปดาห์",
    "context": "CREATE TABLE table_11406866_2 (a_ VARCHAR, kickoff_ VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_11406866_2 WHERE attendance = \"77,098\"",
    "question_en": " what's the week where attendance is 77,098",
    "question_th": " สัปดาห์ไหนที่มีผู้เข้าร่วม 77,098 คน",
    "context": "CREATE TABLE table_11406866_2 (week VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_11406866_2 WHERE attendance = \"61,350\"",
    "question_en": " what's the record where attendance is 61,350",
    "question_th": " มีผู้เข้าร่วม 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_en": " what's the record where result is l 24-10",
    "question_th": " บันทึกที่ผลลัพธ์คือ l 24-10 คืออะไร",
    "context": "CREATE TABLE table_11406866_2 (record VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_1140119_5 WHERE circuit = \"Silverstone\"",
    "question_en": "What date was the Silverstone circuit driven? ",
    "question_th": " สนาม Silverstone Circuit ขับเคลื่อนเมื่อใด?",
    "context": "CREATE TABLE table_1140119_5 (date VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_1140119_5 WHERE circuit = \"Albi\"",
    "question_en": "When was the Albi circuit race driven? ",
    "question_th": " การแข่งขัน Albi Circuit จัดขึ้นเมื่อใด",
    "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_en": "Would built the winning car in the IV J.C.C. Jersey Road Race? ",
    "question_th": " จะสร้างรถที่ชนะในการแข่งขัน IV JCC 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_en": "Who won the race at the Jersey circuit? ",
    "question_th": " ใครชนะการแข่งขันที่สนามเจอร์ซีย์เซอร์กิต?",
    "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_en": "When did the season air where the viewership was 14.71 million?",
    "question_th": "ซีซั่นนี้ออกอากาศเมื่อไหร่ที่มีผู้ชม 14.71 ล้านคน?",
    "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_en": "What is the power capacity when the generators were 781?",
    "question_th": "กำลังการผลิตไฟฟ้าเมื่อเครื่องปั่นไฟอยู่ที่ 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_en": "What is the percentage of total capacity when the energy is 120.2?",
    "question_th": "เปอร์เซ็นต์ของความจุรวมเมื่อพลังงานเป็น 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_en": "What is the % of annual production of solar?",
    "question_th": "% ของการผลิตพลังงานแสงอาทิตย์ต่อปีคือเท่าไร?",
    "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_en": "What is the number of generators where the power capicity is 78.7?",
    "question_th": "เครื่องปั่นไฟที่มีความจุไฟฟ้า 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_en": "What is the % of total capacity when the generators is 4048?",
    "question_th": "% ของกำลังการผลิตทั้งหมดเมื่อเครื่องปั่นไฟเป็น 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_en": "If the model is  15.180e, what is the GVM (kg) Technical Capacity?",
    "question_th": "หากรุ่นเป็น 15.180e ความจุทางเทคนิค GVM (กก.) เป็นเท่าใด",
    "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_en": "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?",
    "question_th": "หากยี่ห้อ/ความจุของเครื่องยนต์คือ MWM 6.10 TCA-EURO III (เทอร์โบอินเตอร์คูลเลอร์) และความจุทางเทคนิค GVM (กก.) คือ 23000 แรงบิด 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_en": "What is the power kw@RPM of the 13.180 model?",
    "question_th": "กำลัง kw@RPM ของรุ่น 13.180 คืออะไร?",
    "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_en": "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?",
    "question_th": "เมื่อยี่ห้อ/ประเภท/ความเร็วของระบบส่งกำลังคือ eaton fs 5306-a ซิงโครเมชแบบแมนนวล 6 สปีด ค่าความจุทางเทคนิค gcm (กก.) เป็นเท่าใด",
    "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_en": "Which model possesses a transmission make/type/speed of eaton fs-6306 a manual synchromesh 6 speed?",
    "question_th": "รุ่นใดมียี่ห้อ/ประเภท/ความเร็วของระบบเกียร์ของ eaton fs-6306 และซินโครเมชแบบแมนนวล 6 สปีด?",
    "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_en": "Is drawing tablet support part of the semi-DDM class?",
    "question_th": "รองรับแท็บเล็ตการวาดภาพเป็นส่วนหนึ่งของคลาส semi-DDM หรือไม่",
    "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_en": "Is  usb re-enumeration required part of the emulated class?",
    "question_th": "การแจงนับ usb ใหม่จำเป็นต้องเป็นส่วนหนึ่งของคลาสจำลองหรือไม่",
    "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_en": "Is wireless combo keyboard and mouse support part of the hub base class?",
    "question_th": "รองรับคีย์บอร์ดและเมาส์คอมโบไร้สายเป็นส่วนหนึ่งของคลาสฐานฮับหรือไม่",
    "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_en": "Is the drawing tablet support part of the DDM class?",
    "question_th": "แท็บเล็ตการวาดภาพรองรับคลาส DDM หรือไม่",
    "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_en": "Is  wireless combo keyboard and mouse support part of the DDM class?",
    "question_th": "รองรับคีย์บอร์ดและเมาส์คอมโบไร้สายเป็นส่วนหนึ่งของคลาส DDM หรือไม่",
    "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_en": "What school or team does Al Jefferson play for?",
    "question_th": "อัล เจฟเฟอร์สันเล่นให้กับโรงเรียนหรือทีมใด",
    "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_en": "Which forward player has the number 22?",
    "question_th": "กองหน้าคนไหนมีหมายเลข 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_en": "What number does the player from Ohio play with?",
    "question_th": "ผู้เล่นจากโอไฮโอเล่นด้วยหมายเลขใด",
    "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_en": "During which years did player number 35 play for Jazz?",
    "question_th": "ผู้เล่นหมายเลข 35 เล่นให้กับแจ๊สในช่วงปีใด",
    "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_en": "For driver Mark Skaife what is the result for race 1?",
    "question_th": "สำหรับนักแข่ง Mark Skaife ผลลัพธ์ของการแข่งรอบที่ 1 เป็นอย่างไร",
    "context": "CREATE TABLE table_11581984_2 (race_1 VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_11602885_1 WHERE location = \"Mexico\"",
    "question_en": "When was the game in Mexico played? ",
    "question_th": " เกมที่เม็กซิโกเล่นเมื่อไหร่?",
    "context": "CREATE TABLE table_11602885_1 (date VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT university_name FROM table_1160660_1 WHERE acronym = \"USF\"",
    "question_en": "What University has the acrronym of USF",
    "question_th": "มหาวิทยาลัยใดมีอักษรย่อว่า 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_en": "What is the acronym used for Beirut Arab University?",
    "question_th": "มหาวิทยาลัยอาหรับเบรุตใช้ตัวย่ออะไร",
    "context": "CREATE TABLE table_1160660_1 (acronym VARCHAR, university_name VARCHAR)"
  },
  {
    "answer": "SELECT acronym FROM table_1160660_1 WHERE website = \"ul.edu.lb\"",
    "question_en": "What is the acronym for the school whose website is ul.edu.lb",
    "question_th": "โรงเรียนที่มีเว็บไซต์ 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_en": "Are there registration notes on usek.edu.lb?",
    "question_th": "มีบันทึกการลงทะเบียนบน 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_en": "What year was USF founded?",
    "question_th": "USF ก่อตั้งในปีใด?",
    "context": "CREATE TABLE table_1160660_1 (date_founded VARCHAR, acronym VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_11621747_1 WHERE date = \"Jul 11\"",
    "question_en": "What is the tournament on Jul 11?",
    "question_th": "การแข่งขันในวันที่ 11 กรกฎาคมจะเป็นอย่างไร?",
    "context": "CREATE TABLE table_11621747_1 (tournament VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_11621747_1 WHERE date = \"Aug 29\"",
    "question_en": "What is the tournament of aug 29?",
    "question_th": "การแข่งขันวันที่ 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_en": "How many prizes were there at the transamerica?",
    "question_th": "ทรานส์อเมริกามีรางวัลกี่รางวัล?",
    "context": "CREATE TABLE table_11621747_1 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT MAX(purse__) AS $__ FROM table_11622392_1",
    "question_en": "What is the sum of the largest purse?",
    "question_th": "ผลรวมของกระเป๋าเงินที่ใหญ่ที่สุดคือเท่าไร?",
    "context": "CREATE TABLE table_11622392_1 (purse__ INTEGER)"
  },
  {
    "answer": "SELECT date FROM table_11622392_1 WHERE location = \"Washington\"",
    "question_en": "When was the tournament in Washington held?",
    "question_th": "การแข่งขันในวอชิงตันจัดขึ้นเมื่อไหร่?",
    "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_en": "How many tournaments in Texas had a purse higher than 330105.1624276874?",
    "question_th": "มีกี่ทัวร์นาเมนต์ในเท็กซัสที่มีเงินในกระเป๋าสูงกว่า 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_en": "What is the first season written by joseph hampton & dani renee?",
    "question_th": "ซีซั่นแรกที่เขียนโดย 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_en": "How many air dates are there for production code 206?",
    "question_th": "รหัสการผลิต 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_en": "What is the title for season 2?",
    "question_th": "ชื่อเรื่องของซีซั่น 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_en": "How many seasons was series number 47 shown?",
    "question_th": "ซีรีส์หมายเลข 47 มีกี่ซีซั่น?",
    "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_en": "When did the episode with production code 410 air?",
    "question_th": "ตอนรหัสผลิต 410 ออกอากาศเมื่อไร?",
    "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_en": "What is the most series number with season 3?",
    "question_th": "หมายเลขซีรีส์ใดมากที่สุดในซีซั่น 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_en": "What is the purse value for the New York location?",
    "question_th": "มูลค่ากระเป๋าสำหรับสถานที่ตั้งในนิวยอร์กคือเท่าไร?",
    "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_en": "What is the largest 1st prize( $ ) at the South Carolina location?",
    "question_th": "รางวัลที่ 1 ที่ใหญ่ที่สุด ($ ) ในสถานที่เซาท์แคโรไลนาคืออะไร?",
    "context": "CREATE TABLE table_11622896_1 (location VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_11622896_1 WHERE location = \"Oregon\"",
    "question_en": "What is the score for the Oregon location?",
    "question_th": "คะแนนสำหรับสถานที่ตั้งในออริกอนคือเท่าไร?",
    "context": "CREATE TABLE table_11622896_1 (score VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT area_in_1000km²__1930_ FROM table_11654169_1 WHERE voivodeship_separate_city = \"lubelskie\"",
    "question_en": "List all areas within 1000 km in the city of Lubelskie?",
    "question_th": "รายชื่อพื้นที่ทั้งหมดภายใน 1,000 กม. ในเมือง Lubelskie?",
    "context": "CREATE TABLE table_11654169_1 (area_in_1000km²__1930_ VARCHAR, voivodeship_separate_city VARCHAR)"
  },
  {
    "answer": "SELECT population_in_1000__1931_ FROM table_11654169_1 WHERE voivodeship_separate_city = \"pomorskie\"",
    "question_en": "What is the population in the city of Pomorskie?",
    "question_th": "ประชากรในเมือง 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_en": "List all car plates in the capital of Wilno since the year of 1937.",
    "question_th": "รายชื่อป้ายทะเบียนรถทั้งหมดในเมืองหลวงของ Wilno ตั้งแต่ปี 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_en": "List population when their car plates are 30-34.",
    "question_th": "ระบุจำนวนประชากรเมื่อป้ายทะเบียนรถอยู่ที่ 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_en": "How many points are there when the lost is 26?",
    "question_th": "แพ้ 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_en": "WHAT TEAM CLASSIFIED IN THE STAGE WHERE BRADLEY WIGGINS WON THE POINTS CLASSIFICATION ?",
    "question_th": "ทีมใดที่จัดอยู่ในขั้นตอนที่ BRADLEY WIGGINS ชนะการจัดประเภทคะแนน",
    "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_en": "IN WHAT STAGE DID ALEXANDER VINOKOUROV WON THE GENERAL CLASSIFICATION?",
    "question_th": "ALEXANDER VINOKOUROV ชนะการจำแนกประเภททั่วไปในขั้นตอนใด",
    "context": "CREATE TABLE table_11667521_17 (stage__winner_ VARCHAR, general_classification VARCHAR)"
  },
  {
    "answer": "SELECT average FROM table_11674683_2 WHERE delegate = \"Spain\"",
    "question_en": "Name the average for spain delegate",
    "question_th": "ตั้งชื่อค่าเฉลี่ยสำหรับผู้รับมอบสิทธิ์ชาวสเปน",
    "context": "CREATE TABLE table_11674683_2 (average VARCHAR, delegate VARCHAR)"
  },
  {
    "answer": "SELECT interview FROM table_11674683_2 WHERE delegate = \"Peru\"",
    "question_en": "Name the interview for peru delegate",
    "question_th": "ตั้งชื่อการสัมภาษณ์ตัวแทนชาวเปรู",
    "context": "CREATE TABLE table_11674683_2 (interview VARCHAR, delegate VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(swimsuit) FROM table_11674683_2 WHERE delegate = \"Israel\"",
    "question_en": "Name the number of swimsuit for israel",
    "question_th": "ตั้งชื่อหมายเลขชุดว่ายน้ำสำหรับอิสราเอล",
    "context": "CREATE TABLE table_11674683_2 (swimsuit VARCHAR, delegate VARCHAR)"
  },
  {
    "answer": "SELECT swimsuit FROM table_11674683_2 WHERE delegate = \"South Africa\"",
    "question_en": "What are the swimsuits for south africa?",
    "question_th": "ชุดว่ายน้ำสำหรับแอฟริกาใต้มีอะไรบ้าง?",
    "context": "CREATE TABLE table_11674683_2 (swimsuit VARCHAR, delegate VARCHAR)"
  },
  {
    "answer": "SELECT mlb_draft FROM table_11677100_12 WHERE hometown = \"Opa-locka, FL\"",
    "question_en": "Who were the MLB draft with the hometown Opa-locka, Fl?",
    "question_th": "ใครคือร่าง MLB กับบ้านเกิด 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_en": "How many players have the hometown Pennsauken, NJ?",
    "question_th": "มีผู้เล่นกี่คนที่มีบ้านเกิดที่ Pennsauken, NJ?",
    "context": "CREATE TABLE table_11677100_12 (player VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_11677100_12 WHERE hometown = \"Dallas, TX\"",
    "question_en": "Which position did the player from the hometown of Dallas, TX play?",
    "question_th": "นักเตะจากบ้านเกิดเมืองดัลลัส รัฐเท็กซัส เล่นตำแหน่งไหน?",
    "context": "CREATE TABLE table_11677100_12 (position VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_11677100_12 WHERE player = \"Jason Place\"",
    "question_en": "What is the hometown of player Jason Place?",
    "question_th": "บ้านเกิดของผู้เล่น Jason Place คืออะไร?",
    "context": "CREATE TABLE table_11677100_12 (hometown VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_11677100_12 WHERE position = \"Catcher\"",
    "question_en": "What school did the catcher attend?",
    "question_th": "คนจับได้เข้าเรียนที่โรงเรียนอะไร?",
    "context": "CREATE TABLE table_11677100_12 (school VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_11677100_11 WHERE player = \"Jay Bruce\"",
    "question_en": "What is Jay Bruce's hometown?",
    "question_th": "บ้านเกิดของ Jay Bruce คืออะไร?",
    "context": "CREATE TABLE table_11677100_11 (hometown VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_11677100_11 WHERE position = \"Catcher\"",
    "question_en": "What school is he the catcher for?",
    "question_th": "เขาเป็นคนจับโรงเรียนไหน?",
    "context": "CREATE TABLE table_11677100_11 (school VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_11677100_11 WHERE position = \"Catcher\"",
    "question_en": "WHAT HOMETOWN DOES HE PLAY AS THE CATCHER FOR?",
    "question_th": "เขาเล่นเป็นบ้านเกิดอะไรในฐานะผู้จับ?",
    "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_en": "WHAT POSITION DOES HE PLAY FOR AT WEST BROOK SENIOR HIGH SCHOOL?",
    "question_th": "เขาเล่นในตำแหน่งใดที่โรงเรียนมัธยมปลายเวสต์บรูก",
    "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_en": "WHAT TOWN IS WEST BROOK SENIOR HIGH SCHOOL FROM?",
    "question_th": "โรงเรียนมัธยมปลายเวสต์บรูกมาจากเมืองอะไร",
    "context": "CREATE TABLE table_11677100_11 (hometown VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_11677691_1 WHERE hometown = \"Jersey City, New Jersey\"",
    "question_en": "What position did the player from Jersey City, New Jersey play? ",
    "question_th": " นักเตะจากเจอร์ซีย์ ซิตี้ รัฐนิวเจอร์ซีย์ เล่นตำแหน่งอะไร?",
    "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_en": "What offensive line player hailed from Baton Rouge, Louisiana?",
    "question_th": "ผู้เล่นแนวรุกคนไหนที่ได้รับการยกย่องจากแบตันรูช รัฐลุยเซียนา?",
    "context": "CREATE TABLE table_11677691_1 (player VARCHAR, position VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_11677691_1 WHERE player = \"Jeremy Hill\"",
    "question_en": "What is Jeremy Hill's hometown?",
    "question_th": "บ้านเกิดของ Jeremy Hill คืออะไร?",
    "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_en": "How many offensive line players played for a college in Alabama?",
    "question_th": "มีผู้เล่นแนวรุกกี่คนที่เล่นให้กับวิทยาลัยในอลาบามา?",
    "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_en": "How many players attended Hillcrest High School?",
    "question_th": "มีผู้เล่นกี่คนที่เข้าเรียนที่ 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_en": "Where was the hometown for the player that attended Shanley High School?",
    "question_th": "บ้านเกิดของผู้เล่นที่เข้าเรียนที่ 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_en": "Which player went to the college Southern California?",
    "question_th": "ผู้เล่นคนไหนไปเรียนที่วิทยาลัย 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_en": "Which college did the player attend that went to Mission Viejo High School?",
    "question_th": "ผู้เล่นเข้าเรียนที่วิทยาลัยใดและเข้าเรียนที่ 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_en": "How many players hometown was Cincinnati, Ohio?",
    "question_th": "ซินซินนาติ โอไฮโอ เป็นบ้านเกิดของผู้เล่นกี่คน",
    "context": "CREATE TABLE table_11677691_4 (player VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_11677691_4 WHERE hometown = \"Pewaukee, Wisconsin\"",
    "question_en": "Which player's hometown was Pewaukee, Wisconsin?",
    "question_th": "บ้านเกิดของผู้เล่นคนใดคือเมือง Pewaukee รัฐวิสคอนซิน",
    "context": "CREATE TABLE table_11677691_4 (player VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(school) FROM table_11677691_4 WHERE hometown = \"Akron, Ohio\"",
    "question_en": "How many players' hometown was Akron, Ohio?",
    "question_th": "เมืองแอครอน รัฐโอไฮโอ มีบ้านเกิดของผู้เล่นกี่คน",
    "context": "CREATE TABLE table_11677691_4 (school VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_11677691_7 WHERE college = \"Utah\"",
    "question_en": "Which player is from Utah?",
    "question_th": "นักเตะคนไหนมาจากยูทาห์?",
    "context": "CREATE TABLE table_11677691_7 (player VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_11677691_7 WHERE school = \"Saguaro High school\"",
    "question_en": "Which player is from Saguaro High School?",
    "question_th": "ผู้เล่นคนไหนมาจากโรงเรียนมัธยม Saguaro?",
    "context": "CREATE TABLE table_11677691_7 (position VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_11677691_7 WHERE school = \"Joliet Catholic High school\"",
    "question_en": "Which player is from Joliet Catholic HIgh School?",
    "question_th": "ผู้เล่นคนไหนมาจาก 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_en": "Which school did the player then go to Auburn?",
    "question_th": "ผู้เล่นโรงเรียนไหนไปออเบิร์น?",
    "context": "CREATE TABLE table_11677691_7 (school VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_11677691_7 WHERE school = \"Trinity High school\"",
    "question_en": "What is the hometown of trinity high school?",
    "question_th": "บ้านเกิดของโรงเรียนมัธยมทรินิตี้คืออะไร?",
    "context": "CREATE TABLE table_11677691_7 (hometown VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_11677691_8 WHERE hometown = \"Loganville, Georgia\"",
    "question_en": "What position did the kid from loganville, georgia play",
    "question_th": "เด็กจากโลแกนวิลล์ จอร์เจียเล่นตำแหน่งอะไร",
    "context": "CREATE TABLE table_11677691_8 (position VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_11677691_8 WHERE school = \"Longview High school\"",
    "question_en": "Where is longview high school",
    "question_th": "โรงเรียนมัธยมปลายลองวิวอยู่ที่ไหน",
    "context": "CREATE TABLE table_11677691_8 (hometown VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_11677691_8 WHERE player = \"Robert Nkemdiche ‡\"",
    "question_en": "Where did robert nkemdiche ‡ go to college",
    "question_th": "โรเบิร์ต เน็คเคมดิเช่ ‡ เรียนมหาวิทยาลัยที่ไหน",
    "context": "CREATE TABLE table_11677691_8 (college VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_11677691_8 WHERE school = \"Friendship Collegiate Charter school\"",
    "question_en": "Where is friendship collegiate charter school located",
    "question_th": "โรงเรียนมิตรภาพวิทยาลัยเช่าเหมาลำอยู่ที่ไหน",
    "context": "CREATE TABLE table_11677691_8 (hometown VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT interview FROM table_11690135_1 WHERE evening_gown = \"9.78\"",
    "question_en": "Who had an evening gown score of 9.78?",
    "question_th": "ใครได้คะแนนชุดราตรี 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_en": "How many interviews were there for Miss Virginia?",
    "question_th": "มีการสัมภาษณ์มิสเวอร์จิเนียกี่ครั้ง?",
    "context": "CREATE TABLE table_11690135_1 (interview VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(country) FROM table_11690135_1 WHERE swimsuit = \"9.87\"",
    "question_en": "Who had a swimsuit score of 9.87?",
    "question_th": "ใครได้คะแนนชุดว่ายน้ำ 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_en": "Who had evening gown score of 9.82?",
    "question_th": "ใครได้คะแนนชุดราตรี 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_en": "How many ladies scored a 9.89 for the evening gown?",
    "question_th": "ผู้หญิงกี่คนได้คะแนน 9.89 สำหรับชุดราตรี?",
    "context": "CREATE TABLE table_11690135_1 (swimsuit VARCHAR, evening_gown VARCHAR)"
  },
  {
    "answer": "SELECT interview FROM table_11690135_1 WHERE swimsuit = \"9.72\"",
    "question_en": "Who scored a 9.72 in the swimsuit?",
    "question_th": "ใครได้คะแนน 9.72 ในชุดว่ายน้ำ?",
    "context": "CREATE TABLE table_11690135_1 (interview VARCHAR, swimsuit VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_11695215_1 WHERE written_by = \"John A. Norris\"",
    "question_en": "What episode was writted by John A. Norris?",
    "question_th": "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_en": "How many episodes did David Jackson write and direct?",
    "question_th": "David Jackson เขียนบทและกำกับกี่ตอน?",
    "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_en": "What player attended Loyola Marymount?",
    "question_th": "ผู้เล่นคนไหนที่เข้าร่วม 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_en": "How may times did a player that attended Iowa state appear on the all time roster?",
    "question_th": "ผู้เล่นที่เข้าร่วมรัฐไอโอวาปรากฏในบัญชีรายชื่อตลอดกาลกี่ครั้ง?",
    "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_en": "What height was the player that played for the Rockets between 1992-93?",
    "question_th": "ผู้เล่นที่เล่นให้กับ Rockets ระหว่างปี 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_en": "How many times did a center that attended Oral Roberts play for the Rockets?",
    "question_th": "เซ็นเตอร์ที่เข้าร่วม Oral Roberts เล่นให้กับ 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_en": "What was the player name who came from Australia?",
    "question_th": "ผู้เล่นที่มาจากออสเตรเลียชื่ออะไร?",
    "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_en": "What is the height in ft for the rockets from 1973-78?",
    "question_th": "จรวดในปี 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_en": "Which players were number 3?",
    "question_th": "นักเตะคนไหนคือหมายเลข 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_en": "What is the height in ft for number 42 for the rockets in 1993-94?",
    "question_th": "จรวดหมายเลข 42 ในปี 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_en": "What are the players that attented long beach state?",
    "question_th": "ผู้เล่นที่ให้ความสนใจลองบีชสเตทคืออะไร?",
    "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_en": "what is the total amount of players for the rockets in 1998 only?",
    "question_th": "จำนวนผู้เล่นจรวดในปี 1998 เท่านั้นคือเท่าไร?",
    "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_en": "What is the area (square km) where the arrondissement is millau?",
    "question_th": "พื้นที่ (ตารางกิโลเมตร) ซึ่งเขตคือ 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_en": "How many communes have the chief town as dijon?",
    "question_th": "มีกี่ชุมชนที่มีเมืองหลักเป็นดิฌง?",
    "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_en": "How many communes when the arrondissement is cosne-cours-sur-loire?",
    "question_th": "มีกี่คอมมิวนิสต์เมื่อเขตการปกครองเป็น 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_en": " what's the engine where builder is gloucester rcw and withdrawn is 1959",
    "question_th": " เครื่องยนต์คืออะไรที่ผู้สร้างคือกลอสเตอร์ rcw และถอนออกคือปี 1959",
    "context": "CREATE TABLE table_1181375_1 (engine VARCHAR, builder VARCHAR, withdrawn VARCHAR)"
  },
  {
    "answer": "SELECT engine FROM table_1181375_1 WHERE number_range = \"8–9, 13–16\"",
    "question_en": " what's the engine where number range is 8–9, 13–16",
    "question_th": " เครื่องยนต์อะไรที่มีช่วงหมายเลข 8–9, 13–16",
    "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_en": " what's the introduced where notes is 9 withdrawn in 1946 after fire",
    "question_th": " มีอะไรแนะนำบ้างที่ธนบัตร 9 ถูกถอนออกในปี 1946 หลังจากเกิดเพลิงไหม้",
    "context": "CREATE TABLE table_1181375_1 (introduced VARCHAR, notes VARCHAR)"
  },
  {
    "answer": "SELECT builder FROM table_1181375_1 WHERE withdrawn = \"1954–1958\"",
    "question_en": " what's the builder where withdrawn is 1954–1958",
    "question_th": " ผู้สร้างอะไรถอนออกไปคือปี 1954–1958",
    "context": "CREATE TABLE table_1181375_1 (builder VARCHAR, withdrawn VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_1181375_1 WHERE number_range = \"17\"",
    "question_en": " what's the notes where number range is 17",
    "question_th": " โน้ตที่มีช่วงตัวเลขคือ 17 คืออะไร",
    "context": "CREATE TABLE table_1181375_1 (notes VARCHAR, number_range VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_1181375_1 WHERE withdrawn = \"1956–57\"",
    "question_en": " what's the notes where withdrawn is 1956–57",
    "question_th": " บันทึกที่ถอนออกคือปี 1956–57 คืออะไร",
    "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_en": "Who was the lyricist for gopal krishna and co singer of solo?",
    "question_th": "ใครคือผู้แต่งบทเพลงของ gopal krishna และนักร้องร่วมของโซโล?",
    "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_en": "What was the number of music directors where the suresh wadkar co singer of bhayanak?",
    "question_th": "ผู้กำกับเพลงของสุรเชษฐ์ วาดการ์ นักร้องร่วมของภายานักมีกี่คน?",
    "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_en": "how many times is the co-singer suresh wadkar and the film name is tera dukh mera dukh?",
    "question_th": "นักร้องร่วมคือ Suresh wadkar และภาพยนตร์เรื่องนี้ชื่อ 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_en": "what are the film names with the co-singer vinod rathod?",
    "question_th": "วินอด ราธอด นักร้องร่วมชื่อภาพยนตร์ว่าอะไร?",
    "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_en": "what is the song name for the film name ganga kare insaaf?",
    "question_th": "ชื่อเพลงของภาพยนตร์เรื่อง 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_en": "what are the song names for the film kaal bhairav?",
    "question_th": "ชื่อเพลงของภาพยนตร์เรื่อง 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_en": "What was the 1845 disposal for sussex?",
    "question_th": "การกำจัดซัสเซ็กซ์ในปี 1845 คืออะไร?",
    "context": "CREATE TABLE table_1184344_1 (name VARCHAR)"
  },
  {
    "answer": "SELECT MAX(l) & cr_no FROM table_1184344_1 WHERE name = \"Archimedes\"",
    "question_en": "What was the maximum l&cr number for archimedes?",
    "question_th": "ค่า l&cr สูงสุดของอาร์คิมิดีสคือเท่าใด",
    "context": "CREATE TABLE table_1184344_1 (cr_no VARCHAR, l INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_1184344_1 WHERE name = \"Sussex\"",
    "question_en": "What was the type of sussex?",
    "question_th": "ซัสเซ็กซ์ประเภทใด?",
    "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_en": "Where did Test Mission: War Heads and Missile Payload launch when there was a partial failure?",
    "question_th": "ภารกิจทดสอบ: War Heads และ Missile Payload เปิดตัวที่ไหนเมื่อมีความล้มเหลวบางส่วน?",
    "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_en": "Which missions were scheduled to launch on November 16, 2006?",
    "question_th": "ภารกิจใดมีกำหนดเปิดตัวในวันที่ 16 พฤศจิกายน พ.ศ. 2549",
    "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_en": "Which authority has a rocket launch called rehbar-ii?",
    "question_th": "หน่วยงานใดมีการปล่อยจรวดที่เรียกว่า 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_en": "Which authority has a rocket launch called rehnuma-8?",
    "question_th": "หน่วยงานใดมีการปล่อยจรวดที่เรียกว่า 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_en": "Which authority has a rocket launch called shahpar-2?",
    "question_th": "หน่วยงานใดมีการปล่อยจรวดที่เรียกว่า ชาห์ปาร์-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_en": "Which authority has a rocket launch called rehbar-5?",
    "question_th": "หน่วยงานใดมีการปล่อยจรวดที่เรียกว่า rehbar-5",
    "context": "CREATE TABLE table_11869952_1 (derivatives VARCHAR, rocket_launch VARCHAR)"
  },
  {
    "answer": "SELECT denomination FROM table_11900773_4 WHERE theme = \"Opera, Léopold Simoneau and Pierrette Alarie\"",
    "question_en": "What denominations are the stamps with themes opera, léopold simoneau and pierrette alarie?",
    "question_th": "แสตมป์ที่มีธีมคือโอเปร่า, เลโอโปลด์ ซิโมโน และปิแอร์เรตต์ อลารี มีราคาอะไรบ้าง",
    "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_en": "What kind of paper were the stamps with the theme duck decoys, barrow's golden eye printed on?",
    "question_th": "แสตมป์ที่มีธีมล่อเป็ด พิมพ์ตาสีทองของรถเข็นเป็นกระดาษชนิดใด",
    "context": "CREATE TABLE table_11900773_4 (paper_type VARCHAR, theme VARCHAR)"
  },
  {
    "answer": "SELECT theme FROM table_11900773_6 WHERE design = \"Isabelle Toussaint\"",
    "question_en": "List all the themes designed by Isabelle Toussaint.",
    "question_th": "แสดงรายการธีมทั้งหมดที่ออกแบบโดย 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_en": "How many paper types did Ian Drolet design stamps on?",
    "question_th": "Ian Drolet ออกแบบแสตมป์บนกระดาษกี่ประเภท",
    "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_en": "Who is the designer of the Christmas: Winter Fun (USA) stamp?",
    "question_th": "ใครคือผู้ออกแบบแสตมป์ Christmas: Winter Fun (USA)",
    "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_en": "How many stamps were designed for the theme of XII Summit de la Francophonie?",
    "question_th": "มีแสตมป์กี่ดวงที่ออกแบบมาสำหรับธีม 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_en": "Where is the first day cover cancellation for the 3 April 2008 IIHF World Championships, Quebec City stamp?",
    "question_th": "การยกเลิกความคุ้มครองวันแรกสำหรับวันที่ 3 เมษายน 2551 IIHF World Championships, Quebec City อยู่ที่ไหน",
    "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_en": "How many premier episodes were there with the title survivor's law ii?",
    "question_th": "มีตอนพรีเมียร์กี่ตอนที่มีชื่อเรื่อง 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_en": "What is the Chinese name that has a 31 average?",
    "question_th": "ชื่อภาษาจีนที่มีค่าเฉลี่ย 31 คืออะไร?",
    "context": "CREATE TABLE table_11926114_1 (chinese_title VARCHAR, average VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_11926114_1 WHERE finale = 37",
    "question_en": "What is the rank of finale 37?",
    "question_th": "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_en": "what is the Chinese name for Forensic heroes ii?",
    "question_th": "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_en": "What numbr on the list had a peak rating of 42?",
    "question_th": "ตัวเลขใดในรายการที่มีเรตติ้งสูงสุดที่ 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_en": " what's the electorate where election date is 16 cannot handle non-empty timestamp argument!",
    "question_th": " เขตเลือกตั้งใดที่วันที่เลือกตั้งเป็น 16 ไม่สามารถจัดการอาร์กิวเมนต์การประทับเวลาที่ไม่ว่างเปล่าได้!",
    "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_en": " what's the province where member is frederick merriman category:articles with hcards",
    "question_th": " จังหวัดที่สมาชิกคือเฟรดเดอริก เมอร์ริแมน หมวดหมู่:บทความที่มี hcards",
    "context": "CREATE TABLE table_1193568_1 (province VARCHAR, member VARCHAR)"
  },
  {
    "answer": "SELECT election_date FROM table_1193568_1 WHERE electorate = \"Omata\"",
    "question_en": " what's the election date where electorate is omata",
    "question_th": " วันเลือกตั้งที่ผู้มีสิทธิเลือกตั้งเป็นโอมาตะคือวันใด",
    "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_en": " what's the election date where member is william richmond category:articles with hcards",
    "question_th": " วันเลือกตั้งคือวันที่เท่าไร โดยสมาชิกคือวิลเลียม ริชมอนด์ หมวดหมู่:บทความที่มี 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_en": " what's the province where member is dingley brittin category:articles with hcards",
    "question_th": "จังหวัดที่สมาชิกคือ dingley brittin หมวดหมู่:บทความที่มี hcards",
    "context": "CREATE TABLE table_1193568_1 (province VARCHAR, member VARCHAR)"
  },
  {
    "answer": "SELECT election_date FROM table_1193568_1 WHERE electorate = \"Christchurch Country\"",
    "question_en": " what's the election date where electorate is christchurch country",
    "question_th": " วันเลือกตั้งที่ผู้มีสิทธิเลือกตั้งคือประเทศไครสต์เชิร์ช",
    "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_en": "What is the county for senator C. Anthony Muse?",
    "question_th": "มณฑลสำหรับวุฒิสมาชิก 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_en": "Who is the senator for district 24?",
    "question_th": "ส.ส.เขต 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_en": "How many entries are shown for first elected for district 41?",
    "question_th": "มีการแสดงกี่รายการสำหรับผู้ได้รับเลือกครั้งแรกสำหรับเขต 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_en": "What is the total amount of allied-unrelated where the component is human capital?",
    "question_th": "จำนวนพันธมิตรที่ไม่เกี่ยวข้องกันโดยที่องค์ประกอบเป็นทุนมนุษย์เป็นเท่าใด",
    "context": "CREATE TABLE table_11944282_1 (allied_unrelated VARCHAR, component VARCHAR)"
  },
  {
    "answer": "SELECT integrated FROM table_11944282_1 WHERE allied_related = \"Many\"",
    "question_en": "How many integrated allied-related are there?",
    "question_th": "มีพันธมิตรที่เกี่ยวข้องกับบูรณาการกี่แห่ง?",
    "context": "CREATE TABLE table_11944282_1 (integrated VARCHAR, allied_related VARCHAR)"
  },
  {
    "answer": "SELECT integrated FROM table_11944282_1 WHERE component = \"Customers\"",
    "question_en": "What is the name of the integrated where the component are customers?",
    "question_th": "ชื่อของการรวมโดยที่ส่วนประกอบเป็นลูกค้าคืออะไร?",
    "context": "CREATE TABLE table_11944282_1 (integrated VARCHAR, component VARCHAR)"
  },
  {
    "answer": "SELECT holding FROM table_11944282_1 WHERE allied_unrelated = \"Many\"",
    "question_en": "what is the integrated in which the holding allied-unrelated is many?",
    "question_th": "อะไรคือบูรณาการซึ่งการถือครองพันธมิตร-ไม่เกี่ยวข้องมีมากมาย?",
    "context": "CREATE TABLE table_11944282_1 (holding VARCHAR, allied_unrelated VARCHAR)"
  },
  {
    "answer": "SELECT component FROM table_11944282_1 WHERE allied_related = \"Shared\"",
    "question_en": "What is the name of the integrated where allied-related is shared?",
    "question_th": "ชื่อของการบูรณาการที่มีการแบ่งปันที่เกี่ยวข้องกับพันธมิตรคืออะไร?",
    "context": "CREATE TABLE table_11944282_1 (component VARCHAR, allied_related VARCHAR)"
  },
  {
    "answer": "SELECT written_by FROM table_11951237_1 WHERE series__number = 20",
    "question_en": "Who were the writers for series number 20?",
    "question_th": "ใครเป็นผู้เขียนซีรี่ส์หมายเลข 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_en": "What is the production code for the show that aired on October 27, 1994?",
    "question_th": "รหัสการผลิตรายการที่ออกอากาศเมื่อวันที่ 27 ตุลาคม 2537 คืออะไร?",
    "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_en": "Who was the director of the Series 1 episode?",
    "question_th": "ใครเป็นผู้กำกับซีรีส์ 1 ตอน?",
    "context": "CREATE TABLE table_11951237_1 (directed_by VARCHAR, series__number VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_11959669_4 WHERE date = \"December 5\"",
    "question_en": "Which team played on December 5?",
    "question_th": "ทีมไหนเล่นวันที่ 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_en": "What was the location attendance when High points was by Pierce (22)?",
    "question_th": "การเข้าร่วมสถานที่เป็นอย่างไรเมื่อเพียร์ซ (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_en": "What date did the Bulls play the LA Lakers?",
    "question_th": "Bulls เล่นกับ LA Lakers วันที่เท่าไหร่?",
    "context": "CREATE TABLE table_11960610_7 (date VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_11960610_7 WHERE date = \"December 7\"",
    "question_en": "What team were the Bulls hosted by on December 7?",
    "question_th": "บูลส์เป็นเจ้าภาพทีมใดในวันที่ 7 ธันวาคม?",
    "context": "CREATE TABLE table_11960610_7 (team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_11964154_2 WHERE game = 4",
    "question_en": "Who had the highest assists in game 4?",
    "question_th": "ใครมีแอสซิสต์สูงสุดในเกมที่ 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_en": "How many games was Damien Wilkins (27) the high scorer?",
    "question_th": "เดเมียน วิลกินส์ (27) เป็นผู้ทำประตูสูงสุดกี่เกม?",
    "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_en": "What is the name when born is december 30, 1957 detroit, mi?",
    "question_th": "เกิดวันที่ 30 ธันวาคม 2500 ดีทรอยต์ ไมล์ชื่ออะไร",
    "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_en": "What is the weight(lbs) when born is april 6, 1954 detroit, mi?",
    "question_th": "เกิดวันที่ 6 เมษายน 2497 ดีทรอยต์ ไมล์ (ไมล์) น้ำหนักเท่าไหร่ (ปอนด์)",
    "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_en": "What is the name when the position is de and college is ohio state?",
    "question_th": "ตำแหน่งคือ de และวิทยาลัยคือ 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_en": "What is under drafted when pro team is arizona cardinals?",
    "question_th": "สิ่งที่อยู่ภายใต้การร่างเมื่อทีมโปรคืออริโซนาคาร์ดินัล?",
    "context": "CREATE TABLE table_1198175_1 (drafted VARCHAR, pro_team VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_1198175_1 WHERE drafted = \"1974,R11,P11\"",
    "question_en": "What is the position when drafted is 1974,r11,p11?",
    "question_th": "ตำแหน่งเมื่อร่างคือ 1974,r11,p11 คืออะไร?",
    "context": "CREATE TABLE table_1198175_1 (position VARCHAR, drafted VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_12032893_1 WHERE weight = 170",
    "question_en": "In which year was the Weight 170?",
    "question_th": "น้ำหนัก 170 คือปีไหน?",
    "context": "CREATE TABLE table_12032893_1 (year VARCHAR, weight VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(_number) FROM table_12032893_1 WHERE name = \"Ron Baxter\"",
    "question_en": "What number (#) is associated with the Name Ron Baxter?",
    "question_th": "หมายเลข (#) ใดที่เกี่ยวข้องกับชื่อ Ron Baxter",
    "context": "CREATE TABLE table_12032893_1 (_number VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT _number FROM table_12032893_1 WHERE high_school = \"Crockett\"",
    "question_en": "Crockett High School had which number(#)?",
    "question_th": "Crockett High School มีหมายเลขใด (#)",
    "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_en": "Which home town was the high school Catholic University located in?",
    "question_th": "มหาวิทยาลัยคาทอลิกโรงเรียนมัธยมปลายตั้งอยู่บ้านเกิดเมืองใด",
    "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_en": "How many years have the home town of Baton Rouge, LA?",
    "question_th": "บ้านเกิดของ 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_en": "What height was the forward position at Crockett High School?",
    "question_th": "ตำแหน่งข้างหน้าของ 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_en": "What are the commissioned for scotts, greenock and chieftain?",
    "question_th": "อะไรที่ได้รับมอบหมายให้สก็อตต์ กรีน็อค และหัวหน้าเผ่า?",
    "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_en": "What is the builder launched 30 october 1944?",
    "question_th": "ผู้สร้างเปิดตัวอะไรเมื่อวันที่ 30 ตุลาคม พ.ศ. 2487?",
    "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_en": "what is the minimum voted no where percent no is 56.6",
    "question_th": "โหวตขั้นต่ำคือเท่าใด โดยที่เปอร์เซ็นต์ไม่คือ 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_en": " what's the percent yes where voted yes is 2410119",
    "question_th": " ใช่กี่เปอร์เซ็นต์ โดยที่โหวตว่าใช่คือ 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_en": " what's the jurisdiction where percent yes is 43.4",
    "question_th": " เขตอำนาจศาลอยู่ที่ใด โดยเปอร์เซ็นต์ใช่คือ 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_en": "what is the minimum voted yes where percent no is 68.2",
    "question_th": "ใช่ โหวตขั้นต่ำคือเท่าใด โดยที่เปอร์เซ็นต์ไม่คือ 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_en": " what's the jurisdiction where voted no is 322971",
    "question_th": " เขตอำนาจศาลที่โหวตไม่คือ 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_en": " what's the date of completion where success is yes",
    "question_th": " วันที่เสร็จสิ้นคือวันที่ใดที่ความสำเร็จคือใช่",
    "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_en": " what's the deadline for completion where description is iphone recall within the first 3 months of release",
    "question_th": " กำหนดเส้นตายในการดำเนินการให้แล้วเสร็จคือเมื่อใด โดยที่คำอธิบายจะเรียกคืน iPhone ภายใน 3 เดือนแรกของการเปิดตัว",
    "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_en": " what's the success where date of completion is september 28, 2007",
    "question_th": " ความสำเร็จคืออะไร โดยกำหนดแล้วเสร็จคือวันที่ 28 กันยายน 2550",
    "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_en": " what's the date of completion where deadline for completion is september 30, 2007",
    "question_th": " วันที่สร้างเสร็จคือวันที่ 30 กันยายน พ.ศ. 2550",
    "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_en": "what is the total number of deadline for completion where description is facebook becomes a publicly traded company",
    "question_th": "จำนวนกำหนดเวลาทั้งหมดที่ต้องทำให้เสร็จโดยที่คำอธิบายคือ facebook กลายเป็นบริษัทที่มีการซื้อขายในตลาดหลักทรัพย์",
    "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_en": " what's the success where deadline for completion is october 7, 2007",
    "question_th": " ความสำเร็จคืออะไร โดยกำหนดเส้นตายให้แล้วเสร็จคือวันที่ 7 ตุลาคม 2550",
    "context": "CREATE TABLE table_12078626_1 (success VARCHAR, deadline_for_completion VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_12077540_1",
    "question_en": "The earliest year is 1996.",
    "question_th": "ปีแรกสุดคือ 1996",
    "context": "CREATE TABLE table_12077540_1 (year INTEGER)"
  },
  {
    "answer": "SELECT import FROM table_12077540_1 WHERE product = \"Plywood\"",
    "question_en": "There are 5 imports of plywood.",
    "question_th": "ไม้อัดนำเข้ามี 5 รายการ",
    "context": "CREATE TABLE table_12077540_1 (import VARCHAR, product VARCHAR)"
  },
  {
    "answer": "SELECT interview FROM table_12094300_1 WHERE preliminaries = \"8.425\"",
    "question_en": "What is the score for interview when the preliminaries score is 8.425?",
    "question_th": "คะแนนสัมภาษณ์เมื่อคะแนนเบื้องต้น 8.425 ได้เท่าไหร่?",
    "context": "CREATE TABLE table_12094300_1 (interview VARCHAR, preliminaries VARCHAR)"
  },
  {
    "answer": "SELECT interview FROM table_12094300_1 WHERE preliminaries = \"8.400\"",
    "question_en": "What is the interview score when the preliminaries score is 8.400?",
    "question_th": "คะแนนสัมภาษณ์เมื่อคะแนนเบื้องต้น 8.400 เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_12094300_1 (interview VARCHAR, preliminaries VARCHAR)"
  },
  {
    "answer": "SELECT swimsuit FROM table_12094300_1 WHERE average = \"8.791\"",
    "question_en": "What is the score for swimsuit when the average is 8.791?",
    "question_th": "คะแนนชุดว่ายน้ำเมื่อเฉลี่ยอยู่ที่ 8.791 คืออะไร?",
    "context": "CREATE TABLE table_12094300_1 (swimsuit VARCHAR, average VARCHAR)"
  },
  {
    "answer": "SELECT interview FROM table_12094300_1 WHERE state = \"New York\"",
    "question_en": "What is the score for the interview for the state of New York?",
    "question_th": "คะแนนในการสัมภาษณ์รัฐนิวยอร์กเป็นเท่าใด",
    "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_en": "How many times did district of Columbia receive a score for evening gown?",
    "question_th": "District of Columbia ได้คะแนนชุดราตรีกี่ครั้ง?",
    "context": "CREATE TABLE table_12094300_1 (evening_gown VARCHAR, state VARCHAR)"
  },
  {
    "answer": "SELECT average FROM table_12094300_1 WHERE swimsuit = \"8.503\"",
    "question_en": "What is the average score when the swimsuit score is 8.503?",
    "question_th": "คะแนนชุดว่ายน้ำเฉลี่ยอยู่ที่ 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_en": "What is the number of gt1 winning team for rnd 5?",
    "question_th": "จำนวนทีมที่ชนะ gt1 สำหรับ 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_en": "What is the rnd for gt1 winning team for doc bundy andy wallace?",
    "question_th": "รางวัลสำหรับทีมที่ชนะ gt1 สำหรับ 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_en": "Name the gt1 winning team for #54 bell motorsports",
    "question_th": "ตั้งชื่อทีมที่ชนะ gt1 สำหรับ #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_en": "What is the title of the episode that was watched by 8.92 million viewers?",
    "question_th": "ตอนที่มีผู้ชม 8.92 ล้านคนชื่ออะไร",
    "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_en": "How many episodes had 9.90 million viewers?",
    "question_th": "มีกี่ตอนมีผู้ชม 9.90 ล้านคน?",
    "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_en": "What is the series number of the episode watched by 10.89 million viewers?",
    "question_th": "ซีรีส์ที่มีผู้ชม 10.89 ล้านคนรับชมตอนนี้คือหมายเลขใด",
    "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_en": "What is the name of the episode written by Sheila Lawrence & Henry Alonso Myers?",
    "question_th": "ตอนที่เขียนโดย 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_en": "What is the pick number of the defensive back?",
    "question_th": "เบอร์เลือกกองหลังคือเบอร์อะไร?",
    "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_en": "What is the position for the pick number 17?",
    "question_th": "ตำแหน่งผู้เลือกหมายเลข 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_en": "What is the college of the afl team of buffalo bills?",
    "question_th": "ทีมแอฟบัฟฟาโลบิล วิทยาลัยอะไรคะ?",
    "context": "CREATE TABLE table_12165135_1 (college VARCHAR, afl_team VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_12165135_1 WHERE player = \"John Charles\"",
    "question_en": "What is the position of john charles?",
    "question_th": "จอห์น ชาร์ลส์ ดำรงตำแหน่งอะไร?",
    "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_en": "What is the largest pick number of the new york jets?",
    "question_th": "หมายเลขเลือกที่ใหญ่ที่สุดของเครื่องบินไอพ่นนิวยอร์กคืออะไร?",
    "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_en": "What is the afl team of the offensive guard?",
    "question_th": "ทีมรุกของแอฟคือทีมอะไร?",
    "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_en": "What was the women's singles were men's doubles were steen fladberg jens peter nierhoff?",
    "question_th": "ประเภทหญิงเดี่ยวคืออะไร ชายคู่คือ สตีน แฟลดเบิร์ก เจนส์ ปีเตอร์ เนียร์ฮอฟฟ์?",
    "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_en": "What are the mixed doubles where the mens singles is kim brodersen?",
    "question_th": "ประเภทคู่ผสมที่ 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_en": " what's the first appearance where character(s) is iron man",
    "question_th": " การปรากฏตัวครั้งแรกของตัวละครคือไอรอนแมนคืออะไร",
    "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_en": "what is the total number of publisher where cover date is may 1939",
    "question_th": "จำนวนผู้จัดพิมพ์ทั้งหมดซึ่งวันที่ปกคือเดือนพฤษภาคม 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_en": "what is the total number of publisher where first appearance is daredevil #1",
    "question_th": "จำนวนผู้จัดพิมพ์ทั้งหมดที่ปรากฏตัวครั้งแรกคือ 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_en": " what's the cover date where character(s) is sandman (wesley dodds)",
    "question_th": " วันที่ปกคือวันที่เท่าไหร่ที่ตัวละครคือแซนด์แมน (เวสลีย์ ด็อดส์)",
    "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_en": " what's the cover date where character(s) is x-men ; magneto",
    "question_th": " วันที่ปกคือวันที่เท่าไรที่ตัวละครคือ x-men ; แม๊กนีโต",
    "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_en": " what's the estimated value where cover date is august 1962",
    "question_th": " ราคาประเมินวันที่คุ้มครองคือเดือนสิงหาคม 2505 เป็นเท่าใด",
    "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_en": "What theme placed as #3 in the finale?",
    "question_th": "ธีมใดที่อยู่ในอันดับที่ 3 ในตอนจบ?",
    "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_en": "What is the theme for the episode selection process?",
    "question_th": "ธีมของกระบวนการคัดเลือกตอนคืออะไร?",
    "context": "CREATE TABLE table_12175755_1 (theme VARCHAR, episode VARCHAR)"
  },
  {
    "answer": "SELECT order__number FROM table_12175755_1 WHERE original_artist = \"Luis Fonsi\"",
    "question_en": "What is the order number for songs by the original artist Luis Fonsi?",
    "question_th": "หมายเลขลำดับการสั่งซื้อเพลงของศิลปินต้นฉบับ 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_en": "What is the song choice when the theme is not aired?",
    "question_th": "อะไรคือตัวเลือกเพลงเมื่อไม่ได้ออกอากาศ?",
    "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_en": "What years did Markose Bristow Madhumita Bisht win the mens singles and/or the mixed doubles?",
    "question_th": "Markose Bristow Madhumita Bisht ชนะประเภทชายเดี่ยวและ/หรือประเภทคู่ผสมในปีใด",
    "context": "CREATE TABLE table_12194021_1 (mens_singles VARCHAR, mixed_doubles VARCHAR)"
  },
  {
    "answer": "SELECT womens_doubles FROM table_12194021_1 WHERE season = 2002",
    "question_en": "Who won the womens doubles in 2002?",
    "question_th": "ใครชนะประเภทคู่หญิงในปี 2545?",
    "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_en": "How many total titles did Rupesh Kumar Sanave Thomas and Jwala Gutta Ashwini Ponnappa win total?",
    "question_th": "Rupesh Kumar Sanave Thomas และ Jwala Gutta Ashwini Ponnappa คว้าแชมป์ทั้งหมดกี่รายการ?",
    "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_en": "In womens doubles and mens singles, what years did Arvind Bhat or Valiyaveetil Diju Jwala Gutta win?",
    "question_th": "ในประเภทหญิงคู่และชายเดี่ยว Arvind Bhat หรือ Valiyaveetil Diju Jwala Gutta ชนะในปีใด",
    "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_en": "How many titles did Trupti Murgunde claim?",
    "question_th": "Trupti Murgunde คว้าแชมป์ได้กี่รายการ?",
    "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_en": "What is the pennant for 4 may 1943?",
    "question_th": "ธงของวันที่ 4 พฤษภาคม 2486 คืออะไร?",
    "context": "CREATE TABLE table_1220125_4 (pennant VARCHAR, laid_down VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(fate) FROM table_1220125_4 WHERE pennant = \"U33\"",
    "question_en": "What is the total number of fate for pennant of u33?",
    "question_th": "ชายธง u33 มีจำนวนชะตาทั้งหมดเท่าไร?",
    "context": "CREATE TABLE table_1220125_4 (fate VARCHAR, pennant VARCHAR)"
  },
  {
    "answer": "SELECT fate FROM table_1220125_4 WHERE commissioned = \"11 April 1944\"",
    "question_en": "What is the fate for 11 april 1944?",
    "question_th": "ชะตากรรมของวันที่ 11 เมษายน 2487 คืออะไร?",
    "context": "CREATE TABLE table_1220125_4 (fate VARCHAR, commissioned VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_1220125_4 WHERE launched = \"30 September 1943\"",
    "question_en": "What is the name for 30 september 1943?",
    "question_th": "30 กันยายน 2486 ชื่ออะไร?",
    "context": "CREATE TABLE table_1220125_4 (name VARCHAR, launched VARCHAR)"
  },
  {
    "answer": "SELECT commissioned FROM table_1220125_4 WHERE laid_down = \"4 May 1943\"",
    "question_en": "What is the comissioned for 4 may 1943?",
    "question_th": "รับหน้าที่อะไรในวันที่ 4 พฤษภาคม พ.ศ. 2486?",
    "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_en": "Who was the writters for the episode directed by Richard L. Bare, no. 8 in season?",
    "question_th": "ใครเป็นผู้เขียนบทสำหรับตอนที่กำกับโดย Richard L. Bare หมายเลข 1 8 ในฤดูกาล?",
    "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_en": "What is the location of the tournament that the share of winning is 7000?",
    "question_th": "สถานที่ใดของทัวร์นาเมนท์ที่มีส่วนแบ่งการชนะคือ 7000?",
    "context": "CREATE TABLE table_12243817_1 (tournament_location VARCHAR, winners_share__$_ VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_12243817_1 WHERE country = \"Japan\"",
    "question_en": "What year is Japan the country?",
    "question_th": "ญี่ปุ่นเป็นประเทศปีไหน?",
    "context": "CREATE TABLE table_12243817_1 (year VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_12243817_1 WHERE champion = \"Dewi Claire Schreefel\"",
    "question_en": "What is the year that Dewi Claire Schreefel is the champion?",
    "question_th": "เดวี แคลร์ ชรีเฟล เป็นแชมป์ปีไหน?",
    "context": "CREATE TABLE table_12243817_1 (year VARCHAR, champion VARCHAR)"
  },
  {
    "answer": "SELECT MIN(winners_share__) AS $_ FROM table_12243817_1 WHERE year = \"2004\"",
    "question_en": "What is the winners Share ($) in the year 2004?",
    "question_th": "ผู้ชนะ Share ($) ในปี 2547 คืออะไร?",
    "context": "CREATE TABLE table_12243817_1 (winners_share__ INTEGER, year VARCHAR)"
  },
  {
    "answer": "SELECT tournament_location FROM table_12243817_1 WHERE champion = \"Vicky Hurst\"",
    "question_en": "What is the tournament location when Vicky Hurst in the champion?",
    "question_th": "สถานที่จัดทัวร์นาเมนต์เมื่อ Vicky Hurst เป็นแชมป์คืออะไร?",
    "context": "CREATE TABLE table_12243817_1 (tournament_location VARCHAR, champion VARCHAR)"
  },
  {
    "answer": "SELECT intergiro_classification FROM table_12261926_2 WHERE stage = 21",
    "question_en": "What is the intergiro classification of stage 21?",
    "question_th": "การจำแนกประเภท intergiro ของระยะที่ 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_en": "What is the trofeo fast team on stage 8?",
    "question_th": "ทีม Trofeo Fast บนเวที 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_en": "What is the general classification with the winner being evgeni berzin?",
    "question_th": "การจัดประเภททั่วไปโดยผู้ชนะคือ 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_en": "What is the intergiro classification of alexander gontchenkov?",
    "question_th": "การจำแนกประเภท intergiro ของ 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_en": "what is total number of points where the stage is 17?",
    "question_th": "คะแนนรวมที่ระดับ 17 เป็นเท่าใด",
    "context": "CREATE TABLE table_12262008_2 (points_classification VARCHAR, stage VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_12271718_1 WHERE channel = \"44.1\"",
    "question_en": "What is the status of channel 44.1?",
    "question_th": "สถานะของช่อง 44.1 เป็นอย่างไร?",
    "context": "CREATE TABLE table_12271718_1 (status VARCHAR, channel VARCHAR)"
  },
  {
    "answer": "SELECT station FROM table_12271718_1 WHERE network_affiliation = \"Univision\"",
    "question_en": "What station has a univision network affiliation?",
    "question_th": "สถานีใดมีเครือข่ายมหาวิทยาลัยในเครือ?",
    "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_en": "How many season did sportfreunde siegen win best supported club?",
    "question_th": "sportfreunde siegen ชนะสโมสรที่มีการสนับสนุนดีที่สุดกี่ฤดูกาล?",
    "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_en": "what are all the Canadian air dates where the u.s. air date is may 1, 2009",
    "question_th": "วันที่ออกอากาศของแคนาดาคือวันที่ใด โดยวันที่ออกอากาศของสหรัฐอเมริกาคือวันที่ 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_en": "What is the maximum season # with a u.s. air date is may 1, 2009",
    "question_th": "ซีซั่นสูงสุดคือเท่าไหร่ # ที่มีวันออกอากาศในอเมริกาคือ 1 พฤษภาคม 2552",
    "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_en": "What is the total number of title with a u.s. air date of April 17, 2009",
    "question_th": "จำนวนเรื่องทั้งหมดที่ออกอากาศในสหรัฐฯ วันที่ 17 เมษายน พ.ศ. 2552 คือเท่าใด",
    "context": "CREATE TABLE table_12294557_3 (title VARCHAR, us_airdate VARCHAR)"
  },
  {
    "answer": "SELECT MIN(production_code) FROM table_12294557_3",
    "question_en": "what is the minimum production code",
    "question_th": "รหัสการผลิตขั้นต่ำคืออะไร",
    "context": "CREATE TABLE table_12294557_3 (production_code INTEGER)"
  },
  {
    "answer": "SELECT us_airdate FROM table_12294557_3 WHERE canadian_airdate = \"May 4, 2009\"",
    "question_en": "what are the u.s. air dates with a Canadian air date of may 4, 2009",
    "question_th": "us ออกอากาศวันไหน และแคนาดาออกอากาศวันที่ 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_en": "Which is the charity that the background of the celebrity is heavyweight champion?",
    "question_th": "องค์กรการกุศลใดที่มีพื้นหลังของคนดังเป็นแชมป์เฮฟวี่เวท?",
    "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_en": "What is the original team of the celebrity who had the result 08 fired in week 10 (2008-03-06)",
    "question_th": "ทีมเดิมของคนดังที่มีผล 08 ไล่ออกในสัปดาห์ที่ 10 (2551-03-06) คืออะไร",
    "context": "CREATE TABLE table_12286195_1 (original_team VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT celebrity FROM table_12286195_1 WHERE raised = \"03\"",
    "question_en": "Which celebrity was raised 03?",
    "question_th": "คนดังคนไหนที่ถูกเลี้ยงดูมา 03?",
    "context": "CREATE TABLE table_12286195_1 (celebrity VARCHAR, raised VARCHAR)"
  },
  {
    "answer": "SELECT charity FROM table_12286195_1 WHERE background = \"Reality Star\"",
    "question_en": "What is the charity of the celebrity with the background reality star?",
    "question_th": "การกุศลของคนดังที่มีดาวเรียลลิตีเบื้องหลังคืออะไร?",
    "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_en": "What is the background of the celebrity who had the result 13 the celebrity apprentice (2008-03-27)?",
    "question_th": "เบื้องหลังของคนดังที่มีผล 13 ดาราฝึกงาน (27-03-2551) คืออะไร?",
    "context": "CREATE TABLE table_12286195_1 (background VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_1231316_4 WHERE athlete = \"Tamunosiki Atorudibo\"",
    "question_en": "Where is Tamunosiki Atorudibo from",
    "question_th": "ทามูโนซิกิ อาโตรูดิโบมาจากไหน",
    "context": "CREATE TABLE table_1231316_4 (country VARCHAR, athlete VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_1231316_4 WHERE athlete = \"Dwain Chambers\"",
    "question_en": "Where is Dwain Chambers from",
    "question_th": "ดเวน แชมเบอร์สมาจากไหน",
    "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_en": "What was the stats of Trinidad and Tobago",
    "question_th": "สถิติของตรินิแดดและโตเบโกคืออะไร",
    "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_en": "Name the total number of wind m/s for sunday emmanuel",
    "question_th": "ตั้งชื่อจำนวนลมทั้งหมด m/s สำหรับวันอาทิตย์ เอ็มมานูเอล",
    "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_en": "Name the wind m/s and fastest time of 10.25 and jeff demps",
    "question_th": "ตั้งชื่อลม m/s และเวลาที่เร็วที่สุดที่ 10.25 และ 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–4\"",
    "question_en": "What is the competition when aggregate is 1–4?",
    "question_th": "การแข่งขันจะเป็นอย่างไรเมื่อสกอร์รวมเป็น 1–4?",
    "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_en": "What is the 1st leg when club is a.c. libertas?",
    "question_th": "ขาแรกคืออะไรเมื่อ club คือ ac libertas?",
    "context": "CREATE TABLE table_1233026_4 (club VARCHAR)"
  },
  {
    "answer": "SELECT branding FROM table_12379297_4 WHERE location = \"Metro Manila\"",
    "question_en": "What is the branding of metro manila?",
    "question_th": "ตราสินค้าของเมโทรมะนิลาคืออะไร?",
    "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_en": "When was the institution of Kansas city Kansas community college founded?",
    "question_th": "สถาบันของวิทยาลัยชุมชนแคนซัสซิตี้ แคนซัสก่อตั้งขึ้นเมื่อใด",
    "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_en": "What is the mascot for the instition of Kansas city Kansas community college?",
    "question_th": "ตัวนำโชคของสถาบัน 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_en": "How many school colors is there for the main campus location of highland?",
    "question_th": "วิทยาเขตหลักของพื้นที่สูงมีกี่สี?",
    "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_en": "What is the mascot for the school founded in 1923 with the school colors of blue, red & white?",
    "question_th": "มาสคอตประจำโรงเรียนที่ก่อตั้งเมื่อปี พ.ศ. 2466 ใช้สีฟ้า แดง และขาวเป็นสีอะไร",
    "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_en": "What is the instition where the main campus location is overland park?",
    "question_th": "สถาบันใดที่วิทยาเขตหลักคือโอเวอร์แลนด์พาร์ค?",
    "context": "CREATE TABLE table_12434380_1 (institution VARCHAR, main_campus_location VARCHAR)"
  },
  {
    "answer": "SELECT institution FROM table_12434380_1 WHERE mascot = \"Blue Devils\"",
    "question_en": "What is the name of the institution with the mascot of blue devils?",
    "question_th": "สถาบันที่มีมาสคอตของปีศาจสีน้ำเงินชื่ออะไร?",
    "context": "CREATE TABLE table_12434380_1 (institution VARCHAR, mascot VARCHAR)"
  },
  {
    "answer": "SELECT written_by FROM table_12419515_5 WHERE series__number = 67",
    "question_en": "Name the people who wrote number 67",
    "question_th": "บอกชื่อคนที่เขียนหมายเลข 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_en": "Name the number of season that was written by adam milch",
    "question_th": "ตั้งชื่อหมายเลขซีซันที่อดัม มิลช์เขียน",
    "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_en": "Name the season number for the direction of patrick norris",
    "question_th": "ตั้งชื่อหมายเลขซีซันสำหรับทิศทางของแพทริค นอร์ริส",
    "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_en": "Who wrote the episode when the director was dean white?",
    "question_th": "ใครเป็นคนเขียนตอนที่ผู้กำกับเป็นดีนไวท์?",
    "context": "CREATE TABLE table_12451376_1 (writer_s_ VARCHAR, director VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(title) FROM table_12451376_2 WHERE production_code = 211",
    "question_en": "Please list the total number of title with the production code 211.",
    "question_th": "กรุณาระบุจำนวนชื่อเรื่องทั้งหมดพร้อมรหัสการผลิต 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_en": "Please give me the title of Season 2, episode 1. ",
    "question_th": " ขอชื่อซีซั่น 2 ตอนที่ 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_en": "Provide me with the name of the writer with the production code 210. ",
    "question_th": " แจ้งชื่อผู้เขียนพร้อมรหัสการผลิต 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_en": "What is the number of the original airdate with the production code 208.",
    "question_th": "เดิมออกอากาศหมายเลขอะไร รหัสผลิต 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_en": "What size is a 30 frames per minute",
    "question_th": "30เฟรมต่อนาทีจะขนาดไหน",
    "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_en": "What is the size when the frame is bigger than for 4096.0",
    "question_th": "เฟรมจะใหญ่กว่ารุ่น 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_en": "What is the smallest frames per minute when the pixels are 5.0",
    "question_th": "เฟรมต่อนาทีที่เล็กที่สุดเมื่อพิกเซลเป็น 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_en": "what's the width with frame size being 4.5k",
    "question_th": "เฟรมกว้างเท่าไรครับ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_en": "What is the callsign of tuguegarao",
    "question_th": "สัญลักษณ์เรียกของตูเกกาเราคืออะไร",
    "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_en": "What is the station type of calbayog",
    "question_th": "คัลบายอกเป็นสถานีประเภทใด",
    "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_en": "What is the station type of smni tv-26 naga",
    "question_th": "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_en": "How many places featured the DXCL Callsign?",
    "question_th": "มีสถานที่แสดง DXCL Callsign กี่แห่ง?",
    "context": "CREATE TABLE table_12547903_3 (location VARCHAR, callsign VARCHAR)"
  },
  {
    "answer": "SELECT branding FROM table_12547903_3 WHERE location = \"Dagupan\"",
    "question_en": "What was the branding in Dagupan?",
    "question_th": "การสร้างแบรนด์ใน Dagupan คืออะไร?",
    "context": "CREATE TABLE table_12547903_3 (branding VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT callsign FROM table_12547903_3 WHERE location = \"Zamboanga\"",
    "question_en": "What was the callsign in Zamboanga?",
    "question_th": "สัญญาณเรียกขานในซัมโบอังกาคืออะไร?",
    "context": "CREATE TABLE table_12547903_3 (callsign VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT power__kw_ FROM table_12547903_3 WHERE callsign = \"DZYT\"",
    "question_en": "How much power was used when the callsign was DZYT?",
    "question_th": "มีการใช้พลังเท่าใดเมื่อสัญญาณเรียกขานเป็น DZYT?",
    "context": "CREATE TABLE table_12547903_3 (power__kw_ VARCHAR, callsign VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_12564633_1 WHERE season__number = 15",
    "question_en": "What is the name of Season #15?",
    "question_th": "ซีซั่น #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_en": "What is the series number for Season #18?",
    "question_th": "หมายเลขซีรีส์สำหรับซีซั่น #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_en": "What was the first series in this list that Jack Orman wrote?",
    "question_th": "ซีรีส์เรื่องแรกในรายการนี้ที่ Jack Orman เขียนคืออะไร",
    "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_en": "What is the name of the episode that Richard Thorpe directed?",
    "question_th": "ตอนที่ Richard Thorpe กำกับชื่ออะไร",
    "context": "CREATE TABLE table_12564633_1 (title VARCHAR, directed_by VARCHAR)"
  },
  {
    "answer": "SELECT population__maryborough_ FROM table_12576536_1 WHERE population__woocoo_ = 2700",
    "question_en": "Name the population of maryborough when population of woocoo is 2700",
    "question_th": "ตั้งชื่อประชากรของ maryborough เมื่อประชากรของ woocoo คือ 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_en": "Name the most year when population of woocoo is 2700",
    "question_th": "ตั้งชื่อปีที่มีประชากร woocoo มากที่สุดคือ 2,700 คน",
    "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_en": "Who was crew chief for the team owned by Bob Leavine?",
    "question_th": "ใครเป็นหัวหน้าลูกเรือของทีมที่ 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_en": "Who drove for team Circle Sport?",
    "question_th": "ใครขับรถให้ทีม 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_en": "Who drove for Phil Parsons Racing team?",
    "question_th": "ใครขับรถให้ทีม Phil Parsons Racing?",
    "context": "CREATE TABLE table_1266602_2 (driver_s_ VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_1266602_2 WHERE crew_chief = \"Wally Rogers\"",
    "question_en": "Which teams used Wally Rogers as their crew chief?",
    "question_th": "ทีมใดบ้างที่ใช้ Wally Rogers เป็นหัวหน้าทีม",
    "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_en": "What is the largest number of rounds for the team that hired Donnie Wingo as crew chief?",
    "question_th": "ทีมที่จ้าง Donnie Wingo เป็นหัวหน้าลูกเรือมีจำนวนรอบมากที่สุดคือเท่าใด",
    "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_en": "What is the 2007 estimate when the rank (csa) is 4",
    "question_th": "ค่าประมาณปี 2550 คืออะไรเมื่ออันดับ (csa) อยู่ที่ 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_en": "What is the 2007 estimate for tulsa-bartlesville, ok csa?",
    "question_th": "ทัลซา-บาร์เทิลสวิลล์ ประมาณการปี 2550 เป็นเท่าใด โอเค 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_en": "How many times was the rank (csa) was (msa 348)?",
    "question_th": "มีอันดับ (csa) กี่ครั้ง (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_en": "What is the rank (csa) for the percentage change (1990-2000) was a034 +8.71%?",
    "question_th": "อันดับ (csa) สำหรับเปอร์เซ็นต์การเปลี่ยนแปลง (พ.ศ. 2533-2543) คือ 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_en": "What tourmament has Genesis won previously?",
    "question_th": "เจเนซิสชนะการแข่งขันใดบ้างก่อนหน้านี้?",
    "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_en": "Who was the champion prior to Xix Xavant?",
    "question_th": "ใครคือแชมป์ก่อน 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_en": "Who are the champions that have won at Aguas Buenas, Puerto Rico?",
    "question_th": "ใครคือแชมป์ที่คว้าแชมป์ที่อากัวส บูเอนาส เปอร์โตริโก?",
    "context": "CREATE TABLE table_1272033_1 (champion_s_ VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT english_title_translation FROM table_12744399_1 WHERE japanese_title = \"Ranma ½: Chougi Rambuhen\"",
    "question_en": "What's the English translation of the Japanese title of the game Ranma ½: Chougi Rambuhen?",
    "question_th": "ชื่อภาษาญี่ปุ่นของเกม Ranma ½: 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 ½: Hot Springs Athletic Chapter\"",
    "question_en": "What's the genre of Fever Ranma ½: Hot Springs Athletic Chapter?",
    "question_th": "ประเภทของอะไร Fever Ranma ½: 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_en": "When was the game developed by Microvision released?",
    "question_th": "เกมที่พัฒนาโดย Microvision เปิดตัวเมื่อใด",
    "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_en": "What's the number of verbal nouns with the basic stem (root) -bil-?",
    "question_th": "คำนามทางวาจาที่มีรากศัพท์ (ราก) -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_en": "What does the non-present stem -erama- mean?",
    "question_th": "ก้านที่ไม่มีอยู่ในปัจจุบัน -erama- หมายถึงอะไร?",
    "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_en": "What's the participle when the verbal noun is i-bil-tze?",
    "question_th": "กริยานามเมื่อคำนามวาจาคือ 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_en": "What does the basic stem (root) -rama- mean?",
    "question_th": "รากพื้นฐาน (ราก) -พระราม- หมายถึงอะไร?",
    "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_en": "What is the verbal noun connected to the participle e-duki?",
    "question_th": "คำนามทางวาจาที่เชื่อมโยงกับกริยา 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_en": "what is the tries against where points is 60?",
    "question_th": "ความพยายามเทียบกับจุดที่ 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_en": "How many losing bonus where there when points against is 439?",
    "question_th": "โบนัสที่เสียไปกี่แต้มเมื่อแต้มต่อคือ 439?",
    "context": "CREATE TABLE table_12828723_4 (losing_bonus VARCHAR, points_against VARCHAR)"
  },
  {
    "answer": "SELECT drawn FROM table_12828723_4 WHERE won = \"12\"",
    "question_en": "what is the drawn when the won is 12?",
    "question_th": "เมื่อชนะคือ 12 จะมีการจับรางวัลอะไร?",
    "context": "CREATE TABLE table_12828723_4 (drawn VARCHAR, won VARCHAR)"
  },
  {
    "answer": "SELECT tries_against FROM table_12828723_4 WHERE won = \"14\"",
    "question_en": "What is the tries against when the won is 14?",
    "question_th": "การพยายามต่อต้านอะไรเมื่อชนะคือ 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_en": "How many tries for are for 473 points for?",
    "question_th": "พยายามกี่ครั้งให้ได้ 473 แต้ม?",
    "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_en": "what is the points for when the played is 22 and tries against is 68?",
    "question_th": "แต้มเมื่อเล่นได้ 22 และพยายามต่อต้านคือ 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_en": "what's the loss with try bonus being 5 and points for being 390",
    "question_th": "การสูญเสียโดยลองโบนัสเป็น 5 และคะแนนเป็น 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_en": "what's the win with points for being 376",
    "question_th": "ชนะได้เท่าไหร่ด้วยคะแนนเป็น 376",
    "context": "CREATE TABLE table_12828723_3 (won VARCHAR, points_for VARCHAR)"
  },
  {
    "answer": "SELECT lost FROM table_12828723_3 WHERE points_for = \"594\"",
    "question_en": "what's the loss with points for being 594",
    "question_th": "เสียไปเท่าไหร่กับแต้มเป็น 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_en": "what's the tries against with tries for being 47",
    "question_th": "ความพยายามในการเป็น 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_en": "what's the won with club being ammanford rfc",
    "question_th": "สโมสรที่เป็นอัมมานฟอร์ด rfc จะชนะอะไร",
    "context": "CREATE TABLE table_12828723_3 (won VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(drawn) FROM table_12828723_3 WHERE tries_against = \"24\"",
    "question_en": " how many drawn with tries against being 24",
    "question_th": " มีกี่ครั้งที่เสมอกับความพยายามเทียบกับอายุ 24",
    "context": "CREATE TABLE table_12828723_3 (drawn VARCHAR, tries_against VARCHAR)"
  },
  {
    "answer": "SELECT drawn FROM table_12828723_5 WHERE points_against = \"416\"",
    "question_en": "What were the drawn with points against at 416?",
    "question_th": "แต้มเสมอกับ 416 คืออะไร?",
    "context": "CREATE TABLE table_12828723_5 (drawn VARCHAR, points_against VARCHAR)"
  },
  {
    "answer": "SELECT won FROM table_12828723_5 WHERE tries_against = \"54\"",
    "question_en": "What was the amount won with tries against at 54?",
    "question_th": "จำนวนเงินที่ชนะเมื่อพยายามต่อต้านที่ 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_en": "What was the lost with tries for?",
    "question_th": "แพ้ความพยายามไปเพื่ออะไร?",
    "context": "CREATE TABLE table_12828723_5 (lost VARCHAR)"
  },
  {
    "answer": "SELECT points_against FROM table_12828723_5 WHERE \"played\" = \"played\"",
    "question_en": "What was the points againt when played is played?",
    "question_th": "เมื่อเล่นแล้วได้แต้มอะไรอีกครั้ง?",
    "context": "CREATE TABLE table_12828723_5 (points_against VARCHAR)"
  },
  {
    "answer": "SELECT tries_for FROM table_12828723_5 WHERE tries_against = \"33\"",
    "question_en": "What was the tries for with tries against at 33?",
    "question_th": "พยายามทำอะไรเมื่อพยายามต่อต้านเมื่ออายุ 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_en": "What was the played with club tumble rfc?",
    "question_th": "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_en": "What consoles was Shenmue released on?",
    "question_th": "Shenmue เปิดตัวคอนโซลใดบ้าง",
    "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_en": "Which main developer made their first release in 1991 and created the Mega Drive/Genesis console?",
    "question_th": "นักพัฒนาหลักคนใดที่เปิดตัวครั้งแรกในปี 1991 และสร้างคอนโซล Mega Drive/Genesis",
    "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_en": "How many players currently play for Barons Riga?",
    "question_th": "ปัจจุบันมีผู้เล่นกี่คนที่เล่นให้กับ Barons Riga?",
    "context": "CREATE TABLE table_12962773_10 (position VARCHAR, current_club VARCHAR)"
  },
  {
    "answer": "SELECT height FROM table_12962773_10 WHERE no = 10",
    "question_en": "How tall was Player #10?",
    "question_th": "ผู้เล่น #10 สูงเท่าไหร่?",
    "context": "CREATE TABLE table_12962773_10 (height VARCHAR, no VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year_born) FROM table_12962773_10",
    "question_en": "What is the earliest any of these players were born?",
    "question_th": "ผู้เล่นเหล่านี้เกิดเร็วที่สุดเมื่อใด?",
    "context": "CREATE TABLE table_12962773_10 (year_born INTEGER)"
  },
  {
    "answer": "SELECT no FROM table_12962773_10 WHERE height = \"2.10\"",
    "question_en": "Which player number is 2.10 meters tall?",
    "question_th": "นักเตะหมายเลขไหนสูง 2.10 เมตร?",
    "context": "CREATE TABLE table_12962773_10 (no VARCHAR, height VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_12962773_10 WHERE height = \"2.12\"",
    "question_en": "What position was played by the player who was 2.12 meters tall?",
    "question_th": "นักเตะส่วนสูง 2.12 เมตร เล่นตำแหน่งอะไร",
    "context": "CREATE TABLE table_12962773_10 (position VARCHAR, height VARCHAR)"
  },
  {
    "answer": "SELECT current_conference FROM table_12936521_2 WHERE institution = \"Post University\"",
    "question_en": "What current conference is Post University a member of?",
    "question_th": "Post University เป็นสมาชิกของการประชุมใหญ่ครั้งใดในปัจจุบัน",
    "context": "CREATE TABLE table_12936521_2 (current_conference VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT institution FROM table_12936521_2 WHERE nickname = \"Penmen\"",
    "question_en": "What institution has the nickname Penmen?",
    "question_th": "สถาบันใดมีชื่อเล่นว่า เพนเมน?",
    "context": "CREATE TABLE table_12936521_2 (institution VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_12936521_2 WHERE institution = \"University at Albany\"",
    "question_en": "Where is the University at Albany located?",
    "question_th": "มหาวิทยาลัยออลบานีตั้งอยู่ที่ไหน",
    "context": "CREATE TABLE table_12936521_2 (location VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT classification FROM table_12936521_2 WHERE nickname = \"Dolphins\"",
    "question_en": "What's the classification of the institution nicknamed Dolphins?",
    "question_th": "สถาบันชื่อเล่นโลมาจัดอยู่ในประเภทใด",
    "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_en": "What's the nickname of the University of Massachusetts Lowell (UMass Lowell)?",
    "question_th": "ชื่อเล่นของ 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_en": "What is Ido Kozikaro's position?",
    "question_th": "อิโดะ โคซิคาโระ มีจุดยืนอย่างไร?",
    "context": "CREATE TABLE table_12962773_2 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_12962773_2 WHERE position = \"Center\"",
    "question_en": "What player plays center?",
    "question_th": "นักเตะคนไหนเล่นเซนเตอร์?",
    "context": "CREATE TABLE table_12962773_2 (player VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT no FROM table_12962773_2 WHERE current_club = \"Ironi Nahariya\"",
    "question_en": "What are the numbers of the players currently playing for Ironi Nahariya?",
    "question_th": "ผู้เล่นที่เล่นให้กับ 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_en": "What player is 2.01 m tall?",
    "question_th": "นักเตะคนไหนสูง 2.01 ม.?",
    "context": "CREATE TABLE table_12962773_2 (player VARCHAR, height VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_12962773_2 WHERE player = \"Yotam Halperin\"",
    "question_en": "What's Yotam Halperin's position?",
    "question_th": "โยตัม ฮัลเปริน อยู่ในตำแหน่งอะไร?",
    "context": "CREATE TABLE table_12962773_2 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT current_club FROM table_12962773_12 WHERE year_born = 1984",
    "question_en": "What current club does the player born in 1984 play for?",
    "question_th": "นักเตะที่เกิดในปี 1984 ปัจจุบันเล่นให้กับสโมสรใด?",
    "context": "CREATE TABLE table_12962773_12 (current_club VARCHAR, year_born VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(height) FROM table_12962773_12 WHERE no = 5",
    "question_en": "What is the height for player number 5?",
    "question_th": "ผู้เล่นหมายเลข 5 ส่วนสูงเท่าไหร่?",
    "context": "CREATE TABLE table_12962773_12 (height VARCHAR, no VARCHAR)"
  },
  {
    "answer": "SELECT height FROM table_12962773_12 WHERE no = 9",
    "question_en": "What height is player number 9?",
    "question_th": "ผู้เล่นหมายเลข 9 สูงเท่าไหร่?",
    "context": "CREATE TABLE table_12962773_12 (height VARCHAR, no VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(player) FROM table_12962773_12 WHERE height = \"2.01\"",
    "question_en": "WHat is the number for the player whose height is 2.01?",
    "question_th": "ตัวเลขของผู้เล่นที่มีส่วนสูง 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_en": "What year was the player with the height 2.04 born?",
    "question_th": "ผู้เล่นที่สูง 2.04 เกิดปีไหน?",
    "context": "CREATE TABLE table_12962773_12 (year_born INTEGER, height VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(height) FROM table_12962773_16 WHERE no = 8",
    "question_en": "How many players wore number 8?",
    "question_th": "มีนักเตะหมายเลข 8 กี่คน?",
    "context": "CREATE TABLE table_12962773_16 (height VARCHAR, no VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_12962773_16 WHERE year_born = 1983",
    "question_en": "What player was born in 1983?",
    "question_th": "นักเตะคนไหนเกิดในปี 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_en": "What club does the player who is 1.97 m tall play for?",
    "question_th": "นักเตะส่วนสูง 1.97 ม. เล่นให้สโมสรไหนครับ?",
    "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_en": "How many players are from energa czarni?",
    "question_th": "มีนักเตะจากเอเนอร์กา ซาร์นี่กี่คน?",
    "context": "CREATE TABLE table_12962773_16 (position VARCHAR, current_club VARCHAR)"
  },
  {
    "answer": "SELECT year_born FROM table_12962773_16 WHERE player = \"Robert Skibniewski\"",
    "question_en": "What year was Robert Skibniewski born?",
    "question_th": "Robert Skibniewski เกิดปีใด",
    "context": "CREATE TABLE table_12962773_16 (year_born VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MIN(no) FROM table_12962773_4 WHERE player = \"Zoran Erceg\"",
    "question_en": "What No is the player Zoran Erceg",
    "question_th": "สิ่งที่ไม่มีคือผู้เล่น 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_en": "What is the iclandic of the glossary for presenta for mi locaria",
    "question_th": "อภิธานศัพท์สำหรับการนำเสนอสำหรับ 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_en": "Name the english translation of giefdu mier socka bond",
    "question_th": "ตั้งชื่อคำแปลภาษาอังกฤษของพันธบัตร giefdu mier socka",
    "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_en": "Name the english translation of 219",
    "question_th": "ตั้งชื่อคำแปลภาษาอังกฤษของ 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_en": "Name the incelandic of the glossary for 218",
    "question_th": "ตั้งชื่อภาษาไอซ์แลนด์ของอภิธานศัพท์สำหรับ 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_en": "What's the type of printer ports in the model number EX Plus3?",
    "question_th": "พอร์ตเครื่องพิมพ์ในหมายเลขรุ่น 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_en": "What is the number of the model with three parallel printer ports?",
    "question_th": "รุ่นที่มีพรินเตอร์พรินเตอร์แบบขนาน 3 ช่อง เบอร์อะไรคะ?",
    "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_en": "What are the network protocols for the model that has been discontinued in favor of the EN1700?",
    "question_th": "โปรโตคอลเครือข่ายสำหรับรุ่นที่เลิกผลิตแล้วเพื่อสนับสนุน EN1700 คืออะไร",
    "context": "CREATE TABLE table_1300080_1 (network_protocols VARCHAR, notes VARCHAR)"
  },
  {
    "answer": "SELECT MAX(population) FROM table_1300525_1 WHERE simplified = \"铅山县\"",
    "question_en": "How many people live in  铅山县?",
    "question_th": "铅yama县 มีคนอยู่กี่คน?",
    "context": "CREATE TABLE table_1300525_1 (population INTEGER, simplified VARCHAR)"
  },
  {
    "answer": "SELECT traditional FROM table_1300525_1 WHERE area = 2331",
    "question_en": "What is the traditional way to write the name of the district who's area is 2331?",
    "question_th": "วิธีดั้งเดิมในการเขียนชื่ออำเภอที่มีพื้นที่ 2331 คืออะไร?",
    "context": "CREATE TABLE table_1300525_1 (traditional VARCHAR, area VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(pinyin) FROM table_1300525_1 WHERE simplified = \"信州区\"",
    "question_en": "What is the capital of the district who's simplified name is  信州区?",
    "question_th": "เมืองหลวงของเขตที่มีชื่อย่อว่า 信州区 คือเมืองอะไร",
    "context": "CREATE TABLE table_1300525_1 (pinyin VARCHAR, simplified VARCHAR)"
  },
  {
    "answer": "SELECT population FROM table_1300525_1 WHERE pinyin = \"Héngfēng Xiàn\"",
    "question_en": "How many people live in the district who's capital is  héngfēng xiàn?",
    "question_th": "มีกี่คนที่อาศัยอยู่ในเขตที่เป็นเมืองหลวงคือhéngfēng xiàn?",
    "context": "CREATE TABLE table_1300525_1 (population VARCHAR, pinyin VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(density) FROM table_1300525_1 WHERE english_name = \"Yushan County\"",
    "question_en": "What is the density of yushan county?",
    "question_th": "มณฑลยู่ซานมีความหนาแน่นเท่าใด?",
    "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_en": "How many gold medals does the Choctawhatchee High School have?",
    "question_th": "โรงเรียนมัธยมโชคทวีชีมีกี่เหรียญทอง",
    "context": "CREATE TABLE table_1305623_12 (gold_medals INTEGER, ensemble VARCHAR)"
  },
  {
    "answer": "SELECT gold_medals FROM table_1305623_12 WHERE total_medals = 1",
    "question_en": "How many gold medals does each school who has a total of 1 medal have?",
    "question_th": "แต่ละโรงเรียนที่มีทั้งหมด 1 เหรียญมีกี่เหรียญทอง",
    "context": "CREATE TABLE table_1305623_12 (gold_medals VARCHAR, total_medals VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_13050822_2 WHERE stage = \"SS18\"",
    "question_en": "What is the time for stage ss18?",
    "question_th": "สเตจ ss18 กี่โมงคะ?",
    "context": "CREATE TABLE table_13050822_2 (time VARCHAR, stage VARCHAR)"
  },
  {
    "answer": "SELECT length FROM table_13050822_2 WHERE stage = \"SS22\"",
    "question_en": "Name the length for stage ss22",
    "question_th": "ตั้งชื่อความยาวของสเตจ ss22",
    "context": "CREATE TABLE table_13050822_2 (length VARCHAR, stage VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(leg) FROM table_13050822_2 WHERE stage = \"SS17\"",
    "question_en": "What is the number of leg for ss17",
    "question_th": "ss17เบอร์อะไรครับ",
    "context": "CREATE TABLE table_13050822_2 (leg VARCHAR, stage VARCHAR)"
  },
  {
    "answer": "SELECT leg FROM table_13050822_2 WHERE rally_leader = \"C. Atkinson\"",
    "question_en": "What is the leg for c. atkinson",
    "question_th": "ขาสำหรับคคืออะไร แอตกินสัน",
    "context": "CREATE TABLE table_13050822_2 (leg VARCHAR, rally_leader VARCHAR)"
  },
  {
    "answer": "SELECT MIN(bronze_medals) FROM table_1305623_6",
    "question_en": "What's the smallest number of bronze medals that any one if the ensembles has? ",
    "question_th": " ถ้าวงดนตรีมีเหรียญทองแดงจำนวนน้อยที่สุดคือเท่าไร?",
    "context": "CREATE TABLE table_1305623_6 (bronze_medals INTEGER)"
  },
  {
    "answer": "SELECT rev FROM table_1310499_1 WHERE application = \"2003-2004 Mustang Cobra\"",
    "question_en": "What is the rev of the 2003-2004 Mustang Cobra?",
    "question_th": "Mustang Cobra รุ่นปี 2003-2004 รอบรอบเป็นอย่างไร?",
    "context": "CREATE TABLE table_1310499_1 (rev VARCHAR, application VARCHAR)"
  },
  {
    "answer": "SELECT rev FROM table_1310499_1 WHERE application = \"Aston Martin\"",
    "question_en": "What is the rev for all of the  Aston Martin applications?",
    "question_th": "รอบการใช้งานของ Aston Martin ทั้งหมดเป็นเท่าใด",
    "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_en": "What is the 3rd ratio for tag number 1386-000-017 and input splines of 26?",
    "question_th": "อัตราส่วนที่ 3 สำหรับแท็กหมายเลข 1386-000-017 และอินพุตสไลน์ของ 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_en": "What is the 2nd ratio of 1996-2002 Dodge Viper?",
    "question_th": "อัตราส่วนที่ 2 ของปี 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_en": "Whose address of operation was the Echirax Concession? ",
    "question_th": " สัมปทาน Echirax อยู่ในการดำเนินงานของใคร?",
    "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_en": "When was the operation in Field 103 executed? ",
    "question_th": " การดำเนินการในฟิลด์ 103 ดำเนินการเมื่อใด",
    "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_en": "In what country is the El Hamada area of operation? ",
    "question_th": " พื้นที่ปฏิบัติการของ El Hamada อยู่ที่ประเทศใด",
    "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_en": "What is the total number for 3rd place for ducati xerox?",
    "question_th": "อันดับ 3 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_en": "Who is J.E. Armstrong when W.H. Archer is D.M. Lawson?",
    "question_th": "JE Armstrong คือใครเมื่อ WH Archer คือ DM 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_en": "What are the fa.brill when w.h. archer is known as r. newman?",
    "question_th": "fa.brill คืออะไรเมื่อนักธนูถูกเรียกว่า r ผู้ชายคนใหม่?",
    "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_en": "Who is h.l birkett if w.h. archer is r. cochrane?",
    "question_th": "hl birkett คือใคร ถ้านักธนูคือ r คอเครน?",
    "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_en": "Who is h.t. brewer when j.e. armstrong is a.j. wilson?",
    "question_th": "ht brewer คือใคร ในเมื่อ je armstrong คือ aj 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_en": "Who is h.t. brewer when je armstrong is c.p. greeks?",
    "question_th": "ht brewer คือใคร ในเมื่อ je armstrong คือ cp 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_en": "What was the air date of part 2 of the episode whose part 1 was aired on January 31, 2008?",
    "question_th": "ตอนที่ 2 ของตอนที่ 1 ออกอากาศเมื่อวันที่ 31 มกราคม 2551 คือวันไหน?",
    "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_en": "What's the name of the episode whose part 3 aired on February 7, 2008?",
    "question_th": "ตอนที่ 3 ออกอากาศเมื่อวันที่ 7 กุมภาพันธ์ 2551 ชื่ออะไร",
    "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_en": "What's the air date of part 1 of the episode whose part 2 aired on December 2, 2007?",
    "question_th": "ตอนที่ 1 ของตอนที่ 2 ออกอากาศวันที่ 2 ธันวาคม 2550 ออกอากาศวันที่เท่าไร?",
    "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_en": "How many part 6 parts are there in the episode number 5?",
    "question_th": "ตอนที่ 5 ตอนที่ 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_en": "Name the record with opponent atlanta falcons",
    "question_th": "ตั้งชื่อบันทึกกับคู่ต่อสู้ 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_en": "Name the number of opponent with arrowhead stadium",
    "question_th": "บอกเลขคู่ต่อสู้ด้วยสนามหัวลูกศร",
    "context": "CREATE TABLE table_13258823_2 (opponent VARCHAR, game_site VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_13258823_2 WHERE record = \"1-0\"",
    "question_en": "Name the date with the record of 1-0",
    "question_th": "ตั้งชื่อวันที่ด้วยบันทึก 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_en": "Name the record for september 15, 1985",
    "question_th": "ตั้งชื่อบันทึกสำหรับวันที่ 15 กันยายน พ.ศ. 2528",
    "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_en": "What's the series number of the episode that's written by Elizabeth Devine?",
    "question_th": "ตอนที่ 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_en": "When was the episode directed by Carey Meyer aired for the first time?",
    "question_th": "ตอนที่กำกับโดย Carey Meyer ออกอากาศครั้งแรกเมื่อใด",
    "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_en": "who is the the office with incumbent being ramon r. jimenez, jr.",
    "question_th": "ซึ่งเป็นสำนักงาน โดยมีรามอน ร. จิเมเนซ จูเนียร์",
    "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_en": " how many office with department being department of justice kagawaran ng katarungan",
    "question_th": " มีสำนักงานกี่แห่งที่มีแผนกเป็นแผนกยุติธรรม 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_en": "what's the department with acronym being deped (ked)",
    "question_th": "แผนกอะไร มีอักษรย่อว่า deped (ked)",
    "context": "CREATE TABLE table_1331313_1 (department VARCHAR, acronym VARCHAR)"
  },
  {
    "answer": "SELECT department FROM table_1331313_1 WHERE incumbent = \"Enrique Ona\"",
    "question_en": "what's the department with incumbent being enrique ona",
    "question_th": "แผนกไหนที่รับหน้าที่เป็นเอ็นริเก โอน่า",
    "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_en": "what's the acronym with department being department of finance kagawaran ng pananalapi",
    "question_th": "แผนก คือ แผนกการเงิน คะคะวะรัน ง พนานาลาปี ย่อมาจากอะไร",
    "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_en": "What's the season number of the episode watched by 0.57 million US viewers?",
    "question_th": "หมายเลขซีซันของตอนที่มีผู้ชม 0.57 ล้านคนในสหรัฐฯ ดูคือเท่าใด",
    "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_en": "How many episodes were seen by 0.67 million US viewers on their original air dates?",
    "question_th": "มีผู้ชมในสหรัฐอเมริกาจำนวน 0.67 ล้านคนในวันที่ออกอากาศเดิม",
    "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_en": "What episode was directed by David Duchovny?",
    "question_th": "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_en": "How much is the purse ( $ ) when the margin of victory is 1 stroke?",
    "question_th": "กระเป๋าเงิน ($ ) จะมีราคาเท่าไหร่เมื่อระยะขอบของชัยชนะคือ 1 สโตรค?",
    "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_en": "What is the number of \"to par\" in Mexico with a winning score of 67-67-69-70=273?",
    "question_th": "เม็กซิโกมีคะแนนชนะ 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_en": "what's the 3rd day with finbeingh position being 16th",
    "question_th": "วันที่ 3 คือวันที่ finbeingh อันดับที่ 16",
    "context": "CREATE TABLE table_1340667_3 (finish_position VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1341395_33 WHERE district = \"New York 6\"",
    "question_en": "what are all the result for New York 6 district",
    "question_th": "ผลลัพธ์ของเขตนิวยอร์ก 6 ทั้งหมดเป็นอย่างไร",
    "context": "CREATE TABLE table_1341395_33 (result VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341395_33 WHERE incumbent = \"Gregory W. Meeks\"",
    "question_en": "Who were the candidates when gregory w. meeks was the incumbent",
    "question_th": "ใครเป็นผู้สมัครเมื่อ Gregory W. ผู้อ่อนโยนเป็นผู้ดำรงตำแหน่ง",
    "context": "CREATE TABLE table_1341395_33 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1341395_33 WHERE district = \"New York 16\"",
    "question_en": "what are all the result for New York 16 district",
    "question_th": "ผลลัพธ์ของเขตนิวยอร์ก 16 ทั้งหมดเป็นอย่างไร",
    "context": "CREATE TABLE table_1341395_33 (result VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1341395_33 WHERE district = \"New York 7\"",
    "question_en": "what are all the result for New York 7 district",
    "question_th": "ผลลัพธ์ของเขตนิวยอร์ก 7 ทั้งหมดเป็นอย่างไร",
    "context": "CREATE TABLE table_1341395_33 (result VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341395_44 WHERE incumbent = \"Kevin Brady\"",
    "question_en": "What party was Kevin Brady?",
    "question_th": "Kevin Brady เป็นพรรคอะไร",
    "context": "CREATE TABLE table_1341395_44 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341395_44 WHERE incumbent = \"Ron Paul\"",
    "question_en": "What district has Ron Paul?",
    "question_th": "รอนพอลมีเขตไหน?",
    "context": "CREATE TABLE table_1341395_44 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341423_23 WHERE incumbent = \"Jim Ramstad\"",
    "question_en": "What party does jim ramstad represent?",
    "question_th": "จิม แรมสตัด เป็นตัวแทนของพรรคใด?",
    "context": "CREATE TABLE table_1341423_23 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT MIN(first_elected) FROM table_1341423_23 WHERE incumbent = \"Jim Ramstad\"",
    "question_en": "What year was incumbent jim ramstad first elected?",
    "question_th": "Jim ramstad ผู้ดำรงตำแหน่งได้รับเลือกครั้งแรกในปีใด",
    "context": "CREATE TABLE table_1341423_23 (first_elected INTEGER, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT results FROM table_1341423_23 WHERE incumbent = \"Gil Gutknecht\"",
    "question_en": "What was the result when incumbent gil gutknecht ran?",
    "question_th": "ผลลัพธ์ที่ได้เมื่อผู้ดำรงตำแหน่ง กิล กัตเนคท์ วิ่งคืออะไร?",
    "context": "CREATE TABLE table_1341423_23 (results VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT MAX(first_elected) FROM table_1341453_37 WHERE incumbent = \"Sherrod Brown\"",
    "question_en": "When was the incumbent Sherrod Brown first elected? ",
    "question_th": " ผู้ดำรงตำแหน่ง Sherrod Brown ได้รับเลือกครั้งแรกเมื่อใด",
    "context": "CREATE TABLE table_1341453_37 (first_elected INTEGER, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT results FROM table_1341453_37 WHERE first_elected = 1984",
    "question_en": "What was the result of the election in which the incumbent was first elected in 1984?",
    "question_th": "การเลือกตั้งผู้ดำรงตำแหน่งเดิมครั้งแรกในปี พ.ศ. 2527 มีผลอย่างไร?",
    "context": "CREATE TABLE table_1341453_37 (results VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1341453_37 WHERE first_elected = 1972",
    "question_en": "Which incumbent was first elected in 1972? ",
    "question_th": " ผู้ดำรงตำแหน่งใดที่ได้รับเลือกครั้งแรกในปี พ.ศ. 2515",
    "context": "CREATE TABLE table_1341453_37 (incumbent VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341453_37 WHERE incumbent = \"Tony P. Hall\"",
    "question_en": "Tony P. Hall was the incumbent in the race between what two candidates? ",
    "question_th": " Tony P. Hall เป็นผู้ดำรงตำแหน่งในการแข่งขันระหว่างผู้สมัครสองคนใด",
    "context": "CREATE TABLE table_1341453_37 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341453_37 WHERE incumbent = \"Marcia C. Kaptur\"",
    "question_en": "In which district is the incumbent Marcia C. Kaptur? ",
    "question_th": "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_en": "What is the earliest year where the result of the election was a retired republican hold?",
    "question_th": "ปีแรกสุดที่ผลการเลือกตั้งกลายเป็นพรรครีพับลิกันที่เกษียณแล้วคือปีใด",
    "context": "CREATE TABLE table_1341472_40 (first_elected INTEGER, result VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341472_40 WHERE incumbent = \"Thomas Foglietta\"",
    "question_en": "What party is thomas foglietta from?",
    "question_th": "โทมัส โฟเกลียตตามาจากพรรคไหน?",
    "context": "CREATE TABLE table_1341472_40 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_1341522_38 WHERE district = \"Ohio12\"",
    "question_en": "who is the the opponent with district being ohio12",
    "question_th": "ซึ่งเป็นคู่ต่อสู้โดยเขตเป็นโอไฮโอ12",
    "context": "CREATE TABLE table_1341522_38 (opponent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341522_38 WHERE opponent = \"Mike Oxley (R) unopposed\"",
    "question_en": "what's the party with opponent being mike oxley (r) unopposed",
    "question_th": "ฝ่ายที่ฝ่ายตรงข้ามเป็นไมค์ อ็อกซ์ลีย์ (ขวา) เป็นยังไงบ้าง โดยไม่มีใครค้าน",
    "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_en": "what's the party with opponent being marcy kaptur (d) 75.3% randy whitman (r) 24.7%",
    "question_th": "ปาร์ตี้อะไรที่มีคู่ต่อสู้เป็น 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_en": "what's the party with opponent being deborah pryce (r) 70.7% bill buckel (d) 29.1%",
    "question_th": "ปาร์ตี้อะไรกับคู่ต่อสู้คือเดโบราห์ไพรซ์ (r) 70.7% บิลบัคเคิล (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_en": " how many status with first elected being 1968",
    "question_th": " มีสถานะกี่สถานะโดยได้รับเลือกครั้งแรกคือ พ.ศ. 2511",
    "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_en": "what's the first elected with opponent being ralph regula (r) 75.0% j. michael finn (d) 25.0%",
    "question_th": "คนแรกที่ถูกเลือกโดยคู่ต่อสู้คือราล์ฟ เรกูลา (r) 75.0% j. ไมเคิล ฟินน์ (ง) 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_en": "What district first elected in 1978?",
    "question_th": "เขตใดได้รับการเลือกตั้งครั้งแรกในปี พ.ศ. 2521",
    "context": "CREATE TABLE table_1341472_51 (district VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341472_51 WHERE incumbent = \"Jerry Kleczka\"",
    "question_en": "What district was incumbent Jerry Kleczka in?",
    "question_th": "Jerry Kleczka ดำรงตำแหน่งในเขตใด",
    "context": "CREATE TABLE table_1341472_51 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(result) FROM table_1341472_51 WHERE incumbent = \"Toby Roth\"",
    "question_en": "How many districts had results related to incumbent Toby Roth?",
    "question_th": "มีกี่เขตที่มีผลลัพธ์ที่เกี่ยวข้องกับผู้ดำรงตำแหน่ง Toby Roth",
    "context": "CREATE TABLE table_1341472_51 (result VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341472_51 WHERE district = \"Wisconsin 1\"",
    "question_en": "Who were the candidates in district Wisconsin 1?",
    "question_th": "ใครคือผู้สมัครในเขตวิสคอนซิน 1?",
    "context": "CREATE TABLE table_1341472_51 (candidates VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341549_10 WHERE incumbent = \"Lawrence J. Smith\"",
    "question_en": "Name the district of lawrence j. smith",
    "question_th": "ตั้งชื่อเขตลอเรนซ์เจ สมิธ",
    "context": "CREATE TABLE table_1341549_10 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1341549_10 WHERE first_elected = \"1954\"",
    "question_en": "Name the incumbent for 1954",
    "question_th": "รายนามผู้ดำรงตำแหน่ง พ.ศ. 2497",
    "context": "CREATE TABLE table_1341549_10 (incumbent VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341568_14 WHERE incumbent = \"Lane Evans\"",
    "question_en": "What party was Lane Evans?",
    "question_th": "Lane Evans เป็นพรรคอะไร",
    "context": "CREATE TABLE table_1341568_14 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341568_14 WHERE elected = 1964",
    "question_en": "What district had elections in 1964?",
    "question_th": "เขตใดมีการเลือกตั้งในปี พ.ศ. 2507?",
    "context": "CREATE TABLE table_1341568_14 (district VARCHAR, elected VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_1341568_14 WHERE incumbent = \"Henry Hyde\"",
    "question_en": "Who was Henry Hyde's opponent in the race?",
    "question_th": "คู่ต่อสู้ของ Henry Hyde ในการแข่งขันคือใคร?",
    "context": "CREATE TABLE table_1341568_14 (opponent VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1341568_14 WHERE elected = 1974 AND party = \"Republican\"",
    "question_en": "What Republican incumbent was elected in 1974?",
    "question_th": "ผู้ดำรงตำแหน่งพรรครีพับลิกันคนใดที่ได้รับเลือกในปี 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_en": "what's party with result being retired to run for u. s. senate republican hold",
    "question_th": "พรรคอะไรมีผลให้ต้องเกษียณลงสมัครรับตำแหน่งพรรครีพับลิกันในวุฒิสภาของเรา",
    "context": "CREATE TABLE table_1341577_10 (party VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1341577_10 WHERE incumbent = \"Connie Mack\"",
    "question_en": "what's result with incumbent being connie mack",
    "question_th": "ผลลัพธ์ที่ได้คือคอนนี่ แม็ค",
    "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_en": "what's district with candidates being lawrence j. smith (d) 69.4% joseph smith (r) 30.6%",
    "question_th": "เขตอะไรที่มีผู้สมัครเป็นลอเรนซ์ เจ. สมิธ (d) 69.4% โจเซฟ สมิธ (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_en": "what's incumbent with district being florida 5",
    "question_th": "หน้าที่ของเขตคือฟลอริดา 5",
    "context": "CREATE TABLE table_1341577_10 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1341577_10 WHERE first_elected = 1980",
    "question_en": "what's result of first elected being 1980",
    "question_th": "ผลลัพธ์ที่ได้รับเลือกครั้งแรกคือปี 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_en": "How many parties is Tom Foley a member of?",
    "question_th": "Tom Foley เป็นสมาชิกกี่ฝ่าย?",
    "context": "CREATE TABLE table_1341568_48 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_1341568_48 WHERE incumbent = \"Tom Foley\"",
    "question_en": "What was the result of the election in the district whose incumbent is Tom Foley?",
    "question_th": "ผลการเลือกตั้งในเขตที่ทอม โฟลีย์ ดำรงตำแหน่งอยู่มีผลอย่างไร?",
    "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_en": "How many results have the two candidates Gene Taylor (r) 67.0% Ken Young (d) 33.0%?",
    "question_th": "มีผู้สมัครสองคน 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_en": "Which candidates are from the Missouri 3 district?",
    "question_th": "ผู้สมัครคนไหนมาจากเขต Missouri 3",
    "context": "CREATE TABLE table_1341586_26 (candidates VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1341598_22 WHERE incumbent = \"Barney Frank\"",
    "question_en": "What is the result for barney frank?",
    "question_th": "ผลลัพธ์ของบาร์นีย์ แฟรงค์จะเป็นอย่างไร?",
    "context": "CREATE TABLE table_1341598_22 (result VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(result) FROM table_1341598_22 WHERE incumbent = \"James Shannon\"",
    "question_en": "What is the number of results for james shannon?",
    "question_th": "เจมส์ แชนนอน ผลลัพธ์ที่ได้คือเท่าไร?",
    "context": "CREATE TABLE table_1341598_22 (result VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT MIN(first_elected) FROM table_1341598_22 WHERE incumbent = \"Ed Markey\"",
    "question_en": "What is the minimum first elected for ed markey?",
    "question_th": "ขั้นต่ำที่ได้รับเลือกครั้งแรกสำหรับ 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_en": "What was the result of the election featuring ike skelton?",
    "question_th": "ผลการเลือกตั้งที่มี ike skelton เป็นอย่างไร?",
    "context": "CREATE TABLE table_1341604_26 (result VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341604_26 WHERE incumbent = \"Ike Skelton\"",
    "question_en": "What district is incumbent ike skelton from?",
    "question_th": "ike skelton ดำรงตำแหน่งจากเขตใด",
    "context": "CREATE TABLE table_1341604_26 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT MIN(first_elected) FROM table_1341604_26 WHERE incumbent = \"Ike Skelton\"",
    "question_en": "What year was ike skelton first elected?",
    "question_th": "ike skelton ได้รับเลือกครั้งแรกในปีใด",
    "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_en": "what is the district where the result is re-elected and the incumbent is richard kelly?",
    "question_th": "เขตใดที่ผลการเลือกตั้งอีกครั้งและผู้ดำรงตำแหน่งคือริชาร์ด เคลลี่คือเขตใด",
    "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_en": "what is the district where the candidates are charles edward bennett (d) unopposed?",
    "question_th": "เขตที่ผู้สมัครคือ charles edward bennett (d) คัดค้านคือเขตใด?",
    "context": "CREATE TABLE table_1341663_10 (district VARCHAR, candidates VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341663_10 WHERE incumbent = \"Sam M. Gibbons\"",
    "question_en": "who are the candidates where the incumbent is sam m. gibbons?",
    "question_th": "ซึ่งเป็นผู้สมัครโดยที่ผู้ดำรงตำแหน่งคือแซม ม. ชะนี?",
    "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_en": "how many times was the candidates dan mica (d) 55.3% bill james (r) 44.7%?",
    "question_th": "กี่ครั้งที่ผู้สมัคร 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_en": "what was the result where the candidates are sam m. gibbons (d) unopposed?",
    "question_th": "ผลลัพธ์ที่ได้คือผู้สมัครแซม ม. ชะนี (d) ค้าน?",
    "context": "CREATE TABLE table_1341663_10 (result VARCHAR, candidates VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1341663_10 WHERE district = \"Florida 9\"",
    "question_en": "who is the incumbent where the district is florida 9?",
    "question_th": "ใครเป็นผู้ดำรงตำแหน่งที่เขตฟลอริดา 9?",
    "context": "CREATE TABLE table_1341663_10 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341663_14 WHERE incumbent = \"Phil Crane\"",
    "question_en": "What is Phil Crane, democrat or republican ",
    "question_th": " Phil Crane พรรคเดโมแครตหรือรีพับลิกันคืออะไร",
    "context": "CREATE TABLE table_1341663_14 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT MIN(first_elected) FROM table_1341663_14 WHERE incumbent = \"Frank Annunzio\"",
    "question_en": "What year was Frank Annunzio elected",
    "question_th": "Frank Annunzio ได้รับเลือกในปีใด",
    "context": "CREATE TABLE table_1341663_14 (first_elected INTEGER, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(district) FROM table_1341718_43 WHERE incumbent = \"Ed Jones\"",
    "question_en": "How many districts does Ed Jones represent?",
    "question_th": "Ed Jones เป็นตัวแทนของเขตจำนวนกี่เขต?",
    "context": "CREATE TABLE table_1341718_43 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT first_elected FROM table_1341843_19 WHERE incumbent = \"Edwin E. Willis\"",
    "question_en": "What's the year of the first election of the district whose incumbent is Edwin E. Willis?",
    "question_th": "การเลือกตั้งครั้งแรกของเขตซึ่งมีผู้ดำรงตำแหน่งคือ 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_en": "What district is F. Edward Hebert the incumbent in?",
    "question_th": "F. Edward Hebert ดำรงตำแหน่งในเขตใด",
    "context": "CREATE TABLE table_1341843_19 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341843_19 WHERE incumbent = \"Joe Waggonner\"",
    "question_en": "Who were the candidates in the district whose incumbent is Joe Waggonner?",
    "question_th": "ใครคือผู้สมัครในเขตที่มีผู้ดำรงตำแหน่งคือ Joe Waggonner?",
    "context": "CREATE TABLE table_1341843_19 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341843_19 WHERE incumbent = \"Otto Passman\"",
    "question_en": "What's the district that Otto Passman is the incumbent of?",
    "question_th": "อ็อตโต พาสแมน อยู่เขตใด?",
    "context": "CREATE TABLE table_1341843_19 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341930_21 WHERE party = \"Republican\"",
    "question_en": "What is the district that has a republican?",
    "question_th": "เขตใดมีรีพับลิกัน?",
    "context": "CREATE TABLE table_1341930_21 (district VARCHAR, party VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341930_21 WHERE incumbent = \"Thomas J. Lane\"",
    "question_en": "What party is incumbent thomas j. lane from?",
    "question_th": "ฝ่ายใดเป็นผู้ดำรงตำแหน่ง thomas j. เลนจาก?",
    "context": "CREATE TABLE table_1341930_21 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT MAX(first_elected) FROM table_1341930_21",
    "question_en": "What is the last year that someone is first elected in this table?",
    "question_th": "ปีสุดท้ายที่มีการเลือกตั้งครั้งแรกในตารางนี้คือปีใด",
    "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_en": " how many party with candidates being alton lennon (d) 89.0% c. dana malpass (r) 11.0%",
    "question_th": " มีกี่พรรคที่มีผู้สมัครเป็นอัลตัน เลนนอน (d) 89.0% ดาน่า มัลพาส (สำรอง) 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_en": " how many first elected with district being north carolina 2",
    "question_th": " มีกี่คนที่ได้รับเลือกครั้งแรกโดยเขตเป็นนอร์ทแคโรไลนา 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_en": "what's the incumbent with district being north carolina 6",
    "question_th": "เขตที่มีหน้าที่คือนอร์ทแคโรไลนา 6 คืออะไร",
    "context": "CREATE TABLE table_1341930_33 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341930_33 WHERE incumbent = \"Herbert Covington Bonner\"",
    "question_en": "what's the party with incumbent being herbert covington bonner",
    "question_th": "ฝ่ายที่ผู้ดำรงตำแหน่งคือเฮอร์เบิร์ต โควิงตัน บอนเนอร์เป็นอย่างไรบ้าง",
    "context": "CREATE TABLE table_1341930_33 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341930_33 WHERE incumbent = \"Lawrence H. Fountain\"",
    "question_en": "what's the district with incumbent being lawrence h. fountain",
    "question_th": "เขตที่ดำรงตำแหน่งคือลอเรนซ์ เอช. น้ำพุ",
    "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_en": "what's the candidates with party being democratic and dbeingtrict being north carolina 1",
    "question_th": "ผู้สมัครที่พรรคเป็นประชาธิปไตยและนอร์ธแคโรไลนา 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_en": "What was the result of the election of incumbent john shelley?",
    "question_th": "ผลการเลือกตั้งผู้ดำรงตำแหน่งจอห์น เชลลีย์เป็นอย่างไร",
    "context": "CREATE TABLE table_1341973_6 (result VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341973_6 WHERE incumbent = \"John Shelley\"",
    "question_en": "What candidates ran in the election that included john shelley?",
    "question_th": "ผู้สมัครคนใดที่ลงสมัครในการเลือกตั้งซึ่งรวมถึงจอห์น เชลลีย์ด้วย",
    "context": "CREATE TABLE table_1341973_6 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1341973_6 WHERE incumbent = \"Clyde Doyle\"",
    "question_en": "What was the result of the election of the incumbent clyde doyle?",
    "question_th": "ผลการเลือกตั้งผู้ดำรงตำแหน่งไคลด์ ดอยล์ เป็นอย่างไร?",
    "context": "CREATE TABLE table_1341973_6 (result VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1341973_6 WHERE district = \"California 2\"",
    "question_en": "What was the result of the election in california 2?",
    "question_th": "ผลการเลือกตั้งแคลิฟอร์เนีย 2 เป็นอย่างไร?",
    "context": "CREATE TABLE table_1341973_6 (result VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1341973_6 WHERE incumbent = \"Harry R. Sheppard\"",
    "question_en": "What was the result of the election of the incumbent harry r. sheppard?",
    "question_th": "ผลการเลือกตั้งผู้ดำรงตำแหน่งแฮร์รี อาร์. เชพพาร์ด?",
    "context": "CREATE TABLE table_1341973_6 (result VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1342013_31 WHERE incumbent = \"Frank J. Becker\"",
    "question_en": "What party did Frank J. Becker represent?",
    "question_th": "Frank J. Becker เป็นตัวแทนของพรรคใด",
    "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_en": "What number of party had a candidate  resigned when appointed judge democratic hold?",
    "question_th": "จำนวนพรรคใดที่ผู้สมัครลาออกเมื่อได้รับแต่งตั้งให้เป็นผู้พิพากษาตามระบอบประชาธิปไตย?",
    "context": "CREATE TABLE table_1342013_31 (party VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1342013_31 WHERE incumbent = \"Ralph A. Gamble\"",
    "question_en": "What district did incumbent Ralph A. Gamble represent?",
    "question_th": "ราล์ฟ เอ. แกมเบิล ซึ่งดำรงตำแหน่งเป็นตัวแทนของเขตใด",
    "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_en": "Who is the incumbent candidate in the election of percy priest (d) 90.8% robert m. donihi (r) 9.2%?",
    "question_th": "ใครคือผู้สมัครดำรงตำแหน่งในการเลือกตั้งนักบวชเพอร์ซี่ (ง) 90.8% โรเบิร์ต ม. โดนิฮิ (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_en": "What district is tom j. murray from?",
    "question_th": "ทอมเจอยู่เขตไหนครับ เมอร์เรย์จาก?",
    "context": "CREATE TABLE table_1342013_41 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1342013_41 WHERE incumbent = \"James Patrick Sutton\"",
    "question_en": "What candidates were in the election when james patrick sutton was incumbent?",
    "question_th": "มีผู้สมัครคนใดบ้างในการเลือกตั้งเมื่อเจมส์ แพทริค ซัตตัน ดำรงตำแหน่ง",
    "context": "CREATE TABLE table_1342013_41 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1342149_3 WHERE incumbent = \"Albert Rains\"",
    "question_en": "What district has Albert Rains as their representative?",
    "question_th": "เขตใดมี Albert Rains เป็นตัวแทน?",
    "context": "CREATE TABLE table_1342149_3 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1342149_3 WHERE incumbent = \"Carl Elliott\"",
    "question_en": "Carl Elliott is a member of which party?",
    "question_th": "Carl Elliott เป็นสมาชิกพรรคใด",
    "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_en": "How many were first elected when the incumbent was Morgan M. Moulder?",
    "question_th": "มีกี่คนที่ได้รับเลือกครั้งแรกเมื่อผู้ดำรงตำแหน่งคือ 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_en": "In what year was Phil J. Welch first elected?",
    "question_th": "Phil J. Welch ได้รับเลือกครั้งแรกในปีใด",
    "context": "CREATE TABLE table_1342198_25 (first_elected VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1342198_25 WHERE incumbent = \"Dewey Short\"",
    "question_en": "What party was Dewey Short associated with?",
    "question_th": "Dewey Short เกี่ยวข้องกับฝ่ายใด",
    "context": "CREATE TABLE table_1342198_25 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1342198_25 WHERE party = \"Republican\"",
    "question_en": "What is the district with Republican party in place?",
    "question_th": "เขตใดมีพรรครีพับลิกัน?",
    "context": "CREATE TABLE table_1342198_25 (district VARCHAR, party VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1342198_3 WHERE district = \"Alabama 1\"",
    "question_en": "Who ran for office in the Alabama 1 district?",
    "question_th": "ใครลงสมัครรับตำแหน่งในเขตอลาบามา 1",
    "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_en": "What year was first elected william m. wheeler (d) unopposed?",
    "question_th": "วิลเลียม เอ็ม. ได้รับเลือกเป็นครั้งแรกในปีใด ล้อ (d) ค้าน?",
    "context": "CREATE TABLE table_1342218_11 (first_elected VARCHAR, candidates VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1342218_11 WHERE incumbent = \"James C. Davis\"",
    "question_en": "What district does  incumbent  james c. davis represent?",
    "question_th": "เจมส์ ซี. ผู้ดำรงตำแหน่งเขตใด เดวิสเป็นตัวแทนเหรอ?",
    "context": "CREATE TABLE table_1342218_11 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1342233_13 WHERE incumbent = \"Melvin Price\"",
    "question_en": "What district is incumbent melvin price from?",
    "question_th": "ราคาเมลวินผู้ดำรงตำแหน่งอยู่ที่อำเภอไหน?",
    "context": "CREATE TABLE table_1342233_13 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1342233_13 WHERE incumbent = \"Sid Simpson\"",
    "question_en": "What district is incumbent sid simpson from?",
    "question_th": "ซิด ซิมป์สัน มาจากเขตใด",
    "context": "CREATE TABLE table_1342233_13 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1342233_42 WHERE district = \"Tennessee 9\"",
    "question_en": "Who was the candidate in the election in the Tennessee 9 district? ",
    "question_th": " ใครคือผู้สมัครรับเลือกตั้งในเขตเทนเนสซี 9?",
    "context": "CREATE TABLE table_1342233_42 (candidates VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT MAX(first_elected) FROM table_1342233_42 WHERE district = \"Tennessee 3\"",
    "question_en": "When was the Tennessee 3 district incumbent first elected? ",
    "question_th": " ผู้ดำรงตำแหน่งเขตเทนเนสซี 3 ได้รับเลือกครั้งแรกเมื่อใด",
    "context": "CREATE TABLE table_1342233_42 (first_elected INTEGER, district VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1342233_42 WHERE incumbent = \"Harold Earthman\"",
    "question_en": "What district was Harold Earthman the incumbent in? ",
    "question_th": " Harold Earthman ดำรงตำแหน่งในเขตใด",
    "context": "CREATE TABLE table_1342233_42 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1342249_32 WHERE district = \"New York 1\"",
    "question_en": "Name the result for new york 1",
    "question_th": "ตั้งชื่อผลลัพธ์สำหรับ 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_en": "Name the first elected for lost renomination democratic loss",
    "question_th": "ตั้งชื่อคนแรกที่ได้รับเลือกให้แพ้การเลือกตั้งแพ้ทางประชาธิปไตย",
    "context": "CREATE TABLE table_1342249_32 (first_elected VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1342249_42 WHERE incumbent = \"Jere Cooper\"",
    "question_en": "How many results have Jere Cooper as incumbent?",
    "question_th": "Jere Cooper มีผลลัพธ์กี่รายการ?",
    "context": "CREATE TABLE table_1342249_42 (result VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1342256_13 WHERE district = \"Illinois 13\"",
    "question_en": "Who won the election of 1942 in the district Illinois 13?",
    "question_th": "ใครชนะการเลือกตั้งในปี 2485 ในเขตอิลลินอยส์ 13",
    "context": "CREATE TABLE table_1342256_13 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1342256_11 WHERE first_elected = 1924",
    "question_en": "Who ran for the House in the 1924 election?",
    "question_th": "ใครลงสมัครชิงตำแหน่งสภาผู้แทนราษฎรในการเลือกตั้งปี พ.ศ. 2467?",
    "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_en": "What year was Stephen Pace elected?",
    "question_th": "Stephen Pace ได้รับเลือกในปีใด",
    "context": "CREATE TABLE table_1342256_11 (first_elected INTEGER, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(incumbent) FROM table_1342256_11 WHERE first_elected = 1926",
    "question_en": "How many incumbents were elected in the 1926 election?",
    "question_th": "ในการเลือกตั้งปี พ.ศ. 2469 มีผู้ดำรงตำแหน่งจำนวนเท่าใด",
    "context": "CREATE TABLE table_1342256_11 (incumbent VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1342270_17 WHERE incumbent = \"Noble Jones Gregory\"",
    "question_en": "Who were the candidates when Noble Jones Gregory was incumbent?",
    "question_th": "ใครคือผู้สมัครเมื่อ Noble Jones Gregory ดำรงตำแหน่ง?",
    "context": "CREATE TABLE table_1342270_17 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1342338_6 WHERE incumbent = \"Harry Lane Englebright\"",
    "question_en": "What is the district for harry lane englebright?",
    "question_th": "แฮร์รี่ เลน เองเกิลไบรท์ อำเภออะไร?",
    "context": "CREATE TABLE table_1342338_6 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1342338_6 WHERE district = \"California 2\"",
    "question_en": "What is the result for california 2?",
    "question_th": "ผลลัพธ์ของแคลิฟอร์เนีย 2 คืออะไร?",
    "context": "CREATE TABLE table_1342338_6 (result VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1342338_6 WHERE incumbent = \"Richard J. Welch\"",
    "question_en": "What is the party for richard j. welch?",
    "question_th": "งานเลี้ยงของริชาร์ด เจ. เวลช์?",
    "context": "CREATE TABLE table_1342338_6 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(incumbent) FROM table_1342359_23 WHERE first_elected = 1922",
    "question_en": "How many winners were there in the race of 1922",
    "question_th": "มีผู้ชนะกี่คนในการแข่งขันปี 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_en": "Who was the incumbent when henry e. barbour ran?",
    "question_th": "ใครเป็นผู้ดำรงตำแหน่งเมื่อเฮนรี่ อี. บาร์เบอร์วิ่งเหรอ?",
    "context": "CREATE TABLE table_1342379_5 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(party) FROM table_1342393_17 WHERE incumbent = \"Whitmell P. Martin\"",
    "question_en": " how many party with incumbent being whitmell p. martin",
    "question_th": " มีกี่ฝ่ายที่ดำรงตำแหน่งเป็นวิทเมลพี. มาร์ติน",
    "context": "CREATE TABLE table_1342393_17 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1342393_17 WHERE incumbent = \"James O'Connor\"",
    "question_en": "who is the the candidates with incumbent being james o'connor",
    "question_th": "ซึ่งเป็นผู้สมัครชิงตำแหน่ง เจมส์ โอคอนเนอร์",
    "context": "CREATE TABLE table_1342393_17 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(incumbent) FROM table_1342393_17 WHERE first_elected = 1924",
    "question_en": " how many incumbent with first elected being 1924",
    "question_th": " มีผู้ดำรงตำแหน่งกี่คนโดยได้รับเลือกครั้งแรกคือ พ.ศ. 2467",
    "context": "CREATE TABLE table_1342393_17 (incumbent VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1342393_16 WHERE district = \"Kentucky 9\"",
    "question_en": "Name the incumbent for kentucky 9",
    "question_th": "ตั้งชื่อผู้ดำรงตำแหน่งของรัฐเคนตักกี้ 9",
    "context": "CREATE TABLE table_1342393_16 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1342393_16 WHERE first_elected = 1920",
    "question_en": "Name the party or first elected is 1920",
    "question_th": "ตั้งชื่อพรรคหรือเลือกครั้งแรกคือ พ.ศ. 2463",
    "context": "CREATE TABLE table_1342393_16 (party VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1342393_16 WHERE first_elected = 1914",
    "question_en": "What is the candidates for first elected 1914",
    "question_th": "ผู้สมัครที่ได้รับการเลือกตั้งครั้งแรกในปี พ.ศ. 2457 คืออะไร",
    "context": "CREATE TABLE table_1342393_16 (candidates VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1342393_41 WHERE incumbent = \"Cordell Hull\"",
    "question_en": "What was the result of the election for incumbent Cordell Hull?",
    "question_th": "ผลการเลือกตั้งผู้ดำรงตำแหน่งคอร์เดลล์ ฮัลล์เป็นอย่างไร?",
    "context": "CREATE TABLE table_1342393_41 (result VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(district) FROM table_1342393_41 WHERE incumbent = \"Cordell Hull\"",
    "question_en": "Cordell Hull is the incumbent in how many districts?",
    "question_th": "คอร์เดลล์ ฮัลล์ ดำรงตำแหน่งในกี่เขต?",
    "context": "CREATE TABLE table_1342393_41 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT MIN(first_elected) FROM table_1342393_42 WHERE incumbent = \"Tom Connally\"",
    "question_en": "What was the total number of votes for Tom Connally",
    "question_th": "จำนวนคะแนนโหวตของ 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_en": "What year was incumbent william f. stevenson first elected?",
    "question_th": "วิลเลียม เอฟ. ดำรงตำแหน่งในปีใด สตีเวนสันได้รับเลือกครั้งแรก?",
    "context": "CREATE TABLE table_1342451_38 (first_elected VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT MAX(first_elected) FROM table_1342451_38",
    "question_en": "What is the last year on this list someone was first elected?",
    "question_th": "ปีที่แล้วในรายการนี้มีคนได้รับเลือกครั้งแรกคือปีใด",
    "context": "CREATE TABLE table_1342451_38 (first_elected INTEGER)"
  },
  {
    "answer": "SELECT candidates FROM table_1342451_38 WHERE incumbent = \"Samuel J. Nicholls\"",
    "question_en": "What candidate was featured in the election for incumbent samuel j. nicholls' seat?",
    "question_th": "ผู้สมัครคนใดมีจุดเด่นในการเลือกตั้งผู้ดำรงตำแหน่งซามูเอล เจ. ที่นั่งของนิโคลส์เหรอ?",
    "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_en": "What is the last year incumbent frederick h. dominick was first elected?",
    "question_th": "ปีที่แล้วเฟรเดอริก เอช. ดำรงตำแหน่งอะไร โดมินิคถูกเลือกครั้งแรกเหรอ?",
    "context": "CREATE TABLE table_1342451_38 (first_elected INTEGER, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1346137_4 WHERE first_elected = \"1910\"",
    "question_en": "Who were the candidates when the winner was first elected in 1910?",
    "question_th": "ใครคือผู้สมัครเมื่อผู้ชนะได้รับเลือกครั้งแรกในปี 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_en": "What was the winning party when the incumbent was richard s. whaley?",
    "question_th": "ฝ่ายที่ชนะคืออะไรเมื่อผู้ดำรงตำแหน่งคือริชาร์ดส. วาฬเหรอ?",
    "context": "CREATE TABLE table_1346137_4 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(candidates) FROM table_1346137_4 WHERE incumbent = \"David E. Finley\"",
    "question_en": "How many different set of candidates were there when the incumbent was david e. finley?",
    "question_th": "มีผู้สมัครกี่กลุ่มที่แตกต่างกันเมื่อผู้ดำรงตำแหน่งคือเดวิด อี ฟินลีย์?",
    "context": "CREATE TABLE table_1346137_4 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1346137_4 WHERE district = \"South Carolina 3\"",
    "question_en": "What was the winning part in the district of South Carolina 3?",
    "question_th": "ส่วนที่ชนะในเขตเซาท์แคโรไลนา 3 คืออะไร?",
    "context": "CREATE TABLE table_1346137_4 (party VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1346137_4 WHERE district = \"South Carolina 5\"",
    "question_en": "Who were the candidates in the district of South Carolina 5?",
    "question_th": "ใครคือผู้สมัครในเขตเซาท์แคโรไลนา 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_en": "When was incumbent John N. Tillman first elected?",
    "question_th": "ผู้ดำรงตำแหน่ง John N. Tillman ได้รับเลือกครั้งแรกเมื่อใด",
    "context": "CREATE TABLE table_1346118_4 (first_elected INTEGER, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_13464416_8 WHERE record = \"16-44\"",
    "question_en": "What was the location and attendance when the team's record was 16-44?",
    "question_th": "สถานที่และการเข้าร่วมเมื่อสถิติของทีมคือ 16-44 คืออะไร?",
    "context": "CREATE TABLE table_13464416_8 (location_attendance VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_13464416_8 WHERE team = \"Chicago\"",
    "question_en": "What day was the game at chicago?",
    "question_th": "เกมที่ชิคาโกเป็นวันไหน?",
    "context": "CREATE TABLE table_13464416_8 (date VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_13464416_4 WHERE game = 7",
    "question_en": "Who were the high point scorers in game 7?",
    "question_th": "ใครคือผู้ทำแต้มสูงสุดในเกมที่ 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_en": "Who had the high rebound total against golden state?",
    "question_th": "ใครมียอดรวมการรีบาวด์สูงเมื่อเทียบกับโกลเด้นสเตท?",
    "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_en": "how many times have there been helps by damon stoudamire (13)",
    "question_th": "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_en": "who made the recovers where the score is 12-30",
    "question_th": "ที่ทำแต้มได้ 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_en": "tell who made the most scores on new jersey",
    "question_th": "บอกว่าใครทำคะแนนได้มากที่สุดในนิวเจอร์ซีย์",
    "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_en": "how many times was the participation at omni coliseum 7,194?",
    "question_th": "ผู้เข้าร่วม 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_en": "The minimum average number of dancers is 34.1 how many times",
    "question_th": "จำนวนนักเต้นเฉลี่ยขั้นต่ำคือ 34.1 จำนวนครั้ง",
    "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_en": "What is the Number of dances is 11 and competition finish is larger than 2.0 total",
    "question_th": "จำนวนการเต้นรำคือ 11 และการแข่งขันจบมีขนาดใหญ่กว่า 2.0 รวม",
    "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_en": "Who is the club that has 30 points?",
    "question_th": "สโมสรไหนมี 30 แต้ม?",
    "context": "CREATE TABLE table_13564637_5 (club VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT tries_for FROM table_13564637_5 WHERE try_bonus = \"8\"",
    "question_en": "What were all the tries for when the try bonus was 8?",
    "question_th": "ความพยายามทั้งหมดคืออะไรเมื่อโบนัสความพยายามคือ 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_en": "What were the points for when there were 30 tries against?",
    "question_th": "อะไรคือคะแนนเมื่อมีการพยายามต่อต้าน 30 ครั้ง?",
    "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_en": "How many numbers were recorded points against  when the tries were for 43?",
    "question_th": "มีการบันทึกตัวเลขกี่คะแนนเทียบกับเมื่อพยายามทำ 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_en": "What are the tries against  when points against 287?",
    "question_th": "อะไรคือความพยายามเมื่อทำแต้มต่อ 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_en": "What were all the points for Tonyrefail RFC?",
    "question_th": "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_en": "Pink cytoplasm is seen in a test that specifically stains what?",
    "question_th": "ไซโตพลาสซึมสีชมพูพบได้ในการทดสอบที่ตรวจพบคราบอะไรเป็นพิเศษ",
    "context": "CREATE TABLE table_13570_1 (specifically_stains VARCHAR, cytoplasm VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(cytoplasm) FROM table_13570_1 WHERE nucleus = \"Blue\"",
    "question_en": "How many cytoplasms result in a blue nucleus?",
    "question_th": "ไซโตพลาสซึมทำให้เกิดนิวเคลียสสีน้ำเงินจำนวนเท่าใด",
    "context": "CREATE TABLE table_13570_1 (cytoplasm VARCHAR, nucleus VARCHAR)"
  },
  {
    "answer": "SELECT specifically_stains FROM table_13570_1 WHERE nucleus = \"Blue/black\"",
    "question_en": "A nucleus that is blue/black will specifically stain what?",
    "question_th": "นิวเคลียสที่เป็นสีน้ำเงิน/ดำจะเปื้อนอะไรเป็นพิเศษ",
    "context": "CREATE TABLE table_13570_1 (specifically_stains VARCHAR, nucleus VARCHAR)"
  },
  {
    "answer": "SELECT nucleus FROM table_13570_1 WHERE cytoplasm = \"Pink\"",
    "question_en": "The pink cytoplasm will have a nucleus of what color?",
    "question_th": "ไซโตพลาสซึมสีชมพูจะมีนิวเคลียสเป็นสีอะไร",
    "context": "CREATE TABLE table_13570_1 (nucleus VARCHAR, cytoplasm VARCHAR)"
  },
  {
    "answer": "SELECT stain FROM table_13570_1 WHERE common_use = \"Elastic fibers\"",
    "question_en": "What stain is used commonly for elastic fibers?",
    "question_th": "เส้นใยอีลาสติคมักใช้คราบอะไร?",
    "context": "CREATE TABLE table_13570_1 (stain VARCHAR, common_use VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_1359212_2 WHERE second_place = \"United Kingdom\"",
    "question_en": "where is hte second place winner from united kingdom?",
    "question_th": "ผู้ชนะอันดับสองจากสหราชอาณาจักรอยู่ที่ไหน?",
    "context": "CREATE TABLE table_1359212_2 (winner VARCHAR, second_place VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(location) FROM table_1359212_2 WHERE winner = \"Spain\"",
    "question_en": "how many locations has spain as the winner?",
    "question_th": "สเปนเป็นผู้ชนะกี่แห่ง?",
    "context": "CREATE TABLE table_1359212_2 (location VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT artist FROM table_1359212_2 WHERE venue = \"Heineken Music Hall\"",
    "question_en": "who is the artist performing at heineken music hall?",
    "question_th": "ศิลปินที่แสดงที่ไฮเนเก้นมิวสิคฮอลล์คือใคร?",
    "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_en": "what amount has spain as second place and the language is russian?",
    "question_th": "สเปนเป็นอันดับสองเท่าไหร่ และภาษารัสเซียคือเท่าไร?",
    "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_en": "how many Curtiss XBTC aircraft are retired?",
    "question_th": "เครื่องบิน Curtiss XBTC กี่ลำที่เลิกใช้แล้ว?",
    "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_en": "How many Airspeed Fleet Shadower aircraft are retired?",
    "question_th": "เครื่องบิน Airspeed Fleet Shadower กี่ลำที่เลิกใช้แล้ว?",
    "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_en": "What is the origin of aircraft in service in 1943 and retired in 1954?",
    "question_th": "ต้นกำเนิดของเครื่องบินที่ให้บริการในปี พ.ศ. 2486 และเลิกให้บริการในปี พ.ศ. 2497 คืออะไร?",
    "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_en": "Who was the winner when the time was 1:24.00?",
    "question_th": "ใครเป็นผู้ชนะเมื่อเวลา 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_en": "How many results were there for the Stan Fox Stakes race?",
    "question_th": "การแข่งขัน Stan Fox Stakes มีผลลัพธ์กี่รายการ?",
    "context": "CREATE TABLE table_1360997_2 (result VARCHAR, race VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1360997_2 WHERE venue = \"Rosehill\"",
    "question_en": "Was the rosehill venue a win or loss?",
    "question_th": "สนามโรสฮิลล์ชนะหรือแพ้?",
    "context": "CREATE TABLE table_1360997_2 (result VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT MIN(total) FROM table_13606924_1 WHERE kerry__percentage = \"16.71%\"",
    "question_en": "what is the minimum total with kerry % being 16.71%",
    "question_th": "รวมขั้นต่ำคือกี่% kerry อยู่ที่ 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_en": "what is the minimum kerry # with bush % being 78.40%",
    "question_th": "kerry ขั้นต่ำเท่าไหร่ครับ #โดยบุช % อยู่ที่ 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_en": "what's the kerry # with county being ness county, kansas",
    "question_th": "เคอร์รี # คืออะไร โดยเคาน์ตีเป็นเนสเคาน์ตี แคนซัส",
    "context": "CREATE TABLE table_13606924_1 (kerry__number VARCHAR, county VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(total) FROM table_13606924_1 WHERE bush__number = 1552",
    "question_en": " how many total with bush # being 1552",
    "question_th": " รวมจำนวนบุช # เป็น 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_en": "what is the minimum bush # with kerry # being 3938",
    "question_th": "บุชขั้นต่ำเท่าไหร่คะ #กับเคอรี่ #เป็น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_en": " how many total with county being rooks county, kansas",
    "question_th": " ทั้งหมดกี่แห่งโดยเคาน์ตีเป็นเทศมณฑลรูคส์ รัฐแคนซัส",
    "context": "CREATE TABLE table_13606924_1 (total VARCHAR, county VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_13618584_1 WHERE incumbent = \"Dick Saslaw\"",
    "question_en": "In which district was the incumbent Dick Saslaw? ",
    "question_th": " 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_en": "What was the 2007 result in the district where the incumbent was elected in 1996? ",
    "question_th": " ผลลัพธ์ในปี 2550 ในเขตที่ได้รับเลือกผู้ดำรงตำแหน่งในปี 2539 คืออะไร",
    "context": "CREATE TABLE table_13618584_1 (elected VARCHAR)"
  },
  {
    "answer": "SELECT 2007 AS _result FROM table_13618584_1 WHERE district = \"28th\"",
    "question_en": "What was the 2007 result in the 28th district? ",
    "question_th": " ผลการแข่งขันปี 2550 ในเขต 28 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_13618584_1 (district VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_13618584_1 WHERE incumbent = \"Charles Hawkins\"",
    "question_en": "In what district was the incumbent Charles Hawkins? ",
    "question_th": " 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_en": "What's the number of the game played on March 26?",
    "question_th": "วันที่ 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_en": "How many different values if the number is high rebounds can be found for the game on March 13?",
    "question_th": "ถ้าตัวเลขรีบาวด์สูงสามารถพบได้ในเกมวันที่ 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_en": "Who ihad the highest points and what was the number when the record was 11-40?",
    "question_th": "ใครมีคะแนนสูงสุด และตัวเลขเมื่อทำสถิติ 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_en": "Who did the Raptors play when their record was 45-36? ",
    "question_th": "Raptors เล่นกับใครเมื่อสถิติของพวกเขาอยู่ที่ 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_en": "What number game of the season was played on April 12? ",
    "question_th": " วันที่ 12 เมษายน เล่นเกมหมายเลขใดของฤดูกาล?",
    "context": "CREATE TABLE table_13619135_8 (game INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(total__number) FROM table_13625792_1 WHERE county = \"Wayne\"",
    "question_en": "How many votes were cast in Wayne county?",
    "question_th": "มีผู้ลงคะแนนเสียงกี่คะแนนในเวย์นเคาน์ตี้",
    "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_en": "In the county where Bush won 77.76%, how many total votes were cast?",
    "question_th": "ในเขตที่บุชชนะ 77.76% มีผู้ลงคะแนนทั้งหมดกี่เสียง",
    "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_en": "In the country where Bush won 4333 votes, what percentage did other receive?",
    "question_th": "ในประเทศที่บุชได้รับคะแนนเสียง 4,333 เสียง คนอื่น ๆ ได้รับคะแนนกี่เปอร์เซ็นต์?",
    "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_en": "Who was the TO winning team when the TU winning team was Joe Richardson? ",
    "question_th": " ทีมที่ชนะ TO คือใครเมื่อทีมที่ชนะ TU คือ 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_en": "On what circuit was the GTU winning team #59 Brumos Porsche - Audi in round 5? ",
    "question_th": " ทีม #59 Brumos Porsche - Audi เป็นผู้ชนะ GTU ในรอบที่ 5 ในรอบที่ 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_en": "Who was the GTU winning team when the TO winning team was #3 Camaro? ",
    "question_th": " ใครคือทีมที่ชนะ GTU เมื่อทีมที่ชนะ TO คือ #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_en": "Who was the GTU winning team when the TO winning team was Steve Ross? ",
    "question_th": " ใครคือทีมที่ชนะ GTU เมื่อทีมที่ชนะ TO คือ 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_en": "Who was the GTO winning team in round 5 when the GTU winning team was #59 Brumos Porsche - Audi? ",
    "question_th": " ใครคือทีมที่ชนะ GTO ในรอบที่ 5 เมื่อทีมที่ชนะ GTU คือ #59 บรูมอส พอร์ช - 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_en": "Who was the GTO winning team when the TO winning team was #84 Camaro? ",
    "question_th": " ใครคือทีมที่ชนะ GTO เมื่อทีมที่ชนะ TO คือ #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_en": "Name the results for steve millen",
    "question_th": "ตั้งชื่อผลลัพธ์สำหรับสตีฟ มิลเลน",
    "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_en": "What is the most rnd for watkins glen?",
    "question_th": "วัตคินส์เกลนราคาเท่าไหร่คะ?",
    "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_en": "What was the GTP winning team in the round in Portland during which Jack Baldwin become part of the GTU winning team? ",
    "question_th": "ทีมใดที่ชนะ GTP ในรอบที่พอร์ตแลนด์ซึ่ง Jack Baldwin กลายเป็นส่วนหนึ่งของทีมที่ชนะ GTU",
    "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_en": "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? ",
    "question_th": " จำนวนรอบที่ #56 Blue Thunder Racing กลายเป็นทีมชนะ GTP และ #38 Mandeville Auto Tech กลายเป็นทีมที่ชนะ GTO มีจำนวนเท่าใด",
    "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_en": "How many different results came out of the round in which #98 All American Racers became the GTU winning team? ",
    "question_th": " มีผลลัพธ์ที่แตกต่างกันออกไปกี่รายการจากรอบที่ #98 All American Racers กลายเป็นทีมที่ชนะ GTU",
    "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_en": "Who was the GTO winner of the round that ended with Chris Cord becoming the GTU winner? ",
    "question_th": " ใครคือผู้ชนะ GTO ในรอบที่จบลงด้วยการที่ Chris Cord กลายเป็นผู้ชนะ GTU",
    "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–0)\"",
    "question_en": "what are all the uu-usu score with winner is #5 brigham young (2–0)",
    "question_th": "คะแนน uu-usu ของผู้ชนะคือ #5 บริกแฮม ยัง (2–0) เป็นเท่าใด",
    "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–7\"",
    "question_en": "what is the maximum season with byu-usu score being 29–7",
    "question_th": "ฤดูกาลสูงสุดที่คะแนน byu-usu อยู่ที่ 29–7 คือเท่าใด",
    "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–17 BYU #19\"",
    "question_en": "what is the maximum season with byu-uu score being 20–17 byu #19",
    "question_th": "ฤดูกาลสูงสุดที่คะแนน byu-uu อยู่ที่ 20–17 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–1) Won over BYU by media vote\"",
    "question_en": " how many byu-uu score with winner being utah state (2–1) won over byu by media vote",
    "question_th": " มีคะแนน byu-uu กี่คะแนนโดยผู้ชนะคือรัฐยูทาห์ (2–1) ชนะ byu โดยการโหวตของสื่อ",
    "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–16\"",
    "question_en": "what's the byu-uu score with uu-usu score being 44–16",
    "question_th": "คะแนน byu-uu คืออะไร โดยคะแนน uu-usu อยู่ที่ 44–16",
    "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_en": "What are all the languages for tsotsi?",
    "question_th": "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_en": "What year featured the film tsotsi?",
    "question_th": "ภาพยนตร์เรื่องนี้นำเสนอในปีใด 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_en": "What was the result for the film life, above all?",
    "question_th": "อะไรคือผลลัพธ์ของชีวิตภาพยนตร์ เหนือสิ่งอื่นใด?",
    "context": "CREATE TABLE table_13700749_1 (result VARCHAR, film_title VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(overall) FROM table_13758243_1 WHERE player = \"Jerry Hill\"",
    "question_en": "What numer pick in the draft for jerry hill?",
    "question_th": "เจอร์รี ฮิลล์เลือกหมายเลขใดในดราฟท์?",
    "context": "CREATE TABLE table_13758243_1 (overall VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_13758243_1 WHERE position = \"Kicker\"",
    "question_en": "What kicker was drafted?",
    "question_th": "นักเตะคนไหนถูกร่างขึ้นมา?",
    "context": "CREATE TABLE table_13758243_1 (player VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT nfl_team FROM table_13758243_1 WHERE player = \"Steve Scifres\"",
    "question_en": "What team drafted steve scifres?",
    "question_th": "ทีมไหนดราฟต์ สตีฟ ซิเฟรส?",
    "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_en": "What year was jerry marion drafted?",
    "question_th": "เจอร์รี แมเรียนถูกร่างขึ้นในปีใด",
    "context": "CREATE TABLE table_13758243_1 (draft_year INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(overall) FROM table_13758243_1 WHERE player = \"Jerry Marion\"",
    "question_en": "What numer pick in the draft for jerry marion",
    "question_th": "เจอร์รี แมเรียนเลือกหมายเลขใดในดราฟท์",
    "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_en": "what's the record with high points being dwyane wade (27) and location attendance being arco arena",
    "question_th": "สถิติที่มีคะแนนสูงสุดคือ ดเวย์น เวด (27) และผู้เข้าร่วมคืออาร์โกอารีน่า",
    "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_en": " how many high assists with record being 15-11",
    "question_th": " แอสซิสต์ได้มากสุดด้วยสถิติ 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_en": "who had high points on december 3",
    "question_th": "ซึ่งมีคะแนนสูงสุดในวันที่ 3 ธันวาคม",
    "context": "CREATE TABLE table_13762472_4 (high_points VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_13762472_4 WHERE score = \"W 111–92 (OT)\"",
    "question_en": "who had high rebounds when score is w 111–92 (ot)",
    "question_th": "ที่มีการรีบาวด์สูงเมื่อสกอร์อยู่ที่ 111–92 (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_en": "who had all the high rebounds when high assists is by dwyane wade (9)",
    "question_th": "ที่มีการรีบาวด์สูงทั้งหมดเมื่อแอสซิสต์สูงคือ ดเวย์น เวด (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_en": "what's the record with date being december 29",
    "question_th": "บันทึกวันที่ 29 ธันวาคมคือวันที่เท่าไร",
    "context": "CREATE TABLE table_13762472_4 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MIN(2002 AS _population) FROM table_13764346_1",
    "question_en": "What is the smallest population recorded back in 2002?",
    "question_th": "ประชากรที่เล็กที่สุดที่บันทึกไว้ในปี 2545 คือเท่าใด",
    "context": "CREATE TABLE table_13764346_1 (Id VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_13805432_2 WHERE artist = \"Jim Reeves\"",
    "question_en": "what's the position with artbeingt being jim reeves",
    "question_th": "ตำแหน่งที่ artbeingt เป็นจิม รีฟส์คืออะไร",
    "context": "CREATE TABLE table_13805432_2 (position VARCHAR, artist VARCHAR)"
  },
  {
    "answer": "SELECT highest_position FROM table_13805432_2 WHERE artist = \"Frankie Avalon\"",
    "question_en": "what's the highest position with artbeingt being frankie avalon",
    "question_th": "ตำแหน่งสูงสุดที่อาร์ตบีอิ้งคือแฟรงกี้ อวาลอนคือที่ไหน",
    "context": "CREATE TABLE table_13805432_2 (highest_position VARCHAR, artist VARCHAR)"
  },
  {
    "answer": "SELECT song_title FROM table_13805432_2 WHERE artist = \"Pat Boone\"",
    "question_en": "what's the song title with artbeingt being pat boone",
    "question_th": "artbeingt ถูก 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_en": "what is the minimum highest position with artbeingt being paul evans",
    "question_th": "ตำแหน่งสูงสุดขั้นต่ำสุดโดยที่อาร์ตบีอิ้งคือพอล อีแวนส์คือเท่าไร",
    "context": "CREATE TABLE table_13805432_2 (highest_position INTEGER, artist VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_13812785_5 WHERE date = \"December 22\"",
    "question_en": "Who was responsible and what was the number for the high rebounds on December 22?",
    "question_th": "ใครเป็นคนรับผิดชอบและรีบาวด์สูงสุดในวันที่ 22 ธันวาคมจำนวนเท่าไหร่?",
    "context": "CREATE TABLE table_13812785_5 (high_rebounds VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_13812785_8 WHERE score = \"W 102–81 (OT)\"",
    "question_en": "What is the record where the score is w 102–81 (ot)?",
    "question_th": "บันทึกที่มีคะแนน w 102–81 (ot) คืออะไร?",
    "context": "CREATE TABLE table_13812785_8 (record VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_13812785_8 WHERE date = \"March 13\"",
    "question_en": "Who had the high points dated march 13?",
    "question_th": "ใครมีคะแนนสูงสุดในวันที่ 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_en": "Who had the most high points and rebounds than charles oakley (9)?",
    "question_th": "ใครมีแต้มและรีบาวด์มากที่สุดมากกว่า ชาร์ลส์ โอ๊คลีย์ (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_en": "who is the the incumbent with opponent being anthony weiner (d) unopposed",
    "question_th": "ซึ่งเป็นผู้ดำรงตำแหน่งโดยฝ่ายตรงข้ามคือ Anthony Weiner (d) ค้าน",
    "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_en": "who is the the incumbent with opponent being peter king (r) 56.0% david mejias (d) 44.0%",
    "question_th": "ซึ่งครองตำแหน่งคู่ต่อสู้คือ ปีเตอร์ คิง (ขวา) 56.0% เดวิด เมเจียส (ง) 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_en": "what's the district with party being republican and elected being 1998",
    "question_th": "เขตใดที่มีพรรครีพับลิกันและได้รับเลือกเป็นปี 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_en": "what is the minimum district with incumbent being tom reynolds",
    "question_th": "เขตขั้นต่ำที่ผู้ดำรงตำแหน่งคือทอม เรโนลส์คือเท่าไร",
    "context": "CREATE TABLE table_13833770_3 (district INTEGER, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_13833770_3 WHERE incumbent = \"Eliot Engel\"",
    "question_en": "what's the status with incumbent being eliot engel",
    "question_th": "สถานะผู้ดำรงตำแหน่งคือเอเลียต เองเกลเป็นอย่างไร",
    "context": "CREATE TABLE table_13833770_3 (status VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(womens_doubles) FROM table_13845918_3 WHERE year = \"1986\"",
    "question_en": "Name the number of women's doubles for 1986",
    "question_th": "ตั้งชื่อจำนวนหญิงคู่ปี 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_en": "what was the lowest numbers for the winner gregory w. meeks",
    "question_th": "หมายเลขต่ำสุดของผู้ชนะ Gregory W คือเท่าใด อ่อนโยน",
    "context": "CREATE TABLE table_13870048_3 (elected INTEGER, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT frequency FROM table_13869651_3 WHERE part_number_s_ = \"ADO520BIAA5DO\"",
    "question_en": "What is the frequency of the model whose part number is ado520biaa5do? ",
    "question_th": " ความถี่ของรุ่นที่มีหมายเลขชิ้นส่วนคือ 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_en": "When's the release date of the model with part number adh485biaa5do? ",
    "question_th": " รุ่นที่มีหมายเลขชิ้นส่วน 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_en": "What is the HT value of threw Athlon x2 5200b model? ",
    "question_th": " ค่า HT ของรุ่นโยน Athlon x2 5200b เป็นเท่าใด?",
    "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_en": "How many different frequencies does the model with part number ado540biaa5do? ",
    "question_th": "รุ่นที่มีหมายเลขชิ้นส่วน 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_en": "What is the entire inhabitants in Southeast Asia?",
    "question_th": "ประชากรทั้งหมดในเอเชียตะวันออกเฉียงใต้คืออะไร?",
    "context": "CREATE TABLE table_1389609_3 (total_population INTEGER, region VARCHAR)"
  },
  {
    "answer": "SELECT MIN(average) FROM table_14003020_5 WHERE highest = 2363",
    "question_en": "what is the minimum average with highest being 2363",
    "question_th": "ค่าเฉลี่ยต่ำสุดโดยสูงสุดคือ 2363 คือเท่าใด",
    "context": "CREATE TABLE table_14003020_5 (average INTEGER, highest VARCHAR)"
  },
  {
    "answer": "SELECT MIN(lowest) FROM table_14003020_5 WHERE highest = 2363",
    "question_en": "what is the minimum lowest with highest being 2363",
    "question_th": "ค่าต่ำสุดต่ำสุดสูงสุดคือ 2363",
    "context": "CREATE TABLE table_14003020_5 (lowest INTEGER, highest VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_14003020_5 WHERE stadium = \"Glebe Park\"",
    "question_en": "what's the team with stadium being glebe park",
    "question_th": "ทีมอะไรที่มีสนามกีฬาเป็นเกลบพาร์ค",
    "context": "CREATE TABLE table_14003020_5 (team VARCHAR, stadium VARCHAR)"
  },
  {
    "answer": "SELECT production_code FROM table_14035132_3 WHERE no_in_series = \"37b\"",
    "question_en": "What's the production code of the episode with a series number 37b? ",
    "question_th": " รหัสการผลิตของตอนที่มีซีรีส์หมายเลข 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_en": "On what date did the episode with a series number 31, with a story written by William Reiss, air for the first time? ",
    "question_th": " ตอนของซีรีส์หมายเลข 31 ซึ่งเขียนโดย William Reiss ออกอากาศครั้งแรกเมื่อใด?",
    "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_en": "When did the episode with season number 10b air for the first time? ",
    "question_th": " ตอนที่มีซีซั่นหมายเลข 10b ออกอากาศครั้งแรกเมื่อใด",
    "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_en": "When did the episode with series number 29a originally air? ",
    "question_th": " ตอนของซีรีส์หมายเลข 29a ออกอากาศครั้งแรกเมื่อไหร่?",
    "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_en": "How many episodes have been directed and written by Darrick Bachman and Brett Varon? ",
    "question_th": " Darrick Bachman และ 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_en": "What is the population density in the Brighton area?",
    "question_th": "ความหนาแน่นของประชากรในพื้นที่ไบรตันเป็นเท่าใด",
    "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_en": "How many people live in the area of Sorell according to the Census of 2011?",
    "question_th": "มีกี่คนที่อาศัยอยู่ในพื้นที่ Sorell ตามการสำรวจสำมะโนประชากรปี 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_en": "what is the number of area where the county is marsabit?",
    "question_th": "เทศมณฑลเป็นมาร์ซาบิตจำนวนเท่าใด?",
    "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_en": "what is the code of population census 2009 is 1356301?",
    "question_th": "รหัสการสำรวจสำมะโนประชากรปี 2552 คือ 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_en": "What's the tries against count of the team with 396 points against? ",
    "question_th": "การพยายามต่อต้านการนับของทีมที่มี 396 แต้มเป็นอย่างไร?",
    "context": "CREATE TABLE table_14070062_3 (tries_against VARCHAR, points_against VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_14070062_3 WHERE try_bonus = \"10\"",
    "question_en": "How many points does the club with a try bonus of 10 have? ",
    "question_th": " สโมสรที่มีโบนัสลอง 10 คะแนนมีกี่คะแนน?",
    "context": "CREATE TABLE table_14070062_3 (points VARCHAR, try_bonus VARCHAR)"
  },
  {
    "answer": "SELECT tries_for FROM table_14070062_3 WHERE points = \"70\"",
    "question_en": "What's the tries for count for the team with 70 points? ",
    "question_th": " ความพยายามในการนับของทีมที่มี 70 แต้มจะเป็นอย่างไร?",
    "context": "CREATE TABLE table_14070062_3 (tries_for VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(club) FROM table_14070062_3 WHERE try_bonus = \"5\"",
    "question_en": "How many clubs have a try bonus value of 5?",
    "question_th": "มีกี่สโมสรที่มีค่าโบนัสลอง 5?",
    "context": "CREATE TABLE table_14070062_3 (club VARCHAR, try_bonus VARCHAR)"
  },
  {
    "answer": "SELECT losing_bonus FROM table_14070062_3 WHERE won = \"9\"",
    "question_en": "What's the losing bonus count for the club with 9 won games? ",
    "question_th": " โบนัสที่แพ้สำหรับสโมสรที่ชนะ 9 เกมคือเท่าไร?",
    "context": "CREATE TABLE table_14070062_3 (losing_bonus VARCHAR, won VARCHAR)"
  },
  {
    "answer": "SELECT tries_for FROM table_14070062_3 WHERE club = \"Pontardawe RFC\"",
    "question_en": "How many tries for does Pontardawe RFC have? ",
    "question_th": " ปอนทาร์ดาเว อาร์เอฟซี พยายามกี่ครั้ง?",
    "context": "CREATE TABLE table_14070062_3 (tries_for VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(home_losses) FROM table_1409106_2 WHERE pf = 13",
    "question_en": "How many home losses occured when PF 13?",
    "question_th": "เมื่อ 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_en": "How many copoes per particle are created in the segment that forms inner shell of the core?",
    "question_th": "มีการสร้าง copoes ต่ออนุภาคจำนวนเท่าใดในส่วนที่สร้างเปลือกชั้นในของแกนกลาง",
    "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_en": "How many copies per particle are created by the enterotoxin?",
    "question_th": "เอนเทอโรทอกซินสร้างสำเนาต่ออนุภาคได้กี่สำเนาต่ออนุภาค",
    "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_en": "How many base pairs are there if the molecular weight is 102?",
    "question_th": "ถ้าน้ำหนักโมเลกุลเท่ากับ 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_en": "How many copies per particle are there for the base pair that is size 1059?",
    "question_th": "คู่เบสขนาด 1,059 มีกี่สำเนาต่ออนุภาค",
    "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_en": "what is the minimum attendance with stadium being cotton bowl",
    "question_th": "จำนวนผู้เข้าร่วมขั้นต่ำคือเท่าใดในสนามซึ่งเป็นชามสำลี",
    "context": "CREATE TABLE table_14102379_4 (attendance INTEGER, stadium VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_14102379_4 WHERE stadium = \"Jeppesen stadium\"",
    "question_en": "what's the opponent with stadium being jeppesen stadium",
    "question_th": "คู่ต่อสู้ที่สนามกีฬาคือสนามกีฬาเจพเพอเซนคืออะไร",
    "context": "CREATE TABLE table_14102379_4 (opponent VARCHAR, stadium VARCHAR)"
  },
  {
    "answer": "SELECT stadium FROM table_14102379_4 WHERE record = \"1–1\"",
    "question_en": "what's the stadium with record being 1–1",
    "question_th": "สนามไหนที่มีสถิติ 1–1",
    "context": "CREATE TABLE table_14102379_4 (stadium VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(attendance) FROM table_14102379_4 WHERE stadium = \"Cotton Bowl\"",
    "question_en": " how many attendance with stadium being cotton bowl",
    "question_th": " เข้าชมกี่ครั้งโดยสนามกีฬาเป็นชามฝ้าย",
    "context": "CREATE TABLE table_14102379_4 (attendance VARCHAR, stadium VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_14102379_4 WHERE opponent = \"at Oakland Raiders\"",
    "question_en": "what's the result with opponent being at oakland raiders",
    "question_th": "ผลเป็นอย่างไรเมื่อคู่ต่อสู้อยู่ที่โอ๊คแลนด์ เรดเดอร์ส",
    "context": "CREATE TABLE table_14102379_4 (result VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT MIN(attendance) FROM table_14102379_4 WHERE record = \"4–6\"",
    "question_en": "what is the minimum attendance with record being 4–6",
    "question_th": "ผู้เข้าร่วมขั้นต่ำคือเท่าใดโดยมีบันทึกอยู่ที่ 4–6",
    "context": "CREATE TABLE table_14102379_4 (attendance INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT number FROM table_14125006_1 WHERE astronaut = \"Yurchikhin Fyodor Yurchikhin\"",
    "question_en": "What's Yurchikhin Fyodor Yurchikhin's number? ",
    "question_th": " หมายเลขของ Yurchikhin Fyodor Yurchikhin คืออะไร?",
    "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_en": "How long was the walk numbered at 17?",
    "question_th": "การเดินหมายเลข 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_en": "How many agencies did Budarin Nikolai Budarin working for? ",
    "question_th": " บุดาริน นิโคไล บุดาริน ทำงานให้กับหน่วยงานกี่แห่ง?",
    "context": "CREATE TABLE table_14125006_1 (agency VARCHAR, astronaut VARCHAR)"
  },
  {
    "answer": "SELECT agency FROM table_14125006_1 WHERE astronaut = \"Anderson Clayton Anderson\"",
    "question_en": "What agency does Anderson Clayton Anderson work for? ",
    "question_th": " Anderson Clayton Anderson ทำงานให้กับหน่วยงานใด",
    "context": "CREATE TABLE table_14125006_1 (agency VARCHAR, astronaut VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_141541_5 WHERE change = \"+8.0%\"",
    "question_en": "what's the year with change being +8.0%",
    "question_th": "ปีที่มีการเปลี่ยนแปลงคือ +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_en": "what's the domestic freight with change being +8.0%",
    "question_th": "ค่าขนส่งภายในประเทศอยู่ที่เท่าไร โดยมีการเปลี่ยนแปลง +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_en": "what is the maximum international mail with total freight and mail being 145044",
    "question_th": "ไปรษณีย์ระหว่างประเทศสูงสุดเท่าไร โดยยอดรวมค่าขนส่งและไปรษณีย์อยู่ที่ 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_en": "The results for gt2 winning team is all lars-erik nielsen allan simonsen richard westbrook. ",
    "question_th": " ผลการแข่งขันของทีมที่ชนะ GT2 ได้แก่ ลาร์ส-เอริก นีลเซ่น อัลลัน ไซมอนเซน ริชาร์ด เวสต์บรูก",
    "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_en": "Jos verstappen jeroen bleekemolen is on Imp2 winning team where all are rnd.",
    "question_th": "Jos verstappen jeroen bleekemolen อยู่ในทีมที่ชนะ Imp2 ซึ่งทุกคนอยู่ในทีมที่ชนะ",
    "context": "CREATE TABLE table_14154271_2 (rnd VARCHAR, lmp2_winning_team VARCHAR)"
  },
  {
    "answer": "SELECT MIN(population) FROM table_1417184_1 WHERE canton = \"Redange\"",
    "question_en": "what is the minimum population with canton being redange",
    "question_th": "จำนวนประชากรขั้นต่ำที่แคนตันมีการเปลี่ยนแปลงคือเท่าใด",
    "context": "CREATE TABLE table_1417184_1 (population INTEGER, canton VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(canton) FROM table_1417184_1 WHERE commune = \"Waldbillig\"",
    "question_en": " how many canton with commune being waldbillig",
    "question_th": " มีกี่ตำบลที่มีชุมชนเป็นวาลด์บิลลิก",
    "context": "CREATE TABLE table_1417184_1 (canton VARCHAR, commune VARCHAR)"
  },
  {
    "answer": "SELECT MAX(arrival) FROM table_142159_1 WHERE name = \"Greenbat\"",
    "question_en": "What is the arrival time of greenbat",
    "question_th": "กรีนแบทมาถึงกี่โมง",
    "context": "CREATE TABLE table_142159_1 (arrival INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT no FROM table_142159_1 WHERE location = \"Engine shed\"",
    "question_en": "Which number has Engine Shed as the location",
    "question_th": "เบอร์ไหนมีโรงเครื่องยนต์เป็นที่ตั้ง",
    "context": "CREATE TABLE table_142159_1 (no VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_142159_1 WHERE builder = \"Kerr Stuart\"",
    "question_en": "What is the name with the builder of Kerr Stuart",
    "question_th": "ผู้สร้าง 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_en": "Who is the builder for the location Irton Road shed",
    "question_th": "ใครคือผู้สร้างที่ตั้งโรงเก็บของถนนไอร์ตัน",
    "context": "CREATE TABLE table_142159_1 (builder VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_142159_1 WHERE location = \"Museum\"",
    "question_en": "Whats the status of the trains at location Museum",
    "question_th": "สถานะของรถไฟ ณ สถานที่ พิพิธภัณฑ์",
    "context": "CREATE TABLE table_142159_1 (status VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(built) FROM table_142159_1 WHERE name = \"River Esk\"",
    "question_en": "How many are named River Esk",
    "question_th": "แม่น้ำเอสค์มีกี่ชื่อ",
    "context": "CREATE TABLE table_142159_1 (built VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT publication_dates FROM table_1420954_1 WHERE artist_s_ = \"Timothy Truman\"",
    "question_en": "timothy truman worked on what dates",
    "question_th": "ทิโมธี ทรูแมนทำงานวันที่ไหน",
    "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_en": "timothy truman worked on what books",
    "question_th": "ทิโมธี ทรูแมนทำงานในหนังสือเล่มไหน",
    "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_en": "elaine lee worked on how many issues",
    "question_th": "อีเลน ลีทำงานไปกี่ประเด็นแล้ว",
    "context": "CREATE TABLE table_1420954_1 (issues VARCHAR, writer VARCHAR)"
  },
  {
    "answer": "SELECT regionalliga_nord FROM table_14242137_11 WHERE regionalliga_süd = \"1. FC Nuremberg SpVgg Greuther Fürth\"",
    "question_en": "what's the regionalliga nord with regionalliga süd being 1. fc nuremberg spvgg greuther fürth",
    "question_th": "ลีกระดับภูมิภาคภาคเหนือคืออะไร กับลีกระดับภูมิภาค süd 1. fc นูเรมเบิร์ก spvgg กรอยเธอร์ เฟือร์ธ",
    "context": "CREATE TABLE table_14242137_11 (regionalliga_nord VARCHAR, regionalliga_süd VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_14242137_11 WHERE regionalliga_nord = \"VfB Oldenburg\"",
    "question_en": "what's the season with regionalliga nord being vfb oldenburg",
    "question_th": "ฤดูกาลที่ Regionalliga nord คือ 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üdwest = \"FC Gütersloh Rot-Weiß Essen\"",
    "question_en": "what's the regionalliga nord with regionalliga west/südwest being fc gütersloh rot-weiß essen",
    "question_th": "ลีการะดับภูมิภาคภาคเหนือคืออะไร โดยรีเจียนัลลีกาตะวันตก/ซูดเวสต์เป็น fc gütersloh rot-weiß essen",
    "context": "CREATE TABLE table_14242137_11 (regionalliga_nord VARCHAR, regionalliga_west_südwest VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_14242137_11 WHERE regionalliga_west_südwest = \"Arminia Bielefeld\"",
    "question_en": "what's the season with regionalliga west/südwest being arminia bielefeld",
    "question_th": "ลีกาภูมิภาคตะวันตก/ซูดเวสต์เป็นอาร์มิเนีย บีเลเฟลด์ในฤดูกาลอะไร",
    "context": "CREATE TABLE table_14242137_11 (season VARCHAR, regionalliga_west_südwest VARCHAR)"
  },
  {
    "answer": "SELECT regionalliga_west_südwest FROM table_14242137_11 WHERE regionalliga_süd = \"Stuttgarter Kickers\"",
    "question_en": "what's the regionalliga west/südwest with regionalliga süd being stuttgarter kickers",
    "question_th": "ลีการะดับภูมิภาคตะวันตก/ซูดเวสต์คืออะไร โดยรีเจียนัลลีกาซูดเป็นนักเตะสตุ๊ตการ์ต",
    "context": "CREATE TABLE table_14242137_11 (regionalliga_west_südwest VARCHAR, regionalliga_süd VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(population__2010___rank_) FROM table_14253123_1 WHERE county_name = \"Spencer\"",
    "question_en": "When Spencer is the county  what is total of the population (2010) (rank)? ",
    "question_th": " เมื่อสเปนเซอร์อยู่ในเทศมณฑล จำนวนประชากรทั้งหมด (พ.ศ. 2553) (อันดับ) เป็นเท่าใด",
    "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_en": "When Vincennes is the county seat what is the area sq mi (km 2 ) (rank) ?",
    "question_th": "เมื่อวินเซนน์เป็นที่ตั้งของเทศมณฑล พื้นที่คือตารางไมล์ (กม. 2) (อันดับ) คือเท่าใด",
    "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_en": "When the  area sq mi (km 2 ) (rank) is sqmi (km2) (5) what is the  population (2010) (rank)?",
    "question_th": "เมื่อพื้นที่ ตร.ไมล์ (กม. 2) (อันดับ) เท่ากับ ตร.ม. (กม.2) (5) ประชากร (พ.ศ. 2553) (อันดับ) เป็นเท่าใด?",
    "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_en": "When the % of boundary by water is 63% what is the overall number of zip code prefix(es)?",
    "question_th": "เมื่อ % ของขอบเขตทางน้ำคือ 63% จำนวนคำนำหน้ารหัสไปรษณีย์โดยรวมคือเท่าใด",
    "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_en": "When Spencer is the county what is the  in no.?",
    "question_th": "เมื่อสเปนเซอร์เป็นเคาน์ตี เลขอะไรอยู่ในนั้น?",
    "context": "CREATE TABLE table_14253123_1 (in_no VARCHAR, county_name VARCHAR)"
  },
  {
    "answer": "SELECT oberliga_hessen FROM table_14242137_4 WHERE oberliga_baden_württemberg = \"SV Sandhausen\" AND oberliga_südwest = \"FSV Salmrohr\"",
    "question_en": "Name the oberliga hessen for sv sandhausen and fsv salmrohr",
    "question_th": "ตั้งชื่อโอเบอร์ลิกา เฮสเซ่น สำหรับ sv sandhausen และ fsv salmrohr",
    "context": "CREATE TABLE table_14242137_4 (oberliga_hessen VARCHAR, oberliga_baden_württemberg VARCHAR, oberliga_südwest VARCHAR)"
  },
  {
    "answer": "SELECT oberliga_baden_württemberg FROM table_14242137_4 WHERE oberliga_bayern = \"TSV 1860 Munich\" AND oberliga_südwest = \"Borussia Neunkirchen\"",
    "question_en": "Name the oberliga for where tsv 1860 munich and borussia neunkirchen",
    "question_th": "ตั้งชื่อโอเบอร์ลีกาสำหรับตำแหน่งที่ tsv 1860 มิวนิก และโบรุสเซีย นึนเคียร์เชน",
    "context": "CREATE TABLE table_14242137_4 (oberliga_baden_württemberg VARCHAR, oberliga_bayern VARCHAR, oberliga_südwest VARCHAR)"
  },
  {
    "answer": "SELECT oberliga_südwest FROM table_14242137_4 WHERE oberliga_bayern = \"SpVgg Unterhaching\" AND season = \"1988-89\"",
    "question_en": "Name the oberliga sudwest for spvgg unterhaching for 1988-89",
    "question_th": "ตั้งชื่อ oberliga sudwest สำหรับ spvgg unterhaching สำหรับปี 1988-89",
    "context": "CREATE TABLE table_14242137_4 (oberliga_südwest VARCHAR, oberliga_bayern VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_14242137_4 WHERE oberliga_bayern = \"SpVgg Bayreuth\" AND oberliga_südwest = \"FSV Salmrohr\"",
    "question_en": "Name the season for spvgg bayreuth and fsv salmrohr",
    "question_th": "ตั้งชื่อฤดูกาลของ spvgg bayreuth และ fsv salmrohr",
    "context": "CREATE TABLE table_14242137_4 (season VARCHAR, oberliga_bayern VARCHAR, oberliga_südwest VARCHAR)"
  },
  {
    "answer": "SELECT oberliga_bayern FROM table_14242137_4 WHERE oberliga_baden_württemberg = \"SV Sandhausen\" AND season = \"1986-87\"",
    "question_en": "Name the oberliga bayern for sv sandhausen for 1986-87",
    "question_th": "ตั้งชื่อโอเบอร์ลีกา บาเยิร์น สำหรับเอสวี แซนด์เฮาเซ่น ฤดูกาล 1986-87",
    "context": "CREATE TABLE table_14242137_4 (oberliga_bayern VARCHAR, oberliga_baden_württemberg VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(blackberry_os) FROM table_14260687_3 WHERE other = \"0.1\" AND quarter = \"2012 Q2\"",
    "question_en": "During the quarter of 2012 Q2, how many millions of Blackberry OS phones where shipped when 0.1 million others were shipped?",
    "question_th": "ในช่วงไตรมาสของไตรมาสที่ 2 ปี 2555 มีโทรศัพท์ Blackberry OS กี่ล้านเครื่องที่ถูกจัดส่ง โดยมีอีก 0.1 ล้านเครื่องถูกจัดส่ง",
    "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_en": "During the quarter 2012 Q4, how many millions of android phones were shipped?",
    "question_th": "ในช่วงไตรมาสที่ 4 ของปี 2555 มีการจัดส่งโทรศัพท์ Android กี่ล้านเครื่อง",
    "context": "CREATE TABLE table_14260687_3 (android VARCHAR, quarter VARCHAR)"
  },
  {
    "answer": "SELECT windows_phone FROM table_14260687_3 WHERE total = \"216.2\"",
    "question_en": "How many million of windows phones were shipped during the quarter that shipped 216.2 million total?",
    "question_th": "มีการจัดส่ง windows phone กี่ล้านเครื่องในระหว่างไตรมาสซึ่งมียอดจัดส่งรวม 216.2 ล้านเครื่อง",
    "context": "CREATE TABLE table_14260687_3 (windows_phone VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(total) FROM table_14260687_3 WHERE quarter = \"2012 Q1\"",
    "question_en": "How many total smartphones were shipped during the quarter 2012 Q1?",
    "question_th": "มีสมาร์ทโฟนทั้งหมดกี่เครื่องที่ถูกจัดส่งในระหว่างไตรมาสที่ 1 ปี 2555",
    "context": "CREATE TABLE table_14260687_3 (total VARCHAR, quarter VARCHAR)"
  },
  {
    "answer": "SELECT blackberry_os FROM table_14260687_3 WHERE symbian = \"10.4\"",
    "question_en": "How many millions of Blackberry OS smartphones were shipped when 10.4 million Symbian smartphones were shipped?",
    "question_th": "มีการจัดส่งสมาร์ทโฟน Blackberry OS กี่ล้านเครื่องเมื่อมีการจัดส่งสมาร์ทโฟน Symbian 10.4 ล้านเครื่อง",
    "context": "CREATE TABLE table_14260687_3 (blackberry_os VARCHAR, symbian VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(other) FROM table_14260687_3 WHERE total = \"181.1\"",
    "question_en": "How man \"other\" millions of smartphones were shipped when 181.1 million total were shipped?",
    "question_th": "สมาร์ทโฟน \"อื่นๆ\" หลายล้านเครื่องถูกจัดส่งโดยมนุษย์อย่างไรเมื่อมีการจัดส่งทั้งหมด 181.1 ล้านเครื่อง",
    "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_en": "What is the load bearing capacity when the name is Camelus Dromedarius",
    "question_th": "ความสามารถในการรับน้ำหนักเมื่อชื่อ 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_en": "What is the division for the year 2006?",
    "question_th": "ปี 2549 แบ่งเป็นสาขาอะไรคะ?",
    "context": "CREATE TABLE table_1427998_1 (division VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT playoffs FROM table_1427998_1 WHERE team_name = \"Bay Area Seals\"",
    "question_en": "What was the playoff result for the team name of bay area seals",
    "question_th": "ผลการแข่งขันรอบรองชนะเลิศสำหรับชื่อทีมซีลบริเวณอ่าวคืออะไร",
    "context": "CREATE TABLE table_1427998_1 (playoffs VARCHAR, team_name VARCHAR)"
  },
  {
    "answer": "SELECT regular_season FROM table_1427998_1 WHERE playoffs = \"divisional Finals\"",
    "question_en": "Where did the team finish in the season when the playoff result was divisional finals.",
    "question_th": "ทีมจบที่ไหนในฤดูกาลที่ผลเพลย์ออฟคือรอบชิงชนะเลิศประเภทดิวิชั่น",
    "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_en": "What is the playoff result when the league is USISL and the regular season record is 1st, pacific.",
    "question_th": "ผลเพลย์ออฟจะเป็นอย่างไรเมื่อลีกคือ USISL และสถิติฤดูกาลปกติคือที่ 1 แปซิฟิก",
    "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_en": "How many divisions have been won when the playoff result is conference quarterfinals.",
    "question_th": "มีกี่ดิวิชั่นที่ชนะเมื่อผลเพลย์ออฟคือรอบก่อนรองชนะเลิศของการประชุม",
    "context": "CREATE TABLE table_1427998_1 (division VARCHAR, playoffs VARCHAR)"
  },
  {
    "answer": "SELECT MIN(home_attendance) FROM table_14302582_1 WHERE competition = \"Southern Derby\"",
    "question_en": "What was the lowest home attendance for the southern derby?",
    "question_th": "เซาท์เทิร์นดาร์บี้มีผู้ชมในบ้านน้อยที่สุดคือเท่าไร?",
    "context": "CREATE TABLE table_14302582_1 (home_attendance INTEGER, competition VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_14302582_1 WHERE home_matches = 14",
    "question_en": "What was the result when the team had contested 14 home games?",
    "question_th": "เมื่อทีมลงเล่นในบ้านถึง 14 นัด ผลเป็นอย่างไร?",
    "context": "CREATE TABLE table_14302582_1 (result VARCHAR, home_matches VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_14302582_1 WHERE record = \"4-1\"",
    "question_en": "What was the result when the team was 4-1?",
    "question_th": "เมื่อทีมเสมอ 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_en": "picturesque and trekking route is the category what is the height from sea level in meters?",
    "question_th": "เส้นทางที่งดงามและเดินป่าอยู่ในหมวดความสูงจากระดับน้ำทะเลเป็นเมตรเท่าไร?",
    "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_en": "If extremely adventures is the category what is the height from sea level in meters?",
    "question_th": "ถ้าเป็นประเภทผจญภัยสุดขีด ความสูงจากระดับน้ำทะเลเป็นเมตรเท่าไร?",
    "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_en": "if 22km is the trekking route what is  height from sea level in meters?",
    "question_th": "ถ้าระยะทาง 22 กม. เป็นเส้นทางเดินป่าความสูงจากระดับน้ำทะเลมีหน่วยเป็นเมตร?",
    "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_en": "If the place is hemkunt sahib what is the category?",
    "question_th": "หากสถานที่นั้นคือเฮมคุนต์ซาฮิบ อยู่ในหมวดหมู่ใด?",
    "context": "CREATE TABLE table_1430913_1 (category VARCHAR, name_of_place VARCHAR)"
  },
  {
    "answer": "SELECT density__pop_km²_ FROM table_14325808_1 WHERE population__2011_census_ = 5402",
    "question_en": "What is the density in places where the 2011 census gives a population of 5402?",
    "question_th": "ความหนาแน่นในสถานที่ซึ่งการสำรวจสำมะโนประชากร พ.ศ. 2554 มีประชากร 5402 คนเป็นเท่าใด",
    "context": "CREATE TABLE table_14325808_1 (density__pop_km²_ VARCHAR, population__2011_census_ VARCHAR)"
  },
  {
    "answer": "SELECT area__km²_ FROM table_14325808_1 WHERE density__pop_km²_ = \"137.61\"",
    "question_en": "What is the area in kilometers squared the population density is 137.61?",
    "question_th": "พื้นที่เป็นกิโลเมตรยกกำลังสองความหนาแน่นของประชากรคือ 137.61 คืออะไร?",
    "context": "CREATE TABLE table_14325808_1 (area__km²_ VARCHAR, density__pop_km²_ VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(population__2011_census_) FROM table_14325808_1 WHERE area__km²_ = \"132.79\"",
    "question_en": "How many places according to the 2011 census of whatever population have an area of 132.79 kilometers squared?",
    "question_th": "จากการสำรวจสำมะโนประชากร พ.ศ. 2554 ประชากรใดๆ ก็ตามที่มีพื้นที่ 132.79 ตารางกิโลเมตร มีกี่แห่ง",
    "context": "CREATE TABLE table_14325808_1 (population__2011_census_ VARCHAR, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(area__km²_) FROM table_14325808_1 WHERE population__2007_estimation_ = 7996",
    "question_en": "How many places of whatever size have a 2007 population estimation of 7996?",
    "question_th": "มีสถานที่ทุกขนาดจำนวนเท่าใดที่มีจำนวนประชากรประมาณ 7,996 คนในปี 2550",
    "context": "CREATE TABLE table_14325808_1 (area__km²_ VARCHAR, population__2007_estimation_ VARCHAR)"
  },
  {
    "answer": "SELECT 3 AS ’utr_sequence FROM table_14332822_1 WHERE genbank_id = \"HQ021437\"",
    "question_en": "What is the 3utr sequence when the genbank id is hq021437? ",
    "question_th": " ลำดับ 3utr คืออะไรเมื่อรหัส genbank คือ hq021437",
    "context": "CREATE TABLE table_14332822_1 (genbank_id VARCHAR)"
  },
  {
    "answer": "SELECT coding FROM table_14332822_1 WHERE genbank_id = \"HQ021442\"",
    "question_en": "What is the coding for hq021442 genbankid?",
    "question_th": "การเข้ารหัสสำหรับ hq021442 genbankid คืออะไร?",
    "context": "CREATE TABLE table_14332822_1 (coding VARCHAR, genbank_id VARCHAR)"
  },
  {
    "answer": "SELECT 3 AS ’utr_sequence FROM table_14332822_1 WHERE variant_id = \"AD'6A 4\"",
    "question_en": "What is the 3'utr sequence with a variant id of ad'6a 4?",
    "question_th": "ลำดับ 3'utr ที่มีรหัสตัวแปรเป็น ad'6a 4 คืออะไร",
    "context": "CREATE TABLE table_14332822_1 (variant_id VARCHAR)"
  },
  {
    "answer": "SELECT 3 AS ’utr_sequence FROM table_14332822_1 WHERE variant_id = \"ACD'6A 3\"",
    "question_en": "What is the 3'utr sequence with a variant id of acd'6a 3?",
    "question_th": "ลำดับ 3'utr ที่มีรหัสตัวแปรของ acd'6a 3 คืออะไร",
    "context": "CREATE TABLE table_14332822_1 (variant_id VARCHAR)"
  },
  {
    "answer": "SELECT director FROM table_14330096_3 WHERE total_number = 14",
    "question_en": "Who is the director of the episode that corresponds to the total episodes number 14? ",
    "question_th": " ใครคือผู้กำกับตอนที่ตรงกับจำนวนตอนที่ 14 ทั้งหมด?",
    "context": "CREATE TABLE table_14330096_3 (director VARCHAR, total_number VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_14330096_3 WHERE writer = \"Rob Heyland\"",
    "question_en": "What's the title of the episode that Rob Heyland wrote? ",
    "question_th": " ตอนที่ Rob Heyland เขียนชื่ออะไร",
    "context": "CREATE TABLE table_14330096_3 (title VARCHAR, writer VARCHAR)"
  },
  {
    "answer": "SELECT series_number FROM table_14330096_3 WHERE writer = \"Julian Unthank\"",
    "question_en": "What number from the total number of episodes is the episode written by Julian Unthank?",
    "question_th": "ตอนที่เขียนโดย 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_en": "How many touchdowns did Redden score?",
    "question_th": "เรดเดนทำทัชดาวน์ได้กี่ทัชดาวน์?",
    "context": "CREATE TABLE table_14342210_12 (touchdowns INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(extra_points) FROM table_14342210_12",
    "question_en": "What was the most extra points?",
    "question_th": "คะแนนพิเศษมากที่สุดคืออะไร?",
    "context": "CREATE TABLE table_14342210_12 (extra_points INTEGER)"
  },
  {
    "answer": "SELECT position FROM table_14342210_12 WHERE extra_points = 4",
    "question_en": "What position did the player who scored 4 extra points play?",
    "question_th": "ผู้เล่นที่ได้คะแนนพิเศษ 4 คะแนนเล่นตำแหน่งใด?",
    "context": "CREATE TABLE table_14342210_12 (position VARCHAR, extra_points VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(points) FROM table_14342210_12 WHERE position = \"Right end\"",
    "question_en": "How many points where scored by the right end?",
    "question_th": "ฝั่งขวาทำแต้มได้กี่แต้ม?",
    "context": "CREATE TABLE table_14342210_12 (points VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT games_started FROM table_14342210_13 WHERE player = \"Hugh White\"",
    "question_en": "How many Games Started are there for Hugh White ?",
    "question_th": "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_en": "How many entries are there for Class for the player Everett Sweeley?",
    "question_th": "มีกี่รายการสำหรับคลาสสำหรับผู้เล่น 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_en": "How many entries are there for class when the prior experience is shasta h.s.",
    "question_th": "มีกี่รายการในชั้นเรียนเมื่อประสบการณ์ก่อนหน้าคือ shasta hs",
    "context": "CREATE TABLE table_14342210_13 (class VARCHAR, prior_experience VARCHAR)"
  },
  {
    "answer": "SELECT MAX(weight) FROM table_14342210_13 WHERE player = \"Hugh White\"",
    "question_en": "What is hugh white's weight?",
    "question_th": "ฮิวจ์ ไวท์ มีน้ำหนักเท่าไหร่?",
    "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_en": "How many field goals did Walter Shaw make?",
    "question_th": "วอลเตอร์ ชอว์ ยิงประตูได้กี่ประตู?",
    "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_en": "How many field goals were made by the person with 100 points in total?",
    "question_th": "บุคคลที่มีคะแนนรวม 100 คะแนนทำฟิลด์โกลได้กี่ครั้ง?",
    "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_en": "How many touchdowns were made by the person with 7 extra points?",
    "question_th": "คนที่มีคะแนนพิเศษ 7 คะแนนทำทัชดาวน์ได้กี่ครั้ง?",
    "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_en": "How many touchdowns did Albert Herrnstein make?",
    "question_th": "Albert Herrnstein ทำทัชดาวน์ได้กี่ครั้ง?",
    "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_en": "How many touchdowns did Bruce Shorts make?",
    "question_th": "Bruce Shorts ทำทัชดาวน์ได้กี่ครั้ง?",
    "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_en": "How many players made 4 touchdowns?",
    "question_th": "มีผู้เล่นกี่คนที่ทำทัชดาวน์ได้ 4 ครั้ง?",
    "context": "CREATE TABLE table_14342210_14 (player VARCHAR, touchdowns__5_points_ VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_14342210_2 WHERE position = \"Fullback\"",
    "question_en": "Name all the players for fullback",
    "question_th": "ตั้งชื่อผู้เล่นทั้งหมดสำหรับฟูลแบ็ก",
    "context": "CREATE TABLE table_14342210_2 (player VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_14342210_2 WHERE player = \"Shorts\"",
    "question_en": "Name the position for shorts",
    "question_th": "ตั้งชื่อตำแหน่งกางเกงขาสั้น",
    "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_en": "Which player made 4 touchdowns while playing left halfback?",
    "question_th": "ผู้เล่นคนไหนทำ 4 ทัชดาวน์ขณะเล่นกองหลังซ้าย?",
    "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_en": "Which left end player made the most points?",
    "question_th": "ผู้เล่นฝั่งซ้ายคนไหนทำแต้มได้มากที่สุด?",
    "context": "CREATE TABLE table_14342210_6 (points INTEGER, position VARCHAR)"
  },
  {
    "answer": "SELECT MIN(points) FROM table_14342210_6 WHERE player = \"Herrnstein\"",
    "question_en": "What is the least amount of points made by Herrnstein?",
    "question_th": "Herrnstein ทำคะแนนได้น้อยที่สุดคือเท่าไร?",
    "context": "CREATE TABLE table_14342210_6 (points INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT MIN(field_goals) FROM table_14342210_6",
    "question_en": "What is the least amount of field goals made by a player?",
    "question_th": "ผู้เล่นทำฟิลด์โกลได้น้อยที่สุดคือเท่าใด?",
    "context": "CREATE TABLE table_14342210_6 (field_goals INTEGER)"
  },
  {
    "answer": "SELECT position FROM table_14342210_6 WHERE player = \"Redden\"",
    "question_en": "Which position did Redden play?",
    "question_th": "เรดเดนเล่นตำแหน่งไหน?",
    "context": "CREATE TABLE table_14342210_6 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MIN(extra_points) FROM table_14342210_6",
    "question_en": "What is the least amount of extra points made in by a player?",
    "question_th": "ผู้เล่นได้แต้มพิเศษขั้นต่ำจำนวนเท่าใด?",
    "context": "CREATE TABLE table_14342210_6 (extra_points INTEGER)"
  },
  {
    "answer": "SELECT previous_experience FROM table_14342367_13 WHERE hometown = \"East Jordan, Michigan\"",
    "question_en": "What is the previous experience of the player from East Jordan, Michigan?",
    "question_th": "ประสบการณ์ก่อนหน้านี้ของผู้เล่นจากอีสต์ จอร์แดน มิชิแกน คืออะไร?",
    "context": "CREATE TABLE table_14342367_13 (previous_experience VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_14342367_13 WHERE position = \"Right tackle\"",
    "question_en": "What was the class of the player who played right tackle?",
    "question_th": "ผู้เล่นที่เล่นแท็คเกิลขวาคือคลาสอะไร?",
    "context": "CREATE TABLE table_14342367_13 (class VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(player) FROM table_14342367_13 WHERE hometown = \"Sioux City, Iowa\"",
    "question_en": "How many players are from Sioux City, Iowa?",
    "question_th": "มีผู้เล่นกี่คนจากเมืองซูซิตี้ รัฐไอโอวา",
    "context": "CREATE TABLE table_14342367_13 (player VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_14342367_13 WHERE player = \"George W. Gregory\"",
    "question_en": "Where is George W. Gregory from?",
    "question_th": "George W. Gregory มาจากไหน?",
    "context": "CREATE TABLE table_14342367_13 (hometown VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_14342367_13 WHERE player = \"George W. Gregory\"",
    "question_en": "What was George W. Gregory's class?",
    "question_th": "ชั้นเรียนของ George W. Gregory คืออะไร",
    "context": "CREATE TABLE table_14342367_13 (class VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(points) FROM table_14342367_5",
    "question_en": "what is the maximum number of points?",
    "question_th": "คะแนนสูงสุดคือเท่าไร?",
    "context": "CREATE TABLE table_14342367_5 (points INTEGER)"
  },
  {
    "answer": "SELECT starter FROM table_14342367_5 WHERE player = \"Herb Graver\"",
    "question_en": "was herb graver a starter?",
    "question_th": "Herb Graver เป็นตัวเริ่มต้นหรือไม่?",
    "context": "CREATE TABLE table_14342367_5 (starter VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_14342480_15 WHERE touchdowns = 14",
    "question_en": "Which player scored 14 touchdowns?",
    "question_th": "ผู้เล่นคนไหนทำทัชดาวน์ได้ 14 ครั้ง?",
    "context": "CREATE TABLE table_14342480_15 (player VARCHAR, touchdowns VARCHAR)"
  },
  {
    "answer": "SELECT MAX(points) FROM table_14342480_15 WHERE player = \"Duncan Thompson\"",
    "question_en": "How many points did Duncan Thompson score?",
    "question_th": "ดันแคน ทอมป์สันทำคะแนนได้กี่คะแนน?",
    "context": "CREATE TABLE table_14342480_15 (points INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(extra_points) FROM table_14342480_15",
    "question_en": "What is the highest number of extra points?",
    "question_th": "คะแนนพิเศษสูงสุดคือเท่าไร?",
    "context": "CREATE TABLE table_14342480_15 (extra_points INTEGER)"
  },
  {
    "answer": "SELECT player FROM table_14342592_5 WHERE position = \"Left tackle\"",
    "question_en": "What players played the position of left tackle?",
    "question_th": "นักเตะคนไหนเล่นตำแหน่งแท็คเกิ้ลซ้าย?",
    "context": "CREATE TABLE table_14342592_5 (player VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(field_goals) FROM table_14342592_5 WHERE position = \"Right end\"",
    "question_en": "How many field goals were made by someone playing position of right end?",
    "question_th": "ผู้เล่นตำแหน่งฝั่งขวาทำประตูได้กี่ประตู?",
    "context": "CREATE TABLE table_14342592_5 (field_goals VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_14342592_5 WHERE extra_points = 12",
    "question_en": "Which players have made a total of 12 extra points?",
    "question_th": "ผู้เล่นคนไหนทำแต้มพิเศษรวม 12 แต้ม?",
    "context": "CREATE TABLE table_14342592_5 (player VARCHAR, extra_points VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_14342592_5 WHERE touchdowns = 4",
    "question_en": "Which positions have made 4 touchdowns?",
    "question_th": "ตำแหน่งไหนทำทัชดาวน์ได้ 4 ครั้ง?",
    "context": "CREATE TABLE table_14342592_5 (position VARCHAR, touchdowns VARCHAR)"
  },
  {
    "answer": "SELECT touchdowns FROM table_14342592_5 WHERE points = 22",
    "question_en": "When the total points are 22 how many total touchdowns have been made?",
    "question_th": "เมื่อแต้มรวมเป็น 22 ทัชดาวน์ได้ทั้งหมดกี่แต้ม?",
    "context": "CREATE TABLE table_14342592_5 (touchdowns VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(points) FROM table_14342480_7 WHERE position = \"Right tackle\"",
    "question_en": "How many points were scored by someone who's position was right tackle?",
    "question_th": "คนที่ตำแหน่งแท็คเกิ้ลถูกต้องได้กี่คะแนน?",
    "context": "CREATE TABLE table_14342480_7 (points VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT MIN(touchdowns) FROM table_14342480_7",
    "question_en": "What is the least amount of touchdowns scored on the chart?",
    "question_th": "คะแนนทัชดาวน์น้อยที่สุดในแผนภูมิคือเท่าใด?",
    "context": "CREATE TABLE table_14342480_7 (touchdowns INTEGER)"
  },
  {
    "answer": "SELECT points FROM table_14342480_7 WHERE player = \"Rolla Bigelow\"",
    "question_en": "How many points were scored by Rolla Bigelow?",
    "question_th": "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_en": "How many touchdowns were scored by players who scored more than 5.0 extra points?",
    "question_th": "ผู้เล่นที่ทำคะแนนพิเศษมากกว่า 5.0 แต้มทัชดาวน์ได้กี่ครั้ง?",
    "context": "CREATE TABLE table_14342480_7 (touchdowns VARCHAR, extra_points INTEGER)"
  },
  {
    "answer": "SELECT MIN(field_goals) FROM table_14342480_7",
    "question_en": "What is the lowest amount of field goals on the chart? ",
    "question_th": " จำนวนฟิลด์โกลที่น้อยที่สุดในแผนภูมิคือเท่าใด?",
    "context": "CREATE TABLE table_14342480_7 (field_goals INTEGER)"
  },
  {
    "answer": "SELECT MIN(points) FROM table_14342592_4 WHERE player = \"Patrick\"",
    "question_en": "Name the least points for patrick",
    "question_th": "ตั้งชื่อคะแนนที่น้อยที่สุดสำหรับแพทริค",
    "context": "CREATE TABLE table_14342592_4 (points INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT starter FROM table_14342592_4 WHERE player = \"Schulte\"",
    "question_en": "Name the starter for schulte",
    "question_th": "ตั้งชื่อผู้เริ่มต้นสำหรับ schulte",
    "context": "CREATE TABLE table_14342592_4 (starter VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(points) FROM table_14342592_4 WHERE position = \"Right end\"",
    "question_en": "Name the total number of points for the right end",
    "question_th": "ตั้งชื่อจำนวนคะแนนรวมสำหรับส่วนท้ายด้านขวา",
    "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_en": "Name the number of players when starter is no and touchdowns is 1 for right halfback",
    "question_th": "ตั้งชื่อจำนวนผู้เล่นเมื่อสตาร์ทเตอร์เป็นไม่ใช่และทัชดาวน์เป็น 1 สำหรับกองหลังฝั่งขวา",
    "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_en": "What was the series number of the episode directed by Rob Bailey?",
    "question_th": "ตอนที่กำกับโดย 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_en": "Name the timeslot for season 5",
    "question_th": "ตั้งชื่อช่วงเวลาสำหรับฤดูกาลที่ 5",
    "context": "CREATE TABLE table_143554_1 (timeslot VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT MIN(area___ha__) FROM table_143579_1 WHERE island = \"Colonsay\"",
    "question_en": "What is the area of Colonsay Island?",
    "question_th": "เกาะโคลอนเซย์มีพื้นที่เท่าใด?",
    "context": "CREATE TABLE table_143579_1 (area___ha__ INTEGER, island VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(ties) FROM table_14389782_2 WHERE games_started = 36",
    "question_en": "How many ties were there for game 36 started?",
    "question_th": "เกมที่ 36 เริ่มมีความสัมพันธ์กันกี่ครั้ง?",
    "context": "CREATE TABLE table_14389782_2 (ties VARCHAR, games_started VARCHAR)"
  },
  {
    "answer": "SELECT winning_pct FROM table_14389782_2 WHERE jersey_no = \"15\"",
    "question_en": "What is the winning pct for jersey 15?",
    "question_th": "เปอร์เซ็นต์ที่ชนะสำหรับเสื้อแข่ง 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_en": "Who is the quarter back for a winning pct of .792",
    "question_th": "ใครคือควอเตอร์ที่คว้าชัยชนะที่ .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_en": "How many lost games for jersey number 2 and games started is less than 7.0?",
    "question_th": "มีกี่เกมที่แพ้สำหรับเสื้อหมายเลข 2 และเริ่มเกมน้อยกว่า 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_en": "Name the total number of date of vacancy for manner of departure being resigned and outgoing manager is geninho",
    "question_th": "ระบุจำนวนวันที่ว่างทั้งหมดสำหรับลักษณะการลาออกและผู้จัดการที่ลาออกคือ 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_en": "Who led the points classification when Roman Kreuziger led the young rider classification?",
    "question_th": "ใครเป็นผู้นำในการจัดประเภทคะแนนเมื่อ Roman Kreuziger เป็นผู้นำในประเภทนักแข่งรุ่นเยาว์?",
    "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_en": "Who won the stage when Fumiyuki Beppu won the combativity award?",
    "question_th": "ใครเป็นผู้ชนะบนเวทีเมื่อ Fumiyuki Beppu ได้รับรางวัลการต่อสู้?",
    "context": "CREATE TABLE table_14395920_2 (winner VARCHAR, combativity_award VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_14395920_2 WHERE stage = 18",
    "question_en": "Who won stage 18?",
    "question_th": "ใครชนะสเตจ 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_en": "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?",
    "question_th": "ใครเป็นผู้ชนะสเตจเมื่อ มาร์ค คาเวนดิช เป็นผู้นำในการจัดประเภทคะแนน, รินัลโด้ โนเซนตินี เป็นผู้นำในประเภททั่วไป และสเตจนั้นน้อยกว่า 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_en": "Name the 1st m for nor",
    "question_th": "ตั้งชื่อ ม. ที่ 1 สำหรับ น",
    "context": "CREATE TABLE table_14407512_24 (nationality VARCHAR)"
  },
  {
    "answer": "SELECT 2 AS nd__m_ FROM table_14407512_24 WHERE name = \"Gregor Schlierenzauer\"",
    "question_en": "Name the 2nd m for gregor schlierenzauer",
    "question_th": "ตั้งชื่อ ม. ที่ 2 ให้กับ 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_en": "Name the number of overall nt points for 248.9",
    "question_th": "ตั้งชื่อจำนวนคะแนนรวม nt สำหรับ 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_en": "How many times has the playoff been 1 in the contest for the afc cup?",
    "question_th": "รอบรองชนะเลิศมี 1 ในการแข่งขันฟุตบอลถ้วยเอเอฟซีกี่ครั้ง?",
    "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_en": "How many times has the points total for the afc cup competion been 289?",
    "question_th": "กี่ครั้งแล้วที่คะแนนรวมในการแข่งขัน AFC Cup อยู่ที่ 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_en": "When the group stage has been 4 what is the largest playoff?",
    "question_th": "เมื่อรอบแบ่งกลุ่มได้ 4 รอบเพลย์ออฟที่ใหญ่ที่สุดคืออะไร?",
    "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_en": "What is the date the successor was seated for the georgia 6th district?",
    "question_th": "วันที่ใดที่ผู้สืบทอดจะนั่งในเขตที่ 6 ของจอร์เจีย?",
    "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_en": "How many successors are from the georgia 2nd district?",
    "question_th": "มีผู้สืบทอดจากเขตที่ 2 ของจอร์เจียกี่คน",
    "context": "CREATE TABLE table_1446600_4 (successor VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT time___et__ FROM table_14477002_1 WHERE opponent = \"Cincinnati Bengals\"",
    "question_en": "Show all the time(et) where the opponent is the Cincinnati Bengals.",
    "question_th": "แสดงตลอดเวลา (et) ว่าคู่ต่อสู้คือ 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_en": "List the total number of records from Lambeau Field.",
    "question_th": "แสดงรายการจำนวนบันทึกทั้งหมดจาก Lambeau Field",
    "context": "CREATE TABLE table_14477002_1 (record VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_14563349_11 WHERE location = \"Riverfront Stadium\"",
    "question_en": "Who was the opposing team played at Riverfront Stadium?",
    "question_th": "ทีมตรงข้ามเล่นที่ริเวอร์ฟรอนต์ สเตเดี้ยมคือใคร?",
    "context": "CREATE TABLE table_14563349_11 (opponent VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(date) FROM table_14563349_11 WHERE opponent = \"Kansas City Chiefs\"",
    "question_en": "How many days were the Kansas City Chiefs the opposing team?",
    "question_th": "แคนซัส ซิตี้ ชีฟส์ เป็นทีมตรงข้ามกี่วัน?",
    "context": "CREATE TABLE table_14563349_11 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT MAX(fourth_place) FROM table_14573770_4 WHERE nation = \"Argentina\"",
    "question_en": "How many teams named argentina?",
    "question_th": "มีกี่ทีมที่ชื่ออาร์เจนติน่า?",
    "context": "CREATE TABLE table_14573770_4 (fourth_place INTEGER, nation VARCHAR)"
  },
  {
    "answer": "SELECT MAX(winners) FROM table_14573770_4 WHERE nation = \"Argentina\"",
    "question_en": "How many times did argentina win?",
    "question_th": "อาร์เจนติน่าชนะกี่ครั้ง?",
    "context": "CREATE TABLE table_14573770_4 (winners INTEGER, nation VARCHAR)"
  },
  {
    "answer": "SELECT s_sikh FROM table_14598_5 WHERE buddhist = \"955\"",
    "question_en": "What is the number of s sikh where 955 is the number of buddhists?",
    "question_th": "เลขซิกข์เป็นจำนวนเท่าใด โดยที่ 955 คือจำนวนชาวพุทธ?",
    "context": "CREATE TABLE table_14598_5 (s_sikh VARCHAR, buddhist VARCHAR)"
  },
  {
    "answer": "SELECT buddhist FROM table_14598_5 WHERE s_jain = \"941\"",
    "question_en": "How many buddhists are where s jain have 941?",
    "question_th": "มีชาวพุทธกี่คน ที่ไหนมี 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_en": "What is the christian amount where work participation rate is the composition?",
    "question_th": "จำนวนคริสเตียนที่อัตราการมีส่วนร่วมในการทำงานคือเท่าไร?",
    "context": "CREATE TABLE table_14598_5 (christians VARCHAR, composition VARCHAR)"
  },
  {
    "answer": "SELECT s_hindu FROM table_14598_5 WHERE buddhist = \"955\"",
    "question_en": "How many s hindu are where buddhists are 955?",
    "question_th": "ชาวพุทธอยู่กี่คน 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_en": "What is the data point for s hindu where the buddhist data point is 73.0%?",
    "question_th": "จุดข้อมูลของชาวฮินดูที่จุดข้อมูลพุทธศาสนาคือ 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_en": "How many data points for chrstians are 39.7?",
    "question_th": "จุดข้อมูลสำหรับคริสเตียนมีกี่จุดคือ 39.7",
    "context": "CREATE TABLE table_14598_5 (composition VARCHAR, christians VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_14624447_39 WHERE name = \"Ventrell Jenkins\"",
    "question_en": "Name the hometown for ventrell jenkins",
    "question_th": "ตั้งชื่อบ้านเกิดของเวนเทรล เจนกินส์",
    "context": "CREATE TABLE table_14624447_39 (hometown VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_14624447_39 WHERE position = \"RT\"",
    "question_en": "Name the class when position is rt",
    "question_th": "ตั้งชื่อคลาสเมื่อตำแหน่งเป็น rt",
    "context": "CREATE TABLE table_14624447_39 (class VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_14655757_1 WHERE college = \"Tennessee\"",
    "question_en": "Which players college is Tennessee?",
    "question_th": "วิทยาลัยผู้เล่นคนไหนคือรัฐเทนเนสซี",
    "context": "CREATE TABLE table_14655757_1 (player VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_14655757_1 WHERE player = \"Byron Williams\"",
    "question_en": "What college did Byron Williams attend?",
    "question_th": "Byron Williams เข้าเรียนที่วิทยาลัยใด",
    "context": "CREATE TABLE table_14655757_1 (college VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MIN(pick__number) FROM table_14655757_1",
    "question_en": "What is the lowest pick number?",
    "question_th": "หมายเลขเลือกต่ำสุดคืออะไร?",
    "context": "CREATE TABLE table_14655757_1 (pick__number INTEGER)"
  },
  {
    "answer": "SELECT position FROM table_14655757_1 WHERE player = \"Jessie Clark\"",
    "question_en": "What position is Jessie Clark?",
    "question_th": "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_en": "What frequency does Chihuahua Sinaloa Durango cover?",
    "question_th": "ชิวาวา Sinaloa Durango ครอบคลุมความถี่ใด?",
    "context": "CREATE TABLE table_14670060_1 (frequency VARCHAR, coverage VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(transmitting_from) FROM table_14670060_1 WHERE call_sign = \"XEZV\"",
    "question_en": "How many times does the call sign XEZV appear?",
    "question_th": "สัญญาณเรียกขาน XEZV ปรากฏขึ้นกี่ครั้ง?",
    "context": "CREATE TABLE table_14670060_1 (transmitting_from VARCHAR, call_sign VARCHAR)"
  },
  {
    "answer": "SELECT languages FROM table_14670060_1 WHERE call_sign = \"XEJAM\"",
    "question_en": "What languages are spoken when call sign XEJAM is used?",
    "question_th": "เมื่อใช้สัญญาณเรียกขาน XEJAM จะพูดภาษาใดบ้าง",
    "context": "CREATE TABLE table_14670060_1 (languages VARCHAR, call_sign VARCHAR)"
  },
  {
    "answer": "SELECT shooter FROM table_14708760_3 WHERE round_3 = 80",
    "question_en": "Who shot an 80 in round 3",
    "question_th": "ใครยิง 80 ในรอบที่ 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_en": "What is the highest score of round 1 where they also shot 90 in round 2",
    "question_th": "คะแนนสูงสุดของรอบ 1 คือเท่าไร โดยที่พวกเขายิงได้ 90 ในรอบ 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_en": "What position did Dave Johnson play?",
    "question_th": "Dave Johnson เล่นตำแหน่งอะไร?",
    "context": "CREATE TABLE table_1473672_5 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_1473672_5 WHERE player = \"Bernie Germain\"",
    "question_en": "What is Bernie Germain's nationality?",
    "question_th": "เบอร์นี่ แชร์กแมงมีสัญชาติอะไร?",
    "context": "CREATE TABLE table_1473672_5 (nationality VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_1473672_5 WHERE nhl_team = \"Minnesota North Stars\"",
    "question_en": "What player was picked by the Minnesota North Stars?",
    "question_th": "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_en": "What position did Marty Gateman play?",
    "question_th": "Marty Gateman เล่นตำแหน่งอะไร?",
    "context": "CREATE TABLE table_1473672_5 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_1473672_5 WHERE nhl_team = \"Montreal Canadiens\"",
    "question_en": "What was the position of the player picked by the Montreal Canadiens?",
    "question_th": "ตำแหน่งของผู้เล่นที่มอนทรีออลชาวแคนาดาเลือกคืออะไร?",
    "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_en": "the california golden seals that where drafted by nhl teams played what positions",
    "question_th": "แมวน้ำทองคำแห่งแคลิฟอร์เนียที่ทีม NHL ร่างไว้เล่นตำแหน่งใด",
    "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_en": "what country was the player drafted by the toronto maple leafs",
    "question_th": "ผู้เล่นที่วาดโดยใบเมเปิ้ลโตรอนโตคือประเทศใด",
    "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_en": "The los angeles kings drafted what player in the 7th round",
    "question_th": "Los Angeles Kings ดราฟต์ผู้เล่นคนใดในรอบที่ 7",
    "context": "CREATE TABLE table_1473672_7 (player VARCHAR, nhl_team VARCHAR)"
  },
  {
    "answer": "SELECT pick__number FROM table_1473672_7 WHERE player = \"Yves Archambault\"",
    "question_en": "How many players had been drafted in front of Yves archambault",
    "question_th": "มีผู้เล่นกี่คนที่ถูกเกณฑ์ทหารต่อหน้าอีฟส์ อาร์คัมโบลต์",
    "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_en": "Serge Beaudoin was drafted when in the 1972 NHL draft",
    "question_th": "Serge Beaudoin ถูกเกณฑ์ทหารเมื่ออยู่ในร่าง NHL ปี 1972",
    "context": "CREATE TABLE table_1473672_7 (pick__number INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT nhl_team FROM table_1473672_6 WHERE player = \"Rob Palmer\"",
    "question_en": "What NHL team drafted Rob Palmer?",
    "question_th": "ทีม NHL ใดที่ร่าง 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_en": "What player was drafted by the Chicago Black Hawks?",
    "question_th": "ผู้เล่นคนใดที่ถูกดราฟท์โดยทีม 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_en": "What country did Derek Black come from?",
    "question_th": "Derek Black มาจากประเทศใด",
    "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_en": "What team did Derek Black Play for prior to being drafted?",
    "question_th": "Derek Black Play เล่นให้กับทีมใดก่อนที่จะถูกดราฟท์?",
    "context": "CREATE TABLE table_1473672_6 (college_junior_club_team VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(goals) FROM table_1474099_6",
    "question_en": "At maximum, what are our goals?",
    "question_th": "เป้าหมายสูงสุดของเราคืออะไร?",
    "context": "CREATE TABLE table_1474099_6 (goals INTEGER)"
  },
  {
    "answer": "SELECT season FROM table_1474099_6 WHERE goals = 17 AND runners_up = \"Slavija\"",
    "question_en": "When the team scored 17 and Slavija placed second, what year was it?",
    "question_th": "เมื่อทีมทำประตูได้ 17 ประตู และสลาเวียได้อันดับสอง มันคือปีอะไร?",
    "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_en": "Name the change 2009 to 2010 where international tourist arrivals is 9.4 million",
    "question_th": "ตั้งชื่อการเปลี่ยนแปลงปี 2552 ถึง 2553 โดยมีนักท่องเที่ยวต่างชาติเข้ามา 9.4 ล้านคน",
    "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_en": "Name the international tourist arrivals for arrivals 2011 for 8.1 million",
    "question_th": "ระบุชื่อนักท่องเที่ยวต่างชาติขาเข้าปี 2554 จำนวน 8.1 ล้านคน",
    "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_en": "How many tourist arrivals occurred in 2011 in the country of Italy?",
    "question_th": "ในปี 2554 มีนักท่องเที่ยวเข้ามาในประเทศอิตาลีจำนวนเท่าใด",
    "context": "CREATE TABLE table_14752049_1 (international_tourist_arrivals__2011_ VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_14752049_1 WHERE rank = 5",
    "question_en": "Which country has a rank of 5?",
    "question_th": "ประเทศใดมีอันดับ 5",
    "context": "CREATE TABLE table_14752049_1 (country VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT MAX(rank) FROM table_14752049_1 WHERE country = \"Germany\"",
    "question_en": "What rank is associated with Germany?",
    "question_th": "อันดับใดที่เกี่ยวข้องกับเยอรมนี?",
    "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_en": "Name the number of ranks for international tourist arrivals being 6.2 million",
    "question_th": "ระบุจำนวนนักท่องเที่ยวต่างชาติเข้ามาอยู่ที่ 6.2 ล้านคน",
    "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_en": "Name the number of ranks for south korea",
    "question_th": "ตั้งชื่อหมายเลขอันดับของเกาหลีใต้",
    "context": "CREATE TABLE table_14752049_5 (rank VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT MIN(stolen_ends) FROM table_1475840_1 WHERE locale = Alberta",
    "question_en": "What is the minimum stolen ends for the locale Alberta?",
    "question_th": "การสิ้นสุดขั้นต่ำที่ถูกขโมยสำหรับสถานที่อัลเบอร์ตาคือเท่าใด",
    "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_en": "What was the inroductory phase for the episode with production code 4005?",
    "question_th": "ขั้นตอนเบื้องต้นสำหรับตอนที่มีรหัสการผลิต 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_en": "What was the inroductory phase for the episode with neil shubin as a guest?",
    "question_th": "ช่วงแนะนำของตอนที่นีล ชูบินเป็นแขกรับเชิญคือช่วงใด",
    "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_en": "What was the inroductory phase for the episode that originally aired january 21?",
    "question_th": "ช่วงแนะนำของตอนที่ออกอากาศครั้งแรกในวันที่ 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_en": "How many series had 18.77 million viewers?",
    "question_th": "มีซีรีส์กี่เรื่องที่มีผู้ชม 18.77 ล้านคน?",
    "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_en": "How many roles include George Broderick in the casino 1888 theater?",
    "question_th": "George Broderick มีบทบาทในโรงละครคาสิโนปี 1888 กี่บทบาท?",
    "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_en": "What is the total of roles that George Olmi plays in Savoy & Casino Theatre 1888?",
    "question_th": "บทบาททั้งหมดที่ George Olmi เล่นใน 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_en": "Who plays Overton Moyle in casino theatre 1888 & savoy theatre 1906?",
    "question_th": "ใครเล่น Overton Moyle ในโรงละครคาสิโนปี 1888 และโรงละครซาวอยปี 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_en": "Name the losses for general caballero zc",
    "question_th": "ตั้งชื่อการสูญเสียสำหรับ 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_en": "Name the most draws when wins is 3",
    "question_th": "ตั้งชื่อว่าเสมอกันมากที่สุดเมื่อชนะคือ 3",
    "context": "CREATE TABLE table_14876228_1 (draws INTEGER, wins VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(played) FROM table_14876228_1 WHERE scored = 16",
    "question_en": "Name the number of played for 16",
    "question_th": "ตั้งชื่อจำนวนที่เล่นได้ 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_en": "Name the population 1891 for area being 175836",
    "question_th": "ตั้งชื่อประชากร 1891 สำหรับพื้นที่ 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_en": "Name the administrative county being area of 422372",
    "question_th": "ตั้งชื่อเขตปกครองเป็นพื้นที่ 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_en": "Name the area for administrative county being flintshire",
    "question_th": "ตั้งชื่อพื้นที่สำหรับเขตปกครองเป็นฟลินท์เชียร์",
    "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_en": "Name the number of administrative county for area 1961 and 176694",
    "question_th": "ตั้งชื่อหมายเลขเขตปกครองสำหรับพื้นที่ 1961 และ 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_en": "How many couples won the Mixed Doubles in 1997?",
    "question_th": "มีกี่คู่ที่คว้าแชมป์คู่ผสมในปี 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_en": "Name the number of week for game site being memorial stadium for buffalo bills",
    "question_th": "ตั้งชื่อจำนวนสัปดาห์สำหรับสถานที่เล่นเกมที่เป็นสนามกีฬาอนุสรณ์ตั๋วเงินควาย",
    "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_en": "Name the opponent for october 2, 1983",
    "question_th": "ทายชื่อคู่ต่อสู้วันที่ 2 ตุลาคม 2526",
    "context": "CREATE TABLE table_14940519_1 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(week) FROM table_14940519_1 WHERE date = \"September 25, 1983\"",
    "question_en": "Name the least week for september 25, 1983",
    "question_th": "ตั้งชื่อสัปดาห์ที่น้อยที่สุดของวันที่ 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_en": "Name the total number of weeks for at cleveland browns",
    "question_th": "ตั้งชื่อจำนวนสัปดาห์ทั้งหมดสำหรับที่คลีฟแลนด์บราวน์",
    "context": "CREATE TABLE table_14940519_1 (week VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_14940519_1 WHERE result = \"L 17–50\"",
    "question_en": "Name the record for result of  l 17–50",
    "question_th": "ตั้งชื่อบันทึกสำหรับผลลัพธ์ของ l 17–50",
    "context": "CREATE TABLE table_14940519_1 (record VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_14951643_1 WHERE result = \"W 52–19\"",
    "question_en": "what's the record with result being w 52–19",
    "question_th": "บันทึกที่มีผลเป็น w 52–19 คืออะไร",
    "context": "CREATE TABLE table_14951643_1 (record VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(result) FROM table_14951643_1 WHERE opponent = \"Cleveland Browns\"",
    "question_en": " how many result with opponent being cleveland browns",
    "question_th": " ฝ่ายตรงข้ามเป็นคลีฟแลนด์บราวน์กี่ผล",
    "context": "CREATE TABLE table_14951643_1 (result VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_14951643_1 WHERE opponent = \"at New England Patriots\"",
    "question_en": "what's the result with opponent being at new england patriots",
    "question_th": "ผลที่ตามมาเมื่อคู่ต่อสู้อยู่ที่นิวอิงแลนด์รักชาติ",
    "context": "CREATE TABLE table_14951643_1 (result VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_14951643_1 WHERE result = \"W 21–7\"",
    "question_en": "what's the record with result being w 21–7",
    "question_th": "บันทึกที่ผลการแข่งขันเป็น w 21–7 คืออะไร",
    "context": "CREATE TABLE table_14951643_1 (record VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_14951643_1 WHERE attendance = 40657",
    "question_en": "what's the date with attendance being 40657",
    "question_th": "วันที่เท่าไหร่ที่ผู้เข้าร่วมคือ 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_en": "Name the attendance for september 19, 1976",
    "question_th": "ตั้งชื่อการเข้าร่วมสำหรับวันที่ 19 กันยายน 1976",
    "context": "CREATE TABLE table_14945881_1 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(record) FROM table_14945881_1 WHERE attendance = 44023",
    "question_en": "Name the number of record when attendance is 44023",
    "question_th": "ตั้งชื่อหมายเลขบันทึกเมื่อมีผู้เข้าร่วม 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_en": "Name the least week for september 19, 1976",
    "question_th": "ตั้งชื่อสัปดาห์ที่น้อยที่สุดของวันที่ 19 กันยายน 1976",
    "context": "CREATE TABLE table_14945881_1 (week INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_14945881_1 WHERE attendance = 42827",
    "question_en": "Name the record when attendance 42827",
    "question_th": "ตั้งชื่อบันทึกเมื่อเข้าร่วมประชุม 42827",
    "context": "CREATE TABLE table_14945881_1 (record VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_14945881_1 WHERE week = 9",
    "question_en": "Name the date when week is 9",
    "question_th": "ตั้งชื่อวันที่เมื่อสัปดาห์เป็น 9",
    "context": "CREATE TABLE table_14945881_1 (date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT year__ceremony_ FROM table_14975415_1 WHERE hungarian_title = \"Taxidermia\"",
    "question_en": "What year was taxidermia nominated? ",
    "question_th": " Taxidermia ได้รับการเสนอชื่อเข้าชิงในปีใด",
    "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_en": "Who is the director for diary for my loves?",
    "question_th": "ใครคือผู้กำกับ Diary for My Love?",
    "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_en": "Was diary for my loves nominated?",
    "question_th": "Diary for my love ได้รับการเสนอชื่อเข้าชิงหรือไม่?",
    "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_en": "Who is the director for the witman boys?",
    "question_th": "ใครเป็นผู้กำกับของ 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_en": "Name the game site for december 12, 1965",
    "question_th": "ตั้งชื่อเว็บไซต์เกมวันที่ 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_en": "Name the total number of game sites for chicago bears",
    "question_th": "ตั้งชื่อเว็บไซต์เกมหมีชิคาโกทั้งหมดจำนวน",
    "context": "CREATE TABLE table_14977592_1 (game_site VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_14977592_1 WHERE date = \"November 14, 1965\"",
    "question_en": "Name the result for november 14, 1965",
    "question_th": "ประกาศผลวันที่ 14 พฤศจิกายน 2508",
    "context": "CREATE TABLE table_14977592_1 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT game_site FROM table_14971788_1 WHERE opponent = \"Atlanta Falcons\"",
    "question_en": "Where was the game against Atlanta Falcons held?",
    "question_th": "เกมกับ Atlanta Falcons จัดขึ้นที่ไหน?",
    "context": "CREATE TABLE table_14971788_1 (game_site VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_14971788_1 WHERE week = 2",
    "question_en": "What date was week 2?",
    "question_th": "สัปดาห์ที่ 2 คือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_14971788_1 (date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_14977252_2 WHERE professional_jury = 5",
    "question_en": "Name the place of the jury of 5",
    "question_th": "ตั้งชื่อสถานที่คณะลูกขุน 5",
    "context": "CREATE TABLE table_14977252_2 (place VARCHAR, professional_jury VARCHAR)"
  },
  {
    "answer": "SELECT professional_jury FROM table_14977252_2 WHERE points = 10",
    "question_en": "Name the jury of 10 points",
    "question_th": "ตั้งชื่อคณะลูกขุน 10 คะแนน",
    "context": "CREATE TABLE table_14977252_2 (professional_jury VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT artist FROM table_14977252_2 WHERE draw = 2",
    "question_en": "Name the artist of 2 draw",
    "question_th": "ตั้งชื่อศิลปิน 2 งวด",
    "context": "CREATE TABLE table_14977252_2 (artist VARCHAR, draw VARCHAR)"
  },
  {
    "answer": "SELECT MIN(draw) FROM table_14977252_2 WHERE artist = \"Elena Dermidjean\"",
    "question_en": "Name the least draw for elena dermidjean",
    "question_th": "ตั้งชื่อการจับรางวัลน้อยที่สุดสำหรับ 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_en": "What was the competition when there was no competition for mens doubles?",
    "question_th": "การแข่งขันจะเป็นอย่างไรเมื่อไม่มีการแข่งขันประเภทชายคู่?",
    "context": "CREATE TABLE table_15001572_1 (womens_doubles VARCHAR, mens_doubles VARCHAR)"
  },
  {
    "answer": "SELECT mixed_doubles FROM table_15001572_1 WHERE year = 1998",
    "question_en": "Who won the mixed doubles in 1998?",
    "question_th": "ใครชนะประเภทคู่ผสมในปี 1998?",
    "context": "CREATE TABLE table_15001572_1 (mixed_doubles VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(college) FROM table_15017024_2 WHERE pick = 57",
    "question_en": "How many colleges did the player picked 57 attend?",
    "question_th": "ผู้เล่นเลือก 57 เข้าร่วมวิทยาลัยกี่แห่ง",
    "context": "CREATE TABLE table_15017024_2 (college VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(height) FROM table_15017024_2 WHERE player_name = \"Chad Henne\"",
    "question_en": "How many heights does chad henne have?",
    "question_th": "แชด เฮนน์ มีความสูงกี่ระดับ?",
    "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_en": "Name the recopa sudamericana 1992 for did not qualify for libertadores 1992 and round of 16 for bragantino",
    "question_th": "ตั้งชื่อ recopa sudamericana 1992 เนื่องจากไม่ผ่านเข้ารอบ Libertadores 1992 และรอบ 16 ทีมสุดท้ายสำหรับ 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_en": "Name the copa libertadores 1992 for round of 16 and team of fluminense",
    "question_th": "ตั้งชื่อโคปาลิเบอร์ตาโดเรส 1992 สำหรับรอบ 16 ทีมสุดท้ายและทีมฟลูมิเนนเซ่",
    "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_en": "Name the team for copa conmebol 1992 is round of 16",
    "question_th": "รายชื่อทีมโคปา คอนเมโบล 1992 รอบ 16 ทีม",
    "context": "CREATE TABLE table_15013825_8 (team VARCHAR, copa_conmebol_1992 VARCHAR)"
  },
  {
    "answer": "SELECT league FROM table_15056103_1 WHERE year = 2009",
    "question_en": "What league were they in in 2009?",
    "question_th": "พวกเขาอยู่ลีกอะไรในปี 2009?",
    "context": "CREATE TABLE table_15056103_1 (league VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT playoffs FROM table_15056103_1 WHERE regular_season = \"5th, North\"",
    "question_en": "What was the playoff result when they finished 5th, north in the regular sesason?",
    "question_th": "ผลเพลย์ออฟเป็นอย่างไรเมื่อพวกเขาจบอันดับที่ 5 เหนือในฤดูกาลปกติ?",
    "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_en": "Which player's results were T6 in the PGA Ch., T4 in the Masters and T8 at the U.S. Open?",
    "question_th": "ผลลัพธ์ของผู้เล่นคนใดคือ T6 ใน PGA Ch., T4 ใน Masters และ T8 ใน US 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_en": "What is the result at the Masters for the player who finished R16 at the PGA Ch.?",
    "question_th": "ผลลัพธ์ที่ Masters สำหรับผู้เล่นที่จบ R16 ที่ 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_en": "What was the player's result at the U.S. Open of the player who finished 6th at the Open Ch?",
    "question_th": "ผลลัพธ์ของผู้เล่นที่ US Open ของผู้เล่นที่จบอันดับที่ 6 ที่ 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_en": "The Rainbow District School Board is associated with what type?",
    "question_th": "คณะกรรมการโรงเรียนเขตสายรุ้งมีความเกี่ยวข้องกับประเภทใด?",
    "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_en": "Where are all school boards associated with a number of elementary schools of 96?",
    "question_th": "คณะกรรมการโรงเรียนทั้งหมดเกี่ยวข้องกับโรงเรียนประถมศึกษาจำนวน 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_en": "Which headquarters are associated with the school board Renfrew County Catholic District School Board?",
    "question_th": "สำนักงานใหญ่ใดที่เกี่ยวข้องกับคณะกรรมการโรงเรียน คณะกรรมการโรงเรียนเขตคาทอลิกเขตเรนฟรูว์",
    "context": "CREATE TABLE table_1506619_1 (headquarters VARCHAR, school_board VARCHAR)"
  },
  {
    "answer": "SELECT swimsuit FROM table_15081939_4 WHERE evening_gown = \"7.61\"",
    "question_en": "What is the swimsuit score for the item that has 7.61 as evening gown",
    "question_th": "คะแนนชุดว่ายน้ำของชิ้นที่ได้ 7.61 เป็นชุดราตรีคือเท่าไร",
    "context": "CREATE TABLE table_15081939_4 (swimsuit VARCHAR, evening_gown VARCHAR)"
  },
  {
    "answer": "SELECT province FROM table_15081939_4 WHERE swimsuit = \"8.43\"",
    "question_en": "Which province got a swimsuit score of 8.43",
    "question_th": "จังหวัดไหนได้คะแนนชุดว่ายน้ำ 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_en": "Which province has evening gown score of 7.61",
    "question_th": "จังหวัดใดมีคะแนนชุดราตรี 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_en": "How many averages for the province with evening gown score of 8.00",
    "question_th": "จังหวัดที่มีคะแนนชุดราตรีเฉลี่ยกี่คะแนน 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_en": "How many provinces have evening gown score of 8.49",
    "question_th": "มีกี่จังหวัดที่มีคะแนนชุดราตรี 8.49",
    "context": "CREATE TABLE table_15081939_4 (province VARCHAR, evening_gown VARCHAR)"
  },
  {
    "answer": "SELECT constituency FROM table_15082102_3 WHERE electorate = 54787",
    "question_en": "which electorate is 54787 of the constituency",
    "question_th": "ซึ่งมีเขตเลือกตั้งอยู่ที่ 54787 ของเขตเลือกตั้ง",
    "context": "CREATE TABLE table_15082102_3 (constituency VARCHAR, electorate VARCHAR)"
  },
  {
    "answer": "SELECT MIN(s_spoilt_vote) FROM table_15082102_3 WHERE electorate = 83850",
    "question_en": "in electorate of 83850 what is the minimum s split vote",
    "question_th": "ในเขตเลือกตั้งจำนวน 83850 คะแนนเสียงแยกขั้นต่ำคือเท่าใด",
    "context": "CREATE TABLE table_15082102_3 (s_spoilt_vote INTEGER, electorate VARCHAR)"
  },
  {
    "answer": "SELECT lead FROM table_15125201_1 WHERE socialist = \"35.5%\"",
    "question_en": "What is the lead percentage when the socialist is at 35.5%?",
    "question_th": "เปอร์เซ็นต์ผู้นำเมื่อนักสังคมนิยมอยู่ที่ 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_en": "What was the margin of victory at the Hawaiian Open tournament?",
    "question_th": "อะไรคือส่วนต่างของชัยชนะในการแข่งขัน Hawaiian Open?",
    "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_en": "What was the margin of victory at the Mercedes Championships?",
    "question_th": "อะไรคือส่วนต่างของชัยชนะในการแข่งขัน 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_en": "Name the tfl-yds for no-yds 1-0",
    "question_th": "ตั้งชื่อ tfl-yds สำหรับ 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_en": "Name the solo when name is briggs, diyral",
    "question_th": "ตั้งชื่อโซโลเมื่อชื่อบริกส์ ไดรัล",
    "context": "CREATE TABLE table_15128839_22 (solo VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT gp FROM table_15128839_22 WHERE ff = 0 AND qbh = 1",
    "question_en": "Name the gp for ff being 0 and qbh being 1",
    "question_th": "ตั้งชื่อ gp สำหรับ ff เป็น 0 และ qbh เป็น 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_en": "When the division is Division 2 men what is the champion score?",
    "question_th": "เมื่อดิวิชั่นเป็นดิวิชั่น 2 ชายคะแนนแชมป์เท่าไหร่?",
    "context": "CREATE TABLE table_15161170_1 (champion_score VARCHAR, division VARCHAR)"
  },
  {
    "answer": "SELECT MIN(spirou) FROM table_15163938_1",
    "question_en": "Name the least spirou",
    "question_th": "ตั้งชื่อสปิรูน้อยที่สุด",
    "context": "CREATE TABLE table_15163938_1 (spirou INTEGER)"
  },
  {
    "answer": "SELECT home_team FROM table_15173650_2 WHERE away_team = \"Kilmarnock\"",
    "question_en": "Name the home team when away team is kilmarnock",
    "question_th": "ตั้งชื่อทีมเจ้าบ้านเมื่อทีมเยือนคือคิลมาร์น็อค",
    "context": "CREATE TABLE table_15173650_2 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT MIN(attendance) FROM table_15173650_2",
    "question_en": "Name the least attendance",
    "question_th": "ตั้งชื่อผู้เข้าร่วมน้อยที่สุด",
    "context": "CREATE TABLE table_15173650_2 (attendance INTEGER)"
  },
  {
    "answer": "SELECT episode FROM table_15187735_5 WHERE segment_a = \"Kitchen Knives\"",
    "question_en": "Kitchen knives is segment a of what episode? ",
    "question_th": " มีดทำครัวเป็นภาค ก ของตอนไหนครับ?",
    "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_en": "When segment b is dining room tables what is segment d?",
    "question_th": "เมื่อส่วน b คือโต๊ะรับประทานอาหาร ส่วน 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_en": "When marshmallow cookies is segment b what episode is it on netflix?",
    "question_th": "เมื่อ Marshmallow Cookies เป็นภาค B มีตอนไหนใน 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_en": "When cardboard boxes is segment c what is segment a?",
    "question_th": "เมื่อกล่องกระดาษแข็งอยู่ในส่วน c ส่วน 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_en": "Name the number of episodes for s hacksaw",
    "question_th": "ตั้งชื่อจำนวนตอนของเลือยตัดโลหะ",
    "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_en": "Name the number of series episode for s piston",
    "question_th": "บอกชื่อหมายเลขซีรีส์ตอนของลูกสูบ",
    "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_en": "Name the segment c for paint rollers",
    "question_th": "ตั้งชื่อส่วน c สำหรับลูกกลิ้งทาสี",
    "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_en": "Name the segment a for 8-08",
    "question_th": "ตั้งชื่อส่วน a สำหรับ 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_en": "Name the segment b for graphite s fly rod",
    "question_th": "ตั้งชื่อส่วน b สำหรับฟลายร็อดของกราไฟท์",
    "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_en": "Who won the race at Magny-Cours",
    "question_th": "ใครเป็นผู้ชนะการแข่งขันที่ Magny-Cours",
    "context": "CREATE TABLE table_15187794_1 (race_winner VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_15187794_1 WHERE circuit = \"Assen\"",
    "question_en": "Which round was the circuit Assen",
    "question_th": "รอบไหนเป็นเซอร์กิตอัสเซ่น",
    "context": "CREATE TABLE table_15187794_1 (round VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(race_winner) FROM table_15187794_1 WHERE no = 12",
    "question_en": "How many people won in No. 12",
    "question_th": "อันดับ 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_en": "Which countries won by 9 strokes?",
    "question_th": "ประเทศไหนชนะ 9 จังหวะ?",
    "context": "CREATE TABLE table_1520559_1 (country VARCHAR, margin_of_victory VARCHAR)"
  },
  {
    "answer": "SELECT purse___$__ FROM table_1520559_1 WHERE winners_share__$_ = 428650",
    "question_en": "What purses had a winners share equal to $428650?",
    "question_th": "กระเป๋าเงินใดบ้างที่ผู้ชนะมีส่วนแบ่งเท่ากับ $428650",
    "context": "CREATE TABLE table_1520559_1 (purse___$__ VARCHAR, winners_share__$_ VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_1520559_1 WHERE champion = \"Lorena Ochoa\"",
    "question_en": "At what venues did Lorena Ochoa win the championship?",
    "question_th": "Lorena Ochoa คว้าแชมป์ที่สถานที่ใด",
    "context": "CREATE TABLE table_1520559_1 (venue VARCHAR, champion VARCHAR)"
  },
  {
    "answer": "SELECT episode_no FROM table_15211468_3 WHERE presenter = \"Ben Okri\"",
    "question_en": "What episode number is presented by Ben Okri ?",
    "question_th": "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_en": "What was the UK broadcast date for the episode presented by Buck Henry?",
    "question_th": "วันที่ออกอากาศในสหราชอาณาจักรสำหรับตอนที่นำเสนอโดย 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_en": "What is the input clock (mhz) for s-spec number sk096?",
    "question_th": "นาฬิกาอินพุต (mhz) สำหรับหมายเลข s-spec 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_en": "What is the voltage range (v) if the clock multiplier is 3x or 2x mode and part number is a80486dx4wb-100?",
    "question_th": "ช่วงแรงดันไฟฟ้า (v) คือเท่าใด หากตัวคูณสัญญาณนาฬิกาอยู่ในโหมด 3x หรือ 2x และหมายเลขชิ้นส่วนคือ 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_en": "What is the part number for s-spec number sk096?",
    "question_th": "หมายเลขชิ้นส่วนของหมายเลข s-spec 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_en": "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?",
    "question_th": "ตัวคูณสัญญาณนาฬิกาคืออะไรหากช่วงแรงดันไฟฟ้า (v) คือ 3.3 - 3.6; นาฬิกาอินพุต (mhz) คือ 33 x 3/50 x 2; และหมายเลขชิ้นส่วนคือ 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_en": "What is the processor speed (mhz) for part number a80486dx4-75?",
    "question_th": "ความเร็วโปรเซสเซอร์ (mhz) สำหรับหมายเลขชิ้นส่วน 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_en": "Tell me the least amount of democratic colation",
    "question_th": "บอกฉันหน่อยสิว่าต้องมีการเทียบเคียงตามระบอบประชาธิปไตยให้น้อยที่สุด",
    "context": "CREATE TABLE table_15306124_1 (democratic_coalition INTEGER)"
  },
  {
    "answer": "SELECT MIN(league_of_communists) FROM table_15306124_1 WHERE municipality = \"Mojkovac\"",
    "question_en": "What is the least amount of league of communists where municipality is mojkovac",
    "question_th": "อะไรคือจำนวนน้อยที่สุดของลีกคอมมิวนิสต์ที่เทศบาลเป็น 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_en": "How many league of communists have the municipality of bar?",
    "question_th": "นิกายคอมมิวนิสต์มีเขตเทศบาลบาร์กี่กลุ่ม?",
    "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_en": "How many league of communists have the people's party at 7?",
    "question_th": "พรรคคอมมิวนิสต์มีกี่พรรคประชาชนตอน 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_en": "Name the poles for 2011",
    "question_th": "ตั้งชื่อเสาประจำปี 2554",
    "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_en": "Name the rdiers for jir team scot motogp",
    "question_th": "ตั้งชื่อ rdiers สำหรับทีม jir 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_en": "Name the class for makoto tamada and races is 17",
    "question_th": "ตั้งชื่อคลาสสำหรับ makoto tamada และเผ่าพันธุ์คือ 17",
    "context": "CREATE TABLE table_15327489_1 (class VARCHAR, riders VARCHAR, races VARCHAR)"
  },
  {
    "answer": "SELECT MIN(wins) FROM table_15327489_1",
    "question_en": "Name the most wins",
    "question_th": "ชื่อที่ชนะมากที่สุด",
    "context": "CREATE TABLE table_15327489_1 (wins INTEGER)"
  },
  {
    "answer": "SELECT college FROM table_15353123_1 WHERE player = \"Dean Kirkland\"",
    "question_en": "Which college did Dean Kirkland go to",
    "question_th": "ดีน เคิร์กแลนด์ไปเรียนที่วิทยาลัยไหน",
    "context": "CREATE TABLE table_15353123_1 (college VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_15353123_1 WHERE college = \"Pittsburg State\"",
    "question_en": "Which player went to Pittsburg State",
    "question_th": "นักเตะคนไหนไปเล่นที่รัฐพิตต์สเบิร์ก",
    "context": "CREATE TABLE table_15353123_1 (player VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT MIN(pick__number) FROM table_15353123_1",
    "question_en": "Who was the highest pick",
    "question_th": "ใครคือผู้ถูกเลือกสูงสุด",
    "context": "CREATE TABLE table_15353123_1 (pick__number INTEGER)"
  },
  {
    "answer": "SELECT MAX(pick__number) FROM table_15353123_1 WHERE position = \"Defensive end\"",
    "question_en": "Who was the highest picked defensive end",
    "question_th": "ใครคือฝ่ายรับที่เลือกสูงสุด",
    "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_en": "How many players named Dean Kirkland were picked",
    "question_th": "มีการเลือกผู้เล่นชื่อดีน เคิร์กแลนด์กี่คน",
    "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_en": "How many metropolitan boroughs have dorridge as a station?",
    "question_th": "มีกี่เมืองที่มี dorridge เป็นสถานี",
    "context": "CREATE TABLE table_15366849_1 (c_ VARCHAR, metropolitan_borough_ VARCHAR, station VARCHAR)"
  },
  {
    "answer": "SELECT MAX(zone) FROM table_15366849_1",
    "question_en": "What's the biggest zone?",
    "question_th": "โซนที่ใหญ่ที่สุดคืออะไร?",
    "context": "CREATE TABLE table_15366849_1 (zone INTEGER)"
  },
  {
    "answer": "SELECT isotopic_mass___u__ FROM table_15366768_1 WHERE nuclide = \"169 Tm\"",
    "question_en": "What is the mass of the element with a nuclide that is 169 tm?",
    "question_th": "มวลของธาตุที่มีนิวไคลด์เท่ากับ 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_en": "What is the total number of N for the element with nuclide of 141 pr?",
    "question_th": "จำนวน N ทั้งหมดสำหรับองค์ประกอบที่มีนิวไคลด์เท่ากับ 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_en": "What is the name of the element with isotopic mass of 158.925 34(2)?",
    "question_th": "ธาตุที่มีมวลไอโซโทป 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_en": "The theme year they were born belongs to what artist?",
    "question_th": "ธีมปีที่พวกเขาเกิดเป็นของศิลปินคนไหน?",
    "context": "CREATE TABLE table_15383430_1 (original_artist VARCHAR, theme VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(result) FROM table_15383430_1 WHERE original_artist = \"Queen\"",
    "question_en": "How many songs were sung by queen?",
    "question_th": "ราชินีร้องกี่เพลง?",
    "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_en": "Name the glass bulb color for ordinary",
    "question_th": "ตั้งชื่อสีหลอดแก้วให้ธรรมดา",
    "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_en": "Name the most ceiling temperature for intermediate",
    "question_th": "ตั้งชื่ออุณหภูมิเพดานสูงสุดสำหรับระดับกลาง",
    "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_en": "Name the most ceiling temperature for very extra high",
    "question_th": "ตั้งชื่ออุณหภูมิเพดานสูงสุดสำหรับค่าที่สูงเป็นพิเศษ",
    "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_en": "When did the playoffs reached Conference Finals?",
    "question_th": "รอบตัดเชือกไปถึง Conference Finals เมื่อใด",
    "context": "CREATE TABLE table_15409403_1 (year VARCHAR, playoffs VARCHAR)"
  },
  {
    "answer": "SELECT regular_season FROM table_15409403_1 WHERE year = 2012",
    "question_en": "What was the regular season from year 2012?",
    "question_th": "ฤดูกาลปกติตั้งแต่ปี 2555 คืออะไร?",
    "context": "CREATE TABLE table_15409403_1 (regular_season VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_15420044_1 WHERE difference = \"8\"",
    "question_en": "Which teams had a difference of 8 between goals scored and goals conceeded",
    "question_th": "ทีมใดมีความแตกต่าง 8 ระหว่างประตูที่ทำได้และเสียประตู",
    "context": "CREATE TABLE table_15420044_1 (team VARCHAR, difference VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_15420044_1 WHERE against = 10",
    "question_en": "Which teams had 10 goals scored against them",
    "question_th": "ทีมใดทำประตูได้ 10 ประตูต่อพวกเขา",
    "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_en": "What is the original air date for episode 17 in the season?",
    "question_th": "ตอนที่ 17 ของซีซั่นนี้ออกอากาศตอนแรกเมื่อใด?",
    "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_en": "What is the original air date for the episode directed by Peter Woeste?",
    "question_th": "วันที่ออกอากาศดั้งเดิมของตอนที่กำกับโดย 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_en": "What is the title for episode number 7 in the season?",
    "question_th": "ตอนที่ 7 ของซีซั่นนี้ชื่ออะไรคะ?",
    "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_en": "Name the total number of number disc for jimmy kaufman",
    "question_th": "ตั้งชื่อจำนวนรวมของดิสก์ตัวเลขสำหรับ 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_en": "Name the minimum number disc for number in series for 14",
    "question_th": "ตั้งชื่อดิสก์ตัวเลขขั้นต่ำสำหรับตัวเลขในชุดเลข 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_en": "Name the maximum number of disc for bill gereghty",
    "question_th": "ตั้งชื่อจำนวนดิสก์สูงสุดสำหรับการเรียกเก็บเงิน",
    "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_en": "Name the total number of length minutes for number in series for 17",
    "question_th": "ตั้งชื่อจำนวนนาทีความยาวทั้งหมดสำหรับตัวเลขในชุดเลข 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_en": "What is the best finish where the scoring rank is 97?",
    "question_th": "การจบสกอร์ที่ดีที่สุดคือแต้มไหนคือ 97?",
    "context": "CREATE TABLE table_15431122_2 (best_finish VARCHAR, scoring_rank VARCHAR)"
  },
  {
    "answer": "SELECT MIN(wins) FROM table_15431122_2",
    "question_en": "What is the minimum number of wins?",
    "question_th": "จำนวนชัยชนะขั้นต่ำคือเท่าไร?",
    "context": "CREATE TABLE table_15431122_2 (wins INTEGER)"
  },
  {
    "answer": "SELECT COUNT(second_member) FROM table_15451122_2 WHERE first_member = \"John Rudhale\"",
    "question_en": "How many different second members were there when John rudhale was first member?",
    "question_th": "ตอนที่ John rudhale เป็นสมาชิกคนแรกมีสมาชิกคนที่ 2 ที่แตกต่างกันกี่คน",
    "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_en": "What date was parliament assembled when John rudhale was first member?",
    "question_th": "รัฐสภาประชุมกันวันไหนเมื่อจอห์น รูดเฮลเป็นสมาชิกคนแรก",
    "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_en": "Name the school/club team when season is 2009-2011",
    "question_th": "ตั้งชื่อทีมโรงเรียน/สโมสรเมื่อฤดูกาล 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_en": "Name the name for san beda",
    "question_th": "ตั้งชื่อให้ซานเบดา",
    "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_en": "Name the position for san beda",
    "question_th": "ตั้งชื่อตำแหน่งให้ซานเบดา",
    "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_en": "Name the name of the state",
    "question_th": "ตั้งชื่อชื่อของรัฐ",
    "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_en": "Namethe school team for season 2008",
    "question_th": "ตั้งชื่อทีมโรงเรียนฤดูกาล 2551",
    "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_en": "Nametheh school team for norman gonzales",
    "question_th": "ชื่อทีมโรงเรียนของนอร์แมน กอนซาเลส",
    "context": "CREATE TABLE table_15463188_7 (school_club_team VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_15467476_2 WHERE club = \"Pontrhydyfen RFC\"",
    "question_en": "Name the points for  pontrhydyfen rfc",
    "question_th": "ตั้งชื่อคะแนนสำหรับ 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_en": "Name the try bonus and tries for 30",
    "question_th": "ตั้งชื่อโบนัสการลองและพยายามเป็นเวลา 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_en": "Name the points for where lost is 4",
    "question_th": "ตั้งชื่อคะแนนที่เสียคือ 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_en": "Name the number when acquisition via far eastern",
    "question_th": "ตั้งชื่อหมายเลขเมื่อซื้อผ่านฟาร์อีสท์",
    "context": "CREATE TABLE table_15463188_16 (number VARCHAR, acquisition_via VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_15463188_16 WHERE number = \"9\"",
    "question_en": "Name the season when the number is 9",
    "question_th": "ตั้งชื่อฤดูกาลเมื่อหมายเลขคือ 9",
    "context": "CREATE TABLE table_15463188_16 (season VARCHAR, number VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_15463188_16 WHERE school_club_team = \"Visayas\"",
    "question_en": "Name the name for visayas",
    "question_th": "ตั้งชื่อวิซายัส",
    "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_en": "Name the school/club team for 9",
    "question_th": "ตั้งชื่อทีมโรงเรียน/สโมสร จำนวน 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_en": "What are all the schools that use the colors maroon and white",
    "question_th": "มีโรงเรียนใดบ้างที่ใช้สีมารูนและสีขาว",
    "context": "CREATE TABLE table_15475116_1 (school VARCHAR, colors VARCHAR)"
  },
  {
    "answer": "SELECT colors FROM table_15475116_1 WHERE school = \"Middletown High school\"",
    "question_en": "Middletown High School uses which colors",
    "question_th": "โรงเรียนมัธยมมิดเดิลทาวน์ใช้สีอะไร",
    "context": "CREATE TABLE table_15475116_1 (colors VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT league FROM table_15475116_1 WHERE nickname = \"Cavaliers\"",
    "question_en": "What league does the team with the nickname Cavaliers belong to",
    "question_th": "ทีมที่มีชื่อเล่นว่าคาวาเลียร์อยู่ในลีกใด",
    "context": "CREATE TABLE table_15475116_1 (league VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT division FROM table_15475116_1 WHERE nickname = \"Silver Eagles\"",
    "question_en": "In what division will you find the team nicknamed the Silver Eagles",
    "question_th": "คุณจะพบกับทีมที่มีชื่อเล่นว่า 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_en": "What league does Delaware Military Academy belong to",
    "question_th": "Delaware Military Academy อยู่ในลีกใด",
    "context": "CREATE TABLE table_15475116_1 (league VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(district) FROM table_15572443_1 WHERE election_date = \"December 1799\"",
    "question_en": "Name the number of districts for december 1799",
    "question_th": "ตั้งชื่อจำนวนอำเภอ เดือนธันวาคม พ.ศ. 2342",
    "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_en": "Name the vacator for took seat being january 29, 1813",
    "question_th": "ตั้งชื่อผู้ว่างที่จะนั่งเป็นวันที่ 29 มกราคม พ.ศ. 2356",
    "context": "CREATE TABLE table_15572443_1 (vacator VARCHAR, took_seat VARCHAR)"
  },
  {
    "answer": "SELECT MAX(number_of_s_eva) FROM table_1558077_8",
    "question_en": "Name the most number of s eva",
    "question_th": "บอกชื่อ 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_en": "Name the total number of luna blastoff date for apollo 11",
    "question_th": "ตั้งชื่อจำนวนวันระเบิดลูน่าทั้งหมดสำหรับอพอลโล 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_en": "Name the mission name for 21 november 1969",
    "question_th": "ตั้งชื่อภารกิจวันที่ 21 พฤศจิกายน 2512",
    "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_en": "Name the lunar landing site for 19 november 1969",
    "question_th": "ตั้งชื่อจุดลงจอดบนดวงจันทร์ 19 พฤศจิกายน 2512",
    "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_en": "Name the mission name for ocean of storms",
    "question_th": "ตั้งชื่อภารกิจของ 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_en": "What award did team 679 win?",
    "question_th": "ทีม 679 ได้รับรางวัลอะไรบ้าง?",
    "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_en": "Which number belonged to the school team from Arizona?",
    "question_th": "หมายเลขใดเป็นของทีมโรงเรียนจากแอริโซนา",
    "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_en": "What is the latest number of the guard position from the Wake Forest school team?",
    "question_th": "ล่าสุดตำแหน่งการ์ดทีมโรงเรียนเวคฟอเรสคือเบอร์อะไร?",
    "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_en": "List all years in Orlando where Jeryl Sasser was a player.",
    "question_th": "รายชื่อทุกปีในออร์แลนโดที่ Jeryl Sasser เป็นผู้เล่น",
    "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_en": "WHAT WAS THE NUMBER OF THE ONLY FORWARD-CENTER TO MAKE THE ROSTER?",
    "question_th": "จำนวนศูนย์หน้าเพียงแห่งเดียวที่สร้างบัญชีรายชื่อคืออะไร?",
    "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_en": "WHAT WAS THE JERSEY NUMBER OF THE ROSTER PLAYER FROM OKLAHOMA STATE WHO PLAYED GUARD?",
    "question_th": "หมายเลขเสื้อของผู้เล่นบัญชีรายชื่อจากรัฐโอคลาโฮมาที่เล่นการ์ดคือเท่าไร",
    "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_en": "WHO IS THE PLAYER(S) ON THE ROSTER FROM SCHOOL/CLUB TEAM ARIZONA?",
    "question_th": "ใครคือผู้เล่นในรายชื่อจากทีมโรงเรียน/สโมสร 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_en": "What is the fleet size of the airline which has a callsign of cool red?",
    "question_th": "สายการบินที่มีสัญลักษณ์เรียกสีแดงเย็นมีเครื่องบินขนาดเท่าไร?",
    "context": "CREATE TABLE table_15637071_1 (fleet_size INTEGER, callsign VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(fleet_size) FROM table_15637071_1 WHERE iata = \"5J\"",
    "question_en": "How large is the fleet size of the airline with the IATA code of 5j?",
    "question_th": "สายการบินที่มีรหัส IATA 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_en": "Which year did the Angeles City based airline begin operations?",
    "question_th": "สายการบินที่มีฐานอยู่ในเมืองแองเจเลสซิตี้เริ่มดำเนินการในปีใด",
    "context": "CREATE TABLE table_15637071_1 (commenced_operations VARCHAR, headquarters VARCHAR)"
  },
  {
    "answer": "SELECT MIN(commenced_operations) FROM table_15637071_1",
    "question_en": "When did the oldest airline start operations?",
    "question_th": "สายการบินที่เก่าแก่ที่สุดเริ่มดำเนินการเมื่อใด",
    "context": "CREATE TABLE table_15637071_1 (commenced_operations INTEGER)"
  },
  {
    "answer": "SELECT headquarters FROM table_15637071_1 WHERE icao = \"AAU\"",
    "question_en": "Where is the headquarters of the airline which has the ICAO code of AAU?",
    "question_th": "สำนักงานใหญ่ของสายการบินที่มีรหัส ICAO ของ 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_en": "How much uranium did Russia use in 2006 to 2008?",
    "question_th": "รัสเซียใช้ยูเรเนียมเท่าใดในปี 2549 ถึง 2551",
    "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_en": "Which country mines 24.0% of the world demand of uranium?",
    "question_th": "ประเทศใดมีการขุดแร่ยูเรเนียมถึง 24.0% ของความต้องการยูเรเนียมทั่วโลก",
    "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_en": "What is the deficit (-surplus) of the country who use 5.2% of the world demand of uranium?",
    "question_th": "การขาดดุล (-ส่วนเกิน) ของประเทศที่ใช้ยูเรเนียม 5.2% ของความต้องการโลกคืออะไร?",
    "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_en": "What is the  indigenous mining production of the country that uses 3.4% of the world demand?",
    "question_th": "การผลิตเหมืองแร่ในประเทศที่ใช้ 3.4% ของความต้องการทั่วโลกคืออะไร?",
    "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_en": "What is the deficit (-surplus) of France?",
    "question_th": "การขาดดุล (-ส่วนเกิน) ของฝรั่งเศสคืออะไร?",
    "context": "CREATE TABLE table_15624586_2 (deficit___surplus_ VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT pictorials FROM table_1566848_6 WHERE interview_subject = \"Steve Jobs\"",
    "question_en": "Name the pictorials when the interview subject is steve jobs",
    "question_th": "ตั้งชื่อภาพเมื่อหัวข้อสัมภาษณ์คือสตีฟจ็อบส์",
    "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_en": "Name the 20 questions when centerfold model is cherie witter",
    "question_th": "ตั้งชื่อคำถาม 20 ข้อเมื่อโมเดลพับกลางคือ cherie witter",
    "context": "CREATE TABLE table_1566848_6 (centerfold_model VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(pictorials) FROM table_1566848_6 WHERE date = \"5-85\"",
    "question_en": "Name the number of pictorials for 5-85",
    "question_th": "ตั้งชื่อจำนวนภาพ 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_en": "Name the centerfold model when interview subject is steve jobs",
    "question_th": "ตั้งชื่อโมเดลพับกลางเมื่อหัวข้อการสัมภาษณ์คือสตีฟจ็อบส์",
    "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_en": "Which date contained Aubrey O'Day as the cover model?",
    "question_th": "วันที่ใดที่มี Aubrey O'Day เป็นนางแบบหน้าปก",
    "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_en": "Who were the cover models in the edition that included Benicio Del Toro as the interview subject?",
    "question_th": "ใครคือนายแบบหน้าปกในฉบับที่มีเบนิซิโอ เดล โทโรเป็นหัวข้อสัมภาษณ์",
    "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_en": "How many cover models were on the edition that featured Jennifer Pershing as the centerfold?",
    "question_th": "มีนางแบบหน้าปกกี่คนในฉบับที่มี Jennifer Pershing เป็นปกกลาง",
    "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_en": "What season number corresponds to series number 102?",
    "question_th": "หมายเลขซีซันใดที่ตรงกับหมายเลขซีรีส์ 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_en": "What was the title when there were 14.39 million viewers?",
    "question_th": "ชื่อเรื่องอะไรเมื่อมีผู้ชม 14.39 ล้านคน?",
    "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_en": "Who was the writer when there were 15.85 million US viewers?",
    "question_th": "ใครคือนักเขียนเมื่อมีผู้ชมในสหรัฐอเมริกา 15.85 ล้านคน?",
    "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_en": "How many years did notre dame participate? ",
    "question_th": " Notre Dame เข้าร่วมมากี่ปีแล้ว?",
    "context": "CREATE TABLE table_1571238_2 (years_participated INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(fourth_place) FROM table_1571238_2 WHERE team = \"Colgate\"",
    "question_en": "When colgate is the team how many times did they place fourth?",
    "question_th": "เมื่อคอลเกตอยู่ในทีม พวกเขาได้อันดับสี่กี่ครั้ง?",
    "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_en": "When the team is lake superior state how many times did they place fourth?",
    "question_th": "เมื่อทีมเป็น Lake Superior State เขาได้อันดับที่สี่กี่ครั้ง?",
    "context": "CREATE TABLE table_1571238_2 (fourth_place INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(fourth_place) FROM table_1571238_2 WHERE team = \"Yale\"",
    "question_en": "When the team is yale what is max amount of times they placed fourth?",
    "question_th": "เมื่อทีมอยู่เยล พวกเขาจะรั้งอันดับสี่ได้กี่ครั้ง?",
    "context": "CREATE TABLE table_1571238_2 (fourth_place INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(third_place) FROM table_1571238_2 WHERE team = \"Toronto\"",
    "question_en": "When the team is Toronto how many times did they place third?",
    "question_th": "เมื่อทีมคือโตรอนโต้พวกเขาได้อันดับสามกี่ครั้ง?",
    "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_en": "What is the current streak against TCU?",
    "question_th": "กระแสปัจจุบันเทียบกับ 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_en": "What is the at Manhattan record against TCU?",
    "question_th": "สถิติที่แมนฮัตตันเทียบกับ 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_en": "What is the airdate when the director is george spenton-foster",
    "question_th": "ออกอากาศเมื่อใดเมื่อผู้กำกับคือจอร์จ สเปน-ฟอสเตอร์",
    "context": "CREATE TABLE table_15739098_1 (airdate VARCHAR, director VARCHAR)"
  },
  {
    "answer": "SELECT MAX(episode) FROM table_15739098_1 WHERE adapted_by = \"Leon Griffiths\"",
    "question_en": "Name the msot episode that was adapted by leon griffiths",
    "question_th": "ตั้งชื่อตอน msot ที่ดัดแปลงโดย 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_en": "Name the number of episodes for alan nourse",
    "question_th": "ตั้งชื่อจำนวนตอนของอลัน นูร์ส",
    "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_en": "Which viewers have the language of troff (typesetter runoff) , groff (gnu runoff)?",
    "question_th": "ผู้ชมคนไหนมีภาษา 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_en": "Who is the creator when the view happens to gddm, afp viewer?",
    "question_th": "ใครคือผู้สร้างเมื่อการดูเกิดขึ้นกับ 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_en": "WHERE THE THEME WAS \"YEAR THEY WERE BORN,\" WHAT THE TOTAL NUMBER OF RESULTS?",
    "question_th": "ธีมคือ \"ปีที่พวกเขาเกิด\" อยู่ที่ไหน ผลลัพธ์ทั้งหมดมีจำนวนเท่าใด",
    "context": "CREATE TABLE table_15778392_1 (result VARCHAR, theme VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_15778392_1 WHERE original_artist = \"Betty Everett\"",
    "question_en": "WHAT IS THE RESULT FOR THE SONG WHERE THE ORIGINAL ARTIST IS BETTY EVERETT?",
    "question_th": "ผลลัพธ์ของเพลงที่ศิลปินต้นฉบับคือ 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_en": "WHAT WAS HER SONG CHOICE WHEN THE WEEK WAS TOP 10?",
    "question_th": "เธอเลือกเพลงอะไรเมื่อสัปดาห์อยู่ที่ 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_en": "WHERE THE WEEK NUMBER WAS TOP 8, WHAT WAS THE THEME?",
    "question_th": "ตัวเลขประจำสัปดาห์อยู่ที่ 8 อันดับแรก ธีมคืออะไร?",
    "context": "CREATE TABLE table_15778392_1 (theme VARCHAR, week__number VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_15780049_6 WHERE game = 38",
    "question_en": "What is the location and what is the attendance of game 38?",
    "question_th": "สถานที่ใดและการเข้าร่วมของเกม 38 คืออะไร?",
    "context": "CREATE TABLE table_15780049_6 (location_attendance VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_15780049_6 WHERE date = \"January 11\"",
    "question_en": "What was the games score on January 11?",
    "question_th": "คะแนนเกมวันที่ 11 มกราคมเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_15780049_6 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_15780049_6 WHERE game = 33",
    "question_en": "What is the score of game 33?",
    "question_th": "เกมที่ 33 สกอร์เท่าไหร่ครับ?",
    "context": "CREATE TABLE table_15780049_6 (score VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_15780049_6 WHERE team = \"Cleveland\"",
    "question_en": "Who had the most assist when the opponent was Cleveland?",
    "question_th": "ใครเป็นผู้ให้ความช่วยเหลือมากที่สุดเมื่อคู่ต่อสู้คือคลีฟแลนด์?",
    "context": "CREATE TABLE table_15780049_6 (high_assists VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_15780049_6 WHERE date = \"January 19\"",
    "question_en": "What was the score of the game played on January 19?",
    "question_th": "คะแนนของเกมที่เล่นเมื่อวันที่ 19 มกราคมเป็นเท่าใด?",
    "context": "CREATE TABLE table_15780049_6 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_15780718_9 WHERE team = \"New Jersey\"",
    "question_en": "What is the Raptors' record against New Jersey?",
    "question_th": "สถิติของ Raptors ในเกมกับ New Jersey คืออะไร?",
    "context": "CREATE TABLE table_15780718_9 (record VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_15780718_6 WHERE score = \"W 105–91 (OT)\"",
    "question_en": "Name for the high rebounds when score is  w 105–91 (ot)",
    "question_th": "ชื่อการรีบาวด์สูงเมื่อสกอร์อยู่ที่ 105–91 (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_en": "What is the order number for the theme of Mariah Carey?",
    "question_th": "หมายเลขคำสั่งซื้อสำหรับธีมของ 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_en": "Who is the original artist for the theme \"Year they were born?\"",
    "question_th": "ใครคือศิลปินต้นฉบับสำหรับธีม \"ปีเกิด\"",
    "context": "CREATE TABLE table_15796100_1 (original_artist VARCHAR, theme VARCHAR)"
  },
  {
    "answer": "SELECT theme FROM table_15796100_1 WHERE original_artist = \"Dolly Parton\"",
    "question_en": "What theme name has the original artist of Dolly Parton?",
    "question_th": "ศิลปินดั้งเดิมของ 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_en": "How many themes have the original artist of Judy Garland?",
    "question_th": "ศิลปินดั้งเดิมของ 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_en": "What is the original airdate when the season number is 4?",
    "question_th": "ออกอากาศตอนแรกเมื่อซีซั่นที่ 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_en": "What is the smallest number of European Parliament sets when the international affiliation is global greens, egp? ",
    "question_th": " จำนวนที่น้อยที่สุดที่รัฐสภายุโรปกำหนดเมื่อความร่วมมือระหว่างประเทศคือกรีนระดับโลก เช่น GP",
    "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_en": "How many categories of Senate Seats does Emile Roemer have? ",
    "question_th": " Emile Roemer มีที่นั่งวุฒิสภากี่ประเภท?",
    "context": "CREATE TABLE table_158282_1 (senate_seats VARCHAR, political_leader VARCHAR)"
  },
  {
    "answer": "SELECT MIN(road_wins) FROM table_1585112_2",
    "question_en": "Name the least road wins",
    "question_th": "ตั้งชื่อถนนที่ชนะน้อยที่สุด",
    "context": "CREATE TABLE table_1585112_2 (road_wins INTEGER)"
  },
  {
    "answer": "SELECT MAX(num) FROM table_1585112_2 WHERE l < 6.0",
    "question_en": "Name the maximum mum  l is less than 6.0",
    "question_th": "ตั้งชื่อแม่สูงสุด l น้อยกว่า 6.0",
    "context": "CREATE TABLE table_1585112_2 (num INTEGER, l INTEGER)"
  },
  {
    "answer": "SELECT MAX(races) FROM table_15852257_1",
    "question_en": "What is the highest value for race?",
    "question_th": "มูลค่าสูงสุดสำหรับเชื้อชาติคืออะไร?",
    "context": "CREATE TABLE table_15852257_1 (races INTEGER)"
  },
  {
    "answer": "SELECT podiums FROM table_15852257_1 WHERE final_placing = \"10th\"",
    "question_en": "Which podiums have a final placing of 10th?",
    "question_th": "โพเดียมใดมีอันดับที่ 10 สุดท้าย?",
    "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_en": "What is the total number of poles values in the Formula Renault 2.0 Eurocup with a 10th final placing?",
    "question_th": "จำนวนโพลรวมใน Formula Renault 2.0 Eurocup ที่ได้อันดับที่ 10 เป็นเท่าใด",
    "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_en": "Name the total number of record for 27",
    "question_th": "ตั้งชื่อจำนวนบันทึกทั้งหมดสำหรับ 27",
    "context": "CREATE TABLE table_15869204_5 (record VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_15869204_5 WHERE date = \"December 14\"",
    "question_en": "Name the high assists for december 14",
    "question_th": "ทายแอสซิสต์สูงสุดประจำวันที่ 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_en": "Name the high assists for delta center 19,639",
    "question_th": "ตั้งชื่อแอสซิสต์สูงให้เดลต้าเซ็นเตอร์ 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_en": "Name the score for washington",
    "question_th": "ตั้งชื่อคะแนนสำหรับวอชิงตัน",
    "context": "CREATE TABLE table_15872814_3 (score VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_15872814_3 WHERE date = \"November 9\"",
    "question_en": "Name the team for november 9",
    "question_th": "ตั้งชื่อทีมวันที่ 9 พฤศจิกายน",
    "context": "CREATE TABLE table_15872814_3 (team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(game) FROM table_15872814_4 WHERE date = \"December 22\"",
    "question_en": "Name the most game for december 22",
    "question_th": "รายชื่อเกมมากที่สุดประจำวันที่ 22 ธันวาคม",
    "context": "CREATE TABLE table_15872814_4 (game INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_15872814_4 WHERE date = \"December 28\"",
    "question_en": "Name the score for december 28",
    "question_th": "ทายผลคะแนนประจำวันที่ 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_en": "What country has the Sky Calcio 2 tv service?",
    "question_th": "ประเทศใดบ้างที่มีบริการทีวี Sky Calcio 2?",
    "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_en": "Does the sky calcio 6 hd have PPV?",
    "question_th": "sky calcio 6 hd มี 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_en": "Do the Sky Calcio 5 channels have PPV?",
    "question_th": "ช่องสกายแคลซิโอ 5 มี 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_en": "Name the country for sky primafila 7 hd",
    "question_th": "ตั้งชื่อประเทศสำหรับ 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_en": "Name the number of package/option for sky primafila 24",
    "question_th": "ตั้งชื่อหมายเลขแพ็คเกจ/ตัวเลือกสำหรับ sky primafila 24",
    "context": "CREATE TABLE table_15887683_6 (package_option VARCHAR, television_service VARCHAR)"
  },
  {
    "answer": "SELECT hdtv FROM table_15887683_6 WHERE n° = 378",
    "question_en": "Name the hdtv when number is 378",
    "question_th": "ตั้งชื่อ hdtv เมื่อหมายเลขเป็น 378",
    "context": "CREATE TABLE table_15887683_6 (hdtv VARCHAR, n° VARCHAR)"
  },
  {
    "answer": "SELECT hdtv FROM table_15887683_6 WHERE television_service = \"Sky Primafila 17\"",
    "question_en": "Name the hdtv for sky primafila 17",
    "question_th": "ตั้งชื่อ hdtv สำหรับ 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_en": "Name the television service when primafila hot club",
    "question_th": "ตั้งชื่อบริการโทรทัศน์เมื่อ primafila hot club",
    "context": "CREATE TABLE table_15887683_6 (television_service VARCHAR, content VARCHAR)"
  },
  {
    "answer": "SELECT n° FROM table_15887683_8 WHERE television_service = \"Fox News Channel\"",
    "question_en": "Name the number for fox news channel",
    "question_th": "ตั้งชื่อเบอร์ช่องข่าวฟ็อกซ์",
    "context": "CREATE TABLE table_15887683_8 (n° VARCHAR, television_service VARCHAR)"
  },
  {
    "answer": "SELECT dar FROM table_15887683_8 WHERE language = \"cinese\"",
    "question_en": "Name the dar for cinese",
    "question_th": "ตั้งชื่อดาร์สำหรับ 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_en": "Name the language for fox business network",
    "question_th": "ตั้งชื่อภาษาสำหรับเครือข่ายธุรกิจสุนัขจิ้งจอก",
    "context": "CREATE TABLE table_15887683_8 (language VARCHAR, television_service VARCHAR)"
  },
  {
    "answer": "SELECT package_option FROM table_15887683_8 WHERE country = \"Giappone\"",
    "question_en": "Name the package/option for giappone",
    "question_th": "ตั้งชื่อแพ็คเกจ/ตัวเลือกสำหรับ giappone",
    "context": "CREATE TABLE table_15887683_8 (package_option VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT package_option FROM table_15887683_8 WHERE n° = 543",
    "question_en": "Name the package/option for number being 543",
    "question_th": "ตั้งชื่อแพ็คเกจ/ตัวเลือกสำหรับหมายเลข 543",
    "context": "CREATE TABLE table_15887683_8 (package_option VARCHAR, n° VARCHAR)"
  },
  {
    "answer": "SELECT aspect_ratio FROM table_15928363_1 WHERE horizontal = 720",
    "question_en": "Name the aspect ratio for 720",
    "question_th": "ตั้งชื่ออัตราส่วนกว้างยาวสำหรับ 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_en": "Name the number of horizontal when framerate hz is 25",
    "question_th": "ตั้งชื่อจำนวนแนวนอนเมื่อ framerate hz คือ 25",
    "context": "CREATE TABLE table_15928363_1 (horizontal VARCHAR, framerate___hz__ VARCHAR)"
  },
  {
    "answer": "SELECT mccain__percentage FROM table_15929156_3 WHERE county = \"Dukes\"",
    "question_en": "Name the mccain % for dukes",
    "question_th": "ตั้งชื่อ mccain % สำหรับ 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_en": "Name the number of counties for obama votes for 49558",
    "question_th": "ระบุจำนวนเทศมณฑลที่โอบามาลงคะแนนเสียงได้ 49,558 เสียง",
    "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_en": "Name the number of others votes for when others % is 2.0%",
    "question_th": "ระบุจำนวนผู้อื่นโหวตเมื่อคนอื่น % คือ 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_en": "Which series number had the production code of 116",
    "question_th": "หมายเลขชุดใดมีรหัสการผลิต 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_en": "Whats the title of the episode with production code 109",
    "question_th": "ชื่อตอนรหัสการผลิต 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_en": "How many episodes were written by Jack Burditt & Robert Carlock",
    "question_th": "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_en": "How many episodes had an original air date with 5.1 million viewers",
    "question_th": "มีกี่ตอนที่มีวันออกอากาศดั้งเดิมและมีผู้ชม 5.1 ล้านคน",
    "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_en": "Who wrote the episode that was directed by Dennie Gordon",
    "question_th": "ใครเป็นคนเขียนบทตอนที่กำกับโดยเดนนี่ กอร์ดอน",
    "context": "CREATE TABLE table_15938543_1 (written_by VARCHAR, directed_by VARCHAR)"
  },
  {
    "answer": "SELECT december FROM table_15945862_1 WHERE september = \"17.1\"",
    "question_en": "What septembers are 17.1 in December? ",
    "question_th": " 17.1 กันยายน ในเดือนธันวาคม คือเดือนอะไร",
    "context": "CREATE TABLE table_15945862_1 (december VARCHAR, september VARCHAR)"
  },
  {
    "answer": "SELECT july FROM table_15945862_1 WHERE march = \"0.41\"",
    "question_en": "March 0.41 in July? ",
    "question_th": " 0.41 มีนาคม ในเดือนกรกฎาคม?",
    "context": "CREATE TABLE table_15945862_1 (july VARCHAR, march VARCHAR)"
  },
  {
    "answer": "SELECT september FROM table_15945862_1 WHERE november = \"10.35\"",
    "question_en": "What september has 10.35 in November? ",
    "question_th": " เดือนกันยายนมี 10.35 ในเดือนพฤศจิกายนอะไร?",
    "context": "CREATE TABLE table_15945862_1 (september VARCHAR, november VARCHAR)"
  },
  {
    "answer": "SELECT january FROM table_15945862_1 WHERE june = \"7.34\"",
    "question_en": "January 7.34 where is June ?",
    "question_th": "7.34 มกราคม เดือนมิถุนายน อยู่ที่ไหน ?",
    "context": "CREATE TABLE table_15945862_1 (january VARCHAR, june VARCHAR)"
  },
  {
    "answer": "SELECT december FROM table_15945862_1 WHERE january = \"8.77\"",
    "question_en": "What December is 8.77 in January ",
    "question_th": " ธันวาคมอะไรคือ 8.77 ในเดือนมกราคม",
    "context": "CREATE TABLE table_15945862_1 (december VARCHAR, january VARCHAR)"
  },
  {
    "answer": "SELECT genre FROM table_1601792_3 WHERE station = \"Hot FM\"",
    "question_en": "What is the genre for the hot fm station?",
    "question_th": "แนวเพลงของสถานี fm ยอดนิยมคืออะไร?",
    "context": "CREATE TABLE table_1601792_3 (genre VARCHAR, station VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(frequency) FROM table_1601792_3 WHERE station = \"Hot FM\"",
    "question_en": "What is the frequency of hot fm?",
    "question_th": "ความถี่ของ hot fm คืออะไร?",
    "context": "CREATE TABLE table_1601792_3 (frequency VARCHAR, station VARCHAR)"
  },
  {
    "answer": "SELECT station FROM table_1601792_3 WHERE language = \"Tamil Malay\"",
    "question_en": "What is the name of the station where the language is tamil malay?",
    "question_th": "สถานีที่เป็นภาษาทมิฬมาเลย์ชื่ออะไร",
    "context": "CREATE TABLE table_1601792_3 (station VARCHAR, language VARCHAR)"
  },
  {
    "answer": "SELECT operator FROM table_1601792_3 WHERE station = \"XFM\"",
    "question_en": "Who operates the xfm station?",
    "question_th": "ใครเป็นผู้ดำเนินการสถานี xfm?",
    "context": "CREATE TABLE table_1601792_3 (operator VARCHAR, station VARCHAR)"
  },
  {
    "answer": "SELECT language FROM table_1601792_3 WHERE station = \"Malacca FM\"",
    "question_en": "What is the language of the malacca fm station?",
    "question_th": "สถานี FM มะละกาเป็นภาษาอะไร?",
    "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_en": "What is the station that is transmitted at 20 kw and has a frequency of 48 uhf?",
    "question_th": "สถานีใดที่ส่งด้วยกำลัง 20 กิโลวัตต์ และมีความถี่ 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_en": "How many stations have a 35 uhf frequency?",
    "question_th": "คลื่นความถี่ 35 uhf มีกี่สถานี?",
    "context": "CREATE TABLE table_1601792_4 (television_station VARCHAR, frequency VARCHAR)"
  },
  {
    "answer": "SELECT site FROM table_1601792_4 WHERE television_station = \"8TV\"",
    "question_en": "What are the site(s) for tv station 8tv?",
    "question_th": "เว็บไซต์ของสถานีโทรทัศน์ 8tv คือที่ใด?",
    "context": "CREATE TABLE table_1601792_4 (site VARCHAR, television_station VARCHAR)"
  },
  {
    "answer": "SELECT network FROM table_1601792_4 WHERE television_station = \"TV1\"",
    "question_en": "What are the network(s) for tv1?",
    "question_th": "เครือข่ายสำหรับ 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_en": "How many stations are transmitted on frequency 7 uhf?",
    "question_th": "คลื่นความถี่ 7 uhf ส่งสัญญาณได้กี่สถานี?",
    "context": "CREATE TABLE table_1601792_4 (transmitted VARCHAR, frequency VARCHAR)"
  },
  {
    "answer": "SELECT site FROM table_1601792_4 WHERE television_station = \"TV3\"",
    "question_en": "What site(s) for tv station tv3?",
    "question_th": "เว็บไซต์ใดสำหรับสถานีโทรทัศน์ 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_en": "Name the number of headphone class for sr100",
    "question_th": "ตั้งชื่อหมายเลขคลาสหูฟังสำหรับ 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_en": "Name what succeeded by for foam",
    "question_th": "ตั้งชื่อสิ่งที่ทำสำเร็จสำหรับโฟม",
    "context": "CREATE TABLE table_1601027_2 (succeeded_by VARCHAR, earpads VARCHAR)"
  },
  {
    "answer": "SELECT headphone_model FROM table_1601027_2 WHERE succeeded_by = \"SR125\"",
    "question_en": "Name the headphone model for succeeded by sr125",
    "question_th": "ตั้งชื่อหูฟังรุ่น Success 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_en": "Name the driver matched db for joseph grado signature",
    "question_th": "ตั้งชื่อไดรเวอร์ที่ตรงกับ db สำหรับลายเซ็น joseph grado",
    "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_en": "At which stadiums was attendance total 79176?",
    "question_th": "ที่สนามกีฬาใดที่มีผู้เข้าร่วมทั้งหมด 79,176 คน?",
    "context": "CREATE TABLE table_16028479_2 (game_site VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(points) FROM table_16034882_3 WHERE club = \"FK Prienai\"",
    "question_en": "how many times were points counted for fk prienai",
    "question_th": "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_en": "what is the highest number of draws for sveikata kybartai",
    "question_th": "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_en": "What are the total number of losses for the team who has conceded 22?",
    "question_th": "จำนวนการแพ้ทั้งหมดของทีมที่เสียไป 22 นัดคือเท่าไร?",
    "context": "CREATE TABLE table_16034882_4 (loses VARCHAR, goals_conceded VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_16034882_4 WHERE wins = 13",
    "question_en": "What is the amount of points for the team with 13 wins?",
    "question_th": "ทีมที่ชนะ 13 นัดได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_16034882_4 (points VARCHAR, wins VARCHAR)"
  },
  {
    "answer": "SELECT MIN(draws) FROM table_16034882_4 WHERE club = \"Švyturys Klaipėda\"",
    "question_en": "How many draws did švyturys Klaipėda have?",
    "question_th": "švyturys Klaipėda เสมอกันกี่ครั้ง?",
    "context": "CREATE TABLE table_16034882_4 (draws INTEGER, club VARCHAR)"
  },
  {
    "answer": "SELECT MIN(position) FROM table_16034882_4 WHERE loses = 3",
    "question_en": "What position did the team with 3 losses finish?",
    "question_th": "ทีมที่แพ้ 3 นัดจบอันดับไหน?",
    "context": "CREATE TABLE table_16034882_4 (position INTEGER, loses VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_16034882_4 WHERE club = \"Piritas Klaipėda\"",
    "question_en": "How many points did piritas klaipėda get?",
    "question_th": "ปิริทัส ไคลเพดา ได้กี่คะแนน?",
    "context": "CREATE TABLE table_16034882_4 (points VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT wins FROM table_16034882_4 WHERE points = 42",
    "question_en": "How many wins did the team with 42 points get?",
    "question_th": "ทีมที่มี 42 แต้มชนะได้กี่ครั้ง?",
    "context": "CREATE TABLE table_16034882_4 (wins VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(goals_scored) FROM table_16034882_2 WHERE goals_conceded = 35",
    "question_en": "How many total goals were scored in games where goals conceded was 35?",
    "question_th": "ในเกมที่เสียประตูไปทั้งหมดกี่ประตูคือ 35 ประตู?",
    "context": "CREATE TABLE table_16034882_2 (goals_scored VARCHAR, goals_conceded VARCHAR)"
  },
  {
    "answer": "SELECT MIN(games_played) FROM table_16034882_2",
    "question_en": "What is the fewest number of games played?",
    "question_th": "จำนวนเกมที่เล่นน้อยที่สุดคือเท่าไร?",
    "context": "CREATE TABLE table_16034882_2 (games_played INTEGER)"
  },
  {
    "answer": "SELECT COUNT(loses) FROM table_16034882_2 WHERE goals_scored = 37",
    "question_en": "How many games were lost when the goals scored was 37?",
    "question_th": "กี่เกมที่แพ้เมื่อประตูที่ทำได้คือ 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_en": "What type of government does Kyrgyzstan have?",
    "question_th": "คีร์กีซสถานมีรัฐบาลประเภทใด",
    "context": "CREATE TABLE table_1604579_2 (country VARCHAR)"
  },
  {
    "answer": "SELECT 2013 AS _index_of_economic_freedom FROM table_1604579_2 WHERE country = \"Armenia\"",
    "question_en": "How economically free is the country of Armenia?",
    "question_th": "ประเทศอาร์เมเนียมีอิสระทางเศรษฐกิจเพียงใด?",
    "context": "CREATE TABLE table_1604579_2 (country VARCHAR)"
  },
  {
    "answer": "SELECT freedom_in_the_world_2013 FROM table_1604579_2 WHERE country = \"Guinea\"",
    "question_en": "How much freedom can did the people of Guinea experience in 2013?",
    "question_th": "ชาวกินีได้รับอิสรภาพได้มากเพียงใดในปี 2556",
    "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_en": "How many freedom indices does the country of Austria have?",
    "question_th": "ประเทศออสเตรียมีดัชนีเสรีภาพกี่ดัชนี?",
    "context": "CREATE TABLE table_1604579_2 (country VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(elected) FROM table_16185956_1 WHERE district = \"Washington 4\"",
    "question_en": "How many times was the incumbent elected in Washington 4 district?",
    "question_th": "ผู้ดำรงตำแหน่งได้รับเลือกในเขตวอชิงตัน 4 กี่ครั้ง?",
    "context": "CREATE TABLE table_16185956_1 (elected VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_16185956_1 WHERE results = \"63% 37%\"",
    "question_en": "What is the status of the district where the result is 63% 37%?",
    "question_th": "สถานะของอำเภอที่ผลเป็น 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_en": "Who are the candidates in Washington 1 district?",
    "question_th": "ผู้สมัครในเขตวอชิงตัน 1 คือใคร?",
    "context": "CREATE TABLE table_16185956_1 (district VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(2008 AS _candidates) FROM table_16185956_1 WHERE incumbent = \"Doc Hastings\"",
    "question_en": "How many groups of candidates are there in there in the district where the incumbent is Doc Hastings?",
    "question_th": "มีผู้สมัครกี่กลุ่มในเขตที่ Doc Hastings ดำรงตำแหน่ง",
    "context": "CREATE TABLE table_16185956_1 (incumbent VARCHAR)"
  },
  {
    "answer": "SELECT MAX(counties_carries) FROM table_16186152_1",
    "question_en": "What is the highest number of Counties carries?",
    "question_th": "จังหวัดมีจำนวนมากที่สุดคือเท่าไร?",
    "context": "CREATE TABLE table_16186152_1 (counties_carries INTEGER)"
  },
  {
    "answer": "SELECT MAX(state_delegate) FROM table_16186152_1 WHERE candidate = \"Mitt Romney\"",
    "question_en": "How many state delegates did Candidate Mitt Romney have?",
    "question_th": "ผู้สมัคร Mitt Romney มีผู้แทนจากรัฐกี่คน",
    "context": "CREATE TABLE table_16186152_1 (state_delegate INTEGER, candidate VARCHAR)"
  },
  {
    "answer": "SELECT delegates FROM table_16186152_1 WHERE candidate = \"John McCain\"",
    "question_en": "Candidate John Mccain had how many delegates?",
    "question_th": "ผู้สมัครจอห์น แมคเคนมีผู้ร่วมประชุมกี่คน",
    "context": "CREATE TABLE table_16186152_1 (delegates VARCHAR, candidate VARCHAR)"
  },
  {
    "answer": "SELECT percentage FROM table_16186152_1 WHERE state_delegate = 1662",
    "question_en": "What's the percentage when the state delegate is 1662?",
    "question_th": "เมื่อผู้แทนของรัฐคือ 1662 กี่เปอร์เซ็นต์?",
    "context": "CREATE TABLE table_16186152_1 (percentage VARCHAR, state_delegate VARCHAR)"
  },
  {
    "answer": "SELECT series_sorted FROM table_1620397_5 WHERE _number = 3",
    "question_en": "What series was sorted at number 3?",
    "question_th": "ซีรีส์ใดจัดอยู่ในอันดับที่ 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_en": "What was the doctor for sorted series 6eb/b?",
    "question_th": "แพทย์ของซีรีย์เรียงลำดับ 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_en": "What was the doctor when the author was Gary Hopkins category:articles with hcards?",
    "question_th": "แพทย์คืออะไรเมื่อผู้เขียนอยู่ในหมวดหมู่ Gary Hopkins: บทความที่มี hcards",
    "context": "CREATE TABLE table_1620397_5 (doctor VARCHAR, author VARCHAR)"
  },
  {
    "answer": "SELECT municipality FROM table_16278673_1 WHERE population = \"57\"",
    "question_en": "Name the municpality for 57 populaton",
    "question_th": "ตั้งชื่อเขตเทศบาลสำหรับประชากร 57 คน",
    "context": "CREATE TABLE table_16278673_1 (municipality VARCHAR, population VARCHAR)"
  },
  {
    "answer": "SELECT population FROM table_16278673_1 WHERE municipality = \"Sørvágur\"",
    "question_en": "Name the population for sørvágur",
    "question_th": "ตั้งชื่อประชากรสำหรับsørvágur",
    "context": "CREATE TABLE table_16278673_1 (population VARCHAR, municipality VARCHAR)"
  },
  {
    "answer": "SELECT MIN(inhabitants_per_km²) FROM table_16278673_1 WHERE markatal = 49",
    "question_en": "Name the minimum inhabitants for markatal 49",
    "question_th": "ตั้งชื่อประชากรขั้นต่ำสำหรับ markatal 49",
    "context": "CREATE TABLE table_16278673_1 (inhabitants_per_km² INTEGER, markatal VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_16308030_1 WHERE time = \"1:48.322\"",
    "question_en": "How many events have a time of 1:48.322?",
    "question_th": "มีกี่เหตุการณ์ที่มีเวลา 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_en": "How many years have a time of 1:42.086?",
    "question_th": "กี่ปีมีเวลา 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_en": "Which college did Leon Perry attend?",
    "question_th": "Leon Perry เข้าเรียนที่วิทยาลัยใด",
    "context": "CREATE TABLE table_16376436_1 (college VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT nfl_team FROM table_16376436_1 WHERE college = \"Norfolk State\"",
    "question_en": "What is the NFL team for the player who's college was Norfolk State?",
    "question_th": "ทีม NFL สำหรับผู้เล่นที่วิทยาลัยคือ 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_en": "Which player was pick number 150?",
    "question_th": "ผู้เล่นคนไหนถูกเลือกหมายเลข 150?",
    "context": "CREATE TABLE table_16376436_1 (player VARCHAR, pick__number VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_16376436_1 WHERE position = \"Defensive Back\"",
    "question_en": "What college did the defensive back attend?",
    "question_th": "ฝ่ายป้องกันกลับเข้าเรียนที่วิทยาลัยใด",
    "context": "CREATE TABLE table_16376436_1 (college VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT nfl_team FROM table_16376436_1 WHERE college = \"North Carolina\"",
    "question_en": "What is the NFL team for the player who's college was North Carolina?",
    "question_th": "ทีม NFL สำหรับผู้เล่นที่วิทยาลัยคือ 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_en": "What is the pick number for the player Garry Lewis?",
    "question_th": "หมายเลขที่เลือกสำหรับผู้เล่น 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_en": "What is the home team that played on M.C.G. grounds?",
    "question_th": "ทีมเหย้าที่เล่นในสนาม MCG คืออะไร?",
    "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_en": "What was the home team score when Brisbane lions was the home team?",
    "question_th": "เมื่อบริสเบนไลออนส์เป็นเจ้าบ้านสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_16388398_1 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_16388398_1 WHERE ground = \"Manuka Oval\"",
    "question_en": "When was the game played on Manuka Oval?",
    "question_th": "เกมนี้เล่นที่ 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_en": "What was the score for the home team when the away team was Sydney?",
    "question_th": "เจ้าบ้านได้สกอร์เท่าไหร่เมื่อทีมเยือนเป็นซิดนีย์?",
    "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_en": "What were the home team scores at york park?",
    "question_th": "สกอร์ทีมเหย้าที่ยอร์ค พาร์คเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_16388478_2 (home_team VARCHAR, ground VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(ground) FROM table_16388478_2 WHERE home_team = \"Sydney\"",
    "question_en": "How many locations were there when sydney was the home team?",
    "question_th": "ตอนที่ซิดนีย์เป็นเจ้าบ้านมีสถานที่กี่แห่ง?",
    "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_en": "What were the home team scores when carlton was the home team?",
    "question_th": "เมื่อคาร์ลตันเป็นเจ้าบ้านสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_16388478_2 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_16388478_2 WHERE crowd = 13304",
    "question_en": "What were all the away teams when the crowd was 13304?",
    "question_th": "ทีมเยือนทั้งหมดเป็นทีมไหนตอนที่คนดู 13304?",
    "context": "CREATE TABLE table_16388478_2 (away_team VARCHAR, crowd VARCHAR)"
  },
  {
    "answer": "SELECT MIN(established) FROM table_1641054_2",
    "question_en": "Name the least established",
    "question_th": "ชื่อที่จัดตั้งขึ้นน้อยที่สุด",
    "context": "CREATE TABLE table_1641054_2 (established INTEGER)"
  },
  {
    "answer": "SELECT MAX(official__number) FROM table_16425614_4 WHERE tf1__number = 42",
    "question_en": "Name the most official number for tf1 # being 42",
    "question_th": "ตั้งชื่อเบอร์ที่เป็นทางการที่สุดสำหรับ tf1 # คือ 42",
    "context": "CREATE TABLE table_16425614_4 (official__number INTEGER, tf1__number VARCHAR)"
  },
  {
    "answer": "SELECT nickname FROM table_16432543_3 WHERE established = 2002",
    "question_en": "What was the nickname Established in 2002?",
    "question_th": "ชื่อเล่นที่ก่อตั้งในปี 2545 คืออะไร?",
    "context": "CREATE TABLE table_16432543_3 (nickname VARCHAR, established VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_16432543_3 WHERE enrollment = 12400",
    "question_en": "What school location had an enrollment of 12400?",
    "question_th": "โรงเรียนแห่งใดมีการลงทะเบียน 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_en": "How many teams were established at University of Maryland?",
    "question_th": "มีการจัดตั้งทีมจำนวนกี่ทีมที่ 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_en": "what is the enrollment for the Cavaliers?",
    "question_th": "Cavaliers รับสมัครอะไรบ้าง?",
    "context": "CREATE TABLE table_16432543_3 (enrollment INTEGER, nickname VARCHAR)"
  },
  {
    "answer": "SELECT MIN(enrollment) FROM table_16432543_3",
    "question_en": "What is the smallest number of enrolled students?",
    "question_th": "จำนวนนักเรียนที่ลงทะเบียนน้อยที่สุดคือเท่าไร?",
    "context": "CREATE TABLE table_16432543_3 (enrollment INTEGER)"
  },
  {
    "answer": "SELECT debut_album FROM table_1646960_3 WHERE winning_song = \"Kemenangan Hati\"",
    "question_en": "What is the debut album for the artist with the winning song kemenangan hati?",
    "question_th": "อัลบั้มเปิดตัวของศิลปินที่มีเพลงชนะรางวัล 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_en": "How many winners had a debut album titled \"mike\"?",
    "question_th": "มีผู้ชนะกี่คนที่มีอัลบั้มเปิดตัวชื่อ \"ไมค์\"?",
    "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_en": "What is the winning song for the artist with a debut album \"the winner\"?",
    "question_th": "เพลงที่ชนะรางวัลของศิลปินที่มีอัลบั้มเปิดตัว \"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_en": "What is the winning song for the artist with a debut album \"mike\"?",
    "question_th": "เพลงที่ชนะใจศิลปินกับอัลบั้มเปิดตัว \"ไมค์\" คือเพลงอะไร?",
    "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_en": "How many debut albums did mike mohede have?",
    "question_th": "mike mohede มีอัลบั้มเปิดตัวกี่อัลบั้ม?",
    "context": "CREATE TABLE table_1646960_3 (debut_album VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT MIN(25 AS _to_29) FROM table_16457934_5",
    "question_en": "What is the minimum of 25 to 29?",
    "question_th": "ขั้นต่ำ 25 ถึง 29 คือเท่าไร?",
    "context": "CREATE TABLE table_16457934_5 (Id VARCHAR)"
  },
  {
    "answer": "SELECT MIN(40 AS _to_44) FROM table_16457934_5",
    "question_en": "What is the minimum if 40 to 44?",
    "question_th": "ขั้นต่ำคือเท่าไรถ้า 40 ถึง 44?",
    "context": "CREATE TABLE table_16457934_5 (Id VARCHAR)"
  },
  {
    "answer": "SELECT vfl_club_s_ FROM table_16527640_2 WHERE vfl_games = 23",
    "question_en": "What vfl club(s) did players who played 23 cfl games play for?",
    "question_th": "ผู้เล่น vfl club ที่เล่นเกม cfl 23 นัดเล่นเพื่ออะไร?",
    "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_en": "What locations did sid o'neill play football?",
    "question_th": "ซิด โอนีลเล่นฟุตบอลที่สถานที่ใดบ้าง",
    "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_en": "What vfl club(s) for players ranked sergeant, 8th brigade australian field artillery at time of death?",
    "question_th": "สโมสร vfl ใดสำหรับผู้เล่นที่ได้รับการจัดอันดับให้เป็นจ่าสิบเอก กองพลที่ 8 กองพลทหารปืนใหญ่แห่งออสเตรเลียในเวลาที่เสียชีวิต?",
    "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_en": "How many players named paddy rowan?",
    "question_th": "มีผู้เล่นชื่อแพดดี้โรวันกี่คน?",
    "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_en": "How many numbers were recorde under 50s when there was 2 matches?",
    "question_th": "มีกี่หมายเลขที่ถูกบันทึกภายใต้ 50s เมื่อมีการแข่งขัน 2 ครั้ง?",
    "context": "CREATE TABLE table_16570286_2 (matches VARCHAR)"
  },
  {
    "answer": "SELECT highest_score FROM table_16570286_2 WHERE innings = 9 AND player = \"Donald Bradman\"",
    "question_en": "What was the score when Donald Bradman in 9 innings?",
    "question_th": "เมื่อโดนัลด์ แบรดแมน 9 อินนิงทำสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_16570286_2 (highest_score VARCHAR, innings VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(matches) FROM table_16570286_2",
    "question_en": "What is the highest number of matches?",
    "question_th": "จำนวนการแข่งขันสูงสุดคือเท่าใด?",
    "context": "CREATE TABLE table_16570286_2 (matches INTEGER)"
  },
  {
    "answer": "SELECT COUNT(matches) FROM table_16570286_2 WHERE player = \"Arthur Morris\"",
    "question_en": "How many numbers were recorded under matches with Arthur Morris?",
    "question_th": "มีการบันทึกตัวเลขจำนวนเท่าใดในการแข่งขันกับอาเธอร์ มอร์ริส",
    "context": "CREATE TABLE table_16570286_2 (matches VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(team) FROM table_16570286_2 WHERE highest_score = \"143\"",
    "question_en": "How many teams were there with a high score of 143?",
    "question_th": "มีกี่ทีมที่ได้คะแนนสูงสุด 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_en": "How many titles does Episode 2 have",
    "question_th": "ตอนที่ 2 มีกี่เรื่องครับ",
    "context": "CREATE TABLE table_165732_2 (title VARCHAR, episode__number VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_165732_2 WHERE episode__number = 2",
    "question_en": "What is the title of Episode #2",
    "question_th": "ตอนที่ 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_en": "How many directors did Episode #3 have",
    "question_th": "ตอนที่ 3 มีผู้กำกับกี่คน",
    "context": "CREATE TABLE table_165732_2 (directed_by VARCHAR, episode__number VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_16575609_5 WHERE pick__number = 34",
    "question_en": "What position is the player drafted with pick 34?",
    "question_th": "ผู้เล่นร่างด้วยตัวเลือก 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_en": "How many colleges did the player drafted at 36 attend?",
    "question_th": "ผู้เล่นที่ถูกร่างเมื่ออายุ 36 ปีเข้าร่วมกี่วิทยาลัย",
    "context": "CREATE TABLE table_16575609_5 (college VARCHAR, pick__number VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(college) FROM table_16575609_5 WHERE player = \"Jon Gott\"",
    "question_en": "How many colleges did Jon Gott attend?",
    "question_th": "Jon Gott เข้าเรียนกี่วิทยาลัย",
    "context": "CREATE TABLE table_16575609_5 (college VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_16575609_5 WHERE player = \"Dante Luciani\"",
    "question_en": "Where did Dante Luciani attend college?",
    "question_th": "Dante Luciani เข้าเรียนวิทยาลัยที่ไหน",
    "context": "CREATE TABLE table_16575609_5 (college VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT cfl_team FROM table_16575609_5 WHERE player = \"Brady Browne\"",
    "question_en": "What teak was Brady Browne drafted onto?",
    "question_th": "Brady Browne ร่างด้วยไม้สักอะไร",
    "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_en": "Who was the writer of the episode number in series 4?",
    "question_th": "ใครคือผู้เขียนหมายเลขตอนในซีรีส์ 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_en": "What is the original air date for the episode written by Bob Goodman?",
    "question_th": "วันที่ออกอากาศดั้งเดิมของตอนที่เขียนโดย 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_en": "Name the number air date for 14.20 us viewers",
    "question_th": "แจ้งหมายเลขวันออกอากาศ 14.20 น. พวกเราผู้ชม",
    "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_en": "Name the directed by for 15.15 viewers",
    "question_th": "ตั้งชื่อผู้กำกับให้ผู้ชม 15.15 น",
    "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_en": "Name the number of giants points for opponents being 31",
    "question_th": "ตั้งชื่อจำนวนแต้มยักษ์สำหรับฝ่ายตรงข้ามเป็น 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_en": "Name the most attendance for giants points of 10",
    "question_th": "ตั้งชื่อผู้เข้าร่วมมากที่สุดสำหรับคะแนนยักษ์ 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_en": "What is the distance for jockey Kent Desormeaux on 6/7/08?",
    "question_th": "ระยะทางของ jockey Kent Desormeaux ในวันที่ 6/7/51 คือเท่าใด?",
    "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_en": "At 1:48.16 what was the number of track time?",
    "question_th": "เวลา 1:48.16 น. ติดตามเวลาได้เท่าไร?",
    "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_en": "With a date of 8/3/08, what was the length of the victory margin?",
    "question_th": "ด้วยวันที่ 8/3/51 ระยะขอบแห่งชัยชนะคือเท่าใด",
    "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_en": "On what date did the opponents win with 17 points? ",
    "question_th": " ฝ่ายตรงข้ามชนะได้ 17 แต้มวันไหน?",
    "context": "CREATE TABLE table_16678052_2 (date VARCHAR, opponents VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_16678052_2 WHERE opponent = \"Phoenix Cardinals\"",
    "question_en": "What record was reached when the Eagles played the Phoenix Cardinals? ",
    "question_th": " มีสถิติอะไรบ้างเมื่อ Eagles เล่นกับ 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_en": "How many times in 1984 did the Falcons play the Los Angeles Rams?",
    "question_th": "Falcons เล่นกับ Los Angeles Rams กี่ครั้งในปี 1984?",
    "context": "CREATE TABLE table_16710742_3 (opponents VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_16710742_3 WHERE opponent = \"New Orleans Saints\"",
    "question_en": "In 1984, Did the Falcons have a win or loss against the New Orleans Saints?",
    "question_th": "ในปี 1984 Falcons ชนะหรือแพ้ 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_en": "Did the Falcons have a win or loss in the game when their record was 3-7?",
    "question_th": "ฟอลคอนส์ชนะหรือแพ้ในเกมเมื่อสถิติของพวกเขาคือ 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_en": "what is the attendance where the game site is kingdome?",
    "question_th": "การเข้าร่วมที่เว็บไซต์เกมคือ kingdome คืออะไร?",
    "context": "CREATE TABLE table_16729076_1 (attendance INTEGER, game_site VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_16729076_1 WHERE opponent = \"Chicago Bears\"",
    "question_en": "what date is the opponent is chicago bears?",
    "question_th": "คู่ต่อสู้คือหมีชิคาโกวันไหน?",
    "context": "CREATE TABLE table_16729076_1 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT nfl_team FROM table_16729063_1 WHERE college = \"Mississippi\"",
    "question_en": "What team has draft picks from Mississippi?",
    "question_th": "ทีมใดมีร่างเลือกจากมิสซิสซิปปี้?",
    "context": "CREATE TABLE table_16729063_1 (nfl_team VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(position) FROM table_16729063_1 WHERE college = \"Washington\"",
    "question_en": "How many positions drafted players from Washington?",
    "question_th": "ผู้เล่นร่างจากวอชิงตันมีกี่ตำแหน่ง?",
    "context": "CREATE TABLE table_16729063_1 (position VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(pick__number) FROM table_16729063_1 WHERE position = \"Defensive End\"",
    "question_en": "How many draft picks are there at the Defensive End position?",
    "question_th": "มีดราฟต์ให้เลือกกี่ตัวที่ตำแหน่ง Defensive End?",
    "context": "CREATE TABLE table_16729063_1 (pick__number VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(pick__number) FROM table_16729063_1 WHERE position = \"Linebacker\"",
    "question_en": "How many draft picks are there at the linebacker position?",
    "question_th": "ตำแหน่งไลน์แบ็คเกอร์มีดราฟต์ให้เลือกกี่คน?",
    "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_en": "What draft pick was Chris Brewer?",
    "question_th": "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_en": "How many losses did the Michigan State Spartans have?",
    "question_th": "Michigan State Spartans มีการสูญเสียไปกี่ครั้ง?",
    "context": "CREATE TABLE table_1672976_2 (loss INTEGER, institution VARCHAR)"
  },
  {
    "answer": "SELECT MAX(wins) FROM table_1672976_2 WHERE institution = \"Northwestern Wildcats\"",
    "question_en": "How many wins did the Northwestern Wildcats?",
    "question_th": "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_en": "What institution had 6 wins and a current streak of won 2?",
    "question_th": "สถาบันใดชนะ 6 ครั้งและสตรีคปัจจุบันชนะ 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_en": "Who are all the opponents of Slovakia?",
    "question_th": "คู่ต่อสู้ของสโลวาเกียคือใคร?",
    "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_en": "What is the name of the round against the opponents jesse huta galung peter wessels?",
    "question_th": "ชื่อของรอบที่เจอกับคู่แข่ง เจสซี ฮูตา กาลุง ปีเตอร์ เวสเซลส์ คืออะไร?",
    "context": "CREATE TABLE table_16741821_9 (round VARCHAR, opponents VARCHAR)"
  },
  {
    "answer": "SELECT spi FROM table_16731248_1 WHERE number_on_cyl = \"7\"",
    "question_en": "Are there SPI on the number 7 cylinder?",
    "question_th": "มี SPI ที่กระบอกสูบหมายเลข 7 หรือไม่?",
    "context": "CREATE TABLE table_16731248_1 (spi VARCHAR, number_on_cyl VARCHAR)"
  },
  {
    "answer": "SELECT MIN(bypass_ports) FROM table_16731248_1",
    "question_en": "What is the minimum number of bypass ports listed?",
    "question_th": "จำนวนพอร์ตบายพาสขั้นต่ำที่แสดงคือเท่าใด?",
    "context": "CREATE TABLE table_16731248_1 (bypass_ports INTEGER)"
  },
  {
    "answer": "SELECT tapered_grind FROM table_16731248_1 WHERE engine = \"SureStart\"",
    "question_en": "Is there a tapered grind on the Surestart engine?",
    "question_th": "มีการบดแบบเรียวบนเครื่องยนต์ Surestart หรือไม่?",
    "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_en": "How many bypass boosters are there on the engine with slit exhaust ports and SPI is yes?",
    "question_th": "มีบายพาสบูสเตอร์จำนวนเท่าใดในเครื่องยนต์ที่มีพอร์ตไอเสียแบบสลิตและ SPI คือใช่",
    "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_en": "How many times did Saxby Chambliss have a lead margin of 21?",
    "question_th": "Saxby Chambliss มีระยะนำ 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_en": "Name the least tries for when w is 4",
    "question_th": "ตั้งชื่อความพยายามน้อยที่สุดเมื่อ w คือ 4",
    "context": "CREATE TABLE table_16770037_4 (tries_for INTEGER, w VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_1676073_13 WHERE points_difference = \"+119\"",
    "question_en": "What is the total points when the point difference is +119?",
    "question_th": "คะแนนรวมเมื่อผลต่าง +119 เป็นเท่าใด",
    "context": "CREATE TABLE table_1676073_13 (points VARCHAR, points_difference VARCHAR)"
  },
  {
    "answer": "SELECT points_for FROM table_1676073_13 WHERE points = \"6\"",
    "question_en": "What is the points for when the total points is 6?",
    "question_th": "เมื่อคะแนนรวมเป็น 6 คะแนนจะได้อะไร?",
    "context": "CREATE TABLE table_1676073_13 (points_for VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_1676073_13 WHERE points_for = \"693\"",
    "question_en": "What club has 693 points for?",
    "question_th": "สโมสรไหนมี 693 แต้มให้?",
    "context": "CREATE TABLE table_1676073_13 (club VARCHAR, points_for VARCHAR)"
  },
  {
    "answer": "SELECT won FROM table_1676073_13 WHERE points_for = \"565\"",
    "question_en": "How many wins does the club with 565 points for have?",
    "question_th": "สโมสรที่มีคะแนน 565 ชนะได้กี่ครั้ง?",
    "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_en": "How many losses does Cross Keys RFC have?",
    "question_th": "Cross Keys RFC มีการสูญเสียกี่ครั้ง?",
    "context": "CREATE TABLE table_1676073_13 (lost VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT lost FROM table_1676073_13 WHERE points_for = \"539\"",
    "question_en": "How many losses does the club with 539 points for have?",
    "question_th": "สโมสรที่มีคะแนน 539 เสียไปกี่ครั้ง?",
    "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_en": "How many hectars of land is in Kaxholmen?",
    "question_th": "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_en": "How many codes have a population of 598 in Vellinge Municipality?",
    "question_th": "มีกี่รหัสที่มีประชากร 598 คนใน 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_en": "Which urban area has the code 4870?",
    "question_th": "เมืองใดมีรหัส 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_en": "How many people live in an area of 30.94 hectares?",
    "question_th": "มีกี่คนที่อาศัยอยู่ในพื้นที่ 30.94 เฮกตาร์?",
    "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_en": "How many hectares of land area is Landsbro?",
    "question_th": "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_en": "Name the total with one hand clean and jerk is 87.5 and snatch is 87.5",
    "question_th": "ตั้งชื่อผลรวมด้วยมือเดียวว่าสะอาดและกระตุกคือ 87.5 และฉกคือ 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_en": "Name the snatch when body weight is 73.7",
    "question_th": "ตั้งชื่อลูกฉกเมื่อน้ำหนักตัวเท่ากับ 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_en": "Name the 3 where weightlifter is m. van der goten ( bel )",
    "question_th": "ตั้งชื่อ 3 ตัว โดยที่นักยกน้ำหนักคือ ม. ฟาน เดอร์ โกเทน (เบล)",
    "context": "CREATE TABLE table_16779068_5 (weightlifter VARCHAR)"
  },
  {
    "answer": "SELECT assets__billion_$_ FROM table_1682026_2 WHERE company = \"Wells Fargo\"",
    "question_en": "What are Wells Fargo's assets?",
    "question_th": "ทรัพย์สินของ Wells Fargo คืออะไร?",
    "context": "CREATE TABLE table_1682026_2 (assets__billion_$_ VARCHAR, company VARCHAR)"
  },
  {
    "answer": "SELECT company FROM table_1682026_2 WHERE profits__billion_$_ = \"26.9\"",
    "question_en": "Which company had profits of 26.9?",
    "question_th": "บริษัทไหนมีกำไร 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_en": "Which company has a market value of 147.4?",
    "question_th": "บริษัทใดมีมูลค่าตลาด 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_en": "When the assets are 2,550, what is the Market Value?",
    "question_th": "เมื่อทรัพย์สินอยู่ที่ 2,550 มูลค่าตลาดจะเป็นเท่าใด?",
    "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_en": "What are the assets for company who's headquarters are located in Brazil?",
    "question_th": "สินทรัพย์ของบริษัทที่มีสำนักงานใหญ่ตั้งอยู่ในบราซิลมีอะไรบ้าง?",
    "context": "CREATE TABLE table_1682026_2 (assets__billion_$_ VARCHAR, headquarters VARCHAR)"
  },
  {
    "answer": "SELECT pop_density__per_km²_ FROM table_1686313_1 WHERE barangay = \"Tiptip\"",
    "question_en": "Name the population density when barangay is tiptip",
    "question_th": "ตั้งชื่อความหนาแน่นของประชากรเมื่อบารังไกเป็นทิปทิป",
    "context": "CREATE TABLE table_1686313_1 (pop_density__per_km²_ VARCHAR, barangay VARCHAR)"
  },
  {
    "answer": "SELECT MIN(population__2007_) FROM table_1686313_1 WHERE barangay = \"Poblacion II\"",
    "question_en": "Name the least population 2007 for barangay is poblacion ii",
    "question_th": "ตั้งชื่อประชากรน้อยที่สุดในปี 2550 สำหรับบารังไกคือ 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_en": "Name the score for philadelphia flyers ",
    "question_th": " ตั้งชื่อคะแนนสำหรับใบปลิวฟิลาเดลเฟีย",
    "context": "CREATE TABLE table_16864968_9 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_16864968_9 WHERE location = \"Prudential Center\"",
    "question_en": "Nam the opponent for prudential center",
    "question_th": "นามคู่ต่อสู้เพื่อศูนย์พรูเด็นเชียล",
    "context": "CREATE TABLE table_16864968_9 (opponent VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_16864968_9 WHERE attendance = 15046",
    "question_en": "Name the location for 15046 attendance",
    "question_th": "ตั้งชื่อสถานที่ จำนวน 15,046 คน",
    "context": "CREATE TABLE table_16864968_9 (location VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_16864968_8 WHERE opponent = \"Edmonton Oilers\"",
    "question_en": "How many people attended the Edmonton Oilers game?",
    "question_th": "มีผู้เข้าร่วมเกม Edmonton Oilers กี่คน",
    "context": "CREATE TABLE table_16864968_8 (attendance VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(points) FROM table_16864968_8 WHERE game = 70",
    "question_en": "How many points were made in game 70?",
    "question_th": "ในเกมที่ 70 ได้กี่แต้ม?",
    "context": "CREATE TABLE table_16864968_8 (points VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_16864968_8 WHERE attendance = 19041",
    "question_en": "Who was the opponent in the game where 19041 people attended?",
    "question_th": "คู่ต่อสู้ในเกมที่มีผู้เข้าร่วม 19,041 คนคือใคร?",
    "context": "CREATE TABLE table_16864968_8 (opponent VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(record) FROM table_16864968_8 WHERE date = \"March 27, 2009\"",
    "question_en": "How many records were made on March 27, 2009?",
    "question_th": "มีการบันทึกกี่รายการในวันที่ 27 มีนาคม 2552",
    "context": "CREATE TABLE table_16864968_8 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_16864968_8 WHERE date = \"March 21, 2009\"",
    "question_en": "What was the score on March 21, 2009?",
    "question_th": "คะแนนเมื่อวันที่ 21 มีนาคม 2552 เป็นเท่าใด",
    "context": "CREATE TABLE table_16864968_8 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_16893837_4 WHERE opponents = \"Margalita Chakhnashvili Salome Devidze\"",
    "question_en": "Name the date for margalita chakhnashvili salome devidze",
    "question_th": "ตั้งชื่อวันที่สำหรับ 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_en": "Name the most points for independiente",
    "question_th": "ตั้งชื่อคะแนนมากที่สุดสำหรับความเป็นอิสระ",
    "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_en": "Name the original air date of 1/2 in season",
    "question_th": "ตั้งชื่อวันออกอากาศเดิม 1/2 ในซีซัน",
    "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_en": "Name the original air date for number in season being 13",
    "question_th": "ตั้งชื่อวันออกอากาศเดิมสำหรับหมายเลขในฤดูกาลเป็น 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_en": "Namee the title for production code for 4014",
    "question_th": "ตั้งชื่อหัวข้อรหัสการผลิตสำหรับปี 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_en": "Name the title for number in season 9",
    "question_th": "ตั้งชื่อชื่อเรื่องสำหรับหมายเลขในฤดูกาลที่ 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_en": "Name who wrote the episode that had 7.56 million viewers",
    "question_th": "ชื่อผู้เขียนตอนที่มีผู้ชม 7.56 ล้านคน",
    "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_en": "Name the wins for best finish being 2nd",
    "question_th": "ตั้งชื่อชัยชนะเพื่อให้ได้อันดับที่ 2 ที่ดีที่สุด",
    "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_en": "Name the most earnings for money list rank being 143",
    "question_th": "ระบุอันดับรายได้สูงสุดสำหรับรายการเงินคือ 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_en": "Nme the most cuts made for wins being 0",
    "question_th": "Nme การตัดมากที่สุดสำหรับการชนะคือ 0",
    "context": "CREATE TABLE table_1697190_1 (cuts_made INTEGER, wins VARCHAR)"
  },
  {
    "answer": "SELECT wins FROM table_1697190_1 WHERE tournaments_played = 14",
    "question_en": "Name the wins for tournaments played being 14",
    "question_th": "ตั้งชื่อชัยชนะสำหรับทัวร์นาเมนต์ที่เล่นเป็น 14",
    "context": "CREATE TABLE table_1697190_1 (wins VARCHAR, tournaments_played VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_17001658_6 WHERE game = 21",
    "question_en": "Against which team was game 21?",
    "question_th": "เกมที่ 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_en": "Name the replaced by where date of vacancy is 31 december 2008 where position in table is 1st",
    "question_th": "ตั้งชื่อให้แทนที่ด้วย โดยตำแหน่งที่ว่างคือวันที่ 31 ธันวาคม 2551 โดยตำแหน่งในตารางคือที่ 1",
    "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_en": "Name the replaced by for position in table is 1st",
    "question_th": "ตั้งชื่อการแทนที่ด้วยสำหรับตำแหน่งในตารางคืออันดับที่ 1",
    "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_en": "Name the position in table for 1 july 2008 when manner of departure is resigned",
    "question_th": "ระบุตำแหน่งในตาราง ประจำวันที่ 1 กรกฎาคม 2551 เมื่อลักษณะการลาออก",
    "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_en": "Name the replaced by when outgoing manager is kent nielsen",
    "question_th": "ตั้งชื่อผู้จัดการที่ถูกแทนที่เมื่อผู้จัดการที่จะออกไปคือ เคนท์ นีลเซ่น",
    "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_en": "Name the outgoing manager for position in table being 11th",
    "question_th": "ตั้งชื่อผู้จัดการที่จะออกจากตำแหน่งในตารางอันดับที่ 11",
    "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_en": "Name the most  number of leitrim",
    "question_th": "ตั้งชื่อเลทริมจำนวนมากที่สุด",
    "context": "CREATE TABLE table_1705429_1 (no INTEGER, constituency VARCHAR)"
  },
  {
    "answer": "SELECT MIN(yes) FROM table_1705429_1 WHERE constituency = \"Dublin South\"",
    "question_en": "Name the least yes for dublin south",
    "question_th": "ชื่ออย่างน้อยใช่สำหรับดับลินใต้",
    "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_en": "In how many game was the attendance at Staples Center 18,997? ",
    "question_th": " ผู้ชมที่สเตเปิลส์ เซ็นเตอร์ 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_en": "How many different games had David Lee (13) with High rebounds?",
    "question_th": "เดวิด ลี (13) มีรีบาวด์สูงกี่เกมที่แตกต่างกัน?",
    "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_en": "Which date did Chris Duhon (13) receive high assists?",
    "question_th": "Chris Duhon (13) ได้รับแอสซิสต์สูงเมื่อใด?",
    "context": "CREATE TABLE table_17060277_6 (date VARCHAR, high_assists VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_17060277_7 WHERE team = \"Memphis\"",
    "question_en": "Name the high rebounds for memphis",
    "question_th": "ตั้งชื่อการรีบาวด์สูงของเมมฟิส",
    "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_en": "Name the team for chris duhon , nate robinson , david lee (3)",
    "question_th": "ตั้งชื่อทีม คริส ดูฮอน, เนท โรบินสัน, เดวิด ลี (3)",
    "context": "CREATE TABLE table_17060277_7 (team VARCHAR, high_assists VARCHAR)"
  },
  {
    "answer": "SELECT MAX(wins) FROM table_1708050_3 WHERE position = \"16th\"",
    "question_en": "Name the most wins where position is 16th",
    "question_th": "ตั้งชื่อผู้ชนะมากที่สุดโดยอันดับที่ 16",
    "context": "CREATE TABLE table_1708050_3 (wins INTEGER, position VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(avg_start) FROM table_1708050_3 WHERE year = 2000",
    "question_en": "Name the total number when avg start is 2000",
    "question_th": "ตั้งชื่อจำนวนรวมเมื่อเริ่มต้นเฉลี่ยคือ 2000",
    "context": "CREATE TABLE table_1708050_3 (avg_start VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT MIN(poles) FROM table_1708050_3",
    "question_en": "Name the most poles",
    "question_th": "ตั้งชื่อเสาให้มากที่สุด",
    "context": "CREATE TABLE table_1708050_3 (poles INTEGER)"
  },
  {
    "answer": "SELECT indianapolis_concerts FROM table_17085724_1 WHERE character = \"Dr. Alexandre Manette\"",
    "question_en": "Name the indanapolis concerts for dr. alexandre manette",
    "question_th": "ตั้งชื่อคอนเสิร์ตอินดานาโพลิสสำหรับดร. อเล็กซานเดอร์ มาเนตต์",
    "context": "CREATE TABLE table_17085724_1 (indianapolis_concerts VARCHAR, character VARCHAR)"
  },
  {
    "answer": "SELECT brighton_cast FROM table_17085724_1 WHERE character = \"Jerry Cruncher\"",
    "question_en": "Name the brighton cast for jerry cruncher",
    "question_th": "ตั้งชื่อนักแสดงไบรท์ตันสำหรับ 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_en": "Name the sarasota samantha sharpe",
    "question_th": "ตั้งชื่อซาราโซตา ซาแมนธา ชาร์ป",
    "context": "CREATE TABLE table_17085724_1 (sarasota VARCHAR, indianapolis_concerts VARCHAR)"
  },
  {
    "answer": "SELECT indianapolis_concerts FROM table_17085724_1 WHERE sarasota = \"Les Minski\"",
    "question_en": "Name the indianapolis concerts for les minski",
    "question_th": "ตั้งชื่อคอนเสิร์ตอินเดียแนโพลิสสำหรับเลส มินสกี้",
    "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_en": "Name the brighton cast for andrew verala",
    "question_th": "ตั้งชื่อนักแสดงไบรท์ตันสำหรับแอนดรูว์ เวราลา",
    "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_en": "Name the indianapolis concerts for paul baker",
    "question_th": "ตั้งชื่อคอนเสิร์ตอินเดียแนโพลิสสำหรับพอล เบเกอร์",
    "context": "CREATE TABLE table_17085724_1 (indianapolis_concerts VARCHAR, brighton_cast VARCHAR)"
  },
  {
    "answer": "SELECT census_ranking FROM table_170961_2 WHERE population = 1599",
    "question_en": "when the population was 1599, what was the census ranking?",
    "question_th": "เมื่อประชากรมีอายุ 1,599 ปี การสำรวจสำมะโนประชากรอยู่ที่เท่าไร?",
    "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_en": "What is the name of the parish where the area is 508.30?",
    "question_th": "ตำบลที่มีพื้นที่ 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_en": "at area 191.43 what is the total number of census ranking?",
    "question_th": "ที่บริเวณ 191.43 มีจำนวนการสำรวจสำมะโนประชากรทั้งหมดเท่าไร?",
    "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_en": "At census ranking 1,184 of 5,008, what was the minimum population?",
    "question_th": "ในการสำรวจสำมะโนประชากรอันดับที่ 1,184 จาก 5,008 จำนวนประชากรขั้นต่ำคือเท่าใด",
    "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_en": "at the area of 113.12, what was the population?",
    "question_th": "ที่พื้นที่ 113.12 มีประชากรกี่คน?",
    "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_en": "What is the status for Saint George? ",
    "question_th": " สถานะของเซนต์จอร์จคืออะไร?",
    "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_en": "What is the area in km2 for Dufferin? ",
    "question_th": " พื้นที่ใน km2 ของดัฟเฟรินคือเท่าใด",
    "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_en": "How many areas are named West Isles? ",
    "question_th": " มีกี่พื้นที่ที่ชื่อ 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_en": "How many areas of 375.06 km 2 have a census ranking? ",
    "question_th": " พื้นที่ 375.06 กม. 2 มีกี่พื้นที่ที่มีการจัดอันดับการสำรวจสำมะโนประชากร?",
    "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_en": "What is the census ranking when the area is 78.67 ?",
    "question_th": "การจัดอันดับสำมะโนประชากรเมื่อพื้นที่เป็น 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_en": "Who had high assists on March 15? ",
    "question_th": "ใครทำแอสซิสต์ได้สูงในวันที่ 15 มีนาคม?",
    "context": "CREATE TABLE table_17102076_9 (high_assists VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_17102076_9 WHERE date = \"March 20\"",
    "question_en": "What team played on March 20? ",
    "question_th": " ทีมใดเล่นในวันที่ 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_en": "How many times did Viorel Moldovan replaced a manager?",
    "question_th": "วิโอเรล มอลโดแวน เข้ามาแทนที่ผู้จัดการทีมกี่ครั้ง?",
    "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_en": "What was the date of vacancy when Viorel Moldovan replaced a manager?",
    "question_th": "Viorel Moldovan เข้ามารับตำแหน่งผู้จัดการแทนเมื่อใด?",
    "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_en": "Who replaced the manager on Team Cfr Cluj?",
    "question_th": "ใครเข้ามาแทนที่ผู้จัดการทีมใน 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_en": "Who was the outgoing manager replaced by Marian Bucurescu?",
    "question_th": "ใครคือผู้จัดการทีมที่จะออกไปแทนที่โดย 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_en": "What was the manner of departure of Nicolae Manea?",
    "question_th": "การจากไปของ 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_en": "What was the score on game number 12?",
    "question_th": "คะแนนในเกมที่ 12 คืออะไร?",
    "context": "CREATE TABLE table_17118657_7 (score VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_17118657_7 WHERE high_assists = \"Canty (5)\"",
    "question_en": "What was the record when Canty (5) was the high assists?",
    "question_th": "แคนตี้ (5) ทำสถิติแอสซิสต์สูงที่สุดเป็นอย่างไรบ้าง?",
    "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_en": "How many players received high points where location/attendance was UIC Pavilion 6,304 respectively?",
    "question_th": "มีผู้เล่นกี่คนที่ได้รับคะแนนสูงโดยที่สถานที่/การเข้าร่วมคือ UIC Pavilion 6,304 ตามลำดับ",
    "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_en": "On what date did Canty (6) receive high assists?",
    "question_th": "Canty (6) ได้รับแอสซิสต์สูงเมื่อใด?",
    "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_en": "Which game number had a location/attendance of US Airways Center 7,311 respectively?",
    "question_th": "หมายเลขเกมใดมีสถานที่/การเข้าร่วมของ US Airways Center 7,311 ตามลำดับ?",
    "context": "CREATE TABLE table_17118657_7 (game INTEGER, location_attendance VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_17118657_7 WHERE record = \"1-4\"",
    "question_en": "On which date was the record 1-4?",
    "question_th": "สถิติ 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_en": "What is the population in Westfield?",
    "question_th": "เวสต์ฟิลด์มีประชากรกี่คน?",
    "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_en": "What is the Area KM 2 of the place that has a Census ranking of 1,016 of 5,008?",
    "question_th": "พื้นที่ KM 2 ของสถานที่ที่มีการจัดอันดับการสำรวจสำมะโนประชากร 1,016 จาก 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_en": "What is the Area KM 2 of the place that has a Census ranking of 1,608 of 5,008?",
    "question_th": "พื้นที่ KM 2 ของสถานที่ซึ่งมีการจัดอันดับการสำรวจสำมะโนประชากร 1,608 จาก 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_en": "What is the Area KM 2 of Rothesay?",
    "question_th": "พื้นที่ KM 2 ของ 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_en": "What's the official name of the place with an Area KM 2 of 295.07",
    "question_th": "ชื่ออย่างเป็นทางการของสถานที่ซึ่งมีพื้นที่ KM 2 ที่ 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_en": "What is the population of Cardwell?",
    "question_th": "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_en": "Name the total number of status for eldon",
    "question_th": "ตั้งชื่อจำนวนสถานะทั้งหมดสำหรับ 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_en": "Name the area km 2 for balmoral",
    "question_th": "ตั้งชื่อพื้นที่ กม. 2 ว่า บัลมอรัล",
    "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_en": "What team(s) did they play on april 23?",
    "question_th": "พวกเขาเล่นทีมอะไรในวันที่ 23 เมษายน?",
    "context": "CREATE TABLE table_17140608_11 (team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_17140608_11 WHERE date = \"April 28\"",
    "question_en": "What score(s) were recorded on april 28?",
    "question_th": "คะแนนใดที่ถูกบันทึกไว้ในวันที่ 28 เมษายน?",
    "context": "CREATE TABLE table_17140608_11 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT series FROM table_1714685_1 WHERE title = \"Galaxy Angel AA\"",
    "question_en": "When galaxy angel aa is the title what was the series?",
    "question_th": "เมื่อ galaxy angel aa ชื่อเรื่องว่า 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_en": "When  7 april 2001 to 29 september 2001 was aired in japan 2 how many titles were there?",
    "question_th": "ตอนที่ 7 เมษายน 2544 ถึง 29 กันยายน 2544 ออกอากาศในญี่ปุ่น 2 เรื่อง มีกี่เรื่อง?",
    "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_en": "When galaxy angel aa was the title was the us release date?",
    "question_th": "เมื่อ galaxy angel aa มีชื่อเรื่องเป็นวันวางจำหน่าย us?",
    "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_en": "What comparable country has a national share of 1.08?",
    "question_th": "ประเทศใดเทียบเคียงได้มีส่วนแบ่งระดับชาติที่ 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²_ = 148064",
    "question_en": "What is the national share of the country whose area is 148064 km^2?",
    "question_th": "ส่วนแบ่งของประเทศที่มีพื้นที่ 148064 km^2 คือเท่าใด",
    "context": "CREATE TABLE table_171666_1 (national_share___percentage_ VARCHAR, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT administrative_division FROM table_171666_1 WHERE area__km²_ = 30",
    "question_en": "What is the administrative division that has an area of 30 km^2?",
    "question_th": "แผนกธุรการที่มีพื้นที่ 30 กม.^2 คืออะไร?",
    "context": "CREATE TABLE table_171666_1 (administrative_division VARCHAR, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT national_share___percentage_ FROM table_171666_1 WHERE administrative_division = \"Guizhou\"",
    "question_en": "What is the national share of Guizhou's administrative division?",
    "question_th": "ส่วนแบ่งระดับชาติของฝ่ายบริหารของกุ้ยโจวคือเท่าไร?",
    "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_en": "What is the rank of the division with an area of 456800 sq mi?",
    "question_th": "พื้นที่ 456,800 ตร.ไมล์ อยู่ในอันดับที่เท่าไหร่?",
    "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_en": "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%?",
    "question_th": "การเปลี่ยนแปลงจากปีที่แล้วโดยรวมในช่วงเวลาที่การเปลี่ยนแปลงจากไตรมาสเดียวกันของปีที่แล้วเพิ่มขึ้น 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_en": "When was the percentage of trains arriving within 5 minutes of scheduled time 89.6%?",
    "question_th": "เมื่อใดที่เปอร์เซ็นต์ของรถไฟมาถึงภายใน 5 นาทีของเวลาที่กำหนดคือ 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_en": "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)?",
    "question_th": "มีการเปลี่ยนแปลงอะไรจากไตรมาสเดียวกันของปีก่อนในช่วงที่รถไฟ 89.6% มาถึงภายใน 5 นาทีของเวลาที่กำหนด (มากกว่า 3 เดือน)",
    "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_en": "how many shire in the land of area in km 2 is 27.17",
    "question_th": "กี่ไชร์ในพื้นที่ในกิโลเมตร 2 เท่ากับ 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_en": "How many open era titles does the team with their first title in 1925 have?",
    "question_th": "ทีมที่มีตำแหน่งแรกในปี 1925 มีชื่อในยุคเปิดกี่ชื่อ?",
    "context": "CREATE TABLE table_1725413_5 (open_era VARCHAR, first_title VARCHAR)"
  },
  {
    "answer": "SELECT replaced_by FROM table_17275810_7 WHERE team = \"Ascoli\"",
    "question_en": "Name the replacced by with ascoli",
    "question_th": "ตั้งชื่อสิ่งที่แทนที่ด้วย 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_en": "Name the team for mario somma",
    "question_th": "ตั้งชื่อทีมให้มาริโอ้ ซอมมา",
    "context": "CREATE TABLE table_17275810_7 (team VARCHAR, replaced_by VARCHAR)"
  },
  {
    "answer": "SELECT date_of_appointment FROM table_17275810_7 WHERE team = \"Ascoli\"",
    "question_en": "Name the date of appointment for ascoli",
    "question_th": "ตั้งชื่อวันที่นัดหมายสำหรับ 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_en": "Name the manner of departure for elvio selighini",
    "question_th": "ตั้งชื่อท่าทีออกเดินทางของเอลวิโอ เซลิกีนี",
    "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_en": "Name the date of vacancy for fabio brini",
    "question_th": "ตั้งชื่อวันที่ตำแหน่งว่างของฟาบิโอ บรินี",
    "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_en": "Name the outgoing manager for mantova",
    "question_th": "ตั้งชื่อผู้จัดการที่จะออกไปสำหรับ mantova",
    "context": "CREATE TABLE table_17275810_7 (outgoing_manager VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_17288825_5 WHERE team = \"San Antonio\"",
    "question_en": "What is the San Antonio's team score?",
    "question_th": "คะแนนทีมซานอันโตนิโอเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_17288825_5 (score VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_17288845_9 WHERE game = 66",
    "question_en": "Name the score for game 66",
    "question_th": "ตั้งชื่อคะแนนของเกมที่ 66",
    "context": "CREATE TABLE table_17288845_9 (score VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_17288845_9 WHERE score = \"L 77–80 (OT)\"",
    "question_en": "Name the record for score of l 77–80 (ot)",
    "question_th": "ตั้งชื่อบันทึกคะแนน l 77–80 (ot)",
    "context": "CREATE TABLE table_17288845_9 (record VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_17288845_9 WHERE team = \"Houston\"",
    "question_en": "Name the high assists for houston",
    "question_th": "เอ่ยชื่อแอสซิสต์สูงของฮูสตัน",
    "context": "CREATE TABLE table_17288845_9 (high_assists VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_17288845_9 WHERE game = 63",
    "question_en": "Name the score for game 63",
    "question_th": "บอกชื่อคะแนนเกมที่ 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_en": "How many poles did David Price Racing win?",
    "question_th": "David Price Racing ชนะไปกี่โพล?",
    "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_en": "Who started in 2008 with 0 points?",
    "question_th": "ใครเริ่มในปี 2008 ด้วย 0 คะแนน?",
    "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_en": "Which team started 2010?",
    "question_th": "ทีมใดที่เริ่มต้นปี 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_en": "What was the max points you when when you place 9th?",
    "question_th": "คะแนนสูงสุดของคุณเมื่อคุณอันดับที่ 9 คือเท่าไร?",
    "context": "CREATE TABLE table_17289224_1 (points INTEGER, final_placing VARCHAR)"
  },
  {
    "answer": "SELECT MAX(races) FROM table_17289224_1 WHERE wins = 3",
    "question_en": "When the wins is 3, what is the maximum races?",
    "question_th": "เมื่อชนะ 3 เผ่าพันธุ์สูงสุดคือเท่าไร?",
    "context": "CREATE TABLE table_17289224_1 (races INTEGER, wins VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(former_wnba_team) FROM table_17308269_2 WHERE pick = 2",
    "question_en": "Name the number of former wnba team for 2",
    "question_th": "ตั้งชื่อหมายเลขอดีตทีม Wnba จำนวน 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_en": "Name the player for mercer",
    "question_th": "ตั้งชื่อผู้เล่นให้เมอร์เซอร์",
    "context": "CREATE TABLE table_17308269_2 (player VARCHAR, college_country_team VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_17311759_5 WHERE team = \"Denver\"",
    "question_en": "What is the record of wins and losses for Denver's ball club?",
    "question_th": "บันทึกการชนะและแพ้ของสโมสรบอลเดนเวอร์คืออะไร?",
    "context": "CREATE TABLE table_17311759_5 (record VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_17311759_5 WHERE date = \"December 9\"",
    "question_en": "What was the location and the crowd attendance on December 9?",
    "question_th": "สถานที่และฝูงชนที่เข้าร่วมในวันที่ 9 ธันวาคมคือที่ไหน?",
    "context": "CREATE TABLE table_17311759_5 (location_attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_17311759_8 WHERE game = 64",
    "question_en": "Who scored the most rebounds in game 64?",
    "question_th": "ใครทำแต้มรีบาวด์มากที่สุดในเกม 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_en": "How many numbers were recorded for high points when the team played against Oklahoma City?",
    "question_th": "มีกี่หมายเลขที่ถูกบันทึกไว้สำหรับแต้มสูงสุดเมื่อทีมเล่นกับโอคลาโฮมาซิตี้",
    "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_en": "Name the high assists for  yi jianlian , brook lopez (7)",
    "question_th": "ทายแอสซิสต์สูงของยี่ เจียนเหลียน , บรูค โลเปซ (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_en": "Name the location attendance for 20",
    "question_th": "ตั้งชื่อสถานที่เข้าร่วมสำหรับ 20",
    "context": "CREATE TABLE table_17322817_6 (location_attendance VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_17322817_6 WHERE score = \"L 92–103 (OT)\"",
    "question_en": "Name the date for  l 92–103 (ot)",
    "question_th": "ตั้งชื่อวันที่ l 92–103 (ot)",
    "context": "CREATE TABLE table_17322817_6 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_17325580_10 WHERE team = \"Boston\"",
    "question_en": "What was the record when the team played Boston?",
    "question_th": "บันทึกเมื่อทีมเล่นกับบอสตันคืออะไร?",
    "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_en": "What number game had a high assist of lebron james (7) and high point of lebron james (21)?",
    "question_th": "เกมหมายเลขใดที่มีแอสซิสต์สูงของเลอบรอน เจมส์ (7) และแต้มสูงของเลอบรอน เจมส์ (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_en": "What is the lowest game number when the team is Houston? ",
    "question_th": " หมายเลขเกมต่ำสุดเมื่อทีมคือฮูสตันคือหมายเลขใด",
    "context": "CREATE TABLE table_17326036_7 (game INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_17326036_7 WHERE high_rebounds = \"Troy Murphy (15)\"",
    "question_en": "What was the date when Troy Murphy (15), got high rebounds? ",
    "question_th": " วันที่เท่าไหร่ที่ทรอย เมอร์ฟีย์ (15) รีบาวด์สูง?",
    "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_en": "Who did the High Assists when Kevin Durant (28) took the High Points?",
    "question_th": "ใครเป็นคนทำ High Assists เมื่อ Kevin Durant (28) คว้าคะแนนสูง?",
    "context": "CREATE TABLE table_17355628_7 (high_assists VARCHAR, high_points VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_17355628_7 WHERE date = \"January 18\"",
    "question_en": "What is the score when the game took place on January 18?",
    "question_th": "สกอร์เมื่อเกมเกิดขึ้นวันที่ 18 มกราคมเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_17355628_7 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(score) FROM table_17355628_7 WHERE team = \"@ New Jersey\"",
    "question_en": "How many games were played by team @ New Jersey?",
    "question_th": "ทีม @ 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_en": "how many times were high rebounds mehmet okur , paul millsap (6)",
    "question_th": "เมห์เม็ต โอคูร์ รีบาวด์ได้สูงกี่ครั้ง, พอล มิลแซป (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_en": "what is the score of the match with high points carlos boozer (20)",
    "question_th": "แมตช์นี้มีแต้มสูงเท่าไหร่ คาร์ลอส บูเซอร์ (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_en": "what is the high rebounds stat on april 11",
    "question_th": "สถิติการรีบาวด์สูงสุดในวันที่ 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_en": "Who wrote season 10",
    "question_th": "ใครเป็นคนเขียนซีซั่น 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_en": "Name who directed the episode by joe sachs and david zabel",
    "question_th": "ชื่อผู้กำกับตอนนี้โดย joe sachs และ 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_en": "What is every value for Points 2 when the value of won is 30?",
    "question_th": "ทุกมูลค่าของแต้ม 2 เมื่อมูลค่าชนะคือ 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_en": "What is the lowest value of Points 2 when the goal average is 1.50?",
    "question_th": "ค่าต่ำสุดของแต้ม 2 เมื่อค่าเฉลี่ยประตูคือ 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_en": "How many values of goal average 1 occur when the value of goals against is 92?",
    "question_th": "ค่าเฉลี่ยประตู 1 มีค่าเท่าใดเมื่อมูลค่าประตูต่อคือ 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_en": "What is the highest value for Points 2 when the goal average 1 is 0.65?",
    "question_th": "ค่าสูงสุดสำหรับแต้ม 2 คือเท่าใด เมื่อค่าเฉลี่ยประตู 1 คือ 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_en": "How many dates had a final score of w 118-112?",
    "question_th": "กี่วันมีคะแนนสุดท้าย 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_en": "What was the location and attendance at the game where the final score is w 118-112?",
    "question_th": "สถานที่และการเข้าร่วมในเกมที่สกอร์สุดท้ายคือ 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_en": "Who had the high rebounds in the game with a final score of w 140-108?",
    "question_th": "ใครมีการรีบาวด์สูงในเกมด้วยสกอร์สุดท้าย 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_en": "in what date was aired the first broacast of the episode 1x02",
    "question_th": "ออกอากาศตอนแรกของตอนที่ 1x02 วันไหน",
    "context": "CREATE TABLE table_17413485_1 (first_broadcast VARCHAR, episode VARCHAR)"
  },
  {
    "answer": "SELECT jeremys_guest FROM table_17413485_1 WHERE episode = \"1x01\"",
    "question_en": "what is the name of the jeremy guest for the episode 1x01",
    "question_th": "แขกรับเชิญของเจเรมีในตอนที่ 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_en": "what is the number of the episode where maria mcerlane where gramer guest",
    "question_th": "มาเรีย แมคเซอร์เลน มีแขกรับเชิญกี่ตอน?",
    "context": "CREATE TABLE table_17413485_1 (episode VARCHAR, graemes_guest VARCHAR)"
  },
  {
    "answer": "SELECT graemes_guest FROM table_17413485_1 WHERE episode = \"1x03\"",
    "question_en": "what is the name of the graemest guest of episode 1x03",
    "question_th": "แขกรับเชิญที่ยิ่งใหญ่ที่สุดของตอนที่ 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_en": "what is the largest city where the population is 6620100?",
    "question_th": "เมืองใดใหญ่ที่สุดที่มีประชากร 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_en": "what is the largest city where the province is eastern cape?",
    "question_th": "เมืองใดใหญ่ที่สุดที่จังหวัดคือแหลมตะวันออก?",
    "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_en": "what is minimum area where the largest city is bloemfontein?",
    "question_th": "พื้นที่ขั้นต่ำที่เมืองที่ใหญ่ที่สุดคือบลูมฟอนเทนคือเท่าใด",
    "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_en": "what is the numbe of provincial captial where the population is 1162900?",
    "question_th": "เมืองหลวงของจังหวัดที่มีประชากร 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_en": "what is the number of provincial captial where the province is northern cape?",
    "question_th": "เมืองหลวงของจังหวัดที่จังหวัดอยู่แหลมเหนือมีจำนวนเท่าไร?",
    "context": "CREATE TABLE table_17416221_1 (provincial_capital VARCHAR, province VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(airport) FROM table_17419587_1 WHERE iata = \"MEL\"",
    "question_en": "What is the airport with the IATA MEL?",
    "question_th": "สนามบินที่มี 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_en": "If unknown is larger than 1.0, what is the maximum two year amount?",
    "question_th": "หากไม่ทราบมากกว่า 1.0 จำนวนเงินสูงสุดสองปีคือเท่าใด",
    "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_en": "If two years is 159, what is the amount for one year?",
    "question_th": "ถ้าสองปีเท่ากับ 159 ปีหนึ่งปีจะเป็นเท่าใด?",
    "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_en": "If the year is 2010, what is the minimum amount of years 5-9?",
    "question_th": "ถ้าเป็นปี 2553 จำนวนขั้นต่ำของปีที่ 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_en": "When debra j. fisher & erica messer are the writers and the director is patrick norris what is the series number?",
    "question_th": "เมื่อเด็บบราเจ. ฟิชเชอร์และเอริกา เมสเซอร์เป็นผู้เขียนบท และผู้กำกับคือแพทริค นอร์ริส หมายเลขซีรีส์คืออะไร",
    "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_en": "When there are  12.70 million u.s. viewers who is the director?",
    "question_th": "เมื่อมีผู้ชมเรา 12.70 ล้านคน ใครเป็นผู้กำกับ?",
    "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_en": "Which is the number of the episode \"rook gave\" \"rūku dīo\" (デ デ ィ オ ー ル) which aired on July 14, 2003",
    "question_th": "ซึ่งเป็นหมายเลขของตอน \"โกงให้\" \"rūku dīo\" (デ デ ժ ー ル) ซึ่งออกอากาศเมื่อวันที่ 14 กรกฎาคม พ.ศ. 2546",
    "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_en": "What are the numbers of episodes that were broadcast on September 1, 2003",
    "question_th": "ออกอากาศวันที่ 1 กันยายน พ.ศ. 2546 มีกี่ตอน",
    "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_en": "How many viewers did Episode #5 have?",
    "question_th": "ตอนที่ 5 มีผู้ชมกี่คน?",
    "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 –49) = 2.6 / 8",
    "question_en": "How many share values are listed for the episode with a rating/share value of 2.6/8?",
    "question_th": "มีการระบุมูลค่าการแชร์จำนวนเท่าใดสำหรับตอนที่มีมูลค่าเรตติ้ง/ส่วนแบ่ง 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_en": "How many episodes were originally aired Saturday, May 30, 2009?",
    "question_th": "เดิมออกอากาศวันเสาร์ที่ 30 พฤษภาคม 2552 กี่ตอน",
    "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 –49) = 0.9 / 4",
    "question_en": "What is the rating of the episode with a rating/share of 0.9/4?",
    "question_th": "เรตติ้งตอนที่มีเรตติ้ง/แชร์ 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_en": "How many episodes aired Saturday, July 11, 2009",
    "question_th": "ออกอากาศกี่ตอนในวันเสาร์ที่ 11 กรกฎาคม พ.ศ. 2552",
    "context": "CREATE TABLE table_17525955_2 (episode__number VARCHAR, us_air_date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(rating) / SHARE(18 AS –49) FROM table_17525955_2 WHERE us_air_date = \"Saturday, May 9, 2009\"",
    "question_en": "How many rating/share values does the episode aired on Saturday, May 9, 2009?",
    "question_th": "ตอนที่ออกอากาศในวันเสาร์ที่ 9 พฤษภาคม พ.ศ. 2552 มีเรตติ้ง/ส่วนแบ่งเท่าใด",
    "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_en": "How many subsidiaries of Postermobile Limited?",
    "question_th": "บริษัท 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_en": "What activities does Clear Channel Entertainment Facilitation Limited engage in?",
    "question_th": "Clear Channel Entertainment Facilitation Limited มีส่วนร่วมในกิจกรรมอะไรบ้าง?",
    "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_en": "How many subsidiaries of company F M Media Limited?",
    "question_th": "บริษัท เอฟเอ็ม มีเดีย จำกัด มีบริษัทย่อยกี่แห่ง?",
    "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_en": "How many subsidiaries are there of Postermobile Advertising Limited?",
    "question_th": "Postermobile Advertising Limited มีบริษัทในเครือกี่แห่ง?",
    "context": "CREATE TABLE table_1756264_2 (subsidiaries INTEGER, company_name VARCHAR)"
  },
  {
    "answer": "SELECT MAX(holding_companies) FROM table_1756264_2",
    "question_en": "What is the largest number of holding companies?",
    "question_th": "บริษัทโฮลดิ้งจำนวนมากที่สุดคือเท่าไร?",
    "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_en": "How many companies have Postermobile Limited as a parent company?",
    "question_th": "Postermobile Limited เป็นบริษัทแม่มีกี่บริษัท",
    "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_en": "Name the total number of league cup for mark roberts",
    "question_th": "บอกจำนวนลีกคัพทั้งหมดสำหรับมาร์ค โรเบิร์ต",
    "context": "CREATE TABLE table_17598822_11 (league VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(league) FROM table_17598822_11 WHERE total = 5",
    "question_en": "Name the total number of league for 5",
    "question_th": "ตั้งชื่อจำนวนรวมของลีกสำหรับ 5",
    "context": "CREATE TABLE table_17598822_11 (league VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT MAX(league) FROM table_17598822_11 WHERE scottish_cup = 0",
    "question_en": "Name the maximum leagure for 0 scottish cup",
    "question_th": "ทายลีกสูงสุด 0 สกอตติช คัพ",
    "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_en": "Name the most challenge cup for damon gray",
    "question_th": "ตั้งชื่อถ้วยที่ท้าทายที่สุดสำหรับเดมอนเกรย์",
    "context": "CREATE TABLE table_17598822_11 (challenge_cup INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT league FROM table_17598822_11 WHERE player = \"Paul Paton\"",
    "question_en": "Name the league for paul paton",
    "question_th": "ตั้งชื่อลีกให้กับพอล ปาตัน",
    "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_en": "What was the original air date of this episode that was written by Debbie Sarjeant?",
    "question_th": "วันที่ออกอากาศดั้งเดิมของตอนนี้ที่เขียนโดย 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_en": "How many episodes did Julie Martin wrote for the show If every episode has its own production code?",
    "question_th": "Julie Martin เขียนรายการกี่ตอน ถ้าทุกตอนมีรหัสการผลิตของตัวเอง",
    "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_en": "Name the total number of series for april 26",
    "question_th": "ตั้งชื่อซีรี่ส์ทั้งหมดสำหรับวันที่ 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_en": "Name the number of high rebounds for april 21",
    "question_th": "ทายผลรีบาวด์สูงประจำวันที่ 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_en": "Name the number of location attendance for april 24",
    "question_th": "แจ้งจำนวนการเข้าสถานที่ประจำวันที่ 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_en": "What is listed in p when the type is listed as free agent 1?",
    "question_th": "สิ่งที่ระบุไว้ใน p เมื่อประเภทแสดงเป็นตัวแทนอิสระ 1",
    "context": "CREATE TABLE table_17634290_7 (p VARCHAR, type VARCHAR)"
  },
  {
    "answer": "SELECT ends FROM table_17634290_7 WHERE moving_from = \"Cary Clarets\"",
    "question_en": "What is the end when moving from is listed as cary clarets?",
    "question_th": "จุดสิ้นสุดเมื่อย้ายจากถูกระบุว่าเป็นแครี่คลาเรตคืออะไร?",
    "context": "CREATE TABLE table_17634290_7 (ends VARCHAR, moving_from VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_17634290_7 WHERE moving_from = \"Bristol City\"",
    "question_en": "What is the name of the country where moving from is listed as bristol city?",
    "question_th": "ประเทศที่ย้ายจากชื่ออะไรเป็นเมืองบริสตอล?",
    "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_en": "Name the number of duration for viewership of 5.46 million",
    "question_th": "บอกจำนวนระยะเวลารับชม 5.46 ล้าน",
    "context": "CREATE TABLE table_17641206_6 (duration VARCHAR, viewership VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(episode) FROM table_17641206_6 WHERE written_by = \"David Cantor\"",
    "question_en": "Name the total number of episodes written by david cantor",
    "question_th": "ตั้งชื่อจำนวนตอนทั้งหมดที่เขียนโดย 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_en": "Name the total number of original titles written by john sullivan and keith lindsay",
    "question_th": "ตั้งชื่อจำนวนชื่อต้นฉบับทั้งหมดที่เขียนโดย john sullivan และ 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_en": "Name the original title for 6.05 million viewership",
    "question_th": "ตั้งชื่อชื่อเรื่องเดิมด้วยยอดผู้ชม 6.05 ล้านคน",
    "context": "CREATE TABLE table_17641206_6 (original_title VARCHAR, viewership VARCHAR)"
  },
  {
    "answer": "SELECT third_place FROM table_17632217_2 WHERE total_wins = 4",
    "question_en": "Who took third-place when there were 4 total wins?",
    "question_th": "ใครได้อันดับสามเมื่อชนะทั้งหมด 4 ครั้ง?",
    "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_en": "What is the total number of clubs when the runner-up was Liaoning Fushun?",
    "question_th": "เหลียวหนิง ฟู่ซุ่น รองแชมป์มีสโมสรทั้งหมดกี่สโมสร?",
    "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_en": "Who was placed fourth when third was Beijing Guoan and the winner was Dalian Wanda and wins total was 4?",
    "question_th": "ใครได้อันดับที่สี่เมื่ออันดับสามคือ Beijing Guoan และผู้ชนะคือ Dalian Wanda และชนะทั้งหมดคือ 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_en": "Who was placed third when the ruuner up was Guangzhou Apollo?",
    "question_th": "ใครได้อันดับที่สามเมื่อผู้ทำลายล้างคือ 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_en": "Who was placed third in 2001?",
    "question_th": "ใครได้อันดับสามในปี 2544?",
    "context": "CREATE TABLE table_17632217_2 (third_place VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT census_ranking FROM table_176524_2 WHERE official_name = \"Perth\"",
    "question_en": "What is the census ranking for the Perth parish?",
    "question_th": "การจัดอันดับการสำรวจสำมะโนประชากรสำหรับตำบลเพิร์ทคืออะไร?",
    "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_en": "What is the minimum population of the parish with a 750.51 km area?",
    "question_th": "ตำบลที่มีพื้นที่ 750.51 กม. มีประชากรขั้นต่ำคือเท่าใด",
    "context": "CREATE TABLE table_176524_2 (population INTEGER, area_km_2 VARCHAR)"
  },
  {
    "answer": "SELECT won FROM table_17675675_2 WHERE tries_against = \"89\"",
    "question_en": "with the amount of tries at 89, how many win's were there?",
    "question_th": "ด้วยจำนวนครั้งที่พยายาม 89 ครั้ง มีชัยชนะกี่ครั้ง?",
    "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_en": "For club Swansea Uplands RFC, what is the amount of tries against?",
    "question_th": "สำหรับสโมสร สวอนซี อัพแลนด์ อาร์เอฟซี จะต้องพยายามรับเท่าไหร่?",
    "context": "CREATE TABLE table_17675675_2 (tries_against VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_17675675_2 WHERE won = \"9\"",
    "question_en": "What is the total amount of points when the given won is 9?",
    "question_th": "เมื่อได้รับรางวัลคือ 9 คะแนนรวมเป็นเท่าใด",
    "context": "CREATE TABLE table_17675675_2 (points VARCHAR, won VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(try_bonus) FROM table_17675675_2 WHERE points = \"51\"",
    "question_en": "With the given points of 51, what was the total number of the try bonus?",
    "question_th": "ด้วยคะแนนที่กำหนดเป็น 51 จำนวนโบนัสลองทั้งหมดเป็นเท่าใด",
    "context": "CREATE TABLE table_17675675_2 (try_bonus VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(tries_for) FROM table_17675675_2 WHERE lost = \"4\"",
    "question_en": "With the given loss of 4, what was the number of tries?",
    "question_th": "เมื่อให้แพ้ 4 ครั้ง จำนวนครั้งในการลองเป็นเท่าใด",
    "context": "CREATE TABLE table_17675675_2 (tries_for VARCHAR, lost VARCHAR)"
  },
  {
    "answer": "SELECT tries_against FROM table_17675675_2 WHERE points_for = \"667\"",
    "question_en": "With the given points of 667, what was the number of tries against?",
    "question_th": "จากคะแนนที่กำหนดเป็น 667 ครั้ง จำนวนครั้งในการพยายามต้านคือเท่าใด",
    "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_en": "What is the largest number of episodes for a 1989 season dvd release? ",
    "question_th": " จำนวนตอนที่ใหญ่ที่สุดสำหรับดีวีดีซีซั่น 1989 ที่ออกคือเท่าใด",
    "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_en": "How many  dvd  titled \"series 5\" were released having a release date or a non available date in region 2?",
    "question_th": "มีดีวีดีชื่อ \"series 5\" ที่ออกจำหน่ายโดยมีวันวางจำหน่ายหรือวันที่ไม่มีจำหน่ายในภูมิภาค 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_en": "Who are all the stage winners where the team classification is Caisse D'epargne?",
    "question_th": "ใครคือผู้ชนะในรอบแบ่งกลุ่มโดย 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_en": "How many original air dates have U.S. Views (millions) of 19.49?",
    "question_th": "วันที่ออกอากาศดั้งเดิมมีกี่วันที่มีผู้ชมในสหรัฐฯ (ล้าน) ที่ 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_en": "What is the lowest no. in series?",
    "question_th": "หมายเลขต่ำสุดคืออะไร ในซีรีส์?",
    "context": "CREATE TABLE table_17758010_2 (no_in_series INTEGER)"
  },
  {
    "answer": "SELECT week FROM table_17781886_1 WHERE opponent = \"New York Jets\"",
    "question_en": "The opponent was the New York Jets on what week? ",
    "question_th": " คู่ต่อสู้คือทีม New York Jets ในสัปดาห์ไหน?",
    "context": "CREATE TABLE table_17781886_1 (week VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT game_site FROM table_17781886_1 WHERE date = \"December 12, 1965\"",
    "question_en": "Where was the December 12, 1965 game? ",
    "question_th": " เกมวันที่ 12 ธันวาคม 1965 อยู่ที่ไหน?",
    "context": "CREATE TABLE table_17781886_1 (game_site VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_17779448_1 WHERE opponent = \"Boston Patriots\"",
    "question_en": "How many attended game(s) against the boston patriots?",
    "question_th": "มีผู้เข้าร่วมเกมกับทีมผู้รักชาติบอสตันกี่คน?",
    "context": "CREATE TABLE table_17779448_1 (attendance VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT examples FROM table_17798093_20 WHERE american = \"ɪs\"",
    "question_en": "which examples are pronounced ɪs in american",
    "question_th": "ตัวอย่างใดที่ออกเสียง ɪs ในภาษาอเมริกัน",
    "context": "CREATE TABLE table_17798093_20 (examples VARCHAR, american VARCHAR)"
  },
  {
    "answer": "SELECT examples FROM table_17798093_20 WHERE australian = \"et\"",
    "question_en": "which examples are pronounced et in australian",
    "question_th": "ตัวอย่างใดบ้างที่ออกเสียง et ในภาษาออสเตรเลีย",
    "context": "CREATE TABLE table_17798093_20 (examples VARCHAR, australian VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(australian) FROM table_17798093_20 WHERE american = \"əs\"",
    "question_en": "how many endings have american pronounciation əs",
    "question_th": "มีกี่ตอนจบที่มีการออกเสียงแบบอเมริกัน əs",
    "context": "CREATE TABLE table_17798093_20 (australian VARCHAR, american VARCHAR)"
  },
  {
    "answer": "SELECT ending FROM table_17798093_20 WHERE examples = \"Achilles, appendices, fæces\"",
    "question_en": "what are the endings of examples achilles, appendices, fæces",
    "question_th": "อะไรคือจุดสิ้นสุดของตัวอย่าง achilles, appendices, feces",
    "context": "CREATE TABLE table_17798093_20 (ending VARCHAR, examples VARCHAR)"
  },
  {
    "answer": "SELECT callsign FROM table_17822401_1 WHERE location = \"Cebu\"",
    "question_en": "What is the callsign for the Cebu station?",
    "question_th": "ป้ายเรียกไปสถานีเซบูคืออะไร?",
    "context": "CREATE TABLE table_17822401_1 (callsign VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(branding) FROM table_17822401_1 WHERE power__kw_ = \"5kW\"",
    "question_en": "What is the number of brand where the power is 5kw?",
    "question_th": "กำลังไฟ 5kw ยี่ห้อไหนครับ?",
    "context": "CREATE TABLE table_17822401_1 (branding VARCHAR, power__kw_ VARCHAR)"
  },
  {
    "answer": "SELECT power__kw_ FROM table_17822401_1 WHERE location = \"Baguio\"",
    "question_en": "What is the power of the Baguio station?",
    "question_th": "พลังของสถานีบาเกียวคืออะไร?",
    "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_en": "How many stations are called radyo5 101.9 news fm?",
    "question_th": "มีกี่สถานีที่เรียกว่า 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ø\"",
    "question_en": "What is the church name for the church located in Kyrkjebø?",
    "question_th": "โบสถ์ที่ตั้งอยู่ในคีร์กเยโบมีชื่อว่าอะไร?",
    "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øyanger kyrkje\"",
    "question_en": "What is the sub-parish for the church names Høyanger Kyrkje?",
    "question_th": "เขตย่อยของโบสถ์ชื่อ Høyanger 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_en": "What is the total number of churches built in 1916?",
    "question_th": "คริสตจักรที่สร้างขึ้นในปี 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øyanger kyrkje\"",
    "question_en": "What is the total number of churches named Høyanger Kyrkje?",
    "question_th": "คริสตจักรที่ชื่อ Høyanger 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øyanger\"",
    "question_en": "What is the church name located in Høyanger?",
    "question_th": "คริสตจักรที่ตั้งอยู่ในโฮยังเกอร์ชื่ออะไร?",
    "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_en": "What is the location of the church when the church name is Ortnevik Kyrkje?",
    "question_th": "ที่ตั้งของโบสถ์เมื่อชื่อโบสถ์คือ 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_en": "Name the total number for sub parish sokn for 1865",
    "question_th": "เรียกยอดรวมตำบลย่อยโสก ประจำปี พ.ศ. 2408",
    "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_en": "Name the location of the church for berle kyrkje",
    "question_th": "ตั้งชื่อที่ตั้งของโบสถ์สำหรับ 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_en": "Name the location of the church for bremanger",
    "question_th": "ตั้งชื่อที่ตั้งของโบสถ์สำหรับนักบวช",
    "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_en": "Name the most year built for davik kyrkje",
    "question_th": "ตั้งชื่อปีที่สร้างมากที่สุดสำหรับ 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_en": "Who was the episode writer when the viewers reached 3.03 million in the US?",
    "question_th": "ใครคือผู้เขียนตอนที่มีผู้ชมถึง 3.03 ล้านคนในสหรัฐอเมริกา",
    "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_en": "Who wrote the last episode (episode 15) of season 3?",
    "question_th": "ใครเป็นคนเขียนตอนสุดท้าย (ตอนที่ 15) ของซีซั่น 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_en": "How many episodes did Cliff Bole directed in season 3?",
    "question_th": "Cliff Bole กำกับซีซัน 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_en": "What is the record when the game was at the San Diego Stadium? ",
    "question_th": "สถิติเมื่อเกมอยู่ที่ซานดิเอโก สเตเดี้ยมเป็นอย่างไรบ้าง?",
    "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_en": "How many results are there when the game was at the Atlanta-Fulton county stadium? ",
    "question_th": " เมื่อเกมที่สนามกีฬาแอตแลนตา-ฟุลตันเคาน์ตีมีผลลัพธ์กี่รายการ?",
    "context": "CREATE TABLE table_17848578_1 (result VARCHAR, game_site VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_17848578_1 WHERE game_site = \"Arrowhead Stadium\"",
    "question_en": "What is the date of the game at Arrowhead Stadium? ",
    "question_th": " เกมที่แอร์โรว์เฮด สเตเดี้ยม ตรงกับวันไหน?",
    "context": "CREATE TABLE table_17848578_1 (date VARCHAR, game_site VARCHAR)"
  },
  {
    "answer": "SELECT game_site FROM table_17848578_1 WHERE attendance = 51478",
    "question_en": "Where was the game where attendance was 51478?",
    "question_th": "เกมไหนที่มีผู้เข้าร่วม 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_en": "Name the military expenditures for 2011 for romania",
    "question_th": "ตั้งชื่อรายจ่ายทางการทหารประจำปี 2554 สำหรับโรมาเนีย",
    "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_en": "Name the population 2011 for luxembourg",
    "question_th": "ตั้งชื่อประชากรปี 2011 สำหรับประเทศลักเซมเบิร์ก",
    "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_en": "Name the deployable military 2011 for denmark",
    "question_th": "ตั้งชื่อกองทัพที่ปรับใช้ได้ประจำปี 2011 สำหรับเดนมาร์ก",
    "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ė\"",
    "question_en": "List total loses forh the tauras tauragė team.",
    "question_th": "รายชื่อผู้แพ้ทั้งหมดของทีม tauras tauragė",
    "context": "CREATE TABLE table_18018214_2 (loses VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT MIN(goals_conceded) FROM table_18018214_2 WHERE points = 58",
    "question_en": "List the number of goals scored to equal 58.",
    "question_th": "ระบุจำนวนประตูที่ทำได้เท่ากับ 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_en": "How many total reason for change are listed corresponding to the successor Leonard B. Jordan (r)?",
    "question_th": "มีรายการเหตุผลในการเปลี่ยนแปลงทั้งหมดกี่ข้อที่สอดคล้องกับผู้สืบทอดตำแหน่งลีโอนาร์ด บี. จอร์แดน (ขวา)",
    "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_en": "What state had November 30, 1962 as the date of the successors formal installation?",
    "question_th": "รัฐใดมีวันที่ 30 พฤศจิกายน พ.ศ. 2505 เป็นวันที่ผู้สืบทอดตำแหน่งอย่างเป็นทางการ?",
    "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_en": "How many vacant seats were filled by newcomer Joseph H. Bottum (r)?",
    "question_th": "ผู้มาใหม่ 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_en": "What are the results of those elections for which Marcy Kaptur is the incumbent?",
    "question_th": "ผลการเลือกตั้งที่มี Marcy Kaptur ดำรงตำแหน่งเป็นอย่างไร?",
    "context": "CREATE TABLE table_1805191_36 (results VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT results FROM table_1805191_36 WHERE incumbent = \"Ted Strickland\"",
    "question_en": "What are the results of the elections in which Ted Strickland is seeking re-election?",
    "question_th": "อะไรคือผลลัพธ์ของการเลือกตั้งที่ Ted Strickland ต้องการได้รับการเลือกตั้งใหม่?",
    "context": "CREATE TABLE table_1805191_36 (results VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1805191_36 WHERE incumbent = \"Dennis Kucinich\"",
    "question_en": "Who are all of the candidates in elections where Dennis Kucinich was a candidate?",
    "question_th": "ใครคือผู้สมัครทั้งหมดในการเลือกตั้งที่ Dennis Kucinich เป็นผู้สมัคร?",
    "context": "CREATE TABLE table_1805191_36 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1805191_36 WHERE incumbent = \"Steve Chabot\"",
    "question_en": "Who were all the candidates in elections in which Steve Chabot was a candidate?",
    "question_th": "ใครคือผู้สมัครทั้งหมดในการเลือกตั้งที่ Steve Chabot เป็นผู้สมัคร?",
    "context": "CREATE TABLE table_1805191_36 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT treasurer FROM table_18052353_4 WHERE year = \"2008\"",
    "question_en": "Who was treasurer in 2008?",
    "question_th": "ใครเป็นเหรัญญิกในปี 2551?",
    "context": "CREATE TABLE table_18052353_4 (treasurer VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT state_assembly FROM table_18052353_4 WHERE year = \"2008\"",
    "question_en": "What was the composition of the state assembly in 2008?",
    "question_th": "องค์ประกอบของรัฐสภาในปี 2551 คืออะไร?",
    "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_en": "What's the series number of the episode with production code 329?",
    "question_th": "ซีรีย์ตอนที่มีรหัสการผลิต 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_en": "What's the series number of the episode originally viewed by 4.1 million people and written by Douglas Lieblein?",
    "question_th": "ซีรีส์ตอนนี้มีผู้ชม 4.1 ล้านคนและเขียนโดย 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_en": "What year was the winners vote 55.99%?",
    "question_th": "ผู้ชนะโหวต 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_en": "When the winners votes were 50.54% who were the members of parliment?",
    "question_th": "เมื่อผู้ชนะมีคะแนนเสียง 50.54% ใครเป็นสมาชิกรัฐสภาบ้าง?",
    "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_en": "How many millions of U.S. viewers watched the episode directed by Allison Liddi-Brown? ",
    "question_th": " ผู้ชมในสหรัฐฯ กี่ล้านคนดูตอนที่กำกับโดย 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_en": "What was the title of the episode that had 13.82 million U.S. viewers? ",
    "question_th": " ชื่อเรื่องของตอนที่มีผู้ชม 13.82 ล้านคนในสหรัฐฯ คืออะไร?",
    "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_en": "What was the club that won 10 top division titles?",
    "question_th": "สโมสรใดที่คว้าแชมป์ดิวิชั่นสูงสุด 10 รายการ?",
    "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_en": "When did the club UNAM played the first season in top division?",
    "question_th": "สโมสร UNAM เล่นฤดูกาลแรกในดิวิชั่นสูงสุดเมื่อใด?",
    "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_en": "When was the 'first season of current spell in top division' if the first season in top division is in 1964-65?",
    "question_th": "เมื่อใดคือ 'ฤดูกาลแรกของคาถาปัจจุบันในดิวิชั่นสูงสุด' หากฤดูกาลแรกในดิวิชั่นสูงสุดคือในปี 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_en": "How many top division titles were won during the 'first season of current spell in top division' in 1979-80?",
    "question_th": "มีกี่แชมป์ลีกสูงสุดในช่วง 'ฤดูกาลแรกของคาถาปัจจุบันในดิวิชั่นสูงสุด' ในปี 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_en": "How many 'number of seasons in top division' were played if the 'first season in top division' games is in 1990-91?",
    "question_th": "มีการเล่น 'จำนวนฤดูกาลในดิวิชั่นสูงสุด' กี่รายการหากเกม 'ฤดูกาลแรกในดิวิชั่นสูงสุด' คือในปี 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_en": "How many 'number of season in Liga MX' were played if the 'first season of current spell in top division' is in 1962-63?",
    "question_th": "มีการเล่น 'จำนวนฤดูกาลใน Liga MX' กี่รายการหาก 'ฤดูกาลแรกของคาถาปัจจุบันในดิวิชั่นสูงสุด' คือในปี 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_en": "which chapter was Transmitted on wednesday if the episode of \"363 the hangover part ii\" was transmitted on monday? ",
    "question_th": " บทไหนถ่ายทอดวันพุธ ถ้าตอน \"363 the hangover part ii\" ส่งวันจันทร์?",
    "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_en": "which episode was Transmitted on wednesday if the episode of \"438 magic: the gathering mini masters tournament\" was transmitted on thursday? ",
    "question_th": " ตอนไหนที่ออกอากาศวันพุธ ถ้าตอน \"438 magic: the Gathering Mini Masters Tournament\" ออกอากาศวันพฤหัสบดี?",
    "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_en": "which episode was Transmitted on friday if the episode of \"414 insanely twisted shadow planet\" was transmitted on tuesday? ",
    "question_th": " ตอนไหนถ่ายทอดวันศุกร์ ถ้าตอน \"414 ดาวเคราะห์เงาบิดเบี้ยว\" ถ่ายทอดวันอังคาร?",
    "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_en": "which episode was Transmitted on friday if the episode of \"515 the adventures of tintin\" was transmitted on monday? ",
    "question_th": " ตอนไหนออกอากาศวันศุกร์ ถ้าตอน \"515 การผจญภัยของตินติน\" ถ่ายทอดวันจันทร์?",
    "context": "CREATE TABLE table_18173916_8 (friday VARCHAR, monday VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(wednesday) FROM table_18173916_8 WHERE tuesday = \"319 Sucker Punch\"",
    "question_en": "which episode was Transmitted on wednesday if the episode of \"319 sucker punch\" was transmitted on tuesday? ",
    "question_th": "ตอนไหนถ่ายทอดวันพุธ ถ้าตอน \"319ห่วยพันช์\" ส่งวันอังคาร?",
    "context": "CREATE TABLE table_18173916_8 (wednesday VARCHAR, tuesday VARCHAR)"
  },
  {
    "answer": "SELECT wednesday FROM table_18173916_8 WHERE friday = \"307 VS.\"",
    "question_en": "which episode was Transmitted on wednesday if the episode of \"307 vs.\" was transmitted on friday?  ",
    "question_th": " ตอนไหนออกอากาศวันพุธ ถ้าเป็นตอน \"307 ปะทะ\" ถูกส่งเมื่อวันศุกร์เหรอ?",
    "context": "CREATE TABLE table_18173916_8 (wednesday VARCHAR, friday VARCHAR)"
  },
  {
    "answer": "SELECT scoring_average FROM table_18198579_6 WHERE best_finish = \"T35\"",
    "question_en": "Name the scoring average for best finsih being t35",
    "question_th": "ตั้งชื่อค่าเฉลี่ยการให้คะแนนสำหรับฟินซิห์ที่ดีที่สุดคือ 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_en": "Name the number of top 10s for scoring rank of 9",
    "question_th": "ตั้งชื่อหมายเลข 10 อันดับแรกสำหรับคะแนนอันดับ 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_en": "How many are the total winners if 7 won the Men's Open?",
    "question_th": "ถ้า 7 ชนะ 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_en": "How many won the Men's Open if the players are from Sweden?",
    "question_th": "ถ้าผู้เล่นมาจากสวีเดนจะได้ Men's Open กี่คน?",
    "context": "CREATE TABLE table_182298_5 (mens_open VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT total FROM table_182298_5 WHERE country = \"South Korea\"",
    "question_en": "How many are the total winners from South Korea?",
    "question_th": "ผู้ชนะทั้งหมดมีกี่คนจากเกาหลีใต้?",
    "context": "CREATE TABLE table_182298_5 (total VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT MIN(p) FROM table_18254488_2 WHERE player = \"Shaun Maloney\"",
    "question_en": "When shaun maloney is the player what is the lowest p?",
    "question_th": "เมื่อ shaun maloney เป็นผู้เล่น p ต่ำสุดคือเท่าไร?",
    "context": "CREATE TABLE table_18254488_2 (p INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(uefa_champions_league) FROM table_18254488_2",
    "question_en": "What is the highest amount of uefa champion leagues?",
    "question_th": "ยูฟ่าแชมเปียนส์ลีค มีจำนวนมากที่สุดคือเท่าไร?",
    "context": "CREATE TABLE table_18254488_2 (uefa_champions_league INTEGER)"
  },
  {
    "answer": "SELECT MIN(league_cup) FROM table_18254488_2 WHERE player = \"Koki Mizuno\"",
    "question_en": "When koki mizuno is the player what is the lowest league cup?",
    "question_th": "เมื่อโคกิ มิซูโนะเป็นนักเตะ ลีกคัพต่ำสุดคือถ้วยไหน?",
    "context": "CREATE TABLE table_18254488_2 (league_cup INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(position) FROM table_18254488_2 WHERE player = \"Koki Mizuno\"",
    "question_en": "When koki mizuno is the player how man positions are there?",
    "question_th": "เมื่อโคกิ มิซูโนะเป็นนักเตะ ตำแหน่งแมนมีอะไรบ้าง?",
    "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_en": "How many episodes by different writers were seen by 3.24 million people in the US?",
    "question_th": "มีนักเขียนจำนวนกี่ตอนที่มีผู้ชม 3.24 ล้านคนในสหรัฐอเมริกา",
    "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_en": "What's the season number of the episode viewed by 3.19 million people in the US?",
    "question_th": "หมายเลขซีซันของตอนที่มีผู้ชม 3.19 ล้านคนในสหรัฐอเมริกาคือเท่าใด",
    "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_en": "Who's the writer of the episode seen by 3.25 million people in the US?",
    "question_th": "ใครคือผู้เขียนตอนนี้ที่มีผู้ชม 3.25 ล้านคนในสหรัฐอเมริกา",
    "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_en": "Who directed the episode seen by 3.93 million people in the US?",
    "question_th": "ใครเป็นผู้กำกับตอนนี้ที่มีผู้ชม 3.93 ล้านคนในสหรัฐอเมริกา?",
    "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_en": "How much do the tickets cost for August 7, 1987?",
    "question_th": "ตั๋วสำหรับวันที่ 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_en": "How many tickets are sold for the Carver-Hawkeye Arena? ",
    "question_th": " 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_en": "When 1462/63 was the elected what was the no.?",
    "question_th": "เมื่อ พ.ศ. 1462/63 ได้รับเลือกเป็นลำดับที่.?",
    "context": "CREATE TABLE table_1827690_4 (no VARCHAR, elected VARCHAR)"
  },
  {
    "answer": "SELECT assembled FROM table_1827690_4 WHERE elected = \"1472\"",
    "question_en": "When 1472 was the elected when was the assembled?",
    "question_th": "เมื่อปี พ.ศ. 1472 ได้รับการเลือกตั้งเมื่อไร?",
    "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_en": "How many different combinations of scores by individual judges were given to the contestant competing against Mukul Dev?",
    "question_th": "ผู้เข้าแข่งขันที่แข่งขันกับ 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_en": "What was Kashmira Shah's position on August 14?",
    "question_th": "แคชเมียร์ ชาห์ มีจุดยืนอย่างไรในวันที่ 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_en": "What was the total score / week of the contestant who placed in the bottom 2 on august 14?",
    "question_th": "คะแนนรวม/สัปดาห์ของผู้เข้าแข่งขันที่เข้ารอบ 2 อันดับสุดท้ายในวันที่ 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_en": "What were the scores by the individual judges for Karanvir Bohra on August 13?",
    "question_th": "กรรมการของ Karanvir Bohra เมื่อวันที่ 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_en": "Name the total number of main contestants for safe position for tina parekh",
    "question_th": "บอกชื่อผู้เข้าแข่งขันหลักทั้งหมดเพื่อตำแหน่งที่ปลอดภัยของทีน่า ปาเรห์",
    "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_en": "Name the status for karanvir bohra and date performed being july 30",
    "question_th": "ตั้งชื่อสถานะของ karanvir bohra และวันที่ดำเนินการคือ 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_en": "What is the province where the age of the contestant is 27?",
    "question_th": "จังหวัดไหนที่ผู้เข้าประกวดอายุ 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_en": "When joan tewkesbury is the director what is the number in seasons?",
    "question_th": "เมื่อ Joan Tewkesbury เป็นผู้กำกับ ซีซั่นละเท่าไหร่?",
    "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_en": "How many series did John Banas direct?",
    "question_th": "John Banas กำกับซีรีส์กี่เรื่อง?",
    "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_en": "What is the original air date in series 360?",
    "question_th": "ซีรีส์ 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_en": "Who is the coach of the team in Leicester? ",
    "question_th": " ใครคือโค้ชของทีมเลสเตอร์?",
    "context": "CREATE TABLE table_18461635_1 (coach VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_18461635_1 WHERE county = \"Derbyshire\"",
    "question_en": "What is the name of the team from Derbyshire county? ",
    "question_th": " ทีมจากเดอร์บี้ไชร์เคาน์ตี้ชื่ออะไร?",
    "context": "CREATE TABLE table_18461635_1 (team VARCHAR, county VARCHAR)"
  },
  {
    "answer": "SELECT captain FROM table_18461635_1 WHERE team = \"Gloucestershire Gladiators\"",
    "question_en": "Who is the captain of the Gloucestershire Gladiators? ",
    "question_th": " ใครคือกัปตันของ Gloucestershire Gladiators?",
    "context": "CREATE TABLE table_18461635_1 (captain VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT captain FROM table_18461635_1 WHERE location = \"Southampton\"",
    "question_en": "Who is the captain of the team in Southampton? ",
    "question_th": " ใครคือกัปตันทีมเซาแธมป์ตัน?",
    "context": "CREATE TABLE table_18461635_1 (captain VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_18461635_1 WHERE county = \"Sussex\"",
    "question_en": "Where is the team in Sussex county located? ",
    "question_th": " ทีมงานในเขต Sussex ตั้งอยู่ที่ไหน?",
    "context": "CREATE TABLE table_18461635_1 (location VARCHAR, county VARCHAR)"
  },
  {
    "answer": "SELECT captain FROM table_18461635_1 WHERE county = \"Essex\"",
    "question_en": "Who is the captain of the team in Essex county? ",
    "question_th": " ใครคือกัปตันทีมในเขตเอสเซ็กซ์?",
    "context": "CREATE TABLE table_18461635_1 (captain VARCHAR, county VARCHAR)"
  },
  {
    "answer": "SELECT tobago FROM table_1850282_5 WHERE species = \"Helicops angulatus\"",
    "question_en": "there are in tobago species name helicops angulatus",
    "question_th": "มีในสายพันธุ์โตเบโกชื่อ 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_en": "are in tobago species liophis cobellus cobellus?",
    "question_th": "อยู่ในสายพันธุ์โตเบโก liophis cobellus cobellus หรือไม่?",
    "context": "CREATE TABLE table_1850282_5 (tobago VARCHAR, species VARCHAR)"
  },
  {
    "answer": "SELECT MAX(ending_with) FROM table_1852650_1",
    "question_en": "Name the most ending with",
    "question_th": "ชื่อที่ลงท้ายด้วยมากที่สุด",
    "context": "CREATE TABLE table_1852650_1 (ending_with INTEGER)"
  },
  {
    "answer": "SELECT MAX(ending_with) FROM table_1852650_1 WHERE sung_by = \"Peyalvar\"",
    "question_en": "Name the most ending with for peyalvar",
    "question_th": "ชื่อที่ลงท้ายด้วยมากที่สุดสำหรับ 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_en": "Name the starting from  thiruvezhukkurrirukkai",
    "question_th": "ตั้งชื่อขึ้นต้นจาก ธีรุเวชุกเคอร์ริรักไก",
    "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_en": "Name the starting from amalanadhi piran",
    "question_th": "ตั้งชื่อขึ้นต้นจากอมาลานาธี ปิรัน",
    "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_en": "Why did the change happened in Massachusetts (2)?",
    "question_th": "เหตุใดการเปลี่ยนแปลงจึงเกิดขึ้นในแมสซาชูเซตส์ (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_en": "How many different reasons are there for the change in Connecticut (3)?",
    "question_th": "มีเหตุผลที่แตกต่างกันกี่ประการสำหรับการเปลี่ยนแปลงในคอนเนตทิคัต (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_en": "When the ability to compromise is 13, what is background?",
    "question_th": "เมื่อความสามารถในการประนีประนอมเป็น 13 พื้นหลังคืออะไร?",
    "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_en": "When the seq is 41, what is the ability to compromise?",
    "question_th": "เมื่อ seq เป็น 41 ความสามารถในการประนีประนอมคืออะไร?",
    "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_en": "When the ability is 32, what is the leadership ability?",
    "question_th": "เมื่อความสามารถอายุ 32 ความสามารถในการเป็นผู้นำคืออะไร?",
    "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_en": "When 25 are willing to take risks, what is the experts view?",
    "question_th": "เมื่อ 25 คนยอมเสี่ยง ผู้เชี่ยวชาญมีมุมมองอย่างไร?",
    "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_en": "Name who directed the episode that was viewed by 4.22 million",
    "question_th": "ชื่อผู้กำกับตอนที่มียอดดู 4.22 ล้าน",
    "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_en": "Name the title for production code 2t6908",
    "question_th": "ตั้งชื่อชื่อเรื่องสำหรับรหัสการผลิต 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_en": "Name the total number for number in series that got 3.62 viewers",
    "question_th": "ทายผลรวมเลขในซีรีส์ที่มีคนดู 3.62 คน",
    "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_en": "Name the air date that chris long directed",
    "question_th": "ตั้งชื่อวันออกอากาศที่คริสลองกำกับ",
    "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_en": "Name the number of production code for 5.08",
    "question_th": "ตั้งชื่อหมายเลขรหัสการผลิตสำหรับ 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_en": "When 17.07 is the loa (metres) what is the type of yacht?",
    "question_th": "เมื่อเวลา 17.07 น. เป็นเรือยอทช์ประเภทใด",
    "context": "CREATE TABLE table_1858574_2 (yacht VARCHAR, loa__metres_ VARCHAR)"
  },
  {
    "answer": "SELECT sail_number FROM table_1858574_2 WHERE position = 3",
    "question_en": "When 3 is the position what is the sail number?",
    "question_th": "เมื่อ 3 อยู่ตำแหน่งอะไร ใบเรือคืออะไร?",
    "context": "CREATE TABLE table_1858574_2 (sail_number VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT sail_number FROM table_1858574_2 WHERE yacht = \"Aspect Computing\"",
    "question_en": "When aspect computing is the yacht what is the sail number?",
    "question_th": "เมื่อการคำนวณแง่มุมเป็นเรือยอชท์หมายเลขใบเรือคืออะไร?",
    "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_en": "When 6606 is the sail number what is the type of yacht?",
    "question_th": "เมื่อ 6606 เป็นหมายเลขใบเรือของเรือยอร์ชประเภทใด?",
    "context": "CREATE TABLE table_1858574_2 (yacht VARCHAR, sail_number VARCHAR)"
  },
  {
    "answer": "SELECT state_country FROM table_1858574_2 WHERE position = 5",
    "question_en": "When 5 is the position what is the state or country?",
    "question_th": "เมื่อ 5 ดำรงตำแหน่งอะไรเป็นรัฐหรือประเทศ?",
    "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_en": "Name the least ansi code for 609 population 2010",
    "question_th": "ตั้งชื่อรหัส ansi ที่น้อยที่สุดสำหรับประชากร 609 คนในปี 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_en": "Name the ansi code fore ashtabula",
    "question_th": "ตั้งชื่อรหัส ansi หน้า 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_en": "Name the land for ada",
    "question_th": "ตั้งชื่อที่ดินให้อาดา",
    "context": "CREATE TABLE table_18600760_1 (land___sqmi__ VARCHAR, township VARCHAR)"
  },
  {
    "answer": "SELECT MAX(position) FROM table_18597302_1 WHERE team = \"Atl. Colegiales\"",
    "question_en": "What was the position of the Atl. Colegiales team?",
    "question_th": "ตำแหน่งของ Atl คืออะไร ทีมโคลจิเลสเหรอ?",
    "context": "CREATE TABLE table_18597302_1 (position INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(position) FROM table_18597302_1 WHERE points = 9",
    "question_en": "What was the position where the team scored 9 points?",
    "question_th": "ตำแหน่งที่ทีมทำคะแนนได้ 9 แต้ม อยู่ที่ตำแหน่งใด?",
    "context": "CREATE TABLE table_18597302_1 (position VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(eliminated_by) FROM table_18598175_2 WHERE time = \"32:32\"",
    "question_en": "How many player eliminated an opponent within the time frame of 32:32?",
    "question_th": "มีผู้เล่นกี่คนที่กำจัดคู่ต่อสู้ภายในกรอบเวลา 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_en": "What was the styled used to defeat the opponent within the time frame of 32:32?",
    "question_th": "รูปแบบใดที่ใช้ในการเอาชนะคู่ต่อสู้ภายในกรอบเวลา 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_en": "Who won the match when the winner used the Pedigree attack?",
    "question_th": "ใครเป็นผู้ชนะการแข่งขันเมื่อผู้ชนะใช้การโจมตีแบบ Pedigree?",
    "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_en": "What was the elimination number of the fighter who fought within 27:27?",
    "question_th": "นักมวยที่ชกภายในเวลา 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_en": "What was the elimination number of the fighter who fought within 26:15?",
    "question_th": "นักมวยที่ชกภายในเวลา 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_en": "what is the longitude in 35.992 sqmi",
    "question_th": "ลองจิจูดใน 35.992 ตร.ไมล์เป็นเท่าใด",
    "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_en": "how many townships where pop (2010) and ater is 0.818",
    "question_th": "จำนวนเมืองที่ pop (2010) และ ater คือ 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_en": "what is the name of the townships with 32.222 land",
    "question_th": "เมืองที่มีที่ดิน 32.222 ชื่ออะไร",
    "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_en": "how many lands with longitude of -100.895783 are?",
    "question_th": "มีกี่ดินแดนที่มีลองจิจูด -100.895783?",
    "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_en": "how many geo id with 48.578664 are",
    "question_th": "มี geo id ที่มี 48.578664 กี่อัน",
    "context": "CREATE TABLE table_18600760_19 (geo_id VARCHAR, latitude VARCHAR)"
  },
  {
    "answer": "SELECT latitude FROM table_18600760_19 WHERE water__sqmi_ = \"0.288\"",
    "question_en": "what is the latitude in the township where wate is 0.288",
    "question_th": "ละติจูดในเมืองที่วอตอยู่ที่ 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_en": "how is called the township where the latitude is 47.377790",
    "question_th": "เรียกว่าเมืองที่ละติจูด 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_en": "where the land is 35.990 what is the number of the geo id",
    "question_th": "โดยที่ที่ดินอยู่ที่ 35.990 หมายเลข 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_en": "Name the land where geo id is 3807717980",
    "question_th": "ตั้งชื่อที่ดินที่มีรหัสทางภูมิศาสตร์คือ 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_en": "Name the latitude for deer lake",
    "question_th": "ตั้งชื่อละติจูดสำหรับทะเลสาบกวาง",
    "context": "CREATE TABLE table_18600760_4 (latitude VARCHAR, township VARCHAR)"
  },
  {
    "answer": "SELECT land___sqmi__ FROM table_18600760_7 WHERE water__sqmi_ = \"1.701\"",
    "question_en": "If the water square milage is 1.701, what is the land square milage?",
    "question_th": "หากระยะทางตารางน้ำคือ 1.701 แล้วระยะทางตารางเมตรของที่ดินจะเป็นเท่าใด",
    "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_en": "In Cavalier County and the geo id is larger than 3801931620.0, what is the population?",
    "question_th": "ใน Cavalier County และรหัสทางภูมิศาสตร์มีขนาดใหญ่กว่า 3801931620.0 ประชากรคือเท่าใด",
    "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_en": "If the population is 1858, what is the maximum ansi code?",
    "question_th": "หากประชากรคือปี 1858 รหัส ansi สูงสุดคือเท่าใด",
    "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_en": "If the longitude is -97.473110, what is the minimum geo id?",
    "question_th": "หากลองจิจูดคือ -97.473110 รหัสทางภูมิศาสตร์ขั้นต่ำคือเท่าใด",
    "context": "CREATE TABLE table_18600760_7 (geo_id INTEGER, longitude VARCHAR)"
  },
  {
    "answer": "SELECT township FROM table_18600760_7 WHERE ansi_code = 1036632",
    "question_en": "If the ansi code is 1036632, what is the name of the township?",
    "question_th": "ถ้ารหัส ansi คือ 1036632 ตำบลชื่ออะไร?",
    "context": "CREATE TABLE table_18600760_7 (township VARCHAR, ansi_code VARCHAR)"
  },
  {
    "answer": "SELECT longitude FROM table_18600760_7 WHERE land___sqmi__ = \"10.950\"",
    "question_en": "If the land square milage is 10.950, what is the longitude?",
    "question_th": "หากระยะทางเป็นตารางไมล์ของที่ดินคือ 10.950 ลองจิจูดคือเท่าใด",
    "context": "CREATE TABLE table_18600760_7 (longitude VARCHAR, land___sqmi__ VARCHAR)"
  },
  {
    "answer": "SELECT township FROM table_18600760_9 WHERE longitude = \"-99.287270\"",
    "question_en": "What township is located at longitude -99.287270?",
    "question_th": "เมืองใดตั้งอยู่ที่ลองจิจูด -99.287270",
    "context": "CREATE TABLE table_18600760_9 (township VARCHAR, longitude VARCHAR)"
  },
  {
    "answer": "SELECT longitude FROM table_18600760_9 WHERE ansi_code = 1759682",
    "question_en": "What is the longitude of the township at ANSI code 1759682?",
    "question_th": "ลองจิจูดของเมืองตามรหัส ANSI 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_en": "How many square miles of water does the township at  latitude 48.064751 have?",
    "question_th": "เมืองที่ละติจูด 48.064751 มีน้ำกี่ตารางไมล์",
    "context": "CREATE TABLE table_18600760_9 (water__sqmi_ VARCHAR, latitude VARCHAR)"
  },
  {
    "answer": "SELECT geo_id FROM table_18600760_9 WHERE ansi_code = 1759243",
    "question_en": "What is the geo code of the township with ANSI code 1759243?",
    "question_th": "รหัสภูมิศาสตร์ของเมืองที่มีรหัส ANSI 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_en": "When santiago del estero is the hometown who is the contestant?",
    "question_th": "เมื่อซานติอาโก้ เดล เอสเตโรเป็นบ้านเกิด ใครคือผู้เข้าแข่งขัน?",
    "context": "CREATE TABLE table_18626383_2 (contestant VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_18626383_2 WHERE country = \"Belarus\"",
    "question_en": "When belarus is the country what is the hometown?",
    "question_th": "เมื่อเบลารุสเป็นประเทศบ้านเกิดคืออะไร?",
    "context": "CREATE TABLE table_18626383_2 (hometown VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT height__cm_ FROM table_18626383_2 WHERE country = \"Bahamas\"",
    "question_en": "When bahamas is the country what is the height in centimeters?",
    "question_th": "เมื่อบาฮามาสเป็นประเทศที่มีความสูงเป็นเซนติเมตร?",
    "context": "CREATE TABLE table_18626383_2 (height__cm_ VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(hometown) FROM table_18626383_2 WHERE country = \"Finland\"",
    "question_en": "When finland is the country how many hometowns are there?",
    "question_th": "เมื่อฟินแลนด์เป็นประเทศมีบ้านเกิดกี่แห่ง?",
    "context": "CREATE TABLE table_18626383_2 (hometown VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT contestant FROM table_18626383_2 WHERE hometown = \"Johannesburg\"",
    "question_en": "When johannesburg is the hometown who is the contestant?",
    "question_th": "เมื่อโจฮันเนสเบิร์กเป็นบ้านเกิด ใครคือผู้เข้าแข่งขัน?",
    "context": "CREATE TABLE table_18626383_2 (contestant VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(height__cm_) FROM table_18626383_2 WHERE contestant = \"Valora Roucek\"",
    "question_en": "When valora roucek is the contestant how many heights in centimeters are there?",
    "question_th": "เมื่อ วาโลรา รูเช็ค เป็นผู้เข้าแข่งขัน มีความสูงกี่เซนติเมตร?",
    "context": "CREATE TABLE table_18626383_2 (height__cm_ VARCHAR, contestant VARCHAR)"
  },
  {
    "answer": "SELECT round_1 FROM table_18646111_13 WHERE event = \"Team\"",
    "question_en": "Name the round 1 for team event",
    "question_th": "ตั้งชื่อรอบที่ 1 สำหรับงานประเภททีม",
    "context": "CREATE TABLE table_18646111_13 (round_1 VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(semifinals) FROM table_18646111_13 WHERE class = \"TT2\"",
    "question_en": "Name the number of semifinals for tt2",
    "question_th": "ตั้งชื่อหมายเลขรอบรองชนะเลิศสำหรับ 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_en": "Name the 1/8 finals for round 1 n/a",
    "question_th": "ตั้งชื่อ 1/8 รอบชิงชนะเลิศ รอบ 1 ไม่มี",
    "context": "CREATE TABLE table_18646111_13 (round_1 VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(round_3) FROM table_18646111_13 WHERE class = \"TT1\"",
    "question_en": "Name the total number of round 3 for class tt1",
    "question_th": "ตั้งชื่อจำนวนรอบที่ 3 ทั้งหมดสำหรับคลาส tt1",
    "context": "CREATE TABLE table_18646111_13 (round_3 VARCHAR, class VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_18646111_13 WHERE athlete = \"Hans Ruep\"",
    "question_en": "Name the event for hans ruep",
    "question_th": "ตั้งชื่องานให้ฮันรือบ",
    "context": "CREATE TABLE table_18646111_13 (event VARCHAR, athlete VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(ka_band) FROM table_186468_1 WHERE v_band = \"4\"",
    "question_en": "When 4 is the v-band what is the overall amount of ka-bands?",
    "question_th": "เมื่อ 4 เป็น v-band แล้ว ka-band ทั้งหมดเป็นเท่าใด?",
    "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_en": "When 8.3 is the q-band what is the property?",
    "question_th": "เมื่อ 8.3 เป็น q-band คุณสมบัติคืออะไร?",
    "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_en": "When 5.5 is the l-band what is the v-band?",
    "question_th": "เมื่อ 5.5 เป็น l-band แล้ว 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_en": "When 2 is the k-band what is the v-band?",
    "question_th": "เมื่อ 2 เป็น k-band แล้ว 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_en": "When 2 is the ka-band how many properties are there?",
    "question_th": "เมื่อ 2 เป็น ka-band จะมีสมบัติกี่อย่าง?",
    "context": "CREATE TABLE table_186468_1 (property VARCHAR, ka_band VARCHAR)"
  },
  {
    "answer": "SELECT secondary_sponsor FROM table_187239_1 WHERE main_sponsor = \"Olympikus\"",
    "question_en": "When olympikus is the main sponsor who is the secondary sponsor?",
    "question_th": "เมื่อโอลิมปิกเป็นสปอนเซอร์หลัก ใครเป็นสปอนเซอร์รอง?",
    "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_en": "When ale is the main sponsor who is the secondary sponsor?",
    "question_th": "เมื่อเอลเป็นสปอนเซอร์หลักใครเป็นสปอนเซอร์รอง?",
    "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_en": "When tim brasil brokers are the minor sponsors who is the kit manufacturer?",
    "question_th": "เมื่อโบรกเกอร์ tim brasil เป็นผู้สนับสนุนรายย่อยใครเป็นผู้ผลิตชุดอุปกรณ์?",
    "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_en": "When batavo is the main sponsor and olympikus is the kit manufacturer who are the minor sponsors?",
    "question_th": "เมื่อบาตาโว่เป็นผู้สนับสนุนหลัก และโอลิมปิคัสเป็นผู้ผลิตชุดแข่งซึ่งเป็นผู้สนับสนุนรายย่อย?",
    "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_en": "When 2011 is the period and olympikus is the kit manufacturer how many minor sponsors are there?",
    "question_th": "เมื่อถึงปี 2554 และโอลิมปิกเป็นผู้ผลิตชุดแข่ง มีผู้สนับสนุนรองกี่ราย?",
    "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_en": "What season episode is written by neil thompson?",
    "question_th": "นีล ทอมป์สันเขียนตอนในฤดูกาลใด",
    "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_en": "What was the original air for the 06-03-521 production code?",
    "question_th": "แอร์เดิมรหัสผลิต 06-03-521 คืออะไร?",
    "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_en": "What episode number in the series aired on February 8, 2004?",
    "question_th": "ซีรีส์นี้ออกอากาศเมื่อวันที่ 8 กุมภาพันธ์ พ.ศ. 2547 ตอนที่ใด",
    "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_en": "In season 5 what episode number was production 06-03-519?",
    "question_th": "ซีซั่น 5 ผลิตตอนไหนครับ 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_en": "What was the minimum score for r2?",
    "question_th": "คะแนนขั้นต่ำสำหรับ r2 คือเท่าไร?",
    "context": "CREATE TABLE table_18812411_3 (r2 INTEGER)"
  },
  {
    "answer": "SELECT country FROM table_18812411_3 WHERE r3 = 72 AND player = \"Larry Mize\"",
    "question_en": "What country had a r3 at 72, by Larry Mize?",
    "question_th": "ประเทศใดมี r3 ที่ 72 โดย 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_en": "How many times did Fiji win r1?",
    "question_th": "ฟิจิชนะ 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_en": "How many figures are given for the Socialists in the case where the Social Democrats received 42.2%?",
    "question_th": "ในกรณีที่พรรคโซเชียลเดโมแครตได้รับ 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_en": "What date did the Green-Communists receive 5.7%?",
    "question_th": "กรีน-คอมมิวนิสต์ได้รับ 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_en": "If the PCT is 0.514, what was the minimum OTL?",
    "question_th": "หาก PCT เท่ากับ 0.514 OTL ขั้นต่ำคือเท่าใด",
    "context": "CREATE TABLE table_1888165_1 (Otl INTEGER, PCt VARCHAR)"
  },
  {
    "answer": "SELECT MIN(Otl) FROM table_1888165_1",
    "question_en": "What was the minimum OTL amount?",
    "question_th": "จำนวนเงิน OTL ขั้นต่ำคือเท่าใด?",
    "context": "CREATE TABLE table_1888165_1 (Otl INTEGER)"
  },
  {
    "answer": "SELECT MIN(events) FROM table_18888159_1 WHERE country = \"Japan\"",
    "question_en": "Name the least events for japan",
    "question_th": "ตั้งชื่อเหตุการณ์ที่น้อยที่สุดในญี่ปุ่น",
    "context": "CREATE TABLE table_18888159_1 (events INTEGER, country VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_18888159_1 WHERE events = 22",
    "question_en": "Name the country for 22 events",
    "question_th": "ตั้งชื่อประเทศ 22 เหตุการณ์",
    "context": "CREATE TABLE table_18888159_1 (country VARCHAR, events VARCHAR)"
  },
  {
    "answer": "SELECT _number FROM table_18888159_1 WHERE country = \"Fiji\"",
    "question_en": "Name the number for fiji",
    "question_th": "ตั้งชื่อหมายเลขให้ฟิจิ",
    "context": "CREATE TABLE table_18888159_1 (_number VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(points) FROM table_18888159_1 WHERE _number = 6",
    "question_en": "Name the total number of points for number 6",
    "question_th": "ตั้งชื่อจำนวนคะแนนรวมสำหรับหมายเลข 6",
    "context": "CREATE TABLE table_18888159_1 (points VARCHAR, _number VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_18893428_1 WHERE driver = \"Pierre de Caters\"",
    "question_en": "What is the location that had a driver named Pierre de Caters?",
    "question_th": "สถานที่ใดที่มีคนขับชื่อ ปิแอร์ เดอ คาเทอร์ส?",
    "context": "CREATE TABLE table_18893428_1 (location VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_18893428_1 WHERE driver = \"George Heath\"",
    "question_en": "Who is the constructor for the car driven by George Heath?",
    "question_th": "ใครคือผู้สร้างรถยนต์ที่ขับเคลื่อนโดย 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_en": "What is the total number of drivers who have cars constructed by Mercedes-Benz?",
    "question_th": "จำนวนผู้ขับขี่รถยนต์ที่เมอร์เซเดส-เบนซ์สร้างทั้งหมดเป็นเท่าใด",
    "context": "CREATE TABLE table_18893428_1 (driver VARCHAR, constructor VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_18893428_1 WHERE constructor = \"Lorraine-Dietrich\"",
    "question_en": "What is the location of the car that has a constructor of Lorraine-Dietrich?",
    "question_th": "รถคันไหนมีคอนสตรัคเตอร์ของลอร์เรน-ดีทริชอยู่ที่ใด?",
    "context": "CREATE TABLE table_18893428_1 (location VARCHAR, constructor VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(report) FROM table_18893428_1 WHERE driver = \"Charles Jarrott\"",
    "question_en": "How many times did Charles Jarrott report?",
    "question_th": "Charles Jarrott รายงานกี่ครั้ง?",
    "context": "CREATE TABLE table_18893428_1 (report VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_18893428_1 WHERE constructor = \"Mercedes-Benz\"",
    "question_en": "Who is the driver of the entry constructed by Mercedes-Benz?",
    "question_th": "ใครคือผู้ขับเคลื่อนรายการที่สร้างโดย 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_en": "What is the used (kb) when the graphics mode is 4?",
    "question_th": "อะไรคือสิ่งที่ใช้ (kb) เมื่อโหมดกราฟิกเป็น 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_en": "If graphics mode is less than 1.0, what are the char cells?",
    "question_th": "หากโหมดกราฟิกน้อยกว่า 1.0 เซลล์ถ่านคืออะไร",
    "context": "CREATE TABLE table_18950885_3 (char_cells VARCHAR, graphics_mode INTEGER)"
  },
  {
    "answer": "SELECT MIN(converted) FROM table_1895522_2 WHERE number = \"19\"",
    "question_en": "What is the smallest converted value at number 19?",
    "question_th": "ค่าที่แปลงน้อยที่สุดที่หมายเลข 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_en": "Name the original title for the last metro",
    "question_th": "ตั้งชื่อชื่อเดิมสำหรับรถไฟใต้ดินสายสุดท้าย",
    "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é Téchiné Category:Articles with hCards\"",
    "question_en": "Name the film title for andré téchiné category:articles with hcards",
    "question_th": "ตั้งชื่อชื่อภาพยนตร์สำหรับหมวดหมู่ André téchiné: บทความที่มี 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_en": "Name the director for coup de torchon",
    "question_th": "เสนอชื่อผู้อำนวยการรัฐประหารเดอคบชง",
    "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_en": "Name the film titled for marcel camus category:articles with hcards",
    "question_th": "ตั้งชื่อภาพยนตร์โดยใช้ชื่อหมวดหมู่ของ Marcel Camus: บทความที่มี 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_en": "When cindy miranda is the name what is the home or representative town or province?",
    "question_th": "เมื่อซินดี้ มิรันดา ชื่อบ้าน หรือเมืองตัวแทน หรือจังหวัดอะไร?",
    "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_en": "When nel rapiz is the name what is the status?",
    "question_th": "เมื่อ เนล ราพิซ ชื่ออะไร สถานะอะไร?",
    "context": "CREATE TABLE table_19061741_1 (status VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_19061741_1 WHERE duration = \"Day 8-36\"",
    "question_en": "When day 8-36 is the duration what is the season?",
    "question_th": "วันที่ 8-36 คือช่วงใดของฤดูกาล?",
    "context": "CREATE TABLE table_19061741_1 (season VARCHAR, duration VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_19061741_1 WHERE name = \"Luz McClinton\"",
    "question_en": "When luz mcclinton is the name what is the season?",
    "question_th": "เมื่อลูซ แมคคลินตันชื่อฤดูกาลอะไร?",
    "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_en": "When yen galagnara is the name what is the highest total days in the pbb house?",
    "question_th": "เมื่อเยนกาลาญาราขึ้นชื่อ จำนวนวันรวมสูงสุดในบ้านพีบีบีคือวันใด?",
    "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_en": "How many match numbers have team europe listed as osku palermaa?",
    "question_th": "มีหมายเลขการแข่งขันกี่หมายเลขที่ทีมยุโรประบุเป็น 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_en": "When osku palermaa is on the europe team how many match numbers are there?",
    "question_th": "เมื่อ ออสคู ปาแลร์มา อยู่ทีมยุโรป มีหมายเลขการแข่งขันทั้งหมดกี่หมายเลข?",
    "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_en": "When paul moor is on the europe team who is on the usa team?",
    "question_th": "เมื่อพอล มัวร์อยู่ทีมยุโรป ใครอยู่ทีมสหรัฐอเมริกาบ้าง?",
    "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_en": "Name the mountains classification for team columbia",
    "question_th": "ตั้งชื่อการจำแนกประเภทภูเขาสำหรับทีมโคลัมเบีย",
    "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_en": "Name the number of stage winners for team columbia",
    "question_th": "ตั้งชื่อจำนวนผู้ชนะสเตจสำหรับทีมโคลัมเบีย",
    "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_en": "Name the mountains classification for alexander kristoff",
    "question_th": "ตั้งชื่อการจำแนกประเภทภูเขาสำหรับอเล็กซานเดอร์ คริสตอฟ",
    "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_en": "How much is the other black population when the black African population is 37811?",
    "question_th": "ประชากรผิวดำอื่นๆ เป็นเท่าใดเมื่อประชากรแอฟริกันผิวดำมีจำนวน 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_en": "Where are the london borough with the black caribbean population of 17974?",
    "question_th": "เมืองลอนดอนที่มีประชากรแคริบเบียนผิวดำจำนวน 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_en": "What is the rank of london borough in southwark?",
    "question_th": "เมืองลอนดอนในเซาท์วาร์กอยู่อันดับไหน?",
    "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_en": "What is the black caribbean population when the other black population is 2243?",
    "question_th": "ประชากรผิวดำแคริบเบียนเป็นเท่าใดเมื่อประชากรผิวดำอื่นๆ คือ 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_en": "What is the black caribbean population when the black African population is less than 10552.0?",
    "question_th": "ประชากรแบล็คแคริบเบียนจะเป็นเท่าใดเมื่อประชากรแอฟริกันผิวดำน้อยกว่า 1,0552.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_en": "What time slot had an adult rating of 0.6?",
    "question_th": "ช่วงเวลาใดที่มีเรตติ้งสำหรับผู้ใหญ่อยู่ที่ 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_en": "What season finale date has 2.02 million u.s. Viewers?",
    "question_th": "วันสุดท้ายของซีซั่นใดที่มีผู้ชมถึง 2.02 ล้านคน?",
    "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_en": "How many million u.s. Viewers watched season 1?",
    "question_th": "ผู้ชมดูซีซั่น 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_en": "How many tv series had an adult rating of 1.2?",
    "question_th": "มีละครกี่เรื่องที่มีเรตติ้งผู้ใหญ่อยู่ที่ 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_en": "Where is the University that is also called Hawks?",
    "question_th": "มหาวิทยาลัยที่เรียกว่าฮอกส์อยู่ที่ไหน?",
    "context": "CREATE TABLE table_19210115_1 (location VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_19210115_1 WHERE nickname = \"Owls\"",
    "question_en": "Where is the University that is also called Owls?",
    "question_th": "มหาวิทยาลัยที่เรียกว่านกฮูกอยู่ที่ไหน?",
    "context": "CREATE TABLE table_19210115_1 (location VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(enrollment) FROM table_19210115_1 WHERE founded = 1863",
    "question_en": "How many University founded in 1863?",
    "question_th": "มีมหาวิทยาลัยกี่แห่งที่ก่อตั้งในปี พ.ศ. 2406?",
    "context": "CREATE TABLE table_19210115_1 (enrollment VARCHAR, founded VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_19210115_1 WHERE conference = \"American Athletic conference\"",
    "question_en": "Where is the University that plays in the American Athletic Conference?",
    "question_th": "มหาวิทยาลัยที่เล่นใน American Athletic Conference อยู่ที่ไหน?",
    "context": "CREATE TABLE table_19210115_1 (location VARCHAR, conference VARCHAR)"
  },
  {
    "answer": "SELECT affiliation FROM table_19210115_1 WHERE nickname = \"Explorers\"",
    "question_en": "What is the affiliation of the University called Explorers?",
    "question_th": "มหาวิทยาลัยที่เรียกว่า Explorers สังกัดอะไร",
    "context": "CREATE TABLE table_19210115_1 (affiliation VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT nickname FROM table_19210115_1 WHERE institution = \"Drexel University\"",
    "question_en": "What is the nickname of Drexel University?",
    "question_th": "ชื่อเล่นของมหาวิทยาลัย Drexel คืออะไร?",
    "context": "CREATE TABLE table_19210115_1 (nickname VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT branding FROM table_19215259_1 WHERE location = \"Metro Manila\"",
    "question_en": "What is the brand in Metro Manila?",
    "question_th": "เมโทรมะนิลามียี่ห้ออะไรคะ?",
    "context": "CREATE TABLE table_19215259_1 (branding VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT branding FROM table_19215259_1 WHERE location = \"Cabanatuan\"",
    "question_en": "What is the brand in Cabanatuan?",
    "question_th": "คาบานาตวนมียี่ห้ออะไรคะ?",
    "context": "CREATE TABLE table_19215259_1 (branding VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT power__kw_ FROM table_19215259_1 WHERE location = \"Cebu\"",
    "question_en": "What is the power at the cebu station?",
    "question_th": "ที่สถานีเซบูมีไฟเท่าไร?",
    "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_en": "What is the frequency of 101.5 News FM?",
    "question_th": "ความถี่ของ 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_en": "Where is the frequency 102.3mhz and 5kw power?",
    "question_th": "ความถี่ 102.3mhz และไฟ 5kw อยู่ที่ไหน?",
    "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_en": "Where is the frequency 92.3mhz?",
    "question_th": "ความถี่ 92.3mhz อยู่ที่ไหน?",
    "context": "CREATE TABLE table_19215259_1 (location VARCHAR, frequency VARCHAR)"
  },
  {
    "answer": "SELECT MAX(no) FROM table_1924975_1",
    "question_en": "What is the highest no.?",
    "question_th": "หมายเลขสูงสุดคืออะไร?",
    "context": "CREATE TABLE table_1924975_1 (no INTEGER)"
  },
  {
    "answer": "SELECT q1 + q2_time FROM table_1924975_1 WHERE q1_time = \"1:18.574\"",
    "question_en": "What is the q1+q2 time in which q1 is 1:18.574?",
    "question_th": "เวลา q1+q2 ซึ่ง q1 คือ 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_en": "when q1 pos is 8 what is the q1+q2 time?",
    "question_th": "เมื่อ q1 pos เท่ากับ 8 เวลา q1+q2 คืออะไร?",
    "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_en": "when the q1+q2 time was 2.34.736, what was the total pos number?",
    "question_th": "เมื่อเวลา q1+q2 คือ 2.34.736 จำนวน pos ทั้งหมดเป็นเท่าใด",
    "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_en": "When the q1 time is 1:16.218 what is the highest q1 pos? ",
    "question_th": " เมื่อเวลา q1 คือ 1:16.218 ตำแหน่ง q1 สูงสุดคือเท่าใด",
    "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_en": "What is the largest 6-car-sets for fiscal year 1968?",
    "question_th": "รถ 6 คันที่ใหญ่ที่สุดประจำปีงบประมาณ 2511 คืออะไร?",
    "context": "CREATE TABLE table_19255192_1 (fiscal_year VARCHAR)"
  },
  {
    "answer": "SELECT MIN(fiscal_year) FROM table_19255192_1 WHERE total_vehicles = 490",
    "question_en": "What is the lowest fiscal year if total vehicles is 490?",
    "question_th": "ปีงบประมาณต่ำสุดคือปีใดหากจำนวนรถยนต์ทั้งหมดคือ 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_en": "Name the degree for otorhinolaryngology",
    "question_th": "ตั้งชื่อปริญญาสาขาโสตนาสิกลาริงซ์วิทยา",
    "context": "CREATE TABLE table_19304764_2 (degree_diploma VARCHAR, discipline VARCHAR)"
  },
  {
    "answer": "SELECT total_seats FROM table_19304764_2 WHERE discipline = \"Otorhinolaryngology\"",
    "question_en": "Name the total seats for otorhinolaryngology",
    "question_th": "ตั้งชื่อที่นั่งทั้งหมดสำหรับโสตนาสิกลาริงซ์วิทยา",
    "context": "CREATE TABLE table_19304764_2 (total_seats VARCHAR, discipline VARCHAR)"
  },
  {
    "answer": "SELECT recognised_seats FROM table_19304764_2 WHERE discipline = \"Pharmacology\"",
    "question_en": "Name the recognised seats for pharmacology",
    "question_th": "ตั้งชื่อที่นั่งที่ได้รับการยอมรับสำหรับเภสัชวิทยา",
    "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_en": "Name the total number of seats for general surgery",
    "question_th": "ระบุจำนวนที่นั่งศัลยกรรมทั่วไป",
    "context": "CREATE TABLE table_19304764_2 (permitted_seats VARCHAR, discipline VARCHAR)"
  },
  {
    "answer": "SELECT MIN(recognised_seats) FROM table_19304764_2",
    "question_en": "Name the least recognised seats",
    "question_th": "ตั้งชื่อที่นั่งที่ได้รับการยอมรับน้อยที่สุด",
    "context": "CREATE TABLE table_19304764_2 (recognised_seats INTEGER)"
  },
  {
    "answer": "SELECT COUNT(nation) FROM table_19312274_3 WHERE name = \"FMS International\"",
    "question_en": "How many nations do the FMS international team represent?",
    "question_th": "ทีมงาน FMS นานาชาติเป็นตัวแทนกี่ประเทศ?",
    "context": "CREATE TABLE table_19312274_3 (nation VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT MIN(fastest_laps) FROM table_19312274_3",
    "question_en": "What is the smallest number of fastest laps listed?",
    "question_th": "จำนวนรอบที่เร็วที่สุดที่ระบุน้อยที่สุดคือเท่าใด?",
    "context": "CREATE TABLE table_19312274_3 (fastest_laps INTEGER)"
  },
  {
    "answer": "SELECT championship_titles FROM table_19312274_3 WHERE name = \"LRS Formula / Laurent Rédon Motorsport\"",
    "question_en": "How many championship titles for LRS Formula / Laurent Rédon Motorsport?",
    "question_th": "แชมป์ LRS Formula / Laurent Rédon 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_en": "What's the version of AutoCAD Architectural Desktop 3?",
    "question_th": "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_en": "In what season did the team get in the conference finals of the playoffs?",
    "question_th": "ทีมได้เข้าสู่รอบชิงชนะเลิศการประชุมรอบตัดเชือกในฤดูกาลใด?",
    "context": "CREATE TABLE table_1939214_1 (regular_season VARCHAR, playoffs VARCHAR)"
  },
  {
    "answer": "SELECT playoffs FROM table_1939214_1 WHERE league = \"USISL Pro league\"",
    "question_en": "What was the team's status in the USISL Pro League playoffs?",
    "question_th": "สถานะของทีมในรอบตัดเชือก USISL Pro League เป็นอย่างไร?",
    "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_en": "In what year did the team compete in the 2nd, Northeast season of the USL PDL League?",
    "question_th": "ทีมเข้าแข่งขันในรายการ USL PDL League ฤดูกาลที่ 2 ภาคตะวันออกเฉียงเหนือในปีใด",
    "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_en": "What did the team do in the Open Cup in the 2nd, Northeast season of the USISL D-3 Pro League?",
    "question_th": "ทีมทำอะไรใน Open Cup ในฤดูกาลที่ 2 ภาคตะวันออกเฉียงเหนือของ 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_en": "In what year did the team compete in the USISL Pro League?",
    "question_th": "ทีมแข่งขันใน 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_en": "If %2001 is 0.1%, what is the minimum Arabs 2001 number?",
    "question_th": "ถ้า %2001 คือ 0.1% แล้วตัวเลขขั้นต่ำของชาวอาหรับ 2001 คือเท่าใด",
    "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_en": "If the province is Manitoba, what is the Arabs 2001 number?",
    "question_th": "ถ้าจังหวัดคือแมนิโทบา หมายเลขอาหรับ 2001 คืออะไร",
    "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_en": "What is the province amount if the % 2011 is 0.0%",
    "question_th": "จำนวนเงินจังหวัดเป็นเท่าใด ถ้า % ปี 2554 คือ 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_en": "If the province is British Columbia, what is the Arabs 2001 total number?",
    "question_th": "ถ้าจังหวัดคือบริติชโคลัมเบีย จำนวนชาวอาหรับทั้งหมดในปี 2544 เป็นเท่าใด",
    "context": "CREATE TABLE table_1939367_1 (arabs_2001 VARCHAR, province VARCHAR)"
  },
  {
    "answer": "SELECT arabs_2011 FROM table_1939367_1 WHERE province = \"Nunavut\"",
    "question_en": "If the province is Nunavut, what is the Arabs 2011 amount?",
    "question_th": "ถ้าจังหวัดคือนูนาวุต ชาวอาหรับ ปี 2554 เป็นจำนวนเท่าใด",
    "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_en": "When did the tournament, in which the runner-up was Song-Hee Kim, happen",
    "question_th": "การแข่งขันซึ่งรองชนะเลิศคือซงฮีคิมเกิดขึ้นเมื่อไหร่",
    "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_en": "What was the amount of winners share (in $) in the game with a margin victory of 2 strokes?",
    "question_th": "ผู้ชนะจะได้ส่วนแบ่ง (เป็น $) ในเกมด้วยชัยชนะ 2 สโตรกเป็นจำนวนเท่าใด?",
    "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_en": "What was the winning score in the Sybase Classic tournament?",
    "question_th": "คะแนนชนะในการแข่งขัน Sybase Classic คืออะไร?",
    "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_en": "What was the winning score in the tournament, ending with Birdie Kim as a runner-up?",
    "question_th": "สกอร์ชนะในทัวร์นาเมนต์เป็นอย่างไรบ้าง จบลงด้วย เบอร์ดี้ คิม รองแชมป์?",
    "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_en": "How many Latin Americans were there in the Northwest Territories in 2011?",
    "question_th": "มีชาวละตินอเมริกากี่คนในเขตนอร์ธเวสต์เทร์ริทอรีส์ในปี 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_en": "How many results of the count of Latin Americans in Yukon in 2001 are there?",
    "question_th": "จำนวนชาวละตินอเมริกาในยูคอนในปี 2544 มีกี่รายการ?",
    "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_en": "What's the percentage in 2001 in Manitoba where the percentage in 2011 is 0.8%?",
    "question_th": "เปอร์เซ็นต์ในปี 2544 ในแมนิโทบาคือเท่าใด โดยที่เปอร์เซ็นต์ในปี 2554 คือ 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_en": "What are the percentages in 2001 in all the provinces where the percentage in 2011 is 0.2%?",
    "question_th": "เปอร์เซ็นต์ในปี 2544 ในทุกจังหวัดที่มีเปอร์เซ็นต์ในปี 2554 คือ 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_en": "How many Latin Americans were there in 2001 in the province with 0.0% 2001 and 0.2% 2011?",
    "question_th": "มีชาวละตินอเมริกากี่คนในปี 2544 ในจังหวัดนี้โดยมี 0.0% ในปี 2544 และ 0.2% ในปี 2554",
    "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_en": "How many Latin Americans lived in 2011 in Saskatchewan?",
    "question_th": "มีชาวละตินอเมริกากี่คนที่อาศัยอยู่ในรัฐซัสแคตเชวันในปี 2011",
    "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_en": "What is the minimum number of wins possible for the Champ Car World Series among all the drivers?",
    "question_th": "จำนวนชัยชนะขั้นต่ำที่เป็นไปได้สำหรับ Champ Car World Series ในบรรดานักแข่งทั้งหมดคือเท่าใด",
    "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_en": "What is the most Champ Car wins for any driver with a USAC record of 2?",
    "question_th": "Champ Car ชนะมากที่สุดสำหรับนักแข่งที่มีสถิติ USAC ที่ 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_en": "How many afc titles did the Cleveland Browns have?",
    "question_th": "Cleveland Browns คว้าแชมป์ AFC ได้กี่สมัย?",
    "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_en": "How many division championships did the Pittsburgh Steelers have?",
    "question_th": "Pittsburgh Steelers คว้าแชมป์ดิวิชั่นได้กี่ครั้ง?",
    "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_en": "How many afc titles were there when there were 2 super bowl wins?",
    "question_th": "มีแชมป์ AFC กี่สมัยเมื่อชนะซูเปอร์โบวล์ 2 ครั้ง?",
    "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_en": "How many division title teams were in the division championships 9 times?",
    "question_th": "มีทีมแชมป์ดิวิชั่นกี่ทีมที่คว้าแชมป์ดิวิชั่น 9 ครั้ง?",
    "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_en": "What is the highest number of division championships where playoff berths were 11?",
    "question_th": "จำนวนการแข่งขันชิงแชมป์ดิวิชั่นสูงสุดที่มีท่าเทียบเรือเพลย์ออฟคือ 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_en": "Who in the original Toronto cast played the character played by Kate Rockwell in the current Broadway cast?",
    "question_th": "ใครในนักแสดงโตรอนโตดั้งเดิมที่เล่นตัวละครที่รับบทโดย Kate Rockwell ในนักแสดงบรอดเวย์ปัจจุบัน?",
    "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_en": "What member of the current West End cast plays the character played by Jodie Jacobs in the original West End cast?",
    "question_th": "สมาชิกคนใดของนักแสดง West End คนปัจจุบันที่รับบทเป็นตัวละครที่รับบทโดย Jodie Jacobs ในนักแสดง West End ดั้งเดิม",
    "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_en": "What member of the current Broadway cast plays the character played by Constantine Maroulis from the original Broadway cast?",
    "question_th": "สมาชิกคนใดของนักแสดงบรอดเวย์คนปัจจุบันที่รับบทเป็นตัวละครที่รับบทโดยคอนสแตนติน มารูลิสจากนักแสดงบรอดเวย์ดั้งเดิม",
    "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_en": "How many different actors from the Second national tour year 2 played the character played by Oliver Tompsett from the original West End cast?",
    "question_th": "มีนักแสดงที่แตกต่างกันกี่คนจากการทัวร์ระดับชาติครั้งที่สอง ปี 2 ที่รับบทเป็นตัวละครที่รับบทโดย Oliver Tompsett จากทีมนักแสดง West End ดั้งเดิม",
    "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_en": "What member of the original Toronto cast played the character played by Constantine Maroulis in the first national tour cast?",
    "question_th": "สมาชิกคนใดของนักแสดงโตรอนโตดั้งเดิมที่รับบทเป็นตัวละครที่รับบทโดยคอนสแตนติน มารูลิสในการทัวร์ระดับชาติครั้งแรก",
    "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_en": "Name the # for bill finger edmond hamilton dick sprang , et al.",
    "question_th": "ตั้งชื่อ # สำหรับ bill finger edmond hamilton Dick sprang และคณะ",
    "context": "CREATE TABLE table_19534677_1 (_number VARCHAR, creators VARCHAR)"
  },
  {
    "answer": "SELECT volume_line FROM table_19534677_1 WHERE _number = 8",
    "question_en": "Name the volume line for number 8",
    "question_th": "ตั้งชื่อเส้นระดับเสียงสำหรับหมายเลข 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_en": "Name the total number for material collected for 978-1401221935",
    "question_th": "ตั้งชื่อจำนวนรวมของวัสดุที่รวบรวมได้สำหรับ 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_en": "Name the umbr of creators for flash of two worlds",
    "question_th": "ตั้งชื่อ umbr ของผู้สร้างแฟลชของสองโลก",
    "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érez, Vol. 2\"",
    "question_en": "Name the total number of material collected for  justice league of america by george pérez, vol. 2",
    "question_th": "ตั้งชื่อจำนวนเนื้อหาทั้งหมดที่รวบรวมสำหรับ Justice League of America โดย George Pérez, 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_en": "What is the highest overall number one(s)?",
    "question_th": "อันดับหนึ่งโดยรวมสูงสุดคืออะไร?",
    "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_en": "Name the player for 1945 for player",
    "question_th": "ตั้งชื่อผู้เล่นสำหรับปี 1945 สำหรับผู้เล่น",
    "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_en": "Name the inducted as for  joe medwick category:articles with hcards",
    "question_th": "ตั้งชื่อผู้ที่ได้รับการแต่งตั้งให้เป็นหมวดหมู่ของ joe medwick: บทความที่มี hcards",
    "context": "CREATE TABLE table_19611329_1 (inducted_as VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_1963459_2 WHERE manufacturer = \"Toyota\"",
    "question_en": "What teams drive cars manufactured by Toyota?",
    "question_th": "ทีมใดที่ขับรถที่ผลิตโดยโตโยต้า?",
    "context": "CREATE TABLE table_1963459_2 (team VARCHAR, manufacturer VARCHAR)"
  },
  {
    "answer": "SELECT average_speed__mph_ FROM table_1963459_2 WHERE team = \"Jon Thorne\"",
    "question_en": "What is Jon Thorne's average speed?",
    "question_th": "ความเร็วเฉลี่ยของ Jon Thorne คืออะไร?",
    "context": "CREATE TABLE table_1963459_2 (average_speed__mph_ VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_1963459_2 WHERE year = 1974",
    "question_en": "What day did the race in 1974 take place on?",
    "question_th": "การแข่งขันในปี 1974 จัดขึ้นวันไหน?",
    "context": "CREATE TABLE table_1963459_2 (date VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT average_speed__mph_ FROM table_1963459_2 WHERE driver = \"Tony Stewart\"",
    "question_en": "What is Tony Stewart's average speed?",
    "question_th": "ความเร็วเฉลี่ยของ Tony Stewart คืออะไร?",
    "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_en": "What year was the average speed 145.24",
    "question_th": "ความเร็วเฉลี่ยปีไหน 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–7 (4–7) , 3–6, 7–6 (7–2) , 3–6\"",
    "question_en": "How many surfaces were played on in 2005 where the score was 6–7 (4–7) , 3–6, 7–6 (7–2) , 3–6?",
    "question_th": "มีการเล่นกี่พื้นผิวในปี 2548 โดยมีคะแนน 6–7 (4–7) , 3–6, 7–6 (7–2) , 3–6",
    "context": "CREATE TABLE table_1964010_2 (surface VARCHAR, year VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT opponents FROM table_1964010_2 WHERE score = \"6–4, 4–6, 7–6 (7–4)\"",
    "question_en": "Who are the opponents of Mike Byron and partner in matches where the score was  6–4, 4–6, 7–6 (7–4)?",
    "question_th": "ใครคือคู่ต่อสู้ของไมค์ ไบรอนและคู่หูในการแข่งขันที่มีสกอร์ 6–4, 4–6, 7–6 (7–4)",
    "context": "CREATE TABLE table_1964010_2 (opponents VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_1965650_10 WHERE nhl_team = \"California Golden Seals\"",
    "question_en": "What player is from the California Golden Seals?",
    "question_th": "นักเตะคนไหนจาก 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_en": "What team does Lee Palmer play for?",
    "question_th": "ลี พาลเมอร์เล่นให้กับทีมใด?",
    "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_en": "What country is Alain Labrecque from?",
    "question_th": "Alain Labrecque มาจากประเทศใด",
    "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_en": "What is Boston Bruins minimum pick?",
    "question_th": "การเลือกขั้นต่ำของ Boston Bruins คืออะไร?",
    "context": "CREATE TABLE table_1965650_10 (pick__number INTEGER, nhl_team VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_1965650_2 WHERE player = \"Glenn Goldup\"",
    "question_en": "Name the position of glenn goldup",
    "question_th": "ตั้งชื่อตำแหน่ง 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_en": "Name the least pick number for colin campbell",
    "question_th": "ตั้งชื่อหมายเลขเลือกน้อยที่สุดสำหรับคอลิน แคมป์เบลล์",
    "context": "CREATE TABLE table_1965650_2 (pick__number INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_1965650_2 WHERE pick__number = 30",
    "question_en": "Name the player for pick number for 30",
    "question_th": "ตั้งชื่อผู้เล่นสำหรับเลือกหมายเลข 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_en": "Name the college/junior club team for jimmy jones",
    "question_th": "ตั้งชื่อทีมสโมสรวิทยาลัย/จูเนียร์สำหรับจิมมี่ โจนส์",
    "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_en": "Who was the MVP the season Scaligera Verona were Champions?",
    "question_th": "ใครคือ MVP ในฤดูกาลที่ สกาลิเกรา เวโรนา เป็นแชมป์?",
    "context": "CREATE TABLE table_19651669_1 (mvp VARCHAR, champion VARCHAR)"
  },
  {
    "answer": "SELECT finalist FROM table_19651669_1 WHERE season = \"2007-08\"",
    "question_en": "Who was the finalist in the season 2007-08?",
    "question_th": "ใครคือผู้เข้ารอบสุดท้ายในฤดูกาล 2550-51?",
    "context": "CREATE TABLE table_19651669_1 (finalist VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT finalist FROM table_19651669_1 WHERE final_venue = \"Varese\"",
    "question_en": "Who was the finalist when the final venue was Varese?",
    "question_th": "ใครคือผู้เข้ารอบสุดท้ายเมื่อสถานที่สุดท้ายคือวาเรเซ?",
    "context": "CREATE TABLE table_19651669_1 (finalist VARCHAR, final_venue VARCHAR)"
  },
  {
    "answer": "SELECT finalist FROM table_19651669_1 WHERE mvp = \"Romain Sato\"",
    "question_en": "Who was the finalist when the MVP was Romain Sato?",
    "question_th": "ใครคือผู้เข้ารอบสุดท้ายเมื่อ MVP คือ Romain Sato?",
    "context": "CREATE TABLE table_19651669_1 (finalist VARCHAR, mvp VARCHAR)"
  },
  {
    "answer": "SELECT champion FROM table_19651669_1 WHERE season = \"1998-99\"",
    "question_en": "Who was the champion for the 1998-99 season?",
    "question_th": "ใครคือแชมป์ในฤดูกาล 1998-99?",
    "context": "CREATE TABLE table_19651669_1 (champion VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(final_venue) FROM table_19651669_1 WHERE season = \"1997-98\"",
    "question_en": "How many final venues were there in the 1997-98 season?",
    "question_th": "มีสนามสุดท้ายกี่แห่งในฤดูกาล 1997-98?",
    "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_en": "What player was drafted to the Detroit Red Wings?",
    "question_th": "ผู้เล่นคนไหนที่ถูกดราฟท์ให้ทีม 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_en": "Who did Dan Follet play for before the draft?",
    "question_th": "Dan Follet เล่นให้ใครก่อนดราฟท์?",
    "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_en": "How many teams have a player named Denis Andersen?",
    "question_th": "มีผู้เล่นชื่อเดนิส แอนเดอร์เซ่นกี่ทีม",
    "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_en": "Which College did the Buffalo Sabres' pick play for?",
    "question_th": "ควายเซเบอร์เลือกเล่นให้กับวิทยาลัยแห่งใด",
    "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_en": "What NHL team does Denis Desgagnes play for?",
    "question_th": "Denis Desgagnes เล่นให้กับทีมใดของ NHL",
    "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_en": "What cub team or college did Bob Law come from?",
    "question_th": "Bob Law มาจากทีมลูกหมีหรือวิทยาลัยใด",
    "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_en": "What NHL team did jim koleff play on?",
    "question_th": "Jim Koleff เล่นกับทีมใดของ NHL",
    "context": "CREATE TABLE table_1965650_8 (nhl_team VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(division) FROM table_1969634_1 WHERE nickname = \"Skyhawks\"",
    "question_en": "How many teams have skyhawks as a nickname?",
    "question_th": "มีกี่ทีมที่มีชื่อเล่นว่า skyhawks?",
    "context": "CREATE TABLE table_1969634_1 (division VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT enrollment FROM table_1969634_1 WHERE location = \"Garden City, New York\"",
    "question_en": "What is the total enrollment for the school in garden city, new york?",
    "question_th": "ค่าลงทะเบียนเรียนรวมของโรงเรียนในการ์เดนซิตี้ นิวยอร์กเป็นเท่าใด",
    "context": "CREATE TABLE table_1969634_1 (enrollment VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(institution) FROM table_1969634_1 WHERE nickname = \"Greyhounds\"",
    "question_en": "How many schools with greyhounds as their nickname?",
    "question_th": "มีโรงเรียนกี่แห่งที่มีสุนัขไล่เนื้อเป็นชื่อเล่น?",
    "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_en": "How many schools named southern new hampshire university?",
    "question_th": "มีโรงเรียนกี่แห่งที่มีชื่อว่า 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_en": "When no.55 ipb spartak racing is the g1 winning team what are the results?",
    "question_th": "เมื่อ no.55 ipb spartak racing เป็นทีมที่ชนะ g1 ผลลัพธ์จะเป็นอย่างไร?",
    "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_en": "When peter kox roman rusinov is the gt1 of the winning team how many lmp1 winning teams are there?",
    "question_th": "เมื่อปีเตอร์ คอกซ์ โรมัน รูซินอฟ เป็น gt1 ของทีมที่ชนะ จะมีทีมที่ชนะ lmp1 กี่ทีม?",
    "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_en": "When  julien jousse patrice goueslard yann clairay is teh gt1 of the winning team how many measurements of rnd. are there?",
    "question_th": "เมื่อ julien jousse patrice goueslard yann clairay เป็น gt1 ของทีมที่ชนะ จะมีการวัด rnd กี่ค่า อยู่ที่นั่นไหม?",
    "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_en": "How many nicknames were associated with Milton, Massachusetts?",
    "question_th": "มีชื่อเล่นกี่ชื่อที่เกี่ยวข้องกับมิลตัน แมสซาชูเซตส์",
    "context": "CREATE TABLE table_1973729_1 (nickname VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_1973729_1 WHERE institution = \"Eastern Nazarene College\"",
    "question_en": "Where is the Eastern Nazarene College located?",
    "question_th": "วิทยาลัยนาซารีนตะวันออก อยู่ที่ไหน",
    "context": "CREATE TABLE table_1973729_1 (location VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(joined) FROM table_1973729_1 WHERE nickname = \"Nor'easters\"",
    "question_en": "How many years are listed under joined for the Nor'easters?",
    "question_th": "กี่ปีที่อยู่ในรายการเข้าร่วมสำหรับ Nor'easters?",
    "context": "CREATE TABLE table_1973729_1 (joined VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_1973729_1 WHERE enrollment = 2686",
    "question_en": "What location contains a school that has an enrollment of 2686?",
    "question_th": "สถานที่ใดมีโรงเรียนที่มีการลงทะเบียน 2686?",
    "context": "CREATE TABLE table_1973729_1 (location VARCHAR, enrollment VARCHAR)"
  },
  {
    "answer": "SELECT MIN(joined) FROM table_1973729_1 WHERE nickname = \"Lions\"",
    "question_en": "In what year did the Lions join?",
    "question_th": "สิงโตเข้าร่วมในปีใด?",
    "context": "CREATE TABLE table_1973729_1 (joined INTEGER, nickname VARCHAR)"
  },
  {
    "answer": "SELECT current_conference FROM table_1973729_2 WHERE nickname = \"Chargers\"",
    "question_en": "Which conference has the nickname Chargers?",
    "question_th": "การประชุมใดมีชื่อเล่นว่า Chargers?",
    "context": "CREATE TABLE table_1973729_2 (current_conference VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT current_conference FROM table_1973729_2 WHERE nickname = \"Lions\"",
    "question_en": "Which conference has the nickname Lions?",
    "question_th": "การประชุมใดมีชื่อเล่นว่า 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_en": "What joined year does Dropped Athletics have?",
    "question_th": "Dropped Athletics เข้าร่วมอะไรบ้างในปีที่เข้าร่วม?",
    "context": "CREATE TABLE table_1973729_2 (joined INTEGER, current_conference VARCHAR)"
  },
  {
    "answer": "SELECT MAX(founded) FROM table_1973729_2",
    "question_en": "What is the latest founded year?",
    "question_th": "ก่อตั้งล่าสุดคือปีไหน?",
    "context": "CREATE TABLE table_1973729_2 (founded INTEGER)"
  },
  {
    "answer": "SELECT institution FROM table_1974443_1 WHERE location = \"Watertown, Wisconsin\"",
    "question_en": "What institution is located in Watertown, Wisconsin?",
    "question_th": "สถาบันใดตั้งอยู่ใน Watertown รัฐวิสคอนซิน",
    "context": "CREATE TABLE table_1974443_1 (institution VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT MIN(enrollment) FROM table_1974443_1 WHERE founded = 1880",
    "question_en": "What is the smallest enrollment for institutions founded in exactly 1880?",
    "question_th": "สถาบันที่ก่อตั้งในปี 1880 มีการลงทะเบียนน้อยที่สุดสำหรับสถาบันใด",
    "context": "CREATE TABLE table_1974443_1 (enrollment INTEGER, founded VARCHAR)"
  },
  {
    "answer": "SELECT enrollment FROM table_1974443_1 WHERE institution = \"Lakeland College\"",
    "question_en": "What is the enrollment for Lakeland College?",
    "question_th": "การลงทะเบียนสำหรับวิทยาลัย Lakeland คืออะไร?",
    "context": "CREATE TABLE table_1974443_1 (enrollment VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT MAX(enrollment) FROM table_1974443_1 WHERE institution = \"Concordia University\"",
    "question_en": "What is the maximum enrollment for Concordia University?",
    "question_th": "การลงทะเบียนสูงสุดสำหรับมหาวิทยาลัยคอนคอร์เดียคือเท่าใด",
    "context": "CREATE TABLE table_1974443_1 (enrollment INTEGER, institution VARCHAR)"
  },
  {
    "answer": "SELECT couple FROM table_19744915_15 WHERE total = 6",
    "question_en": "What couple had a total score of 6?",
    "question_th": "คู่ไหนมีคะแนนรวม 6 คะแนน?",
    "context": "CREATE TABLE table_19744915_15 (couple VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT MIN(rank) FROM table_19744915_15",
    "question_en": "What is the lowest rank?",
    "question_th": "อันดับต่ำสุดคืออะไร?",
    "context": "CREATE TABLE table_19744915_15 (rank INTEGER)"
  },
  {
    "answer": "SELECT couple FROM table_19744915_15 WHERE vote_percentage = \"7.691%\"",
    "question_en": "What couple had a vote percentage of 7.691%",
    "question_th": "คู่ไหนมีคะแนนโหวต 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_en": "How many results do Ellery and Frankie have?",
    "question_th": "Ellery และ Frankie มีผลลัพธ์กี่รายการ?",
    "context": "CREATE TABLE table_19744915_15 (result VARCHAR, couple VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_19744915_15 WHERE couple = \"Michael and Melanie\"",
    "question_en": "What is Michael and Melanie's rank?",
    "question_th": "ไมเคิลและเมลานีมีอันดับเท่าไหร่?",
    "context": "CREATE TABLE table_19744915_15 (rank VARCHAR, couple VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_19744915_16 WHERE couple = \"Zoe and Matt\"",
    "question_en": "What is Zoe and Matt's rank?",
    "question_th": "โซอี้และแมตต์อยู่อันดับไหน?",
    "context": "CREATE TABLE table_19744915_16 (rank VARCHAR, couple VARCHAR)"
  },
  {
    "answer": "SELECT judges FROM table_19744915_16 WHERE couple = \"Roxanne and Daniel\"",
    "question_en": "What is the judge's total for Roxanne and Daniel?",
    "question_th": "ผลรวมของกรรมการสำหรับ Roxanne และ Daniel คือเท่าไร?",
    "context": "CREATE TABLE table_19744915_16 (judges VARCHAR, couple VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_19744915_16 WHERE couple = \"Zoe and Matt\"",
    "question_en": "What is Zoe and Matt's result?",
    "question_th": "ผลลัพธ์ของ Zoe และ Matt คืออะไร?",
    "context": "CREATE TABLE table_19744915_16 (result VARCHAR, couple VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_19744915_16 WHERE judges = 6",
    "question_en": "What is the result of judge 6?",
    "question_th": "ผลการตัดสินที่ 6 เป็นอย่างไร?",
    "context": "CREATE TABLE table_19744915_16 (result VARCHAR, judges VARCHAR)"
  },
  {
    "answer": "SELECT order FROM table_19744915_3 WHERE public_vote = \"18.155%\"",
    "question_en": "what is the order when public vote was 18.155%",
    "question_th": "คำสั่งเมื่อประชาชนโหวตเป็น 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_en": "what is the public vote on graeme & kristina",
    "question_th": "คะแนนสาธารณะสำหรับแกรมและคริสตินาคือเท่าไร",
    "context": "CREATE TABLE table_19744915_3 (public_vote VARCHAR, couple VARCHAR)"
  },
  {
    "answer": "SELECT robin FROM table_19744915_3 WHERE jason = \"2.5\"",
    "question_en": "what is robin's stat when jason was 2.5",
    "question_th": "สเตตัสของโรบินตอนเจสันอายุ 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_en": "state the skating song of graeme & kristina",
    "question_th": "กล่าวถึงเพลงสเก็ตของ 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_en": "what is the scoreboard when karen was 4.5",
    "question_th": "ป้ายบอกคะแนนตอนคาเรนอายุ 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_en": "how many coupless totalled 14.5",
    "question_th": "มีกี่คู่ รวม 14.5",
    "context": "CREATE TABLE table_19744915_3 (couple VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT nickname FROM table_1974545_1 WHERE enrollment = 9000",
    "question_en": "Name the nickname for enrollment being 9000",
    "question_th": "ตั้งชื่อเล่นสำหรับการลงทะเบียนเป็น 9000",
    "context": "CREATE TABLE table_1974545_1 (nickname VARCHAR, enrollment VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_1974632_1 WHERE enrollment = 2102",
    "question_en": "what type is the institute that enrolled 2102",
    "question_th": "สถาบันที่รับเข้าเรียน 2102 เป็นสถาบันประเภทใด",
    "context": "CREATE TABLE table_1974632_1 (type VARCHAR, enrollment VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_1974632_1 WHERE type = \"Private/Presbyterian\"",
    "question_en": "where is the private/presbyterian institute",
    "question_th": "สถาบันเอกชน/เพรสไบทีเรียนอยู่ที่ไหน",
    "context": "CREATE TABLE table_1974632_1 (location VARCHAR, type VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_1974632_1 WHERE institution = \"Alvernia University\"",
    "question_en": "what type of institution is alvernia university",
    "question_th": "มหาวิทยาลัยอัลเวอร์เนียเป็นสถาบันประเภทใด",
    "context": "CREATE TABLE table_1974632_1 (type VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT institution FROM table_1974632_1 WHERE location = \"Glenside, Pennsylvania\"",
    "question_en": "state the institution in glenside, pennsylvania",
    "question_th": "ระบุสถาบันในเกลนไซด์ เพนซิลเวเนีย",
    "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_en": "What was the result when John Barrow was the incumbent first elected in 2004?",
    "question_th": "ผลลัพธ์คืออะไรเมื่อ John Barrow เป็นผู้ดำรงตำแหน่งที่ได้รับเลือกครั้งแรกในปี 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_en": "How many incumbents are there in the georgia 8 district when the party is democratic?",
    "question_th": "ในเขตจอร์เจีย 8 มีผู้ดำรงตำแหน่งกี่คนเมื่อพรรคเป็นประชาธิปไตย?",
    "context": "CREATE TABLE table_19753079_13 (incumbent VARCHAR, party VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_19753079_13 WHERE incumbent = \"John Linder\"",
    "question_en": "In what district is the incumbent John Linder?",
    "question_th": "จอห์น ลินเดอร์ ผู้ดำรงตำแหน่งอยู่ในเขตใด",
    "context": "CREATE TABLE table_19753079_13 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_19753079_13 WHERE district = \"Georgia 8\"",
    "question_en": "What was the result of the Georgia 8 district?",
    "question_th": "ผลของเขตจอร์เจีย 8 คืออะไร?",
    "context": "CREATE TABLE table_19753079_13 (result VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT mind FROM table_19760_1 WHERE reason = \"qut\"",
    "question_en": "What is the mind of the one that has qut reason?",
    "question_th": "จิตใจของผู้มีเหตุผลคืออะไร?",
    "context": "CREATE TABLE table_19760_1 (mind VARCHAR, reason VARCHAR)"
  },
  {
    "answer": "SELECT understanding FROM table_19760_1 WHERE reason = \"νοῦς Nous\"",
    "question_en": "What is the understanding of the one that has νοῦς nous reasoning?",
    "question_th": "ความเข้าใจของผู้มีเหตุผล νοῦς คืออะไร?",
    "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_en": "How much was spent in 1949/50 (in $ millions) in the country where the cumulative expenditure is $376 millions?",
    "question_th": "มีการใช้ไปเท่าไรในปี 1949/50 (เป็นล้านดอลลาร์) ในประเทศที่มีรายจ่ายสะสมอยู่ที่ 376 ล้านดอลลาร์",
    "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_en": "How many millions of $ were spent in Iceland in 1948/49?",
    "question_th": "มีการใช้เงินไปกี่ล้านดอลลาร์ในไอซ์แลนด์ในปี 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_en": "Name the total number for % popular vote for # of seats won for 83",
    "question_th": "ระบุจำนวนคะแนนโหวตทั้งหมด % จำนวนที่นั่งที่ได้รับ 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_en": "Name the % of popular vote for election for 1926",
    "question_th": "ตั้งชื่อ % ของคะแนนนิยมสำหรับการเลือกตั้งปี 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_en": "Name the most # of seats won",
    "question_th": "ระบุจำนวน # ที่นั่งที่ชนะมากที่สุด",
    "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_en": "Name the most number of total votes for election for 1878",
    "question_th": "ระบุจำนวนคะแนนเสียงทั้งหมดมากที่สุดสำหรับการเลือกตั้งในปี พ.ศ. 2421",
    "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_en": "What is the number for the french open 1974?",
    "question_th": "เฟรนช์โอเพ่น 1974 เบอร์อะไรคะ?",
    "context": "CREATE TABLE table_197638_7 (_number INTEGER, french_open VARCHAR)"
  },
  {
    "answer": "SELECT MAX(australian_open) FROM table_197638_7",
    "question_en": "When was the Australian open?",
    "question_th": "ออสเตรเลียเปิดเมื่อไหร่?",
    "context": "CREATE TABLE table_197638_7 (australian_open INTEGER)"
  },
  {
    "answer": "SELECT COUNT(age) FROM table_197638_7 WHERE player = \"Maureen Connolly Brinker\"",
    "question_en": "How many ages have Maureen Connolly Brinker as the player?",
    "question_th": "มอรีน คอนนอลลี่ บริงเกอร์เป็นผู้เล่นอายุกี่ปี?",
    "context": "CREATE TABLE table_197638_7 (age VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MIN(french_open) FROM table_197638_7 WHERE player = \"Serena Williams\"",
    "question_en": "When is the French Open when serena williams is the player?",
    "question_th": "เฟรนช์โอเพ่นคือเมื่อใดเมื่อเซเรน่าวิลเลียมส์เป็นผู้เล่น?",
    "context": "CREATE TABLE table_197638_7 (french_open INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(dismissals) FROM table_19769948_26 WHERE innings = 191",
    "question_en": "how many dismissals in a game with 191 innings",
    "question_th": "มีการไล่ออกกี่ครั้งในเกมที่มี 191 อินนิง",
    "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_en": "How many residence cities have an English name of Province of Viborg and Nyslott?",
    "question_th": "มีเมืองที่อยู่อาศัยกี่แห่งที่มีชื่อภาษาอังกฤษว่าจังหวัด Viborg และ Nyslott",
    "context": "CREATE TABLE table_198175_2 (residence_city VARCHAR, english_name VARCHAR)"
  },
  {
    "answer": "SELECT MAX(map_number) FROM table_198175_2",
    "question_en": "What is the highest value for map number?",
    "question_th": "ค่าสูงสุดของหมายเลขแผนที่คืออะไร?",
    "context": "CREATE TABLE table_198175_2 (map_number INTEGER)"
  },
  {
    "answer": "SELECT swedish_name FROM table_198175_2 WHERE residence_city = \"Loviisa\"",
    "question_en": "What is every Swedish name for residence city is Loviisa?",
    "question_th": "ชื่อเมืองที่อยู่อาศัยทุกชื่อในสวีเดนคือ 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_en": "What is every Finnish name for the English name of Province of Viborg and Nyslott?",
    "question_th": "ชื่อภาษาฟินแลนด์สำหรับชื่อภาษาอังกฤษของจังหวัด Viborg และ 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_en": "What is the traditional Chinese character set for the location that has an area of 181?",
    "question_th": "อักษรจีนตัวเต็มที่กำหนดไว้สำหรับสถานที่ซึ่งมีพื้นที่ 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_en": "What is the total number of areas that are called Nanqiao District?",
    "question_th": "เขตหนานเฉียวมีทั้งหมดกี่พื้นที่?",
    "context": "CREATE TABLE table_1982739_2 (area VARCHAR, english_name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(english_name) FROM table_1982739_2 WHERE traditional_chinese = \"全椒縣\"",
    "question_en": "What is the number of English names that have a Traditional Chinese name of 全椒縣?",
    "question_th": "ชื่อภาษาอังกฤษที่มีชื่อภาษาจีนตัวเต็มว่า 全椒縣 มีกี่ชื่อ?",
    "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_en": "What is the Pinyin name for Dingyuan County?",
    "question_th": "ชื่อพินอินของเทศมณฑลติงหยวนคืออะไร?",
    "context": "CREATE TABLE table_1982739_2 (pinyin VARCHAR, english_name VARCHAR)"
  },
  {
    "answer": "SELECT MAX(stats) FROM table_19839391_3 WHERE pitcher = \"Doug Davis\"",
    "question_en": "What are Doug Davis' maximum pitching stats?",
    "question_th": "สถิติการขว้างสูงสุดของ Doug Davis คืออะไร?",
    "context": "CREATE TABLE table_19839391_3 (stats INTEGER, pitcher VARCHAR)"
  },
  {
    "answer": "SELECT pitcher FROM table_19839391_3 WHERE seasons = \"1970\"",
    "question_en": "List the pitchers for the 1970 season",
    "question_th": "รายชื่อเหยือกสำหรับฤดูกาล 1970",
    "context": "CREATE TABLE table_19839391_3 (pitcher VARCHAR, seasons VARCHAR)"
  },
  {
    "answer": "SELECT wins FROM table_19839391_3 WHERE winning__percentage = \"0.667\"",
    "question_en": "How many wins had a win percentage of 0.667",
    "question_th": "ชนะกี่ครั้งมีเปอร์เซ็นต์การชนะ 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_en": "how many \"no decisions\" are there with 3 wins and a win percentage of 1.000?",
    "question_th": "มี \"ไม่มีการตัดสิน\" กี่ครั้งที่ชนะ 3 ครั้งและเปอร์เซ็นต์การชนะ 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_en": "stae the least number of wins in 1986",
    "question_th": "ชนะน้อยที่สุดในปี 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_en": "what is the least number of no decisions for scott feldman category:articles with hcards",
    "question_th": "จำนวนการไม่ตัดสินใจน้อยที่สุดสำหรับหมวดหมู่ scott feldman: บทความที่มี hcard คือเท่าใด",
    "context": "CREATE TABLE table_19864214_3 (no_decisions INTEGER, pitcher VARCHAR)"
  },
  {
    "answer": "SELECT starts FROM table_19864214_3 WHERE seasons = \"1977\"",
    "question_en": "what is the number of starts in 1977",
    "question_th": "จำนวนการออกสตาร์ทในปี 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_en": "who was the pitcher in seasons 1982, 1984, 1985, 1987, 1988, 1989",
    "question_th": "ซึ่งเป็นผู้เหยือกในฤดูกาล 2525, 2527, 2528, 2530, 2531, 2532",
    "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_en": "how many wins did pitcher jon matlack category:articles with hcards achieve",
    "question_th": "Pitcher Jon Matlack ชนะได้กี่ครั้งในหมวดหมู่:บทความที่มี hcards",
    "context": "CREATE TABLE table_19864214_3 (wins VARCHAR, pitcher VARCHAR)"
  },
  {
    "answer": "SELECT MAX(no_in_series) FROM table_19897294_4",
    "question_en": "How many series are there total?",
    "question_th": "มีทั้งหมดกี่ซีรีย์คะ?",
    "context": "CREATE TABLE table_19897294_4 (no_in_series INTEGER)"
  },
  {
    "answer": "SELECT family_families FROM table_19897294_4 WHERE no_overall = \"UK10\"",
    "question_en": "What family had a no.overall of UK10?",
    "question_th": "ครอบครัวใดมีคะแนนรวม UK10 มากที่สุด",
    "context": "CREATE TABLE table_19897294_4 (family_families VARCHAR, no_overall VARCHAR)"
  },
  {
    "answer": "SELECT MAX(division) FROM table_1990460_1",
    "question_en": "What's the highest division number through the years?",
    "question_th": "หมายเลขดิวิชั่นสูงสุดในรอบหลายปีคืออะไร?",
    "context": "CREATE TABLE table_1990460_1 (division INTEGER)"
  },
  {
    "answer": "SELECT MIN(division) FROM table_1990460_1 WHERE regular_season = \"6th, Great Lakes\"",
    "question_en": "What's the lowest division number of the 6th, Great Lakes season?",
    "question_th": "หมายเลขดิวิชั่นต่ำสุดของฤดูกาลที่ 6 ของ Great Lakes คืออะไร?",
    "context": "CREATE TABLE table_1990460_1 (division INTEGER, regular_season VARCHAR)"
  },
  {
    "answer": "SELECT open_cup FROM table_1990460_1 WHERE year = 2006",
    "question_en": "What's the team's status in the Open Cup in 2006?",
    "question_th": "สถานะทีมในโอเพ่นคัพปี 2549 เป็นอย่างไร?",
    "context": "CREATE TABLE table_1990460_1 (open_cup VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_1990460_1 WHERE regular_season = \"4th, Midwest\"",
    "question_en": "When did the 4th, Midwest season happen?",
    "question_th": "ฤดูกาลที่ 4 มิดเวสต์ เกิดขึ้นเมื่อใด",
    "context": "CREATE TABLE table_1990460_1 (year VARCHAR, regular_season VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(spokesperson) FROM table_1992924_3 WHERE year_s_ = 2004",
    "question_en": "how many spokesperson where in 2004",
    "question_th": "มีโฆษกกี่คนในปี 2547",
    "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_en": "who is the dual commentator at the channel with spokesperson larisa verbickaya",
    "question_th": "ซึ่งเป็นคู่คอมเมนเตเตอร์ของช่องกับโฆษก ลาริสา เวอร์บิคยา",
    "context": "CREATE TABLE table_1992924_3 (Dual VARCHAR, spokesperson VARCHAR)"
  },
  {
    "answer": "SELECT spokesperson FROM table_1992924_3 WHERE commentator = \"Dmitriy Guberniyev\"",
    "question_en": "state all the spokesperson for the channel where commentator is dmitriy guberniyev",
    "question_th": "ระบุโฆษกของช่องทั้งหมดซึ่งมีผู้วิจารณ์คือ 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_en": "When is the first broadcast for episodes where Rufus's guest is Jack Whitehall?",
    "question_th": "ออกอากาศครั้งแรกเมื่อใดที่แขกรับเชิญของรูฟัสคือแจ็ค ไวท์ฮอลล์",
    "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_en": "Which episodes have Chris Addison as Rufus's guest?",
    "question_th": "Chris Addison มาเป็นแขกรับเชิญของ Rufus ตอนไหน?",
    "context": "CREATE TABLE table_19930660_3 (episode VARCHAR, rufus_guest VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_19930660_3 WHERE rufus_guest = \"Sean Lock\"",
    "question_en": "What is the resulting score for the episodes where Rufus's guest is Sean Lock?",
    "question_th": "คะแนนของตอนที่แขกรับเชิญของรูฟัสคือฌอน ล็อคเป็นเท่าไหร่",
    "context": "CREATE TABLE table_19930660_3 (winner VARCHAR, rufus_guest VARCHAR)"
  },
  {
    "answer": "SELECT first_broadcast FROM table_19930660_3 WHERE episode = \"3x10\"",
    "question_en": "What is the first broadcast date for episode 3x10?",
    "question_th": "ตอนที่ 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_en": "What index was created by the United Nations (UNDP) and reached 2nd place in the LA Ranking?",
    "question_th": "ดัชนีใดที่องค์การสหประชาชาติ (UNDP) สร้างขึ้นและขึ้นถึงอันดับที่ 2 ในการจัดอันดับ LA",
    "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_en": "How many countries were sampled in the index created by The Economist, published in 2007 and ranked 2nd in the LA Ranking?",
    "question_th": "มีกี่ประเทศที่ถูกสุ่มตัวอย่างในดัชนีที่สร้างโดย The Economist ซึ่งตีพิมพ์ในปี 2550 และอยู่ในอันดับที่ 2 ในการจัดอันดับ LA",
    "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_en": "What's the wold ranking of the index by Transparency International?",
    "question_th": "ดัชนี 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_en": "How many countries were sampled for the index in 2nd place in the LA ranking and 23rd in the world ranking?",
    "question_th": "มีกี่ประเทศที่ถูกสุ่มตัวอย่างสำหรับดัชนีอันดับที่ 2 ในการจัดอันดับ LA และอันดับที่ 23 ในการจัดอันดับโลก",
    "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_en": "How many countries were sampled for the Prosperity Index (2008)?",
    "question_th": "มีกี่ประเทศที่ถูกสุ่มตัวอย่างสำหรับดัชนีความมั่งคั่ง (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_en": "What is the playoffs result in years where Open Canada Cup was \"N/A\" and regular season result was \"2nd, New England\"?",
    "question_th": "ผลการแข่งขันรอบตัดเชือกในปีที่ Open Canada Cup เป็น \"N/A\" และผลการแข่งขันฤดูกาลปกติคือ \"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_en": "What is the earliest year where playoffs was \"did not qualify,\" regular season was \"2nd, New England,\" and Open Canada Cup is \"N/A\"?",
    "question_th": "ปีแรกสุดที่รอบตัดเชือกคือ \"ไม่ผ่านเข้ารอบ\" ฤดูกาลปกติคือ \"อันดับ 2 นิวอิงแลนด์\" และ Open Canada Cup คือ \"ไม่มี\"",
    "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_en": "What is the total number of playoffs held in exactly 2006?",
    "question_th": "จำนวนรอบตัดเชือกทั้งหมดที่จัดขึ้นในปี 2549 คือเท่าใด",
    "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_en": "What were the revising conventions commentary with a denunciation of 21?",
    "question_th": "ความเห็นแบบแผนฉบับแก้ไขที่มีการบอกเลิก 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_en": "How many inputs are there in the 'closure for signature' tab under the field 'sea (revised)'?",
    "question_th": "มีอินพุตกี่รายการในแท็บ 'การปิดเพื่อลายเซ็น' ใต้ฟิลด์ 'ทะเล (แก้ไข)'",
    "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_en": "How many ILO codes are there with revising conventions of 'this convention, work in fishing convention'?",
    "question_th": "มีรหัส ILO กี่ฉบับที่มีการแก้ไขอนุสัญญา 'อนุสัญญานี้ว่าด้วยการประมง'",
    "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_en": "What  was the revising convention of the field 'trimmers and stokers'?",
    "question_th": "แบบแผนการแก้ไขของฟิลด์ '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_en": "What are the Juntas de Regantes (WUB) within the Azua Valley?",
    "question_th": "Juntas de Regantes (WUB) ภายในหุบเขา Azua คืออะไร",
    "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_en": "Which irrigation district has 4733 users?",
    "question_th": "เขตชลประทานใดมีผู้ใช้บริการ 4,733 ราย",
    "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_en": "What's the number of users in the Nisibon-Yuma within the Del Este district?",
    "question_th": "จำนวนผู้ใช้ใน Nisibon-Yuma ภายในเขต Del Este คือเท่าใด",
    "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_en": "What percentage voted for Tom Horner according to the poll source with sampling error of 2.5%?",
    "question_th": "เปอร์เซ็นต์ที่โหวตให้ Tom Horner ตามแหล่งสำรวจความคิดเห็นโดยมีข้อผิดพลาดในการสุ่มตัวอย่าง 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_en": "What's the percentage of undecided according to the poll source with sampling error of 2.7%?",
    "question_th": "เปอร์เซ็นต์ที่ไม่แน่ใจตามแหล่งสำรวจความคิดเห็นที่มีข้อผิดพลาดในการสุ่มตัวอย่าง 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_en": "When did Minnesota Poll administer their poll?",
    "question_th": "Minnesota 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_en": "How many polls show different percentages for Tom Emmer and 38% for Matt Entenza?",
    "question_th": "มีกี่แบบสำรวจที่แสดงเปอร์เซ็นต์ที่แตกต่างกันสำหรับ Tom Emmer และ 38% สำหรับ 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_en": "What poll source administered their poll on June 14-16, 2010?",
    "question_th": "แหล่งสำรวจความคิดเห็นใดที่ดำเนินการสำรวจความคิดเห็นในวันที่ 14-16 มิถุนายน 2553",
    "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_en": "What's the percentage of votes for Tom Horner according to the poll source that claimed 31% for Matt Entenza?",
    "question_th": "เปอร์เซ็นต์การโหวตของ Tom Horner ตามแหล่งสำรวจที่อ้างว่า 31% สำหรับ 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_en": "what is redskins (score) against tennessee titans 27",
    "question_th": "อินเดียนแดง (คะแนน) คืออะไรกับเทนเนสซีไททันส์ 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_en": "Who is the head coach of the team who's venue is Lokomotiv?",
    "question_th": "ใครคือหัวหน้าโค้ชของทีมซึ่งเป็นที่ตั้งของโลโคโมทีฟ?",
    "context": "CREATE TABLE table_20140132_1 (head_coach VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_20140132_1 WHERE team = \"Terek\"",
    "question_en": "What is the venue for the team Terek?",
    "question_th": "สนามของทีมเทเร็คคือที่ไหน?",
    "context": "CREATE TABLE table_20140132_1 (venue VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(team) FROM table_20140132_1 WHERE position_in_2008 = \"8th\"",
    "question_en": "How many teams finished in 8th in 2008?",
    "question_th": "มีกี่ทีมที่จบอันดับที่ 8 ในปี 2551",
    "context": "CREATE TABLE table_20140132_1 (team VARCHAR, position_in_2008 VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_20140132_1 WHERE team = \"Saturn\"",
    "question_en": "What is the location of the team Saturn?",
    "question_th": "ที่ตั้งของทีมดาวเสาร์อยู่ที่ไหน?",
    "context": "CREATE TABLE table_20140132_1 (location VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_20142629_2 WHERE fairburn > 54.0",
    "question_en": "when fairburn is bigger than 54.0, how many years?",
    "question_th": "เมื่อแฟร์เบิร์นใหญ่กว่า 54.0 กี่ปี?",
    "context": "CREATE TABLE table_20142629_2 (year VARCHAR, fairburn INTEGER)"
  },
  {
    "answer": "SELECT COUNT(stanier), _3_cylinder FROM table_20142629_2 WHERE fowler = 16",
    "question_en": "When the Fowler is 16, what is the number of cylinders?",
    "question_th": "เมื่อฟาวเลอร์อายุ 16 ปี มีจำนวนกระบอกสูบเท่าไหร่?",
    "context": "CREATE TABLE table_20142629_2 (_3_cylinder VARCHAR, stanier VARCHAR, fowler VARCHAR)"
  },
  {
    "answer": "SELECT MAX(fowler) FROM table_20142629_2",
    "question_en": "What is tops for Folwer?",
    "question_th": "ท็อปสำหรับ Folwer คืออะไร?",
    "context": "CREATE TABLE table_20142629_2 (fowler INTEGER)"
  },
  {
    "answer": "SELECT grid FROM table_20159025_1 WHERE part_1 = \"1:31.063\"",
    "question_en": "On what grid was the time for part 1 1:31.063?",
    "question_th": "ตอนที่ 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‡\"",
    "question_en": "Which driver was number 2‡?",
    "question_th": "นักแข่งคนไหนคือหมายเลข 2‡?",
    "context": "CREATE TABLE table_20159025_1 (driver VARCHAR, no VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_20159025_1 WHERE grid = \"01 1\"",
    "question_en": "Who was the driver in grid 01 1?",
    "question_th": "ใครคือคนขับในกริด 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_en": "What was the time in part 3 when Heikki Kovalainen was the driver? ",
    "question_th": " ตอนที่ 3 Heikki Kovalainen เป็นคนขับกี่โมง",
    "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_en": "Who was the driver when the time in part 3 was 1:31.386?",
    "question_th": "ใครคือคนขับ ตอนที่ 3 เวลา 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_en": "What was the time in part 3 when Nick Heidfeld was the driver?",
    "question_th": "ตอนที่ 3 นิค ไฮด์เฟลด์เป็นคนขับกี่โมง",
    "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_en": "Name the title that aired on 5 august 1967",
    "question_th": "ตั้งชื่อเรื่องที่ออกอากาศเมื่อวันที่ 5 สิงหาคม พ.ศ. 2510",
    "context": "CREATE TABLE table_20345624_2 (title VARCHAR, original_airdate VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(director) FROM table_20345624_2 WHERE no = 6",
    "question_en": "Name the total number of directors for number 6",
    "question_th": "เสนอชื่อกรรมการทั้งหมดเป็นลำดับที่ 6",
    "context": "CREATE TABLE table_20345624_2 (director VARCHAR, no VARCHAR)"
  },
  {
    "answer": "SELECT original_airdate FROM table_20345624_2 WHERE director = \"Guy Verney\"",
    "question_en": "Name the original airdate for guy verney",
    "question_th": "ตั้งชื่อวันออกอากาศเดิมสำหรับ 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_en": "Name the number of writers for airdate of 15 july 1967",
    "question_th": "ระบุจำนวนผู้เขียน ออกอากาศวันที่ 15 กรกฎาคม พ.ศ. 2510",
    "context": "CREATE TABLE table_20345624_2 (writer VARCHAR, original_airdate VARCHAR)"
  },
  {
    "answer": "SELECT abbr FROM table_20354_5 WHERE transcription = \"kumphaphan\"",
    "question_en": "What's the abbreviation for the month whose transcription is Kumphaphan?",
    "question_th": "เดือนที่ กุมภาพันธุ์ อักษรย่อว่าอะไร?",
    "context": "CREATE TABLE table_20354_5 (abbr VARCHAR, transcription VARCHAR)"
  },
  {
    "answer": "SELECT zodiac_sign FROM table_20354_5 WHERE thai_name = \"มกราคม\"",
    "question_en": "What's the zodiac sign for the month with Thai name มกราคม?",
    "question_th": "ชื่อไทย มกราคม ประจำราศีอะไร?",
    "context": "CREATE TABLE table_20354_5 (zodiac_sign VARCHAR, thai_name VARCHAR)"
  },
  {
    "answer": "SELECT zodiac_sign FROM table_20354_5 WHERE transcription = \"karakadakhom\"",
    "question_en": "What's the zodiac sing for the month whose transcription is Karakadakhom?",
    "question_th": "ราศีไหน ประจำเดือนที่ถอดเสียงเป็นกรกฎาคม?",
    "context": "CREATE TABLE table_20354_5 (zodiac_sign VARCHAR, transcription VARCHAR)"
  },
  {
    "answer": "SELECT transcription FROM table_20354_5 WHERE thai_name = \"พฤษภาคม\"",
    "question_en": "What's the transcription for the Thai name พฤษภาคม?",
    "question_th": "ชื่อไทยอาจถอดความว่าอะไร?",
    "context": "CREATE TABLE table_20354_5 (transcription VARCHAR, thai_name VARCHAR)"
  },
  {
    "answer": "SELECT sanskrit_word FROM table_20354_5 WHERE thai_name = \"มกราคม\"",
    "question_en": "What's the Sanskrit word for month with Thai name มกราคม?",
    "question_th": "ชื่อไทย มกราคม ภาษาสันสกฤตแปลว่าอะไร?",
    "context": "CREATE TABLE table_20354_5 (sanskrit_word VARCHAR, thai_name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(transcription) FROM table_20354_5 WHERE thai_name = \"พฤษภาคม\"",
    "question_en": "How many different transcriptions are there for the Thai name พฤษภาคม?",
    "question_th": "ชื่อไทยอาจถอดเสียงได้กี่แบบ?",
    "context": "CREATE TABLE table_20354_5 (transcription VARCHAR, thai_name VARCHAR)"
  },
  {
    "answer": "SELECT MAX(innings) FROM table_20367820_16 WHERE average = \"36.48\"",
    "question_en": "What is the innings when the average is 36.48?",
    "question_th": "อินนิ่งเมื่อเฉลี่ยอยู่ที่ 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_en": "How many no outs are there for an average of 43.70?",
    "question_th": "มีกี่คนที่ไม่มีเอาท์สำหรับค่าเฉลี่ย 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_en": "How many no outs for an average of 56.38?",
    "question_th": "มีกี่ครั้งที่ไม่ออกโดยเฉลี่ย 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_en": "How many poles had 78 points?",
    "question_th": "มีกี่เสามี 78 คะแนน?",
    "context": "CREATE TABLE table_20396_1 (poles VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(poles) FROM table_20396_1 WHERE points = \"72\"",
    "question_en": "How many poles had 72 points?",
    "question_th": "มีกี่เสามี 72 คะแนน?",
    "context": "CREATE TABLE table_20396_1 (poles VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT poles FROM table_20396_1 WHERE season = 2000",
    "question_en": "How many poles were there in season 2000?",
    "question_th": "มีกี่เสาในฤดูกาล 2000?",
    "context": "CREATE TABLE table_20396_1 (poles VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_20396_1 WHERE points = \"4\"",
    "question_en": "What team scored 4 points?",
    "question_th": "ทีมไหนได้ 4 แต้ม?",
    "context": "CREATE TABLE table_20396_1 (team VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_20462111_1 WHERE date = \"30.11.2008\"",
    "question_en": "Who won the cup on 30.11.2008?",
    "question_th": "ใครชนะถ้วยในวันที่ 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_en": "Who got the 3rd place in the cup on 01.02.2009?",
    "question_th": "ใครได้อันดับที่ 3 ในบอลถ้วยเมื่อวันที่ 01.02.2009?",
    "context": "CREATE TABLE table_20462111_1 (date VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_20462111_1 WHERE date = \"07.02.2009\"",
    "question_en": "Where was the cup on 07.02.2009 held?",
    "question_th": "ถ้วยรางวัลเมื่อวันที่ 07.02.2009 จัดขึ้นที่ไหน?",
    "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_en": "What was the population of the coastal location Isio in May of 2000?",
    "question_th": "ประชากรในบริเวณชายฝั่ง Isio ในเดือนพฤษภาคม พ.ศ. 2543 เป็นจำนวนเท่าใด",
    "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_en": "What was the share for rank 54?",
    "question_th": "ส่วนแบ่งสำหรับอันดับ 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_en": "What are the ratings/share ratio when viewers are 5.50 Million?",
    "question_th": "อัตราส่วนเรตติ้ง/ส่วนแบ่งเมื่อผู้ชมมีจำนวน 5.50 ล้านคนเป็นเท่าใด",
    "context": "CREATE TABLE table_20522228_2 (rating VARCHAR, viewers__millions_ VARCHAR)"
  },
  {
    "answer": "SELECT rank__timeslot_ FROM table_20522228_2 WHERE rating = \"4.1\"",
    "question_en": "What are the  rank timeslots where ratings are 4.1?",
    "question_th": "ช่วงเวลาจัดอันดับที่เรตติ้งอยู่ที่ 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_en": "What is overall rank when viewers are at 6.59 million?",
    "question_th": "อันดับโดยรวมเมื่อมีผู้ชมอยู่ที่ 6.59 ล้านคน?",
    "context": "CREATE TABLE table_20522228_2 (rank__overall_ VARCHAR, viewers__millions_ VARCHAR)"
  },
  {
    "answer": "SELECT episode FROM table_20522228_2 WHERE share = 8",
    "question_en": "What was the episode name when share was 8?",
    "question_th": "ตอนแชร์ตอนที่ 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_en": "Who were the writers of episode 20?",
    "question_th": "ใครคือผู้เขียนตอนที่ 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_en": "What county has others at 5?",
    "question_th": "มณฑลไหนมีคนอื่นตอนตี 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_en": "What is the percentage of others when McCain is at 57.7%",
    "question_th": "เปอร์เซ็นต์ของคนอื่นเมื่อแมคเคนอยู่ที่ 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_en": "What is Nader's percentage when Obama is 44.6%?",
    "question_th": "เปอร์เซ็นต์ของ Nader คือเท่าใดเมื่อ Obama อยู่ที่ 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_en": "What schools are accredited by COE?",
    "question_th": "โรงเรียนใดบ้างที่ได้รับการรับรองจาก COE?",
    "context": "CREATE TABLE table_2064747_1 (location_s_ VARCHAR, accreditation VARCHAR)"
  },
  {
    "answer": "SELECT location_s_ FROM table_2064747_1 WHERE founded = 1927",
    "question_en": "Where was there a school founded in 1927?",
    "question_th": "มีโรงเรียนแห่งหนึ่งก่อตั้งเมื่อปี พ.ศ. 2470 ที่ไหน?",
    "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_en": "What is the minimum length of the locations where the average climb percentage is exactly 59%?",
    "question_th": "ความยาวขั้นต่ำของสถานที่ซึ่งมีเปอร์เซ็นต์การปีนเฉลี่ยอยู่ที่ 59% คือเท่าใด",
    "context": "CREATE TABLE table_206361_2 (length__in_m_ INTEGER, average_climb___percentage_ VARCHAR)"
  },
  {
    "answer": "SELECT MAX(kilometer) FROM table_206361_2",
    "question_en": "What is the maximum number of km listed?",
    "question_th": "ระบุระยะทางสูงสุดได้กี่กิโลเมตร?",
    "context": "CREATE TABLE table_206361_2 (kilometer INTEGER)"
  },
  {
    "answer": "SELECT COUNT(δs_) AS ‡__cal_mol_−1_k_−1 FROM table_2068719_1 WHERE _butadiene = \"1,2-dimethylene-cyclohexane\"",
    "question_en": "Name the number of δs ‡ /cal mol −1 k −1 for butadiene being 1,2-dimethylene-cyclohexane",
    "question_th": "ตั้งชื่อจำนวน δs ‡ /cal mol −1 k −1 สำหรับบิวทาไดอีนเป็น 1,2-ไดเมทิลีน-ไซโคลเฮกเซน",
    "context": "CREATE TABLE table_2068719_1 (δs_ VARCHAR, _butadiene VARCHAR)"
  },
  {
    "answer": "SELECT for___percentage_ FROM table_20683381_3 WHERE against___percentage_ = \"17,874 (33.2)\"",
    "question_en": "When 17,874 (33.2) is the percentage against what is the percentage for?",
    "question_th": "เมื่อ 17,874 (33.2) เป็นเปอร์เซ็นต์เทียบกับเปอร์เซ็นต์เพื่ออะไร?",
    "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_en": "When 27,822 (72.3) is the percentage for how many electorate measurements are there?",
    "question_th": "เมื่อ 27,822 (72.3) เป็นเปอร์เซ็นต์ของการวัดผลผู้มีสิทธิ์เลือกตั้งจำนวนเท่าใด",
    "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_en": "When 13,895 (27.3) is the percentage against what is the toll poll percentage?",
    "question_th": "เมื่อ 13,895 (27.3) เป็นเปอร์เซ็นต์เทียบกับเปอร์เซ็นต์ของค่าผ่านทางคืออะไร?",
    "context": "CREATE TABLE table_20683381_3 (total_poll___percentage_ VARCHAR, against___percentage_ VARCHAR)"
  },
  {
    "answer": "SELECT against___percentage_ FROM table_20683381_3 WHERE ±_yes_side_2008___percentage_ = \"+18.1\"",
    "question_en": "When +18.1 is the ± yes side 2008 percentage what is the percentage of against?",
    "question_th": "เมื่อ +18.1 คือด้าน ± ใช่ 2008 เปอร์เซ็นต์ เปอร์เซ็นต์ของต่อคือเท่าใด",
    "context": "CREATE TABLE table_20683381_3 (against___percentage_ VARCHAR, ±_yes_side_2008___percentage_ VARCHAR)"
  },
  {
    "answer": "SELECT for___percentage_ FROM table_20683381_3 WHERE total_poll___percentage_ = \"60,254 (58.0)\"",
    "question_en": "When  60,254 (58.0) is the toll poll percentage what is the for percentage?",
    "question_th": "เมื่อ 60,254 (58.0) เป็นเปอร์เซ็นต์ของโพลค่าผ่านทาง เปอร์เซ็นต์ของค่าผ่านทางคือเท่าใด?",
    "context": "CREATE TABLE table_20683381_3 (for___percentage_ VARCHAR, total_poll___percentage_ VARCHAR)"
  },
  {
    "answer": "SELECT for___percentage_ FROM table_20683381_3 WHERE ±_yes_side_2008___percentage_ = \"+20.3\"",
    "question_en": "When +20.3 is the ± yes side 2008 (%) what is the for percentage?",
    "question_th": "เมื่อ +20.3 คือด้าน ± ใช่ 2008 (%) ค่าเปอร์เซ็นต์จะเป็นเท่าใด",
    "context": "CREATE TABLE table_20683381_3 (for___percentage_ VARCHAR, ±_yes_side_2008___percentage_ VARCHAR)"
  },
  {
    "answer": "SELECT original_air_date FROM table_20704243_6 WHERE season__number = 11",
    "question_en": "What was the original air date for season 11?",
    "question_th": "ซีซั่น 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_en": "What episode did John Rogers direct?",
    "question_th": "John Rogers กำกับตอนใด",
    "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_en": "Who directed the episode that aired on july15,2012?",
    "question_th": "ใครเป็นผู้กำกับตอนที่ออกอากาศเมื่อวันที่ 15 กรกฎาคม 2555?",
    "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_en": "Which episode aired on august19,2012?",
    "question_th": "ตอนไหนออกอากาศวันที่ 19 สิงหาคม 2555?",
    "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_en": "What is the weight with a cross section area of 25.3?",
    "question_th": "น้ำหนักที่มีพื้นที่หน้าตัด 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_en": "How many weights are there when the flange with is 304?",
    "question_th": "หน้าแปลนที่มี 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_en": "What is the web thickness if the flange width is 100?",
    "question_th": "ความหนาของรางเป็นเท่าใดหากความกว้างของหน้าแปลนคือ 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_en": "If the cross-section area is 21.2, what is the weight?",
    "question_th": "ถ้าพื้นที่หน้าตัดเป็น 21.2 จะมีน้ำหนักเท่าใด",
    "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_en": "What is the flange thickness when the weight is 19.9?",
    "question_th": "ความหนาของหน้าแปลนเมื่อน้ำหนัก 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_en": "Who directed the episode with a production code of 4WAB05?",
    "question_th": "ใครกำกับตอนด้วยรหัสการผลิต 4WAB05?",
    "context": "CREATE TABLE table_20726262_5 (directedby VARCHAR, production_code VARCHAR)"
  },
  {
    "answer": "SELECT directedby FROM table_20726262_5 WHERE production_code = \"4WAB04\"",
    "question_en": "Who directed the episode with a production code of 4WAB04?",
    "question_th": "ใครกำกับตอนด้วยรหัสการผลิต 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_en": "What episode was directed by Karen Gaviola?",
    "question_th": "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_en": "What was the score on February 8, 1992?",
    "question_th": "คะแนนเมื่อวันที่ 8 กุมภาพันธ์ 2535 เป็นเท่าใด",
    "context": "CREATE TABLE table_20745706_1 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_20745706_1 WHERE _number = \"5\"",
    "question_en": "Who is the opponent in game 5?",
    "question_th": "คู่ต่อสู้ในเกมที่ 5 คือใคร?",
    "context": "CREATE TABLE table_20745706_1 (opponent VARCHAR, _number VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_20745706_1 WHERE _number = \"5\"",
    "question_en": "What is the date of game 5?",
    "question_th": "เกมที่ 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_en": "What was attendance on March 11, 1995?",
    "question_th": "วันที่ 11 มีนาคม 1995 มีผู้เข้าร่วมเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_20745746_1 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_20745746_1 WHERE attendance = 7260",
    "question_en": "What was the score when 7260 people attended the game?",
    "question_th": "เมื่อมีคนเข้าร่วมเกม 7,260 คน คะแนนเป็นเท่าใด?",
    "context": "CREATE TABLE table_20745746_1 (score VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT _number FROM table_20745746_1 WHERE record = \"Loss\"",
    "question_en": "How many games resulted in a loss?",
    "question_th": "กี่เกมที่แพ้?",
    "context": "CREATE TABLE table_20745746_1 (_number VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_20745746_1 WHERE _number = \"7\"",
    "question_en": "What is the date of game 7?",
    "question_th": "เกมที่ 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_en": "What is the Obama# when McCain% is 64.4%?",
    "question_th": "Obama# คืออะไรเมื่อ McCain% อยู่ที่ 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_en": "Name the Others# when McCain# is 4730.",
    "question_th": "ตั้งชื่อ Others# เมื่อ McCain# คือ 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_en": "What County was the Obama% at 41.7%?",
    "question_th": "Obama% เป็นมณฑลใดที่ 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_en": "When McCain% was 64.8%, what is the Others#?",
    "question_th": "เมื่อ McCain% อยู่ที่ 64.8% 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_en": "What was the Obama% when McCain% was 61.2%?",
    "question_th": "Obama% เป็นเท่าใดเมื่อ McCain% อยู่ที่ 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_en": "Name the date for attendance 9372",
    "question_th": "ตั้งชื่อวันที่เข้าร่วม 9372",
    "context": "CREATE TABLE table_20745759_1 (date VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_20745759_1 WHERE date = \"January 18, 1997\"",
    "question_en": "Name the record for january 18, 1997",
    "question_th": "ตั้งชื่อบันทึกสำหรับวันที่ 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_en": "Name the score for march 29, 1997",
    "question_th": "ตั้งชื่อคะแนนของวันที่ 29 มีนาคม 1997",
    "context": "CREATE TABLE table_20745759_1 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT height__ft_ FROM table_20754016_2 WHERE country = \"Honduras\"",
    "question_en": "How tall is the contestant from Honduras?",
    "question_th": "ผู้เข้าแข่งขันจากฮอนดูรัสสูงเท่าไหร่?",
    "context": "CREATE TABLE table_20754016_2 (height__ft_ VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_20754016_2 WHERE hometown = \"Chihuahua\"",
    "question_en": "What country is the contestant from Chihuahua from?",
    "question_th": "ผู้เข้าแข่งขันชิวาวามาจากประเทศอะไร?",
    "context": "CREATE TABLE table_20754016_2 (country VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT contestant FROM table_20754016_2 WHERE height__cm_ = 173",
    "question_en": "What contestant is 173 cm tall?",
    "question_th": "ผู้เข้าแข่งขันคนไหนสูง 173 ซม.?",
    "context": "CREATE TABLE table_20754016_2 (contestant VARCHAR, height__cm_ VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_20754016_2 WHERE hometown = \"Salto\"",
    "question_en": "What country is the contestant from Salto from?",
    "question_th": "ผู้เข้าแข่งขันจากซัลโตมาจากประเทศใด?",
    "context": "CREATE TABLE table_20754016_2 (country VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT height__cm_ FROM table_20754016_2 WHERE country = \"Guatemala\"",
    "question_en": "How tall is the contestant from Guatemala?",
    "question_th": "ผู้เข้าแข่งขันจากกัวเตมาลาสูงเท่าไหร่?",
    "context": "CREATE TABLE table_20754016_2 (height__cm_ VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT MIN(enrollment) FROM table_2076463_2 WHERE location_s_ = \"Springfield\"",
    "question_en": "How much would you expect the enrollment to be in Springfield?",
    "question_th": "คุณคาดหวังว่าการลงทะเบียนในสปริงฟิลด์จะเป็นเท่าใด",
    "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_en": "where would you find a public university which was founded in 1915?",
    "question_th": "คุณจะพบมหาวิทยาลัยของรัฐที่ก่อตั้งในปี 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_en": "What is the only type of university that was founded in 1873?",
    "question_th": "มหาวิทยาลัยประเภทเดียวที่ก่อตั้งในปี พ.ศ. 2416 คืออะไร?",
    "context": "CREATE TABLE table_2076463_2 (control VARCHAR, founded VARCHAR)"
  },
  {
    "answer": "SELECT enrollment FROM table_2076463_2 WHERE location_s_ = \"St. Louis\"",
    "question_en": "What enrollement would you expect if you were attending the university in St. Louis?",
    "question_th": "คุณคาดหวังการลงทะเบียนอะไรหากคุณเข้าเรียนที่มหาวิทยาลัยในเมืองเซนต์หลุยส์",
    "context": "CREATE TABLE table_2076463_2 (enrollment VARCHAR, location_s_ VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_2076463_2 WHERE location_s_ = \"Kirksville\"",
    "question_en": "Which school would you come across if you were in Kirksville?",
    "question_th": "คุณจะเจอโรงเรียนไหนถ้าคุณอยู่ที่เคิร์กสวิลล์",
    "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_en": "What type of school would you see when visiting Missouri Western State University?",
    "question_th": "คุณจะเห็นโรงเรียนประเภทใดเมื่อมาเยี่ยมชม 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_en": "When east carolina university is the school what is the highest year founded?",
    "question_th": "เมื่อมหาวิทยาลัยอีสต์แคโรไลนาเป็นโรงเรียนที่ก่อตั้งปีสูงสุดคือปีใด",
    "context": "CREATE TABLE table_2076516_1 (founded INTEGER, school VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(enrollment__2012_) FROM table_2076516_1 WHERE founded = 1927",
    "question_en": "When 1927 is the founded year how many measurements of enrollment in 2012 are there?",
    "question_th": "เมื่อถึงปี พ.ศ. 2470 เป็นปีก่อตั้ง มีการวัดการลงทะเบียนในปี พ.ศ. 2555 กี่ครั้ง?",
    "context": "CREATE TABLE table_2076516_1 (enrollment__2012_ VARCHAR, founded VARCHAR)"
  },
  {
    "answer": "SELECT control FROM table_2076516_1 WHERE school = \"Western Carolina University\"",
    "question_en": "When western carolina university is the school what is the control?",
    "question_th": "เมื่อมหาวิทยาลัย Western Carolina เป็นโรงเรียน อะไรคือการควบคุม?",
    "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_en": "When university of north carolina at charlotte is the school what is the lowest enrollment in 2012?",
    "question_th": "เมื่อมหาวิทยาลัย North Carolina at charlotte เป็นโรงเรียน ค่าลงทะเบียนต่ำสุดในปี 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_en": "What is the enrollment for the school in bottineau?",
    "question_th": "การลงทะเบียนของโรงเรียนใน 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_en": "What is the control for the school accredited by the higher learning commission ( nca ), ccne?",
    "question_th": "การควบคุมโรงเรียนที่ได้รับการรับรองจากคณะกรรมการการเรียนรู้ระดับสูง (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_en": "What year was the school founded with an 898 enrollment?",
    "question_th": "โรงเรียนก่อตั้งในปีใดโดยมีผู้ลงทะเบียน 898 คน",
    "context": "CREATE TABLE table_2076522_2 (founded INTEGER, enrollment__fall_2010_ VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(accreditation) FROM table_2076522_2 WHERE founded = 2006",
    "question_en": "How many schools founded in 2006?",
    "question_th": "ในปี 2549 มีโรงเรียนกี่แห่งที่ก่อตั้ง?",
    "context": "CREATE TABLE table_2076522_2 (accreditation VARCHAR, founded VARCHAR)"
  },
  {
    "answer": "SELECT accreditation FROM table_2076522_2 WHERE school = \"United Tribes Technical College\"",
    "question_en": "What is the accrediation for united tribes technical college?",
    "question_th": "วิทยาลัยเทคนิคสหชนเผ่าได้รับการรับรองวิทยฐานะอย่างไร?",
    "context": "CREATE TABLE table_2076522_2 (accreditation VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT MAX(founded) FROM table_2076490_1",
    "question_en": "What is the latest founding date? ",
    "question_th": " วันก่อตั้งล่าสุดคือเมื่อใด?",
    "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_en": "What was the enrollment (2005) for baccalaureate colleges , for Granite State College?",
    "question_th": "การลงทะเบียน (พ.ศ. 2548) สำหรับวิทยาลัยระดับปริญญาตรี สำหรับ 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_en": "What year is the founding year, for the school that had an enrollment in 2005 of 963?",
    "question_th": "ปีใดคือปีก่อตั้งของโรงเรียนที่มีการลงทะเบียนในปี 2548 จำนวน 963 แห่ง?",
    "context": "CREATE TABLE table_2076490_1 (founded VARCHAR, enrollment__2005_ VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_2076490_1 WHERE enrollment__2005_ = \"69\"",
    "question_en": "What school had an enrollment in 2005 of 69?",
    "question_th": "โรงเรียนใดมีผู้ลงทะเบียนเรียนในปี 2548 จำนวน 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_en": "How many students enrolled in 2005 at New Hampshire Institute of Art?",
    "question_th": "มีนักเรียนกี่คนที่ลงทะเบียนในปี 2005 ที่ 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_en": "Name the most founded for enrollment 2005 being 1285",
    "question_th": "ตั้งชื่อที่ก่อตั้งมากที่สุดสำหรับการลงทะเบียนในปี 2548 คือ 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_en": "Name the main location for public and masters university",
    "question_th": "ตั้งชื่อที่ตั้งหลักสำหรับมหาวิทยาลัยของรัฐและมหาวิทยาลัยระดับปริญญาโท",
    "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_en": "Name the type for mcminnville",
    "question_th": "ตั้งชื่อประเภทของ mcminnville",
    "context": "CREATE TABLE table_2076533_1 (type VARCHAR, main_location VARCHAR)"
  },
  {
    "answer": "SELECT control FROM table_2076533_1 WHERE main_location = \"Albany\"",
    "question_en": "Name the control for albany",
    "question_th": "ตั้งชื่อตัวควบคุมสำหรับออลบานี",
    "context": "CREATE TABLE table_2076533_1 (control VARCHAR, main_location VARCHAR)"
  },
  {
    "answer": "SELECT MIN(founded) FROM table_2076533_1 WHERE school = \"Gutenberg College\"",
    "question_en": "Name the least founded for gutenberg college",
    "question_th": "ตั้งชื่อวิทยาลัยที่ก่อตั้งน้อยที่สุดสำหรับวิทยาลัยกูเทนแบร์ก",
    "context": "CREATE TABLE table_2076533_1 (founded INTEGER, school VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_2076533_1 WHERE enrollment__2005_ = 1245",
    "question_en": "Name the type for 1245 enrollment",
    "question_th": "ตั้งชื่อประเภทการลงทะเบียน 1245",
    "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_en": "when type of work is novel and published in english is 1977, what was published in russian?",
    "question_th": "เมื่อประเภทของงานเป็นนวนิยายและตีพิมพ์เป็นภาษาอังกฤษคือปี 1977 อะไรตีพิมพ์เป็นภาษารัสเซีย?",
    "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 = \"Хромая судьба\"",
    "question_en": "How many types of work is хромая судьба?",
    "question_th": "хромая судьба มีงานกี่ประเภท?",
    "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_en": "What is the russian title of the ugly swans?",
    "question_th": "ชื่อรัสเซียของหงส์น่าเกลียดคืออะไร?",
    "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_en": "when it published in english is n/a and published in russian is 1986, what is the type of work?",
    "question_th": "เมื่อตีพิมพ์เป็นภาษาอังกฤษไม่มี และตีพิมพ์เป็นภาษารัสเซียในปี 1986 งานประเภทใด?",
    "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_en": "List the presbyterian members of the senate.",
    "question_th": "รายชื่อสมาชิกเพรสไบทีเรียนของวุฒิสภา",
    "context": "CREATE TABLE table_20803065_1 (senator VARCHAR, religion VARCHAR)"
  },
  {
    "answer": "SELECT state FROM table_20803065_1 WHERE senator = \"Jim DeMint\"",
    "question_en": "Which state does congressman jim demint represent?",
    "question_th": "สมาชิกสภาผู้แทนราษฎร jim demint เป็นตัวแทนของรัฐใด",
    "context": "CREATE TABLE table_20803065_1 (state VARCHAR, senator VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(tie_no) FROM table_20819379_2 WHERE team_2 = \"Osijek\"",
    "question_en": "Name the total number of tie number for team 2 osijek",
    "question_th": "ทายผลรวมเลขเสมอกันของทีม 2 โอซิเยก",
    "context": "CREATE TABLE table_20819379_2 (tie_no VARCHAR, team_2 VARCHAR)"
  },
  {
    "answer": "SELECT MIN(total_placings_s_) FROM table_20823568_3",
    "question_en": "What is the minimum number of total placings?",
    "question_th": "จำนวนตำแหน่งขั้นต่ำทั้งหมดคือเท่าไร?",
    "context": "CREATE TABLE table_20823568_3 (total_placings_s_ INTEGER)"
  },
  {
    "answer": "SELECT result FROM table_20849830_1 WHERE record = \"3-1\"",
    "question_en": "What was the result of the game with the record of 3-1?",
    "question_th": "ผลเกมกับสถิติ 3-1 เป็นยังไงบ้าง?",
    "context": "CREATE TABLE table_20849830_1 (result VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_20849830_1 WHERE record = \"2-1\"",
    "question_en": "What was the date of the game with the record of 2-1?",
    "question_th": "ในเกมวันที่เท่าไหร่ที่มีสถิติ 2-1?",
    "context": "CREATE TABLE table_20849830_1 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT MAX(game) FROM table_20849830_1",
    "question_en": "How many games were there in the 1966 season?",
    "question_th": "มีกี่เกมในฤดูกาล 1966?",
    "context": "CREATE TABLE table_20849830_1 (game INTEGER)"
  },
  {
    "answer": "SELECT game FROM table_20849830_1 WHERE record = \"3-1\"",
    "question_en": "What game number had a record of 3-1?",
    "question_th": "หมายเลขเกมใดมีสถิติ 3-1?",
    "context": "CREATE TABLE table_20849830_1 (game VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_20855452_4 WHERE new_points = 1705",
    "question_en": "What happened when the new points was 1705?",
    "question_th": "เกิดอะไรขึ้นเมื่อจุดใหม่คือ 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_en": "What was the max when they score 2200?",
    "question_th": "สูงสุดเมื่อพวกเขาได้คะแนน 2200 คือเท่าไร?",
    "context": "CREATE TABLE table_20855452_4 (new_points INTEGER, points VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_20855452_4 WHERE player = \"Agnieszka Radwańska\"",
    "question_en": "How many points did agnieszka radwańska score?",
    "question_th": "Agnieszka radwanska ทำคะแนนได้กี่คะแนน?",
    "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_en": "How many points did shahar pe'er score?",
    "question_th": "ชาฮาร์ เปเอร์ ได้กี่คะแนน?",
    "context": "CREATE TABLE table_20855452_4 (points VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT weight FROM table_20872722_1 WHERE college = \"Western Ontario\"",
    "question_en": "What is the weight for western ontario college?",
    "question_th": "น้ำหนักของวิทยาลัย Western ontario คืออะไร?",
    "context": "CREATE TABLE table_20872722_1 (weight VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(position) FROM table_20872722_1 WHERE round = 3",
    "question_en": "How many positions have round 3?",
    "question_th": "รอบ 3 มีกี่ตำแหน่งครับ?",
    "context": "CREATE TABLE table_20872722_1 (position VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_20872722_1 WHERE weight = \"225lb\"",
    "question_en": "Which position has 225lb as weight?",
    "question_th": "ตำแหน่งใดมีน้ำหนัก 225 ปอนด์?",
    "context": "CREATE TABLE table_20872722_1 (position VARCHAR, weight VARCHAR)"
  },
  {
    "answer": "SELECT MIN(round) FROM table_20872722_1",
    "question_en": "What is the round?",
    "question_th": "รอบคืออะไร?",
    "context": "CREATE TABLE table_20872722_1 (round INTEGER)"
  },
  {
    "answer": "SELECT COUNT(height) FROM table_20872722_1 WHERE position = \"Cornerback\"",
    "question_en": "What is the height of the cornerback position?",
    "question_th": "ตำแหน่งกองหลังสูงเท่าไร?",
    "context": "CREATE TABLE table_20872722_1 (height VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT MAX(year_joined) FROM table_20887670_1",
    "question_en": "What is the most recent year joined?",
    "question_th": "ปีที่ผ่านมาเข้าร่วมคือปีใด?",
    "context": "CREATE TABLE table_20887670_1 (year_joined INTEGER)"
  },
  {
    "answer": "SELECT affiliation FROM table_20887670_1 WHERE mascot = \"Hilltoppers\"",
    "question_en": "what is the affiliation of the hilltoppers mascot?",
    "question_th": "มาสคอตชาวเขามีความเกี่ยวข้องอะไร?",
    "context": "CREATE TABLE table_20887670_1 (affiliation VARCHAR, mascot VARCHAR)"
  },
  {
    "answer": "SELECT affiliation FROM table_20887670_1 WHERE colors = \"Maroon and White\"",
    "question_en": "what is the affiliation of the colors maroon and white? ",
    "question_th": " สีแดงและสีขาวมีความเกี่ยวข้องอะไร?",
    "context": "CREATE TABLE table_20887670_1 (affiliation VARCHAR, colors VARCHAR)"
  },
  {
    "answer": "SELECT enrollment FROM table_20887670_1 WHERE institution = \"Central\"",
    "question_en": "what is the number of enrollment of the central institution?",
    "question_th": "สถาบันกลางลงทะเบียนเรียนจำนวนเท่าไร?",
    "context": "CREATE TABLE table_20887670_1 (enrollment VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT institution FROM table_20887670_1 WHERE location = \"Sparta, WI\"",
    "question_en": "what is the name of the institution of the sparta, wi location?",
    "question_th": "สถาบันสปาร์ตามีที่ตั้งชื่ออะไร?",
    "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_en": "in what year did the colors red and gold join?",
    "question_th": "สีแดงและสีทองเข้าร่วมในปีใด?",
    "context": "CREATE TABLE table_20887670_1 (year_joined VARCHAR, colors VARCHAR)"
  },
  {
    "answer": "SELECT circuit FROM table_20884163_2 WHERE winner = \"Rick Kelly\"",
    "question_en": "What circuit did rick kelly win on?",
    "question_th": "Rick Kelly ชนะในวงจรใด?",
    "context": "CREATE TABLE table_20884163_2 (circuit VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT circuit FROM table_20884163_2 WHERE race_title = \"PlaceMakers V8 Supercars\"",
    "question_en": "What circuit features the placemakers v8 supercars race?",
    "question_th": "สนามใดมีการแข่งขันซูเปอร์คาร์ placemakers v8?",
    "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_en": "What dates was the falken tasmania challenge race that had triple eight race engineering as the team?",
    "question_th": "การแข่งขัน Falken Tasmania Challenge วันที่เท่าไหร่ซึ่งมีวิศวกรรมการแข่งขันสามแปดเป็นทีม",
    "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_en": "What was the report for the winton race?",
    "question_th": "รายงานการแข่งขัน winton คืออะไร?",
    "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_en": "What medium was used for the sculpture of George Harold Baker? ",
    "question_th": " ประติมากรรมของ 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_en": "Who was the subject of the sculpture created in 1982? ",
    "question_th": " หัวข้อของประติมากรรมที่สร้างขึ้นในปี 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_en": "Who was the subject of the bronze sculpture who was a colonist and soldier in Ville Marie, New France? ",
    "question_th": " ประติมากรรมสำริดที่เป็นอาณานิคมและทหารในวิลล์มารีนิวฟรองซ์คือใคร?",
    "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_en": "What was the public office of the subject whose sculpture was created in 1954? ",
    "question_th": " สำนักงานสาธารณะของเรื่องที่มีการสร้างประติมากรรมในปี 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_en": "What medium was used for the sculpture by Ernest Richard Gause? ",
    "question_th": " 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_en": "Name the originl title for no stars in the jungle",
    "question_th": "ตั้งชื่อชื่อเรื่องว่า 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_en": "Name the original title for not nominated result with report on death",
    "question_th": "ตั้งชื่อชื่อเดิมของผลการไม่ได้รับการเสนอชื่อพร้อมรายงานการเสียชีวิต",
    "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_en": "Name the total number of results for octubre",
    "question_th": "ตั้งชื่อจำนวนผลลัพธ์ทั้งหมดสำหรับเดือนตุลาคม",
    "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_en": "Name the film title for la boca del lobo",
    "question_th": "ตั้งชื่อหนังเรื่อง 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_en": "Name the year for reportaje a la muerte",
    "question_th": "ตั้งชื่อปีสำหรับ 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_en": "How many directors for #15?",
    "question_th": "กรรมการคนที่ 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_en": "What is every director with production code of NABF13?",
    "question_th": "ผู้กำกับทุกคนที่มีรหัสการผลิต 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_en": "What are all values for U.S. viewers(millions) with Kevin Curran as a writer?",
    "question_th": "อะไรคือคุณค่าทั้งหมดสำหรับผู้ชมชาวอเมริกัน (ล้าน) ที่มี Kevin Curran ในฐานะนักเขียน?",
    "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_en": "How many titles for the production code of NABF07?",
    "question_th": "รหัสการผลิตของ 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_en": "Name the episode for 18-49 rating being 3.6",
    "question_th": "ตั้งชื่อตอนเรตติ้ง 18-49 เป็น 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_en": "Name the rank timeslot for 11.59 viewers",
    "question_th": "ตั้งชื่อช่วงเวลาจัดอันดับสำหรับผู้ชม 11.59 น",
    "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_en": "Name the first air date for 9 episode",
    "question_th": "ตั้งชื่อวันออกอากาศครั้งแรก 9 ตอน",
    "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_en": "Name the rank timeslot for 18-49 share being 13",
    "question_th": "ตั้งชื่อช่วงเวลาอันดับสำหรับ 18-49 หุ้นเป็น 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_en": "Name the total number of rank timeslot for 18-49 being 3.1",
    "question_th": "ตั้งชื่อจำนวนรวมของช่วงเวลาอันดับสำหรับ 18-49 เป็น 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_en": "Name the total number for 18-49 share being 18-49 being 3.1",
    "question_th": "ให้บอกจำนวนรวมของหุ้น 18-49 เป็น 18-49 เป็น 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_en": "What was the date for the Champs Sports Bowl?",
    "question_th": "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_en": "What is the date when the city is San Antonio, Texas?",
    "question_th": "เมืองซานอันโตนิโอ รัฐเท็กซัส คือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_20996923_20 (date VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_20996923_20 WHERE television = \"NFL Network\"",
    "question_en": "What is the city when the Television network was the NFL Network?",
    "question_th": "เมืองใดเมื่อเครือข่ายโทรทัศน์คือ 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_en": "How many opponents did the Sun Devils play when they scored 41 points?",
    "question_th": "ซันเดวิลส์เล่นฝ่ายตรงข้ามกี่คนเมื่อทำคะแนนได้ 41 แต้ม?",
    "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_en": "What was the record for the Sun Devils when they scored 44 points?",
    "question_th": "ซันเดวิลส์ทำสถิติได้ 44 แต้มเป็นอย่างไรบ้าง?",
    "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_en": "When the torsion spring diameter is 38.4cm what would be the length or weight of the missile",
    "question_th": "เมื่อเส้นผ่านศูนย์กลางสปริงบิดเป็น 38.4 ซม. ความยาวหรือน้ำหนักของมิสไซล์จะเป็นเท่าใด",
    "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_en": "Who wrote the episode that had 8.84 million viewers?",
    "question_th": "ใครเป็นคนเขียนตอนที่มีผู้ชม 8.84 ล้านคน?",
    "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_en": "How many million viewers watched episode number 20?",
    "question_th": "มีผู้ชมดูตอนที่ 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_en": "What was the title of the episode written by Keith Temple?",
    "question_th": "ตอนที่เขียนโดย Keith Temple ชื่ออะไร",
    "context": "CREATE TABLE table_21025437_5 (title VARCHAR, written_by VARCHAR)"
  },
  {
    "answer": "SELECT MIN(series_no) FROM table_21025437_3",
    "question_en": "what is the lowest value under the column series no.?",
    "question_th": "ค่าต่ำสุดภายใต้หมายเลขชุดคอลัมน์คือเท่าใด?",
    "context": "CREATE TABLE table_21025437_3 (series_no INTEGER)"
  },
  {
    "answer": "SELECT COUNT(episode) FROM table_2102945_1 WHERE viewers__in_millions_ = \"7.4\"",
    "question_en": "When there are  7.4 million viewers how many episodes are there?",
    "question_th": "เมื่อมีผู้ชม 7.4 ล้านคน จะมีกี่ตอน?",
    "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_en": "When 24:31 is the run time how many measurements of viewers (in millions) are there?",
    "question_th": "เมื่อถึงเวลา 24:31 น. มีการวัดผลผู้ชม (เป็นล้าน) กี่คน?",
    "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_en": "When 24:31 is the run time how many millions of viewers are there?",
    "question_th": "รายการเวลา 24:31 น. ยอดวิวกี่ล้านคน?",
    "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_en": "When there are 7.5 million viewers what is the archive?",
    "question_th": "เมื่อมีผู้ชม 7.5 ล้านคน ไฟล์เก็บถาวรคืออะไร?",
    "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_en": "Name the broadcast network for saitama prefecture",
    "question_th": "ตั้งชื่อเครือข่ายออกอากาศสำหรับจังหวัดไซตามะ",
    "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_en": "Name the broadcast network for chiba prefecture",
    "question_th": "ตั้งชื่อเครือข่ายออกอากาศสำหรับจังหวัดชิบะ",
    "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_en": "Name the broadcast day and timings for tv saitama",
    "question_th": "ตั้งชื่อวันและเวลาออกอากาศของทีวีไซตามะ",
    "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_en": "Name the opponent for opponents being 12",
    "question_th": "ตั้งชื่อคู่ต่อสู้สำหรับฝ่ายตรงข้ามอายุ 12 ปี",
    "context": "CREATE TABLE table_21092427_1 (opponent VARCHAR, opponents VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_21092427_1 WHERE record = \"9-1\"",
    "question_en": "Name the result for 9-1 record",
    "question_th": "ตั้งชื่อผลลัพธ์สำหรับบันทึก 9-1",
    "context": "CREATE TABLE table_21092427_1 (result VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT MAX(opponents) FROM table_21092427_1 WHERE record = \"8-1\"",
    "question_en": "Name the most opponents for 8-1 record",
    "question_th": "ระบุชื่อคู่ต่อสู้มากที่สุดด้วยสถิติ 8-1",
    "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_en": "How many seats in 2006 has a % 1997 rating of 38.9?",
    "question_th": "จำนวนที่นั่งในปี 2549 มีคะแนน % ในปี 2540 ที่ 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_en": "What was the % 2006 rating in 2006 where there were 5 seats?",
    "question_th": "คะแนน % ปี 2549 ในปี 2549 มี 5 ที่นั่งเป็นเท่าใด",
    "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_en": "How many time was the political party the social democratic party of germany?",
    "question_th": "พรรคการเมืองเป็นพรรคสังคมประชาธิปไตยของเยอรมนีกี่ครั้งแล้ว?",
    "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_en": "How many political parties had a %2006 rating of 43.5?",
    "question_th": "มีพรรคการเมืองกี่พรรคที่มีคะแนน %2006 ที่ 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_en": "How many seats were there in 2001 when there were 11 seats in 2006?",
    "question_th": "ในปี พ.ศ. 2544 มีที่นั่งทั้งหมด 11 ที่นั่งในปี พ.ศ. 2549 มีกี่ที่นั่ง",
    "context": "CREATE TABLE table_21132404_1 (seats_2001 INTEGER, seats_2006 VARCHAR)"
  },
  {
    "answer": "SELECT won_promotion FROM table_2119448_3 WHERE season = 1987",
    "question_en": "Name the won promotion for 1987",
    "question_th": "ตั้งชื่อโปรโมชั่นที่ชนะสำหรับปี 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_en": "Name the won promotion for kalmar ff",
    "question_th": "ตั้งชื่อโปรโมชั่นที่ชนะสำหรับ 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_en": "If the matches for NQF is 2009, what is the position?",
    "question_th": "ถ้าแมตช์ NQF คือปี 2009 ตำแหน่งอะไร?",
    "context": "CREATE TABLE table_21223773_2 (position VARCHAR, matches_for_nqf VARCHAR)"
  },
  {
    "answer": "SELECT robin FROM table_21234111_10 WHERE result = \"Eliminated\"",
    "question_en": "What was Robin's score when she was eliminated?",
    "question_th": "คะแนนของโรบินเมื่อเธอตกรอบคือเท่าไร?",
    "context": "CREATE TABLE table_21234111_10 (robin VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT song FROM table_21234111_10 WHERE robin = \"4.0\"",
    "question_en": "What song did Robin perform with a result of 4.0?",
    "question_th": "Robin แสดงเพลงอะไรด้วยผลลัพธ์ของ 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_en": "Among  deaths  106 000  how many is crude rate.",
    "question_th": "ในบรรดาผู้เสียชีวิต 106,000 ราย อัตราน้ำมันดิบมีกี่ราย",
    "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_en": "where births is 388 000 how many number is natural increase",
    "question_th": "โดยที่การเกิดคือ 388,000 จำนวนคนเพิ่มขึ้นตามธรรมชาติ",
    "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_en": "period between 1985 - 1990 have minimum infant mortality rate of what.",
    "question_th": "ช่วงระหว่างปี พ.ศ. 2528 - 2533 มีอัตราการตายของทารกขั้นต่ำเท่ากับเท่าใด",
    "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_en": "How many winners scored exactly 202 (-11)?",
    "question_th": "มีผู้ชนะกี่คนที่ได้คะแนน 202 (-11) พอดี?",
    "context": "CREATE TABLE table_21260421_1 (winner VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(score) FROM table_21260421_1 WHERE location = \"Alabama\"",
    "question_en": "How many tournaments were held at Alabama?",
    "question_th": "มีการแข่งขันที่อลาบามากี่รายการ?",
    "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_en": "Where was the tourney when Louisville won the regular season?",
    "question_th": "การแข่งขันอยู่ที่ไหนเมื่อหลุยส์วิลล์ชนะในฤดูกาลปกติ?",
    "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_en": "Where was the tourney when  UCLA won the regular season?",
    "question_th": "การแข่งขันอยู่ที่ไหนเมื่อ UCLA ชนะในฤดูกาลปกติ?",
    "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_en": "Where was the tourney when  Weber State won the regular season?",
    "question_th": "การแข่งขันอยู่ที่ไหนเมื่อ Weber State ชนะในฤดูกาลปกติ?",
    "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_en": "Which drivers won $40,000 in the NASCAR Winston Cup?",
    "question_th": "นักแข่งคนไหนที่ได้รับรางวัล 40,000 ดอลลาร์ใน 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_en": "What series is at the position 7?",
    "question_th": "ซีรีย์อะไรอยู่ที่ตำแหน่ง 7?",
    "context": "CREATE TABLE table_21297652_1 (series VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT series FROM table_21297652_1 WHERE points = 30",
    "question_en": "In what series did the driver get 30 points?",
    "question_th": "ผู้ขับขี่ได้รับ 30 คะแนนในซีรีส์ใด",
    "context": "CREATE TABLE table_21297652_1 (series VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT winnings FROM table_21297652_1 WHERE driver = \"Dale Jarrett\"",
    "question_en": "How much did Dale Jarrett win?",
    "question_th": "Dale Jarrett ชนะเท่าไหร่?",
    "context": "CREATE TABLE table_21297652_1 (winnings VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT MAX(households) FROM table_21310575_2",
    "question_en": "Name the most households",
    "question_th": "ตั้งชื่อครัวเรือนมากที่สุด",
    "context": "CREATE TABLE table_21310575_2 (households INTEGER)"
  },
  {
    "answer": "SELECT COUNT(attendance) FROM table_21377473_7 WHERE score = \"0 - 1 Barbiero 78'\"",
    "question_en": "When 0 - 1 barbiero 78' is the score how many measurements of attendance are there?",
    "question_th": "เมื่อ 0 - 1 บาร์บิเอโร 78' เป็นคะแนน มีการวัดการเข้างานกี่แบบ?",
    "context": "CREATE TABLE table_21377473_7 (attendance VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT stadium FROM table_21377473_7 WHERE score = \"3 - 1 Hughes 64'\"",
    "question_en": "When 3 - 1 hughes 64' is the score what is the stadium?",
    "question_th": "เมื่อ 3 - 1 ฮิวจ์ 64 ฟุตเป็นสกอร์ สนามไหน?",
    "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_en": "When 1 - 1 leckie 90+3' is the score what is the stadium?",
    "question_th": "เมื่อ 1 - 1 เล็กกี้ 90+3' เป็นสกอร์ สนามไหน?",
    "context": "CREATE TABLE table_21377473_7 (stadium VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_21373283_3 WHERE pole_position = \"Adriano Buzaid\"",
    "question_en": "What date did Adriano Buzaid have the pole position?",
    "question_th": "Adriano Buzaid ได้ตำแหน่งโพลโพซิชั่นวันที่เท่าไหร่?",
    "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_en": "What is the winning team at Oulton Park when Max Chilton held the pole position?",
    "question_th": "ทีมไหนเป็นผู้ชนะที่ Oulton Park เมื่อ Max Chilton ดำรงตำแหน่งโพล?",
    "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_en": "What date did Renger Van Der Zande have the pole position at Donington Park?",
    "question_th": "Renger Van Der Zande ขึ้นตำแหน่งโพลโพซิชั่นที่ 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_en": "Name the regular season for 2005",
    "question_th": "ตั้งชื่อฤดูกาลปกติสำหรับปี 2548",
    "context": "CREATE TABLE table_2139111_1 (regular_season VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(ministries) FROM table_21422977_1 WHERE nº = 3",
    "question_en": "When nº is 3, what are all the ministires?",
    "question_th": "เมื่อ n คือ 3 มินิสไทร์ทั้งหมดมีกี่ค่า?",
    "context": "CREATE TABLE table_21422977_1 (ministries VARCHAR, nº VARCHAR)"
  },
  {
    "answer": "SELECT coalition_parties FROM table_21422977_1 WHERE nº = 3",
    "question_en": "When nº is 3, what are all the coaliton parties?",
    "question_th": "เมื่อเลข 3 อยู่ พรรคร่วมมีอะไรบ้าง?",
    "context": "CREATE TABLE table_21422977_1 (coalition_parties VARCHAR, nº VARCHAR)"
  },
  {
    "answer": "SELECT MAX(ministries) FROM table_21422977_1",
    "question_en": "What is the most amount of ministries?",
    "question_th": "กระทรวงมีจำนวนมากที่สุดคือเท่าไร?",
    "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_en": "What is the ministries number when duration is 4 years, 4 days (1,465 days)?",
    "question_th": "กระทรวงใดมีระยะเวลา 4 ปี 4 วัน (1,465 วัน)?",
    "context": "CREATE TABLE table_21422977_2 (ministries VARCHAR, duration VARCHAR)"
  },
  {
    "answer": "SELECT ministers FROM table_21422977_2 WHERE cabinet__nickname_ = \"Steingrímur Hermannsson III\"",
    "question_en": "How many ministers are there when the cabinet (nickname) is \tSteingrímur Hermannsson III?",
    "question_th": "เมื่อคณะรัฐมนตรี (ชื่อเล่น) คือ Steingrímur Hermannsson III มีรัฐมนตรีกี่คน?",
    "context": "CREATE TABLE table_21422977_2 (ministers VARCHAR, cabinet__nickname_ VARCHAR)"
  },
  {
    "answer": "SELECT duration FROM table_21422977_2 WHERE nº = 33",
    "question_en": "What is the duration for no 33?",
    "question_th": "หมายเลข 33 มีระยะเวลาเท่าไร?",
    "context": "CREATE TABLE table_21422977_2 (duration VARCHAR, nº VARCHAR)"
  },
  {
    "answer": "SELECT episodes_used FROM table_2144389_9 WHERE _number = 1",
    "question_en": "When 1 is the number what episodes were used?",
    "question_th": "เมื่อ 1 เป็นตัวเลขที่ใช้ตอนอะไร?",
    "context": "CREATE TABLE table_2144389_9 (episodes_used VARCHAR, _number VARCHAR)"
  },
  {
    "answer": "SELECT japanese_translation FROM table_2144389_9 WHERE japanese_title = \"七色アーチ\"",
    "question_en": "When 七色アーチ is the japanese title what is the japanese translation?",
    "question_th": "เมื่อ 七色Arーチ เป็นชื่อภาษาญี่ปุ่น ภาษาญี่ปุ่นแปลว่าอะไร?",
    "context": "CREATE TABLE table_2144389_9 (japanese_translation VARCHAR, japanese_title VARCHAR)"
  },
  {
    "answer": "SELECT japanese_title FROM table_2144389_9 WHERE _number = 5",
    "question_en": "When 5 is the number what is the japanese title?",
    "question_th": "เมื่อ 5 เป็นตัวเลข ชื่อภาษาญี่ปุ่นเรียกว่าอะไร?",
    "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_en": "When momoiro clover z is the vocalist how many japanese titles are there?",
    "question_th": "เมื่อ momoiro clover z เป็นนักร้อง มีเพลงภาษาญี่ปุ่นกี่เพลง?",
    "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_en": "When momoiro clover z is the vocalist what is the japanese translation?",
    "question_th": "เมื่อ momoiro clover z เป็นนักร้อง ภาษาญี่ปุ่นแปลว่าอะไร?",
    "context": "CREATE TABLE table_2144389_9 (japanese_translation VARCHAR, vocalist VARCHAR)"
  },
  {
    "answer": "SELECT vocalist FROM table_2144389_9 WHERE rōmaji = \"Pokémon ieru kana? BW\"",
    "question_en": "When  pokémon ieru kana? bw is the romaji who is the vocalist?",
    "question_th": "เมื่อไรโปเกมอน ieru kana? bw คือโรมาจิใครเป็นนักร้อง?",
    "context": "CREATE TABLE table_2144389_9 (vocalist VARCHAR, rōmaji VARCHAR)"
  },
  {
    "answer": "SELECT miles__km_ FROM table_2144863_1 WHERE driver = \"Jeff Gordon\"",
    "question_en": "Name the miles for jeff gordon",
    "question_th": "ตั้งชื่อไมล์ให้เจฟฟ์ กอร์ดอน",
    "context": "CREATE TABLE table_2144863_1 (miles__km_ VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT laps FROM table_2144863_1 WHERE driver = \"Ryan Newman\"",
    "question_en": "Name the laps for ryan newman",
    "question_th": "ตั้งชื่อรอบของ 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_en": "What is the theme of the song by Soul Brothers Six",
    "question_th": "เพลงของ 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_en": "Which week is the theme First Solo",
    "question_th": "สัปดาห์ไหนเป็นธีม 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_en": "Which week is the theme n/a",
    "question_th": "สัปดาห์ไหนเป็นธีม 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_en": "How many total songs has the order #1",
    "question_th": "อันดับ 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_en": "Which order #1 has a result of bottom 2",
    "question_th": "ลำดับที่ 1 ใดมีผลกับอันดับ 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_en": "Whats the song of name with an original artist Garth Brooks",
    "question_th": "เพลงชื่ออะไรของศิลปินต้นฉบับ 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_en": "What was the date when Terry McAuliffe won 19%?",
    "question_th": "วันที่เท่าไหร่ที่ Terry McAuliffe ชนะ 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_en": "What was the source of the poll that gave McAuliffe 30% on June 8?",
    "question_th": "แหล่งที่มาของการสำรวจความคิดเห็นที่ให้ McAuliffe 30% เมื่อวันที่ 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_en": "What was Brian Moran's tally in the Survey USA poll where Creigh Deeds had 26%?",
    "question_th": "คะแนนของ Brian Moran ในแบบสำรวจความคิดเห็นของ Survey USA ที่ Creigh Deeds มี 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_en": "What source showed Brian Moran at 19%?",
    "question_th": "แหล่งข้อมูลใดแสดงให้ Brian Moran อยู่ที่ 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_en": "What was Brian Moran's share of the votes when Creigh Deeds had 30%?",
    "question_th": "ส่วนแบ่งการโหวตของ Brian Moran คืออะไรเมื่อ Creigh Deeds มี 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_en": "What source gave 26% of the votes to Brian Moran?",
    "question_th": "แหล่งใดให้คะแนน 26% แก่ 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_en": "How many insurgents have 602 as the total per period?",
    "question_th": "ผู้ก่อความไม่สงบมีทั้งหมด 602 รายต่องวด?",
    "context": "CREATE TABLE table_21636599_1 (insurgents INTEGER, total_per_period VARCHAR)"
  },
  {
    "answer": "SELECT MAX(security_forces) FROM table_21636599_1",
    "question_en": "How many security forces?",
    "question_th": "มีกองกำลังรักษาความปลอดภัยกี่คน?",
    "context": "CREATE TABLE table_21636599_1 (security_forces INTEGER)"
  },
  {
    "answer": "SELECT COUNT(insurgents) FROM table_21636599_1 WHERE period = \"2003\"",
    "question_en": "How many insurgents have 2003 as a period?",
    "question_th": "ปี 2546 มีผู้ก่อความไม่สงบกี่คน?",
    "context": "CREATE TABLE table_21636599_1 (insurgents VARCHAR, period VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_2169966_2 WHERE avg_start = \"16.8\"",
    "question_en": "What position did he finish in the year his average start was 16.8?",
    "question_th": "เขาจบตำแหน่งอะไรในปีเริ่มต้นเฉลี่ย 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_en": "What were his winnings when he had 14 top 10s?",
    "question_th": "ชัยชนะของเขาคืออะไรเมื่อเขามี 14 อันดับแรก?",
    "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_en": "How many years did he have an average start of 20.7?",
    "question_th": "เขามีค่าเฉลี่ยเริ่มต้นที่ 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_en": "What was his average finish when his average start was 27.7?",
    "question_th": "การจบสกอร์เฉลี่ยของเขาเมื่อออกสตาร์ตเฉลี่ยอยู่ที่ 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_[€] = \"447,000,000\"",
    "question_en": "What is the ISIN that has a coupon of 1.02 and a value issued of 447,000,000?",
    "question_th": "ISIN ที่มีคูปอง 1.02 และมูลค่าออก 447,000,000 คืออะไร?",
    "context": "CREATE TABLE table_21692771_1 (isin VARCHAR, coupon VARCHAR, amount_issued_ VARCHAR, € VARCHAR)"
  },
  {
    "answer": "SELECT isin FROM table_21692771_1 WHERE amount_issued_[€] = \"223,000,000\"",
    "question_en": "What is the ISIN that has an amount issued of 223,000,000?",
    "question_th": "ISIN ที่มียอดออก 223,000,000 คืออะไร?",
    "context": "CREATE TABLE table_21692771_1 (isin VARCHAR, amount_issued_ VARCHAR, € VARCHAR)"
  },
  {
    "answer": "SELECT maturity FROM table_21692771_1 WHERE coupon = \"0.726\"",
    "question_en": "What is the maturity that has a coupon of exactly 0.726?",
    "question_th": "อายุครบกำหนดที่มีคูปองเท่ากับ 0.726 พอดีคือเท่าใด",
    "context": "CREATE TABLE table_21692771_1 (maturity VARCHAR, coupon VARCHAR)"
  },
  {
    "answer": "SELECT coupon FROM table_21692771_1 WHERE issuer = \"COMMERZBANK AG\"",
    "question_en": "What is the coupon that has an issuer of Commerzbank AG?",
    "question_th": "คูปองที่มีผู้ออก Commerzbank AG คืออะไร?",
    "context": "CREATE TABLE table_21692771_1 (coupon VARCHAR, issuer VARCHAR)"
  },
  {
    "answer": "SELECT maturity FROM table_21692771_1 WHERE isin = \"DE000A0BVBN3\"",
    "question_en": "What is the maturity date of the ISIN labeled DE000A0BVBN3?",
    "question_th": "ISIN ที่มีป้ายกำกับ DE000A0BVBN3 ครบกำหนดคือเมื่อใด",
    "context": "CREATE TABLE table_21692771_1 (maturity VARCHAR, isin VARCHAR)"
  },
  {
    "answer": "SELECT isin FROM table_21692771_1 WHERE maturity = \"3/11/2011\"",
    "question_en": "What is the ISIN associated with the maturity date of 3/11/2011?",
    "question_th": "ISIN ที่เกี่ยวข้องกับวันครบกำหนดไถ่ถอนในวันที่ 3/11/2554 คืออะไร",
    "context": "CREATE TABLE table_21692771_1 (isin VARCHAR, maturity VARCHAR)"
  },
  {
    "answer": "SELECT report FROM table_2175685_1 WHERE average_speed__mph_ = \"87.599\"",
    "question_en": "What was the report when the average speed (mph) was 87.599?",
    "question_th": "รายงานคืออะไรเมื่อความเร็วเฉลี่ย (mph) อยู่ที่ 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_en": "What team won when the race time was 3:12:30?",
    "question_th": "ทีมใดชนะเมื่อเวลาแข่งขันคือ 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_en": "How many miles (km) were driven when the average speed (mph) was 103.145?",
    "question_th": "ขับไปกี่ไมล์ (กม.) เมื่อความเร็วเฉลี่ย (ไมล์ต่อชั่วโมง) เท่ากับ 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_en": "If the position is 12th, what was the series?",
    "question_th": "ถ้าอันดับที่ 12 จะเป็นซีรีย์อะไร?",
    "context": "CREATE TABLE table_21795846_1 (series VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(podiums) FROM table_21795846_1 WHERE position = \"9th\"",
    "question_en": "If the position is 9th, what is the total podiums number?",
    "question_th": "ถ้าอันดับที่ 9 มีจำนวนโพเดี้ยมรวมเท่าไร?",
    "context": "CREATE TABLE table_21795846_1 (podiums VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_21795846_1 WHERE points = 16",
    "question_en": "If there is 16 points, what was the position? ",
    "question_th": " ถ้ามี 16 แต้ม อยู่ตำแหน่งอะไร?",
    "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_en": "What is the point total for the Formula Renault 2.0 Italy series?",
    "question_th": "คะแนนรวมของซีรีส์ Formula Renault 2.0 Italy คืออะไร",
    "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_en": "What is the minimum number of f/laps in the Italian Formula Renault 2.0 Winter Series?",
    "question_th": "จำนวน f/รอบขั้นต่ำใน 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_en": "How many poles were there in the Italian Formula Renault 2.0 Winter Series?",
    "question_th": "มีกี่เสาใน 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_en": "How many podiums were there in the Italian Formula Renault 2.0 Winter Series?",
    "question_th": "มีกี่โพเดียมใน 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_en": "What was the highest position for the person who performed in 16 races?",
    "question_th": "ตำแหน่งสูงสุดของผู้ที่ทำการแข่งขัน 16 รายการคือตำแหน่งใด",
    "context": "CREATE TABLE table_21795650_1 (position VARCHAR, races VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_21795650_1 WHERE podiums = 4",
    "question_en": "What team had 4 podiums?",
    "question_th": "ทีมไหนได้ 4 โพเดียม?",
    "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_en": "Name the year for is my magic",
    "question_th": "ชื่อปีคือความมหัศจรรย์ของฉัน",
    "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_en": "Name the year for japanese",
    "question_th": "ตั้งชื่อปีเป็นภาษาญี่ปุ่น",
    "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_en": "Name the result for already famous",
    "question_th": "ตั้งชื่อผลลัพธ์ให้มีชื่อเสียงแล้ว",
    "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_en": "Name the result for japanese",
    "question_th": "ตั้งชื่อผลลัพธ์เป็นภาษาญี่ปุ่น",
    "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_en": "What was the best top five result when the average start is 28.5? ",
    "question_th": " อะไรคือผลลัพธ์ที่ดีที่สุดห้าอันดับแรกเมื่อค่าเฉลี่ยการออกสตาร์ทคือ 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_en": "What was the average finish in 2007?",
    "question_th": "การจบสกอร์โดยเฉลี่ยในปี 2550 เป็นเท่าใด",
    "context": "CREATE TABLE table_2182573_2 (avg_finish VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT MIN(poles) FROM table_2182573_2 WHERE year = 1996",
    "question_en": "How many poles were there in 1996?",
    "question_th": "ในปี 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_en": "With team #21/#07 ss-green light racing, what was the average finish number?",
    "question_th": "กับทีม #21/#07 ss-green light racing เลขเข้าเส้นชัยเฉลี่ยเท่าไหร่?",
    "context": "CREATE TABLE table_2190919_3 (avg_finish VARCHAR, team_s_ VARCHAR)"
  },
  {
    "answer": "SELECT MAX(poles) FROM table_2190919_3",
    "question_en": "What was the maximum amount of the poles?",
    "question_th": "จำนวนเสาสูงสุดคือเท่าใด?",
    "context": "CREATE TABLE table_2190919_3 (poles INTEGER)"
  },
  {
    "answer": "SELECT team_s_ FROM table_2190919_3 WHERE avg_start = \"11.8\"",
    "question_en": "If the average start is 11.8, what was the team name?",
    "question_th": "ถ้าออกสตาร์ทเฉลี่ย 11.8 ทีมชื่ออะไร?",
    "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_en": "If the winnings was $250,667, what is the top 5 total number?",
    "question_th": "หากเงินรางวัลคือ 250,667 ดอลลาร์ จำนวนรวม 5 อันดับแรกคือเท่าใด",
    "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_en": "With an average finish of 29.0, what was the average start?",
    "question_th": "จบสกอร์เฉลี่ย 29.0 สตาร์ทได้เฉลี่ยเท่าไหร่?",
    "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_en": "what is the total number of reasons for change where the date the successor was seated is june 8, 1876?",
    "question_th": "จำนวนเหตุผลทั้งหมดสำหรับการเปลี่ยนแปลงโดยวันที่ผู้สืบทอดตำแหน่งคือวันที่ 8 มิถุนายน พ.ศ. 2419 เป็นเท่าใด",
    "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_en": "what is the reason for change where the date the successor was seated was july 28, 1876?",
    "question_th": "เหตุใดจึงเปลี่ยนวันที่ผู้สืบทอดตำแหน่งคือวันที่ 28 กรกฎาคม พ.ศ. 2419?",
    "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_en": "what is the district where the vacator is vacant?",
    "question_th": "อำเภอไหนที่ผู้ว่างงานว่าง?",
    "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_en": "Who was the manufacturer for Matt Kenseth on March 7?",
    "question_th": "ใครคือผู้ผลิต Matt Kenseth เมื่อวันที่ 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_en": "What was the average speed for a racetime of 3:08:08?",
    "question_th": "ความเร็วเฉลี่ยสำหรับเวลาแข่งขันที่ 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_en": "How many laps were there in 2002?",
    "question_th": "ปี 2545 มีกี่รอบ?",
    "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_en": "How many numbers were recorded under miles for the 3:00:46 race time?",
    "question_th": "มีกี่หมายเลขที่ถูกบันทึกภายใต้ไมล์สำหรับเวลาการแข่งขัน 3:00:46?",
    "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_en": "What was the race time for Jeff Gordon?",
    "question_th": "Jeff Gordon แข่งขันเวลาใด?",
    "context": "CREATE TABLE table_2196127_1 (race_time VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT MAX(year) FROM table_2199290_1",
    "question_en": "What is the latest year?",
    "question_th": "ล่าสุดคือปีอะไรคะ?",
    "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_en": "What is every total for the University of the Cordilleras UC Dance Squad?",
    "question_th": "ผลรวมทุกอย่างของ 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_en": "What is every school with basic elements of 52?",
    "question_th": "ทุกโรงเรียนที่มีองค์ประกอบพื้นฐานของ 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_en": "How many stunts have a total of 201.5?",
    "question_th": "มีการแสดงผาดโผนทั้งหมด 201.5 ครั้ง?",
    "context": "CREATE TABLE table_21995420_6 (stunts VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_21995420_6 WHERE stunts = \"48\"",
    "question_en": "What is every school with stunts of 48?",
    "question_th": "ทุกโรงเรียนที่มีการแสดงโลดโผน 48 คืออะไร?",
    "context": "CREATE TABLE table_21995420_6 (school VARCHAR, stunts VARCHAR)"
  },
  {
    "answer": "SELECT deductions FROM table_21995420_6 WHERE pyramids = \"49\"",
    "question_en": "What is every deduction for pyramids of 49?",
    "question_th": "การหักเงินสำหรับปิรามิด 49 แต่ละครั้งเป็นเท่าใด",
    "context": "CREATE TABLE table_21995420_6 (deductions VARCHAR, pyramids VARCHAR)"
  },
  {
    "answer": "SELECT MAX(year) FROM table_2199290_2 WHERE partner = \"Wesley Moodie\"",
    "question_en": "In what year was the partner Wesley Moodie?",
    "question_th": "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–6(9), 7–6(1)\"",
    "question_en": "What was the outcome when the final score was 7–6(9), 7–6(1)?",
    "question_th": "ผลลัพธ์จะเป็นเช่นไรเมื่อคะแนนสุดท้ายคือ 7–6(9), 7–6(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_en": "What are the scores in matches against Tony Roche?",
    "question_th": "โทนี่ โรช เจอกับสกอร์เท่าไหร่?",
    "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–6, 4–6, 2–6\"",
    "question_en": "Which championship has a final score of 3–6, 4–6, 2–6?",
    "question_th": "แชมป์รายการใดมีคะแนนสุดท้าย 3–6, 4–6, 2–6?",
    "context": "CREATE TABLE table_2201724_1 (championship VARCHAR, score_in_the_final VARCHAR)"
  },
  {
    "answer": "SELECT MAX(year) FROM table_2201724_1",
    "question_en": "What is Fred Stolle's final year of competing in a championship? ",
    "question_th": " ปีสุดท้ายของ Fred Stolle ในการแข่งขันชิงแชมป์คืออะไร?",
    "context": "CREATE TABLE table_2201724_1 (year INTEGER)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_2201724_1 WHERE score_in_the_final = \"3–6, 4–6, 2–6\"",
    "question_en": "List the total number of years that have a score of 3–6, 4–6, 2–6.",
    "question_th": "เขียนจำนวนปีทั้งหมดที่มีคะแนน 3–6, 4–6, 2–6",
    "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_en": "List the final score of Wimbledon (2/2).",
    "question_th": "รายการคะแนนสุดท้ายของวิมเบิลดัน (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_en": "What is the winner in event number 15h?",
    "question_th": "ผู้ชนะในกิจกรรมหมายเลข 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_en": "Who is the winner with an elapsed time of 12 h 42 min?",
    "question_th": "ใครคือผู้ชนะโดยใช้เวลา 12 ชั่วโมง 42 นาที?",
    "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_en": "What is the prize for the elapsed time of 10 h 10 min?",
    "question_th": "รางวัลสำหรับเวลาที่ผ่านไป 10 ชั่วโมง 10 นาที คืออะไร?",
    "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_en": "Who is the winner of event # 1h and dateca is Apr 2?",
    "question_th": "ใครคือผู้ชนะกิจกรรม # 1h และ dateca คือวันที่ 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_en": "What is the event # when the winner is what is 7x6?",
    "question_th": "เหตุการณ์ #เมื่อผู้ชนะคืออะไร 7x6 คืออะไร?",
    "context": "CREATE TABLE table_22050544_1 (event__number VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_22056184_1 WHERE poles = 2",
    "question_en": "Which positions are the poles 2?",
    "question_th": "เสา 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_en": "How many positions have f/laps of 1 and british formula three series?",
    "question_th": "มีกี่ตำแหน่งที่มี f/laps ของ 1 และ 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_en": "Which position has 9 podiums?",
    "question_th": "ตำแหน่งใดมี 9 โพเดียม?",
    "context": "CREATE TABLE table_22056184_1 (position VARCHAR, podiums VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(team) FROM table_22056184_1 WHERE position = \"7th\"",
    "question_en": "How many teams have 7th position?",
    "question_th": "อันดับ 7 มีกี่ทีม?",
    "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_en": "How many poles when British formula renault 2.0 series and f/laps 1?",
    "question_th": "กี่โพลเมื่อรถสูตรอังกฤษ renault 2.0 series และ 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_en": "How many points when pole are 1?",
    "question_th": "เมื่อโพลเป็น 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_en": "how many wiaa classifications does fort vancouver high school have?",
    "question_th": "โรงเรียนมัธยมฟอร์ตแวนคูเวอร์มีการจัดประเภท wiaa กี่ระดับ",
    "context": "CREATE TABLE table_22058547_1 (wiaa_classification VARCHAR, high_school VARCHAR)"
  },
  {
    "answer": "SELECT high_school FROM table_22058547_1 WHERE mascot = \"Storm\"",
    "question_en": "How many high schools have storm mascots?",
    "question_th": "มีโรงเรียนมัธยมกี่แห่งที่มีมาสคอตพายุ",
    "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_en": "What wiaa classifications does vancouver itech prepratory have?",
    "question_th": "vancouver itech prepraatory มีการจำแนกประเภท wiaa อะไรบ้าง?",
    "context": "CREATE TABLE table_22058547_1 (wiaa_classification VARCHAR, high_school VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_22058547_1 WHERE mascot = \"Trappers\"",
    "question_en": "What school classifications have trappers as mascot?",
    "question_th": "ประเภทของโรงเรียนใดที่มีกับดักเป็นตัวนำโชค?",
    "context": "CREATE TABLE table_22058547_1 (type VARCHAR, mascot VARCHAR)"
  },
  {
    "answer": "SELECT played FROM table_2208838_4 WHERE season = \"1989\"",
    "question_en": "How many games were played in the 1989 season?",
    "question_th": "ฤดูกาล 1989 มีการเล่นกี่เกม?",
    "context": "CREATE TABLE table_2208838_4 (played VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT played FROM table_2208838_4 WHERE points = 927",
    "question_en": "How many games were played by the player with 927 points?",
    "question_th": "ผู้เล่นเล่นเกมได้กี่เกมด้วยคะแนน 927?",
    "context": "CREATE TABLE table_2208838_4 (played VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_2208838_4 WHERE average = \"20.4\"",
    "question_en": "Which team had an average of 20.4?",
    "question_th": "ทีมไหนมีคะแนนเฉลี่ย 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_en": "What was the date of appointment for the 10th person in position?",
    "question_th": "แต่งตั้งบุคคลที่ 10 เข้ารับตำแหน่งเมื่อใด?",
    "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_en": "What is the date of vacancy for the person that left because of end of caretaker contract?",
    "question_th": "ผู้ที่ออกจากงานเนื่องจากหมดสัญญาผู้ดูแลจะว่างเมื่อใด",
    "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²_ = \"361.719\"",
    "question_en": "How many prefectures have an area of 361.719 kilometers squared?",
    "question_th": "มีกี่จังหวัดที่มีพื้นที่ 361.719 ตารางกิโลเมตร",
    "context": "CREATE TABLE table_221398_1 (prefecture VARCHAR, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT prefecture FROM table_221398_1 WHERE number_in_map = \"39\"",
    "question_en": "What prefecture is listed in the map as number 39?",
    "question_th": "จังหวัดใดที่อยู่ในแผนที่เป็นหมายเลข 39",
    "context": "CREATE TABLE table_221398_1 (prefecture VARCHAR, number_in_map VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(pop_density___km²_) FROM table_221398_1 WHERE number_in_map = \"16\"",
    "question_en": "How many prefectures have a population density of 16 people/kilometers squared?",
    "question_th": "มีกี่จังหวัดที่มีความหนาแน่นของประชากร 16 คน/กิโลเมตรยกกำลังสอง?",
    "context": "CREATE TABLE table_221398_1 (pop_density___km²_ VARCHAR, number_in_map VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(wins) FROM table_2216245_2 WHERE winnings = \"$95,180\"",
    "question_en": "How many wins did he have when he had $95,180 in winnings?",
    "question_th": "เขาได้รับชัยชนะกี่ครั้งเมื่อเขามีเงินรางวัล 95,180 ดอลลาร์?",
    "context": "CREATE TABLE table_2216245_2 (wins VARCHAR, winnings VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(top_10) FROM table_2216245_2 WHERE winnings = \"$80,490\"",
    "question_en": "How many top 10s did he have the year he won $80,490?",
    "question_th": "เขามี 10 อันดับแรกกี่คนในปีที่เขาชนะรางวัล $80,490?",
    "context": "CREATE TABLE table_2216245_2 (top_10 VARCHAR, winnings VARCHAR)"
  },
  {
    "answer": "SELECT MIN(wins) FROM table_2216245_2",
    "question_en": "What is his lowest number of wins?",
    "question_th": "จำนวนชัยชนะต่ำสุดของเขาคือเท่าไร?",
    "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_en": "How many top 5s when he was on team #28/#49 jay robinson racing?",
    "question_th": "ตอนที่เขาอยู่ในทีม #28/#49 เจย์ โรบินสัน มีท็อป 5 กี่ทีม?",
    "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_en": "What date did episode 258 in the series originally air?",
    "question_th": "ตอนที่ 258 ของซีรีส์เดิมออกอากาศวันไหน?",
    "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_en": "Who directed episode 266 in the series?",
    "question_th": "ใครเป็นผู้กำกับตอนที่ 266 ในซีรีส์?",
    "context": "CREATE TABLE table_2221484_2 (directed_by VARCHAR, series__number VARCHAR)"
  },
  {
    "answer": "SELECT MIN(season) FROM table_2223177_3",
    "question_en": "Name the least season",
    "question_th": "ตั้งชื่อฤดูกาลที่น้อยที่สุด",
    "context": "CREATE TABLE table_2223177_3 (season INTEGER)"
  },
  {
    "answer": "SELECT btu_gal FROM table_2224692_1 WHERE kwh_gal = \"24.04\"",
    "question_en": "What's the BTU/Gal of the fuel whose kWh/Gal is 24.04?",
    "question_th": "BTU/Gal ของน้ำมันเชื้อเพลิงที่มี kWh/Gal เท่ากับ 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_en": "What's the HP -hr/gal of the fuel whose GGE is 0.9000?",
    "question_th": "HP -hr/gal ของน้ำมันเชื้อเพลิงที่มี GGE เท่ากับ 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_en": "What is the percentage yield for a DPMO of 3.4?",
    "question_th": "เปอร์เซ็นต์ผลตอบแทนสำหรับ DPMO ที่ 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_en": "How many percentage yield figures are there when 6.7% are defective?",
    "question_th": "เมื่อ 6.7% มีข้อบกพร่องมีตัวเลขผลตอบแทนกี่เปอร์เซ็นต์?",
    "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_en": "What is long-term C PK when the short-term C PK is 2.00?",
    "question_th": "C PK ระยะยาวจะเป็นเท่าใด เมื่อ C PK ระยะสั้นคือ 2.00",
    "context": "CREATE TABLE table_222448_1 (long_term_c_pk VARCHAR, short_term_c_pk VARCHAR)"
  },
  {
    "answer": "SELECT sigma__with_15σ_shift_ FROM table_222448_1 WHERE percent_defective = \"69%\"",
    "question_en": "What is the sigma (with 1.5σ shift) when there are 69% defective?",
    "question_th": "ซิกมาคืออะไร (ที่มีการเลื่อน1.5σ) เมื่อมีข้อบกพร่อง 69%",
    "context": "CREATE TABLE table_222448_1 (sigma__with_15σ_shift_ VARCHAR, percent_defective VARCHAR)"
  },
  {
    "answer": "SELECT percent_defective FROM table_222448_1 WHERE sigma__with_15σ_shift_ = \"2.5\"",
    "question_en": "When sigma (with 1.5σ shift) is 2.5, what percent is defective?",
    "question_th": "เมื่อซิกมา (ที่มีการเลื่อน1.5σ) เท่ากับ 2.5 เปอร์เซ็นต์ที่มีข้อบกพร่อง?",
    "context": "CREATE TABLE table_222448_1 (percent_defective VARCHAR, sigma__with_15σ_shift_ VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(us_viewers__millions_) FROM table_22265225_1 WHERE no_in_series = \"36\"",
    "question_en": "How many times was u.s. Viewers listed for episode 36 in the series?",
    "question_th": "พวกเรามีรายชื่อผู้ชมสำหรับตอนที่ 36 ในซีรีส์กี่ครั้ง?",
    "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_en": "How many million U.s. Viewers watched episode 12 in the season?",
    "question_th": "ผู้ชม Us รับชมตอนที่ 12 ในฤดูกาลนี้กี่ล้านคน",
    "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_en": "What day did the episode with a production code of 218 originally air?",
    "question_th": "ตอนที่มีรหัสการผลิต 218 เดิมออกอากาศวันไหน?",
    "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_en": "How many episodes were listed as number 29 in the series?",
    "question_th": "มีกี่ตอนที่ถูกระบุว่าเป็นหมายเลข 29 ในซีรีส์?",
    "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_en": "What was the Sp of the 2nd Position?",
    "question_th": "Sp ของตำแหน่งที่ 2 คืออะไร?",
    "context": "CREATE TABLE table_22265261_1 (sp VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(age) FROM table_22265261_1 WHERE sp = \"200/1\"",
    "question_en": "How old was the horse when the SP was 200/1?",
    "question_th": "ม้าอายุเท่าไหร่เมื่อ SP อยู่ที่ 200/1?",
    "context": "CREATE TABLE table_22265261_1 (age VARCHAR, sp VARCHAR)"
  },
  {
    "answer": "SELECT distance FROM table_22265261_1 WHERE position = \"11th\"",
    "question_en": "What was the distance for the 11th position?",
    "question_th": "อันดับที่ 11 ระยะทางเท่าไหร่?",
    "context": "CREATE TABLE table_22265261_1 (distance VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT jockey FROM table_22265261_1 WHERE position = \"7th\"",
    "question_en": "Who was the jockey in 7th position?",
    "question_th": "ใครคือจ๊อกกี้ในตำแหน่งที่ 7?",
    "context": "CREATE TABLE table_22265261_1 (jockey VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT distance FROM table_22265261_1 WHERE handicap__st_lb_ = \"11-2\"",
    "question_en": "What was the distance when the handicap was 11-2?",
    "question_th": "แฮนดิแคปอยู่ที่ 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_en": "If the production code is 6.18, what was the episode title?",
    "question_th": "ถ้ารหัสการผลิตเป็น 6.18 ชื่อตอนคืออะไร?",
    "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_en": "If the original air date January 19, 1992, who was the episode directed by?",
    "question_th": "ถ้าต้นฉบับออกอากาศวันที่ 19 มกราคม 2535 ภาคนี้กำกับโดยใคร?",
    "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_en": "What's the season number of the episode with series number 84?",
    "question_th": "ตอนหมายเลข 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_en": "How many season numbers are there for the episodes written by Art Everett?",
    "question_th": "ตอนที่เขียนโดย 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_en": "How many series numbers do the episodes originally aired on October 28, 1990?",
    "question_th": "ตอนแรกออกอากาศเมื่อวันที่ 28 ตุลาคม 2533 มีกี่ซีรีส์?",
    "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_en": "What' the series number of the episode with season number 13?",
    "question_th": "ตอนที่ 13 ซีซั่น 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_en": "What was the report for the Sunday race where the winner had an average speed of 128.27 mph?",
    "question_th": "อะไรคือรายงานสำหรับการแข่งขันวันอาทิตย์ที่ผู้ชนะมีความเร็วเฉลี่ย 128.27 ไมล์ต่อชั่วโมง?",
    "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_en": "On what day was the race that Cale Yarborough won in 364 laps?",
    "question_th": "การแข่งขันที่ Cale Yarborough ชนะในรอบ 364 รอบคือวันไหน?",
    "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_en": "Who manufactured the car that won with an average speed of 126.259 mph?",
    "question_th": "ใครเป็นผู้ผลิตรถยนต์ที่ชนะด้วยความเร็วเฉลี่ย 126.259 ไมล์ต่อชั่วโมง",
    "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_en": "What year did the Leo Jackson Racing team win?",
    "question_th": "ทีม Leo Jackson Racing ชนะในปีไหน?",
    "context": "CREATE TABLE table_22298383_1 (year VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT owned_since FROM table_22329326_1 WHERE station = \"WLS-TV\"",
    "question_en": "When was the station WLS-TV owned since?",
    "question_th": "สถานี WLS-TV เป็นเจ้าของตั้งแต่เมื่อไหร่?",
    "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_en": "What market rank and city had the station KABC-TV?",
    "question_th": "สถานี 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_en": "What was the earliest year a station was owned since?",
    "question_th": "นับตั้งแต่ปีแรกสุดที่สถานีเป็นเจ้าของคือปีใด",
    "context": "CREATE TABLE table_22329326_1 (owned_since INTEGER)"
  },
  {
    "answer": "SELECT COUNT(share) FROM table_22353769_3 WHERE viewers__millions_ = \"3.62\"",
    "question_en": "How many episodes had 3.62 million viewers?",
    "question_th": "มีผู้ชม 3.62 ล้านคนกี่ตอน?",
    "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_en": "How many episodes have episode #11?",
    "question_th": "ตอนที่ 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_en": "How many epsidode(s) had 3.63 million viewers?",
    "question_th": "มีกี่ตอนที่มีผู้ชม 3.63 ล้านคน?",
    "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_en": "What nation had the athlete sebastian coe category:articles with hcards?",
    "question_th": "ประเทศใดมีนักกีฬาเซบาสเตียน โคอี หมวดหมู่:บทความที่มี 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_en": "What rank did the nation with athlete peter snell category:articles with hcards have?",
    "question_th": "ประเทศที่มีนักกีฬา Peter Snell มีอันดับอะไร:บทความที่มี hcards มีอันดับอะไร",
    "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_en": "how many times was nation counted where athlete is shuhei nishida category:articles with hcards",
    "question_th": "กี่ครั้งแล้วที่นับประเทศโดยที่นักกีฬาคือ shuhei nishida หมวดหมู่:บทความที่มี hcards",
    "context": "CREATE TABLE table_22355_50 (nation VARCHAR, athlete VARCHAR)"
  },
  {
    "answer": "SELECT MIN(silver) FROM table_22355_50",
    "question_en": "What is the least number of silver medals won",
    "question_th": "ได้เหรียญเงินน้อยที่สุดคือเท่าไร",
    "context": "CREATE TABLE table_22355_50 (silver INTEGER)"
  },
  {
    "answer": "SELECT MAX(silver) FROM table_22355_71",
    "question_en": "How many silver medalist was won?",
    "question_th": "ผู้ชนะเลิศเหรียญเงินได้กี่คน?",
    "context": "CREATE TABLE table_22355_71 (silver INTEGER)"
  },
  {
    "answer": "SELECT league AS Cup FROM table_22357065_1 WHERE nation = \"Northern Ireland\"",
    "question_en": "Name the league cup for northern ireland",
    "question_th": "ตั้งชื่อลีกคัพสำหรับไอร์แลนด์เหนือ",
    "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_en": "If the spacecraft is the Shenzhou 7 Eva 1, what is the start (utc) date and time?",
    "question_th": "หากยานอวกาศเป็น Shenzhou 7 Eva 1 วันที่และเวลาเริ่มต้น (utc) คืออะไร?",
    "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_en": "If the start (utc) is November 18, 2008 18:09, what is the name of the spacecraft?",
    "question_th": "หากจุดเริ่มต้น (utc) คือวันที่ 18 พฤศจิกายน 2551 เวลา 18:09 น. ยานอวกาศชื่ออะไร",
    "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_en": "What is the end (UTC) for spacecraft STS-114 Eva 3?",
    "question_th": "จุดสิ้นสุด (UTC) สำหรับยานอวกาศ 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_en": "What is the start date and time of the walk that ends March 28, 2005, 11:31?",
    "question_th": "วันที่และเวลาเริ่มต้นของการเดินสิ้นสุดวันที่ 28 มีนาคม 2548 เวลา 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_en": "Which points classification has 4 as the stage?",
    "question_th": "การจำแนกคะแนนใดมี 4 เป็นเวที",
    "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_en": "Which malaysian team classification had mohd nur rizuan zainal as points classification?",
    "question_th": "การจัดประเภททีมมาเลเซียใดที่มี Mohd nur rizuan zainal เป็นการแบ่งคะแนน",
    "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_en": "Which team classification has malaysian team classification of mncf continental team?",
    "question_th": "การจัดประเภททีมใดมีการจัดประเภททีมมาเลเซียของทีมระดับทวีป MNCF?",
    "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_en": "When did the term end that began January 3, 2007?",
    "question_th": "ภาคเรียนที่เริ่มในวันที่ 3 มกราคม 2550 สิ้นสุดลงเมื่อใด",
    "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_en": "When did the term began when the date of election is N/A?",
    "question_th": "วาระนี้เริ่มเมื่อใดเมื่อวันเลือกตั้งเป็น 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_en": "When did the term end that began December 4, 1978?",
    "question_th": "ภาคเรียนที่เริ่มในวันที่ 4 ธันวาคม พ.ศ. 2521 สิ้นสุดลงเมื่อใด",
    "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_en": "When did the term begin that ended January 3, 1995?",
    "question_th": "วาระเริ่มต้นซึ่งสิ้นสุดในวันที่ 3 มกราคม พ.ศ. 2538 เมื่อใด",
    "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_en": "What branch of government was the term that ended on January 3, 2001?",
    "question_th": "รัฐบาลสาขาใดเป็นวาระที่สิ้นสุดในวันที่ 3 มกราคม พ.ศ. 2544",
    "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_en": "Where is the position when houston, tx is the hometown and worthing is the high school?",
    "question_th": "ตำแหน่งไหนเมื่อ houston, tx คือบ้านเกิด และ Worthing คือโรงเรียนมัธยม?",
    "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_en": "Which highschool has senior (rs) for the year?",
    "question_th": "โรงเรียนมัธยมแห่งใดที่มีรุ่นพี่ (rs) สำหรับปี?",
    "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_en": "What is the # when conroe, tx is the hometown?",
    "question_th": "# คืออะไรเมื่อ conroe, tx คือบ้านเกิด?",
    "context": "CREATE TABLE table_22496344_1 (_number INTEGER, home_town VARCHAR)"
  },
  {
    "answer": "SELECT MAX(weight) FROM table_22496344_1 WHERE _number = 20",
    "question_en": "What is the weight when 20 is the number?",
    "question_th": "น้ำหนักเมื่อ 20 เป็นตัวเลข?",
    "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_en": "What is the name when senior is the year with the # less than 10.0?",
    "question_th": "รุ่นพี่คือปีที่มี # น้อยกว่า 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_en": "What is the # for worthing high school?",
    "question_th": "#โรงเรียนมัธยมที่คุ้มค่า คืออะไร?",
    "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_en": "Name the reason for change for jonathan jennings",
    "question_th": "ระบุเหตุผลในการเปลี่ยนแปลงของโจนาธาน เจนนิ่งส์",
    "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_en": "Name the date successor seated for failure to elect",
    "question_th": "ตั้งชื่อวันที่ผู้สืบทอดตำแหน่งที่นั่งไม่เลือก",
    "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_en": "Name the successor for james noble died in previous congress",
    "question_th": "ระบุชื่อผู้สืบทอดตำแหน่ง เจมส์ โนเบิล เสียชีวิตในรัฐสภาครั้งก่อน",
    "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_en": "Name the state class for isaac d. barnard (j)",
    "question_th": "ตั้งชื่อคลาส state สำหรับ isaac d บาร์นาร์ด (เจ)",
    "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_en": "Who is the successor when the reason for change is died November 11, 1845?",
    "question_th": "ใครคือผู้สืบทอดเมื่อสาเหตุของการเปลี่ยนแปลงเสียชีวิตในวันที่ 11 พฤศจิกายน พ.ศ. 2388",
    "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_en": "How many date of successor seated is new jersey 2nd in the district?",
    "question_th": "นิวเจอร์ซี่อันดับที่ 2 ของเขตนั่งกี่วัน?",
    "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_en": "Who was the Best Male Artist where Bankie Travolta won the Best Male MC?",
    "question_th": "ศิลปินชายยอดเยี่ยมคือใคร โดยที่ Bankie Travolta ได้รับรางวัล 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_en": "Who was the Best Male MC if Best Album won the Best Male Lyricist?",
    "question_th": "ใครคือ MC ชายยอดเยี่ยม หากอัลบั้มยอดเยี่ยมชนะรางวัลผู้แต่งเนื้อร้องชายยอดเยี่ยม?",
    "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_en": "Who was the Best Male Lyricist if Neshia Nee won the Best Male Record?",
    "question_th": "ใครคือผู้แต่งบทเพลงชายที่ดีที่สุดถ้า Neshia Nee ได้รับรางวัล 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_en": "Who won the Best Female Artist where Best R&B Contributor won the Best Male Lyricist?",
    "question_th": "ใครได้รับรางวัลศิลปินหญิงยอดเยี่ยม โดยที่ผู้แต่งเพลง R&B ยอดเยี่ยม ได้รับรางวัลผู้แต่งบทเพลงชายยอดเยี่ยม",
    "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_en": "What won the Best Female Artist if Best Lyrical Record won the Best Male Artist?",
    "question_th": "อะไรจะได้รับรางวัลศิลปินหญิงยอดเยี่ยมหาก Best Lyrical Record ได้รับรางวัลศิลปินชายยอดเยี่ยม?",
    "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_en": "What won the Best Female Artist if People's Male MC won the Best Female Lyricist?",
    "question_th": "อะไรจะได้รับรางวัลศิลปินหญิงยอดเยี่ยมหากพิธีกรชายของ People's ได้รับรางวัลผู้แต่งบทเพลงหญิงยอดเยี่ยม?",
    "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_en": "What is the lowest number of states contested under apna dal?",
    "question_th": "จำนวนรัฐต่ำสุดที่โต้แย้งภายใต้ 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_en": "Where 19 seats were won, what was the minimum number of forfeited seats?",
    "question_th": "ที่ไหนได้ 19 ที่นั่ง เสียที่นั่งขั้นต่ำเท่าไหร่คะ?",
    "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_en": "How many akhil bharatiya rashtriya azad hind party seats were contested?",
    "question_th": "มีผู้โต้แย้งที่นั่งฝ่ายหลังของ akhil bharatiya rattriya azad กี่ที่นั่ง?",
    "context": "CREATE TABLE table_22582663_1 (seats_contested VARCHAR, party_name VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_22597626_1",
    "question_en": "When was John McEnroe's minimum year?",
    "question_th": "ปีขั้นต่ำของ John McEnroe คือเมื่อไหร่?",
    "context": "CREATE TABLE table_22597626_1 (year INTEGER)"
  },
  {
    "answer": "SELECT score_in_the_final FROM table_22597626_1 WHERE championship = \"US Open\"",
    "question_en": "What were the US Open's final scores?",
    "question_th": "คะแนนสุดท้ายของ US Open คืออะไร?",
    "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_en": "Who were the partners in games where the score was 7-5, 2-6, [6-10]?",
    "question_th": "ใครคือคู่หูในเกมที่สกอร์ 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_en": "Who were the opponents in the Tokyo championships?",
    "question_th": "ใครคือคู่ต่อสู้ในการแข่งขันชิงแชมป์โตเกียว?",
    "context": "CREATE TABLE table_2259502_2 (opponents VARCHAR, championship VARCHAR)"
  },
  {
    "answer": "SELECT partner FROM table_2259502_2 WHERE score = \"1-6, 2-6\"",
    "question_en": "Who were the partners in games where the score was 1-6, 2-6?",
    "question_th": "ใครคือคู่หูในเกมที่สกอร์ 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_en": "Who were the partners in 2012?",
    "question_th": "ใครคือหุ้นส่วนในปี 2555?",
    "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_en": "What was the outcome in games where the score was 7-5, 2-6, [6-10]?",
    "question_th": "ผลลัพธ์ในเกมที่สกอร์เป็น 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_en": "If the opponents in the final is Hewitt McMillan and the partner is Fleming, what is the surface?",
    "question_th": "หากคู่ต่อสู้ในรอบชิงชนะเลิศคือฮิววิตต์ แม็คมิลลาน และคู่ต่อสู้คือเฟลมมิง พื้นผิวจะเป็นอย่างไร?",
    "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_en": "What is the final score if the partner is Woodforde?",
    "question_th": "ถ้าคู่หูคือ วู้ดฟอร์ด แต้มสุดท้ายเป็นเท่าไร?",
    "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_en": "In the US Open championship and the outcome is runner-up, what is the minimum year?",
    "question_th": "ในการแข่งขันชิงแชมป์ US Open และผลการแข่งขันคือรองแชมป์ขั้นต่ำคือปีใด?",
    "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_en": "What is the surface made of if the opponent in the final is Hewitt McMillan?",
    "question_th": "พื้นผิวจะเป็นอย่างไรหากคู่ต่อสู้ในรอบชิงชนะเลิศคือฮิววิตต์ แม็คมิลลาน?",
    "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_en": "What is the surface made of if the year is 1979 and the championship is US Open?",
    "question_th": "ถ้าปี 1979 เป็นปี 1979 และแชมป์คือ 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_en": "Name the ticket/office for orville preston",
    "question_th": "ตั้งชื่อตั๋ว/สำนักงานสำหรับ 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_en": "Name the comptroller for republican",
    "question_th": "ตั้งชื่อผู้ควบคุมสำหรับพรรครีพับลิกัน",
    "context": "CREATE TABLE table_22607062_1 (comptroller VARCHAR, ticket___office VARCHAR)"
  },
  {
    "answer": "SELECT comptroller FROM table_22607062_1 WHERE ticket___office = \"Prohibition\"",
    "question_en": "Name the comptroller for office of prohibition",
    "question_th": "ตั้งชื่อผู้ควบคุมสำหรับสำนักงานห้าม",
    "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_en": "Name the replaced by for 8 july 2009",
    "question_th": "ตั้งชื่อแทนที่ด้วยวันที่ 8 กรกฎาคม พ.ศ. 2552",
    "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_en": "Name the total number of replaced by for 13 june 2009",
    "question_th": "ตั้งชื่อจำนวนทั้งหมดที่ถูกแทนที่โดยสำหรับวันที่ 13 มิถุนายน พ.ศ. 2552",
    "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_en": "Name the date of vacancy for manuel pellegrini",
    "question_th": "ตั้งชื่อวันที่ว่างของมานูเอล เปเญกรินี่",
    "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_en": "What was the free dance score in the event where compulsory dance score was 15.99? ",
    "question_th": " คะแนนเต้นฟรี กรณีที่คะแนนเต้นบังคับ 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_en": "How many original dance scores are listed in the event where the compulsory dance was 20.03? ",
    "question_th": " มีการระบุคะแนนการเต้นรำดั้งเดิมจำนวนเท่าใดในกรณีที่การเต้นรำภาคบังคับคือ 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_en": "In what even was the compulsory dance scored 23.75? ",
    "question_th": "การเต้นรำภาคบังคับได้คะแนน 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_en": "In what event was the compulsory dance score 28.12? ",
    "question_th": " คะแนนเต้นภาคบังคับ 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_en": "What is every year when the reporters were Lesley Visser and Robin Roberts?",
    "question_th": "ทุกปีเมื่อมีนักข่าวคือ Lesley Visser และ 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_en": "What is the latest year with reporters Lesley Visser and Robin Roberts?",
    "question_th": "ปีล่าสุดกับนักข่าว Lesley Visser และ 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_en": "Who was the driver for the Richard Childress Racing team in the race with a time of 2:58:22?",
    "question_th": "ใครคือนักแข่งของทีม Richard Childress Racing ด้วยเวลา 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_en": "On how many dates was the average speed of the race 91.033 MPH?",
    "question_th": "ความเร็วเฉลี่ยของการแข่งขัน 91.033 ไมล์ต่อชั่วโมง คือวันที่กี่วัน?",
    "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_en": "Who was the winning driver in the race that was 3:04:09 long? ",
    "question_th": " ใครคือนักแข่งที่ชนะในการแข่งขันที่มีความยาว 3:04:09 น.",
    "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_en": "Who was the opponent in the game in which Hakim Warrick (14) did the most high points?",
    "question_th": "คู่ต่อสู้ในเกมที่ ฮาคิม วาร์ริค (14) ทำแต้มได้สูงที่สุดคือใคร?",
    "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_en": "What's the record in the game in which Brad Miller (7) did the high rebounds?",
    "question_th": "สถิติในเกมที่แบรด มิลเลอร์ (7) รีบาวด์สูงคือเท่าไร?",
    "context": "CREATE TABLE table_22669044_10 (record VARCHAR, high_rebounds VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_22669044_10 WHERE record = \"31-29\"",
    "question_en": "What's the score of the game with 31-29 record?",
    "question_th": "เกมนี้สกอร์ 31-29 เป็นยังไงบ้าง?",
    "context": "CREATE TABLE table_22669044_10 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_22667773_8 WHERE name = \"Gerrard\"",
    "question_en": "Name the country for gerrard",
    "question_th": "ตั้งชื่อประเทศให้เจอร์ราร์ด",
    "context": "CREATE TABLE table_22667773_8 (country VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT COUnT AS eu FROM table_22667773_8 WHERE name = \"Quinn\"",
    "question_en": "Name the total number of eu for quinn",
    "question_th": "ตั้งชื่อจำนวนรวมของ eu สำหรับควินน์",
    "context": "CREATE TABLE table_22667773_8 (COUnT VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_22669044_8 WHERE score = \"W 115–104 (OT)\"",
    "question_en": "Name the team for  w 115–104 (ot)",
    "question_th": "ตั้งชื่อทีมสำหรับ w 115–104 (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_en": "Name the number of record for united center 18,838",
    "question_th": "ตั้งชื่อเบอร์สถิติยูไนเต็ดเซนเตอร์ 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_en": "Name the team for united center 22,147",
    "question_th": "ตั้งชื่อทีม ยูไนเต็ด เซนเตอร์ 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_en": "Name the high rebounds for new york",
    "question_th": "ตั้งชื่อการรีบาวด์สูงสำหรับนิวยอร์ก",
    "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_en": "Name the number of high rebounds for united center 19,335",
    "question_th": "ระบุจำนวนรีบาวด์สูงของยูไนเต็ดเซนเตอร์ 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_en": "Name the team for kirk hinrich , derrick rose , john salmons (6)",
    "question_th": "ตั้งชื่อทีม เคิร์ก ฮินริช, เดอร์ริก โรส, จอห์น แซลมอนส์ (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_en": "Name the high points 31-27",
    "question_th": "ตั้งชื่อคะแนนสูงสุด 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_en": "What is the location is the winning driver is Bill Vukovich II?",
    "question_th": "ตำแหน่งที่นักขับที่ชนะคือ 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_en": "If the track is the Wisconsin State Fair Park Speedway and the winning driver is Wally Dallenbach, what was the location?",
    "question_th": "หากสนามแข่งคือสนามแข่งรถ Wisconsin State Fair Park และผู้แข่งที่ชนะคือ Wally Dallenbach สถานที่คือที่ไหน",
    "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_en": "If the location is Brooklyn, Michigan and the pole position is Bobby Unser, what is the RND total number?",
    "question_th": "หากสถานที่คือบรูคลิน มิชิแกน และตำแหน่งโพลโพซิชั่นคือ Bobby Unser จำนวน RND ทั้งหมดจะเป็นเท่าใด",
    "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_en": "If the pole position is Johnny Rutherford and the track is the Ontario Motor Speedway, what is the RND total number?",
    "question_th": "หากตำแหน่งโพลโพซิชั่นคือจอห์นนี่ รัทเทอร์ฟอร์ด และสนามแข่งคือออนทาริโอ มอเตอร์ สปีดเวย์ จำนวนรวมของ RND จะเป็นเท่าใด",
    "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_en": "Name the laps of october 26",
    "question_th": "ตั้งชื่อรอบของวันที่ 26 ตุลาคม",
    "context": "CREATE TABLE table_2267857_1 (laps VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_2267857_1 WHERE year = 2006",
    "question_en": "Name the date for 2006",
    "question_th": "ตั้งชื่อวันที่สำหรับปี 2549",
    "context": "CREATE TABLE table_2267857_1 (date VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_2267857_1 WHERE driver = \"Dick Hutcherson\"",
    "question_en": "Name the number of year for dick hutcherson",
    "question_th": "ตั้งชื่อจำนวนปีสำหรับดิ๊ก ฮัทเชอร์สัน",
    "context": "CREATE TABLE table_2267857_1 (year VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(report) FROM table_2267857_1 WHERE date = \"July 23\"",
    "question_en": "Name the total number for report july 23",
    "question_th": "แจ้งยอดรวมรายงานวันที่ 23 กรกฎาคม",
    "context": "CREATE TABLE table_2267857_1 (report VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_22756549_1 WHERE margin = 105731",
    "question_en": "What party won with a margin of 105731?",
    "question_th": "ฝ่ายใดชนะด้วยมาร์จิ้น 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_en": "What party is the winner K. Anbazhagan from?",
    "question_th": "K. Anbazhagan ผู้ชนะจากพรรคใด",
    "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_en": "How many times did M. Gounder win for Party A?",
    "question_th": "M. Gounder ชนะ 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_en": "Who won when V. A. Muthiah was the runner-up?",
    "question_th": "ใครชนะเมื่อ VA Muthiah เป็นรองชนะเลิศ?",
    "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_en": "What party was the winner when A. Krishnaswamy was the runner-up?",
    "question_th": "ฝ่ายใดเป็นผู้ชนะเมื่อ A. Krishnaswamy ได้รับรางวัลรองชนะเลิศ?",
    "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_en": "Who was the runner up for the Nagapattinam constituency?",
    "question_th": "ใครคือรองชนะเลิศเขตเลือกตั้งนาคปัตตินัม?",
    "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_en": "who ended runner-up to sankar adhi?",
    "question_th": "ใครเป็นผู้ชนะเลิศอันดับ 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_en": "which was k. annamalai´s party a?",
    "question_th": "ซึ่งเป็นเค ปาร์ตี้ของอันนามาลัย?",
    "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_en": "What is the population in those place where the market income per capita is $17,362?",
    "question_th": "ประชากรในสถานที่ที่รายได้ในตลาดต่อหัวเท่ากับ 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_en": "What is the unemployment rate in those places where the market income per capita is $16,981?",
    "question_th": "อัตราการว่างงานในสถานที่ซึ่งรายได้ในตลาดต่อหัวอยู่ที่ 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_en": "What is the status in those places where the poverty rate is 8.6%?",
    "question_th": "สถานะในสถานที่เหล่านั้นที่มีอัตราความยากจนอยู่ที่ 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_en": "What is the unemployment rate in those places in Alexander county whose status is transitional?",
    "question_th": "อัตราการว่างงานในสถานที่เหล่านั้นในเขตอเล็กซานเดอร์ซึ่งมีสถานะเป็นช่วงเปลี่ยนผ่านคือเท่าใด",
    "context": "CREATE TABLE table_22815568_7 (unemployment_rate VARCHAR, status VARCHAR, county VARCHAR)"
  },
  {
    "answer": "SELECT population FROM table_22815568_7 WHERE county = \"McDowell\"",
    "question_en": "What is the population of the country of McDowell?",
    "question_th": "ประชากรของประเทศ 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_en": "In what counties is the unemployment rate 5.8% and the market income per capita is $22,866?",
    "question_th": "อัตราการว่างงาน 5.8% ในมณฑลใด และรายได้ในตลาดต่อหัวอยู่ที่ 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_en": "Name the partnering for round sf",
    "question_th": "ตั้งชื่อพันธมิตรรอบ SF",
    "context": "CREATE TABLE table_22825058_23 (partnering VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(round) FROM table_22825058_23 WHERE against = \"The Netherlands\"",
    "question_en": "Name the total number of round for against the netherlands",
    "question_th": "ตั้งชื่อจำนวนยกทั้งหมดเพื่อพบกับเนเธอร์แลนด์",
    "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_en": "Name the round for john van lottum martin verkerk",
    "question_th": "ตั้งชื่อรอบให้จอห์น ฟาน ลอตตุม มาร์ติน เวอร์เคิร์ก",
    "context": "CREATE TABLE table_22825058_23 (round VARCHAR, opponents VARCHAR)"
  },
  {
    "answer": "SELECT w_l FROM table_22825058_23 WHERE against = \"Czech Republic\"",
    "question_en": "Name the w/l for czech republic",
    "question_th": "ตั้งชื่อ w/l สำหรับสาธารณรัฐเช็ก",
    "context": "CREATE TABLE table_22825058_23 (w_l VARCHAR, against VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_22825058_23 WHERE opponents = \"Jiří Novák Radek Štěpánek\"",
    "question_en": "Name the result for jiří novák radek štěpánek",
    "question_th": "ตั้งชื่อผลลัพธ์สำหรับ jiří novák radek štěpánek",
    "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_en": "Name the tournament venue for big sky conference",
    "question_th": "ตั้งชื่อสถานที่จัดการแข่งขันการประชุมใหญ่ฟ้า",
    "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_en": "Name the number of conference tournament for james madison",
    "question_th": "ตั้งชื่อหมายเลขการแข่งขันการประชุมใหญ่ของเจมส์ เมดิสัน",
    "context": "CREATE TABLE table_22849575_6 (conference VARCHAR, tournament_winner VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_22848931_3 WHERE replaced_by = \"Arif Asadov\"",
    "question_en": "Name the team for arif asadov",
    "question_th": "ตั้งชื่อทีมให้อารีฟ อาซาดอฟ",
    "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_en": "Name the manner of departure for 1 december 2009",
    "question_th": "แจ้งกำหนดการเดินทางวันที่ 1 ธันวาคม 2552",
    "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_en": "Name the outgoing manager for 10 june 2009",
    "question_th": "ตั้งชื่อผู้จัดการที่จะพ้นตำแหน่งในวันที่ 10 มิถุนายน พ.ศ. 2552",
    "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_en": "What is every entry for Atlantic Europe when Central Europe is Wisconsin stage?",
    "question_th": "ทุกรายการสำหรับยุโรปแอตแลนติกเมื่อยุโรปกลางเป็นเวทีวิสคอนซินคืออะไร?",
    "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_en": "How many values for Maghreb with Mediterranean Europe is Siciliense?",
    "question_th": "ซิซิลีเอนเซของมาเกร็บกับยุโรปเมดิเตอร์เรเนียนมีกี่ค่า",
    "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_en": "What is the Atlantic Europe when age is 10,000 years?",
    "question_th": "ยุโรปแอตแลนติกเมื่ออายุ 10,000 ปีคืออะไร?",
    "context": "CREATE TABLE table_22860_1 (atlantic_europe VARCHAR, age__before_ VARCHAR)"
  },
  {
    "answer": "SELECT america FROM table_22860_1 WHERE atlantic_europe = \"Hoxniense\"",
    "question_en": "What is every entry for America when Atlantic Europe is Hoxniense?",
    "question_th": "ทุกรายการสำหรับอเมริกาจะเป็นอย่างไรเมื่อยุโรปแอตแลนติกคือ Hoxniense?",
    "context": "CREATE TABLE table_22860_1 (america VARCHAR, atlantic_europe VARCHAR)"
  },
  {
    "answer": "SELECT age__before_ FROM table_22860_1 WHERE maghreb = \"Maarifiense\"",
    "question_en": "What are all ages for Maghreb is Maarifiense?",
    "question_th": "อายุของ Maghreb คือ 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_en": "How many points did the opponents with a 6-2 record against the Spartans score?",
    "question_th": "ฝ่ายตรงข้ามที่มีสถิติ 6-2 เทียบกับสปาร์ตันทำคะแนนได้กี่คะแนน?",
    "context": "CREATE TABLE table_22860990_3 (opp_points INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_22860990_3 WHERE spartans_points = 73",
    "question_en": "Against whom did the Spartans score 73 points?",
    "question_th": "ชาวสปาร์ตันทำคะแนนได้ 73 แต้มต่อใคร?",
    "context": "CREATE TABLE table_22860990_3 (opponent VARCHAR, spartans_points VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_22883210_5 WHERE game = 5",
    "question_en": "Who had highest points in game 5?",
    "question_th": "ใครมีคะแนนสูงสุดในเกมที่ 5?",
    "context": "CREATE TABLE table_22883210_5 (high_points VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_22883210_8 WHERE date = \"February 24\"",
    "question_en": "What was the final score of the game held on February 24?",
    "question_th": "คะแนนสุดท้ายของเกมที่จัดขึ้นเมื่อวันที่ 24 กุมภาพันธ์เป็นเท่าใด?",
    "context": "CREATE TABLE table_22883210_8 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_22883210_8 WHERE date = \"February 4\"",
    "question_en": "Who was the opponent in the game held on February 4?",
    "question_th": "คู่ต่อสู้ในเกมที่จัดขึ้นเมื่อวันที่ 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_en": "If the region is the Southern district of Texas, what is the citation?",
    "question_th": "หากภูมิภาคนี้เป็นเขตทางตอนใต้ของรัฐเท็กซัส การอ้างอิงคืออะไร",
    "context": "CREATE TABLE table_22901612_2 (citation VARCHAR, region VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_22901612_2 WHERE chief_judge = \"Jeffrey L. Viken\"",
    "question_en": "If the chief judge is Jeffrey L. Viken, what is the region?",
    "question_th": "ถ้าหัวหน้าผู้พิพากษาคือ Jeffrey L. Viken ภูมิภาคไหน?",
    "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_en": "If the chief judge is Glen E. Conrad, what is the region?",
    "question_th": "ถ้าหัวหน้าผู้พิพากษาคือ Glen E. Conrad ภูมิภาคอะไร?",
    "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_en": "What was the name of the episode that had 14.52 viewers?",
    "question_th": "ตอนที่มีคนดู 14.52 ชื่ออะไรคะ?",
    "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_en": "How many million viewers did episode number 63 have?",
    "question_th": "ตอนที่ 63 มีผู้ชมกี่ล้านคน?",
    "context": "CREATE TABLE table_22904707_1 (us_viewers__million_ VARCHAR, no VARCHAR)"
  },
  {
    "answer": "SELECT MIN(_number) FROM table_22904707_1 WHERE no = 52",
    "question_en": "What number in the season was episode 52 in the series?",
    "question_th": "ตอนที่ 52 ในซีรีส์คือหมายเลขใดในฤดูกาลนี้",
    "context": "CREATE TABLE table_22904707_1 (_number INTEGER, no VARCHAR)"
  },
  {
    "answer": "SELECT metropolitan_area FROM table_22916979_2 WHERE rank = 60",
    "question_en": "which area has a rank of 60?",
    "question_th": "พื้นที่ใดมีอันดับ 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_en": "what is the total number of population where census designated place is westmont?",
    "question_th": "จำนวนประชากรทั้งหมดที่กำหนดสถานที่สำรวจสำมะโนประชากรคือเวสต์มอนต์คือเท่าใด",
    "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_en": "what is the total number of census designated places with a population of 10581?",
    "question_th": "สถานที่ที่กำหนดสำมะโนประชากรทั้งหมด 1,0581 แห่งเป็นจำนวนเท่าใด",
    "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_en": "Name the most number of contestants",
    "question_th": "ระบุชื่อผู้เข้าแข่งขันมากที่สุด",
    "context": "CREATE TABLE table_22951646_1 (number_of_contestants INTEGER)"
  },
  {
    "answer": "SELECT premiere FROM table_22951646_1 WHERE number_of_episodes = 8",
    "question_en": "Name the premiere for 8 episodes",
    "question_th": "ตั้งชื่อรอบปฐมทัศน์ 8 ตอน",
    "context": "CREATE TABLE table_22951646_1 (premiere VARCHAR, number_of_episodes VARCHAR)"
  },
  {
    "answer": "SELECT league_finish FROM table_22962745_12 WHERE w = 11",
    "question_en": "Name the league finish for w being 11",
    "question_th": "ตั้งชื่อลีกจบด้วยอายุ 11 ปี",
    "context": "CREATE TABLE table_22962745_12 (league_finish VARCHAR, w VARCHAR)"
  },
  {
    "answer": "SELECT overall_record FROM table_22993636_2 WHERE team = \"LSU\"",
    "question_en": "What's LSU's overall record/",
    "question_th": "ประวัติโดยรวมของ LSU คืออะไร/",
    "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_en": "How many different SEC Win counts does the team with an overall record of 30-4 have?",
    "question_th": "ทีมที่มีสถิติรวม 30-4 มี SEC Win ที่แตกต่างกันกี่ตัว?",
    "context": "CREATE TABLE table_22993636_2 (sec_wins VARCHAR, overall_record VARCHAR)"
  },
  {
    "answer": "SELECT percentage FROM table_22993636_2 WHERE team = \"Auburn\"",
    "question_en": "What's Auburn's percentage?",
    "question_th": "ออเบิร์นมีเปอร์เซ็นต์เท่าไร?",
    "context": "CREATE TABLE table_22993636_2 (percentage VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT overall_record FROM table_22993636_2 WHERE road_record = \"4-3\"",
    "question_en": "What's the overall record of the team with 4-3 road record?",
    "question_th": "ผลงานโดยรวมของทีมที่มีสถิติ 4-3 ถนนเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_22993636_2 (overall_record VARCHAR, road_record VARCHAR)"
  },
  {
    "answer": "SELECT home_record FROM table_22993636_2 WHERE percentage = \".168\"",
    "question_en": "What's the home record of the team with percentage of .168?",
    "question_th": "สถิติในบ้านของทีมด้วยเปอร์เซ็นต์ .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_en": "What was the average speed where lap four's time was 22.9049?",
    "question_th": "ความเร็วเฉลี่ยที่เวลารอบที่ 4 อยู่ที่ 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_en": "How many lap two's did marco andretti do?",
    "question_th": "มาร์โก อันเดรตติทำรอบสองได้กี่รอบ?",
    "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_en": "What is tthe lowest number on team 3g?",
    "question_th": "หมายเลขต่ำสุดในทีม 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_en": "How many positions have a total time of 1:30.4135?",
    "question_th": "มีกี่ตำแหน่งที่มีเวลารวม 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_en": "Which positions have a lap two time of 22.7290?",
    "question_th": "ตำแหน่งใดมีรอบสองครั้งที่ 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_en": "What was the average speed where the total time was 1:30.4842?",
    "question_th": "ความเร็วเฉลี่ยคือเท่าไร โดยเวลาทั้งหมดคือ 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_en": "Name the poles for avg start being 4.7",
    "question_th": "ตั้งชื่อเสาสำหรับค่าเฉลี่ยเริ่มต้นที่ 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_en": "Name the avg finish for position of 70th",
    "question_th": "ตั้งชื่อการจบเฉลี่ยสำหรับตำแหน่งที่ 70",
    "context": "CREATE TABLE table_2308381_2 (avg_finish VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_2308381_2 WHERE starts = 15",
    "question_en": "Name the year for 15 starts",
    "question_th": "ตั้งชื่อปี 15 เริ่ม",
    "context": "CREATE TABLE table_2308381_2 (year VARCHAR, starts VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(directed_by) FROM table_23097214_1 WHERE season__number = 3",
    "question_en": "How many directors directed episode 3 of the season?",
    "question_th": "มีผู้กำกับกี่คนที่กำกับตอนที่ 3 ของซีซั่น?",
    "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_en": "Who wrote the episode directed by Ken Whittingham?",
    "question_th": "ใครเป็นคนเขียนบทตอนนี้ที่กำกับโดย 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_en": "What is the production code for Episode 153 in the series?",
    "question_th": "รหัสการผลิตของตอนที่ 153 ในซีรีส์คืออะไร?",
    "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_en": "What is the name of the episode where the season number is 13?",
    "question_th": "ตอนที่ 13 หมายเลขซีซั่น 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_en": "If the episode was written by Tim Balme, what was the original air date?",
    "question_th": "หากตอนนี้เขียนโดย Tim Balme ออกอากาศครั้งแรกเมื่อใด",
    "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_en": "What date did the show air when Rhod Gilbert was the headliner?",
    "question_th": "รายการออกอากาศวันไหนที่ Rhod Gilbert เป็นดารานำ?",
    "context": "CREATE TABLE table_23122988_1 (airdate VARCHAR, headliner VARCHAR)"
  },
  {
    "answer": "SELECT airdate FROM table_23122988_1 WHERE headliner = \"Sean Lock\"",
    "question_en": "What date did the show air when Sean Lock was the headliner?",
    "question_th": "รายการออกอากาศวันไหนที่ Sean Lock เป็นดารานำ?",
    "context": "CREATE TABLE table_23122988_1 (airdate VARCHAR, headliner VARCHAR)"
  },
  {
    "answer": "SELECT comedians FROM table_23122988_1 WHERE episode = \"1x03\"",
    "question_en": "Who were the comedians on episode 1x03?",
    "question_th": "ใครคือนักแสดงตลกในตอนที่ 1x03?",
    "context": "CREATE TABLE table_23122988_1 (comedians VARCHAR, episode VARCHAR)"
  },
  {
    "answer": "SELECT episode FROM table_23122988_1 WHERE location = \"Belfast Waterfront Hall\"",
    "question_en": "What episode took place in Belfast Waterfront Hall?",
    "question_th": "เหตุการณ์ใดเกิดขึ้นที่ 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_en": "Who were the comedians during the episode located in Birmingham Hippodrome?",
    "question_th": "ใครคือนักแสดงตลกในตอนนี้ที่ Birmingham Hippodrome",
    "context": "CREATE TABLE table_23122988_1 (comedians VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(director) FROM table_23141790_1 WHERE original_title = \"Vesničko má středisková\"",
    "question_en": "Name the total number of director for vesničko má středisková",
    "question_th": "เสนอชื่อกรรมการทั้งหมดของบริษัท vesničko má středisková",
    "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_en": "Name the growth rate for density of 1087",
    "question_th": "ตั้งชื่ออัตราการเติบโตของความหนาแน่น 1,087",
    "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_en": "Name the sex ratio lowest for population 4773138",
    "question_th": "ตั้งชื่ออัตราส่วนเพศต่ำสุดสำหรับประชากร 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_en": "What is the original air date of the episode that had a week ranking of 21?",
    "question_th": "วันที่ออกอากาศดั้งเดิมของตอนที่มีอันดับ 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_en": "What was the week ranking of the episode written by Russel Friend & Garrett Lerner? ",
    "question_th": " อันดับสัปดาห์ของตอนที่เขียนโดย 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_en": "What was the week ranking of the episode written by Thomas L. Moran and directed by Andrew Bernstein?",
    "question_th": "การจัดอันดับสัปดาห์ของตอนที่เขียนโดย Thomas L. Moran และกำกับโดย 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_en": "Name the position for chivu",
    "question_th": "ตั้งชื่อตำแหน่งชีวุ",
    "context": "CREATE TABLE table (position VARCHAR, player VARCHAR, Chivu VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(r) FROM table WHERE coppa_italia > 1.0",
    "question_en": "Name the total number of r for coppa italia larger than 1.0",
    "question_th": "ตั้งชื่อจำนวนรวมของ r สำหรับ coppa italia ที่มากกว่า 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_en": "Which charts had debut sales of of more than 339333.011497678?",
    "question_th": "ชาร์ตไหนมียอดขายเปิดตัวมากกว่า 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_en": "How many peak positions were there on the weekly charts?",
    "question_th": "มีตำแหน่งสูงสุดกี่ตำแหน่งในแผนภูมิรายสัปดาห์?",
    "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_en": "How many peak positions were there on the daily charts?",
    "question_th": "มีตำแหน่งสูงสุดกี่ตำแหน่งในกราฟรายวัน?",
    "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_en": "Which charts had debut sales of 101976?",
    "question_th": "ชาร์ตไหนมียอดขายเปิดตัวที่ 1,01976?",
    "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_en": "What was the score when playing Milwaukee?",
    "question_th": "เมื่อเล่นมิลวอกีได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_23186738_10 (score VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_23186738_10 WHERE record = \"27-54\"",
    "question_en": "Who had the highest rebounds in the game where the record was 27-54?",
    "question_th": "ใครมีรีบาวน์มากที่สุดในเกมโดยทำสถิติ 27-54?",
    "context": "CREATE TABLE table_23186738_10 (high_rebounds VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_23184448_3 WHERE opponent = \"Niagara\"",
    "question_en": "When did the team play against Niagara?",
    "question_th": "ทีมเล่นกับไนแอการาเมื่อไหร่?",
    "context": "CREATE TABLE table_23184448_3 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT MIN(opp_points) FROM table_23184448_3 WHERE record = \"6-2\"",
    "question_en": "How many points did the opposing team get in the game with 6-2 record?",
    "question_th": "ฝ่ายตรงข้ามได้กี่แต้มในเกมด้วยสถิติ 6-2?",
    "context": "CREATE TABLE table_23184448_3 (opp_points INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_23184448_3 WHERE cyclones_points = 46",
    "question_en": "When did the Cyclones get 46 points?",
    "question_th": "พายุไซโคลนได้รับ 46 คะแนนเมื่อใด",
    "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_en": "On how many different dates did the team play a game in Cedar Falls, Iowa?",
    "question_th": "ทีมงานเล่นเกมที่ซีดาร์ฟอลส์ รัฐไอโอวาที่แตกต่างกันกี่วัน",
    "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_en": "Name the date for air canada centre 18,736",
    "question_th": "ตั้งชื่อวันที่ศูนย์แอร์แคนาดา 18,736",
    "context": "CREATE TABLE table_23186738_9 (date VARCHAR, location_attendance VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_23186738_9 WHERE team = \"Chicago\"",
    "question_en": "Name the score for chicago",
    "question_th": "ตั้งชื่อคะแนนให้ชิคาโก",
    "context": "CREATE TABLE table_23186738_9 (score VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT MIN(game) FROM table_23186738_9 WHERE date = \"March 20\"",
    "question_en": "Name the least game for march 20",
    "question_th": "ตั้งชื่อเกมน้อยที่สุดสำหรับวันที่ 20 มีนาคม",
    "context": "CREATE TABLE table_23186738_9 (game INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT MIN(game) FROM table_23186738_9 WHERE score = \"L 93–109 (OT)\"",
    "question_en": "Name the least game for score of l 93–109 (ot)",
    "question_th": "ตั้งชื่อเกมน้อยที่สุดด้วยคะแนน l 93–109 (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_en": "If the location attendance is the Verizon Center 20,173, what is the date?",
    "question_th": "หากสถานที่เข้าร่วมคือ Verizon Center 20,173 วันที่เท่าไหร่?",
    "context": "CREATE TABLE table_23211041_7 (date VARCHAR, location_attendance VARCHAR)"
  },
  {
    "answer": "SELECT team_captain FROM table_23214833_1 WHERE capacity = 17800",
    "question_en": "Who's captain of the team whose stadium has a capacity of 17800 people?",
    "question_th": "ใครเป็นกัปตันทีมที่มีสนามจุคนได้ 17,800 คน?",
    "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_en": "How many different team captains does the club Sliven 2000 have?",
    "question_th": "สโมสร Sliven 2000 มีกัปตันทีมกี่คน?",
    "context": "CREATE TABLE table_23214833_1 (team_captain VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT team_captain FROM table_23214833_1 WHERE stadium = \"Gradski Stadion\"",
    "question_en": "Who's the captain of the team whose stadium is Gradski Stadion?",
    "question_th": "ใครคือกัปตันทีมที่มีสนาม Gradski Stadion?",
    "context": "CREATE TABLE table_23214833_1 (team_captain VARCHAR, stadium VARCHAR)"
  },
  {
    "answer": "SELECT stadium FROM table_23214833_1 WHERE capacity = 13800",
    "question_en": "What stadium has capacity for 13800?",
    "question_th": "สนามไหนจุได้ 13,800 ที่นั่ง?",
    "context": "CREATE TABLE table_23214833_1 (stadium VARCHAR, capacity VARCHAR)"
  },
  {
    "answer": "SELECT capacity FROM table_23214833_1 WHERE team_captain = \"Vasil Vasilev\"",
    "question_en": "How many people can attend games in the stadium of the team whose captain is Vasil Vasilev?",
    "question_th": "มีกี่คนที่สามารถเข้าร่วมการแข่งขันในสนามกีฬาของทีมที่มีกัปตันคือ Vasil Vasilev?",
    "context": "CREATE TABLE table_23214833_1 (capacity VARCHAR, team_captain VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_23224961_2 WHERE mittelfranken_süd = \"ASV Nürnberg-Süd\"",
    "question_en": "When  asv nürnberg-süd is the  mittelfranken süd what is the season?",
    "question_th": "เมื่อ asv nürnberg-süd เป็น mittelfranken süd ฤดูกาลอะไร?",
    "context": "CREATE TABLE table_23224961_2 (season VARCHAR, mittelfranken_süd VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_23224961_2 WHERE oberfranken_west = \"SV Neuses\"",
    "question_en": "When sv neuses is the oberfranken west what is the season?",
    "question_th": "เมื่อ sv neuses อยู่ที่ oberfranken western ฤดูกาลคืออะไร?",
    "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_en": "When wacker marktredwitz is the oberfranken ost how many unterfranken wests are there?",
    "question_th": "เมื่อ Wacker Marktredwitz เป็นเพลงประกอบภาพยนตร์ของ Oberfranken มีเพลง Unterfranken West กี่เพลง?",
    "context": "CREATE TABLE table_23224961_2 (unterfranken_west VARCHAR, oberfranken_ost VARCHAR)"
  },
  {
    "answer": "SELECT mittelfranken_süd FROM table_23224961_2 WHERE unterfranken_west = \"Alemannia Haibach\" AND mittelfranken_nord = \"ATSV Erlangen\"",
    "question_en": "When atsv erlangen is the mittelfranken nord and alemannia haibach is the unterfranken west what is the mittelfranken süd?",
    "question_th": "เมื่อ atsv erlangen เป็น mittelfranken nord และ alemannia haibach เป็น unterfranken ตะวันตก อะไรคือ mittelfranken süd?",
    "context": "CREATE TABLE table_23224961_2 (mittelfranken_süd VARCHAR, unterfranken_west VARCHAR, mittelfranken_nord VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_23248940_8 WHERE team = \"Orlando\"",
    "question_en": "Who tied for the highest rebounds during the game against Orlando?",
    "question_th": "ใครมีรีบาวด์มากที่สุดระหว่างเกมกับออร์แลนโด?",
    "context": "CREATE TABLE table_23248940_8 (high_rebounds VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_23248940_6 WHERE game = 14",
    "question_en": "Who are all high points in game 14?",
    "question_th": "ใครคือคะแนนสูงสุดในเกมที่ 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_en": "What is every value for location attendance on date of November 18?",
    "question_th": "มูลค่าของการเข้าร่วมสถานที่ในวันที่ 18 พฤศจิกายนมีมูลค่าเท่าใด",
    "context": "CREATE TABLE table_23248940_6 (location_attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_23248940_6 WHERE date = \"November 10\"",
    "question_en": "What is every score when date is November 10?",
    "question_th": "ทุกคะแนนวันที่ 10 พฤศจิกายน เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_23248940_6 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_23248940_6 WHERE game = 11",
    "question_en": "What is every record for game 11?",
    "question_th": "ทุกสถิติในเกมที่ 11 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_23248940_6 (record VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(location_attendance) FROM table_23248967_5 WHERE game = 3",
    "question_en": "How many locations was game 3 played at?",
    "question_th": "เกม 3 เล่นได้กี่แห่ง?",
    "context": "CREATE TABLE table_23248967_5 (location_attendance VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_23248967_5 WHERE team = \"New Orleans\"",
    "question_en": "What was the score against New Orleans?",
    "question_th": "นิวออร์ลีนส์มีสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_23248967_5 (score VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(location_attendance) FROM table_23248967_9 WHERE date = \"March 6\"",
    "question_en": "How many game locations occurred on March 6?",
    "question_th": "มีสถานที่เล่นเกมกี่แห่งในวันที่ 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_en": "What was the surface during wimbledon in 1974?",
    "question_th": "พื้นผิวระหว่างวิมเบิลดันในปี 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_en": "Name the overall for mark steenhuis",
    "question_th": "ตั้งชื่อโดยรวมสำหรับ 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_en": "Name the total number of offensive for colin doyle",
    "question_th": "ตั้งชื่อจำนวนการโจมตีทั้งหมดของโคลิน ดอยล์",
    "context": "CREATE TABLE table_23265433_2 (offensive VARCHAR, overall VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_23265433_2 WHERE transition = \"Steve Toll\"",
    "question_en": "Name the week for steve toll",
    "question_th": "ตั้งชื่อสัปดาห์สำหรับ steve toll",
    "context": "CREATE TABLE table_23265433_2 (week VARCHAR, transition VARCHAR)"
  },
  {
    "answer": "SELECT rookie FROM table_23265433_2 WHERE offensive = \"Ryan Powell\"",
    "question_en": "Name the rookie for ryan powell",
    "question_th": "ตั้งชื่อมือใหม่ให้กับไรอัน พาวเวลล์",
    "context": "CREATE TABLE table_23265433_2 (rookie VARCHAR, offensive VARCHAR)"
  },
  {
    "answer": "SELECT defensive FROM table_23265433_2 WHERE week = 9",
    "question_en": "Name the defensive for week 9",
    "question_th": "ตั้งชื่อการป้องกันสำหรับสัปดาห์ที่ 9",
    "context": "CREATE TABLE table_23265433_2 (defensive VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_23274514_5 WHERE record = \"10-19\"",
    "question_en": "Name the high rebounds for record 10-19",
    "question_th": "ตั้งชื่อรีบาวด์สูงเป็นประวัติการณ์ 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–112 (OT)\"",
    "question_en": "Name the high points for  l 109–112 (ot)",
    "question_th": "ตั้งชื่อจุดสูงสุดสำหรับ l 109–112 (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_en": "Name the high assists for 4-3",
    "question_th": "ตั้งชื่อแอสซิสต์สูงสำหรับ 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_en": "Name the location attendance for memphis",
    "question_th": "ตั้งชื่อการเข้าร่วมสถานที่สำหรับเมมฟิส",
    "context": "CREATE TABLE table_23281862_5 (location_attendance VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(score) FROM table_23281862_5 WHERE team = \"Sacramento\"",
    "question_en": "Name the number of score for sacramento",
    "question_th": "ตั้งชื่อจำนวนคะแนนสำหรับแซคราเมนโต",
    "context": "CREATE TABLE table_23281862_5 (score VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_23284271_10 WHERE record = \"53-27\"",
    "question_en": "Who has the high points when 53-27 is the record?",
    "question_th": "ใครมีแต้มสูงสุดเมื่อ 53-27 เป็นสถิติ?",
    "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_en": "Which team has dirk nowitski (13) as high rebounds?",
    "question_th": "ทีมไหนที่เดิร์ค โนวิทสกี้ (13) รีบาวน์สูงที่สุด?",
    "context": "CREATE TABLE table_23284271_10 (team VARCHAR, high_rebounds VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_23284271_10 WHERE game = 78",
    "question_en": "What is the score for game 78?",
    "question_th": "คะแนนของเกม 78 คืออะไร?",
    "context": "CREATE TABLE table_23284271_10 (score VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_23284271_10 WHERE record = \"50-26\"",
    "question_en": "Who has the high assists when 50-26 is the record?",
    "question_th": "ใครทำสถิติแอสซิสต์ได้สูงที่สุดเมื่อสกอร์ 50-26?",
    "context": "CREATE TABLE table_23284271_10 (high_assists VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_23284271_10 WHERE record = \"50-26\"",
    "question_en": "Who has high points when 50-26 is the record?",
    "question_th": "ใครมีแต้มสูงเมื่อสกอร์ 50-26 บ้าง?",
    "context": "CREATE TABLE table_23284271_10 (high_points VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_23284271_10 WHERE team = \"@ LA Clippers\"",
    "question_en": "Which date is the team @ la clippers?",
    "question_th": "ทีม@la clippersจัดวันไหนคะ?",
    "context": "CREATE TABLE table_23284271_10 (date VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_23281862_9 WHERE game = 64",
    "question_en": "Who is the high rebounds for game 64?",
    "question_th": "ใครคือคนที่รีบาวด์สูงในเกม 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_en": "What is the record where aaron brooks (6) is high assists?",
    "question_th": "สถิติที่แอรอน บรูคส์ (6) แอสซิสต์ได้สูงเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_23281862_9 (record VARCHAR, high_assists VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_23281862_9 WHERE record = \"36-33\"",
    "question_en": "What is the score when 36-33 is the record?",
    "question_th": "สกอร์ 36-33 เป็นไงบ้าง?",
    "context": "CREATE TABLE table_23281862_9 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(team) FROM table_23284271_7 WHERE score = \"W 99–91 (OT)\"",
    "question_en": "How many teams played against the Mavericks in a game where the score was w 99–91 (ot)?",
    "question_th": "มีกี่ทีมที่เล่นกับ Mavericks ในเกมที่สกอร์ 99–91 (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_en": "How many teams have channing frye, jason richardson (8) as high rebounds?",
    "question_th": "มีกี่ทีมที่แชนนิงฟราย, เจสัน ริชาร์ดสัน (8) รีบาวด์ได้สูงที่สุด?",
    "context": "CREATE TABLE table_23285761_11 (team VARCHAR, high_rebounds VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_23285761_11 WHERE date = \"April 26\"",
    "question_en": "Who has the high assists when April 26 is the date?",
    "question_th": "ใครแอสซิสต์สูงเมื่อ 26 เม.ย. เป็นวันที่?",
    "context": "CREATE TABLE table_23285761_11 (high_assists VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_23285761_11 WHERE game = 5",
    "question_en": "Which team has 5 as a game?",
    "question_th": "ทีมไหนมี 5 เกม?",
    "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_en": "Who did the high assists in the game where Amar'e Stoudemire (10) did the high rebounds?",
    "question_th": "ใครทำแอสซิสต์ได้สูงในเกมที่อมาร์ สตูเดไมร์ (10) รีบาวด์ได้สูง?",
    "context": "CREATE TABLE table_23285761_7 (high_assists VARCHAR, high_rebounds VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_23285761_7 WHERE date = \"January 26\"",
    "question_en": "Who was the game on January 26 played against?",
    "question_th": "เกมเมื่อวันที่ 26 มกราคมเล่นกับใคร?",
    "context": "CREATE TABLE table_23285761_7 (team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_23285761_7 WHERE date = \"January 5\"",
    "question_en": "What was the record of the game played on January 5?",
    "question_th": "สถิติเกมที่เล่นในวันที่ 5 มกราคม เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_23285761_7 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_23285761_7 WHERE game = 40",
    "question_en": "What's the record of the game with number 40?",
    "question_th": "สถิติของเกมหมายเลข 40 คืออะไร?",
    "context": "CREATE TABLE table_23285761_7 (record VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_23285805_6 WHERE record = \"15-25\"",
    "question_en": "What was the score with the team record was 15-25?",
    "question_th": "สกอร์ของทีมอยู่ที่ 15-25 เท่าไหร่?",
    "context": "CREATE TABLE table_23285805_6 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_23285805_6 WHERE game = 42",
    "question_en": "Who has the most rebounds for game 42?",
    "question_th": "ใครมีรีบาวด์มากที่สุดในเกมที่ 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_en": "Who had the most rebounds when the team record was 15-27?",
    "question_th": "ใครมีรีบาวด์มากที่สุดเมื่อสถิติทีมอยู่ที่ 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_en": "Who has the high assists when the team is Oklahoma City?",
    "question_th": "ใครแอสซิสต์ได้สูงเมื่อทีมโอคลาโฮมา ซิตี้?",
    "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_en": "On which datebis arco arena 17361 the location attendance?",
    "question_th": "ซึ่ง datebis arco arena 17361 สถานที่เข้าร่วม?",
    "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_en": "Which team has the location attendance of American Airlines Center 19954?",
    "question_th": "ทีมใดมีสถานที่เข้าร่วม 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_en": "What is the record where arco arena 17361 is location attendance?",
    "question_th": "บันทึกที่ arco arena 17361 เป็นจุดเข้าร่วมสถานที่คืออะไร",
    "context": "CREATE TABLE table_23285805_8 (record VARCHAR, location_attendance VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_23285805_8 WHERE game = 69",
    "question_en": "Who has the high points for the 69 game?",
    "question_th": "ใครมีแต้มสูงในเกม 69?",
    "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_en": "Name the record for rose garden 20,565 attendance",
    "question_th": "ทำสถิติเข้าชมสวนกุหลาบ 20,565 คน",
    "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_en": "Name the game for  andre miller , rudy fernandez (7)",
    "question_th": "ตั้งชื่อเกมให้กับ อังเดร มิลเลอร์, รูดี้ เฟอร์นันเดซ (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_en": "Name the high points for 30-23",
    "question_th": "ตั้งชื่อคะแนนสูงสุดสำหรับ 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_en": "Name the team at the rose garden 20,565",
    "question_th": "ตั้งชื่อทีมที่สวนกุหลาบ 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_en": "What was the score for the game when the record was 37-27?",
    "question_th": "สกอร์ของเกมเมื่อตอนที่สถิติอยู่ที่ 37-27 เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_23286158_9 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_23286158_9 WHERE team = \"Indiana\"",
    "question_en": "Who led with the highest points during the game against Indiana?",
    "question_th": "ใครเป็นผู้นำด้วยคะแนนสูงสุดระหว่างเกมกับอินเดียน่า?",
    "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_en": "Name the most number in series for production code of 3abc11",
    "question_th": "ตั้งชื่อหมายเลขที่มากที่สุดในชุดสำหรับรหัสการผลิต 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_en": "Name the most number in season for production code 3abc12",
    "question_th": "ตั้งชื่อจำนวนมากที่สุดในฤดูกาลสำหรับรหัสการผลิต 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_en": "Name the title for number 16",
    "question_th": "ตั้งชื่อหัวข้อหมายเลข 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_en": "Name the least number for production code for 3abc21",
    "question_th": "ตั้งชื่อหมายเลขที่น้อยที่สุดสำหรับรหัสการผลิตสำหรับ 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_en": "What was the date that the episode with Jeff Davis as the second performer originally aired?",
    "question_th": "วันที่ออกอากาศตอนแรกกับเจฟฟ์ เดวิส ในฐานะนักแสดงคนที่สองคือวันที่เท่าไร",
    "context": "CREATE TABLE table_23294081_10 (original_airdate VARCHAR, performer_2 VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(_number) FROM table_23294081_10 WHERE no = 214",
    "question_en": "How many episodes were series episode 214?",
    "question_th": "ซีรีส์ตอนที่ 214 มีทั้งหมดกี่ตอน?",
    "context": "CREATE TABLE table_23294081_10 (_number VARCHAR, no VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_23308178_6 WHERE opponent = \"Toronto Maple Leafs\"",
    "question_en": "What date did the capitols play the toronto maple leafs?",
    "question_th": "ศาลากลางเล่นใบเมเปิ้ลโตรอนโตเมื่อใด",
    "context": "CREATE TABLE table_23308178_6 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_23308178_6 WHERE record = \"20-6-6\"",
    "question_en": "Where was the game played when the record was 20-6-6?",
    "question_th": "เกมนี้เล่นที่ไหนเมื่อสถิติ 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_en": "What was the lowest attendance for games played on december 23?",
    "question_th": "จำนวนผู้เข้าชมเกมที่เล่นในวันที่ 23 ธันวาคม น้อยที่สุดคือเท่าใด",
    "context": "CREATE TABLE table_23308178_6 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(date) FROM table_23308178_6 WHERE location = \"Wachovia Center\"",
    "question_en": "How many dates were played at the wachovia center?",
    "question_th": "มีการเล่นกี่วันที่ศูนย์วาโชเวีย?",
    "context": "CREATE TABLE table_23308178_6 (date VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(game) FROM table_23308178_8 WHERE record = \"39-12-6\"",
    "question_en": "How many games did they have a record of 39-12-6?",
    "question_th": "พวกเขามีสถิติ 39-12-6 กี่เกม?",
    "context": "CREATE TABLE table_23308178_8 (game VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT MAX(points) FROM table_23308178_8",
    "question_en": "What is the largest number of points they had?",
    "question_th": "พวกเขามีคะแนนมากที่สุดคือเท่าไร?",
    "context": "CREATE TABLE table_23308178_8 (points INTEGER)"
  },
  {
    "answer": "SELECT COUNT(record) FROM table_23308178_8 WHERE points = 88",
    "question_en": "How many games did they play with 88 points?",
    "question_th": "พวกเขาเล่นไปกี่เกมแล้วมี 88 แต้ม?",
    "context": "CREATE TABLE table_23308178_8 (record VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_23308178_8 WHERE date = \"February 5\"",
    "question_en": "How many games did they play on february 5?",
    "question_th": "พวกเขาเล่นกี่เกมในวันที่ 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 阿忠\"",
    "question_en": "Who is every co-artist with name of role as Ah-Zhong 阿忠?",
    "question_th": "ใครคือศิลปินร่วมที่มีบทบาทเป็น Ah-Zhong 阿忠?",
    "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_en": "What is every nature of role with year as 2009?",
    "question_th": "บทบาทของแต่ละบทบาทในปี 2552 มีอะไรบ้าง?",
    "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 小鬼\"",
    "question_en": "How many locations for name of role as Xiao Gui 小鬼?",
    "question_th": "ผู้ที่รับบทเป็น เซียวกุย ลิตเติ้ล鬼 มีสถานที่กี่แห่ง?",
    "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_en": "On what date did episode 2 air?",
    "question_th": "ตอนที่ 2 ออกอากาศวันไหน?",
    "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_en": "What was the title of the episode that aired February 9, 1979?",
    "question_th": "ตอนที่ออกอากาศวันที่ 9 กุมภาพันธ์ 2522 ชื่ออะไร",
    "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_en": "What is the number of the episode seen by 1.370 million people in the US?",
    "question_th": "จำนวนตอนที่มีผู้ชม 1.370 ล้านคนในสหรัฐอเมริกามีจำนวนเท่าใด",
    "context": "CREATE TABLE table_2345558_1 (_number INTEGER, us_viewers__millions_ VARCHAR)"
  },
  {
    "answer": "SELECT _number FROM table_2345558_1 WHERE director = \"Whitney Ransick\"",
    "question_en": "What's the number of the episode directed by Whitney Ransick?",
    "question_th": "วิทนีย์ แรนซิก กำกับตอนที่เท่าไหร่คะ?",
    "context": "CREATE TABLE table_2345558_1 (_number VARCHAR, director VARCHAR)"
  },
  {
    "answer": "SELECT director FROM table_2345558_1 WHERE writer_s_ = \"Jason Yoshimura\"",
    "question_en": "Who directed the episode written by Jason Yoshimura?",
    "question_th": "ใครเป็นผู้กำกับตอนที่เขียนโดย 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_en": "When  roy richardson 476cc aermacchi is the rider what is the time for saturday august 9th?",
    "question_th": "เมื่อ roy richardson 476cc aermacchi เป็นคนขี่ วันเสาร์ที่ 9 สิงหาคมคือกี่โมง?",
    "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_en": "When 6 is the rank what is the time for Tuesday August 25th?",
    "question_th": "อันดับ 6 คือวันอังคารที่ 25 สิงหาคม กี่โมงคะ?",
    "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_en": "When 3 is the rank what is the time for Saturday August 29th?",
    "question_th": "อันดับ 3 คือวันเสาร์ที่ 29 ส.ค. เมื่อไหร่?",
    "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_en": "When 22' 37.06 100.090mph is the time for Monday August 24th how many times are there for Friday August 28th?",
    "question_th": "เมื่อ 22' 37.06 100.090mph คือเวลาของวันจันทร์ที่ 24 สิงหาคม วันศุกร์ที่ 28 สิงหาคม มีกี่ครั้ง",
    "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_en": "What is every rider on Monday August 24 at 21' 12.02 106.781mph?",
    "question_th": "นักบิดทุกคนในวันจันทร์ที่ 24 สิงหาคม เวลา 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_en": "What is every value on Tuesday August 25 if August Friday 28 is 23' 54.54 94.684mph?",
    "question_th": "ทุกค่าในวันอังคารที่ 25 สิงหาคมจะเป็นเท่าใด ถ้าวันศุกร์ที่ 28 สิงหาคมคือ 23' 54.54 94.684 ไมล์ต่อชั่วโมง",
    "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_en": "What is every rider on Tuesday August 25 at 20' 32.11 110.241mph?",
    "question_th": "นักบิดทุกคนในวันอังคารที่ 25 สิงหาคม เวลา 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_en": "What is every value for Monday August 24 if Friday August 28 is 23' 22.25 96.864mph?",
    "question_th": "ทุกค่าของวันจันทร์ที่ 24 สิงหาคมจะเป็นเท่าใด หากวันศุกร์ที่ 28 สิงหาคมคือ 23' 22.25 96.864 ไมล์ต่อชั่วโมง",
    "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_en": "What is the value of Monday August 24 if the rider is Benny Smith 600cc Yamaha?",
    "question_th": "วันจันทร์ที่ 24 สิงหาคม มูลค่าของผู้ขับขี่คือ 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_en": "What is the value for Monday August 24 if Friday August 28 is 26' 04.60 86.814mph?",
    "question_th": "ค่าของวันจันทร์ที่ 24 สิงหาคมจะเป็นเท่าใด ถ้าวันศุกร์ที่ 28 สิงหาคม อยู่ที่ 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_en": "Who directed 414?",
    "question_th": "ใครกำกับ 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_en": "What is the series number of the episode that aired March 25, 2010?",
    "question_th": "ตอนที่ออกอากาศวันที่ 25 มีนาคม 2553 ซีรีส์หมายเลขอะไร?",
    "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_en": "Who wrote the episode that aired February 4, 2010?",
    "question_th": "ใครเป็นคนเขียนตอนที่ออกอากาศวันที่ 4 กุมภาพันธ์ 2553",
    "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_en": "What was the air date where there were 5.72 million viewers?",
    "question_th": "ออกอากาศวันไหนที่มีผู้ชม 5.72 ล้านคน?",
    "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_en": "What number was there 6.01 million u.s. drivers?",
    "question_th": "มีคนขับรถจำนวน 6.01 ล้านคนของเรา?",
    "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_en": "What date did they play the Florida Panthers?",
    "question_th": "พวกเขาเล่น Florida Panthers วันที่เท่าไหร่?",
    "context": "CREATE TABLE table_23486853_3 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_23486853_3 WHERE opponent = \"Atlanta Thrashers\"",
    "question_en": "What was the score for the Atlanta Thrashers?",
    "question_th": "Atlanta Thrashers ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_23486853_3 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_23486853_3 WHERE game = 4",
    "question_en": "What was the score for game 4?",
    "question_th": "คะแนนของเกมที่ 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_en": "How many titles have an original air date of November 17, 1998?",
    "question_th": "มีกี่เรื่องที่ออกอากาศครั้งแรกในวันที่ 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_en": "How many season numbers are there for the episode seen by 13.54 million people in the US?",
    "question_th": "มีหมายเลขซีซันกี่หมายเลขสำหรับตอนนี้ที่มีผู้ชม 13.54 ล้านคนในสหรัฐอเมริกา",
    "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_en": "What's the series number of the episode directed by Skipp Sudduth?",
    "question_th": "ตอนที่กำกับโดย 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_en": "Who wrote the episode seen by 10.64 million people in the US?",
    "question_th": "ใครเป็นคนเขียนตอนนี้ที่มีผู้ชม 10.64 ล้านคนในสหรัฐอเมริกา",
    "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_en": "Name the scores for  david baddiel and maureen lipman",
    "question_th": "ตั้งชื่อดนตรีประกอบของเดวิด แบดดิล และมอรีน ลิปแมน",
    "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_en": "Name the scores for michael buerk and russell howard",
    "question_th": "บอกชื่อเพลงของไมเคิล บูเอร์คและรัสเซลล์ ฮาวเวิร์ด",
    "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_en": "Name the davids team for 8 august 2008",
    "question_th": "ตั้งชื่อทีมเดวิดส์ วันที่ 8 สิงหาคม พ.ศ. 2551",
    "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_en": "What is the episode number that was first broadcast on 3 September 2010?",
    "question_th": "ออกอากาศครั้งแรกวันที่ 3 กันยายน 2553 หมายเลขตอนที่เท่าไหร่?",
    "context": "CREATE TABLE table_23575917_4 (episode VARCHAR, first_broadcast VARCHAR)"
  },
  {
    "answer": "SELECT lees_team FROM table_23575917_4 WHERE episode = \"4x04\"",
    "question_en": "Who is the Lees Team for episode 4x04?",
    "question_th": "ทีม Lees ในตอนที่ 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_en": "Who is on the David's Team for the episode with the Lees Team of Jack Dee and Peter Serafinowicz",
    "question_th": "ใครอยู่ในทีมของ David ในตอนนี้ร่วมกับทีม Lees ของ Jack Dee และ 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_en": "How many David's team for the Lees Team of Deborah Meaden and Mark Watson?",
    "question_th": "ทีมของ David สำหรับ Lees Team ได้แก่ Deborah Meaden และ 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_en": "If the episode is 6x03, what is the first broadcast total number?",
    "question_th": "ถ้าตอนเป็น 6x03 จำนวนการออกอากาศครั้งแรกทั้งหมดเป็นเท่าใด",
    "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_en": "If the lees team is Clare Balding and Miranda Hart, what is the first broadcast total number?",
    "question_th": "ถ้าทีม Lees คือ Clare Balding และ Miranda Hart จำนวนการออกอากาศครั้งแรกทั้งหมดคือเท่าใด",
    "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_en": "If the lees team is Clare Balding and Miranda Hart, what was the score?",
    "question_th": "ถ้าทีมลีส์คือ แคลร์ บัลดิง และ มิแรนดา ฮาร์ท สกอร์เท่าไหร่?",
    "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_en": "What is the position of the song that was eliminated on 11 november?",
    "question_th": "เพลงที่ถูกคัดออกเมื่อวันที่ 11 พฤศจิกายน อยู่ตำแหน่งไหน?",
    "context": "CREATE TABLE table_23585197_3 (position INTEGER, date_eliminated VARCHAR)"
  },
  {
    "answer": "SELECT artist FROM table_23585197_3 WHERE songwriter_s_ = \"Ingela Hemming\"",
    "question_en": "Which artist sang the song that ingela hemming wrote?",
    "question_th": "ศิลปินคนไหนร้องเพลงที่อิงเจลา เฮมมิ่ง แต่ง?",
    "context": "CREATE TABLE table_23585197_3 (artist VARCHAR, songwriter_s_ VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_23585197_3 WHERE songwriter_s_ = \"Adam Sandahl\"",
    "question_en": "What is the position of the song that adam sandahl wrote?",
    "question_th": "ตำแหน่งของเพลงที่ adam sandahl เขียนคืออะไร?",
    "context": "CREATE TABLE table_23585197_3 (position VARCHAR, songwriter_s_ VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_23585197_3 WHERE artist = \"Genjor McNell\"",
    "question_en": "What is the position of the song thar genjor mcnell performed?",
    "question_th": "ท่าของเพลงที่ thar genjor mcnell แสดงเป็นอย่างไร?",
    "context": "CREATE TABLE table_23585197_3 (position VARCHAR, artist VARCHAR)"
  },
  {
    "answer": "SELECT MIN(week) FROM table_23624542_4 WHERE attendance = 10402",
    "question_en": "What week has an attendance of 10402",
    "question_th": "สัปดาห์ใดมีผู้เข้าร่วม 1,0402 คน",
    "context": "CREATE TABLE table_23624542_4 (week INTEGER, attendance VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_23624542_4 WHERE date = \"Sept 22\"",
    "question_en": "What is the record on Sept 22?",
    "question_th": "บันทึกเมื่อวันที่ 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_en": "If artist 1 is Wolfgang Gartner, what is the release date?",
    "question_th": "ถ้าศิลปินคนที่ 1 คือ Wolfgang Gartner จะวางจำหน่ายวันไหน?",
    "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_en": "What is song 1 title is the artist is Danny Byrd?",
    "question_th": "เพลงที่ 1 ชื่อเพลงว่าอะไร ศิลปินคือ 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_en": "What is the mix pack when the artist 2 is Eminem?",
    "question_th": "มิกซ์แพ็คจะเป็นอย่างไรเมื่อศิลปิน 2 คือ 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_en": "What is every value for Serbs if value for Hungarians is 9.26%?",
    "question_th": "ทุกค่าสำหรับชาวเซิร์บจะเป็นเท่าใด หากค่าสำหรับชาวฮังการีคือ 9.26%",
    "context": "CREATE TABLE table_2374338_2 (serbs VARCHAR, hungarians VARCHAR)"
  },
  {
    "answer": "SELECT MAX(population) FROM table_2374338_2",
    "question_en": "What is the largest value of population?",
    "question_th": "มูลค่าประชากรที่ใหญ่ที่สุดคืออะไร?",
    "context": "CREATE TABLE table_2374338_2 (population INTEGER)"
  },
  {
    "answer": "SELECT COUNT(germans) FROM table_2374338_2 WHERE slovaks = \"0.11%\"",
    "question_en": "How many values for Germans occurs when value for Slovaks is 0.11%?",
    "question_th": "มีกี่ค่าสำหรับภาษาเยอรมันเกิดขึ้นเมื่อค่าสำหรับสโลวักคือ 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_en": "What is the smallest value of population if the value for Serbs is 73.53%?",
    "question_th": "ค่าประชากรที่น้อยที่สุดคือเท่าใดหากค่าของเซิร์บคือ 73.53%?",
    "context": "CREATE TABLE table_2374338_2 (population INTEGER, serbs VARCHAR)"
  },
  {
    "answer": "SELECT croats FROM table_2374338_2 WHERE roma = \"3.1%\"",
    "question_en": "What is every value for Croats if the value of Roma is 3.1%?",
    "question_th": "ทุกค่าของโครแอตจะเป็นเท่าใดหากค่าของโรมาคือ 3.1%?",
    "context": "CREATE TABLE table_2374338_2 (croats VARCHAR, roma VARCHAR)"
  },
  {
    "answer": "SELECT croats FROM table_2374338_2 WHERE romanians = \"16.65%\"",
    "question_en": "What is every value for Croats when value for Romanians is 16.65%?",
    "question_th": "ทุกค่าของโครแอตเป็นเท่าใดเมื่อค่าของโรมาเนียคือ 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_en": "How many years of nasl years did the accolades read \"captained england to victory at the 1966 world cup\"?",
    "question_th": "รางวัล NASL อ่านว่า \"กัปตันอังกฤษคว้าชัยชนะในฟุตบอลโลกปี 1966\" กี่ปี?",
    "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_en": "What nasl club won several titles with leeds united?",
    "question_th": "สโมสร nasl ใดที่คว้าแชมป์หลายรายการกับลีดส์ยูไนเต็ด?",
    "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_en": "What years did Bobby Moore play?",
    "question_th": "Bobby Moore เล่นกี่ปี?",
    "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_en": "What position is Philadelphia Fury?",
    "question_th": "ฟิลาเดลเฟีย ฟิวรี อยู่ตำแหน่งไหน?",
    "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_en": "How many years did Peter Lorimer play?",
    "question_th": "Peter Lorimer เล่นมากี่ปีแล้ว?",
    "context": "CREATE TABLE table_237757_9 (nasl_years VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT highest FROM table_237757_10 WHERE average = 10295",
    "question_en": "What was the entry for highest when average is 10295?",
    "question_th": "ค่าสูงสุดเมื่อค่าเฉลี่ยคือ 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_en": "How many entries for highest when the low team was baltimore rays?",
    "question_th": "มีกี่รายการสูงสุดเมื่อทีมต่ำคือบัลติมอร์เรย์?",
    "context": "CREATE TABLE table_237757_10 (highest VARCHAR, low_team VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_237757_10 WHERE low_team = \"Chicago Sting\"",
    "question_en": "What was the season when the low team is chicago sting?",
    "question_th": "ฤดูกาลไหนที่ทีมระดับล่างโดนชิคาโกต่อย?",
    "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_en": "What's the Stock Exchange Plaza's rank?",
    "question_th": "Stock Exchange Plaza มีอันดับเท่าไหร่?",
    "context": "CREATE TABLE table_23759976_1 (rank VARCHAR, building_ VARCHAR, a_ VARCHAR)"
  },
  {
    "answer": "SELECT height__m_ FROM table_23759976_1 WHERE floors = 36",
    "question_en": "How tall is the building with 36 floors?",
    "question_th": "อาคารสูง 36 ชั้นสูงเท่าไหร่?",
    "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_en": "How many different numbers of floors are there for the Chongqing Poly Tower?",
    "question_th": "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_en": "How many different ranks does the Cathay Pacific Plaza 2 have?",
    "question_th": "Cathay Pacific Plaza 2 มีอันดับที่แตกต่างกันกี่ระดับ",
    "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_en": "What is the production code directed by Matt Shakman?",
    "question_th": "รหัสการผลิตที่กำกับโดย 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_en": "How many series had a production code of 202?",
    "question_th": "มีกี่ซีรี่ส์ที่มีรหัสการผลิต 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_en": "What was the bleeding time during the prolonged partial thromboplastin time in which the prothrombin time is unaffected?",
    "question_th": "ระยะเวลาที่มีเลือดออกในช่วงเวลาของ thromboplastin บางส่วนที่ยืดเยื้อเป็นเวลานาน ซึ่งเวลาของ prothrombin ไม่ได้รับผลกระทบคืออะไร?",
    "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_en": "What is the bleeding time for glanzmann's thrombasthenia?",
    "question_th": "เวลาเลือดออกสำหรับภาวะเกล็ดเลือดต่ำของ glanzmann คืออะไร?",
    "context": "CREATE TABLE table_238124_1 (bleeding_time VARCHAR, condition VARCHAR)"
  },
  {
    "answer": "SELECT platelet_count FROM table_238124_1 WHERE condition = \"Congenital afibrinogenemia\"",
    "question_en": "What is the platelet count for congenital afibrinogenemia?",
    "question_th": "จำนวนเกล็ดเลือดสำหรับภาวะอะไฟบริโนเจเนเมียแต่กำเนิดคืออะไร?",
    "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_en": "What is the prothrombin time of von willebrand disease? ",
    "question_th": " เวลา prothrombin ของโรค von willebrand คืออะไร?",
    "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_en": "When the bleeding time is unaffected and prothrombin time is prolonged, what are the platelet counts?",
    "question_th": "เมื่อเวลาเลือดออกไม่ได้รับผลกระทบและเวลาของ prothrombin นานขึ้น เกล็ดเลือดจะนับจำนวนเท่าใด",
    "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é María Minella\"",
    "question_en": "Name the last match for  argentina - estadio josé maría minella",
    "question_th": "นัดสุดท้ายของอาร์เจนตินา - เอสตาดิโอ โฆเซ่ มาเรีย มิเนลลา",
    "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_en": "Name the final position for copa libertadores",
    "question_th": "ระบุตำแหน่งสุดท้ายของโคปา ลิเบอร์ตาโดเรส",
    "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_en": "Name the final place for july 25, 2009",
    "question_th": "ตั้งชื่อสถานที่สุดท้ายสำหรับวันที่ 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_en": "What is the epa rated combined fuel economy for the Nissan Leaf?",
    "question_th": "การประหยัดน้ำมันเชื้อเพลิงแบบรวมพิกัด epa สำหรับ 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_en": "What is the operating mode of the Coda?",
    "question_th": "โหมดการทำงานของ 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_en": "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)?",
    "question_th": "อะไรคือกริดไฟฟ้าสกปรกภูเขาหิน (เดนเวอร์) สำหรับรถยนต์ที่มีกริดไฟฟ้าสะอาดแคลิฟอร์เนีย (ซานฟรานซิสโก) ที่ 160 กรัม/ไมล์ (99 กรัม/กม.)",
    "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_en": "How many dirty electric grid rocky mountains (denver) vehicles have an  epa rated combined fuel economy of 102 mpg-e (33kw-hrs/100mi)?",
    "question_th": "มีรถยนต์ไฟฟ้าสกปรกบนภูเขาหิน (เดนเวอร์) จำนวนกี่คันที่มีการประหยัดเชื้อเพลิงรวมตามพิกัด epa ที่ 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_en": "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)?",
    "question_th": "การประหยัดน้ำมันเชื้อเพลิงรวมที่จัดอันดับโดย epa สำหรับรถยนต์ไฟฟ้าทั้งหมดที่มีโครงข่ายไฟฟ้าสกปรก ภูเขาหิน (เดนเวอร์) ที่ 330 กรัม/ไมล์ (205 กรัม/กม.) คือเท่าใด",
    "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_en": "How many clean electric grid california (san francisco) figures are given for the Nissan Leaf?",
    "question_th": "นิสสัน ลีฟ มีตัวเลขกริดไฟฟ้าสะอาดแคลิฟอร์เนีย (ซานฟรานซิสโก) จำนวนเท่าใด",
    "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_en": "Which aperture were built or used between 1987-2001?",
    "question_th": "รูรับแสงใดที่สร้างหรือใช้ระหว่างปี 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_en": "How many nationalities/sponsors for mirror/type schmidt uv?",
    "question_th": "มีกี่สัญชาติ/ผู้สนับสนุนกระจก/ประเภท 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_en": "Which telescopes were sponsored by or originated in Belgium?",
    "question_th": "กล้องโทรทรรศน์ใดบ้างที่ได้รับการสนับสนุนหรือมีต้นกำเนิดในเบลเยียม",
    "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_en": "What team finished in 4th place in 2007? ",
    "question_th": " ทีมใดจบอันดับที่ 4 ในปี 2550",
    "context": "CREATE TABLE table_2388763_1 (year VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_23916539_3 WHERE opponent = \"Stampeders\"",
    "question_en": "If the opponent is the Stampeders, what is the record?",
    "question_th": "หากคู่ต่อสู้คือ Stampeders มีสถิติอะไรบ้าง?",
    "context": "CREATE TABLE table_23916539_3 (record VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_23916539_3 WHERE location = \"Clarke Stadium\"",
    "question_en": "What is the record if the location is Clarke Stadium?",
    "question_th": "บันทึกอะไรถ้าสถานที่คือสนามกีฬาคลาร์ก?",
    "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_en": "How many companies had an april 2013 cumulative ranking of 3?",
    "question_th": "มีกี่บริษัทที่มีอันดับสะสมในเดือนเมษายน 2013 ที่ 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_en": "What was the Forbers rank (all companies) in 2012 for cenovus energy?",
    "question_th": "การจัดอันดับ Forbers (ทุกบริษัท) ในปี 2012 ในด้านพลังงาน cenovus เป็นเท่าใด",
    "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_en": "How many assets in billions US$, for the company that ranked 1532 overall in 2013?",
    "question_th": "มีทรัพย์สินจำนวนเท่าใดในพันล้านเหรียญสหรัฐสำหรับบริษัทที่ติดอันดับ 1,532 โดยรวมในปี 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_en": "How many companies named cenovus energy?",
    "question_th": "มีกี่บริษัทที่ตั้งชื่อว่า 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_en": "What was the French title of the story published in 1968?",
    "question_th": "ชื่อเรื่องภาษาฝรั่งเศสที่ตีพิมพ์ในปี 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_en": "Who was the artist who worked on the stories published in 1966?",
    "question_th": "ใครคือศิลปินที่ทำงานเกี่ยวกับเรื่องราวที่ตีพิมพ์ในปี 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_en": "When did series 6 start?",
    "question_th": "ซีรีย์ 6 เริ่มเมื่อไหร่?",
    "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_en": "What series had an average of 3.72 million people watching it?",
    "question_th": "ซีรีส์เรื่องไหนมีผู้ชมเฉลี่ย 3.72 ล้านคน?",
    "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_en": "How many different end dates are there for the series seen by 4.2 million people?",
    "question_th": "มีวันที่สิ้นสุดที่แตกต่างกันกี่รายการสำหรับซีรีส์ที่มีผู้ชม 4.2 ล้านคน",
    "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_en": "What percentage of the EU's population lives in the country with a population density of 110.8 people per square kilometer?",
    "question_th": "ประชากรสหภาพยุโรปอาศัยอยู่ในประเทศโดยมีความหนาแน่นของประชากร 110.8 คนต่อตารางกิโลเมตรกี่เปอร์เซ็นต์",
    "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_en": "What is the area of Austria's territory in square kilometers?",
    "question_th": "ออสเตรียมีพื้นที่กี่ตารางกิโลเมตร?",
    "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_en": "How many inhabitants does Sweden have per square kilometer?",
    "question_th": "สวีเดนมีประชากรกี่คนต่อตารางกิโลเมตร?",
    "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_en": "How many measurements of the Czech Republic's population density are recorded in this table?",
    "question_th": "ตารางนี้มีการวัดความหนาแน่นของประชากรของสาธารณรัฐเช็กไว้กี่หน่วย?",
    "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_en": "Name the number of number in the season for 11",
    "question_th": "ตั้งชื่อหมายเลขในฤดูกาล 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_en": "Name the number of airdates for 14",
    "question_th": "ตั้งชื่อจำนวนวันที่ออกอากาศสำหรับ 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_en": "Name the title for 446913",
    "question_th": "ตั้งชื่อหัวข้อสำหรับ 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_en": "What was the Kentucky Oaks attendance the year the Belmont Stakes had 64,949 attendance?",
    "question_th": "ผู้เข้าร่วม Kentucky Oaks เป็นเท่าใดในปีที่ Belmont Stakes มีผู้เข้าร่วม 64,949 คน",
    "context": "CREATE TABLE table_24089503_1 (kentucky_oaks VARCHAR, belmont_stakes VARCHAR)"
  },
  {
    "answer": "SELECT travers_stakes FROM table_24089503_1 WHERE year = 1977",
    "question_en": "What was the attendance at the Travers Stakes in 1977?",
    "question_th": "การเข้าร่วม Travers Stakes ในปี 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_en": "What was the Breeder's Cup Friday attendance for the year the Breeder's Cup Saturday had 52,987?",
    "question_th": "จำนวนผู้เข้าร่วม Breeder's Cup ในวันศุกร์สำหรับปีที่ Breeder's Cup ในวันเสาร์มี 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_en": "In what edition is Ungur's opponent David Nalbandian?",
    "question_th": "David Nalbandian คู่ต่อสู้ของ Ungur ในรุ่นใด",
    "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_en": "When was the win/lose lose and the round a play-off?",
    "question_th": "เมื่อใดที่แพ้/ชนะและรอบเพลย์ออฟ?",
    "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_en": "In what round did he play against Sergiy Stakhovsky?",
    "question_th": "เขาเล่นกับ Sergiy Stakhovsky ในรอบใด?",
    "context": "CREATE TABLE table_24099476_8 (round VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT municipality FROM table_24115349_6 WHERE coakley_votes = 754",
    "question_en": "What municipality had 754 votes for coakley?",
    "question_th": "เทศบาลใดมีคะแนนเสียง 754 เสียงสำหรับ 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_en": "How many votes for brown in the place that had 84.1% for coakley?",
    "question_th": "มีกี่คะแนนสำหรับสีน้ำตาลในสถานที่ที่มี 84.1% สำหรับ 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_en": "What was the turnout percentage in the place that had 44.6% vote for brown?",
    "question_th": "เปอร์เซ็นต์ของผู้ออกมาใช้ในสถานที่ซึ่งได้รับคะแนนโหวตให้สีน้ำตาล 44.6% เป็นเท่าใด",
    "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_en": "Name the finish top 10 being 8 ",
    "question_th": " ตั้งชื่อผู้เข้าเส้นชัย 10 อันดับแรกเป็น 8",
    "context": "CREATE TABLE table_24119784_1 (finish INTEGER, top_10 VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_24122653_2 WHERE vote = \"3-2\"",
    "question_en": "What is the finish associated with a 3-2 vote?",
    "question_th": "การจบสกอร์ที่เกี่ยวข้องกับการโหวต 3-2 คืออะไร?",
    "context": "CREATE TABLE table_24122653_2 (finish VARCHAR, vote VARCHAR)"
  },
  {
    "answer": "SELECT reward FROM table_24122653_2 WHERE eliminated = \"Peterson\"",
    "question_en": "What is the reward for the elimination of Peterson?",
    "question_th": "รางวัลสำหรับการกำจัดปีเตอร์สันคืออะไร?",
    "context": "CREATE TABLE table_24122653_2 (reward VARCHAR, eliminated VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(finish) FROM table_24122653_2 WHERE eliminated = \"Adriana\"",
    "question_en": "What is the number of finishes associated with an elimination of Adriana?",
    "question_th": "จำนวนการเข้าเส้นชัยที่เกี่ยวข้องกับการกำจัด Adriana เป็นจำนวนเท่าใด?",
    "context": "CREATE TABLE table_24122653_2 (finish VARCHAR, eliminated VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(episode) FROM table_24122653_2 WHERE vote = \"3-1\"",
    "question_en": "What was the total number of episodes that had a 3-1 vote?",
    "question_th": "จำนวนตอนทั้งหมดที่ได้รับการโหวต 3-1 คือเท่าไร?",
    "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_en": "When troy is the regular season winner what is the conference tournament?",
    "question_th": "เมื่อทรอยเป็นผู้ชนะในฤดูกาลปกติ การแข่งขันการประชุมคืออะไร?",
    "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_en": "When madison square garden ( new york city, new york ) is the tournament venue (city) what is the conference tournament?",
    "question_th": "เมื่อ Madison Square Garden (นิวยอร์กซิตี้, นิวยอร์ก) เป็นสถานที่จัดการแข่งขัน (เมือง) การแข่งขันการประชุมคืออะไร?",
    "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_en": "When Cincinnati is the tournament winner how many regular season winners are there?",
    "question_th": "เมื่อซินซินแนติเป็นผู้ชนะการแข่งขัน มีผู้ชนะในฤดูกาลปกติกี่คน?",
    "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_en": "When western michigan is the tournament winner how many conferences are there?",
    "question_th": "เมื่อมิชิแกนตะวันตกเป็นผู้ชนะการแข่งขัน มีการประชุมกี่ครั้ง?",
    "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_en": "When was successor George E. Harris (R) seated?",
    "question_th": "ผู้สืบทอดตำแหน่งของจอร์จ อี. แฮร์ริส (ขวา) นั่งเมื่อใด",
    "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_en": "What was the reason for change when the successor was William Milnes, Jr. (C)?",
    "question_th": "อะไรคือสาเหตุของการเปลี่ยนแปลงเมื่อผู้สืบทอดคือวิลเลียม มิลเนส จูเนียร์ (กลาง)?",
    "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_en": "When were the successor/s seated for Ohio 10th?",
    "question_th": "ผู้สืบทอดตำแหน่งได้นั่งในโอไฮโอครั้งที่ 10 เมื่อใด",
    "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_en": "Name the reason for change when George W. Greene (D) was the vacator.",
    "question_th": "ระบุเหตุผลของการเปลี่ยนแปลงเมื่อ George W. Greene (D) เป็นผู้ว่างงาน",
    "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_en": "When was successor David Atwood (R) seated?",
    "question_th": "ผู้สืบทอดตำแหน่ง David Atwood (ขวา) นั่งเมื่อใด",
    "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_en": "What district was the successor seated in March 28, 1878?",
    "question_th": "ผู้สืบทอดตำแหน่งนั่งอยู่ในเขตใดในวันที่ 28 มีนาคม พ.ศ. 2421?",
    "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_en": "Who was the vacator for the district of Nebraska at-large?",
    "question_th": "ใครคือผู้ว่างงานในเขตเนแบรสกาโดยรวม?",
    "context": "CREATE TABLE table_2417390_4 (vacator VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT enrollment FROM table_24216139_2 WHERE nickname = \"Cougars\"",
    "question_en": "Name the enrollment with cougars",
    "question_th": "ตั้งชื่อการลงทะเบียนกับคูการ์",
    "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_en": "Name the least enrollment for field hockey, men's swimming",
    "question_th": "ระบุชื่อการลงทะเบียนน้อยที่สุดสำหรับกีฬาฮอกกี้ว่ายน้ำชาย",
    "context": "CREATE TABLE table_24216139_2 (enrollment INTEGER, sport VARCHAR)"
  },
  {
    "answer": "SELECT institution FROM table_24216139_2 WHERE nickname = \"Cougars\"",
    "question_en": "Name the school that is cougars",
    "question_th": "ตั้งชื่อโรงเรียนที่เป็นคูการ์",
    "context": "CREATE TABLE table_24216139_2 (institution VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT institution FROM table_24216139_2 WHERE nickname = \"Purple Aces\"",
    "question_en": "Name the institution for purple aces",
    "question_th": "ตั้งชื่อสถาบันสำหรับเอซสีม่วง",
    "context": "CREATE TABLE table_24216139_2 (institution VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_24222929_2 WHERE directed_by = \"John Terlesky\"",
    "question_en": "Name the title that was directed  by john terlesky",
    "question_th": "ตั้งชื่อเรื่องที่กำกับโดยจอห์น เทอร์เลสกี้",
    "context": "CREATE TABLE table_24222929_2 (title VARCHAR, directed_by VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(title) FROM table_24222929_2 WHERE production_code = \"3X5655\"",
    "question_en": "Name the total number of titles for 3x5655",
    "question_th": "ตั้งชื่อจำนวนชื่อเรื่องทั้งหมดสำหรับ 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_en": "What date did the episode that had 1.023 million u.s. viewers originally air?",
    "question_th": "ตอนที่มีผู้ชม 1.023 ล้านคนของเราออกอากาศครั้งแรกเมื่อใด",
    "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_en": "What episode number in the series had 2.528 million u.s. viewers?",
    "question_th": "หมายเลขตอนใดในซีรีส์ที่มีผู้ชม 2.528 ล้านคน?",
    "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_en": "How many million U.S. viewers watched the episode that Daniel H. Forer directed?",
    "question_th": "มีผู้ชมในสหรัฐฯ จำนวนกี่ล้านคนที่ดูตอนที่ Daniel H. Forer กำกับ?",
    "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_en": "How may overall episodes had the title \"this is what they want\"?",
    "question_th": "ตอนโดยรวมอาจมีชื่อว่า \"นี่คือสิ่งที่พวกเขาต้องการ\" ได้อย่างไร",
    "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_en": "Who was the Tournament Winner when UNC Wilmington won the regular season?",
    "question_th": "ใครคือผู้ชนะการแข่งขันเมื่อ UNC Wilmington ชนะในฤดูกาลปกติ",
    "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_en": "Who won the tournament for the Atlantic Sun Conference?",
    "question_th": "ใครชนะการแข่งขันสำหรับการประชุม 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_en": "What is the tournament called for the Big Sky Conference?",
    "question_th": "การแข่งขันที่เรียกว่า 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_en": "How many men had an event 1 medley score of 6 (16.6m)?",
    "question_th": "แมตช์ 1 คะแนน 6 (16.6ม.) มีชายกี่คน?",
    "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_en": "How many men from the Ukraine?",
    "question_th": "ผู้ชายจากยูเครนกี่คน?",
    "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_en": "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?",
    "question_th": "ผลลัพธ์คืออะไรจากเหตุการณ์ 3 squatlift สำหรับผู้ชายจากประเทศสหรัฐอเมริกา โดยมีผล 1 (42.66 วินาที) ในกรณี 2 รถบรรทุกดึง?",
    "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_en": "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?",
    "question_th": "ผลลัพธ์ของเหตุการณ์ 1 ผสมสำหรับผู้ชายที่มี 4 (6 ใน 31.85 วินาที) ในเหตุการณ์ 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_en": "Name the least series number",
    "question_th": "ตั้งชื่อหมายเลขลำดับที่น้อยที่สุด",
    "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_en": "Which county has a membership of 1, a franchise type of corporation and a borough of Ennis?",
    "question_th": "เคาน์ตีใดมีสมาชิก 1 แห่ง มีบริษัทประเภทแฟรนไชส์และเขตเลือกตั้งของเอนนิส",
    "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_en": "What is the number of members that have boroughs of Bandon Bridge?",
    "question_th": "สมาชิกที่มีเขตสะพานบ้านดอนมีจำนวนเท่าใด?",
    "context": "CREATE TABLE table_24329520_8 (members VARCHAR, borough VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(voters_in_1800) FROM table_24329520_8 WHERE borough = \"Drogheda\"",
    "question_en": "What is the number of voters in 1800 that have boroughs named Drogheda?",
    "question_th": "จำนวนผู้มีสิทธิเลือกตั้งในปี 1800 ที่มีเขตเลือกตั้งชื่อโดรกเฮดาคือเท่าใด",
    "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_en": "While the original toyko/seoul tour cast included thomas hettrick, who was in the original 1st us tour cast? ",
    "question_th": " ในขณะที่นักแสดงดั้งเดิมของทอยโกะ/โซลทัวร์มีโธมัส เฮ็ตทริคด้วย แล้วใครเป็นคนในทีมนักแสดงของ 1st us tour ดั้งเดิมด้วย?",
    "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_en": "How many original 3rd us tour cast were there while the original uk cast was alyssa dipalma?",
    "question_th": "มีนักแสดงดั้งเดิมจากทัวร์อเมริกาคนที่ 3 กี่คน ในขณะที่นักแสดงดั้งเดิมในสหราชอาณาจักรคืออลิสซา ดิพัลมา",
    "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_en": "While the original 1st us tour cast included nicci claspell, who was in the original tokyo/seoul tour cast?",
    "question_th": "ในขณะที่นักแสดงต้นฉบับของ 1st us tour มี nicci Claspell อยู่ด้วย ใครบ้างที่อยู่ในนักแสดงดั้งเดิมของทัวร์โตเกียว/โซล?",
    "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_en": "Who was in the original berkley cast while stark sands was in the original broadway cast? ",
    "question_th": " ใครอยู่ในทีมนักแสดง Berkley ดั้งเดิม ในขณะที่ Stark Sands อยู่ในทีมนักแสดงบรอดเวย์ดั้งเดิม?",
    "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_en": "Who was in the original broadway cast while jake epstein was in the original 1st us tour cast? ",
    "question_th": "ใครอยู่ในทีมนักแสดงบรอดเวย์ดั้งเดิม ในขณะที่เจค เอปสเตนอยู่ในทีมนักแสดงดั้งเดิมของ 1st us tour?",
    "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_en": "Who was in the original 3rd us tour cast while scott j. campbell was in the original 1st us tour cast? ",
    "question_th": " ใครอยู่ในรายการ us tour ครั้งที่ 3 ดั้งเดิมในขณะที่สก็อตต์เจ แคมป์เบลล์อยู่ในทีมนักแสดงคนแรกของ us tour คนแรกเหรอ?",
    "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_en": "What is the highest cable ranking?",
    "question_th": "อันดับสายเคเบิลสูงสุดคืออะไร?",
    "context": "CREATE TABLE table_24399615_6 (cable_rank INTEGER)"
  },
  {
    "answer": "SELECT status FROM table_24431348_18 WHERE player = \"Philipp Kohlschreiber\"",
    "question_en": "What is the status of player Philipp Kohlschreiber?",
    "question_th": "สถานะของผู้เล่น ฟิลิปป์ โคห์ลชไรเบอร์ คืออะไร?",
    "context": "CREATE TABLE table_24431348_18 (status VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(points) AS won FROM table_24431348_18 WHERE seed = 25",
    "question_en": "What the total amount of points won during seed 25?",
    "question_th": "คะแนนรวมที่ได้รับระหว่างเมล็ดพันธุ์ 25 เป็นเท่าใด",
    "context": "CREATE TABLE table_24431348_18 (points VARCHAR, seed VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_24431348_18 WHERE rank = 20",
    "question_en": "What was the status of rank 20?",
    "question_th": "สถานะของอันดับ 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_en": "List the total number of defense points for caroline wozniacki.",
    "question_th": "ระบุจำนวนคะแนนการป้องกันของแคโรไลน์ วอซเนียคกี้",
    "context": "CREATE TABLE table_24431264_17 (points VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT points AS defending FROM table_24431264_17 WHERE player = \"Marion Bartoli\"",
    "question_en": "List the total defensive points for marion bartoli.",
    "question_th": "แจกแจงแต้มแนวรับรวมของแมเรียน บาร์โตลี่",
    "context": "CREATE TABLE table_24431264_17 (points VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(points) AS won FROM table_24431348_20 WHERE player = \"Aravane Rezaï\"",
    "question_en": "What is the highest points won when the player is aravane rezaï?",
    "question_th": "แต้มสูงสุดที่ได้รับเมื่อผู้เล่นคือ aravane rezaï คืออะไร?",
    "context": "CREATE TABLE table_24431348_20 (points INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(status) FROM table_24431348_20 WHERE new_points = 2690",
    "question_en": "How many times is the new points 2690?",
    "question_th": "แต้มใหม่ 2690 กี่ครั้ง?",
    "context": "CREATE TABLE table_24431348_20 (status VARCHAR, new_points VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_24431264_18 WHERE new_points = 1285",
    "question_en": "List the players with 1285 new points?",
    "question_th": "รายชื่อผู้เล่นที่มี 1,285 แต้มใหม่?",
    "context": "CREATE TABLE table_24431264_18 (player VARCHAR, new_points VARCHAR)"
  },
  {
    "answer": "SELECT MAX(points) AS defending FROM table_24431264_18 WHERE player = \"Radek Štěpánek\"",
    "question_en": "How many defending points did  radek štěpánek have?",
    "question_th": "radek štěpánek มีแต้มป้องกันกี่แต้ม?",
    "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_en": "List the rank of the player that left the tournament due to right foot injury",
    "question_th": "รายชื่อผู้เล่นที่ออกจากการแข่งขันเนื่องจากอาการบาดเจ็บที่เท้าขวา",
    "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 Štěpánek\"",
    "question_en": "List the total number of defensive points for radek štěpánek?",
    "question_th": "แสดงจำนวนแต้มการป้องกันทั้งหมดสำหรับ radek štěpánek?",
    "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_en": "List the rank of the player that left due to right wrist surgery?",
    "question_th": "รายชื่อนักเตะที่ออกจากงานเพราะผ่าตัดข้อมือขวา?",
    "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_en": "Name the awardees for best special effects",
    "question_th": "ตั้งชื่อผู้ได้รับรางวัลสำหรับเทคนิคพิเศษที่ดีที่สุด",
    "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_en": "Name the total number of awardees for best screenplay",
    "question_th": "ระบุจำนวนผู้ได้รับรางวัลบทภาพยนตร์ยอดเยี่ยมทั้งหมด",
    "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_en": "Name the name of award for marathi",
    "question_th": "ตั้งชื่อรางวัลมราฐี",
    "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_en": "Name the awardee for tingya",
    "question_th": "ตั้งชื่อผู้ได้รับรางวัล 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_en": "Name the language for b. ajith kumar",
    "question_th": "ตั้งชื่อภาษาให้ข อาจิธ กุมาร์",
    "context": "CREATE TABLE table_24446718_3 (language VARCHAR, awardee_s_ VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_24453847_2 WHERE game_site = \"AOL Arena\"",
    "question_en": "What game date was the game at AOL Arena?",
    "question_th": "เกมที่ 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_en": "What was the Rhein Fire team record on week 8?",
    "question_th": "บันทึกของทีม Rhein Fire ในสัปดาห์ที่ 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_en": "Name the circuit for france and portugal",
    "question_th": "ตั้งชื่อวงจรสำหรับฝรั่งเศสและโปรตุเกส",
    "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_en": "Name the date for sprint winner mexico",
    "question_th": "ตั้งชื่อวันที่สำหรับ 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_en": "Name the date for eastern creek raceway",
    "question_th": "ตั้งชื่อวันที่สนามแข่งลำธารตะวันออก",
    "context": "CREATE TABLE table_2446333_2 (date VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT circuit FROM table_2446333_2 WHERE country = \"United Arab Emirates\"",
    "question_en": "Name the circuit for  united arab emirates",
    "question_th": "ตั้งชื่อวงจรสำหรับสหรัฐอาหรับเอมิเรตส์",
    "context": "CREATE TABLE table_2446333_2 (circuit VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(date) FROM table_2446333_2 WHERE round = 10",
    "question_en": "Name the total number of date for 10",
    "question_th": "ตั้งชื่อจำนวนวันที่ทั้งหมดสำหรับ 10",
    "context": "CREATE TABLE table_2446333_2 (date VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT MIN(game) FROM table_24464253_1",
    "question_en": "What is the number of the first game?",
    "question_th": "เกมแรกเบอร์อะไรครับ?",
    "context": "CREATE TABLE table_24464253_1 (game INTEGER)"
  },
  {
    "answer": "SELECT opponent FROM table_24464253_1 WHERE record = \"5-4\"",
    "question_en": "Against what opponent did the Wildcats have a record of 5-4?",
    "question_th": "Wildcats มีสถิติ 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_en": "How many pa were blank ends 7 and 5?",
    "question_th": "ปลาย 7 และ 5 ว่างกี่ pa?",
    "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_en": "Who is the conductor on the Multisonic label? ",
    "question_th": " ใครคือตัวนำบนฉลาก Multisonic?",
    "context": "CREATE TABLE table_24521345_1 (conductor VARCHAR, record_label VARCHAR)"
  },
  {
    "answer": "SELECT conductor FROM table_24521345_1 WHERE work_title = \"Rusalka\"",
    "question_en": "Who is the conductor for Rusalka? ",
    "question_th": " ใครคือวาทยากรของ Rusalka?",
    "context": "CREATE TABLE table_24521345_1 (conductor VARCHAR, work_title VARCHAR)"
  },
  {
    "answer": "SELECT composer FROM table_24521345_1 WHERE conductor = \"Jaroslav Vogel\"",
    "question_en": "Who composed the work conducted by jaroslav Vogel? ",
    "question_th": " ใครเป็นผู้แต่งผลงานของ Jaroslav Vogel?",
    "context": "CREATE TABLE table_24521345_1 (composer VARCHAR, conductor VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_2453243_5 WHERE production_code = \"406\"",
    "question_en": "What is the title of the episode with production code 406?",
    "question_th": "ชื่อตอนที่มีรหัสการผลิต 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_en": "Who write episode number 48 in the series?",
    "question_th": "ใครเป็นคนเขียนตอนที่ 48 ของซีรีส์นี้?",
    "context": "CREATE TABLE table_2453243_5 (written_by VARCHAR, no_in_series VARCHAR)"
  },
  {
    "answer": "SELECT MAX(goals¹) FROM table_24565004_19 WHERE period = \"1972 – 1975, 1976 – 1982\"",
    "question_en": "Name the most goals for  1972 – 1975, 1976 – 1982",
    "question_th": "ระบุชื่อประตูมากที่สุดในปี 1972 – 1975, 1976 – 1982",
    "context": "CREATE TABLE table_24565004_19 (goals¹ INTEGER, period VARCHAR)"
  },
  {
    "answer": "SELECT period FROM table_24565004_19 WHERE nationality² = \"Uruguay\"",
    "question_en": "Name the period for uruguay",
    "question_th": "ตั้งชื่อช่วงเวลาสำหรับอุรุกวัย",
    "context": "CREATE TABLE table_24565004_19 (period VARCHAR, nationality² VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_24565004_19 WHERE period = \"1980 – 1987\"",
    "question_en": "Name the position for  1980 – 1987",
    "question_th": "ตั้งชื่อตำแหน่ง พ.ศ. 2523 – 2530",
    "context": "CREATE TABLE table_24565004_19 (position VARCHAR, period VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_24565004_3 WHERE name = \"Pierre Bajoc\"",
    "question_en": "which position did pierre bajoc play?",
    "question_th": "ปิแอร์ บาจอกเล่นตำแหน่งไหน?",
    "context": "CREATE TABLE table_24565004_3 (position VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT period FROM table_24565004_3 WHERE name = \"Albert Baning\"",
    "question_en": "during which period did albert baning play?",
    "question_th": "อัลเบิร์ต แบนนิ่งลงเล่นช่วงไหน?",
    "context": "CREATE TABLE table_24565004_3 (period VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT goals¹ FROM table_24565004_8 WHERE name = \"Xavier Gravelaine\"",
    "question_en": "What is the number of goals if the name is Xavier Gravelaine?",
    "question_th": "ถ้าชื่อ ซาเวียร์ กราเวเลน ยิงได้กี่ประตู?",
    "context": "CREATE TABLE table_24565004_8 (goals¹ VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT nationality² FROM table_24565004_8 WHERE name = \"Patrick Grappin\"",
    "question_en": "If the name is Patrick Grappin, what is the nationality?",
    "question_th": "ถ้าชื่อแพทริค กราปปิน สัญชาติอะไร?",
    "context": "CREATE TABLE table_24565004_8 (nationality² VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(period) FROM table_24565004_8 WHERE name = \"Geraldão\"",
    "question_en": "What is the period total number if the name is Geraldão?",
    "question_th": "ถ้าชื่อเจรัลเดามีงวดทั้งหมดเป็นเท่าใด",
    "context": "CREATE TABLE table_24565004_8 (period VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT nationality² FROM table_24565004_8 WHERE appearances¹ = 29",
    "question_en": "What is the nationality if the appearance is 29?",
    "question_th": "ถ้าลักษณะที่ปรากฏคืออายุ 29 สัญชาติอะไร?",
    "context": "CREATE TABLE table_24565004_8 (nationality² VARCHAR, appearances¹ VARCHAR)"
  },
  {
    "answer": "SELECT concacaf FROM table_245694_4 WHERE season = 2010",
    "question_en": "Name the concacaf for 2010 season",
    "question_th": "ตั้งชื่อคอนคาแคฟสำหรับฤดูกาล 2010",
    "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_en": "Name the least season for round of 32",
    "question_th": "ตั้งชื่อฤดูกาลที่น้อยที่สุดในรอบ 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_en": "Name the number of playoffs for semifinals",
    "question_th": "ตั้งชื่อจำนวนรอบตัดเชือกสำหรับรอบรองชนะเลิศ",
    "context": "CREATE TABLE table_245694_4 (playoffs VARCHAR, concacaf VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(season) FROM table_24596664_1 WHERE position = \"18th\"",
    "question_en": "Name the number of season for 18th position",
    "question_th": "ตั้งชื่อหมายเลขฤดูกาลสำหรับอันดับที่ 18",
    "context": "CREATE TABLE table_24596664_1 (season VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT MIN(wins) FROM table_24596664_1",
    "question_en": "Name the least wins",
    "question_th": "ตั้งชื่อว่าชนะน้อยที่สุด",
    "context": "CREATE TABLE table_24596664_1 (wins INTEGER)"
  },
  {
    "answer": "SELECT COUNT(language_of_films) FROM table_2461720_1 WHERE theatre_name = \"Méga-Plex Taschereau IMAX\"",
    "question_en": "Name the total number of language of films for méga-plex taschereau imax",
    "question_th": "ตั้งชื่อจำนวนภาษาทั้งหมดของภาพยนตร์สำหรับ méga-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_en": "Name the theatre name for french",
    "question_th": "ตั้งชื่อโรงละครเป็นภาษาฝรั่งเศส",
    "context": "CREATE TABLE table_2461720_1 (theatre_name VARCHAR, language_of_films VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_2461720_1 WHERE theatre_name = \"Méga-Plex Taschereau IMAX\"",
    "question_en": "Name the location for democratic méga-plex taschereau imax",
    "question_th": "ตั้งชื่อสถานที่สำหรับ méga-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_en": "What episode number has 2j5352 as a production code?",
    "question_th": "หมายเลขตอนใดที่มี 2j5352 เป็นรหัสการผลิต",
    "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_en": "What date did the episode with a production code of 2j5356 originally air?",
    "question_th": "ตอนที่มีรหัสการผลิต 2j5356 เดิมออกอากาศวันไหน?",
    "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_en": "When 2012 is the year what is the winning boat?",
    "question_th": "เมื่อถึงปี 2555 เรือลำไหนชนะ?",
    "context": "CREATE TABLE table_24673710_1 (winning_boat VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT winning_boat FROM table_24673710_1 WHERE entries = 64",
    "question_en": "When 64 is the entries what is the winning boat?",
    "question_th": "เมื่อเข้าปีที่ 64 เรือชนะคืออะไร?",
    "context": "CREATE TABLE table_24673710_1 (winning_boat VARCHAR, entries VARCHAR)"
  },
  {
    "answer": "SELECT winning_boat FROM table_24673710_1 WHERE entries = 61",
    "question_en": "When 61 is the entries what is the winning boat?",
    "question_th": "เมื่อเข้าปี 61 เรือชนะคืออะไร?",
    "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_en": "What is the name of the episode that aired originally on October 18, 1991?",
    "question_th": "ตอนที่ออกอากาศครั้งแรกเมื่อวันที่ 18 ตุลาคม 2534 ชื่ออะไร",
    "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_en": "What is the name of the episode written by Ross Brown?",
    "question_th": "ตอนที่เขียนโดย 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_en": "What episode number in the series originally aired on February 28, 1992?",
    "question_th": "หมายเลขตอนใดในซีรีส์ที่ออกอากาศครั้งแรกเมื่อวันที่ 28 กุมภาพันธ์ พ.ศ. 2535",
    "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_en": "What date did the episode with a production code of 447004 originally air?",
    "question_th": "ตอนรหัสผลิต 447004 เดิมออกอากาศวันไหนครับ?",
    "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_en": "How many episodes were written by Ross brown?",
    "question_th": "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_en": "What number in the series was episode 2 in the season?",
    "question_th": "หมายเลขใดในซีรีส์คือตอนที่ 2 ของฤดูกาล?",
    "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_en": "What was the title of the episode written by Bob Rosenfarb and directed by Richard Correll?",
    "question_th": "ตอนที่เขียนโดย Bob Rosenfarb และกำกับโดย 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_en": "What university was founded in 1898?",
    "question_th": "มหาวิทยาลัยใดก่อตั้งในปี พ.ศ. 2441?",
    "context": "CREATE TABLE table_24697604_1 (university VARCHAR, year_founded VARCHAR)"
  },
  {
    "answer": "SELECT MAX(average) FROM table_2472711_32 WHERE total = 221902",
    "question_en": "What is the maximum average associated with a total of 221902?",
    "question_th": "ค่าเฉลี่ยสูงสุดที่เกี่ยวข้องกับผลรวมของ 221902 คืออะไร?",
    "context": "CREATE TABLE table_2472711_32 (average INTEGER, total VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(hosted) FROM table_2472711_32 WHERE highest = 42659",
    "question_en": "How many values of hosted have a highest value of 42659?",
    "question_th": "โฮสต์มีกี่ค่าที่มีค่าสูงสุดคือ 42659",
    "context": "CREATE TABLE table_2472711_32 (hosted VARCHAR, highest VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(up_down) FROM table_2472711_32 WHERE total = 301470",
    "question_en": "How many values of up/down have a total value of exactly 301470?",
    "question_th": "ค่าขึ้น/ลงมีค่ารวมเท่ากับ 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_en": "What is the up/down associated with the Subiaco Oval?",
    "question_th": "การขึ้น/ลงที่เกี่ยวข้องกับ Subiaco Oval คืออะไร?",
    "context": "CREATE TABLE table_2472711_32 (up_down VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_24765815_1 WHERE rank = \"7th\"",
    "question_en": "What team was ranked in 7th?",
    "question_th": "ทีมไหนอยู่อันดับที่ 7?",
    "context": "CREATE TABLE table_24765815_1 (team VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_24765815_1 WHERE opponent = \"Blackburn Rovers\"",
    "question_en": "Which player had an opponent of Blackburn Rovers?",
    "question_th": "นักเตะคนไหนเจอคู่แข่งกับแบล็คเบิร์น โรเวอร์ส?",
    "context": "CREATE TABLE table_24765815_1 (player VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_24765815_1 WHERE rank = \"1st\"",
    "question_en": "What was the score for the 1st ranked team?",
    "question_th": "คะแนนของทีมอันดับ 1 เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_24765815_1 (score VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_24765815_1 WHERE vote_percentage = \"7.85%\"",
    "question_en": "What was the name of the player that had a vote percentage of 7.85%?",
    "question_th": "ผู้เล่นที่มีคะแนนโหวต 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_en": "What is the original airdate of the episode where the challenge was three overstuffed sandwiches? ",
    "question_th": " วันที่ออกอากาศดั้งเดิมของตอนที่ท้าทายคือแซนด์วิชยัดไส้สามชิ้นคืออะไร",
    "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_en": "Who was the challenge winner in the episode that originally aired on January 28, 2009?",
    "question_th": "ใครคือผู้ชนะการท้าทายในตอนที่ออกอากาศครั้งแรกเมื่อวันที่ 28 มกราคม 2552",
    "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_en": "How many episodes had New York, New York as the location?",
    "question_th": "นิวยอร์ก,นิวยอร์กเป็นสถานที่ถ่ายทำกี่ตอน?",
    "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_en": "What were the shots below par when the winning score was 67-64-63-71-66=331?",
    "question_th": "ช็อตที่ต่ำกว่าพาร์คืออะไรเมื่อสกอร์ชนะคือ 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_en": "What were the shots below par when the winning score was 69-66-69-64=268?",
    "question_th": "ช็อตที่ต่ำกว่าพาร์คืออะไรเมื่อสกอร์ชนะคือ 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_en": "What is the total number of to par when runner-up was Jonathan Kaye?",
    "question_th": "โจนาธาน เคย์ รองแชมป์มีพาร์รวมเท่าไร?",
    "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_en": "What was the margin of victory when runner-up was K. J. Choi?",
    "question_th": "อะไรคือส่วนต่างของชัยชนะเมื่อรองชนะเลิศคือ KJ 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_en": "What was the date for no. 7?",
    "question_th": "ไม่มีวันที่เท่าไหร่.. 7?",
    "context": "CREATE TABLE table_247955_2 (date VARCHAR, no VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_24784769_1 WHERE total_points = 342",
    "question_en": "Which team had 342 total points? ",
    "question_th": " ทีมใดมีคะแนนรวม 342 คะแนน?",
    "context": "CREATE TABLE table_24784769_1 (team VARCHAR, total_points VARCHAR)"
  },
  {
    "answer": "SELECT round3 FROM table_24784769_1 WHERE total_points = 325",
    "question_en": "How many points did the team who had 325 total points have in round 3? ",
    "question_th": " ทีมที่มีคะแนนรวม 325 คะแนนในรอบที่ 3 ได้กี่คะแนน?",
    "context": "CREATE TABLE table_24784769_1 (round3 VARCHAR, total_points VARCHAR)"
  },
  {
    "answer": "SELECT MAX(round4) FROM table_24784769_1",
    "question_en": "What is the most amount of points any team had in round 4? ",
    "question_th": " ทีมใดมีคะแนนมากที่สุดในรอบ 4 คือเท่าไร?",
    "context": "CREATE TABLE table_24784769_1 (round4 INTEGER)"
  },
  {
    "answer": "SELECT MAX(round1) FROM table_24784769_1 WHERE total_points = 132",
    "question_en": "How many points did the team who had 132 total points have in round 1? ",
    "question_th": "ทีมที่มีคะแนนรวม 132 คะแนนในรอบที่ 1 ได้กี่คะแนน?",
    "context": "CREATE TABLE table_24784769_1 (round1 INTEGER, total_points VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_24786958_2 WHERE attendance = 30701",
    "question_en": "Who did Rhein Fire play Against where 30701 people attended?",
    "question_th": "Rhein Fire เล่นกับใครซึ่งมีผู้เข้าร่วม 30,701 คน?",
    "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_en": "What week had kickoff time at 6:00 p.m.?",
    "question_th": "สัปดาห์ไหนมีคิกออฟเวลา 18.00 น.?",
    "context": "CREATE TABLE table_24786958_2 (week INTEGER, kickoff VARCHAR)"
  },
  {
    "answer": "SELECT game_site FROM table_24786958_2 WHERE date = \"Sunday, May 27\"",
    "question_en": "Where was the game played that was on Sunday, May 27?",
    "question_th": "เกมที่เล่นเมื่อวันอาทิตย์ที่ 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_en": "How many people attended the game at Jahn-sportpark?",
    "question_th": "มีผู้เข้าร่วมการแข่งขันที่ 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_en": "How many final scores were there on the game at Amsterdam arena?",
    "question_th": "มีกี่คะแนนสุดท้ายในเกมที่สนามกีฬาอัมสเตอร์ดัม?",
    "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_en": "What was the group in the British Champion Stakes? ",
    "question_th": " 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_en": "What was the weight of the jockey at Sandown Park? ",
    "question_th": " จ๊อกกี้ที่ Sandown Park มีน้ำหนักเท่าไหร่?",
    "context": "CREATE TABLE table_24850630_4 (weight VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT distance FROM table_24850630_4 WHERE race = \"Mooresbridge Stakes\"",
    "question_en": "What is the distance of the Mooresbridge Stakes race? ",
    "question_th": " การแข่งขัน Mooresbridge Stakes ระยะทางเท่าไร?",
    "context": "CREATE TABLE table_24850630_4 (distance VARCHAR, race VARCHAR)"
  },
  {
    "answer": "SELECT winner_2nd FROM table_24850630_4 WHERE race = \"British Champion Stakes\"",
    "question_en": "who was the winner /2nd for the British Champion Stakes race? ",
    "question_th": " ใครเป็นผู้ชนะ /อันดับที่ 2 ในการแข่งขัน British Champion Stakes?",
    "context": "CREATE TABLE table_24850630_4 (winner_2nd VARCHAR, race VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(venue) FROM table_24850630_3 WHERE race = \"Mackinnon Stakes\"",
    "question_en": "The MacKinnon Stakes races took place on how many venues?",
    "question_th": "การแข่งขัน MacKinnon Stakes จัดขึ้นที่สถานที่จัดงานกี่แห่ง?",
    "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_en": "What is the largest average for the episode with 1.97 million Hong Kong viewers?",
    "question_th": "ค่าเฉลี่ยสูงสุดสำหรับตอนที่มีผู้ชมฮ่องกง 1.97 ล้านคนคือเท่าใด",
    "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_en": "What is the English title of the episode with 1.92 million Hong Kong viewers?",
    "question_th": "ชื่อภาษาอังกฤษของตอนที่มีผู้ชมฮ่องกง 1.92 ล้านคนคืออะไร?",
    "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_en": "What is the premiere number for the episode titled \"The Mysteries of Love\" in English?",
    "question_th": "หมายเลขรอบปฐมทัศน์ของตอนที่ชื่อว่า \"The Mysteries of Love\" เป็นภาษาอังกฤษคือหมายเลขใด",
    "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_en": "What is the Chinese name of the episode with 1.97 million Hong Kong viewers?",
    "question_th": "ชื่อภาษาจีนของตอนที่มีผู้ชมฮ่องกง 1.97 ล้านคน คืออะไร?",
    "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_en": "Who was the home team when the away team was fulham?",
    "question_th": "เจ้าบ้านใครคือทีมเยือนฟูแล่ม?",
    "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_en": "What was the attendance of the game where Stoke city was the away team?",
    "question_th": "การมีส่วนร่วมในเกมที่สโต๊ค ซิตี้ เป็นทีมเยือนเป็นอย่างไร?",
    "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_en": "When the away team is Millwall, what is the total possible amount of tie numbers?",
    "question_th": "เมื่อทีมเยือนคือมิลล์วอลล์ จำนวนเสมอที่เป็นไปได้คือเท่าไร?",
    "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_en": "What is the date of the game played with Birmingham City as the away team?",
    "question_th": "เกมนี้เล่นกับเบอร์มิงแฮม ซิตี้ เป็นทีมเยือนวันที่เท่าไหร่?",
    "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_en": "What was the airdate of episode number 18?",
    "question_th": "ตอนที่ 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_en": "What was the title of the episode having exactly 9.64 million US viewers?",
    "question_th": "ชื่อเรื่องของตอนนี้ที่มีผู้ชม 9.64 ล้านคนในสหรัฐฯ คืออะไร?",
    "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_en": "For which jockey was the weight in kg 53.5? ",
    "question_th": " จ๊อกกี้คนไหนมีน้ำหนักเป็นกิโลกรัม 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_en": "Who was the trainer when the jockey was Luke Nolen?",
    "question_th": "ใครคือเทรนเนอร์เมื่อนักจัดรายการคือลุค โนเลน?",
    "context": "CREATE TABLE table_24915874_1 (trainer VARCHAR, jockey VARCHAR)"
  },
  {
    "answer": "SELECT placing FROM table_24915874_1 WHERE jockey = \"Damien Oliver\"",
    "question_en": "What was the placing when the jockey was Damien Oliver?",
    "question_th": "ตำแหน่งใดเมื่อนักจัดรายการคือ 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_en": "What was the placing when the weight in kg was 58.0?",
    "question_th": "ตำแหน่งเมื่อน้ำหนักเป็นกิโลกรัมคือ 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_en": "Who was the horse when the jockey was Peter Wells? ",
    "question_th": " ใครคือม้าเมื่อนักจัดรายการคือปีเตอร์ เวลส์?",
    "context": "CREATE TABLE table_24915874_1 (horse VARCHAR, jockey VARCHAR)"
  },
  {
    "answer": "SELECT weight__kg_ FROM table_24915874_1 WHERE horse = \"Alcopop\"",
    "question_en": "What was the weight in kg when the horse was Alcopop? ",
    "question_th": " น้ำหนักเป็นกิโลกรัมเมื่อม้าเป็นอัลโคป๊อป?",
    "context": "CREATE TABLE table_24915874_1 (weight__kg_ VARCHAR, horse VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(week) FROM table_24918268_2 WHERE opponent = \"Barcelona Dragons\"",
    "question_en": "How many weeks are teams playing agains the Barcelona dragons?",
    "question_th": "ทีมจะเล่นกับทีมมังกรบาร์เซโลน่ากี่สัปดาห์?",
    "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_en": "What was the score for the game that kicked off at 6:00 p.m.?",
    "question_th": "สกอร์เกมที่เริ่มเวลา 18.00 น. เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_24918268_2 (final_score VARCHAR, kickoff VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_24918268_2 WHERE date = \"Sunday, June 9\"",
    "question_en": "Who are the opponents for games on Sunday, June 9?",
    "question_th": "คู่ต่อสู้ในเกมวันอาทิตย์ที่ 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_en": "Name the fat for protein being 4 and calories 80",
    "question_th": "ตั้งชื่อไขมันสำหรับโปรตีนเป็น 4 และแคลอรี่ 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_en": "Name the number of butters for 3 protein",
    "question_th": "ตั้งชื่อจำนวนเนยสำหรับโปรตีน 3 ชนิด",
    "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_en": "Name the calcium for fat being 6.5",
    "question_th": "ให้ตั้งชื่อแคลเซียมสำหรับไขมันว่า 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_en": "How many counties have a place name of Macedonia?",
    "question_th": "มาซิโดเนียมีชื่อมณฑลกี่มณฑล",
    "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_en": "What is the number of land areas that have a place name of Ballplay?",
    "question_th": "ที่ดินที่มีชื่อสถานที่ 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_en": "What is the minimum 2010 population of Edgewater?",
    "question_th": "จำนวนประชากรขั้นต่ำในปี 2010 ของ 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_en": "What is the lowest 09-10 i/o best?",
    "question_th": "09-10 i/o ต่ำสุดตัวไหนดีที่สุด?",
    "context": "CREATE TABLE table_24990183_5 (Id VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_24990183_5 WHERE name = \"Akiko Suzuki\"",
    "question_en": "Which country is akiko suzuki from?",
    "question_th": "อากิโกะ ซูซูกิ มาจากประเทศใด",
    "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_en": "What was the 08-09 i/o best of the player with 1386 points?",
    "question_th": "08-09 i/o ผู้เล่นที่ดีที่สุดคืออะไรด้วยคะแนน 1386?",
    "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_en": "What was the 09-10 oi best of the player with 949 points?",
    "question_th": "09-10 oi นักเตะคนไหนดีที่สุดที่มี 949 แต้ม?",
    "context": "CREATE TABLE table_24990183_5 (ws_points VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_24990183_5 WHERE country = \"Georgia\"",
    "question_en": "Who was the player from georgia?",
    "question_th": "นักเตะจากจอร์เจียคือใคร?",
    "context": "CREATE TABLE table_24990183_5 (name VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT MAX(minutes) FROM table_25016555_5 WHERE player = \"Tracy Reid\"",
    "question_en": "When tracy reid is the player what is the highest amount of minutes?",
    "question_th": "เมื่อเทรซี่ เรดเป็นนักเตะนาทีที่มากที่สุดคือเท่าไหร่?",
    "context": "CREATE TABLE table_25016555_5 (minutes INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT MIN(assists) FROM table_25016555_5",
    "question_en": "What is the lowest overall amount of assists?",
    "question_th": "จำนวนแอสซิสต์โดยรวมต่ำสุดคือเท่าใด?",
    "context": "CREATE TABLE table_25016555_5 (assists INTEGER)"
  },
  {
    "answer": "SELECT MIN(minutes) FROM table_25016555_5 WHERE player = \"Sandy Brondello\"",
    "question_en": "When sandy brondello is the player what is the lowest amount of minutes?",
    "question_th": "เมื่อแซนดี้ บรอนเดลโล่เป็นผู้เล่นนาทีที่น้อยที่สุดคือเท่าไหร่?",
    "context": "CREATE TABLE table_25016555_5 (minutes INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(blocks) FROM table_25016555_5 WHERE assists = 21",
    "question_en": "When 21 is the number of assists how many sets of blocks are there?",
    "question_th": "เมื่อ 21 คือจำนวนแอสซิสต์ จะมีบล็อคกี่ชุด?",
    "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_en": "When 2010 is the first elected and Florida 7 is the district who are the candidates?",
    "question_th": "เมื่อปี 2010 เป็นการเลือกตั้งครั้งแรก และฟลอริดา 7 คือเขตที่เป็นผู้สมัคร?",
    "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_en": "When bill young redistricted from the 10th district is the incumbent what is the party?",
    "question_th": "เมื่อบิลหนุ่มถูกจำกัดจากเขตที่ 10 เป็นผู้ดำรงตำแหน่งพรรคอะไร?",
    "context": "CREATE TABLE table_25030512_12 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_25030512_12 WHERE candidates = \"Dennis Ross (R) unopposed\"",
    "question_en": "When dennis ross (r) unopposed is the candidate what is the party?",
    "question_th": "เมื่อเดนนิส รอสส์ (ขวา) ลงสมัครรับเลือกตั้งเป็นฝ่ายค้าน พรรคอะไร?",
    "context": "CREATE TABLE table_25030512_12 (party VARCHAR, candidates VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_25030512_12 WHERE first_elected = \"None (New seat)\"",
    "question_en": "When none (new seat) is the first elected who are the candidates?",
    "question_th": "เมื่อไม่มี (ที่นั่งใหม่) เป็นผู้ได้รับเลือกเป็นคนแรก ใครคือผู้สมัคร?",
    "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_en": "How many millions of people watched the episode with a production code of icec483x?",
    "question_th": "มีผู้ชมตอนนี้ด้วยโค้ดการผลิต icec483x กี่ล้านคน?",
    "context": "CREATE TABLE table_2501754_4 (viewing_figures_millions VARCHAR, prod_code VARCHAR)"
  },
  {
    "answer": "SELECT MIN(episode__number) FROM table_2501754_4",
    "question_en": "What is the lowest episode number?",
    "question_th": "หมายเลขตอนต่ำสุดคืออะไร?",
    "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_en": "What is the lowest episode number with 6.19 million viewers and a production code of icec487y?",
    "question_th": "จำนวนตอนต่ำสุดที่มีผู้ชม 6.19 ล้านคน และรหัสการผลิต 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_en": "List the production code for the episode had 5.55 million viewers?",
    "question_th": "รายการรหัสการผลิตสำหรับตอนนี้มีผู้ชม 5.55 ล้านคน?",
    "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_en": "List the 1st air date for the episode with a iceb786e production code.",
    "question_th": "ระบุวันที่ออกอากาศครั้งแรกของตอนด้วยรหัสการผลิต iceb786e",
    "context": "CREATE TABLE table_2501754_3 (original_airdate VARCHAR, prod_code VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_25030512_24 WHERE first_elected = \"1998\"",
    "question_en": "Name the party for 1998 first elected",
    "question_th": "ตั้งชื่อพรรคปี 2541 ที่ได้รับการเลือกตั้งครั้งแรก",
    "context": "CREATE TABLE table_25030512_24 (party VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_25030512_24 WHERE incumbent = \"Barney Frank\"",
    "question_en": "Name the result for barney frank",
    "question_th": "ตั้งชื่อผลลัพธ์สำหรับบาร์นีย์ แฟรงค์",
    "context": "CREATE TABLE table_25030512_24 (result VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_25030512_24 WHERE first_elected = \"1976\"",
    "question_en": "Name the candidates for first elected being 1976",
    "question_th": "เสนอชื่อผู้สมัครรับเลือกตั้งครั้งแรกคือ พ.ศ. 2519",
    "context": "CREATE TABLE table_25030512_24 (candidates VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(district) FROM table_25030512_24 WHERE first_elected = \"1998\"",
    "question_en": "Name the total number of districts for first elected being 1998",
    "question_th": "ตั้งชื่อจำนวนเขตทั้งหมดที่ได้รับการเลือกตั้งครั้งแรกคือปี 1998",
    "context": "CREATE TABLE table_25030512_24 (district VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_25030512_24 WHERE first_elected = \"1998\"",
    "question_en": "Name the result for 1998",
    "question_th": "ตั้งชื่อผลลัพธ์สำหรับปี 1998",
    "context": "CREATE TABLE table_25030512_24 (result VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_25030512_24 WHERE first_elected = \"1998\"",
    "question_en": "Name the candidates for 1998",
    "question_th": "ตั้งชื่อผู้สมัครสำหรับปี 2541",
    "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_en": "Who is the driver of the Chevrolet engine that is sponsored by godaddy.com?",
    "question_th": "ใครคือผู้ขับเคลื่อนเครื่องยนต์เชฟโรเลตที่สนับสนุนโดย 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_en": "What engine does the Fuzzy's Ultra Premium Vodka sponsored car use?",
    "question_th": "รถที่สนับสนุน Fuzzy's Ultra Premium Vodka ใช้เครื่องยนต์อะไร",
    "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_en": "What engine doe the Ed Carpenter Racing team use?",
    "question_th": "ทีม Ed Carpenter Racing ใช้เครื่องยนต์อะไร?",
    "context": "CREATE TABLE table_2503102_1 (engine VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_2503102_1 WHERE car_sponsor_s_ = \"HydroxyCut\"",
    "question_en": "What team is sponsored by hydroxycut?",
    "question_th": "ทีมใดที่ได้รับการสนับสนุนจาก 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_en": "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?",
    "question_th": "เปอร์เซ็นต์ของประชากรที่ต่ำกว่า 50% ของรายได้เฉลี่ยในภูมิภาคที่ 10.4% ของประชากรมีรายได้ต่ำกว่า 40% ของรายได้เฉลี่ย",
    "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_en": "What is the median income for the region where 24.4% pf people make below 60% of the median income?",
    "question_th": "รายได้เฉลี่ยของภูมิภาคที่ประชากร 24.4% ทำรายได้ต่ำกว่า 60% ของรายได้เฉลี่ยสำหรับภูมิภาคคือเท่าใด",
    "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_en": "What is the median income of Maule?",
    "question_th": "รายได้เฉลี่ยของ 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_en": "In what region does 17.4% of the population make below 50% of the median income?",
    "question_th": "17.4% ของประชากรในภูมิภาคใดมีรายได้ต่ำกว่า 50% ของรายได้เฉลี่ย",
    "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_en": "In what region do 18.6% of the people make less than 50% of the median income?",
    "question_th": "ในภูมิภาคใดที่ประชากร 18.6% มีรายได้น้อยกว่า 50% ของรายได้เฉลี่ย?",
    "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_en": "What is the gdp per capita in 2008 for the region that had a combined gross enrollment ration of 89.0?",
    "question_th": "GDP ต่อหัวในปี 2008 สำหรับภูมิภาคที่มีอัตราส่วนการลงทะเบียนรวมรวมกันที่ 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_en": "Which region had a life expectancy at birth of 77.9 from 2001-2002?",
    "question_th": "ภูมิภาคใดมีอายุขัยเมื่อเกิดที่ 77.9 ตั้งแต่ปี 2544-2545",
    "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_en": "What is the gdp per capita in 2008 for the region with a combined gross enrollment ratio of 86.6 in 2009?",
    "question_th": "GDP ต่อหัวในปี 2551 สำหรับภูมิภาคที่มีอัตราส่วนการลงทะเบียนรวมรวมกันที่ 86.6 ในปี 2552 เป็นเท่าใด",
    "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_en": "How many regions had an hdi of 0.896?",
    "question_th": "มีกี่ภูมิภาคที่มี hdi 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_en": "How many regions had a life expectancy at birth in 2001-2002 of 75.9?",
    "question_th": "มีกี่ภูมิภาคที่มีอายุคาดเฉลี่ยที่เกิดในปี 2544-2545 จาก 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_en": "In which season is the runner-up Lase-R/Riga?",
    "question_th": "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–08\"",
    "question_en": "In season 2007–08 who is the runner-up?",
    "question_th": "ในฤดูกาล 2550–08 ใครคือรองชนะเลิศ?",
    "context": "CREATE TABLE table_25058269_1 (runner_up VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT runner_up FROM table_25058269_1 WHERE season = \"2011–12\"",
    "question_en": "Who is the runner-up for season 2011–12?",
    "question_th": "ใครคือรองชนะเลิศในฤดูกาล 2011–12?",
    "context": "CREATE TABLE table_25058269_1 (runner_up VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT 3 AS rd_place FROM table_25058269_1 WHERE season = \"2005–06\"",
    "question_en": "In season 2005–06, who is 3rd place?",
    "question_th": "ในฤดูกาล 2548–06 ใครคืออันดับที่ 3?",
    "context": "CREATE TABLE table_25058269_1 (season VARCHAR)"
  },
  {
    "answer": "SELECT MIN(pick__number) FROM table_25085059_1 WHERE college = \"Kentucky\"",
    "question_en": "What draft pick number did Kentucky get?",
    "question_th": "รัฐเคนตักกี้ได้รับหมายเลขร่างอะไร",
    "context": "CREATE TABLE table_25085059_1 (pick__number INTEGER, college VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_25085059_1 WHERE pick__number = 6",
    "question_en": "What position was the number 6 draft pick?",
    "question_th": "ดราฟท์หมายเลข 6 คือตำแหน่งใด?",
    "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_en": "What CFL team obtained a draft pick from North Dakota who plays OL position?",
    "question_th": "ทีม CFL ใดที่ได้รับดราฟท์จากนอร์ธดาโกตาซึ่งเล่นตำแหน่ง OL",
    "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_en": "What college did the Toronto Argonauts draft pick come from?",
    "question_th": "ร่างการคัดเลือก Toronto Argonauts มาจากวิทยาลัยใด",
    "context": "CREATE TABLE table_25085059_1 (college VARCHAR, cfl_team VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_25085059_1 WHERE pick__number = 1",
    "question_en": "What player was the number 1 draft pick?",
    "question_th": "ผู้เล่นคนไหนคือตัวเลือกหมายเลข 1?",
    "context": "CREATE TABLE table_25085059_1 (player VARCHAR, pick__number VARCHAR)"
  },
  {
    "answer": "SELECT cfl_team FROM table_25085059_1 WHERE college = \"North Dakota\"",
    "question_en": "What CFL team got their draft pick from North Dakota?",
    "question_th": "ทีม CFL ใดที่ได้รับดราฟต์จากนอร์ธดาโกตา",
    "context": "CREATE TABLE table_25085059_1 (cfl_team VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_2508633_3 WHERE college = \"Tennessee\"",
    "question_en": "Which player went to college at Tennessee?",
    "question_th": "ผู้เล่นคนไหนไปเรียนที่วิทยาลัยที่เทนเนสซี?",
    "context": "CREATE TABLE table_2508633_3 (player VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_2508633_3 WHERE nfl_team = \"Kansas City Chiefs\"",
    "question_en": "Who was drafted by the Kansas City Chiefs? ",
    "question_th": " ใครถูกร่างโดย 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_en": "Who was drafted by the Baltimore Colts? ",
    "question_th": " ใครถูกร่างโดยบัลติมอร์ โคลท์ส?",
    "context": "CREATE TABLE table_2508633_3 (player VARCHAR, nfl_team VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_2508633_8 WHERE nfl_team = \"Minnesota Vikings\"",
    "question_en": "If the NFL team is the Minnesota Vikings, what is the position?",
    "question_th": "ถ้าทีม NFL คือ Minnesota Vikings ตำแหน่งอะไร?",
    "context": "CREATE TABLE table_2508633_8 (position VARCHAR, nfl_team VARCHAR)"
  },
  {
    "answer": "SELECT pick__number FROM table_2508633_8 WHERE player = \"Gary Kubiak\"",
    "question_en": "What is the pick number if the player is Gary Kubiak?",
    "question_th": "ถ้าผู้เล่นคือ แกรี่ คูเบียค จะเลือกหมายเลขอะไร?",
    "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_en": "What is the pick number minimum if the player is Mark Bortz?",
    "question_th": "หมายเลขการเลือกขั้นต่ำคือเท่าใดหากผู้เล่นคือ 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_en": "what is the pick number minimum if the NFL team is the San Diego Chargers?",
    "question_th": "หมายเลขเลือกขั้นต่ำคือเท่าใดหากทีม NFL คือ 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_en": "What is the highest season# for the writer Daegan Fryklind?",
    "question_th": "ฤดูกาลสูงสุด# สำหรับนักเขียน 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_en": "Who voiced Drizella in the English version?",
    "question_th": "ใครเป็นผู้ให้เสียง Drizella ในเวอร์ชันภาษาอังกฤษ?",
    "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_en": "Name the name of bowl for 2006 season",
    "question_th": "ตั้งชื่อชามฤดูกาล 2549",
    "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_en": "Name the last appearance for music city bowl",
    "question_th": "ตั้งชื่อการปรากฏตัวครั้งสุดท้ายของ 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_en": "Name the record for cotton bowl classic",
    "question_th": "ตั้งชื่อบันทึกสำหรับ 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_en": "Name the appearance for independence bowl",
    "question_th": "ตั้งชื่อรูปลักษณ์ของชามอิสระ",
    "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_en": "On the Circuit Zolder who was the winning team?",
    "question_th": "ใน Circuit Zolder ใครเป็นทีมที่ชนะ?",
    "context": "CREATE TABLE table_25213146_2 (winning_team VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT circuit FROM table_25213146_2 WHERE winning_driver = \"Bruno Spengler\"",
    "question_en": "In what circuit was Bruno Spengler the winning driver?",
    "question_th": "Bruno Spengler เป็นนักแข่งที่ชนะในสนามใด",
    "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_en": "How many Pole Positions were there on 30 March?",
    "question_th": "มีโพซิชั่นกี่ตำแหน่งในวันที่ 30 มีนาคม?",
    "context": "CREATE TABLE table_25213146_2 (pole_position VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT circuit FROM table_25213146_2 WHERE round = 4",
    "question_en": "Where was the circuit for round 4?",
    "question_th": "รอบ 4 อยู่ไหนครับ?",
    "context": "CREATE TABLE table_25213146_2 (circuit VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_25213146_2 WHERE winning_team = \"Prema Powerteam\"",
    "question_en": "On what date(s) was the winning team Prema Powerteam?",
    "question_th": "ทีมผู้ชนะ เปรมา พาวเวอร์ทีม จัดขึ้นวันไหน?",
    "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_en": "Name the bed 2010 for 6.5%",
    "question_th": "ตั้งชื่อเตียงปี 2010 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_en": "Name the feb 2010 for january 2010 for 6.2%",
    "question_th": "ตั้งชื่อเดือนกุมภาพันธ์ 2010 สำหรับเดือนมกราคม 2010 เป็น 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_en": "How many people directed episode 3 in the season?",
    "question_th": "ซีซั่นนี้มีคนกำกับตอนที่ 3 กี่คน?",
    "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_en": "If the writer is Mark Fink, who is the director?",
    "question_th": "ถ้าคนเขียนคือมาร์ค ฟิงค์ ใครเป็นผู้กำกับ?",
    "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_en": "What is the name of the episode # 11 in the season?",
    "question_th": "ตอนที่ 11 ของซีซั่นชื่ออะไรคะ?",
    "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_en": "Who was the director of episode 11 based on season?",
    "question_th": "ใครเป็นผู้กำกับตอนที่ 11 ตามฤดูกาล?",
    "context": "CREATE TABLE table_25277296_2 (directed_by VARCHAR, no_in_season VARCHAR)"
  },
  {
    "answer": "SELECT reidsville FROM table_25330991_3 WHERE information = \"Enrollment\"",
    "question_en": "Name the reidsville for enrollment",
    "question_th": "ตั้งชื่อเรดส์วิลล์เพื่อลงทะเบียน",
    "context": "CREATE TABLE table_25330991_3 (reidsville VARCHAR, information VARCHAR)"
  },
  {
    "answer": "SELECT james_e_holmes FROM table_25330991_3 WHERE reidsville = \"Erselle Young\"",
    "question_en": "Name the james e. holmes for erselle young",
    "question_th": "ตั้งชื่อเจมส์อี โฮล์มส์สำหรับเออร์เซลล์ยัง",
    "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_en": "Name the james e. holmes for duane hensley",
    "question_th": "ตั้งชื่อเจมส์อี โฮล์มส์ สำหรับ ดวน เฮนสลีย์",
    "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_en": "Name the james e. holmes for joe baez",
    "question_th": "ตั้งชื่อเจมส์อี โฮล์มส์สำหรับโจ เบซ",
    "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_en": "Name the time for entries being 907",
    "question_th": "ตั้งชื่อเวลาสำหรับรายการเป็น 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_en": "Name the entries for 6 h 23 min elapsed time",
    "question_th": "ตั้งชื่อรายการเป็นเวลา 6 ชั่วโมง 23 นาทีที่ผ่านไป",
    "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_en": "Name the prize pool for 706 (481 r, 346 a)",
    "question_th": "ตั้งชื่อเงินรางวัลรวมสำหรับ 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_en": "What are the dates of death of those politicians whose date of birth 1938-08-30 30 august 1938?",
    "question_th": "นักการเมืองเหล่านั้นที่เกิดวันที่ 30 สิงหาคม 2481 คือวันที่ 30 สิงหาคม พ.ศ. 2481-08-30 คือวันใด",
    "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_en": "If the event number is 5, what is the winner total number?",
    "question_th": "หากหมายเลขกิจกรรมคือ 5 หมายเลขรวมของผู้ชนะคือเท่าใด",
    "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_en": "What is the prize pool if the entries is 1,132?",
    "question_th": "เงินรางวัลรวมจะเท่ากับเท่าใดหากผลงานเข้าประกวดคือ 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_en": "Name the least season # for the first time",
    "question_th": "ตั้งชื่อฤดูกาลที่น้อยที่สุด # เป็นครั้งแรก",
    "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_en": "Name the least season number for two marriage proposals",
    "question_th": "ตั้งชื่อฤดูกาลที่น้อยที่สุดสำหรับข้อเสนอการแต่งงานสองรายการ",
    "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_en": "What number episode was Week 4, Part 1? ",
    "question_th": " สัปดาห์ที่ 4 ตอนที่ 1 มีตอนที่เท่าไหร่?",
    "context": "CREATE TABLE table_25391981_20 (episode_number VARCHAR, episode VARCHAR)"
  },
  {
    "answer": "SELECT episode FROM table_25391981_20 WHERE rating / SHARE(18 AS –49) = 2.8 / 8",
    "question_en": "For what episode was the rating/share for 18-49 at 2.8/8",
    "question_th": "เรตติ้ง/แชร์ตอนไหน 18-49 อยู่ที่ 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_en": "What number episode was Week 4, Part 2?",
    "question_th": "สัปดาห์ที่ 4 ตอนที่ 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_en": "How many viewers in millions watched the episode with the number 10.18?",
    "question_th": "มีผู้ชมกี่ล้านคนที่ดูตอนที่ 10.18",
    "context": "CREATE TABLE table_25391981_20 (viewers__millions_ VARCHAR, episode_number VARCHAR)"
  },
  {
    "answer": "SELECT rating / SHARE(18 AS –49) FROM table_25391981_20 WHERE episode = \"Week 6, Part 1\"",
    "question_en": "What is the rating/share for 18-49 for Week 6, Part 1?",
    "question_th": "คะแนน/ส่วนแบ่งสำหรับ 18-49 สำหรับสัปดาห์ที่ 6 ตอนที่ 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_en": "What is the weekly rank of the episode with a 14 share whose original airdate was April 20, 2010? ",
    "question_th": " อันดับรายสัปดาห์ของตอนซึ่งมีการแชร์ 14 ครั้ง ซึ่งออกอากาศครั้งแรกคือวันที่ 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ɐ̃ˈtẽmus]\"",
    "question_en": "What is the form (\"to sing\") when brazilian portuguese is [kɐ̃ˈtẽmus]?",
    "question_th": "รูปแบบ (\"ร้องเพลง\") เมื่อภาษาโปรตุเกสแบบบราซิลคือ [kɐ̃ˈtẽmus] คืออะไร?",
    "context": "CREATE TABLE table_25401_2 (form__to_sing_ VARCHAR, brazilian_portuguese VARCHAR)"
  },
  {
    "answer": "SELECT romanian FROM table_25401_2 WHERE nuorese_sardinian = \"[ˈkantata]\"",
    "question_en": "what is romanian when nuorese sardinian is [ˈkantata]?",
    "question_th": "ภาษาโรมาเนียคืออะไร เมื่อภาษาซาร์ดิเนียนูโอรีสคือ [ˈkantata]?",
    "context": "CREATE TABLE table_25401_2 (romanian VARCHAR, nuorese_sardinian VARCHAR)"
  },
  {
    "answer": "SELECT romanian FROM table_25401_2 WHERE nuorese_sardinian = \"[ˈkantaza]\"",
    "question_en": "what is romanian when nuorese sardinian is [ˈkantaza]?",
    "question_th": "ภาษาโรมาเนียคืออะไร เมื่อภาษาซาร์ดิเนียนูโอรีสคือ [ˈkantaza]?",
    "context": "CREATE TABLE table_25401_2 (romanian VARCHAR, nuorese_sardinian VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_25505246_7 WHERE opponent = \"Andreja Klepač\"",
    "question_en": "What were the results when Hanne Skak Jensen faced Andreja Klepač as opponent?",
    "question_th": "ผลการแข่งขันเป็นอย่างไรเมื่อฮันน์ สกัค เจนเซ่น เผชิญหน้ากับอังเดรยา เคลปาช ในฐานะคู่ต่อสู้?",
    "context": "CREATE TABLE table_25505246_7 (result VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_25505246_7 WHERE against = \"Belarus\"",
    "question_en": "Who was Hanne Skak Jensen's opponent when facing Belarus?",
    "question_th": "คู่ต่อสู้ของ Hanne Skak Jensen คือใครเมื่อเผชิญหน้ากับเบลารุส?",
    "context": "CREATE TABLE table_25505246_7 (opponent VARCHAR, against VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_25505246_7 WHERE against = \"Austria\"",
    "question_en": "What kind of round was played when Hanne Skak Jensen faced Austria?",
    "question_th": "ฮานน์ สคัค เจนเซ่น พบ ออสเตรีย ยกประเภทไหนกัน?",
    "context": "CREATE TABLE table_25505246_7 (round VARCHAR, against VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_25505246_7 WHERE against = \"Austria\"",
    "question_en": "What were the round results when Hanne Skak Jensen faced Austria?",
    "question_th": "ผลการแข่งขันรอบไหน ฮันน์ สคัค เจนเซ่น พบกับ ออสเตรีย?",
    "context": "CREATE TABLE table_25505246_7 (result VARCHAR, against VARCHAR)"
  },
  {
    "answer": "SELECT MIN(touchdowns) FROM table_25517718_3 WHERE player = \"Boggs\"",
    "question_en": "How many touchdowns does Boggs have?",
    "question_th": "บ็อกส์ทำทัชดาวน์ได้กี่ครั้ง?",
    "context": "CREATE TABLE table_25517718_3 (touchdowns INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT starter FROM table_25517718_3 WHERE position = \"Right halfback\"",
    "question_en": "Is the right halfback player a starter?",
    "question_th": "ผู้เล่นกองหลังฝั่งขวาเป็นตัวจริงหรือไม่?",
    "context": "CREATE TABLE table_25517718_3 (starter VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_25517718_3 WHERE player = \"Boggs\"",
    "question_en": "What position does Boggs play?",
    "question_th": "บ็อกส์เล่นตำแหน่งไหน?",
    "context": "CREATE TABLE table_25517718_3 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MIN(extra_points) FROM table_25517718_3 WHERE position = \"Left halfback\"",
    "question_en": "What is the smallest number of extra points for a left halfback?",
    "question_th": "คะแนนพิเศษที่น้อยที่สุดสำหรับกองหลังซ้ายคือเท่าไร?",
    "context": "CREATE TABLE table_25517718_3 (extra_points INTEGER, position VARCHAR)"
  },
  {
    "answer": "SELECT MIN(extra_points) FROM table_25517718_3",
    "question_en": "What is the smallest number of extra points?",
    "question_th": "คะแนนพิเศษจำนวนน้อยที่สุดคือเท่าไร?",
    "context": "CREATE TABLE table_25517718_3 (extra_points INTEGER)"
  },
  {
    "answer": "SELECT COUNT(starter) FROM table_25517718_3 WHERE position = \"Right tackle\"",
    "question_en": "How many starters are there at right tackle?",
    "question_th": "มีสตาร์ตเตอร์กี่คนที่แท็คเกิ้ลที่ถูกต้อง?",
    "context": "CREATE TABLE table_25517718_3 (starter VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(mls_team) FROM table_25518547_4 WHERE player = \"Jamel Wallace\"",
    "question_en": "How many mls teams had player jamel wallace?",
    "question_th": "เจเมล วอลเลซมีทีมกี่ทีมใน mls",
    "context": "CREATE TABLE table_25518547_4 (mls_team VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT affiliation FROM table_25518547_4 WHERE player = \"Kwaku Nyamekye\"",
    "question_en": "What university is kwaku nyamekye affiliated with?",
    "question_th": "ควาคุ เนียเมเก สังกัดมหาวิทยาลัยอะไรคะ?",
    "context": "CREATE TABLE table_25518547_4 (affiliation VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT affiliation FROM table_25518547_4 WHERE mls_team = \"Houston Dynamo\"",
    "question_en": "What university is houston dynamo affiliated with?",
    "question_th": "ฮูสตัน ไดนาโมอยู่ในเครือของมหาวิทยาลัยใด",
    "context": "CREATE TABLE table_25518547_4 (affiliation VARCHAR, mls_team VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_25518547_4 WHERE pick__number = 63",
    "question_en": "What is the position of pick # 63?",
    "question_th": "ตำแหน่งที่เลือก #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_en": "How many players are affiliated with indiana university?",
    "question_th": "มีผู้เล่นกี่คนที่มีส่วนเกี่ยวข้องกับมหาวิทยาลัยอินเดียน่า?",
    "context": "CREATE TABLE table_25518547_4 (player VARCHAR, affiliation VARCHAR)"
  },
  {
    "answer": "SELECT MIN(season) FROM table_25538763_1",
    "question_en": "When was the earliest season of Juncadella's career?",
    "question_th": "ฤดูกาลแรกสุดในอาชีพของ Juncadella คือเมื่อใด?",
    "context": "CREATE TABLE table_25538763_1 (season INTEGER)"
  },
  {
    "answer": "SELECT COUNT(poles) FROM table_25538763_1 WHERE season = 2012 AND points = \"252\"",
    "question_en": "How many pole data were given on season 2012 with 252 points?",
    "question_th": "ในฤดูกาล 2012 มีการให้ข้อมูลโพลจำนวนเท่าใด โดยมี 252 คะแนน",
    "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_en": "How many wins did Prema Powerteam won with 240 points?",
    "question_th": "พรีมา พาวเวอร์ทีม ชนะไปกี่คะแนน มี 240 แต้ม?",
    "context": "CREATE TABLE table_25538763_1 (wins VARCHAR, team VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT MAX(season) FROM table_25539502_1 WHERE podiums = 1",
    "question_en": "What is the latest season where he had 1 podium? ",
    "question_th": " ฤดูกาลล่าสุดที่เขาได้ 1 โพเดียมคืออะไร?",
    "context": "CREATE TABLE table_25539502_1 (season INTEGER, podiums VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_25539502_1 WHERE team = \"FMS International\"",
    "question_en": "What was his position when the team was FMS International? ",
    "question_th": " ตำแหน่งของเขาเมื่อครั้งทีม FMS International คืออะไร?",
    "context": "CREATE TABLE table_25539502_1 (position VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT MIN(races) FROM table_25539502_1 WHERE podiums = 11",
    "question_en": "What is the smallest number of races competed in with 11 podiums? ",
    "question_th": " การแข่งขันจำนวนน้อยที่สุดที่ลงแข่งขัน 11 โพเดียมคือเท่าใด",
    "context": "CREATE TABLE table_25539502_1 (races INTEGER, podiums VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_25561038_1 WHERE position = \"1st\"",
    "question_en": "List the total points for the 1st place team.",
    "question_th": "สรุปคะแนนรวมของทีมอันดับที่ 1",
    "context": "CREATE TABLE table_25561038_1 (points VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_25561038_1 WHERE position = \"1st\"",
    "question_en": "List the year in which the driver was in 1st place.",
    "question_th": "ระบุปีที่ผู้ขับขี่อยู่ในอันดับที่ 1",
    "context": "CREATE TABLE table_25561038_1 (season VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(races) FROM table_25561038_1 WHERE points = \"15\"",
    "question_en": "How many series awarded 15 points?",
    "question_th": "มีกี่ซีรีส์ที่ได้ 15 คะแนน?",
    "context": "CREATE TABLE table_25561038_1 (races VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT MAX(f_laps) FROM table_25561038_1",
    "question_en": "List the highest number of laps.",
    "question_th": "ระบุจำนวนรอบสูงสุด",
    "context": "CREATE TABLE table_25561038_1 (f_laps INTEGER)"
  },
  {
    "answer": "SELECT team FROM table_25561038_1 WHERE points = \"12\"",
    "question_en": "List the team with 12 points.",
    "question_th": "รายชื่อทีมที่มี 12 แต้ม",
    "context": "CREATE TABLE table_25561038_1 (team VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT third FROM table_25563779_4 WHERE second = \"Sergey Sirotkin\"",
    "question_en": "If second is Sergey Sirotkin, what is the third name?",
    "question_th": "ถ้าอันดับสองคือ Sergey Sirotkin ชื่อที่สามคืออะไร?",
    "context": "CREATE TABLE table_25563779_4 (third VARCHAR, second VARCHAR)"
  },
  {
    "answer": "SELECT champion FROM table_25563779_4 WHERE third = \"Bruno Bonifacio\"",
    "question_en": "If the third name is Bruno Bonifacio, what is the champion?",
    "question_th": "ถ้าชื่อที่ 3 คือ บรูโน โบนิฟาซิโอ แชมป์ล่ะ?",
    "context": "CREATE TABLE table_25563779_4 (champion VARCHAR, third VARCHAR)"
  },
  {
    "answer": "SELECT champion FROM table_25563779_4 WHERE national_trophy_rookie = \"not held\"",
    "question_en": "Who is the champion if the national trophy/rookie is not held?",
    "question_th": "ใครคือแชมป์ถ้าไม่มีถ้วยรางวัลระดับประเทศ/มือใหม่?",
    "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_en": "If the national trophy/rookie is Simone Iaquinta, what is the season total number?",
    "question_th": "หากถ้วยรางวัลระดับประเทศ/มือใหม่คือ Simone Iaquinta จำนวนรวมของฤดูกาลคือเท่าใด",
    "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_en": "If the national trophy/rookie is Gerrard Barrabeig, what is the name of the second?",
    "question_th": "ถ้าถ้วยรางวัลระดับประเทศ/มือใหม่คือเจอร์ราร์ด บาร์ราเบก คนที่สองชื่ออะไร?",
    "context": "CREATE TABLE table_25563779_4 (second VARCHAR, national_trophy_rookie VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_25572068_1 WHERE winning_driver = \"Nathanaël Berthon\"",
    "question_en": "What was the location when the winning driver was Nathanaël Berthon?",
    "question_th": "ตำแหน่งที่นักแข่งที่ชนะคือ Nathanaël 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_en": "Who was the winning driver in the FR2.0 11 series? ",
    "question_th": " ใครคือนักแข่งที่ชนะในซีรีส์ FR2.0 11",
    "context": "CREATE TABLE table_25572068_1 (winning_driver VARCHAR, series VARCHAR)"
  },
  {
    "answer": "SELECT circuit FROM table_25572068_1 WHERE series = \"FR3.5 11\"",
    "question_en": "What circuit was the FR3.5 11 series on? ",
    "question_th": " FR3.5 11 series ใช้วงจรอะไร",
    "context": "CREATE TABLE table_25572068_1 (circuit VARCHAR, series VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_25572068_1 WHERE series = \"F4 7\"",
    "question_en": "When was the F4 7 series?",
    "question_th": "ซีรี่ย์ F4 7 มีมาเมื่อไหร่?",
    "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_en": "In what series was TDS Racing the winning team on 9 October? ",
    "question_th": " TDS Racing เป็นทีมที่ชนะในซีรีส์ใดในวันที่ 9 ตุลาคม",
    "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_en": "What were the LOA metres for the yacht ichi ban?",
    "question_th": "มิเตอร์ LOA สำหรับเรือยอชท์ อิจิ แบน คือเท่าไร",
    "context": "CREATE TABLE table_25594271_2 (loa__metres_ VARCHAR, yacht VARCHAR)"
  },
  {
    "answer": "SELECT loa__metres_ FROM table_25594271_2 WHERE skipper = \"Lou Abrahams\"",
    "question_en": "How many LOA metres were there when the skipper is lou abrahams?",
    "question_th": "ลู อับราฮัมส์ กัปตันทีมมีกี่เมตร LOA",
    "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_en": "What is the position for sail number aus 03?",
    "question_th": "ใบเรือหมายเลข 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_en": "What yacht had LOA Metres of 13.34?",
    "question_th": "เรือยอทช์ลำใดมี LOA Meters 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_en": "How many episodes in the season are episode 142 in the series?",
    "question_th": "ซีรีส์ตอนที่ 142 มีกี่ตอนในซีซั่นนี้คะ?",
    "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_en": "What is the name of the episode that William M. Finkelstein wrote?",
    "question_th": "ตอนที่ William M. Finkelstein เขียนชื่ออะไร",
    "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_en": "Who was the artist with a start date of 1966-10-23?",
    "question_th": "ศิลปินคนไหนที่มีวันเริ่มงาน 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_en": "What is the end date for the artist s. moldoff/j. giella/c. infantino?",
    "question_th": "วันสิ้นสุดของศิลปินคือเมื่อใด โมลดอฟ/เจ จีเอลลา/ซี อินฟานติโน่?",
    "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_en": "How many artist(s) have a start date is 1966-12-12?",
    "question_th": "ศิลปินกี่คนที่มีวันที่เริ่มต้นคือ 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_en": "What is the fan title with an end date of 1967-11-12?",
    "question_th": "ชื่อแฟนคลับที่มีวันที่สิ้นสุดคือ 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_en": "How many writers where there for episode # 06?",
    "question_th": "มีนักเขียนตอน #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 = \"Станишић\"",
    "question_en": "Name the dominant religion for станишић",
    "question_th": "ตั้งชื่อศาสนาหลักสำหรับ станишић",
    "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_en": "Name the population for kolut",
    "question_th": "ตั้งชื่อประชากรสำหรับ 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šić\"",
    "question_en": "Name the number of cyrillic name for stanišić",
    "question_th": "ตั้งชื่อหมายเลขของชื่อซีริลลิกสำหรับstanišić",
    "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 = \"Бачки Моноштор (Croatian: Monoštor)\"",
    "question_en": "Name the population for бачки моноштор (croatian: monoštor)",
    "question_th": "ตั้งชื่อประชากรสำหรับ бачки моноштор (โครเอเชีย: monoštor)",
    "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 = \"Врбас\"",
    "question_en": "Name the number of population for  врбас",
    "question_th": "ตั้งชื่อจำนวนประชากรสำหรับ врбас",
    "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_en": "Name the largest ethnic group for 24112",
    "question_th": "ตั้งชื่อกลุ่มชาติพันธุ์ที่ใหญ่ที่สุดสำหรับปี 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 = \"Бачко Добро Поље\"",
    "question_en": "Name the dominant religion for village for бачко добро поље",
    "question_th": "ตั้งชื่อศาสนาหลักสำหรับหมู่บ้านด้วยคำว่า бачко добро поље",
    "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čko Dobro Polje\"",
    "question_en": "Name the cyrillic name for orthodox christianity village and  bačko dobro polje",
    "question_th": "ตั้งชื่อซีริลลิกของหมู่บ้านคริสต์นิกายออร์โธดอกซ์และbačko 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čić\"",
    "question_en": "Name the largest ethnic group for kosančić",
    "question_th": "ตั้งชื่อกลุ่มชาติพันธุ์ที่ใหญ่ที่สุดสำหรับ Kosančić",
    "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_en": "Name the cyrillic name for melenci",
    "question_th": "ตั้งชื่อชื่อซีริลลิกสำหรับ 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_en": "Name the dominant religion 2002 for village  banatski despotovac",
    "question_th": "ตั้งชื่อศาสนาที่โดดเด่นปี 2002 สำหรับหมู่บ้านบานัตสกีเผด็จการ",
    "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_en": "Name the cyrillic name for lazarevo",
    "question_th": "ตั้งชื่อชื่อซีริลลิกสำหรับลาซาเรโว",
    "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_en": "Name the population 2011 for mihajlovo",
    "question_th": "ตั้งชื่อประชากรปี 2011 สำหรับ 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 = \"Меленци\"",
    "question_en": "Name the dominant religion 2002 for  меленци",
    "question_th": "ตั้งชื่อศาสนาที่โดดเด่นปี 2002 สำหรับ меленци",
    "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_en": "Name the total number of population 2011 for perlez",
    "question_th": "ตั้งชื่อจำนวนประชากรทั้งหมด 2011 สำหรับ perlez",
    "context": "CREATE TABLE table_2562572_35 (population__2011_ VARCHAR, settlement VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_2562572_52 WHERE settlement = \"Subotište\"",
    "question_en": "What is the type when the settlement is subotište?",
    "question_th": "ประเภทใดที่การชำระหนี้เป็นsubotište?",
    "context": "CREATE TABLE table_2562572_52 (type VARCHAR, settlement VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(dominant_religion__2002_) FROM table_2562572_52 WHERE cyrillic_name = \"Сибач\"",
    "question_en": "how many times is the cyrillic name сибач?",
    "question_th": "ชื่อซีริลลิก сибач กี่ครั้ง?",
    "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 = \"Брестач\"",
    "question_en": "What is the largest ethnic group (2002) when cyrillic name is брестач?",
    "question_th": "กลุ่มชาติพันธุ์ที่ใหญ่ที่สุด (2002) คืออะไรเมื่อชื่อซีริลลิกคือ брестач?",
    "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čić\"",
    "question_en": "How many times is the settlement karlovčić?",
    "question_th": "ข้อตกลงkarlovčićมีกี่ครั้ง?",
    "context": "CREATE TABLE table_2562572_52 (dominant_religion__2002_ VARCHAR, settlement VARCHAR)"
  },
  {
    "answer": "SELECT cyrillic_name FROM table_2562572_52 WHERE settlement = \"Ašanja\"",
    "question_en": "What is the cyrillic name when the settlement is ašanja?",
    "question_th": "ชื่ออักษรซีริลลิกที่ใช้เรียกนิคมว่า ašanja คืออะไร?",
    "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_en": "Name the least population for 2002 for 2011 being 9564",
    "question_th": "ตั้งชื่อประชากรน้อยที่สุดสำหรับปี 2545 สำหรับปี 2554 เป็น 9,564 คน",
    "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_en": "Name the total number of population for 1991 for 9564 for 2011",
    "question_th": "ตั้งชื่อจำนวนประชากรทั้งหมดสำหรับปี 1991 สำหรับ 9564 สำหรับปี 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ža\"",
    "question_en": "Name the city for kanjiža",
    "question_th": "ตั้งชื่อเมืองสำหรับคันจิชา",
    "context": "CREATE TABLE table_2562572_5 (city___municipality VARCHAR, urban_settlement VARCHAR)"
  },
  {
    "answer": "SELECT city___municipality FROM table_2562572_5 WHERE cyrillic_name = \"Ада\"",
    "question_en": "Name the city for ада",
    "question_th": "ตั้งชื่อเมืองสำหรับอาดา",
    "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_en": "Name the population for 2002 being ada",
    "question_th": "ตั้งชื่อประชากรในปี พ.ศ. 2545 เป็น ada",
    "context": "CREATE TABLE table_2562572_5 (population__2002_ INTEGER, urban_settlement VARCHAR)"
  },
  {
    "answer": "SELECT MAX(no_votes) FROM table_256286_14",
    "question_en": "Name the most no votes",
    "question_th": "ระบุชื่อที่ไม่มีการโหวตมากที่สุด",
    "context": "CREATE TABLE table_256286_14 (no_votes INTEGER)"
  },
  {
    "answer": "SELECT MIN(yes_votes) FROM table_256286_14 WHERE passed = \"YES\"",
    "question_en": "Name the least yes votes for yes passed",
    "question_th": "ระบุชื่อที่โหวตใช่น้อยที่สุดว่าใช่ผ่าน",
    "context": "CREATE TABLE table_256286_14 (yes_votes INTEGER, passed VARCHAR)"
  },
  {
    "answer": "SELECT _percentage_yes FROM table_256286_14 WHERE yes_votes = 78961",
    "question_en": "Name the % yes for yes votes for 78961",
    "question_th": "ตั้งชื่อ % ใช่สำหรับโหวตใช่สำหรับ 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_en": "What is every description if NO votes is 233759?",
    "question_th": "ทุกคำอธิบายจะเป็นอย่างไรถ้า NO โหวตคือ 233759",
    "context": "CREATE TABLE table_256286_43 (description VARCHAR, no_votes VARCHAR)"
  },
  {
    "answer": "SELECT passed FROM table_256286_43 WHERE no_votes = 312187",
    "question_en": "What is every entry for passed when NO votes is 312187?",
    "question_th": "ทุกรายการที่จะผ่านเมื่อ NO โหวตคือ 312187 คืออะไร",
    "context": "CREATE TABLE table_256286_43 (passed VARCHAR, no_votes VARCHAR)"
  },
  {
    "answer": "SELECT _percentage_yes FROM table_256286_43 WHERE type = \"Ref\"",
    "question_en": "What is every value for %yes when type is ref?",
    "question_th": "ทุกค่าของ %yes เมื่อ type เป็น 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_en": "What is every entry for description when the value of %yes is 51.82%?",
    "question_th": "ทุกรายการสำหรับคำอธิบายเมื่อค่า %yes คือ 51.82% คืออะไร",
    "context": "CREATE TABLE table_256286_43 (description VARCHAR, _percentage_yes VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_25640730_7 WHERE _number = 12",
    "question_en": "What is the episode title for episode number 12?",
    "question_th": "ตอนที่ 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_en": "If the UK air date is February 18, 2013, who was the episode written by?",
    "question_th": "ถ้ากำหนดออกอากาศที่อังกฤษคือวันที่ 18 กุมภาพันธ์ 2556 ใครเป็นคนเขียนบท?",
    "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_en": "If the director is Yannick Bisson, what was the Canadian amount of viewers?",
    "question_th": "หากผู้กำกับคือ Yannick Bisson จำนวนผู้ชมชาวแคนาดาคือเท่าใด",
    "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_en": "Did the legislation pass that had 42.87% yes votes?",
    "question_th": "กฎหมายผ่านคะแนนโหวตใช่ 42.87% หรือไม่?",
    "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_en": "How many no votes were there in the partial public funding of election campaigns legislation?",
    "question_th": "มีกี่คนที่ไม่มีการลงคะแนนเสียงในการระดมทุนสาธารณะบางส่วนของกฎหมายการหาเสียงเลือกตั้ง",
    "context": "CREATE TABLE table_256286_63 (no_votes VARCHAR, description VARCHAR)"
  },
  {
    "answer": "SELECT MAX(touchdowns) FROM table_25642873_2 WHERE player = \"Sam Babcock\"",
    "question_en": "How many touchdowns did Sam Babcock get? ",
    "question_th": " Sam Babcock ทำทัชดาวน์ได้กี่ครั้ง?",
    "context": "CREATE TABLE table_25642873_2 (touchdowns INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(extra_points) FROM table_25642873_2 WHERE player = \"na\"",
    "question_en": "How many extra points catagories are there for the na player? ",
    "question_th": " มีคะแนนพิเศษกี่ประเภทสำหรับผู้เล่น na?",
    "context": "CREATE TABLE table_25642873_2 (extra_points VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT extra_points FROM table_25642873_2 WHERE touchdowns = 5",
    "question_en": "The player who had 5 touchdowns had how many extra points? ",
    "question_th": " ผู้เล่นที่ทำทัชดาวน์ได้ 5 ครั้งจะมีแต้มพิเศษกี่แต้ม?",
    "context": "CREATE TABLE table_25642873_2 (extra_points VARCHAR, touchdowns VARCHAR)"
  },
  {
    "answer": "SELECT MIN(safeties) FROM table_25642873_2",
    "question_en": "What is the smallest number of safeties? ",
    "question_th": " ตู้เซฟจำนวนน้อยที่สุดคือเท่าไร?",
    "context": "CREATE TABLE table_25642873_2 (safeties INTEGER)"
  },
  {
    "answer": "SELECT latitude FROM table_25675509_1 WHERE longitude = \"157.941° E\"",
    "question_en": "If the longitude is 157.941° e, what is the latitude?",
    "question_th": "ถ้าลองจิจูดคือ 157.941° e ละติจูดจะเป็นเท่าใด",
    "context": "CREATE TABLE table_25675509_1 (latitude VARCHAR, longitude VARCHAR)"
  },
  {
    "answer": "SELECT depth FROM table_25675509_1 WHERE latitude = \"08.979° S\"",
    "question_en": "If the latitude is 08.979° s, what is the depth?",
    "question_th": "ถ้าละติจูด 08.979° s ความลึกจะเป็นเท่าใด",
    "context": "CREATE TABLE table_25675509_1 (depth VARCHAR, latitude VARCHAR)"
  },
  {
    "answer": "SELECT latitude FROM table_25675509_1 WHERE time__utc_ = \"13:10:02\"",
    "question_en": "At what latitude did the shock at time 13:10:02 occur?",
    "question_th": "เหตุช็อก ณ เวลา 13:10:02 น. อยู่ที่ละติจูดใด",
    "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° S\"",
    "question_en": "On which date did the shock at latitude 08.909° s occur?",
    "question_th": "แผ่นดินไหวที่ละติจูด 08.909°s เกิดขึ้นเมื่อใด",
    "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_en": "What was the longitude for the shock that occured on 2010-01-09?",
    "question_th": "ลองจิจูดของเหตุการณ์ช็อกที่เกิดขึ้นในวันที่ 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° E\"",
    "question_en": "If the longitude is 158.091° e, what is the depth?",
    "question_th": "ถ้าลองจิจูดคือ 158.091° e ความลึกจะเป็นเท่าใด",
    "context": "CREATE TABLE table_25675509_1 (depth VARCHAR, longitude VARCHAR)"
  },
  {
    "answer": "SELECT MAX(w) FROM table_25689740_2",
    "question_en": "What is the highest number for W?",
    "question_th": "W มีจำนวนสูงสุดเท่าไร?",
    "context": "CREATE TABLE table_25689740_2 (w INTEGER)"
  },
  {
    "answer": "SELECT Ends AS lost FROM table_25689740_2 WHERE pa = 44",
    "question_en": "What is shown for ends lost when pa is 44?",
    "question_th": "สิ่งที่แสดงสำหรับการสิ้นสุดที่เสียไปเมื่อ pa คือ 44?",
    "context": "CREATE TABLE table_25689740_2 (Ends VARCHAR, pa VARCHAR)"
  },
  {
    "answer": "SELECT original_airdate FROM table_25691838_6 WHERE episode__number = 733",
    "question_en": "What was the original airdate of episode #733?",
    "question_th": "ตอนที่ 733 ออกอากาศครั้งแรกเมื่อใด?",
    "context": "CREATE TABLE table_25691838_6 (original_airdate VARCHAR, episode__number VARCHAR)"
  },
  {
    "answer": "SELECT the_wørd FROM table_25691838_6 WHERE production_code = 6084",
    "question_en": "What was The Word for production code 6084?",
    "question_th": "Word สำหรับรหัสการผลิต 6084 คืออะไร",
    "context": "CREATE TABLE table_25691838_6 (the_wørd VARCHAR, production_code VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(the_wørd) FROM table_25691838_6 WHERE episode__number = 727",
    "question_en": "What was the number of \"The Word\" segments for episode number 727?",
    "question_th": "ตอนที่ 727 ตอนที่ 727 มีตอน \"The Word\" กี่ตอน",
    "context": "CREATE TABLE table_25691838_6 (the_wørd VARCHAR, episode__number VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(rebounding_high) FROM table_25696729_8 WHERE season = \"Regular season\"",
    "question_en": "Compute the number of times Dennis Rodman recordedhigh rebounds given a regular season",
    "question_th": "คำนวณจำนวนครั้งที่เดนนิส ร็อดแมนบันทึกการรีบาวด์สูงในฤดูกาลปกติ",
    "context": "CREATE TABLE table_25696729_8 (rebounding_high VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT 10 AS _rebounds FROM table_25696729_8 WHERE season = \"1991–92\"",
    "question_en": "List all rebounds equal to 10 for  Dennis Rodman 's 1991–92 season",
    "question_th": "รายชื่อรีบาวด์ทั้งหมดเท่ากับ 10 สำหรับฤดูกาล 1991–92 ของเดนนิส ร็อดแมน",
    "context": "CREATE TABLE table_25696729_8 (season VARCHAR)"
  },
  {
    "answer": "SELECT MAX(20 AS _rebounds) FROM table_25696729_8 WHERE double_double = 5",
    "question_en": "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",
    "question_th": "อะไรคือการรีบาวด์สูงสุดที่เดนนิส ร็อดแมนได้รับในประเภทการรีบาวด์ 20 ครั้ง โดยพิจารณาจากสองสิ่งต่อไปนี้: คะแนน รีบาวด์ แอสซิสต์ ขโมย และบล็อคช็อต (คะแนน) มากกว่าเท่ากับ 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_en": "If the episode number is 2-01 what is the original UK air date?",
    "question_th": "ถ้าหมายเลขตอนเป็น 2-01 ต้นฉบับออกอากาศในอังกฤษคือวันไหน?",
    "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_en": "If the episode title is Pressures, what are the names of the cast?",
    "question_th": "ถ้าชื่อตอนเป็น Pressures นักแสดงชื่ออะไรคะ?",
    "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_en": "What is the episode number for episode title Leave Takers?",
    "question_th": "หมายเลขตอนของชื่อตอน 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_en": "For episode number 2-03, what are the names of the cast?",
    "question_th": "ตอนที่ 2-03 นักแสดงชื่ออะไรคะ?",
    "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_en": "What is the total number of birth/2012 for January–December 2012 in Kurgan Oblast?",
    "question_th": "จำนวนที่เกิดทั้งหมด/2555 ในเดือนมกราคม-ธันวาคม 2555 ในเขต 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_en": "What were the total number of 2012 deaths when 2012 births were 127?",
    "question_th": "จำนวนผู้เสียชีวิตทั้งหมดในปี 2555 เมื่อเกิดในปี 2555 มี 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_en": "What were the total number of 2012 births for the January–December 2012 Tver Oblast region?",
    "question_th": "จำนวนการเกิดทั้งหมดในปี 2555 ในภูมิภาคตเวียร์แคว้นปกครองตนเองเดือนมกราคม-ธันวาคม 2555 เป็นเท่าใด",
    "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_en": "What were the total 2012 births when the 2012 deaths were 163?",
    "question_th": "จำนวนการเกิดทั้งหมดในปี 2555 เป็นเท่าใดเมื่อผู้เสียชีวิตในปี 2555 มี 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_en": "How many pf catagories are listed for the skip that had 3 for l",
    "question_th": "มีกี่ pf ที่ระบุไว้สำหรับการข้ามที่มี 3 สำหรับ l",
    "context": "CREATE TABLE table_25714995_2 (pf VARCHAR, l VARCHAR)"
  },
  {
    "answer": "SELECT MAX(l) FROM table_25714995_2 WHERE w = 3",
    "question_en": "How many l's are there for the skip with 3 for w? ",
    "question_th": " มี l กี่ตัวสำหรับการข้ามที่มี 3 สำหรับ 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_en": "How many ends won catagories are listed when there are 8 stolen ends? ",
    "question_th": " มีหมวดหมู่ที่ได้รับรางวัลกี่รายการเมื่อมีการขโมย 8 รายการ?",
    "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_en": "How many extra points did Germany Schultz score? ",
    "question_th": " เยอรมนี ชูลท์ซ ทำคะแนนพิเศษได้กี่คะแนน?",
    "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_en": "What is the least number of field goals scored by a player? ",
    "question_th": " ผู้เล่นทำประตูได้น้อยที่สุดคือเท่าใด?",
    "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_en": "How many field goals were scored by the player that got 7 touchdowns? ",
    "question_th": " ผู้เล่นที่ทำทัชดาวน์ได้ 7 ครั้งทำประตูได้กี่ประตู?",
    "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_en": "How many ends were won where the blank ends are smaller than 3.0?",
    "question_th": "มีกี่ปลายที่ชนะโดยที่ปลายว่างเล็กกว่า 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_en": "What is the largest amount of ends won when stolen ends were 3?",
    "question_th": "จำนวนการจบที่มากที่สุดที่ได้รับเมื่อการถูกขโมยคือ 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_en": "How many counties are at milepost 69.5? ",
    "question_th": " ไมล์โพสต์ 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_en": "In what city or town is Stratford (limited service)? ",
    "question_th": " Stratford ตั้งอยู่ในเมืองใด (บริการจำกัด)",
    "context": "CREATE TABLE table_2572788_1 (town_city VARCHAR, station VARCHAR)"
  },
  {
    "answer": "SELECT town_city FROM table_2572788_1 WHERE milepost = \"71.1\"",
    "question_en": "At what city or town is milepost 71.1? ",
    "question_th": " ไมล์โพสต์ 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_en": "How many towns or cities are at milepost 71.1? ",
    "question_th": " มีกี่เมืองที่หลักไมล์ 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_en": "At what milepost is Beacon Falls? ",
    "question_th": " 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_en": "How many people wrote episode number 2 of the season?",
    "question_th": "มีกี่คนที่เขียนตอนที่ 2 ของซีซั่น?",
    "context": "CREATE TABLE table_25737761_4 (writer VARCHAR, _number VARCHAR)"
  },
  {
    "answer": "SELECT MIN(_number) FROM table_25737761_4 WHERE writer = \"Tony Basgallop\"",
    "question_en": "What episode number of the season did Tony Basgallop write?",
    "question_th": "Tony Basgallop เขียนตอนใดของฤดูกาล",
    "context": "CREATE TABLE table_25737761_4 (_number INTEGER, writer VARCHAR)"
  },
  {
    "answer": "SELECT MAX(_number) FROM table_25737761_4 WHERE no = 11",
    "question_en": "What episode number of the season is episode number 11 in the series?",
    "question_th": "ตอนที่ 11 ของซีรีส์คือตอนที่ 11 ของซีซั่นใด",
    "context": "CREATE TABLE table_25737761_4 (_number INTEGER, no VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_25735_1 WHERE winner = \"Toronto City Saints\"",
    "question_en": "Which competition did the toronto city saints win?",
    "question_th": "นักบุญเมืองโตรอนโตชนะการแข่งขันใด",
    "context": "CREATE TABLE table_25735_1 (competition VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT MIN(teams) FROM table_25735_1 WHERE winner = \"Wynnum Manly Seagulls\"",
    "question_en": "What was the number of teams in the competition that wynnum manly seagulls won?",
    "question_th": "Wynnum Manly Seagulls ชนะการแข่งขันจำนวนทีมกี่ทีม?",
    "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_en": "How many cook island league competitions were there?",
    "question_th": "มีการแข่งขันลีกเกาะคุกกี่รายการ?",
    "context": "CREATE TABLE table_25735_1 (latest_year VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(position) FROM table_25740774_1 WHERE season = 2010",
    "question_en": "How many positions are shown for the 2010 season?",
    "question_th": "มีกี่ตำแหน่งที่แสดงสำหรับฤดูกาล 2010?",
    "context": "CREATE TABLE table_25740774_1 (position VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT MAX(season) FROM table_25740774_1 WHERE podiums > 2.0",
    "question_en": "What is the season with podiums more  than 2.0?",
    "question_th": "ฤดูกาลที่มีโพเดียมมากกว่า 2.0 คืออะไร?",
    "context": "CREATE TABLE table_25740774_1 (season INTEGER, podiums INTEGER)"
  },
  {
    "answer": "SELECT series FROM table_25740774_1 WHERE position = \"NC\"",
    "question_en": "Which series is in position nc?",
    "question_th": "ซีรีย์ไหนอยู่ในตำแหน่ง nc?",
    "context": "CREATE TABLE table_25740774_1 (series VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT f_laps FROM table_25740774_1 WHERE races = 14",
    "question_en": "What are the  f/laps for race 14?",
    "question_th": "f/laps สำหรับการแข่ง 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_en": "How many flaps are there for the team march 3 racing (1-4) top speed racing team (5-12)?",
    "question_th": "ทีมแข่ง 3 มีนาคม (1-4) ทีมแข่งความเร็วสูงสุด (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_en": "If the player is Maake Kemoeatu, what is the int maximum?",
    "question_th": "ถ้าผู้เล่นเป็น มาเกอคีโมเอตู ค่า int สูงสุดคือเท่าไร?",
    "context": "CREATE TABLE table_25773915_11 (int INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT MIN(ydl) FROM table_25773915_11",
    "question_en": "What is the ydi minimum?",
    "question_th": "ydi ขั้นต่ำคือเท่าไร?",
    "context": "CREATE TABLE table_25773915_11 (ydl INTEGER)"
  },
  {
    "answer": "SELECT MIN(fumrec) FROM table_25773915_11",
    "question_en": "What is the fumrec minimum?",
    "question_th": "fumrec ขั้นต่ำคือเท่าไร?",
    "context": "CREATE TABLE table_25773915_11 (fumrec INTEGER)"
  },
  {
    "answer": "SELECT fumrec FROM table_25773915_11 WHERE player = \"Reed Doughty\"",
    "question_en": "If the player is Reed Doughty, what isthe fumrec?",
    "question_th": "ถ้าผู้เล่นคือ Reed Doughty แล้ว fumrec คืออะไร?",
    "context": "CREATE TABLE table_25773915_11 (fumrec VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT stadium FROM table_25794138_1 WHERE team = \"San Juan Jabloteh\"",
    "question_en": "What stadium(sO does san juan jabloteh play in?",
    "question_th": "ซาน ฮวน จาโบลเตห์ ลงเล่นในสนามกีฬาใด (ซาน ฮวน จาโบลเตห์ อยู่ในสนามใด?",
    "context": "CREATE TABLE table_25794138_1 (stadium VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT captain FROM table_25794138_1 WHERE team = \"North East Stars\"",
    "question_en": "Wh owas the captian of the north east stars?",
    "question_th": "ใครเป็นหัวหน้าของดาวตะวันออกเฉียงเหนือ?",
    "context": "CREATE TABLE table_25794138_1 (captain VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(capacity) FROM table_25794138_1 WHERE stadium = \"Larry Gomes stadium\"",
    "question_en": "What was the maximum capacity of larry gomes stadium?",
    "question_th": "ความจุสูงสุดของสนามแลร์รี่ โกเมสคือเท่าไร?",
    "context": "CREATE TABLE table_25794138_1 (capacity INTEGER, stadium VARCHAR)"
  },
  {
    "answer": "SELECT MIN(season__number) FROM table_25800134_11",
    "question_en": "What is the lowest season #?",
    "question_th": "ฤดูกาลต่ำสุด # คืออะไร?",
    "context": "CREATE TABLE table_25800134_11 (season__number INTEGER)"
  },
  {
    "answer": "SELECT director FROM table_25800134_11 WHERE series__number = 422",
    "question_en": "Who directed  series # 422?",
    "question_th": "ใครเป็นผู้กำกับซีรีส์ # 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_en": "How many directors were there for series # 431?",
    "question_th": "มีผู้กำกับกี่คนสำหรับซีรี่ส์ # 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_en": "What episode  number of the series aired on February 26, 1968?",
    "question_th": "ซีรีส์นี้ออกอากาศวันที่ 26 กุมภาพันธ์ พ.ศ. 2511 ตอนที่ใด",
    "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_en": "How many people directed the episode that aired on February 5, 1968?",
    "question_th": "ตอนที่ออกอากาศวันที่ 5 กุมภาพันธ์ พ.ศ. 2511 มีคนกำกับกี่คน?",
    "context": "CREATE TABLE table_25800134_12 (director VARCHAR, airdate VARCHAR)"
  },
  {
    "answer": "SELECT director FROM table_25800134_12 WHERE airdate = \"September 25, 1967\"",
    "question_en": "Who directed the episode that aired on September 25, 1967?",
    "question_th": "ใครเป็นผู้กำกับตอนที่ออกอากาศเมื่อวันที่ 25 กันยายน พ.ศ. 2510?",
    "context": "CREATE TABLE table_25800134_12 (director VARCHAR, airdate VARCHAR)"
  },
  {
    "answer": "SELECT director FROM table_25800134_12 WHERE airdate = \"February 19, 1968\"",
    "question_en": "Who directed the episode that aired on February 19, 1968?",
    "question_th": "ใครเป็นผู้กำกับตอนที่ออกอากาศเมื่อวันที่ 19 กุมภาพันธ์ พ.ศ. 2511?",
    "context": "CREATE TABLE table_25800134_12 (director VARCHAR, airdate VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(title) FROM table_25800134_12 WHERE airdate = \"September 25, 1967\"",
    "question_en": "How many episode titles aired on September 25, 1967?",
    "question_th": "มีกี่ตอนที่ออกอากาศเมื่อวันที่ 25 กันยายน พ.ศ. 2510",
    "context": "CREATE TABLE table_25800134_12 (title VARCHAR, airdate VARCHAR)"
  },
  {
    "answer": "SELECT MAX(series__number) FROM table_25800134_18 WHERE season__number = 22",
    "question_en": "name the most series number for season 22",
    "question_th": "ตั้งชื่อหมายเลขซีรีส์มากที่สุดสำหรับซีซั่น 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_en": "What is the earliest stage where mountains classifications was awarded to Peter Stetina? ",
    "question_th": " ช่วงแรกสุดที่ 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_en": "what is the title where the airdate is december 5, 1964?",
    "question_th": "ออกอากาศวันที่ 5 ธันวาคม 2507 ชื่ออะไรคะ?",
    "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_en": "what is the number of series where the airdate is december 26, 1964?",
    "question_th": "ซีรี่ย์ที่ออกอากาศวันที่ 26 ธันวาคม 2507 มีกี่เรื่องคะ?",
    "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_en": "Who was the actor/actress with a first appearance is 3 june 2007?",
    "question_th": "นักแสดง/นักแสดงที่ปรากฏตัวครั้งแรกคือใครคือวันที่ 3 มิถุนายน พ.ศ. 2550?",
    "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_en": "Who was the actor/actress with a last appearance of 1 january 2010 and total is 20 and character is vanessa 'nessa' jenkins?",
    "question_th": "ใครคือนักแสดง/นักแสดงที่ปรากฏตัวครั้งสุดท้ายในวันที่ 1 มกราคม 2010 และรวมอายุได้ 20 คน และตัวละครคือ วาเนสซา 'เนสซา' เจนกินส์",
    "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_en": "What is the highest total number?",
    "question_th": "จำนวนรวมสูงสุดคืออะไร?",
    "context": "CREATE TABLE table_25831483_1 (total INTEGER)"
  },
  {
    "answer": "SELECT COUNT(character) FROM table_25831483_1 WHERE actor_actress = \"Larry Lamb\"",
    "question_en": "How many  characters where actor/actress is larry lamb?",
    "question_th": "แลร์รี่ แลมบ์ มีตัวละครกี่ตัวที่นักแสดง/นักแสดงเป็น?",
    "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_en": "What was the last appearance of actor/actress is pam ferris?",
    "question_th": "การปรากฏตัวครั้งสุดท้ายของนักแสดง/นักแสดงคือ แพม เฟอร์ริส คืออะไร?",
    "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_en": "How many total are there when actor/actress is pam ferris?",
    "question_th": "นักแสดง/นักแสดงเป็นแพม เฟอร์ริส มีทั้งหมดกี่คน?",
    "context": "CREATE TABLE table_25831483_1 (total VARCHAR, actor_actress VARCHAR)"
  },
  {
    "answer": "SELECT MIN(gdp__ppp__per_capita) FROM table_25869317_1",
    "question_en": "What is the lowest GDP (ppp) per capita?",
    "question_th": "GDP ต่ำสุด (ppp) ต่อหัวคือเท่าไร?",
    "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_en": "Who directed the episode that had 12.88 million viewers?",
    "question_th": "ใครเป็นผู้กำกับตอนที่มีผู้ชม 12.88 ล้านคน?",
    "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_en": "What was the original air date of the episode written by amanda segel?",
    "question_th": "วันที่ออกอากาศดั้งเดิมของตอนที่เขียนโดย 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_en": "What was the original air date of the episode directed by gloria muzio?",
    "question_th": "วันที่ออกอากาศดั้งเดิมของตอนที่กำกับโดย 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_en": "What was the original air date of the episode directed by frederick e. o. toye?",
    "question_th": "วันที่ออกอากาศดั้งเดิมของตอนที่กำกับโดยเฟรดเดอริก เอโอ ทอยคือเมื่อใด",
    "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_en": "What is every value of Top 10 when team is #10 Phil Parsons Racing and average finish is 22.9?",
    "question_th": "ทุกมูลค่าของ 10 อันดับแรกเมื่อทีมอันดับ 10 Phil Parsons Racing และจบสกอร์เฉลี่ยคือ 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_en": "What is every year with average start of 27.2?",
    "question_th": "ทุกปีเริ่มต้นเฉลี่ย 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_en": "How many values of top 10 for 5th position?",
    "question_th": "10 อันดับแรกสำหรับอันดับที่ 5 มีกี่ค่า?",
    "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_en": "What is every value for top 5 if average start is 21.9?",
    "question_th": "ทุกค่าสำหรับ 5 อันดับแรกจะเป็นเท่าใดหากการเริ่มต้นเฉลี่ยคือ 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_en": "How many values for winnings correspond to average start of 19.0?",
    "question_th": "ค่าชัยชนะที่สอดคล้องกับการเริ่มต้นเฉลี่ยที่ 19.0 มีกี่ค่า?",
    "context": "CREATE TABLE table_2597876_2 (winnings VARCHAR, avg_start VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_25987797_1 WHERE school = \"Lucas\"",
    "question_en": "What is the name of the school in Lucas ? ",
    "question_th": " โรงเรียนใน ลูคัส ชื่ออะไร?",
    "context": "CREATE TABLE table_25987797_1 (location VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT MAX(pick__number) FROM table_26077092_7 WHERE player = \"Andrew Quarless\"",
    "question_en": "What was the pick number for Andrew Quarless? ",
    "question_th": " หมายเลขที่เลือกของ 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_en": "How many players are from Purdue? ",
    "question_th": " มีผู้เล่นจาก 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_en": "who are all the players when season mvp is less than 1.0 and second team is less than 1.0",
    "question_th": "ซึ่งเป็นผู้เล่นทั้งหมดเมื่อซีซั่น MVP น้อยกว่า 1.0 และทีมรองน้อยกว่า 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_en": "when number of selection is 2 and first team is 1 who are all the player",
    "question_th": "เมื่อจำนวนตัวเลือกคือ 2 และทีมแรกคือ 1 ซึ่งเป็นผู้เล่นทั้งหมด",
    "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_en": "what would be final four mvp maximum when first team is 1",
    "question_th": "ค่า MVP สูงสุดสี่สุดท้ายจะเป็นเท่าไรเมื่อทีมแรกเป็น 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_en": "when season mvp is larger than 1.0 what is the maximum number of selection",
    "question_th": "เมื่อ MVP ของฤดูกาลมากกว่า 1.0 คือจำนวนการเลือกสูงสุดคือเท่าใด",
    "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_en": "who is first team when dimitris diamantidis play.",
    "question_th": "ซึ่งเป็นทีมชุดใหญ่เมื่อดิมิทริส เดียมานติดิสลงเล่น",
    "context": "CREATE TABLE table_26130295_3 (first_team VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MIN(term_limited) FROM table_26129220_2 WHERE residence = \"Coshocton\"",
    "question_en": "What is the earliest term limit for the senator who resides in Coshocton? ",
    "question_th": " วุฒิสมาชิกที่อาศัยอยู่ในคอชอกตันมีกำหนดวาระเร็วที่สุดคือเท่าใด",
    "context": "CREATE TABLE table_26129220_2 (term_limited INTEGER, residence VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_26129220_2 WHERE district = 27",
    "question_en": "What is the party for district 27? ",
    "question_th": " ปาร์ตี้เขต 27 คืออะไร?",
    "context": "CREATE TABLE table_26129220_2 (party VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_26129220_2 WHERE residence = \"Canton\"",
    "question_en": "How many party classifications are there for the senator from Canton? ",
    "question_th": " ส.ว.จากแคนตันมีการแบ่งพรรคกี่พรรค?",
    "context": "CREATE TABLE table_26129220_2 (party VARCHAR, residence VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_26129220_2 WHERE senator = \"David Goodman\"",
    "question_en": "What is the party affiliation for Senator David Goodman? ",
    "question_th": " วุฒิสมาชิกเดวิด กู๊ดแมนสังกัดพรรคอะไร?",
    "context": "CREATE TABLE table_26129220_2 (party VARCHAR, senator VARCHAR)"
  },
  {
    "answer": "SELECT MIN(term_limited) FROM table_26129220_2 WHERE senator = \"Tom Niehaus\"",
    "question_en": "What is the term limit for Senator Tom Niehaus? ",
    "question_th": " วุฒิสมาชิก 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_en": "What is the party affiliation for senator mark Wagoner? ",
    "question_th": " มาร์ค วาโกเนอร์ วุฒิสมาชิกสังกัดพรรคอะไร?",
    "context": "CREATE TABLE table_26129220_2 (party VARCHAR, senator VARCHAR)"
  },
  {
    "answer": "SELECT representative FROM table_26131768_4 WHERE residence = \"Chagrin Falls\"",
    "question_en": "If the residence is Chagrin falls, who is the representative?",
    "question_th": "ถ้าที่อยู่อาศัยคือแชกรินตกใครคือตัวแทน?",
    "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_en": "If first elected on 2003 (appt.), when was the term limited?",
    "question_th": "หากได้รับการเลือกตั้งครั้งแรกในปี พ.ศ. 2546 (อนุมัติ) วาระนี้จำกัดเมื่อใด?",
    "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_en": "How many times was Scott Oelslager a representative?",
    "question_th": "สก็อตต์ โอเอลสลาเกอร์เป็นตัวแทนกี่ครั้ง?",
    "context": "CREATE TABLE table_26131768_4 (residence VARCHAR, representative VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_26131768_4 WHERE residence = \"Dublin\"",
    "question_en": "In which district is the residence Dublin?",
    "question_th": "ที่อยู่อาศัยดับลินตั้งอยู่ในเขตใด",
    "context": "CREATE TABLE table_26131768_4 (district VARCHAR, residence VARCHAR)"
  },
  {
    "answer": "SELECT term_limited FROM table_26131768_4 WHERE representative = \"Dave Hall\"",
    "question_en": "If the representative is Dave Hall, when was the term limited?",
    "question_th": "หากตัวแทนคือเดฟ ฮอลล์ เงื่อนไขจะจำกัดเมื่อใด",
    "context": "CREATE TABLE table_26131768_4 (term_limited VARCHAR, representative VARCHAR)"
  },
  {
    "answer": "SELECT MAX(district) FROM table_26131768_4 WHERE representative = \"Barbara Sears\"",
    "question_en": "If the Representative is Barbara sears, what is the district number?",
    "question_th": "ถ้าผู้แทนคือบาร์บารา เซียร์ เลขที่เขตอะไร",
    "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_en": "What is the original airdate of the episode that had 8.23 million viewers?",
    "question_th": "วันที่ออกอากาศดั้งเดิมของตอนที่มีผู้ชม 8.23 ล้านคนคือเมื่อใด",
    "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_en": "How many millions of viewers did Episode number 16 have?",
    "question_th": "ตอนที่ 16 มีผู้ชมกี่ล้านคน?",
    "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_en": "Name the vessel type for beluga shipping",
    "question_th": "ตั้งชื่อประเภทเรือสำหรับการขนส่งเบลูก้า",
    "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_en": "Name the vessel type for dof subsea",
    "question_th": "ตั้งชื่อประเภทเรือสำหรับ 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_en": "Name the most number in season ",
    "question_th": " ตั้งชื่อหมายเลขมากที่สุดในฤดูกาล",
    "context": "CREATE TABLE table_26168687_5 (no_in_season INTEGER)"
  },
  {
    "answer": "SELECT narrated_by FROM table_26168687_5 WHERE vessel_operator = \"Beluga Shipping\"",
    "question_en": "Name  the narraed by for beluga shipping",
    "question_th": "ตั้งชื่อผู้บรรยายโดยสำหรับการขนส่งเบลูก้า",
    "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_en": "Name the number of season for beluga shipping",
    "question_th": "ตั้งชื่อหมายเลขฤดูกาลสำหรับการจัดส่งเบลูก้า",
    "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_en": "Name the least number in series for james quinn",
    "question_th": "ตั้งชื่อตัวเลขที่น้อยที่สุดในชุดของเจมส์ ควินน์",
    "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é Balcer\"",
    "question_en": "Name the least number in season for brad markowitz, william n. fordes & rené balcer",
    "question_th": "บอกชื่อหมายเลขที่น้อยที่สุดในฤดูกาลของแบรด มาร์โควิทซ์, วิลเลียม เอ็น. ฟอร์ด และ เรอเน่ บัลเซอร์",
    "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_en": "What institution is located in St. Peter? ",
    "question_th": " สถาบันใดตั้งอยู่ในเซนต์ปีเตอร์?",
    "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_en": "What is the enrollment for Augsburg college? ",
    "question_th": " การลงทะเบียนสำหรับวิทยาลัย Augsburg คืออะไร?",
    "context": "CREATE TABLE table_261913_1 (enrollment INTEGER, institution VARCHAR)"
  },
  {
    "answer": "SELECT MIN(founded) FROM table_261913_1 WHERE joined = \"1977\"",
    "question_en": "What was the earliest date an institution was founded that joined in 1977? ",
    "question_th": " สถาบันก่อตั้งขึ้นและเข้าร่วมในปี 1977 เร็วที่สุดคือเมื่อใด",
    "context": "CREATE TABLE table_261913_1 (founded INTEGER, joined VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(type) FROM table_261927_2 WHERE location = \"Bridgewater, Massachusetts\"",
    "question_en": "How many different types are allocated to the institution in Bridgewater, Massachusetts? ",
    "question_th": " สถาบันในเมืองบริดจ์วอเตอร์ รัฐแมสซาชูเซตส์ ได้รับการจัดสรรประเภทที่แตกต่างกันกี่ประเภท",
    "context": "CREATE TABLE table_261927_2 (type VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT enrollment FROM table_261927_2 WHERE location = \"Westfield, Massachusetts\"",
    "question_en": "What is the enrollment for the institution in Westfield, Massachusetts? ",
    "question_th": " การลงทะเบียนสำหรับสถาบันใน 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_en": "Which institutions primary conference is merged into the university of Massachusetts boston? ",
    "question_th": "การประชุมเบื้องต้นของสถาบันใดที่รวมเข้ากับมหาวิทยาลัยแมสซาชูเซตส์บอสตัน",
    "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_en": "What is the football conference for Henniker, New Hampshire>?",
    "question_th": "การประชุมฟุตบอลสำหรับเมืองเฮนนิเกอร์ รัฐนิวแฮมป์เชียร์> คืออะไร?",
    "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_en": "What date did the institution that left in 2013 and that is nicknamed Corsairs, join? ",
    "question_th": " สถาบันที่จากไปในปี 2013 และมีชื่อเล่นว่า Corsairs เข้าร่วมเมื่อใด",
    "context": "CREATE TABLE table_261927_2 (joined VARCHAR, left VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT written_by FROM table_26199484_1 WHERE no = 38",
    "question_en": "Who wrote title number 38?",
    "question_th": "ใครเป็นคนเขียนหัวข้อหมายเลข 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–6 (7–0) , 6–7 (5–7) , 4–6, 6–2, 6–7 (5–7)\"",
    "question_en": "Which match was the final score 7–6 (7–0) , 6–7 (5–7) , 4–6, 6–2, 6–7 (5–7)?",
    "question_th": "นัดใดเป็นคะแนนสุดท้าย 7–6 (7–0) , 6–7 (5–7) , 4–6, 6–2, 6–7 (5–7)?",
    "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_en": "What is the lowest ends won when w is 8?",
    "question_th": "จุดต่ำสุดที่ชนะเมื่อ W คือ 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_en": "If the qatari male is 1104, what is the grand total?",
    "question_th": "ถ้าชายชาวกาตาร์มี 1104 ผลรวมทั้งหมดเป็นเท่าใด",
    "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_en": "If the grand total is 5814, what is the total non qatar?",
    "question_th": "หากผลรวมทั้งหมดคือ 5814 ผลรวมที่ไม่ใช่กาตาร์จะเป็นเท่าใด",
    "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_en": "If the year is 2001, what are the non qatari female?",
    "question_th": "ถ้าปี 2544 ผู้หญิงที่ไม่ใช่ชาวกาตาร์คือใคร?",
    "context": "CREATE TABLE table_26214389_3 (Non VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT total_female FROM table_26214389_3 WHERE qatari_female = 918",
    "question_en": "If the qatari female is 918, what is the total number of females?",
    "question_th": "ถ้ากาตาร์ตัวเมียมี 918 ตัว แล้วจำนวนตัวเมียทั้งหมดจะเป็นเท่าไหร่?",
    "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–3, 6–4, 7–6 (13–11)\"",
    "question_en": "How many outcomes occur for score in the final of 6–3, 6–4, 7–6 (13–11)?",
    "question_th": "คะแนนในรอบสุดท้ายของ 6–3, 6–4, 7–6 (13–11) มีผลลัพธ์กี่ผล?",
    "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_en": "How many outcomes occur on the date of January 31, 2010?",
    "question_th": "วันที่ 31 มกราคม 2553 มีผลลัพธ์กี่รายการ?",
    "context": "CREATE TABLE table_26202940_6 (outcome VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(no) FROM table_26202940_6 WHERE score_in_the_final = \"6–3, 6–4, 7–6 (13–11)\"",
    "question_en": "How many numbers correspond to the score in the final of  6–3, 6–4, 7–6 (13–11)?",
    "question_th": "มีกี่หมายเลขที่ตรงกับคะแนนในรอบสุดท้ายของ 6–3, 6–4, 7–6 (13–11)",
    "context": "CREATE TABLE table_26202940_6 (no VARCHAR, score_in_the_final VARCHAR)"
  },
  {
    "answer": "SELECT series FROM table_26223231_1 WHERE points = \"6\"",
    "question_en": "How many championships are there when there are 6 points",
    "question_th": "มี 6 แต้มมีกี่แชมป์",
    "context": "CREATE TABLE table_26223231_1 (series VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT poles FROM table_26223231_1 WHERE wins = 2",
    "question_en": "When there are 2 wins, how many poles are?",
    "question_th": "ชนะ 2 ครั้งได้กี่โพล?",
    "context": "CREATE TABLE table_26223231_1 (poles VARCHAR, wins VARCHAR)"
  },
  {
    "answer": "SELECT prod_code FROM table_2623498_5 WHERE episode__number = \"78\"",
    "question_en": "What is the production code for episode #78?",
    "question_th": "รหัสการผลิตตอนที่ 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_en": "What is the number of titles written by Charleen Easton?",
    "question_th": "ชาร์ลีน อีสตันเขียนเรื่องไว้กี่เรื่อง?",
    "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_en": "What is the number of production codes for episode #73?",
    "question_th": "รหัสการผลิตตอนที่ 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_en": "where is Fisk University located? ",
    "question_th": " มหาวิทยาลัยฟิสก์ตั้งอยู่ที่ไหน?",
    "context": "CREATE TABLE table_262481_2 (location VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT nickname FROM table_262481_2 WHERE founded = 1857",
    "question_en": "What is the nickname of the institution that was founded in 1857? ",
    "question_th": " สถาบันที่ก่อตั้งในปี พ.ศ. 2400 มีชื่อเล่นว่าอะไร?",
    "context": "CREATE TABLE table_262481_2 (nickname VARCHAR, founded VARCHAR)"
  },
  {
    "answer": "SELECT enrollment FROM table_262481_2 WHERE left = \"2012\" AND nickname = \"Panthers\"",
    "question_en": "What is the enrollment for the institution nicknamed the panthers that left in 2012? ",
    "question_th": " การลงทะเบียนสำหรับสถาบันที่มีชื่อเล่นว่าเสือดำที่จากไปในปี 2555 คืออะไร?",
    "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_en": "What is the institution whose current conference is gcac (naia)? ",
    "question_th": " สถาบันที่มีการประชุมปัจจุบันคือ 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_en": "How many original artists were there for the Group Performance?",
    "question_th": "มีศิลปินดั้งเดิมกี่คนสำหรับการแสดงของกลุ่ม?",
    "context": "CREATE TABLE table_26250176_1 (original_artist VARCHAR, theme VARCHAR)"
  },
  {
    "answer": "SELECT song_choice FROM table_26250176_1 WHERE result = \"Bottom 3\"",
    "question_en": "What song was used resulting in the bottom 3?",
    "question_th": "ใช้เพลงอะไรทำให้ได้ 3 อันดับสุดท้าย?",
    "context": "CREATE TABLE table_26250176_1 (song_choice VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT theme FROM table_26250176_1 WHERE week__number = \"Audition\"",
    "question_en": "What is the theme for Audition week?",
    "question_th": "ธีมของสัปดาห์ออดิชั่นคืออะไร?",
    "context": "CREATE TABLE table_26250176_1 (theme VARCHAR, week__number VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_26250176_1 WHERE week__number = \"Top 12\"",
    "question_en": "What was the results for top 12?",
    "question_th": "ผลลัพธ์สำหรับ 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_en": "Who was the original artist for First Solo?",
    "question_th": "ใครคือศิลปินดั้งเดิมของ 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_en": "Which episode is #4?",
    "question_th": "ตอนที่ 4 คือตอนไหนคะ?",
    "context": "CREATE TABLE table_26250218_1 (episode VARCHAR, order__number VARCHAR)"
  },
  {
    "answer": "SELECT joined FROM table_262514_1 WHERE nickname = \"Ravens\"",
    "question_en": "What is every year for joined with the Ravens nickname?",
    "question_th": "ทุกปีสำหรับการเข้าร่วมกับชื่อเล่น Ravens คืออะไร?",
    "context": "CREATE TABLE table_262514_1 (joined VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT institution FROM table_262514_1 WHERE nickname = \"Ravens\"",
    "question_en": "What is every institution with a nickname of Ravens?",
    "question_th": "ทุกสถาบันที่มีชื่อเล่นว่า Ravens คืออะไร?",
    "context": "CREATE TABLE table_262514_1 (institution VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT revised_hepburn FROM table_26263954_1 WHERE english = \"Roman characters\"",
    "question_en": "how many revised hepburn when english is roman characters",
    "question_th": "มีกี่เฮปเบิร์นที่แก้ไขเมื่อภาษาอังกฤษเป็นอักขระโรมัน",
    "context": "CREATE TABLE table_26263954_1 (revised_hepburn VARCHAR, english VARCHAR)"
  },
  {
    "answer": "SELECT english FROM table_26263954_1 WHERE revised_hepburn = \"chiji\"",
    "question_en": "when chiji is revised hepburn what are all the english",
    "question_th": "เมื่อ chiji ได้รับการแก้ไข hepburn ภาษาอังกฤษทั้งหมดคืออะไร",
    "context": "CREATE TABLE table_26263954_1 (english VARCHAR, revised_hepburn VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(english) FROM table_26263954_1 WHERE kunrei_shiki = \"otya\"",
    "question_en": "how many number of english when kunrei-shiki is otya",
    "question_th": "คุนเรชิกิเป็นโอตยะเป็นภาษาอังกฤษกี่ตัว",
    "context": "CREATE TABLE table_26263954_1 (english VARCHAR, kunrei_shiki VARCHAR)"
  },
  {
    "answer": "SELECT kana_spelling FROM table_26263954_1 WHERE english = \"Mount Fuji\"",
    "question_en": "how many kana spelling when english is mount fuji ",
    "question_th": " ภาษาอังกฤษเรียกว่าภูเขาฟูจิ สะกดกี่คะนะ",
    "context": "CREATE TABLE table_26263954_1 (kana_spelling VARCHAR, english VARCHAR)"
  },
  {
    "answer": "SELECT nihon_shiki FROM table_26263954_1 WHERE english = \"tea\"",
    "question_en": "when english is tea how many nihon-shiki",
    "question_th": "เมื่อภาษาอังกฤษเป็นชากี่นิฮงชิกิ",
    "context": "CREATE TABLE table_26263954_1 (nihon_shiki VARCHAR, english VARCHAR)"
  },
  {
    "answer": "SELECT original_airdate FROM table_26293875_3 WHERE prod_no = \"2x03\"",
    "question_en": "What was the original airdate of the episode with production number 2x03?",
    "question_th": "วันที่ออกอากาศดั้งเดิมของตอนที่มีหมายเลขการผลิต 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_en": "How many episodes had production number 2x13?",
    "question_th": "จำนวนการผลิต 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_en": "How many different kickoffs happened when the oppenent was at Rhein Fire?",
    "question_th": "การคิกออฟที่แตกต่างกันกี่ครั้งเกิดขึ้นเมื่อฝ่ายตรงข้ามอยู่ที่ 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_en": "How many different kickoffs happened when the opponent was the Scottish Claymores",
    "question_th": "มีการคิกออฟที่แตกต่างกันกี่ครั้งเมื่อคู่ต่อสู้คือชาวสก็อตแลนด์เคลย์มอร์ส",
    "context": "CREATE TABLE table_26275503_2 (kickoff VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT MIN(enrollment) FROM table_26351260_1 WHERE institution = \"Eastern Michigan University\"",
    "question_en": "What is the lowest enrollment for Eastern Michigan University?",
    "question_th": "การลงทะเบียนต่ำสุดสำหรับมหาวิทยาลัย Eastern Michigan คืออะไร?",
    "context": "CREATE TABLE table_26351260_1 (enrollment INTEGER, institution VARCHAR)"
  },
  {
    "answer": "SELECT team_nickname FROM table_26351260_1 WHERE institution = \"Kent State University\"",
    "question_en": "What is Kent State University's team nickname?",
    "question_th": "ชื่อเล่นของทีม Kent State University คืออะไร?",
    "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_en": "How many Kent State University's are there?",
    "question_th": "มหาวิทยาลัย Kent State มีกี่แห่ง?",
    "context": "CREATE TABLE table_26351260_1 (location VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_26351260_1 WHERE team_nickname = \"Bulldogs\"",
    "question_en": "How many school teams are nicknamed \"Bulldogs\".",
    "question_th": "มีทีมโรงเรียนกี่ทีมที่มีชื่อเล่นว่า \"บูลด็อก\"",
    "context": "CREATE TABLE table_26351260_1 (location VARCHAR, team_nickname VARCHAR)"
  },
  {
    "answer": "SELECT total FROM table_26375386_17 WHERE public = 4",
    "question_en": "If the public is 4, what is the total?",
    "question_th": "ถ้าประชาชนมี 4 คน ยอดรวมเป็นเท่าไร?",
    "context": "CREATE TABLE table_26375386_17 (total VARCHAR, public VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(result) FROM table_26375386_17 WHERE vote_percentage = \"3.1%\"",
    "question_en": "How many results where given for the vote percentage 3.1%?",
    "question_th": "มีกี่ผลลัพธ์ที่ให้เปอร์เซ็นต์การโหวต 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_en": "What couple had a vote percentage of 5.2%?",
    "question_th": "คู่รักคนไหนมีคะแนนโหวต 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_en": "What was the vote % of Heather and Matt?",
    "question_th": "เปอร์เซ็นต์การโหวตของ Heather และ Matt เป็นเท่าใด",
    "context": "CREATE TABLE table_26375386_18 (vote_percentage VARCHAR, couple VARCHAR)"
  },
  {
    "answer": "SELECT couple FROM table_26375386_18 WHERE result = \"Bottom two\"",
    "question_en": "Who was the couple on the bottom two?",
    "question_th": "คู่บนสองคนล่างคือใคร?",
    "context": "CREATE TABLE table_26375386_18 (couple VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT MAX(public) FROM table_26375386_18 WHERE couple = \"Danniella and Matthew\"",
    "question_en": "WHat was the max public with danniella and matthew?",
    "question_th": "สาธารณะสูงสุดกับ danniella และ 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_en": "If the overall viewers were 1.83 millions, what was the overall market share?",
    "question_th": "ถ้าคนดูรวม 1.83 ล้านคน ส่วนแบ่งตลาดโดยรวมเป็นเท่าไหร่?",
    "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_en": "If the episode was number 234, what was it's timeslot?",
    "question_th": "ถ้าเป็นตอนที่ 234 จะเป็นช่วงไหนคะ?",
    "context": "CREATE TABLE table_2639433_4 (timeslot VARCHAR, episodes VARCHAR)"
  },
  {
    "answer": "SELECT episodes FROM table_2639433_4 WHERE year = 2007",
    "question_en": "What episode came out in the year 2007?",
    "question_th": "เมื่อปี พ.ศ. 2550 มีภาคอะไรออกมาบ้าง?",
    "context": "CREATE TABLE table_2639433_4 (episodes VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT timeslot FROM table_2639433_4 WHERE year = 2008",
    "question_en": "What was the timeslot for the episode in the year 2008?",
    "question_th": "ช่วงเวลาใดของตอนในปี 2551?",
    "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_en": "How many times was the viewer target group 0.63?",
    "question_th": "กลุ่มเป้าหมายคนดู 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_en": "Name the role for pick number 17",
    "question_th": "ตั้งชื่อบทบาทสำหรับการเลือกหมายเลข 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_en": "Name the brand for pick number 15",
    "question_th": "ตั้งชื่อแบรนด์สำหรับเลือกหมายเลข 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_en": "Name the employee real name for raw and superstar",
    "question_th": "ตั้งชื่อชื่อจริงของพนักงาน ดิบ และ ซุปเปอร์สตาร์",
    "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_en": "What smallest amount in the weeks at peak column?",
    "question_th": "จำนวนเงินที่น้อยที่สุดในรอบสัปดาห์ที่คอลัมน์สูงสุดคือเท่าใด",
    "context": "CREATE TABLE table_26399982_2 (weeks_at_peak INTEGER)"
  },
  {
    "answer": "SELECT series FROM table_26400438_1 WHERE team = \"Lecor Sports\"",
    "question_en": "In which series did Lecor Sports participate?",
    "question_th": "Lecor Sports เข้าร่วมในซีรีส์ใด",
    "context": "CREATE TABLE table_26400438_1 (series VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(f_laps) FROM table_26400438_1 WHERE poles = 12",
    "question_en": "How many times did he hold 12 poles?",
    "question_th": "เขาถือ 12 เสากี่ครั้ง?",
    "context": "CREATE TABLE table_26400438_1 (f_laps VARCHAR, poles VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(races) FROM table_26400438_1 WHERE podiums = 8",
    "question_en": "In how many races did he have 8 podium finishes?",
    "question_th": "เขาได้ขึ้นโพเดียม 8 ครั้งในการแข่งขันทั้งหมดกี่รายการ?",
    "context": "CREATE TABLE table_26400438_1 (races VARCHAR, podiums VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(podiums) FROM table_26400438_1 WHERE team = \"Carlin\"",
    "question_en": "how many seasons  did he race in team Carlin?",
    "question_th": "เขาลงแข่งในทีมคาร์ลินกี่ฤดูกาล?",
    "context": "CREATE TABLE table_26400438_1 (podiums VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(place) FROM table_26427332_17 WHERE contestant = \"Jacqueline Kohl\"",
    "question_en": "How many entries are in the ranking for jacqueline kohl?",
    "question_th": "มีกี่รายการที่อยู่ในการจัดอันดับสำหรับ 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_en": "what measurement does the contestant from sindelfingen have?",
    "question_th": "ผู้เข้าแข่งขันจากซินเดลฟิงเกนมีการวัดเท่าไร?",
    "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_en": "for how many federal states is the city of lahnstein listed in the ranking?",
    "question_th": "เมืองลาห์นสไตน์มีสหพันธรัฐกี่แห่งที่อยู่ในการจัดอันดับ",
    "context": "CREATE TABLE table_26427332_17 (federal_state VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT contestant FROM table_26427332_17 WHERE city = \"Hanover\"",
    "question_en": "who are the participants from hanover?",
    "question_th": "ผู้เข้าร่วมจากฮันโนเวอร์คือใคร?",
    "context": "CREATE TABLE table_26427332_17 (contestant VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT MAX(district) FROM table_26416704_2 WHERE incumbent = \"Brian W. Thomas\"",
    "question_en": "What is the highest numbred district that has brian w. thomas as an incumbent?",
    "question_th": "เขตใดที่มีเลขสูงสุดที่มี brian w. โทมัสเป็นผู้ดำรงตำแหน่ง?",
    "context": "CREATE TABLE table_26416704_2 (district INTEGER, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_26416704_2 WHERE incumbent = \"Margaret Kaiser\"",
    "question_en": "What was the status of the election featuring incumbent margaret kaiser?",
    "question_th": "สถานะของการเลือกตั้งที่มีมาร์กาเร็ต ไกเซอร์ ผู้ดำรงตำแหน่งอยู่เป็นอย่างไร",
    "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_en": "How many episodes were directed by Arlene Sanford?",
    "question_th": "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_en": "What was the title of the episode with a production code of 2010?",
    "question_th": "ชื่อเรื่องของตอนที่มีรหัสการผลิตปี 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_en": "How many production codes had a US viewership of 4.43 million?",
    "question_th": "รหัสการผลิตจำนวนเท่าใดที่มีผู้ชมในสหรัฐฯ 4.43 ล้านคน",
    "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_en": "How many times is the opponents in the final is beti sekulovski cindy watson?",
    "question_th": "คู่ต่อสู้ในรอบชิงชนะเลิศคือเบติ เซคูลอฟสกี้ ซินดี้ วัตสันกี่ครั้ง?",
    "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_en": "Who is the partner when the opponents in the final is stephanie dubois olga savchuk?",
    "question_th": "คู่ต่อสู้คือใครเมื่อคู่ต่อสู้ในรอบชิงชนะเลิศคือ สเตฟานี ดูบัวส์ โอลกา เซฟชุค?",
    "context": "CREATE TABLE table_26458137_2 (partner VARCHAR, opponents_in_the_final VARCHAR)"
  },
  {
    "answer": "SELECT artist FROM table_26485957_1 WHERE result = \"4\"",
    "question_en": "Which artist had a result of 4?",
    "question_th": "ศิลปินคนไหนมีผล 4?",
    "context": "CREATE TABLE table_26485957_1 (artist VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT MIN(judging_panel_points) FROM table_26485957_1",
    "question_en": "What is the minimum score given in judging panel points?",
    "question_th": "คะแนนขั้นต่ำที่ได้รับจากคะแนนของคณะกรรมการตัดสินคือเท่าไร?",
    "context": "CREATE TABLE table_26485957_1 (judging_panel_points INTEGER)"
  },
  {
    "answer": "SELECT move_only FROM table_26538035_1 WHERE developer = \"AiLive\"",
    "question_en": "For the game whose developer was Ailive, is it a Move-only release?",
    "question_th": "สำหรับเกมที่ผู้พัฒนาคือ Ailive มันเป็นรุ่น Move-only หรือไม่?",
    "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_en": "How many titles/sources have a developer of Clover Studio?",
    "question_th": "มีผู้พัฒนา 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_en": "What is the title and source for the game developed by Hydravision Entertainment?",
    "question_th": "ชื่อและแหล่งที่มาของเกมที่พัฒนาโดย 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_en": "What is the series # on airdate September 21, 2002?",
    "question_th": "ซีรีย์ # ออกอากาศวันที่ 21 กันยายน 2545 คืออะไร?",
    "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_en": "what was the name of episode 5?",
    "question_th": "ตอนที่ 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_en": "when did 14.55 people watch?",
    "question_th": "14.55คนดูเมื่อไหร่?",
    "context": "CREATE TABLE table_26565917_2 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR)"
  },
  {
    "answer": "SELECT MIN(top_10) FROM table_26609690_1",
    "question_en": "What is the smallest top 10 figure?",
    "question_th": "ตัวเลข 10 อันดับแรกที่เล็กที่สุดคืออะไร?",
    "context": "CREATE TABLE table_26609690_1 (top_10 INTEGER)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_26609690_1",
    "question_en": "What is the earliest year on the chart?",
    "question_th": "ปีแรกสุดบนแผนภูมิคือปีใด?",
    "context": "CREATE TABLE table_26609690_1 (year INTEGER)"
  },
  {
    "answer": "SELECT team_s_ FROM table_26609690_1 WHERE winnings = \"$15,785\"",
    "question_en": "Which team had $15,785 in winnings?",
    "question_th": "ทีมใดมีเงินรางวัล 15,785 ดอลลาร์?",
    "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_en": "How many positions are there for RB1 Motorsports?",
    "question_th": "RB1 Motorsports มีกี่ตำแหน่ง?",
    "context": "CREATE TABLE table_26609690_1 (position VARCHAR, team_s_ VARCHAR)"
  },
  {
    "answer": "SELECT MAX(wins) FROM table_26609690_1",
    "question_en": "What is the highest number of wins?",
    "question_th": "จำนวนชัยชนะสูงสุดคือเท่าไร?",
    "context": "CREATE TABLE table_26609690_1 (wins INTEGER)"
  },
  {
    "answer": "SELECT team AS captain FROM table_26593762_2 WHERE team = \"Cardiff City\"",
    "question_en": "Who is the captain of Cardiff City?",
    "question_th": "ใครคือกัปตันทีมคาร์ดิฟฟ์ซิตี้?",
    "context": "CREATE TABLE table_26593762_2 (team VARCHAR)"
  },
  {
    "answer": "SELECT team AS captain FROM table_26593762_2 WHERE manager = \"Neil Warnock\"",
    "question_en": "Who is the captain of Neil Warnock's team?",
    "question_th": "ใครคือกัปตันทีมของนีล วอร์น็อค?",
    "context": "CREATE TABLE table_26593762_2 (team VARCHAR, manager VARCHAR)"
  },
  {
    "answer": "SELECT team AS captain FROM table_26593762_2 WHERE manager = \"Dave Jones\"",
    "question_en": "Who is the captain of Dave Jones' team?",
    "question_th": "ใครคือกัปตันทีมเดฟ โจนส์?",
    "context": "CREATE TABLE table_26593762_2 (team VARCHAR, manager VARCHAR)"
  },
  {
    "answer": "SELECT chairman FROM table_26593762_2 WHERE manager = \"Mark Robins\"",
    "question_en": "Who is the chairman of Mark Robins team?",
    "question_th": "ใครเป็นประธานทีมมาร์ค โรบินส์?",
    "context": "CREATE TABLE table_26593762_2 (chairman VARCHAR, manager VARCHAR)"
  },
  {
    "answer": "SELECT release_date___xbox360__ FROM table_26631526_1 WHERE artist = \"Sea Wolf\"",
    "question_en": "Name the release date xbox 360 for sea wolf",
    "question_th": "ตั้งชื่อวันวางจำหน่าย xbox 360 สำหรับหมาป่าทะเล",
    "context": "CREATE TABLE table_26631526_1 (release_date___xbox360__ VARCHAR, artist VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_2668243_20 WHERE incumbent = \"Richard Coulter\"",
    "question_en": " What party was represented by incumbent Richard Coulter ? ",
    "question_th": " ริชาร์ด โคลเตอร์ ผู้ดำรงตำแหน่งผู้แทนจากพรรคใด",
    "context": "CREATE TABLE table_2668243_20 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_2668243_8 WHERE incumbent = \"Henry Daniel\"",
    "question_en": "What was the result for Henry Daniel's race?",
    "question_th": "ผลลัพธ์ของการแข่งขันของ Henry Daniel คืออะไร?",
    "context": "CREATE TABLE table_2668243_8 (result VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT first_elected FROM table_2668243_8 WHERE incumbent = \"Henry Daniel\"",
    "question_en": "When was Henry Daniel first elected?",
    "question_th": "Henry Daniel ได้รับเลือกครั้งแรกเมื่อใด",
    "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_en": "How many first elected years are provided for Thomas P. Moore?",
    "question_th": "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_en": "What district is Joseph Lecompte in office in?",
    "question_th": "Joseph Lecompte ดำรงตำแหน่งในเขตใด",
    "context": "CREATE TABLE table_2668243_8 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_2668264_22 WHERE incumbent = \"Joel R. Poinsett\"",
    "question_en": "What party does joel r. poinsett represent?",
    "question_th": "joel r. ฝ่ายไหนทำ พอยน์เซตเป็นตัวแทน?",
    "context": "CREATE TABLE table_2668264_22 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT first_elected FROM table_2668264_22 WHERE incumbent = \"Andrew R. Govan\"",
    "question_en": "What was the first elected year that featured incumbent andrew r. govan?",
    "question_th": "ปีแรกที่ได้รับการเลือกตั้งซึ่งมีผู้ดำรงตำแหน่งคือแอนดรูว์ อาร์. โกแวน?",
    "context": "CREATE TABLE table_2668264_22 (first_elected VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_2668336_17 WHERE incumbent = \"Charles Fisher\"",
    "question_en": "In what district is the incumbent Charles Fisher?",
    "question_th": "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_en": "First elected in 1807 1817 in what district?",
    "question_th": "ได้รับการเลือกตั้งครั้งแรกเมื่อ พ.ศ. 2350 พ.ศ. 2360 ในเขตใด?",
    "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_en": "The candidates Charles Fisher (DR) 65.1% W. Jones (F) 34.9% is for what incumbent?",
    "question_th": "ผู้สมัคร Charles Fisher (DR) 65.1% W. Jones (F) 34.9% ดำรงตำแหน่งอะไร?",
    "context": "CREATE TABLE table_2668336_17 (incumbent VARCHAR, candidates VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_2668336_17 WHERE district = \"North Carolina 10\"",
    "question_en": "In district North Carolina 10, what are the candidates?",
    "question_th": "ในเขต North Carolina 10 มีผู้สมัครอะไรบ้าง?",
    "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_en": "Candiates Charles Fisher (DR) 65.1% W. Jones (F) 34.9% had what result?",
    "question_th": "ผู้สมัคร ชาลส์ ฟิชเชอร์ (DR) 65.1% ดับเบิลยู โจนส์ (F) 34.9% มีผลอะไรบ้าง?",
    "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_en": "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?",
    "question_th": "ใครคือผู้ดำรงตำแหน่งในการเลือกตั้งที่มีจอห์น เมอร์เรย์ (ดร.) 50.4% จอร์จ เดนิสัน (ดร.) 49.6% ซึ่งเป็นผลมาจากการยึดถือประชาธิปไตย-รีพับลิกันที่เกษียณแล้ว?",
    "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_en": "Who were the incumbent(s) when the result was a retired democratic-republican hold and the first elected representative was in 1816>",
    "question_th": "ใครเป็นผู้ดำรงตำแหน่งเมื่อผลลัพธ์คือการยึดอำนาจประชาธิปไตย-รีพับลิกันที่เกษียณแล้ว และผู้แทนที่ได้รับเลือกคนแรกคือในปี พ.ศ. 2359>",
    "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_en": "Who were the candidates in the election where william wilson was the incumbent?",
    "question_th": "ใครคือผู้สมัครในการเลือกตั้งโดยวิลเลียม วิลสัน ดำรงตำแหน่ง?",
    "context": "CREATE TABLE table_2668336_19 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_2668352_14 WHERE district = \"Pennsylvania 8\"",
    "question_en": "Name the result for pennsylvania 8",
    "question_th": "ตั้งชื่อผลลัพธ์สำหรับเพนซิลเวเนีย 8",
    "context": "CREATE TABLE table_2668352_14 (result VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_2668352_14 WHERE first_elected = \"1810\"",
    "question_en": "Name the result for 1810",
    "question_th": "ตั้งชื่อผลลัพธ์สำหรับ 1810",
    "context": "CREATE TABLE table_2668352_14 (result VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_2668352_14 WHERE incumbent = \"Hugh Glasgow\"",
    "question_en": "Name the district for hugh glasgow",
    "question_th": "ตั้งชื่อเขตสำหรับฮิวจ์ กลาสโกว์",
    "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_en": "Name the incumbent for lost re-election democratic-republican hold",
    "question_th": "ระบุชื่อผู้ดำรงตำแหน่งที่แพ้การเลือกตั้งใหม่ตามระบอบประชาธิปไตย-รีพับลิกัน",
    "context": "CREATE TABLE table_2668352_14 (incumbent VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_2668352_14 WHERE first_elected = \"1810\"",
    "question_en": "Name the district for first elected 1810",
    "question_th": "ตั้งชื่อเขตสำหรับการเลือกตั้งครั้งแรก พ.ศ. 2353",
    "context": "CREATE TABLE table_2668352_14 (district VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_2668352_19 WHERE incumbent = \"James Pleasants\"",
    "question_en": "What party does James Pleasants belong to?",
    "question_th": "James Pleasants อยู่ในพรรคใด?",
    "context": "CREATE TABLE table_2668352_19 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT first_elected FROM table_2668374_11 WHERE incumbent = \"William Kennedy\"",
    "question_en": "When was William Kennedy first elected?",
    "question_th": "William Kennedy ได้รับเลือกครั้งแรกเมื่อใด",
    "context": "CREATE TABLE table_2668374_11 (first_elected VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_2668378_13 WHERE incumbent = \"William Hoge\"",
    "question_en": "what was the section where the winner is william hoge",
    "question_th": "หมวดไหนที่ผู้ชนะคือวิลเลียม โฮจ",
    "context": "CREATE TABLE table_2668378_13 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_2668378_13 WHERE incumbent = \"Daniel Montgomery\"",
    "question_en": "who was running where the winner is daniel montgomery",
    "question_th": "ซึ่งลงสมัครโดยผู้ชนะคือ แดเนียล มอนโกเมอรี่",
    "context": "CREATE TABLE table_2668378_13 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_2668378_13 WHERE district = \"Pennsylvania 5\"",
    "question_en": "who was running in the section pennsylvania 5",
    "question_th": "ซึ่งกำลังวิ่งอยู่ในภาคเพนซิลเวเนีย 5",
    "context": "CREATE TABLE table_2668378_13 (candidates VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_2668378_18 WHERE first_elected = \"1807\"",
    "question_en": "Who was the incumbent in the district that first elected someone in 1807?",
    "question_th": "ใครคือผู้ดำรงตำแหน่งในเขตที่ได้รับเลือกคนแรกในปี พ.ศ. 2350?",
    "context": "CREATE TABLE table_2668378_18 (incumbent VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT first_elected FROM table_2668378_18 WHERE incumbent = \"John Smith\"",
    "question_en": "When was someone first elected in the district with incumbent john smith?",
    "question_th": "มีคนได้รับเลือกครั้งแรกในเขตร่วมกับผู้ดำรงตำแหน่งจอห์น สมิธเมื่อใด",
    "context": "CREATE TABLE table_2668378_18 (first_elected VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_2668378_18 WHERE incumbent = \"Matthew Clay\"",
    "question_en": "What party represents the district with incumbent matthew clay?",
    "question_th": "พรรคใดเป็นตัวแทนของเขตที่มีผู้ดำรงตำแหน่งแมทธิวเคลย์?",
    "context": "CREATE TABLE table_2668378_18 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_2668378_18 WHERE incumbent = \"John G. Jackson\"",
    "question_en": "What party represents the district with john g. jackson?",
    "question_th": "พรรคไหนเป็นตัวแทนเขตกับจอห์น ก. แจ็คสัน?",
    "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_en": "How many times was the incumbent john dawson redistricted from the 15th district?",
    "question_th": "จอห์น ดอว์สัน ผู้ดำรงตำแหน่งเดิมถูกจำกัดเขตจากเขตที่ 15 กี่ครั้งแล้ว",
    "context": "CREATE TABLE table_2668393_18 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_2668393_18 WHERE candidates = \"Edwin Gray (DR)\"",
    "question_en": "What is the party for the candidates edwin gray (dr)?",
    "question_th": "พรรคสำหรับผู้สมัคร เอ็ดวิน เกรย์ (dr) เป็นอย่างไร?",
    "context": "CREATE TABLE table_2668393_18 (party VARCHAR, candidates VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_2668393_18 WHERE district = \"Virginia 11\"",
    "question_en": "What is the result in the virginia 11 district?",
    "question_th": "ผลเขตเวอร์จิเนีย 11 เป็นอย่างไร?",
    "context": "CREATE TABLE table_2668393_18 (result VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_2668393_18 WHERE candidates = \"Edwin Gray (DR)\"",
    "question_en": "What is the district with the candidates edwin gray (dr)?",
    "question_th": "เอ็ดวิน เกรย์ (ดร.) มีผู้สมัครเขตไหน?",
    "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_en": "How many incumbents were first elected in 1797 with the candidates abram trigg (dr)?",
    "question_th": "มีผู้ดำรงตำแหน่งกี่คนที่ได้รับเลือกครั้งแรกในปี พ.ศ. 2340 โดยมีผู้สมัครชื่อ 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_en": "What is the production code when the u.s. viewers (million) is 11.76?",
    "question_th": "รหัสการผลิตเมื่อผู้ชมสหรัฐ (ล้าน) คือ 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_en": "What was the u.s. viewers (millions) when the production code was 4alh19?",
    "question_th": "ผู้ชมสหรัฐ (ล้าน) คืออะไรเมื่อรหัสการผลิตคือ 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_en": "What is the operator name when the distance is 3105km?",
    "question_th": "เมื่อระยะทาง 3105 กม. ชื่อโอเปอเรเตอร์คืออะไร?",
    "context": "CREATE TABLE table_26745820_1 (operator_name VARCHAR, distance VARCHAR)"
  },
  {
    "answer": "SELECT no FROM table_26745820_1 WHERE distance = \"4168km\"",
    "question_en": "what is the no when the distance is 4168km?",
    "question_th": "หมายเลขอะไรเมื่อระยะทางคือ 4168 กม.?",
    "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_en": "How many people wrote the episode with 3.40 million U.S viewers?",
    "question_th": "มีกี่คนที่เขียนตอนนี้โดยมีผู้ชม 3.40 ล้านคนในสหรัฐฯ?",
    "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_en": "How many MotoGP winners were there when the circuit was Catalunya?",
    "question_th": "มีผู้ชนะ MotoGP กี่คนในสนามที่ 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_en": "Who are all the Moto2 winners when the grand prix was Shell Advance Malaysian Grand Prix?",
    "question_th": "ใครคือผู้ชนะ Moto2 ทั้งหมดเมื่อการแข่งขันกรังด์ปรีซ์คือ 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_en": "Who are all the motogp winners when the circuit was Catalunya?",
    "question_th": "ใครคือผู้ชนะ motogp ทั้งหมดเมื่อวงจรคือ Catalunya?",
    "context": "CREATE TABLE table_26781017_1 (motogp_winner VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT area__km²___per_sqmi_ FROM table_26769_1 WHERE country_or_territory_with_flag = \"Colombia\"",
    "question_en": "What was the area (km²) (per sqmi) of the country Colombia?",
    "question_th": "พื้นที่ (กม. ²) (ต่อตารางไมล์) ของประเทศโคลอมเบียคือเท่าใด",
    "context": "CREATE TABLE table_26769_1 (area__km²___per_sqmi_ VARCHAR, country_or_territory_with_flag VARCHAR)"
  },
  {
    "answer": "SELECT MAX(population__july_2009_est_) FROM table_26769_1 WHERE capital = \"Quito\"",
    "question_en": "What was the maximum population of the country with Quito as capital?",
    "question_th": "จำนวนประชากรสูงสุดของประเทศที่มีกีโตเป็นเมืองหลวงคือเท่าใด",
    "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² = \"14.3/km² (/sqmi)\"",
    "question_en": "What was the population of a country with a population density of 14.3/km² (/sqmi)?",
    "question_th": "ประชากรของประเทศที่มีความหนาแน่นของประชากร 14.3/ตร.กม. (/ตร.ม.) คือเท่าใด",
    "context": "CREATE TABLE table_26769_1 (population__july_2009_est_ VARCHAR, population_density_per_km² VARCHAR)"
  },
  {
    "answer": "SELECT area__km²___per_sqmi_ FROM table_26769_1 WHERE population_density_per_km² = \"8.4/km² (/sqmi)\"",
    "question_en": "What was the area (km²) (per sqmi) of a country with a population density per km² of 8.4/km² (/sqmi)?",
    "question_th": "พื้นที่ (กม. ²) (ต่อ ตร.ม. ) ของประเทศที่มีความหนาแน่นของประชากรต่อก.ม. เท่ากับ 8.4/กม. ² (/ ตร.ม.) คือเท่าใด",
    "context": "CREATE TABLE table_26769_1 (area__km²___per_sqmi_ VARCHAR, population_density_per_km² VARCHAR)"
  },
  {
    "answer": "SELECT country_or_territory_with_flag FROM table_26769_1 WHERE population_density_per_km² = \"3.5/km² (/sqmi)\"",
    "question_en": "What was the country with a population density per km² of 3.5/km² (/sqmi)?",
    "question_th": "ประเทศใดที่มีความหนาแน่นของประชากรต่อตารางกิโลเมตรที่ 3.5/ตารางกิโลเมตร (/ตารางเมตร)",
    "context": "CREATE TABLE table_26769_1 (country_or_territory_with_flag VARCHAR, population_density_per_km² VARCHAR)"
  },
  {
    "answer": "SELECT capital FROM table_26769_1 WHERE population_density_per_km² = \"15.6/km² (/sqmi)\"",
    "question_en": "What is the capital of the country with a population density per km² of 15.6/km² (/sqmi)?",
    "question_th": "เมืองหลวงของประเทศใดคือเมืองใดที่มีความหนาแน่นของประชากรต่อตารางกิโลเมตรที่ 15.6/ตารางกิโลเมตร (/ตารางเมตร)",
    "context": "CREATE TABLE table_26769_1 (capital VARCHAR, population_density_per_km² VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_2679061_6 WHERE pick__number = 103",
    "question_en": "what is the position for pick # 103?",
    "question_th": "ตำแหน่งที่เลือก # 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_en": "What is the pick # for nhl team vancouver canucks?",
    "question_th": "ตัวเลือก # สำหรับทีม nhl 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_en": "What is the nationality of the player kevin stevens?",
    "question_th": "นักเตะเควิน สตีเวนส์ มีสัญชาติอะไร?",
    "context": "CREATE TABLE table_2679061_6 (nationality VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(pick__number) FROM table_2679061_6 WHERE player = \"Don Barber\"",
    "question_en": "What is the highest pick number for player don barber?",
    "question_th": "หมายเลขเลือกสูงสุดสำหรับผู้เล่น 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_en": "What is the college/junior/club team for player don barber?",
    "question_th": "ทีมวิทยาลัย/จูเนียร์/สโมสรสำหรับผู้เล่น 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_en": "What is the nhl team for the position centre and nationality united states?",
    "question_th": "ทีม nhl สำหรับศูนย์ตำแหน่งและสัญชาติสหรัฐอเมริกาคืออะไร?",
    "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_en": "What country do the Winnipeg Jets come from?",
    "question_th": "เครื่องบิน Winnipeg Jets มาจากประเทศใด",
    "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_en": "How many teams got pick number 130?",
    "question_th": "มีกี่ทีมที่ได้รับเลือกหมายเลข 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_en": "Where are the Buffalo Sabres from?",
    "question_th": "กระบี่ควายมาจากไหน?",
    "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_en": "When harvey laidman is the director what is the season number?",
    "question_th": "เมื่อฮาร์วีย์ เลดแมนเป็นผู้กำกับ ซีซั่นอะไรคะ?",
    "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_en": "When 3.89 is the production code how many season numbers are there?",
    "question_th": "เมื่อรหัสการผลิต 3.89 มีเลขซีซั่นทั้งหมดกี่หมายเลข?",
    "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_en": "How many episodes is episode number 4 in the series?",
    "question_th": "ซีรีส์ตอนที่ 4 มีกี่ตอนคะ?",
    "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_en": "How many million viewers watched episode 3 in the series?",
    "question_th": "มีผู้ชมดูตอนที่ 3 ในซีรีส์กี่ล้านคน?",
    "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_en": "What is the maximum home attendance if the average is 11,322?",
    "question_th": "การเข้าบ้านสูงสุดคือเท่าใดหากค่าเฉลี่ยคือ 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_en": "What is title numer 103's rank for weekly rank sky1?",
    "question_th": "อันดับของตำแหน่งหมายเลข 103 สำหรับอันดับรายสัปดาห์ 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_en": "What was the rank by Weekly Rank Sky1 for title number 97?",
    "question_th": "อันดับรายสัปดาห์ Sky1 สำหรับตำแหน่งหมายเลข 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_en": "What was the weekly rank by Virgin media for the title aired on May 20, 2010?",
    "question_th": "อันดับรายสัปดาห์ของ Virgin Media สำหรับรายการที่ออกอากาศเมื่อวันที่ 20 พฤษภาคม พ.ศ. 2553 คือเท่าใด",
    "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_en": "A what time was the title aired in October 22, 2009",
    "question_th": "หัวข้อนี้ออกอากาศเมื่อใดในวันที่ 22 ตุลาคม พ.ศ. 2552",
    "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_en": "What is the hand number of the hand where player 1 is south and the east wind is prevailing?",
    "question_th": "เลขมือของมือที่ผู้เล่น 1 อยู่ทางใต้และลมตะวันออกเป็นเลขอะไร?",
    "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_en": "What is player 1 when player 3 is South and the prevailing wind is South?",
    "question_th": "ผู้เล่น 1 จะเป็นอย่างไรเมื่อผู้เล่น 3 อยู่ทางใต้และลมที่พัดอยู่ทางใต้?",
    "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_en": "Who directed the episode that had 0.54 million U.S. viewers? ",
    "question_th": " ใครเป็นผู้กำกับตอนที่มีผู้ชม 0.54 ล้านคนในสหรัฐฯ?",
    "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_en": "Who wrote the teleplay for the episode directed by Tim Robbins? ",
    "question_th": " ใครเป็นคนเขียนบทโทรทัศน์สำหรับตอนที่กำกับโดย 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_en": "Who directed the episode that had 0.57 million U.S. viewers? ",
    "question_th": " ใครเป็นผู้กำกับตอนที่มีผู้ชม 0.57 ล้านคนในสหรัฐฯ?",
    "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_en": "What number episode in the season was watched by 0.49 million U.S. viewers? ",
    "question_th": " ผู้ชมชาวอเมริกันจำนวน 0.49 ล้านคนรับชมตอนใดในฤดูกาลนี้",
    "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_en": "How many times is the series italian and the circuit is valencia?",
    "question_th": "ซีรีส์อิตาลีกี่ครั้งแล้วเซอร์กิตคือวาเลนเซีย?",
    "context": "CREATE TABLE table_26920192_5 (round VARCHAR, series VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT fastest_lap FROM table_26920192_5 WHERE circuit = \"Magione\"",
    "question_en": "Who had the fastest lap for the circuit magione?",
    "question_th": "ใครมีรอบที่เร็วที่สุดสำหรับ 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_en": "Who had the fastest lap when the winning driver is giorgio sanna?",
    "question_th": "ใครมีรอบเร็วที่สุดเมื่อนักแข่งที่ชนะคือจอร์จิโอ ซานนา?",
    "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_en": "Who had the fastest lap when the winning driver was kristian ghedina?",
    "question_th": "ใครมีรอบเร็วที่สุดเมื่อนักแข่งที่ชนะคือคริสเตียน เกดินา?",
    "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_en": "What is the title of the episode directed by Romeo Tirone?",
    "question_th": "ตอนที่กำกับโดย 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_en": "When did the episode written by Abe Sylvia originally air?",
    "question_th": "ตอนที่เขียนโดย Abe Sylvia ออกอากาศครั้งแรกเมื่อใด",
    "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_en": "Which episode number had a viewership of 0.56 million?",
    "question_th": "เลขตอนไหนมีผู้ชม 0.56 ล้านคน?",
    "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_en": "Who was the writer in the episode directed by Jesse Peretz?",
    "question_th": "ใครคือผู้เขียนบทในตอนนี้ที่กำกับโดย 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_en": "With the Royal Navy as Combatants B, what was the result?",
    "question_th": "โดยมีราชนาวีเป็นหน่วยรบ B ผลลัพธ์เป็นอย่างไร",
    "context": "CREATE TABLE table_26977890_1 (result VARCHAR, combatants_b VARCHAR)"
  },
  {
    "answer": "SELECT conflict FROM table_26977890_1 WHERE combatants_b = \"Italian Navy\"",
    "question_en": "In what conflicts was the Italian Navy Combatants B?",
    "question_th": "กองรบกองทัพเรืออิตาลี 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_en": "How many battles resulted in Battle of the Yellow Sea?",
    "question_th": "ศึกทะเลเหลืองมีการรบกี่ครั้ง?",
    "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_en": "What is Paul Coward 492cc nourish Weslake's lowest rank?",
    "question_th": "Paul Coward 492cc บำรุงอันดับต่ำสุดของ Weslake คืออะไร?",
    "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_en": "What was the time on Monday August 23rd for Steve Linsdell 499cc royal enfield seeley?",
    "question_th": "วันจันทร์ที่ 23 สิงหาคมเวลาเท่าไหร่สำหรับ 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_en": "Does the model e5504 have a turbo boost?",
    "question_th": "รุ่น e5504 มีเทอร์โบบูสมั้ย?",
    "context": "CREATE TABLE table_269920_17 (turbo_boost VARCHAR, model VARCHAR)"
  },
  {
    "answer": "SELECT speed__ghz_ FROM table_269920_17 WHERE model = \"X5560\"",
    "question_en": "What is the speed of model x5560?",
    "question_th": "ความเร็วของรุ่น 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_en": "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?",
    "question_th": "แคช L3 สูงสุดของโปรเซสเซอร์ที่มีความเร็ว 2.00 GHZ คืออะไร มีความเร็ว QPI 4.8 gt/s และเป็นรุ่น 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_en": "How many models numbered L5506 have a QPI speed?",
    "question_th": "หมายเลขรุ่น L5506 มีความเร็ว QPI กี่รุ่น?",
    "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_en": "What was game 3 when there were under 2.61m viewers?",
    "question_th": "เกมที่ 3 คืออะไรเมื่อมีผู้ชมต่ำกว่า 2.61 ล้านคน",
    "context": "CREATE TABLE table_27039190_3 (game_3 VARCHAR, viewers VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(episode) FROM table_27039190_3 WHERE viewers = \"4.44m\"",
    "question_en": "How many episodes had 4.44m viewers?",
    "question_th": "มีกี่ตอนที่มีผู้ชม 4.44 ล้านคน?",
    "context": "CREATE TABLE table_27039190_3 (episode VARCHAR, viewers VARCHAR)"
  },
  {
    "answer": "SELECT committee FROM table_27050981_7 WHERE district = \"46\"",
    "question_en": "What committees do the district 46 members serve on?",
    "question_th": "สมาชิกภาค 46 ทำหน้าที่ในคณะกรรมการอะไรบ้าง?",
    "context": "CREATE TABLE table_27050981_7 (committee VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT MIN(league_apps) FROM table_27086613_5 WHERE total_apps = 5",
    "question_en": "Name the least league apps for total apps of 5 ",
    "question_th": " ตั้งชื่อแอปลีกที่น้อยที่สุดสำหรับแอปทั้งหมด 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_en": "Name the least fa cup goals with fa cup apps being 2 and fw ",
    "question_th": " ตั้งชื่อเป้าหมายเอฟเอคัพที่น้อยที่สุดโดยแอปเอฟเอคัพคือ 2 และ f",
    "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_en": "Name the total apps for league apps being 4",
    "question_th": "ตั้งชื่อแอปทั้งหมดสำหรับแอปลีกเป็น 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_en": "Please mention those appointment dates those are replaced by alfredo aglietti",
    "question_th": "โปรดระบุวันที่นัดหมายที่ถูกแทนที่ด้วยอัลเฟรโด อาเกลียตติ",
    "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_en": "Mention all the applicable team who are replaced by gianluca atzori",
    "question_th": "พูดถึงทีมที่เกี่ยวข้องทั้งหมดที่จานลูก้า อัทโซริเข้ามาแทนที่",
    "context": "CREATE TABLE table_27114708_2 (team VARCHAR, replaced_by VARCHAR)"
  },
  {
    "answer": "SELECT outgoing_manager FROM table_27114708_2 WHERE team = \"Reggina\"",
    "question_en": "For team reggina please mention all the outgoing manager ",
    "question_th": " สำหรับทีมเรจจิน่า โปรดระบุผู้จัดการทีมที่จะลาออกทั้งหมด",
    "context": "CREATE TABLE table_27114708_2 (outgoing_manager VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT date_of_appointment FROM table_27114708_2 WHERE team = \"Ascoli\"",
    "question_en": "For team ascoli please mention all the appointment date.",
    "question_th": "สำหรับทีมแอสโคลี โปรดระบุวันที่นัดหมายทั้งหมด",
    "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_en": "For outgoing manager is alberto malesani mention all the applicable replaced by person",
    "question_th": "สำหรับผู้จัดการทีมที่จะลาออก อัลแบร์โต มาเลซานี กล่าวถึงผู้ที่เกี่ยวข้องทั้งหมดที่ถูกแทนที่โดยบุคคล",
    "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_en": "For livorno team mention all the manner of departure",
    "question_th": "สำหรับทีมลิวอร์โน่กล่าวถึงทุกลักษณะการจากไป",
    "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_en": "Phil Klemmer wrote all titles and production code is 3t6455. ",
    "question_th": " Phil Klemmer เขียนชื่อทั้งหมดและรหัสการผลิตคือ 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_en": "Season 9 all the titles were no. in series.",
    "question_th": "ซีซั่น 9 ไม่มีชื่อทั้งหมด ในซีรีส์.",
    "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_en": "Title is the total number where u.s. viewers (million) is 7.56.",
    "question_th": "ชื่อคือจำนวนผู้ชมทั้งหมด (ล้านคน) เท่ากับ 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_en": "How many items appear in the written by column in episode 3?",
    "question_th": "มีกี่รายการที่ปรากฏในคอลัมน์ที่เขียนโดยคอลัมน์ในตอนที่ 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_en": "What episode was written by Matt Maclennan?",
    "question_th": "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_en": "What is largest total number that was written by Sheri Elwood?",
    "question_th": "จำนวนรวมที่ใหญ่ที่สุดที่เขียนโดยเชรี เอลวูดคือข้อใด",
    "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_en": "Name the air date for ratings of 2.19 million",
    "question_th": "ตั้งชื่อวันออกอากาศเรตติ้ง 2.19 ล้าน",
    "context": "CREATE TABLE table_27218002_1 (originalairdate VARCHAR, ratings VARCHAR)"
  },
  {
    "answer": "SELECT directed_by FROM table_27218002_1 WHERE originalairdate = \"12 July 2010\"",
    "question_en": "Name who directed the air date of 12 july 2010",
    "question_th": "รายชื่อผู้กำกับ กำหนดฉาย 12 กรกฎาคม 2553",
    "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_en": "Name the least episode number for jonathan harvey",
    "question_th": "ตั้งชื่อหมายเลขตอนน้อยที่สุดของโจนาธาน ฮาร์วีย์",
    "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_en": "Name the total number of written by for 26 july 2010",
    "question_th": "ตั้งชื่อจำนวนที่เขียนทั้งหมดภายในวันที่ 26 กรกฎาคม 2010",
    "context": "CREATE TABLE table_27218002_1 (written_by VARCHAR, originalairdate VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_27274566_2 WHERE result = \"1–0 (aet)\"",
    "question_en": "Which season had a result of 1–0 (aet)?",
    "question_th": "ฤดูกาลใดมีผล 1–0 (เอต)?",
    "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_en": "What is the date in the 2007-08 season where the away team was the kaizer chiefs?",
    "question_th": "ฤดูกาล 2007-08 ทีมเยือนเป็นหัวหน้าไกเซอร์คือวันที่ใด?",
    "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–3\"",
    "question_en": "How many dates are shown for the home team of orlando pirates and result of 1–3?",
    "question_th": "ทีมเหย้าของ ออร์แลนโด้ ไพเรตส์ และผลการแข่งขัน 1–3 แสดงกี่วัน?",
    "context": "CREATE TABLE table_27274566_2 (date VARCHAR, home_team VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT division FROM table_27274566_2 WHERE result = \"0–2\"",
    "question_en": "What is the division where the result was 0–2?",
    "question_th": "ดิวิชั่นใดที่ผลออกมาเป็น 0–2?",
    "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_en": "What is the date where the home team was kaizer chiefs and the division was mtn 8 semi-final?",
    "question_th": "วันที่เจ้าบ้านเป็นไกเซอร์ ชีฟ และดิวิชั่น 8 เข้ารอบรองชนะเลิศคือวันที่เท่าไหร่?",
    "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_en": "What are the L2 cache specifications of part number amql64dam22gg?",
    "question_th": "ข้อมูลจำเพาะแคช L2 ของหมายเลขชิ้นส่วน 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_en": "What is the operating voltage of part number amql64dam22gg?",
    "question_th": "แรงดันไฟฟ้าปฏิบัติการของหมายเลขชิ้นส่วน 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_en": "What are the possible multipliers for 1900MHz processors?",
    "question_th": "ตัวคูณที่เป็นไปได้สำหรับโปรเซสเซอร์ 1900MHz คืออะไร",
    "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_en": "How many thermal design power levels does part number amql65dam22gg have?",
    "question_th": "หมายเลขชิ้นส่วน amql65dam22gg มีระดับพลังงานการออกแบบการระบายความร้อนกี่ระดับ",
    "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_en": "What kind of sockets does a 2100MHz Athlon X2 QL-64 use?",
    "question_th": "2100MHz Athlon X2 QL-64 ใช้ซ็อกเก็ตประเภทใด",
    "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_en": "What is the total number of years active listings where Asian Cup played as a captain is Japan 1992?",
    "question_th": "จำนวนปีที่เอเชียนคัพเล่นเป็นกัปตันทีมคือญี่ปุ่น 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_en": "How many matches as captain were played where Asian Cup played as a captain is Qatar 1988",
    "question_th": "กี่นัดที่ลงเล่นในฐานะกัปตันทีม โดยที่เอเชียนคัพเล่นเป็นกัปตันทีมคือ กาตาร์ 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_en": "What were the years active where Asian Cup played as a captain is Iran 1976?",
    "question_th": "อิหร่านเล่นฟุตบอลเอเชียนคัพปี 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_en": "What were the years active where Asian Cup played as a captain is Qatar 1988?",
    "question_th": "กี่ปีที่เอเชียนคัพเล่นเป็นกัปตันทีมที่กาตาร์ 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_en": "Who is the first driver(s) when the country is romania?",
    "question_th": "ใครคือผู้ขับขี่คนแรกเมื่อประเทศคือโรมาเนีย?",
    "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_en": "How many times is last/current driver(s) 3 november 2013 is adderly fong ( 2013 )?",
    "question_th": "กี่ครั้งแล้วที่เป็นไดรเวอร์ล่าสุด / ปัจจุบัน 3 พฤศจิกายน 2556 คือ 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öckinger , Kotaro Sakurai ( 2011 )\"",
    "question_en": "Who is the last/current driver(s) 3 november 2013 when first driver(s) is marlon stöckinger , kotaro sakurai ( 2011 )?",
    "question_th": "ใครคือนักแข่งคนสุดท้าย/คนปัจจุบัน 3 พฤศจิกายน 2013 เมื่อนักแข่งคนแรกคือ marlon stöckinger , 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_en": "What is the country when last/current driver(s) 3 november 2013 is daniel abt ( 2012 )?",
    "question_th": "ประเทศอะไรเมื่อคนขับคนสุดท้าย/คนปัจจุบัน 3 พฤศจิกายน 2556 คือ 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_en": " How many losses did the club who had 9 bonus points and 11 wins have?",
    "question_th": " สโมสรที่มีคะแนนโบนัส 9 คะแนนและชัยชนะ 11 ครั้งมีการสูญเสียไปกี่ครั้ง?",
    "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_en": "How many bonus points did the club who had 379 points for have?",
    "question_th": "สโมสรที่มีคะแนนสะสม 379 คะแนนมีคะแนนโบนัสกี่คะแนน?",
    "context": "CREATE TABLE table_27293285_2 (bonus_points VARCHAR, points_for VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_27293285_2 WHERE bonus_points = \"5\"",
    "question_en": "Which club had 5 bonus points?",
    "question_th": "สโมสรใดมี 5 คะแนนโบนัส?",
    "context": "CREATE TABLE table_27293285_2 (club VARCHAR, bonus_points VARCHAR)"
  },
  {
    "answer": "SELECT bonus_points FROM table_27293285_2 WHERE lost = \"18\"",
    "question_en": "How many bonus points did the club who had 18 losses have?",
    "question_th": "สโมสรที่แพ้ 18 ครั้งมีคะแนนโบนัสกี่แต้ม?",
    "context": "CREATE TABLE table_27293285_2 (bonus_points VARCHAR, lost VARCHAR)"
  },
  {
    "answer": "SELECT points_for FROM table_27293285_2 WHERE club = \"Munster\"",
    "question_en": "How many points for did Munster have?",
    "question_th": "มุนสเตอร์ได้กี่แต้ม?",
    "context": "CREATE TABLE table_27293285_2 (points_for VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT points_against FROM table_27293285_2 WHERE points_for = \"353\"",
    "question_en": "How many points against did the club who had 353 points for have? ",
    "question_th": " สโมสรที่มี 353 แต้มมีแต้มต่อกี่แต้ม?",
    "context": "CREATE TABLE table_27293285_2 (points_against VARCHAR, points_for VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_27312918_5 WHERE game = 4",
    "question_en": "What was the team the Suns played against in game number 4?",
    "question_th": "ทีมที่ Suns เล่นด้วยในเกมที่ 4 คืออะไร?",
    "context": "CREATE TABLE table_27312918_5 (team VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_27312918_5 WHERE game = 5",
    "question_en": "Who got the most points in game number 5?",
    "question_th": "ใครได้คะแนนมากที่สุดในเกมหมายเลข 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_en": "What is the default desktop environment when the code base is ubuntu 8.04 and edition is fluxbox ce?",
    "question_th": "สภาพแวดล้อมเดสก์ท็อปเริ่มต้นคืออะไรเมื่อฐานโค้ดคือ Ubuntu 8.04 และรุ่นคือ 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_en": "What is the compatible repository when the version is old version, no longer supported: 9 and default desktop environment is lxde?",
    "question_th": "พื้นที่เก็บข้อมูลที่เข้ากันได้คืออะไรเมื่อเวอร์ชันเป็นเวอร์ชันเก่า ไม่รองรับอีกต่อไป: 9 และสภาพแวดล้อมเดสก์ท็อปเริ่มต้นคือ 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_en": "What is the the codename when the code base is ubuntu 8.04 and the edition is fluxbox ce?",
    "question_th": "ชื่อรหัสคืออะไรเมื่อฐานรหัสคือ Ubuntu 8.04 และรุ่นคือ 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_en": "What is the default desktop environment when the edition is kde and the compatible repository is ubuntu 13.04?",
    "question_th": "สภาพแวดล้อมเดสก์ท็อปเริ่มต้นคืออะไรเมื่อรุ่นเป็น kde และพื้นที่เก็บข้อมูลที่เข้ากันได้คือ 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_en": "What is the version when the codename is ada?",
    "question_th": "โค้ดเนมคือ 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_en": "What is the version when the compatible reposityory is xubuntu 10.04",
    "question_th": "เวอร์ชันคืออะไรเมื่อพื้นที่เก็บข้อมูลที่เข้ากันได้คือ xubuntu 10.04.1",
    "context": "CREATE TABLE table_27329061_2 (version VARCHAR, compatible_repository VARCHAR)"
  },
  {
    "answer": "SELECT MAX(population__2001_) FROM table_27366772_3",
    "question_en": "What is the highest population in 2001?",
    "question_th": "จำนวนประชากรสูงสุดในปี 2544 คืออะไร?",
    "context": "CREATE TABLE table_27366772_3 (population__2001_ INTEGER)"
  },
  {
    "answer": "SELECT district FROM table_27366772_3 WHERE armenian = \"Քանաքեր-Զեյթուն\"",
    "question_en": "What district is known in Armenian as քանաքեր-զեյթուն?",
    "question_th": "เขตใดที่รู้จักกันในชื่อภาษาอาร์เมเนียในชื่อ ָանաաեՀ-զեյթոն?",
    "context": "CREATE TABLE table_27366772_3 (district VARCHAR, armenian VARCHAR)"
  },
  {
    "answer": "SELECT armenian FROM table_27366772_3 WHERE area__km²_ = \"8.37\"",
    "question_en": "What is the Armenian name of the district that is 8.37 km² large?",
    "question_th": "ชื่ออาร์เมเนียของเขตที่มีพื้นที่ 8.37 กม. ² ใหญ่คืออะไร",
    "context": "CREATE TABLE table_27366772_3 (armenian VARCHAR, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT soccer_stadium FROM table_27369069_1 WHERE province = \"NL\"",
    "question_en": "What is the name of the soccer stadium in NL providence?",
    "question_th": "สนามฟุตบอลใน NL พรอวิเดนซ์ ชื่ออะไร",
    "context": "CREATE TABLE table_27369069_1 (soccer_stadium VARCHAR, province VARCHAR)"
  },
  {
    "answer": "SELECT province FROM table_27369069_1 WHERE founded = 2005",
    "question_en": "which providence's soccer stadium was founded in 2005?",
    "question_th": "สนามฟุตบอลของพรอวิเดนซ์แห่งใดก่อตั้งในปี 2548",
    "context": "CREATE TABLE table_27369069_1 (province VARCHAR, founded VARCHAR)"
  },
  {
    "answer": "SELECT varsity_name FROM table_27369069_1 WHERE city = \"Charlottetown\"",
    "question_en": "What is the team mascot for the soccer team in Charlottetown?",
    "question_th": "มาสคอตของทีมฟุตบอลในชาร์ลอตต์ทาวน์คืออะไร?",
    "context": "CREATE TABLE table_27369069_1 (varsity_name VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT province FROM table_27369069_1 WHERE stadium_capacity = \"4,000\"",
    "question_en": "Which province has the soccer stadium that holds 4,000 people?",
    "question_th": "จังหวัดใดมีสนามฟุตบอลจุคนได้ 4,000 คน?",
    "context": "CREATE TABLE table_27369069_1 (province VARCHAR, stadium_capacity VARCHAR)"
  },
  {
    "answer": "SELECT university FROM table_27369069_1 WHERE soccer_stadium = \"Moncton Stadium\"",
    "question_en": "Which University's soccer stadium in named Moncton Stadium?",
    "question_th": "สนามฟุตบอลของมหาวิทยาลัยใดชื่อ 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_en": "Name the current womens lacrosse conference for 6000 enrollment",
    "question_th": "ตั้งชื่อการประชุมลาครอสสตรีปัจจุบันสำหรับการลงทะเบียน 6,000 คน",
    "context": "CREATE TABLE table_27378582_1 (current_womens_lacrosse_conference VARCHAR, enrollment VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_27378582_1 WHERE enrollment = 19900",
    "question_en": "Name the city for enrollment being 19900",
    "question_th": "ตั้งชื่อเมืองที่จะลงทะเบียนเป็น 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_en": "Name the current womens lacrosse conference for bison",
    "question_th": "ตั้งชื่อการประชุมลาครอสหญิงในปัจจุบันสำหรับวัวกระทิง",
    "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_en": "Name the most founded for bison",
    "question_th": "ชื่อที่ก่อตั้งมากที่สุดสำหรับวัวกระทิง",
    "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_en": "How many weeks was K.Maro at #1?",
    "question_th": "K.Maro ได้ที่ 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_en": "How many weeks was France at #1?",
    "question_th": "ฝรั่งเศสอยู่ที่อันดับ 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_en": "Name the number one singles for week 1 being 5",
    "question_th": "ตั้งชื่อซิงเกิลอันดับหนึ่งสำหรับสัปดาห์ที่ 1 คือ 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_en": "Name the number one singles for  desvarieux, jacob",
    "question_th": "ตั้งชื่อซิงเกิลอันดับหนึ่งของ 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_en": "Name the least weeks at number 1 for 1988",
    "question_th": "ตั้งชื่อสัปดาห์ที่น้อยที่สุดเป็นอันดับ 1 ในปี 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_en": "What is the name of the episode that was written by Scott M. Gimple?",
    "question_th": "ตอนที่เขียนโดย 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_en": "What is the title of the episode with a production code of 2j5504?",
    "question_th": "ชื่อเรื่องของตอนที่มีรหัสการผลิต 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_en": "How many people wrote the episode with a production code of 2j5507?",
    "question_th": "มีกี่คนที่เขียนตอนด้วยรหัสการผลิต 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_en": "What was the latest number in series that was directed by Skip Sudduth?",
    "question_th": "ซีรีส์เรื่องล่าสุดที่กำกับโดย 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_en": "What number in season had 10.18 million US viewers?",
    "question_th": "ตัวเลขใดในฤดูกาลที่มีผู้ชม 10.18 ล้านคนในสหรัฐอเมริกา",
    "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_en": "What was the original air date of the episode that was directed by Alex Zakrzewski?",
    "question_th": "วันที่ออกอากาศดั้งเดิมของตอนที่กำกับโดย 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_en": "What number in season is number 141 in series?",
    "question_th": "หมายเลขใดในฤดูกาลคือหมายเลข 141 ในซีรีส์?",
    "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_en": "What province was New Plymouth formed from?",
    "question_th": "นิวพลีมัธก่อตั้งมาจากจังหวัดใด",
    "context": "CREATE TABLE table_275023_1 (formed_from VARCHAR, province VARCHAR)"
  },
  {
    "answer": "SELECT reason FROM table_275023_1 WHERE province = \"Otago\"",
    "question_en": "Why was Otago formed?",
    "question_th": "เหตุใดจึงก่อตั้ง Otago?",
    "context": "CREATE TABLE table_275023_1 (reason VARCHAR, province VARCHAR)"
  },
  {
    "answer": "SELECT province FROM table_275023_1 WHERE formed_from = \"New Munster\"",
    "question_en": "What provinces were formed from New Munster?",
    "question_th": "จังหวัดใดที่ถูกสร้างขึ้นจาก 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_en": "How many provinces are named Wellington?",
    "question_th": "เวลลิงตันมีกี่จังหวัด?",
    "context": "CREATE TABLE table_275023_1 (formed_date VARCHAR, province VARCHAR)"
  },
  {
    "answer": "SELECT january FROM table_27537870_6 WHERE decision = \"Lalime\"",
    "question_en": "If the decision was by Lalime, when in January was it made?",
    "question_th": "ถ้าเป็นการตัดสินใจของลาลิมิตเมื่อเดือนมกราคม?",
    "context": "CREATE TABLE table_27537870_6 (january VARCHAR, decision VARCHAR)"
  },
  {
    "answer": "SELECT MAX(game) FROM table_27537870_6 WHERE january = 21",
    "question_en": "If the game was on January 21, which game was it?",
    "question_th": "ถ้าเกมคือวันที่ 21 มกราคม เป็นเกมไหน?",
    "context": "CREATE TABLE table_27537870_6 (game INTEGER, january VARCHAR)"
  },
  {
    "answer": "SELECT decision FROM table_27537870_6 WHERE score = \"5-3\"",
    "question_en": "If the score is 5-3, who made the decision?",
    "question_th": "ถ้าสกอร์เป็น 5-3 ใครเป็นผู้ตัดสิน?",
    "context": "CREATE TABLE table_27537870_6 (decision VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_27537870_6 WHERE opponent = \"Philadelphia Flyers\"",
    "question_en": "If the opponent was the Philadelphia flyers, what was the record?",
    "question_th": "หากคู่ต่อสู้คือฟิลาเดลเฟียฟลายเออร์ มีสถิติอะไรบ้าง?",
    "context": "CREATE TABLE table_27537870_6 (record VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_27537870_6 WHERE record = \"22-21-5\"",
    "question_en": "If the record was 22-21-5, who was the opponent?",
    "question_th": "ถ้าสถิติเป็น 22-21-5 คู่ต่อสู้คือใคร?",
    "context": "CREATE TABLE table_27537870_6 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_27537870_6 WHERE opponent = \"@ Boston Bruins\"",
    "question_en": "If the opponent was @ Boston Bruins, what was the Location/Attendance?",
    "question_th": "หากคู่ต่อสู้คือ @ Boston Bruins ตำแหน่ง/การเข้าร่วมคืออะไร?",
    "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_en": "What day in February was the team 17-29-7?",
    "question_th": "เดือนกุมภาพันธ์ ทีม 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_en": "What was the teams record when they played the ottawa senators?",
    "question_th": "บันทึกของทีมเมื่อเล่นเป็นวุฒิสมาชิกออตตาวาคืออะไร?",
    "context": "CREATE TABLE table_27539535_7 (record VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_27539535_7 WHERE february = 1",
    "question_en": "What was the team's rcord on february 1?",
    "question_th": "สถิติของทีมในวันที่ 1 กุมภาพันธ์เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_27539535_7 (record VARCHAR, february VARCHAR)"
  },
  {
    "answer": "SELECT february FROM table_27539535_7 WHERE opponent = \"Boston Bruins\"",
    "question_en": "What day in February did the team play the boston bruins?",
    "question_th": "วันไหนในเดือนกุมภาพันธ์ที่ทีมพบกับ บอสตัน บรูอินส์?",
    "context": "CREATE TABLE table_27539535_7 (february VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_27571406_1 WHERE team_name = \"Pons Racing\"",
    "question_en": "In what season did Pons Racing compete?",
    "question_th": "Pons Racing ลงแข่งขันในฤดูกาลใด?",
    "context": "CREATE TABLE table_27571406_1 (season VARCHAR, team_name VARCHAR)"
  },
  {
    "answer": "SELECT f_laps FROM table_27571406_1 WHERE podiums = 8",
    "question_en": "What's the f/laps count for the team with 8 podiums?",
    "question_th": "ค่า f/laps ของทีมที่ได้ 8 โพเดี้ยม เป็นเท่าใด?",
    "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_en": "What is the lowest stage when the yellow jersey is Ronan Pensec?",
    "question_th": "ระยะต่ำสุดเมื่อเสื้อเหลืองคือโรนัน เพนเซค?",
    "context": "CREATE TABLE table_275506_1 (stage INTEGER, yellow_jersey VARCHAR)"
  },
  {
    "answer": "SELECT yellow_jersey FROM table_275506_1 WHERE distance__km_ = \"125\"",
    "question_en": "What is every yellow jersey entry for the distance 125?",
    "question_th": "ค่าเข้าเสื้อเหลืองทุกรายการสำหรับระยะ 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_en": "Who is every stage winner at the distance of 162.5?",
    "question_th": "ใครคือผู้ชนะในแต่ละสเตจที่ระยะ 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_en": "How many entries for start of stage occur in the year 2006?",
    "question_th": "ในปี 2549 มีรายการ Start of Stage กี่รายการ?",
    "context": "CREATE TABLE table_275506_1 (start_of_stage VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT power__kw_ FROM table_27588823_2 WHERE callsign = \"DWZF\"",
    "question_en": "How much power does dwzf have?",
    "question_th": "dwzf มีพลังมากแค่ไหน?",
    "context": "CREATE TABLE table_27588823_2 (power__kw_ VARCHAR, callsign VARCHAR)"
  },
  {
    "answer": "SELECT branding FROM table_27588823_2 WHERE callsign = \"DYPV\"",
    "question_en": "What is the branding for callsign dypv?",
    "question_th": "แบรนด์สำหรับ 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_en": "What is the branding for the station located in san jose del monte?",
    "question_th": "ตราสินค้าของสถานีที่ตั้งอยู่ในซานโฮเซ เดล มอนเตคืออะไร?",
    "context": "CREATE TABLE table_27588823_2 (branding VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(callsign) FROM table_27588823_2 WHERE location = \"Masinloc, Zambales\"",
    "question_en": "How many call signs does the location masinloc, zambales have?",
    "question_th": "ที่ตั้ง masinloc, zambales มีสัญญาณเรียกขานกี่สัญญาณ?",
    "context": "CREATE TABLE table_27588823_2 (callsign VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT frequency FROM table_27588823_2 WHERE location = \"Polangui, Albay\"",
    "question_en": "What is the frequency of the station located in polangui, albay?",
    "question_th": "ความถี่ของสถานีที่อยู่ใน 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_en": "If the mountains classification is Mathias Frank, and the General Classification is Fabian Cancellara, what is the Points classification?",
    "question_th": "หากการแบ่งประเภทภูเขาคือ Mathias Frank และการจัดประเภททั่วไปคือ Fabian Cancellara การจัดประเภทคะแนนคืออะไร",
    "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_en": "If the stage is smaller than 5.0, and the points classification is by Marco Marcato, who is the General classification by?",
    "question_th": "หากสเตจน้อยกว่า 5.0 และการจัดประเภทคะแนนเป็นของ Marco Marcato ใครคือการจัดประเภททั่วไป",
    "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_en": "How many different people had a General Classification on Stage 5?",
    "question_th": "มีกี่คนที่ได้รับการจำแนกประเภททั่วไปบนเวทีที่ 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_en": "How many times was Robert Gesink a winner?",
    "question_th": "Robert Gesink เป็นผู้ชนะกี่ครั้ง?",
    "context": "CREATE TABLE table_27573848_18 (mountains_classification VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT mountains_classification FROM table_27573848_18 WHERE winner = \"Rui Costa\"",
    "question_en": "If the winner is Rui Costa, who made the mountains classification?",
    "question_th": "ถ้าผู้ชนะคือ รุย คอสต้า ใครจัดประเภทภูเขา?",
    "context": "CREATE TABLE table_27573848_18 (mountains_classification VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_27603010_14 WHERE team__number1 = \"Junior\"",
    "question_en": "What was Team 1 Junior's points?",
    "question_th": "คะแนนของทีม 1 Junior คืออะไร?",
    "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_en": "What was the 2nd leg score  if the team 1 is Deportivo Pasto?",
    "question_th": "สกอร์เลกที่ 2 เป็นเท่าไหร่หากทีมที่ 1 คือ เดปอร์ติโบ ปาสโต?",
    "context": "CREATE TABLE table_27603010_14 (team__number1 VARCHAR)"
  },
  {
    "answer": "SELECT team__number2 FROM table_27603010_14 WHERE team__number1 = \"Atlético La Sabana\"",
    "question_en": "Who was the team 2 that played against team 1 Atlético la Sabana?",
    "question_th": "ทีม 2 ที่เล่นกับทีม 1 Atlético 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_en": "How many new points were earned by rk 26?",
    "question_th": "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_en": "How many points were won where new points was 1680?",
    "question_th": "ชนะไปกี่คะแนนโดยที่คะแนนใหม่คือ 1680?",
    "context": "CREATE TABLE table_27615896_18 (points INTEGER, new_points VARCHAR)"
  },
  {
    "answer": "SELECT MAX(points) FROM table_27615896_18 WHERE sd = 15",
    "question_en": "What are the total points for sd 15?",
    "question_th": "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_en": "What is the total number of sd listings where the status is quarterfinals lost to Novak Djokovic [1]?",
    "question_th": "จำนวนรายชื่อ sd ทั้งหมดที่มีสถานะเป็นรอบก่อนรองชนะเลิศแพ้โนวัค ยอโควิช [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_en": "How many different counts for won points does Flavia Pennetta have?",
    "question_th": "ฟลาเวีย เพนเนตตา นับคะแนนที่ชนะได้กี่แต้ม?",
    "context": "CREATE TABLE table_27615896_20 (points VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MIN(sd) FROM table_27615896_20 WHERE player = \"Kaia Kanepi\"",
    "question_en": "What's Kaia Kanepi's Sd?",
    "question_th": "Sd ของ Kaia Kanepi คืออะไร?",
    "context": "CREATE TABLE table_27615896_20 (sd INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_27615896_20 WHERE points = 3041",
    "question_en": "What's the status of the player with 3041 points?",
    "question_th": "สถานะของผู้เล่นที่มี 3041 คะแนนเป็นอย่างไร?",
    "context": "CREATE TABLE table_27615896_20 (status VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT written_by FROM table_27657925_1 WHERE no_in_series = \"62\"",
    "question_en": "When 62 is the number in series who is the writer?",
    "question_th": "เมื่อ 62 เป็นเลขในซีรีส์ใครเป็นคนเขียน?",
    "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_en": "When steve holland is the writer what is the air date?",
    "question_th": "เมื่อสตีฟ ฮอลแลนด์เป็นคนเขียน ออนแอร์วันไหนคะ?",
    "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_en": "When 231 is the production code what is the title?",
    "question_th": "เมื่อ 231 เป็นรหัสการผลิต ชื่ออะไร?",
    "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_en": "When there are 5.2 million u.s. viewers how many numbers in series are there?",
    "question_th": "เมื่อมีผู้ชมของเรา 5.2 ล้านคน ซีรีส์จะมีตัวเลขกี่ตัว?",
    "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_en": "Name the total number of outgoing manager for villarreal b",
    "question_th": "ตั้งชื่อจำนวนผู้จัดการทีมที่ออกจากตำแหน่งทั้งหมดสำหรับบียาร์เรอัล บี",
    "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_en": "Name the date of appointment for 26 may 2011",
    "question_th": "ตั้งชื่อวันที่ได้รับการแต่งตั้งเป็นวันที่ 26 พฤษภาคม 2554",
    "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_en": "Name the outgoing manager for esteban vigo",
    "question_th": "ตั้งชื่อผู้จัดการที่จะลาออกสำหรับเอสเตบัน บีโก้",
    "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_en": "Name the number of team for 19th position",
    "question_th": "แจ้งรายชื่อทีมอันดับที่ 19",
    "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_en": "Name the manner of departure for luis enrique",
    "question_th": "กล่าวถึงลักษณะการจากไปของ หลุยส์ เอ็นริเก้",
    "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ão Couto 0\"",
    "question_en": "Who was the opponent in the Women's Cup 0 0 where Brancão Couto 0 is the scorer?",
    "question_th": "คู่ต่อสู้ในศึกฟุตบอลหญิง 0 0 โดยที่ บรันเกา คูโต้ 0 เป็นผู้ทำประตูคือใคร?",
    "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_en": "What is the result of the game where the opponent is Innsbrucker Kilmarnock CSK VVS Samara?",
    "question_th": "ผลการแข่งขันคู่ต่อสู้คือ อินส์บรุคเกอร์ คิลมาร์น็อค ซีเอสเค วีวีเอส ซามารา เป็นอย่างไร?",
    "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_en": "How many seasons was the opponent Vamos Idaliou Krka Novo Mesto SV Neulengbach?",
    "question_th": "คู่ต่อสู้ วามอส อิดาลิอู ครีกา โนโว เมสโต เอสวี นอยเลงบัค อยู่กี่ฤดูกาล?",
    "context": "CREATE TABLE table_27654988_1 (season VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT scorers FROM table_27654988_1 WHERE result = \"0–4 7–1 0–3\"",
    "question_en": "Who were the scorers in the game with final score 0–4 7–1 0–3?",
    "question_th": "ใครคือผู้ทำประตูในเกมด้วยคะแนนสุดท้าย 0–4 7–1 0–3",
    "context": "CREATE TABLE table_27654988_1 (scorers VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT kickoff FROM table_27690037_2 WHERE game_site = \"Rheinstadion\"",
    "question_en": "Name the kickoff for rheinstadion",
    "question_th": "ตั้งชื่อการคิกออฟสำหรับไรน์สตาดิโอน",
    "context": "CREATE TABLE table_27690037_2 (kickoff VARCHAR, game_site VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_27700530_5 WHERE date = \"October 20\"",
    "question_en": "Who had the high point total on october 20?",
    "question_th": "ใครมีคะแนนรวมสูงสุดในวันที่ 20 ตุลาคม?",
    "context": "CREATE TABLE table_27700530_5 (high_points VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT series FROM table_27700530_15 WHERE game = 3",
    "question_en": "What was the series record at after game 3?",
    "question_th": "สถิติซีรีส์หลังเกมที่ 3 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_27700530_15 (series VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_27700530_15 WHERE game = 2",
    "question_en": "What was the location and attendance for game 2?",
    "question_th": "สถานที่และการเข้าร่วมในเกมที่ 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_en": "Who had the most points and how many did they have on April 22? ",
    "question_th": " ใครมีแต้มมากที่สุดและมีกี่แต้มในวันที่ 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_en": "Who had the most assists and how many did they have on October 5? ",
    "question_th": " ใครแอสซิสต์ได้มากที่สุดและมีกี่แอสซิสต์ในวันที่ 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_en": "List all artists with choreographer Marcos Aguirre and a simple rating.",
    "question_th": "รายชื่อศิลปินทั้งหมดที่มีนักออกแบบท่าเต้น Marcos Aguirre และการจัดอันดับแบบง่าย",
    "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_en": "How many times was the overall attendance 17807?",
    "question_th": "ผู้เข้าร่วมทั้งหมด 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_en": "What is the overall attendance in the places where the average attendance was 17148?",
    "question_th": "ผู้เข้าร่วมโดยรวมในสถานที่ซึ่งมีผู้เข้าร่วมเฉลี่ย 17,148 คนเป็นเท่าใด",
    "context": "CREATE TABLE table_2771237_1 (overall_attendance VARCHAR, average_attendance VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_2771237_1 WHERE average_attendance = 16043",
    "question_en": "What season was the average attendance is 16043?",
    "question_th": "ผู้ชมเฉลี่ยในฤดูกาลใดคือ 16,043 คน?",
    "context": "CREATE TABLE table_2771237_1 (season VARCHAR, average_attendance VARCHAR)"
  },
  {
    "answer": "SELECT overall_record FROM table_2771237_1 WHERE average_attendance = 16720",
    "question_en": "What was the overall record in the season where average attendance was 16720?",
    "question_th": "สถิติโดยรวมในฤดูกาลที่มีผู้เข้าชมเฉลี่ยอยู่ที่ 16,720 คนคืออะไร?",
    "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_en": "Name the high assists for march 14",
    "question_th": "ทายแอสซิสต์สูงประจำวันที่ 14 มีนาคม",
    "context": "CREATE TABLE table_27712451_9 (high_assists VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_27712702_7 WHERE game = 9",
    "question_en": "Who had high assists in game number 9?",
    "question_th": "ใครมีแอสซิสต์สูงในเกมที่ 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_en": "Who had high assists in the game played at Oklahoma city arena 17,509?",
    "question_th": "ใครทำแอสซิสต์ได้สูงในเกมที่เล่นที่โอคลาโฮมาซิตี้อารีน่า 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_en": "Which team played on November 15?",
    "question_th": "ทีมไหนเล่นวันที่ 15 พฤศจิกายน?",
    "context": "CREATE TABLE table_27712702_7 (team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT series FROM table_27713030_16 WHERE score = \"L 103–112 (OT)\"",
    "question_en": "Which series had a score of  l 103–112 (ot)?",
    "question_th": "ซีรีส์ใดมีคะแนน l 103–112 (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_en": "What was the location and attendance when lebron james (10) had the high assists?",
    "question_th": "ตำแหน่งและผู้เข้าชมงานเมื่อเลอบรอน เจมส์ (10) แอสซิสต์สูงคือตำแหน่งใด?",
    "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_en": "How many teams were there when  chris bosh , lebron james (8) had the  high rebounds?",
    "question_th": "ตอนที่คริส บอช, เลอบรอน เจมส์ (8) มีกี่ทีมที่รีบาวด์ได้สูง?",
    "context": "CREATE TABLE table_27713030_16 (team VARCHAR, high_rebounds VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_27712702_9 WHERE date = \"January 17\"",
    "question_en": "Who led in assists on January 17, and with how many?",
    "question_th": "ใครเป็นผู้ทำแอสซิสต์ในวันที่ 17 มกราคม และทำได้กี่คน?",
    "context": "CREATE TABLE table_27712702_9 (high_assists VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_27712702_9 WHERE date = \"January 8\"",
    "question_en": "What was the score of the January 8 game?",
    "question_th": "สกอร์เกมวันที่ 8 มกราคม เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_27712702_9 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_27713583_8 WHERE date = \"January 14\"",
    "question_en": "What game number was on January 14?",
    "question_th": "วันที่ 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_en": "what is the date of the game that the high assists is raymond felton (4)?",
    "question_th": "วันที่เกมที่เรย์มอนด์ เฟลตัน (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_en": "How many games were on october 17?",
    "question_th": "วันที่ 17 ตุลาคม มีกี่เกม?",
    "context": "CREATE TABLE table_27713583_2 (high_points VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_27713583_2 WHERE team = \"@ Minnesota\"",
    "question_en": "What is the record for the game against team @ Minnesota?",
    "question_th": "สถิติในเกมกับทีม @ มินนิโซตา เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_27713583_2 (record VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_27713583_2 WHERE high_points = \"Toney Douglas (23)\"",
    "question_en": "What is the date the high points was by toney douglas (23)?",
    "question_th": "โทนี่ ดักลาส (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_en": "How many episodes had an audience of exactly 25.3 million viewers in the U.S.A.?",
    "question_th": "มีกี่ตอนที่มีผู้ชมประมาณ 25.3 ล้านคนในสหรัฐอเมริกา",
    "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_en": "Who had the high points when high assists is tim duncan (5)?",
    "question_th": "ใครมีแต้มสูงเมื่อแอสซิสต์สูงคือ ทิม ดันแคน (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_en": "what is the date when the location attendance is energysolutions arena 19,911?",
    "question_th": "สถานที่เข้าร่วมคือ 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_en": "how many times is the team oklahoma city?",
    "question_th": "กี่ครั้งแล้วที่ทีมโอคลาโฮมาซิตี้?",
    "context": "CREATE TABLE table_27715173_8 (high_points VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_27715173_8 WHERE high_points = \"Manu Ginóbili (26)\"",
    "question_en": "what is the game where the high points is by manu ginóbili (26)?",
    "question_th": "มานู จิโนบิลี (26) แต้มสูงสุดคือเกมอะไร?",
    "context": "CREATE TABLE table_27715173_8 (game VARCHAR, high_points VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_27715173_8 WHERE record = \"39–7\"",
    "question_en": "what is the location attendance when the record is 39–7?",
    "question_th": "การเข้าร่วมสถานที่คืออะไรเมื่อบันทึกคือ 39–7?",
    "context": "CREATE TABLE table_27715173_8 (location_attendance VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT MAX(game) FROM table_27715173_2",
    "question_en": "What is the maximum basketball game?",
    "question_th": "เกมบาสเก็ตบอลสูงสุดคืออะไร?",
    "context": "CREATE TABLE table_27715173_2 (game INTEGER)"
  },
  {
    "answer": "SELECT COUNT(high_points) FROM table_27722408_6 WHERE score = \"L 87–89 (OT)\"",
    "question_en": "How many entries are shown for  high points when the score was  l 87–89 (ot)?",
    "question_th": "มีกี่รายการที่แสดงคะแนนสูงสุดเมื่อคะแนนอยู่ที่ l 87–89 (ot)",
    "context": "CREATE TABLE table_27722408_6 (high_points VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_27722408_6 WHERE game = 11",
    "question_en": "What was the other team in game 11?",
    "question_th": "อีกทีมในเกมที่ 11 คืออะไร?",
    "context": "CREATE TABLE table_27722408_6 (team VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_27722408_6 WHERE record = \"9–3\"",
    "question_en": "Who scored the high points for the game with record 9–3?",
    "question_th": "ใครทำคะแนนสูงสุดในเกมด้วยสถิติ 9–3?",
    "context": "CREATE TABLE table_27722408_6 (high_points VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_27722734_7 WHERE team = \"Washington\"",
    "question_en": "Name the date for washington",
    "question_th": "ตั้งชื่อวันที่สำหรับวอชิงตัน",
    "context": "CREATE TABLE table_27722734_7 (date VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_27722734_7 WHERE game = 23",
    "question_en": "Name the record for 23 game",
    "question_th": "ทุบสถิติ 23 เกม",
    "context": "CREATE TABLE table_27722734_7 (record VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT MAX(game) FROM table_27722734_7 WHERE date = \"December 1\"",
    "question_en": "Name the most game for december 1",
    "question_th": "ตั้งชื่อเกมมากที่สุดประจำวันที่ 1 ธันวาคม",
    "context": "CREATE TABLE table_27722734_7 (game INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_27723526_10 WHERE team = \"Portland\"",
    "question_en": "What was the score of the game against portland?",
    "question_th": "ในเกมกับพอร์ตแลนด์สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_27723526_10 (score VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_27723526_10 WHERE date = \"January 27\"",
    "question_en": "Who had the high assist total on january 27?",
    "question_th": "ใครที่ทำแอสซิสต์ได้สูงที่สุดในวันที่ 27 มกราคม?",
    "context": "CREATE TABLE table_27723526_10 (high_assists VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_27733909_9 WHERE game = 70",
    "question_en": "What is the location and attendance of game 70?",
    "question_th": "สถานที่และการเข้าร่วมของเกม 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_en": "What team was the opponent when josh smith (8) had the high assists?",
    "question_th": "คู่ต่อสู้คือทีมใดเมื่อจอช สมิธ (8) มีแอสซิสต์สูง?",
    "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_en": "What is the game number where josh smith (4) had the high assists?",
    "question_th": "จอช สมิธ (4) แอสซิสต์สูงคือหมายเลขเกมที่เท่าไหร่?",
    "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_en": "What is the series number when al horford (10) had the high rebounds?",
    "question_th": "เมื่อ อัล ฮอร์ฟอร์ด (10) รีบาวด์สูง เบอร์ซีรีส์อะไร?",
    "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_en": "What is every team with location attendance of Philips Arena 12,140?",
    "question_th": "ทุกทีมที่มีตำแหน่งการเข้าร่วม 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_en": "How many games were played on october 16?",
    "question_th": "วันที่ 16 ตุลาคม มีการแข่งขันกี่เกม?",
    "context": "CREATE TABLE table_27756014_1 (high_points VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_27756014_1 WHERE game = 4",
    "question_en": "What is the score of game 4?",
    "question_th": "คะแนนของเกมที่ 4 คืออะไร?",
    "context": "CREATE TABLE table_27756014_1 (score VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_27756014_1 WHERE date = \"October 16\"",
    "question_en": "What is the score of the game played on october 16?",
    "question_th": "สกอร์ของเกมที่เล่นในวันที่ 16 ตุลาคมเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_27756014_1 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_27756014_1 WHERE date = \"October 5\"",
    "question_en": "What is the team played on october 5?",
    "question_th": "วันที่ 5 ตุลาคม พบกับทีมอะไร?",
    "context": "CREATE TABLE table_27756014_1 (team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_27756314_6 WHERE date = \"November 12\"",
    "question_en": "who had high assists on november 12?",
    "question_th": "ใครทำแอสซิสต์ได้สูงในวันที่ 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_en": "What is the date when the high points is michael beasley , martell webster (16)?",
    "question_th": "วันที่คะแนนสูงสุดคือ ไมเคิล บีสลีย์ , มาร์เทล เว็บสเตอร์ (16) วันไหน?",
    "context": "CREATE TABLE table_27756314_10 (date VARCHAR, high_points VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_27756314_10 WHERE team = \"Indiana\"",
    "question_en": "What is the game with the team indiana?",
    "question_th": "เกมกับทีมอินเดียนาคืออะไร?",
    "context": "CREATE TABLE table_27756314_10 (game VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_27756314_10 WHERE date = \"March 25\"",
    "question_en": "Who had high rebounds when the date was march 25?",
    "question_th": "ใครรีบาวด์สูงเมื่อถึงวันที่ 25 มีนาคม?",
    "context": "CREATE TABLE table_27756314_10 (high_rebounds VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(game) FROM table_27756314_10 WHERE score = \"L 96–103 (OT)\"",
    "question_en": "What is the highest game with the score l 96–103 (ot)?",
    "question_th": "เกมสูงสุดที่มีคะแนน l 96–103 (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_en": "What is the team when the high points were by wesley johnson (20)?",
    "question_th": "ทีมไหนมีคะแนนสูงสุดเป็นของเวสลีย์ จอห์นสัน (20)?",
    "context": "CREATE TABLE table_27756314_10 (team VARCHAR, high_points VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_27756314_7 WHERE date = \"December 11\"",
    "question_en": "what is the record for date december 11?",
    "question_th": "บันทึกของวันที่ 11 ธันวาคมคืออะไร?",
    "context": "CREATE TABLE table_27756314_7 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_27756314_7 WHERE date = \"December 3\"",
    "question_en": "who had high assists on december 3?",
    "question_th": "ใครทำแอสซิสต์ได้สูงในวันที่ 3 ธันวาคม?",
    "context": "CREATE TABLE table_27756314_7 (high_assists VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_27756314_7 WHERE game = 19",
    "question_en": "where was the location that had game 19?",
    "question_th": "สถานที่ที่มีเกม 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_en": "Where was the game played and what was the attendance on May 13?",
    "question_th": "เกมนี้เล่นที่ไหนและผู้เข้าร่วมในวันที่ 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_en": "What was the location and the attendance for the game on October 12?",
    "question_th": "สถานที่ใดและผู้เข้าชมเกมในวันที่ 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_en": "Name the number of processors for nec sx-4 vector processor",
    "question_th": "ตั้งชื่อจำนวนโปรเซสเซอร์สำหรับเวกเตอร์โปรเซสเซอร์ nec sx-4",
    "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_en": "Name the most peak performance for october 2006 - january 2010",
    "question_th": "รายชื่อผลงานสูงสุดในเดือนตุลาคม 2549 - มกราคม 2553",
    "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_en": "Name the cpu type for  june 2005 - april 2009",
    "question_th": "ตั้งชื่อประเภท cpu สำหรับเดือนมิถุนายน 2548 - เมษายน 2552",
    "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_en": "Name the total number of model for amd opteron dual-core 2.6ghz",
    "question_th": "ตั้งชื่อจำนวนรุ่นทั้งหมดสำหรับ 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_en": "Name the number of processors for october 2006 - january 2010",
    "question_th": "ตั้งชื่อจำนวนโปรเซสเซอร์สำหรับเดือนตุลาคม 2549 - มกราคม 2553",
    "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_en": "What was the result for the cirtcuit where the LMPC winning team was #89 Intersport Racing?",
    "question_th": "ผลลัพธ์ของสนามที่ทีมผู้ชนะ LMPC คือ #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_en": "how many winnings does jeff gordon have?",
    "question_th": "เจฟฟ์ กอร์ดอนมีเงินรางวัลเท่าไหร่?",
    "context": "CREATE TABLE table_27781212_1 (winnings VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT MIN(points) FROM table_27781212_1 WHERE driver = \"Tommy Kendall\"",
    "question_en": "what are the minimum points for tommy kendall?",
    "question_th": "คะแนนขั้นต่ำสำหรับทอมมี่ เคนดัลล์คือเท่าไร?",
    "context": "CREATE TABLE table_27781212_1 (points INTEGER, driver VARCHAR)"
  },
  {
    "answer": "SELECT MIN(position) FROM table_27781212_1 WHERE points = 31",
    "question_en": "what is the minimum position with 31 points?",
    "question_th": "ตำแหน่งขั้นต่ำ 31 แต้มคือเท่าไร?",
    "context": "CREATE TABLE table_27781212_1 (position INTEGER, points VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_27781212_1 WHERE winnings = \"$225,000\"",
    "question_en": "who is the driver that had winnings of $225,000?",
    "question_th": "ใครคือคนขับที่ได้รับรางวัล $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_en": "How many different standards have a PM of 0.02 g/kWh?",
    "question_th": "PM 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_en": "What's the HC for the Euro I standard?",
    "question_th": "HC สำหรับมาตรฐาน Euro I คืออะไร?",
    "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_en": "What's the HC for the standard with NO x of 7.0 g/kWh?",
    "question_th": "HC สำหรับมาตรฐานที่มีค่า NO x อยู่ที่ 7.0 กรัม/กิโลวัตต์ชั่วโมง คืออะไร",
    "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_en": "What's the PM for the standard with 12.3 g/kWh CO?",
    "question_th": "ค่า PM ของมาตรฐานที่มี CO 12.3 กรัม/กิโลวัตต์ชั่วโมง คือเท่าไร",
    "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_en": "What's the NO of the standard with HC of 1.23 g/kWh?",
    "question_th": "NO ของมาตรฐานที่มีค่า HC เท่ากับ 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_en": "What was the original air date of the episode that had 5.42 million viewers?",
    "question_th": "วันที่ออกอากาศดั้งเดิมของตอนที่มีผู้ชม 5.42 ล้านคนคือเมื่อใด",
    "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_en": "How many people saw the game won by G. Claypool (4-1)?",
    "question_th": "มีกี่คนที่เห็นว่าเกมที่จี.เคลย์พูลชนะ (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_en": "What was the overall record in the game won by D. Klein (2-0)?",
    "question_th": "สถิติโดยรวมในเกมที่ชนะโดยดี. ไคลน์ (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_en": "What was the overall record of the game lost by A. Pracher (4-1)?",
    "question_th": "สถิติโดยรวมของเกมที่แพ้ให้กับ อ.ปราเชอร์ (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_en": "What was the PAC-10 record of the game played on April 20?",
    "question_th": "บันทึก PAC-10 ของเกมที่เล่นในวันที่ 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_en": "How many different numbers are there for the game played on April 23?",
    "question_th": "มีกี่หมายเลขที่แตกต่างกันสำหรับเกมที่เล่นในวันที่ 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_en": "Wat episode number had 5.46 million viewers?",
    "question_th": "จำนวนตอนมีผู้ชม 5.46 ล้านคน?",
    "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_en": "What episode in the series had 5.24 million viewers?",
    "question_th": "ซีรีส์ตอนไหนมีผู้ชม 5.24 ล้านคน?",
    "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_en": "Who wrote the episode that had 5.93 million viewers?",
    "question_th": "ใครเป็นคนเขียนตอนที่มีผู้ชม 5.93 ล้านคน?",
    "context": "CREATE TABLE table_27846651_1 (writer VARCHAR, viewers__millions_ VARCHAR)"
  },
  {
    "answer": "SELECT edition FROM table_27877656_8 WHERE opponent_team = \"Zimbabwe\"",
    "question_en": "In what edition was the opponent team Zimbabwe? ",
    "question_th": " ทีมคู่แข่งซิมบับเวอยู่ในรุ่นใด?",
    "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_en": "What was the outcome in the 2010 Europe/Africa Group IIB edition? ",
    "question_th": " ผลลัพธ์ในรุ่น IIB ของยุโรป/แอฟริกา ประจำปี 2010 เป็นอย่างไรบ้าง",
    "context": "CREATE TABLE table_27877656_8 (outcome VARCHAR, edition VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_27882867_8 WHERE team = \"Philadelphia\"",
    "question_en": "What was the team's record against philadelphia?",
    "question_th": "สถิติของทีมกับฟิลาเดลเฟียคืออะไร?",
    "context": "CREATE TABLE table_27882867_8 (record VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_27902171_4 WHERE team = \"Phoenix Suns\"",
    "question_en": "What day did they play the phoenix suns?",
    "question_th": "พวกเขาเล่น 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_en": "Who had the high point total when they were 8-5?",
    "question_th": "ใครมีแต้มรวมสูงสุดเมื่ออายุ 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_en": "Who had the high assist total when the team was 0-1?",
    "question_th": "ใครทำแอสซิสต์รวมสูงตอนทีมเสมอ 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_en": "Who had highest points during game against the Utah Jazz?",
    "question_th": "ใครมีแต้มสูงสุดระหว่างเกมกับยูทาห์ แจ๊ส?",
    "context": "CREATE TABLE table_27902171_6 (high_points VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_27902171_6 WHERE team = \"Utah Jazz\"",
    "question_en": "What location with it's corresponding attendance was the game against Utah Jazz?",
    "question_th": "เกมกับยูทาห์ แจ๊สเป็นสถานที่ที่มีผู้เข้าชมตรงกันหรือไม่?",
    "context": "CREATE TABLE table_27902171_6 (location_attendance VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_27902171_9 WHERE record = \"47-34\"",
    "question_en": "What were the scores of the games with a record of 47-34?",
    "question_th": "เกมนี้สกอร์รวม 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_en": "Who performed the most rebounds on games against the Minnesota Timberwolves?",
    "question_th": "ใครทำรีบาวด์มากที่สุดในเกมกับ 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_en": "Who manufactured the car driven by Will Power and Scott Dixon had the most laps?",
    "question_th": "ใครเป็นผู้ผลิตรถที่ขับเคลื่อนโดย Will Power และ Scott Dixon มีรอบมากที่สุด",
    "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_en": "Who had the pole position in Detroit?",
    "question_th": "ใครมีตำแหน่งโพลในดีทรอยต์?",
    "context": "CREATE TABLE table_27913160_3 (pole_position VARCHAR, race VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_27913160_3 WHERE round = 4",
    "question_en": "Who was the driver in round 4?",
    "question_th": "ใครคือคนขับในรอบที่ 4?",
    "context": "CREATE TABLE table_27913160_3 (driver VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT pole_position FROM table_27913160_3 WHERE race = \"Milwaukee\"",
    "question_en": "Who had the pole position in Milwaukee?",
    "question_th": "ใครมีตำแหน่งโพลในมิลวอกี?",
    "context": "CREATE TABLE table_27913160_3 (pole_position VARCHAR, race VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_27913160_3 WHERE round = 8",
    "question_en": "Who was the driver in round 8?",
    "question_th": "ใครคือคนขับในรอบที่ 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_en": "What race did Simon Pagenaud have the most laps in?",
    "question_th": "Simon Pagenaud มีรอบมากที่สุดในการแข่งขันใด",
    "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_en": "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? ",
    "question_th": " ตอนที่ผู้กำกับคือ Michael Pressman ชื่ออะไรและจำนวนตอนในซีซั่นนั้นน้อยกว่า 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_en": "how many millions of North American people saw the episode whose director was Ed Sherin? ",
    "question_th": " มีชาวอเมริกาเหนือกี่ล้านคนที่ได้ดูตอนที่ผู้กำกับคือ 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_en": "what is the name of the episode whose writer is philippe browning?",
    "question_th": "ตอนที่คนเขียนคือฟิลิปป์ บราวนิ่งชื่ออะไร",
    "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_en": "how many premieres had the episode that had 12.68 millions of north american viewers? ",
    "question_th": " มีรอบปฐมทัศน์กี่เรื่องที่มีผู้ชมในอเมริกาเหนือ 12.68 ล้านคน?",
    "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_en": "how many episodes in the series had as a production code 16016? ",
    "question_th": "ซีรีส์มีทั้งหมดกี่ตอน รหัสการผลิต 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_en": "What car make was sponsored by Aflac?",
    "question_th": "Aflac สนับสนุนรถยนต์ยี่ห้อใด?",
    "context": "CREATE TABLE table_27940569_1 (make VARCHAR, sponsor VARCHAR)"
  },
  {
    "answer": "SELECT pts_bns FROM table_27940569_1 WHERE driver = \"Kurt Busch\"",
    "question_en": "How many points and bonuses did Kurt Busch get?",
    "question_th": "Kurt Busch ได้รับคะแนนและโบนัสกี่คะแนน?",
    "context": "CREATE TABLE table_27940569_1 (pts_bns VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT make FROM table_27940569_1 WHERE driver = \"Jeff Gordon\"",
    "question_en": "What make was the car driven by Jeff Gordon?",
    "question_th": "รถยี่ห้ออะไร Jeff Gordon ขับ?",
    "context": "CREATE TABLE table_27940569_1 (make VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT MAX(laps) FROM table_27940569_1",
    "question_en": "What was the greatest number of laps run?",
    "question_th": "วิ่งได้กี่รอบมากที่สุด?",
    "context": "CREATE TABLE table_27940569_1 (laps INTEGER)"
  },
  {
    "answer": "SELECT represent_province FROM table_27946889_2 WHERE hometown = \"Woerden\"",
    "question_en": "What is the represent province for the contestant whose hometown is Woerden? ",
    "question_th": " จังหวัดที่เป็นตัวแทนของผู้เข้าแข่งขันที่มีบ้านเกิดคือวอร์เดนคือจังหวัดใด",
    "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_en": "How many contestants are 1.80 mtr. in height? ",
    "question_th": " สูง 1.80 ม. มีผู้เข้าแข่งขันกี่คน ส่วนสูงเหรอ?",
    "context": "CREATE TABLE table_27946889_2 (contestant VARCHAR, height__mtr_ VARCHAR)"
  },
  {
    "answer": "SELECT episode FROM table_27987623_3 WHERE viewers__millions_ = \"0.296\"",
    "question_en": "Which episode had viewership of 0.296 million?",
    "question_th": "ตอนไหนมีผู้ชม 0.296 ล้าน?",
    "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_en": "How many timeslots had viewers of 0.238 million?",
    "question_th": "มีกี่ครั้งที่มีผู้ชม 0.238 ล้านคน?",
    "context": "CREATE TABLE table_27987623_3 (timeslot VARCHAR, viewers__millions_ VARCHAR)"
  },
  {
    "answer": "SELECT episode FROM table_27987623_3 WHERE order = 1",
    "question_en": "Which episode was #1 in the order?",
    "question_th": "ภาคไหนได้อันดับ 1 ตามลำดับ?",
    "context": "CREATE TABLE table_27987623_3 (episode VARCHAR, order VARCHAR)"
  },
  {
    "answer": "SELECT density_in_2011___km²_ FROM table_2801442_1 WHERE population__2011_census_ = 2320529",
    "question_en": "What's the density in the district with 2320529 citizens in 2011?",
    "question_th": "ความหนาแน่นในเขตที่มีพลเมือง 2320529 คนในปี 2554 เป็นเท่าใด",
    "context": "CREATE TABLE table_2801442_1 (density_in_2011___km²_ VARCHAR, population__2011_census_ VARCHAR)"
  },
  {
    "answer": "SELECT code FROM table_2801442_1 WHERE population__2011_census_ = 312520",
    "question_en": "What's the code of the district in which 312520 people lived in 2011?",
    "question_th": "รหัสเขตที่มีคนอาศัยอยู่ 312520 คนในปี 2554 คืออะไร?",
    "context": "CREATE TABLE table_2801442_1 (code VARCHAR, population__2011_census_ VARCHAR)"
  },
  {
    "answer": "SELECT code FROM table_2801442_1 WHERE density_in_2011___km²_ = \"800.5\"",
    "question_en": "What's the code of the district with 800.5 people per km2?",
    "question_th": "รหัสอำเภอที่มีคน 800.5 คนต่อ km2 คืออะไร?",
    "context": "CREATE TABLE table_2801442_1 (code VARCHAR, density_in_2011___km²_ VARCHAR)"
  },
  {
    "answer": "SELECT MIN(population__2011_census_) FROM table_2801442_1 WHERE code = \"GP\"",
    "question_en": "How many people lived in the district with a code GP in 2011?",
    "question_th": "มีกี่คนที่อาศัยอยู่ในเขตที่มีรหัส GP ในปี 2554",
    "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_en": "How many people lived in the district whose headquarters is in Bhubaneswar in 2001?",
    "question_th": "มีกี่คนที่อาศัยอยู่ในเขตซึ่งมีสำนักงานใหญ่อยู่ที่ภูพเนศวรในปี 2544",
    "context": "CREATE TABLE table_2801442_1 (population__2001_census_ VARCHAR, headquarters VARCHAR)"
  },
  {
    "answer": "SELECT MIN(area__km²_) FROM table_2801442_1 WHERE code = \"BW\"",
    "question_en": "How big (in km2) is the district with a code BW?",
    "question_th": "เขตที่มีรหัส BW ใหญ่แค่ไหน (ในหน่วย km2)",
    "context": "CREATE TABLE table_2801442_1 (area__km²_ INTEGER, code VARCHAR)"
  },
  {
    "answer": "SELECT MIN(no_in_season) FROM table_28014096_1 WHERE production_code = \"2T6206\"",
    "question_en": "What is the number of this season's episode that had the production code 2t6206?",
    "question_th": "ซีซั่นนี้มีรหัสการผลิต 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_en": "What episode number of the series had a production code of bdf409?",
    "question_th": "ซีรีส์เรื่องไหนมีรหัสการผลิต 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_en": "What episode number of the season was written by Tom Garrigus and had 2.31 million u.s. viewers?",
    "question_th": "Tom Garrigus เขียนบทหมายเลขตอนใดของซีซันและมีผู้ชม 2.31 ล้านคน",
    "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_en": "What is the highest numbered episode in the series?",
    "question_th": "ตอนใดที่มีจำนวนมากที่สุดในซีรีส์คือตอนใด",
    "context": "CREATE TABLE table_28019988_5 (series__number INTEGER)"
  },
  {
    "answer": "SELECT MIN(series__number) FROM table_28019988_5 WHERE production_code = \"BDF405\"",
    "question_en": "What episode number in the series had a production code of bdf405?",
    "question_th": "ซีรีส์เรื่องใดมีรหัสการผลิต bdf405?",
    "context": "CREATE TABLE table_28019988_5 (series__number INTEGER, production_code VARCHAR)"
  },
  {
    "answer": "SELECT operator FROM table_28035004_1 WHERE bodybuilder = \"Roe\"",
    "question_en": "Who is the operator when Roe was the bodybuilder?",
    "question_th": "ใครคือผู้ดำเนินการในสมัยที่โรเป็นนักเพาะกาย?",
    "context": "CREATE TABLE table_28035004_1 (operator VARCHAR, bodybuilder VARCHAR)"
  },
  {
    "answer": "SELECT variant FROM table_28035004_1 WHERE bodybuilder = \"Alexander\"",
    "question_en": "What is the variant when Alexander was the bodybuilder?",
    "question_th": "อะไรคือตัวแปรเมื่ออเล็กซานเดอร์เป็นนักเพาะกาย?",
    "context": "CREATE TABLE table_28035004_1 (variant VARCHAR, bodybuilder VARCHAR)"
  },
  {
    "answer": "SELECT bodybuilder FROM table_28035004_1 WHERE operator = \"Coventry\"",
    "question_en": "Who was the bodybuilder when Coventry was operating?",
    "question_th": "ใครคือนักเพาะกายตอนที่โคเวนทรีเปิดทำการ?",
    "context": "CREATE TABLE table_28035004_1 (bodybuilder VARCHAR, operator VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(variant) FROM table_28035004_1 WHERE bodybuilder = \"Northern Counties\"",
    "question_en": "How many different variants are there for Northern Counties bodybuilder?",
    "question_th": "นักเพาะกายของ Northern County มีกี่สายพันธุ์?",
    "context": "CREATE TABLE table_28035004_1 (variant VARCHAR, bodybuilder VARCHAR)"
  },
  {
    "answer": "SELECT operator FROM table_28035004_1 WHERE bodybuilder = \"Willowbrook\"",
    "question_en": "Who is the operator when willowbrook was the bodybuilder?",
    "question_th": "ใครคือผู้ดำเนินการเมื่อ Willowbrook เป็นนักเพาะกาย?",
    "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_en": "How many teams had a point margin of 48?",
    "question_th": "มีกี่ทีมที่มีแต้มมาร์จิ้น 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éziers\"",
    "question_en": "How many teams eliminated béziers from competition?",
    "question_th": "มีกี่ทีมที่กำจัดเบซิเยร์ออกจากการแข่งขัน?",
    "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_en": "Who was eliminated from the competition when pau proceed to the quarter final?",
    "question_th": "ใครถูกคัดออกจากการแข่งขันเมื่อโปเข้าสู่รอบก่อนรองชนะเลิศ?",
    "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_en": "Who was eliminated from the competition when connacht to the quarter final?",
    "question_th": "ใครถูกตัดออกจากการแข่งขันเมื่อเข้ารอบก่อนรองชนะเลิศ?",
    "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_en": "Who proceeded to the quarter final when the london irish were eliminated from competition?",
    "question_th": "ใครได้ผ่านเข้ารอบก่อนรองชนะเลิศเมื่อลอนดอนไอริชตกรอบจากการแข่งขัน?",
    "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_en": "What was the aggregate score for the match won by Brive?",
    "question_th": "คะแนนรวมของการแข่งขันที่ Brive ชนะคือเท่าไร?",
    "context": "CREATE TABLE table_28068063_2 (aggregate_score VARCHAR, winners VARCHAR)"
  },
  {
    "answer": "SELECT match_points FROM table_28068063_2 WHERE winners = \"Connacht\"",
    "question_en": "What was the match points score for the match won by Connacht?",
    "question_th": "คะแนนการแข่งขันสำหรับการแข่งขันที่ Connacht ชนะคืออะไร?",
    "context": "CREATE TABLE table_28068063_2 (match_points VARCHAR, winners VARCHAR)"
  },
  {
    "answer": "SELECT aggregate_score FROM table_28068063_2 WHERE winners = \"Viadana\"",
    "question_en": "What was the aggregate score for the match won by Viadana?",
    "question_th": "คะแนนรวมของการแข่งขันที่ชนะโดย 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_en": "Name the cfl team for patrice denis",
    "question_th": "ตั้งชื่อทีม cfl สำหรับ ปาทริซ เดนิส",
    "context": "CREATE TABLE table_28059992_2 (cfl_team VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT cfl_team FROM table_28059992_2 WHERE player = \"Robert Beveridge\"",
    "question_en": "Name the cfl team for robert beveridge",
    "question_th": "ตั้งชื่อทีม cfl สำหรับโรเบิร์ต เบอริดจ์",
    "context": "CREATE TABLE table_28059992_2 (cfl_team VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_28059992_2 WHERE position = \"DL\"",
    "question_en": "Name the college for dl",
    "question_th": "ตั้งชื่อวิทยาลัยสำหรับ dl",
    "context": "CREATE TABLE table_28059992_2 (college VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(college) FROM table_28059992_2 WHERE player = \"Jerome Pathon\"",
    "question_en": "Name the number of colleges for jerome pathon",
    "question_th": "ตั้งชื่อจำนวนวิทยาลัยของเจอโรม พาทอน",
    "context": "CREATE TABLE table_28059992_2 (college VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(cfl_team) FROM table_28059992_2 WHERE player = \"Jeff Traversy\"",
    "question_en": "Name the number of cfl teams for jeff traversy",
    "question_th": "ตั้งชื่อจำนวนทีม cfl สำหรับ 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_en": "Name the position for british columbia",
    "question_th": "ตั้งชื่อตำแหน่งสำหรับบริติชโคลัมเบีย",
    "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_en": "What original air date was the episode with production code of 5.05?",
    "question_th": "ออกอากาศตอนแรกรหัสการผลิต 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_en": "Who wrote episode with production code 1.01?",
    "question_th": "ใครเป็นคนเขียนตอนที่มีรหัสการผลิต 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_en": "What is the title when the director is Maynard C. Virgil i ?",
    "question_th": "ผู้กำกับคือ 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_en": "Who is the director when the production code is 60034?",
    "question_th": "ใครเป็นผู้กำกับเมื่อรหัสการผลิตคือ 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_en": "What is the name of the episode with 418 as the production code?",
    "question_th": "ตอนที่ 418 เป็นรหัสการผลิตชื่ออะไรครับ?",
    "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_en": "What episoe number in the season originally aired on February 11, 1988?",
    "question_th": "หมายเลขตอนใดของซีซันที่ออกอากาศครั้งแรกเมื่อวันที่ 11 กุมภาพันธ์ พ.ศ. 2531",
    "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_en": "What episode number in the series is also number 17 in the season?",
    "question_th": "หมายเลขตอนใดในซีรีส์คือหมายเลข 17 ในฤดูกาลนี้ด้วย?",
    "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_en": "What is the production code for episode 96 in the series?",
    "question_th": "รหัสการผลิตสำหรับตอนที่ 96 ในซีรีส์คืออะไร?",
    "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_en": "What is the production code that was written by matt robinson?",
    "question_th": "รหัสการผลิตที่ 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_en": "Which title has 147 as no. in series?",
    "question_th": "ซึ่งชื่อเรื่องมี 147 เป็นลำดับที่. ในซีรีส์?",
    "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_en": "What is the original air date the was written by mark st. germain and direct by jay sandrich?",
    "question_th": "วันที่ออกอากาศเดิมคือวันที่เท่าไรที่เขียนโดย mark st. Germain และกำกับโดยเจย์ แซนดริช?",
    "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ğlu Piatti Murat Bozok Erol Kaynar\"",
    "question_en": "What are the networks whose version of the show includes the judges batuhan zeynioğlu piatti murat bozok erol kaynar?",
    "question_th": "เครือข่ายใดบ้างที่มีผู้ตัดสินในเวอร์ชันของการแสดงคือ batuhan zeynioğlu 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_en": "How many networks are there that include the judges pete goffe-wood andrew atkinson benny masekwameng?",
    "question_th": "มีเครือข่ายกี่แห่งที่รวมกรรมการ พีท กอฟฟี่-วูด แอนดรูว์ แอตกินสัน เบนนี่ มาเสกเม็ง?",
    "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_en": "How many networks are there whose version of the shows includes judges tba and the presenter is Arbana Osmani?",
    "question_th": "มีกี่เครือข่ายที่มีการแสดงในเวอร์ชันที่มีผู้พิพากษา tba และผู้นำเสนอคือ 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_en": "How many sets of presenters are there for the version of the show named Celebrity Masterchef?",
    "question_th": "เวอร์ชั่นรายการ 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_en": "Who is the incumbent of district pa-8?",
    "question_th": "ใครคือผู้ดำรงตำแหน่ง อ.ป่า-8?",
    "context": "CREATE TABLE table_28188239_1 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(incumbent) FROM table_28188239_1 WHERE district = \"LA-1\"",
    "question_en": "How many incumbents are in district la-1?",
    "question_th": "ในเขตละ 1 มีผู้ดำรงตำแหน่งกี่คน?",
    "context": "CREATE TABLE table_28188239_1 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT directed_by FROM table_28194879_1 WHERE production_code = \"PABF05\"",
    "question_en": "Who directed the episode whose production code is pabf05?",
    "question_th": "ใครกำกับตอนที่มีรหัสการผลิต 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_en": "What is the last number in season of the episodes written by Dan Vebber?",
    "question_th": "หมายเลขสุดท้ายในฤดูกาลของตอนที่เขียนโดย 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_en": "What is the number in season of the episode whose production code is pabf05?",
    "question_th": "หมายเลขในซีซันของตอนที่มีรหัสการผลิตคือ 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_en": "When were the Spartans founded?",
    "question_th": "ชาวสปาร์ตันก่อตั้งขึ้นเมื่อใด",
    "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_en": "How many affiliations does the University of Toledo have?",
    "question_th": "University of Toledo มีความเกี่ยวข้องกี่แห่ง?",
    "context": "CREATE TABLE table_28211213_1 (affiliation VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT affiliation FROM table_28211213_1 WHERE institution = \"Davenport University\"",
    "question_en": "What is the affiliation of Davenport University?",
    "question_th": "มหาวิทยาลัยดาเวนพอร์ตมีความเกี่ยวข้องอะไร?",
    "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_en": "What is the highest 2001 population when the ethnic group is white: british?",
    "question_th": "ประชากรในปี 2544 มีกลุ่มชาติพันธุ์ผิวขาว: บริติช สูงสุดคือเท่าใด",
    "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_en": "How many times is the ethnic group other: total?",
    "question_th": "ชาติพันธุ์อื่นมีกี่ครั้ง: ทั้งหมด?",
    "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_en": "What is the highest 2011 population when the ethnic group is asian or asian british: asian other?",
    "question_th": "ประชากรสูงสุดในปี 2011 คือเท่าใดเมื่อกลุ่มชาติพันธุ์เป็นชาวเอเชียหรือชาวอังกฤษชาวเอเชีย: ชาวเอเชียอื่นๆ",
    "context": "CREATE TABLE table_282413_3 (ethnic_group VARCHAR)"
  },
  {
    "answer": "SELECT affiliation FROM table_28253870_1 WHERE enrollment = 27209",
    "question_en": "Name the affiliation for 27209 enrollment",
    "question_th": "ตั้งชื่อสังกัดสำหรับการลงทะเบียน 27209",
    "context": "CREATE TABLE table_28253870_1 (affiliation VARCHAR, enrollment VARCHAR)"
  },
  {
    "answer": "SELECT MIN(founded) FROM table_28253870_1",
    "question_en": "Name the least founded",
    "question_th": "ตั้งชื่อก่อตั้งน้อยที่สุด",
    "context": "CREATE TABLE table_28253870_1 (founded INTEGER)"
  },
  {
    "answer": "SELECT founded FROM table_28253870_1 WHERE institution = \"Florida State University\"",
    "question_en": "Name the founded for florida state university",
    "question_th": "ตั้งชื่อผู้ก่อตั้งสำหรับมหาวิทยาลัยแห่งรัฐฟลอริดา",
    "context": "CREATE TABLE table_28253870_1 (founded VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_28253870_1 WHERE team_nickname = \"Yellow Jackets\"",
    "question_en": "Name the location for yellow jackets",
    "question_th": "ตั้งชื่อสถานที่สำหรับเสื้อเหลือง",
    "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_en": "How many college teams have a player with a nationality of Russia?",
    "question_th": "มีทีมวิทยาลัยกี่ทีมที่มีผู้เล่นสัญชาติรัสเซีย?",
    "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_en": "Which pick did Michel Larocque receive?",
    "question_th": "Michel Larocque ได้รับตัวเลือกใด",
    "context": "CREATE TABLE table_2840500_6 (pick VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT nhl_team FROM table_2840500_6 WHERE player = \"Blaine Russell\"",
    "question_en": "Which team picked Blaine Russell?",
    "question_th": "ทีมไหนเลือกเบลน รัสเซล?",
    "context": "CREATE TABLE table_2840500_6 (nhl_team VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(district_home) FROM table_2841865_2 WHERE congress = \"87th\"",
    "question_en": "How many entries for district home are listed for the 87th congress?",
    "question_th": "มีรายการบ้านของเขตจำนวนเท่าใดสำหรับการประชุมรัฐสภาครั้งที่ 87",
    "context": "CREATE TABLE table_2841865_2 (district_home VARCHAR, congress VARCHAR)"
  },
  {
    "answer": "SELECT years FROM table_2841865_2 WHERE congress = \"96th\"",
    "question_en": "What time span is listed under years for the 96th congres?",
    "question_th": "ช่วงเวลาใดที่ระบุไว้ภายใต้ปีสำหรับการประชุมใหญ่ครั้งที่ 96",
    "context": "CREATE TABLE table_2841865_2 (years VARCHAR, congress VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_2841865_2 WHERE congress = \"85th\"",
    "question_en": "What party is listed for the Representative under the 85th congress?",
    "question_th": "พรรคใดมีรายชื่อเป็นผู้แทนภายใต้รัฐสภาครั้งที่ 85",
    "context": "CREATE TABLE table_2841865_2 (party VARCHAR, congress VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(party) FROM table_2841865_2 WHERE congress = \"69th\"",
    "question_en": "How many entries are listed for party during the 69th congress?",
    "question_th": "มีรายชื่อกี่รายการสำหรับงานปาร์ตี้ระหว่างการประชุมคองเกรสครั้งที่ 69?",
    "context": "CREATE TABLE table_2841865_2 (party VARCHAR, congress VARCHAR)"
  },
  {
    "answer": "SELECT years FROM table_2841865_2 WHERE congress = \"72nd\"",
    "question_en": "What frame of time is listed under years during the 72nd congress?",
    "question_th": "กรอบเวลาใดที่ระบุไว้ภายใต้ปีต่างๆ ในระหว่างการประชุมสมัชชาครั้งที่ 72",
    "context": "CREATE TABLE table_2841865_2 (years VARCHAR, congress VARCHAR)"
  },
  {
    "answer": "SELECT representative FROM table_2841865_2 WHERE congress = \"112th\"",
    "question_en": "What name is listed under representative for the 112th congress?",
    "question_th": "มีชื่ออะไรบ้างภายใต้ตัวแทนของการประชุมรัฐสภาครั้งที่ 112",
    "context": "CREATE TABLE table_2841865_2 (representative VARCHAR, congress VARCHAR)"
  },
  {
    "answer": "SELECT MAX(runner_up) FROM table_28457809_3 WHERE province = \"Alberta\"",
    "question_en": "What is the value of the runner up column for the Alberta province?",
    "question_th": "คอลัมน์รองชนะเลิศของจังหวัดอัลเบอร์ตาราคาเท่าไหร่?",
    "context": "CREATE TABLE table_28457809_3 (runner_up INTEGER, province VARCHAR)"
  },
  {
    "answer": "SELECT first_llcr FROM table_28457809_3 WHERE province = \"Ontario\"",
    "question_en": "What year was Ontario's first LLCR?",
    "question_th": "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_en": "What is the pinyin name for the english name xin county?",
    "question_th": "ชื่อพินอินของชื่อภาษาอังกฤษว่า xin county คืออะไร?",
    "context": "CREATE TABLE table_2847477_2 (pinyin VARCHAR, english_name VARCHAR)"
  },
  {
    "answer": "SELECT area FROM table_2847477_2 WHERE simplified = \"罗山县\"",
    "question_en": "What is the area of 罗山县?",
    "question_th": "罗yama县 มีพื้นที่เท่าใด?",
    "context": "CREATE TABLE table_2847477_2 (area VARCHAR, simplified VARCHAR)"
  },
  {
    "answer": "SELECT english_name FROM table_2847477_2 WHERE pinyin = \"Gùshǐ Xiàn\"",
    "question_en": "What is the English name of gùshǐ xiàn?",
    "question_th": "gùshǐ xiàn ชื่อภาษาอังกฤษว่าอะไร?",
    "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_en": "How many simplified names are there for xin county?",
    "question_th": "มณฑลซินมีชื่อย่อกี่ชื่อ?",
    "context": "CREATE TABLE table_2847477_2 (simplified VARCHAR, english_name VARCHAR)"
  },
  {
    "answer": "SELECT MAX(density) FROM table_2847477_2 WHERE area = 1512",
    "question_en": "What is the density of the place with an area of 1512?",
    "question_th": "ความหนาแน่นของสถานที่ที่มีพื้นที่ 1512 เป็นเท่าใด",
    "context": "CREATE TABLE table_2847477_2 (density INTEGER, area VARCHAR)"
  },
  {
    "answer": "SELECT area FROM table_2847477_2 WHERE english_name = \"Xin County\"",
    "question_en": "What is the area of xin county?",
    "question_th": "มณฑลซินมีพื้นที่เท่าไร?",
    "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_en": "How many positions are associated with the St. Louis Blues?",
    "question_th": "มีกี่ตำแหน่งที่เกี่ยวข้องกับทีมเซนต์หลุยส์ บลูส์?",
    "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_en": "Which junior team is associated with an NHL pick by the Buffalo Sabres?",
    "question_th": "ทีมรุ่นน้องคนใดที่เกี่ยวข้องกับการเลือก NHL โดย 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_en": "Which position was selected for by the Toronto Maple Leafs?",
    "question_th": "ตำแหน่งใดที่ถูกเลือกโดยโตรอนโต เมเปิล ลีฟส์?",
    "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_en": "How many different college/junior/club teams had player John Dzikowski?",
    "question_th": "ทีมวิทยาลัย/จูเนียร์/สโมสรมีผู้เล่น 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_en": "What pick was Greg Strome?",
    "question_th": "Greg Strom เลือกอะไร?",
    "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_en": "What is the gender of the  cunningham hill infant school?",
    "question_th": "เพศของโรงเรียนเด็กทารกคันนิงแฮมฮิลล์คืออะไร?",
    "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_en": "What is the gender with a age range of 3-11 at the st adrian roman catholic primary school?",
    "question_th": "เพศใดในช่วงอายุ 3-11 ปีในโรงเรียนประถมศึกษาคาทอลิกเซนต์เอเดรียนโรมัน",
    "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_en": "What is the website of the cunningham hill infant school?",
    "question_th": "เว็บไซต์ของ 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_en": "Where is the cunningham hill infant school located?",
    "question_th": "โรงเรียนเด็กทารกคันนิงแฮม ฮิลล์ ตั้งอยู่ที่ไหน",
    "context": "CREATE TABLE table_28523_2 (location VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT event_3_deadlift FROM table_28540428_3 WHERE name = \"Hennie Jordan\"",
    "question_en": "Name the event 3 deadlift for hennie jordan",
    "question_th": "ตั้งชื่อเหตุการณ์ 3 deadlift สำหรับ 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_en": "How many rebounds per game did Andrej Džaković average when playing 35  minutes per game?",
    "question_th": "Andrej Džaković เฉลี่ยได้กี่รีบาวด์ต่อเกมเมื่อเล่น 35 นาทีต่อเกม",
    "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_en": "What are all the winning records when the result is Scotland won on points table and the Runner-Up result is [[|]] 4 points?",
    "question_th": "อะไรคือสถิติการชนะทั้งหมดเมื่อผลสกอตแลนด์ชนะในตารางคะแนนและผลรองชนะเลิศคือ [[|]] 4 แต้ม?",
    "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_en": "What is the runner-up record where winner record is Ireland 59 points?",
    "question_th": "สถิติรองชนะเลิศคืออะไรโดยสถิติผู้ชนะคือไอร์แลนด์ 59 แต้ม?",
    "context": "CREATE TABLE table_28601467_1 (runner_up VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT host_nation_s_ FROM table_28601467_1 WHERE year = 2004",
    "question_en": "Which nation hosted the competition in 2004?",
    "question_th": "ประเทศใดเป็นเจ้าภาพการแข่งขันในปี 2547",
    "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_en": "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?",
    "question_th": "สนามสุดท้ายที่อังกฤษเร่งการแข่งขันและสถิติรองชนะเลิศคือ [[|]] 4 แต้ม และสถิติผู้ชนะคือ [[|]] 6 แต้ม?",
    "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_en": "What is the most recent year in which the winner record is Ireland 4 points?",
    "question_th": "ปีล่าสุดที่สถิติผู้ชนะคือไอร์แลนด์ 4 แต้มคือปีใด?",
    "context": "CREATE TABLE table_28601467_1 (year INTEGER, winner VARCHAR)"
  },
  {
    "answer": "SELECT under_president FROM table_2861364_1 WHERE executed_person = \"Gunther Volz\"",
    "question_en": "under which president was gunther volz executed?",
    "question_th": "กุนเธอร์ โวลซ์ ประธานาธิบดีคนไหนถูกประหารชีวิต?",
    "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_en": "who was executed during president charles de gaulle's reign for thr crime of child murder after rape?",
    "question_th": "ใครถูกประหารชีวิตในรัชสมัยของประธานาธิบดีชาร์ลส์ เดอ โกล ฐานก่ออาชญากรรมคดีฆาตกรรมเด็กหลังถูกข่มขืน?",
    "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_en": "where was mazouz ghaouti executed?",
    "question_th": "mazouz ghaouti ถูกประหารที่ไหน?",
    "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_en": "for what crime was gunther volz executed at metz?",
    "question_th": "Gunther Volz ถูกประหารชีวิตที่เมตซ์ด้วยข้อหาก่ออาชญากรรมอะไร",
    "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_en": "How many of Asian release statuses does Uno HD have?",
    "question_th": "Uno HD มีสถานะการวางจำหน่ายในเอเชียกี่สถานะ?",
    "context": "CREATE TABLE table_28621502_1 (asia VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_28621502_1 WHERE publisher = \"GameHouse Live\"",
    "question_en": "Which titles have been published by Gamehouse Live?",
    "question_th": "เกมใดบ้างที่ได้รับการเผยแพร่โดย Gamehouse Live?",
    "context": "CREATE TABLE table_28621502_1 (title VARCHAR, publisher VARCHAR)"
  },
  {
    "answer": "SELECT reunion_bmi FROM table_28654454_5 WHERE contestant = \"Pinky\"",
    "question_en": "What was pinky's bmi at the reunion?",
    "question_th": "ค่าดัชนีมวลกายของพิ้งกี้ในงานรวมตัวเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_28654454_5 (reunion_bmi VARCHAR, contestant VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(reunion_bmi) FROM table_28654454_5 WHERE contestant = \"Miles\"",
    "question_en": "What was miles's bmi att the reunion?",
    "question_th": "ค่าดัชนีมวลกายของไมล์ในการรวมตัวเป็นเท่าใด",
    "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_en": "How many lbs were lost at the reunion by the contestant whose finale weight was 151.4?",
    "question_th": "ผู้เข้าแข่งขันที่มีน้ำหนักตอนจบอยู่ที่ 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_en": "How many contestants had a starting bmi of 33.1?",
    "question_th": "มีผู้เข้าแข่งขันกี่คนที่มีค่าดัชนีมวลกายเริ่มต้นที่ 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_en": "What is the reunion weight of the contestant that lost 52 lbs at the reunion?",
    "question_th": "น้ำหนักรวมตัวของผู้เข้าแข่งขันที่ลดน้ำหนักไป 52 ปอนด์ในการรวมตัวเป็นเท่าใด",
    "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_en": "What is the reunion weight of the contestant who lost 74.4 lbs at the finale?",
    "question_th": "น้ำหนักรวมตัวของผู้เข้าแข่งขันที่เสียไป 74.4 ปอนด์ในรอบชิงชนะเลิศคือเท่าใด",
    "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_en": "Who is the team when the category is blocks per game?",
    "question_th": "ใครคือทีมเมื่อประเภทบล็อกต่อเกม?",
    "context": "CREATE TABLE table_28628309_8 (team VARCHAR, category VARCHAR)"
  },
  {
    "answer": "SELECT games_played FROM table_28628309_8 WHERE player = \"Jimmy Alapag\"",
    "question_en": "What is the listed in games played when the player is jimmy alapag?",
    "question_th": "รายการในเกมที่เล่นเมื่อผู้เล่นคือ 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_en": "What is the team when player is listed as Ronjay Buenafe?",
    "question_th": "ทีมคืออะไรเมื่อผู้เล่นระบุเป็น 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_en": "What is the name of the player when the category is listed as field goal percentage?",
    "question_th": "ชื่อของผู้เล่นคืออะไรเมื่อหมวดหมู่ถูกระบุเป็นเปอร์เซ็นต์การยิงประตู?",
    "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_en": "What is the games played when the category is points per game?",
    "question_th": "เกมที่เล่นคืออะไรเมื่อหมวดหมู่เป็นแต้มต่อเกม?",
    "context": "CREATE TABLE table_28628309_8 (games_played INTEGER, category VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_28628309_9 WHERE category = \"Steals per game\"",
    "question_en": "Who is the player when the category is steals per game?",
    "question_th": "ใครคือผู้เล่นเมื่อประเภทขโมยต่อเกม?",
    "context": "CREATE TABLE table_28628309_9 (player VARCHAR, category VARCHAR)"
  },
  {
    "answer": "SELECT category FROM table_28628309_9 WHERE player = \"Olsen Racela\"",
    "question_en": "What are the names of the categories when the player is olsen racela?",
    "question_th": "ชื่อหมวดหมู่เมื่อผู้เล่นคือ 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_en": "How many times is a total listed when the player is Jay Washington?",
    "question_th": "มีการระบุรายการทั้งหมดกี่ครั้งเมื่อผู้เล่นคือ 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_en": "What is the total listed when the average is 0.667 and the category is 3-pt field goal percentage?",
    "question_th": "รายการทั้งหมดเป็นเท่าใดเมื่อค่าเฉลี่ยคือ 0.667 และหมวดหมู่เป็นเปอร์เซ็นต์การยิงประตู 3 แต้ม",
    "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_en": "What is the name of the player when the category is 3-pt field goal percentage?",
    "question_th": "ชื่อของผู้เล่นเมื่อประเภทเป็นเปอร์เซ็นต์การยิงประตู 3 คะแนนคืออะไร?",
    "context": "CREATE TABLE table_28628309_9 (player VARCHAR, category VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_2866514_1 WHERE us_viewers__million_ = \"5.66\"",
    "question_en": "What are the titles of episodes with 5.66 million US viewers?",
    "question_th": "ชื่อเรื่องของตอนที่มีผู้ชม 5.66 ล้านคนในสหรัฐฯ คืออะไร?",
    "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_en": "What are the titles of episodes directed by whitney ransick?",
    "question_th": "วิทนีย์ แรนซิค กำกับโดย วิทนีย์ แรนซิค ชื่อเรื่องว่าอะไร?",
    "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_en": "Who wrote the episode with 3.96 million US viewers?",
    "question_th": "ใครเป็นคนเขียนตอนนี้โดยมีผู้ชม 3.96 ล้านคนในสหรัฐฯ?",
    "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_en": "What was the maximum value that Christer Tornell gave when Trine Dehli Cleve gave a 9?",
    "question_th": "มูลค่าสูงสุดที่ Christer Tornell ให้เมื่อ Trine Dehli Cleve ให้ 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_en": "How many games did Robert Peare play?",
    "question_th": "Robert Peare ลงเล่นกี่เกม?",
    "context": "CREATE TABLE table_28693349_2 (games INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(free_throws) FROM table_28693349_2 WHERE player = \"Charles Pearman\"",
    "question_en": "How many free throws did Charles Pearman score?",
    "question_th": "Charles Pearman ยิงลูกโทษได้กี่ครั้ง?",
    "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_en": "How many shared titles does the club whose last final was 2012 have?",
    "question_th": "สโมสรที่เข้าชิงครั้งสุดท้ายเมื่อปี 2012 คว้าแชมป์ร่วมกันได้กี่ครั้ง?",
    "context": "CREATE TABLE table_2869837_1 (Shared VARCHAR, last_final VARCHAR)"
  },
  {
    "answer": "SELECT last_final FROM table_2869837_1 WHERE last_title = \"1990\"",
    "question_en": "What was the year of the last final for the club whose last title was 1990?",
    "question_th": "สโมสรที่คว้าแชมป์ครั้งสุดท้ายคือปี 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_en": "What is the minimum number of shared titles for the club whose last final was in 2006?",
    "question_th": "จำนวนการแชร์ตำแหน่งขั้นต่ำของสโมสรที่เข้าชิงครั้งสุดท้ายในปี 2549 คือเท่าใด?",
    "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_en": "What is the latest year of last final for the club whose last title was in 1994?",
    "question_th": "ปีล่าสุดของสโมสรที่คว้าแชมป์ครั้งสุดท้ายคือปี 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_en": "What are the number of runners up for Royal School Dungannon?",
    "question_th": "รองชนะเลิศอันดับ 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_en": "What is the track whent the vocal percussionist is unknown?",
    "question_th": "แทร็กไหนที่ไม่รู้จักนักร้องเพอร์คัชชัน?",
    "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_en": "Who is the arranger when the vocal percussionist is Alexei Kalveks and Dave Brennan?",
    "question_th": "ใครคือผู้เรียบเรียงเมื่อนักร้องนำคือ Alexei Kalveks และ 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_en": "What is the original artist when the vocal percussionist is Alexei Kalveks?",
    "question_th": "ศิลปินดั้งเดิมคืออะไรเมื่อนักร้องนำคือ 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_en": "How few km 2 does the  area with Nay Pyi Taw as capital cover?",
    "question_th": "พื้นที่ที่มีเนปิดอว์เป็นเมืองหลวงครอบคลุมพื้นที่กี่กิโลเมตร 2?",
    "context": "CREATE TABLE table_28741_1 (area__km_2__ INTEGER, capital VARCHAR)"
  },
  {
    "answer": "SELECT population_2012_ FROM table_28741_1 WHERE country = \"Indonesia\"",
    "question_en": "What is the 2012 population of Indonesia?",
    "question_th": "ประชากรอินโดนีเซียในปี 2555 เป็นเท่าใด",
    "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_en": "What are the numbers for GDP (nominal) per capita and USD (2012) of the area with Phnom Penh as capital?",
    "question_th": "ตัวเลขสำหรับ GDP (ระบุ) ต่อหัวและ USD (2012) ของพื้นที่ที่มีพนมเปญเป็นเมืองหลวงคือเท่าใด",
    "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_en": "What is the distance of jockey Jason Titley?",
    "question_th": "จ๊อกกี้ Jason Titley มีระยะทางเท่าไร?",
    "context": "CREATE TABLE table_28750142_1 (distance VARCHAR, jockey VARCHAR)"
  },
  {
    "answer": "SELECT jockey FROM table_28750142_1 WHERE name = \"Pink Gin\"",
    "question_en": "What is the name of the jockey for Pink Gin?",
    "question_th": "จ๊อกกี้ของ 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_en": "The location attendance is ford center 17,021 on what dates?",
    "question_th": "ตำแหน่งผู้เข้างานคือ ford center 17,021 วันไหน?",
    "context": "CREATE TABLE table_28768469_10 (date VARCHAR, location_attendance VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(high_assists) FROM table_28768469_10 WHERE game = 73",
    "question_en": "In game 73, what were the total number of high assists?",
    "question_th": "ในเกมที่ 73 จำนวนแอสซิสต์สูงทั้งหมดเป็นเท่าใด?",
    "context": "CREATE TABLE table_28768469_10 (high_assists VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_28768469_2 WHERE date = \"October 20\"",
    "question_en": "What is the location for the game on October 20 with it's corresponding attendance?",
    "question_th": "สถานที่สำหรับเล่นเกมในวันที่ 20 ตุลาคมและมีผู้เข้าร่วมตรงกันคือที่ไหน?",
    "context": "CREATE TABLE table_28768469_2 (location_attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT director FROM table_28785738_1 WHERE no_in_season = 11",
    "question_en": "Who directed episode 11 of the season?",
    "question_th": "ใครเป็นผู้กำกับตอนที่ 11 ของซีซั่น?",
    "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_en": "How many episode titles does episode 19 in the season have?",
    "question_th": "ตอนที่ 19 ของซีซั่นนี้มีชื่อตอนกี่ตอนคะ?",
    "context": "CREATE TABLE table_28802668_3 (title VARCHAR, no_in_season VARCHAR)"
  },
  {
    "answer": "SELECT average FROM table_28798161_3 WHERE bbi = \"4/39\"",
    "question_en": "if the bbi is 4/39 what is the average",
    "question_th": "ถ้า bbi เท่ากับ 4/39 ค่าเฉลี่ยจะเป็นเท่าใด",
    "context": "CREATE TABLE table_28798161_3 (average VARCHAR, bbi VARCHAR)"
  },
  {
    "answer": "SELECT bbi FROM table_28798161_3 WHERE economy = \"3.63\"",
    "question_en": "if the economy is 3.63 what is the bbi",
    "question_th": "ถ้าเศรษฐกิจอยู่ที่ 3.63 bbi คืออะไร",
    "context": "CREATE TABLE table_28798161_3 (bbi VARCHAR, economy VARCHAR)"
  },
  {
    "answer": "SELECT MIN(4 AS wi) FROM table_28798161_3",
    "question_en": "in the leage what was the minimum 4wi",
    "question_th": "ในลีกคือ 4wi ขั้นต่ำคือเท่าไร",
    "context": "CREATE TABLE table_28798161_3 (Id VARCHAR)"
  },
  {
    "answer": "SELECT poor_law_union FROM table_28802165_1 WHERE townland = \"Marshalstown\"",
    "question_en": "What is the poor law union on Marshalstown?",
    "question_th": "สหภาพกฎหมายที่ไม่ดีใน 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_en": "What is the maximum acres in Castledermot?",
    "question_th": "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_en": "What is the civil parish of Aghafullim?",
    "question_th": "ตำบลพลเรือนของ 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_en": "How many acres is the townland of Maddenstown Middle?",
    "question_th": "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_en": "How many original air dates did the episode directed by Bethany rooney have?",
    "question_th": "ตอนที่กำกับโดยเบธานี รูนี่ย์ ออกอากาศต้นฉบับกี่วัน?",
    "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_en": "What is the production code for the episode that aired on October 15, 2004?",
    "question_th": "รหัสการผลิตตอนที่ออกอากาศวันที่ 15 ตุลาคม 2547 คืออะไร?",
    "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_en": "What is the original air date for episode graeme clifford directed and lindsay sturman wrote?",
    "question_th": "แกรม คลิฟฟอร์ด กำกับและลินด์ซีย์ สเตอร์แมนเขียนบทจะออกอากาศตอนแรกเมื่อใด",
    "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_en": "Who was the player that was picked by Los Angeles Kings?",
    "question_th": "ผู้เล่นคนไหนที่ถูกเลือกโดย 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_en": "What nationality was peter slamiar?",
    "question_th": "ปีเตอร์ สลาเมียร์ เป็นคนสัญชาติอะไร",
    "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_en": "What team did the New York Rangers recruit a player from?",
    "question_th": "New York Rangers รับสมัครนักเตะจากทีมใด?",
    "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_en": "How many countries had players named Marc Savard get picked?",
    "question_th": "มีกี่ประเทศที่มีผู้เล่นชื่อ Marc Savard ที่ถูกเลือก?",
    "context": "CREATE TABLE table_2886617_4 (nationality VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_2886617_4 WHERE nhl_team = \"Vancouver Canucks\"",
    "question_en": "What country does the player who joined the Vancouver Canucks originally hail from?",
    "question_th": "ผู้เล่นที่เข้าร่วมทีม Vancouver Canucks มาจากประเทศใด",
    "context": "CREATE TABLE table_2886617_4 (nationality VARCHAR, nhl_team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(pick) FROM table_2886617_4 WHERE player = \"Alyn McCauley\"",
    "question_en": "How many times did Alyn McCauley get picked?",
    "question_th": "Alyn McCauley ถูกเลือกกี่ครั้ง?",
    "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_en": "Which nationality has left wing as the position and college/junior/team is portland winterhawks (whl)?",
    "question_th": "สัญชาติใดที่ฝ่ายซ้ายดำรงตำแหน่งและวิทยาลัย/รุ่นน้อง/ทีมคือ 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_en": "Which nhl team has the player kevin mckay?",
    "question_th": "ทีม nhl ใดมีผู้เล่นเควินแม็คเคย์?",
    "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_en": "How many picks have canada as the nationality and larry courville is the player?",
    "question_th": "มีกี่คนที่เลือกแคนาดาเป็นสัญชาติ และแลร์รี่ คูร์วิลล์เป็นผู้เล่น?",
    "context": "CREATE TABLE table_2886617_3 (pick VARCHAR, nationality VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT pick FROM table_2886617_3 WHERE player = \"Marko Makinen\"",
    "question_en": "Which pick has marko makinen as the player?",
    "question_th": "ตัวเลือกใดที่มี Marko Makinen เป็นผู้เล่น?",
    "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_en": "What college club team did the Dallas Stars choose their draft pick from?",
    "question_th": "Dallas Stars เลือกทีมสโมสรวิทยาลัยทีมใด",
    "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_en": "Who was picked for the draft by St. Louis Blues?",
    "question_th": "ใครได้รับเลือกให้ร่างโดยเซนต์หลุยส์ บลูส์?",
    "context": "CREATE TABLE table_2886617_9 (player VARCHAR, nhl_team VARCHAR)"
  },
  {
    "answer": "SELECT stadium FROM table_28885977_1 WHERE location = \"Adelaide, South Australia\"",
    "question_en": "Which stadium is located in Adelaide, South Australia? ",
    "question_th": " สนามกีฬาใดตั้งอยู่ในเมืองแอดิเลด รัฐเซาท์ออสเตรเลีย",
    "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_en": "In what location was a stadium built for the St Kilda Football Club?",
    "question_th": "สนามกีฬาที่สร้างขึ้นสำหรับสโมสรฟุตบอลเซนต์คิลดาในสถานที่ใด",
    "context": "CREATE TABLE table_28885977_1 (location VARCHAR, built_for VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_28885977_1 WHERE stadium = \"Moorabbin Oval\"",
    "question_en": "What is the location of the Moorabbin Oval stadium?",
    "question_th": "สนามกีฬา Moorabbin Oval อยู่ที่ไหน?",
    "context": "CREATE TABLE table_28885977_1 (location VARCHAR, stadium VARCHAR)"
  },
  {
    "answer": "SELECT built_for FROM table_28885977_1 WHERE location = \"Adelaide, South Australia\"",
    "question_en": "What was the stadium in Adelaide, South Australia built for? ",
    "question_th": " สนามกีฬาในเมืองแอดิเลด รัฐเซาท์ออสเตรเลีย สร้างขึ้นเพื่ออะไร",
    "context": "CREATE TABLE table_28885977_1 (built_for VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT built_for FROM table_28885977_1 WHERE location = \"Moorabbin, Victoria\"",
    "question_en": "What was the stadium in Moorabbin, Victoria built for?",
    "question_th": "สนามกีฬาในเมืองมูแรบบิน รัฐวิกตอเรีย สร้างขึ้นเพื่ออะไร",
    "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_en": "What was the capacity at construction of the stadium in Gold Coast, Queensland? ",
    "question_th": " ความสามารถในการก่อสร้างสนามกีฬาในเมืองโกลด์โคสต์ รัฐควีนส์แลนด์ สามารถรองรับได้เท่าใด",
    "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_en": "how many total number of moto2/250cc when country is united states",
    "question_th": "moto2/250cc รวมทั้งหมดกี่คันครับเมื่อเป็นประเทศสหรัฐอเมริกา",
    "context": "CREATE TABLE table_2889810_2 (moto2_250cc VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT MIN(350 AS cc) FROM table_2889810_2",
    "question_en": "how many minimum 350cc has",
    "question_th": "350ccขั้นต่ำมีกี่อันครับ",
    "context": "CREATE TABLE table_2889810_2 (Id VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_2889810_2 WHERE moto3_125cc = 15",
    "question_en": "how many country has moto3/125cc with 15",
    "question_th": "มีกี่ประเทศที่มี moto3/125cc กับ 15",
    "context": "CREATE TABLE table_2889810_2 (country VARCHAR, moto3_125cc VARCHAR)"
  },
  {
    "answer": "SELECT reason FROM table_28898948_3 WHERE winner = \"Arthur Collins\"",
    "question_en": "When arthur collins is the winner what is the reason?",
    "question_th": "เมื่ออาเธอร์ คอลลินส์เป็นผู้ชนะ มีเหตุผลอะไร?",
    "context": "CREATE TABLE table_28898948_3 (reason VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_28898948_3 WHERE incumbent = \"Ihaia Tainui\"",
    "question_en": "When ihaia tainui is the incumbent what is the date?",
    "question_th": "เมื่อ ihaia tainui ดำรงตำแหน่งเป็นวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_28898948_3 (date VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_28898948_3 WHERE electorate = \"Rangitikei\"",
    "question_en": "When rangitikei is the electorate who is the winner?",
    "question_th": "เมื่อ rangitikei เป็นผู้มีสิทธิเลือกตั้งใครเป็นผู้ชนะ?",
    "context": "CREATE TABLE table_28898948_3 (winner VARCHAR, electorate VARCHAR)"
  },
  {
    "answer": "SELECT MAX(by_election) FROM table_28898948_3 WHERE electorate = \"Waikaia\"",
    "question_en": "When waikaia is the electorate what is the highest by-election?",
    "question_th": "เมื่อ Waikaia เป็นผู้มีสิทธิเลือกตั้ง การเลือกตั้งซ่อมสูงสุดคืออะไร?",
    "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_en": "When 1881 is the by-election and death is the reason who is the incumbent?",
    "question_th": "เมื่อ พ.ศ. 2424 มีการเลือกตั้งซ่อมและความตายเป็นเหตุ ใครเป็นผู้ดำรงตำแหน่ง?",
    "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_en": "What is the name of the partner that has a winner outcome and a hard surface?",
    "question_th": "ชื่อของพันธมิตรที่มีผลผู้ชนะและมีพื้นผิวแข็งคืออะไร?",
    "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_en": "How many week 2 scores have a week 7 score of 40 + 40 = 80?",
    "question_th": "คะแนนสัปดาห์ที่ 2 มีคะแนนสัปดาห์ที่ 7 เท่ากับ 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_en": "What is the smallest week 3 score?",
    "question_th": "คะแนนสัปดาห์ที่ 3 ที่น้อยที่สุดคือเท่าไร?",
    "context": "CREATE TABLE table_28946565_2 (week_3 INTEGER)"
  },
  {
    "answer": "SELECT couple FROM table_28946565_2 WHERE week_2 = 23",
    "question_en": "Which couple had a week 2 score of exactly 23?",
    "question_th": "คู่ไหนมีคะแนนสัปดาห์ที่ 2 เท่ากับ 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_en": "when 68 is the episode number what is the series number?",
    "question_th": "เมื่อ 68 เป็นเลขตอน เลขซีรีย์คือเลขอะไร?",
    "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_en": "when 69 is the episode number what is the air date?",
    "question_th": "ตอนที่ 69 คือเลขตอน ออกอากาศวันไหนคะ?",
    "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_en": "What draft pick is a goaltender?",
    "question_th": "ดราฟต์อะไรคือผู้รักษาประตู?",
    "context": "CREATE TABLE table_2897457_1 (pick__number VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_2897457_1 WHERE player = \"Olaf Kolzig\"",
    "question_en": "What position does Olaf Kolzig play?",
    "question_th": "Olaf Kolzig เล่นตำแหน่งอะไร?",
    "context": "CREATE TABLE table_2897457_1 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT nhl_team FROM table_2897457_1 WHERE nationality = \"Sweden\"",
    "question_en": "What team drafted a player from Sweden?",
    "question_th": "ทีมใดคัดเลือกนักเตะจากสวีเดน?",
    "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_en": "How many company commanders were commissioned or elected on November 12, 1861?",
    "question_th": "มีผู้บัญชาการกองร้อยกี่คนที่ได้รับมอบหมายหรือเลือกในวันที่ 12 พฤศจิกายน พ.ศ. 2404",
    "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_en": "In the 250 series on clay what were the scores?",
    "question_th": "ในซีรีย์ 250 บนดินเหนียวมีคะแนนเท่าไหร่?",
    "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_en": "what is the most amount of cattle where they live in british columbia",
    "question_th": "วัวจำนวนมากที่สุดที่พวกเขาอาศัยอยู่ในบริติชโคลัมเบียคือเท่าใด",
    "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_en": "what is the most number where cattle is 13000",
    "question_th": "วัวจำนวน 13,000 ตัวมากที่สุดคือเท่าใด",
    "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_en": "what is the amount where the area is new brunswick",
    "question_th": "พื้นที่ที่นิวบรันสวิกอยู่ที่เท่าไร",
    "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_en": "what is the location where there are over 200 cattle businesses",
    "question_th": "ที่ตั้งที่มีธุรกิจปศุสัตว์มากกว่า 200 แห่งอยู่ที่ไหน",
    "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_en": "what is the least amount of cattle head",
    "question_th": "หัวโคมีปริมาณน้อยที่สุดคือเท่าใด",
    "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_en": "what is the least amount of milk cattle in ontario",
    "question_th": "วัวนมในออนแทรีโอมีจำนวนน้อยที่สุดคือเท่าไร",
    "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_en": "What is the production code of the episode that was watched by 3.81 million U.S. viewers? ",
    "question_th": " รหัสการผลิตของตอนที่รับชมโดยผู้ชม 3.81 ล้านคนในสหรัฐอเมริกาคืออะไร?",
    "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_en": "Who wrote the episode with a production code of 116?",
    "question_th": "ใครเป็นคนเขียนตอนด้วยรหัสการผลิต 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_en": "What number episode in the series had and original United States air date of December 24, 2010?",
    "question_th": "ซีรีส์นี้มีจำนวนตอนใดและต้นฉบับของสหรัฐอเมริกาออกอากาศวันที่ 24 ธันวาคม พ.ศ. 2553",
    "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_en": "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?",
    "question_th": "ใครเป็นผู้เขียนบทที่กำกับโดย Jos Humphrey ซึ่งมีวันที่ออกอากาศดั้งเดิมของแคนาดาซึ่งไม่ทราบวันออกอากาศดั้งเดิมของสหรัฐอเมริกาและมีวันที่ออกอากาศดั้งเดิมของสหรัฐอเมริกาคือวันที่ 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_en": "What is the original United States air date of the episode written by Mike Ferris? ",
    "question_th": " วันที่ออกอากาศดั้งเดิมของสหรัฐอเมริกาของตอนที่เขียนโดย 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_en": "Who was Andrew and Georgies guest when Jamie and Johns guest was Joe Calzaghe?",
    "question_th": "ใครคือแขกของ Andrew และ Georgies ในตอนที่ Jamie และ Johns มาเป็นแขกรับเชิญคือ 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_en": "What were the scores when Jamie and Johns guest was Phillips Idowu?",
    "question_th": "คะแนนเมื่อแขกรับเชิญของ Jamie และ Johns คือ 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_en": "When was episode 02x02 first broadcast?",
    "question_th": "ตอนที่ 02x02 ออกอากาศครั้งแรกเมื่อไหร่?",
    "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_en": "Who was Andrew and Georgies guest when Jamie and Johns guest was Jessica Ennis?",
    "question_th": "ใครคือแขกของ Andrew และ Georgies เมื่อแขกของ Jamie และ Johns คือ 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_en": "When was episode 02x07 first broadcast?",
    "question_th": "ตอนที่ 02x07 ออกอากาศครั้งแรกเมื่อไหร่?",
    "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_en": "List all the MCs with peak ranking of 6 who were inducted in 2007.",
    "question_th": "รายชื่อ MC ทั้งหมดที่มีอันดับสูงสุด 6 คน ที่ได้รับการแต่งตั้งในปี 2550",
    "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_en": "List all the MCs with 5 appearances who were inducted in 2007?",
    "question_th": "รายชื่อพิธีกรทั้งหมด 5 คน ที่ได้รับการแต่งตั้งในปี 2550?",
    "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_en": "How many appearances by Meek Mill?",
    "question_th": "Meek Mill ลงเล่นกี่ครั้ง?",
    "context": "CREATE TABLE table_29160596_1 (appearances INTEGER, top_mc VARCHAR)"
  },
  {
    "answer": "SELECT championship FROM table_29163303_1 WHERE score = \"6–7 (4–7) , 3–6\"",
    "question_en": "What are the championship venues where the score was 6–7 (4–7) , 3–6?",
    "question_th": "สนามแข่งขันชิงแชมป์แห่งใดที่มีคะแนนเป็น 6–7 (4–7) , 3–6?",
    "context": "CREATE TABLE table_29163303_1 (championship VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_29163303_1 WHERE championship = \"Australian Open (6)\"",
    "question_en": "On what surface was the Australian Open (6) played on?",
    "question_th": "Australian Open (6) เล่นบนพื้นผิวใด?",
    "context": "CREATE TABLE table_29163303_1 (surface VARCHAR, championship VARCHAR)"
  },
  {
    "answer": "SELECT partner FROM table_29163303_1 WHERE year = 2003 AND surface = \"Hard\"",
    "question_en": "Who was Bob Bryan's partner/s on a hard surface in 2003?",
    "question_th": "ใครคือคู่หูของ Bob Bryan บนพื้นแข็งในปี 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_en": "which vessel area was called for on november 30, 1970",
    "question_th": "พื้นที่เรือใดที่ถูกเรียกไปเมื่อวันที่ 30 พฤศจิกายน พ.ศ. 2513",
    "context": "CREATE TABLE table_291768_1 (shipyard VARCHAR, commissioned VARCHAR)"
  },
  {
    "answer": "SELECT commissioned FROM table_291768_1 WHERE launched = \"September 20, 1968\"",
    "question_en": "what project was initially started before september 20, 1968",
    "question_th": "โครงการใดที่เริ่มเริ่มแรกก่อนวันที่ 20 กันยายน พ.ศ. 2511",
    "context": "CREATE TABLE table_291768_1 (commissioned VARCHAR, launched VARCHAR)"
  },
  {
    "answer": "SELECT launched FROM table_291768_1 WHERE commissioned = \"August 6, 1969\"",
    "question_en": "when was the first start date that actually began on august 6, 1969",
    "question_th": "เมื่อใดคือวันที่เริ่มต้นครั้งแรกซึ่งเริ่มจริงในวันที่ 6 สิงหาคม พ.ศ. 2512",
    "context": "CREATE TABLE table_291768_1 (launched VARCHAR, commissioned VARCHAR)"
  },
  {
    "answer": "SELECT directed_by FROM table_29273057_1 WHERE production_code = \"IP01003\"",
    "question_en": "Who directed the episode with production code ip01003? ",
    "question_th": " ใครกำกับตอนที่มีรหัสการผลิต 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_en": "How many poles does the European F3 Open series have?",
    "question_th": "European F3 Open series มีกี่เสา?",
    "context": "CREATE TABLE table_29434211_1 (poles VARCHAR, series VARCHAR)"
  },
  {
    "answer": "SELECT MAX(season) FROM table_29434211_1 WHERE podiums = 2",
    "question_en": "What is the maximum season that has exactly 2 podiums?",
    "question_th": "ฤดูกาลสูงสุดที่มี 2 โพเดียมพอดีคือเท่าไร?",
    "context": "CREATE TABLE table_29434211_1 (season INTEGER, podiums VARCHAR)"
  },
  {
    "answer": "SELECT written_by FROM table_29436007_1 WHERE no_in_season = 23",
    "question_en": "Who wrote episode 23 of the season?",
    "question_th": "ใครเป็นคนเขียนตอนที่ 23 ของซีซั่น?",
    "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_en": "How many seasons are there for the 3rd position?",
    "question_th": "ตำแหน่งที่ 3 มีกี่ฤดูกาล?",
    "context": "CREATE TABLE table_29471472_1 (season VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT MAX(season) FROM table_29471472_1 WHERE team = \"Autosport Academy\"",
    "question_en": "What season was the team autosport academy?",
    "question_th": "ทีมออโต้สปอร์ตอคาเดมี่เป็นฤดูกาลอะไร?",
    "context": "CREATE TABLE table_29471472_1 (season INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT series FROM table_29471472_1 WHERE races = 7",
    "question_en": "What is the series for race 7",
    "question_th": "การแข่งขันรอบที่ 7 มีรายการอะไรบ้าง",
    "context": "CREATE TABLE table_29471472_1 (series VARCHAR, races VARCHAR)"
  },
  {
    "answer": "SELECT MIN(season) FROM table_29471472_1 WHERE podiums = 7",
    "question_en": "What season shows podium 7?",
    "question_th": "ฤดูกาลใดที่แสดงโพเดียม 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_en": "How many French heads of state have a head of mission of Xavier Daufresne de la Chevalerie?",
    "question_th": "ประมุขแห่งรัฐของฝรั่งเศสมีหัวหน้าคณะผู้แทนของ 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_en": "What city is Tiffin University located in?",
    "question_th": "มหาวิทยาลัยทิฟฟินตั้งอยู่ในเมืองใด",
    "context": "CREATE TABLE table_29483673_1 (location___city VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT enrollment FROM table_29483673_1 WHERE affiliation = \"Private\"",
    "question_en": "What is the enrollment at the private university?",
    "question_th": "การลงทะเบียนในมหาวิทยาลัยเอกชนคืออะไร?",
    "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_en": "What is the original air date when the director is Rowan Woods and the writer is Peter Duncan?",
    "question_th": "วันที่ออกอากาศดั้งเดิมคือเมื่อใดที่ผู้กำกับคือ Rowan Woods และผู้เขียนคือ 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_en": "How many sources are there for south africa?",
    "question_th": "แอฟริกาใต้มีแหล่งที่มากี่แห่ง?",
    "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_en": "What is the premiere date of the american disney xd tron uprising site?",
    "question_th": "เว็บไซต์ American Disney xd Tron Uprising จะฉายรอบปฐมทัศน์เมื่อใด",
    "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_en": "What country is in the region of France?",
    "question_th": "ประเทศใดอยู่ในภูมิภาคฝรั่งเศส?",
    "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_en": "What is the title in Canada?",
    "question_th": "ชื่ออะไรในแคนาดา?",
    "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_en": "What was the best finish for 206 on the money list?",
    "question_th": "การจบฤดูกาลที่ดีที่สุดสำหรับปี 206 ในรายการเงินคืออะไร?",
    "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_en": "How many ranks on the money list had a best finish of t10?",
    "question_th": "มีกี่อันดับในรายการเงินที่มีการจบ 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_en": "Which money list ranks had a best finish of 2?",
    "question_th": "อันดับ Money List ไหนจบได้ดีที่สุดที่ 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_en": "What is Jonathan Kaye's money list ranking?",
    "question_th": "อันดับรายการเงินของ Jonathan Kaye คืออะไร?",
    "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_en": "Where is Cameron Beckman's rank on the money list?",
    "question_th": "อันดับของ Cameron Beckman อยู่ที่ไหนในรายการเงิน?",
    "context": "CREATE TABLE table_29499399_2 (money_list_rank VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT pa FROM table_29565541_2 WHERE w = 6",
    "question_en": "When 6 is the w what is the pa?",
    "question_th": "เมื่อ 6 คือ w แล้ว pa คืออะไร?",
    "context": "CREATE TABLE table_29565541_2 (pa VARCHAR, w VARCHAR)"
  },
  {
    "answer": "SELECT MIN(stolen_ends) FROM table_29565541_2 WHERE l = 5",
    "question_en": "When 5 is the l what is the lowest amount of stolen ends?",
    "question_th": "เมื่อ 5 คือ l จำนวนการขโมยต่ำสุดคือเท่าใด?",
    "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_en": "How many million people in the US saw the episode with production code 105?",
    "question_th": "มีกี่ล้านคนในสหรัฐอเมริกาที่ดูตอนที่มีรหัสการผลิต 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_en": "Who directed the episode that had 1.48 million viewers in the U.S.?",
    "question_th": "ใครเป็นผู้กำกับตอนที่มีผู้ชม 1.48 ล้านคนในสหรัฐอเมริกา?",
    "context": "CREATE TABLE table_29569969_2 (directed_by VARCHAR, us_viewers__millions_ VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_29572583_20 WHERE seed = 14",
    "question_en": "what is the status for seed 14",
    "question_th": "สถานะของเมล็ดพันธุ์ 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_en": "which player had the status to the fourth round lost to tsvetana pironkova [32] Answers:",
    "question_th": "ผู้เล่นคนไหนได้สถานะเข้ารอบที่ 4 แพ้ ทเวทานา ปิรอนโควา [32] คำตอบ:",
    "context": "CREATE TABLE table_29572583_20 (player VARCHAR, status VARCHAR)"
  },
  {
    "answer": "SELECT MAX(new_points) FROM table_29572583_20 WHERE player = \"Roberta Vinci\"",
    "question_en": "how many new points does the player roberta vinci have?",
    "question_th": "นักเตะโรแบร์ต้า วินชีมีแต้มใหม่กี่แต้ม?",
    "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_en": "How many o-19% are where the quartier is in saint-loup?",
    "question_th": "ควอเทียร์อยู่ที่ไหนในแซงต์-ลูปมีกี่ o-19%?",
    "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_en": "how many 20-39% are in pont-de-vivaux?",
    "question_th": "pon-de-vivaux มี 20-39% กี่เปอร์เซ็นต์?",
    "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_en": "the quartier menpenti has how many 40-59 year olds?",
    "question_th": "Menpenti Quartier มีกี่คนในช่วงอายุ 40-59 ปี?",
    "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_en": "What episode number in the series was directed by Winrich Kolbe?",
    "question_th": "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_en": "What is the position for the university of akron michigan bucks affiliation ",
    "question_th": " ตำแหน่งในสังกัดมหาวิทยาลัย Akron michigan bucks คืออะไร",
    "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_en": "What is the position for the university of north carolina carolina dynamo affiliation ",
    "question_th": " ตำแหน่งสำหรับมหาวิทยาลัยนอร์ทแคโรไลนาแคโรไลนาไดนาโมสังกัดคืออะไร",
    "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_en": "how many pick# does the chivas usa  mls team have",
    "question_th": "ทีม chivas usa mls เลือกได้กี่คน",
    "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_en": "how many pick# does the university of akron reading united michigan bucks affiliation have",
    "question_th": "มหาวิทยาลัย Akron Reading united michigan bucks affiliation มีกี่ตัวเลือก",
    "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_en": "what is the position for the united states u-20 affiliation ",
    "question_th": " ตำแหน่งในสังกัด U-20 ของสหรัฐอเมริกาคืออะไร",
    "context": "CREATE TABLE table_29626583_1 (position VARCHAR, affiliation VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_29747178_3 WHERE production_code = \"FL209\"",
    "question_en": "What is the title of the episode with a production code of FL209?",
    "question_th": "ชื่อเรื่องของตอนที่มีรหัสการผลิต 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_en": "Who directed the episode that was watched by 2.67 million U.S. viewers?",
    "question_th": "ใครเป็นผู้กำกับตอนที่ผู้ชม 2.67 ล้านคนในสหรัฐฯ ดู?",
    "context": "CREATE TABLE table_29747178_3 (directed_by VARCHAR, us_viewers__million_ VARCHAR)"
  },
  {
    "answer": "SELECT MIN(int_caps) FROM table_29743928_5",
    "question_en": "What is the lowest value for int. caps?",
    "question_th": "ค่า int ต่ำสุดคือเท่าไร หมวกแก๊ป?",
    "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_en": "How many trains are there for the route via trivandrum, ernakulam, newdelhi?",
    "question_th": "เส้นทางรถไฟจาก ตริวันดรัม, เอร์นาคูลัม, นิวเดลี มีให้บริการกี่สายต่อวัน",
    "context": "CREATE TABLE table_29770377_1 (train_number VARCHAR, route_via VARCHAR)"
  },
  {
    "answer": "SELECT route_via FROM table_29770377_1 WHERE destination = \"Guruvayur\"",
    "question_en": "What is the route for the destination of  guruvayur?",
    "question_th": "จุดหมายปลายทางของกูรูวายูร์มีเส้นทางใดบ้าง?",
    "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_en": "How many route/via's are there for the ernad express?",
    "question_th": "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_en": "What is the destination of the route kulitthurai,neyyattinkara?",
    "question_th": "จุดหมายปลายทางของเส้นทาง 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_en": "What is the train number for the train name island express with a destination of kanniyakumari?",
    "question_th": "รถไฟสายเกาะด่วนไปคันนิยากุมารีมีหมายเลขอะไร?",
    "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_en": "How many reservations for sc/st are there in constituency 191?",
    "question_th": "เขตเลือกตั้ง 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_en": "Which locations had their first year in 2001? ",
    "question_th": " สถานที่ใดมีปีแรกในปี 2544?",
    "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_en": "How many editions did Club Q-base concept have ? ",
    "question_th": " แนวคิด Club Q-base มีกี่รุ่น?",
    "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_en": "What is the lowest value for runs when the average is 42.36?",
    "question_th": "ค่าต่ำสุดสำหรับการรันเมื่อค่าเฉลี่ยคือ 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_en": "How many entries for 50 occur when strike rate is 92.81?",
    "question_th": "มีกี่รายการสำหรับ 50 เกิดขึ้นเมื่ออัตราการนัดหยุดงานคือ 92.81",
    "context": "CREATE TABLE table_2985664_8 (strike_rate VARCHAR)"
  },
  {
    "answer": "SELECT MIN(innings) FROM table_2985664_8",
    "question_en": "What is the lowest value for innings?",
    "question_th": "ค่าอินนิ่งต่ำสุดคือเท่าไร?",
    "context": "CREATE TABLE table_2985664_8 (innings INTEGER)"
  },
  {
    "answer": "SELECT strike_rate FROM table_2985664_8 WHERE catches_stumpings = \"13/1\"",
    "question_en": "What is every strike rate when cathces/stumpings is 13/1?",
    "question_th": "อัตราการนัดหยุดงานทุกครั้งเมื่อ cathces/stumpings อยู่ที่ 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_en": "What is every high score for a strike rate of 84.88?",
    "question_th": "ทุกคะแนนสูงสุดสำหรับอัตราการนัดหยุดงาน 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_en": "How many entries for 100 occur when the average is 15.78?",
    "question_th": "มีกี่รายการสำหรับ 100 เกิดขึ้นเมื่อค่าเฉลี่ยคือ 15.78",
    "context": "CREATE TABLE table_2985664_8 (average VARCHAR)"
  },
  {
    "answer": "SELECT chromosomal_location FROM table_29871617_1 WHERE name = \"IL-1β\"",
    "question_en": "What is the chromosomal location of il-1β?",
    "question_th": "ตำแหน่งโครโมโซมของ il-1β คืออะไร?",
    "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_en": "What are the coreceptors of the chromosomes in that location 11q22.2-q22.3?",
    "question_th": "ตัวรับหลักของโครโมโซมในตำแหน่งนั้น 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_en": "How many different chromosomal locations are there in the family il-1f8?",
    "question_th": "ครอบครัว 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β\"",
    "question_en": "Where is il-36β located?",
    "question_th": "อิล-36β ตั้งอยู่ที่ไหน",
    "context": "CREATE TABLE table_29871617_1 (chromosomal_location VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_29871617_1 WHERE family_name = \"IL-1F2\"",
    "question_en": "What are the names listed in the family  il-1f2?",
    "question_th": "ชื่อที่อยู่ในตระกูล il-1f2 คืออะไร?",
    "context": "CREATE TABLE table_29871617_1 (name VARCHAR, family_name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_29871617_1 WHERE property = \"Unknown\"",
    "question_en": "Which chromosomes have an unknown property?",
    "question_th": "โครโมโซมใดมีคุณสมบัติที่ไม่ทราบ",
    "context": "CREATE TABLE table_29871617_1 (name VARCHAR, property VARCHAR)"
  },
  {
    "answer": "SELECT MIN(mister_international) FROM table_30007505_1",
    "question_en": "Name the least mister international",
    "question_th": "ตั้งชื่อมิสเตอร์อินเตอร์เนชั่นแนลน้อยที่สุด",
    "context": "CREATE TABLE table_30007505_1 (mister_international INTEGER)"
  },
  {
    "answer": "SELECT MAX(total) FROM table_30007505_1 WHERE country_territory = \"South Korea\"",
    "question_en": "Name the most total for south korea",
    "question_th": "ตั้งชื่อรวมมากที่สุดสำหรับเกาหลีใต้",
    "context": "CREATE TABLE table_30007505_1 (total INTEGER, country_territory VARCHAR)"
  },
  {
    "answer": "SELECT semifinalists FROM table_30007505_1 WHERE country_territory = \"Singapore\"",
    "question_en": "Name the semifinalists for singapore",
    "question_th": "ตั้งชื่อผู้เข้ารอบรองชนะเลิศสำหรับประเทศสิงคโปร์",
    "context": "CREATE TABLE table_30007505_1 (semifinalists VARCHAR, country_territory VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(semifinalists) FROM table_30007505_1 WHERE rank = 19",
    "question_en": "Name the number of semifinalists for 19 rank",
    "question_th": "แจ้งหมายเลขผู้เข้ารอบรองชนะเลิศ 19 อันดับ",
    "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_en": "Where was d: ~50nm, l: ~600nm geometry researched?",
    "question_th": "วิจัยเรขาคณิต d: ~50nm, l: ~600nm ที่ไหน",
    "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_en": "How many materials are there for output power of ~0.1 pw per cycle (calculated)?",
    "question_th": "มีวัสดุจำนวนเท่าใดสำหรับกำลังเอาท์พุต ~0.1 pw ต่อรอบ (คำนวณ)",
    "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_en": "How many synthesis are there for 5~16.2 pw per cycle (calculated) output power?",
    "question_th": "มีการสังเคราะห์จำนวนเท่าใดสำหรับกำลังเอาต์พุต 5~16.2 pw ต่อรอบ (คำนวณ)",
    "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 μm\"",
    "question_en": "Where was d: ~100nm, l: 1 μm geometry researched?",
    "question_th": "เรขาคณิต d: ~100nm, l: 1 μm อยู่ที่ไหน",
    "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 μm\"",
    "question_en": "Where was d: 25~70nm, l: 10~20 μm geometry researched?",
    "question_th": "เรขาคณิต d: 25~70nm, l: 10~20 μm วิจัยอยู่ที่ไหน",
    "context": "CREATE TABLE table_30057479_1 (researched_at VARCHAR, geometry VARCHAR)"
  },
  {
    "answer": "SELECT provider FROM table_3005999_1 WHERE destination = \"Liverpool\"",
    "question_en": "Who are all providers with destination of Liverpool?",
    "question_th": "ใครคือผู้ให้บริการที่มีจุดหมายปลายทางของ ลิเวอร์พูล?",
    "context": "CREATE TABLE table_3005999_1 (provider VARCHAR, destination VARCHAR)"
  },
  {
    "answer": "SELECT intermediate_stops FROM table_3005999_1 WHERE destination = \"Manchester\"",
    "question_en": "What is every entry for intermediate stops for the destination of Manchester?",
    "question_th": "ทุกรายการสำหรับการหยุดระหว่างทางไปยังจุดหมายปลายทางของ แมนเชสเตอร์ คืออะไร?",
    "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_en": "How many route numbers occur for the origin of Birmingham and destination of Bristol?",
    "question_th": "มีหมายเลขเส้นทางสำหรับต้นทางของเบอร์มิงแฮมและปลายทางของบริสตอลทั้งหมดกี่หมายเลข",
    "context": "CREATE TABLE table_3005999_1 (route_number VARCHAR, origin VARCHAR, destination VARCHAR)"
  },
  {
    "answer": "SELECT origin FROM table_3005999_1 WHERE destination = \"Manchester\"",
    "question_en": "What is every origin for the destination of Manchester?",
    "question_th": "ต้นกำเนิดของจุดหมายปลายทางของแมนเชสเตอร์คืออะไร?",
    "context": "CREATE TABLE table_3005999_1 (origin VARCHAR, destination VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(provider) FROM table_3005999_1 WHERE destination = \"Blackpool\"",
    "question_en": "How many providers have a destination of Blackpool?",
    "question_th": "มีผู้ให้บริการกี่รายที่มีจุดหมายปลายทางของแบล็กพูล?",
    "context": "CREATE TABLE table_3005999_1 (provider VARCHAR, destination VARCHAR)"
  },
  {
    "answer": "SELECT MAX(starts) FROM table_3005915_3",
    "question_en": "What is the maximum number of starts?",
    "question_th": "จำนวนการเริ่มต้นสูงสุดคือเท่าใด?",
    "context": "CREATE TABLE table_3005915_3 (starts INTEGER)"
  },
  {
    "answer": "SELECT MAX(poles) FROM table_3005915_3",
    "question_en": "What is the maximum number of poles?",
    "question_th": "จำนวนเสาสูงสุดคือเท่าไร?",
    "context": "CREATE TABLE table_3005915_3 (poles INTEGER)"
  },
  {
    "answer": "SELECT MIN(poles) FROM table_3005915_3",
    "question_en": "What is the minimum number of poles?",
    "question_th": "จำนวนเสาขั้นต่ำคือเท่าไร?",
    "context": "CREATE TABLE table_3005915_3 (poles INTEGER)"
  },
  {
    "answer": "SELECT date FROM table_30073089_2 WHERE location = \"S. Valentino Alla Muta , Italia\"",
    "question_en": "Name the date for  s. valentino alla muta , italia",
    "question_th": "ตั้งชื่อวันที่สำหรับส วาเลนติโน อัลลา มูตา, อิตาลี",
    "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_en": "Name the date for 2011 and position larger than 2.0",
    "question_th": "ตั้งชื่อวันที่สำหรับปี 2554 และตำแหน่งที่มากกว่า 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_en": "Name the discipline for 1561 fis points",
    "question_th": "ตั้งชื่อวินัย 1561 ฟิสพอยท์",
    "context": "CREATE TABLE table_30073089_2 (discipline VARCHAR, fis_points VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_30073089_2 WHERE fis_points = 3495",
    "question_en": "Name the position for fis points being 3495",
    "question_th": "ตั้งชื่อตำแหน่ง fis point เป็น 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_en": "what is the number of the wc matches if the matches were 79",
    "question_th": "จำนวนแมตช์ wc จะเป็นเท่าใด ถ้าแมตช์คือ 79",
    "context": "CREATE TABLE table_30085411_1 (WC INTEGER, matches VARCHAR)"
  },
  {
    "answer": "SELECT MIN(matches) FROM table_30085411_1",
    "question_en": "what is the number of the least matches",
    "question_th": "จำนวนการแข่งขันน้อยที่สุดคือเท่าใด",
    "context": "CREATE TABLE table_30085411_1 (matches INTEGER)"
  },
  {
    "answer": "SELECT MAX(WC) AS matches FROM table_30085411_1 WHERE matches = 16",
    "question_en": "if the matches are 16 what is the wc matches",
    "question_th": "ถ้าแมตช์คือ 16 แมตช์ wc คืออะไร",
    "context": "CREATE TABLE table_30085411_1 (WC INTEGER, matches VARCHAR)"
  },
  {
    "answer": "SELECT barony FROM table_30120555_1 WHERE area__acres__ = 24",
    "question_en": "Which barony contains a townland with an area 24 acres?",
    "question_th": "บาโรนีใดประกอบด้วยเมืองที่มีเนื้อที่ 24 เอเคอร์",
    "context": "CREATE TABLE table_30120555_1 (barony VARCHAR, area__acres__ VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(civil_parish) FROM table_30120555_1 WHERE townland = \"Canrooska\"",
    "question_en": "How many different civil parishes is Canrooska a part of?",
    "question_th": "Canrooska เป็นส่วนหนึ่งของตำบลพลเรือนที่แตกต่างกันกี่แห่ง?",
    "context": "CREATE TABLE table_30120555_1 (civil_parish VARCHAR, townland VARCHAR)"
  },
  {
    "answer": "SELECT poor_law_union FROM table_30120555_1 WHERE townland = \"Curradonohoe\"",
    "question_en": "What poor law union is Curradonohoe a part of?",
    "question_th": "Curradonohoe เป็นส่วนหนึ่งของสหภาพกฎหมายที่ไม่ดีอะไร?",
    "context": "CREATE TABLE table_30120555_1 (poor_law_union VARCHAR, townland VARCHAR)"
  },
  {
    "answer": "SELECT barony FROM table_30120619_1 WHERE townland = \"Ballintaggart\"",
    "question_en": "What is the barony for the Ballintaggart townland?",
    "question_th": "บารอนสำหรับเมือง Ballintaggart คืออะไร?",
    "context": "CREATE TABLE table_30120619_1 (barony VARCHAR, townland VARCHAR)"
  },
  {
    "answer": "SELECT poor_law_union FROM table_30120619_1 WHERE townland = \"Barnahely\"",
    "question_en": "What is the poor law union for the Barnahely towland?",
    "question_th": "สหภาพกฎหมายที่ไม่ดีสำหรับพื้นที่ราบ Barnahely คืออะไร?",
    "context": "CREATE TABLE table_30120619_1 (poor_law_union VARCHAR, townland VARCHAR)"
  },
  {
    "answer": "SELECT barony FROM table_30120619_1 WHERE area__acres__ = 150",
    "question_en": "What is the barony of the townland whose area is 150 acres? ",
    "question_th": " บาโรนี่ของทาวน์แลนด์ซึ่งมีพื้นที่ 150 เอเคอร์คืออะไร?",
    "context": "CREATE TABLE table_30120619_1 (barony VARCHAR, area__acres__ VARCHAR)"
  },
  {
    "answer": "SELECT townland FROM table_30120619_1 WHERE civil_parish = \"Monkstown\"",
    "question_en": "In which townlands is the civil parish Monkstown? ",
    "question_th": " Monkstown เป็นตำบลพลเรือนในเขตเมืองใด",
    "context": "CREATE TABLE table_30120619_1 (townland VARCHAR, civil_parish VARCHAR)"
  },
  {
    "answer": "SELECT townland FROM table_30120619_1 WHERE area__acres__ = 165",
    "question_en": "Which townland has an area of 165 acres?",
    "question_th": "ทาวน์แลนด์ใดมีพื้นที่ 165 ไร่",
    "context": "CREATE TABLE table_30120619_1 (townland VARCHAR, area__acres__ VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(barony) FROM table_30120559_1 WHERE townland = \"Kilmore\"",
    "question_en": "Name the total number of barony for kilmore",
    "question_th": "ตั้งชื่อจำนวนบาโรนี่ทั้งหมดสำหรับคิลมอร์",
    "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_en": "Name the poor law union for area being 332",
    "question_th": "ตั้งชื่อสหภาพกฎหมายยากจนสำหรับพื้นที่ 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_en": "How many townlands are there for caheragh and is larger than 270 acres?",
    "question_th": "มีกี่เมืองสำหรับ Caheragh และมีขนาดใหญ่กว่า 270 เอเคอร์?",
    "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_en": "Which civil parish is for the townland clooncugger?",
    "question_th": "เขตแพ่งใดที่เป็นของ 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_en": "How many poor law unions have an area of 262 acres and is in drinagh civil parish?",
    "question_th": "สหภาพกฎหมายที่ยากจนจำนวนกี่แห่งมีพื้นที่ 262 เอเคอร์และอยู่ในเขตแพ่ง drinagh?",
    "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_en": "How many current account balances are associated with GDP at constant prices growth rates of 4.6?",
    "question_th": "ยอดคงเหลือในบัญชีกระแสรายวันที่เกี่ยวข้องกับ GDP ที่อัตราการเติบโตของราคาคงที่ที่ 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_en": "How many export volume of goods/services values are associated with GDP at constant prices values of 3.072?",
    "question_th": "ปริมาณการส่งออกมูลค่าสินค้า/บริการที่เกี่ยวข้องกับ GDP ที่มูลค่าราคาคงที่ 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_en": "How many export volume of goods and services values are associated with GDP at current prices of 161.340?",
    "question_th": "ปริมาณการส่งออกมูลค่าสินค้าและบริการสัมพันธ์กับ GDP ณ ราคาปัจจุบันที่ 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_en": "What is the current account balance for an export volume of goods and service value of -4.2?",
    "question_th": "ยอดเงินในบัญชีกระแสรายวันสำหรับปริมาณการส่งออกสินค้าและบริการที่มีมูลค่า -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_en": "What is the current account balance for a GDP at current prices of 142.640?",
    "question_th": "ยอดคงเหลือในบัญชีปัจจุบันสำหรับ GDP ณ ราคาปัจจุบันที่ 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_en": "What is the GDP at constant prices for a current account balance of 12.8?",
    "question_th": "GDP ณ ราคาคงที่สำหรับยอดคงเหลือในบัญชีปัจจุบันที่ 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_en": "Tell me the games for total less than 4 for swimming 1968",
    "question_th": "บอกฉันว่าเกมทั้งหมดน้อยกว่า 4 สำหรับว่ายน้ำปี 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_en": "Tell me the total number of bronze for silver being 0 and sport of wrestling and total more than 3",
    "question_th": "บอกจำนวนทองแดงทั้งหมดสำหรับเงินเป็น 0 และกีฬามวยปล้ำและรวมมากกว่า 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_en": "Tell me the lowest Bronze for gold of 3 in the winter for cross-country skiing and silver less than 0",
    "question_th": "บอกราคาทองแดงต่ำสุดสำหรับทอง 3 ในฤดูหนาวสำหรับการเล่นสกีข้ามประเทศและเงินน้อยกว่า 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_en": "What is the lowest round for an offensive guard when the overall is smaller than 150?",
    "question_th": "รอบต่ำสุดสำหรับแนวรุกเมื่อผลรวมน้อยกว่า 150 คือเท่าไร?",
    "context": "CREATE TABLE table_name_59 (round INTEGER, overall VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_43 WHERE round = 1",
    "question_en": "Which college was the player selected from in round 1?",
    "question_th": "ผู้เล่นที่ได้รับเลือกจากวิทยาลัยใดในรอบที่ 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_en": "Tell me the DA for bureau chief ada",
    "question_th": "บอก DA ของหัวหน้าสำนัก 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_en": "Tell me the left office for enrico la loggia",
    "question_th": "บอกฉันหน่อยว่าห้องทำงานด้านซ้ายของเอนริโก ลา ลอเกีย",
    "context": "CREATE TABLE table_name_83 (left_office VARCHAR, minister VARCHAR)"
  },
  {
    "answer": "SELECT portfolio FROM table_name_77 WHERE minister = \"carlo giovanardi\"",
    "question_en": "Tell me the portfolio of minister of carlo giovanardi",
    "question_th": "บอกประวัติรัฐมนตรีของ คาร์โล จิโอวานาร์ดี หน่อยสิ",
    "context": "CREATE TABLE table_name_77 (portfolio VARCHAR, minister VARCHAR)"
  },
  {
    "answer": "SELECT left_office FROM table_name_20 WHERE minister = \"mirko tremaglia\"",
    "question_en": "Tell me the left office for mirko tremaglia",
    "question_th": "บอกตำแหน่งซ้ายของเมียร์โก เทรมากเลียมาหน่อยสิ",
    "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_en": "What School/Club Team has a Player named Juan Dixon and a Position of guard?",
    "question_th": "ทีมโรงเรียน/สโมสรใดมีผู้เล่นชื่อ Juan Dixon และตำแหน่งการ์ด?",
    "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_en": "Which Player's Position is guard and played in Toronto during the Years 2007-08?",
    "question_th": "ตำแหน่งผู้เล่นคนใดที่เป็นผู้พิทักษ์และเล่นในโตรอนโตระหว่างปี 2550-51",
    "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_en": "What Player is from Argentina and whose position is a guard-forward?",
    "question_th": "นักเตะคนไหนจากอาร์เจนติน่า และตำแหน่งกองหน้าของใคร?",
    "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_en": "What School/Club Team played in Toronto during 2012?",
    "question_th": "ทีมโรงเรียน/สโมสรใดเล่นในโตรอนโตระหว่างปี 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_en": "What was the result of the syracuse grand prix?",
    "question_th": "ผลการแข่งขันซีราคิวส์ กรังด์ปรีซ์ เป็นอย่างไร?",
    "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_en": "What year has a result of 3 in the venue of Jarama.",
    "question_th": "ปีไหนมีผล 3 ที่สนามจารามะ",
    "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_en": "Tell me the highest opponents for record of 7-3 and vikings points more than 7",
    "question_th": "บอกคู่ต่อสู้สูงสุดสำหรับสถิติ 7-3 และไวกิ้งมีแต้มมากกว่า 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_en": "Tell me the most attendance for game less than 1",
    "question_th": "บอกฉันว่าผู้เข้าร่วมมากที่สุดสำหรับเกมน้อยกว่า 1",
    "context": "CREATE TABLE table_name_15 (attendance INTEGER, game INTEGER)"
  },
  {
    "answer": "SELECT surface FROM table_name_58 WHERE date = \"2 december 1974\"",
    "question_en": "Tell me the surface of 2 december 1974",
    "question_th": "บอกฉันพื้นผิวของ 2 ธันวาคม 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_en": "Name the score for moscow, ussr 15 february 1971",
    "question_th": "ตั้งชื่อคะแนนสำหรับมอสโก 15 กุมภาพันธ์ 2514",
    "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_en": "Name the lowest year for 12th position",
    "question_th": "ตั้งชื่อปีต่ำสุดสำหรับอันดับที่ 12",
    "context": "CREATE TABLE table_name_4 (year INTEGER, position VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_70 WHERE notes = \"half marathon\"",
    "question_en": "Tell me the competition for half marathon",
    "question_th": "แจ้งการแข่งขันฮาล์ฟมาราธอนครับ",
    "context": "CREATE TABLE table_name_70 (competition VARCHAR, notes VARCHAR)"
  },
  {
    "answer": "SELECT category FROM table_name_75 WHERE director = \"na\"",
    "question_en": "Tell me the category of na director",
    "question_th": "บอกหมวดนาไดเร็กค่ะ",
    "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_en": "I want to know the highest heat rank for overall rank of t63 and time less than 25.47",
    "question_th": "อยากทราบอันดับความร้อนสูงสุดสำหรับอันดับโดยรวมของ t63 และเวลาที่น้อยกว่า 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_en": "Tell me the country for lane of 6",
    "question_th": "บอกประเทศสำหรับเลน 6 หน่อยสิ",
    "context": "CREATE TABLE table_name_66 (country VARCHAR, lane VARCHAR)"
  },
  {
    "answer": "SELECT overall_rank FROM table_name_60 WHERE heat_rank = 8",
    "question_en": "Tell me the overall rank for heat rank of 8",
    "question_th": "บอกอันดับโดยรวมของอันดับความร้อนที่ 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_en": "Tell me the position of chris clark",
    "question_th": "บอกตำแหน่งของคริส คลาร์กมาหน่อยสิ",
    "context": "CREATE TABLE table_name_8 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT nhl_team FROM table_name_75 WHERE pick = \"74\"",
    "question_en": "Tell me the nhl team for 74",
    "question_th": "บอกทีม nhl ของ 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_en": "Tell me the pick for canada centre",
    "question_th": "บอกตัวเลือกสำหรับศูนย์แคนาดาหน่อยสิ",
    "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_en": "Tell me the format for geffen of the united states",
    "question_th": "บอกรูปแบบของ geffen ของสหรัฐอเมริกาหน่อยสิ",
    "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_en": "Tell me the format for worldwide region july 22, 2008",
    "question_th": "บอกรูปแบบของภูมิภาคทั่วโลกวันที่ 22 กรกฎาคม 2551",
    "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_en": "Tell me the label for digital download for bonus tracks version",
    "question_th": "บอกป้ายกำกับสำหรับการดาวน์โหลดแบบดิจิทัลสำหรับเวอร์ชันโบนัสแทร็ก",
    "context": "CREATE TABLE table_name_39 (label VARCHAR, format VARCHAR, edition_s_ VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_43 WHERE rank = 6",
    "question_en": "Which team has a rank of 6?",
    "question_th": "ทีมใดมีอันดับที่ 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_en": "Name the horsepower for VIN code of h and engine for 351-2v cleveland v8",
    "question_th": "ตั้งชื่อแรงม้าสำหรับรหัส VIN ของ h และเครื่องยนต์สำหรับ 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_en": "Name the horsepwer for compression ratio of 9.00:1 and carburetor of 2-barrel and engine 302-2v windsor v8",
    "question_th": "ตั้งชื่อแรงม้าให้อัตราส่วนกำลังอัด 9.00:1 และคาร์บูเรเตอร์ 2 สูบ และเครื่องยนต์ 302-2v วินด์เซอร์ 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_en": "Tell me the VIN code for compression ratio of 10.50:1",
    "question_th": "บอกรหัส VIN สำหรับอัตราส่วนการบีบอัด 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_en": "Tell me the network for 13 january 2009",
    "question_th": "บอกเครือข่ายสำหรับวันที่ 13 มกราคม 2552",
    "context": "CREATE TABLE table_name_80 (network VARCHAR, premiere VARCHAR)"
  },
  {
    "answer": "SELECT prize FROM table_name_53 WHERE country_region = \"belgium\"",
    "question_en": "Tell me the prize for belgium",
    "question_th": "บอกรางวัลเบลเยี่ยมหน่อยสิ",
    "context": "CREATE TABLE table_name_53 (prize VARCHAR, country_region VARCHAR)"
  },
  {
    "answer": "SELECT host FROM table_name_19 WHERE premiere = \"13 january 2009\"",
    "question_en": "Tell me the 13 january 2009 host",
    "question_th": "บอกเจ้าภาพวันที่ 13 มกราคม 2552 หน่อยสิ",
    "context": "CREATE TABLE table_name_19 (host VARCHAR, premiere VARCHAR)"
  },
  {
    "answer": "SELECT host FROM table_name_6 WHERE network = \"rtl-tvi\"",
    "question_en": "Tell me the host for rtl-tvi",
    "question_th": "บอกโฮสต์สำหรับ 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_en": "I want to meet that has a time 2:15.93",
    "question_th": "อยากเจอที่มีเวลา 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_en": "Tell me the location of lithuania 12 october 2013",
    "question_th": "บอกตำแหน่งของลิทัวเนีย 12 ตุลาคม 2556",
    "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_en": "Tell me the title of work for year more than 2009",
    "question_th": "บอกชื่องานปีมากกว่า 2552 หน่อยครับ",
    "context": "CREATE TABLE table_name_17 (title_of_work VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT date FROM table_name_48 WHERE result = \"8–0\" AND score = \"1–0\"",
    "question_en": "When was there a Result of 8–0 and a Score of 1–0?",
    "question_th": "เมื่อใดที่ผลการแข่งขัน 8–0 และคะแนน 1–0?",
    "context": "CREATE TABLE table_name_48 (date VARCHAR, result VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_33 WHERE venue = \"bridgeview, illinois\"",
    "question_en": "What was the result of Bridgeview, Illinois?",
    "question_th": "เมืองบริดจ์วิว รัฐอิลลินอยส์ เป็นยังไง?",
    "context": "CREATE TABLE table_name_33 (result VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_4 WHERE competition = \"friendly\" AND score = \"2–1\" AND venue = \"philadelphia , pennsylvania\"",
    "question_en": "When did a Competition of friendly, and a Score of 2–1, and a Venue of philadelphia , pennsylvania occur?",
    "question_th": "การแข่งขันกระชับมิตรและคะแนน 2–1 และสถานที่จัดงานของฟิลาเดลเฟีย เพนซิลเวเนียเกิดขึ้นเมื่อใด",
    "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_en": "What was the score on June 28, 2009?",
    "question_th": "คะแนนเมื่อวันที่ 28 มิถุนายน 2552 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_56 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_67 WHERE pick = \"140\"",
    "question_en": "Tell me the nationality of pick 140",
    "question_th": "บอกสัญชาติ Pick 140 ครับ",
    "context": "CREATE TABLE table_name_67 (nationality VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_7 WHERE pick = \"146\"",
    "question_en": "Tell me the position for pick of 146",
    "question_th": "บอกตำแหน่งเลือก 146 ครับ",
    "context": "CREATE TABLE table_name_7 (position VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT nhl_team FROM table_name_53 WHERE player = \"mike gaffney\"",
    "question_en": "Tell me the NHL team for mike gaffney",
    "question_th": "บอกทีม NHL ของไมค์ กัฟฟ์นีย์ หน่อยสิ",
    "context": "CREATE TABLE table_name_53 (nhl_team VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_85 WHERE pick = \"153\"",
    "question_en": "Tell me the nationality of pick of 153",
    "question_th": "บอกสัญชาติที่เลือก 153 หน่อยสิ",
    "context": "CREATE TABLE table_name_85 (nationality VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_9 WHERE pick = \"145\"",
    "question_en": "Tell me the player for pick of 145",
    "question_th": "บอกผู้เล่นที่เลือก 145 หน่อยสิ",
    "context": "CREATE TABLE table_name_9 (player VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_23 WHERE date = \"october 11, 2013\"",
    "question_en": "What tournament took place on October 11, 2013?",
    "question_th": "การแข่งขันใดเกิดขึ้นในวันที่ 11 ตุลาคม 2556?",
    "context": "CREATE TABLE table_name_23 (tournament VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_94 WHERE date = \"june 18, 2013\"",
    "question_en": "Which tournament took place on June 18, 2013?",
    "question_th": "การแข่งขันใดเกิดขึ้นในวันที่ 18 มิถุนายน 2556?",
    "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_en": "What is the average week on November 7, 1976 with an attendance less than 46,735?",
    "question_th": "สัปดาห์เฉลี่ยของวันที่ 7 พฤศจิกายน พ.ศ. 2519 โดยมีผู้เข้าร่วมน้อยกว่า 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_en": "Who is the opponent for week 5?",
    "question_th": "คู่ต่อสู้ในสัปดาห์ที่ 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_en": "Tell me the highest overall rank for heat rank more than 4 and lane less than 2",
    "question_th": "บอกอันดับโดยรวมสูงสุดสำหรับอันดับความร้อนมากกว่า 4 และเลนน้อยกว่า 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_en": "Who is the partner with a runner-up outcome on April 6, 1992?",
    "question_th": "ใครคือคู่หูที่เข้ารอบรองชนะเลิศในวันที่ 6 เมษายน พ.ศ. 2535?",
    "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–6, 6–7(3)\"",
    "question_en": "What outcome occurs on a hard surface with a score of 4–6, 6–7(3)?",
    "question_th": "ผลลัพธ์ใดเกิดขึ้นบนพื้นแข็งด้วยคะแนน 4–6, 6–7(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–7(6), 5–7\"",
    "question_en": "On what date did Lori McNeil play as a partner with a score of 6–7(6), 5–7?",
    "question_th": "ลอรี แม็คนีลเล่นเป็นคู่หูด้วยคะแนน 6–7(6), 5–7 ในวันที่ใด",
    "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_en": "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?",
    "question_th": "อะไรคือการสูญเสียมากที่สุดที่ Royals มีเมื่อพวกเขามีเปอร์เซ็นต์มากกว่า 0.461 ชนะมากกว่า 86 เกม และจบอันดับที่ 2 ในปี 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–0, 5–7, 3–6\"",
    "question_en": "Tell the opponent of eastbourne with score of 6–0, 5–7, 3–6",
    "question_th": "บอกคู่ต่อสู้ของอีสต์บอร์นด้วยสกอร์ 6–0, 5–7, 3–6",
    "context": "CREATE TABLE table_name_59 (opponent VARCHAR, tournament VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_40 WHERE score = \"2–6, 1–6\"",
    "question_en": "Tell me the outcome of 2–6, 1–6",
    "question_th": "บอกผลลัพธ์ของ 2–6, 1–6 ให้ฉันหน่อย",
    "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_en": "Tell me the surface for eastbourne 14 june 1999",
    "question_th": "บอกฉันถึงพื้นผิวของอีสต์บอร์น 14 มิถุนายน 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_en": "Tell me the category for result of won and year more than 2009",
    "question_th": "บอกหมวดหมู่ผลการชนะและปีที่มากกว่า 2552 ให้ฉันหน่อย",
    "context": "CREATE TABLE table_name_77 (category VARCHAR, result VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT nominated_work FROM table_name_54 WHERE year > 2011",
    "question_en": "Tell me the nominated work larger than 2011",
    "question_th": "บอกฉันงานที่ได้รับการเสนอชื่อเข้าชิงใหญ่กว่าปี 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_en": "Tell me the result for primetime emmy awards",
    "question_th": "บอกผลรางวัล Primetime Emmy หน่อยสิ",
    "context": "CREATE TABLE table_name_94 (result VARCHAR, association VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_31 WHERE date = \"1 march 1909\"",
    "question_en": "What competition was held 1 March 1909?",
    "question_th": "การแข่งขันใดจัดขึ้นในวันที่ 1 มีนาคม พ.ศ. 2452?",
    "context": "CREATE TABLE table_name_31 (competition VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(gold) FROM table_name_62 WHERE total < 1",
    "question_en": "Tell me the total number of gold for total less than 1",
    "question_th": "บอกจำนวนทองทั้งหมดรวมน้อยกว่า 1",
    "context": "CREATE TABLE table_name_62 (gold VARCHAR, total INTEGER)"
  },
  {
    "answer": "SELECT model FROM table_name_30 WHERE total_production = 1347",
    "question_en": "Tell me the model for total production of 1347",
    "question_th": "ขอทราบรุ่นยอดผลิต 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_en": "What is the total amount of Gold from guatemala and silver smaller than 0?",
    "question_th": "จำนวนทองคำทั้งหมดจากกัวเตมาลาและเงินน้อยกว่า 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_en": "Tell me the event for 2012 london games",
    "question_th": "บอกฉันถึงกิจกรรมของเกมลอนดอนปี 2012",
    "context": "CREATE TABLE table_name_70 (event VARCHAR, games VARCHAR)"
  },
  {
    "answer": "SELECT games FROM table_name_18 WHERE event = \"men's 5000 metres\"",
    "question_en": "Tell me the games for men's 5000 metres",
    "question_th": "เล่าเกมวิ่ง 5,000 เมตรชายหน่อยครับ",
    "context": "CREATE TABLE table_name_18 (games VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_72 WHERE result = \"w 20-19\"",
    "question_en": "When did the w 20-19 happen?",
    "question_th": "W 20-19 เกิดขึ้นเมื่อไหร่?",
    "context": "CREATE TABLE table_name_72 (date VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_61 WHERE result = \"w 28-13\"",
    "question_en": "What was the attendance of the w 28-13 game?",
    "question_th": "แมตช์ w 28-13 มีผู้เข้าชมเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_61 (attendance VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT voting_turnout FROM table_name_91 WHERE general_elections = 1985",
    "question_en": "Tell me the voting turnout for 1985 general elections",
    "question_th": "บอกฉันเกี่ยวกับจำนวนผู้ลงคะแนนเสียงสำหรับการเลือกตั้งทั่วไปปี 1985",
    "context": "CREATE TABLE table_name_91 (voting_turnout VARCHAR, general_elections VARCHAR)"
  },
  {
    "answer": "SELECT SUM(total) FROM table_name_59 WHERE nation = \"england\"",
    "question_en": "What is total number of wins for England?",
    "question_th": "อังกฤษเก็บชัยชนะได้ทั้งหมดกี่นัด?",
    "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_en": "The Soviet Union has won more than 2 Silver, but how many Bronzes?",
    "question_th": "สหภาพโซเวียตชนะมากกว่า 2 เหรียญเงิน แต่มีเหรียญทองแดงกี่เหรียญ?",
    "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_en": "Which Alliance Constituency has Seamus Close, position 2 and an election smaller than 1997?",
    "question_th": "เขตเลือกตั้งของพันธมิตรใดที่มี Seamus Close ตำแหน่ง 2 และการเลือกตั้งที่เล็กกว่าปี 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_en": "I want the average for evening gown of 7.52 and swimsuit larger than 7.78",
    "question_th": "ฉันต้องการค่าเฉลี่ยชุดราตรี 7.52 และชุดว่ายน้ำมากกว่า 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_en": "Tell me the lowest interview for oklahoma and swimsuit less than 8.8",
    "question_th": "บอกฉันว่าบทสัมภาษณ์ต่ำสุดสำหรับโอคลาโฮมาและชุดว่ายน้ำน้อยกว่า 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_en": "Tell me the sum of evening gown for average of 9.06 and swimsuit less than 8.76",
    "question_th": "บอกผลรวมชุดราตรีเฉลี่ย 9.06 และชุดว่ายน้ำน้อยกว่า 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_en": "Tell me the highest interview for north carolina and evening gown more than 7.68",
    "question_th": "บอกเลยว่าสัมภาษณ์สูงสุด นอร์ทแคโรไลนา และชุดราตรี มากกว่า 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_en": "Which NCAA Tournament Appearances have Conference Titles that are larger than 0, NCAA Titles of 0, and were coached by Lou Watson?",
    "question_th": "การปรากฏตัวในการแข่งขัน NCAA Tournament ใดที่มีชื่อการประชุมที่มีขนาดใหญ่กว่า 0 ชื่อ NCAA เป็น 0 และได้รับการฝึกสอนโดย 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_en": "Tell me the category for 2012 and drama league award",
    "question_th": "บอกหมวดรางวัลละครลีกปี 2555 หน่อยค่ะ",
    "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_en": "Tell me the highest time for spain and lane larger than 8",
    "question_th": "บอกเวลาสูงสุดสำหรับสเปนและเลนที่มากกว่า 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_en": "Tell me the average heat rank for time less than 24.02 and lane of 1",
    "question_th": "บอกอันดับความร้อนเฉลี่ยสำหรับเวลาที่น้อยกว่า 24.02 และเลนที่ 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_en": "Tell me the total number of time for heat rank of 1",
    "question_th": "บอกจำนวนเวลาทั้งหมดสำหรับอันดับความร้อนที่ 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_en": "What would the LCD screen size and pixels be for the coolpix 5700?",
    "question_th": "ขนาดหน้าจอ LCD และพิกเซลของ 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_en": "What is the lens zoom and aperture for the coolpix 5400?",
    "question_th": "เลนส์ซูมและรูรับแสงของ 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_en": "What is the average number of rounds when fighting against Clay Guida?",
    "question_th": "จำนวนรอบเฉลี่ยในการต่อสู้กับ Clay Guida คือเท่าไร?",
    "context": "CREATE TABLE table_name_54 (round INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_63 WHERE opponent = \"gray maynard\"",
    "question_en": "Where was the fight against Gray Maynard?",
    "question_th": "การต่อสู้กับเกรย์เมย์นาร์ดอยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_63 (location VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT res FROM table_name_51 WHERE time = \"4:27\"",
    "question_en": "What was the result of the 4:27 fight?",
    "question_th": "ผลของการต่อสู้ในนาทีที่ 4:27 คืออะไร?",
    "context": "CREATE TABLE table_name_51 (res VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_43 WHERE event = \"wec 24\"",
    "question_en": "What was the record at WEC 24?",
    "question_th": "บันทึกที่ 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_en": "What was the result when there were less than 3 rounds against Gil Rael?",
    "question_th": "ผลเป็นอย่างไรเมื่อเจอกับกิล ราเอลไม่ถึง 3 รอบ?",
    "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_en": "What is the amount of assists for richmond kickers and points larger than 24",
    "question_th": "ริชมอนด์คิกเกอร์และแต้มที่มากกว่า 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_en": "What is the average amount of assists with a rank higher than 6 and goals 10 and the scorer is Robert Ukrop",
    "question_th": "จำนวนแอสซิสต์โดยเฉลี่ยที่มีอันดับสูงกว่า 6 และประตู 10 คือเท่าไร และผู้ทำประตูคือ โรเบิร์ต อูครอป",
    "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–3, 7–5\" AND partner = \"kimberly po-messerli\"",
    "question_en": "Which Tournament has a winner Outcome with a Score of 6–3, 7–5 with Kimberly Po-Messerli as a Partner?",
    "question_th": "ทัวร์นาเมนต์ใดมีผู้ชนะด้วยคะแนน 6–3, 7–5 โดยมี Kimberly Po-Messerli เป็นหุ้นส่วน",
    "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_en": "What is the Outcome of the Los Angeles Tournament when the Partner is Julie Halard?",
    "question_th": "ผลลัพธ์ของการแข่งขัน Los Angeles Tournament จะเป็นอย่างไรเมื่อคู่หูคือ 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–6, 6–3, 6–1\"",
    "question_en": "On what Date is Alexandra Fusai a Partner with a Score of 4–6, 6–3, 6–1?",
    "question_th": "อเล็กซานดรา ฟูไซ จะเป็นคู่หูด้วยคะแนน 4–6, 6–3, 6–1 ในวันที่ใด",
    "context": "CREATE TABLE table_name_46 (date VARCHAR, partner VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_5 WHERE aggregate = \"2-3\"",
    "question_en": "Tell me the home of 2-3",
    "question_th": "บอกบ้าน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_en": "How much money did the country with 282 stores make in sales?",
    "question_th": "ประเทศที่มีร้านค้า 282 แห่งทำเงินได้เท่าไหร่จากการขาย?",
    "context": "CREATE TABLE table_name_49 (sales__x1000_ VARCHAR, no_of_stores VARCHAR)"
  },
  {
    "answer": "SELECT MIN(sales_area__m²_) FROM table_name_20 WHERE sales_per_area = \"€4,094/m²\" AND no_of_stores > 2",
    "question_en": "What is the smallest sales area (m²) that has €4,094/m² and more than 2 stores?",
    "question_th": "พื้นที่ขายที่เล็กที่สุด (ตร.ม.) ที่มี 4,094 ยูโร/ตร.ม. และมีร้านค้ามากกว่า 2 แห่งคือเท่าใด",
    "context": "CREATE TABLE table_name_20 (sales_area__m²_ 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_en": "Tell me the average spectators for 2006-06-21 and time more than 21",
    "question_th": "บอกจำนวนผู้ชมเฉลี่ยสำหรับปี 2549-06-21 และเวลาที่มากกว่า 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_en": "Tell me the sum of closed for city of pittsburgh and capacity larger than 59,000",
    "question_th": "บอกผลรวมของการปิดเมืองพิตส์เบิร์กและความจุมากกว่า 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_en": "Tell me the lowest closed for capacity of 62,439",
    "question_th": "บอกฉันว่าปิดต่ำสุดสำหรับความจุ 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_en": "Tell me the college/junior club team for pick of 16",
    "question_th": "บอกทีมสโมสรวิทยาลัย/จูเนียร์สำหรับการเลือก 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_en": "Tell me the nationality for pick of 18",
    "question_th": "บอกสัญชาติที่จะเลือก 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_en": "I want the player for NHL team for mighty ducks of anaheim",
    "question_th": "ฉันต้องการผู้เล่นให้กับทีม NHL เพื่อเป็ดผู้ยิ่งใหญ่แห่งอนาไฮม์",
    "context": "CREATE TABLE table_name_89 (player VARCHAR, nhl_team VARCHAR)"
  },
  {
    "answer": "SELECT nhl_team FROM table_name_87 WHERE player = \"wade belak\"",
    "question_en": "I want the NHL team for wade belak",
    "question_th": "ฉันต้องการทีม NHL สำหรับเวดเบลัค",
    "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_en": "Tell me the tournament for outcome of winner and score of 4-6 6-3 10-5",
    "question_th": "แจ้งผลการแข่งขันผู้ชนะและคะแนน 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_en": "Tell me the partner for opponents of anamika bhargava sylvia krywacz",
    "question_th": "บอกคู่ต่อสู้ของ 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_en": "Tell me the partner for outcome of winner and score of 7-6 (7) 5-7 10-7",
    "question_th": "บอกคู่รู้ผลผู้ชนะและคะแนน 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_en": "Tell me the opponents for score of 6-1 2-6 7-10",
    "question_th": "บอกคู่ต่อสู้สกอร์ 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_en": "Tell me the score of misa eguchi eri hozumi",
    "question_th": "บอกคะแนนของ มิสะ เอกุจิ เอริ โฮซึมิ หน่อยสิ",
    "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_en": "Tell me the date for dinah pfizenmaier anna zaja and winner",
    "question_th": "บอกวันที่ของ dinah pfizenmaier anna zaja และผู้ชนะให้ฉันหน่อย",
    "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_en": "Tell me the opponents for mashona washington november 21, 2009",
    "question_th": "บอกฝ่ายตรงข้ามของ Mashona Washington วันที่ 21 พฤศจิกายน 2552 ให้ฉันหน่อย",
    "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_en": "What is the smallest total for a rank below 4, 0 silver medals, and 2 gold medals?",
    "question_th": "จำนวนรวมที่น้อยที่สุดสำหรับอันดับต่ำกว่า 4, 0 เหรียญเงิน และ 2 เหรียญทอง คือเท่าใด",
    "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_en": "How many gold medals on average were earned by Italy when they held the rank of 4?",
    "question_th": "อิตาลีได้รับเหรียญทองโดยเฉลี่ยกี่เหรียญเมื่อพวกเขารั้งอันดับที่ 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_en": "Who is the player from Canada with a 199 pick?",
    "question_th": "ใครคือผู้เล่นจากแคนาดาที่มีตัวเลือก 199 รายการ?",
    "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_en": "Which college or team has a pick of 196?",
    "question_th": "วิทยาลัยหรือทีมใดมีทางเลือก 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_en": "What is the pick number for Ray Giroux?",
    "question_th": "หมายเลขเลือกของเรย์ ชิรูซ์คืออะไร?",
    "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_en": "Tell me the lowest pick number for columbus crew",
    "question_th": "บอกหมายเลขตัวเลือกต่ำสุดสำหรับทีมโคลัมบัสมาหน่อย",
    "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_en": "Tell me the total number of pick for university of portland",
    "question_th": "บอกจำนวนตัวเลือกทั้งหมดสำหรับมหาวิทยาลัยพอร์ตแลนด์มาให้ฉันหน่อย",
    "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_en": "Tell me the lowest pick number for new england revolution",
    "question_th": "บอกหมายเลขตัวเลือกต่ำสุดสำหรับการปฏิวัตินิวอิงแลนด์",
    "context": "CREATE TABLE table_name_84 (pick__number INTEGER, mls_team VARCHAR)"
  },
  {
    "answer": "SELECT affiliation FROM table_name_87 WHERE player = \"diego walsh\"",
    "question_en": "Tell me the affiliation for diego walsh",
    "question_th": "บอกความเกี่ยวข้องของดิเอโก วอลช์มาหน่อยสิ",
    "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_en": "Tell me the total number of pick for university of virginia",
    "question_th": "บอกจำนวนตัวเลือกทั้งหมดสำหรับมหาวิทยาลัยเวอร์จิเนียมาให้ฉันหน่อย",
    "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_en": "Tell me the D3 compatible for availability of yes for wode jukebox",
    "question_th": "บอกฉันว่า D3 เข้ากันได้สำหรับการมีใช่สำหรับตู้เพลง wode",
    "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_en": "Tell me the pts for glasgow rocks",
    "question_th": "บอกคะแนนสำหรับหินกลาสโกว์มาหน่อยสิ",
    "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_en": "Tell me the season for quarter-final position of 4th",
    "question_th": "บอกฤดูกาลสำหรับรอบก่อนรองชนะเลิศอันดับ 4 หน่อยสิ",
    "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_en": "Tell me the average Laps for grid of 6",
    "question_th": "บอกจำนวนรอบเฉลี่ยสำหรับตารางที่ 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_en": "Tell me the carburetor for engine of 250-1v i-6",
    "question_th": "บอกคาร์บูเรเตอร์สำหรับเครื่องยนต์ 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_en": "Tell me the bore and stroke for Engine of 351-2v cleveland v8",
    "question_th": "บอกพิกัดและระยะชักของเครื่องยนต์ 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_en": "Which country is ranked number 2 and has less than 5 total medals?",
    "question_th": "ประเทศใดอยู่ในอันดับที่ 2 และมีเหรียญรางวัลรวมน้อยกว่า 5 เหรียญ?",
    "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_en": "What is the (MT) time which has kansas city chiefs as an opponent on nov 11?",
    "question_th": "เวลา (MT) ที่หัวหน้าเมืองแคนซัสเป็นคู่ต่อสู้ในวันที่ 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_en": "Tell me the opponents for runner-up and surface of grass",
    "question_th": "บอกฝ่ายตรงข้ามสำหรับรองชนะเลิศและพื้นผิวหญ้า",
    "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_en": "Name the venue for netherlands opponent",
    "question_th": "ตั้งชื่อสถานที่ให้คู่ต่อสู้เนเธอร์แลนด์",
    "context": "CREATE TABLE table_name_88 (venue VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_46 WHERE date = \"10-04-2007\"",
    "question_en": "Name the opponent for 10-04-2007",
    "question_th": "ตั้งชื่อคู่ต่อสู้วันที่ 10-04-2550",
    "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_en": "Name the runs balls for wicket of 3rd for australia opponent",
    "question_th": "ตั้งชื่อลูกบอลวิ่งสำหรับประตูที่ 3 สำหรับคู่ต่อสู้ชาวออสเตรเลีย",
    "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_en": "Name the wicket for 19-03-2007",
    "question_th": "ตั้งชื่อประตูสำหรับวันที่ 19-03-2550",
    "context": "CREATE TABLE table_name_59 (wicket VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT fleet FROM table_name_63 WHERE launched = \"july 30, 1961\"",
    "question_en": "Which fleet launched on July 30, 1961?",
    "question_th": "กองเรือใดเปิดตัวเมื่อวันที่ 30 กรกฎาคม พ.ศ. 2504",
    "context": "CREATE TABLE table_name_63 (fleet VARCHAR, launched VARCHAR)"
  },
  {
    "answer": "SELECT shipyard FROM table_name_72 WHERE laid_down = \"april 21, 1962\"",
    "question_en": "Which shipyard has a fleet that was laid down on April 21, 1962?",
    "question_th": "อู่ต่อเรือใดมีกองเรือที่ถูกวางลงเมื่อวันที่ 21 เมษายน 2505?",
    "context": "CREATE TABLE table_name_72 (shipyard VARCHAR, laid_down VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_9 WHERE commissioned = \"july 28, 1963\"",
    "question_en": "What is the status of the fleet that was commissioned on July 28, 1963?",
    "question_th": "กองเรือที่เข้าประจำการเมื่อวันที่ 28 กรกฎาคม 2506 มีสถานะเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_9 (status VARCHAR, commissioned VARCHAR)"
  },
  {
    "answer": "SELECT launched FROM table_name_23 WHERE commissioned = \"august 31, 1964\"",
    "question_en": "Tell me the launched for august 31, 1964",
    "question_th": "บอกหน่อยว่าเปิดตัววันที่ 31 ส.ค. 64",
    "context": "CREATE TABLE table_name_23 (launched VARCHAR, commissioned VARCHAR)"
  },
  {
    "answer": "SELECT commissioned FROM table_name_12 WHERE launched = \"december 30, 1965\"",
    "question_en": "Tell me what was commissioned december 30, 1965",
    "question_th": "บอกฉันหน่อยว่าได้รับมอบหมายอะไรเมื่อวันที่ 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_en": "Which episode with a demo of 0.7/3 was the lowest?",
    "question_th": "ตอนไหนที่มีเดโม 0.7/3 ต่ำที่สุด?",
    "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_en": "When is the air date that demo-ed at 1.6/5?",
    "question_th": "Demo-ed ออนแอร์วันไหน 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_en": "For demo 1.6/5, what is the title?",
    "question_th": "สำหรับเดโม 1.6/5 ชื่ออะไร?",
    "context": "CREATE TABLE table_name_37 (title VARCHAR, demo VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_2 WHERE opponent = \"gabriela paz-franco\"",
    "question_en": "What date was gabriela paz-franco the opponent?",
    "question_th": "คู่ต่อสู้ของ gabriela paz-franco คือวันไหน?",
    "context": "CREATE TABLE table_name_2 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_43 WHERE date = \"september 13, 2009\"",
    "question_en": "What surface was the game played on for the September 13, 2009 match?",
    "question_th": "เกมนี้เล่นบนพื้นผิวใดสำหรับนัดที่ 13 กันยายน พ.ศ. 2552?",
    "context": "CREATE TABLE table_name_43 (surface VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT track FROM table_name_86 WHERE pole_position = \"takashi kogure\"",
    "question_en": "On which track did Takashi Kogure hold pole position?",
    "question_th": "Takashi Kogure ครองตำแหน่งโพลโพซิชั่นบนแทร็กใด",
    "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_en": "On round 3 for Arting Team Impul, who held pole position?",
    "question_th": "รอบ 3 ทีม อาร์ติ้ง อิมพูล ใครได้โพลโพซิชั่น?",
    "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_en": "Who was the winner when Katsuyuki Hiranaka had the fastest lap?",
    "question_th": "ใครเป็นผู้ชนะเมื่อคัตสึยูกิ ฮิรานากะทำรอบได้เร็วที่สุด?",
    "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_en": "Before round 9, when Takashi Kogure held pole position, who was the team?",
    "question_th": "ก่อนยกที่ 9 เมื่อ ทาคาชิ โคกุเระ ขึ้นโพลโพซิชั่นทีมใคร?",
    "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_en": "Tell me the MPEG-2 of yes and MPEG-1 of yes",
    "question_th": "บอกฉันว่า MPEG-2 ของใช่และ MPEG-1 ของใช่",
    "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_en": "Tell me the MPEG-1 for real video of no",
    "question_th": "บอกฉัน MPEG-1 สำหรับวิดีโอจริงของหมายเลข",
    "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_en": "Tell me the affiliation for mls team of metrostars and pick number of 26",
    "question_th": "บอกความเกี่ยวข้องของทีมเมโทรสตาร์ของทีม mls และเลือกหมายเลข 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_en": "Tell me the total number of picks for position of m of williams college",
    "question_th": "บอกจำนวนผู้ถูกเลือกทั้งหมดสำหรับตำแหน่ง ม. วิทยาลัยวิลเลียมส์ หน่อยสิ",
    "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_en": "who was the runner-up in the 1915 competition for 'Articles with HCards'?",
    "question_th": "ใครเป็นรองชนะเลิศในการแข่งขัน 'Articles with HCards' ในปี 1915",
    "context": "CREATE TABLE table_name_25 (runner_up VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT runner_up FROM table_name_39 WHERE year = 1887",
    "question_en": "Who was the runner-up in 1887 competition for 'Articles with HCards'?",
    "question_th": "ใครคือรองชนะเลิศในการแข่งขัน 'Articles with HCards' ในปี 1887",
    "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_en": "What is the home team score when the away team is Collingwood?",
    "question_th": "สกอร์เจ้าบ้านเมื่อทีมเยือนคือคอลลิงวูดเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_36 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT fleet FROM table_name_61 WHERE number = \"l4\"",
    "question_en": "what fleet is associated with the number L4?",
    "question_th": "กองเรือใดที่เกี่ยวข้องกับหมายเลข L4?",
    "context": "CREATE TABLE table_name_61 (fleet VARCHAR, number VARCHAR)"
  },
  {
    "answer": "SELECT number FROM table_name_49 WHERE fleet = \"baltic\" AND name = \"leninets (ленинец)\"",
    "question_en": "what number is associated with the baltic fleet and leninets (ленинец)?",
    "question_th": "จำนวนใดที่เกี่ยวข้องกับกองเรือบอลติกและเลนินเนต (ленинец)?",
    "context": "CREATE TABLE table_name_49 (number VARCHAR, fleet VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT launched FROM table_name_94 WHERE name = \"garibaldets (гарибальдиец)\"",
    "question_en": "when was garibaldets (гарибальдиец) launched?",
    "question_th": "การิบัลเดต (garibaldets) เปิดตัวเมื่อใด",
    "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_en": "when was the number l6, with a fleet of black sea, launched?",
    "question_th": "หมายเลข l6 พร้อมกองเรือทะเลดำเปิดตัวเมื่อใด",
    "context": "CREATE TABLE table_name_86 (launched VARCHAR, fleet VARCHAR, number VARCHAR)"
  },
  {
    "answer": "SELECT number FROM table_name_85 WHERE name = \"chartist (чартист)\"",
    "question_en": "what number is associated with the name chartist (чартист)?",
    "question_th": "หมายเลขใดที่เกี่ยวข้องกับชื่อ Chartist (чартист)?",
    "context": "CREATE TABLE table_name_85 (number VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_90 WHERE venue = \"punt road oval\"",
    "question_en": "What date did the VFL play Punt Road Oval?",
    "question_th": "VFL เล่น 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_en": "Who played home team at the Arden Street Oval game?",
    "question_th": "ใครเล่นทีมเหย้าในเกม Arden Street Oval?",
    "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_en": "How much did the away team score at Victoria park?",
    "question_th": "ทีมเยือนทำสกอร์ที่ วิคตอเรีย พาร์ค ได้เท่าไหร่?",
    "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_en": "What date was the ensemble in North East England closed?",
    "question_th": "วงดนตรีในอังกฤษตะวันออกเฉียงเหนือปิดวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_70 (closure_date VARCHAR, region VARCHAR)"
  },
  {
    "answer": "SELECT operator FROM table_name_89 WHERE region = \"yorkshire\"",
    "question_en": "What was the operator of the ensemble from Yorkshire?",
    "question_th": "ผู้ดำเนินการวงดนตรีจากยอร์กเชียร์คืออะไร?",
    "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_en": "When was the ensemble closed that went on air in June 2003?",
    "question_th": "วงดนตรีที่ออกอากาศในเดือนมิถุนายน พ.ศ. 2546 ปิดตัวลงเมื่อใด",
    "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_en": "What was the license award date for the ensemble from South Wales and the Severn Estuary that was on air in July 2001?",
    "question_th": "วันที่ได้รับรางวัลใบอนุญาตสำหรับวงดนตรีจากเซาท์เวลส์และปากแม่น้ำเซเวิร์นที่ออกอากาศในเดือนกรกฎาคม พ.ศ. 2544 คือเมื่อใด",
    "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_en": "What is the operator of the ensemble from Yorkshire?",
    "question_th": "ผู้ดำเนินการวงดนตรีจากยอร์กเชียร์คืออะไร?",
    "context": "CREATE TABLE table_name_99 (operator VARCHAR, region VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_16 WHERE crowd > 41 OFFSET 846",
    "question_en": "Who was the home team when attendance was over 41,846?",
    "question_th": "เจ้าบ้านใครมีผู้ชมเกิน 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_en": "Where did Collingwood play as the home team?",
    "question_th": "คอลลิงวูดเล่นเป็นทีมเจ้าบ้านที่ไหน?",
    "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_en": "What was South Melbourne's score when they played as the home team?",
    "question_th": "เซาธ์ เมลเบิร์น ได้สกอร์เท่าไหร่เมื่อเล่นเป็นเจ้าบ้าน?",
    "context": "CREATE TABLE table_name_9 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(crowd) FROM table_name_44 WHERE venue = \"lake oval\"",
    "question_en": "What was the attendance when the VFL played Lake Oval?",
    "question_th": "การเข้าร่วมเมื่อ VFL เล่น 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_en": "What is the Winning Team with Rick Mears' and Kraco Twin 125 (R1)?",
    "question_th": "ทีมที่ชนะของ Rick Mears' และ 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_en": "What is Penske Racing's name?",
    "question_th": "Penske Racing ชื่ออะไร?",
    "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_en": "Who is the winning driver of Penske Racing, and what was Rick Mears' pole position?",
    "question_th": "ใครคือนักแข่งที่ชนะของ Penske Racing และตำแหน่งโพลโพซิชั่นของ Rick Mears คืออะไร?",
    "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_en": "Who was Kraco Twin 125 (R2)'s Winning Driver?",
    "question_th": "นักแข่งที่ชนะของ Kraco Twin 125 (R2) คือใคร?",
    "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_en": "What is the Report of Winning Team Penske Racing, and what was Rick Mears' Pole position?",
    "question_th": "รายงานของทีมที่ชนะ Penske Racing คืออะไร และตำแหน่งโพลของ Rick Mears คืออะไร",
    "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_en": "What is the Pole Position for Winning Team Penske Racing, and the Name of II Copa Mexico 150?",
    "question_th": "ตำแหน่งโพลโพซิชั่นของทีมชนะ Penske Racing และตำแหน่ง 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_en": "Who was the away team at the game held at Brunswick Street Oval?",
    "question_th": "ทีมเยือนในเกมที่จัดขึ้นที่สนามบรันสวิก สตรีท โอวัลคือใคร?",
    "context": "CREATE TABLE table_name_45 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT MAX(crowd) FROM table_name_13 WHERE away_team = \"collingwood\"",
    "question_en": "What was the largest crowd at a game where Collingwood was the away team?",
    "question_th": "อะไรคือฝูงชนที่ใหญ่ที่สุดในเกมที่คอลลิงวูดเป็นทีมเยือน?",
    "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_en": "For the group with 1.92% population in 1981, what was their percentage of the population in 1971?",
    "question_th": "สำหรับกลุ่มที่มีประชากร 1.92% ในปี พ.ศ. 2524 เปอร์เซ็นต์ของประชากรในปี พ.ศ. 2514 เป็นเท่าใด",
    "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_en": "For the group with 1.79% population in 1961, what was their percentage of the population in 1971?",
    "question_th": "สำหรับกลุ่มที่มีประชากร 1.79% ในปี พ.ศ. 2504 ร้อยละของประชากรในปี พ.ศ. 2514 เป็นเท่าใด",
    "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_en": "What is the rice amount when the potato amount is 79?",
    "question_th": "ปริมาณข้าวเมื่อมันฝรั่งมีปริมาณ 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_en": "What is the yam amount with amount of soybean 0 and potato of 0.01?",
    "question_th": "มันเทศปริมาณถั่วเหลือง 0 และมันฝรั่ง 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_en": "What is the yam amount when the Cassava amount is 0.11?",
    "question_th": "เมื่อปริมาณมันสำปะหลังเท่ากับ 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_en": "What is the wheat amount when the potato amount of 1.9?",
    "question_th": "ปริมาณข้าวสาลีเมื่อมันฝรั่งมีปริมาณ 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_en": "What is the Sweet Potato amount when the soybean amount is 1.65?",
    "question_th": "ปริมาณมันเทศเมื่อปริมาณถั่วเหลืองคือ 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_en": "What is the Yam amount when the Maze/Corn amount is 1355?",
    "question_th": "จำนวนเงินมันเทศเมื่อจำนวนเขาวงกต/ข้าวโพดคือ 1,355?",
    "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_en": "Which province and flag has a water area (km 2) of 0?",
    "question_th": "จังหวัดและธงใดมีพื้นที่น้ำ (กม. 2) เป็น 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_en": "When did the Browns play the Pittsburgh Steelers?",
    "question_th": "Browns เล่นกับ 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_en": "Who is the home side when north melbourne is the away side?",
    "question_th": "ฝั่งเจ้าบ้านใครเมื่อเมลเบิร์นเหนือเป็นฝั่งทีมเยือน?",
    "context": "CREATE TABLE table_name_51 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_99 WHERE away_team = \"collingwood\"",
    "question_en": "Where was the game played where Collingwood was the away team?",
    "question_th": "เกมนี้เล่นที่ไหนโดยที่คอลลิงวูดเป็นทีมเยือน?",
    "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_en": "What was the total tenure time with a rank of 49?",
    "question_th": "ดำรงตำแหน่งทั้งหมดด้วยอันดับ 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_en": "Who did Teo Fabi drive for when he won and had pole position?",
    "question_th": "เตียว ฟาบี ขับให้ใครเมื่อเขาชนะและได้ตำแหน่งโพลโพซิชั่น?",
    "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_en": "Who won for Forsythe Racing when Bobby Rahal had pole position?",
    "question_th": "ใครชนะ Forsythe Racing เมื่อ Bobby Rahal ขึ้นโพลโพซิชั่น?",
    "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_en": "Which team had the fastest lap of 1:13.516?",
    "question_th": "ทีมใดมีเวลาต่อรอบเร็วที่สุดที่ 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_en": "Who had the fastest lap when Al Unser won?",
    "question_th": "ใครทำเวลาต่อรอบได้เร็วที่สุดเมื่ออัล อุนเซอร์ ชนะ?",
    "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_en": "What is the maximum number of players for the sega game, hang-on (cartridge version)?",
    "question_th": "จำนวนผู้เล่นสูงสุดสำหรับเกม sega, hang-on (เวอร์ชันคาร์ทริดจ์) คือเท่าใด?",
    "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–2\"",
    "question_en": "Which Away team has a Score of 4–2?",
    "question_th": "ทีมเยือนทีมใดมีคะแนน 4–2?",
    "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_en": "Which Home team has an Away team of al-ain fc, and a Year of 2002/03?",
    "question_th": "ทีมเหย้าทีมใดมีทีมเยือนของอัล-ไอน์ เอฟซี และปี 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_en": "Which Home team has a Year of 2002/03, and a Venue of tahnoun bin mohamed stadium?",
    "question_th": "ทีมเจ้าบ้านใดมีปี 2002/03 และสถานที่ของสนามกีฬา tahnoun bin mohamed?",
    "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–1\"",
    "question_en": "Which Away team has a Home team of al-ain fc, and a Score of 1–1?",
    "question_th": "ทีมเยือนทีมใดมีทีมเหย้าของอัลอิน เอฟซี และสกอร์ 1–1?",
    "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_en": "What is the attendance of the game that was played on September 27, 1964?",
    "question_th": "แมตช์ที่เล่นวันที่ 27 ก.ย. 64 มีผู้ชมเป็นอย่างไรบ้าง?",
    "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_en": "What is the home side's score when geelong is the away team?",
    "question_th": "ฝั่งเจ้าบ้านมีสกอร์เท่าไหร่ เมื่อ จีลอง เป็นทีมเยือน?",
    "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_en": "What was the score of the tournament that was held in 1974?",
    "question_th": "การแข่งขันที่จัดขึ้นในปี 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_en": "What was the date when South Melbourne was the home team?",
    "question_th": "เซาธ์ เมลเบิร์น เป็นเจ้าบ้านวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_14 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_29 WHERE home_team = \"hawthorn\"",
    "question_en": "Where did Hawthorn play as home team?",
    "question_th": "ฮอว์ธอร์นเล่นเป็นทีมเจ้าบ้านที่ไหน?",
    "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_en": "When the VFL played Brunswick Street Oval what was the home team score?",
    "question_th": "เมื่อ VFL แข่งกับ Brunswick Street Oval สกอร์ของเจ้าบ้านคือเท่าไร?",
    "context": "CREATE TABLE table_name_20 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_9 WHERE away_team = \"geelong\"",
    "question_en": "Where did Geelong play as the away team?",
    "question_th": "จีลองเล่นเป็นทีมเยือนที่ไหน?",
    "context": "CREATE TABLE table_name_9 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(crowd) FROM table_name_2 WHERE home_team = \"fitzroy\"",
    "question_en": "What was the attendance when Fitzroy played as home team?",
    "question_th": "การเข้าร่วมงานเมื่อฟิตซ์รอยเล่นเป็นทีมเหย้าคืออะไร?",
    "context": "CREATE TABLE table_name_2 (crowd VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT SUM(crowd) FROM table_name_25 WHERE home_team = \"hawthorn\"",
    "question_en": "What was the attendance when Hawthorn played as home team?",
    "question_th": "การเข้าร่วมงานเมื่อฮอว์ธอร์นเล่นเป็นเจ้าบ้าน?",
    "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_en": "What engine did Casey Mears use on the Reynard 01i Chassis?",
    "question_th": "Casey Mears ใช้เครื่องยนต์อะไรกับแชสซี Reynard 01i",
    "context": "CREATE TABLE table_name_24 (engine VARCHAR, chassis VARCHAR, drivers VARCHAR)"
  },
  {
    "answer": "SELECT chassis FROM table_name_37 WHERE drivers = \"memo gidley\"",
    "question_en": "What Chassis did Memo Gidley use?",
    "question_th": "Memo Gidley ใช้แชสซีอะไร",
    "context": "CREATE TABLE table_name_37 (chassis VARCHAR, drivers VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_34 WHERE engine = \"honda\" AND races = \"all\"",
    "question_en": "Who used the Honda Engine for all the races?",
    "question_th": "ใครใช้เครื่องยนต์ฮอนด้าในทุกการแข่งขัน?",
    "context": "CREATE TABLE table_name_34 (team VARCHAR, engine VARCHAR, races VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_75 WHERE event = \"200m backstroke\"",
    "question_en": "What is the location of the 200m backstroke?",
    "question_th": "กรรเชียง 200 เมตร อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_75 (location VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT circuit FROM table_name_11 WHERE winning_driver = \"guy edwards\"",
    "question_en": "Which circuit did Guy Edwards win?",
    "question_th": "Guy Edwards ชนะสนามไหน?",
    "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_en": "What circuit did Rupert Keegan win in round 8?",
    "question_th": "Rupert Keegan ชนะสนามใดในรอบ 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_en": "Who won Silverstone in a round after 10?",
    "question_th": "ใครชนะซิลเวอร์สโตนในรอบหลัง 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_en": "What rank did actor Aaron Pedersen's character have?",
    "question_th": "ตัวละครของนักแสดง Aaron Pedersen มีอันดับใด",
    "context": "CREATE TABLE table_name_44 (rank VARCHAR, actor_actress VARCHAR)"
  },
  {
    "answer": "SELECT tenure FROM table_name_75 WHERE actor_actress = \"nadine garner\"",
    "question_en": "What years were actress Nadine Garner on the show?",
    "question_th": "นักแสดงหญิง Nadine Garner อยู่ในรายการกี่ปี?",
    "context": "CREATE TABLE table_name_75 (tenure VARCHAR, actor_actress VARCHAR)"
  },
  {
    "answer": "SELECT character FROM table_name_50 WHERE actor_actress = \"damien richardson\"",
    "question_en": "What character did actor Damien Richardson play?",
    "question_th": "นักแสดง Damien Richardson เล่นเป็นตัวละครอะไร?",
    "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_en": "What episode did actor Daniel Macpherson's character have the rank of Detective Senior Constable",
    "question_th": "ตัวละครของนักแสดง Daniel Macpherson มียศเป็นตำรวจอาวุโสในเรื่องใด",
    "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_en": "Who are the sideline reporter(s) on NBC with al michaels on the play-by-play after 2013?",
    "question_th": "ใครคือนักข่าวข้างสนามของ NBC กับอัล ไมเคิลส์ ในการแข่งขันแบบเล่นต่อเกมหลังปี 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_en": "What was the earliest year featuring Sideline reporter(s) of michelle tafoya and suzy kolber?",
    "question_th": "ปีแรกสุดที่มีนักข่าว Sideline ของ michelle tafoya และ 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_en": "What network is working in 2014?",
    "question_th": "เครือข่ายใดที่ทำงานในปี 2014?",
    "context": "CREATE TABLE table_name_19 (network VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT sideline_reporter_s_ FROM table_name_72 WHERE year = 2011",
    "question_en": "Who were the sideline reporter(s) in 2011?",
    "question_th": "ใครคือนักข่าวข้างสนามในปี 2554?",
    "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_en": "Who were the collor commentator(s) for ESPN before 2012?",
    "question_th": "ใครคือผู้วิจารณ์สีของ ESPN ก่อนปี 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_en": "What higher harmonics have an NOAA of 8?",
    "question_th": "ฮาร์โมนิคที่สูงกว่าใดที่มี NOAA เท่ากับ 8",
    "context": "CREATE TABLE table_name_19 (higher_harmonics VARCHAR, noaa VARCHAR)"
  },
  {
    "answer": "SELECT speed FROM table_name_95 WHERE noaa = \"37\"",
    "question_en": "What is the speed of the higher harmonics that have an NOAA of 37?",
    "question_th": "ความเร็วของฮาร์โมนิคที่สูงกว่าซึ่งมี NOAA เท่ากับ 37 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_95 (speed VARCHAR, noaa VARCHAR)"
  },
  {
    "answer": "SELECT noaa FROM table_name_49 WHERE darwin = \"mn 4\"",
    "question_en": "What is the NOAA of the higher harmonics that have a Darwin of mn 4?",
    "question_th": "NOAA ของฮาร์โมนิคที่สูงกว่าซึ่งมีดาร์วินเป็น mn 4 คืออะไร?",
    "context": "CREATE TABLE table_name_49 (noaa VARCHAR, darwin VARCHAR)"
  },
  {
    "answer": "SELECT noaa FROM table_name_27 WHERE darwin = \"m sf\"",
    "question_en": "What is the NOAA of the higher harmonics that have a Darwin of m sf?",
    "question_th": "NOAA ของฮาร์โมนิคที่สูงกว่าซึ่งมีดาร์วินเป็น 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_en": "Which higher harmonics have a speed of 0.0821373?",
    "question_th": "ฮาร์โมนิคที่สูงกว่าใดมีความเร็ว 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_en": "What is the Home team score for the Lake Oval Venue?",
    "question_th": "คะแนนของทีมเหย้าสำหรับสนามเลคโอวัลคือเท่าไร?",
    "context": "CREATE TABLE table_name_7 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT 2004 AS _05 FROM table_name_83 WHERE commodity = \"milk\"",
    "question_en": "What is the 2005-05 production for milk?",
    "question_th": "การผลิตนมในปี 2548-58 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_83 (commodity VARCHAR)"
  },
  {
    "answer": "SELECT home_team AS score FROM table_name_42 WHERE venue = \"victoria park\"",
    "question_en": "Which home team score occurred at Victoria Park?",
    "question_th": "สกอร์ทีมเหย้าใดที่เกิดขึ้นที่ วิคตอเรีย พาร์ค?",
    "context": "CREATE TABLE table_name_42 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_67 WHERE venue = \"glenferrie oval\"",
    "question_en": "Which home team played at Glenferrie Oval?",
    "question_th": "ทีมเจ้าบ้านใดเล่นที่ 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_en": "On which date was the venue at Windy Hill?",
    "question_th": "งาน 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_en": "Who has a round of 3 with a method of decision?",
    "question_th": "ใครได้รอบ 3 คน พร้อมวิธีตัดสิน?",
    "context": "CREATE TABLE table_name_68 (opponent VARCHAR, round VARCHAR, method VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_63 WHERE stage = \"ss6\"",
    "question_en": "What was the finishing time of Stage SS6?",
    "question_th": "เวลาสิ้นสุดของ 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_en": "What was the finishing time of the stage that featured a distance of 18.25km and a start time of 11:31?",
    "question_th": "เวลาสิ้นสุดของเวทีที่มีระยะทาง 18.25 กม. และเวลาเริ่มต้นที่ 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_en": "What was the average speed over 18.00km for winning driver Jean-Claude Andruet?",
    "question_th": "ความเร็วเฉลี่ยที่มากกว่า 18.00 กม. ของนักแข่งที่ชนะ 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_en": "What was the finishing time of the Stage that featured a distance of 24.00km and a start time of 21:27?",
    "question_th": "เวลาสิ้นสุดของสเตจที่มีระยะทาง 24.00 กม. และเวลาเริ่มต้นที่ 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_en": "Which name is 51.89 (2.043) long?",
    "question_th": "ชื่ออะไรยาว 51.89 (2.043)?",
    "context": "CREATE TABLE table_name_57 (name VARCHAR, length VARCHAR)"
  },
  {
    "answer": "SELECT bullet FROM table_name_25 WHERE shoulder = \"10.92 (.430)\"",
    "question_en": "Which bullet has a Shoulder of 10.92 (.430)?",
    "question_th": "กระสุนใดมีไหล่ 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_en": "Which shoulder has a Neck of 7.3 (.288)?",
    "question_th": "ไหล่ไหนมีคอ 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_en": "Which bullet has a Length of 33.78 (1.33)?",
    "question_th": "กระสุนใดมีความยาว 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_en": "Which length has a Bullet of 6.5 (.257)?",
    "question_th": "ความยาวใดที่มีกระสุนขนาด 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_en": "What is the lowest overall pick for a player from Washington?",
    "question_th": "ตัวเลือกโดยรวมที่ต่ำที่สุดสำหรับผู้เล่นจากวอชิงตันคืออะไร?",
    "context": "CREATE TABLE table_name_11 (overall INTEGER, college VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_95 WHERE round = 7 AND college = \"oklahoma\"",
    "question_en": "What position does the player from Oklahoma who was drafted in round 7 play?",
    "question_th": "ผู้เล่นจากโอคลาโฮมาที่ถูกดราฟท์ในรอบ 7 เล่นตำแหน่งอะไร",
    "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_en": "What is the highest overall number for a player from Kentucky State?",
    "question_th": "หมายเลขโดยรวมสูงสุดสำหรับผู้เล่นจากรัฐเคนตักกี้คือข้อใด",
    "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_en": "In what round was a defensive tackle drafted with an overall pick smaller than 149?",
    "question_th": "ในรอบใดที่แท็คเกิ้ลตัวรับถูกร่างโดยตัวเลือกโดยรวมน้อยกว่า 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_en": "How many attended the game with north melbourne as the away side?",
    "question_th": "มีกี่คนที่เข้าร่วมเกมนี้โดยมีเมลเบิร์นเหนือเป็นทีมเยือน?",
    "context": "CREATE TABLE table_name_99 (crowd VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_27 WHERE away_team = \"north melbourne\"",
    "question_en": "What venue featured north melbourne as the away side?",
    "question_th": "สนามใดที่มีเมลเบิร์นเหนือเป็นทีมเยือน?",
    "context": "CREATE TABLE table_name_27 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT crowd FROM table_name_58 WHERE away_team = \"melbourne\"",
    "question_en": "How many attended the game with north melbourne as the away side?",
    "question_th": "มีกี่คนที่เข้าร่วมเกมนี้โดยมีเมลเบิร์นเหนือเป็นทีมเยือน?",
    "context": "CREATE TABLE table_name_58 (crowd VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT elite_eight FROM table_name_47 WHERE conference = \"atlantic 10\"",
    "question_en": "How many teams from the Atlantic 10 conference made it to the Elite Eight?",
    "question_th": "มีกี่ทีมจากการประชุม Atlantic 10 ที่ผ่านเข้ารอบ 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_en": "How many Big 12 teams made it to the Final Four?",
    "question_th": "มีทีมใหญ่ 12 ทีมที่เข้ารอบ 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_en": "What chassis did Gordon Johncock use with his cosworth engine?",
    "question_th": "Gordon Johncock ใช้แชสซีอะไรกับเครื่องยนต์ cosworth ของเขา",
    "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_en": "Who drove the Chevrolet with the Eagle chassis?",
    "question_th": "ใครขับเชฟโรเลตด้วยแชสซี Eagle?",
    "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_en": "What tires did BFM Enterprises run on their Offy engine and manta chassis?",
    "question_th": "BFM Enterprises ใช้ยางชนิดใดกับเครื่องยนต์ Offy และแชสซี Manta",
    "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_en": "What chassis does Gary Bettenhausen use?",
    "question_th": "Gary Bettenhausen ใช้แชสซีอะไร",
    "context": "CREATE TABLE table_name_13 (chassis VARCHAR, drivers VARCHAR)"
  },
  {
    "answer": "SELECT chassis FROM table_name_51 WHERE drivers = \"ross davis\"",
    "question_en": "What chassis doe Ross Davis use?",
    "question_th": "Ross Davis ใช้แชสซีอะไร?",
    "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_en": "What engine does Chip Mead of Parts Washer Service use?",
    "question_th": "Chip Mead of Parts Washer Service ใช้เครื่องมืออะไร?",
    "context": "CREATE TABLE table_name_36 (engine VARCHAR, team VARCHAR, drivers VARCHAR)"
  },
  {
    "answer": "SELECT heat__lane_ FROM table_name_75 WHERE rank = 22",
    "question_en": "Which heat and lane was in rank of 22?",
    "question_th": "ความร้อนและเลนใดอยู่ในอันดับ 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_en": "Who has a rank below 125 and time of 00: 56.30?",
    "question_th": "ใครมีอันดับต่ำกว่า 125 และเวลา 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_en": "Which Terminus is on line 10?",
    "question_th": "ปลายทางใดอยู่ในบรรทัดที่ 10?",
    "context": "CREATE TABLE table_name_1 (terminus VARCHAR, line VARCHAR)"
  },
  {
    "answer": "SELECT terminus FROM table_name_46 WHERE color = \"diamond\"",
    "question_en": "The color diamond is assigned to which Terminus?",
    "question_th": "เพชรสีถูกกำหนดให้กับปลายทางใด?",
    "context": "CREATE TABLE table_name_46 (terminus VARCHAR, color VARCHAR)"
  },
  {
    "answer": "SELECT length FROM table_name_89 WHERE stations = \"16\"",
    "question_en": "Stations of 16 is assigned what length?",
    "question_th": "สถานีที่ 16 กำหนดความยาวเท่าใด?",
    "context": "CREATE TABLE table_name_89 (length VARCHAR, stations VARCHAR)"
  },
  {
    "answer": "SELECT terminus FROM table_name_4 WHERE color = \"sapphire\"",
    "question_en": "The color sapphire is assigned to which Terminus?",
    "question_th": "แซฟไฟร์สีถูกกำหนดให้กับเทอร์มินัสตัวใด",
    "context": "CREATE TABLE table_name_4 (terminus VARCHAR, color VARCHAR)"
  },
  {
    "answer": "SELECT length FROM table_name_60 WHERE daily_ridership > 414",
    "question_en": "Daily ridership greater that 414 is associated with which length?",
    "question_th": "จำนวนผู้โดยสารรายวันที่มากกว่า 414 สัมพันธ์กับความยาวเท่าใด",
    "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_en": "Which competition did Târlea come in 4th place, in 2003 at Budapest, Hungary?",
    "question_th": "Târlea แข่งขันรายการใดได้อันดับที่ 4 ในปี 2546 ที่บูดาเปสต์ ประเทศฮังการี",
    "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_en": "Prior to 2004, what was the name of the competition that took place in Johannesburg, South Africa and had the 400 m hurdles event?",
    "question_th": "ก่อนปี 2004 การแข่งขันที่จัดขึ้นที่เมืองโจฮันเนสเบิร์ก แอฟริกาใต้ และมีงานวิ่งข้ามรั้ว 400 ม. มีชื่อว่าอะไร",
    "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_en": "What events did the competition that took place in 1997 have?",
    "question_th": "การแข่งขันที่เกิดขึ้นในปี 1997 มีเหตุการณ์อะไรบ้าง?",
    "context": "CREATE TABLE table_name_96 (notes VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_name_6 WHERE position = \"7th\"",
    "question_en": "What was the earliest year that Târlea took 7th place?",
    "question_th": "Târlea ขึ้นอันดับที่ 7 ในปีแรกสุดคือปีใด",
    "context": "CREATE TABLE table_name_6 (year INTEGER, position VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_56 WHERE competition = \"european indoor championships\"",
    "question_en": "What place did Târlea come in at the European Indoor Championships?",
    "question_th": "Târlea เข้ามาอยู่ในตำแหน่งใดในการแข่งขัน 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_en": "What venue did the European Championships' 400 m Hurdles take place?",
    "question_th": "วิ่งข้ามรั้ว 400 ม. ของการแข่งขันชิงแชมป์ยุโรปจัดขึ้นที่ใด?",
    "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_en": "what year has the highest marcel granollers champions?",
    "question_th": "แชมป์มาร์เซล กราโนลเลอร์สูงสุดปีไหน?",
    "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_en": "What is the child sex ration for the population with 37.7% work participation?",
    "question_th": "สัดส่วนเพศเด็กของประชากรที่มีส่วนร่วมทำงาน 37.7% เป็นเท่าใด",
    "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_en": "What day does the team play at punt road oval?",
    "question_th": "ทีมงานเล่นที่พันท์โรดโอวัลวันไหนครับ?",
    "context": "CREATE TABLE table_name_26 (date VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_64 WHERE away_team = \"geelong\"",
    "question_en": "What venue features geelong as the away side?",
    "question_th": "สนามใดที่มีจีลองเป็นทีมเยือน?",
    "context": "CREATE TABLE table_name_64 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT pages FROM table_name_69 WHERE date = \"1987-08\"",
    "question_en": "How many pages does the story from 1987-08 have?",
    "question_th": "เรื่องราวระหว่างปี 1987-08 มีกี่หน้า?",
    "context": "CREATE TABLE table_name_69 (pages VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT story AS code FROM table_name_38 WHERE date = \"2002-12\"",
    "question_en": "What is the story code of the story published on 2002-12?",
    "question_th": "รหัสเรื่องราวของเรื่องราวที่เผยแพร่เมื่อ 2545-55 คืออะไร?",
    "context": "CREATE TABLE table_name_38 (story VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT winning_driver FROM table_name_12 WHERE winning_car = \"wolf wr3\"",
    "question_en": "Which driver drove car Wolf WR3?",
    "question_th": "คนขับคนไหนขับรถ 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_en": "Which driver drove car McLaren M23 at the Snetterton Circuit?",
    "question_th": "คนขับคนไหนขับรถ McLaren M23 ที่สนาม 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_en": "What car did Tony Trimmer drive at the Oulton Park Circuit?",
    "question_th": "Tony Trimmer ขับรถคันไหนที่สนาม 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_en": "What date did the International Gold Cup take place?",
    "question_th": "International Gold Cup จัดขึ้นวันไหน?",
    "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_en": "What's the theme for a series of season 3 with smaller than 148 days?",
    "question_th": "ธีมของซีรีส์ซีซั่น 3 ที่มีเวลาน้อยกว่า 148 วันคืออะไร",
    "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_en": "What is the home team score when the away team is Collingwood?",
    "question_th": "สกอร์เจ้าบ้านเมื่อทีมเยือนคือคอลลิงวูดเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_96 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT crowd FROM table_name_57 WHERE away_team = \"geelong\"",
    "question_en": "What is the crowd size when Geelong is the away team?",
    "question_th": "ขนาดฝูงชนเมื่อจีลองเป็นทีมเยือนคือเท่าไร?",
    "context": "CREATE TABLE table_name_57 (crowd VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(crowd) FROM table_name_33 WHERE away_team = \"geelong\"",
    "question_en": "What is the highest crowd population when the away team is Geelong?",
    "question_th": "จำนวนฝูงชนสูงสุดเมื่อทีมเยือนคือจีลองคือเท่าใด?",
    "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_en": "What away team plays at Arden Street Oval?",
    "question_th": "ทีมเยือนทีมไหนเล่นที่ 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_en": "Which name has a pressure of 985hpa (29.09inhg)?",
    "question_th": "ชื่ออะไรมีความดัน 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_en": "What dates was the storm called 07 active?",
    "question_th": "พายุที่เรียกว่า 07 ใช้งานอยู่วันไหน",
    "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_en": "Which building was built in 2015, has less than 40 floors and is larger than 509 feet?",
    "question_th": "อาคารใดสร้างขึ้นในปี 2558 มีน้อยกว่า 40 ชั้นและใหญ่กว่า 509 ฟุต",
    "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_en": "What is the highest floor for the building measuring 220 meters?",
    "question_th": "อาคารสูง 220 เมตร ชั้นบนสุดคือชั้นใด",
    "context": "CREATE TABLE table_name_97 (floors INTEGER, metres INTEGER)"
  },
  {
    "answer": "SELECT COUNT(total) FROM table_name_24 WHERE year_built = 2010",
    "question_en": "How many entries feature a year built of 2010?",
    "question_th": "มีรายการกี่รายการที่มีลักษณะเป็นปีที่สร้างขึ้นในปี 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_en": "What are the numbers for lc models built in 2009?",
    "question_th": "ตัวเลขของรุ่น lc ที่สร้างขึ้นในปี 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_en": "Who has a Record of 5-2?",
    "question_th": "ใครมีสถิติ 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_en": "For the race Champion Spark Plug 300, what is the report?",
    "question_th": "สำหรับการแข่ง Champion Spark Plug 300 มีรายงานอย่างไรบ้าง?",
    "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_en": "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?",
    "question_th": "สำหรับการแข่งขันที่จัดขึ้นที่สนามบิน Cleveland Burke Lakefront โดยมีนักแข่งที่ชนะ Emerson Fittipaldi และตำแหน่งโพลโพซิชั่น Michael Andretti ทีมใดเป็นผู้ชนะ",
    "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_en": "What is the average number of deaths for earthquakes centered in Damghan?",
    "question_th": "จำนวนผู้เสียชีวิตโดยเฉลี่ยจากแผ่นดินไหวที่มีศูนย์กลางใน 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_en": "What was the score of the home team when Richmond was the away team?",
    "question_th": "เจ้าบ้านเมื่อริชมอนด์เป็นทีมเยือนสกอร์เท่าไหร่?",
    "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_en": "What was the result of the match that took place in Perth, featuring a score of 48-12?",
    "question_th": "ผลการแข่งขันที่เมืองเพิร์ธด้วยสกอร์ 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_en": "What was the result of the match in Penrith that featured a score of 48-12?",
    "question_th": "ผลการแข่งขันที่เพนริธด้วยสกอร์ 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_en": "What is the home team score when st kilda is the away team?",
    "question_th": "สกอร์ของเจ้าบ้านเมื่อเซนต์คิลดาเป็นทีมเยือนเป็นเท่าไหร่?",
    "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_en": "What is the home team score when st kilda is the away team?",
    "question_th": "สกอร์ของเจ้าบ้านเมื่อเซนต์คิลดาเป็นทีมเยือนเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_64 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_62 WHERE home_team = \"fitzroy\"",
    "question_en": "What venue featured fitzroy as the home squad?",
    "question_th": "สนามใดที่มีฟิตซ์รอยเป็นทีมเหย้า?",
    "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_en": "What is the home team score at brunswick street oval?",
    "question_th": "สกอร์เจ้าบ้านที่บรันสวิก สตรีท โอวัลเป็นเท่าไหร่?",
    "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_en": "What nationality is the guard from ucla?",
    "question_th": "การ์ดจาก 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_en": "What position is played by farmar, jordan jordan farmar?",
    "question_th": "ฟาร์มาร์, จอร์แดน, จอร์แดน ฟาร์มาเล่นตำแหน่งอะไร?",
    "context": "CREATE TABLE table_name_29 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_name_30 WHERE venue = \"william r. johnson coliseum\"",
    "question_en": "What region is William R. Johnson Coliseum in?",
    "question_th": "สนามกีฬา William R. Johnson Coliseum อยู่ในภูมิภาคใด",
    "context": "CREATE TABLE table_name_30 (region VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT host FROM table_name_78 WHERE city = \"nashville\"",
    "question_en": "What was the host for the round in Nashville?",
    "question_th": "เจ้าภาพในรอบนี้ในแนชวิลล์เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_78 (host VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT host FROM table_name_12 WHERE venue = \"hammons student center\"",
    "question_en": "What was the host of the round at Hammons Student Center?",
    "question_th": "เจ้าภาพรอบที่ 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_en": "What city is University Gym (Gold Mine) in?",
    "question_th": "University Gym (เหมืองทอง) ตั้งอยู่ในเมืองใด?",
    "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_en": "What city in the east region in North Carolina was the round where the University of Richmond was the host?",
    "question_th": "เมืองใดในภูมิภาคตะวันออกของนอร์ทแคโรไลนาที่มหาวิทยาลัยริชมอนด์เป็นเจ้าภาพ",
    "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_en": "What was the host of the round in the Montagne Center in Texas?",
    "question_th": "เจ้าภาพรอบนี้ที่ Montagne Center ในเท็กซัสเป็นอย่างไรบ้าง",
    "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_en": "Which venue had a match played on August 16, 2006?",
    "question_th": "สนามใดมีการแข่งขันในวันที่ 16 สิงหาคม พ.ศ. 2549?",
    "context": "CREATE TABLE table_name_90 (venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_78 WHERE date = \"april 2, 2006\"",
    "question_en": "Which match was played on April 2, 2006?",
    "question_th": "นัดใดที่เล่นในวันที่ 2 เมษายน พ.ศ. 2549?",
    "context": "CREATE TABLE table_name_78 (competition VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_58 WHERE rounds = \"5\"",
    "question_en": "Who is the Constructor for round 5?",
    "question_th": "ใครคือผู้สร้างรอบที่ 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_en": "Which round has the mv agusta f4 1000 mt?",
    "question_th": "mv agusta f4 1000mt มีรอบไหนบ้าง?",
    "context": "CREATE TABLE table_name_75 (rounds VARCHAR, motorcycle VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_46 WHERE constructor = \"yamaha\"",
    "question_en": "Who does Yamaha Construct for?",
    "question_th": "Yamaha Construct เพื่อใคร?",
    "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_en": "Who is riding the Ducati 999 RS in Round 7?",
    "question_th": "ใครบ้างที่ขี่ Ducati 999 RS ในรอบที่ 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_en": "Who is the Constructor for the Trac Racing Team?",
    "question_th": "ใครคือผู้สร้างทีม Trac Racing?",
    "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_en": "What was the away team score when Richmond was the home team?",
    "question_th": "สกอร์ทีมเยือนเมื่อริชมอนด์เป็นเจ้าบ้านเป็นเท่าไหร่?",
    "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_en": "What was the away team score for the game played at the Brunswick Street Oval?",
    "question_th": "คะแนนของทีมเยือนในเกมที่เล่นที่สนามบรันสวิค สตรีท โอวัลเป็นเท่าใด",
    "context": "CREATE TABLE table_name_15 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_89 WHERE away_team = \"hawthorn\"",
    "question_en": "Where did Hawthorn play as the away team?",
    "question_th": "ฮอว์ธอร์นเล่นทีมเยือนที่ไหน?",
    "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_en": "What rank did Poland receive with a time of 1:50.12?",
    "question_th": "โปแลนด์ได้อันดับไหนด้วยเวลา 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_en": "What is arizona state overall lowest?",
    "question_th": "รัฐแอริโซนาโดยรวมต่ำสุดคืออะไร?",
    "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_en": "What are the fewest losses for a player lower than 3, with wins fewer than 75%, 0 draws and 56 points?",
    "question_th": "อะไรคือความสูญเสียน้อยที่สุดสำหรับผู้เล่นที่ต่ำกว่า 3 โดยชนะน้อยกว่า 75% เสมอ 0 และ 56 แต้ม?",
    "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_en": "How many tries for the player whose number is greater than 2 and losses are smaller than 0?",
    "question_th": "ผู้เล่นที่มีจำนวนมากกว่า 2 และการสูญเสียน้อยกว่า 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_en": "What is the number of tries for the player who is larger than 16?",
    "question_th": "จำนวนครั้งที่พยายามสำหรับผู้เล่นที่มากกว่า 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_en": "What is the smallest draws for a player larger than 2 with a 100% wins?",
    "question_th": "การเสมอที่น้อยที่สุดสำหรับผู้เล่นที่มากกว่า 2 คนและชนะ 100% คือเท่าไร?",
    "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_en": "What is the average draws for a player larger than 16 with more than 1 tries and a win percentage smaller than 56.15%?",
    "question_th": "ค่าเฉลี่ยเสมอสำหรับผู้เล่นที่มากกว่า 16 คนโดยพยายามมากกว่า 1 ครั้งและเปอร์เซ็นต์การชนะน้อยกว่า 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_en": "What was the 2011 Wimbledon result?",
    "question_th": "ผลการแข่งขันวิมเบิลดันปี 2011 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_22 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_59 WHERE 2007 = \"f\" AND tournament = \"us open\"",
    "question_en": "What was the result of the 2011 US Open when the 2007 was F?",
    "question_th": "อะไรคือผลลัพธ์ของ 2011 US Open เมื่อปี 2007 เป็น F?",
    "context": "CREATE TABLE table_name_59 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2007 FROM table_name_16 WHERE 2011 = \"f\" AND 2009 = \"w\"",
    "question_en": "What was the result in 2007 when the 2011 was F and 2009 was W?",
    "question_th": "ผลลัพธ์ในปี 2550 เมื่อปี 2554 เป็น F และปี 2552 เป็น W คืออะไร",
    "context": "CREATE TABLE table_name_16 (Id VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_67 WHERE 2009 = \"w\"",
    "question_en": "Which tournament had the result of a W in 2009?",
    "question_th": "ทัวร์นาเมนต์ใดที่มีผล W ในปี 2009?",
    "context": "CREATE TABLE table_name_67 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_58 WHERE 2009 = \"grand slams\"",
    "question_en": "Which 2009 tournament had Grand Slams?",
    "question_th": "ทัวร์นาเมนต์ใดในปี 2009 ที่มีแกรนด์สแลม",
    "context": "CREATE TABLE table_name_58 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_61 WHERE 2009 = \"f\" AND 2010 = \"f\"",
    "question_en": "Which tournament had the result with 2009 was F and 2010 was F?",
    "question_th": "ทัวร์นาเมนต์ใดที่มีผลการแข่งขันในปี 2009 เป็น F และปี 2010 เป็น F",
    "context": "CREATE TABLE table_name_61 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_54 WHERE home_team = \"hawthorn\"",
    "question_en": "What was the date of the game when Hawthorn was the home team?",
    "question_th": "ในเกมวันที่ฮอว์ธอร์นเป็นเจ้าบ้านคือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_54 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_48 WHERE margin = 10",
    "question_en": "Which season had a margin of 10?",
    "question_th": "ฤดูกาลใดมีมาร์จิ้น 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_en": "What did the Tournament of Australian Championships, with an A in 1969, get in 1954?",
    "question_th": "การแข่งขัน Tournament of Australian Championships โดยได้ A ในปี 1969 ได้อะไรในปี 1954",
    "context": "CREATE TABLE table_name_28 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 1951 FROM table_name_25 WHERE tournament = \"sr\"",
    "question_en": "What did the Tournament of SR get in 1951?",
    "question_th": "Tournament of SR ได้อะไรในปี 1951?",
    "context": "CREATE TABLE table_name_25 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 1956 AS _1968 FROM table_name_31 WHERE 1969 = \"qf\"",
    "question_en": "What did the tournament with a QF in 1969 get in 1956-1968?",
    "question_th": "การแข่งขันกับ QF ในปี 1969 ได้อะไรในปี 1956-1968?",
    "context": "CREATE TABLE table_name_31 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1949 FROM table_name_22 WHERE 1945 = \"a\"",
    "question_en": "What did the tournament that got an A in 1945 get in 1949?",
    "question_th": "การแข่งขันที่ได้ A ในปี 1945 ได้อะไรในปี 1949?",
    "context": "CREATE TABLE table_name_22 (Id VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_65 WHERE home_team = \"geelong\"",
    "question_en": "When did Geelong play as the home team?",
    "question_th": "จีลองเล่นเป็นเจ้าบ้านเมื่อไหร่?",
    "context": "CREATE TABLE table_name_65 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT crowd FROM table_name_56 WHERE away_team = \"north melbourne\"",
    "question_en": "When North Melbourne played as the away team, what was the crowd numbers?",
    "question_th": "ตอน นอร์ธ เมลเบิร์น เล่นเป็นทีมเยือน จำนวนคนดูเท่าไหร่?",
    "context": "CREATE TABLE table_name_56 (crowd VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(round) FROM table_name_95 WHERE player = \"honester davidson\"",
    "question_en": "How many rounds did Honester Davidson play?",
    "question_th": "Honester Davidson เล่นไปกี่รอบ?",
    "context": "CREATE TABLE table_name_95 (round VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT school_club_team FROM table_name_15 WHERE overall = 21",
    "question_en": "What School or Club team has an overall score of 21?",
    "question_th": "ทีมโรงเรียนหรือสโมสรใดมีคะแนนรวม 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_en": "What total number of Overalls has a round that was smaller than 1?",
    "question_th": "ชุดเอี๊ยมที่มีรอบน้อยกว่า 1 มีทั้งหมดกี่รอบ?",
    "context": "CREATE TABLE table_name_86 (overall VARCHAR, round INTEGER)"
  },
  {
    "answer": "SELECT player FROM table_name_33 WHERE position = \"kicker\"",
    "question_en": "What player is a kicker?",
    "question_th": "นักเตะคนไหนคือนักเตะ?",
    "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_en": "What position and school/club team of Oklahoma state has an overall less than 410 and a round smaller than 5?",
    "question_th": "ตำแหน่งและทีมโรงเรียน/สโมสรของรัฐโอคลาโฮมามีคะแนนรวมน้อยกว่า 410 คะแนนและรอบที่น้อยกว่า 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_en": "Which player plays forward and is from Kentucky?",
    "question_th": "ผู้เล่นคนไหนที่เล่นกองหน้าและมาจากรัฐเคนตักกี้?",
    "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_en": "What team was the away team for the venue punt road oval?",
    "question_th": "ทีมใดเป็นทีมเยือนสำหรับสนามถ่อวงรี?",
    "context": "CREATE TABLE table_name_4 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT MAX(rank) FROM table_name_3 WHERE opposition = \"westmeath\"",
    "question_en": "What is the highest ranked player who opposed Westmeath?",
    "question_th": "ผู้เล่นที่มีอันดับสูงสุดที่ต่อต้านเวสต์มีธคือใคร?",
    "context": "CREATE TABLE table_name_3 (rank INTEGER, opposition VARCHAR)"
  },
  {
    "answer": "SELECT county FROM table_name_67 WHERE player = \"tony o'sullivan\"",
    "question_en": "What is Tony O'Sullivan's county?",
    "question_th": "เทศมณฑลของ Tony O'Sullivan คืออะไร?",
    "context": "CREATE TABLE table_name_67 (county VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT network FROM table_name_71 WHERE language = \"punjabi\"",
    "question_en": "What Network has Punjabi as the Language?",
    "question_th": "เครือข่ายใดมีปัญจาบเป็นภาษา?",
    "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_en": "What Genre has Hindi as the Language and Star Gold as the Network?",
    "question_th": "ประเภทใดที่มีภาษาฮินดีเป็นภาษาและ Star Gold เป็นเครือข่าย",
    "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_en": "What is the Origin of Programming for the Network NDTV India?",
    "question_th": "ต้นกำเนิดของการเขียนโปรแกรมสำหรับเครือข่าย 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_en": "What is the Origin of Programming for the Network MTV India?",
    "question_th": "ต้นกำเนิดของการเขียนโปรแกรมสำหรับเครือข่าย 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_en": "What is the Language for Network PTC Punjabi?",
    "question_th": "ภาษาสำหรับเครือข่าย PTC Punjabi คืออะไร?",
    "context": "CREATE TABLE table_name_28 (language VARCHAR, network VARCHAR)"
  },
  {
    "answer": "SELECT genre FROM table_name_93 WHERE network = \"zee tv\"",
    "question_en": "What Genre has the Network Zee TV?",
    "question_th": "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_en": "What team was the home team at the venue junction oval?",
    "question_th": "ทีมเจ้าบ้านคือทีมใดที่สนามชุมทางรี?",
    "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_en": "What away team played when the home team was south melbourne?",
    "question_th": "ทีมเยือนทีมไหนเล่นตอนเจ้าบ้านอยู่เซาท์เมลเบิร์น?",
    "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_en": "What team was the home team when Richmond was the away team?",
    "question_th": "ทีมไหนเป็นเจ้าบ้าน เมื่อริชมอนด์เป็นทีมเยือน?",
    "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_en": "What was the score when geelong was the away team?",
    "question_th": "เมื่อจีลองเป็นทีมเยือนสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_45 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT cb_cw FROM table_name_89 WHERE year = 1982",
    "question_en": "What was the CB CW for the year of 1982?",
    "question_th": "CB CW สำหรับปี 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_en": "What is the most current year that had a BB CW of 78?",
    "question_th": "ปีปัจจุบันที่มี BB CW อยู่ที่ 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_en": "What was the North Melbourne's score when they played as the home team?",
    "question_th": "นอร์ธ เมลเบิร์น ได้สกอร์เท่าไหร่เมื่อเล่นเป็นเจ้าบ้าน?",
    "context": "CREATE TABLE table_name_52 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT AVG(crowd) FROM table_name_54 WHERE home_team = \"st kilda\"",
    "question_en": "What was the attendance at the St Kilda home game?",
    "question_th": "การมีส่วนร่วมในเกมเหย้าของเซนต์คิลดาเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_54 (crowd INTEGER, home_team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(crowd) FROM table_name_58 WHERE venue = \"junction oval\"",
    "question_en": "What was the attendance when the VFL played Junction Oval?",
    "question_th": "การเข้าร่วมงานเมื่อ VFL เล่น Junction Oval คืออะไร?",
    "context": "CREATE TABLE table_name_58 (crowd VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_95 WHERE away_team = \"melbourne\"",
    "question_en": "Where did Melbourne play as the away team?",
    "question_th": "เมลเบิร์นเล่นเป็นทีมเยือนที่ไหน?",
    "context": "CREATE TABLE table_name_95 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_82 WHERE home_team = \"fitzroy\"",
    "question_en": "What is Fitzroy's home field?",
    "question_th": "สนามเหย้าของฟิตซ์รอยคืออะไร?",
    "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_en": "Who was the away team at punt road oval?",
    "question_th": "ทีมเยือนที่สนามพันท์โรดโอวัลคือใคร?",
    "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_en": "What was the away team score at victoria park?",
    "question_th": "คะแนนทีมเยือนที่วิคตอเรีย พาร์คเป็นเท่าไหร่?",
    "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_en": "Who was the home team in the game played at arden street oval?",
    "question_th": "ทีมเจ้าบ้านในเกมที่เล่นที่อาร์เดน สตรีท โอวัลคือใคร?",
    "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_en": "What was St Kilda's away team score?",
    "question_th": "คะแนนทีมเยือนของเซนต์คิลดาเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_21 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_13 WHERE home_team = \"south melbourne\"",
    "question_en": "Who was home team South Melbourne's opponent?",
    "question_th": "ใครคือคู่ต่อสู้ของทีมเหย้าของเซาธ์ เมลเบิร์น?",
    "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_en": "What was the music for the team who earned a score of 13 (5, 4, 4)?",
    "question_th": "เพลงอะไรของทีมที่ได้คะแนน 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_en": "What was the music of the team that was eliminated?",
    "question_th": "เพลงของทีมที่ถูกคัดออกคือเพลงอะไร?",
    "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_en": "Which couple danced a jive and received a score of 21 (6, 7, 8)?",
    "question_th": "คู่ไหนเต้นตลกแล้วได้คะแนน 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_en": "What was the score of the team that danced a jive and was safe?",
    "question_th": "ทีมที่เต้นหลอกและปลอดภัยได้คะแนนเท่าไหร่?",
    "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_en": "What engine did Dick Simon Racing use?",
    "question_th": "Dick Simon Racing ใช้เครื่องยนต์อะไร?",
    "context": "CREATE TABLE table_name_21 (engine VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT drivers FROM table_name_31 WHERE team = \"arciero racing\"",
    "question_en": "Who drove for Arciero Racing?",
    "question_th": "ใครขับรถให้กับ Arciero Racing?",
    "context": "CREATE TABLE table_name_31 (drivers VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT chassis FROM table_name_94 WHERE drivers = \"rich vogler\"",
    "question_en": "What Chassis did Rich Vogler use?",
    "question_th": "Rich Vogler ใช้แชสซีอะไร",
    "context": "CREATE TABLE table_name_94 (chassis VARCHAR, drivers VARCHAR)"
  },
  {
    "answer": "SELECT tires FROM table_name_46 WHERE drivers = \"johnny parsons\"",
    "question_en": "What tires did Johnny Parsons use?",
    "question_th": "Johnny Parsons ใช้ยางอะไร?",
    "context": "CREATE TABLE table_name_46 (tires VARCHAR, drivers VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_72 WHERE winning_driver = \"bobby unser\"",
    "question_en": "What race did Bobby Unser win?",
    "question_th": "Bobby Unser ชนะการแข่งขันประเภทใด",
    "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_en": "Which driver won the Indianapolis 500 the year the Chaparral team also won it?",
    "question_th": "นักแข่งคนไหนที่ชนะ Indianapolis 500 ในปีที่ทีม Chaparral ชนะด้วย",
    "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_en": "Which report includes Bobby Unser as the Pole Position and Rick Mears as the Winning driver?",
    "question_th": "รายงานใดที่มี Bobby Unser ดำรงตำแหน่งโพลและ Rick Mears เป็นนักขับที่ชนะ",
    "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_en": "Which race has a winning team of Penske Racing, and a winning driver of Bobby Unser?",
    "question_th": "การแข่งขันใดมีทีมที่ชนะของ Penske Racing และนักแข่งที่ชนะของ 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_en": "On what day is geelong the home team?",
    "question_th": "จีลองเจ้าบ้านวันไหน?",
    "context": "CREATE TABLE table_name_37 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_11 WHERE away_team = \"collingwood\"",
    "question_en": "What venue featured collingwood as the away side?",
    "question_th": "สนามใดที่มีคอลลิงวูดเป็นทีมเยือน?",
    "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_en": "What is the home team score at windy hill?",
    "question_th": "สกอร์ทีมเจ้าบ้านที่วินดี้ ฮิลล์เป็นเท่าไหร่?",
    "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_en": "What season has races larger than 18 and 36 points?",
    "question_th": "ฤดูกาลใดที่มีการแข่งขันมากกว่า 18 และ 36 คะแนน?",
    "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_en": "The venue of Brunswick Street Oval was used on what date?",
    "question_th": "สนาม Brunswick Street Oval ใช้ในวันที่ใด?",
    "context": "CREATE TABLE table_name_53 (date VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT MIN(crowd) FROM table_name_61 WHERE away_team = \"north melbourne\"",
    "question_en": "What is the smallest crowd with the away team of North Melbourne?",
    "question_th": "ทีมเยือน นอร์ท เมลเบิร์น มีผู้ชมน้อยที่สุดคือทีมใด?",
    "context": "CREATE TABLE table_name_61 (crowd INTEGER, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_91 WHERE home_team = \"essendon\"",
    "question_en": "On which date was Essendon the home team?",
    "question_th": "เอสเซนดอนเป็นเจ้าบ้านวันไหน?",
    "context": "CREATE TABLE table_name_91 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT airport FROM table_name_10 WHERE iata = \"dac\"",
    "question_en": "What is the name of the airport with IATA code DAC?",
    "question_th": "ชื่อสนามบินที่มีรหัส IATA DAC คืออะไร?",
    "context": "CREATE TABLE table_name_10 (airport VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT iata FROM table_name_56 WHERE city = \"delhi\"",
    "question_en": "What is the IATA code for Delhi?",
    "question_th": "รหัส IATA สำหรับเดลีคืออะไร",
    "context": "CREATE TABLE table_name_56 (iata VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT iata FROM table_name_98 WHERE icao = \"rcmq\"",
    "question_en": "What is the IATA code for the city with ICAO code of RCMQ?",
    "question_th": "รหัส IATA สำหรับเมืองที่มีรหัส ICAO ของ RCMQ คืออะไร",
    "context": "CREATE TABLE table_name_98 (iata VARCHAR, icao VARCHAR)"
  },
  {
    "answer": "SELECT airport FROM table_name_39 WHERE icao = \"wmkp\"",
    "question_en": "What is the airport with ICAO code of WMKP?",
    "question_th": "สนามบินที่มีรหัส ICAO ของ WMKP คืออะไร?",
    "context": "CREATE TABLE table_name_39 (airport VARCHAR, icao VARCHAR)"
  },
  {
    "answer": "SELECT iata FROM table_name_7 WHERE airport = \"shahjalal international airport\"",
    "question_en": "What is the IATA code for SHahjalal International Airport?",
    "question_th": "รหัส IATA ของสนามบินนานาชาติ SHahjalal คืออะไร",
    "context": "CREATE TABLE table_name_7 (iata VARCHAR, airport VARCHAR)"
  },
  {
    "answer": "SELECT icao FROM table_name_54 WHERE city = \"ningbo\"",
    "question_en": "What is the ICAO for the airport in Ningbo?",
    "question_th": "ICAO สำหรับสนามบินในหนิงโปคืออะไร?",
    "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_en": "What is the BB pop of the song with a CB CW of 1, RIAA of P and was released more recently than 1976?",
    "question_th": "BB pop ของเพลงอะไรที่มี CB CW อยู่ที่ 1, RIAA ของ P และออกจำหน่ายเมื่อเร็วๆ นี้มากกว่าปี 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_en": "What is the CB CW of the song which has a BB Pop of 11?",
    "question_th": "CB CW ของเพลงที่มี BB Pop อยู่ที่ 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_en": "What was the crowd numbers when the VFL played Victoria Park?",
    "question_th": "จำนวนฝูงชนเมื่อ VFL เล่นกับ 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_en": "When the VFL played at Junction Oval what was the away score?",
    "question_th": "ตอนที่ VFL เล่นที่ Junction Oval สกอร์ทีมเยือนเป็นเท่าไหร่?",
    "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_en": "Who was the away team for the game played in front of more than 41,402 fans?",
    "question_th": "ใครคือทีมเยือนสำหรับเกมนี้ที่เล่นต่อหน้าแฟนบอลมากกว่า 41,402 คน?",
    "context": "CREATE TABLE table_name_46 (away_team VARCHAR, crowd INTEGER)"
  },
  {
    "answer": "SELECT home_team FROM table_name_22 WHERE away_team = \"richmond\"",
    "question_en": "What Home team played Richmond?",
    "question_th": "ทีมเหย้าทีมใดเล่นริชมอนด์?",
    "context": "CREATE TABLE table_name_22 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_32 WHERE home_team = \"melbourne\"",
    "question_en": "What is Melbourne's home venue?",
    "question_th": "สนามเหย้าของเมลเบิร์นคืออะไร?",
    "context": "CREATE TABLE table_name_32 (venue VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT home___away FROM table_name_23 WHERE record = \"6-12\"",
    "question_en": "Was the game home or away when the record is 6-12?",
    "question_th": "เกมเป็นเหย้าหรือเยือนเมื่อสถิติอยู่ที่ 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_en": "What is the date of the away game at the Blue Cross Arena?",
    "question_th": "เกมเยือนที่บลูครอสอารีนาคือวันไหน?",
    "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_en": "What is the week for the stadium that had an attendance of 22,286?",
    "question_th": "สัปดาห์ใดที่สนามกีฬาที่มีผู้เข้าชม 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_en": "How many assists for player(s) with over 107 games and ranked less than 2?",
    "question_th": "จำนวนแอสซิสต์สำหรับผู้เล่นที่มีมากกว่า 107 เกมและอันดับน้อยกว่า 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_en": "What is the total number of assists for players with under 55 games and over 6 assists per game average?",
    "question_th": "จำนวนแอสซิสต์ทั้งหมดสำหรับผู้เล่นที่อายุต่ำกว่า 55 เกมและมากกว่า 6 แอสซิสต์ต่อเกมโดยเฉลี่ยคือเท่าใด",
    "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_en": "What is the average rank for players with less than 2.9 Assists per game?",
    "question_th": "อันดับเฉลี่ยของผู้เล่นที่มี Assists น้อยกว่า 2.9 ต่อเกมคือเท่าไร?",
    "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_en": "What circuit had an ensign n180 as the winning car in round 5?",
    "question_th": "สนามใดมีธง n180 เป็นรถที่ชนะในรอบ 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_en": "How many rounds total were there on may 31?",
    "question_th": "วันที่ 31 พฤษภาคม มีทั้งหมดกี่รอบ?",
    "context": "CREATE TABLE table_name_79 (round VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT AVG(round) FROM table_name_56 WHERE circuit = \"oulton park\"",
    "question_en": "What was the average round for the oulton park circuit?",
    "question_th": "รอบเฉลี่ยสำหรับสนามโอลตันพาร์คคือเท่าไร?",
    "context": "CREATE TABLE table_name_56 (round INTEGER, circuit VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_64 WHERE venue = \"arden street oval\"",
    "question_en": "Who was the opposing team at the match played at the Arden Street Oval?",
    "question_th": "ใครคือทีมตรงข้ามในการแข่งขันที่เล่นที่ 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_en": "What was the opposing team's score at the match that was played at Victoria Park?",
    "question_th": "คะแนนของทีมตรงข้ามในแมตช์ที่เล่นที่วิคตอเรีย พาร์ค เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_31 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_32 WHERE home_team = \"collingwood\"",
    "question_en": "Which venue did the match where Collingwood was the home team take place?",
    "question_th": "สนามใดที่แมตช์ที่คอลลิงวูดเป็นเจ้าบ้านเกิดขึ้น?",
    "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_en": "Who is the away side when north melbourne is the home side?",
    "question_th": "ทีมเยือนคือใคร เมื่อ เมลเบิร์นเหนือ เป็นเจ้าบ้าน?",
    "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_en": "How many games feature hawthorn as the away squad?",
    "question_th": "มีกี่เกมที่มีฮอว์ธอร์นเป็นทีมเยือน?",
    "context": "CREATE TABLE table_name_8 (crowd VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_58 WHERE time = \"9:01.70\"",
    "question_en": "What Nationality has a Time of 9:01.70?",
    "question_th": "สัญชาติใดมีเวลา 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_en": "What is sun yang's lowest rank?",
    "question_th": "อันดับต่ำสุดของซุนหยางคืออะไร?",
    "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_en": "How many ranks have a ationality of canada, and a Time of dns?",
    "question_th": "มีกี่อันดับที่มีความเป็นตัวตนของแคนาดา และเวลาของ 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_en": "Who played Fitzroy at their own home?",
    "question_th": "ใครเล่น Fitzroy ที่บ้านของตัวเอง?",
    "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_en": "What team plays at home at Lake Oval?",
    "question_th": "ทีมใดเล่นในบ้านที่ 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_en": "What was Melbourne's score as the away team?",
    "question_th": "เมลเบิร์นทำแต้มในเกมเยือนได้เท่าไหร่?",
    "context": "CREATE TABLE table_name_17 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_78 WHERE venue = \"victoria park\"",
    "question_en": "On what date was the match played in Victoria Park?",
    "question_th": "แมตช์นี้เล่นที่ วิคตอเรีย พาร์ค วันไหน?",
    "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_en": "What is the away team's score when geelong is the away team?",
    "question_th": "ทีมเยือนได้คะแนนเท่าไหร่ เมื่อ จีลอง เป็นทีมเยือน?",
    "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_en": "What is the away team's score when south melbourne is the away team?",
    "question_th": "เมื่อเซาธ์เมลเบิร์นเป็นทีมเยือนสกอร์เท่าไหร่?",
    "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_en": "What was the result of the film made before 2005, winner of the robert award, in the category of best actress?",
    "question_th": "อะไรคือผลลัพธ์ของภาพยนตร์ที่สร้างขึ้นก่อนปี 2548 ซึ่งได้รับรางวัลโรเบิร์ตสาขานักแสดงนำหญิงยอดเยี่ยม?",
    "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_en": "What was the result of the bodil award winning film from before 2005 in the best actress category?",
    "question_th": "อะไรคือผลลัพธ์ของภาพยนตร์ที่คว้ารางวัล Bodil Award ก่อนปี 2548 ในสาขานักแสดงนำหญิงยอดเยี่ยม?",
    "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_en": "What category is the nominated work of cecilie, winner of the robert award?",
    "question_th": "ผลงานที่ได้รับการเสนอชื่อเข้าชิงประเภทใดของเซซิลี ผู้ชนะรางวัลโรเบิร์ต",
    "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_en": "Who was the away team at Victoria Park?",
    "question_th": "ทีมเยือนที่วิคตอเรีย พาร์คคือใคร?",
    "context": "CREATE TABLE table_name_1 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_2 WHERE away_team = \"footscray\"",
    "question_en": "What is the date of the game where Footscray was the away team?",
    "question_th": "เกมที่ฟุตสเครย์เป็นทีมเยือนคือวันไหน?",
    "context": "CREATE TABLE table_name_2 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_66 WHERE opponent = \"bye\"",
    "question_en": "What week did they have a bye?",
    "question_th": "พวกเขาลาก่อนสัปดาห์ไหน?",
    "context": "CREATE TABLE table_name_66 (week VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(crowd) FROM table_name_4 WHERE venue = \"western oval\"",
    "question_en": "How many people watch at Western Oval venue?",
    "question_th": "มีคนดูที่ Western Oval กี่คน?",
    "context": "CREATE TABLE table_name_4 (crowd VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(crowd) FROM table_name_66 WHERE home_team = \"south melbourne\"",
    "question_en": "How many people are in the crowd in south melbourne?",
    "question_th": "เซาท์เมลเบิร์นมีคนอยู่กี่คน?",
    "context": "CREATE TABLE table_name_66 (crowd VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(crowd) FROM table_name_56 WHERE venue = \"windy hill\"",
    "question_en": "What was the highest crowd at Windy Hill?",
    "question_th": "ฝูงชนสูงสุดที่ 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_en": "How many people at Arden Street Oval?",
    "question_th": "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_en": "Which Neck has a Bullet of 10.566 (.416), and a Base of 14.78 (.582)?",
    "question_th": "คอใดมีกระสุน 10.566 (.416) และฐาน 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_en": "Which Case Length has a Base of 14.96 (.589)?",
    "question_th": "ความยาวเคสใดมีฐาน 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_en": "A .416 barrett has which Case Length?",
    "question_th": "บาร์เร็ตต์ .416 มีความยาวเคสเท่าใด",
    "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_en": "Which Name has a Case Length of 73.99 (2.913)?",
    "question_th": "ชื่อใดมีความยาวตัวพิมพ์เท่ากับ 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_en": "Which Base has a Name of .44 wcf?",
    "question_th": "ฐานใดมีชื่อ .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_en": "Which Name has a Bullett of 10.57 (.416) and a Base of 14.96 (.589)?",
    "question_th": "ชื่อใดมีสัญลักษณ์แสดงหัวข้อย่อย 10.57 (.416) และฐาน 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_en": "When Richmond was the home team, what was the home team score?",
    "question_th": "เมื่อริชมอนด์เป็นเจ้าบ้านสกอร์เจ้าบ้านเท่าไหร่?",
    "context": "CREATE TABLE table_name_24 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(crowd) FROM table_name_50 WHERE venue = \"windy hill\"",
    "question_en": "What was the highest crowd size at Windy Hill?",
    "question_th": "จำนวนฝูงชนสูงสุดที่ 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_en": "When the away team was Geelong, what was the home team score?",
    "question_th": "เมื่อทีมเยือนเป็นจีลองสกอร์เจ้าบ้านเท่าไหร่?",
    "context": "CREATE TABLE table_name_97 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_89 WHERE home_team = \"richmond\"",
    "question_en": "When did the home team of Richmond play?",
    "question_th": "เจ้าบ้านริชมอนด์ลงเล่นเมื่อไหร่?",
    "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_en": "How many golds for Canada (12 total)?",
    "question_th": "แคนาดาได้กี่เหรียญทอง (ทั้งหมด 12 ทอง)",
    "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_en": "What was the team's record after week 7 with 28,161 attending?",
    "question_th": "อะไรคือสถิติของทีมหลังจากสัปดาห์ที่ 7 โดยมีผู้เข้าร่วม 28,161 คน?",
    "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_en": "What was the attendance at war memorial stadium?",
    "question_th": "ผู้เข้าร่วมที่สนามกีฬาอนุสรณ์สถานสงครามมีอะไรบ้าง?",
    "context": "CREATE TABLE table_name_8 (attenmdance VARCHAR, stadium VARCHAR)"
  },
  {
    "answer": "SELECT SUM(silver) FROM table_name_62 WHERE gold = 20",
    "question_en": "How many silver medals did the country that won 20 gold medals win in the 1955 Pan American Games?",
    "question_th": "ประเทศที่คว้า 20 เหรียญทองในการแข่งขัน Pan American Games ปี 1955 ได้เหรียญเงินกี่เหรียญ",
    "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_en": "What team had 159 laps and a Time/Retired of 6:30:02.3733?",
    "question_th": "ทีมใดทำเวลาได้ 159 รอบและมีเวลา/เกษียณอยู่ที่ 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_en": "What team had less than 159 laps and a time or retired time of 4:00:30.7537 (retired - fire)?",
    "question_th": "ทีมใดมีรอบน้อยกว่า 159 รอบ และมีเวลาหรือเวลาที่เกษียณคือ 4:00:30.7537 (เกษียณ - ยิง)",
    "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_en": "What was the score of the Browns game against the San Francisco 49ers?",
    "question_th": "เกมบราวน์ส พบกับ ซานฟรานซิสโก โฟร์ตี้นายเนอร์ส ทำได้สกอร์เท่าไหร่?",
    "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_en": "What was the final score for Aguilar when he played Hans Podlipnik on clay and was runner-up?",
    "question_th": "คะแนนสุดท้ายของ Aguilar คืออะไรเมื่อเขาเล่น Hans Podlipnik บนดินเหนียวและได้รองแชมป์?",
    "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_en": "What round is highest and has a defensive tackle position and overall lower than 282?",
    "question_th": "รอบไหนสูงที่สุดและมีตำแหน่งสกัดกั้นและโดยรวมต่ำกว่า 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_en": "What position is the round higher than 15 and has an overall of 411.",
    "question_th": "ตำแหน่งใดรอบสูงกว่า 15 และมีคะแนนรวม 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_en": "What is the name of the away team with glenferrie oval venue?",
    "question_th": "ทีมเยือนสนามเกลนเฟอร์รี่โอวัลชื่ออะไร?",
    "context": "CREATE TABLE table_name_72 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT stadium FROM table_name_11 WHERE city = \"penrith\"",
    "question_en": "What stadium is in penrith?",
    "question_th": "เพนริธสนามไหนคะ?",
    "context": "CREATE TABLE table_name_11 (stadium VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_50 WHERE stadium = \"central park\"",
    "question_en": "What day did they play in central park stadium?",
    "question_th": "พวกเขาเล่นที่สนามเซ็นทรัลปาร์ควันไหน?",
    "context": "CREATE TABLE table_name_50 (date VARCHAR, stadium VARCHAR)"
  },
  {
    "answer": "SELECT MIN(crowd) FROM table_name_61 WHERE away_team = \"footscray\"",
    "question_en": "What is the lowest attendance when footscray is the away team?",
    "question_th": "ทีมเยือนมีผู้ชมน้อยที่สุดคือทีมไหน?",
    "context": "CREATE TABLE table_name_61 (crowd INTEGER, away_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_25 WHERE home_team = \"essendon\"",
    "question_en": "What venue featured essendon as home team?",
    "question_th": "สนามใดที่มีเอสเซนดอนเป็นทีมเหย้า?",
    "context": "CREATE TABLE table_name_25 (venue VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT SUM(crowd) FROM table_name_45 WHERE venue = \"princes park\"",
    "question_en": "What is the sum of crowd(s) at princes park?",
    "question_th": "จำนวนฝูงชนที่ 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_en": "What is the away team that features a home team of south melbourne?",
    "question_th": "ทีมเยือนที่มีเจ้าบ้านเซาธ์ เมลเบิร์นคือทีมไหน?",
    "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_en": "What is the smallest crowd when collingwood is home team?",
    "question_th": "คอลลิงวูดเป็นทีมเหย้าคือกลุ่มใดที่มีผู้ชมน้อยที่สุด?",
    "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_en": "During which round was the first defensive end with an overall rank larger than 186 drafted?",
    "question_th": "ในระหว่างรอบใดที่จบการป้องกันครั้งแรกโดยมีอันดับโดยรวมมากกว่า 186 ร่าง?",
    "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_en": "What is the highest number of losses with 23 points and 22 plays?",
    "question_th": "จำนวนการแพ้สูงสุดด้วย 23 แต้มและ 22 ครั้งคือเท่าไร?",
    "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_en": "What is the sum of goals scored for the Al Wahda team with less than 4 drawn and more than 22 plays?",
    "question_th": "ผลรวมของประตูที่ทำได้ให้กับทีมอัล วาห์ด้า โดยเสมอน้อยกว่า 4 นัดและมากกว่า 22 นัดเป็นเท่าใด?",
    "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_en": "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?",
    "question_th": "มีกี่ประตูที่ยิงใส่ทีมตรงข้ามโดยแพ้มากกว่า 7 ประตู ยิงให้ทีมน้อยกว่า 27 ประตู และเสมอมากกว่า 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_en": "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?",
    "question_th": "จำนวนการเล่นสูงสุดเมื่อเสมอกันคือมากกว่า 4 ได้คะแนนมากกว่า 30 คะแนน และทำประตูให้กับทีมได้ 37 ประตู?",
    "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_en": "What was Geelong's score when they were the away team?",
    "question_th": "จีลองสกอร์เป็นทีมเยือนเท่าไหร่?",
    "context": "CREATE TABLE table_name_62 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team AS score FROM table_name_62 WHERE away_team = \"richmond\"",
    "question_en": "What was the score of Richmond when they were the away team?",
    "question_th": "ริชมอนด์ตอนเป็นทีมเยือนได้คะแนนเท่าไหร่?",
    "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_en": "What is the away team's score at brunswick street oval?",
    "question_th": "คะแนนของทีมเยือนที่บรันสวิก สตรีท โอวัลคือเท่าไหร่?",
    "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_en": "What is the smallest crowd at punt road oval?",
    "question_th": "ฝูงชนที่เล็กที่สุดที่ 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_en": "What was the earliest year that had more than 105,579 flying hours and a seat factor of 68%?",
    "question_th": "ปีแรกสุดที่มีชั่วโมงบินมากกว่า 105,579 ชั่วโมงและปัจจัยที่นั่ง 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_en": "What player played for the Balmain Tigers?",
    "question_th": "ผู้เล่นคนใดเคยเล่นให้กับ 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_en": "What was the nationality of five-eighth player Darren Lockyer?",
    "question_th": "ดาร์เรน ล็อคเยอร์ ผู้เล่นคนที่ 5 ใน 8 มีสัญชาติอะไร",
    "context": "CREATE TABLE table_name_96 (nationality VARCHAR, player VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_21 WHERE player = \"greg inglis\"",
    "question_en": "What nationality did Greg Inglis hold?",
    "question_th": "Greg Inglis ถือสัญชาติอะไร",
    "context": "CREATE TABLE table_name_21 (nationality VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_40 WHERE year = 1998",
    "question_en": "Where was the match played in 1998?",
    "question_th": "แมตช์นี้เล่นที่ไหนในปี 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_en": "What was Footscray's Home team score?",
    "question_th": "คะแนนทีมเหย้าของฟุตสเครย์เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_62 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_54 WHERE home_team = \"collingwood\"",
    "question_en": "Who faced Collingwood as an away team?",
    "question_th": "ใครเจอกับคอลลิงวูดในฐานะทีมเยือน?",
    "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_en": "How many total points belong to the team with a goal difference of 8?",
    "question_th": "ทีมที่มีผลต่างประตูได้เสีย 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_en": "What K League classic had less than 10 teams?",
    "question_th": "K League classic ไหนที่มีทีมไม่ถึง 10 ทีม?",
    "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_en": "How many teams played before 2008, had a K League Classic of runners-up, and a Manager of kim ho?",
    "question_th": "ก่อนปี 2008 มีกี่ทีมที่เล่น มี K League Classic เป็นรองแชมป์ และมีผู้จัดการทีม 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_en": "What was the score of the away team at Junction Oval venue?",
    "question_th": "ทีมเยือนที่สนามจังชั่นโอวัลได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_8 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_52 WHERE home_team = \"collingwood\"",
    "question_en": "When Collingwood was the home team who was the opposing away team?",
    "question_th": "เมื่อคอลลิงวูดเป็นเจ้าบ้านใครเป็นทีมเยือนของฝ่ายตรงข้าม?",
    "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_en": "What is the team score of the away team at Junction Oval?",
    "question_th": "คะแนนทีมเยือนที่จังชั่นโอวัลคือเท่าไร?",
    "context": "CREATE TABLE table_name_35 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_93 WHERE venue = \"lake oval\"",
    "question_en": "What team is from Lake Oval?",
    "question_th": "ทีมใดมาจาก 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_en": "Who is the runner-up for Ilhwa Chunma?",
    "question_th": "ใครคือรองชนะเลิศของอิลฮวา ชุนมา?",
    "context": "CREATE TABLE table_name_81 (runner_up VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT MIN(crowd) FROM table_name_45 WHERE away_team = \"collingwood\"",
    "question_en": "What was the attendance when Collingwood was the away team?",
    "question_th": "การเข้าร่วมงานเมื่อคอลลิงวูดเป็นทีมเยือนเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_45 (crowd INTEGER, away_team VARCHAR)"
  },
  {
    "answer": "SELECT SUM(crowd) FROM table_name_92 WHERE away_team = \"hawthorn\"",
    "question_en": "What was the attendance of the Hawthorn as the away team?",
    "question_th": "การมีส่วนร่วมของฮอว์ธอร์นในฐานะทีมเยือนเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_92 (crowd INTEGER, away_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_43 WHERE home_team = \"richmond\"",
    "question_en": "Where did Richmond play as the home team?",
    "question_th": "ริชมอนด์เล่นเป็นเจ้าบ้านที่ไหน?",
    "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_en": "What is the home team score for the game with the away team Carlton?",
    "question_th": "สกอร์เจ้าบ้านในเกมกับทีมเยือน คาร์ลตัน เป็นเท่าไหร่?",
    "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_en": "What is the away team for the game at Windy Hill?",
    "question_th": "ทีมเยือนเกมที่วินดี้ ฮิลล์เป็นทีมไหน?",
    "context": "CREATE TABLE table_name_72 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT circuit FROM table_name_11 WHERE date = \"10/08/86\"",
    "question_en": "For the race held on 10/08/86, what was the circuit?",
    "question_th": "แข่งขันวันที่ 10/08/86 มีสนามอะไรบ้าง?",
    "context": "CREATE TABLE table_name_11 (circuit VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT circuit FROM table_name_41 WHERE winning_team = \"cabin racing\"",
    "question_en": "What circuit saw Cabin Racing as the winning team?",
    "question_th": "สนามไหนที่ Cabin Racing เป็นทีมที่ชนะ?",
    "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_en": "Who was the winning driver driving the winning car March - Honda 86j, with the winning team Team Nova?",
    "question_th": "ใครคือนักแข่งที่ชนะในการขับรถที่ชนะในเดือนมีนาคม - Honda 86j กับทีมที่ชนะ 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_en": "Who was in Lane 5?",
    "question_th": "ใครอยู่ในเลน 5?",
    "context": "CREATE TABLE table_name_84 (name VARCHAR, lane VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_86 WHERE name = \"arkady vyatchanin\"",
    "question_en": "What was Arkady Vyatchanin's time?",
    "question_th": "เวลาของ Arkady Vyatchanin คืออะไร?",
    "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_en": "What is the away team's score when north melbourne is the home team?",
    "question_th": "ทีมเยือนเมื่อ เมลเบิร์นเหนือ เป็นเจ้าบ้านสกอร์เท่าไหร่?",
    "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_en": "What is the smallest crowd with fitzroy as the home team?",
    "question_th": "แฟนบอลตัวเล็กที่สุดที่มีฟิตซ์รอยเป็นเจ้าบ้านคือทีมไหน?",
    "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_en": "What school did the linebacker who was drafted after round 8 come from?",
    "question_th": "บร็องโกที่ถูกดราฟท์หลังรอบ 8 มาจากโรงเรียนไหน?",
    "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_en": "How many pens does Siaosi Atiola have?",
    "question_th": "เซียวซี อาติโอลา มีปากกากี่ด้าม?",
    "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_en": "What pens have a draw of 0 when the player is sione mafi pahulu?",
    "question_th": "ปากกาใดที่มีการเสมอ 0 เมื่อผู้เล่นคือ ซิโอเน มาฟี ปาฮูลู?",
    "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_en": "What is the lost for span 2006- when conv is 0?",
    "question_th": "อะไรคือสิ่งที่หายไปในช่วงปี 2549- เมื่อ Conv เป็น 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_en": "How many tries does Fakahau Valu have?",
    "question_th": "Fakahau Valu พยายามกี่ครั้ง?",
    "context": "CREATE TABLE table_name_83 (tries VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_62 WHERE pick > 101 AND position = \"punter\"",
    "question_en": "What school did the punter picked after 101 attend?",
    "question_th": "นักพนันเลือกโรงเรียนใดหลังจากเข้าเรียน 101 คน?",
    "context": "CREATE TABLE table_name_62 (college VARCHAR, pick VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_51 WHERE pick = 176",
    "question_en": "What player was picked 176?",
    "question_th": "ผู้เล่นคนไหนที่ถูกเลือก 176?",
    "context": "CREATE TABLE table_name_51 (player VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_52 WHERE pick = 252",
    "question_en": "What player was drafted 252?",
    "question_th": "ผู้เล่นคนไหนที่ถูกดราฟต์ 252?",
    "context": "CREATE TABLE table_name_52 (player VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_26 WHERE away_team = \"collingwood\"",
    "question_en": "What is the venue where Collingwood played as the away team?",
    "question_th": "สนามที่คอลลิงวูดเล่นเป็นทีมเยือนคือสนามใด?",
    "context": "CREATE TABLE table_name_26 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_58 WHERE away_team = \"south melbourne\"",
    "question_en": "What is the date of the game where South Melbourne was the away team?",
    "question_th": "แมตช์ที่เซาธ์ เมลเบิร์น เป็นทีมเยือนคือวันไหน?",
    "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_en": "What is the average number of laps when the country was NL and the race number was smaller than 8?",
    "question_th": "จำนวนรอบโดยเฉลี่ยเมื่อประเทศเป็น NL และหมายเลขการแข่งขันน้อยกว่า 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_en": "What is the total number of E edges of the polyhedra with vertices V greater than 20?",
    "question_th": "จำนวนขอบ E ของรูปทรงหลายเหลี่ยมที่มีจุดยอด V มากกว่า 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_en": "What are the points for the Seven Sisters RFC club?",
    "question_th": "สโมสร Seven Sisters RFC มีคะแนนอะไรบ้าง?",
    "context": "CREATE TABLE table_name_71 (points VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT tries_for FROM table_name_87 WHERE lost = \"7\"",
    "question_en": "How many tries were for the 7 lost?",
    "question_th": "แพ้ 7 ครั้งมีความพยายามกี่ครั้ง?",
    "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_en": "How many tries had a losing bonus of 5, and were part of the Maesteg Celtic RFC club?",
    "question_th": "มีความพยายามกี่ครั้งที่มีโบนัสการสูญเสีย 5 และเป็นส่วนหนึ่งของสโมสร Maesteg Celtic RFC",
    "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_en": "What was lost against 383 points?",
    "question_th": "แพ้อะไรกับ 383 แต้ม?",
    "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_en": "What's the rank for Daewoo Business Center when the notes are cancelled?",
    "question_th": "ศูนย์ธุรกิจ Daewoo อยู่อันดับไหนเมื่อหมายเหตุถูกยกเลิก?",
    "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_en": "How many floors have a Height m / feet of 900 / 2,952?",
    "question_th": "มีกี่ชั้นที่มีความสูง ม./ฟุต 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_en": "What is the height for shanghai x-1 financial building?",
    "question_th": "อาคารทางการเงิน Shanghai x-1 มีความสูงเท่าใด",
    "context": "CREATE TABLE table_name_97 (height_m___feet VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_75 WHERE floors = \"96\"",
    "question_en": "What is the rank for the 96 floors?",
    "question_th": "อันดับ 96 ชั้นเท่าไหร่คะ?",
    "context": "CREATE TABLE table_name_75 (rank VARCHAR, floors VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_37 WHERE circuit = \"sandown raceway\"",
    "question_en": "On what Date is the Circuit at Sandown Raceway?",
    "question_th": "สนามแข่งรถ 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_en": "What is the City/State of the Oran Park race?",
    "question_th": "การแข่งขันในเมือง/รัฐของ Oran Park คืออะไร?",
    "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_en": "In what City/State did John Bowe win at Phillip Island Grand Prix Circuit?",
    "question_th": "John Bowe ชนะที่ 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_en": "Which season has a percentage of 13.56%?",
    "question_th": "ฤดูกาลใดมีเปอร์เซ็นต์ 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_en": "How many poles has a percentage of 22.08%?",
    "question_th": "มีกี่ขั้วมีเปอร์เซ็นต์ 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_en": "How many poles does driver Nelson Piquet have?",
    "question_th": "คนขับ Nelson Piquet มีเสากี่อัน?",
    "context": "CREATE TABLE table_name_83 (poles INTEGER, driver VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(loss) FROM table_name_87 WHERE avg_g > 129.2",
    "question_en": "How much Loss has an Avg/G larger than 129.2?",
    "question_th": "การสูญเสียมีค่าเฉลี่ย/G มากกว่า 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_en": "Which Loss is the lowest one that has an Avg/G of 3.5, and a Gain smaller than 42?",
    "question_th": "การขาดทุนใดคือค่าต่ำสุดที่มี Avg/G เท่ากับ 3.5 และกำไรน้อยกว่า 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_en": "How much Avg/G has a Loss larger than 117, and a Name of opponents, and a Gain smaller than 2444?",
    "question_th": "ค่าเฉลี่ย/G เท่าใดที่มีการขาดทุนมากกว่า 117 และชื่อของคู่ต่อสู้ และกำไรน้อยกว่า 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_en": "How much Avg/G has a Long of 51, and a Loss of 333, and a Gain larger than 2013?",
    "question_th": "Avg/G มีค่าเท่าใดที่ Long 51 และขาดทุน 333 และกำไรมากกว่าปี 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_en": "How much Avg/G has a Name of robert marve, and a Gain smaller than 236?",
    "question_th": "ค่าเฉลี่ย/G มีชื่อโรเบิร์ต มาร์เว เท่าไหร่ และกำไรน้อยกว่า 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_en": "What is the score where Saint-Amant lost the match?",
    "question_th": "แซงต์-อามงต์ แพ้สกอร์เท่าไหร่?",
    "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_en": "Where was the match located when the odds were p + 1 and the score was 1/3?",
    "question_th": "นัดไหนที่ราคาต่อรองคือ p + 1 และสกอร์เป็น 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_en": "What was the score for an n/a location with the odds of p + 1?",
    "question_th": "คะแนนสำหรับสถานที่ที่ไม่มีสถานที่ซึ่งมีอัตราต่อรองคือ 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_en": "What was the score for a game with the odds of p + 2 after 1847?",
    "question_th": "คะแนนของเกมที่มีอัตราต่อรอง p + 2 หลังปี 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_en": "What was the date of a game that had the odds of q rook?",
    "question_th": "วันที่ของเกมที่มีอัตราต่อรองของ q rook คืออะไร?",
    "context": "CREATE TABLE table_name_33 (date INTEGER, odds VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_33 WHERE round = \"7\"",
    "question_en": "What is the nationality of the player in round 7?",
    "question_th": "ผู้เล่นในรอบที่ 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_en": "Which player is from the United States, and played for the Bowling Green Falcons (CCHA) as their College/Junior/Club Team (League)?",
    "question_th": "ผู้เล่นคนไหนมาจากสหรัฐอเมริกา และเล่นให้กับ Bowling Green Falcons (CCHA) ในฐานะทีมวิทยาลัย/จูเนียร์/คลับ (ลีก)",
    "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_en": "Which College/Junior/Club Team (League) did the player in round 6 play for?",
    "question_th": "ผู้เล่นระดับวิทยาลัย/จูเนียร์/คลับ (ลีก) คนใดในรอบ 6 ลงเล่นให้?",
    "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_en": "What round did Jamie Cooke play in?",
    "question_th": "Jamie Cooke เล่นในรอบไหน?",
    "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_en": "What are the average points White made with 0 extra points?",
    "question_th": "แต้มเฉลี่ยที่ขาวได้ 0 แต้มพิเศษคือเท่าไร?",
    "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_en": "How many points does Sweeley have, with less than 0 Field goals?",
    "question_th": "สวีลีย์มีกี่แต้ม โดยเสียประตูน้อยกว่า 0 ลูก?",
    "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_en": "Who had the most touchdowns with more than 0 Field goals?",
    "question_th": "ใครทำทัชดาวน์ได้มากกว่า 0 ประตูมากที่สุด?",
    "context": "CREATE TABLE table_name_71 (touchdowns INTEGER, field_goals INTEGER)"
  },
  {
    "answer": "SELECT date FROM table_name_72 WHERE home = \"los angeles kings\"",
    "question_en": "When was the game at the home of the Los Angeles Kings?",
    "question_th": "เกมในบ้านของ 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_en": "On April 22 when the Los Angeles Kings where visitors what was the record?",
    "question_th": "เมื่อวันที่ 22 เมษายน เมื่อทีม Los Angeles Kings มาเยือน มีสถิติอะไรบ้าง?",
    "context": "CREATE TABLE table_name_59 (record VARCHAR, visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_33 WHERE round = 1",
    "question_en": "Tell me the name for round of 1",
    "question_th": "แจ้งชื่อรอบ 1 ครับ",
    "context": "CREATE TABLE table_name_33 (name VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT SUM(pick__number) FROM table_name_92 WHERE round < 1",
    "question_en": "Name the sum of pick # for round less than 1",
    "question_th": "ตั้งชื่อผลรวมของการเลือก # สำหรับรอบที่น้อยกว่า 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_en": "Name the total number of overall for brent hawkins and pick # more than 28",
    "question_th": "ตั้งชื่อจำนวนรวมของเบรนท์ ฮอว์กินส์ และเลือก # มากกว่า 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_en": "What is the value in 2012 if it is 2R in 2013, 1R in 2005, and 1R in 2008?",
    "question_th": "ค่าในปี 2555 จะเป็นเท่าใดหากเป็น 2R ในปี 2556, 1R ในปี 2548 และ 1R ในปี 2551",
    "context": "CREATE TABLE table_name_84 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2006 FROM table_name_37 WHERE 2012 = \"grand slam tournaments\"",
    "question_en": "What is the value in 2006 when it is Grand Slam Tournaments in 2012?",
    "question_th": "มูลค่าในปี 2549 เมื่อเป็นการแข่งขันแกรนด์สแลมในปี 2555 คืออะไร?",
    "context": "CREATE TABLE table_name_37 (Id VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_54 WHERE 2008 = \"2r\"",
    "question_en": "Which tournament has a value of 2R in 2008?",
    "question_th": "ทัวร์นาเมนต์ใดมีมูลค่า 2R ในปี 2551",
    "context": "CREATE TABLE table_name_54 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2008 FROM table_name_77 WHERE 2009 = \"1r\" AND 2006 = \"3r\"",
    "question_en": "What is the value in 2008 when 1R is 2009 and 3R?",
    "question_th": "ค่าในปี 2551 คืออะไรเมื่อ 1R คือปี 2552 และ 3R",
    "context": "CREATE TABLE table_name_77 (Id VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_91 WHERE 2007 = \"1r\" AND 2009 = \"1r\"",
    "question_en": "Which tournament has a 1R value in 2007 and 2009?",
    "question_th": "ทัวร์นาเมนต์ใดมีค่า 1R ในปี 2550 และ 2552",
    "context": "CREATE TABLE table_name_91 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2013 FROM table_name_38 WHERE 2007 = \"1r\" AND 2009 = \"1r\"",
    "question_en": "What is the value in 2013 when it is 1R in 2007 and 2009?",
    "question_th": "มูลค่าในปี 2556 เป็น 1R ในปี 2550 และ 2552 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_38 (Id VARCHAR)"
  },
  {
    "answer": "SELECT AVG(michelle) FROM table_name_39 WHERE discipline = \"archery\"",
    "question_en": "How did michelle do in archery?",
    "question_th": "มิเชลทำอาชีพยิงธนูได้อย่างไร?",
    "context": "CREATE TABLE table_name_39 (michelle INTEGER, discipline VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_77 WHERE name = \"jal hotel\"",
    "question_en": "What City is the Jal hotel in?",
    "question_th": "โรงแรม Jal ตั้งอยู่ในเมืองใด",
    "context": "CREATE TABLE table_name_77 (city VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT method FROM table_name_41 WHERE time = \"0:38\"",
    "question_en": "How did he win with a time of 0:38?",
    "question_th": "เขาชนะได้อย่างไรด้วยเวลา 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_en": "Who did he fight in Rumble of the Kings 6?",
    "question_th": "เขาต่อสู้กับใครใน 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_en": "How long was the match with Jaime Fletcher?",
    "question_th": "การแข่งขันกับ 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_en": "The team Glenn Seton Racing has a circuit at the lakeside international raceway, what is the location and state?",
    "question_th": "ทีม Glenn Seton Racing มีสนามแข่งรถนานาชาติริมทะเลสาบ สถานที่ และรัฐคืออะไร?",
    "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_en": "What location and state has a circuit of Phillip Island Grand Prix Circuit?",
    "question_th": "สนามและรัฐใดที่มีสนามแข่ง 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_en": "with race of ranvet stakes what is the group?",
    "question_th": "กับการแข่งขันของเดิมพัน ranvet คือกลุ่มอะไร?",
    "context": "CREATE TABLE table_name_12 (group VARCHAR, race VARCHAR)"
  },
  {
    "answer": "SELECT slalom FROM table_name_36 WHERE downhill = \"4\"",
    "question_en": "Which Slalom has a Downhill of 4?",
    "question_th": "สลาลมไหนมีดาวน์ฮิลล์ 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_en": "What Version has a Remixed by Perky Park with a Length of 6:38?",
    "question_th": "เวอร์ชันใดที่มีการรีมิกซ์โดย Perky Park ที่มีความยาว 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_en": "What is the total number of Year that has an Album of Remixes?",
    "question_th": "จำนวนปีทั้งหมดที่มีอัลบั้มรีมิกซ์คือเท่าใด",
    "context": "CREATE TABLE table_name_52 (year INTEGER, album VARCHAR)"
  },
  {
    "answer": "SELECT length FROM table_name_32 WHERE version = \"single version\"",
    "question_en": "What is listed for the Lengtht that has a Version of Single Version?",
    "question_th": "รายการของความยาวที่มีเวอร์ชันของเวอร์ชันเดี่ยวมีอะไรบ้าง",
    "context": "CREATE TABLE table_name_32 (length VARCHAR, version VARCHAR)"
  },
  {
    "answer": "SELECT SUM(attendance) FROM table_name_62 WHERE week = 11",
    "question_en": "what is the sum of attendance of week 11",
    "question_th": "จำนวนผู้เข้าร่วมในสัปดาห์ที่ 11 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_62 (attendance INTEGER, week VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_27 WHERE results¹ = \"0:1\"",
    "question_en": "Which opponent had a result of 0:1?",
    "question_th": "คู่ต่อสู้คนไหนมีผล 0:1?",
    "context": "CREATE TABLE table_name_27 (opponent VARCHAR, results¹ VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_79 WHERE city = \"zagreb\"",
    "question_en": "When was the game played in Zagreb?",
    "question_th": "เกมนี้เล่นที่ซาเกร็บเมื่อใด?",
    "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¹ = \"0:0\"",
    "question_en": "Which opponent played a 1990 wcq type of game, where the results were 0:0?",
    "question_th": "คู่ต่อสู้คนใดเล่นเกมประเภท WCQ ปี 1990 โดยผลการแข่งขันคือ 0:0",
    "context": "CREATE TABLE table_name_99 (opponent VARCHAR, type_of_game VARCHAR, results¹ VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_7 WHERE opponent = \"norway\" AND results¹ = \"1:0\"",
    "question_en": "When was the game played against Norway with a result of 1:0?",
    "question_th": "เกมนี้เล่นกับนอร์เวย์ด้วยสกอร์ 1:0 เมื่อใด?",
    "context": "CREATE TABLE table_name_7 (date VARCHAR, opponent VARCHAR, results¹ VARCHAR)"
  },
  {
    "answer": "SELECT SUM(events) FROM table_name_97 WHERE rank > 5",
    "question_en": "the sum of Events that has a Rank larger than 5 is 3",
    "question_th": "ผลรวมของเหตุการณ์ที่มีอันดับมากกว่า 5 คือ 3",
    "context": "CREATE TABLE table_name_97 (events INTEGER, rank INTEGER)"
  },
  {
    "answer": "SELECT partnered_with FROM table_name_97 WHERE score_in_final = \"4–6, 3–6\"",
    "question_en": "Who was Alicja Rosolska Partnered with when the Score in Final was 4–6, 3–6?",
    "question_th": "Alicja Rosolska คู่กับใครเมื่อสกอร์ในรอบชิงชนะเลิศคือ 4–6, 3–6",
    "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–3, 6–3\"",
    "question_en": "On what Date was the Score in Final 6–3, 6–3?",
    "question_th": "คะแนนในรอบชิงชนะเลิศ 6–3, 6–3 คือวันที่ใด",
    "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–4, 3–6, 5–7\"",
    "question_en": "What was the Opponents in Final during the match with a Score in Final of 6–4, 3–6, 5–7?",
    "question_th": "คู่ต่อสู้ในรอบชิงชนะเลิศระหว่างการแข่งขันคือใครโดยมีคะแนนในรอบชิงชนะเลิศ 6–4, 3–6, 5–7",
    "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_en": "How many seasons took place in aspen, usa?",
    "question_th": "มีกี่ฤดูกาลที่เมืองแอสเพน สหรัฐอเมริกา?",
    "context": "CREATE TABLE table_name_34 (season VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_93 WHERE date = \"12 feb 2012\"",
    "question_en": "Which place was earned on 12 feb 2012?",
    "question_th": "สถานที่ใดได้รับเมื่อวันที่ 12 กุมภาพันธ์ 2555",
    "context": "CREATE TABLE table_name_93 (place VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_69 WHERE date = \"28 dec 2010\"",
    "question_en": "Where was the race on 28 dec 2010 held?",
    "question_th": "การแข่งขันวันที่ 28 ธันวาคม 2553 จัดขึ้นที่ไหน?",
    "context": "CREATE TABLE table_name_69 (location VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT length_overall FROM table_name_38 WHERE designation = \"s-8ko\"",
    "question_en": "What is the overall length with a designation of s-8ko?",
    "question_th": "ความยาวโดยรวมที่มีการกำหนดเป็น 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_en": "What designation has a launch weight of 11.3kg?",
    "question_th": "รุ่นใดมีน้ำหนักเปิดตัว 11.3 กก.",
    "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_en": "What type has an overall length of 1.605 m?",
    "question_th": "ประเภทใดมีความยาวรวม 1.605 ม.",
    "context": "CREATE TABLE table_name_92 (type VARCHAR, length_overall VARCHAR)"
  },
  {
    "answer": "SELECT SUM(touchdowns) FROM table_name_81 WHERE field_goals < 0",
    "question_en": "How many touchdowns were made where field goals were less than 0?",
    "question_th": "มีการทำทัชดาวน์กี่ครั้งโดยที่การยิงประตูน้อยกว่า 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_en": "While Duncan Thompson played, how many points did he have where there were 0 field goals, 0 extra points, and more than 9 touchdowns?",
    "question_th": "ขณะที่ดันแคน ทอมป์สันเล่น เขามีกี่แต้มโดยที่มี 0 ฟิลด์โกล, 0 แต้มพิเศษ, และมากกว่า 9 ทัชดาวน์?",
    "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_en": "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?",
    "question_th": "ตอนที่เฮิร์บ กราเวอร์เล่น มีการยิงประตูกี่ครั้งเมื่อมีมากกว่า 50 แต้ม น้อยกว่า 15 ทัชดาวน์ และแต้มพิเศษมากกว่า 0 แต้ม?",
    "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_en": "How many field goals were there, where the points where less than 45 and there were less than 15 touchdowns?",
    "question_th": "มีการยิงประตูกี่ประตู โดยจุดที่น้อยกว่า 45 และมีทัชดาวน์น้อยกว่า 15 ครั้ง?",
    "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_en": "What is the position of the race with a point of test driver?",
    "question_th": "ตำแหน่งการแข่งขันที่มีคะแนนนักขับทดสอบเป็นอย่างไร?",
    "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_en": "How many wins did team Kolles & Heinz union, with f/laps of 0, have in the Formula Three Euroseries?",
    "question_th": "ทีม Kolles & Heinz union โดย f/laps เป็น 0 ชนะได้กี่ครั้งในการแข่งขัน 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_en": "Which series has 4 f/laps?",
    "question_th": "ซีรีย์ไหนมี 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_en": "How many wins did Team Autotecnica, with 0 podiums, have?",
    "question_th": "ทีม Autotecnica ซึ่งได้ 0 โพเดียม ชนะไปกี่ครั้ง?",
    "context": "CREATE TABLE table_name_82 (wins VARCHAR, podiums VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT races FROM table_name_99 WHERE points = \"10.5\"",
    "question_en": "How many races had 10.5 points?",
    "question_th": "แข่งกี่รอบก็ได้ 10.5 แต้ม?",
    "context": "CREATE TABLE table_name_99 (races VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT wins FROM table_name_15 WHERE podiums = \"5\"",
    "question_en": "How many wins did the team with 5 podiums have?",
    "question_th": "ทีมที่ได้ 5 โพเดี้ยมชนะไปกี่ครั้ง?",
    "context": "CREATE TABLE table_name_15 (wins VARCHAR, podiums VARCHAR)"
  },
  {
    "answer": "SELECT MIN(round) FROM table_name_26 WHERE player = \"jim thompson\"",
    "question_en": "What is recorded as the lowest Round for the Player Jim Thompson?",
    "question_th": "รอบใดที่ถูกบันทึกว่าเป็นรอบต่ำสุดสำหรับผู้เล่น จิม ทอมป์สัน?",
    "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_en": "What is the highest Round that has a Position of Tackle and the Player Fred Neilsen?",
    "question_th": "รอบสูงสุดที่มีตำแหน่งแท็คเกิลและผู้เล่น เฟรด นีลเซ่น คืออะไร?",
    "context": "CREATE TABLE table_name_91 (round INTEGER, position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_95 WHERE round = 27",
    "question_en": "What Position has a Round of 27?",
    "question_th": "ตำแหน่งใดมีรอบ 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_en": "Name the sum of drawn for points less than 6 and games more than 8",
    "question_th": "ตั้งชื่อผลรวมการจับสลากสำหรับแต้มที่น้อยกว่า 6 และเกมที่มากกว่า 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_en": "How much Displacement (tons) has an Armament of 2 x -inch (mm), 16 x -inch (mm)?",
    "question_th": "การกำจัด (ตัน) มีอาวุธยุทโธปกรณ์ขนาด 2 x -inch (มม.), 16 x -inch (มม.) เท่าใด?",
    "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_en": "Which Opponent has a Round larger than 1, and an Event of king of the cage 31?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีรอบที่ใหญ่กว่า 1 และเหตุการณ์ของราชาแห่งกรง 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_en": "Which Time has a Round larger than 1, and an Event of total fighting alliance 2?",
    "question_th": "เวลาใดที่มีรอบมากกว่า 1 และเหตุการณ์ของ 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_en": "Which res has a Record of 3-0?",
    "question_th": "ฝ่ายใดมีสถิติ 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_en": "Which Location has an Event of king of the cage: flash point?",
    "question_th": "สถานที่ใดมีเหตุการณ์ 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_en": "Who were the opposing team when a Loss was listed with Lowe (1-4)?",
    "question_th": "ใครคือทีมตรงข้ามเมื่อมีการแพ้ในรายการ 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_en": "What body styles have 6/75 as the model?",
    "question_th": "หุ่นรุ่นไหนมี 6/75 บ้างคะ?",
    "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_en": "What body styles have devaux-hall inline 6 as the engine?",
    "question_th": "ตัวถังรุ่นไหนมี devaux-hall inline 6 เป็นเครื่องยนต์?",
    "context": "CREATE TABLE table_name_9 (body_styles VARCHAR, engine VARCHAR)"
  },
  {
    "answer": "SELECT model FROM table_name_50 WHERE make = \"de vaux continental\"",
    "question_en": "What model has de vaux continental as the make?",
    "question_th": "de vaux continental เป็นยี่ห้อรุ่นไหนคะ?",
    "context": "CREATE TABLE table_name_50 (model VARCHAR, make VARCHAR)"
  },
  {
    "answer": "SELECT wheelbase FROM table_name_20 WHERE body_styles = \"sport coupe (4p.)\"",
    "question_en": "What wheelbase has sport coupe (4p.) as the body style?",
    "question_th": "ฐานล้อไหนที่มีสปอร์ตคูเป้ (4p.) เป็นสไตล์ตัวรถ?",
    "context": "CREATE TABLE table_name_20 (wheelbase VARCHAR, body_styles VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_89 WHERE home = \"toronto\"",
    "question_en": "What was the score when the home team was Toronto?",
    "question_th": "เมื่อเจ้าบ้านเป็นโตรอนโต้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_89 (score VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_64 WHERE home = \"minnesota\"",
    "question_en": "What was the record when Minnesota was the home team?",
    "question_th": "บันทึกเมื่อมินนิโซตาเป็นเจ้าบ้านคืออะไร?",
    "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_en": "Which city held the game in Old Trafford before 1907 when the Opposition was sussex?",
    "question_th": "เมืองใดจัดการแข่งขันในโอลด์ แทรฟฟอร์ด ก่อนปี 1907 เมื่อฝ่ายค้านคือซัสเซ็กซ์?",
    "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_en": "What was the score when the opposition was sussex after 1890?",
    "question_th": "คะแนนเมื่อฝ่ายค้านอยู่ในซัสเซ็กซ์หลังปี พ.ศ. 2433 เป็นเท่าใด",
    "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_en": "What city had a score of 20 in aigburth after 1907?",
    "question_th": "เมืองใดมีคะแนน 20 ในไอกเบอร์ธหลังปี 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_en": "What was the score when the opposition was sussex in liverpool?",
    "question_th": "เมื่อคู่แข่งเป็นซัสเซ็กซ์ในลิเวอร์พูลได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_96 (score INTEGER, opposition VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT producer FROM table_name_57 WHERE director = \"erik matti\"",
    "question_en": "What is Director Erik Matti's Producer?",
    "question_th": "ผู้อำนวยการสร้างของ Erik Matti คืออะไร",
    "context": "CREATE TABLE table_name_57 (producer VARCHAR, director VARCHAR)"
  },
  {
    "answer": "SELECT producer FROM table_name_32 WHERE director = \"bona fajardo\"",
    "question_en": "What is Director Bona Fajardo's Producer?",
    "question_th": "ผู้อำนวยการสร้างของ Bona Fajardo คืออะไร",
    "context": "CREATE TABLE table_name_32 (producer VARCHAR, director VARCHAR)"
  },
  {
    "answer": "SELECT producer FROM table_name_77 WHERE year = \"december 25, 2006\"",
    "question_en": "What is the Producer on December 25, 2006?",
    "question_th": "โปรดิวเซอร์คืออะไรในวันที่ 25 ธันวาคม 2549",
    "context": "CREATE TABLE table_name_77 (producer VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_79 WHERE role = \"mylene\"",
    "question_en": "What Title has a Role of Mylene?",
    "question_th": "ชื่ออะไรมีบทบาทเป็น Mylene?",
    "context": "CREATE TABLE table_name_79 (title VARCHAR, role VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_55 WHERE role = \"(cameo)\"",
    "question_en": "In what Year is there a Role of (cameo)?",
    "question_th": "มีบทบาท (จี้) ในปีใด?",
    "context": "CREATE TABLE table_name_55 (year VARCHAR, role VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_57 WHERE result = \"106-105\"",
    "question_en": "On what date was the result 106-105?",
    "question_th": "ผล 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_en": "What was the result for Portland at home on June 12?",
    "question_th": "ส่งผลให้พอร์ตแลนด์ในบ้านวันที่ 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_en": "Who was the home team with a result of 105-99?",
    "question_th": "เจ้าบ้านผลสกอร์ 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_en": "On what date was Game 1?",
    "question_th": "เกมที่ 1 ตรงกับวันไหน?",
    "context": "CREATE TABLE table_name_54 (date VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_2 WHERE game = \"game 3\"",
    "question_en": "On what date was Game 3?",
    "question_th": "เกมที่ 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_en": "On what date was Portland on the road for Game 2?",
    "question_th": "พอร์ตแลนด์อยู่บนถนนสำหรับเกมที่ 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_en": "What was the highest number of games played when they had over 14 against and 3 losses?",
    "question_th": "อะไรคือจำนวนเกมที่เล่นมากที่สุดเมื่อพวกเขาแข่งมากกว่า 14 นัดและแพ้ 3 นัด?",
    "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_en": "What was the position for team corinthians with over 14 against?",
    "question_th": "ตำแหน่งของทีมโครินเธียนส์ที่เกิน 14 ทีมอยู่ตำแหน่งไหน?",
    "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_en": "How many games played for team bangu with under 15 against, and over 9 points?",
    "question_th": "มีกี่เกมที่เล่นให้กับทีม Bangu โดยอายุต่ำกว่า 15 ปี และมากกว่า 9 แต้ม?",
    "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_en": "When is Northern Ireland the opponent?",
    "question_th": "ไอร์แลนด์เหนือเป็นคู่แข่งเมื่อใด?",
    "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_en": "Name the length for class of gts-2 and date of october 8",
    "question_th": "ตั้งชื่อความยาวคลาสของ gts-2 และวันที่ 8 ตุลาคม",
    "context": "CREATE TABLE table_name_27 (length VARCHAR, class VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT circuit FROM table_name_78 WHERE class = \"gts\"",
    "question_en": "Name the circuit with class of gts",
    "question_th": "ตั้งชื่อวงจรด้วยคลาสของ 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_en": "Name the length for all class and date of march 18",
    "question_th": "ตั้งชื่อความยาวสำหรับทุกชั้นเรียนและวันที่ 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_en": "How many Games has a Team of chicago?",
    "question_th": "ทีมชิคาโกมีกี่เกม?",
    "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_en": "What is the High points of charles oakley , kevin willis (11)?",
    "question_th": "จุดสูงสุดของชาร์ลส์ โอ๊คลีย์, เควิน วิลลิส (11) คืออะไร?",
    "context": "CREATE TABLE table_name_55 (high_points VARCHAR, high_rebounds VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_name_40 WHERE score = \"w 90–82 (ot)\"",
    "question_en": "Which Game has a Score of w 90–82 (ot)?",
    "question_th": "เกมใดมีคะแนน w 90–82 (ot)?",
    "context": "CREATE TABLE table_name_40 (game VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_name_43 WHERE team = \"washington\"",
    "question_en": "What is the High rebounds of washington Team?",
    "question_th": "รีบาวด์สูงของทีมวอชิงตันคืออะไร?",
    "context": "CREATE TABLE table_name_43 (high_rebounds VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT SUM(game) FROM table_name_52 WHERE date = \"february 28\"",
    "question_en": "What is the sum of Game on february 28?",
    "question_th": "ผลรวมของเกมในวันที่ 28 กุมภาพันธ์เป็นเท่าใด",
    "context": "CREATE TABLE table_name_52 (game INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_71 WHERE wins > 2",
    "question_en": "Which Country has a number of Wins larger than 2?",
    "question_th": "ประเทศใดมีจำนวนการชนะมากกว่า 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_en": "What ranking has the nationality of spain and the goals of 26?",
    "question_th": "อันดับไหนมีสัญชาติสเปนและมีเป้าหมายที่ 26?",
    "context": "CREATE TABLE table_name_95 (ranking VARCHAR, nationality VARCHAR, goals VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_18 WHERE goals = 25",
    "question_en": "What name is the goals of 25?",
    "question_th": "เป้าหมายของ 25 ชื่ออะไร?",
    "context": "CREATE TABLE table_name_18 (name VARCHAR, goals VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(grid) FROM table_name_59 WHERE time = \"+37.949\"",
    "question_en": "what's the grid with time +37.949?",
    "question_th": "ตารางที่มีเวลา +37.949 คืออะไร?",
    "context": "CREATE TABLE table_name_59 (grid VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_80 WHERE grid = 12",
    "question_en": "what driver has 12 in grid?",
    "question_th": "ไดรเวอร์อะไรมี 12 ในตาราง?",
    "context": "CREATE TABLE table_name_80 (driver VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT MAX(grid) FROM table_name_59 WHERE team = \"new zealand\"",
    "question_en": "what is the highest grid for new zealand?",
    "question_th": "ตารางที่สูงที่สุดสำหรับนิวซีแลนด์คืออะไร?",
    "context": "CREATE TABLE table_name_59 (grid INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_92 WHERE time = \"+1'25.337\"",
    "question_en": "what team has +1'25.337 for the time?",
    "question_th": "ทีมไหนมี +1'25.337 ในขณะนั้น?",
    "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_en": "What was the result at A Arena, the SL league, and a match number over 16?",
    "question_th": "ผลการแข่งขันที่ A Arena, ลีก SL และหมายเลขแมตช์มากกว่า 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_en": "Opponent of @ atlanta flames had what game?",
    "question_th": "ฝ่ายตรงข้ามของ@atlantaflameมีเกมอะไร?",
    "context": "CREATE TABLE table_name_44 (game VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT MIN(game) FROM table_name_81 WHERE record = \"3-3-1\"",
    "question_en": "Record of 3-3-1 had what lowest game?",
    "question_th": "สถิติ 3-3-1 มีเกมไหนต่ำสุด?",
    "context": "CREATE TABLE table_name_81 (game INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_65 WHERE save = \"aguilera (5)\"",
    "question_en": "What was the date when the game had a save by Aguilera (5)?",
    "question_th": "วันที่เกมได้รับการเซฟโดย 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_en": "What was the Save in the game that has a Loss of sanderson (6-5)?",
    "question_th": "เซฟในเกมที่แพ้แซนเดอร์สัน (6-5) คืออะไร?",
    "context": "CREATE TABLE table_name_96 (save VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT AVG(wins) FROM table_name_77 WHERE rank = 3",
    "question_en": "Which Wins have a Rank of 3?",
    "question_th": "ชัยชนะใดมีอันดับ 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_en": "Which Events have a Player of tom kite, and Earnings ($) smaller than 760,405?",
    "question_th": "กิจกรรมใดที่มีผู้เล่น Tom Kite และรายได้ ($) น้อยกว่า 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_en": "Which events have a Rank of 1?",
    "question_th": "กิจกรรมใดมีอันดับ 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_en": "What is the fewest Points that has Willie Heston as Player and less than 3 as Touchdowns?",
    "question_th": "อะไรคือคะแนนที่น้อยที่สุดที่มี Willie Heston ในฐานะผู้เล่นและน้อยกว่า 3 เป็นทัชดาวน์?",
    "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_en": "What is the Departure time at Rajendranagar Terminal?",
    "question_th": "เวลาออกเดินทางที่สถานีราเชนทรนาการ์คือกี่โมง?",
    "context": "CREATE TABLE table_name_66 (departure VARCHAR, station_name VARCHAR)"
  },
  {
    "answer": "SELECT station_code FROM table_name_37 WHERE departure = \"destination station\"",
    "question_en": "What is the Station Code of the Destination Station Departure?",
    "question_th": "รหัสสถานีของสถานีปลายทางที่ออกเดินทางคืออะไร?",
    "context": "CREATE TABLE table_name_37 (station_code VARCHAR, departure VARCHAR)"
  },
  {
    "answer": "SELECT platform FROM table_name_26 WHERE departure = \"18:00\"",
    "question_en": "At what Platform is the Departure 18:00?",
    "question_th": "ออกเดินทางเวลา 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_en": "What is the Station Name of the Arrival Starting Station?",
    "question_th": "ชื่อสถานีของสถานีเริ่มต้นที่มาถึงคืออะไร?",
    "context": "CREATE TABLE table_name_63 (station_name VARCHAR, arrival VARCHAR)"
  },
  {
    "answer": "SELECT arrival FROM table_name_62 WHERE station_name = \"patna junction\"",
    "question_en": "What is the Arrival time of the Patna Junction Station?",
    "question_th": "สถานีชุมทางปัตตานีมาถึงเมื่อใด?",
    "context": "CREATE TABLE table_name_62 (arrival VARCHAR, station_name VARCHAR)"
  },
  {
    "answer": "SELECT station_name FROM table_name_97 WHERE arrival = \"01:10\"",
    "question_en": "What Station Name has an Arrival time of 01:10?",
    "question_th": "ชื่อสถานีใดมีเวลามาถึง 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_en": "What was the score for the game against the New Jersey Nets?",
    "question_th": "ในเกมกับนิวเจอร์ซีย์ เน็ตส์ได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_14 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_36 WHERE opponent = \"milwaukee bucks\"",
    "question_en": "On which date was the game played against the Milwaukee Bucks?",
    "question_th": "เกมนี้เล่นกับมิลวอกี บักส์วันไหน?",
    "context": "CREATE TABLE table_name_36 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT results¹ FROM table_name_13 WHERE opponent = \"luxembourg\"",
    "question_en": "What was the result of the game against Luxembourg?",
    "question_th": "ผลการแข่งขันกับลักเซมเบิร์กเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_13 (results¹ VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_14 WHERE city = \"novi sad\"",
    "question_en": "When did the city of Novi Sad participate?",
    "question_th": "เมือง Novi Sad เข้าร่วมเมื่อใด",
    "context": "CREATE TABLE table_name_14 (date VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT results¹ FROM table_name_97 WHERE opponent = \"luxembourg\"",
    "question_en": "What was the result of the game against Luxembourg?",
    "question_th": "ผลการแข่งขันกับลักเซมเบิร์กเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_97 (results¹ VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_24 WHERE game_site = \"memorial stadium\" AND week = 15",
    "question_en": "What was the result for the game at Memorial Stadium in week 15?",
    "question_th": "ผลการแข่งขันที่เมโมเรียล สเตเดียม ในสัปดาห์ที่ 15 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_24 (result VARCHAR, game_site VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT series FROM table_name_99 WHERE score = \"0–6\"",
    "question_en": "Which Series has a Score of 0–6?",
    "question_th": "ซีรีส์ใดมีคะแนน 0–6",
    "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_en": "Which Series has a Game larger than 1, and a Date of april 18?",
    "question_th": "ซีรีส์ใดที่มีเกมใหญ่กว่า 1 และวันที่ 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–2 ot\"",
    "question_en": "Which Series has an Opponent of new york rangers, and a Score of 3–2 ot?",
    "question_th": "ซีรีส์ใดมีคู่ต่อสู้ของ New York Rangers และคะแนน 3–2 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_en": "Which Series has an Opponent of @ new york rangers, and a Date of april 22?",
    "question_th": "ซีรีส์ใดที่มีคู่ต่อสู้ของ @ new york rangers และวันที่ 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_en": "How many Played have a Lost smaller than 3, and a Difference of 6, and Points larger than 6?",
    "question_th": "มีกี่คนที่เล่นแล้วมีค่าแพ้น้อยกว่า 3 และผลต่าง 6 และแต้มมากกว่า 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_en": "How many Points have a Drawn smaller than 0?",
    "question_th": "แต้มที่เสมอน้อยกว่า 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_en": "How many Drawn have an Against smaller than 5, and a Played smaller than 3?",
    "question_th": "เสมอกันกี่ตัวที่มีแต้มต่อน้อยกว่า 5 และแต้มที่เล่นน้อยกว่า 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_en": "Which Position has an Against of 5, and a Drawn larger than 0?",
    "question_th": "ตำแหน่งใดมีแต้มต่อ 5 และแต้มเสมอมากกว่า 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_en": "Which Played is the highest one that has a Lost smaller than 1, and a Difference of 6, and an Against larger than 2?",
    "question_th": "ผู้เล่นคนไหนที่เล่นสูงสุดที่แพ้น้อยกว่า 1 และผลต่าง 6 และต่อมากกว่า 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_en": "Which Points is the lowest one that has a Position larger than 5?",
    "question_th": "คะแนนใดคือคะแนนต่ำสุดที่มีตำแหน่งมากกว่า 5?",
    "context": "CREATE TABLE table_name_36 (points INTEGER, position INTEGER)"
  },
  {
    "answer": "SELECT lost FROM table_name_56 WHERE \"points\" = \"points\"",
    "question_en": "what team lost the most points",
    "question_th": "ทีมไหนเสียคะแนนมากที่สุด",
    "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_en": "What opponent has 3-2 as the score, and anderson (2-6) as a loss?",
    "question_th": "คู่ต่อสู้คนไหนมีสกอร์ 3-2 และแอนเดอร์สัน (2-6) แพ้?",
    "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_en": "What score has an attendance less than 10,553?",
    "question_th": "คะแนนใดที่มีผู้เข้าร่วมน้อยกว่า 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_en": "What is the highest episode of Wood Flutes segment c?",
    "question_th": "Wood Flutes ตอนที่สูงที่สุดตอน 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_en": "What is Segment D of 20-08 series Ep.?",
    "question_th": "Segment D ของซีรีส์ Ep.20-08 คืออะไร?",
    "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_en": "What year did they get 4 points with Suzuki?",
    "question_th": "ปีไหนที่พวกเขาได้ 4 แต้มกับซูซูกิ?",
    "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_en": "What was the last year that they had less than 16 points in class 500cc?",
    "question_th": "ปีที่แล้วมีคะแนนน้อยกว่า 16 คะแนนในคลาส 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_en": "Which party had an incumbent of W. Jasper Talbert?",
    "question_th": "ฝ่ายใดดำรงตำแหน่งของ ดับเบิลยู. แจสเปอร์ ทัลเบิร์ต",
    "context": "CREATE TABLE table_name_70 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_42 WHERE record = \"13-18\"",
    "question_en": "which team has a record of 13-18?",
    "question_th": "ทีมไหนมีสถิติ 13-18?",
    "context": "CREATE TABLE table_name_42 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_64 WHERE date = \"may 26\"",
    "question_en": "What was the record for May 26?",
    "question_th": "บันทึกของวันที่ 26 พฤษภาคมเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_64 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_65 WHERE attendance = \"15,298\"",
    "question_en": "What was the loss details for the team with an attendance of 15,298?",
    "question_th": "รายละเอียดการสูญเสียของทีมที่มีผู้เข้าร่วม 15,298 คืออะไร?",
    "context": "CREATE TABLE table_name_65 (loss VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_82 WHERE date = \"march 30\"",
    "question_en": "What city has march 30 as the date?",
    "question_th": "เมืองใดมีวันที่ 30 มีนาคมเป็นวันที่?",
    "context": "CREATE TABLE table_name_82 (city VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_81 WHERE date = \"april 23\"",
    "question_en": "What opponent has april 23 as the date?",
    "question_th": "ฝ่ายตรงข้ามคนไหนที่มีวันที่ 23 เมษายนเป็นวันที่?",
    "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_en": "What opponent has euro '84 qualifying as the type and split as the city?",
    "question_th": "คู่ต่อสู้คนไหนที่มียูโร '84 เข้ารอบเป็นประเภทและแยกเป็นเมือง?",
    "context": "CREATE TABLE table_name_54 (opponent VARCHAR, type_of_game VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT results¹ FROM table_name_90 WHERE type_of_game = \"euro '84 qualifying\" AND opponent = \"norway\"",
    "question_en": "What results has euro '84 qualifying as the type of game and norway as the opponent?",
    "question_th": "ผลลัพธ์อะไรที่ทำให้ยูโร 84 เข้ารอบเป็นประเภทเกมและนอร์เวย์เป็นคู่ต่อสู้?",
    "context": "CREATE TABLE table_name_90 (results¹ VARCHAR, type_of_game VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT type_of_game FROM table_name_91 WHERE results¹ = \"2:1\"",
    "question_en": "What game type has 2:1 as the results?",
    "question_th": "เกมประเภทใดที่มีผลลัพธ์ 2:1?",
    "context": "CREATE TABLE table_name_91 (type_of_game VARCHAR, results¹ VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_92 WHERE type_of_game = \"friendly\" AND opponent = \"france\" AND city = \"paris, france\"",
    "question_en": "What date has friendly as the type of game, france as an opponent, and paris, france as the city?",
    "question_th": "วันไหนที่เกมกระชับมิตรเป็นประเภท ฝรั่งเศสเป็นคู่ต่อสู้ และปารีส ฝรั่งเศสเป็นเมือง?",
    "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_en": "What is the date of the Mosport Park circuit?",
    "question_th": "สนาม Mosport Park วันที่เท่าไหร่?",
    "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_en": "What is the length of the Laguna Seca Raceway circuit with a class of gtu?",
    "question_th": "สนามแข่งรถ Laguna Seca Raceway และคลาส 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_en": "What is the class of the Charlotte Camel gt 500 race?",
    "question_th": "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_en": "What is the length of the race on August 15?",
    "question_th": "การแข่งขันวันที่ 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_en": "Where is Exxon Mobil, an oil and gas corporation, headquartered?",
    "question_th": "บริษัท Exxon Mobil ซึ่งเป็นบริษัทน้ำมันและก๊าซมีสำนักงานใหญ่อยู่ที่ไหน",
    "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_en": "In what Tournament was laura Gildemeister the Opponent?",
    "question_th": "ลอร่า กิลเดไมสเตอร์เป็นฝ่ายตรงข้ามในการแข่งขันใด",
    "context": "CREATE TABLE table_name_50 (tournament VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_55 WHERE date = \"january 11, 1998\"",
    "question_en": "Date of january 11, 1998 has what surface?",
    "question_th": "วันที่ 11 มกราคม 2541 มีพื้นผิวอะไร?",
    "context": "CREATE TABLE table_name_55 (surface VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_57 WHERE score = \"4–6, 6–4, 6–4\"",
    "question_en": "Score of 4–6, 6–4, 6–4 included which tournament?",
    "question_th": "คะแนน 4–6, 6–4, 6–4 รวมทัวร์นาเมนต์ใด",
    "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_en": "Final that has a Date of january 10, 2004 had what opponent?",
    "question_th": "รอบชิงชนะเลิศที่มีวันที่ 10 มกราคม 2547 มีคู่ต่อสู้คนไหน?",
    "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–6, 6–4, 6–4\"",
    "question_en": "Tournament of tokyo, japan, and a Score of 4–6, 6–4, 6–4 had which date attached?",
    "question_th": "ทัวร์นาเมนต์ของโตเกียว ญี่ปุ่น และสกอร์ 4–6, 6–4, 6–4 มีกำหนดวันไหน?",
    "context": "CREATE TABLE table_name_91 (date VARCHAR, tournament VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_63 WHERE score = \"3–6, 7–5, 6–4\"",
    "question_en": "Score of 3–6, 7–5, 6–4 included what date?",
    "question_th": "คะแนน 3–6, 7–5, 6–4 รวมวันที่ใด",
    "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_en": "What are the fewest number of podiums associated with a Series of formula renault 2000 brazil, and under 1 pole?",
    "question_th": "จำนวนโพเดียมที่น้อยที่สุดที่เกี่ยวข้องกับซีรีส์สูตรเรโนลต์ 2000 บราซิล และต่ำกว่า 1 โพลคือเท่าใด",
    "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_en": "What position has over 0 wins and under 3 podiums?",
    "question_th": "ตำแหน่งใดมีชัยชนะมากกว่า 0 ครั้งและต่ำกว่า 3 โพเดียม?",
    "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_en": "How many wins are associated with 20 points and over 1 podium?",
    "question_th": "มีชัยชนะกี่ครั้งที่เกี่ยวข้องกับ 20 แต้มและมากกว่า 1 โพเดียม?",
    "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_en": "What is the largest number of households with median family income of $52,106 with less than 21,403 in population?",
    "question_th": "จำนวนครัวเรือนที่ใหญ่ที่สุดที่มีรายได้เฉลี่ยของครอบครัวอยู่ที่ 52,106 ดอลลาร์ โดยมีประชากรน้อยกว่า 21,403 คนคือเท่าใด",
    "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_en": "What is the most households with a median household income of $54,086 with less than 231,236 in population?",
    "question_th": "ครัวเรือนส่วนใหญ่ที่มีรายได้เฉลี่ยครัวเรือนอยู่ที่ 54,086 ดอลลาร์ โดยมีประชากรน้อยกว่า 231,236 คนคือเท่าใด",
    "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_en": "Which country has a $46,426 median family income?",
    "question_th": "ประเทศใดมีรายได้เฉลี่ยของครอบครัวอยู่ที่ 46,426 ดอลลาร์",
    "context": "CREATE TABLE table_name_34 (county VARCHAR, median_family_income VARCHAR)"
  },
  {
    "answer": "SELECT AVG(grid) FROM table_name_27 WHERE laps < 8",
    "question_en": "What is the average grid with a number of laps smaller than 8?",
    "question_th": "ตารางเฉลี่ยที่มีจำนวนรอบน้อยกว่า 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_en": "What is the lowest grid with rider casey stoner and laps that are smaller than 27?",
    "question_th": "ตารางต่ำสุดที่มี casey stoner ของไรเดอร์และรอบที่เล็กกว่า 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_en": "What is the total grid number with laps that are larger than 27?",
    "question_th": "หมายเลขกริดรวมที่มีรอบมากกว่า 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_en": "What is the lowest number of laps with a time/retired of +38.426?",
    "question_th": "จำนวนรอบต่ำสุดที่มีเวลา/เกษียณที่ +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_en": "What is the sum of laps that has a time/retired that is +19.475?",
    "question_th": "ผลรวมของรอบที่มีเวลา/เกษียณที่ +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_en": "What player is from canterbury (ushs)?",
    "question_th": "นักเตะคนไหนมาจากแคนเทอร์เบอรี (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_en": "Which Opponent has a Game of 33?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีเกม 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_en": "What's the Score that's got a listing of December that larger than 8 and Record of 25-8-3?",
    "question_th": "คะแนนที่มีรายชื่อเดือนธันวาคมที่มากกว่า 8 และสถิติ 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_en": "What is the total number of earnings for golfers who have 28 events and more than 2 wins?",
    "question_th": "รายได้รวมของนักกอล์ฟที่มี 28 รายการและชนะมากกว่า 2 รายการเป็นเท่าใด",
    "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_en": "On what Date was The Open Championship in Japan?",
    "question_th": "The Open Championship ที่ญี่ปุ่นจัดขึ้นวันไหน?",
    "context": "CREATE TABLE table_name_99 (date VARCHAR, major VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_54 WHERE player = \"tom weiskopf\"",
    "question_en": "What was Tom Weiskopf's Finish?",
    "question_th": "Finish ของ Tom Weiskopf คืออะไร?",
    "context": "CREATE TABLE table_name_54 (finish VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT laps FROM table_name_23 WHERE points = 29",
    "question_en": "Which Laps have Points of 29?",
    "question_th": "รอบใดมีคะแนน 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_en": "Which Grid has a Driver of cristiano da matta, and Points smaller than 33?",
    "question_th": "กริดคนไหนมีไดร์เวอร์ของคริสเตียโน ดา มัตตา และแต้มน้อยกว่า 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_en": "Which Team has Laps smaller than 105, and a Grid smaller than 18, and Points of 11?",
    "question_th": "ทีมใดมีรอบน้อยกว่า 105 และมีกริดน้อยกว่า 18 และมีคะแนน 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_en": "How many Points have a Team of rusport, and Laps of 45?",
    "question_th": "ทีมที่เก่งกาจและมีรอบ 45 ได้กี่คะแนน?",
    "context": "CREATE TABLE table_name_7 (points VARCHAR, team VARCHAR, laps VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_95 WHERE position = \"guard\"",
    "question_en": "What is the players name in the guard position?",
    "question_th": "ผู้เล่นในตำแหน่งการ์ดชื่ออะไร?",
    "context": "CREATE TABLE table_name_95 (name VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT overall FROM table_name_5 WHERE pick = 17",
    "question_en": "What is the Overall number for pick 17?",
    "question_th": "หมายเลขรวมของ Pick 17 คืออะไร?",
    "context": "CREATE TABLE table_name_5 (overall VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_48 WHERE overall = 123",
    "question_en": "What number round has an overall of 123?",
    "question_th": "รอบเลขไหนมีทั้งหมด 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_en": "What is the Name with an overall of less than 123 for the Detroit Lions?",
    "question_th": "ชื่อที่มีคะแนนรวมน้อยกว่า 123 สำหรับ 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_en": "Who is drafted overall less than 49?",
    "question_th": "ใครคือร่างโดยรวมน้อยกว่า 49?",
    "context": "CREATE TABLE table_name_27 (name VARCHAR, overall INTEGER)"
  },
  {
    "answer": "SELECT position FROM table_name_47 WHERE college = \"grambling\"",
    "question_en": "What position is drafted from Grambling?",
    "question_th": "ตำแหน่งใดที่ได้รับการร่างจาก 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_en": "Which opponent's event was sb 24 - return of the heavyweights 2, and had a method of TKO (knee and punches)?",
    "question_th": "คู่ต่อสู้คนไหนคือ sb 24 - การกลับมาของรุ่นเฮฟวี่เวท 2 และมีวิธี TKO (เข่าและหมัด)?",
    "context": "CREATE TABLE table_name_2 (opponent VARCHAR, event VARCHAR, method VARCHAR)"
  },
  {
    "answer": "SELECT method FROM table_name_68 WHERE opponent = \"travis fulton\"",
    "question_en": "Which method had Travis Fulton as an opponent?",
    "question_th": "วิธีใดที่ Travis Fulton เป็นคู่ต่อสู้",
    "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_en": "Which opponent had a round of more than 1 and an even of PFP: ring of fire?",
    "question_th": "คู่ต่อสู้คนใดมีรอบมากกว่า 1 และ 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_en": "What's the segment A in episode 42?",
    "question_th": "ส่วน A ในตอนที่ 42 คืออะไร?",
    "context": "CREATE TABLE table_name_87 (segment_a VARCHAR, episode VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(ordered) FROM table_name_54 WHERE name = \"sfax\"",
    "question_en": "Sfax has a total ordered number of?",
    "question_th": "Sfax มียอดสั่งซื้อทั้งหมด ?",
    "context": "CREATE TABLE table_name_54 (ordered VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_42 WHERE date = \"march 5\"",
    "question_en": "What was the score on March 5 at Vancouver?",
    "question_th": "คะแนนเมื่อวันที่ 5 มีนาคมที่แวนคูเวอร์เป็นอย่างไรบ้าง",
    "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_en": "Who directed the nominated film 'blood on his hands'?",
    "question_th": "ใครเป็นผู้กำกับภาพยนตร์เรื่อง '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_en": "What is the rank of the film, Amelia and Michael?",
    "question_th": "Amelia และ 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_en": "Who directed the nominated film, Badmouth?",
    "question_th": "ใครเป็นผู้กำกับภาพยนตร์เรื่อง 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_en": "What was the production company for the film directed by Daniel Cormack?",
    "question_th": "บริษัทผู้ผลิตภาพยนตร์ที่กำกับโดย 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_en": "What was the production company for the nominated film, Badmouth?",
    "question_th": "บริษัทผู้ผลิตภาพยนตร์ที่ได้รับการเสนอชื่อเข้าชิงเรื่อง 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_en": "What is the average number of points of the game after January 3 against the Cleveland Barons?",
    "question_th": "คะแนนเฉลี่ยของเกมหลังวันที่ 3 มกราคม พบกับ คลีฟแลนด์ บารอน คือเท่าไร?",
    "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_en": "What is the total number of games of the team against the Los Angeles Kings after January 5?",
    "question_th": "จำนวนเกมทั้งหมดของทีมกับลอสแอนเจลิสคิงส์หลังวันที่ 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_en": "Tiger Woods has played less than 21 events and is what rank?",
    "question_th": "ไทเกอร์ วูดส์ ลงเล่นไม่ถึง 21 รายการ และอยู่อันดับไหน?",
    "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_en": "Score of 108-85 is what lowest game?",
    "question_th": "คะแนน 108-85 คือเกมใดต่ำสุด?",
    "context": "CREATE TABLE table_name_77 (game INTEGER, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_5 WHERE location = \"brendan byrne arena\"",
    "question_en": "Location of brendan byrne arena had what score?",
    "question_th": "ที่ตั้งของ เบรนแดน เบิร์น อารีน่า ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_5 (score VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_83 WHERE opponent = \"chicago bulls\"",
    "question_en": "Opponent of chicago bulls had what location?",
    "question_th": "ฝ่ายตรงข้ามชิคาโกบูลส์มีตำแหน่งใด?",
    "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_en": "Location of boston garden, and a Record of 58-23 involved what opponent?",
    "question_th": "ที่ตั้งของบอสตัน การ์เด้น และสถิติ 58-23 เกี่ยวข้องกับคู่ต่อสู้คนใด?",
    "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_en": "Score of 119-115 (ot) involved what location?",
    "question_th": "คะแนน 119-115 (ot) เกี่ยวข้องกับสถานที่ใด?",
    "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_en": "What is the average value for Fall 07 when Fall 05 is 271 and Fall 09 is less than 347?",
    "question_th": "ค่าเฉลี่ยสำหรับฤดูใบไม้ร่วง 07 คือเท่าใด เมื่อฤดูใบไม้ร่วง 05 คือ 271 และฤดูใบไม้ร่วง 09 น้อยกว่า 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_en": "What was the average value for Fall 07 when Fall 09 is less than 296?",
    "question_th": "ค่าเฉลี่ยสำหรับฤดูใบไม้ร่วง 07 คือเท่าใด เมื่อฤดูใบไม้ร่วง 09 น้อยกว่า 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_en": "What is the sum of all values in Fall 09 in Allegany county with Fall 07 less than 751?",
    "question_th": "ผลรวมของค่าทั้งหมดใน Fall 09 ในเขต Allegany โดย Fall 07 น้อยกว่า 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_en": "What is the largest value for Fall 08 when Fall 09 is 792 and Fall 05 is less than 791?",
    "question_th": "อะไรคือค่าที่ใหญ่ที่สุดสำหรับฤดูใบไม้ร่วง 08 เมื่อฤดูใบไม้ร่วง 09 คือ 792 และฤดูใบไม้ร่วง 05 น้อยกว่า 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_en": "What is the largest value for Fall 08 when Fall 07 is less than 242?",
    "question_th": "อะไรคือค่าที่ใหญ่ที่สุดสำหรับฤดูใบไม้ร่วง 08 เมื่อฤดูใบไม้ร่วง 07 น้อยกว่า 242?",
    "context": "CREATE TABLE table_name_28 (fall_08 INTEGER, fall_07 INTEGER)"
  },
  {
    "answer": "SELECT nationality FROM table_name_11 WHERE round = 4",
    "question_en": "What is the nationality of the player in round 4?",
    "question_th": "ผู้เล่นในรอบที่ 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_en": "What is the round of Jimmy Drolet from Canada?",
    "question_th": "Jimmy Drolet จากแคนาดารอบไหน?",
    "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_en": "What is the round number of Jessie Rezansoff, who plays right wing?",
    "question_th": "เจสซี่ เรซานซอฟ ที่เล่นปีกขวาหมายเลขรอบเท่าไหร่?",
    "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_en": "Which team had a qualifying 2 time of 1:01.093?",
    "question_th": "ทีมไหนได้เข้ารอบ 2 สมัยด้วยเวลา 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_en": "What was the qualifying 2 time for the team with a qualifying 1 time of 1:01.630?",
    "question_th": "รอบคัดเลือก 2 ครั้งของทีมด้วยเวลา 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_en": "What was the qualifying 1 time for Rusport and Justin Wilson?",
    "question_th": "รัสพอร์ตและจัสติน วิลสัน รอบคัดเลือก 1 ครั้งคืออะไร?",
    "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_en": "Which team had a qualifying 1 time of 1:01.342?",
    "question_th": "ทีมใดได้เข้ารอบ 1 ครั้ง 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_en": "What is the best time of the team that had a qualifying 1 time of 1:01.043?",
    "question_th": "เวลาที่ดีที่สุดของทีมที่ผ่านเข้ารอบ 1 ครั้งด้วยเวลา 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_en": "How many picks did Mike Zaher have?",
    "question_th": "Mike Zaher มีตัวเลือกกี่ตัว?",
    "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_en": "How many pick numbers did Matt Marquess have?",
    "question_th": "Matt Marquess มีหมายเลขเลือกกี่หมายเลข?",
    "context": "CREATE TABLE table_name_57 (pick__number VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT mls_team FROM table_name_69 WHERE pick__number = 31",
    "question_en": "Which MLS Team's pick number was 31?",
    "question_th": "หมายเลขเลือกของทีม MLS ใดคือ 31",
    "context": "CREATE TABLE table_name_69 (mls_team VARCHAR, pick__number VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_97 WHERE visitor = \"toronto\"",
    "question_en": "what day did the team go to toronto",
    "question_th": "ทีมงานไปโตรอนโตวันไหน",
    "context": "CREATE TABLE table_name_97 (date VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_14 WHERE visitor = \"chicago\"",
    "question_en": "what team visited chicago",
    "question_th": "ทีมไหนไปชิคาโก",
    "context": "CREATE TABLE table_name_14 (score VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_32 WHERE date = \"october 8\"",
    "question_en": "what team played on october 8",
    "question_th": "ทีมใดเล่นในวันที่ 8 ตุลาคม",
    "context": "CREATE TABLE table_name_32 (home VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_69 WHERE game_1 = \"noel cleal\"",
    "question_en": "Which Position has a Game 1 of noel cleal?",
    "question_th": "ตำแหน่งใดมีเกมที่ 1 ของ 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_en": "Which Game 3 has a Game 1 of brett kenny?",
    "question_th": "เกมที่ 3 ใดมีเกมที่ 1 ของ 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_en": "Opponent of at new york giants had what venue?",
    "question_th": "ฝ่ายตรงข้ามของนิวยอร์กไจแอนต์มีสนามที่ใด?",
    "context": "CREATE TABLE table_name_36 (venue VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_43 WHERE result = \"l 10-23\"",
    "question_en": "Result of l 10-23 occurred in what week?",
    "question_th": "ผล l 10-23 เกิดขึ้นในสัปดาห์ใด?",
    "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_en": "Week larger than 5, and an opponent of at new york giants had what record?",
    "question_th": "สัปดาห์ที่มากกว่า 5 และคู่ต่อสู้ของยักษ์ใหญ่ในนิวยอร์กมีสถิติอะไรบ้าง?",
    "context": "CREATE TABLE table_name_69 (record VARCHAR, week VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_77 WHERE attendance = \"35,842\"",
    "question_en": "Attendance of 35,842 had what date?",
    "question_th": "มีผู้เข้าร่วม 35,842 คน มีวันไหน?",
    "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_en": "Result of w 16-10* o.t. had what attendance?",
    "question_th": "ผลการแข่งขัน ส.ค. 16-10* มีผู้เข้าร่วมเท่าใด?",
    "context": "CREATE TABLE table_name_27 (attendance VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT report FROM table_name_6 WHERE date = \"june 5, 2005\"",
    "question_en": "What Report has the Date of June 5, 2005?",
    "question_th": "รายงานใดมีวันที่ 5 มิถุนายน พ.ศ. 2548",
    "context": "CREATE TABLE table_name_6 (report VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT report FROM table_name_8 WHERE date = \"september 3, 2005\"",
    "question_en": "What Report has the Date September 3, 2005?",
    "question_th": "รายงานใดมีวันที่ 3 กันยายน พ.ศ. 2548?",
    "context": "CREATE TABLE table_name_8 (report VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT 3 AS ’utr_sequence FROM table_name_64 WHERE coding = \"6a 3\" AND genbank_id = \"nm_001093770.2\"",
    "question_en": "What was the 3’UTR sequence when Coding was 6a 3 and the GenBank id is nm_001093770.2?",
    "question_th": "ลำดับ 3'UTR คืออะไรเมื่อการเข้ารหัสเป็น 6a 3 และ GenBank id คือ 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_en": "Which Variant id has the GenBank id of nm_005411.4?",
    "question_th": "รหัสตัวแปรใดที่มีรหัส GenBank เป็น nm_005411.4",
    "context": "CREATE TABLE table_name_40 (variant_id VARCHAR, genbank_id VARCHAR)"
  },
  {
    "answer": "SELECT 5 AS ’utr_splice FROM table_name_46 WHERE variant_id = \"sftpa1 variant 2\"",
    "question_en": "Which 5’UTR splice has a Variant ID at sftpa1 variant 2?",
    "question_th": "ตัวต่อ 5'UTR ตัวใดมีรหัสตัวแปรที่ sftpa1 ตัวแปร 2",
    "context": "CREATE TABLE table_name_46 (variant_id VARCHAR)"
  },
  {
    "answer": "SELECT 3 AS ’utr_sequence FROM table_name_87 WHERE genbank_id = \"hq021440\"",
    "question_en": "Which 3’UTR sequence has the GenBank ID at hq021440?",
    "question_th": "ลำดับ 3'UTR ใดมี GenBank ID ที่ 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êmio\"",
    "question_en": "Which Copa Libertadores 1992 has a Supercopa Sudamericana 1992 of round of 16, and a Team of grêmio?",
    "question_th": "โคปา ลิเบอร์ตาดอเรส 1992 ใดได้แชมป์ซูเปร์โกปา ซูดาเมริกานา 1992 จากรอบ 16 ทีม และมีทีมเกรมิโอ?",
    "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_en": "Which Team has a Recopa Sudamericana 1992 of runner-up?",
    "question_th": "ทีมใดได้รองชนะเลิศ Recopa Sudamericana 1992?",
    "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_en": "Which Supercopa Sudamericana 1992 has a Team of santos?",
    "question_th": "Supercopa Sudamericana 1992 ทีมไหนมีซานโตส?",
    "context": "CREATE TABLE table_name_83 (supercopa_sudamericana_1992 VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_28 WHERE record = \"54-69\"",
    "question_en": "When was the game with a record of 54-69?",
    "question_th": "เกมไหนมีสถิติ 54-69 บ้าง?",
    "context": "CREATE TABLE table_name_28 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT SUM(tier) FROM table_name_45 WHERE postseason = \"semifinalist\"",
    "question_en": "What is the total number of tiers for the postseason of semifinalist?",
    "question_th": "จำนวนระดับทั้งหมดสำหรับช่วงหลังฤดูกาลของรอบรองชนะเลิศคือเท่าใด?",
    "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_en": "For a year earlier than 1991 and a reynard 91d chassis, what's the highest points?",
    "question_th": "หนึ่งปีก่อนหน้าปี 1991 และแชสซีของ Reynard 91d อะไรคือคะแนนสูงสุด?",
    "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_en": "Total points for a bs automotive entrant?",
    "question_th": "คะแนนรวมสำหรับผู้เข้าแข่งขันรถยนต์ bs?",
    "context": "CREATE TABLE table_name_7 (points VARCHAR, entrant VARCHAR)"
  },
  {
    "answer": "SELECT engine FROM table_name_17 WHERE entrant = \"colt racing\"",
    "question_en": "What is a colt racing entrant engine?",
    "question_th": "เครื่องยนต์ของ Colt Racing Entrant คืออะไร?",
    "context": "CREATE TABLE table_name_17 (engine VARCHAR, entrant VARCHAR)"
  },
  {
    "answer": "SELECT AVG(passengers) FROM table_name_31 WHERE airport = \"indonesia, denpasar\"",
    "question_en": "How many Passengers that have an Airport in indonesia, denpasar?",
    "question_th": "มีผู้โดยสารกี่คนที่มีสนามบินในอินโดนีเซีย เดนปาซาร์?",
    "context": "CREATE TABLE table_name_31 (passengers INTEGER, airport VARCHAR)"
  },
  {
    "answer": "SELECT airport FROM table_name_52 WHERE carriers = \"malaysia airlines\"",
    "question_en": "Which Airport has a Carrier of malaysia airlines?",
    "question_th": "สนามบินใดมีสายการบินของมาเลเซียให้บริการ?",
    "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_en": "Which tier has a division of LEB 2 and Cup Competitions of Copa LEB Plata runner-up?",
    "question_th": "ระดับใดที่มีดิวิชั่น LEB 2 และการแข่งขันชิงถ้วยของ Copa LEB Plata รองชนะเลิศ?",
    "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_en": "How many positions have a Postseason of relegation playoffs and a tier of 3?",
    "question_th": "มีกี่ตำแหน่งที่มีรอบตัดเชือกหลังฤดูกาลตกชั้นและระดับ 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_en": "What is the lowest tier for a postseason result of quarterfinalist?",
    "question_th": "ระดับต่ำสุดสำหรับผลการแข่งขันหลังฤดูกาลของผู้เข้ารอบรองชนะเลิศคือเท่าไร?",
    "context": "CREATE TABLE table_name_68 (tier INTEGER, postseason VARCHAR)"
  },
  {
    "answer": "SELECT format FROM table_name_84 WHERE catalog = \"080 360-2\"",
    "question_en": "What format has 080 360-2 as the catalog?",
    "question_th": "แค็ตตาล็อกมี 080 360-2 ในรูปแบบใด",
    "context": "CREATE TABLE table_name_84 (format VARCHAR, catalog VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_4 WHERE catalog = \"887 448-2\"",
    "question_en": "What label has 887 448-2 as the catalog?",
    "question_th": "ป้ายใดมี 887 448-2 เป็นแค็ตตาล็อก",
    "context": "CREATE TABLE table_name_4 (label VARCHAR, catalog VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_20 WHERE format = \"cd single\"",
    "question_en": "What label has cd single as the format?",
    "question_th": "ค่ายเพลงใดมี cd single เป็นรูปแบบ?",
    "context": "CREATE TABLE table_name_20 (label VARCHAR, format VARCHAR)"
  },
  {
    "answer": "SELECT catalog FROM table_name_73 WHERE date = \"june 1990\"",
    "question_en": "What catalog has june 1990 as the date?",
    "question_th": "แคตตาล็อกใดที่มีเดือนมิถุนายน 1990 เป็นวันที่?",
    "context": "CREATE TABLE table_name_73 (catalog VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT building FROM table_name_42 WHERE storeys = 26",
    "question_en": "Which building has 26 storeys?",
    "question_th": "อาคารใดมี 26 ชั้น",
    "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_en": "What is the height for less than 45 storeys in Scotia Centre?",
    "question_th": "อาคารสโกเทียเซ็นเตอร์สูงไม่เกิน 45 ชั้นมีความสูงเท่าใด",
    "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_en": "How many storeys in Calgary during 1975-1976?",
    "question_th": "คาลการีมีกี่ชั้นในช่วงปี พ.ศ. 2518-2519",
    "context": "CREATE TABLE table_name_46 (storeys VARCHAR, city VARCHAR, years VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_97 WHERE years = \"1971-1974\"",
    "question_en": "Which city had years 1971-1974?",
    "question_th": "เมืองใดมีปี 2514-2517",
    "context": "CREATE TABLE table_name_97 (city VARCHAR, years VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_66 WHERE building = \"telus plaza south\"",
    "question_en": "Which city contains Telus Plaza South?",
    "question_th": "เมืองใดมี 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_en": "What is the lowest number played with 2 losses and more than 13 points?",
    "question_th": "เลขต่ำสุดที่เล่นได้ แพ้ 2 นัด มากกว่า 13 แต้ม คือเลขอะไร?",
    "context": "CREATE TABLE table_name_30 (played INTEGER, lost VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT MIN(position) FROM table_name_4 WHERE played > 9",
    "question_en": "What is the smallest positioned with more than 9 played?",
    "question_th": "ตำแหน่งที่เล็กที่สุดที่เล่นมากกว่า 9 ครั้งคืออะไร?",
    "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_en": "How many draws took place for team Corinthians with more than 5 losses?",
    "question_th": "ทีมโครินเธียนส์เสมอกันกี่ครั้งโดยแพ้มากกว่า 5 นัด?",
    "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_en": "Which 2007 is the lowest one that has a 2004 of 78, and a 2006 smaller than 80?",
    "question_th": "ปี 2550 ใดเป็นปีต่ำสุดที่มีปี 2547 เป็น 78 และปี 2549 น้อยกว่า 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_en": "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?",
    "question_th": "ปี 2548 ใดเป็นระดับต่ำสุดที่มีเกรดน้อยกว่า 6 และปี 2551 น้อยกว่า 80 และปี 2549 มากกว่า 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_en": "Position of member, and a Nationality of india is what sum of term ending?",
    "question_th": "ตำแหน่งของสมาชิกและสัญชาติอินเดียจะสิ้นสุดวาระเท่าใด",
    "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_en": "Name of xue hanqin has what highest term ending?",
    "question_th": "ชื่อ Xue Hanqin มีคำลงท้ายสูงสุดเรื่องใด?",
    "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_en": "Position of member, and a Tenure Began of 2010, and a Name of xue hanqin has what lowest term ending?",
    "question_th": "ตำแหน่งสมาชิก และการดำรงตำแหน่งเริ่มต้นในปี 2010 และชื่อของ xue hanqin มีวาระการสิ้นสุดต่ำสุดที่ใด?",
    "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_en": "Term Ending smaller than 2018, and a Nationality of new zealand what is the name?",
    "question_th": "Term Ending น้อยกว่าปี 2018 และสัญชาตินิวซีแลนด์ชื่ออะไร?",
    "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_en": "Which episode aired in the USA on 20 May 2005?",
    "question_th": "ตอนใดออกอากาศในสหรัฐอเมริกาเมื่อวันที่ 20 พฤษภาคม พ.ศ. 2548",
    "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_en": "What is the total number of episodes aired in Canada on 22 October 2004?",
    "question_th": "วันที่ 22 ตุลาคม พ.ศ. 2547 ออกอากาศในประเทศแคนาดาจำนวนทั้งหมดกี่ตอน?",
    "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_en": "What is the CBS airdate of the episode with a number under 70 with a USA airdate of 1 April 2005?",
    "question_th": "วันที่ออกอากาศของ CBS ตอนที่มีจำนวนต่ำกว่า 70 และวันที่ออกอากาศในสหรัฐอเมริกาคือวันที่ 1 เมษายน พ.ศ. 2548",
    "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_en": "what song is a genre of glam",
    "question_th": "เพลงอะไรเป็นแนว glam",
    "context": "CREATE TABLE table_name_26 (song_title VARCHAR, genre VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_38 WHERE team = \"seattle\"",
    "question_en": "Which score is the Seattle team?",
    "question_th": "ทีมซีแอตเทิลเป็นคะแนนใด",
    "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_en": "What is the number with the f position in Dallas, Texas?",
    "question_th": "ตัวเลขที่มีตำแหน่ง f ในดัลลัส รัฐเท็กซัส คืออะไร?",
    "context": "CREATE TABLE table_name_57 (number VARCHAR, position VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_94 WHERE venue = \"bangkok\"",
    "question_en": "Which competition took place in Bangkok?",
    "question_th": "การแข่งขันใดจัดขึ้นที่กรุงเทพฯ?",
    "context": "CREATE TABLE table_name_94 (competition VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_96 WHERE venue = \"kathmandu\"",
    "question_en": "What was the score in Kathmandu?",
    "question_th": "กาฐมา ณ ฑุ ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_96 (score VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_68 WHERE date = \"august 29, 1980\"",
    "question_en": "Where was the location for the August 29, 1980 game?",
    "question_th": "สถานที่สำหรับเกมวันที่ 29 สิงหาคม 1980 อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_68 (venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_name_31 WHERE position = \"2nd\" AND year < 1986",
    "question_en": "What is the notes distance for 2nd position earlier than 1986?",
    "question_th": "ระยะบันทึกสำหรับตำแหน่งที่ 2 ก่อนปี 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_en": "Which venue hosts the Olympic Games for DNQ position?",
    "question_th": "สถานที่ใดเป็นเจ้าภาพการแข่งขันกีฬาโอลิมปิกสำหรับตำแหน่ง DNQ",
    "context": "CREATE TABLE table_name_24 (venue VARCHAR, competition VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_82 WHERE notes = \"1.83m\"",
    "question_en": "In what year is the notes distance 1.83m?",
    "question_th": "ระยะทางโน้ต 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_en": "what is the race number of bob wollek",
    "question_th": "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_en": "what country is john nielsen from",
    "question_th": "จอห์น นีลเซ่น มาจากประเทศอะไร",
    "context": "CREATE TABLE table_name_10 (country VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT model FROM table_name_59 WHERE propulsion = \"hybrid\"",
    "question_en": "Which Model has hybrid propulsion?",
    "question_th": "รุ่นไหนมีระบบขับเคลื่อนแบบไฮบริด?",
    "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_en": "What is the Propulsion for the model offered in 2003-2004 by neoplan usa?",
    "question_th": "แรงขับสำหรับรุ่นที่นำเสนอในปี 2546-2547 โดย 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_en": "What is the Length (ft.) for a 2008 nfi d40lf?",
    "question_th": "ความยาว (ฟุต) สำหรับ 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_en": "Which Founded has a Club of tri-city storm and a Titles larger than 1?",
    "question_th": "ผู้ก่อตั้งกลุ่มใดมีกลุ่มพายุสามเมืองและตำแหน่งที่ใหญ่กว่า 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_en": "Which Founded that has a Club of no coast derby girls?",
    "question_th": "ซึ่งก่อตั้งขึ้นว่ามีคลับของสาวดาร์บี้ไม่มี?",
    "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_en": "Which Founded  has a League of women's flat track derby association, and a Club of omaha rollergirls?",
    "question_th": "ซึ่งก่อตั้งมีสมาคมดาร์บี้แฟลตแทร็กหญิงของลีกและคลับโรลเลอร์เกิร์ลโอมาฮา?",
    "context": "CREATE TABLE table_name_14 (founded INTEGER, league VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_2 WHERE competition = \"international friendly\"",
    "question_en": "On what date was there an International Friendly competition?",
    "question_th": "การแข่งขันกระชับมิตรนานาชาติจัดขึ้นวันไหน?",
    "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_en": "What was the score at Bernardo O'Higgins Cup on May 7, 1961?",
    "question_th": "เบอร์นาร์โด โอฮิกกินส์ คัพ เมื่อวันที่ 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_en": "What grid has an average time of +22.505 and laps larger than 23?",
    "question_th": "ตารางใดมีเวลาเฉลี่ย +22.505 และรอบมากกว่า 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_en": "Which suzuki gsx-r1000 k7 has the highest time of retirement?",
    "question_th": "suzuki gsx-r1000 k7 รุ่นไหนมีอายุการใช้งานสูงสุด?",
    "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_en": "What is the average lap for suzuki gsx-r1000 k7 and at grid 6?",
    "question_th": "รอบเฉลี่ยของ suzuki gsx-r1000 k7 และที่กริด 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_en": "Which rider has a lap of 23, grid smaller than 18, and time +44.333?",
    "question_th": "นักแข่งคนไหนมีรอบ 23 รอบ ตารางเล็กกว่า 18 และเวลา +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_en": "what is the lowest grid with laps larger than 23?",
    "question_th": "ตารางต่ำสุดที่มีรอบมากกว่า 23 คืออะไร?",
    "context": "CREATE TABLE table_name_85 (grid INTEGER, laps INTEGER)"
  },
  {
    "answer": "SELECT location FROM table_name_58 WHERE opponent = \"iowa state\"",
    "question_en": "Where did the Bruins play Iowa State?",
    "question_th": "บรูอินส์เล่นที่ Iowa State ที่ไหน?",
    "context": "CREATE TABLE table_name_58 (location VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT conf FROM table_name_24 WHERE date = \"ncaa tournament\"",
    "question_en": "What Conference was during the NCAA Tournament?",
    "question_th": "มีการประชุมอะไรในระหว่างการแข่งขัน NCAA?",
    "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_en": "What is the amount of Avg that has Yards more 265 and a Car more 105?",
    "question_th": "จำนวนเฉลี่ยที่มีหลามากกว่า 265 และรถยนต์มากกว่า 105 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_34 (avg VARCHAR, yards VARCHAR, car VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_83 WHERE rank = 3",
    "question_en": "Which player is ranked number 3?",
    "question_th": "นักเตะคนไหนอยู่อันดับที่ 3?",
    "context": "CREATE TABLE table_name_83 (player VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_84 WHERE champion = \"nicolas kiesa\"",
    "question_en": "What season has the champion of Nicolas Kiesa?",
    "question_th": "แชมป์ของ Nicolas Kiesa ในฤดูกาลใด?",
    "context": "CREATE TABLE table_name_84 (season VARCHAR, champion VARCHAR)"
  },
  {
    "answer": "SELECT gold FROM table_name_15 WHERE year = 1998",
    "question_en": "Who won the gold medal in 1998?",
    "question_th": "ใครได้รับรางวัลเหรียญทองในปี 1998?",
    "context": "CREATE TABLE table_name_15 (gold VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_name_11 WHERE silver = \"mika miyazato\"",
    "question_en": "What is the total number of years when Mika Miyazato won the silver?",
    "question_th": "รวมกี่ปีที่มิกะ มิยาซาโตะได้เหรียญเงิน?",
    "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_en": "What is the location of the Asian Games after 2002 when Kim Hyun-soo won the gold?",
    "question_th": "สถานที่จัดการแข่งขัน Asian Games หลังปี 2545 เมื่อคิมฮยอนซูคว้าเหรียญทองคือที่ไหน?",
    "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_en": "What is the earliest year that kim hyun-soo won the gold?",
    "question_th": "คิมฮยอนซูได้เหรียญทองในปีแรกสุดคือปีใด?",
    "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_en": "What was the broadcast date of the episode that visited South Africa?",
    "question_th": "ตอนที่ไปเยือนแอฟริกาใต้ออกอากาศวันที่เท่าไร",
    "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_en": "Which country did Natalia Makarova visit?",
    "question_th": "Natalia Makarova ไปเที่ยวประเทศใด",
    "context": "CREATE TABLE table_name_96 (countries_visited VARCHAR, presenter VARCHAR)"
  },
  {
    "answer": "SELECT SUM(attendance) FROM table_name_25 WHERE date = \"may 31\"",
    "question_en": "How many people attended the game on May 31?",
    "question_th": "วันที่ 31 พฤษภาคม มีคนเข้าร่วมเกมกี่คน?",
    "context": "CREATE TABLE table_name_25 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(attendance) FROM table_name_44 WHERE date = \"may 10\"",
    "question_en": "How many people attended the game on May 10?",
    "question_th": "วันที่ 10 พฤษภาคม มีคนเข้าร่วมเกมกี่คน?",
    "context": "CREATE TABLE table_name_44 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MIN(overall) FROM table_name_87 WHERE round = 3",
    "question_en": "Which Overall is the lowest one that has a Round of 3?",
    "question_th": "โดยรวมแล้วอันไหนคืออันที่ต่ำที่สุดที่มีรอบ 3?",
    "context": "CREATE TABLE table_name_87 (overall INTEGER, round VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_10 WHERE name = \"kevin landolt\"",
    "question_en": "Which college did kevin landolt attend?",
    "question_th": "Kevin Landolt เข้าเรียนที่วิทยาลัยใด",
    "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_en": "Which Round is the average one that has a Pick # larger than 26, and a Position of defensive back?",
    "question_th": "รอบใดคือรอบเฉลี่ยที่มี Pick # มากกว่า 26 และตำแหน่งกองหลัง?",
    "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_en": "Which College has a Pick # larger than 25, and a Round of 7, and a Name of chris white?",
    "question_th": "วิทยาลัยใดมีตัวเลือก # มากกว่า 25 คน และรอบ 7 คน และชื่อคริส ไวท์",
    "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_en": "what was the average game when record was 16-63?",
    "question_th": "เกมโดยเฉลี่ยเมื่อทำสถิติ 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_en": "Median household income of $40,340, and a Number of households smaller than 64,767 is what average population?",
    "question_th": "รายได้เฉลี่ยของครัวเรือนอยู่ที่ 40,340 ดอลลาร์ และจำนวนครัวเรือนที่น้อยกว่า 64,767 คือจำนวนประชากรโดยเฉลี่ย",
    "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_en": "What party was re-elected as an incumbent of robert p. Kennedy?",
    "question_th": "พรรคใดได้รับเลือกใหม่ให้ดำรงตำแหน่งของโรเบิร์ต พี. เคนเนดี้?",
    "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_en": "Which democratic incumbent is from the district of ohio 7?",
    "question_th": "ผู้ดำรงตำแหน่งประชาธิปไตยคนใดมาจากเขตโอไฮโอ 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_en": "Which republican was first elected in 1886 in the district of ohio 17?",
    "question_th": "พรรครีพับลิกันใดได้รับการเลือกตั้งครั้งแรกในปี พ.ศ. 2429 ในเขตโอไฮโอ 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_en": "Which result was in the district of ohio 6?",
    "question_th": "ผลใดเกิดขึ้นในเขตโอไฮโอ 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_en": "Who was first elected as the result of a retired republican gain in the district of ohio 21?",
    "question_th": "ใครได้รับเลือกเป็นคนแรกอันเป็นผลมาจากการได้รับเลือกจากพรรครีพับลิกันที่เกษียณแล้วในเขตโอไฮโอ 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_en": "On May 9 after Game 3, what was the Opponent?",
    "question_th": "วันที่ 9 พฤษภาคม หลังเกมที่ 3 ฝ่ายตรงข้ามคืออะไร?",
    "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_en": "Which Player has a Position of number 8, and a Club/province of scarlets?",
    "question_th": "ผู้เล่นคนไหนมีตำแหน่งหมายเลข 8 และมีสโมสร/จังหวัดสีแดง?",
    "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_en": "Which Club/province has a Position of centre, and Caps of 27?",
    "question_th": "สโมสร/จังหวัดใดมีตำแหน่งตรงกลาง และมีจำนวนแคป 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_en": "What position does alun wyn jones play?",
    "question_th": "อลัน วิน โจนส์ เล่นตำแหน่งอะไร?",
    "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_en": "Which Date of Birth (Age) has a Club/province of blues, and Caps larger than 0, and a Player of tom james?",
    "question_th": "วันเกิด (อายุ) ใดที่มีสโมสร/จังหวัดของเพลงบลูส์ และตัวพิมพ์ใหญ่มากกว่า 0 และผู้เล่นของทอม เจมส์",
    "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_en": "Which Caps is the lowest one that has a Club/province of ospreys, and a Date of Birth (Age) of 19 september 1985?",
    "question_th": "แคปไหนต่ำที่สุดที่มีสโมสร/จังหวัดของออสเปรย์ และวันเกิด (อายุ) คือวันที่ 19 กันยายน 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_en": "What is the average attendance of the game where the home team was the Blues?",
    "question_th": "ผู้เข้าชมโดยเฉลี่ยในเกมที่เจ้าบ้านคือเดอะบลูส์คือเท่าไร?",
    "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_en": "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?",
    "question_th": "8.23 กรัม (127 กรัม) ใดคือน้ำหนักสูงสุดที่มีน้ำหนักกระสุนกรัม (เกรน) 8x64 มม. s และความจุเคส (%) น้อยกว่า 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_en": "What is the Position of the Level 3 winner from Saint Kitts and Nevis?",
    "question_th": "ตำแหน่งของผู้ชนะระดับ 3 จากเซนต์คิตส์และเนวิสคืออะไร?",
    "context": "CREATE TABLE table_name_51 (position VARCHAR, level VARCHAR, nationality VARCHAR)"
  },
  {
    "answer": "SELECT MIN(goals) FROM table_name_95 WHERE level > 5",
    "question_en": "What Goals with a Level of 5 or greater is the lowest?",
    "question_th": "เป้าหมายใดที่มีระดับ 5 หรือมากกว่านั้นต่ำที่สุด?",
    "context": "CREATE TABLE table_name_95 (goals INTEGER, level INTEGER)"
  },
  {
    "answer": "SELECT position FROM table_name_23 WHERE goals = 18 AND level = 5",
    "question_en": "What is the Position of the winner with 18 Goals and Level of 5?",
    "question_th": "ตำแหน่งผู้ชนะที่มี 18 ประตูและระดับ 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_en": "Which University students and adults have minimum diameter of Sakigawa for female gender?",
    "question_th": "นักศึกษามหาวิทยาลัยและผู้ใหญ่คนใดที่มีเส้นผ่านศูนย์กลางขั้นต่ำของ Sakigawa สำหรับเพศหญิง?",
    "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_en": "Which junior high school has male and female genders?",
    "question_th": "มัธยมต้นไหนมีชายและหญิงคะ?",
    "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_en": "Which gender is associated with University students and adults of 25mm?",
    "question_th": "เพศใดที่เกี่ยวข้องกับนักศึกษามหาวิทยาลัยและผู้ใหญ่ที่มีความสูง 25 มม.?",
    "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_en": "Which junior high school has university students and adults of 26mm?",
    "question_th": "โรงเรียนมัธยมต้นไหนมีนักศึกษามหาวิทยาลัยและผู้ใหญ่สูง 26 มม.?",
    "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_en": "What value for university students and adult goes with male gender for minimum weight?",
    "question_th": "ค่าน้ำหนักขั้นต่ำสำหรับนักศึกษามหาวิทยาลัยและผู้ใหญ่ที่คำนึงถึงเพศชายคืออะไร?",
    "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_en": "What metro vincity has the venue that opened in 1999?",
    "question_th": "เมืองเมโทรใดมีสถานที่เปิดในปี 1999?",
    "context": "CREATE TABLE table_name_84 (metro_vincity VARCHAR, opened VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(capacity) FROM table_name_15 WHERE opened = \"1999\"",
    "question_en": "What is the total capacity of venues that opened in 1999?",
    "question_th": "ความจุรวมของสถานที่ซึ่งเปิดในปี 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_en": "What date has aus by 382 runs as the result?",
    "question_th": "ผลลัพธ์ของ aus by 382 จะรันเมื่อใด",
    "context": "CREATE TABLE table_name_25 (date VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_2 WHERE result = \"eng by 10 runs\"",
    "question_en": "What venue has eng by 10 runs as the result?",
    "question_th": "สนามใดมีคะแนนเต็ม 10 รอบ?",
    "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_en": "What date has george giffen as the home captain, and sydney cricket ground as the venue?",
    "question_th": "George Giffen เป็นกัปตันทีมเหย้า และสนามคริกเก็ตซิดนีย์เป็นสถานที่จัดวันไหน",
    "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_en": "Gold of 0, and a Bronze smaller than 0 and what is the sum of the silver?",
    "question_th": "ทองคำเป็น 0 และทองแดงที่น้อยกว่า 0 แล้วเงินจะรวมกันเป็นเท่าใด",
    "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_en": "Gold of 0, and a Total larger than 0, and a Silver larger than 1 and what is the highest bronze?",
    "question_th": "ทองคำเป็น 0 และผลรวมมากกว่า 0 และเงินมากกว่า 1 และอะไรคือทองแดงที่สูงที่สุด?",
    "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_en": "Gold larger than 0, and a Bronze larger than 1 includes what total number of silver?",
    "question_th": "ทองคำที่มีค่ามากกว่า 0 และทองแดงที่มีค่ามากกว่า 1 จะรวมเงินทั้งหมดเป็นจำนวนเท่าใด",
    "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_en": "Bronze of 0, and a Total of 1, and a Silver smaller than 1 what is the lowest gold?",
    "question_th": "บรอนซ์ 0 และรวม 1 และเงินน้อยกว่า 1 ทองคำต่ำสุดคืออะไร?",
    "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še\"",
    "question_en": "Which Third has a Lead of zanda bikše?",
    "question_th": "คนที่สามคนไหนมีผู้นำของ zanda bikše?",
    "context": "CREATE TABLE table_name_78 (third VARCHAR, lead VARCHAR)"
  },
  {
    "answer": "SELECT third FROM table_name_6 WHERE nation = \"hungary\"",
    "question_en": "Which Third has a Nation of hungary?",
    "question_th": "คนที่สามคนไหนมีชาติฮังการี?",
    "context": "CREATE TABLE table_name_6 (third VARCHAR, nation VARCHAR)"
  },
  {
    "answer": "SELECT second FROM table_name_16 WHERE nation = \"latvia\"",
    "question_en": "Which Second has a Nation of latvia?",
    "question_th": "วินาทีไหนมีชาติลัตเวีย?",
    "context": "CREATE TABLE table_name_16 (second VARCHAR, nation VARCHAR)"
  },
  {
    "answer": "SELECT lead FROM table_name_99 WHERE nation = \"croatia\"",
    "question_en": "Which Lead has a Nation of croatia?",
    "question_th": "Lead คนไหนมีสัญชาติโครเอเชีย?",
    "context": "CREATE TABLE table_name_99 (lead VARCHAR, nation VARCHAR)"
  },
  {
    "answer": "SELECT nation FROM table_name_73 WHERE lead = \"alexandra bruckmiller\"",
    "question_en": "Which Nation has a Lead of alexandra bruckmiller?",
    "question_th": "ประเทศใดมีผู้นำของ alexandra bruckmiller?",
    "context": "CREATE TABLE table_name_73 (nation VARCHAR, lead VARCHAR)"
  },
  {
    "answer": "SELECT skip FROM table_name_37 WHERE third = \"constanze hummelt\"",
    "question_en": "Which Skip has a Third of constanze hummelt?",
    "question_th": "Skip ใดมีคอนสแตนซ์ฮัมเมลต์หนึ่งในสาม?",
    "context": "CREATE TABLE table_name_37 (skip VARCHAR, third VARCHAR)"
  },
  {
    "answer": "SELECT spanish FROM table_name_83 WHERE english = \"garden\"",
    "question_en": "what is the spanish word for garden",
    "question_th": "ภาษาสเปนแปลว่าสวนอะไร",
    "context": "CREATE TABLE table_name_83 (spanish VARCHAR, english VARCHAR)"
  },
  {
    "answer": "SELECT italian FROM table_name_37 WHERE french = \"mer\"",
    "question_en": "what is the italian word for the french word 'mer'",
    "question_th": "คำภาษาอิตาลีสำหรับคำภาษาฝรั่งเศส 'mer' คืออะไร",
    "context": "CREATE TABLE table_name_37 (italian VARCHAR, french VARCHAR)"
  },
  {
    "answer": "SELECT english FROM table_name_61 WHERE italian = \"cavallo\"",
    "question_en": "what is the english word for cavallo",
    "question_th": "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_en": "What Player has more than 1 Touchdowns with 0 Extra Points and less than 50 Points?",
    "question_th": "ผู้เล่นคนใดที่มีมากกว่า 1 ทัชดาวน์โดยมี 0 แต้มพิเศษและน้อยกว่า 50 แต้ม?",
    "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_en": "What Player has less than 10 Touchdowns and 0 Extra points and more than 5 Points?",
    "question_th": "ผู้เล่นคนใดที่มีทัชดาวน์น้อยกว่า 10 แต้ม และแต้มพิเศษ 0 แต้ม และมากกว่า 5 แต้ม?",
    "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_en": "How many Extra Points were scored by the Player who had 5 Points and less than 1 Touchdowns?",
    "question_th": "ผู้เล่นที่มี 5 แต้มและน้อยกว่า 1 ทัชดาวน์ได้คะแนนพิเศษกี่แต้ม?",
    "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_en": "Name the least year for european indoor championships result of 3rd",
    "question_th": "ตั้งชื่อปีน้อยที่สุดสำหรับผลการแข่งขันชิงแชมป์ในร่มยุโรปอันดับที่ 3",
    "context": "CREATE TABLE table_name_86 (year INTEGER, tournament VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT played FROM table_name_8 WHERE points = \"51\"",
    "question_en": "What is the played value with 51 points?",
    "question_th": "มูลค่าการเล่น 51 แต้มเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_8 (played VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT tries_for FROM table_name_99 WHERE club = \"nelson rfc\"",
    "question_en": "How many tries for Nelson RFC?",
    "question_th": "พยายามให้ 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_en": "What is the losing bonus with 1 draw and 13 losses?",
    "question_th": "โบนัสการแพ้ 1 เสมอ 13 แพ้คืออะไร?",
    "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_en": "How many tries when 22 are played with 1 draw and a try bonus of 13?",
    "question_th": "มีกี่ครั้งที่เล่นเมื่อเล่น 22 ครั้งโดยเสมอ 1 ครั้งและโบนัสลอง 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_en": "How many points were scored against with a losing bonus of 1 for Blaenavon RFC?",
    "question_th": "มีกี่แต้มที่ทำแต้มได้พร้อมโบนัสแพ้ 1 สำหรับเบลนาวอน อาร์เอฟซี?",
    "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_en": "Who is the opponent of the submission (triangle choke) method of submission?",
    "question_th": "ฝ่ายตรงข้ามของวิธีการยื่น (โช้คสามเหลี่ยม) คือใคร?",
    "context": "CREATE TABLE table_name_41 (opponent VARCHAR, method VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_53 WHERE date = \"october 31, 1979\"",
    "question_en": "What Competition had a game on October 31, 1979?",
    "question_th": "การแข่งขันใดมีเกมในวันที่ 31 ตุลาคม พ.ศ. 2522",
    "context": "CREATE TABLE table_name_53 (competition VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_97 WHERE brazil_scorers = \"palhinha\"",
    "question_en": "On what Date was Palhinha Brazil Scorers?",
    "question_th": "ปาลฮินญ่า บราซิลเป็นผู้ทำประตูวันไหน?",
    "context": "CREATE TABLE table_name_97 (date VARCHAR, brazil_scorers VARCHAR)"
  },
  {
    "answer": "SELECT brazil_scorers FROM table_name_93 WHERE score = \"1-1\"",
    "question_en": "What Brazil scorers have a 1-1 Score?",
    "question_th": "ผู้ทำประตูบราซิลคนไหนมีสกอร์ 1-1?",
    "context": "CREATE TABLE table_name_93 (brazil_scorers VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT brazil_scorers FROM table_name_35 WHERE score = \"2-1\"",
    "question_en": "What Brazil scorers have a 2-1 Score?",
    "question_th": "ผู้ทำประตูบราซิลคนใดมีสกอร์ 2-1?",
    "context": "CREATE TABLE table_name_35 (brazil_scorers VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_76 WHERE score = \"1-2\"",
    "question_en": "What Competition's Score was 1-2?",
    "question_th": "สกอร์การแข่งขันอะไรคือ 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_en": "Which Points have an Opponent of calgary flames, and a January larger than 22?",
    "question_th": "คะแนนใดมีฝ่ายตรงข้ามของเปลวไฟคัลและเดือนมกราคมมากกว่า 22?",
    "context": "CREATE TABLE table_name_90 (points INTEGER, opponent VARCHAR, january VARCHAR)"
  },
  {
    "answer": "SELECT SUM(points) FROM table_name_36 WHERE record = \"21–20–6\"",
    "question_en": "Which Points have a Record of 21–20–6?",
    "question_th": "แต้มใดมีสถิติ 21–20–6",
    "context": "CREATE TABLE table_name_36 (points INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT AVG(january) FROM table_name_2 WHERE game = 50",
    "question_en": "Which January has a Game of 50?",
    "question_th": "เดือนมกราคมใดที่มีเกม 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_en": "Which Record has an Opponent of pittsburgh pirates, and a Date of may 5?",
    "question_th": "บันทึกใดมีฝ่ายตรงข้ามกับโจรสลัดพิตต์สเบิร์ก และวันที่ 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_en": "Which Attendance has an Opponent of pittsburgh pirates, and a Date of may 5?",
    "question_th": "ผู้เข้าร่วมคนใดมีฝ่ายตรงข้ามของโจรสลัดพิตต์สเบิร์ก และวันที่ 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_en": "Which Attendance is the highest one that has a Record of 15-28?",
    "question_th": "ผู้เข้าร่วมคนใดที่มีสถิติสูงสุด 15-28 คน?",
    "context": "CREATE TABLE table_name_24 (attendance INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_86 WHERE loss = \"jeriome robertson\"",
    "question_en": "What is the date of the match where Jeriome Robertson lost?",
    "question_th": "แมตช์ที่เจอริโอม โรเบิร์ตสัน แพ้คือวันไหน?",
    "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_en": "What is the score of the match with a save postponed rescheduled for June 24?",
    "question_th": "สกอร์ของแมตช์เซฟเลื่อนกำหนดเป็นวันที่ 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_en": "What is the date of the match with Brother Elephants as the opponent and a save of ||4,117?",
    "question_th": "แมตช์วันที่เท่าไหร่ โดยมี พี่ช้าง เป็นคู่ต่อสู้ และเซฟได้ ||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_en": "What is the least round number for Jon Olinger, who was picked before pick # 24?",
    "question_th": "หมายเลขรอบน้อยที่สุดของ Jon Olinger ที่ถูกเลือกก่อนหมายเลข 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_en": "Before round 7, what is the greatest Pick # for a player that plays defensive tackle?",
    "question_th": "ก่อนรอบที่ 7 อะไรคือ Pick # ที่ดีที่สุดสำหรับผู้เล่นที่เล่นแนวรับ?",
    "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_en": "What was the record on december 8 when the boston bruins visited?",
    "question_th": "บันทึกเมื่อวันที่ 8 ธันวาคมที่บอสตันบรูอินส์มาเยือนเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_49 (record VARCHAR, visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_39 WHERE date = \"november 3\"",
    "question_en": "what was the score on november 3?",
    "question_th": "คะแนนในวันที่ 3 พฤศจิกายนเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_39 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_29 WHERE date = \"november 17\"",
    "question_en": "who visited on november 17?",
    "question_th": "ใครไปวันที่ 17 พฤศจิกายนบ้างคะ?",
    "context": "CREATE TABLE table_name_29 (visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_96 WHERE years = \"1974\"",
    "question_en": "What is the name of the head coach of 1974?",
    "question_th": "เฮดโค้ชปี 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_en": "What is the average number of seasons for Terri Drake who lost less than 9?",
    "question_th": "จำนวนฤดูกาลโดยเฉลี่ยของ Terri Drake ที่แพ้น้อยกว่า 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_en": "What is the lowest number of seasons that the head coach of 1982 had with larger than 9 losses?",
    "question_th": "จำนวนฤดูกาลต่ำสุดที่เฮดโค้ชปี 1982 ทำได้โดยแพ้มากกว่า 9 นัดคือเท่าใด",
    "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_en": "Which webcast was in Spanish contemporary on xhnoe.com?",
    "question_th": "เว็บคาสต์ใดเป็นภาษาสเปนร่วมสมัยบน 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_en": "What is the highest frequency from uncionfeypoder.com?",
    "question_th": "ความถี่สูงสุดจาก 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_en": "What is the format for Digital 94.9?",
    "question_th": "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_en": "What is the population for Deed number of 21352021?",
    "question_th": "จำนวนประชากรสำหรับโฉนดเลขที่ 21352021 คือเท่าใด",
    "context": "CREATE TABLE table_name_51 (population VARCHAR, deed_number VARCHAR)"
  },
  {
    "answer": "SELECT AVG(area__km²_) FROM table_name_30 WHERE excised_from = \"shire of cook\" AND population < 463 AND name_of_community = \"wujal wujal (bloomfield river)\"",
    "question_en": "What is the average Area (km²) that shows Excised from shire of cook and a Population smaller than 463 for the community of wujal wujal (bloomfield river)?",
    "question_th": "พื้นที่เฉลี่ย (กม. ²) ที่แสดงการตัดออกจากไชร์คุกและประชากรที่มีขนาดเล็กกว่า 463 สำหรับชุมชนวูจาล วูจาล (แม่น้ำบลูมฟิลด์) คืออะไร?",
    "context": "CREATE TABLE table_name_30 (area__km²_ 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_en": "What was the deed number with a population of more than 869 in the woorabinda community?",
    "question_th": "โฉนดที่มีประชากรมากกว่า 869 คนในชุมชนวูรบินดาคือเท่าไร?",
    "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²_ = 1115.4",
    "question_en": "What is the smallest population with an Area (km²) of 1115.4?",
    "question_th": "ประชากรที่เล็กที่สุดโดยมีพื้นที่ (กม.²) คือ 1115.4 คือเท่าใด",
    "context": "CREATE TABLE table_name_72 (population INTEGER, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT MAX(area__km²_) FROM table_name_29 WHERE deed_number = \"21352022\" AND population > 184",
    "question_en": "What is the largest Area (km²) for Deed number of 21352022 with a Population of more than 184?",
    "question_th": "พื้นที่ที่ใหญ่ที่สุด (กม. ²) สำหรับโฉนดหมายเลข 21352022 ที่มีประชากรมากกว่า 184 คือเท่าใด",
    "context": "CREATE TABLE table_name_29 (area__km²_ INTEGER, deed_number VARCHAR, population VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_84 WHERE goal < 4 AND date = \"16 october 2012\"",
    "question_en": "What is the result of the match on 16 October 2012 with less than 4 goals?",
    "question_th": "ผลการแข่งขันวันที่ 16 ตุลาคม 2555 มีน้อยกว่า 4 ประตูเป็นอย่างไรบ้าง?",
    "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_en": "Which Opposition has a Year smaller than 1977, and a City of manchester?",
    "question_th": "ฝ่ายค้านใดมีปีที่เล็กกว่าปี 1977 และเมืองแมนเชสเตอร์?",
    "context": "CREATE TABLE table_name_53 (opposition VARCHAR, year VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT MIN(score) FROM table_name_75 WHERE year = 1868",
    "question_en": "Which Score is the lowest one that has a Year of 1868?",
    "question_th": "คะแนนใดต่ำสุดที่มีปี พ.ศ. 2411?",
    "context": "CREATE TABLE table_name_75 (score INTEGER, year VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_97 WHERE year > 1868 AND opposition = \"derbyshire\"",
    "question_en": "Which Venue has a Year larger than 1868, and an Opposition of derbyshire?",
    "question_th": "สถานที่ใดมีหนึ่งปีมากกว่าปี 1868 และฝ่ายค้านของดาร์บีเชียร์?",
    "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_en": "Which City has a Score smaller than 30, and a Venue of aigburth?",
    "question_th": "เมืองใดมีคะแนนน้อยกว่า 30 และสถานที่จัดงานของ Aigburth?",
    "context": "CREATE TABLE table_name_85 (city VARCHAR, score VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_7 WHERE height = \"188cm\"",
    "question_en": "What is the Position of the player with a Height off 188cm?",
    "question_th": "ตำแหน่งผู้เล่นที่มีส่วนสูงเกิน 188 ซม. คือตำแหน่งใด",
    "context": "CREATE TABLE table_name_7 (position VARCHAR, height VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_31 WHERE name = \"alexander wronski\"",
    "question_en": "What is Alexander Wronski's Position?",
    "question_th": "ตำแหน่งของ Alexander Wronski คืออะไร?",
    "context": "CREATE TABLE table_name_31 (position VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_35 WHERE name = \"senyi n'diaye\"",
    "question_en": "What is Senyi N'Diaye's Position?",
    "question_th": "ตำแหน่งของ Senyi N'Diaye คืออะไร?",
    "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_en": "What was the date of the friendly competition with a score of 4-0?",
    "question_th": "การแข่งขันกระชับมิตรด้วยสกอร์ 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_en": "Where did the competition take place at on August 3, 2005 with a score of 5-0?",
    "question_th": "การแข่งขันจัดขึ้นที่ไหนเมื่อวันที่ 3 สิงหาคม พ.ศ. 2548 ด้วยสกอร์ 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_en": "What was the result of the 2007 gulf cup of nations?",
    "question_th": "ผลการแข่งขันกัลฟ์คัพออฟเนชั่นส์ปี 2007 เป็นอย่างไร",
    "context": "CREATE TABLE table_name_39 (result VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_95 WHERE score = \"4-0\"",
    "question_en": "What was the result of the competition that had a score of 4-0?",
    "question_th": "ผลการแข่งขันที่มีสกอร์ 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_en": "What is the English title for season 6?",
    "question_th": "ชื่อภาษาอังกฤษของซีซั่น 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_en": "What is the highest season wth a Win of 1 and a Position that is 8th?",
    "question_th": "ฤดูกาลสูงสุดที่ชนะ 1 และอันดับที่ 8 คืออะไร?",
    "context": "CREATE TABLE table_name_3 (season INTEGER, wins VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(races) FROM table_name_70 WHERE poles > 0",
    "question_en": "What is the total number of Races with a Pole that is larger than 0?",
    "question_th": "จำนวนการแข่งขันทั้งหมดที่มีเสาที่มากกว่า 0 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_70 (races VARCHAR, poles INTEGER)"
  },
  {
    "answer": "SELECT MIN(poles) FROM table_name_60 WHERE season > 2009",
    "question_en": "What is the lowest Poles with a Season that is larger than 2009?",
    "question_th": "เสาที่ต่ำที่สุดที่มีฤดูกาลที่ใหญ่กว่าปี 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–33\"",
    "question_en": "Which team has a location attendance of Air Canada Centre 19,800 with a record of 41–33?",
    "question_th": "ทีมใดมีผู้เข้าร่วมสถานที่ของ Air Canada Center 19,800 ด้วยสถิติ 41–33",
    "context": "CREATE TABLE table_name_53 (team VARCHAR, location_attendance VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT AVG(december) FROM table_name_38 WHERE record = \"21–8–4\" AND game > 33",
    "question_en": "Which December has a Record of 21–8–4, and a Game larger than 33?",
    "question_th": "ธันวาคมใดที่มีสถิติ 21–8–4 และเกมที่ใหญ่กว่า 33",
    "context": "CREATE TABLE table_name_38 (december INTEGER, record VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_96 WHERE score = \"4–5 ot\"",
    "question_en": "Which Opponent has a Score of 4–5 ot?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีคะแนน 4–5 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_en": "Which Game is the highest one that has an Opponent of new york islanders, and a December larger than 10?",
    "question_th": "เกมใดคือเกมที่สูงที่สุดที่มีฝ่ายตรงข้ามของชาวเกาะนิวยอร์ก และเดือนธันวาคมมากกว่า 10?",
    "context": "CREATE TABLE table_name_35 (game INTEGER, opponent VARCHAR, december VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_5 WHERE location = \"colorado\"",
    "question_en": "What tournament was located in Colorado?",
    "question_th": "การแข่งขันใดที่จัดขึ้นที่โคโลราโด?",
    "context": "CREATE TABLE table_name_5 (tournament VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_70 WHERE week = 9",
    "question_en": "On what date was the game in Week 9 played?",
    "question_th": "เกมในสัปดาห์ที่ 9 เล่นวันไหน?",
    "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_en": "What was the record of the game after Week 6 with an attendance larger than 52,560?",
    "question_th": "อะไรคือสถิติของเกมหลังสัปดาห์ที่ 6 โดยมีผู้เข้าร่วมมากกว่า 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_en": "What is the highest attendance rate at Milwaukee County Stadium?",
    "question_th": "อัตราการเข้าร่วมสูงสุดที่ 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_en": "What's Ontario's highest Ends Lost?",
    "question_th": "จุดจบสูงสุดของออนตาริโอคืออะไร?",
    "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_en": "What is the shot % with a 44+ Ends Lost, skip Cathy King, and smaller than 13 Black Ends?",
    "question_th": "% ช็อตที่แพ้ 44+ Ends, ข้าม Cathy King และน้อยกว่า 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_en": "What's the highest Ends Lost with a shot % greater than 77, 11 blank ends, 7 stolen ends, and more than 44 ends one?",
    "question_th": "อะไรคือจุดจบสูงสุดที่แพ้ด้วยการยิง % มากกว่า 77, 11 แต้มว่าง, 7 แต้มที่ถูกขโมย และมากกว่า 44 แต้มในหนึ่งแต้ม?",
    "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_en": "Which Segment C that has an Episode lower than 230, and a Segment A consisting of wax figures?",
    "question_th": "ส่วน C ใดที่มีตอนต่ำกว่า 230 และส่วน A ที่ประกอบด้วยหุ่นขี้ผึ้ง",
    "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_en": "Which Segment A has a Segment B of s awning?",
    "question_th": "Segment A ใดมีกันสาดส่วน B?",
    "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_en": "Which church had a Split off/Continuation in 1836?",
    "question_th": "คริสตจักรใดมีการแตกแยก/ต่อเนื่องในปี 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_en": "Which church was organized by George M. Hinkle?",
    "question_th": "โบสถ์ใดที่จัดโดย 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_en": "What was the Pure Church of Christ's Split off/ Continuation?",
    "question_th": "คริสตจักรอันบริสุทธิ์แห่งพระคริสต์แยกออก/ต่อเนื่องคืออะไร?",
    "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_en": "What was the Independent Church's Split off/ Continuation?",
    "question_th": "อะไรคือการแยกส่วน/การดำเนินต่อไปของคริสตจักรอิสระ?",
    "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_en": "Who organized Alston Church?",
    "question_th": "ใครเป็นผู้จัดตั้งโบสถ์อัลสตัน?",
    "context": "CREATE TABLE table_name_68 (organized_by VARCHAR, church_name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_68 WHERE headquarters = \"the netherlands\"",
    "question_en": "what is the name of the netherlands head quarters",
    "question_th": "สำนักงานใหญ่ของเนเธอร์แลนด์ชื่ออะไร",
    "context": "CREATE TABLE table_name_68 (name VARCHAR, headquarters VARCHAR)"
  },
  {
    "answer": "SELECT rider FROM table_name_10 WHERE rank = 10",
    "question_en": "what person was in rank 10",
    "question_th": "คนไหนอยู่ในอันดับ 10",
    "context": "CREATE TABLE table_name_10 (rider VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_40 WHERE entries = 210",
    "question_en": "Which driver has 210 as entries?",
    "question_th": "ไดรเวอร์ใดมี 210 เป็นรายการ?",
    "context": "CREATE TABLE table_name_40 (driver VARCHAR, entries VARCHAR)"
  },
  {
    "answer": "SELECT seasons FROM table_name_24 WHERE driver = \"fernando alonso\"",
    "question_en": "Which seasons have fernando alonso as the driver?",
    "question_th": "ฤดูกาลใดที่มีเฟอร์นันโด อลอนโซ่เป็นคนขับ?",
    "context": "CREATE TABLE table_name_24 (seasons VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_name_4 WHERE goals = 0",
    "question_en": "What club had 0 goals?",
    "question_th": "สโมสรใดมี 0 ประตู?",
    "context": "CREATE TABLE table_name_4 (club VARCHAR, goals VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_name_40 WHERE goals > 0 AND season = \"2011\"",
    "question_en": "What club had over 0 goals in 2011?",
    "question_th": "สโมสรใดยิงได้มากกว่า 0 ประตูในปี 2554?",
    "context": "CREATE TABLE table_name_40 (club VARCHAR, goals VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_27 WHERE make = \"dodge\"",
    "question_en": "What team drove a Dodge vehicle?",
    "question_th": "ทีมใดขับรถ Dodge?",
    "context": "CREATE TABLE table_name_27 (team VARCHAR, make VARCHAR)"
  },
  {
    "answer": "SELECT pos FROM table_name_31 WHERE driver = \"stacy compton\"",
    "question_en": "What was Stacy Compton's position?",
    "question_th": "ตำแหน่งของ Stacy Compton คืออะไร?",
    "context": "CREATE TABLE table_name_31 (pos VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT AVG(pos) FROM table_name_82 WHERE car__number = 59",
    "question_en": "What was the average position of car number 59?",
    "question_th": "ตำแหน่งเฉลี่ยของรถหมายเลข 59 คือเท่าไร?",
    "context": "CREATE TABLE table_name_82 (pos INTEGER, car__number VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_51 WHERE date = \"april 25\"",
    "question_en": "How much was the loss of April 25?",
    "question_th": "วันที่ 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_en": "What is the average total with less than 8 bronze, 3 silver, and a Rank smaller than 2?",
    "question_th": "ผลรวมโดยเฉลี่ยที่มีน้อยกว่า 8 เหรียญทองแดง, 3 เหรียญเงิน และอันดับน้อยกว่า 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_en": "What is the average Total with a Rank greater than 1, and a Bronze larger than 8?",
    "question_th": "ผลรวมเฉลี่ยที่มีอันดับมากกว่า 1 และเหรียญทองแดงมากกว่า 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_en": "What is the smallest silver from Vietnam?",
    "question_th": "เงินที่เล็กที่สุดจากเวียดนามคืออะไร?",
    "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_en": "What is the largest silver from Malaysia with a Total smaller than 23?",
    "question_th": "เงินที่ใหญ่ที่สุดจากมาเลเซียโดยมีค่ารวมน้อยกว่า 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_en": "What is the largest bronze with a Rank of 2, and a Gold smaller than 8?",
    "question_th": "เหรียญทองแดงที่ใหญ่ที่สุดที่มีอันดับ 2 และทองที่เล็กกว่า 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_en": "How many ranks have a Bronze smaller than 8, and a Total smaller than 7, and a Gold smaller than 1?",
    "question_th": "มีกี่อันดับที่มีเหรียญทองแดงที่น้อยกว่า 8 และคะแนนรวมน้อยกว่า 7 และทองที่น้อยกว่า 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ódzkie\"",
    "question_en": "Voivodeship or city of nowogródzkie has what capital?",
    "question_th": "วอยโวเดชิพหรือเมือง nowogródzkie มีเมืองหลวงเท่าใด?",
    "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ść nad bugiem\"",
    "question_en": "Capital of brześć nad bugiem has what area (1930) in 1000skm?",
    "question_th": "เมืองหลวงของ brzeć nad bugiem มีพื้นที่ใด (1930) ใน 1,000skm?",
    "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ść nad bugiem\"",
    "question_en": "Capital of brześć nad bugiem has what population (1931) in 1,000s?",
    "question_th": "เมืองหลวงของ brzeć nad bugiem มีประชากรเท่าใด (1931) ใน 1,000 คน",
    "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_en": "Which Poles has a Wins larger than 0, and a Podiums smaller than 17?",
    "question_th": "เสาใดมีชัยชนะมากกว่า 0 และโพเดียมน้อยกว่า 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_en": "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?",
    "question_th": "ชาวโปแลนด์คนใดที่มีรอบเร็วที่สุดที่ 0 และการแข่งขันที่ 17 และชัยชนะที่มากกว่า 0 และโพเดียมที่เล็กกว่า 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_en": "How many Fastest Laps have  Poles of 4, and Races larger than 178?",
    "question_th": "มีรอบที่เร็วที่สุดกี่รอบที่มีเสา 4 และรอบการแข่งขันที่ใหญ่กว่า 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_en": "Which the Fastest Lap has a Season of 2009 and Poles smaller than 0?",
    "question_th": "รอบที่เร็วที่สุดใดที่มีฤดูกาลปี 2009 และโปแลนด์น้อยกว่า 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_en": "Which the Fastest Laps that have  Poles of 0, and a Season of 2002, and a Podiums smaller than 0?",
    "question_th": "รอบที่เร็วที่สุดที่มีเสาเป็น 0 และฤดูกาลปี 2002 และโพเดียมที่เล็กกว่า 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_en": "What Variant has a Launch site that is white sands?",
    "question_th": "รุ่นใดมีจุดปล่อยที่เป็นทรายสีขาว",
    "context": "CREATE TABLE table_name_68 (variant VARCHAR, launch_site VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_85 WHERE year = 1990",
    "question_en": "what was the score in 1990",
    "question_th": "คะแนนในปี 1990 คืออะไร",
    "context": "CREATE TABLE table_name_85 (score VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT AVG(rank) FROM table_name_40 WHERE year = 1950",
    "question_en": "In 1950 what is the average rank?",
    "question_th": "ในปี 1950 อันดับเฉลี่ยอยู่ที่เท่าไร?",
    "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_en": "What is the building's name that is 617 / 188 in height and ranked less than 6?",
    "question_th": "อาคารที่มีความสูง 617/188 และอันดับต่ำกว่า 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_en": "What is the number of rounds that took place for the fight that lasted 6:21?",
    "question_th": "การชกที่กินเวลา 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_en": "What is the average year of the most recent appearance of the Boston Crusaders, who had their first appearance after 1976?",
    "question_th": "ปีเฉลี่ยของการปรากฏตัวครั้งล่าสุดของ Boston Crusaders ซึ่งปรากฏตัวครั้งแรกหลังปี 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_en": "What is the year of most recent appearance of the Suncoast sound, who had more than 7 finals appearances?",
    "question_th": "ปรากฏล่าสุดของ Suncoast Sound ซึ่งเข้าชิงเกิน 7 ครั้งคือปีใด?",
    "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_en": "What is the year of the first appearance of the Black Knights, who had less than 1 finals appearances?",
    "question_th": "อัศวินดำปรากฏตัวครั้งแรกในรอบชิงไม่ถึง 1 ครั้งในปีใด?",
    "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_en": "What is the Pick # of the player with an Overall less than 203 from West Virginia?",
    "question_th": "ตัวเลือก # ของผู้เล่นที่มีค่ารวมน้อยกว่า 203 จากเวสต์เวอร์จิเนียคืออะไร?",
    "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_en": "In what Round was the draft pick from Florida with an Overall less than 166?",
    "question_th": "ดราฟต์จากฟลอริดามีคะแนนรวมน้อยกว่า 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_en": "What is the highest number of silver when there is 1 bronze and less than 4 golds?",
    "question_th": "จำนวนเงินสูงสุดเมื่อมี 1 เหรียญทองแดงและน้อยกว่า 4 เหรียญทองคือเท่าใด",
    "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_en": "How many bronze medals are there when there are fewer than 3 silver medals and 7 medals total?",
    "question_th": "หากมีจำนวนเหรียญเงินไม่ถึง 3 เหรียญ รวมทั้งหมด 7 เหรียญ จะมีเหรียญทองแดงได้กี่เหรียญ?",
    "context": "CREATE TABLE table_name_69 (bronze VARCHAR, silver VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_73 WHERE rank = 3",
    "question_en": "What team has rank 3?",
    "question_th": "ทีมไหนอยู่อันดับที่ 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_en": "Which Playing For has a # 100 larger than 36, and a Score of 122?",
    "question_th": "การเล่นใดที่มีหมายเลข 100 มากกว่า 36 และคะแนน 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_en": "Which # 100 has a Season of 1991, and an Against of surrey?",
    "question_th": "หมายเลข 100 ใดมีฤดูกาลปี 1991 และรายการ 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_en": "Which sum of # 100 has a Season of 1990, and an Against of warwickshire?",
    "question_th": "ผลรวมของ # 100 ใดที่มีฤดูกาลปี 1990 และ 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_en": "Which Against has a Season of 1987/88, and a # 100 larger than 13, and a Score of 139?",
    "question_th": "ซึ่งต่อต้านมีฤดูกาล 1987/88 และ # 100 มากกว่า 13 และคะแนน 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_en": "What is the highest earnings for the golfer who has more than 37 wins?",
    "question_th": "รายได้สูงสุดสำหรับนักกอล์ฟที่ชนะมากกว่า 37 ครั้งคืออะไร?",
    "context": "CREATE TABLE table_name_90 (earnings___ INTEGER, wins INTEGER)"
  },
  {
    "answer": "SELECT webcast FROM table_name_2 WHERE format = \"tejano\" AND callsign = \"kbdr\"",
    "question_en": "What Tejano webcast has a callsign of KBDR?",
    "question_th": "เว็บคาสต์ของ Tejano ใดมีสัญญาณเรียกขานเป็น 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_en": "What's the highest frequency of the KBDR callsign?",
    "question_th": "ความถี่สูงสุดของสัญญาณเรียก KBDR คือเท่าใด",
    "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_en": "What's the website for the Listen Live webcast on the 99.3 frequency?",
    "question_th": "เว็บไซต์สำหรับเว็บแคสต์ Listen Live บนความถี่ 99.3 คืออะไร",
    "context": "CREATE TABLE table_name_81 (website VARCHAR, webcast VARCHAR, frequency VARCHAR)"
  },
  {
    "answer": "SELECT webcast FROM table_name_46 WHERE website = \"digital1073.com\"",
    "question_en": "Which Webcast has the digital1073.com website?",
    "question_th": "Webcast ไหนมีเว็บ digital1073.com บ้างคะ?",
    "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 = \"–11\"",
    "question_en": "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 –11?",
    "question_th": "วันที่ใดมีทัวร์นาเมนต์ของ at&t pebble beach national pro-am และมาร์จิ้นของชัยชนะ 1 สโตรก และพาร์ถึง –11",
    "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_en": "Which Tournament has a Margin of victory of 1 stroke, and a Date of oct 7, 1990?",
    "question_th": "ทัวร์นาเมนต์ใดที่มีส่วนต่างของชัยชนะ 1 จังหวะ และวันที่ 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_en": "Which Date has a Winning score of 69-68-68-70=275?",
    "question_th": "วันไหนมีคะแนนชนะ 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_en": "Which To par has a Winning score of 64-68-66-63=261?",
    "question_th": "พาร์ใดมีคะแนนชนะ 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_en": "Which Winning score has a Tournament of walt disney world/oldsmobile classic?",
    "question_th": "คะแนนที่ชนะใดที่มีการแข่งขันของ 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_en": "What is the number in total of silver with a gold smaller than 0?",
    "question_th": "เงินที่มีทองน้อยกว่า 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_en": "What is the sum of gold with a rank that is 3 and a silver larger than 7?",
    "question_th": "ผลรวมของทองคำที่มีอันดับ 3 และเงินมากกว่า 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_en": "What is the average total with a nation of thailand with a gold smaller than 17?",
    "question_th": "ผลรวมเฉลี่ยของชาติไทยที่มีทองน้อยกว่า 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_en": "What is the average gold with a bronze smaller than 5 with a rank of 8?",
    "question_th": "ทองคำเฉลี่ยที่มีทองแดงน้อยกว่า 5 และมีอันดับ 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_en": "What is the earliest launch that was from Beijing?",
    "question_th": "การเปิดตัวครั้งแรกสุดที่มาจากปักกิ่งคืออะไร?",
    "context": "CREATE TABLE table_name_58 (launch INTEGER, origin VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_19 WHERE hanzi = \"深圳卫视\"",
    "question_en": "With a Hanzi of 深圳卫视, what is the name?",
    "question_th": "ฮันจือของ 深圳卫视 ชื่ออะไรคะ?",
    "context": "CREATE TABLE table_name_19 (name VARCHAR, hanzi VARCHAR)"
  },
  {
    "answer": "SELECT owner FROM table_name_30 WHERE launch > 1997 AND hanzi = \"厦门卫视\"",
    "question_en": "Who is the owner of  the object launched after 1997 and a Hanzi of 厦门卫视?",
    "question_th": "ใครเป็นเจ้าของวัตถุที่เปิดตัวหลังปี 1997 และ Hanzi จาก 厦门卫视?",
    "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_en": "What was the latest week that had a game on November 18, 1951?",
    "question_th": "สัปดาห์ล่าสุดที่มีเกมในวันที่ 18 พฤศจิกายน พ.ศ. 2494 คือสัปดาห์ใด",
    "context": "CREATE TABLE table_name_91 (week INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_18 WHERE date = \"november 11, 1951\"",
    "question_en": "Who was the opponent on November 11, 1951?",
    "question_th": "คู่ต่อสู้เมื่อวันที่ 11 พฤศจิกายน พ.ศ. 2494 คือใคร?",
    "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_en": "What was the total attendance with a result of W 31-21 before week 9?",
    "question_th": "ผู้เข้าร่วมทั้งหมดด้วยผล W 31-21 ก่อนสัปดาห์ที่ 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_en": "What lifespan has a majors greater than 1, and fuzzy zoeller as the name?",
    "question_th": "อายุขัยใดที่มีสาขาวิชาเอกมากกว่า 1 และมีชื่อ Zoeller แบบคลุมเครือ",
    "context": "CREATE TABLE table_name_37 (lifespan VARCHAR, majors VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_15 WHERE date = \"november 27\"",
    "question_en": "what visitor came on november 27",
    "question_th": "ผู้มาเยือนคนไหนมาเมื่อวันที่ 27 พฤศจิกายน",
    "context": "CREATE TABLE table_name_15 (visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_33 WHERE home = \"chicago\"",
    "question_en": "what team was the visitor in the chicago game",
    "question_th": "ทีมใดเป็นผู้มาเยือนในเกมชิคาโก",
    "context": "CREATE TABLE table_name_33 (visitor VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_40 WHERE home = \"chicago\"",
    "question_en": "what game was in chicago",
    "question_th": "เกมอะไรในชิคาโก",
    "context": "CREATE TABLE table_name_40 (record VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_24 WHERE date = \"may 10, 1999\"",
    "question_en": "Which player is associated with the date May 10, 1999?",
    "question_th": "ผู้เล่นคนไหนที่เกี่ยวข้องกับวันที่ 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_en": "Which player is associated with the date July 6, 1949?",
    "question_th": "ผู้เล่นคนไหนที่เกี่ยวข้องกับวันที่ 6 กรกฎาคม พ.ศ. 2492?",
    "context": "CREATE TABLE table_name_93 (player VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_40 WHERE player = \"wilbert robinson\"",
    "question_en": "Which date is associated with the player Wilbert Robinson?",
    "question_th": "วันไหนที่เกี่ยวข้องกับผู้เล่นวิลเบิร์ตโรบินสัน?",
    "context": "CREATE TABLE table_name_40 (date VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_63 WHERE date = \"june 14, 1969\"",
    "question_en": "Which player is associated with the date June 14, 1969?",
    "question_th": "ผู้เล่นคนไหนที่เกี่ยวข้องกับวันที่ 14 มิถุนายน 2512?",
    "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_en": "When the team is the Boston Red Sox and the is date July 27, 1946, what are the average RBIs?",
    "question_th": "เมื่อทีมเป็นทีมบอสตัน เรดซอกซ์ และวันที่ 27 กรกฎาคม พ.ศ. 2489 RBI โดยเฉลี่ยคือเท่าใด",
    "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_en": "What is the sum of games for a record of 33-13-3?",
    "question_th": "ผลรวมของเกมสำหรับสถิติ 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_en": "What was the sum of January values with a record of 27-12-3 for a game less than 42?",
    "question_th": "ผลรวมของค่าเดือนมกราคมที่มีสถิติ 27-12-3 สำหรับเกมที่น้อยกว่า 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_en": "What is the number in January for Philadelphia Flyers as opponents?",
    "question_th": "ตัวเลขในเดือนมกราคมของ Philadelphia Flyers ในฐานะคู่ต่อสู้คือเท่าไร?",
    "context": "CREATE TABLE table_name_30 (january VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT MIN(game) FROM table_name_48 WHERE record = \"32-12-3\"",
    "question_en": "What is the lowest game for a record of 32-12-3?",
    "question_th": "เกมที่ต่ำที่สุดสำหรับสถิติ 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_en": "What was the lowest attendance at the game with a record of 50-36?",
    "question_th": "ผู้เข้าร่วมน้อยที่สุดในเกมด้วยสถิติ 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_en": "Who was the opponent at the game that had a loss of Westbrook (2-2)?",
    "question_th": "คู่ต่อสู้ในเกมที่แพ้เวสต์บรูก (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_en": "How many copies of scouting for girls were sold?",
    "question_th": "ขายลูกเสือหญิงได้กี่ชุด?",
    "context": "CREATE TABLE table_name_31 (sales VARCHAR, album_title VARCHAR)"
  },
  {
    "answer": "SELECT agg FROM table_name_2 WHERE team_2 = \"dynamo moscow\"",
    "question_en": "What is the agg of team 2 Dynamo Moscow?",
    "question_th": "AGG ของทีม 2 ดินาโม มอสโก คืออะไร?",
    "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_en": "What is the 1st leg for team 2 Portol Drac Palma Mallorca?",
    "question_th": "เลกแรกของทีม 2 ปอร์โตล แดร็ก พัลมา มายอร์ก้า เลกแรกคืออะไร?",
    "context": "CREATE TABLE table_name_27 (team_2 VARCHAR)"
  },
  {
    "answer": "SELECT guest FROM table_name_16 WHERE venue = \"stadion prljanije\"",
    "question_en": "Who was the guest at Stadion Prljanije?",
    "question_th": "ใครเป็นแขกรับเชิญที่ Stadion Prljanije?",
    "context": "CREATE TABLE table_name_16 (guest VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT guest FROM table_name_98 WHERE attendance = 3",
    "question_en": "Who was the guest when attendance was 3?",
    "question_th": "ใครเป็นแขกเมื่อมาร่วมงาน 3 คน?",
    "context": "CREATE TABLE table_name_98 (guest VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_24 WHERE home = \"fk crvena stijena\"",
    "question_en": "In what venue did FK Crvena Stijena play at home?",
    "question_th": "FK Crvena Stijena เล่นในบ้านที่ไหน?",
    "context": "CREATE TABLE table_name_24 (venue VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT SUM(attendance) FROM table_name_80 WHERE score = \"2:0\"",
    "question_en": "What is the sum of attendance when the score was 2:0?",
    "question_th": "ผลรวมของผู้เข้าร่วมเมื่อคะแนนเป็น 2:0 เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_80 (attendance INTEGER, score VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_82 WHERE score = \"0:1\"",
    "question_en": "How many were in attendance with a score of 0:1?",
    "question_th": "มีผู้เข้าร่วมกี่คนด้วยคะแนน 0:1",
    "context": "CREATE TABLE table_name_82 (attendance VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_88 WHERE score = \"2:2\"",
    "question_en": "Who was at home when the score was 2:2?",
    "question_th": "ใครอยู่บ้านสกอร์ 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_en": "What Score has an Opponent of @ Blue Jays with a Date of June 7?",
    "question_th": "คู่ต่อสู้ของ @บลูเจย์ส มีสกอร์เท่าไหร่ในวันที่ 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_en": "What Time is listed for the Loss of Okajima (1-2)?",
    "question_th": "รายการเวลาใดสำหรับการพ่ายแพ้ของโอคาจิมะ (1-2)?",
    "context": "CREATE TABLE table_name_72 (time VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_56 WHERE date = \"june 2\"",
    "question_en": "What Loss is recorded for the Date June 2?",
    "question_th": "มีการบันทึกการสูญเสียอะไรบ้างสำหรับวันที่ 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_en": "What's the total number of Win % with an Appearances of 4, and Losses that's larger than 3?",
    "question_th": "จำนวน % ชนะทั้งหมดที่มีการปรากฏตัว 4 ครั้งและการแพ้ที่มากกว่า 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_en": "What's listed as the lowest Appearances with a Win % of 0.706?",
    "question_th": "รายการใดที่ลงเล่นน้อยที่สุดและมี % ชนะอยู่ที่ 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_en": "What's the lowest Losses recorded wiht a Wins of 1, Team of Dallas Stars, and a Win % that's smaller than 0.25?",
    "question_th": "อะไรคือความสูญเสียต่ำสุดที่บันทึกไว้ด้วยการชนะ 1 ทีม Dallas Stars และ % การชนะที่น้อยกว่า 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_en": "What district has benjamin eggleston for incumbent?",
    "question_th": "เขตใดมีเบนจามิน เอ็กเกิลสตันดำรงตำแหน่ง?",
    "context": "CREATE TABLE table_name_52 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_name_11 WHERE incumbent = \"tobias a. plants\"",
    "question_en": "Which party is tobias a. plants the incumbent?",
    "question_th": "ฝ่ายไหนคือโทเบียสก. เป็นผู้ปลูกฝังผู้ดำรงตำแหน่ง?",
    "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_en": "wWhich district has a retired republican hold with an incumbent of rufus p. spalding?",
    "question_th": "เขตใดมีพรรครีพับลิกันที่เกษียณแล้วและมีผู้ดำรงตำแหน่งรูฟัสพี สปอลดิง?",
    "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_en": "Which district has a retired republican hold and an incumbent of rufus p. spalding?",
    "question_th": "เขตใดที่มีการถือครองพรรครีพับลิกันที่เกษียณแล้วและดำรงตำแหน่งของรูฟัสพี สปอลดิง?",
    "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_en": "Which tournament had a 2012 of a and a 2011 of 2r?",
    "question_th": "ทัวร์นาเมนต์ใดที่มีปี 2012 ของ a และ 2011 ของ 2r?",
    "context": "CREATE TABLE table_name_25 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2009 FROM table_name_72 WHERE 2010 = \"wta premier 5 tournaments\"",
    "question_en": "Which 2009's 2010 featured the wta premier 5 tournaments?",
    "question_th": "ปี 2009 ปี 2010 รายการใดที่มีการแข่งขัน wta premier 5 ทัวร์นาเมนต์?",
    "context": "CREATE TABLE table_name_72 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_24 WHERE tournament = \"indian wells\"",
    "question_en": "Which 2011's tournament was Indian Wells?",
    "question_th": "การแข่งขันปี 2011 ใดคือ Indian Wells",
    "context": "CREATE TABLE table_name_24 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2010 FROM table_name_2 WHERE tournament = \"olympic games\"",
    "question_en": "Which 2010 stat featured the tournament of the Olympic Games?",
    "question_th": "สถิติใดในปี 2010 ที่เป็นจุดเด่นของการแข่งขันกีฬาโอลิมปิก",
    "context": "CREATE TABLE table_name_2 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_5 WHERE attendance = \"15,105\"",
    "question_en": "When did the Indians play a game with 15,105 people in attendance?",
    "question_th": "ชาวอินเดียเล่นเกมที่มีผู้เข้าร่วม 15,105 คนเมื่อใด",
    "context": "CREATE TABLE table_name_5 (date VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_89 WHERE date = \"april 23\"",
    "question_en": "Who did the Indians play on April 23?",
    "question_th": "ชาวอินเดียเล่นใครในวันที่ 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_en": "What is the lowest number of laps for Marco Simoncelli on a grid higher than 11?",
    "question_th": "จำนวนรอบต่ำสุดของ Marco Simoncelli บนกริดที่สูงกว่า 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_en": "Who is the rider who did less than 20 laps on a grid number greater than 23?",
    "question_th": "ใครคือนักบิดที่ทำรอบน้อยกว่า 20 รอบบนกริดที่มากกว่า 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_en": "What is the lowest grid number that had a rider with KTM as the manufacturer who did more than 20 laps?",
    "question_th": "หมายเลขกริดต่ำสุดที่มีผู้ขับขี่โดย KTM เป็นผู้ผลิตที่ทำมากกว่า 20 รอบคืออะไร?",
    "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_en": "What is the tournament on 22 October 2012?",
    "question_th": "การแข่งขันวันที่ 22 ตุลาคม 2555 คืออะไร?",
    "context": "CREATE TABLE table_name_46 (tournament VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_56 WHERE opponent = \"alena tarasova\"",
    "question_en": "What is the date of the tournament with Alena Tarasova as the opponent?",
    "question_th": "วันที่แข่งขันกับ Alena Tarasova เป็นคู่ต่อสู้คือเมื่อใด?",
    "context": "CREATE TABLE table_name_56 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT hereditary_peers FROM table_name_15 WHERE total = 1",
    "question_en": "Which Hereditary peers have a Total of 1?",
    "question_th": "เพื่อนร่วมงานทางพันธุกรรมคนไหนมีทั้งหมด 1?",
    "context": "CREATE TABLE table_name_15 (hereditary_peers VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(total) FROM table_name_17 WHERE hereditary_peers = \"–\" AND lords_spiritual = \"–\" AND life_peers = \"2\" AND affiliation = \"plaid cymru\"",
    "question_en": "Which Total has a Hereditary peer of –, and a Lords spiritual of –, and a Life peers of 2, and an Affiliation of plaid cymru?",
    "question_th": "Total คนไหนที่มีตระกูลทางพันธุกรรมเป็น – และมีจิตวิญญาณของลอร์ดเป็น – และกลุ่ม Life มี 2 คน และมีสังกัดของ 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_en": "Which Elector is hungarian?",
    "question_th": "ผู้มีสิทธิเลือกตั้งคนใดเป็นชาวฮังการี?",
    "context": "CREATE TABLE table_name_68 (elector VARCHAR, nationality VARCHAR)"
  },
  {
    "answer": "SELECT cardinalatial_title FROM table_name_77 WHERE elevator = \"pope eugenius iv\"",
    "question_en": "Which Cardinalatial Title has an Elevator of pope eugenius iv?",
    "question_th": "พระคาร์ดินัลตำแหน่งใดมีลิฟต์ของสมเด็จพระสันตะปาปายูจีเนียสที่ 4",
    "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_en": "Which Works number has a Number larger than 807, and a Type of 0-6-0, and a Date of 1920?",
    "question_th": "หมายเลข Works ใดที่มีหมายเลขมากกว่า 807 และประเภท 0-6-0 และวันที่ 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_en": "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?",
    "question_th": "ประเภทใดที่มีวันที่น้อยกว่าปี 1943 และผู้สร้าง Alco schenectady และหมายเลขที่มากกว่า 822 และหมายเลขผลงาน 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_en": "Which Date has a Builder of alco schenectady, and a Number larger than 835, and Works number of 56566?",
    "question_th": "วันที่ใดมีตัวสร้าง alco schenectady และหมายเลขมากกว่า 835 และหมายเลขผลงาน 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_en": "When was the Election of 1953?",
    "question_th": "การเลือกตั้งปี 2496 มีขึ้นเมื่อใด?",
    "context": "CREATE TABLE table_name_46 (date VARCHAR, election VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_78 WHERE votes = \"50,324\"",
    "question_en": "On what date were there 50,324 votes?",
    "question_th": "มีผู้โหวต 50,324 คน ในวันไหน?",
    "context": "CREATE TABLE table_name_78 (date VARCHAR, votes VARCHAR)"
  },
  {
    "answer": "SELECT votes FROM table_name_32 WHERE date = \"november 10\"",
    "question_en": "How many votes were there on November 10?",
    "question_th": "ในวันที่ 10 พฤศจิกายน มีผู้ลงคะแนนกี่คน?",
    "context": "CREATE TABLE table_name_32 (votes VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_47 WHERE record = \"79-48\"",
    "question_en": "What date has 79-48 as the record?",
    "question_th": "บันทึกมี 79-48 เป็นวันไหน?",
    "context": "CREATE TABLE table_name_47 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT AVG(attendance) FROM table_name_86 WHERE record = \"83-52\"",
    "question_en": "What is the average attendance that has 83-52 as the record?",
    "question_th": "จำนวนผู้เข้าร่วมเฉลี่ยที่มีสถิติ 83-52 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_86 (attendance INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT segment_d FROM table_name_60 WHERE segment_a = \"umbrellas\"",
    "question_en": "Name the segment D for umbrellas",
    "question_th": "ตั้งชื่อส่วน D สำหรับร่ม",
    "context": "CREATE TABLE table_name_60 (segment_d VARCHAR, segment_a VARCHAR)"
  },
  {
    "answer": "SELECT segment_a FROM table_name_89 WHERE netflix = \"s05e01\"",
    "question_en": "Name the segment A for netflix of s05e01",
    "question_th": "ตั้งชื่อกลุ่ม A สำหรับ netflix ของ 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_en": "Name the series ep for darts",
    "question_th": "ตั้งชื่อซีรีส์ ep สำหรับปาเป้า",
    "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_en": "Name the series ep for segment c of luxury cars (part 1)",
    "question_th": "ตั้งชื่อซีรี่ส์ EP สำหรับรถหรู Segment C (ตอนที่ 1)",
    "context": "CREATE TABLE table_name_63 (series_ep VARCHAR, segment_c VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_79 WHERE location = \"rossville\"",
    "question_en": "What school is located in rossville?",
    "question_th": "โรงเรียนอะไรตั้งอยู่ในรอสส์วิลล์?",
    "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_en": "How many people enrolled a the school with an IHSAA Class of a, and the trojans as their mascot?",
    "question_th": "มีกี่คนที่ลงทะเบียนโรงเรียนด้วย IHSAA Class of a และมีโทรจันเป็นตัวนำโชค",
    "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_en": "What IHSAA clas is the school with a county number of 12 clinton and the hornets as their mascot?",
    "question_th": "โรงเรียน IHSAA เป็นกลุ่มใดที่มีคลินตันจำนวน 12 คนและมีแตนเป็นตัวนำโชค",
    "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_en": "What is the score when a loss was listed with Lannan (4-8)?",
    "question_th": "เมื่อแพ้กับลานแนน (4-8) เสียคะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_48 (score VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_93 WHERE record = \"44-37\"",
    "question_en": "What was the date when the Twins had a record of 44-37?",
    "question_th": "วันที่เท่าไหร่ที่ Twins มีสถิติ 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_en": "Which Opponents in Final has a Date of september 16, 1990?",
    "question_th": "ฝ่ายตรงข้ามคนใดในรอบชิงชนะเลิศมีวันที่ 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_en": "Which Partner has a Date of june 18, 1989?",
    "question_th": "พันธมิตรรายใดมีวันที่ 18 มิถุนายน 2532",
    "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_en": "Which Opponents in Final has an Outcome of winner, and a Surface of hard, and a Date of april 17, 1994?",
    "question_th": "ฝ่ายตรงข้ามคนใดในรอบชิงชนะเลิศมีผลลัพธ์เป็นผู้ชนะ และมีพื้นผิวที่ยากลำบาก และมีวันที่ 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–5, 1–6 4–6\"",
    "question_en": "Which Opponents in Final has a Score in Final of 7–5, 1–6 4–6?",
    "question_th": "คู่ต่อสู้คนใดในรอบชิงชนะเลิศที่มีคะแนนในรอบชิงชนะเลิศ 7–5, 1–6 4–6?",
    "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–1, 6–2\"",
    "question_en": "Which Partner has a Score in Final of 6–1, 6–2?",
    "question_th": "พันธมิตรคนใดมีคะแนนในรอบชิงชนะเลิศ 6–1, 6–2?",
    "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_en": "What is the total Points for the Opponent of @ New Jersey Devils and a Game bigger than 7?",
    "question_th": "คะแนนรวมสำหรับฝ่ายตรงข้ามของ @ New Jersey Devils และเกมที่ใหญ่กว่า 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_en": "What was the time of the NJKF Titans Neo X event?",
    "question_th": "งาน NJKF Titans Neo X จัดขึ้นกี่โมง?",
    "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_en": "What was the record after the NJKF Magnam 16 event that lasted 2:06?",
    "question_th": "อะไรคือบันทึกหลังจากงาน NJKF Magnam 16 ที่กินเวลา 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_en": "Which opponent led to a 6-3 record?",
    "question_th": "คู่ต่อสู้คนไหนทำสถิติ 6-3?",
    "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_en": "How many Picks have a Round larger than 2, and a Name of lawrence sidbury, and an Overall smaller than 125?",
    "question_th": "มีกี่ตัวเลือกที่มีรอบที่มากกว่า 2 และมีชื่อของ Lawrence Sidbury และคะแนนโดยรวมน้อยกว่า 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_en": "Which Pick # is the highest one that has a Name of william middleton, and a Round larger than 5?",
    "question_th": "ตัวเลือก # ตัวใดคือตัวที่สูงที่สุดที่มีชื่อของวิลเลียม มิดเดิลตัน และรอบที่ใหญ่กว่า 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_en": "Which Overall is the lowest one that has a Position of offensive tackle?",
    "question_th": "โดยรวมแล้วตัวไหนมีตำแหน่งแท็คเกิ้ลที่ต่ำที่สุด?",
    "context": "CREATE TABLE table_name_33 (overall INTEGER, position VARCHAR)"
  },
  {
    "answer": "SELECT AVG(overall) FROM table_name_95 WHERE name = \"vance walker\"",
    "question_en": "Which Overall is the average one that has a Name of vance walker?",
    "question_th": "โดยรวมแล้วตัวไหนมี Name ของ 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_en": "Which Pick # is the highest one that has a Name of lawrence sidbury, and a Round smaller than 4?",
    "question_th": "ตัวเลือก # ตัวใดคือตัวที่สูงที่สุดที่มีชื่อของ Lawrence Sidbury และรอบที่เล็กกว่า 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_en": "What is the February number of the game played against the St. Louis Blues with a game number less than 58?",
    "question_th": "แมตช์ที่เล่นกับทีมเซนต์หลุยส์ บลูส์ ในเดือน ก.พ. มีจำนวนเกมน้อยกว่า 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_en": "Who is the opponent of the game that had a record of 24-26-4?",
    "question_th": "คู่ต่อสู้ของเกมที่มีสถิติ 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_en": "What is the February number of the game with the Vancouver Canucks as the opponent and a game number greater than 55?",
    "question_th": "หมายเลขเกมเดือนกุมภาพันธ์คือเท่าไรโดย Vancouver Canucks เป็นคู่ต่อสู้และหมายเลขเกมมากกว่า 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_en": "What nationality is Larry McMorran?",
    "question_th": "แลร์รี แมคมอร์แรนมีสัญชาติอะไร",
    "context": "CREATE TABLE table_name_59 (nationality VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_71 WHERE game = 17",
    "question_en": "what team scored 17",
    "question_th": "ทีมไหนได้ 17 คะแนน",
    "context": "CREATE TABLE table_name_71 (date VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_58 WHERE date = \"july 22\"",
    "question_en": "What was their record on July 22?",
    "question_th": "บันทึกของพวกเขาในวันที่ 22 กรกฎาคมคืออะไร?",
    "context": "CREATE TABLE table_name_58 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_17 WHERE record = \"46-39\"",
    "question_en": "On what date was their record 46-39?",
    "question_th": "บันทึกของพวกเขา 46-39 คือวันไหน?",
    "context": "CREATE TABLE table_name_17 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_1 WHERE date = \"october 20\"",
    "question_en": "What was the oilers record on October 20?",
    "question_th": "บันทึกของ oilers เมื่อวันที่ 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_en": "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?",
    "question_th": "อะไรคือสถิติของนักเก็บน้ำมันสำหรับเกมเมื่อวันที่ 27 พฤศจิกายนเมื่อนักเก็บน้ำมันของเอดมันตันเล่นในบ้านและชิคาโกแบล็กฮอวกส์เป็นทีมเยือน?",
    "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_en": "Name the lead with left bloc of 8.4%",
    "question_th": "ตั้งชื่อผู้นำด้วยบล็อกซ้าย 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_en": "Name the lead for institute of election results and social democratic of 31.7% 8 seats",
    "question_th": "ระบุชื่อผู้นำสถาบันผลการเลือกตั้งและสังคมประชาธิปไตย 31.7% 8 ที่นั่ง",
    "context": "CREATE TABLE table_name_95 (lead VARCHAR, institute VARCHAR, social_democratic VARCHAR)"
  },
  {
    "answer": "SELECT regionalliga_süd FROM table_name_13 WHERE season = \"1995-96\"",
    "question_en": "What is the Regionalliga Sud for 1995-96?",
    "question_th": "Regionalliga Sud ฤดูกาล 1995-96 คืออะไร?",
    "context": "CREATE TABLE table_name_13 (regionalliga_süd VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT regionalliga_nord - Ost FROM table_name_61 WHERE regionalliga_süd = \"spvgg unterhaching\"",
    "question_en": "What was the Regionalliga Nord-Ost for the team that had a Regionalliga Sud of SpVgg Unterhaching?",
    "question_th": "Regionalliga Nord-Ost สำหรับทีมที่มี Regionalliga Sud ของ SpVgg Unterhaching คืออะไร?",
    "context": "CREATE TABLE table_name_61 (regionalliga_nord VARCHAR, Ost VARCHAR, regionalliga_süd VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_68 WHERE regionalliga_süd = \"stuttgarter kickers\"",
    "question_en": "Which season had a Regionalliga Sud of Stuttgarter Kickers?",
    "question_th": "ฤดูกาลใดที่มี Regionalliga Sud ของ Stuttgarter Kickers?",
    "context": "CREATE TABLE table_name_68 (season VARCHAR, regionalliga_süd VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_name_4 WHERE incumbent = \"charles van wyck\"",
    "question_en": "What party is Charles Van Wyck part of?",
    "question_th": "Charles Van Wyck เป็นส่วนหนึ่งของพรรคใด",
    "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_en": "What district is James Humphrey from who was first elected in 1858 and was eventually defeated democratic gain?",
    "question_th": "เจมส์ ฮัมฟรีย์เป็นเขตใดที่ได้รับเลือกครั้งแรกในปี พ.ศ. 2401 และพ่ายแพ้ต่อระบอบประชาธิปไตยในที่สุด",
    "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_en": "What surface was the November 5, 1995 match played on?",
    "question_th": "นัดที่ 5 พฤศจิกายน พ.ศ. 2538 ลงเล่นบนพื้นผิวใด?",
    "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_en": "What date was the match played where Amy Frazier was the opponent?",
    "question_th": "แมตช์นี้เล่นวันไหนโดยที่ Amy Frazier เป็นคู่ต่อสู้?",
    "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_en": "What score was given at the August 17, 2005 match?",
    "question_th": "ให้คะแนนเท่าไรในการแข่งขันวันที่ 17 สิงหาคม พ.ศ. 2548",
    "context": "CREATE TABLE table_name_47 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_7 WHERE date = \"october 1, 2006\"",
    "question_en": "Which tournament was played on October 1, 2006?",
    "question_th": "ทัวร์นาเมนต์ใดที่เล่นในวันที่ 1 ตุลาคม พ.ศ. 2549?",
    "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_en": "What is the score of the match played on a hard surface with an opponent in the final of Elena Likhovtseva?",
    "question_th": "คะแนนของการแข่งขันที่เล่นบนพื้นผิวแข็งกับคู่ต่อสู้ในรอบสุดท้ายของ 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_en": "What was the team's record on july 18?",
    "question_th": "สถิติของทีมเมื่อวันที่ 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_en": "Which Conference Joined has a Previous Conference of northwestern, and a Mascot of oilers?",
    "question_th": "การประชุมใดที่เข้าร่วมมีการประชุมครั้งก่อนของภาคตะวันตกเฉียงเหนือและมีมาสคอตของ 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_en": "Which Year Left is the lowest one that has a School of calumet, and a Year Joined larger than 1993?",
    "question_th": "ปีที่เหลือเป็นปีต่ำสุดที่มี School of calumet และหนึ่งปีเข้าร่วมมากกว่าปี 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_en": "avg passengers in 2012 for 2009 more than 104.5 and 2010 less than 162.6 and 2011 less than 141.8 is what?",
    "question_th": "ผู้โดยสารเฉลี่ยในปี 2555 สำหรับปี 2552 มากกว่า 104.5 และ 2553 น้อยกว่า 162.6 และ 2554 น้อยกว่า 141.8 คืออะไร?",
    "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_en": "The lowest rank with 2011 less than 80.7 and 2012 less than 73.1 is what?",
    "question_th": "อันดับต่ำสุดโดยปี 2554 น้อยกว่า 80.7 และปี 2555 น้อยกว่า 73.1 คืออะไร?",
    "context": "CREATE TABLE table_name_82 (rank INTEGER)"
  },
  {
    "answer": "SELECT SUM(2009) FROM table_name_70 WHERE rank = 5 AND 2010 < 76.5",
    "question_en": "the sum of 2009 with rank of 5 and 2010 less than 76.5 is what?",
    "question_th": "ผลรวมปี 2552 ที่อันดับ 5 และปี 2553 น้อยกว่า 76.5 คืออะไร?",
    "context": "CREATE TABLE table_name_70 (rank VARCHAR)"
  },
  {
    "answer": "SELECT entered_office FROM table_name_45 WHERE throne_name = \"mohammad ali shah qajar\"",
    "question_en": "What was the Entered Office of the man with the throne name Mohammad Ali Shah Qajar?",
    "question_th": "ห้องทำงานของชายผู้มีบัลลังก์ชื่อ โมฮัมหมัด อาลี ชาห์ กาญาร์ คืออะไร?",
    "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_en": "What is listed for the Main Location(s) that has a % of National of 2.05%?",
    "question_th": "สิ่งที่ระบุไว้สำหรับที่ตั้งหลักที่มี % ของ National อยู่ที่ 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_en": "What's the Area with an Output (2007) of 12,332 T?",
    "question_th": "พื้นที่ที่มีเอาต์พุต (2550) เท่ากับ 12,332 ตันคืออะไร",
    "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_en": "What Main Location(s) has an Area of 19,800 HA?",
    "question_th": "ที่ตั้งหลักใดมีพื้นที่ 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–0–0\"",
    "question_en": "On what date was the record 4–0–0?",
    "question_th": "บันทึก 4–0–0 คือวันที่ใด?",
    "context": "CREATE TABLE table_name_81 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_2 WHERE home = \"toronto\"",
    "question_en": "what was the score in toronto",
    "question_th": "คะแนนในโตรอนโตเป็นเท่าไหร่",
    "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_en": "Which Record has an Event of tpf 5: stars and strikes?",
    "question_th": "บันทึกใดมีเหตุการณ์ tpf 5: ติดดาวและการนัดหยุดงาน",
    "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_en": "Which Opponent has an Event of king of the cage: shock and awe?",
    "question_th": "ฝ่ายตรงข้ามคนไหนมีเหตุการณ์ราชาแห่งกรง: ตกใจและตกตะลึง?",
    "context": "CREATE TABLE table_name_8 (opponent VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT method FROM table_name_99 WHERE record = \"16–7\"",
    "question_en": "Which Method has a Record of 16–7?",
    "question_th": "วิธีใดมีบันทึก 16–7",
    "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_en": "Which Round has a Method of decision (unanimous), and an Event of ufc 145?",
    "question_th": "รอบใดมีวิธีตัดสิน (เอกฉันท์) และรายการ 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–0\"",
    "question_en": "Which Event has a Round of 1, and a Record of 2–0?",
    "question_th": "เหตุการณ์ใดที่มีรอบ 1 และมีสถิติ 2–0",
    "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_en": "What is the general classification of Mapei-clas in stage 12?",
    "question_th": "การจำแนกประเภททั่วไปของ Mapei-clas ในระยะที่ 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_en": "Which winner has a P stage?",
    "question_th": "ผู้ชนะคนไหนมีเวที P?",
    "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_en": "Which stage corresponds to Banesto and Tony Rominger?",
    "question_th": "ขั้นตอนใดที่สอดคล้องกับ Banesto และ 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_en": "Type of primary, and a Call letters of kbjs has what format?",
    "question_th": "ประเภทหลัก และอักษรเรียกของ kbjs มีรูปแบบใด",
    "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_en": "Frequency (MHz) that has a Type of primary, and a Call letters of ktbb-fm has what total number?",
    "question_th": "ความถี่ (MHz) ที่มีประเภทหลัก และอักษรเรียกเข้าของ ktbb-fm มีทั้งหมดกี่จำนวน?",
    "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_en": "Type of primary, and a Call letters of kktx-fm has what average Frequency (MHz)?",
    "question_th": "ประเภทหลัก และอักษรเรียกของ kktx-fm มีความถี่เฉลี่ย (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_en": "Frequency (MHz) that has a Call letters of krmd-fm has what sum?",
    "question_th": "ความถี่ (MHz) ที่มีอักษรเรียกของ krmd-fm มีผลรวมเท่าใด?",
    "context": "CREATE TABLE table_name_99 (frequency__mhz_ INTEGER, call_letters VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_84 WHERE game = 1",
    "question_en": "What date has 1 for the game?",
    "question_th": "เกมมีวันที่ 1 อะไร?",
    "context": "CREATE TABLE table_name_84 (date VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_14 WHERE date = \"april 10\"",
    "question_en": "What opponent has april 10 as the date?",
    "question_th": "ฝ่ายตรงข้ามคนไหนที่มีวันที่ 10 เมษายนเป็นวันที่?",
    "context": "CREATE TABLE table_name_14 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_82 WHERE round > 6 AND position = \"d\"",
    "question_en": "What player has a round larger than 6 with a D position.",
    "question_th": "ผู้เล่นคนใดมีรอบที่ใหญ่กว่า 6 และมีตำแหน่ง D",
    "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_en": "What league is from the United States and a round smaller than 12.",
    "question_th": "ลีกอะไรมาจากอเมริกาและรอบเล็กกว่า 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_en": "What league has a 10 for round with Paul Cain?",
    "question_th": "ลีกไหนมี 10 รอบกับพอล เคน?",
    "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_en": "What league has a D position, a round smaller than 11 and is with Dennis Vial?",
    "question_th": "ลีกใดมีตำแหน่ง D รอบที่น้อยกว่า 11 และอยู่กับ 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_en": "What is the rank of the gatchaman of Jinpei?",
    "question_th": "Gatchaman แห่ง 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_en": "Who is the Japanese voice actor of the Battle of the Planets of Keyop?",
    "question_th": "ใครคือนักพากย์ชาวญี่ปุ่นใน 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_en": "What is the rank of the gatchaman Jinpei?",
    "question_th": "กัตชามาน จินเปยมียศอะไรคะ?",
    "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_en": "Who is the voice actor of the character with the Japanese voice actor Yoku Shioya?",
    "question_th": "ใครคือนักพากย์ของตัวละครกับนักพากย์ชาวญี่ปุ่น โยกุ ชิโอยะ?",
    "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_en": "What is the mecha with a condor bird uniform?",
    "question_th": "เมชากับชุดนกแร้งคืออะไร?",
    "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_en": "Who is the voice actor (harmony gold ova dub) of the character with a voice actor (adv TV/sentai ova dub) Kim Prause?",
    "question_th": "ใครคือนักพากย์ (พากย์เสียง Harmony Gold ova) ของตัวละครกับนักพากย์ (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_en": "What is the score of the tournament on 25 July 1994 with a clay surface and Patricia Tarabini as the partner?",
    "question_th": "สกอร์ของทัวร์นาเมนต์เมื่อวันที่ 25 ก.ค. 1994 โดยมี แพทริเซีย ทาราบินี เป็นคู่ครอง คือ ?",
    "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_en": "Who is the partner of the tournament on 6 July 1987?",
    "question_th": "คู่ครองของทัวร์นาเมนต์เมื่อวันที่ 6 กรกฎาคม พ.ศ. 2530 คือใคร?",
    "context": "CREATE TABLE table_name_12 (partner VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT partner FROM table_name_93 WHERE tournament = \"tampa\"",
    "question_en": "Who is the partner at the Tampa tournament?",
    "question_th": "ใครคือหุ้นส่วนในการแข่งขันแทมปา?",
    "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_en": "What is the tenure of the person with revenues of 60,000-->58,000 koku?",
    "question_th": "คนที่มีรายได้ 60,000-->58,000 โคคุ อยู่ในตำแหน่งอะไร?",
    "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_en": "What is the court rank of the person with a courtesy title of nagato-no-kami?",
    "question_th": "บุคคลที่มียศฐาบรรดาศักดิ์เป็นนางาโตะโนะคามิมียศอะไร?",
    "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_en": "What is the name of the person with a courtesy title of sanuki-no-kami/jiju?",
    "question_th": "บุคคลที่ได้รับฉายาว่า ซานุกิโนะคามิ/จิจู ชื่ออะไร?",
    "context": "CREATE TABLE table_name_32 (name VARCHAR, courtesy_title VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_58 WHERE record = \"39-14\"",
    "question_en": "what day was the score 39-14",
    "question_th": "คะแนน 39-14 วันไหน",
    "context": "CREATE TABLE table_name_58 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_85 WHERE affiliation = \"ucla\"",
    "question_en": "Which position did the drafted player affiliated with UCLA play?",
    "question_th": "ผู้เล่นร่างที่สังกัด UCLA เล่นตำแหน่งใด",
    "context": "CREATE TABLE table_name_85 (position VARCHAR, affiliation VARCHAR)"
  },
  {
    "answer": "SELECT mls_team FROM table_name_29 WHERE affiliation = \"university of california\"",
    "question_en": "Which MLS tea, drafted a player affilaited with the university of california?",
    "question_th": "ชา MLS ใดที่ร่างผู้เล่นที่เกี่ยวข้องกับมหาวิทยาลัยแคลิฟอร์เนีย",
    "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_en": "What rank does the person participating in American Civil war and indian wars?",
    "question_th": "บุคคลที่เข้าร่วมในสงครามกลางเมืองอเมริกาและสงครามอินเดียอยู่ในอันดับใด",
    "context": "CREATE TABLE table_name_65 (rank VARCHAR, active_service VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_10 WHERE tournament = \"the tour championship\"",
    "question_en": "When did the Tournament of the Tour Championship take place?",
    "question_th": "Tournament of the Tour Championship เกิดขึ้นเมื่อใด?",
    "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_en": "Name the average number of seasons for Prva HNL of 17",
    "question_th": "ตั้งชื่อจำนวนฤดูกาลโดยเฉลี่ยสำหรับ Prva HNL ที่ 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_en": "Name the least number of seasons in top division with position in 2012-13 of 001 1st",
    "question_th": "ระบุจำนวนฤดูกาลน้อยที่สุดในดิวิชั่นสูงสุดด้วยตำแหน่งในปี 2555-56 ของ 001 ที่ 1",
    "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_en": "Which first was born on 5 february 1979?",
    "question_th": "ซึ่งเกิดครั้งแรกในวันที่ 5 กุมภาพันธ์ พ.ศ. 2522",
    "context": "CREATE TABLE table_name_30 (first VARCHAR, dob VARCHAR)"
  },
  {
    "answer": "SELECT first FROM table_name_62 WHERE position = \"c\" AND bats = \"l\"",
    "question_en": "Which First has a Position of c, and Bats of l?",
    "question_th": "ข้อใดมีตำแหน่งเป็น c และค้างคาวเป็น l ก่อน",
    "context": "CREATE TABLE table_name_62 (first VARCHAR, position VARCHAR, bats VARCHAR)"
  },
  {
    "answer": "SELECT first FROM table_name_42 WHERE surname = \"searle\"",
    "question_en": "Which First has a Surname of searle?",
    "question_th": "ซึ่งอันดับแรกมีนามสกุลของเซิร์ล?",
    "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_en": "Which Surname has Throws of r, and a Position of p, and a DOB of 26 april 1989?",
    "question_th": "นามสกุลใดที่มีการโยนของ r และตำแหน่งของ p และวันเกิดของวันที่ 26 เมษายน 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_en": "Which DOB has a First of david, and Throws of l, and a Position of if?",
    "question_th": "DOB ใดที่มีเลขตัวแรกของดาวิด และเลขขว้างของ l และมีตำแหน่งเป็น 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_en": "How many throws does PJ have?",
    "question_th": "PJ โยนได้กี่ครั้ง?",
    "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_en": "Televoting of 9, and a Jury smaller than 10 had what sum of draw?",
    "question_th": "การโหวตทางโทรทัศน์จำนวน 9 คน และคณะลูกขุนที่มีจำนวนน้อยกว่า 10 คน จะมีการเสมอกันเท่าใด",
    "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_en": "Jury larger than 6, and a Artist of zhenya rasskazova, and a Draw larger than 9 had what sum of points?",
    "question_th": "คณะลูกขุนที่มีขนาดใหญ่กว่า 6 และศิลปินของ zhenya rasskazova และการจับฉลากที่ใหญ่กว่า 9 ได้คะแนนรวมเท่าใด",
    "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_en": "Televoting smaller than 2 had what highest draw?",
    "question_th": "การเทเลโวตที่น้อยกว่า 2 มีค่าสูงสุดเท่าไร?",
    "context": "CREATE TABLE table_name_25 (draw INTEGER, televoting INTEGER)"
  },
  {
    "answer": "SELECT opponent FROM table_name_1 WHERE loss = \"hoeft (19-14)\"",
    "question_en": "Who was the opponent when Hoeft (19-14) took the loss?",
    "question_th": "คู่ต่อสู้คือใครเมื่อฮูฟต์ (19-14) พ่ายแพ้?",
    "context": "CREATE TABLE table_name_1 (opponent VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_82 WHERE record = \"80-63\"",
    "question_en": "What was the score of the game that led to an 80-63 record?",
    "question_th": "เกมนี้ทำสถิติ 80-63 ไปได้กี่แต้ม?",
    "context": "CREATE TABLE table_name_82 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_62 WHERE loss = \"brown (9-5)\"",
    "question_en": "Who was the opponent when Brown (9-5) took the loss?",
    "question_th": "คู่ต่อสู้คือใครเมื่อบราวน์ (9-5) พ่ายแพ้?",
    "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_en": "What was Performer 1's name who performed with Sandi Toksvig as Performer 3 and Mike McShane as Performer 4?",
    "question_th": "นักแสดงคนที่ 1 ที่แสดงร่วมกับ Sandi Toksvig ในฐานะนักแสดงคนที่ 3 และ Mike McShane ในฐานะนักแสดงคนที่ 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_en": "What was Performer 4's name when Performer 3 was Ryan Stiles on episode 14?",
    "question_th": "นักแสดงคนที่ 4 ชื่ออะไรเมื่อนักแสดงคนที่ 3 คือ Ryan Stiles ในตอนที่ 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_en": "How many points have @ new york islanders as the opponent, with a game greater than 35?",
    "question_th": "คู่ต่อสู้มี @ ชาวเกาะนิวยอร์กกี่คะแนน โดยเกมมากกว่า 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_en": "What record has a december less than 6, points less than 38, and pittsburgh penguins as the opponent?",
    "question_th": "สถิติไหนมีสกอร์น้อยกว่า 6 ธันวาคม แต้มน้อยกว่า 38 และมีพิตส์เบิร์ก เพนกวิน เป็นคู่ต่อสู้?",
    "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_en": "When the county is Carroll what is the lowest population?",
    "question_th": "เมื่อเคาน์ตีคือแคร์โรลล์ จำนวนประชากรต่ำสุดคือเท่าใด",
    "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_en": "When the Per capita income is $29,194, what is the average population?",
    "question_th": "เมื่อรายได้ต่อหัวเท่ากับ 29,194 ดอลลาร์ จำนวนประชากรโดยเฉลี่ยคือเท่าใด",
    "context": "CREATE TABLE table_name_70 (population INTEGER, per_capita_income VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_19 WHERE class = \"250\"",
    "question_en": "Which year has a railway class of 250?",
    "question_th": "ปีใดมีชั้นรถไฟ 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_en": "Which works number has a class of 15th and year of 1940?",
    "question_th": "หมายเลขผลงานใดมีชั้นปีที่ 15 และปี พ.ศ. 2483",
    "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_en": "Which builder has a railway of Rhodesia Railways?",
    "question_th": "ผู้สร้างรายใดมีทางรถไฟของ 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_en": "Which railway has a class of 250 and year 1936?",
    "question_th": "ทางรถไฟสายใดมีชั้น 250 และปี 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_en": "which week had an attendance of 53,677?",
    "question_th": "สัปดาห์ไหนมีผู้เข้าร่วม 53,677 คน?",
    "context": "CREATE TABLE table_name_43 (week VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_21 WHERE attendance = \"bye\"",
    "question_en": "which team had a bye week?",
    "question_th": "ทีมไหนได้ลาก่อน?",
    "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_en": "Which Date has Points smaller than 85 and a Game # of 74?",
    "question_th": "วันที่ใดมีคะแนนน้อยกว่า 85 และเกม # 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_en": "What is listed for Vistor that has a Game # that is smaller than 67 and has a Home listed as Buffalo?",
    "question_th": "รายการใดสำหรับผู้เข้าชมที่มีหมายเลขเกมที่เล็กกว่า 67 และมีหน้าแรกแสดงเป็นบัฟฟาโล",
    "context": "CREATE TABLE table_name_20 (visitor VARCHAR, game__number VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_48 WHERE home = \"calgary\"",
    "question_en": "What Date has a Home listed as Calgary?",
    "question_th": "วันที่ใดมีบ้านอยู่ในรายการคาลการี",
    "context": "CREATE TABLE table_name_48 (date VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_65 WHERE record = \"35-28-6\"",
    "question_en": "What Score has a Record of 35-28-6?",
    "question_th": "คะแนนอะไรมีสถิติ 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_en": "What Date has Points smaller than 80, Home of Los Angeles, and a Visitor of Pittsburgh?",
    "question_th": "วันที่ใดมีคะแนนน้อยกว่า 80 บ้านของลอสแองเจลิสและผู้มาเยือนพิตต์สเบิร์ก",
    "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_en": "Which Week 10 Nov 2 has a Week 14 Nov 30 of penn state (11-1)?",
    "question_th": "สัปดาห์ที่ 10 พ.ย. 2 มีสัปดาห์ที่ 14 พ.ย. 30 ของสถานะเพนน์ (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_en": "Which Week 7 Oct 12 has a Week 11 Nov 9 of week 11 nov 9?",
    "question_th": "สัปดาห์ที่ 7 ตุลาคม 55 มีสัปดาห์ที่ 11 พฤศจิกายน 9 ของสัปดาห์ที่ 11 พฤศจิกายน 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_en": "Which Week 7 Oct 12 has a Week 9 Oct 26 of tulsa (7-0)?",
    "question_th": "สัปดาห์ที่ 7 ต.ค. 55 มีสัปดาห์ที่ 9 วันที่ 26 ต.ค. ของทัลซา (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_en": "Which Week 10 Nov 2 has a Week 9 Oct 26 of lsu (5-2)?",
    "question_th": "สัปดาห์ที่ 10 2 พ.ย. มีสัปดาห์ที่ 9 26 ต.ค. ของ 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_en": "Which Week 14 Nov 30 has a Week 6 Oct 5 of michigan state (5-1)?",
    "question_th": "สัปดาห์ที่ 14 พ.ย. 30 มีสัปดาห์ที่ 6 วันที่ 5 ต.ค. ของรัฐมิชิแกน (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_en": "Which Week 13 Nov 23 has a Week 6 Oct 5 of oklahoma state (5-0)?",
    "question_th": "สัปดาห์ที่ 13 พ.ย. 23 มีสัปดาห์ที่ 6 วันที่ 5 ตุลาคม ของรัฐโอคลาโฮมา (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·m (lb·ft) @ 3000 rpm\"",
    "question_en": "What was the displacement having a torque of n·m (lb·ft) @ 3000 rpm?",
    "question_th": "การกระจัดที่มีแรงบิด n·m (lb·ft) @ 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_en": "Which engine had a 48kw (65 ps) @ 5600 rpm power?",
    "question_th": "เครื่องยนต์ใดมีกำลัง 48kw (65 แรงม้า) ที่ 5,600 รอบต่อนาที",
    "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_en": "Which model had a power of 66kw (90 ps) @ 6250 rpm?",
    "question_th": "รุ่นไหนมีกำลัง 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_en": "Which of the engines has a displacement of 1,585 cc, with a model number of 90i?",
    "question_th": "เครื่องยนต์ตัวไหนมีความจุ 1,585 ซีซี. หมายเลขรุ่น 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_en": "Who was the opponent at memorial stadium?",
    "question_th": "คู่ต่อสู้ที่สนามอนุสรณ์คือใคร?",
    "context": "CREATE TABLE table_name_25 (opponent VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT height FROM table_name_43 WHERE player = \"mike bibby\"",
    "question_en": "Which Height has a Player of mike bibby?",
    "question_th": "ความสูงไหนมีนักเตะ ไมค์ บิ๊บบี้ บ้าง?",
    "context": "CREATE TABLE table_name_43 (height VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT pos FROM table_name_11 WHERE first_round < 10",
    "question_en": "Which Pos has a First round smaller than 10?",
    "question_th": "Pos ใดที่มีรอบแรกน้อยกว่า 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_en": "How many points have a loss less than 5, and 0 for draws?",
    "question_th": "มีกี่แต้มที่เสียน้อยกว่า 5 และเสมอ 0?",
    "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_en": "What is the lowest points that has w-2 (w-league) as the league, and draws greater than 2?",
    "question_th": "แต้มต่ำสุดที่มี w-2 (w-league) เป็นลีกและเสมอมากกว่า 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_en": "What is the lowest wins that has a year prior to 1999, with draws greater than 1, and points greater than 17?",
    "question_th": "ชัยชนะต่ำสุดที่มีหนึ่งปีก่อนปี 1999 โดยเสมอมากกว่า 1 และแต้มมากกว่า 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_en": "How many losses have a year later than 2001?",
    "question_th": "หนึ่งปีหลังจากปี 2544 มีการสูญเสียกี่ครั้ง?",
    "context": "CREATE TABLE table_name_52 (losses INTEGER, year INTEGER)"
  },
  {
    "answer": "SELECT county FROM table_name_80 WHERE name = \"himco dump\"",
    "question_en": "Which county includes Himco Dump?",
    "question_th": "มณฑลใดรวม 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_en": "Drawn of 0, and a Games larger than 5 has what amount of highest points?",
    "question_th": "เสมอ 0 และเกมที่มากกว่า 5 มีคะแนนสูงสุดจำนวนเท่าใด",
    "context": "CREATE TABLE table_name_62 (points INTEGER, drawn VARCHAR, games VARCHAR)"
  },
  {
    "answer": "SELECT MAX(drawn) FROM table_name_75 WHERE lost > 4",
    "question_en": "Lost larger than 4 is what highest drawn?",
    "question_th": "แพ้มากกว่า 4 คือแต้มสูงสุดที่ออกมา?",
    "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_en": "Points difference of 18 - 33, and a Points smaller than 4 is the total of what sum of games?",
    "question_th": "คะแนนต่างกัน 18 - 33 และคะแนนน้อยกว่า 4 เป็นผลรวมของเกมจำนวนเท่าใด",
    "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_en": "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?",
    "question_th": "ผู้ที่ได้รับเลือกคนแรกคือกลุ่มสูงสุดที่มีพรรคเดม และเขตที่ใหญ่กว่า 24 คน และมีเมืองหลัก/เมืองของเบอร์ลิน",
    "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_en": "What record has pittsburgh as the visitor, and November 23 as the date?",
    "question_th": "บันทึกใดที่มีพิตต์สเบิร์กเป็นผู้มาเยือน และวันที่ 23 พฤศจิกายนเป็นวันที่?",
    "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_en": "What record has points less than 16, and detroit as the home?",
    "question_th": "สถิติไหนมีแต้มน้อยกว่า 16 และดีทรอยต์เป็นเจ้าบ้าน?",
    "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_en": "How many points have pittsburgh as the visitor, and philadelphia as the home?",
    "question_th": "พิตต์สเบิร์กเป็นผู้มาเยือน และฟิลาเดลเฟียเป็นเจ้าบ้านมีกี่คะแนน",
    "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_en": "What points have pittsburgh as the home, and November 29 as the date?",
    "question_th": "แต้มไหนที่พิตส์เบิร์กเป็นเจ้าบ้าน และวันที่ 29 พฤศจิกายนเป็นวันที่?",
    "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_en": "What was the attendance at the game on December 11, 1966?",
    "question_th": "การเข้าร่วมในเกมวันที่ 11 ธันวาคม พ.ศ. 2509 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_66 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(week) FROM table_name_83 WHERE result = \"l 14-3\"",
    "question_en": "What was the latest week with a result of l 14-3?",
    "question_th": "สัปดาห์ล่าสุดกับผล 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_en": "What was the total number of weeks with a date of bye?",
    "question_th": "จำนวนสัปดาห์ทั้งหมดที่มีวันบายคือเท่าไร?",
    "context": "CREATE TABLE table_name_14 (week VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_20 WHERE result = \"w 26-20\"",
    "question_en": "Who was the opponent at the game with a result of W 26-20?",
    "question_th": "คู่ต่อสู้ในเกมด้วยผล W 26-20 คือใคร?",
    "context": "CREATE TABLE table_name_20 (opponent VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_89 WHERE week = 2",
    "question_en": "What was the attendance at the week 2 game?",
    "question_th": "ผู้เข้าร่วมในเกมสัปดาห์ที่ 2 เป็นอย่างไรบ้าง?",
    "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_en": "Before 1981, how many Points did Team Suzuki have with less than 0 Wins?",
    "question_th": "ก่อนปี 1981 ทีม Suzuki มีคะแนนเท่าไหร่และชนะน้อยกว่า 0 ครั้ง",
    "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_en": "After 1986, how many Wins did Lucky Strike Yamaha Team with less than 6 Points have?",
    "question_th": "หลังจากปี 1986 Lucky Strike Yamaha Team ที่มีคะแนนน้อยกว่า 6 แต้มชนะได้กี่ครั้ง",
    "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_en": "In what Year did the RG500 Machine have more than 17 Points?",
    "question_th": "เครื่อง RG500 มีคะแนนมากกว่า 17 คะแนนในปีใด",
    "context": "CREATE TABLE table_name_84 (year VARCHAR, machine VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT MIN(wins) FROM table_name_19 WHERE year = 1988",
    "question_en": "What were the least Wins in 1988?",
    "question_th": "ชัยชนะน้อยที่สุดในปี 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_en": "How many points did the Flyers have against the New York Islanders with a February bigger than 12, and a game smaller than 60?",
    "question_th": "Flyers มีคะแนนกับ New York Islanders ได้กี่แต้มโดยเดือนกุมภาพันธ์มากกว่า 12 และเกมที่น้อยกว่า 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_en": "What is the location of the tournament on Feb 10?",
    "question_th": "สถานที่จัดการแข่งขันวันที่ 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_en": "What is the date of the Kmart greater greensboro open in North Carolina?",
    "question_th": "Kmart Greater Greensboro เปิดใน 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_en": "Who is the winner of the H.E.B. Texas open?",
    "question_th": "ใครคือผู้ชนะของ HEB 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_en": "What is the average weight of Jeremy Case, who plays guard?",
    "question_th": "น้ำหนักเฉลี่ยของ Jeremy Case ที่เล่นเป็นการ์ดคือเท่าไร?",
    "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_en": "What is the position of the player from New York City, NY?",
    "question_th": "ตำแหน่งผู้เล่นจากนิวยอร์กซิตี้ รัฐนิวยอร์คคืออะไร?",
    "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_en": "What year is guard Mario Chalmers?",
    "question_th": "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_en": "What was japan's score?",
    "question_th": "ญี่ปุ่นได้คะแนนเท่าไหร่?",
    "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_en": "Which Venue has a Country of england, and a Champion of alison nicholas?",
    "question_th": "สถานที่ใดมีประเทศอังกฤษ และมีแชมป์ของอลิสัน นิโคลัส",
    "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_en": "Which Country has a Year larger than 1978, and a Score of 295, and a Venue of lindrick golf club?",
    "question_th": "ประเทศใดมีปีมากกว่าปี 1978 และมีคะแนน 295 และสถานที่ของสโมสรกอล์ฟลินดริก",
    "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_en": "what player scored 9/1",
    "question_th": "ผู้เล่นคนไหนทำคะแนนได้ 9/1",
    "context": "CREATE TABLE table_name_35 (jockey VARCHAR, odds VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_69 WHERE score = \"6–4, 7–5\"",
    "question_en": "On what date was the score 6–4, 7–5?",
    "question_th": "คะแนน 6–4, 7–5 คือวันไหน?",
    "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_en": "Who was the opponent with an outcome runner-up on November 15, 2010?",
    "question_th": "คู่ต่อสู้ที่มีผลการแข่งขันรองชนะเลิศในวันที่ 15 พฤศจิกายน พ.ศ. 2553 คือใคร?",
    "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_en": "What was the outcome for Rik de Voest as opponent?",
    "question_th": "ผลลัพธ์ของ Rik de Voest ในฐานะคู่ต่อสู้คืออะไร?",
    "context": "CREATE TABLE table_name_98 (outcome VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_55 WHERE date = \"october 24, 2005\"",
    "question_en": "What was the score on October 24, 2005?",
    "question_th": "คะแนนเมื่อวันที่ 24 ตุลาคม 2548 เป็นเท่าใด",
    "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_en": "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?",
    "question_th": "ผลรวมของแชมป์ระดับรัฐที่มีแชมป์ MRC มากกว่า 9 สมัย, แชมป์ร่วมมากกว่า 4 สมัย และสถิติ 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_en": "What was the co-champions value when solo was 3 and MRC Championships is greater than 3?",
    "question_th": "มูลค่าของแชมป์ร่วมเมื่อโซโลคือ 3 และ MRC Championships มากกว่า 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_en": "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?",
    "question_th": "ค่าสูงสุดสำหรับแชมป์ร่วมเมื่อ PCT น้อยกว่า 0.786 และ MRC Championships คือ 6 ด้วยสถิติ 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_en": "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?",
    "question_th": "มูลค่าเฉลี่ยของ MRC Championships ที่มากกว่า 0.685 PCT. มากกว่า 1 สำหรับแชมป์ร่วม และน้อยกว่า 5 โซโลคือเท่าใด",
    "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_en": "What is the average Pct value when state champions is less than 1, MRC Championships  is 10, and co-champions are greater than 4?",
    "question_th": "ค่า Pct เฉลี่ยจะเป็นเท่าใดเมื่อแชมป์ประจำรัฐน้อยกว่า 1, MRC Championships คือ 10 และแชมป์ร่วมมากกว่า 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_en": "Street Address of 980 n. michigan avenue is what name?",
    "question_th": "ที่อยู่ถนน 980 น. มิชิแกนอเวนิวชื่ออะไร",
    "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_en": "Name of 900 north michigan, and a Year smaller than 1989 involves what lowest floors?",
    "question_th": "ชื่อของ 900 นอร์ทมิชิแกน และปีที่น้อยกว่าปี 1989 เกี่ยวข้องกับชั้นล่างสุดใด",
    "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_en": "Street Address of 401 n. wabash avenue involves what name?",
    "question_th": "ที่อยู่ 401 น. ถนน wabash เกี่ยวข้องกับชื่ออะไร?",
    "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_en": "Pick larger than 229, and a Round smaller than 12, and a Position of defensive back is what school/club team?",
    "question_th": "เลือกที่มีขนาดใหญ่กว่า 229 และรอบที่เล็กกว่า 12 และตำแหน่งกองหลังคือทีมโรงเรียน/สโมสรใด",
    "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_en": "Player of mike o'quinn, and a Round smaller than 15 had what lowest pick?",
    "question_th": "ผู้เล่นของ mike o'quinn และรอบที่น้อยกว่า 15 มีสิทธิ์เลือกต่ำสุดคือข้อใด",
    "context": "CREATE TABLE table_name_30 (pick INTEGER, player VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT SUM(pick) FROM table_name_24 WHERE round = 11",
    "question_en": "Round of 11 had waht sum of pick?",
    "question_th": "รอบ 11 ทีม สามารถเลือกได้เท่าไหร่?",
    "context": "CREATE TABLE table_name_24 (pick INTEGER, round VARCHAR)"
  },
  {
    "answer": "SELECT division FROM table_name_26 WHERE position = \"6th\"",
    "question_en": "Which Division has a Position of 6th?",
    "question_th": "ดิวิชั่นใดมีตำแหน่งที่ 6?",
    "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_en": "Which Season has a Level of tier 4, and a Position of 11th?",
    "question_th": "ฤดูกาลใดมีระดับระดับ 4 และตำแหน่งที่ 11?",
    "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_en": "Which Season has a Level of tier 2 and a Position of 1st?",
    "question_th": "ฤดูกาลใดมีระดับ 2 และตำแหน่งที่ 1?",
    "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_en": "Which Position  has a Level of tier 3 and a Season smaller than 1999?",
    "question_th": "ตำแหน่งใดมีระดับระดับ 3 และฤดูกาลที่เล็กกว่าปี 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_en": "Which Median family income has a Median household income of $43,125?",
    "question_th": "รายได้เฉลี่ยของครอบครัวใดที่มีรายได้ครัวเรือนเฉลี่ยอยู่ที่ 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_en": "How many people have a Median household income of $37,759?",
    "question_th": "มีกี่คนที่มีรายได้เฉลี่ยของครัวเรือนอยู่ที่ $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_en": "What week had an Attendance smaller than 21,097?",
    "question_th": "สัปดาห์ใดที่มีผู้เข้าร่วมน้อยกว่า 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_en": "What Week had an Attendance smaller than 22,333?",
    "question_th": "สัปดาห์ใดที่มีผู้เข้าร่วมน้อยกว่า 22,333 คน?",
    "context": "CREATE TABLE table_name_12 (week VARCHAR, attendance INTEGER)"
  },
  {
    "answer": "SELECT party FROM table_name_1 WHERE municipality = \"tampere\"",
    "question_en": "Municipality of tampere involves which party?",
    "question_th": "เทศบาลตัมเปเรเกี่ยวข้องกับฝ่ายใด?",
    "context": "CREATE TABLE table_name_1 (party VARCHAR, municipality VARCHAR)"
  },
  {
    "answer": "SELECT votes FROM table_name_45 WHERE quotient = \"97 350,333\"",
    "question_en": "Quotient of 97 350,333 has how many votes?",
    "question_th": "ผลหาร 97 350,333 มีกี่คะแนน?",
    "context": "CREATE TABLE table_name_45 (votes VARCHAR, quotient VARCHAR)"
  },
  {
    "answer": "SELECT municipality FROM table_name_88 WHERE candidate = \"kimmo kiljunen\"",
    "question_en": "Candidate of kimmo kiljunen belongs to which municipality?",
    "question_th": "ผู้สมัคร Kimmo Kiljunen เป็นคนของเทศบาลใด?",
    "context": "CREATE TABLE table_name_88 (municipality VARCHAR, candidate VARCHAR)"
  },
  {
    "answer": "SELECT quotient FROM table_name_10 WHERE votes = \"27,391\"",
    "question_en": "Votes of 27,391 has which quotient?",
    "question_th": "โหวต 27,391 คน มีผลหารไหน?",
    "context": "CREATE TABLE table_name_10 (quotient VARCHAR, votes VARCHAR)"
  },
  {
    "answer": "SELECT votes FROM table_name_41 WHERE candidate = \"riikka manner\"",
    "question_en": "Candidate of riikka manner has how many votes?",
    "question_th": "ผู้สมัครลักษณะริอิกะมีกี่คะแนนเสียง",
    "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_en": "Which Opposition has a Year smaller than 1911, and a Venue of old trafford?",
    "question_th": "ฝ่ายค้านคนใดมีปีที่เล็กกว่าปี 1911 และสถานที่จัดงานโอลด์แทรฟฟอร์ด?",
    "context": "CREATE TABLE table_name_51 (opposition VARCHAR, year VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_60 WHERE year = 1911",
    "question_en": "Which Venue has a Year of 1911?",
    "question_th": "สถานที่ใดมีปี 1911?",
    "context": "CREATE TABLE table_name_60 (venue VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT opposition FROM table_name_17 WHERE city = \"taunton\"",
    "question_en": "Which Opposition has a City of taunton?",
    "question_th": "ฝ่ายค้านคนไหนมีเมืองทอน?",
    "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_en": "Which number of Years has a Venue of old trafford, and an Opposition of yorkshire?",
    "question_th": "กี่ปีที่มีสนามโอลด์แทรฟฟอร์ด และมีฝ่ายค้านกับยอร์คเชียร์?",
    "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_en": "What was the score of the match that took place at 6:00 PM with 79,419 in attendance?",
    "question_th": "โดยผลการแข่งขันเวลา 18.00 น. มีผู้ชม 79,419 คน เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_69 (result VARCHAR, time VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_99 WHERE attendance = \"22,329\"",
    "question_en": "What time was the match that had an attendance of 22,329?",
    "question_th": "แมตช์นี้มีผู้ชม 22,329 คน แข่งขันกี่โมง?",
    "context": "CREATE TABLE table_name_99 (time VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_50 WHERE attendance = \"103,158\"",
    "question_en": "What two teams were competing in the match with 103,158 in attendance?",
    "question_th": "มีทีมใดบ้างที่แข่งขันกันในการแข่งขันโดยมีผู้เข้าร่วม 103,158 คน?",
    "context": "CREATE TABLE table_name_50 (opponent VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT AVG(january) FROM table_name_92 WHERE opponent = \"chicago black hawks\"",
    "question_en": "What is the average date in January that the Rangers played against Chicago Black Hawks?",
    "question_th": "วันที่เฉลี่ยในเดือนมกราคมที่ Rangers เล่นกับ 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_en": "What is the score of the game where the Rangers record was 16-8-4?",
    "question_th": "เกมที่เรนเจอร์สทำสถิติ 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_en": "Which OU career [b] had Position [A] as a forward when there were 56 appearances?",
    "question_th": "อาชีพ OU ใด [b] มีตำแหน่ง [A] เป็นกองหน้าเมื่อลงเล่น 56 นัด?",
    "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_en": "Which Score in the final has an Outcome of winner, and a Date of 3 august 2013?",
    "question_th": "คะแนนใดในรอบชิงชนะเลิศมีผลลัพธ์เป็นผู้ชนะ และวันที่ 3 สิงหาคม 2556",
    "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_en": "Which Partner has a Date of 8 february 2009?",
    "question_th": "พันธมิตรรายใดมีวันที่ 8 กุมภาพันธ์ 2552",
    "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_en": "Which Opponent in the final has a Partner of dustin brown?",
    "question_th": "คู่ต่อสู้คนไหนในรอบชิงชนะเลิศมีคู่หูของดัสติน บราวน์?",
    "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_en": "Which Score in the final has a Surface of clay, and a Partner of martin emmrich?",
    "question_th": "คะแนนใดในรอบชิงชนะเลิศที่มีพื้นผิวเป็นดินเหนียวและเป็นคู่หูของ 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_en": "Which Surface has a Partner of oliver marach?",
    "question_th": "Surface รุ่นใดมีพันธมิตรของ 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_en": "What is the call sign for the frequency of 0 105.7 fm?",
    "question_th": "สัญญาณเรียกขานความถี่ 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_en": "Who is the owner with a frequency of 0 101.1 fm?",
    "question_th": "เจ้าของคลื่นความถี่ 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_en": "Which city of license has the Kyli call sign?",
    "question_th": "เมืองใบอนุญาตใดที่มีสัญญาณเรียก Kyli?",
    "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_en": "What is the format for Cherry Creek Radio with frequency of 0 92.1 fm?",
    "question_th": "รูปแบบสำหรับ Cherry Creek Radio ที่มีความถี่ 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_en": "Which format is in St. George with a frequency of 0 107.3 fm?",
    "question_th": "รูปแบบใดอยู่ในเซนต์จอร์จที่มีความถี่ 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_en": "Which city of license has the Kyli call sign?",
    "question_th": "เมืองใบอนุญาตใดที่มีสัญญาณเรียก Kyli?",
    "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_en": "Party of republican, and a District of 7th is what elected?",
    "question_th": "พรรครีพับลิกันและเขตที่ 7 เป็นคนเลือกอะไร?",
    "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_en": "Party of republican, and a District of 5th is what highest elected?",
    "question_th": "พรรครีพับลิกันและเขตที่ 5 คือพรรคใดที่ได้รับการเลือกตั้งสูงสุด?",
    "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_en": "Elected smaller than 2001, and a District of 83rd has what status?",
    "question_th": "ได้รับการเลือกตั้งน้อยกว่าปี 2544 และเขตที่ 83 มีสถานะอะไร",
    "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_en": "Status of reelected, and a Incumbent of danny marshall iii is what highest elected?",
    "question_th": "สถานะของการเลือกตั้งใหม่ และการดำรงตำแหน่งของ danny marshall iii คือสถานะใดที่ได้รับการเลือกตั้งสูงสุด",
    "context": "CREATE TABLE table_name_75 (elected INTEGER, status VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_39 WHERE score = \"6–3, 6–4\"",
    "question_en": "When has a Score of 6–3, 6–4?",
    "question_th": "เมื่อไรจะมีคะแนน 6–3, 6–4?",
    "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_en": "WHich Score has marcelo filippini mark koevermans?",
    "question_th": "มาร์เซโล ฟิลิปปินี่ มาร์ค คูเวอร์แมนส์ คะแนนไหน?",
    "context": "CREATE TABLE table_name_18 (score VARCHAR, opponents_in_the_final VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_39 WHERE partnering = \"diego pérez\" AND opponents_in_the_final = \"christer allgardh carl limberger\"",
    "question_en": "WHich Tournament  has a Partnering of diego pérez and a Opponents in the final of christer allgardh carl limberger?",
    "question_th": "การแข่งขันใดมีการจับคู่ระหว่างดิเอโก เปเรซและฝ่ายตรงข้ามในรอบสุดท้ายของคริสเตอร์ อัลการ์ดห์ คาร์ล ลิมเบอร์เกอร์?",
    "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ás carbonell\" AND date = \"march 28, 1995\"",
    "question_en": "Which Opponents in the final has a Partnering of tomás carbonell on march 28, 1995?",
    "question_th": "ฝ่ายตรงข้ามคนใดในรอบชิงชนะเลิศที่มีการจับมือกับโทมัส คาร์โบเนล เมื่อวันที่ 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 àlex corretja\"",
    "question_en": "What is the Score of an Opponent\\ in the final of jordi arrese àlex corretja?",
    "question_th": "คะแนนของฝ่ายตรงข้าม\\ ในรอบชิงชนะเลิศของ jordi arrese àlex 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_en": "Which To par has a Place in t9 and a Country of Spain?",
    "question_th": "To par ใดมีสถานที่ใน t9 และประเทศสเปน?",
    "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_en": "Which To par has a Place in 8?",
    "question_th": "พาร์ไหนมีตำแหน่งใน 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_en": "WHo is Player that has a Place of t9 in united states?",
    "question_th": "ใครคือผู้เล่นที่มีอันดับ t9 ในสหรัฐอเมริกา?",
    "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_en": "What ERP W has a 95.1 MHZ frequency?",
    "question_th": "ERP W ใดมีความถี่ 95.1 MHZ",
    "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_en": "What call sign is licensed in soledad, california?",
    "question_th": "สัญญาณเรียกขานใดที่ได้รับอนุญาตในโซเลแดด แคลิฟอร์เนีย",
    "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_en": "What is the MHZ frequency in carmel, california with an ERP W over 10?",
    "question_th": "ความถี่ MHZ ในคาร์เมล แคลิฟอร์เนียที่มี ERP W มากกว่า 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_en": "What class has a MHZ frequency under 103.1 licensed in morro bay, california?",
    "question_th": "คลาสใดมีความถี่ MHZ ต่ำกว่า 103.1 ที่ได้รับอนุญาตในมอร์โรเบย์ แคลิฟอร์เนีย",
    "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_en": "How many averages have recs smaller than 26, and a Player of reggie brown, and a Long smaller than 40?",
    "question_th": "มีกี่ค่าเฉลี่ยที่มี recs น้อยกว่า 26 และมีผู้เล่น reggie brown และ long น้อยกว่า 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_en": "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?",
    "question_th": "หลาใดที่มีค่าเฉลี่ยมากกว่า 7 และลองน้อยกว่า 60 และ Rec มากกว่า 19 และผู้เล่นของคอร์เรล บัคฮาลเตอร์?",
    "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_en": "Which Yards have an avg of 11.8, and a Player of brent celek, and a Long larger than 44?",
    "question_th": "หลาใดมีค่าเฉลี่ย 11.8 และผู้เล่นของ brent celek และลองใหญ่กว่า 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_en": "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?",
    "question_th": "หลาใดคือแต้มสูงสุดที่มี Rec น้อยกว่า 54 และ Long น้อยกว่า 5 และผู้เล่นของ todd herremans และค่าเฉลี่ยมากกว่า 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_en": "What is the high rebounds with a record that is 18-14?",
    "question_th": "รีบาวด์สูงสุดด้วยสถิติ 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_en": "What are the high points from a game of 30?",
    "question_th": "แต้มสูงสุดจากเกม 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_en": "What is the score for the game against Malacca at the Klfa Stadium, Cheras?",
    "question_th": "ในเกมกับ มะละกา ที่สนาม คลอฟ่า สเตเดี้ยม เชอราส ได้สกอร์เท่าไหร่?",
    "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_en": "Which date held the match at the City Stadium, Georgetown?",
    "question_th": "แข่งขันวันที่ใดที่ 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_en": "Which competition had an opponent of Police at the Selayang Stadium?",
    "question_th": "การแข่งขันรายการใดมีคู่ต่อสู้ของตำรวจที่สนามเซลายัง?",
    "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_en": "What the average amount of field goals Clark has if he has less than 3 touch downs and less than 5 points?",
    "question_th": "คลาร์กมีเป้าหมายในสนามโดยเฉลี่ยเท่าไรหากเขามีทัชดาวน์น้อยกว่า 3 ครั้งและน้อยกว่า 5 แต้ม?",
    "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_en": "How many points does Tom Hammond have if he has more than 12 points?",
    "question_th": "ทอม แฮมมอนด์มีกี่แต้มถ้าเขามีมากกว่า 12 แต้ม?",
    "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_en": "Who had the lowest field goals if they had 12 touchdowns and more than 72 points?",
    "question_th": "ใครมีเป้าหมายในสนามต่ำที่สุดหากพวกเขาทำทัชดาวน์ได้ 12 ครั้งและมากกว่า 72 แต้ม?",
    "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_en": "What is the lowest earnings of Lee Trevino who has 28 wins?",
    "question_th": "รายได้ต่ำสุดของ Lee Trevino ที่ชนะ 28 ครั้งคือเท่าไร?",
    "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_en": "Where is the location of attendance for the Date of december 14?",
    "question_th": "สถานที่เข้าร่วมงานวันที่ 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_en": "What team has a high score with tracy mcgrady (24)?",
    "question_th": "ทีมไหนมีคะแนนสูงเท่ากับ เทรซี่ แม็คเกรดี้ (24)?",
    "context": "CREATE TABLE table_name_70 (team VARCHAR, high_points VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_name_28 WHERE score = \"l 90–91 (ot)\"",
    "question_en": "What location has an attendance and a score of l 90–91 (ot)?",
    "question_th": "สถานที่ใดมีผู้เข้าร่วมและคะแนน l 90–91 (ot)",
    "context": "CREATE TABLE table_name_28 (location_attendance VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_98 WHERE score = \"l 88–94 (ot)\"",
    "question_en": "What team has a Score of l 88–94 (ot)?",
    "question_th": "ทีมใดมีคะแนน l 88–94 (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_en": "What score has hard (i) as the surface, and Columbus, Ohio as the tournament?",
    "question_th": "คะแนนอะไรยาก (i) เป็นพื้นผิวและโคลัมบัสโอไฮโอเป็นทัวร์นาเมนต์?",
    "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_en": "What opponent in the final has rockford, Illinois as the tournament?",
    "question_th": "คู่ต่อสู้คนใดในรอบชิงชนะเลิศที่มีเมืองร็อคฟอร์ด รัฐอิลลินอยส์ เป็นทัวร์นาเมนต์?",
    "context": "CREATE TABLE table_name_12 (opponent_in_the_final VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_27 WHERE tournament = \"zadar\"",
    "question_en": "What score has zadar as the tournament?",
    "question_th": "Zadar มีคะแนนเท่าไหร่ในทัวร์นาเมนต์?",
    "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_en": "Players of amanda coetzer and marcos ondruska is what team?",
    "question_th": "นักเตะอแมนด้า คูทเซอร์ และมาร์กอส ออนดรุสก้า คือทีมอะไร?",
    "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_en": "Players of judith wiesner and alex antonitsch had what match w-l?",
    "question_th": "ผู้เล่นของจูดิธ วีสเนอร์ และอเล็กซ์ อันโตนิทช์ ลงแข่งอะไร wl?",
    "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_en": "Placing of 3 had what match w-l?",
    "question_th": "อันดับ 3 ตรงกับอะไร wl?",
    "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_en": "Matches W-L of 1-2, and a Team of spain had what seeding?",
    "question_th": "แมตช์ WL 1-2 และทีมสเปนได้ตำแหน่งอะไร?",
    "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_en": "Notes of bbc radio 4, and a Director of peter kavanagh includes which average year?",
    "question_th": "บันทึกของวิทยุบีบีซี 4 และผู้อำนวยการของปีเตอร์ คาวานาคห์รวมปีเฉลี่ยปีใดด้วย",
    "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_en": "Title of the angry brigade involves which lowest year?",
    "question_th": "ตำแหน่งของกลุ่มโกรธเกี่ยวข้องกับปีต่ำสุดใด",
    "context": "CREATE TABLE table_name_49 (year INTEGER, title VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_name_35 WHERE year > 2008",
    "question_en": "Year larger than 2008 includes which notes?",
    "question_th": "ปีที่ใหญ่กว่าปี 2551 มีหมายเหตุใดบ้าง",
    "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_en": "Notes of bbc radio 3, and a Title of carnival involves which director?",
    "question_th": "บันทึกของวิทยุบีบีซี 3 และชื่องานคาร์นิวัลเกี่ยวข้องกับผู้กำกับคนไหน?",
    "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_en": "What was the song choice when the theme was free choice and Adeleye made it through to bootcamp?",
    "question_th": "อะไรคือตัวเลือกเพลงเมื่อธีมเป็นตัวเลือกฟรีและ Adeleye ก็ผ่านเข้าค่ายฝึกหัดได้?",
    "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_en": "What was the result of week 2?",
    "question_th": "สัปดาห์ที่ 2 ผลลัพธ์เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_93 (result VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT theme FROM table_name_38 WHERE week = \"week 3\"",
    "question_en": "What was the theme for week 3?",
    "question_th": "ธีมของสัปดาห์ที่ 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_en": "What was the theme for the final showdown (week 3)?",
    "question_th": "ธีมของการประลองครั้งสุดท้าย (สัปดาห์ที่ 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_en": "What was the score of Game 2 in the series against the Florida Panthers?",
    "question_th": "คะแนนของเกมที่ 2 ในซีรีส์กับ 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_en": "What was the score of the game that led to a 7-5 record?",
    "question_th": "คะแนนของเกมที่นำไปสู่สถิติ 7-5 คืออะไร?",
    "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_en": "Which player is a tight end with a round higher than 3?",
    "question_th": "ผู้เล่นคนไหนที่จบแน่นและมีรอบสูงกว่า 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_en": "What position does the College of Louisiana State have?",
    "question_th": "College of Louisiana State มีตำแหน่งอะไรบ้าง?",
    "context": "CREATE TABLE table_name_89 (position VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(round) FROM table_name_13 WHERE name = \"jamaal charles\"",
    "question_en": "How many rounds does Jamaal Charles have?",
    "question_th": "จามาล ชาร์ลส์ มีกี่รอบ?",
    "context": "CREATE TABLE table_name_13 (round VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_53 WHERE save = \"smith (26)\"",
    "question_en": "Who was the opponent that also has a save of Smith (26)?",
    "question_th": "คู่ต่อสู้ที่เซฟสมิธ (26) ไว้ด้วยคือใคร?",
    "context": "CREATE TABLE table_name_53 (opponent VARCHAR, save VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_47 WHERE save = \"smith (25)\"",
    "question_en": "Which score has a save of Smith (25)?",
    "question_th": "สกอร์ไหนเซฟสมิธได้ (25)?",
    "context": "CREATE TABLE table_name_47 (score VARCHAR, save VARCHAR)"
  },
  {
    "answer": "SELECT circuit FROM table_name_77 WHERE date = \"july 24\"",
    "question_en": "Which circuit is on July 24?",
    "question_th": "วงจรไหนคือวันที่ 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_en": "On which date was the GT class at Monterey Sports Car Grand Prix?",
    "question_th": "คลาส GT ที่ 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_en": "What was the length for GT class at Portland International Raceway?",
    "question_th": "คลาส GT ที่สนาม 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_en": "On what date did Contac 12 Hours of Sebring take place?",
    "question_th": "Contac 12 Hours of Sebring จัดขึ้นวันไหน?",
    "context": "CREATE TABLE table_name_21 (date VARCHAR, race VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_94 WHERE attendance = \"24,791\"",
    "question_en": "Which Opponent has an Attendance of 24,791?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีผู้เข้าร่วม 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–25\"",
    "question_en": "Which Score has Opponent of mariners and a Record of 24–25?",
    "question_th": "คะแนนใดที่มีฝ่ายตรงข้ามของกะลาสีเรือและมีสถิติ 24–25",
    "context": "CREATE TABLE table_name_91 (score VARCHAR, opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_6 WHERE record = \"16–16\"",
    "question_en": "When is Record of 16–16 taken?",
    "question_th": "บันทึก 16–16 จะถูกถ่ายเมื่อใด",
    "context": "CREATE TABLE table_name_6 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_2 WHERE record = \"7–10–3–1\"",
    "question_en": "What was the score of the game with a record of 7–10–3–1?",
    "question_th": "คะแนนของเกมด้วยสถิติ 7–10–3–1 คืออะไร?",
    "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__€m_ < 906.8",
    "question_en": "Which Year Ended has a Passenger Load Factor (%) larger than 72.8, and a Revenue (€m) smaller than 906.8?",
    "question_th": "สิ้นปีใดที่มีปัจจัยภาระผู้โดยสาร (%) มากกว่า 72.8 และรายได้ (€m) น้อยกว่า 906.8",
    "context": "CREATE TABLE table_name_80 (year_ended VARCHAR, passenger_load_factor___percentage_ VARCHAR, revenue__€m_ VARCHAR)"
  },
  {
    "answer": "SELECT passenger_load_factor___percentage_ FROM table_name_86 WHERE revenue__€m_ < 958.6 AND profit____loss__before_tax__€m_ = \"1.1\"",
    "question_en": "What Passenger Load Factor (%) that has a Revenue (€m) less than 958.6 and a Profit / (Loss) Before Tax (€m) of 1.1?",
    "question_th": "ปัจจัยภาระผู้โดยสาร (%) ใดที่มีรายได้ (€m) น้อยกว่า 958.6 และมีกำไร / (ขาดทุน) ก่อนหักภาษี (€m) เท่ากับ 1.1",
    "context": "CREATE TABLE table_name_86 (passenger_load_factor___percentage_ VARCHAR, revenue__€m_ VARCHAR, profit____loss__before_tax__€m_ VARCHAR)"
  },
  {
    "answer": "SELECT first_used FROM table_name_84 WHERE quantity = 26",
    "question_en": "Which First used has a Quantity of 26?",
    "question_th": "อันไหนใช้ครั้งแรกมีปริมาณ 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_en": "Which Designation has a Manufacturer of siemens, and a Quantity of 52?",
    "question_th": "ชื่อใดมีผู้ผลิตซีเมนส์และมีปริมาณ 52 ราย",
    "context": "CREATE TABLE table_name_56 (designation VARCHAR, manufacturer VARCHAR, quantity VARCHAR)"
  },
  {
    "answer": "SELECT designation FROM table_name_84 WHERE quantity = 52",
    "question_en": "Which Designation has a Quantity of 52?",
    "question_th": "การกำหนดใดมีปริมาณ 52?",
    "context": "CREATE TABLE table_name_84 (designation VARCHAR, quantity VARCHAR)"
  },
  {
    "answer": "SELECT AVG(quantity) FROM table_name_82 WHERE designation = \"type 4\"",
    "question_en": "Which Quantity has a Designation of type 4?",
    "question_th": "ปริมาณใดมีการกำหนดประเภทที่ 4",
    "context": "CREATE TABLE table_name_82 (quantity INTEGER, designation VARCHAR)"
  },
  {
    "answer": "SELECT model_no FROM table_name_28 WHERE manufacturer = \"bombardier\"",
    "question_en": "Which model number does bombardier manufacture?",
    "question_th": "Bombardier ผลิตหมายเลขรุ่นใด",
    "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_en": "Which Car numbers have a First used of currently on order?",
    "question_th": "หมายเลขรถใดที่มีการใช้ครั้งแรกในการสั่งซื้อในปัจจุบัน?",
    "context": "CREATE TABLE table_name_37 (car_numbers VARCHAR, first_used VARCHAR)"
  },
  {
    "answer": "SELECT MIN(elected) FROM table_name_87 WHERE district = 17",
    "question_en": "What was the year elected in District 17?",
    "question_th": "เขต 17 ได้รับการเลือกตั้งปีใด",
    "context": "CREATE TABLE table_name_87 (elected INTEGER, district VARCHAR)"
  },
  {
    "answer": "SELECT elected FROM table_name_56 WHERE district = 15",
    "question_en": "What was the year elected in District 15?",
    "question_th": "เขต 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_en": "What year was Incumbent Ed Towns elected with a district smaller than 10?",
    "question_th": "ผู้ดำรงตำแหน่ง Ed Towns ได้รับเลือกโดยเขตที่เล็กกว่า 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_en": "What party has a district of 28 and was elected after 1983?",
    "question_th": "พรรคใดมีเขต 28 และได้รับเลือกหลังปี 2526",
    "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_en": "What's the elected year of Nydia Velazquez in a district bigger than 2 and a democrat?",
    "question_th": "ปีที่ได้รับการเลือกตั้งของ Nydia Velazquez ในเขตที่ใหญ่กว่า 2 และพรรคเดโมแครตคือปีใด",
    "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_en": "Name the least year for goalscore of ortiz and goals more than 25",
    "question_th": "ตั้งชื่อปีน้อยที่สุดสำหรับประตูของออร์ติซและประตูที่มากกว่า 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_en": "What was the date of the game when St. Louis was the visiting team?",
    "question_th": "ในเกมวันที่เซนต์หลุยส์เป็นทีมเยือนคือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_17 (date VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_42 WHERE score = \"7–5\"",
    "question_en": "What was the record at the game with a score of 7–5?",
    "question_th": "สถิติในเกมด้วยคะแนน 7–5 คืออะไร?",
    "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_en": "What position shows for canada, and an NHL team of new york islanders, and a Pick # of 113?",
    "question_th": "ตำแหน่งใดที่แสดงให้เห็นสำหรับแคนาดา และทีม NHL ของชาวเกาะนิวยอร์ก และเลือก # จาก 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_en": "What is the Position for the brandon wheat kings (wchl)?",
    "question_th": "ตำแหน่งสำหรับแบรนดอนวีทคิง (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_en": "What is the Nationality for the university of wisconsin (wcha), and a Player of bob lundeen?",
    "question_th": "สัญชาติของมหาวิทยาลัยวิสคอนซิน (wcha) และผู้เล่นของ Bob ludeen คืออะไร?",
    "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_en": "What is the Pick # for brent meeke?",
    "question_th": "Pick # สำหรับ 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_en": "What is the NHL team of dave murphy?",
    "question_th": "ทีม NHL ของ 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_en": "What Nationality had a Pick # of 117?",
    "question_th": "สัญชาติใดถูกเลือก # 117?",
    "context": "CREATE TABLE table_name_91 (nationality VARCHAR, pick__number VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_46 WHERE athlete = \"nesta carter\"",
    "question_en": "On what Date of the race was Nesta Carter the Athlete?",
    "question_th": "เนสต้า คาร์เตอร์ นักกีฬาจัดการแข่งขันวันไหน?",
    "context": "CREATE TABLE table_name_46 (date VARCHAR, athlete VARCHAR)"
  },
  {
    "answer": "SELECT athlete FROM table_name_14 WHERE time = 9.78",
    "question_en": "What is the Athlete of the race with a Time of 9.78?",
    "question_th": "นักกีฬาคนใดของการแข่งขันด้วยเวลา 9.78?",
    "context": "CREATE TABLE table_name_14 (athlete VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT MAX(area_2006_km²) FROM table_name_38 WHERE area_1996_km² < 17.31",
    "question_en": "Which area 2006 km² has an area 1996 km² smaller than 17.31?",
    "question_th": "พื้นที่ใด 2006 km² มีพื้นที่ 1996 km² เล็กกว่า 17.31",
    "context": "CREATE TABLE table_name_38 (area_2006_km² INTEGER, area_1996_km² INTEGER)"
  },
  {
    "answer": "SELECT MIN(area_2006_km²) FROM table_name_94 WHERE area_1996_km² = 26.39 AND pop_2006 < 18 OFFSET 610",
    "question_en": "Which area 2006 km² has an area 1996 km² of 26.39, and a pop 2006 smaller than 18,610?",
    "question_th": "พื้นที่ใด 2,006 km² มีพื้นที่ 1996 km² 26.39 และป๊อปปี 2006 เล็กกว่า 18,610",
    "context": "CREATE TABLE table_name_94 (area_2006_km² INTEGER, area_1996_km² VARCHAR, pop_2006 VARCHAR)"
  },
  {
    "answer": "SELECT MAX(area_2006_km²) FROM table_name_22 WHERE city = \"sopot\" AND area_1996_km² < 17.31",
    "question_en": "Which area 2006 km² has a city of sopot, and an area 1996 km² smaller than 17.31?",
    "question_th": "พื้นที่ใด 2,006 ตารางกิโลเมตรมีเมืองโซพอต และพื้นที่ 1,996 ตารางกิโลเมตรเล็กกว่า 17.31",
    "context": "CREATE TABLE table_name_22 (area_2006_km² INTEGER, city VARCHAR, area_1996_km² VARCHAR)"
  },
  {
    "answer": "SELECT MAX(area_1996_km²) FROM table_name_91 WHERE pop_1999 = \"17,510\" AND area_2006_km² > 30",
    "question_en": "Which area 1996 km² has a pop 1999 of 17,510, and an area 2006 km² larger than 30?",
    "question_th": "พื้นที่ใด 1996 ตารางกิโลเมตรมีป๊อปปี 1999 จาก 17,510 และพื้นที่ 2,006 ตารางกิโลเมตรใหญ่กว่า 30",
    "context": "CREATE TABLE table_name_91 (area_1996_km² INTEGER, pop_1999 VARCHAR, area_2006_km² VARCHAR)"
  },
  {
    "answer": "SELECT MAX(playoffs) FROM table_name_79 WHERE teams = \"tampa bay\"",
    "question_en": "What is the highest playoffs that has tampa bay as the team?",
    "question_th": "รอบตัดเชือกสูงสุดที่มีแทมปาเบย์เป็นทีมคืออะไร?",
    "context": "CREATE TABLE table_name_79 (playoffs INTEGER, teams VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_96 WHERE total = 123",
    "question_en": "What rank has 123 as the total?",
    "question_th": "อันดับไหนมี 123 รวม?",
    "context": "CREATE TABLE table_name_96 (rank VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT teams FROM table_name_35 WHERE streak_end = \"1/2/2011\"",
    "question_en": "What teams have 1/2/2011 as the streak end?",
    "question_th": "ทีมใดที่ 2/1/2554 เป็นจุดสิ้นสุดของสตรีค?",
    "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_en": "What streak start has a total less than 79, 22t as the rank, and tampa bay as the teams?",
    "question_th": "การออกสตาร์ทสตรีคใดที่มีคะแนนรวมน้อยกว่า 79, 22 ตันเป็นอันดับ และแทมปาเบย์เป็นทีม?",
    "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_en": "What was the method for the UFC Fight Night 10 event?",
    "question_th": "กิจกรรม UFC Fight Night 10 มีวิธีการอย่างไร?",
    "context": "CREATE TABLE table_name_11 (method VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT res FROM table_name_60 WHERE event = \"m-1 selection europe\"",
    "question_en": "What was the result for the M-1 Selection Europe event?",
    "question_th": "ผลลัพธ์ของงาน M-1 Selection Europe คืออะไร",
    "context": "CREATE TABLE table_name_60 (res VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_55 WHERE record = \"23-5\"",
    "question_en": "Who was the opponent that led to a record of 23-5?",
    "question_th": "คู่ต่อสู้ที่นำสถิติ 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_en": "What is the number of Silver medals with 2 Bronze and 0 Gold?",
    "question_th": "เหรียญเงินจำนวน 2 เหรียญทองแดง และ 0 เหรียญทอง คือเท่าไร?",
    "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_en": "what team was the 1st leg champion of sakalai",
    "question_th": "ทีมไหนเป็นแชมป์เลกแรกของซากาไล",
    "context": "CREATE TABLE table_name_98 (champion VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_54 WHERE champion = \"juventus\"",
    "question_en": "what season did the juventus win",
    "question_th": "ยูเวนตุสชนะฤดูกาลไหน",
    "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_en": "What's the average Year that has Points that's smaller than 9 with a Rank of 24th?",
    "question_th": "ปีเฉลี่ยที่มีคะแนนน้อยกว่า 9 และอันดับที่ 24 คือเท่าไร?",
    "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_en": "Who has a Rank larger than 3 with a speed of 119.838mph?",
    "question_th": "ใครมีอันดับมากกว่า 3 ด้วยความเร็ว 119.838 ไมล์ต่อชั่วโมง?",
    "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_en": "Which Team has a Time of 1:14.51.73?",
    "question_th": "ทีมใดมีเวลา 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_en": "Which Speed has a Rank smaller than 9 in kawasaki zx6 600cc Team?",
    "question_th": "ความเร็วใดที่มีอันดับน้อยกว่า 9 ในทีม kawasaki zx6 600cc?",
    "context": "CREATE TABLE table_name_6 (speed VARCHAR, rank VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT speed FROM table_name_59 WHERE rank = 2",
    "question_en": "WHich Speed has a Rank of 2?",
    "question_th": "ความเร็วใดมีอันดับ 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_en": "What is the total of Game with an Opponent of @ Hartford Whalers and February that's larger than 19?",
    "question_th": "ผลรวมของเกมกับฝ่ายตรงข้ามของ @ Hartford Whalers และเดือนกุมภาพันธ์ที่มากกว่า 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_en": "Which Opponent has a February larger than 7 and Record of 37-16-4?",
    "question_th": "ฝ่ายตรงข้ามคนไหนที่มีคะแนนมากกว่า 7 ในเดือนกุมภาพันธ์และสถิติ 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_en": "What is listed as the highest February with a Record of 34-14-4 and Game that's larger than 52?",
    "question_th": "เดือนกุมภาพันธ์สูงสุดด้วยสถิติ 34-14-4 และเกมที่มากกว่า 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_en": "Which Opponent has a Game larger than 56 and February of 24?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีเกมที่ใหญ่กว่า 56 และ 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_en": "Which Extra points is the lowest one that has a Player of rheinschild, and Touchdowns larger than 1?",
    "question_th": "คะแนนพิเศษใดที่ต่ำที่สุดที่มีผู้เล่นของ rheinschild และทัชดาวน์มากกว่า 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_en": "What result has mario & karina as the couple?",
    "question_th": "ผลลัพท์ที่ได้ มาริโอ้ & คาริน่า เป็นคู่รักคืออะไร?",
    "context": "CREATE TABLE table_name_76 (result VARCHAR, couple VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_15 WHERE set_2 = \"20–25\" AND date = \"05 jun\"",
    "question_en": "Which Time has a Set 2 of 20–25, and a Date of 05 jun?",
    "question_th": "เวลาใดมีชุดที่ 2 จาก 20–25 และวันที่ 5 มิถุนายน",
    "context": "CREATE TABLE table_name_15 (time VARCHAR, set_2 VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_49 WHERE score = \"0–3\" AND set_2 = \"16–25\"",
    "question_en": "Which Date has a Score of 0–3, and a Set 2 of 16–25?",
    "question_th": "วันใดมีคะแนน 0–3 และชุดที่ 2 จาก 16–25",
    "context": "CREATE TABLE table_name_49 (date VARCHAR, score VARCHAR, set_2 VARCHAR)"
  },
  {
    "answer": "SELECT total FROM table_name_60 WHERE set_2 = \"19–25\"",
    "question_en": "Which Total has a Set 2 of 19–25?",
    "question_th": "ผลรวมใดมีชุดที่ 2 จาก 19–25",
    "context": "CREATE TABLE table_name_60 (total VARCHAR, set_2 VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_9 WHERE set_2 = \"25–17\" AND time = \"16:00\"",
    "question_en": "Which Score has a Set 2 of 25–17, and a Time of 16:00?",
    "question_th": "สกอร์ใดมีเซ็ต 2 25–17 และเวลา 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–25\"",
    "question_en": "Which Set 1 has a Time of 14:00, and a Set 3 of 19–25?",
    "question_th": "ชุดที่ 1 ใดมีเวลา 14:00 น. และชุดที่ 3 จาก 19–25",
    "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–26\" AND score = \"0–3\"",
    "question_en": "Which Time has a Set 3 of 24–26, and a Score of 0–3?",
    "question_th": "เวลาใดมีเซต 3 จาก 24–26 และคะแนน 0–3",
    "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_en": "What was the attendance when Nuneaton Borough was the home team?",
    "question_th": "การเข้าร่วมงานเมื่อ นูเนียตัน โบโรห์ เป็นเจ้าบ้าน?",
    "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_en": "What's the site of the recap at qualcomm stadium?",
    "question_th": "สรุปที่สนามควอลคอมม์มีจุดไหน?",
    "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_en": "What is the name of the race in Cleveland, Ohio?",
    "question_th": "การแข่งขันที่เมืองคลีฟแลนด์ รัฐโอไฮโอ มีชื่อว่าอะไร?",
    "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_en": "Which circuit did Michael Andretti win?",
    "question_th": "Michael Andretti ชนะวงจรใด",
    "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_en": "Who was the winning team at the Homestead-Miami Speedway?",
    "question_th": "ทีมใดเป็นผู้ชนะที่ 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_en": "What was Jimmy Vasser's fastest lap?",
    "question_th": "รอบที่เร็วที่สุดของ Jimmy Vasser คืออะไร?",
    "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éronique desmadryl\"",
    "question_en": "Which Spanish voice actor does the same character as French voice actor Véronique Desmadryl?",
    "question_th": "นักพากย์ชาวสเปนคนใดที่มีลักษณะเหมือนกับนักพากย์ชาวฝรั่งเศส Véronique 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_en": "Which Spanish voice actor does the same character as French voice actor Dennis Boileau?",
    "question_th": "นักพากย์ชาวสเปนคนใดที่มีลักษณะเหมือนกับนักพากย์ชาวฝรั่งเศส เดนนิส บอยโล",
    "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éronique desmadryl\"",
    "question_en": "Which Spanish voice actor does the same character as French voice actor Véronique Desmadryl?",
    "question_th": "นักพากย์ชาวสเปนคนใดที่มีลักษณะเหมือนกับนักพากย์ชาวฝรั่งเศส Véronique 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_en": "What character does German voice actor Dirk Fenselau play?",
    "question_th": "นักพากย์ชาวเยอรมัน Dirk Fenselau รับบทเป็นตัวละครใด",
    "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_en": "What character does Italian voice actor Emanuela Damasio play?",
    "question_th": "นักพากย์ชาวอิตาลี Emanuela Damasio รับบทเป็นตัวละครใด",
    "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_en": "Which character has a French voice actor of Marc Saez and a German voice actor of Dirk Fenselau?",
    "question_th": "ตัวละครใดมีนักพากย์ชาวฝรั่งเศสของ Marc Saez และนักพากย์ชาวเยอรมันของ 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_en": "Jeff Staples player for which College, Junior or Club league?",
    "question_th": "Jeff Staples ผู้เล่นในลีกระดับวิทยาลัย, จูเนียร์ หรือคลับ?",
    "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_en": "Ken Hemenway is in which Round?",
    "question_th": "เคน เฮเมนเวย์ อยู่ในรอบใด",
    "context": "CREATE TABLE table_name_23 (round VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_99 WHERE player = \"e.j. bradley\"",
    "question_en": "Which Nation does e.j. bradley play for?",
    "question_th": "ej bradley เล่นให้กับประเทศใด?",
    "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_en": "Mike Crowley plays defense for league?",
    "question_th": "Mike Crowley เล่นแนวรับในลีกเหรอ?",
    "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_en": "Name the most games with drawn more than 1",
    "question_th": "ตั้งชื่อเกมที่เสมอกันมากกว่า 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_en": "Name the most points with lost of 2 and games more than 7",
    "question_th": "ระบุคะแนนมากที่สุดโดยแพ้ 2 และเกมมากกว่า 7",
    "context": "CREATE TABLE table_name_74 (points INTEGER, lost VARCHAR, games VARCHAR)"
  },
  {
    "answer": "SELECT MAX(peak) FROM table_name_81 WHERE track = \"moño negro\" AND year < 1996",
    "question_en": "What number did Moño Negro peak at before 1996?",
    "question_th": "Moño Negro ขึ้นสูงสุดที่หมายเลขใดก่อนปี 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_en": "What was the startup year for the project with apache energy/inpex as the operator?",
    "question_th": "ปีเริ่มต้นของโครงการที่มี apache Energy/inpex เป็นผู้ดำเนินการคือปีใด",
    "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_en": "What was the startup year for the Jackpine Mine (ph 2) project with an albian sands operator?",
    "question_th": "ปีที่เริ่มต้นสำหรับโครงการ Jackpine Mine (ph 2) กับผู้ดำเนินการ albian sands คืออะไร",
    "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_en": "What was the startup year for the project with a nioc operator?",
    "question_th": "ปีที่เริ่มต้นสำหรับโครงการกับผู้ดำเนินการ nioc คืออะไร?",
    "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_en": "What was the name of the project that peaked at 40 and was in the USA?",
    "question_th": "โปรเจ็กต์ที่มีจุดสูงสุดที่ 40 และอยู่ในสหรัฐอเมริกาชื่ออะไร",
    "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_en": "What country did the project, Bonga SW; Aparo with a shell operator take place?",
    "question_th": "โครงการนี้ทำโดยประเทศใด Bonga SW; Aparo กับตัวดำเนินการเชลล์เกิดขึ้นหรือไม่?",
    "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_en": "What is the amount of the 1st prize when the Winner was ken green (4)?",
    "question_th": "รางวัลที่ 1 เมื่อผู้ชนะคือ เคน กรีน (4) มีจำนวนเท่าไหร่?",
    "context": "CREATE TABLE table_name_56 (winner VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_27 WHERE tournament = \"los angeles open\"",
    "question_en": "What is the date of the Los Angeles open?",
    "question_th": "ลอสแอนเจลิสเปิดวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_27 (date VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_36 WHERE date = \"oct 23\"",
    "question_en": "What is the name of the Tournament on oct 23?",
    "question_th": "การแข่งขันวันที่ 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_en": "Who created One Night in Lisbon in 1941?",
    "question_th": "ใครเป็นผู้สร้าง One Night in Lisbon ในปี 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_en": "what date did reuschel (12-3) lose?",
    "question_th": "รอยเชล (12-3) แพ้วันไหน?",
    "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_en": "How much Draw has a Televote larger than 18, and an Artist of elizabeth anastasiou, and a Jury larger than 4?",
    "question_th": "Draw มี Televote ใหญ่กว่า 18 คน และศิลปินของ elizabeth anastasiou และคณะลูกขุนมากกว่า 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_en": "Which Place is the highest one that has an Artist of nikolas metaxas, and a Televote larger than 60?",
    "question_th": "สถานที่ใดคือสถานที่สูงสุดที่มีศิลปินของ nikolas metaxas และ Televote ที่มีขนาดใหญ่กว่า 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_en": "Which average Total has a Place smaller than 2, and a Draw smaller than 5?",
    "question_th": "ผลรวมเฉลี่ยใดที่มีอันดับน้อยกว่า 2 และเสมอน้อยกว่า 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_en": "Which Date has a Record of 0-2?",
    "question_th": "วันไหนมีสถิติ 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–20\"",
    "question_en": "Which Record has a Match Report of recap, and a Result of l 30–20?",
    "question_th": "บันทึกใดมีรายงานการแข่งขันสรุป และผลการแข่งขัน l 30–20",
    "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_en": "Which Match Report has a Date of october 26, 2008?",
    "question_th": "รายงานการแข่งขันใดมีวันที่ 26 ตุลาคม 2551",
    "context": "CREATE TABLE table_name_83 (match_report VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_83 WHERE record = \"0-3\"",
    "question_en": "Which Opponent has a Record of 0-3?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีสถิติ 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_en": "Which Record has a Kickoff of 12:00pm cst, and a Game site of arrowhead stadium, and a Week of 15?",
    "question_th": "สถิติใดมีการคิกออฟเวลา 12.00 น. CST และสนามแข่งขันที่สนาม Arrowhead Stadium และหนึ่งสัปดาห์ที่ 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_en": "What was the result when the new england patriots played?",
    "question_th": "ผลลัพธ์เมื่อทีมนิวอิงแลนด์รักชาติเล่นเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_33 (result VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT SUM(year) FROM table_name_42 WHERE budget = \"$39 million\"",
    "question_en": "How many years had budgets of $39 million?",
    "question_th": "กี่ปีมีงบประมาณ 39 ล้านเหรียญ?",
    "context": "CREATE TABLE table_name_42 (year INTEGER, budget VARCHAR)"
  },
  {
    "answer": "SELECT MAX(year) FROM table_name_89 WHERE director = \"christopher kulikowski\"",
    "question_en": "What is the most recent year featuring the director Christopher Kulikowski?",
    "question_th": "ปีล่าสุดที่มีผู้กำกับ คริสโตเฟอร์ คูลิโคว์สกี้ คือปีไหน?",
    "context": "CREATE TABLE table_name_89 (year INTEGER, director VARCHAR)"
  },
  {
    "answer": "SELECT director FROM table_name_97 WHERE gross__worldwide_ = \"$30,471\"",
    "question_en": "Which director had a worldwide gross of $30,471?",
    "question_th": "ผู้กำกับคนไหนมีรายรับทั่วโลก 30,471 ดอลลาร์?",
    "context": "CREATE TABLE table_name_97 (director VARCHAR, gross__worldwide_ VARCHAR)"
  },
  {
    "answer": "SELECT budget FROM table_name_4 WHERE year = 2005",
    "question_en": "What is 2005's budget figure?",
    "question_th": "ตัวเลขงบประมาณปี 2548 คืออะไร?",
    "context": "CREATE TABLE table_name_4 (budget VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT airport FROM table_name_59 WHERE iata = \"bkk\"",
    "question_en": "Which airport has IATA of BKK?",
    "question_th": "สนามบินใดมี IATA ของ 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_en": "What is the IATA for Beijing Capital International Airport?",
    "question_th": "IATA สำหรับสนามบินนานาชาติปักกิ่งแคปิตอลคืออะไร",
    "context": "CREATE TABLE table_name_14 (iata VARCHAR, airport VARCHAR)"
  },
  {
    "answer": "SELECT airport FROM table_name_33 WHERE country = \"singapore\"",
    "question_en": "Which airport is located in Singapore?",
    "question_th": "สนามบินใดอยู่ในสิงคโปร์?",
    "context": "CREATE TABLE table_name_33 (airport VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_88 WHERE icao = \"wadd\"",
    "question_en": "What is the country of the airport with ICAO of WADD?",
    "question_th": "สนามบินของ ICAO ของ WDD อยู่ที่ประเทศอะไร?",
    "context": "CREATE TABLE table_name_88 (country VARCHAR, icao VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_98 WHERE airport = \"newcastle airport\"",
    "question_en": "Which city holds Newcastle Airport?",
    "question_th": "เมืองใดมีสนามบินนิวคาสเซิล",
    "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_en": "What is the capacity for the stadium of kadrioru stadium and a current manager of sergei ratnikov?",
    "question_th": "สนามของสนามกีฬา Kadrioru และผู้จัดการทีม 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_en": "What was the other number with 63.98% bush?",
    "question_th": "อีกหมายเลขหนึ่งที่มีบุช 63.98% คืออะไร?",
    "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_en": "Band of am, and a Frequency of 0 846 has what purpose?",
    "question_th": "Band of am และความถี่ 0 846 มีจุดประสงค์อะไร?",
    "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_en": "Frequency of 100.1 has what on-air id?",
    "question_th": "ความถี่ 100.1 มีรหัสออนแอร์อะไร?",
    "context": "CREATE TABLE table_name_87 (on_air_id VARCHAR, frequency VARCHAR)"
  },
  {
    "answer": "SELECT purpose FROM table_name_34 WHERE callsign = \"6nan\"",
    "question_en": "Callsign of 6nan has what purpose?",
    "question_th": "Callsign ของ 6nan มีจุดประสงค์อะไร?",
    "context": "CREATE TABLE table_name_34 (purpose VARCHAR, callsign VARCHAR)"
  },
  {
    "answer": "SELECT purpose FROM table_name_71 WHERE band = \"am\" AND callsign = \"6wh\"",
    "question_en": "Band of am, and a Callsign of 6wh has what purpose?",
    "question_th": "Band of am และ Callsign ของ 6wh มีจุดประสงค์อะไร?",
    "context": "CREATE TABLE table_name_71 (purpose VARCHAR, band VARCHAR, callsign VARCHAR)"
  },
  {
    "answer": "SELECT callsign FROM table_name_99 WHERE frequency = \"0 864\"",
    "question_en": "Frequency of 0 864 has what callsign?",
    "question_th": "ความถี่ 0 864 มีสัญญาณเรียกอะไร?",
    "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_en": "What club has a home score of 0-2 in Round 1?",
    "question_th": "สโมสรใดมีสกอร์เจ้าบ้าน 0-2 ในรอบ 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_en": "What is NK Rijeka's away score in Round 2?",
    "question_th": "คะแนนทีมเยือนของ NK Rijeka ในรอบ 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_en": "What is NK Rijeka's away score?",
    "question_th": "สกอร์ทีมเยือนของ เอ็นเค ริเยก้า คืออะไร?",
    "context": "CREATE TABLE table_name_75 (away VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_66 WHERE record = \"28-41\"",
    "question_en": "When did the Indians play a game with a record of 28-41?",
    "question_th": "ชาวอินเดียเล่นเกมด้วยสถิติ 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’ 03.093\"",
    "question_en": "Rank smaller than 5, and a Time of 31’ 03.093 is what rider?",
    "question_th": "อันดับน้อยกว่า 5 และเวลา 31' 03.093 คือไรเดอร์คนไหน?",
    "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_en": "Team of honda 250cc, and a Rank larger than 2, and a Rider of chris palmer is what time?",
    "question_th": "ทีมฮอนด้า 250cc และอันดับมากกว่า 2 และ Rider of chris palmer กี่โมง?",
    "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_en": "Rank larger than 8, and a Rider of chris barrett is what team?",
    "question_th": "อันดับที่มากกว่า 8 และ Rider ของ Chris Barrett คือทีมอะไร?",
    "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’ 03.093\"",
    "question_en": "Team of honda 250cc, and a Time of 31’ 03.093 has what lowest rank?",
    "question_th": "ทีมฮอนด้า 250cc และเวลา 31' 03.093 มีอันดับต่ำสุดคืออะไร?",
    "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_en": "Rank larger than 5, and a Rider of paul shoesmith belongs to what team?",
    "question_th": "อันดับที่มากกว่า 5 และ Rider of paul shoesmith อยู่ในทีมใด?",
    "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_en": "How many Total matches have a Year of career, and a Points won larger than 25?",
    "question_th": "การแข่งขันทั้งหมดมีกี่นัดในหนึ่งปีอาชีพ และคะแนนที่ชนะมากกว่า 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_en": "How many Total matches happened in 2003?",
    "question_th": "มีการแข่งขันทั้งหมดกี่ครั้งในปี 2546",
    "context": "CREATE TABLE table_name_20 (total_matches VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT MAX(points_won) FROM table_name_14 WHERE year = \"1996\"",
    "question_en": "How many points were won in 1996?",
    "question_th": "ปี 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_en": "Which Total matches is the highest one that has Points % of 70%?",
    "question_th": "การแข่งขันทั้งหมดใดคือการแข่งขันสูงสุดที่มีคะแนน % ของ 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_en": "Which Total matches is the lowest one that has a Total W-L-H of 1-2-0?",
    "question_th": "การแข่งขัน Total ใดที่ต่ำที่สุดที่มี Total WLH อยู่ที่ 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_en": "what is the winner of stage 3",
    "question_th": "ผู้ชนะในระยะที่ 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_en": "What was the Total the Year Yugoslavia had 0 Silver medals and 31 Competitors?",
    "question_th": "ผลรวมของปีที่ยูโกสลาเวียมี 0 เหรียญเงินและผู้แข่งขัน 31 คนเป็นเท่าใด",
    "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_en": "What is the Bronze in the year there was a Total of 0 medals and 6 Competitors?",
    "question_th": "เหรียญทองแดงในปีนั้นมีทั้งหมด 0 เหรียญและผู้แข่งขัน 6 คน?",
    "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_en": "In what Year did Yugoslavia have 4 Competitors with 0 medals Total?",
    "question_th": "ยูโกสลาเวียมีผู้เข้าแข่งขัน 4 คน รวม 0 เหรียญในปีใด",
    "context": "CREATE TABLE table_name_78 (year VARCHAR, total VARCHAR, competitors VARCHAR)"
  },
  {
    "answer": "SELECT gold FROM table_name_14 WHERE silver = \"1\"",
    "question_en": "In the Year Yugoslavia won 1 Silver, how many Gold medals did they win?",
    "question_th": "ในปีที่ยูโกสลาเวียได้ 1 เหรียญเงิน พวกเขาได้เหรียญทองไปกี่เหรียญ?",
    "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_en": "What is the Total medals the Year Yugoslavia had 1 Sport and won 0 Gold, Bronze or Silver?",
    "question_th": "เหรียญรวมประจำปีที่ยูโกสลาเวียมี 1 กีฬา และได้รับ 0 เหรียญทอง ทองแดง หรือเงิน คืออะไร",
    "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_en": "Rank of 5, and a Silver larger than 0 had what sum of total?",
    "question_th": "อันดับที่ 5 และเงินที่มากกว่า 0 จะมีผลรวมเป็นเท่าใด",
    "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_en": "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?",
    "question_th": "ทองคำที่เล็กกว่า 2 และอันดับ 4 และประเทศฮังการี (ฮุน) และทองแดงที่เล็กกว่า 1 มีจำนวนเงินทั้งหมดเท่าไร?",
    "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_en": "Total smaller than 7, and a Bronze larger than 1 is what amount of average silver?",
    "question_th": "ผลรวมน้อยกว่า 7 และทองแดงที่มากกว่า 1 คือเงินโดยเฉลี่ยจำนวนเท่าใด",
    "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_en": "Bronze smaller than 5, and a Silver larger than 0 is which nation?",
    "question_th": "Bronze น้อยกว่า 5 และ Silver มากกว่า 0 คือชาติใด?",
    "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_en": "What player was on the Los Angeles Dodgers?",
    "question_th": "ผู้เล่นคนไหนในทีม 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_en": "Which team did the Boston Beaneaters host at the South End Grounds?",
    "question_th": "ทีมใดที่ Boston Beaneaters เป็นเจ้าภาพที่ 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_en": "Which team opposed the Milwaukee Braves?",
    "question_th": "ทีมใดที่ต่อต้าน Milwaukee Braves?",
    "context": "CREATE TABLE table_name_92 (opponent VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_85 WHERE player = \"chuck klein\"",
    "question_en": "What was the venue where Chuck Klein played?",
    "question_th": "สถานที่ซึ่งชัค ไคลน์เล่นคือที่ไหน?",
    "context": "CREATE TABLE table_name_85 (venue VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_42 WHERE player = \"josh hamilton\"",
    "question_en": "What was the venue where Josh Hamilton played?",
    "question_th": "Josh Hamilton เล่นที่ไหน?",
    "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_en": "How man cuts were there of players who had 0 wins but had 1 player in the top 25 with more than 4 events?",
    "question_th": "มีผู้เล่นที่ชนะ 0 ครั้ง แต่มีผู้เล่น 1 คนใน 25 อันดับแรกที่มีมากกว่า 4 รายการได้อย่างไร",
    "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_en": "What was the larger number of players that played in 4 events that 2 wins but were less than 6 in the top 10?",
    "question_th": "อะไรคือจำนวนผู้เล่นที่มากกว่าที่เล่นใน 4 รายการซึ่ง 2 ชนะแต่น้อยกว่า 6 ใน 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_en": "Which Combination classification has Points classification of daniele bennati, and a Team classification of quick step?",
    "question_th": "การจัดประเภทชุดค่าผสมใดมีการจัดประเภทคะแนนของ Daniele Bennati และการจัดประเภททีมของขั้นตอนด่วน",
    "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_en": "Which Mountains classification has a Team classification of quick step?",
    "question_th": "การจัดประเภท Mountains ใดมีการจัดประเภททีมแบบก้าวเร็ว?",
    "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ínez\" AND winner = \"tom boonen\"",
    "question_en": "Which Team classification has a Combination classification of egoi martínez, and a Winner of tom boonen?",
    "question_th": "การจัดประเภททีมใดมีการจัดประเภทแบบผสมของ egoi martínez และผู้ชนะของ 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_en": "Which Combination classification has a Stage of 14?",
    "question_th": "การจำแนกประเภทชุดค่าผสมใดมีระยะ 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ínez\" AND stage = \"9\"",
    "question_en": "Which Mountains classification has a General classification of egoi martínez, and a Stage of 9?",
    "question_th": "การจำแนกประเภทเทือกเขาใดที่มีการจำแนกประเภททั่วไปของ egoi martínez และระยะที่ 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_en": "Which Mountains classification has Points classification of not awarded?",
    "question_th": "การจัดประเภทเทือกเขาใดที่มีการจำแนกคะแนนว่าไม่ได้รับ",
    "context": "CREATE TABLE table_name_48 (mountains_classification VARCHAR, points_classification VARCHAR)"
  },
  {
    "answer": "SELECT subtitles FROM table_name_85 WHERE classifaction = \"15\"",
    "question_en": "What subtitles have 15 as the classification?",
    "question_th": "คำบรรยายใดมี 15 เป็นหมวดหมู่?",
    "context": "CREATE TABLE table_name_85 (subtitles VARCHAR, classifaction VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_34 WHERE publisher = \"deltamac (hk)\"",
    "question_en": "What country has deltamac (hk) as the publisher?",
    "question_th": "ประเทศใดมี deltamac (hk) เป็นผู้จัดพิมพ์?",
    "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_en": "What is the release date that has english as the subtitles, and magna pacific as the publisher?",
    "question_th": "วันที่วางจำหน่ายที่มีภาษาอังกฤษเป็นคำบรรยาย และ Magna Pacific เป็นผู้จัดพิมพ์คือเมื่อใด",
    "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_en": "What classification has cantonese as the language, and universal pictures japan as the publisher?",
    "question_th": "การจัดประเภทใดที่มีภาษากวางตุ้งเป็นภาษา และภาพสากลของญี่ปุ่นเป็นผู้จัดพิมพ์",
    "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_en": "What sound has cantonese as the language, N/A as the classification, and spectrum dvd as the publisher?",
    "question_th": "เสียงใดที่มีภาษากวางตุ้งเป็นภาษา ไม่มีการจัดหมวดหมู่ และมีสเปกตรัมดีวีดีเป็นผู้จัดพิมพ์",
    "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_en": "What language has 20th century fox as the publisher?",
    "question_th": "สุนัขจิ้งจอกแห่งศตวรรษที่ 20 เป็นผู้จัดพิมพ์ภาษาใด",
    "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_en": "Name the M939 series with M809 series of m817 and M39 series of m51",
    "question_th": "ตั้งชื่อซีรีส์ M939 ด้วยซีรีส์ M809 ของ m817 และซีรีส์ M39 ของ 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_en": "Name the M809 seris with M939 series of M931/932",
    "question_th": "ตั้งชื่อซีรีส์ M809 ด้วยซีรีส์ M939 ของ 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_en": "Name the M809 series for short wheelbase and M939 series of M931/932",
    "question_th": "ตั้งชื่อซีรีส์ M809 สำหรับระยะฐานล้อสั้น และซีรีส์ M939 ของ 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_en": "Name the type with M809 series of m814",
    "question_th": "ตั้งชื่อประเภทด้วยซีรีส์ M809 ของ 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_en": "Name the M939 series for short wheelbase and M809 series of m817",
    "question_th": "ตั้งชื่อซีรีส์ M939 สำหรับระยะฐานล้อสั้น และซีรีส์ M809 ของ 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_en": "Name the M939 series for short wheelbase and M809 series of m817",
    "question_th": "ตั้งชื่อซีรีส์ M939 สำหรับระยะฐานล้อสั้น และซีรีส์ M809 ของ 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_en": "Who was the opponent at the game with a result of W 38-14?",
    "question_th": "คู่ต่อสู้ในเกมด้วยผล 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–16\"",
    "question_en": "What was the time of the game that had an NFL recap and a result of W 22–16?",
    "question_th": "ช่วงเวลาของเกมที่มีการสรุป NFL และผล W 22–16 คืออะไร?",
    "context": "CREATE TABLE table_name_2 (time VARCHAR, nfl_recap VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_11 WHERE label = \"cryptogramophon\"",
    "question_en": "what year was cryptogramophon released",
    "question_th": "cryptogramophon เปิดตัวในปีใด",
    "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_en": "Manufacturer of honda, and a Rank of 8 had what highest wins?",
    "question_th": "ผู้ผลิตฮอนด้าและอันดับ 8 ชนะอะไรมากที่สุด?",
    "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_en": "Points larger than 108, and a Wins of 0, and a Rank smaller than 8, and a Manufacturer of honda is what rider?",
    "question_th": "คะแนนมากกว่า 108 และชัยชนะ 0 และอันดับน้อยกว่า 8 และผู้ผลิตฮอนด้าคือไรเดอร์คนไหน?",
    "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éphane mertens\"",
    "question_en": "Rider of stéphane mertens had what lowest points?",
    "question_th": "Rider of stephane mertens มีคะแนนต่ำสุดเท่าไหร่?",
    "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_en": "Wins of 0, and a Rank larger than 6, and a Manufacturer of kawasaki, and a Rider of massimo broccoli involved what highest points?",
    "question_th": "ชนะ 0 และอันดับมากกว่า 6 และผู้ผลิตคาวาซากิและผู้ขับขี่ของบรอกโคลี Massimo เกี่ยวข้องกับคะแนนสูงสุดอะไร",
    "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_en": "Points of 26, and a Rank smaller than 27 had what sum of wins?",
    "question_th": "คะแนน 26 และอันดับน้อยกว่า 27 จะชนะรางวัลรวมเท่าใด",
    "context": "CREATE TABLE table_name_82 (wins INTEGER, points VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT ret_number FROM table_name_63 WHERE records = \"4\"",
    "question_en": "what pitcher scored 4",
    "question_th": "เหยือกอะไรได้ 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_en": "What was the rank for karen frohner with under 1266 points?",
    "question_th": "คาเรน โฟห์เนอร์ ที่มีคะแนนต่ำกว่า 1,266 คะแนนอยู่อันดับไหน",
    "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_en": "What Games covered had a round of divisional finals?",
    "question_th": "เกมใดบ้างที่มีการแข่งขันรอบแบ่งกลุ่มรอบชิงชนะเลิศ?",
    "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_en": "What is the number of Apps for Internazionale Club of Brazil?",
    "question_th": "จำนวนแอปสำหรับ 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_en": "In what Season does the Internazionale Club have more than 2 Apps?",
    "question_th": "Internazionale Club มีมากกว่า 2 แอพในฤดูกาลใด",
    "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_en": "For which group was Kim nominated in 2010 for Best International Actress?",
    "question_th": "คิมได้รับการเสนอชื่อเข้าชิงรางวัล Best International Actress ในปี 2010 สำหรับกลุ่มใด",
    "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_en": "What was the result for Thirst in 2010 at the Green Globe Film Awards?",
    "question_th": "ผลลัพธ์ของ Thirst ในปี 2010 ที่งาน 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_en": "What is the number of years that Kim was nominated at the Sitges Film Festival?",
    "question_th": "คิมได้รับการเสนอชื่อเข้าชิงในเทศกาลภาพยนตร์ซิตเกสกี่ปี?",
    "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_en": "What is the average year in which Kim was nominated for Thirst as Best Actress at the Baeksang Arts Awards?",
    "question_th": "ปีเฉลี่ยที่คิมได้รับการเสนอชื่อเข้าชิง Thirst ในฐานะนักแสดงนำหญิงยอดเยี่ยมจาก 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_en": "Which group nominated Kim in years before 2010 for Thirst?",
    "question_th": "กลุ่มใดเสนอชื่อ Kim ในหลายปีก่อนปี 2010 สำหรับ 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_en": "What is the highest year that Kim was nominated for Over the Rainbow?",
    "question_th": "ปีสูงสุดที่คิมได้รับการเสนอชื่อเข้าชิง 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_en": "Which City has a State of massachusetts, and a School of northeastern university?",
    "question_th": "เมืองใดมีรัฐแมสซาชูเซตส์และมีโรงเรียนของมหาวิทยาลัยทางตะวันออกเฉียงเหนือ",
    "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_en": "Which City has a Colony Name of northeastern crescent colony?",
    "question_th": "เมืองใดมีชื่ออาณานิคมของอาณานิคมพระจันทร์เสี้ยวตะวันออกเฉียงเหนือ",
    "context": "CREATE TABLE table_name_52 (city VARCHAR, colony_name VARCHAR)"
  },
  {
    "answer": "SELECT colony_name FROM table_name_82 WHERE state = \"west virginia\"",
    "question_en": "Which Colony Name is in west virginia?",
    "question_th": "ชื่ออาณานิคมใดอยู่ในเวสต์เวอร์จิเนีย",
    "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_en": "Which Colony Name was Founded on january 19, 2012?",
    "question_th": "ชื่ออาณานิคมใดก่อตั้งขึ้นเมื่อวันที่ 19 มกราคม 2555",
    "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_en": "What position does the player from the MLS New England Revolution team hold?",
    "question_th": "นักเตะจากทีม MLS New England Revolution ดำรงตำแหน่งอะไร?",
    "context": "CREATE TABLE table_name_35 (position VARCHAR, mls_team VARCHAR)"
  },
  {
    "answer": "SELECT mls_team FROM table_name_3 WHERE pick__number = 32",
    "question_en": "Which MLS team had a pick number of 32?",
    "question_th": "ทีม MLS ใดมีหมายเลขเลือกเป็น 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_en": "What is the pick number for the player Chris Gomez?",
    "question_th": "หมายเลขเลือกนักเตะ คริส โกเมซ คืออะไร?",
    "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_en": "Which position is the MLS team, Los Angeles Galaxy in?",
    "question_th": "ทีม MLS ลอสแอนเจลิส กาแล็กซี่ อยู่ตำแหน่งไหน?",
    "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_en": "Who is the rookie goalkeeper Rob Scherr who played before week 6?",
    "question_th": "Rob Scherr ผู้รักษาประตูมือใหม่ที่เล่นก่อนสัปดาห์ที่ 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_en": "Who is the rookie goalkeeper Mike Gabel?",
    "question_th": "ไมค์ กาเบล ผู้รักษาประตูมือใหม่คือใคร?",
    "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_en": "What was the lowest week in the month of August against Andrew Combs?",
    "question_th": "สัปดาห์ที่ต่ำที่สุดในเดือนสิงหาคมกับแอนดรูว์ คอมบ์สคือสัปดาห์ใด?",
    "context": "CREATE TABLE table_name_60 (week INTEGER, month VARCHAR, offensive VARCHAR)"
  },
  {
    "answer": "SELECT rookie FROM table_name_59 WHERE week = 6",
    "question_en": "Who was the rookie that played week 6?",
    "question_th": "ใครคือมือใหม่ที่เล่นสัปดาห์ที่ 6?",
    "context": "CREATE TABLE table_name_59 (rookie VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_6 WHERE date = \"april 13\"",
    "question_en": "What were the opponents from the April 13?",
    "question_th": "ฝ่ายตรงข้ามจากวันที่ 13 เมษายนคืออะไร?",
    "context": "CREATE TABLE table_name_6 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_35 WHERE date = \"april 19\"",
    "question_en": "What is the opponent from April 19?",
    "question_th": "คู่แข่งตั้งแต่วันที่ 19 เมษายนคืออะไร?",
    "context": "CREATE TABLE table_name_35 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT series FROM table_name_5 WHERE game = 1",
    "question_en": "What was the series standing after game 1?",
    "question_th": "ซีรีส์ยืนหยัดหลังจากเกมที่ 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_en": "What is the example in English for a tone of mid rising-falling?",
    "question_th": "อะไรคือตัวอย่างในภาษาอังกฤษสำหรับน้ำเสียงของการเพิ่มขึ้นปานกลาง?",
    "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 = \"ผ่า\"",
    "question_en": "What example in English has a Standard Thai of ผ่า?",
    "question_th": "ตัวอย่างใดในภาษาอังกฤษที่มีภาษาไทยมาตรฐานของการตัด?",
    "context": "CREATE TABLE table_name_49 (example_meaning_in_english VARCHAR, standard_thai VARCHAR)"
  },
  {
    "answer": "SELECT tone FROM table_name_65 WHERE standard_thai = \"ปลา\"",
    "question_en": "Which tone has a Standard Thai at ปลา?",
    "question_th": "โทนไหนมีภาษาไทยมาตรฐานที่ปลา?",
    "context": "CREATE TABLE table_name_65 (tone VARCHAR, standard_thai VARCHAR)"
  },
  {
    "answer": "SELECT tone FROM table_name_32 WHERE phonetic = \"[pʰaː˥˥]\"",
    "question_en": "Which tone goes with Phonetic of [pʰaː˥˥]?",
    "question_th": "โทนเสียงใดที่เข้ากับสัทศาสตร์ของ [pʰaː˥˥]?",
    "context": "CREATE TABLE table_name_32 (tone VARCHAR, phonetic VARCHAR)"
  },
  {
    "answer": "SELECT phonetic FROM table_name_88 WHERE standard_thai = \"ผ่า\"",
    "question_en": "What is the phonetic when the standard thai is ผ่า?",
    "question_th": "สัทศาสตร์เมื่อภาษาไทยมาตรฐานคือผ่าคืออะไร?",
    "context": "CREATE TABLE table_name_88 (phonetic VARCHAR, standard_thai VARCHAR)"
  },
  {
    "answer": "SELECT phonemic FROM table_name_42 WHERE phonetic = \"[pʰaː˥˥]\"",
    "question_en": "What is the phonemic when the phonetic is [pʰaː˥˥]?",
    "question_th": "สัทศาสตร์คืออะไรเมื่อสัทศาสตร์คือ [pʰaː˥˥]?",
    "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_en": "What is the s default argument without a pseudorandom number generation and no eval function?",
    "question_th": "อาร์กิวเมนต์เริ่มต้นของ s ที่ไม่มีการสร้างตัวเลขสุ่มเทียมและไม่มีฟังก์ชัน eval คืออะไร",
    "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_en": "What is the lambda function without a pseudorandom number generation, no s default argument, no functions, and no eval function?",
    "question_th": "ฟังก์ชันแลมบ์ดาที่ไม่มีการสร้างตัวเลขสุ่มเทียม ไม่มีอาร์กิวเมนต์เริ่มต้น ไม่มีฟังก์ชัน และไม่มีฟังก์ชัน eval คืออะไร",
    "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_en": "In what Venue was Surrey the Opposition in the 2nd Wicket?",
    "question_th": "เซอร์เรย์เป็นฝ่ายค้านในสถานที่ใดในประตูที่ 2?",
    "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_en": "In what Wicket in the City of Eastbourne with a Score of less than 368?",
    "question_th": "ประตูใดในเมืองอีสต์บอร์นที่มีคะแนนน้อยกว่า 368?",
    "context": "CREATE TABLE table_name_60 (wicket VARCHAR, score VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_name_87 WHERE april = 6",
    "question_en": "Which game took place April 6?",
    "question_th": "เกมใดเกิดขึ้นวันที่ 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_en": "How many Attendance in a match which scores  0:0 - 4:1 (pen)",
    "question_th": "จำนวนผู้เข้าร่วมการแข่งขันซึ่งคะแนน 0:0 - 4:1 (จุดโทษ)",
    "context": "CREATE TABLE table_name_98 (attendance INTEGER, score VARCHAR)"
  },
  {
    "answer": "SELECT league FROM table_name_17 WHERE play_off = \"–\" AND year = \"2008–09\"",
    "question_en": "Which League that has no playoffs in the Year of 2008–09?",
    "question_th": "ลีกใดที่ไม่มีรอบตัดเชือกในปี 2008–09?",
    "context": "CREATE TABLE table_name_17 (league VARCHAR, play_off VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT play_off FROM table_name_84 WHERE events = \"–\" AND season = \"a-6\"",
    "question_en": "Which Play-Off has Events of –, and a Season of a-6?",
    "question_th": "Play-Off ใดที่มีกิจกรรมของ – และฤดูกาลของ 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–06\"",
    "question_en": "Which Season has a Year of 2005–06?",
    "question_th": "ฤดูกาลใดมีปี 2548–06?",
    "context": "CREATE TABLE table_name_63 (season VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT european FROM table_name_59 WHERE play_off = \"relegated\"",
    "question_en": "Which European has a Play-Off of relegated?",
    "question_th": "ยุโรปใดมีรอบเพลย์ออฟหรือตกชั้น?",
    "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_en": "What is the lowest number of caps of the fullback player born on 13 April 1983?",
    "question_th": "กองหลังที่เกิดวันที่ 13 เมษายน พ.ศ. 2526 ติดแคปน้อยที่สุดคือเท่าใด?",
    "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_en": "What is the club/province of the player born on 12 May 1984?",
    "question_th": "สโมสร/จังหวัดของผู้เล่นที่เกิดวันที่ 12 พฤษภาคม 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_en": "What is the club/province of player Alberto Sgarbi, who played wing, with less than 2 caps?",
    "question_th": "สโมสร/จังหวัดของผู้เล่นอัลแบร์โต สการ์บีที่เล่นปีกและติดทีมชาติน้อยกว่า 2 นัดคือสโมสรใด?",
    "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_en": "What games have the event of Men's Slalom?",
    "question_th": "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_en": "What were the events in the 1976 Innsbruck Games?",
    "question_th": "เหตุการณ์ในเกมอินส์บรุคปี 1976 มีอะไรบ้าง?",
    "context": "CREATE TABLE table_name_60 (event VARCHAR, games VARCHAR)"
  },
  {
    "answer": "SELECT medal FROM table_name_1 WHERE event = \"men's giant slalom\"",
    "question_en": "What is the medal for the Men's Giant Slalom event?",
    "question_th": "เหรียญรางวัลจากรายการ Men's Giant Slalom คืออะไร?",
    "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_en": "In the tournament that has 15 events, and less than 6 top-25's, how many top-5's did he have?",
    "question_th": "ในทัวร์นาเมนต์ที่มี 15 รายการและมี 25 อันดับแรกไม่ถึง 6 รายการ เขามีรายการ 5 อันดับแรกกี่รายการ?",
    "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_en": "In the tournament that had 3 Top-10's, and less than 15 events, how many Top-5's did the player have?",
    "question_th": "ในทัวร์นาเมนต์ที่มี 3 อันดับสูงสุด 10 อันดับ และน้อยกว่า 15 รายการ ผู้เล่นมีอันดับท็อป 5 กี่รายการ",
    "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_en": "How many wins were in the Masters Tournament with less than 15 events?",
    "question_th": "มีชัยชนะกี่ครั้งในการแข่งขัน Masters Tournament โดยมีกิจกรรมน้อยกว่า 15 รายการ",
    "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_en": "In the tournament with more than 6 top-25's and less than 13 cuts made, how many wins were there?",
    "question_th": "ในทัวร์นาเมนต์ที่มีอันดับท็อป 25 มากกว่า 6 อันดับและตัดตัวน้อยกว่า 13 ครั้ง มีชัยชนะกี่ครั้ง?",
    "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_en": "Which father had william iv as a husband?",
    "question_th": "พ่อคนไหนมีวิลเลียม iv เป็นสามี?",
    "context": "CREATE TABLE table_name_98 (father VARCHAR, husband VARCHAR)"
  },
  {
    "answer": "SELECT death FROM table_name_82 WHERE image = \"elisabeth of lorraine\"",
    "question_en": "What is the death date of elisabeth of lorraine?",
    "question_th": "อลิซาเบธแห่งลอเรนตายวันไหน?",
    "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_en": "Which duchess was born on 9 october 1574?",
    "question_th": "ดัชเชสองค์ใดประสูติเมื่อวันที่ 9 ตุลาคม พ.ศ. 2117",
    "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_en": "Which image is of the woman married to william iv?",
    "question_th": "ภาพใดของผู้หญิงที่แต่งงานกับวิลเลียมที่ 4",
    "context": "CREATE TABLE table_name_86 (image VARCHAR, husband VARCHAR)"
  },
  {
    "answer": "SELECT husband FROM table_name_87 WHERE image = \"renata of lorraine\"",
    "question_en": "Who is the husband of the image of renata of lorraine?",
    "question_th": "ใครคือสามีของภาพลักษณ์ของ 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_en": "Who was the husband of marie of baden-sponheim?",
    "question_th": "ใครเป็นสามีของมารีแห่งบาเดน-สปอนไฮม์?",
    "context": "CREATE TABLE table_name_74 (husband VARCHAR, image VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_30 WHERE home = \"chicago\"",
    "question_en": "Who was the visiting team at the Chicago home game?",
    "question_th": "ทีมเยือนในเกมเหย้าชิคาโกคือใคร?",
    "context": "CREATE TABLE table_name_30 (visitor VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_67 WHERE home = \"colorado\"",
    "question_en": "What was the date of the home game for Colorado?",
    "question_th": "เกมในบ้านของโคโลราโดคือวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_67 (date VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_55 WHERE home = \"st. louis\"",
    "question_en": "What was the date of the game when St. Louis was the home team?",
    "question_th": "ในเกมวันที่เซนต์หลุยส์เป็นเจ้าบ้านคือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_55 (date VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_26 WHERE record = \"51–12–4\"",
    "question_en": "Who was the visiting team when the record was 51–12–4?",
    "question_th": "ทีมเยือนคือใครเมื่อทำสถิติ 51–12–4?",
    "context": "CREATE TABLE table_name_26 (visitor VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_87 WHERE home = \"hartford\"",
    "question_en": "What was the date of the home game for Hartford?",
    "question_th": "เกมเหย้าของฮาร์ตฟอร์ดคือวันที่เท่าไร?",
    "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_en": "What is the average attendance for seasons before 1999 with pos of 8?",
    "question_th": "ผู้เข้าชมเฉลี่ยในฤดูกาลก่อนปี 1999 โดยได้ 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_en": "What is the socket for the processor with part number ADH2350IAA5DO?",
    "question_th": "ซ็อกเก็ตสำหรับโปรเซสเซอร์ที่มีหมายเลขชิ้นส่วน 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_en": "What is the multi 1 for the Athlon x2 BE-2400?",
    "question_th": "multi 1 สำหรับ 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_en": "What is the stepping for the processor released June 5, 2007?",
    "question_th": "Stepping สำหรับโปรเซสเซอร์ที่เปิดตัวเมื่อวันที่ 5 มิถุนายน 2550 คืออะไร?",
    "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_en": "What is the v-core for a stepping of G1 and frequency of 1900MHz?",
    "question_th": "v-core สำหรับการก้าว G1 และความถี่ 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_en": "What was the name in English that had a Stat of 7th cut?",
    "question_th": "ชื่อภาษาอังกฤษที่มีสถานะการตัดครั้งที่ 7 คืออะไร?",
    "context": "CREATE TABLE table_name_43 (english_name VARCHAR, stat VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_1 WHERE runner_up = \"alberto mancini\"",
    "question_en": "Who was the winner in the event with a runner-up of Alberto Mancini?",
    "question_th": "ใครเป็นผู้ชนะในงานร่วมกับรองแชมป์อัลแบร์โต มันชินี?",
    "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_en": "What was the series score when st. louis was away on april 18?",
    "question_th": "คะแนนซีรีส์เมื่อเซนต์. หลุยส์ไม่อยู่วันที่ 18 เมษายน?",
    "context": "CREATE TABLE table_name_96 (series VARCHAR, visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT decision FROM table_name_41 WHERE visitor = \"philadelphia\"",
    "question_en": "Who recorded the decision when philadelphia was away?",
    "question_th": "ใครเป็นผู้บันทึกการตัดสินใจเมื่อฟิลาเดลเฟียไม่อยู่?",
    "context": "CREATE TABLE table_name_41 (decision VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_44 WHERE date = \"september 30\"",
    "question_en": "What was the home team's record on September 30?",
    "question_th": "บันทึกของทีมเจ้าบ้านเมื่อวันที่ 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_en": "What was the home team's record when they played the Twins on September 25?",
    "question_th": "สถิติของเจ้าบ้านตอนเจอเดอะทวินส์เมื่อวันที่ 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_en": "What was the home team's record when they played the Devil Rays on September 6?",
    "question_th": "สถิติของเจ้าบ้านตอนเล่นเดวิลเรย์สเมื่อวันที่ 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_en": "What team did the home team play on September 4?",
    "question_th": "เจ้าบ้านเล่นทีมอะไรในวันที่ 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_en": "What was Freddie Starr, who entered on Day 1, known for?",
    "question_th": "Freddie Starr ที่เข้ามาในวันที่ 1 เป็นที่รู้จักในเรื่องอะไร?",
    "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_en": "Who exited on Day 12?",
    "question_th": "ใครออกวันที่ 12 บ้าง?",
    "context": "CREATE TABLE table_name_64 (celebrity VARCHAR, exited VARCHAR)"
  },
  {
    "answer": "SELECT exited FROM table_name_53 WHERE finished = \"12th\"",
    "question_en": "What day did the person who finished in 12th place leave on?",
    "question_th": "คนที่จบอันดับที่ 12 ออกเดินทางวันไหน?",
    "context": "CREATE TABLE table_name_53 (exited VARCHAR, finished VARCHAR)"
  },
  {
    "answer": "SELECT finished FROM table_name_54 WHERE exited = \"day 3\"",
    "question_en": "What place did the person who left on day 3 finish in?",
    "question_th": "คนที่จากไปในวันที่ 3 จบที่ใด?",
    "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_en": "On which day did the person who is known for the only way is essex star enter?",
    "question_th": "คนที่รู้จักกันทางเดียวคือเอสเซ็กซ์สตาร์เข้าวันไหน?",
    "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_en": "What was Freddie Starr, who entered on Day 1, known for?",
    "question_th": "Freddie Starr ที่เข้ามาในวันที่ 1 เป็นที่รู้จักในเรื่องอะไร?",
    "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_en": "Name the date for week more than 1 and game site of bye",
    "question_th": "ตั้งชื่อวันที่สำหรับสัปดาห์มากกว่า 1 และเว็บไซต์เกมบาย",
    "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_en": "Name the opponent for date of bye and week of 1",
    "question_th": "ตั้งชื่อคู่ต่อสู้ตามวันที่ลาและสัปดาห์ที่ 1",
    "context": "CREATE TABLE table_name_39 (opponent VARCHAR, date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_6 WHERE week = 2",
    "question_en": "Name the opponent for week of 2",
    "question_th": "ตั้งชื่อคู่ต่อสู้ในสัปดาห์ที่ 2",
    "context": "CREATE TABLE table_name_6 (opponent VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT team_classification FROM table_name_13 WHERE points_classification = \"josé maría jiménez\" AND winner = \"beat zberg\"",
    "question_en": "What is the team classification with a winner of Beat Zberg, and a points classification of José María Jiménez.",
    "question_th": "การจัดประเภททีมกับผู้ชนะของ Beat Zberg คืออะไร และการจัดประเภทคะแนนของ José María Jiménez",
    "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_en": "When was the person who died on 16 July 1946 born?",
    "question_th": "บุคคลที่เสียชีวิตในวันที่ 16 กรกฎาคม พ.ศ. 2489 เกิดเมื่อใด",
    "context": "CREATE TABLE table_name_3 (birth VARCHAR, death VARCHAR)"
  },
  {
    "answer": "SELECT spouse FROM table_name_82 WHERE birth = \"29 september 1766\"",
    "question_en": "Who is the spouse of the person born on 29 September 1766?",
    "question_th": "คู่สมรสของผู้ที่เกิดวันที่ 29 กันยายน พ.ศ. 2309 คือใคร?",
    "context": "CREATE TABLE table_name_82 (spouse VARCHAR, birth VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_20 WHERE birth = \"29 september 1766\"",
    "question_en": "Who is born on 29 September 1766?",
    "question_th": "ใครเกิดวันที่ 29 กันยายน พ.ศ. 2309?",
    "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_en": "Who was born on 10 May 1788 that ceased to be queen?",
    "question_th": "ใครเกิดเมื่อวันที่ 10 พฤษภาคม พ.ศ. 2331 และสิ้นพระชนม์เป็นราชินี?",
    "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_en": "How is the marriage of who became queen on 30 October 1816 husband's accession?",
    "question_th": "การอภิเษกสมรสของผู้ที่ขึ้นเป็นราชินีเมื่อวันที่ 30 ตุลาคม พ.ศ. 2359 ของสามีเป็นอย่างไรบ้าง?",
    "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_en": "When was the person who became queen on 15 April 1820 born?",
    "question_th": "ผู้เป็นราชินีในวันที่ 15 เมษายน พ.ศ. 2363 ประสูติเมื่อใด",
    "context": "CREATE TABLE table_name_79 (birth VARCHAR, became_queen VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_59 WHERE date = \"april 2\"",
    "question_en": "What is their record on April 2?",
    "question_th": "บันทึกของพวกเขาในวันที่ 2 เมษายนคืออะไร?",
    "context": "CREATE TABLE table_name_59 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_8 WHERE record = \"11-6\"",
    "question_en": "Which team has the record of 11-6?",
    "question_th": "ทีมใดมีสถิติ 11-6?",
    "context": "CREATE TABLE table_name_8 (loss VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_81 WHERE round > 1",
    "question_en": "What was his record when he went over 1 round?",
    "question_th": "สถิติของเขาเมื่อทะลุ 1 รอบเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_81 (record VARCHAR, round INTEGER)"
  },
  {
    "answer": "SELECT event FROM table_name_51 WHERE record = \"2-0\"",
    "question_en": "What event did he have a 2-0 record?",
    "question_th": "เขามีสถิติ 2-0 เหตุการณ์อะไร?",
    "context": "CREATE TABLE table_name_51 (event VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT res FROM table_name_80 WHERE opponent = \"dan bobish\"",
    "question_en": "What was his result against dan bobish?",
    "question_th": "ผลลัพธ์ของเขากับแดนโบบิชคืออะไร?",
    "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_en": "Which Voltage Center (V) has an S-Spec Number of sk096?",
    "question_th": "ศูนย์แรงดันไฟฟ้า (V) ใดมีหมายเลข S-Spec เป็น 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_en": "Which Voltage Center (V) has an Input Clock (MHz) of 25 x 3, and a Part Number of a80486dx4-75?",
    "question_th": "Voltage Center (V) ใดมีนาฬิกาอินพุต (MHz) 25 x 3 และหมายเลขชิ้นส่วน 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_en": "What is the low gold total for under 2 total and over 0 silvers?",
    "question_th": "ยอดรวมทองคำต่ำสำหรับยอดรวมต่ำกว่า 2 เหรียญเงินและมากกว่า 0 เหรียญคือเท่าใด",
    "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_en": "How many silvers for the nation with under 6 total and under 0 bronze?",
    "question_th": "จำนวนเหรียญเงินสำหรับประเทศที่มีคะแนนรวมต่ำกว่า 6 และต่ำกว่า 0 เหรียญทองแดง",
    "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_en": "The person that was notable for professional wrestling had a Born-Died of what year?",
    "question_th": "บุคคลที่มีชื่อเสียงในวงการมวยปล้ำอาชีพเกิด-เสียชีวิตในปีใด?",
    "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_en": "The person that was born in Sydney died in what year?",
    "question_th": "คนที่เกิดที่ซิดนี่ย์เสียชีวิตปีไหนคะ?",
    "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_en": "The person notable for tennis died in what year?",
    "question_th": "บุคคลที่มีชื่อเสียงด้านกีฬาเทนนิสเสียชีวิตในปีใด",
    "context": "CREATE TABLE table_name_1 (born___died VARCHAR, notable_for VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_36 WHERE home = \"oakland seals\"",
    "question_en": "What was the record when the team played at Oakland Seals?",
    "question_th": "บันทึกเมื่อทีมเล่นที่ 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_en": "What was the purse when the trainer was Aidan O'Brien?",
    "question_th": "กระเป๋าเงินเมื่อเทรนเนอร์คือ 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_en": "What is the time for when cornelio velasquez was the jockey?",
    "question_th": "คอร์เนลิโอ เบลาสเกซเป็นจ๊อกกี้กี่โมง?",
    "context": "CREATE TABLE table_name_12 (time VARCHAR, jockey VARCHAR)"
  },
  {
    "answer": "SELECT jockey FROM table_name_75 WHERE owner = \"richard pegum\"",
    "question_en": "Who was the jockey when the owner was Richard Pegum?",
    "question_th": "ใครคือจ๊อกกี้เมื่อเจ้าของคือ 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_en": "What is the purse when Aidan O'brien was the trainer?",
    "question_th": "กระเป๋าเงินเมื่อ Aidan O'brien เป็นเทรนเนอร์คืออะไร?",
    "context": "CREATE TABLE table_name_95 (purse VARCHAR, trainer VARCHAR)"
  },
  {
    "answer": "SELECT purse FROM table_name_82 WHERE year < 2013 AND winner = \"muhannak\"",
    "question_en": "What is the purse for the year earlier than 2013 and muhannak was the winner?",
    "question_th": "กระเป๋าเงินสำหรับปีก่อนหน้าปี 2556 คืออะไรและมูฮันนาคเป็นผู้ชนะ?",
    "context": "CREATE TABLE table_name_82 (purse VARCHAR, year VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT trainer FROM table_name_71 WHERE year = 2013",
    "question_en": "Who was the trainer in 2013?",
    "question_th": "ใครคือผู้ฝึกสอนในปี 2556?",
    "context": "CREATE TABLE table_name_71 (trainer VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT throws FROM table_name_2 WHERE dob = \"19/10/81\"",
    "question_en": "Which throw number had a DOB of 19/10/81?",
    "question_th": "หมายเลขการโยนใดมี DOB เท่ากับ 19/10/81",
    "context": "CREATE TABLE table_name_2 (throws VARCHAR, dob VARCHAR)"
  },
  {
    "answer": "SELECT first FROM table_name_76 WHERE surname = \"cook\"",
    "question_en": "Which first's surname is Cook?",
    "question_th": "นามสกุลอะไรคือกุ๊ก?",
    "context": "CREATE TABLE table_name_76 (first VARCHAR, surname VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_14 WHERE bats = \"l\" AND surname = \"anderson\"",
    "question_en": "Which position has L bats and Anderson as a surname?",
    "question_th": "ตำแหน่งใดมี L bats และ Anderson เป็นนามสกุล?",
    "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ée\"",
    "question_en": "What is the team 2 with a team 1 us gorée?",
    "question_th": "ทีม 2 กับ ทีม 1 us gorée คืออะไร?",
    "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_en": "What is the 2nd leg of team 1 Zamalek SC?",
    "question_th": "นัดที่ 2 ของทีม 1 ซามาเล็ค เอสซี คืออะไร?",
    "context": "CREATE TABLE table_name_31 (team_1 VARCHAR)"
  },
  {
    "answer": "SELECT 1 AS st_leg FROM table_name_13 WHERE agg = \"2-1\"",
    "question_en": "What is the 1st leg of the team with a 2-1 agg.?",
    "question_th": "เลก 1 ของทีมสกอร์รวม 2-1 คืออะไร?",
    "context": "CREATE TABLE table_name_13 (agg VARCHAR)"
  },
  {
    "answer": "SELECT 2 AS nd_leg FROM table_name_92 WHERE team_2 = \"far rabat\"",
    "question_en": "What is the 2nd leg of team 2 Far rabat?",
    "question_th": "เลกที่ 2 ของทีม 2 ฟาร์ ราบัต คืออะไร?",
    "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_en": "How many Watts has a Class of a, and a Frequency of 91.5 fm, and a City of license of elkhart, kansas?",
    "question_th": "กี่วัตต์มีคลาส a และความถี่ 91.5 fm และมีเมืองที่ได้รับใบอนุญาตจากเอลคาร์ต แคนซัส",
    "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_en": "Which Class has a City of license of garden city, kansas?",
    "question_th": "ชั้นเรียนใดมีเมืองที่ได้รับใบอนุญาตจาก 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_en": "Which Frequency has a Call sign of kcse?",
    "question_th": "ความถี่ใดมีสัญญาณเรียกขานเป็น kcse",
    "context": "CREATE TABLE table_name_93 (frequency VARCHAR, call_sign VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_58 WHERE finish_position = \"59th\"",
    "question_en": "What year has 59th as a finish position?",
    "question_th": "ปีไหนมีตำแหน่งจบอันดับที่ 59?",
    "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_en": "Which 2nd day has a year prior to 2009?",
    "question_th": "วันที่ 2 ของปีก่อนปี 2552 คือวันที่ 2 ใด",
    "context": "CREATE TABLE table_name_4 (year INTEGER)"
  },
  {
    "answer": "SELECT event FROM table_name_82 WHERE medal = \"bronze\" AND games = \"1988 seoul\"",
    "question_en": "What event did Pakistan get the bronze medal at the 1988 Seoul Games?",
    "question_th": "ปากีสถานได้รับเหรียญทองแดงในการแข่งขันกีฬาโอลิมปิกปี 1988 ในด้านใด",
    "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_en": "What sport in the 1960 Rome Games did Pakistan play in the Men's Freestyle Welterweight?",
    "question_th": "ปากีสถานเล่นกีฬาประเภทใดในโรมเกมส์ 1960 ในรุ่นเวลเตอร์เวตชายฟรีสไตล์",
    "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_en": "When did Pakistan win a Silver Medal in a Men's Competition?",
    "question_th": "ปากีสถานชนะเหรียญเงินในการแข่งขันชายเมื่อใด",
    "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_en": "When did Pakistan win a Gold Medal in Field Hockey?",
    "question_th": "ปากีสถานได้รับเหรียญทองในกีฬาฮอกกี้เมื่อใด",
    "context": "CREATE TABLE table_name_19 (games VARCHAR, sport VARCHAR, medal VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_56 WHERE games = \"1964 tokyo\"",
    "question_en": "What team played in the 1964 Tokyo Games?",
    "question_th": "ทีมใดเล่นในโตเกียวเกมส์ 1964?",
    "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_en": "What sport did the National Team play in the 1968 mexico City Games?",
    "question_th": "ทีมชาติเล่นกีฬาอะไรในเม็กซิโกซิตี้เกมส์ 1968?",
    "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_en": "What is the total number of rounds that Center position Denis Arkhipov have?",
    "question_th": "จำนวนรอบทั้งหมดที่ตำแหน่งเซ็นเตอร์ เดนิส อาร์คิปอฟ มีคือเท่าไร?",
    "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_en": "Who is the player from Round 3 from Russia?",
    "question_th": "นักเตะรอบ 3 จากรัสเซียคือใคร?",
    "context": "CREATE TABLE table_name_17 (player VARCHAR, round VARCHAR, nationality VARCHAR)"
  },
  {
    "answer": "SELECT SUM(round) FROM table_name_41 WHERE position = \"defenceman\"",
    "question_en": "What is the sum of the round with the defenceman?",
    "question_th": "ผลรวมของรอบกับกองหลังคือเท่าไร?",
    "context": "CREATE TABLE table_name_41 (round INTEGER, position VARCHAR)"
  },
  {
    "answer": "SELECT college_junior_club_team FROM table_name_85 WHERE round < 3",
    "question_en": "What is the college club that plays before round 3?",
    "question_th": "สโมสรวิทยาลัยที่เล่นก่อนรอบ 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_en": "What was the population of the area that was formerly under the authority of the Audenshaw Urban District?",
    "question_th": "ประชากรในพื้นที่ที่เคยอยู่ภายใต้อำนาจของ 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_en": "What is the overall pick number that Derrick Harvey was when he was picked in a round after round 1?",
    "question_th": "หมายเลขการเลือกโดยรวมของ Derrick Harvey คืออะไรเมื่อเขาถูกเลือกในรอบหลังรอบที่ 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_en": "What college was the defensive end pick that was picked in round 2?",
    "question_th": "วิทยาลัยใดคือทีมรับที่ได้รับเลือกในรอบที่ 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_en": "What is the average round that the player from USF was picked in when his draft pick number was less than 24?",
    "question_th": "รอบเฉลี่ยที่ผู้เล่นจาก USF ถูกเลือกเมื่อจำนวนดราฟต์ของเขาน้อยกว่า 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_en": "What is the sum of the pick numbers where the player was picked in round 5 and overall pick number was greater than 159?",
    "question_th": "ผลรวมของหมายเลขเลือกที่ผู้เล่นถูกเลือกในรอบที่ 5 และหมายเลขเลือกโดยรวมมากกว่า 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_en": "What is the average overall pick number for the USF player who was picked after round 5?",
    "question_th": "หมายเลขการเลือกโดยรวมโดยเฉลี่ยของผู้เล่น USF ที่ถูกเลือกหลังรอบที่ 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_en": "Which Population is the lowest one that has a Median family income of $74,905, and a Number of households smaller than 145,790?",
    "question_th": "ประชากรใดเป็นกลุ่มที่ต่ำที่สุดที่มีรายได้เฉลี่ยของครอบครัวอยู่ที่ 74,905 ดอลลาร์ และจำนวนครัวเรือนที่น้อยกว่า 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_en": "What is the total number of Rapes that have Embezzlements a figure of 820 and total number of convictions less than 94,574?",
    "question_th": "จำนวนคดีข่มขืนที่มีการยักยอกเงิน 820 คดี และจำนวนการพิพากษาลงโทษทั้งหมดน้อยกว่า 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_en": "How many were in Attendance during a Tie no of 1?",
    "question_th": "มีผู้เข้าร่วมกี่คนในระหว่างที่เสมอกันที่ 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_en": "What was the Attendance during the Tamworth Away game?",
    "question_th": "ผู้เข้าชมระหว่างเกมเยือนแทมเวิร์ธเป็นอย่างไรบ้าง?",
    "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_en": "Which 1st prize ($) has a Winner of scott simpson (7)?",
    "question_th": "รางวัลที่ 1 ($) มีผู้ชนะ 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_en": "How many 1st prizes have a Date of aug 17?",
    "question_th": "รางวัลที่ 1 มีวันที่ 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_en": "Which Tournament has a Location of texas, and a Winner of tom watson (39)?",
    "question_th": "การแข่งขันใดมีที่ตั้งของเท็กซัสและเป็นผู้ชนะของทอม วัตสัน (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_en": "What was the resolution for KO opposing Cliff Beckett?",
    "question_th": "ความละเอียดของน็อกฝ่ายตรงข้าม คลิฟ เบ็คเค็ตต์ คืออะไร?",
    "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–1–2\"",
    "question_en": "What is the type when Robert Villemain had a record at 109–1–2?",
    "question_th": "ประเภทไหนที่ Robert Villemain มีสถิติที่ 109–1–2?",
    "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_en": "What is the platform & frequency [MHz] of the whr-g54s model?",
    "question_th": "แพลตฟอร์มและความถี่ [MHz] ของรุ่น Whr-g54s คืออะไร?",
    "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_en": "What is the voltage iinput [V/A] of the whr-g54s model?",
    "question_th": "แรงดันไฟฟ้า iinput [V/A] ของรุ่น whr-g54s คือเท่าไร?",
    "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_en": "What is the Ethernet port count of the whr-hp-g300n model?",
    "question_th": "จำนวนพอร์ต Ethernet ของรุ่น whr-hp-g300n คือเท่าใด",
    "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 = \"–\"",
    "question_en": "Which Year has an Album of airwaves, and a US Hot 100 of –?",
    "question_th": "ปีใดที่มีอัลบั้มคลื่นวิทยุและ US Hot 100 ของ –?",
    "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_en": "Which Song has a Year smaller than 1979, and a US Hot 100 of 8?",
    "question_th": "เพลงใดที่มีปีที่น้อยกว่าปี 1979 และติดอันดับ US Hot 100 จาก 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_en": "What is the series record for the game on April 24?",
    "question_th": "สถิติซีรีส์ของเกมในวันที่ 24 เมษายนเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_41 (series VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_name_50 WHERE date = \"april 27\"",
    "question_en": "What was the game number that took place on April 27?",
    "question_th": "หมายเลขเกมที่เกิดขึ้นในวันที่ 27 เมษายนคืออะไร?",
    "context": "CREATE TABLE table_name_50 (game VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_82 WHERE attendance = \"6,275\"",
    "question_en": "Which Opponent has a Attendance of 6,275?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีผู้เข้าร่วม 6,275 คน?",
    "context": "CREATE TABLE table_name_82 (opponent VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_29 WHERE attendance = \"7,034\"",
    "question_en": "Which Opponent has a Attendance of 7,034?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีผู้เข้าร่วม 7,034 คน?",
    "context": "CREATE TABLE table_name_29 (opponent VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_13 WHERE result = \"0–2\" AND opponent = \"aberdeen\"",
    "question_en": "When has a Result of 0–2 and a Opponent of aberdeen?",
    "question_th": "เมื่อใดที่ผลการแข่งขันเป็น 0–2 และฝ่ายตรงข้ามของอเบอร์ดีน?",
    "context": "CREATE TABLE table_name_13 (date VARCHAR, result VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_58 WHERE result = \"2–2\" AND attendance = \"5,760\"",
    "question_en": "Which Venue has a Result of 2–2 and Attendances of 5,760?",
    "question_th": "สถานที่ใดมีผลการแข่งขัน 2–2 และมีผู้เข้าร่วม 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_en": "Which Venue has Attendances of 11,045?",
    "question_th": "สถานที่ใดมีผู้เข้าร่วม 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_en": "When Venue of A has Attendance of 4,365?",
    "question_th": "เมื่อสถานที่ของ A มีผู้เข้าร่วม 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_en": "What is the 1st leg of cs sfaxien?",
    "question_th": "ขาแรกของ cs sfaxien คืออะไร?",
    "context": "CREATE TABLE table_name_48 (team_2 VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_94 WHERE player = \"lee janzen\"",
    "question_en": "Name the finish for lee janzen",
    "question_th": "ตั้งชื่อตอนจบให้ลีแจนเซน",
    "context": "CREATE TABLE table_name_94 (finish VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(total) FROM table_name_14 WHERE to_par > 16",
    "question_en": "Name the most total with to par more than 16",
    "question_th": "ตั้งชื่อผลรวมสูงสุดโดยให้พาร์มากกว่า 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_en": "What was the Steeler's record when they played against the new york Jets?",
    "question_th": "สตีลเลอร์มีสถิติอะไรบ้างเมื่อพวกเขาเล่นกับนิวยอร์ก เจ็ตส์?",
    "context": "CREATE TABLE table_name_95 (record VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_24 WHERE date = \"december 8, 1963\"",
    "question_en": "What is the Result from the Date that is December 8, 1963?",
    "question_th": "ผลลัพธ์จากวันที่ 8 ธันวาคม 2506 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_24 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_28 WHERE attendance = 960",
    "question_en": "What is the date when the attendance is 960?",
    "question_th": "ผู้เข้าร่วมคือวันที่เท่าไร 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_en": "What is the date of the away venue with an opponent of wightlink raiders with an attendance larger than 375?",
    "question_th": "วันที่ของสนามเยือนกับคู่ต่อสู้ของไวท์ลิงค์ไรเดอร์ที่มีผู้ชมมากกว่า 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_en": "What is the average attendance when the opponent is telford tigers?",
    "question_th": "ผู้เข้าร่วมโดยเฉลี่ยคือเท่าไรเมื่อคู่ต่อสู้เป็นเสือเทลฟอร์ด?",
    "context": "CREATE TABLE table_name_75 (attendance INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_44 WHERE attendance = 960",
    "question_en": "What is the result when the attendance is 960?",
    "question_th": "เมื่อผู้เข้าร่วมครบ 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_en": "Name the tournament for 2006 of a, 1996 of 1r and 2004 of 1r",
    "question_th": "ตั้งชื่อทัวร์นาเมนต์สำหรับปี 2549 ของ a, 1996 ของ 1r และ 2004 ของ 1r",
    "context": "CREATE TABLE table_name_68 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2003 FROM table_name_83 WHERE 1998 = \"atp masters series\"",
    "question_en": "Name the 2003 for atp masters series 1998",
    "question_th": "ตั้งชื่อปี 2003 สำหรับ 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_en": "Name the 1997 for atp masters series 1992",
    "question_th": "ตั้งชื่อปี 1997 สำหรับ atp masters series ปี 1992",
    "context": "CREATE TABLE table_name_65 (Id VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_84 WHERE county = \"brule\"",
    "question_en": "what city is brule in",
    "question_th": "เมืองไหนที่โหดเหี้ยม",
    "context": "CREATE TABLE table_name_84 (city VARCHAR, county VARCHAR)"
  },
  {
    "answer": "SELECT performer_3 FROM table_name_67 WHERE performer_2 = \"karen maruyama\"",
    "question_en": "Who was performer 3 with karen maruyama as performer 2?",
    "question_th": "ใครคือนักแสดงคนที่ 3 โดยมีคาเรน มารุยามะเป็นนักแสดงคนที่ 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_en": "What day was wayne brady performer 2, ryan stiles performer 4, and an episode number greater than 5?",
    "question_th": "วันไหนที่เวย์น เบรดี้ นักแสดงคนที่ 2, ไรอัน สไตลส์ นักแสดงคนที่ 4 และตอนที่มากกว่า 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_en": "Which course has a flat stage on 4 September?",
    "question_th": "สนามไหนมีเวทีแบนวันที่ 4 กันยายน?",
    "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_en": "What is the date for the La Granja de San Ildefonso to Alto de Navacerrada course?",
    "question_th": "หลักสูตร La Granja de San Ildefonso ถึง Alto de Navacerrada คือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_67 (date VARCHAR, course VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_33 WHERE course = \"granada\"",
    "question_en": "Who won the Granada course?",
    "question_th": "ใครชนะหลักสูตรกรานาดา?",
    "context": "CREATE TABLE table_name_33 (winner VARCHAR, course VARCHAR)"
  },
  {
    "answer": "SELECT distance FROM table_name_69 WHERE date = \"5 september\"",
    "question_en": "What is the distance for the 5 September race?",
    "question_th": "วิ่งวันที่ 5 กันยายน ระยะทางเท่าไหร่?",
    "context": "CREATE TABLE table_name_69 (distance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_64 WHERE course = \"jaén to córdoba\"",
    "question_en": "What is the race date for the course Jaén to Córdoba?",
    "question_th": "วันที่แข่งขันสำหรับหลักสูตร Jaén ถึง Córdoba คือเมื่อใด",
    "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_en": "What was the average election year that has less than 136 deputies, and 1,560,753 votes received?",
    "question_th": "ปีการเลือกตั้งเฉลี่ยที่มีผู้แทนน้อยกว่า 136 คน และได้รับคะแนนเสียง 1,560,753 เสียงคือเท่าใด",
    "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_en": "What percentage of the vote was 1,255,153 of received votes?",
    "question_th": "คะแนนเสียงที่ได้รับ 1,255,153 เสียง คิดเป็นร้อยละเท่าใด",
    "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_en": "What were the number of deputies for the 1964 election year?",
    "question_th": "การเลือกตั้งปี พ.ศ. 2507 มีผู้แทนจำนวนเท่าใด",
    "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_en": "What is the number of deputies with 94.2% of the votes?",
    "question_th": "ส.ส.ที่ได้รับคะแนนเสียง 94.2% มีกี่คน?",
    "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_en": "What was deputies with the lowest number of unknown received votes, in an election year after 1986?",
    "question_th": "เจ้าหน้าที่คนใดที่ไม่ทราบจำนวนต่ำสุดที่ได้รับคะแนนเสียงในปีการเลือกตั้งหลังปี 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_en": "Which Result has a Date of 7 june 2000?",
    "question_th": "ผลลัพธ์ใดมีวันที่ 7 มิถุนายน 2000",
    "context": "CREATE TABLE table_name_36 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_46 WHERE date = \"21 june 2000\"",
    "question_en": "Which Venue has a Date of 21 june 2000?",
    "question_th": "สถานที่ใดมีวันที่ 21 มิถุนายน 2543",
    "context": "CREATE TABLE table_name_46 (venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_37 WHERE venue = \"jan breydel, bruges, belgium\"",
    "question_en": "Which Competition has a Venue of jan breydel, bruges, belgium?",
    "question_th": "การแข่งขันใดมีสถานที่ของ ยาน เบรย์เดล, บรูจส์, เบลเยียม?",
    "context": "CREATE TABLE table_name_37 (competition VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_11 WHERE result = \"3–4\"",
    "question_en": "Which Date has a Result of 3–4?",
    "question_th": "วันที่ใดมีผลลัพธ์เป็น 3–4",
    "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_en": "Game site of shea stadium, and a Week smaller than 10, and a Opponent of baltimore colts happened on what date?",
    "question_th": "เว็บไซต์เกมของ Shea Stadium และ a Week ที่น้อยกว่า 10 และฝ่ายตรงข้ามของ baltimore colts เกิดขึ้นในวันที่ใด?",
    "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_en": "Game site of candlestick park had what opponent?",
    "question_th": "เว็บไซต์เกมของสวนเชิงเทียนมีคู่ต่อสู้อะไร?",
    "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_en": "Game site of miami orange bowl, and a Attendance larger than 49,754 happened on what highest week?",
    "question_th": "เว็บไซต์เกม Miami Orange Bowl และมีผู้เข้าร่วมมากกว่า 49,754 คนเกิดขึ้นในสัปดาห์สูงสุดใด",
    "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_en": "Opponent of denver broncos happened on what date?",
    "question_th": "ฝ่ายตรงข้ามเดนเวอร์ บรองโกส์ เกิดขึ้นวันไหน?",
    "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_en": "Name the score when february is more than 24 and has a record of 9-8-2",
    "question_th": "ตั้งชื่อสกอร์เมื่อเดือนกุมภาพันธ์ มากกว่า 24 และมีสถิติ 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_en": "Name the most game with opponent of hartford whalers",
    "question_th": "ตั้งชื่อเกมที่มีคู่ต่อสู้ของฮาร์ตฟอร์ดเวลเลอร์มากที่สุด",
    "context": "CREATE TABLE table_name_75 (game INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT distance FROM table_name_72 WHERE course = \"civitavecchia to san vincenzo\"",
    "question_en": "What is the distance for the course Civitavecchia to San Vincenzo?",
    "question_th": "ระยะทางจาก Civitavecchia ไปยัง San Vincenzo คือเท่าไร?",
    "context": "CREATE TABLE table_name_72 (distance VARCHAR, course VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_47 WHERE course = \"forlì to carpi\"",
    "question_en": "Who won at course Forlì to Carpi?",
    "question_th": "ใครชนะระหว่างฟอร์ลีกับคาร์ปิ?",
    "context": "CREATE TABLE table_name_47 (winner VARCHAR, course VARCHAR)"
  },
  {
    "answer": "SELECT distance FROM table_name_83 WHERE date = \"24 may\"",
    "question_en": "What was the distance on 24 May?",
    "question_th": "ระยะทางวันที่ 24 พ.ค. เป็นอย่างไร?",
    "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_en": "what is the runner-up for the intercontinental cup",
    "question_th": "รองชนะเลิศถ้วยอินเตอร์คอนติเนนตัลคืออะไร",
    "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_en": "Which average attendance has stoneman (0-2) as the loss?",
    "question_th": "ผู้เข้าร่วมโดยเฉลี่ยคนไหนที่สโตนแมน (0-2) แพ้?",
    "context": "CREATE TABLE table_name_18 (attendance INTEGER, loss VARCHAR)"
  },
  {
    "answer": "SELECT AVG(attendance) FROM table_name_14 WHERE date = \"april 12\"",
    "question_en": "What is the average attendance that has april 12 as the date?",
    "question_th": "ผู้เข้าร่วมโดยเฉลี่ยที่มีวันที่ 12 เมษายนเป็นวันที่เท่าไร",
    "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_en": "Clock rate (MHz) smaller than 400, and a Bandwidth (MB/s) of 1420 has what channels?",
    "question_th": "อัตรานาฬิกา (MHz) น้อยกว่า 400 และแบนด์วิธ (MB/s) ที่ 1420 มีช่องสัญญาณใดบ้าง",
    "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_en": "Bandwidth (MB/s) smaller than 4800, and a Bus width (bits) smaller than 16 has what highest Clock rate (MHz)?",
    "question_th": "แบนด์วิดท์ (MB/s) น้อยกว่า 4800 และความกว้างบัส (บิต) น้อยกว่า 16 มีอัตราสัญญาณนาฬิกา (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_en": "Designation of pc800 has which highest Bus width (bits)?",
    "question_th": "การกำหนด pc800 มีความกว้างของบัส (บิต) สูงสุดเท่าใด",
    "context": "CREATE TABLE table_name_51 (bus_width__bits_ INTEGER, designation VARCHAR)"
  },
  {
    "answer": "SELECT AVG(year) FROM table_name_66 WHERE start = \"14\"",
    "question_en": "Which Year has a Start of 14?",
    "question_th": "ปีใดมีจุดเริ่มต้นที่ 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_en": "Which Year has a Finish of 22, and a Team of swan?",
    "question_th": "ปีใดมีชัย 22 และทีมหงส์?",
    "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_en": "Which Finish has a Start of 15, and a Team of bahari?",
    "question_th": "การจบเส้นใดที่ออกสตาร์ทที่ 15 และทีมบาฮารี?",
    "context": "CREATE TABLE table_name_49 (finish VARCHAR, start VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_45 WHERE year = 2000",
    "question_en": "Which Team has a Year of 2000?",
    "question_th": "ทีมไหนมีปี 2000?",
    "context": "CREATE TABLE table_name_45 (team VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT 2010 FROM table_name_33 WHERE tournament = \"australian open\"",
    "question_en": "What is the info for the year 2010, for the Australian Open tournament?",
    "question_th": "ข้อมูลสำหรับปี 2010 สำหรับการแข่งขัน Australian Open คืออะไร?",
    "context": "CREATE TABLE table_name_33 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT android FROM table_name_42 WHERE other_unix = \"unknown\"",
    "question_en": "Which Android has anOther Unix of unknown?",
    "question_th": "Android ตัวใดที่มี Unix อื่นที่ไม่รู้จัก",
    "context": "CREATE TABLE table_name_42 (android VARCHAR, other_unix VARCHAR)"
  },
  {
    "answer": "SELECT mac_os_x FROM table_name_66 WHERE amigaos = \"partial\"",
    "question_en": "Which Mac OS X has an AmigaOS of partial?",
    "question_th": "Mac OS X ตัวใดที่มี AmigaOS บางส่วน",
    "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_en": "Which Mac OS X has a Linux of no, and an AmigaOS of no, and an Android of unknown?",
    "question_th": "Mac OS X ตัวใดที่มี Linux ที่ไม่มี และ AmigaOS ที่ไม่มี และ Android ที่ไม่รู้จัก",
    "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_en": "What was the score for the game against the Golden State Warriors?",
    "question_th": "ในเกมกับ โกลเดน สเตท วอร์ริเออร์ส ได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_54 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_57 WHERE game = 43",
    "question_en": "What was the score of game 43?",
    "question_th": "เกมที่ 43 ได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_57 (score VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_70 WHERE date = \"february 1\"",
    "question_en": "Who was the opposing team for the February 1 game?",
    "question_th": "ใครคือทีมตรงข้ามในเกมวันที่ 1 กุมภาพันธ์?",
    "context": "CREATE TABLE table_name_70 (team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT SUM(year) FROM table_name_37 WHERE team = \"porsche kremer racing\"",
    "question_en": "What's the total of Year that's got a Team of Porsche Kremer Racing?",
    "question_th": "จำนวนปีทั้งหมดที่มีทีม 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_en": "Which Class has a Chassis of Mazda 787B?",
    "question_th": "คลาสใดมีแชสซีของ 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_en": "What Year has a Tyre of D, and Chassis of Mazda 787?",
    "question_th": "ยาง D และแชสซีของ 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_en": "What is the total number of Laps that's got a Year less than 1987?",
    "question_th": "จำนวนรอบทั้งหมดที่มีหนึ่งปีน้อยกว่าปี 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_en": "In what week was the Result L 35-10?",
    "question_th": "ผลลัพธ์ 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_en": "What is listed for Played that has Points against of 263?",
    "question_th": "รายการใดที่เล่นแล้วซึ่งมีคะแนนเทียบกับ 263?",
    "context": "CREATE TABLE table_name_33 (played VARCHAR, points_against VARCHAR)"
  },
  {
    "answer": "SELECT played FROM table_name_35 WHERE club = \"morriston rfc\"",
    "question_en": "What is listed under Played that has a Club of Morriston RFC?",
    "question_th": "รายการใดอยู่ภายใต้ Played ที่มี 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_en": "What is listed for the Tries against that has a Played of 22, along with a Club of Ystalyfera RFC?",
    "question_th": "รายการใดบ้างสำหรับการแข่งขันที่มีผู้เล่น 22 คน พร้อมด้วย 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_en": "What is listed for Points for that has a Club of Club?",
    "question_th": "รายการคะแนนสำหรับรายการที่มี 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_en": "Which Losing Bonus has a Try Bonus of 8?",
    "question_th": "โบนัสการสูญเสียใดที่มีโบนัสลอง 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_en": "What is listed for the Drawn that has a Tray bonus of 5 wiht Points for of 517?",
    "question_th": "รายการใดสำหรับ Drawn ที่มีโบนัสถาด 5 พร้อมคะแนน 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_en": "Name the average top-10 for cuts made of 10 and top-25 more than 6",
    "question_th": "ตั้งชื่อค่าเฉลี่ย 10 อันดับแรกสำหรับการตัดจาก 10 และ 25 อันดับแรกมากกว่า 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_en": "Name the most top-5 for wins less than 0 and events less than 16",
    "question_th": "ตั้งชื่อ 5 อันดับแรกมากที่สุดสำหรับการชนะน้อยกว่า 0 และเหตุการณ์ที่น้อยกว่า 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_en": "Name the least top-10 for cuts made less than 11 and wins more than 0",
    "question_th": "ตั้งชื่อ 10 อันดับแรกที่น้อยที่สุดสำหรับการตัดที่ทำน้อยกว่า 11 และชนะมากกว่า 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_en": "Name the least cuts for top-5 more than 2 with top 25 less than 6 and top 10 less than 11",
    "question_th": "ตั้งชื่อการตัดน้อยที่สุดสำหรับ 5 อันดับแรกมากกว่า 2 โดย 25 อันดับแรกน้อยกว่า 6 และ 10 อันดับแรกน้อยกว่า 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_en": "Has Episode 1b-16 (42) been preserved?",
    "question_th": "ตอนที่ 1b-16 (42) ถูกเก็บรักษาไว้หรือไม่?",
    "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_en": "What is the sum of all domestic passengers with 10.9% change and less than 4,022 tonnes in freight?",
    "question_th": "ผลรวมของผู้โดยสารภายในประเทศทั้งหมดที่มีการเปลี่ยนแปลง 10.9% และค่าขนส่งน้อยกว่า 4,022 ตันเป็นเท่าใด",
    "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_en": "Which in 2004 has a 2003 of 1r and Wimbledon Tournament",
    "question_th": "ซึ่งในปี 2547 มีการแข่งขัน 1r และวิมเบิลดันปี 2546",
    "context": "CREATE TABLE table_name_34 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2007 FROM table_name_16 WHERE 2004 = \"olympic games\"",
    "question_en": "What is in 2007 has 2004 olympic games?",
    "question_th": "อะไรคือสิ่งที่ในปี 2550 มีการแข่งขันกีฬาโอลิมปิกปี 2547?",
    "context": "CREATE TABLE table_name_16 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2002 FROM table_name_85 WHERE 2001 = \"1–0\" AND 2000 = \"3–0\"",
    "question_en": "What is in 2002 has a 2001 score 1–0, and a 2000 of 3–0?",
    "question_th": "อะไรในปี 2545 มีคะแนนปี 2544 1–0 และปี 2543 เป็น 3–0",
    "context": "CREATE TABLE table_name_85 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2003 FROM table_name_84 WHERE career_win_loss = \"6–7\"",
    "question_en": "What is in 2003 that has a Career Win-Loss of 6–7",
    "question_th": "ในปี 2546 มี Career Win-Loss อยู่ที่ 6–7",
    "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_en": "What is the score of the game that had a decision of Parent, home team of Philadelphia, and visitor of Pittsburgh?",
    "question_th": "คะแนนของเกมที่มีการตัดสินระหว่างผู้ปกครอง, ทีมเหย้าของฟิลาเดลเฟีย และผู้มาเยือนของพิตต์สเบิร์กคือเท่าไร?",
    "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_en": "Which Top-5 is the lowest one that has Wins smaller than 0?",
    "question_th": "Top-5 ตัวไหนที่ต่ำที่สุดที่ชนะน้อยกว่า 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_en": "Which Cuts made is the highest one that has a Top-5 of 1, and a Top-25 larger than 16?",
    "question_th": "การ Cuts ใดที่ทำขึ้นสูงสุดที่มี Top-5 จาก 1 และ Top-25 ที่มากกว่า 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_en": "Which Events is the highest one that has a Top-5 larger than 5, and a Top-10 larger than 28?",
    "question_th": "กิจกรรมใดคือกิจกรรมสูงสุดที่มี Top-5 มากกว่า 5 และ Top-10 มากกว่า 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_en": "When was the earliest that New England Patriots played?",
    "question_th": "New England Patriots เล่นเร็วที่สุดคือเมื่อไหร่?",
    "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_en": "What is the average week with St. Louis Cardinals with less than 80,010 attendance?",
    "question_th": "สัปดาห์โดยเฉลี่ยของ St. Louis Cardinals ที่มีผู้เข้าร่วมน้อยกว่า 80,010 คนคือเท่าใด",
    "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_en": "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?",
    "question_th": "รันใดคือรันที่สูงที่สุดที่มีการแข่งขันมากกว่า 63 และสถานที่ของสนามกีฬาแห่งชาติ การาจี และหนึ่งปีที่เล็กกว่าปี 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_en": "Which Year has a Match of 63?",
    "question_th": "ปีไหนมีแมตช์ปี 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_en": "Which Match has Runs of 100, and a Year larger than 1994?",
    "question_th": "การแข่งขันใดที่มีการวิ่ง 100 ครั้งและหนึ่งปีที่มากกว่าปี 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_en": "How many matches have a City/Country of karachi, pakistan, and a Year larger than 1996?",
    "question_th": "มีกี่แมตช์ที่มีเมือง/ประเทศของการาจี ปากีสถาน และหนึ่งปีที่มากกว่าปี 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_en": "What is the highest number of Silvers for rank 7 teams with 1 gold and under 1 bronze?",
    "question_th": "จำนวนเหรียญเงินสูงสุดสำหรับทีมอันดับ 7 ที่มี 1 เหรียญทองและต่ำกว่า 1 เหรียญทองแดงคือเท่าใด",
    "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_en": "What is the fewest number of silvers for teams with more than 21 gold and more than 4 bronze?",
    "question_th": "จำนวนเหรียญเงินน้อยที่สุดสำหรับทีมที่มีมากกว่า 21 เหรียญทองและมากกว่า 4 เหรียญทองแดงคือเท่าใด",
    "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_en": "What is the average number of silvers for teams ranked 5 with 0 bronze?",
    "question_th": "จำนวนเหรียญเงินโดยเฉลี่ยสำหรับทีมอันดับ 5 กับ 0 เหรียญทองแดงคือเท่าไร?",
    "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_en": "Where was the game with a result of won 5-0?",
    "question_th": "เกมไหนที่ผลชนะ 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_en": "What was the date of the game with a result of won 4-2?",
    "question_th": "ในเกมวันที่เท่าไหร่ที่ผลชนะ 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_en": "What was the date of the game against Hayes & Yeading United?",
    "question_th": "วันที่เกมกับ 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_en": "Where was the game with a result of won 5-0?",
    "question_th": "เกมไหนที่ผลชนะ 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_en": "If the RR Rate is less than 0.75 with a result of RR:08,09, what is the average appeared?",
    "question_th": "หากอัตรา RR น้อยกว่า 0.75 โดยผลลัพธ์เป็น RR:08,09 ค่าเฉลี่ยจะปรากฏเป็นเท่าใด",
    "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_en": "What's the total appeared that has an RR Rate less than 0.17?",
    "question_th": "ผลรวมที่ปรากฏว่ามีอัตรา RR น้อยกว่า 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_en": "For Angelique Kerber who had an RR Rate of less than 0.33, what's the appeared?",
    "question_th": "สำหรับ Angelique Kerber ที่มี RR Rate ต่ำกว่า 0.33 ปรากฏว่าเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_87 (appeared INTEGER, rr_w_rate VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT SUM(area__km²_) FROM table_name_34 WHERE county = \"nairnshire\" AND population < 11 OFFSET 050",
    "question_en": "What is the area (km²) of Nairnshire county, which has a population less than 11,050?",
    "question_th": "พื้นที่ (กม. ²) ของเทศมณฑลแนร์นเชียร์ ซึ่งมีประชากรน้อยกว่า 11,050 คนคือเท่าใด",
    "context": "CREATE TABLE table_name_34 (area__km²_ INTEGER, county VARCHAR, population VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_14 WHERE date = \"august 26\"",
    "question_en": "What was the Attendance of August 26?",
    "question_th": "ผู้เข้าร่วมในวันที่ 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_en": "What is the highest number of severe tropical cyclones when there are 10 tropical cyclones and 14 tropical lows?",
    "question_th": "เมื่อมีพายุหมุนเขตร้อน 10 ลูกและพายุหมุนเขตร้อนระดับรุนแรง 14 ลูก มีจำนวนมากที่สุดคือเท่าใด",
    "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_en": "Which track in Austria has Bobsleigh-skeleton curves with a grade of 14%?",
    "question_th": "สนามใดในออสเตรียที่มีเส้นโค้ง Bobsleigh-skeleton ด้วยคะแนน 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_en": "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?",
    "question_th": "ระยะทางที่สั้นที่สุดในนอร์เวย์ที่มีเกรดสูงสุด 15% และระยะดิ่งดิ่งน้อยกว่า 122.22 เมตร คือข้อใด",
    "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_en": "What is the highest vertical drop among the 1,200 meter long tracks?",
    "question_th": "อะไรคือจุดตกแนวดิ่งที่สูงที่สุดในบรรดาเส้นทางยาว 1,200 เมตร?",
    "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 – 3\" AND match > 20",
    "question_en": "How many Attendance has a Opponent of west bromwich albion, and a Result of 3 – 3, and a Match larger than 20?",
    "question_th": "ฝ่ายตรงข้ามของเวสต์บรอมมิชอัลเบียนมีผู้เข้าร่วมกี่คน และผลการแข่งขัน 3 – 3 และการแข่งขันที่มากกว่า 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_en": "WHich Match has a Venue of h on 22 september 1888 with Attendances smaller than 4,000?",
    "question_th": "การแข่งขันใดมีสถานที่จัดในวันที่ 22 กันยายน พ.ศ. 2431 โดยมีผู้เข้าร่วมน้อยกว่า 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_en": "What is the venue of the match on 5 April 2000?",
    "question_th": "สถานที่จัดการแข่งขันในวันที่ 5 เมษายน พ.ศ. 2543 คือที่ไหน?",
    "context": "CREATE TABLE table_name_45 (venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_66 WHERE opponent = \"michael buell\"",
    "question_en": "What is the round number of the match with Michael Buell as the opponent?",
    "question_th": "แมตช์ที่ ไมเคิล บูเอลล์ เป็นคู่ต่อสู้ เลขยกเท่าไร?",
    "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_en": "What is the time of the match with a win result, more than 2 rounds, and Makoto Ishikawa as the opponent?",
    "question_th": "แมตช์เวลาใดที่ผลชนะเกิน 2 นัด และมี มาโกโตะ อิชิคาว่า เป็นคู่ต่อสู้?",
    "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_en": "what team scored 65-87",
    "question_th": "ทีมไหนทำสกอร์ได้ 65-87",
    "context": "CREATE TABLE table_name_83 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_43 WHERE date = \"september 14\"",
    "question_en": "what was the score on september 14",
    "question_th": "คะแนนเมื่อวันที่ 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_en": "What form factor has capacities at 60/120/180/240?",
    "question_th": "ฟอร์มแฟคเตอร์ใดที่มีความจุ 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_en": "Which value for Form factor has Sandforce with Capacity 80/120/180/240/360/480 introduced in July 2013?",
    "question_th": "ค่าใดสำหรับฟอร์มแฟกเตอร์ที่มี Sandforce ความจุ 80/120/180/240/360/480 เปิดตัวในเดือนกรกฎาคม 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 × 8\"",
    "question_en": "Which controller has an interface of pcie 2.0 × 8?",
    "question_th": "คอนโทรลเลอร์ตัวใดที่มีอินเทอร์เฟซของ pcie 2.0 × 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_en": "Which controller is NAND type 25nm mlc-het with sequential read/write MB/s of 270/210?",
    "question_th": "คอนโทรลเลอร์ใดคือ NAND ประเภท 25nm mlc-het พร้อมการอ่าน/เขียนตามลำดับ MB/s ที่ 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_en": "Which interface uses Sandforce with a code name of Sierra Star?",
    "question_th": "อินเทอร์เฟซใดใช้ Sandforce พร้อมชื่อรหัสว่า 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_en": "What is the Highest finish with a Most recent finish that was 2nd?",
    "question_th": "การจบสกอร์สูงสุดด้วยการจบอันดับล่าสุดคืออันดับที่ 2 คืออะไร?",
    "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_en": "What is the result of the game at the Shea Stadium at 12:30pm (ET)?",
    "question_th": "ผลการแข่งขันที่สนามเชียสเตเดี้ยมเวลา 12.30 น. (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_en": "Which Played is the lowest one that has a Blackpool smaller than 0?",
    "question_th": "ตัวไหนที่เล่นต่ำสุดที่มีแบล็คพูลน้อยกว่า 0?",
    "context": "CREATE TABLE table_name_57 (played INTEGER, blackpool INTEGER)"
  },
  {
    "answer": "SELECT MAX(blackpool) FROM table_name_82 WHERE draw > 18",
    "question_en": "Which Blackpool is the highest one that has a Draw larger than 18?",
    "question_th": "แบล็คพูลใดคือทีมสูงสุดที่มีเสมอมากกว่า 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_en": "How much Preston North End has a Blackpool smaller than 0?",
    "question_th": "เพรสตัน นอร์ท เอนด์ มีแบล็คพูลน้อยกว่า 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_en": "Which Blackpool has a Preston North End smaller than 46, and a Competition of other, and a Draw larger than 1?",
    "question_th": "แบล็คพูลใดที่มีเพรสตัน นอร์ธเอนด์น้อยกว่า 46 และการแข่งขันของอีกรายหนึ่งและเสมอมากกว่า 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_en": "What is the finish for the chip ganassi racing team that was later than 2010 and a Start of 17?",
    "question_th": "อะไรคือจุดจบของทีมแข่ง Chip ganassi ที่ช้ากว่าปี 2010 และการออกสตาร์ท 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_en": "What is shown for Chassis for the year of 2007?",
    "question_th": "สิ่งที่แสดงให้เห็นสำหรับแชสซีสำหรับปี 2550?",
    "context": "CREATE TABLE table_name_70 (chassis VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_48 WHERE finish = \"19\"",
    "question_en": "What is the name of the team with a finish of 19?",
    "question_th": "ทีมที่จบอันดับที่ 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_en": "What is the Finish when the start shows 3 in the year of 2010?",
    "question_th": "Finish คืออะไรเมื่อสตาร์ทแสดง 3 ในปี 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_en": "What is the Engine with 3 as the start in the year of 2007?",
    "question_th": "เครื่องยนต์อะไรที่มี 3 สตาร์ทในปี 2550?",
    "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_en": "What was the Score on October 24, 1982 in Tokyo, Japan?",
    "question_th": "คะแนนเมื่อวันที่ 24 ตุลาคม 2525 ที่กรุงโตเกียว ประเทศญี่ปุ่น เป็นเท่าใด",
    "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_en": "What Tournament on October 24, 1982 had Alycia Moulton as the Partner?",
    "question_th": "การแข่งขันอะไรในวันที่ 24 ตุลาคม พ.ศ. 2525 มี Alycia Moulton เป็นหุ้นส่วน?",
    "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_en": "Who were the Opponents when Laura DuPont had Pam Shriver as Partner with a Score of 6-3, 6-3?",
    "question_th": "ใครคือฝ่ายตรงข้ามเมื่อลอร่า ดูปองท์มีแพม ชริเวอร์เป็นคู่หูด้วยสกอร์ 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_en": "On what Surface was the match with a Score of 3-6, 1-6 played?",
    "question_th": "การแข่งขัน Surface ใดที่มีคะแนน 3-6, 1-6 เล่น?",
    "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_en": "In what Tournament was Barbara Jordan a Partner with a Score of 6-2, 3-6, 3-6?",
    "question_th": "บาร์บาร่า จอร์แดนเป็นคู่หูในทัวร์นาเมนต์ใดด้วยสกอร์ 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_en": "Name the points with tries for of 40",
    "question_th": "ตั้งชื่อคะแนนโดยพยายามให้ได้ 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_en": "Name the played with losing bonus of 3 and points against of 426",
    "question_th": "ตั้งชื่อผู้เล่นโดยเสียโบนัส 3 และแต้มต่อ 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_en": "Name the club with points of 56",
    "question_th": "ตั้งชื่อสโมสรด้วยคะแนน 56",
    "context": "CREATE TABLE table_name_9 (club VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT points_against FROM table_name_87 WHERE club = \"porthcawl rfc\"",
    "question_en": "Name the points against for porthcawl rfc",
    "question_th": "ตั้งชื่อคะแนนสำหรับ 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_en": "Name the club for drawn of 0 and lost of 0",
    "question_th": "ตั้งชื่อสโมสรว่า เสมอ 0 แพ้ 0",
    "context": "CREATE TABLE table_name_92 (club VARCHAR, drawn VARCHAR, lost VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_name_96 WHERE lost = \"19\"",
    "question_en": "Name the points with lost of 19",
    "question_th": "ตั้งชื่อแต้มที่แพ้ 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_en": "result is lost re-election republican gain, what is the district?",
    "question_th": "ผลคือแพ้การเลือกตั้งใหม่ พรรครีพับลิกันได้ อำเภอคืออะไร?",
    "context": "CREATE TABLE table_name_48 (district VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT winning_constructor FROM table_name_52 WHERE winning_driver = \"felice nazzaro\"",
    "question_en": "Which Winning constructor has a Winning driver of felice nazzaro?",
    "question_th": "ตัวสร้าง Winning ตัวใดมีตัวขับ Winning ของ 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_en": "Who is Winning driver on 18 may?",
    "question_th": "ใครคือผู้ขับที่ชนะในวันที่ 18 พฤษภาคม?",
    "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_en": "WHo is Winning driver that is in st. petersburg - moscow?",
    "question_th": "WHo เป็นผู้ขับที่ชนะซึ่งอยู่ในเซนต์ปีเตอร์สเบิร์ก ปีเตอร์สเบิร์ก-มอสโก?",
    "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_en": "Which Date has a Winning constructor of fiat and a Winning driver of louis wagner?",
    "question_th": "Date ใดที่มี Winning Constructor ของ fiat และ Winning driver ของ 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_en": "Which Report is on 1 june?",
    "question_th": "รายงานตัวไหนวันที่ 1 มิถุนายน?",
    "context": "CREATE TABLE table_name_13 (report VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_55 WHERE name = \"vanderbilt cup\"",
    "question_en": "When is vanderbilt cup in?",
    "question_th": "แวนเดอร์บิลต์คัพเข้าเมื่อไหร่?",
    "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_en": "Which event is in round 1 with a record at 5-1?",
    "question_th": "รายการไหนเข้ารอบ 1 ด้วยสกอร์ 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_en": "When the country is Cambodia and the total is smaller than 1 what's the lowest silver?",
    "question_th": "เมื่อประเทศเป็นกัมพูชาและยอดรวมน้อยกว่า 1 เงินต่ำสุดคือเท่าใด?",
    "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_en": "What is the highest gold for Cambodia when the total is less than 1?",
    "question_th": "ทองคำสูงสุดของกัมพูชาเมื่อยอดรวมน้อยกว่า 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_en": "What is the total silver when bronze is smaller than 0?",
    "question_th": "เงินทั้งหมดเมื่อบรอนซ์น้อยกว่า 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_en": "What is the total when the gold of 0, and a bronze larger than 1?",
    "question_th": "เมื่อทองเป็น 0 และทองสัมฤทธิ์มีขนาดใหญ่กว่า 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_en": "What is the total when bronze has a silver larger than 2?",
    "question_th": "ผลรวมเมื่อทองแดงมีเงินมากกว่า 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_en": "What is the sum of silver medals for teams with more than 14 total medals and more than 16 golds?",
    "question_th": "ผลรวมของเหรียญเงินสำหรับทีมที่มีมากกว่า 14 เหรียญและมากกว่า 16 เหรียญทองเป็นเท่าใด",
    "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_en": "What is the rank of the team having 3 bronzes and 0 silver?",
    "question_th": "ทีมที่มี 3 เหรียญทองแดง และ 0 เหรียญเงิน อันดับเท่าไหร่?",
    "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_en": "How many tries against did the club with 383 points against have?",
    "question_th": "สโมสรที่มีคะแนน 383 แต้มพยายามพยายามกี่ครั้ง?",
    "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_en": "How many tries against did the club with 48 tries for have?",
    "question_th": "สโมสรที่มีการพยายาม 48 ครั้งมีการพยายามกี่ครั้ง?",
    "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_en": "How many points did the club with 13 losses and 461 points against have?",
    "question_th": "สโมสรที่แพ้ 13 แต้มและมีแต้มต่อ 461 แต้มมีกี่แต้ม?",
    "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_en": "How many tries against did Pentyrch RFC have?",
    "question_th": "Pentyrch RFC พยายามต่อต้านกี่ครั้ง?",
    "context": "CREATE TABLE table_name_92 (tries_against VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT MIN(drawn) FROM table_name_83 WHERE games < 7",
    "question_en": "What is the lowest drawn that has games less than 7?",
    "question_th": "การจับฉลากต่ำสุดที่มีเกมน้อยกว่า 7 คืออะไร?",
    "context": "CREATE TABLE table_name_83 (drawn INTEGER, games INTEGER)"
  },
  {
    "answer": "SELECT COUNT(lost) FROM table_name_50 WHERE points > 14",
    "question_en": "Hoe many of lost have points greater than 14?",
    "question_th": "จอบผู้แพ้หลายคนมีคะแนนมากกว่า 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_en": "How many of lost have 11 as the points, and a drawn greater than 1?",
    "question_th": "มีกี่คนที่แพ้มี 11 แต้ม และเสมอมากกว่า 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_en": "What is the lowest game that has a drawn less than 0?",
    "question_th": "เกมต่ำสุดที่เสมอน้อยกว่า 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_en": "Which Total is the lowest one that has a Bronze of 0, and a Silver larger than 0, and a Rank of 5?",
    "question_th": "ผลรวมใดคือผลรวมต่ำสุดที่มีเหรียญทองแดงเป็น 0 และเหรียญเงินมากกว่า 0 และอันดับ 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_en": "Which Bronze has a Total smaller than 2, and a Silver larger than 0, and a Gold smaller than 0?",
    "question_th": "ทองแดงใดมีค่ารวมน้อยกว่า 2 และเงินมากกว่า 0 และทองน้อยกว่า 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_en": "Which Rank is the lowest one that has a Nation of switzerland, and a Bronze smaller than 0?",
    "question_th": "อันดับไหนคืออันดับต่ำสุดที่มีประเทศสวิตเซอร์แลนด์ และเหรียญทองแดงน้อยกว่า 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_en": "Which Total is the highest one that has a Bronze of 0, and a Nation of poland, and a Gold smaller than 0?",
    "question_th": "คะแนนรวมใดสูงที่สุดที่มีเหรียญทองแดงเป็น 0 และประเทศโปแลนด์ และทองน้อยกว่า 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_en": "What is the save of the game that 23,394 people attended?",
    "question_th": "บันทึกของเกมที่มีผู้เข้าร่วม 23,394 คนคืออะไร?",
    "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_en": "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?",
    "question_th": "Whihc Date เป็นทีมที่ต่ำที่สุดที่มีการแข่งขันในลีก และสถานที่เยือน และเป็นฝ่ายตรงข้ามของแมวป่าสวินดอน และมีผู้เข้าร่วมมากกว่า 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_en": "How many Dates have an Opponent of romford raiders, and a Result of won 7-3, and an Attendance larger than 1,769?",
    "question_th": "มีกี่วันที่ฝ่ายตรงข้ามของ romford raiders และผลการแข่งขันชนะ 7-3 และมีผู้เข้าร่วมมากกว่า 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_en": "Which Date has an Opponent of milton keynes lightning, and an Attendance smaller than 1,771?",
    "question_th": "วันที่ใดมีฝ่ายตรงข้ามของสายฟ้า Milton Keynes และมีผู้เข้าร่วมน้อยกว่า 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_en": "Which Attendance has a Date of october 25?",
    "question_th": "ผู้เข้าร่วมคนใดมีวันที่ 25 ตุลาคม",
    "context": "CREATE TABLE table_name_43 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_72 WHERE visitor = \"atlanta\"",
    "question_en": "Which Score has a Visitor of atlanta?",
    "question_th": "คะแนนใดที่มีผู้มาเยือนแอตแลนตา?",
    "context": "CREATE TABLE table_name_72 (score VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT yards FROM table_name_74 WHERE attempts = \"247\"",
    "question_en": "Which Yards has a Attempts of 247",
    "question_th": "หลาใดมีความพยายาม 247",
    "context": "CREATE TABLE table_name_74 (yards VARCHAR, attempts VARCHAR)"
  },
  {
    "answer": "SELECT yards FROM table_name_26 WHERE completion__percentage = \"64.9%\"",
    "question_en": "Which yard has a Completion of 64.9%?",
    "question_th": "สนามไหนมีจบ 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_en": "Which Completions has Yards of 10,098?",
    "question_th": "ความสำเร็จใดมีระยะ 10,098 หลา",
    "context": "CREATE TABLE table_name_36 (completions VARCHAR, yards VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_3 WHERE attempts = \"282\"",
    "question_en": "When has Attempts of 282 ?",
    "question_th": "เมื่อใดมีความพยายาม 282 ?",
    "context": "CREATE TABLE table_name_3 (year VARCHAR, attempts VARCHAR)"
  },
  {
    "answer": "SELECT completions FROM table_name_89 WHERE attempts = \"1,271\"",
    "question_en": "Which Completions has Attempts of 1,271?",
    "question_th": "ความสำเร็จใดมีความพยายามถึง 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_en": "which Completion % has a Yards of 2,175?",
    "question_th": "% ความสำเร็จใดมีระยะ 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_en": "What was the surface for Adrian Ungur as an opponent?",
    "question_th": "อะไรคือพื้นผิวของ Adrian Ungur ในฐานะคู่ต่อสู้?",
    "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_en": "What was the score on a clay surface on May 29, 2006?",
    "question_th": "คะแนนบนพื้นผิวดินเมื่อวันที่ 29 พฤษภาคม 2549 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_5 (score VARCHAR, surface VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_75 WHERE score = \"6–3, 7–6\"",
    "question_en": "Which tournament had a score of 6–3, 7–6?",
    "question_th": "ทัวร์นาเมนต์ใดมีคะแนน 6–3, 7–6?",
    "context": "CREATE TABLE table_name_75 (tournament VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_15 WHERE opponent = \"michael berrer\"",
    "question_en": "On what surface was the opponent Michael Berrer?",
    "question_th": "Michael Berrer คู่ต่อสู้อยู่บนพื้นผิวใด?",
    "context": "CREATE TABLE table_name_15 (surface VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT MAX(games) FROM table_name_58 WHERE points = 2",
    "question_en": "What game has 2 points?",
    "question_th": "เกมอะไรมี 2 แต้ม?",
    "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_en": "How many total drawn has less than 4 lost and 8 points?",
    "question_th": "เสมอกันทั้งหมดกี่แต้ม แพ้น้อยกว่า 4 และ 8 แต้ม?",
    "context": "CREATE TABLE table_name_59 (drawn INTEGER, lost VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT SUM(lost) FROM table_name_5 WHERE games < 7",
    "question_en": "How many lost are there before game 7?",
    "question_th": "ก่อนเกมที่ 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_en": "How many touchdowns did the player with less than 4495 yards, long of less than 80, and yds/att less than 5.5 have?",
    "question_th": "ผู้เล่นที่มีระยะน้อยกว่า 4,495 หลา, ยาวน้อยกว่า 80 และหลา/แอทน้อยกว่า 5.5 ทำทัชดาวน์ได้กี่ครั้ง?",
    "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_en": "How many attempts did the player ranking with a number higher than 1, who started after 1997 and had yds/att of 5 have?",
    "question_th": "ผู้เล่นที่อยู่ในอันดับด้วยตัวเลขที่สูงกว่า 1 พยายามกี่ครั้งที่เริ่มหลังปี 1997 และมี yds/att เป็น 5 ครั้ง",
    "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_en": "What is the average net yds for the player who had a long of 68 and started after 1984?",
    "question_th": "จำนวนสุทธิเฉลี่ยของผู้เล่นที่มีความยาว 68 ปีและเริ่มต้นหลังปี 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_en": "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?",
    "question_th": "จำนวนความพยายามต่ำสุดสำหรับผู้เล่นที่มีอันดับมากกว่า 3 ซึ่งเริ่มหลังปี 1984 และมีน้อยกว่า 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_en": "Which film was made before 2002?",
    "question_th": "ภาพยนตร์เรื่องใดสร้างก่อนปี 2545?",
    "context": "CREATE TABLE table_name_1 (film VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT film FROM table_name_68 WHERE role = \"taylor\"",
    "question_en": "Which film has a role named Taylor?",
    "question_th": "ภาพยนตร์เรื่องใดมีบทบาทชื่อเทย์เลอร์?",
    "context": "CREATE TABLE table_name_68 (film VARCHAR, role VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_name_3 WHERE film = \"touch & go\"",
    "question_en": "What notes does the film Touch & go have?",
    "question_th": "ภาพยนตร์เรื่อง Touch & go มีข้อสังเกตอะไรบ้าง?",
    "context": "CREATE TABLE table_name_3 (notes VARCHAR, film VARCHAR)"
  },
  {
    "answer": "SELECT language FROM table_name_46 WHERE film = \"marion bridge\"",
    "question_en": "What language is the film Marion Bridge?",
    "question_th": "ภาพยนตร์เรื่องนี้เป็นภาษาอะไร Marion Bridge?",
    "context": "CREATE TABLE table_name_46 (language VARCHAR, film VARCHAR)"
  },
  {
    "answer": "SELECT language FROM table_name_90 WHERE role = \"annabelle\"",
    "question_en": "What language is the film with a character named Annabelle?",
    "question_th": "ภาพยนตร์ที่มีตัวละครชื่อแอนนาเบลล์เป็นภาษาอะไร",
    "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_en": "What is the lowest pick from the Furman School that is a round smaller than 8?",
    "question_th": "ตัวเลือกที่ต่ำที่สุดจาก Furman School ที่รอบเล็กกว่า 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_en": "What is the total number of round picks from the Morris Brown School?",
    "question_th": "จำนวนการคัดเลือกรอบทั้งหมดจาก 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_en": "What is the total number of rounds for the player of Rell Tipton?",
    "question_th": "ผู้เล่น เรลล์ ทิปตัน รวมจำนวนรอบคือเท่าไร?",
    "context": "CREATE TABLE table_name_58 (round VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_44 WHERE game = 3",
    "question_en": "On what date was game 3 played?",
    "question_th": "เกมที่ 3 เล่นวันไหนครับ?",
    "context": "CREATE TABLE table_name_44 (date VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_name_8 WHERE date = \"april 22\"",
    "question_en": "Which game took place on April 22?",
    "question_th": "เกมใดเกิดขึ้นในวันที่ 22 เมษายน?",
    "context": "CREATE TABLE table_name_8 (game VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT series FROM table_name_1 WHERE game = 1",
    "question_en": "What was the standing in the series after game 1?",
    "question_th": "อะไรคือจุดยืนในซีรีส์หลังเกมที่ 1?",
    "context": "CREATE TABLE table_name_1 (series VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT race FROM table_name_90 WHERE time = \"1:24.35\"",
    "question_en": "Which race had a time of 1:24.35?",
    "question_th": "สนามไหนทำเวลาได้ 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_en": "What was the date for the G1 group race at Flemington?",
    "question_th": "การแข่งขันกลุ่ม G1 ที่เฟลมิงตันคือวันที่เท่าไหร่",
    "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_en": "What was the combined weight in kilograms of the horses in the race at Chelmsford stakes?",
    "question_th": "น้ำหนักรวมของม้าในการแข่งขันที่เชล์มสฟอร์ดสเตคเป็นเท่าใด",
    "context": "CREATE TABLE table_name_42 (weight__kg_ VARCHAR, race VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_54 WHERE artist = \"afro-dite\"",
    "question_en": "In what year was the artist Afro-dite?",
    "question_th": "ศิลปิน 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_en": "What stadium was the game held at on December 23, 2001?",
    "question_th": "เกมดังกล่าวจัดขึ้นที่สนามใดเมื่อวันที่ 23 ธันวาคม พ.ศ. 2544?",
    "context": "CREATE TABLE table_name_2 (stadium VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_52 WHERE date = \"december 2, 2001\"",
    "question_en": "What is the Record for the game held on December 2, 2001?",
    "question_th": "บันทึกของเกมที่จัดขึ้นเมื่อวันที่ 2 ธันวาคม พ.ศ. 2544 คืออะไร?",
    "context": "CREATE TABLE table_name_52 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT AVG(game) FROM table_name_24 WHERE attendance = \"65,666\"",
    "question_en": "What is the average Game where there were 65,666 in attendance?",
    "question_th": "เกมโดยเฉลี่ยที่มีผู้เข้าร่วม 65,666 คนคือเท่าใด",
    "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_en": "Driving Force EX of 25cm (10-inch) involves what feature?",
    "question_th": "Driving Force EX ขนาด 25 ซม. (10 นิ้ว) มีฟีเจอร์อะไรบ้าง",
    "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_en": "GT Force of no, and a Driving Force Pro of no, and a G27 Racing Wheel of no has what driving force gt?",
    "question_th": "GT Force ที่ไม่ได้เป็น และ Driving Force Pro ที่ไม่ได้เป็น และ G27 Racing Wheel ที่ไม่ได้เป็น มีแรงผลักดันอะไร 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_en": "Feature of gear stick involves which driving force gt?",
    "question_th": "คุณสมบัติของคันเกียร์เกี่ยวข้องกับแรงผลักดัน 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_en": "Driving Force EX of no, and a Driving Force GT of yes, and a Driving Force Pro of yes has what feature?",
    "question_th": "Driving Force EX ที่ใช่ และ Driving Force GT ที่ใช่ และ Driving Force Pro ที่ใช่ มีคุณสมบัติอะไรบ้าง",
    "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_en": "Driving Force EX of no, and a Driving Force Pro of no, and a G25 Racing Wheel of no involves which g27 racing wheel?",
    "question_th": "Driving Force EX ที่ใช่ และ Driving Force Pro ที่ใช่ และ G25 Racing Wheel ที่ไม่เกี่ยวข้องกับพวงมาลัยแข่ง g27 อันไหน",
    "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_en": "GT Force of yes, and a G27 Racing Wheel of 16 involves which driving force ex?",
    "question_th": "GT Force ของใช่ และ G27 Racing Wheel ของ 16 เกี่ยวข้องกับแรงผลักดันใดบ้าง เช่น",
    "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_en": "What is the score on october 7?",
    "question_th": "คะแนนวันที่ 7 ตุลาคม เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_95 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT SUM(attendance) FROM table_name_39 WHERE score = \"17-13\"",
    "question_en": "How many people went to the game that had 17-13?",
    "question_th": "มีคนไปเล่นเกมที่มี 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_en": "What is the highest rank for the airport with a code of HKG/VHHH?",
    "question_th": "สนามบินที่มีรหัส 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_en": "How many Points have Drawn of 7, and a Team of corinthians, and a Played larger than 18?",
    "question_th": "มีกี่คะแนนที่ได้มาจาก 7 และทีมโครินเธียน และหนึ่งคนเล่นได้มากกว่า 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_en": "Which Points is the highest one that has a Position of 5, and a Played smaller than 18?",
    "question_th": "แต้มใดแต้มสูงสุดที่มีตำแหน่ง 5 และแต้มที่เล่นน้อยกว่า 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_en": "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?",
    "question_th": "จั่วใดคือค่าเฉลี่ยที่มีตำแหน่งน้อยกว่า 9 และแต้มน้อยกว่า 22 และแพ้น้อยกว่า 9 และต่อต้านมากกว่า 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_en": "How many Against have Played smaller than 18?",
    "question_th": "มีกี่คนที่เล่นน้อยกว่า 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_en": "What is the points difference associated with more than 3 points and more than 0 losses?",
    "question_th": "อะไรคือความแตกต่างของคะแนนที่เกี่ยวข้องกับมากกว่า 3 แต้มและการแพ้มากกว่า 0?",
    "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_en": "What is the difference associated with more than 2 losses and more than 1 point?",
    "question_th": "อะไรคือความแตกต่างที่เกี่ยวข้องกับการสูญเสียมากกว่า 2 ครั้งและมากกว่า 1 แต้ม?",
    "context": "CREATE TABLE table_name_45 (points_difference VARCHAR, lost VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_34 WHERE game = 64",
    "question_en": "What location did game 64 take place",
    "question_th": "เกม 64 เกิดขึ้นที่สถานที่ใด",
    "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_en": "What was the Attendance after Week 7 at Tiger Stadium?",
    "question_th": "ผู้เข้าร่วมหลังจากสัปดาห์ที่ 7 ที่ 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–7\"",
    "question_en": "What was the Attendance at the Game with a Result of w 21–7?",
    "question_th": "จำนวนผู้เข้าร่วมในเกมด้วยผลการแข่งขัน w 21–7 คืออะไร?",
    "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_en": "How many years have a Make/ Model of new flyer c40lfr?",
    "question_th": "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–1500 (40 buses)\"",
    "question_en": "Which Make/ Model that Numbers (Quantity Ordered) of 1461–1500 (40 buses)?",
    "question_th": "ยี่ห้อ/รุ่นใดที่มีหมายเลข (ปริมาณการสั่งซื้อ) 1461–1500 (40 คัน)",
    "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_en": "Which Fuel Propulsion has Numbers (Quantity Ordered) of 7124-7156 (33 buses)?",
    "question_th": "ระบบขับเคลื่อนเชื้อเพลิงใดมีตัวเลข (ปริมาณการสั่งซื้อ) 7124-7156 (รถโดยสาร 33 คัน)",
    "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_en": "Which Numbers (Quantity Ordered) have a Fuel Propulsion of cng, and a Year smaller than 2008, and a Make/ Model of nabi 40-lfw?",
    "question_th": "หมายเลขใด (ปริมาณที่สั่ง) มีแรงขับเชื้อเพลิงเป็น cng และหนึ่งปีน้อยกว่าปี 2008 และยี่ห้อ/รุ่นของ 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_en": "Which Numbers (Quantity Ordered) have a Make/ Model of eldorado national passport?",
    "question_th": "หมายเลขใด (ปริมาณที่สั่ง) มียี่ห้อ/รุ่นของหนังสือเดินทางประจำชาติเอลโดราโด",
    "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_en": "What is the earliest year for Alabama with a pick under 26?",
    "question_th": "ปีแรกสุดสำหรับอลาบามาโดยเลือกอายุต่ำกว่า 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_en": "Which player was pick 2 later than 2010?",
    "question_th": "ผู้เล่นคนไหนถูกเลือก 2 หลังปี 2010?",
    "context": "CREATE TABLE table_name_23 (player VARCHAR, year VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_31 WHERE pick > 28",
    "question_en": "Which position has a pick greater than 28?",
    "question_th": "ตำแหน่งใดมีการเลือกมากกว่า 28?",
    "context": "CREATE TABLE table_name_31 (position VARCHAR, pick INTEGER)"
  },
  {
    "answer": "SELECT opponent FROM table_name_14 WHERE date = \"august 25\"",
    "question_en": "what team played on august 25",
    "question_th": "ทีมใดเล่นในวันที่ 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_en": "What class is associated with 0 stages won, a hummer, and before 2009?",
    "question_th": "คลาสใดที่เกี่ยวข้องกับการชนะ 0 สเตจ, ฮัมเมอร์ และก่อนปี 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_en": "What position did he finish in 2012?",
    "question_th": "เขาจบตำแหน่งอะไรในปี 2555?",
    "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_en": "What year did he compete in the car class and win 0 stages?",
    "question_th": "เขาลงแข่งขันประเภทรถยนต์ปีไหนและชนะ 0 สเตจ?",
    "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_en": "on week of february 12, in the west division, what is the position?",
    "question_th": "สัปดาห์ที่ 12 กุมภาพันธ์ ฝั่งตะวันตก ตำแหน่งอะไร ?",
    "context": "CREATE TABLE table_name_16 (position VARCHAR, division VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_47 WHERE _number_found = \"4\"",
    "question_en": "What is the listed Location with a # found of 4?",
    "question_th": "ตำแหน่งที่อยู่ในรายการซึ่งมี # พบจาก 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_en": "What's the Ball Diameter with the Location oof El Manati, and the Period of 1200 BCE?",
    "question_th": "เส้นผ่านศูนย์กลางของลูกบอลกับที่ตั้งของ El Manati คืออะไรและช่วง 1200 ปีก่อนคริสตศักราช",
    "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_en": "What's the Ball Diameter with the Culture of Olmec?",
    "question_th": "เส้นผ่านศูนย์กลางลูกบอลกับวัฒนธรรมของ Olmec คืออะไร?",
    "context": "CREATE TABLE table_name_54 (ball_diameter VARCHAR, culture VARCHAR)"
  },
  {
    "answer": "SELECT period FROM table_name_81 WHERE _number_found = \"5\"",
    "question_en": "What's the Period with # found of 5?",
    "question_th": "ระยะเวลาที่มี # พบจาก 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_en": "Which Country has azeri tv tower?",
    "question_th": "ประเทศใดมีหอโทรทัศน์อาเซอร์รี?",
    "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_en": "What is Pinnacle height of chimney of orot rabin?",
    "question_th": "ปล่องไฟของ orot rabin ความสูงของ Pinnacle คืออะไร?",
    "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_en": "Which Country has a Pinnacle height of metres (ft) and a Name of azeri tv tower?",
    "question_th": "ประเทศใดมีความสูงพินนาเคิลเมตร (ฟุต) และชื่อของหอส่งสัญญาณโทรทัศน์ Azeri",
    "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_en": "Which Town has a Structural type of guyed mast and a Country of belgium?",
    "question_th": "เมืองใดมีเสากระโดงแบบมีโครงสร้างและประเทศเบลเยียม",
    "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_en": "What is the Main use of emley moor tower (mk.3)?",
    "question_th": "เอ็มลีย์ มัวร์ ทาวเวอร์ (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_en": "What is the Main use of transmitter solt in Hungary?",
    "question_th": "การใช้งานหลักของเครื่องส่งสัญญาณโซลิดในฮังการีคืออะไร?",
    "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_en": "what day was the sandown",
    "question_th": "ทรายเป็นวันไหน",
    "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_en": "What is the Birth of the lady that has a Became Duchess on 18 august 1593 husband's accession?",
    "question_th": "ประสูติของพระนางที่ได้ขึ้นเป็นดัชเชสเมื่อวันที่ 18 สิงหาคม พ.ศ. 2136 สามีขึ้นครองราชย์คือเมื่อใด?",
    "context": "CREATE TABLE table_name_52 (birth VARCHAR, became_duchess VARCHAR)"
  },
  {
    "answer": "SELECT spouse FROM table_name_47 WHERE birth = \"29 october 1451\"",
    "question_en": "Who is the Spouse of the Duchess that has a Birth on 29 october 1451?",
    "question_th": "คู่สมรสของดัชเชสซึ่งประสูติเมื่อวันที่ 29 ตุลาคม พ.ศ. 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_en": "Who is The Spouse of the Duchess that has a Became Duchess  on 31 october 1733 husband's accession?",
    "question_th": "ใครคือคู่สมรสของดัชเชสที่ได้ขึ้นเป็นดัชเชสเมื่อวันที่ 31 ตุลาคม พ.ศ. 2276 สามีขึ้นครองราชย์?",
    "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_en": "WHo Became Duchess that has a Death of 26 october 1614?",
    "question_th": "ใครได้เป็นดัชเชสที่สิ้นพระชนม์ในวันที่ 26 ตุลาคม พ.ศ. 2157",
    "context": "CREATE TABLE table_name_84 (became_duchess VARCHAR, death VARCHAR)"
  },
  {
    "answer": "SELECT spouse FROM table_name_61 WHERE death = \"6 april 1780\"",
    "question_en": "What is the Spouse of the Duchess that has a Death on 6 april 1780?",
    "question_th": "ภริยาของดัชเชสที่สิ้นพระชนม์ในวันที่ 6 เมษายน พ.ศ. 2323 คืออะไร?",
    "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_en": "Which season with 16 races had less than 321 points and a larger percent than 65.78 possible?",
    "question_th": "ฤดูกาลใดที่มี 16 การแข่งขันมีคะแนนน้อยกว่า 321 คะแนนและเปอร์เซ็นต์ที่มากกว่า 65.78 เป็นไปได้",
    "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_en": "What season had less than 301 points and 17 races?",
    "question_th": "ฤดูกาลใดมีคะแนนน้อยกว่า 301 แต้มและแข่ง 17 รายการ?",
    "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_en": "What time did bruce anstey complete in a honda 1000cc?",
    "question_th": "Bruce Anstey พิชิตฮอนด้า 1,000cc ได้กี่โมง?",
    "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_en": "Who holds the time of 17:11.572?",
    "question_th": "ใครถือเวลา 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_en": "Who holds the time of 17:11.572?",
    "question_th": "ใครถือเวลา 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_en": "What machine did susan jenness trophy earn the trophy?",
    "question_th": "ถ้วยรางวัล Susan Jenness ได้รับถ้วยรางวัลจากเครื่องจักรอะไร",
    "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_en": "Agri culture b larger than 12.6, what is the lowest vehicles per 1000?",
    "question_th": "วัฒนธรรมการเกษตร b มากกว่า 12.6 ยานพาหนะต่ำสุดต่อ 1,000 คือเท่าใด",
    "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_en": "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?",
    "question_th": "ความยากจนด้านรายได้ f น้อยกว่า 13.6 และเหมืองแร่ b เท่ากับ 1 และความยากจนเชิงโครงสร้าง g น้อยกว่า 7.8 แล้วจำนวนเกษตรกรรมทั้งหมดเป็นเท่าใด",
    "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_en": "What's the bulgarian word for January?",
    "question_th": "มกราคม ภาษาบัลแกเรียเรียกว่าอะไร",
    "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_en": "What's the Bulgarian word for september?",
    "question_th": "กันยายน ภาษาบัลแกเรียเรียกว่าอะไร",
    "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_en": "Who was the Opponent when the Save was || 36,388 ||15-7||?",
    "question_th": "ใครคือฝ่ายตรงข้ามเมื่อบันทึกคือ || 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_en": "What Opponent played on the Date May 21?",
    "question_th": "ฝ่ายตรงข้ามคนไหนเล่นในวันที่ 21 พฤษภาคม?",
    "context": "CREATE TABLE table_name_55 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_68 WHERE loss = \"ruthven (1-4)\"",
    "question_en": "What was the Score when the Loss was ruthven (1-4)?",
    "question_th": "คะแนนเมื่อแพ้คือรูทเวน (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_en": "What was the highest pick for Penn State?",
    "question_th": "ตัวเลือกสูงสุดสำหรับ 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_en": "What position does pick number 12 play?",
    "question_th": "เลือกหมายเลข 12 เล่นตำแหน่งใด?",
    "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_en": "What is the pick number for the College of Central Missouri State?",
    "question_th": "หมายเลขเลือกของวิทยาลัย 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_en": "What was Rich Voltzke's highest pick number?",
    "question_th": "หมายเลขเลือกสูงสุดของ Rich Voltzke คืออะไร?",
    "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_en": "How many Games has Points larger than 0 and a Lost smaller than 4?",
    "question_th": "มีกี่เกมที่มีคะแนนมากกว่า 0 และแพ้น้อยกว่า 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_en": "which Points has Games smaller than 7?",
    "question_th": "คะแนนใดที่มีเกมน้อยกว่า 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_en": "How many Drawns have Points smaller than 5 and a Lost larger than 7?",
    "question_th": "การจับฉลากมีแต้มน้อยกว่า 5 และเสียมากกว่า 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_en": "Which record has a date of January 29?",
    "question_th": "บันทึกใดมีวันที่ 29 มกราคม?",
    "context": "CREATE TABLE table_name_35 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_62 WHERE visitor = \"new york\"",
    "question_en": "Which score has a visitor of New York?",
    "question_th": "คะแนนใดที่มีผู้มาเยือนนิวยอร์ค?",
    "context": "CREATE TABLE table_name_62 (score VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_40 WHERE date = \"january 24\"",
    "question_en": "What is the name of the visitor on January 24?",
    "question_th": "แขกที่มาเยี่ยมในวันที่ 24 มกราคม ชื่ออะไร?",
    "context": "CREATE TABLE table_name_40 (visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_3 WHERE date = \"january 7\"",
    "question_en": "Which home game has a date of January 7?",
    "question_th": "เกมเหย้าไหนมีวันที่ 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_en": "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?",
    "question_th": "วิทยาลัยสารสนเทศและระบบ ซึ่งมีผู้เชี่ยวชาญ 0 คน และปริญญาโทน้อยกว่า 2 คน มีปริญญาเอกจำนวนสูงสุดคือเท่าใด",
    "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_en": "On what Date is the Blue Coalition 8,80%?",
    "question_th": "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_en": "What Source has an Attack of 9,77%?",
    "question_th": "แหล่งที่มาใดมีการโจมตี 9,77%?",
    "context": "CREATE TABLE table_name_8 (source VARCHAR, attack VARCHAR)"
  },
  {
    "answer": "SELECT attack FROM table_name_71 WHERE source = \"nciom\"",
    "question_en": "What Attack has a Source of NCIOM?",
    "question_th": "การโจมตีใดมีแหล่งที่มาของ NCIOM",
    "context": "CREATE TABLE table_name_71 (attack VARCHAR, source VARCHAR)"
  },
  {
    "answer": "SELECT attack FROM table_name_74 WHERE gerb = \"30,00%\"",
    "question_en": "What Attack has a 30,00% GERB?",
    "question_th": "การโจมตีใดมี GERB 30,00%?",
    "context": "CREATE TABLE table_name_74 (attack VARCHAR, gerb VARCHAR)"
  },
  {
    "answer": "SELECT gerb FROM table_name_16 WHERE attack = \"11%\"",
    "question_en": "What GERB has an 11% Attack?",
    "question_th": "GERB ใดมีการโจมตี 11%?",
    "context": "CREATE TABLE table_name_16 (gerb VARCHAR, attack VARCHAR)"
  },
  {
    "answer": "SELECT tie_no FROM table_name_39 WHERE score = \"3–0\" AND home_team = \"bristol rovers\"",
    "question_en": "Which Tie # has a Score of 3–0, and a Home team of bristol rovers?",
    "question_th": "เสมอ # ใดมีคะแนน 3–0 และทีมเหย้าของบริสตอลโรเวอร์ส?",
    "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–3 on penalties\"",
    "question_en": "Which Score has a Home team of yeovil town won 5–3 on penalties?",
    "question_th": "สกอร์ใดที่ทีมเหย้าของเยโอวิลทาวน์ชนะจุดโทษ 5–3?",
    "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_en": "Which Tie # has an Away team of slough town?",
    "question_th": "เสมอ#ไหนมีทีมเยือนสลอคทาวน์?",
    "context": "CREATE TABLE table_name_66 (tie_no VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_13 WHERE tie_no = \"32\"",
    "question_en": "Which Attendance has a Tie # of 32?",
    "question_th": "ผู้เข้าร่วมคนใดมีคะแนนเสมอกันที่ 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_en": "Which Away team has a Tie # of replay, and an Attendance of 24 november 1998, and a Home team of rotherham united?",
    "question_th": "ทีมเยือนทีมไหนเสมอกันในการรีเพลย์ และการเข้าเล่นในวันที่ 24 พฤศจิกายน 1998 และทีมเหย้าของร็อตเธอร์แฮมยูไนเต็ด?",
    "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_en": "Which Tie # that has an Attendance of 14 november 1998, and an Away team of hayes?",
    "question_th": "เสมอ # ไหนที่มีผู้เข้าร่วมในวันที่ 14 พฤศจิกายน 1998 และทีมเหย้าของเฮย์ส?",
    "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_en": "Name the date with winner outcome and opponent of noppawan lertcheewakarn jessica moore",
    "question_th": "ตั้งชื่อวันที่พร้อมผลผู้ชนะ และคู่ต่อสู้ นพวรรณ เลิศชีวาการ เจสสิก้า มัวร์",
    "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_en": "Name the score for 21 may 2011",
    "question_th": "ตั้งชื่อคะแนนสำหรับวันที่ 21 พฤษภาคม 2554",
    "context": "CREATE TABLE table_name_35 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT partner FROM table_name_20 WHERE opponent = \"michaëlla krajicek eleni daniilidou\"",
    "question_en": "Name the partner with opponent of michaëlla krajicek eleni daniilidou",
    "question_th": "ตั้งชื่อคู่ต่อสู้กับคู่ต่อสู้ของ michaëlla krajicek eleni daniilidou",
    "context": "CREATE TABLE table_name_20 (partner VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_98 WHERE opponent = \"michaëlla krajicek eleni daniilidou\"",
    "question_en": "Name the outcome for opponent of michaëlla krajicek eleni daniilidou",
    "question_th": "ทายผลคู่ต่อสู้ของ มิชาเอลลา กราจิเซค เอเลนี ดานีลิดู",
    "context": "CREATE TABLE table_name_98 (outcome VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT SUM(wins) FROM table_name_82 WHERE matches > 5",
    "question_en": "How many wins had Matches greater than 5?",
    "question_th": "ชัยชนะมากกว่า 5 นัดมีกี่ครั้ง?",
    "context": "CREATE TABLE table_name_82 (wins INTEGER, matches INTEGER)"
  },
  {
    "answer": "SELECT round FROM table_name_27 WHERE player = \"michael hjalm\"",
    "question_en": "What was the round number when Michael Hjalm played?",
    "question_th": "ไมเคิล จาล์มลงเล่นได้หมายเลขรอบอะไร?",
    "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_en": "What is the position Bill Campbell played before round 6?",
    "question_th": "บิลล์ แคมป์เบลล์ เล่นก่อนรอบ 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_en": "What is the date for the release with a catalogue number of WARPCDD333?",
    "question_th": "วันที่วางจำหน่ายพร้อมหมายเลขแค็ตตาล็อก 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_en": "What is the country/region for the releases from Beat Records?",
    "question_th": "ประเทศ/ภูมิภาคที่ออกผลงานจาก 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_en": "What is the Total with a Player named robbie winters?",
    "question_th": "ผลรวมของผู้เล่นชื่อ Robbie Winters คืออะไร?",
    "context": "CREATE TABLE table_name_95 (total VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_47 WHERE player = \"kenneth udjus\"",
    "question_en": "What Position has a Player named kenneth udjus?",
    "question_th": "ผู้เล่นชื่อ 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_en": "What is the latest day in November of the game with a 15-5-2 record?",
    "question_th": "ล่าสุดในเดือนพฤศจิกายนเกมที่มีสถิติ 15-5-2 คือวันไหน?",
    "context": "CREATE TABLE table_name_60 (november INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT MAX(november) FROM table_name_31 WHERE game = 15",
    "question_en": "What is the latest day in November with a game 15?",
    "question_th": "วันที่ล่าสุดในเดือนพฤศจิกายนกับเกม 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_en": "What is the lowest wins with points larger than 46, and a rank of 10th?",
    "question_th": "ชัยชนะต่ำสุดที่มีคะแนนมากกว่า 46 และอันดับที่ 10 คืออะไร?",
    "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_en": "What is the average points with a year higher than 1989, and a rank of 7th?",
    "question_th": "คะแนนเฉลี่ยของปีที่สูงกว่าปี 1989 และอันดับที่ 7 คือเท่าไร?",
    "context": "CREATE TABLE table_name_60 (points INTEGER, year VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_name_84 WHERE points > 20",
    "question_en": "What is the year that has points larger than 20?",
    "question_th": "ปีใดที่มีคะแนนมากกว่า 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_en": "What is year that has points larger than 46, and a rank of 6th?",
    "question_th": "ปีใดที่มีคะแนนมากกว่า 46 และอันดับที่ 6 คือปีใด",
    "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_en": "What earliest year with points larger than 68 and a rank of 7th?",
    "question_th": "ปีแรกสุดที่มีคะแนนมากกว่า 68 และอันดับที่ 7 คือปีใด",
    "context": "CREATE TABLE table_name_71 (year INTEGER, points VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_7 WHERE school = \"ul-monroe\"",
    "question_en": "what player went to ul-monroe",
    "question_th": "ผู้เล่นคนไหนไปหาอัล-มอนโร",
    "context": "CREATE TABLE table_name_7 (player VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT SUM(drawn) FROM table_name_86 WHERE points > 9",
    "question_en": "How many drawn having more than 9 points?",
    "question_th": "เสมอกันมากกว่า 9 แต้มมีกี่แต้ม?",
    "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_en": "Which Number stayed in Southeast has over 4,000 emigrated or forcibly removed?",
    "question_th": "หมายเลขใดที่อยู่ในตะวันออกเฉียงใต้ซึ่งมีผู้อพยพมากกว่า 4,000 คนหรือถูกบังคับให้ย้ายออก?",
    "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_en": "How many warfare deaths befell the choctaw nation?",
    "question_th": "มีผู้เสียชีวิตจากสงครามกี่ครั้งที่เกิดขึ้นกับประเทศช็อกทอว์?",
    "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_en": "How many of those who stayed in the southeast had 19,600 emigrated or forcibly removed?",
    "question_th": "ผู้ที่อาศัยอยู่ทางตะวันออกเฉียงใต้จำนวน 19,600 คนอพยพหรือถูกบังคับย้ายออกไปกี่คน?",
    "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_en": "Which removal treaty covered the chickasaw nation?",
    "question_th": "สนธิสัญญาการกำจัดฉบับใดครอบคลุมถึงประเทศชิกกาซอว์",
    "context": "CREATE TABLE table_name_32 (removal_treaty__year_signed_ VARCHAR, nation VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_53 WHERE stage = 5",
    "question_en": "When did stage 5 occur?",
    "question_th": "ระยะที่ 5 เกิดขึ้นเมื่อไหร่?",
    "context": "CREATE TABLE table_name_53 (date VARCHAR, stage VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_53 WHERE week = 14",
    "question_en": "Who were the opponents during week 14?",
    "question_th": "ใครคือคู่ต่อสู้ในช่วงสัปดาห์ที่ 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_en": "What is the highest attendance for the game before week 13 on December 9, 1973?",
    "question_th": "ผู้เข้าชมเกมสูงสุดก่อนสัปดาห์ที่ 13 ในวันที่ 9 ธันวาคม พ.ศ. 2516 คือเท่าใด",
    "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_en": "What is the average attendance for the games after week 2 on September 23, 1973?",
    "question_th": "ผู้เข้าชมเกมโดยเฉลี่ยหลังสัปดาห์ที่ 2 ในวันที่ 23 กันยายน พ.ศ. 2516 เป็นเท่าใด",
    "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_en": "What is the total number of weeks where games were on November 5, 1973 and the attendance was larger than 49,220?",
    "question_th": "จำนวนสัปดาห์ทั้งหมดที่มีเกมในวันที่ 5 พฤศจิกายน พ.ศ. 2516 และมีผู้เข้าร่วมมากกว่า 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–1\"",
    "question_en": "Record of 9–1 had what game site?",
    "question_th": "บันทึก 9–1 มีเว็บไซต์เกมอะไร?",
    "context": "CREATE TABLE table_name_70 (game_site VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT MAX(attendance) FROM table_name_18 WHERE record = \"8–1\" AND week > 9",
    "question_en": "Record of 8–1, and a Week larger than 9 had what highest attendance?",
    "question_th": "บันทึก 8–1 และหนึ่งสัปดาห์ที่มากกว่า 9 มีผู้เข้าร่วมสูงสุดคือข้อใด",
    "context": "CREATE TABLE table_name_18 (attendance INTEGER, record VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT SUM(attendance) FROM table_name_9 WHERE result = \"w 24–21\" AND week < 6",
    "question_en": "Result of w 24–21, and a Week smaller than 6 had what sum of attendance?",
    "question_th": "ผลลัพธ์ของ w 24–21 และสัปดาห์ที่น้อยกว่า 6 มีจำนวนผู้เข้าร่วมเท่าใด",
    "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_en": "Date of October 25, 1964 involves what record?",
    "question_th": "วันที่ 25 ตุลาคม 2507 มีบันทึกอะไรบ้าง?",
    "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_en": "What is the high total for algeria with over 2 bronzes?",
    "question_th": "ผลรวมที่สูงของแอลจีเรียที่มีมากกว่า 2 เหรียญทองแดงคือเท่าไร?",
    "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_en": "What is the highest number of silvers for qatar with under 8 total, 0 golds, and over 2 bronzes?",
    "question_th": "จำนวนเหรียญเงินสูงสุดสำหรับกาตาร์โดยทำได้ต่ำกว่า 8 เหรียญ, 0 เหรียญทอง และมากกว่า 2 เหรียญทองแดงคือเท่าใด",
    "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_en": "How many bronzes for the nation with over 20 total, under 26 golds, and over 0 silvers?",
    "question_th": "มีเหรียญทองแดงสำหรับประเทศกี่เหรียญที่มียอดรวมมากกว่า 20 เหรียญ ต่ำกว่า 26 เหรียญทอง และเหรียญเงินมากกว่า 0 เหรียญ?",
    "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_en": "Who one bronze in the event where Choi Jun-Sang won gold, and Suh Jung-Kyun won silver?",
    "question_th": "ใครคือเหรียญทองแดงในงานที่ Choi Jun-Sang คว้าเหรียญทอง และ Suh Jung-Kyun ได้รับรางวัลเหรียญเงิน?",
    "context": "CREATE TABLE table_name_27 (bronze VARCHAR, gold VARCHAR, silver VARCHAR)"
  },
  {
    "answer": "SELECT bronze FROM table_name_20 WHERE location = \"seoul\"",
    "question_en": "Who won bronze in Seoul?",
    "question_th": "ใครได้รับรางวัลเหรียญทองแดงในกรุงโซล?",
    "context": "CREATE TABLE table_name_20 (bronze VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT bronze FROM table_name_7 WHERE year = 2006",
    "question_en": "Who won bronze is 2006?",
    "question_th": "ใครได้รับรางวัลเหรียญทองแดงคือปี 2549?",
    "context": "CREATE TABLE table_name_7 (bronze VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_name_70 WHERE location = \"hiroshima\"",
    "question_en": "What year did the event in Hiroshima take place?",
    "question_th": "งานที่ฮิโรชิม่าจัดขึ้นในปีใด",
    "context": "CREATE TABLE table_name_70 (year VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT bronze FROM table_name_35 WHERE year = 2002",
    "question_en": "Who won bronze in 2002?",
    "question_th": "ใครได้รับรางวัลเหรียญทองแดงในปี 2545?",
    "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_en": "What is the game number of the game with the Edmonton Oilers as the opponent after February 12?",
    "question_th": "เกมการแข่งขันกับ เอดมันตัน ออยเลอร์ส เป็นคู่ต่อสู้หลังวันที่ 12 กุมภาพันธ์ จะเป็นเกมหมายเลขใด?",
    "context": "CREATE TABLE table_name_74 (game VARCHAR, opponent VARCHAR, february VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(seasons) FROM table_name_1 WHERE years = \"1976–1977\"",
    "question_en": "How many Seasons that has Years of 1976–1977?",
    "question_th": "มีกี่ฤดูกาลที่มีปี พ.ศ. 2519-2520",
    "context": "CREATE TABLE table_name_1 (seasons VARCHAR, years VARCHAR)"
  },
  {
    "answer": "SELECT MIN(week) FROM table_name_24 WHERE date = \"october 5, 1975\"",
    "question_en": "What week of the season had a date of october 5, 1975?",
    "question_th": "สัปดาห์ใดของฤดูกาลมีวันที่ 5 ตุลาคม พ.ศ. 2518",
    "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_en": "How many Events have a Top-10 larger than 6, and a Top-5 smaller than 8?",
    "question_th": "มีกี่เหตุการณ์ที่มี 10 อันดับแรกมากกว่า 6 และ 5 อันดับแรกเล็กกว่า 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_en": "How many Wins have a Top-10 smaller than 6, and Cuts made larger than 7, and a Top-5 of 0?",
    "question_th": "มีกี่ชัยชนะที่มี 10 อันดับแรกน้อยกว่า 6 และ Cuts ทำได้มากกว่า 7 และมี 5 อันดับแรกเป็น 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_en": "What is the result of the game on May 14?",
    "question_th": "ผลการแข่งขันวันที่ 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_en": "What is the result of the game on May 14 with Philadelphia as the road team?",
    "question_th": "ผลการแข่งขันวันที่ 14 พ.ค. มีฟิลาเดลเฟียเป็นทีมโร้ดเป็นอย่างไร?",
    "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_en": "What is the result of the game on May 4 with Philadelphia as the road team?",
    "question_th": "ผลการแข่งขันวันที่ 4 พ.ค. มีฟิลาเดลเฟียเป็นทีมโร้ดเป็นอย่างไร?",
    "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_en": "What is the road team of game 6 with Philadelphia as the home team?",
    "question_th": "ทีมโรดของเกมที่ 6 กับฟิลาเดลเฟียเป็นเจ้าบ้านคืออะไร?",
    "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_en": "What is the result of game 5 with Los Angeles as the home team?",
    "question_th": "ผลลัพธ์ของเกมที่ 5 กับลอสแองเจลิสเป็นเจ้าบ้านคืออะไร?",
    "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_en": "What is the road team of the game with Philadelphia as the home team with a result of 105-102?",
    "question_th": "ทีมโร้ดของเกมนี้คือทีมใดที่ฟิลาเดลเฟียเป็นเจ้าบ้านด้วยสกอร์ 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_en": "Which Result has a Party of republican, and a First elected smaller than 1856?",
    "question_th": "ผลลัพธ์ใดมีพรรครีพับลิกันและพรรครีพับลิกันได้รับเลือกครั้งแรกน้อยกว่าปี 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_en": "Which District has a First elected of 1856, and an Incumbent of william kellogg?",
    "question_th": "เขตใดได้รับการเลือกตั้งครั้งแรกในปี พ.ศ. 2399 และเป็นผู้ดำรงตำแหน่งของวิลเลียม เคลล็อกก์",
    "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_en": "Which First elected has a District of illinois 3?",
    "question_th": "ผู้ที่ได้รับเลือกคนแรกมีเขตอิลลินอยส์ 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_en": "How much First elected has a Result of re-elected, and a Party of republican, and a District of illinois 4?",
    "question_th": "การเลือกตั้งครั้งแรกมีผลการเลือกตั้งใหม่และพรรครีพับลิกันและเขตอิลลินอยส์ 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_en": "on january 7 what is home?",
    "question_th": "วันที่ 7 มกราคม บ้านคืออะไร?",
    "context": "CREATE TABLE table_name_33 (home VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_16 WHERE date = \"january 12\"",
    "question_en": "on january 12 who was the visitor?",
    "question_th": "วันที่ 12 มกราคม ใครคือแขกที่มาเยี่ยม?",
    "context": "CREATE TABLE table_name_16 (visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_63 WHERE date = \"january 7\"",
    "question_en": "on january 7 what is the record?",
    "question_th": "ในวันที่ 7 มกราคม บันทึกคืออะไร?",
    "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_en": "What is the total number of silver medals of the team with less than 2 gold, 1 bronze, and more than 2 total medals?",
    "question_th": "จำนวนเหรียญเงินทั้งหมดของทีมที่ได้น้อยกว่า 2 เหรียญทอง 1 เหรียญทองแดง และมากกว่า 2 เหรียญคือเท่าใด",
    "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_en": "What is the highest number of silver medals of the team with less than 0 bronzes?",
    "question_th": "จำนวนเหรียญเงินสูงสุดของทีมที่มีน้อยกว่า 0 เหรียญทองแดงคือเท่าใด",
    "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_en": "What is the total number of silver medals of the team ranked 7 with more than 1 total medal?",
    "question_th": "จำนวนเหรียญเงินของทีมอันดับ 7 รวมมากกว่า 1 เหรียญคือเท่าไร?",
    "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_en": "What is the average number of bronze medals of the team with 0 silvers, ranked 3, and less than 1 total medal?",
    "question_th": "จำนวนเหรียญทองแดงโดยเฉลี่ยของทีมที่มี 0 เหรียญเงิน อันดับ 3 และเหรียญรวมน้อยกว่า 1 เหรียญคือเท่าใด",
    "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_en": "What is the number of silver medals of the team with 0 gold, ranked 5, and more than 0 bronze medals?",
    "question_th": "จำนวนเหรียญเงินของทีม 0 เหรียญทอง อันดับ 5 และเหรียญทองแดงมากกว่า 0 เหรียญ คือเท่าไร?",
    "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_en": "What was the sum for a top-10 U.S. open that had a top-25 bigger than 0?",
    "question_th": "ผลรวมของ 10 อันดับแรกของ US Open ที่มี 25 อันดับแรกมากกว่า 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_en": "What were the total number of cuts made in an event larger than 4 and a top-10 smaller than 4?",
    "question_th": "จำนวนการตัดเฉือนทั้งหมดที่เกิดขึ้นในเหตุการณ์ที่มากกว่า 4 และ 10 อันดับแรกที่น้อยกว่า 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_en": "What is the total number of top-25 that has a top-10 smaller than 4 with 0 cuts?",
    "question_th": "จำนวนรวมของ 25 อันดับแรกที่มี 10 อันดับแรกน้อยกว่า 4 โดยมีการตัด 0 ครั้งเป็นเท่าใด",
    "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_en": "What was the cuts average in tournament totals in an event larger than 24?",
    "question_th": "การตัดค่าเฉลี่ยของผลรวมทัวร์นาเมนต์ในเหตุการณ์ที่มากกว่า 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_en": "What is the total for a top-10 in a masters tournament in an event smaller than 4?",
    "question_th": "ยอดรวม 10 อันดับแรกในทัวร์นาเมนต์มาสเตอร์ในอีเวนต์ที่เล็กกว่า 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_en": "Which Against is the highest one that has a Team of flamengo, and a Lost smaller than 1?",
    "question_th": "Against อันไหนคือทีมที่สูงที่สุดที่มีทีมฟลาเมงโก และแพ้น้อยกว่า 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_en": "How many Lost have a Team of flamengo, and an Against smaller than 5?",
    "question_th": "ทีมฟลาเมงโกที่แพ้มีกี่ทีม และทีมที่แพ้น้อยกว่า 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_en": "Which Played is the highest one that has Points of 5, and a Drawn smaller than 1?",
    "question_th": "ผู้เล่นคนไหนที่เล่นสูงสุดที่มีแต้ม 5 และเสมอน้อยกว่า 1?",
    "context": "CREATE TABLE table_name_94 (played INTEGER, points VARCHAR, drawn VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_11 WHERE round = 1",
    "question_en": "What was the nationality for the player in Round 1?",
    "question_th": "ผู้เล่นในรอบที่ 1 มีสัญชาติอะไร?",
    "context": "CREATE TABLE table_name_11 (nationality VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_66 WHERE position = \"right wing\"",
    "question_en": "Who plays the right wing position?",
    "question_th": "ใครเล่นตำแหน่งปีกขวา?",
    "context": "CREATE TABLE table_name_66 (player VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT celebrity FROM table_name_79 WHERE finished = \"6th\"",
    "question_en": "What celebrity finished 6th?",
    "question_th": "ดาราคนไหนจบอันดับที่ 6?",
    "context": "CREATE TABLE table_name_79 (celebrity VARCHAR, finished VARCHAR)"
  },
  {
    "answer": "SELECT entered FROM table_name_96 WHERE finished = \"4th\"",
    "question_en": "What day did the celebrity who finished 4th enter?",
    "question_th": "ดาราที่จบม.4เข้าวันไหนคะ?",
    "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_en": "Which celebrity who was famous for being the ex busted member and TV presenter exited on day 19?",
    "question_th": "ดาราคนไหนที่ดังจากการเป็นอดีตสมาชิกถูกจับและผู้จัดรายการทีวีที่ออกจากงานวันที่ 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_en": "Which celebrity was famous for finishing 9th?",
    "question_th": "คนดังคนไหนที่โด่งดังจากการจบอันดับที่ 9?",
    "context": "CREATE TABLE table_name_52 (famous_for VARCHAR, finished VARCHAR)"
  },
  {
    "answer": "SELECT finished FROM table_name_77 WHERE celebrity = \"myleene klass\"",
    "question_en": "What rank did Myleene Klass finish?",
    "question_th": "Myleene Klass จบอันดับไหน?",
    "context": "CREATE TABLE table_name_77 (finished VARCHAR, celebrity VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_24 WHERE opponent = \"kilmarnock\" AND result = \"1–1\"",
    "question_en": "Opponent of kilmarnock, and a Result of 1–1 happened in what venue?",
    "question_th": "ฝ่ายตรงข้ามคิลมาร์น็อค และผลสกอร์ 1–1 เกิดขึ้นที่สนามใด?",
    "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_en": "what is the weight of a shot that is xx-inch?",
    "question_th": "ช็อตที่มีขนาด xx นิ้วมีน้ำหนักเท่าไหร่?",
    "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_en": "What is the length of the film with Burleigh Sullivan as the character?",
    "question_th": "ภาพยนตร์เรื่องนี้มีความยาวเท่าไร โดยมี Burleigh Sullivan เป็นตัวละคร?",
    "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_en": "What is the length of the film with the character type being a milkman turned prizefighter?",
    "question_th": "ความยาวของหนังที่ตัวละครประเภทเป็นคนส่งนมกลายเป็นนักสู้รางวัลคือเท่าไร?",
    "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_en": "What is the character name that has phyllis welch as the leading lady?",
    "question_th": "ตัวละครที่มีฟิลลิส เวลช์ เป็นนางเอกชื่ออะไรคะ?",
    "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_en": "Who directed the film that had phyllis welch as the leading lady?",
    "question_th": "ใครเป็นผู้กำกับภาพยนตร์เรื่องนี้ซึ่งมีฟิลลิส เวลช์เป็นนางเอก?",
    "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_en": "What was the character name for the film with a release date of July 29, 1938?",
    "question_th": "ชื่อตัวละครของภาพยนตร์เรื่องนี้ซึ่งมีกำหนดเข้าฉายในวันที่ 29 กรกฎาคม พ.ศ. 2481 คืออะไร?",
    "context": "CREATE TABLE table_name_72 (character_name VARCHAR, release_date VARCHAR)"
  },
  {
    "answer": "SELECT locomotive FROM table_name_2 WHERE delivered_as = \"t414\"",
    "question_en": "What Locomotive was Delivered as T414?",
    "question_th": "รถจักรชนิดใดที่ถูกส่งมาเป็น T414?",
    "context": "CREATE TABLE table_name_2 (locomotive VARCHAR, delivered_as VARCHAR)"
  },
  {
    "answer": "SELECT owner FROM table_name_70 WHERE delivered_as = \"t415\"",
    "question_en": "What Owner Delivered the T415?",
    "question_th": "เจ้าของคนใดเป็นผู้ส่งมอบ 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_en": "What is the Entered service date of the T413?",
    "question_th": "วันที่เข้ารับบริการของ 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_en": "What is the Delivered as name of the H3 Locomotive?",
    "question_th": "สิ่งที่ส่งมอบเป็นชื่อของหัวรถจักร H3 คืออะไร?",
    "context": "CREATE TABLE table_name_64 (delivered_as VARCHAR, locomotive VARCHAR)"
  },
  {
    "answer": "SELECT entered_service FROM table_name_54 WHERE locomotive = \"h1\"",
    "question_en": "What is the Entered service date of the H1 Locomotive?",
    "question_th": "วันที่เข้ารับบริการของหัวรถจักร H1 คือเมื่อใด",
    "context": "CREATE TABLE table_name_54 (entered_service VARCHAR, locomotive VARCHAR)"
  },
  {
    "answer": "SELECT MAX(week) FROM table_name_53 WHERE result = \"l 16–12\"",
    "question_en": "What was the highest week with a result of l 16–12?",
    "question_th": "สัปดาห์สูงสุดโดยผล l 16–12 คือสัปดาห์ใด",
    "context": "CREATE TABLE table_name_53 (week INTEGER, result VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_52 WHERE result = \"l 27–3\"",
    "question_en": "Who was the opponent at the game with a result of l 27–3?",
    "question_th": "คู่ต่อสู้ในเกมนี้คือใครโดยผลสกอร์ 27–3?",
    "context": "CREATE TABLE table_name_52 (opponent VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_3 WHERE week < 12 AND result = \"bye\"",
    "question_en": "What was the date of the game with a result of bye before week 12?",
    "question_th": "เกมวันที่เท่าไหร่พร้อมผลการบายก่อนสัปดาห์ที่ 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_en": "What was the record at the game against the Los Angeles Rams?",
    "question_th": "สถิติในเกมกับลอสแอนเจลิส แรมส์เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_25 (record VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_13 WHERE date = \"september 28\"",
    "question_en": "Who is the opponent from September 28?",
    "question_th": "คู่ต่อสู้ในวันที่ 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_en": "Who was the opponent at the game later than game 22 when the record was 17-10-4?",
    "question_th": "คู่ต่อสู้ในเกมช้ากว่าเกมที่ 22 เมื่อสถิติเป็น 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_en": "What were the Opponents of the team, that made it to the third round, before 2008?",
    "question_th": "ฝ่ายตรงข้ามของทีมใดบ้างที่ผ่านเข้าสู่รอบที่สามก่อนปี 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_en": "What was the score in 1997 for the team that has a Progress of no entrants?",
    "question_th": "คะแนนในปี 1997 ของทีมที่ไม่มีผู้เข้าแข่งขันมีความก้าวหน้าเป็นเท่าใด",
    "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_en": "How many Atts that have Yards of 43 and a Long larger than 43?",
    "question_th": "กี่แอตต์ที่มีหลา 43 และยาวมากกว่า 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_en": "How many Ints have a Rating smaller than 87, and Yards larger than 4?",
    "question_th": "มีกี่ Ints ที่มีเรตติ้งน้อยกว่า 87 และหลามากกว่า 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_en": "Which visitor has detroit as the home, and february 24 as the date?",
    "question_th": "ผู้เยี่ยมชมรายใดที่มีดีทรอยต์เป็นบ้าน และวันที่ 24 กุมภาพันธ์เป็นวันที่",
    "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_en": "What score has detroit as the home and february 17 as the date?",
    "question_th": "ดีทรอยต์เป็นเจ้าบ้านและมีคะแนน 17 กุมภาพันธ์เป็นวันที่เท่าไร?",
    "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_en": "What shows for Scorers when the Opponent was west germany on October 7?",
    "question_th": "สิ่งที่แสดงให้เห็นสำหรับผู้ทำประตูเมื่อฝ่ายตรงข้ามอยู่ที่เยอรมนีตะวันตกในวันที่ 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_en": "Who was the director of Battalion Wars 2 which was released on GCN after 2004?",
    "question_th": "ใครคือผู้กำกับของ Battalion Wars 2 ซึ่งออกฉายใน GCN หลังปี 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_en": "What year was Metroid Prime Hunters 5 released?",
    "question_th": "Metroid Prime Hunters 5 เปิดตัวในปีใด",
    "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_en": "What platform was used for the game directed by Bryan Walker after 2006?",
    "question_th": "แพลตฟอร์มใดที่ใช้สำหรับเกมที่กำกับโดยไบรอัน วอล์คเกอร์ หลังปี 2549",
    "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_en": "What 3ds game did Naohiko Aoyama direct?",
    "question_th": "Naohiko Aoyama กำกับเกม 3ds อะไร",
    "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–5)\"",
    "question_en": "What was the score when the loss was hideo nomo (3–5)?",
    "question_th": "คะแนนเมื่อแพ้คือฮิเดโอะ โนโมะ (3–5)?",
    "context": "CREATE TABLE table_name_57 (score VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_77 WHERE date = \"may 19\"",
    "question_en": "What was the score on may 19?",
    "question_th": "คะแนนวันที่ 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_en": "Name of the highest Pick is also a Round greater than 5 and Player as Tom Ivey?",
    "question_th": "ชื่อของตัวเลือกสูงสุดคือรอบที่มากกว่า 5 และผู้เล่นเป็น 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_en": "What Nationality is the Pick that is 116?",
    "question_th": "สัญชาติอะไรคือตัวเลือกที่เป็น 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_en": "What is the total of Pick with a Position of n/a and Greg Wendt as Player with a Round less than 6?",
    "question_th": "ผลรวมของ Pick ที่มีตำแหน่ง n/a และ Greg Wendt ในฐานะผู้เล่นที่มีรอบน้อยกว่า 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_en": "What was the score at 3:27?",
    "question_th": "นาทีที่ 3:27 คะแนนเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_8 (score VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT cardinal_direction FROM table_name_84 WHERE english = \"monday\"",
    "question_en": "What is the cardinal direction of Monday in English?",
    "question_th": "ทิศทางสำคัญของวันจันทร์ในภาษาอังกฤษคืออะไร?",
    "context": "CREATE TABLE table_name_84 (cardinal_direction VARCHAR, english VARCHAR)"
  },
  {
    "answer": "SELECT english FROM table_name_31 WHERE cardinal_direction = \"northwest\"",
    "question_en": "What is the cardinal direction northwest in English?",
    "question_th": "ทิศทางสำคัญทิศตะวันตกเฉียงเหนือในภาษาอังกฤษคืออะไร?",
    "context": "CREATE TABLE table_name_31 (english VARCHAR, cardinal_direction VARCHAR)"
  },
  {
    "answer": "SELECT sign FROM table_name_87 WHERE burmese = \"taninganwe တနင်္ဂနွေ\"",
    "question_en": "What is the sign of Burmese taninganwe တနင်္ဂနွေ?",
    "question_th": "สัญลักษณ์ของชาวพม่าตะนิงันเว တနင္ဂနွေ คืออะไร?",
    "context": "CREATE TABLE table_name_87 (sign VARCHAR, burmese VARCHAR)"
  },
  {
    "answer": "SELECT cardinal_direction FROM table_name_90 WHERE english = \"wednesday p.m.\"",
    "question_en": "What is the cardinal direction of Wednesday p.m. in English?",
    "question_th": "ทิศทางสำคัญของบ่ายวันพุธในภาษาอังกฤษคืออะไร?",
    "context": "CREATE TABLE table_name_90 (cardinal_direction VARCHAR, english VARCHAR)"
  },
  {
    "answer": "SELECT sign FROM table_name_94 WHERE burmese = \"taninganwe တနင်္ဂနွေ\"",
    "question_en": "What is the sign of the Burmese taninganwe တနင်္ဂနွေ?",
    "question_th": "สัญลักษณ์ของภาษาพม่าตะนิงันเว တနင္္ဂနွေ คืออะไร?",
    "context": "CREATE TABLE table_name_94 (sign VARCHAR, burmese VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_68 WHERE date = \"january 5\"",
    "question_en": "On January 5 who was the home team?",
    "question_th": "วันที่ 5 มกราคม ใครเป็นเจ้าบ้าน?",
    "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_en": "What was the Pick Number when the position was wide receiver, the college was Southern Miss with an overall less than 186?",
    "question_th": "เลือกเบอร์อะไรเมื่อตำแหน่งรับกว้าง วิทยาลัย คือ มิสเซาเทิร์นมิส รวมคะแนนไม่ถึง 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_en": "Let's say position was linebacker with a pick number less than 5, what was the highest round?",
    "question_th": "สมมุติว่าตำแหน่งเป็นไลน์แบ็คเกอร์ที่มีตัวเลือกน้อยกว่า 5 รอบสูงสุดคือเท่าไร?",
    "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_en": "What transfer window has baptista as the name?",
    "question_th": "หน้าต่างโอนย้ายใดมีบัพติสต้าเป็นชื่อ?",
    "context": "CREATE TABLE table_name_44 (transfer_window VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_6 WHERE type = \"loan\"",
    "question_en": "What country has a loan as the type?",
    "question_th": "ประเทศใดมีสินเชื่อเป็นประเภท?",
    "context": "CREATE TABLE table_name_6 (country VARCHAR, type VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_7 WHERE name = \"song\"",
    "question_en": "What type has song as the name?",
    "question_th": "ชื่อเพลงเป็นประเภทไหนคะ?",
    "context": "CREATE TABLE table_name_7 (type VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT ends FROM table_name_92 WHERE type = \"transferred\"",
    "question_en": "What ends has transferred as the type?",
    "question_th": "ปลายโอนมาแบบไหนครับ?",
    "context": "CREATE TABLE table_name_92 (ends VARCHAR, type VARCHAR)"
  },
  {
    "answer": "SELECT moving_from FROM table_name_63 WHERE country = \"fra\"",
    "question_en": "What moving has fra as the country?",
    "question_th": "การเคลื่อนไหวใดมีความเคลื่อนไหวเหมือนประเทศ?",
    "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 = \"£3.4m\"",
    "question_en": "What transfer window has bra as the country, with £3.4m as the transfer fee?",
    "question_th": "หน้าต่างการโอนใดที่มีบราเป็นประเทศโดยมีค่าธรรมเนียมการโอน 3.4 ล้านปอนด์?",
    "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_en": "Which Incumbent has a District of massachusetts 2?",
    "question_th": "ผู้ดำรงตำแหน่งคนใดมีเขตแมสซาชูเซตส์ 2",
    "context": "CREATE TABLE table_name_62 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_name_47 WHERE district = \"massachusetts 8\"",
    "question_en": "Which Incumbent has a District of massachusetts 8?",
    "question_th": "ผู้ดำรงตำแหน่งคนใดมีเขตแมสซาชูเซตส์ 8",
    "context": "CREATE TABLE table_name_47 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_name_21 WHERE first_elected > 1858",
    "question_en": "Which District has a First elected larger than 1858?",
    "question_th": "เขตใดมีการเลือกตั้งครั้งแรกมากกว่าปี 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_en": "What episode has  a manual motorcycle transmissions section D?",
    "question_th": "ตอนไหนมีเกียร์ธรรมดาของมอเตอร์ไซค์หมวด 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_en": "What segment A is associated with a Segment C of paint chip cards?",
    "question_th": "ส่วน A ใดที่เกี่ยวข้องกับส่วน C ของชิปสีการ์ด",
    "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_en": "What segment A is associated with a Segment D of manual motorcycle transmissions?",
    "question_th": "ส่วน A ใดที่เกี่ยวข้องกับส่วน D ของระบบเกียร์ธรรมดาของรถจักรยานยนต์",
    "context": "CREATE TABLE table_name_76 (segment_a VARCHAR, segment_d VARCHAR)"
  },
  {
    "answer": "SELECT austria FROM table_name_13 WHERE croatia = \"ireland\"",
    "question_en": "What is shown for Austria when Croatia shows Ireland?",
    "question_th": "ออสเตรียแสดงอะไรเมื่อโครเอเชียแสดงไอร์แลนด์?",
    "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_en": "What is the smallest number for 102 when Friendly of friendly, and an Austria of greece?",
    "question_th": "หมายเลขที่น้อยที่สุดสำหรับ 102 เมื่อ Friendly of Friendly และ Austria of Grece คืออะไร?",
    "context": "CREATE TABLE table_name_78 (austria VARCHAR)"
  },
  {
    "answer": "SELECT losing_bonus FROM table_name_89 WHERE try_bonus = \"try bonus\"",
    "question_en": "What is the Losing bonus with an extra try bonus?",
    "question_th": "โบนัสการสูญเสียพร้อมโบนัสลองพิเศษคืออะไร?",
    "context": "CREATE TABLE table_name_89 (losing_bonus VARCHAR, try_bonus VARCHAR)"
  },
  {
    "answer": "SELECT lost FROM table_name_92 WHERE club = \"mumbles rfc\"",
    "question_en": "What did the loss come from a Club of mumbles rfc?",
    "question_th": "การสูญเสียมาจาก 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–2\"",
    "question_en": "Round of 1, and a Record of 10–2 had what method?",
    "question_th": "รอบ 1 และสถิติ 10–2 มีวิธีใด",
    "context": "CREATE TABLE table_name_88 (method VARCHAR, round VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT res FROM table_name_7 WHERE record = \"3–1\"",
    "question_en": "Record of 3–1 had what Res?",
    "question_th": "บันทึก 3–1 มี Res เท่าไร?",
    "context": "CREATE TABLE table_name_7 (res VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT res FROM table_name_49 WHERE record = \"47–5 (1)\"",
    "question_en": "Record of 47–5 (1) involved what res?",
    "question_th": "บันทึก 47–5 (1) เกี่ยวข้องกับรายละเอียดอะไรบ้าง?",
    "context": "CREATE TABLE table_name_49 (res VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT method FROM table_name_72 WHERE opponent = \"sergei bondarovich\" AND record = \"2–0\"",
    "question_en": "Opponent of sergei bondarovich, and a Record of 2–0 had what method?",
    "question_th": "ฝ่ายตรงข้ามของ Sergei Bondarovich และสถิติ 2–0 มีวิธีใด?",
    "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_en": "Method of submission (chin in the eye) had what opponent?",
    "question_th": "วิธีการยอมจำนน (คางตา) มีคู่ต่อสู้อะไรบ้าง?",
    "context": "CREATE TABLE table_name_93 (opponent VARCHAR, method VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_66 WHERE opponent = \"leonardo castello branco\"",
    "question_en": "Opponent of leonardo castello branco had what record?",
    "question_th": "ฝ่ายตรงข้ามของเลโอนาร์โด คาสเตลโล บรังโก มีสถิติอะไรบ้าง?",
    "context": "CREATE TABLE table_name_66 (record VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT mixed_doubles FROM table_name_53 WHERE year = \"2008\"",
    "question_en": "Who won in mixed doubles in 2008?",
    "question_th": "ใครชนะประเภทคู่ผสมในปี 2551?",
    "context": "CREATE TABLE table_name_53 (mixed_doubles VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_8 WHERE city = \"belgrade\" AND results¹ = \"5:2\"",
    "question_en": "Who was the opponent in Belgrade and had a result of 5:2?",
    "question_th": "คู่ต่อสู้ในเบลเกรดคือใครและสกอร์ 5:2?",
    "context": "CREATE TABLE table_name_8 (opponent VARCHAR, city VARCHAR, results¹ VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_61 WHERE type_of_game = \"friendly\" AND opponent = \"wales\"",
    "question_en": "On what date was there a friendly game against Wales?",
    "question_th": "มีเกมกระชับมิตรกับเวลส์วันไหน?",
    "context": "CREATE TABLE table_name_61 (date VARCHAR, type_of_game VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT results¹ FROM table_name_84 WHERE opponent = \"egypt\"",
    "question_en": "What were the results against the game against Egypt?",
    "question_th": "ผลการแข่งขันกับอียิปต์เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_84 (results¹ VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT results¹ FROM table_name_61 WHERE city = \"skoplje\"",
    "question_en": "What were the results against the game against Skoplje?",
    "question_th": "ผลการแข่งขันกับสโกเปียเยเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_61 (results¹ VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT type_of_game FROM table_name_20 WHERE results¹ = \"3:1\" AND opponent = \"france\"",
    "question_en": "What type of game was held against France with the results of 3:1?",
    "question_th": "เกมประเภทไหนที่แข่งกับฝรั่งเศสด้วยสกอร์ 3:1?",
    "context": "CREATE TABLE table_name_20 (type_of_game VARCHAR, results¹ VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT 2012 FROM table_name_55 WHERE tournament = \"us open\"",
    "question_en": "Name the 2012 for us open",
    "question_th": "ตั้งชื่อปี 2012 ให้เราเปิด",
    "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_en": "Name the 2012 for 2009 of a and 2010 of a and 2011 of a",
    "question_th": "ตั้งชื่อปี 2012 สำหรับปี 2009 ของ a และ 2010 ของ a และ 2011 ของ",
    "context": "CREATE TABLE table_name_89 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2012 FROM table_name_36 WHERE tournament = \"us open\"",
    "question_en": "Name the 2012 for us open",
    "question_th": "ตั้งชื่อปี 2012 ให้เราเปิด",
    "context": "CREATE TABLE table_name_36 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_93 WHERE 2010 = \"grand slam tournaments\"",
    "question_en": "Name the tournament for 2010 of grand slam tournaments",
    "question_th": "ตั้งชื่อการแข่งขันสำหรับการแข่งขันแกรนด์สแลมปี 2010",
    "context": "CREATE TABLE table_name_93 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_52 WHERE record = \"17-22\"",
    "question_en": "What is the attendance number for the record of 17-22?",
    "question_th": "จำนวนผู้เข้าร่วมสำหรับบันทึกวันที่ 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_en": "What is the record when the loss is westbrook (1-6)?",
    "question_th": "สถิติแพ้เวสต์บรูก (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_en": "What is the final score of the 1st round game of club Union Luxembourg?",
    "question_th": "สกอร์สุดท้ายของเกมรอบแรกของสโมสร ยูเนี่ยน ลักเซมเบิร์ก เป็นอย่างไร?",
    "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_en": "Which competition features the 1st round of Club Union Luxembourg?",
    "question_th": "การแข่งขันรายการใดเป็นรอบที่ 1 ของ 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_en": "Which Competition has a 2nd round score of 1:0, 0:1 (4:3 a.p.)?",
    "question_th": "การแข่งขันใดมีสกอร์รอบที่ 2 1:0, 0:1 (4:3 ap)?",
    "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_en": "What's the final score of the competition that features the club of fk Austria wien?",
    "question_th": "คะแนนสุดท้ายของการแข่งขันของสโมสร เอฟเค ออสเตรียเวียนนา?",
    "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_en": "Which club has a 2nd round score of 1:0, 3:0?",
    "question_th": "สโมสรใดมีสกอร์รอบ 2 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_en": "What is the mission for switzerland as a resident County?",
    "question_th": "ภารกิจของสวิตเซอร์แลนด์ในฐานะเขตที่อยู่อาศัยคืออะไร?",
    "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_en": "What is the local mission that has kingstown as a local location?",
    "question_th": "คณะเผยแผ่ท้องถิ่นที่มีคิงส์ทาวน์เป็นสถานที่ในท้องถิ่นคืออะไร?",
    "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_en": "What is the local mission that has ambassador as the local position, and a mission of suriname?",
    "question_th": "ภารกิจท้องถิ่นที่มีเอกอัครราชทูตดำรงตำแหน่งท้องถิ่นและภารกิจซูรินาเมคืออะไร?",
    "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_en": "What is the local location that has senegal as the resident county, and a mission of mali?",
    "question_th": "สถานที่ท้องถิ่นที่มีเซเนกัลเป็นเขตที่อยู่อาศัยและมีภารกิจของมาลีคืออะไร?",
    "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_en": "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?",
    "question_th": "คณะเผยแผ่ท้องถิ่นที่ไม่มีที่ตั้งในท้องที่ ข้าหลวงใหญ่ดำรงตำแหน่งในท้องที่ ฟิจิเป็นเทศมณฑลประจำถิ่น และคณะเผยแผ่ของตองกาคืออะไร",
    "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_en": "What is the mission that has ambassador of local position, and a resident country of democratic republic of congo?",
    "question_th": "ภารกิจที่มีเอกอัครราชทูตประจำตำแหน่งท้องถิ่นและประเทศที่อาศัยอยู่ในสาธารณรัฐประชาธิปไตยคองโกคืออะไร?",
    "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_en": "What position did the player play in the european cross country championships in 2008?",
    "question_th": "ผู้เล่นเล่นตำแหน่งใดในการแข่งขันชิงแชมป์ข้ามประเทศยุโรปในปี 2551?",
    "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_en": "What venue hsoted the european cross country championships with a notes of junior men individual 6.595km?",
    "question_th": "สถานที่ใดที่ใช้จัดการแข่งขัน European Cross Country Championships โดยมีบันทึกย่อของรุ่นจูเนียร์ชายประเภทบุคคล 6.595 กม.",
    "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_en": "What position did the person finish in with a notes of junior men individual 5.64km?",
    "question_th": "บุคคลนั้นเข้าเส้นชัยด้วยบันทึกย่อของรุ่นน้องชาย ระยะ 5.64 กม. ในตำแหน่งใด",
    "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_en": "What venue hosted in 2005 and had a Notes of men individual 9.84km?",
    "question_th": "สถานที่ใดที่เป็นเจ้าภาพในปี 2548 และมี Notes of Men แต่ละ 9.84 กม.?",
    "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_en": "Who was the opponent at the game with a result of w 20-17?",
    "question_th": "คู่ต่อสู้ในเกมด้วยผลสกอร์ 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_en": "What is the total number of weeks with a game at the Milwaukee County Stadium attended by 47,897?",
    "question_th": "จำนวนสัปดาห์ทั้งหมดที่มีเกมที่ Milwaukee County Stadium มีผู้เข้าร่วม 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_en": "What is the highest round that had a pick lower than 8?",
    "question_th": "รอบสูงสุดที่มีแต้มเลือกต่ำกว่า 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_en": "What title does Overkill have before 1984?",
    "question_th": "Overkill มีชื่ออะไรก่อนปี 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_en": "What is the Departure time at Kanpur Central Station?",
    "question_th": "เวลาออกเดินทางที่สถานีกลาง Kanpur คืออะไร?",
    "context": "CREATE TABLE table_name_67 (departure VARCHAR, station_name VARCHAR)"
  },
  {
    "answer": "SELECT station_name FROM table_name_32 WHERE platform = \"5\"",
    "question_en": "What is the Station Name of Platform 5?",
    "question_th": "ชื่อสถานีของชานชาลา 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_en": "What is the average pick # of the player from round 11?",
    "question_th": "ค่าเฉลี่ยการเลือก # ของผู้เล่นจากรอบ 11 คือเท่าไร?",
    "context": "CREATE TABLE table_name_21 (pick__number INTEGER, round VARCHAR)"
  },
  {
    "answer": "SELECT overall FROM table_name_47 WHERE pick__number < 13",
    "question_en": "What is the overall of the player with a pick # higher than 13?",
    "question_th": "โดยรวมของผู้เล่นที่มีตัวเลือก # สูงกว่า 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_en": "what year did naga bonar take place",
    "question_th": "นาคโบนาร์เกิดขึ้นในปีใด",
    "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_en": "Natural change of 42 689 has which lowest Crude birth rate (per 1000)?",
    "question_th": "การเปลี่ยนแปลงตามธรรมชาติของ 42 689 มีอัตราการเกิดที่หยาบที่สุด (ต่อ 1,000)",
    "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_en": "What is the sum of votes for the green party?",
    "question_th": "ผลรวมคะแนนเสียงของพรรคกรีนเป็นเท่าใด?",
    "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_en": "What is the sum of votes of the party with a % of 0.53 and more than 0 seats?",
    "question_th": "ผลรวมคะแนนเสียงของพรรคที่มีคะแนนเสียง 0.53 % และมากกว่า 0 ที่นั่งคือเท่าไร?",
    "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_en": "What was the time of the game on April 5?",
    "question_th": "วันที่ 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_en": "Which 2011 has a 2010 of 1r, and a 2009 of 1r?",
    "question_th": "ปี 2011 ใดมีปี 2010 เป็น 1r และปี 2009 เป็น 1r",
    "context": "CREATE TABLE table_name_99 (Id VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_28 WHERE 2009 = \"q1\" AND 2008 = \"1r\"",
    "question_en": "Which Tournament has a 2009 of q1, and a 2008 of 1r?",
    "question_th": "ทัวร์นาเมนต์ใดที่มีไตรมาส 1 ปี 2552 และ 2551 อยู่ที่ 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_en": "Which 2008 has a 2009 of A, and a 2010 of A, and a 2012 of 1r, and a Tournament of cincinnati masters?",
    "question_th": "ปี 2008 ใดที่มีปี 2009 ของ A และปี 2010 ของ A และปี 2012 ของ 1r และ 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_en": "Which 2009 has a 2008 of A, and a Tournament of canada masters?",
    "question_th": "ปี 2009 ใดที่มี A ในปี 2008 และ 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_en": "Which 2008 has a 2009 of A, and a Tournament of cincinnati masters?",
    "question_th": "ปี 2008 ใดมี A ปี 2009 และ Tournament of cincinnati masters?",
    "context": "CREATE TABLE table_name_39 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2012 FROM table_name_46 WHERE 2010 = \"0–0\"",
    "question_en": "Which 2012 has a 2010 of 0–0?",
    "question_th": "ปี 2012 ใดที่มีปี 2010 เป็น 0–0",
    "context": "CREATE TABLE table_name_46 (Id VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_87 WHERE partner = \"urszula radwańska\"",
    "question_en": "What Date had a Partner of urszula radwańska?",
    "question_th": "คู่รักของ urszula radwańska มีวันที่เท่าไร?",
    "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_en": "Which Opponent had a Surface of hard, and a Partner of maria elena camerin?",
    "question_th": "ฝ่ายตรงข้ามคนใดที่มีพื้นผิวแข็งและเป็นคู่หูของ 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_en": "Which Partner had an Opponent of darija jurak carmen klaschka?",
    "question_th": "คู่หูคนไหนมีฝ่ายตรงข้ามกับ 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_en": "Which Date had an Outcome of runner-up, and a Surface of carpet?",
    "question_th": "วันที่ใดมีผลลัพธ์เป็นรองชนะเลิศ และมีพื้นผิวเป็นพรม",
    "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_en": "Which Surface had an Opponent of fernanda hermenegildo monika kochanova?",
    "question_th": "Surface คนใดมีคู่ต่อสู้ของ 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_en": "Who was the opponent in the game that was attended by 42,000 people?",
    "question_th": "คู่ต่อสู้ในเกมที่มีผู้เข้าร่วม 42,000 คนคือใคร?",
    "context": "CREATE TABLE table_name_19 (opponent_number VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT opponent_number FROM table_name_93 WHERE attendance = \"48,000\"",
    "question_en": "Who was the opponent in the game that was attended by 48,000 people?",
    "question_th": "คู่ต่อสู้ในเกมที่มีผู้เข้าร่วม 48,000 คนคือใคร?",
    "context": "CREATE TABLE table_name_93 (opponent_number VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_88 WHERE opponent_number = \"michigan\"",
    "question_en": "On what day(s) did the Gophers play against Michigan?",
    "question_th": "Gophers เล่นกับมิชิแกนวันไหน?",
    "context": "CREATE TABLE table_name_88 (date VARCHAR, opponent_number VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_47 WHERE attendance = \"16,000\"",
    "question_en": "What was the result of the game that was attended by 16,000 people?",
    "question_th": "ผลการแข่งขันที่มีคนเข้าร่วม 16,000 คนเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_47 (result VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_18 WHERE agg = \"4–1\" AND opponent = \"rapid wien\"",
    "question_en": "Which Season has an Agg of 4–1, and an Opponent of rapid wien?",
    "question_th": "ฤดูกาลใดมีคะแนนรวม 4–1 และฝ่ายตรงข้ามของ Rapid Wien?",
    "context": "CREATE TABLE table_name_18 (season VARCHAR, agg VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_15 WHERE opponent = \"brøndby\"",
    "question_en": "Which Home has an Opponent of brøndby?",
    "question_th": "ทีมไหนมีฝ่ายตรงข้ามของบรอนด์บี?",
    "context": "CREATE TABLE table_name_15 (home VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT away FROM table_name_7 WHERE opponent = \"slavia prague\"",
    "question_en": "Which Away has an Opponent of slavia prague?",
    "question_th": "ทีมเยือนทีมไหนมีคู่แข่งสลาเวีย ปราก?",
    "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_en": "Which Away has a Competition of uefa cup, and an Opponent of anderlecht?",
    "question_th": "ทีมเยือนทีมไหนได้ชิงถ้วยยูฟ่า และคู่ต่อสู้ของอันเดอร์เลชท์?",
    "context": "CREATE TABLE table_name_93 (away VARCHAR, competition VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT away FROM table_name_84 WHERE home = \"2–2\"",
    "question_en": "Which Away has a Home of 2–2?",
    "question_th": "ทีมเยือนทีมไหนมีเจ้าบ้าน 2–2 คน?",
    "context": "CREATE TABLE table_name_84 (away VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT away FROM table_name_69 WHERE season = \"2001–02\" AND opponent = \"dinaburg\"",
    "question_en": "Which Away has a Season of 2001–02, and an Opponent of dinaburg?",
    "question_th": "ทีมเยือนใดมีฤดูกาล 2544–02 และเป็นฝ่ายตรงข้ามของไดนาเบิร์ก?",
    "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_en": "What is the total number for grid with a Suzuki GSX-R1000 K7 for +13.283?",
    "question_th": "จำนวนกริดรวมของ Suzuki GSX-R1000 K7 ที่ +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_en": "What was the time for a grid less than 6 for Noriyuki Haga?",
    "question_th": "เวลาใดที่กริดน้อยกว่า 6 สำหรับโนริยูกิ ฮากะ?",
    "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_en": "What was the time for a grid more than 6 in less than 23 laps with a Honda CBR1000RR?",
    "question_th": "เวลาที่มากกว่า 6 ในน้อยกว่า 23 รอบกับ 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_en": "What is the sum of laps for Karl Muggeridge on a grid less than 16?",
    "question_th": "ผลรวมของรอบของคาร์ล มักเกอริดจ์บนกริดที่น้อยกว่า 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_en": "Which album awarded Paul McGuinness a Lifetime Achievement Award?",
    "question_th": "อัลบั้มใดที่ได้รับรางวัล Lifetime Achievement Award ให้กับ Paul McGuinness",
    "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_en": "Which act's album has a name of All That You Can't Leave Behind?",
    "question_th": "อัลบั้มขององก์ใดมีชื่อ 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_en": "In what year did Aslan receive a Lifetime Achievement Award and Snow Patrol perform?",
    "question_th": "อัสลานได้รับรางวัล Lifetime Achievement Award และ Snow Patrol แสดงในปีใด",
    "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_en": "Who won the Lifetime Achievement Award when Snow Patrol performed and Juliet Turner presented?",
    "question_th": "ใครได้รับรางวัล Lifetime Achievement Award เมื่อ Snow Patrol แสดงและ Juliet Turner นำเสนอ",
    "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_en": "What band performed when Samantha Mumba presented?",
    "question_th": "วงดนตรีใดแสดงเมื่อ Samantha Mumba นำเสนอ?",
    "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_en": "What is the lowest Draws for a season later than 1919 with more than 0 wins?",
    "question_th": "เสมอต่ำสุดในฤดูกาลหลังปี 1919 โดยชนะมากกว่า 0 ครั้งคือเท่าไร?",
    "context": "CREATE TABLE table_name_86 (draws INTEGER, season VARCHAR, wins VARCHAR)"
  },
  {
    "answer": "SELECT SUM(draws) FROM table_name_67 WHERE season > 1964",
    "question_en": "What is the sum of Draws for a season later than 1964?",
    "question_th": "ผลรวมของการจับสลากสำหรับฤดูกาลหลังปี 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_en": "What is the sum of Wins when draws shows 0 in 1964?",
    "question_th": "ผลรวมของการชนะเมื่อเสมอแสดง 0 ในปี 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_en": "What is the highest Draws for a season later than 1926 with less than 0 wins?",
    "question_th": "ผลเสมอสูงสุดในฤดูกาลหลังปี 1926 โดยชนะน้อยกว่า 0 คืออะไร?",
    "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_en": "What is the highest Draws with less than 18 losses for north melbourne later than 1926?",
    "question_th": "ผลเสมอสูงสุดโดยแพ้น้อยกว่า 18 ครั้งสำหรับนอร์ธ เมลเบิร์น หลังปี 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_en": "what week had a player named zach",
    "question_th": "สัปดาห์ไหนที่มีผู้เล่นชื่อแซค",
    "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_en": "What is the largest number for SHTS for the San Jose earthquakes with MINS larger than 2700?",
    "question_th": "อะไรคือตัวเลขที่ใหญ่ที่สุดสำหรับ SHTS สำหรับแผ่นดินไหวในซานโฮเซโดยมีค่า MINS มากกว่า 2,700",
    "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_en": "What is the sum of Rank when Pat Onstad was the goalkeeper?",
    "question_th": "ผลรวมอันดับเมื่อ แพท ออนสตัด เป็นผู้รักษาประตูเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_30 (rank INTEGER, goalkeeper VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_name_98 WHERE shts = 132",
    "question_en": "What is the club for the 132 SHTS?",
    "question_th": "ไม้กอล์ฟสำหรับ 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_en": "What is the largest MINS for the San Jose Earthquakes with a SHTS less than 166?",
    "question_th": "MINS ที่ใหญ่ที่สุดสำหรับแผ่นดินไหวในซานโฮเซ่ที่มีค่า SHTS น้อยกว่า 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és gómez javier sánchez\"",
    "question_en": "When has a Surface of clay, and an Opponent in the final of andrés gómez javier sánchez?",
    "question_th": "เมื่อไรจะมีพื้นผิวดินและเป็นคู่ต่อสู้ในรอบชิงชนะเลิศของ Andrés Gómez Javier Sánchez?",
    "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áček\"",
    "question_en": "Which Tournament has a Partner of karel nováček?",
    "question_th": "ทัวร์นาเมนต์ใดมีคู่หูของ karel novaček?",
    "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–2, 2–6, 7–5\"",
    "question_en": "Which Tournament is in 1993 with a Score in the final of 6–2, 2–6, 7–5?",
    "question_th": "ทัวร์นาเมนต์ใดคือในปี 1993 โดยมีสกอร์ในรอบชิงชนะเลิศ 6–2, 2–6, 7–5",
    "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_en": "Riggs of e, and a Buechel & Manhart spelling (pronunciation) of e had what ullrich?",
    "question_th": "Riggs ของ e และการสะกด Buechel & Manhart (การออกเสียง) ของ e มีอะไรที่ 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_en": "Rood & Taylor of o, and a Buechel & Manhart spelling (pronunciation) of o had what university of Minnesota?",
    "question_th": "Rood & Taylor ของ o และการสะกด Buechel & Manhart (การออกเสียง) ของ o มีมหาวิทยาลัยแห่งใดใน 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ʽ\" AND ullrich = \"tȟ\"",
    "question_en": "Dakota Mission of t, and a Deloria & Boas of tʽ, and a Ullrich of tȟ had what white hat?",
    "question_th": "Dakota Mission of t, Deloria & Boas of tʽ, และ Ullrich of tş มีหมวกสีขาวอะไร?",
    "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_en": "Deloria & Boas of n included what university of Minnesota?",
    "question_th": "Deloria & Boas of n รวมมหาวิทยาลัยแห่งใดในมินนิโซตาด้วย",
    "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 = \"ų\" AND dakota_mission = \"un\"",
    "question_en": "Deloria & Boas of ų, and a Dakota Mission of un had what Buechel & Manhart spelling (pronunciation)?",
    "question_th": "Deloria & Boas จาก ų และ Dakota Mission of un มีการสะกด Buechel & Manhart (การออกเสียง) ว่าอย่างไร?",
    "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 = \"ṭ\"",
    "question_en": "University of Minnesota of ṭ had what Deloria & Boas?",
    "question_th": "มหาวิทยาลัยมินนิโซตาแห่งṭมี 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_en": "Which November has a Game smaller than 16, and Points larger than 22?",
    "question_th": "เดือนพฤศจิกายนใดที่มีเกมที่เล็กกว่า 16 และแต้มมากกว่า 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_en": "Which Record has a Game larger than 15, and Points smaller than 31, and a November of 7?",
    "question_th": "สถิติใดที่มีเกมมากกว่า 15 คะแนน และคะแนนน้อยกว่า 31 และวันที่ 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_en": "What is the highest number of bronze for the United States with more than 1 silver?",
    "question_th": "จำนวนเหรียญทองแดงสูงสุดสำหรับสหรัฐอเมริกาที่มีเงินมากกว่า 1 เหรียญคือเท่าไร?",
    "context": "CREATE TABLE table_name_13 (bronze INTEGER, nation VARCHAR, silver VARCHAR)"
  },
  {
    "answer": "SELECT SUM(silver) FROM table_name_82 WHERE bronze > 2",
    "question_en": "What is the sum of all silver medals with more than 2 bronze?",
    "question_th": "ผลรวมของเหรียญเงินทั้งหมดที่ได้มากกว่า 2 เหรียญทองแดงเป็นเท่าใด",
    "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_en": "What is the lowest number of silver medals with a rank of 4 and total medals greater than 1?",
    "question_th": "เหรียญเงินอันดับ 4 จำนวนน้อยที่สุดและมีเหรียญรวมมากกว่า 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_en": "What is the average number of bronze medals with 1 silver, 5 gold, and over 6 total medals?",
    "question_th": "จำนวนเหรียญทองแดงโดยเฉลี่ย 1 เหรียญเงิน 5 เหรียญทอง และมากกว่า 6 เหรียญเป็นเท่าใด",
    "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_en": "What is the highest rank with less than 2 bronze, more than 1 gold, and less than 1 silver?",
    "question_th": "อันดับสูงสุดที่มีน้อยกว่า 2 เหรียญทองแดง มากกว่า 1 เหรียญทอง และน้อยกว่า 1 เหรียญเงิน คืออะไร?",
    "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_en": "Who remixed an album of dance remixes?",
    "question_th": "ใครรีมิกซ์อัลบั้มแดนซ์รีมิกซ์บ้าง?",
    "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_en": "Who remixed a music video in 1985?",
    "question_th": "ใครรีมิกซ์มิวสิกวิดีโอในปี 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_en": "What year was Mother's Live remix created?",
    "question_th": "Mother's Live รีมิกซ์สร้างขึ้นในปีใด",
    "context": "CREATE TABLE table_name_46 (year INTEGER, version VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_7 WHERE pick = \"10th overall\"",
    "question_en": "Which position ranked 10th overall?",
    "question_th": "ตำแหน่งใดอันดับที่ 10 โดยรวม?",
    "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_en": "Which player played wide receiver after 2008?",
    "question_th": "นักเตะคนไหนที่เล่นไวด์รีซีฟเวอร์หลังปี 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_en": "Which Player has a Date of 13 july 2007?",
    "question_th": "ผู้เล่นคนไหนมีวันที่ 13 กรกฎาคม 2550?",
    "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 = \"£3.87m\"",
    "question_en": "Which Player had a Date of 31 jan. 2008, and a Transfer fee of £3.87m?",
    "question_th": "ผู้เล่นคนไหนมีวันที่ 31 ม.ค. 2008 และค่าธรรมเนียมการโอน 3.87 ล้านปอนด์?",
    "context": "CREATE TABLE table_name_44 (player VARCHAR, date VARCHAR, transfer_fee VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_45 WHERE transfer_fee = \"£8.8m\"",
    "question_en": "Which Date had a Transfer fee of £8.8m?",
    "question_th": "วันไหนที่มีค่าธรรมเนียมการโอน 8.8 ล้านปอนด์?",
    "context": "CREATE TABLE table_name_45 (date VARCHAR, transfer_fee VARCHAR)"
  },
  {
    "answer": "SELECT from_club FROM table_name_40 WHERE transfer_fee = \"£3.87m\"",
    "question_en": "Which From club had a Transfer fee of £3.87m?",
    "question_th": "สโมสรไหนมีค่าตัว 3.87 ล้านปอนด์?",
    "context": "CREATE TABLE table_name_40 (from_club VARCHAR, transfer_fee VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_36 WHERE from_club = \"atlético madrid\"",
    "question_en": "Which Player had a From club of atlético madrid?",
    "question_th": "นักเตะคนไหนที่ย้ายมาจากสโมสรแอตเลติโก มาดริด?",
    "context": "CREATE TABLE table_name_36 (player VARCHAR, from_club VARCHAR)"
  },
  {
    "answer": "SELECT decision FROM table_name_82 WHERE game > 6",
    "question_en": "What is the decision of the game larger than 6.",
    "question_th": "การตัดสินของเกมที่ใหญ่กว่า 6 คืออะไร",
    "context": "CREATE TABLE table_name_82 (decision VARCHAR, game INTEGER)"
  },
  {
    "answer": "SELECT series FROM table_name_41 WHERE date = \"may 8\"",
    "question_en": "On May 8 what series is it?",
    "question_th": "วันที่ 8 พ.ค. เป็นซีรีย์อะไรคะ?",
    "context": "CREATE TABLE table_name_41 (series VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT korean FROM table_name_51 WHERE chinese = \"師子菩提 / shīzǐpútí\"",
    "question_en": "Which KOREAN has a CHINESE of 師子菩提 / shīzǐpútí?",
    "question_th": "ภาษาเกาหลีคนไหนมีภาษาจีนเป็น 師子菩提 / shīzǐpútí?",
    "context": "CREATE TABLE table_name_51 (korean VARCHAR, chinese VARCHAR)"
  },
  {
    "answer": "SELECT japanese FROM table_name_92 WHERE korean = \"상나화수 / sanahwasa\"",
    "question_en": "Which JAPANESE has a KOREAN of 상나화수 / sanahwasa?",
    "question_th": "ภาษาญี่ปุ่นภาษาใดเป็นภาษาเกาหลีของ 상나화수 / sanahwasa?",
    "context": "CREATE TABLE table_name_92 (japanese VARCHAR, korean VARCHAR)"
  },
  {
    "answer": "SELECT sanskrt FROM table_name_76 WHERE chinese = \"摩拏羅 / mónáluó\"",
    "question_en": "Which SANSKRT has a CHINESE of 摩拏羅 / mónáluó?",
    "question_th": "ภาษาสันสกฤตใดมีภาษาจีนเป็น 摩拏羅 / mónáluó?",
    "context": "CREATE TABLE table_name_76 (sanskrt VARCHAR, chinese VARCHAR)"
  },
  {
    "answer": "SELECT sanskrt FROM table_name_38 WHERE japanese = \"jayana\"",
    "question_en": "Which SANSKRT has a JAPANESE of jayana?",
    "question_th": "ภาษาสันสกฤตใดมีภาษาญี่ปุ่นเป็น jayana",
    "context": "CREATE TABLE table_name_38 (sanskrt VARCHAR, japanese VARCHAR)"
  },
  {
    "answer": "SELECT vietnamese FROM table_name_35 WHERE chinese = \"婆須密 / póxūmì\"",
    "question_en": "Which VIETNAMESE has a CHINESE of 婆須密 / póxūmì?",
    "question_th": "ภาษาเวียดนามใดมีภาษาจีนเป็น 婆須密 / póxūmì?",
    "context": "CREATE TABLE table_name_35 (vietnamese VARCHAR, chinese VARCHAR)"
  },
  {
    "answer": "SELECT vietnamese FROM table_name_25 WHERE chinese = \"不如密多 / bùrúmìduō\"",
    "question_en": "Which VIETNAMESE has a CHINESE of 不如密多 / bùrúmìduō?",
    "question_th": "ภาษาเวียดนามใดมีภาษาจีนเป็น 不如密多 / bùrúmìduō?",
    "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_en": "What is the mean pick number for Iowa College when the overall is less than 200?",
    "question_th": "หมายเลขเลือกเฉลี่ยสำหรับวิทยาลัยไอโอวาคือเท่าใด เมื่อคะแนนรวมน้อยกว่า 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_en": "What was the result on 26 October 1993?",
    "question_th": "เมื่อวันที่ 26 ตุลาคม 2536 มีผลเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_36 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT away FROM table_name_61 WHERE result = \"1-5 aet\"",
    "question_en": "Who was the Away team on the result of 1-5 aet?",
    "question_th": "ทีมเยือนผลสกอร์ 1-5 ใครคือทีมเยือน?",
    "context": "CREATE TABLE table_name_61 (away VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_54 WHERE date = \"30 august 1980\"",
    "question_en": "What season had a date of 30 august 1980",
    "question_th": "ฤดูกาลใดมีวันที่ 30 สิงหาคม พ.ศ. 2523",
    "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_en": "What round had a home of FC augsburg with the result of 3-0?",
    "question_th": "เจ้าบ้านเอฟซี เอาก์สบวร์ก จบด้วยสกอร์ 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_en": "What is the office held by member Mark Coulton?",
    "question_th": "สำนักงานของสมาชิก 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_en": "What office is held by Electorate Hume?",
    "question_th": "Electorate Hume ดำรงตำแหน่งใด",
    "context": "CREATE TABLE table_name_71 (in_office VARCHAR, electorate VARCHAR)"
  },
  {
    "answer": "SELECT member FROM table_name_7 WHERE state = \"nt\"",
    "question_en": "Which memeber has nt as the state?",
    "question_th": "สมาชิกคนไหนที่ไม่ได้เป็นรัฐ?",
    "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_en": "Which memeber has nsw as the state, a first elected of 1952, and alp as the party?",
    "question_th": "สมาชิกคนใดที่มี nsw เป็นรัฐ ได้รับการเลือกตั้งครั้งแรกในปี 1952 และมี Alp เป็นพรรค",
    "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_en": "Which party has wa as the state, and hon victor garland as the memeber?",
    "question_th": "ฝ่ายใดมีสถานะเป็นรัฐ และให้เกียรติมาลัยเป็นผู้เป็นสมาชิก",
    "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_en": "Which party has a first elected of 1966, qld as the state, and donald milner cameron as the member?",
    "question_th": "พรรคใดได้รับการเลือกตั้งครั้งแรกในปี 1966 โดยมี qld เป็นรัฐ และโดนัลด์ มิลเนอร์ คาเมรอนเป็นสมาชิก",
    "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_en": "Which memeber has a first elected of 1972, alp as the party, vic as the state, and an electorate of gellibrand?",
    "question_th": "สมาชิกคนใดที่ได้รับเลือกครั้งแรกในปี 1972, alp เป็นพรรค, ผู้ชนะเป็นรัฐ และผู้มีสิทธิเลือกตั้งของ 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_en": "Where was the game played with a 2013 left and Royals nickname?",
    "question_th": "เกมนี้เล่นที่ไหนโดยเหลือชื่อเล่นในปี 2013 และชื่อเล่นของ Royals?",
    "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_en": "What joined that was founded prior to year 1856 and whose current conference is the Big South (NCAA Division I)?",
    "question_th": "สิ่งที่เข้าร่วมซึ่งก่อตั้งขึ้นก่อนปี พ.ศ. 2399 และการประชุมปัจจุบันของใครคือ 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_en": "What is the total number of teams founded that were left in 1976?",
    "question_th": "จำนวนทีมทั้งหมดที่ก่อตั้งและเหลือในปี 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–21\"",
    "question_en": "What is the Set 1 when the date is 08 jul, and a Set 2 of 25–21?",
    "question_th": "ชุดที่ 1 คือวันที่ 8 ก.ค. และชุดที่ 2 วันที่ 25–21 คืออะไร",
    "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–26\"",
    "question_en": "What is the Score for Set 2 of 24–26?",
    "question_th": "คะแนนสำหรับชุดที่ 2 ของ 24–26 คืออะไร",
    "context": "CREATE TABLE table_name_71 (score VARCHAR, set_2 VARCHAR)"
  },
  {
    "answer": "SELECT report FROM table_name_15 WHERE set_1 = \"19–25\"",
    "question_en": "What shows for Report hen there is a set 1 of 19–25?",
    "question_th": "สิ่งที่แสดงให้เห็นสำหรับรายงานเมื่อมีชุดที่ 1 จาก 19–25?",
    "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–15\"",
    "question_en": "What is the Date with a Time of 17:37, and the Set 4 is 25–15?",
    "question_th": "วันที่และเวลา 17:37 คืออะไร และชุดที่ 4 คือ 25–15",
    "context": "CREATE TABLE table_name_38 (date VARCHAR, time VARCHAR, set_4 VARCHAR)"
  },
  {
    "answer": "SELECT report FROM table_name_12 WHERE score = \"3–1\" AND set_1 = \"19–25\"",
    "question_en": "What is the Report with a Score of 3–1, and Set 1 is 19–25?",
    "question_th": "รายงานที่มีคะแนน 3–1 คืออะไร และชุดที่ 1 คือ 19–25",
    "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–1\"",
    "question_en": "What is the Report for 08 jul, and a Score of 3–1?",
    "question_th": "รายงานประจำวันที่ 8 ก.ค. คืออะไร และคะแนน 3–1",
    "context": "CREATE TABLE table_name_79 (report VARCHAR, date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT nation FROM table_name_37 WHERE record = \"7.39\"",
    "question_en": "What is the Nation with a Record that is 7.39?",
    "question_th": "ประเทศที่มีสถิติ 7.39 คืออะไร?",
    "context": "CREATE TABLE table_name_37 (nation VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_87 WHERE record = \"7.39\"",
    "question_en": "What is the Date with a Record that is 7.39?",
    "question_th": "วันที่ที่มีบันทึกคือ 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_en": "What is Episode, when XII Season is 4 118 160 (26 september 2010)?",
    "question_th": "ตอนที่คืออะไร เมื่อซีซั่น XII คือ 4 118 160 (26 กันยายน 2553)",
    "context": "CREATE TABLE table_name_23 (episode VARCHAR, xii_season VARCHAR)"
  },
  {
    "answer": "SELECT vii_season FROM table_name_29 WHERE episode = \"11\"",
    "question_en": "What is VII Season, when Episode is 11?",
    "question_th": "ซีซั่น VII คืออะไร เมื่อตอนที่ 11?",
    "context": "CREATE TABLE table_name_29 (vii_season VARCHAR, episode VARCHAR)"
  },
  {
    "answer": "SELECT xii_season FROM table_name_57 WHERE episode = \"6\"",
    "question_en": "What is XII Season, when Episode is 6?",
    "question_th": "XII Season คืออะไร เมื่อตอนที่ 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_en": "What is Episode, when VIII Season is 5 082 535 (19 October 2008)?",
    "question_th": "ตอนที่คืออะไร เมื่อซีซั่น VIII คือ 5 082 535 (19 ตุลาคม 2551)",
    "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_en": "What is XIII Season, when VIII Season is 4 780 743 (2 november 2008)?",
    "question_th": "ฤดูกาล XIII คืออะไร เมื่อฤดูกาล VIII คือ 4 780 743 (2 พฤศจิกายน 2551)",
    "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_en": "Which Lost has Points of 28 and a Drawn smaller than 8?",
    "question_th": "แพ้คนไหนมีแต้ม 28 และเสมอน้อยกว่า 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_en": "How many Againsts have Points larger than 31 and a Drawn larger than 6?",
    "question_th": "ฝ่ายตรงข้ามมีแต้มมากกว่า 31 และเสมอมากกว่า 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_en": "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?",
    "question_th": "จำนวนคะแนนเสียงสูงสุดสำหรับ McCain ในเขตที่โหวต 1.6% สำหรับคนอื่นๆ, 40.5% สำหรับ McCain และน้อยกว่า 256,299 คะแนนสำหรับ 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_en": "What is the Round with 1 Behinds?",
    "question_th": "รอบที่มี 1 หลังคืออะไร?",
    "context": "CREATE TABLE table_name_50 (round VARCHAR, behinds VARCHAR)"
  },
  {
    "answer": "SELECT goals FROM table_name_29 WHERE round = \"round 15\"",
    "question_en": "What is the goals for Round 15?",
    "question_th": "เป้าหมายรอบ 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_en": "What was the Attendance on 31 January 1987?",
    "question_th": "การเข้าร่วมประชุมในวันที่ 31 มกราคม พ.ศ. 2530 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_44 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_name_62 WHERE score = \"w 89–86 (ot)\"",
    "question_en": "What was the location and attendance with a score of w 89–86 (ot)?",
    "question_th": "สถานที่และการเข้างานเป็นอย่างไร ด้วยคะแนน w 89–86 (ot)",
    "context": "CREATE TABLE table_name_62 (location_attendance VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(game) FROM table_name_24 WHERE score = \"l 91–95 (ot)\"",
    "question_en": "How many games had a score of l 91–95 (ot)?",
    "question_th": "มีกี่เกมที่มีคะแนน l 91–95 (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_en": "What is the name of the player for the 2010-2011 season, from a Free Agency and is Number 14?",
    "question_th": "นักเตะหมายเลข 14 ในฤดูกาล 2010-2011 จาก Free Agency ชื่ออะไร",
    "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_en": "Which season had a trade with the school/club team La Salle?",
    "question_th": "ฤดูกาลใดที่มีการแลกกับทีมโรงเรียน/สโมสรลาซาล?",
    "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_en": "Who is the position for the 2009-2010 season, number 1?",
    "question_th": "ใครคือตำแหน่งเบอร์ 1 ในฤดูกาล 2552-2553?",
    "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_en": "What is the name for the forward in the 2009-2010 season?",
    "question_th": "กองหน้าในฤดูกาล 2009-2010 ชื่ออะไร?",
    "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_en": "What is the number for the forward position from the school/club team La Salle?",
    "question_th": "ตำแหน่งกองหน้าทีมโรงเรียน/สโมสร ลาซาล เบอร์อะไรครับ?",
    "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_en": "Who is the position from the school/club Far Eastern?",
    "question_th": "ใครคือตำแหน่งจากโรงเรียน/สโมสรฟาร์อีสเทอร์น?",
    "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_en": "What is the highest number of games played for teams with 3 draws, 5 losses, and under 39 points?",
    "question_th": "จำนวนเกมที่เล่นสูงสุดสำหรับทีมที่เสมอ 3 แพ้ 5 และต่ำกว่า 39 แต้มคือเท่าไหร่?",
    "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_en": "What is the highest number of losses for teams with under 3 draws and 51 points?",
    "question_th": "จำนวนการแพ้สูงสุดสำหรับทีมที่เสมอน้อยกว่า 3 ครั้งและ 51 แต้มคือเท่าใด?",
    "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_en": "Tell me the record for a time in seconds smaller than 5.22.",
    "question_th": "บอกบันทึกเวลาเป็นวินาทีที่น้อยกว่า 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_en": "What sport was played on November 14, 2009?",
    "question_th": "เล่นกีฬาอะไรในวันที่ 14 พฤศจิกายน พ.ศ. 2552?",
    "context": "CREATE TABLE table_name_27 (sport VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_20 WHERE record = \"3–18\"",
    "question_en": "Whose Visitor has a Record of 3–18?",
    "question_th": "ผู้เยี่ยมชมของใครมีประวัติ 3–18?",
    "context": "CREATE TABLE table_name_20 (visitor VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_48 WHERE leading_scorer = \"ricky davis (20)\"",
    "question_en": "When has a Leading scorer of ricky davis (20)?",
    "question_th": "ริคกี้ เดวิส ผู้ทำประตูสูงสุด (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–82\"",
    "question_en": "Which  Home has a Leading scorer of dajuan wagner (25) and a Score of 89–82? Question 3",
    "question_th": "บ้านใดมีผู้ทำประตูนำของดาฮวน วากเนอร์ (25) และคะแนน 89–82? คำถามที่ 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_en": "When has a Visitor of bulls?",
    "question_th": "เมื่อไหร่จะมีผู้มาเยี่ยมวัว?",
    "context": "CREATE TABLE table_name_1 (date VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_64 WHERE home = \"bulls\"",
    "question_en": "Which Visitor has a Home of bulls?",
    "question_th": "แขกคนไหนมีบ้านของวัว?",
    "context": "CREATE TABLE table_name_64 (visitor VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_18 WHERE date = \"14 december 2002\"",
    "question_en": "WHich Home is on 14 december 2002?",
    "question_th": "บ้านไหนคือวันที่ 14 ธันวาคม 2545?",
    "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_en": "What is the profession of Skaj Vikler, who entered the house on day 1 and was evicted on day 29?",
    "question_th": "Skaj Vikler ที่เข้าบ้านวันที่ 1 และถูกไล่ออกในวันที่ 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_en": "What is the profession of the housemate from Leskovac city?",
    "question_th": "เพื่อนร่วมบ้านจากเมือง Leskovac ทำอาชีพอะไร?",
    "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đana pejić\"",
    "question_en": "When did slađana pejić, who was evicted on day 29, enter the house?",
    "question_th": "slađana pejić ซึ่งถูกไล่ออกในวันที่ 29 เข้ามาในบ้านเมื่อใด",
    "context": "CREATE TABLE table_name_82 (entered_the_house VARCHAR, evicted VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT profession FROM table_name_4 WHERE name = \"slađana pejić\"",
    "question_en": "What is slađana pejić's profession?",
    "question_th": "อาชีพของ slađana pejić คืออะไร?",
    "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_en": "What city is the housemate who entered the house on day 1 and whose profession was a tv presenter from?",
    "question_th": "เพื่อนบ้านที่เข้ามาในบ้านในวันที่ 1 คือเมืองใด และมีอาชีพเป็นพิธีกรรายการโทรทัศน์?",
    "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_en": "What is the profession of the housemate from Leskovac city?",
    "question_th": "เพื่อนร่วมบ้านจากเมือง Leskovac ทำอาชีพอะไร?",
    "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_en": "What is the home team of the UEFA cup in the 2000-2001 season with a second round?",
    "question_th": "ทีมเหย้าในยูฟ่าคัพฤดูกาล 2000-2001 มีรอบสองคือทีมใด?",
    "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_en": "What is the away team of the UEFA champions league?",
    "question_th": "ทีมเยือนยูฟ่าแชมเปียนส์ลีก คือทีมใด?",
    "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–05\"",
    "question_en": "Which Position has a League of southern league premier division, and a Season of 2004–05?",
    "question_th": "ตำแหน่งใดที่มีลีกของลีกภาคใต้ พรีเมียร์ดิวิชั่น และฤดูกาล 2547–05?",
    "context": "CREATE TABLE table_name_90 (position VARCHAR, league VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT SUM(draw) FROM table_name_45 WHERE season = \"2001–02\" AND points > 47",
    "question_en": "Which Draw has a Season of 2001–02, and Points larger than 47?",
    "question_th": "การจับรางวัลใดมีฤดูกาล 2544–02 และคะแนนมากกว่า 47",
    "context": "CREATE TABLE table_name_45 (draw INTEGER, season VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT MAX(lost) FROM table_name_58 WHERE season = \"2001–02\" AND points > 47",
    "question_en": "Which Lost is the highest one that has a Season of 2001–02, and Points larger than 47?",
    "question_th": "แพ้อันไหนคือแต้มสูงสุดที่มีฤดูกาล 2001–02 และแต้มมากกว่า 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_en": "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?",
    "question_th": "มีเลขทองแดงกี่ตัวที่มีคะแนนรวมเกิน 4 ในเมื่ออันดับน้อยกว่า 4 มีเยอรมนีเข้าด้วย และมีน้อยกว่า 5 เหรียญเงิน?",
    "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_en": "Which Place has Phil Mickelson as the Player?",
    "question_th": "สถานที่ใดที่มีฟิล มิคเคลสันเป็นผู้เล่น?",
    "context": "CREATE TABLE table_name_67 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_62 WHERE player = \"chris riley\"",
    "question_en": "What is the To Par for Player Chris Riley?",
    "question_th": "To Par สำหรับผู้เล่น 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_en": "Which Player has a Place of T2 and a Country listed as Fiji?",
    "question_th": "ผู้เล่นคนใดมีสถานที่ T2 และประเทศที่ระบุว่าเป็นฟิจิ",
    "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_en": "What is the average Height when the weight is less than 91 and the position is d, and a Birthdate of july 4, 1975?",
    "question_th": "ส่วนสูงเฉลี่ยเมื่อน้ำหนักน้อยกว่า 91 และตำแหน่งคือ d และวันเกิดวันที่ 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_en": "What is the sum of Weight for the person born in virginia, minnesota?",
    "question_th": "ผลรวมของน้ำหนักสำหรับผู้ที่เกิดในเวอร์จิเนีย มินนิโซตา เป็นเท่าใด",
    "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_en": "What is the Birthdate for the person with a height less than 191, and weight of 84 kg?",
    "question_th": "ส่วนสูงน้อยกว่า 191 และน้ำหนัก 84 กก. เกิดเมื่อใด",
    "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_en": "What is the Position with a height of less than 183, and a weight of less than 91 kg and born in bloomington, minnesota?",
    "question_th": "ตำแหน่งใดที่มีส่วนสูงน้อยกว่า 183 และน้ำหนักไม่เกิน 91 กิโลกรัม และเกิดที่เมืองบลูมิงตัน รัฐมินนิโซตา",
    "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_en": "Which claimant's rank is 200?",
    "question_th": "อันดับของผู้อ้างสิทธิ์คนใดคือ 200?",
    "context": "CREATE TABLE table_name_7 (claimant VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT highest_point FROM table_name_46 WHERE country = \"south ossetia\"",
    "question_en": "What is the most points for South Ossetia?",
    "question_th": "เซาธ์ ออสซีเชีย ได้คะแนนสูงสุดเท่าไหร่?",
    "context": "CREATE TABLE table_name_46 (highest_point VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT MAX(rank) FROM table_name_85 WHERE country = \"palestinian territories\"",
    "question_en": "Which highest rank belongs to the palestinian territories?",
    "question_th": "อันดับสูงสุดใดอยู่ในดินแดนปาเลสไตน์",
    "context": "CREATE TABLE table_name_85 (rank INTEGER, country VARCHAR)"
  },
  {
    "answer": "SELECT highest_point FROM table_name_49 WHERE rank = 95",
    "question_en": "What is the highest amount of points for rank 95?",
    "question_th": "คะแนนสูงสุดสำหรับอันดับ 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_en": "What season had a .439 Win% in the 1996-97 Team?",
    "question_th": "ฤดูกาลใดมี .439 Win% ในทีมปี 1996-97?",
    "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_en": "What conference is the 1973-74 team in the Atlantic Division (Div.)?",
    "question_th": "การประชุมทีมปี 1973-74 ในดิวิชั่นแอตแลนติก (ดิวิชั่น) คืออะไร?",
    "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_en": "Which season has a .354 Win%?",
    "question_th": "ฤดูกาลใดมี .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_en": "What is the Win% of the 1989-90 Team?",
    "question_th": "% ชัยชนะของทีมปี 1989-90 คืออะไร?",
    "context": "CREATE TABLE table_name_44 (win_percentage VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_name_68 WHERE team = \"charlotte\"",
    "question_en": "What is the High rebounds with a Team that is charlotte?",
    "question_th": "การรีบาวด์สูงกับทีมที่เป็นชาร์ล็อตต์คืออะไร?",
    "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_en": "On what date was the rocket a TBD with a satellite of GPS IIIA-1?",
    "question_th": "จรวด TBD พร้อมดาวเทียม 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_en": "Which type is a satellite of GPS IIIA-2?",
    "question_th": "ดาวเทียมประเภทใดของ 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_en": "What was the launch site for a satellite of GPS IIIA-2?",
    "question_th": "สถานที่ปล่อยดาวเทียม 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_en": "What is Choreographer(s), when Chosen is Mary Murphy, and when Style is Contemporary?",
    "question_th": "นักออกแบบท่าเต้นคืออะไร เมื่อได้รับเลือกคือแมรี่ เมอร์ฟี่ และเมื่อใดสไตล์คือร่วมสมัย",
    "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_en": "What is Chosen By, when Couple is Katee Shean Joshua Allen, and when Choreographer(s) is Nakul Dev Mahajan?",
    "question_th": "Chosen By คืออะไร เมื่อคู่รักคือ Katee Shean Joshua Allen และเมื่อนักออกแบบท่าเต้นคือ 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_en": "What is Style, when Choreographer(s) is Dave Scott?",
    "question_th": "สไตล์คืออะไร ในเมื่อนักออกแบบท่าเต้นคือ 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_en": "What is Couple, when Choreographer(s) is Nakul Dev Mahajan?",
    "question_th": "Couple คืออะไร ในเมื่อนักออกแบบท่าเต้นคือ นากุล เดฟ มหาจัน?",
    "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_en": "What is the average number for Northgate which commenced its construction before 1951?",
    "question_th": "นอร์ธเกตซึ่งเริ่มก่อสร้างก่อนปี พ.ศ. 2494 มีจำนวนเฉลี่ยเท่าใด",
    "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_en": "What is the lowest population for the neighborhood with the color blue that commenced its construction before 1987?",
    "question_th": "ชุมชนที่มีสีฟ้าซึ่งเริ่มก่อสร้างก่อนปี 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_en": "What is the sum of Top-25 when there are more than 0 wins?",
    "question_th": "ผลรวมของ 25 อันดับแรกเมื่อมีการชนะมากกว่า 0 เป็นเท่าใด",
    "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_en": "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?",
    "question_th": "อะไรคือ 10 อันดับแรกที่ต่ำที่สุดเมื่อ 25 อันดับแรกคือ 6 และทัวร์นาเมนต์ของเราเปิดขึ้น และการตัดเฉือนมีขนาดใหญ่กว่า 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_en": "What is the lowest Top-25 when events shows 12, the top-5 is 1, and less than 11 cuts?",
    "question_th": "อะไรคือ 25 อันดับต่ำสุดเมื่อเหตุการณ์แสดง 12 อันดับ 5 อันดับแรกคือ 1 และตัดน้อยกว่า 11 ครั้ง?",
    "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_en": "What is the Enrollment at Onalaska?",
    "question_th": "การลงทะเบียนที่ 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_en": "What Public Institution is in Black River Falls?",
    "question_th": "สถาบันสาธารณะใดใน 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_en": "What is the total number of Block for the Player with less than 85 Weight and more than 187 Height?",
    "question_th": "จำนวนบล็อกรวมสำหรับผู้เล่นที่มีน้ำหนักน้อยกว่า 85 และส่วนสูงมากกว่า 187 คือเท่าใด",
    "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_en": "What is the Name of the player with less than 342 Block, less than 87 Weight and Height more than 187?",
    "question_th": "ผู้เล่นที่มีบล็อกน้อยกว่า 342 บล็อก น้อยกว่า 87 น้ำหนัก และส่วนสูงมากกว่า 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_en": "What is the Weight of the player with a Block larger than 328, Spike greater than 375 and Height larger than 207?",
    "question_th": "น้ำหนักของผู้เล่นที่มีบล็อกใหญ่กว่า 328, Spike มากกว่า 375 และส่วนสูงมากกว่า 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_en": "What is the Result with a Category of album of the year in a Year that is 2011?",
    "question_th": "ผลลัพธ์สำหรับหมวดหมู่อัลบั้มแห่งปีในปี 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_en": "What is Season, when Name is Tony Boy Espinosa?",
    "question_th": "ซีซั่นคืออะไร เมื่อชื่อโทนี่ บอย เอสปิโนซา?",
    "context": "CREATE TABLE table_name_57 (season VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT AVG(number) FROM table_name_13 WHERE position = \"forward\"",
    "question_en": "What is the average Number, when Position is Forward?",
    "question_th": "ตัวเลขเฉลี่ยคือเท่าใด เมื่อตำแหน่งเป็นไปข้างหน้า?",
    "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_en": "What is the lowest Number, when School/Club Team is Misamis Institute?",
    "question_th": "หมายเลขต่ำสุดคือเท่าใด เมื่อทีมโรงเรียน/สโมสรคือ 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_en": "What is School/Club Team, when Season is 2006-2012?",
    "question_th": "ทีมโรงเรียน/สโมสรคืออะไร เมื่อฤดูกาลปี 2549-2555?",
    "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_en": "What is Acquisition via, when Season is 2006-2012?",
    "question_th": "Acquisition via คืออะไร เมื่อฤดูกาลคือปี 2549-2555",
    "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_en": "What is Set 4, when Set 1 is 19-25, and when Set 2 is 23-25?",
    "question_th": "ชุดที่ 4 คืออะไร เมื่อชุดที่ 1 คือ 19-25 และชุดที่ 2 คือ 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_en": "What is Set 1, when Set 4 is NA, when Score is 3-0, and when Set 2 is 29-27?",
    "question_th": "เซต 1 คืออะไร เมื่อเซต 4 เป็น NA เมื่อสกอร์เป็น 3-0 และเมื่อเซต 2 คือ 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_en": "What is Set 2, when Date is May 31?",
    "question_th": "ชุดที่ 2 คืออะไร เมื่อเป็นวันที่ 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_en": "What is Set 1, when Set 2 is 17-25?",
    "question_th": "Set 1 คืออะไร เมื่อ Set 2 คือ 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_en": "What is Set 3, when Set 4 is 25-21, and when Date is Jun 14?",
    "question_th": "ชุดที่ 3 คืออะไร ชุดที่ 4 คือ 25-21 และวันที่คือ 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_en": "What were the total number of Events, when the Top-5 was less than 2, and when the Top-25 was less than 3?",
    "question_th": "จำนวนกิจกรรมทั้งหมดเป็นเท่าใด เมื่อ 5 อันดับแรกน้อยกว่า 2 และเมื่อ 25 อันดับแรกน้อยกว่า 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_en": "What was the total number of Top-25 values, for which Cuts made was 62, and for which Wins were less than 1?",
    "question_th": "จำนวนรวมของค่าอันดับสูงสุด 25 อันดับแรก ซึ่งการตัดเฉือนทำได้คือ 62 และค่าใดที่ชนะน้อยกว่า 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_en": "What was the total number of Cuts made, when Top-5 was greater than 3, and when Events were 85?",
    "question_th": "จำนวนการตัดเฉือนทั้งหมดเป็นเท่าใด เมื่อ 5 อันดับแรกมากกว่า 3 และเมื่อเหตุการณ์มี 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_en": "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?",
    "question_th": "ผลรวมของเหตุการณ์เมื่อชนะน้อยกว่า 1 เมื่อ 25 อันดับแรกคือ 3 และเมื่อ 5 อันดับแรกน้อยกว่า 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_en": "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?",
    "question_th": "อะไรคือ 10 อันดับแรกที่สูงที่สุด เมื่อ 5 อันดับแรกมากกว่า 3 เมื่อตัดออกคือ 20 และเมื่อ 25 อันดับแรกมากกว่า 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_en": "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?",
    "question_th": "10 อันดับแรกที่ต่ำที่สุดเมื่อชนะเป็น 0 เมื่อ 25 อันดับแรกคือ 12 และเมื่อใดที่เหตุการณ์น้อยกว่า 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_en": "What is the average Against when the drawn is more than 2 and the Difference of- 17, and a Played smaller than 20?",
    "question_th": "ค่าเฉลี่ยเทียบกับเมื่อเสมอมากกว่า 2 และผลต่าง 17 และเล่นน้อยกว่า 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ão paulo railway\" AND against < 46",
    "question_en": "What is the number of Position when the team was são paulo railway and the against is less than 46?",
    "question_th": "จำนวนตำแหน่งเมื่อทีมเป็นรถไฟเซาเปาโลและต่อน้อยกว่า 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_en": "What is the Team when the lost is less than 13, and the position is less than 4, with a Difference of 42?",
    "question_th": "ทีมจะเป็นอย่างไรเมื่อแพ้น้อยกว่า 13 และอันดับน้อยกว่า 4 โดยมีผลต่าง 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_en": "What is the sum of Played when the drawn is less than 2 and against is more than 29?",
    "question_th": "ผลรวมของการเล่นเมื่อเสมอน้อยกว่า 2 และต่อมากกว่า 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_en": "Which Wins has a Byes larger than 0?",
    "question_th": "การชนะใดที่มี Byes มากกว่า 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_en": "Which Against has a Peel of waroona, and a Byes larger than 0?",
    "question_th": "อันไหน Against มี Peel of waroona และ Byes มากกว่า 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_en": "Which Draws has a Wins smaller than 17, and an Against smaller than 1158?",
    "question_th": "เสมอใดที่มีชัยชนะน้อยกว่า 17 และต่อต้านน้อยกว่า 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_en": "Which Draws has an Against larger than 1158, and a Wins of 9, and a Losses smaller than 9?",
    "question_th": "เสมอใดที่มีแต้มต่อมากกว่า 1158 และชนะ 9 และแพ้น้อยกว่า 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_en": "Which Losses has a Wins of 6, and an Against smaller than 1741?",
    "question_th": "การแพ้ใดมีชัยชนะ 6 และแพ้น้อยกว่า 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_en": "What venue was the game played in when the winner was the atlanta hawks (11)?",
    "question_th": "เกมนี้เล่นในสถานที่ใดเมื่อผู้ชนะคือ Atlanta Hawks (11)",
    "context": "CREATE TABLE table_name_81 (venue VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT loser FROM table_name_83 WHERE result = \"119–113\"",
    "question_en": "What team was the loser when the result was 119–113?",
    "question_th": "ทีมใดเป็นผู้แพ้เมื่อผลการแข่งขันคือ 119–113?",
    "context": "CREATE TABLE table_name_83 (loser VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT loser FROM table_name_18 WHERE winner = \"los angeles lakers (10)\"",
    "question_en": "What is the Loser when the winner was los angeles lakers (10)?",
    "question_th": "ผู้แพ้คืออะไรเมื่อผู้ชนะคือลอสแองเจลิสเลเกอร์ส (10)?",
    "context": "CREATE TABLE table_name_18 (loser VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_78 WHERE result = \"88–87\"",
    "question_en": "What is the Venue when the result was 88–87?",
    "question_th": "สถานที่จัดงานเมื่อผลการแข่งขันคือ 88–87 คืออะไร?",
    "context": "CREATE TABLE table_name_78 (venue VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_35 WHERE result = \"90–86\"",
    "question_en": "What team was the winner when the result was 90–86?",
    "question_th": "ทีมใดเป็นผู้ชนะเมื่อผลการแข่งขันคือ 90–86",
    "context": "CREATE TABLE table_name_35 (winner VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_10 WHERE loser = \"memphis grizzlies ( 2)\"",
    "question_en": "What is the Result when the memphis grizzlies ( 2) were the loser?",
    "question_th": "ผลลัพธ์จะเป็นอย่างไรเมื่อเมมฟิส กริซลี่ส์ (2) เป็นผู้แพ้?",
    "context": "CREATE TABLE table_name_10 (result VARCHAR, loser VARCHAR)"
  },
  {
    "answer": "SELECT years FROM table_name_77 WHERE win_percentage = \"60%\"",
    "question_en": "What year was the Win percentage 60%?",
    "question_th": "เปอร์เซ็นต์การชนะ 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_en": "What is the total number of Tests when the lost is less than 9 for sir fred allen?",
    "question_th": "จำนวนการทดสอบทั้งหมดเมื่อผู้แพ้น้อยกว่า 9 สำหรับเซอร์เฟรด อัลเลนเป็นเท่าใด",
    "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_en": "What is the Win percentage where there were 5 lost and 0 is drew?",
    "question_th": "เปอร์เซ็นต์การชนะคือเท่าไรที่แพ้ 5 ครั้งและเสมอ 0 ครั้ง?",
    "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_en": "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?",
    "question_th": "Campeonato Paulistas มี Campeonato brasileiro มากกว่า 2 รายการ อีกรายการมากกว่า 0 และ Copa sudamericana มากกว่า 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_en": "What is the largest copa sudamericana number when the others number is less than 0?",
    "question_th": "หมายเลขโกปา ซูดาเมริกานา ที่ใหญ่ที่สุดเมื่อหมายเลขอื่นน้อยกว่า 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_en": "Which Unit has Authors of dalla vecchia, wild, & reitner?",
    "question_th": "หน่วยใดมีผู้เขียน 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_en": "Where is two medicine formation?",
    "question_th": "การก่อตัวของยาสองอยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_46 (location VARCHAR, unit VARCHAR)"
  },
  {
    "answer": "SELECT unit FROM table_name_75 WHERE authors = \"varricchio\"",
    "question_en": "What is varricchio's unit?",
    "question_th": "หน่วยของวาร์ริคคิโอคืออะไร?",
    "context": "CREATE TABLE table_name_75 (unit VARCHAR, authors VARCHAR)"
  },
  {
    "answer": "SELECT authors FROM table_name_42 WHERE unit = \"densuș-ciula formation\"",
    "question_en": "Which authors have a Unit of densuș-ciula formation?",
    "question_th": "ผู้เขียนคนไหนมีหน่วยของการสร้าง densuş-ciula?",
    "context": "CREATE TABLE table_name_42 (authors VARCHAR, unit VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_55 WHERE unit = \"daohugou beds\"",
    "question_en": "Which Status has a Unit of daohugou beds?",
    "question_th": "สถานะใดมีหน่วยเตียง Daohugou",
    "context": "CREATE TABLE table_name_55 (status VARCHAR, unit VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_75 WHERE authors = \"varricchio\"",
    "question_en": "What is varricchio's status?",
    "question_th": "สถานะของวาร์ริคคิโอคืออะไร?",
    "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 † morris lallo ‡ gerry moore ‡\" AND goals_against > 322",
    "question_en": "What is the points average when the tied is greater than 8, less than 82 games and the coach of Bryan Mclay † Morris Lallo ‡ Gerry Moore ‡, and greater than 322 goals?",
    "question_th": "ค่าเฉลี่ยแต้มเมื่อเสมอกันมากกว่า 8 น้อยกว่า 82 เกม และโค้ชของ ไบรอัน แม็คเลย์ † มอร์ริส ลาลโล ‡ เจอร์รี่ มัวร์ ‡ และมากกว่า 322 ประตู คือเท่าไร?",
    "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_en": "What are the most games when the points are 100 and goals for less than 356?",
    "question_th": "เกมไหนมีแต้มถึง 100 และเสียประตูน้อยกว่า 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_en": "What is the most points when the goals against are 354 and games less than 82?",
    "question_th": "แต้มมากที่สุดเมื่อประตูคือ 354 และเกมน้อยกว่า 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_en": "For games less than 70 and goals for greater than 335 what is the most points?",
    "question_th": "สำหรับเกมที่น้อยกว่า 70 และประตูที่มากกว่า 335 แต้มมากที่สุดคือเท่าใด?",
    "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_en": "What is Gold, when Total is less than 4, when Silver is 1, and when Bronze is 1?",
    "question_th": "ทองคำคืออะไร เมื่อผลรวมน้อยกว่า 4 เมื่อเงินคือ 1 และเมื่อทองแดงเป็น 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_en": "What is Silver, when Total is greater than 4, when Bronze is 2, and when Rank is greater than 1?",
    "question_th": "เงินคืออะไร เมื่อคะแนนรวมมากกว่า 4 เมื่อทองแดงเป็น 2 และเมื่ออันดับมากกว่า 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_en": "Who was on the Socialist Labor ticket that had Arthur Levitt as the Liberal Ticket?",
    "question_th": "ใครอยู่ในตั๋วพรรคแรงงานสังคมนิยมที่มีอาเธอร์ เลวิตต์เป็นตั๋วเสรีนิยม",
    "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_en": "Robert S. Flanzer was the Free Libertarian ticket with who listed as the Liberal Ticket?",
    "question_th": "Robert S. Flanzer เป็นตั๋ว Free Libertarian โดยใครระบุเป็น 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_en": "The Liberal Ticket listed which candidate when Jack A. Martin was listed on the Free Libertarian Ticket?",
    "question_th": "Liberal Ticket ระบุว่าผู้สมัครรายใดเมื่อ Jack A. Martin มีรายชื่ออยู่ใน 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_en": "The person who is on the Democratic ticket for the position of Office of U.S. Senator was who?",
    "question_th": "บุคคลที่อยู่ในตั๋วประชาธิปไตยสำหรับตำแหน่งสำนักงานวุฒิสมาชิกสหรัฐคือใคร?",
    "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_en": "Leland W. Schubert, Free Libertarian ticket, had who listed on the Democratic ticket?",
    "question_th": "Leland W. Schubert ตั๋วเสรีเสรีนิยมมีใครอยู่ในตั๋วประชาธิปไตยบ้าง?",
    "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_en": "What is the lowest Extras for Chamara Kapugedera, with an E.R. less than 4.59?",
    "question_th": "ค่าพิเศษต่ำสุดสำหรับ Chamar Kapugedera โดยมี ER น้อยกว่า 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_en": "What is the highest Extras with an E.R. of 4.59, and more than 101 Runs Conceded?",
    "question_th": "ค่าพิเศษสูงสุดที่มี ER 4.59 และเสียมากกว่า 101 รันคืออะไร",
    "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_en": "What is the average Extras for Muttiah Muralitharan, with less than 353 Runs Conceded?",
    "question_th": "อะไรคือความพิเศษโดยเฉลี่ยของ Muttiah Muralitharan ที่เสียการวิ่งน้อยกว่า 353 ครั้ง?",
    "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_en": "What is the highest Extras for Farveez Maharoof, with more than 4 wickets?",
    "question_th": "อะไรคือความพิเศษสูงสุดของ Farveez Maharoof ที่มีมากกว่า 4 ประตู?",
    "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_en": "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?",
    "question_th": "จำนวน Maidens ทั้งหมดเมื่อ ER น้อยกว่า 9.5 และ Overs Bowled มากกว่า 57 และ Wickets เท่ากับ 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_en": "How many FA Cups on average have a larger total than 32 and a larger league than 24?",
    "question_th": "โดยเฉลี่ยแล้ว เอฟเอ คัพ มีกี่ถ้วยที่มีคะแนนรวมมากกว่า 32 ถ้วยและมีลีกที่ใหญ่กว่า 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_en": "How many FA Trophies had a total of 27, 2 FA cups, and a league larger than 24?",
    "question_th": "FA Trophies มีทั้งหมด 27 ถ้วย FA 2 ถ้วยและมีลีกใหญ่กว่า 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_en": "What is the year built of the home with a built status and a 42 m. height?",
    "question_th": "บ้านสร้างปีไหนมีสถานะสร้างสูง42ม. ความสูง?",
    "context": "CREATE TABLE table_name_41 (status VARCHAR, height VARCHAR)"
  },
  {
    "answer": "SELECT height FROM table_name_34 WHERE stories > 22 AND built = \"2009\"",
    "question_en": "What is the height of the home with stories greater than 22 and built in 2009?",
    "question_th": "บ้านที่มีชั้นมากกว่า 22 ชั้นและสร้างในปี 2552 มีความสูงเท่าใด",
    "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_en": "What is the highest number of stories in homes with a height of 42 m.?",
    "question_th": "บ้านสูง 42 ม. สูง 42 ม. มีจำนวนชั้นสูงสุดคือเท่าไร?",
    "context": "CREATE TABLE table_name_7 (stories INTEGER, height VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_81 WHERE game = 2",
    "question_en": "When the game is listed as 2, what is the score?",
    "question_th": "เมื่อเกมขึ้นเป็น 2 คะแนนจะเป็นเท่าไหร่?",
    "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_en": "What is the latest November date with an Opponent of @ Pittsburgh Pirates and the game is more than 3?",
    "question_th": "วันที่เดือนพฤศจิกายนล่าสุดกับฝ่ายตรงข้ามของ @ Pittsburgh Pirates และเกมมีมากกว่า 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_en": "When the record is listed as 2-0-0, and the November date is less than 27, what is the sum of the game?",
    "question_th": "เมื่อสถิติเป็น 2-0-0 และวันที่พฤศจิกายนน้อยกว่า 27 ผลรวมของเกมเป็นเท่าใด",
    "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_en": "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?",
    "question_th": "จำนวนผู้ที่เกิดในต่างประเทศต่ำสุด (ล้าน) คือเท่าใด เมื่อจำนวนผู้ที่เกิดในรัฐนอกสหภาพยุโรป (ล้าน) อยู่ที่ 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_en": "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?",
    "question_th": "คือจำนวนเฉลี่ยของผู้ที่เกิดในรัฐอื่นๆ ในสหภาพยุโรปในหน่วยล้าน เมื่อจำนวนรวมของผู้ที่เกิดในต่างประเทศในหน่วยล้านคือ 0.5 และเมื่อจำนวนประชากรทั้งหมดเป็นล้านน้อยกว่า 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_en": "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?",
    "question_th": "คือจำนวนเฉลี่ยของผู้ที่เกิดในรัฐอื่นๆ ในสหภาพยุโรปในหน่วยล้าน เมื่อจำนวนผู้ที่เกิดในรัฐนอกสหภาพยุโรปในหน่วยล้านคือ 31.368 และเมื่อจำนวนประชากรทั้งหมดในหน่วยล้านสูงกว่า 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_en": "How many people were born in a non EU state (in millions), when the Total population (in millions) was 62.008?",
    "question_th": "มีกี่คนที่เกิดในรัฐที่ไม่ใช่สหภาพยุโรป (เป็นล้าน) เมื่อจำนวนประชากรทั้งหมด (เป็นล้าน) คือ 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_en": "What away team has tottenham hotspur as the home team?",
    "question_th": "ทีมเยือนทีมไหนมี ท็อตแน่ม ฮ็อทสเปอร์ เป็นเจ้าบ้าน?",
    "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_en": "What is the Tamil Name of the Thaipusam holiday?",
    "question_th": "ชื่อทมิฬของวันหยุด Thaipusam คืออะไร?",
    "context": "CREATE TABLE table_name_96 (tamil_name VARCHAR, english_name VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_80 WHERE tamil_name = \"சந்திர புத்தாண்டு (தினம் 2)\"",
    "question_en": "What is the Tamil Name of சந்திர புத்தாண்டு (தினம் 2)?",
    "question_th": "ชื่อภาษาทมิฬของ சநारதிர புதनाதாணाடு (தினமà 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 = \"சந்திர புத்தாண்டு (தினம் 3)\"",
    "question_en": "What is the Chinese Type Chinese Name of the holiday with a Tamil Name of சந்திர புத்தாண்டு (தினம் 3)?",
    "question_th": "ชื่อภาษาจีนประเภทภาษาจีนของวันหยุดที่มีชื่อภาษาทมิฬของ சநारதிர புதारதாணाடு (தினமà 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_en": "Who was second for the United States team?",
    "question_th": "ใครเป็นอันดับสองสำหรับทีมสหรัฐอเมริกา?",
    "context": "CREATE TABLE table_name_35 (second VARCHAR, nation VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_name_23 WHERE third = \"yumie hayashi\"",
    "question_en": "Yumie Hayashi was third for which club?",
    "question_th": "ยูมิเอะ ฮายาชิ อยู่อันดับสามของสโมสรใด",
    "context": "CREATE TABLE table_name_23 (club VARCHAR, third VARCHAR)"
  },
  {
    "answer": "SELECT alternate FROM table_name_86 WHERE nation = \"switzerland\"",
    "question_en": "Who was Switzerland's alternate?",
    "question_th": "ใครคือตัวสำรองของสวิตเซอร์แลนด์?",
    "context": "CREATE TABLE table_name_86 (alternate VARCHAR, nation VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_name_27 WHERE nation = \"great britain\"",
    "question_en": "Which club was from Great Britain?",
    "question_th": "สโมสรใดมาจากบริเตนใหญ่?",
    "context": "CREATE TABLE table_name_27 (club VARCHAR, nation VARCHAR)"
  },
  {
    "answer": "SELECT nation FROM table_name_74 WHERE second = \"glenys bakker\"",
    "question_en": "Glenys Bakker was second for which nation?",
    "question_th": "Glenys Bakker เป็นอันดับสองของชาติใด",
    "context": "CREATE TABLE table_name_74 (nation VARCHAR, second VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_name_64 WHERE second = \"rosa pompanin\"",
    "question_en": "Rosa Pompanin was second for which club?",
    "question_th": "โรซ่า ปอมปานิน เป็นรองสโมสรไหน?",
    "context": "CREATE TABLE table_name_64 (club VARCHAR, second VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_18 WHERE singapore_gross = \"1999\"",
    "question_en": "What date was the Singapore Gross 1999?",
    "question_th": "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_en": "What is the name of the producer that produced a film with a production cost of $1,000,000?",
    "question_th": "โปรดิวเซอร์ที่สร้างภาพยนตร์ด้วยต้นทุนการผลิต 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_en": "What is the name of the director who directed the movie that Raintree Pictures produced?",
    "question_th": "ผู้กำกับที่กำกับภาพยนตร์ที่เรนทรีพิคเจอร์สอำนวยการสร้างชื่ออะไร?",
    "context": "CREATE TABLE table_name_13 (director VARCHAR, producer VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_93 WHERE production_cost = \"$850,000\"",
    "question_en": "What is the title of the film that had a production cost of $850,000?",
    "question_th": "ภาพยนตร์ที่มีทุนสร้าง 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_en": "How much is the Singapore Gross for the film that Siu Wing directed?",
    "question_th": "Singapore Gross สำหรับภาพยนตร์ที่ Siu Wing กำกับมีราคาเท่าไร",
    "context": "CREATE TABLE table_name_93 (singapore_gross VARCHAR, director VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_5 WHERE away = \"broadview hawks\"",
    "question_en": "What is the Date with an Away that is broadview hawks?",
    "question_th": "อะไรคือ Date with an Away ที่เป็น Broadview Hawks?",
    "context": "CREATE TABLE table_name_5 (date VARCHAR, away VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_94 WHERE away = \"toronto rebels\"",
    "question_en": "What is the Home with an Away that is toronto rebels?",
    "question_th": "อะไรคือ Home with an Away ที่เป็นกบฏของโตรอนโต?",
    "context": "CREATE TABLE table_name_94 (home VARCHAR, away VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_17 WHERE score = \"46-82\"",
    "question_en": "What is the Time with a Score that is 46-82?",
    "question_th": "เวลาที่มีคะแนน 46-82 คืออะไร?",
    "context": "CREATE TABLE table_name_17 (time VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_15 WHERE away = \"central blues\"",
    "question_en": "What is the Date with an Away that is central blues?",
    "question_th": "อะไรคือ Date with an Away ที่เป็นเพลงบลูส์กลาง?",
    "context": "CREATE TABLE table_name_15 (date VARCHAR, away VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_31 WHERE home = \"high park demons\"",
    "question_en": "What is the Time with a Home that is high park demons?",
    "question_th": "เวลากับบ้านที่เป็นปีศาจสวนสาธารณะสูงคืออะไร?",
    "context": "CREATE TABLE table_name_31 (time VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT away FROM table_name_70 WHERE score = \"46-82\"",
    "question_en": "What is the Away with a Score that is 46-82?",
    "question_th": "ทีมเยือนด้วยสกอร์ 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_en": "Which Partner is on 22 april 2002?",
    "question_th": "พันธมิตรรายใดคือวันที่ 22 เมษายน พ.ศ. 2545?",
    "context": "CREATE TABLE table_name_35 (partner VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT partner FROM table_name_24 WHERE opponents = \"wayne arthurs sandon stolle\"",
    "question_en": "Which Partner has an Opponents of wayne arthurs sandon stolle?",
    "question_th": "คู่หูคนไหนมีฝ่ายตรงข้ามของเวย์น อาร์เธอร์ แซนดอน สโตลเล?",
    "context": "CREATE TABLE table_name_24 (partner VARCHAR, opponents VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_56 WHERE tournament = \"san jose, us (2)\"",
    "question_en": "Which Score has a Tournament of san jose, us (2)?",
    "question_th": "สกอร์ใดที่มีทัวร์นาเมนต์ของซานโฮเซ่พวกเรา (2)?",
    "context": "CREATE TABLE table_name_56 (score VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT opponents FROM table_name_60 WHERE score = \"6–3, 6–4, 6–1\"",
    "question_en": "Which Opponents has a Score of 6–3, 6–4, 6–1?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีคะแนน 6–3, 6–4, 6–1?",
    "context": "CREATE TABLE table_name_60 (opponents VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_19 WHERE score = \"6–4, 6–4, 6–2\"",
    "question_en": "Which Outcome has a Score of 6–4, 6–4, 6–2?",
    "question_th": "ผลลัพธ์ใดมีคะแนน 6–4, 6–4, 6–2",
    "context": "CREATE TABLE table_name_19 (outcome VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_89 WHERE score = \"1–6, 0–6\"",
    "question_en": "Which Tournament has a Score of 1–6, 0–6?",
    "question_th": "ทัวร์นาเมนต์ใดมีคะแนน 1–6, 0–6",
    "context": "CREATE TABLE table_name_89 (tournament VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_73 WHERE time = \"3:00\"",
    "question_en": "Who is the opponent of the 3:00 time?",
    "question_th": "คู่ต่อสู้ในเวลา 03.00 น. คือใคร?",
    "context": "CREATE TABLE table_name_73 (opponent VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_7 WHERE partnering = \"nathalie tauziat\"",
    "question_en": "What was the score of the game with Nathalie Tauziat as a partner?",
    "question_th": "ในเกมที่มีนาธาลี เทาเซียตเป็นคู่หูได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_7 (score VARCHAR, partnering VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_93 WHERE date = \"september 20, 1993\"",
    "question_en": "What type of surface was used for the game played on September 20, 1993?",
    "question_th": "พื้นผิวประเภทใดที่ใช้สำหรับเกมที่เล่นในวันที่ 20 กันยายน พ.ศ. 2536",
    "context": "CREATE TABLE table_name_93 (surface VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_24 WHERE surface = \"grass\"",
    "question_en": "What was the score of the game that was played on a grass surface?",
    "question_th": "เกมนี้เล่นบนพื้นหญ้าได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_24 (score VARCHAR, surface VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_85 WHERE partnering = \"laura golarsa\"",
    "question_en": "What was the date of the game that was played against Laura Golarsa?",
    "question_th": "เกมที่เล่นกับลอร่า โกลาร์ซาคือวันที่เท่าไหร่?",
    "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_en": "What is the total rank of the celebrity with a 34.66 average and a season greater than 1?",
    "question_th": "อันดับรวมของคนดังที่มีค่าเฉลี่ย 34.66 และฤดูกาลที่มากกว่า 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_en": "What is the highest average of celebrity Natalia Lesz, who is ranked greater than 4?",
    "question_th": "ค่าเฉลี่ยสูงสุดของคนดัง Natalia Lesz ซึ่งอยู่ในอันดับที่มากกว่า 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łgorzata foremniak\"",
    "question_en": "Who is the professional partner of celebrity małgorzata foremniak with a season less than 7, an average greater than 34.66, and a rank less than 10?",
    "question_th": "ใครคือหุ้นส่วนมืออาชีพของคนดัง małgorzata foremniak ที่มีฤดูกาลน้อยกว่า 7 ฤดูกาล ค่าเฉลี่ยมากกว่า 34.66 และอันดับน้อยกว่า 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_en": "What is the primary language used in the film title Nynke?",
    "question_th": "ภาษาหลักที่ใช้ในภาพยนตร์เรื่อง 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_en": "For the film made in 1964: (37th), what was the result?",
    "question_th": "สำหรับหนังที่สร้างในปี 2507: (ครั้งที่ 37) ผลลัพธ์เป็นอย่างไรบ้าง?",
    "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_en": "What is the nomination title used for the original film, Monsieur Hawarden?",
    "question_th": "ชื่อการเสนอชื่อที่ใช้สำหรับภาพยนตร์ต้นฉบับคืออะไร 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_en": "What is the nomination title used for the original film, Zwartboek?",
    "question_th": "ชื่อการเสนอชื่อที่ใช้สำหรับภาพยนตร์ต้นฉบับ 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_en": "What is the primary language used in the film, Black Book?",
    "question_th": "ภาษาหลักที่ใช้ในภาพยนตร์เรื่อง 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_en": "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?",
    "question_th": "ค่าแผงเกษตรโดยเฉลี่ยโดยแผงแรงงานน้อยกว่า 1 มูลค่ารวมน้อยกว่า 21 และค่ามหาวิทยาลัยแห่งชาติไอร์แลนด์มากกว่า 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_en": "What is the highest administrative panel value with an agricultural panel less than 1 and a labour panel value less than 5?",
    "question_th": "ค่าแผงการบริหารสูงสุดโดยแผงเกษตรกรรมน้อยกว่า 1 และค่าแผงแรงงานน้อยกว่า 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_en": "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?",
    "question_th": "อะไรคือมูลค่าของคณะทำงานสูงสุดโดยคณะทำงานด้านวัฒนธรรมและการศึกษามากกว่า 1, มหาวิทยาลัยดับลินมีค่ามากกว่า 0 และมูลค่ารวมน้อยกว่า 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_en": "What is the total University of Dublin value with a labour panel greater than 11?",
    "question_th": "มูลค่ารวมของมหาวิทยาลัยดับลินที่มีแผงแรงงานมากกว่า 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_en": "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?",
    "question_th": "ผลรวมของมูลค่าแผงการศึกษาและวัฒนธรรมโดยแผงการจัดการเป็น 0 และมูลค่าแผงเกษตรกรรมน้อยกว่า 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_en": "What is the highest 2012 immigration for a country with an immigration of 81,094 in 2011?",
    "question_th": "การย้ายถิ่นฐานสูงสุดในปี 2555 สำหรับประเทศที่มีการย้ายถิ่นฐาน 81,094 ในปี 2554 คือเท่าใด",
    "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_en": "What is the Gauge of Locomotive G534 Owned by Aurizon which has a Status of Operational?",
    "question_th": "มาตรวัดของหัวรถจักร G534 ที่ Aurizon เป็นเจ้าของซึ่งมีสถานะการปฏิบัติงานคืออะไร?",
    "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_en": "Which Locomotive Entered Service in November 1984 and has an Operator of Southern Shorthaul Railroad?",
    "question_th": "หัวรถจักรใดที่เข้าให้บริการในเดือนพฤศจิกายน พ.ศ. 2527 และมีผู้ดำเนินการรถไฟสายใต้สายใต้?",
    "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_en": "What is the Serial number of the Locomotive that Entered Service in November 1984 and has an Owner of Chicago Freight Car Leasing Australia?",
    "question_th": "หมายเลขประจำเครื่องของหัวรถจักรที่เข้าใช้บริการในเดือนพฤศจิกายน พ.ศ. 2527 และมีเจ้าของ 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_en": "What is the Serial Number of the Locomotive that Entered Service October 1989?",
    "question_th": "หมายเลขประจำเครื่องของรถจักรที่เข้าใช้บริการเมื่อเดือนตุลาคม พ.ศ. 2532 คืออะไร?",
    "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_en": "What is the 2011 value with a 2008 value of 0.3 and is a member state of the European Union?",
    "question_th": "ค่าปี 2554 โดยค่าปี 2551 เท่ากับ 0.3 คืออะไร และเป็นประเทศสมาชิกของสหภาพยุโรปหรือไม่",
    "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_en": "What is the 2012 value with a 1.3 in 2010 and a 3.6 in 2008?",
    "question_th": "ค่าปี 2555 โดยมีค่า 1.3 ในปี 2553 และ 3.6 ในปี 2551 เป็นเท่าใด",
    "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_en": "What is the sum of Yellow, when Category is Bugre (Indian), and when Amerindian is less than 50,00?",
    "question_th": "ผลรวมของสีเหลืองเมื่อหมวดหมู่คือ Bugre (อินเดีย) และเมื่อ Amerindian น้อยกว่า 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_en": "What kind of  IATA has an Airport of hamburg airport?",
    "question_th": "IATA มีสนามบินฮัมบูร์กประเภทใด",
    "context": "CREATE TABLE table_name_5 (iata VARCHAR, airport VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_83 WHERE iata = \"bal\"",
    "question_en": "Which Country that has a IATA of bal?",
    "question_th": "ประเทศใดที่มี IATA เป็น bal?",
    "context": "CREATE TABLE table_name_83 (country VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_32 WHERE iata = \"vie\"",
    "question_en": "Which Country has a IATA of vie?",
    "question_th": "ประเทศใดมี IATA ของ vie?",
    "context": "CREATE TABLE table_name_32 (country VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_46 WHERE icao = \"ltcd\"",
    "question_en": "WHich Country has a ICAO of ltcd?",
    "question_th": "ประเทศใดมี ICAO ของ ltcd?",
    "context": "CREATE TABLE table_name_46 (country VARCHAR, icao VARCHAR)"
  },
  {
    "answer": "SELECT airport FROM table_name_63 WHERE iata = \"erz\"",
    "question_en": "Which Airport has a IATA of erz?",
    "question_th": "สนามบินใดมี IATA เท่ากับ erz",
    "context": "CREATE TABLE table_name_63 (airport VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT iata FROM table_name_83 WHERE airport = \"berlin schönefeld airport\"",
    "question_en": "What kind of IATA that has a Airport of berlin schönefeld airport?",
    "question_th": "IATA ประเภทใดที่มีสนามบินเบอร์ลิน เชินเฟลด์",
    "context": "CREATE TABLE table_name_83 (iata VARCHAR, airport VARCHAR)"
  },
  {
    "answer": "SELECT lyrics__l____music__m_ FROM table_name_46 WHERE artist = \"cube\"",
    "question_en": "Who provided lyrics or music to the artist Cube?",
    "question_th": "ใครเป็นผู้จัดเตรียมเนื้อเพลงหรือดนตรีให้กับศิลปิน 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_en": "What was the aircraft damage for the Boeing 707-320B?",
    "question_th": "เครื่องบินโบอิ้ง 707-320B ได้รับความเสียหายเป็นอย่างไรบ้าง",
    "context": "CREATE TABLE table_name_51 (aircraft VARCHAR)"
  },
  {
    "answer": "SELECT fatalities FROM table_name_71 WHERE aircraft = \"viscount 700\"",
    "question_en": "What was the number of fatalities for the Viscount 700?",
    "question_th": "จำนวนผู้เสียชีวิตของ 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_en": "What was the aircraft damage for the accident that had fatalities of 30/30?",
    "question_th": "เครื่องบินได้รับความเสียหายจากอุบัติเหตุซึ่งมีผู้เสียชีวิต 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_en": "What was the location that had an accident by the F-27-600RF aircraft with tail number 6O-SAZ?",
    "question_th": "ตำแหน่งที่เกิดอุบัติเหตุโดยเครื่องบิน F-27-600RF หมายเลขท้าย 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_en": "What was the tail number of the aircraft that had 5/30 fatalities?",
    "question_th": "เครื่องบินลำนั้นมีผู้เสียชีวิต 5/30 กี่ลำ?",
    "context": "CREATE TABLE table_name_86 (tail_number VARCHAR, fatalities VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_84 WHERE fatalities = \"50/50\"",
    "question_en": "What was the location of the accident that led to 50/50 fatalities?",
    "question_th": "สถานที่เกิดเหตุมีผู้เสียชีวิต 50/50 รายที่ไหน?",
    "context": "CREATE TABLE table_name_84 (location VARCHAR, fatalities VARCHAR)"
  },
  {
    "answer": "SELECT int_percentage FROM table_name_80 WHERE rlng = \"4\"",
    "question_en": "What % has 4 RLng?",
    "question_th": "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_en": "What team had a Ravg of 3.4?",
    "question_th": "ทีมใดมี Ravg อยู่ที่ 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_en": "What is the int percentage that has Ravg of 2.8?",
    "question_th": "เปอร์เซ็นต์ int ที่มี Ravg อยู่ที่ 2.8 คืออะไร?",
    "context": "CREATE TABLE table_name_29 (int_percentage VARCHAR, ravg VARCHAR)"
  },
  {
    "answer": "SELECT r1st FROM table_name_49 WHERE ryds = \"36\"",
    "question_en": "Who is the R1st that has 36 RYds?",
    "question_th": "ใครคือ R1 ที่มี 36 RYds?",
    "context": "CREATE TABLE table_name_49 (r1st VARCHAR, ryds VARCHAR)"
  },
  {
    "answer": "SELECT ravg FROM table_name_87 WHERE year = \"2003\"",
    "question_en": "What was the Ravg for 2003?",
    "question_th": "Ravg สำหรับปี 2003 คืออะไร?",
    "context": "CREATE TABLE table_name_87 (ravg VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT rate FROM table_name_22 WHERE ryds = \"73\"",
    "question_en": "What was the rate for 73 RYds?",
    "question_th": "อัตราสำหรับ 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_en": "What is the name of the non-mammal from brazil of the unit of caturrita formation?",
    "question_th": "สัตว์ที่ไม่ใช่สัตว์เลี้ยงลูกด้วยนมจากบราซิลในหน่วยการก่อตัวของ caturrita ชื่ออะไร?",
    "context": "CREATE TABLE table_name_19 (name VARCHAR, location VARCHAR, unit VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_4 WHERE authors = \"tatarinov\"",
    "question_en": "What is the name of the non-mammal who has tatarinov as the author?",
    "question_th": "ผู้ที่ไม่ใช่สัตว์เลี้ยงลูกด้วยนมชื่ออะไรซึ่งมีทาทารินอฟเป็นผู้เขียน?",
    "context": "CREATE TABLE table_name_4 (name VARCHAR, authors VARCHAR)"
  },
  {
    "answer": "SELECT unit FROM table_name_95 WHERE location = \"greenland\"",
    "question_en": "What is the unit of the non-mammal from greenland?",
    "question_th": "หน่วยของสัตว์ที่ไม่ใช่สัตว์เลี้ยงลูกด้วยนมจากกรีนแลนด์คือข้อใด",
    "context": "CREATE TABLE table_name_95 (unit VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT authors FROM table_name_65 WHERE name = \"malasaurus\"",
    "question_en": "Who is the author for the malasaurus?",
    "question_th": "ใครเป็นผู้เขียนมาลาซอรัส?",
    "context": "CREATE TABLE table_name_65 (authors VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_3 WHERE unit = \"vyazniki assemblage\"",
    "question_en": "What is the name of the non mammal of the unit vyazniki assemblage?",
    "question_th": "สัตว์เลี้ยงลูกด้วยนมที่ไม่ใช่สัตว์เลี้ยงลูกด้วยนมของหน่วย 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_en": "Who are the authors for the malasaurus of the vyazniki assemblage?",
    "question_th": "ใครคือผู้เขียน Malasaurus ของชุด vyazniki?",
    "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_en": "What is the lowest Rank with more than 0 bronze, 8 silver, and a total of 19, with less than 9 gold?",
    "question_th": "อันดับต่ำสุดที่มีมากกว่า 0 ทองแดง 8 เหรียญเงิน และรวม 19 เหรียญทอง น้อยกว่า 9 เหรียญทองคืออะไร?",
    "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_en": "What is the sum for gold when there is more than 17 silver and more than 24 bronze?",
    "question_th": "ผลรวมของทองคำเมื่อมีมากกว่า 17 เงินและมากกว่า 24 ทองสัมฤทธิ์เป็นเท่าใด",
    "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_en": "What is the sum of Bronze when the rank is 7, and the total is more than 22?",
    "question_th": "ผลรวมของทองแดงเมื่ออันดับเป็น 7 และผลรวมมากกว่า 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_en": "What is the sum of rank when silver is 1, and gold is less than 7, and bronze is 2?",
    "question_th": "ผลรวมของอันดับเมื่อเงินคือ 1 และทองน้อยกว่า 7 และทองแดงคือ 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_en": "Who was the Conductor of the Three Pintos (Die Drei Pintos) Production?",
    "question_th": "ใครคือผู้ควบคุมการผลิต Three Pintos (Die Drei Pintos)",
    "context": "CREATE TABLE table_name_34 (conductor VARCHAR, production VARCHAR)"
  },
  {
    "answer": "SELECT conductor FROM table_name_22 WHERE director = \"stephen barlow\"",
    "question_en": "Who is the Conductor who had Stephen Barlow as Director?",
    "question_th": "ใครคือวาทยากรที่มี Stephen Barlow เป็นผู้อำนวยการ?",
    "context": "CREATE TABLE table_name_22 (conductor VARCHAR, director VARCHAR)"
  },
  {
    "answer": "SELECT composer FROM table_name_3 WHERE director = \"john ramster\"",
    "question_en": "Who was Director John Ramster's Composer?",
    "question_th": "ใครคือนักแต่งเพลงของผู้กำกับ John Ramster",
    "context": "CREATE TABLE table_name_3 (composer VARCHAR, director VARCHAR)"
  },
  {
    "answer": "SELECT Giant AS slalom FROM table_name_26 WHERE slalom = \"45\"",
    "question_en": "Which Giant Slalom has a Slalom of 45?",
    "question_th": "ไจแอนท์สลาลมใดมีสลาลม 45?",
    "context": "CREATE TABLE table_name_26 (Giant VARCHAR, slalom VARCHAR)"
  },
  {
    "answer": "SELECT slalom FROM table_name_98 WHERE super_g = \"4\"",
    "question_en": "Which Slalom has a Super G of 4?",
    "question_th": "สลาลมใดมี Super G เป็น 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_en": "Which champion has sentosa golf club as the tournament location?",
    "question_th": "แชมป์คนไหนมีสโมสรกอล์ฟเซ็นโตซ่าเป็นสถานที่จัดการแข่งขัน?",
    "context": "CREATE TABLE table_name_55 (champion VARCHAR, tournament_location VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_17 WHERE year = 2011",
    "question_en": "Which county has 2011 as the year?",
    "question_th": "จังหวัดใดให้ปี 2554 เป็นปี?",
    "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_en": "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?",
    "question_th": "ผลรวมของเหรียญทองแดงสำหรับสหภาพโซเวียตคือเท่าไร เมื่อมีมากกว่า 0 เหรียญเงิน และมากกว่า 3 เหรียญรวม?",
    "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_en": "What is the lowest rank of a nation with fewer than 3 gold medals, more than 2 bronze medals, and 0 silver medals?",
    "question_th": "อันดับต่ำสุดของประเทศที่มีน้อยกว่า 3 เหรียญทอง มากกว่า 2 เหรียญทองแดง และ 0 เหรียญเงิน คืออะไร",
    "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_en": "For the album Board Up the House, what is the contribution?",
    "question_th": "สำหรับอัลบั้ม Board Up the House มีผลงานอะไรบ้าง?",
    "context": "CREATE TABLE table_name_49 (contribution VARCHAR, album VARCHAR)"
  },
  {
    "answer": "SELECT band FROM table_name_75 WHERE year > 2011",
    "question_en": "What band has a year above 2011?",
    "question_th": "วงดนตรีใดมีปีมากกว่าปี 2011?",
    "context": "CREATE TABLE table_name_75 (band VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT time___et__ FROM table_name_56 WHERE record = \"0–2–0\"",
    "question_en": "What time was the game played that had a record of 0–2–0?",
    "question_th": "เกมนี้เล่นกี่โมงโดยมีสถิติ 0–2–0?",
    "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_en": "What is the average weight of a player who is less than 175 centimeters tall?",
    "question_th": "น้ำหนักเฉลี่ยของผู้เล่นที่สูงน้อยกว่า 175 เซนติเมตรคือเท่าใด",
    "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_en": "What is the English name of the country that has Ramallah as its capital?",
    "question_th": "ชื่อภาษาอังกฤษของประเทศที่มีเมืองรอมัลเลาะห์เป็นเมืองหลวงคืออะไร?",
    "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_en": "What is the English name of the country that has Doha as its capital?",
    "question_th": "ชื่อภาษาอังกฤษของประเทศที่มีโดฮาเป็นเมืองหลวงคืออะไร?",
    "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_en": "What is the name of the capital, in Arabic, that is called n'djamena in English?",
    "question_th": "เมืองหลวงในภาษาอาหรับเรียกว่า n'djamena ในภาษาอังกฤษชื่ออะไร?",
    "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_en": "What is the name of the country in Arabic that has Moroni as the name of its capital in English?",
    "question_th": "ชื่อประเทศในภาษาอาหรับที่มีโมโรนีเป็นชื่อเมืองหลวงในภาษาอังกฤษคืออะไร?",
    "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_en": "When was the premiere on the TVB Jade Channel?",
    "question_th": "ออกอากาศตอนแรกทางช่อง 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_en": "Who was the host of the premiere on November 10, 2007?",
    "question_th": "ใครเป็นพิธีกรรอบปฐมทัศน์เมื่อวันที่ 10 พฤศจิกายน พ.ศ. 2550?",
    "context": "CREATE TABLE table_name_18 (host VARCHAR, premiere VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_65 WHERE premiere = \"july 24, 2010\"",
    "question_en": "Which country had a premiere on July 24, 2010?",
    "question_th": "ประเทศใดมีรอบปฐมทัศน์ในวันที่ 24 กรกฎาคม 2010?",
    "context": "CREATE TABLE table_name_65 (country VARCHAR, premiere VARCHAR)"
  },
  {
    "answer": "SELECT channel FROM table_name_83 WHERE country = \"israel\"",
    "question_en": "Which channel comes out of Israel?",
    "question_th": "ช่องไหนที่ออกมาจากอิสราเอล?",
    "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_en": "What is the largest total when the rank is 6 and there's less than 1 gold?",
    "question_th": "ผลรวมที่ใหญ่ที่สุดเมื่ออันดับคือ 6 และมีน้อยกว่า 1 ทองคืออะไร?",
    "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_en": "What is the largest gold number when the total is less than 3, the rank is 5, and the silver is more than 1?",
    "question_th": "หมายเลขทองที่ใหญ่ที่สุดเมื่อรวมน้อยกว่า 3 อันดับคือ 5 และเงินมากกว่า 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_en": "What is the total of silver when gold is less than 0?",
    "question_th": "เงินรวมเมื่อทองน้อยกว่า 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_en": "Which team was the visitor when Milt Palacio (15) was the leading scorer?",
    "question_th": "ทีมไหนเป็นผู้ทำประตูในตอนที่มิลต์ ปาลาซิโอ (15) เป็นผู้ทำประตูนำ?",
    "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_en": "What is the home of the team with Carlos Boozer (27) as the leading scorer?",
    "question_th": "บ้านของทีมอะไรที่มี คาร์ลอส บูเซอร์ (27) เป็นผู้ทำประตูนำ?",
    "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_en": "What date was the game played with the Cavaliers at home and the Warriors visiting?",
    "question_th": "เกมนี้เล่นกับทีม Cavaliers ในบ้านและทีม Warriors ไปเยือนวันไหน?",
    "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_en": "What is the sum total of all the years with a bell that weighed 857 kilograms?",
    "question_th": "ผลรวมของทั้งปีที่มีระฆังหนัก 857 กิโลกรัมเป็นเท่าใด",
    "context": "CREATE TABLE table_name_40 (year INTEGER, weight__kg_ VARCHAR)"
  },
  {
    "answer": "SELECT MIN(enrollment) FROM table_name_3 WHERE team_nickname = \"pilots\"",
    "question_en": "What is the Enrollment for the Pilots?",
    "question_th": "การลงทะเบียนสำหรับนักบินคืออะไร?",
    "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_en": "What is the Enrollment for the Coyotes Founded in 1891?",
    "question_th": "การลงทะเบียนสำหรับโคโยตี้ที่ก่อตั้งขึ้นในปี พ.ศ. 2434 คืออะไร?",
    "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_en": "What Location has a Team Nickname called the Fighting Missionaries?",
    "question_th": "สถานที่ใดมีชื่อเล่นของทีมที่เรียกว่า 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_en": "The Loggers are part of what Primary Conference?",
    "question_th": "คนตัดไม้เป็นส่วนหนึ่งของการประชุมใหญ่ปฐมวัยรายการใด",
    "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_en": "What is the Enrollment at Whitman College Founded after 1859?",
    "question_th": "การลงทะเบียนที่ Whitman College ก่อตั้งขึ้นหลังปี 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_en": "What was the attendance when the opponent was virginia?",
    "question_th": "การเข้าร่วมเมื่อคู่ต่อสู้คือเวอร์จิเนียคืออะไร?",
    "context": "CREATE TABLE table_name_96 (attendance INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_8 WHERE opponent = \"at south carolina\"",
    "question_en": "What was the date when the opponent was at South carolina?",
    "question_th": "วันที่คู่ต่อสู้อยู่ที่เซาท์แคโรไลนาคือวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_8 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT MAX(attendance) FROM table_name_40 WHERE result = \"l 6-28\"",
    "question_en": "What was the highest attendance when the result was L 6-28?",
    "question_th": "ผู้เข้าร่วมสูงสุดเมื่อผลลัพธ์คือ 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_en": "What was the earliest week the Titans played at Ford Field?",
    "question_th": "สัปดาห์แรกสุดที่ Titans เล่นที่ 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_en": "When did the Titans play the Houston Texans at LP Field before Week 13?",
    "question_th": "Titans เล่น Houston Texans ที่ LP Field ก่อนสัปดาห์ที่ 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_en": "What is the highest average for a long less than 24, a GP-GS of 2-0, and less than 7 yards?",
    "question_th": "ค่าเฉลี่ยสูงสุดสำหรับความยาวน้อยกว่า 24, GP-GS 2-0 และน้อยกว่า 7 หลาคืออะไร?",
    "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_en": "What is the sum for the long that has 926 yards and an avg/g less than 84.2?",
    "question_th": "ผลรวมของความยาวที่มี 926 หลาและค่าเฉลี่ย/g น้อยกว่า 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_en": "What is the total number of avg/g with a long of 50, a gp-gs of 3-0, and 926 yards?",
    "question_th": "จำนวนเฉลี่ย/g ที่มีความยาว 50, gp-gs 3-0 และ 926 หลาเป็นเท่าใด",
    "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_en": "Which motorway is in brod-posavina county and has a scheduled completion in 2013?",
    "question_th": "มอเตอร์เวย์สายใดอยู่ในเขต brod-posavina และมีกำหนดแล้วเสร็จในปี 2556",
    "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_en": "Which built by HM Dockyard has September 1830 as the laid down?",
    "question_th": "ซึ่งสร้างโดยอู่ต่อเรือ HM Dockyard ได้มีการวางเมื่อเดือนกันยายน พ.ศ. 2373?",
    "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_en": "What is the name that has July 1823 as the Laid down, and portsmouth as the built by hm dockyard?",
    "question_th": "ชื่ออะไรที่มีชื่อว่า Laid down ในเดือนกรกฎาคม พ.ศ. 2366 และพอร์ตสมัธสร้างขึ้นโดยอู่ต่อเรือ hm?",
    "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_en": "What ordered has helena as the name?",
    "question_th": "คำสั่งอะไรที่ทำให้เฮเลนาเป็นชื่อ?",
    "context": "CREATE TABLE table_name_87 (ordered VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT ordered FROM table_name_73 WHERE name = \"algerine (2nd of name)\"",
    "question_en": "What ordered has algerine (2nd of name) as the name?",
    "question_th": "ลำดับอะไรมีอัลเจอรีน (ชื่อที่ 2) เป็นชื่อ?",
    "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_en": "What name has pembroke as the built by hm dockyard, and may 1825 as the laid down?",
    "question_th": "ชื่ออะไรคือเพมโบรกที่สร้างโดยอู่ต่อเรือ hm และชื่อเรียกชื่อเดือนพฤษภาคม ค.ศ. 1825 คืออะไร?",
    "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_en": "How many match values have points under 14 and 0 draws?",
    "question_th": "การจับคู่มีแต้มต่ำกว่า 14 และเสมอ 0 กี่แต้ม?",
    "context": "CREATE TABLE table_name_23 (match VARCHAR, points VARCHAR, draw VARCHAR)"
  },
  {
    "answer": "SELECT SUM(lost) FROM table_name_5 WHERE match < 10",
    "question_en": "What is the sum of losses for teams with under 10 matches?",
    "question_th": "ผลรวมของการสูญเสียสำหรับทีมที่มีการแข่งขันต่ำกว่า 10 นัดคือเท่าไร?",
    "context": "CREATE TABLE table_name_5 (lost INTEGER, match INTEGER)"
  },
  {
    "answer": "SELECT AVG(draw) FROM table_name_47 WHERE match > 10",
    "question_en": "What is the average number of draws for teams with more than 10 matches?",
    "question_th": "จำนวนเสมอโดยเฉลี่ยสำหรับทีมที่มีการแข่งขันมากกว่า 10 นัดคือเท่าใด?",
    "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_en": "What is the sum of points for teams with more than 10 matches, more than 0 draws, and 7 losses?",
    "question_th": "ผลรวมของคะแนนสำหรับทีมที่มีการแข่งขันมากกว่า 10 นัด เสมอมากกว่า 0 และแพ้ 7 เป็นเท่าใด",
    "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_en": "Which season's average was 37.5?",
    "question_th": "ค่าเฉลี่ยของฤดูกาลใดคือ 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_en": "How many ranks had marcin mroczek as the celebrity in a season more recent than 4?",
    "question_th": "Marcin mroczek เป็นคนดังในฤดูกาลล่าสุดมากกว่า 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_en": "What is the highest population in 1991 in Baden Bei Wien, and a 2007 population larger than 25,284?",
    "question_th": "ประชากรสูงสุดในปี 1991 ในเมือง Baden Bei Wien คือเท่าใด และในปี 2007 ประชากรมากกว่า 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 = \"“some lapse of time”\"",
    "question_en": "What is the Director for the episode titled “some lapse of time”?",
    "question_th": "ผู้กำกับสำหรับตอนที่ชื่อว่า \"บางเวลา\" คืออะไร?",
    "context": "CREATE TABLE table_name_85 (director VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT airdate FROM table_name_30 WHERE adapted_by = \"stanley miller\" AND title = \"“thirteen to centaurus”\"",
    "question_en": "What is the Airdate for the episode titled “thirteen to centaurus” Adapted by stanley miller?",
    "question_th": "แอร์เดทสำหรับตอนที่ชื่อว่า “สิบสามถึงเซนทอรัส” ดัดแปลงโดยสแตนลีย์ มิลเลอร์มีกำหนดออกอากาศเมื่อใด",
    "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_en": "What 2007 number when the million CZK shows operating revenues?",
    "question_th": "หมายเลขใดในปี 2550 เมื่อล้าน CZK แสดงรายได้จากการดำเนินงาน?",
    "context": "CREATE TABLE table_name_47 (million_czk VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_name_34 WHERE album = \"live love in london\"",
    "question_en": "What is the lowest Year with an Album that is live love in London?",
    "question_th": "ปีต่ำสุดที่มีอัลบั้มที่มีการแสดงความรักในลอนดอนคืออะไร?",
    "context": "CREATE TABLE table_name_34 (year INTEGER, album VARCHAR)"
  },
  {
    "answer": "SELECT us AS Christian FROM table_name_92 WHERE year = 1989",
    "question_en": "What is the U.S. Christian with a Year that is 1989?",
    "question_th": "คริสเตียนอเมริกันที่มีปี 1989 คืออะไร?",
    "context": "CREATE TABLE table_name_92 (us VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT theme FROM table_name_73 WHERE original_artist = \"fontella bass\"",
    "question_en": "What is the Theme when Fontella Bass was the original artist?",
    "question_th": "ธีมเมื่อ Fontella Bass เป็นศิลปินดั้งเดิมคืออะไร?",
    "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_en": "What is the Week # when the Beatles were the original artist and the theme was The Beatles?",
    "question_th": "สัปดาห์ที่ # คือวันที่วงเดอะบีเทิลส์เป็นศิลปินดั้งเดิมและมีธีมคือเดอะบีทเทิลส์",
    "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_en": "What is the total number of top-25 in the Masters Tournament, which has 0 top-10 and more than 0 top-5?",
    "question_th": "จำนวนผู้เข้า 25 อันดับแรกในการแข่งขัน Masters Tournament ซึ่งมี 0 อันดับแรก 10 และมากกว่า 0 อันดับแรกคือเท่าใด",
    "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_en": "What is the total top-25 of the U.S. Open, which has less than 7 cuts?",
    "question_th": "ยอดรวม 25 อันดับแรกของ US Open ซึ่งมีการตัดน้อยกว่า 7 ครั้งคือเท่าใด",
    "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_en": "What is the lowest top-5 of the tournament with less than 1 top-10 and less than 1 top-25?",
    "question_th": "อะไรคือ 5 อันดับแรกที่ต่ำที่สุดของทัวร์นาเมนต์ที่มีน้อยกว่า 1 อันดับแรก 10 และน้อยกว่า 1 อันดับแรก 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_en": "What is the highest top-25 of the tournament with less than 22 events and more than 1 top-10?",
    "question_th": "อะไรคือ 25 อันดับแรกสูงสุดของทัวร์นาเมนต์ที่มีน้อยกว่า 22 เหตุการณ์และมากกว่า 1 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_en": "What is the average amount of appearances for the Bronze Meals less than 0?",
    "question_th": "จำนวนการปรากฏตัวโดยเฉลี่ยสำหรับมื้ออาหารทองแดงที่น้อยกว่า 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_en": "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?",
    "question_th": "อันดับที่ 4 ทั้งหมด 3 นัด ได้ 3 เหรียญเงิน มากกว่า 0 เหรียญ และไม่มีเหรียญทอง คือเท่าไร?",
    "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_en": "How many years have HMOs been 27% and POS plans 18%?",
    "question_th": "HMO มี 27% และ POS วางแผน 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_en": "Which conventional plan has a POS of 13%?",
    "question_th": "แผนทั่วไปข้อใดมี POS 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_en": "How many years have a conventional plan of 7%?",
    "question_th": "มีแผนธรรมดา 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_en": "Which conventional plan has a POS plan of 21%?",
    "question_th": "แผนทั่วไปข้อใดมีแผน POS 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_en": "Which HMO has a conventional plan of 3% in 2005?",
    "question_th": "HMO ใดมีแผนปกติที่ 3% ในปี 2548",
    "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_en": "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?",
    "question_th": "มีกี่คนในคณะผู้บริหารที่มีคณะทำงานด้านการเกษตรน้อยกว่า 11 คน และคณะทำงานด้านอุตสาหกรรมและพาณิชยกรรม 3 คน โดยมีคณะทำงานด้านแรงงานน้อยกว่า 4 คน",
    "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_en": "Who read the unabridged book written by Gary Paulsen?",
    "question_th": "ใครอ่านหนังสือฉบับย่อที่เขียนโดย 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_en": "Who read the unabridged novel written by John D. Fitzgerald?",
    "question_th": "ใครอ่านนวนิยายฉบับย่อที่เขียนโดย 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_en": "In which week was the Theme 1960s?",
    "question_th": "ธีมปี 1960 เป็นสัปดาห์ใด",
    "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_en": "When the week # is listed as Hollywood, and the Theme is N/A, what song is listed?",
    "question_th": "เมื่อสัปดาห์ที่ # แสดงเป็นฮอลลีวูด และธีมเป็น N/A จะมีเพลงอะไรอยู่ในรายการ?",
    "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_en": "Which Theme has a Result of eliminated?",
    "question_th": "ธีมใดมีผลการตกรอบ?",
    "context": "CREATE TABLE table_name_95 (theme VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT song_choice FROM table_name_23 WHERE original_artist = \"bonnie tyler\"",
    "question_en": "Which song choice was originally performed by Bonnie Tyler?",
    "question_th": "เพลงใดที่ 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_en": "Which call sign, broadcast at less than 103.5MHz, has an ERP W of 50?",
    "question_th": "สัญญาณเรียกขานใดที่ออกอากาศด้วยความถี่ต่ำกว่า 103.5MHz มี ERP W เท่ากับ 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_en": "What is the frequency of the call sign licensed in Albany, New York?",
    "question_th": "ความถี่ของสัญญาณเรียกขานที่ได้รับอนุญาตในออลบานี นิวยอร์ก คือเท่าใด",
    "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_en": "Which Chart peak was Recorded on 2/19/69?",
    "question_th": "Chart พีคไหนที่บันทึกไว้ในวันที่ 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_en": "Which Chart peak has a Time of 3:11?",
    "question_th": "จุดสูงสุดของชาร์ตใดมีเวลา 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_en": "Which Catalogue has a Writer(s) of mark james?",
    "question_th": "แคตตาล็อกใดมีผู้เขียนของมาร์ค เจมส์?",
    "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_en": "Which Track has a Writer(s) of mac davis?",
    "question_th": "แทร็กใดที่มีผู้เขียนของ 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_en": "What is the name of the country when the television service is italia 1?",
    "question_th": "ชื่อประเทศอะไรเมื่อบริการโทรทัศน์คือ 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_en": "What is the HDTV when the content is general television?",
    "question_th": "HDTV คืออะไร เมื่อเนื้อหาเป็นโทรทัศน์ทั่วไป?",
    "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_en": "What is the Country when the Content was general television, and a Television service of rai 1?",
    "question_th": "เนื้อหาเป็นโทรทัศน์ทั่วไปและให้บริการโทรทัศน์ที่ไร่ 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_en": "What is the Language that has sky tg 24 active as the Television service?",
    "question_th": "ภาษาใดบ้างที่ sky tg 24 เปิดใช้งานเป็นบริการโทรทัศน์?",
    "context": "CREATE TABLE table_name_83 (language VARCHAR, television_service VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_42 WHERE record = \"1-0\"",
    "question_en": "What was the location of the fight when Sara McMann's record was 1-0?",
    "question_th": "สถานที่ชกเมื่อตอนที่ซาร่า แม็คมันน์ทำสถิติ 1-0 อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_42 (location VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_96 WHERE time = \"5:00\"",
    "question_en": "What was the record when there was a fight that lasted 5:00?",
    "question_th": "อะไรคือบันทึกเมื่อมีการต่อสู้ที่กินเวลา 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_en": "What is the method of resolution for the fight that had a time of 5:00 and a record of 5-0?",
    "question_th": "ไฟต์ที่เวลา 5.00 น. และสถิติ 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–3\"",
    "question_en": "What's the average Week with the Result l 23–3?",
    "question_th": "สัปดาห์โดยเฉลี่ยกับผลลัพธ์ l 23–3 คือเท่าใด",
    "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_en": "With the date of October 28, 1962, and the week greater than 4, what was the lowest attendance?",
    "question_th": "โดยวันที่ 28 ต.ค. 62 และสัปดาห์ที่มากกว่า 4 มีผู้เข้าร่วมน้อยที่สุดคือข้อใด",
    "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_en": "What Belarusian has a status of Raion a foundation of 1514 and a 2010 population of 8100?",
    "question_th": "ชาวเบลารุสคนใดมีสถานะ Raion เป็นรากฐานในปี 1514 และในปี 2010 มีประชากร 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_en": "Which model number has an order part number of TMSMT37BQX5LD?",
    "question_th": "หมายเลขรุ่นใดมีหมายเลขชิ้นส่วนการสั่งซื้อ 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_en": "Which model number has an order part number of TMDML44BKX5LD?",
    "question_th": "หมายเลขรุ่นใดมีหมายเลขคำสั่งซื้อ 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_en": "What is the socket related to the processor released on June 22, 2005, having a frequency of 1600MHz and voltage under 1.35V?",
    "question_th": "ซ็อกเก็ตที่เกี่ยวข้องกับโปรเซสเซอร์ที่เปิดตัวเมื่อวันที่ 22 มิถุนายน 2548 มีความถี่ 1600MHz และแรงดันไฟฟ้าต่ำกว่า 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_en": "What is the highest rank for PSV - FC Barcelona?",
    "question_th": "อันดับสูงสุดสำหรับ พีเอสวี - บาร์เซโลน่า คืออะไร?",
    "context": "CREATE TABLE table_name_64 (rank INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT SUM(rank) FROM table_name_89 WHERE name = \"peter schmeichel\"",
    "question_en": "What rank was Peter Schmeichel?",
    "question_th": "ปีเตอร์ ชไมเคิ่ลอยู่อันดับไหน?",
    "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_en": "What is the highest Super G that had an 11 Downhill and an overall less than 16?",
    "question_th": "Super G สูงสุดที่มี 11 ดาวน์ฮิลล์และคะแนนรวมน้อยกว่า 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_en": "What is the combined of the overalls less than 34?",
    "question_th": "ผลรวมของชุดหลวมๆ น้อยกว่า 34 คืออะไร?",
    "context": "CREATE TABLE table_name_82 (combined VARCHAR, overall INTEGER)"
  },
  {
    "answer": "SELECT combined FROM table_name_60 WHERE super_g = 14",
    "question_en": "What is the combined of the 14 Super G?",
    "question_th": "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_en": "What album had the reunion label in 2006?",
    "question_th": "อัลบั้มใดมีป้ายกำกับการรวมตัวใหม่ในปี 2549",
    "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_en": "Who was the artist for the album, Christmas under the reunion label with the guitar?",
    "question_th": "ใครคือศิลปินในอัลบั้ม Christmas ภายใต้ค่ายเพลงเรอูนียงกับกีตาร์?",
    "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_en": "What is the most recent year for an album listed with a piano credited?",
    "question_th": "ปีล่าสุดสำหรับอัลบั้มที่มีเครดิตเปียโนคือปีใด?",
    "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_en": "What is Volume:Issue, when Artist is Elton John, and when Weeks on Top is 4?",
    "question_th": "Volume:Issue คืออะไร เมื่อศิลปินคือ Elton John และเมื่อ Weeks on Top คือ 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_en": "What is the value in 2008-09 for the Autumn Gold event?",
    "question_th": "มูลค่าในปี 2551-52 สำหรับงาน Autumn Gold เป็นเท่าใด",
    "context": "CREATE TABLE table_name_9 (event VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(bronze) FROM table_name_89 WHERE total = 4 AND silver = 1",
    "question_en": "What is the total number of bronze medals of the nation with 4 total medals and 1 silver?",
    "question_th": "เหรียญทองแดงของประเทศทั้งหมดมีทั้งหมด 4 เหรียญ และ 1 เหรียญเงิน มีจำนวนเท่าไร?",
    "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_en": "What is the sum of silver medals of the nation Cuba, which has less than 0 gold?",
    "question_th": "ผลรวมเหรียญเงินของประเทศคิวบาซึ่งมีน้อยกว่า 0 เหรียญทองเป็นเท่าใด",
    "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_en": "What is the total weight of players who play the G position for the Los Angeles D-Fenders?",
    "question_th": "น้ำหนักรวมของผู้เล่นที่เล่นตำแหน่ง G ให้กับ 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_en": "What team does Bill Walker play for?",
    "question_th": "บิล วอล์คเกอร์เล่นให้กับทีมใด?",
    "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_en": "What was the lowest heat for Germany with a rank smaller than 9 for Mike Fenner and a time smaller than 13.52?",
    "question_th": "อะไรคือความร้อนต่ำสุดของเยอรมนีที่มีอันดับน้อยกว่า 9 สำหรับไมค์ เฟนเนอร์ และเวลาที่น้อยกว่า 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_en": "What is the lowest FA cup that has mohd faizal desa as the player, with a total greater than 0?",
    "question_th": "เอฟเอ คัพ ต่ำสุดที่มีโมฮัมหมัด ไฟซาล เดซา เป็นผู้เล่น โดยมีค่ารวมมากกว่า 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_en": "What is the lowest FA cup that has a league greater than 0, with a Malaysia cup greater than 5?",
    "question_th": "FA Cup ต่ำสุดที่มีลีกมากกว่า 0 กับ Malaysia Cup มากกว่า 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_en": "How many Malaysia Cups have a total less than 0?",
    "question_th": "มาเลเซียคัพมีกี่ถ้วยที่มีคะแนนรวมน้อยกว่า 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_en": "What is the average FA cup that has a league of 0, fahmi hatta as the player, with a Malaysia cup less than 0?",
    "question_th": "เอฟเอ คัพ โดยเฉลี่ยที่มีลีก 0, ฟาห์มี ฮัตตา เป็นผู้เล่น, โดยมาเลเซีย คัพ น้อยกว่า 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_en": "How many Malaysia Cups have 0 for the total with a league greater than 0?",
    "question_th": "มาเลเซียคัพมี 0 กี่ถ้วยสำหรับผลรวมที่มีลีกมากกว่า 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_en": "What is High Assists, when High Points is Keon Clark (19)?",
    "question_th": "High Assists คืออะไร เมื่อคะแนนสูงคือ 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_en": "What is Location Attendance, when High Assists is Alvin Williams (9)?",
    "question_th": "การเข้าร่วมตำแหน่งคืออะไร เมื่อ High Assist คือ 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_en": "What is High Points, when Location Attendance is Staples Center 18,964?",
    "question_th": "คะแนนสูงคืออะไร เมื่อผู้เข้าร่วมสถานที่คือ 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_en": "What is High Points, when Team is @ Phoenix?",
    "question_th": "High Points คืออะไร เมื่อทีมคือ @ 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_en": "What name has 100 w. pender st. as the address?",
    "question_th": "ชื่ออะไรมี100w. เพนเดอร์เซนต์ เป็นที่อยู่เหรอ?",
    "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_en": "How many floors have 207 w. hastings st. as the address?",
    "question_th": "207w.มีกี่ชั้นครับ. เฮสติ้งส์เซนต์ เป็นที่อยู่เหรอ?",
    "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_en": "What is the height m/ft where 207 w. hastings st. is the address?",
    "question_th": "ความสูง m/ft คือเท่าไร โดยที่ 207 w เฮสติ้งส์เซนต์ ที่อยู่คือ?",
    "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_en": "What is the completed list entry number more than 1356460?",
    "question_th": "หมายเลขรายการที่สมบูรณ์มากกว่า 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_en": "Which type has a list entry number more than 1356436, named Albion Congregational Church?",
    "question_th": "ประเภทใดมีหมายเลขรายการมากกว่า 1356436 ชื่อ 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_en": "What is the entry number on the list for Fairfield Moravian Church?",
    "question_th": "หมายเลขรายการของโบสถ์ Fairfield Moravian คืออะไร?",
    "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_en": "What was the Average Attendance during the Year in which there were 9 Home Games?",
    "question_th": "จำนวนผู้เข้าร่วมโดยเฉลี่ยในระหว่างปีที่มีเกมเหย้า 9 เกมเป็นเท่าใด",
    "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_en": "Before 2012, what was the greatest # of Home Games with a Canada - USA Rank of 52nd, and an Average Attendance less than 992?",
    "question_th": "ก่อนปี 2012 อะไรคืออันดับสูงสุดของเกมเหย้าที่มีแคนาดา - สหรัฐอเมริกาอยู่ในอันดับที่ 52 และมีผู้เข้าร่วมเฉลี่ยน้อยกว่า 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_en": "After the year 2011, when the Canada - USA Rank was 46th, what was the League Rank?",
    "question_th": "หลังจากปี 2011 เมื่ออันดับแคนาดา - สหรัฐอเมริกาอยู่ที่ 46 แล้วลีกอันดับคืออะไร?",
    "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_en": "What is Package/Option, when HDTV is no, when Language is Italian, and when Television service is cartello promozionale sky hd?",
    "question_th": "แพ็คเกจ/ตัวเลือกคืออะไร เมื่อ HDTV ไม่ใช่ เมื่อภาษาเป็นภาษาอิตาลี และเมื่อบริการโทรทัศน์เป็น cartello promozonale 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_en": "What is Country, when HDTV is yes, and when Content is cinema?",
    "question_th": "ประเทศคืออะไร เมื่อ HDTV เป็นใช่ และเมื่อเนื้อหาเป็นภาพยนตร์",
    "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_en": "What is HDTV, when Television service is cartello promozionale sky hd?",
    "question_th": "HDTV คืออะไร เมื่อบริการโทรทัศน์เป็น cartello promozonale 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_en": "What is Content, when Package/Option is sky cinema, and when Language is italian originale?",
    "question_th": "เนื้อหาคืออะไร เมื่อแพ็คเกจ/ตัวเลือกเป็นโรงภาพยนตร์บนท้องฟ้า และเมื่อภาษาเป็นต้นฉบับภาษาอิตาลี",
    "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_en": "What is the Venue with an Attendance that is larger than 6,938?",
    "question_th": "สถานที่จัดงานที่มีผู้เข้าร่วมมากกว่า 6,938 คนคืออะไร?",
    "context": "CREATE TABLE table_name_55 (venue VARCHAR, attendance INTEGER)"
  },
  {
    "answer": "SELECT date FROM table_name_51 WHERE opponent = \"hearts\"",
    "question_en": "What is the Date with an Opponent that is hearts?",
    "question_th": "เดทกับคู่ต่อสู้ที่เป็นหัวใจคืออะไร?",
    "context": "CREATE TABLE table_name_51 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_45 WHERE venue = \"n\"",
    "question_en": "What is the Result with a Venue that is n?",
    "question_th": "ผลลัพธ์ของสถานที่ที่เป็น 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_en": "Who was the Coat of Cash Wearing Celebrity in Episode 6?",
    "question_th": "ใครคือ Coat of Cash Wearing Celebrity ในตอนที่ 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_en": "What was the air date of episode 5?",
    "question_th": "ตอนที่ 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_en": "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?",
    "question_th": "มีจำนวนการแข่งขันมากที่สุดเมื่อมีน้อยกว่า 6 โพเดียม ซีรีส์นี้คือเรโนลต์ 2.0 ยูโรคัพ และมีการชนะมากกว่า 0 ครั้งคือเท่าใด",
    "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–6, 6–3, 2–6\"",
    "question_en": "Who were the Opponents in the final in the match with a Score in the final of 1–6, 6–3, 2–6?",
    "question_th": "ใครคือฝ่ายตรงข้ามในรอบชิงชนะเลิศของนัดที่มีสกอร์ในรอบชิงชนะเลิศ 1–6, 6–3, 2–6?",
    "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–6, 6–1\"",
    "question_en": "What Opponents in the final had a match in 1984 with a Score in the final of 7–6, 6–1?",
    "question_th": "ฝ่ายตรงข้ามคนใดในรอบชิงชนะเลิศที่แข่งขันกันในปี 1984 ด้วยสกอร์ในรอบชิงชนะเลิศ 7–6, 6–1?",
    "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_en": "How many years were they nominated for outstanding musical?",
    "question_th": "พวกเขาได้รับการเสนอชื่อเข้าชิงละครเพลงดีเด่นกี่ปี?",
    "context": "CREATE TABLE table_name_93 (year VARCHAR, nominee VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_24 WHERE opponent = \"arras paul arras\"",
    "question_en": "Where was the location for Arras Paul Arras?",
    "question_th": "ที่ตั้งของ 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_en": "Which royal house has the name huai?",
    "question_th": "ราชวงศ์ไหนชื่อห้วย?",
    "context": "CREATE TABLE table_name_88 (royal_house VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_52 WHERE title = \"marquis\"",
    "question_en": "Who has the title of marquis?",
    "question_th": "ใครมีบรรดาศักดิ์เป็นมาร์ควิส?",
    "context": "CREATE TABLE table_name_52 (name VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT royal_house FROM table_name_98 WHERE state = \"chu\"",
    "question_en": "Which royal house is in the state of chu?",
    "question_th": "ราชวงศ์ไหนอยู่ในสถานะชู?",
    "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_en": "Which state has a king named xiang?",
    "question_th": "รัฐใดมีกษัตริย์ชื่อเซียง?",
    "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_en": "What's the most recent week for the day of November 5, 1978?",
    "question_th": "สัปดาห์ล่าสุดของวันที่ 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_en": "What's the mean week number for November 12, 1978?",
    "question_th": "ตัวเลขสัปดาห์เฉลี่ยของวันที่ 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_en": "What's the mean week number when attendance was 63,263?",
    "question_th": "จำนวนสัปดาห์เฉลี่ยที่มีผู้เข้าร่วม 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_en": "What is the number of floors that have years under 2008 and were named Guinness Tower?",
    "question_th": "จำนวนชั้นที่มีปีต่ำกว่าปี 2008 และได้รับการตั้งชื่อว่า 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_en": "What is the sum of Year opened when steel was the material with a Span feet of 1476?",
    "question_th": "ผลรวมของปีที่เปิดเมื่อเหล็กเป็นวัสดุที่มีช่วงฟุตเท่ากับ 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_en": "What is the sum of Year opened when the span feet is more than 1247, and the spam metres is 384?",
    "question_th": "ผลรวมของปีที่เปิดเมื่อสแปนฟุตมากกว่า 1247 และมิเตอร์สแปมคือ 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_en": "What is average SiO 2, when Na 2 O is 7.53, and when Al 2 O 3 is less than 2.13?",
    "question_th": "SiO 2 โดยเฉลี่ยคือเท่าใด เมื่อ Na 2 O เท่ากับ 7.53 และเมื่อ Al 2 O 3 น้อยกว่า 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_en": "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?",
    "question_th": "2 O สูงสุดคืออะไร เมื่อ Na 2 O มากกว่า 1.87 เมื่อ Fe 2 O 3 มากกว่า 0.07 เมื่อวัตถุเป็น Ritual Disk และเมื่อ Al 2 O 3 น้อยกว่า 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_en": "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?",
    "question_th": "SiO 2 สูงสุดคืออะไร เมื่อ K 2 O มากกว่า 0.16 เมื่อ Fe 2 O 3 มากกว่า 0.16 และเมื่อ Na 2 O น้อยกว่า 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_en": "What is Aberdeen team's date of vacancy?",
    "question_th": "ทีมอเบอร์ดีนว่างวันที่เท่าไร?",
    "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_en": "What is Motherwell Team's manner of departure?",
    "question_th": "ลักษณะการจากไปของทีม Motherwell คืออะไร?",
    "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_en": "What is the date of appointment for the team with a resigned manner of departure and replaced by Sandy Clark?",
    "question_th": "วันที่ได้รับการแต่งตั้งให้ทีมโดยลาออกจากตำแหน่งและมีแซนดี้คลาร์กเข้ามาแทนที่คือเมื่อใด?",
    "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_en": "What manner of departure was Dick Advocaat replaced by?",
    "question_th": "Dick Advocaat ถูกแทนที่ด้วยรูปแบบการออกเดินทางแบบใด?",
    "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_en": "Which amount of lost had an against of more than 22 and 9 points?",
    "question_th": "แพ้จำนวนไหนมีแต้มต่อมากกว่า 22 และ 9 แต้ม?",
    "context": "CREATE TABLE table_name_30 (lost VARCHAR, against VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT SUM(points) FROM table_name_93 WHERE played < 12",
    "question_en": "What is the total amount of points when the played number was less than 12?",
    "question_th": "เมื่อจำนวนแต้มที่เล่นน้อยกว่า 12 แต้มรวมเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_93 (points INTEGER, played INTEGER)"
  },
  {
    "answer": "SELECT MAX(points) FROM table_name_69 WHERE difference = \"12\"",
    "question_en": "What is the largest points number where the difference is 12?",
    "question_th": "จำนวนคะแนนที่ใหญ่ที่สุดโดยที่ผลต่างคือ 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_en": "What is the total number of points where there were 3 losses and a played number bigger than 12?",
    "question_th": "จำนวนแต้มทั้งหมดที่มีการแพ้ 3 ครั้งและหมายเลขที่เล่นมากกว่า 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_en": "What was the winning score for the tournament where Garth Mulroy was the runner-up?",
    "question_th": "คะแนนชนะสำหรับทัวร์นาเมนต์ที่ Garth Mulroy เป็นรองชนะเลิศคือเท่าใด",
    "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_en": "Which tournament had a margin of victory of 6 strokes?",
    "question_th": "ทัวร์นาเมนต์ใดมีชัยชนะ 6 จังหวะ?",
    "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_en": "For the tournament played on 16 Jan 2011, what was the winning score?",
    "question_th": "ในการแข่งขันวันที่ 16 มกราคม พ.ศ. 2554 สกอร์ชนะเป็นอย่างไรบ้าง?",
    "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_en": "For the tournament ending with a margin of victory of 2 strokes, who was the runner(s)-up?",
    "question_th": "สำหรับทัวร์นาเมนต์ที่จบลงด้วยชัยชนะ 2 สโตรก ใครคือรองชนะเลิศ?",
    "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_en": "What was the winning score for the tournament where Garth Mulroy was the runner-up, and the margin of victory was 1 stroke?",
    "question_th": "คะแนนชนะของทัวร์นาเมนต์ที่ Garth Mulroy เป็นรองแชมป์คืออะไร และส่วนต่างของชัยชนะคือ 1 สโตรค",
    "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_en": "For the tournament ending with a margin of victory of 6 strokes, what was the winning score?",
    "question_th": "สำหรับทัวร์นาเมนท์ที่จบลงด้วยชัยชนะ 6 สโตรค ชนะคะแนนเท่าไหร่?",
    "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ão bento\" AND points > 1",
    "question_en": "How many Drawns have a Team of aa são bento and Points larger than 1?",
    "question_th": "มีทีม aa são bento และคะแนนมากกว่า 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_en": "What is the Drawn has an Against smaller than 20 and Points of 15?",
    "question_th": "Drawn คืออะไรที่มีแต้มต่อน้อยกว่า 20 และแต้ม 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_en": "How many Against has a Drawn smaller than 1, and a Lost smaller than 5?",
    "question_th": "มีไพ่เสมอน้อยกว่า 1 และแพ้น้อยกว่า 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_en": "what is the average Against has Drawn of 2, and a Played larger than 10?",
    "question_th": "ค่าเฉลี่ยต่อแต้มที่เสมอ 2 แต้มโดยเฉลี่ยคือเท่าไร และแต้มที่เล่นมากกว่า 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_en": "How many goals were there for Johan Cruyff when the rank's less than 3?",
    "question_th": "โยฮัน ครัฟฟ์ ทำได้กี่ประตูในตอนที่อันดับต่ำกว่า 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_en": "What is the highest against when the lost is 3 with less than 30 points?",
    "question_th": "แต้มสูงสุดเทียบกับอะไรเมื่อแพ้คือ 3 โดยมีคะแนนน้อยกว่า 30 แต้ม?",
    "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_en": "What is the average Played when the against is 51, and the drawn is more than 1?",
    "question_th": "ค่าเฉลี่ยการเล่นเมื่อต่อคือ 51 และเสมอมากกว่า 1 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_9 (played INTEGER, against VARCHAR, drawn VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_86 WHERE opponent = \"clemson\"",
    "question_en": "What is the result against Clemson?",
    "question_th": "ผลลัพธ์ของเคลมสันคืออะไร?",
    "context": "CREATE TABLE table_name_86 (result VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT MAX(games) FROM table_name_21 WHERE rank = 3",
    "question_en": "What is the number of Games for the player in Rank 3?",
    "question_th": "จำนวนเกมสำหรับผู้เล่นอันดับ 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_en": "With more than 69 Assists, what is Dejuan Collins' Rank?",
    "question_th": "ด้วยแอสซิสต์มากกว่า 69 ครั้ง อันดับของเดฮวน คอลลินส์อยู่ที่เท่าไร?",
    "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_en": "How many Assists for the Player with 13 Games and a Rank less than 3?",
    "question_th": "จำนวน Assists สำหรับผู้เล่นที่มี 13 เกมและอันดับน้อยกว่า 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_en": "What is the lowest number of uncommitted superdelegates for a state with more than 16 total and 2 for Hillary Clinton?",
    "question_th": "จำนวนต่ำสุดของผู้แทนระดับสูงที่ไม่มีข้อผูกมัดสำหรับรัฐที่มีทั้งหมดมากกว่า 16 คนและ 2 คนสำหรับฮิลลารี คลินตันคือเท่าใด",
    "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_en": "What Japanese prefecture has Ibaraki, Tsukuba?",
    "question_th": "จังหวัดใดของญี่ปุ่นที่มีอิบารากิ สึคุบะ?",
    "context": "CREATE TABLE table_name_15 (japanese VARCHAR, prefecture VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_name_71 WHERE japanese = \"八尾\"",
    "question_en": "What region has the symbol 八尾?",
    "question_th": "ภูมิภาคใดมีสัญลักษณ์ 八尾?",
    "context": "CREATE TABLE table_name_71 (region VARCHAR, japanese VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_80 WHERE competition = \"euro 2012 qualifier\"",
    "question_en": "Which venue held the Euro 2012 Qualifier?",
    "question_th": "สนามใดจัดการแข่งขันยูโร 2012 รอบคัดเลือก?",
    "context": "CREATE TABLE table_name_80 (venue VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_96 WHERE number > 34",
    "question_en": "What is the Year with a Number that is larger than 34?",
    "question_th": "ปีที่มีตัวเลขมากกว่า 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_en": "What is the date of the 4 strokes margin of victory?",
    "question_th": "ชัยชนะ 4 จังหวะคือวันที่เท่าไหร่?",
    "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_en": "What is the date of the 4 strokes margin of victory?",
    "question_th": "ชัยชนะ 4 จังหวะคือวันที่เท่าไหร่?",
    "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_en": "What Elite Eight had a Sweet Sixteen of 1 and a win % of .875?",
    "question_th": "Elite Eight ใดที่มี Sweet Six สิบหกจาก 1 และชนะ % ที่ .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_en": "What Round 32 had a # of bids smaller than 2?",
    "question_th": "รอบที่ 32 ใดมี # การเสนอราคาน้อยกว่า 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_en": "What is the average year that Idris Elba was nominated for or won an award?",
    "question_th": "ปีเฉลี่ยที่ Idris Elba ได้รับการเสนอชื่อเข้าชิงหรือได้รับรางวัลคือปีใด",
    "context": "CREATE TABLE table_name_19 (year INTEGER, actor VARCHAR)"
  },
  {
    "answer": "SELECT actor FROM table_name_94 WHERE year < 1971",
    "question_en": "What actor was nominated for or won an award before 1971?",
    "question_th": "นักแสดงคนใดที่ได้รับการเสนอชื่อเข้าชิงหรือได้รับรางวัลก่อนปี 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_en": "What is the mean vertical relief in feet when the rank is more than 40 and the location is va0573?",
    "question_th": "ค่าความโล่งใจในแนวตั้งเฉลี่ยเป็นฟุตเมื่ออันดับมากกว่า 40 และตำแหน่งคือ 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_en": "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?",
    "question_th": "ค่าความโล่งใจตามแนวตั้งเฉลี่ยเป็นฟุตเมื่อชื่อสูงสุดคือทาวเวอร์ใกล้กับทางเข้าถนนมี้ดวู้ดและระดับความสูงเป็นฟุตมากกว่า 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_en": "What is the total number of ranks when the Peak Name is Red Shirt Table?",
    "question_th": "อันดับสูงสุดเมื่อชื่อพีคคือโต๊ะเสื้อแดงมีกี่อันดับ?",
    "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_en": "What is the Original artist when the week number is top 9?",
    "question_th": "ศิลปิน Original คือใครเมื่อหมายเลขสัปดาห์อยู่อันดับ 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_en": "What is the Song choice when The Beatles were the original artist, with an order # of 4?",
    "question_th": "ข้อใดคือตัวเลือกเพลงในสมัยที่เดอะบีเทิลส์เป็นศิลปินดั้งเดิม โดยมีลำดับ # 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_en": "What is the Song choice when Elaine Paige was the Original artist?",
    "question_th": "ตัวเลือกเพลงเมื่อ Elaine Paige เป็นศิลปินต้นฉบับคืออะไร",
    "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_en": "What is the name of the Original artist when the week # is top 16 (8 men)?",
    "question_th": "ศิลปิน Original ชื่ออะไรเมื่อสัปดาห์ # อยู่ 16 อันดับแรก (8 คน)?",
    "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_en": "What is the Result when the order is # 4, and the week # is top 12?",
    "question_th": "ผลลัพธ์คืออะไรเมื่อคำสั่งซื้อคือ # 4 และสัปดาห์ # คือ 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_en": "What score has notts county as the home team?",
    "question_th": "น็อตต์สเคาน์ตี้เป็นเจ้าบ้านได้สกอร์เท่าไหร่?",
    "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_en": "Average round for rodney harrison p before 145?",
    "question_th": "รอบเฉลี่ยของร็อดนีย์ แฮร์ริสัน พี ก่อน 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_en": "Highest round 5 pick from western illinois?",
    "question_th": "เลือกรอบ 5 สูงสุดจากอิลลินอยส์ตะวันตก?",
    "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_en": "What is the 2011 when the 2010 shows grand slam tournaments?",
    "question_th": "ปี 2011 คืออะไรเมื่อปี 2010 มีการแข่งขันแกรนด์สแลม?",
    "context": "CREATE TABLE table_name_36 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_58 WHERE 2007 = \"a\" AND 2012 = \"sf\"",
    "question_en": "What is the 2011 when the 2007 is a, and the 2012 is sf?",
    "question_th": "2011 คืออะไรเมื่อ 2007 เป็น a และ 2012 เป็น sf",
    "context": "CREATE TABLE table_name_58 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_56 WHERE 2010 = \"8–4\"",
    "question_en": "What is the 2011 when the 2010 is 8–4?",
    "question_th": "2011 คืออะไรเมื่อ 2010 คือ 8–4",
    "context": "CREATE TABLE table_name_56 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2007 FROM table_name_70 WHERE 2010 = \"3r\"",
    "question_en": "What is the 2007 when the 2010 is 3r?",
    "question_th": "2007 คืออะไรเมื่อ 2010 เป็น 3r?",
    "context": "CREATE TABLE table_name_70 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2010 FROM table_name_87 WHERE 2009 = \"1r\" AND 2008 = \"1r\"",
    "question_en": "What is the 2010 when the 2009 is 1r, and a 2008 is 1r?",
    "question_th": "2010 คืออะไรเมื่อ 2009 คือ 1r และ 2008 คือ 1r",
    "context": "CREATE TABLE table_name_87 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_63 WHERE tournament = \"grand slam tournaments\"",
    "question_en": "What is the 2011 when the Tournament was the grand slam tournaments?",
    "question_th": "อะไรคือปี 2011 ที่ทัวร์นาเมนต์เป็นทัวร์นาเมนต์แกรนด์สแลม?",
    "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_en": "Which Height (cm) has a Position of d, and a Name of jeff hymanson?",
    "question_th": "ส่วนสูง (ซม.) ใดมีตำแหน่ง d และชื่อเจฟฟ์ ไฮแมนสัน",
    "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_en": "Which Name has a Height (cm) of 175 and a Birthplace of detroit, michigan",
    "question_th": "ชื่อใดมีส่วนสูง (ซม.) 175 และเป็นบ้านเกิดของดีทรอยต์ มิชิแกน",
    "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_en": "Which Position has a Name of john taft?",
    "question_th": "ตำแหน่งใดมีชื่อจอห์น แทฟท์?",
    "context": "CREATE TABLE table_name_17 (position VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_68 WHERE score = 67 - 68 = 135",
    "question_en": "What was the To par when the Score was 67-68=135?",
    "question_th": "อะไรคือพาร์ To เมื่อคะแนนอยู่ที่ 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_en": "From what Country is player K. J. Choi with a Score of 68-71=139?",
    "question_th": "ผู้เล่น KJ Choi มาจากประเทศใดด้วยคะแนน 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_en": "What Country Scored 66-69=135?",
    "question_th": "ประเทศใดได้คะแนน 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_en": "Can you tell me the highest Cargo traffic that has the Airport of barcelona airport, and the Aircraft movements smaller than 290,004?",
    "question_th": "คุณช่วยบอกฉันได้ไหมว่าปริมาณการขนส่งสินค้าสูงสุดที่มีสนามบินของสนามบินบาร์เซโลนาและการเคลื่อนย้ายเครื่องบินมีขนาดเล็กกว่า 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_en": "What place is in Australia with 9 or more holes?",
    "question_th": "สถานที่ใดในออสเตรเลียที่มี 9 หลุมขึ้นไป?",
    "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_en": "How many holes does Player Vijay Singh have?",
    "question_th": "ผู้เล่นวีเจย์ ซิงห์ มีกี่หลุม?",
    "context": "CREATE TABLE table_name_79 (hole VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(hole) FROM table_name_61 WHERE player = \"vijay singh\"",
    "question_en": "How many holes does Player Vijay Singh have?",
    "question_th": "ผู้เล่นวีเจย์ ซิงห์ มีกี่หลุม?",
    "context": "CREATE TABLE table_name_61 (hole VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(frequency_mhz) FROM table_name_95 WHERE call_sign = \"w233ag\"",
    "question_en": "On what frequency does W233AG broadcast?",
    "question_th": "W233AG ออกอากาศที่ความถี่ใด?",
    "context": "CREATE TABLE table_name_95 (frequency_mhz VARCHAR, call_sign VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_23 WHERE 2012 = \"garion weller\"",
    "question_en": "What position did Garion Weller hold in 2012?",
    "question_th": "Garion Weller ดำรงตำแหน่งอะไรในปี 2555",
    "context": "CREATE TABLE table_name_23 (position VARCHAR)"
  },
  {
    "answer": "SELECT 2014 FROM table_name_23 WHERE 2013 = \"jarrah rubinstein\"",
    "question_en": "Who held the same position in 2014 that Jarrah Rubinstein held in 2013?",
    "question_th": "ใครดำรงตำแหน่งเดียวกันกับที่ Jarrah Rubinstein ดำรงตำแหน่งในปี 2013 ในปี 2013?",
    "context": "CREATE TABLE table_name_23 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_73 WHERE position = \"male sports rep\"",
    "question_en": "Who held the Male Sports Rep position in 2011?",
    "question_th": "ใครดำรงตำแหน่งตัวแทนกีฬาชายในปี 2554?",
    "context": "CREATE TABLE table_name_73 (position VARCHAR)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_65 WHERE position = \"communications rep\"",
    "question_en": "Who held the Communications Rep position in 2011?",
    "question_th": "ใครดำรงตำแหน่งตัวแทนฝ่ายสื่อสารในปี 2554",
    "context": "CREATE TABLE table_name_65 (position VARCHAR)"
  },
  {
    "answer": "SELECT 2014 FROM table_name_82 WHERE 2012 = \"garion weller\"",
    "question_en": "Who held the same position in 2014 that Garion Weller held in 2014?",
    "question_th": "ใครดำรงตำแหน่งเดียวกับที่ Garion Weller ดำรงตำแหน่งในปี 2014 ในปี 2014?",
    "context": "CREATE TABLE table_name_82 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2014 FROM table_name_49 WHERE 2013 = \"danielle button\"",
    "question_en": "Who held the same position in 2014 that Danielle Button held in 2013?",
    "question_th": "ใครดำรงตำแหน่งเดียวกันกับที่ Danielle Button ดำรงตำแหน่งในปี 2013 ในปี 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_en": "At what Location was the match against Opponent of Mostapha Al-Turk lasting less than 2 Rounds?",
    "question_th": "การแข่งขันกับฝ่ายตรงข้ามของ Mostapha Al-Turk แข่งขันกันไม่ถึง 2 รอบที่สถานที่ใด",
    "context": "CREATE TABLE table_name_31 (location VARCHAR, round VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_23 WHERE method = \"tko (punches)\"",
    "question_en": "At what Location was the match Method TKO (punches)?",
    "question_th": "แมตช์วิธี TKO (ชก) ได้ที่จุดใด?",
    "context": "CREATE TABLE table_name_23 (location VARCHAR, method VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_67 WHERE result = \"bye\"",
    "question_en": "Who was the opponent of the Bye result?",
    "question_th": "คู่ต่อสู้ของผลบายคือใคร?",
    "context": "CREATE TABLE table_name_67 (opponent VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_5 WHERE week = 10",
    "question_en": "Who is the opponent in week 10?",
    "question_th": "คู่ต่อสู้ในสัปดาห์ที่ 10 คือใคร?",
    "context": "CREATE TABLE table_name_5 (opponent VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_53 WHERE opponent = \"new england patriots\"",
    "question_en": "How many people attended the game played with the New England Patriots as opponents?",
    "question_th": "มีกี่คนที่เข้าร่วมเกมนี้โดยเล่นกับทีม New England Patriots เป็นฝ่ายตรงข้าม",
    "context": "CREATE TABLE table_name_53 (attendance VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT MAX(place__posición_) FROM table_name_41 WHERE points__pts_ > 24 AND played__pj_ > 14",
    "question_en": "What was the top place with over 24 points and more than 14 played?",
    "question_th": "อันดับสูงสุดที่มีมากกว่า 24 แต้มและเล่นมากกว่า 14 แต้มคือที่ไหน?",
    "context": "CREATE TABLE table_name_41 (place__posición_ INTEGER, points__pts_ VARCHAR, played__pj_ VARCHAR)"
  },
  {
    "answer": "SELECT SUM(points__pts_) FROM table_name_37 WHERE place__posición_ > 8",
    "question_en": "What is the sum of all points for places above 8?",
    "question_th": "คะแนนรวมของคะแนนทั้งหมดที่มากกว่า 8 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_37 (points__pts_ INTEGER, place__posición_ INTEGER)"
  },
  {
    "answer": "SELECT AVG(played__pj_) FROM table_name_18 WHERE place__posición_ = 2 AND lost__pp_ > 4",
    "question_en": "What is the average number played for place 2 and more than 4 lost?",
    "question_th": "จำนวนเฉลี่ยที่เล่นสำหรับอันดับที่ 2 และมากกว่า 4 ที่แพ้คือเท่าไร?",
    "context": "CREATE TABLE table_name_18 (played__pj_ INTEGER, place__posición_ VARCHAR, lost__pp_ VARCHAR)"
  },
  {
    "answer": "SELECT MAX(points__pts_) FROM table_name_53 WHERE team__equipo_ = \"orion\" AND lost__pp_ > 4",
    "question_en": "What is the largest number of points for Orion with more than 4 losses?",
    "question_th": "Orion ได้คะแนนมากที่สุดโดยแพ้มากกว่า 4 ครั้งคือเท่าไร?",
    "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–21\" AND date = \"29 may\"",
    "question_en": "What is the Time when the Set 2 is 25–21, on 29 may?",
    "question_th": "เซตที่ 2 คือวันที่ 29 พ.ค. 25-21 เมื่อไหร่?",
    "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–25\" AND set_1 = \"25–21\"",
    "question_en": "What is the Set 3 when the Set 2 is 21–25, and a Set 1 is 25–21?",
    "question_th": "ชุดที่ 3 คืออะไรเมื่อชุดที่ 2 คือ 21–25 และชุดที่ 1 คือ 25–21",
    "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–25\" AND set_2 = \"25–20\"",
    "question_en": "What is the Total when the Set 3 is 22–25, and a Set 2 is 25–20?",
    "question_th": "ผลรวมคืออะไรเมื่อเซต 3 คือ 22–25 และเซต 2 คือ 25–20",
    "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–25\"",
    "question_en": "What is the Set 3 on 30 may, and a Set 1 is 20–25?",
    "question_th": "ชุดที่ 3 วันที่ 30 พ.ค. คืออะไร และชุดที่ 1 คือ 20–25",
    "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–21\" AND score = \"3–0\" AND time = \"11:00\"",
    "question_en": "What is the Date when the Set 1 is 25–21, and the Score is 3–0, and the Time is 11:00?",
    "question_th": "วันที่คือวันที่เซต 1 คือ 25–21 และสกอร์คือ 3–0 และเวลาคือ 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–25\"",
    "question_en": "What is the Date when the Set 2 is 13–25?",
    "question_th": "วันที่เท่าไหร่ที่ชุดที่ 2 คือ 13–25?",
    "context": "CREATE TABLE table_name_32 (date VARCHAR, set_2 VARCHAR)"
  },
  {
    "answer": "SELECT away_captain FROM table_name_36 WHERE venue = \"old trafford\"",
    "question_en": "What is the Away captain with a Venue that is old trafford?",
    "question_th": "กัปตันทีมเยือนกับสนามโอลด์แทรฟฟอร์ดคืออะไร?",
    "context": "CREATE TABLE table_name_36 (away_captain VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_36 WHERE venue = \"oval\"",
    "question_en": "What is the Date with a Venue that is oval?",
    "question_th": "วันที่สถานที่จัดงานเป็นรูปวงรีคืออะไร?",
    "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_en": "What is the Highest Points for Team Adet where the Draw is less than 6?",
    "question_th": "คะแนนสูงสุดสำหรับทีม Adet โดยที่เสมอน้อยกว่า 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_en": "What is the highest games Played where the Place is 10 and Points are less than 17?",
    "question_th": "เกมใดที่เล่นสูงสุดโดยที่อันดับ 10 และคะแนนน้อยกว่า 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_en": "What is the average for games Lost where the Points are 25 and games Played are more than 18?",
    "question_th": "ค่าเฉลี่ยของเกมที่แพ้โดยที่แต้มอยู่ที่ 25 และเกมที่เล่นมากกว่า 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_en": "What is the average for Draw games where Played games is more than 18?",
    "question_th": "ค่าเฉลี่ยของเกม Draw ที่เกมที่เล่นมากกว่า 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_en": "What is the largest byes with lost games of 4 and Ballarat FL of Melton and the against less than 1819?",
    "question_th": "การบายที่ใหญ่ที่สุดโดยแพ้ 4 เกมและ Ballarat FL ของ Melton และต่อน้อยกว่า 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_en": "How many total wins does Ballarat FL of East point have when the against is greater than 1000?",
    "question_th": "บัลลารัต เอฟแอล จากอีสต์พอยท์มีชัยชนะทั้งหมดกี่แต้มเมื่อผลการแข่งขันมากกว่า 1,000 แต้ม?",
    "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_en": "How many total losses does the team have with an against of 2195 and the draws were greater than 0?",
    "question_th": "ทีมแพ้ทั้งหมดกี่ครั้งโดยเทียบกับ 2195 และเสมอมากกว่า 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_en": "What is the value in 2009 corresponding to Career Statistics in 2003?",
    "question_th": "ค่าในปี 2552 ที่สอดคล้องกับสถิติอาชีพในปี 2546 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_96 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2006 FROM table_name_70 WHERE career_w_l = \"career statistics\"",
    "question_en": "What is the value in 2006 when Career Statistics is in Career W-L?",
    "question_th": "มูลค่าในปี 2549 เมื่อ Career Statistics อยู่ใน Career WL เป็นเท่าใด",
    "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_en": "What is the value for Career W-L for the Grand Slam Tournaments?",
    "question_th": "Career WL มีมูลค่าเท่าไรสำหรับการแข่งขัน Grand Slam?",
    "context": "CREATE TABLE table_name_83 (career_w_l VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2008 FROM table_name_77 WHERE tournament = \"year\"",
    "question_en": "What is the value in 2008 when the value for Tournament is year?",
    "question_th": "มูลค่าของทัวร์นาเมนท์ในปี 2551 คือปีเท่าใด",
    "context": "CREATE TABLE table_name_77 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2006 FROM table_name_72 WHERE 2009 = \"0\" AND tournament = \"runner-ups\"",
    "question_en": "What is the value in 2006 when the value for 2009 is 0 with runner-ups for tournament?",
    "question_th": "ค่าในปี 2549 เป็นเท่าใดเมื่อค่าสำหรับปี 2552 เป็น 0 โดยมีรองชนะเลิศสำหรับทัวร์นาเมนต์?",
    "context": "CREATE TABLE table_name_72 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2005 FROM table_name_98 WHERE 2009 = \"a\" AND 2000 = \"a\"",
    "question_en": "What is the value for 2005 when A is 2009 and 2000?",
    "question_th": "ค่าสำหรับปี 2548 เมื่อ A คือปี 2552 และ 2543 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_98 (Id VARCHAR)"
  },
  {
    "answer": "SELECT opponent_in_the_final FROM table_name_76 WHERE partner = \"gastón etlis\"",
    "question_en": "What Opponent in the final had a Partner of Gastón Etlis?",
    "question_th": "คู่ต่อสู้ของ Gastón 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_en": "What is the earliest Date David Adams played on a Clay Surface with Brett Steven as Partner?",
    "question_th": "วันที่ David Adams เล่นบน Clay Surface เร็วที่สุดคือวันที่ใดโดยมี Brett Steven เป็นคู่หู",
    "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–3, 6–7 (5–7) , 7–6 (7–5)\"",
    "question_en": "Who was David Adams partner on the match played on Clay Surface with a Score in the final of 6–3, 6–7 (5–7) , 7–6 (7–5)?",
    "question_th": "ใครคือคู่หูของ David Adams ในการแข่งขันที่เล่นบน Clay Surface ด้วยคะแนนในรอบสุดท้ายของ 6–3, 6–7 (5–7) , 7–6 (7–5)",
    "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_en": "Who were the Opponents when Liga Dekmeijere had Alicja Rosolska as a Partner?",
    "question_th": "ใครคือฝ่ายตรงข้ามเมื่อ Liga Dekmeijere มี Alicja Rosolska เป็นหุ้นส่วน?",
    "context": "CREATE TABLE table_name_59 (opponents VARCHAR, partner VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_16 WHERE surface = \"hard (i)\"",
    "question_en": "What was the Outcome of the match played on Hard (i) Surface?",
    "question_th": "ผลลัพธ์ของแมตช์ที่เล่นบน 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_en": "What was the Outcome of the match with Partner Kateryna Bondarenko?",
    "question_th": "ผลการแข่งขันกับคู่หู Kateryna Bondarenko เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_84 (outcome VARCHAR, partner VARCHAR)"
  },
  {
    "answer": "SELECT song_choice FROM table_name_1 WHERE theme = \"1960s\"",
    "question_en": "What is the Song choice with a Theme that is 1960s?",
    "question_th": "ข้อใดคือตัวเลือกเพลงที่มีธีมเป็นช่วงปี 1960",
    "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_en": "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?",
    "question_th": "คุณช่วยบอกฉันถึงนักแข่งร่วมที่มีปีที่เล็กกว่าปี 2012 และรอบที่เล็กกว่า 161 และตำแหน่งของ dnf และหมายเลข 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_en": "Can you tell me the total number of Laps that has the Team of wps racing?",
    "question_th": "คุณช่วยบอกจำนวนรอบทั้งหมดที่มีทีมแข่ง wps หน่อยได้ไหม?",
    "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_en": "How many people live where there are 118% of people have phones?",
    "question_th": "มีกี่คนที่อาศัยอยู่ในที่ที่มีโทรศัพท์ถึง 118%?",
    "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_en": "What percent of the population has phone in Russia?",
    "question_th": "ประชากรกี่เปอร์เซ็นต์ที่มีโทรศัพท์ในรัสเซีย",
    "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_en": "What percent is 327,577,529 people with phones in June 2013?",
    "question_th": "327,577,529 คนที่มีโทรศัพท์ในเดือนมิถุนายน 2556 เป็นกี่เปอร์เซ็นต์",
    "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_en": "How many mobile phones were there as of April 2013?",
    "question_th": "ณ เดือนเมษายน 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_en": "How many silver medals were awarded to the Nation with less than 2 gold, more than 6 bronze and a rank higher than 5?",
    "question_th": "ประเทศชาติมีเหรียญเงินน้อยกว่า 2 เหรียญทอง มากกว่า 6 เหรียญทองแดง และมีอันดับสูงกว่า 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_en": "How many gold medals were awarded to teams ranked higher than 19?",
    "question_th": "ทีมที่มีอันดับสูงกว่า 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_en": "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?",
    "question_th": "จำนวนเหรียญทองสูงสุดที่มอบให้กับทีมที่มีเงินมากกว่า 9 เหรียญเงิน 7 เหรียญทองแดง และมากกว่า 13 เหรียญรวมคือเท่าใด",
    "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_en": "What is the lowest Muslim (% of Total population) of a year after 2011?",
    "question_th": "มุสลิมที่ต่ำที่สุด (% ของประชากรทั้งหมด) คือเท่าใดในหนึ่งปีหลังจากปี 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_en": "What shows for 1997 when 1987 is 2r?",
    "question_th": "อะไรแสดงให้เห็นในปี 1997 เมื่อปี 1987 เป็น 2r?",
    "context": "CREATE TABLE table_name_46 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1993 FROM table_name_6 WHERE 1991 = \"grand slams\"",
    "question_en": "What shows for 1993 when 1991 is grand slams?",
    "question_th": "อะไรแสดงให้เห็นในปี 1993 เมื่อปี 1991 เป็นแกรนด์สแลม?",
    "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_en": "What shows for 1987 when 1995 shows 1r, 1986 is a, and 1998 is sf?",
    "question_th": "อะไรแสดงให้เห็นในปี 1987 เมื่อปี 1995 แสดง 1r, 1986 คือ a และ 1998 คือ sf",
    "context": "CREATE TABLE table_name_47 (Id VARCHAR)"
  },
  {
    "answer": "SELECT away FROM table_name_5 WHERE date = \"2008-07-18\"",
    "question_en": "Which away game was played on 2008-07-18?",
    "question_th": "เกมเยือนใดที่เล่นในวันที่ 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_en": "What away game had a time of 10:00?",
    "question_th": "เกมเยือนเกมใดมีเวลา 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_en": "What time was the away game played against the High Park Demons?",
    "question_th": "เกมเยือนเล่นกับ ไฮปาร์ค เดมอนส์ กี่โมง?",
    "context": "CREATE TABLE table_name_35 (time VARCHAR, away VARCHAR)"
  },
  {
    "answer": "SELECT ground FROM table_name_22 WHERE score = \"62-69\"",
    "question_en": "Where was the game played the ended with a score of 62-69?",
    "question_th": "จบเกมไปที่ไหนด้วยสกอร์ 62-69?",
    "context": "CREATE TABLE table_name_22 (ground VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_39 WHERE away = \"toronto eagles\"",
    "question_en": "When did the team play an away game against the Toronto Eagles?",
    "question_th": "ทีมเล่นเกมเยือนกับโตรอนโต อีเกิลส์ เมื่อไร?",
    "context": "CREATE TABLE table_name_39 (date VARCHAR, away VARCHAR)"
  },
  {
    "answer": "SELECT league_a FROM table_name_30 WHERE years = \"1908–1928\"",
    "question_en": "What is the League a for 1908–1928?",
    "question_th": "ลีกเอสำหรับฤดูกาล 1908–1928 คืออะไร?",
    "context": "CREATE TABLE table_name_30 (league_a VARCHAR, years VARCHAR)"
  },
  {
    "answer": "SELECT years FROM table_name_64 WHERE total = \"395 (0)\"",
    "question_en": "What years have a total of 395 (0)?",
    "question_th": "ปีไหนมีทั้งหมด 395 (0)?",
    "context": "CREATE TABLE table_name_64 (years VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT league_cup FROM table_name_40 WHERE years = \"1947–1958\"",
    "question_en": "What is the League Cup for 1947–1958?",
    "question_th": "ลีกคัพฤดูกาล 1947–1958 คืออะไร?",
    "context": "CREATE TABLE table_name_40 (league_cup VARCHAR, years VARCHAR)"
  },
  {
    "answer": "SELECT total FROM table_name_89 WHERE years = \"1926–1938\"",
    "question_en": "What is the Total for 1926–1938?",
    "question_th": "ยอดรวมสำหรับปี 1926–1938 คืออะไร?",
    "context": "CREATE TABLE table_name_89 (total VARCHAR, years VARCHAR)"
  },
  {
    "answer": "SELECT total FROM table_name_26 WHERE years = \"1953–1964\"",
    "question_en": "What is the Total for 1953–1964?",
    "question_th": "ยอดรวมสำหรับปี 1953–1964 เป็นเท่าใด",
    "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_en": "Which final score had a surface of hard (i) on October 22, 2000?",
    "question_th": "คะแนนสุดท้ายใดที่มีพื้นผิวแข็ง (i) เมื่อวันที่ 22 ตุลาคม พ.ศ. 2543",
    "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_en": "Which tournament had an outcome of winner, a hard surface, and happened on August 26, 2006?",
    "question_th": "ทัวร์นาเมนต์ใดมีผลลัพธ์เป็นผู้ชนะ พื้นผิวแข็ง และเกิดขึ้นเมื่อวันที่ 26 สิงหาคม พ.ศ. 2549",
    "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_en": "Which date had the final opponent of Iva Majoli?",
    "question_th": "คู่ต่อสู้คนสุดท้ายของ 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_en": "On September 30, 1979, in a week before week 8, what was the result?",
    "question_th": "วันที่ 30 กันยายน 2522 หนึ่งสัปดาห์ก่อนสัปดาห์ที่ 8 ผลลัพธ์เป็นอย่างไร",
    "context": "CREATE TABLE table_name_71 (result VARCHAR, week VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT AVG(attendance) FROM table_name_61 WHERE week = 2",
    "question_en": "What was the average attendance in week 2?",
    "question_th": "ผู้เข้าร่วมโดยเฉลี่ยในสัปดาห์ที่ 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_en": "What is the sum of tonnage with a time at 00:10 and less than 42 casualties?",
    "question_th": "ผลรวมของระวาง ณ เวลา 00:10 น. และมีผู้เสียชีวิตน้อยกว่า 42 รายเป็นเท่าใด",
    "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_en": "Which Opponent had a Win as Res and a Time of 1:10?",
    "question_th": "ฝ่ายตรงข้ามคนใดชนะด้วยเวลา 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_en": "How many games that ended in a draw were played by a team with more than 15 total games?",
    "question_th": "มีกี่เกมที่จบลงด้วยผลเสมอที่เล่นโดยทีมที่มีเกมทั้งหมดมากกว่า 15 เกม?",
    "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_en": "How many pages does the edition with a volume # smaller than 8 and an ISBM of 1-40122-892-5 have?",
    "question_th": "ฉบับที่มีเล่ม # น้อยกว่า 8 และ ISBM 1-40122-892-5 มีกี่หน้า",
    "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_en": "What is the title of the edition with more than 128 pages and a volume # of 5?",
    "question_th": "ชื่อเรื่องของฉบับที่มีมากกว่า 128 หน้าและมีเล่ม # 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_en": "How many pages does the ISBN 1-40122-328-1 have?",
    "question_th": "ISBN 1-40122-328-1 มีกี่หน้า",
    "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_en": "What position has a height (cm) greater than 180, and brian lawton as the name?",
    "question_th": "ตำแหน่งใดที่มีความสูง (ซม.) มากกว่า 180 และมีชื่อ Brian Lawton?",
    "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_en": "What is the lowest jersey # that has evergreen park, illinois as the birthplace, with a weight (km) greater than 86?",
    "question_th": "หมายเลขเสื้อต่ำสุด # ที่มีสวนสาธารณะเอเวอร์กรีน รัฐอิลลินอยส์ เป็นแหล่งกำเนิดคืออะไร โดยมีน้ำหนัก (กม.) มากกว่า 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_en": "How many lost stats have a played number of less than 8?",
    "question_th": "สถิติที่เสียไปมีกี่สถิติที่เล่นน้อยกว่า 8?",
    "context": "CREATE TABLE table_name_1 (lost VARCHAR, played INTEGER)"
  },
  {
    "answer": "SELECT MAX(lost) FROM table_name_36 WHERE difference = \"- 19\"",
    "question_en": "What is the largest lost stat when the difference is - 19?",
    "question_th": "สถิติที่เสียไปมากที่สุดเมื่อผลต่างคือ - 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_en": "How many positions have an against of less than 27, and a played number of less than 8?",
    "question_th": "มีกี่ตำแหน่งที่มีแต้มต่อน้อยกว่า 27 และแต้มที่เล่นน้อยกว่า 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_en": "What is Muzzle energy, when Cartridge is .375 remington ultra magnum?",
    "question_th": "พลังงานตะกร้อคืออะไรเมื่อคาร์ทริดจ์เป็น. 375 เรมิงตันอัลตร้าแมกนัม?",
    "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_en": "What is Source, when Cartridge is .375 remington ultra magnum?",
    "question_th": "Source คืออะไร เมื่อตลับหมึกคือ .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_en": "What is Source, when Cartridge is .375 remington ultra magnum?",
    "question_th": "Source คืออะไร เมื่อตลับหมึกคือ .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_en": "What is Muzzle energy, when Source is hornady?",
    "question_th": "พลังงาน Muzzle คืออะไรเมื่อ Source มีเขาเขา?",
    "context": "CREATE TABLE table_name_16 (muzzle_energy VARCHAR, source VARCHAR)"
  },
  {
    "answer": "SELECT bullet_weight FROM table_name_99 WHERE source = \"hornady\"",
    "question_en": "What is Bullet weight, when Source is hornady?",
    "question_th": "น้ำหนัก Bullet คืออะไรเมื่อ Source มีเขา?",
    "context": "CREATE TABLE table_name_99 (bullet_weight VARCHAR, source VARCHAR)"
  },
  {
    "answer": "SELECT format FROM table_name_72 WHERE catalog = \"vcrdx 106\"",
    "question_en": "Which Format has a Catalog of vcrdx 106?",
    "question_th": "รูปแบบใดมีแคตตาล็อก 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_en": "Which Region has a Catalog of magik muzik 806-5?",
    "question_th": "ภูมิภาคใดมีแคตตาล็อกของ 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_en": "Which Date has a Catalog of vcrt 106?",
    "question_th": "วันที่ใดมีแคตตาล็อก 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_en": "What pick was play Jason Webb?",
    "question_th": "เจสัน เวบบ์ เลือกเล่นอะไร?",
    "context": "CREATE TABLE table_name_31 (pick INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_27 WHERE pick > 7",
    "question_en": "Which colleges have a pick above 7?",
    "question_th": "วิทยาลัยใดบ้างที่มีตัวเลือกมากกว่า 7?",
    "context": "CREATE TABLE table_name_27 (college VARCHAR, pick INTEGER)"
  },
  {
    "answer": "SELECT COUNT(pick) FROM table_name_62 WHERE player = \"jason webb\"",
    "question_en": "How many teams picked Jason Webb?",
    "question_th": "มีกี่ทีมที่เลือก 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_en": "What is the Total Tax Revenue that has an n.a. Stamp Duty Reserve Tax in the years 1995-96?",
    "question_th": "รายได้ภาษีรวมที่มีภาษีสำรองอากรแสตมป์ในปี 2538-39 เป็นเท่าใด",
    "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_en": "What was the lowest Attendance on 8 October 1986?",
    "question_th": "จำนวนผู้เข้าร่วมต่ำสุดในวันที่ 8 ตุลาคม พ.ศ. 2529 คือเท่าใด",
    "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_en": "What was the result when Dundee were the Opponent at Venue A on 6 September 1986?",
    "question_th": "ผลลัพธ์คืออะไรเมื่อดันดีเป็นฝ่ายตรงข้ามที่สถานที่ A เมื่อวันที่ 6 กันยายน พ.ศ. 2529?",
    "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_en": "What position did the player play who weighed less thna 91 kg and was born on March 5, 1977?",
    "question_th": "นักเตะน้ำหนักน้อยกว่า 91 กิโลกรัม และเกิดวันที่ 5 มีนาคม พ.ศ. 2520 เล่นตำแหน่งใด?",
    "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_en": "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?",
    "question_th": "จำนวนถ้วยรางวัล FA ของนักเตะนีล เกรย์สัน ที่ได้ถ้วย FA มากกว่า 2 ถ้วยและลีกมากกว่า 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_en": "What is the sum of FA cups of club Stalybridge Celtic, which has more than 0 FA trophies and a total less than 20?",
    "question_th": "ผลรวมของเอฟเอ คัพ ของสโมสรสตาลี่ย์บริดจ์ เซลติก ซึ่งมีถ้วยรางวัลเอฟเอมากกว่า 0 ถ้วยและรวมน้อยกว่า 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_en": "What is the average total of halifax town club, which has a league less than 30 and more than 3 FA cups?",
    "question_th": "ค่าเฉลี่ยรวมของแฮลิแฟกซ์ทาวน์คลับซึ่งมีลีกน้อยกว่า 30 และมากกว่า 3 เอฟเอคัพเป็นเท่าใด",
    "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_en": "What was the score of the match against roger federer on April 3, 2006?",
    "question_th": "แมตช์กับ โรเจอร์ เฟเดอเรอร์ เมื่อวันที่ 3 เมษายน 2549 ทำได้กี่คะแนน?",
    "context": "CREATE TABLE table_name_44 (score VARCHAR, opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_78 WHERE opponent = \"andy roddick\"",
    "question_en": "What was the outcome of the match against andy roddick?",
    "question_th": "ผลการแข่งขันกับแอนดี้ ร็อดดิกเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_78 (outcome VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT AVG(week) FROM table_name_8 WHERE date = \"october 8, 1950\"",
    "question_en": "What average week has october 8, 1950 as the date?",
    "question_th": "สัปดาห์ใดโดยเฉลี่ยที่มีวันที่ 8 ตุลาคม 1950?",
    "context": "CREATE TABLE table_name_8 (week INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(week) FROM table_name_89 WHERE opponent = \"pittsburgh steelers\"",
    "question_en": "How many weeks have pittsburgh steelers as the opponent?",
    "question_th": "พิตต์สเบิร์ก สตีลเลอร์ส เป็นคู่แข่งกันกี่สัปดาห์?",
    "context": "CREATE TABLE table_name_89 (week VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT SUM(week) FROM table_name_9 WHERE result = \"l 3-17\"",
    "question_en": "How many weeks have l 3-17 as the result?",
    "question_th": "ผลลัพธ์ของ l 3-17 คือกี่สัปดาห์?",
    "context": "CREATE TABLE table_name_9 (week INTEGER, result VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_89 WHERE opponent = \"washington redskins\"",
    "question_en": "What attendance has Washington redskins as the opponent?",
    "question_th": "วอชิงตันอินเดียนแดงเป็นคู่ต่อสู้เข้าร่วมอะไรบ้าง?",
    "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_en": "Which Model number has a Frequency of 2000mhz and a Voltage of 0.75-1.2?",
    "question_th": "หมายเลขรุ่นใดมีความถี่ 2000mhz และแรงดันไฟฟ้า 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_en": "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?",
    "question_th": "Multi 1 ตัวใดมีความถี่ 2300mhz และวันที่วางจำหน่ายในไตรมาสที่ 3 ปี 2008 และหมายเลขรุ่น 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_en": "What kind of Voltage has a Frequency of 2000mhz, and a Release date in q3 2008?",
    "question_th": "แรงดันไฟฟ้าประเภทใดที่มีความถี่ 2,000mhz และวันที่วางจำหน่ายในไตรมาสที่ 3 ปี 2551",
    "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_en": "WHat kind of L2 cache has a Model number of turion x2 ultra zm-85?",
    "question_th": "แคช L2 ประเภทใดที่มีหมายเลขรุ่น 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_en": "Which Socket has a Frequency of 2200mhz, and a Release date on june 4, 2008?",
    "question_th": "ซ็อกเก็ตใดที่มีความถี่ 2200mhz และวันที่วางจำหน่ายในวันที่ 4 มิถุนายน 2551",
    "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_en": "What kind of Socket has a Order part number of tmrm72dam22gg?",
    "question_th": "Socket แบบไหนมี Order part number 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_en": "What is the Birthdate of raymond bonney?",
    "question_th": "วันเกิดของ เรย์มอนด์ บอนนี่ คืออะไร?",
    "context": "CREATE TABLE table_name_20 (birthdate VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_30 WHERE birthplace = \"northfield, minnesota\"",
    "question_en": "What is the Team for the player born in northfield, minnesota?",
    "question_th": "ทีมสำหรับผู้เล่นที่เกิดในนอร์ธฟิลด์ รัฐมินนิโซตาคืออะไร?",
    "context": "CREATE TABLE table_name_30 (team VARCHAR, birthplace VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_81 WHERE birthplace = \"phoenix, new york\"",
    "question_en": "What is the Position of the person with a birthplace of phoenix, new york?",
    "question_th": "บุคคลที่มีถิ่นกำเนิดฟีนิกซ์ นิวยอร์ก มีตำแหน่งอะไร?",
    "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_en": "What is the Name when the team is the st. paul a.c., with a Birthdate of 3 august 1890?",
    "question_th": "ชื่ออะไรเมื่อทีมเป็นเซนต์ paul ac มีวันเกิดวันที่ 3 สิงหาคม พ.ศ. 2433?",
    "context": "CREATE TABLE table_name_45 (name VARCHAR, team VARCHAR, birthdate VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_61 WHERE name = \"moose goheen\"",
    "question_en": "What is the Position of moose goheen?",
    "question_th": "มูสโกฮีนมีตำแหน่งอะไร?",
    "context": "CREATE TABLE table_name_61 (position VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT birthdate FROM table_name_29 WHERE name = \"leon tuck\"",
    "question_en": "What is the Birthdate of leon tuck?",
    "question_th": "วันเกิดของลีออน ทัคคือวันที่เท่าไหร่?",
    "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_en": "During the Tournament in which Jiří Novák 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?",
    "question_th": "ในระหว่างทัวร์นาเมนต์ที่ Jiří Novák ไม่อยู่ (A) ในปี 1995 ขาด (A) ในปี 1997 และผ่านเข้าสู่รอบที่ 3 (3R) ในปี 2003 เขาทำอย่างไรบ้างในปี 2006?",
    "context": "CREATE TABLE table_name_31 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1997 FROM table_name_75 WHERE tournament = \"tennis masters cup\"",
    "question_en": "In the Tennis Masters Cup, how did Jiří Novák do in 1997?",
    "question_th": "ใน Tennis Masters Cup Jiří Novák เป็นอย่างไรในปี 1997",
    "context": "CREATE TABLE table_name_75 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2003 FROM table_name_71 WHERE 1996 = \"a\" AND tournament = \"hamburg masters\"",
    "question_en": "In the Hamburg Masters Tournament, during which Jiří Novák was absent(A) in 1996, how did he do in 2003?",
    "question_th": "ในการแข่งขัน Hamburg Masters Tournament ซึ่ง Jiří Novák ไม่อยู่ (A) ในปี 1996 เขาเป็นยังไงบ้างในปี 2003?",
    "context": "CREATE TABLE table_name_71 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2003 FROM table_name_49 WHERE 2004 = \"a\"",
    "question_en": "In the Tournament during which Jiří Novák was absent(A) in 2004, how did he do in 2003?",
    "question_th": "ในทัวร์นาเมนต์ที่ Jiří Novák ไม่อยู่ (A) ในปี 2004 เขาเป็นยังไงบ้างในปี 2003?",
    "context": "CREATE TABLE table_name_49 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2001 FROM table_name_32 WHERE 1995 = \"1r\"",
    "question_en": "In the Tournament during which Jiří Novák made it to the 1st round(1R) in 1995, how did he do in 2001?",
    "question_th": "ในทัวร์นาเมนต์ที่ Jiří Novák เข้าถึงรอบที่ 1 (1R) ในปี 1995 เขาทำอย่างไรบ้างในปี 2001",
    "context": "CREATE TABLE table_name_32 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1997 FROM table_name_93 WHERE 1998 = \"a\" AND tournament = \"hamburg masters\"",
    "question_en": "During the Hamburg Masters Tournament, during which Jiří Novák was absent(A) in 1998, how did he do in 1997?",
    "question_th": "ระหว่างการแข่งขัน Hamburg Masters Tournament ซึ่ง Jiří Novák ไม่อยู่ (A) ในปี 1998 เขาเป็นยังไงบ้างในปี 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_en": "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?",
    "question_th": "ผลรวมของทั้งหมดจากแผงวัฒนธรรมและการศึกษาที่มีน้อยกว่า 7 จากแผงแรงงานและน้อยกว่า 1 จากแผงเกษตรคือเท่าใด",
    "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_en": "What is the Away team when the FootyTAB winner was st. george?",
    "question_th": "ทีมเยือนคือทีมไหนเมื่อผู้ชนะ FootyTAB คือทีมเยือน จอร์จ?",
    "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_en": "What is the Home team when the away team was Manly?",
    "question_th": "ทีมเจ้าบ้านเมื่อทีมเยือนเป็นแมนลี่คืออะไร?",
    "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_en": "What is the Match score when the FootyTAB winner was norths?",
    "question_th": "คะแนนการแข่งขันเมื่อผู้ชนะ FootyTAB อยู่ทางเหนือคืออะไร?",
    "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_en": "What is the Away team when the match score was norths 19 manly 4?",
    "question_th": "ทีมเยือนเมื่อสกอร์ เหนือ 19 แมนลี่ 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_en": "What is the \"Pick The Winners\" score when the Match score was illawarra 19 souths 0?",
    "question_th": "คะแนน \"เลือกผู้ชนะ\" คืออะไร เมื่อคะแนนการแข่งขันคือ อิลาวาร์รา 19 เซาธ์ 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_en": "Which player has a FG Pct less than 45.9, a def reb less than 43, and a total reb of 9?",
    "question_th": "ผู้เล่นคนใดที่มี FG Pct น้อยกว่า 45.9, def reb น้อยกว่า 43 และ reb รวมเป็น 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éphane dumas\" AND rank > 5",
    "question_en": "How many Games has a Name of stéphane dumas and a Rank larger than 5?",
    "question_th": "มีกี่เกมที่มีชื่อของสเตฟาน ดูมาส์และมีอันดับมากกว่า 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_en": "How many Games has a Team of cai zaragoza and a Rank smaller than 1?",
    "question_th": "มีกี่เกมที่มีทีม cai zaragoza และมีอันดับน้อยกว่า 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_en": "What was the most total medals awarded to Poland?",
    "question_th": "เหรียญรางวัลรวมมากที่สุดที่มอบให้กับโปแลนด์คืออะไร?",
    "context": "CREATE TABLE table_name_37 (total INTEGER, nation VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_64 WHERE date = \"december 20, 1964\"",
    "question_en": "How many people attended the game on December 20, 1964?",
    "question_th": "วันที่ 20 ธันวาคม 2507 มีผู้เข้าร่วมการแข่งขันกี่คน",
    "context": "CREATE TABLE table_name_64 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_66 WHERE opponent = \"tampa bay buccaneers\"",
    "question_en": "On what date did the Lions play against the Tampa Bay Buccaneers?",
    "question_th": "Lions เล่นกับ 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_en": "What was the date of the game against the New York Jets?",
    "question_th": "วันที่ของเกมกับ 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_en": "What is the Attendance with a Date that is october 31, 1965?",
    "question_th": "การเข้าร่วมงานวันที่ 31 ตุลาคม 2508 คืออะไร?",
    "context": "CREATE TABLE table_name_15 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_96 WHERE date = \"november 25, 1965\"",
    "question_en": "What is the Attendance with a Date that is november 25, 1965?",
    "question_th": "การเข้าร่วมประชุมในวันที่ 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 = \"±2500\"",
    "question_en": "What is the lowest geohash length when the lat bits are less than 7, and the km error of ±2500?",
    "question_th": "ความยาว geohash ต่ำสุดคือเท่าใดเมื่อ lat bits น้อยกว่า 7 และข้อผิดพลาด km ที่ ±2500 คือเท่าใด",
    "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 = \"±0.00068\" AND lat_bits > 17",
    "question_en": "What is the highest geohash length when the lat error is ±0.00068, and the lat bits larger than 17?",
    "question_th": "ความยาว geohash สูงสุดคือเท่าใดเมื่อข้อผิดพลาด lat คือ ±0.00068 และบิต lat มากกว่า 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 = \"±0.00017\" AND lng_bits < 20",
    "question_en": "What is the highest geohash length when there is a ng error of ±0.00017, and a lng bits smaller than 20?",
    "question_th": "ความยาว geohash สูงสุดคือเท่าใดเมื่อมีข้อผิดพลาด ng ที่ ±0.00017 และบิต lng น้อยกว่า 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_en": "Which Against has a Drawn smaller than 5, a Lost of 3, and a Position of 3?",
    "question_th": "ฝ่ายไหนที่เสมอน้อยกว่า 5 แพ้ 3 และตำแหน่ง 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_en": "Which Against has a Position larger than 8, and Points larger than 9?",
    "question_th": "Against ตัวไหนที่มีตำแหน่งมากกว่า 8 และแต้มมากกว่า 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_en": "Which Lost has Points smaller than 12, and a Drawn larger than 1?",
    "question_th": "แพ้คนไหนมีแต้มน้อยกว่า 12 และจั่วได้มากกว่า 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_en": "Which Position has a Difference of 5, and a Drawn smaller than 3?",
    "question_th": "ตำแหน่งใดมีผลต่าง 5 และเสมอน้อยกว่า 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_en": "Which Against has a Position larger than 11?",
    "question_th": "Against ตัวไหนมีตำแหน่งที่ใหญ่กว่า 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_en": "Which Player has a Nationality of united states, a Position of forward, and a School/Club Team of notre dame?",
    "question_th": "ผู้เล่นคนใดที่มีสัญชาติสหรัฐอเมริกา ตำแหน่งกองหน้า และทีมโรงเรียน/สโมสรของนอเทรอดาม?",
    "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_en": "Which Nationality has a School/Club Team of louisiana state?",
    "question_th": "สัญชาติใดมีทีมโรงเรียน/สโมสรของรัฐลุยเซียนา",
    "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_en": "Which Years in Orlando has a Position of center, and a School/Club Team of louisiana state?",
    "question_th": "ปีใดในออร์แลนโดที่มีตำแหน่งศูนย์กลางและมีทีมโรงเรียน/สโมสรของรัฐลุยเซียนา",
    "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_en": "Which Position has a School/Club Team of illinois?",
    "question_th": "ตำแหน่งใดมีทีมโรงเรียน/สโมสรของรัฐอิลลินอยส์",
    "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_en": "Which Years in Orlando has a Nationality of united states, and a School/Club Team of illinois?",
    "question_th": "ปีใดในออร์แลนโดที่มีสัญชาติสหรัฐอเมริกา และมีทีมโรงเรียน/สโมสรของรัฐอิลลินอยส์",
    "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_en": "Which Player has a Position of forward, and a School/Club Team of georgia tech?",
    "question_th": "ผู้เล่นคนไหนที่มีตำแหน่งกองหน้า และทีมโรงเรียน/สโมสรของ 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_en": "What is the total number of silver with rank number 6?",
    "question_th": "เหรียญเงินอันดับ 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_en": "What is the smallest total from Japan with a rank larger than 3?",
    "question_th": "ผลรวมที่น้อยที่สุดจากญี่ปุ่นที่มีอันดับมากกว่า 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_en": "What is the largest number of silver that had 0 bronzes and total less than 1?",
    "question_th": "เงินจำนวนมากที่สุดที่มี 0 เหรียญทองแดง และรวมน้อยกว่า 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_en": "What is the smallest number of points for a match less than 12?",
    "question_th": "จำนวนคะแนนที่น้อยที่สุดสำหรับการแข่งขันที่น้อยกว่า 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_en": "What is the mean number of languages for the monthly frequency when the publisher is the hearst corporation?",
    "question_th": "จำนวนภาษาเฉลี่ยสำหรับความถี่ต่อเดือนเมื่อผู้จัดพิมพ์เป็นองค์กรที่ใส่ใจที่สุดคือเท่าใด?",
    "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_en": "What is the Political group for p. maelius capitolinus?",
    "question_th": "กลุ่มการเมืองเพื่ออะไรพี. เมลิอุส คาปิโตลินัส?",
    "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_en": "What is the Type for l. publilius philo vulscus?",
    "question_th": "ประเภทของ l คืออะไร พับลิเลียส ฟิโล วัลสคัส?",
    "context": "CREATE TABLE table_name_46 (type VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_31 WHERE name = \"l. publilius philo vulscus\"",
    "question_en": "What is the Type for l. publilius philo vulscus?",
    "question_th": "ประเภทของ l คืออะไร พับลิเลียส ฟิโล วัลสคัส?",
    "context": "CREATE TABLE table_name_31 (type VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT episode_title FROM table_name_3 WHERE prod_code = \"1gowo04\"",
    "question_en": "What was the title of the episode with a production code of 1gowo04?",
    "question_th": "ชื่อเรื่องของตอนที่มีรหัสการผลิต 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_en": "What is the production code fore the episode titled, life's no fun anymore?",
    "question_th": "รหัสการผลิตสำหรับตอนที่ชื่อว่า ชีวิตไม่สนุกอีกต่อไป คืออะไร?",
    "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_en": "What is the nationality of the player that plays forward and is from depaul?",
    "question_th": "นักเตะที่เล่นกองหน้าและมาจากเดปอลเป็นคนสัญชาติอะไรครับ?",
    "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_en": "What years did Orlando have stanley roberts on the team?",
    "question_th": "ออร์แลนโดมีสแตนลีย์ โรเบิร์ตส์อยู่ในทีมกี่ปี?",
    "context": "CREATE TABLE table_name_75 (years_in_orlando VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT SUM(points) FROM table_name_99 WHERE year > 2003",
    "question_en": "How many points total are there later than 2003?",
    "question_th": "หลังปี 2546 มีทั้งหมดกี่คะแนน?",
    "context": "CREATE TABLE table_name_99 (points INTEGER, year INTEGER)"
  },
  {
    "answer": "SELECT entrant FROM table_name_13 WHERE chassis = \"dallara f398\"",
    "question_en": "Which entrant has a Dallara F398 chassis?",
    "question_th": "ผู้เข้าแข่งขันรายใดมีแชสซี Dallara F398",
    "context": "CREATE TABLE table_name_13 (entrant VARCHAR, chassis VARCHAR)"
  },
  {
    "answer": "SELECT MIN(points) FROM table_name_93 WHERE chassis = \"dallara f303\"",
    "question_en": "What are the lowest points for an engine with a Dallara F303 chassis?",
    "question_th": "จุดต่ำสุดสำหรับเครื่องยนต์ที่มีแชสซี Dallara F303 คืออะไร?",
    "context": "CREATE TABLE table_name_93 (points INTEGER, chassis VARCHAR)"
  },
  {
    "answer": "SELECT MIN(points) FROM table_name_96 WHERE year = 2004",
    "question_en": "What are the lowest points in 2004?",
    "question_th": "จุดต่ำสุดในปี 2547 คืออะไร?",
    "context": "CREATE TABLE table_name_96 (points INTEGER, year VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_95 WHERE week = 5",
    "question_en": "What is Attendance, when Week is 5?",
    "question_th": "การเข้าร่วมคืออะไร เมื่อสัปดาห์คือ 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_en": "What is the label for the catalog of none, and is in the United Kingdom?",
    "question_th": "ป้ายชื่อแคตตาล็อกของ none คืออะไร และอยู่ในสหราชอาณาจักร",
    "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_en": "What is the region for the date November 18, 2002?",
    "question_th": "ภูมิภาคสำหรับวันที่ 18 พฤศจิกายน 2545 คืออะไร?",
    "context": "CREATE TABLE table_name_76 (region VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_93 WHERE label = \"nebula\" AND catalog = \"nebdjx029\"",
    "question_en": "What is the date for the Nebula Label, and a nebdjx029 catalog?",
    "question_th": "ฉลากเนบิวลา และแค็ตตาล็อก nebdjx029 คือวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_93 (date VARCHAR, label VARCHAR, catalog VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_54 WHERE region = \"netherlands\"",
    "question_en": "What is the label from the Netherlands?",
    "question_th": "ฉลากจากเนเธอร์แลนด์คืออะไร?",
    "context": "CREATE TABLE table_name_54 (label VARCHAR, region VARCHAR)"
  },
  {
    "answer": "SELECT christ_madeking FROM table_name_16 WHERE great_tribulation = \"1925\"",
    "question_en": "What was the Christ made king date with a great tribulation in 1925?",
    "question_th": "พระคริสต์ทรงกำหนดให้กษัตริย์ทรงพบกับความทุกข์ลำบากใหญ่อะไรในปี 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_en": "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?",
    "question_th": "อะไรคือการฟื้นคืนพระชนม์ของ 144,000 คน โดยที่พระคริสต์ทรงตั้งวันที่เป็นกษัตริย์ในปี 1914, วันที่แกะและแพะที่แยกจากกันระหว่างการประทับของพระคริสต์ และวันที่พิพากษาศาสนาในปี 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_en": "What is the lowest Cuts made with less than 72.48 scoring average?",
    "question_th": "อะไรคือการตัดต่ำสุดที่มีคะแนนเฉลี่ยน้อยกว่า 72.48?",
    "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_en": "What is the sum of Events played when the cuts made is less than 0?",
    "question_th": "ผลรวมของเหตุการณ์ที่เล่นเมื่อการตัดน้อยกว่า 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_en": "What is the Scoring rank when there are less than 21 events played with a rank of n/a in years less than 2011?",
    "question_th": "อันดับการให้คะแนนคืออะไรเมื่อมีการแข่งขันน้อยกว่า 21 รายการที่มีอันดับไม่มีในปี 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_en": "What is the total number of Wins when 98 is the rank and the scoring average is more than 73.52?",
    "question_th": "จำนวนชนะทั้งหมดเมื่อ 98 คืออันดับและคะแนนเฉลี่ยมากกว่า 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_en": "What Title's Start of Reign is 1993?",
    "question_th": "จุดเริ่มต้นของการครองราชย์ของตำแหน่งใดคือปี 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_en": "What is the Birth Name of the Archbishop with a Current End of Reign?",
    "question_th": "พระอัครสังฆราชที่สิ้นรัชกาลปัจจุบันมีชื่อเกิดว่าอะไร?",
    "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_en": "What is Angelarios Angelarij with a Start of Reign date before 1986 Birth Name?",
    "question_th": "Angelarios Angelarij คืออะไรที่มีวันเริ่มต้นรัชกาลก่อนชื่อเกิดปี 1986?",
    "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_en": "How many goals that were scored had a place of more than 5, a lost of 11, and goals conceded of less than 45?",
    "question_th": "มีกี่ประตูที่ทำได้มากกว่า 5 แพ้ 11 และเสียประตูน้อยกว่า 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_en": "What is the mean played number where the goals conceded is less than 16?",
    "question_th": "หมายเลขเล่นเฉลี่ยที่เสียประตูน้อยกว่า 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_en": "What is the 1913 Class of the d32 LNER Class?",
    "question_th": "คลาส 1913 ของคลาส d32 LNER คืออะไร",
    "context": "CREATE TABLE table_name_68 (lner_class VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_name_59 WHERE team = \"denver\"",
    "question_en": "What was the attendance at the Denver game?",
    "question_th": "การเข้าร่วมในเกมเดนเวอร์เป็นอย่างไรบ้าง?",
    "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_en": "What was Matthew Hoggard's high score when he had a strike rate of n/a?",
    "question_th": "คะแนนสูงสุดของ Matthew Hoggard คืออะไรเมื่อเขามีอัตราการนัดหยุดงานที่ 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_en": "What is the lowest Weight when the height is 196, and the date of birth is 24.07.1977?",
    "question_th": "น้ำหนักต่ำสุดคือเท่าใดเมื่อส่วนสูงคือ 196 และวันเกิดคือ 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_en": "What is the sum of Spike when the Weight was more than 84, and Block was less than 315?",
    "question_th": "ผลรวมของ Spike เมื่อน้ำหนักมากกว่า 84 และ Block น้อยกว่า 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_en": "What was the result of the 2012 Waff Women's Futsal Championship game the team played against Iraq?",
    "question_th": "อะไรคือผลลัพธ์ของเกมฟุตซอลหญิงชิงแชมป์วาฟ 2012 ที่ทีมเล่นกับอิรัก?",
    "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_en": "What was the result of the game played on May 9, 2012?",
    "question_th": "ผลการแข่งขันวันที่ 9 พฤษภาคม 2555 เป็นอย่างไร?",
    "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_en": "What is the result of the game played in Russia on May 9, 2012?",
    "question_th": "ผลการแข่งขันที่เล่นในรัสเซียเมื่อวันที่ 9 พฤษภาคม 2555 เป็นอย่างไร?",
    "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_en": "What is the final result of the game that was played on October 8, 2000?",
    "question_th": "ผลลัพธ์สุดท้ายของเกมที่เล่นในวันที่ 8 ตุลาคม พ.ศ. 2543 คืออะไร?",
    "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_en": "Who was the opponent in the game played after Week 4 on October 15, 2000?",
    "question_th": "คู่ต่อสู้ในเกมที่เล่นหลังจากสัปดาห์ที่ 4 เมื่อวันที่ 15 ตุลาคม พ.ศ. 2543 คือใคร?",
    "context": "CREATE TABLE table_name_37 (opponent VARCHAR, week VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_80 WHERE record = \"8-8\"",
    "question_en": "Where was the game played when the Buffalo Bills had a record of 8-8?",
    "question_th": "เกมนี้เล่นที่ไหนเมื่อบัฟฟาโล บิลล์ส มีสถิติ 8-8?",
    "context": "CREATE TABLE table_name_80 (location VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_34 WHERE record = \"4-4\"",
    "question_en": "Who was the opponent the Buffalo Bills played when their record was 4-4?",
    "question_th": "ใครคือคู่ต่อสู้ที่บัฟฟาโล บิลล์ส เล่นเมื่อสถิติของพวกเขาคือ 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_en": "What is the highest week for Cleveland Browns with 54,205 in attendance?",
    "question_th": "สัปดาห์ใดที่สูงที่สุดสำหรับ Cleveland Browns โดยมีผู้เข้าร่วม 54,205 คน?",
    "context": "CREATE TABLE table_name_47 (week INTEGER, opponent VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_88 WHERE opponent = \"oakland raiders\"",
    "question_en": "What date was the opponents the Oakland Raiders?",
    "question_th": "คู่ต่อสู้ของ 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_en": "What was the total attendance October 22, 1972?",
    "question_th": "ผู้เข้าร่วมทั้งหมดในวันที่ 22 ตุลาคม พ.ศ. 2515 เป็นเท่าใด",
    "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_en": "What is the highest heat for Ihor Bodrov when the mark is 6.76 and the lane is less than 1?",
    "question_th": "อิฮอร์ โบดรอฟ ฮีตสูงสุดที่ 6.76 และเลนน้อยกว่า 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_en": "What is the mark number when the lane for Rabangaki Nawai when it is greater than 2 and the heat is larger than 4?",
    "question_th": "เครื่องหมายอะไรเมื่อเลนสำหรับ Rabangaki Nawai เมื่อมากกว่า 2 และความร้อนมากกว่า 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_en": "What is the total lane number for the United States when the mark is 6.62 and the heat is greater than 8?",
    "question_th": "หมายเลขเลนทั้งหมดสำหรับสหรัฐอเมริกาเมื่อเครื่องหมายคือ 6.62 และความร้อนมากกว่า 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_en": "WHich in 2010–11 has an Event of autumn gold?",
    "question_th": "ซึ่งในปี 2553-2554 มีกิจกรรมทองคำแห่งฤดูใบไม้ร่วง?",
    "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_en": "Which nation has a bronze greater than 0, a gold greater than 0, a silver greater than 0, and 5 as the rank?",
    "question_th": "ประเทศใดมีเหรียญทองแดงมากกว่า 0, ทองคำมากกว่า 0, เงินมากกว่า 0 และ 5 เป็นอันดับแรก?",
    "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_en": "What nation has 1 as the gold and 2 as the total?",
    "question_th": "ประเทศใดมี 1 เป็นทองคำและ 2 เป็นทั้งหมด?",
    "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_en": "What rank has 0 as the bronze, and a total less than 3, with north korea as the nation?",
    "question_th": "อันดับไหนมี 0 เป็นเหรียญทองแดง และคะแนนรวมน้อยกว่า 3 โดยมีเกาหลีเหนือเป็นประเทศ",
    "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_en": "How many golds have a bronze less than 1, and a silver less than 1?",
    "question_th": "มีทองคำกี่ตัวที่มีทองแดงน้อยกว่า 1 และเงินน้อยกว่า 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_en": "What average total has cuba as the nation, and a bronze greater than 1?",
    "question_th": "คิวบาเป็นชาติโดยเฉลี่ยและมีเหรียญทองแดงมากกว่า 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_en": "What is the highest total that has a bronze greater than 1, a gold greater than 1, with a silver less than 4?",
    "question_th": "อะไรคือผลรวมสูงสุดที่มีทองแดงมากกว่า 1 ทองคำมากกว่า 1 และมีเงินน้อยกว่า 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_en": "Where was the birthplace of the person born on March 21, 1979?",
    "question_th": "บ้านเกิดของคนเกิดวันที่ 21 มีนาคม พ.ศ. 2522 อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_92 (birthplace VARCHAR, birthdate VARCHAR)"
  },
  {
    "answer": "SELECT MAX(weight__kg_) FROM table_name_57 WHERE name = \"scott gomez\"",
    "question_en": "What is Scott Gomez's biggest weight?",
    "question_th": "น้ำหนักที่ใหญ่ที่สุดของ Scott Gomez คืออะไร?",
    "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_en": "What number pick was Paul Seymour in round 1?",
    "question_th": "Paul Seymour เป็นคนเลือกหมายเลขใดในรอบที่ 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_en": "In how many rounds did USC participate in?",
    "question_th": "USC เข้าร่วมทั้งหมดกี่รอบ?",
    "context": "CREATE TABLE table_name_72 (round VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT set_2 FROM table_name_14 WHERE time = \"15:33\"",
    "question_en": "What set 2 has 15:33 as the time?",
    "question_th": "ชุดที่ 2 มี 15:33 เป็นเวลาอะไร?",
    "context": "CREATE TABLE table_name_14 (set_2 VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_8 WHERE opponent = \"clemson\"",
    "question_en": "Where did they play against Clemson?",
    "question_th": "พวกเขาเล่นกับเคลมสันที่ไหน?",
    "context": "CREATE TABLE table_name_8 (location VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(attendance) FROM table_name_10 WHERE date = \"10/05/1974\"",
    "question_en": "What was the total attendance on 10/05/1974?",
    "question_th": "จำนวนผู้เข้าร่วมทั้งหมดในวันที่ 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_en": "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?",
    "question_th": "จำนวนความสูงทั้งหมดคือเท่าใด เมื่อ Spike น้อยกว่า 352 เมื่อ Block มากกว่า 300 และเมื่อชื่อ 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_en": "What is the total number of Weight(s), when Block is 300?",
    "question_th": "จำนวนน้ำหนักทั้งหมดเมื่อ Block อยู่ที่ 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_en": "What is the smallest Weight, when Spike is less than 330, when Block is 315, and when Height is greater than 187?",
    "question_th": "อะไรคือน้ำหนักที่น้อยที่สุด เมื่อ Spike น้อยกว่า 330 เมื่อ Block อยู่ที่ 315 และเมื่อความสูงมากกว่า 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_en": "What is the average Spike, when Name is Gustavo Porporatto, and when Block is greater than 323?",
    "question_th": "Spike โดยเฉลี่ยคือเท่าใด เมื่อ Name คือ Gustavo Porporatto และเมื่อ Block มากกว่า 323",
    "context": "CREATE TABLE table_name_67 (spike INTEGER, name VARCHAR, block VARCHAR)"
  },
  {
    "answer": "SELECT match FROM table_name_11 WHERE points = 24",
    "question_en": "What is the Match with Points that are 24?",
    "question_th": "แมตช์ที่มีแต้ม 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_en": "What is the Team 2 with a Team 1 that is milli piyango sk?",
    "question_th": "ทีม 2 กับทีม 1 คือ มิลลิ ปิยังโก 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_en": "What is the Team 1 with a Team 2 with brest hc meshkov?",
    "question_th": "ทีม 1 กับทีม 2 กับ 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_en": "What is the position number when there were 29 points, and less than 2 is lost?",
    "question_th": "ตอนมี 29 แต้ม เสียไม่ถึง 2 เลขตำแหน่งอะไร?",
    "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_en": "What is the lowest Points with an against of 20 and less than 1 lost?",
    "question_th": "คะแนนต่ำสุดโดยแพ้ 20 และน้อยกว่า 1 คืออะไร?",
    "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_en": "What is the sum of Points when the against is less than 24 and played is less than 20?",
    "question_th": "ผลรวมของแต้มเมื่อฝ่ายตรงข้ามน้อยกว่า 24 และเล่นน้อยกว่า 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_en": "What region is dated April 30, 2004, and cataloged Nebdj058?",
    "question_th": "ภูมิภาคใดคือวันที่ 30 เมษายน พ.ศ. 2547 และอยู่ในบัญชี Nebdj058",
    "context": "CREATE TABLE table_name_37 (region VARCHAR, date VARCHAR, catalog VARCHAR)"
  },
  {
    "answer": "SELECT format FROM table_name_3 WHERE catalog = \"nebcd058\"",
    "question_en": "What s the format for the catalog nebcd058?",
    "question_th": "แคตตาล็อก nebcd058 อยู่ในรูปแบบใด",
    "context": "CREATE TABLE table_name_3 (format VARCHAR, catalog VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_name_93 WHERE catalog = \"sir021-6\"",
    "question_en": "What region has the catalog sir021-6?",
    "question_th": "ภูมิภาคใดมีแคตตาล็อก sir021-6?",
    "context": "CREATE TABLE table_name_93 (region VARCHAR, catalog VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_10 WHERE catalog = \"nebt058\"",
    "question_en": "What label has the catalog nebt058?",
    "question_th": "ฉลากอะไรมีแคตตาล็อก nebt058?",
    "context": "CREATE TABLE table_name_10 (label VARCHAR, catalog VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(game) FROM table_name_59 WHERE score = \"l 90–104 (ot)\"",
    "question_en": "What is the game number when the score was l 90–104 (ot)?",
    "question_th": "หมายเลขเกมเมื่อคะแนนคือ l 90–104 (ot) คืออะไร?",
    "context": "CREATE TABLE table_name_59 (game VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_93 WHERE record = \"12–12\"",
    "question_en": "What is the Score of the game with a Record of 12–12?",
    "question_th": "คะแนนของเกมที่มีสถิติ 12–12 คืออะไร?",
    "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_en": "What is the Score for the Game less than 21, and of antonio davis (12)had the High rebounds?",
    "question_th": "คะแนนของเกมน้อยกว่า 21 เป็นเท่าใด และอันโตนิโอ เดวิส (12) มีรีบาวด์สูงหรือไม่",
    "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_en": "What is the Record when antonio davis (14) had the high rebounds?",
    "question_th": "อะไรคือสถิติเมื่ออันโตนิโอ เดวิส (14) รีบาวด์สูง?",
    "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_en": "What was the team when vince carter (19) had the high points?",
    "question_th": "เมื่อวินซ์ คาร์เตอร์ (19) มีแต้มสูงทีมไหน?",
    "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_en": "What is the number for gold where there were total 1, and bronze 1?",
    "question_th": "ตัวเลขทองคำที่มีทั้งหมด 1 และ 1 ทองแดงคืออะไร?",
    "context": "CREATE TABLE table_name_86 (gold VARCHAR, total VARCHAR, bronze VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_60 WHERE total = \"152\"",
    "question_en": "Which player had a total of 152?",
    "question_th": "ผู้เล่นคนไหนมีทั้งหมด 152 คน?",
    "context": "CREATE TABLE table_name_60 (player VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_66 WHERE year_s__won = \"1976\"",
    "question_en": "Which player won the Masters in 1976?",
    "question_th": "ผู้เล่นคนใดชนะการแข่งขันมาสเตอร์ในปี 1976",
    "context": "CREATE TABLE table_name_66 (player VARCHAR, year_s__won VARCHAR)"
  },
  {
    "answer": "SELECT total FROM table_name_24 WHERE country = \"spain\"",
    "question_en": "What was the total of the player from Spain?",
    "question_th": "นักเตะจากสเปนมีทั้งหมดกี่คน?",
    "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_en": "Which player won in 1987 and ended with a score of +9?",
    "question_th": "ผู้เล่นคนไหนชนะในปี 1987 และจบลงด้วยคะแนน +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_en": "What's the name of the award given to Team number 23?",
    "question_th": "รางวัลที่มอบให้กับทีมหมายเลข 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_en": "What is Volume:Issue, when Weeks on Top is less than 5, and when Issue Date(s) are 10 July - 24 July?",
    "question_th": "Volume:Issue คืออะไร เมื่อ Weeks on Top น้อยกว่า 5 และวันที่ออกคือวันที่ 10 กรกฎาคม - 24 กรกฎาคม",
    "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 = \"心如猨猴\"",
    "question_en": "Which text has traditional characters of 心如猨猴?",
    "question_th": "ข้อความใดมีอักขระดั้งเดิมของ heart如猨猴",
    "context": "CREATE TABLE table_name_47 (text VARCHAR, traditional_characters VARCHAR)"
  },
  {
    "answer": "SELECT text FROM table_name_42 WHERE simplified_characters = \"心猿 … 意马\"",
    "question_en": "Which text has simplified characters of 心猿 … 意马?",
    "question_th": "ข้อความใดมีตัวย่อของ Heart猿 … 意马?",
    "context": "CREATE TABLE table_name_42 (text VARCHAR, simplified_characters VARCHAR)"
  },
  {
    "answer": "SELECT text FROM table_name_85 WHERE wade_giles = \"ai-ma … hsin-yüan\"",
    "question_en": "Which text has Wade-Giles translation of ai-ma … hsin-yüan?",
    "question_th": "ข้อความใดมีคำแปลของ Wade-Giles ของ ai-ma … hsin-yüan?",
    "context": "CREATE TABLE table_name_85 (text VARCHAR, wade_giles VARCHAR)"
  },
  {
    "answer": "SELECT pinyin FROM table_name_4 WHERE wade_giles = \"hsin-yüan-i-ma\"",
    "question_en": "What is the Pinyin translation of the Wade-Giles of hsin-yüan-i-ma?",
    "question_th": "คำแปลพินอินของ Wade-Giles ของ hsin-yüan-i-ma คืออะไร?",
    "context": "CREATE TABLE table_name_4 (pinyin VARCHAR, wade_giles VARCHAR)"
  },
  {
    "answer": "SELECT wade_giles FROM table_name_44 WHERE pinyin = \"xīn rú yuánhóu\"",
    "question_en": "What is the Wade-Giles translation of the Pinyin xīn rú yuánhóu?",
    "question_th": "พินอิน xīn rú yuánhóu ของเวด-ไจลส์แปลว่าอะไร",
    "context": "CREATE TABLE table_name_44 (wade_giles VARCHAR, pinyin VARCHAR)"
  },
  {
    "answer": "SELECT text FROM table_name_13 WHERE date__ce_ = \"c. 1180\"",
    "question_en": "Which text has a date of c. 1180?",
    "question_th": "ข้อความใดมีวันที่ค. 1180?",
    "context": "CREATE TABLE table_name_13 (text VARCHAR, date__ce_ VARCHAR)"
  },
  {
    "answer": "SELECT MIN(silver) FROM table_name_42 WHERE gold < 0",
    "question_en": "What is the fewest number of silvers have 0 golds?",
    "question_th": "เงินจำนวนน้อยที่สุดที่มี 0 เหรียญทองคือเท่าไร?",
    "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_en": "What is the smallest total that has 11 golds and bronzes over 2?",
    "question_th": "ผลรวมน้อยที่สุดที่มี 11 เหรียญทองและทองแดงมากกว่า 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_en": "What is the total having a bronze value over 1, silver under 5, and ranked 9?",
    "question_th": "ผลรวมที่มีมูลค่าทองแดงมากกว่า 1 เหรียญเงินต่ำกว่า 5 และอันดับที่ 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_en": "When did the Chargers play the Denver Broncos before Week 10?",
    "question_th": "Chargers เล่น Denver Broncos ก่อนสัปดาห์ที่ 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_en": "What is the sum of Bronze when the rank is more than 11 and gold is less than 0?",
    "question_th": "ผลรวมของทองแดงเมื่ออันดับมากกว่า 11 และทองน้อยกว่า 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_en": "What is the total number of Total when Germany is the nation with less than 1 silver?",
    "question_th": "จำนวนรวมทั้งหมดเป็นเท่าใดเมื่อเยอรมนีเป็นประเทศที่มีเงินน้อยกว่า 1 เหรียญเงิน?",
    "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_en": "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?",
    "question_th": "ผลรวมเฉลี่ยที่มีเหรียญทองเป็น 0 คือเท่าใด เมื่ออันดับน้อยกว่า 16 ประเทศคือจอร์เจีย และมีมากกว่า 2 สำหรับเหรียญทองแดง",
    "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_en": "What is the highest Total when Georgia is the nation with less than 11 rank?",
    "question_th": "คะแนนรวมสูงสุดเมื่อจอร์เจียเป็นประเทศที่มีอันดับต่ำกว่า 11 คืออะไร",
    "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_en": "What is the total number of Total with more than 16 rank for the nation of Romania with more than 0 for silver?",
    "question_th": "จำนวนรวมทั้งหมดที่มีอันดับมากกว่า 16 ของประเทศโรมาเนียและมากกว่า 0 สำหรับเหรียญเงินคือเท่าใด",
    "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_en": "What type of video coding has a format name of dvcam?",
    "question_th": "การเข้ารหัสวิดีโอประเภทใดที่มีชื่อรูปแบบเป็น 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_en": "What format name has dv as video coding and 4:1:1 as the color sampling?",
    "question_th": "ชื่อรูปแบบใดที่มี dv เป็นการเข้ารหัสวิดีโอ และ 4:1:1 เป็นตัวอย่างสี",
    "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_en": "What bit depth has 4:1:1 as the color sampling?",
    "question_th": "ความลึกของบิตใดที่มี 4:1:1 เป็นตัวอย่างสี",
    "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_en": "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?",
    "question_th": "ขนาดเฟรมใดที่มี pcm 4 ch/16 บิต/48khz เป็นการเข้ารหัสเสียง และมี dvcam เป็นชื่อรูปแบบ และ 4:1:1 เป็นชื่อรูปแบบสี",
    "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_en": "Where was the landing site when the duration on the lunar surface was 21:31?",
    "question_th": "จุดลงจอดอยู่ที่ไหนเมื่อระยะเวลาบนพื้นผิวดวงจันทร์คือ 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_en": "Who were the crew for the Falcon?",
    "question_th": "ใครคือลูกเรือของฟอลคอน?",
    "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_en": "What is the average number of EVA for the Orion?",
    "question_th": "จำนวน EVA โดยเฉลี่ยสำหรับ 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_en": "What is the highest Year, when Rank is less than 28, and when Accolade is \"The 100 greatest metal albums of the decade\"?",
    "question_th": "ปีใดที่สูงที่สุด เมื่ออันดับน้อยกว่า 28 และเมื่อใดที่ Accolade จะเป็น \"100 อัลบั้มเมทัลที่ยิ่งใหญ่ที่สุดแห่งทศวรรษ\"?",
    "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_en": "What is Accolade, when Year is less than 2009, and when Country is Germany?",
    "question_th": "Accolade คืออะไร เมื่อปีน้อยกว่าปี 2009 และเมื่อใดเป็นประเทศคือเยอรมนี",
    "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_en": "What is the highest Rank, when Publication is Dagsavisen, and when Year is less than 2005?",
    "question_th": "อันดับสูงสุดคือเมื่อใดที่สิ่งพิมพ์คือ Dagsavisen และเมื่อใดคือปีน้อยกว่า 2005",
    "context": "CREATE TABLE table_name_81 (rank INTEGER, publication VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_65 WHERE score = \"0–0\" AND away_team = \"scunthorpe united\"",
    "question_en": "When has a Score of 0–0, and a Away team of scunthorpe united?",
    "question_th": "เมื่อสกอร์ 0–0 และทีมเยือนสคันธอร์ปรวมกันเป็นหนึ่ง?",
    "context": "CREATE TABLE table_name_65 (date VARCHAR, score VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT tie_no FROM table_name_98 WHERE score = \"5–1\"",
    "question_en": "Which Tie has a Score of 5–1?",
    "question_th": "เสมอกันใดมีคะแนน 5–1?",
    "context": "CREATE TABLE table_name_98 (tie_no VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_74 WHERE tie_no = \"20\"",
    "question_en": "Which Home team that has a Tie no of 20?",
    "question_th": "ทีมเจ้าบ้านใดที่เสมอกันที่ 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_en": "Which Home has a Tie no of 6?",
    "question_th": "บ้านใดมีคะแนนเสมอกันที่ 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–2\"",
    "question_en": "Which Away team that has a Tie no of replay, and a Score of 1–2?",
    "question_th": "ทีมเยือนทีมใดที่เสมอกันในการรีเพลย์ และสกอร์ 1–2?",
    "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_en": "Which Score has a Away team of walthamstow avenue?",
    "question_th": "วอลแธมสโตว์อเวนิวมีทีมเยือนสกอร์ไหน?",
    "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_en": "How many gp-gs have 121.70 as an effic and an avg/g less than 218.7?",
    "question_th": "gp-gs มีกี่ gp-gs ที่มีประสิทธิภาพ 121.70 และ avg/g น้อยกว่า 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_en": "What is the lowest gp-gs that has an avg/g less than 234.3, with 410.80 as the effic?",
    "question_th": "gp-gs ต่ำสุดที่มีค่าเฉลี่ย / g น้อยกว่า 234.3 คืออะไรโดยมีประสิทธิภาพ 410.80",
    "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_en": "What is the last 10 meetings that have slu, 9-8 as the overall record?",
    "question_th": "10 นัดหลังสุดมีสลู 9-8 เป็นสถิติรวม?",
    "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_en": "What is the last 5 meetings that has w 5 as the current streak, and 3/18/2010 as the last meeting?",
    "question_th": "การประชุม 5 ครั้งล่าสุดที่มี w 5 เป็นสตรีคปัจจุบัน และ 18/3/2553 เป็นการประชุมครั้งล่าสุดคืออะไร",
    "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_en": "What is the last 10 meetings that have 12 as the games played?",
    "question_th": "10 นัดหลังสุดที่ลงเล่น 12 นัดคืออะไร?",
    "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_en": "What is the last 10 meetings that have 11/26/1988 as the lasr meeting?",
    "question_th": "การประชุม 10 ครั้งล่าสุดที่มี 11/26/1988 เป็นการประชุมเลเซอร์คืออะไร?",
    "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_en": "What kansas vs. that has w 2 as the current streak, and 31 as games played?",
    "question_th": "แคนซัสกับอะไรที่มี 2 เป็นสตรีคปัจจุบันและ 31 เป็นเกมที่เล่น?",
    "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_en": "What is the sum of the attendance during the game against the philadelphia eagles after week 9?",
    "question_th": "จำนวนผู้เข้าร่วมระหว่างเกมกับฟิลาเดลเฟียอีเกิลส์หลังสัปดาห์ที่ 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_en": "What is the total number of fans attending the game on October 8, 1989 before week 5?",
    "question_th": "จำนวนแฟนบอลทั้งหมดที่เข้าร่วมเกมในวันที่ 8 ตุลาคม พ.ศ. 2532 ก่อนสัปดาห์ที่ 5 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_4 (attendance VARCHAR, date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT qualities FROM table_name_59 WHERE sign = \"cancer\"",
    "question_en": "What is the qualities of the sign cancer?",
    "question_th": "มะเร็งราศีมีคุณสมบัติอย่างไร?",
    "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_en": "What is the south season of the scorpio sign, which has cold & wet qualities?",
    "question_th": "ราศีพิจิกทางใต้ซึ่งมีคุณสมบัติเย็นและเปียกคือฤดูใด?",
    "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_en": "What is the average Prize fund ( US$ ), when OWGR pts is greater than 20, and when Dates is Nov 6-9?",
    "question_th": "กองทุนรางวัลเฉลี่ย (US$) คือเท่าไร เมื่อ OWGR pts มากกว่า 20 และวันที่คือวันที่ 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_en": "What is Winner, when Dates is Dec 11-14?",
    "question_th": "ผู้ชนะคืออะไร ในวันที่ 11-14 ธันวาคม?",
    "context": "CREATE TABLE table_name_18 (winner VARCHAR, dates VARCHAR)"
  },
  {
    "answer": "SELECT MIN(games) FROM table_name_48 WHERE rank < 1",
    "question_en": "What is the lowest number of games with a rank less than 1?",
    "question_th": "จำนวนเกมต่ำสุดที่มีอันดับน้อยกว่า 1 คืออะไร?",
    "context": "CREATE TABLE table_name_48 (games INTEGER, rank INTEGER)"
  },
  {
    "answer": "SELECT name FROM table_name_46 WHERE points = 305",
    "question_en": "What is the name of the player with 305 points?",
    "question_th": "ผู้เล่นที่มี 305 แต้มชื่ออะไร?",
    "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_en": "What is the total rank of team roanne, which has less than 14 games?",
    "question_th": "อันดับรวมของทีมโรแอนน์ซึ่งลงเล่นไม่ถึง 14 เกมคือเท่าไร?",
    "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_en": "What is the lowest of  Episode Number that has a Air Date on 20 july 2007?",
    "question_th": "หมายเลขตอนต่ำสุดที่มีวันออกอากาศวันที่ 20 กรกฎาคม 2550 คือเท่าใด",
    "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_en": "What kind of Guest Host has a Episode Number of 7?",
    "question_th": "พิธีกรรับเชิญแบบไหนที่มีตอนที่ 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_en": "What kind of Episode Number has a Air Date on 29 june 2007?",
    "question_th": "เลขตอนไหนมีกำหนดออกอากาศวันที่ 29 มิถุนายน 2550?",
    "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_en": "What kind of Guest Host has a Episode Number of 7?",
    "question_th": "พิธีกรรับเชิญแบบไหนที่มีตอนที่ 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_en": "WHich Coat of Cash\" Wearing Celebrity has a Episode Number larger than 1 and with amy macdonald ( mr rock & roll )?",
    "question_th": "WHich Coat of Cash\" Wearing Celebrity มีหมายเลขตอนที่มากกว่า 1 และกับ 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_en": "What is the highest bronze when the silver was 3 and the total was larger than 5?",
    "question_th": "บรอนซ์ที่สูงที่สุดเมื่อเงินเป็น 3 และยอดรวมมากกว่า 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_en": "What is the highest bronze when the silver was 0, the gold was larger than 0, and the total was larger than 2?",
    "question_th": "บรอนซ์ที่สูงที่สุดเมื่อเงินเป็น 0 ทองคำมีค่ามากกว่า 0 และยอดรวมมากกว่า 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_en": "What is the lowest silver for France with a rank less than 5 and a total larger than 19?",
    "question_th": "เงินที่ต่ำที่สุดสำหรับฝรั่งเศสที่มีอันดับน้อยกว่า 5 และรวมมากกว่า 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_en": "How many bronze had a rank of less than 6 and a total less than 5?",
    "question_th": "มีกี่เหรียญทองแดงที่มีอันดับต่ำกว่า 6 และรวมน้อยกว่า 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_en": "Which date was the Winning Score 72-66-67-71=276?",
    "question_th": "คะแนนชนะคือวันไหน 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_en": "What is the Margin of victory at the Bob Hope Desert Classic Tournament?",
    "question_th": "ชัยชนะของ 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_en": "On what Date is the Winning Score 71-69-68-70=278?",
    "question_th": "คะแนนชนะคือวันไหน 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_en": "What draw did Nigel Connell?",
    "question_th": "ไนเจล คอนเนลล์ เสมอกันอย่างไร?",
    "context": "CREATE TABLE table_name_95 (draw VARCHAR, performer VARCHAR)"
  },
  {
    "answer": "SELECT performer FROM table_name_22 WHERE points = 57",
    "question_en": "Who scored 57 points?",
    "question_th": "ใครได้ 57 คะแนน?",
    "context": "CREATE TABLE table_name_22 (performer VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_name_44 WHERE performer = \"nigel connell\"",
    "question_en": "How many points did Nigel Connell have?",
    "question_th": "ไนเจล คอนเนลล์ มีกี่แต้ม?",
    "context": "CREATE TABLE table_name_44 (points VARCHAR, performer VARCHAR)"
  },
  {
    "answer": "SELECT SUM(draw) FROM table_name_91 WHERE performer = \"gary o'shaughnessy\"",
    "question_en": "How many draws did gary o'shaughnessy have?",
    "question_th": "gary o'shaughnessy มีกี่แต้ม?",
    "context": "CREATE TABLE table_name_91 (draw INTEGER, performer VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_19 WHERE week = 18",
    "question_en": "What is the Attendance with a Week that is 18?",
    "question_th": "ผู้เข้าร่วมในสัปดาห์ที่ 18 คืออะไร?",
    "context": "CREATE TABLE table_name_19 (attendance VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_69 WHERE date = \"november 1, 1993\"",
    "question_en": "What Attendance has a Date that is november 1, 1993?",
    "question_th": "ผู้เข้าร่วมประชุมวันใดคือวันที่ 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_en": "What is the Record with a Game Site that is joe robbie stadium?",
    "question_th": "บันทึกกับเว็บไซต์เกมที่เป็นสนามกีฬาโจร็อบบี้คืออะไร?",
    "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_en": "What is the sum of Silver with a Bronze that is larger than 0 with a Gold smaller than 0?",
    "question_th": "ผลรวมของเงินกับทองแดงที่มากกว่า 0 และทองน้อยกว่า 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_en": "What is the average Silver with a Total that is smaller than 1?",
    "question_th": "เงินเฉลี่ยที่มียอดรวมน้อยกว่า 1 คืออะไร?",
    "context": "CREATE TABLE table_name_97 (silver INTEGER, total INTEGER)"
  },
  {
    "answer": "SELECT MIN(rank) FROM table_name_43 WHERE nation = \"east germany\"",
    "question_en": "What is the lowest Rank with a Nation that is east germany?",
    "question_th": "อันดับต่ำสุดของประเทศที่เป็นเยอรมนีตะวันออกคืออะไร?",
    "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_en": "What is the total number of Established for soccer plated in kuntz stadium?",
    "question_th": "จำนวนการก่อตั้งสำหรับการแข่งขันฟุตบอลในสนามกีฬา Kuntz คือเท่าใด?",
    "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_en": "What is the Club that has an Established more than 2000 for soccer plated in kuntz stadium?",
    "question_th": "สโมสรที่ก่อตั้งมากกว่า 2000 สำหรับฟุตบอลในสนามกีฬา Kuntz คืออะไร?",
    "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_en": "What is the highest Established for the kuntz stadium?",
    "question_th": "อะไรคือสิ่งที่สร้างขึ้นสูงสุดสำหรับสนาม Kuntz?",
    "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ärve\"",
    "question_en": "What is the highest number of titles won by the Järve club before 2013?",
    "question_th": "สโมสรJärveคว้าแชมป์ได้มากที่สุดก่อนปี 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_en": "What is the total number of losses against the Rajasthan Royals with more than 0 ties?",
    "question_th": "จำนวนการแพ้ทั้งหมดต่อ Rajasthan Royals ที่เสมอกันมากกว่า 0 คือเท่าใด?",
    "context": "CREATE TABLE table_name_57 (lost VARCHAR, opposition VARCHAR, tied VARCHAR)"
  },
  {
    "answer": "SELECT AVG(lost) FROM table_name_49 WHERE tied > 0",
    "question_en": "What is the average number of losses when there are more than 0 ties?",
    "question_th": "จำนวนการสูญเสียโดยเฉลี่ยเมื่อมีมากกว่า 0 เสมอกันคือเท่าไร?",
    "context": "CREATE TABLE table_name_49 (lost INTEGER, tied INTEGER)"
  },
  {
    "answer": "SELECT location FROM table_name_67 WHERE result = \"l 31-52\"",
    "question_en": "Which Location has a result of L 31-52?",
    "question_th": "ตำแหน่งใดมีผล 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_en": "What is the mean number of goals when the rank's less than 8 and there are 261 matches?",
    "question_th": "ถ้าอันดับต่ำกว่า 8 ทำได้ 261 นัด เฉลี่ยเท่าไหร่?",
    "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_en": "Which years had a rank of more than 6 and involved Oleksandr Kosyrin?",
    "question_th": "ปีใดมีอันดับมากกว่า 6 และเกี่ยวข้องกับ 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_en": "What is the Date when the label was alfa records, and a Catalog of alca-487?",
    "question_th": "วันที่ที่ฉลากเป็น alfa records และ Catalog ของ 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_en": "What is the Format when Alfa records is the label, and there is a Catalog of alca-9016?",
    "question_th": "รูปแบบคืออะไรเมื่อ Alfa records เป็นป้ายกำกับและมี Catalog ของ 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_en": "What is the Region with a Catalog of alca-487?",
    "question_th": "ภูมิภาคที่มีแคตตาล็อกของ 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_en": "What is the Catalog when the format is ed remaster cd, and a Label of village records, and a Date of march 13, 2002?",
    "question_th": "แค็ตตาล็อกคืออะไรเมื่ออยู่ในรูปแบบ ed remaster cd และป้ายกำกับบันทึกหมู่บ้าน และวันที่ 13 มีนาคม 2545",
    "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_en": "What is the Format for the alca-487 catalog?",
    "question_th": "รูปแบบของแคตตาล็อก alca-487 คืออะไร?",
    "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_en": "What is the Format for the alfa records Label, and a Catalog of alca-9016?",
    "question_th": "รูปแบบของป้ายกำกับ alfa records และแคตตาล็อกของ 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_en": "Which Rank has a Total of 1 and a Bronze larger than 0?",
    "question_th": "อันดับใดที่มีคะแนนรวมเป็น 1 และเหรียญทองแดงมากกว่า 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_en": "What kind of Silver has a Nation of norway and a Gold smaller than 3?",
    "question_th": "เงินประเภทใดที่มีประเทศนอร์เวย์และทองน้อยกว่า 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_en": "Which Silver has a Total smaller than 2 and a Rank larger than 8",
    "question_th": "เงินใดมีคะแนนรวมน้อยกว่า 2 และมีอันดับมากกว่า 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_en": "What kind of Rank has a Bronze of 0 and a Total smaller than 3 and a Nation of austria?",
    "question_th": "อันดับประเภทใดที่มีเหรียญทองแดงเป็น 0 และคะแนนรวมน้อยกว่า 3 และประเทศออสเตรีย",
    "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_en": "What final score was there on October 8, 2006?",
    "question_th": "คะแนนสุดท้ายเมื่อวันที่ 8 ตุลาคม พ.ศ. 2549 เป็นเท่าใด",
    "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_en": "Which final opponent's surface was hard (i) and participated on October 9, 2005?",
    "question_th": "พื้นผิวของคู่ต่อสู้คนสุดท้ายใดที่ยาก (i) และเข้าร่วมในวันที่ 9 ตุลาคม พ.ศ. 2548",
    "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–12\"",
    "question_en": "Who was the opponent at the game with a result of W 13–12?",
    "question_th": "คู่ต่อสู้ในเกมด้วยผล W 13–12 คือใคร?",
    "context": "CREATE TABLE table_name_83 (opponent VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_90 WHERE opponent = \"chicago bears\"",
    "question_en": "What was the date of the game against the Chicago Bears?",
    "question_th": "วันที่ของเกมกับ 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_en": "Which Entrant had the Bugatti T35B Chassis and the Driver, Heinrich-Joachim Von Morgen?",
    "question_th": "ผู้เข้าแข่งขันคนใดมีแชสซี Bugatti T35B และคนขับ 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_en": "What was the Engine, when the Chassis was Bugatti T51, and when the Entrant was a Private Entry?",
    "question_th": "เครื่องยนต์คืออะไร เมื่อแชสซีคือ Bugatti T51 และเมื่อใดที่ผู้เข้าร่วมเป็นรายการส่วนตัว",
    "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_en": "Who was the Driver, when the Chassis was Bugatti T51, and when the Entrant was Automobiles Ettore Bugatti?",
    "question_th": "ใครคือผู้ขับขี่ เมื่อแชสซีคือ Bugatti T51 และเมื่อผู้เข้าร่วมคือรถยนต์ 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_en": "Who was the Driver, when the Engine was 7.1 l6, and when the Chassis was Mercedes-Benz SSK l?",
    "question_th": "ใครคือผู้ขับขี่ เมื่อเครื่องยนต์เป็น 7.1 ลิตร 6 และเมื่อใดที่แชสซีคือ 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_en": "Can you tell me the sum of Draws that has the Against larger than 1106, and the Wins larger than 13?",
    "question_th": "คุณช่วยบอกผลรวมของเสมอที่มี Against มากกว่า 1106 และชนะมากกว่า 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_en": "Can you tell me the lowest Wins that has the Ballarat FL of daylesford, and the Byes smaller than 1?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าการชนะต่ำสุดที่มี Ballarat FL ของ daylesford และ Byes น้อยกว่า 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_en": "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?",
    "question_th": "คุณช่วยบอกฉันได้ไหมว่าค่าสูงสุดต่อต้านที่มีการสูญเสียมากกว่า 9 และบายส์ของ 2 และเสมอมากกว่า 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_en": "Can you tell me the sum of Draws that had the Wins smaller than 3, and the Byes larger than 2?",
    "question_th": "คุณช่วยบอกผลรวมของการเสมอที่ชนะน้อยกว่า 3 และบายมากกว่า 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_en": "Which Yards has a Long smaller than 3?",
    "question_th": "หลาใดมีความยาวน้อยกว่า 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_en": "What is Regulator, when Conduct of Litigation is Yes, and when Probate Activities is Yes?",
    "question_th": "ผู้ควบคุมดูแลคืออะไร เมื่อการดำเนินคดีเป็นใช่ และเมื่อกิจกรรมภาคทัณฑ์เป็นใช่",
    "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_en": "What is Reserved Instruments, when Conduct of Litigation is Yes, and when Probate Activities is No?",
    "question_th": "เครื่องมือที่สงวนไว้คืออะไร เมื่อการดำเนินคดีเป็นใช่ และเมื่อกิจกรรมภาคทัณฑ์เป็นไม่ใช่",
    "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_en": "What is Administration of Oaths, when Rights of Audience is Yes, and when Reserved Instruments is Yes?",
    "question_th": "การบริหารคำสาบานคืออะไร เมื่อสิทธิ์ของผู้ชมเป็นใช่ และเมื่อใดที่เครื่องมือที่สงวนไว้คือใช่",
    "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_en": "What is Reserved Instruments, when Conduct of Litigation is Yes, and when Probate Activities is Yes?",
    "question_th": "เครื่องมือที่สงวนไว้คืออะไร เมื่อการดำเนินคดีเป็นใช่ และเมื่อกิจกรรมภาคทัณฑ์เป็นใช่",
    "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_en": "What is Probate Activities, when Reserved Instruments is No, and when Regulator is Chartered Institute of Legal Executives?",
    "question_th": "กิจกรรมภาคทัณฑ์คืออะไร เมื่อเครื่องมือที่สงวนไว้เป็นไม่มี และเมื่อหน่วยงานกำกับดูแลคือ 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_en": "What is Probate Activities, when Notarial Activities is No, when Conduct of Litigation is Yes, and when Regulator is Association of Law Costs Draftsmen?",
    "question_th": "กิจกรรมภาคทัณฑ์คืออะไร เมื่อกิจกรรมการรับรองเอกสารเป็นไม่ใช่ เมื่อการดำเนินคดีเป็นใช่ และเมื่อหน่วยงานกำกับดูแลเป็นสมาคมผู้ร่างค่าใช้จ่ายทางกฎหมาย",
    "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_en": "What is the highest attendance for the game after week 1 against the New York Jets?",
    "question_th": "ผู้เข้าชมเกมสูงสุดหลังสัปดาห์ที่ 1 กับนิวยอร์ก เจ็ตส์คือเท่าใด",
    "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_en": "What is the average of player Matthew Elliott (vic)?",
    "question_th": "ค่าเฉลี่ยของผู้เล่น แมทธิว เอลเลียต (วิค) คือเท่าไร?",
    "context": "CREATE TABLE table_name_63 (average VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT runs FROM table_name_84 WHERE rank = \"4\"",
    "question_en": "How many runs were ranked 4?",
    "question_th": "อันดับ 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_en": "Which formula has a refractive index 589.3 at 1.97?",
    "question_th": "สูตรใดมีดัชนีการหักเหของแสง 589.3 ที่ 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_en": "What is Country of Origin, when Type is Disposable, when Primary Cartridge is 105mm, and when Year of Intro is less than 2008?",
    "question_th": "ประเทศต้นกำเนิดคืออะไร เมื่อเป็นประเภทแบบใช้แล้วทิ้ง เมื่อตลับหมึกหลักคือ 105 มม. และเมื่อปีแนะนำน้อยกว่าปี 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_en": "What is Country of Origin, when Year of Intro is 1977?",
    "question_th": "ประเทศต้นกำเนิดคืออะไร เมื่อปีเริ่มต้นคือปี 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_en": "What is Country of Origin, when Year of Intro is greater than 1985, and when Primary Cartridge is 125mm?",
    "question_th": "ประเทศต้นกำเนิดคืออะไร เมื่อปีแนะนำมากกว่าปี 1985 และเมื่อตลับหมึกหลักคือ 125 มม.",
    "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_en": "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?",
    "question_th": "จำนวนปีเริ่มต้นทั้งหมดคือเท่าใด เมื่อประเทศต้นกำเนิดคือสหภาพโซเวียต เมื่อประเภทสามารถนำมาใช้ซ้ำได้ เมื่อคาร์ทริดจ์หลักคือ 40 มม. และเมื่อชื่อ/การกำหนดเป็น 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_en": "Who was at Home at the Bucharest Venue with a Score of 9-9?",
    "question_th": "ใครอยู่บ้านที่สนามบูคาเรสต์ด้วยคะแนน 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_en": "What date were Romania at Home at the Bucharest Venue with a Score of 13-19?",
    "question_th": "โรมาเนียอยู่บ้านที่สนามบูคาเรสต์วันที่เท่าไหร่ด้วยคะแนน 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_en": "Who was at Home when the Score was 13-19?",
    "question_th": "ใครอยู่บ้านเมื่อสกอร์ 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ė\" AND place > 14",
    "question_en": "What draw average has a televote less than 633 and Vilma Voroblevaitė as artist and the place is greater than 14?",
    "question_th": "ค่าเฉลี่ยการจับสลากใดมีผู้ถ่ายทอดสดน้อยกว่า 633 และ Vilma Voroblevaitė ในฐานะศิลปินและสถานที่มากกว่า 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_en": "Artist Justinas Lapatinskas with a draw of greater than 9 got what as the highest televote?",
    "question_th": "ศิลปิน Justinas Lapatinskas ที่มีคะแนนมากกว่า 9 ได้อะไรเป็นรายการโทรทัศน์สูงสุด?",
    "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_en": "What is the total of televote for the artist Pokeris when the place was less than 10?",
    "question_th": "จำนวนการโหวตทางโทรทัศน์ทั้งหมดสำหรับศิลปิน Pokeris เมื่อสถานที่นั้นน้อยกว่า 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_en": "With a draw greater than 11 and the place smaller than 4 what was the televote?",
    "question_th": "ด้วยการเสมอที่มากกว่า 11 และอันดับที่น้อยกว่า 4 รายการโทรทัศน์คืออะไร?",
    "context": "CREATE TABLE table_name_96 (televote VARCHAR, draw VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT agg FROM table_name_49 WHERE opponent = \"koper\"",
    "question_en": "What was the aggregate total for the match against Koper?",
    "question_th": "ผลรวมของการแข่งขันกับโคเปอร์เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_49 (agg VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT canadian_championship FROM table_name_6 WHERE concacaf_champions_league = \"semifinals\"",
    "question_en": "What Canadian Championship had CONCACAF Champions League of semifinals?",
    "question_th": "การแข่งขันชิงแชมป์แคนาดารายการใดที่มี CONCACAF Champions League ในรอบรองชนะเลิศ?",
    "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_en": "Which regular season had the playoffs of 0 mls cups?",
    "question_th": "ฤดูกาลปกติใดที่มีรอบตัดเชือกถ้วย 0 มล.?",
    "context": "CREATE TABLE table_name_87 (regular_season VARCHAR, playoffs VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_93 WHERE goal = 16",
    "question_en": "What was the score with a goal of 16?",
    "question_th": "โดยทำประตูที่ 16 ได้เท่าไหร่?",
    "context": "CREATE TABLE table_name_93 (score VARCHAR, goal VARCHAR)"
  },
  {
    "answer": "SELECT MAX(super_g) FROM table_name_46 WHERE season > 1996",
    "question_en": "What is the highest Super G, when Season is later than 1996?",
    "question_th": "Super G ที่สูงที่สุดคืออะไรเมื่อซีซั่นช้ากว่าปี 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_en": "What is Combined, when Super G is less than 10, and when Overall is less than 4?",
    "question_th": "ผลรวมคืออะไร เมื่อ Super G น้อยกว่า 10 และเมื่อผลรวมน้อยกว่า 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_en": "What is the highest Season, when Super G is 19?",
    "question_th": "ฤดูกาลสูงสุดคือเมื่อ Super G อายุ 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_en": "What outlet has and in-state area of 055 1,497km 2 578mi 2?",
    "question_th": "มีร้านไหนและอยู่ในพื้นที่ของรัฐ 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_en": "What is the total area of the Arkansas River outlet with a % in-state of a021 100%?",
    "question_th": "พื้นที่ทั้งหมดของทางออกแม่น้ำอาร์คันซอที่มี % ในสถานะ 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_en": "With an outlet of Colorado River and a % instate of a038 84.8% what is in-state area?",
    "question_th": "ด้วยทางออกของแม่น้ำโคโลราโดและ % รัฐ a038 84.8% พื้นที่ในรัฐคืออะไร?",
    "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_en": "What is the in-state area with an outlet of South Platte River and Big Thompson river as the basin?",
    "question_th": "พื้นที่ในรัฐที่มีแม่น้ำ South Platte และแม่น้ำ Big Thompson เป็นลุ่มน้ำคืออะไร",
    "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_en": "With an in-state area of 053 1,654km 2 639mi 2, what is the total area?",
    "question_th": "ด้วยพื้นที่ในรัฐ 053 1,654 กม. 2 639 ไมล์ 2 พื้นที่ทั้งหมดเป็นเท่าใด",
    "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_en": "What is the name of the basin with an in-state area of 071 238km 2 92mi 2?",
    "question_th": "แอ่งน้ำที่มีพื้นที่ในรัฐ 071 238 กม. 2 92 ไมล์ 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_en": "What was the transfer fee for the player ending in 2011 and moving from Thrasyvoulos?",
    "question_th": "ค่าธรรมเนียมการโอนของนักเตะที่สิ้นสุดในปี 2011 และย้ายจากธราซีวูลอสคือเท่าไร?",
    "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_en": "What was the transfer fee for the player moving in the winter window and ending in a year after 2010?",
    "question_th": "ค่าธรรมเนียมการโอนสำหรับนักเตะที่ย้ายในช่วงตลาดฤดูหนาวและสิ้นสุดในหนึ่งปีหลังจากปี 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_en": "Can you tell me the lowest Week that has the Attendance smaller than 34,336?",
    "question_th": "คุณช่วยบอกหน่อยได้ไหมว่าสัปดาห์ต่ำสุดที่มีผู้เข้าร่วมน้อยกว่า 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_en": "Who was the opponents in the final that was played on April 16, 2006 and the outcome was runner-up?",
    "question_th": "คู่ต่อสู้ในรอบชิงชนะเลิศที่เล่นเมื่อวันที่ 16 เมษายน พ.ศ. 2549 คือใคร และผลการแข่งขันได้รองชนะเลิศ?",
    "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–1, 1–6, 7–6(4)\"",
    "question_en": "Who were the opponents in the final when the game was played on hard surface and the score of the final was 6–1, 1–6, 7–6(4)?",
    "question_th": "ใครคือคู่ต่อสู้ในรอบชิงชนะเลิศเมื่อเล่นเกมบนพื้นแข็งและคะแนนของรอบชิงชนะเลิศคือ 6–1, 1–6, 7–6(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_en": "Which date's margin of victory was 3 and 2?",
    "question_th": "ระยะขอบแห่งชัยชนะของวันไหนคือ 3 และ 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_en": "What is the to par when the winning score was 67-68-70-66=271?",
    "question_th": "จะต้องพาร์เท่าไรเมื่อคะแนนชนะคือ 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_en": "What is the to par when the tournament involved was the Transitions Championship?",
    "question_th": "อะไรคือสิ่งที่จะต้องเสมอเมื่อการแข่งขันที่เกี่ยวข้องกับ 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_en": "On what date was the Transitions Championship?",
    "question_th": "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_en": "Who was the runner-up on Jul 14, 1968?",
    "question_th": "รองชนะเลิศวันที่ 14 ก.ค. 2511 คือใคร?",
    "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_en": "What is the winning score of the tournament with Charles Coody as the runner-up?",
    "question_th": "คะแนนชนะของทัวร์นาเมนท์โดยมีชาร์ลส คูดี้เป็นรองแชมป์คือเท่าไร?",
    "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_en": "What is the 2011 value of the French Open, which has a 2006 value of A?",
    "question_th": "มูลค่าปี 2011 ของเฟรนช์โอเพ่น ซึ่งมีมูลค่าปี 2006 เป็น A เป็นเท่าใด",
    "context": "CREATE TABLE table_name_2 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_13 WHERE 2006 = \"a\" AND 2011 = \"1r\"",
    "question_en": "What is the tournament with a 2006 value of A and a 2011 value of 1r?",
    "question_th": "อะไรคือทัวร์นาเมนต์ที่มีมูลค่า A ในปี 2549 และมูลค่า 1r ในปี 2554?",
    "context": "CREATE TABLE table_name_13 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2007 FROM table_name_16 WHERE tournament = \"us open\"",
    "question_en": "What is the 2007 value of the US Open?",
    "question_th": "มูลค่าของ US Open ในปี 2550 เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_16 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_59 WHERE 2006 = \"a\" AND 2011 = \"3r\"",
    "question_en": "What is the tournament with a 2006 value of A and a 2011 value of 3r?",
    "question_th": "อะไรคือทัวร์นาเมนต์ที่มีมูลค่า A ในปี 2549 และมูลค่า 3r ในปี 2554?",
    "context": "CREATE TABLE table_name_59 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT catalog FROM table_name_47 WHERE region = \"germany\"",
    "question_en": "What Catalog was released in Germany?",
    "question_th": "แคตตาล็อกใดที่เผยแพร่ในเยอรมนี",
    "context": "CREATE TABLE table_name_47 (catalog VARCHAR, region VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_name_5 WHERE catalog = \"magik muzik 805-5\"",
    "question_en": "What Region was the Catalog magik muzik 805-5 released in?",
    "question_th": "แคตตาล็อก magik muzik 805-5 เปิดตัวในภูมิภาคใด",
    "context": "CREATE TABLE table_name_5 (region VARCHAR, catalog VARCHAR)"
  },
  {
    "answer": "SELECT SUM(date) FROM table_name_71 WHERE catalog = \"nebbc003\"",
    "question_en": "What is the total number of Dates during which the Catalog nebbc003 was given?",
    "question_th": "จำนวนวันที่ทั้งหมดที่ได้รับแค็ตตาล็อก nebbc003 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_71 (date INTEGER, catalog VARCHAR)"
  },
  {
    "answer": "SELECT MAX(population_per_km²__2009_) FROM table_name_33 WHERE province = \"western province\" AND area__km²_ > 5 OFFSET 475",
    "question_en": "What is the highest Population per km² (2009) that is in western province, with an Area (km²) larger than 5,475?",
    "question_th": "อะไรคือจำนวนประชากรสูงสุดต่อกิโลเมตร² (2009) ที่อยู่ในจังหวัดทางตะวันตก โดยมีพื้นที่ (km²) มากกว่า 5,475",
    "context": "CREATE TABLE table_name_33 (population_per_km²__2009_ INTEGER, province VARCHAR, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT MIN(population_per_km²__2009_) FROM table_name_21 WHERE province = \"solomon islands\" AND area__km²_ < 28 OFFSET 400",
    "question_en": "What is the lowest Population per km² (2009) that has a Solomon Islands province, with an Area (km²) smaller than 28,400?",
    "question_th": "อะไรคือจำนวนประชากรต่ำสุดต่อกิโลเมตร² (2009) ที่มีจังหวัดในหมู่เกาะโซโลมอน โดยมีพื้นที่ (km²) น้อยกว่า 28,400?",
    "context": "CREATE TABLE table_name_21 (population_per_km²__2009_ INTEGER, province VARCHAR, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_92 WHERE year = 2005",
    "question_en": "What Team was in 2005?",
    "question_th": "ปี 2548 อยู่ทีมอะไร?",
    "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_en": "Before 2008, if the Manufacturer is dodge and the start is under 9, what's the highest finish time?",
    "question_th": "ก่อนปี 2008 หากผู้ผลิตหลบหลีกและการออกตัวต่ำกว่า 9 เวลาสิ้นสุดสูงสุดคือเท่าใด",
    "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_en": "When the team is penske and they start under 9, what's the average finish time?",
    "question_th": "เมื่อทีมเป็นเพนเก และพวกเขาออกสตาร์ตต่ำกว่า 9 เสมอ เวลาจบเฉลี่ยคือเท่าไร?",
    "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_en": "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?",
    "question_th": "ผลรวมของทองคำ เมื่อผลรวมมากกว่า 2 เมื่อทองแดงมากกว่า 1 และเมื่อเงินน้อยกว่า 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_en": "What is the sum of Gold, when Total is less than 1?",
    "question_th": "ผลรวมของทองคำเมื่อผลรวมน้อยกว่า 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_en": "What is the average Total, when Gold is 0, and when Nation is Iran?",
    "question_th": "ผลรวมโดยเฉลี่ยคือเท่าใด เมื่อทองคำเป็น 0 และเมื่อประเทศคืออิหร่าน",
    "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_en": "What is the sum of Total, when Nation is West Germany, and when Gold is greater than 2?",
    "question_th": "ผลรวมของผลรวมเมื่อประเทศคือเยอรมนีตะวันตก และเมื่อทองคำมากกว่า 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_en": "What is the average Total, when Gold is less than 0?",
    "question_th": "ยอดรวมเฉลี่ยคือเท่าใด เมื่อทองคำน้อยกว่า 0?",
    "context": "CREATE TABLE table_name_12 (total INTEGER, gold INTEGER)"
  },
  {
    "answer": "SELECT content FROM table_name_58 WHERE television_service = \"vesti\"",
    "question_en": "What is the content of the Television service of Vesti?",
    "question_th": "เนื้อหาของบริการโทรทัศน์ของ 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_en": "Which Television service has a Content of general television?",
    "question_th": "บริการโทรทัศน์ใดมีเนื้อหาเกี่ยวกับโทรทัศน์ทั่วไป?",
    "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_en": "Which Administrative district has a Pre-1009 province of gwannae -do and a Post-1009 province of seohae -do?",
    "question_th": "เขตปกครองใดมีจังหวัดก่อนปี 1009 คือ กวานแน -โด และจังหวัดหลังปี 1009 คือ ซอแฮ -โด",
    "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_en": "What kind of Modern equivalent that has a Pre-1009 province of sakbang -do, and a Province of Silla of sakju?",
    "question_th": "สมัยใหม่แบบไหนที่เทียบเท่ากับจังหวัดซักบังโดก่อนปี 1009 และจังหวัดซิลลาซักจู?",
    "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_en": "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?",
    "question_th": "จังหวัดสมัยใหม่ที่เทียบเท่ากันแบบใดที่มีจังหวัดหลังปี 1009 คือ gyeongsang -do และเขตบริหารของ jinju -mok และจังหวัด Silla ของ 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_en": "WHat kind of Province of Silla has a Modern equivalent of pyeongan?",
    "question_th": "จังหวัดชิลลาประเภทใดที่เทียบเท่ากับพย็องอันสมัยใหม่?",
    "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_en": "Which Pre-1009 province has a Post-1009 province of donggye?",
    "question_th": "จังหวัดใดก่อนปี 1009 มีจังหวัดหลังปี 1009 เป็นดองกเย?",
    "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_en": "WHich Province of Silla has a Modern equivalent of south jeolla, and a Administrative district of seungju?",
    "question_th": "จังหวัดซิลลาใดที่มีความทันสมัยเทียบเท่ากับจอลลาใต้ และเขตปกครองของซึงจู",
    "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_en": "What was the lowest year that a player from midfield won first team honors?",
    "question_th": "ปีต่ำสุดที่ผู้เล่นจากกองกลางได้รับรางวัลทีมชุดใหญ่คือปีใด?",
    "context": "CREATE TABLE table_name_12 (year INTEGER, team VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_52 WHERE tournament = \"munich, germany\"",
    "question_en": "What is the date of the munich, germany tournament?",
    "question_th": "การแข่งขันมิวนิค เยอรมนี วันที่เท่าไร?",
    "context": "CREATE TABLE table_name_52 (date VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_84 WHERE date = \"october 27, 2003\"",
    "question_en": "What tournament is on October 27, 2003?",
    "question_th": "การแข่งขันอะไรในวันที่ 27 ตุลาคม พ.ศ. 2546?",
    "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_en": "Who is the opponent in the final of the tournament on May 22, 2006?",
    "question_th": "คู่ต่อสู้ในรอบชิงชนะเลิศของทัวร์นาเมนต์วันที่ 22 พฤษภาคม 2549 คือใคร?",
    "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_en": "What is the surface of the tournament with david nalbandian as the opponent in the final?",
    "question_th": "อะไรคือพื้นผิวของทัวร์นาเมนต์ที่มีดาวิด นัลบานเดียน เป็นคู่ต่อสู้ในรอบชิงชนะเลิศ?",
    "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_en": "Who was the player from the United States with a score of 70-70-71=211?",
    "question_th": "นักเตะจากสหรัฐอเมริกาคือใครด้วยคะแนน 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_en": "What place was Dave Stockton when he had a to par of +1?",
    "question_th": "Dave Stockton อยู่ที่ไหนเมื่อเขามีพาร์ +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_en": "Who had a to par of +2 and a score of 78-69-68=215?",
    "question_th": "ใครได้พาร์ +2 และสกอร์ 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_en": "What was Tom Kite's to par?",
    "question_th": "Tom Kite's ได้อะไร?",
    "context": "CREATE TABLE table_name_63 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_67 WHERE place = \"t3\"",
    "question_en": "What was the score of T3 place?",
    "question_th": "อันดับ T3 ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_67 (score VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT Leading AS scorer FROM table_name_45 WHERE score = \"68-79\"",
    "question_en": "Leading scorer during the game of 68-79?",
    "question_th": "ผู้ทำประตูสูงสุดในเกมที่ 68-79?",
    "context": "CREATE TABLE table_name_45 (Leading VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT runner_up FROM table_name_27 WHERE city = \"milwaukee\"",
    "question_en": "Who is the runner-up from Milwaukee?",
    "question_th": "ใครคือรองชนะเลิศจากมิลวอกี?",
    "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_en": "What was the oil pattern for runner-up Pete Weber?",
    "question_th": "รูปแบบน้ำมันของรองแชมป์ 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_en": "What city was the Dick Weber Open in?",
    "question_th": "Dick Weber Open จัดขึ้นที่เมืองใด",
    "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_en": "What city had the chameleon oil pattern at the Go RV'ing Classic?",
    "question_th": "เมืองใดมีลวดลายน้ำมันกิ้งก่าในงาน 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_en": "What notes are for years earlier than 2010?",
    "question_th": "หมายเหตุสำหรับปีก่อนหน้าปี 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_en": "What competition took place in a year later than 2009 with team notes?",
    "question_th": "การแข่งขันใดเกิดขึ้นในหนึ่งปีหลังจากปี 2552 โดยมีบันทึกของทีม?",
    "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_en": "What was the position in 2010 with team notes?",
    "question_th": "ตำแหน่งในปี 2010 พร้อมบันทึกของทีมคืออะไร?",
    "context": "CREATE TABLE table_name_90 (position VARCHAR, year VARCHAR, notes VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_name_51 WHERE tournament = \"beijing\"",
    "question_en": "What is the lowest Year, when Tournament is \"Beijing\"?",
    "question_th": "ปีต่ำสุดคือเมื่อทัวร์นาเมนต์คือ \"ปักกิ่ง\"?",
    "context": "CREATE TABLE table_name_51 (year INTEGER, tournament VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_11 WHERE year = 2013",
    "question_en": "What is Winner, when Year is 2013?",
    "question_th": "Winner คืออะไร เมื่อถึงปี 2013?",
    "context": "CREATE TABLE table_name_11 (winner VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_61 WHERE tournament = \"paris\"",
    "question_en": "What is Round, when Tournament is \"Paris\"?",
    "question_th": "รอบคืออะไร เมื่อทัวร์นาเมนต์คือ \"ปารีส\"?",
    "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_en": "What is Round, when Winner is \"Ivanovic\", when Year is less than 2008, and when Tournament is \"Paris\"?",
    "question_th": "Round คืออะไร เมื่อผู้ชนะคือ \"Ivanovic\" เมื่อปีน้อยกว่าปี 2008 และเมื่อการแข่งขันคือ \"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_en": "What is Score, when Year is before 2007, and when Tournament is \"Sydney\"?",
    "question_th": "คะแนนคืออะไร เมื่อปีก่อนปี 2550 และเมื่อใดที่ทัวร์นาเมนต์คือ \"ซิดนีย์\"",
    "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_en": "What is the lowest crowd of the west coast home team?",
    "question_th": "ทีมเหย้าฝั่งตะวันตกมีฝูงชนน้อยที่สุดคือทีมใด?",
    "context": "CREATE TABLE table_name_86 (crowd INTEGER, home_team VARCHAR)"
  },
  {
    "answer": "SELECT ground FROM table_name_74 WHERE away_team = \"geelong\"",
    "question_en": "What is the ground of the Geelong Away team?",
    "question_th": "พื้นฐานของทีมจีลองอะเวย์คืออะไร?",
    "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_en": "What team has more than 49 laps and a grid of 8?",
    "question_th": "ทีมใดมีมากกว่า 49 รอบและมีตาราง 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_en": "What is the grid sum with more than 50 laps?",
    "question_th": "ผลรวมกริดที่มากกว่า 50 รอบเป็นเท่าใด",
    "context": "CREATE TABLE table_name_16 (grid INTEGER, laps INTEGER)"
  },
  {
    "answer": "SELECT track FROM table_name_47 WHERE year = 1978",
    "question_en": "What's the track for 1978?",
    "question_th": "เส้นทางในปี 1978 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_47 (track VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT track FROM table_name_18 WHERE year = 1982",
    "question_en": "What's the track for 1982?",
    "question_th": "เส้นทางในปี 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_en": "What was the highest long with less than 7 losses and an Avg/G smaller than 25.1?",
    "question_th": "อะไรคือความยาวสูงสุดโดยขาดทุนน้อยกว่า 7 ครั้งและค่าเฉลี่ย/G น้อยกว่า 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_en": "What was Rock Cartwright's highest long with more than 11 losses?",
    "question_th": "อะไรคือระยะเวลาสูงสุดของ Rock Cartwright ที่มีการแพ้มากกว่า 11 ครั้ง?",
    "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_en": "What is the Company Name, when the Accreditation Level is Joyn Hot Fixes, and when the Accreditation Status is Approved (Awarded 17.05.13)?",
    "question_th": "ชื่อบริษัทคืออะไร เมื่อระดับการรับรองเป็น Joyn Hot Fixes และเมื่อสถานะการรับรองได้รับการอนุมัติ (ได้รับรางวัล 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_en": "What is the Accreditation Type, when the Accreditation Level is Joyn, and when the Hardware Model is Nokia 700?",
    "question_th": "ประเภทการรับรองคืออะไร เมื่อระดับการรับรองคือ Joyn และรุ่นฮาร์ดแวร์คือ 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_en": "What is the Accreditation Status, when the Product Name is LG RCS-e Client?",
    "question_th": "สถานะการรับรองระบบจะเป็นอย่างไร เมื่อชื่อผลิตภัณฑ์คือ 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_en": "What is the Company Name, when the Accreditation Status is Approved (Valid Until 03.07.13)?",
    "question_th": "ชื่อบริษัทคืออะไร เมื่อสถานะการรับรองระบบได้รับการอนุมัติ (ใช้ได้จนถึง 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_en": "What is the Accreditation Level, when the Hardware Model is GT-I9100?",
    "question_th": "ระดับการรับรองคืออะไร เมื่อรุ่นฮาร์ดแวร์คือ 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_en": "What is the Product Name, when the Company Name is HTC Corporation?",
    "question_th": "ชื่อผลิตภัณฑ์คืออะไร เมื่อชื่อบริษัทคือ 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_en": "What was the most recent year the venue was Barcelona, Spain?",
    "question_th": "ปีล่าสุดที่จัดคือเมืองบาร์เซโลนา ประเทศสเปน คือปีใด",
    "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_en": "Wat was the result for the 20 km after 2008 when the venue was Metz, France?",
    "question_th": "ผลลัพธ์สำหรับระยะทาง 20 กม. หลังจากปี 2008 เมื่อสถานที่จัดงานคือเมืองเมตซ์ ประเทศฝรั่งเศส คืออะไร?",
    "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_en": "What is the date of the match with sheffield wednesday as the away team?",
    "question_th": "แมตช์กับเชฟฟิลด์วันพุธเป็นทีมเยือนวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_62 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT swimsuit FROM table_name_19 WHERE interview = \"8.626 (5)\"",
    "question_en": "what is the swimsuit score when the interview score is 8.626 (5)?",
    "question_th": "คะแนนชุดว่ายน้ำเมื่อคะแนนสัมภาษณ์ 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_en": "what is the swimsuit score when the semifinal average score is 8.367 (10)?",
    "question_th": "คะแนนชุดว่ายน้ำเมื่อคะแนนเฉลี่ยรอบรองชนะเลิศคือ 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_en": "what is the preliminary average score when the evening gown score is 8.774 (6)?",
    "question_th": "คะแนนเฉลี่ยเบื้องต้นเมื่อคะแนนชุดราตรีอยู่ที่ 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_en": "what is the preliminary average score when the interview score is 8.600 (6)?",
    "question_th": "คะแนนเฉลี่ยเบื้องต้นเมื่อคะแนนสัมภาษณ์ 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_en": "what is the swimsuit score when evening gown score is 9.165 (3)?",
    "question_th": "คะแนนชุดว่ายน้ำ เมื่อคะแนนชุดราตรี 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_en": "what is the interview score when the preliminary average is 8.529 (6)?",
    "question_th": "คะแนนสัมภาษณ์เมื่อเฉลี่ยเบื้องต้น 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_en": "What is the average wins with 5 cuts and 1 in the top-10?",
    "question_th": "ค่าเฉลี่ยการชนะด้วยการตัด 5 ครั้งและ 1 ใน 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_en": "What is the sum of top-10 values for the Open Championship and less than 3 in the top-25?",
    "question_th": "ผลรวมของมูลค่า 10 อันดับแรกสำหรับ Open Championship และน้อยกว่า 3 ใน 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_en": "What is the smallest number of events with 24 cuts and less than 11 in the top-25?",
    "question_th": "อะไรคือเหตุการณ์ที่น้อยที่สุดที่มีการตัด 24 ครั้งและน้อยกว่า 11 ครั้งใน 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_en": "What is the largest number of events with the Masters Tournament and less than 4 in the top-25?",
    "question_th": "อะไรคือจำนวนกิจกรรมที่ใหญ่ที่สุดของ Masters Tournament และน้อยกว่า 4 รายการใน 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_en": "What was the record of the game played on November 7?",
    "question_th": "บันทึกของเกมที่เล่นในวันที่ 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_en": "What was the game number of the game played against Charlotte?",
    "question_th": "เกมที่เล่นกับชาร์ล็อตต์คือหมายเลขเกมใด",
    "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_en": "What venue held the 1966 fifa world cup qualification on may 7, 1965?",
    "question_th": "สถานที่ใดจัดการแข่งขันฟุตบอลโลกรอบคัดเลือกปี 1966 เมื่อวันที่ 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_en": "What was the result for the 1966 fifa world cup qualification in mexico city, mexico and a goal over 8?",
    "question_th": "ผลลัพธ์ของฟุตบอลโลกรอบคัดเลือกปี 1966 ที่เม็กซิโกซิตี้ ประเทศเม็กซิโก และประตูที่มากกว่า 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_en": "When was the venue mexico city, mexico with a goal of 8?",
    "question_th": "เมื่อใดที่สนามเม็กซิโกซิตี้ ประเทศเม็กซิโก โดยสกอร์ 8?",
    "context": "CREATE TABLE table_name_9 (date VARCHAR, venue VARCHAR, goal VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_62 WHERE score = 69",
    "question_en": "In what place was the golfer that had a score of 69?",
    "question_th": "นักกอล์ฟที่ได้คะแนน 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_en": "What was T3 player Lee Janzen's score?",
    "question_th": "คะแนนของผู้เล่น T3 Lee Janzen คืออะไร?",
    "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_en": "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?",
    "question_th": "จำนวนผู้เข้าร่วมต่ำสุดในปี 2013 เมื่อมีผู้เข้าร่วมมากกว่า 5 คนในปี 2010 ผู้เข้าร่วมน้อยกว่า 4 คนในปี 2012 และประเทศคือเยอรมนีคือเท่าใด",
    "context": "CREATE TABLE table_name_34 (country VARCHAR)"
  },
  {
    "answer": "SELECT AVG(2012) FROM table_name_19 WHERE 2013 < 8 AND 2011 = 7",
    "question_en": "What is the average number of participants in 2012 when there were less than 8 in 2013 and 7 in 2011?",
    "question_th": "จำนวนผู้เข้าร่วมโดยเฉลี่ยในปี 2555 โดยมีน้อยกว่า 8 ในปี 2556 และ 7 ในปี 2554 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_19 (Id VARCHAR)"
  },
  {
    "answer": "SELECT MIN(2012) FROM table_name_17 WHERE 2010 = 72 AND 2013 < 56",
    "question_en": "What is the lowest number of participants in 2012 when there were 72 in 2010 and less than 56 in 2013?",
    "question_th": "อะไรคือจำนวนผู้เข้าร่วมที่ต่ำที่สุดในปี 2555 โดยมี 72 คนในปี 2553 และน้อยกว่า 56 คนในปี 2556",
    "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_en": "What is the sum of participants in 2013 for Russia when there were 5 in 2010 and less than 4 in 2012?",
    "question_th": "จำนวนผู้เข้าร่วมในปี 2556 สำหรับรัสเซียเมื่อมี 5 คนในปี 2553 และน้อยกว่า 4 คนในปี 2555 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_99 (country VARCHAR)"
  },
  {
    "answer": "SELECT MIN(2010) FROM table_name_76 WHERE 2012 < 0",
    "question_en": "What is the lowest number of participants in 2010 when there were 0 participants in 2012?",
    "question_th": "จำนวนผู้เข้าร่วมต่ำสุดในปี 2010 เมื่อมีผู้เข้าร่วม 0 ในปี 2012 คือเท่าใด",
    "context": "CREATE TABLE table_name_76 (Id VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_14 WHERE date = \"november 29, 1959\"",
    "question_en": "What was the game result on November 29, 1959?",
    "question_th": "ผลการแข่งขันวันที่ 29 พฤศจิกายน 2502 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_14 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_85 WHERE opponent = \"pittsburgh steelers\"",
    "question_en": "What was the result for the game against the Pittsburgh Steelers?",
    "question_th": "ผลการแข่งขันกับพิตส์เบิร์ก สตีลเลอร์สเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_85 (result VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT stadium FROM table_name_91 WHERE team = \"vfb stuttgart ii\"",
    "question_en": "What is VFB Stuttgart II Team's Stadiuim?",
    "question_th": "สนามกีฬาของทีม VFB Stuttgart II คืออะไร?",
    "context": "CREATE TABLE table_name_91 (stadium VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT capacity FROM table_name_25 WHERE stadium = \"ernst-abbe-sportfeld\"",
    "question_en": "What is the Capacity of Ernst-Abbe-Sportfeld?",
    "question_th": "ความจุของ 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_en": "What is the Capacity of the Rainer Kraft's Stadium?",
    "question_th": "สนาม 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_en": "When did the Visiting San Antonio Spurs score 97-113?",
    "question_th": "ทีมเยือนซานอันโตนิโอ สเปอร์ส ทำสกอร์ 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_en": "When did the Houston Rockets play Home?",
    "question_th": "Houston Rockets เล่นในบ้านเมื่อไหร่?",
    "context": "CREATE TABLE table_name_48 (date VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT AVG(rank) FROM table_name_16 WHERE director = \"leonard nimoy\"",
    "question_en": "WHAT RANK DOES LEONARD NIMOY HAVE?",
    "question_th": "LEONARD NIMOY มีอันดับอะไร?",
    "context": "CREATE TABLE table_name_16 (rank INTEGER, director VARCHAR)"
  },
  {
    "answer": "SELECT SUM(rank) FROM table_name_93 WHERE director = \"martin brest\"",
    "question_en": "WHAT IS THE RANK OF MARTIN BREST?",
    "question_th": "อันดับของ 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_en": "WHAT IS THE STUDIO WITH A GROSS $81,198,894?",
    "question_th": "สตูดิโอที่มียอดรวม $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_en": "WHAT IS THE GROSS DOLLARS WITH A RANK OF 7 OR MORE, AND DIRECTOR BARRY LEVINSON?",
    "question_th": "อะไรคือเงินรวมที่มีอันดับ 7 ขึ้นไป และผู้อำนวยการแบร์รี่ เลวินสัน?",
    "context": "CREATE TABLE table_name_71 (gross VARCHAR, rank VARCHAR, director VARCHAR)"
  },
  {
    "answer": "SELECT gross FROM table_name_73 WHERE director = \"richard tuggle\"",
    "question_en": "WHAT IS THE GROSS WITH A DIRECTOR OF RICHARD TUGGLE?",
    "question_th": "ความสำเร็จของผู้กำกับของ 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_en": "Can you tell me the Score that has the Country of united states, and the Place of t2, and the Player of tom watson?",
    "question_th": "คุณช่วยบอกคะแนนที่มีประเทศสหรัฐอเมริกา และอันดับ 2 และผู้เล่นของทอม วัตสัน ให้ฉันหน่อยได้ไหม",
    "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_en": "Which Species has a Length (bp/aa) of 1154bp/358aa?",
    "question_th": "ชนิดใดที่มีความยาว (bp/aa) เท่ากับ 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_en": "What NCBI Accession Number (mRNA/Protein) has a Protein Identity of 69%?",
    "question_th": "หมายเลขภาคยานุวัติ NCBI (mRNA/โปรตีน) ใดมีโปรตีน 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_en": "What is the NCBI Accession Number (mRNA/Protein) for the homo sapiens Species?",
    "question_th": "หมายเลขภาคยานุวัติ NCBI (mRNA/โปรตีน) สำหรับสายพันธุ์ Homo sapiens คืออะไร",
    "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_en": "What is the NCBI Accession Number (mRNA/Protein) for the mus musculus Species?",
    "question_th": "หมายเลขภาคยานุวัติ NCBI (mRNA/โปรตีน) สำหรับชนิดของกล้ามเนื้อคืออะไร?",
    "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_en": "What was the winning score when the runner-up was Neal Briggs?",
    "question_th": "คะแนนชนะเมื่อรองชนะเลิศคือนีล บริกส์เป็นเท่าใด",
    "context": "CREATE TABLE table_name_9 (winning_score VARCHAR, runner_s__up VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_16 WHERE winning_score = –16(67 - 70 - 69 - 66 = 272)",
    "question_en": "What day was the winning score –16 (67-70-69-66=272)?",
    "question_th": "คะแนนชนะคือวันไหน –16 (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_en": "Who was the runner-up with the margin of victory of 8 strokes?",
    "question_th": "ใครคือรองแชมป์ด้วยชัยชนะ 8 จังหวะ?",
    "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_en": "For which tournament was Anthony Wall the runner-up?",
    "question_th": "Anthony Wall เป็นรองแชมป์ทัวร์นาเมนต์ใด",
    "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_en": "For which tournament was the margin of victory 7 strokes?",
    "question_th": "ทัวร์นาเมนต์ใดที่มีส่วนต่างของชัยชนะ 7 จังหวะ?",
    "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_en": "WHAT IS THE PLACE THAT HAS SCORE OF 65 OR BETTER, FOR ROCCO MEDIATE?",
    "question_th": "สถานที่ใดที่มีคะแนน 65 หรือดีกว่าสำหรับ 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_en": "WHAT IS THE PLAYER WITH A SCORE OF 66?",
    "question_th": "ผู้เล่นที่มีคะแนน 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_en": "WHAT IS THE PLAYER WITH T7 PLACE, FOR ENGLAND?",
    "question_th": "ผู้เล่นที่มี T7 Place สำหรับอังกฤษคืออะไร?",
    "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_en": "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?",
    "question_th": "จำนวนถ้วยเมื่ออีกฝ่ายมากกว่า 3, ลีกมากกว่า 3, สำหรับ Lauri Dalla Valle และผลรวมมากกว่า 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_en": "What is the number for other when Adam Pepper is the player with a total more than 7?",
    "question_th": "เลขอื่นของอดัม เปปเปอร์ คือผู้เล่นที่มีแต้มรวมมากกว่า 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_en": "What is the highest losses for more than 11 wins, a goal difference greater than 5, a 3 position, and more than 3 draws?",
    "question_th": "อะไรคือความสูญเสียสูงสุดจากการชนะมากกว่า 11 ครั้ง ผลต่างประตูมากกว่า 5 ประตู 3 ตำแหน่ง และเสมอมากกว่า 3 ครั้ง?",
    "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_en": "What is the average points with less than 30 played?",
    "question_th": "แต้มเฉลี่ยที่เล่นน้อยกว่า 30 คือเท่าไร?",
    "context": "CREATE TABLE table_name_77 (points INTEGER, played INTEGER)"
  },
  {
    "answer": "SELECT MIN(draws) FROM table_name_86 WHERE club = \"ud lérida\" AND goals_for < 41",
    "question_en": "What is the lowest amount of draws club ud lérida, which has less than 41 goals, has?",
    "question_th": "เสมอต่ำสุดคือเท่าไร club ud lérida, which has less than 41 Goals?",
    "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_en": "What is the total amount of points for a position less than 7, 68 goals for, and less than 30 played?",
    "question_th": "จำนวนคะแนนรวมสำหรับตำแหน่งที่น้อยกว่า 7, 68 ประตูและน้อยกว่า 30 ประตูที่ลงเล่นคือเท่าใด",
    "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és cf\" AND goal_difference > -10",
    "question_en": "What is teh average amount of goals for club real avilés cf, which has more than 59 goals against and a -10 goal difference?",
    "question_th": "จำนวนประตูเฉลี่ยของ Club Real Avilés CF ซึ่งทำได้มากกว่า 59 ประตูและผลต่าง -10 ประตูคือเท่าใด",
    "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_en": "What is the average goal difference of club cultural leonesa, which has more than 27 points and less than 9 losses?",
    "question_th": "อะไรคือผลต่างประตูเฉลี่ยของ Club Cultural Leonesa ซึ่งมีมากกว่า 27 แต้มและแพ้น้อยกว่า 9?",
    "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_en": "For the game played on November 29, who had the highest rebounds?",
    "question_th": "สำหรับเกมที่เล่นวันที่ 29 พ.ย. ใครรีบาวด์สูงที่สุด?",
    "context": "CREATE TABLE table_name_73 (high_rebounds VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_76 WHERE notes = \"ncaa champion\"",
    "question_en": "WHAT TEAM WAS AN NCAA CHAMPION?",
    "question_th": "ทีมใดเป็นแชมป์ NCAA?",
    "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_en": "When the champion was Gay Brewer Category:Articles with hCards what was the total score?",
    "question_th": "เมื่อแชมป์เป็น Gay Brewer หมวดหมู่:บทความที่มี hCards คะแนนรวมเป็นเท่าใด",
    "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_en": "What was the To Par [a] when Charles Coody Category:Articles with hCards was champion and the year was earlier than 1973?",
    "question_th": "To Par [a] คืออะไรเมื่อ Charles Coody Category:Articles ที่มี hCards เป็นแชมป์และปีนั้นเร็วกว่าปี 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_en": "When the United States had a total score of 274 what was the average year?",
    "question_th": "เมื่อสหรัฐอเมริกามีคะแนนรวม 274 ปีเฉลี่ยคือเท่าใด",
    "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_en": "What is 1st Leg, when Team 1 is \"Makedonija\"?",
    "question_th": "เลก 1 คืออะไร เมื่อทีม 1 คือ \"มาเคโดนิจา\"?",
    "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_en": "What's the record for home team ottawa senators on march 6?",
    "question_th": "สถิติของวุฒิสมาชิกออตตาวาทีมเหย้าในวันที่ 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_en": "What's the score on february 18 when the visitors are the montreal canadiens?",
    "question_th": "คะแนนในวันที่ 18 กุมภาพันธ์ ผู้มาเยือนคือทีมมอนทรีออลคานาเดียนส์เป็นเท่าใด",
    "context": "CREATE TABLE table_name_46 (score VARCHAR, visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT fleet FROM table_name_87 WHERE name = \"orenburg\"",
    "question_en": "Which fleet was named Orenburg?",
    "question_th": "กองเรือใดชื่อ 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–\"",
    "question_en": "Which Player has a Rank of t12, and a Country of taiwan, and a Lifespan of 1963–?",
    "question_th": "ผู้เล่นคนไหนที่มีอันดับ t12 และประเทศไต้หวัน และอายุขัยปี 1963–?",
    "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_en": "Which Country has a Player of arjun atwal?",
    "question_th": "ประเทศใดมีผู้เล่นของ arjun atwal?",
    "context": "CREATE TABLE table_name_19 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT SUM(wins) FROM table_name_46 WHERE winning_span = \"2000–2010\"",
    "question_en": "Which Wins have a Winning span of 2000–2010?",
    "question_th": "การชนะใดมีช่วงการชนะระหว่างปี 2000–2010",
    "context": "CREATE TABLE table_name_46 (wins INTEGER, winning_span VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(pick) FROM table_name_82 WHERE player = \"brandon rush\"",
    "question_en": "WHAT WAS THE PICK NUMBER FOR BRANDON RUSH?",
    "question_th": "หมายเลขเลือกสำหรับ 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_en": "WHAT IS THE HIGHEST ROUND FOR MIKE TAYLOR, WITH PICK HIGHER THAN 55?",
    "question_th": "รอบที่สูงที่สุดสำหรับ MIKE TAYLOR โดยเลือกสูงกว่า 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_en": "WHAT POSITION HAS A PICK SMALLER THAN 33, AND PLAYER BEING DARRELL ARTHUR?",
    "question_th": "ตำแหน่งใดที่มีตัวเลือกน้อยกว่า 33 และผู้เล่นเป็นดาร์เรล อาเธอร์",
    "context": "CREATE TABLE table_name_67 (position VARCHAR, pick VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_80 WHERE total = 282",
    "question_en": "What was the finish of the player who had a total of 282?",
    "question_th": "นักเตะที่ได้คะแนนรวม 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_en": "What years did Lou Graham win in?",
    "question_th": "Lou Graham ชนะในปีใด",
    "context": "CREATE TABLE table_name_41 (year_s__won VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT floors FROM table_name_43 WHERE location = \"aston\"",
    "question_en": "How many floors did the tallest building in Aston have?",
    "question_th": "อาคารที่สูงที่สุดในแอสตันมีกี่ชั้น",
    "context": "CREATE TABLE table_name_43 (floors VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_61 WHERE location = \"jewellery quarter\"",
    "question_en": "What is the name of the building at the Jewellery quarter?",
    "question_th": "อาคารในย่านจิวเวลรี่ชื่ออะไร",
    "context": "CREATE TABLE table_name_61 (name VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_59 WHERE location = \"aston\"",
    "question_en": "What is the name of the building at Aston?",
    "question_th": "ตึกที่แอสตันชื่ออะไรคะ?",
    "context": "CREATE TABLE table_name_59 (name VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT floors FROM table_name_66 WHERE location = \"jewellery quarter\"",
    "question_en": "How many floors did the building at the Jewellery quarter have?",
    "question_th": "อาคารในย่านจิวเวลรี่มีกี่ชั้น?",
    "context": "CREATE TABLE table_name_66 (floors VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_12 WHERE lead = \"michael goodfellow\"",
    "question_en": "What is Season, when Lead is \"Michael Goodfellow\"?",
    "question_th": "Season คืออะไร เมื่อ Lead คือ \"Michael Goodfellow\"?",
    "context": "CREATE TABLE table_name_12 (season VARCHAR, lead VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_62 WHERE third = \"glen muirhead\"",
    "question_en": "What is Season, when Third is \"Glen Muirhead\"?",
    "question_th": "ซีซั่นคืออะไร เมื่ออันดับสามคือ \"เกลน มิวร์เฮด\"",
    "context": "CREATE TABLE table_name_62 (season VARCHAR, third VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_38 WHERE attendance = \"n/a\"",
    "question_en": "What home team has an n/a attendance?",
    "question_th": "ทีมเจ้าบ้านใดไม่มีผู้เข้าร่วม?",
    "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_en": "What's the sum of the points when attendance is 8,000 on february 22?",
    "question_th": "เมื่อคนมาร่วมงานวันที่ 22 กุมภาพันธ์ ครบ 8,000 คะแนนรวมเป็นเท่าไหร่?",
    "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_en": "Can you tell me the total number of 100s that has the Balls larger than 325, and the Runs smaller than 572?",
    "question_th": "คุณช่วยบอกจำนวนรวม 100 ลูกที่มีลูกบอลใหญ่กว่า 325 และรันน้อยกว่า 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_en": "Can you tell me the sum of 100s that has the Matches of 12, and the Strike Rate smaller than 144.81?",
    "question_th": "คุณช่วยบอกผลรวมของ 100 ที่มีการแข่งขัน 12 นัดและอัตราการโจมตีน้อยกว่า 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_en": "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?",
    "question_th": "คุณช่วยบอกผลรวมของ 100 ที่มีทีมเครื่องชาร์จ Deccan และการแข่งขัน 8 และค่าเฉลี่ยมากกว่า 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_en": "Can you tell me the total number of Matched that has the Strike Rate smallet than 152.3, and the Balls of 395?",
    "question_th": "คุณช่วยบอกจำนวน Matched ทั้งหมดที่มี Strike Rate น้อยกว่า 152.3 และ Balls 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_en": "On what date did Jesse Levine play on a hard surface?",
    "question_th": "Jesse Levine เล่นบนพื้นแข็งวันไหน?",
    "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_en": "Name the Venue which has a Losing Team of newcastle knights?",
    "question_th": "ตั้งชื่อสถานที่ซึ่งมีทีมอัศวินนิวคาสเซิ่ลที่พ่ายแพ้ใช่ไหม?",
    "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_en": "WHich Losing Team has a Venue of sydney football stadium, and a Total larger than 80, and a Winning Team of tigers?",
    "question_th": "ทีมที่แพ้ทีมไหนมีสนามฟุตบอลซิดนีย์ และมีคะแนนรวมมากกว่า 80 และทีมเสือที่ชนะ?",
    "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_en": "Which Score has a Losing Team of sydney roosters, and a Total of 88?",
    "question_th": "สกอร์ใดที่มีทีมแพ้ซิดนีย์เจื้อยแจ้วและมีคะแนนรวม 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_en": "What was the TV Time for opponent jacksonville jaguars?",
    "question_th": "เวลาทีวีสำหรับจากัวร์แจ็กสันวิลล์ของคู่ต่อสู้คือเมื่อใด",
    "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_en": "What was the tv time on december 6, 1998?",
    "question_th": "วันที่ 6 ธันวาคม 2541 ออกอากาศกี่โมง?",
    "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_en": "How many weeks has the opponent been san francisco 49ers?",
    "question_th": "คู่ต่อสู้คือซานฟรานซิสโก 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_en": "What college did the player drafted after round 2 before pick 160 attend?",
    "question_th": "ผู้เล่นร่างวิทยาลัยใดหลังจากรอบที่ 2 ก่อนที่จะเลือก 160 เข้าร่วม",
    "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_en": "What round was jerry corcoran drafted in as pick number 114?",
    "question_th": "เจอร์รี คอร์โคแรน ถูกดราฟต์ในรอบใดโดยเลือกหมายเลข 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_en": "What is the nationality of the round 4 draft selection who played college ball at oklahoma?",
    "question_th": "สัญชาติของการคัดเลือกรอบ 4 ที่เล่นบอลวิทยาลัยที่โอคลาโฮมาคืออะไร?",
    "context": "CREATE TABLE table_name_33 (nationality VARCHAR, round VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT MAX(pick) FROM table_name_44 WHERE college = \"virginia\"",
    "question_en": "Who was the highest drafted player that attended college at Virginia?",
    "question_th": "ใครคือผู้เล่นร่างสูงสุดที่เข้าเรียนในวิทยาลัยที่เวอร์จิเนีย?",
    "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_en": "What round was northeastern college player Reggie Lewis drafted in?",
    "question_th": "Reggie Lewis ผู้เล่นวิทยาลัยภาคตะวันออกเฉียงเหนือถูกเกณฑ์ทหารในรอบใด",
    "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_en": "What Away Competition had a Result of lost 2-4?",
    "question_th": "การแข่งขันทีมเยือนรายการไหนที่แพ้ 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_en": "What is the Venue against the Bracknell Bees?",
    "question_th": "สถานที่จัดงานกับ 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_en": "What is the Away Competition on the 6th?",
    "question_th": "การแข่งขันเยือนวันที่ 6 คืออะไร?",
    "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_en": "What Competition had a Result of lost 1-2?",
    "question_th": "การแข่งขันรายการใดที่มีผลการแข่งขันแพ้ 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_en": "What is the Man of the Match of the Competition with a Result of lost 2-5?",
    "question_th": "แมนออฟเดอะแมตช์แห่งการแข่งขันคือใครที่ผลการแข่งขันแพ้ 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_en": "What is the Date of the Competition with Man of the Match Ollie Bronnimann?",
    "question_th": "วันที่แข่งขันกับ 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_en": "what is team 2 when team 1 is fc rouen (d1)?",
    "question_th": "ทีม 2 คืออะไร เมื่อทีม 1 คือ fc รูอ็อง (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élec ajaccio (d3)\"",
    "question_en": "what is team 1 when team 2 is gazélec ajaccio (d3)?",
    "question_th": "ทีม 1 คืออะไร ในเมื่อทีม 2 คือ gazélec 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_en": "what is the 1st round when team 2 is olympique lyonnais (d2)?",
    "question_th": "รอบแรกคือทีมที่ 2 โอลิมปิก ลียง (d2) คืออะไร?",
    "context": "CREATE TABLE table_name_67 (team_2 VARCHAR)"
  },
  {
    "answer": "SELECT total FROM table_name_89 WHERE league < 1",
    "question_en": "what is the total when the league is less than 1?",
    "question_th": "ยอดรวมเมื่อลีกน้อยกว่า 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_en": "What is the lowest profits (billion $) for the rank 6?",
    "question_th": "กำไรต่ำสุด (พันล้านดอลลาร์) สำหรับอันดับ 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_en": "What is the smallest rank for an industry of banking, a company of bank of america, and profits (billion $) larger than 16.47?",
    "question_th": "อันดับที่เล็กที่สุดสำหรับอุตสาหกรรมการธนาคาร บริษัทของธนาคารแห่งอเมริกา และผลกำไร (พันล้านดอลลาร์) ที่มากกว่า 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_en": "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?",
    "question_th": "มูลค่าตลาดต่ำสุด (พันล้านดอลลาร์) โดยมีสำนักงานใหญ่อยู่ที่สหรัฐอเมริกา และอันดับมากกว่า 3 สินทรัพย์ (พันล้านดอลลาร์) ใหญ่กว่า 208.34 และบริษัท jpmorgan ไล่ล่าคืออะไร?",
    "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_en": "What season in sanskrit means summer in English?",
    "question_th": "ฤดูใดในภาษาสันสกฤตหมายถึงฤดูร้อนในภาษาอังกฤษ?",
    "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_en": "What is the english translation of the sanskrit word varsha?",
    "question_th": "คำว่า วาร์ชา ในภาษาสันสกฤต แปลเป็นภาษาอังกฤษว่าอะไร?",
    "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 = \"குளிர்\"",
    "question_en": "What are the gregorian months for the season குளிர் in Tamil?",
    "question_th": "เดือนใดบ้างแบบเกรกอเรียนสำหรับฤดูกาล குளிரà ในภาษาทมิฬ?",
    "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_en": "What are the months in Tamil that has an english transliteration of Mun-pani?",
    "question_th": "เดือนใดในภาษาทมิฬที่มีการทับศัพท์ภาษาอังกฤษว่า 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_en": "What is the english transliteration of late dew?",
    "question_th": "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_en": "What is the english word Monsoon in Tamil?",
    "question_th": "คำว่า Monsoon ในภาษาทมิฬคืออะไร?",
    "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_en": "What is the 2009 result when 2011 is 1R and 2007 is A?",
    "question_th": "ผลลัพธ์ปี 2009 คืออะไรเมื่อปี 2011 คือ 1R และ 2007 คือ A",
    "context": "CREATE TABLE table_name_84 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2008 FROM table_name_89 WHERE 2006 = \"year-end championship\"",
    "question_en": "What is the 2008 result when 2006 is Year-End Championship?",
    "question_th": "ผลการแข่งขันปี 2551 จะเป็นอย่างไรเมื่อปี 2549 เป็นแชมป์ส่งท้ายปี?",
    "context": "CREATE TABLE table_name_89 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2009 FROM table_name_38 WHERE 2012 = \"year-end championship\"",
    "question_en": "What is the 2009 when 2012 is Year-End Championship?",
    "question_th": "2009 คืออะไรเมื่อ 2012 เป็นแชมป์ส่งท้ายปี?",
    "context": "CREATE TABLE table_name_38 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2008 FROM table_name_67 WHERE 2012 = \"qf\" AND 2005 = \"qf\"",
    "question_en": "What is the 2008 result when 2012 and 2005 are both QF?",
    "question_th": "ผลลัพธ์ในปี 2551 คืออะไรเมื่อปี 2555 และ 2548 เป็น QF ทั้งคู่",
    "context": "CREATE TABLE table_name_67 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1999 FROM table_name_80 WHERE 1998 = \"grand slam tournaments\"",
    "question_en": "What is the 1999 answer when 1998 is Grand Slam Tournaments?",
    "question_th": "คำตอบของปี 1999 คืออะไร เมื่อปี 1998 เป็นการแข่งขัน Grand Slam?",
    "context": "CREATE TABLE table_name_80 (Id VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_56 WHERE high_points = \"raymond felton (32)\"",
    "question_en": "Which Score has High points of raymond felton (32)?",
    "question_th": "เรย์มอนด์ เฟลตัน (32) คะแนนไหนมีคะแนนสูง?",
    "context": "CREATE TABLE table_name_56 (score VARCHAR, high_points VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_66 WHERE team = \"philadelphia\"",
    "question_en": "Which Record has a Team of philadelphia?",
    "question_th": "บันทึกใดมีทีมฟิลาเดลเฟีย?",
    "context": "CREATE TABLE table_name_66 (record VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_name_97 WHERE game = 76",
    "question_en": "Which High rebounds has a Game of 76?",
    "question_th": "รีบาวด์สูงใดที่มีเกม 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–44\"",
    "question_en": "Which Location Attendance has a High assists of raymond felton (5), and a Record of 35–44?",
    "question_th": "การเข้าร่วมในสถานที่ใดที่มีคะแนนช่วยเหลือสูงเท่ากับเรย์มอนด์ เฟลตัน (5) และสถิติ 35–44",
    "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_en": "Which Location Attendance has a Date of april 15?",
    "question_th": "การเข้าร่วมสถานที่ใดมีวันที่ 15 เมษายน",
    "context": "CREATE TABLE table_name_52 (location_attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_20 WHERE game > 17",
    "question_en": "What date was there a game larger than 17?",
    "question_th": "วันที่ใดที่เกมใหญ่กว่า 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_en": "What is the result of the match with clyde as the opponent in the h venue?",
    "question_th": "ผลการแข่งขันที่ไคลด์เป็นคู่ต่อสู้ในสนาม H คืออะไร?",
    "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_en": "What is the attendance on 24 December 1898?",
    "question_th": "ผู้เข้าร่วมในวันที่ 24 ธันวาคม พ.ศ. 2441 คืออะไร?",
    "context": "CREATE TABLE table_name_23 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_41 WHERE venue = \"a\" AND opponent = \"celtic\"",
    "question_en": "What was the date of the match at venue A with the celtic as the opponent?",
    "question_th": "วันที่ของการแข่งขันที่สนาม A โดยมีเซลติกเป็นคู่ต่อสู้คือวันที่เท่าไร?",
    "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_en": "Who is the opponent of the match on 3 December 1898 in venue h?",
    "question_th": "คู่ต่อสู้ของแมตช์วันที่ 3 ธันวาคม พ.ศ. 2441 ในสถานที่ 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_en": "What country does Glory Alozie play for?",
    "question_th": "Glory Alozie เล่นให้กับประเทศใด?",
    "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_en": "In what country did fadwa al bouza have larger than 0.257 react score?",
    "question_th": "fadwa al bouza มีคะแนนตอบสนองมากกว่า 0.257 ในประเทศใด",
    "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_en": "What is Place, when Score is \"75-71-72-70=288\"?",
    "question_th": "สถานที่คืออะไร เมื่อคะแนนคือ \"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_en": "What is Money ( $ ), when Score is \"75-71-72-70=288\"?",
    "question_th": "เงิน ($ ) คืออะไร เมื่อคะแนนคือ \"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_en": "What is Country, when Player is \"Jimmy Demaret\"?",
    "question_th": "ประเทศคืออะไร เมื่อผู้เล่นคือ \"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_en": "What is Player, when Score is \"71-69-72-72=284\"?",
    "question_th": "ผู้เล่นคืออะไร เมื่อคะแนนคือ \"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_en": "What is Country, when Player is \"Dutch Harrison\"?",
    "question_th": "ประเทศคืออะไร เมื่อผู้เล่นคือ \"ดัตช์ แฮร์ริสัน\"?",
    "context": "CREATE TABLE table_name_8 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_65 WHERE date = \"may 7, 2006\"",
    "question_en": "What is Score, when Date is May 7, 2006?",
    "question_th": "Score คืออะไร เมื่อวันที่ 7 พฤษภาคม 2549",
    "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_en": "What is Surface, when Opponents In The Final is \"Christophe Rochus Olivier Rochus\"?",
    "question_th": "Surface คืออะไร เมื่อฝ่ายตรงข้ามในรอบสุดท้ายคือ \"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_en": "What is Tournament, when Surface is \"Hard\"?",
    "question_th": "Tournament คืออะไร เมื่อ Surface อยู่ในสถานะ \"ยาก\"",
    "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é salvá-vidal\"",
    "question_en": "What is Score, when Partnering is \"Alexander Waske\", and when Opponents In The Final is \"Rafael Nadal Bartolomé Salvá-Vidal\"?",
    "question_th": "Score คืออะไร เมื่อการเป็นคู่หูคือ \"Alexander Waske\" และเมื่อฝ่ายตรงข้ามในรอบชิงชนะเลิศคือ \"Rafael Nadal Bartolomé Salvá-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_en": "Which Royal house is named Elah?",
    "question_th": "ราชวงศ์ใดมีชื่อว่าเอลาห์?",
    "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_en": "What is the type of Leader for the Royal House of Baasha, who is named Elah.",
    "question_th": "ผู้นำประเภทใดของราชวงศ์บาอาชาซึ่งมีชื่อว่าเอลาห์",
    "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_en": "What is the average Silver with rank 30 and a Bronze greater than 0",
    "question_th": "เงินโดยเฉลี่ยที่มีอันดับ 30 และเหรียญทองแดงมากกว่า 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_en": "What is the highest Gold that has a Silver less than 7 and Bronze less than 0",
    "question_th": "ทองคำสูงสุดที่มีเงินน้อยกว่า 7 และทองแดงน้อยกว่า 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_en": "What is the highest Bronze with a Silver greater than 0 and a Gold of 7 and a total less than 29",
    "question_th": "เหรียญทองแดงสูงสุดคืออะไร โดยมีเงินมากกว่า 0 และทอง 7 และรวมน้อยกว่า 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_en": "What is the sum of Total ranking 9 and a Gold more than 6",
    "question_th": "ผลรวมของอันดับรวม 9 และทองมากกว่า 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_en": "What is the lowest Bronze with a 17 Rank and a Total less than 5",
    "question_th": "อะไรคือเหรียญทองแดงที่ต่ำที่สุดที่มีอันดับ 17 และคะแนนรวมน้อยกว่า 5",
    "context": "CREATE TABLE table_name_30 (bronze INTEGER, rank VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_84 WHERE location = \"zhodino\"",
    "question_en": "What is the venue that is located in zhodino?",
    "question_th": "สถานที่จัดงานที่ zhodino คืออะไร?",
    "context": "CREATE TABLE table_name_84 (venue VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_61 WHERE tie_no = \"13\"",
    "question_en": "Which Home Team has a Tie no of 13?",
    "question_th": "ทีมเจ้าบ้านใดมีแต้มเสมอกันที่ 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_en": "What is the Away Team when the Home Team is Fulham?",
    "question_th": "ทีมเยือนจะเป็นอย่างไรเมื่อเจ้าบ้านเป็นฟูแล่ม?",
    "context": "CREATE TABLE table_name_26 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_86 WHERE tie_no = \"11\"",
    "question_en": "Which Date has a Tie no of 11?",
    "question_th": "วันใดมีเลขเสมอกันที่ 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_en": "On 27 January 1968 who was the Home Team when the Away team was Carlisle United?",
    "question_th": "วันที่ 27 มกราคม พ.ศ. 2511 ทีมเจ้าบ้านคือใครเมื่อทีมเยือนคือคาร์ไลล์ยูไนเต็ด?",
    "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_en": "If the Home Team is Newport County what is the Score?",
    "question_th": "ถ้าเจ้าบ้านคือนิวพอร์ท เคาน์ตี้ สกอร์เท่าไหร่?",
    "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_en": "What is the sum for the Scottish cup that has player Damon Gray, and more than 1 league?",
    "question_th": "ผลรวมของสก็อตติชคัพที่มีผู้เล่น เดม่อน เกรย์ และมากกว่า 1 ลีกคือเท่าไหร่?",
    "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_en": "What was the average league with Kris Doolan and a total less than 5?",
    "question_th": "ลีกเฉลี่ยของคริส ดูแลนและคะแนนรวมน้อยกว่า 5 เป็นเท่าไร?",
    "context": "CREATE TABLE table_name_22 (league INTEGER, player VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT aircraft FROM table_name_40 WHERE quantity = \"129\"",
    "question_en": "What aircraft has 129 made?",
    "question_th": "129 ผลิตเครื่องบินอะไร?",
    "context": "CREATE TABLE table_name_40 (aircraft VARCHAR, quantity VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_79 WHERE quantity = \"140\"",
    "question_en": "Which type has 140 made?",
    "question_th": "140สร้างแบบไหนครับ?",
    "context": "CREATE TABLE table_name_79 (type VARCHAR, quantity VARCHAR)"
  },
  {
    "answer": "SELECT aircraft FROM table_name_39 WHERE type = \"heavy transport\"",
    "question_en": "Which aircraft has heavy transport?",
    "question_th": "เครื่องบินลำใดที่มีการบรรทุกหนัก?",
    "context": "CREATE TABLE table_name_39 (aircraft VARCHAR, type VARCHAR)"
  },
  {
    "answer": "SELECT produced FROM table_name_28 WHERE aircraft = \"kai kuh-1 surion\"",
    "question_en": "Where was the Kai Kuh-1 Surion Produced?",
    "question_th": "Kai Kuh-1 Surion ผลิตที่ไหน",
    "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_en": "Which First Pref votes have a % of seats of 0.8?",
    "question_th": "การโหวต First Pref ใดที่มี % ของที่นั่ง 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_en": "How many First Pref votes have Seats of 1?",
    "question_th": "โหวต First Pref ได้กี่ที่นั่งใน 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_en": "What game number is the Kansas City Kings team?",
    "question_th": "ทีม Kansas City Kings คือเกมหมายเลขใด?",
    "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_en": "Who was the opponent when he went more than 1 round with a record of 12-7?",
    "question_th": "คู่ต่อสู้เมื่อเกิน 1 รอบด้วยสถิติ 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_en": "Which event did he win with a method of submission (triangle choke) and a time of n/a?",
    "question_th": "รายการไหนที่เขาชนะด้วยวิธีซับมิชชั่น (โช้คสามเหลี่ยม) และเวลาไม่มี?",
    "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_en": "What was the result when the method was submission (kimura)?",
    "question_th": "เมื่อยื่นวิธี (คิมูระ) แล้วผลลัพธ์จะเป็นเช่นไร?",
    "context": "CREATE TABLE table_name_72 (res VARCHAR, method VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_26 WHERE method = \"decision (split)\"",
    "question_en": "In which location was the method decision (split)?",
    "question_th": "การตัดสินใจวิธี (แยก) อยู่ที่ใด?",
    "context": "CREATE TABLE table_name_26 (location VARCHAR, method VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_96 WHERE time = \"0:31\"",
    "question_en": "In which location did the fight last just 0:31?",
    "question_th": "การต่อสู้เกิดขึ้นที่จุดใดในเวลาเพียง 0:31 น.",
    "context": "CREATE TABLE table_name_96 (location VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT owner FROM table_name_4 WHERE branding = \"kool-fm\"",
    "question_en": "Who owns the kool-fm branding?",
    "question_th": "ใครเป็นเจ้าของแบรนด์ kool-fm?",
    "context": "CREATE TABLE table_name_4 (owner VARCHAR, branding VARCHAR)"
  },
  {
    "answer": "SELECT frequency FROM table_name_58 WHERE branding = \"the beat\"",
    "question_en": "Which frequency belongs to the beat branding?",
    "question_th": "ความถี่ใดที่เป็นของการสร้างแบรนด์บีท?",
    "context": "CREATE TABLE table_name_58 (frequency VARCHAR, branding VARCHAR)"
  },
  {
    "answer": "SELECT frequency FROM table_name_72 WHERE call_sign = \"cihr-fm\"",
    "question_en": "Which frequency belongs to the cihr-fm call sign?",
    "question_th": "ความถี่ใดอยู่ในสัญญาณเรียกขาน cihr-fm?",
    "context": "CREATE TABLE table_name_72 (frequency VARCHAR, call_sign VARCHAR)"
  },
  {
    "answer": "SELECT owner FROM table_name_96 WHERE frequency = \"fm 101.3\"",
    "question_en": "Who owns the fm 101.3 frequency?",
    "question_th": "ใครเป็นเจ้าของคลื่นความถี่ fm 101.3?",
    "context": "CREATE TABLE table_name_96 (owner VARCHAR, frequency VARCHAR)"
  },
  {
    "answer": "SELECT call_sign FROM table_name_81 WHERE frequency = \"fm 105.3\"",
    "question_en": "Which call sign has a frequency of FM 105.3?",
    "question_th": "สัญญาณเรียกขานใดมีความถี่ 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_en": "Who owns the kool-fm branding in the adult hits format?",
    "question_th": "ใครเป็นเจ้าของแบรนด์ kool-fm ในรูปแบบเพลงฮิตสำหรับผู้ใหญ่?",
    "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_en": "What was the score against Portland in game numbers under 20?",
    "question_th": "คะแนนกับพอร์ตแลนด์ในเกมอายุต่ำกว่า 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_en": "WHAT CHAMPION HAD RICHMOND RIVER COURSE ON JUNE 13?",
    "question_th": "แชมป์คนไหนมีหลักสูตร RICHMOND RIVER ในวันที่ 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_en": "WHAT YEAR WAS ROBERT COOMBES CHAMPION ON MAY 7?",
    "question_th": "โรเบิร์ตคูมบ์สแชมป์ในวันที่ 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_en": "What's the record of the game on Nov 13?",
    "question_th": "สถิติเกมวันที่ 13 พ.ย. เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_80 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_79 WHERE game = \"5\"",
    "question_en": "What's the score of Game 5?",
    "question_th": "เกมที่ 5 คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_79 (score VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_32 WHERE game = \"13\"",
    "question_en": "What was the score of Game 13?",
    "question_th": "เกมที่ 13 คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_32 (score VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT final_score FROM table_name_52 WHERE opponent = \"real españa\" AND season = \"2008–09\"",
    "question_en": "What is the final score when the opponent was Real España, in the 2008–09 season?",
    "question_th": "คะแนนสุดท้ายเมื่อคู่ต่อสู้คือเรอัลเอสปาญาในฤดูกาล 2008–09 คืออะไร?",
    "context": "CREATE TABLE table_name_52 (final_score VARCHAR, opponent VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT final_score FROM table_name_40 WHERE opponent = \"atlético choloma\"",
    "question_en": "What was the final score when the opponent was Atlético Choloma?",
    "question_th": "สกอร์สุดท้ายเมื่อคู่ต่อสู้คือ แอตเลติโก โชโลมา คืออะไร?",
    "context": "CREATE TABLE table_name_40 (final_score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_43 WHERE season = \"2008–09\" AND final_score = \"2–3 l\"",
    "question_en": "What team was the opponent in the 2008–09 season, with a final score of 2–3 l?",
    "question_th": "ทีมใดเป็นคู่ต่อสู้ในฤดูกาล 2551–09 ด้วยคะแนนสุดท้าย 2–3 ลิตร?",
    "context": "CREATE TABLE table_name_43 (opponent VARCHAR, season VARCHAR, final_score VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_58 WHERE season = \"2008–09\" AND final_score = \"2–3 l\"",
    "question_en": "What was the opponent in the 2008–09 season, with a final score of 2–3 l?",
    "question_th": "คู่ต่อสู้ในฤดูกาล 2551–09 คืออะไรด้วยคะแนนสุดท้าย 2–3 ลิตร?",
    "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ña\" AND season = \"2012–13\"",
    "question_en": "What shows for playing when the opponent was Real España, in the 2012–13 season?",
    "question_th": "อะไรแสดงให้เห็นการเล่นเมื่อคู่ต่อสู้คือเรอัลเอสปาญา ในฤดูกาล 2012–13?",
    "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_en": "What did Steve Elkington par?",
    "question_th": "Steve Elkington พาร์อะไร?",
    "context": "CREATE TABLE table_name_47 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_15 WHERE player = \"ernie els\"",
    "question_en": "What did Ernie Els par?",
    "question_th": "Ernie Els พาร์อะไร?",
    "context": "CREATE TABLE table_name_15 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_73 WHERE country = \"spain\"",
    "question_en": "What place is Spain in?",
    "question_th": "สเปนอยู่ที่ไหน?",
    "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_en": "Which High rebounds have a Game larger than 4, and a Date of may 27?",
    "question_th": "รีบาวด์สูงใดที่มีเกมมากกว่า 4 และวันที่ 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_en": "What was the score on may 21?",
    "question_th": "คะแนนวันที่ 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_en": "Which Game is the highest one that has High rebounds of pau gasol (11)?",
    "question_th": "เกมไหนที่มีอัตราการรีบาวด์สูงของ โป กาซอล (11)?",
    "context": "CREATE TABLE table_name_12 (game INTEGER, high_rebounds VARCHAR)"
  },
  {
    "answer": "SELECT series FROM table_name_16 WHERE date = \"may 27\"",
    "question_en": "What was the series on may 27?",
    "question_th": "ซีรีส์วันที่ 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_en": "Which High rebounds have a Game larger than 2, and a Team of @ denver, and High assists of kobe bryant (5)?",
    "question_th": "รีบาวด์สูงใดที่มีเกมมากกว่า 2 และทีม @ เดนเวอร์ และแอสซิสต์สูงของโคบี ไบรอันต์ (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_en": "What was the location and attendance for the game after game 36 against Atlanta?",
    "question_th": "สถานที่และผู้เข้าชมเกมหลังเกมที่ 36 กับแอตแลนต้าคือสถานที่ใด",
    "context": "CREATE TABLE table_name_1 (location_attendance VARCHAR, game VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_78 WHERE game = 31",
    "question_en": "What was the record of the game for game 31?",
    "question_th": "บันทึกของเกมสำหรับเกมที่ 31 คืออะไร?",
    "context": "CREATE TABLE table_name_78 (record VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_name_83 WHERE team = \"phoenix\"",
    "question_en": "What is the game number when the game was against phoenix?",
    "question_th": "หมายเลขเกมเมื่อเกมกับฟีนิกซ์คืออะไร?",
    "context": "CREATE TABLE table_name_83 (game VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT tie_no FROM table_name_21 WHERE home_team = \"wigan athletic\"",
    "question_en": "What is the tie number when Wigan Athletic is the home team?",
    "question_th": "วีแกน แอธเลติก เป็นเจ้าบ้านเสมอกันที่หมายเลขอะไร?",
    "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_en": "What is the date when Grimsby Town is the home team?",
    "question_th": "กริมสบี้ทาวน์เป็นเจ้าบ้านวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_67 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_35 WHERE tie_no = \"10\"",
    "question_en": "What is the date of game with tie number of 10?",
    "question_th": "การแข่งขันนัดที่ 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_en": "What is the score when away team is Crystal Palace?",
    "question_th": "เมื่อทีมเยือนคือคริสตัล พาเลซสกอร์เท่าไหร่?",
    "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 (أسامة)\"",
    "question_en": "WHAT IS THE YEAR WITH DARI, AND TITLE osama (أسامة)?",
    "question_th": "ปีที่มีดาริและชื่อ osama (ออสมามี) คืออะไร?",
    "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_en": "WHAT IS THE RESULT WITH A FILM TITLE FIREDANCER?",
    "question_th": "ผลลัพธ์ที่ได้กับนักดับเพลิงชื่อภาพยนตร์คืออะไร?",
    "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_en": "Who had the highest points when the series was 4-2?",
    "question_th": "ใครมีคะแนนสูงสุดเมื่อซีรีส์คือ 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_en": "What was the score when the series was 3-2?",
    "question_th": "สกอร์เมื่อซีรีย์เป็น 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_en": "What is the average sales for the company with market value of 204.9bil and profits under 20.6bil?",
    "question_th": "ยอดขายเฉลี่ยของบริษัทที่มีมูลค่าตลาด 2.049 พันล้านและกำไรต่ำกว่า 20.6 พันล้านเป็นเท่าใด",
    "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_en": "Which Doctor is featured in City of Death?",
    "question_th": "หมอคนไหนที่ปรากฏใน 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_en": "Available in 2-CD format, what is the title of story number 026?",
    "question_th": "มีจำหน่ายในรูปแบบ 2 แผ่นซีดี เรื่องที่ 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_en": "Who was the away team when bournemouth was the home team?",
    "question_th": "เมื่อบอร์นมัธเป็นเจ้าบ้านคือใคร?",
    "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_en": "What is the tie no when scunthorpe united was the away team?",
    "question_th": "เสมอไม่เมื่อสคันธอร์ปยูไนเต็ดเป็นทีมเยือนคืออะไร?",
    "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_en": "Who was the home team when swansea city was the away team?",
    "question_th": "เมื่อสวอนซีซิตี้เป็นทีมเยือนคือใคร?",
    "context": "CREATE TABLE table_name_47 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT 925 FROM table_name_26 WHERE press = \"282.5\"",
    "question_en": "Who is the 92.5 with the press of 282.5?",
    "question_th": "92.5 กับกด 282.5 คือใคร?",
    "context": "CREATE TABLE table_name_26 (press VARCHAR)"
  },
  {
    "answer": "SELECT 925 FROM table_name_44 WHERE press = \"282.5\"",
    "question_en": "Who is the 92.5 with the press 282.5?",
    "question_th": "92.5 กับกด 282.5 คือใคร?",
    "context": "CREATE TABLE table_name_44 (press VARCHAR)"
  },
  {
    "answer": "SELECT world_record FROM table_name_40 WHERE press = \"925\"",
    "question_en": "Which 92.5 holds the world record?",
    "question_th": "92.5 ตัวไหนครองสถิติโลก?",
    "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_en": "what is the season when the lead is john shuster and third is shawn rojeski?",
    "question_th": "ฤดูกาลไหนที่พระเอกคือจอห์น ชูสเตอร์ และคนที่สามคือชอว์น โรเจสกี?",
    "context": "CREATE TABLE table_name_54 (season VARCHAR, lead VARCHAR, third VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_96 WHERE third = \"shawn rojeski\"",
    "question_en": "what is the season when the third is shawn rojeski?",
    "question_th": "ฤดูไหนที่คนที่ 3 คือ 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_en": "WHAT IS THE RELIGION WITH A SCHEDULED TRIBE OF 0.90%?",
    "question_th": "ศาสนาอะไรที่มีเผ่าตามตาราง 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_en": "WHAT IS THE FORWARD CASTE WITH A SCHEDULED TRIBE OF 0.90%?",
    "question_th": "อะไรคือวรรณะข้างหน้าที่มีเผ่าตามตารางที่ 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_en": "WHAT IS THE FORWARD CASTE WITH A SCHEDULED CASTE OF 89.50%?",
    "question_th": "อะไรคือวรรณะข้างหน้าที่มีวรรณะตามกำหนดการ 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_en": "WHAT IS THE FORWARD CASTE WITH A SCHEDULED CASTE OF 0.80%?",
    "question_th": "อะไรคือวรรณะข้างหน้าที่มีวรรณะตามกำหนดการ 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_en": "What was the score for the game with a record of 11-22 and a H/A/N of A?",
    "question_th": "คะแนนของเกมด้วยสถิติ 11-22 และ H/A/N ของ 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_en": "What was the H/A/N for the game that ended in a score of 108-102?",
    "question_th": "H/A/N ของเกมที่จบลงด้วยคะแนน 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_en": "What was the score of the game with a H/A/N of H and a record of 12-24?",
    "question_th": "คะแนนของเกมที่มี H/A/N ของ H และสถิติ 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_en": "What was the score of the game played on December 17, with a H/A/N of H?",
    "question_th": "คะแนนของเกมที่เล่นในวันที่ 17 ธันวาคม โดย H/A/N ของ 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_en": "On what date did the Cavaliers have a record of 9-14?",
    "question_th": "คาวาเลียร์สมีสถิติ 9-14 วันไหน?",
    "context": "CREATE TABLE table_name_44 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_64 WHERE score = \"116-106\"",
    "question_en": "Who were the opponents in the game that ended in a score of 116-106?",
    "question_th": "คู่ต่อสู้ในเกมที่จบลงด้วยสกอร์ 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_en": "HOW MANY CARS HAD A CAR # SMALLER THAN 7 AND STARTED ON 2010?",
    "question_th": "มีรถยนต์กี่คันที่มีรถยนต์ # เล็กกว่า 7 คันและเริ่มในปี 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_en": "WHAT WAS THE LOWEST CAR # WITH SON-E-WA, AND 2012 START YEAR?",
    "question_th": "รถที่ต่ำที่สุด # กับ SON-E-WA คืออะไร และปีเริ่มต้นปี 2012 คืออะไร",
    "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_en": "WHAT IS THE HIGHEST # OF CARS WITH A START YEAR LESS THAN 2012, TBA CURRENT CAR, AND MORE THAN 1 CAR?",
    "question_th": "อะไรคือ # รถยนต์ที่สูงที่สุดโดยปีเริ่มต้นน้อยกว่าปี 2012 เป็นรถยนต์ปัจจุบัน และมากกว่า 1 คัน",
    "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_en": "Which monarch assumed office on December 15, 1876?",
    "question_th": "พระมหากษัตริย์องค์ใดเข้ารับตำแหน่งเมื่อวันที่ 15 ธันวาคม พ.ศ. 2419",
    "context": "CREATE TABLE table_name_6 (monarch VARCHAR, assumed_office VARCHAR)"
  },
  {
    "answer": "SELECT left_office FROM table_name_25 WHERE name = \"ke ʻ eaumoku pāpa ʻ iahiahi\"",
    "question_en": "On what date did ke ʻ eaumoku pāpa ʻ iahiahi leave office?",
    "question_th": "เก `เอาโอโมกุ ปาปา `อิอาฮิอาฮี พ้นจากตำแหน่งเมื่อใด?",
    "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_en": "How many years in office were served by the person who assumed the office on October 4, 1886?",
    "question_th": "ผู้ที่เข้ารับตำแหน่งในวันที่ 4 ตุลาคม พ.ศ. 2429 ดำรงตำแหน่งกี่ปี",
    "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_en": "On what date did the person who died on March 23, 1824 leave office?",
    "question_th": "บุคคลที่เสียชีวิตในวันที่ 23 มีนาคม พ.ศ. 2367 ออกจากตำแหน่งเมื่อใด",
    "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_en": "On what date did the person leave office who died on October 23, 1887 and who served 2 years?",
    "question_th": "ผู้นั้นพ้นจากตำแหน่งเมื่อใดซึ่งถึงแก่กรรมเมื่อวันที่ 23 ตุลาคม พ.ศ. 2430 และดำรงตำแหน่ง 2 ปีเมื่อใด",
    "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_en": "Who is the monarch that left office circa 1886?",
    "question_th": "พระมหากษัตริย์ที่ออกจากตำแหน่งประมาณ พ.ศ. 2429 คือใคร?",
    "context": "CREATE TABLE table_name_7 (monarch VARCHAR, left_office VARCHAR)"
  },
  {
    "answer": "SELECT report FROM table_name_29 WHERE venue = \"challenge stadium\"",
    "question_en": "What is the report for Challenge Stadium?",
    "question_th": "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_en": "What did the Melbourne Tigers score when they were the away team?",
    "question_th": "เมลเบิร์น ไทเกอร์ส ทำประตูอะไรได้บ้างตอนเป็นทีมเยือน?",
    "context": "CREATE TABLE table_name_73 (score VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(crowd) FROM table_name_48 WHERE score = \"97-80\"",
    "question_en": "How many were in the crowd when the score was 97-80?",
    "question_th": "มีกี่คนที่อยู่ในฝูงชนเมื่อคะแนนเป็น 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_en": "How big was the crowd when the South Dragons were the away team at the Gold Coast Convention Centre?",
    "question_th": "ฝูงชนมีจำนวนมากแค่ไหนเมื่อทีม South Dragons เป็นทีมเยือนที่ 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_en": "What is the position of pick 32?",
    "question_th": "ตำแหน่ง Pick 32 คืออะไร?",
    "context": "CREATE TABLE table_name_81 (position VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_55 WHERE round = 1",
    "question_en": "Who was the player in round 1?",
    "question_th": "ใครคือผู้เล่นในรอบที่ 1?",
    "context": "CREATE TABLE table_name_55 (player VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT opponents FROM table_name_73 WHERE record = \"3-0\"",
    "question_en": "Who are the opponents with a record of 3-0?",
    "question_th": "คู่ต่อสู้ที่มีสถิติ 3-0 คือใคร?",
    "context": "CREATE TABLE table_name_73 (opponents VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_5 WHERE opponents = 16",
    "question_en": "Who is the opponent with 16 points?",
    "question_th": "คู่ต่อสู้ที่มี 16 แต้มคือใคร?",
    "context": "CREATE TABLE table_name_5 (opponent VARCHAR, opponents VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_name_62 WHERE score = \"l 86–94 (ot)\"",
    "question_en": "What were the high assists when the score was l 86–94 (ot)?",
    "question_th": "แอสซิสต์สูงเมื่อคะแนนอยู่ที่ l 86–94 (ot) คืออะไร?",
    "context": "CREATE TABLE table_name_62 (high_assists VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_name_19 WHERE score = \"l 101–109 (ot)\"",
    "question_en": "What were the high rebounds when the score was l 101–109 (ot)?",
    "question_th": "การรีบาวด์ที่สูงเมื่อคะแนนอยู่ที่ l 101–109 (ot) คืออะไร?",
    "context": "CREATE TABLE table_name_19 (high_rebounds VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_66 WHERE rank = \"2\"",
    "question_en": "What is the Venue that has a Rank of 2?",
    "question_th": "สถานที่ใดที่มีอันดับ 2 คืออะไร?",
    "context": "CREATE TABLE table_name_66 (venue VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_77 WHERE season = \"1995/96\"",
    "question_en": "What is the Rank that has a Season of 1995/96?",
    "question_th": "อันดับในฤดูกาล 1995/96 คืออะไร?",
    "context": "CREATE TABLE table_name_77 (rank VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_94 WHERE rank = \"4\"",
    "question_en": "What is the Opponent that has a Rank of 4?",
    "question_th": "ฝ่ายตรงข้ามที่มีอันดับ 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_en": "What is the Rank that has a Venue of bellerive oval , hobart, and a Margin of 115 runs?",
    "question_th": "อันดับที่มีสถานที่ของวงรี bellerive โฮบาร์ต และระยะขอบ 115 รันคืออะไร?",
    "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_en": "What is the Season that has a Venue of bellerive oval , hobart, and a Rank of 4?",
    "question_th": "ฤดูกาลใดที่มีสถานที่จัดงานรูปไข่ โฮบาร์ต และอันดับ 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_en": "What is the Margin that has a Venue of bellerive oval , hobart, and a Season of 2002/03?",
    "question_th": "ระยะขอบที่มีสถานที่ของวงรีระฆัง โฮบาร์ต และฤดูกาล 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_en": "What is the To par of the Player from New Zealand who had a Score of 75-70=145?",
    "question_th": "อะไรคือค่าพาร์ของผู้เล่นจากนิวซีแลนด์ที่มีคะแนน 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_en": "What is the To par of the T3 Player?",
    "question_th": "ค่า Par ของ 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_en": "What is the sum of Rank, when Assists is \"82\"?",
    "question_th": "ผลรวมของอันดับเมื่อ Assists คือ \"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_en": "What is the total number of Assists, when Name is \"Pablo Prigioni\", and when Games is greater than 21?",
    "question_th": "จำนวน Assists ทั้งหมดเมื่อชื่อคือ \"Pablo Prigioni\" และเมื่อเกมมากกว่า 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_en": "What is the average Assists, when Games is greater than 19, and when Name is \"Pablo Prigioni\"?",
    "question_th": "Assists โดยเฉลี่ยคือเท่าไร เมื่อเกมมากกว่า 19 และเมื่อชื่อคือ \"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_en": "What country is Tom Kite from?",
    "question_th": "ทอม ไคท์ มาจากประเทศอะไร?",
    "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_en": "What is the most money United States player Bob Gilder won?",
    "question_th": "Bob Gilder ผู้เล่น United States ที่ได้รับเงินมากที่สุดคือเท่าไร?",
    "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_en": "What was the statue in st. paul, minnesota constructed before 1966 made out of?",
    "question_th": "รูปปั้นในเซนต์ปีเตอร์สเบิร์กคืออะไร พอล มินนิโซตา สร้างขึ้นก่อนปี 1966 ทำจาก?",
    "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_en": "When was the most recent statue that was made out of solid granite completed?",
    "question_th": "รูปปั้นล่าสุดที่ทำจากหินแกรนิตแข็งสร้างเสร็จเมื่อใด",
    "context": "CREATE TABLE table_name_89 (completed INTEGER, material VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_name_86 WHERE result = \"105-95\"",
    "question_en": "What Game had a Result of 105-95?",
    "question_th": "เกมใดมีผลการแข่งขัน 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_en": "What is the Home Team of the game against Seattle on June 1?",
    "question_th": "เจ้าบ้านเกมกับซีแอตเทิลวันที่ 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_en": "What is the Home Team in Game 2?",
    "question_th": "ทีมเหย้าในเกมที่ 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_en": "What is the Road Team in the game with a Result of 105-95?",
    "question_th": "ทีม Road ในเกมคืออะไรที่มีผลการแข่งขัน 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_en": "What is the Game on May 24 with Road Team Seattle?",
    "question_th": "เกมวันที่ 24 พฤษภาคมกับ 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_en": "On what Date was the Result 82-92?",
    "question_th": "ผล 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_en": "What is the 2006 population of the area with vehicle registration code of G and population density of 1,432.0?",
    "question_th": "ประชากรในปี 2549 ในพื้นที่ที่มีรหัสทะเบียนรถยนต์ G และความหนาแน่นของประชากร 1,432.0 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_7 (population__2006_ VARCHAR, vehicle_registration_code VARCHAR, population_density VARCHAR)"
  },
  {
    "answer": "SELECT area__km²_ FROM table_name_25 WHERE principal_town_city = \"waterford\"",
    "question_en": "What is the area of Waterford?",
    "question_th": "วอเตอร์ฟอร์ด มีพื้นที่ใดบ้าง?",
    "context": "CREATE TABLE table_name_25 (area__km²_ VARCHAR, principal_town_city VARCHAR)"
  },
  {
    "answer": "SELECT nuts_3_region FROM table_name_38 WHERE area__km²_ = \"41.58\"",
    "question_en": "What is the NUT 3 region with area of 41.58?",
    "question_th": "ภูมิภาค NUT 3 ที่มีพื้นที่ 41.58 คืออะไร",
    "context": "CREATE TABLE table_name_38 (nuts_3_region VARCHAR, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_17 WHERE event = \"ritc 22 - rage in the cage 22\"",
    "question_en": "What is Opponent, when Event is RITC 22 - Rage In The Cage 22?",
    "question_th": "คู่ต่อสู้คืออะไร เมื่อเหตุการณ์คือ 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_en": "What is Record, when Method is KO, and when Opponent is Rich Guerin?",
    "question_th": "Record คืออะไร เมื่อ Method เป็น KO และเมื่อฝ่ายตรงข้ามคือ 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_en": "What is Round, when Event is RITC 89 - Triple Main Event 89?",
    "question_th": "รอบคืออะไร เมื่อกิจกรรมคือ RITC 89 - กิจกรรมหลักทริปเปิล 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_en": "What kind of Social Sec Leeds has a Media Officer of jason james and a Treasurer of james davidson?",
    "question_th": "Social Sec Leeds ประเภทใดที่มีเจ้าหน้าที่สื่อของ jason james และเหรัญญิกของ 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_en": "Name the Social Sec Leeds has a President of tom dawson?",
    "question_th": "ชื่อ Social Sec ลีดส์มีประธานทอม ดอว์สันไหม?",
    "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_en": "Name the President has a Media Officer of pete marshall/ nazar striletski?",
    "question_th": "ชื่อประธานาธิบดีมีเจ้าหน้าที่สื่อของ 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–2006\"",
    "question_en": "Name the Social Sec Leeds has Fixtures Sec of n/a, and a General Sec of n/a, and the Season of 2005–2006?",
    "question_th": "ตั้งชื่อ Social Sec ลีดส์มีกำหนดการ Sec ที่ n/a และ General Sec ที่ n/a และฤดูกาลปี 2005–2006 หรือไม่?",
    "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–2007\"",
    "question_en": "Name the  President who has a Treasurer of james davidson, and a Season of 2006–2007?",
    "question_th": "เสนอชื่อประธานาธิบดีซึ่งมีเหรัญญิกของเจมส์ เดวิดสัน และฤดูกาลปี 2549-2550 หรือไม่?",
    "context": "CREATE TABLE table_name_26 (president VARCHAR, treasurer VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT fixtures_sec FROM table_name_12 WHERE season = \"2009–2010\"",
    "question_en": "Name the Fixtures Sec which has a Season of 2009–2010",
    "question_th": "ตั้งชื่อ Fixtures Sec ซึ่งมีฤดูกาล 2009–2010",
    "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_en": "What is the Format of the Epic/Sony Label after 1980?",
    "question_th": "รูปแบบของ Epic/Sony Label หลังปี 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_en": "What is the Format of the Label with Catalog SBP 234999?",
    "question_th": "รูปแบบของฉลากพร้อมแคตตาล็อก 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_en": "Which poll source has a lead of 17?",
    "question_th": "แหล่งโพลใดมีคะแนนนำ 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_en": "What years did Elden Campbell category:articles with hcards and jersesy number of 41 play?",
    "question_th": "Elden Campbell เล่นหมวดหมู่:บทความที่มี hcards และ jersey number 41 กี่ปี?",
    "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_en": "What is the listed date of the Warren pony truss bridge that was built in 1925?",
    "question_th": "สะพาน Warren Pony Truss ที่สร้างขึ้นในปี 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_en": "When was Moores Creek Bridge built?",
    "question_th": "สะพาน Moores Creek สร้างขึ้นเมื่อใด",
    "context": "CREATE TABLE table_name_20 (built VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT built FROM table_name_55 WHERE name = \"blackburn point bridge\"",
    "question_en": "When was Blackburn Point Bridge built?",
    "question_th": "สะพานแบล็คเบิร์นพอยต์สร้างขึ้นเมื่อใด",
    "context": "CREATE TABLE table_name_55 (built VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT county FROM table_name_98 WHERE location = \"st. augustine\"",
    "question_en": "What county is the St. Augustine bridge in?",
    "question_th": "สะพานเซนต์ออกัสตินตั้งอยู่ในเขตใด",
    "context": "CREATE TABLE table_name_98 (county VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_21 WHERE \"notes\" = \"notes\"",
    "question_en": "Which Date has Notes of notes?",
    "question_th": "วันที่ใดมีบันทึกย่อ?",
    "context": "CREATE TABLE table_name_21 (date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_86 WHERE location = \"davos\" AND time = \"45.7\"",
    "question_en": "Which Date has a Location of davos, and a Time of 45.7?",
    "question_th": "วันที่ใดมีที่ตั้งของดาวอส และเวลา 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_en": "Which Location has a Date of 1931-02-02?",
    "question_th": "สถานที่ใดมีวันที่ 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_en": "Which Time has Notes of men's speed skating?",
    "question_th": "เวลาใดที่มีบันทึกการเล่นสเก็ตเร็วของผู้ชาย?",
    "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_en": "Which Location has Notes of eisstadion, and a Date of 1930-01-11?",
    "question_th": "สถานที่ใดมีบันทึกย่อของ eisstadion และวันที่ 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_en": "Which Distance has a Date of 1930-01-11?",
    "question_th": "ระยะทางใดมีวันที่ 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_en": "What is the weight when the race was the VRC Melbourne Cup?",
    "question_th": "สมัยแข่ง 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_en": "What weight has a distance of 8F, and RRC Hill Stakes (wfa) as the race?",
    "question_th": "น้ำหนักเท่าไหร่ที่มีระยะ 8F และ RRC Hill Stakes (wfa) ในการแข่งขัน?",
    "context": "CREATE TABLE table_name_7 (weight VARCHAR, distance VARCHAR, race VARCHAR)"
  },
  {
    "answer": "SELECT distance FROM table_name_16 WHERE weight = 9.2",
    "question_en": "What is the distance when the weight is 9.2?",
    "question_th": "น้ำหนัก 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_en": "what is the pick for adam gettis?",
    "question_th": "ตัวเลือกของอดัม เก็ตติสคืออะไร?",
    "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_en": "what is the pick for alfred morris when the overall is less than 217, and the round is smaller than 6?",
    "question_th": "อัลเฟรด มอร์ริส จะเลือกอะไรเมื่อผลรวมน้อยกว่า 217 และรอบน้อยกว่า 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_en": "what is the college for keenan robinson when overall is more than 102?",
    "question_th": "วิทยาลัยสำหรับคีแนน โรบินสัน มีจำนวนมากกว่า 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_en": "what is the pick for robert griffin iii?",
    "question_th": "ตัวเลือกของโรเบิร์ต กริฟฟิน iii คืออะไร?",
    "context": "CREATE TABLE table_name_97 (pick VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT MAX(appearances) FROM table_name_21 WHERE flamengo_career = \"1989–1993 1996–1998 2004–2005\"",
    "question_en": "How many appearances did the flamengo player who was with flamengo during the years 1989–1993 1996–1998 2004–2005 have?",
    "question_th": "นักเตะฟลาเมงโกที่อยู่กับฟลาเมงโกในช่วงปี 1989–1993 ลงเล่นไปกี่ครั้ง 1996–1998 2004–2005?",
    "context": "CREATE TABLE table_name_21 (appearances INTEGER, flamengo_career VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_96 WHERE week = 1",
    "question_en": "What was the attendance on week 1?",
    "question_th": "สัปดาห์ที่ 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_en": "Who was the opponent before week 3 and a result of w 28-6?",
    "question_th": "คู่ต่อสู้ก่อนสัปดาห์ที่ 3 และผลการแข่งขัน 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_en": "What is the sum of core# with a part number of osa242cep5au and TDP greater than 82.1?",
    "question_th": "ผลรวมของ core# ที่มีหมายเลขชิ้นส่วน osa242cep5au และ TDP มากกว่า 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_en": "What is the sum of core# with a TDP less than 85.3?",
    "question_th": "ผลรวมของ core# ที่มี TDP น้อยกว่า 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_en": "Which Winning score has a Date of aug 26, 1973?",
    "question_th": "คะแนนชนะใดมีวันที่ 26 ส.ค. 2516",
    "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_en": "Which Runner(s)-up has a Date of may 19, 1973?",
    "question_th": "รองชนะเลิศคนไหนมีวันที่ 19 พฤษภาคม 2516?",
    "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_en": "Which Margin of victory has a Runner(s)-up of betty burfeindt, and a Tournament of pompano beach classic?",
    "question_th": "ส่วนต่างแห่งชัยชนะมีรองชนะเลิศคือ Betty Burfeindt และ 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_en": "Which Runner(s)-up has a Tournament of cameron park open?",
    "question_th": "รองชนะเลิศคนไหนเปิดการแข่งขัน Tournament of Cameron Park บ้าง?",
    "context": "CREATE TABLE table_name_62 (runner_s__up VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT runner_s__up FROM table_name_26 WHERE winning_score = –8(68 - 68 - 72 - 72 = 280)",
    "question_en": "Which Runner(s)-up has a Winning score of –8 (68-68-72-72=280)?",
    "question_th": "รองชนะเลิศคนใดมีคะแนนชนะ –8 (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_en": "Which Date has a Tournament of national jewish hospital open, and a Runner(s)-up of pat bradley?",
    "question_th": "วันที่ใดที่การแข่งขันของโรงพยาบาลชาวยิวแห่งชาติเปิด และรองชนะเลิศจาก แพท แบรดลีย์?",
    "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_en": "What is the date for the winner Universitario after the 1943 season?",
    "question_th": "วันที่สำหรับผู้ชนะ Universitario หลังฤดูกาล 1943 คือเมื่อใด",
    "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_en": "What is the competition before the 1930 season, and a winning draw?",
    "question_th": "การแข่งขันก่อนฤดูกาล 1930 คืออะไร และเสมอกันเพื่อชัยชนะ?",
    "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_en": "Who is the co-driver for the 6th position and more than 159 laps?",
    "question_th": "ใครคือนักขับร่วมอันดับที่ 6 และมากกว่า 159 รอบ?",
    "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_en": "Which location has 13 floors and a rank greater than 12?",
    "question_th": "ตำแหน่งใดมี 13 ชั้นและมีอันดับมากกว่า 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_en": "What is the Visitor on January 1?",
    "question_th": "ผู้เยี่ยมชมในวันที่ 1 มกราคมคืออะไร?",
    "context": "CREATE TABLE table_name_58 (visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_63 WHERE score = \"3–1\" AND visitor = \"toronto maple leafs\" AND date = \"january 20\"",
    "question_en": "What is the Record of the Game on January 20 with Visitor Toronto Maple Leafs with a Score of 3–1?",
    "question_th": "บันทึกของเกมในวันที่ 20 มกราคมกับผู้มาเยือนโตรอนโตเมเปิลลีฟส์ด้วยคะแนน 3–1 คืออะไร?",
    "context": "CREATE TABLE table_name_63 (record VARCHAR, date VARCHAR, score VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_75 WHERE score = \"6–2\" AND date = \"november 24\"",
    "question_en": "What is the Record of the game on November 24 with a Score of 6–2?",
    "question_th": "สถิติของเกมวันที่ 24 พฤศจิกายน ด้วยสกอร์ 6–2 คืออะไร?",
    "context": "CREATE TABLE table_name_75 (record VARCHAR, score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_32 WHERE score = \"1–3\" AND visitor = \"chicago black hawks\" AND date = \"november 15\"",
    "question_en": "What is the Record of the game on November 15 against Visitor Chicago Black Hawks with a Score of 1–3?",
    "question_th": "บันทึกของเกมวันที่ 15 พฤศจิกายนกับผู้มาเยือนชิคาโกแบล็กฮอกส์ด้วยสกอร์ 1–3 คืออะไร?",
    "context": "CREATE TABLE table_name_32 (record VARCHAR, date VARCHAR, score VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_70 WHERE score = \"3–1\" AND record = \"1–1–0\"",
    "question_en": "What is the Date of the game with a Score of 3–1 and Record of 1–1–0?",
    "question_th": "วันที่ของเกมที่มีสกอร์ 3–1 และสถิติ 1–1–0 คืออะไร?",
    "context": "CREATE TABLE table_name_70 (date VARCHAR, score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_33 WHERE date = \"january 24\"",
    "question_en": "What is the Visitor of the game on January 24?",
    "question_th": "ผู้เยี่ยมชมเกมในวันที่ 24 มกราคมคืออะไร?",
    "context": "CREATE TABLE table_name_33 (visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_54 WHERE game = 27",
    "question_en": "What is Record, when Game is 27?",
    "question_th": "Record คืออะไร เมื่อ Game คือ 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_en": "What is Team, when High Rebounds is David Lee (15)?",
    "question_th": "Team คืออะไร ในเมื่อ High Rebounds คือ 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_en": "What is Record, when Location Attendance, is Madison Square Garden 19,009?",
    "question_th": "บันทึกคืออะไร เมื่อการเข้าร่วมสถานที่คือ 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_en": "How many weeks on top was OMC?",
    "question_th": "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_en": "What's the volume:issue of Sheryl Crow with 3 weeks on top?",
    "question_th": "เล่มที่เท่าไหร่:ฉบับของ Sheryl Crow ที่มีความยาว 3 สัปดาห์อยู่ด้านบน",
    "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_en": "What is Coverage (Transmitter Site), when Power (kW) is \"10kW\", and when Callsign is \"DYFX-TV\"?",
    "question_th": "ความครอบคลุม (ไซต์เครื่องส่งสัญญาณ) คืออะไร เมื่อกำลัง (kW) คือ \"10kW\" และเมื่อ Callsign คือ \"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_en": "What is Coverage (Transmitter Site), when Power (kW) is \"10kW\", and when Callsign is \"DYFX-TV\"?",
    "question_th": "ความครอบคลุม (ไซต์เครื่องส่งสัญญาณ) คืออะไร เมื่อกำลัง (kW) คือ \"10kW\" และเมื่อ Callsign คือ \"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_en": "What is Branding, when Callsign is \"DXED-TV\"?",
    "question_th": "การสร้างแบรนด์คืออะไร เมื่อ Callsign คือ \"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_en": "What is Power (kW), when Coverage (Transmitter Site) is \"Lucena\"?",
    "question_th": "กำลัง (kW) คืออะไร เมื่อความครอบคลุม (ไซต์เครื่องส่งสัญญาณ) คือ \"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_en": "What year did Ivanovic win with Ivanovic greater than 4 and round of R16?",
    "question_th": "อิวาโนวิชชนะโดยอิวาโนวิชมากกว่า 4 และรอบ 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_en": "What is the highest result for Jankovic at Indian Wells and round of SF?",
    "question_th": "ผลลัพธ์สูงสุดของ Jankovic ที่ Indian Wells และรอบ 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_en": "Where did Ben Gordon (8) have the high assists?",
    "question_th": "เบน กอร์ดอน (8) มีแอสซิสต์สูงตรงไหน?",
    "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_en": "Who had the high points at the United Center 20,389?",
    "question_th": "ใครมีแต้มสูงในยูไนเต็ดเซ็นเตอร์ 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_en": "Where was the location attendance when Minnesota played?",
    "question_th": "การเข้าร่วมงานในสถานที่ใดเมื่อมินนิโซตาเล่น?",
    "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_en": "What date did Ben Gordon (8) have high assists?",
    "question_th": "เบ็น กอร์ดอน (8) ทำแอสซิสต์สูงได้ตั้งแต่วันไหน?",
    "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_en": "What team had a finish of 25 in a smaller than 28?",
    "question_th": "ทีมใดจบสกอร์ 25 ในเวลาน้อยกว่า 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_en": "For any races with a start of 14 what was the lowest finish?",
    "question_th": "สำหรับการแข่งขันใดๆ ที่ออกสตาร์ทด้วย 14 สนามใดคือจุดจบที่ต่ำที่สุด?",
    "context": "CREATE TABLE table_name_61 (finish INTEGER, start VARCHAR)"
  },
  {
    "answer": "SELECT transfer_fee FROM table_name_22 WHERE name = \"jimmy gibson\"",
    "question_en": "What is the transfer fee for Jimmy Gibson?",
    "question_th": "ค่าธรรมเนียมการโอนของ 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_en": "What is the sum of silver medals won for rank 7?",
    "question_th": "ผลรวมของเหรียญเงินที่ได้รับสำหรับอันดับ 7 เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_30 (silver INTEGER, rank VARCHAR)"
  },
  {
    "answer": "SELECT agg FROM table_name_95 WHERE team_1 = \"goldfields obuasi\"",
    "question_en": "Goldfields Obuasi Team 1 has what Agg. totals ?",
    "question_th": "Goldfields Obuasi Team 1 มีสิ่งที่ Agg. ยอดรวม ?",
    "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_en": "Which Inhabitants has a Party of south tyrolean people's party, a Municipality of bruneck, and an Election larger than 2010?",
    "question_th": "ผู้อยู่อาศัยคนใดมีพรรคของประชาชนไทโรเลียนใต้, เทศบาลเมืองบรูเน็ค และการเลือกตั้งที่ใหญ่กว่าปี 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_en": "Which Election has a Municipality of laives, and Inhabitants smaller than 17,197?",
    "question_th": "การเลือกตั้งใดมีเทศบาลเป็นฆราวาสและมีประชากรน้อยกว่า 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–62\"",
    "question_en": "What is the number week with a result of w 40–62?",
    "question_th": "สัปดาห์ตัวเลขที่มีผลลัพธ์ของ w 40–62 คืออะไร?",
    "context": "CREATE TABLE table_name_35 (week INTEGER, result VARCHAR)"
  },
  {
    "answer": "SELECT game_site FROM table_name_79 WHERE week = 15",
    "question_en": "What was the game site week 15?",
    "question_th": "เว็บไซต์เกมสัปดาห์ที่ 15 คืออะไร?",
    "context": "CREATE TABLE table_name_79 (game_site VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_5 WHERE result = \"w 52–43\"",
    "question_en": "What is the record when the result was w 52–43?",
    "question_th": "บันทึกเมื่อผลลัพธ์คือ w 52–43 คืออะไร?",
    "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–42\"",
    "question_en": "What is the highest week when the game site was Verizon Wireless Arena, and the result was w 59–42?",
    "question_th": "สัปดาห์ใดที่สูงที่สุดเมื่อเว็บไซต์เกมคือ Verizon Wireless Arena และผลลัพธ์คือ w 59–42",
    "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_en": "What is the opponent on May 25, 2007?",
    "question_th": "คู่ต่อสู้ในวันที่ 25 พฤษภาคม 2550 คืออะไร?",
    "context": "CREATE TABLE table_name_98 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_94 WHERE record = \"5–0\"",
    "question_en": "What team was the opponent with a record of 5–0?",
    "question_th": "ทีมใดเป็นคู่ต่อสู้ที่มีสถิติ 5–0?",
    "context": "CREATE TABLE table_name_94 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_37 WHERE away_team = \"adelaide\"",
    "question_en": "What date was the away team from Adelaide?",
    "question_th": "ทีมเยือนจากแอดิเลดคือวันไหน?",
    "context": "CREATE TABLE table_name_37 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_62 WHERE ground = \"colonial stadium\"",
    "question_en": "What date was the Colonial Stadium?",
    "question_th": "สนามกีฬาโคโลเนียลจัดขึ้นวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_62 (date VARCHAR, ground VARCHAR)"
  },
  {
    "answer": "SELECT SUM(crowd) FROM table_name_98 WHERE ground = \"westpac stadium\"",
    "question_en": "What was the total crowd attendance at Westpac Stadium?",
    "question_th": "ผู้เข้าชมทั้งหมดที่สนามกีฬา 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_en": "What is the attendance of the match with maidsone united as the away team?",
    "question_th": "แมตช์นี้นัดที่ เมดโซน ยูไนเต็ด เป็นทีมเยือน รับชมกันขนาดไหน?",
    "context": "CREATE TABLE table_name_13 (attendance VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_73 WHERE tie_no = \"45\"",
    "question_en": "What is the attendance with a 45 tie no.?",
    "question_th": "การเข้าร่วมด้วยคะแนนเสมอกัน 45 ครั้งคืออะไร?",
    "context": "CREATE TABLE table_name_73 (attendance VARCHAR, tie_no VARCHAR)"
  },
  {
    "answer": "SELECT february FROM table_name_74 WHERE opponent = \"montreal canadiens\"",
    "question_en": "What is February, when Opponent is \"Montreal Canadiens\"?",
    "question_th": "เดือนกุมภาพันธ์คือเมื่อฝ่ายตรงข้ามคือ “มอนทรีออล คานาเดียนส์”?",
    "context": "CREATE TABLE table_name_74 (february VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT february FROM table_name_46 WHERE record = \"21-29-11\"",
    "question_en": "What is February, when Record is \"21-29-11\"?",
    "question_th": "เดือนกุมภาพันธ์คือเมื่อไหร่ บันทึกคือ \"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_en": "What is the lowest February, when Record is \"21-30-11\", and when Game is greater than 62?",
    "question_th": "เดือนกุมภาพันธ์ต่ำสุดคือเท่าไร เมื่อสถิติคือ \"21-30-11\" และเมื่อเกมมากกว่า 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_en": "What is Score, when Game is less than 61, when February is less than 11, and when Opponent is \"@ Buffalo Sabres\"?",
    "question_th": "คะแนนคืออะไร เมื่อเกมน้อยกว่า 61 เมื่อเดือนกุมภาพันธ์น้อยกว่า 11 และเมื่อฝ่ายตรงข้ามคือ \"@ 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_en": "What is the highest Game, when Record is \"21-30-11\"?",
    "question_th": "เกมสูงสุดคืออะไร เมื่อสถิติคือ \"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_en": "Who had the most rebounds in the game against Phoenix with a number over 76?",
    "question_th": "ใครมีรีบาวด์มากที่สุดในเกมกับฟีนิกซ์ด้วยจำนวนมากกว่า 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_en": "What is Years, when Jersey Number(s) is 5?",
    "question_th": "ปีคืออะไร เมื่อหมายเลขเสื้อคือ 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_en": "What is Position when Player is Drew Barry Category:Articles With hCards?",
    "question_th": "ตำแหน่งจะเป็นอย่างไรเมื่อผู้เล่นคือ Drew Barry หมวดหมู่:บทความที่มี 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_en": "What is Years, when Jersey Number(s) is 21, and when Position is SG?",
    "question_th": "ปีคืออะไร เมื่อหมายเลขเสื้อคือ 21 และเมื่อตำแหน่งคือ 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_en": "What is Postition, when Nationality is United States, when Jersey Number(s) is 12, and when Player is Tom Black Category:Articles With hCards?",
    "question_th": "ตำแหน่งคืออะไร เมื่อสัญชาติคือสหรัฐอเมริกา เมื่อหมายเลขเสื้อคือ 12 และเมื่อผู้เล่นคือ Tom Black หมวดหมู่:บทความที่มี 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_en": "Which Club has a Founded smaller than 1882, and a League of fa premier league?",
    "question_th": "สโมสรใดมีการก่อตั้งน้อยกว่าปี 1882 และลีกแห่งพรีเมียร์ลีก?",
    "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_en": "Which Venue has a Club of west bromwich albion?",
    "question_th": "สถานที่ใดมีสโมสรของเวสต์บรอมมิชอัลเบียน?",
    "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_en": "Which Sport has a Founded larger than 1874 and a Club of birmingham city?",
    "question_th": "กีฬาชนิดใดที่ก่อตั้งมีขนาดใหญ่กว่าปี 1874 และมีสโมสรแห่งเมืองเบอร์มิงแฮม?",
    "context": "CREATE TABLE table_name_71 (sport VARCHAR, founded VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT league FROM table_name_48 WHERE venue = \"billesley common\"",
    "question_en": "What kind of League has a Venue of billesley common?",
    "question_th": "ลีกประเภทใดที่มีสถานที่ของ Billesley เหมือนกัน?",
    "context": "CREATE TABLE table_name_48 (league VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT SUM(founded) FROM table_name_5 WHERE venue = \"villa park\"",
    "question_en": "COunt the Founded which has a Venue of villa park?",
    "question_th": "นับผู้ก่อตั้งซึ่งมีสถานที่ของวิลล่าพาร์ค?",
    "context": "CREATE TABLE table_name_5 (founded INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_name_73 WHERE founded > 1875 AND sport = \"football\"",
    "question_en": "Name the Club which has a Founded larger than 1875, and a Sport of football?",
    "question_th": "ตั้งชื่อสโมสรซึ่งมีการก่อตั้งใหญ่กว่าปี 1875 และกีฬาฟุตบอลหรือไม่?",
    "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_en": "What score did Seve Ballesteros have when he was in T3 place?",
    "question_th": "เซเว บาเยสเตรอส ได้คะแนนเท่าไหร่ตอนที่เขาอยู่อันดับ 3?",
    "context": "CREATE TABLE table_name_54 (score VARCHAR, place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT money___$__ FROM table_name_43 WHERE player = \"jerry pate\"",
    "question_en": "What was the money value for Jerry Pate?",
    "question_th": "มูลค่าเงินของ Jerry Pate คืออะไร?",
    "context": "CREATE TABLE table_name_43 (money___$__ VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_54 WHERE player = \"curtis strange\"",
    "question_en": "What country is Curtis Strange from?",
    "question_th": "Curtis Strange มาจากประเทศอะไร",
    "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_en": "Who had a score of 77-69-70-71=287?",
    "question_th": "ใครได้คะแนน 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_en": "What was Tom Kite's to par?",
    "question_th": "Tom Kite's ได้อะไร?",
    "context": "CREATE TABLE table_name_71 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_99 WHERE home = \"platense\"",
    "question_en": "What is the date for the game where Platense was the home side?",
    "question_th": "เกมที่พลาเทนเซ่เป็นเจ้าบ้านคือวันที่เท่าไหร่?",
    "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_en": "On what date was the game with fewer than 6650 in attendance, that finished 0:1?",
    "question_th": "เกมคือวันที่ใดที่มีผู้เข้าร่วมน้อยกว่า 6,650 คน และจบด้วยสกอร์ 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_en": "Who was the home team in the game with more than 1675, and Olimpia was the away side?",
    "question_th": "เจ้าบ้านในเกมไหนมากกว่า 1675 และโอลิมเปียเป็นทีมเยือน?",
    "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_en": "What was the total Attendance in weeks previous of 5, playing the Seattle Seahawks?",
    "question_th": "จำนวนผู้เข้าร่วมทั้งหมดในสัปดาห์ก่อนหน้าจาก 5 คนในการเล่นทีมซีแอตเทิล ซีฮอว์กส์เป็นเท่าใด",
    "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_en": "Who is the head coach for the team that has finke as the shirt sponsor?",
    "question_th": "ใครเป็นเฮดโค้ชทีมที่มีฟินเก้เป็นสปอนเซอร์เสื้อ?",
    "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_en": "Who was the team captain of tus koblenz?",
    "question_th": "ใครคือกัปตันทีมตุส โคเบลนซ์?",
    "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_en": "Who is the shirt sponsor for the team with a head coach of andre schubert and a kitmaker of puma?",
    "question_th": "ใครเป็นผู้สนับสนุนเสื้อให้กับทีม โดยมีหัวหน้าโค้ชของอังเดร ชูเบิร์ต และช่างทำชุดของพูม่า?",
    "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üsseldorf)\"",
    "question_en": "Who is the team captain for the team with sparkasse (düsseldorf) as the shirt sponsor?",
    "question_th": "ใครคือกัปตันทีมของทีม โดยมี สปาร์คเซ่ (ดุสเซลดอร์ฟ) เป็นสปอนเซอร์เสื้อ?",
    "context": "CREATE TABLE table_name_41 (team VARCHAR, shirt_sponsor VARCHAR)"
  },
  {
    "answer": "SELECT head_coach FROM table_name_94 WHERE team = \"arminia bielefeld\"",
    "question_en": "Who is the head coach for the team, arminia bielefeld?",
    "question_th": "อาร์มิเนีย บีเลเฟลด์ เฮดโค้ชของทีมคือใคร?",
    "context": "CREATE TABLE table_name_94 (head_coach VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_61 WHERE attendance = \"77,698\"",
    "question_en": "What is the result of the game with 77,698 in attendance?",
    "question_th": "ผลการแข่งขันที่มีผู้ชม 77,698 คนเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_61 (result VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_60 WHERE result = \"2-1\"",
    "question_en": "What is the Venue when the result was 2-1?",
    "question_th": "สนามไหนเมื่อผลออกมาเป็น 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_en": "What is the venue when the Round shows after extra time, chelsea won on 4-1 on penalties?",
    "question_th": "สนามไหนที่รอบนี้แสดงให้เห็นหลังต่อเวลาพิเศษ เชลซี ชนะจุดโทษ 4-1?",
    "context": "CREATE TABLE table_name_64 (venue VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_12 WHERE result = \"1-1\"",
    "question_en": "What was the attendance when the result was 1-1?",
    "question_th": "การมีส่วนร่วมเมื่อผลเป็น 1-1 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_12 (attendance VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT version FROM table_name_99 WHERE format = \"cd\"",
    "question_en": "What is the Version of the CD release?",
    "question_th": "ซีดีออกเวอร์ชันอะไร?",
    "context": "CREATE TABLE table_name_99 (version VARCHAR, format VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_40 WHERE format = \"cd\" AND version = \"original\"",
    "question_en": "What is the Label of the Original CD release?",
    "question_th": "ฉลากของซีดีต้นฉบับที่วางจำหน่ายคืออะไร",
    "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_en": "What is the Version of the CD release on June 12, 2008 in Cyprus?",
    "question_th": "ซีดีที่วางจำหน่ายในวันที่ 12 มิถุนายน 2551 ในประเทศไซปรัสเป็นเวอร์ชันอะไร",
    "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_en": "What is the Region of the release on December 22, 2008?",
    "question_th": "ภูมิภาคที่วางจำหน่ายในวันที่ 22 ธันวาคม 2551 คือภูมิภาคใด",
    "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_en": "What is the Label of the release on June 12, 2008 in Cyprus?",
    "question_th": "ฉลากของการวางจำหน่ายเมื่อวันที่ 12 มิถุนายน พ.ศ. 2551 ในประเทศไซปรัสคืออะไร",
    "context": "CREATE TABLE table_name_62 (label VARCHAR, date VARCHAR, region VARCHAR)"
  },
  {
    "answer": "SELECT format FROM table_name_16 WHERE region = \"greece\"",
    "question_en": "What is the Format of the release in Greece?",
    "question_th": "รูปแบบของการเปิดตัวในกรีซคืออะไร?",
    "context": "CREATE TABLE table_name_16 (format VARCHAR, region VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(tonnage) FROM table_name_4 WHERE date = \"25 june 1943\"",
    "question_en": "What is the total number of Tonnage, when Date is \"25 June 1943\"?",
    "question_th": "น้ำหนักรวมทั้งหมดเป็นเท่าใด เมื่อวันที่คือ \"25 มิถุนายน พ.ศ. 2486\"?",
    "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_en": "What is Ship, when Nationality is \"Syria\", and when Date is \"26 June 1943\", and when Tonnage is \"80\"?",
    "question_th": "เรือคืออะไร เมื่อสัญชาติคือ \"ซีเรีย\" และเมื่อใดคือ \"26 มิถุนายน พ.ศ. 2486\" และเมื่อใดน้ำหนักเป็น \"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_en": "What is the record of the game that resulted in a loss with more than 56,648 people in attendance?",
    "question_th": "อะไรคือสถิติของเกมที่ส่งผลให้มีผู้เข้าร่วมการแข่งขันมากกว่า 56,648 คน?",
    "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_en": "What was the university of akron's enrollment?",
    "question_th": "การลงทะเบียนของมหาวิทยาลัย Akron คืออะไร?",
    "context": "CREATE TABLE table_name_35 (enrollment VARCHAR, university VARCHAR)"
  },
  {
    "answer": "SELECT athletics_nickname FROM table_name_86 WHERE founded = \"1872\"",
    "question_en": "Which athletics nickname was founded in 1872?",
    "question_th": "ชื่อเล่นกรีฑาใดที่ก่อตั้งในปี พ.ศ. 2415",
    "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_en": "What date did the executive office in Dover take office?",
    "question_th": "สำนักงานบริหารในโดเวอร์เข้ารับตำแหน่งเมื่อใด",
    "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_en": "What left office date happened in Washington?",
    "question_th": "วันที่ดำรงตำแหน่งที่เหลือเกิดขึ้นในวอชิงตันเมื่อใด",
    "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_en": "What is the 2nd Leg, when Team 2 is Marbella?",
    "question_th": "เลกที่ 2 คืออะไร ในเมื่อทีม 2 คือ มาร์เบลล่า?",
    "context": "CREATE TABLE table_name_65 (team_2 VARCHAR)"
  },
  {
    "answer": "SELECT result_f___a FROM table_name_22 WHERE round = \"round 5\"",
    "question_en": "What was the result F-A for round 5?",
    "question_th": "ผล FA รอบ 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_en": "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?",
    "question_th": "การเล่นที่สูงที่สุดที่แพ้น้อยกว่า 12 และชื่อของ ec amberg (n) และตำแหน่งที่น้อยกว่า 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_en": "What is the average Lost that has a Name of ec amberg (n), and a Position smaller than 4?",
    "question_th": "อะไรคือค่าเฉลี่ยของการสูญเสียที่มีชื่อ ec amberg (n) และตำแหน่งที่น้อยกว่า 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_en": "What is the whole of Points that has a Drawn smaller than 1?",
    "question_th": "แต้มทั้งหมดที่มีการเสมอน้อยกว่า 1 คืออะไร?",
    "context": "CREATE TABLE table_name_14 (points INTEGER, drawn INTEGER)"
  },
  {
    "answer": "SELECT SUM(drawn) FROM table_name_33 WHERE lost = 4",
    "question_en": "What is the whole of Drawn that has a Lost of 4?",
    "question_th": "Drawn ทั้งหมดที่มีการแพ้ 4 คืออะไร?",
    "context": "CREATE TABLE table_name_33 (drawn INTEGER, lost VARCHAR)"
  },
  {
    "answer": "SELECT SUM(drawn) FROM table_name_42 WHERE played > 14",
    "question_en": "What is the whole of Drawn that has a Played larger than 14?",
    "question_th": "Drawn ทั้งหมดที่มี Played มากกว่า 14 คืออะไร?",
    "context": "CREATE TABLE table_name_42 (drawn INTEGER, played INTEGER)"
  },
  {
    "answer": "SELECT result FROM table_name_75 WHERE date = \"april 28\"",
    "question_en": "What was the result of the game on April 28?",
    "question_th": "ผลการแข่งขันวันที่ 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_en": "Who was the home team on April 20 against Boston?",
    "question_th": "วันที่ 20 เมษายน เจ้าบ้านเจอบอสตันคือใคร?",
    "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_en": "What was the result of game 3?",
    "question_th": "ผลการแข่งขันเกมที่ 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_en": "What is the result of the game on April 17 against Los Angeles?",
    "question_th": "ผลการแข่งขันวันที่ 17 เมษายน พบ ลอสแอนเจลิส เป็นอย่างไร?",
    "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_en": "What is the date of game 3 with Boston as the road team?",
    "question_th": "วันที่ของเกมที่ 3 โดยมีบอสตันเป็นทีมโรดคือวันที่เท่าไหร่?",
    "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_en": "What is the IATA for Esperadinha Airport?",
    "question_th": "IATA สำหรับสนามบิน Esperadinha คืออะไร",
    "context": "CREATE TABLE table_name_3 (iata VARCHAR, airportname VARCHAR)"
  },
  {
    "answer": "SELECT airportname FROM table_name_3 WHERE city___town = \"são filipe\" AND iata = \"sfl\"",
    "question_en": "What is the name of the airport in São Filipe that has an IATA of sfl?",
    "question_th": "สนามบินใน São Filipe ชื่อสนามบินใดที่มี IATA เป็น 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_en": "In which city is the ICAO gvma?",
    "question_th": "ICAO gvma ตั้งอยู่ในเมืองใด",
    "context": "CREATE TABLE table_name_36 (city___town VARCHAR, icao VARCHAR)"
  },
  {
    "answer": "SELECT icao FROM table_name_88 WHERE iata = \"bvc\"",
    "question_en": "What is the ICAO for the IATA bvc?",
    "question_th": "ICAO สำหรับ IATA bvc คืออะไร",
    "context": "CREATE TABLE table_name_88 (icao VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT island FROM table_name_53 WHERE airportname = \"esperadinha airport\"",
    "question_en": "On which island is Esperadinha airport located?",
    "question_th": "สนามบิน Esperadinha ตั้งอยู่บนเกาะใด",
    "context": "CREATE TABLE table_name_53 (island VARCHAR, airportname VARCHAR)"
  },
  {
    "answer": "SELECT city___town FROM table_name_53 WHERE icao = \"gvsf\"",
    "question_en": "Which city has an ICAO of gvsf?",
    "question_th": "เมืองใดมี ICAO เป็น 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_en": "How many gold when silver is less than 32, bronze is 25, and overall is less than 67?",
    "question_th": "เงินน้อยกว่า 32 ทองแดงได้ 25 ทอง และรวมแล้วน้อยกว่า 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_en": "How many silver when bronze is 25 and overall is less than 67?",
    "question_th": "ถ้าทองแดงได้ 25 และรวมแล้วน้อยกว่า 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_en": "what is the least silver when overall is less than 67, team is saami and gold is less than 5?",
    "question_th": "เงินน้อยที่สุดเมื่อรวมน้อยกว่า 67 ทีมคือซามิ และทองน้อยกว่า 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_en": "what is the average bronze when the team is northwest territories and gold is more than 34?",
    "question_th": "บรอนซ์เฉลี่ยเท่าไหร่เมื่อทีมอยู่ดินแดนตะวันตกเฉียงเหนือและทองมากกว่า 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_en": "How many silver when the team is northwest territories and gold is less than 34?",
    "question_th": "ทีมอยู่ดินแดนตะวันตกเฉียงเหนือและทองน้อยกว่า 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_en": "What is the away team with West Ham United as the home team?",
    "question_th": "ทีมเยือนที่มีเวสต์แฮมยูไนเต็ดเป็นเจ้าบ้านคืออะไร?",
    "context": "CREATE TABLE table_name_73 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_34 WHERE tie_no = \"23\"",
    "question_en": "What is the attendance of tie no. 23?",
    "question_th": "การเข้าร่วมของเน็คไทหมายเลขคืออะไร 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_en": "What is the attendance of the match with Carlisle united as the home team?",
    "question_th": "แมตช์ที่คาร์ไลล์ยูไนเต็ดเป็นเจ้าบ้านจะเข้าร่วมอย่างไร?",
    "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_en": "what is the sum of total when year(s) won is 1985?",
    "question_th": "ผลรวมของปีที่ชนะคือปี 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_en": "what is the finish when the country is united states and the player is tiger woods?",
    "question_th": "ปลายทางเป็นประเทศสหรัฐอเมริกาและผู้เล่นเป็นไทเกอร์วู้ดจะจบลงอย่างไร?",
    "context": "CREATE TABLE table_name_51 (finish VARCHAR, country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(total) FROM table_name_92 WHERE finish = \"t32\"",
    "question_en": "How many times was the finish t32?",
    "question_th": "จบ 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_en": "Who was the home team on 8 January 1946 with a tie no of 4?",
    "question_th": "เจ้าบ้านคือใครเมื่อวันที่ 8 มกราคม พ.ศ. 2489 โดยเสมอกันที่ 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_en": "What is the score of the game where Wrexham is the home team and the date is Blackpool?",
    "question_th": "สกอร์ของเกมที่ เร็กซ์แฮม เป็นเจ้าบ้าน และ แบล็คพูล เป็นอย่างไรบ้าง?",
    "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_en": "Name the Programming which has an Aspect of 4:3, and a PSIP Short Name of ibc-tv?",
    "question_th": "ตั้งชื่อโปรแกรมที่มีอัตราส่วน 4:3 และชื่อย่อ PSIP เป็น 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_en": "Name the highest Channel with an Aspect of 4:3, and a PSIP Short Name of ibc-tv?",
    "question_th": "ตั้งชื่อช่องสูงสุดด้วยอัตราส่วน 4:3 และ PSIP ชื่อย่อของ 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_en": "WHich Video has a Channel larger than 56.4?",
    "question_th": "วิดีโอใดมีช่องที่ใหญ่กว่า 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_en": "Which Programming has an Aspect of 4:3 and a PSIP Short Name of metvla?",
    "question_th": "การเขียนโปรแกรมใดมีอัตราส่วน 4:3 และชื่อย่อ PSIP ของ 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_en": "Which Channel has an Aspect of 4:3 and a Programming of me-tv?",
    "question_th": "ช่องไหนมีอัตราส่วน 4:3 และมีรายการ 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_en": "Who is the opponent in a game higher than 76 on April 6?",
    "question_th": "คู่ต่อสู้ในเกมที่สูงกว่า 76 เมื่อวันที่ 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_en": "What is the earliest April date with a game less than 76?",
    "question_th": "วันที่เร็วที่สุดในเดือนเมษายนที่มีเกมน้อยกว่า 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_en": "Which Tracking Method has a Latest stable release of n/a, and a Price in USD of from $202/month?",
    "question_th": "วิธีการติดตามใดที่มีการเผยแพร่ n/a ที่เสถียรล่าสุด และราคาในสกุลเงิน USD เริ่มต้นที่ $202/เดือน",
    "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_en": "Which Name has a Company of quantcast corporation?",
    "question_th": "ชื่อใดมีบริษัทของ 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_en": "Name the Latest stable release that has a Price in USD of free / negotiable?",
    "question_th": "ตั้งชื่อเวอร์ชันเสถียรล่าสุดซึ่งมีราคาเป็น USD ฟรี/ต่อรองได้ใช่หรือไม่",
    "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_en": "Name the Company which has a Price in USD of free / negotiable?",
    "question_th": "ตั้งชื่อบริษัทซึ่งมีราคาเป็น USD ฟรี/ต่อรองได้?",
    "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_en": "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?",
    "question_th": "ตั้งชื่อบริษัทที่มีวิธีการติดตามคุกกี้ผ่านจาวาสคริปต์ และเวอร์ชันเสถียรล่าสุดที่ไม่มีข้อมูล และชื่อของคลิกเทล",
    "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_en": "Name the Tracking Method which has a Company of mapmyuser, llc?",
    "question_th": "ตั้งชื่อวิธีการติดตามซึ่งมีบริษัทของ 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_en": "What was the tie number of the game when the queens park rangers were the home team?",
    "question_th": "เกมที่ควีนส์ปาร์ค เรนเจอร์สเป็นเจ้าบ้านเสมอกันคือเท่าไร?",
    "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_en": "What was the tie number when the away team was Wrexham?",
    "question_th": "เมื่อทีมเยือนเป็นเร็กซ์แฮมเสมอกันที่หมายเลขอะไร?",
    "context": "CREATE TABLE table_name_91 (tie_no VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT brigade FROM table_name_44 WHERE population = \"190\"",
    "question_en": "Which brigade has a population of 190?",
    "question_th": "กองพลใดมีประชากร 190 คน?",
    "context": "CREATE TABLE table_name_44 (brigade VARCHAR, population VARCHAR)"
  },
  {
    "answer": "SELECT defending_forces FROM table_name_22 WHERE population = \"650\"",
    "question_en": "What defending forces have a population of 650?",
    "question_th": "กองกำลังป้องกันใดมีประชากร 650 คน?",
    "context": "CREATE TABLE table_name_22 (defending_forces VARCHAR, population VARCHAR)"
  },
  {
    "answer": "SELECT defending_forces FROM table_name_77 WHERE name = \"danna\"",
    "question_en": "Which defending forces have the name Danna?",
    "question_th": "กองกำลังป้องกันใดมีชื่อว่า Danna?",
    "context": "CREATE TABLE table_name_77 (defending_forces VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_13 WHERE population = \"810\"",
    "question_en": "What name has a population of 810?",
    "question_th": "ชื่ออะไรมีประชากร 810 คน?",
    "context": "CREATE TABLE table_name_13 (name VARCHAR, population VARCHAR)"
  },
  {
    "answer": "SELECT defending_forces FROM table_name_62 WHERE population = \"230\"",
    "question_en": "Which defending forces has a population of 230?",
    "question_th": "กองกำลังป้องกันใดมีประชากร 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_en": "In what region was Degeneration released in digital format on 19 July 2008?",
    "question_th": "Degeneration ได้รับการเผยแพร่ในรูปแบบดิจิทัลเมื่อวันที่ 19 กรกฎาคม พ.ศ. 2551 ในภูมิภาคใด",
    "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_en": "What was the name of the catalog released on 19 July 2008?",
    "question_th": "แค็ตตาล็อกที่เผยแพร่เมื่อวันที่ 19 กรกฎาคม พ.ศ. 2551 ชื่ออะไร",
    "context": "CREATE TABLE table_name_55 (catalog VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_11 WHERE home_team = \"luton town\"",
    "question_en": "who is the away team when the home team is luton town?",
    "question_th": "ทีมเยือนคือใคร เมื่อเจ้าบ้านคือ ลูตัน ทาวน์?",
    "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_en": "what is the attendance when the home team is chester city?",
    "question_th": "การเข้าร่วมงานเมื่อเจ้าบ้านเป็น เชสเตอร์ ซิตี้ เป็นอย่างไร?",
    "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_en": "who is the home team when attendance is 25 november 1997 and the away team is exeter city?",
    "question_th": "ทีมเจ้าบ้านคือใครเมื่อเข้าร่วมคือวันที่ 25 พฤศจิกายน 1997 และทีมเยือนคือเอ็กเซเตอร์ซิตี้?",
    "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_en": "Who are the semifinalists of the tournament with magnus gustafsson as the finalist?",
    "question_th": "ใครคือผู้เข้ารอบรองชนะเลิศของทัวร์นาเมนต์ที่มีแมกนัส กุสตาฟส์สันเป็นผู้เข้ารอบสุดท้าย?",
    "context": "CREATE TABLE table_name_90 (semifinalists VARCHAR, finalist VARCHAR)"
  },
  {
    "answer": "SELECT winner_and_score FROM table_name_43 WHERE semifinalists = \"goran prpić sergi bruguera\"",
    "question_en": "Who is the winner and score of the tournament with semifinalists goran prpić sergi bruguera?",
    "question_th": "ใครคือผู้ชนะและคะแนนของทัวร์นาเมนต์กับผู้เข้ารอบรองชนะเลิศ goran prpić 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_en": "Who is the winner and score during the week of April 22?",
    "question_th": "ใครเป็นผู้ชนะและทำประตูในสัปดาห์ที่ 22 เมษายน?",
    "context": "CREATE TABLE table_name_54 (winner_and_score VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_76 WHERE tournament = \"paris\"",
    "question_en": "What week was the tournament of paris?",
    "question_th": "การแข่งขันปารีสคือสัปดาห์ใด?",
    "context": "CREATE TABLE table_name_76 (week VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT AVG(Champions) AS league FROM table_name_38 WHERE league < 4",
    "question_en": "What is the average Champions League assists for the players with League assists under 4?",
    "question_th": "โดยเฉลี่ยของแชมเปี้ยนส์ลีกแอสซิสต์สำหรับผู้เล่นที่มีลีกแอสซิสต์ต่ำกว่า 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_en": "What is the most Champions League assists for those with a total of 6 and position of Midfielder?",
    "question_th": "แอสซิสต์ในแชมเปี้ยนส์ลีกมากที่สุดสำหรับผู้ที่มีทั้งหมด 6 ครั้งและตำแหน่งกองกลางคืออะไร?",
    "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_en": "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?",
    "question_th": "ผลรวมของ FAC/LC G ที่มี CL G น้อยกว่า 2, แอปทั้งหมดน้อยกว่า 5 แอป และ UEFA YC มากกว่า 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_en": "What is the average FAC/LC apps with a CL G greater than 0, less than 33 PL apps, a FAC/LC G of 0, and less than 2 FA YC?",
    "question_th": "แอป FAC/LC โดยเฉลี่ยที่มี CL G มากกว่า 0, แอป PL น้อยกว่า 33 แอป, FAC/LC G เป็น 0 และ FA YC น้อยกว่า 2 คืออะไร",
    "context": "CREATE TABLE table_name_46 (fac___lc_apps INTEGER, fa_yc VARCHAR, fac___lc_g VARCHAR, cl_g VARCHAR, pl_apps VARCHAR)"
  },
  {
    "answer": "SELECT SUM(fac___lc_apps) FROM table_name_11 WHERE pl_apps < 25 AND UEfa_yc < 0",
    "question_en": "What is the sum of the FAC/LC apps with less than 25 PC apps and a UEFA YC less than 0?",
    "question_th": "ผลรวมของแอป FAC/LC ที่มีแอปสำหรับพีซีน้อยกว่า 25 แอปและ UEFA YC น้อยกว่า 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_en": "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?",
    "question_th": "ผลรวมของแอปทั้งหมดของผู้เล่น benayoun ที่มี PL G มากกว่า 0 และมากกว่า 9 แอป CL เป็นเท่าใด",
    "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_en": "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?",
    "question_th": "PL G ทั้งหมดของธงผู้เล่นที่มี CL G น้อยกว่า 7 แอป CL น้อยกว่า 7 แอป และ FA YC เป็น 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á tereza smitková\"",
    "question_en": "Which tournament had an opponent of petra krejsová tereza smitková?",
    "question_th": "ทัวร์นาเมนต์ใดที่มีคู่ต่อสู้ของ Petra Krejsová tereza smitková?",
    "context": "CREATE TABLE table_name_59 (tournament VARCHAR, opponents VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_34 WHERE opponents = \"darija jurak anaïs laurendon\"",
    "question_en": "What was the outcome when darija jurak anaïs laurendon was the opponent?",
    "question_th": "ผลลัพธ์จะเป็นเช่นไรเมื่อดาริจา จูรัค อานาอิส ลอเรนดอนเป็นคู่ต่อสู้?",
    "context": "CREATE TABLE table_name_34 (outcome VARCHAR, opponents VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_49 WHERE outcome = \"runner-up\" AND score = \"4–6, 3–6\"",
    "question_en": "When was the outcome runner-up with a score of 4–6, 3–6?",
    "question_th": "รองชนะเลิศด้วยสกอร์ 4–6, 3–6 คือเมื่อใด?",
    "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_en": "What is the highest game with a 47-21-3 record?",
    "question_th": "เกมสูงสุดที่มีสถิติ 47-21-3 คืออะไร?",
    "context": "CREATE TABLE table_name_77 (game INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT sr_number FROM table_name_91 WHERE lb & sc_number = 34",
    "question_en": "what is the s.r. number when lb&sc number is 34?",
    "question_th": "หมายเลข sr คืออะไรเมื่อหมายเลข lb&sc คือ 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_en": "what is the withdrawal when the lb&sc number is less than 16 and the s.r. number is 2011?",
    "question_th": "การถอนเงินเมื่อหมายเลข lb&sc น้อยกว่า 16 และหมายเลข sr คือ 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_en": "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?",
    "question_th": "สิ่งที่สร้างขึ้นเมื่อหมายเลข sr น้อยกว่า 2033 หมายเลข lb&sc น้อยกว่า 18 หมายเหตุคือ i2 และการถอนออกไม่สามารถจัดการอาร์กิวเมนต์การประทับเวลาที่ไม่ว่างเปล่าได้! 2478?",
    "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_en": "What is the average Wkts, when Player is Beau Casson, and when Ovrs is greater than 32?",
    "question_th": "Wkts เฉลี่ยเป็นเท่าใด เมื่อผู้เล่นคือ Beau Casson และเมื่อ Ovrs มากกว่า 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_en": "What is the highest Ovrs, when Econ is 2.02?",
    "question_th": "Ovrs สูงสุดคือเท่าใด เมื่อ Econ คือ 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_en": "What is the lowest Ovrs, when Wkts is greater than 13, and when Econ is less than 3.21?",
    "question_th": "Ovrs ต่ำสุดคือเท่าใด เมื่อ Wkts มากกว่า 13 และเมื่อ Econ น้อยกว่า 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_en": "Who was the opponent with the record of 4-0-0?",
    "question_th": "คู่ต่อสู้ที่มีสถิติ 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_en": "What was the score of the game on October 20 with a decision of Lundqvist?",
    "question_th": "ในเกมวันที่ 20 ต.ค. กับการตัดสินของ ลุนด์ควิสต์ เป็นอย่างไร?",
    "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_en": "What game is the first with the Pittsburgh Penguins the opponent?",
    "question_th": "เกมใดเป็นเกมแรกที่มีคู่ต่อสู้ของ Pittsburgh Penguins?",
    "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_en": "What is the average gold medals of the nation with 2 total medals, more than 1 bronze, and less than 0 silvers?",
    "question_th": "เหรียญทองเฉลี่ยของประเทศที่ได้รวม 2 เหรียญ มากกว่า 1 เหรียญทองแดง และน้อยกว่า 0 เหรียญเงิน คือเท่าไร?",
    "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_en": "What is the highest total medals of russia, which has more than 1 silver and more than 6 bronze medals?",
    "question_th": "เหรียญใดมียอดรวมสูงสุดของรัสเซีย ซึ่งมีมากกว่า 1 เหรียญเงิน และมากกว่า 6 เหรียญทองแดง?",
    "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_en": "What is the total number of gold medals of the nation with 1 bronze and less than 1 total medal?",
    "question_th": "เหรียญทองของประเทศได้ทั้งหมด 1 เหรียญทองแดง และน้อยกว่า 1 เหรียญ คือเท่าไร?",
    "context": "CREATE TABLE table_name_49 (gold VARCHAR, bronze VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(silver) FROM table_name_40 WHERE total > 16",
    "question_en": "What is the total number of silver medals of the nation with more than 16 total medals?",
    "question_th": "เหรียญเงินของประเทศรวมเกิน 16 เหรียญมีทั้งหมดกี่เหรียญ?",
    "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_en": "What is the average total medals of the nation with 4 bronze and more than 1 silver medals?",
    "question_th": "สรุปเหรียญของประเทศที่ได้ 4 เหรียญทองแดง มากกว่า 1 เหรียญเงิน เฉลี่ยอยู่ที่เท่าไร?",
    "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_en": "What is the total number of gold medals of slovakia, which has less than 1 silver medal?",
    "question_th": "สโลวาเกียได้เหรียญทองทั้งหมดกี่เหรียญ ซึ่งน้อยกว่า 1 เหรียญเงิน?",
    "context": "CREATE TABLE table_name_61 (gold VARCHAR, silver VARCHAR, nation VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_58 WHERE country = \"scotland\"",
    "question_en": "What was the score when the match was in the country of Scotland?",
    "question_th": "เมื่อแข่งขันที่ประเทศสกอตแลนด์สกอร์เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_58 (score VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_27 WHERE to_par = \"–1\"",
    "question_en": "What is the name of the player that has a To par of –1?",
    "question_th": "ผู้เล่นที่มีพาร์ถึง –1 ชื่ออะไร?",
    "context": "CREATE TABLE table_name_27 (player VARCHAR, to_par VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_20 WHERE player = \"craig stadler\"",
    "question_en": "What country was the game in when the player was Craig Stadler?",
    "question_th": "ในเกมที่ผู้เล่นคือเครก สแตดเลอร์คือเกมในประเทศใด",
    "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_en": "What is the name of the player when the Score was 72-73-67-72=284?",
    "question_th": "นักเตะชื่ออะไรเมื่อคะแนนเป็น 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_en": "What is the total height in meters for the building that has a less than 380.6 feet height?",
    "question_th": "ความสูงรวมของอาคารที่มีความสูงน้อยกว่า 380.6 ฟุตเป็นเท่าใด",
    "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_en": "What are the fewest floors for the building that has a height of 116 meters?",
    "question_th": "อาคารที่มีความสูง 116 เมตร มีชั้นน้อยที่สุดคือกี่ชั้น?",
    "context": "CREATE TABLE table_name_42 (floors INTEGER, height__m_ VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_25 WHERE week = 2",
    "question_en": "What was the Attendance in Week 2?",
    "question_th": "การเข้าร่วมในสัปดาห์ที่ 2 คืออะไร?",
    "context": "CREATE TABLE table_name_25 (attendance VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_65 WHERE date = \"november 6, 1960\"",
    "question_en": "What was the Attendance on November 6, 1960?",
    "question_th": "ผู้เข้าร่วมในวันที่ 6 พฤศจิกายน 1960 คืออะไร?",
    "context": "CREATE TABLE table_name_65 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_33 WHERE result = \"l 31–23\"",
    "question_en": "What was the Attendance when the Result was L 31–23?",
    "question_th": "ผู้เข้าร่วมเมื่อผลลัพธ์คือ L 31–23 คืออะไร",
    "context": "CREATE TABLE table_name_33 (attendance VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_15 WHERE week = 9",
    "question_en": "What was the Opponent in Week 9?",
    "question_th": "ฝ่ายตรงข้ามในสัปดาห์ที่ 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_en": "What was the Opponent before Week 11 with an Attendance of 63,571?",
    "question_th": "ฝ่ายตรงข้ามคืออะไรก่อนสัปดาห์ที่ 11 โดยมีผู้เข้าร่วม 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_en": "What is Michigan State's position?",
    "question_th": "ตำแหน่งของรัฐมิชิแกนคืออะไร?",
    "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_en": "What is the nationality of the play for New Jersey from 2007-2009?",
    "question_th": "นักเตะที่เล่นให้กับนิวเจอร์ซีย์ระหว่างปี 2550-2552 มีสัญชาติอะไร?",
    "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_en": "What was the attendance when they played the New Orleans Saints?",
    "question_th": "ผู้เข้าร่วมเล่นเป็นทีม 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_en": "Who was the outgoing manager of the Heart of Midlothian?",
    "question_th": "ใครคือผู้จัดการของ 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_en": "What is the vacancy date of Dundee?",
    "question_th": "ดันดีว่างวันไหนคะ?",
    "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_en": "Who was the outgoing manager that was replaced by Tony Mowbray?",
    "question_th": "ใครคือผู้จัดการทีมที่กำลังจะลาออกซึ่งถูกแทนที่โดยโทนี่ โมว์เบรย์?",
    "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_en": "What date was Dundee appointed?",
    "question_th": "ดันดีได้รับการแต่งตั้งเมื่อใด?",
    "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_en": "What is Race 1, when Team is \"Dick Johnson Racing\", and when Race 3 is \"DNF\"?",
    "question_th": "อะไรคือเรซ 1 เมื่อทีมคือ \"Dick Johnson Racing\" และเมื่อเรซ 3 คือ \"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_en": "What is Race 2, when Race 1 is \"18\"?",
    "question_th": "เรซ 2 คืออะไร เมื่อเรซ 1 คือ \"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_en": "What is Team, when Race 2 is \"5\"?",
    "question_th": "ทีมคืออะไร เมื่อเรซ 2 คือ \"5\"?",
    "context": "CREATE TABLE table_name_41 (team VARCHAR, race_2 VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_12 WHERE race_3 = \"10\"",
    "question_en": "What is Driver, when Race 2 is \"10\"?",
    "question_th": "นักแข่งคืออะไร เมื่อเรซ 2 เป็น \"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_en": "What is Race 2, when Driver is \"Paul Radisich\"?",
    "question_th": "Race 2 คืออะไร เมื่อนักแข่งคือ \"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_en": "What is Driver, when Team is \"Romano Racing\"?",
    "question_th": "Driver คืออะไร เมื่อทีมคือ \"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_en": "The 20th Century Fox film directed by Joel Schumacher grossed how much?",
    "question_th": "ภาพยนตร์ 20th Century Fox ที่กำกับโดยโจเอล ชูมัคเกอร์ทำรายได้เท่าไหร่?",
    "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_en": "Which studio grossed $83,531,958 and ranked lower than 13?",
    "question_th": "สตูดิโอใดทำรายได้ 83,531,958 ดอลลาร์และอยู่ในอันดับที่ต่ำกว่า 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_en": "WHAT YEAR WAS AT GIANTS STADIUM, WITH WINNER OF NEW YORK GIANTS?",
    "question_th": "ปีไหนที่ GIANTS STADIUM โดยมีผู้ชนะ 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_en": "What is Qual 2, when Best is 1:27.642?",
    "question_th": "Qual 2 คืออะไร เมื่อ Best คือ 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_en": "What is Name, when Team is \"Herdez Competition\", and when Best is 1:27.432?",
    "question_th": "ชื่ออะไร เมื่อทีมคือ \"การแข่งขัน Herdez\" และเมื่อดีที่สุดคือ 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_en": "What is Qual 1, when Qual 2 is 1:27.537?",
    "question_th": "Qual 1 คืออะไร เมื่อ Qual 2 คือ 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_en": "What is Best, when Team is \"Rocketsports Racing\", and when Name is \"Alex Tagliani\"?",
    "question_th": "อะไรดีที่สุด เมื่อทีมคือ \"Rocketsports Racing\" และเมื่อชื่อคือ \"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_en": "What is Qual 2, when Best is 1:27.976?",
    "question_th": "Qual 2 คืออะไร เมื่อ Best คือ 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_en": "What is Best, when Name is Jimmy Vasser?",
    "question_th": "อะไรจะดีที่สุด เมื่อชื่อ 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_en": "What is the highest game whose score was 94-116",
    "question_th": "เกมใดที่มีคะแนนสูงสุดคือ 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_en": "Where was the game that was larger than 30 and scored 106-111",
    "question_th": "โดยเกมที่มากกว่า 30 และสกอร์ 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–3\"",
    "question_en": "Which Venue has a Round of gs, and a Result of 0–3?",
    "question_th": "สถานที่ใดมีรอบ gs และผลการแข่งขัน 0–3",
    "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_en": "What was the result on 27 august 2003?",
    "question_th": "ผลประกอบการเมื่อวันที่ 27 สิงหาคม 2546 เป็นอย่างไร?",
    "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_en": "Which Result has a Venue of A, and an Opponent of manchester united?",
    "question_th": "ผลลัพธ์ใดมีสนาม A และฝ่ายตรงข้ามของแมนเชสเตอร์ยูไนเต็ด?",
    "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_en": "What score has jim courier as the opponent in the final?",
    "question_th": "จิม คูเรียร์ เป็นคู่ต่อสู้ในรอบชิงชนะเลิศได้คะแนนเท่าไหร่?",
    "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_en": "What is the label for the CD format in North America?",
    "question_th": "ป้ายชื่อสำหรับรูปแบบซีดีในอเมริกาเหนือคืออะไร",
    "context": "CREATE TABLE table_name_91 (label VARCHAR, format VARCHAR, region VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_89 WHERE catalogue = \"bron 535\"",
    "question_en": "What is the date for Bron 535 Catalog?",
    "question_th": "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_en": "What region is the Gold Vinyl format from?",
    "question_th": "รูปแบบ Gold Vinyl มาจากภูมิภาคใด",
    "context": "CREATE TABLE table_name_30 (region VARCHAR, format VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_34 WHERE region = \"uk\" AND date = \"1996\"",
    "question_en": "What is the label for the UK in 1996?",
    "question_th": "ป้ายกำกับสำหรับสหราชอาณาจักรในปี 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_en": "What is the catalog with a bronze label and in Vinyl format?",
    "question_th": "แคตตาล็อกที่มีป้ายสีบรอนซ์และอยู่ในรูปแบบไวนิลคืออะไร?",
    "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_en": "What date was the bronze label in vinyl format?",
    "question_th": "ป้ายสีบรอนซ์ในรูปแบบไวนิลคือวันที่เท่าไหร่?",
    "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_en": "What record has montreal, qc as the location, with boston bruins as the visitor?",
    "question_th": "บันทึกใดที่มีเมืองมอนทรีออล คิวซี เป็นสถานที่ โดยมีบอสตัน บรูอินส์เป็นผู้มาเยือน",
    "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_en": "What was the highest Pick for Lonnie Brockman before round 9?",
    "question_th": "อะไรคือตัวเลือกสูงสุดสำหรับ Lonnie Brockman ก่อนรอบ 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_en": "How many picks did Central State have before round 2?",
    "question_th": "Central State มีกี่ตัวเลือกก่อนรอบ 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_en": "What was the highest round for Bowling Green with a pick smaller than 210?",
    "question_th": "รอบสูงสุดของ Bowling Green ที่มีตัวเลือกน้อยกว่า 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_en": "What was the average tonnage for the Siljan ship from Sweden?",
    "question_th": "น้ำหนักเฉลี่ยของเรือ Siljan จากสวีเดนคือเท่าไร?",
    "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_en": "What was the average tonnage for Beatus, raided on 18 October 1940?",
    "question_th": "น้ำหนักเฉลี่ยของ Beatus ที่บุกโจมตีเมื่อวันที่ 18 ตุลาคม พ.ศ. 2483 เป็นเท่าใด",
    "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_en": "Which ship had a tonnage over 8,782?",
    "question_th": "เรือลำใดมีน้ำหนักมากกว่า 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_en": "Which ship was raided on 26 September 1940?",
    "question_th": "เรือลำใดถูกบุกเมื่อวันที่ 26 กันยายน พ.ศ. 2483",
    "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_en": "What is Score, when Game is greater than 49, and when Opponent is \"Pittsburgh Ironmen\"?",
    "question_th": "Score คืออะไร เมื่อเกมมากกว่า 49 และเมื่อฝ่ายตรงข้ามคือ \"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_en": "What is Date, when Opponent is \"Chicago Stags\"?",
    "question_th": "วันที่คืออะไรเมื่อฝ่ายตรงข้ามคือ \"Chicago Stags\"?",
    "context": "CREATE TABLE table_name_39 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_89 WHERE date = \"march 1\"",
    "question_en": "What is Record, when Date is \"March 1\"?",
    "question_th": "Record คืออะไร เมื่อวันที่คือ \"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_en": "What is Record, when Game is greater than 55, and when Date is \"March 25\"?",
    "question_th": "สถิติคืออะไร เมื่อเกมมีค่ามากกว่า 55 และวันที่คือ \"25 มีนาคม\" เมื่อใด",
    "context": "CREATE TABLE table_name_80 (record VARCHAR, game VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_20 WHERE attendance = 1920",
    "question_en": "What is the Home team when the Attendance was 1920?",
    "question_th": "ทีมเหย้าเมื่อผู้เข้าร่วมคือปี 1920 คืออะไร?",
    "context": "CREATE TABLE table_name_20 (home VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_68 WHERE away = \"motagua\"",
    "question_en": "What is the Home team when Motagua is the Away team?",
    "question_th": "เจ้าบ้านจะเป็นอย่างไร ในเมื่อ โมตากัว เป็นทีมเยือน?",
    "context": "CREATE TABLE table_name_68 (home VARCHAR, away VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_99 WHERE home = \"deportes savio\"",
    "question_en": "What is the Score when Deportes Savio is the Home team?",
    "question_th": "สกอร์เท่าไหร่เมื่อเดปอร์เตส ซาวิโอเป็นเจ้าบ้าน?",
    "context": "CREATE TABLE table_name_99 (score VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_49 WHERE home = \"olimpia\"",
    "question_en": "On what Date is Olimpia the Home team?",
    "question_th": "โอลิมเปียเป็นเจ้าบ้านวันไหน?",
    "context": "CREATE TABLE table_name_49 (date VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT AVG(attendance) FROM table_name_25 WHERE away = \"vida\"",
    "question_en": "What is the Attendance when Vida is the Away team?",
    "question_th": "ผู้เข้าร่วมเมื่อวิดาเป็นทีมเยือนจะเป็นอย่างไร?",
    "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_en": "What is the lowest number of FA Cup goals for players with 12 League goals and 14 total goals?",
    "question_th": "จำนวนประตูในเอฟเอ คัพ ต่ำสุดสำหรับผู้เล่นที่ทำได้ 12 ประตูในลีก และรวม 14 ประตูคือเท่าใด",
    "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_en": "How many FA Cup goals does George Yardley have?",
    "question_th": "จอร์จ ยาร์ดลีย์ ยิงเอฟเอ คัพ ได้กี่ประตู?",
    "context": "CREATE TABLE table_name_59 (fa_cup_goals VARCHAR, scorer VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_82 WHERE date = \"january 11\"",
    "question_en": "Which Home is on january 11?",
    "question_th": "บ้านไหนคือวันที่ 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_en": "which Record has a Home of ottawa senators on Date of december 21?",
    "question_th": "บันทึกใดมีบ้านของวุฒิสมาชิกออตตาวาในวันที่ 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–2–0\"",
    "question_en": "Which Score has a Visitor of toronto st. pats, and a Home of montreal canadiens, and a Record of 3–2–0?",
    "question_th": "ซึ่งคะแนนมีผู้เข้าชมโตรอนโตเซนต์ ตบเบาๆ และบ้านของชาวแคนาดาในมอนทรีออล และบันทึก 3–2–0 เหรอ?",
    "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–3\"",
    "question_en": "which Home has a Visitor of ottawa senators and a Score of 2–3?",
    "question_th": "บ้านไหนมีผู้มาเยือนวุฒิสมาชิกออตตาวาและคะแนน 2–3",
    "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–4\" AND home = \"ottawa senators\"",
    "question_en": "Name the Record of Visitor of toronto st. pats with a Score of 5–4 and a Home of ottawa senators? Question 5",
    "question_th": "ตั้งชื่อบันทึกผู้เยี่ยมชมโตรอนโตเซนต์ ตบด้วยคะแนน 5–4 และบ้านของวุฒิสมาชิกออตตาวา? คำถามที่ 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–7\"",
    "question_en": "Name the Home with has a Score of 2–7?",
    "question_th": "ตั้งชื่อบ้านด้วยคะแนน 2–7?",
    "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_en": "What is Career with the franchise [b ], when Player is \"Willie Anderson Category:Articles with hCards\"?",
    "question_th": "อะไรคืออาชีพของแฟรนไชส์ [b ] เมื่อผู้เล่นคือ \"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_en": "What is Nationality, when NBA years [a ] is \"1\", and when Previous Team is \"Seattle Supersonics\"?",
    "question_th": "สัญชาติคืออะไร เมื่อปีของ NBA [a ] คือ \"1\" และเมื่อทีมก่อนหน้าคือ \"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_en": "What is Player, when Pick is greater than 24, and when NBA years [a ] is \"9\"?",
    "question_th": "Player คืออะไร เมื่อ Pick มากกว่า 24 และเมื่อ NBA ปี [a ] คือ \"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_en": "What is Career with the franchise [b ], when Previous Team is \"New Jersey Nets\"?",
    "question_th": "อาชีพกับแฟรนไชส์คืออะไร [b ] เมื่อทีมก่อนหน้าคือ \"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_en": "How many years did Real Colorado Foxes make it to the Open Cup 1st Round?",
    "question_th": "เรอัล โคโลราโด ฟ็อกซ์ เข้าถึงโอเพ่นคัพรอบแรกได้กี่ปี?",
    "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_en": "When is the latest year that Real Colorado Foxes did not qualify for the playoffs but make it to Open Cup 2nd Round?",
    "question_th": "ปีล่าสุดที่ Real Colorado Foxes ไม่ผ่านเข้ารอบตัดเชือกแต่ได้ผ่านเข้ารอบ Open Cup รอบ 2 คือเมื่อใด?",
    "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_en": "In 2012, which round in the Open Cup did Real Colorado Foxes make it to the conference semifinal?",
    "question_th": "ในปี 2012 Real Colorado Foxes ผ่านเข้าสู่รอบรองชนะเลิศของการประชุม Open Cup รอบใด",
    "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_en": "Where did Day & Age rank in the Rolling Stone in 2008?",
    "question_th": "Day & Age อยู่ในอันดับที่ใดใน Rolling Stone ในปี 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_en": "What country did Day & Age rank number 1 in Q prior to 2011?",
    "question_th": "ประเทศใดที่ Day & Age อยู่ในอันดับที่ 1 ใน Q ก่อนปี 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_en": "Which Title is from 1952?",
    "question_th": "ชื่อใดมาจากปี 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_en": "Can you tell me the highest Lost that has the Pool/Round of pool 2, and the Played smaller than 6?",
    "question_th": "คุณช่วยบอกฉันได้ไหมว่าแพ้สูงสุดที่มีพูล/รอบพูล 2 และแพ้น้อยกว่า 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å ylvis hvem kan slå aamodt & kjus\"",
    "question_en": "Which network had unknown games and a title of hvem kan slå ylvis hvem kan slå aamodt & kjus?",
    "question_th": "เครือข่ายใดมีเกมที่ไม่รู้จักและชื่อ hvem kan slå ylvis hvem kan slå 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_en": "What was the date of the show titled Beat the Star?",
    "question_th": "รายการที่ชื่อว่า 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_en": "Which date was the show aired on the RTL Televizija network?",
    "question_th": "รายการนี้ออกอากาศทางเครือข่าย RTL Televizija วันไหน?",
    "context": "CREATE TABLE table_name_90 (date_aired VARCHAR, network VARCHAR)"
  },
  {
    "answer": "SELECT date_aired FROM table_name_35 WHERE network = \"rtl televizija\"",
    "question_en": "Which date was the show aired on the RTL Televizija network?",
    "question_th": "รายการนี้ออกอากาศทางเครือข่าย RTL Televizija วันไหน?",
    "context": "CREATE TABLE table_name_35 (date_aired VARCHAR, network VARCHAR)"
  },
  {
    "answer": "SELECT network FROM table_name_70 WHERE title = \"schlag den raab\"",
    "question_en": "Which network aired the program Schlag den Raab?",
    "question_th": "เครือข่ายใดที่ออกอากาศรายการ 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_en": "WHAT IS THE LOWEST DIAMETER FOR A LATITIDE OF 52.0S?",
    "question_th": "เส้นผ่านศูนย์กลางต่ำสุดสำหรับ LATITIDE 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_en": "What is the position elected in 2011 from the Country of Algeria?",
    "question_th": "ตำแหน่งที่ได้รับเลือกในปี 2554 จากประเทศแอลจีเรียคืออะไร?",
    "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_en": "What is the lowest term from the 2007 election with the position of chairperson?",
    "question_th": "การเลือกตั้งปี 2550 ดำรงตำแหน่งประธานกรรมการมีวาระต่ำสุดเท่าใด",
    "context": "CREATE TABLE table_name_94 (term INTEGER, elected VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT telebooms FROM table_name_78 WHERE brigade = \"total\"",
    "question_en": "Which Telebooms have a Brigade of total?",
    "question_th": "Telebooms ใดที่มี Brigade ทั้งหมด?",
    "context": "CREATE TABLE table_name_78 (telebooms VARCHAR, brigade VARCHAR)"
  },
  {
    "answer": "SELECT platforms FROM table_name_38 WHERE hazmat = \"–\" AND type = \"urban & rural\" AND brigade = \"lara\"",
    "question_en": "Which Platforms have a Hazmat of –, and a Type of urban & rural, and a Brigade of lara?",
    "question_th": "แพลตฟอร์มใดที่มี Hazmat เป็น – และประเภทของเมืองและชนบท และ 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 = \"–\" AND platforms = \"–\" AND staffing = \"volunteer\"",
    "question_en": "Which Tankers have a Hazmat of –, and Platforms of –, and a Staffing of volunteer?",
    "question_th": "เรือบรรทุกน้ำมันลำใดที่มีวัตถุอันตรายเป็น – และแพลตฟอร์มเป็น – และมีเจ้าหน้าที่อาสาสมัคร?",
    "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_en": "How many Pumpers have Cars of 1, and a Staffing of volunteer, and a Brigade of grovedale, and Tankers smaller than 1?",
    "question_th": "รถสูบน้ำมีรถ 1 คัน มีเจ้าหน้าที่อาสาสมัคร 1 คน และกองพลน้อยโกรฟเดล 1 คัน และเรือบรรทุกน้ำมันที่เล็กกว่า 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–321, 324, 333\"",
    "question_en": "What is the average Year that has a Quantity of 10, and a GWR Numbers of 409, 290, 315, 317–321, 324, 333?",
    "question_th": "ปีเฉลี่ยที่มีปริมาณ 10 และหมายเลข GWR เท่ากับ 409, 290, 315, 317–321, 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_en": "What was the score of the player who earned $5,000?",
    "question_th": "คะแนนของผู้เล่นที่ได้รับ $5,000 คืออะไร?",
    "context": "CREATE TABLE table_name_9 (score VARCHAR, money__$_ VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_61 WHERE player = \"phil rodgers\"",
    "question_en": "What place did Phil Rodgers finish?",
    "question_th": "ฟิล ร็อดเจอร์ส จบอันดับไหน?",
    "context": "CREATE TABLE table_name_61 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_62 WHERE money__$_ = \"9,000\"",
    "question_en": "What country is the player who earned $9,000 from?",
    "question_th": "ผู้เล่นที่ได้รับ $9,000 จากประเทศใดคือ?",
    "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_en": "What round did the MWEHL team, Detroit Honeybaked, and the NHL Team Columbus Blue Jackets play?",
    "question_th": "ทีม MWEHL, Detroit Honeybaked และทีม NHL Columbus Blue Jackets เล่นรอบใด",
    "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_en": "Who was the player in Round 7, on the MWEHL Team Detroit Honeybaked, and the NHL Team, Philadelphia Flyers teams?",
    "question_th": "ใครคือผู้เล่นในรอบที่ 7 ของทีม MWEHL Detroit Honeybaked และทีม NHL ทีม Philadelphia Flyers",
    "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_en": "What is the NHL team for Round 5 and an overall ranking of #154?",
    "question_th": "ทีม NHL สำหรับรอบ 5 คืออะไรและอันดับโดยรวมที่ #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_en": "What is the MWEHL Team on Round 2, with player Nicolas Kerdiles?",
    "question_th": "ทีม MWEHL ในรอบ 2 กับผู้เล่น 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_en": "Who is the player on round 7 with an overall ranking of #195?",
    "question_th": "ใครคือผู้เล่นในรอบที่ 7 ด้วยอันดับรวมที่ #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_en": "Which MWEHL team has player Ben Johnson?",
    "question_th": "ทีม MWEHL ใดมีผู้เล่น 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_en": "How many people attended the game on week 3?",
    "question_th": "สัปดาห์ที่ 3 มีผู้เข้าร่วมเกมกี่คน?",
    "context": "CREATE TABLE table_name_26 (attendance INTEGER, week VARCHAR)"
  },
  {
    "answer": "SELECT report FROM table_name_10 WHERE ages = \"2-17\"",
    "question_en": "What is the Report for the School for Ages of 2-17?",
    "question_th": "รายงานสำหรับโรงเรียนสำหรับเด็กอายุ 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_en": "What are the Ages of the Seashell Trust School with Ofsted Report?",
    "question_th": "อายุของโรงเรียน Seashell Trust ที่มีรายงาน Ofsted คืออะไร",
    "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_en": "What is the Website of the Cheadle School for Ages 8-16?",
    "question_th": "เว็บไซต์ของโรงเรียน Cheadle สำหรับเด็กอายุ 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_en": "What is the Website of the Cheadle Hulme School with a Report of Ofsted for Ages 4-19?",
    "question_th": "เว็บไซต์ของโรงเรียน Cheadle Hulme พร้อมรายงาน Ofsted สำหรับอายุ 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_en": "What is the Locality of the Penarth Group School for Ages 8-16?",
    "question_th": "ท้องที่ของโรงเรียน Penarth Group สำหรับเด็กอายุ 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_en": "WHAT IS THE SCORE OF MARCH 28?",
    "question_th": "คะแนนของวันที่ 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_en": "WHAT IS THE SCORE WITH VISITORS CHICAGO BLACK HAWKS ON MARCH 24?",
    "question_th": "คะแนนของผู้เยี่ยมชม CHICAGO BLACK HAWKS ในวันที่ 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_en": "What is the Date for the Home team West Ham United",
    "question_th": "วันที่เจ้าบ้านเวสต์แฮมยูไนเต็ดจะเป็นอย่างไร",
    "context": "CREATE TABLE table_name_70 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_60 WHERE tie_no = \"27\"",
    "question_en": "what is the score that has tie number 27",
    "question_th": "คะแนนที่เสมอกันคือหมายเลข 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_en": "what is the tie number that has Portsmouth Home team",
    "question_th": "เสมอกันที่ทีมพอร์ทสมัธเจ้าบ้านคือเลขอะไร",
    "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_en": "What is the score of the United States, which has a to par of +5?",
    "question_th": "คะแนนของสหรัฐอเมริกาซึ่งมีพาร์ถึง +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_en": "For a record of 3-2, what team was home?",
    "question_th": "สถิติ 3-2 ทีมไหนเป็นเจ้าบ้าน?",
    "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_en": "What was the home team when the visiting team was Chicago Black Hawks, a game with a record of 0-2?",
    "question_th": "เจ้าบ้านเป็นทีมไหนเมื่อทีมเยือนคือ ชิคาโก้ แบล็คฮอกส์ เกมที่มีสถิติสกอร์ 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_en": "Can you tell me total number of Silver that has the Republic of latvian ssr, and the Total larger than 6?",
    "question_th": "คุณช่วยบอกจำนวนเงินทั้งหมดที่มีสาธารณรัฐลัตเวีย ssr และยอดรวมมากกว่า 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_en": "What is the transfer window for the player whose status was loan ended?",
    "question_th": "หน้าต่างการโอนสำหรับผู้เล่นที่สถานะสิ้นสุดการยืมตัวคืออะไร?",
    "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_en": "Who was the player with a transfer window of summer and was moving to Kortrijk?",
    "question_th": "ใครคือผู้เล่นที่มีหน้าต่างโอนย้ายในช่วงซัมเมอร์และกำลังจะย้ายไปคอร์ทไรค์?",
    "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_en": "What is the status of the player who is moving to Nantes?",
    "question_th": "สถานะของนักเตะที่จะย้ายไปน็องต์เป็นอย่างไร?",
    "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_en": "Which Type has a Capacity of 28 passengers, and a Number of 16?",
    "question_th": "ประเภทใดจุผู้โดยสารได้ 28 คน และจำนวนผู้โดยสาร 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_en": "Which Builder has a Date smaller than 1913, and a Length of feet (m), and a Number of 15?",
    "question_th": "Builder ใดมีวันที่เล็กกว่าปี 1913 และมีความยาวฟุต (m) และตัวเลข 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_en": "Which Date has a Length of feet 9inches (m), and a Builder of portland terminal company?",
    "question_th": "วันที่ใดมีความยาวฟุต 9 นิ้ว (ม.) และผู้สร้างของบริษัทท่าเรือพอร์ตแลนด์?",
    "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_en": "Which Type has a Capacity of 10 tons, and a Number of 24-27?",
    "question_th": "ประเภทใดมีความจุ 10 ตัน และจำนวน 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_en": "How many Dates have a Builder of laconia car company, and a Number of 63-68?",
    "question_th": "มีผู้สร้างบริษัทรถยนต์ลาโคเนียกี่วัน และหมายเลข 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_en": "What is the score for Billy Andrade?",
    "question_th": "บิลลี่ อันดราเด้ ให้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_73 (score VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_35 WHERE player = \"nick price\"",
    "question_en": "What country is Nick Price from?",
    "question_th": "นิค ไพรซ์ มาจากประเทศอะไร",
    "context": "CREATE TABLE table_name_35 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_53 WHERE score = 67 - 67 = 134",
    "question_en": "What is the to par for the player with score of 67-67=134?",
    "question_th": "ผู้เล่นที่มีคะแนนพาร์ 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_en": "Team 1, Everton, has what as a 1st leg?",
    "question_th": "ทีม 1 เอฟเวอร์ตัน เลก 1 ได้อะไร?",
    "context": "CREATE TABLE table_name_6 (team_1 VARCHAR)"
  },
  {
    "answer": "SELECT 2 AS nd_leg FROM table_name_68 WHERE team_1 = \"atlético madrid\"",
    "question_en": "The 2nd leg is what for the Atlético Madrid as Team 1?",
    "question_th": "เลกที่ 2 คืออะไรสำหรับแอตเลติโก มาดริดในฐานะทีม 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_en": "Fulham as Team 1 has the 2nd leg score of what?",
    "question_th": "ฟูแล่ม ทีม 1 ได้สกอร์ เลก 2 เท่ากับอะไร?",
    "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_en": "What name is for the period 1945-1949 & 1953-1954 1949-1952?",
    "question_th": "ช่วงเวลาระหว่างปี 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ète olympique de marseille\"",
    "question_en": "Which name is on the of fc sète olympique de marseille?",
    "question_th": "เอฟซี เซเต้ โอลิมปิก มาร์กเซย มีชื่ออะไรบ้าง?",
    "context": "CREATE TABLE table_name_39 (name VARCHAR, teams VARCHAR)"
  },
  {
    "answer": "SELECT role FROM table_name_89 WHERE teams = \"troyes ac grenoble foot\"",
    "question_en": "What role has the team of Troyes AC Grenoble Foot?",
    "question_th": "ทีมทรอยส์ เอซี เกรอน็อบล์ฟุต มีบทบาทอะไรบ้าง?",
    "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_en": "What name has the role of midfielder for 1999-2003?",
    "question_th": "บทบาทกองกลางชื่ออะไรในปี 2542-2546?",
    "context": "CREATE TABLE table_name_76 (name VARCHAR, role VARCHAR, period VARCHAR)"
  },
  {
    "answer": "SELECT period FROM table_name_99 WHERE teams = \"cs sedan\"",
    "question_en": "Which period has the team CS Sedan?",
    "question_th": "ทีมซีเอส ซีดาน ยุคไหน?",
    "context": "CREATE TABLE table_name_99 (period VARCHAR, teams VARCHAR)"
  },
  {
    "answer": "SELECT teams FROM table_name_48 WHERE name = \"boumediene abderahmane\"",
    "question_en": "What is the team with the name Boumediene Abderahmane?",
    "question_th": "ทีมชื่อบูเมเดียน อับเดอราห์มาเนคือทีมอะไร?",
    "context": "CREATE TABLE table_name_48 (teams VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT fin_pos FROM table_name_93 WHERE points = \"13\"",
    "question_en": "What was the finishing position with 13 points?",
    "question_th": "ตำแหน่งจบมี 13 แต้มเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_93 (fin_pos VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_99 WHERE points = \"50+3\"",
    "question_en": "What Driver had 50+3 Points?",
    "question_th": "นักแข่งคนไหนมี 50+3 แต้ม?",
    "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–6, 7–6, 6–4\"",
    "question_en": "When was the most recent game that he partnered with nicklas kulti and they scored 3–6, 7–6, 6–4?",
    "question_th": "เกมล่าสุดที่เขาร่วมมือกับ Nicklas Kulti คือเมื่อใดและพวกเขาทำประตูได้ 3–6, 7–6, 6–4?",
    "context": "CREATE TABLE table_name_19 (date INTEGER, partner VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT opponents FROM table_name_99 WHERE surface = \"hard\"",
    "question_en": "Who did he play on a hard surface?",
    "question_th": "เขาเล่นใครบนพื้นแข็ง?",
    "context": "CREATE TABLE table_name_99 (opponents VARCHAR, surface VARCHAR)"
  },
  {
    "answer": "SELECT MIN(date) FROM table_name_24 WHERE surface = \"clay\" AND score = \"0–6, 3–6\"",
    "question_en": "When was his first game on a clay surface where he scored 0–6, 3–6?",
    "question_th": "เกมแรกของเขาบนพื้นผิวดินซึ่งเขาทำคะแนนได้ 0–6, 3–6 คือเมื่อใด",
    "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_en": "what is the highest wickets when the matches is less than 5, player is jim laker and average is more than 52.44?",
    "question_th": "อะไรคือประตูสูงสุดเมื่อการแข่งขันน้อยกว่า 5 ประตู ผู้เล่นคือ จิม เลเกอร์ และค่าเฉลี่ยมากกว่า 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_en": "what is the average when matches is less than 5 and wickets is more than 9?",
    "question_th": "ค่าเฉลี่ยเมื่อการแข่งขันน้อยกว่า 5 และประตูมากกว่า 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_en": "what is the sum of matches when the player is jim laker and wikets is less than 9?",
    "question_th": "ผลรวมของแมตช์เมื่อผู้เล่นคือ จิม เลเกอร์ และวิคตส์น้อยกว่า 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_en": "what is the highest wickets when the best bowling is 2/32 and matches is less than 5?",
    "question_th": "ประตูที่สูงที่สุดคืออะไรเมื่อโบว์ลิ่งที่ดีที่สุดคือ 2/32 และการแข่งขันน้อยกว่า 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_en": "what is the highest wickets when best bowling is 5/40 and average is less than 33.09?",
    "question_th": "ประตูที่สูงที่สุดเมื่อโบว์ลิ่งที่ดีที่สุดคือ 5/40 และค่าเฉลี่ยน้อยกว่า 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_en": "Which player has a pick# over 47?",
    "question_th": "ผู้เล่นคนไหนมีตัวเลือก # มากกว่า 47?",
    "context": "CREATE TABLE table_name_87 (player VARCHAR, pick__number INTEGER)"
  },
  {
    "answer": "SELECT player FROM table_name_2 WHERE position = \"fb\"",
    "question_en": "Who is the player with a FB position?",
    "question_th": "ผู้เล่นที่มีตำแหน่ง FB คือใคร?",
    "context": "CREATE TABLE table_name_2 (player VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_15 WHERE to_par = \"–3\" AND player = \"jim furyk\"",
    "question_en": "What is the Score that has a To standard of –3, and a Player of Jim Furyk?",
    "question_th": "คะแนนที่มีมาตรฐานถึง –3 และผู้เล่นของ 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_en": "What is the Country that has a Player of Scott Hoch?",
    "question_th": "ประเทศอะไรที่มีผู้เล่นของ Scott Hoch?",
    "context": "CREATE TABLE table_name_31 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_45 WHERE to_par = \"–4\" AND score = 74 - 70 - 68 = 212",
    "question_en": "What is the Player that has a To standard of –4, and a Score of 74-70-68=212?",
    "question_th": "ผู้เล่นคนไหนที่มีมาตรฐานถึง –4 และคะแนน 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 = \"–2\" AND country = \"spain\"",
    "question_en": "What is the Score that has a To standard of –2, and a Country of Spain?",
    "question_th": "คะแนนที่มีมาตรฐานถึง –2 และประเทศสเปนคืออะไร?",
    "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_en": "What is the Score that has a Player of Ernie Els?",
    "question_th": "สกอร์ที่ได้ของนักเตะ เออร์นี่ เอลส์ คือเท่าไหร่?",
    "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_en": "What is the Player that has a Place of t2, and a Score of 74-70-68=212?",
    "question_th": "ผู้เล่นที่มีอันดับ t2 และคะแนน 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_en": "what is the date when the nationality is united kingdom, the type is freighter and the displacement is 5,145 t?",
    "question_th": "วันที่เป็นสัญชาติคือสหราชอาณาจักรแบบเป็นสินค้าบรรทุกและมีระวางขับน้ำ 5,145 ตัน?",
    "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_en": "what is the name when the displacement is 8,305 t?",
    "question_th": "ชื่ออะไรเมื่อมีการกระจัดคือ 8,305 ตัน?",
    "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_en": "what is the name when the type is freighter, nationality is united kingdom on 3 may 1940?",
    "question_th": "ชื่อตอนเป็นสินค้า สัญชาติ คือ สหราชอาณาจักร เมื่อวันที่ 3 พฤษภาคม 2483?",
    "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_en": "what is the date for tirrana?",
    "question_th": "ตีร์รานาวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_18 (date VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_1 WHERE nationality = \"total:\"",
    "question_en": "what is the name for the nationality total:?",
    "question_th": "สัญชาติทั้งหมดชื่ออะไร:?",
    "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_en": "Who is the republican Jon Huntsman that was administered June 19, 2008?",
    "question_th": "Jon Huntsman ซึ่งเป็นพรรครีพับลิกันซึ่งดำรงตำแหน่งเมื่อวันที่ 19 มิถุนายน 2551 คือใคร",
    "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_en": "What is the most minimal Final year that has a North or east end of covington?",
    "question_th": "ปีสุดท้ายที่น้อยที่สุดที่มีปลายโควิงตันทางเหนือหรือตะวันออกคือปีใด",
    "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_en": "What is the total of Final year that has a Notes of replaced by i-96?",
    "question_th": "ยอดรวมของปีสุดท้ายที่มีหมายเหตุแทนที่ด้วย 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_en": "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?",
    "question_th": "ปีสุดท้ายที่น้อยที่สุดคือปีใดที่มี Notes แทนที่ด้วย i-75 และ m-25 และปีแรกที่ใหญ่กว่าปี 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_en": "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?",
    "question_th": "ปีแรกโดยเฉลี่ยที่มี Notes แทนที่ด้วย us 12 เป็นเท่าใด เมื่อ i-94 แทนที่เรา 12 และปีสุดท้ายที่ใหญ่กว่าปี 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_en": "What is the number of the votes of the election before 2004 with edward mahama as the candidate with 3.0% share of votes?",
    "question_th": "จำนวนคะแนนเสียงของการเลือกตั้งก่อนปี 2547 โดยมีเอ็ดเวิร์ด มหามา เป็นผู้สมัครด้วยคะแนนเสียง 3.0% เป็นเท่าใด",
    "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_en": "What is the outcome of the election with edward mahama as a candidate and 73,494 votes?",
    "question_th": "ผลการเลือกตั้งที่มี เอ็ดเวิร์ด มหามา เป็นผู้สมัคร และได้คะแนนเสียง 73,494 เสียง เป็นอย่างไร?",
    "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_en": "What is the earlest election with a 0.9% share of votes?",
    "question_th": "การเลือกตั้งครั้งแรกด้วยคะแนนเสียงร่วม 0.9% คืออะไร?",
    "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_en": "Who is the candidate with 73,494 votes?",
    "question_th": "ใครคือผู้สมัครด้วยคะแนนเสียง 73,494 เสียง?",
    "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_en": "What is the share of votes in the 2008 election?",
    "question_th": "ส่วนแบ่งคะแนนเสียงในการเลือกตั้งปี 2551 เป็นเท่าใด",
    "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_en": "What is the number of votes of candidate edward mahama, who had 0.9% share of votes?",
    "question_th": "ผู้สมัคร เอ็ดเวิร์ด มาฮามา ซึ่งได้รับส่วนแบ่งคะแนนเสียง 0.9% ได้คะแนนเสียงเท่าใด",
    "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_en": "Which Ages have a Capacity larger than 21, and an Ofsted of 106168?",
    "question_th": "ยุคใดที่มีความจุมากกว่า 21 ปี และความจุสูงสุดที่ 1,06168 ปี",
    "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_en": "Which Ages have an Ofsted larger than 106172, and a School of oakgrove school?",
    "question_th": "ยุคใดที่มี Ofsted มากกว่า 1,06172 และ 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_en": "Which Ofsted has a Capacity smaller than 56, and Ages of 11-16?",
    "question_th": "Ofsted ใดที่มีความจุน้อยกว่า 56 และอายุ 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_en": "Which Capacity has a School of windlehurst school, and an Ofsted smaller than 131889?",
    "question_th": "ความจุใดมี School of windlehurst school และ Ofsted เล็กกว่า 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_en": "How many people attended the game when sydney spirit was at home?",
    "question_th": "มีกี่คนที่เข้าร่วมการแข่งขันเมื่อ Sydney Spirit อยู่ที่บ้าน?",
    "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_en": "When the crowd was greater than 19,498 who was the away team?",
    "question_th": "เมื่อฝูงชนมากกว่า 19,498 ทีมเยือนคือใคร?",
    "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_en": "An attendance larger than 33,684 and an opponent of Hamilton Academical had this listed as a result?",
    "question_th": "มีผู้เข้าร่วมมากกว่า 33,684 คนและฝ่ายตรงข้ามของ Hamilton Academical ระบุไว้ในผลลัพธ์นี้หรือไม่",
    "context": "CREATE TABLE table_name_55 (result VARCHAR, opponent VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT time_retired FROM table_name_66 WHERE grid = 8",
    "question_en": "When did grid 8 finish?",
    "question_th": "ตารางที่ 8 เสร็จสิ้นเมื่อใด",
    "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_en": "Which Location has a Game greater than 20 and a Date of Wed. Dec. 26?",
    "question_th": "สถานที่ใดที่มีเกมมากกว่า 20 และมีวันที่วันพุธ 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_en": "On what date is the Score 94-109?",
    "question_th": "คะแนน 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_en": "Which Location has a Game greater than 27 and a Record of 18-10?",
    "question_th": "ตำแหน่งใดที่มีเกมมากกว่า 27 และมีสถิติ 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_en": "What is the number of losses for the team with a points difference of -25?",
    "question_th": "จำนวนการแพ้ของทีมที่มีคะแนนต่างกัน -25 คือเท่าใด?",
    "context": "CREATE TABLE table_name_24 (lost VARCHAR, points_difference VARCHAR)"
  },
  {
    "answer": "SELECT drawn FROM table_name_12 WHERE points_difference = \"-210\"",
    "question_en": "What is the number of draws for the team with a points difference of -210?",
    "question_th": "ทีมที่เสมอกันโดยมีคะแนนต่างกัน -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_en": "What is the points difference for the team that has allowed 615 points against?",
    "question_th": "อะไรคือความแตกต่างของคะแนนสำหรับทีมที่อนุญาตให้มี 615 แต้ม?",
    "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_en": "What is the number of matches played for the team with 0 draws and 33 points?",
    "question_th": "จำนวนแมตช์ที่เล่นให้กับทีมคือ 0 เสมอ 33 แต้ม?",
    "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_en": "What is the number of points for the team with 2 matches drawn and 577 points for?",
    "question_th": "ทีมที่เสมอ 2 นัด 2 นัด ได้ 577 แต้มเท่าไหร่?",
    "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_en": "What was the result when home was fc luzern (asl)?",
    "question_th": "ผลการแข่งขันในบ้านเป็น เอฟซี ลูเซิร์น (อสล.) เป็นอย่างไร?",
    "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_en": "Who was the guest on 24.11.07 when the result was 0:1 at 16:00?",
    "question_th": "ใครเป็นแขกรับเชิญในวันที่ 24.11.07 เมื่อผลออกมาเป็น 0:1 เวลา 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_en": "What day was the time 14:30, the result 0:1, and the home team fc chiasso (chl)?",
    "question_th": "วันไหนเวลา 14.30 น. ผล 0:1 และเจ้าบ้าน เอฟซี คิอัสโซ่ (ซีแอล)?",
    "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_en": "Who was the gues on 25.11.07 when home was stade nyonnais (1.l)?",
    "question_th": "ใครคือผู้เดาในวันที่ 25.11.07 เมื่อเจ้าบ้านคือสนาม 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_en": "Who was the guest when the result was 0:3?",
    "question_th": "ใครเป็นแขกเมื่อผลเป็น 0:3?",
    "context": "CREATE TABLE table_name_56 (guest VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_93 WHERE guest = \"fc zürich (asl)\"",
    "question_en": "What was the result when the guest was fc zürich (asl)?",
    "question_th": "ผลเป็นอย่างไรเมื่อแขกรับเชิญคือ fc zürich (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_en": "What's the white of E93 King's Indian Defence when Kasparov was black, moves were greater than 19, and happened before 2000?",
    "question_th": "อะไรคือสีขาวของ E93 King's Indian Defense เมื่อคาสปารอฟเป็นคนผิวดำ เคลื่อนไหวมากกว่า 19 ครั้ง และเกิดขึ้นก่อนปี 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_en": "What tournament had a black of Kramnik and an opening of B66 Sicilian Defence?",
    "question_th": "ทัวร์นาเมนต์ใดที่มี Kramnik สีดำและการเปิด 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 = \"½–½\" AND black = \"kramnik\" AND opening = \"e05 catalan opening\" AND moves > 38",
    "question_en": "What year had a black of Kramnik, opening of E05 Catalan Opening, moves greater than 38, and a result of ½–½?",
    "question_th": "ปีไหนที่มีสีดำของ Kramnik เปิด E05 Catalan Opening ขยับมากกว่า 38 และผลลัพธ์ของ ½–½?",
    "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_en": "What year had 32 moves?",
    "question_th": "ปีใดมีการเคลื่อนไหว 32 ครั้ง?",
    "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_en": "What year has 14 moves and an opening of C54 Italian Game?",
    "question_th": "ปีไหนมี 14 ท่าและเปิดเกม C54 Italian?",
    "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_en": "what is the lowest round2 when round5 is 71 and round4 is more than 64?",
    "question_th": "อะไรคือรอบต่ำสุด 2 เมื่อรอบ 5 คือ 71 และรอบ 4 มากกว่า 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_en": "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?",
    "question_th": "รอบ 1 จะเป็นอย่างไร เมื่อรอบ 3 น้อยกว่า 51 คะแนนรวมน้อยกว่า 273 คะแนน รอบ 2 น้อยกว่า 98 และรอบ 5 น้อยกว่า 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_en": "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?",
    "question_th": "อันดับไหนเมื่อคะแนนรวมเกิน 194 รอบ 4 น้อยกว่า 64 รอบ 3 มากกว่า 51 และรอบ 2 น้อยกว่า 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_en": "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?",
    "question_th": "รอบ 2 จะเป็นอย่างไรเมื่อรอบ 5 มากกว่า 35, รอบ 3 น้อยกว่า 51, อันดับน้อยกว่า 2 และทีมคือเนเธอร์แลนด์?",
    "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_en": "what is the lowest round3 when round4 is 37?",
    "question_th": "รอบ 3 ต่ำสุดคือเท่าไร เมื่อรอบ 4 คือ 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_en": "What is the team that has a shooting guard that played for the Grizzlies in 2000-2001?",
    "question_th": "ทีมไหนมีการ์ดยิงปืนที่เล่นให้กับทีม Grizzlies ในปี 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_en": "What's the United States team that played for the Grizzlies in 1995-1996?",
    "question_th": "ทีมสหรัฐอเมริกาที่เล่นให้กับ Grizzlies ในปี 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_en": "What are years that Obinna Ekezie played for the Grizzlies?",
    "question_th": "Obinna Ekezie เล่นให้กับ 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_en": "What's the school that played for the Grizzlie from 1995-1998?",
    "question_th": "โรงเรียนที่เล่นให้กับ Grizzlie ตั้งแต่ปี 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_en": "What position does Wayne Ellington play?",
    "question_th": "เวย์น เอลลิงตันเล่นตำแหน่งอะไร?",
    "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_en": "What is the premier league number when the position is forward, and the total is more than 22?",
    "question_th": "ตำแหน่งกองหน้าเบอร์อะไรในพรีเมียร์ลีกและยอดรวมเกิน 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_en": "What is the total when the league cup is less than 1, and the fa cup is less than 1?",
    "question_th": "ผลรวมเมื่อลีกคัพน้อยกว่า 1 และเอฟเอคัพน้อยกว่า 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_en": "What is the lowest league cup with a premier League of 1, and the total is less than 5?",
    "question_th": "ลีกคัพต่ำสุดที่มีพรีเมียร์ลีก 1 และรวมน้อยกว่า 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_en": "What is the lowest FA Cup when the league cup is 1, and the total is more than 23?",
    "question_th": "FA Cup ต่ำสุดเมื่อลีกคัพเป็น 1 และรวมมากกว่า 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_en": "What is the lowest grid for Roberto Rolfo with more than 26 laps?",
    "question_th": "ตารางต่ำสุดของ Roberto Rolfo ที่มากกว่า 26 รอบคือเท่าไร?",
    "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_en": "What was the time for Aprilia and their driver Casey Stoner, before gird 9, and less than 26 laps?",
    "question_th": "เวลาเท่าไรของ Aprilia และนักแข่ง Casey Stoner ก่อนเข้าเส้นชัย 9 และน้อยกว่า 26 รอบ?",
    "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_en": "What are the highest laps for Marco Melandri?",
    "question_th": "Marco Melandri มีรอบสูงสุดที่เท่าไร?",
    "context": "CREATE TABLE table_name_67 (laps INTEGER, rider VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(lost) FROM table_name_54 WHERE played > 12",
    "question_en": "Which player lost more than 12?",
    "question_th": "ผู้เล่นคนไหนแพ้มากกว่า 12?",
    "context": "CREATE TABLE table_name_54 (lost VARCHAR, played INTEGER)"
  },
  {
    "answer": "SELECT name FROM table_name_69 WHERE lost > 4",
    "question_en": "What is the name of the player that lost more than 4?",
    "question_th": "ผู้เล่นที่แพ้เกิน 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_en": "Which name has a lane less than 8, russia as the country, with a mark of 8.07?",
    "question_th": "ชื่อใดที่มีเลนน้อยกว่า 8 รัสเซียเป็นประเทศโดยมีคะแนน 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_en": "How many lanes have 2 as the heat, and susanna kallur as the name?",
    "question_th": "มีกี่เลนที่มี 2 ที่เป็นความร้อน และมีซูซานนา คาลลูร์เป็นชื่อ",
    "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_en": "What name has 8.19 as the mark, with 3 as the lane?",
    "question_th": "ชื่ออะไรที่มี 8.19 เป็นเครื่องหมาย โดยมี 3 เป็นเลน?",
    "context": "CREATE TABLE table_name_32 (name VARCHAR, mark VARCHAR, lane VARCHAR)"
  },
  {
    "answer": "SELECT discipline FROM table_name_45 WHERE championship = \"non-championship\"",
    "question_en": "In which discipline was non-championship under Championship?",
    "question_th": "วินัยใดที่ไม่เป็นแชมป์ภายใต้การแข่งขันชิงแชมป์?",
    "context": "CREATE TABLE table_name_45 (discipline VARCHAR, championship VARCHAR)"
  },
  {
    "answer": "SELECT discipline FROM table_name_93 WHERE session = \"pre-race test\"",
    "question_en": "What type of motorsport has a session of pre-race test?",
    "question_th": "มอเตอร์สปอร์ตประเภทใดที่มีการทดสอบก่อนการแข่งขัน?",
    "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_en": "With a Championship of 1959 USAC Championship Car Season what is the event?",
    "question_th": "กับการแข่งขันชิงแชมป์ USAC Championship Car Season ปี 1959 งานนี้จะมีอะไรบ้าง?",
    "context": "CREATE TABLE table_name_32 (event VARCHAR, championship VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_26 WHERE championship = \"nascar featherlite modified series\"",
    "question_en": "What race even has NASCAR Featherlite Modified Series as the championship?",
    "question_th": "การแข่งขันใดที่มี NASCAR Featherlite Modified Series เป็นแชมป์?",
    "context": "CREATE TABLE table_name_26 (event VARCHAR, championship VARCHAR)"
  },
  {
    "answer": "SELECT session FROM table_name_41 WHERE circuit = \"milwaukee mile\"",
    "question_en": "The Milwaukee Mile circuit has what type of session?",
    "question_th": "วงจร Milwaukee Mile มีเซสชันประเภทใด",
    "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_en": "The 2001 NASCAR Winston Cup Series championship has what has a circuit?",
    "question_th": "การแข่งขันชิงแชมป์ NASCAR Winston Cup Series ปี 2001 มีวงจรอะไรบ้าง?",
    "context": "CREATE TABLE table_name_16 (circuit VARCHAR, championship VARCHAR)"
  },
  {
    "answer": "SELECT semifinalists FROM table_name_23 WHERE tournament = \"stockholm\"",
    "question_en": "Which Semifinalist has a Tournament of stockholm?",
    "question_th": "รอบรองชนะเลิศคนไหนมีทัวร์นาเมนต์สตอกโฮล์ม?",
    "context": "CREATE TABLE table_name_23 (semifinalists VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_33 WHERE winner_and_score = \"goran ivanišević 6–4, 6–2, 7–6(2)\"",
    "question_en": "Which Tournament has a Winner and score of goran ivanišević 6–4, 6–2, 7–6(2)?",
    "question_th": "ทัวร์นาเมนต์ใดมีผู้ชนะและคะแนนของโกรัน อิวานิเชวิช 6–4, 6–2, 7–6(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_en": "Which Finalist has a Week of may 3?",
    "question_th": "ผู้เข้ารอบสุดท้ายคนไหนมีสัปดาห์วันที่ 3 พฤษภาคม",
    "context": "CREATE TABLE table_name_17 (finalist VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_95 WHERE week = \"march 1\"",
    "question_en": "Which Surface has a Week of march 1?",
    "question_th": "Surface ใดมีสัปดาห์ของวันที่ 1 มีนาคม",
    "context": "CREATE TABLE table_name_95 (surface VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT semifinalists FROM table_name_28 WHERE tournament = \"rome\"",
    "question_en": "Which Semifinalists have a Tournament of rome?",
    "question_th": "รอบรองชนะเลิศคนไหนจะได้ไปทัวร์นาเมนท์ที่โรม?",
    "context": "CREATE TABLE table_name_28 (semifinalists VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_98 WHERE semifinalists = \"stefan edberg thomas muster\"",
    "question_en": "Which Surface has a Semifinalist of stefan edberg thomas muster?",
    "question_th": "Surface ใดได้เข้ารอบรองชนะเลิศของ 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_en": "Which Drawn has a Played of 20, and a Club of rhigos rfc?",
    "question_th": "ซึ่งเสมอกันมีการเล่น 20 และ 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_en": "Which Points for has a Losing bonus of 2, and a Club of bridgend sports rfc?",
    "question_th": "คะแนนใดที่มีโบนัสการสูญเสีย 2 และ 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_en": "Which Points against has a Lost of lost?",
    "question_th": "แต้มใดต่อมีแพ้หรือแพ้?",
    "context": "CREATE TABLE table_name_97 (points_against VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_name_34 WHERE points_for = \"381\"",
    "question_en": "Which Points has a Points for of 381?",
    "question_th": "แต้มไหนมีแต้มถึง 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_en": "Which Tries against has Points for of 564?",
    "question_th": "การพยายามต่อต้านครั้งใดมีคะแนนเป็น 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_en": "Which Club has a Drawn of 0, and Points of 26?",
    "question_th": "สโมสรไหนเสมอ 0 และ 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_en": "What country won in 2004?",
    "question_th": "ประเทศใดชนะในปี 2547?",
    "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_en": "How many years have a Name of tour quartier des spectacles, and Floors smaller than 31?",
    "question_th": "กี่ปีมีชื่อของ tour quartier des spectacles และชั้นเล็กกว่า 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_en": "what is the date that the away team is aldershot?",
    "question_th": "ทีมเยือนโดนอัลเดอร์ช็อตวันที่เท่าไหร่?",
    "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_en": "who is the home team when the away team is bolton wanderers?",
    "question_th": "เจ้าบ้านคือใคร เมื่อทีมเยือน คือ โบลตัน วันเดอร์เรอร์ส?",
    "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ánchez\"",
    "question_en": "What's the largest amount of assists juan ignacio sánchez ever had?",
    "question_th": "ฮวน อิกนาซิโอ ซานเชซ แอสซิสต์มากที่สุดเท่าที่เคยมีมาคือเท่าไร?",
    "context": "CREATE TABLE table_name_30 (assists INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_20 WHERE games > 37 AND assists = 202",
    "question_en": "Who played over 37 games and had 202 assists?",
    "question_th": "ใครที่ลงเล่นมากกว่า 37 เกม และ 202 แอสซิสต์?",
    "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_en": "What is the highest total value when bask and base are each 3?",
    "question_th": "มูลค่ารวมสูงสุดเมื่อ bask และ base เท่ากัน 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_en": "What was the 2nd event aired on 8 June 2008?",
    "question_th": "รายการที่ 2 ออกอากาศวันที่ 8 มิถุนายน 2551 คืออะไร?",
    "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_en": "What episode had sumo ball for event 3 and the wall for event 4?",
    "question_th": "ตอนไหนมีซูโม่บอลงาน 3 และกำแพงงาน 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_en": "What is the earliest episode aired on 8 June 2008?",
    "question_th": "ออกอากาศตอนแรกที่สุดวันที่ 8 มิถุนายน พ.ศ. 2551 คือเรื่องใด?",
    "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_en": "What is event 4 when event one was gauntlet, event 2 was duel, and event 3 was pendulum?",
    "question_th": "เหตุการณ์ที่ 4 คืออะไร เมื่อเหตุการณ์หนึ่งเป็นถุงมือ เหตุการณ์ที่ 2 เป็นการดวล และเหตุการณ์ที่ 3 เป็นลูกตุ้ม",
    "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_en": "What is the air date  the had atlasphere for event 1 before episode 11?",
    "question_th": "Atlasphere สำหรับกิจกรรม 1 ก่อนตอนที่ 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_en": "What was the lowest placement with a final of 23.92?",
    "question_th": "ตำแหน่งต่ำสุดในรอบสุดท้ายที่ 23.92 คือตำแหน่งใด",
    "context": "CREATE TABLE table_name_38 (placement INTEGER, final VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(rank) FROM table_name_47 WHERE surname = \"lindberg\"",
    "question_en": "What did the Surname Lindberg rank?",
    "question_th": "นามสกุล Lindberg มีอันดับอะไร?",
    "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_en": "What was the lowest number of 2008 total bearers with a rank less than 13 and the Surname Jansson?",
    "question_th": "จำนวนผู้ถือครองรวมต่ำสุดในปี 2008 ที่มีอันดับน้อยกว่า 13 และนามสกุล 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_en": "What Etymology ranked 12?",
    "question_th": "นิรุกติศาสตร์ใดอันดับที่ 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_en": "What team has more than 32 games and 311 rebounds?",
    "question_th": "ทีมไหนมีมากกว่า 32 เกม 311 รีบาวด์?",
    "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_en": "What is the highest rank team akasvayu girona had with less than 311 rebounds?",
    "question_th": "Akasvayu Girona มีอันดับสูงสุดทีมใดที่ทำได้น้อยกว่า 311 รีบาวด์?",
    "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_en": "How many games did team iurbentia bilbao have with rebounds higher than 212?",
    "question_th": "ทีม iurbentia bilbao มีกี่เกมที่รีบาวด์สูงกว่า 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_en": "How few games are there for a rank more than 1 and more than 212 rebounds?",
    "question_th": "มีเกมกี่เกมสำหรับอันดับมากกว่า 1 และมากกว่า 212 รีบาวน์?",
    "context": "CREATE TABLE table_name_4 (games INTEGER, rank VARCHAR, rebounds VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_21 WHERE label = \"chrysalis records\"",
    "question_en": "On what date is the Chrysalis Records label.?",
    "question_th": "ค่าย Chrysalis Records จะจัดขึ้นวันไหน?",
    "context": "CREATE TABLE table_name_21 (date VARCHAR, label VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_81 WHERE label = \"chrysalis, island records\"",
    "question_en": "What is the date of the Chrysalis, Island Records label?",
    "question_th": "วันที่ของค่ายเพลง Chrysalis, Island Records คืออะไร?",
    "context": "CREATE TABLE table_name_81 (date VARCHAR, label VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_97 WHERE format = \"ed remaster cd\"",
    "question_en": "On what date was the format of ed remaster cd?",
    "question_th": "ซีดี ed remaster ออกมาเมื่อใดครับ?",
    "context": "CREATE TABLE table_name_97 (date VARCHAR, format VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_name_85 WHERE catalog = \"ilps 9153\"",
    "question_en": "The Catalog of ilps 9153 is from what region?",
    "question_th": "แคตตาล็อกของ ilps 9153 มาจากภูมิภาคใด",
    "context": "CREATE TABLE table_name_85 (region VARCHAR, catalog VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_93 WHERE region = \"spain\"",
    "question_en": "What label is from the Region of Spain?",
    "question_th": "ป้ายอะไรมาจากภูมิภาคสเปน?",
    "context": "CREATE TABLE table_name_93 (label VARCHAR, region VARCHAR)"
  },
  {
    "answer": "SELECT MAX(year) FROM table_name_35 WHERE venue = \"berlin, germany\"",
    "question_en": "what is the latest year when the venue is berlin, germany?",
    "question_th": "ปีล่าสุดที่สถานที่จัดงานคือกรุงเบอร์ลิน ประเทศเยอรมนี คือปีไหน?",
    "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_en": "what is the year when the notes is 5000 m and the competition is world junior championships in athletics?",
    "question_th": "ปีไหนที่โน้ตสูง 5,000 ม. และการแข่งขันกรีฑารุ่นจูเนียร์ชิงแชมป์โลกคือปีใด?",
    "context": "CREATE TABLE table_name_36 (year VARCHAR, notes VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_name_53 WHERE game = 72",
    "question_en": "Who has the highest assists in game 72?",
    "question_th": "ใครมีแอสซิสต์สูงสุดในเกมที่ 72?",
    "context": "CREATE TABLE table_name_53 (high_assists VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_38 WHERE date = \"march 21\"",
    "question_en": "What is the record of the game on March 21?",
    "question_th": "สถิติเกมวันที่ 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_en": "Which season has more than 5 episodes each 159 minutes in length?",
    "question_th": "ซีซั่นใดมีมากกว่า 5 ตอน ตอนละ 159 นาที?",
    "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_en": "What is the release date for Ben 10: Alien Force Volume 9 on DVD?",
    "question_th": "วันที่วางจำหน่ายของ Ben 10: Alien Force Volume 9 บนดีวีดีคือเมื่อใด",
    "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_en": "What the episode count for Ben 10: Alien Force Volume 8 on DVD?",
    "question_th": "ดีวีดี Ben 10: Alien Force Volume 8 มีจำนวนตอนเท่าไร?",
    "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_en": "What title was release November 17, 2009 in a 16:9 aspect ratio?",
    "question_th": "ชื่ออะไรเปิดตัวเมื่อวันที่ 17 พฤศจิกายน พ.ศ. 2552 ในอัตราส่วน 16:9",
    "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_en": "What is the aspect ratio for the September 1, 2009 release?",
    "question_th": "อัตราส่วนกว้างยาวสำหรับการเผยแพร่ในวันที่ 1 กันยายน 2009 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_56 (aspect_ratio VARCHAR, release_date VARCHAR)"
  },
  {
    "answer": "SELECT network FROM table_name_12 WHERE year > 2011",
    "question_en": "Which network broadcasted the cup after 2011?",
    "question_th": "เครือข่ายใดที่ออกอากาศถ้วยหลังปี 2554?",
    "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_en": "When John Harkes was the color commentator, and Alexi Lalas and Steve McManaman were the pregame analysts, who were the sideline reporters?",
    "question_th": "เมื่อจอห์น ฮาร์กส์เป็นผู้บรรยายเรื่องสี และอเล็กซี ลาลาส และสตีฟ แม็คมานามานเป็นนักวิเคราะห์ก่อนเกม ใครคือนักข่าวข้างสนาม?",
    "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_en": "Who does pregame analysts for TSN2 network when Taylor Twellman is the color commentator?",
    "question_th": "ใครเป็นนักวิเคราะห์พรีเกมสำหรับเครือข่าย TSN2 เมื่อ Taylor Twellman เป็นผู้วิจารณ์สี?",
    "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_en": "With the game that was less than 16 what was the high assists?",
    "question_th": "กับเกมที่น้อยกว่า 16 แอสซิสต์สูงขนาดไหน?",
    "context": "CREATE TABLE table_name_60 (high_assists VARCHAR, game INTEGER)"
  },
  {
    "answer": "SELECT record FROM table_name_82 WHERE date = \"december 25\"",
    "question_en": "On December 25, what was the record?",
    "question_th": "วันที่ 25 ธันวาคม มีสถิติอะไรบ้าง?",
    "context": "CREATE TABLE table_name_82 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT length FROM table_name_33 WHERE location = \"taylorville, illinois\"",
    "question_en": "What is the length of the track located in Taylorville, Illinois?",
    "question_th": "ความยาวของแทร็กที่เมือง Taylorville รัฐอิลลินอยส์ คือเท่าไร?",
    "context": "CREATE TABLE table_name_33 (length VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT sanction FROM table_name_5 WHERE location = \"nashville, illinois\"",
    "question_en": "What was the sanction of the event at Nashville, Illinois?",
    "question_th": "การลงโทษของงานที่แนชวิลล์ รัฐอิลลินอยส์ คืออะไร?",
    "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_en": "What programs are there for the South Fork Dirt Riders track?",
    "question_th": "มีโปรแกรมอะไรบ้างสำหรับสนาม South Fork Dirt Riders?",
    "context": "CREATE TABLE table_name_44 (program VARCHAR, track_name VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_name_58 WHERE club = \"newport rfc\"",
    "question_en": "How many points did Newport RFC get?",
    "question_th": "นิวพอร์ท อาร์เอฟซี ได้กี่แต้ม?",
    "context": "CREATE TABLE table_name_58 (points VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_name_90 WHERE lost = \"15\"",
    "question_en": "What club had a loss of 15?",
    "question_th": "สโมสรไหนเสีย 15 แต้ม?",
    "context": "CREATE TABLE table_name_90 (club VARCHAR, lost VARCHAR)"
  },
  {
    "answer": "SELECT points_difference FROM table_name_37 WHERE points_for = \"554\"",
    "question_en": "When there were 554 points, what was the point difference?",
    "question_th": "เมื่อมี 554 คะแนน แต้มต่างกันอย่างไร?",
    "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_en": "When there were 767 points, what was the point difference?",
    "question_th": "เมื่อมี 767 คะแนน แต้มต่างกันอย่างไร?",
    "context": "CREATE TABLE table_name_34 (points_difference VARCHAR, points_against VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_name_87 WHERE points_difference = \"-24\"",
    "question_en": "What club had a points difference of -24?",
    "question_th": "สโมสรใดมีคะแนนต่างกัน -24?",
    "context": "CREATE TABLE table_name_87 (club VARCHAR, points_difference VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_55 WHERE opponent = \"jade curtis\"",
    "question_en": "What is the outcome of the match with opponent Jade Curtis?",
    "question_th": "ผลการแข่งขันกับคู่ต่อสู้ เจด เคอร์ติส เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_55 (outcome VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_27 WHERE surface = \"carpet\"",
    "question_en": "What is the outcome of the match played on carpet surface?",
    "question_th": "ผลการแข่งขันที่เล่นบนพื้นพรมเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_27 (outcome VARCHAR, surface VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_59 WHERE opponent = \"jade curtis\"",
    "question_en": "What is the name of the Tournament with Jade Curtis as the opponent?",
    "question_th": "ทัวร์นาเมนท์ชื่ออะไร โดยมี เจด เคอร์ติส เป็นคู่ต่อสู้?",
    "context": "CREATE TABLE table_name_59 (tournament VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_79 WHERE runs = \"124\"",
    "question_en": "Who has Runs of 124?",
    "question_th": "ใครมีรัน 124 บ้าง?",
    "context": "CREATE TABLE table_name_79 (player VARCHAR, runs VARCHAR)"
  },
  {
    "answer": "SELECT runs FROM table_name_47 WHERE venue = \"adelaide oval , adelaide\"",
    "question_en": "Name the Runs which has Venue of adelaide oval , adelaide?",
    "question_th": "ตั้งชื่อ Runs ซึ่งมีสถานที่ของ 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_en": "Which Venue has michael di venuto on Season of 2000/01?",
    "question_th": "สถานที่ใดที่มี Michael di Venuto ในฤดูกาล 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_en": "Name the Runs has a Venue of bellerive oval , hobart, and a Season of 2004/05, and a Rank of 5?",
    "question_th": "Name the Runs มีสถานที่จัดงานรูปไข่ โฮบาร์ต และฤดูกาล 2004/05 และอันดับที่ 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_en": "Name the Runs that has a Venue of bellerive oval , hobart, and a Player of travis birt?",
    "question_th": "ตั้งชื่อรันส์ที่มีสถานที่จัดงานเป็นรูปวงรีทรงระฆัง โฮบาร์ต และผู้เล่นของทราวิส เบิร์ตไหม",
    "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_en": "What is the front-side bus for the processor whose frequency is 733MHz?",
    "question_th": "Front-Side Bus สำหรับโปรเซสเซอร์ที่มีความถี่ 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_en": "What is the L2 cache for the processor with a 750MHz frequency?",
    "question_th": "แคช L2 สำหรับโปรเซสเซอร์ที่มีความถี่ 750MHz คืออะไร",
    "context": "CREATE TABLE table_name_93 (l2_cache VARCHAR, frequency VARCHAR)"
  },
  {
    "answer": "SELECT multiplier FROM table_name_20 WHERE frequency = \"733mhz\"",
    "question_en": "What is the multiplier for the processor with a frequency of 733MHz?",
    "question_th": "ตัวคูณสำหรับโปรเซสเซอร์ที่มีความถี่ 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_en": "What is the smallest height with a prominence of 2,349?",
    "question_th": "ส่วนสูงน้อยที่สุดที่มีความโดดเด่นคือ 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_en": "What was the result of the game after week 6 against the cleveland browns?",
    "question_th": "ผลลัพธ์ของเกมหลังจากสัปดาห์ที่ 6 กับคลีฟแลนด์ บราวน์สเป็นอย่างไร?",
    "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_en": "What was the Ravens' record on December 5, 1999?",
    "question_th": "บันทึกของ Ravens เมื่อวันที่ 5 ธันวาคม 1999 คืออะไร?",
    "context": "CREATE TABLE table_name_33 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_97 WHERE opponent = \"buffalo bills\"",
    "question_en": "What date did the Ravens play the buffalo bills?",
    "question_th": "Ravens เล่นตั๋วควายวันไหน?",
    "context": "CREATE TABLE table_name_97 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_89 WHERE week = 10",
    "question_en": "What date was the week 10 game?",
    "question_th": "เกมสัปดาห์ที่ 10 คือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_89 (date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_51 WHERE location = \"los angeles, california\"",
    "question_en": "What was the school type for Los Angeles, California?",
    "question_th": "โรงเรียนในลอสแองเจลิส รัฐแคลิฟอร์เนีย เป็นแบบใด",
    "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_en": "What were the dates for Honolulu, Hawaii in Kindergarten?",
    "question_th": "วันที่โฮโนลูลู รัฐฮาวาย ในโรงเรียนอนุบาลคือวันที่เท่าไร",
    "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_en": "What is the highest Pick that has a round greater than 6 and an overall greater than 216?",
    "question_th": "ตัวเลือกสูงสุดที่มีรอบมากกว่า 6 และคะแนนรวมมากกว่า 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_en": "What is the highest round that has an overall of 143 and a pick greater than 6?",
    "question_th": "รอบสูงสุดที่มีคะแนนรวม 143 และตัวเลือกมากกว่า 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_en": "What was the session at the circuit of lowes motor speedway?",
    "question_th": "เซสชั่นที่สนามแข่งรถโลว์สมอเตอร์เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_70 (session VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT session FROM table_name_96 WHERE discipline = \"open wheel\"",
    "question_en": "Which session had a discipline of open wheel?",
    "question_th": "ช่วงไหนมีระเบียบวินัยแบบ open wheel?",
    "context": "CREATE TABLE table_name_96 (session VARCHAR, discipline VARCHAR)"
  },
  {
    "answer": "SELECT championship FROM table_name_39 WHERE circuit = \"le mans\"",
    "question_en": "Which championship had a Circuit of le mans?",
    "question_th": "แชมป์รายการไหนมี 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_en": "What was the discipline for the Championship of international championship for makes?",
    "question_th": "อะไรคือระเบียบวินัยสำหรับการแข่งขันชิงแชมป์ระดับนานาชาติ?",
    "context": "CREATE TABLE table_name_17 (discipline VARCHAR, championship VARCHAR)"
  },
  {
    "answer": "SELECT session FROM table_name_95 WHERE circuit = \"autodrom most\"",
    "question_en": "What was the session at the circuit of autodrom most?",
    "question_th": "เซสชั่นที่วงจร autodrom มากที่สุดคือช่วงใด?",
    "context": "CREATE TABLE table_name_95 (session VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT discipline FROM table_name_59 WHERE championship = \"euroboss\"",
    "question_en": "What was the discipline for the euroboss championship?",
    "question_th": "วินัยในการแข่งขันชิงแชมป์ยูโรบอสคืออะไร?",
    "context": "CREATE TABLE table_name_59 (discipline VARCHAR, championship VARCHAR)"
  },
  {
    "answer": "SELECT MIN(played) FROM table_name_76 WHERE position > 9",
    "question_en": "what is the lowest played when the position is more than 9?",
    "question_th": "เล่นต่ำสุดเมื่อตำแหน่งมากกว่า 9 คือเท่าไร?",
    "context": "CREATE TABLE table_name_76 (played INTEGER, position INTEGER)"
  },
  {
    "answer": "SELECT AVG(points) FROM table_name_55 WHERE played < 16",
    "question_en": "what is the average points when played is less than 16?",
    "question_th": "แต้มเฉลี่ยเมื่อเล่นน้อยกว่า 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_en": "what is the highest points when position is higher than 6, lost is less than 12 and drawn is less than 1?",
    "question_th": "จุดสูงสุดเมื่อตำแหน่งสูงกว่า 6 แพ้น้อยกว่า 12 และเสมอน้อยกว่า 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_en": "what is the sum of points when lost is less than 10, name is vfl denklingen and position is higher than 2?",
    "question_th": "ผลรวมของคะแนนเมื่อเสียน้อยกว่า 10 ชื่อคือ vfl denklingen และตำแหน่งสูงกว่า 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_en": "WHAT IS THE WORST SCORE WHEN THE BEST SCORE WAS 8.8 AND AVERAGE WAS LARGER THAN 6.2?",
    "question_th": "คะแนนที่แย่ที่สุดคืออะไรเมื่อคะแนนที่ดีที่สุดคือ 8.8 และค่าเฉลี่ยมากกว่า 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_en": "WHAT IS THE TOTAL AVERAGE WITH A PLACE SMALLER THAN 1?",
    "question_th": "ค่าเฉลี่ยรวมที่มีสถานที่เล็กกว่า 1 คืออะไร?",
    "context": "CREATE TABLE table_name_53 (average VARCHAR, place INTEGER)"
  },
  {
    "answer": "SELECT MAX(place) FROM table_name_3 WHERE best_score > 10",
    "question_en": "WHAT IS THE HIGHEST PLACE AND BEST SCORE BIGGER THAN 10?",
    "question_th": "สถานที่ที่สูงที่สุดและคะแนนดีที่สุดมากกว่า 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_en": "Can you tell me the High points that has the Date of january 31?",
    "question_th": "ช่วยบอกจุดสูงสุดที่มีวันที่ 31 มกราคม หน่อยได้ไหมครับ?",
    "context": "CREATE TABLE table_name_32 (high_points VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_33 WHERE game = 40",
    "question_en": "Can you tell me the Score that has the Game of 40?",
    "question_th": "คุณช่วยบอกคะแนนที่มีเกม 40 หน่อยได้ไหม?",
    "context": "CREATE TABLE table_name_33 (score VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_42 WHERE player = \"lee trevino\"",
    "question_en": "What was Lee Trevino's score?",
    "question_th": "คะแนนของ Lee Trevino คืออะไร?",
    "context": "CREATE TABLE table_name_42 (score VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(grid) FROM table_name_77 WHERE driver = \"patrick carpentier\"",
    "question_en": "What was the highest grid for Patrick Carpentier?",
    "question_th": "ตารางที่สูงที่สุดของ 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_en": "Who has the lowest laps with 29 points on 1 grid?",
    "question_th": "ใครมีรอบต่ำสุดด้วย 29 แต้มใน 1 ตาราง?",
    "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_en": "What is the location and attendance of the game with a game number greater than 7 and a record of 5-2-1?",
    "question_th": "สถานที่และผู้เข้าร่วมการแข่งขันที่มีหมายเลขเกมมากกว่า 7 และสถิติ 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_en": "What is the location and attendance of the game with a 3-1-0 record?",
    "question_th": "สถานที่และผู้เข้าชมเกมด้วยสถิติ 3-1-0 เป็นอย่างไร?",
    "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_en": "Who is the opponent of the game with a game number less than 5 with a 2-0-0 record?",
    "question_th": "คู่ต่อสู้ของเกมที่มีหมายเลขเกมน้อยกว่า 5 ด้วยสถิติ 2-0-0 คือใคร?",
    "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_en": "What Frequency's Branding is Your Cure for Corporate Radio?",
    "question_th": "การสร้างแบรนด์ด้วยความถี่ใดที่จะช่วยรักษาวิทยุองค์กรของคุณได้",
    "context": "CREATE TABLE table_name_23 (frequency VARCHAR, branding VARCHAR)"
  },
  {
    "answer": "SELECT format FROM table_name_96 WHERE frequency = \"am 980\"",
    "question_en": "What is the Format of AM 980?",
    "question_th": "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_en": "What is the Branding of the Frequency owned by Sound of Faith Broadcasting Group?",
    "question_th": "การสร้างแบรนด์ของความถี่ที่ 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_en": "What is FM 99.9's Format?",
    "question_th": "รูปแบบของ FM 99.9 คืออะไร?",
    "context": "CREATE TABLE table_name_78 (format VARCHAR, frequency VARCHAR)"
  },
  {
    "answer": "SELECT format FROM table_name_59 WHERE call_sign = \"cjbx-fm\"",
    "question_en": "What is the Format of the Frequency CJBX-FM?",
    "question_th": "รูปแบบของความถี่ 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_en": "What is the Call sign of the Frequency 106.9 the X?",
    "question_th": "สัญญาณเรียกขานของความถี่ 106.9 X คืออะไร?",
    "context": "CREATE TABLE table_name_19 (call_sign VARCHAR, branding VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_13 WHERE opponent = \"@ buffalo sabres\"",
    "question_en": "Which Score has an Opponent of @ buffalo sabres?",
    "question_th": "สกอร์ไหนมีคู่ต่อสู้ @บัฟฟาโลเซเบอร์?",
    "context": "CREATE TABLE table_name_13 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(points) FROM table_name_7 WHERE date = \"march 19, 2009\"",
    "question_en": "How many Points have a Date of march 19, 2009?",
    "question_th": "วันที่ 19 มีนาคม 2552 มีกี่คะแนน",
    "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_en": "What time is CDT when EDT is 4:55 a.m.?",
    "question_th": "CDT คือกี่โมง EDT คือ 04:55 น.?",
    "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_en": "What is the time for PDT when CDT is 6:38 a.m.?",
    "question_th": "เวลาสำหรับ PDT คือเมื่อ CDT คือ 6:38 น.",
    "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_en": "What time is CDT when PDT is 3:17 a.m.?",
    "question_th": "CDT กี่โมง โดย PDT คือ 03:17 น.",
    "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_en": "What time is MDT when EDT is set and PDT is 6:00 a.m.?",
    "question_th": "MDT คือเวลาใดเมื่อตั้งค่า EDT และ PDT คือ 6:00 น.",
    "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_en": "Which Finals has a A-League of 0 6, and a Pre-Season larger than 0?",
    "question_th": "รอบชิงชนะเลิศใดที่มี A-League 0 6 และ Pre-Season ที่ใหญ่กว่า 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_en": "Which Pre-Season has a A-League of 0 1, and a Finals larger than 0?",
    "question_th": "พรีซีซั่นใดที่มี A-League 0 1 และรอบชิงชนะเลิศที่มากกว่า 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_en": "What is the highest Taper (in/ft), when Size is 8?",
    "question_th": "ความเรียวสูงสุด (นิ้ว/ฟุต) เมื่อขนาดเป็น 8 คือเท่าใด",
    "context": "CREATE TABLE table_name_20 (taper__in_ft_ INTEGER, size VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_28 WHERE week = 15",
    "question_en": "What is the date for week 15?",
    "question_th": "สัปดาห์ที่ 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_en": "What is the total attendance for Candlestick Park?",
    "question_th": "ผู้เข้าร่วม 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_en": "Who was the opponent on april 26, 2003?",
    "question_th": "คู่ต่อสู้เมื่อวันที่ 26 เมษายน 2546 คือใคร?",
    "context": "CREATE TABLE table_name_25 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_27 WHERE week = 1",
    "question_en": "What was the result on week 1?",
    "question_th": "สัปดาห์ที่ 1 ผลลัพธ์เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_27 (result VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_83 WHERE date = \"april 26, 2003\"",
    "question_en": "What was the result of the game that took place on april 26, 2003?",
    "question_th": "ผลลัพธ์ของเกมที่เกิดขึ้นเมื่อวันที่ 26 เมษายน พ.ศ. 2546 คืออะไร?",
    "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_en": "What was the result of the week that was a bye before week 6?",
    "question_th": "สัปดาห์ที่ลาก่อนสัปดาห์ที่ 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_en": "What is the lowest number of districts (kecamatan) in the north sulawesi province with more than 1,510 villages?",
    "question_th": "จำนวนอำเภอต่ำสุด (kecamatan) ในจังหวัดสุลาเวสีเหนือที่มีมากกว่า 1,510 หมู่บ้านคือข้อใด",
    "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_en": "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?",
    "question_th": "ผลรวมของจำนวนอำเภอ (kecamatan) ในหน่วยทางภูมิศาสตร์ของชวาที่มีมากกว่า 4 อำเภอ (kabupaten) และน้อยกว่า 8,577 หมู่บ้านเป็นเท่าใด",
    "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_en": "Which score was associated with an attendance of 275?",
    "question_th": "คะแนนใดเกี่ยวข้องกับการเข้าร่วม 275 คน",
    "context": "CREATE TABLE table_name_66 (score VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT MIN(attendance) FROM table_name_47 WHERE away = \"vida\"",
    "question_en": "What was the lowest attendance by the game that had an away team of Vida?",
    "question_th": "เกมนี้เจอทีมเยือนวิดาน้อยที่สุดคือทีมไหน?",
    "context": "CREATE TABLE table_name_47 (attendance INTEGER, away VARCHAR)"
  },
  {
    "answer": "SELECT away FROM table_name_69 WHERE attendance < 2614 AND home = \"victoria\"",
    "question_en": "Who was the away team that had attendance under 2614 and a home team of Victoria?",
    "question_th": "ทีมเยือนที่เข้าชมต่ำกว่าปี 2614 และทีมเหย้าของวิคตอเรียคือใคร?",
    "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_en": "Who was the home team for the game with Platense as the away team and attendance under 529?",
    "question_th": "ใครคือทีมเหย้าสำหรับเกมนี้โดยมีพลาเทนเซ่เป็นทีมเยือนและผู้เข้าชมต่ำกว่า 529 คน?",
    "context": "CREATE TABLE table_name_67 (home VARCHAR, attendance VARCHAR, away VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_99 WHERE away = \"hispano\"",
    "question_en": "What was the attendance for the game with an away team of Hispano?",
    "question_th": "การเข้าเล่นเกมกับทีมเยือนของฮิสปาโน่เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_99 (attendance VARCHAR, away VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_99 WHERE attendance = 507",
    "question_en": "Which home has an attendance of 507?",
    "question_th": "บ้านไหนมีผู้เข้าร่วม 507 คน?",
    "context": "CREATE TABLE table_name_99 (home VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT SUM(attendance) FROM table_name_79 WHERE score = \"3:1\"",
    "question_en": "What was the total attendance for the 3:1 game?",
    "question_th": "ผู้เข้าร่วมทั้งหมดในเกม 3:1 เป็นเท่าใด?",
    "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_en": "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?",
    "question_th": "มีกี่ประตูที่ทำได้เมื่อคะแนนน้อยกว่า 13 ชนะน้อยกว่า 3 และประตูน้อยกว่า 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_en": "What was the highest position when the wins were higher than 4 and the points were lower than 11?",
    "question_th": "ตำแหน่งสูงสุดเมื่อชนะสูงกว่า 4 และแต้มต่ำกว่า 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_en": "When the goals against were higher than 30, what was the average number of draws?",
    "question_th": "เมื่อประตูที่ทำได้สูงกว่า 30 เสมอกันโดยเฉลี่ยเท่าไหร่?",
    "context": "CREATE TABLE table_name_23 (draws INTEGER, goals_against INTEGER)"
  },
  {
    "answer": "SELECT SUM(wins) FROM table_name_19 WHERE draws < 2",
    "question_en": "How many wins happened when there were fewer than 2 draws?",
    "question_th": "ชนะกี่ครั้งเมื่อเสมอน้อยกว่า 2 ครั้ง?",
    "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_en": "How many goals against were scored when the position was higher than 1 and the played was higher than 10?",
    "question_th": "มีกี่ประตูที่ทำประตูได้เมื่ออันดับสูงกว่า 1 และการเล่นสูงกว่า 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_en": "What year were the Grizzlies in Providence?",
    "question_th": "Grizzlies ในพรอวิเดนซ์อยู่ปีไหน?",
    "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_en": "What player from the United States played for the Grizzlies from 1997-1998?",
    "question_th": "ผู้เล่นคนใดจากสหรัฐอเมริกาที่เล่นให้กับ Grizzlies ตั้งแต่ปี 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_en": "Which player played for the Grizzlies from 1997-1998?",
    "question_th": "นักเตะคนไหนเคยเล่นให้ทีมกริซลี่ส์ระหว่างปี 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_en": "Who won the men's ski jump when the FIS Nordic World Ski Championships was 1980?",
    "question_th": "ใครเป็นผู้ชนะการกระโดดสกีชายในการแข่งขัน FIS Nordic World Ski Championships ในปี 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_en": "With the Winter Olympics was 1960, what was the country?",
    "question_th": "โอลิมปิกฤดูหนาวคือปี 1960 ประเทศอะไร?",
    "context": "CREATE TABLE table_name_53 (country VARCHAR, winter_olympics VARCHAR)"
  },
  {
    "answer": "SELECT winter_olympics FROM table_name_38 WHERE country = \"japan\"",
    "question_en": "What was the Winter Olympics was Japan as the country?",
    "question_th": "โอลิมปิกฤดูหนาวคืออะไรที่ญี่ปุ่นเป็นประเทศ?",
    "context": "CREATE TABLE table_name_38 (winter_olympics VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_45 WHERE winner = \"arnfinn bergmann\"",
    "question_en": "The winner Arnfinn Bergmann has what under country?",
    "question_th": "ผู้ชนะ Arnfinn Bergmann มีอะไรอยู่ข้างใต้?",
    "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_en": "When the FIS Nordic World Ski Championships was 1962, 1964 what was the Holmenkollen?",
    "question_th": "เมื่อ FIS Nordic World Ski Championships คือปี 1962, 1964 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_en": "What is the total number of Money ( $ ), when To Par is \"13\", and when Player is \"Julius Boros\"?",
    "question_th": "จำนวนเงินทั้งหมด ($ ) คือเท่าไร เมื่อถึงพาร์คือ \"13\" และเมื่อผู้เล่นคือ \"จูเลียส โบรอส\"?",
    "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_en": "What is Player, when Money ( $ ) is less than 387, and when Score is \"73-76-74-72=295\"?",
    "question_th": "ผู้เล่นคืออะไร เมื่อเงิน ($ ) น้อยกว่า 387 และเมื่อคะแนนคือ \"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_en": "What is the total number of To Par, when Money ( $ ) is less than 387, and when Player is \"Al Brosch\"?",
    "question_th": "จำนวนพาร์ทั้งหมดคือเท่าไร เมื่อเงิน ($ ) น้อยกว่า 387 และเมื่อผู้เล่นคือ \"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_en": "What is Place, when To Par is less than 15, and when Score is 76-72-75-71=294?",
    "question_th": "Place คืออะไร เมื่อ To Par น้อยกว่า 15 และเมื่อ Score คือ 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_en": "What is Player, when Country is \"United States\", when Money ( $ ) is greater than 387, and when Score is \"75-74-74-70=293\"?",
    "question_th": "ผู้เล่นคืออะไร เมื่อประเทศคือ \"สหรัฐอเมริกา\" เมื่อเงิน ($ ) มากกว่า 387 และเมื่อคะแนนคือ \"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_en": "WHAT IS THE RECORD FOR THE GAME SMALLER THAN 31?",
    "question_th": "สถิติของเกมที่เล็กกว่า 31 คืออะไร?",
    "context": "CREATE TABLE table_name_36 (record VARCHAR, game INTEGER)"
  },
  {
    "answer": "SELECT AVG(game) FROM table_name_23 WHERE date = \"september 13\"",
    "question_en": "WHAT IS THE GAME ON SEPTEMBER 13?",
    "question_th": "เกมอะไรในวันที่ 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_en": "Which team had more than 10 wins with a champion of Mat Mladin?",
    "question_th": "ทีมไหนคว้าชัยเกิน 10 นัด กับแชมป์ มัท มลาดิน?",
    "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_en": "Which team had 2 wins and a season later than 1986?",
    "question_th": "ทีมใดชนะ 2 ครั้งและหนึ่งฤดูกาลช้ากว่าปี 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_en": "What was the score for Team 1 of Stade Lavallois (d1)?",
    "question_th": "คะแนนของทีม 1 ของสนามสตาด ลาวาลัวส์ (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_en": "What was team one name for the Team 2 of Toulouse Fc (d1)>?",
    "question_th": "ทีมที่ 2 ของ 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_en": "What was the name of the Team 1, where the Team 2 was Stade De Reims (d2)?",
    "question_th": "ทีม 1 ชื่ออะไร โดยที่ทีม 2 คือ 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_en": "What was teh score of the game where Toronto was the home team on January 28?",
    "question_th": "คะแนนของเกมที่โตรอนโตเป็นเจ้าบ้านเมื่อวันที่ 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_en": "What is listed for the High rebounds on the Date of March 31?",
    "question_th": "รายการของการรีบาวด์สูงสุดในวันที่ 31 มีนาคมมีอะไรบ้าง",
    "context": "CREATE TABLE table_name_34 (high_rebounds VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_4 WHERE team = \"indiana\"",
    "question_en": "What is the Record for the Team of Indiana?",
    "question_th": "บันทึกของทีมอินเดียน่าคืออะไร?",
    "context": "CREATE TABLE table_name_4 (record VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_74 WHERE game = 75",
    "question_en": "What's the Score for the Game of 75?",
    "question_th": "คะแนนของเกม 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_en": "Which Release date has a Required OS of windows, a Type of 2d, and a Developer(s) of zeonix?",
    "question_th": "วันที่วางจำหน่ายใดที่มีระบบปฏิบัติการที่จำเป็นของ windows, ประเภท 2d และนักพัฒนาของ 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_en": "Which Payment has a Type of 2d, and a Release date of january 2003?",
    "question_th": "การชำระเงินใดที่มีประเภท 2d และวันที่วางจำหน่ายในเดือนมกราคม 2546",
    "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_en": "Which Payment has a Type of text, and a Release date of 26 september, 2003?",
    "question_th": "การชำระเงินใดมีประเภทของข้อความ และวันที่เผยแพร่คือ 26 กันยายน 2546",
    "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_en": "Which Type has a Release date of november 30, 1997?",
    "question_th": "ประเภทใดมีวันวางจำหน่ายวันที่ 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_en": "Which Release date has a Type of 2d?",
    "question_th": "วันวางจำหน่ายใดที่มีประเภท 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_en": "Which Release date has a Developer(s) of microsoft research?",
    "question_th": "วันที่วางจำหน่ายใดที่มีผู้พัฒนางานวิจัยของ Microsoft",
    "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_en": "what is the meet when the event is flying 200 m time trial?",
    "question_th": "งานบิน 200 ม. ไทม์ไทรไร เจอกันทีไร?",
    "context": "CREATE TABLE table_name_99 (meet VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_53 WHERE event = \"1 km time trial\"",
    "question_en": "what is the record when the event is 1 km time trial?",
    "question_th": "Time Trial 1 กม. มีสถิติเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_53 (record VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_94 WHERE event = \"4000 m individual pursuit\"",
    "question_en": "what is the place when the event is 4000 m individual pursuit?",
    "question_th": "งานวิ่ง 4,000 ม. จัดขึ้นที่ใด?",
    "context": "CREATE TABLE table_name_94 (place VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_2 WHERE event = \"4000 m individual pursuit\"",
    "question_en": "what is the place when the event is 4000 m individual pursuit?",
    "question_th": "งานวิ่ง 4,000 ม. จัดขึ้นที่ใด?",
    "context": "CREATE TABLE table_name_2 (place VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT meet FROM table_name_67 WHERE date = \"3 august 2012\"",
    "question_en": "what is the meet when the date is 3 august 2012?",
    "question_th": "พบกันวันที่ 3 สิงหาคม 2555 คืออะไร?",
    "context": "CREATE TABLE table_name_67 (meet VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT SUM(year) FROM table_name_6 WHERE position = \"4th\"",
    "question_en": "Which Year has a Position of 4th?",
    "question_th": "ปีใดมีตำแหน่งที่ 4?",
    "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_en": "Which Event has a Competition of chicago marathon, and a Year larger than 2004?",
    "question_th": "งานใดที่มีการแข่งขันชิคาโกมาราธอน และหนึ่งปีที่ใหญ่กว่าปี 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_en": "WHich Venue has a Year larger than 2003, and a Position of 10th?",
    "question_th": "สถานที่ใดมีปีที่ใหญ่กว่าปี 2546 และอยู่ในอันดับที่ 10",
    "context": "CREATE TABLE table_name_11 (venue VARCHAR, year VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_39 WHERE position = \"5th\"",
    "question_en": "Name the Venue which has a Position of 5th?",
    "question_th": "ตั้งชื่อสถานที่ซึ่งมีตำแหน่งที่ 5 หรือไม่?",
    "context": "CREATE TABLE table_name_39 (venue VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_1 WHERE place = \"2\"",
    "question_en": "What is the Place 2 Player?",
    "question_th": "ผู้เล่นอันดับ 2 คืออะไร?",
    "context": "CREATE TABLE table_name_1 (player VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_11 WHERE to_par = \"+3\"",
    "question_en": "What Player has a +3 To par?",
    "question_th": "ผู้เล่นคนไหนมีพาร์ +3?",
    "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_en": "What is the Place of Player with To par of +6 and Score of 78-70-74=222?",
    "question_th": "ตำแหน่งผู้เล่นที่มีพาร์ถึง +6 และคะแนน 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_en": "What is the Country of the Player with a Score of 75-70-74=219?",
    "question_th": "ประเทศของผู้เล่นที่มีคะแนน 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_en": "What is the Country with the T3 Place Player with a Score of 71-76-71=218?",
    "question_th": "ประเทศใดที่มีผู้เล่นอันดับ T3 ด้วยคะแนน 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_en": "In what event is the opponent Joe Nameth?",
    "question_th": "คู่ต่อสู้โจเนเมธคือเหตุการณ์ใด?",
    "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_en": "What is the record when the loss was to Alex Hunter in round 1?",
    "question_th": "สถิติการแพ้คืออเล็กซ์ ฮันเตอร์ ในรอบ 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_en": "What is the method when the opponent is Andre Roberts?",
    "question_th": "เมื่อคู่ต่อสู้คือ อังเดร โรเบิร์ตส์ จะเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_34 (method VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_42 WHERE opponent = \"andre roberts\"",
    "question_en": "What is the round when the opponent is Andre Roberts?",
    "question_th": "ยกอะไรเมื่อคู่ต่อสู้คือ 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_en": "What is the round when the loss came with a record of 2-4?",
    "question_th": "รอบไหนที่แพ้มาด้วยสกอร์ 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_en": "How many rounds was the fight with a decision by submission (punches)?",
    "question_th": "ชกกี่รอบตัดสินด้วยการซับมิชชัน (ต่อย)?",
    "context": "CREATE TABLE table_name_3 (round VARCHAR, method VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_99 WHERE date = \"sat. feb. 23\"",
    "question_en": "Who played against the Celtics on Sat. Feb. 23?",
    "question_th": "ใครเล่นกับเซลติกส์เมื่อวันเสาร์ 23 ก.พ.?",
    "context": "CREATE TABLE table_name_99 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_18 WHERE score = \"85-102\"",
    "question_en": "Who played against the Celtics when the final game score was 85-102?",
    "question_th": "ใครเล่นกับเซลติกส์เมื่อสกอร์เกมสุดท้ายคือ 85-102?",
    "context": "CREATE TABLE table_name_18 (opponent VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_name_60 WHERE score = \"82-79\"",
    "question_en": "What game was the final score 82-79?",
    "question_th": "สุดท้ายเกมไหนสกอร์ 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_en": "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?",
    "question_th": "ค่าสูงสุดสำหรับเกมคือเมื่อคะแนนคือ 16 วันที่คือ 11 พฤศจิกายน 2551 และเมื่อผู้เข้าร่วมมากกว่า 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_en": "What is Date, when Points is 13, and when Location is RBC Center?",
    "question_th": "วันที่คือเมื่อใด คะแนนคือ 13 และเมื่อใด ตำแหน่งคือ 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_en": "What is Surface, when Score in Final is 3-6, 6-3, 6-2?",
    "question_th": "Surface คืออะไร เมื่อคะแนนในรอบชิงชนะเลิศคือ 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ández natalia zvereva\"",
    "question_en": "What is Championship, when Outcome is \"runner-up\", and when Opponents In Final is \"Gigi Fernández Natalia Zvereva\"?",
    "question_th": "การแข่งขันชิงแชมป์คืออะไร เมื่อผลลัพธ์คือ \"รองชนะเลิศ\" และเมื่อฝ่ายตรงข้ามในรอบชิงชนะเลิศคือ \"Gigi Fernández 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_en": "What is Opponents in Final, when Partner is \"Jill Hetherington\", and when Year is after 1988?",
    "question_th": "ฝ่ายตรงข้ามในรอบสุดท้ายคืออะไร เมื่อพันธมิตรคือ \"จิล เฮเธอริงตัน\" และเมื่อใดคือปีหลังปี 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ández robin white\"",
    "question_en": "What is Surface, when Opponents, when Final is \"Gigi Fernández Robin White\"?",
    "question_th": "Surface คืออะไรเมื่อฝ่ายตรงข้าม เมื่อรอบชิงชนะเลิศคือ \"Gigi Fernández 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_en": "What is Outcome, when Championship is Australian Open, and when Year is before 1994?",
    "question_th": "ผลลัพธ์คืออะไร เมื่อการแข่งขันชิงแชมป์คือ Australian Open และเมื่อใดคือปีก่อนปี 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_en": "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?",
    "question_th": "ผลรวมของปีเป็นเท่าใด เมื่อการแข่งขันชิงแชมป์คือ \"ออสเตรเลียนโอเพ่น\" เมื่อผลลัพธ์คือ \"รองชนะเลิศ\" และเมื่อคะแนนในรอบชิงชนะเลิศคือ 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_en": "What iwas the attendance of the game that took place on december 6, 1998?",
    "question_th": "การเข้าร่วมเกมที่เกิดขึ้นในวันที่ 6 ธันวาคม พ.ศ. 2541 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_41 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_25 WHERE week = 3",
    "question_en": "What was the date of week 3?",
    "question_th": "สัปดาห์ที่ 3 วันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_25 (date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_30 WHERE opponent = \"miami dolphins\"",
    "question_en": "On what date was the opponent the Miami Dolphins?",
    "question_th": "คู่ต่อสู้ของ Miami Dolphins คือวันไหน?",
    "context": "CREATE TABLE table_name_30 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT MAX(week) FROM table_name_78 WHERE attendance = \"bye\"",
    "question_en": "Which week was the team's bye week?",
    "question_th": "สัปดาห์ไหนเป็นสัปดาห์บายของทีม?",
    "context": "CREATE TABLE table_name_78 (week INTEGER, attendance VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_66 WHERE week = 13",
    "question_en": "What was the result of the week 13 game?",
    "question_th": "ผลการแข่งขันสัปดาห์ที่ 13 เป็นอย่างไร?",
    "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_en": "What is the range (varies by payload weight) for Shahab-4?",
    "question_th": "ช่วง (แตกต่างกันไปตามน้ำหนักบรรทุก) สำหรับ 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_en": "What is the range (varies by payload weight) for the unknown player?",
    "question_th": "ช่วง (แตกต่างกันไปตามน้ำหนักบรรทุก) สำหรับผู้เล่นที่ไม่รู้จักคืออะไร?",
    "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_en": "What is the payload for Class MRBM, and a range of 1,930km?",
    "question_th": "น้ำหนักบรรทุกของ Class MRBM เป็นเท่าใด และพิสัย 1,930 กม.",
    "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_en": "What is the name/designation for Operational Status and a range of 1,930km?",
    "question_th": "ชื่อ/การกำหนดสถานะการปฏิบัติงานและระยะ 1,930 กม. คืออะไร?",
    "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_en": "What is the name/designation for the under development status?",
    "question_th": "ชื่อ/การกำหนดสถานะสถานะอยู่ระหว่างการพัฒนาคืออะไร?",
    "context": "CREATE TABLE table_name_79 (name_designation VARCHAR, status VARCHAR)"
  },
  {
    "answer": "SELECT name_designation FROM table_name_81 WHERE payload = \"1200kg\"",
    "question_en": "What is the name/designation for the 1200kg payload?",
    "question_th": "ชื่อ/การกำหนดของน้ำหนักบรรทุก 1200 กก. คืออะไร",
    "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_en": "Which Venue has an Event of marathon, and a Year larger than 1995, and a Position of 4th?",
    "question_th": "สถานที่ใดที่มีการจัดงานวิ่งมาราธอน และหนึ่งปีที่ใหญ่กว่าปี 1995 และอันดับที่ 4",
    "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_en": "Which Position has an Event of 10,000 m, and a Competition of world championships, and a Year larger than 1993?",
    "question_th": "ตำแหน่งใดที่มีการแข่งขัน 10,000 ม. และการแข่งขันชิงแชมป์โลก และหนึ่งปีที่ใหญ่กว่าปี 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_en": "WHAT TEAM HAD A 28 PICK?",
    "question_th": "ทีมใดมี 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_en": "HOW MANY ROUNDS HAD A PICK OF 7?",
    "question_th": "มีกี่รอบให้เลือกจาก 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_en": "Which Grid has Laps smaller than 22, and a Bike of honda cbr1000rr, and a Rider of luca morelli?",
    "question_th": "กริดคนไหนที่มีรอบสนามน้อยกว่า 22 และมอเตอร์ไซค์ของฮอนด้า cbr1000rr และผู้ขับขี่ของ 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_en": "Which Grid has a Time of +13.999?",
    "question_th": "กริดใดมีเวลา +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_en": "Which Grid has a Rider of loic napoleone?",
    "question_th": "กริดคนไหนมีไรเดอร์ของโลอิก นโปเลียน?",
    "context": "CREATE TABLE table_name_14 (grid INTEGER, rider VARCHAR)"
  },
  {
    "answer": "SELECT callsign FROM table_name_67 WHERE on_air_id = \"4zr\"",
    "question_en": "What is 4zr's callsign?",
    "question_th": "สัญญาณเรียกขานของ 4zr คืออะไร?",
    "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_en": "What is the On-air ID of the broadcaster at frequency 0 801?",
    "question_th": "On-air ID ของผู้ออกอากาศที่ความถี่ 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_en": "4tab of commercial broadcaster Radio Tab broadcasts at what frequency?",
    "question_th": "4tab ของ Radio Tab สถานีวิทยุกระจายเสียงเชิงพาณิชย์ออกอากาศที่ความถี่อะไร?",
    "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_en": "What band does 4cca use?",
    "question_th": "4cca ใช้แบนด์อะไรครับ?",
    "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_en": "What is the On-air ID of FM broadcaster 4nsa?",
    "question_th": "ID On-air ของผู้ประกาศ FM 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_en": "The community station broadcasting at frequency 0 96.9 is in what band?",
    "question_th": "สถานีชุมชนที่ออกอากาศความถี่ 0 96.9 อยู่ในวงดนตรีใด?",
    "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_en": "What was the original name for the song performed by Brad Kavanagh?",
    "question_th": "เพลงที่ 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_en": "What is the original name of the song performed in Swedish?",
    "question_th": "ชื่อดั้งเดิมของเพลงที่แสดงในภาษาสวีเดนคืออะไร?",
    "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_en": "What was the original name of the Spanish song in Spain?",
    "question_th": "เพลงภาษาสเปนในภาษาสเปนมีชื่อดั้งเดิมว่าอะไร",
    "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_en": "What is the result for 1989 that has a 1992 result of 0 / 1?",
    "question_th": "ผลลัพธ์ของปี 1989 ที่มีผลปี 1992 เป็น 0/1 คืออะไร?",
    "context": "CREATE TABLE table_name_35 (Id VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_83 WHERE 1990 = \"0 / 4\"",
    "question_en": "For what tournament is the 1990 0 / 4?",
    "question_th": "สำหรับทัวร์นาเมนต์ใดคือ 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_en": "What is the 1988 result that has a 1994 result of A, and 3r as the 1987 result?",
    "question_th": "ผลลัพธ์ปี 1988 ที่มีผลปี 1994 เป็น A และ 3r เป็นผลลัพธ์ปี 1987 คืออะไร",
    "context": "CREATE TABLE table_name_19 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1989 FROM table_name_88 WHERE 1992 = \"a\" AND tournament = \"u.s. open\"",
    "question_en": "With a 1992 result of A, and at the U.S. Open Tournament, what is the 1989 result?",
    "question_th": "ด้วยผลการแข่งขัน A ในปี 1992 และในการแข่งขัน US Open Tournament ผลการแข่งขันในปี 1989 คืออะไร?",
    "context": "CREATE TABLE table_name_88 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 1994 FROM table_name_98 WHERE career_sr = \"0 / 3\"",
    "question_en": "What are the 1994 results with a career SR of 0 / 3?",
    "question_th": "ผลลัพธ์ปี 1994 ที่มี SR อาชีพเป็น 0/3 คืออะไร?",
    "context": "CREATE TABLE table_name_98 (career_sr VARCHAR)"
  },
  {
    "answer": "SELECT 1994 FROM table_name_45 WHERE tournament = \"sr\"",
    "question_en": "What result in 1994 has a SR as the tournament?",
    "question_th": "ผลลัพธ์อะไรในปี 1994 มี SR เป็นทัวร์นาเมนต์?",
    "context": "CREATE TABLE table_name_45 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT MAX(year) FROM table_name_68 WHERE position = \"3rd\"",
    "question_en": "What is the most recent year with a position of 3rd?",
    "question_th": "ล่าสุดครองอันดับ 3 คือปีไหน?",
    "context": "CREATE TABLE table_name_68 (year INTEGER, position VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_27 WHERE position = \"17th\"",
    "question_en": "What is the venue when the result was position of 17th?",
    "question_th": "สนามไหนเมื่อผลออกมาอยู่อันดับที่ 17?",
    "context": "CREATE TABLE table_name_27 (venue VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT MIN(total) FROM table_name_32 WHERE year_s__won = \"1977\"",
    "question_en": "What is the lowest total that has 1977 as the year (s) won?",
    "question_th": "ผลรวมต่ำสุดที่มีปี 1977 ชนะคืออะไร?",
    "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_en": "How many totals have andy north as the player?",
    "question_th": "แอนดี้ นอร์ท เป็นผู้เล่นทั้งหมดกี่คน?",
    "context": "CREATE TABLE table_name_96 (total INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_29 WHERE total = 302",
    "question_en": "What country has 302 as the total?",
    "question_th": "ประเทศใดมีทั้งหมด 302 แห่ง?",
    "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_en": "How much money does player ben crenshaw, who has a t4 place, have?",
    "question_th": "ผู้เล่น ben crenshaw ที่มีอันดับ t4 มีเงินเท่าไหร่?",
    "context": "CREATE TABLE table_name_36 (money___$__ VARCHAR, place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_33 WHERE player = \"curtis strange\"",
    "question_en": "What is the country of player curtis strange?",
    "question_th": "นักเตะเคอร์ติสประเทศอะไรแปลก?",
    "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_en": "What is the score of the United States, which has more than $24,542?",
    "question_th": "คะแนนของสหรัฐอเมริกาซึ่งมีมากกว่า $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_en": "What is the Margin, when Date is 19 July 2008 (Round 19)?",
    "question_th": "Margin คืออะไร เมื่อวันที่ 19 กรกฎาคม 2551 (รอบที่ 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_en": "What is the Winning Team, when Losing Team is South Sydney Rabbitohs?",
    "question_th": "ทีมที่ชนะคืออะไร เมื่อทีมที่แพ้คือ 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_en": "What is the Venue, when the Score is 56-4?",
    "question_th": "สนามไหนเมื่อสกอร์เป็น 56-4?",
    "context": "CREATE TABLE table_name_68 (venue VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT SUM(rank) FROM table_name_15 WHERE city = \"busan\"",
    "question_en": "What is Busan's rank?",
    "question_th": "ปูซานอยู่อันดับไหนคะ?",
    "context": "CREATE TABLE table_name_15 (rank INTEGER, city VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(population) FROM table_name_45 WHERE area__km²_ = 3 OFFSET 616",
    "question_en": "What is the total population for the 3,616km area?",
    "question_th": "พื้นที่ 3,616 กม. มีประชากรทั้งหมดเป็นเท่าใด",
    "context": "CREATE TABLE table_name_45 (population VARCHAR, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT order_of_succession FROM table_name_87 WHERE department = \"education\"",
    "question_en": "What was the order of succession for the department of education?",
    "question_th": "กระทรวงศึกษาธิการมีลำดับการสืบทอดอย่างไร?",
    "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_en": "What was the highest 2007 budget when the order of succession was 3?",
    "question_th": "งบประมาณปี 2550 สูงสุดเมื่อลำดับการสืบทอดคือ 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_en": "During what wicket were Mahela Jayawardene and Thilan Samaraweera batting partners?",
    "question_th": "ระหว่างประตูไหนที่ Mahela Jayawardene และ Thilan Samaraweera ตีคู่กัน?",
    "context": "CREATE TABLE table_name_56 (wicket VARCHAR, batting_partners VARCHAR)"
  },
  {
    "answer": "SELECT batting_team FROM table_name_55 WHERE venue = \"karachi\"",
    "question_en": "What batting team played in Karachi?",
    "question_th": "ทีมตีลูกใดเล่นในการาจี?",
    "context": "CREATE TABLE table_name_55 (batting_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT batting_team FROM table_name_84 WHERE runs = \"624\"",
    "question_en": "Which batting team had 624 runs?",
    "question_th": "ทีมตีบอลทีมไหนวิ่งได้ 624 ครั้ง?",
    "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_en": "What batting team played in Chittagong in 2003?",
    "question_th": "ทีมตีลูกใดเล่นในจิตตะกองในปี 2546?",
    "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_en": "Which fielding team had 1st wicket?",
    "question_th": "ทีมลงสนามใดได้ประตูที่ 1?",
    "context": "CREATE TABLE table_name_61 (fielding_team VARCHAR, wicket VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_23 WHERE batting_team = \"west indies\"",
    "question_en": "Where did the west indies batting team play at?",
    "question_th": "ทีมตีลูก West Indies เล่นที่ไหน?",
    "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_en": "What is the highest November date that has a game under 19 and opponents of the Minnesota North Stars?",
    "question_th": "วันที่สูงสุดในเดือนพฤศจิกายนที่มีเกมอายุต่ำกว่า 19 ปีและเป็นคู่ต่อสู้ของ 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_en": "What is the total number of games that led to a record of 12-4-2 after November 22?",
    "question_th": "จำนวนเกมทั้งหมดที่ทำสถิติ 12-4-2 หลังวันที่ 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_en": "What manufacturer made 6 and preserved 1?",
    "question_th": "ผู้ผลิตรายใดที่ผลิต 6 และเก็บรักษาไว้ 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_en": "How many did alco -schenectady preserve of class b-3?",
    "question_th": "Alco -schenectady รักษาคลาส 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_en": "What manufacturer made class b-2?",
    "question_th": "ผู้ผลิตรายใดที่ผลิตคลาส b-2",
    "context": "CREATE TABLE table_name_47 (manufacturer VARCHAR, class VARCHAR)"
  },
  {
    "answer": "SELECT time___gmt__ FROM table_name_66 WHERE serial = \"4a\"",
    "question_en": "What is the time (GMT) for the 4A Serial?",
    "question_th": "เวลา (GMT) สำหรับอนุกรม 4A คืออะไร?",
    "context": "CREATE TABLE table_name_66 (time___gmt__ VARCHAR, serial VARCHAR)"
  },
  {
    "answer": "SELECT time___gmt__ FROM table_name_9 WHERE serial = \"12a\"",
    "question_en": "What is the time (GMT) for the 12A Serial?",
    "question_th": "เวลา (GMT) สำหรับอนุกรม 12A คืออะไร?",
    "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_en": "What is the sum of the round of Fred Smoot, who has a pick number greater than 14?",
    "question_th": "ผลรวมรอบของ เฟรด สมูท ใครมีเลขเด็ดมากกว่า 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_en": "What position does the player from Mississippi state play?",
    "question_th": "ผู้เล่นจากรัฐมิสซิสซิปปี้เล่นตำแหน่งใด",
    "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_en": "What is the highest pick of the wr player with an overall less than 15?",
    "question_th": "ตัวเลือกสูงสุดของผู้เล่น wr ที่มีคะแนนรวมน้อยกว่า 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_en": "What Country scored 72-65-73=210?",
    "question_th": "ประเทศใดได้คะแนน 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_en": "What country has Dave Barr as a player?",
    "question_th": "Dave Barr เป็นผู้เล่นประเทศใด?",
    "context": "CREATE TABLE table_name_45 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_7 WHERE player = \"dave barr\"",
    "question_en": "In what place did Dave Barr score?",
    "question_th": "Dave Barr ทำคะแนนได้ที่ไหน?",
    "context": "CREATE TABLE table_name_7 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_58 WHERE player = \"raymond floyd\"",
    "question_en": "What was Raymond Floyd's score?",
    "question_th": "คะแนนของ Raymond Floyd คืออะไร?",
    "context": "CREATE TABLE table_name_58 (score VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_67 WHERE score = 70 - 68 - 70 = 208",
    "question_en": "What Country scored 70-68-70=208?",
    "question_th": "ประเทศใดได้คะแนน 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_en": "What was the record when the TKO (elbows) method was used?",
    "question_th": "บันทึกเมื่อใช้วิธีการ TKO (ข้อศอก) คืออะไร?",
    "context": "CREATE TABLE table_name_12 (record VARCHAR, method VARCHAR)"
  },
  {
    "answer": "SELECT iata FROM table_name_62 WHERE city = \"alexandria\"",
    "question_en": "What is IATA, when City is \"Alexandria\"?",
    "question_th": "IATA คืออะไร เมื่อเมืองคือ \"อเล็กซานเดรีย\"",
    "context": "CREATE TABLE table_name_62 (iata VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT airport FROM table_name_35 WHERE country = \"egypt\" AND icao = \"heba\"",
    "question_en": "What is Airport, when Country is \"Egypt\", and when ICAO is \"Heba\"?",
    "question_th": "สนามบินคืออะไร เมื่อประเทศคือ \"อียิปต์\" และเมื่อ ICAO คือ \"Heba\"",
    "context": "CREATE TABLE table_name_35 (airport VARCHAR, country VARCHAR, icao VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_58 WHERE country = \"kuwait\"",
    "question_en": "What is City, when Country is \"Kuwait\"?",
    "question_th": "เมืองคืออะไร เมื่อประเทศคือ \"คูเวต\"?",
    "context": "CREATE TABLE table_name_58 (city VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT iata FROM table_name_35 WHERE icao = \"hesh\"",
    "question_en": "What is IATA, when ICAO is \"Hesh\"?",
    "question_th": "IATA คืออะไร เมื่อ ICAO คือ \"Hesh\"",
    "context": "CREATE TABLE table_name_35 (iata VARCHAR, icao VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_89 WHERE icao = \"hesh\"",
    "question_en": "What is Country, when ICAO is \"Hesh\"?",
    "question_th": "ประเทศคืออะไร เมื่อ ICAO คือ \"เฮช\"",
    "context": "CREATE TABLE table_name_89 (country VARCHAR, icao VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_67 WHERE iata = \"amm\"",
    "question_en": "What is City, when IATA is \"amm\"?",
    "question_th": "เมืองคืออะไร เมื่อ IATA คือ \"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_en": "If Notre Dame had a pick larger than 5, what's the overall pick?",
    "question_th": "หาก Notre Dame มีตัวเลือกมากกว่า 5 ตัว ตัวเลือกโดยรวมจะเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_26 (overall INTEGER, college VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_92 WHERE pick < 5",
    "question_en": "Which college had a pick of under 5?",
    "question_th": "วิทยาลัยใดที่เลือกได้ต่ำกว่า 5 ปี",
    "context": "CREATE TABLE table_name_92 (college VARCHAR, pick INTEGER)"
  },
  {
    "answer": "SELECT pick FROM table_name_39 WHERE name = \"ralph shoaf\"",
    "question_en": "What was Ralph Shoaf's pick number?",
    "question_th": "หมายเลขที่เลือกของ Ralph Shoaf คืออะไร",
    "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_en": "What is Score, when Place is \"T9\", and when Player is \"Jeff Sluman\"?",
    "question_th": "คะแนนคืออะไร เมื่ออันดับคือ \"T9\" และเมื่อผู้เล่นคือ \"เจฟฟ์ สลูแมน\"",
    "context": "CREATE TABLE table_name_39 (score VARCHAR, place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_70 WHERE player = \"scott dunlap\"",
    "question_en": "What is Country, when Player is \"Scott Dunlap\"?",
    "question_th": "ประเทศคืออะไร เมื่อผู้เล่นคือ \"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_en": "What is To Par, when Country is \"United States\", when Place is \"T4\", and when Score is \"71-68=139\"?",
    "question_th": "To Par คืออะไร เมื่อประเทศคือ \"สหรัฐอเมริกา\" เมื่ออันดับคือ \"T4\" และเมื่อคะแนนคือ \"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_en": "What is Score, when Player is \"Jeff Maggert\"?",
    "question_th": "Score คืออะไร เมื่อผู้เล่นคือ \"Jeff Maggert\"?",
    "context": "CREATE TABLE table_name_76 (score VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_46 WHERE player = \"justin leonard\"",
    "question_en": "What is Place, when Player is \"Justin Leonard\"?",
    "question_th": "Place คืออะไร เมื่อผู้เล่นคือ \"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_en": "What is Score, when Place is \"T4\", and when Player is \"Scott Hoch\"?",
    "question_th": "คะแนนคืออะไร เมื่ออันดับคือ \"T4\" และเมื่อผู้เล่นคือ \"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_en": "Which Multiplier has a Front Side Bus of 200 mhz, and a Frequency of 1200 mhz?",
    "question_th": "ตัวคูณใดมี Front Side Bus 200 mhz และความถี่ 1200 mhz",
    "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_en": "Which Frequency has a Socket of socket 370, and a Model Number of c3 1.4a?",
    "question_th": "ความถี่ใดมีซ็อกเก็ตของซ็อกเก็ต 370 และหมายเลขรุ่น 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_en": "Which Frequency has a Model Number of c3 1.4a?",
    "question_th": "ความถี่ใดมีหมายเลขรุ่น 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_en": "Which L2-Cache has a Frequency of 1333 mhz, and a Model Number of c3 1.3a?",
    "question_th": "L2-Cache ใดมีความถี่ 1333 mhz และหมายเลขรุ่น 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_en": "Which Front Side Bus has a Voltage of 1.4 v, and a Frequency of 1333 mhz?",
    "question_th": "Front Side Bus ใดมีแรงดันไฟฟ้า 1.4 v และความถี่ 1333 mhz",
    "context": "CREATE TABLE table_name_58 (front_side_bus VARCHAR, voltage VARCHAR, frequency VARCHAR)"
  },
  {
    "answer": "SELECT frequency FROM table_name_7 WHERE multiplier = \"6×\"",
    "question_en": "Which Frequency has a Multiplier of 6×?",
    "question_th": "ความถี่ใดมีตัวคูณ 6×",
    "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_en": "Which Year has a Returned On of march 10, 2013?",
    "question_th": "ปีใดที่มีการส่งคืนในวันที่ 10 มีนาคม 2013",
    "context": "CREATE TABLE table_name_92 (year INTEGER, returned_on VARCHAR)"
  },
  {
    "answer": "SELECT ship FROM table_name_54 WHERE year > 2013",
    "question_en": "Which Ship has a Year larger than 2013?",
    "question_th": "เรือลำไหนมีปีใหญ่กว่าปี 2013?",
    "context": "CREATE TABLE table_name_54 (ship VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT MAX(year) FROM table_name_16 WHERE departed_from = \"tdb\"",
    "question_en": "When did TDB depart?",
    "question_th": "TDB ออกเดินทางเมื่อไหร่?",
    "context": "CREATE TABLE table_name_16 (year INTEGER, departed_from VARCHAR)"
  },
  {
    "answer": "SELECT returned_on FROM table_name_87 WHERE year = 2011",
    "question_en": "Which Returned On has a Year of 2011?",
    "question_th": "ซึ่ง Returned On มีปี 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_en": "From how many years did tampa, FL depart?",
    "question_th": "แทมปา ฟลอริดา ออกเดินทางตั้งแต่กี่ปี?",
    "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_en": "Can you tell me the sum of Laps that has the Manufacturer of kawasaki, and the Grid smaller than 7?",
    "question_th": "คุณช่วยบอกผลรวมของรอบที่มีผู้ผลิตคาวาซากิและกริดน้อยกว่า 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_en": "Can you tell me the sum of Grid that has the Laps of 30, and the Rider of toni elias?",
    "question_th": "คุณช่วยบอกผลรวมของกริดที่มีรอบ 30 และไรเดอร์ของโทนี่ เอเลียสหน่อยได้ไหม?",
    "context": "CREATE TABLE table_name_54 (grid INTEGER, laps VARCHAR, rider VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_52 WHERE opponent = \"bye\"",
    "question_en": "When was the opponent Bye?",
    "question_th": "เมื่อไหร่ฝ่ายตรงข้ามจะบาย?",
    "context": "CREATE TABLE table_name_52 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_55 WHERE week < 2",
    "question_en": "Which opponent was on week 2?",
    "question_th": "คู่ต่อสู้คนไหนในสัปดาห์ที่ 2?",
    "context": "CREATE TABLE table_name_55 (opponent VARCHAR, week INTEGER)"
  },
  {
    "answer": "SELECT former_team FROM table_name_72 WHERE pick > 20",
    "question_en": "Which Former Team has a Pick larger than 20?",
    "question_th": "อดีตทีมใดมีตัวเลือกมากกว่า 20?",
    "context": "CREATE TABLE table_name_72 (former_team VARCHAR, pick INTEGER)"
  },
  {
    "answer": "SELECT player FROM table_name_79 WHERE pick > 20",
    "question_en": "Which Player has a Pick larger than 20?",
    "question_th": "ผู้เล่นคนใดมีตัวเลือกมากกว่า 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_en": "Which Position has a Pick smaller than 14, and a Player of tyrone bogues?",
    "question_th": "ตำแหน่งใดที่มีการเลือกน้อยกว่า 14 และผู้เล่นของ 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_en": "Which Position has a Player of bernard thompson?",
    "question_th": "ตำแหน่งใดที่มีผู้เล่นของเบอร์นาร์ด ธอมป์สัน?",
    "context": "CREATE TABLE table_name_64 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_54 WHERE former_team = \"denver nuggets\"",
    "question_en": "Which Nationality has a Former Team of denver nuggets?",
    "question_th": "สัญชาติใดมีอดีตทีมนักเก็ตเดนเวอร์?",
    "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_en": "Which Player has a Pick larger than 2, and a Position of forward?",
    "question_th": "ผู้เล่นคนใดที่มีการเลือกมากกว่า 2 และตำแหน่งกองหน้า?",
    "context": "CREATE TABLE table_name_37 (player VARCHAR, pick VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_7 WHERE date = \"march 11\"",
    "question_en": "Which team did they play on March 11?",
    "question_th": "พวกเขาเล่นทีมไหนในวันที่ 11 มีนาคม?",
    "context": "CREATE TABLE table_name_7 (team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_name_62 WHERE team = \"denver\"",
    "question_en": "Who had the high rebounds, and how many, when they played Denver?",
    "question_th": "ใครมีการรีบาวด์สูง และกี่ครั้งเมื่อพวกเขาเล่นเดนเวอร์?",
    "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_en": "WHAT PICK HAD STEVE HAMILTON IN ROUND LARGER THAN 2?",
    "question_th": "STEVE HAMILTON เลือกอะไรในรอบที่ใหญ่กว่า 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_en": "WHAT WAS THE OVERALL NUMBER WITH A POSITON OF DB, AND ROUND GREATER THAN 8?",
    "question_th": "จำนวนรวมที่มีตำแหน่ง DB คืออะไร และปัดเศษมากกว่า 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_en": "What is chris jones' location?",
    "question_th": "คริส โจนส์ อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_77 (location VARCHAR, wrestler VARCHAR)"
  },
  {
    "answer": "SELECT wrestler FROM table_name_41 WHERE date = \"october 11, 2008\"",
    "question_en": "Who has a date of october 11, 2008?",
    "question_th": "ใครมีวันที่ 11 ตุลาคม 2551?",
    "context": "CREATE TABLE table_name_41 (wrestler VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(reign) FROM table_name_66 WHERE date = \"march 10, 2007\"",
    "question_en": "What's the highest reign on march 10, 2007?",
    "question_th": "รัชกาลสูงสุดในวันที่ 10 มีนาคม พ.ศ. 2550 คือสมัยใด",
    "context": "CREATE TABLE table_name_66 (reign INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_73 WHERE goal = 8",
    "question_en": "What was the competition for goal 8?",
    "question_th": "การแข่งขันสำหรับประตู 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_en": "Which venue had more than 9 goals and a final result of 4-1?",
    "question_th": "สนามไหนเสียมากกว่า 9 ประตู และผลสุดท้าย 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_en": "What was the record for game 59?",
    "question_th": "สถิติของเกม 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_en": "How much was paid to Andy North when he placed t10?",
    "question_th": "Andy North จ่ายเงินเท่าไหร่เมื่อเขาได้ 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_en": "Where did Calvin Peete of the United States place?",
    "question_th": "Calvin Peete จากสหรัฐอเมริกาอยู่ที่ไหน",
    "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–1951\"",
    "question_en": "What is the number of goals when the position is DF, the nationality is England, and the Crewe Alexandra career is 1948–1951?",
    "question_th": "จำนวนประตูเมื่อตำแหน่งคือ DF, สัญชาติคืออังกฤษ และอาชีพของครูว์ อเล็กซานดราคือเท่าใดในปี 1948–1951?",
    "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–1990\" AND goals = 31",
    "question_en": "What is the position when the Crewe Alexandra career is 1988–1990, with 31 goals?",
    "question_th": "ตำแหน่งอะไรในอาชีพครูว์ อเล็กซานดรา ในฤดูกาล 1988–1990 โดยทำได้ 31 ประตู?",
    "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–1962\" AND appearances < 170",
    "question_en": "What is the total number of Goals with a nationality of England, and position of DF, and a Crewe Alexandra career is 1958–1962, and less than 170 appearances?",
    "question_th": "จำนวนประตูทั้งหมดที่มีสัญชาติอังกฤษ และตำแหน่งของ DF และอาชีพของครูว์ อเล็กซานดราคือเท่าไรคือระหว่างปี 1958–1962 และลงเล่นน้อยกว่า 170 นัด?",
    "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_en": "what is the score when the date is february 3?",
    "question_th": "วันที่ 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_en": "what is the game when the opponent is new york knickerbockers?",
    "question_th": "เกมจะเป็นเช่นไรเมื่อคู่ต่อสู้คือกางเกงชั้นในนิวยอร์ก?",
    "context": "CREATE TABLE table_name_96 (game INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_84 WHERE date = \"february 18\"",
    "question_en": "what is the score on february 18?",
    "question_th": "คะแนนวันที่ 18 กุมภาพันธ์เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_84 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT SUM(game) FROM table_name_87 WHERE opponent = \"@ chicago stags\"",
    "question_en": "what is the game when the opponent is @ chicago stags?",
    "question_th": "เกมคืออะไรเมื่อคู่ต่อสู้คือ @ Chicago stags?",
    "context": "CREATE TABLE table_name_87 (game INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_76 WHERE date = \"february 16\"",
    "question_en": "what is the score on february 16?",
    "question_th": "คะแนนวันที่ 16 กุมภาพันธ์เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_76 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(laps) FROM table_name_31 WHERE time = \"+56.977\"",
    "question_en": "Total number of laps at a time of +56.977?",
    "question_th": "จำนวนรอบทั้งหมดต่อครั้ง +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_en": "What is Release Date, when Format is CD, and when Title is Tsar Wars?",
    "question_th": "วันที่วางจำหน่ายคือเมื่อใด รูปแบบเป็นซีดี และเมื่อใดชื่อคือ 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_en": "What is Title, when Doctor is 06 Sixth Doctor, and when Company is Big Finish?",
    "question_th": "ชื่อคืออะไร เมื่อ Doctor คือ 06 Sixth Doctor และเมื่อบริษัท 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_en": "What is Doctor, when Format is CD, and when Title is The Relics Of Time?",
    "question_th": "Doctor คืออะไร เมื่อรูปแบบเป็นซีดี และเมื่อหัวข้อคือ 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_en": "What is Release Date, when Title is Aladdin Time?",
    "question_th": "วันที่วางจำหน่ายคือเมื่อใด ชื่อคือ 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_en": "What is Title, when Release Date is 2011-12-01 December 2011?",
    "question_th": "ชื่อคืออะไร เมื่อวันวางจำหน่ายคือ 2011-12-01 ธันวาคม 2554",
    "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_en": "What is the lowest Share, when Rating is greater than 1.3, and when Air Date is May 28, 2008?",
    "question_th": "Share ต่ำสุดคือเท่าไร เมื่อ Rating มากกว่า 1.3 และเมื่อออกอากาศคือวันที่ 28 พฤษภาคม 2551",
    "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_en": "What is the total number of Rating(s), when Air Date is June 25, 2008, and when Share is greater than 3?",
    "question_th": "จำนวนเรตติ้งทั้งหมดเมื่อออกอากาศคือวันที่ 25 มิถุนายน 2551 และเมื่อ Share มากกว่า 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_en": "What is the total number of Rating(s), when Weekly Rank is 76/88?",
    "question_th": "จำนวนเรตติ้งทั้งหมดคือเท่าไร เมื่ออันดับรายสัปดาห์คือ 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_en": "How many times did the team with an average start of 18.9 make the top 10?",
    "question_th": "ทีมที่มีคะแนนเริ่มต้นเฉลี่ย 18.9 ติดท็อป 10 กี่ครั้ง?",
    "context": "CREATE TABLE table_name_82 (top_10 INTEGER, avg_start VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_11 WHERE week = 13",
    "question_en": "What was the attendance of the game in week 13?",
    "question_th": "การเข้าร่วมเกมในสัปดาห์ที่ 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_en": "When did Sydney Barnes debut in England?",
    "question_th": "ซิดนีย์ บาร์นส์ เปิดตัวครั้งแรกในอังกฤษเมื่อใด",
    "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_en": "What is the sum of points with more than 5 losses and more than 14 played?",
    "question_th": "ผลรวมของแต้มที่แพ้มากกว่า 5 ครั้ง และเล่นมากกว่า 14 ครั้งเป็นเท่าใด?",
    "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_en": "Which name was in a position less than 4 with 2 losses?",
    "question_th": "ชื่อไหนอยู่ในตำแหน่งน้อยกว่า 4 แพ้ 2?",
    "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_en": "Which name has more than 14 points with less than 1 draw?",
    "question_th": "ชื่อไหนได้เกิน 14 แต้ม ไม่เกิน 1 เสมอ?",
    "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_en": "What is the largest number played with 16 points in a position over 4?",
    "question_th": "หมายเลขใดที่มากที่สุดที่เล่นโดยมี 16 แต้มในตำแหน่งที่มากกว่า 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_en": "What is the lowest heat for the United states with a mark of 51.85 pb and lane higher than 6?",
    "question_th": "ความร้อนต่ำสุดสำหรับสหรัฐอเมริกาที่มีเครื่องหมาย 51.85 pb และเลนสูงกว่า 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_en": "What is the average lane racheal nachula has when the heat is less than 2?",
    "question_th": "ราเชล นาชูลามีเลนเฉลี่ยเป็นเท่าใดเมื่อความร้อนน้อยกว่า 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_en": "What is the average heat that has 52.83 sb mark and lane less than 4?",
    "question_th": "ความร้อนเฉลี่ยที่มีเครื่องหมาย 52.83 sb และเลนน้อยกว่า 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_en": "What is Record, when November is less than 10, and when Game is less than 13?",
    "question_th": "Record คืออะไร เมื่อเดือนพฤศจิกายนน้อยกว่า 10 และเมื่อ Game น้อยกว่า 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 = \"-ø\"",
    "question_en": "What example for did- is shown for a Consonant final stem of -ø?",
    "question_th": "ตัวอย่างใดของ Did- ที่แสดงสำหรับก้านสุดท้ายของพยัญชนะ -ø?",
    "context": "CREATE TABLE table_name_84 (example VARCHAR, consonant_final_stem VARCHAR)"
  },
  {
    "answer": "SELECT stadium FROM table_name_41 WHERE opponent = \"bye\"",
    "question_en": "What was the Stadium against Bye?",
    "question_th": "สนามแข่งกับบายคืออะไร?",
    "context": "CREATE TABLE table_name_41 (stadium VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_98 WHERE date = \"november 26\"",
    "question_en": "What was the Attendance on November 26?",
    "question_th": "ผู้เข้าร่วมในวันที่ 26 พฤศจิกายนคืออะไร?",
    "context": "CREATE TABLE table_name_98 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MIN(week) FROM table_name_12 WHERE date = \"december 17\"",
    "question_en": "What was the Week on December 17?",
    "question_th": "สัปดาห์ที่ 17 ธันวาคมคืออะไร?",
    "context": "CREATE TABLE table_name_12 (week INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_21 WHERE date = \"september 24\"",
    "question_en": "What was the Result on September 24?",
    "question_th": "ผลลัพธ์ในวันที่ 24 กันยายนเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_21 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT stadium FROM table_name_25 WHERE result = \"w 20–16\"",
    "question_en": "What Stadium had a Result of w 20–16?",
    "question_th": "สนามใดมีผลการแข่งขัน w 20–16?",
    "context": "CREATE TABLE table_name_25 (stadium VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_53 WHERE round = 11 AND pick = 14",
    "question_en": "Which College has a Round of 11, and a Pick of 14?",
    "question_th": "วิทยาลัยใดมีรอบ 11 ทีมและเลือกได้ 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_en": "Which Name has a Round smaller than 11, and a Pick of 13?",
    "question_th": "ชื่อใดมีรอบที่เล็กกว่า 11 และเลือกได้ 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_en": "Which Overall has a Round larger than 7, a Pick larger than 13, and a Name of tony hall?",
    "question_th": "ซึ่งโดยรวมมีรอบที่ใหญ่กว่า 7, ตัวเลือกที่มากกว่า 13 และชื่อของโทนี่ ฮอลล์",
    "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_en": "Which College has a Round of 11, and a Position of wr?",
    "question_th": "วิทยาลัยใดมีรอบ 11 ทีมและมีตำแหน่ง wr?",
    "context": "CREATE TABLE table_name_42 (college VARCHAR, round VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT music FROM table_name_6 WHERE style = \"samba\"",
    "question_en": "WHAT IS THE MUSIC WITH SAMBA?",
    "question_th": "เพลงของ 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_en": "What is the hometown of Devon Bookert who is 6-3 tall?",
    "question_th": "บ้านเกิดของ Devon Bookert สูง 6-3 คืออะไร?",
    "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_en": "What is raymond floyd's lowest $?",
    "question_th": "$ ต่ำสุดของ raymond floyd คืออะไร?",
    "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_en": "Which Player has a Score of 67-72-71-75=285?",
    "question_th": "ผู้เล่นคนไหนมีคะแนน 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 = \"–1\" AND score = 73 - 70 - 73 - 71 = 287",
    "question_en": "Which money is the highest one that has a To par of –1, and a Score of 73-70-73-71=287?",
    "question_th": "เงินใดคือเงินสูงสุดที่มีพาร์ถึง –1 และมีคะแนน 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_en": "Which To par has a Score of 67-72-71-75=285?",
    "question_th": "พาร์ใดมีคะแนน 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_en": "What was Spain's score?",
    "question_th": "สเปนได้สกอร์เท่าไหร่?",
    "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_en": "Which country is Jay Haas from when he had a to par of E?",
    "question_th": "Jay Haas มาจากประเทศใดเมื่อเขามีคะแนนเท่ากับ 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_en": "Which country had a score of 72-67=139?",
    "question_th": "ประเทศใดมีคะแนน 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_en": "Which player was from England with a to par of +1?",
    "question_th": "นักเตะคนไหนที่มาจากอังกฤษและมีพาร์ถึง +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_en": "What was the to par when the score was 69-69=138?",
    "question_th": "เมื่อสกอร์เป็น 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_en": "What was the to par when South Africa was in T4 place?",
    "question_th": "อะไรคือสิ่งที่จะได้เสมอเมื่อแอฟริกาใต้อยู่ในอันดับ T4?",
    "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_en": "What is Location, when Result is 28-21?",
    "question_th": "ตำแหน่งคืออะไร เมื่อผลลัพธ์คือ 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_en": "What is Date, when Location is Polo Grounds, when Winner is Philadelphia Eagles, and when Year is 1948?",
    "question_th": "วันที่คือเมื่อใด ตำแหน่งคือ Polo Grounds เมื่อผู้ชนะคือ Philadelphia Eagles และเมื่อใดคือปี 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_en": "What is Year, when Location is Philadelphia Municipal Stadium?",
    "question_th": "คือปีไหน ที่ตั้งคือ 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_en": "What is Winner, when Location is Connie Mack Stadium, and when Year is 1946?",
    "question_th": "วินเนอร์คืออะไร เมื่อสถานที่คือ Connie Mack Stadium และเมื่อใดคือปี 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_en": "What is Date, when Result is 16-0?",
    "question_th": "วันที่คืออะไร เมื่อผลลัพธ์คือ 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_en": "What is Result, when Year is 1948, and when Date is November 7?",
    "question_th": "ผลลัพธ์คืออะไร เมื่อปีคือ 1948 และเมื่อใดคือวันที่ 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_en": "Who did the Rangers play in a game that was later than 72 when the team record was 39-27-9?",
    "question_th": "เรนเจอร์สเล่นใครในเกมที่ช้ากว่า 72 เมื่อสถิติทีมอยู่ที่ 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_en": "What was the score at the game earlier than 66?",
    "question_th": "สกอร์ในเกมก่อนปี 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_en": "What's the largest number of Gold medals won when bronze won are 2 and total won are over 7 by Hungary?",
    "question_th": "อะไรคือจำนวนเหรียญทองที่มากที่สุดที่ได้รับเมื่อเหรียญทองแดงได้ 2 และฮังการีได้ทั้งหมดมากกว่า 7 เหรียญ?",
    "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_en": "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.",
    "question_th": "จำนวนเงินเฉลี่ยของเหรียญทองที่ได้รับเมื่อชนะมากกว่า 1 เหรียญเงินและน้อยกว่า 2 เหรียญทองแดงคือเท่าใด",
    "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_en": "With a gain of 1,380, what is the highest Avg/G?",
    "question_th": "ด้วยกำไรที่เพิ่มขึ้น 1,380 ค่า 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_en": "When Thomas Clayton had a gain less than 71, what was the highest long value?",
    "question_th": "เมื่อ Thomas Clayton มีกำไรน้อยกว่า 71 ค่า long สูงสุดคือเท่าใด",
    "context": "CREATE TABLE table_name_40 (long INTEGER, name VARCHAR, gain VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_90 WHERE opponent = \"inter milan\"",
    "question_en": "What is the date of the game where Inter Milan was the opponent.",
    "question_th": "วันที่เกมที่อินเตอร์มิลานเป็นคู่ต่อสู้คือวันที่เท่าไร",
    "context": "CREATE TABLE table_name_90 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT MAX(lane) FROM table_name_83 WHERE country = \"ireland\"",
    "question_en": "What is the most lanes used that had a winner from Ireland?",
    "question_th": "เลนใดที่ใช้มากที่สุดที่มีผู้ชนะจากไอร์แลนด์?",
    "context": "CREATE TABLE table_name_83 (lane INTEGER, country VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(lane) FROM table_name_75 WHERE country = \"austria\"",
    "question_en": "What is the total number of lanes used for races with winners from Austria?",
    "question_th": "จำนวนเลนทั้งหมดที่ใช้ในการแข่งขันกับผู้ชนะจากออสเตรียคือเท่าใด",
    "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_en": "What is the most lanes used in races with more than 1 heat and a winning mark of 7.25?",
    "question_th": "เลนใดที่ใช้มากที่สุดในการแข่งขันที่มีมากกว่า 1 ฮีตและมีคะแนนชนะ 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_en": "What is the mark set by Laura Turner?",
    "question_th": "ลอร่า เทิร์นเนอร์ กำหนดไว้ว่าอะไร?",
    "context": "CREATE TABLE table_name_65 (mark VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_52 WHERE player = \"john mahaffey\"",
    "question_en": "What score did John Mahaffey have?",
    "question_th": "จอห์น มาฮาฟฟีย์ ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_52 (score VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_38 WHERE score = 72 - 72 - 67 = 211",
    "question_en": "What was the nationality of the player with a score of 72-72-67=211?",
    "question_th": "นักเตะสัญชาติอะไรที่มีคะแนน 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_en": "What place did Keith Clearwater get?",
    "question_th": "Keith Clearwater ได้ตำแหน่งอะไร?",
    "context": "CREATE TABLE table_name_99 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_18 WHERE ground = \"football park\"",
    "question_en": "Who was the away team at the Football Park match?",
    "question_th": "ทีมเยือนนัดฟุตบอลปาร์คคือใคร?",
    "context": "CREATE TABLE table_name_18 (away_team VARCHAR, ground VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_58 WHERE player = \"jerry butler\"",
    "question_en": "In which round was Jerry Butler chosen?",
    "question_th": "เจอร์รี บัตเลอร์ ถูกเลือกในรอบไหน?",
    "context": "CREATE TABLE table_name_58 (round VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT results FROM table_name_1 WHERE style = \"contemporary jazz\"",
    "question_en": "What was the result of the dance which had a style of contemporary jazz?",
    "question_th": "ผลของการเต้นรำที่มีสไตล์ดนตรีแจ๊สร่วมสมัยเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_1 (results VARCHAR, style VARCHAR)"
  },
  {
    "answer": "SELECT SUM(pick__number) FROM table_name_69 WHERE cfl_team = \"edmonton\"",
    "question_en": "Can you tell me the sum of the Pick # that has the CFL Team of edmonton?",
    "question_th": "คุณช่วยบอกผลรวมของ Pick # ที่มีทีม CFL ของ 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_en": "Can you tell me the sum of Pick # that has the Position of sb, and the College of minnesota?",
    "question_th": "คุณช่วยบอกผลรวมของ Pick # ที่มีตำแหน่ง sb และ 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_en": "Can you tell me the Position that has the CFL Team of toronto?",
    "question_th": "คุณช่วยบอกตำแหน่งที่มีทีม CFL ของโตรอนโตหน่อยได้ไหม?",
    "context": "CREATE TABLE table_name_31 (position VARCHAR, cfl_team VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_name_62 WHERE democratic = \"glenn nye\"",
    "question_en": "What is the name of the incumbent for Glenn Nye?",
    "question_th": "ผู้ดำรงตำแหน่ง 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_en": "Who was the other party nominee that ran against Democratic Rick Boucher?",
    "question_th": "ใครคือผู้ได้รับการเสนอชื่อจากพรรคอื่นที่ลงแข่งกับพรรคเดโมแครต 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_en": "Who is the other party nominee for district 3?",
    "question_th": "ใครคือผู้ได้รับการเสนอชื่อจากพรรคอื่นในเขต 3?",
    "context": "CREATE TABLE table_name_35 (other_party VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT ground FROM table_name_1 WHERE home_team = \"sydney\"",
    "question_en": "The Home team of Sydney had which ground?",
    "question_th": "ทีมเหย้าของซิดนีย์มีจุดยืนด้านใด?",
    "context": "CREATE TABLE table_name_1 (ground VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT SUM(crowd) FROM table_name_56 WHERE away_team = \"kangaroos\"",
    "question_en": "What were the Away team Kangaroos Crowd totals?",
    "question_th": "Kangaroos Crowd ของทีมเยือนมีคะแนนรวมเท่าไร?",
    "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_en": "When the Ground was Optus Oval, what is the Home team score?",
    "question_th": "เมื่อสนามเป็นออพตัสโอวัล สกอร์ทีมเจ้าบ้านเท่าไหร่?",
    "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_en": "what is the tournament when the court surface is clay and began in 1892?",
    "question_th": "การแข่งขันจะเป็นอย่างไรเมื่อพื้นผิวสนามเป็นดินเหนียวและเริ่มในปี 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_en": "what is the location when began is before 1990 and the country is france?",
    "question_th": "สถานที่เมื่อเริ่มก่อนปี 1990 และประเทศฝรั่งเศสคือที่ไหน?",
    "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_en": "what is the court surface when the tournament is paris masters?",
    "question_th": "พื้นผิวสนามเมื่อทัวร์นาเมนต์คือ 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_en": "what is the tournament when the country is united states?",
    "question_th": "การแข่งขันจะเป็นเช่นไรเมื่อประเทศเป็นสหรัฐอเมริกา?",
    "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_en": "what is the earliest began when the court surface is clay in hamburg?",
    "question_th": "อะไรเกิดขึ้นเร็วที่สุดเมื่อพื้นผิวสนามเป็นดินเหนียวในฮัมบูร์ก?",
    "context": "CREATE TABLE table_name_21 (began INTEGER, court_surface VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_6 WHERE place = \"t5\"",
    "question_en": "Which country placed t5?",
    "question_th": "ประเทศไหนวาง t5?",
    "context": "CREATE TABLE table_name_6 (country VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_83 WHERE player = \"tim herron\"",
    "question_en": "How did Tim Herron place?",
    "question_th": "Tim Herron วางตำแหน่งอย่างไร?",
    "context": "CREATE TABLE table_name_83 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_72 WHERE place = \"t10\"",
    "question_en": "Which player placed t10?",
    "question_th": "ผู้เล่นคนไหนวาง T10?",
    "context": "CREATE TABLE table_name_72 (player VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_5 WHERE opponent = \"takaharu murahama\"",
    "question_en": "At what event did he fight takaharu murahama?",
    "question_th": "เขาสู้กับทาคาฮารุ มุราฮามะ ในเหตุการณ์ไหน?",
    "context": "CREATE TABLE table_name_5 (event VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT method FROM table_name_12 WHERE time = \"2:16\"",
    "question_en": "When the match lasted 2:16 how was it decided?",
    "question_th": "เมื่อการแข่งขันกินเวลา 2:16 น. ตัดสินอย่างไร?",
    "context": "CREATE TABLE table_name_12 (method VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT MAX(urban_population__2010_) FROM table_name_83 WHERE province = \"guangxi\"",
    "question_en": "What is the highest urban population for Guangxi province?",
    "question_th": "ประชากรในเมืองของมณฑลกวางสีสูงสุดคือเมืองใด",
    "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_en": "What is the urban population for the city of Fuzhou?",
    "question_th": "ประชากรในเมืองของเมืองฝูโจวคือเท่าไร?",
    "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_en": "What is the area (in km2) for theewaterskloof, whose population in 2011 was less than 108,790?",
    "question_th": "พื้นที่ (ในหน่วย km2) ของ waterskloof ซึ่งมีประชากรในปี 2554 น้อยกว่า 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_en": "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?",
    "question_th": "พื้นที่ในหน่วย km2 ของ Cape Agulhas คือเท่าใด ซึ่งมีความหนาแน่นมากกว่า 9.4 คน/km2 และประชากรในปี 2554 น้อยกว่า 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_en": "What was the score when the opponent was Montreal Canadiens?",
    "question_th": "เมื่อคู่ต่อสู้คือมอนทรีออลชาวแคนาดาสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_8 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_40 WHERE december = 3",
    "question_en": "What was the record on December 3?",
    "question_th": "บันทึกเมื่อวันที่ 3 ธันวาคมคืออะไร?",
    "context": "CREATE TABLE table_name_40 (record VARCHAR, december VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_94 WHERE game = 27",
    "question_en": "Who was the opponent in Game 27?",
    "question_th": "คู่ต่อสู้ในเกมที่ 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_en": "Who was the opponent on December 1, before Game 28?",
    "question_th": "คู่ต่อสู้ในวันที่ 1 ธันวาคมก่อนเกมที่ 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_en": "What's the population of durham parish?",
    "question_th": "ตำบลเดอรัมมีประชากรกี่คน",
    "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_en": "What's the total area in kilometers of the parish addington?",
    "question_th": "พื้นที่รวมของตำบลแอดทันเป็นกี่กิโลเมตร?",
    "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_en": "Which Studio has a Director of oliver stone?",
    "question_th": "สตูดิโอไหนมี Director ของ Oliver Stone บ้าง?",
    "context": "CREATE TABLE table_name_97 (studio VARCHAR, director VARCHAR)"
  },
  {
    "answer": "SELECT director FROM table_name_22 WHERE rank = 12",
    "question_en": "Which Director has a Rank of 12?",
    "question_th": "ผู้กำกับคนไหนมีอันดับ 12?",
    "context": "CREATE TABLE table_name_22 (director VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT gross FROM table_name_25 WHERE studio = \"mgm\"",
    "question_en": "Which Gross has a Studio of mgm?",
    "question_th": "Gross คนไหนมี Studio ของ mgm บ้างคะ?",
    "context": "CREATE TABLE table_name_25 (gross VARCHAR, studio VARCHAR)"
  },
  {
    "answer": "SELECT builder FROM table_name_92 WHERE works_number = \"323\"",
    "question_en": "Who was the Builder for the locomotive that has a works number of 323?",
    "question_th": "ใครคือผู้สร้างหัวรถจักรที่มีผลงานหมายเลข 323?",
    "context": "CREATE TABLE table_name_92 (builder VARCHAR, works_number VARCHAR)"
  },
  {
    "answer": "SELECT side FROM table_name_25 WHERE inscription = \"vischer\"",
    "question_en": "Which side has Vischer as the inscription?",
    "question_th": "ฝ่ายใดมี Vischer เป็นจารึก?",
    "context": "CREATE TABLE table_name_25 (side VARCHAR, inscription VARCHAR)"
  },
  {
    "answer": "SELECT inscription FROM table_name_26 WHERE identification = \"john vanbrugh\"",
    "question_en": "What is the inscription with John Vanbrugh listed as the identification?",
    "question_th": "คำจารึกที่ John Vanbrugh ระบุว่าเป็นบัตรประจำตัวคืออะไร",
    "context": "CREATE TABLE table_name_26 (inscription VARCHAR, identification VARCHAR)"
  },
  {
    "answer": "SELECT side FROM table_name_89 WHERE inscription = \"orcagna\"",
    "question_en": "Which side has Orcagna as the inscription?",
    "question_th": "ฝ่ายใดมีอักษร Orcagna เป็นอักษร?",
    "context": "CREATE TABLE table_name_89 (side VARCHAR, inscription VARCHAR)"
  },
  {
    "answer": "SELECT group FROM table_name_91 WHERE official_history = \"david d'angers\"",
    "question_en": "Which group has David D'Angers as the official history?",
    "question_th": "กลุ่มใดที่มี David D'Angers เป็นประวัติศาสตร์อย่างเป็นทางการ?",
    "context": "CREATE TABLE table_name_91 (group VARCHAR, official_history VARCHAR)"
  },
  {
    "answer": "SELECT inscription FROM table_name_57 WHERE identification = \"virgil\"",
    "question_en": "What is the name of the inscription where Virgil is listed as the identification?",
    "question_th": "คำจารึกที่เวอร์จิลระบุเป็นชื่อประจำตัวคืออะไร?",
    "context": "CREATE TABLE table_name_57 (inscription VARCHAR, identification VARCHAR)"
  },
  {
    "answer": "SELECT side FROM table_name_74 WHERE identification = \"ludovico carracci\"",
    "question_en": "Which side has Ludovico Carracci listed as the identification?",
    "question_th": "ลูโดวิโก้ การ์รัคชี่ ระบุตัวตนฝ่ายใด?",
    "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_en": "What is the sum number of round with Nebraska as the college and the overall greater than 40?",
    "question_th": "ผลรวมของรอบที่มีเนบราสก้าเป็นวิทยาลัยและผลรวมมากกว่า 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_en": "What is the minimum pick that drafted Pat Shires, with a round greater than 29 and an overall greater than 328?",
    "question_th": "การเลือกขั้นต่ำที่ร่าง Pat Shires โดยรอบที่มากกว่า 29 และคะแนนรวมมากกว่า 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_en": "Where did Celestino Tugot place?",
    "question_th": "Celestino Tugot อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_43 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_1 WHERE player = \"doug ford\"",
    "question_en": "What is Doug Ford's country?",
    "question_th": "ประเทศของดั๊ก ฟอร์ดคืออะไร?",
    "context": "CREATE TABLE table_name_1 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_45 WHERE player = \"ben hogan\"",
    "question_en": "What was Ben Hogan's par?",
    "question_th": "พาร์ของ Ben Hogan คืออะไร?",
    "context": "CREATE TABLE table_name_45 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_10 WHERE player = \"tommy bolt\"",
    "question_en": "What is Tommy Bolt's place?",
    "question_th": "สถานที่ของทอมมี่ โบลต์อยู่ที่ไหน?",
    "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_en": "What place had a score smaller than 74 and a par of e?",
    "question_th": "สถานที่ใดมีคะแนนน้อยกว่า 74 และพาร์ของ 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_en": "What was the time/retired for the car raced by Simone Grotzkyj?",
    "question_th": "เวลาเท่าไร/เกษียณแล้วสำหรับรถที่ 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_en": "Who was the manufacter of the car with a time/retired of +0.122?",
    "question_th": "ใครคือผู้ผลิตรถยนต์ที่มีเวลา/เกษียณ +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_en": "Who is the manufacturer of the car driven by Bradley Smith?",
    "question_th": "ใครคือผู้ผลิตรถยนต์ที่ขับโดย Bradley Smith",
    "context": "CREATE TABLE table_name_91 (manufacturer VARCHAR, rider VARCHAR)"
  },
  {
    "answer": "SELECT rider FROM table_name_18 WHERE grid = \"14\"",
    "question_en": "Who is the driver of the car that started in grid 14?",
    "question_th": "ใครคือคนขับรถที่ออกสตาร์ทในกริด 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_en": "Who is the driver of the car manufactured by ktm, who started in grid 1.",
    "question_th": "ใครคือคนขับรถที่ผลิตโดย ktm ซึ่งออกสตาร์ทในตารางที่ 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_en": "What was the time/retired of the car that started in grid 4?",
    "question_th": "รถที่ออกสตาร์ทในกริด 4 มีอายุการใช้งาน/เกษียณเมื่อใด",
    "context": "CREATE TABLE table_name_41 (time_retired VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_81 WHERE country = \"spain\"",
    "question_en": "What is the To par of the Player from Spain?",
    "question_th": "To par ของผู้เล่นจากสเปนคืออะไร?",
    "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_en": "What is the Money of the T4 Place Player with a Score of 71-66-74-67=278?",
    "question_th": "เงินของผู้เล่นอันดับ T4 ที่มีคะแนน 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_en": "What is the Money of the Player with a Score of 71-66-74-67=278?",
    "question_th": "เงินของผู้เล่นที่มีคะแนน 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_en": "What is the IUCN for the gales point reserve when the Est. is 1998?",
    "question_th": "IUCN คืออะไร สำหรับจุดพายุสงวนเมื่อประมาณการณ์ ปี 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_en": "What is the IUCN for the Cockscomb Basin reserve when the Est. is less than 1998?",
    "question_th": "IUCN สำหรับพื้นที่สงวน Cockscomb Basin คืออะไร เมื่อประมาณการณ์ น้อยกว่าปี 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_en": "What is the total number of Game, when High Assists is \"Rajon Rondo (6)\"?",
    "question_th": "จำนวนเกมทั้งหมดเป็นเท่าใด เมื่อ High Assists คือ \"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_en": "What is Record, when High Points is \"Ray Allen (20)\"?",
    "question_th": "Record คืออะไร เมื่อ High Points คือ \"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_en": "What is Record, when High Points is \"Ray Allen (27)\"?",
    "question_th": "Record คืออะไร เมื่อ High Points คือ \"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_en": "What is Team, when Date is \"March 27\"?",
    "question_th": "ทีมคืออะไร เมื่อวันที่คือ \"27 มีนาคม\"?",
    "context": "CREATE TABLE table_name_75 (team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_name_38 WHERE team = \"oklahoma city\"",
    "question_en": "What is High Assists, when Team is \"Oklahoma City\"?",
    "question_th": "High Assists คืออะไร เมื่อทีมคือ \"โอคลาโฮมาซิตี้\"?",
    "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_en": "What is Score, when High Assists is \"Rajon Rondo (12)\", and when High Points is \"Paul Pierce (27)\"?",
    "question_th": "คะแนนคืออะไร เมื่อ High Assist คือ \"Rajon Rondo (12)\" และเมื่อคะแนนสูงคือ \"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êla\"",
    "question_en": "WHICH 2/3 (P) has a Verb of khêla?",
    "question_th": "2/3 (P) ใดมีคำกริยาของ khêla?",
    "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_en": "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?",
    "question_th": "เวลาสะสม (นาทีและวินาที) ที่มีเวลารถรับส่งมากกว่า 6 วินาทีและเวลารวมระดับ 64.8 วินาทีคือเท่าไร?",
    "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_en": "What is average December when game is 30?",
    "question_th": "ค่าเฉลี่ยของเดือนธันวาคมเมื่อเกมคือ 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_en": "Which opponent has a game larger than 23, December larger than 8, and record of 8-10-7?",
    "question_th": "คู่ต่อสู้คนใดมีเกมมากกว่า 23 ธันวาคมมากกว่า 8 และสถิติ 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–215–6\"",
    "question_en": "What was the aveg/g for the qb with the Att-Cmp-Int of 117–215–6?",
    "question_th": "ค่าเฉลี่ย / g สำหรับ qb ด้วย Att-Cmp-Int เท่ากับ 117–215–6 คืออะไร",
    "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_en": "What was the total effic for the quarterbacks?",
    "question_th": "อะไรคือประสิทธิภาพโดยรวมสำหรับกองหลัง?",
    "context": "CREATE TABLE table_name_20 (effic INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT att_cmp_int FROM table_name_85 WHERE effic = 127.89",
    "question_en": "what was the att-cmp-int for the qb with an effic of 127.89?",
    "question_th": "att-cmp-int สำหรับ qb ที่มีประสิทธิภาพ 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_en": "Who is the challenge leader that played on 9:30 pm on Wed., Nov. 28?",
    "question_th": "ใครคือผู้นำการท้าทายที่เล่นเมื่อวันพุธที่ 28 พ.ย. เวลา 21.30 น.",
    "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_en": "What is the location of the game that was televised on ESPNU at 7:15 pm on Tue., Nov. 27?",
    "question_th": "สถานที่ของเกมที่ถ่ายทอดสดทาง ESPNU เวลา 19:15 น. ของวันอังคารที่ 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_en": "In which tournament was the opponent Lauren Embree?",
    "question_th": "คู่ต่อสู้ 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_en": "What was the score on 19/08/2012?",
    "question_th": "คะแนนเมื่อวันที่ 19/08/2555 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_30 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_39 WHERE date = \"01/07/2007\"",
    "question_en": "What was the outcome of the match on 01/07/2007?",
    "question_th": "ผลการแข่งขันเมื่อวันที่ 01/07/2550 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_39 (outcome VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_10 WHERE population = 10",
    "question_en": "What status has 10 as the population?",
    "question_th": "สถานะใดมี 10 เป็นประชากร?",
    "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_en": "What status has an area km 2 less than 27.82, with 352 as the population?",
    "question_th": "สถานะใดมีพื้นที่กม.2 น้อยกว่า 27.82 โดยมีประชากร 352 คน",
    "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_en": "What status has an area km 2 greater than 10.9, with 4,674 of 5,008 as the census ranking",
    "question_th": "สถานะใดมีพื้นที่กม. 2 มากกว่า 10.9 โดยมี 4,674 จาก 5,008 เป็นลำดับการสำรวจสำมะโนประชากร",
    "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_en": "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?",
    "question_th": "ประชากรต่ำสุดที่มีชื่ออย่างเป็นทางการว่า Big Hole Tract 8 (ใต้) คือข้อใด โดยมีพื้นที่ กม. 2 มากกว่า 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_en": "What is the highest up:down ratio with 4 mbit/s upstream?",
    "question_th": "อัตราส่วนอัพ:ดาวน์สูงสุดที่อัพสตรีม 4 mbit/s คืออะไร",
    "context": "CREATE TABLE table_name_72 (up INTEGER, upstream VARCHAR)"
  },
  {
    "answer": "SELECT upstream FROM table_name_68 WHERE monthly_cap = \"150 gb\"",
    "question_en": "What is the upstream with a 150 gb monthly cap?",
    "question_th": "อัปสตรีมที่มีขีดจำกัดรายเดือนขนาด 150 GB คืออะไร",
    "context": "CREATE TABLE table_name_68 (upstream VARCHAR, monthly_cap VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_31 WHERE score = \"3–2\" AND record = \"3–2–3\"",
    "question_en": "Which location has a Score of 3–2, and a Record of 3–2–3?",
    "question_th": "สถานที่ใดมีคะแนน 3–2 และสถิติ 3–2–3",
    "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_en": "Which score has a Date of october 29, 2008?",
    "question_th": "คะแนนใดมีวันที่ 29 ตุลาคม 2551",
    "context": "CREATE TABLE table_name_70 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT SUM(year) FROM table_name_43 WHERE course = \"sunset ridge cc\"",
    "question_en": "What is the year when the course is sunset ridge cc?",
    "question_th": "คอร์ส 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_en": "what is the score at Olympia fields, illinois?",
    "question_th": "ที่สนามโอลิมเปีย อิลลินอยส์ คะแนนเท่าไหร่?",
    "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_en": "what is the course at midlothian, illinois for a year before 1934?",
    "question_th": "หลักสูตรที่มิดโลเธียน อิลลินอยส์ หนึ่งปีก่อนปี 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_en": "Where is runner-up Betsy Rawls from?",
    "question_th": "รองชนะเลิศ Betsy Rawls มาจากที่ไหน?",
    "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_en": "What was the Venue on November 14, 2007?",
    "question_th": "สถานที่จัดงานในวันที่ 14 พฤศจิกายน พ.ศ. 2550 คืออะไร?",
    "context": "CREATE TABLE table_name_17 (venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_76 WHERE date = \"november 10, 2007\"",
    "question_en": "What was the Score on November 10, 2007?",
    "question_th": "คะแนนเมื่อวันที่ 10 พฤศจิกายน 2550 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_76 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_64 WHERE date = \"november 16, 2007\"",
    "question_en": "What was the Competition on November 16, 2007?",
    "question_th": "การแข่งขันในวันที่ 16 พฤศจิกายน 2550 คืออะไร?",
    "context": "CREATE TABLE table_name_64 (competition VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_3 WHERE opponent = \"richard fromberg\"",
    "question_en": "What was the surface tye during the match with the opponent of richard fromberg?",
    "question_th": "พื้นผิวที่เสมอกันระหว่างการแข่งขันกับคู่ต่อสู้ของริชาร์ด ฟรอมเบิร์กเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_3 (surface VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT championship FROM table_name_8 WHERE opponent = \"richard fromberg\"",
    "question_en": "What was the championship during the match with the opponent of richard fromberg?",
    "question_th": "การแข่งขันชิงแชมป์ระหว่างการแข่งขันกับคู่ต่อสู้ของริชาร์ดจากเบิร์กคืออะไร?",
    "context": "CREATE TABLE table_name_8 (championship VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_54 WHERE score = \"6–4, 7–6 (7-5)\"",
    "question_en": "What was the surface type during the match with the score of 6–4, 7–6 (7-5)??",
    "question_th": "ประเภทพื้นผิวระหว่างการแข่งขันคืออะไรด้วยคะแนน 6–4, 7–6 (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_en": "Who did wilson reis fight against that lasted less than 3 rounds with a time of 1:02?",
    "question_th": "Wilson Reis ต่อสู้กับใครที่กินเวลาน้อยกว่า 3 รอบด้วยเวลา 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_en": "Which Meet has a Time of 3:50.65?",
    "question_th": "Meet ใดมีเวลา 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_en": "Which Time has an Event of 200 m butterfly?",
    "question_th": "งานผีเสื้อ 200 เมตร มีงานไหนบ้าง?",
    "context": "CREATE TABLE table_name_7 (time VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT meet FROM table_name_67 WHERE club = \"centro de natacon carabobo\"",
    "question_en": "Which Meet has a Club of centro de natacon carabobo?",
    "question_th": "Meet ใดมี 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_en": "Which Location has a Time of 4:13.48?",
    "question_th": "ตำแหน่งใดมีเวลา 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_en": "Which Date has a Time of 1:00.59?",
    "question_th": "วันใดมีเวลา 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_en": "Which Location has a Club of delfines ucv?",
    "question_th": "สถานที่ใดมี 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_en": "Which name has notes b and the game of tennis?",
    "question_th": "ชื่อใดที่มีโน้ต b และเกมเทนนิส?",
    "context": "CREATE TABLE table_name_13 (name VARCHAR, sport VARCHAR, notes VARCHAR)"
  },
  {
    "answer": "SELECT lifetime FROM table_name_3 WHERE name = \"alan gendreau\"",
    "question_en": "Which lifetime has alan gendreau?",
    "question_th": "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_en": "What was the hometown/high school of 170 pound player tyler wilson?",
    "question_th": "บ้านเกิด/โรงเรียนมัธยมของไทเลอร์ วิลสัน ผู้เล่นน้ำหนัก 170 ปอนด์คือที่ไหน",
    "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_en": "What position did kyle mckenzie play?",
    "question_th": "ไคล์ แม็คเคนซี่เล่นตำแหน่งอะไร?",
    "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_en": "Which date has a Week larger than 5, and an Attendance of 54,803?",
    "question_th": "วันใดที่มีสัปดาห์มากกว่า 5 และมีผู้เข้าร่วม 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_en": "Which date  has a Week smaller than 14, and an Opponent of san francisco 49ers?",
    "question_th": "วันใดที่มีสัปดาห์ที่น้อยกว่า 14 และเป็นฝ่ายตรงข้ามของ 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_en": "Which opponent has a week smaller than 15, and a Result of l 23-17?",
    "question_th": "คู่ต่อสู้คนใดที่มีหนึ่งสัปดาห์น้อยกว่า 15 และผลการแข่งขัน 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_en": "Which date has an Opponent of bye?",
    "question_th": "วันไหนมีฝ่ายตรงข้ามลาก่อน?",
    "context": "CREATE TABLE table_name_78 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_18 WHERE result = \"l 25-13\"",
    "question_en": "Which date has a Result of l 25-13?",
    "question_th": "วันที่ใดมีผล l 25-13?",
    "context": "CREATE TABLE table_name_18 (date VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT capital FROM table_name_53 WHERE area__km²_ = 2166086",
    "question_en": "What capital has an area of 2166086?",
    "question_th": "เมืองหลวงใดมีพื้นที่ 2166086?",
    "context": "CREATE TABLE table_name_53 (capital VARCHAR, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT pinyin FROM table_name_44 WHERE county = \"changhua\"",
    "question_en": "Which Pinyin has a County of changhua?",
    "question_th": "พินอินใดมีเขตชางฮวา",
    "context": "CREATE TABLE table_name_44 (pinyin VARCHAR, county VARCHAR)"
  },
  {
    "answer": "SELECT county FROM table_name_2 WHERE chinese = \"新竹\"",
    "question_en": "Which County has a Chinese of 新竹?",
    "question_th": "มณฑลใดที่มีคนจีน 新竹?",
    "context": "CREATE TABLE table_name_2 (county VARCHAR, chinese VARCHAR)"
  },
  {
    "answer": "SELECT pinyin FROM table_name_89 WHERE chinese = \"臺南\"",
    "question_en": "Which Pinyin has a Chinese of 臺南?",
    "question_th": "พินอินใดมีภาษาจีนเป็น 臺南?",
    "context": "CREATE TABLE table_name_89 (pinyin VARCHAR, chinese VARCHAR)"
  },
  {
    "answer": "SELECT county FROM table_name_61 WHERE city = \"changhua\"",
    "question_en": "Which County has a City of changhua?",
    "question_th": "มณฑลใดมีเมืองฉางฮวา",
    "context": "CREATE TABLE table_name_61 (county VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT MIN(population__2010_) FROM table_name_99 WHERE city = \"taipei\"",
    "question_en": "What is taipei's lowest 2010 population?",
    "question_th": "จำนวนประชากรต่ำสุดในปี 2010 ในไทเปคือเท่าใด",
    "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_en": "What was Diego Saraiva's record when he fought for 3 rounds against danny suarez?",
    "question_th": "สถิติของดิเอโก ซาราวาตอนที่ชกกับแดนนี่ ซัวเรซถึง 3 นัดคืออะไร?",
    "context": "CREATE TABLE table_name_75 (record VARCHAR, round VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_98 WHERE opponent = \"jorge gurgel\"",
    "question_en": "What event did Diego Saraiva fight jorge gurgel?",
    "question_th": "เหตุการณ์ใดที่ Diego Saraiva ต่อสู้กับ 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_en": "How many games had Montreal Canadiens as an opponent?",
    "question_th": "มอนทรีออล คานาเดียนส์เป็นคู่ต่อสู้กี่เกม?",
    "context": "CREATE TABLE table_name_24 (game INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_61 WHERE method = \"tko\"",
    "question_en": "What was the time when the method was TKO?",
    "question_th": "วิธี TKO เกิดขึ้นเมื่อใด?",
    "context": "CREATE TABLE table_name_61 (time VARCHAR, method VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(round) FROM table_name_74 WHERE record = \"4-0\"",
    "question_en": "How many rounds was the fight when the record was 4-0?",
    "question_th": "ชกกี่รอบเมื่อสถิติเป็น 4-0?",
    "context": "CREATE TABLE table_name_74 (round VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_30 WHERE round > 2",
    "question_en": "Who was the opponent when the round was more than 2?",
    "question_th": "คู่ต่อสู้เมื่อยกเกิน 2 คือใคร?",
    "context": "CREATE TABLE table_name_30 (opponent VARCHAR, round INTEGER)"
  },
  {
    "answer": "SELECT AVG(game) FROM table_name_30 WHERE team = \"@ boston\"",
    "question_en": "Can you tell me the average Game that has the Team of @ boston?",
    "question_th": "คุณช่วยบอกฉันถึงเกมเฉลี่ยที่มีทีมของ @ boston ได้ไหม?",
    "context": "CREATE TABLE table_name_30 (game INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_77 WHERE date = \"march 17\"",
    "question_en": "Can you tell me the Team that has the Date of march 17?",
    "question_th": "คุณช่วยบอกทีมที่มีวันที่ 17 มีนาคมหน่อยได้ไหม?",
    "context": "CREATE TABLE table_name_77 (team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_85 WHERE opponent = \"carlton jones\"",
    "question_en": "What is the record with the opponent as Carlton Jones?",
    "question_th": "สถิติของคู่ต่อสู้อย่างคาร์ลตัน โจนส์ คืออะไร?",
    "context": "CREATE TABLE table_name_85 (record VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT _percentage_of_votes FROM table_name_88 WHERE party = \"family rights\"",
    "question_en": "What is the percentage of votes received by the party of family rights?",
    "question_th": "พรรคสิทธิครอบครัวได้รับกี่เปอร์เซ็นต์ของคะแนนเสียง?",
    "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_en": "What is the % of seats where the difference is 0.25?",
    "question_th": "% ของที่นั่งคือเท่าไร โดยส่วนต่าง 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_en": "What is the % of seats where the difference is 0.19?",
    "question_th": "ที่นั่งต่างกัน 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_en": "Who was No. 8 when No. 10 Jackson and No. 5 Mason?",
    "question_th": "ใครคือหมายเลข 8 ในตอนที่ 10 แจ็คสัน และหมายเลข 5 เมสัน?",
    "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_en": "Who was No. 5 when No. 6 Mason and No. 10 Jackson?",
    "question_th": "ใครคือหมายเลข 5 ในตอนที่ 6 เมสัน และหมายเลข 10 แจ็คสัน?",
    "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_en": "Who was No. 8 when No. 1 Michael and No. 4 Logan?",
    "question_th": "ใครคือหมายเลข 8 ในตอนที่ 1 Michael และหมายเลข 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_en": "Who was No. 9 when No. 5 Mason and No. 3 Aiden?",
    "question_th": "ใครคือหมายเลข 9 ในตอนที่ 5 เมสัน และหมายเลข 3 ไอเดน?",
    "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_en": "Who was No. 3 when No. 5 James and No. 6 Mason?",
    "question_th": "ใครคือหมายเลข 3 ในตอนที่ 5 เจมส์ และหมายเลข 6 เมสัน?",
    "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_en": "Smaller than 37, the highest year for Ford?",
    "question_th": "เล็กกว่า 37 ปีสูงสุดสำหรับฟอร์ด?",
    "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_en": "Lowest finish for ganassi at smaller than 19 start for smaller than 2004 year?",
    "question_th": "การจบสกอร์ต่ำสุดสำหรับ ganassi ที่น้อยกว่า 19 เริ่มต้นน้อยกว่าปี 2004?",
    "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_en": "What is Method, when Event is \"Reality Submission Fighting 2\"?",
    "question_th": "วิธีการคืออะไร เมื่อเหตุการณ์คือ \"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_en": "Which Votes has a Governorate of hewler?",
    "question_th": "ผู้ลงคะแนนเสียงใดมีเขตปกครองของฮิวเลอร์?",
    "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_en": "What is the average draws with less than 3 wins and more than 5 points?",
    "question_th": "ค่าเฉลี่ยเสมอโดยชนะน้อยกว่า 3 และมากกว่า 5 แต้มเป็นเท่าไหร่?",
    "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_en": "What is the average number of goals with more than 9 points, less than 14 goals against, and a goal difference less than 17?",
    "question_th": "จำนวนประตูเฉลี่ยที่มีมากกว่า 9 แต้ม, เสียประตูน้อยกว่า 14 ประตู และผลต่างประตูน้อยกว่า 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_en": "What is the average number of wins with less than 10 goals?",
    "question_th": "จำนวนชัยชนะโดยเฉลี่ยที่ทำได้น้อยกว่า 10 ประตูคือเท่าใด?",
    "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_en": "What is the lowest position with a -22 goal difference and more than 5 points?",
    "question_th": "ตำแหน่งต่ำสุดที่มีผลต่างประตู -22 มากกว่า 5 แต้มคือตำแหน่งไหน?",
    "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_en": "What is the Title, when the Composer(s) is Sakdatorn, and when the Arranger(s) is Jitrakorn Mongkoltham?",
    "question_th": "ชื่อเรื่องว่าอะไร เมื่อผู้แต่งคือ ศักดาธร และเมื่อผู้เรียบเรียงคือ จิตรกร มงคลธรรม?",
    "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_en": "What is the Title, when the Lyricist(s) is Yarosake, and when the Composer(s) is Yarosake?",
    "question_th": "ชื่อตอนคืออะไร เมื่อผู้แต่งเนื้อร้องคือ Yarosake และเมื่อผู้แต่งคือ 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_en": "What is the Length, when the Composer(s) is Sakdatorn, and when the Arranger(s) is Jitrakorn Mongkoltham?",
    "question_th": "ความยาวเท่าใด เมื่อผู้แต่งคือ ศักดาธร และเมื่อผู้เรียบเรียงคือ จิตรกร มงคลธรรม?",
    "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_en": "Who is/are the Composer(s), when the Arranger(s) is Banana Boat, and when the Length is 4:25?",
    "question_th": "ใครคือ/คือผู้แต่ง ในเมื่อผู้เรียบเรียงคือบานาน่าโบ๊ต และเมื่อความยาวคือ 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_en": "Who is/are the Composer(s), when the Arranger(s) is Banana Boat, and when the Length is 4:25?",
    "question_th": "ใครคือ/คือผู้แต่ง ในเมื่อผู้เรียบเรียงคือบานาน่าโบ๊ต และเมื่อความยาวคือ 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_en": "What i the try bonus with 12 losses?",
    "question_th": "ฉันจะลองโบนัสอะไรเมื่อขาดทุน 12 ครั้ง?",
    "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_en": "What was the losing bonus for the 20 played, and 353 points?",
    "question_th": "โบนัสที่แพ้สำหรับการเล่น 20 ครั้งและ 353 แต้มคืออะไร?",
    "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_en": "What was the played with 38 tries?",
    "question_th": "การเล่น 38 ครั้งคืออะไร?",
    "context": "CREATE TABLE table_name_55 (played VARCHAR, tries_for VARCHAR)"
  },
  {
    "answer": "SELECT tries_for FROM table_name_58 WHERE \"club\" = \"club\"",
    "question_en": "What are the tries for a club of a club?",
    "question_th": "อะไรคือความพยายามสำหรับสโมสรของสโมสร?",
    "context": "CREATE TABLE table_name_58 (tries_for VARCHAR)"
  },
  {
    "answer": "SELECT lost FROM table_name_66 WHERE points_for = \"319\"",
    "question_en": "What is the loss with 319 points?",
    "question_th": "ขาดทุน 319 แต้มเป็นอย่างไรบ้าง?",
    "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_en": "Who was the runner(s)-Up to winner Sarah Brice?",
    "question_th": "ใครเป็นรองชนะเลิศถึงผู้ชนะ 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_en": "What season had bachelor Byron Velvick?",
    "question_th": "ปริญญาตรี 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_en": "What was the season that the runner -up was Tenley Molzahn?",
    "question_th": "ฤดูกาลที่รองชนะเลิศคือ 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_en": "Who was the runner-up for the show that premiered on March 25, 2002?",
    "question_th": "ใครคือรองชนะเลิศสำหรับรายการที่เปิดตัวเมื่อวันที่ 25 มีนาคม พ.ศ. 2545?",
    "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_en": "Who was the leading scorer on the game played on February 25?",
    "question_th": "ใครคือผู้ทำประตูสูงสุดในเกมที่เล่นเมื่อวันที่ 25 กุมภาพันธ์?",
    "context": "CREATE TABLE table_name_28 (leading_scorer VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_82 WHERE record = \"26-18\"",
    "question_en": "What was the visiting team that had a record of 26-18?",
    "question_th": "ทีมเยือนที่มีสถิติ 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_en": "What was the score for the game played between Cleveland and Orlando at Cleveland?",
    "question_th": "คะแนนของเกมที่เล่นระหว่างคลีฟแลนด์และออร์แลนโดที่คลีฟแลนด์เป็นเท่าใด",
    "context": "CREATE TABLE table_name_26 (score VARCHAR, home VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_51 WHERE score = \"82-75\"",
    "question_en": "What was the visiting team for the game that ended 82-75?",
    "question_th": "ทีมเยือนในเกมที่จบด้วยสกอร์ 82-75 คือทีมไหน?",
    "context": "CREATE TABLE table_name_51 (visitor VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT semifinalists FROM table_name_95 WHERE tournament = \"montreal\"",
    "question_en": "who were the semifinalists for the tournament in montreal?",
    "question_th": "ใครคือผู้เข้ารอบรองชนะเลิศของทัวร์นาเมนต์ที่มอนทรีออล?",
    "context": "CREATE TABLE table_name_95 (semifinalists VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT finalist FROM table_name_14 WHERE tournament = \"berlin\"",
    "question_en": "Who was the finalist for the tournament in berlin?",
    "question_th": "ใครคือผู้เข้ารอบสุดท้ายของทัวร์นาเมนต์ที่เบอร์ลิน?",
    "context": "CREATE TABLE table_name_14 (finalist VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_16 WHERE tournament = \"berlin\"",
    "question_en": "What type of surface was played at the tournament in berlin?",
    "question_th": "พื้นผิวประเภทใดที่เล่นในทัวร์นาเมนต์ที่เบอร์ลิน?",
    "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_en": "Where was the tournament where monica seles was the finalist who played on a hard surface?",
    "question_th": "การแข่งขันที่โมนิกา เซเลส เป็นผู้เข้ารอบสุดท้ายที่เล่นบนพื้นผิวแข็งคือที่ไหน?",
    "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_en": "Who is the away team against the home team Hartlepools United?",
    "question_th": "ทีมเยือนพบกับทีมเจ้าบ้าน ฮาร์ทลี่พูลส์ ยูไนเต็ด คือใคร?",
    "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_en": "Who is the away team against the home team Ashington?",
    "question_th": "ทีมเยือนพบกับทีมเจ้าบ้านแอชชิงตันคือใคร?",
    "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_en": "What is the score for the away team, Ipswich Town?",
    "question_th": "ทีมเยือนอิปสวิชทาวน์สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_6 (score VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_56 WHERE away_team = \"mansfield town\"",
    "question_en": "What date did the away team Mansfield Town play?",
    "question_th": "ทีมเยือน แมนส์ฟิลด์ ทาวน์ ลงเล่นวันไหน?",
    "context": "CREATE TABLE table_name_56 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_88 WHERE away_team = \"dartford\"",
    "question_en": "What was the score fore the away team Dartford?",
    "question_th": "ทีมเยือนดาร์ทฟอร์ดทำสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_88 (score VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_63 WHERE away_team = \"bristol rovers\"",
    "question_en": "What date did the away team Bristol Rovers play?",
    "question_th": "ทีมเยือน บริสตอล โรเวอร์ส ลงเล่นวันไหน?",
    "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_en": "What is the Brigade, when the Type is Rural, and when the value for Tankers is 1?",
    "question_th": "อะไรคือ Brigade เมื่อประเภทเป็นชนบท และเมื่อค่าของนักขับรถถังเป็น 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_en": "What is the Hazmat, when the Type is Rural, and when the number of Tankers is 1?",
    "question_th": "Hazmat คืออะไร เมื่อประเภทเป็นชนบท และเมื่อจำนวนนักขับรถถังคือ 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_en": "Which country had the first store in the year 2007?",
    "question_th": "ประเทศใดมีร้านแรกในปี 2550",
    "context": "CREATE TABLE table_name_15 (country VARCHAR, first_store VARCHAR)"
  },
  {
    "answer": "SELECT first_store FROM table_name_2 WHERE hypermarkets = 3",
    "question_en": "What year was the first store that had a hypermarket of 3?",
    "question_th": "ร้านแรกที่มีไฮเปอร์มาร์เก็ต 3 แห่งคือปีใด",
    "context": "CREATE TABLE table_name_2 (first_store VARCHAR, hypermarkets VARCHAR)"
  },
  {
    "answer": "SELECT first_store FROM table_name_20 WHERE country = \"india\"",
    "question_en": "What year was the first store in India?",
    "question_th": "ร้านแรกในอินเดียคือปีใด",
    "context": "CREATE TABLE table_name_20 (first_store VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT AVG(attendance) FROM table_name_85 WHERE opponent = \"dunfermline athletic\"",
    "question_en": "Can you tell me the average Attendance rhat has the Opponent of dunfermline athletic?",
    "question_th": "คุณช่วยบอกฉันได้ไหมว่าผู้เข้าร่วมโดยเฉลี่ยมีฝ่ายตรงข้ามของนักกีฬา Dunfermline หรือไม่?",
    "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_en": "Can you tell me the average Attendance that has the Scorers of steven, johnston, walters, mccoist, i.ferguson?",
    "question_th": "คุณช่วยบอกจำนวนผู้เข้าร่วมโดยเฉลี่ยที่มีผู้ทำประตูของ 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_en": "What number has 0 steals and less than 32 points?",
    "question_th": "หมายเลขใดมี 0 ขโมย และน้อยกว่า 32 แต้ม?",
    "context": "CREATE TABLE table_name_46 (number VARCHAR, points VARCHAR, steals VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_55 WHERE set_3 = \"21–25\"",
    "question_en": "What was the overall score when the score for set 3 is 21–25?",
    "question_th": "คะแนนรวมเมื่อคะแนนชุดที่ 3 คือ 21–25 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_55 (score VARCHAR, set_3 VARCHAR)"
  },
  {
    "answer": "SELECT set_1 FROM table_name_92 WHERE total = \"85–101\"",
    "question_en": "What is the set 1 score when the total is 85–101?",
    "question_th": "คะแนนชุดที่ 1 เมื่อคะแนนรวมคือ 85–101 คืออะไร",
    "context": "CREATE TABLE table_name_92 (set_1 VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_32 WHERE set_3 = \"22–25\"",
    "question_en": "On what date was the score for set 3 22–25?",
    "question_th": "คะแนนของเซต 3 22–25 คือวันไหน?",
    "context": "CREATE TABLE table_name_32 (date VARCHAR, set_3 VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_57 WHERE set_2 = \"25–18\"",
    "question_en": "What is the overall score when the set 2 score is 25–18?",
    "question_th": "คะแนนรวมเมื่อคะแนนชุดที่ 2 คือ 25–18 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_57 (score VARCHAR, set_2 VARCHAR)"
  },
  {
    "answer": "SELECT set_1 FROM table_name_10 WHERE set_3 = \"22–25\"",
    "question_en": "What is the score for set 1 when the score for set 3 is 22–25?",
    "question_th": "คะแนนของเซต 1 เป็นเท่าใด เมื่อคะแนนของเซต 3 คือ 22–25?",
    "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_en": "What Player had a Score of 70-69-75=214?",
    "question_th": "ผู้เล่นคนใดมีคะแนน 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_en": "With a To par of +4, what is Andy Bean's Score?",
    "question_th": "เมื่อพาร์ถึง +4 คะแนนของ Andy Bean คือเท่าใด",
    "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_en": "What is the To par of the T5 Place Player with a Score of 71-68-76=215?",
    "question_th": "ค่าพาร์ของผู้เล่นอันดับ T5 ที่มีคะแนน 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_en": "What is the Place of the Player with a To par of +4 and Score of 70-76-71=217?",
    "question_th": "ตำแหน่งผู้เล่นที่มีพาร์ถึง +4 และคะแนน 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_en": "What is the Score of the T3 Place Player?",
    "question_th": "คะแนนของผู้เล่นอันดับ T3 คืออะไร?",
    "context": "CREATE TABLE table_name_33 (score VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_35 WHERE to_par = \"–1\"",
    "question_en": "What is the Country of the Player with a To par of –1?",
    "question_th": "ประเทศของผู้เล่นที่มีพาร์ถึง –1 คืออะไร?",
    "context": "CREATE TABLE table_name_35 (country VARCHAR, to_par VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_name_77 WHERE host = \"luxembourg\"",
    "question_en": "In what year was Luxembourg Host?",
    "question_th": "ลักเซมเบิร์กเป็นเจ้าภาพในปีใด?",
    "context": "CREATE TABLE table_name_77 (year INTEGER, host VARCHAR)"
  },
  {
    "answer": "SELECT bronze FROM table_name_67 WHERE silver = \"iceland\"",
    "question_en": "When Iceland gets the Silver, who gets the Bronze?",
    "question_th": "เมื่อไอซ์แลนด์ได้เหรียญเงิน ใครได้เหรียญทองแดง?",
    "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_en": "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?",
    "question_th": "อันดับสูงสุดเมื่อมี 0 เหรียญทอง และทองแดงน้อยกว่า 4 และเงินมากกว่า 1 และ 2 เป็นทั้งหมด?",
    "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_en": "Rank 14 with a total greater than 1 has what as the average bronze?",
    "question_th": "อันดับ 14 ที่มีคะแนนรวมมากกว่า 1 มีค่าทองแดงเฉลี่ยเท่าไร?",
    "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_en": "How many medals under total when silver is less than 2, gold is 3, and bronze is less than 0?",
    "question_th": "ถ้าเงินน้อยกว่า 2 ทองได้ 3 เหรียญทองแดงน้อยกว่า 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_en": "What is the fewest total when silver is 0, and gold is less than 1, and rank is less than 13?",
    "question_th": "อะไรคือผลรวมน้อยที่สุดเมื่อเงินเป็น 0 และทองน้อยกว่า 1 และอันดับน้อยกว่า 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_en": "What is the total rank where the total is less than 5, and bronze is less than 0?",
    "question_th": "อันดับรวมที่คะแนนรวมน้อยกว่า 5 และทองแดงน้อยกว่า 0 คืออะไร?",
    "context": "CREATE TABLE table_name_18 (rank VARCHAR, total VARCHAR, bronze VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_86 WHERE country = \"zimbabwe\"",
    "question_en": "What place was the player hailing from Zimbabwe in?",
    "question_th": "ผู้เล่นมาจากซิมบับเวในสถานที่ใด",
    "context": "CREATE TABLE table_name_86 (place VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_88 WHERE player = \"bernhard langer\"",
    "question_en": "What was the score of Bernhard Langer after 3 rounds?",
    "question_th": "แบร์นฮาร์ด แลงเกอร์ หลังผ่านไป 3 นัดได้คะแนนเท่าไหร่?",
    "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_en": "How many Goals for were recorded when there was a percentage smaller than 0.519 and points greater than 65?",
    "question_th": "มีการบันทึกประตูจำนวนเท่าใดเมื่อมีเปอร์เซ็นต์น้อยกว่า 0.519 และคะแนนมากกว่า 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_en": "How many games were recorded with Goals for number of 215?",
    "question_th": "มีกี่เกมที่บันทึกโดยมีเป้าหมายอยู่ที่ 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_en": "what is the to par when the player is jack nicklaus?",
    "question_th": "อะไรคือสิ่งที่ต้องตราไว้เมื่อผู้เล่นคือแจ็ค นิคลอส?",
    "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_en": "what is the lowest money ($) when the place is t2 for player johnny miller?",
    "question_th": "เงินต่ำสุด ($) คือเท่าไรเมื่อสถานที่คือ t2 สำหรับผู้เล่น จอห์นนี่ มิลเลอร์?",
    "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_en": "what is the to par when the score is 69-70-72-72=283?",
    "question_th": "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_en": "What was the venue when the result was 3-2?",
    "question_th": "สนามไหนเมื่อผลเป็น 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_en": "What competition had a score of 3-0, and a result of 4-1?",
    "question_th": "การแข่งขันรายการใดมีสกอร์ 3-0 และผลเป็น 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_en": "Which Tie no that has an Away team of altrincham?",
    "question_th": "เสมอไม่ทีมไหนที่มีทีมเยือนอัลทริงแคม?",
    "context": "CREATE TABLE table_name_28 (tie_no VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_12 WHERE score = \"0–1\" AND tie_no = \"3\"",
    "question_en": "When has a Score of 0–1, and a Tie no of 3?",
    "question_th": "เมื่อใดที่สกอร์เป็น 0–1 และเสมอกันที่ 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_en": "When has a Tie no of 15?",
    "question_th": "เมื่อใดจะเสมอกันที่ 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–0\"",
    "question_en": "Which Away has a Tie no of replay, and a Score of 2–0?",
    "question_th": "ทีมเยือนทีมไหนเสมอกันในการรีเพลย์ และสกอร์ 2–0",
    "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_en": "Name the Score on 17 december 1979?",
    "question_th": "ตั้งชื่อสกอร์วันที่ 17 ธันวาคม 2522 ?",
    "context": "CREATE TABLE table_name_80 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_14 WHERE home_team = \"tranmere rovers\"",
    "question_en": "Name the Home team of tranmere rovers?",
    "question_th": "ชื่อทีมเหย้าของทรานเมียร์ โรเวอร์เหรอ?",
    "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_en": "what is the area when the census ranking is 2,290 of 5,008?",
    "question_th": "พื้นที่ใดที่มีอันดับการสำรวจสำมะโนประชากรอยู่ที่ 2,290 จาก 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_en": "What is the population when the area km2 is 173.4?",
    "question_th": "เมื่อพื้นที่ km2 เท่ากับ 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_en": "what is the census ranking when the area km 2 is 173.4?",
    "question_th": "การจัดอันดับการสำรวจสำมะโนประชากรเมื่อพื้นที่ กม. 2 คือ 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_en": "WHAT IS THE FRANCE WITH PEOPLE UNDER 18 OF SUB-SAHARAN AFRICA?",
    "question_th": "ฝรั่งเศสกับผู้ที่มีอายุต่ำกว่า 18 ปีของแอฟริกาใต้สะฮาราคืออะไร?",
    "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_en": "WHAT IS THE PARIS WITH A FRANCE OF 1.4%?",
    "question_th": "ปารีสที่มีฝรั่งเศส 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_en": "WHAT IS THE VAL-DE-MARNE WITH A Seine-Saint-Denis of 2.7%?",
    "question_th": "VAL-DE-MARNE กับ Seine-Saint-Denis อยู่ที่ 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_en": "WHAT IS A Seine-Saint-Denis WITH A PARIS OF 12.1%?",
    "question_th": "Seine-Saint-Denis กับปารีส 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_en": "WHAT IS Val-de-Marne WITH Seine-Saint-Denis of 4.0%?",
    "question_th": "Val-de-Marne กับ Seine-Saint-Denis คืออะไร 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_en": "What was the score for the match at the tournament in canada f7, toronto?",
    "question_th": "คะแนนสำหรับการแข่งขันในทัวร์นาเมนต์ที่แคนาดา f7 โตรอนโตเป็นเท่าไหร่?",
    "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_en": "Who were the opponents that played on a hard surface on July 13, 2008?",
    "question_th": "คู่ต่อสู้ที่เล่นบนพื้นแข็งเมื่อวันที่ 13 กรกฎาคม พ.ศ. 2551 คือใคร?",
    "context": "CREATE TABLE table_name_85 (opponents VARCHAR, surface VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_7 WHERE score = \"2–6, 6–1, [10–5]\"",
    "question_en": "What type of surface was played on when the score was 2–6, 6–1, [10–5]?",
    "question_th": "บนพื้นผิวประเภทใดที่เล่นเมื่อคะแนนคือ 2–6, 6–1, [10–5]?",
    "context": "CREATE TABLE table_name_7 (surface VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_31 WHERE date = \"july 27, 2013\"",
    "question_en": "What type of surface was played on July 27, 2013?",
    "question_th": "ประเภทของพื้นผิวที่เล่นในวันที่ 27 กรกฎาคม 2013?",
    "context": "CREATE TABLE table_name_31 (surface VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_name_85 WHERE member = \"peter howson\"",
    "question_en": "What party was the member peter howson part of?",
    "question_th": "ปีเตอร์ ฮาวสัน สมาชิกพรรคไหน?",
    "context": "CREATE TABLE table_name_85 (party VARCHAR, member VARCHAR)"
  },
  {
    "answer": "SELECT electorate FROM table_name_61 WHERE member = \"rex connor\"",
    "question_en": "Who was the electorate when the member was rex connor?",
    "question_th": "ใครเป็นผู้มีสิทธิเลือกตั้งเมื่อสมาชิกคือเร็กซ์ คอนเนอร์?",
    "context": "CREATE TABLE table_name_61 (electorate VARCHAR, member VARCHAR)"
  },
  {
    "answer": "SELECT term_of_office FROM table_name_1 WHERE member = \"noel beaton\"",
    "question_en": "What was the term of office for noel beaton?",
    "question_th": "โนเอล บีตัน มีวาระการดำรงตำแหน่งอย่างไร",
    "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_en": "What was the term of office for the electorate warringah?",
    "question_th": "ผู้มีสิทธิเลือกตั้ง 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_en": "What is the total number of people in attendance when the game was at TD Banknorth Garden, in a game higher than 31?",
    "question_th": "จำนวนผู้เข้าร่วมทั้งหมดเมื่อเกมอยู่ที่ TD Banknorth Garden ในเกมที่สูงกว่า 31 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_20 (attendance VARCHAR, location VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT state FROM table_name_13 WHERE owner = \"wesson\"",
    "question_en": "What state is Wesson in?",
    "question_th": "เวสสันอยู่ในรัฐอะไร?",
    "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_en": "What is the College/Junior/Club Team (League) when the position is rw, and the player is Don Murdoch?",
    "question_th": "ทีมวิทยาลัย/จูเนียร์/คลับ (ลีก) คืออะไร เมื่อตำแหน่งเป็น rw และผู้เล่นคือ ดอน เมอร์ด็อก?",
    "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_en": "What is the position when the round is less than 2?",
    "question_th": "ตำแหน่งเมื่อรอบน้อยกว่า 2 คืออะไร?",
    "context": "CREATE TABLE table_name_68 (position VARCHAR, round INTEGER)"
  },
  {
    "answer": "SELECT nationality FROM table_name_33 WHERE player = \"claude periard\"",
    "question_en": "What is the nationality when Claude Periard is the player?",
    "question_th": "โคล้ด เปริอาร์ด เป็นนักเตะสัญชาติอะไร?",
    "context": "CREATE TABLE table_name_33 (nationality VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MIN(round) FROM table_name_68 WHERE player = \"claude periard\"",
    "question_en": "What is the lowest round for the player Claude Periard?",
    "question_th": "รอบต่ำสุดสำหรับผู้เล่น 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_en": "When did the consort who had talal i as a spouse die?",
    "question_th": "มเหสีที่มีทาลัล ฉันเป็นคู่สมรสถึงแก่กรรมเมื่อใด?",
    "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_en": "Who was the spouse of the consort who was born as rania al yassin?",
    "question_th": "ใครคือคู่สมรสของสามีที่เกิดเป็นราเนียอัลยัสซิน?",
    "context": "CREATE TABLE table_name_27 (spouse_to VARCHAR, born_as VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_74 WHERE overall < 102",
    "question_en": "When the Overall is under 102, what's the round played?",
    "question_th": "เมื่อผลรวมต่ำกว่า 102 เล่นรอบอะไร?",
    "context": "CREATE TABLE table_name_74 (round VARCHAR, overall INTEGER)"
  },
  {
    "answer": "SELECT MAX(week) FROM table_name_66 WHERE date = \"november 8, 1970\"",
    "question_en": "What is the highest Week, when Date is \"November 8, 1970\"?",
    "question_th": "สัปดาห์ใดคือสัปดาห์ที่สูงที่สุด โดยวันที่คือ \"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_en": "What is the lowest Attendance, when Date is \"December 20, 1970\", and when Week is less than 14?",
    "question_th": "จำนวนผู้เข้าร่วมต่ำสุดคือเมื่อใด วันที่คือ \"20 ธันวาคม 1970\" และเมื่อสัปดาห์น้อยกว่า 14",
    "context": "CREATE TABLE table_name_69 (attendance INTEGER, date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_70 WHERE week = 5",
    "question_en": "What is Opponent, when Week is \"5\"?",
    "question_th": "คู่ต่อสู้คืออะไร เมื่อสัปดาห์คือ \"5\"?",
    "context": "CREATE TABLE table_name_70 (opponent VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_30 WHERE score = 68",
    "question_en": "What is the place with the 68 score?",
    "question_th": "คะแนน 68 ได้ที่ไหนบ้าง?",
    "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_en": "what is the voltage when release date is june 2001 and frequency is 1.13ghz?",
    "question_th": "วันที่วางจำหน่ายคือเดือนมิถุนายน 2544 และความถี่คือ 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_en": "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?",
    "question_th": "หมายเลขชิ้นส่วนคืออะไรเมื่อแคช l2 คือ 512 kb, วันที่วางจำหน่ายคือเดือนมิถุนายน 2544 และหมายเลข sSpec คือ 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_en": "What is the L2 Cache when the Part Number(s) is rk80530pz014256?",
    "question_th": "L2 Cache คืออะไรเมื่อหมายเลขชิ้นส่วนคือ 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_en": "What is the Release Date when sSpec Number is sl5xl, sl657, sl6by, sl6jp?",
    "question_th": "วันที่วางจำหน่ายคือเมื่อใด หมายเลข sSpec คือ 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_en": "What is the Socket when the Part Number(s) is rk80530pz001256?",
    "question_th": "ซ็อกเก็ตคืออะไรเมื่อหมายเลขชิ้นส่วนคือ 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_en": "what is the semifinalists when the surface is hard (i)?",
    "question_th": "เข้ารอบรองชนะเลิศเมื่อพื้นผิวแข็ง (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_en": "what is the surface when the winner and score is gustavo kuerten 6-4, 7-5, 7-6(6)?",
    "question_th": "พื้นผิวจะเป็นอย่างไรเมื่อผู้ชนะและสกอร์คือ กุสตาโว่ คูเออร์เทน 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_en": "who is the winner and score for the week of august 9?",
    "question_th": "ใครเป็นผู้ชนะและทำคะแนนประจำสัปดาห์วันที่ 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_en": "what is the surface for the week of october 25?",
    "question_th": "พื้นผิวสำหรับสัปดาห์วันที่ 25 ตุลาคมเป็นเท่าใด",
    "context": "CREATE TABLE table_name_51 (surface VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT winner_and_score FROM table_name_28 WHERE finalist = \"sébastien grosjean\"",
    "question_en": "who is the winner and score for finalist sébastien grosjean?",
    "question_th": "ใครเป็นผู้ชนะและทำคะแนนให้เซบาสเตียน กรอสฌองเข้ารอบสุดท้าย?",
    "context": "CREATE TABLE table_name_28 (winner_and_score VARCHAR, finalist VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_16 WHERE finalist = \"marcelo ríos\"",
    "question_en": "what is the week when the finalist is marcelo ríos?",
    "question_th": "สัปดาห์ไหนที่ผู้เข้ารอบสุดท้ายคือ Marcelo Ríos?",
    "context": "CREATE TABLE table_name_16 (week VARCHAR, finalist VARCHAR)"
  },
  {
    "answer": "SELECT nation FROM table_name_50 WHERE name = \"chris witty\"",
    "question_en": "What country did Chris Witty represent?",
    "question_th": "Chris Witty เป็นตัวแทนประเทศใด",
    "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_en": "On what day was the record set at the 2002 Salt Lake City games with a time of 3:57.70?",
    "question_th": "สถิติที่กำหนดไว้ในเกมซอลท์เลคซิตี้ปี 2002 ด้วยเวลา 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_en": "Who set the record in the 500 metres event?",
    "question_th": "ใครเป็นคนสร้างสถิติในงานวิ่ง 500 เมตร?",
    "context": "CREATE TABLE table_name_14 (name VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_23 WHERE attendance = 3686",
    "question_en": "When was the attendance 3686?",
    "question_th": "ผู้เข้าร่วม 3686 เมื่อไหร่?",
    "context": "CREATE TABLE table_name_23 (date VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT away FROM table_name_42 WHERE home = \"victoria\"",
    "question_en": "What is the away team whose home is Victoria?",
    "question_th": "ทีมเยือนทีมไหนคือวิคตอเรีย?",
    "context": "CREATE TABLE table_name_42 (away VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT MIN(attendance) FROM table_name_67 WHERE away = \"real espana\"",
    "question_en": "What was the attendance when the away team was Real Espana?",
    "question_th": "การเข้าร่วมงานเมื่อทีมเยือนคือ เรอัล เอสปันญ่า?",
    "context": "CREATE TABLE table_name_67 (attendance INTEGER, away VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_76 WHERE club = \"nac breda\"",
    "question_en": "Where is nac breda club located?",
    "question_th": "ที่ตั้งของ nac breda club อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_76 (location VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT kit_maker FROM table_name_68 WHERE manager = \"ron jans\"",
    "question_en": "Ron Jans is a manager of which kit maker?",
    "question_th": "Ron Jans เป็นผู้จัดการของผู้ผลิตชุดอุปกรณ์คนใด",
    "context": "CREATE TABLE table_name_68 (kit_maker VARCHAR, manager VARCHAR)"
  },
  {
    "answer": "SELECT manager FROM table_name_90 WHERE shirt_sponsor = \"arke\"",
    "question_en": "Which manager sponsor arke shirt?",
    "question_th": "ผู้จัดการทีมคนไหนสปอนเซอร์เสื้อ Arke?",
    "context": "CREATE TABLE table_name_90 (manager VARCHAR, shirt_sponsor VARCHAR)"
  },
  {
    "answer": "SELECT kit_maker FROM table_name_44 WHERE manager = \"trond sollied\"",
    "question_en": "Which kit maker have Trond Sollied as a manager?",
    "question_th": "ผู้ผลิตชุดแข่งคนไหนมี Trond Sollied เป็นผู้จัดการ?",
    "context": "CREATE TABLE table_name_44 (kit_maker VARCHAR, manager VARCHAR)"
  },
  {
    "answer": "SELECT manager FROM table_name_48 WHERE club = \"fc twente\"",
    "question_en": "Who is the manager of club fc twente?",
    "question_th": "ใครคือผู้จัดการทีมคลับ เอฟซี ทเวนเต้?",
    "context": "CREATE TABLE table_name_48 (manager VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_51 WHERE points = 62",
    "question_en": "What is the date of the game with 62 points?",
    "question_th": "เกมวันที่เท่าไหร่ที่มี 62 แต้ม?",
    "context": "CREATE TABLE table_name_51 (date VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_85 WHERE date = \"january 4\"",
    "question_en": "Who was the home team on January 4?",
    "question_th": "ใครคือเจ้าบ้านในวันที่ 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_en": "What is Player, when Years With Spurs is 1988-95?",
    "question_th": "ผู้เล่นคืออะไร เมื่อปีกับสเปอร์สคือปี 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_en": "What is Height in Ft., when Years With Spurs is 1973-74?",
    "question_th": "ความสูงเป็นฟุตเมื่อ ปีที่มีสเปอร์ส คือปี 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_en": "What is Position, when School/Previous Club Team/Country is Kentucky?",
    "question_th": "ตำแหน่งคืออะไร เมื่อโรงเรียน/ทีมสโมสรก่อนหน้า/ประเทศคือรัฐเคนตักกี้",
    "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_en": "What is Position, when Height in Ft. is 6-10?",
    "question_th": "ตำแหน่งคืออะไร เมื่อความสูงเป็นฟุต คือ 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_en": "What was the lowest fumble with an average of less than 5.7 and 236 yards?",
    "question_th": "อะไรคือคลำหาต่ำสุดที่มีค่าเฉลี่ยน้อยกว่า 5.7 และ 236 หลา?",
    "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_en": "What was Buck Pierce's highest average when there were less than 2 fumbles?",
    "question_th": "ค่าเฉลี่ยสูงสุดของ Buck Pierce เมื่อมีคลำน้อยกว่า 2 ครั้งเป็นเท่าใด",
    "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_en": "What is the census ranking for the community with an area smaller than 9.94 km2 and a population smaller than 817?",
    "question_th": "การจัดอันดับการสำรวจสำมะโนประชากรสำหรับชุมชนที่มีพื้นที่น้อยกว่า 9.94 ตารางกิโลเมตร และจำนวนประชากรน้อยกว่า 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_en": "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?",
    "question_th": "พื้นที่ (ในหน่วย km2) สำหรับชุมชนที่มีสถานะเป็นหมู่บ้าน มีการสำรวจสำมะโนประชากร 2,471 จาก 5,008 คน และมีประชากรน้อยกว่า 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_en": "What is the area (in km2) for the village of Paquetville, with a population over 706?",
    "question_th": "พื้นที่ (ในหน่วย km2) ของหมู่บ้าน Paquetville ซึ่งมีประชากรมากกว่า 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_en": "Who had the high assists in Game 22?",
    "question_th": "ใครมีแอสซิสต์สูงในเกมที่ 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_en": "On December 3, where was the game held and how many were in attendance?",
    "question_th": "วันที่ 3 ธันวาคม การแข่งขันจัดขึ้นที่ไหนและมีผู้เข้าร่วมกี่คน?",
    "context": "CREATE TABLE table_name_56 (location_attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_38 WHERE rank = \"3\"",
    "question_en": "Which venue is rank 3?",
    "question_th": "สนามไหนอยู่อันดับที่ 3?",
    "context": "CREATE TABLE table_name_38 (venue VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_65 WHERE season = \"2001/02\"",
    "question_en": "Which opponent played in 2001/02?",
    "question_th": "คู่แข่งคนใดเคยเล่นในฤดูกาล 2001/02?",
    "context": "CREATE TABLE table_name_65 (opponent VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_31 WHERE rank = \"4\"",
    "question_en": "Which season is rank 4?",
    "question_th": "ฤดูกาลไหนอยู่อันดับที่ 4?",
    "context": "CREATE TABLE table_name_31 (season VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_35 WHERE rank = \"2\"",
    "question_en": "Which season has rank 2?",
    "question_th": "ฤดูกาลใดมีอันดับ 2?",
    "context": "CREATE TABLE table_name_35 (season VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_4 WHERE rank = \"3\"",
    "question_en": "Which venue is rank 3?",
    "question_th": "สนามไหนอยู่อันดับที่ 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_en": "What conference has 2009 as the season, with super leg final as the format?",
    "question_th": "การประชุมใดที่มีปี 2009 เป็นฤดูกาล โดยมีรอบชิงชนะเลิศซูเปอร์เลกเป็นรูปแบบ?",
    "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_en": "What series has a season after 2008, super leg final as the format, and conference v as the conference?",
    "question_th": "ซีรีส์ใดที่มีฤดูกาลหลังปี 2008, Super Leg Final เป็นรูปแบบ และ Conference v เป็น 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_en": "Which series has a season prior to 2009?",
    "question_th": "ซีรีส์ใดมีซีซันก่อนปี 2009",
    "context": "CREATE TABLE table_name_46 (series VARCHAR, season INTEGER)"
  },
  {
    "answer": "SELECT format FROM table_name_42 WHERE conference = \"conference iii\"",
    "question_en": "What format has conference iii as the conference?",
    "question_th": "conference iii มีรูปแบบใดเป็น conference?",
    "context": "CREATE TABLE table_name_42 (format VARCHAR, conference VARCHAR)"
  },
  {
    "answer": "SELECT round_3 FROM table_name_69 WHERE round_4 = \"54\"",
    "question_en": "Round 3 with less than 54 for Round 4?",
    "question_th": "รอบ 3 มีน้อยกว่า 54 สำหรับรอบ 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_en": "Round 4 for larger than 19 Round 1 and a 27 Round 2?",
    "question_th": "รอบ 4 สำหรับใหญ่กว่า 19 รอบ 1 และ 27 รอบ 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_en": "Round 3 with a round 4 of 50?",
    "question_th": "รอบ 3 กับรอบ 4 จาก 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_en": "How much did the away team b3 score on August 12, 2014?",
    "question_th": "ทีมเยือน b3 ทำคะแนนได้เท่าไรในวันที่ 12 สิงหาคม 2557?",
    "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_en": "Which away team played on June 9, 2015 with a home team of f1?",
    "question_th": "ทีมเยือนทีมใดเล่นเมื่อวันที่ 9 มิถุนายน 2558 กับทีมเจ้าบ้าน 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 = –7(71 - 72 - 67 - 71 = 281)",
    "question_en": "Which Margin has a Winning score of –7 (71-72-67-71=281)?",
    "question_th": "Margin ใดมีคะแนนชนะที่ –7 (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_en": "Which Year has a Runner(s)-up of tammie green?",
    "question_th": "แทมมี่ กรีน ได้รองชนะเลิศในปีใด?",
    "context": "CREATE TABLE table_name_71 (year INTEGER, runner_s__up VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_name_42 WHERE winning_score = –4(69 - 72 - 70 - 69 = 280)",
    "question_en": "Which Year has a Winning score of –4 (69-72-70-69=280)?",
    "question_th": "ปีใดมีคะแนนชนะเป็น –4 (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_en": "What work was nominated at Rockferendum 2007 and got 1st place and got the award for best album?",
    "question_th": "ผลงานใดที่ได้รับการเสนอชื่อเข้าชิงที่ Rockferendum 2007 และได้อันดับที่ 1 และได้รับรางวัลอัลบั้มยอดเยี่ยม?",
    "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_en": "What was the position that the nominated work La Quinta Esencia, which also won an award for best CD coverbox, won?",
    "question_th": "อะไรคือตำแหน่งที่ผลงานที่ได้รับการเสนอชื่อเข้าชิง La Quinta Esencia ซึ่งได้รับรางวัลกล่องปกซีดียอดเยี่ยมได้รับรางวัล?",
    "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_en": "What was the type that had an award for song of the year and the position of 3rd place?",
    "question_th": "ประเภทไหนที่ได้รับรางวัลเพลงแห่งปีและอันดับที่ 3?",
    "context": "CREATE TABLE table_name_1 (type VARCHAR, award VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_65 WHERE player = \"phil mickelson\"",
    "question_en": "In what place is Phil Mickelson?",
    "question_th": "ฟิล มิคเคลสันอยู่จุดไหน?",
    "context": "CREATE TABLE table_name_65 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_77 WHERE score = 73 - 71 - 70 = 214",
    "question_en": "The score of 73-71-70=214 belongs to what country?",
    "question_th": "คะแนน 73-71-70=214 เป็นของประเทศอะไร?",
    "context": "CREATE TABLE table_name_77 (country VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_95 WHERE score = 73 - 74 - 69 = 216",
    "question_en": "Which country has a score of 73-74-69=216?",
    "question_th": "ประเทศใดมีคะแนน 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_en": "Which team had Christoph John as an outgoing manager?",
    "question_th": "ทีมไหนมีคริสตอฟ จอห์นเป็นผู้จัดการทีมที่จะลาออก?",
    "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_en": "In what venue was the Batting team India who featured partners Sachin Tendulkar and Rahul Dravid?",
    "question_th": "ทีมตีลูกของอินเดียซึ่งนำเสนอพันธมิตร Sachin Tendulkar และ 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_en": "In what venue did the fielding team Sri Lanka play?",
    "question_th": "ทีมลงสนามศรีลังกาลงเล่นที่สถานที่ใด?",
    "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_en": "What was the wicket ranking for the match featuring partners Mohammad Azharuddin and Ajay Jadeja and also a fielding team of Sri Lanka?",
    "question_th": "อันดับประตูสำหรับแมตช์ที่มีคู่หูอย่าง โมฮัมหมัด อัซฮารุดดิน และอาเจย์ เจจาจา และทีมลงสนามของศรีลังกาคือเท่าไร",
    "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_en": "What was the wicket ranking for the match that had a fielding team of Sri Lanka?",
    "question_th": "อันดับประตูสำหรับแมตช์ที่มีทีมลงสนามของศรีลังกาคือเท่าไร?",
    "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_en": "What date was the game against inverurie loco works when more than 342 attend?",
    "question_th": "เกมกับ Inverurie Loco จัดขึ้นวันที่ใดเมื่อมีผู้เข้าร่วมมากกว่า 342 คน",
    "context": "CREATE TABLE table_name_3 (date VARCHAR, attendance VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_2 WHERE date = \"july 20\"",
    "question_en": "Which Score has a Date of july 20?",
    "question_th": "สกอร์ไหนมีวันที่ 20 กรกฎาคม?",
    "context": "CREATE TABLE table_name_2 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_76 WHERE date = \"may 20\"",
    "question_en": "Which Score has a Date of may 20?",
    "question_th": "คะแนนใดมีวันที่ 20 พฤษภาคม?",
    "context": "CREATE TABLE table_name_76 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_25 WHERE score = \"69-81\"",
    "question_en": "Which Result has a Score of 69-81?",
    "question_th": "ผลลัพธ์ใดมีคะแนน 69-81",
    "context": "CREATE TABLE table_name_25 (result VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_81 WHERE date = \"june 26\"",
    "question_en": "Which Record has a Date of june 26?",
    "question_th": "บันทึกใดมีวันที่ 26 มิถุนายน",
    "context": "CREATE TABLE table_name_81 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_82 WHERE record = \"6-6\"",
    "question_en": "Which Date has a Record of 6-6?",
    "question_th": "วันที่ใดมีบันทึก 6-6?",
    "context": "CREATE TABLE table_name_82 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_36 WHERE record = \"5-4\"",
    "question_en": "Which Score has a Record of 5-4?",
    "question_th": "สกอร์ไหนมีสถิติ 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_en": "Who had the highest rebounds on December 30?",
    "question_th": "ใครมีรีบาวด์สูงสุดในวันที่ 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_en": "Who had the highest assists on the l.a. lakers?",
    "question_th": "ใครเป็นผู้แอสซิสต์สูงสุดในลาเลเกอร์ส?",
    "context": "CREATE TABLE table_name_21 (high_assists VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_56 WHERE october > 28",
    "question_en": "What is the Opponent of the game after October 28?",
    "question_th": "ฝ่ายตรงข้ามของเกมหลังวันที่ 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_en": "What is the Opponent before October 31 with a Record of 2-3-1 after Game 5?",
    "question_th": "ฝ่ายตรงข้ามก่อนวันที่ 31 ต.ค. ด้วยสถิติ 2-3-1 หลังเกมที่ 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_en": "What opponent had a record of 37-27?",
    "question_th": "คู่ต่อสู้คนไหนมีสถิติ 37-27?",
    "context": "CREATE TABLE table_name_19 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_9 WHERE location = \"delta center\"",
    "question_en": "What date was the game played at the Delta Center?",
    "question_th": "เกมนี้เล่นที่ 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_en": "What was the total games played at the Staples Center?",
    "question_th": "เกมทั้งหมดที่เล่นที่ Staples Center เป็นจำนวนเท่าใด?",
    "context": "CREATE TABLE table_name_56 (game INTEGER, location VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_52 WHERE record = \"38-30\"",
    "question_en": "What's the score if the record was 38-30?",
    "question_th": "ถ้าสถิติเป็น 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_en": "Can you tell me the lowest Long that has the Yards 293, and the Returns smaller than 16?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าค่า Long ต่ำสุดที่มีหลา 293 และผลตอบแทนที่น้อยกว่า 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_en": "Can you tell me the Player that has the Long larger than 28, and the Yards of 222?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าผู้เล่นที่มีความยาวมากกว่า 28 และระยะ 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_en": "What was the date of the match against western province?",
    "question_th": "แข่งกับจังหวัดตะวันตกวันที่เท่าไหร่?",
    "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_en": "Which Rank has a Total larger than 30, and a Bronze of 14?",
    "question_th": "อันดับใดมีคะแนนรวมมากกว่า 30 และเหรียญทองแดงเท่ากับ 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_en": "How much Gold has a Silver smaller than 3, and a Total of 9, and a Bronze smaller than 1?",
    "question_th": "ทองคำจำนวนเท่าใดที่มีเงินน้อยกว่า 3 และมียอดรวมเป็น 9 และทองแดงมีค่าน้อยกว่า 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_en": "How much Gold has a Silver smaller than 14, and a Rank larger than 8, and a Bronze of 3?",
    "question_th": "ทองคำจำนวนเท่าใดที่มีเงินน้อยกว่า 14 และมีอันดับมากกว่า 8 และทองแดงอยู่ที่ 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_en": "How much Bronze has a Silver larger than 2, and a Nation of mixed team, and a Rank larger than 4?",
    "question_th": "เท่าไหร่ Bronze ที่มี Silver มากกว่า 2 และมี Nation ของทีมผสม และมีอันดับมากกว่า 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_en": "What is Attendance, when Date is \"26 December 2004\"?",
    "question_th": "การเข้าร่วมประชุมคืออะไร เมื่อวันที่คือ \"26 ธันวาคม 2547\"?",
    "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_en": "What is the average Attendance, when Venue is \"A\", and when Date is \"5 January 2005\"?",
    "question_th": "จำนวนผู้เข้าร่วมโดยเฉลี่ยคือเท่าใด เมื่อสถานที่คือ \"A\" และวันที่คือ \"5 มกราคม 2548\"",
    "context": "CREATE TABLE table_name_65 (attendance INTEGER, venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_65 WHERE result = \"0-0\"",
    "question_en": "What is Venue, when Result is \"0-0\"?",
    "question_th": "สถานที่คืออะไร เมื่อผลลัพธ์เป็น \"0-0\"",
    "context": "CREATE TABLE table_name_65 (venue VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_62 WHERE result = \"2-4\"",
    "question_en": "What is Attendance, when Result is \"2-4\"?",
    "question_th": "การเข้าร่วมคืออะไร เมื่อผลลัพธ์คือ \"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_en": "What's the total attendance of games against the New York Giants after week 13?",
    "question_th": "จำนวนผู้เข้าร่วมเกมกับ New York Giants หลังจากสัปดาห์ที่ 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_en": "What is the largest number of innings with less than 342 runs and more than 4 matches?",
    "question_th": "จำนวนอินนิ่งที่ใหญ่ที่สุดโดยวิ่งน้อยกว่า 342 รันและมากกว่า 4 นัดคือเท่าใด",
    "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_en": "What is the average value in the 100s category when the high score is 196?",
    "question_th": "ค่าเฉลี่ยในหมวด 100 เมื่อคะแนนสูงสุดคือ 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_en": "A Round larger than 1, a College of Oklahoma state, and a average Pick # that has a Position of tight end is what?",
    "question_th": "รอบที่ใหญ่กว่า 1, วิทยาลัยแห่งรัฐโอคลาโฮมา, และ Pick # โดยเฉลี่ยที่มีตำแหน่งท้ายแน่นคืออะไร?",
    "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_en": "A Pick # larger than 339 and the College that has a Round of 14 is what?",
    "question_th": "A Pick # ใหญ่กว่า 339 และวิทยาลัยที่มีรอบ 14 คืออะไร?",
    "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_en": "Pick # of 331 went to which college?",
    "question_th": "เลือก #331 เข้ามหาลัยไหน?",
    "context": "CREATE TABLE table_name_36 (college VARCHAR, pick__number VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_16 WHERE pick__number = 203",
    "question_en": "Pick # of 203 went to which college?",
    "question_th": "เลือก # จาก 203 ไปวิทยาลัยไหน?",
    "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_en": "What is the width feet in meeters for the truss with a source of nbi (2009)?",
    "question_th": "ฟุตกว้างเป็นเมตรสำหรับโครงนั่งร้านที่มีแหล่งที่มาของ 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_en": "What is the width for hte truss with a source of zacher (1994)?",
    "question_th": "ความกว้างของโครงถักที่มีแหล่งที่มาของ 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 = \"ㅍ\"",
    "question_en": "Which Articulatory class has and Aspirated stop of ㅍ?",
    "question_th": "คลาส Articulatory ใดมีและหยุด Aspirated ที่ ㅍ?",
    "context": "CREATE TABLE table_name_34 (articulatory_class VARCHAR, aspirated_stop VARCHAR)"
  },
  {
    "answer": "SELECT non__stop FROM table_name_60 WHERE aspirated_stop = \"ㅎ\"",
    "question_en": "Which Non- stop has an Aspirated stop of ㅎ?",
    "question_th": "ซึ่ง Non- stop มี Aspirated stop ที่ ㅎ?",
    "context": "CREATE TABLE table_name_60 (non__stop VARCHAR, aspirated_stop VARCHAR)"
  },
  {
    "answer": "SELECT articulatory_class FROM table_name_27 WHERE non__stop = \"(ㆁ)\"",
    "question_en": "If the Non- stop is (ㆁ), what is the Articulatory Class?",
    "question_th": "ถ้าไม่หยุดคือ (ㆁ) ระดับข้อต่อคืออะไร?",
    "context": "CREATE TABLE table_name_27 (articulatory_class VARCHAR, non__stop VARCHAR)"
  },
  {
    "answer": "SELECT non__stop FROM table_name_92 WHERE plain_stop = \"ㄷ\"",
    "question_en": "If the Plain stop is ㄷ, what is the Non- stop?",
    "question_th": "ถ้า Plain stop คือ ㄷ แล้ว 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_en": "What round was Joe Sims picked?",
    "question_th": "Joe Sims เลือกรอบไหน?",
    "context": "CREATE TABLE table_name_24 (round INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT pick FROM table_name_36 WHERE player = \"moe gardner\"",
    "question_en": "What was Moe Gardner's pick?",
    "question_th": "ตัวเลือกของ Moe Gardner คืออะไร?",
    "context": "CREATE TABLE table_name_36 (pick VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(round) FROM table_name_18 WHERE school = \"northwestern\"",
    "question_en": "What was the highest round that had northwestern?",
    "question_th": "รอบสูงสุดที่มีทิศตะวันตกเฉียงเหนือคืออะไร?",
    "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_en": "Which Total population (2010 census) has an Area (km 2) smaller than 147,307.00?",
    "question_th": "ประชากรทั้งหมด (การสำรวจสำมะโนประชากร พ.ศ. 2553) ใดมีพื้นที่ (กม. 2) น้อยกว่า 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_en": "Which Total population (2005 estimate) has a Province of west kalimantan (kalimantan barat), and an Area (km 2) smaller than 147,307.00?",
    "question_th": "ประชากรทั้งหมดใด (ประมาณการปี 2548) มีจังหวัดกาลิมันตันตะวันตก (กาลิมันตันบารัต) และพื้นที่ (กม. 2) เล็กกว่า 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_en": "who is the opponent after march 21 and the game is 75?",
    "question_th": "คู่ต่อสู้หลังวันที่ 21 มีนาคม และเกม 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_en": "what is the game when march is 15?",
    "question_th": "เกมวันที่ 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_en": "what is the score when the game is higher than 66 on march 28?",
    "question_th": "คะแนนเมื่อเกมสูงกว่า 66 ในวันที่ 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_en": "What was the report for an away team of Sydney Spirit and score of 96-87?",
    "question_th": "ผลงานทีมเยือน ซิดนีย์ สปิริต และสกอร์ 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_en": "Who was the home team with a score of 101-93?",
    "question_th": "เจ้าบ้านสกอร์ 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_en": "What was the score for the Perth Wildcats as away team?",
    "question_th": "ทีมเยือน เพิร์ธ ไวลด์แคทส์ ได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_38 (score VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_83 WHERE home_team = \"melbourne tigers\"",
    "question_en": "On what date were the Melbourne Tigers the home team?",
    "question_th": "เมลเบิร์น ไทเกอร์ส เป็นเจ้าบ้านวันไหน?",
    "context": "CREATE TABLE table_name_83 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT challenge_loser FROM table_name_81 WHERE challenge_winner = \"roseny\"",
    "question_en": "Which challenge loser has a Challenge Winner of roseny?",
    "question_th": "ผู้แพ้การท้าทายคนใดมีผู้ชนะการท้าทายของ 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_en": "Which episode has a Challenge Winner of berto?",
    "question_th": "ตอนไหนมี Challenge Winner ของ 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_en": "Which winner has a Challenge Loser of alexcy?",
    "question_th": "ผู้ชนะคนไหนมี Challenge Loser ของ 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_en": "Which winner has a Challenge Loser of gisel?",
    "question_th": "ผู้ชนะคนไหนมี 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_en": "What was the result for the 2007 WCC when Sun Yue was the alternate?",
    "question_th": "อะไรคือผลลัพธ์ของ WCC ปี 2007 เมื่อซุน หยู เป็นตัวสำรอง?",
    "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_en": "What event has the result of 7th (5-6)?",
    "question_th": "ผลการแข่งขันวันที่ 7 (5-6) มีเหตุการณ์อะไรบ้าง?",
    "context": "CREATE TABLE table_name_82 (event VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT lead FROM table_name_5 WHERE event = \"2008 wcc\"",
    "question_en": "Who was the lead for the 2008 WCC?",
    "question_th": "ใครเป็นผู้นำ WCC ปี 2008?",
    "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_en": "What was the Lead for the 2009 WCC when Wang Bingyu news was the skip?",
    "question_th": "อะไรคือผู้นำสำหรับ WCC ปี 2009 เมื่อข่าวของ Wang Bingyu ถูกข้ามไป?",
    "context": "CREATE TABLE table_name_39 (lead VARCHAR, skip VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_14 WHERE skip = \"wang bingyu\"",
    "question_en": "What event had Wang Bingyu for the skip?",
    "question_th": "Wang Bingyu มีเหตุการณ์อะไรให้ข้ามไป?",
    "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_en": "What event was Sun Yue the alternate and wang bingyu(3rd) the skip?",
    "question_th": "เหตุการณ์อะไรคือ Sun Yue เป็นตัวสำรอง และ Wang bingyu (คนที่ 3) เป็นผู้ข้าม?",
    "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_en": "WHAT IS THE SECOND LEG WITH HARO AS TEAM TWO?",
    "question_th": "เลกที่สองกับ HARO ในฐานะทีมที่สองคืออะไร?",
    "context": "CREATE TABLE table_name_27 (team_2 VARCHAR)"
  },
  {
    "answer": "SELECT 1 AS st_leg FROM table_name_79 WHERE team_1 = \"tuilla\"",
    "question_en": "WHAT IS THE FIRST LEG OF TUILLA?",
    "question_th": "ขาแรกของ TUILLA คืออะไร?",
    "context": "CREATE TABLE table_name_79 (team_1 VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_18 WHERE game = 49",
    "question_en": "Which team has a Game of 49?",
    "question_th": "ทีมใดมีเกม 49?",
    "context": "CREATE TABLE table_name_18 (team VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_name_75 WHERE team = \"@ portland\"",
    "question_en": "What are the High points for Team @ portland?",
    "question_th": "อะไรคือคะแนนสูงสุดของทีม @ พอร์ตแลนด์?",
    "context": "CREATE TABLE table_name_75 (high_points VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_name_40 WHERE team = \"houston\"",
    "question_en": "What are the High assists for Team houston?",
    "question_th": "แอสซิสต์สูงของทีมฮูสตันคืออะไร?",
    "context": "CREATE TABLE table_name_40 (high_assists VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_name_12 WHERE date = \"february 2\"",
    "question_en": "What are the High assists for February 2?",
    "question_th": "แอสซิสต์สูงสุดในวันที่ 2 กุมภาพันธ์มีอะไรบ้าง?",
    "context": "CREATE TABLE table_name_12 (high_assists VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_name_59 WHERE opponents > 28",
    "question_en": "What game did the Buffalo Bills' opponents earn more than 28 points?",
    "question_th": "ฝ่ายตรงข้ามของบัฟฟาโล บิลส์ทำคะแนนได้มากกว่า 28 แต้มในเกมใด",
    "context": "CREATE TABLE table_name_59 (game VARCHAR, opponents INTEGER)"
  },
  {
    "answer": "SELECT year_completion_expected FROM table_name_79 WHERE country = \"china\"",
    "question_en": "What was the year that China will have a building completed?",
    "question_th": "จีนจะสร้างเสร็จในปีไหน?",
    "context": "CREATE TABLE table_name_79 (year_completion_expected VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_15 WHERE country = \"china\"",
    "question_en": "What is the name of the buildings for China?",
    "question_th": "อาคารของจีนชื่ออะไร",
    "context": "CREATE TABLE table_name_15 (name VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_65 WHERE year_completion_expected > 2016",
    "question_en": "What are the names for projects that will be completed after 2016?",
    "question_th": "โครงการที่จะแล้วเสร็จหลังปี 2559 ชื่ออะไร?",
    "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_en": "How high is the Goldin Finance 117 building currently being build in China?",
    "question_th": "อาคาร Goldin Finance 117 ที่กำลังสร้างในจีนสูงแค่ไหน?",
    "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_en": "What is the City / State, when Series is ATCC Round 3?",
    "question_th": "เมือง/รัฐ คืออะไร เมื่อ Series คือ ATCC รอบ 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_en": "What is Date, when Series is Amscar Round 3?",
    "question_th": "วันที่เท่าไหร่เมื่อ Series คือ 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_en": "What is Winner, when Circuit is Mallala Motor Sport Park, and when Series is ASTC Round 6?",
    "question_th": "อะไรคือผู้ชนะ เมื่อ Circuit คือ Mallala Motor Sport Park และเมื่อ Series คือ ASTC รอบที่ 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_en": "What is City / State, when Winner is Mal Rose, and when Date is 20 Jul?",
    "question_th": "เมือง / รัฐคืออะไร เมื่อผู้ชนะคือ Mal Rose และวันที่คือ 20 ก.ค.",
    "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_en": "What is City / State, when Circuit is Eastern Creek Raceway, and when Winner is Michael Donaher?",
    "question_th": "เมือง / รัฐคืออะไร เมื่อ Circuit คือ Eastern Creek Raceway และเมื่อผู้ชนะคือ 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_en": "What is Date, when Series is ATCC Round 5?",
    "question_th": "วันที่คือเมื่อ Series คือ ATCC รอบ 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_en": "What is the sum of wins for casey mears when the player ranked 22nd and was in teh top fives 3 times?",
    "question_th": "ผลรวมของชัยชนะของ casey mears เมื่อผู้เล่นอันดับที่ 22 และติดห้าอันดับแรก 3 ครั้งเป็นเท่าใด",
    "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_en": "What is the total number of top fives in 2010 when casey mears had more than 0 wins?",
    "question_th": "จำนวนห้าอันดับแรกในปี 2010 เมื่อเคซีย์ เมียร์สชนะมากกว่า 0 ครั้งเป็นเท่าใด",
    "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_en": "What is the total number of wins when casey mears ranked 36th and had more than 0 top fives?",
    "question_th": "จำนวนชัยชนะทั้งหมดเมื่อ casey mears อยู่ในอันดับที่ 36 และติดห้าอันดับแรกมากกว่า 0 เป็นเท่าใด",
    "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_en": "What is the total number of top fives when casey mears had more than 1 poles and top tens less than 9?",
    "question_th": "จำนวนห้าอันดับแรกทั้งหมดเมื่อเคซีย์เมียร์สมีมากกว่า 1 โพลและสิบอันดับแรกน้อยกว่า 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_en": "What's k. j. choi's to par?",
    "question_th": "kj choi's มีค่าเท่าไร?",
    "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_en": "Which Player has a Score smaller than 69, and a Place of t1?",
    "question_th": "ผู้เล่นคนใดมีคะแนนน้อยกว่า 69 และอันดับ 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_en": "Which To par has a Player of emlyn aubrey?",
    "question_th": "พาร์ใดที่มีผู้เล่นของ 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_en": "Which Score has a Place of t1, and a Player of scott simpson?",
    "question_th": "คะแนนใดมีอันดับ t1 และผู้เล่นของ 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_en": "Which To par has a Score larger than 68?",
    "question_th": "พาร์ใดที่มีคะแนนมากกว่า 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_en": "How many games were on December 5?",
    "question_th": "วันที่ 5 ธันวาคม มีกี่เกม?",
    "context": "CREATE TABLE table_name_80 (game INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_32 WHERE team = \"phoenix\"",
    "question_en": "What day did Phoenix play?",
    "question_th": "ฟีนิกซ์เล่นวันไหน?",
    "context": "CREATE TABLE table_name_32 (date VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT site FROM table_name_15 WHERE date = \"november 13\"",
    "question_en": "What is Site, when Date is \"November 13\"?",
    "question_th": "ไซต์คืออะไร เมื่อวันที่คือ \"13 พฤศจิกายน\"",
    "context": "CREATE TABLE table_name_15 (site VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT site FROM table_name_67 WHERE date = \"september 13\"",
    "question_en": "What is SIte, when Date is \"September 13\"?",
    "question_th": "SIte คืออะไร เมื่อวันที่คือ \"13 กันยายน\"",
    "context": "CREATE TABLE table_name_67 (site VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_79 WHERE opponent = \"at syracuse\"",
    "question_en": "What is Attendance, when Opponent is \"At Syracuse\"?",
    "question_th": "การเข้าร่วมคืออะไร เมื่อฝ่ายตรงข้ามอยู่ \"ที่ซีราคิวส์\"?",
    "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_en": "What is Site, when Opponent is \"All times are in eastern.\"?",
    "question_th": "ไซต์คืออะไร เมื่อฝ่ายตรงข้ามคือ \"เวลาทั้งหมดอยู่ในทิศตะวันออก\"?",
    "context": "CREATE TABLE table_name_13 (site VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_65 WHERE site = \"louisiana superdome • new orleans, la\"",
    "question_en": "What is Date, when Site is \"Louisiana Superdome • New Orleans, LA\"?",
    "question_th": "วันที่คือวันที่ใด เมื่อไซต์คือ \"Louisiana Superdome • 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_en": "What is the lowest January, when Game is less than 46, when Score is \"5 - 3\", and when Record is \"15-22-8\"?",
    "question_th": "เดือนมกราคมต่ำสุดคือเมื่อเกมน้อยกว่า 46 เมื่อสกอร์คือ \"5 - 3\" และเมื่อสถิติคือ \"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_en": "What is the total number of Game, when Record is \"11-17-7\"?",
    "question_th": "จำนวนเกมทั้งหมดเป็นเท่าใด เมื่อสถิติคือ \"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_en": "What is Opponent, when January is greater than 19, and when Score is \"7 - 2\"?",
    "question_th": "คู่ต่อสู้คืออะไร เมื่อเดือนมกราคมมากกว่า 19 และเมื่อสกอร์เป็น \"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_en": "What are the notes with a less than 3 rank at Yuvileiny Stadium (sumy)?",
    "question_th": "โน้ตที่มีอันดับน้อยกว่า 3 ที่ 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_en": "Which player has a total of 160?",
    "question_th": "ผู้เล่นคนไหนมีทั้งหมด 160?",
    "context": "CREATE TABLE table_name_19 (player VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_21 WHERE player = \"charles coody\"",
    "question_en": "What country does charles coody play for?",
    "question_th": "ชาร์ลส์ คูดี้เล่นให้กับประเทศใด?",
    "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_en": "How many division titles does the team with 23 playoff appearances and more than 1 conference titles have?",
    "question_th": "ทีมที่เข้ารอบเพลย์ออฟ 23 ครั้งและแชมป์การประชุมมากกว่า 1 รายการมีกี่ตำแหน่ง?",
    "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_en": "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?",
    "question_th": "จำนวนเฉลี่ยของฤดูกาลที่จบของทีมโดยได้แชมป์ดิวิชั่นน้อยกว่า 1 รายการ, เพลย์ออฟ 0 ครั้ง และการเข้าชิงชนะเลิศมากกว่า 0 ครั้งคือเท่าไร?",
    "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_en": "What hame has points larger than 81?",
    "question_th": "ความอัปยศอะไรที่มีคะแนนมากกว่า 81?",
    "context": "CREATE TABLE table_name_44 (game INTEGER, points INTEGER)"
  },
  {
    "answer": "SELECT COUNT(round) FROM table_name_91 WHERE player = \"cleveland mccrae\"",
    "question_en": "How many round values are associated with Cleveland McCrae?",
    "question_th": "ค่ารอบที่เกี่ยวข้องกับ 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_en": "What team is after 1998 with a start of dnq?",
    "question_th": "ทีมใดหลังจากปี 1998 ด้วยการเริ่มต้น dnq?",
    "context": "CREATE TABLE table_name_87 (team VARCHAR, year VARCHAR, start VARCHAR)"
  },
  {
    "answer": "SELECT start FROM table_name_63 WHERE finish = \"1\"",
    "question_en": "What's the start when the finish is 1?",
    "question_th": "เมื่อจบที่ 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_en": "What's the latest year with a start of 3 and a finish of 40 for the morgan-mcclure team?",
    "question_th": "ปีล่าสุดที่ออกสตาร์ทด้วย 3 และจบด้วย 40 สำหรับทีมมอร์แกน-แมคคลูร์คือปีอะไร?",
    "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_en": "How many goals were scored on the goalkeeper with fewer than 37 matches and an average of 1.5?",
    "question_th": "ผู้รักษาประตูทำได้กี่ประตูโดยน้อยกว่า 37 นัดและเฉลี่ย 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_en": "How many matches did Carlos Kameni play in, who had an average larger than 1.27?",
    "question_th": "คาร์ลอส คาเมนี่ ลงเล่นกี่นัดใครมีค่าเฉลี่ยมากกว่า 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_en": "Who is the away team when there are 15 ties?",
    "question_th": "ทีมเยือนเมื่อ 15 เสมอคือใคร?",
    "context": "CREATE TABLE table_name_57 (away_team VARCHAR, tie_no VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_9 WHERE home_team = \"darlington\"",
    "question_en": "What is the score when Darlington is the home team?",
    "question_th": "เมื่อดาร์ลิงตันเป็นเจ้าบ้านสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_9 (score VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT tie_no FROM table_name_88 WHERE home_team = \"altrincham\"",
    "question_en": "What is the number of ties when Altrincham is the home team?",
    "question_th": "อัลทริงแคมเป็นเจ้าบ้านเสมอกันเท่าไหร่?",
    "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_en": "What is the largest pick by the Baltimore Colts in a round later than 10?",
    "question_th": "ตัวเลือกที่ใหญ่ที่สุดของ Baltimore Colts ในรอบหลัง 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_en": "Which Country has a Label of Toshiba-emi and a Catalog of vjcp-68403?",
    "question_th": "ประเทศใดมีฉลากของ Toshiba-emi และแคตตาล็อกของ 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_en": "Which Label has a Catalog of 7243 8 49494 2 6?",
    "question_th": "ป้ายใดมีแคตตาล็อก 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_en": "Which Catalog has a Country of Japan?",
    "question_th": "แคตตาล็อกใดมีประเทศญี่ปุ่น",
    "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_en": "Which Label has a Format of cd, a Country of Japan and a Catalog of vjcp-68403?",
    "question_th": "ป้ายใดมีรูปแบบซีดี ประเทศญี่ปุ่น และแคตตาล็อก 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_en": "How many rounds were played in the matching resulting in a Points For score of 343?",
    "question_th": "มีการเล่นกี่รอบในการจับคู่ส่งผลให้ได้คะแนน 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_en": "What is the height in Rouen?",
    "question_th": "รูอ็องสูงเท่าไร?",
    "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_en": "What is the church made from in Hamburg?",
    "question_th": "โบสถ์นี้สร้างจากอะไรในฮัมบูร์ก?",
    "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_en": "What Player's Score is 72-70-66=208?",
    "question_th": "คะแนนของผู้เล่นคือ 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_en": "What is the To par of the T8 Place Player with a Score of 72-70-66=208?",
    "question_th": "ค่าพาร์ของผู้เล่นอันดับ T8 ที่มีคะแนน 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_en": "What is Kirk Triplett's Place?",
    "question_th": "สถานที่ของเคิร์ก ทริพเล็ตต์คืออะไร",
    "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_en": "What is the pick for the Maryland-Eastern Shore team with a round lower than 2?",
    "question_th": "ตัวเลือกของทีมแมริแลนด์-อีสเทิร์นชอร์ที่มีรอบต่ำกว่า 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_en": "Which position at UCLA has a lower than 92 pick number?",
    "question_th": "ตำแหน่งใดที่ UCLA มีหมายเลขเลือกต่ำกว่า 92?",
    "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_en": "How many rounds have a position of C?",
    "question_th": "มีกี่รอบมีตำแหน่ง 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_en": "Which team has fewer than 4 rounds for Jan Van Breda Kolff?",
    "question_th": "ทีมไหนเข้าไม่ถึง 4 นัด สำหรับ ยาน ฟาน เบรดา โคลฟ์?",
    "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_en": "Which player has fewer than 2 rounds?",
    "question_th": "ผู้เล่นคนไหนมีน้อยกว่า 2 รอบ?",
    "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_en": "What is the pick for Mickey Johnson with fewer than 4 rounds?",
    "question_th": "ตัวเลือกของ Mickey Johnson ที่น้อยกว่า 4 รอบคืออะไร?",
    "context": "CREATE TABLE table_name_19 (pick INTEGER, player VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT all_games FROM table_name_93 WHERE nonconference_games = \"1–10\"",
    "question_en": "Which All Games have a Nonconference Games of 1–10?",
    "question_th": "เกมใดทั้งหมดที่มีเกมที่ไม่ใช่การประชุม 1–10",
    "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_en": "Who had a score of 68-67=135?",
    "question_th": "ใครได้คะแนน 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_en": "What is the to par for the player who scored 73-68=141?",
    "question_th": "พาร์สำหรับผู้เล่นที่ทำคะแนนได้ 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_en": "Who scored 69-71=140?",
    "question_th": "ใครทำคะแนนได้ 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_en": "What was the to par of the player of who scored 70-70=140?",
    "question_th": "อะไรคือความได้เปรียบของผู้เล่นที่ทำคะแนนได้ 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_en": "What name was proposed on 12/30/1982 in rockingham county with a CERCLIS ID of nhd062004569?",
    "question_th": "มีการเสนอชื่ออะไรเมื่อวันที่ 30/12/1982 ในเขต Rockingham โดยมีรหัส CERCLIS เป็น 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_en": "What name completed construction on 09/19/2008?",
    "question_th": "ชื่ออะไร ก่อสร้างแล้วเสร็จเมื่อวันที่ 19/09/2551?",
    "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_en": "When was the site listed 03/31/1989 in rockingham county proposed?",
    "question_th": "ไซต์ดังกล่าวได้รับการเสนอชื่อเมื่อวันที่ 31/03/1989 ในเขต Rockingham เมื่อใด",
    "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_en": "What CERCLIS ID was listed 10/14/1992?",
    "question_th": "CERCLIS ID ใดถูกระบุไว้เมื่อวันที่ 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_en": "What name was proposed on 09/08/1983 in hillsborough county?",
    "question_th": "มีการเสนอชื่ออะไรเมื่อวันที่ 09/08/1983 ในเขตฮิลส์โบโร?",
    "context": "CREATE TABLE table_name_73 (name VARCHAR, county VARCHAR, proposed VARCHAR)"
  },
  {
    "answer": "SELECT county FROM table_name_61 WHERE cerclis_id = \"nhd062004569\"",
    "question_en": "What county is CERCLIS ID nhd062004569 in?",
    "question_th": "CERCLIS ID nhd062004569 อยู่ในเขตใด?",
    "context": "CREATE TABLE table_name_61 (county VARCHAR, cerclis_id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(week) FROM table_name_87 WHERE record = \"0-11\"",
    "question_en": "What is the total number for the week with a record of 0-11?",
    "question_th": "จำนวนรวมของสัปดาห์ที่มีสถิติ 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_en": "What is the attendance for the date of 11/11/01?",
    "question_th": "ผู้เข้าร่วมในวันที่ 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_en": "what is the average enrollment when the team nickname is wolverines and founded is after 1817?",
    "question_th": "การลงทะเบียนโดยเฉลี่ยคือเท่าไรเมื่อชื่อเล่นของทีมคือวูล์ฟเวอรีนส์และก่อตั้งหลังปี 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_en": "what is the institution when the location is big rapids, michigan?",
    "question_th": "สถาบันไหนในเมื่อที่ตั้งเป็นแก่งใหญ่มิชิแกน?",
    "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_en": "what is the least enrollment when founded after 1809 and the institution is university of michigan?",
    "question_th": "การลงทะเบียนขั้นต่ำเมื่อก่อตั้งหลังปี 1809 และสถาบันคือมหาวิทยาลัยมิชิแกนคือเท่าใด",
    "context": "CREATE TABLE table_name_60 (enrollment INTEGER, founded VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT institution FROM table_name_22 WHERE team_nickname = \"lakers\"",
    "question_en": "what is the institution when the team nickname is lakers?",
    "question_th": "สถาบันอะไรในเมื่อชื่อเล่นของทีมคือเลเกอร์ส?",
    "context": "CREATE TABLE table_name_22 (institution VARCHAR, team_nickname VARCHAR)"
  },
  {
    "answer": "SELECT political_party FROM table_name_72 WHERE name = \"mehdi bej frashëri (2nd time)\"",
    "question_en": "Which Political Party has a Name of mehdi bej frashëri (2nd time)?",
    "question_th": "พรรคการเมืองใดมีชื่อว่า เมห์ดี เบจ ฟราเชรี (ครั้งที่ 2)",
    "context": "CREATE TABLE table_name_72 (political_party VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT political_party FROM table_name_72 WHERE name = \"ibrahim bej biçakçiu\"",
    "question_en": "Which Political Party has a Name of ibrahim bej biçakçiu?",
    "question_th": "พรรคการเมืองใดมีชื่อเป็นอิบราฮิม เบจ บิชากซิอู",
    "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_en": "Which Name has a Term end of 18 july 1944?",
    "question_th": "ชื่อใดมีวาระสิ้นสุดในวันที่ 18 กรกฎาคม พ.ศ. 2487",
    "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_en": "Which Born-Died has a Term start of 4 november 1943?",
    "question_th": "วันเกิดคนไหนมีวาระเริ่มวันที่ 4 พฤศจิกายน พ.ศ. 2486?",
    "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_en": "Which Political Party has a Name of rexhep bej mitrovica?",
    "question_th": "พรรคการเมืองใดมีชื่อ 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ëtar\" AND born_died = \"1905–1972\"",
    "question_en": "Which Term end has a Political Party of balli kombëtar, and a Born-Died of 1905–1972?",
    "question_th": "วาระสิ้นสุดใดมีพรรคการเมืองเป็น balli kombëtar และเกิด-เสียชีวิตในปี 1905–1972",
    "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_en": "/What is Tie No, when Date is 18 February 1956, and when Away Team is Tottenham Hotspur?",
    "question_th": "/Tie No คืออะไร วันที่คือวันที่ 18 กุมภาพันธ์ 1956 และเมื่อทีมเยือนคือท็อตแน่ม ฮ็อตสเปอร์",
    "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_en": "What is Tie No, when Date is 18 February 1956, and when Home Team is Charlton Athletic?",
    "question_th": "Tie No คืออะไร เมื่อวันที่ 18 กุมภาพันธ์ 1956 และเมื่อใดทีมเจ้าบ้านคือ 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_en": "What is Score, when Tie No is Replay, and when Home Team is Sunderland?",
    "question_th": "สกอร์คืออะไร เมื่อเสมอไม่คือรีเพลย์ และเมื่อทีมเหย้าคือซันเดอร์แลนด์",
    "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_en": "What is Home Team, when Date is 18 February 1956, and when Away Team is Blackburn Rovers?",
    "question_th": "ทีมเหย้าคืออะไร วันที่ 18 กุมภาพันธ์ 1956 และเมื่อทีมเยือนคือแบล็คเบิร์น โรเวอร์ส",
    "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_en": "What is Home Team, when Date is 18 February 1956, and when Tie No is 3?",
    "question_th": "ทีมเหย้าคืออะไร เมื่อวันที่ 18 กุมภาพันธ์ 2499 และเมื่อเสมอหมายเลข 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_en": "What is Home Team, when Tie No is 4?",
    "question_th": "ทีมเหย้าคืออะไร เมื่อเสมอหมายเลข 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_en": "What ws the method of resolution for the fight against joe kielur?",
    "question_th": "มีวิธีการแก้ปัญหาในการต่อสู้กับโจ คีเลอร์อย่างไร?",
    "context": "CREATE TABLE table_name_35 (method VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_31 WHERE opponent = \"son hai suk\"",
    "question_en": "What event did Soa Palelei fight against son hai suk?",
    "question_th": "โซอา ปาเลเล่ ปะทะ ซน ไฮสุข เรื่องอะไร?",
    "context": "CREATE TABLE table_name_31 (event VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_60 WHERE year = 1994",
    "question_en": "WHich Venue is in 1994?",
    "question_th": "สถานที่จัดงานใดในปี 1994?",
    "context": "CREATE TABLE table_name_60 (venue VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_93 WHERE year > 1992 AND score = \"1 – 0\" AND winners = \"us chaouia\"",
    "question_en": "WHICH Venue IS after  1992 with a Score of 1 – 0 and a Winners of us chaouia?",
    "question_th": "สถานที่ใดหลังจากปี 1992 ด้วยคะแนน 1 – 0 และผู้ชนะของเรา 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_en": "Which tournament has a clay surface and partner henri leconte in 1983?",
    "question_th": "ทัวร์นาเมนต์ใดที่มีพื้นผิวดินและคู่หูอองรี เลคอนเต้ในปี 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ăstase\"",
    "question_en": "What is the outcome of the tournament with partner ilie năstase?",
    "question_th": "ผลการแข่งขันกับคู่หู ilie năstase เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_65 (outcome VARCHAR, partner VARCHAR)"
  },
  {
    "answer": "SELECT MIN(goals_against) FROM table_name_97 WHERE lost > 27",
    "question_en": "What is the fewest goals against for teams with more than 27 losses?",
    "question_th": "ประตูน้อยที่สุดสำหรับทีมที่แพ้มากกว่า 27 ครั้งคืออะไร?",
    "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_en": "What is the total number of positions for teams with more than 7 draws and under 40 played?",
    "question_th": "จำนวนตำแหน่งทั้งหมดสำหรับทีมที่เสมอมากกว่า 7 นัดและเล่นต่ำกว่า 40 นัดคือเท่าไร?",
    "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_en": "What is the fewest losses for teams with points of 53 and more than 73 goals for?",
    "question_th": "อะไรคือความสูญเสียน้อยที่สุดสำหรับทีมที่มีคะแนน 53 และมากกว่า 73 ประตูเพื่ออะไร?",
    "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_en": "What is the fewest draws for teams with a 0 goal difference and under 55 goals against?",
    "question_th": "ทีมที่เสมอกันน้อยที่สุดด้วยผลต่าง 0 ประตูและเสียประตูน้อยกว่า 55 ประตูคือทีมใด?",
    "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_en": "What is the sum of 2010-11 when the rank is greater than 11?",
    "question_th": "ผลรวมของปี 2553-2554 เมื่ออันดับมากกว่า 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_en": "Which Away has a Date of 14 september 2008, and an Attendance larger than 1881?",
    "question_th": "ทีมเยือนใดมีวันที่ 14 กันยายน พ.ศ. 2551 และมีผู้เข้าร่วมมากกว่าปี พ.ศ. 2424",
    "context": "CREATE TABLE table_name_89 (away VARCHAR, date VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_18 WHERE away = \"victoria\"",
    "question_en": "What was victoria's away date?",
    "question_th": "วันที่ไปของวิคตอเรียคืออะไร?",
    "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_en": "Which Away has a Score of 1:2, and a Home of vida?",
    "question_th": "ทีมเยือนทีมไหนสกอร์ 1:2 และทีมเหย้าของวิด้า?",
    "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_en": "Which Attendance has an Away of real juventud?",
    "question_th": "นักเตะคนไหนที่มีโอกาสไปเยือนยูเวนตุสตัวจริง?",
    "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_en": "What was the lowest attendance in round r1 at H venue?",
    "question_th": "อะไรคือผู้เข้าร่วมที่น้อยที่สุดในรอบ r1 ที่สถานที่ H?",
    "context": "CREATE TABLE table_name_13 (attendance INTEGER, round VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT MAX(pumpers) FROM table_name_78 WHERE cars = 5",
    "question_en": "what is the highest pumpers when cars is 5?",
    "question_th": "รถสูบน้ำสูงสุดเมื่อรถอายุ 5 คันคืออะไร?",
    "context": "CREATE TABLE table_name_78 (pumpers INTEGER, cars VARCHAR)"
  },
  {
    "answer": "SELECT MAX(tankers) FROM table_name_84 WHERE pumpers > 2",
    "question_en": "what is the highest tankers when pumpers is more than 2?",
    "question_th": "เรือบรรทุกน้ำมันที่สูงที่สุดเมื่อปั๊มมากกว่า 2 คืออะไร?",
    "context": "CREATE TABLE table_name_84 (tankers INTEGER, pumpers INTEGER)"
  },
  {
    "answer": "SELECT skip FROM table_name_30 WHERE second = \"philippe caux\"",
    "question_en": "What is the skip with a second of Philippe Caux?",
    "question_th": "การกระโดดข้ามวินาทีของ Philippe Caux คืออะไร?",
    "context": "CREATE TABLE table_name_30 (skip VARCHAR, second VARCHAR)"
  },
  {
    "answer": "SELECT lead FROM table_name_19 WHERE season = \"2004-05\"",
    "question_en": "What is the Lead in the 2004-05 Season?",
    "question_th": "ผู้นำในฤดูกาล 2547-05 คืออะไร?",
    "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_en": "What is the Third in the 1993-94 season where Philippe Caux was a lead?",
    "question_th": "ครั้งที่สามในฤดูกาล 1993-94 ที่ฟิลิปเป้ โกซ์ขึ้นนำคืออะไร?",
    "context": "CREATE TABLE table_name_39 (third VARCHAR, lead VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT skip FROM table_name_40 WHERE lead = \"tony angiboust\"",
    "question_en": "What is the skip when Tony Angiboust was a lead?",
    "question_th": "การข้ามไปคืออะไรเมื่อ Tony Angiboust เป็นผู้นำ?",
    "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_en": "What is the sum of against scores when there are 3 losses and less than 6 games played?",
    "question_th": "ผลรวมของคะแนนเมื่อแพ้ 3 เกมและเล่นน้อยกว่า 6 เกมเป็นเท่าใด",
    "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_en": "What is the highest amount of games played in the 2003-04 season?",
    "question_th": "จำนวนเกมที่เล่นมากที่สุดในฤดูกาล 2546-04 คือเท่าใด?",
    "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_en": "What was the sample size for the poll from Nov 9-11, 2007 with a margin of error less than 4.3?",
    "question_th": "ขนาดตัวอย่างสำหรับการสำรวจระหว่างวันที่ 9-11 พฤศจิกายน 2550 โดยมีข้อผิดพลาดน้อยกว่า 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_en": "What was the sample size for the poll featuring Republican Ron Paul?",
    "question_th": "ขนาดตัวอย่างสำหรับการสำรวจความคิดเห็นที่มี 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_en": "When Tom Purtzer of the United States played what is the maximum score?",
    "question_th": "ตอนที่ Tom Purtzer จาก United States ลงเล่นด้วยสกอร์สูงสุดคือเท่าไหร่?",
    "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_en": "Ben Crenshaw has what To par?",
    "question_th": "Ben Crenshaw มีอะไรให้พาร์บ้าง?",
    "context": "CREATE TABLE table_name_18 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_54 WHERE player = \"nick price\"",
    "question_en": "What was the score to par after two rounds for Nick Price?",
    "question_th": "คะแนนที่จะพาร์หลังจากผ่านไปสองรอบสำหรับ Nick Price คืออะไร?",
    "context": "CREATE TABLE table_name_54 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_32 WHERE country = \"italy\"",
    "question_en": "What place was the player from Italy in ?",
    "question_th": "นักเตะจากอิตาลีอยู่เมืองไหน?",
    "context": "CREATE TABLE table_name_32 (place VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT common_name FROM table_name_18 WHERE color = \"darker colors\"",
    "question_en": "What is the common name for the creature with darker colors?",
    "question_th": "สัตว์ที่มีสีเข้มกว่ามีชื่อสามัญว่าอะไร?",
    "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_en": "What is the length of the Panther Chameleon?",
    "question_th": "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_en": "What is the color of the Chamaeleo Calyptratus?",
    "question_th": "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_en": "What was the TO par for the player who scored 70-68-74-70=282?",
    "question_th": "ค่าพาร์ TO ของผู้เล่นที่ทำคะแนนได้ 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ří novák\"",
    "question_en": "What is Opponents In The Final, when Partner is \"Jiří Novák\"?",
    "question_th": "คู่ต่อสู้ในรอบสุดท้ายคืออะไร เมื่อคู่หูคือ \"Jiří Novák\"?",
    "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_en": "What is Outcome, when Tournament is \"Milan , Italy\"?",
    "question_th": "ผลลัพธ์คืออะไร เมื่อทัวร์นาเมนต์คือ \"มิลาน อิตาลี\"?",
    "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_en": "What is Opponents In The Final, when Surface is \"Carpet\", and when Tournament is \"Milan , Italy\"?",
    "question_th": "คู่ต่อสู้ในรอบสุดท้ายคืออะไร เมื่อ Surface คือ \"พรม\" และเมื่อการแข่งขันคือ \"มิลาน ประเทศอิตาลี\"?",
    "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_en": "What is the total number of Date, when Partner is \"Carl-Uwe Steeb\"?",
    "question_th": "วันที่พันธมิตรคือ \"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_en": "Which team picked a player(s) from South Carolina?",
    "question_th": "ทีมใดเลือกผู้เล่นจากเซาท์แคโรไลนา?",
    "context": "CREATE TABLE table_name_73 (cfl_team VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_40 WHERE player = \"keith shologan\"",
    "question_en": "What college did Keith Shologan play for?",
    "question_th": "Keith Shologan เล่นให้กับวิทยาลัยใด",
    "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_en": "What position does a Keith Shologan, who was picked higher than 6, play?",
    "question_th": "Keith Shologan ที่ถูกเลือกสูงกว่า 6 เล่นตำแหน่งใด?",
    "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_en": "What year before 1980 has is the highest Inflation Index (2000=100)?",
    "question_th": "ปีก่อนปี 1980 ดัชนีเงินเฟ้อสูงสุดคือปีใด (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_en": "Which frequency has voltage of 1.6v and part number kp80524kx300256kc80524kx300256pmg30002002aa?",
    "question_th": "ความถี่ไหนมีแรงดัน 1.6v และเบอร์อะไหล่ 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 = \"μpga2 bga2 mmc-2\"",
    "question_en": "Which model number has socket μpga2 bga2 mmc-2?",
    "question_th": "หมายเลขรุ่นใดมีซ็อกเก็ต μpga2 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_en": "What is the L2 cache for the Mobile Pentium 333?",
    "question_th": "L2 cache สำหรับ 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_en": "How many totals have golds of 3, silvers of 3, and bronzes under 3?",
    "question_th": "มีทั้งหมดกี่เหรียญทอง 3 เหรียญ เงิน 3 เหรียญ และทองแดงต่ำกว่า 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_en": "Which nation has a rank of 7?",
    "question_th": "ชาติใดมีอันดับ 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_en": "What is the average bronze with silvers of 1 and totals over 2?",
    "question_th": "บรอนซ์โดยเฉลี่ยที่มีเงิน 1 และรวมมากกว่า 2 คือเท่าไร?",
    "context": "CREATE TABLE table_name_76 (bronze INTEGER, silver VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT gold FROM table_name_45 WHERE nation = \"germany\"",
    "question_en": "How many golds does Germany have?",
    "question_th": "เยอรมนีมีทองคำกี่อัน?",
    "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_en": "What is the total number of bronzes with totals under 4 and ranks of 10?",
    "question_th": "จำนวนเหรียญทองแดงทั้งหมดที่มีคะแนนรวมต่ำกว่า 4 และอันดับ 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_en": "What is the lowest Points, when Class is 50cc, when Year is 1965, and when Wins is less than 0?",
    "question_th": "คะแนนต่ำสุดคืออะไร เมื่อคลาสคือ 50cc เมื่อปี 1965 และเมื่อชนะน้อยกว่า 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_en": "What is the total number of Year, when Wins is less than 0?",
    "question_th": "จำนวนปีทั้งหมดเมื่อชนะน้อยกว่า 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_en": "What is the sum of Points, when Year is after 1959, and when Class is 250cc?",
    "question_th": "ผลรวมของคะแนนคือเท่าไร เมื่อปีหลังจากปี 1959 และเมื่อระดับเป็น 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_en": "What is the total number of Wins, when Points is less than 1?",
    "question_th": "จำนวนชัยชนะทั้งหมดคือเท่าไร เมื่อคะแนนน้อยกว่า 1?",
    "context": "CREATE TABLE table_name_17 (wins VARCHAR, points INTEGER)"
  },
  {
    "answer": "SELECT SUM(wins) FROM table_name_2 WHERE year = 1959",
    "question_en": "What is the sum of Wins, when Year is 1959?",
    "question_th": "ผลรวมของชัยชนะเมื่อถึงปี 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_en": "What is the fewest games played for teams with 73 goals for and more than 69 goals against?",
    "question_th": "เกมใดที่เล่นน้อยที่สุดสำหรับทีมที่ทำประตูได้ 73 ประตูและเสียประตูมากกว่า 69 ประตู?",
    "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_en": "What is the highest number of goals for for teams with 25 losses?",
    "question_th": "จำนวนประตูสูงสุดสำหรับทีมที่แพ้ 25 นัดคือเท่าไร?",
    "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_en": "What is the most losses for positions under 15 and 66 goals against?",
    "question_th": "ตำแหน่งที่ต่ำกว่า 15 และ 66 ประตูเสียมากที่สุดคืออะไร?",
    "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_en": "What is the average goals against for teams with more than 56 goals for and exactly 50 points?",
    "question_th": "ประตูเฉลี่ยต่อทีมที่มีมากกว่า 56 ประตูและ 50 คะแนนพอดีคือเท่าไร?",
    "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_en": "Which Leader has Spoilt Votes as % of Seats?",
    "question_th": "ผู้นำคนไหนที่เสียคะแนนโหวตเป็น % ของที่นั่ง?",
    "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_en": "What is the %FPv for the Workers' Party?",
    "question_th": "%FPv สำหรับพรรคแรงงานคืออะไร?",
    "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_en": "What is the First Pref Votes for the % FPv of 0.06?",
    "question_th": "การโหวต Pref ครั้งแรกสำหรับ % FPv ที่ 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_en": "What is the First Pref Votes where the Leader is n/a and the Party is Independent?",
    "question_th": "การโหวตล่วงหน้าครั้งแรกคืออะไรโดยที่ผู้นำไม่มีอยู่และพรรคเป็นอิสระ?",
    "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_en": "What is the number of Seats for Leader Enda kenny?",
    "question_th": "จำนวนที่นั่งของผู้นำ 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_en": "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\"?",
    "question_th": "วันที่ถึง [H] คืออะไร เมื่อตำแหน่ง [F] คือ \"กองหลัง\" เมื่อประตูน้อยกว่า 3 เมื่อจำนวนการลงเล่นมากกว่า 113 ครั้ง และเมื่อวันที่เริ่มต้น [G] คือ \"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_en": "What is Club Source [I ], when Name is \"Andrew McCombie Category:Articles With hCards\"?",
    "question_th": "Club Source [I ] คืออะไร เมื่อชื่อเป็น \"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_en": "What is Name, when Goals is \"80\", and when Club Source [I ] is \"71 [ dead link ]\"?",
    "question_th": "ชื่อคืออะไร เมื่อเป้าหมายคือ \"80\" และเมื่อ Club Source [I ] คือ \"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_en": "What is Appearances, when Postion [F ] is \"Defender\", and when Date to [H ] is \"1938\"?",
    "question_th": "การปรากฏตัวคืออะไร เมื่อตำแหน่ง [F ] คือ \"ผู้พิทักษ์\" และเมื่อใด วันที่ถึง [H ] คือ \"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_en": "WHAT IS AVERAGE SCORE WITH T3 PLACE, FOR DOUG SANDERS?",
    "question_th": "คะแนนเฉลี่ยของอันดับ T3 คืออะไรสำหรับดั๊ก แซนเดอร์ส",
    "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_en": "How much is the money ($) when the country is united states, to par is e and the score is 72-75-70-71=288?",
    "question_th": "เงินเท่าไหร่ ($) เมื่อประเทศคือสหรัฐอเมริกา พาร์คือ e และคะแนนคือ 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_en": "what is the to par when the player is roger maltbie?",
    "question_th": "อะไรคือสิ่งที่ต้องตราไว้เมื่อผู้เล่นคือโรเจอร์ มอลต์บี?",
    "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_en": "How much is the money ($) when the score is 67-71-72-72=282?",
    "question_th": "เงินเท่าไหร่ ($) เมื่อคะแนนเป็น 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_en": "what is the to par when the place is 8?",
    "question_th": "จะต้องพาร์เท่าไรเมื่ออันดับที่ 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_en": "WHAT IS THE SCORE OF THE GAME LARGER THAN 47, AT THE ROSE GARDEN 20,250 IN ATTENDANCE?",
    "question_th": "คะแนนของเกมที่มากกว่า 47 คืออะไร ที่ ROSE GARDEN 20,250 คนเข้าร่วม?",
    "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_en": "What tournament was on May 31, 1987?",
    "question_th": "การแข่งขันอะไรในวันที่ 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_en": "What tournament was on May 31, 1987?",
    "question_th": "การแข่งขันอะไรในวันที่ 31 พฤษภาคม 1987?",
    "context": "CREATE TABLE table_name_93 (tournament VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_72 WHERE winning_score = –9(69 - 71 - 67 = 207)",
    "question_en": "What tournament had a winning score of –9 (69-71-67=207)?",
    "question_th": "ทัวร์นาเมนต์ใดมีคะแนนชนะ –9 (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 = –13(75 - 68 - 68 = 211)",
    "question_en": "Who was the runner(s)-up when the winning score was –13 (75-68-68=211)?",
    "question_th": "ใครคือรองชนะเลิศเมื่อคะแนนชนะคือ –13 (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_en": "What tournament had a 1 point margin of victory?",
    "question_th": "ทัวร์นาเมนต์ใดมีแต้มนำชนะ 1 แต้ม?",
    "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_en": "What tournament was Laura Davies the runner-up?",
    "question_th": "ลอร่า เดวีส์ เป็นรองแชมป์ทัวร์นาเมนต์ใด",
    "context": "CREATE TABLE table_name_50 (tournament VARCHAR, runner_s__up VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_36 WHERE opponent = \"bob stines\"",
    "question_en": "What is the Location of the match against Bob Stines?",
    "question_th": "สถานที่แข่งขันกับ 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_en": "What is the venue of the game that was played on 23 October 1966?",
    "question_th": "สนามแข่งขันที่เล่นเมื่อวันที่ 23 ตุลาคม พ.ศ. 2509 คือที่ไหน?",
    "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_en": "Where was the friendly competition on 17 December 1967 played at?",
    "question_th": "การแข่งขันกระชับมิตรเมื่อวันที่ 17 ธันวาคม พ.ศ. 2510 จัดขึ้นที่ไหน?",
    "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_en": "What 2009 has statistics by surface in 2012?",
    "question_th": "ปี 2552 มีสถิติตามพื้นผิวในปี 2555 อะไรบ้าง",
    "context": "CREATE TABLE table_name_66 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_12 WHERE 2007 = \"atp world tour masters 1000\"",
    "question_en": "What 2001 has a ATP World Tour Masters 1000 2007?",
    "question_th": "ปี 2001 มี 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_en": "What 2010 has an A 2006 & 2011?",
    "question_th": "ปี 2010 อะไรมี 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_en": "What 2009 has a 0 in 2008 & 2010?",
    "question_th": "ปี 2552 อะไรมี 0 ในปี 2551 และ 2553",
    "context": "CREATE TABLE table_name_3 (Id VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_96 WHERE country = \"united states\" AND player = \"hale irwin\"",
    "question_en": "What was the finishing position of Hale Irwin, of the United states?",
    "question_th": "ตำแหน่งสุดท้ายของ Hale Irwin จากสหรัฐอเมริกาคืออะไร?",
    "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_en": "Where did the player who won in 1965 finish?",
    "question_th": "ผู้เล่นที่ชนะในปี 1965 จบที่ไหน?",
    "context": "CREATE TABLE table_name_92 (finish VARCHAR, year_s__won VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_29 WHERE player = \"jerry pate\"",
    "question_en": "Where did Jerry Pate finish?",
    "question_th": "Jerry Pate จบที่ไหน?",
    "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_en": "What was the average total for the player from the United States, who won in 1978?",
    "question_th": "ค่าเฉลี่ยรวมของผู้เล่นจากสหรัฐอเมริกาที่ชนะในปี 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_en": "What team was the opponent for the game played on September 19, 1999?",
    "question_th": "ทีมใดเป็นคู่ต่อสู้ในเกมที่เล่นเมื่อวันที่ 19 กันยายน พ.ศ. 2542?",
    "context": "CREATE TABLE table_name_92 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT AVG(week) FROM table_name_46 WHERE opponent = \"bye\"",
    "question_en": "What week was the bye week?",
    "question_th": "สัปดาห์ไหนเป็นสัปดาห์ก่อน?",
    "context": "CREATE TABLE table_name_46 (week INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_87 WHERE date = \"december 19, 1999\"",
    "question_en": "What team was the opponent for the game played on December 19, 1999?",
    "question_th": "ทีมใดเป็นคู่ต่อสู้ในเกมที่เล่นเมื่อวันที่ 19 ธันวาคม พ.ศ. 2542?",
    "context": "CREATE TABLE table_name_87 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_45 WHERE week = 7",
    "question_en": "What is the result from the game played on week 7?",
    "question_th": "ผลการแข่งขันที่เล่นในสัปดาห์ที่ 7 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_45 (result VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT MIN(seats) FROM table_name_86 WHERE election = 1992",
    "question_en": "What is the lowest number of seats of the 1992 election?",
    "question_th": "จำนวนที่นั่งต่ำสุดในการเลือกตั้งปี 2535 คือเท่าใด",
    "context": "CREATE TABLE table_name_86 (seats INTEGER, election VARCHAR)"
  },
  {
    "answer": "SELECT seats FROM table_name_96 WHERE share_of_votes = \"41.2%\"",
    "question_en": "How many seats had a 41.2% share of votes?",
    "question_th": "มีที่นั่งกี่ที่นั่งที่มีคะแนนเสียง 41.2%?",
    "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_en": "What is the share of votes with 3,567,021 NDC votes?",
    "question_th": "ส่วนแบ่งการโหวตด้วยคะแนนเสียง 3,567,021 NDC เป็นเท่าใด",
    "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–27\"",
    "question_en": "What was the total when the set 3 score was 25–27?",
    "question_th": "เมื่อคะแนนชุดที่ 3 อยู่ที่ 25–27 คะแนนรวมเป็นเท่าใด",
    "context": "CREATE TABLE table_name_12 (total VARCHAR, set_3 VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_88 WHERE total = \"60–77\"",
    "question_en": "On what date was the total 60–77?",
    "question_th": "ยอดรวม 60–77 คือวันไหน?",
    "context": "CREATE TABLE table_name_88 (date VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT set_1 FROM table_name_58 WHERE total = \"117–109\"",
    "question_en": "What is the score for set 1 with a total of 117–109?",
    "question_th": "คะแนนชุดที่ 1 รวม 117–109 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_58 (set_1 VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_28 WHERE car_no = \"11\"",
    "question_en": "What team operates car 11?",
    "question_th": "ทีมงานใดเป็นผู้ดำเนินการรถ 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_en": "What was the time/retired of Darren Manning?",
    "question_th": "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_en": "How many points did car 20 score?",
    "question_th": "รถ 20 ได้คะแนนเท่าไร?",
    "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_en": "What is the car number for Jeff Simmons on the Rahal Letterman team?",
    "question_th": "รถของเจฟฟ์ ซิมมอนส์ในทีมราฮาล เล็ตเตอร์แมนหมายเลขอะไร",
    "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_en": "What is Name, when Length Meters is greater than 66.4, and when Km From Kingston is 138.8?",
    "question_th": "ชื่อคืออะไร เมื่อเมตรความยาวมากกว่า 66.4 และเมื่อ Km จาก Kingston คือ 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_en": "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?",
    "question_th": "จำนวนฟุตยาวทั้งหมดคือเท่าไร เมื่อเขตตำบลคือคลาเรนดอน เมื่อกิโลเมตรจากคิงส์ตันคือ 71.2 และเมื่อเมตรความยาวน้อยกว่า 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_en": "What is the highest Km From Kingston, when Mi From Kingston is less than 108, and when Length Meters is 260.6?",
    "question_th": "กิโลเมตรสูงสุดจาก Kingston คือเมื่อ Mi จาก Kingston น้อยกว่า 108 และเมื่อความยาวเมตรอยู่ที่ 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_en": "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?",
    "question_th": "Lenth Feet คืออะไร เมื่อ Mi From Kingston มากกว่า 84.5 เมื่อความยาวเมตรมากกว่า 55.5 และเมื่อไม่มีชื่อ",
    "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_en": "Which Place has a Player of lee trevino?",
    "question_th": "สถานที่ใดที่มีผู้เล่นของลี เทรวิโน?",
    "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_en": "Name Country which has a Place of t7, and a Score of 73-69-73=215?",
    "question_th": "ตั้งชื่อประเทศซึ่งมีสถานที่ t7 และคะแนน 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_en": "Which week held a tournament in Rome?",
    "question_th": "สัปดาห์ใดที่จัดการแข่งขันในโรม?",
    "context": "CREATE TABLE table_name_49 (week VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT res FROM table_name_79 WHERE record = \"12-2\"",
    "question_en": "What is the result of the fight when record is 12-2?",
    "question_th": "ผลการชกเมื่อสกอร์ 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_en": "How many rounds was the fight at UFC 34?",
    "question_th": "การต่อสู้ใน UFC 34 มีกี่รอบ?",
    "context": "CREATE TABLE table_name_7 (round INTEGER, event VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_26 WHERE opponent = \"zaza tkeshelashvili\"",
    "question_en": "What is the location of the fight against Zaza Tkeshelashvili?",
    "question_th": "ตำแหน่งของการต่อสู้กับ 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ōkanjū\"",
    "question_en": "what is the average year when the title is baka to test to shōkanjū?",
    "question_th": "ปีเฉลี่ยคือเท่าไรที่ชื่อบากะจะทดสอบโชคันจู?",
    "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_en": "what is the title when the imprint is dengeki bunko and the artist is kiyotaka haimura?",
    "question_th": "สำนักพิมพ์คือ dengeki bunko และศิลปินคือ 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_en": "what is the imprint when the title is owari no chronicle (ahead series)?",
    "question_th": "รอยประทับเมื่อชื่อเรื่องคือ owari no Chronicle (ซีรีส์หน้า) คืออะไร?",
    "context": "CREATE TABLE table_name_22 (imprint VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_name_42 WHERE author = \"reki kawahara\"",
    "question_en": "what is the earliest year when the author is reki kawahara?",
    "question_th": "ปีแรกสุดที่ผู้เขียนคือ เรกิ คาวาฮาระ คือปีใด?",
    "context": "CREATE TABLE table_name_42 (year INTEGER, author VARCHAR)"
  },
  {
    "answer": "SELECT character FROM table_name_75 WHERE artist = \"take\" AND year < 2006",
    "question_en": "who is the character when the artist is take and the year is before 2006?",
    "question_th": "ใครคือตัวละครเมื่อศิลปินรับและปีก่อนปี 2549?",
    "context": "CREATE TABLE table_name_75 (character VARCHAR, artist VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT language FROM table_name_15 WHERE draw = 3",
    "question_en": "Which language has 3 draws?",
    "question_th": "ภาษาไหนมี 3 ขีด?",
    "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_en": "What is the away team score for the match at 6:00 PM and an away team of Hawthorn?",
    "question_th": "สกอร์ทีมเยือนเวลา 18.00 น. และทีมเยือนฮอว์ธอร์นเป็นเท่าไหร่?",
    "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_en": "What is the Tenure of the Officer with a Date of death of 2001-08-31?",
    "question_th": "วาระการดำรงตำแหน่งของเจ้าหน้าที่ซึ่งมีวันที่เสียชีวิตในวันที่ 31-08-2544 คืออะไร?",
    "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_en": "What is Detective Donald William Schneider's Cause of death?",
    "question_th": "สาเหตุการเสียชีวิตของนักสืบโดนัลด์ วิลเลียม ชไนเดอร์คืออะไร",
    "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_en": "What is Gary David Saunders' Tenure?",
    "question_th": "การดำรงตำแหน่งของ Gary David Saunders คืออะไร?",
    "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_en": "What is gunfire victim Maria Cecilia Rosa with 6 years of Tenure Date of Death?",
    "question_th": "เหยื่อกระสุนปืน Maria Cecilia Rosa ที่มีอายุ 6 ปี วันแห่งความตายคืออะไร?",
    "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_en": "What is Lijsttrekker, when Year is after 1990, and when Chair is \"Ingrid Van Engelshoven\"?",
    "question_th": "Lijsttrekker คืออะไร เมื่อปีคือหลังปี 1990 และเมื่อใดที่ประธานคือ \"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_en": "What is Fractievoorzitter, when Lijsttrekker is \"No Elections\", and when Year is after 2005?",
    "question_th": "Fractievoorzitter คืออะไร เมื่อ Lijsttrekker เป็น \"ไม่มีการเลือกตั้ง\" และเมื่อใดคือหลังปี 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_en": "What is Cabinet, when Year is after 1981, when Fractievoorzitter is \"Hans Van Mierlo\", and when Chair is \"W.I.J.M. Vrijhoef\"?",
    "question_th": "คณะรัฐมนตรีคืออะไร เมื่อปีคือหลังปี 1981 เมื่อ Fractievoorzitter คือ \"Hans Van Mierlo\" และเมื่อใดเป็นประธานคือ \"WIJM 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_en": "What is Lijsttrekker, when Cabinet is \"Hans Van Mierlo\", and when Fractievoorzitter is \"Thom De Graaf\"?",
    "question_th": "Lijsttrekker คืออะไร เมื่อ Cabinet คือ \"Hans Van Mierlo\" และเมื่อ Fractievoorzitter คือ \"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_en": "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\"?",
    "question_th": "คณะรัฐมนตรีคืออะไร เมื่อปีก่อนปี 2544 เมื่อ Lijsttrekker \"ไม่มีการเลือกตั้ง\" เมื่อ Fractievoorzitter คือ \"Hans Van Mierlo\" และเมื่อใดเป็นประธานคือ \"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_en": "Which territory has a channel of 144 and a broadcaster of Astro?",
    "question_th": "ดินแดนใดที่มีช่อง 144 และผู้ประกาศข่าวของ 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_en": "What is the tennis status for youngstown state?",
    "question_th": "สถานะเทนนิสของรัฐยังส์ทาวน์เป็นอย่างไร?",
    "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_en": "Which school has yes for soccer, tennis and indoor track.",
    "question_th": "โรงเรียนไหนมีฟุตบอล เทนนิส และลู่วิ่งในร่ม",
    "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_en": "What is the basketball status for Valparaiso who has an indoor track status of yes?",
    "question_th": "สถานะบาสเก็ตบอลของบัลปาราอีโซที่มีสถานะสนามในร่มเป็นใช่คืออะไร?",
    "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_en": "What is the indoor track status for the school that has yes for tennis and no for golf?",
    "question_th": "สถานะลู่วิ่งในร่มของโรงเรียนที่ตอบว่าใช่สำหรับเทนนิสและไม่ใช่สำหรับกอล์ฟคืออะไร?",
    "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_en": "What is th eswimming status for the school that has yes on indoor track, soccer and tennis?",
    "question_th": "สถานะการว่ายน้ำของโรงเรียนที่ใช่สำหรับลู่วิ่งในร่ม ฟุตบอล และเทนนิสคืออะไร?",
    "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_en": "What is the status for tennis at cleveland state who has yes for swimming, golf and soccer?",
    "question_th": "สถานะของเทนนิสที่รัฐคลีฟแลนด์ที่ยินยอมสำหรับการว่ายน้ำ กอล์ฟ และฟุตบอลคืออะไร?",
    "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_en": "What event did Soares fight against josh spearman?",
    "question_th": "เหตุการณ์ใดที่ Soares ต่อสู้กับ Josh Spearman?",
    "context": "CREATE TABLE table_name_69 (event VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT MIN(round) FROM table_name_4 WHERE method = \"decision\"",
    "question_en": "What round was the fight won or loss by a decision?",
    "question_th": "การต่อสู้ชนะหรือแพ้จากการตัดสินรอบใด?",
    "context": "CREATE TABLE table_name_4 (round INTEGER, method VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_65 WHERE round = 3 AND method = \"decision\"",
    "question_en": "Where was the fight that lasted 3 rounds and was won or loss by a decision?",
    "question_th": "ศึกที่กินเวลาถึง 3 รอบ ตัดสินกันที่ใดคือชนะหรือแพ้?",
    "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_en": "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?",
    "question_th": "อะไรคือ 5 อันดับแรกที่ต่ำที่สุดในปีหลังปี 1995 ทีมคือ #15 บิลลี่ บอลล์ มอเตอร์สปอร์ต และออกสตาร์ทมากกว่า 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_en": "What was the method in the fight against Chris Myers?",
    "question_th": "มีวิธีการต่อสู้กับคริส ไมเยอร์สอย่างไร?",
    "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_en": "What is the record in TKO 20: Champion Vs Champion?",
    "question_th": "บันทึกใน 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_en": "How many rounds in the fight in Quebec, Canada against David Loiseau?",
    "question_th": "การชกที่เมืองควิเบก ประเทศแคนาดา พบกับ 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_en": "Which event has a method of TKO (punches)?",
    "question_th": "รายการใดมีวิธี TKO (หมัด)?",
    "context": "CREATE TABLE table_name_52 (event VARCHAR, method VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_22 WHERE method = \"technical submission (guillotine choke)\"",
    "question_en": "Who is the opponent when the method is technical submission (guillotine choke)?",
    "question_th": "คู่ต่อสู้คือใครเมื่อวิธีการยอมแพ้ทางเทคนิค (กิโยตินสำลัก)?",
    "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_en": "What was the school/club after round 12, and picked smaller than 342?",
    "question_th": "หลังจากรอบ 12 รอบที่ 12 โรงเรียน/สโมสรคืออะไร และเลือกได้น้อยกว่า 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_en": "What is the average pick for Florida State?",
    "question_th": "การเลือกเฉลี่ยสำหรับรัฐฟลอริดาคือเท่าไร?",
    "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_en": "What is the total number for the pick of the player Wayne Fowler and a round after 7?",
    "question_th": "จำนวนรวมของการเลือกผู้เล่นเวย์น ฟาวเลอร์และรอบหลัง 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_en": "Which college had an overall smaller than 315 in round 17?",
    "question_th": "วิทยาลัยใดมีคะแนนรวมน้อยกว่า 315 ในรอบ 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_en": "Which college with a position of rb had a pick larger than 6 in round 28?",
    "question_th": "วิทยาลัยใดที่มีตำแหน่ง rb มีตัวเลือกมากกว่า 6 ในรอบ 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_en": "With an overall record of MU, 15-8 what is the at neutral site?",
    "question_th": "ด้วยสถิติโดยรวมของ MU 15-8 ไซต์ที่เป็นกลางคืออะไร?",
    "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_en": "For what current streak is KU, 8-2 under last 10 meetings?",
    "question_th": "มก. 8-2 จาก 10 นัดล่าสุด สตรีคปัจจุบันเป็นอย่างไรบ้าง?",
    "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_en": "What is the record for the last 10 meetings when the overall record is *as of March 14, 2013?",
    "question_th": "บันทึกการประชุม 10 ครั้งล่าสุดเมื่อบันทึกรวมคือ *ณ วันที่ 14 มีนาคม 2556 เป็นเท่าใด",
    "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_en": "With an overall record of KSU, 118-117 what is the last 5 meetings?",
    "question_th": "ด้วยสถิติรวม คสช. 118-117 5 นัดหลังสุดเป็นอย่างไรบ้าง?",
    "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_en": "What is the record at Columbia when KU, 4-1 is the record for the last 5 minutes?",
    "question_th": "สถิติที่โคลัมเบียเป็นไงบ้าง เมื่อ มก. 4-1 เป็นสถิติช่วง 5 นาทีสุดท้าย?",
    "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_en": "What was the streak at the game at the Miami Orange Bowl?",
    "question_th": "สตรีคในเกมที่ไมอามี ออเรนจ์ โบวล์เป็นอย่างไรบ้าง?",
    "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_en": "Who was the opposing team at Schaefer Stadium later in the season than week 7?",
    "question_th": "ใครคือทีมตรงข้ามที่ Schaefer Stadium ในฤดูกาลหลังสัปดาห์ที่ 7?",
    "context": "CREATE TABLE table_name_59 (opponent VARCHAR, week VARCHAR, stadium VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_77 WHERE week = 14",
    "question_en": "What was the result in week 14?",
    "question_th": "สัปดาห์ที่ 14 ผลลัพธ์เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_77 (result VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_84 WHERE round = \"sf\"",
    "question_en": "What team was the opponent when the round was sf?",
    "question_th": "คู่ต่อสู้คือทีมใดเมื่อรอบคือ 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_en": "What is the number of people in attendance when venue shows A, and Di Matteo, M. Hughes were the scorers?",
    "question_th": "มีคนเข้าร่วมงานกี่คนเมื่อสนามแสดง A และดิ มัตเตโอ, เอ็ม. ฮิวจ์สเป็นผู้ทำประตู?",
    "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_en": "What is the highest rank that has 5 silvers, less than 5 golds, and less than 7 total medals?",
    "question_th": "อันดับสูงสุดที่มี 5 เหรียญเงิน น้อยกว่า 5 เหรียญทอง และเหรียญทั้งหมดน้อยกว่า 7 เหรียญคืออะไร?",
    "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_en": "What is the least amount of silvers for a team with less than 4 golds and less than 5 total medals?",
    "question_th": "จำนวนเหรียญเงินขั้นต่ำสำหรับทีมที่มีน้อยกว่า 4 เหรียญทองและมีเหรียญทั้งหมดน้อยกว่า 5 เหรียญคือเท่าใด",
    "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_en": "Who was the opponent for the 2003 davis cup europe/africa group ii?",
    "question_th": "ใครคือคู่ต่อสู้ในเดวิสคัพยุโรป/แอฟริกากลุ่ม 2 2003?",
    "context": "CREATE TABLE table_name_23 (opponent VARCHAR, edition VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_21 WHERE opponent = \"sergis kyratzis\"",
    "question_en": "What is the round when the match was against sergis kyratzis?",
    "question_th": "แมตช์นี้พบกับ เซอร์จิส คีรัตซิส ในรอบใด?",
    "context": "CREATE TABLE table_name_21 (round VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT MAX(2012 AS _enrolment) FROM table_name_5 WHERE school_name = \"école mathieu-martin\" AND year_open > 1972",
    "question_en": "WHAT IS THE HIGHEST 2012 ENROLLMENT FOR école mathieu-martin, AFTER 1972?",
    "question_th": "école Mathieu-martin มีการลงทะเบียนเรียนสูงสุดในปี 2012 หลังจากปี 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 = \"école saint-therèse\" AND year_open > 1954",
    "question_en": "WHAT IS THE ENROLLMENT FOR école saint-therèse AFTER 1954?",
    "question_th": "การลงทะเบียนสำหรับ école saint-therèse หลังจากปี 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_en": "What was Fuzzy Zoeller's score in the United States?",
    "question_th": "คะแนนของ Fuzzy Zoeller ในสหรัฐอเมริกาเป็นเท่าใด",
    "context": "CREATE TABLE table_name_82 (score VARCHAR, country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_52 WHERE player = \"miller barber\"",
    "question_en": "Where is Miller Barber from?",
    "question_th": "มิลเลอร์ บาร์เบอร์ มาจากไหน?",
    "context": "CREATE TABLE table_name_52 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_80 WHERE player = \"craig stadler\"",
    "question_en": "What was Craig Stadler's score?",
    "question_th": "คะแนนของ Craig Stadler คืออะไร?",
    "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_en": "What is the to par for Leonard Thompson from the United States with a place of T6?",
    "question_th": "ลีโอนาร์ด ทอมป์สัน จากสหรัฐอเมริกาอันดับ 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_en": "what position did the player play who had a number of 15 who played in 1987?",
    "question_th": "นักเตะคนไหนเล่นได้จำนวน 15 คน เมื่อปี 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_en": "What was the attendance for the week 1 game?",
    "question_th": "ผู้เข้าชมเกมสัปดาห์ที่ 1 เป็นอย่างไรบ้าง?",
    "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_en": "Who was the opponent in the 1 round fight in the Ultimate Fighter 2 Finale?",
    "question_th": "คู่ต่อสู้ในการต่อสู้ 1 รอบใน 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_en": "Who is the opponent in the fight of 1 round when the record is 18-7?",
    "question_th": "คู่ต่อสู้คือใครในไฟต์ 1ยก เมื่อสถิติ 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_en": "What is the record at the UW: Ultimate Fight Minnesota?",
    "question_th": "บันทึกที่ 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_en": "What is the record in the 2 round fight that ended by submission (injury)?",
    "question_th": "ไฟต์ 2 รอบที่จบลงด้วยการซับมิชชัน (บาดเจ็บ) เป็นอย่างไรบ้าง?",
    "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_en": "Who is the opponent at the IFA: Clash of the Champions?",
    "question_th": "คู่ต่อสู้ใน 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_en": "What is the record that resulted in a loss at the RSF: Shooto Challenge 2?",
    "question_th": "อะไรคือสถิติที่ส่งผลให้พ่ายแพ้ใน 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_en": "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?",
    "question_th": "ค่าเฉลี่ย B (สูงสุด) คืออะไร เมื่อ C (สูงสุด) มากกว่า 156 ความเรียวคือ 1:19.231 และ D (สูงสุด) น้อยกว่า 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_en": "With a Morse Taper number less than 3 and a C (max) of 59.5 what is the total of D (max)?",
    "question_th": "ด้วยหมายเลข Morse Taper น้อยกว่า 3 และ C (สูงสุด) เท่ากับ 59.5 ผลรวมของ D (สูงสุด) เป็นเท่าใด",
    "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_en": "What's the total of the Morse Taper number when the D (max) is 20 and the B (max) greater than 94?",
    "question_th": "จำนวน Morse Taper ทั้งหมดเมื่อ D (สูงสุด) คือ 20 และ B (สูงสุด) มากกว่า 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_en": "What total D (max) has a taper of 1:20.047, and a C (max) bigger than 65.5?",
    "question_th": "D (สูงสุด) ทั้งหมดใดที่มีส่วนเรียวเป็น 1:20.047 และ C (สูงสุด) มากกว่า 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_en": "What is the minimum D (max) when the Morse Taper number is less than 0?",
    "question_th": "ค่าต่ำสุด D (สูงสุด) คือเท่าใดเมื่อหมายเลข Morse Taper น้อยกว่า 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_en": "What is the average React, when Mark is less than 7.93?",
    "question_th": "React เฉลี่ยเป็นเท่าไหร่เมื่อ Mark น้อยกว่า 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_en": "What is the lowest React, when Name is \"Candice Davis\", and when Lane is less than 3?",
    "question_th": "React ต่ำสุดคืออะไร เมื่อ Name คือ \"Candice Davis\" และเมื่อ Lane น้อยกว่า 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_en": "What is the total number of Lane, when Mark is \"7.93\", and when React is less than 0.145?",
    "question_th": "จำนวนเลนทั้งหมดคือเท่าไร เมื่อ Mark อยู่ที่ \"7.93\" และเมื่อ React น้อยกว่า 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_en": "What is the average React, when Name is \"Candice Davis\", and when Lane is less than 3?",
    "question_th": "React โดยเฉลี่ยคือเท่าใด เมื่อ Name คือ \"Candice Davis\" และเมื่อ Lane น้อยกว่า 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_en": "What is the total number of Mark, when Country is \"Russia\", and when React is less than 0.165?",
    "question_th": "จำนวน Mark ทั้งหมดเมื่อประเทศคือ \"รัสเซีย\" และเมื่อ React น้อยกว่า 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_en": "What is Round, when Method is \"submission (reverse armbar)\"?",
    "question_th": "Round คืออะไร เมื่อ Method คือ \"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_en": "What is the total number of Round(s), when Time is \"n/a\", and when Location is \"Canton, Ohio, USA\"?",
    "question_th": "จำนวนรอบทั้งหมดคือเท่าไร เมื่อเวลาเป็น \"ไม่มี\" และเมื่อสถานที่คือ \"แคนตัน โอไฮโอ สหรัฐอเมริกา\"",
    "context": "CREATE TABLE table_name_75 (round VARCHAR, time VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_12 WHERE opponent = \"jonathan goulet\"",
    "question_en": "What is Location, when Opponent is \"Jonathan Goulet\"?",
    "question_th": "Location คืออะไร เมื่อคู่ต่อสู้คือ \"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_en": "What is Record, when Method is \"submission (triangle choke)\", and when Time is 0:48?",
    "question_th": "บันทึกคืออะไร เมื่อวิธีการเป็น \"การส่ง (สำลักสามเหลี่ยม)\" และเมื่อเวลาเป็น 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_en": "When was the premiere of the show that had a rank of #7?",
    "question_th": "ละครที่ได้อันดับ 7 เปิดตัวรอบปฐมทัศน์เมื่อไหร่?",
    "context": "CREATE TABLE table_name_30 (premiere VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT finale FROM table_name_62 WHERE premiere = \"september 24, 2002\"",
    "question_en": "When was the finale played when the show premiered on September 24, 2002?",
    "question_th": "ตอนจบเล่นเมื่อใดเมื่อรายการเปิดตัวในวันที่ 24 กันยายน พ.ศ. 2545",
    "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_en": "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?",
    "question_th": "จำนวนการดูขั้นต่ำที่ดูรายการเมื่อเกิน 22 ตอนและตอนจบคือวันที่ 23 พฤษภาคม 2538 คือเท่าใด",
    "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_en": "Which title was created in 2001 by Mellow?",
    "question_th": "ชื่อใดที่ถูกสร้างขึ้นในปี 2544 โดย Mellow?",
    "context": "CREATE TABLE table_name_73 (title VARCHAR, date VARCHAR, artist VARCHAR)"
  },
  {
    "answer": "SELECT artist FROM table_name_41 WHERE number = \"atm24016\"",
    "question_en": "Which artist has a serial number of ATM24016?",
    "question_th": "ศิลปินคนไหนมีหมายเลขประจำเครื่อง ATM24016?",
    "context": "CREATE TABLE table_name_41 (artist VARCHAR, number VARCHAR)"
  },
  {
    "answer": "SELECT MAX(date) FROM table_name_56 WHERE number = \"infec 107cdsx\"",
    "question_en": "What is the latest date that has a serial number of Infec 107CDSX?",
    "question_th": "วันที่ล่าสุดที่มีหมายเลขซีเรียลของ Infec 107CDSX คืออะไร?",
    "context": "CREATE TABLE table_name_56 (date INTEGER, number VARCHAR)"
  },
  {
    "answer": "SELECT artist FROM table_name_68 WHERE number = \"booncd1\"",
    "question_en": "Which artist has a serial number of BOONCD1?",
    "question_th": "ศิลปินคนไหนมีซีเรียลนัมเบอร์ 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_en": "What is the highest Game, when Streak is \"Win 1\", and when Date is \"February 18\"?",
    "question_th": "เกมใดที่สูงที่สุด เมื่อสตรีคคือ \"ชนะ 1\" และเมื่อใดคือวันที่ \"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_en": "Which Away team has a Home team of walsall?",
    "question_th": "ทีมเยือนทีมไหนมีทีมเจ้าบ้านอย่างวอลซอลล์?",
    "context": "CREATE TABLE table_name_3 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_48 WHERE score = \"2–2\" AND away_team = \"aylesbury united\"",
    "question_en": "Which Date has a Score of 2–2, and an Away team of aylesbury united?",
    "question_th": "วันไหนมีสกอร์ 2–2 และทีมเยือนของ เอลส์บิวรี ยูไนเต็ด?",
    "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_en": "Which Score has a Tie no of 33?",
    "question_th": "คะแนนใดมีคะแนนเสมอกันที่ 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_en": "Which Home team has a Tie no of replay, a Date of 19 november 1985, and an Away team of tranmere rovers?",
    "question_th": "ทีมเหย้าใดที่เสมอกันในการแข่งขันนัดรีเพลย์ วันที่ 19 พฤศจิกายน พ.ศ. 2528 และทีมเยือนที่มีทรานเมียร์โรเวอร์?",
    "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_en": "Which Score has a Home team of windsor & eton?",
    "question_th": "สกอร์ไหนมีทีมเหย้า วินด์เซอร์ แอนด์ อีตัน?",
    "context": "CREATE TABLE table_name_30 (score VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_60 WHERE home_team = \"rochdale\"",
    "question_en": "Which Date has a Home team of rochdale?",
    "question_th": "นัดไหนมีทีมเหย้าของโรชเดล?",
    "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_en": "In the game that has a score of 71-71-70-73=285 what is the to par?",
    "question_th": "ในเกมที่มีคะแนน 71-71-70-73=285 พาร์คืออะไร?",
    "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_en": "What is score of the game that was at a paace of t4, and had the player Butch Baird?",
    "question_th": "คะแนนของเกมที่อยู่ที่ t4 และมีผู้เล่น 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_en": "Which country has the player Johnny Miller?",
    "question_th": "ประเทศใดมีผู้เล่นจอห์นนี่มิลเลอร์?",
    "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_en": "Which player has a score of 70-68-69-73=280 and a place of t4?",
    "question_th": "นักเตะคนไหนมีคะแนน 70-68-69-73=280 และอันดับ 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_en": "What is the lowest 1994-1995, when Points is 145, and when Played is less than 114?",
    "question_th": "ต่ำสุดในปี 1994-1995 คือเมื่อแต้มคือ 145 และเมื่อเล่นน้อยกว่า 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 – 0\"",
    "question_en": "What date that was the league position was 1st, and the result F– A was 5 – 0?",
    "question_th": "วันที่เท่าไหร่ที่เป็นตำแหน่งลีกคือที่ 1 และผลการแข่งขัน F– A คือ 5 – 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_en": "What date was the opponent Nottingham Forest, and the H/A was A?",
    "question_th": "คู่ต่อสู้คือน็อตติ้งแฮม ฟอเรสต์วันที่เท่าไหร่ และ H/A คือ 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_en": "What date was Notts County the opponent and the league position was 1st?",
    "question_th": "น็อตต์ส เคาน์ตี้ เป็นฝ่ายตรงข้ามวันที่เท่าไหร่ และอันดับในลีกอยู่ที่ 1 วันไหน?",
    "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_en": "What is the mark for the runner in lanes under 2 and heats under 5?",
    "question_th": "เครื่องหมายสำหรับนักวิ่งในเลนที่ต่ำกว่า 2 และฮีตต่ำกว่า 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_en": "Who is in heat 5 from Guyana?",
    "question_th": "ใครอยู่ฮีต 5 จากประเทศกายอานาบ้าง?",
    "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_en": "How many lanes was Khadevis Robinson in for heats over 2?",
    "question_th": "Khadevis Robinson อยู่ในฮีตมากกว่า 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_en": "Which ICB Sector had a ticker symbol of pp?",
    "question_th": "ICB Sector ใดที่มีสัญลักษณ์ย่อของ 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_en": "Which ICB Sector belongs to vallourec?",
    "question_th": "ภาค ICB ใดที่อยู่ใน 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_en": "Which Week is the highest one that has a Result of w 23-20, and an Attendance smaller than 34,127?",
    "question_th": "สัปดาห์ใดเป็นสัปดาห์สูงสุดที่มีผลลัพธ์เป็น w 23-20 และมีผู้เข้าร่วมน้อยกว่า 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_en": "What was the average attendance on october 3, 1976?",
    "question_th": "ผู้เข้าร่วมโดยเฉลี่ยในวันที่ 3 ตุลาคม พ.ศ. 2519 เป็นเท่าใด",
    "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_en": "How many weeks have a Date of december 4, 1976, and an Attendance larger than 57,366?",
    "question_th": "วันที่ 4 ธันวาคม 1976 มีกี่สัปดาห์และมีผู้เข้าร่วมมากกว่า 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_en": "What was the total number of aircrafts in 2011 for sydney airport that was ranked number 1?",
    "question_th": "จำนวนเครื่องบินทั้งหมดในปี 2554 ของสนามบินซิดนีย์ซึ่งอยู่ในอันดับที่ 1 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_48 (airport VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_45 WHERE date = \"november 25, 2001\"",
    "question_en": "What is the result for November 25, 2001?",
    "question_th": "ผลลัพธ์ของวันที่ 25 พฤศจิกายน 2544 เป็นอย่างไร?",
    "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_en": "What is the result for week 12 against the Green Bay Packers?",
    "question_th": "ผลการแข่งขันสัปดาห์ที่ 12 กับกรีนเบย์แพ็คเกอร์สเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_94 (result VARCHAR, week VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_45 WHERE week = 8",
    "question_en": "What was the attendance like for week 8?",
    "question_th": "การเข้าร่วมสัปดาห์ที่ 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_en": "What was the passenger fare for Lansing, when the passenger fare for Kalamazoo was $599.39?",
    "question_th": "ค่าโดยสารสำหรับแลนซิงคือเท่าไร เมื่อค่าโดยสารสำหรับคาลามาซูอยู่ที่ 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_en": "For how many years did Detroit have a passenger fare of $307.29?",
    "question_th": "ดีทรอยต์คิดค่าโดยสาร 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_en": "What was the passenger fare for Grand Rapids, when the passenger fare for Detroit was $378.55?",
    "question_th": "ค่าโดยสารสำหรับ Grand Rapids คือเท่าไร เมื่อค่าโดยสารสำหรับดีทรอยต์อยู่ที่ 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_en": "Before the year 2010, and when Kalamazoo had a passenger fare of $517.32, what was the passenger fare for Detroit?",
    "question_th": "ก่อนปี 2010 และเมื่อคาลามาซูมีราคาผู้โดยสารอยู่ที่ 517.32 ดอลลาร์ ค่าโดยสารสำหรับดีทรอยต์คือเท่าใด",
    "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_en": "Which Club has a League goals of 21?",
    "question_th": "สโมสรใดมีประตูในลีก 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_en": "Which Club has a League Cup goals of 0, and a League goals of 11, and a Scorer of joe laidlaw?",
    "question_th": "สโมสรใดที่มีประตูในลีกคัพที่ 0 และประตูในลีกที่ 11 และผู้ทำประตูของ 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_en": "Which FA Cup goals have a League goals of 18, and a Club of sheffield united?",
    "question_th": "ประตูเอฟเอ คัพใดที่มีประตูในลีก 18 ประตู และสโมสรเชฟฟิลด์รวมกัน?",
    "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_en": "Which League Cup goals have a Scorer of ken houghton, and an FA Cup goals smaller than 0?",
    "question_th": "ประตูในลีก คัพ ใดที่มีผู้ทำประตูเท่ากับ เคน ฮูตัน และประตูเอฟเอ คัพ น้อยกว่า 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_en": "Who was the home team when the away team was Bristol Rovers?",
    "question_th": "เจ้าบ้านคือใครเมื่อทีมเยือนคือบริสตอล โรเวอร์ส?",
    "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_en": "What was the home team when the away team was Frickley Athletic?",
    "question_th": "เจ้าบ้านสมัยทีมเยือนคือ ฟริกลี่ย์ แอธเลติก ทีมอะไร?",
    "context": "CREATE TABLE table_name_3 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_2 WHERE home_team = \"reading\"",
    "question_en": "When did Reading play at home?",
    "question_th": "เรดดิ้งเล่นในบ้านเมื่อไหร่?",
    "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_en": "What was the association for Indonesian Idol after 2005 with a Nominated Result?",
    "question_th": "สมาคมไอดอลอินโดนีเซียหลังปี 2548 และผลการเสนอชื่อเข้าชิงเป็นอย่างไร",
    "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_en": "What was the earliest year that Indonesian Idol won?",
    "question_th": "ไอดอลอินโดนีเซียชนะในปีแรกสุดคือปีใด?",
    "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_en": "Who was the association that Daniel Mananta belonged to after 2011?",
    "question_th": "สมาคมที่ Daniel Mananta เป็นสมาชิกหลังปี 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_en": "What was the result in a year before 2013 that the nomination category was Presenter Talent Show?",
    "question_th": "1 ปีก่อนปี 2556 หมวดผู้ได้รับการเสนอชื่อเข้าชิงเป็น 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_en": "What competition had a score of 8-1?",
    "question_th": "การแข่งขันรายการใดมีสกอร์ 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_en": "Who was the away team for the game with a score of 139-119?",
    "question_th": "ทีมเยือนเกมนี้ทีมไหนมีสกอร์ 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_en": "Which date had a venue of the Gold Coast Convention Centre?",
    "question_th": "วันที่ใดมีสถานที่จัดงาน 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_en": "Which date had a venue of the State Sports Centre?",
    "question_th": "สถานที่จัดงานของศูนย์กีฬาแห่งรัฐคือวันไหน?",
    "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_en": "What is the smallest shot % with ends won larger than 29 and ends lost smaller than 26?",
    "question_th": "% ช็อตที่เล็กที่สุดที่ปลายชนะมากกว่า 29 และแพ้น้อยกว่า 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_en": "How many ends lost when skip is Kevin Koe and stolen ends are more than 6?",
    "question_th": "สูญเสียไปกี่ครั้งเมื่อข้ามคือ Kevin Koe และสิ้นสุดที่ถูกขโมยมากกว่า 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_en": "How many ends lost when shot % is 88 and ends won are 31?",
    "question_th": "แพ้กี่ครั้งเมื่อช็อต % คือ 88 และจบชนะคือ 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_en": "How many ends lost for Alberta when stolen ends are greater than 7?",
    "question_th": "จำนวนปลายที่สูญเสียไปสำหรับอัลเบอร์ตาเมื่อปลายที่ถูกขโมยมากกว่า 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_en": "What is the Winner of the Event in Punta del Este?",
    "question_th": "ผู้ชนะของกิจกรรมในปุนตาเดลเอสเตคืออะไร?",
    "context": "CREATE TABLE table_name_67 (winner VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_37 WHERE city = \"panama city\"",
    "question_en": "What is the Date of the Event in Panama City?",
    "question_th": "วันที่จัดงานในปานามาซิตี้คือวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_37 (date VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_5 WHERE city = \"panama city\"",
    "question_en": "What is the Winner of the Event in Panama City?",
    "question_th": "ผู้ชนะของกิจกรรมในปานามาซิตี้คืออะไร?",
    "context": "CREATE TABLE table_name_5 (winner VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_82 WHERE date = \"september 26-30, 2012\"",
    "question_en": "What is the Winner of the Event on September 26-30, 2012?",
    "question_th": "ผู้ชนะของกิจกรรมในวันที่ 26-30 กันยายน 2555 คืออะไร?",
    "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_en": "What is the lowest Laps, when Rider is Sylvain Guintoli, and when Grid is less than 16?",
    "question_th": "รอบต่ำสุดคือเท่าไร เมื่อไรเดอร์คือ ซิลเวน กวินโทลี และเมื่อกริดอายุน้อยกว่า 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_en": "What is the lowest Grid, when Laps is 21, when Manufacturer is Yamaha, and when Time is +18.802?",
    "question_th": "กริดต่ำสุดคือเมื่อรอบคือ 21 เมื่อผู้ผลิตคือ Yamaha และเมื่อใดคือ +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_en": "What is Rider, when Grid is less than 16, when Laps is 21, when Manufacturer is Honda, and when Time is +10.583?",
    "question_th": "Rider คืออะไร เมื่อ Grid น้อยกว่า 16 เมื่อ Laps คือ 21 เมื่อ Manufacturing คือ Honda และเมื่อ Time คือ +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_en": "What is the average Grid, when Rider is Shinya Nakano, and when Laps is less than 21?",
    "question_th": "อะไรคือค่าเฉลี่ยของกริด เมื่อไรเดอร์คือ ชินยะ นากาโนะ และเมื่อรอบน้อยกว่า 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ía daniela torrealba\"",
    "question_en": "who is the 1st runner-up when the miss earth Venezuela is maría daniela torrealba?",
    "question_th": "รองแชมป์อันดับ 1 เมื่อ มิสเอิร์ธ เวเนซุเอลา คือ มาเรีย ดาเนียลา ตอร์เรอัลบา ?",
    "context": "CREATE TABLE table_name_90 (miss_earth_venezuela VARCHAR)"
  },
  {
    "answer": "SELECT semi_finalists FROM table_name_30 WHERE week = \"may 15\"",
    "question_en": "Which Semi finalists had a Week of may 15?",
    "question_th": "ผู้เข้ารอบรองชนะเลิศคนใดมีสัปดาห์วันที่ 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ínez\"",
    "question_en": "Which Finalist has a Semi finalists of monica seles conchita martínez?",
    "question_th": "ผู้เข้ารอบสุดท้ายคนใดมีผู้เข้ารอบรองชนะเลิศของ monica seles conchita martínez?",
    "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_en": "Which Tournament has a Semi finalists of monica seles sandrine testud?",
    "question_th": "การแข่งขันใดมีผู้เข้ารอบรองชนะเลิศของ 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ínez arantxa sánchez\"",
    "question_en": "Which Surface has a Semi finalists of conchita martínez arantxa sánchez?",
    "question_th": "Surface ใดมีผู้เข้ารอบรองชนะเลิศของ Conchita Martínez arantxa sánchez",
    "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_en": "Which Tournament has a Semi finalists of mary pierce elena dementieva?",
    "question_th": "การแข่งขันใดมีผู้เข้ารอบรองชนะเลิศของ 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_en": "Which Tournament has a Semi finalists of martina hingis joannette kruger?",
    "question_th": "ทัวร์นาเมนต์ใดที่มีผู้เข้ารอบรองชนะเลิศของ Martina Hingis Joannette Kruger?",
    "context": "CREATE TABLE table_name_62 (tournament VARCHAR, semi_finalists VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_82 WHERE prize = \"£50,000\" AND runner_up = \"korosh nejad\"",
    "question_en": "What is Winner, when Prize is \"£50,000\", and when Runner-Up is \"Korosh Nejad\"?",
    "question_th": "ผู้ชนะคืออะไร เมื่อรางวัลคือ \"50,000 ปอนด์\" และเมื่อรองชนะเลิศคือ \"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_en": "What is Season, when Prize is \"$100,000\"?",
    "question_th": "ฤดูกาลคืออะไร เมื่อรางวัลคือ \"$100,000\"?",
    "context": "CREATE TABLE table_name_37 (season VARCHAR, prize VARCHAR)"
  },
  {
    "answer": "SELECT prize FROM table_name_21 WHERE winner = \"john shaw\"",
    "question_en": "What is Prize, when Winner is \"John Shaw\"?",
    "question_th": "รางวัลคืออะไร เมื่อผู้ชนะคือ \"จอห์น ชอว์\"?",
    "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_en": "What is 3rd Place, when Runner-Up is \"Simon Ehne\", and when Prize is $100,000?",
    "question_th": "อันดับที่ 3 เมื่อรองชนะเลิศคือ \"Simon Ehne\" และเมื่อรางวัลคือ 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_en": "What is Prize, when Runner-Up is \"Simon Ehne\", and when Winner is \"David Tighe\"?",
    "question_th": "รางวัลคืออะไร เมื่อรองชนะเลิศคือ \"Simon Ehne\" และเมื่อผู้ชนะคือ \"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_en": "What is Prize, when Season is \"2\"?",
    "question_th": "รางวัลคืออะไร เมื่อซีซั่นคือ \"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_en": "What is Name (Birth-Death), when Left Office is 7 October 1958?",
    "question_th": "ชื่ออะไร (เกิด-ตาย) เมื่อออกจากตำแหน่งคือ 7 ตุลาคม 2501?",
    "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_en": "What is Left Office, when Political Party is Ba'ath Party ( Syria Region ), and when Took Office is 7 March 1958?",
    "question_th": "ตำแหน่งซ้ายคืออะไร เมื่อพรรคการเมืองคือพรรคบาอัธ (ภูมิภาคซีเรีย) และเมื่อเข้ารับตำแหน่งคือวันที่ 7 มีนาคม พ.ศ. 2501",
    "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_en": "What is the date for game 4?",
    "question_th": "เกมที่ 4 วันที่เท่าไหร่คะ?",
    "context": "CREATE TABLE table_name_97 (date VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_94 WHERE game = \"game 2\"",
    "question_en": "Who is the home team in game 2?",
    "question_th": "เจ้าบ้านในเกมที่ 2 คือใคร?",
    "context": "CREATE TABLE table_name_94 (home_team VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_65 WHERE game = \"game 5\"",
    "question_en": "What is the result for game 5?",
    "question_th": "ผลการแข่งขันนัดที่ 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_en": "What is the value in 1990 when it is A in 1989, 1985, and 1993?",
    "question_th": "ค่าในปี 1990 เมื่อเป็น A ในปี 1989, 1985 และ 1993 คืออะไร?",
    "context": "CREATE TABLE table_name_45 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1988 FROM table_name_41 WHERE 1997 = \"2r\" AND 1993 = \"sf\"",
    "question_en": "What is the value in 1988 when it is 2R in 1997 and SF in 1993?",
    "question_th": "ค่าในปี 1988 เมื่อเป็น 2R ในปี 1997 และ SF ในปี 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_en": "What is the value in 1987 when it is A in 1999, 1989, and 1997?",
    "question_th": "ค่าในปี 1987 เมื่อเป็น A ในปี 1999, 1989 และ 1997 คืออะไร?",
    "context": "CREATE TABLE table_name_47 (Id VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_91 WHERE opponent = \"los angeles rams\"",
    "question_en": "What was the result of the los angeles rams game?",
    "question_th": "ผลการแข่งขัน los angeles rams เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_91 (result VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_51 WHERE week = 10",
    "question_en": "what was the result in week 10?",
    "question_th": "ผลลัพธ์ในสัปดาห์ที่ 10 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_51 (result VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_79 WHERE opponent = \"siarhei navarka\"",
    "question_en": "What is the location of the opponent Siarhei Navarka?",
    "question_th": "ฝ่ายตรงข้าม เซียร์เฮ นาวาร์กา อยู่ตำแหน่งไหน?",
    "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_en": "Which location has the promotor Frank Moloney, and the opponent Gennadiy Rasalev?",
    "question_th": "สถานที่ใดที่มีผู้สนับสนุน Frank Moloney และคู่ต่อสู้ 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_en": "Which date has the promoter Frank Moloney and the opponent Georgi Iliev?",
    "question_th": "วันที่ใดที่ผู้ก่อการ Frank Moloney และคู่ต่อสู้ 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_en": "What is Quantity made, when Wheel Arrangement is \"2-6-0\", and when Class is \"D-3\"?",
    "question_th": "ปริมาณที่ผลิตคืออะไร เมื่อการจัดเรียงล้อเป็น \"2-6-0\" และเมื่อคลาสเป็น \"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_en": "What is Fleet Number(s), when Wheel Arrangement is \"2-6-0\", and when Class is \"Z\"?",
    "question_th": "หมายเลขกองเรือคืออะไร เมื่อการจัดเรียงล้อเป็น \"2-6-0\" และเมื่อคลาสเป็น \"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_en": "What is Fleet Number(s), when Quantity Preserved is \"0\", when Quantity Made is 1, and when Class is \"Z\"?",
    "question_th": "หมายเลขกองเรือคืออะไร เมื่อปริมาณที่สงวนไว้คือ \"0\" เมื่อปริมาณที่ผลิตคือ 1 และเมื่อคลาสคือ \"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_en": "Which Year(s) won has a To par of +8?",
    "question_th": "ปีไหนที่ชนะและมีพาร์ถึง +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_en": "How many totals does gene littler have?",
    "question_th": "ยีน littler มีทั้งหมดกี่ตัว?",
    "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_en": "Which Total is the lowest one that has a Country of united states, and a To par of +12?",
    "question_th": "ผลรวมใดคือค่าต่ำสุดที่มีประเทศเป็นประเทศสหรัฐอเมริกา และค่า To par ที่ +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_en": "What year or years did arnold palmer win?",
    "question_th": "อาร์โนลด์ พาลเมอร์ ชนะในปีไหนหรือกี่ปี?",
    "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_en": "what is the winning % for the years 2006-11?",
    "question_th": "% ที่ชนะในปี 2549-2554 เป็นเท่าใด?",
    "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_en": "how many times is the seasons 2 and the coach guy lowman?",
    "question_th": "ซีซั่น 2 กับโค้ชโลว์แมนมีกี่ครั้ง?",
    "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_en": "what is the record for years 2006-11?",
    "question_th": "บันทึกสำหรับปี 2549-2554 คืออะไร?",
    "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–0\"",
    "question_en": "What is the Result of the AFG Arena, St. Gallen Competition with a Score of 1–0?",
    "question_th": "ผลการแข่งขัน AFG Arena, St. Gallen ด้วยสกอร์ 1–0 เป็นอย่างไร?",
    "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_en": "Who won the Metas Volantes Classification in the stage in which Damiano Cunego won the points classification?",
    "question_th": "ใครเป็นผู้ชนะ Metas Volantes Classification ในระยะที่ Damiano Cunego ชนะการแบ่งคะแนน?",
    "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_en": "Who led the metas volantes classification for stage 4?",
    "question_th": "ใครเป็นผู้นำการจัดประเภท metas volantes ในระยะที่ 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_en": "Who was the winner in the stage that Damiano Cunego led the points classification?",
    "question_th": "ใครคือผู้ชนะในรอบที่ดามิอาโน คูเนโกเป็นผู้นำในการแบ่งคะแนน?",
    "context": "CREATE TABLE table_name_48 (winner VARCHAR, points_classification VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_69 WHERE opponent = \"at dallas cowboys\"",
    "question_en": "What was the attendance when they played at Dallas Cowboys?",
    "question_th": "ผู้เข้าชมตอนเล่นที่ 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_en": "What was the attendance at the game before week 8, held on October 25, 1981?",
    "question_th": "ผู้เข้าร่วมในเกมก่อนสัปดาห์ที่ 8 ซึ่งจัดขึ้นในวันที่ 25 ตุลาคม พ.ศ. 2524 เป็นอย่างไรบ้าง",
    "context": "CREATE TABLE table_name_62 (attendance INTEGER, date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_86 WHERE week > 15",
    "question_en": "What was the date of the game played after week 15?",
    "question_th": "วันที่ของเกมเล่นหลังจากสัปดาห์ที่ 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_en": "Which player had a position of OT during round 27?",
    "question_th": "ผู้เล่นคนไหนมีตำแหน่งโอทีในรอบที่ 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_en": "Which Doctor Who episode has a Episode # of 11?",
    "question_th": "ตอน Doctor Who เรื่องไหนมีตอนที่ # 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_en": "Which Doctor Who episode has a Original airdate (UK) of dvd only?",
    "question_th": "ตอนใดของ Doctor Who มีเฉพาะดีวีดีที่ออกอากาศดั้งเดิม (สหราชอาณาจักร) เท่านั้น?",
    "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–12\"",
    "question_en": "Which Episode title has a Doctor Who episode of episodes 1–12?",
    "question_th": "ชื่อตอนใดมีตอน Doctor Who ของตอนที่ 1–12",
    "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_en": "Which Episode title has a Episode # of s2?",
    "question_th": "ชื่อตอนใดมีตอนที่ # ของ 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_en": "Which Doctor Who episode has an Original airdate (UK) of 14 may 2005?",
    "question_th": "ตอนใดของ Doctor Who ที่ออกอากาศครั้งแรก (สหราชอาณาจักร) วันที่ 14 พฤษภาคม 2548",
    "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_en": "Which result has a Location of canada, and a Record of 3-3?",
    "question_th": "ผลลัพธ์ใดมีสถานที่ตั้งของแคนาดาและมีสถิติ 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_en": "Which event has a Round larger than 2?",
    "question_th": "เหตุการณ์ใดมีรอบใหญ่กว่า 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_en": "WHAT IS THE ELEVATION OF THE UNAKA MOUNTAINS, IN ROAN HIGH BLUFF PEAK, AND ISOLATION LARGER THAN 1.54?",
    "question_th": "ระดับความสูงของภูเขาอูนากะ ในยอดเขาสูงหน้าผาสีสวาด และการแยกตัวที่ใหญ่กว่า 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_en": "With a silver greater than 0, gold of 9 and a bronze less than 9, what is the lowest total listed?",
    "question_th": "ด้วยเงินมากกว่า 0 ทองคำ 9 และทองแดงน้อยกว่า 9 อะไรคือผลรวมต่ำสุดในรายการ?",
    "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_en": "What was the Attendance on Week 8?",
    "question_th": "การเข้าร่วมในสัปดาห์ที่ 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–0\"",
    "question_en": "What is the Attendance after Week 8 with a Result of W 42–0?",
    "question_th": "ผู้เข้าร่วมหลังจากสัปดาห์ที่ 8 ด้วยผลลัพธ์ W 42–0 คืออะไร",
    "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_en": "what is the average bronze when gold is more than 0, the nation is greece and silver is less than 0?",
    "question_th": "บรอนซ์เฉลี่ยเป็นเท่าใดเมื่อทองคำมากกว่า 0 ประเทศคือกรีซ และเงินน้อยกว่า 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_en": "what is the rank when bronze is less than 1 and silver is less than 1?",
    "question_th": "ระดับใดเมื่อทองแดงน้อยกว่า 1 และเงินน้อยกว่า 1?",
    "context": "CREATE TABLE table_name_52 (rank VARCHAR, bronze VARCHAR, silver VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_58 WHERE round = \"q3\"",
    "question_en": "Which country had a round of Q3?",
    "question_th": "ประเทศใดมีรอบ Q3?",
    "context": "CREATE TABLE table_name_58 (country VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_96 WHERE to_par = \"e\"",
    "question_en": "Which Country has a To par of e?",
    "question_th": "ประเทศใดมี To par ของ e?",
    "context": "CREATE TABLE table_name_96 (country VARCHAR, to_par VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_61 WHERE to_par = \"–1\" AND year_s__won = \"1955\"",
    "question_en": "Which Finish has a To par of –1, and a Year(s) won of 1955?",
    "question_th": "การจบสกอร์ใดมีพาร์ถึง –1 และหนึ่งปีเป็นปี 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_en": "Which To par has a Finish of t3, and a Player of julius boros?",
    "question_th": "ทูพาร์ใดมีเส้นชัยที่ t3 และผู้เล่นของจูเลียส โบรอส?",
    "context": "CREATE TABLE table_name_75 (to_par VARCHAR, finish VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_29 WHERE to_par = \"–1\" AND year_s__won = \"1952\"",
    "question_en": "Which Player has a To par of –1, and a Year(s) won of 1952?",
    "question_th": "ผู้เล่นคนใดมีพาร์ถึง –1 และหนึ่งปีที่ชนะในปี 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_en": "Which To par has a Total larger than 283, and a Finish of t12?",
    "question_th": "พาร์ใดที่พาร์มีแต้มรวมมากกว่า 283 และจบสกอร์ที่ 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_en": "What is Role, when Status is \"2001 - 2003, 2005 - 2009\"?",
    "question_th": "บทบาทคืออะไร เมื่อสถานะเป็น \"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_en": "What is Actor, when Role is \"Kate Manfredi\"?",
    "question_th": "นักแสดงคืออะไร ในเมื่อบทบาทคือ \"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_en": "What is Number Of Episodes, when Actor is \"Jessica Napier\"",
    "question_th": "จำนวนตอนคือเท่าไร เมื่อนักแสดงคือ \"เจสสิก้า เนเปียร์\"",
    "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_en": "What is Actor, when Number Of Episodes is \"117 Episodes\"?",
    "question_th": "นักแสดงคืออะไร เมื่อจำนวนตอนคือ \"117 ตอน\"",
    "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_en": "What is Number Of Episodes, when Status is \"2001 - 2003, 2005 - 2009\"?",
    "question_th": "จำนวนตอนคือเท่าใด เมื่อสถานะเป็น \"2544 - 2546, 2548 - 2552\"",
    "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_en": "What is Number Of Episodes, when Notes is \"Moved to run a farm with boyfriend Jake.\"?",
    "question_th": "Number Of Episodes คืออะไร เมื่อ Notes คือ \"ย้ายไปทำฟาร์มกับแฟน 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_en": "What is the name of the home captain when the result was Aus by 32 runs?",
    "question_th": "กัปตันทีมเจ้าบ้านชื่ออะไรตอนผลสกอร์เป็นออส 32 รัน?",
    "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_en": "What is the name of the away captain when Hugh Trumble was the home captain and the result was Aus by 32 runs?",
    "question_th": "กัปตันทีมเยือนชื่ออะไรในสมัยที่ฮิวจ์ ทรัมเบิล เป็นกัปตันทีมเจ้าบ้าน และผลเป็น ออส 32 รัน?",
    "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_en": "What is the name of the home captain when the result was Aus by 229 runs?",
    "question_th": "กัปตันทีมเจ้าบ้านชื่ออะไรเมื่อผลออกัสออสไป 229 รัน?",
    "context": "CREATE TABLE table_name_83 (home_captain VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT away_captain FROM table_name_5 WHERE venue = \"adelaide oval\"",
    "question_en": "What is the name of the away captain when the game was at Adelaide Oval?",
    "question_th": "กัปตันทีมเยือนชื่ออะไรเมื่อเกมที่แอดิเลดโอวัล?",
    "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_en": "What was the winning score when the runner-up was Beth Daniel and the margin of victory was 7 strokes?",
    "question_th": "สกอร์ชนะเมื่อรองชนะเลิศคือ เบ็ธ แดเนียล และระยะขอบของชัยชนะคือ 7 จังหวะ?",
    "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_en": "What was the winning score for oldsmobile lpga classic?",
    "question_th": "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_en": "What was the winning score on Jan 22, 1995 when the margin of victory was 1 stroke?",
    "question_th": "สกอร์ชนะเมื่อวันที่ 22 ม.ค. 2538 เมื่อมาร์จิ้นของชัยชนะอยู่ที่ 1 สโตรคเท่าไหร่?",
    "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_en": "What was the winning score when the margin of victory was a playoff for the Tournament of safeco classic?",
    "question_th": "คะแนนที่ชนะคืออะไรเมื่อส่วนต่างของชัยชนะคือรอบรองชนะเลิศสำหรับ 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_en": "What was the winning score on Aug 28, 1983?",
    "question_th": "คะแนนชนะเมื่อวันที่ 28 ส.ค. 2526 เป็นเท่าไหร่?",
    "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_en": "What was the margin of victory when the runner-up was Janet Coles?",
    "question_th": "อะไรคือส่วนต่างของชัยชนะเมื่อรองชนะเลิศคือ 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_en": "What studio is director David Fincher from?",
    "question_th": "ผู้กำกับ David Fincher มาจากสตูดิโอใด",
    "context": "CREATE TABLE table_name_95 (studio VARCHAR, director VARCHAR)"
  },
  {
    "answer": "SELECT studio FROM table_name_85 WHERE director = \"reginald hudlin\"",
    "question_en": "What studio is director Reginald Hudlin from?",
    "question_th": "ผู้กำกับ Reginald Hudlin มาจากสตูดิโอใด",
    "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_en": "What director has a worldwide gross of $149,022,650 and is ranked greater than 7?",
    "question_th": "ผู้กำกับคนไหนมีรายรับทั่วโลก 149,022,650 ดอลลาร์ และอยู่ในอันดับที่มากกว่า 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_en": "What were the co-drivers in 2008?",
    "question_th": "ผู้ร่วมขับเคลื่อนในปี 2551 คืออะไร?",
    "context": "CREATE TABLE table_name_76 (co_drivers VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_name_26 WHERE year = 2009",
    "question_en": "What is the class of 2009?",
    "question_th": "ปี 2552 คลาสอะไรคะ?",
    "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_en": "Who were the co-drivers with more than 310 laps and team aston martin racing bms?",
    "question_th": "ใครคือนักแข่งร่วมที่วิ่งมากกว่า 310 รอบและทีม 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_en": "What is Place, when Player is \"Arnold Palmer\"?",
    "question_th": "Place คืออะไร เมื่อผู้เล่นคือ “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_en": "What is Player, when Place is \"T5\", and when Score is \"69-72=141\"?",
    "question_th": "ผู้เล่นคืออะไร เมื่ออันดับคือ \"T5\" และเมื่อคะแนนคือ \"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_en": "What is Score, when Place is \"T5\", and when Player is \"George Archer\"?",
    "question_th": "คะแนนคืออะไร เมื่ออันดับคือ \"T5\" และเมื่อผู้เล่นคือ \"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_en": "What is Country, when Score is \"73-68=141\"?",
    "question_th": "ประเทศคืออะไร เมื่อคะแนนคือ \"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_en": "What is the highest number of laps with an accident time and a suzuki gsx-r1000 bike?",
    "question_th": "จำนวนรอบสูงสุดที่มีเวลาเกิดอุบัติเหตุและจักรยานยนต์ suzuki gsx-r1000 คือเท่าไร?",
    "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_en": "What is the number of laps of the grid larger than 22 with a +1:29.001 time?",
    "question_th": "จำนวนรอบของกริดที่มากกว่า 22 ด้วยเวลา +1:29.001 เป็นเท่าใด",
    "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_en": "What bike has an accident time, less than 9 laps, and a 5 grid?",
    "question_th": "มอเตอร์ไซค์คันไหนมีเวลาในการเกิดอุบัติเหตุ น้อยกว่า 9 รอบ และ 5 ตาราง?",
    "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_en": "What is the sum of the laps with a grid less than 28, retirement time, and a ducati 1098 f08 bikes?",
    "question_th": "ผลรวมของรอบที่มีกริดน้อยกว่า 28 เวลาเกษียณ และรถมอเตอร์ไซค์ ducati 1098 f08 เป็นเท่าใด",
    "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_en": "What is the maximum 2002 figure when 2008 is 19.5, 2006 is less than 24.5 and 1999 is 18.3?",
    "question_th": "ตัวเลขสูงสุดในปี 2545 คือเท่าใด เมื่อปี 2551 คือ 19.5 ปี 2549 น้อยกว่า 24.5 และปี 2542 คือ 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_en": "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?",
    "question_th": "ค่าเฉลี่ยปี 2545 เป็นเท่าใดเมื่อปี 2546 น้อยกว่า 13.2 ปี 2549 มากกว่า 12.1 ปี 2554 มากกว่า 13.5 และปี 2544 คือ 11.5",
    "context": "CREATE TABLE table_name_64 (Id VARCHAR)"
  },
  {
    "answer": "SELECT MAX(2004) FROM table_name_86 WHERE 2009 > 26.1",
    "question_en": "What is the maximum in 2004 when 2009 is higher than 26.1?",
    "question_th": "ค่าสูงสุดในปี 2547 คือเท่าใดเมื่อปี 2552 สูงกว่า 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_en": "What is the 2010 figure for the district of Columbia where the 2004 figure is more than 12.3?",
    "question_th": "ตัวเลขปี 2010 ของเขตโคลัมเบียซึ่งตัวเลขปี 2004 มากกว่า 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_en": "What is GPU Frequency, when Frequency is 1.67 GHz, and when sSpec Number is SLBX9(A0)?",
    "question_th": "ความถี่ GPU คืออะไร เมื่อความถี่คือ 1.67 GHz และเมื่อหมายเลข sSpec คือ 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_en": "What is I/O Bus, when Frequency is 1.67 GHz, and when sSpec Number is SLBMG(A0)?",
    "question_th": "I/O Bus คืออะไร เมื่อความถี่เป็น 1.67 GHz และเมื่อหมายเลข sSpec เป็น 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_en": "What is GPU Frequency, when Model Number is Atom N435?",
    "question_th": "GPU Frequency คืออะไร เมื่อหมายเลขรุ่นคือ 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_en": "What is Frequency, when Part Number(s) is au80610006240aa?",
    "question_th": "ความถี่คืออะไร เมื่อหมายเลขชิ้นส่วนคือ 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_en": "What is Socket, when Part Number(s) is au80610003495aa?",
    "question_th": "Socket คืออะไร เมื่อหมายเลขชิ้นส่วนคือ 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_en": "What is sSpec Number, when Model Number is Atom N475?",
    "question_th": "sSpec Number คืออะไร เมื่อหมายเลขรุ่นคือ 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_en": "For the movie directed by Martin Campbell at Columbia pictures with a ranking larger than 8, what is its worldwide gross?",
    "question_th": "สำหรับภาพยนตร์ที่กำกับโดยมาร์ติน แคมป์เบลล์ที่โคลัมเบียซึ่งมีอันดับมากกว่า 8 รายได้รวมทั่วโลกเป็นเท่าใด",
    "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_en": "In what studio was the film grossing $457,640,427 made?",
    "question_th": "ภาพยนตร์เรื่องนี้ทำรายได้ 457,640,427 ดอลลาร์ในสตูดิโอใด",
    "context": "CREATE TABLE table_name_7 (studio VARCHAR, worldwide_gross VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_50 WHERE studio = \"walt disney pictures\"",
    "question_en": "What is the ranking of the movie made at Walt Disney Pictures?",
    "question_th": "ภาพยนตร์ที่สร้างโดย 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_en": "What is the event name when the method is submission (brabo choke)?",
    "question_th": "ชื่อเหตุการณ์เมื่อมีการส่งวิธีการ (brabo choke) คืออะไร?",
    "context": "CREATE TABLE table_name_20 (event VARCHAR, method VARCHAR)"
  },
  {
    "answer": "SELECT res FROM table_name_95 WHERE event = \"ufc 87\"",
    "question_en": "What is the result of the UFC 87?",
    "question_th": "ผลการแข่งขัน 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_en": "What is the result when the method was decision (unanimous), and Chris Wilson was the opponent?",
    "question_th": "ผลเป็นอย่างไรเมื่อวิธีตัดสิน (เป็นเอกฉันท์) และคริส วิลสันเป็นคู่ต่อสู้?",
    "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_en": "What is the event when the method was submission (armbar), and Jeff Gibson was the opponent?",
    "question_th": "เหตุการณ์เมื่อวิธีการยอมแพ้ (armbar) และ Jeff Gibson เป็นคู่ต่อสู้คืออะไร?",
    "context": "CREATE TABLE table_name_67 (event VARCHAR, method VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_93 WHERE opponent = \"clayton mckinney\"",
    "question_en": "What is the record when Clayton Mckinney was the opponent?",
    "question_th": "บันทึกเมื่อ Clayton Mckinney เป็นคู่ต่อสู้คืออะไร?",
    "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_en": "What is the event when the method was tko (punches), and the record was 7-1?",
    "question_th": "เหตุการณ์เมื่อวิธีการคือ tko (หมัด) และบันทึกเป็น 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_en": "When was the Jamaica Classic Tournament?",
    "question_th": "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_en": "Who was the visitor on April 2?",
    "question_th": "ใครคือผู้มาเยือนในวันที่ 2 เมษายน?",
    "context": "CREATE TABLE table_name_7 (visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(attendance) FROM table_name_91 WHERE visitor = \"chicago\"",
    "question_en": "What was the maximum attendance when Chicago is the visiting team?",
    "question_th": "ผู้เข้าร่วมสูงสุดเมื่อชิคาโกเป็นทีมเยือนคือเท่าใด",
    "context": "CREATE TABLE table_name_91 (attendance INTEGER, visitor VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_name_49 WHERE score = \"w 110-81\"",
    "question_en": "Which High points have a Score of w 110-81?",
    "question_th": "แต้มสูงไหนมีคะแนน 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_en": "Which Score has High assists of rodriguez (8)?",
    "question_th": "โรดริเกซ (8) แอสซิสต์สูงแค่ไหน?",
    "context": "CREATE TABLE table_name_6 (score VARCHAR, high_assists VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_33 WHERE date = \"october 23\"",
    "question_en": "What was the score on october 23?",
    "question_th": "คะแนนวันที่ 23 ตุลาคม เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_33 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_name_96 WHERE record = \"4-2\"",
    "question_en": "Which High assists have a Record of 4-2?",
    "question_th": "แอสซิสต์สูงคนใดที่มีสถิติ 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_en": "How many weeks on top was the single from Savage Garden?",
    "question_th": "ซิงเกิลจาก 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_en": "Who was the artist that issued the single on 19 January?",
    "question_th": "ศิลปินที่ออกซิงเกิลเมื่อวันที่ 19 มกราคมคือใคร?",
    "context": "CREATE TABLE table_name_67 (artist VARCHAR, issue_date_s_ VARCHAR)"
  },
  {
    "answer": "SELECT artist FROM table_name_28 WHERE weeks_on_top = \"9 ¶\"",
    "question_en": "Who was the artist of the single that spent 9 ¶ weeks on top?",
    "question_th": "ใครคือศิลปินของซิงเกิลที่ใช้เวลาอยู่อันดับสูงสุด 9 ¶ สัปดาห์",
    "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_en": "What is the name of the artist that issued the single on 23 February?",
    "question_th": "ศิลปินที่ออกซิงเกิลเมื่อวันที่ 23 กุมภาพันธ์ชื่ออะไร",
    "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ž kavčič\"",
    "question_en": "For what tournament was Blaž Kavčič the opponent in the final?",
    "question_th": "Blaž Kavčič เป็นคู่ต่อสู้ในรอบชิงชนะเลิศสำหรับทัวร์นาเมนต์ใด?",
    "context": "CREATE TABLE table_name_16 (tournament VARCHAR, opponent_in_the_final VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_7 WHERE tournament = \"belgrade\"",
    "question_en": "The tournament in Belgrade had what as a score?",
    "question_th": "การแข่งขันที่เบลเกรดได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_7 (score VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_79 WHERE date = \"june 26, 2006\"",
    "question_en": "On June 26, 2006 the game was played on what surface?",
    "question_th": "วันที่ 26 มิถุนายน พ.ศ. 2549 เกมนี้เล่นบนพื้นผิวใด?",
    "context": "CREATE TABLE table_name_79 (surface VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_68 WHERE tournament = \"prijedor\"",
    "question_en": "When was the Prijedor tournament?",
    "question_th": "การแข่งขัน Prijedor จัดขึ้นเมื่อไหร่?",
    "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_en": "What is Lowest Rank, when Location is Rio De Janeiro, Brazil, and when Current Seating Capacity is less than 78,838?",
    "question_th": "อันดับต่ำสุดคือเมื่อสถานที่คือรีโอเดจาเนโร ประเทศบราซิล และเมื่อความจุที่นั่งปัจจุบันน้อยกว่า 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_en": "What is the highest Rank, when Location is Kinshasa, DR Congo, and when Current Seating Capacity is less than 80,000?",
    "question_th": "ตำแหน่งสูงสุดคือเมื่อสถานที่คือกินชาซา สาธารณรัฐคองโก และเมื่อความจุที่นั่งปัจจุบันน้อยกว่า 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_en": "What is the lowest Rank, when the Current Seating Capacity is 137,000?",
    "question_th": "อันดับต่ำสุดคือเท่าไร เมื่อความจุที่นั่งปัจจุบันคือ 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_en": "What is Highest Attendance, when Rank is 90, and when Venue Name is Infineon Raceway?",
    "question_th": "ผู้เข้าร่วมสูงสุดคืออะไร เมื่ออันดับอยู่ที่ 90 และเมื่อชื่อสถานที่คือ 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_en": "How much tonnage was damaged?",
    "question_th": "เสียหายไปกี่ตัน?",
    "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_en": "Which Nationality has a Fate of sunk, and a Name of alderamin?",
    "question_th": "สัญชาติใดมีชะตากรรมของการจมและมีชื่อของอัลเดอรามิน?",
    "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_en": "Which Tonnage (GRT) has a Nationality of united kingdom, and a Name of king gruffydd?",
    "question_th": "น้ำหนักบรรทุก (GRT) ใดมีสัญชาติสหราชอาณาจักร และมีพระนามของกษัตริย์กริฟฟิดด์?",
    "context": "CREATE TABLE table_name_44 (tonnage__grt_ INTEGER, nationality VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT height FROM table_name_56 WHERE weight = 240",
    "question_en": "What is the height of the player that weighs 240?",
    "question_th": "ผู้เล่นที่มีน้ำหนัก 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_en": "What is the total combined weight of players from minnetonka, mn?",
    "question_th": "น้ำหนักรวมของผู้เล่นจาก 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_en": "Which round lasted 2:32?",
    "question_th": "รอบไหนกินเวลา 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_en": "Where was the fight that lasted 5:00 when Yundt's record was 8-4?",
    "question_th": "การต่อสู้ที่กินเวลา 5:00 น. อยู่ที่ไหนเมื่อสถิติของ Yundt คือ 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_en": "What was the record when Vancouver was the visitor?",
    "question_th": "บันทึกเมื่อแวนคูเวอร์เป็นผู้มาเยือนคืออะไร?",
    "context": "CREATE TABLE table_name_9 (record VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_31 WHERE record = \"17–18–6\"",
    "question_en": "What score had a record of 17–18–6?",
    "question_th": "คะแนนใดมีสถิติ 17–18–6?",
    "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_en": "What is the Place of the Player with a To par of +1 and Score of 74-70-69-72=285?",
    "question_th": "ตำแหน่งผู้เล่นที่มีพาร์ถึง +1 และคะแนน 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_en": "What Country is Gene Littler from?",
    "question_th": "Gene Littler มาจากประเทศอะไร?",
    "context": "CREATE TABLE table_name_60 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_59 WHERE to_par = \"+1\"",
    "question_en": "What is the Country of the Player with a To par of +1?",
    "question_th": "ประเทศของผู้เล่นที่มีค่า To par +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_en": "What is the Country of the Player with a Score of 70-72-70-73=285 and Money ( $ ) of 5,500?",
    "question_th": "ประเทศของผู้เล่นที่มีคะแนน 70-72-70-73=285 และเงิน ($ ) 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_en": "What was Andrew Neill's rank?",
    "question_th": "แอนดรูว์ นีลอยู่ในอันดับไหน?",
    "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_en": "When the score is 71 and the player is from United States what is the place?",
    "question_th": "เมื่อคะแนนเป็น 71 และผู้เล่นมาจากสหรัฐอเมริกาอยู่ที่ไหน?",
    "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_en": "When Jim Thorpe of United States has a score of 71, what is the place?",
    "question_th": "เมื่อจิม ธอร์ป จากสหรัฐอเมริกา ได้คะแนน 71 คะแนน อยู่ตำแหน่งไหน?",
    "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_en": "On what date was the Opponent Chicago Bears?",
    "question_th": "ฝ่ายตรงข้าม ชิคาโก้ แบร์ส จัดขึ้นวันไหน?",
    "context": "CREATE TABLE table_name_84 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT MAX(week) FROM table_name_1 WHERE result = \"w 27-24\"",
    "question_en": "In what Week was the Result W 27-24?",
    "question_th": "ผลลัพธ์ 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_en": "On what Date prior to Week 14 was the Record 7-1?",
    "question_th": "สถิติ 7-1 คือวันที่ใดก่อนสัปดาห์ที่ 14",
    "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_en": "What was the Attendance of the game against the Los Angeles Raiders?",
    "question_th": "ผู้เข้าชมเกมกับ 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_en": "What was the Opponent in the game with a Result of W 23-7?",
    "question_th": "ฝ่ายตรงข้ามในเกมที่มีผลการแข่งขัน 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–6, 3–6\"",
    "question_en": "Who were the opponents when the score was 2–6, 3–6?",
    "question_th": "ใครคือคู่ต่อสู้เมื่อสกอร์เป็น 2–6, 3–6?",
    "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_en": "Who's the partner that played against Alicia Molik Mara Santangelo on clay?",
    "question_th": "ใครคือคู่หูที่เล่นกับ Alicia Molik Mara Santangelo บนดินเหนียว?",
    "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_en": "What was the score of the French Open?",
    "question_th": "เฟรนช์ โอเพ่น ได้สกอร์เท่าไหร่?",
    "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–6, 3–6\"",
    "question_en": "Who was the partner where the score was 2–6, 3–6 and happened after 2007?",
    "question_th": "ใครคือหุ้นส่วนที่มีคะแนน 2–6, 3–6 และเกิดขึ้นหลังปี 2550",
    "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_en": "Who was the partner that played against Serena Williams Venus Williams?",
    "question_th": "ใครคือคู่หูที่เล่นกับ 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_en": "Who was the outgoing manager that was replaced by Thomas Von Heesen?",
    "question_th": "ใครคือผู้จัดการทีมที่ลาออกซึ่งถูกโธมัส วอน ฮีเซ่นเข้ามาแทนที่?",
    "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 šapurić\"",
    "question_en": "What was the date of vacancy of svetozar šapurić who departed with mutual consent?",
    "question_th": "วันที่ svetozar šapurić ตำแหน่งว่างซึ่งจากไปโดยได้รับความยินยอมร่วมกันคือวันที่เท่าไร?",
    "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_en": "What was the date of appointment for Christos Kassianos who belonged to AEK?",
    "question_th": "วันที่ได้รับการแต่งตั้งของ Christos Kassianos ซึ่งเป็นของ 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_en": "What is the type when the source is Realmadrid, and the name is Soldado?",
    "question_th": "แหล่งที่มาคือเรอัลมาดริดและชื่อโซลดาโด้เป็นประเภทใด?",
    "context": "CREATE TABLE table_name_6 (type VARCHAR, source VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_45 WHERE record = \"20-12\"",
    "question_en": "Who was the opponent with the 20-12 record?",
    "question_th": "คู่ต่อสู้ด้วยสถิติ 20-12 คือใคร?",
    "context": "CREATE TABLE table_name_45 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_71 WHERE game = 37",
    "question_en": "What date was game 37?",
    "question_th": "เกม 37 ตรงกับวันไหน?",
    "context": "CREATE TABLE table_name_71 (date VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT AVG(game) FROM table_name_5 WHERE record = \"20-12\"",
    "question_en": "What is the average number of games with a record of 20-12?",
    "question_th": "จำนวนเกมโดยเฉลี่ยที่มีสถิติ 20-12 คือเท่าใด?",
    "context": "CREATE TABLE table_name_5 (game INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_1 WHERE game = 38",
    "question_en": "What is the score for game 38?",
    "question_th": "คะแนนของเกม 38 คืออะไร?",
    "context": "CREATE TABLE table_name_1 (score VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(complement) FROM table_name_28 WHERE commander = \"valkenburg\"",
    "question_en": "What is the sum of complement commander Valkenburg received?",
    "question_th": "ผลรวมของผู้บังคับการเสริม Valkenburg ได้รับเป็นจำนวนเท่าใด?",
    "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_en": "Which commander received complement larger than 240 , guns of 66 and ship of revolutie?",
    "question_th": "ผู้บัญชาการคนใดที่ได้รับส่วนเสริมที่ใหญ่กว่า 240 ปืน 66 และเรือรบแห่งการปฏิวัติ?",
    "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_en": "What is the rank of American Pie 2?",
    "question_th": "American Pie 2 อันดับเท่าไหร่คะ?",
    "context": "CREATE TABLE table_name_4 (rank INTEGER, title VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_70 WHERE game = 42",
    "question_en": "What is Location, when Game is 42?",
    "question_th": "ตำแหน่งคืออะไร เมื่อเกมคือ 42?",
    "context": "CREATE TABLE table_name_70 (location VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_84 WHERE opponent = \"@ carolina hurricanes\"",
    "question_en": "What is Date, when Opponent is @ Carolina Hurricanes?",
    "question_th": "วันที่คืออะไรเมื่อฝ่ายตรงข้ามคือ @ 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_en": "What is the average Attendance, when Opponent is @ Philadelphia Flyers, and when Game is less than 42?",
    "question_th": "ผู้เข้าร่วมโดยเฉลี่ยคือเท่าใด เมื่อฝ่ายตรงข้ามอยู่ที่ @ Philadelphia Flyers และเมื่อเกมน้อยกว่า 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_en": "What is the lowest Game, when Location is Philips Arena, and when Attendance is less than 15,619?",
    "question_th": "เกมใดที่ต่ำที่สุด เมื่อตำแหน่งคือ Philips Arena และเมื่อผู้เข้าร่วมน้อยกว่า 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_en": "what is the highest matrix when the recording date is 1926/03?",
    "question_th": "เมทริกซ์สูงสุดเมื่อวันที่บันทึกคือ 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_en": "what is the accompaniment when the title is stormy seas blues?",
    "question_th": "ดนตรีประกอบเมื่อชื่อเรื่องเป็น 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_en": "what is the recording date when the title is screech owl blues?",
    "question_th": "วันที่บันทึกเมื่อชื่อเป็น 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_en": "What's the blood type of the member from the vision factory agency?",
    "question_th": "สมาชิกจากบริษัท Vision Factory กรุ๊ปเลือดอะไร?",
    "context": "CREATE TABLE table_name_52 (blood_type VARCHAR, agency VARCHAR)"
  },
  {
    "answer": "SELECT generation FROM table_name_33 WHERE birthday = \"1996.04.17\"",
    "question_en": "What generation is the member born on 1996.04.17 in?",
    "question_th": "สมาชิกที่เกิดวันที่ 1996.04.17 เป็นคนรุ่นใด?",
    "context": "CREATE TABLE table_name_33 (generation VARCHAR, birthday VARCHAR)"
  },
  {
    "answer": "SELECT generation FROM table_name_4 WHERE birthday = \"1992.12.23\"",
    "question_en": "What generation is the member born on 1992.12.23 in?",
    "question_th": "สมาชิกที่เกิดวันที่ 12.23.23 เป็นคนรุ่นใด?",
    "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_en": "What's the birthplace of the third (2009) generation member from the lespros entertainment agency?",
    "question_th": "บ้านเกิดของสมาชิกรุ่นที่ 3 (2009) จากบริษัท Lespros Entertainment คือที่ใด?",
    "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_en": "What's the agency of the member born on 1998.11.09?",
    "question_th": "สมาชิกที่เกิดวันที่ 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_en": "Can you tell me the Location Attendance that has the High assists of luke ridnour (10), and the Date of december 3?",
    "question_th": "คุณช่วยบอกฉันเกี่ยวกับตำแหน่งผู้เข้าร่วมที่มีผู้ช่วยสูงของลุค ริดนูร์ (10) และวันที่ 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_en": "Can you tell me Location Attendance that has the High points of andrew bogut (17)?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าการเข้าร่วมสถานที่ซึ่งมีคะแนนสูงเท่ากับแอนดรูว์ โบกุต (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_en": "How many sprint points have 0 extra laps for rank 19?",
    "question_th": "มีกี่คะแนนสปรินต์ที่มี 0 รอบพิเศษสำหรับอันดับ 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_en": "How many sprint points contribute to 2 total points?",
    "question_th": "คะแนนสปรินท์มีกี่คะแนนจึงจะมีคะแนนรวม 2 คะแนน",
    "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_en": "Who is at rank 13 with 23 total points?",
    "question_th": "ใครอยู่อันดับ 13 มี 23 คะแนนรวม?",
    "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_en": "What is the number of extra laps for 9 total points?",
    "question_th": "คะแนนรวม 9 รอบพิเศษมีกี่รอบ?",
    "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_en": "Who is the player with a t10 place, from the United States, and has a score of 69-70-76=215?",
    "question_th": "นักเตะอันดับ T10 จากประเทศสหรัฐอเมริกาคือใครและมีคะแนน 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_en": "What place is the player from the United States with a to par of e?",
    "question_th": "ผู้เล่นจากสหรัฐอเมริกาที่มีคะแนนเท่ากันอยู่ที่ใด?",
    "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_en": "Who is the player with a score of 69-70-76=215?",
    "question_th": "นักเตะคนไหนที่มีคะแนน 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_en": "What is the place of plyaer Tim Herron from the United States with a to par of +1?",
    "question_th": "ตำแหน่งของ plyaer Tim Herron จากสหรัฐอเมริกาที่มีคะแนนพาร์ +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_en": "What is the to par of player Tim Herron from the United States with a t3 place?",
    "question_th": "อะไรคือสิ่งที่ได้เปรียบของผู้เล่น Tim Herron จากสหรัฐอเมริกาด้วยอันดับที่ 3?",
    "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_en": "which is the lowest favorable on 1954 June and more unfavorable than 45?",
    "question_th": "อันไหนเป็นที่น่าพอใจต่ำสุดในปี 1954 มิถุนายน และไม่ดีมากกว่า 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_en": "What is the most unfavorable that is favorable of 34 during 1953 August and has a no opinion score larger than 24?",
    "question_th": "อะไรคือสิ่งที่ไม่เอื้ออำนวยมากที่สุดที่เป็นที่ชื่นชอบของ 34 ในช่วงเดือนสิงหาคม พ.ศ. 2496 และไม่มีคะแนนความคิดเห็นใดมากกว่า 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_en": "What is the average no opinion score during 1954 November that is more favorable than 35?",
    "question_th": "คะแนนเฉลี่ยที่ไม่มีความคิดเห็นในช่วงเดือนพฤศจิกายน พ.ศ. 2497 ที่น่าพอใจมากกว่า 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_en": "What was the score for the game on December 20?",
    "question_th": "สกอร์เกมวันที่ 20 ธันวาคม เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_49 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_47 WHERE date = \"november 22\"",
    "question_en": "Who was the home team on November 22?",
    "question_th": "เจ้าบ้านวันที่ 22 พฤศจิกายนคือใคร?",
    "context": "CREATE TABLE table_name_47 (home VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_4 WHERE studio = \"buena vista pictures\"",
    "question_en": "What is the title of Buena Vista Pictures?",
    "question_th": "ชื่อเรื่องของ 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_en": "What studio has directors John Lasseter and Andrew Stanton?",
    "question_th": "สตูดิโอใดมีผู้กำกับ John Lasseter และ 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_en": "Who has the title and rank 14, and a worldwide gross of $202,292,902?",
    "question_th": "ใครเป็นผู้ครองตำแหน่งและอันดับที่ 14 และมีรายได้รวมทั่วโลก 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_en": "WHAT IS THE DATE WITH AN AWAY TEAM OF BURTON ALBION?",
    "question_th": "วันที่กับทีมเยือนของเบอร์ตัน อัลเบียน คือวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_15 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_16 WHERE away_team = \"workington\"",
    "question_en": "WHAT IS THE DATE WITH AN AWAY TEAM OF WORKINGTON?",
    "question_th": "วันที่ทีมเยือนของเวิร์คกิงตันคือวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_16 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_21 WHERE tie_no = \"14\"",
    "question_en": "WHAT IS THE HOME TEAM WITH A TIE OF 14?",
    "question_th": "ทีมเหย้าที่เสมอกัน 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_en": "What's the average round for the OT position from tulane college with an overall over 38?",
    "question_th": "ตำแหน่งโอทีจากวิทยาลัยทูเลนที่มีคะแนนรวมเกิน 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_en": "What did the away team score when the crowd was larger than 6,872?",
    "question_th": "ทีมเยือนได้คะแนนเท่าไหร่เมื่อมีผู้ชมมากกว่า 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_en": "Who are the Semifinalists, when the Week is May 12?",
    "question_th": "ใครคือผู้เข้ารอบรองชนะเลิศ เมื่อสัปดาห์คือวันที่ 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_en": "Who is the Finalist, when the Surface is Clay, and when the Semifinalist is Yevgeny Kafelnikov Juan Carlos Ferrero (2)?",
    "question_th": "ใครคือผู้เข้ารอบสุดท้าย เมื่อ Surface เป็นดินเหนียว และเมื่อผู้เข้ารอบรองชนะเลิศคือ 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_en": "What is the Surface, when the Finalist is Andrei Pavel?",
    "question_th": "Surface คืออะไร เมื่อผู้เข้ารอบสุดท้ายคือ Andrei Pavel",
    "context": "CREATE TABLE table_name_90 (surface VARCHAR, finalist VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_80 WHERE surface = \"carpet (i)\"",
    "question_en": "Who is the Winner, when the Surface is Carpet (i)?",
    "question_th": "ใครคือผู้ชนะ เมื่อพื้นผิวเป็นพรม (i)?",
    "context": "CREATE TABLE table_name_80 (winner VARCHAR, surface VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_66 WHERE finalist = \"carlos moyá (5)\"",
    "question_en": "What is the Week, when the Finalist is Carlos Moyá (5)?",
    "question_th": "สัปดาห์คือเมื่อใดที่ผู้เข้ารอบสุดท้ายคือ Carlos Moyá (5)",
    "context": "CREATE TABLE table_name_66 (week VARCHAR, finalist VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_4 WHERE week = \"may 5\"",
    "question_en": "What is the Tournament, on the Week of May 5?",
    "question_th": "การแข่งขันคืออะไรในสัปดาห์ที่ 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_en": "what is the silver when the nation is japan and the total is less than 1?",
    "question_th": "เงินเมื่อชาติเป็นญี่ปุ่นและยอดรวมไม่ถึง 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_en": "what is the bronze when silver is 1, gold is 0 the rank is 11 and the total is more than 1?",
    "question_th": "บรอนซ์คืออะไรเมื่อเงินเป็น 1 ทองเป็น 0 อันดับเป็น 11 และผลรวมมากกว่า 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_en": "what is the rank when silver is 0, bronze is more than 1 and the total is more than 3?",
    "question_th": "อันดับที่เท่าไหร่เมื่อเงินเป็น 0 ทองแดงมากกว่า 1 และผลรวมมากกว่า 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_en": "what is the silver for mexico?",
    "question_th": "เงินสำหรับเม็กซิโกคืออะไร?",
    "context": "CREATE TABLE table_name_9 (silver VARCHAR, nation VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_69 WHERE date = \"february 8\"",
    "question_en": "What was the score of the game on February 8?",
    "question_th": "สกอร์เกมวันที่ 8 กุมภาพันธ์ เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_69 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT athlete FROM table_name_55 WHERE score = \"236.023\"",
    "question_en": "Which athlete had a score of 236.023?",
    "question_th": "นักกีฬาคนใดได้คะแนน 236.023?",
    "context": "CREATE TABLE table_name_55 (athlete VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT texas FROM table_name_92 WHERE north_dakota = \"johnson\"",
    "question_en": "What Texas has Johnson from Nort Dakota?",
    "question_th": "จอห์นสันมีเท็กซัสจากนอร์ตดาโกตาอะไรบ้าง",
    "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_en": "What is the oklahoma has Bush from Nebraska in year 2004?",
    "question_th": "โอคลาโฮมามีบุชจากเนแบรสกาในปี 2547 คืออะไร?",
    "context": "CREATE TABLE table_name_41 (oklahoma VARCHAR, nebraska VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT nebraska FROM table_name_25 WHERE year = \"2004\"",
    "question_en": "Which Nebraska has 2004 year?",
    "question_th": "รัฐเนแบรสกาใดมีปี 2547",
    "context": "CREATE TABLE table_name_25 (nebraska VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT south_dakota FROM table_name_17 WHERE oklahoma = \"bush\"",
    "question_en": "What  South Dakota has Bush of Oklahoma?",
    "question_th": "เซาท์ดาโคตามีพุ่มไม้โอคลาโฮมาอะไร?",
    "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_en": "What is the Place of the Player with a Score of 70-75-70-74=289?",
    "question_th": "ผู้เล่นที่มีคะแนน 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_en": "What is the To par of the Player with a Score of 71-74-72-72=289?",
    "question_th": "ค่าพาร์ของผู้เล่นที่มีคะแนน 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_en": "What Country is Player Leland Gibson with Money of 400 from?",
    "question_th": "ผู้เล่น Leland Gibson มีเงิน 400 จากประเทศใด?",
    "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_en": "What is the Country of the Player with a Score of 73-70-71-71=285?",
    "question_th": "ประเทศของผู้เล่นที่มีคะแนน 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_en": "What is T3 Place Player Bobby Locke's Score?",
    "question_th": "คะแนนของผู้เล่น T3 Place Bobby Locke คืออะไร?",
    "context": "CREATE TABLE table_name_40 (score VARCHAR, place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_name_21 WHERE home = \"detroit\"",
    "question_en": "How many points were scored in the Detroit Home?",
    "question_th": "ในบ้านดีทรอยต์ได้กี่คะแนน?",
    "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_en": "Who is the visitor from the game with 7,000 in attendance on January 1?",
    "question_th": "ใครคือผู้มาเยือนจากเกมที่มีผู้เข้าชม 7,000 คนในวันที่ 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_en": "What is the record from the 2,500 in attendance?",
    "question_th": "บันทึกจากผู้เข้าร่วม 2,500 คนเป็นอย่างไรบ้าง?",
    "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_en": "How many Silver medals for the Nation of Turkey with a Total of less than 2?",
    "question_th": "ชาติตุรกีได้เหรียญเงินทั้งหมดไม่เกิน 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_en": "How many Gold for the Nation in Rank 15 with 0 Silver?",
    "question_th": "กี่เหรียญทองเพื่อชาติในอันดับ 15 และมี 0 เหรียญเงิน?",
    "context": "CREATE TABLE table_name_34 (gold INTEGER, rank VARCHAR, silver VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(total) FROM table_name_80 WHERE ward < 0",
    "question_en": "WHAT IS THE TOTAL NUMBER WITH A WARD SMALLER THAN 0?",
    "question_th": "จำนวนรวมที่มีวอร์ดน้อยกว่า 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_en": "WHAT IS TOTAL NUMBER OF PR TOP-UPS THAT HAVE A PERCENTAGE OF 0.8%, TOTAL LARGER THAN 1?",
    "question_th": "จำนวนการเติมเงิน PR ทั้งหมดที่มีเปอร์เซ็นต์ 0.8% รวมมากกว่า 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_en": "WHAT IS THE TOTAL WITH WARD LARGER THAN 60?",
    "question_th": "ยอดรวมของวอร์ดที่มากกว่า 60 คืออะไร?",
    "context": "CREATE TABLE table_name_96 (total INTEGER, ward INTEGER)"
  },
  {
    "answer": "SELECT COUNT(poles) FROM table_name_66 WHERE points = \"63\"",
    "question_en": "What is the total number of poles and 63 points?",
    "question_th": "จำนวนเสาทั้งหมด 63 แต้ม คือเท่าไร?",
    "context": "CREATE TABLE table_name_66 (poles VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT MAX(year) FROM table_name_62 WHERE type = \"mk.v\"",
    "question_en": "What is the most recent year with a mk.v type?",
    "question_th": "ปีล่าสุดที่มีประเภท mk.v คืออะไร?",
    "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_en": "What is the Mainly For with a displacement of 997 cc in a year before 1962?",
    "question_th": "สาเหตุหลักคืออะไรโดยมีปริมาตรกระบอกสูบ 997 ซีซีในหนึ่งปีก่อนปี 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_en": "What type is the 105/107e Block from a year prior to 1960?",
    "question_th": "105/107e Block จากปีก่อนปี 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_en": "What is the sum of March, when Score is \"2 - 2\", and when Game is greater than 67?",
    "question_th": "ผลรวมของเดือนมีนาคมเป็นเท่าใด เมื่อสกอร์คือ \"2 - 2\" และเมื่อเกมมากกว่า 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_en": "What is the sum of Game, when Opponent is \"Cleveland Barons\", and when March is less than 8?",
    "question_th": "ผลรวมของเกมเมื่อฝ่ายตรงข้ามคือ \"Cleveland Barons\" และเมื่อเดือนมีนาคมน้อยกว่า 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_en": "What is the lowest Game, when Opponent is \"Boston Bruins\"?",
    "question_th": "เกมที่ต่ำที่สุดคือเมื่อฝ่ายตรงข้ามคือ \"บอสตัน บรูอินส์\"?",
    "context": "CREATE TABLE table_name_35 (game INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT road_team FROM table_name_68 WHERE result = \"99-90\"",
    "question_en": "For the game ending in a final result of 99-90, who was the Road Team?",
    "question_th": "สำหรับเกมที่จบลงด้วยสกอร์ 99-90 ทีมโร้ดคือใคร?",
    "context": "CREATE TABLE table_name_68 (road_team VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_5 WHERE date = \"may 5\"",
    "question_en": "What was the result of the game played on May 5?",
    "question_th": "ผลการแข่งขันวันที่ 5 พ.ค. เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_5 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_78 WHERE game = \"game 7\"",
    "question_en": "On what day was Game 7 of this season played?",
    "question_th": "เกมที่ 7 ของฤดูกาลนี้เล่นวันไหน?",
    "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_en": "What game number was played on April 23, with Boston as the road team?",
    "question_th": "เล่นเกมหมายเลขใดในวันที่ 23 เมษายน โดยมีบอสตันเป็นทีมโรด",
    "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_en": "What was the result of Game 3 of this searson?",
    "question_th": "ผลลัพธ์ของเกมที่ 3 ของฤดูกาลนี้เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_95 (result VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT road_team FROM table_name_89 WHERE result = \"118-112\"",
    "question_en": "Who was the Road Team for the game ending with a score of 118-112?",
    "question_th": "ใครคือ Road Team สำหรับเกมที่จบลงด้วยสกอร์ 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_en": "what is the 2008 when 2007 is A, 2011 is A and tournament is san jose?",
    "question_th": "2008 คืออะไร เมื่อ 2007 เป็น A, 2011 เป็น A และทัวร์นาเมนต์คือซานโฮเซ่",
    "context": "CREATE TABLE table_name_5 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2010 FROM table_name_46 WHERE 2011 = \"2r\" AND 2008 = \"2r\"",
    "question_en": "what is 2010 when 2011 is 2r and 2008 is 2r?",
    "question_th": "2010 คืออะไรเมื่อ 2011 เป็น 2r และ 2008 เป็น 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_en": "what is 2007 when 2011 is not held and 2012 is not held?",
    "question_th": "ปี 2550 คืออะไร เมื่อปี 2554 ไม่จัดขึ้น และปี 2555 ไม่ได้จัดขึ้น?",
    "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_en": "what is the tournament when 2011 is a, 2009 is lq and 2012 is 1r?",
    "question_th": "การแข่งขันจะเป็นอย่างไรเมื่อปี 2011 คือ a, 2009 คือ lq และ 2012 คือ 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_en": "what is 2008 when 2007 is a, 2011 is a, 2010 is a and tournament is china?",
    "question_th": "2008 คืออะไรเมื่อ 2007 เป็น a, 2011 เป็น a, 2010 เป็น a และทัวร์นาเมนต์คือจีน",
    "context": "CREATE TABLE table_name_53 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(week) FROM table_name_12 WHERE result = \"bye\"",
    "question_en": "What is the number of weeks where the result was listed at bye?",
    "question_th": "กี่สัปดาห์จึงจะทราบผลการแจ้งลาก่อน?",
    "context": "CREATE TABLE table_name_12 (week VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT SUM(capacity) FROM table_name_64 WHERE coach = \"trevor gleeson\"",
    "question_en": "What is the total capacity for coach Trevor Gleeson?",
    "question_th": "ความจุรวมของโค้ชเทรเวอร์ กลีสันคือเท่าไร?",
    "context": "CREATE TABLE table_name_64 (capacity INTEGER, coach VARCHAR)"
  },
  {
    "answer": "SELECT home_ground FROM table_name_68 WHERE coach = \"andrej lemanis\"",
    "question_en": "What is home ground for coach Andrej Lemanis?",
    "question_th": "สนามเหย้าของโค้ชอันเดรจ เลมานิสคืออะไร?",
    "context": "CREATE TABLE table_name_68 (home_ground VARCHAR, coach VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_name_5 WHERE coach = \"trevor gleeson\"",
    "question_en": "Which region is Coach Trevor Gleeson in?",
    "question_th": "โค้ชเทรเวอร์ กลีสันอยู่ภูมิภาคใด",
    "context": "CREATE TABLE table_name_5 (region VARCHAR, coach VARCHAR)"
  },
  {
    "answer": "SELECT home_ground FROM table_name_40 WHERE region = \"nzl\"",
    "question_en": "What is the home ground in region NZL?",
    "question_th": "บ้านเกิดในภูมิภาค 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_en": "What song was composed by V. Selvaganesh later than 2010?",
    "question_th": "เพลงใดที่แต่งโดย V. Selvaganesh ภายหลังปี 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_en": "What year was the composition by Mejo Joseph?",
    "question_th": "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_en": "What is the highest Pick, when Nationality is \"United States\", when College is \"New Mexico State\", and when Round is greater than 6?",
    "question_th": "ตัวเลือกสูงสุดคืออะไร เมื่อสัญชาติคือ \"สหรัฐอเมริกา\" เมื่อวิทยาลัยคือ \"รัฐนิวเม็กซิโก\" และเมื่อรอบมากกว่า 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_en": "What is Player, when Pick is less than 161, and when College is \"Auburn University\"?",
    "question_th": "Player คืออะไร เมื่อ Pick น้อยกว่า 161 และเมื่อ College คือ \"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_en": "What is Player, when Round is less than 6, and when Pick is \"69\"?",
    "question_th": "ผู้เล่นคืออะไร เมื่อรอบน้อยกว่า 6 และเมื่อเลือกเป็น \"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_en": "What is the sum of Round, when College is \"Norfolk State\"?",
    "question_th": "ผลรวมของ Round เมื่อวิทยาลัยคือ \"Norfolk State\" เป็นเท่าใด",
    "context": "CREATE TABLE table_name_32 (round INTEGER, college VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_90 WHERE player = \"david gilford\"",
    "question_en": "What country does david gilford play for?",
    "question_th": "เดวิด กิลฟอร์ด เล่นให้กับประเทศใด?",
    "context": "CREATE TABLE table_name_90 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_2 WHERE country = \"australia\"",
    "question_en": "Which player plays for australia?",
    "question_th": "นักเตะคนไหนเล่นให้กับออสเตรเลีย?",
    "context": "CREATE TABLE table_name_2 (player VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT SUM(score) FROM table_name_36 WHERE player = \"phil mickelson\"",
    "question_en": "What's the sum of all phil mickelson's game scores?",
    "question_th": "ผลรวมของคะแนนในเกมของฟิล มิคเคลสันทั้งหมดเป็นเท่าใด",
    "context": "CREATE TABLE table_name_36 (score INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_28 WHERE opponent = \"clyde\"",
    "question_en": "In what round was Clyde the opponent?",
    "question_th": "ไคลด์เป็นคู่ต่อสู้ในรอบใด?",
    "context": "CREATE TABLE table_name_28 (round VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_95 WHERE round = \"r2\"",
    "question_en": "Who was the opponent in the round of R2?",
    "question_th": "คู่ต่อสู้ในรอบ R2 คือใคร?",
    "context": "CREATE TABLE table_name_95 (opponent VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_49 WHERE winning_score = –6(73 - 68 - 72 - 69 = 282)",
    "question_en": "What Tournament had a Winning score of –6 (73-68-72-69=282)?",
    "question_th": "การแข่งขันใดมีคะแนนชนะที่ –6 (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 = –16(67 - 66 - 70 - 69 = 272)",
    "question_en": "What Tournament had a Victory of 1 Stroke with a Winning score of –16 (67-66-70-69=272)?",
    "question_th": "การแข่งขันใดมีชัยชนะ 1 สโตรก โดยมีคะแนนชนะที่ –16 (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_en": "What is the average opened year of line e, which had their last extension before 2003?",
    "question_th": "ปีที่เปิดเฉลี่ยของบรรทัด e ซึ่งขยายครั้งสุดท้ายก่อนปี 2546 คือเท่าใด",
    "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_en": "What is Round, when Rank is less than 117?",
    "question_th": "Round คืออะไร เมื่ออันดับต่ำกว่า 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_en": "What is Average Year, when Round is R128 (First Round)?",
    "question_th": "ปีเฉลี่ยคือเท่าไร เมื่อรอบคือ R128 (รอบแรก)",
    "context": "CREATE TABLE table_name_46 (year INTEGER, round VARCHAR)"
  },
  {
    "answer": "SELECT championship FROM table_name_50 WHERE year > 2002 AND surface = \"hard\"",
    "question_en": "What is Championship, when Year is greater than 2002, and when Surface is Hard?",
    "question_th": "Championship คืออะไร เมื่อปีมากกว่าปี 2002 และเมื่อใดที่ Surface เป็น 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_en": "What is the average position for a driver with less than 54 points and husaberg-bsu as equipment?",
    "question_th": "ตำแหน่งเฉลี่ยของผู้ขับขี่ที่มีคะแนนน้อยกว่า 54 คะแนนและมี husaberg-bsu เป็นอุปกรณ์คือเท่าใด",
    "context": "CREATE TABLE table_name_69 (position INTEGER, points VARCHAR, equipment VARCHAR)"
  },
  {
    "answer": "SELECT wins FROM table_name_44 WHERE points = 217",
    "question_en": "How many wins does the driver with 217 points have?",
    "question_th": "นักแข่งที่มี 217 แต้มชนะได้กี่แต้ม?",
    "context": "CREATE TABLE table_name_44 (wins VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_64 WHERE driver = \"viktor jensen\"",
    "question_en": "what is the team when the driver is viktor jensen?",
    "question_th": "ทีมอะไรเมื่อคนขับคือวิคเตอร์ เจนเซ่น?",
    "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_en": "what is the team when the rounds is all engine is mercedes hwa and driver is sam abay?",
    "question_th": "ทีมเป็นอย่างไรบ้างเมื่อรอบเป็นรถ Mercedes Hwa และคนขับสบายดี",
    "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_en": "what is the class when the chassis is dallara f308, rounds is all and the driver is sam abay?",
    "question_th": "แชสซีเป็น dallara f308 ระดับไหน ทั้งหมดและคนขับสบายดี",
    "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_en": "What is Run 4, when Run 2 is 1:29.00?",
    "question_th": "Run 4 คืออะไร เมื่อ Run 2 คือ 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_en": "What is Team, when Run 3 is 1:24.00?",
    "question_th": "ทีมคืออะไร เมื่อรัน 3 คือ 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_en": "What is Run 1, when Team is \"Italy (ITA) Italy I\"?",
    "question_th": "Run 1 คืออะไร เมื่อทีมคือ \"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_en": "What is Athletes, when Run 2 is 1:24.77?",
    "question_th": "นักกีฬาคืออะไร เมื่อรัน 2 คือ 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_en": "What is Run 4, when Run 2 is 1:25.84?",
    "question_th": "Run 4 คืออะไร เมื่อ Run 2 คือ 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_en": "What is Run 1, when Athletes is \"Theo Kitt & Friedrich Kuhn\"?",
    "question_th": "รัน 1 คืออะไร เมื่อนักกีฬาคือ “ธีโอ คิตต์ และ ฟรีดริช คูห์น”",
    "context": "CREATE TABLE table_name_89 (run_1 VARCHAR, athletes VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_43 WHERE attendance < 521",
    "question_en": "What is Date, when Attendance is less than 521?",
    "question_th": "วันที่คืออะไร เมื่อผู้เข้าร่วมน้อยกว่า 521?",
    "context": "CREATE TABLE table_name_43 (date VARCHAR, attendance INTEGER)"
  },
  {
    "answer": "SELECT away FROM table_name_14 WHERE home = \"marathon\"",
    "question_en": "What is Away, when Home is \"marathon\"?",
    "question_th": "Away คืออะไร เมื่อบ้านคือ \"มาราธอน\"?",
    "context": "CREATE TABLE table_name_14 (away VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_31 WHERE home = \"marathon\"",
    "question_en": "What is Score, when Home is \"marathon\"?",
    "question_th": "สกอร์ คืออะไร เมื่อเจ้าบ้านคือ \"มาราธอน\"?",
    "context": "CREATE TABLE table_name_31 (score VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(attendance) FROM table_name_8 WHERE away = \"real juventud\"",
    "question_en": "What is the total number of Attendance(s), when Away is Real Juventud?",
    "question_th": "จำนวนผู้เข้าร่วมทั้งหมดเป็นเท่าใด เมื่อเรอัล ยูเวนตุด ทีมเยือน?",
    "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_en": "What is Record, when H/A/N is \"A\", and when Date is \"February 1\"?",
    "question_th": "Record คืออะไร เมื่อ H/A/N คือ \"A\" และเมื่อใดคือ \"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_en": "What is Date, when Opponent is \"Philadelphia 76ers\"?",
    "question_th": "วันที่เท่าไหร่เมื่อฝ่ายตรงข้ามคือ \"Philadelphia 76ers\"?",
    "context": "CREATE TABLE table_name_6 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_98 WHERE record = \"17-44\"",
    "question_en": "What is Opponent, when Record is 17-44?",
    "question_th": "คู่ต่อสู้คืออะไร เมื่อสถิติอยู่ที่ 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_en": "What is Date, when H/A/N is \"H\", and when Score is 112-118?",
    "question_th": "วันที่คืออะไร เมื่อ H/A/N คือ \"H\" และเมื่อคะแนนคือ 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_en": "What is H/A/N, when Record is 20-48?",
    "question_th": "H/A/N คืออะไร เมื่อบันทึกอยู่ที่ 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_en": "What is Record, when Score is 104-99?",
    "question_th": "Record คืออะไร เมื่อคะแนนอยู่ที่ 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_en": "What is the date with home team of Stockport County?",
    "question_th": "พบกับทีมเจ้าบ้านสต็อคพอร์ท เคาน์ตี้ วันที่เท่าไหร่?",
    "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_en": "What is the score on 17 November 1956 when home team is Derby County?",
    "question_th": "เมื่อวันที่ 17 พฤศจิกายน พ.ศ. 2499 เจ้าบ้านเป็น ดาร์บี้ เคาน์ตี้ เป็นอย่างไร?",
    "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_en": "What is the score when the tie number is 4?",
    "question_th": "เมื่อเลขเสมอกันคือ 4 คะแนนเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_47 (score VARCHAR, tie_no VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(points) FROM table_name_57 WHERE draw > 1",
    "question_en": "What is the number of points when the draws are more than 1?",
    "question_th": "เมื่อเสมอเกิน 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_en": "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?",
    "question_th": "เสมอกันมากกว่า 0 ทีมคือ โปโลเนีย บิดกอสซ์ มีแต้มน้อยกว่า 17 แต้ม เบอร์อะไร?",
    "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_en": "What is the lowest number for draw when the points are less than 17, and the lost is 13?",
    "question_th": "เลขต่ำสุดในการเสมอเมื่อแต้มน้อยกว่า 17 และแพ้คือ 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_en": "What is the number of points when the match is smaller than 14?",
    "question_th": "เมื่อแมทช์น้อยกว่า 14 แต้มจะได้กี่แต้ม?",
    "context": "CREATE TABLE table_name_50 (points VARCHAR, match INTEGER)"
  },
  {
    "answer": "SELECT MIN(apps) FROM table_name_24 WHERE name = \"smith\"",
    "question_en": "what is the apps when the name is smith?",
    "question_th": "ชื่อสมิธคือแอปอะไร",
    "context": "CREATE TABLE table_name_24 (apps INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(goals) FROM table_name_62 WHERE transfer_fee = \"£2,500,000\"",
    "question_en": "how many times is the transfer fee £2,500,000?",
    "question_th": "ค่าธรรมเนียมการโอนเท่าไหร่ 2,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_en": "how many times is the transfer window, summer and the name sinclair?",
    "question_th": "หน้าต่างโอนย้าย ซัมเมอร์ และชื่อซินแคลร์กี่ครั้ง?",
    "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_en": "what is the goals when the country is wal, the name is smith and apps is more than 0?",
    "question_th": "เป้าหมายเมื่อประเทศคือวอลชื่อสมิธและแอปมากกว่า 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_en": "What is the Studio of the Film with a Gross rental of $7,500,000?",
    "question_th": "สตูดิโอของภาพยนตร์ที่มีค่าเช่ารวม 7,500,000 ดอลลาร์คืออะไร",
    "context": "CREATE TABLE table_name_33 (studio VARCHAR, gross_rental VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_74 WHERE score = \"2 – 0\" AND competition = \"2006 fifa world cup qualification\"",
    "question_en": "Which Result has a Score of 2 – 0, and a Competition of 2006 fifa world cup qualification?",
    "question_th": "ผลการแข่งขันใดมีคะแนน 2 – 0 และการแข่งขันฟุตบอลโลกรอบคัดเลือกปี 2549",
    "context": "CREATE TABLE table_name_74 (result VARCHAR, score VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_81 WHERE result = \"0 – 2\"",
    "question_en": "Which Score has a Result of 0 – 2?",
    "question_th": "คะแนนใดมีผล 0 – 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_en": "Which Score has a Competition of uefa euro 2012 qualifying?",
    "question_th": "คะแนนใดมีการแข่งขัน uefa euro 2012 รอบคัดเลือก?",
    "context": "CREATE TABLE table_name_70 (score VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_55 WHERE score = \"0 – 2\"",
    "question_en": "Which Date has a Score of 0 – 2?",
    "question_th": "วันไหนมีคะแนน 0 – 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 – 0\"",
    "question_en": "Which Result has a Competition of 2014 fifa world cup qualification, and a Score of 2 – 0?",
    "question_th": "ผลการแข่งขันใดมีการแข่งขันฟุตบอลโลก 2014 รอบคัดเลือก และสกอร์ 2 – 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_en": "Which Venue has a Date of 1 march 2006?",
    "question_th": "สถานที่ใดมีวันที่ 1 มีนาคม 2549",
    "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_en": "Who is the player with an E to par and a 68-73-69=210?",
    "question_th": "ใครคือผู้เล่นที่มี E พาร์ และ 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_en": "What is the country with a 66-70-69=205 score?",
    "question_th": "ประเทศอะไรได้คะแนน 66-70-69=205?",
    "context": "CREATE TABLE table_name_21 (country VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_9 WHERE country = \"japan\"",
    "question_en": "Who is the player from Japan?",
    "question_th": "นักเตะจากญี่ปุ่นคือใคร?",
    "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_en": "What country is player jay haas, who is in t10 place, from?",
    "question_th": "นักเตะ เจย์ ฮาส อยู่อันดับที่ 10 จากประเทศอะไร?",
    "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_en": "What is the country with a 68-73-69=210 score?",
    "question_th": "ประเทศใดมีคะแนน 68-73-69=210 คะแนน?",
    "context": "CREATE TABLE table_name_91 (country VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_14 WHERE player = \"mark hayes\"",
    "question_en": "What is the score of player mark hayes?",
    "question_th": "นักเตะ มาร์ค เฮย์ส ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_14 (score VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_52 WHERE tie_no = \"7\"",
    "question_en": "WHAT IS THE HOME TEAM WITH A TIE NUMBER OF 7?",
    "question_th": "ทีมเหย้าที่มีหมายเลข 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_en": "WHAT IS THE AWAY TEAM WITH A HOME TEAM OF CHELSEA?",
    "question_th": "ทีมเยือนกับทีมเจ้าบ้านของเชลซีคืออะไร?",
    "context": "CREATE TABLE table_name_68 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_86 WHERE tie_no = \"13\"",
    "question_en": "WHAT IS THE SCORE WITH A TIE NUMBER OF 13?",
    "question_th": "คะแนนที่เสมอกันคือ 13?",
    "context": "CREATE TABLE table_name_86 (score VARCHAR, tie_no VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_24 WHERE away_team = \"reading\"",
    "question_en": "WHAT IS THE ATTENDANCE WITH A READING AWAY TEAM?",
    "question_th": "การเข้าร่วมของทีม READING AWAY คืออะไร?",
    "context": "CREATE TABLE table_name_24 (attendance VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_40 WHERE away_team = \"reading\"",
    "question_en": "WHAT IS THE ATTENDANCE  WITH A READING AWAY TEAM?",
    "question_th": "การเข้าร่วมของทีม READING AWAY คืออะไร?",
    "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_en": "Who was the Builder when the wheels were 4-4-0 and the railway was GCR?",
    "question_th": "ใครคือผู้สร้างเมื่อล้อเป็น 4-4-0 และรางรถไฟเป็น GCR",
    "context": "CREATE TABLE table_name_67 (builder VARCHAR, wheels VARCHAR, railway VARCHAR)"
  },
  {
    "answer": "SELECT railway FROM table_name_69 WHERE built = \"1920\"",
    "question_en": "Which railway was built in 1920?",
    "question_th": "ทางรถไฟสายใดที่ถูกสร้างขึ้นในปี 1920?",
    "context": "CREATE TABLE table_name_69 (railway VARCHAR, built VARCHAR)"
  },
  {
    "answer": "SELECT railway FROM table_name_63 WHERE built = \"1909\"",
    "question_en": "Which railway was built in 1909?",
    "question_th": "ทางรถไฟสายใดที่ถูกสร้างขึ้นในปี 1909?",
    "context": "CREATE TABLE table_name_63 (railway VARCHAR, built VARCHAR)"
  },
  {
    "answer": "SELECT built FROM table_name_93 WHERE builder = \"stephenson\"",
    "question_en": "What year was Stephenson the builder?",
    "question_th": "สตีเฟนสันเป็นผู้สร้างในปีใด",
    "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_en": "What is the Object Number for the item with wheels 4-4-0 and a location of Barrow Hill?",
    "question_th": "Object Number ของสินค้าที่มีล้อ 4-4-0 และตำแหน่งของ 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_en": "Who was the builder in 1920?",
    "question_th": "ใครคือผู้สร้างในปี 1920?",
    "context": "CREATE TABLE table_name_84 (builder VARCHAR, built VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_26 WHERE team = \"darida\"",
    "question_en": "Which team played in the Darida venue?",
    "question_th": "ทีมใดเคยเล่นที่สนามดาริดา?",
    "context": "CREATE TABLE table_name_26 (venue VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT position_in_2006 FROM table_name_77 WHERE team = \"dnepr\"",
    "question_en": "What was Team Dnepr's position in 2006?",
    "question_th": "ตำแหน่งของทีม Dnepr ในปี 2549 คืออะไร?",
    "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_en": "Which  ICAO has a Province of heilongjiang, and a IATA of jmu?",
    "question_th": "ICAO ใดมีจังหวัดเฮย์หลงเจียง และ IATA ของ jmu",
    "context": "CREATE TABLE table_name_34 (icao VARCHAR, province VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT province FROM table_name_56 WHERE icao = \"vmmc\"",
    "question_en": "which Province has a ICAO of vmmc?",
    "question_th": "จังหวัดใดมี ICAO ของ vmmc?",
    "context": "CREATE TABLE table_name_56 (province VARCHAR, icao VARCHAR)"
  },
  {
    "answer": "SELECT province FROM table_name_61 WHERE city = \"hiroshima\"",
    "question_en": "Which Province has a City of hiroshima?",
    "question_th": "จังหวัดใดมีเมืองฮิโรชิม่า",
    "context": "CREATE TABLE table_name_61 (province VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT province FROM table_name_62 WHERE iata = \"aku\"",
    "question_en": "Which Province has a IATA of aku?",
    "question_th": "จังหวัดใดมี IATA ของ aku?",
    "context": "CREATE TABLE table_name_62 (province VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT iata FROM table_name_3 WHERE city = \"budapest\"",
    "question_en": "Name the IATA with a City of budapest?",
    "question_th": "ตั้งชื่อ IATA ด้วยเมืองบูดาเปสต์หรือไม่?",
    "context": "CREATE TABLE table_name_3 (iata VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT province FROM table_name_60 WHERE icao = \"zbcf\"",
    "question_en": "Name the Province with ICAO of zbcf?",
    "question_th": "ตั้งชื่อจังหวัดด้วย ICAO ของ 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_en": "What is the country with a 70-74-69=213 score?",
    "question_th": "ประเทศอะไรได้คะแนน 70-74-69=213?",
    "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_en": "What is the highest to par of player mark brooks, who has a t2 place?",
    "question_th": "อะไรคือพาร์ที่สูงที่สุดของผู้เล่นมาร์ค บรูคส์ ใครได้อันดับ 2?",
    "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_en": "What is the score of player craig stadler from the United States with a t8 place?",
    "question_th": "คะแนนของผู้เล่น Craig Stadler จากสหรัฐอเมริกาที่อันดับ 8 คืออะไร?",
    "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_en": "What is the country of player ian woosnam?",
    "question_th": "นักเตะเอียน วูสนัมอยู่ประเทศอะไร?",
    "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_en": "How many silver medals did the team that had 5 bronze and less than 16 gold have?",
    "question_th": "ทีมที่ได้ 5 เหรียญทองแดง แต่น้อยกว่า 16 ทอง ได้เหรียญเงินกี่เหรียญ?",
    "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_en": "what is the team website when the institution is indiana university of pennsylvania?",
    "question_th": "เว็บไซต์ของทีมคืออะไรเมื่อสถาบันเป็นมหาวิทยาลัยอินเดียน่าแห่งเพนซิลเวเนีย?",
    "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_en": "what is the team nickname when joined tschl is 2010 and home arena is kettering rec center and the team website is dayton hockey?",
    "question_th": "ชื่อเล่นของทีมเมื่อเข้าร่วม tschl คือปี 2010 และสนามเหย้าคือ Kettering Rec Center และเว็บไซต์ของทีมคือ 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_en": "what is the team nickname that joined tschl after 2010?",
    "question_th": "ชื่อเล่นของทีมที่เข้าร่วม tschl หลังปี 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_en": "what is the institution at akron, oh?",
    "question_th": "สถาบันที่แอครอนคืออะไร?",
    "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_en": "what is the home arena that joined tschl in 2010 and the team nickname is bearcats?",
    "question_th": "สนามเหย้าที่เข้าร่วม tschl ในปี 2010 และชื่อเล่นของทีมคือ 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_en": "Richard Crump picked after the 114 pick was drafted in what round?",
    "question_th": "Richard Crump เลือกหลังจากร่างตัวเลือก 114 ในรอบใด",
    "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_en": "Who has a grid smaller than 24, less than 61 laps, and a ferrari constructor?",
    "question_th": "ใครมีกริดที่เล็กกว่า 24 น้อยกว่า 61 รอบ และเฟอร์รารีคอนสตรัคเตอร์?",
    "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_en": "Who is the driver with 58 laps and a grid smaller than 21?",
    "question_th": "ใครคือนักแข่งที่มีรอบ 58 และกริดน้อยกว่า 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_en": "What year did J. Jones, trearddur bay build a boat with a current status of tbsc?",
    "question_th": "J. Jones, tarddur bay สร้างเรือที่มีสถานะปัจจุบันเป็น 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_en": "What is the boat builder for a boat built in 1910/11 and a number of 39?",
    "question_th": "ช่างต่อเรือสำหรับเรือที่สร้างขึ้นในปี 1910/11 และจำนวน 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_en": "What is the boat builder for a boat built in 1994 and a number greater than 93?",
    "question_th": "ช่างต่อเรือสำหรับเรือที่สร้างขึ้นในปี 1994 และจำนวนมากกว่า 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_en": "What year was the cormorant built in?",
    "question_th": "นกกาน้ำสร้างขึ้นในปีใด",
    "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_en": "What boat builder built the valmai with a number less than 65?",
    "question_th": "ช่างต่อเรือคนไหนสร้างวาลไมด้วยจำนวนน้อยกว่า 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_en": "Which sporting location is where Richmond plays?",
    "question_th": "สนามกีฬาแห่งใดที่ริชมอนด์เล่น?",
    "context": "CREATE TABLE table_name_69 (venue VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_14 WHERE away_team = \"essendon\"",
    "question_en": "When the Away team was essendon, what was the Venue they played at?",
    "question_th": "เมื่อทีมเยือนเป็นเอสเซนดอน พวกเขาเล่นที่สนามอะไร?",
    "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_en": "What college or club team did Dale Mitchell play for?",
    "question_th": "Dale Mitchell เล่นให้กับทีมวิทยาลัยหรือสโมสรใด",
    "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_en": "Who is the leading scorer for the game on March 22, 2008 with a visitor of Magic?",
    "question_th": "ใครคือผู้ทำประตูสูงสุดในเกมเมื่อวันที่ 22 มีนาคม 2551 โดยมีผู้มาเยือนจาก 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_en": "Who was the home team on March 5, 2008?",
    "question_th": "ทีมเหย้าคือใครเมื่อวันที่ 5 มีนาคม พ.ศ. 2551?",
    "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_en": "What is the score for the away team at Essendon?",
    "question_th": "ทีมเยือนเอสเซนดอนมีสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_19 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT MIN(crowd) FROM table_name_80 WHERE home_team = \"st kilda\"",
    "question_en": "What was the smallest crowd size for the home team at St Kilda?",
    "question_th": "ขนาดฝูงชนที่เล็กที่สุดสำหรับทีมเหย้าที่เซนต์คิลดาคือเท่าใด?",
    "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_en": "Name for me the tatsuhito takaiwa for Ryusuke Taguchi of taguchi (14:31)",
    "question_th": "ตั้งชื่อให้ฉันว่า tatsuhito takaiwa สำหรับ Ryusuke Taguchi แห่ง 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_en": "Name the ryusuke taguchi for Jushin Liger of liger (9:57)",
    "question_th": "ตั้งชื่อ ริวสุเกะ ทากุจิ สำหรับ Jushin Liger แห่ง 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_en": "What were the most in attendance in Richmond?",
    "question_th": "ผู้เข้าร่วมประชุมมากที่สุดในริชมอนด์คือใคร?",
    "context": "CREATE TABLE table_name_61 (crowd INTEGER, away_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_90 WHERE away_team = \"essendon\"",
    "question_en": "What team played Essendon?",
    "question_th": "ทีมใดที่เล่นเอสเซนดอน?",
    "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_en": "Which game site has an Opponent of buffalo bills?",
    "question_th": "เว็บไซต์เกมใดที่มีฝ่ายตรงข้ามของบัฟฟาโลบิล?",
    "context": "CREATE TABLE table_name_75 (game_site VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_70 WHERE result = \"l 6–3\"",
    "question_en": "Which opponent has a Result of l 6–3?",
    "question_th": "คู่ต่อสู้คนใดมีผลการแข่งขัน l 6–3?",
    "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–0\"",
    "question_en": "Which game site has a Week bigger than 13, and a Result of l 20–0?",
    "question_th": "เว็บไซต์เกมใดที่มีสัปดาห์มากกว่า 13 และผลลัพธ์เป็น l 20–0",
    "context": "CREATE TABLE table_name_76 (game_site VARCHAR, week VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_44 WHERE week = 6",
    "question_en": "Which date has a Week of 6?",
    "question_th": "วันที่ใดมีสัปดาห์ที่ 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_en": "Who was the visiting team where the decision was Biron on October 4?",
    "question_th": "ทีมเยือนคือใครที่บีรอนตัดสินใจในวันที่ 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_en": "What is the highest number of losses where a team scored more than 45 goals and had 32 against?",
    "question_th": "จำนวนการแพ้สูงสุดที่ทีมทำได้มากกว่า 45 ประตูแต่เสียไป 32 ประตูคือเท่าใด",
    "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_en": "What is the location attendance of the game with Kobe Bryant (18) with the highest points on November 18?",
    "question_th": "ผู้ชมตำแหน่งไหนในเกมกับโคบี ไบรอันท์ (18) ที่มีคะแนนสูงสุดในวันที่ 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_en": "Which team had game 3?",
    "question_th": "ทีมไหนมีเกมที่ 3?",
    "context": "CREATE TABLE table_name_73 (team VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT authority FROM table_name_50 WHERE scientic_name = \"o. tricuspis\"",
    "question_en": "What is the authority of the scientific name of O. Tricuspis?",
    "question_th": "อำนาจของชื่อวิทยาศาสตร์ของ 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_en": "How many values for decile occur in Mount Roskill with Monte Cecilia school with a roll greater than 170?",
    "question_th": "ค่า Decile ที่เกิดขึ้นใน Mount Roskill กับโรงเรียน Monte Cecilia มีกี่ค่าที่มีม้วนมากกว่า 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_en": "For ranks over 2 with Golds over 6 and Silvers over 5 what would be the lowest qualifying Total?",
    "question_th": "สำหรับอันดับที่มากกว่า 2 โดยมีทองมากกว่า 6 และเงินมากกว่า 5 คะแนนรวมขั้นต่ำสุดที่เข้าเกณฑ์จะเป็นเท่าใด",
    "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_en": "What is the Playoffs during 2004-05?",
    "question_th": "รอบตัดเชือกระหว่างปี 2547-2548 คืออะไร?",
    "context": "CREATE TABLE table_name_82 (playoffs VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_44 WHERE date = \"july 3\"",
    "question_en": "What was the record of the game on July 3?",
    "question_th": "สถิติเกมวันที่ 3 กรกฎาคม เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_44 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_20 WHERE record = \"35-46\"",
    "question_en": "What was the attendance at the game when the record was 35-46?",
    "question_th": "ผู้เข้าชมเกมเมื่อสถิติอยู่ที่ 35-46 คืออะไร?",
    "context": "CREATE TABLE table_name_20 (attendance VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_76 WHERE record = \"35-47\"",
    "question_en": "What was the score of the game when the record was 35-47?",
    "question_th": "สกอร์ของเกมเมื่อตอนที่สถิติอยู่ที่ 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_en": "Who took the loss against the California Angels when the attendance was 10,886?",
    "question_th": "ใครเป็นคนแพ้ทีม California Angels เมื่อมีผู้เข้าร่วม 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_en": "How many people were in the crowd for a game than had carlton as the visiting team?",
    "question_th": "มีกี่คนที่อยู่ในฝูงชนสำหรับเกมมากกว่าที่คาร์ลตันเป็นทีมเยือน?",
    "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_en": "What was total size of the crowd at a home game for north melbourne?",
    "question_th": "จำนวนผู้ชมในเกมเหย้าของเมลเบิร์นตอนเหนือคือเท่าใด?",
    "context": "CREATE TABLE table_name_93 (crowd INTEGER, home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_70 WHERE venue = \"glenferrie oval\"",
    "question_en": "When was the game played at glenferrie oval?",
    "question_th": "เกมนี้เล่นที่ 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_en": "When the crowd was bigger than 26,063, who was the Away team?",
    "question_th": "เมื่อคนดูเยอะกว่า 26,063 ทีมเยือนคือใคร?",
    "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_en": "What did South Melbourne score when they were the Away team?",
    "question_th": "เซาธ์ เมลเบิร์น ทำประตูได้เท่าไหร่ตอนเป็นทีมเยือน?",
    "context": "CREATE TABLE table_name_21 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT AVG(rank) FROM table_name_45 WHERE airline = \"gol\"",
    "question_en": "What is the average rank of gol on airlines?",
    "question_th": "gol ของสายการบินมีอันดับเฉลี่ยเท่าไหร่?",
    "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_en": "What is the away team score when Home team is fitzroy?",
    "question_th": "สกอร์ทีมเยือนเมื่อทีมเจ้าบ้านเป็นฟิตซ์รอยเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_6 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_12 WHERE venue = \"corio oval\"",
    "question_en": "Which date was corio oval the venue?",
    "question_th": "สถานที่จัดงาน Corio oval คือวันไหน?",
    "context": "CREATE TABLE table_name_12 (date VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_8 WHERE away_team = \"st kilda\"",
    "question_en": "Which venue has St Kilda as the away team?",
    "question_th": "สนามไหนมีเซนต์คิลดาเป็นทีมเยือน?",
    "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_en": "What was the away team score at the game held on 17 August 1935?",
    "question_th": "คะแนนของทีมเยือนในเกมที่จัดขึ้นเมื่อวันที่ 17 สิงหาคม พ.ศ. 2478 เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_65 (away_team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT league FROM table_name_66 WHERE goals = 12",
    "question_en": "Which league has 12 goals?",
    "question_th": "ลีกไหนมี 12 ประตู?",
    "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_en": "Which league has less than 15 apps and 0 goals with sparta prague?",
    "question_th": "ลีกไหนมีสปาร์ต้า ปราก น้อยกว่า 15 นัด 0 ประตู?",
    "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_en": "How many runners up for the team that won in 1993?",
    "question_th": "ทีมที่ชนะในปี 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_en": "How many runners up for the team with under 1 win and a Years runner-up of 1985 , 1996?",
    "question_th": "มีรองชนะเลิศกี่คนสำหรับทีมที่ชนะต่ำกว่า 1 ครั้งและรองแชมป์ปี 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_en": "On what circuit was the iii Reims Grand Prix held?",
    "question_th": "การแข่งขัน Reims Grand Prix ครั้งที่ 3 จัดขึ้นที่สนามใด",
    "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_en": "On what circuit was the i mexican grand prix held?",
    "question_th": "i mexican grand prix จัดขึ้นที่สนามใด?",
    "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_en": "What is the largest start for a player with 14 conv, 10 tries and more than 22 pens?",
    "question_th": "การเริ่มต้นที่ใหญ่ที่สุดสำหรับผู้เล่นที่มี 14 Conv, 10 ครั้ง และปากกามากกว่า 22 ครั้งคืออะไร?",
    "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_en": "What is the total of tries for a player with conv smaller than 45, 19 starts and pens fewer than 22?",
    "question_th": "จำนวนความพยายามทั้งหมดสำหรับผู้เล่นที่มี Conv. น้อยกว่า 45, 19 ครั้งและปากกาน้อยกว่า 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_en": "When the united states has 22 wins and a rank greater than 2, what is the total earnings?",
    "question_th": "เมื่อสหรัฐอเมริกาชนะ 22 ครั้งและมีอันดับมากกว่า 2 รายได้รวมจะเป็นเท่าใด",
    "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_en": "What is the smallest rank for new zealand?",
    "question_th": "อันดับที่เล็กที่สุดสำหรับนิวซีแลนด์คืออะไร?",
    "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_en": "What is Richmond's away team score versus Geelong?",
    "question_th": "คะแนนทีมเยือนของริชมอนด์กับจีลองคือเท่าไร?",
    "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_en": "When the share of votes equals 21.8%, what's the sum of the total amount of seats?",
    "question_th": "เมื่อส่วนแบ่งคะแนนเสียงเท่ากับ 21.8% แล้วจำนวนที่นั่งทั้งหมดจะเท่ากับเท่าใด?",
    "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_en": "If the total number of seats is under 144, and the seats won is 32, which election is this?",
    "question_th": "หากจำนวนที่นั่งทั้งหมดต่ำกว่า 144 ที่นั่ง และได้ 32 ที่นั่ง การเลือกตั้งครั้งนี้คือการเลือกตั้งใด?",
    "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_en": "When the share of votes is 33.9%, what's the highest total amount of seats?",
    "question_th": "เมื่อส่วนแบ่งคะแนนเสียงอยู่ที่ 33.9% จำนวนที่นั่งรวมสูงสุดคือเท่าใด?",
    "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_en": "What was the home team's score when North Melbourne was the away team?",
    "question_th": "เมื่อ นอร์ท เมลเบิร์น เป็นทีมเยือนสกอร์ของเจ้าบ้านเท่าไหร่?",
    "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_en": "Who was the away team when Geelong was the home team?",
    "question_th": "ใครเป็นทีมเยือนตอนจีลองเป็นเจ้าบ้าน?",
    "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_en": "What is the score of away team, North Melbourne?",
    "question_th": "ทีมเยือน นอร์ธ เมลเบิร์น สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_37 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT MIN(crowd) FROM table_name_36 WHERE venue = \"kardinia park\"",
    "question_en": "What is the fewest number of attendees at Kardinia Park?",
    "question_th": "จำนวนผู้เข้าร่วมที่ 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_en": "What is the home team score when the away team was fitzroy?",
    "question_th": "สกอร์เจ้าบ้านตอนทีมเยือนฟิตซ์รอยเป็นเท่าไหร่?",
    "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_en": "Who was the home team at the game with a decision of Mason and a visiting team of Dallas?",
    "question_th": "เจ้าบ้านในเกมนั้นใครเป็นผู้ตัดสินของเมสันและทีมเยือนของดัลลัส?",
    "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_en": "Name the highest laps for time/retired of engine and grid of 5",
    "question_th": "ตั้งชื่อรอบสูงสุดสำหรับเวลา/ออกจากเครื่องยนต์และกริดที่ 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_en": "Name the highest laps for maserati and +6 laps for grid more than 11",
    "question_th": "ตั้งชื่อรอบสูงสุดสำหรับ Maserati และ +6 รอบสำหรับกริดมากกว่า 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_en": "Tell me the time/retired for grid 4",
    "question_th": "บอกฉันเวลา/เกษียณสำหรับตารางที่ 4",
    "context": "CREATE TABLE table_name_41 (time_retired VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_18 WHERE laps = 58",
    "question_en": "Tell me the driver for 58 laps",
    "question_th": "บอกคนขับมา 58 รอบ",
    "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_en": "What is the score of the home team aginst Essendon?",
    "question_th": "เจ้าบ้านกับเอสเซนดอนมีสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_89 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_26 WHERE home_team = \"geelong\"",
    "question_en": "When is the Geelong game?",
    "question_th": "จีลองเกมเมื่อไหร่?",
    "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_en": "Which Original Broadway production has a First US National Tour of roger bart?",
    "question_th": "ผลงานละครบรอดเวย์เรื่องใดที่มีการทัวร์ทั่วประเทศครั้งแรกของ 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_en": "Which Original Broadway production has a Role of dr. victor von frankenstein?",
    "question_th": "ซึ่งผลงานออริจินัลบรอดเวย์มีบทบาทเป็นดร. วิคเตอร์ ฟอน แฟรงเกนสไตน์?",
    "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_en": "Which Role has a First US National Tour of roger bart?",
    "question_th": "บทบาทใดที่มีการทัวร์ระดับชาติครั้งแรกของสหรัฐอเมริกาของ 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_en": "Which Original Italian production has a First US National Tour of joanna glushak?",
    "question_th": "ผลงานต้นฉบับของอิตาลีรายการใดที่มีการทัวร์ระดับชาติครั้งแรกของสหรัฐอเมริกาโดย 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_en": "At what venue was the game played where the away team was South Melbourne",
    "question_th": "เกมนี้เล่นที่สนามใดโดยทีมเยือนคือเซาท์เมลเบิร์น",
    "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_en": "Who directed the eula goodnight movie after 1949?",
    "question_th": "ใครเป็นผู้กำกับภาพยนตร์เรื่อง eula goodnight หลังปี 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_en": "What role does she play before 1942 with dorothy arzner directing?",
    "question_th": "เธอเล่นบทบาทอะไรก่อนปี 1942 โดยมีโดโรธี อาร์ซเนอร์เป็นผู้กำกับ?",
    "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_en": "What drama role does she play in 1973?",
    "question_th": "เธอเล่นละครเรื่องอะไรในปี 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_en": "What is the date of the 1986 FIFA World Cup?",
    "question_th": "ฟุตบอลโลก 1986 ตรงกับวันที่เท่าไหร่?",
    "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_en": "Name the least floor exercise for parallel bars more than 9.687 and pommel horse less than 8.45",
    "question_th": "ตั้งชื่อแบบฝึกหัดพื้นน้อยที่สุดสำหรับบาร์คู่ขนานที่มากกว่า 9.687 และม้าอานม้าน้อยกว่า 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_en": "Name the total number of pommel horses for vault of 9.475 and rank more than 16",
    "question_th": "ระบุจำนวนม้าอานม้าทั้งหมดสำหรับตู้นิรภัย 9.475 และอันดับมากกว่า 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_en": "When lake oval is the venue, what's the score of the home team?",
    "question_th": "เมื่อเลกรีเป็นสนาม เจ้าบ้านได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_4 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_60 WHERE date = \"june 3\"",
    "question_en": "Who did the cubs play on june 3?",
    "question_th": "ลูกใครเล่นในวันที่ 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_en": "Tell me the place of action for sergeant rank and 5th company, 2nd marines unit",
    "question_th": "แจ้งสถานที่ปฏิบัติการของจ่าสิบเอกและกองร้อยที่ 5 หน่วยนาวิกโยธินที่ 2 ครับ",
    "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_en": "Name the service for 7th marines rank of sergeant",
    "question_th": "ตั้งชื่อการให้บริการยศนาวิกโยธินที่ 7",
    "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_en": "How far is the olbia to sassari route?",
    "question_th": "ระยะทางจาก โอลเบีย ไป ซาสซารี ไกลแค่ไหน?",
    "context": "CREATE TABLE table_name_99 (distance VARCHAR, course VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_67 WHERE venue = \"miami\" AND goal = 38",
    "question_en": "What day is miami the venue with 38 goals?",
    "question_th": "ไมอามี่เป็นสนามที่ 38 ประตูคือวันไหน?",
    "context": "CREATE TABLE table_name_67 (date VARCHAR, venue VARCHAR, goal VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_63 WHERE goal = 41",
    "question_en": "What competition has 41 goals?",
    "question_th": "รายการไหนมี 41 ประตู?",
    "context": "CREATE TABLE table_name_63 (competition VARCHAR, goal VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_76 WHERE goal = 34",
    "question_en": "What day has 34 goals?",
    "question_th": "วันไหนมี 34 ประตู?",
    "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_en": "What driver had under 22 laps and a Time/Retired of ignition?",
    "question_th": "นักแข่งคนไหนที่วิ่งได้ต่ำกว่า 22 รอบและมีเวลาในการสตาร์ท/เลิกสตาร์ทรถ?",
    "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_en": "What is the highest number of laps for chris amon?",
    "question_th": "คริส อมรวิ่งได้สูงสุดกี่รอบ?",
    "context": "CREATE TABLE table_name_51 (laps INTEGER, driver VARCHAR)"
  },
  {
    "answer": "SELECT AVG(crowd) FROM table_name_94 WHERE away_team = \"hawthorn\"",
    "question_en": "What is the crowd with Away team of hawthorn?",
    "question_th": "ฝูงชนกับทีมเยือนของฮอว์ธอร์นเป็นอย่างไรบ้าง?",
    "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_en": "What away team score has carlton home team?",
    "question_th": "ทีมเยือนมีคะแนนทีมเหย้าคาร์ลตันเท่าไหร่?",
    "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_en": "What is the away team score at vfl park?",
    "question_th": "สกอร์ทีมเยือนที่วีเอฟแอล พาร์คเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_19 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_91 WHERE home_team = \"st kilda\"",
    "question_en": "When did St Kilda play a home game?",
    "question_th": "เซนต์คิลดาเล่นเกมเหย้าเมื่อไหร่?",
    "context": "CREATE TABLE table_name_91 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_59 WHERE venue = \"moorabbin oval\"",
    "question_en": "When was the game played at Moorabbin Oval?",
    "question_th": "เกมนี้เล่นที่ 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_en": "Tell me the name for kelston with roll less than 322",
    "question_th": "บอกชื่อเคลสตันที่มีม้วนน้อยกว่า 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_en": "Who was the opponent on September 8?",
    "question_th": "คู่ต่อสู้ในวันที่ 8 กันยายนคือใคร?",
    "context": "CREATE TABLE table_name_24 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT grand_finaldate FROM table_name_40 WHERE season = 1988",
    "question_en": "I want the Grand Final Date for season 1988",
    "question_th": "ฉันต้องการ Grand Final Date สำหรับฤดูกาล 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_en": "What Gaelic Athletic Association stadium is located in Carrick-on-Shannon?",
    "question_th": "สนามกีฬา Gaelic Athletic Association แห่งใดใน 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_en": "What is the Gaelic Football Stadium at McHale Park's ranking in total capacity?",
    "question_th": "สนามฟุตบอล Gaelic ที่ McHale Park มีความจุรวมอยู่ที่เท่าไร?",
    "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_en": "Which Away team score has a Crowd larger than 6,000?",
    "question_th": "คะแนนทีมเยือนใดที่มีฝูงชนมากกว่า 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_en": "Which average Crowd has a Home team of south melbourne?",
    "question_th": "ฝูงชนโดยเฉลี่ยคนไหนที่มีทีมเหย้าของเซาท์เมลเบิร์น?",
    "context": "CREATE TABLE table_name_72 (crowd INTEGER, home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_25 WHERE record = \"43–35\"",
    "question_en": "On what date was the Record of 43–35?",
    "question_th": "บันทึกปี 43–35 จัดขึ้นในวันที่ใด",
    "context": "CREATE TABLE table_name_25 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_17 WHERE date = \"april 3\"",
    "question_en": "What record occurred on April 3?",
    "question_th": "บันทึกอะไรเกิดขึ้นในวันที่ 3 เมษายน?",
    "context": "CREATE TABLE table_name_17 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT leading_scorer FROM table_name_54 WHERE date = \"april 9\"",
    "question_en": "Who led the score on April 9?",
    "question_th": "ใครเป็นผู้นำคะแนนในวันที่ 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_en": "What is the record for the game that shows the Rose Garden 20,126 as attendance?",
    "question_th": "อะไรคือสถิติของเกมที่แสดง Rose Garden 20,126 คนเข้าร่วม?",
    "context": "CREATE TABLE table_name_96 (record VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_24 WHERE home = \"dallas mavericks\"",
    "question_en": "What is the record for the game when the Dallas Mavericks was the home team?",
    "question_th": "สถิติเกมเมื่อดัลลัส แมฟเวอริกส์เป็นเจ้าบ้านเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_24 (record VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_44 WHERE attendance = \"rose garden 20,126\"",
    "question_en": "What is the record that has the Rose Garden 20,126 as the attendance?",
    "question_th": "มีสถิติผู้เข้าร่วมสวนกุหลาบ 20,126 คนเป็นประวัติการณ์อย่างไร?",
    "context": "CREATE TABLE table_name_44 (record VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_50 WHERE attendance = \"43,746\"",
    "question_en": "What was the score when 43,746 attended?",
    "question_th": "มีผู้เข้าร่วม 43,746 คน คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_50 (score VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_7 WHERE record = \"56-46\"",
    "question_en": "What was the score when the record 56-46 was met?",
    "question_th": "เมื่อทำสถิติ 56-46 เจอสกอร์เท่าไหร่?",
    "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_en": "What did Richmond score as the home team?",
    "question_th": "ริชมอนด์ทำคะแนนให้เจ้าบ้านได้เท่าไหร่?",
    "context": "CREATE TABLE table_name_43 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT model_name FROM table_name_45 WHERE displacement__cm³_ = 2521 AND engine_code = \"b5254 t2\"",
    "question_en": "Which model has a 2521 cm displacement and b5254 t2 engine?",
    "question_th": "รุ่นไหนมีระยะกระจัด 2521 ซม. และเครื่องยนต์ b5254 t2?",
    "context": "CREATE TABLE table_name_45 (model_name VARCHAR, displacement__cm³_ VARCHAR, engine_code VARCHAR)"
  },
  {
    "answer": "SELECT engine_code FROM table_name_84 WHERE displacement__cm³_ = 2435 AND model_name = \"2.4 (2001-2007)\"",
    "question_en": "Which engine has a 2435 cm displacement and is named 2.4 (2001-2007)?",
    "question_th": "เครื่องยนต์ใดที่มีระยะกระจัด 2,435 ซม. และมีชื่อว่า 2.4 (2544-2550)",
    "context": "CREATE TABLE table_name_84 (engine_code VARCHAR, displacement__cm³_ VARCHAR, model_name VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_71 WHERE date = \"10-09-2012\"",
    "question_en": "What was the venue for the game on 10-09-2012?",
    "question_th": "สถานที่จัดการแข่งขันในวันที่ 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_en": "Which competition was played on 13-11-2012?",
    "question_th": "การแข่งขันรายการใดที่เล่นในวันที่ 13-11-2555?",
    "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_en": "Which opponent is friendly and played on 15-08-2012?",
    "question_th": "คู่ต่อสู้คนไหนกระชับมิตรและเล่นในวันที่ 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_en": "What is the result of game played on 10-05-2012?",
    "question_th": "ผลการแข่งขันวันที่ 10-05-2555 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_23 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_26 WHERE date = \"07-09-2012\"",
    "question_en": "What opponent played on 07-09-2012?",
    "question_th": "ฝ่ายตรงข้ามคนใดที่เล่นในวันที่ 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_en": "What is the location of the game that was friendly and resulted in 2-3?",
    "question_th": "เกมกระชับมิตรนัดที่ 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_en": "What was the home team score for the game played at Western Oval?",
    "question_th": "คะแนนเจ้าบ้านในเกมที่เล่นที่เวสเทิร์น โอวัลเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_75 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT MIN(crowd) FROM table_name_23 WHERE home_team = \"carlton\"",
    "question_en": "What was the crowd number when the home team was Carlton?",
    "question_th": "จำนวนฝูงชนเมื่อเจ้าบ้านคือคาร์ลตันคือเท่าไร?",
    "context": "CREATE TABLE table_name_23 (crowd INTEGER, home_team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(capacity) FROM table_name_44 WHERE club = \"treviso\"",
    "question_en": "What is the largest capacity for the stadium for Treviso club?",
    "question_th": "ความจุที่ใหญ่ที่สุดสำหรับสนามกีฬาของสโมสร Treviso คืออะไร?",
    "context": "CREATE TABLE table_name_44 (capacity INTEGER, club VARCHAR)"
  },
  {
    "answer": "SELECT loci FROM table_name_77 WHERE software = \"cinderella\"",
    "question_en": "Is there Loci in the Cinderella software?",
    "question_th": "มี Loci ในซอฟต์แวร์ Cinderella หรือไม่?",
    "context": "CREATE TABLE table_name_77 (loci VARCHAR, software VARCHAR)"
  },
  {
    "answer": "SELECT macros FROM table_name_65 WHERE software = \"tabula\"",
    "question_en": "Are the there macros in the Tabula software?",
    "question_th": "มีมาโครในซอฟต์แวร์ Tabula หรือไม่",
    "context": "CREATE TABLE table_name_65 (macros VARCHAR, software VARCHAR)"
  },
  {
    "answer": "SELECT proofs FROM table_name_88 WHERE software = \"tabulae\"",
    "question_en": "Are there proofs in the Tabulae software?",
    "question_th": "มีหลักฐานในซอฟต์แวร์ Tabulae หรือไม่?",
    "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_en": "What is the year total for teams with under 37 games tied, over 33 games, and 15 losses?",
    "question_th": "ผลรวมของปีสำหรับทีมที่เสมอกันต่ำกว่า 37 เกม, มากกว่า 33 เกม และแพ้ 15 เกมเป็นเท่าใด",
    "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_en": "What is the low loss total for teams with under 3 years and a less than 0.625% winning percentage?",
    "question_th": "อะไรคือผลรวมการสูญเสียที่ต่ำสำหรับทีมที่มีอายุต่ำกว่า 3 ปีและมีเปอร์เซ็นต์การชนะน้อยกว่า 0.625%?",
    "context": "CREATE TABLE table_name_44 (lost INTEGER, pct VARCHAR, years VARCHAR)"
  },
  {
    "answer": "SELECT quantity_made FROM table_name_2 WHERE class = \"p14\"",
    "question_en": "How many CLASS P14 trains were made?",
    "question_th": "รถไฟ CLASS P14 ถูกผลิตขึ้นทั้งหมดกี่ขบวน?",
    "context": "CREATE TABLE table_name_2 (quantity_made VARCHAR, class VARCHAR)"
  },
  {
    "answer": "SELECT year_s__withdrawn FROM table_name_86 WHERE class = \"t14\"",
    "question_en": "In what year(s) were the CLASS T14 trains withdrawn from service?",
    "question_th": "รถไฟ CLASS T14 ถอนตัวจากการให้บริการในปีใด",
    "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_en": "What year was the 4-6-0 Wheel model train from 1908 withdrawn?",
    "question_th": "รถไฟจำลอง 4-6-0 Wheel จากปี 1908 ถูกถอนออกในปีใด",
    "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_en": "What was the away team at collingwood?",
    "question_th": "ทีมเยือนที่คอลลิงวูดเป็นทีมอะไร?",
    "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_en": "What is the home team at windy hill?",
    "question_th": "ทีมเจ้าบ้านที่วินดี้ฮิลล์เป็นอย่างไรบ้าง?",
    "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_en": "What is the greatest capacity when the largest number in attendance is 6,192?",
    "question_th": "ความจุสูงสุดคือเท่าใดเมื่อมีผู้เข้าร่วมมากที่สุดคือ 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_en": "What is the highest average number in attendance when the most in attendance is 5,078?",
    "question_th": "จำนวนผู้เข้าร่วมโดยเฉลี่ยสูงสุดคือเท่าใดเมื่อมีผู้เข้าร่วมมากที่สุดคือ 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_en": "What is the route that has a rank higher than 63, and Separation Summit as its mountain pass?",
    "question_th": "เส้นทางใดที่มีอันดับสูงกว่า 63 และมียอดแยกเป็นทางผ่านภูเขา?",
    "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_en": "Which player plays for Illinois?",
    "question_th": "ผู้เล่นคนไหนเล่นให้กับอิลลินอยส์?",
    "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_en": "Which player played for the Rockets in 2002-03?",
    "question_th": "นักเตะคนไหนเคยเล่นให้ทีมร็อคเก็ตส์ในฤดูกาล 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_en": "What is the height in feet of number 10?",
    "question_th": "เบอร์ 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_en": "What is the height in feet of the Illinois player?",
    "question_th": "ผู้เล่นอิลลินอยส์สูงกี่ฟุต?",
    "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_en": "Tell me the time/retired for Laps larger than 63 and has a grid of 20",
    "question_th": "บอกเวลา/เลิกใช้สำหรับรอบที่มากกว่า 63 และมีตารางเป็น 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_en": "I want the sum of Laps for wolfgang von trips, and a grid larger than 5",
    "question_th": "ฉันต้องการผลรวมของรอบสำหรับการเดินทางของโวล์ฟกัง ฟอน และตารางที่มากกว่า 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_en": "When fitzroy what was the home team score?",
    "question_th": "เมื่อฟิตซ์รอยสกอร์เจ้าบ้านได้เท่าไหร่?",
    "context": "CREATE TABLE table_name_85 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_10 WHERE away_team = \"st kilda\"",
    "question_en": "When st kilda played as the Away team which date was that?",
    "question_th": "ตอนที่เซนต์คิลดาเล่นเป็นทีมเยือนวันนั้นคือวันไหน?",
    "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_en": "What was the attendance on November 1, 1942?",
    "question_th": "ผู้เข้าร่วมในวันที่ 1 พฤศจิกายน พ.ศ. 2485 เป็นอย่างไรบ้าง?",
    "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_en": "What is the away team score at victoria park?",
    "question_th": "คะแนนทีมเยือน วิคตอเรีย พาร์ค คืออะไร?",
    "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_en": "What is the away team from st kilda?",
    "question_th": "ทีมเยือนเซนต์คิลดาเป็นทีมไหน?",
    "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_en": "In what Country/Territory did Jason Keatly win Mr. Gay Internatnional?",
    "question_th": "Jason Keatly ชนะรางวัล 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_en": "What was the score of the match in which Portsmouth was the Away team?",
    "question_th": "แมตช์ที่พอร์ทสมัธเป็นทีมเยือนสกอร์เท่าไหร่?",
    "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_en": "Which Away team did West Ham United play against?",
    "question_th": "เวสต์แฮม ยูไนเต็ด เจอกับทีมเยือนทีมไหน?",
    "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_en": "What was the final score of the match that had an attendance of 9,205?",
    "question_th": "คะแนนสุดท้ายของการแข่งขันที่มีผู้เข้าร่วม 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_en": "What is the home team score at glenferrie oval?",
    "question_th": "สกอร์ทีมเหย้าที่ 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_en": "Tell me the Laps for time/retired of +8 laps",
    "question_th": "บอกเวลารอบ/เกษียณจาก +8 รอบให้ฉันทราบ",
    "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_en": "Tell me the sum of laps with a time/retired of +13 laps with grid more than 18",
    "question_th": "บอกผลรวมของรอบด้วยเวลา/เกษียณ +13 รอบด้วยกริดมากกว่า 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_en": "I want the lowest laps that have a grid of 12",
    "question_th": "ฉันต้องการรอบต่ำสุดที่มีตาราง 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_en": "Tell me the sum of the grid with alfa romeo and toulo de graffenried",
    "question_th": "บอกผลรวมของตารางกับ alfa romeo และ 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_en": "Which away team's Venue is western oval?",
    "question_th": "สนามของทีมเยือนใดคือวงรีตะวันตก?",
    "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_en": "What was the decision from the Vancouver home game on April 21?",
    "question_th": "การตัดสินใจจากเกมเหย้าแวนคูเวอร์เมื่อวันที่ 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_en": "What was the home team that played Vancouver on April 29?",
    "question_th": "เจ้าบ้านที่เล่นแวนคูเวอร์เมื่อวันที่ 29 เมษายนคือทีมอะไร?",
    "context": "CREATE TABLE table_name_62 (home VARCHAR, visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT 2009 FROM table_name_71 WHERE 2011 = \"sf\"",
    "question_en": "Which 2009 had a 2011 of SF?",
    "question_th": "ปี 2009 ใดที่มีปี 2011 ของ SF",
    "context": "CREATE TABLE table_name_71 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2010 FROM table_name_56 WHERE tournament = \"us open\"",
    "question_en": "Which 2010 featured the US Open?",
    "question_th": "ปี 2010 รายการใดที่มีรายการ 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_en": "What is the highest grid when the race was retired due to the gearbox after 67 laps?",
    "question_th": "อะไรคือกริดที่สูงที่สุดเมื่อการแข่งขันถูกยกเลิกเนื่องจากกระปุกเกียร์หลังจาก 67 รอบ?",
    "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_en": "What was the time of the race for Driver Jarno Trulli on a grid smaller than 13?",
    "question_th": "เวลาใดของการแข่งขันสำหรับนักแข่ง Jarno Trulli บนกริดที่เล็กกว่า 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_en": "How many laps did Nick Heidfeld drive on grids larger than 4?",
    "question_th": "Nick Heidfeld ขับบนกริดที่ใหญ่กว่า 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_en": "What is the full number of New Council when the previous council was 54 and the staying councilor number is bigger than 36?",
    "question_th": "จำนวนสภาใหม่เมื่อสภาเดิมมี 54 และจำนวนสมาชิกสภาที่เข้าพักมากกว่า 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_en": "Which number of New Councils had a previous council number of 19 and the seats up for election were bigger than 6?",
    "question_th": "สภาใหม่จำนวนใดที่มีสภาเดิมจำนวน 19 ที่นั่ง และที่นั่งในการเลือกตั้งมากกว่า 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_en": "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?",
    "question_th": "จำนวนเฉลี่ยของการดำรงตำแหน่งสมาชิกสภาที่มีผลการเลือกตั้งน้อยกว่า 10 กับพรรคกรีนและสภาใหม่ใหญ่กว่า 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_en": "What is the number of points for the vehicle with a mp4-17d chassis earlier than 2003?",
    "question_th": "รถยนต์ที่มีแชสซี mp4-17d ก่อนปี 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_en": "What is the earliest year with a mp4-17d chassis and less than 142 points.",
    "question_th": "ปีแรกสุดคือปีไหนที่มีแชสซี mp4-17d และน้อยกว่า 142 คะแนน",
    "context": "CREATE TABLE table_name_60 (year INTEGER, chassis VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT SUM(decile) FROM table_name_88 WHERE suburb = \"clendon\"",
    "question_en": "What is the sum for every value of Decile in Clendon?",
    "question_th": "ผลรวมของทุกค่าของ Decile ใน 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_en": "Which local board does the Clendon Teen Parent Unit belong to?",
    "question_th": "Clendon Teen Parent Unit อยู่ในคณะกรรมการท้องถิ่นใด",
    "context": "CREATE TABLE table_name_98 (local_board VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_17 WHERE type = \"learning/social difficulties\"",
    "question_en": "Which name is the learning/social difficulties type?",
    "question_th": "ประเภทปัญหาการเรียนรู้/สังคม คือชื่อใด",
    "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_en": "what is the result when extra is 4 x 100 m relay and the year is later than 1971?",
    "question_th": "ผลลัพธ์ที่ได้คือรีเลย์ 4 x 100 ม. และปีหลังปี 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_en": "what is the venue when the result is 2nd and extra is 4 x 100 m relay?",
    "question_th": "สนามที่ผลการแข่งขันเป็นที่ 2 และพิเศษคือ รีเลย์ 4 x 100 ม.?",
    "context": "CREATE TABLE table_name_30 (venue VARCHAR, result VARCHAR, extra VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_30 WHERE visitor = \"anaheim\"",
    "question_en": "What was the date of the Red Wings home game against Anaheim?",
    "question_th": "เกมเหย้าของ Red Wings กับ Anaheim คือวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_30 (date VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_71 WHERE home = \"vancouver\"",
    "question_en": "What was the score of the Red Wings game when Vancouver was the home team?",
    "question_th": "เกมหงส์แดงเมื่อแวนคูเวอร์เป็นเจ้าบ้านสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_71 (score VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_23 WHERE home_team = \"footscray\"",
    "question_en": "What is the name of the away team who played Footscray?",
    "question_th": "ทีมเยือนเล่นฟุตสเครย์ชื่ออะไรครับ?",
    "context": "CREATE TABLE table_name_23 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_62 WHERE venue = \"princes park\"",
    "question_en": "What date was the game played at Princes Park?",
    "question_th": "เกมนี้เล่นที่ 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_en": "During the Australian Grand Prix and the fastest lap was driven by Jacques Villeneuve, what's the report recorded?",
    "question_th": "ระหว่างการแข่งขัน Australian Grand Prix และรอบที่เร็วที่สุดนั้นขับโดย Jacques Villeneuve มีรายงานบันทึกไว้ว่าอย่างไร",
    "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_en": "When the fastest lap was driven by damon hill who was the winning constructor?",
    "question_th": "เมื่อรอบที่เร็วที่สุดถูกขับโดย damon hill ใครคือผู้สร้างที่ชนะ?",
    "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_en": "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?",
    "question_th": "ระหว่างการแข่งขันกรังด์ปรีซ์ที่ฮังการี ซึ่งตำแหน่งโพลโพซิชั่นคือ มิชาเอล ชูมัคเกอร์ และรอบที่เร็วที่สุดขับโดยเดมอน ฮิลล์ จำนวนรอบการแข่งขันทั้งหมดที่ตรงตามมาตรฐานเหล่านี้คือเท่าใด",
    "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_en": "When the winning driver was jacques villeneuve what was the fastest lap driven?",
    "question_th": "เมื่อนักแข่งที่ชนะคือ ฌาค วิลล์เนิฟ คนใดเป็นผู้ขับรอบที่เร็วที่สุด?",
    "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_en": "I want to know the average Gold for total smaller 12 and bronze less than 1 and wushu with silver more than 3",
    "question_th": "อยากทราบค่าเฉลี่ยทองรวมเล็ก 12 และทองแดงน้อยกว่า 1 และวูซูที่มีเงินมากกว่า 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_en": "I want the lowest Gold for silver being 2 and electronic sports",
    "question_th": "ฉันต้องการทองต่ำสุดสำหรับเงินเป็น 2 และกีฬาอิเล็กทรอนิกส์",
    "context": "CREATE TABLE table_name_98 (gold INTEGER, silver VARCHAR, sport VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(bronze) FROM table_name_67 WHERE sport = \"futsal\"",
    "question_en": "Tell me the total number of Bronze for futsal",
    "question_th": "บอกจำนวนทองแดงทั้งหมดสำหรับฟุตซอล",
    "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_en": "Tell me the total number of total for vovinam and bronze less than 3",
    "question_th": "บอกจำนวนรวมของโววินามและบรอนซ์น้อยกว่า 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_en": "Tell me the sum of bronze for gold being 27 and silver more than 30",
    "question_th": "บอกผลรวมของทองแดงสำหรับทองคำเป็น 27 และเงินมากกว่า 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_en": "Who won the season of 1998?",
    "question_th": "ใครเป็นผู้ชนะในฤดูกาล 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_en": "What year was the locomotive withdrawn that was made in 1876?",
    "question_th": "หัวรถจักรที่ผลิตในปี พ.ศ. 2419 ถูกถอนออกในปีใด",
    "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_en": "What was the lowest attendance when Fitzroy was the home team?",
    "question_th": "ผู้เข้าร่วมน้อยที่สุดเมื่อ Fitzroy เป็นทีมเหย้าคืออะไร?",
    "context": "CREATE TABLE table_name_44 (crowd INTEGER, home_team VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_93 WHERE record = \"25–17–5\"",
    "question_en": "Which attendance has the 25–17–5 record?",
    "question_th": "ผู้เข้าร่วมคนใดมีสถิติ 25–17–5",
    "context": "CREATE TABLE table_name_93 (attendance VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_86 WHERE visitor = \"minnesota\"",
    "question_en": "What was the score when Minnesota visited?",
    "question_th": "คะแนนเมื่อมินนิโซตาไปเยือนคืออะไร?",
    "context": "CREATE TABLE table_name_86 (score VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT leading_scorer FROM table_name_55 WHERE visitor = \"trail blazers\"",
    "question_en": "Who was the leading scorer when the visiting team was the Trail Blazers?",
    "question_th": "ใครคือผู้ทำประตูสูงสุดเมื่อทีมเยือนคือเทรลเบลเซอร์?",
    "context": "CREATE TABLE table_name_55 (leading_scorer VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_65 WHERE date = \"november 26, 2007\"",
    "question_en": "Who was the visiting team on November 26, 2007?",
    "question_th": "ทีมเยือนเมื่อวันที่ 26 พฤศจิกายน พ.ศ. 2550 คือใคร?",
    "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_en": "Who constructed stefan johansson's car with a grid under 14?",
    "question_th": "ใครเป็นคนสร้างรถของ Stefan Johansson ที่มีกริดต่ำกว่า 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_en": "Who constructed piercarlo ghinzani's car with under 44 laps?",
    "question_th": "ใครเป็นคนสร้างรถของปิแอร์คาร์โล กินซานีที่มีรอบสนามต่ำกว่า 44 รอบ?",
    "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_en": "On buses ranging in numbr 401-484, what is the lowest width that one longer thna 25 feet can have?",
    "question_th": "บนรถโดยสารที่มีหมายเลข 401-484 ความกว้างต่ำสุดที่รถโดยสารที่ยาวกว่า 25 ฟุตสามารถมีได้คือเท่าใด",
    "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_en": "For a vehicle below 25 feet, that was retired in 2005 and had a navistar t444e engine, what was the total width?",
    "question_th": "สำหรับรถยนต์ที่มีความสูงต่ำกว่า 25 ฟุต ซึ่งเลิกผลิตในปี 2005 และมีเครื่องยนต์ navistar t444e ความกว้างรวมเป็นเท่าใด",
    "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_en": "What was the score of the game when the home was Atlanta?",
    "question_th": "เมื่อเจ้าบ้านเป็นแอตแลนต้าสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_99 (score VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_60 WHERE decision = \"brodeur\" AND home = \"ottawa\"",
    "question_en": "What is the number of people in attendance when the decision was brodeur and the home was ottawa?",
    "question_th": "จำนวนคนที่เข้าร่วมเมื่อการตัดสินใจคือ brodeur และบ้านคือออตตาวาคือเท่าไร?",
    "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–6, 6–4, [10–12]\"",
    "question_en": "Which Partner with the surface of Clay ended up as a runner-up with a score of 1–6, 6–4, [10–12]?",
    "question_th": "พันธมิตรคนใดที่มีพื้นผิวของ Clay ลงเอยด้วยอันดับรองชนะเลิศด้วยคะแนน 1–6, 6–4, [10–12]?",
    "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_en": "What was the score of the other team that played Geelong?",
    "question_th": "อีกทีมที่เล่นจีลองมีคะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_89 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT MIN(mintage) FROM table_name_49 WHERE year < 2005",
    "question_en": "What is the lowest mintage in a year earlier than 2005?",
    "question_th": "ปริมาณการผลิตที่ต่ำที่สุดในหนึ่งปีก่อนหน้าปี 2548 คือเท่าใด",
    "context": "CREATE TABLE table_name_49 (mintage INTEGER, year INTEGER)"
  },
  {
    "answer": "SELECT SUM(mintage) FROM table_name_61 WHERE artist = \"pierre leduc\"",
    "question_en": "What is the sum of all mintage created by Pierre Leduc?",
    "question_th": "ผลรวมของจำนวนเหรียญกษาปณ์ทั้งหมดที่สร้างโดย 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_en": "Which week was the 1995-10-01 game on?",
    "question_th": "เกมฤดูกาล 1995-10-01 จัดขึ้นในสัปดาห์ใด?",
    "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_en": "What was the result of the game prior to week 9 with an attendance of 49,970?",
    "question_th": "อะไรคือผลลัพธ์ของเกมก่อนสัปดาห์ที่ 9 โดยมีผู้เข้าร่วม 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_en": "What was the date of the game at Joe Robbie Stadium?",
    "question_th": "เกมที่โจ ร็อบบี้ สเตเดี้ยมคือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_14 (date VARCHAR, game_site VARCHAR)"
  },
  {
    "answer": "SELECT game_site FROM table_name_99 WHERE attendance = \"54,436\"",
    "question_en": "Where was the game with the attendance of 54,436?",
    "question_th": "เกมไหนที่มีผู้ชม 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_en": "What is the highest silver total for nations with 3 total and over 2 bronze?",
    "question_th": "เงินรวมสูงสุดสำหรับประเทศที่มีทั้งหมด 3 เหรียญและมากกว่า 2 เหรียญทองแดงคือเท่าใด",
    "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_en": "What is the highest bronze total for east germany with under 3 total medals?",
    "question_th": "เยอรมนีตะวันออกมีเหรียญทองแดงรวมสูงสุดโดยได้น้อยกว่า 3 เหรียญคือเท่าใด",
    "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_en": "What production code does episode 174 of Melrose place have?",
    "question_th": "Melrose place ตอนที่ 174 มีรหัสการผลิตอะไรบ้าง?",
    "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_en": "What is the title of Melsrose Place episode number 168?",
    "question_th": "Melsrose Place ตอนที่ 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_en": "What episode number is the first episode of season 11 in Melrose Place?",
    "question_th": "Melrose Place เป็นตอนแรกของซีซั่น 11 หมายเลขตอนใด",
    "context": "CREATE TABLE table_name_60 (no_in_series INTEGER, no_in_season VARCHAR)"
  },
  {
    "answer": "SELECT d_46_√ FROM table_name_14 WHERE d_50_√ = \"d 50 √\"",
    "question_en": "What is the D 46 √ when the D 50 √ is d 50 √?",
    "question_th": "D 46 √ คืออะไร เมื่อ D 50 √ คือ d 50 √?",
    "context": "CREATE TABLE table_name_14 (d_46_√ VARCHAR, d_50_√ VARCHAR)"
  },
  {
    "answer": "SELECT d_46_√ FROM table_name_3 WHERE d_44_√ = \"← majority\"",
    "question_en": "What is the D 46 √ when the D 44 √ is ← majority?",
    "question_th": "D 46 √ คืออะไรเมื่อ D 44 √ เป็นเสียงส่วนใหญ่ของ ←?",
    "context": "CREATE TABLE table_name_3 (d_46_√ VARCHAR, d_44_√ VARCHAR)"
  },
  {
    "answer": "SELECT d_44_√ FROM table_name_32 WHERE d_46_√ = \"r 26\"",
    "question_en": "What is the D 44 √ when the D 46 √ is r 26?",
    "question_th": "D 44 √ คืออะไร เมื่อ D 46 √ เป็น r 26?",
    "context": "CREATE TABLE table_name_32 (d_44_√ VARCHAR, d_46_√ VARCHAR)"
  },
  {
    "answer": "SELECT d_41_√ FROM table_name_83 WHERE d_47_√ = \"d 34\"",
    "question_en": "What is the D 41 √ when the D 47 √ is d 34?",
    "question_th": "D 41 √ คืออะไร เมื่อ D 47 √ คือ d 34?",
    "context": "CREATE TABLE table_name_83 (d_41_√ VARCHAR, d_47_√ VARCHAR)"
  },
  {
    "answer": "SELECT d_41_√ FROM table_name_24 WHERE d_47_√ = \"r 34 o\"",
    "question_en": "What is the D 41 √ when the D 47 √ is r 34 o?",
    "question_th": "D 41 √ คืออะไร เมื่อ D 47 √ เป็น r 34 o?",
    "context": "CREATE TABLE table_name_24 (d_41_√ VARCHAR, d_47_√ VARCHAR)"
  },
  {
    "answer": "SELECT MAX(crowd) FROM table_name_51 WHERE venue = \"windy hill\"",
    "question_en": "What is the highest crowd at windy hill?",
    "question_th": "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_en": "What date is st kilda the Away team?",
    "question_th": "เซนต์คิลดาทีมเยือนวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_90 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT ties FROM table_name_74 WHERE drawn = \"20\"",
    "question_en": "How many ties drawed at 20?",
    "question_th": "เสมอกันกี่ครั้งที่ 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_en": "What is the time for the second qualification where the first qualification time was 1:21.523?",
    "question_th": "รอบคัดเลือกรอบสองเวลาเท่าไร โดยรอบคัดเลือกรอบแรกคือ 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_en": "What is the time for the second qualification where the best time was 1:20.772?",
    "question_th": "รอบคัดเลือกรอบสองเวลาที่ดีที่สุดคือ 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_en": "What is the team name for the racer who had a first qualification time of 1:22.655?",
    "question_th": "ชื่อทีมของนักแข่งที่เข้ารอบแรกด้วยเวลา 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_en": "What is the name of the racer that had a first qualification time of 1:22.085?",
    "question_th": "นักแข่งที่เข้ารอบคัดเลือกครั้งแรกด้วยเวลา 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_en": "What is Paul Tracy's best time racing on the Forsythe Racing team?",
    "question_th": "เวลาที่ดีที่สุดของ Paul Tracy ในทีม Forsythe Racing คืออะไร?",
    "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_en": "What is the type of disc by Logistics after 2004?",
    "question_th": "ดิสก์ประเภทใดที่จัดทำโดย Logistics หลังจากปี 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_en": "What is the year of the disc with a catalogue number mash02?",
    "question_th": "แผ่นดิสก์ที่มีหมายเลขแค็ตตาล็อก 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_en": "What is the lowest swimsuit score a contestant from Rhode Island with an average larger than 9.235 has?",
    "question_th": "คะแนนชุดว่ายน้ำต่ำสุดที่ผู้เข้าแข่งขันจากโรดไอแลนด์มีคะแนนเฉลี่ยมากกว่า 9.235 คือเท่าใด",
    "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_en": "What is the highest average a contestant from Iowa with a swimsuit smaller than 9.267 has?",
    "question_th": "ผู้เข้าแข่งขันจากไอโอวาที่มีชุดว่ายน้ำน้อยกว่า 9.267 มีค่าเฉลี่ยสูงสุดคือเท่าใด",
    "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_en": "What is the highest average for a contestant with an evening gown larger than 9.449 from Kansas?",
    "question_th": "ค่าเฉลี่ยสูงสุดสำหรับผู้เข้าแข่งขันที่มีชุดราตรีใหญ่กว่า 9.449 จากแคนซัสคือเท่าใด",
    "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_en": "What is the lowest swimsuit for a contestant with an average of 9.125?",
    "question_th": "ชุดว่ายน้ำที่ต่ำที่สุดสำหรับผู้เข้าแข่งขันที่มีค่าเฉลี่ย 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_en": "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?",
    "question_th": "ข้อใดคือการสัมภาษณ์ต่ำสุดของผู้เข้าแข่งขันจากนอร์ทแคโรไลนาที่มีชุดว่ายน้ำขนาดใหญ่กว่า 9.021 ค่าเฉลี่ยมีขนาดเล็กกว่า 9.513 และชุดราตรีที่มีขนาดใหญ่กว่า 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_en": "What's the most jim colbert got paid?",
    "question_th": "จิม โคลเบิร์ตได้รับเงินมากที่สุดเท่าไร?",
    "context": "CREATE TABLE table_name_23 (earnings__ INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT AVG(wins) FROM table_name_40 WHERE player = \"bruce fleisher\"",
    "question_en": "How many average wins does bruce fleisher have?",
    "question_th": "Bruce Fleisher มีชัยชนะโดยเฉลี่ยกี่ครั้ง?",
    "context": "CREATE TABLE table_name_40 (wins INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(rank) FROM table_name_88 WHERE wins < 22",
    "question_en": "What rank has less than 22 wins",
    "question_th": "อันดับไหนน้อยกว่า 22 ชนะ",
    "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_en": "Who was the winner of the game in 1999 with Kansas City Chiefs as the loser?",
    "question_th": "ใครคือผู้ชนะเกมนี้ในปี 1999 โดยมี Kansas City Chiefs เป็นผู้แพ้?",
    "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_en": "What is the average year of the games with the date December 26?",
    "question_th": "ปีเฉลี่ยของเกมคือวันที่ 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_en": "What is the home team that played Hull City?",
    "question_th": "เจ้าบ้านที่เล่นฮัลล์ซิตี้คือทีมอะไร?",
    "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_en": "Name the height when the floors are bigger than 30 at the bny mellon center",
    "question_th": "ตั้งชื่อความสูงเมื่อพื้นใหญ่กว่า 30 ที่ 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_en": "Name the year for 8 rank",
    "question_th": "ตั้งชื่อปี 8 อันดับ",
    "context": "CREATE TABLE table_name_41 (year VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT MIN(crowd) FROM table_name_93 WHERE away_team = \"collingwood\"",
    "question_en": "What was the lowest amount of people to turn out at a game with the away team as collingwood?",
    "question_th": "จำนวนผู้เล่นที่น้อยที่สุดในเกมกับทีมเยือนอย่างคอลลิงวูดคือเท่าไร?",
    "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_en": "When the home team of st kilda was playing, what was the away team score?",
    "question_th": "เมื่อเจ้าบ้าน เซนต์คิลดา ลงเล่น สกอร์ทีมเยือนเท่าไหร่?",
    "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_en": "What is the total number of people that attended the glenferrie oval venue?",
    "question_th": "จำนวนคนที่เข้าร่วมสถานที่จัดงาน Glenferrie Oval เป็นจำนวนเท่าใด?",
    "context": "CREATE TABLE table_name_39 (crowd INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT leading_scorer FROM table_name_59 WHERE visitor = \"grizzlies\"",
    "question_en": "Tell me the leading scorer for grizzlies",
    "question_th": "บอกผู้ทำแต้มนำของกริซลี่ย์หน่อยสิ",
    "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_en": "Name the record with home of bucks on 24 november 2007",
    "question_th": "ตั้งชื่อสถิติด้วย Home of Bucks เมื่อวันที่ 24 พฤศจิกายน พ.ศ. 2550",
    "context": "CREATE TABLE table_name_76 (record VARCHAR, home VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_65 WHERE home = \"bobcats\"",
    "question_en": "Name the record for bobcats",
    "question_th": "ตั้งชื่อระเบียนสำหรับ 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_en": "In the venue of Glenferrie Oval, what is the home team score?",
    "question_th": "สนามเกล็นเฟอร์รี่ โอวัล สกอร์เจ้าบ้านเท่าไหร่?",
    "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_en": "What is the date of the game in a week earlier than 10 played in Texas stadium agains the Atlanta Falcons?",
    "question_th": "วันที่ของเกมในหนึ่งสัปดาห์ก่อนหน้า 10 นัดที่สนามเท็กซัสกับแอตแลนตา ฟอลคอนส์คือวันที่เท่าไร?",
    "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_en": "What is the nationality of the player from Round 2, Pick 19 from College of Kansas State?",
    "question_th": "ผู้เล่นจากรอบ 2 เลือก 19 จากวิทยาลัยรัฐแคนซัสมีสัญชาติอะไร?",
    "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_en": "What is the nationality of the player in Position C from Round 1?",
    "question_th": "ผู้เล่นในตำแหน่ง C จากรอบที่ 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_en": "Which team has Pick 13 in Round 2?",
    "question_th": "ทีมใดมี Pick 13 ในรอบที่ 2?",
    "context": "CREATE TABLE table_name_88 (team VARCHAR, round VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_59 WHERE pick = \"7\"",
    "question_en": "Who is the Pick 7 player?",
    "question_th": "ผู้เล่น Pick 7 คือใคร?",
    "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–1, 1–6, 4–6\"",
    "question_en": "Who were the opponents in the final in which the score was 6–1, 1–6, 4–6?",
    "question_th": "ใครคือคู่ต่อสู้ในรอบชิงชนะเลิศซึ่งสกอร์เป็น 6–1, 1–6, 4–6?",
    "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_en": "Tell me the launch date with Institutional authority of ndc and launch vehicle of hatf-xi",
    "question_th": "บอกวันเปิดตัวกับหน่วยงานสถาบันของ ndc และยานพาหนะเปิดตัวของ 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_en": "Name the launch vehicle with Institutional authority of ndc",
    "question_th": "ตั้งชื่อรถส่งโดยมีอำนาจสถาบันของ 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_en": "Name the institutional authority for launch date of october 12, 2004",
    "question_th": "ตั้งชื่อหน่วยงานสถาบันสำหรับวันที่เปิดตัววันที่ 12 ตุลาคม พ.ศ. 2547",
    "context": "CREATE TABLE table_name_47 (institutional_authority VARCHAR, launch_date VARCHAR)"
  },
  {
    "answer": "SELECT results FROM table_name_73 WHERE institutional_authority = \"paf\"",
    "question_en": "Name the results for institutional authority of paf",
    "question_th": "ตั้งชื่อผลลัพธ์สำหรับอำนาจสถาบันของ paf",
    "context": "CREATE TABLE table_name_73 (results VARCHAR, institutional_authority VARCHAR)"
  },
  {
    "answer": "SELECT laps FROM table_name_59 WHERE driver = \"yannick dalmas\"",
    "question_en": "How many laps did Yannick Dalmas do?",
    "question_th": "Yannick Dalmas ทำได้กี่รอบ?",
    "context": "CREATE TABLE table_name_59 (laps VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT laps FROM table_name_39 WHERE driver = \"eddie cheever\"",
    "question_en": "How many Laps does Eddie Cheever have?",
    "question_th": "Eddie Cheever มีกี่รอบ?",
    "context": "CREATE TABLE table_name_39 (laps VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_98 WHERE grid = 19",
    "question_en": "What is the name of the Constructor with a 19 Grid?",
    "question_th": "Constructor ที่มี 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__ = \"°02′\"",
    "question_en": "Name the total number of NGC number for sagittarius and diffuse nebula with declination of °02′",
    "question_th": "ตั้งชื่อจำนวนรวมของเลข NGC สำหรับราศีธนูและเนบิวลากระจายโดยมีความเบี่ยงเบนที่ °02′",
    "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__ = \"°38′00″\"",
    "question_en": "I want to know the right ascension which has an NGC less than 6575 and declination of °38′00″",
    "question_th": "ฉันต้องการทราบการขึ้นที่ถูกต้องซึ่งมี NGC น้อยกว่า 6575 และค่าความลาดเอียงที่ °38′00″",
    "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__ = \"°22′\"",
    "question_en": "Name the right ascension for sagittarius and NGC number larger than 6522 for open cluster and declination of °22′",
    "question_th": "ตั้งชื่อการขึ้นสู่สวรรค์ที่ถูกต้องสำหรับชาวราศีธนูและหมายเลข NGC ที่มากกว่า 6522 สำหรับกระจุกดาวเปิดและความชันที่ °22′",
    "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–5)\"",
    "question_en": "How many were in attendance for the loss of rekar (4–5)?",
    "question_th": "มีผู้เข้าร่วมการสูญเสียเรการ์กี่คน (4–5)",
    "context": "CREATE TABLE table_name_15 (attendance INTEGER, loss VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_72 WHERE status = \"won\"",
    "question_en": "In what year is the status of won?",
    "question_th": "วอนมีสถานะเป็นปีไหน?",
    "context": "CREATE TABLE table_name_72 (year VARCHAR, status VARCHAR)"
  },
  {
    "answer": "SELECT role FROM table_name_70 WHERE film = \"the last samurai\"",
    "question_en": "What was the Last Samurai role?",
    "question_th": "บทบาทของ Last Samurai คืออะไร?",
    "context": "CREATE TABLE table_name_70 (role VARCHAR, film VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_14 WHERE \"role\" = \"role\"",
    "question_en": "When the role is role what was the status?",
    "question_th": "เมื่อบทบาทคือบทบาท สถานะเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_14 (status VARCHAR)"
  },
  {
    "answer": "SELECT film FROM table_name_96 WHERE status = \"nominated\" AND name = \"ken watanabe\"",
    "question_en": "What Ken Watanabe film as nominated?",
    "question_th": "ภาพยนตร์เรื่องใดของ เคน วาตานาเบะ ได้รับการเสนอชื่อเข้าชิง?",
    "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_en": "What year was The Last Samurai nominated?",
    "question_th": "The Last Samurai ได้รับการเสนอชื่อเข้าชิงในปีใด",
    "context": "CREATE TABLE table_name_42 (year VARCHAR, status VARCHAR, film VARCHAR)"
  },
  {
    "answer": "SELECT film FROM table_name_31 WHERE \"year\" = \"year\"",
    "question_en": "When the year is year what was the film?",
    "question_th": "เมื่อปีเป็นปีที่ภาพยนตร์เรื่องอะไร?",
    "context": "CREATE TABLE table_name_31 (film VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_name_43 WHERE quantity < 174 AND date = \"1921–23\"",
    "question_en": "Which class has less in quantity than 174 between the years 1921–23?",
    "question_th": "ชั้นเรียนใดมีปริมาณน้อยกว่า 174 ระหว่างปี 1921–23",
    "context": "CREATE TABLE table_name_43 (class VARCHAR, quantity VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_29 WHERE quantity = 11",
    "question_en": "Which type has a quantity of 11?",
    "question_th": "ชนิดใดมีปริมาณ 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_en": "Which class has less than 3 in quantity with  a type of 4-6-0?",
    "question_th": "คลาสใดมีปริมาณน้อยกว่า 3 แบบ 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_en": "What was the score for the team with a time of 2:44?",
    "question_th": "สกอร์ของทีมด้วยเวลา 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_en": "When is the earliest year opened for huff hall that was established after 1974?",
    "question_th": "ฮัฟฟ์ฮอลล์ที่ก่อตั้งหลังปี 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_en": "Tell me the sum of earnings for rank less than 1",
    "question_th": "บอกผลรวมของรายได้สำหรับอันดับน้อยกว่า 1",
    "context": "CREATE TABLE table_name_63 (earnings__ INTEGER, rank INTEGER)"
  },
  {
    "answer": "SELECT SUM(rank) FROM table_name_6 WHERE wins = 17",
    "question_en": "Tell me the sum of rank with wins of 17",
    "question_th": "บอกผลรวมอันดับด้วยชัยชนะ 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_en": "What is the total number of laps where time/retired is +2 laps and the grid number is bigger than 18?",
    "question_th": "จำนวนรอบทั้งหมดโดยที่เวลา/เกษียณคือ +2 รอบ และจำนวนกริดมากกว่า 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_en": "What is the mean number of laps where time/retired was +1:05.564?",
    "question_th": "จำนวนรอบเฉลี่ยที่เวลา/เกษียณคือ +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_en": "Which lap number had a grid number bigger than 9 and where the driver was Mark Webber?",
    "question_th": "หมายเลขรอบใดที่มีหมายเลขกริดมากกว่า 9 และ 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_en": "What is the date when Richmond was the home team?",
    "question_th": "ริชมอนด์เป็นเจ้าบ้านวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_66 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT AVG(tie_no) FROM table_name_66 WHERE attendance = 126",
    "question_en": "what is the tie no when the attendance is 126?",
    "question_th": "เสมอไม่เมื่อผู้เข้าร่วมคือ 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_en": "what is the average tie no when the home team is stamford a.f.c.?",
    "question_th": "ค่าเฉลี่ยเสมอว่าไม่เมื่อเจ้าบ้านเจอสแตมฟอร์ด เอเอฟซีคือเท่าไร?",
    "context": "CREATE TABLE table_name_11 (tie_no INTEGER, home_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_97 WHERE tie_no = 28",
    "question_en": "what is the score when the tie no is 28?",
    "question_th": "คะแนนเมื่อเสมอกันคือ 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_en": "Who was the driver of the Officine Alfieri Maserati with a Tyre of P?",
    "question_th": "ใครคือคนขับรถ Officine Alfieri Maserati ที่มียาง 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_en": "Who was the entrant for driver Giuseppe Farina when he had a Chassis of 625 555 D50 and a tyre of E?",
    "question_th": "ใครคือผู้เข้าชิงนักแข่ง Giuseppe Farina ในเมื่อเขามีแชสซีขนาด 625 555 D50 และยาง 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_en": "Who constructed Mike Sparken's car with a tyre of E?",
    "question_th": "ใครเป็นคนสร้างรถของ Mike Sparken ด้วยยาง E?",
    "context": "CREATE TABLE table_name_79 (constructor VARCHAR, tyre VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT rounds FROM table_name_74 WHERE constructor = \"gordini\"",
    "question_en": "What rounds did Gordini participate in?",
    "question_th": "Gordini เข้าร่วมการแข่งขันรอบใดบ้าง?",
    "context": "CREATE TABLE table_name_74 (rounds VARCHAR, constructor VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_86 WHERE chassis = \"250f\" AND rounds = \"1\"",
    "question_en": "Who constructed the car in round 1 with a Chassis of 250F?",
    "question_th": "ใครเป็นคนสร้างรถในรอบที่ 1 ด้วยแชสซี 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_en": "What was the lowest attendance at Glenferrie Oval?",
    "question_th": "ผู้เข้าร่วม 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_en": "Where did North Melbourne play as the away team?",
    "question_th": "นอร์ท เมลเบิร์น เล่นเป็นทีมเยือนที่ไหน?",
    "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_en": "What was Footscray's score as the away team?",
    "question_th": "ฟุตสเครย์ทำแต้มในเกมเยือนได้เท่าไหร่?",
    "context": "CREATE TABLE table_name_94 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team AS score FROM table_name_92 WHERE venue = \"glenferrie oval\"",
    "question_en": "What was the away teams score at Glenferrie Oval?",
    "question_th": "คะแนนทีมเยือนที่ 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_en": "Who is the head coach of the team located in Mudgeeraba?",
    "question_th": "เฮดโค้ชของทีมที่อยู่ในเมืองมัดจีราบาคือใคร?",
    "context": "CREATE TABLE table_name_53 (head_coach VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT president FROM table_name_37 WHERE head_coach = \"mark wakeling\"",
    "question_en": "Who is the President of the team that has the Head Coach Mark Wakeling?",
    "question_th": "ประธานทีมคนไหนมีเฮดโค้ช มาร์ค เวคลิง ?",
    "context": "CREATE TABLE table_name_37 (president VARCHAR, head_coach VARCHAR)"
  },
  {
    "answer": "SELECT head_coach FROM table_name_86 WHERE president = \"mario volarevic\"",
    "question_en": "Who is the Head Coach of the team whose President is Mario Volarevic?",
    "question_th": "ใครคือหัวหน้าโค้ชของทีมที่มีประธานคือ มาริโอ โวลาเรวิช?",
    "context": "CREATE TABLE table_name_86 (head_coach VARCHAR, president VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_68 WHERE head_coach = \"steve beever\"",
    "question_en": "Which team's Head Coach is Steve Beever?",
    "question_th": "เฮดโค้ชทีมไหนคือ สตีฟ บีเวอร์?",
    "context": "CREATE TABLE table_name_68 (team VARCHAR, head_coach VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_45 WHERE date = \"1/11\"",
    "question_en": "How many people attended the match on 1/11?",
    "question_th": "มีผู้เข้าร่วมการแข่งขันในวันที่ 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_en": "Who was the leading scorer in the match when the Golden State Warriors were visiting the Dallas Mavericks?",
    "question_th": "ใครคือผู้ทำประตูสูงสุดในการแข่งขันเมื่อ Golden State Warriors ไปเยือน 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_en": "Which CFL Team has a Position of dl?",
    "question_th": "ทีม CFL ใดมีตำแหน่ง 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_en": "Which CFL Team has a College of montreal, and a Player of marc trepanier?",
    "question_th": "ทีม CFL ใดที่มี College of montreal และมีผู้เล่นของ 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_en": "What is the Translated Title of Steinulven?",
    "question_th": "ชื่อที่แปลของ 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_en": "What Norwegian title has 218 pages and Translated Title of Breaking Dawn?",
    "question_th": "ชื่อภาษานอร์เวย์เรื่องใดมี 218 หน้าและชื่อที่แปลของ 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_en": "I want the constituency which has a swing to gain less than 6.05 and a rank of 2",
    "question_th": "อยากให้เขตเลือกตั้งที่มีสวิงได้ไม่ถึง 6.05 และอันดับ 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_en": "Name the winning party 2007 for result of labour hold and swing to gain less than 7.11 for wrexham",
    "question_th": "ตั้งชื่อพรรคที่ชนะปี 2550 จากผลของการระงับแรงงานและการแกว่งเพื่อให้ได้คะแนนน้อยกว่า 7.11 สำหรับเร็กซ์แฮม",
    "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–5)\"",
    "question_en": "Which box score has a Loss of capuano (5–5)?",
    "question_th": "คะแนนกล่องใดมีการสูญเสียคาปูอาโน (5–5)",
    "context": "CREATE TABLE table_name_82 (boxscore VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_23 WHERE score = \"2–5\"",
    "question_en": "Which opponent has a Score of 2–5?",
    "question_th": "คู่ต่อสู้คนใดมีคะแนน 2–5?",
    "context": "CREATE TABLE table_name_23 (opponent VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_28 WHERE date = \"june 10\"",
    "question_en": "What is the record for june 10?",
    "question_th": "บันทึกประจำวันที่ 10 มิถุนายน เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_28 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT boxscore FROM table_name_32 WHERE attendance = \"54,773\"",
    "question_en": "Which box score has an Attendance of 54,773?",
    "question_th": "คะแนนกล่องไหนมีผู้เข้าร่วม 54,773 คน?",
    "context": "CREATE TABLE table_name_32 (boxscore VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_43 WHERE date = \"june 8\"",
    "question_en": "What loss happened june 8?",
    "question_th": "การสูญเสียอะไรเกิดขึ้นในวันที่ 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–3)\"",
    "question_en": "Which record has a Boxscore of w2, and a Loss of kline (2–3)?",
    "question_th": "บันทึกใดมี Boxscore ที่ w2 และ Loss of kline (2–3)",
    "context": "CREATE TABLE table_name_89 (record VARCHAR, boxscore VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT pct FROM table_name_84 WHERE total_games < 944",
    "question_en": "What is the PCT when the total number of games is less than 944?",
    "question_th": "PCT คืออะไรเมื่อจำนวนเกมทั้งหมดน้อยกว่า 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_en": "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?",
    "question_th": "จำนวนสูงสุดที่หายไปเมื่อจำนวนเสมอกันมากกว่า 42 ปีน้อยกว่า 132 และ PCT น้อยกว่า 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_en": "What is the average number lost when the PCT is more than 0.7334 and the total number of games is larger than 48?",
    "question_th": "จำนวนเฉลี่ยที่สูญเสียไปเมื่อ PCT มากกว่า 0.7334 และจำนวนเกมทั้งหมดมากกว่า 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_en": "What is the total number of tied games when Old Dominion is the independent and the years is more than 4?",
    "question_th": "จำนวนเกมที่เสมอกันทั้งหมดเมื่อ Old Dominion เป็นอิสระและมากกว่า 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_en": "What is the lowest PCT when Old Dominion is the independent and the years is more than 4?",
    "question_th": "PCT ต่ำสุดคือเท่าใดเมื่อ Old Dominion เป็นอิสระและปีมากกว่า 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_en": "how many laps was the driver jacques villeneuve and the grid more than 7?",
    "question_th": "คนขับ ฌาค วิลล์เนิฟ และกริดมากกว่า 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_en": "What is the high assists score of Nick Collison (11)?",
    "question_th": "คะแนนแอสซิสต์สูงของนิค คอลลิสัน (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_en": "What is Time/Retired with a Grid of 12?",
    "question_th": "เวลา/เกษียณอายุด้วยตาราง 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_en": "How many grids have a Manufacturer of honda, a Rider of yuki takahashi, and more than 22 laps?",
    "question_th": "มีผู้ผลิตฮอนด้า คนขี่ของยูกิ ทาคาฮาชิ และมากกว่า 22 รอบกี่กริด?",
    "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_en": "How many laps have a Time/Retired of +1:35.553?",
    "question_th": "มีเวลา/เกษียณกี่รอบ +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_en": "If fitzroy was the home team what date did they play?",
    "question_th": "ถ้าฟิตซ์รอยเป็นเจ้าบ้านจะลงเล่นวันไหน?",
    "context": "CREATE TABLE table_name_48 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_46 WHERE goal = 4",
    "question_en": "What is the score of the game with 4 goals?",
    "question_th": "เกมนี้ทำได้ 4 ประตูเท่าไหร่?",
    "context": "CREATE TABLE table_name_46 (score VARCHAR, goal VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_25 WHERE competition = \"friendly\" AND goal = 1",
    "question_en": "What is the score of the friendly competition with 1 goal?",
    "question_th": "แมตช์กระชับมิตร 1 ประตูมีสกอร์เท่าไหร่?",
    "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_en": "What was the Illinois Derby purse?",
    "question_th": "กระเป๋าเงิน Illinois Derby คืออะไร?",
    "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_en": "How much money did Crafty Bear wins with a dist of 1 mile?",
    "question_th": "Crafty Bear ชนะระยะทาง 1 ไมล์ได้เงินเท่าไหร่?",
    "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_en": "What track did they race on at the Fountain of Youth Stakes?",
    "question_th": "พวกเขาแข่งในสนามอะไรที่ 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_en": "What is the grid total for alain prost with over 14 laps?",
    "question_th": "ตารางรวมสำหรับ Alain Prost ที่เกิน 14 รอบเป็นเท่าใด?",
    "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_en": "What is the Digital/analog signal with a Chipset based on with radeon 8500?",
    "question_th": "สัญญาณดิจิตอล/อนาล็อกที่มีชิปเซ็ตที่ใช้กับ 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_en": "What is the Retail name with a Chipset based on with radeon 9200?",
    "question_th": "ชื่อการขายปลีกที่มีชิปเซ็ตซึ่งใช้ 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_en": "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?",
    "question_th": "ชิปเซ็ตที่ใช้สัญญาณดิจิทัล/อะนาล็อกของอะนาล็อกคืออะไร พร้อมด้วยอินเทอร์เฟซที่พร้อมใช้งานของ AGP พร้อมด้วยชื่อการขายปลีกพร้อมอุปกรณ์ครบครัน 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_en": "What is the Retail name with an Available interface with pci express 2.0?",
    "question_th": "ชื่อการขายปลีกพร้อมอินเทอร์เฟซที่พร้อมใช้งานกับ 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_en": "What is the Digital/analog signal with an Available interface with pci express, with Retail name with all-in-wonder x600 pro?",
    "question_th": "สัญญาณดิจิทัล/อนาล็อกพร้อมอินเทอร์เฟซที่ใช้งานได้กับ pci express คืออะไร พร้อมชื่อการขายปลีกพร้อม 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_en": "What is the Retail name with a Digital/analog signal with analog, and a Chipset based on with radeon 9600?",
    "question_th": "ชื่อร้านค้าปลีกที่มีสัญญาณดิจิตอล/อนาล็อกพร้อมอนาล็อก และชิปเซ็ตที่ใช้กับ 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_en": "What was the score of the match on 11/2/01?",
    "question_th": "ผลการแข่งขันวันที่ 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_en": "Did the Bulls win or lose at Valley Parade?",
    "question_th": "บูลส์ชนะหรือแพ้ที่ 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_en": "What was the score when the Vikings won the championship at Namyangju Stadium?",
    "question_th": "เมื่อไวกิ้งคว้าแชมป์ที่สนามนัมยางจูได้คะแนนเท่าไหร่?",
    "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_en": "Tell me the label for formats of cd and album and year of 2008",
    "question_th": "บอกฉลากสำหรับรูปแบบซีดีและอัลบั้มและปี 2551 ให้ฉันทราบ",
    "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_en": "Tell me the label for digital format with nebula remixes",
    "question_th": "บอกป้ายกำกับสำหรับรูปแบบดิจิทัลที่มีการรีมิกซ์เนบิวลาหน่อย",
    "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_en": "I want to know the catalog number for album and seed records label for cd and title of grey",
    "question_th": "ฉันต้องการทราบหมายเลขแค็ตตาล็อกของอัลบั้มและค่ายเพลง Seed สำหรับซีดีและชื่อเพลงของสีเทา",
    "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_en": "Tell me the format with year more than 2000 and label of myuzyk with catalog number of mzykn08",
    "question_th": "บอกรูปแบบปีมากกว่า 2000 และป้าย myuzyk พร้อมหมายเลขแค็ตตาล็อก 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_en": "If the Venue was kardinia park what was the highest Crowd attended?",
    "question_th": "หากสถานที่จัดงานคือสวนสาธารณะคาร์ดิเนีย มีฝูงชนเข้าร่วมมากที่สุดคนใด?",
    "context": "CREATE TABLE table_name_12 (crowd INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_45 WHERE home_team = \"collingwood\"",
    "question_en": "If the Home team of collingwood was playing, what was the Away team?",
    "question_th": "ถ้าทีมเหย้าของคอลลิงวูดเล่นอยู่ ทีมเยือนคือทีมอะไร?",
    "context": "CREATE TABLE table_name_45 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_58 WHERE venue = \"princes park\"",
    "question_en": "If the Venue was princes park, which Date did the game take place on?",
    "question_th": "ถ้าสถานที่คือ Princes Park เกมดังกล่าวจัดขึ้นที่ Date ไหน?",
    "context": "CREATE TABLE table_name_58 (date VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT AVG(rank) FROM table_name_98 WHERE laps = 76",
    "question_en": "What is the average rank of one who is at 76 laps?",
    "question_th": "อันดับเฉลี่ยของผู้ที่อยู่ที่ 76 รอบคือเท่าไร?",
    "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_en": "What is the average grid number for cars that retired due to engine failure before 18 laps?",
    "question_th": "หมายเลขกริดเฉลี่ยสำหรับรถยนต์ที่เลิกใช้เนื่องจากเครื่องยนต์ขัดข้องก่อน 18 รอบคือเท่าใด",
    "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_en": "What is the time/retired for jo siffert with a grid under 11?",
    "question_th": "เวลา/เกษียณสำหรับ jo siffert ที่มีตารางต่ำกว่า 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_en": "What driver has under 19 laps and a grid under 10?",
    "question_th": "นักแข่งคนไหนมีรอบต่ำกว่า 19 รอบและมีกริดต่ำกว่า 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_en": "Where was the game that the attendance was 24,694?",
    "question_th": "เกมไหนที่มีผู้ชม 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_en": "What was the attendance on September 11?",
    "question_th": "ผู้เข้าร่วมในวันที่ 11 กันยายนมีอะไรบ้าง?",
    "context": "CREATE TABLE table_name_10 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_47 WHERE win__number > 3",
    "question_en": "Who had more than 3 wins?",
    "question_th": "ใครชนะมากกว่า 3 ครั้ง?",
    "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_en": "How many league cup goals for tyrone thompson with 0 FLT goals?",
    "question_th": "ไทโรน ธอมป์สันทำประตูในลีกคัพได้กี่ประตูจาก FLT?",
    "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_en": "How many goals for the FW with 0 FA cup appearances and over 0 playoff goals?",
    "question_th": "เอฟดับบลิว ลงเล่นเอฟเอ คัพ 0 นัด และยิงประตูเพลย์ออฟได้กี่ประตู?",
    "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_en": "I want to know the third with runner of paris saint-germain and edition less than 5",
    "question_th": "อยากทราบอันที่ 3 กับนักวิ่งของ paris saint-germain และรุ่นน้อยกว่า 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_en": "I want the sum of year for edition more than 4 and winners of new york red bulls",
    "question_th": "ฉันต้องการผลรวมของปีสำหรับรุ่นมากกว่า 4 และผู้ชนะของ 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_en": "Tell me the lowest edition for winner of arsenal and third of celtic",
    "question_th": "บอกรุ่นต่ำสุดสำหรับผู้ชนะอาร์เซนอลและที่สามของเซลติก",
    "context": "CREATE TABLE table_name_13 (edition INTEGER, winner VARCHAR, third VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(order) FROM table_name_77 WHERE goals = 239",
    "question_en": "What is total orders for goals of 239?",
    "question_th": "คำสั่งซื้อทั้งหมดสำหรับเป้าหมาย 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_en": "Who had an order of 907 and more than 1 game?",
    "question_th": "ใครมีออเดอร์ 907 และมากกว่า 1 เกมบ้าง?",
    "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_en": "What seasons had 288 games and more than 100 goals?",
    "question_th": "ฤดูกาลใดมี 288 เกมและมากกว่า 100 ประตู?",
    "context": "CREATE TABLE table_name_88 (seasons VARCHAR, goals VARCHAR, games VARCHAR)"
  },
  {
    "answer": "SELECT MIN(goals) FROM table_name_17 WHERE seasons = \"1996 – 2001\" AND order > 939",
    "question_en": "What is the low goal for orders more than 939 during Seasons of 1996 – 2001?",
    "question_th": "เป้าหมายต่ำสำหรับคำสั่งซื้อมากกว่า 939 ในช่วงฤดูกาลปี 1996 – 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_en": "What was the Record for the game on October 30?",
    "question_th": "สถิติของเกมในวันที่ 30 ตุลาคม คืออะไร?",
    "context": "CREATE TABLE table_name_8 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_65 WHERE visitor = \"philadelphia\"",
    "question_en": "When was the game played against a visiting team from Philadelphia?",
    "question_th": "เกมนี้เล่นกับทีมเยือนจากฟิลาเดลเฟียเมื่อใด?",
    "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_en": "What was the score when the home team, Toronto, played against New Jersey?",
    "question_th": "เมื่อเจ้าบ้านโตรอนโต้เจอนิวเจอร์ซี่ย์สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_62 (score VARCHAR, visitor VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_20 WHERE home = \"ny islanders\"",
    "question_en": "When was the home game for the NY Islanders?",
    "question_th": "เกมเหย้าของทีม 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_en": "Who was the home team for the game played on November 2, 2007?",
    "question_th": "ใครคือเจ้าบ้านในเกมที่เล่นเมื่อวันที่ 2 พฤศจิกายน พ.ศ. 2550?",
    "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_en": "What is silver when gold is 1 and the rank is less than 3 for japan?",
    "question_th": "เงินจะเป็นอย่างไรเมื่อทองเป็น 1 และอันดับต่ำกว่า 3 สำหรับญี่ปุ่น?",
    "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_en": "What is the rank for the total less than 1?",
    "question_th": "อันดับสำหรับผลรวมน้อยกว่า 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_en": "What is the gold when the total is less than 2, and rank is 3 and Canada is the nation?",
    "question_th": "ทองได้เท่าไรเมื่อยอดรวมน้อยกว่า 2 และอันดับ 3 และแคนาดาเป็นประเทศ?",
    "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_en": "What is the average amount of floors of the building that is ranked larger than 30, a year prior to 1977 and an address of 100 Van Ness Avenue?",
    "question_th": "จำนวนชั้นเฉลี่ยของอาคารที่อยู่ในอันดับที่มากกว่า 30 ในหนึ่งปีก่อนปี 1977 และที่อยู่ 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_en": "What is the name of the building that has more than 31 floors and built prior to 1964?",
    "question_th": "อาคารที่มีมากกว่า 31 ชั้นและสร้างก่อนปี พ.ศ. 2507 มีชื่อว่าอะไร?",
    "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_en": "Who was the away team at the game played at Lake Oval?",
    "question_th": "ทีมเยือนในเกมที่เล่นที่เลคโอวัลคือใคร?",
    "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_en": "What was the home team score for the game played against Collingwood?",
    "question_th": "คะแนนของเจ้าบ้านในเกมที่พบกับคอลลิงวูดเป็นเท่าใด?",
    "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_en": "Who was the team with the smallest crowd at the Princes Park venue?",
    "question_th": "ทีมใดคือทีมที่มีผู้ชมน้อยที่สุดที่สนาม Princes Park?",
    "context": "CREATE TABLE table_name_73 (crowd INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT SUM(size_km²) FROM table_name_52 WHERE density_hab_km = 8 OFFSET 321",
    "question_en": "what is the size km² when the density hab/km is 8,321?",
    "question_th": "ขนาด km² คือเท่าไร เมื่อความหนาแน่น hab/km คือ 8,321?",
    "context": "CREATE TABLE table_name_52 (size_km² INTEGER, density_hab_km VARCHAR)"
  },
  {
    "answer": "SELECT away_team AS score FROM table_name_24 WHERE venue = \"victoria park\"",
    "question_en": "What is the score for the away team at Victoria Park?",
    "question_th": "ทีมเยือน วิคตอเรีย ปาร์ค ให้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_24 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_60 WHERE home_team = \"carlton\"",
    "question_en": "When did Carlton play as the home team?",
    "question_th": "คาร์ลตันเล่นเป็นเจ้าบ้านเมื่อใด?",
    "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_en": "What was the original air date when ed horowitz wrote it?",
    "question_th": "วันที่ออกอากาศครั้งแรกคือวันที่ ed horowitz เขียนไว้?",
    "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_en": "Name the episode number that aired on july 23, 2000",
    "question_th": "ตั้งชื่อตอนที่ออกอากาศวันที่ 23 กรกฎาคม พ.ศ. 2543",
    "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_en": "How many draws for avia band with over 22 points?",
    "question_th": "วงเอเวียแบนด์เกิน 22 แต้ม กี่งวด?",
    "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_en": "What's the total earnings ($) with more than two wins and a rank less than 2?",
    "question_th": "รายได้รวม ($) ที่ชนะมากกว่าสองครั้งและอันดับน้อยกว่า 2 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_1 (earnings___ VARCHAR, wins VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_32 WHERE rank < 2",
    "question_en": "Who's ranked less than 2?",
    "question_th": "ใครอยู่อันดับที่ต่ำกว่า 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_en": "What did the away team score at Moorabbin oval?",
    "question_th": "ทีมเยือนทำคะแนนได้ที่มูรับบินโอวัล?",
    "context": "CREATE TABLE table_name_38 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT crowd FROM table_name_78 WHERE venue = \"moorabbin oval\"",
    "question_en": "What was the attendance at the game played at Moorabbin Oval?",
    "question_th": "ผู้เข้าร่วมในเกมที่เล่นที่ 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_en": "What is the wheel arrangement of the locomotive with number 6 or 4?",
    "question_th": "การจัดเรียงล้อของหัวรถจักรหมายเลข 6 หรือ 4 คืออะไร?",
    "context": "CREATE TABLE table_name_95 (wheel_arrangement VARCHAR, number VARCHAR)"
  },
  {
    "answer": "SELECT boiler_pressure FROM table_name_58 WHERE name = \"hesperus\"",
    "question_en": "What is the boiler pressure for the Hesperus model?",
    "question_th": "แรงดันหม้อไอน้ำสำหรับรุ่น Hesperus คือเท่าไร?",
    "context": "CREATE TABLE table_name_58 (boiler_pressure VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT driving_wheels FROM table_name_51 WHERE date_built = \"1883\"",
    "question_en": "What are the driving wheels of the model built in 1883?",
    "question_th": "ล้อขับเคลื่อนของรุ่นที่สร้างขึ้นในปี 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_en": "What year was the wheel arrangement 0-6-0 and a class 302?",
    "question_th": "การจัดเรียงล้อ 0-6-0 และคลาส 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_en": "How many have a class of 330?",
    "question_th": "มีกี่คลาสที่มีคลาส 330?",
    "context": "CREATE TABLE table_name_97 (quantity_made VARCHAR, class VARCHAR)"
  },
  {
    "answer": "SELECT comments FROM table_name_64 WHERE year_made = \"1875\"",
    "question_en": "What comments are made in 1875?",
    "question_th": "มีการแสดงความคิดเห็นอะไรบ้างในปี พ.ศ. 2418?",
    "context": "CREATE TABLE table_name_64 (comments VARCHAR, year_made VARCHAR)"
  },
  {
    "answer": "SELECT artist FROM table_name_16 WHERE butterfly = \"tiger swallowtail\"",
    "question_en": "Which artist's work is the butterfly Tiger Swallowtail?",
    "question_th": "ผลงานของศิลปินคนไหนคือผีเสื้อเสือหางแฉก?",
    "context": "CREATE TABLE table_name_16 (artist VARCHAR, butterfly VARCHAR)"
  },
  {
    "answer": "SELECT artist FROM table_name_29 WHERE finish = \"selective gold plating\"",
    "question_en": "Which artist uses a finish of selective gold plating?",
    "question_th": "ศิลปินคนไหนใช้การชุบทองแบบคัดเลือก?",
    "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_en": "What mintage earlier than the year 2006 has the butterfly great spangled fritillary.",
    "question_th": "สิ่งที่สร้างเสร็จเมื่อต้นปี พ.ศ. 2549 มีผีเสื้อฟริทิลลารีแพรวพราวขนาดใหญ่",
    "context": "CREATE TABLE table_name_15 (mintage VARCHAR, year VARCHAR, butterfly VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_32 WHERE region = \"europe\"",
    "question_en": "What is the date for Europe?",
    "question_th": "ยุโรปวันที่เท่าไหร่คะ?",
    "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_en": "Which team played away at Victoria park?",
    "question_th": "ทีมไหนไปเล่นที่วิคตอเรีย พาร์ค?",
    "context": "CREATE TABLE table_name_78 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_64 WHERE record = \"4-4\"",
    "question_en": "When the record was 4-4, how many people attended?",
    "question_th": "ตอนที่สถิติ 4-4 มีคนเข้าร่วมกี่คน?",
    "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_en": "When they were playing the detroit lions at tampa stadium, what was the score?",
    "question_th": "ตอนพวกเขาเล่นดีทรอยต์ ไลออนส์ ที่แทมปา สเตเดี้ยม สกอร์เท่าไหร่ครับ?",
    "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_en": "Which date did 64,443 people attend a game?",
    "question_th": "64,443 คนเข้าชมเกมวันไหน?",
    "context": "CREATE TABLE table_name_47 (date VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT MAX(rank) FROM table_name_68 WHERE total < 1",
    "question_en": "what is the highest rank with a total less than 1?",
    "question_th": "อันดับสูงสุดที่มีคะแนนรวมน้อยกว่า 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_en": "what is the average bronze when gold is 1, the nation is hungary and the rank is less than 3?",
    "question_th": "ทองสัมฤทธิ์เฉลี่ยเป็นเท่าใดเมื่อทองคือ 1 ประเทศคือความหิวโหยและอันดับต่ำกว่า 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_en": "How many times was the total more than 1, the nation was east germany and silver was more than 1?",
    "question_th": "กี่ครั้งแล้วที่มากกว่า 1 ประเทศคือเยอรมนีตะวันออก และเงินมากกว่า 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_en": "what is the average rank when the nation is east germany and silver is more than 1?",
    "question_th": "อันดับเฉลี่ยของประเทศคือเยอรมนีตะวันออกและเงินมากกว่า 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_en": "Where did carlton play while away?",
    "question_th": "คาร์ลตันเล่นที่ไหนระหว่างเยือน?",
    "context": "CREATE TABLE table_name_98 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(crowd) FROM table_name_75 WHERE away_team = \"essendon\"",
    "question_en": "What was the top crowd when essendon played away?",
    "question_th": "ฝูงชนชั้นนำคือใครเมื่อเอสเซนดอนเล่นไป?",
    "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_en": "I want the date of appointment for manner of departure being sacked",
    "question_th": "ฉันต้องการวันที่นัดหมายในลักษณะออกเดินทางถูกไล่ออก",
    "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_en": "I want the manner of departure for 1 june 2007",
    "question_th": "ฉันต้องการกำหนดการเดินทางวันที่ 1 มิถุนายน 2550",
    "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_en": "I want the outgoing manager for craig brewster",
    "question_th": "ฉันอยากได้ผู้จัดการที่จะลาออก ของเครก บรูว์สเตอร์",
    "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_en": "I want the team for replaced by mark mcghee",
    "question_th": "ฉันต้องการให้ทีมแทนที่โดยมาร์ค แมคกี",
    "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_en": "I want the outgoing manager for 19 february",
    "question_th": "ฉันต้องการผู้จัดการที่จะลาออกในวันที่ 19 กุมภาพันธ์",
    "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ászló\"",
    "question_en": "I want the team with replaced by being csaba lászló",
    "question_th": "ฉันต้องการทีมที่ถูกแทนที่ด้วย CSaba László",
    "context": "CREATE TABLE table_name_24 (team VARCHAR, replaced_by VARCHAR)"
  },
  {
    "answer": "SELECT association FROM table_name_30 WHERE horse_1 = \"estribillo ii\"",
    "question_en": "With which association did estribillo ii run as Horse 1?",
    "question_th": "estribillo ii ทำหน้าที่เป็นม้า 1 โดยสมาคมใด",
    "context": "CREATE TABLE table_name_30 (association VARCHAR, horse_1 VARCHAR)"
  },
  {
    "answer": "SELECT horse_1 FROM table_name_32 WHERE rider_1 = \"rené guzmán\" AND association = \"mulchén\"",
    "question_en": "Which horse was Horse 1 when rené guzmán raced with the mulchén association?",
    "question_th": "ม้าตัวไหนคือม้า 1 เมื่อ rené guzmán แข่งกับสมาคม mulchén",
    "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_en": "Who was the second rider when papayero raced as Horse 1 in the city of rancagua?",
    "question_th": "ใครคือผู้ขับขี่คนที่สองเมื่อ papayero แข่งเป็น Horse 1 ในเมือง 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_en": "What was the period for 1896?",
    "question_th": "พ.ศ. 2439 อยู่ในช่วงใด?",
    "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_en": "Tell me the height which has a surpassed by of book tower",
    "question_th": "บอกความสูงที่แซงหน้าหอหนังสือมาหน่อยสิ",
    "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_en": "I need the surpassed for years before 1925 and period of 6 years",
    "question_th": "ฉันต้องการเหนือกว่าหลายปีก่อนปี 1925 และระยะเวลา 6 ปี",
    "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_en": "Hawthorn played as an Away team in which venue?",
    "question_th": "ฮอว์ธอร์นเล่นเป็นทีมเยือนที่สนามใด?",
    "context": "CREATE TABLE table_name_56 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT nominee FROM table_name_16 WHERE award = \"tony award\"",
    "question_en": "Who was the nominee having a Tony award?",
    "question_th": "ใครคือผู้ได้รับการเสนอชื่อเข้าชิงรางวัลโทนี่?",
    "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_en": "What was the year Bernadette Peters was a nominee for the Tony award?",
    "question_th": "ปีที่เบอร์นาเด็ตต์ ปีเตอร์ส ได้รับการเสนอชื่อเข้าชิงรางวัลโทนี่คือปีใด",
    "context": "CREATE TABLE table_name_67 (year INTEGER, award VARCHAR, nominee VARCHAR)"
  },
  {
    "answer": "SELECT category FROM table_name_4 WHERE nominee = \"michael stewart\"",
    "question_en": "Which category was Michael Stewart a nominee in?",
    "question_th": "Michael Stewart ได้รับการเสนอชื่อเข้าชิงในประเภทใด",
    "context": "CREATE TABLE table_name_4 (category VARCHAR, nominee VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_75 WHERE games = \"2009 hanoi\"",
    "question_en": "What was the rank in the 2009 Hanoi Games?",
    "question_th": "ฮานอยเกมส์ 2009 อยู่อันดับไหน?",
    "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 = \"與你相逢\"",
    "question_en": "What is the label of the album titled 與你相逢 and released in 1994?",
    "question_th": "ค่ายเพลงของอัลบั้ม 與you相逢 และวางจำหน่ายในปี 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_ = \"艺能动音\"",
    "question_en": "What is the earliest year of release for the album labelled 艺能动音?",
    "question_th": "อัลบั้มชื่อ 艺能动音 เปิดตัวในปีแรกสุดคือปีใด?",
    "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_en": "Tell me the name in polish for radom seat",
    "question_th": "บอกชื่อเป็นภาษาโปแลนด์สำหรับราดอมซีทด้วย",
    "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 łomżyńska\"",
    "question_en": "Tell me the population for gubernia łomżyńska",
    "question_th": "บอกฉันจำนวนประชากรของ gubernia łomżyńska",
    "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_en": "What is the promotion when the arena was the venue and the event of legends of the arena?",
    "question_th": "โปรโมรชั่นเมื่ออารีน่าเป็นสถานที่จัดงานและงานตำนานอารีน่ามีอะไรบ้าง?",
    "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_en": "What is the name of the inductee for the ecw arena?",
    "question_th": "ผู้ที่เข้ารับตำแหน่ง 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_en": "What is the promotion when the event was Acid-fest?",
    "question_th": "เมื่องาน Acid-fest มีโปรโมชั่นอะไรบ้าง?",
    "context": "CREATE TABLE table_name_7 (promotion VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_84 WHERE event = \"november reign\"",
    "question_en": "What is the location when the event was November reign?",
    "question_th": "สถานที่จัดงานเมื่อสมัยเดือนพฤศจิกายนคือที่ใด?",
    "context": "CREATE TABLE table_name_84 (location VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_16 WHERE inductee_s_ = \"jerry lynn\"",
    "question_en": "What even was Jerry Lynn the inductee?",
    "question_th": "เจอร์รี ลินน์เป็นผู้ได้รับแต่งตั้งอะไร?",
    "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_en": "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?",
    "question_th": "ชื่อของ Ayashe ที่ลองจิจูดน้อยกว่า 270.7, ละติจูดมากกว่า -47.1 และเส้นผ่านศูนย์กลางน้อยกว่า 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_en": "Tell me the opponent that had a result of l 27-20",
    "question_th": "บอกคู่ต่อสู้ที่มีผล 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_en": "What was the game site for week 14?",
    "question_th": "เว็บไซต์เกมสำหรับสัปดาห์ที่ 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_en": "Name the week when the result was l 38-17",
    "question_th": "ตั้งชื่อสัปดาห์ที่ผลลัพธ์คือ 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_en": "Name the date when 33,307 attended",
    "question_th": "ตั้งชื่อวันที่เข้าร่วมจำนวน 33,307 คน",
    "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_en": "Who used the Ford Cosworth DFV 3.0 v8 engine in rounds 3-12, with a G tire?",
    "question_th": "ใครใช้เครื่องยนต์ Ford Cosworth DFV 3.0 v8 ในรอบ 3-12 พร้อมยาง G บ้าง?",
    "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_en": "Which driver was in all rounds as an entrant of Motor Racing Developments?",
    "question_th": "นักแข่งคนไหนที่เข้าร่วมการแข่งขัน 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_en": "Motor Racing Developments used which tire in rounds 3-12?",
    "question_th": "Motor Racing Developments ใช้ยางตัวไหนในรอบ 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_en": "Which engine was on a car with G tires, a chassis model of 003 002 004 005 006, driven by Jackie Stewart?",
    "question_th": "เครื่องยนต์ใดที่อยู่ในรถยนต์ที่มียาง G รุ่นแชสซี 003 002 004 005 006 ขับโดย 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_en": "What was the result on the wild card?",
    "question_th": "ผลลัพธ์ของไวลด์การ์ดคืออะไร?",
    "context": "CREATE TABLE table_name_74 (result VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_62 WHERE week = \"17\"",
    "question_en": "What date was the week 17 game played on?",
    "question_th": "เกมสัปดาห์ที่ 17 เล่นวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_62 (date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_8 WHERE week = \"12\"",
    "question_en": "What was the attendance on week 12?",
    "question_th": "การเข้าร่วมในสัปดาห์ที่ 12 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_8 (attendance VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_68 WHERE date = \"december 31, 2005\"",
    "question_en": "What was the result on December 31, 2005?",
    "question_th": "ผลประกอบการเมื่อวันที่ 31 ธันวาคม 2548 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_68 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_17 WHERE venue = \"lake oval\"",
    "question_en": "What was the date of the game at Lake Oval?",
    "question_th": "วันที่ของเกมที่ Lake Oval คือวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_17 (date VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_83 WHERE venue = \"princes park\"",
    "question_en": "What was the date of the game at Princes Park?",
    "question_th": "เกมที่ 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_en": "Who was the home team at the game with a crowd larger than 32,576?",
    "question_th": "เจ้าบ้านในเกมที่มีฝูงชนมากกว่า 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_en": "Where did Melbourne play as the home team?",
    "question_th": "เมลเบิร์นเล่นเป็นทีมเจ้าบ้านที่ไหน?",
    "context": "CREATE TABLE table_name_38 (venue VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT rounds FROM table_name_48 WHERE entrant = \"scuderia milano\"",
    "question_en": "In what rounds did Scuderia Milano participate?",
    "question_th": "สคูเดอเรีย มิลาโนเข้าร่วมในรอบใดบ้าง?",
    "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_en": "Who was the entrant for Louis Chiron with a Chassis of T26C?",
    "question_th": "ใครคือผู้เข้าแข่งขัน Louis Chiron ที่มีแชสซี 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_en": "In what rounds did Luigi Fagioli drive for Alfa Romeo SPA?",
    "question_th": "Luigi Fagioli ขับรถไปที่ 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_en": "In what rounds did the P15 Chassis and tyre D participate?",
    "question_th": "P15 Chassis และยาง D เข้าร่วมในรอบใด",
    "context": "CREATE TABLE table_name_10 (rounds VARCHAR, tyre VARCHAR, chassis VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_6 WHERE away_team = \"hawthorn\"",
    "question_en": "Where did Hawthorn play an away game?",
    "question_th": "ฮอว์ธอร์นเล่นเกมเยือนที่ไหน?",
    "context": "CREATE TABLE table_name_6 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_13 WHERE home_team = \"melbourne\"",
    "question_en": "Where does Melbourne play home games?",
    "question_th": "เมลเบิร์นเล่นเกมเหย้าที่ไหน?",
    "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_en": "What was the score for the opponent against Richmond?",
    "question_th": "คู่ต่อสู้กับริชมอนด์ได้สกอร์เท่าไหร่?",
    "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_en": "I want to know the total number of national university of ireland with agricultural panel of 0 and labour panel more than 0",
    "question_th": "ฉันต้องการทราบจำนวนรวมของมหาวิทยาลัยแห่งชาติของไอร์แลนด์ที่มีแผงเกษตรเป็น 0 และแผงแรงงานมากกว่า 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_en": "Tell me the total number of administrative panel with labour panel more than 2, nominated by taoiseach more than 6 and total of 28",
    "question_th": "บอกจำนวนคณะบริหารที่มีคณะทำงานมากกว่า 2 คณะ เสนอชื่อโดย เต๋าแซ็ค มากกว่า 6 คน รวมเป็น 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_en": "What was the away team score at Western Oval?",
    "question_th": "คะแนนทีมเยือนที่เวสเทิร์น โอวัลเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_64 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_45 WHERE home_team = \"richmond\"",
    "question_en": "What is the name of Richmond's home venue?",
    "question_th": "สถานที่จัดงานของริชมอนด์ชื่ออะไร?",
    "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_en": "What was the away team score at Hawthorn's home game?",
    "question_th": "คะแนนทีมเยือนในเกมเหย้าของฮอว์ธอร์นเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_28 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_31 WHERE date = \"february 6\"",
    "question_en": "What score occurred on February 6?",
    "question_th": "คะแนนอะไรเกิดขึ้นในวันที่ 6 กุมภาพันธ์?",
    "context": "CREATE TABLE table_name_31 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MIN(game) FROM table_name_69 WHERE date = \"february 20\"",
    "question_en": "What is the lowest game number on February 20?",
    "question_th": "เลขเกมต่ำสุดของวันที่ 20 กุมภาพันธ์ คือเลขอะไร?",
    "context": "CREATE TABLE table_name_69 (game INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_name_7 WHERE score = \"l 122–93\"",
    "question_en": "Who had the high rebounds when the score was l 122–93?",
    "question_th": "ใครมีการรีบาวด์สูงเมื่อสกอร์อยู่ที่ 122–93?",
    "context": "CREATE TABLE table_name_7 (high_rebounds VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_67 WHERE venue = \"princes park\"",
    "question_en": "Which home team played at Princes Park?",
    "question_th": "เจ้าบ้านทีมไหนเล่นที่ 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_en": "What date was Richmond the home team?",
    "question_th": "ริชมอนด์เจ้าบ้านวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_17 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(crowd) FROM table_name_37 WHERE away_team = \"melbourne\"",
    "question_en": "What was the largest crowd when Melbourne was the away team?",
    "question_th": "แฟนบอลเยอะที่สุดเมื่อเมลเบิร์นเป็นทีมเยือน?",
    "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_en": "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?",
    "question_th": "นักกายกรรมคนใดที่มีคานทรงตัวใหญ่กว่า 8.687 มียอดรวมน้อยกว่า 38.049 มีการออกกำลังกายบนพื้นน้อยกว่า 9.462 และมีห้องนิรภัยน้อยกว่า 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_en": "Which country is ranked 24?",
    "question_th": "ประเทศใดอยู่ในอันดับที่ 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_en": "Name the highest year with rank of 22 and accolade of singles of 1999",
    "question_th": "ตั้งชื่อปีสูงสุดด้วยอันดับ 22 และรางวัลซิงเกิลแห่งปี 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_en": "What is the largest Grid with a Driver of piers courage?",
    "question_th": "กริดที่ใหญ่ที่สุดพร้อมคนขับแห่งความกล้าหาญคืออะไร?",
    "context": "CREATE TABLE table_name_31 (grid INTEGER, driver VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_50 WHERE tournament = \"majorca\"",
    "question_en": "Name the winner for majorca",
    "question_th": "ตั้งชื่อผู้ชนะสำหรับมายอร์ก้า",
    "context": "CREATE TABLE table_name_50 (winner VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT third_place FROM table_name_75 WHERE runner_up = \"anders järryd\"",
    "question_en": "Name the third place for anders järryd",
    "question_th": "ตั้งชื่อสถานที่ที่สามสำหรับ Anders järryd",
    "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_en": "Name the score for henri leconte and runner-up of michael stich",
    "question_th": "ตั้งชื่อคะแนนให้กับอองรี เลคอนเต้ และรองแชมป์ไมเคิล สติช",
    "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_en": "Name the winner for london tournament",
    "question_th": "ตั้งชื่อผู้ชนะการแข่งขันลอนดอน",
    "context": "CREATE TABLE table_name_93 (winner VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT runner_up FROM table_name_30 WHERE tournament = \"majorca\"",
    "question_en": "Tell me the runner-up for majorca",
    "question_th": "บอกตำแหน่งรองแชมป์มาจอร์ก้าหน่อยสิ",
    "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_en": "How many laps did BRM have with a grid of 11?",
    "question_th": "BRM มีตาราง 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_en": "What's the total grid of Bruce Mclaren?",
    "question_th": "ตารางรวมของ 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_en": "What's the least amount of laps that George Eaton completed that has a time/retired engine and a grid larger than 8?",
    "question_th": "จำนวนรอบน้อยที่สุดที่ George Eaton ทำได้สำเร็จโดยมีเวลา/เลิกใช้เครื่องยนต์และกริดที่ใหญ่กว่า 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_en": "Who was the home team on 1 April 2008?",
    "question_th": "ทีมเหย้าเมื่อวันที่ 1 เมษายน พ.ศ. 2551 คือใคร?",
    "context": "CREATE TABLE table_name_52 (home VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_20 WHERE date = \"6 april 2008\"",
    "question_en": "What was the record on 6 April 2008?",
    "question_th": "บันทึกเมื่อวันที่ 6 เมษายน พ.ศ. 2551 คืออะไร?",
    "context": "CREATE TABLE table_name_20 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT grantee FROM table_name_34 WHERE concession = \"san ysidro\"",
    "question_en": "Tell me the Grantee for san ysidro",
    "question_th": "บอกฉันว่าผู้รับสิทธิ์สำหรับ san ysidro",
    "context": "CREATE TABLE table_name_34 (grantee VARCHAR, concession VARCHAR)"
  },
  {
    "answer": "SELECT county FROM table_name_48 WHERE grantee = \"mariano castro\"",
    "question_en": "Tell me the county for mariano castro",
    "question_th": "บอกเขตของมาเรียโน คาสโตรหน่อยสิ",
    "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_en": "Tell me the grantee for las pulgas in 1795",
    "question_th": "บอกหน่อยว่าผู้รับทุนลาส ปุลกัสในปี 1795",
    "context": "CREATE TABLE table_name_6 (grantee VARCHAR, date VARCHAR, concession VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_38 WHERE round = 4",
    "question_en": "A round of 4 is in what position?",
    "question_th": "รอบ 4 อยู่ตำแหน่งไหนครับ?",
    "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_en": "What Club team with a Round larger than 5 have a defense position?",
    "question_th": "ทีมสโมสรใดที่มีรอบมากกว่า 5 จะมีตำแหน่งป้องกัน?",
    "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_en": "What Player Club Team is Indiana Ice (ushl)?",
    "question_th": "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_en": "What is the Nationality Club Team of Quebec remparts (qmjhl)?",
    "question_th": "ทีม Nationality Club of Quebec ทำหน้าที่อะไร (qmjhl)?",
    "context": "CREATE TABLE table_name_53 (nationality VARCHAR, club_team VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_4 WHERE position = \"centre\"",
    "question_en": "The Position of Centre is what Player?",
    "question_th": "ตำแหน่งเซ็นเตอร์คือผู้เล่นคนไหน?",
    "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_en": "What is the Overall of 15 Club team with a Nationality of Canada?",
    "question_th": "ทีมสโมสรโดยรวมจาก 15 ทีมที่มีสัญชาติแคนาดาคืออะไร?",
    "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_en": "What are the additional major sponsors which correspond to the additional color black and a year 1984?",
    "question_th": "สปอนเซอร์หลักเพิ่มเติมซึ่งสอดคล้องกับสีดำเพิ่มเติมและปี 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_en": "What is the average year of entries with additional color black?",
    "question_th": "ปีเฉลี่ยของการส่งผลงานที่มีสีดำเพิ่มเติมคือเท่าใด",
    "context": "CREATE TABLE table_name_9 (year INTEGER, additional_colour_s_ VARCHAR)"
  },
  {
    "answer": "SELECT time_retired FROM table_name_4 WHERE grid = 6",
    "question_en": "What is the Time/Retired for Grid 6?",
    "question_th": "เวลา/เกษียณสำหรับกริด 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_en": "What is the lowest Laps for mike spence, with a Grid smaller than 8?",
    "question_th": "รอบต่ำสุดสำหรับไมค์ สเปนซ์ โดยที่กริดเล็กกว่า 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_en": "how many laps have a time/retired of +1 lap and mark blundell is the driver?",
    "question_th": "มีเวลากี่รอบ/เกษียณจาก +1 รอบ และมาร์ค บลันเดลล์เป็นคนขับ?",
    "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_en": "what is the highest grid when the time/retired is fuel pump and the laps is more than 26?",
    "question_th": "ตารางสูงสุดเมื่อเวลา/เกษียณคือปั๊มเชื้อเพลิงและรอบมากกว่า 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_en": "what is the least laps for driver gerhard berger with a grid more than 6?",
    "question_th": "นักแข่งเกอร์ฮาร์ด เบอร์เกอร์ที่มีกริดมากกว่า 6 รอบน้อยที่สุดคือเท่าไร",
    "context": "CREATE TABLE table_name_35 (laps INTEGER, driver VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT kapampangan FROM table_name_8 WHERE malay = \"aku\"",
    "question_en": "What is the Kapampangan word for the Malay word aku?",
    "question_th": "คำว่า Kapampangan ในภาษามลายู aku คืออะไร?",
    "context": "CREATE TABLE table_name_8 (kapampangan VARCHAR, malay VARCHAR)"
  },
  {
    "answer": "SELECT lundu__salako_ FROM table_name_36 WHERE siburan_padawan = \"ěku\"",
    "question_en": "What is the Lundu (Salako) word for the Siburan-Pandawan word ěku?",
    "question_th": "คำว่า Lundu (Salako) ของคำว่า Siburan-Pandawan คืออะไร ěku?",
    "context": "CREATE TABLE table_name_36 (lundu__salako_ VARCHAR, siburan_padawan VARCHAR)"
  },
  {
    "answer": "SELECT lundu__salako_ FROM table_name_65 WHERE tagalog = \"pagkain\"",
    "question_en": "What is the Lundu (Salako) word for the Tagalog word pagkain?",
    "question_th": "คำว่า Lundu (Salako) มาจากคำว่า pagkain ภาษาตากาล็อกคืออะไร?",
    "context": "CREATE TABLE table_name_65 (lundu__salako_ VARCHAR, tagalog VARCHAR)"
  },
  {
    "answer": "SELECT siburan_padawan FROM table_name_98 WHERE tagalog = \"kanin\"",
    "question_en": "What is the Siburan-Padawan word for the Tagalog word kanin?",
    "question_th": "คำว่า Siburan-Padawan มาจากคำว่า 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_en": "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?",
    "question_th": "เกมทั้งหมดในการประชุม Big Ten คือเกมใดเมื่อ Nebraska แพ้น้อยกว่า 488 เกมและมีเปอร์เซ็นต์น้อยกว่า 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_en": "What is Akron's highest Pct in 100 years?",
    "question_th": "เปอร์เซ็นต์สูงสุดของแอครอนในรอบ 100 ปีคืออะไร?",
    "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_en": "How many people attended the game at Lake Oval?",
    "question_th": "มีผู้เข้าร่วมการแข่งขันที่ 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_en": "What was the away score at the Princes Park game?",
    "question_th": "สกอร์ทีมเยือนในเกมที่พรินเซส พาร์คเป็นเท่าไหร่?",
    "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_en": "What was the home score at the Princes Park game?",
    "question_th": "สกอร์เจ้าบ้านในเกมที่พรินซ์ พาร์คเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_95 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT SUM(stations) FROM table_name_86 WHERE line = \"u 6\"",
    "question_en": "What is the total number of stations with a line that is u 6?",
    "question_th": "จำนวนสถานีทั้งหมดที่มีสาย u 6 คือเท่าไร?",
    "context": "CREATE TABLE table_name_86 (stations INTEGER, line VARCHAR)"
  },
  {
    "answer": "SELECT route FROM table_name_31 WHERE stations = 21",
    "question_en": "Which route has 21 stations?",
    "question_th": "เส้นทางใดมี 21 สถานี?",
    "context": "CREATE TABLE table_name_31 (route VARCHAR, stations VARCHAR)"
  },
  {
    "answer": "SELECT line FROM table_name_95 WHERE colour = \"green\"",
    "question_en": "Which line was green?",
    "question_th": "เส้นไหนเป็นสีเขียว?",
    "context": "CREATE TABLE table_name_95 (line VARCHAR, colour VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_96 WHERE home_team = \"melbourne\"",
    "question_en": "What was the away team that played against Melbourne?",
    "question_th": "ทีมเยือนเล่นกับเมลเบิร์นคือทีมอะไร?",
    "context": "CREATE TABLE table_name_96 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_53 WHERE score = \"6–4, 6–7 (2–7) , 7–5\"",
    "question_en": "Who was the opponent when the score was 6–4, 6–7 (2–7) , 7–5?",
    "question_th": "คู่ต่อสู้คือใครเมื่อสกอร์เป็น 6–4, 6–7 (2–7) , 7–5?",
    "context": "CREATE TABLE table_name_53 (opponent VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_94 WHERE opponent = \"andreas haider-maurer\"",
    "question_en": "Which tournament was andreas haider-maurer the opponent in?",
    "question_th": "คู่ต่อสู้คือแอนเดรียส ไฮเดอร์-เมาเรอร์ในทัวร์นาเมนต์ใด?",
    "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_en": "How many people have a vl type in a region greater than 3?",
    "question_th": "มีกี่คนที่มีประเภท vl ในภูมิภาคที่มากกว่า 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_en": "How many people are in regions greater than 3?",
    "question_th": "มีกี่คนในภูมิภาคที่มากกว่า 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_en": "What is the average region that has an Area (km 2 ) of 451.79, and a Population under 496,257?",
    "question_th": "ภูมิภาคเฉลี่ยที่มีพื้นที่ (กม. 2) เท่ากับ 451.79 และมีประชากรต่ำกว่า 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–40\"",
    "question_en": "What is the attendance on location for a record of 40–40?",
    "question_th": "ผู้เข้าร่วมในสถานที่สำหรับสถิติ 40–40 เป็นเท่าใด",
    "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_en": "Who had the high assist in a game number above 77 for Milwaukee?",
    "question_th": "ใครเป็นผู้ทำแอสซิสต์สูงในเกมที่มากกว่า 77 ของมิลวอกี?",
    "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_en": "Who had the high assists in game 77?",
    "question_th": "ใครมีแอสซิสต์สูงในเกมที่ 77?",
    "context": "CREATE TABLE table_name_3 (high_assists VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT time_retired FROM table_name_59 WHERE grid = 13",
    "question_en": "I want the time/retired for Grid of 13",
    "question_th": "ฉันต้องการเวลา/เกษียณสำหรับกริด 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_en": "Tell me the highest Grid for Maurice Trintignant and laps less than 87",
    "question_th": "บอกกริดสูงสุดของ Maurice Trintignant และรอบน้อยกว่า 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_en": "I want the lowest Laps for time/retired of engine and driver of charles de tornaco",
    "question_th": "ฉันต้องการรอบต่ำสุดสำหรับเวลา/หมดอายุการใช้งานของเครื่องยนต์และคนขับของ 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_en": "In May 2010, which party had a turnout of less than 3, but also the hightest turnout in May 2012?",
    "question_th": "ในเดือนพฤษภาคม 2553 พรรคใดมีผู้ออกมาใช้สิทธิ์น้อยกว่า 3 คน แต่มีผู้มาใช้สิทธิสูงสุดในเดือนพฤษภาคม 2555 ด้วย",
    "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_en": "I want the location for round of 3 and time of 4:40",
    "question_th": "ขอสถานที่รอบ 3 และ เวลา 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–111\"",
    "question_en": "How many people were in attendance for the game with a score of 98–111?",
    "question_th": "มีผู้เข้าร่วมเกมกี่คนด้วยคะแนน 98–111",
    "context": "CREATE TABLE table_name_12 (attendance INTEGER, score VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_29 WHERE score = \"101–92\"",
    "question_en": "What is the record of the game with a score of 101–92?",
    "question_th": "สถิติของเกมด้วยคะแนน 101–92 คืออะไร?",
    "context": "CREATE TABLE table_name_29 (record VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_1 WHERE home = \"lakers\"",
    "question_en": "What is the date when the Lakers were the home team?",
    "question_th": "เลเกอร์สเป็นเจ้าบ้านวันไหน?",
    "context": "CREATE TABLE table_name_1 (date VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(attendance) FROM table_name_89 WHERE home = \"bulls\"",
    "question_en": "How many people were in attendance when the home shows as Bulls?",
    "question_th": "มีกี่คนที่เข้าร่วมเมื่อเจ้าบ้านแสดงเป็นบูลส์?",
    "context": "CREATE TABLE table_name_89 (attendance VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT MIN(attendance) FROM table_name_7 WHERE record = \"9–26\"",
    "question_en": "What is the lowest number of people in attendance when the record was 9–26?",
    "question_th": "จำนวนผู้เข้าร่วมน้อยที่สุดเมื่อบันทึกคือ 9–26 คือเท่าใด",
    "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_en": "What is the name of the First Class Team in which the player has a bowling style of left arm orthodox spin?",
    "question_th": "ชื่อทีมเฟิร์สคลาสที่ผู้เล่นมีรูปแบบการเล่นโบว์ลิ่งแบบแขนซ้ายหมุนคืออะไร?",
    "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_en": "What is the bowling style of the player whose first class team is Islamabad and has a date of birth of 28 February 1975?",
    "question_th": "ลีลาการเล่นโบว์ลิ่งของผู้เล่นทีมอันดับ 1 คือ อิสลามาบัด และมีวันเกิดวันที่ 28 กุมภาพันธ์ พ.ศ. 2518 คือ?",
    "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_en": "What batting style does player Shahid Afridi have?",
    "question_th": "นักเตะชาฮิด อาฟริดีมีสไตล์การตีบอลแบบไหน?",
    "context": "CREATE TABLE table_name_88 (batting_style VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_85 WHERE venue = \"victoria park\"",
    "question_en": "Who was the away team at Victoria Park?",
    "question_th": "ทีมเยือนที่วิคตอเรีย พาร์คคือใคร?",
    "context": "CREATE TABLE table_name_85 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT AVG(crowd) FROM table_name_58 WHERE home_team = \"geelong\"",
    "question_en": "What was the crowd size when Geelong played at home?",
    "question_th": "ขนาดฝูงชนเมื่อจีลองเล่นที่บ้านคือเท่าไร?",
    "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_en": "What was the home score for the Home team Melbourne?",
    "question_th": "สกอร์ของเจ้าบ้าน เมลเบิร์น เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_63 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT studio_analysts FROM table_name_52 WHERE ice_level_reporters = \"scott oake\"",
    "question_en": "Which studio analyst has Scott Oake for the ice level reporter?",
    "question_th": "นักวิเคราะห์ในสตูดิโอคนไหนที่มี Scott Oake มาเป็นนักข่าวระดับน้ำแข็ง?",
    "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_en": "Which ice level reporter has Harry Neale for the colour commentator after the year 2004?",
    "question_th": "นักข่าวระดับน้ำแข็งคนไหนมี Harry Neale เป็นผู้วิจารณ์สีหลังปี 2547",
    "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_en": "How long was his fight against kim kyoung-suk?",
    "question_th": "เขาต่อสู้กับคิมคยองซุกนานแค่ไหน?",
    "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_en": "What was the score for the away team at Collingwood?",
    "question_th": "ทีมเยือนที่คอลลิงวูดมีสกอร์เท่าไหร่?",
    "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_en": "Who is the home team of South Melbourne?",
    "question_th": "ทีมเหย้าของเซาธ์ เมลเบิร์นคือใคร?",
    "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_en": "Who built michael schumacher's car that went under 31 laps?",
    "question_th": "ใครเป็นคนสร้างรถของมิชาเอล ชูมัคเกอร์ที่วิ่งต่ำกว่า 31 รอบ?",
    "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_en": "How many grids for heinz-harald frentzen with 61 laps?",
    "question_th": "ไฮนซ์-ฮาราลด์ เฟรนต์เซน 61 รอบมีกี่กริด?",
    "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_en": "What did the home team score at Lake Oval?",
    "question_th": "เจ้าบ้านทำคะแนนได้ที่ เลค โอวัล ?",
    "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_en": "What did Footscray score at the home game?",
    "question_th": "ฟุตสเครย์ทำคะแนนอะไรในเกมเหย้า?",
    "context": "CREATE TABLE table_name_23 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team AS score FROM table_name_7 WHERE away_team = \"essendon\"",
    "question_en": "What did Essendon score as the Away team?",
    "question_th": "เอสเซนดอนทำประตูอะไรให้ทีมเยือน?",
    "context": "CREATE TABLE table_name_7 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT trofeo_fast_team FROM table_name_58 WHERE winner = \"roberto visentini\"",
    "question_en": "Name the Trofeo Fast team for roberto visentini",
    "question_th": "ตั้งชื่อทีม Trofeo Fast สำหรับ 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_en": "Name the young rider classification for giuseppe saronni at stage 6",
    "question_th": "ตั้งชื่อประเภทนักบิดรุ่นเยาว์สำหรับ giuseppe saronni ในสเตจที่ 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_en": "What is the young rider classification for jesper worre and stage 3",
    "question_th": "การจัดประเภท Young Rider สำหรับ Jesper Worre และ 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_en": "What college did the player with a school of crete-monee high school go to?",
    "question_th": "ผู้เล่นที่มีโรงเรียน Crete-monee High School เข้าเรียนที่วิทยาลัยใด",
    "context": "CREATE TABLE table_name_83 (college VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_94 WHERE hometown = \"little rock, arkansas\"",
    "question_en": "What's the school of the player with a hometown of little rock, arkansas?",
    "question_th": "โรงเรียนของผู้เล่นที่มีบ้านเกิดของลิตเติ้ลร็อค อาร์คันซอ คืออะไร?",
    "context": "CREATE TABLE table_name_94 (school VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_name_80 WHERE player = \"thomas tyner\"",
    "question_en": "What's the hometown of thomas tyner?",
    "question_th": "บ้านเกิดของโทมัส ไทเนอร์คือเมืองอะไร",
    "context": "CREATE TABLE table_name_80 (hometown VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_30 WHERE player = \"hunter henry\"",
    "question_en": "What college did hunter henry go to?",
    "question_th": "ฮันเตอร์ เฮนรี่ไปเรียนที่วิทยาลัยอะไร",
    "context": "CREATE TABLE table_name_30 (college VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_42 WHERE school = \"huntsville high school\"",
    "question_en": "What college did the player with a school of huntsville high school go to?",
    "question_th": "ผู้เล่นจากโรงเรียนมัธยมฮันต์สวิลล์เข้าเรียนที่วิทยาลัยใด",
    "context": "CREATE TABLE table_name_42 (college VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_53 WHERE college = \"ohio state\"",
    "question_en": "Who went to ohio state?",
    "question_th": "ใครไปรัฐโอไฮโอบ้าง?",
    "context": "CREATE TABLE table_name_53 (player VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT introduced FROM table_name_31 WHERE withdrawn = \"1955\"",
    "question_en": "What date was introduced where it was withdrawn 1955?",
    "question_th": "เปิดตัวเมื่อใดและถูกถอนออกในปี 1955",
    "context": "CREATE TABLE table_name_31 (introduced VARCHAR, withdrawn VARCHAR)"
  },
  {
    "answer": "SELECT engine FROM table_name_66 WHERE introduced = \"1935\"",
    "question_en": "What engine was introduced in 1935?",
    "question_th": "เครื่องยนต์อะไรเปิดตัวในปี 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_en": "What is the number range for the Gloucester RCW builder introduced in 1937?",
    "question_th": "ช่วงหมายเลขสำหรับผู้สร้าง Gloucester RCW ที่เปิดตัวในปี 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_en": "What round was Craig Erickson drafted?",
    "question_th": "Craig Erickson ถูกดราฟท์รอบไหน?",
    "context": "CREATE TABLE table_name_58 (round VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_7 WHERE score = \"86–108\"",
    "question_en": "What is the Date with a Score with 86–108?",
    "question_th": "วันที่ไหนมีคะแนน 86–108?",
    "context": "CREATE TABLE table_name_7 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_47 WHERE date = \"24 march 2008\"",
    "question_en": "What is the Record with a Date with 24 march 2008?",
    "question_th": "บันทึกพร้อมวันที่ 24 มีนาคม 2551 คืออะไร?",
    "context": "CREATE TABLE table_name_47 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_27 WHERE date = \"29 march 2008\"",
    "question_en": "What is the Record with a Date with 29 march 2008?",
    "question_th": "บันทึกพร้อมวันที่ 29 มีนาคม 2551 คืออะไร?",
    "context": "CREATE TABLE table_name_27 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_28 WHERE leading_scorer = \"rudy gay (24)\"",
    "question_en": "What is the Visitor with a Leading scorer with rudy gay (24)?",
    "question_th": "ผู้เยี่ยมชมที่มีผู้ทำประตูสูงสุดกับเกย์รูดี้ (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–111\"",
    "question_en": "What is the Leading scorer with a Visitor of grizzlies, and with a Score with 114–111?",
    "question_th": "ผู้ทำประตูสูงสุดกับผู้มาเยือนของหมีกริซลี่คืออะไร และมีคะแนน 114–111",
    "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_en": "What team does Joe Deane play for?",
    "question_th": "โจ ดีน เล่นให้กับทีมใด?",
    "context": "CREATE TABLE table_name_20 (team VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_name_60 WHERE team = \"waterford\" AND début > 1995",
    "question_en": "What is the name of the game whose team is Waterford and debuted later than 1995?",
    "question_th": "เกมของทีมวอเตอร์ฟอร์ดและเปิดตัวหลังปี 1995 ชื่ออะไร",
    "context": "CREATE TABLE table_name_60 (game VARCHAR, team VARCHAR, début VARCHAR)"
  },
  {
    "answer": "SELECT début FROM table_name_9 WHERE team = \"waterford\" AND player = \"tom feeney\"",
    "question_en": "What is the year of debut when Tom Feeney plays for the Waterford team?",
    "question_th": "ปีที่ทอม ฟีนีย์ลงเล่นให้กับทีมวอเตอร์ฟอร์ดคือปีใด?",
    "context": "CREATE TABLE table_name_9 (début VARCHAR, team VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT opposition FROM table_name_32 WHERE team = \"cork\"",
    "question_en": "Who is the opponent when the team is Cork?",
    "question_th": "คู่ต่อสู้เมื่อทีมคือคอร์กคือใคร?",
    "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_en": "who is the constructor when the grid is more than 10 and the time/retired is +1 lap?",
    "question_th": "ใครคือผู้สร้างเมื่อกริดมากกว่า 10 และเวลา/เกษียณคือ +1 รอบ?",
    "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_en": "what is the highest grid when the laps is less than 44 and the constructor is renault?",
    "question_th": "ตารางที่สูงที่สุดเมื่อรอบน้อยกว่า 44 และตัวสร้างคือเรโนลต์คืออะไร",
    "context": "CREATE TABLE table_name_10 (grid INTEGER, laps VARCHAR, constructor VARCHAR)"
  },
  {
    "answer": "SELECT MAX(attendance) FROM table_name_95 WHERE opponent = \"arsenal\"",
    "question_en": "Whose attendance was the highest when the team played Arsenal?",
    "question_th": "นักเตะคนไหนเข้าชมมากที่สุดเมื่อทีมเจอกับอาร์เซนอล?",
    "context": "CREATE TABLE table_name_95 (attendance INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT flag FROM table_name_52 WHERE name = \"terkoeli\"",
    "question_en": "What is the flag for Terkoeli?",
    "question_th": "ธงของ Terkoeli คืออะไร?",
    "context": "CREATE TABLE table_name_52 (flag VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_73 WHERE flag = \"norway\"",
    "question_en": "What is the date for the flag of Norway?",
    "question_th": "ธงชาตินอร์เวย์ตรงกับวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_73 (date VARCHAR, flag VARCHAR)"
  },
  {
    "answer": "SELECT sunk_by FROM table_name_67 WHERE flag = \"norway\"",
    "question_en": "Who sunk the ship with the flag of Norway?",
    "question_th": "ใครจมเรือพร้อมธงชาตินอร์เวย์?",
    "context": "CREATE TABLE table_name_67 (sunk_by VARCHAR, flag VARCHAR)"
  },
  {
    "answer": "SELECT entrant FROM table_name_65 WHERE chassis = \"m185b m186\"",
    "question_en": "What is the name of the entrant with a chassis of m185b m186?",
    "question_th": "ผู้เข้าร่วมที่มีแชสซีของ m185b m186 ชื่ออะไร?",
    "context": "CREATE TABLE table_name_65 (entrant VARCHAR, chassis VARCHAR)"
  },
  {
    "answer": "SELECT rounds FROM table_name_87 WHERE chassis = \"thl2\"",
    "question_en": "How many rounds have a chassis of thl2?",
    "question_th": "แชสซีของ thl2 มีกี่รอบ?",
    "context": "CREATE TABLE table_name_87 (rounds VARCHAR, chassis VARCHAR)"
  },
  {
    "answer": "SELECT 1958 FROM table_name_24 WHERE 1957 = \"dnf-9\"",
    "question_en": "Tell me the 1958 when 1957 is dnf-9",
    "question_th": "บอกฉันหน่อยว่าปี 1958 เมื่อปี 1957 เป็น dnf-9",
    "context": "CREATE TABLE table_name_24 (Id VARCHAR)"
  },
  {
    "answer": "SELECT reference FROM table_name_38 WHERE strain = \"msb8\"",
    "question_en": "what is the reference when the strain is msb8?",
    "question_th": "การอ้างอิงเมื่อความเครียดคือ 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_en": "what is the average genes when the reference is 2009 and the strain is rku-1?",
    "question_th": "ยีนโดยเฉลี่ยคือเท่าใดเมื่ออ้างอิงคือปี 2009 และสายพันธุ์คือ 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_en": "In which year did Kati Klinzing finish 3rd?",
    "question_th": "Kati Klinzing จบอันดับ 3 ในปีใด",
    "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_en": "Who was the winner the year Ramona Rahnis finished 2nd and Diana Sartor 3rd?",
    "question_th": "ใครคือผู้ชนะในปีที่ Ramona Rahnis จบอันดับที่ 2 และ Diana Sartor ที่ 3",
    "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_en": "In Winterberg, who was 3rd the year that Monique Riekewald was 2nd?",
    "question_th": "ใน Winterberg ใครเป็นอันดับ 3 ในปีที่ Monique Riekewald เป็นอันดับ 2",
    "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_en": "In years after 1999, what was the location where Anja Huber finished 2nd?",
    "question_th": "หลายปีหลังจากปี 1999 Anja Huber จบอันดับที่ 2 อยู่ที่ใด",
    "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_en": "How many goals were scored with a pos larger than 4 and active in 2001-?",
    "question_th": "มีกี่ประตูที่ยิงได้โดยมีคะแนนมากกว่า 4 และทำผลงานได้ในปี 2544-",
    "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–2\" AND opponent = \"bolton wanderers\"",
    "question_en": "What day did they play the bolton wanderers with a result F–A of 1–2?",
    "question_th": "วันใดที่พวกเขาเล่นกับโบลตันวันเดอร์เรอร์สโดยผล F–A 1–2?",
    "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_en": "What was the away teams score at Princes Park?",
    "question_th": "คะแนนทีมเยือนที่พรินซ์ พาร์คเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_37 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_44 WHERE away_team = \"hawthorn\"",
    "question_en": "Which home team played Hawthorn as the away team?",
    "question_th": "เจ้าบ้านทีมไหนเล่นฮอว์ธอร์นเป็นทีมเยือน?",
    "context": "CREATE TABLE table_name_44 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_89 WHERE home_team = \"geelong\"",
    "question_en": "When did Geelong play as the home team?",
    "question_th": "จีลองเล่นเป็นเจ้าบ้านเมื่อไหร่?",
    "context": "CREATE TABLE table_name_89 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_85 WHERE home_team = \"essendon\"",
    "question_en": "Who played as the away team when Essendon was the home team?",
    "question_th": "ใครเล่นเป็นทีมเยือนตอนเอสเซนดอนเป็นเจ้าบ้าน?",
    "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_en": "What is the attendance when oadby town is away?",
    "question_th": "ผู้เข้าร่วมจะเป็นอย่างไรเมื่อเมือง oadby ไม่อยู่?",
    "context": "CREATE TABLE table_name_37 (attendance VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_38 WHERE home_team = \"parkgate\"",
    "question_en": "What is the score when parkgate is at home?",
    "question_th": "เมื่อประตูจอดรถอยู่ที่บ้านคะแนนเท่าไหร่?",
    "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_en": "What was the score against the devil rays on september 14?",
    "question_th": "คะแนนสู้กับรังสีปีศาจวันที่ 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_en": "What is the score on september 20?",
    "question_th": "คะแนนวันที่ 20 กันยายน เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_6 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_name_42 WHERE date = \"february 14\"",
    "question_en": "Who had the highest number of rebounds on February 14?",
    "question_th": "ใครมีจำนวนรีบาวด์มากที่สุดในวันที่ 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_en": "Where was the game played where North Melbourne was the away team?",
    "question_th": "เกมนี้เล่นที่ไหนโดยที่ นอร์ท เมลเบิร์น เป็นทีมเยือน?",
    "context": "CREATE TABLE table_name_40 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_17 WHERE week = 12",
    "question_en": "What is the week 12 result?",
    "question_th": "ผลลัพธ์สัปดาห์ที่ 12 คืออะไร?",
    "context": "CREATE TABLE table_name_17 (result VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_79 WHERE hometown = \"fort lauderdale, fl\"",
    "question_en": "What college did the player from Fort Lauderdale, FL attend?",
    "question_th": "ผู้เล่นจากเมืองฟอร์ตลอเดอร์เดล รัฐฟลอริดา เข้าเรียนที่วิทยาลัยใด",
    "context": "CREATE TABLE table_name_79 (college VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_name_35 WHERE college = \"ohio state\"",
    "question_en": "What is the hometown of the player who attended Ohio State?",
    "question_th": "บ้านเกิดของผู้เล่นที่เข้าร่วมรัฐโอไฮโอคืออะไร?",
    "context": "CREATE TABLE table_name_35 (hometown VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT height FROM table_name_36 WHERE hometown = \"elizabeth, nj\"",
    "question_en": "What is the height of the player from Elizabeth, NJ?",
    "question_th": "ผู้เล่นจาก 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_en": "What college did the player from Ames High School attend?",
    "question_th": "ผู้เล่นจากโรงเรียนมัธยม Ames เข้าเรียนที่วิทยาลัยใด",
    "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_en": "Name the frequency mhz for fcc and ERP W of 9 watts",
    "question_th": "ตั้งชื่อความถี่ mhz สำหรับ fcc และ ERP W เป็น 9 วัตต์",
    "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_en": "Name the frequency mhz for ERP W of 850 watts",
    "question_th": "ตั้งชื่อความถี่ mhz สำหรับ ERP W 850 วัตต์",
    "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_en": "Name the FCC info for call sign of kpcc",
    "question_th": "ตั้งชื่อข้อมูล FCC สำหรับสัญญาณเรียกของ 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_en": "Name the FCC info for frequency Mhz of 95.3 fm",
    "question_th": "ตั้งชื่อข้อมูล FCC สำหรับความถี่ Mhz 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_en": "Name the city of license for call sign of kcmp",
    "question_th": "ตั้งชื่อเมืองที่ได้รับอนุญาตสำหรับสัญญาณเรียกของ 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_en": "Tell me the most Att with a long of 27 with yards longer than 27",
    "question_th": "บอกแอตมากที่สุดด้วยความยาว 27 หลาและยาวกว่า 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_en": "I want to know the average Fuml for Att of 5 and long more than 7",
    "question_th": "ฉันต้องการทราบค่าเฉลี่ย Fuml สำหรับ Att ของ 5 และยาวมากกว่า 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_en": "I want to know the longest Long for santana moss and Att more than 1",
    "question_th": "อยากทราบ Long ที่ยาวที่สุดสำหรับ santana moss และ Att มากกว่า 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_en": "Tell me the greatest att with an avg of 4.3",
    "question_th": "บอกฉันหน่อยว่าค่า Att สูงสุดมีค่าเฉลี่ยอยู่ที่ 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_en": "Tell me the sum of yards for jason campbell and long less than 23",
    "question_th": "บอกผลรวมหลาของเจสัน แคมป์เบล และยาวน้อยกว่า 23 หลามาหน่อยสิ",
    "context": "CREATE TABLE table_name_29 (yards INTEGER, player VARCHAR, long VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_58 WHERE points = \"9\"",
    "question_en": "Which driver scored 9 points?",
    "question_th": "นักแข่งคนไหนได้ 9 แต้ม?",
    "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_en": "How many points were scored in 1:44:59.557 of time?",
    "question_th": "ในเวลา 1:44:59.557 คะแนน ได้กี่คะแนน?",
    "context": "CREATE TABLE table_name_64 (points VARCHAR, time_retired VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_79 WHERE date = \"june 2\"",
    "question_en": "What was the loss for June 2?",
    "question_th": "การสูญเสียในวันที่ 2 มิถุนายนคืออะไร?",
    "context": "CREATE TABLE table_name_79 (loss VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_73 WHERE loss = \"johnson (5-6)\"",
    "question_en": "What is the record for the game that has a loss of Johnson (5-6)?",
    "question_th": "สถิติเกมที่แพ้จอห์นสัน (5-6) เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_73 (record VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_8 WHERE score = \"0-6\"",
    "question_en": "What was the attendance for the game where the score was 0-6?",
    "question_th": "ผู้เข้าชมเกมที่สกอร์ 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_en": "How many people attended the game that ended 4-6?",
    "question_th": "มีกี่คนที่เข้าร่วมเกมที่จบ 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_en": "what is the sample size when the date(s) administered is march 24, 2010?",
    "question_th": "ขนาดของกลุ่มตัวอย่างเมื่อจัดการวันที่คือวันที่ 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_en": "what is the margin of error when the undicided is 8% and other is 4%?",
    "question_th": "ระยะขอบของข้อผิดพลาดเมื่อไม่ได้ฆ่าคือ 8% และอื่น ๆ คือ 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 = \"± 3%\"",
    "question_en": "what is the percent for other when the margin of error is ± 3%?",
    "question_th": "เปอร์เซ็นต์ของอย่างอื่นเป็นเท่าใดเมื่อระยะขอบของข้อผิดพลาดคือ ± 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_en": "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?",
    "question_th": "ในบรรดารายการทั้งหมดที่มีเรตติ้งมากกว่า 7.8 ซึ่งออกอากาศเมื่อวันที่ 26 ตุลาคม พ.ศ. 2549 และมีส่วนแบ่งเกิน 14 รายการ ผลรวมของผู้ชมคือเท่าใด",
    "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_en": "What is the latest year that has an n/a mintage and an Issue Price of $89.95?",
    "question_th": "ปีล่าสุดที่ไม่มีจำนวนผลิตและราคาเสนอขายอยู่ที่ $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_en": "What mintage for the royal canadian mint engravers before 2008 that has an issue price of $102.95?",
    "question_th": "สิ่งที่ผลิตขึ้นสำหรับช่างแกะสลักเหรียญกษาปณ์ของแคนาดาก่อนปี 2008 ที่ราคาออกอยู่ที่ 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_en": "What theme is associated with a year before 2006 and Issue Price of $25.22?",
    "question_th": "ธีมใดที่เกี่ยวข้องกับหนึ่งปีก่อนปี 2549 และราคาเสนอขายที่ 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_en": "What was the score in the final on 14 august 1994?",
    "question_th": "คะแนนในรอบชิงชนะเลิศวันที่ 14 สิงหาคม 2537 เป็นเท่าไหร่?",
    "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–7, 2–6\" AND partner = \"wayne arthurs\"",
    "question_en": "Which tournament had a final score of 6–7, 2–6, and a Partner of wayne arthurs?",
    "question_th": "ทัวร์นาเมนต์ใดมีคะแนนสุดท้าย 6–7, 2–6 และคู่หูของเวย์นอาร์เธอร์?",
    "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_en": "who was the opponent with round 17?",
    "question_th": "คู่ต่อสู้ในรอบ 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_en": "what round saw wakefield trinity wildcats u21 as the opponenet at belle vue?",
    "question_th": "รอบใดที่ Wakefield Trinity Wildcats U21 เป็นฝ่ายตรงข้ามที่ 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_en": "what round happened at galpharm stadium?",
    "question_th": "เกิดขึ้นที่สนามกัลฟามรอบไหนคะ?",
    "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_en": "In the game where Melbourne was the away team, what did they score?",
    "question_th": "ในเกมที่เมลเบิร์นเป็นทีมเยือนทำประตูได้เท่าไหร่?",
    "context": "CREATE TABLE table_name_67 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_97 WHERE venue = \"corio oval\"",
    "question_en": "In the venue Corio Oval, who was the away team?",
    "question_th": "ที่สนามโคริโอ โอวัล ทีมเยือนคือใคร?",
    "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_en": "What was the biggest pick number for the new team of Texas Rangers, in the compensation-a round?",
    "question_th": "หมายเลขเลือกที่ใหญ่ที่สุดสำหรับทีมใหม่ของ Texas Rangers ในรอบการชดเชยคืออะไร?",
    "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_en": "What was the pick number for the compensation-a round, for player Frank Catalanotto?",
    "question_th": "หมายเลขเลือกสำหรับการชดเชยต่อรอบสำหรับผู้เล่นแฟรงค์ คาตาลานอตโตคือเท่าไร?",
    "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_en": "Which new team has a compensation-a round, and Frank Catalanotto as a player?",
    "question_th": "ทีมใหม่ทีมไหนที่มีการจ่ายค่าตอบแทนต่อรอบ และแฟรงค์ คาตาลานอตโตในฐานะผู้เล่น?",
    "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_en": "What was the free agent class, with a pick less than 38?",
    "question_th": "คลาสตัวแทนอิสระที่มีตัวเลือกน้อยกว่า 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_en": "What is the score of the away team when the home team is Footscray?",
    "question_th": "ทีมเยือนเมื่อเจ้าบ้านเป็นฟุตสเครย์สกอร์เท่าไหร่?",
    "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_en": "What's listed as the Issue Price (BU) [Clarification Needed] with a Mintage (Proof) of 29,586?",
    "question_th": "ราคาเสนอขาย (BU) [Clarification Needed] มีมูลค่าเท่าใด (หลักฐาน) อยู่ที่ 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_en": "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?",
    "question_th": "ศิลปินที่มีราคาออก (BU) [ต้องการคำชี้แจง] คือใคร พร้อมด้วยปีที่มากกว่าปี 2004 และจำนวนผลิต (พิสูจน์) 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_en": "What's the average Year with an Issue Price (Proof) of $49.95, and Artist of W.H.J. Blakemore?",
    "question_th": "ปีเฉลี่ยที่มีราคาออก (หลักฐาน) อยู่ที่ 49.95 ดอลลาร์และศิลปินของ WHJ 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_en": "What's the Issue Price (BU) [Clarification Needed] with a Year larger than 2002 and Mintage (Proof) of 50,000?",
    "question_th": "ราคาของประเด็น (BU) [ต้องชี้แจง] คือเท่าไร โดยหนึ่งปีมากกว่าปี 2545 และจำนวนผลิต (พิสูจน์) 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_en": "Who was the winner when the runner-up was Chemnitzer FC II?",
    "question_th": "ใครคือผู้ชนะเมื่อรองชนะเลิศคือ 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_en": "Name the preliminary average for utah",
    "question_th": "ตั้งชื่อค่าเฉลี่ยเบื้องต้นสำหรับยูทาห์",
    "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_en": "How many tournament titles for texas with over 0 total?",
    "question_th": "มีชื่อทัวร์นาเมนต์สำหรับเท็กซัสกี่รายการที่มีทั้งหมดมากกว่า 0 รายการ",
    "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_en": "How many tournament titles for iowa state with 3 total titles?",
    "question_th": "มีชื่อทัวร์นาเมนท์กี่รายการสำหรับรัฐไอโอวาที่มีทั้งหมด 3 รายการ",
    "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_en": "what is the country when the bie recognised is no and years(s) is 2014?",
    "question_th": "ประเทศใดที่ bie จำได้ว่าไม่ใช่ และปีคือ 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_en": "what is the type when the bie recognised is yes and year(s) is 1960?",
    "question_th": "ประเภทใดที่ bie จำได้ว่าใช่และปีคือ 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_en": "what is the type when the bie recognised is yes, festival name is floriade and the year(s) is 2002?",
    "question_th": "ประเภทใดที่ bie จำได้ว่าใช่ ชื่อเทศกาลคือ floriade และปีคือ 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_en": "what is the year(s) when the city is kunming?",
    "question_th": "เมืองคุนหมิงคือปีไหนคะ?",
    "context": "CREATE TABLE table_name_59 (year_s_ VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_23 WHERE year_s_ = \"1982\"",
    "question_en": "what is the type when the year(s) is 1982?",
    "question_th": "ปีพ.ศ. 2525 เป็นประเภทใด?",
    "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_en": "What rank was caerphilly with a Swing smaller than 6.92?",
    "question_th": "คาร์ฟิลลีที่มีสวิงน้อยกว่า 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_en": "What's the sum of swing to gain with a winning party 2007 of Conservative with a rank smaller than 5?",
    "question_th": "ผลรวมของการแกว่งที่จะได้รับจากพรรคอนุรักษ์นิยมที่ชนะในปี 2550 โดยมีอันดับน้อยกว่า 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_en": "Who directs before 1949 with linda darnell leading and jonathan kent?",
    "question_th": "ใครเป็นผู้กำกับก่อนปี 1949 โดยมีลินดา ดาร์เนลเป็นผู้นำและโจนาธาน เคนท์?",
    "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_en": "Who is the leading lady in a yank in the r.a.f.?",
    "question_th": "ใครคือนางเอกในชุด yank ใน raf?",
    "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_en": "What title has rouben mamoulian directing after 1940 with linda darnell as the leading lady?",
    "question_th": "รูเบน มามูเลียน กำกับเรื่องใดหลังปี 1940 โดยมีลินดา ดาร์เนลเป็นนางเอก",
    "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_en": "Who directs before 1948 with linda darnell, titled blood and sand?",
    "question_th": "ใครกำกับก่อนปี 1948 ด้วยลินดา ดาร์เนล ชื่อเลือดและทราย",
    "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_en": "Which driver had 3 Laps and grids less than 15?",
    "question_th": "นักแข่งคนไหนมี 3 รอบและกริดน้อยกว่า 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_en": "I want the time/retired with grid less than 22 and Laps less than 33 for john surtees",
    "question_th": "ฉันต้องการเวลา/เกษียณโดยมีกริดน้อยกว่า 22 และรอบน้อยกว่า 33 สำหรับ 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_en": "What is the 2010 for the grand slam tournaments of 2007?",
    "question_th": "ปี 2010 สำหรับการแข่งขันแกรนด์สแลมปี 2550 คืออะไร?",
    "context": "CREATE TABLE table_name_44 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2009 FROM table_name_52 WHERE 2007 = \"3r\" AND 2010 = \"q2\"",
    "question_en": "Name the 2009 for when 2007 is 3r and 2010 is q2",
    "question_th": "ตั้งชื่อปี 2009 เมื่อปี 2007 คือ 3r และ 2010 คือ q2",
    "context": "CREATE TABLE table_name_52 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2012 FROM table_name_94 WHERE 2010 = \"q3\"",
    "question_en": "Name the 2012 for when 2010 is q3",
    "question_th": "ตั้งชื่อปี 2012 เมื่อปี 2010 คือไตรมาสที่ 3",
    "context": "CREATE TABLE table_name_94 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2010 FROM table_name_38 WHERE 2012 = \"grand slam tournaments\"",
    "question_en": "Name the 2010 for 2012 grand slam tournaments",
    "question_th": "ตั้งชื่อการแข่งขันแกรนด์สแลมปี 2010 สำหรับปี 2012",
    "context": "CREATE TABLE table_name_38 (Id VARCHAR)"
  },
  {
    "answer": "SELECT Giant AS slalom FROM table_name_34 WHERE overall = 25",
    "question_en": "Which giant slalom had an Overall number of 25?",
    "question_th": "ไจแอนต์สลาลมใดมีคะแนนรวม 25 ตัว",
    "context": "CREATE TABLE table_name_34 (Giant VARCHAR, overall VARCHAR)"
  },
  {
    "answer": "SELECT Giant AS slalom FROM table_name_29 WHERE season = 1997",
    "question_en": "Which Giant Slalom was obtained in the 1997 season?",
    "question_th": "ไจแอนท์สลาลมตัวใดที่ได้ในฤดูกาล 1997?",
    "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_en": "On what date did Mike Hawthorn have the fastest lap for the E Tyre of the Silverstone Circuit?",
    "question_th": "Mike Hawthorn มีรอบที่เร็วที่สุดสำหรับ E Tyre ของ 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_en": "What was the Tyre for 19 January?",
    "question_th": "ยางสำหรับวันที่ 19 มกราคมคืออะไร?",
    "context": "CREATE TABLE table_name_95 (tyre VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT pole_position FROM table_name_67 WHERE tyre = \"f\"",
    "question_en": "What individual(s) had Pole Position for Tyre F?",
    "question_th": "บุคคลใดมีตำแหน่งโพลสำหรับยาง 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_en": "Who won the race on 24 August?",
    "question_th": "ใครชนะการแข่งขันในวันที่ 24 สิงหาคม?",
    "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_en": "During what race did Mike Hawthorn have the Fastest Lap and Peter Collins win?",
    "question_th": "Mike Hawthorn มีรอบเร็วที่สุดและ Peter Collins ชนะในระหว่างการแข่งขันใด",
    "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_en": "What race occurred on the date of 15 June?",
    "question_th": "วันที่ 15 มิถุนายน มีการแข่งขันอะไรบ้าง?",
    "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_en": "What's the lowest attendance for October 13, 1968, and is larger than week 5?",
    "question_th": "จำนวนผู้เข้าร่วมต่ำสุดในวันที่ 13 ตุลาคม พ.ศ. 2511 และมากกว่าสัปดาห์ที่ 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_en": "What was the attendance on October 27, 1968?",
    "question_th": "วันที่ 27 ตุลาคม พ.ศ. 2511 มีผู้เข้าร่วมเป็นอย่างไรบ้าง?",
    "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_en": "What was the attendance on November 3, 1968, that was a week smaller than 8?",
    "question_th": "ผู้เข้าร่วมในวันที่ 3 พฤศจิกายน พ.ศ. 2511 ซึ่งน้อยกว่า 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_en": "What is the lowest ranking team in Australia?",
    "question_th": "ทีมอันดับต่ำสุดในออสเตรเลียคือทีมใด?",
    "context": "CREATE TABLE table_name_57 (rank INTEGER, country VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_37 WHERE date = \"11 february 1996\"",
    "question_en": "Which score happened on 11 february 1996?",
    "question_th": "คะแนนใดเกิดขึ้นเมื่อวันที่ 11 กุมภาพันธ์ พ.ศ. 2539",
    "context": "CREATE TABLE table_name_37 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_78 WHERE competition = \"euro 2000 qualifier\"",
    "question_en": "What was the result of the Competition of euro 2000 qualifier?",
    "question_th": "ผลการแข่งขันรอบคัดเลือกยูโร 2000 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_78 (result VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_45 WHERE date = \"11 february 1996\"",
    "question_en": "Which venue was used 11 february 1996?",
    "question_th": "สถานที่ใดถูกใช้เมื่อวันที่ 11 กุมภาพันธ์ พ.ศ. 2539",
    "context": "CREATE TABLE table_name_45 (venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_91 WHERE score = \"1–0\" AND competition = \"2002 world cup qualifier\"",
    "question_en": "Which venue has a Score of 1–0, and a Competition of 2002 world cup qualifier?",
    "question_th": "สถานที่ใดมีคะแนน 1–0 และการแข่งขันฟุตบอลโลกรอบคัดเลือกปี 2002",
    "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_en": "Where did the game on March 11 take place and how many people attended?",
    "question_th": "เกมเมื่อวันที่ 11 มีนาคมจัดขึ้นที่ไหนและมีผู้เข้าร่วมกี่คน?",
    "context": "CREATE TABLE table_name_68 (location_attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT chassis FROM table_name_68 WHERE points = 5",
    "question_en": "What chassis recorded 5 points?",
    "question_th": "แชสซีไหนบันทึก 5 แต้ม?",
    "context": "CREATE TABLE table_name_68 (chassis VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT MIN(points) FROM table_name_3 WHERE chassis = \"arrows a22\"",
    "question_en": "What is the low point total for arrows a22 chassis?",
    "question_th": "จุดรวมต่ำสุดของเคส arrow a22 คือเท่าไร?",
    "context": "CREATE TABLE table_name_3 (points INTEGER, chassis VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(points) FROM table_name_92 WHERE chassis = \"simtek s951\"",
    "question_en": "How many points for the simtek s951 chassis?",
    "question_th": "เคส simtek s951 ได้กี่คะแนน?",
    "context": "CREATE TABLE table_name_92 (points VARCHAR, chassis VARCHAR)"
  },
  {
    "answer": "SELECT chassis FROM table_name_31 WHERE year > 1989",
    "question_en": "What Chassis has a year later than 1989?",
    "question_th": "แชสซีรุ่นใดมีหนึ่งปีหลังจากปี 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_en": "What is the Tyres with a ford dfz v8 engine(s) with a chassis of coloni fc187?",
    "question_th": "ยางอะไรที่มีเครื่องยนต์ ford dfz v8 พร้อมแชสซีของ 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_en": "What is the round of the match at venue A with a result of 1-2 on 7 December 2004?",
    "question_th": "การแข่งขันรอบใดที่สนาม A โดยผลสกอร์ 1-2 เมื่อวันที่ 7 ธันวาคม พ.ศ. 2547 คือ?",
    "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_en": "Who was the opponent of the match in round sf with a result of 0-0?",
    "question_th": "คู่ต่อสู้ของแมตช์ในรอบ SF คือใครด้วยผลสกอร์ 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_en": "Who is the opponent of the match with an attendance larger than 59,000?",
    "question_th": "คู่ต่อสู้ของแมตช์นี้ใครมีผู้ชมมากกว่า 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_en": "How many apperances for shakhtar donetsk?",
    "question_th": "ชัคตาร์ โดเน็ตส์ก ลงเล่นกี่นัด?",
    "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_en": "How many appearances for psv eindhoven ranked above 11?",
    "question_th": "พีเอสวี ไอนด์โฮเฟ่น ติดอันดับสูงกว่า 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_en": "How many caps for alister campbell from brumbies?",
    "question_th": "อลิสเตอร์ แคมป์เบล จาก 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_en": "When was the player born who has 1 caps?",
    "question_th": "นักเตะมี 1 แคปเกิดเมื่อไหร่?",
    "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_en": "When was the queensland reds lock player born?",
    "question_th": "นักเตะควีนส์แลนด์ เรดส์ ล็อค เกิดเมื่อใด?",
    "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_en": "Which Opponent has a Round larger than 4 and the Event, Draka V?",
    "question_th": "ฝ่ายตรงข้ามคนใดที่มีรอบที่ใหญ่กว่า 4 และเหตุการณ์ 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_en": "Which Event has the Opponent, Jason Yee?",
    "question_th": "อีเวนต์ไหนที่มีคู่ต่อสู้ เจสัน ยี?",
    "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_en": "Which Result has the Event Strikeforce and the Method, Ko (spinning back fist)?",
    "question_th": "ผลลัพธ์ใดมี Event Strikeforce และ Method, Ko (หมัดหมุนกลับ)?",
    "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_en": "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?",
    "question_th": "รอบต่ำสุดที่มีสถานที่, ลาสเวกัส, เนวาดา, วิธีการ, การตัดสิน (เป็นเอกฉันท์) และเหตุการณ์, K-1 World Grand Prix 2003 ในลาสเวกัส 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_en": "Which Result has the Event, Strikeforce, and Method, Ko (double roundhouse kick)?",
    "question_th": "ผลลัพธ์ใดมีเหตุการณ์ Strikeforce และวิธี Ko (เตะกลมคู่)",
    "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_en": "what is the frequency of part number tmn550dcr23gm?",
    "question_th": "ความถี่ของหมายเลขชิ้นส่วน 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_en": "How many games were lost by more than 27 but not more 78 with goals less than 300?",
    "question_th": "มีกี่เกมที่แพ้มากกว่า 27 แต่ไม่เกิน 78 โดยมีเป้าหมายน้อยกว่า 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_en": "How many games had a tied less 15 with goals against being fewer than 186?",
    "question_th": "มีกี่เกมที่เสมอกันน้อยกว่า 15 ประตูโดยเสียประตูน้อยกว่า 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_en": "What's the least amount of goals for a game that had a tied bigger than 15?",
    "question_th": "จำนวนประตูขั้นต่ำสำหรับเกมที่เสมอกันมากกว่า 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_en": "What was the highest year that Europe/Africa Zone Group I Group B lost?",
    "question_th": "ปีสูงสุดที่โซนยุโรป/แอฟริกา กลุ่ม I กลุ่ม B แพ้คือปีใด",
    "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_en": "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?",
    "question_th": "จำนวนเหรียญทองน้อยที่สุดสำหรับอันดับน้อยกว่า 5 และ 1 เหรียญเงินสำหรับโปแลนด์ที่มีทั้งหมดมากกว่า 1 เหรียญคือเท่าใด",
    "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_en": "How many silver medals are there with 3 gold medals at a rank above 1?",
    "question_th": "มีเหรียญเงิน 3 เหรียญที่มีอันดับสูงกว่า 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_en": "What is the average number of gold medals with more than 1 bronze medal?",
    "question_th": "ค่าเฉลี่ยของเหรียญทองที่มีมากกว่า 1 เหรียญทองแดงคือเท่าใด",
    "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_en": "What is the average number of silver medals for rank 2 and more than 1 bronze medal?",
    "question_th": "จำนวนเหรียญเงินเฉลี่ยอันดับ 2 และมากกว่า 1 เหรียญทองแดงคือเท่าใด",
    "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_en": "Which Manufacturer has a Quantity of 1, and has the LMMR name Great Mountain?",
    "question_th": "ผู้ผลิตรายใดมีจำนวน 1 และมีชื่อ LMMR ว่า 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_en": "How many in the majority when Dan Sullivan won?",
    "question_th": "ส่วนใหญ่เมื่อ Dan Sullivan ชนะมีกี่คน?",
    "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_en": "What is the average decile of the school with a state authority and a roll number of 888?",
    "question_th": "Decile เฉลี่ยของโรงเรียนที่มีอำนาจของรัฐและจำนวนม้วนที่ 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_en": "What is the area of Mount Albert School?",
    "question_th": "โรงเรียนเมาท์อัลเบิร์ตมีพื้นที่อะไรบ้าง?",
    "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_en": "What years does Our Lady Sacred Heart School, which is state integrated, have?",
    "question_th": "โรงเรียน Our Lady Sacred Heart School ซึ่งเป็นระบบบูรณาการของรัฐ มีกี่ปี?",
    "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_en": "What is the number of asts when rebs are larger than 1,189?",
    "question_th": "จำนวน ass เมื่อ rebs มีขนาดใหญ่กว่า 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_en": "What did the visiting team score at brunswick street oval?",
    "question_th": "ทีมเยือนทำคะแนนได้ที่บรันสวิก สตรีท โอวัล?",
    "context": "CREATE TABLE table_name_67 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_38 WHERE home_team = \"fitzroy\"",
    "question_en": "When did fitzroy play at home?",
    "question_th": "ฟิตซ์รอยเล่นในบ้านเมื่อไหร่?",
    "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_en": "Which rank took place prior to 2000 when the bike was bsl?",
    "question_th": "อันดับใดเกิดขึ้นก่อนปี 2000 เมื่อจักรยานยนต์เป็น 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_en": "Which constructor has 10-12 rounds and a M7A chassis?",
    "question_th": "คอนสตรัคเตอร์ตัวไหนมี 10-12 รอบและตัวถัง M7A?",
    "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_en": "The rounds of 1-2, 4-10, 12 belong to which entrant?",
    "question_th": "รอบ 1-2, 4-10, 12 เป็นของผู้เข้าแข่งขันคนไหน?",
    "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_en": "What tyre has 1 round with Dave Charlton driving?",
    "question_th": "ยางอะไรมี 1 รอบ กับ เดฟ ชาร์ลตัน ขับ?",
    "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_en": "Which driver has a G tyre, rounds of 2-12 and a M7A chassis?",
    "question_th": "นักแข่งคนไหนมียาง G รอบ 2-12 และแชสซี M7A",
    "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_en": "Who was the leading scorer of the game where the Knicks were the home team and the Warriors were the visiting team?",
    "question_th": "ใครคือผู้ทำประตูสูงสุดในเกมที่นิกส์เป็นเจ้าบ้าน และวอร์ริเออร์สเป็นทีมเยือน?",
    "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_en": "What is the lowest Not Outs with an average lower than 31.25, fewer than 13 matches, and fewer than 327 runs?",
    "question_th": "Not Outs ต่ำสุดที่มีค่าเฉลี่ยต่ำกว่า 31.25 น้อยกว่า 13 นัด และน้อยกว่า 327 รันคืออะไร?",
    "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_en": "What is the total number of runs when the average was less than 31.25 and there were fewer than 24 innings?",
    "question_th": "จำนวนรันทั้งหมดเมื่อค่าเฉลี่ยน้อยกว่า 31.25 และมีจำนวนน้อยกว่า 24 อินนิงเป็นเท่าใด",
    "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_en": "What is the lowest number of Not Outs when there were more than 25 innings?",
    "question_th": "จำนวน Not Outs ต่ำสุดเมื่อมีมากกว่า 25 อินนิงคือเท่าใด",
    "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_en": "What is the number of Not Outs when there were more than 327 runs and 24 innings, and an average of 29.54",
    "question_th": "จำนวน Not Outs เมื่อวิ่งมากกว่า 327 รัน 24 อินนิง เฉลี่ยอยู่ที่ 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_en": "What is the total number of runs where the average is less than 27.22?",
    "question_th": "จำนวนรันทั้งหมดโดยที่ค่าเฉลี่ยน้อยกว่า 27.22 คือเท่าไร?",
    "context": "CREATE TABLE table_name_87 (runs VARCHAR, average INTEGER)"
  },
  {
    "answer": "SELECT hometown FROM table_name_32 WHERE college = \"lsu\"",
    "question_en": "What's the hometown of the player who went to lsu?",
    "question_th": "นักเตะที่ไปม.ล.คือบ้านเกิดอะไรครับ?",
    "context": "CREATE TABLE table_name_32 (hometown VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_23 WHERE player = \"delray brooks\"",
    "question_en": "What college did delray brooks go to?",
    "question_th": "เดลเรย์ บรูคส์เรียนที่วิทยาลัยอะไร",
    "context": "CREATE TABLE table_name_23 (college VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_72 WHERE player = \"delray brooks\"",
    "question_en": "What school did delray brooks go to?",
    "question_th": "เดลเรย์ บรูคส์เรียนโรงเรียนอะไร",
    "context": "CREATE TABLE table_name_72 (school VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_52 WHERE hometown = \"los angeles, ca\"",
    "question_en": "Who has a hometown of los angeles, ca?",
    "question_th": "ใครมีบ้านเกิดอยู่ที่ลอสแอนเจลิส แคลิฟอร์เนีย?",
    "context": "CREATE TABLE table_name_52 (player VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_name_45 WHERE height = \"6-4\"",
    "question_en": "What's the hometown of the player who is 6-4?",
    "question_th": "บ้านเกิดของผู้เล่นอายุ 6-4 ปี คืออะไร?",
    "context": "CREATE TABLE table_name_45 (hometown VARCHAR, height VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_95 WHERE player = \"danny manning\"",
    "question_en": "What college did danny manning go to?",
    "question_th": "แดนนี่ แมนนิ่งไปเรียนที่วิทยาลัยอะไร",
    "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_en": "Which model(s) has AGP graphics and 400 FSB (MHz)?",
    "question_th": "รุ่นใดมีกราฟิก AGP และ 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_en": "Which model's chipset is intel 955?",
    "question_th": "ชิปเซ็ตของรุ่นไหนคือ 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_en": "What is the chipset in the Precision 340 model that has the rambus memory and 400 or 533 FSB (MHz)?",
    "question_th": "ชิปเซ็ตในรุ่น Precision 340 ที่มีหน่วยความจำแรมบัสและ 400 หรือ 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_en": "What type of graphics are present in the Precision 340 model with the intel 850e chipset?",
    "question_th": "กราฟิกประเภทใดที่มีอยู่ในรุ่น Precision 340 ที่ใช้ชิปเซ็ต Intel 850e",
    "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_en": "What type of chipset is in the Precision t3400 model with the PCI Express graphics?",
    "question_th": "ชิปเซ็ตประเภทใดในรุ่น Precision t3400 พร้อมด้วยกราฟิก PCI Express?",
    "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_en": "What is the Time/Retired for brabham - climax, on Grid of 10?",
    "question_th": "เวลา / เกษียณสำหรับ brabham - จุดไคลแม็กซ์บนตาราง 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_en": "How many laps have a Time/Retired of +12.5 secs?",
    "question_th": "กี่รอบมีเวลา/เกษียณเป็น +12.5 วินาที",
    "context": "CREATE TABLE table_name_87 (laps VARCHAR, time_retired VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_77 WHERE venue = \"stavanger\"",
    "question_en": "What competition was contested at stavanger?",
    "question_th": "มีการแข่งขันอะไรบ้างที่สตาวังเงร์?",
    "context": "CREATE TABLE table_name_77 (competition VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_30 WHERE scored > 1",
    "question_en": "What is the result of the contest with over 1 scored?",
    "question_th": "ผลการแข่งขันที่มีมากกว่า 1 คะแนนเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_30 (result VARCHAR, scored INTEGER)"
  },
  {
    "answer": "SELECT score FROM table_name_68 WHERE high_points = \"wallace (17)\"",
    "question_en": "What was the score of the game where Wallace (17) had the highest points?",
    "question_th": "ในเกมที่วอลเลซ (17) มีคะแนนสูงสุดคือเท่าไร?",
    "context": "CREATE TABLE table_name_68 (score VARCHAR, high_points VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_name_39 WHERE date = \"march 24\"",
    "question_en": "Who had the highest points of the game on March 24?",
    "question_th": "ใครมีแต้มสูงสุดในเกมวันที่ 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_en": "Which pick was from Lamar High School?",
    "question_th": "ตัวเลือกใดมาจาก 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_en": "Which nationality does Florida Tech have?",
    "question_th": "Florida Tech มีสัญชาติใด",
    "context": "CREATE TABLE table_name_1 (nationality VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_21 WHERE pick = \"415\"",
    "question_en": "Which nationality's pick was 415?",
    "question_th": "สัญชาติใดที่ถูกเลือกคือ 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_en": "Which school's nationality was United States when its pick was 595?",
    "question_th": "โรงเรียนใดมีสัญชาติสหรัฐอเมริกาเมื่อเลือกได้ 595 คน",
    "context": "CREATE TABLE table_name_65 (school VARCHAR, nationality VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_41 WHERE round = \"24\"",
    "question_en": "Which school's round was 24?",
    "question_th": "รอบโรงเรียนไหนคือ 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_en": "What Winning Jockey ran in the Tampa Bay Downs Track on Winning Horse Barkley Sound?",
    "question_th": "Winning Jockey วิ่งอะไรใน Tampa Bay Downs Track บน 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_en": "What is the Purse in Sunland Park Track?",
    "question_th": "กระเป๋าเงินในเส้นทาง Sunland Park คืออะไร?",
    "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_en": "What Date is Northern Spur Breeders' Cup Stakes Race?",
    "question_th": "การแข่งขัน 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_en": "What is the away team at glenferrie oval?",
    "question_th": "ทีมเยือน 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_en": "What is the crowd total for glenferrie oval?",
    "question_th": "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_en": "Tell me the total number of Grid for Rubens Barrichello",
    "question_th": "บอกจำนวนกริดทั้งหมดของรูเบนส์ บาริเชลโลมาหน่อยสิ",
    "context": "CREATE TABLE table_name_4 (grid VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT MIN(grid) FROM table_name_85 WHERE driver = \"david coulthard\"",
    "question_en": "I want the lowest Grid for David Coulthard",
    "question_th": "ฉันต้องการกริดที่ต่ำที่สุดสำหรับ 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_en": "When carlton was the home team what was the lowest crowd turnout?",
    "question_th": "เมื่อคาร์ลตันเป็นเจ้าบ้าน จำนวนผู้ออกมาชมการแข่งขันน้อยที่สุดคือเท่าใด",
    "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_en": "When the venue was punt road oval, what was the Home teams score?",
    "question_th": "เมื่อสนามเป็นสนามถ่อวงรี ทีมเจ้าบ้านได้คะแนนเท่าไหร่?",
    "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_en": "When the away team was geelong, what was the away team score?",
    "question_th": "เมื่อทีมเยือนจีลองสกอร์ทีมเยือนเป็นเท่าไหร่?",
    "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_en": "When the away team was north melbourne, what was the away team score?",
    "question_th": "เมื่อทีมเยือนอยู่เมลเบิร์นเหนือ สกอร์ทีมเยือนเท่าไหร่?",
    "context": "CREATE TABLE table_name_63 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_49 WHERE year < 2010 AND tournament = \"hypo-meeting\"",
    "question_en": "What is the result of the hypo-meeting before 2010?",
    "question_th": "ผลการประชุมไฮโป-มีตติ้งก่อนปี 2553 เป็นอย่างไร?",
    "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_en": "What venue is used before 2012 with a result of 12th?",
    "question_th": "สถานที่ใดที่ใช้ก่อนปี 2012 โดยผลการแข่งขันวันที่ 12",
    "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_en": "What is the notes for the hypo-meeting tournament in 2012?",
    "question_th": "หมายเหตุสำหรับทัวร์นาเมนต์ Hypo-Meeting ในปี 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_en": "What was the earliest year a game was played in Athens?",
    "question_th": "ปีแรกสุดที่มีการเล่นเกมในกรุงเอเธนส์คือปีใด",
    "context": "CREATE TABLE table_name_95 (year INTEGER, location VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_56 WHERE result = \"win\"",
    "question_en": "On which date was there a win?",
    "question_th": "มีชัยชนะวันไหน?",
    "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_en": "What film won best actress at the 2007 Inside Soap Awards?",
    "question_th": "ภาพยนตร์เรื่องใดที่ได้รับรางวัลนักแสดงนำหญิงยอดเยี่ยมจากงาน Inside Soap Awards ประจำปี 2550",
    "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_en": "What character won the best dramatic performance award?",
    "question_th": "ตัวละครใดได้รับรางวัลการแสดงละครยอดเยี่ยม?",
    "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_en": "In what category was character Jacqui Mcqueen nominated before 2011?",
    "question_th": "ตัวละคร Jacqui Mcqueen ได้รับการเสนอชื่อเข้าชิงในหมวดหมู่ใดก่อนปี 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_en": "I want the away team score for away team of fitzroy",
    "question_th": "อยากได้คะแนนทีมเยือนของฟิตซ์รอยทีมเยือน",
    "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_en": "Name the height for the center position from kansas",
    "question_th": "ตั้งชื่อความสูงสำหรับตำแหน่งกึ่งกลางจากแคนซัส",
    "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_en": "Name the position for number 11 and years on the rockets for 1989-95",
    "question_th": "ตั้งชื่อตำแหน่งหมายเลข 11 และปีบนจรวด ปี 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_en": "Name the position for numbers of 41",
    "question_th": "ตั้งชื่อตำแหน่งหมายเลข 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_en": "Which team calls VFL Park their home?",
    "question_th": "ทีมไหนเรียก VFL Park ว่าบ้านของพวกเขา?",
    "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_en": "Tell me the pole position for graham hill the fastest lap and winning driver of him on 30 may",
    "question_th": "บอกตำแหน่งโพลโพซิชั่นของเกรแฮม ฮิลล์ นักแข่งที่เร็วที่สุดและชนะของเขาในวันที่ 30 พฤษภาคมหน่อยสิ",
    "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_en": "Tell me the fastest lapf or jim clark being the winning driver for prince george",
    "question_th": "บอกฉันว่ารอบที่เร็วที่สุดหรือจิม คลาร์กที่เป็นนักแข่งที่ชนะของพรินซ์จอร์จ",
    "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_en": "I want the circuit for jim clark",
    "question_th": "ฉันอยากได้วงจรของจิม คลาร์ก",
    "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_en": "I want the constructor for winning driver of jim clark, pole position of graham hill and dutch grand prix",
    "question_th": "ฉันต้องการตัวสร้างสำหรับนักแข่งที่ชนะของจิม คลาร์ก ตำแหน่งโพลโพซิชั่นของเกรแฮมฮิลล์ และดัตช์กรังด์ปรีซ์",
    "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_en": "Tell me the winning driver for jim clark as pole position and fastest lap",
    "question_th": "บอกหน่อยว่านักแข่งที่ชนะของจิม คลาร์กคือตำแหน่งโพลโพซิชั่นและรอบที่เร็วที่สุด",
    "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_en": "At the match in windy hill, how much did the home team score?",
    "question_th": "แมตช์ที่วินดี้ฮิลล์เจ้าบ้านได้สกอร์เท่าไหร่?",
    "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_en": "During footscray's home game, how much did the away team score?",
    "question_th": "เกมในบ้านของฟุตสเครย์ ทีมเยือนทำสกอร์ได้เท่าไหร่?",
    "context": "CREATE TABLE table_name_74 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_98 WHERE venue = \"mcg\"",
    "question_en": "What date was the match at mcg played?",
    "question_th": "แมตช์ที่ mcg เล่นวันไหน?",
    "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_en": "At the match which took place in arden street oval, how much did the away team score?",
    "question_th": "แมตช์ที่สนามอาร์เดน สตรีท โอวัล ทีมเยือนทำสกอร์ได้เท่าไหร่?",
    "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_en": "How many floors does detroit marriott at the renaissance center have?",
    "question_th": "ดีทรอยต์ แมริออท ที่ศูนย์เรอเนซองส์มีกี่ชั้น",
    "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_en": "Which place has 23 floors and a street address in Detroit of 144 west congress street?",
    "question_th": "สถานที่ใดมี 23 ชั้นและที่อยู่ในดีทรอยต์ของ 144 ถนนเวสต์คองเกรส",
    "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_en": "How many floors does the address 1828 jay street have?",
    "question_th": "ที่อยู่ 1828 jay street มีกี่ชั้น?",
    "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_en": "What is the sum of Floors at st. joseph church?",
    "question_th": "ผลรวมของชั้นที่เซนต์เป็นเท่าใด โบสถ์โจเซฟ?",
    "context": "CREATE TABLE table_name_52 (floors INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_38 WHERE crowd > 22 OFFSET 449",
    "question_en": "Which home team has a crowd that is bigger than 22,449?",
    "question_th": "เจ้าบ้านไหนมีจ่าฝูงมากกว่า 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_en": "What is the average number of laps for max biaggi",
    "question_th": "จำนวนรอบเฉลี่ยของ max biaggi คือเท่าใด",
    "context": "CREATE TABLE table_name_80 (laps INTEGER, rider VARCHAR)"
  },
  {
    "answer": "SELECT bike FROM table_name_48 WHERE rider = \"dean ellison\"",
    "question_en": "What bike does dean ellison ride?",
    "question_th": "Dean Ellison ขี่จักรยานอะไร?",
    "context": "CREATE TABLE table_name_48 (bike VARCHAR, rider VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_48 WHERE grand_prix = \"brazilian grand prix\"",
    "question_en": "What is the constructor for Brazilian Grand Prix?",
    "question_th": "ตัวสร้างสำหรับ 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_en": "What is the fastest lap for Belgian Grand Prix?",
    "question_th": "อะไรคือรอบที่เร็วที่สุดสำหรับ 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_en": "What is the lowest utility PV with hydro great than 289.25 and renweable total larger than 520.07?",
    "question_th": "ค่า PV ยูทิลิตี้ต่ำสุดที่มีพลังน้ำมากกว่า 289.25 และค่ารวมที่หมุนเวียนได้มากกว่า 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_en": "What dates of captaincy for a win % of 35.71?",
    "question_th": "จะเป็นกัปตันทีมวันที่เท่าไหร่จึงจะชนะ % ของ 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_en": "Who was the Locomotive superintendent has a NER class of d45?",
    "question_th": "หัวหน้าอุทยานหัวรถจักรคือใครที่มีระดับ NER 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–98\"",
    "question_en": "Which LNER class has been Passed to LNER larger than 3 and a introduced in 1895–98?",
    "question_th": "คลาส LNER ใดที่ถูกส่งไปยัง LNER ที่ใหญ่กว่า 3 และเปิดตัวในปี 1895–98",
    "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_en": "Name the winner for 29 march",
    "question_th": "ประกาศรายชื่อผู้โชคดีประจำวันที่ 29 มีนาคม",
    "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_en": "Name the report for circuit of kyalami for south african republic trophy",
    "question_th": "ตั้งชื่อรายงานสำหรับ Circuit of Kyalami สำหรับถ้วยรางวัลสาธารณรัฐแอฟริกาใต้",
    "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_en": "What is the year of expected completion when the capacity is 22,500?",
    "question_th": "คาดว่าจะแล้วเสร็จในปีใดเมื่อมีกำลังการผลิต 22,500?",
    "context": "CREATE TABLE table_name_15 (expected_completion VARCHAR, capacity VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_70 WHERE province = \"saskatchewan\"",
    "question_en": "What city is in Saskatchewan?",
    "question_th": "ซัสแคตเชวันอยู่เมืองอะไร",
    "context": "CREATE TABLE table_name_70 (city VARCHAR, province VARCHAR)"
  },
  {
    "answer": "SELECT province FROM table_name_66 WHERE city = \"hamilton\"",
    "question_en": "What province is Hamilton part of?",
    "question_th": "แฮมิลตันเป็นส่วนหนึ่งของจังหวัดใด",
    "context": "CREATE TABLE table_name_66 (province VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_93 WHERE expected_completion = \"2017\"",
    "question_en": "Which city expects their project completion in 2017?",
    "question_th": "เมืองใดคาดว่าโครงการจะแล้วเสร็จในปี 2560",
    "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_en": "What is the number of fumbles for the avg larger than 5.4, with yards smaller than 164?",
    "question_th": "จำนวนคลำหาค่าเฉลี่ยที่มากกว่า 5.4 โดยมีระยะน้อยกว่า 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_en": "What is the most fumbles for more than 44 yards and att of 32?",
    "question_th": "อะไรคือสิ่งที่คลำได้มากที่สุดในระยะมากกว่า 44 หลาและแอท 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_en": "What entrant has osella fa1c chassis after 1981?",
    "question_th": "ผู้เข้าแข่งขันรายใดมีแชสซี osella fa1c หลังปี 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_en": "How many appearances with fc igea virtus and 1 goal?",
    "question_th": "ลงเล่นกี่นัดกับเอฟซี อีเจีย เวอร์ตุส และ 1 ประตู?",
    "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_en": "What is the title of the program that was originally aired on June 13, 1999?",
    "question_th": "รายการที่ออกอากาศครั้งแรกเมื่อวันที่ 13 มิถุนายน 2542 ชื่ออะไร",
    "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_en": "Who wrote the program that originally aired on June 6, 1999?",
    "question_th": "ใครเป็นคนเขียนรายการที่ออกอากาศครั้งแรกเมื่อวันที่ 6 มิถุนายน พ.ศ. 2542",
    "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_en": "What is the title of the episode written by David J. Burke?",
    "question_th": "ตอนที่เขียนโดย 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_en": "What driver shows grid as 18?",
    "question_th": "คนขับคนไหนแสดงตารางเป็น 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_en": "What is the Time/Retired for less than 52 laps in grid 19?",
    "question_th": "เวลา/เกษียณสำหรับน้อยกว่า 52 รอบในตาราง 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_en": "What driver has more than 39 laps on gird 15?",
    "question_th": "นักแข่งคนไหนมีรอบเกิน 39 รอบบนเส้นรอบวง 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_en": "What is the number of the grid for Johnny Herbert with more than 52 laps?",
    "question_th": "จอห์นนี่ เฮอร์เบิร์ต ที่เกิน 52 รอบมีกริดเท่าไหร่?",
    "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_en": "What is the least amount of laps for Luca Badoer?",
    "question_th": "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_en": "Which category does drama league award belong to?",
    "question_th": "รางวัลละครลีกอยู่ในหมวดใด?",
    "context": "CREATE TABLE table_name_91 (category VARCHAR, award VARCHAR)"
  },
  {
    "answer": "SELECT MAX(year) FROM table_name_70 WHERE category = \"distinguished performance\"",
    "question_en": "What is the latest year for the distinguished performance?",
    "question_th": "ผลงานโดดเด่นล่าสุดคือปีไหน?",
    "context": "CREATE TABLE table_name_70 (year INTEGER, category VARCHAR)"
  },
  {
    "answer": "SELECT award FROM table_name_34 WHERE category = \"theatre world award\"",
    "question_en": "What type of award is the theatre world award?",
    "question_th": "รางวัล 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_en": "Which country is the Nova TV network from?",
    "question_th": "เครือข่าย Nova TV มาจากประเทศใด",
    "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_en": "Which series premiered on Acasa TV?",
    "question_th": "ซีรีส์ใดที่ฉายรอบปฐมทัศน์ทาง 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_en": "What is the alternate title/translation of the series that premiered on December 12, 2006?",
    "question_th": "ชื่อเรื่องสำรอง/คำแปลของซีรีส์ที่เปิดตัวเมื่อวันที่ 12 ธันวาคม พ.ศ. 2549 คืออะไร",
    "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_en": "What is the name of Bulgaria's TV network?",
    "question_th": "เครือข่ายทีวีของบัลแกเรียชื่ออะไร",
    "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_en": "Which country had a series that premiered on September 4, 2006?",
    "question_th": "ประเทศใดมีซีรีส์ที่ฉายรอบปฐมทัศน์ในวันที่ 4 กันยายน พ.ศ. 2549",
    "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ų žemė\"",
    "question_en": "What TV network is the series aistrų žemė aired on?",
    "question_th": "ซีรีส์ aistrų žemė ออกอากาศทางเครือข่ายทีวีใด",
    "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_en": "What venue will hold the 2013 Concacaf Gold Cup competition?",
    "question_th": "สถานที่ใดที่จะจัดการแข่งขันคอนคาแคฟโกลด์คัพ 2013?",
    "context": "CREATE TABLE table_name_59 (venue VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_49 WHERE competition = \"2011 concacaf gold cup\"",
    "question_en": "What is the result of the 2011 Concacaf Gold Cup competition?",
    "question_th": "ผลการแข่งขันคอนคาแคฟโกลด์คัพ 2011 เป็นอย่างไร",
    "context": "CREATE TABLE table_name_49 (result VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_78 WHERE date = \"july 23, 2009\"",
    "question_en": "What is the score of the event held on July 23, 2009?",
    "question_th": "คะแนนของงานวันที่ 23 กรกฎาคม 2552 เป็นอย่างไรบ้าง",
    "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_en": "What is the smallest Class Position that has drivers Les Palmer, Terry Morris, and a Position larger than 23?",
    "question_th": "ตำแหน่งคลาสที่เล็กที่สุดที่มีนักแข่ง Les Palmer, Terry Morris และตำแหน่งที่มากกว่า 23 คืออะไร",
    "context": "CREATE TABLE table_name_59 (class INTEGER, drivers VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT drivers FROM table_name_33 WHERE position = 27",
    "question_en": "Which drivers have the position of 27?",
    "question_th": "นักแข่งคนไหนมีตำแหน่ง 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_en": "In the game against home team Fitzroy, what did the away team score?",
    "question_th": "ในเกมกับเจ้าบ้าน ฟิตซ์รอย ทีมเยือนได้คะแนนเท่าไหร่?",
    "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_en": "At Junction Oval, what is the sum of the crowd?",
    "question_th": "ที่ Junction Oval ผลรวมของฝูงชนเป็นเท่าใด?",
    "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_en": "Which region in Saint-Simon-Les-Mines has a population smaller than 458?",
    "question_th": "ภูมิภาคใดในแซ็ง-ซีมง-เล-มินส์ที่มีประชากรน้อยกว่า 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_en": "What is total population of Saint-Agapit (code 33045)?",
    "question_th": "ประชากรทั้งหมดของ Saint-Agapit คือเท่าไร (รหัส 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_en": "What is the average area larger than Code 19025 but a smaller region than 12?",
    "question_th": "พื้นที่เฉลี่ยที่มีขนาดใหญ่กว่ารหัส 19025 แต่มีพื้นที่น้อยกว่า 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_en": "What is the highest region of Saint-Flavien with an area larger than 67.56?",
    "question_th": "ภูมิภาคที่สูงที่สุดของแซงต์-ฟลาเวียนโดยมีพื้นที่มากกว่า 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_en": "Which Drobo (2nd) has a Drobo FS of up to 32?",
    "question_th": "Drobo ตัวไหน (ตัวที่ 2) มี Drobo FS สูงถึง 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_en": "Which Drobo (2nd) has a Drobo S (2nd) of 5?",
    "question_th": "Drobo ตัวใด (ตัวที่ 2) มี Drobo S (ตัวที่ 2) จาก 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_en": "Which Drobo (2nd) has a Drobo 5d of 2012-11-02?",
    "question_th": "Drobo ตัวใด (ตัวที่ 2) มี Drobo 5d ของ 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_en": "Marty Riessen played as a partner during a match with what kind of surface?",
    "question_th": "Marty Riessen เล่นเป็นคู่หูระหว่างการแข่งขันกับพื้นผิวประเภทใด",
    "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_en": "When did Marty Riessen team up with a partner during a match on a carpet surface?",
    "question_th": "Marty Riessen ร่วมทีมกับคู่ต่อสู้ระหว่างการแข่งขันบนพื้นพรมเมื่อใด",
    "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_en": "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?",
    "question_th": "ประชากรโดยเฉลี่ยคือเท่าใดเมื่อเขตเทศบาลส่วนภูมิภาคคือ le domaine-du-roy ประเภทคือ m และภูมิภาคน้อยกว่า 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_en": "what is the regional county municipality when the type is m and the code is less than 91015?",
    "question_th": "เทศบาลส่วนภูมิภาคคืออะไร เมื่อประเภทเป็น m และรหัสน้อยกว่า 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_en": "When the fastest lap was carlos pace and jackie stewart was the pole position, who was the winning driver?",
    "question_th": "เมื่อรอบที่เร็วที่สุดคือคาร์ลอส เพซ และแจ็กกี้ สจ๊วตเป็นโพลโพซิชั่น ใครคือนักแข่งที่ชนะ?",
    "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_en": "What is north melbourne's home team score?",
    "question_th": "คะแนนทีมเหย้าของ นอร์ท เมลเบิร์น คืออะไร?",
    "context": "CREATE TABLE table_name_64 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_14 WHERE away_team = \"south melbourne\"",
    "question_en": "Which venue has an Away team of south melbourne?",
    "question_th": "สนามไหนมีทีมเยือนเมลเบิร์นใต้?",
    "context": "CREATE TABLE table_name_14 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(crowd) FROM table_name_67 WHERE away_team = \"geelong\"",
    "question_en": "How many people in the crowd with Away team of geelong?",
    "question_th": "ฝูงชนกับทีมเยือนจีลองมีกี่คน?",
    "context": "CREATE TABLE table_name_67 (crowd VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_76 WHERE away_team = \"hawthorn\"",
    "question_en": "Which venue has a Away team of hawthorn?",
    "question_th": "สนามไหนมีทีมเยือนฮอว์ธอร์น?",
    "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_en": "Who was the runner-up in the Michelob Light Open at Kingsmill?",
    "question_th": "ใครคือรองแชมป์รายการ Michelob Light Open ที่ 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_en": "Which tournament won with a score of 66-68-70-70=274?",
    "question_th": "รายการแข่งขันใดชนะด้วยคะแนน 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_en": "Which Venue has a crowd larger than 25,000?",
    "question_th": "สถานที่ใดมีฝูงชนมากกว่า 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_en": "Which competition has a Year of 2008, a Surface of carpet, and a Date of 31 jan?",
    "question_th": "การแข่งขันใดมีปี 2551 พื้นพรม และวันที่ 31 มกราคม",
    "context": "CREATE TABLE table_name_65 (competition VARCHAR, date VARCHAR, year VARCHAR, surface VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_58 WHERE date = \"24–25 apr\"",
    "question_en": "Which surface has a Date of 24–25 apr?",
    "question_th": "พื้นผิวใดมีวันที่ 24–25 เมษายน",
    "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_en": "How many years have a Surface of clay, and a Score of 4 : 0?",
    "question_th": "มีพื้นผิวดินเหนียวกี่ปี และคะแนน 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_en": "What is the largest year located in zagreb, croatia?",
    "question_th": "ปีที่ใหญ่ที่สุดคือปีใดในซาเกร็บ ประเทศโครเอเชีย?",
    "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_en": "What is the biggest clean and jerk number when snatch was less than 150 and the bodyweight was bigger than 93.13?",
    "question_th": "หมายเลข Clean and Jerk ที่ใหญ่ที่สุดเมื่อ Snatch น้อยกว่า 150 และน้ำหนักตัวมากกว่า 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_en": "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?",
    "question_th": "ชื่อใดมีน้ำหนักตัวมากกว่า 89.64 น้ำหนักรวม (กก.) มากกว่า 310 น้ำหนักตัวสะอาดและเหวี่ยงน้อยกว่า 207.5 และลูกฉกที่ใหญ่กว่า 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_en": "What is the home team's score for the game at Junction Oval?",
    "question_th": "สกอร์ของเจ้าบ้านในเกมที่จังชั่น โอวัลเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_42 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_name_8 WHERE replacement = \"alberto malesani\"",
    "question_en": "Tell me the club with a replacement of alberto malesani",
    "question_th": "บอกสโมสรด้วยการเปลี่ยนอัลแบร์โต มาเลซานี่",
    "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_en": "Name the club with date of appointment of 1 november 2007",
    "question_th": "ตั้งชื่อสโมสรโดยนัดวันที่ 1 พฤศจิกายน พ.ศ. 2550",
    "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_en": "What's the total number of picks of a team that had june longalong?",
    "question_th": "จำนวนตัวเลือกทั้งหมดของทีมที่คัดเลือกในเดือนมิถุนายนเป็นจำนวนเท่าใด?",
    "context": "CREATE TABLE table_name_28 (pick INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT SUM(pick) FROM table_name_7 WHERE school = \"lsu\"",
    "question_en": "What is the pick number for School of lsu?",
    "question_th": "หมายเลขเลือกสำหรับโรงเรียนของ lsu คืออะไร?",
    "context": "CREATE TABLE table_name_7 (pick INTEGER, school VARCHAR)"
  },
  {
    "answer": "SELECT AVG(round) FROM table_name_2 WHERE school = \"east carolina\"",
    "question_en": "What's the average round number for East Carolina?",
    "question_th": "หมายเลขรอบเฉลี่ยของอีสต์แคโรไลนาคือเท่าไร",
    "context": "CREATE TABLE table_name_2 (round INTEGER, school VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_7 WHERE position = \"offensive tackle\"",
    "question_en": "Which round has an offensive tackle position?",
    "question_th": "รอบใดมีตำแหน่งแท็คเกิ้ลฝ่ายรุก?",
    "context": "CREATE TABLE table_name_7 (round VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_54 WHERE venue = \"princes park\"",
    "question_en": "What is the home team at princes park?",
    "question_th": "เจ้าบ้านที่ปริ้นเซส ปาร์คเป็นไงบ้าง?",
    "context": "CREATE TABLE table_name_54 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_87 WHERE venue = \"windy hill\"",
    "question_en": "What is the home team for Windy Hill?",
    "question_th": "วินดี้ ฮิลล์ เจ้าบ้านเป็นทีมไหน?",
    "context": "CREATE TABLE table_name_87 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_21 WHERE venue = \"lake oval\"",
    "question_en": "What is the home team of Lake Oval?",
    "question_th": "เจ้าบ้านเลคโอวัลคือทีมอะไร?",
    "context": "CREATE TABLE table_name_21 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_57 WHERE golden_tickets = 26",
    "question_en": "What was the date when there were 26 golden tickets?",
    "question_th": "วันที่เท่าไหร่ที่มีตั๋วทอง 26 ใบ?",
    "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_en": "What was the date when the first audition venue was Kemper Arena?",
    "question_th": "สถานที่ออดิชั่นครั้งแรกคือ 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_en": "Which audition city held callbacks at Amelia Island Plantation?",
    "question_th": "เมืองออดิชั่นใดที่โทรกลับที่ 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_en": "How many golden tickets were given out when the auditions were held in San Francisco, California?",
    "question_th": "มีการแจกตั๋วทองกี่ใบเมื่อมีการออดิชั่นที่ซานฟรานซิสโก แคลิฟอร์เนีย",
    "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_en": "What was the callback venue for the Phoenix, Arizona auditions?",
    "question_th": "สถานที่ติดต่อกลับสำหรับการออดิชั่นที่ฟีนิกซ์ รัฐแอริโซนา คืออะไร?",
    "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_en": "What was the callback date for the auditions held on July 29, 2008?",
    "question_th": "วันที่โทรกลับสำหรับการออดิชั่นที่จัดขึ้นในวันที่ 29 กรกฎาคม 2551 คือเมื่อใด",
    "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_en": "On which date was the high assists Delonte West Earl Watson (6)?",
    "question_th": "เดลอนเต้ เวสต์ เอิร์ล วัตสัน (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_en": "How many laps for ukyo katayama with a grid under 16?",
    "question_th": "อุเคียว คาตะยามะ ที่มีกริดต่ำกว่า 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_en": "What grid has a Time/Retired of +5 laps?",
    "question_th": "ตารางใดมีเวลา/เกษียณเป็น +5 รอบ",
    "context": "CREATE TABLE table_name_34 (grid VARCHAR, time_retired VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_46 WHERE tie_no = \"48\"",
    "question_en": "Which away team that had 48 as a Tie no?",
    "question_th": "ทีมเยือนทีมไหนที่สกอร์ 48 เสมอกัน?",
    "context": "CREATE TABLE table_name_46 (away_team VARCHAR, tie_no VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_47 WHERE tie_no = \"19\"",
    "question_en": "What's the score during a game than had a tie no of 19?",
    "question_th": "คะแนนระหว่างเกมเป็นเท่าใดมากกว่าการเสมอกันที่ 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_en": "How many people attended the game of a.f.c. totton?",
    "question_th": "มีคนเข้าร่วมเกมของเอเอฟซี ทอตตันกี่คน?",
    "context": "CREATE TABLE table_name_47 (attendance VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_88 WHERE tie_no = \"30\"",
    "question_en": "How many people attended the game with a Tie no of 30?",
    "question_th": "มีกี่คนที่เข้าร่วมเกมโดยเสมอกันที่ 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_en": "What was the score of the home team at junction oval?",
    "question_th": "เจ้าบ้านที่จังชั่นโอวัลได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_19 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_54 WHERE venue = \"glenferrie oval\"",
    "question_en": "Which away team is based at glenferrie oval?",
    "question_th": "ทีมเยือนทีมใดประจำอยู่ที่ 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_en": "What is the date the new york giants were the visiting team and the Final Score was 37-34?",
    "question_th": "ยักษ์ใหญ่นิวยอร์กเป็นทีมเยือนวันที่เท่าไหร่และสกอร์สุดท้ายอยู่ที่ 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_en": "What was the visiting team on october 23?",
    "question_th": "ทีมเยือนวันที่ 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_en": "What team was the host on september 11?",
    "question_th": "วันที่ 11 กันยายน 2561 ทีมไหนเป็นเจ้าภาพ?",
    "context": "CREATE TABLE table_name_37 (host_team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT stadium FROM table_name_65 WHERE date = \"november 20\"",
    "question_en": "What stadium was the game played in on november 20?",
    "question_th": "เกมดังกล่าวเล่นในสนามใดในวันที่ 20 พฤศจิกายน?",
    "context": "CREATE TABLE table_name_65 (stadium VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_35 WHERE final_score = \"17-34\"",
    "question_en": "What date was the final Score of 17-34?",
    "question_th": "คะแนนสุดท้าย 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_en": "What stadium was the game held in when the final score was 17-31?",
    "question_th": "สนามใดที่จัดขึ้นในตอนที่คะแนนสุดท้ายคือ 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_en": "When the home team was geelong, what did the away team score?",
    "question_th": "เมื่อเจ้าบ้านเป็นจีลอง ทีมเยือนได้คะแนนเท่าไหร่?",
    "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_en": "Which Suburb was First Settled as a Suburb in 1962?",
    "question_th": "ชานเมืองใดที่ได้รับการตั้งถิ่นฐานเป็นชานเมืองครั้งแรกในปี 2505",
    "context": "CREATE TABLE table_name_54 (suburb VARCHAR, date_first_settled_as_a_suburb VARCHAR)"
  },
  {
    "answer": "SELECT AVG(area__km²_) FROM table_name_10 WHERE density___km²_ = 263",
    "question_en": "What's the Area with a Density of 263?",
    "question_th": "พื้นที่ที่มีความหนาแน่น 263 คืออะไร?",
    "context": "CREATE TABLE table_name_10 (area__km²_ INTEGER, density___km²_ VARCHAR)"
  },
  {
    "answer": "SELECT MAX(area__km²_) FROM table_name_17 WHERE mean_household_size__in_2006_ = \"3.1 persons\"",
    "question_en": "What is the highest Area that has a Mean Household Size of 3.1 persons?",
    "question_th": "พื้นที่สูงสุดที่มีขนาดครัวเรือนเฉลี่ย 3.1 คนคือพื้นที่ใด",
    "context": "CREATE TABLE table_name_17 (area__km²_ 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_en": "Which game site Kickoff [a] of 1:00, and an Attendance of 63,251?",
    "question_th": "เว็บไซต์เกมใดที่แจ้งกำหนดการ [a] เวลา 1:00 น. และผู้เข้าร่วม 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_en": "Which date has a Kickoff [a] of 4:00, and an Opponent of detroit lions?",
    "question_th": "วันใดที่มี Kickoff [a] เวลา 4:00 น. และฝ่ายตรงข้ามของ 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_en": "What is the attendance in week 15?",
    "question_th": "การเข้าร่วมในสัปดาห์ที่ 15 คืออะไร?",
    "context": "CREATE TABLE table_name_25 (attendance VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT MIN(laps) FROM table_name_32 WHERE driver = \"nick heidfeld\"",
    "question_en": "What is the lowest number of laps obtained by driver Nick Heidfeld?",
    "question_th": "จำนวนรอบต่ำสุดที่นักแข่ง 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_en": "What is the percent yes of Alberta, which had a percent no larger than 60.2?",
    "question_th": "เปอร์เซ็นต์ใช่ของอัลเบอร์ตา ซึ่งมีเปอร์เซ็นต์ไม่เกิน 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_en": "What is the total number of yes votes in Newfoundland, which had less than 77,881 vote no?",
    "question_th": "จำนวนการโหวตใช่ทั้งหมดในนิวฟันด์แลนด์ ซึ่งมีผู้โหวตน้อยกว่า 77,881 เสียงเป็นเท่าใด",
    "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_en": "What is the highest percent of yes Alberta, which had less than 60.2 vote no, has?",
    "question_th": "เปอร์เซ็นต์สูงสุดของใช่อัลเบอร์ตาซึ่งมีคะแนนเสียงน้อยกว่า 60.2 ไม่มีคืออะไร?",
    "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_en": "What team was the away team when Footscray was the home team?",
    "question_th": "ทีมไหนเป็นทีมเยือน ตอนฟุตสเครย์เป็นทีมเหย้า?",
    "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_en": "What was the size of the crowd when North Melbourne was the home team?",
    "question_th": "เมื่อนอร์ธ เมลเบิร์นเป็นเจ้าบ้านจะมีฝูงชนขนาดไหน?",
    "context": "CREATE TABLE table_name_64 (crowd VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(crowd) FROM table_name_67 WHERE away_team = \"collingwood\"",
    "question_en": "What was the largest crowd when Collingwood was the away team?",
    "question_th": "คนดูเยอะที่สุดเมื่อคอลลิงวูดเป็นทีมเยือน?",
    "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_en": "What year is the result 6th in munich, west germany?",
    "question_th": "ผลการแข่งขันอันดับที่ 6 ปีไหนที่เมืองมิวนิก เยอรมนีตะวันตก?",
    "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_en": "What year is the event in athens, greece?",
    "question_th": "งานที่เอเธนส์ ประเทศกรีซ จัดขึ้นปีไหน?",
    "context": "CREATE TABLE table_name_19 (year INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT SUM(year) FROM table_name_17 WHERE venue = \"budapest, hungary\"",
    "question_en": "What year is the venue in budapest, hungary?",
    "question_th": "ที่เมืองบูดาเปสต์ ประเทศฮังการี ปีไหนครับ?",
    "context": "CREATE TABLE table_name_17 (year INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_61 WHERE year = 1971",
    "question_en": "What tournament is in 1971?",
    "question_th": "การแข่งขันอะไรในปี 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_en": "What is the extra result associated with 6th place in 1972?",
    "question_th": "ผลลัพธ์พิเศษที่เกี่ยวข้องกับอันดับที่ 6 ในปี 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_en": "When did Collingwood play?",
    "question_th": "คอลลิงวูดลงเล่นเมื่อไหร่?",
    "context": "CREATE TABLE table_name_36 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT SUM(crowd) FROM table_name_88 WHERE venue = \"junction oval\"",
    "question_en": "How many were in the crowd when there was a game at Junction Oval?",
    "question_th": "มีกี่คนที่อยู่ในฝูงชนเมื่อมีเกมที่ Junction Oval?",
    "context": "CREATE TABLE table_name_88 (crowd INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_17 WHERE score = \"1–0\" AND result = \"3–0\"",
    "question_en": "What is the Competition with a Score of 1–0, and a Result with 3–0?",
    "question_th": "การแข่งขันที่มีสกอร์ 1–0 และผลการแข่งขัน 3–0 คืออะไร?",
    "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_en": "What is the Result with a Date with 22 january 2008?",
    "question_th": "ผลลัพธ์ของวันที่ 22 มกราคม 2551 คืออะไร",
    "context": "CREATE TABLE table_name_43 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT decision FROM table_name_56 WHERE visitor = \"canadiens\"",
    "question_en": "What was the decision of the Lightning game when the Canadiens were the away team?",
    "question_th": "การตัดสินใจของเกมไลท์นิ่งเมื่อชาวแคนาดาเป็นทีมเยือนเป็นอย่างไร?",
    "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–27–6\"",
    "question_en": "What was the date of the 24–27–6 Lightning home game against Tampa Bay that had a decision of Ramo?",
    "question_th": "วันที่ของเกมเหย้าสายฟ้า 24–27–6 กับแทมปาเบย์ที่ราโมตัดสินคือวันที่ใด",
    "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_en": "What week was October 29, 2000?",
    "question_th": "วันที่ 29 ตุลาคม พ.ศ. 2543 คือสัปดาห์ใด",
    "context": "CREATE TABLE table_name_2 (week VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_36 WHERE date = \"december 10, 2000\"",
    "question_en": "Who was the opponent on December 10, 2000?",
    "question_th": "คู่ต่อสู้ในวันที่ 10 ธันวาคม พ.ศ. 2543 คือใคร?",
    "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_en": "Who was the opponent on the game with a 65,569 attendance before week 12?",
    "question_th": "คู่ต่อสู้ในเกมคือใครโดยมีผู้เข้าร่วม 65,569 คนก่อนสัปดาห์ที่ 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_en": "What week was September 24, 2000 on?",
    "question_th": "วันที่ 24 กันยายน พ.ศ. 2543 เป็นสัปดาห์ใด",
    "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_en": "What is the engine configuration & notes 0-100km/h with a model with 2.3 t5?",
    "question_th": "การกำหนดค่าเครื่องยนต์คืออะไร & หมายเหตุ 0-100 กม./ชม. สำหรับรุ่น 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_en": "What is the engine configuration & notes 0-100km/h with an engine type with b5252 fs?",
    "question_th": "การกำหนดค่าเครื่องยนต์คืออะไร & หมายเหตุ 0-100 กม./ชม. สำหรับประเภทเครื่องยนต์ที่มี 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_en": "What is the model with a engine type with b5244 s2?",
    "question_th": "เครื่องยนต์กับ 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_en": "What is the engine type with a model with base 2.4?",
    "question_th": "รุ่นที่มีฐาน 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_en": "What is the composition of the coin that was issued after 2008, had a mintage larger than 999, and was designed by Jody Broomfield?",
    "question_th": "องค์ประกอบของเหรียญที่ออกหลังปี 2008 มีปริมาณผลิตมากกว่า 999 เหรียญ และออกแบบโดย 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_en": "What is the theme of the coin from before 2006?",
    "question_th": "รูปแบบของเหรียญก่อนปี 2549 คืออะไร?",
    "context": "CREATE TABLE table_name_91 (theme VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT tyre FROM table_name_27 WHERE race = \"german grand prix\"",
    "question_en": "What was the Tyre for the German Grand Prix?",
    "question_th": "ยางสำหรับ 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_en": "Who had Pole position for the French Grand Prix?",
    "question_th": "ใครมีตำแหน่งโพลสำหรับ 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_en": "What was the fastest lap in a race where Phil Hill had the Pole position and was won by Wolfgang von Trips?",
    "question_th": "รอบที่เร็วที่สุดในการแข่งขันที่ Phil Hill ครองตำแหน่งโพลและชนะโดย 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_en": "What is the lowest nuber of games drawn in the total column?",
    "question_th": "จำนวนเกมที่ออกมาน้อยที่สุดในคอลัมน์รวมคือเท่าใด?",
    "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_en": "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?",
    "question_th": "จำนวนเกมที่แพ้น้อยที่สุดโดยเสมอน้อยกว่า 1 เกม เปอร์เซ็นต์การชนะ 50% เมื่อเทียบกับเนเธอร์แลนด์ และเล่นมากกว่า 2 เกมคือเท่าใด",
    "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_en": "What was the venue when the home team was Essendon?",
    "question_th": "เมื่อเจ้าบ้านเป็น เอสเซนดอน สนามไหน?",
    "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_en": "Which biggest interview score had an evening gown stat of 9.286?",
    "question_th": "คะแนนสัมภาษณ์สูงสุดใดที่มีสถิติชุดราตรีอยู่ที่ 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_en": "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?",
    "question_th": "ค่าเฉลี่ยของจำนวนผู้สัมภาษณ์มีค่าเฉลี่ยมากกว่า 9.233 คะแนน สถิติชุดว่ายน้ำมากกว่า 9.473 คะแนน และคะแนนชุดราตรีมากกว่า 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_en": "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?",
    "question_th": "คะแนนชุดราตรีน้อยที่สุดคือคะแนนสัมภาษณ์มากกว่า 9.164 สถิติชุดว่ายน้ำน้อยกว่า 9.35 และค่าเฉลี่ยน้อยกว่า 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_en": "Which is the largest average number when the swimsuit is 9.4 and the evening gown stat is less than 9.486?",
    "question_th": "ค่าเฉลี่ยใดมากที่สุดเมื่อชุดว่ายน้ำคือ 9.4 และสถิติชุดราตรีน้อยกว่า 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_en": "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?",
    "question_th": "คะแนนสอบสัมภาษณ์ที่ได้คะแนนชุดราตรี 9.543 และค่าเฉลี่ยที่มากกว่า 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_en": "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?",
    "question_th": "คะแนนเฉลี่ยเฉลี่ยเมื่อคะแนนชุดราตรีมากกว่า 9.35 รัฐคือเซาท์แคโรไลนา และคะแนนชุดว่ายน้ำมากกว่า 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_en": "What is the total draw count with 52 goals and less than 15 losses?",
    "question_th": "ผลเสมอรวม 52 ประตู แพ้น้อยกว่า 15 คือเท่าไร?",
    "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_en": "What is the top losses that with Club of cd toledo and Points more than 56?",
    "question_th": "อะไรคือความสูญเสียสูงสุดที่มี Club of cd toledo และคะแนนมากกว่า 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_en": "What is the low win count with more than 72 goals?",
    "question_th": "จำนวนชัยชนะต่ำที่มากกว่า 72 ประตูคือเท่าไร?",
    "context": "CREATE TABLE table_name_1 (wins INTEGER, goals_for INTEGER)"
  },
  {
    "answer": "SELECT total__kg_ FROM table_name_86 WHERE snatch = 132.5",
    "question_en": "What's the Total (kg) of a Snatch of 132.5?",
    "question_th": "ลูกฉก 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_en": "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?",
    "question_th": "นักกีฬาที่มี Snatch ใหญ่กว่า 140 น้ำหนักตัวน้อยกว่า 84.55 และ Clean and Jerk อยู่ที่ 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_en": "When was the result 3-1?",
    "question_th": "ผลสกอร์ 3-1 เกิดขึ้นเมื่อไร?",
    "context": "CREATE TABLE table_name_22 (date VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_44 WHERE result = \"1-0\"",
    "question_en": "Which competition had a result of 1-0?",
    "question_th": "การแข่งขันรายการใดมีผล 1-0?",
    "context": "CREATE TABLE table_name_44 (competition VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_62 WHERE away_team = \"richmond\"",
    "question_en": "At what venue was richmond the away team?",
    "question_th": "ริชมอนด์เป็นทีมเยือนที่สนามไหน?",
    "context": "CREATE TABLE table_name_62 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_32 WHERE away_team = \"south melbourne\"",
    "question_en": "What venue had an away team of south melbourne?",
    "question_th": "สนามไหนมีทีมเยือนเมลเบิร์นใต้?",
    "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_en": "What was fitzroy's score at home?",
    "question_th": "ฟิตซ์รอยในบ้านได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_27 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_82 WHERE away_team = \"south melbourne\"",
    "question_en": "What day did South Melbourne play as the away team?",
    "question_th": "เซ้าท์ เมลเบิร์น ลงเล่นเป็นทีมเยือนวันไหน?",
    "context": "CREATE TABLE table_name_82 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT AVG(crowd) FROM table_name_54 WHERE away_team = \"hawthorn\"",
    "question_en": "What was the attendance when Hawthorn played as the away team?",
    "question_th": "การมีส่วนร่วมเมื่อฮอว์ธอร์นเล่นเป็นทีมเยือน?",
    "context": "CREATE TABLE table_name_54 (crowd INTEGER, away_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_79 WHERE home_team = \"carlton\"",
    "question_en": "Who was Carlton's away team opponent?",
    "question_th": "คู่ต่อสู้ทีมเยือนของคาร์ลตันคือใคร?",
    "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_en": "IN EVENTS 1995 STOH, WHO WAS THE THIRD WITH SKIP SANDRA PETERSON AND SECOND JOAN MCCUSKER?",
    "question_th": "ในเหตุการณ์ปี 1995 STOH ใครคือคนที่สามที่ข้าม SANDARA PETERSON และ 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_en": "What club was derrick byfuglien drafted by before 283?",
    "question_th": "สโมสรใดที่ปั้นจั่นโดย Fuglien ร่างโดยก่อนปี 283?",
    "context": "CREATE TABLE table_name_96 (club_team VARCHAR, overall VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_22 WHERE result = \"3–0\" AND competition = \"2006 fifa world cup qualifier\" AND score = \"3–0\"",
    "question_en": "What is the Venue with a Result of 3–0, and a Competition with 2006 fifa world cup qualifier, and with a Score of 3–0?",
    "question_th": "สถานที่ซึ่งผลการแข่งขันเป็น 3–0 และการแข่งขันฟุตบอลโลกรอบคัดเลือกปี 2549 และมีสกอร์ 3–0 คืออะไร?",
    "context": "CREATE TABLE table_name_22 (venue VARCHAR, score VARCHAR, result VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_99 WHERE result = \"8–2\" AND score = \"6–2\"",
    "question_en": "What is the Date with a Result of 8–2, and a Score with 6–2?",
    "question_th": "วันที่มีผล 8–2 และคะแนน 6–2 คืออะไร?",
    "context": "CREATE TABLE table_name_99 (date VARCHAR, result VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_35 WHERE score = \"1–0\" AND date = \"18 april 2009\"",
    "question_en": "What is the Result with a Score of 1–0, and a Date with 18 april 2009?",
    "question_th": "ผลลัพธ์ที่มีคะแนน 1–0 และวันที่ 18 เมษายน 2552 คืออะไร",
    "context": "CREATE TABLE table_name_35 (result VARCHAR, score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_64 WHERE result = \"10–0\" AND score = \"3–0\"",
    "question_en": "What is the Venue with a Result of 10–0, and a Score with 3–0?",
    "question_th": "สถานที่ใดที่มีผลการแข่งขัน 10–0 และคะแนน 3–0 คืออะไร",
    "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_en": "What is the Competition with a Date with 6 december 2011?",
    "question_th": "การแข่งขันกับวันที่ 6 ธันวาคม 2554 คืออะไร?",
    "context": "CREATE TABLE table_name_72 (competition VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_4 WHERE date = \"4 september 2013\"",
    "question_en": "What is the Result with a Date with 4 september 2013?",
    "question_th": "ผลลัพธ์ของวันที่ 4 กันยายน 2013 คืออะไร",
    "context": "CREATE TABLE table_name_4 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_63 WHERE crowd > 23 OFFSET 000",
    "question_en": "When was there a crowd larger than 23,000?",
    "question_th": "เมื่อมีฝูงชนมากกว่า 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_en": "How much was the score of the home team at windy hill?",
    "question_th": "สกอร์ของเจ้าบ้านที่วินดี้ ฮิลล์เท่าไหร่?",
    "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_en": "What was the score of the team that played against Fitzroy in their home game?",
    "question_th": "ทีมที่เล่นกับฟิตซ์รอยในเกมเหย้ามีคะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_17 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT stories FROM table_name_43 WHERE rank = \"14\"",
    "question_en": "Which stories have a rank of 14?",
    "question_th": "เรื่องไหนมีอันดับ 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_en": "How many stories were done in 2008 with a 16 rank?",
    "question_th": "ในปี 2551 อันดับที่ 16 มีเรื่องราวเกิดขึ้นกี่เรื่อง?",
    "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_en": "Name the average stories done after 2003 with a 16 rank",
    "question_th": "ตั้งชื่อเรื่องราวโดยเฉลี่ยที่ทำหลังปี 2546 ด้วยอันดับที่ 16",
    "context": "CREATE TABLE table_name_30 (stories INTEGER, completed VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(stories) FROM table_name_29 WHERE rank = \"16\"",
    "question_en": "Name the total number of stories that had a 16 rank",
    "question_th": "บอกจำนวนเรื่องทั้งหมดที่มีอันดับ 16",
    "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_en": "I want the sum of stories for guadalajara done after 2007",
    "question_th": "ฉันอยากให้เรื่องราวรวมของกวาดาลาฮาราเสร็จหลังปี 2550",
    "context": "CREATE TABLE table_name_87 (stories INTEGER, city VARCHAR, completed VARCHAR)"
  },
  {
    "answer": "SELECT state FROM table_name_99 WHERE council_votes < 4",
    "question_en": "Which country has less than 4 votes?",
    "question_th": "ประเทศใดมีคะแนนเสียงน้อยกว่า 4 เสียง?",
    "context": "CREATE TABLE table_name_99 (state VARCHAR, council_votes INTEGER)"
  },
  {
    "answer": "SELECT time_retired FROM table_name_74 WHERE grid = \"22\"",
    "question_en": "What was the time of the driver who had a grid of 22?",
    "question_th": "คนขับที่มีตาราง 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_en": "What is the construction of Olivier Panis' car that retired due to a collision?",
    "question_th": "อะไรคือการก่อสร้างรถของ Olivier Panis ที่เลิกผลิตเนื่องจากการชนกัน?",
    "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_en": "Which driver retired from a collision after 41 laps?",
    "question_th": "นักแข่งคนไหนที่ถอนตัวจากการชนหลังจากผ่านไป 41 รอบ?",
    "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_en": "Who retired at lap 77 and was grid 11?",
    "question_th": "ใครเกษียณที่รอบ 77 และเป็นกริด 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_en": "How many grid numbers had a lap number bigger than 54?",
    "question_th": "มีหมายเลขกริดกี่หมายเลขที่มีหมายเลขรอบมากกว่า 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_en": "Who is the outgoing manager when the date of vacancy is 13 october 2008?",
    "question_th": "ใครคือผู้จัดการที่จะลาออกเมื่อตำแหน่งว่างคือวันที่ 13 ตุลาคม 2551?",
    "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_en": "Which Constructor has a Grid larger than 8, and a Time/Retired of +1:17.124?",
    "question_th": "Constructor ตัวใดที่มี Grid ใหญ่กว่า 8 และเวลา/เกษียณที่ +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_en": "which year has the toyota tf102 chassis?",
    "question_th": "แชสซี toyota tf102 ปีไหนครับ?",
    "context": "CREATE TABLE table_name_1 (year VARCHAR, chassis VARCHAR)"
  },
  {
    "answer": "SELECT engine FROM table_name_68 WHERE year < 1996 AND points = 5",
    "question_en": "what was the engine used before 1996 with 5 points?",
    "question_th": "ก่อนปี 1996 มี 5 คะแนน ใช้เครื่องยนต์อะไร?",
    "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_en": "What number of years did the red bull sauber petronas have greater than 6 points?",
    "question_th": "กระทิงแดง sauber petronas มีคะแนนมากกว่า 6 กี่ปี?",
    "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_en": "What are the notes for a Type of 0-6-0t?",
    "question_th": "หมายเหตุสำหรับประเภท 0-6-0t คืออะไร?",
    "context": "CREATE TABLE table_name_37 (notes VARCHAR, type VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_name_98 WHERE built = \"1917\"",
    "question_en": "What is the notes for the vehicle built in 1917?",
    "question_th": "หมายเหตุสำหรับยานพาหนะที่สร้างขึ้นในปี 1917 คืออะไร?",
    "context": "CREATE TABLE table_name_98 (notes VARCHAR, built VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_24 WHERE away_team = \"hawthorn\"",
    "question_en": "Who was the Away team at Hawthorn?",
    "question_th": "ทีมเยือนที่ฮอว์ธอร์นคือใคร?",
    "context": "CREATE TABLE table_name_24 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_name_65 WHERE format = \"vinyl record\"",
    "question_en": "What region has vinyl record listed as its format?",
    "question_th": "ภูมิภาคใดที่มีแผ่นเสียงแสดงเป็นรูปแบบของมัน",
    "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_en": "What label is formatted as compact disc and has United Kingdom as its region?",
    "question_th": "ป้ายใดจัดรูปแบบเป็นคอมแพคดิสก์และมีสหราชอาณาจักรเป็นภูมิภาค",
    "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_en": "What format has United Kingdom as its region and is catalogued as 201457 9?",
    "question_th": "สหราชอาณาจักรเป็นภูมิภาคในรูปแบบใดและจัดอยู่ในรายการเป็น 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_en": "What is the school/country of the player with 337 assists?",
    "question_th": "โรงเรียน/ประเทศของผู้เล่นที่มี 337 แอสซิสต์คืออะไร?",
    "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_en": "What is the position of the player with more than 11 assists and 219 rebounds?",
    "question_th": "นักเตะตำแหน่งไหนที่ทำได้มากกว่า 11 แอสซิสต์ และ 219 รีบาวด์?",
    "context": "CREATE TABLE table_name_85 (pos VARCHAR, asts VARCHAR, rebs VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_73 WHERE away_team = \"geelong\"",
    "question_en": "What day did Geelong play as the away team?",
    "question_th": "จีลองลงเล่นเป็นทีมเยือนวันไหน?",
    "context": "CREATE TABLE table_name_73 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT kickoff_[a_] FROM table_name_66 WHERE record = \"1-7\"",
    "question_en": "When was the kickoff during a game with a record of 1-7?",
    "question_th": "การคิกออฟระหว่างเกมด้วยสถิติ 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_en": "When was the date that week 9 started?",
    "question_th": "สัปดาห์ที่ 9 เริ่มต้นเมื่อใด?",
    "context": "CREATE TABLE table_name_65 (date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_50 WHERE date = \"september 1, 1996\"",
    "question_en": "What was the score on September 1, 1996?",
    "question_th": "คะแนนเมื่อวันที่ 1 กันยายน 2539 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_50 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_75 WHERE player = \"dave lewis\"",
    "question_en": "Which school drafted dave lewis?",
    "question_th": "โรงเรียนไหนร่างเดฟ ลูอิส?",
    "context": "CREATE TABLE table_name_75 (school VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_21 WHERE school = \"alabama\"",
    "question_en": "What position did the school of alabama draft?",
    "question_th": "โรงเรียนอลาบามาร่างตำแหน่งอะไร",
    "context": "CREATE TABLE table_name_21 (position VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT stage FROM table_name_49 WHERE trofeo_fast_team = \"once\"",
    "question_en": "What was the stage of team Once?",
    "question_th": "ทีมวันซ์อยู่ระดับไหน?",
    "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_en": "Which team had a final stage when Claudio Chiappucci had the points?",
    "question_th": "ทีมไหนเข้ารอบสุดท้ายเมื่อเคลาดิโอ คิอาปุชชีมีแต้ม?",
    "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_en": "What stage did team Carrera Jeans-Tassoni have when Mario Cipollini won and Claudio Chiappucci had the points?",
    "question_th": "ทีม Carrera Jeans-Tassoni อยู่ในช่วงใดเมื่อ Mario Cipollini ชนะและ Claudio Chiappucci มีคะแนน",
    "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_en": "I want to know the crowd with a home team of carlton",
    "question_th": "อยากรู้จักจ่าฝูงกับทีมเหย้าของคาร์ลตัน",
    "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_en": "how many population estimate 2005 are for majene?",
    "question_th": "Majene มีประชากรประมาณปี 2548 กี่คน",
    "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_en": "what is the population estimate 2005 for the with the area (km2) 3,034.08?",
    "question_th": "ประชากรประมาณปี 2548 มีพื้นที่ (กม.2) 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_en": "how many times was the population estimate 2005 have an area (km2) more than 8,023.74?",
    "question_th": "ประชากรประมาณปี 2548 มีพื้นที่ (กม.2) มากกว่า 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_en": "Name the score for pacers visitor on 14 april 2008",
    "question_th": "ตั้งชื่อคะแนนของผู้เยี่ยมชม Pacers เมื่อวันที่ 14 เมษายน 2551",
    "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_en": "What was the home team when geelong was the away team?",
    "question_th": "เมื่อกีลองเป็นทีมเยือนทีมเจ้าบ้านคืออะไร?",
    "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_en": "What stadium hosted the game that had a final score of 9-14?",
    "question_th": "สนามใดเป็นเจ้าภาพการแข่งขันซึ่งมีสกอร์สุดท้าย 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_en": "Who was the visiting team at Lincoln Financial Field when the final score was 24-14?",
    "question_th": "ใครคือทีมเยือนที่ลินคอล์น ไฟแนนเชียล ฟิลด์ เมื่อสกอร์สุดท้ายคือ 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_en": "Who was the vistiting team in the game with the final score of 7-13?",
    "question_th": "ใครคือทีมเยือนในเกมที่มีสกอร์สุดท้าย 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_en": "Who was the host team on December 19?",
    "question_th": "ทีมเจ้าภาพวันที่ 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_en": "Where was the game on September 12 played when the Dallas Cowboys was the visiting team?",
    "question_th": "เกมวันที่ 12 กันยายน ลงเล่นที่ไหนเมื่อ ดัลลาส คาวบอยส์ เป็นทีมเยือน?",
    "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_en": "Who was the host team at Louisiana Superdome when the final score was 10-20?",
    "question_th": "ทีมเจ้าบ้านที่ Louisiana Superdome คือใครเมื่อสกอร์สุดท้ายคือ 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_en": "What is the result for the best orchestrations category?",
    "question_th": "ผลลัพธ์สำหรับหมวดหมู่การเรียบเรียงดนตรีที่ดีที่สุดคืออะไร?",
    "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 我師傅係黃飛鴻\"",
    "question_en": "What genre has over 20 episodes, with an English title (Chinese title) of wong fei hung - master of kung fu 我師傅係黃飛鴻?",
    "question_th": "ประเภทใดที่มีมากกว่า 20 ตอน โดยมีชื่อภาษาอังกฤษ (ชื่อภาษาจีน) ของ Wong Fei Hung - Master of Kung Fu 我師傅係黃飛鴻",
    "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_en": "which CFL team has a player called Peter Hogarth?",
    "question_th": "ทีม CFL ไหนมีผู้เล่นชื่อ ปีเตอร์ โฮการ์ธ?",
    "context": "CREATE TABLE table_name_23 (cfl_team VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_88 WHERE player = \"riley clayton\"",
    "question_en": "which college has a player called Riley Clayton?",
    "question_th": "วิทยาลัยไหนมีผู้เล่นชื่อไรลีย์ เคลย์ตัน",
    "context": "CREATE TABLE table_name_88 (college VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT album FROM table_name_27 WHERE year = \"june 1998\"",
    "question_en": "Which album was on June 1998?",
    "question_th": "อัลบั้มใดอยู่ในเดือนมิถุนายน พ.ศ. 2541?",
    "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_en": "Which album has a label and cat# full moon/warner 28628?",
    "question_th": "อัลบั้มไหนมีป้ายและแมว#พระจันทร์เต็มดวง/วอร์เนอร์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_en": "What is the US AC of the label and cat# reprise 19466?",
    "question_th": "AC ของสหรัฐอเมริกาของป้ายกำกับและ 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_en": "Which Rec has Jerel Myers as the Player?",
    "question_th": "Rec คนไหนมี Jerel Myers เป็นผู้เล่น?",
    "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_en": "What is Away team Carlton's score?",
    "question_th": "คะแนนของทีมเยือน คาร์ลตัน คืออะไร?",
    "context": "CREATE TABLE table_name_59 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team AS score FROM table_name_52 WHERE home_team = \"footscray\"",
    "question_en": "What was Home team Footscray's score?",
    "question_th": "คะแนนของเจ้าบ้าน ฟุตสเครย์ เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_52 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT mahu FROM table_name_80 WHERE pergi = \"pi\"",
    "question_en": "What is Mahu when pergi is pi?",
    "question_th": "Mahu คืออะไรเมื่อ pergi เป็น 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_en": "what is -kah (atau tidak when basikal is basikal and language dialect is malay language (informal)?",
    "question_th": "-kah คืออะไร (atau tidak เมื่อ basikal เป็น basikal และภาษาถิ่นคือภาษามลายู (ไม่เป็นทางการ))",
    "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_en": "what is the language/dialect when basikal is sepeda and boleh is bulih?",
    "question_th": "ภาษา/ภาษาถิ่นคืออะไรเมื่อ basikal คือ sepeda และ boleh คือ 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_en": "what is basikal when mana is mano, pergi is gi and Ikut  is turuk?",
    "question_th": "พื้นฐานคืออะไร เมื่อมานาคือมาโน เปอร์กีคือกี และอิคุตคือตุรุก",
    "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_en": "On what date was the match against the St. George Illawarra Dragons?",
    "question_th": "แมตช์กับ 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_en": "What was the margin of the score 52-12?",
    "question_th": "ส่วนต่างของคะแนน 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_en": "Which home team plays at the Western Oval?",
    "question_th": "ทีมเจ้าบ้านใดเล่นที่เวสเทิร์นโอวัล?",
    "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_en": "What was the away score when North Melbourne was played?",
    "question_th": "สกอร์ทีมเยือนเมื่อ นอร์ท เมลเบิร์น เล่นเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_91 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_58 WHERE record = \"73-82\"",
    "question_en": "with a record of 73-82 what was the date?",
    "question_th": "ด้วยสถิติ 73-82 ตรงกับวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_58 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_73 WHERE score = \"7-6\"",
    "question_en": "in game that had a score of 7-6 what was the attendance?",
    "question_th": "ในเกมที่มีสกอร์ 7-6 ผู้เข้าชมเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_73 (attendance VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_44 WHERE record = \"63-76\"",
    "question_en": "with a record of 63-76 what was the attendance?",
    "question_th": "ด้วยสถิติ 63-76 ผู้เข้าร่วมเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_44 (attendance VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_67 WHERE record = \"68-80\"",
    "question_en": "with a record of 68-80 what was the loss?",
    "question_th": "ด้วยสถิติ 68-80 แพ้เท่าไหร่?",
    "context": "CREATE TABLE table_name_67 (loss VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_3 WHERE record = \"66-78\"",
    "question_en": "with a record of 66-78 what was the loss?",
    "question_th": "ด้วยสถิติ 66-78 แพ้อะไร?",
    "context": "CREATE TABLE table_name_3 (loss VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(place) FROM table_name_96 WHERE points = 33",
    "question_en": "How many places have more than 33 points?",
    "question_th": "มีกี่แห่งที่มีมากกว่า 33 คะแนน?",
    "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_en": "What's the sum of draw for artist hari mata hari with less than 70 points?",
    "question_th": "ผลรวมการจับสลากของศิลปิน ฮารี มาตา ฮารี ที่มีคะแนนไม่ถึง 70 คะแนนเป็นเท่าใด",
    "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_en": "What's the sum of points for artist hari mata hari?",
    "question_th": "ศิลปิน ฮารี มาตา ฮารี ผลรวมคะแนนเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_18 (points INTEGER, artist VARCHAR)"
  },
  {
    "answer": "SELECT loser FROM table_name_72 WHERE sport = \"hockey\"",
    "question_en": "What losing team plays hockey?",
    "question_th": "ทีมแพ้ทีมไหนเล่นฮ็อกกี้?",
    "context": "CREATE TABLE table_name_72 (loser VARCHAR, sport VARCHAR)"
  },
  {
    "answer": "SELECT date_s_ FROM table_name_14 WHERE winner = \"virginia commonwealth rams\"",
    "question_en": "What date did Virginia Commonwealth Rams win?",
    "question_th": "Virginia Commonwealth Rams ชนะวันที่เท่าไหร่?",
    "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–june 15, 2004\"",
    "question_en": "What year were the awards given june 6, 2004–june 15, 2004?",
    "question_th": "รางวัลที่มอบให้ในปีใดคือวันที่ 6 มิถุนายน พ.ศ. 2547 ถึง 15 มิถุนายน พ.ศ. 2547",
    "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_en": "What company was the entrant for the race with Jack Fairman as the driver with a chassis of t45?",
    "question_th": "บริษัทใดที่เป็นผู้เข้าแข่งขันโดยมี Jack Fairman เป็นนักแข่งที่มีแชสซีขนาด 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_en": "What chassis was used by roy salvadori?",
    "question_th": "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_en": "Name the 2nd runner-up for july 20, 2007",
    "question_th": "เสนอชื่อรองชนะเลิศอันดับที่ 2 เมื่อวันที่ 20 กรกฎาคม พ.ศ. 2550",
    "context": "CREATE TABLE table_name_91 (premiere_date VARCHAR)"
  },
  {
    "answer": "SELECT 2 AS nd_runner_up FROM table_name_89 WHERE winner = \"yuming lai (賴銘偉)\"",
    "question_en": "Name the 2nd runner-up for yuming lai (賴銘偉)",
    "question_th": "ตั้งชื่อรองชนะเลิศอันดับ 2 หยูหมิงไหล (賴銘偉)",
    "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_en": "Name the 2nd runner-up for season 7",
    "question_th": "ตั้งชื่อรองชนะเลิศอันดับ 2 ของฤดูกาลที่ 7",
    "context": "CREATE TABLE table_name_59 (season_number VARCHAR)"
  },
  {
    "answer": "SELECT runner_up FROM table_name_35 WHERE winner = \"janice yan (閻奕格)\"",
    "question_en": "Name the runner-up for janice yan (閻奕格)",
    "question_th": "ตั้งชื่อรองชนะเลิศ ได้แก่ เจนิส หยาน (閻奕格)",
    "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äkkinen\"",
    "question_en": "Which constructor has a Grid smaller than 18, and a Driver of mika häkkinen?",
    "question_th": "Constructor ตัวใดที่มี Grid เล็กกว่า 18 และ Driver ของ mika häkkinen",
    "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_en": "What is the average Lap of damon hill, with a Grid smaller than 1?",
    "question_th": "รอบเฉลี่ยของเดมอนฮิลล์ โดยที่กริดเล็กกว่า 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_en": "What is the total number of laps with a Driver of eddie irvine?",
    "question_th": "จำนวนรอบรวมของคนขับรถของ 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_en": "Which average games played number has the Ottawa Hockey Club as a team and a number of wins bigger than 5?",
    "question_th": "จำนวนเกมที่เล่นโดยเฉลี่ยใดที่มี Ottawa Hockey Club เป็นทีมและจำนวนชัยชนะมากกว่า 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_en": "What is the mean number of goals against when there were fewer than 8 games played?",
    "question_th": "จำนวนประตูเฉลี่ยต่อเมื่อมีการแข่งขันน้อยกว่า 8 เกมคือเท่าใด?",
    "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_en": "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?",
    "question_th": "ผลรวมของการชนะเมื่อประตูสำหรับหมายเลขมากกว่า 35 ทีมคือ Montreal Hockey Club และจำนวนการแพ้น้อยกว่า 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_en": "What is the outcome of the match when the partner is Nicole Arendt?",
    "question_th": "ผลการแข่งขันจะเป็นอย่างไรเมื่อคู่หูคือ นิโคล อาเรนต์ ?",
    "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_en": "What was the week of the December 9, 1961 game with an attendance larger than 41,268?",
    "question_th": "สัปดาห์ของเกมวันที่ 9 ธันวาคม พ.ศ. 2504 มีผู้เข้าชมมากกว่า 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_en": "None of the communities listed has a percentage smaller than 8.6 in 2006.",
    "question_th": "ไม่มีชุมชนใดในรายการที่มีเปอร์เซ็นต์น้อยกว่า 8.6 ในปี 2549",
    "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_en": "There are communities listed that a percentage larger than 7.6 in 2001, but none of them has 2 seats listed in 2006.",
    "question_th": "มีชุมชนที่ระบุว่ามีเปอร์เซ็นต์มากกว่า 7.6 ในปี 2544 แต่ไม่มีชุมชนใดที่มี 2 ที่นั่งในปี 2549",
    "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_en": "What is the release date of vhs super callanetics?",
    "question_th": "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_en": "What format is after 1991 and has a Catalog Number of 81868?",
    "question_th": "รูปแบบใดหลังจากปี 1991 และมีหมายเลขแค็ตตาล็อก 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_en": "How many years have a Catalog Number of 80429 / bta80429?",
    "question_th": "มีหมายเลขแค็ตตาล็อก 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_en": "When did the score of 2-0 take place?",
    "question_th": "สกอร์ 2-0 เกิดขึ้นเมื่อไหร่?",
    "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_en": "Where the grid is under 19, the time finished was logged as received outside assistance, what's the total number of laps?",
    "question_th": "ในกรณีที่กริดต่ำกว่า 19 ปี เวลาสิ้นสุดถูกบันทึกว่าได้รับการช่วยเหลือจากภายนอก จำนวนรอบทั้งหมดคือเท่าใด",
    "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_en": "Which player has 0 goals, 1 tries, 4 points, and plays in the Prop position?",
    "question_th": "ผู้เล่นคนไหนที่มี 0 ประตู, 1 ครั้ง, 4 แต้ม และเล่นในตำแหน่ง Prop?",
    "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_en": "What is the average number of Tries for Nathan McAvoy?",
    "question_th": "จำนวนการพยายามของ 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_en": "What is the average number of Tries with less than 28 Points for Mike Forshaw?",
    "question_th": "จำนวนการพยายามโดยเฉลี่ยของ Mike Forshaw น้อยกว่า 28 แต้มคือเท่าใด",
    "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_en": "What position did the player from the saskatchewan roughriders (via toronto) play?",
    "question_th": "ผู้เล่นจากทีม Saskatchewan roughriders (ผ่านโตรอนโต) เล่นตำแหน่งใด?",
    "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_en": "What numbered pick was dominic picard, ol, selected?",
    "question_th": "โดมินิค พิการ์ด เลือกหมายเลขอะไร?",
    "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_en": "Name the date which has a home team of north melbourne",
    "question_th": "ตั้งชื่อวันที่ทีมเจ้าบ้าน เมลเบิร์นเหนือ",
    "context": "CREATE TABLE table_name_3 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_17 WHERE home_team = \"fitzroy\"",
    "question_en": "Name the away team for home team of fitzroy",
    "question_th": "ตั้งชื่อทีมเยือนให้ทีมเหย้าฟิตซ์รอย",
    "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_en": "What was the score for the away team that played at Glenferrie Oval?",
    "question_th": "ทีมเยือนที่เล่นที่ 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_en": "When was the attendance at a venue bigger than 35,151?",
    "question_th": "เมื่อใดที่มีผู้เข้าร่วมในสถานที่จัดงานมากกว่า 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_en": "Tell me the total number of Laps for Qual being larger than 142.81 with Grid of 12",
    "question_th": "บอกฉันหน่อยว่าจำนวนรอบทั้งหมดในรอบคัดเลือกนั้นมากกว่า 142.81 โดยมีตารางเป็น 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_en": "Tell me the total number of Qual Laps higher than 93 with a Rank of 32 with Grid less than 32",
    "question_th": "บอกจำนวนรอบคัดเลือกรวมที่สูงกว่า 93 ด้วยอันดับ 32 โดยมีกริดน้อยกว่า 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_en": "Tell me the payload that has an In service for 2011",
    "question_th": "บอกน้ำหนักบรรทุกที่ให้บริการในปี 2554 ให้ฉันหน่อย",
    "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 – 10,000\"",
    "question_en": "Tell me the dimension that has a range of 8,000 – 10,000",
    "question_th": "บอกมิติที่มีช่วง 8,000 – 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_en": "Name the project which has a missle of agni-iii",
    "question_th": "ตั้งชื่อโครงการที่มีขีปนาวุธ 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_en": "Name the payload that has a weight of 12,000",
    "question_th": "ตั้งชื่อเพย์โหลดที่มีน้ำหนัก 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_en": "Name the typ for project of igmdp and weight of 16,000",
    "question_th": "ตั้งชื่อประเภทสำหรับโครงการ igmdp และน้ำหนัก 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_en": "What is the record of the game with Andrew Bogut (21) as the leading scorer?",
    "question_th": "สถิติเกมที่แอนดรูว์ โบกุต (21) เป็นผู้ทำประตูสูงสุดเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_43 (record VARCHAR, leading_scorer VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_5 WHERE date = \"26 february 2008\"",
    "question_en": "Who was the home team of the game on 26 February 2008?",
    "question_th": "ทีมเจ้าบ้านในเกมเมื่อวันที่ 26 กุมภาพันธ์ พ.ศ. 2551 คือใคร?",
    "context": "CREATE TABLE table_name_5 (home VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT leading_scorer FROM table_name_31 WHERE date = \"9 february 2008\"",
    "question_en": "Who is the leading scorer of the game on 9 February 2008?",
    "question_th": "ใครคือผู้ทำประตูสูงสุดของเกมเมื่อวันที่ 9 กุมภาพันธ์ พ.ศ. 2551?",
    "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_en": "Who is the leading scorer of the game on 13 February 2008?",
    "question_th": "ใครคือผู้ทำประตูสูงสุดของเกมเมื่อวันที่ 13 กุมภาพันธ์ พ.ศ. 2551?",
    "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_en": "Who is the visitor team of the game with Andrew Bogut (21) as the leading scorer?",
    "question_th": "ทีมเยือนของเกมคือใคร โดยมี แอนดรูว์ โบกุต (21) เป็นผู้ทำประตูนำ?",
    "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_en": "What is the lowest number of events a tournament with more tha 5 cuts and less than 13 top-25 has?",
    "question_th": "อะไรคือจำนวนเหตุการณ์ต่ำสุดในทัวร์นาเมนต์ที่มีการตัดมากกว่า 5 ครั้งและมีผู้ติดอันดับ 25 อันดับแรกน้อยกว่า 13 ราย?",
    "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_en": "What is the highest top-10 a tournament with 16 cuts and less than 13 top-25 has?",
    "question_th": "อะไรคือ 10 อันดับแรกสูงสุดของทัวร์นาเมนต์ที่มีการตัด 16 ครั้งและน้อยกว่า 13 อันดับแรกที่มี 25 อันดับแรก?",
    "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_en": "What is the top-25 of the U.S. open, which has less than 7 events?",
    "question_th": "อะไรคือ 25 อันดับแรกของ US open ซึ่งมีน้อยกว่า 7 รายการ?",
    "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_en": "How many events does the tournament with a top-10 of 2 and more than 5 cuts have?",
    "question_th": "ทัวร์นาเมนต์ที่มี 10 อันดับแรกจาก 2 และตัดมากกว่า 5 รายการมีกี่เหตุการณ์?",
    "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_en": "What Pick number is Rich Burtness?",
    "question_th": "หมายเลขที่เลือกคืออะไร Rich Burtness?",
    "context": "CREATE TABLE table_name_26 (pick INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_77 WHERE school = \"kentucky state\"",
    "question_en": "What position is Kentucky State sitting in?",
    "question_th": "รัฐเคนตักกี้นั่งอยู่ในตำแหน่งใด?",
    "context": "CREATE TABLE table_name_77 (position VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT density__hab__km²__ FROM table_name_61 WHERE altitude_m = \"1300\"",
    "question_en": "What is the density (hab/ km²) when the altitude m is 1300?",
    "question_th": "ความหนาแน่น (hab/ km²) เมื่อระดับความสูง m อยู่ที่ 1300 จะเป็นเท่าใด",
    "context": "CREATE TABLE table_name_61 (density__hab__km²__ VARCHAR, altitude_m VARCHAR)"
  },
  {
    "answer": "SELECT distance_medellín_downtown___km__ FROM table_name_86 WHERE municipalities = \"envigado\"",
    "question_en": "What is the Distance Medellín Downtown (km) when the municipalities Envigado?",
    "question_th": "ระยะทางMedellín Downtown (กม.) คืออะไรเมื่อเทศบาล Envigado?",
    "context": "CREATE TABLE table_name_86 (distance_medellín_downtown___km__ VARCHAR, municipalities VARCHAR)"
  },
  {
    "answer": "SELECT density__hab__km²__ FROM table_name_22 WHERE extension_km² = \"380,64\"",
    "question_en": "What is the density (hab/ km²) when the extension km² is 380,64?",
    "question_th": "ความหนาแน่น (hab/ km²) เป็นเท่าใดเมื่อส่วนขยาย km² คือ 380,64",
    "context": "CREATE TABLE table_name_22 (density__hab__km²__ VARCHAR, extension_km² VARCHAR)"
  },
  {
    "answer": "SELECT population__hab_ FROM table_name_10 WHERE distance_medellín_downtown___km__ = \"* dane\"",
    "question_en": "What is the population (hab) when the distance medellin downtown (km) is * dane?",
    "question_th": "ประชากร (hab) คือเท่าใดเมื่อระยะทางในตัวเมืองเมเดยิน (กม.) คือ * เดนมาร์ก",
    "context": "CREATE TABLE table_name_10 (population__hab_ VARCHAR, distance_medellín_downtown___km__ VARCHAR)"
  },
  {
    "answer": "SELECT density__hab__km²__ FROM table_name_53 WHERE population__hab_ = \"58 414*\"",
    "question_en": "What is the Density (hab/ km²) when the population (hab) is 58 414*?",
    "question_th": "ความหนาแน่น (hab/ km²) เป็นเท่าใดเมื่อประชากร (hab) คือ 58 414*",
    "context": "CREATE TABLE table_name_53 (density__hab__km²__ VARCHAR, population__hab_ VARCHAR)"
  },
  {
    "answer": "SELECT altitude_m FROM table_name_10 WHERE distance_medellín_downtown___km__ = \"42\"",
    "question_en": "What is the altitude for the distance medellin downtown (km) is 42?",
    "question_th": "ระดับความสูงสำหรับระยะทาง Medellin ตัวเมือง (กม.) คือ 42 คืออะไร?",
    "context": "CREATE TABLE table_name_10 (altitude_m VARCHAR, distance_medellín_downtown___km__ VARCHAR)"
  },
  {
    "answer": "SELECT MAX(quantity) FROM table_name_49 WHERE sht_nos = \"5\"",
    "question_en": "How many have SHT number 5?",
    "question_th": "มี SHT หมายเลข 5 กี่ตัว?",
    "context": "CREATE TABLE table_name_49 (quantity INTEGER, sht_nos VARCHAR)"
  },
  {
    "answer": "SELECT gwr_nos FROM table_name_56 WHERE quantity = 4",
    "question_en": "What GWR is associated with 4?",
    "question_th": "GWR ใดที่เกี่ยวข้องกับ 4",
    "context": "CREATE TABLE table_name_56 (gwr_nos VARCHAR, quantity VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_50 WHERE date = \"march 11\"",
    "question_en": "What was the score on march 11?",
    "question_th": "คะแนนวันที่ 11 มีนาคมเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_50 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_79 WHERE position = \"c\"",
    "question_en": "What is the nationality of the C?",
    "question_th": "คนซีมีสัญชาติอะไร?",
    "context": "CREATE TABLE table_name_79 (nationality VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_82 WHERE college = \"santa clara\"",
    "question_en": "What team has a player from Santa Clara?",
    "question_th": "นักเตะซานตาคลารามีทีมไหน?",
    "context": "CREATE TABLE table_name_82 (team VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_27 WHERE college = \"minnesota\"",
    "question_en": "What round did the College of Minnesota pick?",
    "question_th": "วิทยาลัยมินนิโซตาเลือกรอบใด",
    "context": "CREATE TABLE table_name_27 (round VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_27 WHERE pick = \"2\"",
    "question_en": "What team had Pick 2?",
    "question_th": "ทีมไหนมี Pick 2?",
    "context": "CREATE TABLE table_name_27 (team VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_6 WHERE college = \"cincinnati\"",
    "question_en": "What nationality is the player from the College of Cincinnati?",
    "question_th": "ผู้เล่นจาก 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_en": "Which player went to the college of Western Washington?",
    "question_th": "ผู้เล่นคนไหนไปเรียนที่วิทยาลัย 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_en": "How much money did the player ranked above 3 with under 28 events earn?",
    "question_th": "ผู้เล่นอันดับ 3 ขึ้นไปและต่ำกว่า 28 รายการได้รับเงินเท่าไร?",
    "context": "CREATE TABLE table_name_43 (earnings___ VARCHAR, events VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT MIN(wins) FROM table_name_17 WHERE rank > 4",
    "question_en": "What is the low win total for players ranked below 4?",
    "question_th": "ผลรวมชัยชนะที่ต่ำสำหรับผู้เล่นอันดับต่ำกว่า 4 คือเท่าไร?",
    "context": "CREATE TABLE table_name_17 (wins INTEGER, rank INTEGER)"
  },
  {
    "answer": "SELECT name FROM table_name_28 WHERE percentage = \"0.59%\"",
    "question_en": "Which name has a percentage of 0.59%?",
    "question_th": "ชื่อใดมีเปอร์เซ็นต์ 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_en": "What is the exact number of Total that has a percentage of precisely 12.03%?",
    "question_th": "จำนวนรวมที่แน่นอนที่มีเปอร์เซ็นต์ 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_en": "What was the result on 1990-11-04?",
    "question_th": "ผลลัพธ์ในวันที่ 1990-11-04 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_55 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_34 WHERE week = 3",
    "question_en": "Who was the opponent in week 3?",
    "question_th": "คู่ต่อสู้ในสัปดาห์ที่ 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_en": "Where was the game on 1990-11-18?",
    "question_th": "เกมเมื่อวันที่ 11-11-1990 อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_26 (game_site VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT AVG(laps) FROM table_name_69 WHERE grid = 8",
    "question_en": "What is the average number of laps for grid 8?",
    "question_th": "จำนวนรอบโดยเฉลี่ยสำหรับกริด 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_en": "Who built the car that has a Time/Retired of 1:34:12.912?",
    "question_th": "ใครเป็นผู้สร้างรถที่มี Time/Retired อยู่ที่ 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_en": "What is the rd number where the reg GP is 0 and the pick is 150?",
    "question_th": "หมายเลข rd ที่ reg GP เป็น 0 และตัวเลือกคือ 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_en": "Where Result is nominated and Organization is 54th the television academy drama awards, what is the award?",
    "question_th": "ผลที่ได้รับการเสนอชื่อเข้าชิง และ Organisation อยู่ที่ 54 รางวัลละครโทรทัศน์ รางวัลอะไร?",
    "context": "CREATE TABLE table_name_80 (award VARCHAR, result VARCHAR, organization VARCHAR)"
  },
  {
    "answer": "SELECT organization FROM table_name_82 WHERE work = \"veterinarian dolittle\"",
    "question_en": "Where Work is veterinarian dolittle, what is the Organization?",
    "question_th": "สัตวแพทย์ทำงานที่ไหน dolittle องค์กรคืออะไร?",
    "context": "CREATE TABLE table_name_82 (organization VARCHAR, work VARCHAR)"
  },
  {
    "answer": "SELECT work FROM table_name_19 WHERE award = \"newcomer actress\"",
    "question_en": "Where Award is newcomer actress, what is the work?",
    "question_th": "นางเอกหน้าใหม่ที่ไหนมีผลงานอะไรบ้าง?",
    "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_en": "Where Award is best actress and Work is first kiss, what is the average Year?",
    "question_th": "โดยรางวัลคือนักแสดงนำหญิงยอดเยี่ยม และเวิร์คคือจูบแรก เฉลี่ยปีละเท่าไหร่?",
    "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_en": "What round did the maccabi haifa fc club have?",
    "question_th": "สโมสรมัคคาบี้ ไฮฟา เอฟซี มีรอบไหนบ้าง?",
    "context": "CREATE TABLE table_name_58 (round VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_87 WHERE club = \"maccabi haifa fc\"",
    "question_en": "What competition did the maccabi haifa fc club play?",
    "question_th": "สโมสรมัคคาบี้ ไฮฟา เอฟซี ลงแข่งขันรายการใดบ้าง?",
    "context": "CREATE TABLE table_name_87 (competition VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_57 WHERE date = \"march 5\"",
    "question_en": "What is the record of the game on March 5?",
    "question_th": "สถิติเกมวันที่ 5 มีนาคม เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_57 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_66 WHERE visitor = \"raptors\"",
    "question_en": "What is the home team of the game with the Raptors as the visitor team?",
    "question_th": "เจ้าบ้านในเกมนี้มีแร็พเตอร์ส์เป็นทีมเยือนคือทีมใด?",
    "context": "CREATE TABLE table_name_66 (home VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_91 WHERE venue = \"puskás ferenc stadium , budapest , hungary\" AND score = \"1–0\"",
    "question_en": "What competition was at puskás ferenc stadium , budapest , hungary, and a Score of 1–0?",
    "question_th": "การแข่งขันอะไรคือที่ สนามกีฬาปุสกาสเฟเรนซ์ , บูดาเปสต์ , ฮังการี และสกอร์ 1–0?",
    "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_en": "Name the object type with an NGC number more than 6638 and right ascensions being 18h25m37.8s",
    "question_th": "ตั้งชื่อประเภทวัตถุด้วยหมายเลข NGC มากกว่า 6638 และการขึ้นด้านขวาเป็น 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_en": "Tell me the constellation which has a right ascension of 18h17m41.1s",
    "question_th": "บอกกลุ่มดาวที่มีการขึ้นทางขวาที่ 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_en": "What is the total number of Since with a Goals larger than 6, and a Name with deco?",
    "question_th": "จำนวนรวมของตั้งแต่โดยมีเป้าหมายมากกว่า 6 และชื่อที่มีเดคโคคือเท่าใด",
    "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árquez\"",
    "question_en": "What is the average Ends with a Since of 2003, and a Name with márquez?",
    "question_th": "ค่าเฉลี่ยที่ลงท้ายด้วย a ตั้งแต่ปี 2003 และชื่อที่มี márquez คืออะไร?",
    "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_en": "What is the sum of Ends with a Name of abidal, and has a Since larger than 2007?",
    "question_th": "ผลรวมของ End ด้วยชื่อของ abidal คืออะไร และมีตั้งแต่มากกว่าปี 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_en": "Which finish has a Record of 74-68?",
    "question_th": "จบแบบไหนมีสถิติ 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_en": "What is the total of the year with a Team of johnson city yankees, and a Finish of 6th?",
    "question_th": "ผลรวมของปีกับทีม johnson city yankees และจบอันดับที่ 6 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_33 (year INTEGER, team VARCHAR, finish VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_43 WHERE team = \"manchester yankees\"",
    "question_en": "Which record has a Team of manchester yankees?",
    "question_th": "สถิติไหนมีทีมแมนเชสเตอร์ แยงกี้?",
    "context": "CREATE TABLE table_name_43 (record VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT organization FROM table_name_93 WHERE finish = \"4th\"",
    "question_en": "Which organization has a Finish of 4th?",
    "question_th": "องค์กรใดเข้าเส้นชัยเป็นอันดับ 4?",
    "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_en": "Which year has an Organization of new york yankees, and a Team of johnson city yankees?",
    "question_th": "ปีใดมีองค์กรนิวยอร์กแยงกี้ และทีมจอห์นสันซิตี้แยงกี้",
    "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_en": "Which constructor had a grid number bigger than 14, laps of more than 93, and rank higher than 25?",
    "question_th": "Constructor ใดที่มีหมายเลขกริดมากกว่า 14 รอบมากกว่า 93 และอันดับสูงกว่า 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_en": "Which qual has rank of more than 28 and a grid number that is bigger than 23?",
    "question_th": "รอบใดมีอันดับมากกว่า 28 และหมายเลขตารางที่มากกว่า 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_en": "What is the total qual where the grid number is 24?",
    "question_th": "คุณสมบัติทั้งหมดโดยที่หมายเลขตารางคือ 24 คืออะไร?",
    "context": "CREATE TABLE table_name_57 (qual INTEGER, grid VARCHAR)"
  },
  {
    "answer": "SELECT suffix FROM table_name_73 WHERE group = \"benzyl\"",
    "question_en": "What is the Suffix for the Group of Benzyl?",
    "question_th": "หมู่เบนซิลมีอักษรย่อว่าอะไร?",
    "context": "CREATE TABLE table_name_73 (suffix VARCHAR, group VARCHAR)"
  },
  {
    "answer": "SELECT formula FROM table_name_72 WHERE prefix = \"alkyl-\"",
    "question_en": "Which Formula has a Prefix of alkyl-?",
    "question_th": "สูตรใดมีคำนำหน้าเป็นอัลคิล-",
    "context": "CREATE TABLE table_name_72 (formula VARCHAR, prefix VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_28 WHERE decision = \"ramo\" AND visitor = \"florida\"",
    "question_en": "Who was the Home team when the Visitor was Florida, with a Decision of Ramo?",
    "question_th": "ทีมเหย้าคือใครเมื่อผู้มาเยือนคือฟลอริดา โดยการตัดสินใจของราโม",
    "context": "CREATE TABLE table_name_28 (home VARCHAR, decision VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT decision FROM table_name_53 WHERE visitor = \"carolina\"",
    "question_en": "What was the Decision when the Visitor was Carolina?",
    "question_th": "การตัดสินใจเมื่อผู้เยี่ยมชมคือแคโรไลนาคืออะไร?",
    "context": "CREATE TABLE table_name_53 (decision VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_30 WHERE venue = \"windy hill\"",
    "question_en": "Which away team was at windy hill?",
    "question_th": "ทีมเยือนทีมไหนอยู่วินดี้ฮิลล์?",
    "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_en": "For the category of most popular star with a result of won for 2007, what was the award?",
    "question_th": "สำหรับประเภทดารายอดนิยมที่มีผลการชนะรางวัลประจำปี 2550 รางวัลคืออะไร?",
    "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_en": "What is the result for the king and I after 2006?",
    "question_th": "ในหลวงและฉันภายหลังปี 2549 ผลเป็นอย่างไร?",
    "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_en": "What is the main color(s) for marlboro?",
    "question_th": "สีหลักของมาร์ลโบโรคือสีอะไร?",
    "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_en": "What is the additional major sponsor(s) that has red as its main color after 1991?",
    "question_th": "ผู้สนับสนุนหลักเพิ่มเติมที่มีสีแดงเป็นสีหลักหลังปี 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_en": "Who was the brother of Edward VIII?",
    "question_th": "ใครเป็นน้องชายของ 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_en": "How many laps are associated with a time of + 1:39.591?",
    "question_th": "กี่รอบสัมพันธ์กับเวลา +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_en": "What is the average number of laps for a grid of 6?",
    "question_th": "จำนวนรอบโดยเฉลี่ยสำหรับตาราง 6 คือเท่าไร?",
    "context": "CREATE TABLE table_name_31 (laps INTEGER, grid VARCHAR)"
  },
  {
    "answer": "SELECT data FROM table_name_41 WHERE percent_gain = \"28.4%\"",
    "question_en": "Name the data with a percent gain of 28.4%",
    "question_th": "ตั้งชื่อข้อมูลด้วยเปอร์เซ็นต์ที่เพิ่มขึ้น 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_en": "Which smallest swimsuit number's interview was less than 8.574 when the average number was bigger than 8.532?",
    "question_th": "การสัมภาษณ์ชุดว่ายน้ำหมายเลขน้อยที่สุดหมายเลขใดน้อยกว่า 8.574 เมื่อจำนวนเฉลี่ยมากกว่า 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_en": "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?",
    "question_th": "หมายเลขสัมภาษณ์ที่น้อยที่สุดหมายเลขใดที่มีสถิติชุดว่ายน้ำน้อยกว่า 9.322 คะแนนชุดราตรีมากกว่า 9.259 และจำนวนเฉลี่ย 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_en": "What is the highest mean number for Texas when the swimsuit stat was more than 8.839?",
    "question_th": "ตัวเลขเฉลี่ยสูงสุดสำหรับเท็กซัสเมื่อสถิติชุดว่ายน้ำมากกว่า 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_en": "What is the mean evening gown number when the average is 8.686?",
    "question_th": "เบอร์ชุดราตรีเฉลี่ยอยู่ที่ 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_en": "What is the sum number of evening gown stats for New Jersey when the interview was less than 9.344?",
    "question_th": "สถิติชุดราตรีของนิวเจอร์ซีตอนสัมภาษณ์น้อยกว่า 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_en": "What engine was made in 1991?",
    "question_th": "เครื่องยนต์อะไรที่ผลิตในปี 1991?",
    "context": "CREATE TABLE table_name_41 (engine_s_ VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT engine_s_ FROM table_name_7 WHERE year = 1992",
    "question_en": "What engines have the year 1992?",
    "question_th": "ปี 1992 มีเครื่องยนต์อะไรบ้าง?",
    "context": "CREATE TABLE table_name_7 (engine_s_ VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT chassis FROM table_name_87 WHERE year = 1987",
    "question_en": "What chassis has the year 1987?",
    "question_th": "ปี 1987 มีแชสซีอะไรบ้าง?",
    "context": "CREATE TABLE table_name_87 (chassis VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT AVG(points) FROM table_name_2 WHERE chassis = \"lola lc88\"",
    "question_en": "What is the average points for the chassis LOLA LC88?",
    "question_th": "คะแนนเฉลี่ยของแชสซี 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_en": "what is the attendance when the location is veterans stadium, the game is more than 3 and the time is 2:21?",
    "question_th": "ผู้เข้าชมเป็นอย่างไรบ้างเมื่อสถานที่เป็นสนามกีฬาทหารผ่านศึกเกมมีมากกว่า 3 และเวลาคือ 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_en": "what is the score when the time is 2:22?",
    "question_th": "เมื่อเวลา 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_en": "how many games have a location of memorial stadium and a time of 2:27?",
    "question_th": "มีกี่เกมที่มีที่ตั้งของสนามกีฬาอนุสรณ์ และเวลา 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_en": "what is the attendance on the date of october 16 and the game is more than 5?",
    "question_th": "ผู้เข้าร่วมในวันที่ 16 ตุลาคมและเกมมีมากกว่า 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_en": "What was the lowest attendance for a score of  5 - 0?",
    "question_th": "ผู้เข้าร่วมต่ำสุดสำหรับคะแนน 5 - 0 คือเท่าใด",
    "context": "CREATE TABLE table_name_40 (attendance INTEGER, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_79 WHERE record = \"21-25\"",
    "question_en": "On what date was the record 21-25?",
    "question_th": "บันทึกวันที่ 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_en": "I want the total number of Laps for time/retired for + 4 Laps and grid more than 20",
    "question_th": "ฉันต้องการจำนวนรอบรวมสำหรับเวลา/เกษียณสำหรับ + 4 รอบและกริดมากกว่า 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_en": "I want the average Laps for grid of 9",
    "question_th": "ฉันต้องการรอบเฉลี่ยสำหรับตารางที่ 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_en": "What is the total works number of the locomotive with 0-6-4t type after 1875?",
    "question_th": "รถจักรประเภท 0-6-4 ตัน หลังปี พ.ศ. 2418 มียอดรวมผลงานเป็นเท่าใด",
    "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_en": "What is the total work number of Gowrie after 1875?",
    "question_th": "จำนวนงานทั้งหมดของ Gowrie หลังปี พ.ศ. 2418 เป็นเท่าใด",
    "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_en": "What is the average work number of Snowdon Ranger with the builder Vulcan Foundry?",
    "question_th": "จำนวนงานโดยเฉลี่ยของ Snowdon Ranger กับผู้สร้าง 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_en": "What is the total work number of Gowrie with a 0-6-4t type after 1908?",
    "question_th": "จำนวนงานทั้งหมดของ Gowrie รุ่น 0-6-4t หลังปี 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_en": "What day was the bell atlantic classic?",
    "question_th": "เบลล์ แอตแลนติก คลาสสิก จัดขึ้นวันไหน?",
    "context": "CREATE TABLE table_name_53 (date VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT set_1 FROM table_name_75 WHERE set_3 = \"15–4\" AND set_2 = \"15–7\"",
    "question_en": "What was the Set 1 game score when Set 3 game score was 15–4, and a Set 2 game score was 15–7?",
    "question_th": "คะแนนเกมเซ็ต 1 เป็นเท่าใดเมื่อคะแนนเกมเซ็ต 3 คือ 15–4 และคะแนนเกมเซ็ต 2 คือ 15–7",
    "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_en": "What lowest Bodyweight has a Snatch smaller than 55?",
    "question_th": "น้ำหนักตัวต่ำสุดเท่าไรที่มี Snatch เล็กกว่า 55?",
    "context": "CREATE TABLE table_name_84 (bodyweight INTEGER, snatch INTEGER)"
  },
  {
    "answer": "SELECT bodyweight FROM table_name_18 WHERE total__kg_ = \"145.0\"",
    "question_en": "Which bodyweight has a Total (kg) of 145.0?",
    "question_th": "น้ำหนักตัวใดมีปริมาณรวม (กก.) เท่ากับ 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_en": "What's the Current Status of Livery of the Network South-East?",
    "question_th": "สถานะปัจจุบันของ Livery ของเครือข่ายตะวันออกเฉียงใต้เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_66 (current_status VARCHAR, livery VARCHAR)"
  },
  {
    "answer": "SELECT number_ & _name FROM table_name_61 WHERE date = 1967",
    "question_en": "What's Number & Name listed for the Date 1967?",
    "question_th": "หมายเลขและชื่ออะไรที่ระบุไว้สำหรับวันที่ 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_en": "When was the game at Collingwood?",
    "question_th": "เกมที่คอลลิงวูดคือเมื่อไหร่?",
    "context": "CREATE TABLE table_name_59 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_7 WHERE home_team = \"geelong\"",
    "question_en": "Where does Geelong play their home game?",
    "question_th": "จีลองเล่นเกมเหย้าที่ไหน?",
    "context": "CREATE TABLE table_name_7 (venue VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_14 WHERE away_team = \"north melbourne\"",
    "question_en": "In which venue was North Melbourne the Away team?",
    "question_th": "นอร์ท เมลเบิร์น เป็นทีมเยือนที่สนามใด?",
    "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_en": "What was the home team's score at Corio Oval?",
    "question_th": "สกอร์ของเจ้าบ้านที่โคริโอ โอวัลเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_20 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT casualties FROM table_name_33 WHERE sunk_by… = \"u-125\"",
    "question_en": "What were the casualties of the ship sunk by u-125?",
    "question_th": "เรือ U-125 จมมีผู้เสียชีวิตอะไรบ้าง?",
    "context": "CREATE TABLE table_name_33 (casualties VARCHAR, sunk_by… VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_23 WHERE date = \"5 may 1943\" AND nationality = \"united kingdom\" AND sunk_by… = \"u-266\" AND casualties = \"0\"",
    "question_en": "What is the name of the ship sunk on 5 May 1943 from the United Kingdom sunk by an u-266 with 0 casualties?",
    "question_th": "เรือลำดังกล่าวจมเมื่อวันที่ 5 พฤษภาคม พ.ศ. 2486 จากสหราชอาณาจักรโดยเรือ U-266 ซึ่งมีผู้เสียชีวิต 0 ราย ชื่ออะไร",
    "context": "CREATE TABLE table_name_23 (name VARCHAR, casualties VARCHAR, sunk_by… VARCHAR, date VARCHAR, nationality VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_59 WHERE record = \"3-10\"",
    "question_en": "Who loss the game when the record was 3-10?",
    "question_th": "ใครแพ้ในเกมเมื่อสถิติเป็น 3-10?",
    "context": "CREATE TABLE table_name_59 (loss VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_63 WHERE date = \"april 7\"",
    "question_en": "What was the record on April 7?",
    "question_th": "บันทึกเมื่อวันที่ 7 เมษายนคืออะไร?",
    "context": "CREATE TABLE table_name_63 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT object_type FROM table_name_58 WHERE declination___j2000__ = \"°03′32″\"",
    "question_en": "What Object Type has a °03′32″ Declination (J2000)?",
    "question_th": "ประเภทวัตถุใดที่มีการปฏิเสธ°03′32″ (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_en": "What Constellation has a 20h56m40s Right Ascension (J2000)?",
    "question_th": "กลุ่มดาวใดมี Right Ascension 20 ชั่วโมง 56 นาที 40 วินาที (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__ = \"°42′30″\"",
    "question_en": "What is the Right Ascension with a Diffuse Nebula Object Type has a °42′30″ Declination and a NGC less than 6995?",
    "question_th": "อะไรคือการเสด็จขึ้นสู่สวรรค์ที่ถูกต้องด้วยวัตถุเนบิวลากระจายที่มีความเบี่ยงเบน °42′30″ และ NGC น้อยกว่า 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_en": "What Object Type has a 21h01m37.7s Right Ascension (J2000) and 6995 or greater NGC?",
    "question_th": "ประเภทวัตถุใดที่มี Right Ascension 21h01m37.7s (J2000) และ 6995 หรือสูงกว่า 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_en": "Tell me the average size for minor third",
    "question_th": "บอกขนาดเฉลี่ยของผู้เยาว์ที่สาม",
    "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_en": "Who was the losing team on June 16?",
    "question_th": "ทีมที่แพ้ในวันที่ 16 มิถุนายนคือใคร?",
    "context": "CREATE TABLE table_name_25 (losing_team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_81 WHERE date = \"june 28\"",
    "question_en": "What was the score of the game on June 28?",
    "question_th": "สกอร์เกมวันที่ 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_en": "Who beat the Marlins with a score of 4-0?",
    "question_th": "ใครเอาชนะมาร์ลินส์ด้วยสกอร์ 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_en": "What is the date of the game at the Pro Player Stadium that had a score of 4-1?",
    "question_th": "เกมที่สนามโปรเพลเยอร์สกอร์ 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_en": "With 1.97 million HK viewers and a finale more than 33, what was the total number of peaks?",
    "question_th": "ด้วยผู้ชม HK 1.97 ล้านคนและตอนจบมากกว่า 33 คน จำนวนผู้ชมสูงสุดทั้งหมดคือเท่าใด",
    "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_en": "When were scottish football league xi the opponents with a score of 1-5?",
    "question_th": "ฟุตบอลลีกสกอตแลนด์ xi ฝ่ายตรงข้ามด้วยสกอร์ 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_en": "What's the score on 17/03/1956?",
    "question_th": "คะแนนวันที่ 17/03/1956 เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_59 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponents FROM table_name_19 WHERE result = \"d\"",
    "question_en": "When the result is d, who are the opponents?",
    "question_th": "เมื่อผลออกมาเป็น d คู่ต่อสู้คือใคร?",
    "context": "CREATE TABLE table_name_19 (opponents VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_10 WHERE score = \"2-2\"",
    "question_en": "What's the result when the score is 2-2?",
    "question_th": "ผลสกอร์เป็น 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_en": "What's in third place that's going 1-0?",
    "question_th": "อันดับ 3 จะเป็น 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_en": "Who is in third place when the kaizer chiefs won 1-0?",
    "question_th": "ใครอยู่อันดับ 3 เมื่อไกเซอร์ ชีฟส์ ชนะ 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_en": "Which is the earliest year that had mixed doubles for wang wei lu ying?",
    "question_th": "ปีแรกสุดที่มีคู่ผสมของหวัง เว่ย ลู่ หยิง คือปีใด?",
    "context": "CREATE TABLE table_name_40 (year INTEGER, mixed_doubles VARCHAR)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_34 WHERE 2007 = \"atp masters series\"",
    "question_en": "What is the 2011 value that has ATP Masters Series in 2007?",
    "question_th": "มูลค่าปี 2011 ที่มี ATP Masters Series ในปี 2007 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_34 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_62 WHERE 2008 = \"2r\" AND 2012 = \"4r\"",
    "question_en": "What is the 2011 value that has a 2r in 2008 and a 4r in 2012?",
    "question_th": "ค่าปี 2554 ที่มี 2r ในปี 2551 และ 4r ในปี 2555 เป็นเท่าใด",
    "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_en": "What is the 2012 value with an A value in 2007 and A value in 2010 in the Canada Masters?",
    "question_th": "ค่า 2012 ที่มีค่า A ในปี 2550 และค่า A ในปี 2010 ใน 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_en": "What is the 2012 value with 1r in 2011, 2007 of A, 2010 of 1r, and 2009 of A?",
    "question_th": "ค่า 2012 ที่มี 1r ในปี 2011, 2007 ของ A, 2010 ของ 1r และ 2009 ของ A คืออะไร",
    "context": "CREATE TABLE table_name_16 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2007 FROM table_name_87 WHERE 2011 = \"nms\"",
    "question_en": "What is the 2007 value with NMS in 2011?",
    "question_th": "ค่า NMS ในปี 2550 ในปี 2554 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_87 (Id VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_74 WHERE drivers = \"christian fittipaldi\"",
    "question_en": "Christian Fittipaldi drove in what team?",
    "question_th": "Christian Fittipaldi ขับทีมไหน?",
    "context": "CREATE TABLE table_name_74 (team VARCHAR, drivers VARCHAR)"
  },
  {
    "answer": "SELECT drivers FROM table_name_34 WHERE races = \"15-20\"",
    "question_en": "What driver had a 15-20 record?",
    "question_th": "นักแข่งคนไหนมีสถิติ 15-20?",
    "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_en": "Who drove a race car with a Mercedes IC 108e engine and has an 8-10 record?",
    "question_th": "ใครขับรถแข่งด้วยเครื่องยนต์ Mercedes IC 108e และมีสถิติ 8-10?",
    "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_en": "Which person drove a Reynard 2ki with a Honda Hrk engine?",
    "question_th": "ใครขับ Reynard 2ki ด้วยเครื่องยนต์ Honda Hrk?",
    "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_en": "What artist had a single called Alien Rock b/w Combat, The Remix on 12 inch Vinyl format?",
    "question_th": "ศิลปินคนใดมีซิงเกิลชื่อ Alien Rock b/w Combat, The Remix ในรูปแบบไวนิลขนาด 12 นิ้ว",
    "context": "CREATE TABLE table_name_82 (artist VARCHAR, format VARCHAR, single VARCHAR)"
  },
  {
    "answer": "SELECT single FROM table_name_17 WHERE artist = \"cap d\"",
    "question_en": "What single was written by the artist cap D?",
    "question_th": "ศิลปิน 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_en": "What date was the opponent in the final Virginie Pichet?",
    "question_th": "คู่ต่อสู้ในรอบชิงชนะเลิศ เวอร์จิเนีย พิเชษฐ์ คือวันไหน?",
    "context": "CREATE TABLE table_name_46 (date VARCHAR, opponent_in_final VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_25 WHERE game = 7",
    "question_en": "What time was game 7?",
    "question_th": "เกมที่ 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_en": "When the game was played at the Venue of Lake Oval, what was the home team score?",
    "question_th": "เมื่อเกมเล่นที่สนามเลคโอวัลสกอร์เจ้าบ้านเท่าไหร่?",
    "context": "CREATE TABLE table_name_58 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_3 WHERE venue = \"glenferrie oval\"",
    "question_en": "When the Venue was Glenferrie Oval, who is the Away team?",
    "question_th": "เมื่อสนามคือ Glenferrie Oval ทีมเยือนคือใคร?",
    "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_en": "When North Melbourne is the Away team, what is the total number of the Crowd?",
    "question_th": "เมื่อนอร์ท เมลเบิร์น เป็นทีมเยือน ฝูงชนรวมเป็นจำนวนเท่าใด?",
    "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_en": "When Richmond is the Away team, what did they score?",
    "question_th": "เมื่อริชมอนด์เป็นทีมเยือนพวกเขาทำคะแนนได้เท่าไหร่?",
    "context": "CREATE TABLE table_name_2 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team AS score FROM table_name_2 WHERE away_team = \"geelong\"",
    "question_en": "When Geelong is the Away team, what did the Home team score?",
    "question_th": "เมื่อจีลองเป็นทีมเยือนทีมเหย้าได้คะแนนเท่าไหร่?",
    "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_en": "Which race has a pole of test driver and a team name of Lucky Strike Honda Racing f1 team?",
    "question_th": "แข่งไหนมีโพลนักแข่งทดสอบและชื่อทีม Lucky Strike Honda Racing f1 บ้าง?",
    "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_en": "Which pole has a Season of 2009 and points of test driver?",
    "question_th": "เสาใดมีฤดูกาล 2009 และคะแนนนักขับทดสอบ?",
    "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_en": "What is the date of the tournament with 5 strokes as the margin of victory?",
    "question_th": "วันที่ของทัวร์นาเมนต์โดยให้ 5 จังหวะเป็นชัยชนะคือวันที่เท่าไร?",
    "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_en": "What is the margin of victory of the tournament on 15 Jul 2007?",
    "question_th": "ชัยชนะของทัวร์นาเมนต์ในวันที่ 15 กรกฎาคม 2550 เป็นเท่าใด?",
    "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_en": "What is the margin of victory of the tournament with a winning score of 70-67-64-71=272?",
    "question_th": "อะไรคือส่วนต่างของชัยชนะของทัวร์นาเมนต์ด้วยคะแนนชนะ 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_en": "Tell me the average points with tyres of b and chassis of tf109",
    "question_th": "บอกคะแนนเฉลี่ยด้วยยาง b และแชสซีของ 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_en": "Tell me the total number of points with chassis of tf103",
    "question_th": "บอกจำนวนแต้มรวมกับแชสซีของ 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_en": "Which partners were runner-up in the tournament in Mons, Belgium?",
    "question_th": "พันธมิตรคนไหนได้รองชนะเลิศในการแข่งขันที่เมืองมอนส์ ประเทศเบลเยียม",
    "context": "CREATE TABLE table_name_61 (partner VARCHAR, outcome VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(track) FROM table_name_25 WHERE translation = \"brussels\"",
    "question_en": "What is the total track that is translated in brussels?",
    "question_th": "เพลงทั้งหมดที่แปลเป็นภาษาบรัสเซลส์คือเพลงอะไร",
    "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_en": "Which title has tracks smaller than 7 with translation of an island?",
    "question_th": "ชื่อใดมีแทร็กที่เล็กกว่า 7 พร้อมคำแปลของเกาะ",
    "context": "CREATE TABLE table_name_67 (title VARCHAR, track VARCHAR, translation VARCHAR)"
  },
  {
    "answer": "SELECT recorded FROM table_name_84 WHERE translation = \"brussels\"",
    "question_en": "What is the record for Brussels translations?",
    "question_th": "บันทึกการแปลบรัสเซลส์คืออะไร?",
    "context": "CREATE TABLE table_name_84 (recorded VARCHAR, translation VARCHAR)"
  },
  {
    "answer": "SELECT MAX(crowd) FROM table_name_36 WHERE venue = \"junction oval\"",
    "question_en": "What's the largest crowd that attended a game at junction oval?",
    "question_th": "ฝูงชนที่ใหญ่ที่สุดที่เข้าร่วมเกมที่วงรีทางแยกคือกลุ่มใด",
    "context": "CREATE TABLE table_name_36 (crowd INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT school_club_team FROM table_name_3 WHERE player = \"mark eaton\"",
    "question_en": "Who did mark eaton play for?",
    "question_th": "มาร์ค อีตัน เล่นให้ใคร?",
    "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_en": "What position did someone play from 1982-84?",
    "question_th": "มีใครเล่นตำแหน่งไหนในช่วงปี 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_en": "Who does jeremy evans play for?",
    "question_th": "เจเรมี อีแวนส์เล่นให้ใคร?",
    "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_en": "What nationality is mark eaton, center position?",
    "question_th": "มาร์ค อีตัน สัญชาติอะไร ตำแหน่งเซ็นเตอร์?",
    "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_en": "What's the position listed for the east carolina team?",
    "question_th": "ตำแหน่งที่ระบุไว้สำหรับทีมอีสต์แคโรไลนาคืออะไร?",
    "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_en": "What is the home/away of the game at Nickerson Field at July 10?",
    "question_th": "เกมเหย้า/เยือนที่ นิคเกอร์สัน ฟิลด์ วันที่ 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_en": "What is the date of the game away against Pride?",
    "question_th": "เกมเยือนกับ 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_en": "What is the result of the home game on August 14?",
    "question_th": "ผลเกมเหย้าวันที่ 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_en": "What is the date of the game against the Lizards with a result of w 18-17?",
    "question_th": "เกมกับ Lizards ผลสกอร์ 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_en": "What is the field of the game on July 22?",
    "question_th": "เกมการแข่งขันวันที่ 22 กรกฎาคม สนามไหน?",
    "context": "CREATE TABLE table_name_7 (field VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_57 WHERE marriage = \"disputed\"",
    "question_en": "Who had a disputed marriage?",
    "question_th": "ใครมีการแต่งงานที่ขัดแย้งกัน?",
    "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_en": "On October 25, when the visitor was Colorado, what is the score?",
    "question_th": "วันที่ 25 ต.ค. ตอนผู้มาเยือนคือ โคโลราโด สกอร์เท่าไหร่?",
    "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_en": "How many voters were in Manhattan when 181,639 people voted in the Bronx?",
    "question_th": "มีผู้ลงคะแนนเสียงกี่คนในแมนฮัตตันเมื่อมีผู้ลงคะแนน 181,639 คนในบรองซ์",
    "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_en": "When Richmond had a total count of 2,293, what was the total count of Brooklyn?",
    "question_th": "เมื่อริชมอนด์มีจำนวนทั้งหมด 2,293 คน บรูคลินมีจำนวนทั้งหมดเท่าใด",
    "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_en": "What is the average earnings of the player from the United States with a win smaller than 2 and a rank larger than 3?",
    "question_th": "รายได้เฉลี่ยของผู้เล่นจากสหรัฐอเมริกาที่ชนะน้อยกว่า 2 และอันดับมากกว่า 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_en": "What is the average events that Al Geiberger played with wins smaller than 1?",
    "question_th": "เหตุการณ์โดยเฉลี่ยที่ Al Geiberger เล่นกับชัยชนะที่น้อยกว่า 1 คืออะไร?",
    "context": "CREATE TABLE table_name_55 (events INTEGER, player VARCHAR, wins VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_65 WHERE events = 31",
    "question_en": "What is the rank where the events is 31?",
    "question_th": "อันดับที่ 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_en": "What is the total number of events that Al Geiberger has played with earnings larger than 527,033?",
    "question_th": "จำนวนการแข่งขันทั้งหมดที่ Al Geiberger เล่นโดยมีรายได้มากกว่า 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_en": "What is the average events where the rank is smaller than 2 and wins are smaller than 5?",
    "question_th": "เหตุการณ์โดยเฉลี่ยที่อันดับน้อยกว่า 2 และชัยชนะน้อยกว่า 5 คืออะไร?",
    "context": "CREATE TABLE table_name_11 (events INTEGER, rank VARCHAR, wins VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_32 WHERE visitor = \"phoenix\"",
    "question_en": "Who did team phoenix visit in their home?",
    "question_th": "ทีมฟีนิกซ์ไปเยี่ยมใครในบ้านของพวกเขา?",
    "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_en": "What is the highest round in the Wec 25 match in Las Vegas, Nevada, United States?",
    "question_th": "รอบสูงสุดในการแข่งขัน Wec 25 ที่ลาสเวกัส รัฐเนวาดา สหรัฐอเมริกา คือรอบใด",
    "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_en": "What event had 1 round and a record of 6-2?",
    "question_th": "เหตุการณ์ใดมี 1 รอบและมีสถิติ 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_en": "Which school has more than 3 rounds with jason odom?",
    "question_th": "โรงเรียนไหนมีเกิน3รอบกับเจสัน โอดอม?",
    "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_en": "Name the least evening gown for interview more than 7.97 and swimsui of 7.24",
    "question_th": "ระบุชุดราตรีน้อยที่สุดสำหรับสัมภาษณ์มากกว่า 7.97 และชุดว่ายน้ำ 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_en": "What is the nationality of Mattias Modig?",
    "question_th": "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_en": "In the game where the home team was St Kilda, what was the attendance?",
    "question_th": "ในเกมที่เจ้าบ้านเป็น เซนต์คิลดา ผู้ชมได้อะไรบ้าง?",
    "context": "CREATE TABLE table_name_52 (crowd VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT crowd FROM table_name_22 WHERE venue = \"mcg\"",
    "question_en": "In the game with the venue of mcg, what was the attendance?",
    "question_th": "ในเกมกับสนาม เอ็มซีจี ผู้ชมเป็นอย่างไรบ้าง?",
    "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_en": "In the game that took place at junction oval, how much did the home team score?",
    "question_th": "ในเกมที่สนามชุมทางรีเจ้าบ้านได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_24 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_22 WHERE home = \"seattle\"",
    "question_en": "Who was the visiting team when the home team was Seattle?",
    "question_th": "ทีมเยือนเมื่อครั้งเจ้าบ้านคือซีแอตเทิลคือใคร?",
    "context": "CREATE TABLE table_name_22 (visitor VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_63 WHERE date = \"12 march 2008\"",
    "question_en": "What was the record on 12 march 2008?",
    "question_th": "บันทึกเมื่อวันที่ 12 มีนาคม พ.ศ. 2551 คืออะไร?",
    "context": "CREATE TABLE table_name_63 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_83 WHERE date = \"27 march 2008\"",
    "question_en": "Who was the home team on 27 march 2008?",
    "question_th": "ทีมเหย้าเมื่อวันที่ 27 มีนาคม พ.ศ. 2551 คือใคร?",
    "context": "CREATE TABLE table_name_83 (home VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_23 WHERE visitor = \"mavericks\"",
    "question_en": "What was the score when the mavericks were visitors?",
    "question_th": "คะแนนเมื่อผู้ไม่ฝักใฝ่ฝ่ายใดเป็นผู้มาเยือน?",
    "context": "CREATE TABLE table_name_23 (score VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(capacity) FROM table_name_97 WHERE stadium = \"alberto picco\"",
    "question_en": "How many people attended games at alberto picco stadium?",
    "question_th": "มีคนเข้าร่วมการแข่งขันที่สนามอัลแบร์โต ปิกโก กี่คน?",
    "context": "CREATE TABLE table_name_97 (capacity VARCHAR, stadium VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_59 WHERE home_city = \"terni\"",
    "question_en": "What team is from terni?",
    "question_th": "เทอร์นี่ มาจากทีมอะไร?",
    "context": "CREATE TABLE table_name_59 (team VARCHAR, home_city VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(attendance) FROM table_name_82 WHERE visitor = \"toronto\"",
    "question_en": "What is the total attendance of the game with Toronto as the visitor team?",
    "question_th": "ผู้เข้าร่วมเกมทั้งหมดโดยมีโตรอนโตเป็นทีมเยือนคือเท่าไร?",
    "context": "CREATE TABLE table_name_82 (attendance VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_26 WHERE player = \"tim barnett\"",
    "question_en": "What position does tim barnett play?",
    "question_th": "ทิม บาร์เน็ตต์เล่นตำแหน่งอะไร?",
    "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_en": "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",
    "question_th": "ฉันต้องการผลรวมของจำนวนฤดูกาลในดิวิชั่นสูงสุดสำหรับตำแหน่งในปี 2012-13 ของ 009 9 และจำนวนฤดูกาลในพรีเมียร์ลีกน้อยกว่า 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_en": "How many tons was the ship from norway?",
    "question_th": "เรือจากนอร์เวย์มีกี่ตัน?",
    "context": "CREATE TABLE table_name_14 (tons VARCHAR, nationality VARCHAR)"
  },
  {
    "answer": "SELECT MIN(crowd) FROM table_name_43 WHERE venue = \"glenferrie oval\"",
    "question_en": "How many people were in attendance at Glenferrie Oval?",
    "question_th": "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_en": "What was the away team score at Brunswick Street Oval?",
    "question_th": "คะแนนทีมเยือนที่บรันสวิค สตรีท โอวัลเป็นเท่าไหร่?",
    "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_en": "What was Melbourne's away team score?",
    "question_th": "คะแนนทีมเยือนของเมลเบิร์นเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_20 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_42 WHERE player = \"adam keefe\"",
    "question_en": "What is Adam Keefe's nationality?",
    "question_th": "อดัม คีฟมีสัญชาติอะไร?",
    "context": "CREATE TABLE table_name_42 (nationality VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_8 WHERE school_club_team = \"stanford\"",
    "question_en": "Who is the player who went to Stanford?",
    "question_th": "นักเตะที่ไปสแตนฟอร์ดคือใคร?",
    "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_en": "What are the years on the Jazz for the player who is a combo forward?",
    "question_th": "แจ๊สสำหรับผู้เล่นที่เป็นกองหน้าคอมโบมีกี่ปี?",
    "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_en": "What is the total for the state of new york and a swimsuit less than 9.394?",
    "question_th": "จำนวนรวมของรัฐนิวยอร์กและชุดว่ายน้ำที่น้อยกว่า 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_en": "What is the greatest interview that has a swimsuit less than 8.838?",
    "question_th": "บทสัมภาษณ์ไหนดีที่สุดที่มีชุดว่ายน้ำน้อยกว่า 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_en": "What is the lowest average that has a swimsuit less than 8.966, for west virginia and an evening gown less than 8.711?",
    "question_th": "ค่าเฉลี่ยต่ำสุดที่มีชุดว่ายน้ำน้อยกว่า 8.966 สำหรับเวสต์เวอร์จิเนีย และชุดราตรีน้อยกว่า 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_en": "What is the lowest swimsuit that has an evening gown bigger than 8.794 for illinois?",
    "question_th": "ชุดว่ายน้ำต่ำสุดที่มีชุดราตรีใหญ่กว่า 8.794 สำหรับอิลลินอยส์คืออะไร?",
    "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_en": "What day was the score 3-0 after 2011?",
    "question_th": "สกอร์ 3-0 หลังปี 2554 คือวันไหน?",
    "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_en": "What day was the result a win, the score 2-1, and the year before 2012?",
    "question_th": "ผลชนะวันไหน สกอร์ 2-1 และปีก่อนปี 2555?",
    "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_en": "What is the highest amount of floors in Stockholm with a rank of 15?",
    "question_th": "จำนวนชั้นสูงสุดในสตอกโฮล์มที่มีอันดับ 15 คือเท่าใด",
    "context": "CREATE TABLE table_name_96 (floors INTEGER, location VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_3 WHERE name = \"skanskaskrapan\"",
    "question_en": "What is the rank of Skanskaskrapan?",
    "question_th": "สกันสกาสกราปันอยู่อันดับไหน?",
    "context": "CREATE TABLE table_name_3 (rank VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_52 WHERE name = \"point hyllie\"",
    "question_en": "What is the rank of Point Hyllie?",
    "question_th": "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_en": "How many bronzes for the nation with 2 golds and ranked below 2?",
    "question_th": "มี 2 เหรียญทองและอันดับต่ำกว่า 2 ให้กับประเทศกี่เหรียญ?",
    "context": "CREATE TABLE table_name_9 (bronze INTEGER, gold VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT decision FROM table_name_12 WHERE home = \"montreal\"",
    "question_en": "What was the decision when montreal was at home?",
    "question_th": "อะไรคือการตัดสินใจเมื่อมอนทรีออลอยู่ที่บ้าน?",
    "context": "CREATE TABLE table_name_12 (decision VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_59 WHERE record = \"17–24–5\"",
    "question_en": "What day is the team 17–24–5?",
    "question_th": "ทีมวันที่ 17–24–5 คือวันไหน?",
    "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_en": "Who was the visitor on november 14 with leclaire recording the decision?",
    "question_th": "ใครคือผู้มาเยือนในวันที่ 14 พฤศจิกายน โดยที่เลแคลร์บันทึกการตัดสินใจไว้?",
    "context": "CREATE TABLE table_name_43 (visitor VARCHAR, decision VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_85 WHERE visitor = \"st. louis\"",
    "question_en": "What day was St. Louis the visitor?",
    "question_th": "เซนต์หลุยส์มาเยี่ยมวันไหน?",
    "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_en": "What club team is the United States player with an overall pick smaller than 142 from?",
    "question_th": "นักเตะ United States ของทีมสโมสรใดที่มีตัวเลือกโดยรวมน้อยกว่า 142",
    "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__ = \"°45′34″\"",
    "question_en": "Which object type had an NGC number greater than 6357 and a declination (J2000) of °45′34″?",
    "question_th": "วัตถุประเภทใดมีหมายเลข NGC มากกว่า 6357 และการเอียง (J2000) ที่°45′34″",
    "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_en": "For the constellation scorpius and object of planetary nebula, what was the declination (J2000)?",
    "question_th": "สำหรับกลุ่มดาวแมงป่องและวัตถุเนบิวลาดาวเคราะห์ ค่าความเสื่อม (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_en": "What is the earliest year a red maple had a mintage over 15,000?",
    "question_th": "ปีแรกสุดที่ต้นเมเปิลแดงมียอดผลิตมากกว่า 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_en": "What is the issue price of a voyageur before 2006?",
    "question_th": "ราคาของนักเดินทางก่อนปี 2549 คือเท่าไร?",
    "context": "CREATE TABLE table_name_89 (issue_price VARCHAR, year VARCHAR, theme VARCHAR)"
  },
  {
    "answer": "SELECT mintage FROM table_name_1 WHERE theme = \"cowboy\"",
    "question_en": "How many cowboy coins were minted?",
    "question_th": "สร้างเหรียญคาวบอยได้กี่เหรียญ?",
    "context": "CREATE TABLE table_name_1 (mintage VARCHAR, theme VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(crowd) FROM table_name_5 WHERE away_team = \"south melbourne\"",
    "question_en": "What was the attendance of the South Melbourne away game?",
    "question_th": "เซาท์ เมลเบิร์น เยือนเกมเยือนมีผู้เข้าชมเป็นอย่างไรบ้าง?",
    "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_en": "What was the opponents score when Carlton played at home?",
    "question_th": "เมื่อคาร์ลตันเล่นในบ้านคะแนนของฝ่ายตรงข้ามเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_55 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_39 WHERE venue = \"mcg\"",
    "question_en": "Who was the home team at MCG?",
    "question_th": "ทีมเหย้าของเอ็มซีจีคือใคร?",
    "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_en": "Tell me the HDD capacity for # FDD larger than 0 when FDD capacity is 710kb",
    "question_th": "บอกฉันความจุ HDD สำหรับ # FDD มากกว่า 0 เมื่อความจุ FDD คือ 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_en": "I want to know the HP model with a #HDD of 1 of sides of ds",
    "question_th": "อยากทราบรุ่น HP ที่มี #HDD 1 ฝั่ง 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_en": "Tell me the command set with FDD capacity of 270kb and sides of ds with #FDD more than 1",
    "question_th": "บอกชุดคำสั่งที่มีความจุ FDD 270kb และด้านข้างของ ds ที่มี #FDD มากกว่า 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_en": "what was the foundation of Politeknik Pagoh?",
    "question_th": "รากฐานของ 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_en": "When the shares were less than 8, how many total viewers were there?",
    "question_th": "เมื่อยอดแชร์ไม่ถึง 8 คนดูทั้งหมดกี่คน?",
    "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_en": "What is the lowest crowd when North Melbourne played at home?",
    "question_th": "นอร์ท เมลเบิร์น เล่นในบ้านคือทีมไหนที่มีคนดูน้อยที่สุดคือทีมไหน?",
    "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_en": "Which home team has a crowd larger than 25,000?",
    "question_th": "เจ้าบ้านทีมไหนมีผู้ชมมากกว่า 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_en": "What driver has a grid of under 10, and under 70 laps?",
    "question_th": "นักแข่งคนไหนที่มีตารางคะแนนต่ำกว่า 10 และต่ำกว่า 70 รอบ?",
    "context": "CREATE TABLE table_name_84 (driver VARCHAR, grid VARCHAR, laps VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(laps) FROM table_name_42 WHERE grid = 3",
    "question_en": "How many total laps for a grid of 3?",
    "question_th": "ทั้งหมดกี่รอบสำหรับตาราง 3?",
    "context": "CREATE TABLE table_name_42 (laps VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT AVG(grid) FROM table_name_70 WHERE driver = \"giorgio pantano\"",
    "question_en": "What is the average grid for giorgio pantano?",
    "question_th": "ตารางเฉลี่ยของ 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_en": "What is the Year 10 6th Quads for the Open 2nd VIII of ACGS and a Year 11 2nd VIII NC?",
    "question_th": "Quads ปีที่ 10 6 สำหรับ Open 2nd VIII ของ ACGS และ 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_en": "What is the Year 10 5th Quads with NC as Open 1st VIII and NC as a Year 10 3rd Quads?",
    "question_th": "อะไรคือ Year 10 5th Quads ที่มี NC เป็น Open 1st VIII และ NC เป็น 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_en": "What is the Open 1st VIII for the 2012 crew?",
    "question_th": "Open 1st VIII สำหรับทีมปี 2012 คืออะไร?",
    "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_en": "On July 25 what is the lowest attendance with the Brewers as the opponent?",
    "question_th": "วันที่ 25 ก.ค. คู่ต่อสู้มีผู้ชมน้อยที่สุดคือทีมไหน?",
    "context": "CREATE TABLE table_name_26 (attendance INTEGER, opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_name_46 WHERE team = \"orlando\"",
    "question_en": "Tell me the high assists for orlando",
    "question_th": "บอกฉันว่าแอสซิสต์สูงสำหรับออร์แลนโด",
    "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_en": "Who was the presenter on Friday of the series in which Alice Levine Jamie East presented on Sunday?",
    "question_th": "ใครเป็นผู้นำเสนอในวันศุกร์ของซีรีส์ที่ Alice Levine Jamie East นำเสนอในวันอาทิตย์?",
    "context": "CREATE TABLE table_name_34 (friday VARCHAR, sunday VARCHAR)"
  },
  {
    "answer": "SELECT series FROM table_name_60 WHERE saturday = \"alice levine jamie east\"",
    "question_en": "In what series did Alice Levine Jamie East give a presentation on Saturday?",
    "question_th": "Alice Levine Jamie East นำเสนอในซีรีส์เรื่องใดในวันเสาร์",
    "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_en": "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?",
    "question_th": "ใครเป็นผู้นำเสนอในวันพฤหัสบดีของซีรีส์ที่ Emma Willis เป็นผู้นำเสนอในวันพุธและ Alice Levine Jamie East เป็นผู้นำเสนอในวันอาทิตย์",
    "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_en": "On the series in which Emma Willis Jamie East presented on Friday, who was the presenter on Sunday?",
    "question_th": "ในซีรีส์ที่ Emma Willis Jamie East นำเสนอเมื่อวันศุกร์ใครเป็นพรีเซนเตอร์ในวันอาทิตย์?",
    "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_en": "Who was the presenter on Monday of \"Big Brother 13\" in which Alice Levine Jamie East presented on Sunday?",
    "question_th": "ใครเป็นพรีเซนเตอร์รายการ Big Brother 13 ในวันจันทร์ที่ Alice Levine Jamie East นำเสนอเมื่อวันอาทิตย์?",
    "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_en": "What state was the president who was elected earlier than 1848 born in?",
    "question_th": "ประธานาธิบดีที่ได้รับเลือกก่อนปี 1848 เกิดในรัฐใด",
    "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_en": "What is the resident state for the president elected in 1864?",
    "question_th": "รัฐประจำถิ่นของประธานาธิบดีที่ได้รับเลือกในปี พ.ศ. 2407 คืออะไร?",
    "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_en": "What is the election year of the president with a Birth State of lost connecticut?",
    "question_th": "ปีการเลือกตั้งประธานาธิบดีที่มีรัฐเกิดที่แพ้คอนเนตทิคัตคือปีใด?",
    "context": "CREATE TABLE table_name_61 (election_year INTEGER, birth_state VARCHAR)"
  },
  {
    "answer": "SELECT icao FROM table_name_63 WHERE iata = \"ath\"",
    "question_en": "Which ICAO's IATA is ath?",
    "question_th": "IATA ของ ICAO คืออะไร?",
    "context": "CREATE TABLE table_name_63 (icao VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_5 WHERE city = \"sendai\"",
    "question_en": "Which country's city is Sendai?",
    "question_th": "เมืองเซนไดคือเมืองใด",
    "context": "CREATE TABLE table_name_5 (country VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT icao FROM table_name_96 WHERE city = \"manchester\"",
    "question_en": "Which ICAO's city is Manchester?",
    "question_th": "เมืองใดของ ICAO คือเมืองแมนเชสเตอร์",
    "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_en": "Which airport is in Saudi Arabia when the ICAO is oejn?",
    "question_th": "สนามบินใดอยู่ในซาอุดีอาระเบียเมื่อ ICAO เป็น oejn?",
    "context": "CREATE TABLE table_name_20 (airport VARCHAR, country VARCHAR, icao VARCHAR)"
  },
  {
    "answer": "SELECT iata FROM table_name_17 WHERE icao = \"rjss\"",
    "question_en": "Which IATA's ICAO is rjss?",
    "question_th": "ICAO ของ IATA ใดที่เป็น rjss",
    "context": "CREATE TABLE table_name_17 (iata VARCHAR, icao VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_21 WHERE airport = \"adelaide airport\"",
    "question_en": "Which country features Adelaide Airport?",
    "question_th": "ประเทศใดมีสนามบินแอดิเลด",
    "context": "CREATE TABLE table_name_21 (country VARCHAR, airport VARCHAR)"
  },
  {
    "answer": "SELECT AVG(laps) FROM table_name_8 WHERE grid = 8",
    "question_en": "What is the mean number of laps when the grid was 8?",
    "question_th": "จำนวนรอบเฉลี่ยเมื่อกริดอยู่ที่ 8 คือเท่าไร?",
    "context": "CREATE TABLE table_name_8 (laps INTEGER, grid VARCHAR)"
  },
  {
    "answer": "SELECT MAX(laps) FROM table_name_5 WHERE time = \"+31.982\"",
    "question_en": "What is the largest lap number when the time was +31.982?",
    "question_th": "หมายเลขรอบสูงสุดเมื่อเวลาคือ +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_en": "What time was there when the bike was Ducati 999 F06 and the grid number was 15?",
    "question_th": "ตอนนั้นรถมอเตอร์ไซค์คันนั้นคือ Ducati 999 F06 และหมายเลขกริดคือ 15?",
    "context": "CREATE TABLE table_name_93 (time VARCHAR, bike VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT network FROM table_name_30 WHERE korean_title = \"mbc 베스트극장 - 작은 도둑\"",
    "question_en": "What network is the Korean title of mbc 베스트극장 - 작은 도둑 on?",
    "question_th": "mbc 베스트극장 - 작의 서둑 ใช้ชื่อภาษาเกาหลีบนเครือข่ายใด",
    "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_en": "On what surface was the tournament with opponents kathleen horvath marcella mesker in the finals?",
    "question_th": "การแข่งขันกับฝ่ายตรงข้าม แคธลีน ฮอร์วาธ มาร์เซลลา เมสเกอร์ ในรอบชิงชนะเลิศบนพื้นผิวใด",
    "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–6, 6–3, 6–4\" AND opponents_in_the_final = \"penny barg paula smith\"",
    "question_en": "What is the date of the final that has a score of 3–6, 6–3, 6–4 and penny barg paula smith was the opponent?",
    "question_th": "รอบชิงชนะเลิศที่มีคะแนน 3–6, 6–3, 6–4 คือวันที่ใด และมีเพนนีบาร์ก พอลล่า สมิธเป็นคู่ต่อสู้?",
    "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_en": "How many people attended games at vfl park?",
    "question_th": "มีผู้เข้าร่วมเล่นเกมที่ 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_en": "Who is the home side when geelong is the away side?",
    "question_th": "ฝั่งเจ้าบ้านคือใคร เมื่อจีลองเป็นฝั่งเยือน?",
    "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_en": "Which Pick has the College named Far Eastern / PSBA?",
    "question_th": "วิทยาลัยแห่งใดที่มีชื่อว่า 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_en": "When did Hawthorn play as the away team?",
    "question_th": "ฮอว์ธอร์นลงเล่นเป็นทีมเยือนเมื่อไหร่?",
    "context": "CREATE TABLE table_name_95 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_41 WHERE home_team = \"footscray\"",
    "question_en": "Which team played Footscray?",
    "question_th": "ทีมไหนเล่น 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_en": "How many were in the crowd when North Melbourne was the home team?",
    "question_th": "มีกี่คนที่อยู่ในฝูงชนเมื่อนอร์ทเมลเบิร์นเป็นเจ้าบ้าน?",
    "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_en": "Tell me the home team score for essendon",
    "question_th": "บอกคะแนนทีมเจ้าบ้านเอสเซนดอนหน่อย",
    "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_en": "Tell me the Host interface for digital of dvb-t (cx22702) and model of nova-t pci (90002)",
    "question_th": "ช่วยบอก Host interface สำหรับ digital ของ dvb-t (cx22702) และรุ่น 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_en": "I want the model for digital of dvb-t (cx22702) and tuner of thomson dtt75105",
    "question_th": "ฉันต้องการรุ่นสำหรับดิจิตอลของ DVB-T (cx22702) และจูนเนอร์ของ 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_en": "I want the type for host interface of pci saa7146 tmx320av7111",
    "question_th": "ฉันต้องการประเภทสำหรับอินเทอร์เฟซโฮสต์ของ 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_en": "I want the tuner for hybrid video recorder and Digital of dvb-t (zl10353), and a Model of hvr-900",
    "question_th": "ฉันต้องการจูนเนอร์สำหรับเครื่องบันทึกวิดีโอไฮบริดและดิจิตอลของ DVB-T (zl10353) และรุ่นของ 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_en": "Tell me the digital for tuner of thomson dtt75105",
    "question_th": "บอกดิจิตอลสำหรับจูนเนอร์ของ 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_en": "What's the Total number of Opening Weekend Net Gross that occured after the year 2012 with a Rank of 1?",
    "question_th": "จำนวนรวมสุทธิรวมสุดสัปดาห์ของการเปิดตัวที่เกิดขึ้นหลังปี 2012 ด้วยอันดับที่ 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_en": "Which Studio has the Year of 2012 listed and the Movie, Dabangg?",
    "question_th": "สตูดิโอใดที่มีรายการปี 2555 และภาพยนตร์ 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_en": "What's the sum of Opening Weekend Net Gross at the Studio of UTV Motion Pictures?",
    "question_th": "ผลรวมของการเปิดตัวสุทธิสุทธิสุดสัปดาห์ที่สตูดิโอของ 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_en": "What is the number for evening gown in kansas with less than 9.357 interviews?",
    "question_th": "ชุดราตรีที่แคนซัส มีจำนวนคนสัมภาษณ์น้อยกว่า 9.357 เบอร์อะไรคะ?",
    "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_en": "What state had less than 8.874 for swimsuit, less than 9.257 for evening gown, and less than 9.121 for interview?",
    "question_th": "รัฐใดมีชุดว่ายน้ำน้อยกว่า 8.874 ชุดราตรีน้อยกว่า 9.257 และน้อยกว่า 9.121 สำหรับการสัมภาษณ์",
    "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_en": "What is the number for swimsuit when the interview number is less than 8.808?",
    "question_th": "หมายเลขชุดว่ายน้ำเมื่อหมายเลขสัมภาษณ์น้อยกว่า 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_en": "What is the number for swimsuit when the evening gown number is larger than 9.257 and the interview number is 9.357?",
    "question_th": "ชุดว่ายน้ำเบอร์อะไรคะ เมื่อเบอร์ชุดราตรีมากกว่า 9.257 และเลขสัมภาษณ์คือ 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_en": "What is the highest evening gown number in North Carolina with less than 9.214 interviews?",
    "question_th": "หมายเลขชุดราตรีที่สูงที่สุดในนอร์ธแคโรไลนาที่มีการสัมภาษณ์น้อยกว่า 9.214 คืออะไร?",
    "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_en": "At what location was the time 1:54:21?",
    "question_th": "เวลา 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_en": "Which Athlete is from the United Kingdom?",
    "question_th": "นักกีฬาคนไหนมาจากสหราชอาณาจักร?",
    "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_en": "Which country had des moines as the location in 2011?",
    "question_th": "ประเทศใดที่มีดิมอยน์เป็นสถานที่ในปี 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_en": "What was the time for 2009?",
    "question_th": "ปี 2552 เวลาเท่าไหร่?",
    "context": "CREATE TABLE table_name_14 (time VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_86 WHERE date = \"june 29\"",
    "question_en": "Who was the opponent on June 29?",
    "question_th": "คู่ต่อสู้ในวันที่ 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_en": "What was the 2010 result for a 2008 result of LQ and 2011 result of 2R?",
    "question_th": "ผลลัพธ์ปี 2010 สำหรับผลลัพธ์ปี 2008 ของ LQ และผลลัพธ์ปี 2011 ของ 2R คืออะไร",
    "context": "CREATE TABLE table_name_30 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2007 FROM table_name_47 WHERE 2009 = \"2r\" AND 2008 = \"1r\"",
    "question_en": "What was the 2007 result for a 2008 result of 1R and 2009 result of 2R?",
    "question_th": "ผลลัพธ์ปี 2550 สำหรับผลลัพธ์ปี 2551 ของ 1R และผลลัพธ์ปี 2552 ของ 2R คืออะไร",
    "context": "CREATE TABLE table_name_47 (Id VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_87 WHERE 2010 = \"a\"",
    "question_en": "Which tournament had a 2010 result of A?",
    "question_th": "การแข่งขันใดมีผลการแข่งขัน A ในปี 2010",
    "context": "CREATE TABLE table_name_87 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT SUM(pick) FROM table_name_66 WHERE player = \"bill bray\"",
    "question_en": "Which pick was Bill Bray?",
    "question_th": "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_en": "From which school did the Minnesota Twins SS come from?",
    "question_th": "Minnesota Twins SS มาจากโรงเรียนใด",
    "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_en": "When playing at the Kardinia Park; what was the home teams score?",
    "question_th": "เมื่อเล่นที่คาร์ดิเนียพาร์ค ทีมเจ้าบ้านได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_39 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_50 WHERE away_team = \"essendon\"",
    "question_en": "When Essendon played away; where did they play?",
    "question_th": "เมื่อเอสเซนดอนเล่นนอกบ้าน พวกเขาเล่นที่ไหน?",
    "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_en": "What is the terminini of the highway with an east west direction and remarks that it was replaced by us 59?",
    "question_th": "ปลายทางของทางหลวงที่หันไปทางตะวันออกตะวันตกคืออะไรและสังเกตว่าเราถูกแทนที่ด้วย 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_en": "What is the length of the highway with the route name sh 2?",
    "question_th": "ทางหลวงชื่อเส้นทาง 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_en": "What is the length of the highway with remarks that it was replaced by lp 20?",
    "question_th": "ทางหลวงมีความยาวเท่าใด โดยมีหมายเหตุว่า เปลี่ยนเป็น 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_en": "What is the length of the highway with remarks that it was replaced by bsi-35?",
    "question_th": "ทางหลวงมีความยาวเท่าใดพร้อมหมายเหตุว่าเปลี่ยนเป็น 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_en": "What is the length of the highway with junctions i-35 us 83 and named us 83 bus.?",
    "question_th": "ทางหลวงที่มีทางแยก i-35 us 83 และชื่อ us 83 มีความยาวเท่าไร?",
    "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_en": "What college has the Chicago Stags?",
    "question_th": "วิทยาลัยใดมี 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_en": "What college has the Chicago stags and position is G?",
    "question_th": "วิทยาลัยใดมีกวางชิคาโกและตำแหน่ง 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_en": "What is the name of the player with position of G and the team was the Washington Capitols?",
    "question_th": "ผู้เล่นตำแหน่ง G และทีม 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_en": "What is the date of the inauguration with a Length of retirement of 00,624 days?",
    "question_th": "เปิดทำการเมื่อใดโดยมีอายุเกษียณ 00,624 วันคือเมื่อใด",
    "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_en": "What largest bronze number has a gold number that is bigger than 1?",
    "question_th": "เลขทองแดงที่ใหญ่ที่สุดใดมีเลขทองมากกว่า 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_en": "What is the sum number of bronzes when the rank is less than 2 and the gold is less than 1?",
    "question_th": "ผลรวมของเหรียญทองแดงเมื่ออันดับน้อยกว่า 2 และทองน้อยกว่า 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_en": "Which of the largest ranks has a bronze number less than 1, a silver of 1, and a total that is more than 1?",
    "question_th": "อันดับใดที่ใหญ่ที่สุดมีจำนวนเหรียญทองแดงน้อยกว่า 1 เหรียญเงิน 1 และผลรวมมากกว่า 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_en": "What is the Average for South Carolina with an Interview less than 9.626?",
    "question_th": "ค่าเฉลี่ยของเซาท์แคโรไลนาที่มีการสัมภาษณ์น้อยกว่า 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_en": "What is the highest interview for Louisiana with an average above 9.324?",
    "question_th": "การสัมภาษณ์สูงสุดของรัฐลุยเซียนาที่มีค่าเฉลี่ยสูงกว่า 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_en": "How many people were in the crowd when Carlton was the away team?",
    "question_th": "ตอนที่คาร์ลตันเป็นทีมเยือนมีคนอยู่ในฝูงชนกี่คน?",
    "context": "CREATE TABLE table_name_43 (crowd VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_9 WHERE home_team = \"essendon\"",
    "question_en": "What was the date when the home team was Essendon?",
    "question_th": "เอสเซนดอนเจ้าบ้านนัดวันที่เท่าไหร่?",
    "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_en": "What was the away score at the game at MCG?",
    "question_th": "สกอร์ทีมเยือนในเกมที่เอ็มซีจีเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_63 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT written_by FROM table_name_68 WHERE series__number = 99",
    "question_en": "Who wrote series number 99?",
    "question_th": "ใครเป็นคนเขียนชุดหมายเลข 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_en": "What was the original air date of a series number after 78, written by Jenee V. Giles?",
    "question_th": "วันที่ออกอากาศดั้งเดิมของหมายเลขซีรีส์หลัง 78 ซึ่งเขียนโดย 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_en": "When tennis has less than 2 bronze, what is the total number of Gold?",
    "question_th": "เมื่อเทนนิสมีน้อยกว่า 2 เหรียญทองแดง จำนวนทองทั้งหมดจะเป็นเท่าใด?",
    "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_en": "When volleyball has 2 bronze, what is the total number of silver?",
    "question_th": "เมื่อวอลเล่ย์บอลมี 2 เหรียญทองแดง ได้เงินทั้งหมดเท่าไร?",
    "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_en": "When athletics has a total more than 2 and 0 gold, what is the total number of bronze?",
    "question_th": "เมื่อกรีฑามียอดรวมเกิน 2 ทอง 0 เหรียญทองแดงรวมเป็นจำนวนเท่าใด?",
    "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_en": "Which is the most recent game with an attendance larger than 65,042?",
    "question_th": "เกมล่าสุดที่มีผู้เข้าชมมากกว่า 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_en": "Which name has an Order smaller than 997,more than 5 goals, and 215 games?",
    "question_th": "ชื่อใดที่มีลำดับน้อยกว่า 997 มากกว่า 5 ประตู และ 215 เกม?",
    "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_en": "How many games have an Order of 1006, and Goals larger than 192?",
    "question_th": "มีกี่เกมที่มีลำดับ 1,006 และเป้าหมายที่มากกว่า 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 – 2007\" AND goals = 46",
    "question_en": "Which game has an order larger than 975, Seasons of 2005 – 2007, and 46 goals?",
    "question_th": "เกมใดมีลำดับมากกว่า 975 ฤดูกาลปี 2548-2550 และ 46 ประตู",
    "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_en": "What is the latest year in Annecy, France?",
    "question_th": "ปีล่าสุดใน อานเนอซี, ประเทศฝรั่งเศส คืออะไร?",
    "context": "CREATE TABLE table_name_66 (year INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT time_retired FROM table_name_61 WHERE driver = \"ivan capelli\"",
    "question_en": "What's the Time/Retired of Ivan Capelli?",
    "question_th": "Ivan Capelli เวลา / เกษียณคืออะไร?",
    "context": "CREATE TABLE table_name_61 (time_retired VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(attendance) FROM table_name_96 WHERE score = \"3 – 2\" AND date = \"january 10\"",
    "question_en": "How many people attended the game on january 10 with a Score of 3 – 2?",
    "question_th": "มีกี่คนที่เข้าร่วมเกมในวันที่ 10 มกราคมด้วยคะแนน 3 – 2?",
    "context": "CREATE TABLE table_name_96 (attendance VARCHAR, score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(attendance) FROM table_name_23 WHERE record = \"21–22–2\"",
    "question_en": "How many attended the game with a Record of 21–22–2?",
    "question_th": "มีกี่คนที่เข้าร่วมเกมด้วยสถิติ 21–22–2",
    "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_en": "What is the team's record when the NY rangers are at home with atlanta visting and lehtonen getting the decision?",
    "question_th": "อะไรคือบันทึกของทีมเมื่อทีม NY Rangers อยู่ที่บ้านโดยที่ Atlanta มาเยือนและ Lehtonen ได้รับการตัดสินใจ?",
    "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_en": "What was the time/retired for the driver with fewer than 23 laps and grid larger than 23?",
    "question_th": "เวลา/เกษียณสำหรับนักแข่งที่มีรอบน้อยกว่า 23 รอบและกริดมากกว่า 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_en": "How many laps by Jorge Lorenzo on the Aprilia with a grid bigger than 1?",
    "question_th": "Jorge Lorenzo บน Aprilia มีกริดมากกว่า 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_en": "Where was the game on March 11, 1999 played?",
    "question_th": "เกมเมื่อวันที่ 11 มีนาคม พ.ศ. 2542 เล่นที่ไหน?",
    "context": "CREATE TABLE table_name_30 (venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_95 WHERE race = \"british grand prix\"",
    "question_en": "When were the British Grand Prix races?",
    "question_th": "การแข่งขัน British Grand Prix จัดขึ้นเมื่อไหร่?",
    "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_en": "What Canadian Grand Prix race winner had Didier Pironi in Pole Position?",
    "question_th": "ผู้ชนะการแข่งขัน Canadian Grand Prix คนใดที่มี Didier Pironi อยู่ในตำแหน่งโพล?",
    "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_en": "Tell me the average top 10 for cuts made less than 10, wins less than 1 and top 25 of 5",
    "question_th": "บอกค่าเฉลี่ย 10 อันดับแรกสำหรับการตัดน้อยกว่า 10 ชนะน้อยกว่า 1 และ 25 อันดับแรกจาก 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_en": "What is the prom with Hewitt class and a Height (m) of 715?",
    "question_th": "งานพรอมระดับฮิววิตต์และความสูง (ม.) เท่ากับ 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_en": "How many laps have a Time/Retired of + 4 laps, and a Driver of graham hill?",
    "question_th": "กี่รอบมีเวลา/เกษียณ + 4 รอบ และมีคนขับของเกรแฮม ฮิลล์ 1 คน",
    "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_en": "Which Time/Retired has less than 77 laps, and a Grid of 16?",
    "question_th": "เวลาใด/เกษียณแล้วมีรอบน้อยกว่า 77 รอบ และมีตาราง 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_en": "Which Constructor has a Grid smaller than 24, more than 77 laps, and a Driver of jean-pierre beltoise?",
    "question_th": "Constructor คนใดมีกริดที่เล็กกว่า 24, มากกว่า 77 รอบ และไดรเวอร์ของ 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_en": "What's the team of the player who went to lawrence tech?",
    "question_th": "นักเตะที่ไปเรียนลอเรนซ์เทคคือทีมอะไรครับ?",
    "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_en": "Who drove the maserati under 18 laps with an oil leak that had a grid of under 14?",
    "question_th": "ใครเป็นผู้ขับ Maserati ต่ำกว่า 18 รอบโดยที่น้ำมันรั่วและมีกริดต่ำกว่า 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_en": "What is the average grid for jo siffert?",
    "question_th": "ตารางเฉลี่ยของ 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_en": "What nation has 1 bronze and 3 silvers?",
    "question_th": "ชาติใดมี 1 เหรียญทองแดง 3 เหรียญเงิน?",
    "context": "CREATE TABLE table_name_9 (nation VARCHAR, bronze VARCHAR, silver VARCHAR)"
  },
  {
    "answer": "SELECT SUM(total) FROM table_name_9 WHERE nation = \"netherlands\"",
    "question_en": "How many total medals for the netherlands?",
    "question_th": "เนเธอร์แลนด์ได้ทั้งหมดกี่เหรียญ?",
    "context": "CREATE TABLE table_name_9 (total INTEGER, nation VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_22 WHERE away_team = \"footscray\"",
    "question_en": "Which venue hosted an away team of Footscray?",
    "question_th": "สนามใดเป็นเจ้าภาพทีมเยือนของ Footscray?",
    "context": "CREATE TABLE table_name_22 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_9 WHERE college = \"murray state\"",
    "question_en": "Which player is from Murray State college?",
    "question_th": "ผู้เล่นคนไหนมาจากวิทยาลัย Murray State?",
    "context": "CREATE TABLE table_name_9 (player VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT opponent_in_the_final FROM table_name_36 WHERE year = 1888",
    "question_en": "Name the opponent in the final for year of 1888",
    "question_th": "ตั้งชื่อคู่ต่อสู้ในรอบชิงชนะเลิศประจำปี พ.ศ. 2431",
    "context": "CREATE TABLE table_name_36 (opponent_in_the_final VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_76 WHERE year = 1889",
    "question_en": "I want the tournament for 1889",
    "question_th": "ฉันต้องการการแข่งขันในปี 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_en": "On what date is Isabel cueto the opponent in the final?",
    "question_th": "อิซาเบล คูเอโต้ จะเป็นคู่แข่งในรอบชิงชนะเลิศวันไหน?",
    "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_en": "Which tournament has raffaella reggi listed as the opponent in the final?",
    "question_th": "ทัวร์นาเมนต์ใดที่ราฟฟาเอลลา เรกกีระบุว่าเป็นคู่ต่อสู้ในรอบชิงชนะเลิศ",
    "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–2, 6–3\"",
    "question_en": "What type of surface was used where the final score was 6–2, 6–3?",
    "question_th": "พื้นผิวประเภทใดที่ใช้โดยคะแนนสุดท้ายคือ 6–2, 6–3",
    "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_en": "What was the record on April 22?",
    "question_th": "บันทึกเมื่อวันที่ 22 เมษายนคืออะไร?",
    "context": "CREATE TABLE table_name_1 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_29 WHERE opponent = \"southampton\"",
    "question_en": "When was the game played against Southampton?",
    "question_th": "เกมนี้เล่นกับเซาแธมป์ตันเมื่อไหร่?",
    "context": "CREATE TABLE table_name_29 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_57 WHERE attendance = \"13,634\"",
    "question_en": "Which venue has 13,634 people in attendance?",
    "question_th": "สถานที่ใดมีผู้เข้าร่วม 13,634 คน?",
    "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_en": "When was Leyton Orient an away team?",
    "question_th": "เลย์ตัน โอเรียนท์ เป็นทีมเยือนเมื่อใด?",
    "context": "CREATE TABLE table_name_68 (date VARCHAR, opponent VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_60 WHERE date = \"may 16\"",
    "question_en": "What is the score on may 16?",
    "question_th": "คะแนนวันที่ 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_en": "What was the constructor for jo bonnier of 6 rounds?",
    "question_th": "ตัวสร้างสำหรับ jo bonnier ของ 6 รอบคืออะไร?",
    "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_en": "What was the driver with chassis of t45 t44 and rounds of 7?",
    "question_th": "คนขับที่มีแชสซีของ t45 t44 และรอบ 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_en": "What was the biggest crowd when the away team of south melbourne played there?",
    "question_th": "แฟนบอลทีมเยือนเซาท์เมลเบิร์นเล่นที่นั่นมากที่สุดคือทีมไหน?",
    "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_en": "What was the score of the away team at princes park?",
    "question_th": "ทีมเยือนที่ปริ้นเซส ปาร์คได้คะแนนเท่าไหร่?",
    "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_en": "Who was the winner with a mountain stage type on 22 May?",
    "question_th": "ใครคือผู้ชนะประเภทเวทีภูเขาในวันที่ 22 พ.ค.?",
    "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_en": "Which course had a mountain stage type on 3 June?",
    "question_th": "สนามไหนมีแบบเวทีภูเขาวันที่ 3 มิถุนายน?",
    "context": "CREATE TABLE table_name_76 (course VARCHAR, type VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_13 WHERE date = \"22 may\"",
    "question_en": "What was the course type on 22 May?",
    "question_th": "วันที่ 22 พ.ค. มีหลักสูตรอะไรบ้าง?",
    "context": "CREATE TABLE table_name_13 (type VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MIN(pick__number) FROM table_name_39 WHERE player = \"jesse alexander\"",
    "question_en": "What is the pick number of Jesse Alexander?",
    "question_th": "หมายเลขเลือกของ 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_en": "How many weeks do they have a bye?",
    "question_th": "พวกเขามีลาก่อนกี่สัปดาห์?",
    "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_en": "Which title aired on 18 dec 2006- 10 feb 2007?",
    "question_th": "หัวข้อใดออกอากาศวันที่ 18 ธันวาคม 2549-10 กุมภาพันธ์ 2550",
    "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_en": "Which genre aired on 12 feb- 9 mar?",
    "question_th": "ออกอากาศวันที่ 12 ก.พ.-9 มี.ค. แนวไหน?",
    "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_en": "Which title had 20 episodes and aired on 11 jun- 6 jul?",
    "question_th": "เรื่องไหนมี 20 ตอน ออกอากาศ 11 มิ.ย.- 6 ก.ค.?",
    "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_en": "Who was the opponent on September 17?",
    "question_th": "คู่ต่อสู้ในวันที่ 17 กันยายนคือใคร?",
    "context": "CREATE TABLE table_name_41 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_53 WHERE date = \"september 28, 1951\"",
    "question_en": "Which Opponent has a Date of september 28, 1951?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีวันที่ 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_en": "Which Attendance has a Date of november 18, 1951?",
    "question_th": "ผู้เข้าร่วมคนใดมีวันที่ 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_en": "Name the Bore x stroke of 1929-32",
    "question_th": "ตั้งชื่อ Bore x stroke ปี 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_en": "Tell me the displacement for 1935-45",
    "question_th": "บอกฉันถึงการกระจัดในปี 1935-45",
    "context": "CREATE TABLE table_name_63 (displacement VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT power FROM table_name_91 WHERE year = \"1935-45\"",
    "question_en": "Tell me the power for 1935-45",
    "question_th": "บอกพลังปี 1935-45 หน่อยสิ",
    "context": "CREATE TABLE table_name_91 (power VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT displacement FROM table_name_28 WHERE version = \"db\"",
    "question_en": "I want the displacement for version of db",
    "question_th": "ฉันต้องการการกระจัดสำหรับเวอร์ชันของ db",
    "context": "CREATE TABLE table_name_28 (displacement VARCHAR, version VARCHAR)"
  },
  {
    "answer": "SELECT version FROM table_name_71 WHERE year = \"1940-45\"",
    "question_en": "Tell me the version for 1940-45",
    "question_th": "บอกเวอร์ชั่นปี 1940-45 หน่อยสิ",
    "context": "CREATE TABLE table_name_71 (version VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_98 WHERE position = \"8th\"",
    "question_en": "What's the name of the competition in 8th position?",
    "question_th": "การแข่งขันอันดับที่ 8 ชื่ออะไร?",
    "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_en": "After 1979, where was the European Indoor Championships held?",
    "question_th": "หลังจากปี 1979 European Indoor Championships จัดขึ้นที่ไหน?",
    "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_en": "Before 1979, what position was the European Indoor Championships?",
    "question_th": "ก่อนปี 1979 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_en": "What player is picked before 2?",
    "question_th": "ผู้เล่นคนไหนถูกเลือกก่อน 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_en": "What position do the bc lions pick?",
    "question_th": "สิงโตบีซีเลือกตำแหน่งไหน?",
    "context": "CREATE TABLE table_name_22 (position VARCHAR, cfl_team VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_43 WHERE icao = \"epwa\"",
    "question_en": "Where has an ICAO of EPWA?",
    "question_th": "ICAO ของ EPWA มีที่ไหน?",
    "context": "CREATE TABLE table_name_43 (city VARCHAR, icao VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_69 WHERE iata = \"bva\"",
    "question_en": "Where has an IATA of BVA?",
    "question_th": "IATA ของ BVA มีอยู่ที่ไหน",
    "context": "CREATE TABLE table_name_69 (city VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_62 WHERE record = \"3-14-6\"",
    "question_en": "When was the record 3-14-6?",
    "question_th": "สถิติ 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_en": "What home team had a record of 4-16-7?",
    "question_th": "เจ้าบ้านทีมไหนมีสถิติ 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_en": "Which year was the film Rang Barse introduced?",
    "question_th": "ภาพยนตร์เรื่อง Rang Barse เปิดตัวในปีใด",
    "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_en": "What was the latest year for the film Gaon Ki Ganga?",
    "question_th": "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_en": "Which film was released in the year 2002?",
    "question_th": "ภาพยนตร์เรื่องใดออกฉายในปี พ.ศ. 2545?",
    "context": "CREATE TABLE table_name_63 (film_name VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT music_director FROM table_name_86 WHERE year > 2003",
    "question_en": "Name a music director, belonging to a year after 2003?",
    "question_th": "ตั้งชื่อผู้กำกับเพลงที่อยู่ในหนึ่งปีหลังจากปี 2546 หรือไม่?",
    "context": "CREATE TABLE table_name_86 (music_director VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT AVG(crowd) FROM table_name_38 WHERE away_team = \"collingwood\"",
    "question_en": "What is the average crowd when the team Collingwood was away?",
    "question_th": "ฝูงชนโดยเฉลี่ยเมื่อทีม Collingwood ไม่อยู่คือเท่าใด?",
    "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_en": "Name the first citicality for electric power of 1,380 mw",
    "question_th": "ตั้งชื่อเมืองแรกสำหรับพลังงานไฟฟ้า 1,380 เมกะวัตต์",
    "context": "CREATE TABLE table_name_3 (first_criticality VARCHAR, electric_power VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_52 WHERE engine_† = \"cosworth cr-2\" AND driver = \"luciano burti\"",
    "question_en": "What constructor has an engine of cosworth cr-2 and a driver of luciano burti?",
    "question_th": "คอนสตรัคเตอร์คนไหนมีเครื่องยนต์ cosworth cr-2 และคนขับ luciano burti?",
    "context": "CREATE TABLE table_name_52 (constructor VARCHAR, engine_† VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT tyre FROM table_name_40 WHERE engine_† = \"peugeot a20\"",
    "question_en": "What is the tyre for the peugeot a20 engine?",
    "question_th": "ยางสำหรับเครื่องยนต์ peugeot a20 คืออะไร?",
    "context": "CREATE TABLE table_name_40 (tyre VARCHAR, engine_† VARCHAR)"
  },
  {
    "answer": "SELECT entrant FROM table_name_62 WHERE constructor = \"benetton - playlife\"",
    "question_en": "Which entrant had a constructor of benetton - playlife?",
    "question_th": "ผู้เข้าร่วมคนใดมีผู้สร้าง Benetton - playlife?",
    "context": "CREATE TABLE table_name_62 (entrant VARCHAR, constructor VARCHAR)"
  },
  {
    "answer": "SELECT entrant FROM table_name_68 WHERE engine_† = \"mugen-honda mf-301 he\"",
    "question_en": "Which entrant had a mugen-honda mf-301 he engine?",
    "question_th": "ผู้เข้าแข่งขันคนใดมีเครื่องยนต์ mugen-honda mf-301",
    "context": "CREATE TABLE table_name_68 (entrant VARCHAR, engine_† VARCHAR)"
  },
  {
    "answer": "SELECT chassis FROM table_name_7 WHERE engine_† = \"playlife fb02\" AND driver = \"alexander wurz\"",
    "question_en": "What's the chassis for alexander wurz's playlife fb02 engine?",
    "question_th": "แชสซีของเครื่องยนต์ playlife fb02 ของ alexander wurz เป็นอย่างไรบ้าง",
    "context": "CREATE TABLE table_name_7 (chassis VARCHAR, engine_† VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT rounds FROM table_name_2 WHERE engine_† = \"bmw e41\" AND driver = \"jenson button\"",
    "question_en": "What's the rounds for jenson button with a bmw e41 engine?",
    "question_th": "ปุ่มเจนสันกับเครื่องbmw e41 อยู่รอบไหนครับ?",
    "context": "CREATE TABLE table_name_2 (rounds VARCHAR, engine_† VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT res FROM table_name_97 WHERE event = \"pfc: put up or shut up\"",
    "question_en": "What is the result for pfc: put up or shut up?",
    "question_th": "ผลลัพธ์ของ pfc คืออะไร: วางหรือหุบปาก?",
    "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_en": "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?",
    "question_th": "รหัสการผลิตของตอนที่เขียนโดย Gary Sturgis ซึ่งใหญ่กว่าหมายเลขซีซัน 23 และเล็กกว่าหมายเลขซีรีส์ 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_en": "Which rounds had the B195 chassis?",
    "question_th": "รอบไหนมีแชสซี B195?",
    "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_en": "Who was the driver of the Ford EDB 3.0 v8 engine?",
    "question_th": "ใครคือคนขับรถของเครื่องยนต์ Ford EDB 3.0 v8?",
    "context": "CREATE TABLE table_name_82 (driver VARCHAR, engine VARCHAR)"
  },
  {
    "answer": "SELECT MAX(grid) FROM table_name_94 WHERE laps = 38",
    "question_en": "I want the highest grid for Laps of 38",
    "question_th": "ฉันต้องการกริดสูงสุดในรอบ 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_en": "Tell me the constructor for Grid more than 4 and drivers being heinz-harald frentzen",
    "question_th": "บอกผมหน่อยว่าคอนสตรัคเตอร์ของกริดมากกว่า 4 ตัวและไดรเวอร์ของไฮนซ์-ฮาราลด์มันบ้าขนาดไหน",
    "context": "CREATE TABLE table_name_57 (constructor VARCHAR, grid VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT MAX(population) FROM table_name_13 WHERE town_city = \"ivaiporã, pr\"",
    "question_en": "What is Ivaiporã, pr's biggest population?",
    "question_th": "Ivaiporâ ซึ่งเป็นประชากรที่ใหญ่ที่สุดของ pr คืออะไร?",
    "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_en": "Which is the smallest First year when the population is 32,645?",
    "question_th": "ปีแรกที่มีจำนวนประชากร 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_en": "Which Jushin Liger has a Super Shocker of liger (13:59)?",
    "question_th": "Jushin Liger ตัวไหนมี Super Shocker ของไลเกอร์ (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_en": "Which Masaaki Mochizuki has a Gran Hamada of hamada (10:47)?",
    "question_th": "Masaaki Mochizuki ตัวไหนมี Gran Hamada ของ 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_en": "Which Tatsuhito Takaiwa has a Koji Kanemoto of liger (20:29)?",
    "question_th": "ทัตสึฮิโตะ ทาคาอิวะ คนไหนมีโคจิ คาเนโมโตะ ไลเกอร์ (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_en": "Which Gran Hamada has a Block A of tatsuhito takaiwa?",
    "question_th": "Gran Hamada ตัวไหนมี Block A ของ 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_en": "Which Jushin Liger has a Gran Hamada of kendo kashin?",
    "question_th": "Jushin Liger ตัวไหนมี Gran Hamada ของ 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_en": "Which Jushin Liger has a Masaaki Mochizuki of kashin (10:00)?",
    "question_th": "Jushin Liger คนไหนมี Masaaki Mochizuki ของคาชิน (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_en": "What is the code for Saint-Damien in Matawinie with a type p?",
    "question_th": "รหัสของ Saint-Damien ใน Matawinie ชนิด 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_en": "What is the name for the regional county municipality of d'autray and a code less than 52017?",
    "question_th": "ชื่อของเทศบาลเขตภูมิภาค d'autray และรหัสน้อยกว่า 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_en": "Which Delivery has a Name of quince?",
    "question_th": "ซึ่ง Delivery มีชื่อ 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_en": "Which Elevation + Height has a Delivery of barge and a Location of bikini, yurochi aka irioj (dog)?",
    "question_th": "ระดับความสูง + ความสูงใดที่มีการจัดส่งเรือและตำแหน่งของบิกินี่ yurochi หรือที่รู้จักในชื่อ irioj (สุนัข)",
    "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_en": "Which Purpose has a Location of enewetak, runit (yvonne) and the Name of cactus?",
    "question_th": "จุดประสงค์ใดมีที่ตั้งของ enewetak, runit (yvonne) และชื่อของกระบองเพชร?",
    "context": "CREATE TABLE table_name_96 (purpose VARCHAR, location VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT purpose FROM table_name_49 WHERE name = \"oak\"",
    "question_en": "Which Purpose has a Name of oak?",
    "question_th": "วัตถุประสงค์ใดมีชื่อไม้โอ๊ค?",
    "context": "CREATE TABLE table_name_49 (purpose VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_77 WHERE delivery = \"barge\" AND name = \"scaevola\"",
    "question_en": "What Location has a Delivery of barge and the Name of scaevola?",
    "question_th": "สถานที่ใดมีเรือขนส่งและชื่อของสกาเอโวลา",
    "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_en": "Which Purpose has an Elevation + Height of 0 + metres (ft), a Location of bikini, namu (charlie), and a Yield of 220 kt?",
    "question_th": "จุดประสงค์ใดมีระดับความสูง + ความสูง 0 + เมตร (ฟุต) ตำแหน่งบิกินี่ นามู (ชาร์ลี) และผลผลิต 220 นอต",
    "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_en": "Who was the colour commmentator that broadcasted along with the Play-by-play of bob cole?",
    "question_th": "ใครคือผู้บรรยายสีที่ออกอากาศพร้อมกับการเล่นแบบ Play-by-Play ของ 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_en": "Which network had the host of john wells?",
    "question_th": "เครือข่ายใดมีโฮสต์ของ 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_en": "Who manufactured the vehicle withdrawn after 1932?",
    "question_th": "ใครเป็นคนผลิตรถที่ถูกถอดออกหลังปี 1932?",
    "context": "CREATE TABLE table_name_24 (manufacturer VARCHAR, year_withdrawn INTEGER)"
  },
  {
    "answer": "SELECT manufacturer FROM table_name_52 WHERE year_withdrawn = 1927",
    "question_en": "Who manufactured the vehicle that was withdrawn in 1927?",
    "question_th": "ใครเป็นผู้ผลิตยานพาหนะที่ถูกถอนออกในปี พ.ศ. 2470",
    "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_en": "What is the total number of losses for the Team of Montreal with Goals For larger than 29?",
    "question_th": "จำนวนการแพ้ทั้งหมดของทีมมอนทรีออลที่ทำได้มากกว่า 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_en": "What is the average Goals For for a team that has more Wins than 8?",
    "question_th": "ประตูเฉลี่ยสำหรับทีมที่ชนะมากกว่า 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_en": "What is the largest number of Games Played with Losses of 3, and more Wins than 5?",
    "question_th": "จำนวนเกมที่เล่นมากที่สุดโดยแพ้ 3 เกมและชนะมากกว่า 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_en": "What are the number of Ties for games with Goals Against smaller than 33?",
    "question_th": "จำนวนการเสมอกันสำหรับเกมที่มีประตูน้อยกว่า 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_en": "What is the number of Goals For for Games Played more than 8?",
    "question_th": "จำนวนประตูสำหรับเกมที่เล่นมากกว่า 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_en": "What party is class 1 in wisconsin?",
    "question_th": "พรรคใดเป็นคลาส 1 ในรัฐวิสคอนซิน",
    "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_en": "What state was maria cantwell born in after 1955?",
    "question_th": "มาเรีย แคนต์เวลล์เกิดที่รัฐใดหลังปี 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_en": "Name the sum of Laps for lance reventlow with grid more than 16",
    "question_th": "ตั้งชื่อผลรวมของ Laps สำหรับ lance reventlow ที่มีกริดมากกว่า 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_en": "Tell me the constructor that has 35 Laps with a grid more than 5",
    "question_th": "บอกคอนสตรัคเตอร์ที่มี 35 รอบและมีตารางมากกว่า 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_en": "What is the total number of Grids for Chuck Daigh?",
    "question_th": "จำนวนกริดทั้งหมดสำหรับ 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_en": "What party is Marie-Dominique Simonet part of?",
    "question_th": "Marie-Dominique Simonet เป็นส่วนหนึ่งของพรรคใด",
    "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_en": "Which vehicle has a Diagram of 516 or smaller, and a driving motor brake second (dmbs) type.",
    "question_th": "ยานพาหนะคันใดมีไดอะแกรม 516 หรือเล็กกว่า และประเภทเบรกมอเตอร์เบรกวินาที (dmbs)",
    "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_en": "What's the lowest total when the floor exercise is less than 36.724 and the rank is lower than 8?",
    "question_th": "ผลรวมต่ำสุดเมื่อออกกำลังกายบนพื้นน้อยกว่า 36.724 และอันดับต่ำกว่า 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_en": "What is the average number scored in a friendly at kryoia soveto, moscow?",
    "question_th": "ค่าเฉลี่ยของคะแนนในเกมกระชับมิตรที่ไครโอยา โซเวโต มอสโกคือเท่าไร?",
    "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_en": "What is the home teams score when north melbourne is the away team?",
    "question_th": "เจ้าบ้านมีสกอร์เท่าไหร่เมื่อเมลเบิร์นเหนือเป็นทีมเยือน?",
    "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_en": "What is the highest crowd when fitzroy is the home team?",
    "question_th": "ฟิตซ์รอยเป็นเจ้าบ้านคนไหนเยอะสุด?",
    "context": "CREATE TABLE table_name_24 (crowd INTEGER, home_team VARCHAR)"
  },
  {
    "answer": "SELECT MIN(crowd) FROM table_name_78 WHERE away_team = \"essendon\"",
    "question_en": "What is the lowest crowd when essendon is the away team?",
    "question_th": "เมื่อเอสเซนดอนเป็นทีมเยือนมีผู้ชมน้อยที่สุดคือทีมใด?",
    "context": "CREATE TABLE table_name_78 (crowd INTEGER, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_57 WHERE away_team = \"essendon\"",
    "question_en": "On what date was essendon the away team?",
    "question_th": "เอสเซนดอนออกไปเยือนทีมเยือนวันไหน?",
    "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_en": "What is the year when chief justice Mark Cady was appointed/elected?",
    "question_th": "ปีที่หัวหน้าผู้พิพากษา มาร์ค เคดี้ ได้รับการแต่งตั้ง/เลือกคือปีใด",
    "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_en": "What is the expiring term for Daryl Hecht when the appointing governor is Tom Vilsack?",
    "question_th": "Daryl Hecht จะหมดอายุเมื่อผู้ว่าการรัฐที่ได้รับการแต่งตั้งคือ 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_en": "Which person has an expiring term of December 31, 2020, and has Terry Branstad as the appointing governor?",
    "question_th": "บุคคลใดมีวาระสิ้นสุดในวันที่ 31 ธันวาคม 2563 และมีเทอร์รี แบรนสตัดเป็นผู้ว่าการที่แต่งตั้ง",
    "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_en": "Who has a term that expires on December 31, 2020 and Terry Branstad for an appointing governor?",
    "question_th": "ใครมีวาระที่จะหมดลงในวันที่ 31 ธันวาคม 2020 และเทอร์รี่ แบรนสตัดเป็นผู้ว่าการที่แต่งตั้ง?",
    "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_en": "What team picked 80?",
    "question_th": "ทีมไหนเลือก 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_en": "What is the away team that plays at Punt Road Oval?",
    "question_th": "ทีมเยือนเล่นที่พันท์ โร้ด โอวัลคือทีมไหน?",
    "context": "CREATE TABLE table_name_43 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_24 WHERE away_team = \"footscray\"",
    "question_en": "What date did Footscray play and Away game?",
    "question_th": "Footscray ลงเล่นและเกมเยือนวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_24 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT AVG(total) FROM table_name_82 WHERE tournament < 0",
    "question_en": "Name the average total for tournament less than 0",
    "question_th": "ตั้งชื่อผลรวมเฉลี่ยสำหรับทัวร์นาเมนต์น้อยกว่า 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_en": "Name the highest total for the tournament more than 0 and regular season after 8",
    "question_th": "ตั้งชื่อผลรวมสูงสุดสำหรับทัวร์นาเมนต์มากกว่า 0 และฤดูกาลปกติหลัง 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_en": "What was the number in attendance for the Detroit Lions game?",
    "question_th": "จำนวนผู้เข้าร่วมเกม Detroit Lions คือเท่าใด",
    "context": "CREATE TABLE table_name_21 (attendance VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_73 WHERE attendance = \"67,472\"",
    "question_en": "Which date had 67,472 in attendance?",
    "question_th": "มีผู้เข้าร่วม 67,472 คนในวันไหน?",
    "context": "CREATE TABLE table_name_73 (date VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_23 WHERE date = \"september 30, 1990\"",
    "question_en": "Who was the opponent team on September 30, 1990?",
    "question_th": "ทีมคู่ต่อสู้คือใครเมื่อวันที่ 30 กันยายน พ.ศ. 2533?",
    "context": "CREATE TABLE table_name_23 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_60 WHERE week = \"8\"",
    "question_en": "What was the team record by Week 8?",
    "question_th": "บันทึกของทีมในสัปดาห์ที่ 8 คืออะไร?",
    "context": "CREATE TABLE table_name_60 (record VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_32 WHERE game_site = \"candlestick park\"",
    "question_en": "Which week has Game site of Candlestick Park?",
    "question_th": "สัปดาห์ไหนมีเว็บไซต์เกมของ 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_en": "What is the attandance figure on October 7, 1990?",
    "question_th": "ตัวเลขการเข้างานในวันที่ 7 ตุลาคม 2533 เป็นเท่าใด?",
    "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_en": "What driver was the winner when constructor was Maserati at the Monaco grand prix?",
    "question_th": "นักแข่งคนไหนเป็นผู้ชนะเมื่อผู้สร้างคือ Maserati ในการแข่งขัน 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_en": "What circuit did Juan Manuel Fangio have the fastest lap at the german grand prix?",
    "question_th": "Juan Manuel Fangio มีรอบเร็วที่สุดในการแข่งขันกรังด์ปรีซ์เยอรมันในสนามใด",
    "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_en": "What circuit was for the german grand prix?",
    "question_th": "สนามอะไรคือสนามแข่งเยอรมันกรังด์ปรีซ์?",
    "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_en": "What is the total attendance for Detroit on hasek?",
    "question_th": "การเข้าร่วมของ 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_en": "What was the method used when the opponent was Tyson Griffin?",
    "question_th": "เมื่อคู่ต่อสู้คือไทสัน กริฟฟิน ใช้วิธีการใด?",
    "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_en": "Who wins the clive churchill medal when the losing team is the sydney roosters in 2010?",
    "question_th": "ใครชนะเหรียญรางวัลไคลฟ์ เชอร์ชิลล์ ในเมื่อทีมที่แพ้คือทีมซิดนีย์เจื้อยแจ้วในปี 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_en": "What is the grand final date for the game with a score or 30-24?",
    "question_th": "สกอร์ 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–1\"",
    "question_en": "What competition in 2003 has a score of 2–1?",
    "question_th": "การแข่งขันใดในปี 2546 มีคะแนน 2–1",
    "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_en": "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?",
    "question_th": "คะแนนของปีที่น้อยกว่าปี 2008 โดยผลการแข่งขันคือเท่าไร ในอันตัลยาและการแข่งขันโซนยุโรป/แอฟริกา กลุ่ม i ราวด์โรบิน",
    "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–2\"",
    "question_en": "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–2?",
    "question_th": "การแข่งขันโซนยุโรป/แอฟริกา, กลุ่ม i, ราวด์โรบิน, ผลการแพ้, ที่อันตัลยา คือวันที่ใด และสกอร์ 1–2?",
    "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_en": "Where did Essendon play as the away team?",
    "question_th": "เอสเซนดอนเล่นทีมเยือนที่ไหน?",
    "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_en": "Which team has a Losses value larger than 1 and a Wins value smaller than 0?",
    "question_th": "ทีมใดมีค่าความสูญเสียมากกว่า 1 และค่าชัยชนะน้อยกว่า 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_en": "In guangzhou, who won the game with a score of 1-0?",
    "question_th": "ที่กวางโจวใครชนะด้วยสกอร์ 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_en": "On 2006-03-13 in the algarve cup, who won?",
    "question_th": "ฤดูกาล 2006-03-13 ในอัลการ์ฟ คัพ ใครชนะ?",
    "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_en": "Who won on 2007-04-14",
    "question_th": "ใครชนะเมื่อ 14-04-2550",
    "context": "CREATE TABLE table_name_66 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_96 WHERE visitor = \"mavericks\"",
    "question_en": "Name the record when the visitor is mavericks",
    "question_th": "ตั้งชื่อบันทึกเมื่อผู้เยี่ยมชมไม่ฝักใฝ่ฝ่ายใด",
    "context": "CREATE TABLE table_name_96 (record VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_29 WHERE visitor = \"nets\"",
    "question_en": "Name the date when the visitor is nets",
    "question_th": "ตั้งชื่อวันที่ผู้มาเยี่ยมเป็นชาวเน็ต",
    "context": "CREATE TABLE table_name_29 (date VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_28 WHERE player = \"john sullivan\"",
    "question_en": "What college did john sullivan attend?",
    "question_th": "จอห์น ซัลลิแวนเข้าเรียนที่วิทยาลัยใด",
    "context": "CREATE TABLE table_name_28 (college VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(avg) FROM table_name_7 WHERE long = 8",
    "question_en": "What is the average for the RB with an 8 yard long?",
    "question_th": "ค่าเฉลี่ยของ RB ที่มีความยาว 8 หลาคือเท่าไร?",
    "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_en": "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?",
    "question_th": "คะแนนชุดราตรีเฉลี่ยของผู้เข้าแข่งขันจากนิวยอร์กที่มีคะแนนชุดว่ายน้ำน้อยกว่า 8.703 และรอบคัดเลือกมากกว่า 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_en": "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?",
    "question_th": "ผลเบื้องต้นผู้เข้าแข่งขันจากแมสซาชูเซตส์ที่มีชุดราตรีสูงกว่า 8.631 ค่าเฉลี่ยน้อยกว่า 8.791 และบทสัมภาษณ์สูงกว่า 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_en": "What is the preliminaries of the contestant with a swimsuit less than 8.948 and an interview of 8.997?",
    "question_th": "รอบเบื้องต้นผู้เข้าแข่งขันที่มีชุดว่ายน้ำน้อยกว่า 8.948 และสัมภาษณ์ 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_en": "What is the lowest interview of the contestant with an evening gown bigger than 9.343?",
    "question_th": "บทสัมภาษณ์ต่ำสุดของผู้เข้าแข่งขันที่มีชุดราตรีใหญ่กว่า 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_en": "What is the evening gown score of the contestant from the District of Columbia with preliminaries smaller than 8.647?",
    "question_th": "คะแนนชุดราตรีของผู้เข้าแข่งขันจากดิสตริกต์ออฟโคลัมเบียที่รอบคัดเลือกต่ำกว่า 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_en": "who is the driver that has laps more than 35 and the constructor is ferrari?",
    "question_th": "ใครคือคนขับที่มีรอบมากกว่า 35 และคอนสตรัคเตอร์คือเฟอร์รารี?",
    "context": "CREATE TABLE table_name_51 (driver VARCHAR, laps VARCHAR, constructor VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_69 WHERE date = \"december 11\"",
    "question_en": "What is the Team with a Date with december 11?",
    "question_th": "ทีมที่มีเดทกับวันที่ 11 ธันวาคมคืออะไร?",
    "context": "CREATE TABLE table_name_69 (team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_35 WHERE team = \"@ houston\"",
    "question_en": "What is the Score with a Team with @ houston?",
    "question_th": "คะแนนกับทีมที่มี @ houston คืออะไร?",
    "context": "CREATE TABLE table_name_35 (score VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_name_95 WHERE team = \"boston\"",
    "question_en": "What is the High points with a Team with boston?",
    "question_th": "แต้มสูงสุดกับทีมบอสตันคืออะไร?",
    "context": "CREATE TABLE table_name_95 (high_points VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_97 WHERE date = \"december 9\"",
    "question_en": "What is the Record with a Date with december 9?",
    "question_th": "บันทึกที่มีวันที่ 9 ธันวาคมคืออะไร?",
    "context": "CREATE TABLE table_name_97 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT reign_ended FROM table_name_72 WHERE country = \"egypt\"",
    "question_en": "Whose reign ended in Egypt?",
    "question_th": "รัชสมัยของใครสิ้นสุดลงในอียิปต์?",
    "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_en": "Whose reign ended in Afghanistan after 3 days?",
    "question_th": "รัชกาลของใครสิ้นสุดในอัฟกานิสถานหลังจาก 3 วัน?",
    "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_en": "Whose reign began in Vietnam and ended in October 1005?",
    "question_th": "รัชสมัยของใครเริ่มขึ้นในเวียดนามและสิ้นสุดในเดือนตุลาคม พ.ศ. 1548",
    "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_en": "When did Pharaoh Seth's reign end?",
    "question_th": "การครองราชย์ของฟาโรห์เสธสิ้นสุดเมื่อใด",
    "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_en": "What did the home team score at MCG?",
    "question_th": "เจ้าบ้านทำคะแนนที่เอ็มซีจีได้เท่าไหร่?",
    "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_en": "What did the away team score in the game with a crowd size larger than 22,000?",
    "question_th": "ทีมเยือนได้คะแนนอะไรในเกมที่มีจำนวนผู้ชมมากกว่า 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_en": "What was the largest crowd size at a South Melbourne home game?",
    "question_th": "จำนวนผู้ชมที่ใหญ่ที่สุดในเกมเหย้าของเซาท์ เมลเบิร์น คือเท่าใด?",
    "context": "CREATE TABLE table_name_5 (crowd INTEGER, home_team VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_23 WHERE date = \"august 18\"",
    "question_en": "What is the record on august 18?",
    "question_th": "บันทึกเมื่อวันที่ 18 สิงหาคมคืออะไร?",
    "context": "CREATE TABLE table_name_23 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_26 WHERE date = \"august 1\"",
    "question_en": "Name the score on august 1",
    "question_th": "แจ้งชื่อคะแนนวันที่ 1 ส.ค",
    "context": "CREATE TABLE table_name_26 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(place) FROM table_name_69 WHERE points = 18",
    "question_en": "how many times was the points 18?",
    "question_th": "แต้ม 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_en": "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?",
    "question_th": "จำนวนคะแนนเมื่อสถานที่น้อยกว่า 7, การจับฉลากมากกว่า 2 และศิลปินก็เยี่ยมมาก?",
    "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_en": "Who was the Constructor when the Grid was 2?",
    "question_th": "ใครคือผู้สร้างเมื่อกริดอายุ 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_en": "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?",
    "question_th": "เวลาใด/เกษียณอายุของนักขับ Masten Gregory Carroll Shelby เมื่อผู้สร้างคือ Maserati ตารางมีขนาดใหญ่กว่า 10 และมีมากกว่า 2 รอบ",
    "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_en": "What was the average grid at the time Vanwall was constructor and there were 17 laps?",
    "question_th": "ตารางเฉลี่ย ณ เวลาที่ Vanwall เป็นคนสร้างคืออะไร และมี 17 รอบ?",
    "context": "CREATE TABLE table_name_3 (grid INTEGER, constructor VARCHAR, laps VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_1 WHERE score = \"7–6(4), 6–4\"",
    "question_en": "Who wins with a score 7–6(4), 6–4",
    "question_th": "ใครชนะด้วยคะแนน 7–6(4), 6–4",
    "context": "CREATE TABLE table_name_1 (winner VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT runner_up FROM table_name_95 WHERE tournament = \"seiersberg\"",
    "question_en": "Who is the Runner-up in Tournament of seiersberg",
    "question_th": "ใครคือรองชนะเลิศในการแข่งขัน 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_en": "Who constructed the car that retired due to brakes with a grid larger than 17?",
    "question_th": "ใครเป็นคนสร้างรถที่เลิกใช้เพราะเบรกที่มีตะแกรงใหญ่กว่า 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_en": "How many laps for grid 25?",
    "question_th": "กริด 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_en": "What is the time/retired for the car with over 9 laps and a grid of 6?",
    "question_th": "เวลา/เกษียณสำหรับรถที่มีมากกว่า 9 รอบและตารางที่ 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_en": "Which Mac OSX's GNU/Linux was yes when Windows was no?",
    "question_th": "GNU/Linux ของ Mac OSX ตัวใดที่ใช่เมื่อ Windows ไม่ใช่",
    "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_en": "Which Mac OSX had no haiku and a client that was dc++?",
    "question_th": "Mac OSX ตัวใดที่ไม่มีไฮกุและไคลเอนต์ที่เป็น 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_en": "Which GNU/Linux had no haiku and a client of airdc++?",
    "question_th": "GNU/Linux ตัวไหนที่ไม่มีไฮกุและไคลเอนต์ของ 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_en": "Which client had no GNU/Linux?",
    "question_th": "ลูกค้ารายใดที่ไม่มี GNU/Linux",
    "context": "CREATE TABLE table_name_36 (client VARCHAR, gnu_linux VARCHAR)"
  },
  {
    "answer": "SELECT laps FROM table_name_50 WHERE grid = 12",
    "question_en": "How many laps for grid 12?",
    "question_th": "กริด 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_en": "Who built the 21 grid car that retired due to suspension?",
    "question_th": "ใครเป็นผู้สร้างรถ 21 กริดที่เลิกใช้เนื่องจากการระงับ?",
    "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_en": "What is the low rank for hale irwin with under 32 wins?",
    "question_th": "อันดับต่ำของ hale irwin ที่ชนะต่ำกว่า 32 ครั้งคือเท่าไร?",
    "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_en": "How much has dave stockton earned?",
    "question_th": "Dave Stockton มีรายได้เท่าไหร่?",
    "context": "CREATE TABLE table_name_41 (earnings__ INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_65 WHERE venue = \"princes park\"",
    "question_en": "When was the game at Princes Park?",
    "question_th": "เกมที่ 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_en": "What was Collingwood's away team score?",
    "question_th": "คะแนนทีมเยือนของคอลลิงวูดเป็นเท่าไหร่?",
    "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_en": "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?",
    "question_th": "ถ้าฤดูกาลก่อนปี 2000 รองชนะเลิศคือเมลเบิร์นเหนือ และถ้วยพรีซีซั่น ผู้เข้าร่วมจะคิดเป็นจำนวนเท่าใด",
    "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_en": "What were the original teams for the season that was won by Danni Allen?",
    "question_th": "ทีมดั้งเดิมในฤดูกาลที่ 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_en": "What were the original teams for the season that was won at-home by Mark Pinkhasovich?",
    "question_th": "ทีมดั้งเดิมในฤดูกาลนี้ที่มาร์ค พิงกาโซวิช ชนะในบ้านคือทีมใดบ้าง?",
    "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_en": "Who won the season when Pete Thomas was the At-Home winner?",
    "question_th": "ใครเป็นผู้ชนะในฤดูกาลนี้เมื่อพีท โธมัสเป็นผู้ชนะในบ้าน?",
    "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_en": "What was the premiere date of the season won by Matt Hoover?",
    "question_th": "วันที่รอบปฐมทัศน์ของฤดูกาลที่ 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_en": "What is the name of the season won by John Rhode?",
    "question_th": "ฤดูกาลที่ชนะโดย 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_en": "What were the original teams for The Biggest Loser (Season 1)?",
    "question_th": "ทีมดั้งเดิมของ The Biggest Loser (ซีซั่น 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_en": "In what venue did the 1982 FIFA World Cup Qualification take place?",
    "question_th": "ฟุตบอลโลกรอบคัดเลือก 1982 จัดขึ้นที่ใด?",
    "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_en": "In what venue was the 1978 FIFA world cup qualification played in?",
    "question_th": "ฟุตบอลโลก 1978 รอบคัดเลือก จัดขึ้นที่สถานที่ใด?",
    "context": "CREATE TABLE table_name_48 (venue VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_22 WHERE date = \"july 8\"",
    "question_en": "Who did the Red Sox play against on July 8?",
    "question_th": "เรดซอกซ์เล่นกับใครในวันที่ 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_en": "Tell me the lowest goals for second row and points more than 12",
    "question_th": "บอกเป้าหมายต่ำสุดสำหรับแถวที่สองและคะแนนมากกว่า 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_en": "I want the lowest points for tries of 39 and goals more than 0",
    "question_th": "ฉันต้องการคะแนนต่ำสุดสำหรับการพยายาม 39 ครั้งและประตูมากกว่า 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_en": "Who was the opponent at Baum Stadium on April 6?",
    "question_th": "คู่ต่อสู้ที่บอม สเตเดี้ยม เมื่อวันที่ 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_en": "How many people were in attendance on March 4?",
    "question_th": "วันที่ 4 มีนาคม มีผู้เข้าร่วมกี่คน?",
    "context": "CREATE TABLE table_name_31 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT site_stadium FROM table_name_21 WHERE date = \"march 23\"",
    "question_en": "On March 23, what is the site/stadium?",
    "question_th": "วันที่ 23 มีนาคม สนาม/สนามกีฬา คืออะไร?",
    "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_en": "On what date was Kentucky the opponent, and Ragle lost?",
    "question_th": "คู่ต่อสู้ในรัฐเคนตักกี้คือวันไหนและ Ragle แพ้?",
    "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_en": "Which site/stadium was the score 1-2?",
    "question_th": "สนาม/สนามใดที่ได้คะแนน 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_en": "Who was the opponent at Lindsey Nelson Stadium?",
    "question_th": "คู่ต่อสู้ที่สนามลินด์เซย์ เนลสัน สเตเดี้ยมคือใคร?",
    "context": "CREATE TABLE table_name_73 (opponent VARCHAR, site_stadium VARCHAR)"
  },
  {
    "answer": "SELECT pick FROM table_name_34 WHERE position = \"defensive end\"",
    "question_en": "Which pick number resulted in a defensive end?",
    "question_th": "การเลือกหมายเลขใดส่งผลให้มีการป้องกัน?",
    "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_en": "In the game where the home team is collingwood, what is the score of the away team?",
    "question_th": "ในเกมที่เจ้าบ้านเจอ คอลลิงวูด ทีมเยือนได้สกอร์เท่าไหร่?",
    "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_en": "What is the size of the biggest crowd for a game where Fitzroy was the away team?",
    "question_th": "ขนาดของฝูงชนที่ใหญ่ที่สุดสำหรับเกมที่ฟิตซ์รอยเป็นทีมเยือนคือเท่าไร?",
    "context": "CREATE TABLE table_name_29 (crowd INTEGER, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_48 WHERE away_team = \"footscray\"",
    "question_en": "On which date did Footscray play an away game?",
    "question_th": "ฟุตสเครย์เล่นเกมเยือนวันไหน?",
    "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_en": "If the Home team was st kilda, what was the score of the Away team they played?",
    "question_th": "ถ้าทีมเหย้าคือเซนท์คิลดา ทีมเยือนที่พวกเขาเล่นเป็นคะแนนเท่าไหร่?",
    "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_en": "When the Home team of geelong played, what was their lowest Crowd number?",
    "question_th": "เมื่อทีมเจ้าบ้านจีลองลงเล่น จำนวนฝูงชนต่ำสุดคือเท่าไร?",
    "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_en": "Which Away team played when they had a Crowd of over 29,000 people?",
    "question_th": "ทีมเยือนทีมไหนเล่นเมื่อมีผู้ชมมากกว่า 29,000 คน?",
    "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_en": "What is the average of the player with 124 yards and less than 13 rec.?",
    "question_th": "ค่าเฉลี่ยของผู้เล่นที่ระยะ 124 หลาและน้อยกว่า 13 รอบเป็นเท่าใด?",
    "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_en": "On September 25, 1994 what was the final score?",
    "question_th": "วันที่ 25 กันยายน พ.ศ. 2537 ผลคะแนนสุดท้ายเป็นอย่างไร?",
    "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_en": "On the final date of April 5, 1995, what was the score?",
    "question_th": "รอบชิงชนะเลิศ วันที่ 5 เมษายน 2538 คะแนนเป็นอย่างไรบ้าง?",
    "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_en": "Who was Geelong's home opponent?",
    "question_th": "คู่ต่อสู้ในบ้านของจีลองคือใคร?",
    "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_en": "What is the date against the Tampa bay Storm?",
    "question_th": "วันที่กับพายุแทมปาเบย์คือวันที่เท่าไร?",
    "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_en": "What's the result when the kickoff was 4:00 and the record was 4-8?",
    "question_th": "ผลการแข่งขันเมื่อเวลาคิกออฟคือ 4:00 น. และสถิติคือ 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_en": "Who was the opponent for the giants stadium game?",
    "question_th": "ใครคือคู่ต่อสู้ในเกมสนามยักษ์ใหญ่?",
    "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_en": "What date had a kickoff of 1:00 and a result of l 27-14?",
    "question_th": "วันที่ใดที่คิกออฟเวลา 01.00 น. และผล 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_en": "When was the record 3-3?",
    "question_th": "สถิติ 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_en": "When the result was l 13-7 ot, who was the opponent?",
    "question_th": "เมื่อผลออกมาเป็น l 13-7 โอที คู่ต่อสู้คือใคร?",
    "context": "CREATE TABLE table_name_27 (opponent VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT model FROM table_name_51 WHERE chipset = \"intel q43\"",
    "question_en": "What model number had a chipset of intel q43?",
    "question_th": "หมายเลขรุ่นใดที่มีชิปเซ็ต 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_en": "What is the form factor with a model name of precision m50?",
    "question_th": "ฟอร์มแฟคเตอร์ที่มีชื่อรุ่น 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_en": "Whas is the released date of the memory type ddr2-667?",
    "question_th": "หน่วยความจำประเภท 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_en": "what is the release date of the model precision m60?",
    "question_th": "รุ่น 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_en": "What is the record of the game with Rudy Gay (20) as the leading scorer?",
    "question_th": "สถิติเกมที่รูดี้ เกย์ (20) เป็นผู้ทำประตูสูงสุดเป็นอย่างไรบ้าง?",
    "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_en": "What is the visitor team of the game with Rudy Gay (18) as the leading scorer?",
    "question_th": "ทีมเยือนของเกมนี้คือทีมไหน โดยมี รูดี้ เกย์ (18) เป็นผู้ทำประตูนำ?",
    "context": "CREATE TABLE table_name_96 (visitor VARCHAR, leading_scorer VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_78 WHERE date = \"1 december 2007\"",
    "question_en": "What is the score on the 1 December 2007 game?",
    "question_th": "คะแนนในเกมวันที่ 1 ธันวาคม 2550 เป็นเท่าไหร่?",
    "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_en": "What is the score of the game with Grizzlies as the visitor team on 30 December 2007?",
    "question_th": "คะแนนของเกมที่กริซลี่ส์เป็นทีมเยือนเมื่อวันที่ 30 ธันวาคม พ.ศ. 2550 เป็นเท่าใด",
    "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_en": "What is the lowest draw that has 5 losses and byes greater than 0?",
    "question_th": "เสมอต่ำสุดที่มีการแพ้ 5 ครั้งและบายมากกว่า 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_en": "What is the lowest draw that is greater than 0 and byes greater than 0?",
    "question_th": "การจับฉลากต่ำสุดที่มากกว่า 0 และบายมากกว่า 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_en": "What is the total number of byes that has 13 losses and wins less than 5?",
    "question_th": "จำนวนบายทั้งหมดที่มีการแพ้ 13 ครั้งและชนะน้อยกว่า 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_en": "What is the total number of byes that has 1 draw and an against of 1374?",
    "question_th": "จำนวนบายทั้งหมดที่มีการเสมอ 1 ครั้งและต่อ 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_en": "What is the total number of byes that has 11 wins and a Tallangatta DFL of Barnawartha?",
    "question_th": "จำนวนบายทั้งหมดที่ชนะ 11 ครั้งและ Tallangatta DFL ของ 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_en": "When did the Summer Olympics occur in Tokyo?",
    "question_th": "โอลิมปิกฤดูร้อนจัดขึ้นที่โตเกียวเมื่อใด",
    "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_en": "What is the Current status of Callander Coal company grey?",
    "question_th": "สถานะปัจจุบันของ บริษัท Callander Coal สีเทาคืออะไร?",
    "context": "CREATE TABLE table_name_70 (current_status VARCHAR, livery VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_32 WHERE livery = \"kinneil sandy red\"",
    "question_en": "When was the livery of Kinneil Sandy Red?",
    "question_th": "องค์ของ 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_en": "What is the name and number in 1962 when livery was Br Bauxite?",
    "question_th": "ชื่อและหมายเลขในปี พ.ศ. 2505 เมื่อองค์เป็น 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_en": "What is the name and number in 1964?",
    "question_th": "ชื่อและหมายเลขในปี 2507 คืออะไร?",
    "context": "CREATE TABLE table_name_1 (number_ VARCHAR, _name VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT description FROM table_name_81 WHERE livery = \"br grey\"",
    "question_en": "What is the description for the livery Br Grey?",
    "question_th": "รายละเอียดสินค้าของ 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_en": "Which is least lap is mika salo in?",
    "question_th": "มิก้า ซาโล อยู่ในรอบใดน้อยที่สุด?",
    "context": "CREATE TABLE table_name_64 (laps INTEGER, driver VARCHAR)"
  },
  {
    "answer": "SELECT time_retired FROM table_name_61 WHERE grid = 7",
    "question_en": "What time is grid 7 in?",
    "question_th": "ตารางที่ 7 จะมาถึงกี่โมง?",
    "context": "CREATE TABLE table_name_61 (time_retired VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_40 WHERE goals = \"cook 3/6\"",
    "question_en": "What was the score of cook 3/6?",
    "question_th": "กุ๊ก 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_en": "What is the Chassis having a year later than 1990, and Minardi Scuderia Italia as an entrant, and 4 points?",
    "question_th": "แชสซีมีอะไรบ้างในหนึ่งปีหลังจากปี 1990 และมินาร์ดี สคูเดอเรีย อิตาเลียในฐานะผู้เข้าแข่งขัน และ 4 แต้ม",
    "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_en": "Which gender had a decile of more than 1 and featured the South Auckland Seventh-Day Adventist School?",
    "question_th": "เพศใดมี Decile มากกว่า 1 และเป็นจุดเด่นของ 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_en": "Which name has an authority of state?",
    "question_th": "ชื่อใดมีอำนาจหน้าที่ของรัฐ?",
    "context": "CREATE TABLE table_name_13 (name VARCHAR, authority VARCHAR)"
  },
  {
    "answer": "SELECT decile FROM table_name_90 WHERE name = \"mayfield school\"",
    "question_en": "Which decile features Mayfield School?",
    "question_th": "Decile ใดบ้างที่มี Mayfield School?",
    "context": "CREATE TABLE table_name_90 (decile VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_87 WHERE date = \"july 28\"",
    "question_en": "What was the record on July 28?",
    "question_th": "บันทึกเมื่อวันที่ 28 กรกฎาคมคืออะไร?",
    "context": "CREATE TABLE table_name_87 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT SUM(attendance) FROM table_name_10 WHERE date = \"july 5\"",
    "question_en": "How many people attended on July 5?",
    "question_th": "วันที่ 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_en": "Which production won the drama desk award as well as the category of outstanding sound design?",
    "question_th": "ผลงานชิ้นใดชนะรางวัลโต๊ะละครและประเภทการออกแบบเสียงดีเด่น?",
    "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_en": "Who was nominated for outstanding director of a musical?",
    "question_th": "ใครได้รับการเสนอชื่อเข้าชิงผู้กำกับละครเพลงดีเด่น?",
    "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_en": "In what year was Terry Johnson nominated for a Tony award?",
    "question_th": "เทอร์รี จอห์นสันได้รับการเสนอชื่อเข้าชิงรางวัลโทนีในปีใด",
    "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_en": "What year was there a Tony award category of Best Revival of a Musical?",
    "question_th": "รางวัล Tony Award สาขา 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_en": "What is the crowd size of the Away team, Fitzroy?",
    "question_th": "ฟิตซ์รอยทีมเยือนมีขนาดฝูงชนเท่าไร?",
    "context": "CREATE TABLE table_name_95 (crowd VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_77 WHERE venue = \"princes park\"",
    "question_en": "Which Away team uses Princes Park as it's venue?",
    "question_th": "ทีมเยือนทีมใดใช้ Princes Park เป็นสถานที่จัดการแข่งขัน?",
    "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_en": "What was the lowest Crowd Size for the Home Team of North Melbourne?",
    "question_th": "ขนาดฝูงชนต่ำสุดสำหรับทีมเจ้าบ้านของ 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_en": "What was the attendance when St Kilda played as the away team?",
    "question_th": "การเข้าร่วมงานเมื่อเซนต์คิลดาเล่นเป็นทีมเยือนเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_79 (crowd INTEGER, away_team VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_67 WHERE winner = \"bc 2\"",
    "question_en": "Tell me the opponent for winner of bc 2",
    "question_th": "บอกคู่ต่อสู้สำหรับผู้ชนะของ 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_en": "Tell me the score for opponent of holy cross and result of push",
    "question_th": "บอกคะแนนของคู่ต่อสู้ของ Holy Cross และผลการผลักให้ฉันทราบ",
    "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_en": "Tell me the score on 1978-12-16",
    "question_th": "บอกคะแนนวันที่ 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_en": "Tell me the result for 1979-01-17",
    "question_th": "บอกฉันผลลัพธ์สำหรับ 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_en": "I want the result for winner of bc 3",
    "question_th": "ฉันต้องการผลลัพธ์สำหรับผู้ชนะของ 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_en": "What is the save when Yankees are the opponents on July 25?",
    "question_th": "จะเซฟอะไรได้บ้างเมื่อแยงกี้เป็นคู่ต่อสู้ในวันที่ 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–44\"",
    "question_en": "What score occurred when the save was ||27,108||63–44?",
    "question_th": "คะแนนใดเกิดขึ้นเมื่อบันทึกได้ ||27,108||63–44",
    "context": "CREATE TABLE table_name_93 (score VARCHAR, save VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_50 WHERE save = \"||12,838||48–35\"",
    "question_en": "What is the resulting loss when a save is ||12,838||48–35?",
    "question_th": "ผลขาดทุนเมื่อบันทึกคือ ||12,838||48–35 คืออะไร",
    "context": "CREATE TABLE table_name_50 (loss VARCHAR, save VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_73 WHERE save = \"||54,918||50–36\"",
    "question_en": "On what date did a save of ||54,918||50–36 occur?",
    "question_th": "การบันทึก ||54,918||50–36 เกิดขึ้นในวันที่ใด",
    "context": "CREATE TABLE table_name_73 (date VARCHAR, save VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_49 WHERE save = \"||25,354||63–43\"",
    "question_en": "What was the score when a save of ||25,354||63–43 occurred?",
    "question_th": "คะแนนเมื่อบันทึก ||25,354||63–43 เกิดขึ้นได้เท่าไร",
    "context": "CREATE TABLE table_name_49 (score VARCHAR, save VARCHAR)"
  },
  {
    "answer": "SELECT AVG(goals) FROM table_name_16 WHERE apps < 3",
    "question_en": "Tell me the average goals with apps less than 3",
    "question_th": "บอกเป้าหมายเฉลี่ยกับแอปที่น้อยกว่า 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_en": "What is the Time/Retired for a Grid smaller than 10, a Laps larger than 20, and a Constructor of talbot-lago - talbot?",
    "question_th": "เวลา/เกษียณสำหรับกริดที่เล็กกว่า 10, รอบที่ใหญ่กว่า 20 และตัวสร้างของ 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_en": "What is the high grid total for maserati?",
    "question_th": "ยอดรวมกริดสูงสำหรับมาเซราติคือเท่าไร?",
    "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_en": "What is the high grid total for maserati with under 35 laps?",
    "question_th": "ผลรวมกริดสูงของ Maserati ที่วิ่งต่ำกว่า 35 รอบเป็นเท่าใด",
    "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_en": "What is the Pole Position of the Brazilian Grand Prix race?",
    "question_th": "ตำแหน่งโพลของการแข่งขัน Brazilian Grand Prix คืออะไร?",
    "context": "CREATE TABLE table_name_28 (pole_position VARCHAR, race VARCHAR)"
  },
  {
    "answer": "SELECT race AS Winner FROM table_name_89 WHERE location = \"monza\"",
    "question_en": "Who was the winner of the race in monza?",
    "question_th": "ใครเป็นผู้ชนะการแข่งขันที่มอนซ่า?",
    "context": "CREATE TABLE table_name_89 (race VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_18 WHERE player = \"chris moreno\"",
    "question_en": "What position for chris moreno?",
    "question_th": "ตำแหน่งอะไรของคริส โมเรโน?",
    "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_en": "When was brian lemay born?",
    "question_th": "ไบรอัน เลเมย์เกิดเมื่อไหร่?",
    "context": "CREATE TABLE table_name_1 (date_of_birth__age_ VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_74 WHERE round = 7",
    "question_en": "Tell me the player for 7 round",
    "question_th": "บอกผู้เล่นรอบ 7 หน่อยครับ",
    "context": "CREATE TABLE table_name_74 (player VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT partially_deleted FROM table_name_78 WHERE cerclis_id = \"fld980494959\"",
    "question_en": "Which Superfund site has the CERCLIS ID fld980494959?",
    "question_th": "ไซต์ Superfund ใดมี 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_en": "Which site has the CERCLIS ID fld004092532?",
    "question_th": "ไซต์ใดมี 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_en": "What is the CERCLIS ID of the site in Polk County, with the date 08/04/2009?",
    "question_th": "CERCLIS ID ของไซต์ใน Polk County คืออะไร ณ วันที่ 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_en": "When is the tournament of konica san jose classic?",
    "question_th": "การแข่งขันของ 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_en": "Which tournament had a playoff with a margin of victory?",
    "question_th": "ทัวร์นาเมนต์ใดมีรอบเพลย์ออฟและมีชัยชนะบ้าง?",
    "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_en": "Who was the runner up in the konica san jose classic Tournament?",
    "question_th": "ใครคือรองชนะเลิศในการแข่งขัน 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_en": "What was the highest crowd size at the Western Oval?",
    "question_th": "จำนวนฝูงชนสูงสุดที่ Western Oval คือเท่าใด",
    "context": "CREATE TABLE table_name_48 (crowd INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_4 WHERE order = 1",
    "question_en": "Which name had an order number of 1?",
    "question_th": "ชื่อใดมีหมายเลขลำดับที่ 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_en": "Who was the entrant for Gabriele Tarquini with all rounds and a JH24 JH25 Chassis?",
    "question_th": "ใครคือผู้เข้าแข่งขันของ Gabriele Tarquini ที่ลงแข่งทุกรอบและแชสซี JH24 JH25",
    "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_en": "Who was the entrant for Gary Brabham?",
    "question_th": "ใครคือผู้เข้าแข่งขันของ Gary Brabham?",
    "context": "CREATE TABLE table_name_5 (entrant VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_4 WHERE driver = \"aguri suzuki\"",
    "question_en": "Who constructed Aguri Suzuki's car?",
    "question_th": "ใครเป็นคนสร้างรถของอากุริ ซูซูกิ?",
    "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_en": "What was the highest average point rating for a modern suspense show with 21 episodes?",
    "question_th": "คะแนนเฉลี่ยสูงสุดสำหรับการแสดงระทึกขวัญสมัยใหม่ที่มี 21 ตอนคือเท่าใด",
    "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_en": "Where was the game with the result of 22-20 played?",
    "question_th": "ผลสกอร์ 22-20 เล่นที่ไหน?",
    "context": "CREATE TABLE table_name_81 (venue VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_85 WHERE scored > 1",
    "question_en": "Where was the game with a higher score than 1 played?",
    "question_th": "เกมที่มีคะแนนสูงกว่า 1 เล่นที่ไหน?",
    "context": "CREATE TABLE table_name_85 (venue VARCHAR, scored INTEGER)"
  },
  {
    "answer": "SELECT tournament FROM table_name_98 WHERE opponent = \"crusaders\"",
    "question_en": "What tournament did the Crusaders play in?",
    "question_th": "Crusaders เล่นในทัวร์นาเมนต์ใด?",
    "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_en": "What was the home score at Lake Oval?",
    "question_th": "สกอร์เจ้าบ้านที่เลคโอวัลเป็นเท่าไหร่?",
    "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_en": "What is the highest metal total when there are 2 Gold medals, 0 Bronze metals, and the rank is smaller than 2?",
    "question_th": "โลหะทั้งหมดสูงสุดเมื่อมี 2 เหรียญทอง 0 โลหะทองแดง และอันดับน้อยกว่า 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_en": "What is the total number of silver medals when there are 0 Bronze medals, and the nation is the United Kingdom?",
    "question_th": "เหรียญเงินทั้งหมดมีจำนวน 0 เหรียญทองแดง และประเทศคือ สหราชอาณาจักร",
    "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_en": "What is the highest rank when the metal total is 1 and the nation is the United Kingdom?",
    "question_th": "อันดับสูงสุดคืออะไรเมื่อผลรวมของโลหะคือ 1 และประเทศคือสหราชอาณาจักร?",
    "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_en": "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?",
    "question_th": "โลหะทั้งหมดที่ต่ำที่สุดเมื่อโลหะทองแดงมีค่ามากกว่า 0 เหรียญทองมีค่าน้อยกว่า 1 และประเทศคือสวิตเซอร์แลนด์?",
    "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_en": "What is the highest Bronze medal count when the Gold medals are larger than 1 and the silver are smaller than 0?",
    "question_th": "จำนวนเหรียญทองแดงสูงสุดเมื่อเหรียญทองมากกว่า 1 และเงินน้อยกว่า 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_en": "When was the swiss grand prix?",
    "question_th": "สวิส กรังด์ปรีซ์ จัดขึ้นเมื่อไหร่?",
    "context": "CREATE TABLE table_name_91 (date VARCHAR, race VARCHAR)"
  },
  {
    "answer": "SELECT circuit FROM table_name_83 WHERE fastest_lap = \"alberto ascari josé froilán gonzález\"",
    "question_en": "What was the circuit for alberto ascari josé froilán gonzález?",
    "question_th": "วงจรของ alberto ascari josé froilán gonzález คืออะไร?",
    "context": "CREATE TABLE table_name_83 (circuit VARCHAR, fastest_lap VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_34 WHERE race = \"italian grand prix\"",
    "question_en": "Name the date of the italian grand prix",
    "question_th": "ตั้งชื่อวันที่ของกรังด์ปรีซ์อิตาลี",
    "context": "CREATE TABLE table_name_34 (date VARCHAR, race VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_69 WHERE race = \"belgian grand prix\"",
    "question_en": "Name the constructor for the belgian grand prix",
    "question_th": "ตั้งชื่อผู้สร้างรายการ 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_en": "Name the date for the italian grand prix",
    "question_th": "ตั้งชื่อวันที่สำหรับกรังด์ปรีซ์อิตาลี",
    "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_en": "Who's the opposition at westpac stadium when the attendance is 31,853?",
    "question_th": "ฝ่ายตรงข้ามที่สนามเวสต์แพคเมื่อผู้ชม 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_en": "When was the opposition sydney fc on round 19?",
    "question_th": "ฝ่ายตรงข้าม ซิดนีย์ เอฟซี ในรอบ 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_en": "What round was adelaide united the opposition with an attendance of 18,345?",
    "question_th": "แอดิเลดรวมฝ่ายค้านรอบใดด้วยผู้เข้าร่วม 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_en": "Who was the opposition at 11,682 excl. exhibition match?",
    "question_th": "ใครเป็นฝ่ายค้านที่ 11,682 ไม่รวม การแข่งขันนิทรรศการ?",
    "context": "CREATE TABLE table_name_39 (opposition VARCHAR, stadium VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_55 WHERE attendance = \"12,127\"",
    "question_en": "What round has an attendance of 12,127?",
    "question_th": "รอบไหนมีผู้เข้าร่วม 12,127 คน?",
    "context": "CREATE TABLE table_name_55 (round VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_73 WHERE opponent = \"everton\"",
    "question_en": "What is the result against everton?",
    "question_th": "ผลการแข่งขันกับเอฟเวอร์ตันเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_73 (result VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_name_3 WHERE name = \"françois gendron\"",
    "question_en": "François Gendron was in which party?",
    "question_th": "François Gendron อยู่ในงานปาร์ตี้ไหน?",
    "context": "CREATE TABLE table_name_3 (party VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT took_office FROM table_name_90 WHERE left_office = \"2003\"",
    "question_en": "The deputy that left office in 2003 took office in which year?",
    "question_th": "รองผู้อำนวยการที่ลาออกจากตำแหน่งในปี พ.ศ. 2546 เข้ารับตำแหน่งในปีใด",
    "context": "CREATE TABLE table_name_90 (took_office VARCHAR, left_office VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_97 WHERE took_office = \"1976\"",
    "question_en": "Which deputy took office in 1976?",
    "question_th": "รองคนไหนเข้ารับตำแหน่งในปี 2519?",
    "context": "CREATE TABLE table_name_97 (name VARCHAR, took_office VARCHAR)"
  },
  {
    "answer": "SELECT film FROM table_name_64 WHERE year = \"2000\"",
    "question_en": "Which film took place in 2000?",
    "question_th": "ภาพยนตร์เรื่องใดเกิดขึ้นในปี พ.ศ. 2543?",
    "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_en": "Which song named Tan Dun was nominated?",
    "question_th": "เพลงใดชื่อตันตุนที่ได้รับการเสนอชื่อเข้าชิง?",
    "context": "CREATE TABLE table_name_76 (song VARCHAR, status VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_74 WHERE grid = 11",
    "question_en": "Who was the constructor when the grid was 11?",
    "question_th": "ใครคือผู้สร้างเมื่อกริดอายุ 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_en": "How many laps were completed by Piers Courage when BRM was the constructor and the grid is larger than 8?",
    "question_th": "Piers Courage เสร็จสิ้นไปกี่รอบแล้วเมื่อ BRM เป็นตัวสร้างและกริดมีขนาดใหญ่กว่า 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_en": "What is the short name for a channelgreater than 63.4?",
    "question_th": "ชื่อย่อของช่องที่มากกว่า 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_en": "For the channel smaller than 63.2, what was the programming?",
    "question_th": "ช่องที่เล็กกว่า 63.2 มีรายการอะไรครับ?",
    "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_en": "Tell me the horse with faults of 0 when the total is 4.1",
    "question_th": "บอกม้าที่มีข้อบกพร่องเป็น 0 เมื่อผลรวมเป็น 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_en": "Tell me the horse when the faults are 9 and the total is 46.36",
    "question_th": "บอกม้าหน่อยว่าเมื่อฟอลส์เป็น 9 และรวมเป็น 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_en": "Tell me the highest total when the horse is spender s",
    "question_th": "บอกยอดรวมสูงสุดเมื่อม้าใช้จ่าย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_en": "Name the round 1 +2A points for horse of poncorde",
    "question_th": "ตั้งชื่อรอบ 1 +2A คะแนนม้าพอนคอร์ด",
    "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_en": "Name the total number of total when round 1 +2A points of 19.620",
    "question_th": "ทายผลรวมเมื่อยกที่ 1 +2A คะแนน 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_en": "Which Home team has an Away team of melbourne?",
    "question_th": "เจ้าบ้านทีมไหนมีทีมเยือนเมลเบิร์น?",
    "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_en": "What is the away team at corio oval?",
    "question_th": "ทีมเยือนโคริโอโอวัลเป็นทีมไหน?",
    "context": "CREATE TABLE table_name_26 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_28 WHERE venue = \"lake oval\"",
    "question_en": "What is the away team at lake oval?",
    "question_th": "ทีมเยือนเลคโอวัลเป็นทีมไหน?",
    "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_en": "What is the away team score with geelong home team?",
    "question_th": "สกอร์ทีมเยือนกับทีมเหย้าจีลองเป็นเท่าไหร่?",
    "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_en": "What is the home team score when the home team is Collingwood?",
    "question_th": "สกอร์เจ้าบ้านเมื่อเจ้าบ้านคือคอลลิงวูดเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_79 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_40 WHERE venue = \"princes park\"",
    "question_en": "What is the date of the game when the venue is Princes Park?",
    "question_th": "เกมที่สนามคือ 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_en": "What position does the player from texas a&m play?",
    "question_th": "ผู้เล่นจาก texas a&m เล่นตำแหน่งอะไร?",
    "context": "CREATE TABLE table_name_32 (position VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_52 WHERE laps = 18 AND grid = 5",
    "question_en": "What is the time for 18 laps and 5 grids?",
    "question_th": "18 รอบ 5 กริด กี่โมง?",
    "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_en": "On which date was the Dodge Dealers Grand Prix GTS class race?",
    "question_th": "การแข่งขันคลาส Dodge Dealers Grand Prix GTS คือวันไหน",
    "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_en": "Which race was on the Las Vegas Motor Speedway for 2 hours?",
    "question_th": "การแข่งขันรายการใดที่ Las Vegas Motor Speedway เป็นเวลา 2 ชั่วโมง",
    "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_en": "Which class was on the Las Vegas Motor Speedway for 2 hours?",
    "question_th": "คลาสไหนอยู่บน Las Vegas Motor Speedway เป็นเวลา 2 ชั่วโมง?",
    "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_en": "What circuit was on June 1 with a class of both?",
    "question_th": "วันที่ 1 มิถุนายน มีคลาสของทั้งคู่เป็นวงจรอะไร?",
    "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_en": "Which date was a GTS class on the Mosport International Raceway?",
    "question_th": "คลาส GTS บนสนาม 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_en": "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?",
    "question_th": "ค่าพรอมเฉลี่ย (ม.) คือเท่าไร เมื่อความสูง (ม.) มากกว่า 733 คลาสคือฮิววิตต์ และจุดสูงสุดคือเคิร์กฟอลอีสต์ท็อป?",
    "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_en": "What college picked someone from The Episcopal Academy?",
    "question_th": "วิทยาลัยใดเลือกคนจาก 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_en": "When was the game at Moorabbin Oval?",
    "question_th": "เกมที่ 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_en": "Who did Hawthorn play against at their home match?",
    "question_th": "ฮอว์ธอร์นเล่นกับใครในเกมเหย้าของพวกเขา?",
    "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_en": "What season has a 6th north finish and more than 21 points?",
    "question_th": "ฤดูกาลไหนจบอันดับ 6 เหนือ และมีมากกว่า 21 แต้ม?",
    "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_en": "What language does Raj Kamal speak?",
    "question_th": "Raj Kamal พูดภาษาอะไร",
    "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_en": "What 1972 Hindi film had Ravindra Jain directing the music?",
    "question_th": "ภาพยนตร์ภาษาฮินดีปี 1972 เรื่องใดที่ Ravindra Jain กำกับเพลง",
    "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_en": "What 1979 Hindi film had Ravindra Jain directing music?",
    "question_th": "ภาพยนตร์ภาษาฮินดีปี 1979 เรื่องใดที่ Ravindra Jain กำกับเพลง",
    "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_en": "Which driver has a # smaller than 40, less than 151 points, and Winnings of $84,400?",
    "question_th": "นักแข่งคนไหนที่มี # น้อยกว่า 40 น้อยกว่า 151 แต้ม และเงินรางวัล 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_en": "Which driver has less than 61 points, but winnings of $67,675?",
    "question_th": "นักแข่งคนไหนมีคะแนนน้อยกว่า 61 แต้ม แต่ชนะ 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_en": "Which driver has the highest point total after winning $133,386?",
    "question_th": "นักแข่งคนไหนมีคะแนนรวมสูงสุดหลังจากชนะรางวัล $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_en": "What is the average round for martin havlat?",
    "question_th": "มาร์ติน ฮาฟลัท รอบเฉลี่ยเท่าไหร่?",
    "context": "CREATE TABLE table_name_38 (round INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_38 WHERE tries = 1 AND club = \"munster\"",
    "question_en": "Who was part of Club Munster with 1 try?",
    "question_th": "ใครเป็นส่วนหนึ่งของ Club Munster จากการลอง 1 ครั้ง?",
    "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_en": "Who was the Visitor when the Home team was Anaheim on the Date of April 12?",
    "question_th": "ใครคือผู้มาเยือนเมื่อทีมเจ้าบ้านอยู่ที่อนาไฮม์ในวันที่ 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_en": "What was the Decision on April 18?",
    "question_th": "การตัดสินใจเมื่อวันที่ 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_en": "What did the team score when playing south melbourne at home?",
    "question_th": "ทีมได้คะแนนเท่าไหร่เมื่อเล่นเซาธ์เมลเบิร์นในบ้าน?",
    "context": "CREATE TABLE table_name_38 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_26 WHERE venue = \"mcg\"",
    "question_en": "Which team lives in mcg?",
    "question_th": "ทีมไหนอยู่ 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_en": "What was the crowd size when st kilda played home?",
    "question_th": "ขนาดฝูงชนเมื่อเซนต์คิลดาเล่นในบ้านคือเท่าใด?",
    "context": "CREATE TABLE table_name_54 (crowd VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_19 WHERE home_team = \"south melbourne\"",
    "question_en": "What is the home field of the South Melbourne team?",
    "question_th": "สนามเหย้าของทีมเซาธ์ เมลเบิร์น เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_19 (venue VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(overall) FROM table_name_64 WHERE nationality = \"finland\"",
    "question_en": "For the player from Finland, what is the highest overall pick rank?",
    "question_th": "สำหรับผู้เล่นจากฟินแลนด์ อันดับการเลือกโดยรวมสูงสุดคือเท่าไร?",
    "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_en": "what is the least laps when the driver is rolf stommelen and the grid is more than 18?",
    "question_th": "รอบน้อยที่สุดคือเท่าไรเมื่อคนขับรอล์ฟ สตอมเมเลน และกริดมากกว่า 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_en": "what is the most laps with a grid of 20?",
    "question_th": "รอบใดมากที่สุดโดยมีตาราง 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_en": "With a North Melbourne away team, what is the average crowd?",
    "question_th": "กับทีมเยือน นอร์ท เมลเบิร์น ฝูงชนโดยเฉลี่ยคือเท่าไร?",
    "context": "CREATE TABLE table_name_35 (crowd INTEGER, away_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_57 WHERE away_team = \"fitzroy\"",
    "question_en": "Which venue does Fitzroy play as an away team?",
    "question_th": "ฟิตซ์รอยเล่นเป็นทีมเยือนที่สนามใด?",
    "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_en": "In the game at Glenferrie Oval, what is the home team score?",
    "question_th": "ในเกมที่เกลนเฟอร์รี่ โอวัล สกอร์ของเจ้าบ้านอยู่ที่เท่าไหร่?",
    "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_en": "In the game against Essendon at home, what did the away team score?",
    "question_th": "ในเกมกับเอสเซนดอนในบ้านทีมเยือนได้คะแนนเท่าไหร่?",
    "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_en": "What's the highest lowest number of capacity that ibrox stadium has when the average is larger than 49,143?",
    "question_th": "จำนวนความจุต่ำสุดที่ ibrox Stadium มีเมื่อค่าเฉลี่ยมากกว่า 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_en": "Which role had thulasidas direction?",
    "question_th": "บทบาทใดมีทิศทางของทูลสีดา?",
    "context": "CREATE TABLE table_name_55 (role VARCHAR, direction VARCHAR)"
  },
  {
    "answer": "SELECT role FROM table_name_34 WHERE year < 1991 AND direction = \"joemon\"",
    "question_en": "Which role did joemon play before 1991?",
    "question_th": "โจมอนเล่นบทบาทไหนก่อนปี 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_en": "What is the number of wins that has a top-10 of 2, and more events than 8, more cuts than 6?",
    "question_th": "จำนวนชัยชนะที่มี 10 อันดับแรกจาก 2 รายการ และมีเหตุการณ์มากกว่า 8 รายการ ตัดมากกว่า 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_en": "What is the highest number of wins that has a top-25 of 13 and events less than 32?",
    "question_th": "จำนวนชัยชนะสูงสุดที่มี 25 อันดับแรกจาก 13 รายการและเหตุการณ์น้อยกว่า 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_en": "What is the number of Tournament of U.S. Open wins with a Top-25 smaller than 4?",
    "question_th": "จำนวนการแข่งขันของ US Open ที่ชนะโดยมี 25 อันดับแรกน้อยกว่า 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_en": "For the week 1 show and order 2, what was the theme?",
    "question_th": "สำหรับการแสดงสัปดาห์ที่ 1 และลำดับที่ 2 ธีมคืออะไร",
    "context": "CREATE TABLE table_name_59 (theme VARCHAR, show VARCHAR, order VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_68 WHERE overall = \"126\"",
    "question_en": "Which Player has an Overall of 126?",
    "question_th": "ผู้เล่นคนไหนมีคะแนนรวม 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_en": "Which Player has a Nationality of united states, and an Overall of 61 (from boston)?",
    "question_th": "ผู้เล่นคนใดที่มีสัญชาติสหรัฐอเมริกา และคะแนนรวม 61 คะแนน (จากบอสตัน)",
    "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_en": "Which Round has a Club team of brandon wheat kings (whl)?",
    "question_th": "รอบใดมีทีมสโมสรของแบรนดอน วีท คิงส์ (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_en": "What was the position of the team Minneapolis Lakers during round T?",
    "question_th": "ตำแหน่งของทีม Minneapolis Lakers ระหว่างยก 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_en": "What was the pick for the game at the College of Kentucky with the team Washington Capitols?",
    "question_th": "อะไรคือตัวเลือกสำหรับเกมที่วิทยาลัยเคนตักกี้กับทีม 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_en": "What was the pick for round 2 with the team Indianapolis Olympians?",
    "question_th": "ทีม Indianapolis Olympians จะถูกเลือกในรอบ 2 อย่างไร",
    "context": "CREATE TABLE table_name_14 (pick VARCHAR, round VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_name_67 WHERE draw = 5",
    "question_en": "How many points does Draw 5 have?",
    "question_th": "งวดที่ 5 มีกี่แต้ม?",
    "context": "CREATE TABLE table_name_67 (points VARCHAR, draw VARCHAR)"
  },
  {
    "answer": "SELECT MIN(place) FROM table_name_4 WHERE artist = \"all mixed up\"",
    "question_en": "Where did the artist All Mixed Up place?",
    "question_th": "ศิลปิน All Mixed Up อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_4 (place INTEGER, artist VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_73 WHERE game = 2",
    "question_en": "What's the score of Game 2?",
    "question_th": "เกมที่ 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_en": "Can you tell me the Place that has the Score of 70-67-69-69=275?",
    "question_th": "คุณช่วยบอกสถานที่ที่มีคะแนน 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_en": "Can you tell me the sum of Money ($) that has the Score of 69-72-67-71=279, and the Player of loren roberts?",
    "question_th": "คุณช่วยบอกผลรวมของเงิน ($) ที่มีคะแนน 69-72-67-71=279 และผู้เล่นของ 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_en": "Can you tell me the Country that has the Score of 69-72-67-71=279?",
    "question_th": "คุณช่วยบอกหน่อยได้ไหมว่าประเทศที่มีคะแนน 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_en": "Who is the driver whose car was constructed by Renault and whose Q1 pos is greater than 2?",
    "question_th": "ใครคือคนขับรถที่รถเรโนลต์สร้างและมีตำแหน่ง Q1 มากกว่า 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_en": "Who was the constructor of the car that had a Q1 pos of less than 8 and a Q1 time of 1:15.038?",
    "question_th": "ใครคือผู้สร้างรถที่มีอันดับ Q1 น้อยกว่า 8 และเวลา Q1 เท่ากับ 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_en": "What is the Q1+Q2 time for the driver whose Q1 time was 1:14.819, ?",
    "question_th": "เวลา Q1+Q2 ของผู้ขับขี่ซึ่งเวลา Q1 คือ 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_en": "What is the Q1+Q2 time for the driver whose Q1 order was 13?",
    "question_th": "เวลา Q1+Q2 สำหรับผู้ขับขี่ที่มีลำดับ Q1 คือ 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 ćirić dušan vemić\"",
    "question_en": "For what round was the opponent nikola ćirić dušan vemić?",
    "question_th": "คู่ต่อสู้ nikola ćirić dušan vemić ในรอบใด?",
    "context": "CREATE TABLE table_name_72 (round VARCHAR, opponents VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_82 WHERE result = \"6–7 (6–7) , 7–6 (9–7) , 6–7 (4–7) , 7–5, 3–6\"",
    "question_en": "What was the surface when the result was 6–7 (6–7) , 7–6 (9–7) , 6–7 (4–7) , 7–5, 3–6?",
    "question_th": "พื้นผิวเป็นอย่างไรเมื่อผลลัพธ์คือ 6–7 (6–7) , 7–6 (9–7) , 6–7 (4–7) , 7–5, 3–6?",
    "context": "CREATE TABLE table_name_82 (surface VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_6 WHERE country = \"fiji\"",
    "question_en": "What is the score of the player from fiji?",
    "question_th": "นักเตะฟิจิได้สกอร์เท่าไร?",
    "context": "CREATE TABLE table_name_6 (score VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_46 WHERE score = 70 - 66 - 67 = 203",
    "question_en": "What is the place of the player with a 70-66-67=203 score?",
    "question_th": "นักเตะที่มีคะแนน 70-66-67=203 อยู่ในอันดับที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_46 (place VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_99 WHERE place = \"t6\"",
    "question_en": "Who is the player with a t6 place?",
    "question_th": "ใครคือผู้เล่นอันดับ t6?",
    "context": "CREATE TABLE table_name_99 (player VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_73 WHERE player = \"john cook\"",
    "question_en": "What is the place of player john cook?",
    "question_th": "นักเตะ จอห์น คุก อยู่ตำแหน่งไหน?",
    "context": "CREATE TABLE table_name_73 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_98 WHERE score = 70 - 71 - 68 = 209",
    "question_en": "What is the country of the player with a 70-71-68=209 score?",
    "question_th": "นักเตะที่มีคะแนน 70-71-68=209 คือประเทศอะไร?",
    "context": "CREATE TABLE table_name_98 (country VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT casualties FROM table_name_3 WHERE intensity = \"unknown\" AND epicenter = \"bouïra province\"",
    "question_en": "How many casualties were in the earthquake with an unknown intensity and an epicenter in the bouïra province?",
    "question_th": "มีผู้เสียชีวิตกี่รายจากแผ่นดินไหวที่ไม่ทราบความรุนแรงและจุดศูนย์กลางในจังหวัดบูอิรา",
    "context": "CREATE TABLE table_name_3 (casualties VARCHAR, intensity VARCHAR, epicenter VARCHAR)"
  },
  {
    "answer": "SELECT magnitude FROM table_name_6 WHERE epicenter = \"biskra province\"",
    "question_en": "What is the magnitude of the earthquake with an epicenter in biskra province?",
    "question_th": "แผ่นดินไหวที่มีจุดศูนย์กลางอยู่ที่จังหวัดบิสกรามีขนาดเท่าใด?",
    "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_en": "What is the epicenter of the earthquake on March 2, 1825 with an unknown intensity?",
    "question_th": "ศูนย์กลางของแผ่นดินไหวเมื่อวันที่ 2 มีนาคม พ.ศ. 2368 ไม่ทราบความรุนแรงอยู่ที่ใด",
    "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_en": "What is the epicenter on January 1, 1965?",
    "question_th": "ศูนย์กลางแผ่นดินไหวในวันที่ 1 มกราคม 2508 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_88 (epicenter VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_27 WHERE winning_driver = \"antonio ascari\"",
    "question_en": "What date was the winning driver Antonio Ascari?",
    "question_th": "อันโตนิโอ อัสคารี นักแข่งที่ชนะคือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_27 (date VARCHAR, winning_driver VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_7 WHERE name = \"coppa acerbo\"",
    "question_en": "What date was the name Coppa Acerbo?",
    "question_th": "Coppa Acerbo ชื่อวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_7 (date VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_24 WHERE circuit = \"tigullio\"",
    "question_en": "What date was the Tigullio Circuit?",
    "question_th": "Tigullio Circuit คือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_24 (date VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_22 WHERE circuit = \"madonie\"",
    "question_en": "What date was the Madonie Circuit?",
    "question_th": "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_en": "What surface was the tournament played on against Steven Diez?",
    "question_th": "ทัวร์นาเมนต์นี้เล่นกับสตีเวน ดิเอซบนพื้นผิวใด?",
    "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_en": "What date was the game played on the hard surface at the Tournament of Sweden f2?",
    "question_th": "เกมนี้เล่นบนพื้นแข็งที่ 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_en": "What was the playing surface for the Tournament of Great Britain F16?",
    "question_th": "พื้นผิวการเล่นสำหรับ 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_en": "Which Attendance has a Result of 1-0, and a Venue of A, and an Opponent of newcastle united?",
    "question_th": "ผู้เข้าร่วมคนใดมีผล 1-0 และสถานที่จัดงาน A และฝ่ายตรงข้ามของ 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_en": "What's the position of the player with a Height of 2.06 and club of Triumph Lyubertsy?",
    "question_th": "ตำแหน่งผู้เล่นส่วนสูง 2.06 และไม้กอล์ฟของ ไทรอัมพ์ ลิวเบิร์ตซี่ อยู่ที่ตำแหน่งใด?",
    "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_en": "How many points were there when the average was 0.763 and the played was less than 76?",
    "question_th": "มีกี่แต้มเมื่อค่าเฉลี่ยอยู่ที่ 0.763 และเล่นได้น้อยกว่า 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_en": "What is the median household income in Valley County?",
    "question_th": "รายได้เฉลี่ยของครัวเรือนใน 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_en": "WHAT ARE THE BYES WITH A WIN SMALLER THAN 16, 8 LOSSES, AND AT PENSHURST, WITH AGAINST SMALLER THAN 1405?",
    "question_th": "อะไรคือลาก่อนที่มีชัยชนะน้อยกว่า 16, แพ้ 8 ครั้ง และในช่วงปากกาเฮิรสต์ เทียบกับมีขนาดเล็กกว่า 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_en": "WHAT ARE THE BYES WITH A DRAWS OF 1, SMW ROVERS, AND WINS LARGER THAN 6?",
    "question_th": "ลาก่อนด้วยการเสมอ 1, SMW Rovers และชัยชนะที่มากกว่า 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_en": "WHAT IS THE HIGHEST AGAINST WITH LOSSES SMALLER THAN 17, DRAWS LARGER THAN 1?",
    "question_th": "อะไรคือสิ่งที่สูงที่สุดเมื่อเทียบกับการสูญเสียน้อยกว่า 17 และเสมอมากกว่า 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_en": "WHAT IS THE HIGHEST WINS WITH AGAINST SMALLER THAN 924, LOSSES SMALLER THAN 2?",
    "question_th": "อะไรคือชัยชนะสูงสุดเมื่อเทียบกับ 924 และแพ้น้อยกว่า 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_en": "What is the score for the 2nd leg when Belasica is team 2?",
    "question_th": "เลกที่ 2 เมื่อเบลาซิก้าอยู่ทีม 2 สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_75 (team_2 VARCHAR)"
  },
  {
    "answer": "SELECT agg FROM table_name_65 WHERE team_2 = \"cementarnica\"",
    "question_en": "When Cementarnica is team 2 what is the aggregate score?",
    "question_th": "เมื่อซิเมนตาร์นิกาอยู่ทีมที่ 2 สกอร์รวมเท่าไหร่?",
    "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_en": "What is the height of Patrick Femerling, of the Alba Berlin club?",
    "question_th": "แพทริค เฟเมอร์ลิง ของสโมสรอัลบา เบอร์ลิน สูงเท่าไร?",
    "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_en": "What is the Year born (Age) for the player who is taller than 2.04 and currently plays for the Los Angeles Clippers?",
    "question_th": "ปีเกิด (อายุ) สำหรับผู้เล่นที่สูงกว่า 2.04 และปัจจุบันเล่นให้กับทีม 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_en": "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)?",
    "question_th": "ตำแหน่งนักเตะจากสโมสรอัลบา เบอร์ลิน สูงเกิน 1.96 ปี และเกิด (อายุ) วันที่ 23 กรกฎาคม 2528 (อายุ 28 ปี) คือตำแหน่งใด?",
    "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_en": "What is the against for 17/02/1979?",
    "question_th": "การต่อต้านในวันที่ 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_en": "On 24/11/1979, what is the opposing teams?",
    "question_th": "วันที่ 24/11/2522 ฝ่ายตรงข้ามเป็นทีมอะไร?",
    "context": "CREATE TABLE table_name_26 (opposing_teams VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_19 WHERE date = \"24/11/1979\"",
    "question_en": "Where was the venue for 24/11/1979?",
    "question_th": "สถานที่จัดงานวันที่ 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_en": "What is the status for 24/11/1979?",
    "question_th": "สถานะวันที่ 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_en": "What is the tournament with a clay surface and sofia shapatava as the opponent?",
    "question_th": "การแข่งขันอะไรที่มีดินเหนียวและมีโซเฟีย ชาปาตาวาเป็นคู่ต่อสู้?",
    "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_en": "What is the tournament on 5 October 2004?",
    "question_th": "การแข่งขันวันที่ 5 ตุลาคม 2547 คืออะไร?",
    "context": "CREATE TABLE table_name_50 (tournament VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_1 WHERE date = \"5 october 2004\"",
    "question_en": "What is the score on 5 October 2004?",
    "question_th": "คะแนนเมื่อวันที่ 5 ตุลาคม 2547 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_1 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT 2009 FROM table_name_17 WHERE tournament = \"us open\"",
    "question_en": "What was the result in 2009 for the US Open Tournament?",
    "question_th": "ผลลัพธ์ในปี 2009 สำหรับ 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_en": "For the Australian Open, in 2007 the result was A, but what was the result in 2012?",
    "question_th": "สำหรับออสเตรเลียนโอเพ่น ในปี 2550 ผลการแข่งขันคือ A แต่ผลการแข่งขันในปี 2555 เป็นอย่างไร",
    "context": "CREATE TABLE table_name_4 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2012 FROM table_name_12 WHERE tournament = \"us open\"",
    "question_en": "What was the result in the 2012 for the US Open tournament?",
    "question_th": "ผลลัพธ์ในปี 2012 สำหรับการแข่งขัน US Open คืออะไร?",
    "context": "CREATE TABLE table_name_12 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT ends FROM table_name_77 WHERE since = 2007 AND name = \"milito\"",
    "question_en": "WHAT IS THE ENDS IN 2007 AND NAMED MILITO?",
    "question_th": "จุดสิ้นสุดในปี 2550 และชื่อ 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_en": "Portugal has how many total number of medals when there is 1 gold medal, and bronze medals are greater than 0?",
    "question_th": "โปรตุเกสมีเหรียญทั้งหมดกี่เหรียญเมื่อมี 1 เหรียญทอง และเหรียญทองแดงมากกว่า 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_en": "Spain with a total of more than 4 medals is in what rank?",
    "question_th": "สเปนที่ได้เหรียญรางวัลรวมมากกว่า 4 เหรียญอยู่อันดับที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_15 (rank VARCHAR, total VARCHAR, nation VARCHAR)"
  },
  {
    "answer": "SELECT tries_for FROM table_name_57 WHERE points = \"48\"",
    "question_en": "How many tries for were there 48 points?",
    "question_th": "มีความพยายามกี่ครั้งถึงมี 48 คะแนน?",
    "context": "CREATE TABLE table_name_57 (tries_for VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT played FROM table_name_32 WHERE tries_for = \"50\"",
    "question_en": "What is the played for tries for 50?",
    "question_th": "การเล่นเพื่อพยายาม 50 ครั้งคืออะไร?",
    "context": "CREATE TABLE table_name_32 (played VARCHAR, tries_for VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_name_95 WHERE points = \"77\"",
    "question_en": "Which club has 77 points?",
    "question_th": "สโมสรไหนมี 77 แต้ม?",
    "context": "CREATE TABLE table_name_95 (club VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT tries_for FROM table_name_25 WHERE points_against = \"214\"",
    "question_en": "What is the tries for when the points against is 214?",
    "question_th": "ความพยายามคืออะไรเมื่อแต้มต่อคือ 214?",
    "context": "CREATE TABLE table_name_25 (tries_for VARCHAR, points_against VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_65 WHERE year = 1940",
    "question_en": "In what title did he act in 1940?",
    "question_th": "เขาแสดงชื่ออะไรในปี 1940?",
    "context": "CREATE TABLE table_name_65 (title VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_84 WHERE role = \"molly o'day\"",
    "question_en": "What is the title of the work where the role was Molly O'Day?",
    "question_th": "ชื่อของงานที่รับบทเป็น 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_en": "What is the role in an original play, comedy in 1938?",
    "question_th": "บทบาทในละครต้นฉบับตลกในปี 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_en": "What is the series 3 with gavin duffy in series 5?",
    "question_th": "ซีรีส์ 3 กับกาวิน ดัฟฟี่ในซีรีส์ 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_en": "What is the series 4 with sarah newman in series 1?",
    "question_th": "ซีรีส์ 4 กับซาราห์ นิวแมนในซีรีส์ 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_en": "What is the series 3 with more than 4 seats?",
    "question_th": "ซีรี่ย์ 3 มากกว่า 4 ที่นั่ง คืออะไร?",
    "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_en": "What is the total number of seats with gavin duffy in series 4?",
    "question_th": "เกวิน ดัฟฟี่ในซีรีส์ 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_en": "What is the highest points of the club with less than 9 draws, 11 wins, and more than 40 goals?",
    "question_th": "แต้มสูงสุดของสโมสรที่เสมอน้อยกว่า 9 ชนะ 11 และมากกว่า 40 ประตูคืออะไร?",
    "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_en": "What club has less than 10 losses, less than 55 goals, and 13 wins?",
    "question_th": "สโมสรใดแพ้น้อยกว่า 10 ครั้ง ยิงได้น้อยกว่า 55 ประตู และชนะ 13 ครั้ง?",
    "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_en": "What is the lowest position of the club with 53 goals against, 26 points, and a -11 goal difference?",
    "question_th": "ตำแหน่งต่ำสุดของสโมสรโดยทำได้ 53 ประตู, 26 แต้ม และผลต่าง -11 ประตูคืออะไร?",
    "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_en": "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?",
    "question_th": "จำนวนการแพ้สูงสุดของสโมสร CF คัลโว โซเตโล ซึ่งทำได้มากกว่า 31 ประตูต่อ 38 ประตูและน้อยกว่า 30 ครั้งคือเท่าไร?",
    "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_en": "What is the average position of club burgos cf, which has more than 42 goals against and more than 14 losses?",
    "question_th": "ตำแหน่งเฉลี่ยของ club burgos cf ซึ่งทำได้มากกว่า 42 ประตูและแพ้มากกว่า 14 ครั้งคือเท่าไร?",
    "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_en": "What is the lowest Pick, when Draft is less than 1991, and when Player is \"Tom Sasso Category:Articles with hCards\"?",
    "question_th": "ตัวเลือกต่ำสุดคือเมื่อ Draft น้อยกว่าปี 1991 และเมื่อผู้เล่นคือ \"หมวดหมู่ Tom Sasso: บทความที่มี 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_en": "What is Draft, when Round is \"9\", when Pick is \"171\", and when Player is \"Dan Wiebe Category:Articles with hCards\"?",
    "question_th": "ร่างคืออะไร เมื่อรอบคือ \"9\" เมื่อเลือกคือ \"171\" และเมื่อผู้เล่นคือ \"หมวดหมู่ Dan Wiebe: บทความที่มี 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_en": "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\"?",
    "question_th": "อะไรคือ Pick เมื่อรอบเป็น \"6\" เมื่อสัญชาติคือ \"แคนาดา\" เมื่อ Draft มากกว่าปี 1983 และเมื่อผู้เล่นคือ \"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_en": "What is the average number of metres for the Dzelzavas Street 74?",
    "question_th": "จำนวนเฉลี่ยของเมตรของ Dzelzavas Street 74 คือเท่าไร?",
    "context": "CREATE TABLE table_name_61 (metres INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_23 WHERE rank = 2",
    "question_en": "What Date has a Rank of 2?",
    "question_th": "วันที่เท่าไหร่มีอันดับ 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_en": "What Result has a Location of atlanta, and Rank smaller than 4?",
    "question_th": "ผลลัพธ์ใดมีที่ตั้งของแอตแลนตาและอันดับน้อยกว่า 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_en": "What is the smallest Result with a Location of birmingham, and Rank larger than 5?",
    "question_th": "ผลลัพธ์ที่เล็กที่สุดที่มีตำแหน่งของเบอร์มิงแฮมและอันดับมากกว่า 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_en": "What is the highest total when there is less than 1 championship?",
    "question_th": "ยอดรวมสูงสุดเมื่อมีน้อยกว่า 1 แชมป์คือเท่าไร?",
    "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_en": "What is the smallest championship when the FA Cup is 0 and the League Cup is 1?",
    "question_th": "แชมป์ที่เล็กที่สุดเมื่อ FA Cup เป็น 0 และ League Cup เป็น 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_en": "What was the result in 2013 in the tournament whose 2010 result was q2?",
    "question_th": "ผลลัพธ์ในปี 2013 ในการแข่งขันซึ่งผลการแข่งขันในปี 2010 คือไตรมาส 2 คืออะไร?",
    "context": "CREATE TABLE table_name_8 (Id VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_31 WHERE 2012 = \"1r\" AND 2013 = \"3r\"",
    "question_en": "In which tournament was the 2012 result 1r and the 2013 result 3r?",
    "question_th": "ในทัวร์นาเมนต์ใดคือผลการแข่งขันปี 2012 ที่ 1r และผลการแข่งขันปี 2013 ที่ 3r",
    "context": "CREATE TABLE table_name_31 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_16 WHERE tournament = \"french open\"",
    "question_en": "What was the result in 2011 for the French Open tournament?",
    "question_th": "ผลลัพธ์ในปี 2011 สำหรับการแข่งขัน French Open คืออะไร?",
    "context": "CREATE TABLE table_name_16 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2000 FROM table_name_66 WHERE 2001 = \"a\" AND 2010 = \"3r\"",
    "question_en": "What is the 2000 figure when 2010 is 3R and 2001 is A?",
    "question_th": "ตัวเลขปี 2000 คืออะไรเมื่อปี 2010 คือ 3R และปี 2001 คือ A",
    "context": "CREATE TABLE table_name_66 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2005 FROM table_name_29 WHERE 2002 = \"a\" AND 2010 = \"3r\"",
    "question_en": "What is the 2005 figure when 2002 is A and 2010 is 3R?",
    "question_th": "ตัวเลขปี 2548 เป็นเท่าใดเมื่อปี 2545 เป็น A และปี 2553 เป็น 3R",
    "context": "CREATE TABLE table_name_29 (Id VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_82 WHERE outcome = \"runner-up\" AND partner = \"aurelija misevičiūtė\"",
    "question_en": "Partner Aurelija Misevičiūtė had an outcome of runner-up in what tournament?",
    "question_th": "คู่หู Aurelija Misevičiūtė มีผลการแข่งขันรองชนะเลิศในทัวร์นาเมนต์ใด?",
    "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_en": "The tournament with the opponent of Kelly De Beer Eva Pera was played on what date?",
    "question_th": "การแข่งขันกับคู่ต่อสู้ของ Kelly De Beer Eva Pera ลงเล่นวันไหน?",
    "context": "CREATE TABLE table_name_5 (date VARCHAR, opponents VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_88 WHERE partner = \"aurelija misevičiūtė\"",
    "question_en": "The tournament with a partner listed as Aurelija Misevičiūtė had what kind of surface?",
    "question_th": "การแข่งขันกับพันธมิตรที่ระบุชื่อ Aurelija Misevičiūtė มีพื้นผิวแบบไหน?",
    "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_en": "How many goals scored have utenis utena as the club, with wins less than 8?",
    "question_th": "สโมสรมีอูทีนิสอูเทน่าทำประตูได้กี่ประตู โดยชนะน้อยกว่า 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_en": "How many points have utenis utena as the club, with loses less than 16?",
    "question_th": "อูเทนิส อูเทน่า มีกี่แต้ม แพ้น้อยกว่า 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_en": "How many loses have points greater than 30, goals scored greater than 59, with a position greater than 5?",
    "question_th": "แพ้กี่ครั้งที่มีคะแนนมากกว่า 30 ประตูมากกว่า 59 โดยมีตำแหน่งมากกว่า 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_en": "What country has the label Control?",
    "question_th": "ประเทศใดมีฉลากควบคุม?",
    "context": "CREATE TABLE table_name_57 (country VARCHAR, label VARCHAR)"
  },
  {
    "answer": "SELECT catalogue__number FROM table_name_8 WHERE country = \"brazil\"",
    "question_en": "What is the catalogue number for Brazil?",
    "question_th": "หมายเลขแค็ตตาล็อกของบราซิลคืออะไร?",
    "context": "CREATE TABLE table_name_8 (catalogue__number VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_30 WHERE date = \"october 24, 2008\"",
    "question_en": "What is the country when the date shows October 24, 2008?",
    "question_th": "วันที่แสดงวันที่ 24 ตุลาคม 2551 คือประเทศอะไร",
    "context": "CREATE TABLE table_name_30 (country VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_61 WHERE label = \"sony / sony bmg\"",
    "question_en": "What is the country for Sony / Sony Bmg?",
    "question_th": "Sony / Sony Bmg อยู่ที่ประเทศอะไร?",
    "context": "CREATE TABLE table_name_61 (country VARCHAR, label VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_55 WHERE format = \"lp\"",
    "question_en": "What country that has LP as a format?",
    "question_th": "ประเทศใดที่มี LP เป็นรูปแบบ?",
    "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_en": "What is the nationality of the person drafted to Position F from Kentucky State?",
    "question_th": "บุคคลที่ถูกร่างให้ดำรงตำแหน่ง F จากรัฐเคนตักกี้มีสัญชาติอะไร",
    "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_en": "In which round was Position G  from the United States drafted as Pick 13 in 1971-1 1971?",
    "question_th": "ตำแหน่ง G จากสหรัฐอเมริกาถูกร่างเป็น Pick 13 ในรอบใดในปี 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_en": "What was the pick number for the person from the United States who as drafted to the SF position from North Carolina?",
    "question_th": "หมายเลขเลือกสำหรับบุคคลจากสหรัฐอเมริกาที่ถูกร่างไปยังตำแหน่ง SF จากนอร์ธแคโรไลนาคืออะไร",
    "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_en": "In which year was the Pick #46?",
    "question_th": "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_en": "Which week 1 had a week 2 of Mandy Lynn?",
    "question_th": "สัปดาห์ที่ 1 มีสัปดาห์ที่ 2 ของ 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_en": "Which week 1 had a week 2 of Claudia Nathalia?",
    "question_th": "สัปดาห์ที่ 1 มีสัปดาห์ที่ 2 ของ 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_en": "Which week 3 had a week 1 of Kristy Dwyer?",
    "question_th": "สัปดาห์ที่ 3 มีสัปดาห์ที่ 1 ของ 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_en": "Which week 4 had a week 3 of Cidney Carson?",
    "question_th": "สัปดาห์ที่ 4 ใดมีสัปดาห์ที่ 3 ของ 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_en": "Which week 2 had a week 3 of Cidney Carson?",
    "question_th": "สัปดาห์ที่ 2 มีสัปดาห์ที่ 3 ของ 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_en": "Which EL places have a Rank 2013 of 15?",
    "question_th": "สถานที่ EL ใดมีอันดับ 2013 จาก 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_en": "Which 2009–10 has a Rank 2013 of 18?",
    "question_th": "ฤดูกาล 2009–10 ใดมีอันดับ 2013 จาก 18 อันดับ",
    "context": "CREATE TABLE table_name_87 (rank_2013 VARCHAR)"
  },
  {
    "answer": "SELECT total FROM table_name_99 WHERE year_s__won = \"1977\"",
    "question_en": "What is the total for the year (s) won in 1977?",
    "question_th": "จำนวนรวมของปีที่ชนะในปี 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_en": "What is the total to par with a total of 163?",
    "question_th": "ผลรวมที่จะพาร์กับผลรวม 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_en": "What is the total for a to par bigger than 7 and a player of al geiberger?",
    "question_th": "ผลรวมของพาร์ที่มากกว่า 7 และผู้เล่นของอัล ไจเบอร์เกอร์เป็นเท่าใด?",
    "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_en": "What is the 2 vs 3 when total is bigger than 38?",
    "question_th": "อะไรคือ 2 ต่อ 3 เมื่อผลรวมมากกว่า 38?",
    "context": "CREATE TABLE table_name_52 (total INTEGER)"
  },
  {
    "answer": "SELECT year_s__won FROM table_name_71 WHERE total < 276",
    "question_en": "Which Year(s) won has a Total smaller than 276? Question 1",
    "question_th": "ปีไหนที่ชนะมีคะแนนรวมน้อยกว่า 276? คำถามที่ 1",
    "context": "CREATE TABLE table_name_71 (year_s__won VARCHAR, total INTEGER)"
  },
  {
    "answer": "SELECT player FROM table_name_68 WHERE finish = \"74\"",
    "question_en": "Who Player has a Finish of 74?",
    "question_th": "ผู้เล่นคนไหนจบสกอร์ 74?",
    "context": "CREATE TABLE table_name_68 (player VARCHAR, finish VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_77 WHERE player = \"tom watson\"",
    "question_en": "Which To par has a Player of tom watson?",
    "question_th": "ทอม วัตสัน มีนักเตะพาร์คนไหน?",
    "context": "CREATE TABLE table_name_77 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_20 WHERE total = 287",
    "question_en": "Name the Finish which has a Total of 287?",
    "question_th": "ตั้งชื่อ Finish ซึ่งมีทั้งหมด 287?",
    "context": "CREATE TABLE table_name_20 (finish VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_64 WHERE method = \"ko (punch)\"",
    "question_en": "What is the round where there was a KO (punch)?",
    "question_th": "รอบไหนที่มีการน็อค(หมัด)?",
    "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_en": "What event was a loss in 5:00?",
    "question_th": "เหตุการณ์ใดคือการสูญเสียในเวลา 05: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_en": "What is the location of the Conquista Fight 1?",
    "question_th": "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_en": "What is the time where the record is 10-1?",
    "question_th": "สถิติ 10-1 กี่โมง?",
    "context": "CREATE TABLE table_name_66 (time VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_91 WHERE time = \"1:11\"",
    "question_en": "What is the record when the time is 1:11?",
    "question_th": "บันทึกเมื่อเวลา 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_en": "What's the total loss for a GP-GS of 8-8 and a gain less than 416?",
    "question_th": "การสูญเสียทั้งหมดสำหรับ GP-GS ที่ 8-8 และกำไรน้อยกว่า 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_en": "What's the total long for more than 24 loss, a gain over 273, and an avg/g of 207.8?",
    "question_th": "อะไรคือระยะเวลารวมของการขาดทุนมากกว่า 24 ครั้ง, กำไรมากกว่า 273 และค่าเฉลี่ย/กรัมที่ 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_en": "What's the total long for an avg/g over 0.2, fewer than 2 loss, and a gain less than 8?",
    "question_th": "ความยาวรวมของ avg/g มากกว่า 0.2, ขาดทุนน้อยกว่า 2 ครั้ง และกำไรน้อยกว่า 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_en": "What's cameron dantley's total avg/g for loss less than 35?",
    "question_th": "ค่าเฉลี่ยรวม/กรัมของคาเมรอน แดนท์ลีย์สำหรับการขาดทุนน้อยกว่า 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_en": "What's the lowest avg/g for a GP-GS of 12-12 and a gain less than 16?",
    "question_th": "ค่าเฉลี่ย/g ต่ำสุดสำหรับ GP-GS ที่ 12-12 และกำไรน้อยกว่า 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_en": "What player has 1 as the place?",
    "question_th": "ผู้เล่นคนไหนมีตำแหน่งที่ 1?",
    "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_en": "What is the lowest score that has t10 as the place, with Ireland as the country?",
    "question_th": "คะแนนต่ำสุดที่มี t10 เป็นสถานที่ โดยมีไอร์แลนด์เป็นประเทศคือเท่าใด",
    "context": "CREATE TABLE table_name_79 (score INTEGER, place VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_16 WHERE date = \"april 24\"",
    "question_en": "What is Record, when Date is \"April 24\"?",
    "question_th": "Record คืออะไร เมื่อวันที่คือ \"24 เมษายน\"",
    "context": "CREATE TABLE table_name_16 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_24 WHERE date = \"april 24\"",
    "question_en": "What is Visitor, when Date is \"April 24\"?",
    "question_th": "Visitor คืออะไร เมื่อวันที่คือ \"24 เมษายน\"",
    "context": "CREATE TABLE table_name_24 (visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_25 WHERE record = \"1-1\"",
    "question_en": "What is Date, when Record is \"1-1\"?",
    "question_th": "วันที่คืออะไร เมื่อบันทึกเป็น \"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_en": "What is Record, when Home is \"New York Rangers\", and when Date is \"April 17\"?",
    "question_th": "สถิติคืออะไร เมื่อทีมเหย้าคือ \"นิวยอร์ก เรนเจอร์ส\" และวันที่คือ \"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_en": "What is Record, when Visitor is \"Chicago Black Hawks\", and when Date is \"April 17\"?",
    "question_th": "บันทึกคืออะไร เมื่อผู้เยี่ยมชมคือ \"Chicago Black Hawks\" และวันที่คือ \"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_en": "What is Score, when Record is \"4-1\"?",
    "question_th": "สกอร์คืออะไร เมื่อสถิติเป็น \"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_en": "What player won 1985?",
    "question_th": "ผู้เล่นคนไหนชนะในปี 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_en": "What's spain's highest total?",
    "question_th": "ยอดรวมสูงสุดของสเปนคือเท่าไร?",
    "context": "CREATE TABLE table_name_34 (total INTEGER, country VARCHAR)"
  },
  {
    "answer": "SELECT AVG(to_par) FROM table_name_13 WHERE player = \"lee trevino\"",
    "question_en": "What's the average to par for lee trevino?",
    "question_th": "ค่าเฉลี่ยพาร์สำหรับลี เทรวิโนคือเท่าไร?",
    "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_en": "How much Jury has an Artist of chalice & maagiline kuues, and a Draw smaller than 5?",
    "question_th": "Jury มีศิลปินถ้วยและ maagiline kuues จำนวนเท่าใด และเสมอน้อยกว่า 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_en": "What is the pre-release when the developer is no?",
    "question_th": "อะไรคือรุ่นก่อนวางจำหน่ายเมื่อนักพัฒนาไม่มี?",
    "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_en": "What is the developer when the 1.2 is 341s0297 thru 300?",
    "question_th": "นักพัฒนาคืออะไรเมื่อ 1.2 คือ 341s0297 ถึง 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_en": "Who is the developer when the pre-release is no*?",
    "question_th": "ใครเป็นผู้พัฒนาเมื่อไม่มีรุ่นก่อนวางจำหน่าย*?",
    "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_en": "What is the KINKA 1.2 when the pre-release is no and the developer is yes?",
    "question_th": "KINKA 1.2 คืออะไร เมื่อไม่มีรุ่นก่อนวางจำหน่าย และผู้พัฒนาคือใช่?",
    "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_en": "What is the KINKA 1.3 when the developer is yes and the support version is support mo 230?",
    "question_th": "KINKA 1.3 คืออะไรเมื่อผู้พัฒนาใช่และเวอร์ชันรองรับรองรับ 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_en": "Which version has a KINKA pre-release of no*?",
    "question_th": "เวอร์ชันใดมี KINKA pre-release 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_en": "WHAT IS THE LOWEST NANQUAN WITH A RANK BIGGER THAN 2, TOTAL LESS THAN 18.36 AND SMALLER THAN 8.85?",
    "question_th": "อะไรคือ NANQUAN ที่ต่ำที่สุดซึ่งมีอันดับมากกว่า 2 รวมน้อยกว่า 18.36 และเล็กกว่า 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_en": "WHAT IS THE AVERAGE NANGUN WITH A RANK LARGER THAN 2, TOTAL OF 17.85?",
    "question_th": "อะไรคือค่าเฉลี่ยของ NANGUN ที่มีอันดับมากกว่า 2 รวมเป็น 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_en": "WHAT IS THE TOTAL WITH A NANQUAN OF 9.72, RANK BIGGER THAN 3, NANGUN SMALLER THAN 9.5?",
    "question_th": "อะไรคือผลรวมของ NANQUAN ที่ 9.72, อันดับที่ใหญ่กว่า 3, NANGUN ที่เล็กกว่า 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_en": "What is the date of the ship with a tonnage greater than 8,017?",
    "question_th": "เรือที่มีระวางน้ำหนักมากกว่า 8,017 ตันออกเมื่อใด",
    "context": "CREATE TABLE table_name_10 (date VARCHAR, tonnage INTEGER)"
  },
  {
    "answer": "SELECT ship FROM table_name_18 WHERE nationality = \"norway\"",
    "question_en": "What ship has a norway nationality?",
    "question_th": "เรือลำใดมีสัญชาตินอร์เวย์?",
    "context": "CREATE TABLE table_name_18 (ship VARCHAR, nationality VARCHAR)"
  },
  {
    "answer": "SELECT fate FROM table_name_20 WHERE date = \"26 april 1942\"",
    "question_en": "What is the fate of the ship on 26 April 1942?",
    "question_th": "ชะตากรรมของเรือเมื่อวันที่ 26 เมษายน พ.ศ. 2485 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_20 (fate VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(tonnage) FROM table_name_71 WHERE nationality = \"norway\"",
    "question_en": "What is the highest tonnage of the ship from norway?",
    "question_th": "น้ำหนักเรือสูงสุดจากนอร์เวย์คือเท่าไร?",
    "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_en": "How many households have a Median household income of $43,889?",
    "question_th": "มีกี่ครัวเรือนที่มีรายได้เฉลี่ยครัวเรือนอยู่ที่ $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_en": "Which Population has a Median family income of $53,946?",
    "question_th": "ประชากรใดมีรายได้เฉลี่ยของครอบครัวอยู่ที่ 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_en": "Which Circuit has an Event of international procar meeting?",
    "question_th": "สนามไหนมีงานประชุมโปรคาร์ระดับนานาชาติบ้าง?",
    "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_en": "Which Circuit has a Winning Driver of hans-joachim stuck, and a Round of 3?",
    "question_th": "สนามไหนมีนักแข่งที่ชนะอย่าง hans-joachim ติดอยู่ และรอบ 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_en": "Which Winning Driver has a Circuit of circuit zandvoort?",
    "question_th": "ไดรเวอร์ที่ชนะคนใดมีวงจรของวงจร zandvoort?",
    "context": "CREATE TABLE table_name_43 (winning_driver VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT winning_driver FROM table_name_45 WHERE round = 9",
    "question_en": "Which Winning Driver has a Round of 9?",
    "question_th": "นักแข่งคนใดที่ชนะจะมีรอบ 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_en": "Which Round has an Event of 200 miles of norisring?",
    "question_th": "รอบใดมีกิจกรรมระยะทาง 200 ไมล์ของนอริสริง",
    "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_en": "Which Winning Driver has an Event of 200 miles of norisring?",
    "question_th": "นักแข่งที่ชนะคนใดมีกิจกรรมระยะทาง 200 ไมล์จากนอริสริง",
    "context": "CREATE TABLE table_name_82 (winning_driver VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT AVG(pick) FROM table_name_26 WHERE year = 1983",
    "question_en": "What is the average pick in 1983?",
    "question_th": "การเลือกเฉลี่ยในปี 1983 คืออะไร?",
    "context": "CREATE TABLE table_name_26 (pick INTEGER, year VARCHAR)"
  },
  {
    "answer": "SELECT AVG(year) FROM table_name_14 WHERE team = \"montreal expos\"",
    "question_en": "What is the average year of the montreal expos?",
    "question_th": "ปีเฉลี่ยของงานแสดงสินค้ามอนทรีออลคือเท่าไร?",
    "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_en": "What is the total pick number of the los angeles dodgers, which has a lhp position before 1979?",
    "question_th": "หมายเลขเลือกทั้งหมดของ los angeles Dodgers ซึ่งมีตำแหน่ง lhp ก่อนปี 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_en": "What ship was built in 2012?",
    "question_th": "เรือลำใดที่ถูกสร้างขึ้นในปี 2012?",
    "context": "CREATE TABLE table_name_79 (ship VARCHAR, built VARCHAR)"
  },
  {
    "answer": "SELECT ship FROM table_name_91 WHERE built = 2012",
    "question_en": "What ship was built in 2012?",
    "question_th": "เรือลำใดที่ถูกสร้างขึ้นในปี 2012?",
    "context": "CREATE TABLE table_name_91 (ship VARCHAR, built VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(built) FROM table_name_21 WHERE flag = \"panama\"",
    "question_en": "What is the total of built with a flag of panama?",
    "question_th": "สร้างด้วยธงปานามา ยอดเท่าไร?",
    "context": "CREATE TABLE table_name_21 (built VARCHAR, flag VARCHAR)"
  },
  {
    "answer": "SELECT tonnage FROM table_name_75 WHERE built = 2007",
    "question_en": "What tonnage was built in 2007?",
    "question_th": "น้ำหนักเท่าไรที่ถูกสร้างขึ้นในปี 2550?",
    "context": "CREATE TABLE table_name_75 (tonnage VARCHAR, built VARCHAR)"
  },
  {
    "answer": "SELECT operator FROM table_name_8 WHERE ship = \"costa pacifica\"",
    "question_en": "What operator has a ship costa pacifica?",
    "question_th": "โอเปอเรเตอร์รายใดมีเรือ costa pacifica?",
    "context": "CREATE TABLE table_name_8 (operator VARCHAR, ship VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_38 WHERE date = \"november 1\"",
    "question_en": "Who is the opponent on November 1?",
    "question_th": "คู่ต่อสู้ในวันที่ 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_en": "What is the pick for round 8 with a USA nationality in the 2000 draft?",
    "question_th": "ตัวเลือกสำหรับรอบ 8 ที่มีสัญชาติสหรัฐอเมริกาในร่างปี 2000 คืออะไร",
    "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_en": "What is the round of player brad winton with a draft before 1983 and a pick less than 132?",
    "question_th": "ผู้เล่นแบรด วินตันที่มีดราฟต์ก่อนปี 1983 และตัวเลือกน้อยกว่า 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_en": "What is the pick of player don waddell from round 7?",
    "question_th": "ดอน วัดเดลล์ จะเลือกผู้เล่นจากรอบ 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_en": "What is the average pick of player josh green from Canada from round 2 with a draft after 1996?",
    "question_th": "ค่าเฉลี่ยของผู้เล่นจอช กรีนจากแคนาดาจากรอบ 2 พร้อมดราฟท์หลังปี 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_en": "What is the lowest draft of player justin martin from the USA?",
    "question_th": "จัสติน มาร์ติน ดราฟท์นักเตะจากอเมริกาต่ำที่สุดคือเท่าไร?",
    "context": "CREATE TABLE table_name_80 (draft INTEGER, nationality VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_4 WHERE total = \"defending champion\"",
    "question_en": "What event is defending champion the total?",
    "question_th": "เหตุการณ์ใดที่ป้องกันแชมป์ได้ทั้งหมด?",
    "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_en": "The event WC Rio De Janeiro with a total of 16 has what as rank points?",
    "question_th": "งาน WC Rio De Janeiro มีทั้งหมด 16 คน มีคะแนนอันดับอะไร?",
    "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_en": "Who is the shooter at the WC Rio De Janeiro event with 10 rank points?",
    "question_th": "ใครคือมือปืนในงาน WC Rio De Janeiro ที่มีคะแนนอันดับ 10?",
    "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_en": "What years did New Zealand win?",
    "question_th": "นิวซีแลนด์ชนะในปีไหน?",
    "context": "CREATE TABLE table_name_30 (year_s__won VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_34 WHERE total < 277",
    "question_en": "What player had a total less than 277?",
    "question_th": "ผู้เล่นคนใดมีคะแนนรวมน้อยกว่า 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_en": "What country had a total less than 291 and a 4 Finish?",
    "question_th": "ประเทศใดมีคะแนนรวมน้อยกว่า 291 และเข้าเส้นชัย 4 ครั้ง?",
    "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_en": "Name the Score of Tournament of portugal f1, faro , portugal?",
    "question_th": "ตั้งชื่อคะแนนการแข่งขันของ 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_en": "Which Outcome has a Surface of clay, and a Tournament of morocco f5, rabat , morocco?",
    "question_th": "ผลลัพธ์ใดที่มีพื้นผิวเป็นดินเหนียว และการแข่งขันของโมร็อกโก f5, ราบัต , โมร็อกโก?",
    "context": "CREATE TABLE table_name_79 (outcome VARCHAR, surface VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_19 WHERE tournament = \"milan , italy\"",
    "question_en": "Which Outcome that has a Tournament of milan , italy?",
    "question_th": "ผลการแข่งขันรายการไหนของ มิลาน อิตาลี?",
    "context": "CREATE TABLE table_name_19 (outcome VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_69 WHERE tournament = \"milan , italy\"",
    "question_en": "Which Date has a Tournament of milan , italy?",
    "question_th": "มีทัวร์นาเมนต์ของ มิลาน อิตาลี วันไหน?",
    "context": "CREATE TABLE table_name_69 (date VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_31 WHERE opponent = \"piero luisi\"",
    "question_en": "Which Tournament has a Opponent of piero luisi?",
    "question_th": "ทัวร์นาเมนต์ใดที่มีคู่ต่อสู้ของปิเอโร ลุยซี่?",
    "context": "CREATE TABLE table_name_31 (tournament VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_56 WHERE away_team = \"york city\"",
    "question_en": "What date was the game with the away team york city?",
    "question_th": "แข่งกับทีมเยือนยอร์คซิตี้วันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_56 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_74 WHERE home_team = \"peterborough united\"",
    "question_en": "What date did the home game for peterborough united take place?",
    "question_th": "เกมเหย้าของ ปีเตอร์โบโร่ ยูไนเต็ด จัดขึ้นวันไหน?",
    "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_en": "What is the Venue of the 2002 World Cup Qualification?",
    "question_th": "สถานที่จัดการแข่งขันฟุตบอลโลก 2002 รอบคัดเลือกคือที่ไหน?",
    "context": "CREATE TABLE table_name_48 (venue VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_91 WHERE competition = \"friendly\"",
    "question_en": "What is the Venue with the Friendly Competition?",
    "question_th": "สถานที่จัดการแข่งขันกระชับมิตรคือที่ไหน?",
    "context": "CREATE TABLE table_name_91 (venue VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_44 WHERE opponent = \"li na\"",
    "question_en": "What is the score when Li Na was the opponent?",
    "question_th": "เมื่อหลี่นาเป็นคู่ต่อสู้ได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_44 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_97 WHERE date = \"19 february 2011\"",
    "question_en": "Who was the opponent on 19 February 2011?",
    "question_th": "คู่ต่อสู้เมื่อวันที่ 19 กุมภาพันธ์ 2554 คือใคร?",
    "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_en": "How many goals against did Clitheroe have when the loss was larger than 2?",
    "question_th": "คลิเธอโรทำได้กี่ประตูเมื่อแพ้มากกว่า 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_en": "What was the highest position for Rossendale United when the played was larger than 34?",
    "question_th": "ตำแหน่งสูงสุดสำหรับรอสเซนเดล ยูไนเต็ด เมื่อเล่นมากกว่า 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_en": "When was the earliest with 4 seasons?",
    "question_th": "เร็วที่สุดกับ 4 ซีซั่นคือเมื่อไหร่?",
    "context": "CREATE TABLE table_name_81 (year_s_ INTEGER, season VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_38 WHERE week = 13",
    "question_en": "What was the result of week 13?",
    "question_th": "สัปดาห์ที่ 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_en": "What is the score of the game with 22 points and the capitals as the opponent?",
    "question_th": "แต้มของเกมที่มี 22 แต้มและมีเมืองหลวงเป็นคู่ต่อสู้คือเท่าไร?",
    "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_en": "What is the sum of the attendance on November 16?",
    "question_th": "จำนวนผู้เข้าร่วมในวันที่ 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_en": "What Scores by each individual judge has a Status of eliminated, and a Date performed of august 13?",
    "question_th": "คะแนนของผู้ตัดสินแต่ละคนมีสถานะเป็นตกรอบ และวันที่ดำเนินการคือวันที่ 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_en": "What Scores by each individual judge has a Total score/week of 51/60, and a Co-contestant (Yaar vs. Pyaar) of tina sachdev?",
    "question_th": "ผู้ตัดสินแต่ละคนมีคะแนนรวมเท่าใด/สัปดาห์ที่ 51/60 และผู้เข้าแข่งขันร่วม (Yaar vs. Pyaar) ของ 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_en": "What Co-contestant (Yaar vs. Pyaar) has a Total score/week of 48/60, and a Date performed of august 14?",
    "question_th": "ผู้เข้าแข่งขันร่วมคนใด (Yaar vs. Pyaar) มีคะแนนรวม/สัปดาห์ที่ 48/60 และจัดวันที่ 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_en": "What Date performed has a Scores by each individual judge of 10 + 10 + 10 = 30, and a Main contestant of karanvir bohra?",
    "question_th": "การแสดงวันที่ใดมีคะแนนโดยกรรมการแต่ละคน 10 + 10 + 10 = 30 และผู้เข้าแข่งขันหลักของ 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_en": "What Status has a Date performed of august 13, and a Position of safe?",
    "question_th": "สถานะใดมีวันที่ดำเนินการในวันที่ 13 สิงหาคม และตำแหน่งที่ปลอดภัย?",
    "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_en": "What Scores by each individual judge has a Status of current, and a Co-contestant (Yaar vs. Pyaar) of krushna abhishek?",
    "question_th": "คะแนนของผู้ตัดสินแต่ละคนมีสถานะปัจจุบันและผู้แข่งขันร่วม (Yaar vs. Pyaar) ของ 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_en": "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?",
    "question_th": "ผู้มีสิทธิเลือกตั้งจำนวนใด (2009) มีเขตของ jajjar และสงวนไว้สำหรับ (SC/ST/ไม่มี) ของ sc และจำนวนเขตเลือกตั้งน้อยกว่า 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_en": "What is the highest rank of the athlete with a Taijiquan higher than 9.64 and a total more than 19.69?",
    "question_th": "นักกีฬาที่มีมวยไท่จี๋สูงกว่า 9.64 และคะแนนรวมมากกว่า 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_en": "What is the lowest Taijiquan of the athlete who has a Taijijian of 9.7 and a total more than 19.34?",
    "question_th": "ไทจิฉวนต่ำสุดของนักกีฬาที่มีไทจิเจี้ยน 9.7 และรวมมากกว่า 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_en": "What are the years that had someone nominated for best supporting actress?",
    "question_th": "กี่ปีที่มีการเสนอชื่อเข้าชิงนักแสดงสมทบหญิงยอดเยี่ยม?",
    "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_en": "What's the nominee for best supporting actress?",
    "question_th": "ผู้ได้รับการเสนอชื่อเข้าชิงนักแสดงสมทบหญิงยอดเยี่ยมคืออะไร?",
    "context": "CREATE TABLE table_name_86 (nominee VARCHAR, category VARCHAR)"
  },
  {
    "answer": "SELECT tie_no FROM table_name_39 WHERE score = \"1–1\"",
    "question_en": "What is the Tie no of the game with a Score of 1–1?",
    "question_th": "หมายเลขเสมอของเกมที่มีคะแนน 1–1 คืออะไร?",
    "context": "CREATE TABLE table_name_39 (tie_no VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_57 WHERE home_team = \"burnley\"",
    "question_en": "What is the Score of the Burnley Home game?",
    "question_th": "เกมเหย้าเบิร์นลี่ย์สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_57 (score VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_93 WHERE home_team = \"arsenal\"",
    "question_en": "What is the Away team when Arsenal is the Home team?",
    "question_th": "ทีมเยือนจะเป็นทีมไหน ในเมื่อ อาร์เซน่อล เป็นทีมเหย้า?",
    "context": "CREATE TABLE table_name_93 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_67 WHERE tie_no = \"3\"",
    "question_en": "What is the Date of Tie no 3?",
    "question_th": "วันที่ผูกครั้งที่ 3 คืออะไร?",
    "context": "CREATE TABLE table_name_67 (date VARCHAR, tie_no VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_94 WHERE record = \"3–1\"",
    "question_en": "Which opponent has a record of 3–1?",
    "question_th": "คู่ต่อสู้คนใดมีสถิติ 3–1?",
    "context": "CREATE TABLE table_name_94 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_22 WHERE record = \"4–2\"",
    "question_en": "What event has a Record of 4–2?",
    "question_th": "เหตุการณ์ใดมีสถิติ 4–2",
    "context": "CREATE TABLE table_name_22 (event VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_18 WHERE time = \"0:38\"",
    "question_en": "Which Opponent has a Time of 0:38?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีเวลา 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_en": "What was the score when the result was win, in Helsinki, competition was friendly?",
    "question_th": "คะแนนเป็นเท่าใดเมื่อผลชนะในเฮลซิงกิการแข่งขันกระชับมิตร?",
    "context": "CREATE TABLE table_name_50 (score VARCHAR, competition VARCHAR, result VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_85 WHERE score = \"7–0\"",
    "question_en": "What competition has a Score of 7–0?",
    "question_th": "การแข่งขันใดมีคะแนน 7–0?",
    "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_en": "What date has a result of win, in a friendly competition in Porto?",
    "question_th": "ผลการแข่งขันกระชับมิตรที่ปอร์โต้มีผลวันไหน?",
    "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_en": "Who has the city Santiago?",
    "question_th": "ใครมีเมืองซานติอาโก?",
    "context": "CREATE TABLE table_name_41 (name VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_48 WHERE set_2 = \"15:21\"",
    "question_en": "What is the score for Set 2 at 15:21?",
    "question_th": "คะแนนชุดที่ 2 เวลา 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_en": "What Set 2 has a set one at 19:21?",
    "question_th": "ชุดที่ 2 มีชุดไหนเวลา 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_en": "What is the score for Set 1 at 19:21?",
    "question_th": "คะแนนชุดที่ 1 เวลา 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_en": "What is the Set 1 with set 2 at 21:17?",
    "question_th": "ชุดที่ 1 กับชุดที่ 2 เวลา 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_en": "What Result F – A has a League position of 2nd, and Opponents of liverpool?",
    "question_th": "ผลการแข่งขัน F – A มีอันดับในลีกที่ 2 และฝ่ายตรงข้ามของลิเวอร์พูลคืออะไร?",
    "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 – 0\" AND opponents = \"queens park rangers\"",
    "question_en": "What League position has a Result F – A of 2 – 0, and Opponents of queens park rangers?",
    "question_th": "ตำแหน่งในลีกใดมีผลการแข่งขัน F – A เท่ากับ 2 – 0 และฝ่ายตรงข้ามของควีนส์ปาร์ค เรนเจอร์ส?",
    "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_en": "What is the smallest Attendance with H / A of h, and Opponents of nottingham forest?",
    "question_th": "การเข้าร่วมที่น้อยที่สุดด้วย H / A ของ h และฝ่ายตรงข้ามของน็อตติงแฮมฟอเรสต์คืออะไร?",
    "context": "CREATE TABLE table_name_4 (attendance INTEGER, h___a VARCHAR, opponents VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_66 WHERE place = \"4\"",
    "question_en": "What country has a place of 4?",
    "question_th": "ประเทศใดมีสถานที่ 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_en": "What did the United States score in the T5?",
    "question_th": "สหรัฐอเมริกาได้คะแนนเท่าใดใน 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_en": "What was the to par at the T5 for the player with a score of 74-69-66=209?",
    "question_th": "อะไรคือสิ่งที่จะได้พาร์ที่ T5 สำหรับผู้เล่นที่มีคะแนน 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_en": "Where did Trinidad and Tobago play?",
    "question_th": "ตรินิแดดและโตเบโกเล่นที่ไหน?",
    "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_en": "What was the to par for the game with a score of 74-69-66=209?",
    "question_th": "แต้มพาร์ของเกมด้วยสกอร์ 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_en": "Where is Eduardo Romero from?",
    "question_th": "เอดูอาร์โด โรเมโรมาจากไหน?",
    "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_en": "In what city is the Estonian University of Life Sciences located?",
    "question_th": "Estonian University of Life Sciences ตั้งอยู่ในเมืองใด",
    "context": "CREATE TABLE table_name_42 (city VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT abbr FROM table_name_43 WHERE name = \"university of tartu\"",
    "question_en": "What is the abbreviation for the University of Tartu?",
    "question_th": "มหาวิทยาลัย Tartu ย่อมาจากอะไร?",
    "context": "CREATE TABLE table_name_43 (abbr VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_30 WHERE player = \"fred funk\"",
    "question_en": "What place is Fred Funk in?",
    "question_th": "Fred Funk อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_30 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_67 WHERE away_team = \"thame united\"",
    "question_en": "What is Score, when Away Team is \"Thame United\"?",
    "question_th": "Score คืออะไร เมื่อทีมเยือนคือ \"เทม ยูไนเต็ด\"?",
    "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_en": "What is Score, when Attendance is \"76\", and when Home Team is \"Meir Ka\"?",
    "question_th": "คะแนนคืออะไร เมื่อผู้เข้าร่วมคือ \"76\" และเมื่อทีมเหย้าคือ \"เมียร์ กา\"?",
    "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–2 on penalties\"",
    "question_en": "What is Tie No, when Score is \"Marlow United won 4–2 on penalties\"?",
    "question_th": "Tie No คืออะไร เมื่อสกอร์คือ \"มาร์โลว์ ยูไนเต็ด ชนะจุดโทษ 4–2\"?",
    "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_en": "What is Home Team, when Attendance is \"112\", and when Away Team is \"Kentish Town\"?",
    "question_th": "ทีมเหย้าคืออะไร เมื่อผู้เข้าร่วมคือ \"112\" และเมื่อทีมเยือนคือ \"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_en": "What was the April 7, 2008 score on a clay surface?",
    "question_th": "คะแนนเมื่อวันที่ 7 เมษายน 2551 บนพื้นผิวดินเหนียวเป็นเท่าใด",
    "context": "CREATE TABLE table_name_71 (score VARCHAR, surface VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_55 WHERE score = \"6–3, 3–6, 6–0\"",
    "question_en": "What date was the score 6–3, 3–6, 6–0?",
    "question_th": "คะแนน 6–3, 3–6, 6–0 คือวันไหน?",
    "context": "CREATE TABLE table_name_55 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT 17 AS th_c FROM table_name_25 WHERE american = \"ə\"",
    "question_en": "What is 17th c., when American is \"ə\"?",
    "question_th": "ศตวรรษที่ 17 คืออะไร เมื่อคนอเมริกันคือ \"ə\"?",
    "context": "CREATE TABLE table_name_25 (american VARCHAR)"
  },
  {
    "answer": "SELECT 17 AS th_c FROM table_name_25 WHERE australian = \"i, ɪ, ə\" AND examples = \"œsophagus\"",
    "question_en": "What is 17th c., when Australian is \"i, ɪ, ə\", and when Examples is \"œsophagus\"?",
    "question_th": "ศตวรรษที่ 17 คืออะไร เมื่อภาษาออสเตรเลียคือ \"i, ə, ə\" และเมื่อตัวอย่างคือ \"OEsophagus\"",
    "context": "CREATE TABLE table_name_25 (australian VARCHAR, examples VARCHAR)"
  },
  {
    "answer": "SELECT australian FROM table_name_95 WHERE examples = \"amœba, anemone, ascesis\"",
    "question_en": "What is Australian, when Examples is \"amœba, anemone, ascesis\"?",
    "question_th": "ชาวออสเตรเลียคืออะไร เมื่อตัวอย่างคือ \"amOEba, anemone, ascesis\"",
    "context": "CREATE TABLE table_name_95 (australian VARCHAR, examples VARCHAR)"
  },
  {
    "answer": "SELECT british FROM table_name_83 WHERE australian = \"i, ɪ, ə\" AND examples = \"œsophagus\"",
    "question_en": "What is British, when Australian is \"i, ɪ, ə\", and when Examples is \"œsophagus\"?",
    "question_th": "บริติชคืออะไร เมื่อภาษาออสเตรเลียคือ \"i, ə, ə\" และเมื่อตัวอย่างคือ \"OEsophagus\"",
    "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_en": "What is Australian, when Examples is \"elysium, emeritus, epitome, erotica\"?",
    "question_th": "ชาวออสเตรเลียคืออะไรเมื่อตัวอย่างคือ \"เอลิเซียม, ตำแหน่งกิตติมศักดิ์, สิ่งที่ดีเลิศ, เรื่องโป๊เปลือย\"?",
    "context": "CREATE TABLE table_name_50 (australian VARCHAR, examples VARCHAR)"
  },
  {
    "answer": "SELECT report FROM table_name_33 WHERE circuit = \"cagliari\"",
    "question_en": "Which report had a circuit of Cagliari?",
    "question_th": "รายงานฉบับใดมีวงจรของกายารี?",
    "context": "CREATE TABLE table_name_33 (report VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_49 WHERE circuit = \"monza\"",
    "question_en": "Which name had the circuit Monza?",
    "question_th": "ชื่ออะไรมีวงจร Monza?",
    "context": "CREATE TABLE table_name_49 (name VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_72 WHERE circuit = \"isle of man\"",
    "question_en": "What day was the circuit Isle of Man?",
    "question_th": "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_en": "What is the 2nd leg for the team 2 Milano?",
    "question_th": "เลก 2 ของทีม 2 มิลาโน่ คืออะไร?",
    "context": "CREATE TABLE table_name_72 (team_2 VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_32 WHERE pick > 243",
    "question_en": "What was the position of the player picked at 243?",
    "question_th": "ตำแหน่งผู้เล่นที่เลือกที่ 243 คืออะไร?",
    "context": "CREATE TABLE table_name_32 (position VARCHAR, pick INTEGER)"
  },
  {
    "answer": "SELECT visitor FROM table_name_69 WHERE record = \"24–14–2\"",
    "question_en": "Who was the visitor when the record was 24–14–2?",
    "question_th": "ใครคือผู้มาเยือนเมื่อบันทึกคือ 24–14–2",
    "context": "CREATE TABLE table_name_69 (visitor VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_1 WHERE score = \"6–4\"",
    "question_en": "On what date was the score 6–4?",
    "question_th": "คะแนน 6–4 คือวันไหน?",
    "context": "CREATE TABLE table_name_1 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_77 WHERE date = \"february 17\"",
    "question_en": "What was the score on February 17?",
    "question_th": "คะแนนวันที่ 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_en": "What is the total number of Silver, when Gold is \"1\", and when Bronze is less than 0?",
    "question_th": "จำนวนเงินทั้งหมดคือเท่าไร เมื่อทองคือ \"1\" และเมื่อทองแดงน้อยกว่า 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_en": "What is the highest Bronze, when Nation is \"South Africa\", and when Total is less than 20?",
    "question_th": "เหรียญทองแดงสูงสุดคืออะไร เมื่อประเทศคือ \"แอฟริกาใต้\" และเมื่อคะแนนรวมน้อยกว่า 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_en": "What is the highest Silver, when Gold is \"8\", and when Total is greater than 31?",
    "question_th": "เงินสูงสุดคืออะไร เมื่อทองคำคือ \"8\" และเมื่อผลรวมมากกว่า 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_en": "What is the total number of Silver, when Gold is less than 34, when Rank is \"6\", and when Total is greater than 10?",
    "question_th": "คือจำนวนเงินทั้งหมด เมื่อทองน้อยกว่า 34 เมื่ออันดับเป็น \"6\" และเมื่อผลรวมมากกว่า 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_en": "What is Bronze, when Silver is less than 89, and when Total is \"4\"?",
    "question_th": "Bronze คืออะไร เมื่อ Silver น้อยกว่า 89 และเมื่อ Total คือ \"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_en": "What's the production time with more than 2.737 built and a 280s model?",
    "question_th": "เวลาในการผลิตที่มีมากกว่า 2.737 สร้างขึ้นและรุ่น 280 คือเท่าไร?",
    "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_en": "What's the total number built with a chassis code of w108.057?",
    "question_th": "หมายเลขทั้งหมดที่สร้างด้วยรหัสแชสซี 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_en": "What's the chassis code for the 280s model?",
    "question_th": "รหัสตัวถังของรุ่น 280s คืออะไร?",
    "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_en": "What is the lowest Jianshu number for Liu Yang ( hkg )?",
    "question_th": "หมายเลข Jianshu ต่ำสุดสำหรับ 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_en": "What is the lowest rank when Jianshu is smaller than 9.66, for Richard Devine ( gbr ), with a total smaller than 19.02?",
    "question_th": "อันดับต่ำสุดคือเมื่อ Jianshu น้อยกว่า 9.66 สำหรับ Richard Devine ( gbr ) โดยมีผลรวมน้อยกว่า 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_en": "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?",
    "question_th": "จำนวนของ Jianshu เมื่อผลรวมมากกว่า 19.16 สำหรับ Nguyen Huy Thanh (vie ) และ Qiangshu มากกว่า 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_en": "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?",
    "question_th": "จำนวนของเฉียงซูเมื่ออันดับน้อยกว่า 10 รวมเป็น 18.97 และเจียนซูมากกว่า 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_en": "Can you tell me the Place that has the Country of australia, and the Player of ian baker-finch?",
    "question_th": "คุณช่วยบอกสถานที่ที่มีประเทศออสเตรเลียและผู้เล่นของเอียน เบเกอร์-ฟินช์ หน่อยได้ไหม",
    "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_en": "Can you tell me the Place that has the Score of 68, and the Player of christy o'connor jnr?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าสถานที่ที่มีคะแนน 68 และผู้เล่นของ 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_en": "Can you tell me the Player that has the Score larger than 67?",
    "question_th": "คุณช่วยบอกฉันได้ไหมว่าผู้เล่นที่มีคะแนนมากกว่า 67?",
    "context": "CREATE TABLE table_name_60 (player VARCHAR, score INTEGER)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_31 WHERE 2008 = \"134\"",
    "question_en": "What is the 2011 value with a 134 in 2008?",
    "question_th": "ค่าปี 2554 ด้วย 134 ในปี 2551 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_31 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2009 FROM table_name_32 WHERE 2012 = \"a\" AND 2011 = \"q2\"",
    "question_en": "What is the 2009 value with A in 2012 and q2 in 2011?",
    "question_th": "ค่าปี 2552 โดยมี A ในปี 2555 และไตรมาส 2 ในปี 2554 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_32 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_5 WHERE 2008 = \"1r\" AND tournament = \"paris masters\"",
    "question_en": "What is the 2011 value for the paris masters tournament with 1r in 2008?",
    "question_th": "มูลค่าปี 2011 สำหรับการแข่งขัน paris masters กับ 1r ในปี 2008 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_5 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_54 WHERE 2008 = \"nms\"",
    "question_en": "What is the 2011 value with nms in 2008?",
    "question_th": "ค่า 2011 พร้อม nms ในปี 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_en": "Which Draws have a Club of burgos cf, and a Position larger than 8?",
    "question_th": "การออกรางวัลใดมีคลับของ burgos cf และตำแหน่งที่มากกว่า 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_en": "Which Played has a Goal Difference larger than 24?",
    "question_th": "ผู้เล่นคนไหนมีผลต่างประตูมากกว่า 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_en": "Which Goals against has Wins of 13, and Goals for larger than 42, and more than 9 Losses?",
    "question_th": "ประตูใดที่เอาชนะได้ 13 ประตู และประตูมากกว่า 42 ประตู และแพ้มากกว่า 9 ครั้ง",
    "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_en": "How many draws have less than 8 wins, and 31 goals for?",
    "question_th": "เสมอกันกี่นัดชนะน้อยกว่า 8 นัดเสีย 31 ประตู?",
    "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_en": "What event of this season had a time of 2:43?",
    "question_th": "เหตุการณ์ใดในฤดูกาลนี้ที่มีเวลา 2:43 น.",
    "context": "CREATE TABLE table_name_36 (event VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT penalties FROM table_name_20 WHERE gf = \"40\"",
    "question_en": "How many penalties were there in the game with a G.F. of 40?",
    "question_th": "มีบทลงโทษกี่ครั้งในเกมกับ GF 40?",
    "context": "CREATE TABLE table_name_20 (penalties VARCHAR, gf VARCHAR)"
  },
  {
    "answer": "SELECT pim FROM table_name_42 WHERE gf = \"55\"",
    "question_en": "What's the P.I.M. for the G.F. of 55?",
    "question_th": "PIM สำหรับ GF ปี 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_en": "What's the G.A. when there were 2 losses and Scotland played?",
    "question_th": "GA จะเป็นอย่างไรเมื่อมีการสูญเสีย 2 ครั้งและสกอตแลนด์เล่น?",
    "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_en": "Which venue has 2:04.22 notes?",
    "question_th": "สนามไหนมีโน้ต 2:04.22?",
    "context": "CREATE TABLE table_name_19 (venue VARCHAR, notes VARCHAR)"
  },
  {
    "answer": "SELECT years_member FROM table_name_62 WHERE school = \"goreville high school\"",
    "question_en": "What years does Goreville High School have members?",
    "question_th": "Goreville High School มีสมาชิกกี่ปี?",
    "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_en": "What is the name of the school with the Tornadoes Lady Tornadoes?",
    "question_th": "โรงเรียนที่มีพายุทอร์นาโด เลดี้ทอร์นาโด ชื่ออะไร?",
    "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_en": "What is the school with the nickname Tornadoes Lady Tornadoes?",
    "question_th": "โรงเรียนที่มีชื่อเล่นว่า 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_en": "What is the nickname with an enrollment (2013/14) of 160?",
    "question_th": "ชื่อเล่นที่มีการลงทะเบียน (2013/57) จำนวน 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_en": "What is Notes, when Gold is \"Thierry Gueorgiou\", when Year is before 2008, and when Bronze is \"Valentin Novikov\"?",
    "question_th": "Notes คืออะไร เมื่อทองคำคือ \"Thierry Gueorgiou\" เมื่อปีก่อนปี 2008 และเมื่อใดคือ Bronze คือ \"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_en": "What is Notes, when Silver is \"Jarkko Huovila\"?",
    "question_th": "Notes คืออะไร เมื่อ Silver คือ \"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_en": "What is the total number of Year, when Bronze is \"Jamie Stevenson\"?",
    "question_th": "เมื่อ Bronze คือ \"Jamie Stevenson\" มีจำนวนปีทั้งหมดเท่าไร?",
    "context": "CREATE TABLE table_name_90 (year VARCHAR, bronze VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_name_20 WHERE bronze = \"pasi ikonen\"",
    "question_en": "What is Notes, when Bronze is \"Pasi Ikonen\"?",
    "question_th": "Notes คืออะไร เมื่อ Bronze คือ \"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_en": "What is Bronze, when Notes is \"6.7km, 22controls\"?",
    "question_th": "Bronze คืออะไร เมื่อ Notes คือ \"6.7 กม., 22 คอนโทรล\"",
    "context": "CREATE TABLE table_name_2 (bronze VARCHAR, notes VARCHAR)"
  },
  {
    "answer": "SELECT silver FROM table_name_86 WHERE notes = \"6.24km, 23controls\"",
    "question_en": "What is Silver, when Notes is \"6.24km, 23controls\"?",
    "question_th": "Silver คืออะไร เมื่อ Notes คือ \"6.24 กม., 23 คอนโทรล\"",
    "context": "CREATE TABLE table_name_86 (silver VARCHAR, notes VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_52 WHERE player = \"siim ennemuist\"",
    "question_en": "What position has siim ennemuist as the player?",
    "question_th": "ตำแหน่งใดที่มี siim ennemuist เป็นผู้เล่น?",
    "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_en": "What Player has a To par less than 15 and a Total of 149?",
    "question_th": "ผู้เล่นคนใดมีพาร์ To น้อยกว่า 15 และรวม 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_en": "What is the Year(s) won of the Player with a To par of 5?",
    "question_th": "ปีที่ชนะของผู้เล่นโดยมีพาร์ถึง 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_en": "What's the English word for apfel?",
    "question_th": "แอพเฟลภาษาอังกฤษคำว่าอะไร?",
    "context": "CREATE TABLE table_name_53 (english VARCHAR, german VARCHAR)"
  },
  {
    "answer": "SELECT dutch FROM table_name_48 WHERE crimean_gothic = \"apel\"",
    "question_en": "What's the Dutch word for Apel?",
    "question_th": "Apel ภาษาดัตช์แปลว่าอะไร",
    "context": "CREATE TABLE table_name_48 (dutch VARCHAR, crimean_gothic VARCHAR)"
  },
  {
    "answer": "SELECT bible_gothic FROM table_name_7 WHERE english = \"hand\"",
    "question_en": "What's the Bible Gothic for the word hand?",
    "question_th": "Bible Gothic สำหรับคำว่า hand คืออะไร?",
    "context": "CREATE TABLE table_name_7 (bible_gothic VARCHAR, english VARCHAR)"
  },
  {
    "answer": "SELECT icelandic FROM table_name_12 WHERE english = \"rain\"",
    "question_en": "What's the Icelandic word for rain?",
    "question_th": "ฝนในภาษาไอซ์แลนด์แปลว่าอะไร",
    "context": "CREATE TABLE table_name_12 (icelandic VARCHAR, english VARCHAR)"
  },
  {
    "answer": "SELECT icelandic FROM table_name_85 WHERE german = \"hand\"",
    "question_en": "What's the Icelandic word for the German word for hand?",
    "question_th": "คำภาษาไอซ์แลนด์สำหรับคำภาษาเยอรมันสำหรับมือคืออะไร?",
    "context": "CREATE TABLE table_name_85 (icelandic VARCHAR, german VARCHAR)"
  },
  {
    "answer": "SELECT AVG(score) FROM table_name_76 WHERE player = \"nick faldo\"",
    "question_en": "What was the score for Nick Faldo?",
    "question_th": "นิค ฟัลโด ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_76 (score INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT SUM(score) FROM table_name_9 WHERE to_par = \"–5\" AND player = \"peter jacobsen\"",
    "question_en": "What is the score when the to par was –5, for Peter Jacobsen?",
    "question_th": "สกอร์พาร์คือ –5 สำหรับปีเตอร์ จาค็อบเซ่น?",
    "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_en": "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?",
    "question_th": "Run 4 ใดมีประเทศเป็นสหรัฐอเมริกา และนักกีฬาของ bree schaaf emily azevedo และ Run 3 เล็กกว่า 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_en": "How much Run 2 has a Run 4 of 57.68, and a Run 3 smaller than 57.9?",
    "question_th": "Run 2 มี Run 4 เป็น 57.68 และ Run 3 น้อยกว่า 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_en": "Which Run 4 has a Run 1 of 57.37, and a Run 3 smaller than 57.45?",
    "question_th": "Run 4 ใดที่มี Run 1 จาก 57.37 และ Run 3 น้อยกว่า 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_en": "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?",
    "question_th": "นักกีฬาคนใดที่มีรัน 1 มากกว่า 57.37 และรัน 4 น้อยกว่า 59.05 และรัน 3 เป็น 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_en": "What is the total for the first exercise and has 18 as the second exercise?",
    "question_th": "ผลรวมของการฝึกครั้งแรกและมี 18 เป็นแบบฝึกหัดที่สอง?",
    "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_en": "What is the to par of the player with a 68-67-75=210?",
    "question_th": "ค่าพาร์ของผู้เล่นที่มี 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_en": "Who is the player with a 68-67-75=210 score?",
    "question_th": "นักเตะคนไหนที่มีคะแนน 68-67-75=210?",
    "context": "CREATE TABLE table_name_29 (player VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_73 WHERE score = 70 - 68 - 74 = 212",
    "question_en": "Who is the player with a 70-68-74=212 score?",
    "question_th": "นักเตะคนไหนที่มีคะแนน 70-68-74=212?",
    "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_en": "What is the highest Byes by Anakie who has an Against smaller than 2275?",
    "question_th": "Byes สูงสุดโดย Anakie ที่มี Against น้อยกว่า 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_en": "For entries with a lost of 5, what is the sum of the draw entry?",
    "question_th": "สำหรับการเข้าร่วมที่แพ้ 5 ผลรวมของการเข้างวดเป็นเท่าใด",
    "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_en": "What is the lowest place with more than 26 goals scored, 18 goals conceded, and a draw entry of 6?",
    "question_th": "อันดับต่ำสุดที่ทำได้มากกว่า 26 ประตู เสีย 18 ประตู และเสมอกัน 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_en": "What is the highest place that has a draw entry smaller than 6 and goal score of 28?",
    "question_th": "สถานที่สูงสุดที่มีผลงานเสมอน้อยกว่า 6 และคะแนนประตู 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_en": "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?",
    "question_th": "จำนวนประตูต่ำสุดที่ทำได้สำหรับรายการโดยเสียประตูมากกว่า 30 ประตู เสียมากกว่า 3 ประตู และเสมอน้อยกว่า 6 ครั้ง คือเท่าไร?",
    "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_en": "What was the shooter when the rank points was olympic bronze medalist?",
    "question_th": "นักกีฬาคืออะไรเมื่อคะแนนอันดับเป็นผู้ชนะเลิศเหรียญทองแดงโอลิมปิก?",
    "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_en": "What were the rank points when the score was 7 and the total was 15?",
    "question_th": "คะแนนอันดับคืออะไรเมื่อคะแนนเป็น 7 และคะแนนรวมเป็น 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_en": "What were the rank points when the total was 11?",
    "question_th": "คะแนนอันดับเมื่อทั้งหมดเป็น 11 คืออะไร?",
    "context": "CREATE TABLE table_name_72 (rank_points VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT MIN(silver) FROM table_name_51 WHERE bronze < 1",
    "question_en": "What is the smallest number of silver medals for a nation with fewer than 1 bronze?",
    "question_th": "เหรียญเงินจำนวนน้อยที่สุดของประเทศที่มีน้อยกว่า 1 เหรียญทองแดงคือเท่าใด",
    "context": "CREATE TABLE table_name_51 (silver INTEGER, bronze INTEGER)"
  },
  {
    "answer": "SELECT gold FROM table_name_19 WHERE rank = \"6\"",
    "question_en": "How many gold medals for the nation ranked 6?",
    "question_th": "อันดับที่ 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_en": "Name the District which has a Reserved for ( SC / ST /None) of sc?",
    "question_th": "ตั้งชื่ออำเภอที่สงวนไว้สำหรับ ( SC / ST /ไม่มี) ของ 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_en": "Name the  District that has a Reserved for ( SC / ST /None) of none and a Constituency number of 242?",
    "question_th": "ตั้งชื่ออำเภอที่สงวนไว้สำหรับ (SC / ST /ไม่มี) และหมายเลขเขตเลือกตั้ง 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_en": "Name the Number of electorates (2009 which has a Reserved for ( SC / ST /None) of none, and a Name of jahanabad?",
    "question_th": "ตั้งชื่อจำนวนผู้มีสิทธิ์เลือกตั้ง (2009 ซึ่งสงวนไว้สำหรับ (SC / ST /None) ไม่มีเลย และชื่อของ 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_en": "Count the Number of electorates (2009) that has a District of fatehpur and  jahanabad?",
    "question_th": "นับจำนวนผู้มีสิทธิเลือกตั้ง (2552) ที่มีเขต Fatehpur และ 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_en": "What Score has a Date of 11 september 2010?",
    "question_th": "คะแนนใดมีวันที่ 11 กันยายน 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_en": "What Date has an Outcome of runner up, and a Partner of tyra calderwood?",
    "question_th": "What Date มีผลลัพธ์จากการเป็นรองชนะเลิศ และเป็นหุ้นส่วนของ 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_en": "What Score has a Tournament of tanjung selor, indonesia?",
    "question_th": "การแข่งขัน Tanjung Selor อินโดนีเซียมีคะแนนเท่าใด",
    "context": "CREATE TABLE table_name_76 (score VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_2 WHERE opponents = \"sun shengnan han xinyun\"",
    "question_en": "What Date has Opponents of sun shengnan han xinyun?",
    "question_th": "ฝ่ายตรงข้ามของซุน เซิงหนาน ฮัน ซินหยุน มีวันไหน?",
    "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_en": "What is the highest position of club lietava-2 jonava, which has more than 12 points and more than 7 wins?",
    "question_th": "ตำแหน่งสูงสุดของสโมสร ลีตาวา-2 โจนาวา ซึ่งมากกว่า 12 แต้ม และชนะมากกว่า 7 แต้มคือตำแหน่งใด?",
    "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_en": "What is the total number of goals of the club with 4 wins and less than 0 draws?",
    "question_th": "จำนวนประตูรวมของสโมสรที่ชนะ 4 เสมอน้อยกว่า 0 คือเท่าไร?",
    "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_en": "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?",
    "question_th": "จำนวนเกมทั้งหมดที่เล่นของสโมสรโดยทำได้น้อยกว่า 40 ประตู, แพ้ 9 ครั้ง, เสีย 39 ประตู, และเสมอมากกว่า 2 ครั้งคือเท่าไร?",
    "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_en": "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?",
    "question_th": "จำนวนประตูรวมของสโมสรที่เสมอมากกว่า 3 แพ้มากกว่า 1 และน้อยกว่า 26 แต้มคือเท่าไร?",
    "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_en": "What is the sum of the position with less than 0 draws?",
    "question_th": "ผลรวมของตำแหน่งที่เสมอน้อยกว่า 0 เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_39 (position INTEGER, draws INTEGER)"
  },
  {
    "answer": "SELECT home_team FROM table_name_5 WHERE tie_no = \"7\"",
    "question_en": "What is Home Team, when Tie No is \"7\"?",
    "question_th": "ทีมเจ้าบ้านคืออะไร เมื่อเสมอหมายเลขคือ \"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_en": "What is Home Team, when Away Team is \"Brentford\"?",
    "question_th": "ทีมเหย้าคืออะไร เมื่อทีมเยือนคือ \"เบรนท์ฟอร์ด\"?",
    "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_en": "What is Home Team, when Date is \"6 December 1986\", and when Tie No is \"4\"?",
    "question_th": "ทีมเหย้าคืออะไร เมื่อวันที่คือ \"6 ธันวาคม 1986\" และเมื่อเสมอไม่ใช่คือ \"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_en": "What is Date, when Home Team is \"Chester City\"?",
    "question_th": "วันที่เท่าไหร่เมื่อเจ้าบ้านเป็น “เชสเตอร์ ซิตี้”?",
    "context": "CREATE TABLE table_name_18 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT tie_no FROM table_name_96 WHERE home_team = \"gillingham\"",
    "question_en": "What is Tie no, when Home Team is \"Gillingham\"?",
    "question_th": "เสมอไม่ คืออะไร ในเมื่อเจ้าบ้านคือ \"จิลลิ่งแฮม\"?",
    "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_en": "From what Country is T2 Finish Player Gary Player?",
    "question_th": "Gary Player ผู้เล่น T2 Finish มาจากประเทศใด?",
    "context": "CREATE TABLE table_name_60 (country VARCHAR, finish VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT total FROM table_name_96 WHERE finish = \"t39\"",
    "question_en": "What is the total for the player with a Finish of T39?",
    "question_th": "ยอดรวมสำหรับผู้เล่นที่เข้าเส้นชัยที่ T39 เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_96 (total VARCHAR, finish VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_20 WHERE total = 273",
    "question_en": "What is the Finish of the Player with a Total of 273?",
    "question_th": "การจบสกอร์ของผู้เล่นด้วยคะแนนรวม 273 คืออะไร?",
    "context": "CREATE TABLE table_name_20 (finish VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_67 WHERE finish = \"t20\"",
    "question_en": "What is the To par of the player with a Finish of T20?",
    "question_th": "ค่าพาร์ของผู้เล่นที่เข้าเส้นชัยที่ 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_en": "Which byes are high when losses are larger than 7, wins smaller than 6, and draws are smaller than 0?",
    "question_th": "บายไหนจะสูงเมื่อขาดทุนมากกว่า 7 ชนะน้อยกว่า 6 และเสมอน้อยกว่า 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_en": "What is the sum of losses when draws are larger than 0?",
    "question_th": "ผลรวมของการสูญเสียเมื่อเสมอมากกว่า 0 คืออะไร?",
    "context": "CREATE TABLE table_name_11 (losses VARCHAR, draws INTEGER)"
  },
  {
    "answer": "SELECT MIN(draws) FROM table_name_44 WHERE wins > 18",
    "question_en": "What draws are the lowest when wins are larger than 18?",
    "question_th": "เสมอใดที่ต่ำที่สุดเมื่อชนะมากกว่า 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_en": "What is the sum of byes when wins are 8, and losses are larger than 10?",
    "question_th": "ผลรวมของการบายเมื่อชนะคือ 8 และแพ้มากกว่า 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_en": "Which against has the lowest when byes are larger than 0?",
    "question_th": "ข้อใดมีค่าน้อยที่สุดเมื่อบายมากกว่า 0",
    "context": "CREATE TABLE table_name_99 (against INTEGER, byes INTEGER)"
  },
  {
    "answer": "SELECT MAX(losses) FROM table_name_95 WHERE byes > 0",
    "question_en": "What are the highest losses when byes are larger than 0?",
    "question_th": "อะไรคือการสูญเสียสูงสุดเมื่อบายมากกว่า 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_en": "Which player was previously on the New York Knicks?",
    "question_th": "นักเตะคนไหนเคยเล่นให้กับทีม 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_en": "What is the nationality of the player with 2 years of NBA experience for the previously played for the Los Angeles Lakers?",
    "question_th": "ผู้เล่นที่มีประสบการณ์ NBA 2 ปีก่อนหน้านี้เคยเล่นให้กับ 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_en": "What is the Record in a week later than 7 against the San Diego Chargers?",
    "question_th": "สถิติในหนึ่งสัปดาห์หลังจาก 7 แต้มกับซานดิเอโก ชาร์จเจอร์สเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_25 (record VARCHAR, week VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_2 WHERE week = 1",
    "question_en": "What is the result week 1?",
    "question_th": "สัปดาห์ที่ 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_en": "What is the lowest attendance on October 3, 1965?",
    "question_th": "วันที่ 3 ตุลาคม 2508 มีผู้เข้าร่วมน้อยที่สุดคือเท่าใด",
    "context": "CREATE TABLE table_name_17 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT manuals FROM table_name_89 WHERE kind = \"r\" AND opus = \"144\"",
    "question_en": "What are the manuals with a kind of r, and an opus of 144?",
    "question_th": "คู่มือที่มีประเภท r และบทประพันธ์ 144 คืออะไร?",
    "context": "CREATE TABLE table_name_89 (manuals VARCHAR, kind VARCHAR, opus VARCHAR)"
  },
  {
    "answer": "SELECT manuals FROM table_name_2 WHERE opus = \"147\"",
    "question_en": "What are the manuals with an opus of 147?",
    "question_th": "คู่มือที่มีบทประพันธ์ 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_en": "What kind is in the year 1978 and a manual of ii/p?",
    "question_th": "ปี 1978 และคู่มือ 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_en": "What manuals have the opus of 135?",
    "question_th": "คู่มือใดบ้างที่มีบทประพันธ์ของ 135?",
    "context": "CREATE TABLE table_name_31 (manuals VARCHAR, opus VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_30 WHERE town = \"eugene\"",
    "question_en": "What year was it the town of Eugene?",
    "question_th": "เมืองยูจีนคือปีไหน?",
    "context": "CREATE TABLE table_name_30 (year VARCHAR, town VARCHAR)"
  },
  {
    "answer": "SELECT town FROM table_name_82 WHERE stops = \"15\" AND kind = \"nb\"",
    "question_en": "What town has 15 stops and a NB kind?",
    "question_th": "เมืองใดมี 15 ป้ายและแบบ NB?",
    "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_en": "In which district is anna university - tiruchirappalli campus, whose website is http://www.annauniv.edu, located?",
    "question_th": "มหาวิทยาลัย anna - วิทยาเขต tiruchirappalli ในเขตใด ซึ่งมีเว็บไซต์ http://www.annauniv.edu ตั้งอยู่ในเขตใด",
    "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_en": "In what year was anna university - panruti campus established?",
    "question_th": "มหาวิทยาลัยอันนา-วิทยาเขตปัญรุติ ก่อตั้งในปีใด",
    "context": "CREATE TABLE table_name_14 (estd INTEGER, college_or_campus_name VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_name_82 WHERE estd = 1942",
    "question_en": "Which district was established in 1942?",
    "question_th": "อำเภอใดก่อตั้งขึ้นเมื่อปี พ.ศ. 2485?",
    "context": "CREATE TABLE table_name_82 (district VARCHAR, estd VARCHAR)"
  },
  {
    "answer": "SELECT affiliation FROM table_name_18 WHERE district = \"cuddalore district\"",
    "question_en": "What is the affiliation for the Cuddalore District?",
    "question_th": "สังกัดเขต Cuddalore คืออะไร?",
    "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_en": "Which College or campus has a website of http://www.aucev.edu.in/?",
    "question_th": "วิทยาลัยหรือวิทยาเขตใดมีเว็บไซต์ 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_en": "What is the name of the available rock single/pack by REO Speedwagon?",
    "question_th": "ซิงเกิลร็อค/แพ็กของ 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_en": "What is the highest gold with 1 silver, and more than 1 altogether?",
    "question_th": "ทองคำสูงสุดที่มี 1 เงินและมากกว่า 1 ทั้งหมดคืออะไร?",
    "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_en": "What is the latest year when the best finish is 2 and the scoring average is less than 71.24?",
    "question_th": "ล่าสุดคือปีไหนที่จบดีที่สุดคือ 2 และคะแนนเฉลี่ยน้อยกว่า 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_en": "What was the average scoring the the top 10s is 4?",
    "question_th": "คะแนนเฉลี่ยของ 10 อันดับแรกคือ 4 คืออะไร?",
    "context": "CREATE TABLE table_name_51 (scoring_average INTEGER, top_10s VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_40 WHERE score < 68",
    "question_en": "What is the country of the player with a score less than 68?",
    "question_th": "นักเตะที่มีคะแนนต่ำกว่า 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_en": "What state is Ding and has a royal house of Ji?",
    "question_th": "Ding คือรัฐอะไรและมีราชวงศ์ของ 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_en": "Which name has a state of Yan?",
    "question_th": "ชื่ออะไรมีสถานะเป็นหยาน?",
    "context": "CREATE TABLE table_name_44 (name VARCHAR, state VARCHAR)"
  },
  {
    "answer": "SELECT state FROM table_name_66 WHERE royal_house = \"ying\"",
    "question_en": "Which state has a royal house of Ying?",
    "question_th": "รัฐใดมีราชวงศ์หญิง?",
    "context": "CREATE TABLE table_name_66 (state VARCHAR, royal_house VARCHAR)"
  },
  {
    "answer": "SELECT state FROM table_name_5 WHERE royal_house = \"jiang\"",
    "question_en": "Which state has a royal house of Jiang?",
    "question_th": "รัฐใดมีราชวงศ์เจียง?",
    "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_en": "How tall is the person born on 1976-12-27?",
    "question_th": "คนที่เกิดวันที่ 27-12-2519 มีความสูงเท่าไร?",
    "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ízilabda\"",
    "question_en": "What is the birth date of a member of the Club of bvsc vízilabda?",
    "question_th": "วันเกิดของสมาชิกของ bvsc vízilabda คืออะไร?",
    "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_en": "Who has the height of m (ft 9in) and was born on  1980-03-05?",
    "question_th": "ใครมีส่วนสูง เมตร (ฟุต 9 นิ้ว) และเกิดเมื่อ 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ás faragó\"",
    "question_en": "Who has a Height of head coach: tamás faragó?",
    "question_th": "ใครมีความสูงเป็นเฮดโค้ช: ทามาส ฟาราโก?",
    "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_en": "What is the highest Pick, when Nationality is \"France\", and when Draft is less than 1979?",
    "question_th": "ตัวเลือกสูงสุดคืออะไร เมื่อสัญชาติคือ \"ฝรั่งเศส\" และเมื่อดราฟท์น้อยกว่าปี 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_en": "What is the sum of Draft, when Round is greater than 9?",
    "question_th": "ผลรวมของดราฟท์เมื่อรอบมากกว่า 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_en": "What is the highest Round, when Draft is greater than 1980, and when Player is \"Shane Doan Category:Articles with hCards\"?",
    "question_th": "รอบสูงสุดคือเมื่อดราฟท์มากกว่าปี 1980 และเมื่อผู้เล่นคือ \"Shane Doan หมวดหมู่:บทความที่มี 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_en": "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?",
    "question_th": "ดราฟต์ต่ำสุดคือเท่าใด เมื่อสัญชาติคือ \"แคนาดา\" เมื่อผู้เล่นคือ \"หมวดหมู่ Shane Doan:บทความที่มี hCards\" และเมื่อรอบน้อยกว่า 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_en": "What is the lowest Draft, when Player is \"Dave Christian Category:Articles with hCards\"?",
    "question_th": "ค่าร่างต่ำสุดคือเท่าไร เมื่อผู้เล่นคือ \"หมวดหมู่ Dave Christian: บทความที่มี hCards\"",
    "context": "CREATE TABLE table_name_74 (draft INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_name_46 WHERE district = \"georgia 7\"",
    "question_en": "What party has the district Georgia 7?",
    "question_th": "พรรคใดมีเขตจอร์เจีย 7?",
    "context": "CREATE TABLE table_name_46 (party VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_name_92 WHERE incumbent = \"sanford bishop\"",
    "question_en": "Which district has an incumbent of Sanford Bishop?",
    "question_th": "เขตใดมีผู้ดำรงตำแหน่ง 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_en": "What is the Score of the Hereford United Away game?",
    "question_th": "เกมเยือน เฮริฟอร์ด ยูไนเต็ด มีผลสกอร์เท่าไหร่?",
    "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_en": "What is the Home team of the Lincoln City Away game?",
    "question_th": "ทีมเจ้าบ้านในเกมเยือนลินคอล์นซิตี้คืออะไร?",
    "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_en": "What is the Away team at Bristol Rovers' Home game?",
    "question_th": "ทีมเยือนเกมเหย้าของบริสตอล โรเวอร์สเป็นทีมไหน?",
    "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_en": "What is the Away team at Mansfield Town's Home game?",
    "question_th": "ทีมเยือนในเกมเหย้าของแมนส์ฟิลด์ ทาวน์เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_53 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT tie_no FROM table_name_80 WHERE score = \"1–1\" AND home_team = \"hull city\"",
    "question_en": "What is the Tie no at the Hull City Home game with a Score of 1–1?",
    "question_th": "อะไรคือเสมอไม่ในเกมเหย้าของฮัลล์ ซิตี้ ด้วยสกอร์ 1–1?",
    "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_en": "Which Byes have an Against larger than 1235, and Losses smaller than 10, and Wins larger than 7?",
    "question_th": "Byes ใดที่มี Against มากกว่า 1235 และ Loss น้อยกว่า 10 และ Wins มากกว่า 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_en": "Which Losses have an Against smaller than 1464, and Draws smaller than 1, and Wins larger than 7?",
    "question_th": "การแพ้ใดที่มีค่า Against น้อยกว่า 1464 และเสมอน้อยกว่า 1 และชนะมากกว่า 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_en": "Which Draws have a Lexton Plains of skipton, and an Against larger than 1212?",
    "question_th": "เสมอไหนมี Lexton Plains of skipton และ Against มากกว่า 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_en": "Which against has 14 losses?",
    "question_th": "แพ้ทีมไหน 14 ครั้ง?",
    "context": "CREATE TABLE table_name_24 (against VARCHAR, losses VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_58 WHERE player = \"s.k. ho\"",
    "question_en": "What is S.K. Ho's Country?",
    "question_th": "ประเทศของ SK Ho คืออะไร?",
    "context": "CREATE TABLE table_name_58 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_78 WHERE place = \"2\"",
    "question_en": "What Player has a Place of 2?",
    "question_th": "ผู้เล่นคนไหนมีตำแหน่งที่ 2?",
    "context": "CREATE TABLE table_name_78 (player VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_81 WHERE player = \"gary evans\"",
    "question_en": "From what Country is Gary Evans?",
    "question_th": "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_en": "What is the Country of the Player with a To par of +1 and a Score of 74-70-70=214?",
    "question_th": "ประเทศของผู้เล่นที่มีพาร์ถึง +1 และคะแนน 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_en": "What is the Place of the Player with a Score of 69-72-72=213?",
    "question_th": "ผู้เล่นที่มีคะแนน 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_en": "What was the result on September 20?",
    "question_th": "ผลประกอบการวันที่ 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_en": "The golfer who won in 1993 had what total has his total?",
    "question_th": "นักกอล์ฟที่ชนะในปี 1993 มียอดรวมทั้งหมดเท่าไร?",
    "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_en": "When the finish is t27 what is the year (s) won?",
    "question_th": "เมื่อจบ T27 ชนะปีไหน?",
    "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_en": "What total average has 1988 has the year (s) won?",
    "question_th": "ปี 1988 มีค่าเฉลี่ยรวมเท่าใดที่ชนะ?",
    "context": "CREATE TABLE table_name_34 (total INTEGER, year_s__won VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_71 WHERE player = \"bob tway\"",
    "question_en": "In what place did Bob Tway finish?",
    "question_th": "Bob Tway จบที่จุดไหน?",
    "context": "CREATE TABLE table_name_71 (finish VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MIN(draws) FROM table_name_80 WHERE byes < 4",
    "question_en": "What is the smallest draws for Byes less than 4?",
    "question_th": "การเสมอที่น้อยที่สุดสำหรับ Byes น้อยกว่า 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_en": "When losses is 6 and draws is more than 0, what is the greatest byes?",
    "question_th": "เมื่อแพ้คือ 6 และเสมอมากกว่า 0 ค่าบายที่ยิ่งใหญ่ที่สุดคืออะไร?",
    "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_en": "When Benall DFL is Goorambat with less than 13 wins, what is the least amount of losses?",
    "question_th": "เมื่อ Benall DFL เป็น Goorambat ที่ชนะน้อยกว่า 13 ครั้ง แพ้น้อยที่สุดคือเท่าไหร่?",
    "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_en": "When Benalla DFL is swanpool with less than 16 losses, what is the sum of Byes?",
    "question_th": "เมื่อเบนัลล่า ดีเอฟแอลเป็นสวอนพูลที่แพ้น้อยกว่า 16 นัด ผลรวมบายจะเป็นเท่าไหร่?",
    "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_en": "What is the most wins for draws greater than 0?",
    "question_th": "ชัยชนะสูงสุดสำหรับการเสมอที่มากกว่า 0 คืออะไร?",
    "context": "CREATE TABLE table_name_31 (wins INTEGER, draws INTEGER)"
  },
  {
    "answer": "SELECT date FROM table_name_11 WHERE raiders_points = 17",
    "question_en": "What day did the Raiders score 17?",
    "question_th": "Raiders ได้คะแนน 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_en": "What was the streak for the game after 8 on Nov 22?",
    "question_th": "สตรีคของเกมหลังวันที่ 8 วันที่ 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_en": "What is the total Goals with a Rank smaller than 10, a Name of nicolas anelka, and Appearances larger than 9?",
    "question_th": "ประตูรวมที่มีอันดับน้อยกว่า 10, ชื่อของนิโคลัส อเนลก้า และจำนวนการลงสนามมากกว่า 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_en": "What is the total Goals with Rank larger than 10?",
    "question_th": "เป้าหมายรวมที่มีอันดับมากกว่า 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_en": "What is the greatest Goals with a Name of samuel eto'o?",
    "question_th": "เป้าหมายที่ยิ่งใหญ่ที่สุดที่มีชื่อว่าซามูเอลเอโตโอคืออะไร?",
    "context": "CREATE TABLE table_name_34 (goals INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_14 WHERE team = \"roma\"",
    "question_en": "What Rank has a Team of roma?",
    "question_th": "ทีมโรม่าอยู่อันดับไหน?",
    "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_en": "What is the Country of the Player with a To par of +1 and a Score of 72-71=143?",
    "question_th": "ประเทศของผู้เล่นที่มีค่าพาร์ถึง +1 และคะแนน 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_en": "What is Bob Tway's To par?",
    "question_th": "To par ของ Bob Tway คืออะไร?",
    "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_en": "What is the to par when the score is 73-69-67-74=283?",
    "question_th": "เมื่อสกอร์เป็น 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_en": "What is the lowest weight snatched for a lifter who had a clean and jerk less than 185?",
    "question_th": "น้ำหนักต่ำสุดที่แย่งชิงสำหรับนักกีฬายกที่สะอาดและกระตุกน้อยกว่า 185 คือเท่าไร?",
    "context": "CREATE TABLE table_name_21 (snatch INTEGER, clean_ VARCHAR, _jerk VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_29 WHERE result = \"l 13–30\"",
    "question_en": "Which Record has a Result of l 13–30?",
    "question_th": "บันทึกใดมีผลลัพธ์ l 13–30",
    "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–3\"",
    "question_en": "Which Opponent has a Week larger than 3, and a Game site of mile high stadium, and a Record of 3–3?",
    "question_th": "ฝ่ายตรงข้ามคนใดที่มีหนึ่งสัปดาห์มากกว่า 3 และไซต์เกมที่มีสนามกีฬาสูงหลายไมล์ และมีสถิติ 3–3",
    "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_en": "What is the most recent year for a first elected republican?",
    "question_th": "ปีล่าสุดสำหรับพรรครีพับลิกันที่ได้รับการเลือกตั้งครั้งแรกคือปีใด?",
    "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_en": "What is the first elected for Jo Bonner?",
    "question_th": "คนแรกที่ได้รับเลือกให้เป็นโจ บอนเนอร์คืออะไร?",
    "context": "CREATE TABLE table_name_12 (first_elected INTEGER, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_name_4 WHERE district = \"california 35\"",
    "question_en": "What is the party of the california 35 district?",
    "question_th": "งานปาร์ตี้ของเขต 35 แคลิฟอร์เนียคืออะไร?",
    "context": "CREATE TABLE table_name_4 (party VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT MIN(first_elected) FROM table_name_26 WHERE incumbent = \"howard mckeon\"",
    "question_en": "What is the earliest first elected date of incumbent howard mckeon?",
    "question_th": "วันที่ได้รับเลือกครั้งแรกเร็วที่สุดของผู้ดำรงตำแหน่ง Howard McKeon คืออะไร?",
    "context": "CREATE TABLE table_name_26 (first_elected INTEGER, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_name_45 WHERE party = \"democratic\"",
    "question_en": "What district has a democratic party?",
    "question_th": "เขตใดมีพรรคประชาธิปัตย์?",
    "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–89\"",
    "question_en": "which Streak has a Location/Attendance of staples center, and a Score of 67–89?",
    "question_th": "สตรีคใดมีตำแหน่ง/การเข้างานของศูนย์ลวดเย็บกระดาษ และคะแนน 67–89",
    "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_en": "Which game is on mar 12?",
    "question_th": "เกมไหนคือวันที่ 12 มีนาคม?",
    "context": "CREATE TABLE table_name_81 (game INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_63 WHERE date = \"mar 10\"",
    "question_en": "Which Opponent is on mar 10?",
    "question_th": "ฝ่ายตรงข้ามคนไหนคือวันที่ 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–33\"",
    "question_en": "Which Streak is in new orleans arena and a Record of 31–33?",
    "question_th": "สตรีคคนใดที่อยู่ในสนามกีฬานิวออร์ลีนส์และมีสถิติ 31–33",
    "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_en": "Which Game has an Opponent of phoenix suns?",
    "question_th": "เกมใดมีคู่ต่อสู้ของ phoenix suns?",
    "context": "CREATE TABLE table_name_22 (game VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_52 WHERE score = \"92–93\"",
    "question_en": "Which Opponent has a Score of 92–93?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีคะแนน 92–93?",
    "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_en": "What is the country of the player whose score is 71-69-70-69=279?",
    "question_th": "นักเตะที่มีคะแนน 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_en": "WHAT IS THE DIRECTOR WITH FILM hope and pain?",
    "question_th": "ผู้กำกับภาพยนตร์มีความหวังและความเจ็บปวดอย่างไร?",
    "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_en": "WHAT IS THE RESULT WITH FILM LAKE OF TEARS?",
    "question_th": "ผลลัพธ์ของฟิล์มทะเลสาบน้ำตาคืออะไร?",
    "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_en": "Which Opponent has a Date of september 20, 1992?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีวันที่ 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_en": "Which Week has Attendance of 71,740?",
    "question_th": "สัปดาห์ใดมีผู้เข้าร่วม 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_en": "Which Week has a Date of october 4, 1992?",
    "question_th": "สัปดาห์ใดมีวันที่ 4 ตุลาคม 2535",
    "context": "CREATE TABLE table_name_52 (week INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_53 WHERE attendance = \"71,740\"",
    "question_en": "Which Opponent has Attendance of 71,740?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีผู้เข้าร่วม 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_en": "What 1976 has a 1978 of grand slam tournaments?",
    "question_th": "ปี 1976 ใดที่มีการแข่งขันแกรนด์สแลมในปี 1978?",
    "context": "CREATE TABLE table_name_57 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1978 FROM table_name_99 WHERE 1976 = \"62%\"",
    "question_en": "What 1978 has a 1976 of 62%?",
    "question_th": "อะไร 1978 มี 1976 ของ 62%?",
    "context": "CREATE TABLE table_name_99 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1984 FROM table_name_87 WHERE 1978 = \"46–15\"",
    "question_en": "What 1984 has a 1978 of 46–15?",
    "question_th": "ปี 1984 อะไรมีปี 1978 จาก 46–15?",
    "context": "CREATE TABLE table_name_87 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1973 FROM table_name_31 WHERE 1978 = \"75%\"",
    "question_en": "What 1973 has a 1978 of 75%?",
    "question_th": "ปี 1973 อะไรที่มีปี 1978 เป็น 75%?",
    "context": "CREATE TABLE table_name_31 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1983 FROM table_name_44 WHERE 1975 = \"career statistics\"",
    "question_en": "What 1983 has a 1975 of career statistics?",
    "question_th": "ปี 1983 มีสถิติอาชีพปี 1975 อะไรบ้าง?",
    "context": "CREATE TABLE table_name_44 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1976 FROM table_name_67 WHERE tournament = \"overall win – loss\"",
    "question_en": "What 1976 has a Tournament of overall win – loss?",
    "question_th": "ปี 1976 มีทัวร์นาเมนท์แบบชนะ-แพ้รวมอะไรบ้าง?",
    "context": "CREATE TABLE table_name_67 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT MAX(wins) FROM table_name_55 WHERE goals_for > 39 AND points < 25",
    "question_en": "What is the highest Wins, when Goals For is greater than 39, and when Points is less than 25?",
    "question_th": "ชัยชนะสูงสุดคืออะไร เมื่อเป้าหมายมากกว่า 39 และเมื่อคะแนนน้อยกว่า 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_en": "What is the total number of Goals For, when Losses is greater than 16?",
    "question_th": "จำนวนประตูทั้งหมดสำหรับเมื่อการแพ้มากกว่า 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_en": "What is the average Position, when Goal Difference is \"17\", and when Wins is greater than 13?",
    "question_th": "ตำแหน่งเฉลี่ยคือเท่าใด เมื่อผลต่างประตูคือ \"17\" และเมื่อชนะมากกว่า 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_en": "What is the lowest Goals For, when Draws is less than 4, and when Points is less than 27?",
    "question_th": "ประตูต่ำสุดสำหรับอะไร เมื่อเสมอน้อยกว่า 4 และเมื่อแต้มน้อยกว่า 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_en": "What is the smallest capacity for Bursa?",
    "question_th": "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_en": "What city is Kara Ali Acar Sport Hall located in?",
    "question_th": "Kara Ali Acar Sport Hall ตั้งอยู่ในเมืองใด?",
    "context": "CREATE TABLE table_name_4 (city VARCHAR, arena VARCHAR)"
  },
  {
    "answer": "SELECT AVG(capacity) FROM table_name_28 WHERE club = \"bandırma banvit\"",
    "question_en": "What is the capacity of Bandırma Banvit?",
    "question_th": "Bandırma 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_en": "What was the venue that had 5000 m after 2009?",
    "question_th": "สถานที่จัดงานที่มีระยะทาง 5,000 เมตรหลังจากปี 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_en": "What was the latest year with a position of 1st at Maputo, Mozambique?",
    "question_th": "ปีล่าสุดที่ครองอันดับ 1 ที่เมืองมาปูโต ประเทศโมซัมบิกคือปีใด?",
    "context": "CREATE TABLE table_name_60 (year INTEGER, position VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_82 WHERE year = 2009",
    "question_en": "Which position was in 2009?",
    "question_th": "ตำแหน่งใดในปี 2552?",
    "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_en": "What F Player was previously with the New York Knicks?",
    "question_th": "ก่อนหน้านี้ F Player คนไหนที่เล่นให้กับ 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_en": "What is the Nationality of the G Player with 4 years NBA Experience?",
    "question_th": "G Player ที่มีประสบการณ์ NBA 4 ปีมีสัญชาติอะไร",
    "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_en": "What Player has 10 Years of NBA experience?",
    "question_th": "ผู้เล่นคนใดมีประสบการณ์ 10 ปีใน NBA?",
    "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_en": "What G/F Player has 3 Years in the NBA?",
    "question_th": "ผู้เล่น G/F คนใดที่มี 3 ปีใน 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_en": "What source has delph as the name?",
    "question_th": "แหล่งใดมี delph เป็นชื่อ?",
    "context": "CREATE TABLE table_name_53 (source VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(attendance) FROM table_name_25 WHERE home_team = \"stourbridge\"",
    "question_en": "What is the total attendance when Stourbridge is the home team?",
    "question_th": "ผู้เข้าชมรวมเมื่อสเตาร์บริดจ์เป็นเจ้าบ้านคือเท่าไร?",
    "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_en": "What is the score when the attendance is greater than 134 and Workington is the home team?",
    "question_th": "เมื่อผู้ชมเกิน 134 และเวิร์คคิงตันเป็นเจ้าบ้านสกอร์เท่าไหร่?",
    "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_en": "Which coach has 0 conference titles, more than 2 seasons, higher than 87 losses and 0 NCAA?",
    "question_th": "โค้ชคนไหนมี 0 ตำแหน่งการประชุม มากกว่า 2 ฤดูกาล แพ้มากกว่า 87 ครั้ง และ 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_en": "What are coach Bill Henderson's highest wins with more than 233 losses?",
    "question_th": "ชัยชนะสูงสุดของโค้ชบิล เฮนเดอร์สันด้วยการแพ้มากกว่า 233 ครั้งคืออะไร?",
    "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_en": "What is the sum of the draws with less than 2284 against, 8 losses, and more than 10 wins?",
    "question_th": "ผลรวมของการเสมอที่น้อยกว่า 2284 ต่อ แพ้ 8 และชนะมากกว่า 10 ครั้งเป็นเท่าไหร่?",
    "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_en": "What is the average number of against with 11 wins and less than 0 draws?",
    "question_th": "โดยเฉลี่ยแล้วแพ้ 11 นัดและเสมอน้อยกว่า 0 นัดคือเท่าไหร่?",
    "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_en": "What is the total number of losses of the central murray of tooleybuc manangatang, which has less than 0 draws?",
    "question_th": "จำนวนการแพ้ของ Central Murray ของ Tooleybuc Manangatang ที่เสมอน้อยกว่า 0 คือเท่าไร?",
    "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_en": "What is the highest number of losses of the central murray of lake boga, which has less than 10 wins?",
    "question_th": "จำนวนการสูญเสียสูงสุดของเมอร์เรย์กลางของทะเลสาบโบกาซึ่งชนะน้อยกว่า 10 ครั้งคือเท่าใด",
    "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_en": "What is the average number of draws of the central murray of leitchville gunbower, which has less than 0 byes?",
    "question_th": "จำนวนเสมอโดยเฉลี่ยของเซ็นทรัล เมอร์เรย์ ของลีทช์วิลล์ กันโบเวอร์ ซึ่งน้อยกว่า 0 บายคือเท่าไหร่?",
    "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_en": "What is the total number of wins of the central murray of koondrook-barham, which has more than 0 draws?",
    "question_th": "เซ็นทรัล เมอร์เรย์ คูนดรูค-บาฮัม ชนะมากกว่า 0 นัดรวมกันเป็นจำนวนเท่าใด?",
    "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_en": "What is the date when France is the opposing team?",
    "question_th": "ฝรั่งเศสเป็นทีมตรงข้ามวันไหน?",
    "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_en": "What is the venue with more than 3 against, and South Africa is the opposing team?",
    "question_th": "สนามไหนที่มีมากกว่า 3 ต่อ และแอฟริกาใต้เป็นทีมตรงข้าม?",
    "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_en": "What is the venue for the Status of Five Nations and 0 againts?",
    "question_th": "สถานที่สำหรับสถานะของห้าชาติและ 0 ต่อคืออะไร?",
    "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_en": "What Upper stage has Launches to date of 0, and Version of 532?",
    "question_th": "Upper stage ใดที่เปิดตัวจนถึงวันที่ 0 และเวอร์ชัน 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_en": "What is the greatest CCBs with Launches to date of 4, and a Payload to GTO of 8,900kg?",
    "question_th": "CCB ที่ยิ่งใหญ่ที่สุดที่เปิดตัวจนถึงปัจจุบันที่ 4 และน้ำหนักบรรทุกถึง GTO ที่ 8,900 กก. คืออะไร",
    "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_en": "What Payload to GTO has CCBs larger than 1, and a Payload to LEO of 29,400kg?",
    "question_th": "น้ำหนักบรรทุกของ GTO ใดที่มี CCB มากกว่า 1 และน้ำหนักบรรทุกของ LEO อยู่ที่ 29,400 กิโลกรัม",
    "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 = \"–\" AND upper_stage = \"sec\"",
    "question_en": "What is the greatest CCBs with a Payload to GTO of –, and an Upper stage of sec?",
    "question_th": "CCB ที่ยิ่งใหญ่ที่สุดที่มี Payload ถึง GTO เป็น – และ 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_en": "What is the total Launches to date with a Version of 541, and CCBs smaller than 1?",
    "question_th": "จำนวนการเปิดตัวทั้งหมดจนถึงปัจจุบันด้วยเวอร์ชัน 541 และ CCB น้อยกว่า 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_en": "What is the highest standard order for the Transcription based on Pinyin, She Jiang?",
    "question_th": "ข้อใดคือลำดับมาตรฐานสูงสุดสำหรับการถอดเสียงตามพินอิน 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 = \"哀郢\"",
    "question_en": "What is the english translation of the traditional Chinese word, 哀郢?",
    "question_th": "คำว่า 哀郢 ภาษาจีนแปลว่าอะไร?",
    "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_en": "What is the simplified Chinese with a standard order over 4, and the transcription of Bei Hui Feng?",
    "question_th": "จีนตัวย่อที่มีลำดับมาตรฐานมากกว่า 4 คืออะไรและการถอดเสียงของ 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_en": "What is the Date of the match against Guillermo Olaso?",
    "question_th": "วันที่แข่งขันกับ Guillermo Olaso คือวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_7 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT category FROM table_name_69 WHERE tournament = \"rodez, france\"",
    "question_en": "What is the Category of the Rodez, France Tournament?",
    "question_th": "ประเภทการแข่งขัน 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_en": "What is the Date of the Rodez, France Tournament?",
    "question_th": "การแข่งขัน 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_en": "What is the Score of the tournament played on Clay Surface against Pablo Martin-Adalia?",
    "question_th": "คะแนนของทัวร์นาเมนต์ที่เล่นบน Clay Surface พบกับ 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_en": "What was the venue in 1951 on November 4?",
    "question_th": "สถานที่จัดงานในวันที่ 4 พฤศจิกายน พ.ศ. 2494 คืออะไร?",
    "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_en": "What is the latest year with a 34-0 result?",
    "question_th": "ล่าสุดผลสกอร์ 34-0 คืออะไร?",
    "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_en": "What date was the visiting team of Los Angeles Rams, earlier than 1958?",
    "question_th": "ทีมเยือนของ Los Angeles Rams ก่อนปี 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_en": "What is the number in attendance at Los Angeles Memorial Coliseum?",
    "question_th": "จำนวนผู้เข้าร่วมที่ 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_en": "Which state has a 2010-05-01 (saa) association agreement?",
    "question_th": "รัฐใดมีข้อตกลงสมาคม 2010-05-01 (saa)",
    "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_en": "What is the acquis chapter open/closed dates with a membership application in 2009-04-28?",
    "question_th": "วันที่เปิด/ปิดรับบทสมัครสมาชิกในปี 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_en": "What is the status of the membership application on 2008-12-15?",
    "question_th": "สถานะการสมัครสมาชิกในวันที่ 2008-12-58 เป็นอย่างไร?",
    "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_en": "What is the association agreement for bosnia and herzegovina?",
    "question_th": "ข้อตกลงสมาคมสำหรับบอสเนียและเฮอร์เซโกวีนาคืออะไร?",
    "context": "CREATE TABLE table_name_69 (association_agreement VARCHAR, state VARCHAR)"
  },
  {
    "answer": "SELECT candidate_status FROM table_name_46 WHERE state = \"macedonia\"",
    "question_en": "What is the candidate status of macedonia?",
    "question_th": "สถานะผู้สมัครของมาซิโดเนียคืออะไร?",
    "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_en": "What is the population with 41,511 households?",
    "question_th": "จำนวนประชากร 41,511 ครัวเรือน คือเท่าไร?",
    "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_en": "What was the lowest attendance for a game played @ Nashville Predators?",
    "question_th": "จำนวนผู้เข้าชมเกมที่เล่น @ 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_en": "What was the highest attendance on December 23?",
    "question_th": "ผู้เข้าร่วมสูงสุดในวันที่ 23 ธันวาคมคือเท่าใด",
    "context": "CREATE TABLE table_name_91 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT torque FROM table_name_29 WHERE engine = \"2b\"",
    "question_en": "What is the torque of a 2B engine?",
    "question_th": "แรงบิดของเครื่องยนต์ 2B คืออะไร?",
    "context": "CREATE TABLE table_name_29 (torque VARCHAR, engine VARCHAR)"
  },
  {
    "answer": "SELECT MAX(power__hp_) FROM table_name_5 WHERE engine = \"om314\"",
    "question_en": "What is the highest power (hp) of an OM314 engine?",
    "question_th": "กำลังสูงสุด (hp) ของเครื่องยนต์ OM314 คืออะไร?",
    "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_en": "When was power (hp) less than 93 for the OM324 engine used?",
    "question_th": "เมื่อใดที่มีกำลัง (hp) น้อยกว่า 93 สำหรับเครื่องยนต์ OM324 ที่ใช้?",
    "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_en": "What is the name for Nagpur district, with a reserved for ( SC / ST /None) of none, and a Constituency number of 59?",
    "question_th": "อำเภอนาคปุระ ชื่ออะไร โดยสงวนไว้สำหรับ (SC / ST /ไม่มี) และหมายเลขเขตเลือกตั้ง 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_en": "What district shows reserved for (SC / ST /None) of total:?",
    "question_th": "อำเภอไหนที่สงวนไว้สำหรับการแสดง (SC / ST /None) จากทั้งหมด:?",
    "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_en": "What is the number of electorates (2009) for Hingna?",
    "question_th": "จำนวนผู้มีสิทธิเลือกตั้ง (2552) ของหิ้งนาคือเท่าไร?",
    "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_en": "What is the constituency number with a reserved for ( SC / ST /None) of none, for Katol?",
    "question_th": "หมายเลขเขตเลือกตั้งที่สงวนไว้สำหรับ ( SC / ST /ไม่มี) สำหรับ 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_en": "What is the total number of electorates (2009) for Katol?",
    "question_th": "จำนวนผู้มีสิทธิเลือกตั้งทั้งหมด (2009) ของ 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_en": "Which Year has a Category of best performance by a leading actress in a musical?",
    "question_th": "ปีใดมีหมวดหมู่การแสดงที่ดีที่สุดโดยนักแสดงนำในละครเพลง?",
    "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_en": "Which Award Ceremony has a Result of nominated, and a Category of best revival of a musical?",
    "question_th": "พิธีมอบรางวัลใดมีผลการเสนอชื่อเข้าชิง และประเภทละครเพลงที่มีการฟื้นฟูดีที่สุด",
    "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_en": "What is the analogue terrestrial channel when the internet shows channel4.com?",
    "question_th": "ช่องสัญญาณภาคพื้นดินแบบอะนาล็อกเมื่ออินเทอร์เน็ตแสดง 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_en": "What is the position when the channel shows channel 4?",
    "question_th": "ตำแหน่งเมื่อช่องแสดงช่อง 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_en": "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)?",
    "question_th": "ช่องใดที่ช่องภาคพื้นดินแบบอะนาล็อกแสดงไม่มี และอินเทอร์เน็ตคือ itv.com โดยมีตำแหน่งมากกว่า 6 และช่องภาคพื้นดินดิจิทัลคือ 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_en": "What is the internet when the position is more than 13?",
    "question_th": "อินเตอร์เน็ตเมื่อตำแหน่งเกิน 13 คืออะไร?",
    "context": "CREATE TABLE table_name_12 (internet VARCHAR, position INTEGER)"
  },
  {
    "answer": "SELECT notes FROM table_name_74 WHERE method = \"decision\"",
    "question_en": "What are the Notes when the Method is decision?",
    "question_th": "หมายเหตุเมื่อมีการตัดสินใจวิธีการคืออะไร?",
    "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_en": "What was the result for the 2012 ibjjf world jiu-jitsu championships event when the method was points (4 x 0)?",
    "question_th": "ผลลัพธ์ของการแข่งขัน ibjjf world jiu-jitsu Championships 2012 เมื่อวิธีคือคะแนน (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_en": "Who was the opponent when the method was points (4 x 0)?",
    "question_th": "คู่ต่อสู้คือใครเมื่อวิธีคือแต้ม (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_en": "What was the result against opponent Amanda Lucas?",
    "question_th": "ผลการแข่งขันกับคู่ต่อสู้อย่างอแมนดา ลูคัสเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_36 (result VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_43 WHERE notes = \"women +60kg quarterfinal\"",
    "question_en": "Which event has notes of women +60kg quarterfinal?",
    "question_th": "รายการใดมีบันทึกของผู้หญิงน้ำหนักเกิน 60 กก. รอบก่อนรองชนะเลิศ?",
    "context": "CREATE TABLE table_name_43 (event VARCHAR, notes VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_15 WHERE attendance > 17 OFFSET 652",
    "question_en": "On what date was the attendance more than 17,652?",
    "question_th": "มีผู้เข้าร่วมมากกว่า 17,652 คนในวันไหน?",
    "context": "CREATE TABLE table_name_15 (date VARCHAR, attendance INTEGER)"
  },
  {
    "answer": "SELECT record FROM table_name_41 WHERE date = \"january 18\"",
    "question_en": "What is the record on January 18?",
    "question_th": "บันทึกเมื่อวันที่ 18 มกราคม คืออะไร?",
    "context": "CREATE TABLE table_name_41 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MIN(draws) FROM table_name_50 WHERE against > 2638",
    "question_en": "What was the lowest draw when the against was larger than 2638?",
    "question_th": "เสมอต่ำสุดเมื่อต่อมากกว่า 2638 คืออะไร?",
    "context": "CREATE TABLE table_name_50 (draws INTEGER, against INTEGER)"
  },
  {
    "answer": "SELECT MIN(against) FROM table_name_16 WHERE draws > 0",
    "question_en": "What was the lowest against when the draw was at least 0?",
    "question_th": "ต่ำสุดเมื่อเทียบกับเมื่อเสมอกันอย่างน้อย 0?",
    "context": "CREATE TABLE table_name_16 (against INTEGER, draws INTEGER)"
  },
  {
    "answer": "SELECT MAX(losses) FROM table_name_99 WHERE byes > 2",
    "question_en": "What were the highest losses for a byes larger than 2?",
    "question_th": "อะไรคือการสูญเสียสูงสุดสำหรับบายที่มากกว่า 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_en": "What position did the Belenenses club occupy in 1960/61?",
    "question_th": "สโมสรเบเลเนนส์ดำรงตำแหน่งอะไรในปี 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_en": "Which club has played for 27 seasons at this level?",
    "question_th": "สโมสรใดเล่นมาแล้ว 27 ฤดูกาลในระดับนี้?",
    "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_en": "What is the NFL team for Toledo?",
    "question_th": "ทีม NFL สำหรับโทเลโดคืออะไร?",
    "context": "CREATE TABLE table_name_23 (nfl_team VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT rnd FROM table_name_18 WHERE college = \"northern colorado\"",
    "question_en": "What is Northern Colorado's Rnd.?",
    "question_th": "Rnd. ของ Northern Colorado คืออะไร?",
    "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_en": "What is the lowest value for Draws, when South West DFL is \"Tyrendarra\", and when Byes is greater than 0?",
    "question_th": "ค่าต่ำสุดสำหรับการเสมอเมื่อ South West DFL คือ \"Tyrendarra\" และเมื่อ Byes มากกว่า 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_en": "What is the sum of Against, when Wins is greater than 8, and when Losses is greater than 6?",
    "question_th": "ผลรวมของ Against เมื่อชนะมากกว่า 8 และเมื่อแพ้มากกว่า 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_en": "What is the total number of Byes, when South West DFL is \"Coleraine\", and when Wins is less than 12?",
    "question_th": "จำนวนบายทั้งหมดคือเท่าไร เมื่อ DFL ตะวันตกเฉียงใต้คือ \"โคเลอเรน\" และเมื่อชนะน้อยกว่า 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_en": "What is the average value for Wins, when South West DFL is \"Coleraine\", and when Byes is greater than 0?",
    "question_th": "ค่าเฉลี่ยของการชนะคือเท่าใด เมื่อ South West DFL คือ \"Coleraine\" และเมื่อ Byes มากกว่า 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_en": "What is the lowest value for Wins, when South West DFL is \"Cavendish\", and when Byes is less than 0?",
    "question_th": "ค่าต่ำสุดสำหรับการชนะคืออะไร เมื่อ South West DFL คือ \"Cavendish\" และเมื่อ Byes น้อยกว่า 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_en": "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?",
    "question_th": "จำนวนชนะทั้งหมดคือเท่าไร เมื่อแพ้น้อยกว่า 10 เมื่อต่อต้านน้อยกว่า 1253 และเมื่อบายน้อยกว่า 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_en": "What score has a year later than 1974, with hawthorn as the champion?",
    "question_th": "หนึ่งปีหลังจากปี 1974 มีคะแนนอะไรบ้าง โดยมีฮอว์ธอร์นเป็นแชมป์?",
    "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_en": "What champion has north melbourne as the runner-up?",
    "question_th": "แชมป์คนไหนมีเมลเบิร์นเหนือเป็นรองแชมป์?",
    "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_en": "What is the location for Egypt in 2013?",
    "question_th": "ประเทศอียิปต์ในปี 2556 อยู่ที่ไหน?",
    "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_en": "What is the location for Yemen in 1994?",
    "question_th": "เยเมน อยู่ที่ไหนในปี 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_en": "What year is the location Ta'izz?",
    "question_th": "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_en": "Which location is in the Belgian Congo Tanganyika?",
    "question_th": "ตำแหน่งใดอยู่ในเบลเยียม คองโก แทนกันยิกา",
    "context": "CREATE TABLE table_name_49 (location VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT perpetrator FROM table_name_64 WHERE location = \"bait al-aqari\"",
    "question_en": "Who is the perpetrator in Bait Al-Aqari?",
    "question_th": "ใครคือผู้กระทำผิดในบัท อัล-อักอรี?",
    "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_en": "Who is the perpetrator in Uganda who killed 12 in Kampala?",
    "question_th": "ใครคือผู้กระทำผิดในยูกันดาที่สังหารคน 12 คนในกัมปาลา?",
    "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_en": "Who was the home team when grimsby town was the away team?",
    "question_th": "เจ้าบ้านคือใครเมื่อกริมสบี้ทาวน์เป็นทีมเยือน?",
    "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_en": "How many goals for Kenton have a transfer window of Summer?",
    "question_th": "เคนตันมีหน้าต่างโอนย้ายซัมเมอร์กี่ประตู?",
    "context": "CREATE TABLE table_name_36 (goals VARCHAR, transfer_window VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT branding FROM table_name_53 WHERE callsign = \"dwfm\"",
    "question_en": "What is the branding for callsign DWFM?",
    "question_th": "ตราสินค้าสำหรับ callsign DWFM คืออะไร?",
    "context": "CREATE TABLE table_name_53 (branding VARCHAR, callsign VARCHAR)"
  },
  {
    "answer": "SELECT frequency FROM table_name_10 WHERE power__kw_ = \"25kw\"",
    "question_en": "What is the frequency where the power is 25kw?",
    "question_th": "ความถี่ที่พลังงานเป็น 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_en": "What is the power at Baguio where the frequency is 102.3mhz?",
    "question_th": "กำลังไฟฟ้าที่บาเกียวที่ความถี่ 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_en": "What is the location where the frequency is 92.3mhz?",
    "question_th": "คลื่นความถี่ 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_en": "What is the brand where the location is Cagayan De Oro?",
    "question_th": "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_en": "Which Established has a League of ontario australian football league?",
    "question_th": "ซึ่งก่อตั้งขึ้นมีลีกฟุตบอลลีกออสเตรเลียนแทรีโอ?",
    "context": "CREATE TABLE table_name_62 (established VARCHAR, league VARCHAR)"
  },
  {
    "answer": "SELECT championships FROM table_name_70 WHERE league = \"ontario australian football league\"",
    "question_en": "Which Championships have a League of ontario australian football league?",
    "question_th": "การแข่งขันชิงแชมป์ใดที่มีลีกฟุตบอลลีกออสเตรเลียออนแทรีโอ?",
    "context": "CREATE TABLE table_name_70 (championships VARCHAR, league VARCHAR)"
  },
  {
    "answer": "SELECT established FROM table_name_61 WHERE club = \"guelph rangers\"",
    "question_en": "Which Established has a Club of guelph rangers?",
    "question_th": "ซึ่งก่อตั้งขึ้นมีสโมสรของเกวลฟ์เรนเจอร์?",
    "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_en": "What is the earliest year with colin berry as the spokesperson and ray moore as the radio commentator?",
    "question_th": "ปีแรกสุดที่มีโคลิน เบอร์รี่เป็นโฆษก และเรย์ มัวร์เป็นผู้บรรยายรายการวิทยุคือปีใด",
    "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_en": "Who is the spokesperson after 2012?",
    "question_th": "ใครเป็นโฆษกหลังปี 2555?",
    "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_en": "Who is the semi-final second television commentator with graham norton as the final television commentator and scott mills as the spokesperson before 2013?",
    "question_th": "ใครคือผู้บรรยายรายการโทรทัศน์คนที่สองในรอบรองชนะเลิศ โดยมีเกรแฮม นอร์ตันเป็นผู้บรรยายรายการโทรทัศน์คนสุดท้าย และมีสก็อตต์ มิลล์สเป็นโฆษกก่อนปี 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_en": "What kind of Wind has an Athlete of kerron stewart?",
    "question_th": "ลมแบบไหนที่มีนักกีฬาเคอร์รอนสจ๊วต?",
    "context": "CREATE TABLE table_name_26 (wind VARCHAR, athlete VARCHAR)"
  },
  {
    "answer": "SELECT wind FROM table_name_69 WHERE result = \"21.69\"",
    "question_en": "What kind of Wind has a Result of 21.69?",
    "question_th": "ลมประเภทใดมีผล 21.69?",
    "context": "CREATE TABLE table_name_69 (wind VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_75 WHERE athlete = \"inger miller\"",
    "question_en": "Show the Result of inger miller?",
    "question_th": "แสดงผลของ 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_en": "How many byes for the team with more than 14 losses and more than 0 wins?",
    "question_th": "ทีมที่แพ้มากกว่า 14 นัด และชนะมากกว่า 0 นัดละกี่นัด?",
    "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_en": "How many wins for the Caramut team with fewer than 11 losses and fewer than 2 byes?",
    "question_th": "ทีม Caramut ชนะน้อยกว่า 11 ครั้งและบายน้อยกว่า 2 ครั้งจะชนะได้กี่ครั้ง?",
    "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_en": "How many wins for the team with more than 1282 against and fewer than 14 losses?",
    "question_th": "ทีมชนะมากกว่า 1,282 ครั้งและแพ้น้อยกว่า 14 ครั้งกี่ครั้ง?",
    "context": "CREATE TABLE table_name_59 (wins INTEGER, against VARCHAR, losses VARCHAR)"
  },
  {
    "answer": "SELECT AVG(wins) FROM table_name_1 WHERE byes < 2",
    "question_en": "How many wins for the team with fewer than 2 byes?",
    "question_th": "ทีมที่บายน้อยกว่า 2 ชนะกี่ครั้ง?",
    "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_en": "How many against for the Moyston-Willaura team with 4 losses and fewer than 2 byes?",
    "question_th": "กี่ทีมต่อทีม Moyston-Willaura ที่แพ้ 4 และบายน้อยกว่า 2 ครั้ง?",
    "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_en": "Who is the player of the match at canberra stadium?",
    "question_th": "ใครคือผู้เล่นยอดเยี่ยมประจำแมตช์ที่สนามแคนเบอร์รา?",
    "context": "CREATE TABLE table_name_89 (player VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT AVG(tries) FROM table_name_25 WHERE player = \"israel folau\"",
    "question_en": "What is the average number of tries of player israel folau?",
    "question_th": "จำนวนความพยายามเฉลี่ยของผู้เล่น Israel folau คือเท่าใด?",
    "context": "CREATE TABLE table_name_25 (tries INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_8 WHERE player = \"phil graham\"",
    "question_en": "What round is player phil graham in?",
    "question_th": "ผู้เล่นฟิล เกรแฮมอยู่รอบไหน?",
    "context": "CREATE TABLE table_name_8 (round VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_7 WHERE venue = \"cua stadium\"",
    "question_en": "Who is the opponent of the match at cua stadium?",
    "question_th": "คู่ต่อสู้ที่สนาม Cua คือใคร?",
    "context": "CREATE TABLE table_name_7 (opponent VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_72 WHERE player = \"phil graham\"",
    "question_en": "Who is the opponent of player phil graham?",
    "question_th": "คู่ต่อสู้ของผู้เล่นฟิล เกรแฮมคือใคร?",
    "context": "CREATE TABLE table_name_72 (opponent VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT money___£__ FROM table_name_59 WHERE country = \"england\" AND player = \"malcolm mackenzie\"",
    "question_en": "Can you tell me the Money (£) that has the Country of england, and the Player of malcolm mackenzie?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าเงิน (ปอนด์) ที่มีประเทศอังกฤษและผู้เล่นของมัลคอล์ม แม็คเคนซี่?",
    "context": "CREATE TABLE table_name_59 (money___£__ VARCHAR, country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_90 WHERE nominee = \"stephen sondheim\" AND category = \"best original score\"",
    "question_en": "Which Year has a Nominee of stephen sondheim, and a Category of the best original score?",
    "question_th": "ปีใดที่มีผู้ได้รับการเสนอชื่อเข้าชิง Stephen Sondheim และอยู่ในหมวดหมู่ของเพลงประกอบภาพยนตร์ที่ดีที่สุด",
    "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_en": "Which Result has a Category of the best costume design?",
    "question_th": "ผลลัพธ์ใดมีหมวดหมู่การออกแบบเครื่องแต่งกายที่ดีที่สุด",
    "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_en": "Which Nominee has an Award Ceremony of tony award, and a Category of the best performance by a leading actor in a musical?",
    "question_th": "ผู้ที่ได้รับการเสนอชื่อคนใดมีพิธีมอบรางวัลโทนี่ อวอร์ด และประเภทการแสดงที่ดีที่สุดโดยนักแสดงนำในละครเพลง?",
    "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_en": "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?",
    "question_th": "เมื่อมีข้อผิดพลาดมากกว่า 126 ครั้ง การฆ่ามากกว่า 551 ครั้ง และแอสซิสต์มากกว่า 40 ครั้งในฤดูกาล 2550 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_en": "When there is less than 13 services aces with a percentage greater than 0.34900000000000003, what is the smallest total attempts?",
    "question_th": "เมื่อมีเซอร์วิสเอซน้อยกว่า 13 เอซที่มีเปอร์เซ็นต์มากกว่า 0.34900000000000003 ความพยายามทั้งหมดที่น้อยที่สุดคือเท่าใด",
    "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_en": "When the percentage is 0.34900000000000003 with more than 13 solo blocks and less than 4713 total attempts, what is the greatest assists?",
    "question_th": "เมื่อเปอร์เซ็นต์คือ 0.34900000000000003 โดยมีบล็อกเดี่ยวมากกว่า 13 บล็อกและพยายามทั้งหมดน้อยกว่า 4,713 ครั้ง อะไรคือแอสซิสต์ที่ยิ่งใหญ่ที่สุด?",
    "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_en": "When assists is more than 32 and total blocks is more than 88, what is the total of block assists?",
    "question_th": "เมื่อแอสซิสต์มากกว่า 32 และบล็อครวมมากกว่า 88 บล็อคแอสซิสต์ทั้งหมดเป็นเท่าใด",
    "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_en": "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?",
    "question_th": "จำนวนต่อต้านทั้งหมดคือเท่าไร เมื่อแพ้น้อยกว่า 52 เมื่อแมตช์มากกว่า 4 และเมื่อเสมอน้อยกว่า 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_en": "What is the total number of Against, when Draw is greater than 48?",
    "question_th": "จำนวนต่อต้านทั้งหมดเป็นเท่าใด เมื่อเสมอมากกว่า 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_en": "What is the highest Losses, when Wins is \"1\", and when Matches is less than 2?",
    "question_th": "อะไรคือความสูญเสียสูงสุด เมื่อชนะคือ \"1\" และเมื่อการแข่งขันน้อยกว่า 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_en": "What is the highest Against, when Wins is greater than 2, and when Matches is less than 17?",
    "question_th": "ค่าต่อต้านสูงสุดคืออะไร เมื่อชนะมากกว่า 2 และเมื่อแมตช์น้อยกว่า 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_en": "What is the lowest Matches, when Against is less than 7, and when Wins is greater than 1?",
    "question_th": "แมตช์ที่ต่ำที่สุดคืออะไร เมื่อต่อต้านน้อยกว่า 7 และเมื่อชนะมากกว่า 1?",
    "context": "CREATE TABLE table_name_74 (matches INTEGER, against VARCHAR, wins VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_35 WHERE player = \"tomasz kiełbowicz\"",
    "question_en": "What position did tomasz kiełbowicz play?",
    "question_th": "โทมัสซ์ คีลโบวิคซ์ เล่นตำแหน่งอะไร?",
    "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_en": "Which # of Episodes has a Mole of craig slike?",
    "question_th": "#ตอนไหนมีไฝของเครกสไลค์?",
    "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_en": "Which host has more than 11 episodes?",
    "question_th": "พิธีกรคนไหนมีมากกว่า 11 ตอน?",
    "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_en": "Which Season has a Mole of frederique van der wal?",
    "question_th": "ฤดูกาลใดมีตัวตุ่นของ 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_en": "What is Res., when Time is \"1:09\"?",
    "question_th": "Res. คืออะไร เมื่อเวลาเป็น \"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_en": "What is Res., when Round is greater than 2, and when Event is \"Midwest Cage Championships 25: Inferno\"?",
    "question_th": "Res. คืออะไร เมื่อรอบมากกว่า 2 และเมื่อกิจกรรมคือ \"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_en": "What is Time, when Round is \"3\", when Method is \"Decision (unanimous)\", and when Record is \"7-3\"?",
    "question_th": "เวลาคืออะไร เมื่อรอบคือ \"3\" เมื่อวิธีการคือ \"การตัดสินใจ (เป็นเอกฉันท์)\" และเมื่อบันทึกคือ \"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_en": "What is Record, when Location is \"Des Moines, Iowa , United States\", and when Method is \"Submission (arm-triangle choke)\"?",
    "question_th": "Record คืออะไร เมื่อตำแหน่งคือ \"Des Moines, Iowa , United States\" และเมื่อวิธีการคือ \"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_en": "What is the score for the game with 213 attending?",
    "question_th": "เกมนี้ มีผู้เข้าร่วม 213 คน คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_3 (score VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_75 WHERE home_team = \"slough town\"",
    "question_en": "What was the away team for the game in Slough Town?",
    "question_th": "ทีมเยือนในเกมที่สลอค ทาวน์เป็นทีมไหน?",
    "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_en": "Who was the home team that played against Armthorpe Welfare?",
    "question_th": "ทีมเจ้าบ้านที่เล่นกับอาร์มธอร์ปสวัสดิการคือใคร?",
    "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_en": "What is the Tie no for the game with the away team Whyteleafe?",
    "question_th": "Tie no ในเกมกับทีมเยือน 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_en": "What is home team Maine Road's score?",
    "question_th": "คะแนนของทีมเจ้าบ้าน เมน โร้ด คืออะไร?",
    "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_en": "What year was the US Open that had a partnering of Maikel Scheffers?",
    "question_th": "US Open ที่มี 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_en": "What was the championship before 2012 that had Stephane Houdet Michael Jeremiasz as opponents?",
    "question_th": "การแข่งขันชิงแชมป์ก่อนปี 2012 ที่มีสเตฟาน ฮูเดต์ มิคาเอล เจเรเมียสเป็นคู่ต่อสู้คืออะไร?",
    "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_en": "What was the score when the Shingo Kunieda Satoshi Saida were the opponents?",
    "question_th": "ตอนที่ ชินโง คุนิเอดะ ซาโตชิ ไซดะ เป็นคู่ต่อสู้ได้สกอร์เท่าไหร่?",
    "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_en": "What year were the opponents Shingo Kunieda Satoshi Saida?",
    "question_th": "คู่แข่งคือชินโง คุนิเอดะ ซาโตชิ ไซดะในปีไหน?",
    "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_en": "In what place is the golfer with a score of 68-69-73-70=280?",
    "question_th": "นักกอล์ฟที่มีคะแนน 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___£__ = \"40,850\" AND score = 72 - 74 - 70 - 70 = 286",
    "question_en": "What is the to par of the golfer with winnings of 40,850 and a score of 72-74-70-70=286?",
    "question_th": "ค่าพาร์ของนักกอล์ฟที่ชนะ 40,850 และคะแนน 72-74-70-70=286 คืออะไร?",
    "context": "CREATE TABLE table_name_52 (to_par VARCHAR, money___£__ VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_74 WHERE money___£__ = \"49,500\"",
    "question_en": "What is the to par for the player with winnings of 49,500?",
    "question_th": "พาร์สำหรับผู้เล่นที่ชนะรางวัล 49,500 คืออะไร?",
    "context": "CREATE TABLE table_name_74 (to_par VARCHAR, money___£__ VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_61 WHERE to_par = \"+2\" AND player = \"aaron baddeley\"",
    "question_en": "What is the Score of the Round with Player Aaron Baddeley having a To par of +2?",
    "question_th": "คะแนนของรอบนี้โดยผู้เล่น Aaron Baddeley มีพาร์ถึง +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_en": "What is Charlie Wi's To par?",
    "question_th": "พาร์ของ Charlie Wi คืออะไร?",
    "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_en": "What is the Country of the T8 Place Player with a Score of 68-74=142?",
    "question_th": "ผู้เล่นอันดับ T8 คือประเทศใดที่มีคะแนน 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_en": "What is the T8 Place Player with a Score of 68-74=142?",
    "question_th": "ผู้เล่นอันดับ T8 คืออะไรที่มีคะแนน 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_en": "What Country is David Toms from?",
    "question_th": "David Toms มาจากประเทศอะไร",
    "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_en": "What is the To par for Robert Allenby from Australia",
    "question_th": "ค่าพาร์ของ Robert Allenby จากออสเตรเลียคือเท่าไร",
    "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_en": "When Rocco Mediate of the United States has a To par of +2, what was his score?",
    "question_th": "เมื่อ Rocco Mediate จากสหรัฐอเมริกามี To พาร์ +2 คะแนนของเขาอยู่ที่เท่าไร?",
    "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_en": "What is the score for Greg Norman",
    "question_th": "คะแนนของ เกร็ก นอร์แมน คืออะไร?",
    "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_en": "When Rocco Mediate has a To par of +2 and a 69-73=142 score, what is the country listed?",
    "question_th": "เมื่อ Rocco Mediate มีคะแนน To par +2 และคะแนน 69-73=142 ประเทศใดอยู่ในรายการ?",
    "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_en": "What is the country listed that has a place of t4 with a score of 72-70=142?",
    "question_th": "ประเทศใดที่อยู่ในรายชื่อที่มีอันดับ t4 ด้วยคะแนน 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_en": "What is the Home team of the Kidderminster Harriers Away game?",
    "question_th": "ทีมเจ้าบ้านในเกมเยือน คิดเดอร์มินสเตอร์ แฮริเออร์ส คืออะไร?",
    "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_en": "What is the Date of the Sutton United Home game?",
    "question_th": "เกมเหย้าของซัตตัน ยูไนเต็ด ตรงกับวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_35 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_78 WHERE score = \"3–2\" AND tie_no = \"35\"",
    "question_en": "What is the Date of Tie no 35 with a Score of 3–2?",
    "question_th": "วันที่เสมอกันครั้งที่ 35 ด้วยคะแนน 3–2 คืออะไร?",
    "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–0\" AND away_team = \"carlisle united\"",
    "question_en": "What is the Tie no of the Carlisle United Away game on 17/11/1990 with a Score of 5–0?",
    "question_th": "เสมอกันของเกมเยือนคาร์ไลล์ยูไนเต็ดเมื่อวันที่ 17/11/1990 ด้วยสกอร์ 5–0 คืออะไร?",
    "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_en": "What is the Home team of Tie no 40?",
    "question_th": "ทีมเหย้าของเสมอหมายเลข 40 คืออะไร?",
    "context": "CREATE TABLE table_name_35 (home_team VARCHAR, tie_no VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_46 WHERE score = \"1–1\" AND home_team = \"merthyr tydfil\"",
    "question_en": "What is the Away team of the Merthyr Tydfil Home game with a Score of 1–1?",
    "question_th": "ทีมเยือนของเกมเหย้า Merthyr Tydfil คือทีมใดด้วยสกอร์ 1–1?",
    "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_en": "What is the lowest Attendance, when Home Team is \"Welling United\"?",
    "question_th": "ผู้เข้าร่วมต่ำสุดคือเท่าไร เมื่อทีมเหย้าคือ \"เวลลิ่ง ยูไนเต็ด\"?",
    "context": "CREATE TABLE table_name_26 (attendance INTEGER, home_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_14 WHERE attendance = 303",
    "question_en": "What is Score, when Attendance is \"303\"?",
    "question_th": "คะแนนคืออะไร เมื่อผู้เข้าร่วมคือ \"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_en": "Which place is Andy Bean from the United States?",
    "question_th": "Andy Bean จากสหรัฐอเมริกาคือสถานที่ใด",
    "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_en": "Which United States player has a place of T3?",
    "question_th": "ผู้เล่นสหรัฐอเมริกาคนใดมีตำแหน่ง 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_en": "What country is Lee Trevino from?",
    "question_th": "Lee Trevino มาจากประเทศใด",
    "context": "CREATE TABLE table_name_41 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT state FROM table_name_98 WHERE rank__2012_ = 43",
    "question_en": "What is the state that has the 2012 rank of 43?",
    "question_th": "รัฐใดที่มีอันดับ 43 ในปี 2555?",
    "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_en": "What is the highest Year, when Apparatus is \"Vault\", and when Rank-Final is less than 9?",
    "question_th": "ปีสูงสุดคือปีใด เมื่อเครื่องมือเป็น \"Vault\" และเมื่ออันดับสุดท้ายน้อยกว่า 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_en": "What is Year, when Competition Description is \"U.S. Championships\", when Rank-Final is less than 3, and when Apparatus is \"All-Around\"?",
    "question_th": "ปีคืออะไร เมื่อคำอธิบายการแข่งขันคือ \"US Championships\" เมื่ออันดับสุดท้ายน้อยกว่า 3 และเมื่ออุปกรณ์เป็น \"ทุกรอบ\"",
    "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_en": "What is Apparatus, when Rank-Final is greater than 6, and when Competition Description is \"U.S. Championships\"?",
    "question_th": "Apparatus คืออะไร เมื่ออันดับสุดท้ายมากกว่า 6 และเมื่อคำอธิบายการแข่งขันคือ \"US 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_en": "What was the first leg home that had a total aggregate of 3-1?",
    "question_th": "เกมเหย้าเลกแรกที่มีสกอร์รวม 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_en": "What was the 1st leg that had a 4-2 aggregate?",
    "question_th": "เลกแรกที่มีสกอร์รวม 4-2 คืออะไร?",
    "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_en": "What was the 1st leg that had a 1st get home for the Boca Juniors?",
    "question_th": "เลกแรกที่ได้กลับบ้านให้โบคา จูเนียร์สเป็นนัดแรกคืออะไร?",
    "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_en": "What was the 2nd leg that had the Estudiantes La Plata home for the 2nd leg?",
    "question_th": "เลกที่ 2 ที่เอสตูเดียนเตส ลา พลาตาเหย้าในเลกที่ 2 คืออะไร?",
    "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_en": "Can you tell me the Player that has the Place of t5, and the Score of 73-72-71-75=291?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าผู้เล่นที่มีอันดับ t5 และคะแนน 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_en": "Can you tell me the average Money ($) that has the To par larger than 14, and the Player of ed dudley?",
    "question_th": "คุณช่วยบอกฉันถึงเงินเฉลี่ย ($) ที่มีพาร์ To มากกว่า 14 และผู้เล่นของ 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_en": "What is the transfer window for Hleb?",
    "question_th": "หน้าต่างการโอนของ 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_en": "What is the lowest ends for Dani Alves?",
    "question_th": "จุดจบต่ำสุดของ 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 = \"€8m + €2m in variables\"",
    "question_en": "What is the name of the person with a type of transfer, and a Transfer fee of €8m + €2m in variables?",
    "question_th": "ชื่อของบุคคลที่มีประเภทการโอนคืออะไร และค่าธรรมเนียมการโอน 8 ล้านยูโร + 2 ล้านยูโรเป็นตัวแปร?",
    "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_en": "What is To par, when Margin of Victory is \"2 Strokes\", and when Tournament is \"Women's British Open\"?",
    "question_th": "อะไรคือค่าพาร์ เมื่อมาร์จิ้นของชัยชนะคือ \"2 สโตรค\" และเมื่อทัวร์นาเมนต์คือ \"วีเมนส์ บริติช โอเพ่น\"?",
    "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_en": "What is Date, when Runner(s)-Up is \"Bo-Mee Lee\"?",
    "question_th": "วันที่เท่าไหร่ เมื่อรองชนะเลิศคือ \"โบมี ลี\"?",
    "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_en": "What is To par, when Margin of Victory is \"2 Strokes\", and when Tournament is \"Women's British Open\"?",
    "question_th": "อะไรคือค่าพาร์ เมื่อมาร์จิ้นของชัยชนะคือ \"2 สโตรค\" และเมื่อทัวร์นาเมนต์คือ \"วีเมนส์ บริติช โอเพ่น\"?",
    "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_en": "What did Steve Stricker score?",
    "question_th": "สตีฟ สตริกเกอร์ทำคะแนนได้เท่าไหร่?",
    "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_en": "What is the sum of the number of clubs in seasons before 1992 with more than 3 total wins?",
    "question_th": "ผลรวมของจำนวนสโมสรในฤดูกาลก่อนปี 1992 ที่ชนะมากกว่า 3 ครั้งเป็นเท่าใด",
    "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_en": "What is the sum of the season with 8 clubs and shanghai as the runners-up?",
    "question_th": "ผลรวมของฤดูกาลที่มี 8 สโมสรและเซี่ยงไฮ้เป็นรองแชมป์เป็นอย่างไรบ้าง?",
    "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_en": "Who is third-place with less than 5 total wins with china b as the winners?",
    "question_th": "ใครคืออันดับที่สามโดยชนะรวมน้อยกว่า 5 ครั้ง โดยมีจีน b เป็นผู้ชนะ",
    "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_en": "What is the lowest total number of wins in a season before 1989 with tianjin as the runners-up and more than 8 clubs?",
    "question_th": "จำนวนชัยชนะรวมต่ำสุดในหนึ่งฤดูกาลก่อนปี 1989 โดยมีเทียนจินเป็นรองแชมป์และมากกว่า 8 สโมสรคือเท่าใด",
    "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_en": "What was the result for Rank 2 on December 6, 1969?",
    "question_th": "ผลอันดับ 2 เมื่อวันที่ 6 ธันวาคม 2512 เป็นอย่างไร?",
    "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_en": "What was the rank # for opponent AT Baylor?",
    "question_th": "อันดับ # ของฝ่ายตรงข้าม 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_en": "What is the result for opponent TCU?",
    "question_th": "ผลลัพธ์ของ TCU ของฝ่ายตรงข้ามคืออะไร?",
    "context": "CREATE TABLE table_name_89 (result VARCHAR, opponent_number VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_81 WHERE attendance = \"82,500\"",
    "question_en": "What date was the attendance 82,500?",
    "question_th": "ผู้เข้าร่วมงานวันที่เท่าไหร่ 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_en": "Which League Cup has a Total smaller than 1?",
    "question_th": "ลีกคัพใดมีคะแนนรวมน้อยกว่า 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_en": "Which Total has a League Cup smaller than 0?",
    "question_th": "ผลรวมใดที่มีลีกคัพน้อยกว่า 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_en": "Which Championship has a League Cup larger than 0, and a FA Cup larger than 0?",
    "question_th": "แชมเปี้ยนชิพใดที่มีลีกคัพใหญ่กว่า 0 และเอฟเอคัพใหญ่กว่า 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_en": "Which Championship has a League Cup smaller than 0?",
    "question_th": "แชมเปี้ยนชิพใดที่มีลีกคัพเล็กกว่า 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_en": "Which Age (as of 1 February 2014) has a Rank smaller than 9, and a Death date of 24 january 2007?",
    "question_th": "อายุใด (ณ วันที่ 1 กุมภาพันธ์ 2014) มีอันดับน้อยกว่า 9 และวันตายคือวันที่ 24 มกราคม 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_en": "Which Death date has a Rank smaller than 49, and an Age (as of 1 February 2014) of 112 years, 172 days?",
    "question_th": "วันตายใดที่มีอันดับน้อยกว่า 49 และอายุ (ณ วันที่ 1 กุมภาพันธ์ 2014) คือ 112 ปี 172 วัน",
    "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_en": "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?",
    "question_th": "วันตายใดที่มีสถานที่แห่งความตายหรือถิ่นที่อยู่ของประเทศสหรัฐอเมริกา และอายุ (ณ วันที่ 1 กุมภาพันธ์ 2014) เท่ากับ 111 ปี 61 วัน",
    "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_en": "What was the record on Feb 25?",
    "question_th": "บันทึกเมื่อวันที่ 25 ก.พ. คืออะไร?",
    "context": "CREATE TABLE table_name_83 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT streak FROM table_name_26 WHERE opponent = \"@ new jersey nets\"",
    "question_en": "What was the streak when the opponent was @ new jersey nets?",
    "question_th": "สตรีคเป็นอย่างไรบ้างเมื่อคู่ต่อสู้เป็น @ นิวเจอร์ซีย์ เน็ตส์?",
    "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_en": "What year was the competition vitry-sur-seine humarathon?",
    "question_th": "การแข่งขัน vitry-sur-seine huมาราธอน ในปีใด?",
    "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_en": "Which Goal Difference has 28 Points, and a Club of cd cartagena, more than 15 losses?",
    "question_th": "ผลต่างประตูไหนมี 28 แต้ม และคลับของ cd cartagena แพ้มากกว่า 15 นัด?",
    "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_en": "How much Goal Difference has less than 9 Losses, and 8 Draws, and more than 40 points?",
    "question_th": "ผลต่างประตูได้น้อยกว่า 9 ครั้ง เสมอ 8 ครั้ง และมีคะแนนมากกว่า 40 แต้มเท่าใด",
    "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_en": "How many points have more than 14 wins, a goal difference of 14, and more than 6 draws?",
    "question_th": "ชนะมากกว่า 14 แต้ม ผลต่างประตู 14 เสมอ 6 แต้ม มีกี่แต้ม?",
    "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_en": "Which Played has Goals against larger than 34, and Wins smaller than 12, and Goals for smaller than 50, and Losses larger than 15?",
    "question_th": "ผู้เล่นคนไหนที่มีประตูมากกว่า 34 และชนะน้อยกว่า 12 และประตูน้อยกว่า 50 และแพ้มากกว่า 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_en": "Which Draws has Goals against smaller than 47, and a Position smaller than 13, and Goals for of 52?",
    "question_th": "เสมอใดที่มีประตูต่อจำนวนที่น้อยกว่า 47 และตำแหน่งที่น้อยกว่า 13 และประตูสำหรับ 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_en": "How long is the bridge in Villeneuve-sur-Lot?",
    "question_th": "สะพานใน 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_en": "Which bridge was completed in 1928?",
    "question_th": "สะพานใดที่สร้างเสร็จในปี พ.ศ. 2471",
    "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_en": "How long is the UK's Ballochmyle Viaduct?",
    "question_th": "สะพาน Ballochmyle ของสหราชอาณาจักรใช้เวลานานเท่าใด",
    "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_en": "What kind of arch is the pont de montanges (pont-des-pierres)?",
    "question_th": "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_en": "From where did the Scout carrier rocket with the satellite that has a COSPAR ID of 1971-109a launch?",
    "question_th": "เรือบรรทุกลูกเสือจรวดด้วยดาวเทียมที่มีรหัส COSPAR ID ปี 1971-109a ปล่อยจากที่ไหน",
    "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_en": "When was the satellite that has a COSPAR ID of 1967-042a launched?",
    "question_th": "ดาวเทียมที่มี COSPAR ID 1967-042a เปิดตัวเมื่อใด",
    "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_en": "What is Ariel 3's COSPAR ID?",
    "question_th": "COSPAR ID ของ Ariel 3 คืออะไร",
    "context": "CREATE TABLE table_name_3 (cospar_id VARCHAR, satellite VARCHAR)"
  },
  {
    "answer": "SELECT satellite FROM table_name_5 WHERE launch_site = \"vandenberg\"",
    "question_en": "Which satellite was launched from Vandenberg?",
    "question_th": "ดาวเทียมใดที่ปล่อยจาก 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_en": "What is the COSPAR ID of Ariel 4, which was launched with a Scout carrier rocket?",
    "question_th": "COSPAR ID ของ Ariel 4 ซึ่งเปิดตัวด้วยจรวดขนส่งลูกเสือคืออะไร",
    "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_en": "Which Rush song was played for Mike Fincke?",
    "question_th": "เพลง Rush เพลงไหนที่เล่นให้ 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_en": "On what flight day was U2 played?",
    "question_th": "U2 เล่นวันไหน?",
    "context": "CREATE TABLE table_name_2 (flight_day VARCHAR, artist VARCHAR)"
  },
  {
    "answer": "SELECT links FROM table_name_81 WHERE flight_day = \"day 16\"",
    "question_en": "What links were used on flight day 16?",
    "question_th": "ลิงก์ใดบ้างที่ใช้ในเที่ยวบินวันที่ 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_en": "What is the 2011 Australian Open and a 2010 QF?",
    "question_th": "Australian Open 2011 และ QF 2010 คืออะไร?",
    "context": "CREATE TABLE table_name_70 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2010 FROM table_name_3 WHERE 2011 = \"1r\"",
    "question_en": "What is 2010 that has 1r 2011?",
    "question_th": "2010 คืออะไรที่มี 1r 2011?",
    "context": "CREATE TABLE table_name_3 (Id VARCHAR)"
  },
  {
    "answer": "SELECT win__percentage FROM table_name_3 WHERE 2010 = \"qf\"",
    "question_en": "What is the winning % for the 2010 QF?",
    "question_th": "% ที่ชนะสำหรับ QF ปี 2010 เป็นเท่าใด?",
    "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_en": "What is the 2009 for 2012 1R in Wimbledon and a 2011 2r?",
    "question_th": "2009 สำหรับ 2012 1R ในวิมเบิลดันและ 2011 2r คืออะไร",
    "context": "CREATE TABLE table_name_77 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2012 FROM table_name_60 WHERE win__percentage = \"67%\"",
    "question_en": "What is 2012 that has a winning % of 67%?",
    "question_th": "ปี 2012 คืออะไรที่มี % ชนะ 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_en": "In 1979 when Jimmy Connors was the runner-up what was the score?",
    "question_th": "เมื่อปี 1979 เมื่อจิมมี่ คอนเนอร์ส คว้ารองแชมป์ได้คะแนนเท่าไหร่?",
    "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_en": "Who won when Peter Fleming was a runner-up?",
    "question_th": "ใครชนะเมื่อปีเตอร์ เฟลมมิงเป็นรองแชมป์?",
    "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_en": "When John Mcenroe won at Montreal, what was the score?",
    "question_th": "ตอนที่ John Mcenroe ชนะ Montreal ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_43 (score VARCHAR, location VARCHAR, champion VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_name_56 WHERE champion = \"ilie năstase\" AND runner_up = \"peter fleming\"",
    "question_en": "When Ilie Năstase beat runner-up Peter Fleming what year was it?",
    "question_th": "เมื่อ Ilie Năstase เอาชนะรองแชมป์ Peter Fleming ได้ในปีไหน?",
    "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_en": "What is the first track where the production credit is margret arranged by e. mergency?",
    "question_th": "แทร็กแรกที่เครดิตการผลิตคือ margret ที่จัดโดย e คืออะไร การรวมตัวกัน?",
    "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_en": "Which song was written by Nigel Stock and is 4:12 long?",
    "question_th": "เพลงใดที่แต่งโดย Nigel Stock และมีความยาว 4:12?",
    "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_en": "Who was the songwriter for Track 4, produced by nigel wright and john smits?",
    "question_th": "ใครเป็นนักแต่งเพลงสำหรับแทร็ก 4 ซึ่งอำนวยการสร้างโดยไนเจล ไรท์ และจอห์น สมิทส์",
    "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_en": "What is the lowest draft of player jim farrell, who has a pick greater than 197 and a round of 14?",
    "question_th": "จิม ฟาร์เรลล์ ดราฟต์ต่ำสุดของผู้เล่นที่มีโอกาสเลือกมากกว่า 197 และรอบ 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_en": "What is the lowest pick of player paul stasiuk from a round greater than 12?",
    "question_th": "ผู้เล่น Paul Stasiuk ที่เลือกต่ำที่สุดจากรอบที่มากกว่า 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_en": "What is the total pick number of player curt bennett from canada with a draft before 1976 and a round less than 2?",
    "question_th": "จำนวนผู้เล่นที่คัดตัวเบนเน็ตต์จากแคนาดาที่มีดราฟท์ก่อนปี 1976 และรอบที่น้อยกว่า 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_en": "What is the average pick of player paul maclean, who had a draft before 1978?",
    "question_th": "ค่าเฉลี่ยของนักเตะที่พอล แม็คคลีน ดราฟท์ก่อนปี 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_en": "What is the average round of player dave pulkkinen, who had a draft after 1969?",
    "question_th": "เดฟ พัลคิเนน ผู้เล่นที่มีดราฟต์หลังปี 1969 รอบเฉลี่ยคือเท่าไร?",
    "context": "CREATE TABLE table_name_61 (round INTEGER, player VARCHAR, draft VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_55 WHERE year = 1981",
    "question_en": "What was the position in 1981?",
    "question_th": "ปี 2524 ดำรงตำแหน่งอะไร?",
    "context": "CREATE TABLE table_name_55 (position VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_87 WHERE pick = \"19\"",
    "question_en": "What was the player with pick 19?",
    "question_th": "ผู้เล่นที่เลือก 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_en": "What is the Country of the T2 Place Player with a Score of 69-69-69=207?",
    "question_th": "ผู้เล่นอันดับ T2 ประเทศใดที่มีคะแนน 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_en": "What is T7 Place Player Justin Leonard's Score?",
    "question_th": "คะแนนของผู้เล่น T7 Place Justin Leonard คืออะไร?",
    "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_en": "What Player's Score is 69-71-69=208?",
    "question_th": "คะแนนของผู้เล่นคือ 69-71-69=208?",
    "context": "CREATE TABLE table_name_88 (player VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_83 WHERE to_par = \"–8\" AND score = 67 - 74 - 67 = 208",
    "question_en": "What is the Place of the Player with a To par of –8 and a Score of 67-74-67=208?",
    "question_th": "ตำแหน่งผู้เล่นที่มีพาร์ถึง –8 และคะแนน 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_en": "What is T4 Place Player Nick Price's Score?",
    "question_th": "คะแนนของ Nick Price ผู้เล่น T4 Place คืออะไร?",
    "context": "CREATE TABLE table_name_15 (score VARCHAR, place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_32 WHERE to_par = \"–7\" AND player = \"justin leonard\"",
    "question_en": "What is Justin Leonard with a To par of –7's Score?",
    "question_th": "Justin Leonard คืออะไรที่มีคะแนนถึงพาร์ –7",
    "context": "CREATE TABLE table_name_32 (score VARCHAR, to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_85 WHERE week = 4",
    "question_en": "Who was the opponent at the week 4 game?",
    "question_th": "คู่ต่อสู้ในเกมสัปดาห์ที่ 4 คือใคร?",
    "context": "CREATE TABLE table_name_85 (opponent VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_49 WHERE week = 16",
    "question_en": "What was the result of the week 16 game?",
    "question_th": "ผลการแข่งขันสัปดาห์ที่ 16 เป็นอย่างไร?",
    "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_en": "What was the attendance at the post-week 7 game against the San Diego Chargers?",
    "question_th": "ผู้เข้าชมในเกมหลังสัปดาห์ที่ 7 กับซานดิเอโก ชาร์จเจอร์สเป็นอย่างไรบ้าง",
    "context": "CREATE TABLE table_name_53 (attendance VARCHAR, week VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_68 WHERE date = \"july 7\"",
    "question_en": "What is the Competition on July 7?",
    "question_th": "การแข่งขันวันที่ 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_en": "At what Location in Round 3 is the Score 1-1?",
    "question_th": "คะแนน 1-1 อยู่ที่ตำแหน่งไหนในรอบที่ 3?",
    "context": "CREATE TABLE table_name_12 (location VARCHAR, round VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_47 WHERE date = \"october 25\"",
    "question_en": "What is the Score of the competition on October 25?",
    "question_th": "ผลการแข่งขันวันที่ 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_en": "What is 2nd Party, when Election is \"1885\"?",
    "question_th": "พรรคที่ 2 คืออะไร เมื่อการเลือกตั้งคือ \"พ.ศ. 2428\"?",
    "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_en": "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?",
    "question_th": "พื้นที่ที่ใหญ่ที่สุด (msr) คืออะไรซึ่งมีพื้นที่น้อยกว่า 291.045 เป็นส่วนหนึ่งของตระกูล Per และมีอันดับสูงกว่า 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_en": "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?",
    "question_th": "ผลรวมของพื้นที่ (sq.deg) ที่มีพื้นที่ (msr) เท่ากับ 43.059 และค่าการขึ้นทางขวา (hm) มากกว่า 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_en": "What's the total time for the summer universiade competition?",
    "question_th": "การแข่งขันมหาวิทยาลัยภาคฤดูร้อนใช้เวลาทั้งหมดเท่าไร?",
    "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_en": "What's the highest time for the 1995 200 metres event?",
    "question_th": "การแข่งขันวิ่ง 200 เมตร ปี 1995 มีเวลาสูงสุดคือเมื่อใด",
    "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_en": "What position has a time over 38.61 at the gothenburg venue?",
    "question_th": "ตำแหน่งใดมีเวลามากกว่า 38.61 ที่สนามโกเธนเบิร์ก?",
    "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_en": "What position has a time less than 40.2 at the rome venue?",
    "question_th": "ตำแหน่งใดมีเวลาน้อยกว่า 40.2 ที่สนามโรม?",
    "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_en": "What is the most Bronze medals won among the participants that won less than 22 medals overall and less than 5 silver medals?",
    "question_th": "เหรียญทองแดงที่ได้รับมากที่สุดในบรรดาผู้เข้าร่วมที่ได้เหรียญโดยรวมน้อยกว่า 22 เหรียญและเหรียญเงินน้อยกว่า 5 เหรียญคืออะไร",
    "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_en": "How many silver medals were won by the participant(s) that had more than 12 gold medals and 11 bronze medals?",
    "question_th": "ผู้เข้าร่วมได้รับเหรียญเงินมากกว่า 12 เหรียญทองและ 11 เหรียญทองแดงมากกว่ากี่เหรียญ",
    "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_en": "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?",
    "question_th": "จำนวนเหรียญทองโดยเฉลี่ยที่ได้รับจากผู้เข้าร่วมที่ได้รับรางวัลน้อยกว่า 13 เหรียญเงิน น้อยกว่า 8 เหรียญทองแดง และมากกว่า 18 เหรียญโดยรวมคือเท่าใด",
    "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_en": "What is the number range for the T 3 class?",
    "question_th": "คลาส T 3 มีช่วงหมายเลขเท่าใด",
    "context": "CREATE TABLE table_name_88 (number_range VARCHAR, class VARCHAR)"
  },
  {
    "answer": "SELECT 2009 FROM table_name_19 WHERE 2010 = \"52-75\"",
    "question_en": "What 2009 has 52-75 as the 2010?",
    "question_th": "ปี 2009 อะไรที่มี 52-75 เป็นปี 2010",
    "context": "CREATE TABLE table_name_19 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2008 FROM table_name_37 WHERE \"2013\" = \"2013\"",
    "question_en": "What 2008 has 2013 for the year 2013?",
    "question_th": "ปี 2551 มีปี 2556 อะไรบ้างสำหรับปี 2556?",
    "context": "CREATE TABLE table_name_37 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2009 FROM table_name_45 WHERE 2011 = \"39th\"",
    "question_en": "What 2009 has 39th as the 2011?",
    "question_th": "ปี 2552 อะไรอยู่อันดับที่ 39 เท่ากับปี 2554",
    "context": "CREATE TABLE table_name_45 (Id VARCHAR)"
  },
  {
    "answer": "SELECT SUM(no_specimens) FROM table_name_1 WHERE abbr = \"sant\"",
    "question_en": "How many specimens does the SANT institution have?",
    "question_th": "สถาบัน SANT มีตัวอย่างจำนวนเท่าใด",
    "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_en": "In which city is the Universidad de Santiago de Compostela located?",
    "question_th": "Universidad de Santiago de Compostela ตั้งอยู่ในเมืองใด?",
    "context": "CREATE TABLE table_name_37 (city VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_29 WHERE abbr = \"mub\"",
    "question_en": "In which city is MUB located?",
    "question_th": "MUB ตั้งอยู่ในเมืองใด?",
    "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_en": "Which 1st Party has an Election of 1893 by-election?",
    "question_th": "ฝ่ายที่ 1 ใดมีการเลือกตั้งซ่อมในปี พ.ศ. 2436",
    "context": "CREATE TABLE table_name_10 (election VARCHAR)"
  },
  {
    "answer": "SELECT 1 AS st_member FROM table_name_23 WHERE election = \"1895\"",
    "question_en": "Which 1st Member has an Election of 1895?",
    "question_th": "สมาชิกคนที่ 1 คนใดได้รับการเลือกตั้งในปี พ.ศ. 2438",
    "context": "CREATE TABLE table_name_23 (election VARCHAR)"
  },
  {
    "answer": "SELECT 1999 FROM table_name_40 WHERE 2000 = \"year-end championship\"",
    "question_en": "Which 1999 has 2000 as the year-end championship?",
    "question_th": "ปี 1999 ไหนมีปี 2000 เป็นแชมป์ส่งท้ายปี?",
    "context": "CREATE TABLE table_name_40 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1997 FROM table_name_74 WHERE 2002 = \"sf\"",
    "question_en": "Which 1997 has sf as the 2002?",
    "question_th": "ปี 1997 ใดมี sf เป็นปี 2002",
    "context": "CREATE TABLE table_name_74 (Id VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_12 WHERE 2011 = \"1r\"",
    "question_en": "What tournament has 1r as the 2011?",
    "question_th": "ทัวร์นาเมนต์ใดมี 1r เท่ากับปี 2011?",
    "context": "CREATE TABLE table_name_12 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2009 FROM table_name_40 WHERE 1999 = \"3r\" AND 2002 = \"w\"",
    "question_en": "What 2009 has 3r as the 1999, and w as 2002?",
    "question_th": "ปี 2009 ใดมีอันดับที่ 3 เท่ากับปี 1999 และ W เป็นปี 2002",
    "context": "CREATE TABLE table_name_40 (Id VARCHAR)"
  },
  {
    "answer": "SELECT mass FROM table_name_54 WHERE designation = \"prognoz 2\"",
    "question_en": "What is Mass, when Designation is Prognoz 2?",
    "question_th": "มวลคืออะไร เมื่อกำหนดเป็น 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_en": "What is Mass, when Launch Date/Time ( GMT ) is 25 November 1976, 03:59?",
    "question_th": "พิธีมิสซาคืออะไร เมื่อวันที่/เวลาเปิดตัว (GMT) คือวันที่ 25 พฤศจิกายน พ.ศ. 2519 เวลา 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°\" AND launch_date_time___gmt__ = \"15 february 1973, 01:11\"",
    "question_en": "What is Apogee, when Inclination is 65°, and when Launch Date/Time is ( GMT ) is 15 February 1973, 01:11?",
    "question_th": "Apogee คืออะไร เมื่อความเอียงอยู่ที่ 65° และเมื่อวันที่/เวลาเปิดตัวคือ ( GMT ) คือวันที่ 15 กุมภาพันธ์ 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_en": "What is Apogee, when Designation is Prognoz 6?",
    "question_th": "Apogee คืออะไร เมื่อการกำหนดเป็น 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_en": "What is Designation, when Launch Date/Time ( GMT ) is 29 June 1972, 03:47?",
    "question_th": "Designation คืออะไร เมื่อ วันที่/เวลาเปิดตัว ( GMT ) คือ 29 มิถุนายน 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_en": "What is the Elimination for Candice?",
    "question_th": "การกำจัดแคนดิซคืออะไร?",
    "context": "CREATE TABLE table_name_96 (elimination VARCHAR, wrestler VARCHAR)"
  },
  {
    "answer": "SELECT wrestler FROM table_name_6 WHERE elimination = \"7\"",
    "question_en": "What Wrestler has an Elimination of 7?",
    "question_th": "นักมวยปล้ำคนไหนที่กำจัด 7 ได้?",
    "context": "CREATE TABLE table_name_6 (wrestler VARCHAR, elimination VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_86 WHERE wrestler = \"natalya\"",
    "question_en": "What is Natalya's Time?",
    "question_th": "เวลาของ Natalya คืออะไร?",
    "context": "CREATE TABLE table_name_86 (time VARCHAR, wrestler VARCHAR)"
  },
  {
    "answer": "SELECT elimination AS Move FROM table_name_88 WHERE wrestler = \"maria\"",
    "question_en": "What is Maria's Elimination Move?",
    "question_th": "การย้ายการกำจัดของ Maria คืออะไร?",
    "context": "CREATE TABLE table_name_88 (elimination VARCHAR, wrestler VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_42 WHERE score = 68",
    "question_en": "In which area was there a score of 68?",
    "question_th": "มีคะแนน 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_en": "Which player had a position of t1 and played in the united states?",
    "question_th": "ผู้เล่นคนไหนมีตำแหน่ง t1 และเล่นในสหรัฐอเมริกา?",
    "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_en": "What person had an opponent of linda wessberg and scored an average score?",
    "question_th": "บุคคลใดมีคู่ต่อสู้ของ linda wessberg และทำคะแนนเฉลี่ยได้?",
    "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_en": "What was the lowest total for Italy when the latest win is 1950?",
    "question_th": "ผลรวมต่ำสุดของอิตาลีเมื่อชนะครั้งล่าสุดคือปี 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_en": "What were the results for the incumbent from Iowa 2 district?",
    "question_th": "ผลลัพธ์ของผู้ดำรงตำแหน่งจากเขตไอโอวา 2 คืออะไร",
    "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_en": "Who is the incumbent that has been in office since before 1996 and was again re-elected?",
    "question_th": "ใครคือผู้ดำรงตำแหน่งที่ดำรงตำแหน่งตั้งแต่ก่อนปี 2539 และได้รับเลือกอีกครั้งหนึ่ง",
    "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_en": "From which party is the incumbent who was first elected to office in 1990?",
    "question_th": "ผู้ดำรงตำแหน่งที่ได้รับเลือกให้ดำรงตำแหน่งครั้งแรกในปี พ.ศ. 2533 คือพรรคใด",
    "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_en": "In what year did the Democratic incumbent that was re-elected first take office?",
    "question_th": "ผู้ดำรงตำแหน่งพรรคเดโมแครตที่ได้รับเลือกใหม่เข้ามาดำรงตำแหน่งครั้งแรกในปีใด",
    "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ø\"",
    "question_en": "what is the year built of  kyrkjebø?",
    "question_th": "kyrkjebø สร้างปีไหน?",
    "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_en": "WHAT IS THE SUB-PARISH WITH A YEAR AFTER 1916, IN  ortnevik?",
    "question_th": "ตำบลย่อยในหนึ่งปีหลังจากปี 1916 ในออร์ทเนวิคคืออะไร?",
    "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_en": "What is the To par of the Player who won in 1936?",
    "question_th": "To par ของผู้เล่นที่ชนะในปี 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_en": "What is the Player who won in 1931?",
    "question_th": "ผู้เล่นที่ชนะในปี 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_en": "What is the Total for the Player who won in 1922, 1932?",
    "question_th": "ยอดรวมสำหรับผู้เล่นที่ชนะในปี 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_en": "What is the Total for the Player who won in 1936?",
    "question_th": "ผลรวมของผู้เล่นที่ชนะในปี 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_en": "What is the Finish of the Player with a To par of 23 of less and Total of 294?",
    "question_th": "การจบสกอร์ของผู้เล่นโดยมีพาร์ถึง 23 น้อยกว่าและรวม 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_en": "What season has a Level of 2nd, 29 points?",
    "question_th": "ฤดูกาลใดมีเลเวล 2 มี 29 แต้ม?",
    "context": "CREATE TABLE table_name_84 (season VARCHAR, level VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT SUM(points) FROM table_name_98 WHERE goals = \"29–30\"",
    "question_en": "What is the number of points when goals were 29–30?",
    "question_th": "เมื่อประตูอยู่ที่ 29–30 ได้กี่แต้ม?",
    "context": "CREATE TABLE table_name_98 (points INTEGER, goals VARCHAR)"
  },
  {
    "answer": "SELECT level FROM table_name_43 WHERE points > 25 AND goals = \"64–31\"",
    "question_en": "What is the level when points are larger than 25, and goals are 64–31?",
    "question_th": "ระดับใดที่คะแนนมากกว่า 25 และเป้าหมายคือ 64–31",
    "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_en": "Engine 2.5 20v d has what engine code?",
    "question_th": "เครื่อง 2.5 20v d มีรหัสเครื่องยนต์อะไรครับ?",
    "context": "CREATE TABLE table_name_46 (engine VARCHAR)"
  },
  {
    "answer": "SELECT cyl FROM table_name_1 WHERE engine = \"2.3 16v\"",
    "question_en": "Engine 2.3 16v has how many cylinders?",
    "question_th": "เครื่อง 2.3 16v มีกี่สูบครับ?",
    "context": "CREATE TABLE table_name_1 (cyl VARCHAR, engine VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_93 WHERE opponent = \"milwaukee bucks\"",
    "question_en": "Which Record has an Opponent of milwaukee bucks?",
    "question_th": "บันทึกใดมีฝ่ายตรงข้ามของเหรียญมิลวอกี?",
    "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–79\"",
    "question_en": "Which Record has a Location/Attendance of ford center, a Game larger than 30, and a Score of 87–79?",
    "question_th": "สถิติใดมีตำแหน่ง/การเข้าร่วมของฟอร์ดเซ็นเตอร์ เกมที่มากกว่า 30 คะแนน และคะแนน 87–79",
    "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_en": "Which Game has an Opponent of @ houston rockets?",
    "question_th": "เกมใดมีฝ่ายตรงข้ามของ @ houston rockets?",
    "context": "CREATE TABLE table_name_22 (game INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT streak FROM table_name_27 WHERE score = \"98–109\"",
    "question_en": "Which Streak has a Score of 98–109?",
    "question_th": "สตรีคใดมีคะแนน 98–109",
    "context": "CREATE TABLE table_name_27 (streak VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_name_13 WHERE opponent = \"@ washington wizards\"",
    "question_en": "Which Game has an Opponent of @ washington wizards?",
    "question_th": "เกมใดมีฝ่ายตรงข้ามของ @ washington Wizards?",
    "context": "CREATE TABLE table_name_13 (game VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT streak FROM table_name_9 WHERE record = \"21–22\"",
    "question_en": "Which Streak has a Record of 21–22?",
    "question_th": "สตรีคใดมีสถิติ 21–22",
    "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_en": "What was the outcome on 11 October 2009, when his partner was Jordan Kerr?",
    "question_th": "ผลลัพธ์เมื่อวันที่ 11 ตุลาคม พ.ศ. 2552 เมื่อคู่หูของเขาคือ จอร์แดน เคอร์ คืออะไร?",
    "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_en": "On what surface did he play with Stephen Huss on 31 October 2010?",
    "question_th": "เขาเล่นกับ Stephen Huss บนพื้นที่ใดในวันที่ 31 ตุลาคม พ.ศ. 2553?",
    "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_en": "What's was the 2008 during the Year End Ranking?",
    "question_th": "การจัดอันดับสิ้นปี 2551 คืออะไร?",
    "context": "CREATE TABLE table_name_44 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2010 FROM table_name_45 WHERE 2011 = \"q2\"",
    "question_en": "What's the 2010 when Q2 happened in 2011?",
    "question_th": "ไตรมาสที่ 2 ปี 2010 เกิดขึ้นในปี 2011 คืออะไร",
    "context": "CREATE TABLE table_name_45 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2008 FROM table_name_5 WHERE 2009 = \"1r\"",
    "question_en": "What's the 2008 when 1R happened in 2009?",
    "question_th": "2008 คืออะไรเมื่อ 1R เกิดขึ้นในปี 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_en": "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\"?",
    "question_th": "ค่าต่ำสุดสำหรับโอลิมปิกคืออะไร เมื่อลูกเรือมากกว่า 1 เมื่อ OG แรกคือหลังปี 1948 และเมื่อคลาสคือ \"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_en": "What is the country associated with the date in 2003?",
    "question_th": "ประเทศใดเกี่ยวข้องกับวันที่ในปี 2546?",
    "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_en": "What is the format for UK catalog S 63795?",
    "question_th": "แคตตาล็อก UK 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_en": "What is the date for US catalog CK 9942?",
    "question_th": "แคตตาล็อก US 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_en": "What is the label for catalog EMB 31956?",
    "question_th": "ป้ายชื่อแค็ตตาล็อก EMB 31956 คืออะไร",
    "context": "CREATE TABLE table_name_14 (label VARCHAR, catalog VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_48 WHERE label = \"cbs\"",
    "question_en": "What is the date for CBS label?",
    "question_th": "ป้าย CBS วันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_48 (date VARCHAR, label VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_57 WHERE constituency_number = \"16\"",
    "question_en": "Where is constituency number 16?",
    "question_th": "เขตเลือกตั้งหมายเลข 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_en": "Which Elevator has Elevated of april 12, 1281, a Nationality of french, and an Elector of jean cholet?",
    "question_th": "ลิฟต์ตัวใดที่ได้รับการยกระดับเมื่อวันที่ 12 เมษายน 1281 มีสัญชาติฝรั่งเศส และผู้มีสิทธิเลือกตั้งของฌอง โชเลต์",
    "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_en": "Which Elevated has an Elector of matteo orsini rosso?",
    "question_th": "Elevated คนไหนมีผู้มีสิทธิเลือกของ 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_en": "Which Elector has a Title of s. cecilia?",
    "question_th": "ผู้มีสิทธิเลือกตั้งคนใดมีตำแหน่งเป็น ส. เซซิเลีย?",
    "context": "CREATE TABLE table_name_1 (elector VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT elevator FROM table_name_29 WHERE title = \"bishop of palestrina\"",
    "question_en": "Which Elevator has a Title of bishop of palestrina?",
    "question_th": "ลิฟต์ใดมีตำแหน่งบิชอปแห่งปาเลสเตรนา",
    "context": "CREATE TABLE table_name_29 (elevator VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT order FROM table_name_68 WHERE nationality = \"ese milan\"",
    "question_en": "Which Order has a Nationality of ese milan?",
    "question_th": "ออร์เดอร์ใดมีสัญชาติของเอซี มิลาน",
    "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_en": "Which Elector has an Order of cardinal-priest, and a Nationality of french?",
    "question_th": "ผู้มีสิทธิเลือกตั้งคนใดมีเครื่องราชอิสริยาภรณ์พระคาร์ดินัลและมีสัญชาติฝรั่งเศส",
    "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_en": "How many foundeds have sousse as the city, with a capacity greater than 25,000?",
    "question_th": "มีผู้ก่อตั้งกี่แห่งที่มีซูสส์เป็นเมืองที่มีความจุมากกว่า 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_en": "What is the lowest founded that has bizerte athletic f.c. as the club?",
    "question_th": "สโมสรที่ก่อตั้งต่ำที่สุดที่มีบิเซอร์เต้ แอธเลติก เอฟซี เป็นสโมสรคืออะไร?",
    "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_en": "How many foundeds have stade tunisien as the club, with a capacity greater than 18,000?",
    "question_th": "มีผู้ก่อตั้งกี่แห่งที่มีตูนิเซียนเป็นสโมสร โดยจุคนได้มากกว่า 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_en": "How much capacity has 1944 as the founded?",
    "question_th": "ก่อตั้งเมื่อปี พ.ศ. 2487 มีความจุเท่าใด?",
    "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_en": "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?",
    "question_th": "จำนวนเกมทั้งหมดเป็นเท่าใด เมื่อแพ้มากกว่า 6 เมื่อคลับคือ \"Club Sportif Sfaxien\" และเมื่อชนะน้อยกว่า 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_en": "What is the lowest Games, when Wins is less than 1, and when Draws is greater than 1?",
    "question_th": "เกมที่ต่ำที่สุดคืออะไร เมื่อชนะน้อยกว่า 1 และเมื่อเสมอมากกว่า 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_en": "What is the average Draws, when Losses is greater than 9, and when Wins is greater than 9?",
    "question_th": "ค่าเฉลี่ยเสมอเมื่อแพ้มากกว่า 9 และเมื่อชนะมากกว่า 9 คืออะไร?",
    "context": "CREATE TABLE table_name_70 (draws INTEGER, losses VARCHAR, wins VARCHAR)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_36 WHERE 2007 = \"558\"",
    "question_en": "What is the 2011 entry for the row with a 2007 entry of 558?",
    "question_th": "รายการปี 2011 สำหรับแถวที่มีรายการปี 2007 เป็น 558 คืออะไร",
    "context": "CREATE TABLE table_name_36 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2010 FROM table_name_35 WHERE 2009 = \"270\"",
    "question_en": "What is the 2010 entry for the row that has a 2009 entry of 270?",
    "question_th": "รายการปี 2010 สำหรับแถวที่มีรายการปี 2009 เป็น 270 คืออะไร",
    "context": "CREATE TABLE table_name_35 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2009 FROM table_name_94 WHERE 2007 = \"a\" AND tournament = \"us open\"",
    "question_en": "What is the 2009 entry for the row that has a 2007 entry of A and a tournament entry of US Open?",
    "question_th": "รายการปี 2009 สำหรับแถวที่มีรายการ A ปี 2007 และรายการทัวร์นาเมนต์ US Open คืออะไร",
    "context": "CREATE TABLE table_name_94 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2008 FROM table_name_32 WHERE 2011 = \"1r\"",
    "question_en": "What is the 2008 entry for the row that as a 2011 entry of 1R?",
    "question_th": "รายการปี 2008 สำหรับแถวที่เป็นรายการปี 2011 ของ 1R คืออะไร?",
    "context": "CREATE TABLE table_name_32 (Id VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_99 WHERE player = \"lanny wadkins\"",
    "question_en": "What is the To par for Lanny Wadkins?",
    "question_th": "To par สำหรับ 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_en": "What is Australia's highest total?",
    "question_th": "ผลรวมสูงสุดของออสเตรเลียคือเท่าไร?",
    "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_en": "What country has a to par larger than 5 and a player John Mahaffey?",
    "question_th": "ประเทศใดที่มีพาร์มากกว่า 5 และผู้เล่น 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_en": "Which Total has a Year(s) won of 1991?",
    "question_th": "ผลรวมใดที่ชนะในปี 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_en": "Which Year(s) won with a To par of 12?",
    "question_th": "ปีไหนชนะด้วยพาร์ 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_en": "Which To par has a Player of jack nicklaus, and a Total smaller than 146?",
    "question_th": "พาร์ใดที่มีผู้เล่นของแจ็ค นิคลอส และผลรวมน้อยกว่า 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_en": "What average points for highers has 0 has points for ordinary, and Ng as the grade, and less than 0 as points for foundation?",
    "question_th": "คะแนนเฉลี่ยสำหรับผู้ที่สูงกว่านั้นคือ 0 คะแนนสำหรับสามัญ และ Ng เป็นเกรด และน้อยกว่า 0 เป็นคะแนนสำหรับพื้นฐาน",
    "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_en": "What is the maximum points for higher when the points for foundation is less than 0?",
    "question_th": "แต้มสูงสุดสำหรับตำแหน่งที่สูงกว่าเมื่อแต้มสำหรับรองพื้นน้อยกว่า 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_en": "With 10 as the points for foundation, what is the maximum points for ordinary?",
    "question_th": "มี 10 คะแนนสำหรับรองพื้น แล้วคะแนนสูงสุดสำหรับรุ่นธรรมดาคือเท่าไร?",
    "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_en": "What is the Country of the Player with a Score of 66-72-70-69=277?",
    "question_th": "ประเทศของผู้เล่นที่มีคะแนน 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_en": "What is the sum of a grid for driver Patrick Carpentier and less than 103 laps?",
    "question_th": "ผลรวมของตารางสำหรับนักแข่ง Patrick Carpentier และน้อยกว่า 103 รอบเป็นเท่าใด",
    "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_en": "What team has 0 points and a contact tired/retired, and 71 laps?",
    "question_th": "ทีมใดมี 0 คะแนนและมีผู้ติดต่อเหนื่อย/เกษียณ และ 71 รอบ?",
    "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_en": "What is the sum of lap for the Dale Coyne Racing Team, and 0 points?",
    "question_th": "ผลรวมรอบของทีม Dale Coyne Racing เป็นเท่าไหร่ และ 0 คะแนน?",
    "context": "CREATE TABLE table_name_8 (laps INTEGER, team VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT MIN(laps) FROM table_name_29 WHERE points > 16",
    "question_en": "What is the lowest number of laps with more than 16 points?",
    "question_th": "รอบต่ำสุดที่เกิน 16 แต้มคือเท่าไร?",
    "context": "CREATE TABLE table_name_29 (laps INTEGER, points INTEGER)"
  },
  {
    "answer": "SELECT team FROM table_name_70 WHERE laps = 104 AND grid = 10",
    "question_en": "What team has 104 laps and a grid of 10?",
    "question_th": "ทีมใดมี 104 รอบและมีตาราง 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_en": "Which year had e34 Nimzo-Indian defence is the opening?",
    "question_th": "ปีไหนที่การป้องกัน e34 Nimzo-Indian จะเปิดตัว?",
    "context": "CREATE TABLE table_name_81 (year VARCHAR, opening VARCHAR)"
  },
  {
    "answer": "SELECT AVG(quantity) FROM table_name_40 WHERE number_s_ = \"1104\"",
    "question_en": "What is the average quantity that has 1104 as the number(s)?",
    "question_th": "ปริมาณเฉลี่ยที่มี 1104 เป็นตัวเลขคือเท่าใด",
    "context": "CREATE TABLE table_name_40 (quantity INTEGER, number_s_ VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_26 WHERE quantity = 5",
    "question_en": "What type has 5 as the quantity?",
    "question_th": "ประเภทใดมี 5 เป็นปริมาณ",
    "context": "CREATE TABLE table_name_26 (type VARCHAR, quantity VARCHAR)"
  },
  {
    "answer": "SELECT years FROM table_name_44 WHERE player = \"alvin mitchell\"",
    "question_en": "What years did Alvin Mitchell play?",
    "question_th": "Alvin Mitchell เล่นกี่ปี?",
    "context": "CREATE TABLE table_name_44 (years VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_63 WHERE team = \"1970s\"",
    "question_en": "Who is the player on a team from the 1970s?",
    "question_th": "ใครคือผู้เล่นในทีมจากปี 1970?",
    "context": "CREATE TABLE table_name_63 (player VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_39 WHERE player = \"oliver dobbins\"",
    "question_en": "What team does Oliver Dobbins play for?",
    "question_th": "Oliver Dobbins เล่นให้กับทีมใด?",
    "context": "CREATE TABLE table_name_39 (team VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_54 WHERE tournament = \"mallorca 2, spain\"",
    "question_en": "Who was the opponent in the mallorca 2, spain tournament?",
    "question_th": "คู่ต่อสู้ในทัวร์นาเมนต์มายอร์ก้า 2 สเปนคือใคร?",
    "context": "CREATE TABLE table_name_54 (opponent VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_7 WHERE opponent = \"varvara lepchenko\"",
    "question_en": "When was varvara lepchenko the opponent?",
    "question_th": "วาร์วารา เลปเชนโก้เป็นคู่ต่อสู้เมื่อใด?",
    "context": "CREATE TABLE table_name_7 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_71 WHERE total = 288",
    "question_en": "For the total of 288 what was the to par?",
    "question_th": "สำหรับสกอร์ทั้งหมด 288 พาร์คืออะไร?",
    "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_en": "What year did the United States win with a total of 278?",
    "question_th": "สหรัฐอเมริกาชนะในปีใดด้วยคะแนนรวม 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_en": "What was the lowest total with a finish of t47?",
    "question_th": "ผลรวมต่ำสุดเมื่อจบ t47 คืออะไร?",
    "context": "CREATE TABLE table_name_88 (total INTEGER, finish VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_97 WHERE total > 288",
    "question_en": "What is the to par when the total is larger than 288?",
    "question_th": "อะไรคือพาร์เมื่อผลรวมมากกว่า 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_en": "What is the rank for total less than 5, 1 bronze and less than 1 silver?",
    "question_th": "คะแนนรวมน้อยกว่า 5, 1 เหรียญทองแดง และน้อยกว่า 1 เหรียญเงิน มีอันดับเท่าไหร่?",
    "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_en": "What is the most possible bronze medals when rank is more than 11 and there are fewer than 0 gold medals?",
    "question_th": "เหรียญทองแดงที่เป็นไปได้มากที่สุดเมื่อมีอันดับมากกว่า 11 และมีเหรียญทองน้อยกว่า 0 คืออะไร?",
    "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_en": "What is the least total when there are more than 2 golds and fewer than 0 silver?",
    "question_th": "ผลรวมน้อยที่สุดเมื่อมีมากกว่า 2 เหรียญทองและน้อยกว่า 0 เงินคืออะไร?",
    "context": "CREATE TABLE table_name_6 (total INTEGER, gold VARCHAR, silver VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_39 WHERE record = \"2-4\"",
    "question_en": "Which visitor has a record of 2-4?",
    "question_th": "ผู้เข้าชมคนไหนมีสถิติ 2-4?",
    "context": "CREATE TABLE table_name_39 (visitor VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_81 WHERE date = \"april 28\"",
    "question_en": "What is the record on April 28?",
    "question_th": "บันทึกเมื่อวันที่ 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_en": "What is the score for the Chicago Black Hawks game with a record of 2-1?",
    "question_th": "เกมชิคาโก้ แบล็ก ฮอว์กส์ ด้วยสกอร์ 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_en": "What's the latest year with a hometown of san carlos, pangasinan?",
    "question_th": "ปีล่าสุดกับบ้านเกิดของซานคาร์ลอส ปังกาซินันคือปีไหน?",
    "context": "CREATE TABLE table_name_50 (year INTEGER, hometown VARCHAR)"
  },
  {
    "answer": "SELECT other_awards FROM table_name_77 WHERE year = 1995",
    "question_en": "What are the other awards for 1995?",
    "question_th": "รางวัลอื่นๆ ในปี 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_en": "What's the latest year that daisy garcia reyes did not place in miss world?",
    "question_th": "ล่าสุดเดซี่ การ์เซีย เรเยส ไม่ได้เข้าประกวดมิสเวิลด์คือปีไหน?",
    "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_en": "Which venue had an against smaller than 7?",
    "question_th": "สนามใดมีแต้มต่อน้อยกว่า 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_en": "What day was Australia the opposing team and the against 12?",
    "question_th": "ออสเตรเลียเป็นทีมตรงข้ามและเจอ 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_en": "What day was Wales the opposing team?",
    "question_th": "เวลส์เป็นทีมตรงข้ามวันไหน?",
    "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_en": "What is the amount of money with a score of 67-71-70-71=279?",
    "question_th": "จำนวนเงินเท่าไหร่ที่มีคะแนน 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_en": "What is Dave Rummells's to par?",
    "question_th": "Dave Rummells จะพาร์ได้เท่าไร?",
    "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_en": "What is the to par number with a score of 67-66-71-71=275?",
    "question_th": "เลข to par ที่มีคะแนน 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_en": "What country is Steve Jones from?",
    "question_th": "สตีฟ โจนส์ มาจากประเทศอะไร",
    "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_en": "Who was the opponent of Anand in the match with 20 moves that opened with E15 Queen's Indian Defence?",
    "question_th": "คู่ต่อสู้ของอานันท์คือใครในแมตช์ด้วย 20 กระบวนท่าที่เปิดด้วย 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_en": "What is Points, when Points For is \"points for\"?",
    "question_th": "Points คืออะไร เมื่อ Points For คือ \"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_en": "What is Drawn, when Played is \"18\", and when Points Against is \"478\"?",
    "question_th": "Drawn คืออะไร เมื่อเล่นคือ \"18\" และเมื่อแต้มต่อคือ \"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_en": "What is Points For, when Losing Bonus is \"2\", when Lost is \"8\", and when Club is \"Rhyl And District RFC\"?",
    "question_th": "คะแนนมีไว้เพื่ออะไร เมื่อโบนัสที่แพ้คือ \"2\" เมื่อแพ้คือ \"8\" และเมื่อคลับคือ \"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_en": "What is Lost, when Points For is \"205\"?",
    "question_th": "อะไรหายไป เมื่อคะแนนสำหรับคือ \"205\"",
    "context": "CREATE TABLE table_name_16 (lost VARCHAR, points_for VARCHAR)"
  },
  {
    "answer": "SELECT played FROM table_name_81 WHERE tries_against = \"63\"",
    "question_en": "What is Played, when Tries Against is \"63\"?",
    "question_th": "จะเล่นอะไรเมื่อ Tries Against คือ \"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_en": "What is Try Bonus, when Tries For is \"39\"?",
    "question_th": "Try Bonus คืออะไร เมื่อ Tries For คือ \"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_en": "What Week 2 has a Week 4 of piret aava?",
    "question_th": "สัปดาห์ที่ 2 มีสัปดาห์ที่ 4 ของ 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_en": "What Week 2 has a Week 3 of casey mae?",
    "question_th": "สัปดาห์ที่ 2 มีสัปดาห์ที่ 3 ของ 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_en": "What Week 2 has a Week 1 of crystal beddows?",
    "question_th": "สัปดาห์ที่ 2 มีเตียงคริสตัลในสัปดาห์ที่ 1 หรือไม่?",
    "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_en": "What Week 3 has a Week 4 of gina blair?",
    "question_th": "สัปดาห์ที่ 3 มีสัปดาห์ที่ 4 ของจีน่า แบลร์?",
    "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_en": "What Week 5 has a Week 1 of mysti sherwood?",
    "question_th": "สัปดาห์ที่ 5 มีสัปดาห์ที่ 1 ของ 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_en": "What Week 4 has a Week 2 of samantha speer?",
    "question_th": "สัปดาห์ที่ 4 มีสัปดาห์ที่ 2 ของ 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_en": "Which 2nd Party has a Election of 1857?",
    "question_th": "พรรคที่ 2 คนใดมีการเลือกตั้งในปี พ.ศ. 2400?",
    "context": "CREATE TABLE table_name_14 (election VARCHAR)"
  },
  {
    "answer": "SELECT 2 AS nd_party FROM table_name_17 WHERE election = \"1857\"",
    "question_en": "Which 2nd Party has a Election of 1857?",
    "question_th": "พรรคที่ 2 คนใดมีการเลือกตั้งในปี พ.ศ. 2400?",
    "context": "CREATE TABLE table_name_17 (election VARCHAR)"
  },
  {
    "answer": "SELECT 1 AS st_member FROM table_name_51 WHERE election = \"1832\"",
    "question_en": "which 1st Member has a Election of 1832",
    "question_th": "ซึ่งสมาชิกคนที่ 1 ได้รับการเลือกตั้งเมื่อ พ.ศ. 2375",
    "context": "CREATE TABLE table_name_51 (election VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_42 WHERE moving_from = \"treviso\" AND type = \"loan return\"",
    "question_en": "Who is moving from Treviso with a loan return?",
    "question_th": "ใครบ้างที่ย้ายจากเตรวิโซพร้อมคืนเงินกู้?",
    "context": "CREATE TABLE table_name_42 (name VARCHAR, moving_from VARCHAR, type VARCHAR)"
  },
  {
    "answer": "SELECT nat FROM table_name_9 WHERE name = \"acquafresca\"",
    "question_en": "What is the nationality of Acquafresca?",
    "question_th": "อควาเฟรสก้ามีสัญชาติอะไร?",
    "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_en": "What is the type if the transfer window is summer and the moving from category is free agent?",
    "question_th": "จะเป็นประเภทใดหากหน้าต่างการโอนคือฤดูร้อนและการย้ายจากหมวดหมู่เป็นตัวแทนอิสระ?",
    "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ão paulo\"",
    "question_en": "What is the transfer window for the moving from of São Paulo?",
    "question_th": "หน้าต่างการโอนสำหรับการย้ายจากเซาเปาโลคืออะไร?",
    "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_en": "What is the moving from with a transfer and the nationality of Bra?",
    "question_th": "การย้ายจากการโอนและสัญชาติของบราคืออะไร?",
    "context": "CREATE TABLE table_name_22 (moving_from VARCHAR, type VARCHAR, nat VARCHAR)"
  },
  {
    "answer": "SELECT ends FROM table_name_59 WHERE name = \"maaroufi\"",
    "question_en": "What is the end date for Maaroufi?",
    "question_th": "วันที่สิ้นสุดของ Maaroufi คือเมื่อใด",
    "context": "CREATE TABLE table_name_59 (ends VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_40 WHERE date = \"october 2, 1966\"",
    "question_en": "The game played on October 2, 1966 had what result?",
    "question_th": "แมตช์ที่เล่นเมื่อวันที่ 2 ต.ค. 66 มีผลเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_40 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_18 WHERE date = \"october 9, 1966\"",
    "question_en": "Who was the game played against on October 9, 1966?",
    "question_th": "เกมนี้เล่นกับใครในวันที่ 9 ตุลาคม พ.ศ. 2509?",
    "context": "CREATE TABLE table_name_18 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(week) FROM table_name_13 WHERE attendance = \"69,372\"",
    "question_en": "What is the maximum week that 69,372 people attended the game?",
    "question_th": "สัปดาห์สูงสุดที่มีคนเข้าร่วมเกม 69,372 คนคือสัปดาห์ใด?",
    "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_en": "What is the date of the game played after week 4 with 60,658 people in attendance?",
    "question_th": "วันที่ของเกมเล่นหลังจากสัปดาห์ที่ 4 โดยมีผู้เข้าร่วม 60,658 คนคือวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_28 (date VARCHAR, week VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT SUM(capacity) FROM table_name_21 WHERE city = \"trogir\"",
    "question_en": "What is the total capacity for the city of Trogir?",
    "question_th": "ความจุรวมของเมือง 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_en": "What party established in 1797 won an election in 2007?",
    "question_th": "พรรคใดที่ก่อตั้งในปี พ.ศ. 2340 ชนะการเลือกตั้งในปี พ.ศ. 2550",
    "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_en": "What Played has a Lost smaller than 3, and a Drawn smaller than 0?",
    "question_th": "สิ่งที่เล่นไปแล้วมีค่าแพ้น้อยกว่า 3 และเสมอน้อยกว่า 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_en": "What is the largest % Won with a Lost smaller than 0?",
    "question_th": "% ชนะที่ใหญ่ที่สุดและแพ้น้อยกว่า 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_en": "What is the total of Against with % Won larger than 100?",
    "question_th": "ผลรวมของ Against ที่มี % ชนะมากกว่า 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_en": "What is the smallest Against with Lost larger than 0, % Won larger than 50, and Played smaller than 5?",
    "question_th": "อะไรคือสิ่งที่น้อยที่สุด Against โดยแพ้มากกว่า 0, % ชนะมากกว่า 50 และเล่นน้อยกว่า 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_en": "What is the Lost with Against smaller than 25, and Played smaller than 1?",
    "question_th": "อะไรคือ Lost with Against ที่น้อยกว่า 25 และเล่นน้อยกว่า 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_en": "What is the largest height when the prominence is 3,118?",
    "question_th": "ความสูงที่ใหญ่ที่สุดเมื่อมีความโดดเด่นคือ 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_en": "What is the Tie number of when Wigan Athletic was the away team?",
    "question_th": "ตอนที่วีแกน แอธเลติกเป็นทีมเยือนเสมอกันคือเท่าไร?",
    "context": "CREATE TABLE table_name_34 (tie_no VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_51 WHERE tie_no = \"6\"",
    "question_en": "Name the team with a tie number of 6.",
    "question_th": "ตั้งชื่อทีมด้วยเลข 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_en": "What ship was built by Palmers Shipbuilding and Iron Company for the Royal Navy?",
    "question_th": "เรือลำใดที่ถูกสร้างขึ้นโดย Palmers Shipbuilding and Iron Company สำหรับกองทัพเรือ",
    "context": "CREATE TABLE table_name_81 (ship VARCHAR, country VARCHAR, builder VARCHAR)"
  },
  {
    "answer": "SELECT class___type FROM table_name_32 WHERE location = \"trieste\"",
    "question_en": "What is the class/type at Trieste?",
    "question_th": "ชั้นเรียน/ประเภทที่ 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_en": "What is the country of Palmers Shipbuilding and Iron Company?",
    "question_th": "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_en": "In what country is Aberdeen?",
    "question_th": "อเบอร์ดีนอยู่ประเทศอะไร?",
    "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_en": "Which Number of households has a Median household income of $32,806, and a Population larger than 11,291?",
    "question_th": "จำนวนครัวเรือนใดที่มีรายได้เฉลี่ยของครัวเรือนอยู่ที่ 32,806 ดอลลาร์ และมีประชากรมากกว่า 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_en": "Which County has a Median household income of $37,230?",
    "question_th": "เคาน์ตีใดมีรายได้เฉลี่ยของครัวเรือนอยู่ที่ $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_en": "Which Population has a County of mississippi, and a Number of households smaller than 17,741?",
    "question_th": "ประชากรใดมีเทศมณฑลมิสซิสซิปปี้ และมีจำนวนครัวเรือนน้อยกว่า 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_en": "Count the average Height which has a Position of pf, and a Year born (Age) on april 1, 1981 (age32)?",
    "question_th": "นับส่วนสูงเฉลี่ยที่มีตำแหน่ง pf และปีที่เกิด (อายุ) ในวันที่ 1 เมษายน 1981 (อายุ 32 ปี) หรือไม่?",
    "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_en": "Which Height has a Position of c, and a Player of yiannis bourousis?",
    "question_th": "ความสูงใดมีตำแหน่งเป็น c และผู้เล่นของ yiannis borousis?",
    "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–6, 6–4, 7–5\"",
    "question_en": "Which Outcome has a Score in the final of 1–6, 6–4, 7–5?",
    "question_th": "ผลลัพธ์ใดมีคะแนนในรอบสุดท้าย 1–6, 6–4, 7–5?",
    "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–6, 5–7\"",
    "question_en": "Which Outcome has a Score in the final of 4–6, 5–7?",
    "question_th": "ผลลัพธ์ใดมีคะแนนในรอบสุดท้าย 4–6, 5–7?",
    "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_en": "Which Opponents in the final has a Partner of olga lugina?",
    "question_th": "คู่ต่อสู้คนใดในรอบชิงชนะเลิศมีคู่หูของ 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–6, 1–6\"",
    "question_en": "Which Outcome has a Score in the final of 3–6, 1–6?",
    "question_th": "ผลลัพธ์ใดมีคะแนนในรอบสุดท้าย 3–6, 1–6?",
    "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_en": "What rank is He Yingqin who was born before 1890?",
    "question_th": "He Yingqin เกิดก่อนปี 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_en": "What year is the death for a birth of 1873 and higher than rank 28?",
    "question_th": "เสียชีวิตปี พ.ศ. 2416 และสูงกว่าอันดับ 28 ปีใด?",
    "context": "CREATE TABLE table_name_74 (death VARCHAR, birth VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_6 WHERE death = \"2001\"",
    "question_en": "What is the name with a death in 2001?",
    "question_th": "ชื่อผู้เสียชีวิตในปี 2544 คืออะไร?",
    "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_en": "What is the 1st round result for ECAC Chaumont (D2) as team 1?",
    "question_th": "ผลการแข่งขันรอบที่ 1 ของ ECAC Chaumont (D2) ในฐานะทีม 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_en": "Which team 1 played against team 2 of Tours FC (D2)?",
    "question_th": "ทีมใด 1 เล่นกับทีม 2 ของ 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_en": "Which is team 2 when team 1 is ECAC Chaumont (d2)?",
    "question_th": "ทีมไหนคือ 2 ในเมื่อทีม 1 คือ 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_en": "Which Written by has a Code of 1.2 1.3?",
    "question_th": "ซึ่งเขียนโดยมีรหัส 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_en": "What is the highest crude death rate when deaths are 3 433 and average population is greater than 298?",
    "question_th": "อัตราการเสียชีวิตอย่างหยาบสูงสุดเมื่อมีผู้เสียชีวิตคือ 3,433 คนและจำนวนประชากรเฉลี่ยมากกว่า 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_en": "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?",
    "question_th": "มีการเกิดมีชีพกี่รายที่มีอัตราการเกิดอย่างหยาบมากกว่า 15.7 ประชากรโดยเฉลี่ยน้อยกว่า 297 คน และเสียชีวิตอยู่ที่อัล 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_en": "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?",
    "question_th": "อะไรคือการเปลี่ยนแปลงระดับชาติที่อัตราการเกิดอย่างหยาบน้อยกว่า 11.4 อัตราการเสียชีวิตอย่างหยาบมากกว่า 12.1 และการเสียชีวิตอยู่ที่ 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_en": "What is the average population when deaths are 3 557 and crude death date is less than 11.9?",
    "question_th": "ประชากรเฉลี่ยเมื่อเสียชีวิตอยู่ที่ 3,557 คน และวันที่เสียชีวิตอย่างหยาบน้อยกว่า 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_en": "In what week(s) did the Broncos go up against the Cleveland Browns?",
    "question_th": "Broncos พบกับ 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_en": "What week was the December 24, 1994 game?",
    "question_th": "เกมวันที่ 24 ธันวาคม 1994 คือสัปดาห์ใด?",
    "context": "CREATE TABLE table_name_78 (week INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_98 WHERE round < 3",
    "question_en": "Which Nationality has a Round smaller than 3?",
    "question_th": "สัญชาติใดมีรอบน้อยกว่า 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_en": "Which Position has a Round larger than 4, and a Player of patrick johnson?",
    "question_th": "ตำแหน่งใดที่มีรอบมากกว่า 4 และเป็นผู้เล่นของ 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_en": "Which Nationality has a Round of 4?",
    "question_th": "สัญชาติใดมีรอบ 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_en": "Which Player has a Round smaller than 4, and a College/junior/club team (league) of usa u-18?",
    "question_th": "ผู้เล่นคนใดที่มีรอบที่เล็กกว่า 4 และทีมวิทยาลัย/จูเนียร์/สโมสร (ลีก) ของสหรัฐอเมริกา 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_en": "What team 2 has lokomotiva as team 1?",
    "question_th": "ทีม 2 ไหนมีโลโคโมติวาเป็นทีม 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_en": "What team 1 has sloga jugomagnat as team 2?",
    "question_th": "ทีม 1 ไหนมีสโลแกน jugomagnat เป็นทีม 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_en": "What 2nd leg has pelister as team 1?",
    "question_th": "ขาที่ 2 ใดมี Pelister เป็นทีมที่ 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_en": "What 1st leg has 11 oktomvri as team 2?",
    "question_th": "เลก 1 ไหนมี 11 ออคตอมฟริ เป็นทีม 2?",
    "context": "CREATE TABLE table_name_78 (team_2 VARCHAR)"
  },
  {
    "answer": "SELECT SUM(against) FROM table_name_39 WHERE date = \"15/10/1999\"",
    "question_en": "What is the total against on 15/10/1999?",
    "question_th": "ยอดรวมเทียบกับวันที่ 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_en": "What status is on 21/08/1999?",
    "question_th": "วันที่ 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_en": "What opposing teams playing on 11/04/1999?",
    "question_th": "ทีมตรงข้ามทีมใดที่เล่นในวันที่ 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_en": "What co-singer has sukhwinder singh as the composer?",
    "question_th": "นักร้องร่วมคนไหนมี sukhwinder singh เป็นผู้แต่ง?",
    "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_en": "What is the away when the home is 3-2, and the season is 1959-60?",
    "question_th": "ทีมเยือนเป็นอย่างไรบ้างเมื่อเจ้าบ้านเป็น 3-2 และฤดูกาล 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_en": "What team has a league of bundesliga, and an away of 3-2?",
    "question_th": "ทีมใดมีลีกบุนเดสลีกา และทีมเยือน 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_en": "What teams has a home of 5-0?",
    "question_th": "ทีมไหนมีสกอร์ 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_en": "What teams has a home of 1-0, in the season 1988-89?",
    "question_th": "ทีมใดมีเจ้าบ้าน 1-0 ในฤดูกาล 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_en": "What is the score of player brian watts, who has a to par of 5?",
    "question_th": "นักเตะ ไบรอัน วัตต์ ใครได้พาร์ 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_en": "What is the highest to par of player len mattiace, who has a t7 place and a score of 73-74=147?",
    "question_th": "อะไรคือพาร์สูงสุดของผู้เล่น เลน มัตติอาซ ที่มีอันดับ 7 และคะแนน 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_en": "What is the place of the player from the United States with a score of 74-72=146?",
    "question_th": "ผู้เล่นจากสหรัฐอเมริกามีคะแนน 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_en": "What country has a 76-71=147 score?",
    "question_th": "ประเทศใดมีคะแนน 76-71=147 คะแนน",
    "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_en": "What is the most draws when less than 154 goals were conceded, and less than 36 games played?",
    "question_th": "อะไรคือผลเสมอมากที่สุดเมื่อเสียประตูน้อยกว่า 154 ประตู และลงเล่นน้อยกว่า 36 เกม?",
    "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_en": "What is the maximum goals score with less than 13 wins, greater than 86 goals were conceded, and more than 32 games lost?",
    "question_th": "คะแนนสูงสุดที่ชนะน้อยกว่า 13 ครั้ง เสียมากกว่า 86 ประตู และแพ้มากกว่า 32 เกม คือเท่าไร?",
    "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_en": "How many games have been played when there are 13 wins and 45 goals were conceded?",
    "question_th": "มีการเล่นไปกี่เกมแล้วที่ชนะ 13 นัดและเสียไป 45 ประตู?",
    "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_en": "What is Character Kerry Vincent's Tenure?",
    "question_th": "การดำรงตำแหน่งของตัวละคร Kerry Vincent คืออะไร?",
    "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_en": "What Rodger Corser Episode has a Rank of senior sergeant?",
    "question_th": "Rodger Corser Episode ใดมียศจ่าอาวุโส?",
    "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_en": "What Character has a Rank of intelligence officer?",
    "question_th": "ตัวละครใดมียศเป็นเจ้าหน้าที่ข่าวกรอง?",
    "context": "CREATE TABLE table_name_3 (character VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_2 WHERE tenure = \"2011\"",
    "question_en": "What is the Rank of the Character with Tenure of 2011?",
    "question_th": "อันดับของตัวละครที่มีการดำรงตำแหน่งในปี 2554 คืออะไร?",
    "context": "CREATE TABLE table_name_2 (rank VARCHAR, tenure VARCHAR)"
  },
  {
    "answer": "SELECT actor_actress FROM table_name_88 WHERE tenure = \"2008–2011\" AND character = \"stella dagostino\"",
    "question_en": "What Actor/Actress a Tenure of 2008–2011 played Stella Dagostino?",
    "question_th": "นักแสดง/นักแสดงคนไหนที่ดำรงตำแหน่งในปี 2551-2554 รับบทเป็น 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_en": "What is Jolene Anderson's Rank?",
    "question_th": "อันดับของ Jolene Anderson คืออะไร?",
    "context": "CREATE TABLE table_name_52 (rank VARCHAR, actor_actress VARCHAR)"
  },
  {
    "answer": "SELECT neon FROM table_name_89 WHERE argon = \"4.203\"",
    "question_en": "What neon has an Argon of 4.203?",
    "question_th": "นีออนใดมีอาร์กอนเท่ากับ 4.203",
    "context": "CREATE TABLE table_name_89 (neon VARCHAR, argon VARCHAR)"
  },
  {
    "answer": "SELECT krypton FROM table_name_18 WHERE argon = \"20.85\"",
    "question_en": "What krypton has an argon of 20.85?",
    "question_th": "คริปทอนใดมีอาร์กอนเท่ากับ 20.85",
    "context": "CREATE TABLE table_name_18 (krypton VARCHAR, argon VARCHAR)"
  },
  {
    "answer": "SELECT argon FROM table_name_51 WHERE neon = \"10.5\"",
    "question_en": "What argon has a neon of 10.5?",
    "question_th": "อาร์กอนใดมีนีออนเท่ากับ 10.5",
    "context": "CREATE TABLE table_name_51 (argon VARCHAR, neon VARCHAR)"
  },
  {
    "answer": "SELECT neon FROM table_name_61 WHERE krypton = \"213\"",
    "question_en": "What neon has a krypton of 213?",
    "question_th": "นีออนใดมีคริปทอนเท่ากับ 213",
    "context": "CREATE TABLE table_name_61 (neon VARCHAR, krypton VARCHAR)"
  },
  {
    "answer": "SELECT argon FROM table_name_54 WHERE helium = \"1.0000684\"",
    "question_en": "Wha argon has helium of 1.0000684?",
    "question_th": "อาร์กอนชนิดใดมีฮีเลียม 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_en": "What was the date of the victory when the Axis Unit was 5./jg 3?",
    "question_th": "วันที่ชัยชนะเมื่อ Axis Unit อยู่ที่ 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_en": "What was the date of the victory when the Soviet Unit was 73 giap, and the Enemy Aircraft was bf.109g-? w.nr.?",
    "question_th": "วันที่ได้รับชัยชนะเมื่อหน่วยโซเวียตอยู่ที่ 73 giap และเครื่องบินของศัตรูอยู่ที่ bf.109g-? เลขที่?",
    "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_en": "What was the aircraft flown when the axis unit was luftwaffe (**) and the enemy aircraft was ju.88?",
    "question_th": "เครื่องบินลำใดที่บินเมื่อหน่วยแกนเป็นกองทัพ (**) และเครื่องบินข้าศึกอยู่ที่ 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_en": "What was the enemy aircraft on 14.09.1942, when the Soviet Unit was 437 iap?",
    "question_th": "เครื่องบินศัตรูคืออะไรในวันที่ 14.09.1942 เมื่อหน่วยโซเวียตอยู่ที่ 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_en": "What Reserved for (SC / ST /None) with a Name of goverdhan?",
    "question_th": "สิ่งที่สงวนไว้สำหรับ (SC / ST /ไม่มี) ด้วยชื่อ 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_en": "What Number of electorates (2009) has a District of mathura, and a Name of mant?",
    "question_th": "จำนวนผู้มีสิทธิเลือกตั้ง (2552) มีเขตของ Mathura และชื่อของ 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_en": "What is the largest Number of electorates (2009) with a Constituency number of total:?",
    "question_th": "จำนวนผู้มีสิทธิ์เลือกตั้งที่ใหญ่ที่สุด (2009) มีจำนวนเขตเลือกตั้งทั้งหมดคือเท่าใด:?",
    "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_en": "Which inhabitants have 2009 as the election, with cremona as the municipality?",
    "question_th": "ประชาชนคนใดที่มีการเลือกตั้งในปี 2552 โดยมีเครโมนาเป็นเทศบาล",
    "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_en": "Which inhabitants have lega lombarda as the party, with an election greater than 2010?",
    "question_th": "พลเมืองคนใดที่มี Lega Lombarda เป็นพรรค โดยมีการเลือกตั้งมากกว่าปี 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_en": "What is the lowest election that has cinisello balsamo as the municipality?",
    "question_th": "การเลือกตั้งต่ำสุดที่มี cinisello balsamo เป็นเทศบาลคืออะไร?",
    "context": "CREATE TABLE table_name_4 (election INTEGER, municipality VARCHAR)"
  },
  {
    "answer": "SELECT AVG(election) FROM table_name_30 WHERE municipality = \"monza\"",
    "question_en": "What is the average election that has monza as the municipality?",
    "question_th": "การเลือกตั้งโดยเฉลี่ยที่มี Monza เป็นเทศบาลเป็นเท่าใด?",
    "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_en": "Whate place has 18 points with lost less than 8?",
    "question_th": "สถานที่ใดมี 18 แต้ม แพ้น้อยกว่า 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_en": "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?",
    "question_th": "ค่าเฉลี่ยการแพ้สำหรับอันดับน้อยกว่า 10 น้อยกว่า 23 แต้ม และเสียประตูน้อยกว่า 26 สำหรับทีมชอร์ริลโลคือเท่าไร?",
    "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_en": "When goals conceded is greater than 17 with 37 points, what is the greatest played?",
    "question_th": "เมื่อเสียประตูมากกว่า 17 มี 37 แต้ม เล่นลูกไหนเก่งที่สุด?",
    "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_en": "What is the total points for a place less than 2 with a played greater than 18?",
    "question_th": "คะแนนรวมสำหรับสถานที่น้อยกว่า 2 และเล่นมากกว่า 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_en": "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?",
    "question_th": "เมื่อประตูที่ทำได้มากกว่า 18 ประตู เสมอน้อยกว่า 4 ประตู และเสียประตูมากกว่า 24 ประตู ผลรวมของการเล่นเป็นเท่าใด",
    "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_en": "What is the total rank for New Zealand, when less than 1 bronze medals were won?",
    "question_th": "อันดับรวมของนิวซีแลนด์เมื่อได้รับเหรียญทองแดงน้อยกว่า 1 เหรียญอยู่ที่เท่าไร?",
    "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_en": "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?",
    "question_th": "ผลรวมเหรียญเงินเมื่อมี 2 เหรียญทอง รวมน้อยกว่า 15 เหรียญ และอันดับมากกว่า 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_en": "What is the total rank for the Netherlands when more than 2 silver medals were won?",
    "question_th": "อันดับรวมของเนเธอร์แลนด์เมื่อได้รับเหรียญเงินมากกว่า 2 เหรียญคือเท่าใด",
    "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_en": "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?",
    "question_th": "เมื่อมีมากกว่า 1 เหรียญทอง และมากกว่า 2 เหรียญเงิน และอันดับน้อยกว่า 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_en": "What is the average medal total when the rank is less than 5 and less than 7 bronze medals were won?",
    "question_th": "เมื่ออันดับน้อยกว่า 5 และน้อยกว่า 7 เหรียญทองแดงได้รับเหรียญรางวัลโดยเฉลี่ยเป็นเท่าใด?",
    "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_en": "Who did Tony Oakey win against when he had type of w pts 12?",
    "question_th": "Tony Oakey ชนะใครเมื่อเขามีแต้ม 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_en": "What was Tony Oakey's Rd., Time when he fought against hastings rasani?",
    "question_th": "Tony Oakey's Rd. คืออะไร เวลาที่เขาต่อสู้กับ 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_en": "What is the Position of the Player with a Height of 2.11?",
    "question_th": "ตำแหน่งผู้เล่นที่มีส่วนสูง 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_en": "What is the Current Club of the PG/SG player with a Height of less than 1.9500000000000002?",
    "question_th": "สโมสรปัจจุบันของผู้เล่น PG/SG ที่มีส่วนสูงน้อยกว่า 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_en": "What is the Position of the Player from the Toronto Raptors?",
    "question_th": "ตำแหน่งผู้เล่นจาก 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_en": "What Elected has Assembled of 23 january 1559?",
    "question_th": "สิ่งที่ได้รับการเลือกตั้งได้รวบรวมไว้ในวันที่ 23 มกราคม พ.ศ. 2102?",
    "context": "CREATE TABLE table_name_44 (elected VARCHAR, assembled VARCHAR)"
  },
  {
    "answer": "SELECT assembled FROM table_name_30 WHERE elected = \"1562/63\"",
    "question_en": "What Assembled has Elected of 1562/63?",
    "question_th": "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_en": "Which shooter was the olympic bronze medalist?",
    "question_th": "นักกีฬาคนไหนเป็นผู้ชนะเลิศเหรียญทองแดงโอลิมปิก?",
    "context": "CREATE TABLE table_name_75 (shooter VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_31 WHERE total = \"29\"",
    "question_en": "What event did the shooter, who had 29 total points, compete in?",
    "question_th": "นักกีฬาที่มีคะแนนรวม 29 แต้มลงแข่งขันในรายการใด",
    "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_en": "Who got 13 score points at wc kerrville?",
    "question_th": "ใครได้ 13 คะแนนที่ WC เคอร์วิลล์?",
    "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_en": "What event did the shooter, who had 10 score points, compete in?",
    "question_th": "นักกีฬาที่มีคะแนน 10 คะแนนลงแข่งขันในรายการใด",
    "context": "CREATE TABLE table_name_81 (event VARCHAR, score_points VARCHAR)"
  },
  {
    "answer": "SELECT mark FROM table_name_84 WHERE athlete = \"tatyana lebedeva\"",
    "question_en": "Which Mark has an Athlete of tatyana lebedeva?",
    "question_th": "มาร์คคนไหนมีนักกีฬาของทัตยานา เลเบเดวา?",
    "context": "CREATE TABLE table_name_84 (mark VARCHAR, athlete VARCHAR)"
  },
  {
    "answer": "SELECT mark FROM table_name_17 WHERE athlete = \"heike drechsler\"",
    "question_en": "Which Mark has an Athlete of heike drechsler?",
    "question_th": "มาร์คคนไหนมีนักกีฬาของไฮเก เดรชสเลอร์?",
    "context": "CREATE TABLE table_name_17 (mark VARCHAR, athlete VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_3 WHERE venue = \"bucharest\"",
    "question_en": "Which Date has a Venue of bucharest?",
    "question_th": "วันไหนมีสถานที่บูคาเรสต์?",
    "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_en": "Which Goals For has a Team of congleton town, and a Lost larger than 11?",
    "question_th": "เป้าหมายใดที่มีทีมจากเมืองคองเกิลตัน และทีมที่แพ้มากกว่า 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_en": "Which Goal Difference has Drawn larger than 10, and a Team of lancaster city?",
    "question_th": "ผลต่างประตูใดที่เสมอได้มากกว่า 10 และทีมแลงคาสเตอร์ซิตี้?",
    "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_en": "What date was the 200m breaststroke event?",
    "question_th": "กิจกรรมกบ 200 เมตร จัดขึ้นวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_53 (date VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_26 WHERE event = \"50m freestyle\"",
    "question_en": "What time was the 50m freestyle event?",
    "question_th": "ฟรีสไตล์ 50 เมตร จัดขึ้นกี่โมง?",
    "context": "CREATE TABLE table_name_26 (time VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT meet FROM table_name_56 WHERE event = \"400m individual medley\"",
    "question_en": "What meet had a 400m individual medley meet?",
    "question_th": "การพบกันแบบใดที่มีการพบกันแบบผสมเดี่ยว 400 ม.",
    "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_en": "How much Total has a Player of todd hamilton, and a To par smaller than 15?",
    "question_th": "Total มีผู้เล่นของ todd hamilton เท่าไหร่ และ To par น้อยกว่า 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_en": "Which Year(s) won has a Total larger than 295?",
    "question_th": "ปีไหนที่ชนะมีคะแนนรวมมากกว่า 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_en": "Which Country has a Finish of t32, and a Year(s) won of 1996?",
    "question_th": "ประเทศใดเข้าเส้นชัยที่ t32 และชนะในปี 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ádraig harrington\"",
    "question_en": "How many totals does pádraig harrington have?",
    "question_th": "ปาดราก แฮร์ริงตัน มีทั้งหมดกี่ตัว?",
    "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_en": "What is the highest to par with a place of t8 and West Germany as the country?",
    "question_th": "อะไรคือจุดสูงสุดที่เทียบเท่ากับสถานที่ t8 และเยอรมนีตะวันตกในฐานะประเทศ?",
    "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_en": "Who was the player for England when the to par is 7?",
    "question_th": "ใครคือนักเตะทีมชาติอังกฤษเมื่อพาร์ถึง 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_en": "Who was the player for Japan when the to par was smaller than 7?",
    "question_th": "ใครคือผู้เล่นของทีมญี่ปุ่นเมื่อพาร์น้อยกว่า 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_en": "What is the average to par for a score of 78-67-73=218?",
    "question_th": "ค่าเฉลี่ยพาร์สำหรับคะแนน 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_en": "What did Sam Torrance score?",
    "question_th": "แซม ทอร์รันซ์ทำคะแนนได้เท่าไหร่?",
    "context": "CREATE TABLE table_name_49 (score VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT year_s__won FROM table_name_71 WHERE total = 289",
    "question_en": "Which Year(s) won has a Total of 289?",
    "question_th": "ปีใดที่ชนะมีคะแนนรวม 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_en": "Which country has a Year(s) won in 1964?",
    "question_th": "ประเทศใดมีปีที่ชนะในปี 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_en": "Which year al geiberger is in?",
    "question_th": "อัล ไกเบอร์เกอร์อยู่ปีไหนคะ?",
    "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_en": "Which To par has a Year(s) won of 1964?",
    "question_th": "พาร์ใดที่ชนะในปี 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_en": "Which Total has a Finish of t59?",
    "question_th": "ผลรวมใดที่มีการจบการแข่งขันที่ 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_en": "which To par has a Country of united states, and a Player of dave stockton?",
    "question_th": "Topar ใดมีประเทศสหรัฐอเมริกาและมีผู้เล่นของ 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_en": "Which player has $450 and a score of 76-74-74-72=296?",
    "question_th": "ผู้เล่นคนไหนมีเงิน $450 และคะแนน 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_en": "Who is the 1st member of the parliament assembled on 5 April 1614?",
    "question_th": "สมาชิกสภาผู้แทนราษฎรคนที่ 1 ที่มาประชุมเมื่อวันที่ 5 เมษายน พ.ศ. 2157 คือใคร?",
    "context": "CREATE TABLE table_name_41 (assembled VARCHAR)"
  },
  {
    "answer": "SELECT assembled FROM table_name_60 WHERE dissolved = \"9 february 1611\" AND elected = \"1606\"",
    "question_en": "What is the assembled date of the parliament dissolved on 9 February 1611 and elected in 1606?",
    "question_th": "รัฐสภายุบวันที่ 9 กุมภาพันธ์ พ.ศ. 2154 และได้รับการเลือกตั้งเมื่อ พ.ศ. 2149 เมื่อใด",
    "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_en": "Who is the 1st member elected in 1620/21?",
    "question_th": "สมาชิกคนที่ 1 ได้รับเลือกในปี 1620/21 คือใคร?",
    "context": "CREATE TABLE table_name_82 (elected VARCHAR)"
  },
  {
    "answer": "SELECT assembled FROM table_name_47 WHERE elected = \"1620/21\"",
    "question_en": "What is the assembled date of the parliament elected in 1620/21?",
    "question_th": "รัฐสภาได้รับการเลือกตั้งเมื่อใดคือวันที่ 1620/21?",
    "context": "CREATE TABLE table_name_47 (assembled VARCHAR, elected VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_68 WHERE against > 22",
    "question_en": "What's the statue for an against above 22?",
    "question_th": "อะไรคือรูปปั้นสำหรับการต่อต้านมากกว่า 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_en": "What's the status for an against below 22 with an opposing team of Australia?",
    "question_th": "สถานะการต่อทีมที่อายุต่ำกว่า 22 ปีกับทีมตรงข้ามของออสเตรเลียเป็นอย่างไร?",
    "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_en": "What's the against on 17/01/1976?",
    "question_th": "ความขัดแย้งในวันที่ 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_en": "Which ranking has money of $82 and Al Watrous as the player?",
    "question_th": "อันดับไหนมีเงิน $82 และมี Al Watrous เป็นผู้เล่น?",
    "context": "CREATE TABLE table_name_64 (place VARCHAR, money___$__ VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_89 WHERE player = \"jock hutchison\"",
    "question_en": "What is the score for Jock Hutchison?",
    "question_th": "จ็อค ฮัทชิสัน สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_89 (score VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MIN(to_par) FROM table_name_9 WHERE player = \"bobby cruickshank\"",
    "question_en": "What is the lowest par for Bobby Cruickshank?",
    "question_th": "พาร์ต่ำสุดของ Bobby Cruickshank คือเท่าไร?",
    "context": "CREATE TABLE table_name_9 (to_par INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_69 WHERE to_par = \"–1\"",
    "question_en": "What is the Country of the Player with a To par of –1?",
    "question_th": "ประเทศของผู้เล่นที่มีพาร์ถึง –1 คืออะไร?",
    "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_en": "Which is the highest Rd 1 has a Province of utrecht and a Rd 4 larger than 0?",
    "question_th": "ถนนสายใดที่สูงที่สุด 1 มีจังหวัดอูเทรคต์และถนน 4 ใหญ่กว่า 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_en": "What Rd 3 has a Rd 2 1 of 0+1?",
    "question_th": "หมู่ที่ 3 ใดมีหมู่ที่ 2 1 ของ 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_en": "Which Position has Goals against larger than 32, and points larger than 30?",
    "question_th": "ตำแหน่งใดที่มีประตูมากกว่า 32 และแต้มมากกว่า 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_en": "How many Points have Goals against of 35, and less than 13 losses?",
    "question_th": "มีคะแนนกี่คะแนนจาก 35 คะแนนและแพ้น้อยกว่า 13 ครั้ง",
    "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_en": "How many points have Goals for smaller than 33, and Draws larger than 9?",
    "question_th": "มีกี่คะแนนสำหรับเป้าหมายที่น้อยกว่า 33 และเสมอมากกว่า 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_en": "Which Goal Difference has 13 Wins, and a Position of 3, and Played smaller than 30?",
    "question_th": "ผลต่างประตูใดที่ชนะ 13 ครั้ง และอันดับ 3 และเล่นน้อยกว่า 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_en": "On which date was the opponent ireland and the status Five Nations?",
    "question_th": "ไอร์แลนด์ของคู่ต่อสู้และสถานะ 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_en": "Which venue had a status of five nations, an against larger than 12 and took place on 15/02/1975?",
    "question_th": "สนามใดมีสถานะเป็น 5 ชาติ เทียบกับ 12 ชาติที่ใหญ่กว่า และเกิดขึ้นเมื่อวันที่ 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_en": "WHat status had an against larger than 6 and a date of 01/02/1975?",
    "question_th": "สถานะใดมีมากกว่า 6 และวันที่ 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_en": "What is the highest week for the San Diego Chargers with an attendance that is less than 53,455?",
    "question_th": "สัปดาห์ใดคือสัปดาห์ที่สูงที่สุดสำหรับ San Diego Chargers โดยมีผู้เข้าชมน้อยกว่า 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_en": "What is the highest attendance for December 3, 1972 after week 12?",
    "question_th": "ผู้เข้าร่วมสูงสุดในวันที่ 3 ธันวาคม พ.ศ. 2515 หลังจากสัปดาห์ที่ 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_en": "What is Score, when Competition is \"ECQG5\", and when Venue is \"Hampden Park , Glasgow (H)\"?",
    "question_th": "คะแนนคืออะไร เมื่อการแข่งขันคือ \"ECQG5\" และเมื่อสถานที่คือ \"Hampden Park , กลาสโกว์ (เหย้า)\"",
    "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_en": "What is Score, when Competition is \"Friendly\", and when Date is \"30 April\"?",
    "question_th": "คะแนนคืออะไร เมื่อการแข่งขันเป็นแบบ \"กระชับมิตร\" และวันที่คือ \"30 เมษายน\"",
    "context": "CREATE TABLE table_name_46 (score VARCHAR, competition VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_45 WHERE date = \"7 september\"",
    "question_en": "What is Venue, when Date is \"7 September\"?",
    "question_th": "Venue คืออะไร เมื่อเป็นวันที่ \"7 กันยายน\"?",
    "context": "CREATE TABLE table_name_45 (venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_65 WHERE goals = 33",
    "question_en": "What was the nationality for the player with 33 goals?",
    "question_th": "นักเตะที่ยิงได้ 33 ประตู สัญชาติอะไร?",
    "context": "CREATE TABLE table_name_65 (nationality VARCHAR, goals VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_13 WHERE ranking = \"3\"",
    "question_en": "What was the nationality of the player ranking 3?",
    "question_th": "ผู้เล่นอันดับที่ 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_en": "What is the total population of the district of Klang, with an area larger than 636?",
    "question_th": "อำเภอแกลงซึ่งมีพื้นที่มากกว่า 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_en": "Which Fate has a Tonnage of 7,217?",
    "question_th": "ชะตากรรมใดมีระวางน้ำหนัก 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_en": "Which Fate has a Nationality of united kingdom, and a Tonnage of 1,809?",
    "question_th": "โชคชะตาใดมีสัญชาติเป็นสหราชอาณาจักร และหนัก 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_en": "Name Nationality is on 6 july 1942?",
    "question_th": "ชื่อ สัญชาติ คือ วันที่ 6 กรกฎาคม พ.ศ. 2485?",
    "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_en": "Name Tonnage on 27 september 1941 and a Ship of hmsspringbank?",
    "question_th": "ตั้งชื่อระวางน้ำหนักเมื่อวันที่ 27 กันยายน พ.ศ. 2484 และเรือของ 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_en": "Which Tonnage is on 25 july 1942?",
    "question_th": "น้ำหนักบรรทุกใดในวันที่ 25 กรกฎาคม พ.ศ. 2485?",
    "context": "CREATE TABLE table_name_66 (tonnage VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_38 WHERE player = \"leo diegel\"",
    "question_en": "What place is player leo diegel?",
    "question_th": "ผู้เล่น ลีโอ ดีเจล อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_38 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT money___$__ FROM table_name_62 WHERE player = \"horton smith\"",
    "question_en": "How much money does player horton smith have?",
    "question_th": "นักเตะ ฮอร์ตัน สมิธ มีเงินเท่าไหร่?",
    "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_en": "How much money does the player with a score of 74-71-76-76=297 have?",
    "question_th": "ผู้เล่นที่มีคะแนน 74-71-76-76=297 มีเงินเท่าไหร่?",
    "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_en": "What is the sum of the to par with a 76-77-74-75=302 score?",
    "question_th": "ผลรวมของพาร์กับคะแนน 76-77-74-75=302 เป็นเท่าใด",
    "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_en": "Who is the player with a t8 place and a 74-74-76-77=301 score?",
    "question_th": "ใครคือผู้เล่นอันดับ 8 และคะแนน 74-74-76-77=301?",
    "context": "CREATE TABLE table_name_16 (player VARCHAR, place VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_66 WHERE to_par = 14",
    "question_en": "What country has a 14 to par?",
    "question_th": "ประเทศใดมีพาร์ 14 พาร์?",
    "context": "CREATE TABLE table_name_66 (country VARCHAR, to_par VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_18 WHERE home_team = \"millwall\"",
    "question_en": "What is the score if Millwall is the Home Team?",
    "question_th": "ถ้ามิลล์วอลล์เป็นเจ้าบ้านจะได้สกอร์เท่าไหร่?",
    "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_en": "What is the Away team with Newcastle United as the Home team?",
    "question_th": "ทีมเยือนมีนิวคาสเซิลยูไนเต็ดเป็นทีมเหย้าคืออะไร?",
    "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_en": "What is the Score on 27 Jan 1990 with an Away Team of Queens Park Rangers?",
    "question_th": "คะแนนเมื่อวันที่ 27 ม.ค. 1990 กับทีมเยือน ควีนส์ปาร์ค เรนเจอร์ส เป็นอย่างไร?",
    "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_en": "If the Away Team is Arsenal what is the Score?",
    "question_th": "ถ้าทีมเยือนคืออาร์เซน่อล สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_47 (score VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_9 WHERE record = \"4-1\"",
    "question_en": "What is the score for 4-1?",
    "question_th": "สกอร์ 4-1 เป็นยังไงบ้าง?",
    "context": "CREATE TABLE table_name_9 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT population FROM table_name_75 WHERE status = \"rural community\"",
    "question_en": "What is the Population of the Rural Community",
    "question_th": "ประชากรในชุมชนชนบทคืออะไร",
    "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_en": "What is the Area km 2 with a Census Ranking of 1,773 of 5,008?",
    "question_th": "พื้นที่ กม. 2 ที่มีอันดับการสำรวจสำมะโนประชากร 1,773 จาก 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_en": "With an Area km 2 of less than 130.68, what is McAdam's Population?",
    "question_th": "ด้วยพื้นที่กิโลเมตรที่ 2 น้อยกว่า 130.68 ประชากรของแมคอดัมคือเท่าใด",
    "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_en": "Which home had a record of 2-4?",
    "question_th": "บ้านไหนมีสถิติ 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_en": "Who was the visitor for Chicago Black Hawks on May 6?",
    "question_th": "ใครคือแขกของ Chicago Black Hawks ในวันที่ 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_en": "What day was the visitor Chicago Black Hawks and the record 0-2?",
    "question_th": "ผู้มาเยือน ชิคาโก แบล็ค ฮอว์กส์ และสถิติ 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_en": "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?",
    "question_th": "จำนวนยกทั้งหมดด้วยวิธีการส่ง (ล็อคข้อเท้า) ตำแหน่งโตเกียว ญี่ปุ่น และสถิติ 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_en": "Which Nation has Silver smaller than 16, Bronze larger than 6, and Gold of 2?",
    "question_th": "ประเทศใดมีเงินน้อยกว่า 16 เหรียญทองแดงมากกว่า 6 และทอง 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_en": "Which Gold has a Nation of south korea (kor), and Bronze smaller than 65?",
    "question_th": "ทองคำใดมีประเทศเกาหลีใต้ (kor) และทองแดงน้อยกว่า 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_en": "Which Total has Gold of 2?",
    "question_th": "ผลรวมใดมีทองเท่ากับ 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_en": "Which Total has Gold smaller than 12, and a Nation of hong kong (hkg)?",
    "question_th": "ยอดรวมใดที่มีทองคำน้อยกว่า 12 และประเทศฮ่องกง (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_en": "Which Gold has a Total of 721?",
    "question_th": "ทองคำใดมีทั้งหมด 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_en": "What is the 2007-08 season at Stadio Silvio Piola?",
    "question_th": "ฤดูกาล 2007-08 ที่สตาดิโอ ซิลวิโอ ปิโอลาคืออะไร?",
    "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_en": "What is the To par of the T6 Place Player with a Score of 68-69-70=207?",
    "question_th": "ค่าพาร์ของผู้เล่นอันดับ T6 ที่มีคะแนน 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_en": "What is the Country of the T8 Place Player with a Score of 70-67-71=208?",
    "question_th": "ผู้เล่นอันดับ T8 คือประเทศใดที่มีคะแนน 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_en": "What is Peter Jacobsen's Place?",
    "question_th": "สถานที่ของ Peter Jacobsen คืออะไร?",
    "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_en": "What is the To par of the Player with a Score of 71-69-68=208?",
    "question_th": "ค่าพาร์ของผู้เล่นที่มีคะแนน 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_en": "What is the To par of the Player from Argentina?",
    "question_th": "ค่าพาร์ของผู้เล่นจากอาร์เจนตินาคือเท่าไร?",
    "context": "CREATE TABLE table_name_39 (to_par VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT MIN(points) FROM table_name_41 WHERE wins < 2",
    "question_en": "which Points has Wins smaller than 2?",
    "question_th": "คะแนนใดที่มีชัยชนะน้อยกว่า 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_en": "Which Wins has a Draws smaller than 3, and Points of 26?",
    "question_th": "ชัยชนะใดที่มีการเสมอน้อยกว่า 3 และแต้ม 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_en": "Which Games played has a Points of 6, and Goals scored larger than 12?",
    "question_th": "เกมใดที่เล่นมีคะแนน 6 และประตูที่ทำได้มากกว่า 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_en": "Which Goals scored has Points larger than 26 and Wins larger than 11?",
    "question_th": "ประตูใดที่ทำคะแนนได้มากกว่า 26 และชนะมากกว่า 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_en": "Which Loses has Points smaller than 6?",
    "question_th": "การแพ้ใดมีคะแนนน้อยกว่า 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_en": "Which Goals conceded has Points of 6 and Draws larger than 0?",
    "question_th": "ประตูใดที่เสียไปมีแต้ม 6 และเสมอมากกว่า 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_en": "What round did the spartak moscow club play?",
    "question_th": "สปาร์ตัก มอสโก คลับ เล่นรอบไหน?",
    "context": "CREATE TABLE table_name_12 (round VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(wickets) FROM table_name_8 WHERE average = 26.13",
    "question_en": "What is the total number of Wickets with a 26.13 average?",
    "question_th": "วิคเก็ตเฉลี่ย 26.13 มีทั้งหมดกี่ประตู?",
    "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_en": "What is the total rank for player Delyone Borden with more than 15 wickets?",
    "question_th": "อันดับรวมของผู้เล่น Delyone Borden ที่มีประตูมากกว่า 15 ประตูคือเท่าไร?",
    "context": "CREATE TABLE table_name_71 (rank INTEGER, player VARCHAR, wickets VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(wickets) FROM table_name_22 WHERE rank > 5",
    "question_en": "What are the total number of Wickets that ranger higher than 5?",
    "question_th": "จำนวนวิกเก็ตทั้งหมดที่เรนเจอร์สูงกว่า 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_en": "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?",
    "question_th": "อาชีพอะไรที่มีอันดับสูงกว่า 1 โดยมีค่าเฉลี่ยน้อยกว่า 36.13 และ 15 ประตู และผู้เล่นอย่าง 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_en": "What is the highest rank for less than 15 Wickets?",
    "question_th": "อันดับสูงสุดสำหรับน้อยกว่า 15 ประตูคืออะไร?",
    "context": "CREATE TABLE table_name_22 (rank INTEGER, wickets INTEGER)"
  },
  {
    "answer": "SELECT grid FROM table_name_67 WHERE time = \"+0.180\"",
    "question_en": "What is the grid with a +0.180 time?",
    "question_th": "ตารางที่มีเวลา +0.180 คืออะไร?",
    "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_en": "What is the sum of laps of the honda cbr1000rr bike, which has a time of +16.569?",
    "question_th": "ผลรวมรอบของจักรยานยนต์ honda cbr1000rr ซึ่งมีเวลา +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_en": "What is the time of the honda cbr1000rr bike, which has less than 25 laps?",
    "question_th": "มอเตอร์ไซค์ honda cbr1000rr ที่วิ่งไม่ถึง 25 รอบออกตัวกี่โมง?",
    "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_en": "What date has a loan expires date of end of the season, and a Position of mf?",
    "question_th": "วันที่ใดที่เงินกู้จะหมดอายุในวันที่สิ้นสุดฤดูกาล และตำแหน่งของ 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_en": "What player that has a Position of df, and Loaned to is Stoke City?",
    "question_th": "นักเตะคนไหนที่ได้ตำแหน่ง DF และถูกยืมตัวคือสโต๊ค ซิตี้?",
    "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_en": "What loan expires date has a Date of 29 december 2003?",
    "question_th": "วันหมดอายุเงินกู้ใดคือวันที่ 29 ธันวาคม 2546?",
    "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_en": "What shows for loaned to when the loan expires end of the season, Francis Jeffers is the player?",
    "question_th": "อะไรแสดงให้เห็นการยืมตัวเมื่อหมดสัญญาสิ้นฤดูกาล ฟรานซิส เจฟเฟอร์ส เป็นผู้เล่น?",
    "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_en": "What player loaned to of Leeds United?",
    "question_th": "นักเตะคนไหนที่ลีดส์ ยูไนเต็ด ยืม?",
    "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_en": "What was the 1st leg when team 1 was apoel?",
    "question_th": "เลกแรกเมื่อทีม 1 เป็นอาโปเอลคืออะไร?",
    "context": "CREATE TABLE table_name_79 (team_1 VARCHAR)"
  },
  {
    "answer": "SELECT team_2 FROM table_name_9 WHERE team_1 = \"omonia\"",
    "question_en": "What was team 2 when team 1 was omonia?",
    "question_th": "ทีม 2 คืออะไร ในเมื่อทีม 1 เป็นโอโมเนีย?",
    "context": "CREATE TABLE table_name_9 (team_2 VARCHAR, team_1 VARCHAR)"
  },
  {
    "answer": "SELECT MIN(total) FROM table_name_12 WHERE nation = \"croatia\"",
    "question_en": "What was the lowest total of medals won by Croatia?",
    "question_th": "โครเอเชียได้รับเหรียญรางวัลรวมต่ำสุดเท่าไร?",
    "context": "CREATE TABLE table_name_12 (total INTEGER, nation VARCHAR)"
  },
  {
    "answer": "SELECT AVG(goals) FROM table_name_41 WHERE apps < 1",
    "question_en": "Which Goals have Apps smaller than 1?",
    "question_th": "เป้าหมายใดที่มีแอปที่เล็กกว่า 1",
    "context": "CREATE TABLE table_name_41 (goals INTEGER, apps INTEGER)"
  },
  {
    "answer": "SELECT national_team FROM table_name_6 WHERE year = \"total\"",
    "question_en": "Which National team has a Year of total?",
    "question_th": "ทีมชาติใดมีปีรวม?",
    "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_en": "How many Goals have a National team of england, and Apps smaller than 6, and a Year of 2012?",
    "question_th": "ทีมชาติอังกฤษและแอปที่มีขนาดเล็กกว่า 6 เป้าหมายมีกี่เป้าหมาย และในปี 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_en": "Which National team has a Club of arsenal, and Apps smaller than 4, and a Year of 2010?",
    "question_th": "ทีมชาติใดมีสโมสรคลังแสง และแอปที่เล็กกว่า 4 และปี 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_en": "Which champion has a Group Stage LLWS in Russellville?",
    "question_th": "แชมป์เปี้ยนคนไหนมี LLWS รอบแบ่งกลุ่มในรัสเซลวิลล์?",
    "context": "CREATE TABLE table_name_16 (champion VARCHAR, llws VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_85 WHERE year = 2008",
    "question_en": "What is the record of the champion in 2008?",
    "question_th": "บันทึกของแชมป์ในปี 2551 คืออะไร?",
    "context": "CREATE TABLE table_name_85 (record VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT nation FROM table_name_6 WHERE total > 5 AND rank = \"1\"",
    "question_en": "What nation was number 1 and had a total larger than 5?",
    "question_th": "ประเทศใดเป็นหมายเลข 1 และมียอดรวมมากกว่า 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_en": "How many bronzes had a rank of 10 and 0 gold?",
    "question_th": "มีกี่เหรียญทองแดงที่มีอันดับ 10 และ 0 เหรียญทอง?",
    "context": "CREATE TABLE table_name_9 (bronze INTEGER, rank VARCHAR, gold VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(gold) FROM table_name_72 WHERE bronze > 16",
    "question_en": "Hold many gold had more than 16 bronzes?",
    "question_th": "ถือทองมากมายมีมากกว่า 16 ทองสัมฤทธิ์เหรอ?",
    "context": "CREATE TABLE table_name_72 (gold VARCHAR, bronze INTEGER)"
  },
  {
    "answer": "SELECT MIN(gold) FROM table_name_14 WHERE silver > 16",
    "question_en": "What is the lowest amount of gold for more than 16 silver?",
    "question_th": "จำนวนทองคำต่ำสุดสำหรับเงินมากกว่า 16 เหรียญคือเท่าใด",
    "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_en": "What is the average population of the township having land of 35.666sqmi and GEO ID over 3807364500?",
    "question_th": "ประชากรโดยเฉลี่ยของเมืองที่มีที่ดิน 35.666 ตร.ม. และ GEO ID มากกว่า 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_en": "What is the average 2010 population having longitude over -102.353035, latitude over 46.937841, and 0.034 sqmi of water?",
    "question_th": "ประชากรปี 2010 โดยเฉลี่ยที่มีลองจิจูดมากกว่า -102.353035 ละติจูดมากกว่า 46.937841 และมีน้ำ 0.034 ตร.ไมล์ เป็นเท่าใด",
    "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_en": "What is the highest 2010 population having GEO ID of 3802763220 and longitude over -98.936777?",
    "question_th": "ประชากรสูงสุดในปี 2010 ที่มี GEO ID เท่ากับ 3802763220 และลองจิจูดมากกว่า -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_en": "What is the smallest amount of water having landmass over 34.864 sqmi, in Pierce township, with a GEO ID over 3800362460?",
    "question_th": "อะไรคือปริมาณน้ำที่น้อยที่สุดที่มีพื้นที่มากกว่า 34.864 ตร.ไมล์ ในเมืองเพียร์ซ โดยมี GEO ID มากกว่า 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_en": "Which Tally has a County of limerick, and a Rank larger than 1?",
    "question_th": "Tally ใดที่มีเขตปกครองของ limerick และมีอันดับมากกว่า 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_en": "Which Bronze has a Silver of 15, and a Total smaller than 54?",
    "question_th": "บรอนซ์ใดมีเงิน 15 และผลรวมน้อยกว่า 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_en": "How many Bronzes have a Rank of 9, and a Silver larger than 2?",
    "question_th": "มีเหรียญทองแดงกี่เหรียญที่มีอันดับ 9 และมีเหรียญเงินมากกว่า 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_en": "How many totals have a Silver of 40, and a Gold smaller than 39?",
    "question_th": "มีเงินทั้งหมด 40 และทองหนึ่งอันน้อยกว่า 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_en": "Who's the opponent with a time of 3:24?",
    "question_th": "คู่ต่อสู้ด้วยเวลา 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_en": "What's the record that had an opponent of Krzysztof Soszynski and a time of 4:00?",
    "question_th": "สถิติที่มีคู่ต่อสู้ของ Krzysztof Soszynski และเวลา 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_en": "What's the time of IFL: Championship Final?",
    "question_th": "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_en": "Which FA Cup Apps have League Apps of 21?",
    "question_th": "แอพ FA Cup ใดที่มีแอพ League จำนวน 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_en": "Which Name has a League Cup Goals of 0, and League Apps of 1?",
    "question_th": "ชื่อใดมีเป้าหมายในลีกคัพที่ 0 และแอปลีกที่ 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_en": "Which Total Goals have a League Cup Goals larger than 0, and FA Cup Goals larger than 0?",
    "question_th": "ประตูรวมใดที่มีประตูลีกคัพมากกว่า 0 และประตูเอฟเอคัพมากกว่า 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_en": "Which Total Goals have Total Apps of 42 (3), and League Goals smaller than 1?",
    "question_th": "เป้าหมายรวมใดที่มีแอปทั้งหมด 42 (3) และเป้าหมายลีกน้อยกว่า 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_en": "What is the lowest rank for the team that raced a time of 6:17.62 and a notes of sa/b?",
    "question_th": "อันดับต่ำสุดของทีมที่ทำเวลาได้ 6:17.62 และค่า 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_en": "What country has a rank of 3 and notes of r?",
    "question_th": "ประเทศใดมีอันดับ 3 และมีโน้ต 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_en": "What conference includes the Indians?",
    "question_th": "การประชุมใดรวมถึงชาวอินเดียด้วย?",
    "context": "CREATE TABLE table_name_40 (conference_joined VARCHAR, mascot VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_81 WHERE school = \"lakewood park christian\"",
    "question_en": "What is the location for Lakewood Park Christian?",
    "question_th": "ที่ตั้งของ Lakewood Park Christian อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_81 (location VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT county FROM table_name_81 WHERE mascot = \"bruins\"",
    "question_en": "Which county has the mascot of Bruins?",
    "question_th": "มณฑลใดมีตัวนำโชคของบรูอินส์?",
    "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_en": "Which school joined in 1971 and left in 1975?",
    "question_th": "โรงเรียนใดเข้าร่วมในปี 1971 และลาออกในปี 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_en": "Which IHSAA class A school are the Cavaliers from?",
    "question_th": "โรงเรียนคลาส A ของ IHSAA แห่งใดที่ Cavaliers มาจาก",
    "context": "CREATE TABLE table_name_38 (county VARCHAR, ihsaa_class VARCHAR, mascot VARCHAR)"
  },
  {
    "answer": "SELECT county FROM table_name_87 WHERE mascot = \"trojans\"",
    "question_en": "Which county do the Trojans come from?",
    "question_th": "โทรจันมาจากจังหวัดไหน?",
    "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_en": "What is the average ranking for a react of 0.17300000000000001 and less than 5 lanes?",
    "question_th": "อันดับเฉลี่ยสำหรับการตอบสนองที่ 0.17300000000000001 และน้อยกว่า 5 เลนคือเท่าใด",
    "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_en": "What was the 4th day in the year before 2012 that the finish is 33rd?",
    "question_th": "วันที่ 4 ของปีก่อนปี 2555 ที่จบวันที่ 33 คืออะไร?",
    "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_en": "What is the sum of gold medals won by teams that won 5 total medals and fewer than 2 bronze medals?",
    "question_th": "ผลรวมของเหรียญทองที่ทีมชนะได้ 5 เหรียญและน้อยกว่า 2 เหรียญทองแดงเป็นเท่าใด",
    "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_en": "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?",
    "question_th": "ผลรวมของเหรียญทองที่ทีมชนะน้อยกว่า 3 เหรียญเงิน มากกว่า 1 เหรียญ และอันดับที่ 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_en": "What nation won fewer than 14 total medals, 1 silver medal, and rank 5?",
    "question_th": "ประเทศใดได้รับเหรียญรางวัลรวมน้อยกว่า 14 เหรียญ เหรียญเงิน 1 เหรียญ และอันดับที่ 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_en": "Which IHSAA Football Class has an IHSAA Class of aa, and an Enrollment of 475?",
    "question_th": "IHSAA Football Class ใดที่มี IHSAA Class ที่ aa และมีการลงทะเบียน 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_en": "Which School has a Location of peru?",
    "question_th": "โรงเรียนใดมีที่ตั้งของประเทศเปรู",
    "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_en": "Which Mascot has an IHSAA Class of aaa, and a Location of russiaville?",
    "question_th": "มาสคอตตัวใดมีระดับ aaa ของ IHSAA และที่ตั้งของ 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_en": "Which IHSAA Class has a School of taylor?",
    "question_th": "ชั้นเรียน IHSAA ใดที่มี 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_en": "what is the date when the opponent is leeds united?",
    "question_th": "ฝ่ายตรงข้ามลีดส์ยูไนเต็ดคือวันไหน?",
    "context": "CREATE TABLE table_name_80 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_23 WHERE scorers = \"parkinson\"",
    "question_en": "what is the date when scorers is parkinson?",
    "question_th": "วันที่ผู้ทำประตูเป็นพาร์กินสันคือวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_23 (date VARCHAR, scorers VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_43 WHERE date = \"31 jul\"",
    "question_en": "who is the opponent on 31 jul?",
    "question_th": "คู่ต่อสู้วันที่ 31 ก.ค. คือใคร?",
    "context": "CREATE TABLE table_name_43 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_39 WHERE opponent = \"blackburn rovers\"",
    "question_en": "what is the result when the opponent is blackburn rovers?",
    "question_th": "ผลเป็นอย่างไรเมื่อคู่ต่อสู้เป็นแบล็คเบิร์น โรเวอร์ส?",
    "context": "CREATE TABLE table_name_39 (result VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_42 WHERE week = 6",
    "question_en": "What was the result on week 6?",
    "question_th": "สัปดาห์ที่ 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_en": "What is the sum on week against the Tampa Bay Buccaneers with less than 60,320 in attendance?",
    "question_th": "ผลรวมในสัปดาห์เทียบกับแทมปาเบย์บัคคาเนียร์สที่มีผู้เข้าร่วมน้อยกว่า 60,320 คนเป็นเท่าใด?",
    "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_en": "What is the highest week with a w 33-14 result?",
    "question_th": "สัปดาห์สูงสุดที่มีผล aw 33-14 คืออะไร?",
    "context": "CREATE TABLE table_name_38 (week INTEGER, result VARCHAR)"
  },
  {
    "answer": "SELECT netscape FROM table_name_45 WHERE firefox = \"21.67%\"",
    "question_en": "What percentage of users were using Netscape during the period in which 21.67% were using Firefox?",
    "question_th": "เปอร์เซ็นต์ของผู้ใช้ที่ใช้ Netscape ในช่วงที่ 21.67% ใช้ Firefox คืออะไร",
    "context": "CREATE TABLE table_name_45 (netscape VARCHAR, firefox VARCHAR)"
  },
  {
    "answer": "SELECT safari FROM table_name_3 WHERE opera = \"2.33%\"",
    "question_en": "What percentage of users were using Safari during the period in which 2.33% were using Opera?",
    "question_th": "เปอร์เซ็นต์ของผู้ใช้ที่ใช้ Safari ในช่วงที่ 2.33% ใช้ Opera คืออะไร",
    "context": "CREATE TABLE table_name_3 (safari VARCHAR, opera VARCHAR)"
  },
  {
    "answer": "SELECT netscape FROM table_name_54 WHERE internet_explorer = \"63.67%\"",
    "question_en": "What percentage of users were using Netscape during the period in which 63.67% were using Internet Explorer?",
    "question_th": "เปอร์เซ็นต์ของผู้ใช้ที่ใช้ Netscape ในช่วงที่ 63.67% ใช้ 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_en": "What percentage of users were using Firefox during the period in which *0.77% were using Netscape?",
    "question_th": "เปอร์เซ็นต์ของผู้ใช้ที่ใช้ Firefox ในช่วงที่ *0.77% ใช้ Netscape คืออะไร",
    "context": "CREATE TABLE table_name_8 (firefox VARCHAR, netscape VARCHAR)"
  },
  {
    "answer": "SELECT other_mozilla FROM table_name_97 WHERE opera = \"2.29%\"",
    "question_en": "What percentage of users were using other Mozilla browsers during the period in which 2.29% were using Opera?",
    "question_th": "เปอร์เซ็นต์ของผู้ใช้ที่ใช้เบราว์เซอร์ Mozilla อื่นในช่วงเวลาที่ 2.29% ใช้ 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_en": "What percentage of users were using Opera during the period in which 63.67% were using Internet Explorer?",
    "question_th": "เปอร์เซ็นต์ของผู้ใช้ที่ใช้ Opera ในช่วงที่ 63.67% ใช้ Internet Explorer คืออะไร",
    "context": "CREATE TABLE table_name_59 (opera VARCHAR, internet_explorer VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_57 WHERE entities = \"emsa\"",
    "question_en": "Which Country has Entities of emsa?",
    "question_th": "ประเทศใดมีหน่วยงานของ 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_en": "Which Power (MW) has a Voltage (kV) of 500, and a Country of argentina?",
    "question_th": "กำลังไฟฟ้าใด (MW) มีแรงดันไฟฟ้า (kV) 500 และประเทศอาร์เจนตินา",
    "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á\"",
    "question_en": "How much Voltage (kV) has a Country of argentina, and a Power (MW) larger than 30, and a Supply point of yacyretá?",
    "question_th": "แรงดันไฟฟ้า (kV) มีเท่าใดในประเทศอาร์เจนตินา และกำลัง (MW) มากกว่า 30 และจุดจ่ายของyacyretá",
    "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_en": "What is the lowest number for the english word Aquarius?",
    "question_th": "ตัวเลขต่ำสุดของคำภาษาอังกฤษ Aquarius คืออะไร?",
    "context": "CREATE TABLE table_name_32 (number INTEGER, western_name VARCHAR)"
  },
  {
    "answer": "SELECT sanskrit FROM table_name_98 WHERE greek = \"λέων\"",
    "question_en": "What is the Sanskrit for the Greek word λέων?",
    "question_th": "ภาษาสันสกฤตสำหรับคำภาษากรีก γέων คืออะไร?",
    "context": "CREATE TABLE table_name_98 (sanskrit VARCHAR, greek VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_69 WHERE home_team = \"wrexham\"",
    "question_en": "What date has wrexham as the home team?",
    "question_th": "เร็กซ์แฮมเป็นเจ้าบ้านวันไหน?",
    "context": "CREATE TABLE table_name_69 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_38 WHERE tie_no = \"7\"",
    "question_en": "What away team has 7 as the tie no.?",
    "question_th": "ทีมเยือนทีมใดมี 7 เสมอกัน?",
    "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_en": "What away team has wrexham as the home team?",
    "question_th": "ทีมเยือนทีมไหนมีเร็กซ์แฮมเป็นเจ้าบ้าน?",
    "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_en": "What home team has 6 as the tie no.?",
    "question_th": "ทีมเจ้าบ้านใดมี 6 เสมอกัน?",
    "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_en": "What was the kickoff time for the December 14, 2003 game?",
    "question_th": "เวลาคิกออฟของเกมวันที่ 14 ธันวาคม พ.ศ. 2546 คือเมื่อใด",
    "context": "CREATE TABLE table_name_82 (kickoff_time VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_33 WHERE nationality = \"zimbabwe\"",
    "question_en": "What is Zimbabwe's rank?",
    "question_th": "อันดับของซิมบับเวคืออะไร?",
    "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_en": "What is Meagen Nay's rank with a lane greater than 5?",
    "question_th": "อันดับของ Meagen Nay ที่มีเลนมากกว่า 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_en": "What is the debut year for the player with fewer than 54 games, fewer than 8 goals and 1989 at club?",
    "question_th": "ปีเปิดตัวของนักเตะที่ลงเล่นน้อยกว่า 54 เกม ทำได้น้อยกว่า 8 ประตู และปี 1989 กับสโมสรคือปีใด?",
    "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_en": "What are the years for the player with fewer than 62 goals, debut year of 1981 and 28 games?",
    "question_th": "นักเตะที่ทำประตูได้น้อยกว่า 62 ประตู ประเดิมสนามในปี 1981 และลงเล่น 28 เกมคือกี่ปี?",
    "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_en": "What is the debut year of Mark Eaves?",
    "question_th": "มาร์ค อีฟส์ เปิดตัวปีไหน?",
    "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_en": "Which Player has a Total of 9, and an Opposition of offaly?",
    "question_th": "ผู้เล่นคนใดมีคะแนนรวม 9 และฝ่ายตรงข้ามมีความผิด?",
    "context": "CREATE TABLE table_name_5 (player VARCHAR, total VARCHAR, opposition VARCHAR)"
  },
  {
    "answer": "SELECT county FROM table_name_64 WHERE opposition = \"offaly\"",
    "question_en": "Which County has an Opposition of offaly?",
    "question_th": "จังหวัดใดมีฝ่ายค้านข้าราชการ?",
    "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_en": "Which Player has a Total smaller than 11, and a Tally of 0-9?",
    "question_th": "ผู้เล่นคนใดมีแต้มรวมน้อยกว่า 11 และแต้มรวม 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_en": "What country has todd hamilton as the player?",
    "question_th": "ประเทศใดมีท็อดด์แฮมิลตันเป็นผู้เล่น?",
    "context": "CREATE TABLE table_name_90 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_43 WHERE player = \"david toms\"",
    "question_en": "What country has david toms as the player?",
    "question_th": "ประเทศใดมีเดวิด ทอมส์เป็นผู้เล่น?",
    "context": "CREATE TABLE table_name_43 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_81 WHERE course = \"rest day\"",
    "question_en": "Which date was a rest day?",
    "question_th": "วันไหนเป็นวันหยุด?",
    "context": "CREATE TABLE table_name_81 (date VARCHAR, course VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_13 WHERE year = 2012",
    "question_en": "What is the location for 2012?",
    "question_th": "ปี 2555 อยู่ที่ไหน?",
    "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_en": "What are the rounds for champion New Zealand (130 points)?",
    "question_th": "แชมป์นิวซีแลนด์รอบไหน (130 แต้ม)?",
    "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_en": "For which season is Tim Mikkelson player of the year?",
    "question_th": "ทิม มิคเคลสันเป็นนักเตะยอดเยี่ยมแห่งปีของฤดูกาลใด?",
    "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_en": "What company collaborated in SBI-087 for rheumatoid arthritis?",
    "question_th": "บริษัทใดร่วมมือกันใน SBI-087 สำหรับโรคข้ออักเสบรูมาตอยด์",
    "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_en": "What company collaborated in non-hodgkin lymphoma?",
    "question_th": "บริษัทใดที่ร่วมมือกับมะเร็งต่อมน้ำเหลืองชนิดนอนฮอดจ์กิน?",
    "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_en": "What company collaborated in pre-clinical autoimmune disease and inflammation?",
    "question_th": "บริษัทใดร่วมมือเกี่ยวกับโรคแพ้ภูมิตัวเองและการอักเสบก่อนคลินิก",
    "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_en": "Which study included autoimmune disease and inflammation?",
    "question_th": "การศึกษาใดรวมถึงโรคภูมิต้านตนเองและการอักเสบ",
    "context": "CREATE TABLE table_name_41 (name VARCHAR, indication VARCHAR)"
  },
  {
    "answer": "SELECT indication FROM table_name_50 WHERE status = \"phase 2b\"",
    "question_en": "What did the phase 2b status target?",
    "question_th": "เป้าหมายสถานะเฟส 2b คืออะไร?",
    "context": "CREATE TABLE table_name_50 (indication VARCHAR, status VARCHAR)"
  },
  {
    "answer": "SELECT collaboration FROM table_name_5 WHERE indication = \"non-hodgkin lymphoma\"",
    "question_en": "What company collaborated with non-hodgkin lymphoma?",
    "question_th": "บริษัทใดที่ร่วมมือกับมะเร็งต่อมน้ำเหลืองชนิดนอนฮอดจ์กิน?",
    "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_en": "what is the average water sqmi with a population (2010) more than 47 in the Brenna Township with Longitude less than -97.171507",
    "question_th": "ตร.ม.น้ำเฉลี่ยที่มีประชากร (2010) มากกว่า 47 คนในเขตเมือง Brenna ที่มีลองจิจูดน้อยกว่า -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_en": "what is the latitude for the berlin township with a geo id less than 3801706260",
    "question_th": "ละติจูดสำหรับเมืองเบอร์ลินที่มีรหัสทางภูมิศาสตร์น้อยกว่า 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_en": "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",
    "question_th": "รหัส ANSI สูงสุดที่มีละติจูดมากกว่า 47.623288 และรหัสทางภูมิศาสตร์มากกว่า 3805508060 ที่มีพื้นที่ (ตร.ม.) มากกว่า 35.66 และลองจิจูดน้อยกว่า -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_en": "what is the lowest latitude for the land sqmi less than 32.696 and a water sqmi less than 0",
    "question_th": "ละติจูดต่ำสุดสำหรับที่ดิน sqmi น้อยกว่า 32.696 และ sqmi น้ำน้อยกว่า 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_en": "What's the sum of Quantity for the Class of 1928 of CI-30?",
    "question_th": "ผลรวมของปริมาณสำหรับรุ่นปี 1928 ของ 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_en": "What Class to 1928 has the Quantity smaller than 440 and Seats of 29/29?",
    "question_th": "คลาสใดถึงปี 1928 มีปริมาณน้อยกว่า 440 และที่นั่ง 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 −1 mpc\"",
    "question_en": "What is the best fit (all data) when the parameter shows fluctuation amplitude at 8h −1 mpc?",
    "question_th": "ค่าใดที่เหมาะสมที่สุด (ข้อมูลทั้งหมด) เมื่อพารามิเตอร์แสดงแอมพลิจูดของการผันผวนที่ 8h −1 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 ± .0009\"",
    "question_en": "What is the best fit (WMAP, extra parameter)when the best fit (all data) is .0224 ± .0009?",
    "question_th": "ค่าที่เหมาะสมที่สุด (WMAP, พารามิเตอร์เพิ่มเติม) คืออะไร เมื่อค่าที่เหมาะสมที่สุด (ข้อมูลทั้งหมด) คือ .0224 ± .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 ± .1\" AND symbol = \"a\"",
    "question_en": "What is the parameter when the best fit (WMAP only) is .9 ± .1, and symbol is a?",
    "question_th": "พารามิเตอร์คืออะไรเมื่อขนาดที่เหมาะสมที่สุด (WMAP เท่านั้น) คือ .9 ± .1 และสัญลักษณ์คือ 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_en": "What is the highest heat for more than 3 lanes and a time of 2:09.12?",
    "question_th": "ความร้อนสูงสุดเกิน 3 เลน เวลา 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_en": "What is Russia's time with a heat higher than 3?",
    "question_th": "รัสเซียมีความร้อนสูงกว่า 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_en": "What is Hungary's time with a heat higher than 2 and two lanes?",
    "question_th": "เวลาของฮังการีที่มีความร้อนสูงกว่า 2 และสองเลนคืออะไร?",
    "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_en": "When the name is badnawar, and the reserved for (sc / st /none) of none what is the constituency number?",
    "question_th": "เมื่อชื่อ ปฐนวาร์ และสงวนไว้ (sc / st /none) ของ ไม่มี เขตเลือกตั้งหมายเลขอะไร?",
    "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_en": "What is the number of electorates when the name is badnawar?",
    "question_th": "ผู้มีสิทธิเลือกตั้งชื่อ ปัทนาวาร์ มีผู้มีสิทธิเลือกตั้งจำนวนเท่าใด?",
    "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_en": "What is the average number of electorates (2009) when the district is indore?",
    "question_th": "จำนวนผู้มีสิทธิเลือกตั้งโดยเฉลี่ย (พ.ศ. 2552) เมื่อเป็นเขตอินดอร์คือเท่าใด?",
    "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_en": "What is the name when the reserved is (sc / st /none) of st, with a constituency number 196?",
    "question_th": "ชื่อที่สงวนไว้คือ (sc / st /none) ของ st มีเขตเลือกตั้งหมายเลข 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_en": "What is the nationality for rank 27?",
    "question_th": "อันดับที่ 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_en": "What is the sum rating with more than 1 comp for mark miller?",
    "question_th": "คะแนนรวมที่มีมากกว่า 1 คอมพ์สำหรับมาร์ก มิลเลอร์คือเท่าใด",
    "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_en": "What is the games average with less than 3.8 in rating and less than 9 yards?",
    "question_th": "ค่าเฉลี่ยเกมที่มีเรตติ้งน้อยกว่า 3.8 และระยะน้อยกว่า 9 หลาเป็นเท่าใด",
    "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_en": "What is the average rating for john kidd with more than 0 yards?",
    "question_th": "เรตติ้งเฉลี่ยของ john kidd ที่วิ่งเกิน 0 หลาคือเท่าไหร่?",
    "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_en": "Which Share of seats has a European election (UK) of 2009?",
    "question_th": "ส่วนแบ่งที่นั่งใดที่มีการเลือกตั้งในยุโรป (สหราชอาณาจักร) ในปี 2552",
    "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_en": "Which European election (UK) has a Share of votes of 19%?",
    "question_th": "การเลือกตั้งยุโรปใด (สหราชอาณาจักร) มีส่วนแบ่งคะแนนเสียง 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_en": "What is the fewest bronzes for ranks of 3 with totals under 2?",
    "question_th": "อะไรคือเหรียญทองแดงที่น้อยที่สุดสำหรับอันดับ 3 โดยมีคะแนนรวมต่ำกว่า 2?",
    "context": "CREATE TABLE table_name_58 (bronze INTEGER, rank VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_42 WHERE nation = \"austria\"",
    "question_en": "Which rank is Austria?",
    "question_th": "ออสเตรียอยู่อันดับไหน?",
    "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_en": "What is the sum of bronzes for countries with 1 gold and under 1 silver?",
    "question_th": "ผลรวมของเหรียญทองแดงสำหรับประเทศที่มี 1 เหรียญทองและต่ำกว่า 1 เหรียญเงินเป็นเท่าใด",
    "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_en": "What is the total number of totals for nations with 1 silver and more than 1 bronze?",
    "question_th": "จำนวนรวมทั้งหมดของประเทศที่มี 1 เหรียญเงินและมากกว่า 1 เหรียญทองแดงเป็นเท่าใด",
    "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_en": "What is the Nationality of the athlete in 1999 Fort-de-France in the Triple Jump?",
    "question_th": "นักกีฬาฟอร์-เดอ-ฟร็องส์ ปี 1999 ในทริปเปิ้ลจัมป์มีสัญชาติอะไร",
    "context": "CREATE TABLE table_name_12 (nationality VARCHAR, games VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_19 WHERE event = \"shot put\"",
    "question_en": "What is the Date of the athlete in the shot put Event?",
    "question_th": "นักกีฬาที่ลงชอตใส่เหตุการณ์คือวันที่เท่าไหร่?",
    "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_en": "What District has a Member with a First Election date of 1985?",
    "question_th": "เขตใดมีสมาชิกซึ่งมีวันเลือกตั้งครั้งแรกในปี 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_en": "What Party is Member Alicia Hughes from?",
    "question_th": "สมาชิก Alicia Hughes มาจากพรรคใด",
    "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_en": "What Position does First Elected in 2003 William D. Euille hold ?",
    "question_th": "ตำแหน่งใดที่ได้รับการเลือกตั้งครั้งแรกในปี 2546 William D. Euille ดำรงตำแหน่ง",
    "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_en": "What is Kerry J. Donley's First Election date?",
    "question_th": "วันเลือกตั้งครั้งแรกของ Kerry J. Donley คืออะไร?",
    "context": "CREATE TABLE table_name_23 (first_election VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_name_48 WHERE name = \"kerry j. donley\"",
    "question_en": "What is Kerry J. Donley's Party?",
    "question_th": "ปาร์ตี้ของ Kerry J. Donley คืออะไร?",
    "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_en": "What is the Position of the person with a First Election of 1988 as Vice Mayor 2009?",
    "question_th": "ตำแหน่งของผู้ที่ได้รับการเลือกตั้งครั้งแรก พ.ศ. 2531 เป็นรองนายกเทศมนตรี พ.ศ. 2552 คืออะไร?",
    "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_en": "What are the final points a 0 total and 22 draws?",
    "question_th": "สรุปผลรวม 0 เสมอ 22 แต้มเป็นอย่างไรบ้าง?",
    "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_en": "Who received 6,131 televotes?",
    "question_th": "ใครได้รับโทรทัศน์ 6,131 ครั้ง?",
    "context": "CREATE TABLE table_name_1 (televote_points VARCHAR, televotes VARCHAR)"
  },
  {
    "answer": "SELECT televotes FROM table_name_74 WHERE draw = 1",
    "question_en": "What are televotes for 1 draw?",
    "question_th": "ทีวี 1 งวด คืออะไร?",
    "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_en": "What is the draw for the artist Ketil Stokkan which has less than 44 points?",
    "question_th": "การจับสลากของศิลปิน เกติล สโตกคาน ที่มีคะแนนไม่ถึง 44 คืออะไร?",
    "context": "CREATE TABLE table_name_89 (draw INTEGER, artist VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT artist FROM table_name_32 WHERE language = \"croatian\"",
    "question_en": "Which artist speaks croatian?",
    "question_th": "ศิลปินคนไหนพูดภาษาโครเอเชียได้?",
    "context": "CREATE TABLE table_name_32 (artist VARCHAR, language VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_90 WHERE high_points = \"douglas (15)\"",
    "question_en": "Which Score has High points of douglas (15)?",
    "question_th": "คะแนนใดมีคะแนนสูงเท่ากับดักลาส (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_en": "Which High assists have a Game larger than 21, and a Record of 18-6?",
    "question_th": "แอสซิสต์สูงใดที่มีเกมมากกว่า 21 และสถิติ 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_en": "Which Record has a Location of madison square garden?",
    "question_th": "บันทึกใดมีที่ตั้งของ 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_en": "Which 2012 has a 2009 smaller than 3.38?",
    "question_th": "ปี 2012 ใดที่มีปี 2009 น้อยกว่า 3.38",
    "context": "CREATE TABLE table_name_33 (Id VARCHAR)"
  },
  {
    "answer": "SELECT MAX(2009) FROM table_name_61 WHERE 2012 > 9 OFFSET 265",
    "question_en": "Which 2009 has a 2012 larger than 9,265?",
    "question_th": "ปี 2009 ใดที่มีปี 2012 มากกว่า 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_en": "who is the champion when the year is earlier than 2012, the runner-up (average in final) is steve beaton (97.16)?",
    "question_th": "ใครเป็นแชมป์เมื่อต้นปี 2555 รองชนะเลิศ (โดยเฉลี่ยในรอบชิงชนะเลิศ) คือ สตีฟ บีตัน (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 = \"£20,000\" AND champion__average_in_final_ = \"phil taylor (109.35)\"",
    "question_en": "what is the venue when the runner-up is £20,000, the champion (average in final) is phil taylor (109.35)?",
    "question_th": "สถานที่ที่รองชนะเลิศคือ 20,000 ปอนด์ แชมป์ (โดยเฉลี่ยในรอบชิงชนะเลิศ) คือ ฟิล เทย์เลอร์ (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_en": "what is the legs when the year is earlier than 2009?",
    "question_th": "ขาอะไรเมื่อต้นปี 2552?",
    "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_en": "what is the venue when the runner-up (average in final) is wayne jones (94.64)?",
    "question_th": "สถานที่ที่รองชนะเลิศ (โดยเฉลี่ยในรอบชิงชนะเลิศ) คือ เวย์น โจนส์ (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ülheim\" AND runner_up__average_in_final_ = \"simon whitlock (99.59)\"",
    "question_en": "What is the legs when the venue is rwe-sporthalle, mülheim and the runner-up (average in final) is simon whitlock (99.59)?",
    "question_th": "ขาจะเป็นอย่างไรเมื่อสนามคือ rwe-sporthalle, Mülheim และรองแชมป์ (โดยเฉลี่ยในรอบชิงชนะเลิศ) คือ 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_en": "What is the 110m H number when the overall points are 7835 (sb)?",
    "question_th": "ตัวเลข 110m H เมื่อคะแนนรวมคือ 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_en": "Which Result has a Venue of kinnarps arena, and a Date of thursday, february 19?",
    "question_th": "ผลการแข่งขันใดมีสถานที่จัดการแข่งขันคินนาร์ปส์ และวันพฤหัสที่ 19 กุมภาพันธ์?",
    "context": "CREATE TABLE table_name_86 (result VARCHAR, venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(attendance) FROM table_name_54 WHERE home = \"djurgårdens if\" AND round = 53",
    "question_en": "Which Attendance has a Home of djurgårdens if, and a Round of 53?",
    "question_th": "ผู้เข้าร่วมคนใดมีเจ้าบ้านของ Djurgårdens if และรอบ 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ödertälje sk\"",
    "question_en": "Which Attendance has a Round of 52, and a Home of södertälje sk?",
    "question_th": "ผู้เข้าร่วมคนใดมีรอบ 52 คน และทีมเหย้าของ södertälje 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_en": "What is the Record of the game with an Attendance of 70,604?",
    "question_th": "สถิติของเกมที่มีผู้เข้าร่วม 70,604 คืออะไร?",
    "context": "CREATE TABLE table_name_92 (record VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_26 WHERE record = \"1–3–0\"",
    "question_en": "Who is the Opponent in the game with a Record of 1–3–0?",
    "question_th": "ใครคือฝ่ายตรงข้ามในเกมที่มีสถิติ 1–3–0?",
    "context": "CREATE TABLE table_name_26 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_41 WHERE attendance = \"70,479\"",
    "question_en": "What is the Record of the game with an Attendance of 70,479?",
    "question_th": "สถิติของเกมที่มีผู้เข้าร่วม 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_en": "What was the winning score on Aug 21, 1977?",
    "question_th": "คะแนนชนะเมื่อวันที่ 21 สิงหาคม พ.ศ. 2520 เป็นเท่าใด",
    "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_en": "What's the margin of victory during the Pocono Northeast Classic?",
    "question_th": "ชัยชนะระหว่าง 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_en": "What's the winning score on Feb 12, 1978?",
    "question_th": "คะแนนชนะเมื่อวันที่ 12 ก.พ. 2521 เป็นเท่าใด",
    "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_en": "Which Name has a Year larger than 2001, and a Length of 52 x 20 mins?",
    "question_th": "ชื่อใดมีปีที่ใหญ่กว่าปี 2544 และมีความยาว 52 x 20 นาที",
    "context": "CREATE TABLE table_name_9 (name VARCHAR, year VARCHAR, length VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_14 WHERE year > 2004",
    "question_en": "What was the type after 2004?",
    "question_th": "ประเภทใดหลังจากปี 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_en": "Which Relation has a Year larger than 2000, and a Length of 8 x 20 mins?",
    "question_th": "ความสัมพันธ์ใดมีหนึ่งปีมากกว่าปี 2000 และมีความยาว 8 x 20 นาที",
    "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_en": "Which Relation has a Type of tv, and a Name of ohanami?",
    "question_th": "ความสัมพันธ์ใดมีประเภทของทีวีและชื่อของโอฮานามิ?",
    "context": "CREATE TABLE table_name_71 (relation VARCHAR, type VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT majority FROM table_name_8 WHERE clone_independence = \"no\"",
    "question_en": "What is the majority when the clone independence is no?",
    "question_th": "ส่วนใหญ่คืออะไรเมื่อไม่มีความเป็นอิสระของโคลน?",
    "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_en": "what is the consistency & participation when pareto efficiency is yes and condorcet is no?",
    "question_th": "ความสอดคล้องและการมีส่วนร่วมคืออะไรเมื่อประสิทธิภาพของพาเรโตคือใช่ และคอนดอร์เซ็ตไม่ใช่",
    "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_en": "what is the reversal symmetry when non-dictatorship is yes, consistency & participation is no, and clone independence is yes?",
    "question_th": "อะไรคือความสมมาตรของการกลับตัว เมื่อการไม่ใช่เผด็จการคือใช่ ความสม่ำเสมอและการมีส่วนร่วมคือไม่ และความเป็นอิสระของโคลนนิ่งคือใช่",
    "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_en": "what is the monotone when pareto efficiency is yes, non-dictatorship is yes, and clone independence is yes?",
    "question_th": "เสียงเดียวคืออะไรเมื่อประสิทธิภาพของพาเรโตคือใช่ การไม่ใช่เผด็จการคือใช่ และความเป็นอิสระของโคลนนิ่งคือใช่",
    "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_en": "For the English translation Someone Like You, what is the lowest draw?",
    "question_th": "แปลภาษาอังกฤษ Someone Like You งวดล่างคือตัวไหนคะ?",
    "context": "CREATE TABLE table_name_76 (draw INTEGER, english_translation VARCHAR)"
  },
  {
    "answer": "SELECT AVG(points) FROM table_name_86 WHERE english_translation = \"sing\"",
    "question_en": "The English translation of Sing has what average points?",
    "question_th": "ภาษาอังกฤษของ Sing มีคะแนนเฉลี่ยเท่าไร?",
    "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_en": "What is Germany's lowest heat ranked after 24?",
    "question_th": "อุณหภูมิต่ำสุดของเยอรมนีหลัง 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_en": "What is the rank for Denmark?",
    "question_th": "เดนมาร์กอยู่อันดับไหนคะ?",
    "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_en": "What is the highest lane for Christine Mailliet ranked less than 39?",
    "question_th": "เลนที่สูงที่สุดของ Christine Mailliet ในอันดับที่ต่ำกว่า 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_en": "What was the title of the episode written by Robert Haywood?",
    "question_th": "ตอนที่เขียนโดย 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–1993\"",
    "question_en": "Which Player has Goals larger than 10, and a Debut year smaller than 1993, and Years at club of 1990–1993?",
    "question_th": "ผู้เล่นคนใดมีเป้าหมายมากกว่า 10 ประตู และปีที่เดบิวต์น้อยกว่าปี 1993 และปีที่อยู่กับสโมสรในปี 1990–1993?",
    "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_en": "Which Goals have Games of 51, and a Debut year smaller than 1992?",
    "question_th": "เป้าหมายใดที่มีเกม 51 เกมและปีเปิดตัวที่น้อยกว่าปี 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_en": "Which Year Joined has an Enrollment smaller than 726, and a School of tri-west?",
    "question_th": "ปีใดที่เข้าร่วมมีการลงทะเบียนน้อยกว่า 726 และโรงเรียนไตรเวสต์?",
    "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_en": "What is lebanon's enrollment?",
    "question_th": "การลงทะเบียนของเลบานอนคืออะไร?",
    "context": "CREATE TABLE table_name_99 (enrollment INTEGER, school VARCHAR)"
  },
  {
    "answer": "SELECT SUM(enrollment) FROM table_name_53 WHERE mascot = \"hot dogs\"",
    "question_en": "What is the enrollment of the school whose mascot is hot dogs?",
    "question_th": "การลงทะเบียนของโรงเรียนที่มีมาสคอตเป็นฮอทด็อกคืออะไร?",
    "context": "CREATE TABLE table_name_53 (enrollment INTEGER, mascot VARCHAR)"
  },
  {
    "answer": "SELECT MAX(year_joined) FROM table_name_10 WHERE location = \"crawfordsville\"",
    "question_en": "When did crawfordsville join?",
    "question_th": "ครอว์ฟอร์ดสวิลล์เข้าร่วมเมื่อใด",
    "context": "CREATE TABLE table_name_10 (year_joined INTEGER, location VARCHAR)"
  },
  {
    "answer": "SELECT AVG(b_score) FROM table_name_20 WHERE gymnast = \"kōhei uchimura ( jpn )\"",
    "question_en": "what is the average b score when the gymnast is kōhei uchimura ( jpn )?",
    "question_th": "คะแนน b โดยเฉลี่ยเมื่อนักกายกรรมคือ kōhei 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_en": "what is the b score when the a score is 6.9?",
    "question_th": "คะแนน b คืออะไรเมื่อคะแนนเป็น 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_en": "what is the sum of the b score when the a score is 6.6 and the total is 15.6?",
    "question_th": "ผลรวมของคะแนน b เมื่อคะแนนคือ 6.6 และคะแนนรวมคือ 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_en": "What is Myron Walwyn with a Territorial at-large Constiuency's First Elected Date",
    "question_th": "Myron Walwyn คืออะไรกับการเลือกตั้งครั้งแรกของกลุ่มเขตเลือกตั้งขนาดใหญ่ในอาณาเขต",
    "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_en": "What is the Party of the council member for the Fifth District?",
    "question_th": "พรรคสมาชิกสภาเขตที่ 5 คืออะไร?",
    "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_en": "What is the medal total when there is 2 gold medals, and Brazil (BRA) is the nation?",
    "question_th": "เมื่อมี 2 เหรียญทอง และบราซิล (BRA) เป็นชาติจะได้เหรียญทั้งหมดเท่าไร?",
    "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_en": "Which nation has the number of silver medals greater than 1, and bronze medals as 1?",
    "question_th": "ชาติใดมีจำนวนเหรียญเงินมากกว่า 1 และเหรียญทองแดงเท่ากับ 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_en": "What is the least total number of medals when the bronze medals is 1, and Czech Republic (CZE) is the nation?",
    "question_th": "จำนวนเหรียญรวมน้อยที่สุดคือเท่าไรเมื่อเหรียญทองแดงคือ 1 และสาธารณรัฐเช็ก (CZE) คือชาติ?",
    "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_en": "For what nation is the gold medals 0, and the bronze medals less than 1?",
    "question_th": "เหรียญทอง 0 ของชาติใด และเหรียญทองแดงน้อยกว่า 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_en": "What is the most gold medals when the bronze medals were 0, and the silver medals greater than 1?",
    "question_th": "เหรียญทองมากที่สุดเมื่อเหรียญทองแดงเป็น 0 และเหรียญเงินมากกว่า 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_en": "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?",
    "question_th": "เหรียญทองแดงรวมเป็นเท่าใด เมื่อเหรียญเงินเป็น 0 และ 1 คืออันดับ บราซิล (BRA) คือชาติ และเหรียญทองน้อยกว่า 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_en": "What Nation has more than 4 silver, more than 3 gold and 18 total medals?",
    "question_th": "ชาติใดมีมากกว่า 4 เหรียญเงิน 3 เหรียญทอง และทั้งหมด 18 เหรียญ?",
    "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_en": "Who is listed as the Runners-up that also has a Winner of Hajduk Split (3)?",
    "question_th": "ใครบ้างที่มีรายชื่อเป็นรองชนะเลิศและมีผู้ชนะจาก 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_en": "What is the Japanese Title of the Episode on NTV Station with a Romaji Title of Kuitan 2?",
    "question_th": "ชื่อเรื่องภาษาญี่ปุ่นของตอนบนสถานี NTV ที่มีชื่อโรมาจิของ 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 = \"プロポーズ大作戦\"",
    "question_en": "What are the Ratings of Japanese Title プロポーズ大作戦 episode 11 on Fuji TV station?",
    "question_th": "เรตติ้งของชื่อเรื่องภาษาญี่ปุ่น プロポーズ大作戦 ตอนที่ 11 ทางสถานี Fuji TV คืออะไร",
    "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_en": "What Episode on TV Asahi Station has Rating of 12.0%?",
    "question_th": "ตอนไหนของ TV Asahi Station ที่มีเรตติ้ง 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_en": "What is the TV Station of the episode with a Romaji Title of Tokkyuu Tanaka Sangou?",
    "question_th": "สถานีโทรทัศน์ของตอนที่มีชื่อเรื่องโรมาจิของ 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_en": "Which class had a rank of 2nd?",
    "question_th": "คลาสไหนได้อันดับ 2 คะ?",
    "context": "CREATE TABLE table_name_52 (class VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT wins FROM table_name_20 WHERE class = \"500cc\" AND year = 1979",
    "question_en": "How many wins did the 500cc class have in 1979?",
    "question_th": "คลาส 500cc ชนะได้กี่ครั้งในปี 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_en": "What is the total of the points for wins under 6 and a rank of 2nd?",
    "question_th": "คะแนนรวมสำหรับการชนะต่ำกว่า 6 และอันดับ 2 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_59 (points INTEGER, rank VARCHAR, wins VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_name_23 WHERE points = 110",
    "question_en": "Which class had 110 points?",
    "question_th": "คลาสไหนมี 110 คะแนน?",
    "context": "CREATE TABLE table_name_23 (class VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT AVG(year) FROM table_name_61 WHERE points = 142",
    "question_en": "What is the average year having 142 points?",
    "question_th": "ปีเฉลี่ยที่มี 142 คะแนนคือเท่าไร?",
    "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_en": "On what date were the 1997 Bridgetown games in which a Martinique girl competed?",
    "question_th": "เกมบริดจ์ทาวน์ปี 1997 ที่เด็กสาวชาวมาร์ตินีกลงแข่งขันในวันใด",
    "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_en": "What is the date of the games that saw a record of 43.66 m?",
    "question_th": "เกมที่เห็นสถิติ 43.66 ม. คือวันไหน?",
    "context": "CREATE TABLE table_name_25 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_35 WHERE record = \"43.89 m\"",
    "question_en": "On which date was the record of 43.89 m set?",
    "question_th": "สถิติ 43.89 ม. ตั้งไว้วันไหน?",
    "context": "CREATE TABLE table_name_35 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT games FROM table_name_94 WHERE event = \"long jump\"",
    "question_en": "Which games saw a record set in the long jump event?",
    "question_th": "เกมใดบ้างที่สร้างสถิติในการแข่งขันกระโดดไกล?",
    "context": "CREATE TABLE table_name_94 (games VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT manufacturer FROM table_name_22 WHERE year_made = \"4-6-0 — ooooo — ten-wheeler\"",
    "question_en": "Which manufacturer has a year made of 4-6-0 — ooooo — ten-wheeler?",
    "question_th": "ผู้ผลิตรายใดมีปีที่ผลิต 4-6-0 — ooooo — รถสิบล้อ?",
    "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 — ooooo — ten-wheeler\"",
    "question_en": "What is the quantity made number for the quantity preserved 4-6-0 — ooooo — ten-wheeler?",
    "question_th": "ปริมาณที่ทำไว้สำหรับปริมาณที่เก็บรักษาไว้ 4-6-0 — ooooo — รถสิบล้อเป็นเท่าไหร่?",
    "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_en": "Which Average has a Tally of 2-12, and a Total larger than 18?",
    "question_th": "ค่าเฉลี่ยใดที่มีการนับ 2-12 และผลรวมมากกว่า 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_en": "What is the ISHAA class for the International School?",
    "question_th": "ชั้นเรียน ISHAA สำหรับโรงเรียนนานาชาติคืออะไร?",
    "context": "CREATE TABLE table_name_64 (ihsaa_class VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_56 WHERE county = \"41 johnson\"",
    "question_en": "What school is in 41 Johnson county?",
    "question_th": "โรงเรียนอะไรใน 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_en": "What is the mascot for the team smaller than 154 from 49 Marion?",
    "question_th": "มาสคอตของทีมตัวเล็กกว่า 154 จาก 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_en": "What is the size of the International school?",
    "question_th": "โรงเรียนนานาชาติมีขนาดเท่าไร?",
    "context": "CREATE TABLE table_name_94 (size INTEGER, school VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_94 WHERE to_par = \"−3\" AND player = \"branden grace\"",
    "question_en": "What was the score that has a To par of −3, for Branden Grace?",
    "question_th": "อะไรคือคะแนนที่มีพาร์ถึง −3 สำหรับแบรนเดน เกรซ?",
    "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_en": "What player has a score less than 66, and a Place of t2, in the United States?",
    "question_th": "ผู้เล่นคนใดที่มีคะแนนน้อยกว่า 66 และอันดับที่ 2 ในสหรัฐอเมริกา",
    "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 = \"−3\" AND country = \"south africa\" AND player = \"richard sterne\"",
    "question_en": "What is the score when To par was −3, in South Africa, for Richard Sterne?",
    "question_th": "คะแนนเมื่อพาร์อยู่ที่ -3 ในแอฟริกาใต้ของริชาร์ด สเติร์น คืออะไร?",
    "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_en": "What is the average number of goals for games played that total more than 8?",
    "question_th": "จำนวนประตูเฉลี่ยสำหรับเกมที่เล่นรวมมากกว่า 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_en": "What is the sum of wins and the sum of losses less than 4 for teams larger than 20?",
    "question_th": "ผลรวมของการชนะและผลรวมของการสูญเสียที่น้อยกว่า 4 สำหรับทีมที่มีขนาดใหญ่กว่า 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_en": "What are the sales in Japan for the release totaling 1.82 million?",
    "question_th": "ยอดขายในญี่ปุ่นที่วางจำหน่ายรวม 1.82 ล้านเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_88 (japan VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_93 WHERE japan = \"0.61 million\"",
    "question_en": "Which date had Japanese sales of 0.61 million?",
    "question_th": "วันไหนมียอดขายญี่ปุ่น 0.61 ล้าน?",
    "context": "CREATE TABLE table_name_93 (date VARCHAR, japan VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_60 WHERE japan = \"0.57 million\"",
    "question_en": "Which date had Japanese sales of 0.57 million?",
    "question_th": "วันไหนมียอดขายญี่ปุ่น 0.57 ล้าน?",
    "context": "CREATE TABLE table_name_60 (date VARCHAR, japan VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_70 WHERE japan = \"0.59 million\"",
    "question_en": "Which date had Japanese sales of 0.59 million?",
    "question_th": "วันไหนมียอดขายญี่ปุ่น 0.59 ล้าน?",
    "context": "CREATE TABLE table_name_70 (date VARCHAR, japan VARCHAR)"
  },
  {
    "answer": "SELECT MAX(attendance) FROM table_name_82 WHERE week = 6",
    "question_en": "what is the highest attendance for week 6?",
    "question_th": "ผู้เข้าร่วมสูงสุดในสัปดาห์ที่ 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_en": "what is the highest week when the date is october 6, 1975 and attendance is higher than 79,384?",
    "question_th": "สัปดาห์สูงสุดคือวันที่ 6 ตุลาคม พ.ศ. 2518 และมีผู้เข้าร่วมมากกว่า 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_en": "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?",
    "question_th": "รหัสทางภูมิศาสตร์คืออะไรเมื่อที่ดิน (ตร.ม.) น้อยกว่า 36.112 ละติจูดมากกว่า 47.536618 เมืองเป็นอ่าวตะวันตก และน้ำ (ตร.ม.) มากกว่า 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_en": "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?",
    "question_th": "เมืองคืออะไรเมื่อที่ดิน (ตร.ม.) มากกว่า 36.112 รหัสทางภูมิศาสตร์สูงกว่า 3801985060 และละติจูดคือ 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_en": "what is the longitude when the water (sqmi) is 0.317 and the ansi code is higher than 1759695?",
    "question_th": "ลองจิจูดเมื่อน้ำ (ตร.ม.) เท่ากับ 0.317 และรหัส ansi สูงกว่า 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_en": "what is the county when the latitude is more than 48.581299, ansi code is more than 1037103 and the geo id is 3801985060?",
    "question_th": "มณฑลคืออะไรเมื่อละติจูดมากกว่า 48.581299 รหัส ansi มากกว่า 1037103 และรหัสทางภูมิศาสตร์คือ 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_en": "what is the highest longitude for county mountrail and the water (sqmi) is less than 0.075?",
    "question_th": "ลองจิจูดสูงสุดสำหรับ mountrail ของเทศมณฑลและน้ำ (ตร.ม.) น้อยกว่า 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_en": "What is the nation when gold is 0, bronze is more than 0 and rank is 16?",
    "question_th": "ชาติคืออะไรเมื่อทองเป็น 0 ทองแดงมากกว่า 0 และอันดับเป็น 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_en": "what is the silver when the nation is syria (syr) and gold is more than 0?",
    "question_th": "เงินคืออะไรเมื่อชาติเป็นซีเรีย (syr) และทองมากกว่า 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_en": "what is the average gold when rank is total and silver is more than 20?",
    "question_th": "ทองคำเฉลี่ยเมื่ออันดับรวมและเงินมากกว่า 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_en": "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)?",
    "question_th": "เงินมากที่สุดคืออะไรเมื่อทองแดงมากกว่า 0, รวมมากกว่า 1, ทองมากกว่า 0 และชาติคือจีน (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_en": "Where was the London Marathon held?",
    "question_th": "ลอนดอนมาราธอนจัดขึ้นที่ไหน?",
    "context": "CREATE TABLE table_name_19 (venue VARCHAR, event VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_name_70 WHERE venue = \"singapore\"",
    "question_en": "In what years did Salina Kosgei compete in Singapore?",
    "question_th": "Salina Kosgei แข่งขันที่สิงคโปร์ในปีใด",
    "context": "CREATE TABLE table_name_70 (year VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_23 WHERE competition = \"tokyo marathon\"",
    "question_en": "In what position did Salina Kosgei finish in the Tokyo Marathon?",
    "question_th": "Salina Kosgei จบการแข่งขันในโตเกียวมาราธอนในตำแหน่งใด",
    "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_en": "What is the Heat of the 34 Rank swimmer with a Time of 49.49 or less?",
    "question_th": "ฮีตของนักว่ายน้ำอันดับ 34 ด้วยเวลา 49.49 หรือน้อยกว่าคือเท่าไร?",
    "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_en": "What is Dominik Meichtry's Time in Heat 7 or lower?",
    "question_th": "เวลาของ Dominik Meichtry ในฮีต 7 หรือต่ำกว่าคือเท่าใด",
    "context": "CREATE TABLE table_name_24 (time VARCHAR, name VARCHAR, heat VARCHAR)"
  },
  {
    "answer": "SELECT comp FROM table_name_63 WHERE games < 2",
    "question_en": "What is the comp for games less than 2?",
    "question_th": "คอมพ์สำหรับเกมที่น้อยกว่า 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_en": "What is the highest comp for ratings less than 52.8 and yards less than 0?",
    "question_th": "คอมพ์สูงสุดสำหรับเรตติ้งน้อยกว่า 52.8 และหลาน้อยกว่า 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_en": "What is the sum of yards for a 118.7 rating?",
    "question_th": "ผลรวมหลาสำหรับเรตติ้ง 118.7 เป็นเท่าใด",
    "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_en": "What is the highest yards for a rating larger than 52.8 and more than 13 games?",
    "question_th": "ระยะสูงสุดสำหรับเรตติ้งที่มากกว่า 52.8 และมากกว่า 13 เกมคือเท่าใด",
    "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_en": "What is the release date when the release price (usd) is $346 and the turbo is 9/11?",
    "question_th": "วันที่วางจำหน่ายคือวันที่ราคาวางจำหน่าย (usd) อยู่ที่ 346 เหรียญสหรัฐ และเทอร์โบคือ 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_en": "what is the i/o bus when the sspec numebr is sr0n5(l1)?",
    "question_th": "บัส i/o คืออะไรเมื่อหมายเลข sspec คือ 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_en": "What is the l3 cache when the sspec number is sr0r2(l1)sr0t6(l1)?",
    "question_th": "แคช l3 คืออะไรเมื่อหมายเลข sspec คือ 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_en": "what is the part number(s) when the turbo is 9/11 and the frequency is 1.5 ghz?",
    "question_th": "หมายเลขชิ้นส่วนเมื่อเทอร์โบเป็น 9/11 และความถี่คือ 1.5 กิกะเฮิร์ตซ์คืออะไร?",
    "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_en": "What was the time for the match that resulted in a loss in less than 3 rounds?",
    "question_th": "แมตช์ที่แพ้ไปไม่ถึง 3 นัดคือช่วงไหน?",
    "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_en": "Which Hometown/School has a Team of cleveland indians?",
    "question_th": "บ้านเกิด/โรงเรียนใดมีทีมอินเดียนคลีฟแลนด์",
    "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_en": "Which Player has a Pick smaller than 11, and a Position of rhp, and a Team of new york mets?",
    "question_th": "ผู้เล่นคนไหนที่มี Pick น้อยกว่า 11 และมีตำแหน่ง rhp และทีม New York พบกัน?",
    "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_en": "Which Hometown/School has a Team of atlanta braves?",
    "question_th": "บ้านเกิด/โรงเรียนใดมีทีม 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_en": "What's the most enrollment in Hamilton?",
    "question_th": "การลงทะเบียนในแฮมิลตันมากที่สุดคืออะไร?",
    "context": "CREATE TABLE table_name_71 (enrollment INTEGER, location VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_35 WHERE enrollment > 441 AND mascot = \"chargers\"",
    "question_en": "What's the school that has an enrollment more than 441 with chargers as their mascot?",
    "question_th": "โรงเรียนอะไรที่มีผู้ลงทะเบียนมากกว่า 441 คนและมีที่ชาร์จเป็นตัวนำโชค?",
    "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_en": "What's the total enrollment in 57 Noble having a # and AA as the IHSAA Class?",
    "question_th": "การลงทะเบียนทั้งหมดใน 57 Noble ที่มี # และ AA เป็นคลาส IHSAA เป็นเท่าใด",
    "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_en": "What year joined had an enrollment less than 438 and an AA as the IHSAA Class?",
    "question_th": "ปีใดที่เข้าร่วมมีการลงทะเบียนน้อยกว่า 438 และ AA เป็นคลาส IHSAA",
    "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_en": "what is the branding when the call sign is ckua-fm-3?",
    "question_th": "เมื่อสัญญาณเรียกขานเป็น 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_en": "what is the format when the frequency is fm 94.5?",
    "question_th": "เมื่อความถี่เป็น 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_en": "who is the owner of fm 94.5?",
    "question_th": "ใครคือเจ้าของ 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_en": "what is the language/rebroadcast for cbc radio one?",
    "question_th": "ภาษา / การออกอากาศซ้ำสำหรับวิทยุ cbc คืออะไร?",
    "context": "CREATE TABLE table_name_30 (language_rebroadcast VARCHAR, branding VARCHAR)"
  },
  {
    "answer": "SELECT frequency FROM table_name_68 WHERE format = \"contemporary christian music\"",
    "question_en": "what is the frequency when the format is contemporary christian music?",
    "question_th": "ความถี่เป็นเท่าใดเมื่อรูปแบบเป็นดนตรีคริสเตียนร่วมสมัย?",
    "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_en": "what is the branding when the owner is jim pattison group and the frequency is fm 94.5?",
    "question_th": "ชื่อแบรนด์อะไรเมื่อเจ้าของคือกลุ่มจิม แพตทิสัน และความถี่คือ 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_en": "What is the fewest number of draws with more than 9 losts and more than 16 goals scored?",
    "question_th": "จำนวนการเสมอน้อยที่สุดโดยแพ้มากกว่า 9 นัดและทำได้มากกว่า 16 ประตูคือเท่าใด?",
    "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_en": "How many total draws was played less than 18 with 11 losts?",
    "question_th": "เสมอกันทั้งหมดกี่นัดที่เล่นน้อยกว่า 18 โดยแพ้ 11 ครั้ง?",
    "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_en": "What is the total goals scored with more than 11 points, 18 goals conceded, and played fewer than 18 times?",
    "question_th": "จำนวนประตูทั้งหมดที่ทำได้มากกว่า 11 แต้ม เสีย 18 ประตู และลงเล่นน้อยกว่า 18 ครั้ง คือเท่าไร?",
    "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_en": "What is the Record of the 1991 Port of Spain Games?",
    "question_th": "บันทึกของเกมพอร์ตออฟสเปนปี 1991 คืออะไร?",
    "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_en": "What is the Record of the 2012 Hamilton Games from Bahamas?",
    "question_th": "บันทึกของเกมแฮมิลตันปี 2012 จากบาฮามาสคืออะไร",
    "context": "CREATE TABLE table_name_72 (record VARCHAR, nationality VARCHAR, games VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_15 WHERE event = \"3000 m\"",
    "question_en": "What is the Record of the 3000 M?",
    "question_th": "บันทึกของ 3000 M คืออะไร?",
    "context": "CREATE TABLE table_name_15 (record VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_2 WHERE games = \"2013 nassau\"",
    "question_en": "What is the Record of the 2013 Nassau Games?",
    "question_th": "บันทึกของเกมแนสซอปี 2013 คืออะไร?",
    "context": "CREATE TABLE table_name_2 (record VARCHAR, games VARCHAR)"
  },
  {
    "answer": "SELECT quantity_made FROM table_name_92 WHERE class = \"f-7\"",
    "question_en": "What is the Quantity made when class is f-7?",
    "question_th": "ปริมาณที่ผลิตเมื่อคลาสเป็น f-7 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_92 (quantity_made VARCHAR, class VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_name_16 WHERE year_made = \"1899–1900\"",
    "question_en": "What is the Class of 1899–1900?",
    "question_th": "ชั้นเรียนของปี 1899–1900 คืออะไร?",
    "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_en": "What is the manufacturer with a wheel arrangement of 2-8-0, and Year made of 1883?",
    "question_th": "ผู้ผลิตที่มีการจัดเรียงล้อ 2-8-0 และปี 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_en": "What is the quantity when the wheel arrangement is 2-8-0, and class is f-4?",
    "question_th": "เมื่อจัดเรียงล้อเป็น 2-8-0 และคลาสเป็น 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–46\"",
    "question_en": "What wheel arrangement has a fleet number(s) of 45–46?",
    "question_th": "การจัดเรียงล้อใดมีหมายเลขกองเรือ 45–46",
    "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_en": "What manufacturer has a year made of 1883?",
    "question_th": "ผู้ผลิตรายใดมีปีที่ผลิตในปี พ.ศ. 2426?",
    "context": "CREATE TABLE table_name_76 (manufacturer VARCHAR, year_made VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_72 WHERE attendance > 66 OFFSET 926",
    "question_en": "When hasn an Attendance larger than 66,926?",
    "question_th": "เมื่อใดที่มีผู้เข้าร่วมมากกว่า 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_en": "what is the manner of departure when the date of vacancy is 15 september 2008?",
    "question_th": "วันที่ตำแหน่งว่างคือวันที่ 15 กันยายน 2551 จะออกเดินทางด้วยวิธีใด?",
    "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_en": "who is the replacement when the team is port vale?",
    "question_th": "เมื่อทีมเป็นพอร์ทเวลใครจะมาแทน?",
    "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_en": "who is the replacement when the team is bournemouth and the outgoing manager is kevin bond?",
    "question_th": "ใครจะเข้ามาแทนที่เมื่อทีมคือบอร์นมัธ และผู้จัดการทีมที่จะออกไปคือเควิน บอนด์?",
    "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_en": "who is the outgoing manager when the manner of departure is contract terminated and the date of vacancy is 1 september 2008?",
    "question_th": "ใครคือผู้จัดการที่จะลาออกเมื่อสัญญาสิ้นสุดลงและวันที่ตำแหน่งว่างคือวันที่ 1 กันยายน 2551?",
    "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_en": "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?",
    "question_th": "ตำแหน่งงานว่างคือวันที่ใดเมื่อลักษณะการออกเดินทางสิ้นสุดสัญญา ตำแหน่งในตารางคือวันที่ 23 และวันที่ได้รับการแต่งตั้งคือ 31 ธันวาคม 2551?",
    "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_en": "who is the replacement when the date of vacancy is 1 september 2008?",
    "question_th": "ใครจะเป็นผู้มาแทนเมื่อตำแหน่งว่างคือวันที่ 1 กันยายน 2551?",
    "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_en": "How many times did Morgan win The Masters Tournament with fewer than 12 appearances?",
    "question_th": "มอร์แกนชนะ The Masters Tournament กี่ครั้งโดยลงเล่นน้อยกว่า 12 นัด?",
    "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_en": "What is the lowest losses for a team that has 0 draws, fewer than 4 wins, and no Byes?",
    "question_th": "อะไรคือความสูญเสียต่ำสุดสำหรับทีมที่เสมอ 0 ชนะน้อยกว่า 4 และไม่มีบาย?",
    "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_en": "What Population has a Median family income of $38,044?",
    "question_th": "ประชากรกลุ่มใดมีรายได้เฉลี่ยของครอบครัวอยู่ที่ 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_en": "What county has a Median family income of $37,667?",
    "question_th": "เคาน์ตีใดมีรายได้เฉลี่ยของครอบครัวอยู่ที่ $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_en": "What is the highest Population that has a Median household income of $32,902 with a number of households less than 11,125",
    "question_th": "คือประชากรสูงสุดที่มีรายได้เฉลี่ยครัวเรือนอยู่ที่ 32,902 ดอลลาร์ โดยมีจำนวนครัวเรือนน้อยกว่า 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_en": "What's the 1851 when 1881 had 764?",
    "question_th": "1851 คืออะไรเมื่อ 1881 มี 764?",
    "context": "CREATE TABLE table_name_67 (Id VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_29 WHERE 1851 = \"634\"",
    "question_en": "What's the year when 1851 had 634?",
    "question_th": "เมื่อปี พ.ศ. 2394 มี 634 คือปีอะไร",
    "context": "CREATE TABLE table_name_29 (year VARCHAR)"
  },
  {
    "answer": "SELECT 1881 FROM table_name_38 WHERE 1871 = \"1017\"",
    "question_en": "What's the 1881 when 1871 had 1017?",
    "question_th": "1881 คืออะไรเมื่อ 1871 มี 1,017?",
    "context": "CREATE TABLE table_name_38 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1861 FROM table_name_82 WHERE \"year\" = \"year\" AND 1881 = \"1991\"",
    "question_en": "What's the 1861 had 1991 in 1881 and a year of year?",
    "question_th": "1861 มี 1991 ในปี 1881 และปีอะไร?",
    "context": "CREATE TABLE table_name_82 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1881 FROM table_name_54 WHERE 1851 = \"1961\"",
    "question_en": "What's the 1881 with 1961 in 1851?",
    "question_th": "1881 กับ 1961 ในปี 1851 คืออะไร?",
    "context": "CREATE TABLE table_name_54 (Id VARCHAR)"
  },
  {
    "answer": "SELECT stage AS winner FROM table_name_38 WHERE start_of_stage = \"cauterets\"",
    "question_en": "Who was the stage winner when the start of stage is Cauterets?",
    "question_th": "ใครคือผู้ชนะบนเวทีเมื่อ 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_en": "Who was the stage winner when the stage was more than 10 and yellow jersey was Joseph Planckaert?",
    "question_th": "ใครเป็นผู้ชนะบนเวทีเมื่อเวทีเกิน 10 คน และเสื้อเหลืองคือ 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_en": "who was the Stage winner when the stage was smaller than 16, earlier than 1986, and a distance (km) was 19.6?",
    "question_th": "ใครเป็นผู้ชนะสเตจเมื่อสเตจเล็กกว่า 16 ปี ก่อนปี 1986 และระยะทาง (กม.) เท่ากับ 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_en": "What year was yellow jersey of Jacques Anquetil?",
    "question_th": "เสื้อเหลืองของ 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_en": "What's the GPU model that has sSpec number SR16Z(c0)?",
    "question_th": "GPU รุ่นใดที่มีหมายเลข sSpec 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_en": "What's the L3 cache that has a low power part number?",
    "question_th": "แคช L3 ที่มีหมายเลขชิ้นส่วนพลังงานต่ำคืออะไร",
    "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_en": "What's the GPU frequency that has ultra-low power in cores?",
    "question_th": "ความถี่ GPU ที่มีพลังงานต่ำเป็นพิเศษในคอร์คือเท่าใด",
    "context": "CREATE TABLE table_name_87 (gpu_frequency VARCHAR, cores VARCHAR)"
  },
  {
    "answer": "SELECT cores FROM table_name_89 WHERE part_number_s_ = \"cl8064701477202\"",
    "question_en": "What's the cores with the part number cl8064701477202?",
    "question_th": "แกนอะไรที่มีหมายเลขชิ้นส่วน 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_en": "What is the To par for the player that won in 2003, with a total larger than 145?",
    "question_th": "ค่าพาร์สำหรับผู้เล่นที่ชนะในปี 2546 ด้วยสกอร์รวมมากกว่า 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_en": "What is United States total in the year(s) won of 2000 , 2005 , 2006?",
    "question_th": "ยอดรวมของสหรัฐอเมริกาในปี 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_en": "Who was the player from the United States, with a total larger than 145?",
    "question_th": "ใครคือผู้เล่นจากสหรัฐอเมริกาที่มีจำนวนรวมมากกว่า 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_en": "What is the Year won for the player with a To par of 8?",
    "question_th": "ปีที่ชนะสำหรับผู้เล่นที่มีพาร์ถึง 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_en": "What is the To par  of the United States, when the Total was 145, in 2004?",
    "question_th": "ค่าพาร์ของสหรัฐอเมริกาเมื่อยอดรวมอยู่ที่ 145 ในปี 2547 คืออะไร",
    "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_en": "What is the fewest tally for the game played at Vasil Levski National Stadium, Sofia, Bulgaria?",
    "question_th": "เกมนี้เล่นที่สนามกีฬาแห่งชาติ วาซิล เลฟสกี้, โซเฟีย, บัลแกเรีย น้อยที่สุดคือเท่าใด?",
    "context": "CREATE TABLE table_name_9 (tally INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_28 WHERE date = \"28 march 2009\"",
    "question_en": "For what competition was the game played on 28 March 2009?",
    "question_th": "เกมนี้เล่นในวันที่ 28 มีนาคม พ.ศ. 2552 สำหรับการแข่งขันใด?",
    "context": "CREATE TABLE table_name_28 (competition VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MIN(rank) FROM table_name_81 WHERE lane = 7",
    "question_en": "The swimmer in lane 7 has what as the smallest rank?",
    "question_th": "นักว่ายน้ำในเลน 7 มียศอะไรน้อยที่สุด?",
    "context": "CREATE TABLE table_name_81 (rank INTEGER, lane VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_88 WHERE name = \"aurore mongel\"",
    "question_en": "Swimmer Aurore Mongel has what nationality?",
    "question_th": "นักว่ายน้ำ Aurore Mongel มีสัญชาติอะไร?",
    "context": "CREATE TABLE table_name_88 (nationality VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(lane) FROM table_name_50 WHERE name = \"jiao liuyang\"",
    "question_en": "Swimmer Jiao Liuyang has what for the sum of lane?",
    "question_th": "นักว่ายน้ำ Jiao Liuyang ได้อะไรจากผลรวมของเลน?",
    "context": "CREATE TABLE table_name_50 (lane VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_42 WHERE lane < 4 AND rank > 4",
    "question_en": "For the swimmer in the lane less than 4, and is ranked greater than 4 what was the time?",
    "question_th": "สำหรับนักว่ายน้ำในเลนน้อยกว่า 4 และอันดับมากกว่า 4 กี่โมงคะ?",
    "context": "CREATE TABLE table_name_42 (time VARCHAR, lane VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_20 WHERE name = \"audrey lacroix\"",
    "question_en": "Swimmer Audrey Lacroix finished in what time?",
    "question_th": "นักว่ายน้ำ Audrey Lacroix จบในเวลากี่โมง?",
    "context": "CREATE TABLE table_name_20 (time VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_12 WHERE notes = \"1:48.58\"",
    "question_en": "In which competition was Moradi's time 1:48.58?",
    "question_th": "รายการใดที่โมราดีทำเวลาได้ 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_en": "In which event did Moradi compete and finish in 2nd at the Asian Championships in Kobe, Japan held after 2005?",
    "question_th": "โมราดีลงแข่งขันและจบอันดับที่ 2 ในการแข่งขันชิงแชมป์เอเชียที่เมืองโกเบ ประเทศญี่ปุ่น ซึ่งจัดขึ้นหลังปี 2548 ในงานใด",
    "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_en": "What competition was held earlier than 2007 and has 7434 in the notes field?",
    "question_th": "การแข่งขันใดที่จัดขึ้นก่อนปี 2550 และมี 7434 ในฟิลด์บันทึกย่อ",
    "context": "CREATE TABLE table_name_47 (competition VARCHAR, year VARCHAR, notes VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_86 WHERE notes = \"7860\"",
    "question_en": "What event has 7860 notes?",
    "question_th": "เหตุการณ์อะไรมี 7860 โน้ต?",
    "context": "CREATE TABLE table_name_86 (event VARCHAR, notes VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_81 WHERE notes = \"7964 pb\"",
    "question_en": "What venue has 7964 pb notes?",
    "question_th": "สถานที่ใดมีโน้ต 7964 pb?",
    "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é pérez-francés\"",
    "question_en": "How many times is vuelta wins when points is more than 0, country is spain and the name is josé pérez-francés?",
    "question_th": "วูเอลตาชนะกี่ครั้งเมื่อคะแนนมากกว่า 0 ประเทศคือสเปน และชื่อคือโฮเซ่ เปเรซ-ฟรองซ์",
    "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_en": "Which constituency number has a name of Timarni?",
    "question_th": "เขตเลือกตั้งใดมีชื่อติมาร์นี?",
    "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_en": "What is the reserved for value for constituency number 132?",
    "question_th": "เขตสงวนหมายเลข 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_en": "What is the place of the player with a 72-70-67=209 score?",
    "question_th": "ผู้เล่นที่มีคะแนน 72-70-67=209 อยู่ในอันดับที่ใด?",
    "context": "CREATE TABLE table_name_51 (place VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_87 WHERE player = \"hunter mahan\"",
    "question_en": "What is the to par of player hunter mahan?",
    "question_th": "อะไรคือสิ่งที่เทียบเท่ากับ 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_en": "What is the to par of canada?",
    "question_th": "ค่าพาร์ของแคนาดาคืออะไร?",
    "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_en": "What album came out before 2008 called We're not Made in the USA?",
    "question_th": "อัลบั้มใดที่ออกมาก่อนปี 2008 ชื่อ 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_en": "What is the average year for Faces?",
    "question_th": "Faces เฉลี่ยปีละเท่าไร?",
    "context": "CREATE TABLE table_name_61 (year INTEGER, title VARCHAR)"
  },
  {
    "answer": "SELECT AVG(election) FROM table_name_69 WHERE municipality = \"livorno\"",
    "question_en": "What is livorno's average election?",
    "question_th": "การเลือกตั้งเฉลี่ยของ Livorno คืออะไร?",
    "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_en": "Which Election has a Party of democratic party, and a Mayor of leonardo betti?",
    "question_th": "การเลือกตั้งใดมีพรรคประชาธิปไตยและมีนายกเทศมนตรีของลีโอนาร์โด เบตติ",
    "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_en": "Which Inhabitants have a Mayor of matteo renzi, and an Election larger than 2009?",
    "question_th": "ผู้อยู่อาศัยคนใดมีนายกเทศมนตรีของมัตเตโอ เรนซี และมีการเลือกตั้งใหญ่กว่าปี 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_en": "Which Inhabitants have a Party of democratic party, and a Municipality of florence, and an Election smaller than 2009?",
    "question_th": "ผู้อยู่อาศัยคนใดบ้างที่มีพรรคของพรรคประชาธิปไตย และเทศบาลเมืองฟลอเรนซ์ และการเลือกตั้งที่เล็กกว่าปี 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_en": "Which Seatshave a Share of votes of 18%, and a Share of seats of 3%, and a General election smaller than 1992?",
    "question_th": "ที่นั่งใดมีส่วนแบ่งเสียง 18% และส่วนแบ่งที่นั่ง 3% และการเลือกตั้งทั่วไปน้อยกว่าปี 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_en": "How much General election has a Share of votes of 17%?",
    "question_th": "การเลือกตั้งทั่วไปมีส่วนแบ่งเสียง 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_en": "Which Seats have a Share of votes of 18%, and a Share of seats of 3%, and a General election larger than 1992?",
    "question_th": "ที่นั่งใดมีส่วนแบ่งเสียง 18% และมีส่วนแบ่งที่นั่ง 3% และการเลือกตั้งทั่วไปที่ใหญ่กว่าปี 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–liberal alliance\" AND general_election = 1983",
    "question_en": "Which Share of seats has Seats smaller than 52, and a Name of sdp–liberal alliance, and a General election of 1983?",
    "question_th": "ส่วนแบ่งที่นั่งใดที่มีที่นั่งน้อยกว่า 52 ที่นั่ง และชื่อของพันธมิตร sdp–เสรีนิยม และการเลือกตั้งทั่วไปในปี 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 × 256 kb\" AND turbo = \"5/8\"",
    "question_en": "What is the voltage when the L2 cache is 2 × 256 kb and the turbo is 5/8?",
    "question_th": "แรงดันไฟฟ้าเมื่อแคช L2 คือ 2 × 256 kb และเทอร์โบคือ 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_en": "What is the L2 cache with ec number of slbmm(c2)slbsr(k0)?",
    "question_th": "แคช L2 ที่มีหมายเลข ec ของ 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_en": "What is the voltage when there are 2 cores, turbo is 5/8 and the release date is September 2010?",
    "question_th": "เมื่อมี 2 คอร์ เทอร์โบเป็น 5/8 และกำหนดวางจำหน่ายเดือนกันยายน 2553 จะแรงขนาดไหน?",
    "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–1.4v\" AND part_number_s_ = \"cn80617004458ab\"",
    "question_en": "What is the frequency for I/O bus of DMI, voltage of 0.725–1.4v and part cn80617004458ab?",
    "question_th": "ความถี่ของบัส I/O ของ DMI แรงดันไฟฟ้า 0.725–1.4v และชิ้นส่วน 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_en": "What is I/O bus when socket is socket g1bga-1288?",
    "question_th": "บัส I/O คืออะไรเมื่อซ็อกเก็ตเป็นซ็อกเก็ต 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_en": "What is the memory when release date is January 2010 and socket is BGA-1288?",
    "question_th": "หน่วยความจำเมื่อวันวางจำหน่ายคือเดือนมกราคม 2010 และซ็อกเก็ตคือ 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_en": "How many Premierships have Nicknamed of kangaroos?",
    "question_th": "มีกี่พรีเมียร์ชิพที่มีชื่อเล่นว่าจิงโจ้?",
    "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_en": "What is the IHSAA class for Muncie Burris?",
    "question_th": "ชั้นเรียน IHSAA สำหรับ 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_en": "What is the IHSAA class for Muncie Cowan?",
    "question_th": "ชั้นเรียน IHSAA สำหรับ 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_en": "What is the location where enrollment is 266 and and the county is 18 Delaware?",
    "question_th": "สถานที่ที่ลงทะเบียนคือ 266 และเขตคือ 18 เดลาแวร์คืออะไร",
    "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_en": "What is the enrollment at the school with IHSAA class A and where mascot is the Vikings?",
    "question_th": "การลงทะเบียนที่โรงเรียนกับ IHSAA คลาส A คืออะไร และไวกิ้งอยู่ที่ไหน",
    "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_en": "What is the IHSAA class for the school where the mascot is the Rebels?",
    "question_th": "ชั้นเรียน IHSAA สำหรับโรงเรียนที่มีตัวนำโชคเป็นกบฏคืออะไร",
    "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_en": "What is the location with enrollment of 316 and county is 68 Randolph?",
    "question_th": "สถานที่ที่มีการลงทะเบียน 316 และเคาน์ตีคือ 68 แรนดอล์ฟคืออะไร",
    "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_en": "What result took pace in 2009 and had an award of sopot international song festival?",
    "question_th": "ผลลัพธ์อะไรเกิดขึ้นอย่างรวดเร็วในปี 2009 และได้รับรางวัลจากเทศกาลเพลงนานาชาติโซพอต?",
    "context": "CREATE TABLE table_name_17 (result VARCHAR, year VARCHAR, award VARCHAR)"
  },
  {
    "answer": "SELECT award FROM table_name_88 WHERE year > 2009",
    "question_en": "Which award took place after 2009?",
    "question_th": "รางวัลใดเกิดขึ้นหลังจากปี 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_en": "What year had the category of best international newcomer?",
    "question_th": "ปีไหนที่มีผู้มาใหม่ระดับนานาชาติที่ดีที่สุด?",
    "context": "CREATE TABLE table_name_53 (year VARCHAR, category VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_11 WHERE opposition = \"clare\"",
    "question_en": "Which Player has an Opposition of clare?",
    "question_th": "ผู้เล่นคนไหนมีฝ่ายตรงข้ามกับแคลร์?",
    "context": "CREATE TABLE table_name_11 (player VARCHAR, opposition VARCHAR)"
  },
  {
    "answer": "SELECT total FROM table_name_40 WHERE player = \"matt ruth\"",
    "question_en": "Which Total has a Player of matt ruth?",
    "question_th": "Total คนไหนที่มีผู้เล่นของ 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_en": "Which Rank has a Player of matt ruth?",
    "question_th": "ผู้เล่น Matt Ruth มีอันดับไหน?",
    "context": "CREATE TABLE table_name_62 (rank INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT SUM(byes) FROM table_name_27 WHERE draws < 0",
    "question_en": "How many byes were there recorded with 0 draws?",
    "question_th": "เสมอกัน 0 ครั้ง บันทึกไว้กี่รอบ?",
    "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_en": "How many draws occured with a record of 10 losses, and 6 wins?",
    "question_th": "เสมอกันกี่ครั้งโดยสถิติแพ้ 10 นัดและชนะ 6 นัด?",
    "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_en": "How many byes were there with an Against of 1655 and more than 10 wins?",
    "question_th": "มีการบายไปกี่ครั้งกับ Against of 1655 และชนะมากกว่า 10 ครั้ง?",
    "context": "CREATE TABLE table_name_51 (byes INTEGER, against VARCHAR, wins VARCHAR)"
  },
  {
    "answer": "SELECT AVG(against) FROM table_name_93 WHERE byes < 3",
    "question_en": "What was the against were there were less than 3 byes?",
    "question_th": "อะไรคือสิ่งที่ขัดกับที่มีน้อยกว่า 3 บาย?",
    "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_en": "What's the general classification of Ignatas Konovalovas when the mountains classification was Stefano Garzelli and points classification was Danilo Di Luca?",
    "question_th": "การจัดประเภททั่วไปของ Ignatas Konovalovas คืออะไร เมื่อจำแนกตามภูเขาคือ Stefano Garzelli และการจัดคะแนนคือ 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_en": "What's the mountains classification when the points classification is Alessandro Petacchi and the general classification is Danilo Di Luca?",
    "question_th": "การแบ่งประเภทภูเขาจะเป็นอย่างไรเมื่อการแบ่งประเภทคะแนนคือ Alessandro Petacchi และการแบ่งประเภททั่วไปคือ 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_en": "Who was the winner of Stage 9 when then general classification was Danilo Di Luca?",
    "question_th": "ใครคือผู้ชนะสเตจที่ 9 เมื่อประเภททั่วไปคือดานิโล ดิ ลูก้า?",
    "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_en": "What is the stage of winner Carlos Sastre when the general classification was Denis Menchov?",
    "question_th": "อะไรคือขั้นตอนของผู้ชนะ Carlos Sastre เมื่อประเภททั่วไปคือ 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_en": "What's the points classification of Stage 18 when the general classification was Denis Menchov?",
    "question_th": "การจัดประเภทคะแนนของสเตจที่ 18 เมื่อการจัดประเภททั่วไปคือเดนิส เมนโชฟคืออะไร",
    "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_en": "What's the mountains classification of winner Carlos Sastre when the general classification is Denis Menchov?",
    "question_th": "ผู้ชนะประเภทภูเขา Carlos Sastre เมื่อประเภททั่วไปคือ 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_en": "Who is team 1 with an agg of 2-5?",
    "question_th": "ทีม 1 ที่มีคะแนนรวม 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_en": "Who was the director of the episode Rebel Rabbit?",
    "question_th": "ใครเป็นผู้กำกับตอน 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_en": "How many years have claudia beni as the artist?",
    "question_th": "คลอเดีย เบนิ เป็นศิลปินมากี่ปีแล้ว?",
    "context": "CREATE TABLE table_name_3 (year INTEGER, artist VARCHAR)"
  },
  {
    "answer": "SELECT song FROM table_name_94 WHERE artist = \"filipa sousa\"",
    "question_en": "What song has filipa sousa as an artist?",
    "question_th": "เพลงอะไรที่มี Filipa sousa เป็นศิลปิน?",
    "context": "CREATE TABLE table_name_94 (song VARCHAR, artist VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(round) FROM table_name_24 WHERE surface = \"wintry asphalt\"",
    "question_en": "How many rounds have a Surface of wintry asphalt?",
    "question_th": "มีกี่รอบที่มีพื้นผิวของยางมะตอยหน้าหนาว?",
    "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_en": "Which Surface has a Support Category of jwrc/pwrc, and a Round larger than 5?",
    "question_th": "Surface ใดมีหมวดหมู่การสนับสนุนเป็น jwrc/pwrc และรอบที่ใหญ่กว่า 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_en": "Which Rally Name has a Surface of asphalt and gravel?",
    "question_th": "ชื่อแรลลี่ใดมีพื้นผิวเป็นยางมะตอยและกรวด?",
    "context": "CREATE TABLE table_name_17 (rally_name VARCHAR, surface VARCHAR)"
  },
  {
    "answer": "SELECT dates FROM table_name_6 WHERE rally_hq = \"kingscliff\"",
    "question_en": "Which dates have a Rally HQ of kingscliff?",
    "question_th": "วันไหนที่มีกองบัญชาการแรลลี่ของ 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_en": "Which Round has a Rally HQ of salou?",
    "question_th": "รอบใดมีกองบัญชาการแรลลี่ของซาลู?",
    "context": "CREATE TABLE table_name_80 (round INTEGER, rally_hq VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_31 WHERE date = \"december 18, 2005\"",
    "question_en": "Who were the Opponents on December 18, 2005?",
    "question_th": "ใครคือฝ่ายตรงข้ามในวันที่ 18 ธันวาคม พ.ศ. 2548",
    "context": "CREATE TABLE table_name_31 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT coach FROM table_name_82 WHERE runner_up = \"northeastern\" AND score = \"6–3\"",
    "question_en": "Which Coach has a Runner-up of northeastern and a Score of 6–3?",
    "question_th": "โค้ชคนไหนได้รองแชมป์ภาคอีสานและคะแนน 6–3?",
    "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_en": "Name the Score of the Year larger than 2004 and a Runner-up of northeastern?",
    "question_th": "ตั้งชื่อคะแนนแห่งปีให้มากกว่าปี 2547 และรองแชมป์ภาคอีสาน?",
    "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_en": "Name the Runner-up of a Year in 1963?",
    "question_th": "ตั้งชื่อรองชนะเลิศแห่งปี 2506 หรือไม่?",
    "context": "CREATE TABLE table_name_18 (runner_up VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT MAX(year) FROM table_name_71 WHERE score = \"4–1\"",
    "question_en": "Name the highest Year with a Score of 4–1?",
    "question_th": "ตั้งชื่อปีสูงสุดด้วยคะแนน 4–1 หรือไม่?",
    "context": "CREATE TABLE table_name_71 (year INTEGER, score VARCHAR)"
  },
  {
    "answer": "SELECT start FROM table_name_55 WHERE qual = \"207.590\"",
    "question_en": "Which Start has a Qual of 207.590?",
    "question_th": "สตาร์ทไหนมี Qual 207.590?",
    "context": "CREATE TABLE table_name_55 (start VARCHAR, qual VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_64 WHERE rank = \"25\"",
    "question_en": "Which Year has a Rank of 25?",
    "question_th": "ปีใดมีอันดับ 25?",
    "context": "CREATE TABLE table_name_64 (year VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT laps FROM table_name_30 WHERE finish = \"15\"",
    "question_en": "Which Laps have a Finish of 15?",
    "question_th": "รอบใดมีเส้นชัยเป็น 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_en": "Which Qual has Laps smaller than 195, and a Rank of 25?",
    "question_th": "รอบคัดเลือกใดมีรอบน้อยกว่า 195 และอันดับ 25",
    "context": "CREATE TABLE table_name_74 (qual VARCHAR, laps VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_11 WHERE finish = \"8\"",
    "question_en": "Which Rank has a Finish of 8?",
    "question_th": "อันดับไหนมีเส้นชัยเป็น 8?",
    "context": "CREATE TABLE table_name_11 (rank VARCHAR, finish VARCHAR)"
  },
  {
    "answer": "SELECT MAX(rank) FROM table_name_58 WHERE heat > 7",
    "question_en": "Which Rank has a Heat larger than 7?",
    "question_th": "อันดับใดมีฮีตมากกว่า 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_en": "Which Heat has a Nation of australia, and a Rank larger than 7?",
    "question_th": "Heat ใดมีชาติออสเตรเลียและมีอันดับมากกว่า 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_en": "What is the average number of podiums for drivers with under 12 finishes and under 1 start?",
    "question_th": "จำนวนโพเดียมเฉลี่ยของนักแข่งที่เข้าเส้นชัยต่ำกว่า 12 ครั้งและออกสตาร์ทต่ำกว่า 1 ครั้งโดยเฉลี่ยคือเท่าใด",
    "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_en": "What is the number of wins associated with 1 point, more than 1 start, and under 7 finishes?",
    "question_th": "จำนวนชัยชนะที่เกี่ยวข้องกับ 1 แต้ม มากกว่า 1 ออกสตาร์ท และน้อยกว่า 7 จบคืออะไร?",
    "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_en": "What is the number of finishes associated with 13 starts, more than 169 points, and 96 stage wins?",
    "question_th": "จำนวนการจบการแข่งขันที่เกี่ยวข้องกับการออกสตาร์ท 13 ครั้ง มากกว่า 169 แต้ม และการชนะสเตจ 96 เป็นเท่าใด",
    "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_en": "Who directed the episode with production code 40811-005?",
    "question_th": "ใครกำกับตอนที่มีรหัสการผลิต 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_en": "What is the title of the episode with production code 40811-002?",
    "question_th": "ชื่อตอนที่มีรหัสการผลิต 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_en": "what is the tournament when the score is 2-6, 4-6?",
    "question_th": "การแข่งขันจะเป็นเช่นไรเมื่อสกอร์ 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_en": "what is the outcome on april 24, 1988?",
    "question_th": "ผลลัพธ์ในวันที่ 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_en": "What is the date when the tournament is san diego and the opponent is ann grossman?",
    "question_th": "วันที่ใดที่ทัวร์นาเมนต์คือซานดิเอโกและคู่ต่อสู้คือแอน กรอสแมน?",
    "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_en": "what is the outcome when the tournament is san diego and the opponent is ann grossman?",
    "question_th": "ผลลัพธ์จะเป็นเช่นไรเมื่อทัวร์นาเมนต์คือซานดิเอโกและคู่ต่อสู้คือแอน กรอสแมน?",
    "context": "CREATE TABLE table_name_40 (outcome VARCHAR, tournament VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_79 WHERE opponent = \"ann grossman\"",
    "question_en": "what is the score when the opponent is ann grossman?",
    "question_th": "เมื่อคู่ต่อสู้คือแอน กรอสแมน ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_79 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_83 WHERE tournament = \"tokyo\"",
    "question_en": "what is the outcome when the tournament is tokyo?",
    "question_th": "ผลการแข่งขันที่โตเกียวจะเป็นอย่างไร?",
    "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_en": "In what Year was the 32nd Ceremony with winner William A. Horning in the Film North by Northwest?",
    "question_th": "พิธีครั้งที่ 32 กับผู้ชนะ William A. Horning ใน 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_en": "In what Year was the Film Your National Gallery winner?",
    "question_th": "ผู้ชนะรางวัล Film Your National Gallery ในปีใด",
    "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_en": "What is the Film with winner Jerome Kern in the 19th Ceremony?",
    "question_th": "ภาพยนตร์ที่มีผู้ชนะเจอโรม เคิร์นในพิธีครั้งที่ 19 คืออะไร?",
    "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_en": "What is the Academy Award for the Film Educating Peter?",
    "question_th": "รางวัลออสการ์สาขาภาพยนตร์การให้ความรู้ปีเตอร์คืออะไร?",
    "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_en": "Which Number of electorates (2009) has 188 Constituents?",
    "question_th": "ผู้มีสิทธิเลือกตั้งจำนวนใด (พ.ศ. 2552) มีผู้มีสิทธิเลือกตั้ง 188 คน",
    "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 = −5(72 - 71 - 68 = 211)",
    "question_en": "Who is the runner(s)-up with a winning score of −5 (72-71-68=211)?",
    "question_th": "รองชนะเลิศคือใครด้วยคะแนนชนะ -5 (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_en": "What date was there a playoff on the margin of victory during the Shirley Englehorn Invitational?",
    "question_th": "การแข่งขันรอบตัดเชือกจะมีขึ้นในวันที่ใดซึ่งใกล้จะได้ชัยชนะระหว่างการแข่งขัน 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_en": "Who is the runner(s)-up for the Lady Carling Open with 3 strokes margin of victory?",
    "question_th": "ใครคือรองชนะเลิศรายการ Lady Carling Open ด้วยชัยชนะ 3 สโตรก?",
    "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_en": "What is the attendance in a week larter than 4, on December 6, 1992?",
    "question_th": "ผู้เข้าร่วมในหนึ่งสัปดาห์หลังจากวันที่ 4 ในวันที่ 6 ธันวาคม พ.ศ. 2535 เป็นเท่าใด",
    "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_en": "What week has a Date of October 4, 1992?",
    "question_th": "สัปดาห์ใดมีวันที่ 4 ตุลาคม 2535?",
    "context": "CREATE TABLE table_name_78 (week INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_77 WHERE result = \"l 37-3\"",
    "question_en": "What is the date when the result was l 37-3?",
    "question_th": "ผลคือวันที่เท่าไหร่ครับ 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_en": "What is the attendance when the opponent was the Houston Oilers?",
    "question_th": "การเข้าร่วมเมื่อคู่ต่อสู้คือฮุสตันออยเลอร์สเป็นอย่างไร?",
    "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_en": "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?",
    "question_th": "เลนใดมีเวลาตอบสนองน้อยกว่า 0.199 และประเทศของสหรัฐอเมริกา และชื่อของ muna lee และเวลาที่มากกว่า 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_en": "How many Lanes have a Country of jamaica, and a Name of kerron stewart, and a Time larger than 22?",
    "question_th": "มีกี่ถนนที่มีประเทศจาเมกา และชื่อเคอร์รอน สจ๊วต และมีเวลามากกว่า 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_en": "How many Times have a Reaction Time larger than 0.17500000000000002, and a Lane of 3?",
    "question_th": "กี่ครั้งที่มีเวลาตอบสนองมากกว่า 0.17500000000000002 และเลนเป็น 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_en": "Which Lane has a Country of united states, and a Time smaller than 22.01, and a Reaction Time smaller than 0.193?",
    "question_th": "Lane ใดมีประเทศเป็นสหรัฐอเมริกา และ Time น้อยกว่า 22.01 และเวลา Reaction Time น้อยกว่า 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_en": "What's the ladder position when team is less than 10 and the Finals qualifications were DNQ?",
    "question_th": "ตำแหน่งบันไดเมื่อทีมน้อยกว่า 10 และคุณสมบัติรอบชิงชนะเลิศคือ 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_en": "What is the total teams during the 2012-13 season?",
    "question_th": "จำนวนทีมทั้งหมดในฤดูกาล 2012-13 เป็นเท่าใด?",
    "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_en": "What's the ACL qualification when the minor ladder position is 5th and the finals qualifications were DNQ?",
    "question_th": "คุณสมบัติ ACL จะเป็นอย่างไรเมื่อตำแหน่งบันไดรองอันดับที่ 5 และคุณสมบัติรอบชิงชนะเลิศคือ 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_en": "What's the finals qualification during the 2009-10 season?",
    "question_th": "การเข้ารอบชิงชนะเลิศในฤดูกาล 2009-10 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_88 (finals_qualification VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT AVG(lib_dem) FROM table_name_87 WHERE conservative < 0",
    "question_en": "Name the the average Lib Dem with Conservative smaller than 0?",
    "question_th": "ตั้งชื่อค่าเฉลี่ย Lib Dem ด้วย Conservative ที่น้อยกว่า 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_en": "Name the lowest Green with a Year larger than 2010, and a Labour larger than 29? Question 3",
    "question_th": "ตั้งชื่อสีเขียวต่ำสุดโดยปีที่ใหญ่กว่าปี 2010 และแรงงานที่ใหญ่กว่า 29 คำถามที่ 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_en": "Name the average Independent with a Green larger than 7, and a Conservative smaller than 0?",
    "question_th": "ตั้งชื่อค่าเฉลี่ยอิสระด้วยสีเขียวมากกว่า 7 และอนุรักษ์นิยมน้อยกว่า 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_en": "Name the highest Labour with Lib Dem larger than 21?",
    "question_th": "ตั้งชื่อแรงงานสูงสุดที่มี Lib Dem มากกว่า 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_en": "What is the score in the final of the tournament with a clay surface on 18 April 2011?",
    "question_th": "คะแนนในรอบชิงชนะเลิศของทัวร์นาเมนท์ผิวดินเมื่อวันที่ 18 เมษายน 2554 เป็นเท่าใด?",
    "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_en": "What is the score in the final of the tournament with a hard surface?",
    "question_th": "สกอร์รอบชิงชนะเลิศของทัวร์นาเมนต์แบบพื้นผิวแข็งเป็นเท่าไหร่?",
    "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_en": "Who is the opponent in the final on 24 November 2008?",
    "question_th": "คู่ต่อสู้ในรอบชิงชนะเลิศวันที่ 24 พฤศจิกายน พ.ศ. 2551 คือใคร?",
    "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_en": "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?",
    "question_th": "ฝ่ายตรงข้ามในเกมคืออะไรโดยมีผู้เข้าร่วม 64,900 คนในสัปดาห์ก่อน 15 คนและผลการแข่งขัน 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_en": "What is the Week of the game with an Attendance of 64,900 and a Result of L 34-13?",
    "question_th": "สัปดาห์ของเกมที่มีผู้เข้าร่วม 64,900 คนและผลการแข่งขัน 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_en": "What is the Week of the game against Minnesota Vikings?",
    "question_th": "สัปดาห์ของเกมกับ 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_en": "What is the Week of the game against Seattle Seahawks?",
    "question_th": "สัปดาห์ของเกมกับ 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_en": "Which Total Goals have an FA Cup Goals of 0, and an FA Cup Apps of 3, and a Position of fw?",
    "question_th": "ประตูรวมใดที่มีประตู FA Cup เป็น 0 และ FA Cup Apps เป็น 3 และตำแหน่ง 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_en": "What year was Caroline Medina Miss Fire (3rd Runner-up)?",
    "question_th": "Caroline Medina Miss Fire (รองอันดับ 3) เมื่อปีใด",
    "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_en": "Who won Miss Air (1st Runner-up) when Catherine Untalan was Miss Water (2nd Runner-up) earlier than 2007?",
    "question_th": "ใครได้รับรางวัล Miss Air (รองชนะเลิศอันดับ 1) เมื่อ Catherine Untalan เป็น Miss Water (รองชนะเลิศอันดับ 2) ก่อนปี 2550",
    "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_en": "what is the name when the sr no is less than 74 and floors is more than 36?",
    "question_th": "ชื่ออะไรเมื่อ sr no น้อยกว่า 74 และชั้นมากกว่า 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_en": "how many times is the building type residential and the locale yashodham?",
    "question_th": "อาคารประเภทที่อยู่อาศัยและสถานที่ 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_en": "what is the least floors when the building type is residential and the sr no is 8?",
    "question_th": "อาคารประเภทอาคารพักอาศัยคือชั้นใดน้อยที่สุด และหมายเลข 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_en": "what is the height when the locale is nepean sea road, floors is more than 30 and sr no is 58?",
    "question_th": "ความสูงเมื่อสถานที่คือถนนทะเลเนเปียน ชั้นมากกว่า 30 และหมายเลข 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_en": "what is the name that had 46 floors?",
    "question_th": "มี 46 ชั้นชื่ออะไร?",
    "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_en": "Which player from A-League 39 (110) has the highest games per goal?",
    "question_th": "ผู้เล่นคนใดจากเอลีก 39 (110) มีเกมต่อประตูสูงสุด?",
    "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_en": "What player had a finals score of 0 (10)?",
    "question_th": "ผู้เล่นคนใดมีคะแนนรอบชิงชนะเลิศ 0 (10)?",
    "context": "CREATE TABLE table_name_5 (name VARCHAR, finals VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_8 WHERE total = \"8 (24)\"",
    "question_en": "Which player has a total of 8 (24)?",
    "question_th": "ผู้เล่นคนไหนมีทั้งหมด 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_en": "What's the week when the result was W 38-24 and attendance was less than 43,449?",
    "question_th": "สัปดาห์ใดที่ผลการแข่งขันคือ W 38-24 และมีผู้เข้าร่วมน้อยกว่า 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_en": "What round had a time of 0:39?",
    "question_th": "รอบใดมีเวลา 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_en": "What was the location of the competition with a Rank-Final of 1st and a Score-Qualifying under 28.975?",
    "question_th": "สถานที่ใดของการแข่งขันที่มีอันดับรอบชิงชนะเลิศอันดับที่ 1 และคะแนนรอบคัดเลือกต่ำกว่า 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_en": "What competition had a Rank-Qualifying of 1st and a ball apparatus?",
    "question_th": "การแข่งขันใดมีอันดับ - รอบคัดเลือกเป็นที่ 1 และอุปกรณ์ลูกฟุตบอล?",
    "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_en": "What is the date for the ship Afrika, with nationality Great Britain?",
    "question_th": "วันที่เรือ Afrika พร้อมสัญชาติบริเตนใหญ่คือเมื่อใด?",
    "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_en": "What is the highest tonnage for a ship from Great Britain named Newton Ash?",
    "question_th": "น้ำหนักสูงสุดสำหรับเรือจากบริเตนใหญ่ชื่อ 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_en": "What was the nationality of the ship named Toward?",
    "question_th": "เรือลำนี้ชื่อ 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_en": "What was the nationality of the sunk ship named Rinos?",
    "question_th": "เรือที่จมชื่อรินอสมีสัญชาติอะไร",
    "context": "CREATE TABLE table_name_52 (nationality VARCHAR, fate VARCHAR, ship VARCHAR)"
  },
  {
    "answer": "SELECT comp FROM table_name_3 WHERE score = \"489.5\"",
    "question_en": "What is the Comp of the Shooter with a Score of 489.5?",
    "question_th": "Comp ของ Shooter กับคะแนน 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_en": "What is the Date of Shooter New Targets from 1989's record?",
    "question_th": "วันที่ของ Shooter New Targets จากบันทึกของปี 1989 คืออะไร?",
    "context": "CREATE TABLE table_name_39 (date VARCHAR, shooter VARCHAR)"
  },
  {
    "answer": "SELECT AVG(total) FROM table_name_58 WHERE nation = \"spain\"",
    "question_en": "What is the average total value for Spain?",
    "question_th": "มูลค่ารวมโดยเฉลี่ยของสเปนคือเท่าไร?",
    "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_en": "What is the sum of silvers for countries in rank 8 with totals over 3?",
    "question_th": "ผลรวมของเงินสำหรับประเทศอันดับ 8 ที่มียอดรวมมากกว่า 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_en": "What is the average total for countries with under 3 golds and 0 silvers?",
    "question_th": "ผลรวมโดยเฉลี่ยสำหรับประเทศที่มีต่ำกว่า 3 เหรียญทองและ 0 เหรียญเงินคือเท่าใด",
    "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_en": "What is the Studio of the Film directed by Paul Greengrass?",
    "question_th": "สตูดิโอของภาพยนตร์ที่กำกับโดยพอล กรีนกราสส์คืออะไร?",
    "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_en": "Who was the Director of Kung Fu Panda 2?",
    "question_th": "ใครเป็นผู้อำนวยการของ 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_en": "What is Year is Walt Disney Pictures Imagemovers Digital?",
    "question_th": "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_en": "What is the Year of Rio?",
    "question_th": "ปีแห่งริโอคืออะไร?",
    "context": "CREATE TABLE table_name_14 (year VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT AVG(total) FROM table_name_56 WHERE player = \"craig stadler\"",
    "question_en": "What is the Total of Player Craig Stadler?",
    "question_th": "ยอดรวมของผู้เล่น 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_en": "What is the Total of the Player who won in 1998?",
    "question_th": "ผลรวมของผู้เล่นที่ชนะในปี 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_en": "What is the Total of the Player who won in 1979 with a To par of less than 11?",
    "question_th": "ผลรวมของผู้เล่นที่ชนะในปี 1979 โดยมีพาร์ต่ำกว่า 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_en": "What lane did Bronte Barratt, who had a rank larger than 4, swim in?",
    "question_th": "Bronte Barratt ซึ่งมีอันดับมากกว่า 4 ว่ายน้ำในเลนใด",
    "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_en": "In which lane did the swimmer with a time of 1:58.44 swim?",
    "question_th": "นักว่ายน้ำที่ใช้เวลา 1:58.44 ว่ายน้ำในเลนใด",
    "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_en": "In which lane did the swimmer with a time of 1:57.01 and a rank smaller than 6 swim?",
    "question_th": "นักว่ายน้ำที่มีเวลา 1:57.01 และอันดับน้อยกว่า 6 ว่ายน้ำในเลนใด",
    "context": "CREATE TABLE table_name_17 (lane INTEGER, rank VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_39 WHERE round = 4",
    "question_en": "What is the result of round 4?",
    "question_th": "ผลการแข่งขันรอบที่ 4 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_39 (result VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_11 WHERE round = 20",
    "question_en": "What venue was round 20 held at?",
    "question_th": "รอบ 20 จัดที่สนามไหนคะ?",
    "context": "CREATE TABLE table_name_11 (venue VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT report FROM table_name_9 WHERE round = 9",
    "question_en": "What is the report for round 9?",
    "question_th": "รายงานรอบ 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_en": "What is the highest rank of an athlete from Switzerland in a heat larger than 3?",
    "question_th": "นักกีฬาจากสวิตเซอร์แลนด์ที่มีอันดับสูงสุดมากกว่า 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–1911, 1913–1919\"",
    "question_en": "What were the goals for the player whose years at club were 1908–1911, 1913–1919?",
    "question_th": "อะไรคือเป้าหมายของนักเตะที่อยู่กับสโมสรในปี 1908–1911, 1913–1919?",
    "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_en": "What are the most goals listed when Jack Trehey was the player, with the listed debut year of 1902, games less than 1?",
    "question_th": "อะไรคือเป้าหมายสูงสุดที่ระบุไว้เมื่อแจ็ค ทรีเฮย์เป็นผู้เล่น โดยเปิดตัวในปี 1902 น้อยกว่า 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_en": "For player Wally Johnson, with goals larger than 0, the debut year later than 1904, and games greater than 136, what were the years at club?",
    "question_th": "สำหรับนักเตะวอลลี่ จอห์นสัน ที่ทำประตูได้มากกว่า 0 ลงสนามในปีต่อมาหลังปี 1904 และมากกว่า 136 นัด สโมสรอยู่ในช่วงปีใด",
    "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_en": "What is the highest debut year for player Joe Youlden, with goals larger than 0?",
    "question_th": "ปีที่เปิดตัวสูงสุดสำหรับผู้เล่น โจ ยูลเดน โดยมีเป้าหมายมากกว่า 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_en": "What is the lowest goals listed for player Sid O'neill, with Games larger than 1?",
    "question_th": "เป้าหมายต่ำสุดที่ระบุไว้สำหรับผู้เล่น Sid O'neill โดยที่เกมมากกว่า 1 คืออะไร?",
    "context": "CREATE TABLE table_name_91 (goals INTEGER, player VARCHAR, games VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_5 WHERE score = \"379\"",
    "question_en": "What's the date the score was 379?",
    "question_th": "คะแนนคือ 379 วันที่เท่าไร?",
    "context": "CREATE TABLE table_name_5 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT comp FROM table_name_81 WHERE score = \"393\"",
    "question_en": "What's the comp when the score was 393?",
    "question_th": "คอมพ์เมื่อคะแนนได้ 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_en": "Which College/junior/club team has a Round of 4?",
    "question_th": "ทีมวิทยาลัย/จูเนียร์/สโมสรใดมีรอบ 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_en": "What is the Population 1961 of West Sussex with a Population of 120,952 or less?",
    "question_th": "ประชากร 1961 ของ West Sussex ที่มีประชากร 120,952 หรือน้อยกว่าคือเท่าใด",
    "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_en": "What is the Population n1891 of the County with Sleaford Headquarters?",
    "question_th": "ประชากร n1891 ของเทศมณฑลที่มีสำนักงานใหญ่ Sleaford คืออะไร?",
    "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_en": "What's the mascot in Anderson for the Independent previous conference?",
    "question_th": "มาสคอตของ Anderson สำหรับการประชุมอิสระครั้งก่อนคืออะไร?",
    "context": "CREATE TABLE table_name_74 (mascot VARCHAR, previous_conference VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_99 WHERE mascot = \"spartans\"",
    "question_en": "What's the location for the Spartans?",
    "question_th": "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_en": "What's the mascot in Huntington after the year 2000?",
    "question_th": "มาสคอตในฮันติงตันหลังปี 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_en": "How many Spectators have a Date of 17 june 2006, and a Time (CET) larger than 15?",
    "question_th": "มีผู้ชมกี่คนที่มีวันที่ 17 มิถุนายน 2549 และเวลา (CET) มากกว่า 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_en": "What is the total number of cuts made when the top-25 is more than 0, and top-5 is more than 1?",
    "question_th": "จำนวนการตัดทั้งหมดที่เกิดขึ้นเมื่อ 25 อันดับแรกมากกว่า 0 และ 5 อันดับแรกมากกว่า 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_en": "What is the total number of cuts made when the events are more than 3?",
    "question_th": "จำนวนการตัดทั้งหมดที่เกิดขึ้นเมื่อมีเหตุการณ์มากกว่า 3 คือเท่าใด",
    "context": "CREATE TABLE table_name_47 (cuts_made VARCHAR, events INTEGER)"
  },
  {
    "answer": "SELECT episodes FROM table_name_13 WHERE japanese_title = \"ロト6で3億2千万円当てた男\"",
    "question_en": "What episodes had the title ロト6で3億2千万円当てた男 in Japanese?",
    "question_th": "ตอนใดมีชื่อว่า ロロт 6で3億2千万円当てた男 ในภาษาญี่ปุ่น",
    "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_en": "What Japanese title had average ratings at 9.1%?",
    "question_th": "ชื่อเรื่องญี่ปุ่นเรื่องใดมีเรตติ้งเฉลี่ยอยู่ที่ 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_en": "Which TV station had a Romaji Title Maou?",
    "question_th": "สถานีโทรทัศน์ใดมีชื่อโรมาจิ 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_en": "What Japanese title had average ratings of 9.2% on the NHK station?",
    "question_th": "รายการภาษาญี่ปุ่นเรื่องใดที่มีเรตติ้งเฉลี่ย 9.2% ในสถานี NHK",
    "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_en": "What Japanese show on NHK had average ratings of 9.2%?",
    "question_th": "รายการญี่ปุ่นเรื่องใดใน NHK ที่มีเรตติ้งเฉลี่ย 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_en": "What is the 1st leg when team 2 is Asil Lysi?",
    "question_th": "เลกแรกจะเป็นอย่างไรเมื่อทีมที่ 2 คือ อาซิล ลิซี?",
    "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_en": "What is the 2nd leg when Ermis Aradippou is the first team?",
    "question_th": "เลก 2 จะเป็นไงเมื่อ เออร์มิส อราดิปปู เป็นทีมชุดใหญ่?",
    "context": "CREATE TABLE table_name_50 (team_1 VARCHAR)"
  },
  {
    "answer": "SELECT AVG(gold) FROM table_name_40 WHERE bronze > 1",
    "question_en": "What is the average number of gold medals won among the nations that won more than 1 bronze?",
    "question_th": "จำนวนเหรียญทองโดยเฉลี่ยที่ได้รับจากประเทศที่ได้รับรางวัลมากกว่า 1 เหรียญทองแดงคือเท่าใด",
    "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_en": "What is the average number of bronze medals won among nations that won at least 1 medal and are not ranked 1st?",
    "question_th": "จำนวนเหรียญทองแดงโดยเฉลี่ยที่ได้รับจากประเทศที่ได้รับอย่างน้อย 1 เหรียญและไม่อยู่ในอันดับที่ 1 คือเท่าใด",
    "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_en": "What is the least number of gold medals won among nations ranked 1 with no silver medals?",
    "question_th": "ประเทศอันดับที่ 1 ที่ไม่มีเหรียญเงินได้เหรียญทองน้อยที่สุดคือจำนวนเท่าใด",
    "context": "CREATE TABLE table_name_8 (gold INTEGER, rank VARCHAR, silver VARCHAR)"
  },
  {
    "answer": "SELECT athlete FROM table_name_35 WHERE country = \"egypt\"",
    "question_en": "Which athlete represented the country of egypt?",
    "question_th": "นักกีฬาคนใดเป็นตัวแทนของประเทศอียิปต์?",
    "context": "CREATE TABLE table_name_35 (athlete VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT SUM(rank) FROM table_name_70 WHERE time = \"6:52.74\"",
    "question_en": "What rank did rower have with the time of 6:52.74?",
    "question_th": "นักพายได้อันดับไหนในเวลา 6:52.74?",
    "context": "CREATE TABLE table_name_70 (rank INTEGER, time VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_name_48 WHERE rank < 2",
    "question_en": "What were the notes for the player who finished with a rank smaller than 2?",
    "question_th": "อะไรคือบันทึกสำหรับผู้เล่นที่จบด้วยอันดับน้อยกว่า 2?",
    "context": "CREATE TABLE table_name_48 (notes VARCHAR, rank INTEGER)"
  },
  {
    "answer": "SELECT MAX(week) FROM table_name_51 WHERE opponent = \"carolina panthers\"",
    "question_en": "What is the highest week that has carolina panthers as the opponent?",
    "question_th": "สัปดาห์ใดที่มี Carolina Panthers เป็นคู่ต่อสู้สูงสุดคือสัปดาห์ใด?",
    "context": "CREATE TABLE table_name_51 (week INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_14 WHERE date = \"september 14, 2003\"",
    "question_en": "Which opponent has September 14, 2003 as the date?",
    "question_th": "ฝ่ายตรงข้ามคนใดที่มีวันที่ 14 กันยายน พ.ศ. 2546 เป็นวันที่?",
    "context": "CREATE TABLE table_name_14 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(week) FROM table_name_81 WHERE date = \"september 14, 2003\"",
    "question_en": "What is the highest week that has September 14, 2003 as the date?",
    "question_th": "สัปดาห์ใดที่มีวันที่ 14 กันยายน พ.ศ. 2546 เป็นวันที่สูงที่สุด?",
    "context": "CREATE TABLE table_name_81 (week INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT MIN(week) FROM table_name_19 WHERE date = \"november 30, 2003\"",
    "question_en": "What is the lowest week that has November 30, 2003 as the date?",
    "question_th": "สัปดาห์ต่ำสุดที่มีวันที่ 30 พฤศจิกายน พ.ศ. 2546 เป็นวันที่เท่าไร",
    "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_en": "Which League Goals have FA Cup Apps of 2, and Total Goals smaller than 0?",
    "question_th": "ประตูลีกใดที่มีแอป FA Cup เท่ากับ 2 และประตูรวมน้อยกว่า 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_en": "How many League Cup Goals have Total Apps of 36, and Total Goals smaller than 1?",
    "question_th": "ประตูลีกคัพมีแอปทั้งหมด 36 รายการและประตูรวมน้อยกว่า 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_en": "Which position has 5 total apps?",
    "question_th": "ตำแหน่งใดมีทั้งหมด 5 แอพ?",
    "context": "CREATE TABLE table_name_39 (position VARCHAR, total_apps VARCHAR)"
  },
  {
    "answer": "SELECT population_density__per_km²_ FROM table_name_8 WHERE change___percentage_ = \"-6.7\"",
    "question_en": "What is the population density (per km) that has -6.7 as the change (%)?",
    "question_th": "ความหนาแน่นของประชากร (ต่อกิโลเมตร) ที่มีการเปลี่ยนแปลง (%) -6.7 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_8 (population_density__per_km²_ VARCHAR, change___percentage_ VARCHAR)"
  },
  {
    "answer": "SELECT population_density__per_km²_ FROM table_name_56 WHERE population__2006_ = \"84\"",
    "question_en": "What population density (per km) that has 84 as the population (2006)?",
    "question_th": "ความหนาแน่นของประชากร (ต่อกิโลเมตร) ที่มี 84 เป็นประชากร (พ.ศ. 2549)",
    "context": "CREATE TABLE table_name_56 (population_density__per_km²_ VARCHAR, population__2006_ VARCHAR)"
  },
  {
    "answer": "SELECT socket FROM table_name_31 WHERE sspec_number = \"sr0pk(e1)\"",
    "question_en": "Name the socket of sSpec number of sr0pk(e1)?",
    "question_th": "ตั้งชื่อซ็อกเก็ตของหมายเลข sSpec ของ 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_en": "Which Release date has a sSpec number of sr0pk(e1)?",
    "question_th": "วันวางจำหน่ายใดที่มีหมายเลข sSpec เป็น 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_en": "Which Part number(s) has a Model number of core i7-3770?",
    "question_th": "หมายเลขชิ้นส่วนใดที่มีหมายเลขรุ่นของคอร์ 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_en": "Which Part number(s) has a L3 cache of 8 mb and a sSpec number of sr0pl(e1)?",
    "question_th": "หมายเลขชิ้นส่วนใดมีแคช L3 ขนาด 8 mb และหมายเลข sSpec เป็น 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–1150 mhz\" AND sspec_number = \"sr0pq(e1)\"",
    "question_en": "Which Release price (USD ) has a GPU frequency of 650–1150 mhz and a sSpec number of sr0pq(e1)?",
    "question_th": "ราคาวางจำหน่าย (USD) ใดที่มีความถี่ GPU 650–1150 mhz และหมายเลข sSpec เป็น 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_en": "Which Release price (USD ) that has a Release date on april 2012 and a Part number(s) of cm8063701211900bx80637i73770s?",
    "question_th": "ราคาวางจำหน่าย (USD) ใดที่มีวันวางจำหน่ายในเดือนเมษายน 2012 และหมายเลขชิ้นส่วน 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_en": "When the genre is fighting what is the game?",
    "question_th": "เมื่อแนวต่อสู้คือเกมอะไร?",
    "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_en": "What game has a platform(s) of playstation 3, when the genre is platform game?",
    "question_th": "เกมใดมีแพลตฟอร์มของ PlayStation 3 เมื่อเป็นประเภทเกมแพลตฟอร์ม",
    "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_en": "What is the platform(s) for the year 2006 (10th)?",
    "question_th": "แพลตฟอร์มสำหรับปี 2549 (อันดับที่ 10) คืออะไร?",
    "context": "CREATE TABLE table_name_78 (platform_s_ VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT genre FROM table_name_44 WHERE year = \"2012 (16th)\"",
    "question_en": "What is the genre for the year 2012 (16th)?",
    "question_th": "ประเภทสำหรับปี 2555 (วันที่ 16) คืออะไร?",
    "context": "CREATE TABLE table_name_44 (genre VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_18 WHERE genre = \"platform game\"",
    "question_en": "What year has a genre the platform game?",
    "question_th": "เกมแพลตฟอร์มประเภทใดในปีใด?",
    "context": "CREATE TABLE table_name_18 (year VARCHAR, genre VARCHAR)"
  },
  {
    "answer": "SELECT genre FROM table_name_91 WHERE game = \"god of war\"",
    "question_en": "What genre has the game god of war?",
    "question_th": "เกม 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_en": "What is the score for Lucas Glover of the United States?",
    "question_th": "ลูคัส โกลเวอร์ จากอเมริกา ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_31 (score VARCHAR, country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_52 WHERE player = \"todd hamilton\"",
    "question_en": "What is the score for Todd Hamilton?",
    "question_th": "ท็อดด์ แฮมิลตัน สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_52 (score VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_61 WHERE to_par = \"–2\" AND score = 73 - 65 = 138",
    "question_en": "What player has a To par of –2, and a Score of 73-65=138?",
    "question_th": "ผู้เล่นคนใดมีพาร์ถึง –2 และมีคะแนน 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_en": "What is the score of Nick Taylor (a)?",
    "question_th": "นิค เทย์เลอร์ (ก) ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_64 (score VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_96 WHERE score = 67 - 70 = 137",
    "question_en": "What is the place of the person with a score of 67-70=137?",
    "question_th": "ผู้ที่มีคะแนน 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_en": "What is Bishop Luers IHSAA class in football?",
    "question_th": "คลาส Bishop Luers IHSAA ในวงการฟุตบอลคืออะไร",
    "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_en": "What IHSAA football class do the Generals play in?",
    "question_th": "Generals เล่นในคลาสฟุตบอล IHSAA ใด",
    "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_en": "what is the attendance on december 14, 2003?",
    "question_th": "วันที่ 14 ธันวาคม 2546 มีผู้เข้าร่วมเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_34 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_28 WHERE week = 5",
    "question_en": "what is the attendance when the week is 5?",
    "question_th": "ผู้เข้าร่วมในสัปดาห์ที่ 5 คือเท่าไร?",
    "context": "CREATE TABLE table_name_28 (attendance VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_36 WHERE date = \"october 19, 2003\"",
    "question_en": "what is the attendance on october 19, 2003?",
    "question_th": "วันที่ 19 ตุลาคม 2546 มีผู้เข้าร่วมเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_36 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_41 WHERE lane = 4",
    "question_en": "What rank was the swimmer in lane 4?",
    "question_th": "นักว่ายน้ำในเลน 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_en": "What is the highest lane for the poland swimmer who ranked under 6?",
    "question_th": "เลนที่สูงที่สุดสำหรับนักว่ายน้ำชาวโปแลนด์ที่อันดับต่ำกว่า 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_en": "What is the CPU speed(s) of the New Plus type hardware?",
    "question_th": "ความเร็ว CPU ของฮาร์ดแวร์ประเภท New Plus คือเท่าใด",
    "context": "CREATE TABLE table_name_74 (cpu_speed VARCHAR, type VARCHAR)"
  },
  {
    "answer": "SELECT cpu_chip FROM table_name_71 WHERE type = \"classic\"",
    "question_en": "Which CPU chip(s) is used in the Classic type hardware?",
    "question_th": "ชิป CPU ใดที่ใช้ในฮาร์ดแวร์ประเภท Classic",
    "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_en": "What is the type of the RCA RW-2110, which has 2 MB of storage and a v.90 modem?",
    "question_th": "RCA RW-2110 ซึ่งมีพื้นที่เก็บข้อมูล 2 MB และโมเด็ม v.90 เป็นประเภทใด",
    "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_en": "What is the CPU chip in the Dishplayer 7100, which is a dish tuner with a v.90 modem?",
    "question_th": "ชิป CPU ใน Dishplayer 7100 ซึ่งเป็นจูนเนอร์จานที่มีโมเด็ม v.90 คืออะไร",
    "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_en": "What brand is the RW-2100 model?",
    "question_th": "รุ่น RW-2100 ยี่ห้ออะไรครับ?",
    "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_en": "What's the highest Date listed that has U-boats destroyed (Pola) of 1?",
    "question_th": "วันที่สูงสุดที่ระบุว่ามีเรืออูถูกทำลาย (Pola) จำนวน 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_en": "What is the listed Tonnage that has U-boats destroyed (KuK) of 2 and Ships sunk (Pola) of (not recorded)?",
    "question_th": "น้ำหนักที่ระบุไว้ในรายการที่มีเรือดำน้ำถูกทำลาย (KuK) จำนวน 2 ลำ และเรือจม (Pola) จำนวน (ไม่ได้บันทึกไว้) คืออะไร?",
    "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_en": "What is the listed Tonnage for the Date of 1914?",
    "question_th": "น้ำหนักบรรทุกที่ระบุไว้สำหรับวันที่ 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_en": "What is listed as the average Date that has U-boats destroyed (KuK) of 2 with Tonnage of 1,514,050?",
    "question_th": "วันที่ระบุเป็นวันที่เฉลี่ยที่เรือดำน้ำถูกทำลาย (KuK) ที่ 2 โดยมีระวางน้ำหนัก 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_en": "Which Prominence (m) has a Rank of 10, and a Col (m) smaller than 50?",
    "question_th": "Prominence (m) ใดมีอันดับ 10 และ Col (m) น้อยกว่า 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_en": "How much Elevation (m) has a Col (m) smaller than 562, and a Rank of 10, and a Prominence (m) larger than 1,598?",
    "question_th": "ระดับความสูง (m) มี Col (m) น้อยกว่า 562 และอันดับ 10 และความโดดเด่น (m) มากกว่า 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_en": "Which Rank has a Col (m) of 0, and a Peak of aoraki/mount cook, and a Prominence (m) larger than 3,755?",
    "question_th": "อันดับใดที่มี Col (m) เป็น 0 และจุดสูงสุดของ aoraki/mount cook และความโดดเด่น (m) มากกว่า 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_en": "In which city was the Night of the Living Duck released?",
    "question_th": "Night of the Living Duck เปิดตัวที่เมืองใด",
    "context": "CREATE TABLE table_name_75 (city VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_81 WHERE director = \"stephen fossatti\"",
    "question_en": "On what title was Stephen Fossatti the director of?",
    "question_th": "Stephen Fossatti เป็นผู้กำกับชื่ออะไร",
    "context": "CREATE TABLE table_name_81 (title VARCHAR, director VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_74 WHERE notes = \"87.17 m\"",
    "question_en": "Which Year has Notes of 87.17 m?",
    "question_th": "ปีใดมีธนบัตร 87.17 ล้าน?",
    "context": "CREATE TABLE table_name_74 (year VARCHAR, notes VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_55 WHERE notes = \"68.76 m\"",
    "question_en": "Which Position has Notes of 68.76 m?",
    "question_th": "ตำแหน่งใดมีหมายเหตุ 68.76 เมตร?",
    "context": "CREATE TABLE table_name_55 (position VARCHAR, notes VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_name_48 WHERE year = 2002",
    "question_en": "Which Notes have a Year of 2002?",
    "question_th": "หมายเหตุใดมีปี 2545",
    "context": "CREATE TABLE table_name_48 (notes VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT nation FROM table_name_91 WHERE bronze = 3",
    "question_en": "Which nation had 3 bronze?",
    "question_th": "ชาติไหนมี 3 เหรียญทองแดง?",
    "context": "CREATE TABLE table_name_91 (nation VARCHAR, bronze VARCHAR)"
  },
  {
    "answer": "SELECT sspec_number FROM table_name_75 WHERE socket = \"standard power\"",
    "question_en": "what is the sspec number when the socket is standard power?",
    "question_th": "หมายเลข sspec เมื่อปลั๊กไฟเป็นแบบมาตรฐานคืออะไร?",
    "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_en": "what is the gpu model when the frequency is 3.4 ghz and the sspec number is sr00b(d2)?",
    "question_th": "GPU รุ่นอะไรเมื่อความถี่เป็น 3.4 ghz และหมายเลขสเป็คคือ 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_en": "what is the turbo when the part number is cm8062300834302bx80623i72600bxc80623i72600?",
    "question_th": "เทอร์โบคืออะไรเมื่อหมายเลขชิ้นส่วนคือ 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_en": "what is the turbo when the cores is standard power?",
    "question_th": "เทอร์โบคืออะไรเมื่อแกนเป็นกำลังมาตรฐาน?",
    "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_en": "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?",
    "question_th": "หมายเลขชิ้นส่วนคืออะไรเมื่อวันวางจำหน่ายคือเดือนมกราคม 2554 ความถี่คือ 3.4 ghz และราคาวางจำหน่าย (usd) คือ $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_en": "what is the part number that has a turbo of low power?",
    "question_th": "อะไหล่ที่มีเทอร์โบกำลังต่ำมีเบอร์อะไรครับ?",
    "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_en": "What is the place of birth when the elevator is Nicholas IV, and elector is Napoleone Orsini Frangipani?",
    "question_th": "สถานที่เกิดเมื่อลิฟต์คือ Nicholas IV และผู้มีสิทธิเลือกตั้งคือ 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_en": "What is the elevator when the elector is Pietro Colonna?",
    "question_th": "ลิฟต์คืออะไรในเมื่อผู้มีสิทธิเลือกตั้งคือ 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_en": "What is the elevator when elevated is May 16, 1288, and cardinalatial title shows Deacon of S. Adriano?",
    "question_th": "ลิฟต์คืออะไรเมื่อยกระดับคือวันที่ 16 พฤษภาคม 1288 และตำแหน่งพระคาร์ดินัลแสดง 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érard de got\"",
    "question_en": "What is the cardinalatial title when the elevated is September 18, 1294, and elector is Bérard De Got?",
    "question_th": "ตำแหน่งพระคาร์ดินัลคืออะไรเมื่อการยกระดับคือวันที่ 18 กันยายน ค.ศ. 1294 และผู้มีสิทธิเลือกตั้งคือเบราร์ เดอ ก็อต",
    "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_en": "What is the place of birth when elevated is May 16, 1288, and cardinalatial title is Deacon of S. Eustachio?",
    "question_th": "สถานที่ประสูติเมื่อมีการยกระดับคือวันที่ 16 พฤษภาคม 1288 และตำแหน่งพระคาร์ดินัลคือมัคนายกแห่งเอส. อุสตาชิโอ",
    "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_en": "What format was the release in form the Edsel label, and that was from the EDCD 262 catalog?",
    "question_th": "การออกจำหน่ายในรูปแบบฉลาก Edsel เป็นรูปแบบใด และมาจากแคตตาล็อก EDCD 262",
    "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_en": "Released on April 12, 1968 in LP format, what was the catalog?",
    "question_th": "วางจำหน่ายเมื่อวันที่ 12 เมษายน พ.ศ. 2511 ในรูปแบบ LP แค็ตตาล็อกคืออะไร",
    "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_en": "From what catalog was the release that happened on April 12, 1968, and in LP format?",
    "question_th": "การเปิดตัวที่เกิดขึ้นในวันที่ 12 เมษายน พ.ศ. 2511 จากแคตตาล็อกใดและในรูปแบบ LP",
    "context": "CREATE TABLE table_name_28 (catalog VARCHAR, format VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT catalog FROM table_name_33 WHERE label = \"sundazed\"",
    "question_en": "From what catalog was the release from Sundazed label?",
    "question_th": "แค็ตตาล็อกใดที่ปล่อยออกมาจากค่ายเพลง Sundazed?",
    "context": "CREATE TABLE table_name_33 (catalog VARCHAR, label VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_27 WHERE format = \"sacd (hybrid)\"",
    "question_en": "When was the release that was in SACD (hybrid) format?",
    "question_th": "วางจำหน่ายในรูปแบบ SACD (ไฮบริด) เมื่อใด",
    "context": "CREATE TABLE table_name_27 (date VARCHAR, format VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_91 WHERE label = \"simply vinyl\"",
    "question_en": "The release from Simply Vinyl label was on what date?",
    "question_th": "ค่ายเพลง Simply Vinyl วางจำหน่ายวันที่เท่าไร?",
    "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_en": "what is the heat when the nationality is australia and the rank is less than 1?",
    "question_th": "ร้อนขนาดไหนเมื่อสัญชาติเป็นออสเตรเลียและอันดับต่ำกว่า 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_en": "What is the fewest Al Ahly wins for El Zamalek wins of 0 and 0 draws?",
    "question_th": "อะไรคือชัยชนะที่น้อยที่สุดของ Al Ahly สำหรับ El Zamalek ที่ชนะ 0 และ 0 เสมอ?",
    "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_en": "Which competition had 2 draws?",
    "question_th": "รายการไหนเสมอ 2 นัด?",
    "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_en": "What is the sum of draws for El Zamalek wins under 36, total over 2, and Al Ahly wins over 37?",
    "question_th": "ผลเสมอคือเอล ซามาเล็ค ชนะต่ำกว่า 36 เสมอ 2 และอัล อาห์ลี ชนะ 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_en": "What is the average number of draws for Al Ahly wins over 59?",
    "question_th": "จำนวนเสมอเฉลี่ยของอัล อาห์ลีที่ชนะมากกว่า 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_en": "What is the latitude that has a longitude larger than -101.819319 in Martin and a GEO ID of 3809951140?",
    "question_th": "ละติจูดที่มีลองจิจูดใหญ่กว่า -101.819319 ใน Martin และ GEO ID เป็น 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_en": "What is the latitude with a GEO ID larger than 3806352640, and a Land(sqmi) of 34.345?",
    "question_th": "ละติจูดที่มี GEO ID ใหญ่กว่า 3806352640 และที่ดิน (ตร.ม.) เท่ากับ 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_en": "what is the final score when the opponent is platense?",
    "question_th": "คะแนนสุดท้ายเมื่อคู่ต่อสู้อยู่ในแพลนเทนเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_58 (final_score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_41 WHERE opponent = \"real españa\"",
    "question_en": "what is the date when the opponent is real españa?",
    "question_th": "วันที่คู่ต่อสู้เป็นเอสปาญาจริงคือวันไหน?",
    "context": "CREATE TABLE table_name_41 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_90 WHERE opponent = \"real juventud\"",
    "question_en": "what is the date when the opponent is real juventud?",
    "question_th": "คู่ต่อสู้เจอยูเวนตุดจริงวันไหน?",
    "context": "CREATE TABLE table_name_90 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT final_score FROM table_name_62 WHERE date = \"2009-02-26\"",
    "question_en": "what is the final score when the date is 2009-02-26?",
    "question_th": "คะแนนสุดท้ายเมื่อวันที่ 26-02-09 เป็นเท่าไหร่?",
    "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_en": "who is playing for when the opponent is deportes savio and the date is 2010-03-11?",
    "question_th": "ใครเล่นให้เมื่อคู่ต่อสู้ถูกเนรเทศ ซาวิโอ และวันที่คือ 11-03-2010?",
    "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_en": "Which Rank that is on september 9, 2004?",
    "question_th": "อันดับไหนในวันที่ 9 กันยายน พ.ศ. 2547?",
    "context": "CREATE TABLE table_name_16 (rank VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_77 WHERE date = \"september 9, 2004\"",
    "question_en": "Which Opponent is on september 9, 2004?",
    "question_th": "ฝ่ายตรงข้ามคนใดคือวันที่ 9 กันยายน พ.ศ. 2547",
    "context": "CREATE TABLE table_name_77 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_79 WHERE date = \"november 24, 2002\"",
    "question_en": "What were the results for November 24, 2002?",
    "question_th": "ผลลัพธ์ของวันที่ 24 พฤศจิกายน 2545 เป็นอย่างไรบ้าง",
    "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_en": "What is the greatest lane that David Payne was in when he ran longer than 13.17?",
    "question_th": "เลนที่ใหญ่ที่สุดที่ David Payne อยู่เมื่อเขาวิ่งนานกว่า 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_en": "Who had the time 13.6?",
    "question_th": "ใครมีเวลา 13.6?",
    "context": "CREATE TABLE table_name_76 (athlete VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_6 WHERE team = \"baltimore orioles\"",
    "question_en": "What is the position of the player for the Baltimore Orioles?",
    "question_th": "ตำแหน่งผู้เล่นของ บัลติมอร์ โอริโอลส์ เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_6 (position VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_43 WHERE school = \"vanderbilt university\"",
    "question_en": "What is the name of the player from Vanderbilt University?",
    "question_th": "ผู้เล่นจาก 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_en": "What is the lowest pick number for Arturo McDowell, who plays the OF position for the San Francisco Giants?",
    "question_th": "หมายเลขตัวเลือกต่ำสุดของ Arturo McDowell ซึ่งเล่นตำแหน่ง OF ให้กับ 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_en": "What school did the player drafted for the New York Mets attend?",
    "question_th": "ผู้เล่นที่ถูกร่างสำหรับทีม New York Mets เข้าเรียนที่โรงเรียนใด",
    "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_en": "What's the round of 32 during the 56kg when the quarterfinals, semifinals, and finals did not advance?",
    "question_th": "อะไรคือรอบ 32 ทีมระหว่างรุ่น 56 กก. เมื่อรอบก่อนรองชนะเลิศ รอบรองชนะเลิศ และรอบชิงชนะเลิศไม่ผ่านเข้ารอบ?",
    "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_en": "Who was the athlete in the 56kg event having a did not advance in the finals?",
    "question_th": "นักกีฬารุ่น 56 กก. ที่ไม่ผ่านเข้าสู่รอบชิงชนะเลิศคือใคร?",
    "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_en": "What's the 69kg of Round 16?",
    "question_th": "รอบ 16 น้ำหนัก 69 กก. คือเท่าไร",
    "context": "CREATE TABLE table_name_16 (round_of_16 VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT quarterfinals FROM table_name_79 WHERE rank = \"bronze\"",
    "question_en": "What's the quarterfinals when the rank was bronze?",
    "question_th": "รอบก่อนรองชนะเลิศเมื่ออันดับเป็นทองแดงคืออะไร?",
    "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_en": "What is Hon. Vicente Q. Roxas appointment date?",
    "question_th": "ที่รักคืออะไร บีเซนเต้ คิว. ร็อกซัส นัดวันไหน?",
    "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_en": "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?",
    "question_th": "หมายเลขการจับสลากของเพลงของศิลปิน \"Loudest Whisper\" ที่มีคะแนน 68 หรือน้อยกว่าโดยมีอันดับ 9 ขึ้นไปคือเท่าใด",
    "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_en": "What is the Place of the Song by Artist Rosie Hunter with a Draw of 1 or larger?",
    "question_th": "สถานที่แห่งเพลงของศิลปิน Rosie Hunter ที่มีการจับฉลาก 1 ครั้งหรือใหญ่กว่าคืออะไร",
    "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_en": "Which Bronze has a Total larger than 7 and a Silver of 3, and a Games of summer, and a Gold of 5?",
    "question_th": "เหรียญทองแดงใดที่มีคะแนนรวมมากกว่า 7 และเหรียญเงินอยู่ที่ 3 และเกมแห่งฤดูร้อนและทองอยู่ที่ 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_en": "What is the tonnage of the Eldena?",
    "question_th": "น้ำหนักของ Eldena คืออะไร?",
    "context": "CREATE TABLE table_name_15 (tonnage__grt_ VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT show_name FROM table_name_54 WHERE time = \"4:00pm–5:00am\"",
    "question_en": "What show has a time of 4:00pm–5:00am?",
    "question_th": "รายการใดมีช่วงเวลา 16.00-05.00 น.?",
    "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_en": "What's the show that has 60 minutes as the news freq?",
    "question_th": "รายการอะไรที่มีความถี่ข่าว 60 นาที?",
    "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_en": "What time that is networked has an ad freq of 20 minutes until 7pm?",
    "question_th": "เวลาที่เชื่อมต่อเครือข่ายมีความถี่โฆษณา 20 นาทีจนถึง 19.00 น.",
    "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_en": "What's time is Best Mix Overnight?",
    "question_th": "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–0\"",
    "question_en": "Which res has a Time of 5:00, and a Method of decision (unanimous), and a Record of 1–0?",
    "question_th": "คำตอบใดมีเวลา 5:00 น. และวิธีการตัดสินใจ (เป็นเอกฉันท์) และบันทึก 1–0",
    "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_en": "Which Event has Res of loss, and a Time of 5:00, and an Opponent of lance everson?",
    "question_th": "เหตุการณ์ใดที่มีการแพ้อีกครั้ง และเวลา 5:00 น. และฝ่ายตรงข้ามของ 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_en": "What is the heat for the time 57.97?",
    "question_th": "ความร้อนเวลา 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_en": "How many heats does Julia Wilkinson have?",
    "question_th": "Julia Wilkinson มีความร้อนเท่าไร?",
    "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_en": "Who has more than 4 heat for Germany and 7 lanes?",
    "question_th": "ใครมีความร้อนเกิน 4 สำหรับเยอรมนีและ 7 เลน?",
    "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_en": "Who has less than 3 lanes for France?",
    "question_th": "ใครมีน้อยกว่า 3 เลนสำหรับฝรั่งเศส?",
    "context": "CREATE TABLE table_name_88 (name VARCHAR, nationality VARCHAR, lane VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_71 WHERE college = \"cincinnati\"",
    "question_en": "Who is the Cincinnati College player?",
    "question_th": "ผู้เล่นของวิทยาลัยซินซินนาติคือใคร?",
    "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–74\"",
    "question_en": "What is the set 1 when the time is 13:00, and total is 97–74?",
    "question_th": "ชุดที่ 1 เมื่อเวลา 13.00 น. และผลรวมคือ 97–74 คืออะไร",
    "context": "CREATE TABLE table_name_42 (set_1 VARCHAR, time VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT set_2 FROM table_name_85 WHERE total = \"97–74\"",
    "question_en": "What set 2 has a total of 97–74?",
    "question_th": "ชุดที่ 2 ใดมีทั้งหมด 97–74",
    "context": "CREATE TABLE table_name_85 (set_2 VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_30 WHERE set_1 = \"18–25\"",
    "question_en": "What time has a Set 1 of 18–25?",
    "question_th": "เซ็ต 1 จาก 18–25 มีกี่โมง?",
    "context": "CREATE TABLE table_name_30 (time VARCHAR, set_1 VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_14 WHERE set_3 = \"25–16\"",
    "question_en": "What time has a Set 3 of 25–16?",
    "question_th": "เซ็ต 3 จาก 25–16 มีกี่โมง?",
    "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_en": "What was the value in 2010 for the airport coded OTP/LROP?",
    "question_th": "มูลค่าในปี 2010 สำหรับรหัสสนามบิน 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_en": "What is the value in 2010 for an airport ranked higher than 3 located in Cluj-Napoca?",
    "question_th": "มูลค่าในปี 2010 สำหรับสนามบินที่มีอันดับสูงกว่า 3 ซึ่งตั้งอยู่ใน 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_en": "What was the venue when David Jacobs was the host?",
    "question_th": "สถานที่จัดงานเมื่อ David Jacobs เป็นเจ้าภาพคือที่ไหน?",
    "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_en": "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?",
    "question_th": "คุณเป็นเจ้าภาพในรอบรองชนะเลิศเมื่อ Terry Wogan เป็นเจ้าภาพหลักในรอบชิงระดับประเทศ และ Gaby Roslin เป็นเจ้าภาพร่วมรอบชิงชนะเลิศระดับประเทศ",
    "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_en": "What is the name of the national final main host when the semi final/heat host shows internal selection in 2011?",
    "question_th": "เจ้าภาพหลักระดับชาติรอบสุดท้ายชื่ออะไรเมื่อเจ้าภาพรอบรองชนะเลิศ/ฮีตแสดงการคัดเลือกภายในในปี 2554?",
    "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_en": "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?",
    "question_th": "พิธีกรร่วมระดับชาติคนสุดท้ายชื่ออะไรในตอนที่เดวิด จาคอบส์เป็นพิธีกรหลักคนสุดท้ายระดับชาติ และรายการคัดเลือกเป็นเพลงสำหรับยุโรปในปี 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_en": "What is the selection show in 1969 when the Semi final/heat host shows there was no semi final/heat.",
    "question_th": "รายการคัดเลือกในปี 1969 คืออะไร เมื่อเจ้าบ้านรอบรองชนะเลิศ/ฮีต แสดงว่าไม่มีรอบรองชนะเลิศ/ฮีต",
    "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_en": "What is the name of the national final main host at BBC Television Centre, and the selection show was Eurovision: Your Country Needs You?",
    "question_th": "พิธีกรหลักระดับชาติคนสุดท้ายที่ BBC Television Centre ชื่ออะไร และรายการคัดเลือกคือ 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_en": "Can you tell me the Total that has the A Score larger than 6.4, and the B Score smaller than 9.025?",
    "question_th": "คุณช่วยบอกฉันถึงผลรวมที่มีคะแนน A มากกว่า 6.4 และคะแนน B น้อยกว่า 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_en": "Can you tell me the total number of Total that has the B Score of 9.15?",
    "question_th": "กรุณาบอกจำนวนรวมที่มีคะแนน B เท่ากับ 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_en": "Can you tell me the average B Score that has the Position of 2nd, and the Total smaller than 15.525?",
    "question_th": "คุณช่วยบอกฉันถึงคะแนน B เฉลี่ยที่มีตำแหน่งที่ 2 และผลรวมน้อยกว่า 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_en": "Which Year(s) of manufacture has a Type of 1b n2, and a Quantity of 10?",
    "question_th": "ปีใดที่ผลิตมีประเภท 1b n2 และมีปริมาณ 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–1907\"",
    "question_en": "Which Railway number(s) has a Year(s) of manufacture of 1899–1907?",
    "question_th": "หมายเลขรถไฟใดมีปีที่ผลิตระหว่างปี 1899–1907?",
    "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_en": "What is the league listed that has goals of 10?",
    "question_th": "ลีกใดที่มีเป้าหมาย 10 ประตู?",
    "context": "CREATE TABLE table_name_53 (league VARCHAR, goals VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_32 WHERE games = \"7\"",
    "question_en": "What is the team name that as games of 7?",
    "question_th": "ชื่อทีมที่เป็นเกมของ 7 คืออะไร?",
    "context": "CREATE TABLE table_name_32 (team VARCHAR, games VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_39 WHERE games = \"10\"",
    "question_en": "What season has a Games listed of 10?",
    "question_th": "ฤดูกาลใดมีรายการเกมถึง 10 รายการ?",
    "context": "CREATE TABLE table_name_39 (season VARCHAR, games VARCHAR)"
  },
  {
    "answer": "SELECT league FROM table_name_47 WHERE games = \"10\"",
    "question_en": "What is the league name that has a Games listing of 10?",
    "question_th": "ชื่อลีกที่มีรายชื่อเกมถึง 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_en": "What is the Season with goals of 6 and BCLA as the league?",
    "question_th": "ฤดูกาลที่มีประตู 6 ประตูและ BCLA เป็นลีกคืออะไร?",
    "context": "CREATE TABLE table_name_63 (season VARCHAR, league VARCHAR, goals VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_27 WHERE games = \"7\"",
    "question_en": "What is the name of the team with a Games listing of 7?",
    "question_th": "ทีมที่มีรายชื่อเกม 7 ชื่ออะไร?",
    "context": "CREATE TABLE table_name_27 (team VARCHAR, games VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_47 WHERE position = \"14th\"",
    "question_en": "What season had a 14th position?",
    "question_th": "ฤดูกาลใดมีอันดับที่ 14?",
    "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_en": "What is the sum of poles of the firestone indy lights series before the 2009 season?",
    "question_th": "ผลรวมของโพลของซีรีส์ไฟร์สโตนอินดี้ไลท์ก่อนฤดูกาล 2009 เป็นเท่าใด",
    "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_en": "What is the highest f/laps with less than 0 wins?",
    "question_th": "f/laps สูงสุดที่ชนะน้อยกว่า 0 คือเท่าไร?",
    "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_en": "What is the average wins with a 20th position and more than 0 f/laps?",
    "question_th": "ชัยชนะโดยเฉลี่ยด้วยอันดับที่ 20 และมากกว่า 0 f/lap คือเท่าใด",
    "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_en": "What is the lowest poles of team comtec racing, which has a nc position?",
    "question_th": "เสาต่ำสุดของทีม comtec racing ซึ่งมีตำแหน่ง nc คืออะไร?",
    "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_en": "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?",
    "question_th": "วันที่เท่าไหร่ที่สรอมากกว่า 124 ชนิดคือผลรวม ขนาดมากกว่า 1.0535 และเวลา (มากที่สุด) คือ 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_en": "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?",
    "question_th": "ผลรวมของสมาชิกเมื่อสรอมากกว่า 127 แกมม่าน้อยกว่า 1.1508 และขนาด 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_en": "When Travis Lee was picked, what was the highest pick?",
    "question_th": "เมื่อ Travis Lee ถูกเลือก อะไรคือตัวเลือกสูงสุด?",
    "context": "CREATE TABLE table_name_94 (pick INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(pick) FROM table_name_13 WHERE team = \"seattle mariners\"",
    "question_en": "What is the total number pick for seattle mariners team?",
    "question_th": "จำนวนตัวเลือกทั้งหมดของทีมซีแอตเทิล มาริเนอร์สคือเท่าไร?",
    "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_en": "What is the sum of points for teams with 10 goals scored and under 3 wins?",
    "question_th": "ผลรวมคะแนนสำหรับทีมที่ทำประตูได้ 10 ประตูและชนะต่ำกว่า 3 ครั้งเป็นเท่าใด",
    "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_en": "What is the average number of losses for teams with under 16 points and under 3 draws?",
    "question_th": "จำนวนการแพ้โดยเฉลี่ยสำหรับทีมที่มีคะแนนต่ำกว่า 16 แต้มและเสมอต่ำกว่า 3 คือเท่าใด?",
    "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_en": "What country has a time of 8:03.61?",
    "question_th": "ประเทศใดมีเวลา 8:03.61 น.",
    "context": "CREATE TABLE table_name_61 (country VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_name_74 WHERE country = \"zimbabwe\"",
    "question_en": "What are the notes for Zimbabwe?",
    "question_th": "หมายเหตุสำหรับซิมบับเวคืออะไร?",
    "context": "CREATE TABLE table_name_74 (notes VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_3 WHERE country = \"south korea\"",
    "question_en": "What is the time for South Korea?",
    "question_th": "เกาหลีใต้กี่โมงคะ?",
    "context": "CREATE TABLE table_name_3 (time VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT athlete FROM table_name_90 WHERE time = \"8:34.27\"",
    "question_en": "The time of 8:34.27 was set by what athlete?",
    "question_th": "เวลา 8:34.27 น. กำหนดโดยนักกีฬาคนไหน?",
    "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_en": "The Athlete Shin Yeong-eun with a rank larger than 3 and notes of FD had what time?",
    "question_th": "นักกีฬาชินยองอึนที่มียศมากกว่า 3 และมีโน๊ตของ FD มีเวลาเท่าไหร่?",
    "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_en": "In which event did Fabuleux 5 get a result smaller than 70.88?",
    "question_th": "เหตุการณ์ใดที่ Fabuleux 5 ได้ผลลัพธ์น้อยกว่า 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_en": "What is the class of Fabuleux 5 get less than 70.277 in the freestyle test?",
    "question_th": "Fabuleux 5 คลาสใดที่ได้คะแนนน้อยกว่า 70.277 ในการทดสอบฟรีสไตล์?",
    "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äpel\" AND result < 71.909",
    "question_en": "What horse was shown by with Britta Näpel and got less than 71.909?",
    "question_th": "ม้าตัวใดที่แสดงโดย Britta Näpel และได้น้อยกว่า 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_en": "What is the result of Waldemar 27´s freestyle test?",
    "question_th": "ผลการทดสอบฟรีสไตล์ของ Waldemar 27 คืออะไร",
    "context": "CREATE TABLE table_name_99 (result VARCHAR, horse VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_94 WHERE tournament = \"acapulco\"",
    "question_en": "what is the date for the tournament acapulco?",
    "question_th": "การแข่งขันอะคาปุลโกคือวันที่เท่าไหร่?",
    "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_en": "who is the opponent in the final when the tournament is cagnes-sur-mer?",
    "question_th": "คู่ต่อสู้ในรอบชิงชนะเลิศเมื่อทัวร์นาเมนต์คือ กาญส์-ซูร์-แมร์คือใคร?",
    "context": "CREATE TABLE table_name_64 (opponent_in_the_final VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_52 WHERE tournament = \"joué-lès-tours\"",
    "question_en": "what is the date for the tournament joué-lès-tours?",
    "question_th": "การแข่งขัน joué-lès-tours วันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_52 (date VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_38 WHERE tournament = \"cagnes-sur-mer\"",
    "question_en": "what is the score for the tournament cagnes-sur-mer?",
    "question_th": "คะแนนของทัวร์นาเมนท์ คากเนส-ซูร์-แมร์ คืออะไร?",
    "context": "CREATE TABLE table_name_38 (score VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_10 WHERE date = \"may 11, 1997\"",
    "question_en": "what is the score on may 11, 1997?",
    "question_th": "คะแนนเมื่อวันที่ 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_en": "What is the Date of the tournament with a Score of 6-1 6-3?",
    "question_th": "การแข่งขันวันที่เท่าไหร่ด้วยสกอร์ 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_en": "What is the Date of the Tournament against Anastasiya Yakimova?",
    "question_th": "วันที่ของการแข่งขันกับ 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_en": "What is the Opponent in final of the Pingguo Tournament?",
    "question_th": "คู่ต่อสู้ในรอบสุดท้ายของ 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_en": "What is the Score of the Pingguo Tournament?",
    "question_th": "คะแนนของการแข่งขัน Pingguo คืออะไร?",
    "context": "CREATE TABLE table_name_94 (score VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_67 WHERE date = \"june 11, 2006\"",
    "question_en": "What is the Surface of the Tournament on June 11, 2006?",
    "question_th": "พื้นผิวของการแข่งขันในวันที่ 11 มิถุนายน 2549 คืออะไร?",
    "context": "CREATE TABLE table_name_67 (surface VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT a_league FROM table_name_7 WHERE saves = 39",
    "question_en": "What is the A-league with 39 saves?",
    "question_th": "A-league ที่มี 39 เซฟคืออะไร?",
    "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_en": "What is the tally with a total larger than 8, Waterford was the opposition?",
    "question_th": "ยอดรวมมากกว่า 8 เท่าไหร่ วอเตอร์ฟอร์ดเป็นฝ่ายค้าน?",
    "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_en": "What is the tally when the opposition is Derry, and total is 14?",
    "question_th": "ฝ่ายตรงข้ามคือเดอร์รี่และรวมเป็น 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_en": "What's the year with a score of 305?",
    "question_th": "ปีไหนมีคะแนน 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_en": "What's the To par of St Andrews before the year 1888?",
    "question_th": "ค่า To par ของ St Andrews ก่อนปี 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_en": "What's the location that has a total of 149?",
    "question_th": "พิกัดไหนมีทั้งหมด 149 คะ?",
    "context": "CREATE TABLE table_name_28 (location VARCHAR, total_score VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_73 WHERE state = \"berlin\"",
    "question_en": "Who is the home team for the stadium located in Berlin?",
    "question_th": "ทีมเจ้าบ้านในสนามที่กรุงเบอร์ลินคือใคร?",
    "context": "CREATE TABLE table_name_73 (home_team VARCHAR, state VARCHAR)"
  },
  {
    "answer": "SELECT MIN(f_laps) FROM table_name_17 WHERE position = \"5th\"",
    "question_en": "What is the lowest number of f/laps in the 5th position?",
    "question_th": "ค่า f/รอบต่ำสุดในตำแหน่งที่ 5 คือเท่าใด?",
    "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_en": "What is the highest number of podiums before 2008 with a 5th position and more than 0 f/laps?",
    "question_th": "จำนวนโพเดียมสูงสุดก่อนปี 2008 ด้วยอันดับที่ 5 และมากกว่า 0 f/รอบคือเท่าใด",
    "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_en": "What is the lowest number of f/laps with more than 4 podiums and more than 14 races?",
    "question_th": "จำนวน f/laps ต่ำสุดที่มีการขึ้นโพเดียมมากกว่า 4 ครั้งและการแข่งขันมากกว่า 14 รายการคือเท่าใด",
    "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_en": "What is the earliest season with more than 14 races and more than 4 podiums?",
    "question_th": "ฤดูกาลแรกสุดที่มีการแข่งขันมากกว่า 14 รายการและมากกว่า 4 โพเดียมคืออะไร?",
    "context": "CREATE TABLE table_name_72 (season INTEGER, races VARCHAR, podiums VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(poles) FROM table_name_43 WHERE wins < 0",
    "question_en": "What is the total number of poles with less than 0 wins?",
    "question_th": "จำนวนเสาทั้งหมดที่ชนะน้อยกว่า 0 เป็นเท่าใด?",
    "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_en": "What's the smallest draw that has a place bigger more than 1 and Anastasia Prikhodko as the artist?",
    "question_th": "วาดที่เล็กที่สุดที่มีสถานที่มากกว่า 1 และ Anastasia Prikhodko เป็นศิลปินคืออะไร?",
    "context": "CREATE TABLE table_name_74 (draw INTEGER, artist VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT AVG(draw) FROM table_name_29 WHERE result = \"10%\"",
    "question_en": "What's the draw having the result of 10%?",
    "question_th": "งวดที่มีผล 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_en": "What is the average tries for less than 117 points and less than 48 tries against?",
    "question_th": "ความพยายามโดยเฉลี่ยที่น้อยกว่า 117 คะแนนและความพยายามน้อยกว่า 48 ครั้งเป็นเท่าใด",
    "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_en": "Which 2008 has a City of durban?",
    "question_th": "ปี 2008 ใดที่มีเมืองเดอร์บาน",
    "context": "CREATE TABLE table_name_56 (city VARCHAR)"
  },
  {
    "answer": "SELECT AVG(2008) FROM table_name_20 WHERE airport = \"hurghada international airport\"",
    "question_en": "Which 2008 has an Airport of hurghada international airport?",
    "question_th": "ปี 2008 ใดมีสนามบินของสนามบินนานาชาติฮูร์กาดา",
    "context": "CREATE TABLE table_name_20 (airport VARCHAR)"
  },
  {
    "answer": "SELECT AVG(2008) FROM table_name_74 WHERE airport = \"julius nyerere international airport\"",
    "question_en": "Which 2008 has an Airport of julius nyerere international airport?",
    "question_th": "ปี 2008 ใดมีท่าอากาศยานนานาชาติจูเลียส เนียเรเร",
    "context": "CREATE TABLE table_name_74 (airport VARCHAR)"
  },
  {
    "answer": "SELECT capacity FROM table_name_95 WHERE opened < 1937 AND region = \"champagne-ardenne\"",
    "question_en": "What capacity opened lessed than 1937 and is located in the region of champagne-ardenne?",
    "question_th": "กำลังการผลิตใดที่เปิดน้อยกว่าปี 1937 และตั้งอยู่ในภูมิภาคของ 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_en": "What total number of opened has a stadium of stade de la mosson and is larger than 32,939 capacity?",
    "question_th": "สนามสตาด เดอ ลา โมซง ที่เปิดแล้วทั้งหมดจำนวนเท่าใด และจุได้มากกว่า 32,939 นัด?",
    "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_en": "Which song has a place greater than 7, more than 13 points, and draw of 5?",
    "question_th": "เพลงไหนได้คะแนนมากกว่า 7 มากกว่า 13 คะแนน และเสมอ 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_en": "How many points does catcat have with more than 2 draws?",
    "question_th": "แคทแคทมีแต้มมากกว่า 2 แต้มได้กี่แต้ม?",
    "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_en": "Which Place has an English translation of lullaby for my beloved?",
    "question_th": "สถานที่ไหนมีเพลงกล่อมเด็กแปลเป็นภาษาอังกฤษให้ที่รักของฉันบ้าง?",
    "context": "CREATE TABLE table_name_58 (place INTEGER, english_translation VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_41 WHERE language = \"croatian\"",
    "question_en": "Where is Croatian spoken?",
    "question_th": "ภาษาโครเอเชียพูดที่ไหน?",
    "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_en": "When South warrnambool has more than 8 wins, what is the least amount of losses?",
    "question_th": "เมื่อวอร์นัมบูลใต้ชนะมากกว่า 8 ครั้ง แพ้น้อยที่สุดคือเท่าใด?",
    "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_en": "Cobden has more than 1487 against and what average of losses?",
    "question_th": "Cobden มีมากกว่า 1487 ต่อและขาดทุนโดยเฉลี่ยเท่าไร?",
    "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_en": "What is the Rank of the Player with a Time of 7:20.32 and Notes of FB?",
    "question_th": "อันดับผู้เล่นด้วยเวลา 7:20.32 และ Notes ของ FB คือเท่าไร?",
    "context": "CREATE TABLE table_name_31 (rank VARCHAR, notes VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_77 WHERE rank = 2",
    "question_en": "What is the Time of the Player with a Rank of 2?",
    "question_th": "ผู้เล่นที่มีอันดับ 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_en": "What is Alan Campbell's Country with Notes of FA?",
    "question_th": "Country ของ Alan Campbell พร้อม 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_en": "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?",
    "question_th": "อะไรคือผลลัพธ์ของฤดูกาล 2000-01 ที่ IceGators เป็นส่วนหนึ่งของดิวิชั่นตะวันตกเฉียงใต้และได้รับการฝึกสอนโดย 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_en": "In which division were the IceGators when coached by Todd Gordon?",
    "question_th": "IceGators อยู่ในดิวิชั่นใดเมื่อฝึกสอนโดย Todd Gordon?",
    "context": "CREATE TABLE table_name_24 (division VARCHAR, coach VARCHAR)"
  },
  {
    "answer": "SELECT AVG(rank) FROM table_name_79 WHERE lane = 1",
    "question_en": "What is the average rank of a swimmer in lane 1?",
    "question_th": "อันดับเฉลี่ยของนักว่ายน้ำในเลน 1 คือเท่าไร?",
    "context": "CREATE TABLE table_name_79 (rank INTEGER, lane VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_87 WHERE lane = 6",
    "question_en": "What is the name of the swimmer in lane 6?",
    "question_th": "นักว่ายน้ำช่อง 6 ชื่ออะไร",
    "context": "CREATE TABLE table_name_87 (name VARCHAR, lane VARCHAR)"
  },
  {
    "answer": "SELECT MIN(date) FROM table_name_93 WHERE medal = \"bronze\"",
    "question_en": "What is the earliest date for the bronze medal?",
    "question_th": "เหรียญทองแดงได้เร็วที่สุดคือวันไหน?",
    "context": "CREATE TABLE table_name_93 (date INTEGER, medal VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_30 WHERE sport = \"athletics\" AND date < 16",
    "question_en": "Who had the sport of athletics on a date earlier than 16?",
    "question_th": "ใครมีกีฬากรีฑาในวันที่ก่อนอายุ 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_en": "what is the sport for wolfgang schattauer?",
    "question_th": "กีฬาของโวล์ฟกัง แชตเทาเออร์คืออะไร?",
    "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_en": "what is the date when the medal is bronze for athletics?",
    "question_th": "เหรียญทองแดงกรีฑาวันที่เท่าไหร่คะ?",
    "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_en": "What gold has a year after 1970, with milan as the place?",
    "question_th": "หนึ่งปีหลังจากปี 1970 มีทองคำอะไรบ้าง โดยมีมิลานเป็นสถานที่?",
    "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_en": "Which Opened has a System of c-train, and a Daily ridership smaller than 269,600?",
    "question_th": "Opened ใดที่มีระบบ c-train และจำนวนผู้โดยสารรายวันน้อยกว่า 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_en": "Which Stations are in vancouver, bc?",
    "question_th": "สถานีใดบ้างที่อยู่ในแวนคูเวอร์ BC?",
    "context": "CREATE TABLE table_name_64 (stations VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT category FROM table_name_11 WHERE stations = \"5\"",
    "question_en": "Which category has 5 stations?",
    "question_th": "หมวดไหนมี 5 สถานี?",
    "context": "CREATE TABLE table_name_11 (category VARCHAR, stations VARCHAR)"
  },
  {
    "answer": "SELECT MAX(opened) FROM table_name_3 WHERE category = \"diesel light rail\"",
    "question_en": "Which Opened has a Category of diesel light rail?",
    "question_th": "Open ใดมีหมวดหมู่ของรางไฟดีเซล?",
    "context": "CREATE TABLE table_name_3 (opened INTEGER, category VARCHAR)"
  },
  {
    "answer": "SELECT MAX(attendance) FROM table_name_93 WHERE round = \"group e\"",
    "question_en": "What is the highest attendance among Group E games?",
    "question_th": "มีผู้เข้าร่วมมากที่สุดในบรรดาเกมกลุ่ม E คืออะไร?",
    "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_en": "How many total games were played by the team which had a total of 16 points and less than 4 draws?",
    "question_th": "ทีมที่เล่นทั้งหมดกี่เกมซึ่งมีคะแนนรวม 16 คะแนนและเสมอน้อยกว่า 4 เกม?",
    "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_en": "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?",
    "question_th": "มีกี่คะแนนในประเภทคะแนนของทีมที่เสมอน้อยกว่า 5 ครั้ง ชนะทั้งหมด 8 ครั้ง และคะแนนรวมรวมน้อยกว่า 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_en": "How many points are in the scored category for the team that played less than 18 games?",
    "question_th": "คะแนนในประเภทคะแนนของทีมที่เล่นน้อยกว่า 18 เกมมีกี่คะแนน?",
    "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_en": "How many points are in the scored category for the team that has 8 total points and a position that is less than 10?",
    "question_th": "ประเภทคะแนนของทีมที่มีคะแนนรวม 8 คะแนน และตำแหน่งที่น้อยกว่า 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_en": "How many loses does the team have that conceded 25 and won more than 6 games?",
    "question_th": "ทีมแพ้ไปกี่ครั้งแล้วที่เสียไป 25 นัดและชนะมากกว่า 6 เกม?",
    "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_en": "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?",
    "question_th": "จากทีมที่ได้คะแนนต่ำกว่า 25 คะแนน มีคะแนนรวมน้อยกว่า 20 คะแนน และตำแหน่งที่มากกว่า 8 ซึ่งมีจำนวนเสมอน้อยที่สุด?",
    "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_en": "How many bronze medals did the nation have that had less than 3 silver, 5 gold and ranked better than 31?",
    "question_th": "ประเทศนี้มีเหรียญทองแดงกี่เหรียญที่มีน้อยกว่า 3 เหรียญเงิน 5 เหรียญทอง และอันดับดีกว่า 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_en": "What's the bronze medal count of Spain that has less than 39 Gold, 3 silver, and a rank better than 35?",
    "question_th": "เหรียญทองแดงของสเปนที่น้อยกว่า 39 เหรียญทอง 3 เหรียญเงิน และอันดับดีกว่า 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_en": "What's the total amount of USSR that has more than 0 gold, less than 85 silver and more than 6 bronze?",
    "question_th": "จำนวนเงินรวมของสหภาพโซเวียตที่มีมากกว่า 0 เหรียญทอง, เงินน้อยกว่า 85 เหรียญและมากกว่า 6 เหรียญทองแดงคือเท่าไร?",
    "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_en": "What's the lowest bronze medal amount that has fewer than 0 gold?",
    "question_th": "เหรียญทองแดงต่ำสุดที่มีน้อยกว่า 0 เหรียญทองคือเท่าไร?",
    "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_en": "What's the total amount of Bulgaria that has more than 13 bronze?",
    "question_th": "บัลแกเรียที่มีมากกว่า 13 เหรียญทองแดงมีจำนวนเท่าไร?",
    "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_en": "what is the average attendance when the week is higher than 5 and the opponent is washington redskins?",
    "question_th": "ผู้เข้าร่วมโดยเฉลี่ยเมื่อสัปดาห์สูงกว่า 5 และฝ่ายตรงข้ามคือวอชิงตันอินเดียนแดงเป็นเท่าใด",
    "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_en": "What country has t6 as the place, with sean o'hair as the player?",
    "question_th": "ประเทศใดมี t6 เป็นสถานที่ โดยมีฌอน โอแฮร์เป็นผู้เล่น?",
    "context": "CREATE TABLE table_name_88 (country VARCHAR, place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_91 WHERE score = 65",
    "question_en": "What to par has 65 as the score?",
    "question_th": "พาร์อะไรจะได้ 65 เป็นคะแนน?",
    "context": "CREATE TABLE table_name_91 (to_par VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_92 WHERE country = \"south africa\"",
    "question_en": "What score has south africa as the country?",
    "question_th": "แอฟริกาใต้มีคะแนนเท่าใดเป็นประเทศ?",
    "context": "CREATE TABLE table_name_92 (score VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_55 WHERE rank = 6",
    "question_en": "What is the Time of the Athlete with a Rank of 6?",
    "question_th": "นักกีฬาอันดับ 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_en": "How much Longitude has a County of nelson, and a Latitude larger than 47.980183?",
    "question_th": "ลองจิจูดมีเคาน์ตี้เนลสันเท่าใด และละติจูดใหญ่กว่า 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_en": "Which Water (sqmi) has a County of benson, and an ANSI code smaller than 1759243?",
    "question_th": "Water ( sqmi) ใดมี County of benson และรหัส ANSI เล็กกว่า 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_en": "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?",
    "question_th": "Pop (2010) ใดมีรหัส ANSI เล็กกว่า 1036864 และลองจิจูดใหญ่กว่า -98.46611 และ Land (ตร.ม.) เล็กกว่า 36.238 และละติจูดเล็กกว่า 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_en": "Who did the Eagle's play on November 5, 1961?",
    "question_th": "ใครเล่นอินทรีเมื่อวันที่ 5 พฤศจิกายน พ.ศ. 2504?",
    "context": "CREATE TABLE table_name_77 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT years FROM table_name_62 WHERE character = \"joyce couwenberg\"",
    "question_en": "What years have joyce couwenberg as the character?",
    "question_th": "จอยซ์ คูเวนเบิร์กรับบทเป็นตัวละครนี้กี่ปี?",
    "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_en": "What actor has goede tijden, slechte tijden, as the soap opera, 11 years as the duration, with rosa gonzalez as the character?",
    "question_th": "นักแสดงคนไหนมี goede tijden, slechte tijden เป็นละครโทรทัศน์, มีความยาว 11 ปี โดยมีโรซา กอนซาเลซเป็นตัวละคร?",
    "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_en": "What actor has onderweg naar morgen, as the soap opera, with aafke couwenberg as the character?",
    "question_th": "นักแสดงคนใดที่ละครมี aafke couwenberg เป็นละคร โดยมี aafke couwenberg เป็นละคร?",
    "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_en": "What duration has rosa gonzalez as the character?",
    "question_th": "โรซา กอนซาเลซเป็นตัวละครที่มีระยะเวลาเท่าไร?",
    "context": "CREATE TABLE table_name_60 (duration VARCHAR, character VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_77 WHERE position = \"fullback\"",
    "question_en": "What is the Team of the Fullback Player?",
    "question_th": "ทีมของผู้เล่นฟูลแบ็กคืออะไร?",
    "context": "CREATE TABLE table_name_77 (team VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_57 WHERE position = \"halfback\"",
    "question_en": "What is the College of the Halfback Player?",
    "question_th": "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_en": "Which Venue has Notes of 58.25 m, and a Competition of world championships?",
    "question_th": "สถานที่ใดมีหมายเหตุ 58.25 ม. และการแข่งขันชิงแชมป์โลก?",
    "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_en": "Which Competition has a Year smaller than 2009, and Notes of 56.16 m?",
    "question_th": "การแข่งขันใดที่มีปีที่น้อยกว่าปี 2009 และหมายเหตุ 56.16 ล้าน?",
    "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_en": "Which Venue has Notes of 58.48 m?",
    "question_th": "สถานที่ใดมีหมายเหตุ 58.48 ม.",
    "context": "CREATE TABLE table_name_70 (venue VARCHAR, notes VARCHAR)"
  },
  {
    "answer": "SELECT AVG(year) FROM table_name_35 WHERE venue = \"bydgoszcz, poland\"",
    "question_en": "Which Year has a Venue of bydgoszcz, poland?",
    "question_th": "ปีใดที่มีสถานที่จัดงาน Bydgoszcz ประเทศโปแลนด์",
    "context": "CREATE TABLE table_name_35 (year INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_name_41 WHERE position = \"17th (q)\"",
    "question_en": "How many years have a Position of 17th (q)?",
    "question_th": "มีตำแหน่งที่ 17 (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_en": "What is the score when the home team is queens park rangers?",
    "question_th": "เมื่อเจ้าบ้านเป็น ควีนส์ปาร์ค เรนเจอร์ส สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_29 (score VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_66 WHERE away_team = \"bolton wanderers\"",
    "question_en": "what is the date when the away team is bolton wanderers?",
    "question_th": "โบลตัน วันเดอเรอร์ส นัดเยือนวันไหน?",
    "context": "CREATE TABLE table_name_66 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_29 WHERE away_team = \"tottenham hotspur\"",
    "question_en": "what is the score when the away team is tottenham hotspur?",
    "question_th": "เมื่อทีมเยือนคือ ท็อตแน่ม ฮ็อทสเปอร์ สกอร์เท่าไหร่?",
    "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_en": "who is the home team when the away team is ipswich town?",
    "question_th": "เจ้าบ้านใครอยู่เมื่อทีมเยือนคืออิปสวิชทาวน์?",
    "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_en": "who is the away team when the home team is hartlepool united?",
    "question_th": "ทีมเยือนคือใคร เมื่อเจ้าบ้าน ฮาร์ทลี่พูล ยูไนเต็ด?",
    "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_en": "What was the Best Feature Film at the Macabro Film Festival?",
    "question_th": "ภาพยนตร์สารคดีที่ดีที่สุดในเทศกาลภาพยนตร์ Macabro คืออะไร",
    "context": "CREATE TABLE table_name_24 (result VARCHAR, award VARCHAR, organization VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_85 WHERE album = \"sean kingston\"",
    "question_en": "what is the rank when the album is sean kingston?",
    "question_th": "อัลบั้มคือฌอน คิงส์ตันที่อันดับเท่าไหร่?",
    "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_en": "how many times is the rank less than 6, certification 2x platinum and the peak position 2?",
    "question_th": "อันดับน้อยกว่า 6 รับรอง 2x แพลทินัม และตำแหน่งสูงสุด 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_en": "what is the lowest rank when the peak position is 2, certification is platinum and the album is my december?",
    "question_th": "อันดับต่ำสุดคืออะไรเมื่อตำแหน่งสูงสุดคือ 2 การรับรองคือแพลตตินัม และอัลบั้มคือเดือนธันวาคมของฉัน",
    "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_en": "What is the sales when the artist is kelly clarkson?",
    "question_th": "ยอดขายเมื่อศิลปินคือเคลลี่คลาร์กสัน?",
    "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_en": "What percentage of people polled aligned with the Liberal party according to the August 2008 poll that reported 36% aligning with New Democratic party?",
    "question_th": "กี่เปอร์เซ็นต์ของผู้ที่ถูกสำรวจซึ่งสอดคล้องกับพรรคเสรีนิยมตามการสำรวจเมื่อเดือนสิงหาคม 2551 ที่รายงานว่า 36% สอดคล้องกับพรรคประชาธิปไตยใหม่",
    "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_en": "According to the August 2007 poll by the Corporate Research Associates that reported 32% Prog. Cons., what percentage aligned with the Liberal party?",
    "question_th": "ตามการสำรวจความคิดเห็นเมื่อเดือนสิงหาคม พ.ศ. 2550 โดย Corporate Research Associates ที่รายงานว่า Prog. 32% ข้อเสีย เห็นด้วยกับพรรคเสรีนิยมกี่เปอร์เซ็นต์?",
    "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_en": "Which firm conducted a poll in August 2006?",
    "question_th": "บริษัทใดที่ดำเนินการสำรวจความคิดเห็นในเดือนสิงหาคม พ.ศ. 2549",
    "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_en": "According to the February 2009 poll by the Corporate Research Associates that reported 31% Liberal., what percentage aligned with the Prog. Cons. party?",
    "question_th": "จากการสำรวจความคิดเห็นเมื่อเดือนกุมภาพันธ์ พ.ศ. 2552 โดย Corporate Research Associates ที่รายงานว่ามีกลุ่มเสรีนิยม 31% เปอร์เซ็นต์ที่สอดคล้องกับ Prog. ข้อเสีย งานสังสรรค์?",
    "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_en": "According to the August 2008 poll that reported 36% New Demcratic, what percentage aligned with the Liberal party?",
    "question_th": "จากการสำรวจเมื่อเดือนสิงหาคม พ.ศ. 2551 ที่รายงานว่ามีพรรคประชาธิปไตยใหม่ 36% ร้อยละใดที่สอดคล้องกับพรรคเสรีนิยม?",
    "context": "CREATE TABLE table_name_37 (liberal VARCHAR, new_democratic VARCHAR, dates VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_51 WHERE nationality = \"barbados\"",
    "question_en": "What's the record of Barbados?",
    "question_th": "บันทึกของบาร์เบโดสคืออะไร?",
    "context": "CREATE TABLE table_name_51 (record VARCHAR, nationality VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_17 WHERE nationality = \"guadeloupe\"",
    "question_en": "What's the event of Guadeloupe?",
    "question_th": "เหตุการณ์ที่กวาเดอลูปคืออะไร?",
    "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_en": "What's the date of the discus throw in 2010 Georgetown?",
    "question_th": "วันขว้างจักรในปี 2010 จอร์จทาวน์คือวันที่เท่าไร",
    "context": "CREATE TABLE table_name_75 (date VARCHAR, games VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT AVG(staterooms) FROM table_name_28 WHERE guests > 210",
    "question_en": "What is the number of staterooms when guests was larger than 210?",
    "question_th": "จำนวนห้องนอนเมื่อแขกมีขนาดใหญ่กว่า 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_en": "What is the number of guests for the Viking Ingvar, built earlier than 1990?",
    "question_th": "จำนวนแขกของ Viking Ingvar ที่สร้างขึ้นก่อนปี 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_en": "What is the earliest year built for the ship refurbished earlier than 2013?",
    "question_th": "ปีแรกสุดที่สร้างขึ้นสำหรับเรือที่ได้รับการตกแต่งใหม่ก่อนปี 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_en": "Which gene is ongoing and has an intramuscular route of administration?",
    "question_th": "ยีนใดที่กำลังดำเนินอยู่และมีเส้นทางการบริหารกล้ามเนื้อ?",
    "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_en": "Which gene has the subject number 21?",
    "question_th": "ยีนใดมีวิชาหมายเลข 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_en": "What is the route of administration that has several ongoing and complete?",
    "question_th": "แนวทางการบริหารมีมากมายต่อเนื่องและสมบูรณ์อย่างไร?",
    "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_en": "What is the statue of the aat gene, which has an intramuscular route of administration?",
    "question_th": "รูปปั้นของยีน aat ซึ่งมีเส้นทางการบริหารกล้ามเนื้อคืออะไร?",
    "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_en": "What is the fewest draws for teams having under 2 losses, more than 4 wins, and a position under 4?",
    "question_th": "อะไรคือผลเสมอน้อยที่สุดสำหรับทีมที่แพ้น้อยกว่า 2 ครั้ง ชนะมากกว่า 4 ครั้ง และอันดับต่ำกว่า 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_en": "What is the most losses for teams with under 2 wins, more than 6 points, and a position under 11?",
    "question_th": "อะไรคือการแพ้มากที่สุดสำหรับทีมที่ชนะต่ำกว่า 2 ครั้ง มากกว่า 6 แต้ม และอันดับต่ำกว่า 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_en": "What is the total number of positions having 1 loss and more than 9 conceded?",
    "question_th": "จำนวนตำแหน่งทั้งหมดที่มีการเสีย 1 ครั้ง และเสียมากกว่า 9 ครั้งเป็นเท่าใด?",
    "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_en": "What is the venue of the competition with a result of 1st before 2009?",
    "question_th": "สถานที่จัดการแข่งขันซึ่งผลการแข่งขันวันที่ 1 ก่อนปี 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_en": "What was the venue of the 400 M Hurdles for the Olympic Games?",
    "question_th": "สถานที่จัดการแข่งขันวิ่งข้ามรั้ว 400 เมตรในโอลิมปิกเกมส์คือที่ไหน?",
    "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_en": "What was the earliest year for the 400 M Hurdles in Santiago, Chile?",
    "question_th": "ปีแรกสุดของการแข่งขัน 400 M Hurdles ในซานติอาโก ประเทศชิลี คือปีใด",
    "context": "CREATE TABLE table_name_71 (year INTEGER, venue VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_85 WHERE country = \"belgium\"",
    "question_en": "What time does Belgium have?",
    "question_th": "เบลเยี่ยมกี่โมง?",
    "context": "CREATE TABLE table_name_85 (time VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_name_10 WHERE rank = 6",
    "question_en": "Rank 6 has what notes?",
    "question_th": "อันดับ 6 มีบันทึกอะไรบ้าง?",
    "context": "CREATE TABLE table_name_10 (notes VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT athlete FROM table_name_6 WHERE notes = \"fb\" AND rank < 5",
    "question_en": "Who has less than 5 rank and notes of fb?",
    "question_th": "ใครมีอันดับและบันทึกของ fb น้อยกว่า 5 อันดับบ้าง?",
    "context": "CREATE TABLE table_name_6 (athlete VARCHAR, notes VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_16 WHERE rank = 6",
    "question_en": "Rank of 6 has what time?",
    "question_th": "อันดับ 6 มีกี่โมง?",
    "context": "CREATE TABLE table_name_16 (time VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_99 WHERE surface = \"carpet\"",
    "question_en": "What tournament is played on a carpet surface?",
    "question_th": "การแข่งขันใดที่เล่นบนพื้นพรม?",
    "context": "CREATE TABLE table_name_99 (tournament VARCHAR, surface VARCHAR)"
  },
  {
    "answer": "SELECT gothic_letter FROM table_name_4 WHERE proto_germanic_origin = \"/ɸ/; /b/\"",
    "question_en": "Which Gothic Letter has Proto-Germanic origin of /ɸ/; /b/?",
    "question_th": "อักษรกอทิกใดมีต้นกำเนิดจาก /ɸ/; /ข/?",
    "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_en": "What is the Proto-Germanic origin of the phoneme /[[|j]]/?",
    "question_th": "ฟอนิม /[[|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_en": "What is the Roman entry for the allophone of [[[|k]]]?",
    "question_th": "รายการโรมันสำหรับอัลโลโฟนของ [[[|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_en": "What is the Proto-Germanic origin associated with an allophone of [[[|k]]]?",
    "question_th": "ต้นกำเนิดดั้งเดิมดั้งเดิมที่เกี่ยวข้องกับอัลโลโฟนของ [[[|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_en": "The Proto-Germanic origin of /w/ is associated with what Roman entry?",
    "question_th": "ต้นกำเนิดดั้งเดิมของ /w/ เกี่ยวข้องกับคำในภาษาโรมันข้อใด",
    "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_en": "The Roman value of t is associated with what allophone?",
    "question_th": "ค่าโรมันของ t สัมพันธ์กับอัลโลโฟนข้อใด",
    "context": "CREATE TABLE t (Id VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_93 WHERE mascot = \"mustangs\"",
    "question_en": "Where is the school located that has mustangs as a mascot?",
    "question_th": "โรงเรียนตั้งอยู่ที่ไหนมีมัสแตงเป็นมาสคอต?",
    "context": "CREATE TABLE table_name_93 (location VARCHAR, mascot VARCHAR)"
  },
  {
    "answer": "SELECT SUM(enrollment) FROM table_name_30 WHERE school = \"highland\"",
    "question_en": "What is the enrollment for the school Highland?",
    "question_th": "การลงทะเบียนสำหรับโรงเรียนไฮแลนด์คืออะไร?",
    "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_en": "Which nominees won before year 2005?",
    "question_th": "ผู้ได้รับการเสนอชื่อคนใดชนะก่อนปี 2548",
    "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_en": "Which episode in year 2003 that have Gary Murphy and Neil Thompson?",
    "question_th": "ตอนไหนในปี 2003 ที่มี Gary Murphy และ 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_en": "What is the average year with nominated result?",
    "question_th": "ปีเฉลี่ยที่มีผลการเสนอชื่อคือเท่าไร?",
    "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_en": "What is the lowest FA cup goals that have total goals less than 4, with Terry poole as the name?",
    "question_th": "ประตูเอฟเอ คัพ ต่ำสุดที่มีประตูรวมน้อยกว่า 4 ประตู โดยมีเทอร์รี่ พูลเป็นชื่อคืออะไร?",
    "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_en": "How many FA cup goals have Jimmy Nicholson as the name, and league cup goals greater than 0?",
    "question_th": "มีกี่ประตูในเอฟเอคัพที่มีจิมมี่ นิโคลสันเป็นชื่อ และประตูในลีกคัพมากกว่า 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_en": "What are the points against for 2001, and games won of 5 (3)?",
    "question_th": "แต้มเทียบกับปี 2544 และเกมชนะ 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_en": "What are the points against for 2000, when games won is 4 (1)?",
    "question_th": "อะไรคือแต้มเทียบกับปี 2000 เมื่อเกมที่ชนะคือ 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_en": "What is the games lost when games played was 2, year was earlier than 1999, and points for was 24?",
    "question_th": "เกมที่แพ้เมื่อเกมที่เล่นคือ 2 ปีคือปีก่อนหน้าปี 1999 และคะแนนคือ 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_en": "What is the earliest year when games drawn was 0, points against are 86?",
    "question_th": "ปีแรกสุดที่เกมเสมอกันคือ 0 คะแนนเทียบกับ 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_en": "What tournament or series was played in England, when games played was 4, points for were 121?",
    "question_th": "ทัวร์นาเมนต์หรือซีรีส์ใดที่เล่นในอังกฤษ เมื่อเล่นเกมได้ 4 คะแนนได้ 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_en": "What's the average rating when the Romanji title was Mendol?",
    "question_th": "คะแนนเฉลี่ยคือเท่าไรเมื่อชื่อ Romanji คือ 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_en": "What's the ratings of TBS of Episode 10 and had a Japanese title of Scandal?",
    "question_th": "เรตติ้งของ TBS ตอนที่ 10 และชื่อภาษาญี่ปุ่นว่า 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_en": "What's the Japanese title when the Romaji Title was Atsu-Hime?",
    "question_th": "ชื่อภาษาญี่ปุ่นเมื่อชื่อโรมาจิคือ 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ūsei no kizuna\"",
    "question_en": "What's the Japanese Title when the Romaji title was Ryūsei No Kizuna?",
    "question_th": "ชื่อภาษาญี่ปุ่นเมื่อชื่อโรมาจิคือRyūsei 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_en": "When the position in 2012-13 is 13th, third division what is the location?",
    "question_th": "เมื่อตำแหน่งในปี 2555-56 อยู่อันดับที่ 13 ดิวิชั่น 3 ตำแหน่งอะไร?",
    "context": "CREATE TABLE table_name_68 (location VARCHAR, position_in_2012_13 VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_61 WHERE club = \"telecom\"",
    "question_en": "What is the location for a club of telecom?",
    "question_th": "ที่ตั้งของชมรมโทรคมนาคมอยู่ที่ไหน?",
    "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_en": "When the position in 2012-12 is 7th, third division what is the home ground?",
    "question_th": "เมื่อตำแหน่งในปี 2555-55 อยู่อันดับที่ 7 ดิวิชั่น 3 เจ้าบ้านคืออะไร?",
    "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_en": "What club has a league/division of fourth division?",
    "question_th": "สโมสรใดมีลีก/ดิวิชั่นในดิวิชั่น 4?",
    "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_en": "When the position in 2012-23 is 4th, second division what is the club?",
    "question_th": "เมื่อตำแหน่งในปี 2555-23 อยู่อันดับ 4 ดิวิชั่น 2 สโมสรอะไร?",
    "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_en": "What location has a home ground of n/a, and position in 2012-13 of 13th, third division?",
    "question_th": "สถานที่ใดมีสนามเหย้าไม่มี และตำแหน่งในปี 2555-56 ของดิวิชั่น 13 ดิวิชั่น 3",
    "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_en": "What is the usage for the f136e engline?",
    "question_th": "เครื่องยนต์ f136e มีประโยชน์อย่างไร?",
    "context": "CREATE TABLE table_name_60 (usage VARCHAR, engine VARCHAR)"
  },
  {
    "answer": "SELECT usage FROM table_name_98 WHERE engine = \"f136fb\"",
    "question_en": "What is the for the f136fb engine?",
    "question_th": "เครื่องยนต์ f136fb คืออะไร?",
    "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_en": "What is the hometown of Mike White?",
    "question_th": "บ้านเกิดของ ไมค์ ไวท์ คืออะไร?",
    "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_en": "Which player was picked before 13, in a P position, and is from Georgia Tech?",
    "question_th": "ผู้เล่นคนไหนถูกเลือกก่อน 13 ในตำแหน่ง P และมาจาก 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_en": "Which Season has a UFL Cup of tbd?",
    "question_th": "ฤดูกาลใดที่มี UFL Cup ถึง 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_en": "Which PFF NMCC has a AFC PC of dnq?",
    "question_th": "PFF NMCC ใดมี AFC PC เป็น 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_en": "Which Season has a UFL Cup of quarter-finals?",
    "question_th": "ฤดูกาลใดมี UFL Cup ในรอบก่อนรองชนะเลิศ?",
    "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_en": "What is the sum of the grid of driver ryan hunter-reay, who has more than 24 points?",
    "question_th": "ผลรวมของตารางของนักแข่ง ไรอัน ฮันเตอร์-เรย์ ที่มีมากกว่า 24 แต้มเป็นเท่าใด",
    "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_en": "What is the total number of points of driver enrique bernoldi (r)?",
    "question_th": "จำนวนคะแนนรวมของนักแข่ง เอ็นริเก้ แบร์โนลดี (หลัง) คือเท่าไร?",
    "context": "CREATE TABLE table_name_95 (points VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT tv_time FROM table_name_93 WHERE result = \"w 24–17\"",
    "question_en": "Which TV Time has a Result of w 24–17?",
    "question_th": "เวลาทีวีใดมีผลเป็น w 24–17",
    "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_en": "Which Week has a TV Time of cbs 1:00pm, and an Attendance of 72,714?",
    "question_th": "สัปดาห์ใดมีเวลาทีวี cbs 13.00 น. และมีผู้เข้าร่วม 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_en": "Which TV Time has a Date of january 2, 2005?",
    "question_th": "เวลาทีวีใดมีวันที่ 2 มกราคม 2548",
    "context": "CREATE TABLE table_name_23 (tv_time VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT original_name FROM table_name_50 WHERE location = \"orillia, on\"",
    "question_en": "What was the original name of the restaurant located in Orillia, ON?",
    "question_th": "ชื่อเดิมของร้านอาหารที่ตั้งอยู่ใน 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_en": "What was the fate and location of the Ringstad?",
    "question_th": "ชะตากรรมและที่ตั้งของ Ringstad คืออะไร?",
    "context": "CREATE TABLE table_name_3 (fate_and_location VARCHAR, ship VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_50 WHERE loss = \"kiprusoff (2–2)\"",
    "question_en": "What is the Score of the game with a Loss of Kiprusoff (2–2)?",
    "question_th": "คะแนนของเกมที่แพ้คิปรุซอฟ (2–2) คืออะไร?",
    "context": "CREATE TABLE table_name_50 (score VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT partner FROM table_name_52 WHERE date = \"may 16, 2004\"",
    "question_en": "Who was the partner on May 16, 2004?",
    "question_th": "ใครคือหุ้นส่วนในวันที่ 16 พฤษภาคม พ.ศ. 2547",
    "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_en": "Who was the match played against in the final on March 14, 2008?",
    "question_th": "นัดที่เล่นกับใครในรอบชิงชนะเลิศเมื่อวันที่ 14 มีนาคม พ.ศ. 2551?",
    "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_en": "What is the title of the production with a number of 1039?",
    "question_th": "ชื่อผลงานหมายเลข 1,039 คืออะไร?",
    "context": "CREATE TABLE table_name_83 (title VARCHAR, production_number VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_48 WHERE production_number = \"1023\"",
    "question_en": "What is the title of the film with a production number of 1023?",
    "question_th": "ภาพยนตร์เรื่องนี้มีจำนวนการผลิต 1,023 เรื่อง ชื่ออะไร?",
    "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_en": "What is the lowest gold that has a silver less than 2, Zimbabwe as the nation, and a bronze less than 1?",
    "question_th": "ทองคำต่ำสุดที่มีเงินน้อยกว่า 2 ซิมบับเวเป็นประเทศ และทองแดงน้อยกว่า 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_en": "What's the nationality of Cardinal-Bishop of Albano?",
    "question_th": "พระคาร์ดินัล-บิชอปแห่งอัลบาโนมีสัญชาติอะไร",
    "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_en": "What are the notes of Cardinal-Deacon of S. Maria in Portico?",
    "question_th": "อะไรคือบันทึกของ Cardinal-Deacon of S. Maria ใน 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_en": "Which Name has a Constituency number of 1?",
    "question_th": "ชื่อใดมีเขตเลือกตั้งเป็นหมายเลข 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_en": "Which Number of electorates (2009) has a District of sheopur, and a Constituency number of 1?",
    "question_th": "ผู้มีสิทธิเลือกตั้งจำนวนใด (พ.ศ. 2552) มีเขตของโชปูร์ และเขตเลือกตั้งคือ 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_en": "Which Name has a Reserved for of none, and a Constituency number of 7?",
    "question_th": "ชื่อใดที่สงวนไว้สำหรับไม่มี และเขตเลือกตั้งหมายเลข 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_en": "The game played at Sultan Qaboos Sports Complex, Muscat had what score?",
    "question_th": "เกมนี้เล่นที่ Sultan Qaboos Sports Complex, Muscat ได้คะแนนเท่าไหร่?",
    "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_en": "What to par has t3 as the place and england as the country?",
    "question_th": "อะไรที่จะพาร์ได้มี t3 เป็นสถานที่และอังกฤษเป็นประเทศ?",
    "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_en": "How much Attendance has Games smaller than 6, and a W-L-T of 3-2-0, and a Season smaller than 1948?",
    "question_th": "จำนวนผู้เข้าร่วมที่มีเกมน้อยกว่า 6 และ WLT 3-2-0 และฤดูกาลที่น้อยกว่า 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_en": "Which Average that has a W-L-T of 5-1, and a Season smaller than 2001, and Games smaller than 6?",
    "question_th": "ค่าเฉลี่ยใดที่มี WLT 5-1 และฤดูกาลที่เล็กกว่าปี 2001 และเกมที่เล็กกว่า 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_en": "Which Opponent had an Attendance of 78,883?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีผู้เข้าร่วม 78,883 คน?",
    "context": "CREATE TABLE table_name_4 (opponent VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_44 WHERE attendance = \"bye\"",
    "question_en": "On what date was the attendance a bye?",
    "question_th": "บ๊ายบายเข้าร่วมวันไหนคะ?",
    "context": "CREATE TABLE table_name_44 (date VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_59 WHERE date = \"december 21, 2003\"",
    "question_en": "Which week was the December 21, 2003 game?",
    "question_th": "สัปดาห์ใดคือเกมวันที่ 21 ธันวาคม พ.ศ. 2546?",
    "context": "CREATE TABLE table_name_59 (week VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_96 WHERE tv_time = \"bye\"",
    "question_en": "Which opponent had a bye for the TV Time?",
    "question_th": "คู่ต่อสู้คนไหนที่ลาก่อนเวลาทีวี?",
    "context": "CREATE TABLE table_name_96 (opponent VARCHAR, tv_time VARCHAR)"
  },
  {
    "answer": "SELECT arena FROM table_name_22 WHERE date = \"september 21\"",
    "question_en": "At what arena was the September 21 game?",
    "question_th": "เกมวันที่ 21 กันยายน จัดขึ้นที่สนามใด?",
    "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_en": "What was the record after the game against the Sharks at Arrowhead Pond of Anaheim?",
    "question_th": "บันทึกหลังเกมกับฉลามที่ 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_en": "What was the record after the game against the Sharks?",
    "question_th": "บันทึกหลังเกมกับทีมฉลามเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_19 (record VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_81 WHERE college = \"arizona state\"",
    "question_en": "who is the player from arizona state?",
    "question_th": "ใครคือผู้เล่นจากรัฐแอริโซนา?",
    "context": "CREATE TABLE table_name_81 (player VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_63 WHERE college = \"florida\"",
    "question_en": "what is the position of the player from florida?",
    "question_th": "ตำแหน่งผู้เล่นจากฟลอริดาคืออะไร?",
    "context": "CREATE TABLE table_name_63 (position VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT MAX(pick) FROM table_name_20 WHERE position = \"tight end\"",
    "question_en": "what is the highest pick for the position tight end?",
    "question_th": "ตัวเลือกสูงสุดสำหรับตำแหน่งที่แน่นสุดคืออะไร?",
    "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_en": "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?",
    "question_th": "MPG-US ที่ต่ำที่สุดรวมกันเป็นเท่าใดสำหรับระดับสีเขียวของ E, mpg ในสหราชอาณาจักร - รวมกันต่ำกว่า 42.2, ผู้ผลิต Volkswagen และระบบเกียร์ M6",
    "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_en": "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?",
    "question_th": "ค่าลิตร/100 กม. ในเมืองโดยเฉลี่ยโดยมีค่าลิตร/100 กม. นอกเมืองต่ำกว่า 7.2, mpg รวมกันในสหราชอาณาจักรต่ำกว่า 39.8, ลิตร/100 กม. รวมกันมากกว่า 7.9 และ mpg รวมกันในสหรัฐอเมริกาต่ำกว่า 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_en": "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?",
    "question_th": "mpg-UK ในเมือง (เย็น) สำหรับประเภทเชื้อเพลิงดีเซล MPG นอกเมืองในสหราชอาณาจักรมากกว่า 68.9 ความจุเครื่องยนต์ 1422 และลิตร/100 กม. ในเมือง (เย็น) มากกว่า 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_en": "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?",
    "question_th": "ระดับสีเขียวสำหรับรถยนต์ที่มีระยะทาง L/100 กม. ในเมือง (เย็น) มากกว่า 10.9, MPG ในสหรัฐอเมริกา (ในเมือง) มากกว่า 14.1, ผู้ผลิต Volkswagen และความจุเครื่องยนต์ต่ำกว่า 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_en": "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?",
    "question_th": "ค่าเฉลี่ย L/100 กม. ในเมือง (เย็น) สำหรับความจุเครื่องยนต์มากกว่าปี 1910, mpg ในสหรัฐอเมริกา (ในเมือง) ต่ำกว่า 25.3, mpg ในสหราชอาณาจักร (รวมกัน) มากกว่า 27.2 และ mpg ในสหราชอาณาจักร (ในเมือง, เย็น) คือ 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_en": "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?",
    "question_th": "mpg รวมต่ำสุดในสหรัฐอเมริกาสำหรับระบบเกียร์ A6, CO2 กรัม/กม. ต่ำกว่า 303, ความจุเครื่องยนต์มากกว่า 2,461 และลิตร/100กม. ในเมือง (เย็น) คือ 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_en": "What was the release date of the episode titled Drip-Along Daffy?",
    "question_th": "วันที่วางจำหน่ายของตอนที่ชื่อ 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_en": "Who is in October when Carina Ragnarsson is in November?",
    "question_th": "ใครคือเดือนตุลาคมเมื่อ Carina Ragnarsson อยู่ในเดือนพฤศจิกายน?",
    "context": "CREATE TABLE table_name_61 (october VARCHAR, november VARCHAR)"
  },
  {
    "answer": "SELECT november FROM table_name_36 WHERE year = 1979",
    "question_en": "Who is in November in the year 1979?",
    "question_th": "ใครอยู่ในเดือนพฤศจิกายน พ.ศ. 2522?",
    "context": "CREATE TABLE table_name_36 (november VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT december FROM table_name_32 WHERE november = \"alexus winston\"",
    "question_en": "Who is in December when November has Alexus Winston?",
    "question_th": "ใครอยู่ในเดือนธันวาคมเมื่อเดือนพฤศจิกายนมี 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_en": "Who is in November after 1988 when Prinzzess is in October?",
    "question_th": "ใครอยู่ในเดือนพฤศจิกายนหลังปี 1988 เมื่อ Prinzzess อยู่ในเดือนตุลาคม?",
    "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_en": "What is the line that has lucania as the ship and 1894 as the date?",
    "question_th": "เส้นไหนที่มี lucania เป็นเรือ และ 1894 เป็นวันที่?",
    "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_en": "Which Genre has a Developer(s) of naughty dog?",
    "question_th": "ประเภทใดที่มีผู้พัฒนาสุนัขจอมซน?",
    "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_en": "Which Year has a Game of resident evil 4?",
    "question_th": "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_en": "Which Developer(s) has a Year of 2010?",
    "question_th": "นักพัฒนาคนไหนที่มีปี 2010?",
    "context": "CREATE TABLE table_name_90 (developer_s_ VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_12 WHERE record = \"0-1\"",
    "question_en": "Who is the Opponent of the match with a Record of 0-1?",
    "question_th": "ฝ่ายตรงข้ามของการแข่งขันด้วยสถิติ 0-1 คือใคร?",
    "context": "CREATE TABLE table_name_12 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_30 WHERE record = \"3-3\"",
    "question_en": "What is the Time of the match with a Record of 3-3?",
    "question_th": "เวลาของการแข่งขันด้วยสถิติ 3-3 คืออะไร?",
    "context": "CREATE TABLE table_name_30 (time VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT method FROM table_name_53 WHERE time = \"4:07\"",
    "question_en": "What is the Method of the match with a Time of 4:07?",
    "question_th": "วิธีการแข่งขันด้วยเวลา 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_en": "Which Published as serial has a Published as novel of october 1917, mcclurg?",
    "question_th": "ซึ่งตีพิมพ์เป็นอนุกรมมีการตีพิมพ์เป็นนวนิยายของเดือนตุลาคม 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–july 1912, all-story\"",
    "question_en": "Which Fictional narrator has a Published as serial of february–july 1912, all-story?",
    "question_th": "ผู้บรรยายเรื่องสมมติคนใดที่มีการตีพิมพ์เป็นอนุกรมของเดือนกุมภาพันธ์–กรกฎาคม 1912 เรื่องราวทั้งหมด",
    "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_en": "Which year in novel has a Published as serial of november 1934-april 1935, blue book?",
    "question_th": "ปีใดในนวนิยายมีการจัดพิมพ์เป็นอนุกรมของเดือนพฤศจิกายน พ.ศ. 2477 ถึงเมษายน พ.ศ. 2478 เล่มสีน้ำเงิน?",
    "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_en": "How many Goals have Games smaller than 6, and a Debut year of 1939, and Years at club of 1939, 1941?",
    "question_th": "มีกี่ประตูที่มีเกมที่น้อยกว่า 6 และปีเปิดตัวในปี 1939 และปีที่สโมสรในปี 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_en": "Which Years at club have a Debut year of 1930, and Games larger than 7, and a Player of colin benham?",
    "question_th": "ปีใดที่สโมสรมีปีเปิดตัวครั้งแรกในปี 1930 และเกมที่ใหญ่กว่า 7 เกม และมีผู้เล่นของ 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_en": "WhichPlayer has a Debut year larger than 1930, and Goals smaller than 95, and Years at club of 1938, and Games of 6?",
    "question_th": "ผู้เล่นคนไหนที่มีปีเปิดตัวใหญ่กว่าปี 1930 และประตูน้อยกว่า 95 ปี และปีที่เล่นในสโมสรปี 1938 และเกมที่ 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_en": "What is the cores when the L3 cache is 8 mb, and the frequency is 2.5 ghz?",
    "question_th": "คอร์คืออะไรเมื่อแคช L3 คือ 8 mb และความถี่คือ 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_en": "What is the model number with a release price of $303, and a sSpec number of sr14q(c0)?",
    "question_th": "หมายเลขรุ่นที่มีราคาวางจำหน่าย 303 ดอลลาร์ และหมายเลข sSpec 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 × 256 kb\" AND release_date = \"june 2013\" AND model_number = \"core i7-4770s\"",
    "question_en": "What turbo has a L2 cache of 4 × 256 kb, a release date of June 2013, and a Model number of core i7-4770s?",
    "question_th": "เทอร์โบตัวใดมีแคช L2 ขนาด 4 × 256 kb วันที่วางจำหน่ายเดือนมิถุนายน 2556 และหมายเลขรุ่นของคอร์ 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_en": "What is the socket when the sSpec number is standard power?",
    "question_th": "ซ็อกเก็ตคืออะไรเมื่อหมายเลข sSpec เป็นกำลังไฟมาตรฐาน?",
    "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_en": "What is the GPU model when the L3 cache is standard power?",
    "question_th": "GPU รุ่นใดเมื่อแคช L3 เป็นพลังงานมาตรฐาน?",
    "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_en": "What cores has an L2 cache of low power?",
    "question_th": "คอร์ใดมีแคช L2 ที่ใช้พลังงานต่ำ",
    "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_en": "What is the position for Discus in 2013?",
    "question_th": "ตำแหน่ง Discus ในปี 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_en": "What event was the competition World Junior Championships in 2010?",
    "question_th": "การแข่งขัน World Junior Championships ในปี 2010 มีกิจกรรมอะไรบ้าง?",
    "context": "CREATE TABLE table_name_16 (event VARCHAR, competition VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_88 WHERE vehicle = \"mitsubishi\"",
    "question_en": "Which year had a vehicle of Mitsubishi?",
    "question_th": "รถยนต์ของมิตซูบิชิปีไหน?",
    "context": "CREATE TABLE table_name_88 (year VARCHAR, vehicle VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_name_31 WHERE vehicle = \"nissan\" AND year = 2007",
    "question_en": "Which class had a vehicle of Nissan in 2007?",
    "question_th": "รถยนต์คลาสใดของ Nissan ในปี 2550",
    "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_en": "Which vehicle had a class of car in years after 2009 with 0 stages won and position of 5?",
    "question_th": "ยานพาหนะคันใดมีระดับรถยนต์ในปีหลังปี 2009 โดยชนะ 0 สเตจและอันดับ 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_en": "Which year had a position of 9?",
    "question_th": "ปีใดมีตำแหน่งที่ 9?",
    "context": "CREATE TABLE table_name_45 (year VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT county FROM table_name_89 WHERE mascot = \"tigers\"",
    "question_en": "What county is the team with the mascot of the Tigers in?",
    "question_th": "ทีมที่มีมาสคอตเสืออยู่จังหวัดไหน?",
    "context": "CREATE TABLE table_name_89 (county VARCHAR, mascot VARCHAR)"
  },
  {
    "answer": "SELECT county FROM table_name_2 WHERE mascot = \"tigers\"",
    "question_en": "What county is the team with the mascot of the Tigers in?",
    "question_th": "ทีมที่มีมาสคอตเสืออยู่จังหวัดไหน?",
    "context": "CREATE TABLE table_name_2 (county VARCHAR, mascot VARCHAR)"
  },
  {
    "answer": "SELECT AVG(enrollment) FROM table_name_21 WHERE school = \"lanesville\"",
    "question_en": "What is the enrollment at Lanesville?",
    "question_th": "การลงทะเบียนที่ 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_en": "What is the IHSAA class for the school in 10 Clark county with mascot of the Mustangs?",
    "question_th": "ชั้นเรียน IHSAA สำหรับโรงเรียนใน 10 เทศมณฑลคลาร์กที่มีตัวนำโชคเป็นรูปมัสแตงคืออะไร",
    "context": "CREATE TABLE table_name_73 (ihsaa_class VARCHAR, county VARCHAR, mascot VARCHAR)"
  },
  {
    "answer": "SELECT mascot FROM table_name_48 WHERE school = \"borden\"",
    "question_en": "What is the mascot at Borden?",
    "question_th": "มาสคอตของบอร์เดนคืออะไร?",
    "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_en": "What is the mascot of the school in New Washington in 10 Clark county?",
    "question_th": "ตัวนำโชคของโรงเรียนในนิววอชิงตันใน 10 คลาร์กเคาน์ตี้คืออะไร?",
    "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_en": "Which Owner(s) has a Description of hunslet engine company 0-6-0st?",
    "question_th": "เจ้าของคนใดมีคำอธิบายของบริษัทเครื่องยนต์ hunslet 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_en": "What is the number of electorates (2009) for Constituency number 182?",
    "question_th": "จำนวนผู้มีสิทธิเลือกตั้ง (2552) สำหรับเขตเลือกตั้งหมายเลข 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_en": "What is the Constituency number for Pandhana?",
    "question_th": "เขตเลือกตั้งของปัณฑนาคือหมายเลขใด",
    "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_en": "Which Name has a Number of electorates (2009) greater than 188,799?",
    "question_th": "ชื่อใดมีจำนวนผู้มีสิทธิเลือกตั้ง (2552) มากกว่า 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_en": "What is the Constituency number for Bikhangaon with a Reserved for ( SC / ST /None) of st?",
    "question_th": "หมายเลขเขตเลือกตั้งของ Bikhangaon ที่สงวนไว้สำหรับ (SC / ST /None) ของ 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_en": "How many silver medals for germany with a bronze count more than 0?",
    "question_th": "เยอรมนีได้เหรียญเงินมากกว่า 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_en": "How many gold medals when the total is more than 1 and 18 silver?",
    "question_th": "เมื่อรวมเกิน 1 และ 18 เหรียญเงิน ได้กี่เหรียญทอง?",
    "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_en": "How many bronze medals has a total less than 3 with a silver less than 1 and gold more than 1?",
    "question_th": "มีเหรียญทองแดงทั้งหมดกี่เหรียญที่มียอดรวมน้อยกว่า 3 เหรียญเงินน้อยกว่า 1 และเหรียญทองมากกว่า 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_en": "what is the venue on october 28, 2008?",
    "question_th": "วันที่ 28 ตุลาคม 2551 จะจัดขึ้นที่ใด?",
    "context": "CREATE TABLE table_name_43 (venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_43 WHERE date = \"september 10, 2008\"",
    "question_en": "what is the result on september 10, 2008?",
    "question_th": "ผลประกอบการวันที่ 10 กันยายน 2551 เป็นอย่างไร?",
    "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_en": "What is the name of the player with more than 0 assists, a position of forward, 19 goals, and more than 84 apps?",
    "question_th": "นักเตะที่ทำได้มากกว่า 0 แอสซิสต์, ตำแหน่งกองหน้า, 19 ประตู และมากกว่า 84 แอปชื่ออะไร?",
    "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_en": "What is the total goals with 12 assists, and less than 291 apps?",
    "question_th": "ประตูรวม 12 แอสซิสต์ น้อยกว่า 291 นัดคือเท่าไหร่?",
    "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_en": "What is the total of apps for Keith Treacy?",
    "question_th": "แอพทั้งหมดของ Keith Treacy คือเท่าไร?",
    "context": "CREATE TABLE table_name_37 (apps INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_12 WHERE name = \"erin donohue\"",
    "question_en": "What nationality is Erin Donohue?",
    "question_th": "เอริน โดโนฮิวเป็นคนสัญชาติอะไร",
    "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_en": "How many heats did Runners from Guinea-Bissau run, with rank higher than 33?",
    "question_th": "นักวิ่งจากกินี-บิสเซาวิ่งไปกี่ฮีตด้วยอันดับสูงกว่า 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_en": "what is the 1st round when team 1 is stade lavallois (d2)?",
    "question_th": "รอบแรกจะเป็นเช่นไร เมื่อทีม 1 คือ สตาด ลาวาลัวส์ (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_en": "what is the 1st round when team 2 is usl dunkerque (d2)?",
    "question_th": "รอบแรกคืออะไรเมื่อทีม 2 เป็น 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_en": "who is team 1 when team 2 is usl dunkerque (d2)?",
    "question_th": "ใครคือทีม 1 ในเมื่อทีม 2 คือ 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_en": "What is the Hometown of Candidate Lenny Veltman?",
    "question_th": "บ้านเกิดของผู้สมัคร Lenny Veltman คืออะไร?",
    "context": "CREATE TABLE table_name_73 (hometown VARCHAR, candidate VARCHAR)"
  },
  {
    "answer": "SELECT background FROM table_name_82 WHERE hometown = \"barrington, illinois\"",
    "question_en": "What is the Background of the Candidate from Barrington, Illinois?",
    "question_th": "ภูมิหลังของผู้สมัครจากเมืองแบร์ริงตัน รัฐอิลลินอยส์คืออะไร",
    "context": "CREATE TABLE table_name_82 (background VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT original_team FROM table_name_37 WHERE background = \"clothing company owner\"",
    "question_en": "What is the Original Team of the Clothing Company Owner Candidate?",
    "question_th": "ทีมดั้งเดิมของผู้สมัครเจ้าของบริษัทเสื้อผ้าคืออะไร?",
    "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_en": "what is the average place when the artist is juliana pasha & luiz ejlli and the points is more than 119?",
    "question_th": "สถานที่โดยเฉลี่ยเมื่อศิลปินคือ Juliana Pasha & Luiz Ejlli และคะแนนมากกว่า 119 คือเท่าใด",
    "context": "CREATE TABLE table_name_99 (place INTEGER, artist VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT song FROM table_name_38 WHERE points = 17",
    "question_en": "what is the song that has 17 points?",
    "question_th": "เพลงอะไรที่มี 17 คะแนนคะ?",
    "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_en": "What is the shortest Time for David Neville when his React time was greater than 0.183?",
    "question_th": "เวลาที่สั้นที่สุดสำหรับ David Neville คือเมื่อเวลาตอบสนองของเขามากกว่า 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_en": "What is the Title of the LT Series Filmography with a Release date of 1964-02-08?",
    "question_th": "ชื่อเรื่องของผลงานภาพยนตร์ซีรีส์ LT ที่มีวันวางจำหน่ายในปี 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_en": "What is the Series of the Filmography by Directory Friz Freleng?",
    "question_th": "ผลงานซีรีส์ของ 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_en": "What is the Release date of the Filmography directed by Robert McKimson in MM Series with Production Number 1665?",
    "question_th": "ผลงานภาพยนตร์ที่กำกับโดย Robert McKimson ในซีรีส์ MM ที่มีหมายเลขการผลิต 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_en": "What is the Director of the Filmography The Iceman Ducketh?",
    "question_th": "ผู้กำกับผลงานภาพยนตร์ 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_en": "What is the Production Number of the Filmography in MM Series with a Release date of 1964-06-27?",
    "question_th": "จำนวนการผลิตผลงานภาพยนตร์ในซีรีส์ MM ที่มีวันวางจำหน่ายคือ 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_en": "What is the Date of the Game with a Record of 46-22?",
    "question_th": "วันที่ของเกมที่มีสถิติ 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_en": "What is the Date of the Game with a Score of w 112-107 (ot)?",
    "question_th": "วันที่ของเกมด้วยคะแนน 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_en": "What is the athlete muna lee lowest time?",
    "question_th": "นักกีฬา มูนา ลี เวลาต่ำสุดคืออะไร?",
    "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_en": "What is the sum of rank for the athlete kerron stewart, and a time smaller than 11.05?",
    "question_th": "ผลรวมอันดับของนักกีฬาเคอร์รอน สจ๊วต และเวลาที่น้อยกว่า 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_en": "What is a highest time for the heat smaller than 1?",
    "question_th": "เวลาสูงสุดสำหรับความร้อนที่น้อยกว่า 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_en": "What is the highest time for athlete torri edwards, and a rank larger than 6?",
    "question_th": "เวลาสูงสุดสำหรับนักกีฬา torri edwards และอันดับมากกว่า 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_en": "What's the IS-2 when the KV-1S is 114?",
    "question_th": "IS-2 คืออะไรเมื่อ KV-1S เป็น 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_en": "What's the IS-3 when the KV-1S is 45?",
    "question_th": "IS-3 คืออะไรเมื่อ KV-1S เป็น 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_en": "What's the T-100 when the IS-3 is 150 (225)?",
    "question_th": "T-100 คืออะไรเมื่อ IS-3 คือ 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_en": "What's the IS-3 when the KV-85 is 40?",
    "question_th": "IS-3 คืออะไรเมื่อ KV-85 เป็น 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_en": "What's the KV-85 when the KV-1S is 45?",
    "question_th": "KV-85 คืออะไรเมื่อ KV-1S คือ 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_en": "What is the sum of the bronze medals won by south korea?",
    "question_th": "ผลรวมของเหรียญทองแดงที่เกาหลีใต้ได้รับคือเท่าไร?",
    "context": "CREATE TABLE table_name_67 (bronze INTEGER, nation VARCHAR)"
  },
  {
    "answer": "SELECT ihsaa_class FROM table_name_85 WHERE school = \"speedway\"",
    "question_en": "Which IHSAA class does speedway school belong to?",
    "question_th": "โรงเรียนสปีดเวย์อยู่ในชั้นเรียนใดของ IHSAA",
    "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_en": "Which ISHAA school joined in 2012 and has a mascot of the panthers?",
    "question_th": "โรงเรียน ISHAA แห่งใดเข้าร่วมในปี 2012 และมีตัวนำโชคเป็นรูปเสือดำ",
    "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_en": "Which Tries against has Points against larger than 156, and Points for of 127, and Tries for larger than 17?",
    "question_th": "ความพยายามใดที่มีคะแนนมากกว่า 156 และคะแนนสำหรับ 127 และพยายามมากกว่า 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_en": "Which Try diff has Tries for of 12?",
    "question_th": "Try diff ตัวไหนมี Tries เป็นเวลา 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_en": "What is SS Player Rich McKinney's Team?",
    "question_th": "ทีม SS Player Rich McKinney คืออะไร?",
    "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_en": "What is the Player from Dayton, Oh with a Pick of 15 or larger?",
    "question_th": "ผู้เล่นจาก Dayton, Oh พร้อมตัวเลือก 15 หรือใหญ่กว่าคืออะไร?",
    "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_en": "What is the Pick of the Player from Stamford, CT?",
    "question_th": "ตัวเลือกของผู้เล่นจาก 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_en": "What is the county with an AA IHSAA class in ferdinand?",
    "question_th": "มณฑลใดที่มีระดับ AA IHSAA ในเฟอร์ดินันด์คืออะไร",
    "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_en": "What is the lowest size of the school with titans as the mascot?",
    "question_th": "โรงเรียนขนาดเล็กที่สุดที่มีไททันเป็นมาสคอตคือขนาดใด",
    "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_en": "What school has a size less than 674, has a county of 19 dubois, and has the rangers as their mascot?",
    "question_th": "โรงเรียนใดที่มีขนาดน้อยกว่า 674 มีเขตปกครอง 19 ดูบัวส์ และมีเรนเจอร์เป็นตัวนำโชค?",
    "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_en": "Which player has a score of 71-69-71-67=278?",
    "question_th": "นักเตะคนไหนมีคะแนน 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_en": "How many Wins have Winnings of $184,190, and a Top 10 larger than 1?",
    "question_th": "มีผู้ชนะจำนวนเท่าใดที่มีเงินรางวัล $184,190 และ 10 อันดับแรกที่มากกว่า 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_en": "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?",
    "question_th": "ยอดเขาปุนจักจายา (ปิรามิดคาร์สเตนซ์) สูงที่สุดในหน่วยเมตร ซึ่งอยู่ในอันดับที่ต่ำกว่า 7 และมีความโดดเด่นน้อยกว่า 4,884 เมตร?",
    "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_en": "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?",
    "question_th": "ระดับความสูงสูงสุดในหน่วยเมตรของยอดเขาบอนอิเรา ซึ่งมีความสูงมากกว่า 0 เมตร และมีความโดดเด่นน้อยกว่า 1,900 เมตร คือข้อใด",
    "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_en": "Which round was the defensive tackle picked after 187?",
    "question_th": "แท็คเกิ้ลรับเลือกรอบไหนหลังจาก 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_en": "What was the title for the label mother / mvp / polydor?",
    "question_th": "ป้ายกำกับ 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_en": "What was the label for Shake Your Groove Thing in USA?",
    "question_th": "Shake Your Groove Thing ในสหรัฐอเมริกามีชื่อว่าอะไร",
    "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_en": "What is listed as the Place of birth for the Elector of Soffredo?",
    "question_th": "สถานที่เกิดของผู้มีสิทธิเลือกตั้งแห่งซอฟเฟรโดระบุว่าเป็นสถานที่ใด",
    "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_en": "What's the Place of birth listed that has an Elevator of ALexander III, and an Elector of Ruggiero Di San Severino?",
    "question_th": "สถานที่เกิดแห่งใดที่มีลิฟต์ของ ALexander III และผู้มีสิทธิเลือกของ 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_en": "What is listed for the Elevator, that also has the Cardinalatial title of Deacon of S. Maria in Portico?",
    "question_th": "ลิฟต์มีชื่ออะไรเป็นพระคาร์ดินัลเชียลเป็นมัคนายกแห่งเอส. มาเรียในปอร์ติโกด้วย",
    "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_en": "What is listed for the Elector that also has the Cardinalatial title of Priest of S. Marco?",
    "question_th": "รายการใดสำหรับผู้มีสิทธิเลือกตั้งซึ่งมีตำแหน่งพระคาร์ดินัลเป็นพระคาร์ดินัลแห่งเอส. มาร์โกด้วย",
    "context": "CREATE TABLE table_name_86 (elector VARCHAR, cardinalatial_title VARCHAR)"
  },
  {
    "answer": "SELECT elevator FROM table_name_10 WHERE elector = \"gerardo\"",
    "question_en": "What is listed for the Elevator that has the Elector of Gerardo?",
    "question_th": "ลิฟต์ที่มีผู้มีสิทธิเลือกแห่งเจอราร์โดระบุไว้ในรายการอะไรบ้าง",
    "context": "CREATE TABLE table_name_10 (elevator VARCHAR, elector VARCHAR)"
  },
  {
    "answer": "SELECT place_of_birth FROM table_name_40 WHERE elector = \"pandolfo\"",
    "question_en": "What is listed as the Place of Birth for the Elector of Pandolfo?",
    "question_th": "สถานที่เกิดของผู้มีสิทธิเลือกตั้งแห่งปันดอลโฟระบุว่าเป็นสถานที่ใด",
    "context": "CREATE TABLE table_name_40 (place_of_birth VARCHAR, elector VARCHAR)"
  },
  {
    "answer": "SELECT MIN(density__per_km²_) FROM table_name_77 WHERE rank = \"5\" AND area__km²_ < 125 OFFSET 755",
    "question_en": "what is the least density (per km²) when the rank is 5 and the Area (km²) is less than 125,755?",
    "question_th": "ความหนาแน่นน้อยที่สุด (ต่อ กม.²) คือเท่าใด เมื่ออันดับคือ 5 และพื้นที่ (กม. ²) น้อยกว่า 125,755",
    "context": "CREATE TABLE table_name_77 (density__per_km²_ INTEGER, rank VARCHAR, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT turbo FROM table_name_63 WHERE frequency = \"2.2 ghz\"",
    "question_en": "what is the turbo when the frequency is 2.2 ghz?",
    "question_th": "เทอร์โบเมื่อความถี่เป็น 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_en": "what is the gpu frequency when the part number is cw8064701470702?",
    "question_th": "ความถี่ของ GPU คือเท่าไรเมื่อหมายเลขชิ้นส่วนคือ 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_en": "what is the release date when the sspec number is sr15h(c0)?",
    "question_th": "หมายเลข sspec คือ 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_en": "what is the sspec number when the part number is cw8064701470802?",
    "question_th": "หมายเลขสเป็คคืออะไรเมื่อหมายเลขชิ้นส่วนคือ 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_en": "what is the average rank when the cyclist is alexandr pliuschin?",
    "question_th": "อันดับเฉลี่ยของนักปั่นจักรยานคือ 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_en": "what is the rank when heat is 9 and the nation is great britain?",
    "question_th": "ความร้อนอยู่ที่ 9 และประเทศคือบริเตนใหญ่อันดับที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_21 (rank INTEGER, heat VARCHAR, nation VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_13 WHERE rank = 12",
    "question_en": "what is the result when the rank is 12?",
    "question_th": "เมื่ออันดับเป็น 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_en": "Which competition had a year of 2010 with Snatch weight of 185kg?",
    "question_th": "การแข่งขันใดมีปี 2010 โดย Snatch น้ำหนัก 185 กิโลกรัม?",
    "context": "CREATE TABLE table_name_23 (competition VARCHAR, year VARCHAR, snatch VARCHAR)"
  },
  {
    "answer": "SELECT snatch FROM table_name_92 WHERE total = \"409kg\"",
    "question_en": "What was the Snatch weight for the year that had a total of 409kg?",
    "question_th": "น้ำหนัก Snatch สำหรับปีที่มีน้ำหนักรวม 409 กิโลกรัมคือเท่าใด",
    "context": "CREATE TABLE table_name_92 (snatch VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT clean_and_jerk FROM table_name_13 WHERE snatch = \"190kg\"",
    "question_en": "What was the Clean and Jerk weight for the year that had a Snatch result of 190kg?",
    "question_th": "น้ำหนัก Clean and Jerk สำหรับปีที่มีผล Snatch 190 กก. เป็นเท่าใด",
    "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_en": "What was the highest place result in 2010 with a Clean and Jerk weight of 224kg?",
    "question_th": "ผลลัพธ์อันดับสูงสุดในปี 2010 ด้วยน้ำหนัก Clean and Jerk อยู่ที่ 224 กิโลกรัมคืออะไร?",
    "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_en": "Which competition led to a total weight of 428kg?",
    "question_th": "การแข่งขันรายการใดทำให้มีน้ำหนักรวม 428 กิโลกรัม?",
    "context": "CREATE TABLE table_name_77 (competition VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT SUM(lane) FROM table_name_97 WHERE time = \"1:59.42\"",
    "question_en": "In what lane did the swimmer get a time of 1:59.42?",
    "question_th": "นักว่ายน้ำทำเวลาได้ 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_en": "Name the Gold which has a Nation of australia, and a Bronze smaller than 1?",
    "question_th": "ตั้งชื่อทองคำซึ่งมีประเทศออสเตรเลียและเหรียญทองแดงที่เล็กกว่า 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_en": "Which the highest Bronze of czech republic with a Total smaller than 4?",
    "question_th": "สาธารณรัฐเช็กสีบรอนซ์สูงสุดใดที่มีคะแนนรวมน้อยกว่า 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_en": "Name the highest Bronze which has a Gold larger than 2 and a Rank of total?",
    "question_th": "ตั้งชื่อเหรียญทองแดงสูงสุดซึ่งมีทองมากกว่า 2 และอันดับรวมหรือไม่?",
    "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_en": "Count the average Gold which has a Nation of sweden, and a Silver larger than 1?",
    "question_th": "นับทองคำเฉลี่ยที่มีประเทศสวีเดนและเงินที่มากกว่า 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_en": "Who was the opponent on June 3?",
    "question_th": "คู่ต่อสู้ในวันที่ 3 มิถุนายนคือใคร?",
    "context": "CREATE TABLE table_name_50 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_name_28 WHERE record = \"9-7\"",
    "question_en": "Which game had a 9-7 record?",
    "question_th": "เกมใดมีสถิติ 9-7?",
    "context": "CREATE TABLE table_name_28 (game VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT MAX(game) FROM table_name_79 WHERE record = \"3-2\"",
    "question_en": "What is the highest game with a 3-2 record?",
    "question_th": "เกมสูงสุดที่มีสถิติ 3-2 คืออะไร?",
    "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_en": "Who is the opponent of the game with a game number larger than 5 on June 22?",
    "question_th": "คู่ต่อสู้ของเกมที่มีหมายเลขเกมมากกว่า 5 ในวันที่ 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_en": "What is the score of the game on June 25 at the mohegan sun arena?",
    "question_th": "สกอร์เกมวันที่ 25 มิ.ย. ที่ โมฮีแกน ซัน อารีน่า เป็นอย่างไรบ้าง?",
    "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_en": "Who is the opponent at america west arena?",
    "question_th": "คู่ต่อสู้ในอเมริกาเวสต์อารีน่าคือใคร?",
    "context": "CREATE TABLE table_name_24 (opponent VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT rowers FROM table_name_42 WHERE rank > 3 AND country = \"finland\"",
    "question_en": "Who are the rowers ranked greater than 3 from Finland?",
    "question_th": "ใครคือนักพายอันดับมากกว่า 3 จากประเทศฟินแลนด์?",
    "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_en": "What country had a 6:55.23 time?",
    "question_th": "ประเทศใดมีเวลา 6:55.23 น.",
    "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_en": "What is the average number of wins for teams with 14 losses and against over 2200?",
    "question_th": "จำนวนชัยชนะโดยเฉลี่ยสำหรับทีมที่แพ้ 14 ครั้งและมากกว่า 2,200 ครั้งเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_41 (wins INTEGER, losses VARCHAR, against VARCHAR)"
  },
  {
    "answer": "SELECT SUM(wins) FROM table_name_16 WHERE against < 1067",
    "question_en": "What is the sum of wins for teams with against under 1067?",
    "question_th": "ผลรวมของชัยชนะสำหรับทีมที่แพ้ต่ำกว่า 1,067 เป็นเท่าใด?",
    "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_en": "What is the sum of Against values for teams with 5 losses and 0 draws?",
    "question_th": "ผลรวมของค่าตัวต่อสำหรับทีมที่แพ้ 5 และเสมอ 0 เป็นเท่าใด?",
    "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_en": "What is the total number of byes for teams with against of 2139 and more than 0 draws?",
    "question_th": "จำนวนบายรวมสำหรับทีมที่แข่งกับ 2139 และเสมอมากกว่า 0 เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_70 (byes VARCHAR, against VARCHAR, draws VARCHAR)"
  },
  {
    "answer": "SELECT MAX(attendance) FROM table_name_30 WHERE week < 1",
    "question_en": "what is the highest attendance when the week is smaller than 1?",
    "question_th": "ผู้เข้าร่วมสูงสุดเมื่อสัปดาห์น้อยกว่า 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_en": "what is the week when the result is w 14-13 and the attendance is higher than 53,295?",
    "question_th": "สัปดาห์ใดที่ผลการแข่งขันคือ w 14-13 และมีผู้เข้าร่วมมากกว่า 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_en": "What college did Richard Ticzon attend?",
    "question_th": "Richard Ticzon เข้าเรียนที่วิทยาลัยใด",
    "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_en": "Which player went to college at Up-Diliman and plays on PBA team of the Alaska Milkmen?",
    "question_th": "ผู้เล่นคนไหนไปเรียนที่วิทยาลัยที่ Up-Diliman และเล่นในทีม PBA ของ 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_en": "How many silver medals when the total was 2 and less than 1 bronze?",
    "question_th": "รวมได้ 2 เหรียญเงิน ไม่ถึง 1 เหรียญทองแดง ได้กี่เหรียญ?",
    "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_en": "What's the total when the bronze was more than 1, silver was 3, and gold was less than 5?",
    "question_th": "เมื่อทองแดงมีค่ามากกว่า 1 เงินมีค่า 3 และทองมีค่าน้อยกว่า 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_en": "What's the gold medal count for Total Nation with a bronze count more than 0 and a total less than 54?",
    "question_th": "เหรียญทองของ Total Nation ที่นับเหรียญทองแดงมากกว่า 0 และคะแนนรวมน้อยกว่า 54 ได้เท่าไร",
    "context": "CREATE TABLE table_name_13 (gold INTEGER, bronze VARCHAR, nation VARCHAR)"
  },
  {
    "answer": "SELECT borough_or_a[›_] AS _census_area FROM table_name_81 WHERE name_a[›_] = \"jerome lake dam\"",
    "question_en": "what is the borough or A[›] Census area when the Name A[›] is jerome lake dam?",
    "question_th": "เขตเลือกตั้งหรือพื้นที่สำรวจสำมะโน A[›] คืออะไร ในเมื่อชื่อ A[›] คือเขื่อนทะเลสาบเจโรม",
    "context": "CREATE TABLE table_name_81 (borough_or_a VARCHAR, ›_ VARCHAR, name_a VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_40 WHERE money___$__ = \"3,600\"",
    "question_en": "What is the score for the player who won $3,600?",
    "question_th": "คะแนนสำหรับผู้เล่นที่ได้รับรางวัล $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_en": "Name the most total with average less than 36.5 and rank by average of 14",
    "question_th": "ตั้งชื่อผลรวมมากที่สุดโดยมีค่าเฉลี่ยน้อยกว่า 36.5 และอันดับเฉลี่ยอยู่ที่ 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_en": "Name the sum of rank by average with competition finish more than 8 and average larger than 30",
    "question_th": "ตั้งชื่อผลรวมของอันดับโดยเฉลี่ยโดยแข่งขันจบมากกว่า 8 และค่าเฉลี่ยมากกว่า 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_en": "Name the total number of competition finish with total of 90 and rank by average more than 5",
    "question_th": "ระบุจำนวนรวมการแข่งขันจบด้วยคะแนนรวม 90 และอันดับโดยเฉลี่ยมากกว่า 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_en": "Name the greatest competition finish with average more than 32.9 and number of dances more than 16",
    "question_th": "ระบุการแข่งขันที่ยิ่งใหญ่ที่สุดจบด้วยคะแนนเฉลี่ยมากกว่า 32.9 และจำนวนท่าเต้นมากกว่า 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_en": "Name the least rank by average for number of dances less than 9 and competition finish of 5",
    "question_th": "ตั้งชื่ออันดับน้อยที่สุดโดยเฉลี่ยสำหรับจำนวนการเต้นรำน้อยกว่า 9 และการแข่งขันจบที่ 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_en": "What was the record on june 4?",
    "question_th": "บันทึกเมื่อวันที่ 4 มิถุนายนคืออะไร?",
    "context": "CREATE TABLE table_name_83 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_59 WHERE opponent = \"minnesota\"",
    "question_en": "What was the score of the Iowa v. Minnesota game?",
    "question_th": "คะแนนของเกม Iowa vs. Minnesota คืออะไร?",
    "context": "CREATE TABLE table_name_59 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_98 WHERE city = \"milwaukee\"",
    "question_en": "Who was Milwaukee's opponent?",
    "question_th": "คู่ต่อสู้ของมิลวอกีคือใคร?",
    "context": "CREATE TABLE table_name_98 (opponent VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_80 WHERE opponent = \"tulsa\"",
    "question_en": "What was the result of the game versus Tulsa?",
    "question_th": "ผลการแข่งขันกับทัลซ่าเป็นอย่างไร?",
    "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_en": "What is the most points for a vehicle with a lola thl1, chassis later than 1986?",
    "question_th": "อะไรคือคะแนนมากที่สุดสำหรับรถยนต์ที่มี lola thl1 แชสซีหลังปี 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öwenbräu team mclaren\"",
    "question_en": "What is the latest year with less than 2 points, a Mclaren m28 chassis and an Entrant of löwenbräu team mclaren?",
    "question_th": "ปีล่าสุดที่มีคะแนนน้อยกว่า 2 แต้ม แชสซีของ Mclaren m28 และผู้เข้าแข่งขันของทีม mclaren löwenbräu คืออะไร?",
    "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_en": "What is the latest year for Entrant of equipe talbot gitanes with less than 1 point?",
    "question_th": "ปีล่าสุดสำหรับผู้เข้าแข่งขัน Equipe Talbot Gitanes ที่มีคะแนนน้อยกว่า 1 คะแนนคือปีใด",
    "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_en": "When did the reactor that has a rated power of 945 MW and ended construction on May 10, 1978 close?",
    "question_th": "เครื่องปฏิกรณ์ที่มีกำลังไฟพิกัด 945 เมกะวัตต์ และสิ้นสุดการก่อสร้างเมื่อวันที่ 10 พ.ค. 2521 ปิดทำการเมื่อใด",
    "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_en": "What is the rated power for the reactor that ended construction on May 10, 1978?",
    "question_th": "กำลังไฟพิกัดสำหรับเครื่องปฏิกรณ์ที่สิ้นสุดการก่อสร้างเมื่อวันที่ 10 พฤษภาคม พ.ศ. 2521 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_52 (rated_power VARCHAR, finish_construction VARCHAR)"
  },
  {
    "answer": "SELECT partnering FROM table_name_41 WHERE opponents = \"marin čilić lovro zovko\"",
    "question_en": "Who was the parter against Marin čilić lovro Zovko?",
    "question_th": "ใครเป็นคู่ต่อสู้กับ Marin čilić 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_en": "What was the score on 24 February 2013?",
    "question_th": "คะแนนเมื่อวันที่ 24 กุมภาพันธ์ 2556 เป็นอย่างไรบ้าง?",
    "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_en": "Who was the opponent on clay surface when partnered with Horacio Zeballos?",
    "question_th": "ใครคือคู่ต่อสู้บนพื้นดินเมื่อร่วมมือกับ 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_en": "Which course had a rest day for the Race Leader?",
    "question_th": "สนามไหนมีวันพักสำหรับ 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_en": "Name the attendance with angels opponent for july 9",
    "question_th": "ตั้งชื่อผู้เข้าร่วมกับฝ่ายตรงข้ามเทวดาสำหรับวันที่ 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_en": "Name the most attendance whent he record is 45-57",
    "question_th": "ตั้งชื่อผู้เข้าร่วมมากที่สุดเมื่อเขาบันทึกคือ 45-57",
    "context": "CREATE TABLE table_name_2 (attendance INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_12 WHERE record = \"43-56\"",
    "question_en": "Which is the opponent when the record was 43-56?",
    "question_th": "คู่ต่อสู้คนไหนเมื่อสถิติเป็น 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_en": "What is the highest number of cuts made in a tournament with 0 wins and 0 top 5 placings?",
    "question_th": "จำนวนการตัดตัวสูงสุดในทัวร์นาเมนต์ที่ชนะ 0 ครั้งและอันดับ 5 อันดับแรก 0 คืออะไร?",
    "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_en": "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?",
    "question_th": "จำนวน Inaug. คืออะไร เมื่อประเภทเป็นสาธารณะ เมื่อชื่อคือ Mei Lam Estate และเมื่อไม่มียูนิตมีขนาดใหญ่กว่า 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_en": "What is the average No Units, when the Name is Fung Shing Court, and when the No Blocks is fewer than 3?",
    "question_th": "อะไรคือค่าเฉลี่ยไม่มีหน่วย เมื่อชื่อคือ Fung Shing Court และเมื่อไม่มีบล็อกน้อยกว่า 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_en": "What rank is the transfer for the milan move in 2000?",
    "question_th": "การย้ายทีมของมิลานในปี 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_en": "When was the earliest year that kakha kaladze moved to milan with a rank above 9?",
    "question_th": "ปีแรกสุดที่กาคา คาลาดเซ ย้ายไปมิลานด้วยอันดับสูงกว่า 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_en": "Where did the player move from that went to stuttgart?",
    "question_th": "นักเตะย้ายจากที่ไปสตุ๊ตการ์ทที่ไหน?",
    "context": "CREATE TABLE table_name_17 (moving_from VARCHAR, moving_to VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_61 WHERE moving_to = \"barcelona\"",
    "question_en": "Who was moved to barcelona?",
    "question_th": "ใครถูกย้ายไปบาร์เซโลนา?",
    "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_en": "How many totals have 0 as Gold, a bronze greater than 1, and a silver less than 1?",
    "question_th": "มีทั้งหมดกี่ตัวที่มี 0 เป็นทองคำ ทองแดงมากกว่า 1 และเงินน้อยกว่า 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_en": "How many totals have brazil as the nation, and a bronze less than 2?",
    "question_th": "บราซิลมีทั้งหมดกี่ประเทศ และเหรียญทองแดงน้อยกว่า 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_en": "How many silvers have 2 as gold, and a bronze less than 2?",
    "question_th": "มีเงินกี่อันที่มีทองคำ 2 อัน และทองแดงหนึ่งอันมีค่าน้อยกว่า 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_en": "Which nation has a gold less than 2 and a bronze less than 5?",
    "question_th": "ประเทศใดมีทองคำน้อยกว่า 2 และทองแดงน้อยกว่า 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_en": "What is the least silver that has mexico as a nation and a gold less than 0?",
    "question_th": "เงินที่น้อยที่สุดที่มีเม็กซิโกเป็นชาติและทองคำน้อยกว่า 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_en": "Where did Dennis Byrd go to college?",
    "question_th": "Dennis Byrd เข้าเรียนวิทยาลัยที่ไหน",
    "context": "CREATE TABLE table_name_29 (college VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT visa_3 FROM table_name_83 WHERE visa_1 = \"gui finkler\"",
    "question_en": "Which Visa 3 has gui finkler as Visa 1?",
    "question_th": "Visa 3 ตัวใดที่มี gui finkler เป็น 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_en": "Which Visa 3 has a Visa 4 of youssouf hersi?",
    "question_th": "วีซ่า 3 ตัวไหนมีวีซ่า 4 ของ 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_en": "Which  Visa 5  has a Visa 1 of emile heskey?",
    "question_th": "Visa 5 ตัวใดที่มีวีซ่า 1 ของ 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_en": "Which Visa 3 has a Visa 1 of michael mcglinchey?",
    "question_th": "Visa 3 ตัวใดที่มี Visa 1 ของ 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_en": "Which Visa 4 has besart berisha as Visa 1?",
    "question_th": "Visa 4 ใดที่มี besart berisha เป็น 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_en": "What is the lowest tier for a position smaller than 7 for a Turkish Cup group stage?",
    "question_th": "ระดับต่ำสุดสำหรับตำแหน่งที่น้อยกว่า 7 ในรอบแบ่งกลุ่มเตอร์กิช คัพ คือเท่าไร?",
    "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_en": "How many rounds have a Grand Prix of german gp?",
    "question_th": "เยอรมัน จีพี กรังด์ปรีซ์ มีกี่รอบ?",
    "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_en": "What is the largest round with a Race Title of korean grand prix?",
    "question_th": "รอบที่ใหญ่ที่สุดที่มีตำแหน่งการแข่งขันของ 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_en": "Which circuit has a Race Title of japanese grand prix?",
    "question_th": "สนามใดมีตำแหน่ง Race Title ของ 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_en": "What is the smallest round with a Grand Prix of indian gp?",
    "question_th": "รอบที่เล็กที่สุดกับ Grand Prix ของ 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_en": "Which date has a Race Title of dhl turkish grand prix?",
    "question_th": "วันไหนที่มีตำแหน่งการแข่งขันของ 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_en": "Name the PBA team for paolo mendoza",
    "question_th": "ตั้งชื่อทีม PBA สำหรับเปาโล เมนโดซา",
    "context": "CREATE TABLE table_name_81 (pba_team VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_5 WHERE player = \"billy andrade\"",
    "question_en": "What did billy andrade to par?",
    "question_th": "บิลลี่ แอนเดรดได้พาร์อะไร?",
    "context": "CREATE TABLE table_name_5 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_60 WHERE result = \"w 31-28\"",
    "question_en": "Name the date for w 31-28",
    "question_th": "ตั้งชื่อวันที่ ส.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_en": "Name the most week for record of 1-2 and attendance more than 61,602",
    "question_th": "ระบุสัปดาห์มากที่สุดเป็นประวัติการณ์ 1-2 และมีผู้เข้าร่วมมากกว่า 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_en": "What was the final score when the result was 4-0?",
    "question_th": "สกอร์สุดท้ายเมื่อผลเป็น 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_en": "Where was there a result of 4-5 and a score of 1-1?",
    "question_th": "มีผล 4-5 และสกอร์ 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_en": "With a time of 53.33, who ranked the highest?",
    "question_th": "ด้วยเวลา 53.33 ใครครองอันดับสูงสุด?",
    "context": "CREATE TABLE table_name_89 (rank INTEGER, time VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(time) FROM table_name_4 WHERE nationality = \"great britain\"",
    "question_en": "What was Great Britain's total time?",
    "question_th": "เวลารวมของบริเตนใหญ่คือเท่าไร?",
    "context": "CREATE TABLE table_name_4 (time VARCHAR, nationality VARCHAR)"
  },
  {
    "answer": "SELECT lane FROM table_name_4 WHERE rank < 4 AND nationality = \"netherlands\"",
    "question_en": "Which lane ranked less than 4 for the Netherlands?",
    "question_th": "เลนใดอันดับที่น้อยกว่า 4 สำหรับเนเธอร์แลนด์",
    "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_en": "What was the winning score in the Alfred Dunhill links championship?",
    "question_th": "คะแนนชนะในการแข่งขัน 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_en": "What date did Ian poulter become runner up?",
    "question_th": "เอียน โพลเตอร์ รองแชมป์วันไหน?",
    "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_en": "What was the film title used in nomination for Panny Z Wilka?",
    "question_th": "ชื่อภาพยนตร์ที่ใช้ในการเสนอชื่อ 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 = \"רגעים\"",
    "question_en": "What is the language of the film originally titled רגעים?",
    "question_th": "เดิมทีภาพยนตร์เรื่องนี้ชื่อว่า רגעים ใช้ภาษาอะไร",
    "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_en": "Name the points for with drawn of 0 and points of 88",
    "question_th": "ตั้งชื่อแต้มด้วยแต้ม 0 และแต้ม 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_en": "Name the played with try bonus of 6 and drawn of 0",
    "question_th": "ตั้งชื่อผู้เล่นที่เล่นด้วยลองโบนัส 6 และเสมอ 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_en": "Name the point with points for of 255",
    "question_th": "ตั้งชื่อจุดด้วยคะแนนของ 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_en": "Name the played with losing bonus of 2 and points for of 706",
    "question_th": "ตั้งชื่อผู้เล่นด้วยโบนัสแพ้ 2 และคะแนน 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_en": "Name the drawn with lost of 3 and points of 88",
    "question_th": "ทายผลเสมอ แพ้ 3 แต้ม 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_en": "Name the year when the publisher was argonaut games sierra entertainment",
    "question_th": "ตั้งชื่อปีที่ผู้จัดพิมพ์เป็น 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_en": "Name the plaform for year more than 2006 and developer of 3g studios",
    "question_th": "ตั้งชื่อแพลตฟอร์มสำหรับปีมากกว่าปี 2549 และผู้พัฒนาสตูดิโอ 3g",
    "context": "CREATE TABLE table_name_33 (platform VARCHAR, year VARCHAR, developer VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_2 WHERE year = 2005",
    "question_en": "Name the title for 2005",
    "question_th": "ตั้งชื่อหัวข้อสำหรับปี 2548",
    "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_en": "What years are listed for the Tahunanui school with an authority of state?",
    "question_th": "โรงเรียน Tahunanui ที่มีอำนาจของรัฐระบุไว้กี่ปี?",
    "context": "CREATE TABLE table_name_31 (years VARCHAR, authority VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT october FROM table_name_51 WHERE february = \"cristy thom\"",
    "question_en": "Who is the october playmate with February playmate Cristy Thom?",
    "question_th": "ใครคือเพื่อนเล่นเดือนตุลาคมกับคริสตี้ ธอม เพื่อนร่วมเล่นในเดือนกุมภาพันธ์?",
    "context": "CREATE TABLE table_name_51 (october VARCHAR, february VARCHAR)"
  },
  {
    "answer": "SELECT january FROM table_name_15 WHERE september = \"nikki schieler\"",
    "question_en": "Who is the January playmate with a September playmate Nikki Schieler?",
    "question_th": "ใครคือเพื่อนเล่นในเดือนมกราคมกับเพื่อนร่วมเล่นในเดือนกันยายน นิกกี้ ไชเลอร์?",
    "context": "CREATE TABLE table_name_15 (january VARCHAR, september VARCHAR)"
  },
  {
    "answer": "SELECT june FROM table_name_3 WHERE november = \"lorraine olivia\"",
    "question_en": "Who is the June playmate with the November playmate Lorraine Olivia?",
    "question_th": "ใครคือเพื่อนเล่นในเดือนมิถุนายนกับเพื่อนร่วมเล่นในเดือนพฤศจิกายน ลอร์เรน โอลิเวีย?",
    "context": "CREATE TABLE table_name_3 (june VARCHAR, november VARCHAR)"
  },
  {
    "answer": "SELECT january FROM table_name_59 WHERE march = \"alexandria karlsen\"",
    "question_en": "Who is the January playmate with a March playmate Alexandria Karlsen?",
    "question_th": "ใครคือเพื่อนเล่นเดือนมกราคมกับอเล็กซานเดรีย คาร์ลเซ่น เพื่อนร่วมเล่นเดือนมีนาคม?",
    "context": "CREATE TABLE table_name_59 (january VARCHAR, march VARCHAR)"
  },
  {
    "answer": "SELECT july FROM table_name_58 WHERE december = \"morgan fox\"",
    "question_en": "Who is the July playmate with a December playmate Morgan Fox?",
    "question_th": "ใครคือเพื่อนเล่นเดือนกรกฎาคมกับเพื่อนร่วมเล่นเดือนธันวาคมอย่าง Morgan Fox?",
    "context": "CREATE TABLE table_name_58 (july VARCHAR, december VARCHAR)"
  },
  {
    "answer": "SELECT march FROM table_name_3 WHERE november = \"cara wakelin\"",
    "question_en": "Who is the March playmate with a November playmate Cara Wakelin?",
    "question_th": "ใครคือเพื่อนเล่นในเดือนมีนาคมกับ Cara Wakelin เพื่อนร่วมเล่นในเดือนพฤศจิกายน?",
    "context": "CREATE TABLE table_name_3 (march VARCHAR, november VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_name_31 WHERE result = \"11th\"",
    "question_en": "In which year did he finish 11th?",
    "question_th": "เขาจบอันดับที่ 11 ในปีไหน?",
    "context": "CREATE TABLE table_name_31 (year VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_3 WHERE result = \"8th\"",
    "question_en": "In which year did he finish 8th?",
    "question_th": "เขาจบอันดับที่ 8 ในปีไหน?",
    "context": "CREATE TABLE table_name_3 (year VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT MAX(game) FROM table_name_95 WHERE time = \"2:38\"",
    "question_en": "What is the number of the game that was played in the time of 2:38?",
    "question_th": "เกมที่เล่นในช่วงเวลา 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_en": "What is the number of the game that was played on October 4?",
    "question_th": "เกมที่เล่นเมื่อวันที่ 4 ตุลาคม มีจำนวนเท่าไร?",
    "context": "CREATE TABLE table_name_61 (game INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_72 WHERE date = \"august 16\"",
    "question_en": "August 16 had what record?",
    "question_th": "16 สิงหาคม มีบันทึกอะไร?",
    "context": "CREATE TABLE table_name_72 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_55 WHERE date = \"august 18\"",
    "question_en": "Tell me the record for the date of August 18.",
    "question_th": "แจ้งบันทึกประจำวันที่ 18 สิงหาคม ครับ",
    "context": "CREATE TABLE table_name_55 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_60 WHERE record = \"52-60\"",
    "question_en": "For the record of 52-60 what's the date?",
    "question_th": "สำหรับสถิติปี 52-60 คือวันที่เท่าไหร่ครับ?",
    "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_en": "What is the average attendance for the date of 7 November 2007 with an H/A of H?",
    "question_th": "การเข้าร่วมงานโดยเฉลี่ยสำหรับวันที่ 7 พฤศจิกายน พ.ศ. 2550 โดยมี H/A อยู่ที่ 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_en": "What is the Group position for the date of 7 November 2007?",
    "question_th": "ตำแหน่งของกลุ่ม ณ วันที่ 7 พฤศจิกายน พ.ศ. 2550 เป็นอย่างไร?",
    "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_en": "What year had a 1st round playoff in the NASL indoor league?",
    "question_th": "ปีใดที่มีรอบเพลย์ออฟรอบแรกในลีกในร่ม NASL?",
    "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_en": "What is the normal temperature of Abbotsford, British Columbia?",
    "question_th": "อุณหภูมิปกติของ แอบบอตส์ฟอร์ด, รัฐบริติชโคลัมเบีย คืออะไร?",
    "context": "CREATE TABLE table_name_8 (normal_temperature VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_75 WHERE date = \"may 18\"",
    "question_en": "What is the score on May 18?",
    "question_th": "คะแนนวันที่ 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_en": "What is the home team of the game on May 22 with the Edmonton Oilers as the visiting team?",
    "question_th": "เจ้าบ้านเกมวันที่ 22 พ.ค. คู่ไหนมี เอดมันตัน ออยเลอร์ส เป็นทีมเยือน?",
    "context": "CREATE TABLE table_name_29 (home VARCHAR, visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_50 WHERE visitor = \"edmonton oilers\"",
    "question_en": "What is the record of the game where the visitor team is the Edmonton Oilers?",
    "question_th": "สถิติเกมที่ทีมเยือนคือ เอดมันตัน ออยเลอร์ส เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_50 (record VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_65 WHERE lane < 5 AND name = \"ágnes kovács\"",
    "question_en": "When is the lane less than 5 and is named ágnes kovács?",
    "question_th": "เมื่อใดที่เลนน้อยกว่า 5 และชื่อ ágnes kovács",
    "context": "CREATE TABLE table_name_65 (time VARCHAR, lane VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT AVG(lane) FROM table_name_52 WHERE nationality = \"china\"",
    "question_en": "What is the average lane for china?",
    "question_th": "เลนเฉลี่ยสำหรับประเทศจีนคือเท่าไร?",
    "context": "CREATE TABLE table_name_52 (lane INTEGER, nationality VARCHAR)"
  },
  {
    "answer": "SELECT AVG(lane) FROM table_name_88 WHERE name = \"rebecca brown\"",
    "question_en": "What is the average lane that is called rebecca brown?",
    "question_th": "เลนเฉลี่ยที่เรียกว่ารีเบคก้าบราวน์คืออะไร?",
    "context": "CREATE TABLE table_name_88 (lane INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT AVG(total) FROM table_name_99 WHERE championship > 13",
    "question_en": "Which Championship total is over 13?",
    "question_th": "แชมป์เปี้ยนชิพรวมกันเกิน 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_en": "When Kerry is at 36.7%, what is the total number of others?",
    "question_th": "เมื่อ Kerry อยู่ที่ 36.7% แล้วคนอื่นๆ รวมเป็นเท่าไหร่?",
    "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_en": "When Bush has 52.9%, what is the Bush#?",
    "question_th": "เมื่อ Bush มี 52.9% Bush# คืออะไร?",
    "context": "CREATE TABLE table_name_10 (bush_number VARCHAR, bush_percentage VARCHAR)"
  },
  {
    "answer": "SELECT iata FROM table_name_4 WHERE city = \"guam\"",
    "question_en": "What is the IATA of Guam?",
    "question_th": "IATA ของกวมคืออะไร?",
    "context": "CREATE TABLE table_name_4 (iata VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT airport FROM table_name_80 WHERE iata = \"vie\"",
    "question_en": "VIE is the IATA for which city?",
    "question_th": "VIE เป็น IATA ของเมืองใด",
    "context": "CREATE TABLE table_name_80 (airport VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_92 WHERE icao = \"wadd\"",
    "question_en": "Which city's ICAO is WADD?",
    "question_th": "ICAO ของเมืองใดคือ WDD",
    "context": "CREATE TABLE table_name_92 (city VARCHAR, icao VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_84 WHERE iata = \"per\"",
    "question_en": "PER is the IATA for which city?",
    "question_th": "PER คือ IATA ของเมืองใด",
    "context": "CREATE TABLE table_name_84 (city VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_50 WHERE iata = \"kul\"",
    "question_en": "Which city's IATA is KUL?",
    "question_th": "IATA ของเมืองใดคือ KUL",
    "context": "CREATE TABLE table_name_50 (city VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_85 WHERE airport = \"brisbane airport\"",
    "question_en": "The Brisbane airport is located in which country?",
    "question_th": "สนามบินบริสเบนตั้งอยู่ในประเทศใด",
    "context": "CREATE TABLE table_name_85 (country VARCHAR, airport VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_99 WHERE date = \"august 26\"",
    "question_en": "Name the opponent for august 26",
    "question_th": "ทายชื่อคู่ต่อสู้วันที่ 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_en": "What is the lowest win number of the competitor who had 90 points before 1994?",
    "question_th": "จำนวนชัยชนะต่ำสุดของผู้แข่งขันที่มี 90 แต้มก่อนปี 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_en": "What is the sum of wins after 1999?",
    "question_th": "ผลรวมของชัยชนะหลังปี 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_ = \"रविवार ravivār\" AND tuesday_mangala__mars_ = \"मंगळवार mangaḷavār\"",
    "question_en": "What is the result on Saturday when it's रविवार ravivār on Sunday and मंगळवार mangaḷavār on Tuesday?",
    "question_th": "วันเสาร์เป็น रविवार ravivār ในวันอาทิตย์ และ मंगळवार mangaḷavār ในวันอังคารจะเป็นอย่างไร?",
    "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_ = \"রবিবার robibar\"",
    "question_en": "What is the result on Saturday that's রবিবার robibar on Sunday",
    "question_th": "ผลวันเสาร์คืออะไร রবিবต้าর โรบิบาร์ในวันอาทิตย์",
    "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_ = \"တ္ၚဲ အၚါ [ŋoa əŋɛ̀a] from sans. aṅgāra\"",
    "question_en": "What is the result of Friday that's တ္ၚဲ အၚါ [ŋoa əŋɛ̀a] from sans. aṅgāra on Tuesday?",
    "question_th": "ผลลัพธ์ของวันศุกร์คืออะไร တ္ၚဲ အၚါ [ŋoa əŋɛ̄] จากคำว่า sans อังการาในวันอังคาร?",
    "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_ = \"ថ្ងៃអាទិត្យ [tŋaj ʔaatɨt ]\"",
    "question_en": "What is the result of Saturday that's ថ្ងៃអាទិត្យ [tŋaj ʔaatɨt ] on Sunday?",
    "question_th": "วันเสาร์ที่ ថអទិតយ [tŋaj ʔaatɨt ] วันอาทิตย์มีผลอย่างไร?",
    "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_ = \"सोमवार somavār\" AND tuesday_mangala__mars_ = \"मंगलवार mangalavār\"",
    "question_en": "What is the result on Sunday that's सोमवार somavār on Monday and मंगलवार mangalavār on Tuesday?",
    "question_th": "ผลวันอาทิตย์คือโซมาวาร โสมาวารในวันจันทร์ และมังกาลวาร มังคะลาวารในวันอังคารคืออะไร?",
    "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_en": "What year has american music awards?",
    "question_th": "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_en": "What was album of the year after 2009?",
    "question_th": "อัลบั้มแห่งปีหลังจากปี 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_en": "How many years had ozone awards?",
    "question_th": "กี่ปีที่ได้รับรางวัลโอโซน?",
    "context": "CREATE TABLE table_name_43 (year INTEGER, award VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_82 WHERE opponent = \"masato shiozawa\"",
    "question_en": "What event did he fight masato shiozawa?",
    "question_th": "เขาสู้กับมาซาโตะ ชิโอซาวะด้วยเหตุการณ์อะไร?",
    "context": "CREATE TABLE table_name_82 (event VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT partnering FROM table_name_25 WHERE score = \"4–6, 7–5, [10–8]\"",
    "question_en": "What is the partner with a score of 4–6, 7–5, [10–8]?",
    "question_th": "คู่ที่มีคะแนน 4–6, 7–5, [10–8] คืออะไร?",
    "context": "CREATE TABLE table_name_25 (partnering VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_68 WHERE opponent = \"marquette\"",
    "question_en": "What was the score for the game against Marquette?",
    "question_th": "ในเกมกับมาร์แค็ตได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_68 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_34 WHERE city = \"milwaukee\"",
    "question_en": "What was the result of the game in Milwaukee?",
    "question_th": "ผลการแข่งขันที่มิลวอกีเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_34 (result VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_7 WHERE score = \"25-0\"",
    "question_en": "What team was the opponent when the score was 25-0?",
    "question_th": "คู่ต่อสู้คือทีมใดเมื่อสกอร์เป็น 25-0?",
    "context": "CREATE TABLE table_name_7 (opponent VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_21 WHERE city = \"minneapolis\"",
    "question_en": "What date was the game in Minneapolis?",
    "question_th": "เกมที่มินนีแอโพลิสจัดขึ้นวันที่เท่าไหร่?",
    "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_en": "Which Record has a Result of loss, and a Time of 3:54?",
    "question_th": "บันทึกใดมีผลแพ้ และเวลา 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_en": "Which Record has a Method of submission (heel hook), a Round larger than 1, and a Time of 2:28?",
    "question_th": "บันทึกใดมีวิธีการส่ง (ตะขอเกี่ยวส้นเท้า) รอบที่ใหญ่กว่า 1 และเวลา 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_en": "What is the smallest round resulting in a draw with an Opponent of mari kaneko?",
    "question_th": "รอบที่เล็กที่สุดส่งผลให้เสมอกับฝ่ายตรงข้ามของมาริ คาเนโกะคือเท่าไร?",
    "context": "CREATE TABLE table_name_88 (round INTEGER, res VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT ship_type FROM table_name_86 WHERE nat = \"se\"",
    "question_en": "What ship type was from SE?",
    "question_th": "เรือประเภทใดที่มาจาก 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_en": "Who were the victims of the US ship that sank in the Mississippi River near Memphis?",
    "question_th": "ใครคือเหยื่อของเรือสหรัฐฯ ที่จมในแม่น้ำมิสซิสซิปปี้ใกล้เมืองเมมฟิส",
    "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_en": "What was the estimated number of victims for the April 27, 1865 sinking?",
    "question_th": "จำนวนผู้ที่ตกเป็นเหยื่อเหตุการณ์จมเมื่อวันที่ 27 เมษายน พ.ศ. 2408 โดยประมาณคือเท่าใด",
    "context": "CREATE TABLE table_name_78 (estimate VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT nat FROM table_name_26 WHERE estimate = \"372\"",
    "question_en": "Which nation was the ship from that had 372 victims?",
    "question_th": "เรือลำนั้นมาจากประเทศใดที่มีเหยื่อ 372 ราย?",
    "context": "CREATE TABLE table_name_26 (nat VARCHAR, estimate VARCHAR)"
  },
  {
    "answer": "SELECT ship_type FROM table_name_66 WHERE name = \"hmsst george\"",
    "question_en": "What type of ship was the HMSST George?",
    "question_th": "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_en": "Which region had the CD maxi format?",
    "question_th": "ภูมิภาคใดมีรูปแบบ CD Maxi",
    "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_en": "What was the format in September 1990 for Catalog 887 847-1?",
    "question_th": "แคตตาล็อก 887 847-1 เป็นรูปแบบใดในเดือนกันยายน 1990",
    "context": "CREATE TABLE table_name_84 (format VARCHAR, catalog VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_14 WHERE region = \"japan\"",
    "question_en": "What was the label in Japan?",
    "question_th": "ฉลากในญี่ปุ่นคืออะไร?",
    "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_en": "In which Tournament was Mansour Bahrami Eric Winogradsky",
    "question_th": "ซึ่งการแข่งขันคือ 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_en": "What position was less than 421 overall played by Matt Clark?",
    "question_th": "ตำแหน่งใดที่แมตต์คลาร์กเล่นโดยรวมน้อยกว่า 421?",
    "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_en": "What was the lowest overall for Louis Coleman?",
    "question_th": "อะไรคือคะแนนรวมที่ต่ำที่สุดสำหรับหลุยส์ โคลแมน?",
    "context": "CREATE TABLE table_name_91 (overall INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_94 WHERE player = \"matt clark\"",
    "question_en": "What round did Matt Clark play?",
    "question_th": "Matt Clark เล่นรอบไหน?",
    "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_en": "Which position was more than 421 overall for the St. Louis Cardinals?",
    "question_th": "ตำแหน่งใดที่มากกว่า 421 โดยรวมสำหรับเซนต์หลุยส์คาร์ดินัลส์?",
    "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_en": "What round was less than 545 overall for San Francisco Giants?",
    "question_th": "รอบใดที่น้อยกว่า 545 โดยรวมสำหรับ 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_en": "What Gender has the area of swannanoa?",
    "question_th": "สวอนนาโนอาอยู่ในเพศใด?",
    "context": "CREATE TABLE table_name_53 (gender VARCHAR, area VARCHAR)"
  },
  {
    "answer": "SELECT years FROM table_name_13 WHERE decile < 8 AND area = \"southbrook\"",
    "question_en": "What years had the decile smaller than 8 in the area of southbrook?",
    "question_th": "ปีใดที่มีเดไซล์น้อยกว่า 8 ในพื้นที่เซาท์บรูค?",
    "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_en": "For a Lost of 10 and a Try Bonus of 4, what are the points against them?",
    "question_th": "สำหรับการแพ้ 10 ครั้งและโบนัสการลองเล่น 4 ครั้ง มีคะแนนอะไรบ้าง",
    "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_en": "Having 429 points against, what is the Tries Against?",
    "question_th": "มี 429 แต้มต่อ 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_en": "With a Try Bonus of 8, what is the Tries Against?",
    "question_th": "ด้วย Try Bonus ที่ 8 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_en": "What club has a Try Bonus of 8?",
    "question_th": "สโมสรใดมีโบนัสลองเล่นที่ 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_en": "For Pontyberem RFC that has a Try Bonus of 2, what is the played?",
    "question_th": "สำหรับ Pontyberem RFC ที่มี Try Bonus อยู่ที่ 2 จะต้องเล่นอะไร?",
    "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_en": "With a club that has 400 Points against, what are the points?",
    "question_th": "ไม้กอล์ฟที่มีแต้มต่อ 400 แต้มจะได้แต้มอะไร?",
    "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_en": "When goals against is greater than 60 and losses less than 29, what is the highest played?",
    "question_th": "เมื่อประตูต่อมากกว่า 60 และแพ้น้อยกว่า 29 ประตูที่เล่นสูงสุดคืออะไร?",
    "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_en": "What club has less than 60 goals against, a goal difference smaller than 1, and a position of 8?",
    "question_th": "สโมสรใดยิงได้น้อยกว่า 60 ประตู ผลต่างประตูน้อยกว่า 1 ประตู และอันดับ 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_en": "Where did they play in week 14?",
    "question_th": "พวกเขาเล่นที่ไหนในสัปดาห์ที่ 14?",
    "context": "CREATE TABLE table_name_57 (game_site VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_49 WHERE attendance = \"48,121\"",
    "question_en": "Who was the opponent when 48,121 people attended?",
    "question_th": "คู่ต่อสู้คือใครเมื่อมีผู้เข้าร่วม 48,121 คน?",
    "context": "CREATE TABLE table_name_49 (opponent VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_54 WHERE attendance = \"50,514\"",
    "question_en": "What was the score when 50,514 people were in attendance?",
    "question_th": "คะแนนเมื่อมีผู้เข้าร่วม 50,514 คน?",
    "context": "CREATE TABLE table_name_54 (result VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT game_site FROM table_name_59 WHERE week = \"divisional playoffs\"",
    "question_en": "Where did they have the divisional playoffs?",
    "question_th": "พวกเขามีรอบตัดเชือกแบ่งกลุ่มที่ไหน?",
    "context": "CREATE TABLE table_name_59 (game_site VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_21 WHERE attendance = \"54,418\"",
    "question_en": "What is the result when there was an attendance of 54,418?",
    "question_th": "มีจำนวนผู้เข้าร่วม 54,418 คน ผลเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_21 (result VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT year_active FROM table_name_83 WHERE role = \"rachel\"",
    "question_en": "What year was the role of Rachel active in TV?",
    "question_th": "บทบาทของราเชลมีบทบาทในทีวีในปีใด",
    "context": "CREATE TABLE table_name_83 (year_active VARCHAR, role VARCHAR)"
  },
  {
    "answer": "SELECT SUM(population_112008) FROM table_name_62 WHERE urban_area = \"tønsberg\" AND population_112006 > 45.447",
    "question_en": "Name the sum of population 1.1.2008 for tønsberg and population 1.1.2006 more than 45.447",
    "question_th": "ตั้งชื่อผลรวมของประชากร 1.1.2008 สำหรับ tonsberg และประชากร 1.1.2006 มากกว่า 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_en": "Name the least population 1.1.2008 with population per square km of 1.957 and population 1.1.2006 less than 12.67",
    "question_th": "ตั้งชื่อประชากรน้อยที่สุด 1.1.2008 โดยมีประชากรต่อตารางกิโลเมตร 1.957 และประชากร 1.1.2006 น้อยกว่า 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_en": "Name the total number of population per square km with population 1.12006 of 12.757",
    "question_th": "ตั้งชื่อจำนวนประชากรทั้งหมดต่อตารางกิโลเมตร โดยมีประชากร 1.12006 จาก 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_en": "What is the average Points when the engine was a climax straight-4 earlier than 1958?",
    "question_th": "คะแนนเฉลี่ยเมื่อเครื่องยนต์ถึงจุดไคลแม็กซ์ 4 ตรงก่อนปี 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_en": "What is the number of points for the maserati straight-4 engine, later than 1959?",
    "question_th": "เครื่องยนต์มาเซราติ สเตรท-4 หลังปี 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_en": "What engine had a JBW chassis in 1960?",
    "question_th": "เครื่องยนต์ใดมีแชสซี JBW ในปี 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_en": "What is the highest points for the JBW chassis with a climax straight-4 engine, later than 1961?",
    "question_th": "จุดสูงสุดของแชสซี JBW ที่มีเครื่องยนต์ 4 จังหวะไคลแม็กซ์ หลังปี 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_en": "What is the name of the engine in 1961?",
    "question_th": "เครื่องยนต์ปี 61 ชื่ออะไรครับ?",
    "context": "CREATE TABLE table_name_83 (engine VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_5 WHERE record = \"54-55\"",
    "question_en": "On which date were the 2003 Toronto Blue Jays 54-55?",
    "question_th": "Toronto Blue Jays ปี 2003 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_en": "What is the average attendance of the Mariners' attendance when their record was 62-64?",
    "question_th": "การเข้าร่วมโดยเฉลี่ยของการเข้าร่วมกะลาสีเรือเมื่อบันทึกของพวกเขาคือ 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_en": "What was the score when the Blue Jays had an attendance larger than 9,430?",
    "question_th": "คะแนนเมื่อทีม Blue Jays มีผู้เข้าร่วมมากกว่า 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_en": "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 ?",
    "question_th": "เขื่อนป้อมเพ็กซึ่งสร้างขึ้นก่อนปี พ.ศ. 2511 ตั้งอยู่ในสหรัฐอเมริกาและมีเขื่อนประเภท 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_en": "Who was the runner up before 2007?",
    "question_th": "ใครคือรองชนะเลิศก่อนปี 2550?",
    "context": "CREATE TABLE table_name_93 (runner_up VARCHAR, season INTEGER)"
  },
  {
    "answer": "SELECT season FROM table_name_46 WHERE champion = \"manresa\"",
    "question_en": "Which season was Manresa the champion?",
    "question_th": "Manresa เป็นแชมป์ในฤดูกาลใด",
    "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_en": "What year was the cosworth ca2006 2.4 v8 4 series used?",
    "question_th": "cosworth ca2006 2.4 v8 4 series ใช้ปีไหนครับ?",
    "context": "CREATE TABLE table_name_74 (year INTEGER, engine VARCHAR)"
  },
  {
    "answer": "SELECT engine FROM table_name_40 WHERE chassis = \"mclaren mp4-20\"",
    "question_en": "What engine did the mclaren mp4-20 use?",
    "question_th": "mclaren mp4-20 ใช้เครื่องยนต์อะไร?",
    "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_en": "What team used the toyota rvx-07 2.4 v8 engine",
    "question_th": "ทีมไหนใช้เครื่องยนต์ toyota rvx-07 2.4 v8",
    "context": "CREATE TABLE table_name_79 (entrant VARCHAR, engine VARCHAR)"
  },
  {
    "answer": "SELECT MAX(year) FROM table_name_19 WHERE points = \"2\"",
    "question_en": "in what year were 2 points scored?",
    "question_th": "2 คะแนนในปีใด?",
    "context": "CREATE TABLE table_name_19 (year INTEGER, points VARCHAR)"
  },
  {
    "answer": "SELECT engine FROM table_name_86 WHERE points = \"17\"",
    "question_en": "What engine scored 17 points?",
    "question_th": "เครื่องยนต์อะไรได้ 17 คะแนน?",
    "context": "CREATE TABLE table_name_86 (engine VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT year_s__won FROM table_name_65 WHERE to_par > 13",
    "question_en": "What years won when the To par is more than 13?",
    "question_th": "กี่ปีชนะเมื่อพาร์ถึงมากกว่า 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_en": "What is the highest Total for Australia?",
    "question_th": "ผลรวมสูงสุดสำหรับออสเตรเลียคือเท่าใด",
    "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_en": "What is the average Total for the United States with a To par more than 6 and 1996 was won?",
    "question_th": "ผลรวมเฉลี่ยของสหรัฐอเมริกาที่ชนะพาร์มากกว่า 6 และ 1996 เป็นเท่าใด?",
    "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_en": "Raiders of the Lost Ark had pieces of 277 for what lowest number?",
    "question_th": "Raiders of the Lost Ark มีชิ้นส่วน 277 ชิ้นสำหรับจำนวนต่ำสุดข้อใด",
    "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_en": "What is the number for Chauchilla Cemetery Battle with less than 511 pieces?",
    "question_th": "ศึกสุสาน Chauchilla ที่มีน้อยกว่า 511 ชิ้นคือหมายเลขอะไร",
    "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_en": "What was the earliest year with 339 pieces and a number smaller than 7198?",
    "question_th": "ปีแรกสุดที่มี 339 ชิ้นและจำนวนน้อยกว่า 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_en": "What is the name of the competition that was held on August 20, 2004?",
    "question_th": "การแข่งขันที่จัดขึ้นเมื่อวันที่ 20 สิงหาคม พ.ศ. 2547 มีชื่อว่าอะไร?",
    "context": "CREATE TABLE table_name_4 (competition VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_64 WHERE result = \"draw\"",
    "question_en": "Where was the game held that resulted in a draw?",
    "question_th": "เกมนี้จัดขึ้นที่ไหนและมีผลเสมอกัน?",
    "context": "CREATE TABLE table_name_64 (venue VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_78 WHERE date = \"august 20, 2004\"",
    "question_en": "Where was the game held on August 20, 2004?",
    "question_th": "เกมดังกล่าวจัดขึ้นที่ไหนเมื่อวันที่ 20 สิงหาคม พ.ศ. 2547?",
    "context": "CREATE TABLE table_name_78 (venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_15 WHERE score = \"9-2\"",
    "question_en": "Where was the game held that resulted in a score of 9-2?",
    "question_th": "แข่งที่ไหนมีสกอร์ 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_en": "What is the sum of total with a Rank larger than 12, and a Gold larger than 4?",
    "question_th": "ผลรวมที่มีอันดับมากกว่า 12 และทองที่มากกว่า 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_en": "What is the smallest bronze with a Rank of 12, and a Silver smaller than 2?",
    "question_th": "เหรียญทองแดงที่เล็กที่สุดที่มีอันดับ 12 และเหรียญเงินที่เล็กกว่า 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_en": "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?",
    "question_th": "อะไรคือทองสัมฤทธิ์ที่เล็กที่สุดโดยมีเงินน้อยกว่า 2 และทองคำ 1 และประเทศในหมู่เกาะตะวันตกและผลรวมมากกว่า 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_en": "What is the average bronze with a total of 15 and less than 2 gold?",
    "question_th": "บรอนซ์เฉลี่ยที่มีทั้งหมด 15 เหรียญทอง แต่น้อยกว่า 2 เหรียญทองคือเท่าไร?",
    "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_en": "What is the total rank with a Nation of gotland, and a Gold larger than 23?",
    "question_th": "อันดับรวมของ Nation of gotland และ Gold ที่มากกว่า 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_en": "for a Goals Against greater than 42 what is the number of losses?",
    "question_th": "สำหรับเป้าหมายที่มากกว่า 42 จำนวนการสูญเสียคือเท่าใด?",
    "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_en": "for goals less than 48 and 8 games played what is the count of losses?",
    "question_th": "สำหรับประตูที่น้อยกว่า 48 และ 8 เกมที่เล่นจะนับจำนวนการแพ้หรือไม่?",
    "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_en": "what is the number of losses with wins less than 4 and goals against more than 39?",
    "question_th": "จำนวนการแพ้ที่ชนะน้อยกว่า 4 และประตูต่อมากกว่า 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_en": "What years does the school have that's in Makikihi?",
    "question_th": "โรงเรียนที่มาคิคิฮิมีปีไหน?",
    "context": "CREATE TABLE table_name_23 (years VARCHAR, area VARCHAR)"
  },
  {
    "answer": "SELECT area FROM table_name_75 WHERE name = \"morven school\"",
    "question_en": "In what area is Morven School?",
    "question_th": "โรงเรียน Morven อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_75 (area VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT years FROM table_name_85 WHERE roll = 33",
    "question_en": "What years does the school have with a roll of 33?",
    "question_th": "โรงเรียนมีครบ 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_en": "What is the name of the actor who played Billy Elliot in the Final Cast with a Last Performance of 13 June 2009?",
    "question_th": "นักแสดงที่รับบทเป็นบิลลี่ เอลเลียตใน Final Cast ที่มีการแสดงครั้งสุดท้ายเมื่อวันที่ 13 มิถุนายน พ.ศ. 2552 ชื่ออะไร",
    "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_en": "What is the date of the First Performance of Rhys Kosakowski as Billy Elliot in the Original Cast?",
    "question_th": "การแสดงครั้งแรกของ Rhys Kosakowski ในบท Billy Elliot ในนักแสดงต้นฉบับคือวันที่เท่าไหร่?",
    "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_en": "What is the Style of the First Performance of Billy Elliot on 15 November 2007?",
    "question_th": "การแสดงครั้งแรกของ Billy Elliot เมื่อวันที่ 15 พฤศจิกายน พ.ศ. 2550 มีลักษณะอย่างไร?",
    "context": "CREATE TABLE table_name_50 (style VARCHAR, first_performance VARCHAR)"
  },
  {
    "answer": "SELECT last_performance FROM table_name_3 WHERE name = \"rarmian newton\"",
    "question_en": "What is the date of the Last Performance of Rarmian Newton as Billy Elliot?",
    "question_th": "การแสดงครั้งสุดท้ายของ Rarmian Newton ในบท 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_en": "What is the date of the Last Ballet Style Performance of Rhys kosakowski as Billy Elliot?",
    "question_th": "การแสดง Last Ballet Style ของ Rhys kosakowski ในบท 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_en": "What is the date of the Last Performance of Billy Elliot with a Cast Status of past replacement?",
    "question_th": "การแสดงครั้งสุดท้ายของ Billy Elliot ที่มีสถานะนักแสดงทดแทนในอดีตคือวันที่เท่าไหร่?",
    "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_en": "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?",
    "question_th": "ทองคำเป็น 0 และเงินที่น้อยกว่า 3 และอันดับมากกว่า 9 และผลรวม 1 มีเหรียญทองแดงจำนวนเท่าใด",
    "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_en": "Bronze larger than 2, and a Rank of 4, and a Total larger than 7 has how many numbers of gold?",
    "question_th": "เหรียญทองแดงที่มากกว่า 2 และอันดับ 4 และผลรวมที่มากกว่า 7 จะมีทองคำจำนวนเท่าใด",
    "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_en": "Bronze smaller than 3, and a Total smaller than 2, and a Gold larger than 1 has how many average silvers?",
    "question_th": "ทองสัมฤทธิ์น้อยกว่า 3 และผลรวมน้อยกว่า 2 และทองที่มากกว่า 1 จะมีเงินเฉลี่ยจำนวนเท่าใด",
    "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_en": "Gold of 1, and a Total smaller than 4, and a Bronze smaller than 0 has the lowest silver?",
    "question_th": "ทองคำ 1 และผลรวมน้อยกว่า 4 และทองแดงที่น้อยกว่า 0 มีเงินต่ำที่สุด?",
    "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_en": "Name the date for record 3-3",
    "question_th": "ตั้งชื่อวันที่สำหรับบันทึก 3-3",
    "context": "CREATE TABLE table_name_64 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_60 WHERE date = \"april 27\"",
    "question_en": "Name the opponent on april 27",
    "question_th": "ทายชื่อคู่ต่อสู้วันที่ 27 เมษายน",
    "context": "CREATE TABLE table_name_60 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_52 WHERE date = \"april 22\"",
    "question_en": "Name the record for april 22",
    "question_th": "ตั้งชื่อบันทึกสำหรับวันที่ 22 เมษายน",
    "context": "CREATE TABLE table_name_52 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_15 WHERE date = \"april 17\"",
    "question_en": "Name the attendance on april 17",
    "question_th": "ตั้งชื่อการเข้าร่วมในวันที่ 17 เมษายน",
    "context": "CREATE TABLE table_name_15 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_7 WHERE attendance = \"postponed\"",
    "question_en": "Name the date for postponed attendance",
    "question_th": "ตั้งชื่อวันที่เลื่อนการเข้าร่วม",
    "context": "CREATE TABLE table_name_7 (date VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_20 WHERE date = \"april 6\"",
    "question_en": "Name the record for april 6",
    "question_th": "ตั้งชื่อบันทึกสำหรับวันที่ 6 เมษายน",
    "context": "CREATE TABLE table_name_20 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT engine FROM table_name_50 WHERE entrant = \"garvey team lotus\"",
    "question_en": "What engine does Garvey Team Lotus use?",
    "question_th": "Garvey Team Lotus ใช้เครื่องมืออะไร",
    "context": "CREATE TABLE table_name_50 (engine VARCHAR, entrant VARCHAR)"
  },
  {
    "answer": "SELECT population_est__2012_ FROM table_name_61 WHERE capital = \"santa fe\"",
    "question_en": "What is the 2012 population for the state whose capital is Santa Fe?",
    "question_th": "ประชากรในปี 2012 ของรัฐที่มีเมืองหลวงคือซานตาเฟคือจำนวนเท่าใด",
    "context": "CREATE TABLE table_name_61 (population_est__2012_ VARCHAR, capital VARCHAR)"
  },
  {
    "answer": "SELECT capital FROM table_name_27 WHERE largest_city = \"burlington\"",
    "question_en": "What is the capital for the state that has the largest city of Burlington?",
    "question_th": "เมืองหลวงของรัฐที่มีเมืองเบอร์ลิงตันที่ใหญ่ที่สุดคือเมืองใด",
    "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_en": "How many populations have a capital of Montpelier and more than 1 House seat?",
    "question_th": "มีประชากรกี่คนที่มีเมืองหลวงของมงต์เปลิเยร์และมีที่นั่งในสภามากกว่า 1 ที่นั่ง",
    "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_en": "On games against the Devil Rays and a score of 2 - 1 (10), what was the attendance?",
    "question_th": "ในเกมที่เจอกับ เดวิล เรย์ส ด้วยสกอร์ 2 - 1 (10) มีผู้ชมเป็นอย่างไรบ้าง?",
    "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_en": "On the game that put the team at 34-44, what was the attendance?",
    "question_th": "ในเกมที่พาทีมสกอร์ 34-44 ผู้เข้าชมเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_95 (attendance INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_51 WHERE record = \"27-32\"",
    "question_en": "What was the score of the game that put the team at 27-32?",
    "question_th": "เกมนี้ทำให้ทีมสกอร์ 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_en": "In which venue did the competition on 11 October 2008 take place?",
    "question_th": "การแข่งขันในวันที่ 11 ตุลาคม พ.ศ. 2551 จัดขึ้นที่สถานที่ใด",
    "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_en": "What was the average number of silver medals won by France when they are ranked higher than 8?",
    "question_th": "จำนวนเหรียญเงินโดยเฉลี่ยที่ฝรั่งเศสได้รับเมื่ออยู่ในอันดับที่สูงกว่า 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_en": "Who was their Opponent on April 26?",
    "question_th": "ใครคือคู่ต่อสู้ของพวกเขาในวันที่ 26 เมษายน?",
    "context": "CREATE TABLE table_name_62 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_47 WHERE venue = \"berlin, germany\"",
    "question_en": "What competition took place in Berlin, Germany?",
    "question_th": "การแข่งขันใดจัดขึ้นที่กรุงเบอร์ลิน ประเทศเยอรมนี",
    "context": "CREATE TABLE table_name_47 (competition VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_80 WHERE competition = \"pan american games\"",
    "question_en": "Where were the Pan American Games held?",
    "question_th": "Pan American Games จัดขึ้นที่ไหน?",
    "context": "CREATE TABLE table_name_80 (venue VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_91 WHERE year = 2003",
    "question_en": "What venue hosted the 2003 event?",
    "question_th": "สถานที่ใดเป็นเจ้าภาพจัดงานปี 2546?",
    "context": "CREATE TABLE table_name_91 (venue VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT MAX(game) FROM table_name_34 WHERE time = \"2:35\"",
    "question_en": "What game had the highest score and a time of 2:35?",
    "question_th": "เกมใดมีคะแนนสูงสุดและเวลา 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_en": "What game, played on October 17 in front of 49,347 fans, had the lowest score?",
    "question_th": "เกมใดที่เล่นในวันที่ 17 ตุลาคม ต่อหน้าแฟนบอล 49,347 คน มีคะแนนต่ำสุด?",
    "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_en": "What is the highest Total Foreign-born (1000) from a non EU state (1000) of 685 and a population (1000) smaller than 10,666?",
    "question_th": "อะไรคือจำนวนที่เกิดในต่างประเทศสูงสุด (1,000) จากรัฐนอกสหภาพยุโรป (1,000) ที่ 685 คนและประชากร (1,000) น้อยกว่า 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_en": "What is the highest number born in a none EU state (1000) from Denmark with a total population (1000) less than 5,534?",
    "question_th": "จำนวนสูงสุดที่เกิดในรัฐไม่มีสหภาพยุโรป (1,000) จากประเทศเดนมาร์ก โดยมีประชากรทั้งหมด (1,000) น้อยกว่า 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_en": "How many Foreign-born (1000) are from Sweden and born in some other EU state (1000) larger than 477?",
    "question_th": "ชาวต่างชาติที่เกิด (1,000) คนมาจากสวีเดนและเกิดในรัฐอื่นในสหภาพยุโรป (1,000) ซึ่งมีจำนวนมากกว่า 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_en": "What is the greatest Total population (1000) from Sweden and born in a non EU state (1000) less than 859?",
    "question_th": "จำนวนประชากรทั้งหมดที่ใหญ่ที่สุด (1,000) จากสวีเดนและเกิดในรัฐนอกสหภาพยุโรป (1,000) น้อยกว่า 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_en": "Whice race ended with a DNF?",
    "question_th": "การแข่งขันใดจบลงด้วย 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_en": "Which race ended with a time of 01:46:59.69?",
    "question_th": "แข่งรายการไหนจบด้วยเวลา 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_en": "What was the speed of the Superbike race?",
    "question_th": "การแข่งขัน Superbike มีความเร็วเท่าไร?",
    "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_en": "What was the speed of the race that ended in 2nd place and had a time of 01:13:03.39?",
    "question_th": "จบอันดับที่ 2 ด้วยเวลา 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_en": "How many sets were played in the 2011 Tournament in which there were 3R in 2007?",
    "question_th": "มีการเล่นกี่เซ็ตในการแข่งขันปี 2554 ซึ่งมี 3R ในปี 2550",
    "context": "CREATE TABLE table_name_81 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_10 WHERE tournament = \"australian open\"",
    "question_en": "How many sets were in the 2011 Australian Open Tournament?",
    "question_th": "การแข่งขัน Australian Open Tournament ปี 2011 มีกี่เซ็ต",
    "context": "CREATE TABLE table_name_10 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2009 FROM table_name_60 WHERE 2011 = \"4r\" AND 2008 = \"2r\"",
    "question_en": "How many sets were played in the tournament that had 4R in 2011 and 2R in 2008?",
    "question_th": "มีการเล่นกี่เซ็ตในทัวร์นาเมนต์ที่มี 4R ในปี 2554 และ 2R ในปี 2551",
    "context": "CREATE TABLE table_name_60 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_4 WHERE 2008 = \"2r\"",
    "question_en": "How many sets were played in the 2011 tournament, in which 2R were played in 2008?",
    "question_th": "มีการเล่นกี่เซตในการแข่งขันปี 2554 โดยที่ 2R เล่นในปี 2551",
    "context": "CREATE TABLE table_name_4 (Id VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_8 WHERE 2013 = \"1r\"",
    "question_en": "Which tournament had 1R in 2013?",
    "question_th": "ทัวร์นาเมนต์ใดมี 1R ในปี 2013?",
    "context": "CREATE TABLE table_name_8 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2007 FROM table_name_89 WHERE 2011 = \"4r\" AND 2009 = \"2r\"",
    "question_en": "How many sets were played in 2007 at the tournament that had 4R in 2011 and 2R in 2009?",
    "question_th": "มีการเล่นกี่เซ็ตในปี 2550 ในทัวร์นาเมนต์ที่มี 4R ในปี 2554 และ 2R ในปี 2552",
    "context": "CREATE TABLE table_name_89 (Id VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_11 WHERE date = \"december 24, 2005\"",
    "question_en": "What was the record at the game held on December 24, 2005?",
    "question_th": "สถิติในเกมที่จัดขึ้นเมื่อวันที่ 24 ธันวาคม พ.ศ. 2548 คืออะไร?",
    "context": "CREATE TABLE table_name_11 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_8 WHERE game_site = \"invesco field\"",
    "question_en": "What was the date of the game held at Invesco Field?",
    "question_th": "เกมที่จัดขึ้นที่ 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_en": "What was the NFL Recap of the game held on December 24, 2005?",
    "question_th": "NFL Recap ของเกมที่จัดขึ้นเมื่อวันที่ 24 ธันวาคม พ.ศ. 2548 คืออะไร?",
    "context": "CREATE TABLE table_name_70 (nfl_recap VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_16 WHERE date = \"december 24, 2005\"",
    "question_en": "Who was the opponent at the game held on December 24, 2005?",
    "question_th": "คู่ต่อสู้ในเกมที่จัดขึ้นเมื่อวันที่ 24 ธันวาคม พ.ศ. 2548 คือใคร?",
    "context": "CREATE TABLE table_name_16 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_37 WHERE attendance = \"90,138\"",
    "question_en": "Which week's game had an attendance of 90,138?",
    "question_th": "เกมประจำสัปดาห์ใดที่มีผู้เข้าชม 90,138 คน?",
    "context": "CREATE TABLE table_name_37 (week VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT SUM(year) FROM table_name_2 WHERE points > 1",
    "question_en": "What is the total years with more than 1 points?",
    "question_th": "รวมปีที่มีมากกว่า 1 คะแนนเป็นเท่าใด",
    "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_en": "When were there less than 1 point with a cosworth v8 engine in jolly club switzerland?",
    "question_th": "เมื่อใดที่มีน้อยกว่า 1 แต้มด้วยเครื่องยนต์ cosworth v8 ใน jolly club สวิตเซอร์แลนด์?",
    "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_en": "Which home team has an Away of (2-1)?",
    "question_th": "เจ้าบ้านทีมใดมีทีมเยือน (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_en": "Which away team has a playoff record of (0-0) and played against Sioux City Bandits?",
    "question_th": "ทีมเยือนทีมไหนมีสถิติเพลย์ออฟ (0-0) และเล่นกับ ซู ซิตี้ แบนดิทส์?",
    "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_en": "Which home team has a playoff record of (0-0) and played La Crosse Spartans?",
    "question_th": "เจ้าบ้านทีมไหนมีสถิติเพลย์ออฟ (0-0) และเล่น ลาครอส สปาร์ตันส์?",
    "context": "CREATE TABLE table_name_3 (home VARCHAR, plyff VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT plyff FROM table_name_21 WHERE opponent = \"billings outlaws\"",
    "question_en": "What is the Plyff team that plays the Billings Outlaws?",
    "question_th": "ทีม Plyff ที่เล่น 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_en": "Which team has an overall playoff of (0-0), a home record of (0-1) and played the Green Bay Blizzard team?",
    "question_th": "ทีมใดมีรอบเพลย์ออฟรวม (0-0) สถิติในบ้าน (0-1) และเล่นทีมกรีนเบย์ บลิซซาร์ด?",
    "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_en": "Which Overall has a playoff record of (0-1) and an away record of (1-1)?",
    "question_th": "ซึ่งโดยรวมมีสถิติเพลย์ออฟ (0-1) และสถิติทีมเยือน (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_en": "Which opponent has a Date of april 14?",
    "question_th": "คู่ต่อสู้คนไหนมีวันที่ 14 เมษายน?",
    "context": "CREATE TABLE table_name_20 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_88 WHERE score = \"3-5\"",
    "question_en": "Which attendance has a Score of 3-5?",
    "question_th": "การเข้างานใดมีคะแนน 3-5?",
    "context": "CREATE TABLE table_name_88 (attendance VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_48 WHERE record = \"7-9\"",
    "question_en": "Which Date has a Record of 7-9?",
    "question_th": "วันที่ใดมีบันทึก 7-9?",
    "context": "CREATE TABLE table_name_48 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_63 WHERE attendance = \"30,612\"",
    "question_en": "Which Date has an Attendance of 30,612?",
    "question_th": "วันไหนมีผู้เข้าร่วม 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ández (0-1)\"",
    "question_en": "Which Date has an Opponent of @ mariners, and a Loss of hernández (0-1)?",
    "question_th": "วันที่ใดมีฝ่ายตรงข้ามของ @ กะลาสีเรือและแพ้เอร์นันเดซ (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_en": "Which Record that has a Loss of mays (0-3)?",
    "question_th": "บันทึกใดที่มีการสูญเสียเดือนพฤษภาคม (0-3)?",
    "context": "CREATE TABLE table_name_83 (record VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_99 WHERE final_score = \"6–26\"",
    "question_en": "What week was the final score 6–26?",
    "question_th": "คะแนนสุดท้าย 6–26 สัปดาห์ใด",
    "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_en": "Who was the host team when the Miami Dolphins were the visiting team?",
    "question_th": "ใครคือทีมเจ้าบ้านเมื่อ Miami Dolphins เป็นทีมเยือน?",
    "context": "CREATE TABLE table_name_33 (host_team VARCHAR, visiting_team VARCHAR)"
  },
  {
    "answer": "SELECT stadium FROM table_name_28 WHERE week > 15",
    "question_en": "What was the stadium that held that game after week 15?",
    "question_th": "สนามกีฬาที่จัดเกมนั้นหลังจากสัปดาห์ที่ 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_en": "Name the most FA cup for championship of 18 and total of 19",
    "question_th": "คว้าแชมป์เอฟเอคัพได้มากที่สุด 18 นัด และรวม 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_en": "Name the most league cups for total more than 19 and FA cups more than 6",
    "question_th": "ตั้งชื่อลีกคัพมากที่สุดรวมมากกว่า 19 รายการ และเอฟเอคัพมากกว่า 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_en": "What is the Score, when the Year is after 2007, and when the Country is England?",
    "question_th": "คะแนนคืออะไร เมื่อใดคือปีหลังปี 2550 และเมื่อใดเป็นประเทศอังกฤษ",
    "context": "CREATE TABLE table_name_5 (score VARCHAR, year VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT MAX(year) FROM table_name_16 WHERE venue = \"lübker golf resort\"",
    "question_en": "What is the latest Year, when the Venue is Lübker Golf Resort?",
    "question_th": "ล่าสุดคือปีไหนที่สถานที่จัดงานคือ Lübker Golf Resort?",
    "context": "CREATE TABLE table_name_16 (year INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_37 WHERE venue = \"lübker golf resort\"",
    "question_en": "What is the Score, when the Venue is Lübker Golf Resort?",
    "question_th": "คะแนนคือเมื่อสถานที่คือ Lübker Golf Resort?",
    "context": "CREATE TABLE table_name_37 (score VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_19 WHERE winner = \"iain pyman\"",
    "question_en": "What is the Venue, when the Winner is iain pyman?",
    "question_th": "สถานที่คือที่ไหน ในเมื่อผู้ชนะคือเอียน ปิมาน?",
    "context": "CREATE TABLE table_name_19 (venue VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT final_round FROM table_name_22 WHERE first_round = 20",
    "question_en": "Which final round had a first round of 20?",
    "question_th": "รอบสุดท้ายไหนมีรอบแรก 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_en": "What final round had a weight of 245?",
    "question_th": "รอบสุดท้ายใดมีน้ำหนัก 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_en": "What is the pos for the New York Knicks?",
    "question_th": "ตำแหน่งสำหรับ 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_en": "What is the average first round for Utah Jazz team, with a weight smaller than 229?",
    "question_th": "ค่าเฉลี่ยรอบแรกของทีม ยูทาห์ แจ๊ส น้ำหนักน้อยกว่า 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_en": "What is the pos with weight less than 205?",
    "question_th": "ตำแหน่งที่มีน้ำหนักน้อยกว่า 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_en": "What GSR class is associated with a 0-4-2t type?",
    "question_th": "คลาส GSR ใดที่เกี่ยวข้องกับประเภท 0-4-2t",
    "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_en": "Who manufactured fleet numbers of wlwr 2, 4, 11?",
    "question_th": "ใครเป็นผู้ผลิตหมายเลขกองเรือ 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_en": "Name the most overall for dwight freeney with round less than 1",
    "question_th": "ตั้งชื่อโดยรวมมากที่สุดสำหรับ ดไวต์ ฟรีนีย์ ที่มีรอบน้อยกว่า 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_en": "Name the most pick # for overall of 204",
    "question_th": "ตั้งชื่อ # ที่ถูกเลือกมากที่สุดสำหรับโดยรวมของ 204",
    "context": "CREATE TABLE table_name_52 (pick__number INTEGER, overall VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_66 WHERE game = 6",
    "question_en": "What was the date for game 6?",
    "question_th": "เกมที่ 6 วันที่เท่าไหร่คะ?",
    "context": "CREATE TABLE table_name_66 (date VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_93 WHERE date = \"april 17\"",
    "question_en": "Who was the visitor for the April 17 game?",
    "question_th": "ใครคือผู้มาเยือนในเกมวันที่ 17 เมษายน?",
    "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_en": "Which chassis did fondmetal f1 spa use after 1990?",
    "question_th": "แชสซีใดที่ fondmetal f1 spa ใช้หลังปี 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_en": "What points did the ilmor v10 engine get after 1992?",
    "question_th": "เครื่องยนต์ ilmor v10 ได้คะแนนอะไรหลังจากปี 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_en": "Name the place for tim clark",
    "question_th": "ตั้งชื่อสถานที่สำหรับทิม คลาร์ก",
    "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_en": "Name the place for south africa and retief goosen",
    "question_th": "ตั้งชื่อสถานที่สำหรับแอฟริกาใต้และบรรเทาอาการห่าน",
    "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_en": "Name the To par for t10 place and score of 72-71=143",
    "question_th": "ตั้งชื่อพาร์สำหรับอันดับ t10 และคะแนน 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_en": "Which Opponent has a Method of submission?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีวิธีการส่ง?",
    "context": "CREATE TABLE table_name_97 (opponent VARCHAR, method VARCHAR)"
  },
  {
    "answer": "SELECT res FROM table_name_40 WHERE event = \"ufc 122\"",
    "question_en": "Which Res has an Event of UFC 122?",
    "question_th": "Res ใดมีเหตุการณ์ 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_en": "What was the record after the game against the St. Louis Cardinals?",
    "question_th": "บันทึกหลังเกมกับเซนต์หลุยส์ คาร์ดินัลส์เป็นอย่างไรบ้าง?",
    "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_en": "How many attendance numbers are associated with the site of Veterans Stadium before week 1?",
    "question_th": "จำนวนผู้เข้าร่วมที่เกี่ยวข้องกับสถานที่ของสนามกีฬาทหารผ่านศึกก่อนสัปดาห์ที่ 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_en": "What is the future stem for the word that has an imperfect stem of hartzen?",
    "question_th": "อะไรคือต้นกำเนิดของคำที่มีต้นกำเนิดที่ไม่สมบูรณ์ของ 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_en": "What is the imperfect stem for the word that has a future stem of ikusiko?",
    "question_th": "อะไรคือต้นกำเนิดที่ไม่สมบูรณ์ของคำที่มีต้นกำเนิดของ 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_en": "What is the short stem for the word that has a perfect stem of poztu?",
    "question_th": "ก้านสั้นสำหรับคำที่มีก้านที่สมบูรณ์แบบของ 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_en": "What is the imperfect stem of the word that means 'take away, remove'?",
    "question_th": "ก้านคำที่ไม่สมบูรณ์ของคำว่า 'เอาออกไป, ถอดออก' คืออะไร?",
    "context": "CREATE TABLE table_name_74 (imperfect_stem VARCHAR, meaning VARCHAR)"
  },
  {
    "answer": "SELECT perfect_stem FROM table_name_79 WHERE future_stem = \"emango\"",
    "question_en": "What is the perfect stem for the word that has a future stem of emango?",
    "question_th": "อะไรคือต้นกำเนิดที่สมบูรณ์แบบสำหรับคำที่มีต้นกำเนิดเป็นมะม่วงในอนาคต?",
    "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_en": "Who was the opponent of the runner-up after 2012?",
    "question_th": "ใครคือคู่ต่อสู้ของรองแชมป์หลังปี 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_en": "Who was the partner of the winner after 2012?",
    "question_th": "ใครคือหุ้นส่วนของผู้ชนะหลังปี 2555?",
    "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_en": "Name the outcome for 6 march 2000",
    "question_th": "ตั้งชื่อผลลัพธ์สำหรับวันที่ 6 มีนาคม พ.ศ. 2543",
    "context": "CREATE TABLE table_name_76 (outcome VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_6 WHERE surface = \"clay\" AND score = \"6–1, 6–2\" AND outcome = \"runner-up\"",
    "question_en": "Name the date when the surface was clay and the score was 6–1, 6–2 and runner-up",
    "question_th": "ตั้งชื่อวันที่พื้นผิวเป็นดินเหนียวและคะแนนเป็น 6–1, 6–2 และรองชนะเลิศ",
    "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_en": "Name the score for 26 may 1997",
    "question_th": "ตั้งชื่อคะแนนสำหรับวันที่ 26 พฤษภาคม 2540",
    "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_en": "Name the tournament for outcome of winner and clay surface with opponent of aranza salut",
    "question_th": "ตั้งชื่อการแข่งขันสำหรับผลลัพธ์ของผู้ชนะและพื้นผิวดินกับคู่ต่อสู้ของ 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_en": "Who did the Blue Jays lose to on July 16?",
    "question_th": "Blue Jays แพ้ใครในวันที่ 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_en": "Who had the men's win in the 1992/93 season?",
    "question_th": "ใครเป็นผู้ชนะในฤดูกาล 1992/93?",
    "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_en": "Who had the women's win when Norway was the winner overall in season 2001/02?",
    "question_th": "ใครเป็นฝ่ายหญิงชนะเมื่อนอร์เวย์เป็นผู้ชนะโดยรวมในฤดูกาล 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_en": "How many laps did Duke Nelson complete when his qualifying time was 122.951?",
    "question_th": "Duke Nelson จบไปกี่รอบเมื่อเวลารอบคัดเลือกของเขาคือ 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_en": "How many laps did Duke Nelson complete when his qualifying time was 136.498?",
    "question_th": "Duke Nelson จบไปกี่รอบเมื่อเวลารอบคัดเลือกของเขาคือ 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_en": "What entrant drove a car with a Moore chassis prior to 1953?",
    "question_th": "ผู้เข้าร่วมคนใดขับรถด้วยแชสซีของ Moore ก่อนปี 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_en": "What opponent was in the match that resulted in 1-2?",
    "question_th": "คู่ต่อสู้คนใดในการแข่งขันที่ส่งผลให้เสมอ 1-2?",
    "context": "CREATE TABLE table_name_61 (opponent_team VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_42 WHERE 2009 = \"a\"",
    "question_en": "Which tournament has a value of a for 2009?",
    "question_th": "ทัวร์นาเมนต์ใดมีมูลค่าเท่ากับปี 2009",
    "context": "CREATE TABLE table_name_42 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_89 WHERE 2009 = \"a\" AND 2013 = \"4r\"",
    "question_en": "What is the value for 2011 when `a` is the value for 2009, and 4r is the value for 2013?",
    "question_th": "ค่าสำหรับปี 2011 จะเป็นเท่าใด เมื่อ `a` คือค่าสำหรับปี 2009 และ 4r คือค่าสำหรับปี 2013",
    "context": "CREATE TABLE table_name_89 (Id VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_60 WHERE hometown = \"chicago, illinois\"",
    "question_en": "What is the result for Chicago, Illinois?",
    "question_th": "เมืองชิคาโก รัฐอิลลินอยส์ ผลลัพธ์เป็นอย่างไร",
    "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_en": "How much did the Hydra team from Bronx, New York raise?",
    "question_th": "ทีม Hydra จากบรองซ์ นิวยอร์ก ระดมทุนได้เท่าไหร่",
    "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_en": "Name the attendance for atlanta braves opponent for september 9",
    "question_th": "ตั้งชื่อการเข้าร่วมของคู่ต่อสู้ Atlanta Braves สำหรับวันที่ 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_en": "What were the years active of the player from New Zealand with more than 11 caps?",
    "question_th": "ผู้เล่นจากนิวซีแลนด์ที่ลงเล่นมากกว่า 11 แคปมีอายุกี่ปี?",
    "context": "CREATE TABLE table_name_1 (years_active VARCHAR, caps VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT goals FROM table_name_6 WHERE country = \"france\"",
    "question_en": "How many goals did a player from France have?",
    "question_th": "นักเตะจากฝรั่งเศสทำได้กี่ประตู?",
    "context": "CREATE TABLE table_name_6 (goals VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT goals FROM table_name_4 WHERE years_active = \"2006\"",
    "question_en": "How many goals did a player active since 2006 have?",
    "question_th": "ผู้เล่นที่ลงเล่นตั้งแต่ปี 2549 มีเป้าหมายกี่ประตู?",
    "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_en": "What is the transfer window of the Leeds United source with a move from Motherwell?",
    "question_th": "หน้าต่างโอนย้ายของต้นสังกัดลีดส์ ยูไนเต็ด เมื่อย้ายจากมาเธอร์เวลล์เป็นอย่างไร?",
    "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_en": "What is the source of a move from Swindon Town?",
    "question_th": "การย้ายจากสวินดอน ทาวน์เกิดจากอะไร?",
    "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_en": "What is the name of the country that has a transfer window of winter with an end after 2009 and moving from Bolton Wanderers?",
    "question_th": "ประเทศที่มีหน้าต่างโอนย้ายช่วงฤดูหนาวโดยสิ้นสุดหลังปี 2009 และย้ายจากโบลตัน วันเดอเรอร์สชื่ออะไร?",
    "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_en": "What is the transfer fee of the move from Port Vale?",
    "question_th": "ค่าธรรมเนียมการโอนย้ายจากพอร์ทเวลเท่าไหร่?",
    "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_en": "What is the type of the Leeds United source, winter transfer window and moving from Northampton town?",
    "question_th": "แหล่งที่มาของลีดส์ยูไนเต็ดหน้าต่างการโอนฤดูหนาวและการย้ายจากเมืองนอร์ธแฮมป์ตันคืออะไร?",
    "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_en": "What is the source of the move from Port Vale?",
    "question_th": "ที่มาของการย้ายจากพอร์ทเวลคืออะไร?",
    "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_en": "What is the average silver medals a team ranked 12 with less than 2 bronze has?",
    "question_th": "เหรียญเงินเฉลี่ยของทีมอันดับที่ 12 และน้อยกว่า 2 เหรียญทองแดงคือเท่าไร?",
    "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_en": "What is the average rank Finland, which has 1 bronze, more than 1 silver, and less than 0 gold, has?",
    "question_th": "อันดับเฉลี่ยของฟินแลนด์ ซึ่งมี 1 เหรียญทองแดง มากกว่า 1 เหรียญเงิน และน้อยกว่า 0 เหรียญทอง คือเท่าไร?",
    "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_en": "What is the lowest amount of gold a team with less than 2 total medals, ranked 17, and more than 0 silver medals, has?",
    "question_th": "ทีมที่ได้เหรียญทองรวมน้อยกว่า 2 เหรียญ อันดับที่ 17 และเหรียญเงินมากกว่า 0 เหรียญมีจำนวนเท่าใด?",
    "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_en": "Who is the captain of the manchester city team?",
    "question_th": "ใครคือกัปตันทีมแมนเชสเตอร์ ซิตี้?",
    "context": "CREATE TABLE table_name_51 (captain VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT captain FROM table_name_49 WHERE manager = \"joe royle\"",
    "question_en": "Which captain's manager is Joe Royle?",
    "question_th": "โจ รอยล์ ผู้จัดการกัปตันทีมคนไหน?",
    "context": "CREATE TABLE table_name_49 (captain VARCHAR, manager VARCHAR)"
  },
  {
    "answer": "SELECT AVG(founded) FROM table_name_88 WHERE joined < 2008",
    "question_en": "Name the average founded with joined less than 2008",
    "question_th": "ตั้งชื่อค่าเฉลี่ยที่ก่อตั้งโดยเข้าร่วมน้อยกว่าปี 2008",
    "context": "CREATE TABLE table_name_88 (founded INTEGER, joined INTEGER)"
  },
  {
    "answer": "SELECT role FROM table_name_55 WHERE broadcaster = \"challenge tv\"",
    "question_en": "What was the role for Challenge TV?",
    "question_th": "Challenge TV มีบทบาทอย่างไร?",
    "context": "CREATE TABLE table_name_55 (role VARCHAR, broadcaster VARCHAR)"
  },
  {
    "answer": "SELECT broadcaster FROM table_name_24 WHERE year = \"2003\"",
    "question_en": "Who was the broadcaster in 2003?",
    "question_th": "ใครคือผู้ประกาศข่าวในปี 2546?",
    "context": "CREATE TABLE table_name_24 (broadcaster VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT role FROM table_name_20 WHERE broadcaster = \"bbc1\"",
    "question_en": "What was the role for BBC1?",
    "question_th": "BBC1 มีบทบาทอย่างไร?",
    "context": "CREATE TABLE table_name_20 (role VARCHAR, broadcaster VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_82 WHERE episodes = \"8\"",
    "question_en": "What was the title with episode 8?",
    "question_th": "ตอนที่ 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_en": "What was the title for Sky One in 2005?",
    "question_th": "ชื่อ Sky One ในปี 2548 คืออะไร?",
    "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_en": "What was Yardley-BRM's points high after 1971?",
    "question_th": "คะแนนของ Yardley-BRM สูงสุดหลังปี 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_en": "What year did Austria-Marlboro BRM get more than 0 points?",
    "question_th": "ออสเตรีย-มาร์ลโบโร BRM ได้คะแนนมากกว่า 0 ในปีใด",
    "context": "CREATE TABLE table_name_99 (year INTEGER, entrant VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT entrant FROM table_name_62 WHERE chassis = \"mclaren m7c\"",
    "question_en": "Which entrant has a Mclaren m7c Chassis?",
    "question_th": "ผู้เข้าแข่งขันรายใดมีแชสซี Mclaren m7c",
    "context": "CREATE TABLE table_name_62 (entrant VARCHAR, chassis VARCHAR)"
  },
  {
    "answer": "SELECT province_region FROM table_name_73 WHERE iata = \"gmp\"",
    "question_en": "Which province has gmp for an IATA?",
    "question_th": "จังหวัดใดมี GMP สำหรับ 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_en": "Which airport is in Tokyo and has an ICAO of rjtt?",
    "question_th": "สนามบินใดอยู่ในโตเกียวและมี ICAO ของ rjtt?",
    "context": "CREATE TABLE table_name_73 (airport VARCHAR, city VARCHAR, icao VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_80 WHERE icao = \"vvts\"",
    "question_en": "Which country is the ICAO vvts?",
    "question_th": "ICAO vvts คือประเทศใด",
    "context": "CREATE TABLE table_name_80 (country VARCHAR, icao VARCHAR)"
  },
  {
    "answer": "SELECT airport FROM table_name_77 WHERE country = \"vietnam\"",
    "question_en": "What airport is in Vietnam?",
    "question_th": "สนามบินใดในเวียดนาม?",
    "context": "CREATE TABLE table_name_77 (airport VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT airport FROM table_name_29 WHERE iata = \"hgh\"",
    "question_en": "Which airport has an IATA of hgh?",
    "question_th": "สนามบินใดมี IATA เท่ากับ hgh?",
    "context": "CREATE TABLE table_name_29 (airport VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_69 WHERE iata = \"tsa\"",
    "question_en": "Which city has an IATA of tsa?",
    "question_th": "เมืองใดมี IATA เท่ากับ tsa",
    "context": "CREATE TABLE table_name_69 (city VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT start FROM table_name_84 WHERE laps = 182",
    "question_en": "Where was the starting position when there were 182 laps?",
    "question_th": "ตำแหน่งออกตัวเมื่อครบ 182 รอบอยู่ที่ใด?",
    "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_en": "How many laps were completed with a start of 33, and a finish of 18?",
    "question_th": "จบไปกี่รอบโดยออกสตาร์ต 33 และจบ 18?",
    "context": "CREATE TABLE table_name_67 (laps INTEGER, start VARCHAR, finish VARCHAR)"
  },
  {
    "answer": "SELECT qual FROM table_name_67 WHERE laps = 182",
    "question_en": "When completing 182 laps, what was the qual.?",
    "question_th": "เมื่อครบ 182 รอบ มีคุณสมบัติอะไรบ้าง?",
    "context": "CREATE TABLE table_name_67 (qual VARCHAR, laps VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(laps) FROM table_name_23 WHERE year = \"1949\"",
    "question_en": "What is the total number of laps that were completed in 1949?",
    "question_th": "จำนวนรอบทั้งหมดที่เสร็จสิ้นในปี 1949 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_23 (laps VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT MIN(laps) FROM table_name_12 WHERE rank = \"32\"",
    "question_en": "What is the fewest number of laps completed by a rank 32?",
    "question_th": "จำนวนรอบที่น้อยที่สุดโดยอันดับ 32 คือเท่าใด?",
    "context": "CREATE TABLE table_name_12 (laps INTEGER, rank VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_55 WHERE type = \"individual time trial\"",
    "question_en": "On what date was the individual time trial?",
    "question_th": "การพิจารณาคดีแบบรายบุคคลจัดขึ้นในวันที่ใด?",
    "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_en": "When was tony parker (guard) born?",
    "question_th": "โทนี่ ปาร์คเกอร์ (การ์ด) เกิดเมื่อไหร่?",
    "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_en": "What team does tariq kirksay, a guard who is taller than 1.8M and born before 1982, represent?",
    "question_th": "ทาริก เคิร์กเซย์ การ์ดที่สูงกว่า 1.8 เมตรและเกิดก่อนปี 1982 เป็นตัวแทนของทีมใด",
    "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_en": "What player is a center born in 1977?",
    "question_th": "นักเตะคนไหนที่เกิดในปี 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_en": "What is the extra result of the 4th game?",
    "question_th": "ผลการแข่งขันพิเศษของเกมที่ 4 คืออะไร?",
    "context": "CREATE TABLE table_name_37 (extra VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT extra FROM table_name_87 WHERE year > 2009",
    "question_en": "What extra is from after 2009?",
    "question_th": "มีอะไรพิเศษหลังจากปี 2009 บ้าง?",
    "context": "CREATE TABLE table_name_87 (extra VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT kit_manufacturer FROM table_name_63 WHERE shirt_sponsor = \"walkers\"",
    "question_en": "Who was the Kit manufacturer that was has shirts sponsored by Walkers?",
    "question_th": "ใครคือผู้ผลิตชุดอุปกรณ์ที่มีเสื้อสนับสนุนโดย 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_en": "Which team is the kit manufacturer Umbro, and the captain Gary Mabbutt?",
    "question_th": "ทีมไหนเป็นผู้ผลิตชุดแข่ง Umbro และกัปตันทีม 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_en": "Who is the captain for the manufacturer Pony, and the manager Harry Redknapp?",
    "question_th": "ใครเป็นกัปตันของผู้ผลิต Pony และผู้จัดการ 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_en": "Who is the shirt sponsor for the manufacturer Nike?",
    "question_th": "ใครคือผู้สนับสนุนเสื้อของบริษัทผู้ผลิต 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_en": "Which team has the team captain Jon Newsome?",
    "question_th": "ทีมไหนมีกัปตันทีม จอน นิวซัม บ้าง?",
    "context": "CREATE TABLE table_name_81 (team VARCHAR, captain VARCHAR)"
  },
  {
    "answer": "SELECT gsr_nos FROM table_name_50 WHERE date_made = \"1883\"",
    "question_en": "What was the GSR number on the date 1883?",
    "question_th": "หมายเลข GSR ในวันที่ 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_en": "What was the quantity of the fleet information for DWWR 50 and 51?",
    "question_th": "ข้อมูลกองเรือสำหรับ DWWR 50 และ 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_en": "What was the quantity for Inchicore of J7?",
    "question_th": "Inchicore ของ 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_en": "What's the highest round for a defensive tackle position?",
    "question_th": "รอบสูงสุดสำหรับตำแหน่งแท็คเกิ้ลฝ่ายรับคือรอบใด?",
    "context": "CREATE TABLE table_name_70 (round INTEGER, position VARCHAR)"
  },
  {
    "answer": "SELECT MIN(round) FROM table_name_54 WHERE name = \"samuel scheschuk\"",
    "question_en": "What is the smallest round associated with Samuel Scheschuk?",
    "question_th": "รอบที่เล็กที่สุดที่เกี่ยวข้องกับ 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_en": "How many people were in attendance on the day there was a 30-22 victory?",
    "question_th": "มีผู้เข้าร่วมกี่คนในวันที่มีชัยชนะ 30-22?",
    "context": "CREATE TABLE table_name_13 (attendance VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_84 WHERE date = \"june 29\"",
    "question_en": "Who lost on June 29?",
    "question_th": "ใครแพ้วันที่ 29 มิถุนายน?",
    "context": "CREATE TABLE table_name_84 (loss VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_80 WHERE result = \"lost\"",
    "question_en": "What is the score with lost as the result?",
    "question_th": "แล้วผลแพ้เป็นยังไง?",
    "context": "CREATE TABLE table_name_80 (score VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_25 WHERE venue = \"china\"",
    "question_en": "Which date has china as the venue?",
    "question_th": "ประเทศจีนเป็นสถานที่จัดงานวันไหน?",
    "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_en": "Which score has a competition of 1997 dunhill cup malaysia and february 23, 1997 as the date?",
    "question_th": "สกอร์ใดมีการแข่งขันระหว่าง ดันฮิลล์ คัพ มาเลเซีย ปี 1997 และวันที่ 23 กุมภาพันธ์ 1997 เป็นวันที่?",
    "context": "CREATE TABLE table_name_92 (score VARCHAR, competition VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_88 WHERE score = \"4-0\"",
    "question_en": "Which competition has 4-0 as the score?",
    "question_th": "การแข่งขันรายการใดมีสกอร์ 4-0?",
    "context": "CREATE TABLE table_name_88 (competition VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_71 WHERE date = \"october 16, 2000\"",
    "question_en": "What score has october 16, 2000 as the date?",
    "question_th": "วันที่ 16 ตุลาคม 2543 มีคะแนนเท่าไหร่?",
    "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_en": "What is the result of the competition of 2000 afc asian cup group stages?",
    "question_th": "ผลการแข่งขันเอเอฟซี เอเชียนคัพ 2000 รอบแบ่งกลุ่มเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_22 (result VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT motive FROM table_name_25 WHERE year < 2007",
    "question_en": "What is the motive before 2007?",
    "question_th": "แรงจูงใจก่อนปี 2550 คืออะไร?",
    "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_en": "What is the result of the directorial debut of the year award?",
    "question_th": "ผลของรางวัลผู้กำกับเปิดตัวแห่งปีเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_77 (result VARCHAR, category VARCHAR)"
  },
  {
    "answer": "SELECT category FROM table_name_72 WHERE award = \"premios lo nuestro\"",
    "question_en": "What is the category for the premios lo nuestro award?",
    "question_th": "รางวัล premios lo nuestro อยู่ในหมวดหมู่ใด",
    "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_en": "What's the average number of Laps, that had a start of 25, with a Qual of 138.063?",
    "question_th": "จำนวนรอบโดยเฉลี่ยที่ออกสตาร์ทที่ 25 และรอบคัดเลือกที่ 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_en": "What year had the Finish of 12?",
    "question_th": "ปีใดที่เข้าเส้นชัยเป็น 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_en": "In what year did a Qual of 141.105 with a Start of 25 happen?",
    "question_th": "รอบคัดเลือกที่ 141.105 โดยการออกสตาร์ทที่ 25 เกิดขึ้นในปีใด",
    "context": "CREATE TABLE table_name_69 (year VARCHAR, start VARCHAR, qual VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_52 WHERE laps > 196",
    "question_en": "What year had the largest number of laps over 196?",
    "question_th": "ปีใดมีจำนวนรอบมากที่สุดมากกว่า 196?",
    "context": "CREATE TABLE table_name_52 (year VARCHAR, laps INTEGER)"
  },
  {
    "answer": "SELECT runners_up FROM table_name_28 WHERE year = \"1996\"",
    "question_en": "Who are the runners-up in 1996?",
    "question_th": "ใครคือรองชนะเลิศในปี 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_en": "What is the average roll of a school with state authority and a decile of 9?",
    "question_th": "ค่าเฉลี่ยของโรงเรียนที่มีอำนาจของรัฐและมีคะแนน 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_en": "Which area has state authority and a roll fewer than 18?",
    "question_th": "พื้นที่ใดมีอำนาจของรัฐและมีม้วนน้อยกว่า 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_en": "What is the roll for the school with state authority and a decile of 9?",
    "question_th": "ม้วนสำหรับโรงเรียนที่มีอำนาจของรัฐและมีเดซิล 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_en": "What is the average decile of Westport South School?",
    "question_th": "ค่าเสื่อมเฉลี่ยของ 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_en": "What is the top rank with a time of 2:19.86?",
    "question_th": "อันดับสูงสุดด้วยเวลา 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_en": "Who had a lane number smaller than 7 and a time of 2:19.86?",
    "question_th": "ใครมีหมายเลขเลนน้อยกว่า 7 และมีเวลา 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_en": "What was Liu Limin's time in heat 4?",
    "question_th": "Liu Limin ฮีต 4 มีเวลาเท่าไร?",
    "context": "CREATE TABLE table_name_32 (time VARCHAR, heat VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_69 WHERE competition = \"friendly\"",
    "question_en": "What was the result of the friendly competition?",
    "question_th": "ผลการแข่งขันกระชับมิตรเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_69 (result VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT start_source FROM table_name_72 WHERE ended = \"4 may\"",
    "question_en": "What was the start source that ended on 4 May?",
    "question_th": "จุดเริ่มต้นที่สิ้นสุดในวันที่ 4 พฤษภาคม คืออะไร?",
    "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_en": "What is the Loan Club from Eng that ended on 22 February?",
    "question_th": "Loan Club จาก Eng ที่สิ้นสุดวันที่ 22 กุมภาพันธ์คืออะไร?",
    "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_en": "What is the End Source from the Hartlepool United Loan Club?",
    "question_th": "แหล่งที่มาสุดท้ายจาก 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_en": "When did the loan that Ended on 15 January Start?",
    "question_th": "เงินกู้ที่สิ้นสุดในวันที่ 15 มกราคมเริ่มต้นเมื่อใด",
    "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_en": "What nation had more than 97 Gold Medals and fewer than 332 Silver Medals?",
    "question_th": "ประเทศใดมีเหรียญทองมากกว่า 97 เหรียญและเหรียญเงินน้อยกว่า 332 เหรียญ?",
    "context": "CREATE TABLE table_name_34 (total INTEGER, gold VARCHAR, silver VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(bronze) FROM table_name_89 WHERE total = 135",
    "question_en": "What nation had 135 Bronze medals?",
    "question_th": "ชาติใดได้ 135 เหรียญทองแดง?",
    "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_en": "What is the area of Ulim with less than 30 villages?",
    "question_th": "จังหวัดอูลิมที่มีหมู่บ้านไม่ถึง 30 หมู่บ้านคือพื้นที่ใด",
    "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_en": "What is the name of the station that is currently demolished with the Shepparton line in Tabilk?",
    "question_th": "สถานีที่ปัจจุบันรื้อถอนด้วยสาย Shepparton ใน 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_en": "What is the line of Mangalore station?",
    "question_th": "สถานีมังคาลอร์มีเส้นทางใดบ้าง?",
    "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_en": "What is the line of the station in Toolamba that is currently demolished and closed in the late 1970s?",
    "question_th": "สายของสถานีใน Toolamba ที่ปัจจุบันถูกรื้อถอนและปิดในช่วงปลายทศวรรษ 1970 คืออะไร?",
    "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_en": "What is the name of the station in Toolamba that is currently demolished?",
    "question_th": "สถานีใน Toolamba ที่ปัจจุบันถูกรื้อถอนชื่ออะไร",
    "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_en": "What club began in 1976?",
    "question_th": "สโมสรใดก่อตั้งในปี 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_en": "What player was born in 1976 and is smaller than 2.03?",
    "question_th": "ผู้เล่นคนไหนที่เกิดในปี 1976 และมีขนาดเล็กกว่า 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_en": "What player was born in 1978 and smaller than 1.92?",
    "question_th": "นักเตะคนไหนที่เกิดในปี 1978 และตัวเล็กกว่า 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_en": "Which year did The Adventures of Tintin come out?",
    "question_th": "The Adventures of Tintin ออกฉายในปีไหน?",
    "context": "CREATE TABLE table_name_17 (year INTEGER, film VARCHAR)"
  },
  {
    "answer": "SELECT AVG(year) FROM table_name_3 WHERE film = \"rango\"",
    "question_en": "What year did the movie Rango come out?",
    "question_th": "หนังเรื่อง Rango ออกฉายปีไหนครับ?",
    "context": "CREATE TABLE table_name_3 (year INTEGER, film VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_76 WHERE height_feet___m = \"427 / 130\"",
    "question_en": "What is the rank associated with a Height feet / m of 427 / 130?",
    "question_th": "อันดับที่เกี่ยวข้องกับความสูงฟุต / ม. ของ 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_en": "What was the address in 1974?",
    "question_th": "ที่อยู่ในปี 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_en": "What was the earliest year for a car with 3 points and Cooper t20 chassis?",
    "question_th": "ปีแรกสุดสำหรับรถยนต์ที่มี 3 คะแนนและตัวถัง Cooper t20 คือปีใด",
    "context": "CREATE TABLE table_name_36 (year INTEGER, points VARCHAR, chassis VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_1 WHERE game = 2",
    "question_en": "Game 2 has how much attendance?",
    "question_th": "เกมที่ 2 มีผู้เข้าชมเท่าไร?",
    "context": "CREATE TABLE table_name_1 (attendance VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT AVG(attendance) FROM table_name_40 WHERE date = \"october 12\"",
    "question_en": "What was the average attendance on October 12?",
    "question_th": "ผู้เข้าร่วมโดยเฉลี่ยในวันที่ 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_en": "What is the name of the Home Captain for 23,24,25,26 july 1992?",
    "question_th": "กัปตันทีมบ้านวันที่ 23,24,25,26 กรกฎาคม 2535 ชื่ออะไร?",
    "context": "CREATE TABLE table_name_7 (home_captain VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT away_captain FROM table_name_66 WHERE venue = \"headingley\"",
    "question_en": "Who is the Away Captain at headingley?",
    "question_th": "ใครคือกัปตันทีมเยือนที่เฮดดิงลีย์?",
    "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_en": "Where was a game played on 23,24,25,26 july 1992?",
    "question_th": "เกมนี้เล่นที่ไหนในวันที่ 23,24,25,26 กรกฎาคม พ.ศ. 2535?",
    "context": "CREATE TABLE table_name_13 (venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT away_captain FROM table_name_86 WHERE venue = \"the oval\"",
    "question_en": "Who was the Away Captain at The Oval?",
    "question_th": "ใครคือกัปตันทีมเยือนที่ 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_en": "Who is the Home Captain for 23,24,25,26 july 1992?",
    "question_th": "ใครคือกัปตันทีมเหย้าในวันที่ 23,24,25,26 กรกฎาคม 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_en": "What is the result for 23,24,25,26 july 1992?",
    "question_th": "ผลลัพธ์ของวันที่ 23,24,25,26 กรกฎาคม 2535 เป็นอย่างไร?",
    "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_en": "What is the maximum number of losses that the Minnesota Kicks had after 1979 with an average attendance of 16,605?",
    "question_th": "จำนวนการสูญเสียสูงสุดที่ Minnesota Kicks มีหลังจากปี 1979 โดยมีผู้เข้าร่วมเฉลี่ย 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_en": "Which season did the Minnesota Kicks lose 13 games and scored 156 points?",
    "question_th": "Minnesota Kicks แพ้ 13 เกมในฤดูกาลใดและทำคะแนนได้ 156 แต้ม",
    "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_en": "What losses did racing de santander, that scored less than 68 goals, had a goal difference of less than 23 and 10 draws?",
    "question_th": "ราซิ่ง เด ซานตานเดร์ แพ้อะไรบ้างซึ่งยิงได้น้อยกว่า 68 ประตู และมีผลต่างประตูน้อยกว่า 23 และเสมอ 10?",
    "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_en": "What is the highest goal difference that the club with 33-5 points and less than 12 wins?",
    "question_th": "ผลต่างประตูสูงสุดที่สโมสรมี 33-5 แต้ม และน้อยกว่า 12 แต้ม คืออะไร?",
    "context": "CREATE TABLE table_name_52 (goal_difference INTEGER, points VARCHAR, wins VARCHAR)"
  },
  {
    "answer": "SELECT reactor_type FROM table_name_25 WHERE commercial_operation = \"—\" AND unit = \"tianwan-7\"",
    "question_en": "What reactor type that has a commercial operation of —, and a tianwan-7 unit?",
    "question_th": "เครื่องปฏิกรณ์ประเภทใดที่เดินเครื่องเชิงพาณิชย์ — และหน่วย tianwan-7?",
    "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_en": "What was the net capacity with a gross capacity of 1,126 mw, and a Unit of tianwan-4?",
    "question_th": "กำลังการผลิตสุทธิที่มีกำลังการผลิตรวม 1,126 เมกะวัตต์ และ 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_en": "What commercial operation that has a gross capacity of 1,126 mw, and a unit of tianwan-4?",
    "question_th": "ดำเนินการเชิงพาณิชย์ใดที่มีกำลังการผลิตรวม 1,126 เมกะวัตต์ และ 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_en": "What score has won as the result on the date of December 14, 2004?",
    "question_th": "คะแนนที่ได้รับในวันที่ 14 ธันวาคม พ.ศ. 2547 คืออะไร?",
    "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_en": "What date has won as the result and 2-1 as the score with a competition of 2004 tiger cup third place match?",
    "question_th": "ผลการแข่งขันชนะวันไหน และสกอร์ 2-1 กับการแข่งขันนัดชิงอันดับ 3 ไทเกอร์คัพ ปี 2004?",
    "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_en": "What score has january 15, 2005 as the date?",
    "question_th": "วันที่ 15 มกราคม 2548 มีคะแนนเท่าไหร่?",
    "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_en": "What date has lost as the result and a competition of friendly with 1-2 as the score?",
    "question_th": "แพ้นัดวันไหนและแข่งกระชับมิตรด้วยสกอร์ 1-2?",
    "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_en": "What score has january 3, 2005 as the date?",
    "question_th": "วันที่ 3 มกราคม 2548 มีคะแนนเท่าใด",
    "context": "CREATE TABLE table_name_98 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_25 WHERE date = \"may 5, 2001\"",
    "question_en": "What competition has may 5, 2001 as the date?",
    "question_th": "การแข่งขันรายการใดมีวันที่ 5 พฤษภาคม 2544?",
    "context": "CREATE TABLE table_name_25 (competition VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_52 WHERE date = \"september 8\"",
    "question_en": "Who did the team lose to on September 8?",
    "question_th": "ทีมไหนแพ้ให้กับใครในวันที่ 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_en": "What is the order for a red list of 7 in the didelphidae family?",
    "question_th": "ลำดับสีแดง 7 ตัวในตระกูล Didelphidae คืออะไร?",
    "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_en": "What is the name with a red lest less than 7?",
    "question_th": "สีแดงน้อยกว่า 7 ชื่ออะไรคะ?",
    "context": "CREATE TABLE table_name_51 (name VARCHAR, red_list INTEGER)"
  },
  {
    "answer": "SELECT family FROM table_name_57 WHERE name = \"eastern cottontail\"",
    "question_en": "What family has the name of eastern cottontail?",
    "question_th": "วงศ์ใดมีชื่อว่าหางฝ้ายตะวันออก?",
    "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_en": "What red list is in the artiodactyla order and the cervidae family with a Species Authority of odocoileus virginianus zimmermann, 1780?",
    "question_th": "รายการสีแดงใดบ้างที่อยู่ในลำดับ artiodactyla และวงศ์ Cervidae โดยหน่วยงาน 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_en": "What is the name for the red list of 7, the artiodactyla order, and Species Authority of cervus elaphus linnaeus, 1758?",
    "question_th": "รายชื่อสีแดงของ 7, artiodactyla order และ 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_en": "What is the original name of the film that used the title Olympics 40 in nomination?",
    "question_th": "ชื่อเดิมของภาพยนตร์ที่ใช้ชื่อ Olympics 40 ในการเสนอชื่อคืออะไร?",
    "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_en": "What title did the film from Colombia use in its nomination?",
    "question_th": "ภาพยนตร์จากโคลอมเบียใช้ชื่ออะไรในการเสนอชื่อ?",
    "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_en": "Who directed the film originally named Bye Bye Brazil in Portuguese?",
    "question_th": "ใครเป็นผู้กำกับภาพยนตร์เรื่องนี้แต่เดิมมีชื่อว่า Bye Bye Brazil ในภาษาโปรตุเกส",
    "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_en": "What country is the film directed by Jean-Luc Godard in French from?",
    "question_th": "ภาพยนตร์ที่กำกับโดย Jean-Luc Godard เป็นภาษาฝรั่งเศสมาจากประเทศใด",
    "context": "CREATE TABLE table_name_19 (country VARCHAR, language VARCHAR, director VARCHAR)"
  },
  {
    "answer": "SELECT director FROM table_name_92 WHERE language = \"italian\"",
    "question_en": "Who is the director of the film in Italian?",
    "question_th": "ใครคือผู้กำกับภาพยนตร์ในภาษาอิตาลี?",
    "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_en": "What is the status of Aden Theobald from the hometown of London?",
    "question_th": "สถานะของ Aden Theobald จากบ้านเกิดของลอนดอนคืออะไร?",
    "context": "CREATE TABLE table_name_48 (status VARCHAR, hometown VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_name_40 WHERE name = \"hasan shah\"",
    "question_en": "What is Hasan Shah's hometown?",
    "question_th": "บ้านเกิดของ Hasan Shah คืออะไร?",
    "context": "CREATE TABLE table_name_40 (hometown VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT series FROM table_name_20 WHERE name = \"sam evans\"",
    "question_en": "What series was Sam Evans on?",
    "question_th": "Sam Evans เล่นซีรีส์เรื่องใด",
    "context": "CREATE TABLE table_name_20 (series VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_69 WHERE series = \"bb1\" AND hometown = \"bolton\"",
    "question_en": "What is the name of the person from series bb1 with a hometown of Bolton?",
    "question_th": "บุคคลจากซีรีส์ bb1 กับบ้านเกิดของโบลตันชื่ออะไร",
    "context": "CREATE TABLE table_name_69 (name VARCHAR, series VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT occupation FROM table_name_17 WHERE hometown = \"hampshire\"",
    "question_en": "What is the occupation of the person with a hometown of Hampshire?",
    "question_th": "ผู้ที่มีบ้านเกิดอยู่ที่แฮมป์เชียร์มีอาชีพอะไร?",
    "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_en": "Which 1st Party has an Election of 1849 by-election?",
    "question_th": "ฝ่ายที่ 1 ใดมีการเลือกตั้งซ่อมในปี พ.ศ. 2392",
    "context": "CREATE TABLE table_name_42 (election VARCHAR)"
  },
  {
    "answer": "SELECT 2 AS nd_party FROM table_name_96 WHERE election = \"1837\"",
    "question_en": "Which 2nd Party has an Election of 1837?",
    "question_th": "พรรคที่ 2 คนใดมีการเลือกตั้งในปี พ.ศ. 2380",
    "context": "CREATE TABLE table_name_96 (election VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_90 WHERE fleet_numbers = \"2–8, 91–92, 97–100\"",
    "question_en": "Which Type has a Fleet numbers of 2–8, 91–92, 97–100?",
    "question_th": "ประเภทใดที่มีหมายเลขกองเรือ 2–8, 91–92, 97–100",
    "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_en": "When has a Note of 45/48 renumbered 15/16; two sold to sl&ncr?",
    "question_th": "เมื่อมีหมายเหตุ 45/48 เปลี่ยนหมายเลข 15/16; ขายสองรายการให้กับ 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_en": "What Willingshain is Kirchheim 1,126?",
    "question_th": "Willingshain คือ Kirchheim 1,126 คืออะไร?",
    "context": "CREATE TABLE table_name_71 (willingshain VARCHAR, kirchheim VARCHAR)"
  },
  {
    "answer": "SELECT rotterterode FROM table_name_31 WHERE reimboldsh = \"80\"",
    "question_en": "What Rotterterrode has a Reimboldsh 80?",
    "question_th": "Rotterterrode ใดมี 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_en": "What Reimboldsh has Willingshain of 268 and Gersdorf 194?",
    "question_th": "Reimboldsh มี Willingshain จาก 268 และ 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_en": "What Kemmerode has a Gersforf of 39?",
    "question_th": "Kemmerode ใดมี Gersforf เท่ากับ 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_en": "What Gershausen has a Willingshain of 243 and Reckerode of 224?",
    "question_th": "Gershausen ใดมี Willingshain ที่ 243 และ Reckerode ที่ 224",
    "context": "CREATE TABLE table_name_46 (gershausen VARCHAR, willingshain VARCHAR, reckerode_ VARCHAR)"
  },
  {
    "answer": "SELECT willingshain FROM table_name_27 WHERE reimboldsh = \"101\"",
    "question_en": "What Willinghshain has Reimboldsh of 101?",
    "question_th": "Willinghshain มี Reimboldsh จาก 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_en": "What is the pts for 2004, and the ro event?",
    "question_th": "แต้มในปี 2547 และกิจกรรม ro คืออะไร",
    "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_en": "What is the pos from 2003, and the f event?",
    "question_th": "ตำแหน่งจากปี 2546 คืออะไร และเหตุการณ์ f คืออะไร",
    "context": "CREATE TABLE table_name_64 (pos VARCHAR, year VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT catalog FROM table_name_59 WHERE region = \"japan\"",
    "question_en": "What is the Catalog Number is for the Japan region?",
    "question_th": "หมายเลขแค็ตตาล็อกสำหรับภูมิภาคญี่ปุ่นคืออะไร",
    "context": "CREATE TABLE table_name_59 (catalog VARCHAR, region VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_9 WHERE catalog = \"540,934-2\"",
    "question_en": "What is the date on Catalog 540,934-2?",
    "question_th": "วันที่บนแค็ตตาล็อก 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_en": "What is the region for Catalog amlh 66078 in stereo lp format?",
    "question_th": "ภูมิภาคสำหรับ Catalog amlh 66078 ในรูปแบบสเตอริโอ lp คืออะไร",
    "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_en": "What is the region for Catalog amlh 66078 in stereo lp format?",
    "question_th": "ภูมิภาคสำหรับ Catalog amlh 66078 ในรูปแบบสเตอริโอ lp คืออะไร",
    "context": "CREATE TABLE table_name_68 (region VARCHAR, format VARCHAR, catalog VARCHAR)"
  },
  {
    "answer": "SELECT catalog FROM table_name_91 WHERE region = \"japan\"",
    "question_en": "What is the Catalog number for the region of Japan?",
    "question_th": "หมายเลขแค็ตตาล็อกสำหรับภูมิภาคญี่ปุ่นคืออะไร",
    "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_en": "What is the region of the Catalog that is in cd format and has a label a&m/canyon?",
    "question_th": "แคตตาล็อกที่อยู่ในรูปแบบซีดีและมีป้ายกำกับ 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_en": "What is the original team that was Hired by Trump (5-19-2005)?",
    "question_th": "ทีมเดิมที่ได้รับการว่าจ้างจากทรัมป์ (5-19-2548) คืออะไร?",
    "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_en": "Who is the candidate that had 10 fired in week 2 (1-27-2005)?",
    "question_th": "ใครคือผู้สมัครที่ถูกไล่ออก 10 คนในสัปดาห์ที่ 2 (27-1-2548)",
    "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_en": "What is the hometown of the candidate that had a result of 10 fired in week 6 (2-24-2005)?",
    "question_th": "บ้านเกิดของผู้สมัครที่มีผลการไล่ออก 10 คนในสัปดาห์ที่ 6 (2-24-2548) คืออะไร?",
    "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_en": "Which totals tournament has the lowest wins and top-25 less than 4?",
    "question_th": "ทัวร์นาเมนต์รวมใดที่ชนะน้อยที่สุดและ 25 อันดับแรกน้อยกว่า 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_en": "What is the average number of events of PGA Championship tournaments with a top-5 less than 0?",
    "question_th": "จำนวนเหตุการณ์โดยเฉลี่ยของทัวร์นาเมนต์ PGA Championship ที่มี 5 อันดับแรกน้อยกว่า 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_en": "Name the competition for stephanie cox on 2011-07-02",
    "question_th": "ตั้งชื่อการแข่งขันสำหรับ stephanie cox เมื่อวันที่ 02-07-2011",
    "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_en": "Name the lineup for washington dc",
    "question_th": "ตั้งชื่อรายชื่อผู้เล่นตัวจริงสำหรับวอชิงตัน ดี.ซี",
    "context": "CREATE TABLE table_name_21 (lineup VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_33 WHERE location = \"faro\"",
    "question_en": "Name the date for faro",
    "question_th": "ตั้งชื่อวันที่สำหรับฟาโร",
    "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_en": "What is the highest rank that has fao as a source and an out greater than 50, with dietary calorie intake as the name?",
    "question_th": "อันดับสูงสุดที่มี fao เป็นแหล่งและมากกว่า 50 โดยมีปริมาณแคลอรี่ในอาหารเป็นชื่อคืออะไร?",
    "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_en": "What is the average rank that has cia world factbook as the source and a year prior to 2005?",
    "question_th": "อันดับเฉลี่ยที่มี cia world factbook เป็นแหล่งที่มาและหนึ่งปีก่อนปี 2548 คือเท่าไร?",
    "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_en": "What were the least points with a Coloni FC88 chassis?",
    "question_th": "อะไรคือคะแนนน้อยที่สุดจากแชสซี Coloni FC88?",
    "context": "CREATE TABLE table_name_43 (points INTEGER, chassis VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_name_51 WHERE chassis = \"coloni c3\"",
    "question_en": "How many years was the chassis a Coloni C3?",
    "question_th": "แชสซีของ 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_en": "What was the most points for Coloni Spa?",
    "question_th": "อะไรคือคะแนนมากที่สุดสำหรับ 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_en": "Which team 1 had a team 2 of Asante Kotoko?",
    "question_th": "ทีมไหน 1 มีทีม 2 อาซันเต้ โคโตโกะ ?",
    "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_en": "Which team 1 had a team 2 of Hafia FC?",
    "question_th": "ทีมไหน 1 มีทีม 2 ฮาเฟีย เอฟซี ?",
    "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_en": "What was the aggregate for the match with a team 2 of Hafia FC?",
    "question_th": "ผลรวมแมตช์กับทีม 2 ฮาเฟีย เอฟซี เป็นอย่างไรบ้าง?",
    "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_en": "When was J.P. Viernes' last performance?",
    "question_th": "เจพี เวียร์เนส เล่นครั้งสุดท้ายเมื่อใด?",
    "context": "CREATE TABLE table_name_26 (last_performance VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT chinese_name FROM table_name_85 WHERE station_name = \"wudaokou\"",
    "question_en": "What's the Chinese name of the wudaokou station?",
    "question_th": "ชื่อภาษาจีนของสถานี wudaokou คืออะไร?",
    "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_en": "What's the transfer distance (km) larger than 36.5, at the station of guangximen?",
    "question_th": "ระยะทางเปลี่ยนรถ (กม.) ที่มากกว่า 36.5 ที่สถานีกวางซีเหมินคือเท่าใด?",
    "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 = \"上地 shàngdì\"",
    "question_en": "The Chinese Name of 上地 shàngdì belongs to what station?",
    "question_th": "ชื่อภาษาจีน 上地 shàngdì สังกัดสถานีใด",
    "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_en": "Name the runner-up for margin of victory of 3 strokes",
    "question_th": "ตั้งชื่อรองชนะเลิศเพื่อชัยชนะ 3 จังหวะ",
    "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_en": "Name the date with margin of victory of 1 stroke and tournament of legend financial group classic",
    "question_th": "ตั้งชื่อวันที่โดยมีส่วนต่างของชัยชนะ 1 จังหวะและทัวร์นาเมนต์ของกลุ่มการเงินระดับตำนานคลาสสิก",
    "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_en": "Name the runner-up for margin of victory of 1 stroke and tournament of legend financial group classic",
    "question_th": "ตั้งชื่อรองชนะเลิศสำหรับชัยชนะ 1 จังหวะและทัวร์นาเมนต์ของกลุ่มการเงินระดับตำนานคลาสสิก",
    "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_en": "Name the margin of victory for jonas blixt",
    "question_th": "ตั้งชื่อส่วนต่างของชัยชนะสำหรับ 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_en": "Which Party has a Office of majority floor leader",
    "question_th": "พรรคใดมีสำนักงานเสียงข้างมากเป็นหัวหน้าชั้น",
    "context": "CREATE TABLE table_name_46 (party VARCHAR, office VARCHAR)"
  },
  {
    "answer": "SELECT office FROM table_name_81 WHERE representative = \"scott pelath\"",
    "question_en": "Which Office has a Representative of scott pelath?",
    "question_th": "สำนักงานใดมีตัวแทนของ 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_en": "Which Office has a Party of rep, and a Representative of brian bosma?",
    "question_th": "สำนักงานใดมีพรรคผู้แทนและมีผู้แทนของไบรอัน บอสมา",
    "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_en": "Which Residence has a Party of dem, and a Representative of linda lawson?",
    "question_th": "ที่พักแห่งใดมีพรรคเดม และเป็นผู้แทนของลินดา ลอว์สัน",
    "context": "CREATE TABLE table_name_20 (residence VARCHAR, party VARCHAR, representative VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_name_61 WHERE representative = \"brian bosma\"",
    "question_en": "Which Party has a Representative of brian bosma?",
    "question_th": "พรรคใดมีผู้แทนของ 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†\"",
    "question_en": "Which Office has a Party of dem, and a First Elected of 1991†?",
    "question_th": "สำนักงานใดมีพรรคเดม และได้รับการเลือกตั้งครั้งแรกในปี 1991†",
    "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_en": "what college has paul seiler as a player?",
    "question_th": "วิทยาลัยใดมี paul seiler เป็นผู้เล่น?",
    "context": "CREATE TABLE table_name_22 (college VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(laps) FROM table_name_89 WHERE year = \"1955\"",
    "question_en": "How many laps were in 1955?",
    "question_th": "ปี 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_en": "What was the finish with less than 200 laps in 1953?",
    "question_th": "การจบสกอร์น้อยกว่า 200 รอบในปี 1953 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_85 (finish VARCHAR, laps VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_89 WHERE year = \"1955\"",
    "question_en": "What was the rank in 1955?",
    "question_th": "ในปี 1955 อยู่อันดับที่เท่าไร?",
    "context": "CREATE TABLE table_name_89 (rank VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT SUM(laps) FROM table_name_79 WHERE year = \"1954\"",
    "question_en": "What was the sum of laps in 1954?",
    "question_th": "ผลรวมของรอบในปี 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_en": "What rank had less than 200 laps with a finish of 26?",
    "question_th": "อันดับใดมีรอบน้อยกว่า 200 รอบโดยจบ 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_en": "What's the average wins of those games with 3 podiums?",
    "question_th": "ชัยชนะโดยเฉลี่ยของเกมเหล่านั้นที่มี 3 โพเดียมเป็นเท่าใด",
    "context": "CREATE TABLE table_name_42 (wins INTEGER, podiums VARCHAR)"
  },
  {
    "answer": "SELECT team_1 FROM table_name_65 WHERE team_2 = \"young africans\"",
    "question_en": "Who was team 1 when team 2 was Young Africans?",
    "question_th": "ใครคือทีม 1 ในเมื่อทีม 2 เป็น 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_en": "What was the 2nd leg score for Al-Merrikh as team 2?",
    "question_th": "คะแนนเลกที่ 2 ของอัล-เมอร์ริคในฐานะทีม 2 คืออะไร?",
    "context": "CREATE TABLE table_name_61 (team_2 VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_74 WHERE opponent = \"gisela dulko\"",
    "question_en": "What is the Date, when the Opponent is Gisela Dulko?",
    "question_th": "วันที่คือเมื่อฝ่ายตรงข้ามคือ 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_en": "What is the Tournament, when the Opponent is Patricia Mayr-Achleitner?",
    "question_th": "การแข่งขันคืออะไรเมื่อฝ่ายตรงข้ามคือ 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_en": "what is the result of the competition in 2006 world cup qualification?",
    "question_th": "ผลการแข่งขันฟุตบอลโลก 2006 รอบคัดเลือก เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_49 (result VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_78 WHERE heat = 2 AND lane = 3",
    "question_en": "What nation started in lane 3 of heat 2?",
    "question_th": "ชาติใดออกสตาร์ทในเลน 3 ของฮีต 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_en": "Which Tied has Matches of 1, and a Lost of 0, and a Team of durham?",
    "question_th": "ซึ่งเสมอกันมี 1 นัดและแพ้ 0 และทีมเดอร์แฮม?",
    "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_en": "Which Team has a Winner of 1?",
    "question_th": "ทีมใดมีผู้ชนะ 1?",
    "context": "CREATE TABLE table_name_6 (team VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT _percentage_won FROM table_name_12 WHERE team = \"durham\"",
    "question_en": "What is the % Won of Team of durham",
    "question_th": "% ชนะของทีม 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_en": "Which Match has the percentage won 52.38?",
    "question_th": "นัดไหนมีเปอร์เซ็นต์ชนะ 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_en": "How many points has more than 15 wins and less than 10 losses?",
    "question_th": "ชนะมากกว่า 15 ครั้งและแพ้น้อยกว่า 10 คะแนนมีกี่แต้ม?",
    "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_en": "What is the total goal difference with more than 38 played and more than 47 goals against?",
    "question_th": "อะไรคือผลต่างประตูรวมที่ลงเล่นมากกว่า 38 ประตูและเสียประตูมากกว่า 47 ประตู?",
    "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_en": "What is the average draws with more than 38 played?",
    "question_th": "ค่าเฉลี่ยเสมอเมื่อเล่นมากกว่า 38 ครั้งเป็นเท่าใด?",
    "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ín garcía\"",
    "question_en": "What is the name of the partner who played in the final against Lucas Arnold Ker Martín García?",
    "question_th": "คู่หูที่เล่นรอบชิงชนะเลิศกับลูคัส อาร์โนลด์ เคอร์ มาร์ติน การ์เซียชื่ออะไร",
    "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_en": "Who swam in a lane less than 6 and finished with a time of 2:11.02?",
    "question_th": "ใครว่ายในเลนน้อยกว่า 6 และจบด้วยเวลา 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_en": "What is the Film title used in nomination of Mig Og Charly?",
    "question_th": "ชื่อภาพยนตร์ที่ใช้ในการเสนอชื่อ 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_en": "Who is the Director that has a Film title of nick carter in prague?",
    "question_th": "ผู้กำกับที่มีชื่อภาพยนตร์ว่า นิค คาร์เตอร์ ในปราก คือใคร?",
    "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_en": "Which Language Director of nagisa oshima use in his film?",
    "question_th": "ผู้กำกับภาษาคนไหนของ nagisa oshima ใช้ในภาพยนตร์ของเขา?",
    "context": "CREATE TABLE table_name_54 (language VARCHAR, director VARCHAR)"
  },
  {
    "answer": "SELECT director FROM table_name_8 WHERE language = \"dutch\"",
    "question_en": "Who is the Director that speaks dutch?",
    "question_th": "ผู้อำนวยการที่พูดภาษาดัตช์คือใคร?",
    "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_en": "What is the Original name of empire of passion?",
    "question_th": "อาณาจักรแห่งความหลงใหลมีชื่อดั้งเดิมว่าอะไร?",
    "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_en": "Name the start date with party of pd",
    "question_th": "ตั้งชื่อวันที่เริ่มต้นด้วยปาร์ตี้ของ 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_en": "Name the minister for end date of 31 july 2004",
    "question_th": "เสนอชื่อรัฐมนตรี สิ้นสุดวันที่ 31 กรกฎาคม พ.ศ. 2547",
    "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_en": "Name the party with end date of 22 november 1980",
    "question_th": "ตั้งชื่อพรรคโดยสิ้นสุดวันที่ 22 พฤศจิกายน พ.ศ. 2523",
    "context": "CREATE TABLE table_name_2 (party VARCHAR, end_date VARCHAR)"
  },
  {
    "answer": "SELECT end_date FROM table_name_50 WHERE minister = \"robert goebbels\"",
    "question_en": "Name the end date for robert goebbels",
    "question_th": "ตั้งชื่อวันที่สิ้นสุดของ 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_en": "Name the start date with lsap and end date of present day",
    "question_th": "ตั้งชื่อวันที่เริ่มต้นด้วย lsap และวันที่สิ้นสุดของวันปัจจุบัน",
    "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_en": "What is the acceleration 1-100km/h when the name is 1.5 dci?",
    "question_th": "อัตราเร่ง 1-100 กม./ชม. ในชื่อ 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_en": "what is the power when the capacity is 898cc?",
    "question_th": "ความจุเป็น 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_en": "what is the capacity when the code is d4f bi-fuel 732?",
    "question_th": "รหัสคือ 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_en": "what is the power when the name is 1.2 16v lpg?",
    "question_th": "แรงเมื่อชื่อ 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_en": "what is the capacity when the name is 1.2 16v?",
    "question_th": "ตอนชื่อ 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_en": "what is the capacity when the acceleration 1-100km/h is 11.1 s?",
    "question_th": "อัตราเร่ง 1-100 กม./ชม. อยู่ที่ 11.1 วินาที จะมีความจุเท่าใด?",
    "context": "CREATE TABLE table_name_39 (capacity VARCHAR, acceleration_0_100km_h VARCHAR)"
  },
  {
    "answer": "SELECT director FROM table_name_50 WHERE year = 1957",
    "question_en": "Name the director for 1957",
    "question_th": "เสนอชื่อกรรมการ ประจำปี 2500",
    "context": "CREATE TABLE table_name_50 (director VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT director FROM table_name_47 WHERE title = \"transylvania 6-5000\"",
    "question_en": "Name the director who has title of transylvania 6-5000",
    "question_th": "ตั้งชื่อผู้กำกับที่มีตำแหน่ง 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_en": "Name the attendance for time of 1:31",
    "question_th": "แจ้งชื่อผู้เข้าร่วมประชุม เวลา 01.31 น",
    "context": "CREATE TABLE table_name_21 (attendance VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_20 WHERE time = \"1:36\"",
    "question_en": "Name the score for 1:36 time",
    "question_th": "ตั้งชื่อสกอร์ 1:36 เวลา",
    "context": "CREATE TABLE table_name_20 (score VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_92 WHERE date = \"october 9\"",
    "question_en": "Name the score for october 9",
    "question_th": "ตั้งชื่อคะแนนสำหรับวันที่ 9 ตุลาคม",
    "context": "CREATE TABLE table_name_92 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MIN(round) FROM table_name_83 WHERE overall = 91",
    "question_en": "What round did the overall pick of 91 occur in the 1982 NFL draft?",
    "question_th": "การเลือก 91 ทั้งหมดในรอบใดเกิดขึ้นในร่าง NFL ปี 1982?",
    "context": "CREATE TABLE table_name_83 (round INTEGER, overall VARCHAR)"
  },
  {
    "answer": "SELECT race_3 FROM table_name_4 WHERE round = \"round 5\"",
    "question_en": "What Race 3 is Round 5?",
    "question_th": "รอบที่ 3 คือรอบที่ 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_en": "What Round has the Track Clipsal 500 Support?",
    "question_th": "Track Clipsal 500 รองรับรอบใด",
    "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_en": "What Race 2 has a Race 1 of dnf, a Race 3 of dnf, and the Track Winton?",
    "question_th": "Race 2 ใดที่มี Race 1 เป็น dnf, Race 3 เป็น dnf และ 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_en": "What Round has the Track Winton?",
    "question_th": "สนามวินตันมีรอบไหน?",
    "context": "CREATE TABLE table_name_30 (round VARCHAR, track VARCHAR)"
  },
  {
    "answer": "SELECT race_2 FROM table_name_4 WHERE round = \"round 2\"",
    "question_en": "What is the Race 2 result of Round 2?",
    "question_th": "ผลการแข่งขันรอบที่ 2 ของรอบที่ 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_en": "What is the Race 1 result of Round 2?",
    "question_th": "ผลการแข่งขันรอบที่ 1 ของรอบที่ 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_en": "What is the average year with Nathan Robertson Gail Emms in mixed doubles?",
    "question_th": "ปีเฉลี่ยของ Nathan Robertson Gail Emms ในประเภทคู่ผสมคือเท่าไร?",
    "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_en": "Who is the player with a 76-67-71=214 score?",
    "question_th": "นักเตะคนไหนที่มีคะแนน 76-67-71=214?",
    "context": "CREATE TABLE table_name_59 (player VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_20 WHERE player = \"nick price\"",
    "question_en": "What is Nick Price's score?",
    "question_th": "คะแนนของ Nick Price คืออะไร?",
    "context": "CREATE TABLE table_name_20 (score VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_23 WHERE score = 69 - 74 - 71 = 214",
    "question_en": "What is the country of the player with a score of 69-74-71=214?",
    "question_th": "นักเตะประเทศไหนที่มีคะแนน 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_en": "What is the to par of Greg Norman?",
    "question_th": "อะไรคือความได้เปรียบของ 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_en": "What's the score for opponent @ Tigers on July 24?",
    "question_th": "คู่ต่อสู้ @เสือ 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_en": "What's the opponent for July 2?",
    "question_th": "คู่ต่อสู้ในวันที่ 2 กรกฎาคมคืออะไร?",
    "context": "CREATE TABLE table_name_12 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_80 WHERE chassis = \"surtees ts19\"",
    "question_en": "What's the year of the Chassis surtees ts19?",
    "question_th": "แชสซี Surtees ts19 ปีอะไร?",
    "context": "CREATE TABLE table_name_80 (year VARCHAR, chassis VARCHAR)"
  },
  {
    "answer": "SELECT MIN(points) FROM table_name_51 WHERE year > 1978",
    "question_en": "What are the lowest points past the year 1978?",
    "question_th": "จุดต่ำสุดในรอบปี 2521 คืออะไร?",
    "context": "CREATE TABLE table_name_51 (points INTEGER, year INTEGER)"
  },
  {
    "answer": "SELECT MAX(year) FROM table_name_33 WHERE chassis = \"ats hs1\"",
    "question_en": "What's the top year with the Chassis ats hs1?",
    "question_th": "ปีสูงสุดกับแชสซีที่ hs1 คือปีใด",
    "context": "CREATE TABLE table_name_33 (year INTEGER, chassis VARCHAR)"
  },
  {
    "answer": "SELECT local_time FROM table_name_46 WHERE date = \"september 1\"",
    "question_en": "What was the time on September 1?",
    "question_th": "วันที่ 1 กันยายน กี่โมง?",
    "context": "CREATE TABLE table_name_46 (local_time VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_25 WHERE date = \"september 5\"",
    "question_en": "Where was September 5?",
    "question_th": "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_en": "When the Winning score is 74-68-67-75=284, what was the Margin of victory?",
    "question_th": "เมื่อคะแนนชนะคือ 74-68-67-75=284 อัตรากำไรขั้นต้นของชัยชนะเป็นเท่าใด",
    "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_en": "When the Winning is 71-71-70-69=281, what is the To par?",
    "question_th": "เมื่อ Winning คือ 71-71-70-69=281 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_en": "When the Winning score is 68-65-65-68=266, what is the Margin of victory?",
    "question_th": "เมื่อคะแนน Winning คือ 68-65-65-68=266 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_en": "On what Date was the Winning score of 72-67-68-67=274?",
    "question_th": "คะแนน Winning 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_en": "What is the total number of 2nd place finishes for riders active in years 2009-2010 and more than 0 wins?",
    "question_th": "จำนวนการจบอันดับที่ 2 ของนักแข่งที่เข้าเส้นชัยในปี 2009-2010 ทั้งหมดเป็นเท่าใด และชนะมากกว่า 0 ครั้งเป็นเท่าใด",
    "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_en": "What is the total number of 3rd place finishes for racers with 0 titles?",
    "question_th": "จำนวนผู้เข้าเส้นชัยอันดับที่ 3 สำหรับผู้แข่ง 0 รายการคือเท่าไร?",
    "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_en": "What is the average number of 2nd place finishes for racers active in the year 2000 and more than 0 titles?",
    "question_th": "จำนวนผู้เข้าเส้นชัยอันดับ 2 โดยเฉลี่ยสำหรับนักแข่งที่เข้าแข่งขันในปี 2000 และมากกว่า 0 รายการคือเท่าใด",
    "context": "CREATE TABLE table_name_16 (years_active VARCHAR, titles VARCHAR)"
  },
  {
    "answer": "SELECT SUM(played) FROM table_name_67 WHERE team = \"c.d. luis ángel firpo\" AND place > 3",
    "question_en": "Name the sum of played for c.d. luis ángel firpo and place more than 3",
    "question_th": "ตั้งชื่อผลรวมของการเล่นของ cd luis ángel firpo และอันดับที่มากกว่า 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_en": "Name the total number of places which has played more than 18",
    "question_th": "ตั้งชื่อจำนวนสถานที่เล่นทั้งหมดมากกว่า 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_en": "Name the total number of lost when goals scored is less than 22 and goals conceded is more than 27",
    "question_th": "ตั้งชื่อจำนวนรวมที่เสียประตูเมื่อทำได้น้อยกว่า 22 ประตูและเสียประตูมากกว่า 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_en": "Name the average goals conceded with draw bigger than 7 and goals scored more than 24",
    "question_th": "ตั้งชื่อค่าเฉลี่ยประตูที่ยอมรับโดยเสมอมากกว่า 7 และประตูที่ทำได้มากกว่า 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_en": "Name the least goals scored with place more than 8 and lost less than 8",
    "question_th": "ระบุประตูที่ทำได้น้อยที่สุดโดยได้อันดับมากกว่า 8 และแพ้น้อยกว่า 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_en": "Where does Mount Chamberlin, located in Alaska, rank on the chart?",
    "question_th": "Mount Chamberlin ซึ่งตั้งอยู่ในอลาสกาอยู่ที่ไหนติดอันดับบนแผนภูมิ",
    "context": "CREATE TABLE table_name_37 (rank INTEGER, state VARCHAR, mountain_peak VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_20 WHERE rank = 36",
    "question_en": "What is the location of the mountain ranked at 36?",
    "question_th": "ตำแหน่งของภูเขาอันดับที่ 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_en": "Where does the Kuskokwim Mountains rank on the chart?",
    "question_th": "เทือกเขา Kuskokwim อยู่ในอันดับที่ใดในแผนภูมิ",
    "context": "CREATE TABLE table_name_5 (rank INTEGER, mountain_range VARCHAR)"
  },
  {
    "answer": "SELECT AVG(rank) FROM table_name_38 WHERE state = \"maine\"",
    "question_en": "What is the average rank of a mountain range located in Maine?",
    "question_th": "เทือกเขาที่ตั้งอยู่ในรัฐเมนมีอันดับเฉลี่ยอยู่ที่เท่าใด",
    "context": "CREATE TABLE table_name_38 (rank INTEGER, state VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(round) FROM table_name_82 WHERE player = \"matt roth\"",
    "question_en": "What round was matt roth drafted?",
    "question_th": "Matt Roth ถูกดราฟท์รอบไหน?",
    "context": "CREATE TABLE table_name_82 (round VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT nfl_club FROM table_name_35 WHERE pick > 196",
    "question_en": "What team did the player represent that was picked after 196?",
    "question_th": "ผู้เล่นเป็นตัวแทนของทีมใดที่ถูกเลือกหลังจากปี 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_en": "Name the position for european competitions of eurocup regular season",
    "question_th": "ตั้งชื่อตำแหน่งการแข่งขันยูโรคัพฤดูกาลปกติ",
    "context": "CREATE TABLE table_name_41 (pos VARCHAR, european_competitions VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_54 WHERE series = \"3-2\"",
    "question_en": "Who was the opponent with a series of 3-2?",
    "question_th": "คู่ต่อสู้ในซีรีส์ 3-2 คือใคร?",
    "context": "CREATE TABLE table_name_54 (opponent VARCHAR, series VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_79 WHERE series = \"1-0\"",
    "question_en": "Who was the opponent with a series of 1-0?",
    "question_th": "คู่ต่อสู้ที่มีซีรีส์ 1-0 คือใคร?",
    "context": "CREATE TABLE table_name_79 (opponent VARCHAR, series VARCHAR)"
  },
  {
    "answer": "SELECT division_record FROM table_name_93 WHERE school = \"delmar\"",
    "question_en": "For the Delmar school what is the division record?",
    "question_th": "สำหรับโรงเรียนเดลมาร์ บันทึกการแบ่งคืออะไร?",
    "context": "CREATE TABLE table_name_93 (division_record VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_16 WHERE team = \"blue raiders\"",
    "question_en": "What school does the Blue Raiders belong to?",
    "question_th": "Blue Raiders อยู่โรงเรียนอะไร?",
    "context": "CREATE TABLE table_name_16 (school VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_57 WHERE school = \"seaford\"",
    "question_en": "What team name belongs to Seaford?",
    "question_th": "ซีฟอร์ดชื่อทีมอะไร",
    "context": "CREATE TABLE table_name_57 (team VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT division_record FROM table_name_26 WHERE team = \"spartans\"",
    "question_en": "What division record did the Spartans hold?",
    "question_th": "ชาวสปาร์ตันมีสถิติการแบ่งส่วนใดบ้าง?",
    "context": "CREATE TABLE table_name_26 (division_record VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_38 WHERE team = \"wildcats\"",
    "question_en": "The wildcats belong to what school?",
    "question_th": "แมวป่าเป็นของโรงเรียนอะไร?",
    "context": "CREATE TABLE table_name_38 (school VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT SUM(murder) FROM table_name_44 WHERE year > 2011",
    "question_en": "How many total murders happened after 2011?",
    "question_th": "มีการฆาตกรรมเกิดขึ้นทั้งหมดกี่รายหลังจากปี 2554?",
    "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_en": "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?",
    "question_th": "การโจรกรรมโดยเฉลี่ยใดมีเกณฑ์ดังต่อไปนี้: อาชญากรรมที่ไม่รุนแรงน้อยกว่า 1,147, ข่มขืนน้อยกว่า 11, ทำร้ายร่างกายรุนแรงมากกว่า 167 และดัชนีอาชญากรรมรวม 1,313",
    "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_en": "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?",
    "question_th": "การทำร้ายร่างกายแบบรุนแรงใดมีจำนวนสูงสุดและเป็นไปตามเกณฑ์ต่อไปนี้ อัตราอาชญากรรมต่อ 1,000 มากกว่า 89.1 มูลค่าการข่มขืน 23 และดัชนีอาชญากรรมมากกว่า 1,590",
    "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_en": "When did sony music direct a label?",
    "question_th": "Sony Music ได้กำกับค่ายเพลงเมื่อใด",
    "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_en": "What record had an alca-271 cd?",
    "question_th": "บันทึกใดมีซีดี alca-271",
    "context": "CREATE TABLE table_name_88 (region VARCHAR, format VARCHAR, catalog VARCHAR)"
  },
  {
    "answer": "SELECT format FROM table_name_10 WHERE catalog = \"alca-9196\"",
    "question_en": "What formated cataloged alca-9196?",
    "question_th": "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_en": "Which Podium has 1 Race and a Final Place of 5th?",
    "question_th": "โพเดียมใดมี 1 การแข่งขันและเข้ารอบสุดท้ายอันดับที่ 5?",
    "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_en": "Which Season has a Final Place of 8th and 8 Podiums?",
    "question_th": "ฤดูกาลใดมีอันดับที่ 8 และ 8 โพเดียมสุดท้าย?",
    "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_en": "Which Season has 0 Podiums, 1 Race, and 0 Points?",
    "question_th": "ฤดูกาลใดมี 0 โพเดียม 1 การแข่งขัน และ 0 แต้ม?",
    "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_en": "Which Season has 95 Points?",
    "question_th": "ฤดูกาลใดมี 95 แต้ม?",
    "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_en": "Which Race has the Toyota Racing Series New Zealand and 0 wins?",
    "question_th": "การแข่งขันรายการใดมี Toyota Racing Series New Zealand และชนะ 0 รายการ?",
    "context": "CREATE TABLE table_name_99 (races VARCHAR, series VARCHAR, wins VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_77 WHERE final_placing = \"19th\"",
    "question_en": "Which Season has a 19th Final Place?",
    "question_th": "ฤดูกาลใดมีอันดับที่ 19 ในรอบชิงชนะเลิศ?",
    "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_en": "What is the largest frequency owned by multicultural broadcasting with a Format of vietnamese?",
    "question_th": "ความถี่ที่ใหญ่ที่สุดของการแพร่ภาพกระจายเสียงหลากหลายวัฒนธรรมในรูปแบบภาษาเวียดนามคืออะไร?",
    "context": "CREATE TABLE table_name_40 (frequency INTEGER, status VARCHAR, format VARCHAR)"
  },
  {
    "answer": "SELECT format FROM table_name_28 WHERE station = \"klok\"",
    "question_en": "Which format has a Station of klok?",
    "question_th": "รูปแบบไหนมี Station ของ 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_en": "Which format has a Frequency larger than 1050, and a Station of kvto?",
    "question_th": "รูปแบบใดมีความถี่มากกว่า 1,050 และสถานี 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_en": "What is the total frequency have a Status of owned by cumulus media, and a Format of news?",
    "question_th": "ความถี่ทั้งหมดที่มีสถานะเป็นของสื่อคิวมูลัสและรูปแบบข่าวคือเท่าใด",
    "context": "CREATE TABLE table_name_66 (frequency INTEGER, status VARCHAR, format VARCHAR)"
  },
  {
    "answer": "SELECT format FROM table_name_80 WHERE station = \"kcbs\"",
    "question_en": "Which format has a Station of kcbs?",
    "question_th": "รูปแบบใดมี Station ของ kcbs?",
    "context": "CREATE TABLE table_name_80 (format VARCHAR, station VARCHAR)"
  },
  {
    "answer": "SELECT MIN(fa_cup) FROM table_name_69 WHERE total > 46",
    "question_en": "Who has the lowest FA cup and has a total over 46?",
    "question_th": "ใครได้เอฟเอคัพต่ำสุดและมีคะแนนรวมเกิน 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_en": "What is the sum of the League Cup smaller than 0?",
    "question_th": "ผลรวมของลีกคัพน้อยกว่า 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_en": "What is the average of all Heats of competitors with a Time of 59.11 and a lane higher than 3?",
    "question_th": "ค่าเฉลี่ยของฮีตทั้งหมดของผู้แข่งขันด้วยเวลา 59.11 และเลนสูงกว่า 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_en": "What is the highest Lane used by a racer from Malta?",
    "question_th": "เลนที่สูงที่สุดที่นักแข่งจากมอลตาใช้คืออะไร?",
    "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_en": "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?",
    "question_th": "นักแข่งที่มีฮีตสูงกว่า 2 และเลนน้อยกว่า 5 ชื่ออะไร ด้วยเวลา 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_en": "How many wins did he have when he made over 2 cuts and had under 2 top 10s?",
    "question_th": "เขาได้รับชัยชนะกี่ครั้งเมื่อเขาตัดมากกว่า 2 ครั้งและติดท็อป 10 ต่ำกว่า 2 ครั้ง",
    "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_en": "Who was the opponent of the game that 31,293 people attended that had a final score of 9 - 6.",
    "question_th": "ซึ่งเป็นคู่ต่อสู้ของเกมที่มีผู้ชม 31,293 คน และสกอร์สุดท้ายอยู่ที่ 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_en": "How many people attended the game against athletics with the record of 9-12?",
    "question_th": "มีกี่คนที่เข้าร่วมการแข่งขันกรีฑาด้วยสถิติ 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_en": "How many people went to the game with the record of 8-10?",
    "question_th": "มีคนไปเล่นเกมด้วยสถิติ 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_en": "which entrant after 1987 had 12 points and a benetton b188 chassis?",
    "question_th": "ผู้เข้าแข่งขันคนใดหลังจากปี 1987 มี 12 คะแนนและแชสซี benetton b188",
    "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_en": "what's the earliest year that there was a cosworth v8 engine and 12 points?",
    "question_th": "ปีแรกสุดที่มีเครื่อง cosworth v8 และ 12 แต้มคือปีไหน?",
    "context": "CREATE TABLE table_name_39 (year INTEGER, engine VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT chassis FROM table_name_31 WHERE year < 1988",
    "question_en": "which chassis were in use prior to 1988?",
    "question_th": "แชสซีใดที่ใช้ก่อนปี 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_en": "Who was from Great Britain in lane 5?",
    "question_th": "ใครมาจากบริเตนใหญ่ในเลน 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_en": "How many people were in attendance at week 16?",
    "question_th": "สัปดาห์ที่ 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_en": "What entrant had a chassis of Maserati 250f in 1954?",
    "question_th": "ผู้เข้าแข่งขันคนใดมีแชสซีของ Maserati 250f ในปี 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_en": "What is the highest number of points before 1954?",
    "question_th": "จำนวนคะแนนสูงสุดก่อนปี 2497 คือเท่าใด",
    "context": "CREATE TABLE table_name_5 (points INTEGER, year INTEGER)"
  },
  {
    "answer": "SELECT MIN(decile) FROM table_name_10 WHERE name = \"ohau school\"",
    "question_en": "What is the lowest decile that Ohau School has?",
    "question_th": "Decile ต่ำสุดที่โรงเรียน Ohau มีคือเท่าไร?",
    "context": "CREATE TABLE table_name_10 (decile INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT gender FROM table_name_69 WHERE decile = 6 AND roll < 179",
    "question_en": "What gender is allowed to attend the school that has a decile of 6 and a roll that is less than 179?",
    "question_th": "เพศใดที่ได้รับอนุญาตให้เข้าเรียนในโรงเรียนที่มีเดซิล 6 และม้วนที่น้อยกว่า 179",
    "context": "CREATE TABLE table_name_69 (gender VARCHAR, decile VARCHAR, roll VARCHAR)"
  },
  {
    "answer": "SELECT gender FROM table_name_9 WHERE roll = 338",
    "question_en": "What gender is allowed at the school which has a roll of 338?",
    "question_th": "โรงเรียนอนุญาตเพศใดที่มีจำนวน 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_en": "What authority controls the school in Levin that has a decile of 6, and a roll of 226?",
    "question_th": "หน่วยงานใดควบคุมโรงเรียนในเลวินที่มีเดซิล 6 และม้วน 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_en": "What Function (figure) has Serial number AF 934103?",
    "question_th": "ฟังก์ชัน (รูป) ใดมีหมายเลขซีเรียล 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_en": "What is Moondancer's Primary Military Speciality?",
    "question_th": "ความเชี่ยวชาญทางทหารเบื้องต้นของ Moondancer คืออะไร?",
    "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_en": "With a Primary military speciality of astral assault tactics, what is the Secondary military speciality?",
    "question_th": "ด้วยความพิเศษทางทหารขั้นต้นของยุทธวิธีโจมตีดาว ความเชี่ยวชาญพิเศษทางทหารรองคืออะไร?",
    "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_en": "What is the Serial number for the Space Security Trooper Function (figure)?",
    "question_th": "หมายเลขซีเรียลของฟังก์ชัน Space Security Trooper (รูป) คืออะไร?",
    "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_en": "What is the Code Name for the Space Pilot Function (figure)?",
    "question_th": "ชื่อรหัสสำหรับฟังก์ชั่นนักบินอวกาศ (รูป) คืออะไร?",
    "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_en": "What Birthplace's Real Name is Charles 'Chuck' Connors?",
    "question_th": "ชื่อจริงของสถานที่เกิดคือ 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_en": "Who is the home team of the game on December 21?",
    "question_th": "เจ้าบ้านในเกมวันที่ 21 ธันวาคมคือใคร?",
    "context": "CREATE TABLE table_name_53 (home VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_48 WHERE date = \"march 7\"",
    "question_en": "Who is the visitor of the game on March 7?",
    "question_th": "ใครคือผู้มาเยือนเกมในวันที่ 7 มีนาคม?",
    "context": "CREATE TABLE table_name_48 (visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(year) FROM table_name_28 WHERE points = 3",
    "question_en": "Which is the highest year that has 3 points?",
    "question_th": "ปีไหนมี 3 แต้มสูงสุด?",
    "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_en": "Which engine has more than 0 points and a year before 1984?",
    "question_th": "เครื่องยนต์ไหนมีมากกว่า 0 คะแนน และหนึ่งปีก่อนปี 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_en": "Name the game site for october 18, 1992",
    "question_th": "ตั้งชื่อเว็บไซต์เกมสำหรับวันที่ 18 ตุลาคม พ.ศ. 2535",
    "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_en": "Name the game site for october 4, 1992",
    "question_th": "ตั้งชื่อเว็บไซต์เกมสำหรับวันที่ 4 ตุลาคม พ.ศ. 2535",
    "context": "CREATE TABLE table_name_40 (game_site VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_15 WHERE opponent = \"bye\"",
    "question_en": "Name the date when bye was opponent",
    "question_th": "ตั้งชื่อวันที่ลาก่อนเป็นคู่ต่อสู้",
    "context": "CREATE TABLE table_name_15 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_24 WHERE date = \"july 16\"",
    "question_en": "Name the attendance for july 16",
    "question_th": "ตั้งชื่อการเข้าร่วมสำหรับวันที่ 16 กรกฎาคม",
    "context": "CREATE TABLE table_name_24 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_54 WHERE record = \"48-37\"",
    "question_en": "Name the loss for 48-37",
    "question_th": "ตั้งชื่อแพ้ 48-37",
    "context": "CREATE TABLE table_name_54 (loss VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_61 WHERE score = \"9-4\"",
    "question_en": "Name the record for 9-4 score",
    "question_th": "ตั้งชื่อสถิติสกอร์ 9-4",
    "context": "CREATE TABLE table_name_61 (record VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT MIN(attendance) FROM table_name_53 WHERE record = \"52-37\"",
    "question_en": "Name the least attendance for 52-37 record",
    "question_th": "ตั้งชื่อผู้เข้าร่วมน้อยที่สุดสำหรับสถิติ 52-37",
    "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_en": "What Away team has the Golden point(s) scorer Trent Hodkinson and the Home of Manly-Warringah Sea Eagles?",
    "question_th": "ทีมเยือนทีมใดมีคะแนนทองคำ เทรนท์ ฮอดกินสัน และทีมเหย้าของแมนลี่-วาร์ริงกาห์ ซี อีเกิลส์",
    "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_en": "What is the Score of Golden Point(s) scorer Adam Reynolds?",
    "question_th": "อดัม เรย์โนลด์ส ผู้ทำประตูโกลเด้นพอยต์มีคะแนนเท่าใด",
    "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_en": "What Golden point(s) has the Venue Allianz Stadium?",
    "question_th": "Golden point ใดที่มีสถานที่จัดงานที่สนาม 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_en": "What Golden point(s) scorer has the Away Sydney Roosters and Home Cronulla Sharks?",
    "question_th": "ผู้ทำคะแนนทองคำคนใดที่มีทีมเยือน ซิดนีย์ รูสเตอร์ส และ ทีมเหย้า โครนัลลา ชาร์คส์?",
    "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_en": "What Golden point(s) scorer has the Away Brisbane Broncos and Home South Sydney Rabbitohs?",
    "question_th": "ผู้ทำคะแนนทองคำคนใดคือทีมเยือน บริสเบน บรองโกส์ และ โฮม เซาธ์ ซิดนีย์ แรบบิโทส์?",
    "context": "CREATE TABLE table_name_14 (golden_point_s__scorer VARCHAR, away VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT revenues FROM table_name_15 WHERE name = \"ōoka tadayoshi (2nd) (大岡忠愛)\"",
    "question_en": "What are the revenues for ōoka tadayoshi (2nd) (大岡忠愛)?",
    "question_th": "ōoka tadayoshi (2nd) (大岡忠愛) มีรายได้เท่าไหร่?",
    "context": "CREATE TABLE table_name_15 (revenues VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT lineage FROM table_name_15 WHERE name = \"ōoka tadatomo (大岡忠與)\"",
    "question_en": "What's the lineage of ōoka tadatomo (大岡忠與)?",
    "question_th": "โอโอกะ ทาดาโทโมะ (大岡忠與) มีเชื้อสายมาจากอะไร?",
    "context": "CREATE TABLE table_name_15 (lineage VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT tenure FROM table_name_14 WHERE lineage = \"3rd son of tadatsune\"",
    "question_en": "What's the tenure of 3rd son of tadatsune?",
    "question_th": "ลูกชายคนที่ 3 ของทาดัทสึเนะอยู่ในตำแหน่งอะไร?",
    "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_en": "What's the court ranking of 5th son of tadayori and has revenues of 10,000 koku?",
    "question_th": "อันดับศาลลูกชายคนที่ 5 ของทาดาโยริและมีรายได้ 10,000 โคคุ?",
    "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 ōoka tadataka\"",
    "question_en": "What's the courtesy title of 4th son of hatamoto ōoka tadataka?",
    "question_th": "บุตรชายคนที่ 4 ของฮาตะโมโตะ โอโอกะ ทาดาทากะ มีตำแหน่งตามอัธยาศัยอย่างไร?",
    "context": "CREATE TABLE table_name_36 (courtesy_title VARCHAR, lineage VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_87 WHERE name = \"pieter de korver\"",
    "question_en": "What was the rank of the event won by Pieter de Korver?",
    "question_th": "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_en": "Which event had a prize of $2,434,061?",
    "question_th": "งานใดมีเงินรางวัล 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_en": "What was the prize won by Sebastian Ruthenberg?",
    "question_th": "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_en": "Who won the event with a top prize of $2,434,061?",
    "question_th": "ใครเป็นผู้ชนะงานนี้ด้วยเงินรางวัลสูงสุด 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_en": "The rider mike di meglio had a total of how many grids?",
    "question_th": "นักบิด mike di meglio มีกริดทั้งหมดกี่กริด?",
    "context": "CREATE TABLE table_name_71 (grid VARCHAR, rider VARCHAR)"
  },
  {
    "answer": "SELECT n117_2400_iec3 FROM table_name_10 WHERE n100_iec3 = \"25\"",
    "question_en": "What is the N117/2400 IEC3 associated with an N100IEC3 of 25?",
    "question_th": "N117/2400 IEC3 เกี่ยวข้องกับ N100IEC3 ของ 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_en": "What is the Name of the Special Stage with a 2.40km length and S. Loeb as Winner?",
    "question_th": "สนามพิเศษระยะทาง 2.40 กม. และ S. Loeb เป็นผู้ชนะชื่ออะไร",
    "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_en": "In the 21.40km Santa Rosa 1 Stage, what was the Time?",
    "question_th": "ในการแข่งขัน Santa Rosa 1 ระยะทาง 21.40 กม. กี่โมง?",
    "context": "CREATE TABLE table_name_38 (time VARCHAR, length VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_54 WHERE stage = \"ss5\"",
    "question_en": "What was the Winner of the SS5 Stage?",
    "question_th": "ผู้ชนะของ 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_en": "What was the Time in the Mina Clavero 2 Stage?",
    "question_th": "เวลาในเวที Mina Clavero 2 คืออะไร?",
    "context": "CREATE TABLE table_name_74 (time VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_86 WHERE stage = \"ss2\"",
    "question_en": "What was Stage SS2's Winner?",
    "question_th": "ผู้ชนะของ Stage SS2 คืออะไร?",
    "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_en": "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?",
    "question_th": "Music City Mystique ได้เหรียญทองแดงน้อยที่สุด โดยได้เหรียญทองมากกว่า 3 เหรียญและได้เหรียญทั้งหมดน้อยกว่า 15 เหรียญคือเท่าใด",
    "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_en": "When the Mandarins won more than 1 bronze medals, how many gold medals did they win?",
    "question_th": "เมื่อชาวแมนดารินได้เหรียญทองแดงมากกว่า 1 เหรียญ พวกเขาได้เหรียญทองทั้งหมดกี่เหรียญ?",
    "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–8\" AND name = \"dorie school\" AND decile > 9",
    "question_en": "What is the largest roll with Years 1–8, a Name of dorie school, and a Decile larger than 9?",
    "question_th": "ม้วนที่ใหญ่ที่สุดในช่วงปี 1-8 ชื่อโรงเรียน dorie และ Decile ที่มากกว่า 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–8\" AND roll = 49",
    "question_en": "How many deciles have Years of 1–8, and a Roll of 49?",
    "question_th": "กี่เดซิลิตรที่มีปีที่ 1–8 และม้วนที่ 49",
    "context": "CREATE TABLE table_name_95 (decile VARCHAR, years VARCHAR, roll VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_20 WHERE years = \"1–8\" AND decile = 9 AND roll < 141",
    "question_en": "Which name has Years of 1–8, a Decile of 9, and a Roll smaller than 141?",
    "question_th": "ชื่อใดที่มีปีที่ 1–8, Decile ที่ 9 และ Roll ที่เล็กกว่า 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–8\" AND authority = \"state\" AND roll = 141",
    "question_en": "What is the largest Decile with Years of 1–8, anAuthority of state, and a Roll of 141?",
    "question_th": "Decile ที่ใหญ่ที่สุดที่มีปี 1–8, ผู้มีอำนาจของรัฐ และม้วน 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_en": "How many deciles have an Authority of state and a Name of chertsey school?",
    "question_th": "มีกี่ deciles ที่มีหน่วยงานของรัฐและชื่อของโรงเรียน chertsey?",
    "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_en": "Bldr of mcw&f, and a Year smaller than 1927, and a LT Nos of 9820-9821 has what type?",
    "question_th": "อาคาร mcw&f และหนึ่งปีที่เล็กกว่าปี 1927 และ LT Nos 9820-9821 เป็นประเภทใด",
    "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_en": "What were the total number of sales for the song 21 Seconds?",
    "question_th": "ยอดขายรวมของเพลง 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_en": "Which Reigns has 92 days held?",
    "question_th": "รัชกาลใดมี 92 วัน?",
    "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_en": "What successful defenses has 126 days held and a Reigns of 3?",
    "question_th": "การป้องกันที่ประสบความสำเร็จมี 126 วันและการครองราชย์ 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_en": "Which event has Philadelphia, PA as the location and 41 days held?",
    "question_th": "งานใดที่มีเมืองฟิลาเดลเฟีย เพนซิลเวเนีย เป็นสถานที่จัดงานและมีการจัด 41 วัน?",
    "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_en": "Who was number 3 that had a number 2 of Delfina and a Final of Pedro?",
    "question_th": "ใครคือหมายเลข 3 ที่มีหมายเลข 2 ของเดลฟิน่าและรอบชิงชนะเลิศของเปโดร?",
    "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_en": "Who was number 9 that had a number 7 of Joana and a Final of Pedro?",
    "question_th": "ใครคือหมายเลข 9 ที่มี Joana หมายเลข 7 และรอบชิงชนะเลิศของ 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_en": "Which days were presented by Andreas Mikroutsikos and were launched on March 10, 2003?",
    "question_th": "Andreas Mikroutsikos นำเสนอวันใดและเปิดตัวในวันที่ 10 มีนาคม พ.ศ. 2546",
    "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_en": "Who won when the presenter was Tatiana Stefanidou?",
    "question_th": "ใครชนะเมื่อผู้นำเสนอคือ 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_en": "What was the prize when the show was aired on Ant1, was presented by Andreas Mikroutsikos, and was launched on March 10, 2003?",
    "question_th": "รางวัลอะไรเมื่อรายการออกอากาศทาง Ant1 นำเสนอโดย Andreas Mikroutsikos และเปิดตัวเมื่อวันที่ 10 มีนาคม พ.ศ. 2546",
    "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_en": "Name the sum of gold when Bronze is less than 0",
    "question_th": "ตั้งชื่อผลรวมของทองคำเมื่อทองแดงมีค่าน้อยกว่า 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_en": "Name the nation when bronze is less than 4 and the total is more than 4",
    "question_th": "ตั้งชื่อชาติเมื่อบรอนซ์น้อยกว่า 4 และรวมมากกว่า 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_en": "What positions are in the Chicago bulls?",
    "question_th": "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_en": "What season did a United States center play in?",
    "question_th": "เซนเตอร์สหรัฐเล่นในฤดูกาลใด?",
    "context": "CREATE TABLE table_name_46 (season VARCHAR, nationality VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT film FROM table_name_30 WHERE year = 1983",
    "question_en": "Which film was released in 1983?",
    "question_th": "ภาพยนตร์เรื่องใดออกฉายในปี 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_en": "What was the US Peak position of the film that peaked at #21 in the UK?",
    "question_th": "ตำแหน่ง US Peak ของภาพยนตร์เรื่องนี้ซึ่งครองอันดับที่ 21 ในสหราชอาณาจักรคืออะไร?",
    "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_en": "Who was the score composer of the film released in 1967?",
    "question_th": "ใครคือผู้แต่งดนตรีประกอบภาพยนตร์ที่ออกฉายในปี 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_en": "How many years had a film that peaked at #10 in the UK?",
    "question_th": "กี่ปีมาแล้วที่หนังขึ้นอันดับ 10 ในสหราชอาณาจักร?",
    "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_en": "what category is for tom shankland, director?",
    "question_th": "ทอม แชงค์แลนด์ ผู้กำกับอยู่ในหมวดหมู่ไหน",
    "context": "CREATE TABLE table_name_56 (category VARCHAR, director_s_ VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(transfer_fee___) AS €_million_ FROM table_name_13 WHERE player = \"afonso alves\" AND year > 2008",
    "question_en": "How many transfer fees did Afonso Alves have after 2008?",
    "question_th": "อาฟอนโซ่ อัลเวส มีค่าธรรมเนียมการโอนเท่าไรหลังปี 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_en": "Where was the film about the garden of the finzi-continis made?",
    "question_th": "ภาพยนตร์เกี่ยวกับสวนของ finzi-continis สร้างขึ้นที่ไหน?",
    "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_en": "Which film was translated from portuguese?",
    "question_th": "ภาพยนตร์เรื่องใดแปลมาจากภาษาโปรตุเกส",
    "context": "CREATE TABLE table_name_44 (original_name VARCHAR, language VARCHAR)"
  },
  {
    "answer": "SELECT original_name FROM table_name_27 WHERE country = \"france\"",
    "question_en": "Which film originated in France?",
    "question_th": "ภาพยนตร์เรื่องใดมีต้นกำเนิดในประเทศฝรั่งเศส",
    "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_en": "What is the real name of the movie about love?",
    "question_th": "หนังเกี่ยวกับความรักชื่อจริงว่าอะไร?",
    "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_en": "What is the real name of the movie directed by gert fredholm?",
    "question_th": "หนังที่กำกับโดยเกิร์ต เฟรดโฮล์มชื่อจริงชื่ออะไร",
    "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_en": "Which movie originated in Bulgaria?",
    "question_th": "ภาพยนตร์เรื่องใดมีต้นกำเนิดในประเทศบัลแกเรีย",
    "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_en": "Who was the opponent at the game that had a loss of Stieb (5-7)?",
    "question_th": "คู่ต่อสู้ในเกมที่แพ้สตีบ (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_en": "What was the loss of the game against the Angels with a 26-30 record?",
    "question_th": "แพ้เกมกับเดอะแองเจิ้ลส์ด้วยสถิติ 26-30 บ้าง?",
    "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_en": "What is the most points earlier than 1953 with a Ferrari 375/50 chassis?",
    "question_th": "อะไรคือคะแนนสูงสุดก่อนปี 1953 ด้วยแชสซีของ Ferrari 375/50?",
    "context": "CREATE TABLE table_name_22 (points INTEGER, year VARCHAR, chassis VARCHAR)"
  },
  {
    "answer": "SELECT MAX(year) FROM table_name_13 WHERE points > 0",
    "question_en": "What is the latest year with more than 0 points?",
    "question_th": "ล่าสุดปีไหนมากกว่า 0 คะแนน?",
    "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_en": "What year were there less than 1.5 points and an Entrant of escuderia bandeirantes, and a maserati straight-4 engine?",
    "question_th": "ปีใดที่มีคะแนนน้อยกว่า 1.5 และผู้เข้าร่วม escuderia bandeirantes และเครื่องยนต์ maserati ตรง 4?",
    "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_en": "What is the number of points for the Entrant of escuderia bandeirantes earlier than 1952?",
    "question_th": "ผู้เข้าร่วม escuderia bandeirantes ก่อนปี 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_en": "What was the double's performance data from the Canada Masters tournament in 2008?",
    "question_th": "ข้อมูลประสิทธิภาพของดับเบิ้ลจากการแข่งขัน Canada Masters ในปี 2008 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_5 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2007 FROM table_name_54 WHERE tournament = \"monte carlo masters\"",
    "question_en": "What was the double's performance data from the Monte Carlo Masters tournament in 2007?",
    "question_th": "ข้อมูลประสิทธิภาพของดับเบิ้ลจากการแข่งขัน Monte Carlo Masters ในปี 2550 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_54 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT MIN(population__2004_) FROM table_name_8 WHERE households = 5158",
    "question_en": "What is the lowest 2004 population when there were 5158 households?",
    "question_th": "ประชากรต่ำสุดในปี 2547 มีจำนวน 5,158 ครัวเรือนคือเท่าใด",
    "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_en": "What is the number for the Moroccan population when the name is Sebt Saiss and the 2004 population is more than 11212?",
    "question_th": "ตัวเลขของประชากรโมร็อกโกเมื่อชื่อ Sebt Saiss และประชากรในปี 2547 มากกว่า 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_en": "What is the largest foreign population when the 2004 population is 7641?",
    "question_th": "ประชากรต่างประเทศที่ใหญ่ที่สุดคือเท่าใดเมื่อประชากรปี 2547 มีจำนวน 7,641 คน",
    "context": "CREATE TABLE table_name_83 (foreign_population INTEGER, population__2004_ VARCHAR)"
  },
  {
    "answer": "SELECT MAX(year) FROM table_name_85 WHERE points < 0",
    "question_en": "What is the highest year that has no more than 0 points?",
    "question_th": "ปีใดสูงสุดที่ได้ไม่เกิน 0 คะแนน คือปีใด",
    "context": "CREATE TABLE table_name_85 (year INTEGER, points INTEGER)"
  },
  {
    "answer": "SELECT chassis FROM table_name_60 WHERE points = 7",
    "question_en": "Which of the chassis had a total of 7 points?",
    "question_th": "แชสซีตัวไหนมีคะแนนรวม 7 แต้ม?",
    "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_en": "What was the latest year that a Bardahl entrant had a Kurtis Kraft 500c chassis with no more than 0 points?",
    "question_th": "ปีล่าสุดที่ผู้เข้าร่วม Bardahl มีแชสซี Kurtis Kraft 500c โดยมีคะแนนไม่เกิน 0 คืออะไร",
    "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_en": "What was the average points for Hopkins before 1956?",
    "question_th": "คะแนนเฉลี่ยของฮอปกินส์ก่อนปี 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_en": "What is the least amount of points the entrant Simoniz received before 1960?",
    "question_th": "ซิโมนิซผู้เข้าแข่งขันได้รับคะแนนน้อยที่สุดก่อนปี 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ønlykke and sven grønlykke\"",
    "question_en": "What was the original title of the film directed by Lene Grønlykke and Sven Grønlykke?",
    "question_th": "ชื่อดั้งเดิมของภาพยนตร์ที่กำกับโดย Lene Grønlykke และ Sven Grønlykke คืออะไร",
    "context": "CREATE TABLE table_name_72 (original_title VARCHAR, director VARCHAR)"
  },
  {
    "answer": "SELECT language FROM table_name_27 WHERE director = \"federico fellini\"",
    "question_en": "What is the language of the film directed by Federico Fellini?",
    "question_th": "ภาพยนตร์ที่กำกับโดย 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_en": "What is the film title used in nomination for the film from South Korea?",
    "question_th": "ชื่อภาพยนตร์ที่ใช้ในการเสนอชื่อเข้าชิงภาพยนตร์เรื่องนี้จากเกาหลีใต้คืออะไร?",
    "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_en": "What was the film title used in nomination for the film directed by Gheorghe Vitanidis?",
    "question_th": "ชื่อภาพยนตร์ที่ใช้ในการเสนอชื่อเข้าชิงภาพยนตร์ที่กำกับโดย 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_en": "When did the film 'Monsters' come out?",
    "question_th": "ภาพยนตร์เรื่อง 'Monsters' เข้าฉายเมื่อไหร่?",
    "context": "CREATE TABLE table_name_96 (date VARCHAR, film VARCHAR)"
  },
  {
    "answer": "SELECT recipient FROM table_name_78 WHERE date = \"12/11/03\"",
    "question_en": "What movie won with a date of 12/11/03",
    "question_th": "หนังเรื่องไหนชนะวันที่ 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_en": "Who was the producer for the film 'Strange Little Girls'?",
    "question_th": "ใครเป็นผู้อำนวยการสร้างภาพยนตร์เรื่อง '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_en": "Which writer worked for Intrepido LTD for a film on 17/03/04?",
    "question_th": "นักเขียนคนไหนทำงานให้กับ Intrepido LTD สำหรับภาพยนตร์เมื่อวันที่ 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_en": "Which producer worked for Animus Films LTD?",
    "question_th": "โปรดิวเซอร์คนไหนทำงานให้กับ 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_en": "How many people attended the game against the Mariners with a score of 9-6?",
    "question_th": "มีกี่คนที่เข้าร่วมเกมกับกะลาสีเรือด้วยคะแนน 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_en": "What is the loss for the record of 42-36?",
    "question_th": "สถิติแพ้ 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_en": "What date was the score 5-2 with a loss of sele (3-2)?",
    "question_th": "สกอร์ 5-2 แพ้ เซเล่ (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_en": "What is the loss when the record is 38-33?",
    "question_th": "เมื่อสถิติเป็น 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_en": "What was the pick number of Conor Jackson?",
    "question_th": "Conor Jackson เลือกหมายเลขอะไร",
    "context": "CREATE TABLE table_name_72 (pick INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_36 WHERE pick = 29",
    "question_en": "What school had the draft pick of 29?",
    "question_th": "โรงเรียนใดมีร่างเลือก 29?",
    "context": "CREATE TABLE table_name_36 (school VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_75 WHERE player = \"conor jackson\"",
    "question_en": "What school did Conor Jackson attend?",
    "question_th": "Conor Jackson เข้าเรียนที่โรงเรียนใด",
    "context": "CREATE TABLE table_name_75 (school VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT 2007 FROM table_name_68 WHERE 2008 = \"q1\"",
    "question_en": "What is the value for 2007 when 2008 is Q1?",
    "question_th": "ค่าสำหรับปี 2550 เมื่อปี 2551 เป็นไตรมาสที่ 1 จะเป็นเท่าใด",
    "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_en": "What is the win-loss when 2008 has a value of Q1 at Australian Open?",
    "question_th": "win-loss คืออะไรเมื่อปี 2008 มีมูลค่าเป็น Q1 ที่ 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_en": "What is the value in 2009 at the French Open?",
    "question_th": "มูลค่าในปี 2009 ที่ French Open เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_86 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2008 FROM table_name_31 WHERE tournament = \"us open\"",
    "question_en": "What is the value in 2008 for the US Open?",
    "question_th": "มูลค่าในปี 2008 สำหรับ US Open คืออะไร?",
    "context": "CREATE TABLE table_name_31 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2009 FROM table_name_19 WHERE 2007 = \"1r\"",
    "question_en": "What is the value in 2009 when 1R is in 2007?",
    "question_th": "ค่าในปี 2552 คืออะไรเมื่อ 1R อยู่ในปี 2550",
    "context": "CREATE TABLE table_name_19 (Id VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_4 WHERE date = \"may 6\"",
    "question_en": "What is the record of the game on May 6?",
    "question_th": "สถิติเกมวันที่ 6 พ.ค. เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_4 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_38 WHERE 2012 = \"2r\"",
    "question_en": "what is the tournament when in 2012 the performance was 2r?",
    "question_th": "การแข่งขันคืออะไรเมื่อในปี 2012 ผลงานอยู่ที่ 2r?",
    "context": "CREATE TABLE table_name_38 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_12 WHERE 2010 = \"1r\" AND 2011 = \"1r\"",
    "question_en": "what is the tournament with the performance in 2010 and 2011 is 1r?",
    "question_th": "การแข่งขันที่มีผลงานในปี 2010 และ 2011 คือ 1r คืออะไร?",
    "context": "CREATE TABLE table_name_12 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2012 FROM table_name_28 WHERE 2011 = \"qf\" AND 2010 = \"3r\"",
    "question_en": "what is the 2012 performance when in 2011 is qf and 2010 is 3r?",
    "question_th": "ประสิทธิภาพในปี 2555 เป็นเท่าใดในปี 2554 คือ qf และปี 2553 คือ 3r",
    "context": "CREATE TABLE table_name_28 (Id VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_42 WHERE 2011 = \"qf\" AND 2012 = \"sf\"",
    "question_en": "what is the tournament when 2011 is qf and 2012 is sf?",
    "question_th": "การแข่งขันจะเป็นอย่างไรในปี 2011 คือ qf และ 2012 คือ sf?",
    "context": "CREATE TABLE table_name_42 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_77 WHERE 2012 = \"3r\" AND 2011 = \"qf\"",
    "question_en": "what is the tournament when the performance in 2012 is 3r and 2011 is qf?",
    "question_th": "การแข่งขันจะเป็นอย่างไรเมื่อผลงานในปี 2555 อยู่ที่ 3r และ 2554 อยู่ที่ qf?",
    "context": "CREATE TABLE table_name_77 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_2 WHERE tournament = \"us open\"",
    "question_en": "what is the 2011 performance for the US open?",
    "question_th": "ผลการดำเนินงานในปี 2554 ของ 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_en": "What is the year when Spirit Tom's Racing had more than 3 points?",
    "question_th": "ปีที่ Spirit Tom's Racing มีมากกว่า 3 แต้มคือปีใด?",
    "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_en": "Name the average week for attendance of 75,111",
    "question_th": "ตั้งชื่อสัปดาห์เฉลี่ยสำหรับการเข้าร่วม 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_en": "Name the sum of week with attendance of 62,233",
    "question_th": "ตั้งชื่อผลรวมของสัปดาห์ที่มีผู้เข้าร่วม 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_en": "Who had the smallest points in 3rd place but had a position greater than 8?",
    "question_th": "ใครมีคะแนนน้อยที่สุดในอันดับที่ 3 แต่มีตำแหน่งมากกว่า 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_en": "What was the place with 90 point total but a position less than 5?",
    "question_th": "สถานที่ใดที่มีคะแนนรวม 90 คะแนนแต่มีตำแหน่งน้อยกว่า 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_en": "What's the name of the song by afro-dite that had a points total greater than 100?",
    "question_th": "เพลงของ afro-dite ที่มีคะแนนรวมเกิน 100 ชื่อเพลงอะไรคะ?",
    "context": "CREATE TABLE table_name_31 (song VARCHAR, points VARCHAR, artist VARCHAR)"
  },
  {
    "answer": "SELECT SUM(money_requested__) AS £_ FROM table_name_87 WHERE first_aired = \"4 september 2011\"",
    "question_en": "how much money was requested on the show which aired on 4 september 2011?",
    "question_th": "รายการที่ออกอากาศเมื่อวันที่ 4 กันยายน 2554 เรียกร้องเงินไปเท่าไหร่?",
    "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_en": "what investing dragons aired on episode 10?",
    "question_th": "มังกรลงทุนอะไรออกอากาศในตอนที่ 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_en": "For the Entrant of Sasol Jordan, add up all the points with a Year larger than 1993.",
    "question_th": "สำหรับผู้เข้าแข่งขัน Sasol Jordan ให้บวกคะแนนทั้งหมดด้วยปีที่มากกว่าปี 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_en": "Give the most points that features jordan 194 in the Chassis column.",
    "question_th": "ให้คะแนนมากที่สุดที่มีคุณลักษณะ Jordan 194 ในคอลัมน์แชสซี",
    "context": "CREATE TABLE table_name_64 (points INTEGER, chassis VARCHAR)"
  },
  {
    "answer": "SELECT 2000 FROM table_name_18 WHERE category = \"sub 1 litre\"",
    "question_en": "What car was awarded sub 1 litre in 2000?",
    "question_th": "รถคันใดได้รับรางวัลต่ำกว่า 1 ลิตรในปี 2543",
    "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_en": "What car was awarded sub 1 litre in 2000 (won by toyota 1sz-fe 1.0l yaris in 1999)?",
    "question_th": "รถคันใดได้รับรางวัลต่ำกว่า 1 ลิตรในปี 2000 (ชนะโดย toyota 1sz-fe 1.0l yaris ในปี 1999)",
    "context": "CREATE TABLE table_name_35 (category VARCHAR)"
  },
  {
    "answer": "SELECT 2001 FROM table_name_76 WHERE 1999 = \"toyota 1nz-fxe hybrid prius\"",
    "question_en": "Which car won the same award in 2001 that the toyota 1nz-fxe hybrid prius won in 1999?",
    "question_th": "รถคันไหนได้รับรางวัลแบบเดียวกับที่โตโยต้า 1nz-fxe hybrid prius ได้รับรางวัลในปี 1999 ในปี 2542",
    "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_en": "Which car won the same award in 2000 that the ferrari f133 5.5l v12 456 / 550 won in 2001?",
    "question_th": "รถคันไหนได้รับรางวัลแบบเดียวกับที่เฟอร์รารี f133 5.5l v12 456 / 550 ได้รับรางวัลในปี 2544",
    "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_en": "Which car won the same award in 2001 that the bmw m67d39 3.9l v8 e38 740d won in 1999?",
    "question_th": "รถคันใดได้รับรางวัลเดียวกันกับปี 2544 ที่ bmw m67d39 3.9l v8 e38 740d ได้รับรางวัลในปี 1999",
    "context": "CREATE TABLE table_name_26 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2001 FROM table_name_17 WHERE category = \"1.4litre to 1.8litre\"",
    "question_en": "Which car won the 1.4litre to 1.8litre award in 2001?",
    "question_th": "รถคันไหนได้รับรางวัลขนาด 1.4 ลิตรถึง 1.8 ลิตรในปี 2544",
    "context": "CREATE TABLE table_name_17 (category VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_38 WHERE mountain = \"elk garden\"",
    "question_en": "What is the surface of the mountain range that contains the Elk Garden Mountain?",
    "question_th": "พื้นผิวของเทือกเขาที่ประกอบด้วย 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_en": "What is the 2012 value at the Grand Slam Tournaments?",
    "question_th": "มูลค่าปี 2012 ในการแข่งขันแกรนด์สแลมคือเท่าไร?",
    "context": "CREATE TABLE table_name_70 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_77 WHERE 2011 = \"a\"",
    "question_en": "What is the tournament with A in 2011?",
    "question_th": "การแข่งขันกับ A ในปี 2554 คืออะไร?",
    "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_en": "What is the 2010 value with A in 2009 and A in 2008 in the Australian Open?",
    "question_th": "มูลค่าปี 2010 โดย A ในปี 2009 และ A ในปี 2008 ใน Australian Open เป็นเท่าใด",
    "context": "CREATE TABLE table_name_43 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2012 FROM table_name_13 WHERE 2010 = \"a\" AND tournament = \"wimbledon\"",
    "question_en": "What is the 2012 value with A in 2010 at the Tournament of Wimbledon?",
    "question_th": "มูลค่าปี 2012 กับ A ในปี 2010 ที่ทัวร์นาเมนต์วิมเบิลดันเป็นเท่าใด",
    "context": "CREATE TABLE table_name_13 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2009 FROM table_name_60 WHERE 2010 = \"q1\"",
    "question_en": "What is the 2009 value with q1 in 2010?",
    "question_th": "ค่า 2009 กับ q1 ในปี 2010 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_60 (Id VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_20 WHERE score = \"0-7\"",
    "question_en": "What was the record of the game that went 0-7?",
    "question_th": "สถิติเกมที่เสมอ 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_en": "What day did the Diamondbacks go 2-7?",
    "question_th": "Diamondbacks ไป 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_en": "What was the record of the game that went 3-5?",
    "question_th": "สถิติเกมที่สกอร์ 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_en": "Type of stratovolcano, and a Name of goat rocks, and a Elevation (m) larger than 2,494 has what highest elevation in feet?",
    "question_th": "ประเภทของภูเขาไฟสลับชั้น และชื่อหินแพะ และระดับความสูง (ม.) ที่มากกว่า 2,494 มีความสูงสูงสุดเป็นฟุตที่ใด",
    "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_en": "What is the lowest points of British Racing after 1963?",
    "question_th": "จุดต่ำสุดของ British Racing หลังปี 1963 คืออะไร?",
    "context": "CREATE TABLE table_name_90 (points INTEGER, year INTEGER)"
  },
  {
    "answer": "SELECT chassis FROM table_name_47 WHERE points = 6",
    "question_en": "Which chassis was used when over 6 points were earned?",
    "question_th": "แชสซีใดที่ใช้เมื่อได้รับคะแนนมากกว่า 6 คะแนน?",
    "context": "CREATE TABLE table_name_47 (chassis VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT AVG(points) FROM table_name_73 WHERE year < 1964",
    "question_en": "What is the average points of the drivers before 1964?",
    "question_th": "คะแนนเฉลี่ยของนักแข่งก่อนปี 1964 คือเท่าไร?",
    "context": "CREATE TABLE table_name_73 (points INTEGER, year INTEGER)"
  },
  {
    "answer": "SELECT period FROM table_name_93 WHERE built = \"578\"",
    "question_en": "In what time period were 578 built?",
    "question_th": "578 ถูกสร้างขึ้นในสมัยใด?",
    "context": "CREATE TABLE table_name_93 (period VARCHAR, built VARCHAR)"
  },
  {
    "answer": "SELECT period FROM table_name_2 WHERE model = \"cessna 208\"",
    "question_en": "In what time period was the Cessna 208 built?",
    "question_th": "Cessna 208 สร้างขึ้นในช่วงเวลาใด?",
    "context": "CREATE TABLE table_name_2 (period VARCHAR, model VARCHAR)"
  },
  {
    "answer": "SELECT period FROM table_name_13 WHERE built = \"354\"",
    "question_en": "In what time period were 354 built?",
    "question_th": "354 ถูกสร้างขึ้นในสมัยใด?",
    "context": "CREATE TABLE table_name_13 (period VARCHAR, built VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(silver) FROM table_name_97 WHERE gold = 2",
    "question_en": "How many silver metals are possessed by countries with 2 gold medals?",
    "question_th": "ประเทศที่มี 2 เหรียญทองครอบครองโลหะเงินจำนวนเท่าใด",
    "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_en": "What is the total sum of silver metals for all countries with more than 2 Bronze medals?",
    "question_th": "ผลรวมของโลหะเงินสำหรับทุกประเทศที่มีเหรียญทองแดงมากกว่า 2 เหรียญเป็นเท่าใด",
    "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_en": "What is the lowest number of bronze medals for a country with less than 1 gold and 0 silver?",
    "question_th": "เหรียญทองแดงจำนวนน้อยที่สุดของประเทศที่มีน้อยกว่า 1 เหรียญทองและ 0 เหรียญเงินคือเท่าใด",
    "context": "CREATE TABLE table_name_70 (bronze INTEGER, gold VARCHAR, silver VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_62 WHERE date = \"april 16\"",
    "question_en": "What was the score of the game for April 16?",
    "question_th": "สกอร์เกมวันที่ 16 เมษายน เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_62 (loss VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT AVG(year) FROM table_name_32 WHERE charts = \"no. 7\"",
    "question_en": "What year was the No. 7 charts?",
    "question_th": "ชาร์ตอันดับที่ 7 คือปีไหน?",
    "context": "CREATE TABLE table_name_32 (year INTEGER, charts VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_31 WHERE game_site = \"riverfront stadium\"",
    "question_en": "Name the date for game site of riverfront stadium",
    "question_th": "ตั้งชื่อวันที่สถานที่แข่งขันของสนามกีฬาริมแม่น้ำ",
    "context": "CREATE TABLE table_name_31 (date VARCHAR, game_site VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_67 WHERE attendance = \"73,996\"",
    "question_en": "Name the record with attendance of 73,996",
    "question_th": "ตั้งชื่อสถิติด้วยจำนวนผู้เข้าร่วม 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_en": "Name the game site with result of w 20-14",
    "question_th": "ตั้งชื่อเว็บไซต์เกมด้วยผลลัพธ์ของ 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_en": "Name the result with week of 16",
    "question_th": "ตั้งชื่อผลลัพธ์ด้วยสัปดาห์ที่ 16",
    "context": "CREATE TABLE table_name_72 (result VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_51 WHERE result = \"w 13-11\"",
    "question_en": "Name the record with result of w 13-11",
    "question_th": "ตั้งชื่อบันทึกด้วยผลลัพธ์ของ 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_en": "Name the result for opponent of chicago bears",
    "question_th": "ทายผลคู่ต่อสู้หมีชิคาโก",
    "context": "CREATE TABLE table_name_14 (result VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT airdate FROM table_name_54 WHERE length = \"30 minutes\"",
    "question_en": "The length of 30 minutes aired on what date?",
    "question_th": "ความยาว 30 นาที ออกอากาศวันไหน?",
    "context": "CREATE TABLE table_name_54 (airdate VARCHAR, length VARCHAR)"
  },
  {
    "answer": "SELECT airdate FROM table_name_46 WHERE length = \"60 minutes\"",
    "question_en": "When did the length of 60 minutes air?",
    "question_th": "ความยาว 60 นาทีออกอากาศเมื่อไหร่?",
    "context": "CREATE TABLE table_name_46 (airdate VARCHAR, length VARCHAR)"
  },
  {
    "answer": "SELECT division_iV FROM table_name_35 WHERE division_iII = portsmouth",
    "question_en": "With a Division II of Portsmouth, what is the Division IV?",
    "question_th": "ด้วย Division II ของ Portsmouth อะไรคือ 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_en": "What Division III has Bishop Brady in Division V and Hanover in Division IV?",
    "question_th": "Division III ใดมี Bishop Brady ใน Division V และ Hanover ใน 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_en": "What is the total sum of points of entrants with a reynard 92d chassis?",
    "question_th": "คะแนนรวมของผู้เข้าแข่งขันที่ใช้แชสซี Reynard 92d เป็นเท่าใด",
    "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_en": "What is total amount of points of entrants with a ford cosworth engine and a year later than 1991?",
    "question_th": "คะแนนรวมของผู้เข้าแข่งขันด้วยเครื่องยนต์ Ford Cosworth และหนึ่งปีหลังจากปี 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_en": "When has a Venue of Adelaide Oval?",
    "question_th": "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_en": "What is the Home Captain which has Waca Ground as a Venue",
    "question_th": "กัปตันบ้านที่มีพื้นวาก้าเป็นสถานที่จัดงานคืออะไร",
    "context": "CREATE TABLE table_name_81 (home_captain VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_75 WHERE score = \"1-3\"",
    "question_en": "Name the venue for score of 1-3",
    "question_th": "ตั้งชื่อสถานที่ด้วยคะแนน 1-3",
    "context": "CREATE TABLE table_name_75 (venue VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_name_21 WHERE chassis = \"march 751\"",
    "question_en": "Name the points with chassis of march 751",
    "question_th": "ตั้งชื่อจุดด้วยแชสซีของ 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_en": "Name the most points for years before 1979 and chassis of alfa romeo 177",
    "question_th": "ระบุคะแนนสูงสุดสำหรับหลายปีก่อนปี 1979 และแชสซีของ 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_en": "Name the total number of points for beta team march 1975 and chassis of march 751",
    "question_th": "ระบุจำนวนคะแนนรวมสำหรับทีมเบต้าเดือนมีนาคม 1975 และแชสซีของเดือนมีนาคม 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_en": "What Persian word(s) has the same meaning as the Romani word duj?",
    "question_th": "คำภาษาเปอร์เซียข้อใดมีความหมายเหมือนกับคำภาษาโรมานี duj?",
    "context": "CREATE TABLE table_name_92 (persian VARCHAR, romani VARCHAR)"
  },
  {
    "answer": "SELECT domari FROM table_name_40 WHERE hindi = \"pāñc\"",
    "question_en": "What Domari word has the same meaning as the Hindi word pāñc?",
    "question_th": "คำใดที่ Domari มีความหมายเหมือนกับคำภาษาฮินดี pāñc?",
    "context": "CREATE TABLE table_name_40 (domari VARCHAR, hindi VARCHAR)"
  },
  {
    "answer": "SELECT hindi FROM table_name_99 WHERE lomavren = \"saj\"",
    "question_en": "What word in Hindi has the same meaning as the Lomavren word saj?",
    "question_th": "คำใดในภาษาฮินดีที่มีความหมายเหมือนกับคำว่า Lomavren saj?",
    "context": "CREATE TABLE table_name_99 (hindi VARCHAR, lomavren VARCHAR)"
  },
  {
    "answer": "SELECT persian FROM table_name_84 WHERE domari = \"na\"",
    "question_en": "What Persian word has the same meaning as the Domari word na?",
    "question_th": "คำภาษาเปอร์เซียข้อใดมีความหมายเหมือนกับคำ Domari na?",
    "context": "CREATE TABLE table_name_84 (persian VARCHAR, domari VARCHAR)"
  },
  {
    "answer": "SELECT romani FROM table_name_56 WHERE persian = \"dah\"",
    "question_en": "What Romani word has the same meaning as the Persian word dah?",
    "question_th": "คำภาษาโรมานีข้อใดมีความหมายเหมือนกับคำภาษาเปอร์เซีย dah?",
    "context": "CREATE TABLE table_name_56 (romani VARCHAR, persian VARCHAR)"
  },
  {
    "answer": "SELECT lomavren FROM table_name_97 WHERE hindi = \"do\"",
    "question_en": "What Lomavren word has the same meaning as the Hindi word do?",
    "question_th": "คำ Lomavren คำใดที่มีความหมายเหมือนกับคำภาษาฮินดี?",
    "context": "CREATE TABLE table_name_97 (lomavren VARCHAR, hindi VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_53 WHERE opponents = \"amer delic robert kendrick\"",
    "question_en": "Which type of surface do Amer Delic Robert Kendrick's opponents have?",
    "question_th": "คู่ต่อสู้ของ Amer Delic Robert Kendrick มีพื้นผิวประเภทใด?",
    "context": "CREATE TABLE table_name_53 (surface VARCHAR, opponents VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_82 WHERE score = \"w/o\"",
    "question_en": "On which surface was the score w/o?",
    "question_th": "คะแนนที่ไม่มีคะแนนอยู่บนพื้นผิวใด?",
    "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_en": "What is Diego Junqueira Gabriel Trujillo-Soler's opponent's score?",
    "question_th": "คะแนนของฝ่ายตรงข้ามของ Diego Junqueira Gabriel Trujillo-Soler คืออะไร?",
    "context": "CREATE TABLE table_name_35 (score VARCHAR, opponents VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_18 WHERE opponents = \"thomas oger nicolas tourte\"",
    "question_en": "Which surface do opponents of Thomas Oger Nicolas Tourte have?",
    "question_th": "คู่ต่อสู้ของโธมัส โอเกอร์ นิโคลัส ตูร์เต้มีพื้นผิวใด?",
    "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_en": "In the circuit of Madonie, what was the date that had the winning constructor Bugatti?",
    "question_th": "ในสนามแข่ง Madonie วันที่เท่าไหร่ที่ 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_en": "Who was the winning driver of the Savio Circuit with the constructor Itala?",
    "question_th": "ใครคือผู้ชนะการแข่งขัน Savio Circuit กับผู้สร้าง 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_en": "What is the date of death of the Countess of Flanders who was born in 1309?",
    "question_th": "วันที่เคาน์เตสแห่งแฟลนเดอร์สซึ่งเกิดในปี 1309 เสียชีวิตคือวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_75 (death VARCHAR, birth VARCHAR)"
  },
  {
    "answer": "SELECT death FROM table_name_69 WHERE birth = \"1309\"",
    "question_en": "What is the date of death of the Countess of Flanders who was born in 1309?",
    "question_th": "วันที่เคาน์เตสแห่งแฟลนเดอร์สซึ่งเกิดในปี 1309 เสียชีวิตคือวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_69 (death VARCHAR, birth VARCHAR)"
  },
  {
    "answer": "SELECT spouse FROM table_name_71 WHERE name = \"margaret of brabant\"",
    "question_en": "Who was Margaret of Brabant's spouse?",
    "question_th": "ใครคือคู่สมรสของ Margaret of Brabant",
    "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_en": "What is the average year for Wallenstein with 1a1 design?",
    "question_th": "ปีเฉลี่ยของ Wallenstein ที่มีการออกแบบ 1a1 คือเท่าไร?",
    "context": "CREATE TABLE table_name_49 (acquired INTEGER, design VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT design FROM table_name_32 WHERE acquired = 1875",
    "question_en": "What design was acquired in 1875?",
    "question_th": "การออกแบบใดที่ได้มาในปี พ.ศ. 2418?",
    "context": "CREATE TABLE table_name_32 (design VARCHAR, acquired VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_name_55 WHERE winner = \"arthur osborne\"",
    "question_en": "Who was the incumbent when Arthur Osborne won the election?",
    "question_th": "ใครเป็นผู้ดำรงตำแหน่งเมื่อ Arthur Osborne ชนะการเลือกตั้ง?",
    "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_en": "How many saves did the player with a 92.3% save rate and 217 goals have?",
    "question_th": "นักเตะที่มีอัตราการเซฟ 92.3% และทำได้ 217 ประตูได้กี่ประตู?",
    "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_en": "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?",
    "question_th": "คู่ต่อสู้ของแมตช์นี้คือใคร โดยมี H/A เป็น h โดยมี Beguiristain Iceta เป็นผู้ตัดสิน และเริ่มการแข่งขันเมื่อ 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_en": "What is the result of the match with a H/A of A and a kick off at 1992-10-31 16:00?",
    "question_th": "ผลการแข่งขันโดย H/A ของ A และการคิกออฟในวันที่ 31-10-1992 เวลา 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_en": "How many Laps were there in 2010?",
    "question_th": "มีกี่รอบในปี 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_en": "Who was the co-driver for Toyota Racing after the year 2012?",
    "question_th": "ใครคือคนขับรถร่วมของ Toyota Racing หลังจากปี 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_en": "How many laps were driven by the racer who earned 4th place in 2013?",
    "question_th": "นักแข่งที่ได้อันดับ 4 ในปี 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_en": "Which opponent has a record of 78-60?",
    "question_th": "คู่ต่อสู้คนไหนมีสถิติ 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_en": "Which opponent has a loss of erickson (8-19)?",
    "question_th": "คู่แข่งคนไหนที่แพ้เอริคสัน (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 – 5\"",
    "question_en": "Which Attendance  has a Game score less than 3, and a Score of 2 – 5?",
    "question_th": "ผู้เข้าร่วมคนใดมีคะแนนเกมน้อยกว่า 3 และคะแนน 2 – 5",
    "context": "CREATE TABLE table_name_58 (attendance INTEGER, game VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_77 WHERE series = \"2 – 3\"",
    "question_en": "Who has Series of 2 – 3?",
    "question_th": "ใครมีซีรีส์ 2 – 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_en": "Who has  a Home of detroit on  april 22?",
    "question_th": "ใครมีบ้านดีทรอยต์ในวันที่ 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–98\"",
    "question_en": "Leading Scorer that has a Goal smaller than 23, and a League of football league division 3, and a Year of 1997–98 is who?",
    "question_th": "ผู้ทำประตูสูงสุดที่มีประตูน้อยกว่า 23 และลีกฟุตบอลลีกดิวิชั่น 3 และปี 1997–98 คือใคร?",
    "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_en": "Leading Scorer of Ian rush is what lowest # of goals?",
    "question_th": "ผู้ทำประตูนำของเอียน รัช คือ # ประตูที่ต่ำที่สุดจำนวนเท่าใด?",
    "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_en": "Goals that has a Position of 14th of 24, and a League of football conference has what sum?",
    "question_th": "ประตูที่มีอันดับ 14 จาก 24 และลีกฟุตบอลคอนเฟอเรนซ์มีผลรวมเท่าไร?",
    "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_en": "Position of 7th of 24, and a Goals smaller than 24 is what league?",
    "question_th": "อันดับ 7 จาก 24 ประตู และประตูที่น้อยกว่า 24 คือลีกใด",
    "context": "CREATE TABLE table_name_13 (league VARCHAR, position VARCHAR, goals VARCHAR)"
  },
  {
    "answer": "SELECT entrant FROM table_name_96 WHERE points < 2",
    "question_en": "Which entrant scored less than 2 points?",
    "question_th": "ผู้เข้าแข่งขันคนใดได้คะแนนน้อยกว่า 2 คะแนน?",
    "context": "CREATE TABLE table_name_96 (entrant VARCHAR, points INTEGER)"
  },
  {
    "answer": "SELECT entrant FROM table_name_9 WHERE chassis = \"de tomaso 505\"",
    "question_en": "Which entrant used the chassis de tomaso 505?",
    "question_th": "ผู้เข้าร่วมรายใดใช้แชสซี 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_en": "What is the Presentation of Credentials has a Termination of Mission listed as August 15, 2000?",
    "question_th": "การนำเสนอหนังสือรับรองที่มีการยุติภารกิจระบุไว้ในวันที่ 15 สิงหาคม พ.ศ. 2543 คืออะไร",
    "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_en": "Which Presentation of Credentials is listed for the Appointed by Benjamin Harrison?",
    "question_th": "การนำเสนอหนังสือรับรองใดที่ได้รับการแต่งตั้งโดยเบนจามิน แฮร์ริสัน",
    "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_en": "What is the Termination of Mission with a Title of Ambassador Extraordinary and Plenipotentiary with a Representative of Reynold E. Carlson?",
    "question_th": "การยุติภารกิจด้วยตำแหน่งเอกอัครราชทูตวิสามัญและผู้มีอำนาจเต็มร่วมกับตัวแทนของเรย์โนลด์ อี. คาร์ลสันคืออะไร",
    "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_en": "Which Representative has a Termination of Mission as May 24, 1905?",
    "question_th": "ผู้แทนคนใดมีการยุติภารกิจในวันที่ 24 พฤษภาคม พ.ศ. 2448",
    "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_en": "What Title has a Presentation of Credentials of October 4, 1988?",
    "question_th": "หัวข้อใดที่มีการนำเสนอหนังสือรับรองของวันที่ 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_en": "What is the Appointed by that has the Title of Ambassador Extraordinary and Plenipotentiary and has a Representative of Spruille Braden?",
    "question_th": "ผู้ที่ได้รับการแต่งตั้งซึ่งมีตำแหน่งเป็นเอกอัครราชทูตวิสามัญและผู้มีอำนาจเต็มและมีตัวแทนของ 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_en": "Who's the race leader of Cuneo to Turin?",
    "question_th": "ใครคือผู้นำการแข่งขันของ Cuneo ถึง Turin?",
    "context": "CREATE TABLE table_name_90 (race_leader VARCHAR, course VARCHAR)"
  },
  {
    "answer": "SELECT course FROM table_name_5 WHERE stage = \"1\"",
    "question_en": "What course are they running on stage 1?",
    "question_th": "พวกเขากำลังดำเนินการหลักสูตรอะไรบนเวทีที่ 1?",
    "context": "CREATE TABLE table_name_5 (course VARCHAR, stage VARCHAR)"
  },
  {
    "answer": "SELECT distance FROM table_name_73 WHERE stage = \"4\"",
    "question_en": "What's the distance of the course of stage 4?",
    "question_th": "ระยะทางของหลักสูตรระยะที่ 4 คืออะไร?",
    "context": "CREATE TABLE table_name_73 (distance VARCHAR, stage VARCHAR)"
  },
  {
    "answer": "SELECT distance FROM table_name_13 WHERE stage = \"4\"",
    "question_en": "What was the distance of the course for stage 4?",
    "question_th": "ระยะทางของหลักสูตรสำหรับระยะที่ 4 คืออะไร?",
    "context": "CREATE TABLE table_name_13 (distance VARCHAR, stage VARCHAR)"
  },
  {
    "answer": "SELECT race_leader FROM table_name_66 WHERE stage = \"5\"",
    "question_en": "Who was the race leader for stage 5?",
    "question_th": "ใครคือผู้นำการแข่งขันในระยะที่ 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_en": "Name the result for 2000 afc asian cup qualification",
    "question_th": "ทายผลการแข่งขันเอเอฟซีเอเชียนคัพ 2000 รอบคัดเลือก",
    "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_en": "Name the least total when bronze is less than 2 and rank is more than 2 with silver less than 1",
    "question_th": "ตั้งชื่อผลรวมน้อยที่สุดเมื่อทองแดงน้อยกว่า 2 และอันดับมากกว่า 2 โดยมีเงินน้อยกว่า 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_en": "What is the largest gold with a Total of 2, and a Rank smaller than 2?",
    "question_th": "ทองคำที่ใหญ่ที่สุดโดยมีผลรวม 2 และอันดับน้อยกว่า 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_en": "What is the lowest total from United States with a Rank smaller than 2?",
    "question_th": "ผลรวมต่ำสุดจากประเทศสหรัฐอเมริกาที่มีอันดับน้อยกว่า 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_en": "What is the average silver with a Rank smaller than 2 and more than 1 gold?",
    "question_th": "เงินเฉลี่ยที่มีอันดับน้อยกว่า 2 และมากกว่า 1 เหรียญทองคือเท่าไร?",
    "context": "CREATE TABLE table_name_61 (silver INTEGER, rank VARCHAR, gold VARCHAR)"
  },
  {
    "answer": "SELECT MIN(rank) FROM table_name_69 WHERE total < 1",
    "question_en": "What is the smallest rank with a Total smaller than 1?",
    "question_th": "อันดับน้อยที่สุดที่มีคะแนนรวมน้อยกว่า 1 คืออะไร?",
    "context": "CREATE TABLE table_name_69 (rank INTEGER, total INTEGER)"
  },
  {
    "answer": "SELECT AVG(year) FROM table_name_60 WHERE certification = \"2x platinum\" AND álbum = \"xuxa 3\" AND sales > 750 OFFSET 000",
    "question_en": "What was the average year that Xuxa 3 earned the certification 2x platinum, and that the sales were higher than 750,000?",
    "question_th": "ปีเฉลี่ยที่ Xuxa 3 ได้รับการรับรอง 2x Platinum และมียอดขายสูงกว่า 750,000 ปีคือเท่าใด",
    "context": "CREATE TABLE table_name_60 (year INTEGER, sales VARCHAR, certification VARCHAR, álbum VARCHAR)"
  },
  {
    "answer": "SELECT sales FROM table_name_59 WHERE year < 1991",
    "question_en": "What were the number of sales before 1991?",
    "question_th": "ยอดขายก่อนปี 2534 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_59 (sales VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT álbum FROM table_name_65 WHERE year = 1996",
    "question_en": "What álbum was in the year 1996?",
    "question_th": "อัลบั้มอะไรในปี 1996?",
    "context": "CREATE TABLE table_name_65 (álbum VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT MAX(population__total_) FROM table_name_96 WHERE year = 1976 AND _barcaldine_ < 1 OFFSET 780",
    "question_en": "What is the high Population (total) from 1976 with a (Barcaldine) smaller than 1,780?",
    "question_th": "ประชากรสูง (ทั้งหมด) จากปี 1976 โดยมี (Barcaldine) น้อยกว่า 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_en": "What Year has an (Aramac) of 832 and a Population (Total) less than 3,762?",
    "question_th": "ปีใดมี (อราแมค) 832 และประชากร (รวม) น้อยกว่า 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_en": "What was the engine of the Hoover Motor Express after 1955 with greater than 0 points?",
    "question_th": "เครื่องยนต์ของ Hoover Motor Express หลังปี 1955 ที่มีคะแนนมากกว่า 0 คืออะไร?",
    "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_en": "What is the average year that the Belanger Motors had an Offenhauser l4 engine?",
    "question_th": "ปีเฉลี่ยที่ Belanger Motors มีเครื่องยนต์ Offenhauser l4 คือเท่าไร?",
    "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_en": "Who is the prisoner that is older than 45 and has served less than 22 years on death row?",
    "question_th": "ใครคือนักโทษที่มีอายุมากกว่า 45 ปีและรับโทษประหารชีวิตไม่ถึง 22 ปี?",
    "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_en": "What is the prisoner's name that is currently 29 years old?",
    "question_th": "นักโทษอายุ 29 ปี ปัจจุบันชื่ออะไร?",
    "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_en": "Name the 2010 for 2007 of a and 2012 of a",
    "question_th": "ตั้งชื่อปี 2010 สำหรับปี 2007 ของ a และ 2012 ของ a",
    "context": "CREATE TABLE table_name_77 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2008 FROM table_name_20 WHERE 2012 = \"a\" AND tournament = \"australian open\"",
    "question_en": "Name the 2008 for 2012 being a and tournament of australian open",
    "question_th": "ตั้งชื่อปี 2008 สำหรับปี 2012 ให้เป็นทัวร์นาเมนต์ของออสเตรเลียนโอเพ่น",
    "context": "CREATE TABLE table_name_20 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_32 WHERE 2012 = \"grand slam tournaments\"",
    "question_en": "Name the tournament for 2012 grand slam tournaments",
    "question_th": "ตั้งชื่อการแข่งขันสำหรับการแข่งขันแกรนด์สแลมปี 2012",
    "context": "CREATE TABLE table_name_32 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_name_98 WHERE engine = \"bristol\"",
    "question_en": "What is the earliest year that has a Bristol engine?",
    "question_th": "ปีแรกสุดที่มีเครื่องยนต์บริสตอลคือปีใด",
    "context": "CREATE TABLE table_name_98 (year INTEGER, engine VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_86 WHERE loss = \"brandon (4–8)\"",
    "question_en": "What was the record at the game that had a loss of Brandon (4–8)?",
    "question_th": "อะไรคือสถิติในเกมที่แพ้แบรนดอน (4–8)?",
    "context": "CREATE TABLE table_name_86 (record VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_63 WHERE record = \"54–42\"",
    "question_en": "What was the loss of the game with a record of 54–42?",
    "question_th": "อะไรคือความพ่ายแพ้ของเกมด้วยสถิติ 54–42?",
    "context": "CREATE TABLE table_name_63 (loss VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_96 WHERE loss = \"bell (6–9)\"",
    "question_en": "Who was the opponent at the game that had a loss of Bell (6–9)?",
    "question_th": "คู่ต่อสู้ในเกมที่แพ้เบลล์ (6–9) คือใคร?",
    "context": "CREATE TABLE table_name_96 (opponent VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_41 WHERE loss = \"wyatt (4–4)\"",
    "question_en": "What was the record at the game that had a loss of Wyatt (4–4)?",
    "question_th": "อะไรคือสถิติในเกมที่แพ้ไวแอตต์ (4–4)?",
    "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_en": "In 1985, how many points were earned by the entrant with the March 85B chassis?",
    "question_th": "ในปี 1985 ผู้เข้าร่วมที่ใช้แชสซี March 85B ได้รับคะแนนเท่าใด",
    "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_en": "How many points did Corbari Italia earn in 1985?",
    "question_th": "Corbari Italia ได้รับคะแนนเท่าใดในปี 1985",
    "context": "CREATE TABLE table_name_90 (points VARCHAR, entrant VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT MIN(attendance) FROM table_name_32 WHERE record = \"18–15–6\"",
    "question_en": "Record of 18–15–6 belongs to what lowest attendance?",
    "question_th": "สถิติ 18–15–6 อยู่ในกลุ่มผู้เข้าร่วมต่ำสุดข้อใด",
    "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–16–7\"",
    "question_en": "Decision of parent, and a Home of philadelphia, and a Record of 20–16–7 is on what date?",
    "question_th": "การตัดสินใจของผู้ปกครอง และบ้านของฟิลาเดลเฟีย และบันทึก 20–16–7 จะจัดในวันที่ใด",
    "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_en": "Decision of parent, and a Visitor of Philadelphia, and a Date of January 27 had what score?",
    "question_th": "การตัดสินใจของผู้ปกครองและผู้มาเยือนฟิลาเดลเฟียและวันที่ 27 มกราคมมีคะแนนเท่าใด",
    "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_en": "What was the average Game, when the attendance was higher than 56,040?",
    "question_th": "เกมโดยเฉลี่ยเป็นเท่าใดเมื่อมีผู้เข้าร่วมมากกว่า 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_en": "What was date when the time was 2:26 and the location was Riverfront Stadium?",
    "question_th": "วันที่เท่าไหร่เมื่อเวลา 2:26 น. และสถานที่คือสนามกีฬาริเวอร์ฟรอนท์?",
    "context": "CREATE TABLE table_name_62 (date VARCHAR, time VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_14 WHERE date = \"may 9\"",
    "question_en": "Who is the visitor on May 9?",
    "question_th": "ใครคือผู้มาเยือนในวันที่ 9 พฤษภาคม?",
    "context": "CREATE TABLE table_name_14 (visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT discovery FROM table_name_4 WHERE operator_s_ = \"lundin\"",
    "question_en": "Which Discoveryhas an Operator(s) of lundin?",
    "question_th": "Discovery คนไหนมีโอเปอเรเตอร์ของ 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_en": "Which Geological Trend has an Operator(s) of woc?",
    "question_th": "แนวโน้มทางธรณีวิทยาใดมีตัวดำเนินการ 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_en": "Which operator has a Reserve of 100 bbbl?",
    "question_th": "โอเปอเรเตอร์ใดมีทุนสำรอง 100 bbb?",
    "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_en": "Which Field has a Discovery of na, and an Operator(s) of woc, and a Geological Trend of western",
    "question_th": "สาขาใดมีการค้นพบ na และผู้ดำเนินการ woc และแนวโน้มทางธรณีวิทยาของตะวันตก",
    "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_en": "What primary sponsor(s) owns ford fusion car(s) and the crew chief is Drew Blickensderfer?",
    "question_th": "ผู้สนับสนุนหลักคนใดที่เป็นเจ้าของรถฟอร์ด ฟิวชั่น และหัวหน้าลูกเรือคือ ดรูว์ บลิคเกนส์เดอร์เฟอร์",
    "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_en": "What crew chief has an owner name Jack Roush and driver Greg Biffle?",
    "question_th": "หัวหน้าลูกเรือคนใดมีเจ้าของชื่อ Jack Roush และคนขับ 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_en": "What primary sponsor has the owner Rick Hendrick and their crew chief is Alan Gustafson?",
    "question_th": "เจ้าของ Rick Hendrick และหัวหน้าทีมคือ 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_en": "What is the value for Bahia when the Northeast total was 6747013?",
    "question_th": "ค่าของบาเอียเมื่อผลรวมภาคตะวันออกเฉียงเหนือคือ 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_en": "What was the lowest number in Pernambuco where the Northeast had a total of 119978?",
    "question_th": "ตัวเลขต่ำสุดในเปร์นัมบูกู โดยที่ภาคตะวันออกเฉียงเหนือมีทั้งหมด 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_en": "Who was the winner from the United States the year Kimberly Kim was runner-up?",
    "question_th": "ใครคือผู้ชนะจากสหรัฐอเมริกาในปีที่ Kimberly Kim รองชนะเลิศ?",
    "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_en": "What number pick was the player for the Oakland Athletics who plays the 1B position?",
    "question_th": "ผู้เล่นของทีม Oakland Athletics ที่เล่นตำแหน่ง 1B เป็นคนเลือกหมายเลขใด",
    "context": "CREATE TABLE table_name_11 (pick VARCHAR, position VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_91 WHERE 2007 = \"olympic games\"",
    "question_en": "What tournament was at the 2007 Olympic Games?",
    "question_th": "การแข่งขันกีฬาโอลิมปิกปี 2550 เป็นทัวร์นาเมนต์ใด",
    "context": "CREATE TABLE table_name_91 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_5 WHERE tournament = \"cincinnati masters\"",
    "question_en": "What tournament was at the 2011 Cincinnati Masters?",
    "question_th": "การแข่งขัน Cincinnati Masters ปี 2011 คืออะไร?",
    "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_en": "In what heat did the swimmer in Lane 6 rank higher than 7 with a time of 4:08.27?",
    "question_th": "นักว่ายน้ำในเลน 6 มีอันดับสูงกว่า 7 ด้วยเวลา 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_en": "What was the Comp on 2007-08-06?",
    "question_th": "คอมพ์ในวันที่ 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_en": "How many Apogee sis Ops-8285 with more than 1500 kg?",
    "question_th": "Apogee sis Ops-8285 ที่มีน้ำหนักมากกว่า 1,500 กก. มีกี่ตัว?",
    "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_en": "What is the lowest Perigee with a Launch date of 1970-08-26?",
    "question_th": "Perigee ที่ต่ำที่สุดที่มีวันเปิดตัวในปี 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_en": "How many total appearances did Grant Brebner have?",
    "question_th": "Grant Brebner ลงเล่นทั้งหมดกี่นัด?",
    "context": "CREATE TABLE table_name_5 (total VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_1 WHERE a_league = \"150 (4)\"",
    "question_en": "Which player has an A-League of 150 (4)?",
    "question_th": "ผู้เล่นคนไหนมี A-League 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_en": "Which player had a total of 116 (22)?",
    "question_th": "ผู้เล่นคนไหนมีทั้งหมด 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_en": "Which player has an A-League of 150 (4)?",
    "question_th": "ผู้เล่นคนไหนมี A-League 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_en": "Which player has an A-League of 113 (0)?",
    "question_th": "ผู้เล่นคนไหนมี A-League 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_en": "What is the data limit for a T-Mobile internet basic plan?",
    "question_th": "ขีดจำกัดข้อมูลสำหรับแผนพื้นฐานอินเทอร์เน็ตของ T-Mobile คืออะไร?",
    "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_en": "What is the data limit for vodafone?",
    "question_th": "ขีดจำกัดข้อมูลสำหรับ 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_en": "What plan has monthly prices of 300, 500, 750, 1000?",
    "question_th": "แผนไหนมีราคารายเดือน 300, 500, 750, 1,000?",
    "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_en": "What is the maximum download speed for the Internet premium 3G plan?",
    "question_th": "ความเร็วในการดาวน์โหลดสูงสุดสำหรับแผน Internet Premium 3G คือเท่าใด?",
    "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_en": "What is the maximum download speed for the Internet basic plan with 3G?",
    "question_th": "ความเร็วในการดาวน์โหลดสูงสุดสำหรับแผนอินเทอร์เน็ตพื้นฐานแบบ 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_en": "What is the to par for Gene Littler?",
    "question_th": "ค่าหุ้นของ Gene Littler คืออะไร?",
    "context": "CREATE TABLE table_name_42 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_91 WHERE place = \"4\"",
    "question_en": "What is the country that placed 4?",
    "question_th": "อันดับที่ 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_en": "Which school has a decile of 8 and a roll of 705?",
    "question_th": "โรงเรียนใดมีเดซิล 8 และม้วน 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_en": "What is the roll of the school in Oakura?",
    "question_th": "รายชื่อโรงเรียนใน 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_en": "What is the avererage decile of Francis Douglas Memorial College?",
    "question_th": "ค่าเสื่อมเฉลี่ยของ 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_en": "What was the final score in a 2002 fifa world cup qualification that was less than 10?",
    "question_th": "คะแนนสุดท้ายในฟุตบอลโลกรอบคัดเลือกปี 2002 ที่น้อยกว่า 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_en": "What is the earliest year with points more than 8?",
    "question_th": "ปีแรกที่มีคะแนนมากกว่า 8 คือปีใด?",
    "context": "CREATE TABLE table_name_38 (year INTEGER, pts INTEGER)"
  },
  {
    "answer": "SELECT SUM(pts) FROM table_name_7 WHERE chassis = \"march 811\"",
    "question_en": "What are the points for a chassis of march 811?",
    "question_th": "แชสซีของ 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_en": "Who had 8 points, later than 1980, and a theodore ty02 chassis?",
    "question_th": "ใครมี 8 แต้มหลังปี 1980 และแชสซีของ theodore ty02?",
    "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_en": "Which United States player has a To par of 14?",
    "question_th": "ผู้เล่นสหรัฐคนใดมีพาร์ 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_en": "Which year averaged less than 9 points?",
    "question_th": "ปีไหนเฉลี่ยน้อยกว่า 9 คะแนน?",
    "context": "CREATE TABLE table_name_32 (year INTEGER, points INTEGER)"
  },
  {
    "answer": "SELECT COUNT(points) FROM table_name_18 WHERE chassis = \"ligier js11/15\"",
    "question_en": "What is the total points of teams using a ligier js11/15 chassis?",
    "question_th": "คะแนนรวมของทีมที่ใช้แชสซี ligier js11/15 เป็นเท่าใด?",
    "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_en": "What is the highest year team tyrrell earned more than 14 points?",
    "question_th": "ทีม Tyrrell ปีสูงสุดที่ได้รับมากกว่า 14 คะแนนคืออะไร?",
    "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_en": "Which club had 1, draw, 11 lost, and a try bonus of 7?",
    "question_th": "สโมสรไหนมี 1 เสมอ 11 แพ้ และโบนัสลอง 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_en": "How many tries against were there when there was 961 points against?",
    "question_th": "มีการพยายามต่อต้านกี่ครั้งเมื่อมี 961 แต้ม?",
    "context": "CREATE TABLE table_name_29 (tries_against VARCHAR, points_against VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_name_75 WHERE points_against = \"556\"",
    "question_en": "Which of the clubs had 556 points against?",
    "question_th": "สโมสรใดมี 556 แต้มต่อ?",
    "context": "CREATE TABLE table_name_75 (club VARCHAR, points_against VARCHAR)"
  },
  {
    "answer": "SELECT tries_against FROM table_name_2 WHERE lost = \"17\"",
    "question_en": "How many tries against were there with 17 losses?",
    "question_th": "มีการพยายามต่อต้านกี่ครั้งโดยแพ้ 17 ครั้ง?",
    "context": "CREATE TABLE table_name_2 (tries_against VARCHAR, lost VARCHAR)"
  },
  {
    "answer": "SELECT lost FROM table_name_84 WHERE tries_for = \"103\"",
    "question_en": "How many losses were there with 103 tries for?",
    "question_th": "มีการสูญเสียกี่ครั้งจากการพยายาม 103 ครั้ง?",
    "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_en": "Name the highest revenue for schalke 04 with rank less than 10",
    "question_th": "ระบุรายได้สูงสุดของชาลเก้ 04 ที่มีอันดับต่ำกว่า 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_en": "Name the rank for tottenham hotspur",
    "question_th": "ทายอันดับท็อตแน่ม ฮ็อทสเปอร์",
    "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_en": "Name the least revenue for chelsea of england with rank less than 7",
    "question_th": "ระบุรายรับน้อยที่สุดสำหรับเชลซี แห่งอังกฤษ ที่มีอันดับต่ำกว่า 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_en": "Name the total number of value for revenue more than 193 and rank less than 12 for manchester united",
    "question_th": "ระบุจำนวนมูลค่ารวมของรายได้มากกว่า 193 และอันดับน้อยกว่า 12 สำหรับแมนเชสเตอร์ยูไนเต็ด",
    "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_en": "What is the lowest rank of Qaanaaq, which has a population greater than 231?",
    "question_th": "Qaanaaq ซึ่งมีประชากรมากกว่า 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_en": "What is the rank of the town with a population of 258?",
    "question_th": "เมืองที่มีประชากร 258 คนอยู่ในอันดับที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_4 (rank VARCHAR, population VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_76 WHERE decision = \"osgood\" AND score = \"6 – 7\"",
    "question_en": "When is a Decision of osgood, and a Score of 6 – 7?",
    "question_th": "เมื่อใดจะมีการตัดสินของออสกู๊ด และคะแนน 6 – 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 – 4\"",
    "question_en": "What date has a Decision of osgood, and a Score of 3 – 4?",
    "question_th": "ผลการตัดสินของออสกู๊ดคือวันไหนและคะแนน 3 – 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_en": "List a name that has a heat of at least 3 and a Lane of exactly 5.",
    "question_th": "ระบุชื่อที่มีค่าฮีตอย่างน้อย 3 และเลนเท่ากับ 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_en": "Name the sum of time for lane of 1 and rank less than 8",
    "question_th": "ตั้งชื่อผลรวมของเวลาสำหรับเลน 1 และอันดับน้อยกว่า 8",
    "context": "CREATE TABLE table_name_17 (time INTEGER, lane VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT championship FROM table_name_36 WHERE reign = \"8\"",
    "question_en": "Name the championship with reign of 8",
    "question_th": "ตั้งชื่อแชมป์ด้วยรัชสมัยที่ 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_en": "Name the days for current champions of dean ambrose",
    "question_th": "ตั้งชื่อวันสำหรับแชมป์คนปัจจุบันของคณบดีแอมโบรส",
    "context": "CREATE TABLE table_name_33 (days_held VARCHAR, current_champion_s_ VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_76 WHERE reign = \"3\"",
    "question_en": "Name the location of reign 3",
    "question_th": "ตั้งชื่อสถานที่ในรัชกาลที่ 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_en": "Name the date won for wwe intercontinental championship",
    "question_th": "ตั้งชื่อวันที่ชนะการแข่งขันชิงแชมป์อินเตอร์คอนติเนนตัล wwe",
    "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 ½: netsuretsu kakutouhen\"",
    "question_en": "When was Ranma ½: netsuretsu kakutouhen first release by Banpresto?",
    "question_th": "Ranma ½: netsuretsu kakutouhen เปิดตัวครั้งแรกโดย 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_en": "In what genre did Microvision develop a game?",
    "question_th": "Microvision พัฒนาเกมประเภทใด",
    "context": "CREATE TABLE table_name_49 (genre VARCHAR, developer VARCHAR)"
  },
  {
    "answer": "SELECT genre FROM table_name_34 WHERE developer = \"banpresto\" AND japanese_title = \"ranma ½: netsuretsu kakutouhen\"",
    "question_en": "What genre is the Banpresto game tittled Ranma ½: netsuretsu kakutouhen?",
    "question_th": "เกม Banpresto ชื่อ Ranma ½: 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_en": "Position of defensive back, and an Overall smaller than 69 is what lowest pick #?",
    "question_th": "ตำแหน่งกองหลัง และคะแนนรวมที่น้อยกว่า 69 คือตัวเลือกต่ำสุด #?",
    "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_en": "Round of 11, and a Pick # larger than 14 is the highest overall pick?",
    "question_th": "รอบ 11 ทีม และตัวเลือก # ที่มากกว่า 14 คือตัวเลือกโดยรวมสูงสุด",
    "context": "CREATE TABLE table_name_64 (overall INTEGER, round VARCHAR, pick__number VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_67 WHERE overall = 208",
    "question_en": "Overall of 208 occurred in what round?",
    "question_th": "รวม 208 เกิดขึ้นในรอบใด?",
    "context": "CREATE TABLE table_name_67 (round VARCHAR, overall VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_62 WHERE to_par = \"–3\" AND score = 73 - 68 = 141",
    "question_en": "what player has To par of –3, and a Score of 73-68=141?",
    "question_th": "ผู้เล่นคนใดมีพาร์ถึง –3 และคะแนน 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_en": "what was steve flesch's to par when he was placed at t3 in the united states?",
    "question_th": "สตีฟ เฟลชมีแต้มพาร์เท่าไรเมื่อเขาถูกจัดให้อยู่ที่ t3 ในสหรัฐอเมริกา?",
    "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_en": "where did arron oberholser play?",
    "question_th": "อาร์รอน โอเบอร์โฮลเซอร์เล่นที่ไหน?",
    "context": "CREATE TABLE table_name_84 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_83 WHERE country = \"canada\" AND place = \"t8\"",
    "question_en": "what's the score in canada with place of t8?",
    "question_th": "คะแนนในแคนาดาอันดับ 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_en": "How many people attended the game on June 18?",
    "question_th": "วันที่ 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_en": "When was the earliest first game with 11 played and 12 games lost?",
    "question_th": "เกมแรกสุดที่เล่น 11 เกมและแพ้ 12 เกมคือเมื่อไหร่?",
    "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_en": "What is the average number of games played associated with a first game in 1997 and over 0 games drawn?",
    "question_th": "จำนวนเกมที่เล่นโดยเฉลี่ยในเกมแรกในปี 1997 และการจับสลากมากกว่า 0 เกมเป็นเท่าใด",
    "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_en": "How many first games are associated with 5 games played and under 3 games lost?",
    "question_th": "มีกี่เกมแรกที่เกี่ยวข้องกับการเล่น 5 เกมและแพ้น้อยกว่า 3 เกม?",
    "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_en": "How many games drawn when there are 78 losses and over 121 games played?",
    "question_th": "แพ้ 78 นัด และเสมอกัน 121 เกม มีกี่เกม?",
    "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_en": "How many times was there a draw when played is more than 4 and the first game is in 2000?",
    "question_th": "กี่ครั้งแล้วที่เล่นเกิน 4 และเกมแรกคือปี 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_en": "what is the most games lost when there were 0 draws?",
    "question_th": "แพ้ 0 เกมมากที่สุดคือเกมไหน?",
    "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_en": "what is the highest number of games played when there was 2 losses, percentage was 0.00% and more than 0 draws?",
    "question_th": "จำนวนเกมที่เล่นสูงสุดเมื่อแพ้ 2 ครั้ง เปอร์เซ็นต์คือ 0.00% และเสมอมากกว่า 0 คือเท่าใด",
    "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_en": "what is the most lost games when the percentage is 50.00% and games played is less than 2?",
    "question_th": "เกมไหนที่แพ้มากที่สุดเมื่อเปอร์เซ็นต์คือ 50.00% และเกมที่เล่นน้อยกว่า 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_en": "how many draws are there when percentage is 100.00% and played is 7?",
    "question_th": "มีกี่เสมอเมื่อเปอร์เซ็นต์คือ 100.00% และเล่นได้ 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_en": "how many times is there more than 0 draws and more than 0 losses?",
    "question_th": "กี่ครั้งแล้วที่เสมอมากกว่า 0 และแพ้มากกว่า 0?",
    "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_en": "Which Club has a Not winning editions of 1992, 2003?",
    "question_th": "สโมสรใดมีรุ่นไม่ชนะในปี 1992, 2003?",
    "context": "CREATE TABLE table_name_9 (club VARCHAR, not_winning_editions VARCHAR)"
  },
  {
    "answer": "SELECT finalists FROM table_name_22 WHERE club = \"győri\"",
    "question_en": "Who Finalists has a Club of győri?",
    "question_th": "ผู้เข้ารอบสุดท้ายคนใดมี Club of győri?",
    "context": "CREATE TABLE table_name_22 (finalists VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT winners FROM table_name_77 WHERE not_winning_editions = \"1992, 2003\"",
    "question_en": "Who is Winners that has  editions of 1992, 2003 as Not Winning",
    "question_th": "ใครคือผู้ชนะที่มีฉบับปี 1992, 2003 เป็น 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_en": "What is the Finalists that has 2008, 2012, 2013 as Not winning editions",
    "question_th": "ผู้เข้ารอบสุดท้ายที่มีรุ่นปี 2008, 2012, 2013 ไม่ชนะคืออะไร",
    "context": "CREATE TABLE table_name_88 (finalists VARCHAR, not_winning_editions VARCHAR)"
  },
  {
    "answer": "SELECT engine FROM table_name_9 WHERE chassis = \"theodore n183\"",
    "question_en": "What engine was in the Theodore n183?",
    "question_th": "Theodore n183 มีเครื่องยนต์อะไร",
    "context": "CREATE TABLE table_name_9 (engine VARCHAR, chassis VARCHAR)"
  },
  {
    "answer": "SELECT winners FROM table_name_79 WHERE year = \"2005\"",
    "question_en": "Who is listed as the Winners with a Year of 2005?",
    "question_th": "ใครมีรายชื่อเป็นผู้ชนะประจำปี 2548?",
    "context": "CREATE TABLE table_name_79 (winners VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_37 WHERE year = \"2005\"",
    "question_en": "Which Venue has a Year of 2005?",
    "question_th": "สถานที่ใดมีปี 2548?",
    "context": "CREATE TABLE table_name_37 (venue VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_86 WHERE date = \"november 15\"",
    "question_en": "What is the score when november 15 is the date?",
    "question_th": "คะแนนเมื่อ 15 พฤศจิกายน เป็นวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_86 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_32 WHERE date = \"november 15\"",
    "question_en": "What record has November 15 as the date?",
    "question_th": "บันทึกใดมีวันที่ 15 พฤศจิกายนเป็นวันที่?",
    "context": "CREATE TABLE table_name_32 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT 2009 FROM table_name_53 WHERE tournament = \"cincinnati\"",
    "question_en": "What tournament what held in Cincinnati in 2009?",
    "question_th": "การแข่งขันอะไรจัดขึ้นที่ซินซินนาติในปี 2552?",
    "context": "CREATE TABLE table_name_53 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT played FROM table_name_89 WHERE points_for = \"369\"",
    "question_en": "How many games played when the points for is 369?",
    "question_th": "เล่นกี่เกมเมื่อแต้มถึง 369?",
    "context": "CREATE TABLE table_name_89 (played VARCHAR, points_for VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_name_48 WHERE tries_for = \"100\"",
    "question_en": "what is the club that as 100 tries?",
    "question_th": "สโมสรที่พยายาม 100 ครั้งคืออะไร?",
    "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_en": "what is the points for when the club has 0 drawn and 60 tries against?",
    "question_th": "อะไรคือแต้มเมื่อสโมสรเสมอ 0 และพยายาม 60 ครั้ง?",
    "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_en": "How many draws are for the club senghenydd rfc?",
    "question_th": "สโมสร เซนเกนด์ด์ อาร์เอฟซี เสมอกันกี่นัด?",
    "context": "CREATE TABLE table_name_5 (drawn VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT points_for FROM table_name_37 WHERE club = \"senghenydd rfc\"",
    "question_en": "What is senghenydd rfc's points for?",
    "question_th": "คะแนนของ senghenydd rfc มีไว้เพื่ออะไร?",
    "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_en": "what is the amount lost when there is 1 draw and 515 points?",
    "question_th": "เสมอ 1 ครั้ง 515 แต้ม เสียไปเท่าไหร่?",
    "context": "CREATE TABLE table_name_72 (lost VARCHAR, drawn VARCHAR, points_for VARCHAR)"
  },
  {
    "answer": "SELECT AVG(year) FROM table_name_66 WHERE nominee = \"angélica rivera\"",
    "question_en": "In which year was Angélica Rivera a nominee?",
    "question_th": "Angélica Rivera ได้รับการเสนอชื่อเข้าชิงในปีใด",
    "context": "CREATE TABLE table_name_66 (year INTEGER, nominee VARCHAR)"
  },
  {
    "answer": "SELECT AVG(laps) FROM table_name_49 WHERE finish = \"23\"",
    "question_en": "What is the average lap of the race with a 23 finish?",
    "question_th": "รอบเฉลี่ยของการแข่งขันด้วยการจบสกอร์ 23 คือเท่าไร?",
    "context": "CREATE TABLE table_name_49 (laps INTEGER, finish VARCHAR)"
  },
  {
    "answer": "SELECT MIN(laps) FROM table_name_6 WHERE qual = \"145.926\"",
    "question_en": "What is the lowest lap with a 145.926 qual?",
    "question_th": "รอบต่ำสุดด้วยรอบคัดเลือก 145.926 คือเท่าไร?",
    "context": "CREATE TABLE table_name_6 (laps INTEGER, qual VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_98 WHERE laps = 51",
    "question_en": "What is the finish with 51 laps?",
    "question_th": "จบ 51 รอบเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_98 (finish VARCHAR, laps VARCHAR)"
  },
  {
    "answer": "SELECT SUM(laps) FROM table_name_80 WHERE year = \"1958\"",
    "question_en": "How many laps were in 1958?",
    "question_th": "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_en": "What is the smallest area (sq mi) that has 160 as it rank?",
    "question_th": "พื้นที่ที่เล็กที่สุด (ตร.ไมล์) ที่มี 160 อยู่ในอันดับคือเท่าใด",
    "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²_ > 104 AND island = \"sula, sogn og fjordane\"",
    "question_en": "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?",
    "question_th": "อันดับใดมีพื้นที่เล็กกว่า (ตารางไมล์) มากกว่า 48 และพื้นที่ (กิโลเมตร 2) มากกว่า 104 และเกาะซูลา ซอกน์ ออง ฟยอร์เดน?",
    "context": "CREATE TABLE table_name_12 (rank VARCHAR, island VARCHAR, area__sq_mi_ VARCHAR, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT AVG(api_level) FROM table_name_7 WHERE distribution = \"10.6%\"",
    "question_en": "with Distribution of 10.6% what is the average api level?",
    "question_th": "โดยมีการกระจาย 10.6% ระดับ API เฉลี่ยคือเท่าใด",
    "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_en": "with release date of february 9, 2011, what is the api level?",
    "question_th": "โดยมีวันวางจำหน่ายวันที่ 9 กุมภาพันธ์ 2554 ระดับ api คืออะไร?",
    "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_en": "with api level 3, what is the code name?",
    "question_th": "ด้วย api ระดับ 3 ชื่อรหัสคืออะไร?",
    "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_en": "with distribution of 20.6% what is the code name?",
    "question_th": "มีการกระจาย 20.6% ชื่อรหัสคืออะไร?",
    "context": "CREATE TABLE table_name_90 (code_name VARCHAR, distribution VARCHAR)"
  },
  {
    "answer": "SELECT code_name FROM table_name_71 WHERE api_level = 18",
    "question_en": "with api level of 18, what's the code name?",
    "question_th": "ด้วยระดับ api 18 ชื่อรหัสคืออะไร?",
    "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_en": "Which entrant had fewer than 33 points in 1999?",
    "question_th": "ผู้เข้าร่วมคนใดมีคะแนนน้อยกว่า 33 คะแนนในปี 1999",
    "context": "CREATE TABLE table_name_83 (entrant VARCHAR, points VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT chassis FROM table_name_43 WHERE points = 16",
    "question_en": "Which chassis had 16 points?",
    "question_th": "แชสซีตัวไหนมี 16 แต้ม?",
    "context": "CREATE TABLE table_name_43 (chassis VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT MIN(points) FROM table_name_23 WHERE engine = \"gc37-01 v10\"",
    "question_en": "Which gc37-01 v10 engine has the fewest points?",
    "question_th": "เครื่องยนต์ gc37-01 v10 ตัวไหนมีคะแนนน้อยที่สุด?",
    "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_en": "What was Kerry's lowest number of votes where Other received 0.8% and Kerry 70.4%?",
    "question_th": "คะแนนโหวตต่ำสุดของ Kerry คือข้อใดโดยที่อื่นๆ ได้รับ 0.8% และ 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_en": "How many votes did Others receive where Kerry has 44.6%, and Bush more than 163,650 votes?",
    "question_th": "คนอื่นได้คะแนนโหวตกี่คะแนน โดยที่ Kerry ได้คะแนน 44.6% และ Bush มากกว่า 163,650 คะแนน?",
    "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_en": "Which Title has a Termination of Mission of current?",
    "question_th": "ฉายาใดที่มีการยุติภารกิจในปัจจุบัน?",
    "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_en": "Which Appointed has Termination of Mission on april 7, 2005?",
    "question_th": "ซึ่งได้รับการแต่งตั้งมีการสิ้นสุดภารกิจในวันที่ 7 เมษายน พ.ศ. 2548",
    "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_en": "Which Appointed has a Presentation of Credentials on November 22, 1990",
    "question_th": "ซึ่งได้รับการแต่งตั้งมีการนำเสนอหนังสือรับรองเมื่อวันที่ 22 พฤศจิกายน 2533",
    "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_en": "Which Representative has a Presentation of Credentials on september 8, 2005?",
    "question_th": "ตัวแทนคนใดมีการนำเสนอหนังสือรับรองในวันที่ 8 กันยายน พ.ศ. 2548",
    "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_en": "Which Termination of Mission has a Presentation of Credentials on October 29, 1981",
    "question_th": "ซึ่งการยุติภารกิจมีการนำเสนอหนังสือรับรองเมื่อวันที่ 29 ตุลาคม พ.ศ. 2524",
    "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_en": "What is the total for danny allsopp?",
    "question_th": "แดนนี่ ออลซอปป์ ยอดรวมเท่าไหร่?",
    "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_en": "Where is the area of operation that had drilling during the year 1999?",
    "question_th": "พื้นที่ปฏิบัติการที่มีการขุดเจาะในปี 2542 อยู่ที่ไหน?",
    "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_en": "What country did the client Agiba-agip work in?",
    "question_th": "ลูกค้า Agiba-agip ทำงานในประเทศใด",
    "context": "CREATE TABLE table_name_5 (country VARCHAR, client VARCHAR)"
  },
  {
    "answer": "SELECT years_of_operation FROM table_name_88 WHERE client = \"soc\"",
    "question_en": "What years was soc a client?",
    "question_th": "Soc เป็นลูกค้ากี่ปี?",
    "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_en": "What years was El Mabrouk the area of operation?",
    "question_th": "El Mabrouk เปิดให้บริการในปีใด",
    "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_en": "What services were in the area of operation Wadi Borjuj?",
    "question_th": "มีบริการอะไรบ้างในพื้นที่ปฏิบัติการ 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_en": "How many points did the Cosworth v8 engine get in 1972?",
    "question_th": "เครื่องยนต์ Cosworth v8 ได้กี่คะแนนในปี 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_en": "Which gold Coast has a Melbourne of yes, a Perth of yes, an Auckland of no, and a Sydney of no?",
    "question_th": "โกลด์โคสต์ใดที่มีเมลเบิร์นที่ใช่ เพิร์ธที่ใช่ โอ๊คแลนด์ที่ใช่ และซิดนีย์ที่ใช่",
    "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_en": "Which Adelaide has an Auckland of no and a Melbourne of no?",
    "question_th": "แอดิเลดแห่งใดมีโอ๊คแลนด์ที่ไม่และเมลเบิร์นไม่?",
    "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_en": "Which Sydney has a Gold Coast of yes, an Adelaide of no, and an Auckland of yes?",
    "question_th": "ซิดนีย์แห่งใดมีโกลด์โคสต์ที่ใช่ แอดิเลดที่ใช่ และโอ๊คแลนด์ที่ใช่",
    "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_en": "Which Sydney has a Perth of no, an Adelaide of yes, and a Gold Coast of no?",
    "question_th": "ซิดนีย์แห่งใดมีเพิร์ธที่ใช่ แอดิเลดที่ใช่ และโกลด์โคสต์ที่ใช่",
    "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_en": "Which Adelaide has a Sydney of yes, a Perth of no, a Melbourne of yes, and an Auckland of no?",
    "question_th": "แอดิเลดแห่งใดมีซิดนีย์ที่ใช่ เพิร์ธที่ใช่ เมลเบิร์นที่ใช่ และโอ๊คแลนด์ที่ใช่",
    "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_en": "Which Melbourne has a Perth of yes, and an Auckland of yes?",
    "question_th": "เมลเบิร์นเมืองไหนมีเพิร์ธใช่ และโอ๊คแลนด์มีใช่",
    "context": "CREATE TABLE table_name_35 (melbourne VARCHAR, perth VARCHAR, auckland VARCHAR)"
  },
  {
    "answer": "SELECT analog FROM table_name_9 WHERE callsign = \"wxmi\"",
    "question_en": "what is the analog type for wxmi?",
    "question_th": "wxmi ประเภทอะนาล็อกคืออะไร?",
    "context": "CREATE TABLE table_name_9 (analog VARCHAR, callsign VARCHAR)"
  },
  {
    "answer": "SELECT callsign FROM table_name_69 WHERE affiliation = \"independent\"",
    "question_en": "what is the callsign for independent affiliation?",
    "question_th": "สัญญาณเรียกสำหรับสังกัดอิสระคืออะไร?",
    "context": "CREATE TABLE table_name_69 (callsign VARCHAR, affiliation VARCHAR)"
  },
  {
    "answer": "SELECT analog FROM table_name_45 WHERE affiliation = \"cw\" AND digital = \"26\"",
    "question_en": "what is the analog type for cw on digital 26?",
    "question_th": "cw บนดิจิตอล 26 ประเภทอะนาล็อกคืออะไร?",
    "context": "CREATE TABLE table_name_45 (analog VARCHAR, affiliation VARCHAR, digital VARCHAR)"
  },
  {
    "answer": "SELECT callsign FROM table_name_42 WHERE analog = \"19\"",
    "question_en": "what is the callsign for analog 19?",
    "question_th": "สัญญาณเรียกของอนาล็อก 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_en": "Who is the winner of the European Poker Tour Grand Final?",
    "question_th": "ใครคือผู้ชนะการแข่งขัน 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ł 1,226,711\"",
    "question_en": "What is the name of the event that had a prize of zł 1,226,711?",
    "question_th": "งานที่มีรางวัลมูลค่า 1,226,711 zł ชื่ออะไร",
    "context": "CREATE TABLE table_name_22 (event VARCHAR, prize VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_39 WHERE prize = \"zł 1,226,711\"",
    "question_en": "Who was the winner of the prize zł 1,226,711?",
    "question_th": "ใครคือผู้ชนะรางวัล zł 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_en": "What is the score of Goal For which has a Ties larger 0?",
    "question_th": "คะแนนของประตูที่เสมอกันมากกว่า 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_en": "Name the sum of goals conceded when lost is more than 7 and points less than 26",
    "question_th": "บอกผลรวมประตูที่เสียเมื่อเสียมากกว่า 7 และแต้มน้อยกว่า 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_en": "Name the most place for goals scored more than 28 and played less than 18",
    "question_th": "ตั้งชื่อสถานที่มากที่สุดสำหรับประตูที่ทำได้มากกว่า 28 และเล่นน้อยกว่า 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 = \"← majority\"",
    "question_en": "Name the D46 when it has D 44 of ← majority",
    "question_th": "ตั้งชื่อ D46 เมื่อมีค่า D 44 ของ ← ส่วนใหญ่",
    "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_en": "Name the D 45 which has D 44 of d 53",
    "question_th": "ตั้งชื่อ D 45 ซึ่งมี D 44 ของ 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_en": "Name the D 43 when it has D 45 of d 25",
    "question_th": "ตั้งชื่อ D 43 เมื่อมี D 45 จาก 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_en": "Name the D 43 when it has D 41 of d 56",
    "question_th": "ตั้งชื่อ D 43 เมื่อมี D 41 จาก 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_en": "Name the D 46 which has D 42 of r 14",
    "question_th": "ตั้งชื่อ D 46 ซึ่งมี D 42 ของ 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_en": "Which nominating festival did Russia enter?",
    "question_th": "รัสเซียเข้าร่วมเทศกาลเสนอชื่อใด",
    "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_en": "Which nominating festival did Olga Baillif enter?",
    "question_th": "Olga Baillif เข้าร่วมเทศกาลเสนอชื่อใด",
    "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_en": "Which nominating festival did Bosnia and Herzegovina enter?",
    "question_th": "บอสเนียและเฮอร์เซโกวีนาเข้าร่วมเทศกาลเสนอชื่อใด",
    "context": "CREATE TABLE table_name_62 (nominating_festival VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT director_s_ FROM table_name_13 WHERE film = \"mi-temps\"",
    "question_en": "Which director made Mi-temps?",
    "question_th": "ผู้กำกับคนไหนที่สร้าง 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_en": "Which nominating festival did United Kingdom enter?",
    "question_th": "สหราชอาณาจักรเข้าร่วมเทศกาลเสนอชื่อใด",
    "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_en": "How many years was Audi Sport Team Joest in 3rd position?",
    "question_th": "Audi Sport Team Joest ครองอันดับ 3 กี่ปี?",
    "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_en": "Who were the co-drivers with more than 377 laps in 1st position?",
    "question_th": "ใครคือนักแข่งร่วมที่มีรอบมากกว่า 377 รอบในตำแหน่งที่ 1?",
    "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_en": "How many goals were scored when they had over 28 points and played over 18 games?",
    "question_th": "มีกี่ประตูที่ทำได้เมื่อพวกเขามีมากกว่า 28 แต้มและเล่นมากกว่า 18 เกม?",
    "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_en": "What place is associated with under 28 points, under 11 games lost, and under 18 games played?",
    "question_th": "สถานที่ใดที่เกี่ยวข้องกับคะแนนต่ำกว่า 28 แต้ม แพ้ต่ำกว่า 11 เกม และลงเล่นต่ำกว่า 18 เกม?",
    "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_en": "How many points are there when they have under 27 goals scored, conceded 24 goals, and lost less than 6 times?",
    "question_th": "มีกี่คะแนนเมื่อทำได้ต่ำกว่า 27 ประตู เสีย 24 ประตู แพ้น้อยกว่า 6 ครั้ง?",
    "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_en": "What year did Bryant Heating enter?",
    "question_th": "Bryant Heating เข้าปีใด",
    "context": "CREATE TABLE table_name_48 (year INTEGER, entrant VARCHAR)"
  },
  {
    "answer": "SELECT category FROM table_name_45 WHERE country = \"russia\"",
    "question_en": "Russia has films in which category?",
    "question_th": "รัสเซียมีภาพยนตร์อยู่ในหมวดหมู่ใด",
    "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_en": "The Prix UIP Vilo Do Conde festival nominated which film?",
    "question_th": "เทศกาล Prix UIP Vilo Do Conde ได้รับการเสนอชื่อเข้าชิงภาพยนตร์เรื่องใด?",
    "context": "CREATE TABLE table_name_7 (film VARCHAR, nominating_festival VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_98 WHERE film = \"le portefeuille\"",
    "question_en": "Which country made Le Portefeuille?",
    "question_th": "ประเทศใดสร้าง 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_en": "Which nominating festival nominated Iao Lethem's film?",
    "question_th": "เทศกาลเสนอชื่อใดเสนอชื่อเข้าชิงภาพยนตร์ของ Iao Lethem",
    "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_en": "Julio Robledo represents which country?",
    "question_th": "Julio Robledo เป็นตัวแทนของประเทศใด",
    "context": "CREATE TABLE table_name_55 (country VARCHAR, director_s_ VARCHAR)"
  },
  {
    "answer": "SELECT category FROM table_name_60 WHERE film = \"(a) torzija\"",
    "question_en": "(A) Torzija was nominated in which category?",
    "question_th": "(A) Torzija ได้รับการเสนอชื่อเข้าชิงในประเภทใด?",
    "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_en": "How many losses altogether were had by teams that won 12 times, had 40-4 points, and more than 57 goals?",
    "question_th": "ทีมที่ชนะ 12 ครั้ง มี 40-4 แต้ม และมากกว่า 57 ประตู แพ้ไปทั้งหมดกี่ทีม?",
    "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_en": "What's the average number of played games from Rayo Vallecano with less than 12 wins?",
    "question_th": "จำนวนเกมที่เล่นโดยเฉลี่ยของราโย บาเยกาโน่ที่ชนะน้อยกว่า 12 นัดคือเท่าไร?",
    "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_en": "Who has canidae as family and canis rufus audubon & bachman, 1851 as species/authority?",
    "question_th": "ใครมี canidae เป็นวงศ์และ Canis rufus audubon & bachman, 1851 เป็นสายพันธุ์/มีอำนาจ",
    "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_en": "Name the lowest league for play-offs more than 0 and total of 25",
    "question_th": "ตั้งชื่อลีกต่ำสุดสำหรับรอบเพลย์ออฟมากกว่า 0 และรวมเป็น 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_en": "What are the earliest year with games played fewer than 2?",
    "question_th": "ปีแรกสุดที่มีเกมเล่นน้อยกว่า 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_en": "What is the number of games played in the season before 2005?",
    "question_th": "จำนวนเกมที่เล่นในฤดูกาลก่อนปี 2548 เป็นจำนวนเท่าใด?",
    "context": "CREATE TABLE table_name_18 (played INTEGER, first_game INTEGER)"
  },
  {
    "answer": "SELECT MIN(selection) FROM table_name_39 WHERE player = \"ron barnett\"",
    "question_en": "Name the least selection for ron barnett",
    "question_th": "ตั้งชื่อตัวเลือกที่น้อยที่สุดสำหรับรอน บาร์เน็ตต์",
    "context": "CREATE TABLE table_name_39 (selection INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_88 WHERE college = \"notre dame\"",
    "question_en": "Name the player that went to notre dame",
    "question_th": "ตั้งชื่อผู้เล่นที่ไป 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_en": "What is the to par that has bill collins as the player?",
    "question_th": "พาร์ที่มีบิล คอลลินส์เป็นผู้เล่นคืออะไร?",
    "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_en": "How much money has 76-70-68-73=287 as a score?",
    "question_th": "76-70-68-73=287 ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_86 (money___ INTEGER, score VARCHAR)"
  },
  {
    "answer": "SELECT commissioned FROM table_name_29 WHERE operator = \"vietnam\"",
    "question_en": "What is the commissioned for Vietnam?",
    "question_th": "อะไรที่ได้รับมอบหมายให้เวียดนาม?",
    "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_en": "What is the commissioned with a 636.3 project, and ordered status?",
    "question_th": "อะไรคือสิ่งที่ได้รับมอบหมายจากโปรเจ็กต์ 636.3 และสถานะการสั่งซื้อ",
    "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_en": "When was the date that had a Loss of Shirley (0-1)?",
    "question_th": "วันที่สูญเสีย 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_en": "Where was the game on Thursday, April 29, and they played the Chicago Cubs?",
    "question_th": "เกมวันพฤหัสบดีที่ 29 เมษายน แข่งที่ไหนกับทีมชิคาโก้ คับส์?",
    "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_en": "Who were they playing when Bird (1-4) had a loss?",
    "question_th": "พวกเขาเล่นกับใครเมื่อเบิร์ด (1-4) แพ้?",
    "context": "CREATE TABLE table_name_42 (opponent VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_44 WHERE loss = \"kern (0-2)\"",
    "question_en": "What was the score of the game when there was a loss of Kern (0-2)?",
    "question_th": "เกมที่แพ้เคิร์น (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_en": "What camera has the highest Mpix with an aspect ratio of 2:1, a height less than 1536, and a width smaller than 2048?",
    "question_th": "กล้องใดมี Mpix สูงสุดด้วยอัตราส่วน 2:1 ความสูงน้อยกว่า 1536 และความกว้างน้อยกว่า 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_en": "What is the max fps of a camera with mpix larger than 8.4 and frame size of 4k 16:9?",
    "question_th": "fps สูงสุดของกล้องที่มี mpix ใหญ่กว่า 8.4 และขนาดเฟรม 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_en": "What frame size corresponds the selection with a max fps of 120, a width of 2048, and height of 1024?",
    "question_th": "ขนาดเฟรมใดที่สอดคล้องกับการเลือกด้วย fps สูงสุด 120 ความกว้าง 2048 และความสูง 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_en": "What is the overall record of the Ravens?",
    "question_th": "บันทึกโดยรวมของ 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_en": "What is the division record of Sussex Central?",
    "question_th": "บันทึกการแบ่งส่วนของ Sussex Central คืออะไร?",
    "context": "CREATE TABLE table_name_41 (division_record VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT engine FROM table_name_30 WHERE points = 3",
    "question_en": "Which Engine has Points of 3?",
    "question_th": "เครื่องยนต์ใดมีคะแนน 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_en": "What are the highest points with a Chassis of gordini t16, and a Year smaller than 1954?",
    "question_th": "อะไรคือจุดสูงสุดด้วยแชสซีของ gordini t16 และหนึ่งปีที่เล็กกว่าปี 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_en": "What is the lowest grid that Paul Tracy had when he had over 4 points?",
    "question_th": "ตารางต่ำสุดที่ Paul Tracy มีเมื่อเขามีมากกว่า 4 แต้มคือเท่าไร?",
    "context": "CREATE TABLE table_name_67 (grid INTEGER, name VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_79 WHERE winner = \"aaron gustavson\"",
    "question_en": "What is the Date, when the Winner is Aaron Gustavson?",
    "question_th": "วันที่คือเมื่อผู้ชนะคือ Aaron Gustavson?",
    "context": "CREATE TABLE table_name_79 (date VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_39 WHERE city = \"warsaw\"",
    "question_en": "What is the Date, when the City is Warsaw?",
    "question_th": "วันที่เท่าไหร่เมื่อเมืองคือกรุงวอร์ซอ?",
    "context": "CREATE TABLE table_name_39 (date VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT prize FROM table_name_90 WHERE winner = \"aaron gustavson\"",
    "question_en": "What is the Prize, when the Winner is Aaron Gustavson?",
    "question_th": "รางวัลคืออะไร เมื่อผู้ชนะคือ Aaron Gustavson?",
    "context": "CREATE TABLE table_name_90 (prize VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_19 WHERE city = \"berlin\"",
    "question_en": "Who is the Winner, when the City is Berlin?",
    "question_th": "ใครคือผู้ชนะ เมื่อเมืองคือเบอร์ลิน?",
    "context": "CREATE TABLE table_name_19 (winner VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_name_45 WHERE \"name\" = \"name\"",
    "question_en": "What is the name of the party called name?",
    "question_th": "ชื่อพรรคที่เรียกว่าอะไร?",
    "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_en": "What is the Left Office of cabinet secretary for culture and external affairs named?",
    "question_th": "สำนักงานฝ่ายซ้ายของเลขาธิการคณะรัฐมนตรีด้านวัฒนธรรมและกิจการภายนอกชื่ออะไร",
    "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_en": "What left office does the First Minister of henry mcleish belong to?",
    "question_th": "รัฐมนตรีคนแรกของเฮนรี แมคเคลียชดำรงตำแหน่งที่เหลืออยู่ในสำนักงานใด",
    "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_en": "What was the sum total of the region after 1976 when Mareeba had population was more than 18,212?",
    "question_th": "ผลรวมของภูมิภาคหลังปี 2519 เมื่อมารีบามีประชากรมากกว่า 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_en": "Name the most games for standing of 5th, lebel and goals against larger than 220 with lost more than 52",
    "question_th": "รายชื่อเกมมากที่สุดในการยืนอันดับที่ 5 เลเบล และประตูต่อมากกว่า 220 โดยแพ้มากกว่า 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_en": "Name the least tied with games more than 70 and goals for less than 310 with points of 98",
    "question_th": "ระบุชื่อเสมอกันน้อยที่สุดด้วยเกมมากกว่า 70 และประตูน้อยกว่า 310 ด้วยคะแนน 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_en": "Which player had a place of T4?",
    "question_th": "ผู้เล่นคนไหนมีตำแหน่ง T4?",
    "context": "CREATE TABLE table_name_62 (player VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT MAX(year) FROM table_name_54 WHERE points < 0",
    "question_en": "What is the latest year with less than 0 points?",
    "question_th": "ล่าสุดได้คะแนนไม่ถึง 0 คือปีไหน?",
    "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_en": "What entrant has a year earlier than 1960 and a veritas straight-6 engine?",
    "question_th": "ผู้เข้าแข่งขันคนใดที่มีเครื่องยนต์ veritas ตรง 6 ปีก่อนปี 1960?",
    "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_en": "What is the average Year with a Veritas rs chassis and more than 0 points?",
    "question_th": "ปีเฉลี่ยที่มีแชสซี Veritas rs และมากกว่า 0 คะแนนคือเท่าไร?",
    "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_en": "What is the number of points for the Entrant of wolfgang seidel and a Cooper t45 chassis later than 1960?",
    "question_th": "จำนวนคะแนนสำหรับผู้เข้าแข่งขันของ Wolfgang seidel และแชสซี Cooper t45 หลังปี 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_en": "What is the latest year for a Emeryson 1006 chassis with more than 0 points?",
    "question_th": "ล่าสุดแชสซีส์ Emeryson 1006 มีมากกว่า 0 แต้มคือปีไหน?",
    "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_en": "What was the score of the second leg with an agg of 4-6?",
    "question_th": "เลกสองสกอร์รวม 4-6 เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_50 (agg VARCHAR)"
  },
  {
    "answer": "SELECT team_2 FROM table_name_25 WHERE team_1 = \"africa sports\"",
    "question_en": "What is the second team that has first team of Africa sports?",
    "question_th": "ทีมที่สองที่มีทีมกีฬาแอฟริกาชุดแรกคืออะไร?",
    "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_en": "What is team one that has tp englebert for team 2?",
    "question_th": "ทีมหนึ่งที่มี tp englebert สำหรับทีม 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_en": "Which team has far rabat as the team 1?",
    "question_th": "ทีมไหนมีราบัตเท่าทีม 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_en": "with a Time/Retired of +47.376 what is the lap sum?",
    "question_th": "โดยมีเวลา/เกษียณเป็น +47.376 ผลรวมรอบเป็นเท่าใด",
    "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_en": "with a Rider of marco melandri, and a Grid smaller than 10, what is the highest lap count?",
    "question_th": "กับ Rider ของ Marco Melandri และกริดน้อยกว่า 10 จำนวนรอบสูงสุดคือเท่าใด",
    "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_en": "with more than 32 laps and sylvain guintoli as rider, what's the lowest grid ?",
    "question_th": "ด้วยรอบมากกว่า 32 รอบและมีซิลเวน กินโทลีเป็นคนขี่ เส้นกริดต่ำสุดคือเท่าไหร่?",
    "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_en": "Who came in 2nd place when Ding Junhui won in 2010?",
    "question_th": "ใครมาเป็นอันดับ 2 เมื่อ Ding Junhui ชนะในปี 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_en": "What ethnic group is 65,104 in 1931?",
    "question_th": "ชาติพันธุ์ใดคือ 65,104 ในปี 1931",
    "context": "CREATE TABLE table_name_43 (malay_ethnic_group VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_21 WHERE week = \"vegas verdicts\"",
    "question_en": "For Vegas Verdicts week, what was the result?",
    "question_th": "สำหรับสัปดาห์ Vegas Verdicts ผลลัพธ์คืออะไร?",
    "context": "CREATE TABLE table_name_21 (result VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_47 WHERE theme = \"heroes\"",
    "question_en": "Which week had a theme of Heroes?",
    "question_th": "สัปดาห์ใดมีธีมของฮีโร่?",
    "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_en": "What was the theme for Vegas Verdicts week with a result of Advanced?",
    "question_th": "ธีมของสัปดาห์ Vegas Verdicts ที่มีผลการแข่งขันขั้นสูงคืออะไร?",
    "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_en": "What is the Placement when the Votes are fewer than 208, and when the Candidate is Jordan Turner?",
    "question_th": "ตำแหน่งใดเมื่อคะแนนโหวตน้อยกว่า 208 และเมื่อผู้สมัครคือ 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_en": "Who is the Candidate when the Riding is Hochelaga?",
    "question_th": "ใครคือผู้สมัครเมื่อ Riding คือ Hochelaga?",
    "context": "CREATE TABLE table_name_13 (candidate VARCHAR, riding VARCHAR)"
  },
  {
    "answer": "SELECT placement FROM table_name_96 WHERE candidate = \"jean-patrick berthiaume\"",
    "question_en": "What is the Placement when the Candidate is Jean-Patrick Berthiaume?",
    "question_th": "ตำแหน่งเมื่อผู้สมัครคือ 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_en": "What is the value for the League Cup when the FA Cup value is 0 13 0 (49)?",
    "question_th": "ลีกคัพเมื่อค่าเอฟเอคัพเป็น 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–present\"",
    "question_en": "What is the League Cup value for 1991–present?",
    "question_th": "มูลค่าลีกคัพสำหรับปี 1991–ปัจจุบันคือเท่าไร?",
    "context": "CREATE TABLE table_name_13 (league VARCHAR, years VARCHAR)"
  },
  {
    "answer": "SELECT league FROM table_name_43 WHERE europe = \"0 29 (152)\"",
    "question_en": "What league has a value of 0 29 (152) for Europe?",
    "question_th": "ลีกใดมีค่าเท่ากับ 0 29 (152) สำหรับยุโรป?",
    "context": "CREATE TABLE table_name_43 (league VARCHAR, europe VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_1 WHERE result = \"w 23–14\"",
    "question_en": "Which week was there a w 23–14 result?",
    "question_th": "สัปดาห์ใดที่มีผลการแข่งขัน 23–14 อ.ค.?",
    "context": "CREATE TABLE table_name_1 (week VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_64 WHERE opponent = \"hawthorn\"",
    "question_en": "Name the score for hawthorn opponent",
    "question_th": "ตั้งชื่อคะแนนให้คู่ต่อสู้ฮอว์ธอร์น",
    "context": "CREATE TABLE table_name_64 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_13 WHERE venue = \"mcg\" AND opponent = \"footscray\"",
    "question_en": "Name the score at mcg venue and footscray opponent",
    "question_th": "ตั้งชื่อคะแนนที่สถานที่ mcg และฝ่ายตรงข้าม footscray",
    "context": "CREATE TABLE table_name_13 (score VARCHAR, venue VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_19 WHERE opponent = \"collingwood\"",
    "question_en": "Name the venue with opponent of collingwood",
    "question_th": "ตั้งชื่อสถานที่กับฝ่ายตรงข้ามของคอลลิงวูด",
    "context": "CREATE TABLE table_name_19 (venue VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_38 WHERE result = \"2–0\" AND score = \"2 – 0\"",
    "question_en": "When has Result of 2–0, and a Score of 2 – 0?",
    "question_th": "เมื่อใดที่ผลการแข่งขันเป็น 2–0 และคะแนนเป็น 2 – 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_en": "Which Venue has a Goal larger than 3, and a Competition of 2011 afc asian cup?",
    "question_th": "สถานที่ใดมีเป้าหมายมากกว่า 3 และการแข่งขันฟุตบอลเอเชียนคัพ 2011",
    "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_en": "Name the casualities for nation of incident of hostile on 2006-06-26",
    "question_th": "ตั้งชื่อผู้เสียชีวิตสำหรับประเทศที่เกิดเหตุไม่เป็นมิตรเมื่อวันที่ 26-06-2549",
    "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_en": "Name the casualities for kabul area",
    "question_th": "ตั้งชื่อผู้เสียชีวิตสำหรับพื้นที่คาบูล",
    "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_en": "Name the location on 2006-04-07 for direct fire",
    "question_th": "ตั้งชื่อสถานที่เมื่อ 2006-04-07 สำหรับการยิงโดยตรง",
    "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_en": "Which venue has a Date of 20,21,22,23,24 november 1998?",
    "question_th": "สนามใดมีวันที่ 20,21,22,23,24 พฤศจิกายน 2541?",
    "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_en": "Which Away captain has a Date of 26,27,28,29 december 1998?",
    "question_th": "กัปตันทีมเยือนคนไหนมีวันที่ 26,27,28,29 ธันวาคม 1998?",
    "context": "CREATE TABLE table_name_12 (away_captain VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_92 WHERE result = \"draw\"",
    "question_en": "Which venue has a Result of draw?",
    "question_th": "สนามไหนมีผลการจับสลาก?",
    "context": "CREATE TABLE table_name_92 (venue VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT home_captain FROM table_name_53 WHERE venue = \"melbourne cricket ground\"",
    "question_en": "Which Home captain has a Venue of melbourne cricket ground?",
    "question_th": "กัปตันทีมเจ้าบ้านคนไหนมีสนามคริกเก็ตเมลเบิร์น?",
    "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_en": "Which Away captain has a Date of 2,3,4,5 january 1999?",
    "question_th": "กัปตันทีมเยือนคนไหนมีวันที่ 2,3,4,5 มกราคม 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_en": "What was the margin of victory for the win with a score of 71-69-71-70=281?",
    "question_th": "ชัยชนะด้วยคะแนน 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_en": "What is the to par value for the game with a winning score of 71-69-71-70=281?",
    "question_th": "มูลค่าพาร์ของเกมที่มีคะแนนชนะ 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_en": "For what tournament was Bubba Watson the runner-up?",
    "question_th": "Bubba Watson เป็นรองแชมป์รายการใดในทัวร์นาเมนต์ใด",
    "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_en": "When John Senden was the runner-up, what was the To Par?",
    "question_th": "เมื่อจอห์น เซนเดน รองแชมป์ ทูพาร์ คืออะไร?",
    "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_en": "In 1988, what Metro Champion had a Runner-up of Memphis State?",
    "question_th": "ในปี 1988 Metro Champion คนไหนได้รองแชมป์ 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_en": "What is the latest year a ride opened that was manufactured by Zamperla, was a convoy ride, and had a name of Tiny Truckers?",
    "question_th": "ปีล่าสุดที่รถเปิดซึ่งผลิตโดย Zamperla เป็นรถขบวนและมีชื่อว่า 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_en": "Who is the manufacturer of the mini jet red baron ride that opened before 2001?",
    "question_th": "ใครเป็นผู้ผลิตรถมินิเจ็ทเรดบารอนที่เปิดก่อนปี 2544?",
    "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_en": "Name the least year for les triplettes de belleville",
    "question_th": "ตั้งชื่อปีน้อยที่สุดสำหรับ 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_en": "Name the english title for zhang yimou",
    "question_th": "ตั้งชื่อหัวข้อภาษาอังกฤษให้จางอี้โหมว",
    "context": "CREATE TABLE table_name_18 (english_title VARCHAR, director VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_81 WHERE year = 2002",
    "question_en": "Name the country for 2002",
    "question_th": "ตั้งชื่อประเทศสำหรับปี 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_en": "Name the english title for mexico/spain/usa",
    "question_th": "ตั้งชื่อหัวข้อภาษาอังกฤษสำหรับเม็กซิโก/สเปน/สหรัฐอเมริกา",
    "context": "CREATE TABLE table_name_24 (english_title VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_95 WHERE year > 2008",
    "question_en": "Name the country with year more than 2008",
    "question_th": "ตั้งชื่อประเทศด้วยปีมากกว่า 2008",
    "context": "CREATE TABLE table_name_95 (country VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT AVG(year) FROM table_name_37 WHERE engine = \"cosworth v8\"",
    "question_en": "What year did the Cosworth v8 engine participate in?",
    "question_th": "เครื่องยนต์ Cosworth v8 เข้าร่วมในปีใด",
    "context": "CREATE TABLE table_name_37 (year INTEGER, engine VARCHAR)"
  },
  {
    "answer": "SELECT AVG(year) FROM table_name_65 WHERE points > 0",
    "question_en": "Which year did the team receive more than 0 points?",
    "question_th": "ทีมไหนได้เกิน 0 คะแนน ปีไหน?",
    "context": "CREATE TABLE table_name_65 (year INTEGER, points INTEGER)"
  },
  {
    "answer": "SELECT chassis FROM table_name_1 WHERE year = 1971",
    "question_en": "Which chassis was used in 1971?",
    "question_th": "แชสซีใดที่ใช้ในปี 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_en": "What was the time for Jean Luc Razakarivony with less than 3 heat and more than 2 lanes?",
    "question_th": "Jean Luc Razakarivony ที่มีความร้อนน้อยกว่า 3 เลนและมากกว่า 2 เลนกี่โมง?",
    "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_en": "What was Domenico Fioravanti's time on lane 5?",
    "question_th": "เวลาของ Domenico Fioravanti บนเลน 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_en": "What is the nationality with less than 9 heat, and a time of 1:01.87?",
    "question_th": "สัญชาติอะไร น้อยกว่า 9 ฮีต เวลา 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_en": "On which dates played Home Captain Courtney Walsh at the Queen's Park Oval?",
    "question_th": "วันที่ใดที่เล่นกัปตันทีมเหย้าคอร์ทนีย์วอลช์ที่วงรีควีนส์พาร์ค",
    "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_en": "On what dates did the draw at the Antigua Recreation Ground happen?",
    "question_th": "การจับสลากที่ Antigua Recreation Ground เกิดขึ้นวันไหน?",
    "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_en": "Who was the Home Captain at Sabina Park?",
    "question_th": "ใครคือกัปตันทีมประจำบ้านที่ซาบีน่า พาร์ค",
    "context": "CREATE TABLE table_name_65 (home_captain VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_76 WHERE result = \"draw\"",
    "question_en": "When did the draw happen?",
    "question_th": "การจับสลากเกิดขึ้นเมื่อใด?",
    "context": "CREATE TABLE table_name_76 (date VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT SUM(joined) FROM table_name_59 WHERE institution = \"northeastern university\"",
    "question_en": "When did Northeastern University join?",
    "question_th": "มหาวิทยาลัยภาคตะวันออกเฉียงเหนือเข้าร่วมเมื่อใด",
    "context": "CREATE TABLE table_name_59 (joined INTEGER, institution VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_1 WHERE location = \"amherst, ma\"",
    "question_en": "Which type of institution is in Amherst, MA?",
    "question_th": "สถาบันประเภทใดที่ตั้งอยู่ในเมืองแอมเฮิร์สต์ รัฐแมสซาชูเซตส์",
    "context": "CREATE TABLE table_name_1 (type VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT tenure FROM table_name_96 WHERE courtesy_title = \"yamashiro-no-kami\"",
    "question_en": "What is the tenure of the person whose courtesy title is yamashiro-no-kami?",
    "question_th": "ผู้ที่มีตำแหน่งเป็นยามาชิโระโนะคามิอยู่ในตำแหน่งใด?",
    "context": "CREATE TABLE table_name_96 (tenure VARCHAR, courtesy_title VARCHAR)"
  },
  {
    "answer": "SELECT courtesy_title FROM table_name_1 WHERE tenure = \"1766–1794\"",
    "question_en": "What is the courtesy title of the person whose tenure goes from 1766–1794?",
    "question_th": "ตำแหน่งที่สุภาพของบุคคลซึ่งดำรงตำแหน่งตั้งแต่ปี ค.ศ. 1766–1794 คืออะไร?",
    "context": "CREATE TABLE table_name_1 (courtesy_title VARCHAR, tenure VARCHAR)"
  },
  {
    "answer": "SELECT bronze FROM table_name_2 WHERE rank > 5",
    "question_en": "What is the bronze value associated with ranks over 5?",
    "question_th": "ค่าทองแดงที่เกี่ยวข้องกับอันดับมากกว่า 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_en": "What is the highest number of bronzes for countries ranking over 5 with 0 golds?",
    "question_th": "จำนวนเหรียญทองแดงสูงสุดสำหรับประเทศที่มีอันดับมากกว่า 5 โดยมี 0 ทองคือเท่าใด",
    "context": "CREATE TABLE table_name_74 (bronze INTEGER, rank VARCHAR, gold VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_8 WHERE date = \"june 22\"",
    "question_en": "Name the loss for june 22",
    "question_th": "ตั้งชื่อการสูญเสียสำหรับวันที่ 22 มิถุนายน",
    "context": "CREATE TABLE table_name_8 (loss VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_96 WHERE date = \"june 30\"",
    "question_en": "Name the loss for june 30",
    "question_th": "ตั้งชื่อขาดทุนสำหรับวันที่ 30 มิถุนายน",
    "context": "CREATE TABLE table_name_96 (loss VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_46 WHERE date = \"august 21, 2007\"",
    "question_en": "Name the score on august 21, 2007",
    "question_th": "ตั้งชื่อคะแนนเมื่อ 21 สิงหาคม 2550",
    "context": "CREATE TABLE table_name_46 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_83 WHERE date = \"august 25, 2007\"",
    "question_en": "Name the competition on august 25, 2007",
    "question_th": "ตั้งชื่อการแข่งขันวันที่ 25 สิงหาคม 2550",
    "context": "CREATE TABLE table_name_83 (competition VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_48 WHERE date = \"august 25, 2007\"",
    "question_en": "Name the competition that was on august 25, 2007",
    "question_th": "ตั้งชื่อการแข่งขันเมื่อวันที่ 25 สิงหาคม 2550",
    "context": "CREATE TABLE table_name_48 (competition VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_19 WHERE date = \"january 14, 2008\"",
    "question_en": "Name the result for january 14, 2008",
    "question_th": "ตั้งชื่อผลลัพธ์สำหรับวันที่ 14 มกราคม พ.ศ. 2551",
    "context": "CREATE TABLE table_name_19 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT played FROM table_name_38 WHERE lost = \"20\"",
    "question_en": "How many matches played are associated with 20 losses?",
    "question_th": "มีกี่แมตช์ที่เล่นแล้วสัมพันธ์กับการแพ้ 20 นัด?",
    "context": "CREATE TABLE table_name_38 (played VARCHAR, lost VARCHAR)"
  },
  {
    "answer": "SELECT played FROM table_name_24 WHERE club = \"rhymney rfc\"",
    "question_en": "How many matches have Rhymney RFC played?",
    "question_th": "Rhymney RFC เล่นไปแล้วกี่นัด?",
    "context": "CREATE TABLE table_name_24 (played VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT lost FROM table_name_90 WHERE club = \"abercarn rfc\"",
    "question_en": "How many losses does Abercarn RFC have?",
    "question_th": "Abercarn RFC มีการสูญเสียกี่ครั้ง?",
    "context": "CREATE TABLE table_name_90 (lost VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_67 WHERE position = \"21st (q)\"",
    "question_en": "When did a Position of 21st (q) happen?",
    "question_th": "ตำแหน่งที่ 21 (q) เกิดขึ้นเมื่อใด?",
    "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_en": "What is the Venue before 2003 with Notes of 57.73 m?",
    "question_th": "สถานที่ก่อนปี 2546 ด้วยหมายเหตุ 57.73 ม. คืออะไร?",
    "context": "CREATE TABLE table_name_63 (venue VARCHAR, year VARCHAR, notes VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_name_39 WHERE position = \"8th\"",
    "question_en": "What notes have the 8th position?",
    "question_th": "โน้ตตัวใดมีตำแหน่งที่ 8?",
    "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_en": "Where was European Championships held with notes of 61.46 m?",
    "question_th": "การแข่งขันชิงแชมป์แห่งชาติยุโรปจัดขึ้นที่ไหนด้วยโน้ต 61.46 ม.?",
    "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_en": "What is the 0–100km/h (62mph) when the max power is s diesel engine all direct injection (dci)?",
    "question_th": "อัตราเร่ง 0–100 กม./ชม. (62 ไมล์/ชม.) คือเท่าใดเมื่อกำลังสูงสุดคือเครื่องยนต์ดีเซลระบบฉีดตรงทั้งหมด (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_en": "Name the original name for last days of the victim",
    "question_th": "ตั้งชื่อนามสกุลเดิมของวันสุดท้ายของผู้เสียหาย",
    "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 á milli: í hita og þunga dagsins\"",
    "question_en": "Name the film title for okkar á milli: í hita og þunga dagsins",
    "question_th": "ตั้งชื่อชื่อภาพยนตร์เรื่อง okkar á milli: í hita og þunga 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_en": "Name the film title that was norwegian",
    "question_th": "ตั้งชื่อหนังที่เป็นภาษานอร์เวย์",
    "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_en": "Name the film title for german",
    "question_th": "ตั้งชื่อหนังเป็นภาษาเยอรมัน",
    "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_en": "Name the original name for the one from bulgaria",
    "question_th": "ตั้งชื่อชื่อดั้งเดิมของชื่อหนึ่งจากบัลแกเรีย",
    "context": "CREATE TABLE table_name_4 (original_name VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_27 WHERE attendance > 54 OFFSET 766",
    "question_en": "who was the opponent when the attendance was larger than 54,766?",
    "question_th": "คู่ต่อสู้คือใครเมื่อมีผู้เข้าร่วมมากกว่า 54,766 คน?",
    "context": "CREATE TABLE table_name_27 (opponent VARCHAR, attendance INTEGER)"
  },
  {
    "answer": "SELECT attendance FROM table_name_2 WHERE series = \"0-1\"",
    "question_en": "What was the attendance when the series was at 0-1?",
    "question_th": "ผู้เข้าร่วมเมื่อซีรีส์อยู่ที่ 0-1 คืออะไร?",
    "context": "CREATE TABLE table_name_2 (attendance VARCHAR, series VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_86 WHERE series = \"1-3\"",
    "question_en": "Who was the opponent when the series was at 1-3?",
    "question_th": "คู่ต่อสู้เมื่อซีรีส์อยู่ที่ 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_en": "what was the score in the loss to tapani (0-1)?",
    "question_th": "แพ้ทาปานี (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_en": "What id the team with a smaller Time than 18?",
    "question_th": "อะไรคือทีมที่มีเวลาน้อยกว่า 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_en": "What is the location of the match with the record 10-8-1?",
    "question_th": "แมตช์ด้วยสถิติ 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_en": "What is the method of the match in the Road fc 12 at 5:00 with less than 3 rounds, and a loss result?",
    "question_th": "แมตช์โรด เอฟซี 12 เวลา 05.00 น. น้อยกว่า 3 นัด มีวิธีการแข่งขันอย่างไร และ ผลแพ้ชนะ ?",
    "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_en": "What is the record of the match at 6:00?",
    "question_th": "บันทึกการแข่งขันเวลา 6.00 น. เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_84 (record VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT method FROM table_name_69 WHERE record = \"3-4\"",
    "question_en": "What is the method of the match with a 3-4 record?",
    "question_th": "แมตช์ด้วยสกอร์ 3-4 มีวิธีการเล่นอย่างไร?",
    "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_en": "What is the location of the match with a round bigger than 1 where the opponent was Yoshihiro Akiyama?",
    "question_th": "แมตช์ที่นัดที่ใหญ่กว่า 1 นัดคือคู่ต่อสู้คือ โยชิฮิโระ อากิยามะ ที่ไหน?",
    "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_en": "What is the average round of the match with a draw result and a record of 4-4-1?",
    "question_th": "ค่าเฉลี่ยรอบการแข่งขันที่ผลเสมอและสถิติ 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_en": "What is the average round of the match in the Hero's 9 event with a time of 5:00?",
    "question_th": "รอบเฉลี่ยของการแข่งขันในรายการ Hero's 9 ที่เวลา 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_en": "What shows as the First US Tour Cast when the Original Broadway Cast was Sarah Bolt?",
    "question_th": "อะไรแสดงให้เห็นว่าเป็นนักแสดงทัวร์อเมริกาคนแรกเมื่อนักแสดงบรอดเวย์ดั้งเดิมคือ 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_en": "What is the name of the person in the First UK Tour Cast for the Character of Sister Mary Robert?",
    "question_th": "บุคคลในการคัดเลือกนักแสดงใน First UK Tour สำหรับตัวละครของ 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_en": "What character did Katie Rowley Jones play in the Original West End Cast?",
    "question_th": "Katie Rowley Jones เล่นตัวละครอะไรใน 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_en": "Who was the Original West End Cast when the irst US Tour Cast was lael van keuren?",
    "question_th": "ใครคือนักแสดงต้นฉบับของ West End เมื่อนักแสดงทัวร์อเมริกาคนแรกคือ 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_en": "Who was in the Original West End Cast when the Original Broadway Cast was audrie neenan?",
    "question_th": "ใครอยู่ในทีมนักแสดงต้นฉบับของ West End เมื่อนักแสดงบรอดเวย์ดั้งเดิมคือออดรี นีแนน?",
    "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_en": "What is the name of the person who was in the Original Broadway Cast that was Original West End Cast of sheila hancock?",
    "question_th": "บุคคลที่อยู่ใน Original Broadway Cast ที่เป็น Original West End Cast ของ 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_en": "Dave Douglas has what score?",
    "question_th": "Dave Douglas ได้คะแนนเท่าไหร่?",
    "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_en": "Who has more than 70 score with +1 to par?",
    "question_th": "ใครมีสกอร์มากกว่า 70 และมีพาร์ +1 บ้าง?",
    "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_en": "What game did they lose by 6 - 5?",
    "question_th": "พวกเขาแพ้เกมอะไร 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_en": "What is the original title of the film from years after 1985 from the UK?",
    "question_th": "ชื่อดั้งเดิมของภาพยนตร์เรื่องนี้จากสหราชอาณาจักรหลายปีหลังปี 1985 คืออะไร?",
    "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_en": "What is the English title for years after 1981 originating from Argentina?",
    "question_th": "ชื่อภาษาอังกฤษสำหรับปีหลังปี 1981 ที่มาจากอาร์เจนตินาคืออะไร",
    "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_en": "What is the English title for 1984 from Sweden?",
    "question_th": "ชื่อภาษาอังกฤษสำหรับปี 1984 จากสวีเดนคืออะไร",
    "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_en": "What is the English title for the film directed by George Miller?",
    "question_th": "ชื่อภาษาอังกฤษของภาพยนตร์ที่กำกับโดย 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_en": "What is the Country of origin for the film directed by George Miller?",
    "question_th": "ภาพยนตร์ที่กำกับโดยจอร์จ มิลเลอร์มาจากประเทศใด",
    "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_en": "How many golds for west germany with over 8 total?",
    "question_th": "เยอรมันตะวันตกมีทั้งหมด 8 เหรียญทองได้กี่เหรียญทอง?",
    "context": "CREATE TABLE table_name_11 (gold INTEGER, nation VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT SUM(gold) FROM table_name_41 WHERE bronze < 1",
    "question_en": "How many golds for nations with under 1 bronze?",
    "question_th": "ชาติที่มีน้อยกว่า 1 เหรียญทองแดงจะได้กี่เหรียญทอง?",
    "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_en": "How many total medals for the nation ranked 7 with 1 silver and under 4 bronzes?",
    "question_th": "อันดับ 7 ของประเทศ อันดับที่ 7 มีเหรียญเงิน 1 เหรียญ และต่ำกว่า 4 เหรียญทองแดง มีทั้งหมดกี่เหรียญ?",
    "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_en": "Name the city of license when founded was may 1995",
    "question_th": "ตั้งชื่อเมืองที่ได้รับใบอนุญาตเมื่อก่อตั้งเมื่อเดือนพฤษภาคม พ.ศ. 2538",
    "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_en": "Name the city of license for when founded is october 2010",
    "question_th": "ตั้งชื่อเมืองที่ได้รับใบอนุญาตเมื่อก่อตั้งเมื่อเดือนตุลาคม พ.ศ. 2553",
    "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_en": "Name the coverage area for licesne of hillsboro, west virginia",
    "question_th": "ตั้งชื่อพื้นที่ครอบคลุมสำหรับใบอนุญาตของฮิลส์โบโร เวสต์เวอร์จิเนีย",
    "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_en": "Name the city of license which has age Watt of 160 watts",
    "question_th": "ตั้งชื่อเมืองที่ได้รับใบอนุญาตซึ่งมีอายุวัตต์ 160 วัตต์",
    "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_en": "Name the city of license with frequency of 103.5 mhz",
    "question_th": "ตั้งชื่อเมืองที่ได้รับอนุญาตด้วยความถี่ 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_en": "What is the catalog number of Alfa records?",
    "question_th": "หมายเลขแค็ตตาล็อกของบันทึก Alfa คืออะไร",
    "context": "CREATE TABLE table_name_74 (catalog VARCHAR, label VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_35 WHERE score = 68 AND country = \"canada\"",
    "question_en": "Which player has 68 as the score and canada as the country?",
    "question_th": "ผู้เล่นคนไหนมีคะแนน 68 และแคนาดาเป็นประเทศ?",
    "context": "CREATE TABLE table_name_35 (player VARCHAR, score VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_53 WHERE country = \"canada\"",
    "question_en": "What place has Canada as the country?",
    "question_th": "แคนาดาเป็นประเทศแห่งใด",
    "context": "CREATE TABLE table_name_53 (place VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_52 WHERE score = 69",
    "question_en": "Which player has 69 as the score?",
    "question_th": "ผู้เล่นคนไหนมีคะแนน 69?",
    "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_en": "What place has a score greater than 68, and camilo villegas as the player?",
    "question_th": "สถานที่ใดมีคะแนนมากกว่า 68 และมี Camilo Villegas เป็นผู้เล่น?",
    "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_en": "What is the average score with lee westwood as the player?",
    "question_th": "คะแนนเฉลี่ยของลี เวสต์วูดในฐานะผู้เล่นคือเท่าไร?",
    "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_en": "Name the years with authority of state and decile more than 6 with roll less than 33",
    "question_th": "ตั้งชื่อปีโดยมีอำนาจของรัฐและเดไซล์มากกว่า 6 และหมุนน้อยกว่า 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_en": "Name the years for marton and decile of 3 for turakina maori girls' college?",
    "question_th": "ตั้งชื่อปีของ marton และ decile ของ 3 สำหรับ 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_en": "Name the average gold medals when the bronze medals was less than 1, silver medals being 0 and total medals more than 1",
    "question_th": "ตั้งชื่อเหรียญทองเฉลี่ยเมื่อเหรียญทองแดงน้อยกว่า 1 เหรียญเงินเป็น 0 และเหรียญรวมมากกว่า 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_en": "Name the total number of bronze medals when gold medals was 2, total medals more than 4 and silver medals less than 5",
    "question_th": "ระบุจำนวนเหรียญทองแดงทั้งหมด เมื่อได้ 2 เหรียญทอง รวมมากกว่า 4 เหรียญ และเหรียญเงินน้อยกว่า 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_en": "Name the ensemble with silver medals more than 1",
    "question_th": "ตั้งชื่อวงด้วยเหรียญเงินมากกว่า 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_en": "Name the average total medals with ensemble of goshen hs",
    "question_th": "ตั้งชื่อเหรียญรางวัลรวมโดยเฉลี่ยพร้อมชุดโกเชน 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_en": "In which category did Nick Jonas win at the Kids' Choice Awards Mexico?",
    "question_th": "Nick Jonas ชนะรางวัล 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_en": "What is the award for the Choice TV: Breakout Star Female category?",
    "question_th": "รางวัล Choice TV: ประเภท Breakout Star Female คืออะไร?",
    "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_en": "What is Joe Jonas' result at the Kids' Choice Awards Mexico?",
    "question_th": "ผลงานของ Joe Jonas ในงาน 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_en": "What category was Joe Jonas nominated for at the Kids' Choice Awards Mexico in 2010?",
    "question_th": "Joe Jonas ได้รับการเสนอชื่อเข้าชิงรางวัล Kids' Choice Awards Mexico ในปี 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_en": "What Chassis did Team BMS Scuderia Italia use with G Tyres and a Ferrari 037 3.5 v12 engine?",
    "question_th": "Team BMS Scuderia Italia ใช้แชสซีใดกับ G Tyres และเครื่องยนต์ Ferrari 037 3.5 v12",
    "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_en": "Who was the Rookie of the Year for the Season in 2000?",
    "question_th": "ใครคือมือใหม่แห่งปีของฤดูกาลในปี 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_en": "When was the game played in which the record was 46-29?",
    "question_th": "เกมนี้เล่นเมื่อใดโดยมีสถิติ 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_en": "Which type had the unit greifswald - 7 (kgr 7) ?",
    "question_th": "ประเภทใดมีหน่วย 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_en": "Which unite had the type wwer-440/213?",
    "question_th": "ยูนิตไหนมีประเภท 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_en": "What was the date that construction was finished when the unit was greifswald - 4 (kgr 4)?",
    "question_th": "วันที่ก่อสร้างเสร็จเมื่อใดคือ 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_en": "What was the net power, when the type was wwer-440/230, and when construction was finished on 24.10.1977?",
    "question_th": "ไฟฟ้าสุทธิเป็นเท่าใด เมื่อเป็นประเภท wwer-440/230 และเมื่อการก่อสร้างแล้วเสร็จในวันที่ 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 = \"álvaro pérez\"",
    "question_en": "During what years was álvaro pérez the number 2 ranked player?",
    "question_th": "อัลบาโร เปเรซเป็นผู้เล่นอันดับ 2 ในช่วงปีใด",
    "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_en": "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?",
    "question_th": "ค่าเฉลี่ยสำหรับ 5 อันดับแรก เมื่อค่าสำหรับ 25 อันดับแรกคือ 0 และค่าสำหรับการชนะน้อยกว่า 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_en": "What is the total amount of Top-25 having a Top-5 greater than 1?",
    "question_th": "จำนวนรวมของ 25 อันดับแรกที่มี 5 อันดับแรกมากกว่า 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_en": "What is the sum of the value Top-10 that has a Cuts value of 2 and a Wins value smaller than 0?",
    "question_th": "ผลรวมของค่า Top-10 ที่มีค่า Cuts เท่ากับ 2 และค่า Wins น้อยกว่า 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_en": "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?",
    "question_th": "มูลค่าเฉลี่ยสำหรับ 5 อันดับแรก เมื่อค่าการตัดคือ 5 และเมื่อทัวร์นาเมนต์คือ Open Championship และเมื่อมูลค่ากิจกรรมน้อยกว่า 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_en": "What is the lowest value for Events, when the value for Top-5 is greater than 1?",
    "question_th": "ค่าต่ำสุดสำหรับเหตุการณ์คือเท่าใด เมื่อค่าสำหรับ Top-5 มากกว่า 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_en": "Who was the visiting team on November 10?",
    "question_th": "ทีมเยือนวันที่ 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_en": "Who was the host team for the game with the final score of 26-24?",
    "question_th": "ใครเป็นเจ้าบ้านในเกมด้วยสกอร์สุดท้าย 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_en": "Who was the host team on November 17?",
    "question_th": "ทีมเจ้าภาพวันที่ 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_en": "At what stadium was the game with the final score of 9-23 played?",
    "question_th": "เกมที่สกอร์สุดท้าย 9-23 เล่นที่สนามไหน?",
    "context": "CREATE TABLE table_name_55 (stadium VARCHAR, final_score VARCHAR)"
  },
  {
    "answer": "SELECT stadium FROM table_name_29 WHERE final_score = \"26-24\"",
    "question_en": "At what stadium was the game with the final score of 26-24 played?",
    "question_th": "แมตช์ที่สนามใดที่สกอร์สุดท้าย 26-24 เล่น?",
    "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_en": "Which host team played against the New England Patriots?",
    "question_th": "ทีมเจ้าบ้านใดเล่นกับนิวอิงแลนด์ แพทริออตส์?",
    "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–1977\"",
    "question_en": "What is the reason the Chief Judge of 1971–1977 was terminated?",
    "question_th": "เหตุใดหัวหน้าผู้พิพากษาปี 1971–1977 จึงถูกไล่ออก?",
    "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–1928\"",
    "question_en": "Which state has a Reason for termination of retirement, and an Active service of 1926–1928?",
    "question_th": "รัฐใดมีเหตุผลในการยกเลิกการเกษียณอายุ และบริการที่ใช้งานอยู่ในปี 1926–1928?",
    "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_en": "What is the PI code in the hindhead area?",
    "question_th": "รหัส PI ในพื้นที่ด้านหลังคืออะไร?",
    "context": "CREATE TABLE table_name_54 (pi_code VARCHAR, area VARCHAR)"
  },
  {
    "answer": "SELECT frequency FROM table_name_81 WHERE power = \"900w\"",
    "question_en": "What is the frequency with 900w power?",
    "question_th": "กำลังไฟ 900w ความถี่เท่าไหร่คะ?",
    "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_en": "What event ended in 3:02 of round 1?",
    "question_th": "เหตุการณ์ใดจบลงในเวลา 3:02 ของรอบที่ 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_en": "What is the highest round reached by an oppo ent of JR schumacher?",
    "question_th": "ฝ่ายตรงข้ามของ JR ชูมัคเกอร์เข้าถึงรอบสูงสุดได้เท่าไร?",
    "context": "CREATE TABLE table_name_77 (round INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_24 WHERE opponent = \"arturo segovia\"",
    "question_en": "Where did arturo segovia compete?",
    "question_th": "อาร์ตูโร เซโกเวีย แข่งขันที่ไหน?",
    "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_en": "What is the top fastest time, larger than 2, in Enugu?",
    "question_th": "เวลาที่เร็วที่สุดสูงสุดมากกว่า 2 ใน 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_en": "How many casualties were from the IED circumstance?",
    "question_th": "มีผู้เสียชีวิตจากเหตุการณ์ IED กี่ราย?",
    "context": "CREATE TABLE table_name_48 (casualties VARCHAR, circumstances VARCHAR)"
  },
  {
    "answer": "SELECT drawn FROM table_name_56 WHERE tries_against = \"45\"",
    "question_en": "Where there any Draws with 45 tries against?",
    "question_th": "มีการเสมอกันที่ 45 ครั้งหรือไม่?",
    "context": "CREATE TABLE table_name_56 (drawn VARCHAR, tries_against VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_name_91 WHERE tries_against = \"45\"",
    "question_en": "Which club participated with a record of 45 tries against?",
    "question_th": "สโมสรใดเข้าร่วมด้วยสถิติการลองแข่งขัน 45 ครั้ง?",
    "context": "CREATE TABLE table_name_91 (club VARCHAR, tries_against VARCHAR)"
  },
  {
    "answer": "SELECT drawn FROM table_name_19 WHERE tries_for = \"51\"",
    "question_en": "What was the amount of draws where a club had 51 tries for?",
    "question_th": "จำนวนเสมอที่สโมสรพยายาม 51 ครั้งเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_19 (drawn VARCHAR, tries_for VARCHAR)"
  },
  {
    "answer": "SELECT lost FROM table_name_26 WHERE points_for = \"208\"",
    "question_en": "How many losses were there with 208 points?",
    "question_th": "มีการสูญเสียกี่ครั้งด้วย 208 คะแนน?",
    "context": "CREATE TABLE table_name_26 (lost VARCHAR, points_for VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_name_73 WHERE tries_for = \"73\"",
    "question_en": "Which of the participating clubs had 73 tries for?",
    "question_th": "สโมสรใดที่เข้าร่วมมีความพยายาม 73 ครั้ง?",
    "context": "CREATE TABLE table_name_73 (club VARCHAR, tries_for VARCHAR)"
  },
  {
    "answer": "SELECT engine FROM table_name_44 WHERE chassis = \"march 90ca\"",
    "question_en": "What car has a March 90ca Chassis?",
    "question_th": "รถอะไรมีแชสซี March 90ca?",
    "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_en": "What is the latest year that has an engine of cosworth v8, with a chassis of hesketh 308e?",
    "question_th": "ปีล่าสุดที่มีเครื่องยนต์ cosworth v8 พร้อมแชสซีของ 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_en": "Which year has brm v12 as the engine?",
    "question_th": "ปีไหนมี brm v12 เป็นเครื่องยนต์บ้าง?",
    "context": "CREATE TABLE table_name_19 (year VARCHAR, engine VARCHAR)"
  },
  {
    "answer": "SELECT MAX(year) FROM table_name_22 WHERE pts > 0",
    "question_en": "What is the latesr year that has more points than 0?",
    "question_th": "ปีล่าสุดที่มีคะแนนมากกว่า 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_en": "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?",
    "question_th": "ทองคำใดคือทองคำสูงสุดที่มีคะแนนรวมน้อยกว่า 4 และเงิน 1 และทองแดงน้อยกว่า 2 และอันดับ 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_en": "Which nation has a Bronze and Silver smaller than 1 and a Gold larger than 1?",
    "question_th": "ประเทศใดมีทองแดงและเงินน้อยกว่า 1 และทองคำใหญ่กว่า 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_en": "What was the score of the game that had a round of Rd 26, 2001?",
    "question_th": "คะแนนของเกมในรอบที่ 26 ปี 2544 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_90 (score VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_24 WHERE attendance = \"37,119\"",
    "question_en": "What was the loss of the game attended by 37,119?",
    "question_th": "อะไรคือการสูญเสียของเกมที่มีผู้เข้าร่วม 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_en": "What was the date of the game that had a loss of lidle (10-8)?",
    "question_th": "เกมที่แพ้ลิดเดอร์คือวันที่เท่าไหร่ (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_en": "What was the loss of the game against the Yankees that was attended by 27,652?",
    "question_th": "อะไรคือความพ่ายแพ้ของเกมกับแยงกี้ที่มีผู้เข้าร่วม 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_en": "What is the number of finish of the Qual of 159.384?",
    "question_th": "จบรอบคัดเลือก 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_en": "What is the qual for rank 18 in 1964?",
    "question_th": "คุณสมบัติสำหรับอันดับ 18 ในปี 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_en": "On May 13, what was the team's record?",
    "question_th": "วันที่ 13 พ.ค. สถิติของทีมเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_33 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_92 WHERE date = \"may 26\"",
    "question_en": "On May 26, what was the team's record?",
    "question_th": "วันที่ 26 พ.ค. สถิติของทีมเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_92 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_68 WHERE date = \"may 20\"",
    "question_en": "Who did they lose to on May 20?",
    "question_th": "พวกเขาแพ้ใครในวันที่ 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_en": "What was Spring Creek School's area when the decile was 4?",
    "question_th": "พื้นที่ของ Spring Creek School เป็นอย่างไรเมื่อ Decile อายุ 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_en": "What is the average Founded for chicopee, massachusetts?",
    "question_th": "ค่าเฉลี่ยที่ก่อตั้งขึ้นสำหรับชิโคปี แมสซาชูเซตส์ คืออะไร?",
    "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_en": "What is the average Joined with a Nickname of wildcats in longmeadow, massachusetts?",
    "question_th": "ค่าเฉลี่ยที่รวมกับชื่อเล่นของ wildcats ในลองมีโดว์ แมสซาชูเซตส์ คืออะไร?",
    "context": "CREATE TABLE table_name_55 (joined INTEGER, nickname VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT current_conference FROM table_name_53 WHERE nickname = \"lynx\"",
    "question_en": "Which Current Conference has a Nickname of lynx?",
    "question_th": "การประชุมปัจจุบันใดมีชื่อเล่นว่า lynx?",
    "context": "CREATE TABLE table_name_53 (current_conference VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT league FROM table_name_65 WHERE year = 2011",
    "question_en": "What league played in 2011?",
    "question_th": "ลีกอะไรเล่นในปี 2011?",
    "context": "CREATE TABLE table_name_65 (league VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_24 WHERE record = \"22-22\"",
    "question_en": "Which date has a Record of 22-22?",
    "question_th": "วันที่ใดมีบันทึก 22-22?",
    "context": "CREATE TABLE table_name_24 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_94 WHERE date = \"may 30\"",
    "question_en": "Which Opponent has a Date of may 30?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีวันที่ 30 พฤษภาคม?",
    "context": "CREATE TABLE table_name_94 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT mixed_doubles FROM table_name_68 WHERE year = 2010",
    "question_en": "Who all played mixed doubles in 2010?",
    "question_th": "ใครบ้างที่เล่นคู่ผสมในปี 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_en": "How many lanes have a Nationality of united states, and a Name of aaron peirsol?",
    "question_th": "มีกี่เลนที่มีสัญชาติของสหรัฐอเมริกา และชื่อแอรอน เพียร์ซอล 1 คน",
    "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_en": "Which name has a Lane smaller than 3, a Heat larger than 4, and a Time of 2:00.80?",
    "question_th": "ชื่อใดที่มีเลนเล็กกว่า 3, ฮีตมากกว่า 4 และเวลา 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_en": "When was there a result of 8-1 and a score of 8-1?",
    "question_th": "เมื่อไหร่ที่ผลสกอร์ 8-1 และสกอร์ 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_en": "When was there a result of 5-1?",
    "question_th": "มีผล 5-1 เมื่อไหร่?",
    "context": "CREATE TABLE table_name_41 (date VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_71 WHERE score = \"7-1\"",
    "question_en": "When was there a score of 7-1?",
    "question_th": "เมื่อไหร่จะมีสกอร์ 7-1?",
    "context": "CREATE TABLE table_name_71 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_75 WHERE score = \"8-1\"",
    "question_en": "What is the result when the score is 8-1?",
    "question_th": "ผลสกอร์เป็น 8-1 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_75 (result VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_44 WHERE score = \"1-1\"",
    "question_en": "What is the competition type when the score is 1-1?",
    "question_th": "การแข่งขันประเภทไหนเมื่อสกอร์ 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_en": "What was the date of the game after week 6 with the New York Jets as the opponent?",
    "question_th": "วันที่ของเกมหลังจากสัปดาห์ที่ 6 คืออะไรโดย New York Jets เป็นคู่ต่อสู้?",
    "context": "CREATE TABLE table_name_38 (date VARCHAR, week VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_91 WHERE week = 1",
    "question_en": "What is the result of the week 1 game?",
    "question_th": "ผลการแข่งขันสัปดาห์ที่ 1 เป็นอย่างไร?",
    "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_en": "How many goals have Lost larger than 35, and Games smaller than 80?",
    "question_th": "มีกี่ประตูที่แพ้มากกว่า 35 และเกมที่น้อยกว่า 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_en": "What are the total Goals against with 72 points and more than 37 losses?",
    "question_th": "ประตูรวมที่มี 72 แต้มและแพ้มากกว่า 37 นัดคืออะไร?",
    "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_en": "What are the total number of points with more than 225 goals and a Goals against of 190?",
    "question_th": "จำนวนคะแนนรวมที่มีมากกว่า 225 ประตูและประตูต่อ 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_en": "How many broadband subscribers are there where the population is ~3,644,070?",
    "question_th": "มีสมาชิกบรอดแบนด์กี่รายในจำนวนประชากร ~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_en": "What is the broadband penetration where there are ~355,100 broadband subscribers?",
    "question_th": "อัตราการเข้าถึงบรอดแบนด์ที่มีสมาชิกบรอดแบนด์ประมาณ 355,100 รายคืออะไร?",
    "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_en": "How many broadband subscribers are there where there are ~47,372 users?",
    "question_th": "มีสมาชิกบรอดแบนด์กี่รายที่มีผู้ใช้ประมาณ 47,372 ราย",
    "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_en": "Which team has a value less than 377 million in Germany with a rank of 17?",
    "question_th": "ทีมไหนมีมูลค่าต่ำกว่า 377 ล้านปอนด์ ในเยอรมนีอันดับที่ 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_en": "What is the average revenue for Bayern Munich with a rank greater than 4?",
    "question_th": "รายได้เฉลี่ยของบาเยิร์น มิวนิคที่มีอันดับมากกว่า 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_en": "Which country has more than 5% change in a year with a rank of 10?",
    "question_th": "ประเทศใดมีการเปลี่ยนแปลงมากกว่า 5% ในหนึ่งปีด้วยอันดับ 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_en": "What is the lowest revenue for the rank of 14?",
    "question_th": "รายได้ต่ำสุดสำหรับอันดับ 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_en": "Name the opponent for jul 31 and score of w 5-1",
    "question_th": "ทายชื่อคู่ต่อสู้ประจำวันที่ 31 ก.ค. และสกอร์ 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_en": "Name the less for opponent of @cle and record of 67-29",
    "question_th": "ตั้งชื่อให้น้อยกว่าสำหรับคู่ต่อสู้ของ @cle และสถิติ 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_en": "Name the loss with record of 71-33",
    "question_th": "ตั้งชื่อขาดทุนด้วยสถิติ 71-33",
    "context": "CREATE TABLE table_name_4 (loss VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_9 WHERE record = \"55-24\"",
    "question_en": "Name the date with record of 55-24",
    "question_th": "ตั้งชื่อวันที่ด้วยบันทึก 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_en": "Name the record with opponent of bos and loss of morris",
    "question_th": "ตั้งชื่อบันทึกด้วยคู่ต่อสู้ของบอสและแพ้มอร์ริส",
    "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_en": "Which catalog did Village Records have on February 14, 2002?",
    "question_th": "Village Records มีแค็ตตาล็อกใดในวันที่ 14 กุมภาพันธ์ พ.ศ. 2545",
    "context": "CREATE TABLE table_name_60 (catalog VARCHAR, label VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_name_6 WHERE catalog = \"38xa-5\"",
    "question_en": "What was the region for the 38xa-5 catalog?",
    "question_th": "ภูมิภาคสำหรับแค็ตตาล็อก 38xa-5 คืออะไร",
    "context": "CREATE TABLE table_name_6 (region VARCHAR, catalog VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_42 WHERE catalog = \"32xa-112\"",
    "question_en": "What was the date for the catalog 32xa-112?",
    "question_th": "แค็ตตาล็อก 32xa-112 วางจำหน่ายเมื่อใด",
    "context": "CREATE TABLE table_name_42 (date VARCHAR, catalog VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_33 WHERE format = \"stereo lp\"",
    "question_en": "What was the date for a catalog formatted in stereo LP?",
    "question_th": "แคตตาล็อกที่จัดรูปแบบเป็นสเตอริโอ LP คือวันที่ใด",
    "context": "CREATE TABLE table_name_33 (date VARCHAR, format VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_88 WHERE label = \"village records\"",
    "question_en": "What date is associated with the label Village Records?",
    "question_th": "วันที่ใดที่เกี่ยวข้องกับป้ายกำกับ Village Records?",
    "context": "CREATE TABLE table_name_88 (date VARCHAR, label VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_43 WHERE opponents = \"southampton\"",
    "question_en": "Name the round for southampton opponents",
    "question_th": "ตั้งชื่อรอบสำหรับฝ่ายตรงข้ามเซาแธมป์ตัน",
    "context": "CREATE TABLE table_name_43 (round VARCHAR, opponents VARCHAR)"
  },
  {
    "answer": "SELECT MAX(attendance) FROM table_name_62 WHERE date = \"19 february 2005\"",
    "question_en": "Name the most attendance for 19 february 2005",
    "question_th": "รายชื่อผู้เข้าร่วมมากที่สุดสำหรับวันที่ 19 กุมภาพันธ์ พ.ศ. 2548",
    "context": "CREATE TABLE table_name_62 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT SUM(attendance) FROM table_name_22 WHERE round = \"round 3\"",
    "question_en": "Name the sum of attendance for round 3",
    "question_th": "แจ้งยอดผู้เข้าร่วมรอบที่ 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_en": "What team is owned by Mark Smith and has Paul Clapprood as a crew chief?",
    "question_th": "Mark Smith เป็นเจ้าของทีมใดและมี Paul Clapprod เป็นหัวหน้าทีม",
    "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_en": "Who is Mike Wallace's primary Sponsor(s)?",
    "question_th": "ใครคือผู้สนับสนุนหลักของ Mike Wallace?",
    "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_en": "What driver has Scott Zipadelli as a crew chief?",
    "question_th": "นักแข่งคนไหนที่มี Scott Zipadelli เป็นหัวหน้าลูกเรือ",
    "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_en": "What team does Reed Sorenson drive for?",
    "question_th": "Reed Sorenson ขับให้ทีมใด",
    "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_en": "Who is Austin Dillon's primary sponsor(s)?",
    "question_th": "ใครคือผู้สนับสนุนหลักของ Austin Dillon?",
    "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_en": "Who is Eric McClure's and Tristar Motorsports' crew chief?",
    "question_th": "ใครคือหัวหน้าลูกเรือของ Eric McClure และ Tristar Motorsports",
    "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_en": "What is the highest rank from Lane 4?",
    "question_th": "อันดับสูงสุดจากเลน 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_en": "How many ranks are higher than lane 4 from Great Britain, raced by Margaretha Pedder?",
    "question_th": "มีกี่อันดับที่สูงกว่าเลน 4 จากบริเตนใหญ่ที่ 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_en": "What is the lowest rank from Great Britain with a time of 2:10.33?",
    "question_th": "อันดับต่ำสุดจากอังกฤษด้วยเวลา 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_en": "How many Lanes have a rank higher than 3 with a time of 2:08.11?",
    "question_th": "มีกี่เลนที่มีอันดับสูงกว่า 3 ด้วยเวลา 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_en": "Tkkm o te ara rima has a decile less than 4 in what years?",
    "question_th": "Tkkm o te ara rima มีเดซิลน้อยกว่า 4 ในปีใด?",
    "context": "CREATE TABLE table_name_36 (years VARCHAR, decile VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT authority FROM table_name_35 WHERE area = \"rototuna\"",
    "question_en": "What authority does the rototuna area have?",
    "question_th": "พื้นที่โรโตทูน่ามีอำนาจอะไรบ้าง?",
    "context": "CREATE TABLE table_name_35 (authority VARCHAR, area VARCHAR)"
  },
  {
    "answer": "SELECT award FROM table_name_23 WHERE recipient = \"hannah gal\"",
    "question_en": "What award was Hannah Gal the recipient of?",
    "question_th": "ฮันนาห์ กัล ได้รับรางวัลอะไร?",
    "context": "CREATE TABLE table_name_23 (award VARCHAR, recipient VARCHAR)"
  },
  {
    "answer": "SELECT recipient FROM table_name_31 WHERE director_s_ = \"susan jacobson\"",
    "question_en": "What is the name of the recipient when the director was Susan Jacobson?",
    "question_th": "ผู้รับชื่ออะไรเมื่อผู้กำกับคือ 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_en": "What is the film where Hannah Gal was the director?",
    "question_th": "หนังเรื่องไหนที่ Hannah Gal เป็นผู้กำกับ?",
    "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_en": "What is the film dated 22/3/06 and redhouse lane / perfect world was the recipient?",
    "question_th": "หนังเรื่องไหนลงวันที่ 22/3/59 และคนรับคือ Redhouse Lane/Perfect World?",
    "context": "CREATE TABLE table_name_35 (film VARCHAR, date VARCHAR, recipient VARCHAR)"
  },
  {
    "answer": "SELECT film FROM table_name_18 WHERE award = \"£5,380\"",
    "question_en": "What is the name of the film with an award of £5,380?",
    "question_th": "ภาพยนตร์ที่ได้รับรางวัล 5,380 ปอนด์ชื่ออะไร",
    "context": "CREATE TABLE table_name_18 (film VARCHAR, award VARCHAR)"
  },
  {
    "answer": "SELECT chassis FROM table_name_32 WHERE engine = \"climax straight-4\"",
    "question_en": "What chassis was paired with climax straight-4?",
    "question_th": "แชสซีใดที่จับคู่กับไคลแม็กซ์ สเตรท-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_en": "What year did Cooper Car Company enter?",
    "question_th": "บริษัท Cooper Car เข้ามาในปีใด",
    "context": "CREATE TABLE table_name_35 (year INTEGER, entrant VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_56 WHERE points > 0",
    "question_en": "What year has more than 0 points?",
    "question_th": "ปีไหนมีมากกว่า 0 คะแนน?",
    "context": "CREATE TABLE table_name_56 (year VARCHAR, points INTEGER)"
  },
  {
    "answer": "SELECT SUM(points) FROM table_name_47 WHERE year < 1963",
    "question_en": "What is the total points before 1963?",
    "question_th": "คะแนนรวมก่อนปี 63 เป็นเท่าไหร่?",
    "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_en": "What was the genre of Queen (an artist from the United Kingdom)?",
    "question_th": "ประเภทของ Queen (ศิลปินจากสหราชอาณาจักร) คืออะไร?",
    "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_en": "What is the number of claimed sales in the rock genre?",
    "question_th": "จำนวนยอดขายที่อ้างสิทธิ์ในแนวร็อคคือเท่าไร?",
    "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_en": "What was the earliest release-year of the first charted record of Abba?",
    "question_th": "อัลบั้ม 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_en": "What was the active period for the pop genre?",
    "question_th": "แนวเพลงป๊อปมีการใช้งานในช่วงใด?",
    "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_en": "What point had team Lotus whit the lotus 33 chassis in 1964?",
    "question_th": "ประเด็นอะไรที่ทำให้ทีม Lotus ใช้ตัวถัง Lotus 33 ในปี 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_en": "Which entrant before 1965 scored more than 0 point with the lotus 25 chassis?",
    "question_th": "ผู้เข้าแข่งขันคนใดก่อนปี 1965 ทำคะแนนได้มากกว่า 0 แต้มด้วยแชสซี Lotus 25",
    "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_en": "Which engine scored 9 points?",
    "question_th": "เครื่องยนต์ใดได้ 9 คะแนน?",
    "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_en": "What chassis did team lotus use after 1964?",
    "question_th": "ทีมโลตัสใช้แชสซีอะไรหลังปี 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_en": "What is the value Others% when the value Others# is greater than 147 and the value Kerry% is 39.6%?",
    "question_th": "ค่า Others% จะเป็นเท่าใด เมื่อค่า Others# มากกว่า 147 และค่า Kerry% คือ 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_en": "What is the total number of the value Others#, when the county is Langlade, and when the value Bush# is greater than 6,235?",
    "question_th": "จำนวนรวมของค่า Others# เมื่อเคาน์ตีคือ Langlade และเมื่อค่า Bush# มากกว่า 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_en": "What is the average value of Bush# when the value for Others# is greater than 57, and the value for Bush% is 49.2%?",
    "question_th": "ค่าเฉลี่ยของ Bush# คือเท่าใด เมื่อค่าของ Others# มากกว่า 57 และค่าของ Bush% คือ 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_en": "What is the date the Fubuki ship laid down?",
    "question_th": "เรือ Fubuki ลงจอดวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_76 (laid_down VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT launched FROM table_name_18 WHERE name = \"harusame\"",
    "question_en": "What is the launched date for the Harusame ship?",
    "question_th": "เรือ Harusame เปิดตัวเมื่อใด?",
    "context": "CREATE TABLE table_name_18 (launched VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_96 WHERE location = \"lille\"",
    "question_en": "The game taking place in Lille had what as a score?",
    "question_th": "เกมที่ลีลล์ได้สกอร์เท่าไหร่?",
    "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_en": "A competition of test taking place on 23 Apr 1988 had what as a score?",
    "question_th": "การแข่งขันสอบวันที่ 23 เมษายน 2531 ได้คะแนนเท่าไหร่?",
    "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_en": "On 11 Feb 1990, the competition is listed as what?",
    "question_th": "เมื่อวันที่ 11 ก.พ. 2533 มีรายการแข่งขันว่าอะไร?",
    "context": "CREATE TABLE table_name_23 (competition VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_42 WHERE date = \"4 apr 1997\"",
    "question_en": "The competition that took place on 4 Apr 1997 ended with what as the score?",
    "question_th": "การแข่งขันวันที่ 4 เมษายน 2540 จบลงด้วยสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_42 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_75 WHERE location = \"northampton\"",
    "question_en": "The competition located in Northampton had a resulting score of what?",
    "question_th": "การแข่งขันที่เมืองนอร์ธแธมป์ตัน ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_75 (score VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT category FROM table_name_62 WHERE label = \"mcg\" AND result = \"nominee\"",
    "question_en": "What category did MCG get a nominee in?",
    "question_th": "MCG ได้รับการเสนอชื่อเข้าชิงในประเภทใด",
    "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_en": "What genre was Music in the Air?",
    "question_th": "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_en": "Which opponent has a record of 52-52?",
    "question_th": "คู่ต่อสู้คนไหนมีสถิติ 52-52?",
    "context": "CREATE TABLE table_name_63 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_11 WHERE date = \"july 22\"",
    "question_en": "What is the record as of July 22?",
    "question_th": "บันทึก ณ วันที่ 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_en": "What was the highest number played when there were 21 goals conceded and a draw greater than 3?",
    "question_th": "หมายเลขที่เล่นสูงสุดเมื่อเสียไป 21 ประตูและเสมอมากกว่า 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_en": "What were the total number of points when the amount of goals scored was less than 20?",
    "question_th": "จำนวนคะแนนทั้งหมดเมื่อจำนวนประตูที่ทำได้น้อยกว่า 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_en": "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?",
    "question_th": "คือจำนวนคะแนนทั้งหมดเมื่อแพ้มากกว่า 6 เมื่อทีมเป็นวันซ์ มูนิซิเพิล และเมื่อจำนวนประตูที่ทำได้น้อยกว่า 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_en": "What was the highest number of points scored when there was a draw of 2 and when the amount played was 18?",
    "question_th": "อะไรคือคะแนนสูงสุดที่ได้เมื่อเสมอกัน 2 และเมื่อเล่นได้ 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_en": "What was the total number of places in which the draw was less than 4 and the amount lost was less than 6?",
    "question_th": "จำนวนอันดับที่เสมอกันน้อยกว่า 4 และจำนวนที่เสียน้อยกว่า 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_en": "What is the lowest rank with poland as the nationality and a time greater than 55.34?",
    "question_th": "อันดับต่ำสุดโดยโปแลนด์เป็นสัญชาติและเวลาที่มากกว่า 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_en": "Which name has a lane smaller than 7, and a time greater than 54.32 with germany as the nationality and a rank less than 5?",
    "question_th": "ชื่อใดที่มีเลนเล็กกว่า 7 และเวลามากกว่า 54.32 โดยมีเยอรมนีเป็นสัญชาติและอันดับน้อยกว่า 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_en": "Which average lane has 54.95 as a time?",
    "question_th": "เลนเฉลี่ยใดที่มีเวลา 54.95 ต่อครั้ง",
    "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_en": "Which average time has eithan urbach as a name with a lane bigger than 2?",
    "question_th": "เวลาเฉลี่ยใดที่ eithan urbach เป็นชื่อที่มีเลนใหญ่กว่า 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_en": "What year was the brabham bt46 bt48 bt49 Chassis common?",
    "question_th": "brabham bt46 bt48 bt49 แชสซีธรรมดาปีไหน",
    "context": "CREATE TABLE table_name_89 (year INTEGER, chassis VARCHAR)"
  },
  {
    "answer": "SELECT MAX(score) FROM table_name_69 WHERE player = \"arnold palmer\"",
    "question_en": "How high did Arnold Palmer score in 1962?",
    "question_th": "อาร์โนลด์ พาลเมอร์ทำคะแนนได้สูงแค่ไหนในปี 1962",
    "context": "CREATE TABLE table_name_69 (score INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_27 WHERE venue = \"ulsan\"",
    "question_en": "Which result has a Venue of ulsan?",
    "question_th": "ผลลัพธ์ใดมีสถานที่ของอุลซาน?",
    "context": "CREATE TABLE table_name_27 (result VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_55 WHERE date = \"2007-08-22\"",
    "question_en": "Which competition has a Date of 2007-08-22?",
    "question_th": "การแข่งขันใดมีวันที่ 22-08-2550?",
    "context": "CREATE TABLE table_name_55 (competition VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_31 WHERE date = \"2007-08-22\"",
    "question_en": "Which result has a Date of 2007-08-22?",
    "question_th": "ผลลัพธ์ใดมีวันที่ 22-08-2007",
    "context": "CREATE TABLE table_name_31 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT 2004 FROM table_name_24 WHERE 2000 = \"2r\"",
    "question_en": "What's the 2004 tournament that has a 2R in 2000?",
    "question_th": "ทัวร์นาเมนต์ปี 2004 ที่มี 2R ในปี 2000 คืออะไร?",
    "context": "CREATE TABLE table_name_24 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1999 FROM table_name_2 WHERE 2003 = \"q1\" AND 2002 = \"q3\"",
    "question_en": "What is the 1999 tournament that has a Q1 in 2003 and a Q3 in 2002?",
    "question_th": "ทัวร์นาเมนต์ปี 1999 ที่มีไตรมาส 1 ในปี 2546 และไตรมาส 3 ในปี 2545 คืออะไร",
    "context": "CREATE TABLE table_name_2 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2004 FROM table_name_10 WHERE 2011 = \"q1\"",
    "question_en": "What is the 2004 tournament that has a Q1 of 2011?",
    "question_th": "การแข่งขันปี 2547 ที่มีไตรมาส 1 ปี 2554 คืออะไร",
    "context": "CREATE TABLE table_name_10 (Id VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_name_13 WHERE profession = \"mixologist\"",
    "question_en": "What was the hometown of the contestant who was a professional mixologist?",
    "question_th": "บ้านเกิดของผู้เข้าแข่งขันที่เป็นมิกโซโลจิสต์มืออาชีพคือที่ใด",
    "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_en": "What is the average Year when there was a cosworth straight-4 engine, and the Entrant was ron harris / team lotus?",
    "question_th": "ปีเฉลี่ยคือเท่าไรเมื่อมีเครื่องยนต์ cosworth ตรง 4 และผู้เข้าแข่งขันคือ รอน แฮร์ริส / ทีมโลตัส?",
    "context": "CREATE TABLE table_name_17 (year INTEGER, engine VARCHAR, entrant VARCHAR)"
  },
  {
    "answer": "SELECT entrant FROM table_name_39 WHERE chassis = \"lotus 25\"",
    "question_en": "What is the name of the Entrant that has a Chassis of lotus 25",
    "question_th": "ผู้เข้าแข่งขันที่มีแชสซีโลตัส 25 ชื่ออะไร",
    "context": "CREATE TABLE table_name_39 (entrant VARCHAR, chassis VARCHAR)"
  },
  {
    "answer": "SELECT engine FROM table_name_87 WHERE chassis = \"porsche 718\"",
    "question_en": "What was the engine when the chassis was a porsche 718??",
    "question_th": "เมื่อแชสซีเป็นปอร์เช่ 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_en": "What is the number of points when there was a BMW 269 F2 chassis earlier than 1969?",
    "question_th": "เมื่อมีแชสซีของ BMW 269 F2 ก่อนปี 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_en": "What engine was in the lotus 44 f2 Chassis?",
    "question_th": "เครื่องยนต์อะไรอยู่ในแชสซีของโลตัส 44 f2?",
    "context": "CREATE TABLE table_name_27 (engine VARCHAR, chassis VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_47 WHERE chassis = \"lotus 25\"",
    "question_en": "What year was there a lotus 25 Chassis?",
    "question_th": "โลตัส 25 แชสซี ปีไหนครับ?",
    "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_en": "what is the lowest rank for the netherlands in lane less than 4?",
    "question_th": "อันดับต่ำสุดสำหรับเนเธอร์แลนด์ในเลนน้อยกว่า 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_en": "What is the height of the delegate whose hometown is Renton, WA?",
    "question_th": "ความสูงของผู้ร่วมประชุมซึ่งมีบ้านเกิดคือ Renton, WA คือเท่าใด",
    "context": "CREATE TABLE table_name_69 (height VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_82 WHERE notes = \"53.96\"",
    "question_en": "Is there a Position for Notes 53.96?",
    "question_th": "มีตำแหน่งสำหรับ 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_en": "Is there a Venus that's a year later than 2002, with an Event of 4x400m relay in 4th Position?",
    "question_th": "มีดาวศุกร์ที่ช้ากว่าปี 2545 หนึ่งปี โดยมีเหตุการณ์วิ่งผลัด 4x400 เมตรในตำแหน่งที่ 4 หรือไม่?",
    "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_en": "What Event goes with Notes 53.76?",
    "question_th": "เหตุการณ์ใดบ้างที่เข้าคู่กับ 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_en": "On what date did they have a record of 12-17?",
    "question_th": "พวกเขามีสถิติ 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_en": "What engine did the Team Lotus have after 1965?",
    "question_th": "Team Lotus มีเครื่องยนต์อะไรหลังจากปี 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_en": "What chassis did the BRM V8 engine have?",
    "question_th": "เครื่องยนต์ BRM V8 มีแชสซีแบบใด",
    "context": "CREATE TABLE table_name_92 (chassis VARCHAR, engine VARCHAR)"
  },
  {
    "answer": "SELECT MAX(points) FROM table_name_99 WHERE year = 1966",
    "question_en": "What was the highest number of points in 1966?",
    "question_th": "คะแนนสูงสุดในปี 2509 คือเท่าใด",
    "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_en": "What is the greatest number of losses a team that played fewer than 25 games in 2010 had?",
    "question_th": "จำนวนความพ่ายแพ้ที่ยิ่งใหญ่ที่สุดของทีมที่เล่นน้อยกว่า 25 เกมในปี 2010 คือเท่าใด",
    "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_en": "What is the average number of points for a team that played 17 games and had more than 15 losses?",
    "question_th": "จำนวนคะแนนเฉลี่ยของทีมที่เล่น 17 เกมและแพ้มากกว่า 15 นัดคือเท่าใด",
    "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_en": "How many laps did gunnar nilsson drive?",
    "question_th": "กุนนาร์ นิลส์สัน ขับไปกี่รอบ?",
    "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_en": "Who built james hunt's car that went 79 laps?",
    "question_th": "ใครเป็นคนสร้างรถของเจมส์ ฮันท์ที่วิ่งได้ 79 รอบ?",
    "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_en": "How much did the Modern Pentathlon III Series coin weigh?",
    "question_th": "เหรียญ Modern Pentathlon III Series มีน้ำหนักเท่าใด",
    "context": "CREATE TABLE table_name_65 (weight VARCHAR, series VARCHAR, reverse VARCHAR)"
  },
  {
    "answer": "SELECT obverse FROM table_name_45 WHERE reverse = \"archery\"",
    "question_en": "What is the obverse of the archery coin?",
    "question_th": "ด้านหน้าของเหรียญยิงธนูคืออะไร?",
    "context": "CREATE TABLE table_name_45 (obverse VARCHAR, reverse VARCHAR)"
  },
  {
    "answer": "SELECT denomination FROM table_name_8 WHERE series = \"iii series\"",
    "question_en": "What is the denomination of the III Series?",
    "question_th": "ซีรี่ส์ III มีมูลค่าเท่าไร?",
    "context": "CREATE TABLE table_name_8 (denomination VARCHAR, series VARCHAR)"
  },
  {
    "answer": "SELECT diameter FROM table_name_46 WHERE reverse = \"archery\"",
    "question_en": "What is the diameter of the Archery Reverse coin?",
    "question_th": "เหรียญ Archery Reverse เส้นผ่านศูนย์กลางเท่าไหร่คะ?",
    "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_en": "Who wrote the episode with a production code greater than 1.4 direcyed by rick wallace?",
    "question_th": "ใครเป็นผู้เขียนตอนที่มีรหัสการผลิตมากกว่า 1.4 ซึ่งถูกควบคุมโดย 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_en": "Who wrote the episode that was directed by dan lerner?",
    "question_th": "ใครเป็นคนเขียนตอนที่กำกับโดยแดน เลิร์นเนอร์?",
    "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_en": "What is the average total of player Simon Donnelly, with a Scottish Cup greater than 0?",
    "question_th": "ค่าเฉลี่ยรวมของผู้เล่น ไซมอน ดอนเนลลี โดยสก็อตติช คัพ มากกว่า 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_en": "What is the Challenge Cup total with a League of 1, Player Simon Storey, and a Total greater than 1?",
    "question_th": "ผลรวมของ Challenge Cup ที่มีลีก 1, ผู้เล่น Simon Storey และผลรวมที่มากกว่า 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_en": "What is the highest total of Player Damon Gray, with a Challenge Cup less than 0?",
    "question_th": "จำนวนรวมสูงสุดของผู้เล่น Damon Grey โดยถ้วย Challenge Cup น้อยกว่า 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_en": "Which result has a Venue of away, and an Opponent of marbella?",
    "question_th": "ผลการแข่งขันใดมีสนามเยือน และฝ่ายตรงข้ามของมาร์เบย่า?",
    "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_en": "Which venue has a Date of 28 july 2007?",
    "question_th": "สถานที่ใดมีวันที่ 28 กรกฎาคม 2550",
    "context": "CREATE TABLE table_name_68 (venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_26 WHERE venue = \"home\"",
    "question_en": "What is the result with a home venue?",
    "question_th": "สนามเหย้าจะส่งผลอย่างไร?",
    "context": "CREATE TABLE table_name_26 (result VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_42 WHERE result = \"0–0\"",
    "question_en": "Which Date has a Result of 0–0?",
    "question_th": "วันที่ใดมีผลลัพธ์เป็น 0–0",
    "context": "CREATE TABLE table_name_42 (date VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_90 WHERE result = \"5–0\" AND opponent = \"tooting & mitcham\"",
    "question_en": "Which date has a Result of 5–0, and an Opponent of tooting & mitcham?",
    "question_th": "วันที่ใดมีผลการแข่งขัน 5–0 และเป็นฝ่ายตรงข้ามของ 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_en": "Name the total number of goals which have played more than 44",
    "question_th": "บอกจำนวนประตูทั้งหมดที่เล่นเกิน 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_en": "Name the most draws when goals against is more than 56 and wins is more than 14",
    "question_th": "ตั้งชื่อผลเสมอมากที่สุดเมื่อประตูที่เสียมากกว่า 56 และชนะมากกว่า 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_en": "Name the least goals when position is more than 4 and draws is more than 11",
    "question_th": "ตั้งชื่อประตูน้อยที่สุดเมื่ออันดับมากกว่า 4 และเสมอมากกว่า 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_en": "Name the most wins which have clubbed of elche cf and goals against more than 43",
    "question_th": "ระบุชัยชนะมากที่สุดซึ่งมีสโมสรเอลเช่และประตูต่อมากกว่า 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_en": "Birth Date of 8 November 1980, and a Weight smaller than 93 has what sum of a shirt number?",
    "question_th": "วันเกิดวันที่ 8 พฤศจิกายน 1980 และน้ำหนักน้อยกว่า 93 มีผลรวมของหมายเลขเสื้อเท่าไร?",
    "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_en": "Shirt number of 18, and a Height larger than 195 has how much weight?",
    "question_th": "เสื้อหมายเลข 18 และส่วนสูงมากกว่า 195 มีน้ำหนักเท่าไหร่?",
    "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_en": "Name the To par for leland gibson",
    "question_th": "ตั้งชื่อพาร์สำหรับ 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_en": "Name the place for ed oliver",
    "question_th": "ตั้งชื่อสถานที่ให้เอ็ด โอลิเวอร์",
    "context": "CREATE TABLE table_name_47 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_4 WHERE score = 74 - 68 - 71 = 213",
    "question_en": "Name the player with score of 74-68-71=213",
    "question_th": "ตั้งชื่อผู้เล่นด้วยคะแนน 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_en": "Name the To par for dick metz",
    "question_th": "ตั้งชื่อพาร์สำหรับดิ๊กเมตซ์",
    "context": "CREATE TABLE table_name_61 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_45 WHERE mixed_doubles = \"no competition\"",
    "question_en": "What year was there no competition in Mixed Doubles?",
    "question_th": "ปีใดที่ไม่มีการแข่งขันประเภทคู่ผสม?",
    "context": "CREATE TABLE table_name_45 (year VARCHAR, mixed_doubles VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_67 WHERE date = \"14 april 2001\"",
    "question_en": "what was the score for the game on 14 april 2001?",
    "question_th": "คะแนนของเกมเมื่อวันที่ 14 เมษายน พ.ศ. 2544 เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_67 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_25 WHERE date = \"21 april 2001\"",
    "question_en": "what is the score for the game on 21 april 2001?",
    "question_th": "คะแนนของเกมวันที่ 21 เมษายน 2544 เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_25 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_75 WHERE date = \"21 april 2001\"",
    "question_en": "what is the competition on 21 april 2001?",
    "question_th": "การแข่งขันในวันที่ 21 เมษายน 2544 คืออะไร?",
    "context": "CREATE TABLE table_name_75 (competition VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_57 WHERE record = \"1-3\"",
    "question_en": "Who is the opponent the Seattle Seahawks played when their record was 1-3?",
    "question_th": "ใครคือคู่ต่อสู้ที่ทีม Seattle Seahawks เล่นเมื่อสถิติของพวกเขาคือ 1-3?",
    "context": "CREATE TABLE table_name_57 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_35 WHERE attendance = \"71,789\"",
    "question_en": "On what date was the crowd size of 71,789?",
    "question_th": "ขนาดฝูงชน 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_en": "Which week did the Seattle Seahawks have a record of 6-6?",
    "question_th": "Seattle Seahawks มีสถิติ 6-6 สัปดาห์ไหน?",
    "context": "CREATE TABLE table_name_7 (week INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_36 WHERE attendance = \"51,100\"",
    "question_en": "What was the final score (result) for the game where 51,100 attended?",
    "question_th": "คะแนนสุดท้าย (ผลลัพธ์) สำหรับเกมที่มีผู้เข้าร่วม 51,100 คนเป็นเท่าใด",
    "context": "CREATE TABLE table_name_36 (result VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT game_site FROM table_name_63 WHERE attendance = \"56,770\"",
    "question_en": "Where was the game held when the attendance was 56,770?",
    "question_th": "เกมดังกล่าวจัดขึ้นที่ไหนเมื่อมีผู้เข้าร่วม 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_en": "Which week was the game held at Kingdome on October 13, 1991?",
    "question_th": "เกมดังกล่าวจัดขึ้นที่ Kingdome เมื่อวันที่ 13 ตุลาคม พ.ศ. 2534 ในสัปดาห์ใด",
    "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_en": "Who was the opponent at the game that had a loss of Harden (9-6)?",
    "question_th": "คู่ต่อสู้ในเกมที่แพ้ฮาร์เดน (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_en": "Name the sum of Laps for co-drivers of oliver gavin jan magnussen and class of gts with year less than 2004",
    "question_th": "ตั้งชื่อผลรวมของรอบสำหรับผู้ขับขี่ร่วมของ Oliver gavin jan magnussen และคลาสของ gts ที่ปีน้อยกว่า 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_en": "Name the team with laps more than 333 and year less than 2004",
    "question_th": "ตั้งชื่อทีมที่มีรอบมากกว่า 333 และปีน้อยกว่าปี 2004",
    "context": "CREATE TABLE table_name_84 (team VARCHAR, laps VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_92 WHERE laps = 333",
    "question_en": "Name the team with Laps of 333",
    "question_th": "ตั้งชื่อทีมด้วยรอบ 333",
    "context": "CREATE TABLE table_name_92 (team VARCHAR, laps VARCHAR)"
  },
  {
    "answer": "SELECT points_for FROM table_name_34 WHERE tries_for = \"29\"",
    "question_en": "What is the points for where the tries for is 29?",
    "question_th": "อะไรคือจุดที่พยายามให้ได้ 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_en": "What is the points for of Club of penallta rfc?",
    "question_th": "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_en": "What is the try bonus for ynysybwl rfc?",
    "question_th": "โบนัสลองสำหรับ 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_en": "What is the points against for the team that played 22 and lost 6?",
    "question_th": "แต้มเทียบกับทีมที่เล่น 22 แพ้ 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_en": "What is the score of  Tommy Bolt",
    "question_th": "ทอมมี่ โบลต์ มีสกอร์เท่าไหร่",
    "context": "CREATE TABLE table_name_23 (score INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_12 WHERE score < 69",
    "question_en": "WHich Places have a score smaller than 69?",
    "question_th": "สถานที่ใดมีคะแนนน้อยกว่า 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_en": "What is the To Par that has Tommy Bolt with a Place of t6?",
    "question_th": "To Par ที่มี Tommy Bolt มีตำแหน่ง 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_en": "Who is the entrant with a cooper t43 chassis before 1958?",
    "question_th": "ใครคือผู้เข้าแข่งขันที่มีแชสซี cooper t43 ก่อนปี 1958",
    "context": "CREATE TABLE table_name_47 (entrant VARCHAR, year VARCHAR, chassis VARCHAR)"
  },
  {
    "answer": "SELECT 2006 FROM table_name_26 WHERE 2010 = \"27\"",
    "question_en": "Name the 2006 when the 2010 is 27",
    "question_th": "ตั้งชื่อปี 2006 เมื่อปี 2010 คือ 27",
    "context": "CREATE TABLE table_name_26 (Id VARCHAR)"
  },
  {
    "answer": "SELECT main_cast_seasons FROM table_name_13 WHERE portrayed_by = \"joe jonas\"",
    "question_en": "Which main cast seasons were portrayed by Joe Jonas?",
    "question_th": "โจ โจนาส รับบทเป็นนักแสดงหลักในฤดูกาลใดบ้าง",
    "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_en": "How many episodes were portrayed by Nick Jonas?",
    "question_th": "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_en": "How many episodes had the character of Nick Lucas?",
    "question_th": "ตัวละครของ 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_en": "What character is portrayed by Joe Jonas?",
    "question_th": "โจ โจนาส แสดงเป็นตัวละครตัวใด",
    "context": "CREATE TABLE table_name_59 (character VARCHAR, portrayed_by VARCHAR)"
  },
  {
    "answer": "SELECT extra FROM table_name_90 WHERE tournament = \"commonwealth games\"",
    "question_en": "What was the extra info for the Commonwealth Games?",
    "question_th": "ข้อมูลเพิ่มเติมสำหรับ 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_en": "What year was the Commonwealth Games?",
    "question_th": "Commonwealth Games จัดขึ้นในปีใด",
    "context": "CREATE TABLE table_name_16 (year INTEGER, tournament VARCHAR)"
  },
  {
    "answer": "SELECT occupation FROM table_name_90 WHERE residence = \"red bank\"",
    "question_en": "What job is at red bank?",
    "question_th": "เรดแบงค์ทำงานอะไรคะ?",
    "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_en": "What year did Ecurie Bleue score more than 0 points?",
    "question_th": "Ecurie Bleue ทำคะแนนได้มากกว่า 0 คะแนนในปีใด?",
    "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_en": "What is the starting point of the north/south operating Palafox Street route?",
    "question_th": "จุดเริ่มต้นของเส้นทาง Palafox Street เหนือ/ใต้ คืออะไร?",
    "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_en": "Which bi-directional route has a terminus at Ecat/Rosa Park Transit Center?",
    "question_th": "เส้นทางสองทิศทางใดมีจุดสิ้นสุดที่ 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_en": "Which route has a terminus of pine Forest?",
    "question_th": "เส้นทางใดมีจุดสิ้นสุดของป่าสน",
    "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_en": "What is the starting point of the route that has its terminus at Ecat/Rosa Park Transit Center?",
    "question_th": "จุดเริ่มต้นของเส้นทางที่มีจุดสิ้นสุดที่ 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_en": "What is the direction of the route that stars at downtown transit center and has a terminus point at Pensacola Beach?",
    "question_th": "ทิศทางของเส้นทางที่ติดดาวที่ศูนย์เปลี่ยนเครื่องในตัวเมืองและมีจุดสิ้นสุดที่หาดเพนซาโคลาคืออะไร?",
    "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_en": "Where does the Bayou Blvd./12th Avenue route that has a terminus at the downtown transit center operate?",
    "question_th": "เส้นทาง Bayou Blvd./12th Avenue ที่มีจุดสิ้นสุดที่ศูนย์เปลี่ยนเครื่องในตัวเมืองใช้งานที่ไหน",
    "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_en": "How many full professors work under Hartmut Kliemt with more than 0 lecturers?",
    "question_th": "มีอาจารย์เต็มจำนวนกี่คนที่ทำงานภายใต้ Hartmut Kliemt และมีอาจารย์มากกว่า 0 คน",
    "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_en": "What is the least amount of lecturers in the accounting department with less than 5 full professors?",
    "question_th": "อาจารย์ประจำภาควิชาบัญชีที่มีอาจารย์เต็มจำนวนไม่ถึง 5 คนน้อยที่สุดคือจำนวนเท่าใด?",
    "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_en": "What is the average number of honorary professors in the economics department with 1 lecturer?",
    "question_th": "อาจารย์กิตติมศักดิ์ภาควิชาเศรษฐศาสตร์กับอาจารย์ 1 คนโดยเฉลี่ยคือเท่าไร?",
    "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_en": "What Loss occured on the Date of June 12?",
    "question_th": "วันที่ 12 มิถุนายน ขาดทุนอะไรบ้าง?",
    "context": "CREATE TABLE table_name_39 (loss VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_27 WHERE attendance = \"17,675\"",
    "question_en": "What Loss had an Attendance of 17,675?",
    "question_th": "การสูญเสียอะไรมีผู้เข้าร่วม 17,675 คน?",
    "context": "CREATE TABLE table_name_27 (loss VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_35 WHERE attendance = \"17,675\"",
    "question_en": "What Loss had an Attendance of 17,675?",
    "question_th": "การสูญเสียอะไรมีผู้เข้าร่วม 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_en": "On what Date had a Score of 5-2 and a Loss of Greinke (1-2)?",
    "question_th": "วันไหนที่สกอร์ 5-2 และแพ้ กรีนเก้ (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_en": "What was the Score that has an Attendance of 39,446?",
    "question_th": "คะแนนที่มีผู้เข้าร่วม 39,446 คืออะไร?",
    "context": "CREATE TABLE table_name_3 (score VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_87 WHERE score = \"9-1\"",
    "question_en": "What was the Loss that had a Score of 9-1?",
    "question_th": "การแพ้ที่มีคะแนน 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_en": "What counties represented have a democratic committee, and a committee of ways and means?",
    "question_th": "มณฑลใดเป็นตัวแทนที่มีคณะกรรมการประชาธิปไตย และคณะกรรมการแนวทางและวิธีการ?",
    "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_en": "What is the average first elected year that has a district of 11 and a committee of environmental matters?",
    "question_th": "ปีที่ได้รับการเลือกตั้งโดยเฉลี่ยครั้งแรกซึ่งมีเขต 11 และคณะกรรมการเรื่องสิ่งแวดล้อมคือเท่าใด",
    "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_en": "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?",
    "question_th": "จำนวนผู้ได้รับเลือกคนแรกที่มีประเทศเป็นตัวแทนในเขตบัลติมอร์ เขต 06.0 6 และคณะกรรมการด้านเศรษฐกิจมีจำนวนเท่าใด",
    "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_en": "What district has counties represented by Baltimore county, a committee of health and government operations, and a first elected smaller than 2002?",
    "question_th": "เขตใดมีมณฑลใดเป็นตัวแทนโดยเทศมณฑลบัลติมอร์ ซึ่งเป็นคณะกรรมการด้านสุขภาพและการดำเนินงานของรัฐบาล และได้รับการเลือกตั้งครั้งแรกที่มีจำนวนน้อยกว่าปี 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_en": "What is the Highest first elected year that has a district of 06.0 6, and a committee of economic matters?",
    "question_th": "ปีที่ได้รับการเลือกตั้งสูงสุดครั้งแรกซึ่งมีเขต 06.0 6 และมีคณะกรรมการเรื่องเศรษฐกิจคืออะไร?",
    "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_en": "Who was from Morocco and scored 6 goals?",
    "question_th": "ใครมาจากโมร็อกโกและยิงได้ 6 ประตู?",
    "context": "CREATE TABLE table_name_57 (name VARCHAR, goals VARCHAR, nationality VARCHAR)"
  },
  {
    "answer": "SELECT MAX(ranking) FROM table_name_80 WHERE years = \"1996–13\" AND goals > 17",
    "question_en": "Who has the highest ranking from  1996–13, and more than 17 goals?",
    "question_th": "ใครมีอันดับสูงสุดระหว่างฤดูกาล 1996–13 และมากกว่า 17 ประตู?",
    "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–\"",
    "question_en": "What was the average ranking of Saudi Arabia in the years of 2000–?",
    "question_th": "อันดับเฉลี่ยของซาอุดีอาระเบียในปี 2000 คือเท่าไร?",
    "context": "CREATE TABLE table_name_53 (ranking INTEGER, nationality VARCHAR, years VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_89 WHERE goals = 14",
    "question_en": "Which nation had 14 goals?",
    "question_th": "ชาติไหนมี 14 ประตู?",
    "context": "CREATE TABLE table_name_89 (nationality VARCHAR, goals VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_28 WHERE name = \"hamzah idris\"",
    "question_en": "What nationality is hamzah idris?",
    "question_th": "ฮัมซะห์ อิดริส มีสัญชาติอะไร?",
    "context": "CREATE TABLE table_name_28 (nationality VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT MIN(goals) FROM table_name_76 WHERE ranking < 4 AND years = \"1996–13\"",
    "question_en": "Who had fewer goals than 4 during the years of 1996–13?",
    "question_th": "ใครมีเป้าหมายน้อยกว่า 4 ในช่วงปี 1996–13?",
    "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_en": "what is the lowest top-25 when the events is less than 17 and top-5 is more than 0?",
    "question_th": "อะไรคือ 25 อันดับแรกที่ต่ำที่สุดเมื่อเหตุการณ์น้อยกว่า 17 และ 5 อันดับแรกมากกว่า 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_en": "what is the top-5 when the tournament is totals and the top-25 is more than 4?",
    "question_th": "อะไรคือ 5 อันดับแรกเมื่อทัวร์นาเมนต์มีคะแนนรวมและ 25 อันดับแรกมีมากกว่า 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_en": "what is the average number of events when the top-5 is less than 1 and top 25 more than 1",
    "question_th": "จำนวนเหตุการณ์โดยเฉลี่ยคือเท่าใดเมื่อ 5 อันดับแรกน้อยกว่า 1 และ 25 อันดับแรกมากกว่า 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_en": "what is the highest top-5 when the top-25 is less than 4, cuts made is more than 3 and wins is 0?",
    "question_th": "อะไรคืออันดับสูงสุด 5 เมื่อ 25 อันดับแรกน้อยกว่า 4 การตัดมากกว่า 3 และการชนะคือ 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_en": "what is the total number of times the tournament was pga championship and evens is less than 4?",
    "question_th": "จำนวนครั้งทั้งหมดที่ทัวร์นาเมนต์เป็นแชมป์พีจีเอและคู่น้อยกว่า 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_en": "What year did Elf Team Tyrrell have 34 points?",
    "question_th": "ทีมเอลฟ์ไทเรลล์มี 34 แต้มในปีใด",
    "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_en": "After 1972, how many points did Marlboro Team Alfa Romeo have?",
    "question_th": "หลังจากปี 1972 ทีม Marlboro Team Alfa Romeo มีคะแนนเท่าไร",
    "context": "CREATE TABLE table_name_84 (points VARCHAR, year VARCHAR, entrant VARCHAR)"
  },
  {
    "answer": "SELECT chassis FROM table_name_5 WHERE points = \"39\"",
    "question_en": "What chassis had 39 points?",
    "question_th": "แชสซีใดมี 39 คะแนน?",
    "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_en": "How many points did the Ford V8 with a Tyrrell 007 have?",
    "question_th": "Ford V8 กับ Tyrrell 007 มีคะแนนกี่คะแนน?",
    "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_en": "Before 1976 and with 12 points, what chassis did the Ford V8 have?",
    "question_th": "ก่อนปี 1976 และมี 12 แต้ม Ford V8 มีแชสซีอะไร?",
    "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_en": "What year did Elf Team Tyrrell have 39 points and a Tyrrell 007 Chassis?",
    "question_th": "Elf Team Tyrrell มี 39 แต้มและ 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_en": "What position does the player who played for butler cc (ks) play?",
    "question_th": "นักเตะที่เล่นให้กับ butler cc (ks) เล่นตำแหน่งอะไรครับ?",
    "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_en": "How many schools did player number 3 play at?",
    "question_th": "ผู้เล่นหมายเลข 3 เล่นที่โรงเรียนกี่แห่ง?",
    "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_en": "What school did player number 21 play for?",
    "question_th": "ผู้เล่นหมายเลข 21 เล่นให้กับโรงเรียนใด?",
    "context": "CREATE TABLE table_10015132_11 (school_club_team VARCHAR, no VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_10015132_11 WHERE no = \"42\"",
    "question_en": "Who is the player that wears number 42?",
    "question_th": "นักเตะที่สวมหมายเลข 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_en": "What player played guard for toronto in 1996-97?",
    "question_th": "นักเตะคนไหนเล่นเป็นการ์ดให้โตรอนโตในปี 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_en": "Who are all of the players on the Westchester High School club team?",
    "question_th": "ใครคือผู้เล่นทั้งหมดในทีมสโมสร Westchester High School?",
    "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_en": "What school/club team is Amir Johnson on?",
    "question_th": "Amir Johnson อยู่ทีมโรงเรียน/สโมสรใด",
    "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_en": "What are the total amount of numbers on the Toronto team in 2005-06?",
    "question_th": "จำนวนตัวเลขทั้งหมดของทีมโตรอนโตในปี 2548-2549 คือเท่าไร?",
    "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_en": "What are the total number of positions on the Toronto team in 2006-07?",
    "question_th": "จำนวนตำแหน่งทั้งหมดในทีมโตรอนโตในปี 2549-50 คือเท่าไร",
    "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_en": "What are the nationality of the players on the Fresno State school/club team?",
    "question_th": "ผู้เล่นในทีมโรงเรียน/สโมสร Fresno State มีสัญชาติอะไร?",
    "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_en": "What school/club team is Trey Johnson on?",
    "question_th": "Trey Johnson อยู่ทีมโรงเรียน/สโมสรใด",
    "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_en": "When did Jacques Chirac stop being a G8 leader?",
    "question_th": "Jacques Chirac หยุดเป็นผู้นำ G8 เมื่อใด",
    "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_en": "When did the Prime Minister of Italy take office?",
    "question_th": "นายกรัฐมนตรีอิตาลีเข้ารับตำแหน่งเมื่อใด",
    "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_en": "What is the English name of the country whose official native language is Dutch Papiamento?",
    "question_th": "ชื่อภาษาอังกฤษของประเทศที่มีภาษาพื้นเมืองอย่างเป็นทางการคือ 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_en": "What official or native languages are spoken in the country whose capital city is Canberra?",
    "question_th": "ภาษาราชการหรือภาษาพื้นเมืองใดบ้างที่พูดในประเทศที่มีเมืองหลวงคือแคนเบอร์รา",
    "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_en": "What is the local name given to the city of Canberra?",
    "question_th": "ชื่อท้องถิ่นของเมืองแคนเบอร์ราคืออะไร?",
    "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_en": "What is the local name given to the capital of Anguilla?",
    "question_th": "ชื่อท้องถิ่นที่ตั้งให้กับเมืองหลวงของแองกวิลลาคืออะไร?",
    "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_en": "What is the English name given to the city of St. John's?",
    "question_th": "เมืองเซนต์จอห์นมีชื่อภาษาอังกฤษว่าอะไร?",
    "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_en": "How many capital cities does Australia have?",
    "question_th": "ออสเตรเลียมีเมืองหลวงกี่เมือง?",
    "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_en": "The episode with production code 9abx02 was originally aired on what date?",
    "question_th": "ตอนที่มีรหัสการผลิต 9abx02 เดิมออกอากาศวันไหน?",
    "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_en": "What is the episode number that has production code 8abx15?",
    "question_th": "หมายเลขตอนที่มีรหัสการผลิต 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_en": "Name the minimum tiesplayed for 6 years",
    "question_th": "ตั้งชื่อความสัมพันธ์ขั้นต่ำที่เล่นเป็นเวลา 6 ปี",
    "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_en": "What is the amount of trees, that require replacement when district is leninsky?",
    "question_th": "จำนวนต้นไม้ที่ต้องทดแทนเมื่อเขตเลนินสกี้คือเท่าใด?",
    "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_en": "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%)?",
    "question_th": "อำเภออะไรเมื่อจำนวนต้นไม้รวมน้อยกว่า 150817.6878461314 และจำนวนต้นไม้เก่าเท่ากับ 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_en": "What is the amount of trees, that require replacement when the district is motovilikhinsky?",
    "question_th": "จำนวนต้นไม้ที่ต้องทดแทนเมื่ออำเภอเป็น 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_en": "What is the total amount of trees when district is leninsky?",
    "question_th": "จำนวนต้นไม้ทั้งหมดเมื่อเขตเลนินสกี้คือเท่าไร?",
    "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_en": "When the value of \"since beginning of big 12\" is synonymous with its' category, what are the in Ames values?",
    "question_th": "เมื่อค่าของ \"ตั้งแต่เริ่มต้นของ 12 ใหญ่\" ตรงกันกับหมวดหมู่ของค่านั้น ค่าใน Ames จะเท่ากับเท่าใด",
    "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_en": "what's the u.s. open cup status for regular season of 4th, atlantic division ",
    "question_th": " สถานะยูเอสโอเพ่นคัพสำหรับฤดูกาลปกติอันดับที่ 4 ของดิวิชั่นแอตแลนติกเป็นอย่างไร",
    "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_en": "how many division  did not qualify for u.s. open cup in 2003",
    "question_th": "มีกี่ดิวิชั่นที่ไม่ผ่านเข้ารอบสำหรับเราโอเพ่นคัพในปี 2546",
    "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_en": "which round is u.s. open cup division semifinals",
    "question_th": "รอบไหนคือเราโอเพ่นคัพรอบรองชนะเลิศ",
    "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_en": "what are all the playoffs for regular season is 1st, atlantic division",
    "question_th": "รอบตัดเชือกสำหรับฤดูกาลปกติคือที่ 1 ดิวิชั่นแอตแลนติก",
    "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_en": "what are all the playoffs for u.s. open cup in 1st round",
    "question_th": "รอบตัดเชือกสำหรับเราเปิดคัพรอบแรกเป็นอย่างไรบ้าง",
    "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_en": "what is the total number of 2nd leg where aggregate is 7-2",
    "question_th": "เลกที่ 2 มีจำนวนรวมเท่าไหร่ โดยสกอร์รวม 7-2",
    "context": "CREATE TABLE table_1061075_1 (aggregate VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_1061075_1 WHERE aggregate = \"4–7\"",
    "question_en": " what's the competition where aggregate is 4–7",
    "question_th": " การแข่งขันคืออะไร โดยรวม 4–7",
    "context": "CREATE TABLE table_1061075_1 (competition VARCHAR, aggregate VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(round) FROM table_1061075_1 WHERE opponents = \"Haugar\"",
    "question_en": "what is the total number of round where opponents is haugar",
    "question_th": "จำนวนรอบทั้งหมดที่ฝ่ายตรงข้ามเป็น 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_en": " what's the 1st leg where opponents is galatasaray",
    "question_th": " ขาแรกคืออะไรที่ฝ่ายตรงข้ามคือกาลาตาซาราย",
    "context": "CREATE TABLE table_1061075_1 (opponents VARCHAR)"
  },
  {
    "answer": "SELECT MAX(rd) FROM table_10706961_2 WHERE pole_position = \"Tom Sneva\"",
    "question_en": "What is the highest Rd that Tom Sneva had the pole position in?",
    "question_th": "ถนนที่สูงที่สุดที่ Tom Sneva ดำรงตำแหน่งโพลโพซิชั่นคืออะไร?",
    "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_en": "How many winning drivers were there in the race that had a fastest lap time of 56.920?",
    "question_th": "มีนักแข่งที่ชนะกี่คนในการแข่งขันที่มีเวลารอบเร็วที่สุดที่ 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_en": "How many reports are there in the race that Forsythe Racing won and Teo Fabi had the pole position in?",
    "question_th": "มีรายงานกี่ฉบับในการแข่งขันที่ Forsythe Racing ชนะและ Teo Fabi คว้าตำแหน่งโพลโพสิชั่น?",
    "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_en": "Which Rd took place at the Indianapolis 500?",
    "question_th": "ถนนใดเกิดขึ้นที่ 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_en": "Which teams won when Bobby Rahal was their winning driver?",
    "question_th": "ทีมใดชนะเมื่อ Bobby Rahal เป็นนักขับที่ชนะ?",
    "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_en": "What was the fastest lap time in the Escort Radar Warning 200?",
    "question_th": "เวลารอบที่เร็วที่สุดใน 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_en": "What report was there for the porsche north america?",
    "question_th": "มีรายงานอะไรเกี่ยวกับปอร์เช่อเมริกาเหนือบ้าง?",
    "context": "CREATE TABLE table_10707176_2 (report VARCHAR, winning_team VARCHAR)"
  },
  {
    "answer": "SELECT rnd FROM table_10707176_2 WHERE circuit = \"Phoenix International Raceway\"",
    "question_en": "What rnds were there for the phoenix international raceway?",
    "question_th": "สนามแข่งฟีนิกซ์นานาชาติมีการแข่งขันอะไรบ้าง?",
    "context": "CREATE TABLE table_10707176_2 (rnd VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT pole_position FROM table_10707176_2 WHERE rnd = \"12\"",
    "question_en": "Who was the pole position for the rnd equalling 12?",
    "question_th": "ตำแหน่งโพลโพซิชั่นอันดับ 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_en": "How many reports were the for the cleveland burke lakefront airport circut?",
    "question_th": "มีรายงานกี่ฉบับเกี่ยวกับวงจรสนามบินริมทะเลสาบคลีฟแลนด์ เบิร์ค",
    "context": "CREATE TABLE table_10707176_2 (report VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(winning_driver) FROM table_10707176_2 WHERE rnd = \"5\"",
    "question_en": "How many winning drivers were the for the rnd equalling 5?",
    "question_th": "มีนักแข่งที่ชนะกี่คนในรอบ 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_en": "The race tony bettenhausen 200 has what smallest rd?",
    "question_th": "การแข่งขัน tony Bettenhausen 200 มี 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_en": "The winning team of the race, los angeles times 500 is who?",
    "question_th": "ทีมที่ชนะการแข่งขัน ลอสแอนเจลิส คูณ 500 คือใคร?",
    "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_en": "How many winning drivers in the kraco twin 125 (r2) race were there?",
    "question_th": "มีนักแข่งที่ชนะการแข่งขัน kraco twin 125 (r2) กี่คน",
    "context": "CREATE TABLE table_10706879_3 (winning_driver VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_10706879_3 WHERE winning_driver = \"Johnny Rutherford\"",
    "question_en": "What are the races that johnny rutherford has won?",
    "question_th": "จอห์นนี่ รัทเทอร์ฟอร์ด ชนะการแข่งขันอะไรบ้าง?",
    "context": "CREATE TABLE table_10706879_3 (name VARCHAR, winning_driver VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(fastest_lap) FROM table_10706879_3 WHERE rd = 10",
    "question_en": "How many fastest laps were there for a rd that equals 10?",
    "question_th": "มีกี่รอบที่เร็วที่สุดสำหรับรอบที่เท่ากับ 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_en": "What is the license award date for North East England?",
    "question_th": "วันที่รับรางวัลใบอนุญาตสำหรับ 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_en": "What is the percentage of growth in 2000-2008 in ethiopia?",
    "question_th": "เปอร์เซ็นต์ของการเติบโตในปี 2543-2551 ในเอธิโอเปียคือเท่าใด",
    "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_en": "Name the total number of percentage growth 2000-2008 of uganda?",
    "question_th": "ตั้งชื่อจำนวนเปอร์เซ็นต์การเติบโตทั้งหมดระหว่างปี 2543-2551 ของยูกันดา?",
    "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_en": "What is the maximum percentage grown 2000-2008 in burundi",
    "question_th": "เปอร์เซ็นต์สูงสุดที่เติบโตในปี 2543-2551 ในบุรุนดีคือเท่าใด",
    "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_en": "Provide me with the names of all the villages (German) that has 76.3% of Slovenes in 1951.",
    "question_th": "บอกชื่อหมู่บ้านทั้งหมด (ภาษาเยอรมัน) ที่มีประชากรสโลวีเนีย 76.3% ในปี 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_en": "Give me the minimum number of people in 1991 with 92.5% of Slovenes in 1991.",
    "question_th": "ขอทราบจำนวนประชากรขั้นต่ำในปี 1991 โดยที่ 92.5% ของชาวสโลวีเนียในปี 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_en": "Provide me with the name of all the village (German) that are part of the village (Slovenian) with sele srednji kot. ",
    "question_th": " ระบุชื่อหมู่บ้านทั้งหมด (เยอรมัน) ที่เป็นส่วนหนึ่งของหมู่บ้าน (สโลวีเนีย) พร้อมด้วย 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_en": "Provide me with the name of all the village (German) that are part of the village (Slovenian) with sele borovnica.",
    "question_th": "ระบุชื่อหมู่บ้านทั้งหมด (ภาษาเยอรมัน) ที่เป็นส่วนหนึ่งของหมู่บ้าน (สโลวีเนีย) ที่มีคำว่า 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_en": "Provide me with the name of the village (German) where there is 96.9% Slovenes in 1951. ",
    "question_th": " บอกชื่อหมู่บ้าน (ภาษาเยอรมัน) ซึ่งมีชาวสโลวีเนีย 96.9% ในปี 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_en": "What was the score of the game on November 12?",
    "question_th": "สกอร์เกมวันที่ 12 พฤศจิกายน เป็นอย่างไร?",
    "context": "CREATE TABLE table_10812293_3 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_10812293_3 WHERE team = \"San Antonio\"",
    "question_en": "Who had high assists when they played against San Antonio?",
    "question_th": "ใครแอสซิสต์ได้สูงเมื่อเจอกับซาน อันโตนิโอ?",
    "context": "CREATE TABLE table_10812293_3 (high_assists VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_10812293_3 WHERE game = 4",
    "question_en": "Who scored the most points in game 4?",
    "question_th": "ใครทำแต้มได้มากที่สุดในเกมที่ 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_en": "Where was the game on November 20?",
    "question_th": "เกมวันที่ 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_en": "The canadian airdate of 11 february 2008 applied to what series number?",
    "question_th": "วันที่ออกอากาศของแคนาดาวันที่ 11 กุมภาพันธ์ พ.ศ. 2551 ใช้กับซีรีส์หมายเลขใด",
    "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_en": "The U.S. airdate of 4 april 2008 had a production code of what?",
    "question_th": "ออกอากาศที่อเมริกาวันที่ 4 เมษายน 2551 มีรหัสการผลิตว่าอะไร?",
    "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_en": "The U.S. airdate of 8 august 2008 also had canadian airdates of what?",
    "question_th": "วันที่ออกอากาศของสหรัฐอเมริกาเมื่อวันที่ 8 สิงหาคม 2551 มีวันที่ออกอากาศของแคนาดาด้วย",
    "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_en": "The canadian airdate of 17 march 2008 had how many numbers in the season?",
    "question_th": "วันที่ออกอากาศของแคนาดาเมื่อวันที่ 17 มีนาคม พ.ศ. 2551 มีกี่หมายเลขในฤดูกาล?",
    "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_en": "For the episode(s) aired in the U.S. on 4 april 2008, what were the names?",
    "question_th": "ตอนที่ออกอากาศในสหรัฐอเมริกาเมื่อวันที่ 4 เมษายน พ.ศ. 2551 มีชื่อว่าอะไร?",
    "context": "CREATE TABLE table_10935205_1 (title VARCHAR, us_airdate VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_10975034_2 WHERE college = \"Wilfrid Laurier\"",
    "question_en": "Which player from the 2004 CFL draft attended Wilfrid Laurier?",
    "question_th": "ผู้เล่นคนไหนจากร่าง CFL ปี 2004 ที่เข้าร่วมวิลฟริด ลอริเยร์?",
    "context": "CREATE TABLE table_10975034_2 (player VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_10975034_2 WHERE player = \"Christian Leibl-Cote\"",
    "question_en": "What position does Christian Leibl-Cote play?",
    "question_th": "คริสเตียน ไลเบลอ-โกเต้ เล่นตำแหน่งอะไร?",
    "context": "CREATE TABLE table_10975034_2 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(pick__number) FROM table_10975034_2 WHERE college = \"Northwestern\"",
    "question_en": "What is the pick number for Northwestern college?",
    "question_th": "หมายเลขเลือกสำหรับวิทยาลัย Northwestern คืออะไร?",
    "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_en": "What is the number of the city district of stadtteil where foreigners are 5.162?",
    "question_th": "เลขที่เมืองสตัดท์ไทล์ที่ชาวต่างชาติอยู่ที่ 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_en": "What is the city where the number is 47?",
    "question_th": "หมายเลข 47 คือเมืองอะไร?",
    "context": "CREATE TABLE table_10992_3 (city_district__stadtteil_ VARCHAR, no VARCHAR)"
  },
  {
    "answer": "SELECT league FROM table_11044765_1 WHERE mascot = \"Raiders\"",
    "question_en": "Which leagues have Raiders as their mascot?",
    "question_th": "ลีกใดบ้างที่มี Raiders เป็นมาสคอต?",
    "context": "CREATE TABLE table_11044765_1 (league VARCHAR, mascot VARCHAR)"
  },
  {
    "answer": "SELECT league FROM table_11044765_1 WHERE school = \"Galena\"",
    "question_en": "Which leagues is the Galena school in?",
    "question_th": "โรงเรียนกาเลนาอยู่ในลีกใด",
    "context": "CREATE TABLE table_11044765_1 (league VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_11044765_1 WHERE mascot = \"Lancers\"",
    "question_en": "What city and state is the Lancers mascot located?",
    "question_th": "มาสคอต Lancers ตั้งอยู่ในเมืองและรัฐใด",
    "context": "CREATE TABLE table_11044765_1 (location VARCHAR, mascot VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_11044765_1 WHERE mascot = \"Miners\"",
    "question_en": "What city and state are the miners located in?",
    "question_th": "คนงานเหมืองตั้งอยู่ในเมืองและรัฐใด",
    "context": "CREATE TABLE table_11044765_1 (location VARCHAR, mascot VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_11044765_1 WHERE mascot = \"Raiders\"",
    "question_en": "Which school has the Raiders as their mascot?",
    "question_th": "โรงเรียนไหนมี Raiders เป็นตัวนำโชค?",
    "context": "CREATE TABLE table_11044765_1 (school VARCHAR, mascot VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_1121352_2 WHERE date = \"Nov 3, 2002\"",
    "question_en": "Where was the tournament dated nov 3, 2002?",
    "question_th": "การแข่งขันจัดขึ้นวันที่ 3 พฤศจิกายน พ.ศ. 2545 ที่ไหน?",
    "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_en": "Where is the margin of victory dated mar 28, 2004?",
    "question_th": "ขอบแห่งชัยชนะลงวันที่ 28 มีนาคม 2547 อยู่ที่ไหน?",
    "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_en": "What is the to par dated may 4, 2003?",
    "question_th": "to par ลงวันที่ 4 พฤษภาคม 2546 คืออะไร?",
    "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_en": "What date were the runner ups pat hurst juli inkster?",
    "question_th": "รองชนะเลิศ 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_en": "what's the total number of final epbeingode count with character being rick stetler",
    "question_th": "จำนวนตอนสุดท้ายทั้งหมดโดยที่ตัวละครเป็นริค สเต็ตเลอร์คือเท่าไร",
    "context": "CREATE TABLE table_11210576_4 (final_episode VARCHAR, character VARCHAR)"
  },
  {
    "answer": "SELECT character FROM table_11210576_4 WHERE fate = \"Deceased: Knife Wound\"",
    "question_en": "what's the character with fate being deceased: knife wound",
    "question_th": "ตัวละครที่โชคชะตาเสียชีวิตคืออะไร: บาดแผลมีด",
    "context": "CREATE TABLE table_11210576_4 (character VARCHAR, fate VARCHAR)"
  },
  {
    "answer": "SELECT actor FROM table_11210576_4 WHERE character = \"Judge Joseph Ratner\"",
    "question_en": "what's the actor with character being judge joseph ratner",
    "question_th": "นักแสดงที่มีตัวละครเป็นผู้พิพากษาโจเซฟ แรตเนอร์คืออะไร",
    "context": "CREATE TABLE table_11210576_4 (actor VARCHAR, character VARCHAR)"
  },
  {
    "answer": "SELECT semi_finalist__number2 FROM table_11214772_2 WHERE year = 2007",
    "question_en": "Which team was the second semi finalist in 2007?",
    "question_th": "ทีมใดเป็นผู้เข้ารอบรองชนะเลิศคนที่สองในปี 2550",
    "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_en": "How many teams were listed as runner up in 2005 and there the first semi finalist was Western Carolina?",
    "question_th": "มีกี่ทีมที่ถูกระบุว่าเป็นรองชนะเลิศในปี 2548 และมีผู้เข้ารอบรองชนะเลิศคนแรกคือเวสเทิร์นแคโรไลนา",
    "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_en": "List the scores of all games when Miami were listed as the first Semi finalist",
    "question_th": "แสดงรายการคะแนนของเกมทั้งหมดเมื่อไมอามีถูกระบุว่าเป็นผู้เข้ารอบรองชนะเลิศคนแรก",
    "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_en": "When Embry-Riddle made it to the first semi finalist slot, list all the runners up.",
    "question_th": "เมื่อเอ็มบรี-ริดเดิ้ลเข้ารอบรองชนะเลิศช่องแรก ให้รายชื่อผู้เข้ารอบทั้งหมด",
    "context": "CREATE TABLE table_11214772_2 (runner_up VARCHAR, semi_finalist__number1 VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_11214772_2 WHERE year = 2007",
    "question_en": "Where was the final game played in 2007",
    "question_th": "เกมสุดท้ายเล่นที่ไหนในปี 2550",
    "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_en": "Which round had Michael Schumacher in the pole position, David Coulthard with the fastest lap, and McLaren - Mercedes as the winning constructor?",
    "question_th": "รอบใดที่มี Michael Schumacher อยู่ในตำแหน่งโพล, David Coulthard ที่มีรอบเร็วที่สุด และ McLaren - Mercedes เป็นตัวสร้างที่ชนะ",
    "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_en": "How many drivers won the Italian Grand Prix?",
    "question_th": "มีนักแข่งกี่คนที่ชนะการแข่งขัน 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_en": "What was the report of the Belgian Grand Prix?",
    "question_th": "รายงานของ 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_en": "Who had the fastest lap in the Belgian Grand Prix?",
    "question_th": "ใครมีรอบเร็วที่สุดในการแข่งขัน 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_en": "When was the date successor seated when the vacator was charles e. chamberlain (r)?",
    "question_th": "วันที่ผู้สืบทอดนั่งอยู่เมื่อใดเมื่อผู้ว่างงานคือชาร์ลส์อี แชมเบอร์เลน (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_en": "Who was the successor when the vacator was chester e. holifield (d)?",
    "question_th": "ใครเป็นผู้สืบทอดเมื่อผู้ว่างงานคือเชสเตอร์อี โฮลิฟิลด์ (ง)?",
    "context": "CREATE TABLE table_1134091_4 (successor VARCHAR, vacator VARCHAR)"
  },
  {
    "answer": "SELECT date_successor_seated FROM table_1134091_4 WHERE district = \"California 10th\"",
    "question_en": "When was the successor seated when the district was California 10th?",
    "question_th": "ผู้สืบทอดนั่งอยู่เมื่อใดเมื่อเขตอยู่ที่แคลิฟอร์เนียที่ 10",
    "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_en": "Who was the vacator when the date successor seated was august 21, 1973?",
    "question_th": "ใครคือผู้ว่างงานเมื่อวันที่ผู้สืบทอดตำแหน่งคือวันที่ 21 สิงหาคม พ.ศ. 2516?",
    "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_en": "What was the district when the reason for change was died January 1, 1974?",
    "question_th": "อำเภอคืออะไรเมื่อสาเหตุของการเปลี่ยนแปลงเสียชีวิตเมื่อวันที่ 1 มกราคม พ.ศ. 2517?",
    "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_en": "Which routes have  \"replaced by US 81\" listed in their remarks section?",
    "question_th": "เส้นทางใดบ้างที่มี \"แทนที่ด้วย US 81\" ระบุไว้ในส่วนหมายเหตุ",
    "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_en": "Which junctions have \"replaced by bsi-35\" listed in their remarks section?",
    "question_th": "ทางแยกใดที่มี \"แทนที่ด้วย bsi-35\" ระบุไว้ในส่วนหมายเหตุ",
    "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_en": "How many junctions have \"replaced by bsi-35\" listed in their remarks section?",
    "question_th": "มีทางแยกกี่ทางที่ \"แทนที่ด้วย bsi-35\" ระบุไว้ในส่วนหมายเหตุ",
    "context": "CREATE TABLE table_11336756_6 (junctions VARCHAR, remarks VARCHAR)"
  },
  {
    "answer": "SELECT length FROM table_11336756_6 WHERE remarks = \"Replaced by US 81\"",
    "question_en": "What unit of length is being used for the route with \"replaced by us 81\" in their remarks section?",
    "question_th": "มีการใช้หน่วยความยาวใดสำหรับเส้นทางที่มี \"เราแทนที่ 81\" ในส่วนหมายเหตุ",
    "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_en": "Which population areas have \"replaced by us 83\" listed in their remarks section?",
    "question_th": "พื้นที่ประชากรใดที่มี \"แทนที่ด้วยเรา 83\" ระบุไว้ในส่วนหมายเหตุ",
    "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_en": "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\"?",
    "question_th": "มีปลายทางกี่แห่งที่มี \"ตะวันออกตะวันตก\" อยู่ในส่วนทิศทาง \"ไม่มี\" อยู่ในส่วนทางแยก และมีชื่อเส้นทางเป็น \"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_en": "Give me the kickoff time of the game that was aired on CBS against the St. Louis Cardinals. ",
    "question_th": " ขอทราบเวลาคิกออฟของเกมที่ออกอากาศทาง CBS พบกับทีมเซนต์หลุยส์ คาร์ดินัลส์",
    "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_en": "Find all the result(s) with the record of 2-13.",
    "question_th": "ค้นหาผลลัพธ์ทั้งหมดด้วยบันทึก 2-13",
    "context": "CREATE TABLE table_11449311_2 (result VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT vault FROM table_11542215_3 WHERE total = \"56.635\"",
    "question_en": "What is the vault score for the total of 56.635?",
    "question_th": "คะแนนห้องนิรภัยสำหรับผลรวม 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_en": "What is the total score when the score for floor exercise was 9.287?",
    "question_th": "คะแนนรวมเมื่อคะแนนการออกกำลังกายบนพื้นคือ 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_en": " what's the margin where runner(s)-up is phil mickelson",
    "question_th": " ฟิล มิคเคลสัน รองชนะเลิศคือเท่าใด",
    "context": "CREATE TABLE table_11570261_1 (margin VARCHAR, runner_s__up VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_11570261_1 WHERE winning_score = −8(71 - 63 - 69 - 69 = 272)",
    "question_en": "what is the minimum year where winning score is −8 (71-63-69-69=272)",
    "question_th": "ปีขั้นต่ำที่คะแนนชนะคือ −8 (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 = −12(74 - 66 - 65 - 71 = 276)",
    "question_en": " what's the championship where winning score is −12 (74-66-65-71=276)",
    "question_th": " แชมป์อะไรคะ คะแนนชนะ −12 (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 = −19(67 - 66 - 67 - 69 = 269)",
    "question_en": " what's the 54 holes where winning score is −19 (67-66-67-69=269)",
    "question_th": " 54 หลุมที่สกอร์ชนะคือ −19 คือเท่าไร (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_en": " what's the title where original air date is january18,2009",
    "question_th": " ชื่อเรื่องว่าอะไร ซึ่งวันที่ออกอากาศตอนแรกคือวันที่ 18 มกราคม 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_en": " what's the original air date where written by is iain morris & damon beesley",
    "question_th": "ตอนแรกออกอากาศวันไหน ซึ่งเขียนโดย is 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_en": "Which Allied Force targetted Woensdrecht?",
    "question_th": "กองกำลังพันธมิตรใดมุ่งเป้าไปที่ 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_en": "What is the date of entry for the UK Albums Top 75 chart?",
    "question_th": "วันที่เข้าสู่ชาร์ต UK Albums Top 75 คือเมื่อใด",
    "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_en": "What was the total number of weeks on peak for the Ireland Albums Top 75 chart?",
    "question_th": "จำนวนสัปดาห์ทั้งหมดที่มีจุดสูงสุดสำหรับชาร์ต Ireland Albums Top 75 คือเท่าใด",
    "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_en": "What is the exit date for the Dutch Albums Top 100 Chart?",
    "question_th": "วันที่ออกสำหรับชาร์ต Dutch Albums Top 100 คือเมื่อใด",
    "context": "CREATE TABLE table_1160304_2 (date_of_exit VARCHAR, chart VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(constancy) FROM table_11609814_1 WHERE purity = \"falling\"",
    "question_en": "what is the total number of constancy where purity is falling",
    "question_th": "จำนวนความคงตัวทั้งหมดที่ความบริสุทธิ์ลดลงเป็นเท่าใด",
    "context": "CREATE TABLE table_11609814_1 (constancy VARCHAR, purity VARCHAR)"
  },
  {
    "answer": "SELECT permanence_of_the_body FROM table_11609814_1 WHERE purity = \"Rudra\"",
    "question_en": " what's the permanence of the body where purity is rudra",
    "question_th": " ความคงอยู่ของร่างกายที่ความบริสุทธิ์เป็นรุทระเป็นอย่างไร",
    "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_en": " what's the permanence of the body where purity is apprehension",
    "question_th": " ความคงทนของร่างกายที่ความบริสุทธิ์คือความหวาดหวั่นเป็นเช่นไร",
    "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_en": " what's the permanence of the body where penance is the undifferenced",
    "question_th": " ความถาวรของร่างกายเป็นเช่นไร โดยที่การปลงอาบัติเป็นสิ่งที่ไม่แยแส",
    "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_en": " what's the constancy where permanence of the body is meditation",
    "question_th": " ความสม่ำเสมอของร่างกายคือการทำสมาธิเป็นเท่าใด",
    "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_en": " what's the permanence of the body where constancy is interestedness",
    "question_th": " ความคงอยู่ของร่างกายเป็นเช่นไรโดยที่ความสม่ำเสมอเป็นที่สนใจ",
    "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_en": "What is the title of the episode with the production code 624?",
    "question_th": "ชื่อตอนที่มีรหัสการผลิต 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_en": "What is the original air date of the episode written by Karen Felix and Don Woodard?",
    "question_th": "วันที่ออกอากาศดั้งเดิมของตอนที่เขียนโดย Karen Felix และ 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_en": "what's the total number of species in the peruvian amazon with 8411 species in the world ",
    "question_th": "อะเมซอนในเปรูมีสายพันธุ์ทั้งหมดกี่ชนิด โดยมี 8411 สายพันธุ์ในโลก",
    "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_en": "what's the minimum species in the peruvian amazon with taxonomy s fern ( pteridophyta )",
    "question_th": "พันธุ์ขั้นต่ำในอเมซอนเปรูที่มีอนุกรมวิธานคือเฟิร์น (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_en": "what's the species in the world with peruvian amazon vs. peru (percent)  of 63",
    "question_th": "พันธุ์อะเมซอนในโลกคือพันธุ์อะไรเทียบกับเปรู (เปอร์เซ็นต์) ที่ 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_en": "what's the minimum species in the peruvian amazon with species in peru of 1000",
    "question_th": "พันธุ์ขั้นต่ำในแอมะซอนเปรูคือพันธุ์ใดในเปรู 1,000 สายพันธุ์",
    "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_en": "what's the minimum species in the peruvian amazon with peru vs. world (percent) value of 7",
    "question_th": "คือสายพันธุ์ขั้นต่ำในแอมะซอนในเปรูโดยมีค่าเปรูเทียบกับมูลค่าโลก (เปอร์เซ็นต์) ที่ 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_en": "what's the maximum peru vs. world (percent) with 9672 species in the world ",
    "question_th": " เปรูเทียบกับโลกคือเท่าใด (เปอร์เซ็นต์) โดยมี 9672 สายพันธุ์ในโลก",
    "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_en": "What school did the forward whose number is 10 belong to?",
    "question_th": "กองหน้าหมายเลข 10 เป็นของโรงเรียนใด?",
    "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_en": "What is the height of the player who attended Hartford?",
    "question_th": "ความสูงของผู้เล่นที่เข้าเรียนที่ฮาร์ตฟอร์ดคือเท่าไร?",
    "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_en": "What years did the player from LaSalle play for the Rockets?",
    "question_th": "ผู้เล่นจาก LaSalle เล่นให้กับ 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_en": "What position is number 35 whose height is 6-6?",
    "question_th": "ตำแหน่งอะไรคือหมายเลข 35 ส่วนสูง 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_en": "Which player who played for the Rockets for the years 1986-92?",
    "question_th": "ผู้เล่นคนไหนที่เล่นให้กับร็อคเก็ตส์ในปี 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_en": "What is the number of the player who went to Southern University?",
    "question_th": "นักเตะที่ไป 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_en": "How tall is the player jones, major major jones?",
    "question_th": "ผู้เล่นโจนส์ เมเจอร์ โจนส์ สูงเท่าไหร่?",
    "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_en": "Who was sent to the third island in week 1?",
    "question_th": "ใครถูกส่งไปยังเกาะที่สามในสัปดาห์ที่ 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_en": "What week was the member who arrived on the main island in week 6 sent to the third island?",
    "question_th": "สมาชิกที่มาถึงเกาะหลักในสัปดาห์ที่ 6 ถูกส่งไปเกาะที่สามในสัปดาห์ใด",
    "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_en": "How many members arrived on the main island in week 4?",
    "question_th": "สัปดาห์ที่ 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_en": "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?",
    "question_th": "สมาชิกเผ่าดั้งเดิมเป็นฉลามในสัปดาห์ใดและผู้ที่ถูกส่งไปยังเกาะที่สามในสัปดาห์ที่ 14 มาถึงเกาะหลักในสัปดาห์ใด",
    "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_en": "What is the number of sikhs in Japan?",
    "question_th": "ชาวซิกข์ในญี่ปุ่นมีกี่คน?",
    "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_en": "What was the evening gown score when the swimsuit was 9.61?",
    "question_th": "คะแนนชุดราตรีตอนชุดว่ายน้ำ 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_en": "What is the swimsuit score when the interview was 9.74?",
    "question_th": "คะแนนชุดว่ายน้ำตอนสัมภาษณ์ 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_en": "Which country had an interview score of 9.40 and average of 9.44?",
    "question_th": "ประเทศใดมีคะแนนสัมภาษณ์ 9.40 และคะแนนเฉลี่ย 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_en": "Which country had the swimsuit score 9.67?",
    "question_th": "ประเทศใดได้คะแนนชุดว่ายน้ำ 9.67?",
    "context": "CREATE TABLE table_11884814_3 (country VARCHAR, swimsuit VARCHAR)"
  },
  {
    "answer": "SELECT average FROM table_11884814_3 WHERE swimsuit = \"9.57\"",
    "question_en": "What was the average for the country with the swimsuit score of 9.57?",
    "question_th": "ประเทศที่ได้คะแนนชุดว่ายน้ำ 9.57 เฉลี่ยอยู่ที่เท่าไร?",
    "context": "CREATE TABLE table_11884814_3 (average VARCHAR, swimsuit VARCHAR)"
  },
  {
    "answer": "SELECT interview FROM table_11884814_3 WHERE country = \"Hawaii\"",
    "question_en": "What was the interview score for Hawaii?",
    "question_th": "คะแนนสัมภาษณ์ฮาวายเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_11884814_3 (interview VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_11960407_5 WHERE game = 50",
    "question_en": "What is the date of Game 50?",
    "question_th": "เกม 50 วันที่เท่าไหร่?",
    "context": "CREATE TABLE table_11960407_5 (date VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_11960407_5 WHERE game = 49",
    "question_en": "Who scored the most points in Game 49?",
    "question_th": "ใครทำคะแนนได้มากที่สุดในเกมที่ 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_en": "Name the number of teams at the philips arena 19,335?",
    "question_th": "บอกชื่อทีมในฟิลิปส์ อารีน่า 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_en": "What is the team located at philips arena 18,227?",
    "question_th": "ทีมไหนอยู่ฟิลิปส์ อารีน่า 18,227 ครับ?",
    "context": "CREATE TABLE table_11961582_6 (team VARCHAR, location_attendance VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_11964047_7 WHERE score = \"W 98–91\"",
    "question_en": "what are all the records with a score is w 98–91",
    "question_th": "บันทึกทั้งหมดที่มีคะแนนคือ w 98–91",
    "context": "CREATE TABLE table_11964047_7 (record VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_11964047_7 WHERE score = \"L 109–116 2 OT\"",
    "question_en": "what records have a score of l 109–116 2 ot",
    "question_th": "บันทึกใดมีคะแนน l 109–116 2 ot",
    "context": "CREATE TABLE table_11964047_7 (record VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_11964047_7 WHERE record = \"25–18\"",
    "question_en": "who are all the visitor with a record of 25–18",
    "question_th": "ซึ่งเป็นผู้มาเยือนทั้งหมดด้วยสถิติ 25–18",
    "context": "CREATE TABLE table_11964047_7 (visitor VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_11964047_7 WHERE leading_scorer = \"Roy : 25\"",
    "question_en": "Which visitors have a leading scorer of roy : 25",
    "question_th": "ซึ่งผู้มาเยือนมีแต้มนำ รอย : 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_en": "what is the total number of dates where the scorer is gordon : 32",
    "question_th": "จำนวนวันที่ผู้ทำประตูคือกอร์ดอนคือเท่าไร : 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_en": " what's the home team where streak is l3 and leading scorer is roy : 23",
    "question_th": " เจ้าบ้านคือทีมไหน โดยสตรีคคือ l3 และผู้ทำประตูนำคือ รอย : 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–101\"",
    "question_en": " what's the attendance where score is l 92–101",
    "question_th": " ผู้เข้าร่วมคือเท่าไร โดยคะแนนอยู่ที่ 92–101",
    "context": "CREATE TABLE table_11964047_5 (attendance VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(date) FROM table_11964047_5 WHERE visitor = \"New Jersey Nets\"",
    "question_en": "what is the total number of date where visitor is new jersey nets",
    "question_th": "จำนวนวันที่ผู้มาเยือนคือนิวเจอร์ซี่ย์อวนคือเท่าใด",
    "context": "CREATE TABLE table_11964047_5 (date VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT leading_scorer FROM table_11964047_5 WHERE home = \"Charlotte Bobcats\"",
    "question_en": " who is the leading scorer where home is charlotte bobcats",
    "question_th": " ซึ่งเป็นผู้ทำประตูนำในบ้านคือ ชาร์ล็อตต์ รอกแคตส์",
    "context": "CREATE TABLE table_11964047_5 (leading_scorer VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_11964047_5 WHERE record = \"0–2\"",
    "question_en": " what's the score where record is 0–2",
    "question_th": " คะแนนที่บันทึกเป็น 0–2 คืออะไร",
    "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_en": "what is the total number of record where streak is l2 and leading scorer is roy : 23",
    "question_th": "จำนวนบันทึกทั้งหมดคือเท่าใด โดยสตรีคคือ l2 และผู้ทำประตูนำคือ 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_en": "Name the location on june 10",
    "question_th": "ตั้งชื่อสถานที่ในวันที่ 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_en": "Name the number of games on june 12",
    "question_th": "ทายเลขเกมวันที่ 12 มิถุนายน",
    "context": "CREATE TABLE table_11965481_13 (game VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT series FROM table_11965481_13 WHERE date = \"June 5\"",
    "question_en": "Name the series on june 5",
    "question_th": "ตั้งชื่อซีรีส์วันที่ 5 มิถุนายน",
    "context": "CREATE TABLE table_11965481_13 (series VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT written_by FROM table_12030612_3 WHERE series__number = 25",
    "question_en": "Who were the authors of series episode #25?",
    "question_th": "ใครคือผู้เขียนซีรีส์ตอนที่ 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_en": "What season features writer Michael Poryes?",
    "question_th": "ฤดูกาลใดที่มีนักเขียน 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_en": "What is the date of the episode written by Michael Poryes?",
    "question_th": "วันที่เขียนโดย 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_en": "what is the somerset for the  year 2009?",
    "question_th": "ซัมเมอร์เซ็ทของปี 2552 คืออะไร?",
    "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_en": "what is the bristol & n. som where the somerset is ashcott and shapwick?",
    "question_th": "บริสตอล & n คืออะไร ซอมเมอร์เซ็ทอยู่ที่ไหนคือแอชคอตต์และแชปวิค?",
    "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_en": "what is the latest year where glos & wilts is warminster?",
    "question_th": "ปีล่าสุดที่ glos & wilts เป็น 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_en": "what is the glos & wilts where the bristol & somerset is lansdown?",
    "question_th": "glos & wilts อยู่ที่ไหน bristol & somerset 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_en": "what is the year where glos & wilts is gloucester city winget?",
    "question_th": "ปีที่ glos & wilts อยู่ที่ 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_en": "who many times is gloucestershire is painswick?",
    "question_th": "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_en": " what's the preliminaries where evening gown is 8.988",
    "question_th": " เบื้องต้นมีชุดราตรี 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_en": " what's the swimsuit where average is 8.670",
    "question_th": " ชุดว่ายน้ำอะไรคะ เฉลี่ยอยู่ที่ 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_en": " what's the evening gown where preliminaries is 8.977",
    "question_th": " ชุดราตรีอะไรคะ รอบคัดเลือก 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_en": " what's the preliminaries where state is south dakota",
    "question_th": " เบื้องต้นที่รัฐอยู่เซาท์ดาโกตาคืออะไร",
    "context": "CREATE TABLE table_12094609_1 (preliminaries VARCHAR, state VARCHAR)"
  },
  {
    "answer": "SELECT evening_gown FROM table_12094609_1 WHERE state = \"South Dakota\"",
    "question_en": " what's the evening gown where state is south dakota",
    "question_th": " ชุดราตรีที่รัฐอยู่เซาท์ดาโกตาคือชุดอะไร",
    "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_en": "what is the total number of average where evening gown is 8.988",
    "question_th": "ชุดราตรีมีค่าเฉลี่ยทั้งหมดเท่าไร 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_en": "Name the men's singles of marina yakusheva elena shimko",
    "question_th": "ตั้งชื่อชายเดี่ยวของ 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_en": "What are the womens singles of imam sodikin irawan andi tandaputra?",
    "question_th": "อิหม่ามโซดิกินอิราวันและทันดาปุตราหญิงเดี่ยวมีอะไรบ้าง?",
    "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_en": "What are the womens singles of naoko fukuman kurumi yonao?",
    "question_th": "ซิงเกิลหญิงของ นาโอโกะ ฟุกุมัน คุรุมิ โยนาโอะ มีอะไรบ้าง?",
    "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_en": "What is the womens singles of marcus ellis gabrielle white?",
    "question_th": "ซิงเกิ้ลหญิงของ 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_en": "What is the mens singles of 2008?",
    "question_th": "ซิงเกิลชายแห่งปี 2008 คืออะไร?",
    "context": "CREATE TABLE table_12104319_1 (mens_singles VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT gdp___bn__ FROM table_12108_1 WHERE \"capital\" = \"capital\"",
    "question_en": "what is the gdp ( bn ) where capital is capital?",
    "question_th": "gdp (bn) คืออะไร โดยที่ทุนคือทุน?",
    "context": "CREATE TABLE table_12108_1 (gdp___bn__ VARCHAR)"
  },
  {
    "answer": "SELECT population FROM table_12108_1 WHERE \"area__sq_mi_\" = \"area__sq_mi_\"",
    "question_en": "what is the population where the area (sq. mi.) is area (sq. mi.)?",
    "question_th": "ประชากรเป็นเท่าใด โดยที่พื้นที่ (ตร.ไมล์) คือพื้นที่ (ตร.ไมล์)?",
    "context": "CREATE TABLE table_12108_1 (population VARCHAR)"
  },
  {
    "answer": "SELECT light_vehicle FROM table_1211545_2 WHERE heavy_vehicle__2_axles_ = \"R87.00\"",
    "question_en": "What is the toll for light vehicles at the plaza where the toll for heavy vehicles with 2 axles is r87.00?",
    "question_th": "ค่าผ่านทางสำหรับยานพาหนะขนาดเล็กที่พลาซ่าซึ่งค่าผ่านทางสำหรับยานพาหนะหนัก 2 เพลาอยู่ที่ 87.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_en": "What is the name of the plaza where the toll for heavy vehicles with 2 axles is r87.00?",
    "question_th": "พลาซ่าที่เรียกเก็บค่าผ่านทางสำหรับรถหนัก 2 เพลาชื่ออะไร 87.00 r.",
    "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_en": "What is the toll for heavy vehicles with 3/4 axles at Verkeerdevlei toll plaza?",
    "question_th": "รถหนัก 3/4 เพลา ที่ด่านเก็บค่าผ่านทาง Verkeerdevlei คิดค่าผ่านทางเท่าไร?",
    "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_en": "What is the location of the Carousel toll plaza?",
    "question_th": "ด่านเก็บค่าผ่านทางม้าหมุน อยู่ที่ไหน?",
    "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_en": "What is the toll for light vehicles at the plaza between bela bela and modimolle?",
    "question_th": "ค่าผ่านทางสำหรับยานพาหนะขนาดเล็กที่พลาซ่าระหว่างเบลา เบลาและโมดิมอลล์คือเท่าไหร่?",
    "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_en": "What is the name of the plaza where the told for heavy vehicles with 2 axles is r20.50?",
    "question_th": "ลานที่บอกรถใหญ่ 2 เพลาชื่ออะไรครับ 20.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_en": "What is the inclination when the alt name is OPS-1584?",
    "question_th": "ความโน้มเอียงเมื่อชื่อ alt คือ 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_en": "What is the maximum apogee for samos f3-3?",
    "question_th": "จุดสูงสุดของ 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_en": "What was the maximum perigee on 1969-01-09?",
    "question_th": "ขอบเขตสูงสุดในวันที่ 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_en": "How many alt names does 1964-011a have?",
    "question_th": "1964-011a มีชื่อสำรองกี่ชื่อ",
    "context": "CREATE TABLE table_12141496_1 (alt_name VARCHAR, id VARCHAR)"
  },
  {
    "answer": "SELECT shortstop FROM table_12142298_2 WHERE first_baseman = \"Paul Konerko\"",
    "question_en": "Who played SS when paul konerko played 1st base?",
    "question_th": "ใครเล่น SS เมื่อ Paul Konerko เล่นเบสที่ 1?",
    "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_en": "Who played 2nd base when nomar garciaparra was at 1st base?",
    "question_th": "ใครเล่นเบสที่ 2 เมื่อ Nomar garciaparra อยู่ที่เบสที่ 1?",
    "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_en": "Who was the RF when the SP was vicente padilla?",
    "question_th": "RF คือใครเมื่อ SP เป็น 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_en": "Who was the SS when jim lefebvre was at 2nd, willie davis at CF, and don drysdale was the SP.",
    "question_th": "ใครคือ SS เมื่อจิม เลอเฟบฟร์อยู่อันดับ 2 วิลลี่ เดวิสที่ CF และดอน ดรายส์เดลเป็น 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_en": "Who is the top scorer where gf is 41?",
    "question_th": "ใครคือผู้ทำประตูสูงสุด โดยที่แฟนคือ 41?",
    "context": "CREATE TABLE table_1218784_1 (top_scorer VARCHAR, gf VARCHAR)"
  },
  {
    "answer": "SELECT goals FROM table_1218784_1 WHERE season = \"2005-06\"",
    "question_en": "How many goals were scored in the 2005-06 season?",
    "question_th": "ฤดูกาล 2548-06 ยิงได้กี่ประตู?",
    "context": "CREATE TABLE table_1218784_1 (goals VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(season) FROM table_1218784_1 WHERE rank = 16",
    "question_en": "How many seasons had a rank of 16?",
    "question_th": "มีกี่ฤดูกาลที่มีอันดับ 16?",
    "context": "CREATE TABLE table_1218784_1 (season VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT manager FROM table_1218784_1 WHERE rank = 16",
    "question_en": "Who is the manager whose rank is 16?",
    "question_th": "ผู้จัดการทีมคนไหนอายุ 16 ปี?",
    "context": "CREATE TABLE table_1218784_1 (manager VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(rank) FROM table_1218784_1 WHERE manager = \"Rob McDonald\"",
    "question_en": "What is the rank of manager Rob Mcdonald?",
    "question_th": "ร็อบ แมคโดนัลด์ ผู้จัดการทีมอยู่อันดับไหน?",
    "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_en": "What's the order number of the song originally performed by Rickie Lee Jones?",
    "question_th": "หมายเลขลำดับของเพลงที่ 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_en": "What was the result of the Top 3 episode?",
    "question_th": "ผลของท็อป 3 ตอนที่เป็นอย่างไร?",
    "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_en": "What's the total number of songs originally performed by Anna Nalick?",
    "question_th": "เพลงที่ 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_en": "Which one of the songs was originally performed by Rickie Lee Jones?",
    "question_th": "เพลงใดที่ 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_en": "What's the original artist of the song performed in the top 3 episode?",
    "question_th": "ศิลปินต้นฉบับของเพลงที่แสดงใน 3 อันดับแรกคือเพลงอะไร",
    "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_en": "What is the # of seats one for the election in 1974?",
    "question_th": "จำนวนที่นั่งสำหรับการเลือกตั้งในปี 2517 คือเท่าใด",
    "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_en": "How many times was the # of total votes 2582322?",
    "question_th": "จำนวนโหวตทั้งหมดกี่ครั้ง 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_en": "What year was the election when the # of seats won was 65?",
    "question_th": "การเลือกตั้งคือปีไหนที่จำนวนที่นั่งได้ 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_en": "What is the election year when the # of candidates nominated was 262?",
    "question_th": "ปีการเลือกตั้งเมื่อจำนวนผู้สมัครที่ได้รับการเสนอชื่อมี 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_en": "What was the lowest # of total votes?",
    "question_th": "คะแนนต่ำสุด # ของทั้งหมดคือข้อใด",
    "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_en": "What is the strongs words compounded when the english spelling is jonadab?",
    "question_th": "คำที่แข็งแกร่งประกอบเมื่อสะกดภาษาอังกฤษคือ 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_en": "What is the strong words compounded when the strongs transliteration is yowyariyb?",
    "question_th": "คำที่หนักแน่นประกอบขึ้นเมื่อการทับศัพท์ที่เข้มแข็งคือ 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_en": "What is the english spelling of the word that has the strongs trasliteration of y e howram?",
    "question_th": "คำว่า 'เจ้า' ฮาวรัม' สะกดเป็นภาษาอังกฤษว่าอะไร?",
    "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_en": "What is the strongs # of the english spelling word jehojakin?",
    "question_th": "จุดแข็ง # ของคำสะกดภาษาอังกฤษ jehojakin คืออะไร?",
    "context": "CREATE TABLE table_1242447_1 (strongs__number VARCHAR, english_spelling VARCHAR)"
  },
  {
    "answer": "SELECT strongs_transliteration FROM table_1242447_1 WHERE hebrew_word = \"יוֹחָנָן\"",
    "question_en": "What is the strongs transliteration of the hebrew word יוֹחָנָן?",
    "question_th": "การทับศัพท์แบบแข็งของคำภาษาฮีบรู יוָּנָן คืออะไร?",
    "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_en": "How many strongs transliteration of the english spelling of the work jehojakin?",
    "question_th": "การทับศัพท์ภาษาอังกฤษของงาน 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_en": "Kaluvanchikudy is the main town in what DS division?",
    "question_th": "Kaluvanchikudy เป็นเมืองหลักในแผนก DS ใด?",
    "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_en": "What DS division has S. L. M. Haneefa as the divisional secretary?",
    "question_th": "แผนก DS ใดมี SLM Haneefa เป็นเลขานุการแผนก?",
    "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_en": "What is the name of the DS division where the divisional secretary is S. H. Muzammil?",
    "question_th": "แผนก DS ชื่ออะไร โดยมีเลขานุการแผนกคือ SH 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_en": "How many figures are given for the region's total in 1947?",
    "question_th": "มีการระบุตัวเลขทั้งหมดสำหรับภูมิภาคในปี พ.ศ. 2490 เป็นจำนวนเท่าใด",
    "context": "CREATE TABLE table_12555835_1 (population__region_total_ VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT MIN(population__mareeba_) FROM table_12555835_1",
    "question_en": "What was the smallest population figure for Mareeba?",
    "question_th": "มารีบามีจำนวนประชากรน้อยที่สุดคือเท่าใด",
    "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_en": "How many episodes were watched by 12.72 million U.S. viewers?",
    "question_th": "มีผู้ชมในสหรัฐอเมริกาจำนวน 12.72 ล้านคนรับชมกี่ตอน?",
    "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_en": "How many millions of U.S. viewers watched the episode directed by Rob Bailey and written by Pam Veasey?",
    "question_th": "มีผู้ชมในสหรัฐฯ กี่ล้านคนที่ดูตอนที่กำกับโดย Rob Bailey และเขียนบทโดย 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_en": "How many persons had immunity in the episode when Wanda was eliminated?",
    "question_th": "ตอนที่แวนด้าถูกกำจัดมีกี่คน?",
    "context": "CREATE TABLE table_1272844_2 (immunity VARCHAR, eliminated VARCHAR)"
  },
  {
    "answer": "SELECT episode_title FROM table_1272844_2 WHERE eliminated = \"Jenn\"",
    "question_en": "What is the name of the episode in which Jenn is eliminated?",
    "question_th": "ตอนที่เจนน์ตกรอบชื่ออะไรคะ?",
    "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_en": "What was the vote tally on the episode aired May 5, 2005?",
    "question_th": "คะแนนโหวตในตอนที่ออกอากาศเมื่อวันที่ 5 พฤษภาคม พ.ศ. 2548 คืออะไร?",
    "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_en": "Who received the reward on the episode where the finish was \"3rd voted out day 8\"?",
    "question_th": "ใครได้รับรางวัลในตอนที่เข้าเส้นชัยเป็น \"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_en": "What was the vote on the episode where the finish was \"10th voted out 3rd jury member day 30\"?",
    "question_th": "คะแนนโหวตในตอนที่จบคือ \"คนที่ 10 โหวตออกสมาชิกคณะลูกขุนคนที่ 3 วันที่ 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_en": "How many votes were taken when the outcome was \"6th voted out day 12\"?",
    "question_th": "มีการโหวตไปกี่คะแนนเมื่อผลลัพธ์คือ \"โหวตครั้งที่ 6 ออกวันที่ 12\"",
    "context": "CREATE TABLE table_1272844_2 (vote VARCHAR, finish VARCHAR)"
  },
  {
    "answer": "SELECT short_stem FROM table_12784134_24 WHERE imperfect_stem = \"garbitzen\"",
    "question_en": "What is the short stem for garbitzen?",
    "question_th": "ก้านสั้นสำหรับ 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_en": "What is the perfect stem for pozten?",
    "question_th": "ก้านที่สมบูรณ์แบบสำหรับพอซเทนคืออะไร?",
    "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_en": "Name the perfect stem for jo",
    "question_th": "ตั้งชื่อก้านที่สมบูรณ์แบบสำหรับ 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_en": "What is the number for future stem for poztu?",
    "question_th": "หมายเลขสำหรับลำต้นในอนาคตของ 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_en": "Name the try bonus of points against at 430",
    "question_th": "ตั้งชื่อโบนัสการลองของคะแนนเทียบกับที่ 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_en": "Name the losing bonus of 96 points",
    "question_th": "ตั้งชื่อโบนัสแพ้ 96 แต้ม",
    "context": "CREATE TABLE table_12792876_4 (losing_bonus VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT points_against FROM table_12792876_4 WHERE points = \"51\"",
    "question_en": "Name the points against for 51 points",
    "question_th": "ตั้งชื่อแต้มต่อ 51 แต้ม",
    "context": "CREATE TABLE table_12792876_4 (points_against VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT tries_against FROM table_12792876_4 WHERE points = \"87\"",
    "question_en": "Name the tries against for 87 points",
    "question_th": "ตั้งชื่อการพยายามต่อต้านให้ได้ 87 คะแนน",
    "context": "CREATE TABLE table_12792876_4 (tries_against VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(tries_against) FROM table_12792876_4 WHERE \"drawn\" = \"drawn\"",
    "question_en": "Name the tries against for drawn",
    "question_th": "ตั้งชื่อการพยายามต่อต้านการเสมอกัน",
    "context": "CREATE TABLE table_12792876_4 (tries_against VARCHAR)"
  },
  {
    "answer": "SELECT losing_bonus FROM table_12792876_4 WHERE tries_for = \"27\"",
    "question_en": "Name the losing bonus for 27",
    "question_th": "ตั้งชื่อโบนัสที่แพ้สำหรับ 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_en": "What is the rear sight in the Cole model no. 735?",
    "question_th": "สายตาด้านหลังใน Cole รุ่น 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_en": "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? ",
    "question_th": " หมายเลขรุ่น Colt ของรุ่นชื่อ GAU-5A/A ที่ไม่มีตัวดึงแบบดาบปลายปืน ไม่มีตัวเบี่ยงตัวเรือน และสต็อกของรุ่นที่ 2 คืออะไร",
    "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_en": "What's the type of muzzle devices on the models with round hand guards?",
    "question_th": "อุปกรณ์ปากกระบอกปืนในรุ่นที่มีแฮนด์การ์ดแบบกลมมีอะไรบ้าง?",
    "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_en": "Clubs involved is 8, what number would you find from winners from previous round?",
    "question_th": "ไม้กอล์ฟที่เกี่ยวข้องคือ 8 คุณจะพบเลขอะไรจากผู้ชนะจากรอบที่แล้ว?",
    "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_en": "From the round name of third round; what would the new entries this round that would be found?",
    "question_th": "จากชื่อรอบรอบสาม รายการใหม่รอบนี้จะเจออะไรบ้าง?",
    "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_en": "When looking at new entries this round and seeing 8; what number in total is there for clubs remaining?",
    "question_th": "เมื่อดูรายการใหม่รอบนี้แล้วเจอ 8; มีสโมสรเหลืออยู่ทั้งหมดกี่สโมสร?",
    "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_en": "During the first phase portion of phase and having 16 clubs involved; what would you find for the winners from previous round?",
    "question_th": "ในช่วงระยะแรกของระยะและมีไม้กอล์ฟ 16 ไม้ที่เกี่ยวข้อง คุณจะได้อะไรสำหรับผู้ชนะจากรอบที่แล้ว?",
    "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_en": "The new entries this round was shown to be 12, in which phase would you find this?",
    "question_th": "ของเข้าใหม่รอบนี้โชว์เป็น 12 งวด เจอแบบนี้บ้างมั้ย?",
    "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ö\"",
    "question_en": "What country submitted miehen työ?",
    "question_th": "ประเทศใดที่ส่ง miehen työ?",
    "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_en": "What was the title of the movie from lebanon?",
    "question_th": "หนังจากเลบานอนชื่ออะไร",
    "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_en": "What country submitted the movie the orphanage?",
    "question_th": "ประเทศใดส่งภาพยนตร์สถานเลี้ยงเด็กกำพร้า?",
    "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_en": "What year did University of Saskatchewan have their first season?",
    "question_th": "University of Saskatchewan มีฤดูกาลแรกในปีใด",
    "context": "CREATE TABLE table_12896884_1 (first_season INTEGER, institution VARCHAR)"
  },
  {
    "answer": "SELECT football_stadium FROM table_12896884_1 WHERE enrollment = 43579",
    "question_en": "What football stadium has a school enrollment of 43579?",
    "question_th": "สนามฟุตบอลใดมีการลงทะเบียนเรียน 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_en": "How many endowments does Mosaic Stadium have?",
    "question_th": "โมเสก สเตเดี้ยม มีเงินบริจาคเท่าไหร่?",
    "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_en": "What is the enrollment for Foote Field?",
    "question_th": "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_en": "How many cities have an enrollment of 19082?",
    "question_th": "มีกี่เมืองที่มีการลงทะเบียนของ 19082?",
    "context": "CREATE TABLE table_12896884_1 (city VARCHAR, enrollment VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(points) FROM table_13282157_3 WHERE country = \"South Korea\"",
    "question_en": "Name the number of points for south korea",
    "question_th": "ตั้งชื่อจำนวนคะแนนของเกาหลีใต้",
    "context": "CREATE TABLE table_13282157_3 (points VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT dismissals FROM table_13337302_16 WHERE player = \"Peter McGlashan\"",
    "question_en": "How many dismissals did the player Peter McGlashan have?",
    "question_th": "ผู้เล่น Peter McGlashan ถูกไล่ออกกี่ครั้ง?",
    "context": "CREATE TABLE table_13337302_16 (dismissals VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(stumpings) FROM table_13337302_16 WHERE player = \"Tim Latham\"",
    "question_en": "How many stumpings did the player Tim Latham have?",
    "question_th": "นักเตะ ทิม ลาแธม มีสะดุดไปกี่ครั้ง?",
    "context": "CREATE TABLE table_13337302_16 (stumpings INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_13337302_16 WHERE dismissals = 4",
    "question_en": "List the ranks of all dismissals with a value of 4",
    "question_th": "แสดงรายการอันดับของการเลิกจ้างทั้งหมดด้วยค่า 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_en": "How many innings had a total of 2 catches and 0 stumpings?",
    "question_th": "มีกี่อินนิงที่มีการจับทั้งหมด 2 ครั้งและการตอไม้ 0 ครั้ง?",
    "context": "CREATE TABLE table_13337302_16 (innings VARCHAR, catches VARCHAR, stumpings VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341395_36 WHERE incumbent = \"Steve Chabot\"",
    "question_en": "In what district was the incumbent Steve Chabot? ",
    "question_th": " Steve Chabot ผู้ดำรงตำแหน่งในเขตใด?",
    "context": "CREATE TABLE table_1341395_36 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341395_36 WHERE incumbent = \"Deborah Pryce\"",
    "question_en": "Incumbent Deborah Pryce was a member of what party? ",
    "question_th": " ผู้ดำรงตำแหน่งเดโบราห์ ไพรซ์เป็นสมาชิกพรรคใด",
    "context": "CREATE TABLE table_1341395_36 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341453_12 WHERE incumbent = \"Saxby Chambliss\"",
    "question_en": "Who were the candidates in the election where Saxby Chambliss was the incumbent?",
    "question_th": "ใครคือผู้สมัครในการเลือกตั้งที่ Saxby Chambliss ดำรงตำแหน่ง?",
    "context": "CREATE TABLE table_1341453_12 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341453_20 WHERE incumbent = \"William J. Jefferson\"",
    "question_en": "What party does William J. Jefferson?",
    "question_th": "วิลเลียม เจ. เจฟเฟอร์สัน พรรคอะไร?",
    "context": "CREATE TABLE table_1341453_20 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT results FROM table_1341453_20 WHERE incumbent = \"Jim McCrery\"",
    "question_en": "What were the results for incumbent Jim McCrery?",
    "question_th": "ผลลัพธ์ของผู้ดำรงตำแหน่ง 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_en": "How many candidates were elected first in 1980?",
    "question_th": "มีผู้สมัครกี่คนที่ได้รับเลือกเป็นคนแรกในปี 1980?",
    "context": "CREATE TABLE table_1341453_20 (candidates VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341453_20 WHERE incumbent = \"John Cooksey\"",
    "question_en": "What district does John Cooksey represent?",
    "question_th": "John Cooksey เป็นตัวแทนของเขตใด",
    "context": "CREATE TABLE table_1341453_20 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341453_15 WHERE incumbent = \"John Porter\"",
    "question_en": "What district was John Porter elected in?",
    "question_th": "John Porter ได้รับเลือกในเขตใด",
    "context": "CREATE TABLE table_1341453_15 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT results FROM table_1341453_15 WHERE district = \"Illinois 7\"",
    "question_en": "What was the result in Illinois 7?",
    "question_th": "ผลลัพธ์ในรัฐอิลลินอยส์ 7 คืออะไร?",
    "context": "CREATE TABLE table_1341453_15 (results VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341453_15 WHERE incumbent = \"Jerry Costello\"",
    "question_en": "Who were the candidates in the district where Jerry Costello won?",
    "question_th": "ใครคือผู้สมัครในเขตที่เจอร์รี่ คอสเตลโล ชนะ?",
    "context": "CREATE TABLE table_1341453_15 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(results) FROM table_1341453_45 WHERE incumbent = \"Ruben Hinojosa\"",
    "question_en": "How many times did incumbent ruben hinojosa get elected?",
    "question_th": "รูเบน ฮิโนโจสะ ได้รับเลือกกี่ครั้ง?",
    "context": "CREATE TABLE table_1341453_45 (results VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341453_45 WHERE incumbent = \"Ruben Hinojosa\"",
    "question_en": "What district is ruben hinojosa from?",
    "question_th": "รูเบน ฮิโนโจสะ มาจากเขตไหน?",
    "context": "CREATE TABLE table_1341453_45 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341453_45 WHERE incumbent = \"Nick Lampson\"",
    "question_en": "What district is nick lampson from?",
    "question_th": "นิค แลมป์สัน มาจากเขตไหน?",
    "context": "CREATE TABLE table_1341453_45 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT MIN(first_elected) FROM table_1341522_50 WHERE incumbent = \"Jim McDermott\"",
    "question_en": "What year was incumbent jim mcdermott first elected?",
    "question_th": "จิม แมคเดอร์มอตต์ได้รับเลือกครั้งแรกในปีใด",
    "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_en": "What was the result of the election of doc hastings (r) 53.3% jay inslee (d) 46.7%",
    "question_th": "ผลการเลือกตั้งหมอเฮสติ้งส์ (r) 53.3% เจย์อินสลี (ง) 46.7%",
    "context": "CREATE TABLE table_1341522_50 (status VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341568_39 WHERE incumbent = \"Curt Weldon\"",
    "question_en": "What districts does incumbent Curt Weldon hold?",
    "question_th": "Curt Weldon ดำรงตำแหน่งเขตใดบ้าง",
    "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_en": "How many champions were there when the first driver was hiroki yoshimoto ( 2005 )?",
    "question_th": "ตอนที่นักแข่งคนแรกคือฮิโรกิ โยชิโมโตะ (2548) มีแชมป์กี่คน?",
    "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_en": "How many entries are there for first driver for Canada?",
    "question_th": "มีกี่รายการสำหรับนักแข่งคนแรกสำหรับแคนาดา",
    "context": "CREATE TABLE table_13416000_3 (first_driver_s_ VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341604_11 WHERE district = \"Georgia 8\"",
    "question_en": "Name the candidates for georgia 8",
    "question_th": "ตั้งชื่อผู้สมัครจอร์เจีย 8",
    "context": "CREATE TABLE table_1341604_11 (candidates VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341604_11 WHERE district = \"Georgia 4\"",
    "question_en": "Name the party of georgia 4",
    "question_th": "ตั้งชื่อพรรคจอร์เจีย 4",
    "context": "CREATE TABLE table_1341604_11 (party VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341604_11 WHERE incumbent = \"Jack Thomas Brinkley\"",
    "question_en": "Name the party for jack thomas brinkley",
    "question_th": "ตั้งชื่อปาร์ตี้ให้แจ็ค โทมัส บริงค์ลีย์",
    "context": "CREATE TABLE table_1341604_11 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341604_11 WHERE incumbent = \"Larry McDonald\"",
    "question_en": "Name the districk for larry mcdonald",
    "question_th": "ตั้งชื่อ districk สำหรับ larry mcdonald",
    "context": "CREATE TABLE table_1341604_11 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1341604_10 WHERE district = \"Florida 7\"",
    "question_en": "what's the result with district being florida 7",
    "question_th": "ผลที่ได้คือเขตเป็นฟลอริดา 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_en": "what's the district with result being new seat democratic gain",
    "question_th": "อำเภออะไรมีผลให้เกิดที่นั่งใหม่ที่ได้รับประชาธิปไตย",
    "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_en": " how many candidates with result being new seat democratic gain",
    "question_th": "มีผู้สมัครกี่คนซึ่งส่งผลให้ได้ที่นั่งใหม่ตามระบอบประชาธิปไตย",
    "context": "CREATE TABLE table_1341604_10 (candidates VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(result) FROM table_1341604_10 WHERE district = \"Florida 14\"",
    "question_en": " how many result with district being florida 14",
    "question_th": " ได้ผลกี่เขตเป็นฟลอริดา 14",
    "context": "CREATE TABLE table_1341604_10 (result VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT first_elected FROM table_1341604_10 WHERE district = \"Florida 7\"",
    "question_en": "what's the first elected with district being florida 7",
    "question_th": "เขตแรกที่ได้รับเลือกโดยเขตคือฟลอริดา 7 คือเขตใด",
    "context": "CREATE TABLE table_1341604_10 (first_elected VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341604_10 WHERE incumbent = \"Don Fuqua\"",
    "question_en": "who is the the candidates with incumbent being don fuqua",
    "question_th": "ซึ่งเป็นผู้สมัครรับตำแหน่ง ดอน ฟูกัว",
    "context": "CREATE TABLE table_1341604_10 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(candidates) FROM table_1341640_11 WHERE first_elected = 1972",
    "question_en": "How many candidates were first elected in 1972?",
    "question_th": "มีผู้สมัครกี่คนที่ได้รับเลือกครั้งแรกในปี 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_en": "What is the party with the candidates newt gingrich (r) 59.1% dock h. davis (d) 40.9%?",
    "question_th": "พรรคอะไรมีผู้สมัคร นิวท์ กิงริช (r) ร้อยละ 59.1 เทียบท่าฮ. เดวิส (ง) 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_en": "What is the earliest first elected for district georgia 1?",
    "question_th": "การเลือกตั้งครั้งแรกเร็วที่สุดสำหรับเขตจอร์เจีย 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_en": "How many parties were for candidates newt gingrich (r) 59.1% dock h. davis (d) 40.9%?",
    "question_th": "นิวท์ กิงริช (ขวา) มีพรรคการเมืองกี่พรรค คิดเป็น 59.1% เทียบท่า เอช. เดวิส (ง) 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_en": "How many incumbents were for district georgia 6?",
    "question_th": "มีผู้ดำรงตำแหน่งในเขตจอร์เจีย 6 จำนวนกี่คน",
    "context": "CREATE TABLE table_1341640_11 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341672_14 WHERE incumbent = \"Tim Lee Hall\"",
    "question_en": "Name the district for tim lee hall",
    "question_th": "ตั้งชื่อเขตสำหรับทิมลีฮอลล์",
    "context": "CREATE TABLE table_1341672_14 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(first_elected) FROM table_1341672_14 WHERE incumbent = \"Phil Crane\"",
    "question_en": "Name the number of first elected for phil crane",
    "question_th": "ตั้งชื่อหมายเลขที่ได้รับเลือกเป็นคนแรกสำหรับฟิลเครน",
    "context": "CREATE TABLE table_1341672_14 (first_elected VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341672_14 WHERE incumbent = \"Tim Lee Hall\"",
    "question_en": "Name the party for tim lee hall",
    "question_th": "ตั้งชื่อพรรคให้ทิม ลี ฮอลล์",
    "context": "CREATE TABLE table_1341672_14 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341672_14 WHERE district = \"Illinois 15\"",
    "question_en": "Name the candidates for illinois 15",
    "question_th": "ตั้งชื่อผู้สมัครในรัฐอิลลินอยส์ 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_en": "Name the first elected for abner j. mikva",
    "question_th": "ตั้งชื่อคนแรกที่ได้รับเลือกให้เป็นอับเนอร์ เจ มิควา",
    "context": "CREATE TABLE table_1341672_14 (first_elected VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(incumbent) FROM table_1341672_14 WHERE first_elected = 1944",
    "question_en": "Name the total number of incumbent for first elected of 1944",
    "question_th": "ระบุจำนวนผู้ดำรงตำแหน่งทั้งหมดที่ได้รับการเลือกตั้งครั้งแรกในปี พ.ศ. 2487",
    "context": "CREATE TABLE table_1341672_14 (incumbent VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(candidates) FROM table_1341930_38 WHERE incumbent = \"Alvin Bush\"",
    "question_en": "How many incumbents come from alvin bush's district?",
    "question_th": "มีผู้ครอบครองตลาดกี่รายที่มาจากเขตของอัลวิน บุช",
    "context": "CREATE TABLE table_1341930_38 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1342218_17 WHERE district = \"Kentucky 4\"",
    "question_en": "Who were the candidates in the Kentucky 4 voting district?",
    "question_th": "ใครคือผู้สมัครในเขตลงคะแนนเสียงของรัฐเคนตักกี้ 4",
    "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_en": "How many times was incumbent Noble Jones Gregory first elected?",
    "question_th": "ผู้ดำรงตำแหน่ง Noble Jones Gregory ได้รับเลือกครั้งแรกกี่ครั้ง",
    "context": "CREATE TABLE table_1342218_17 (first_elected VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1342218_17 WHERE district = \"Kentucky 2\"",
    "question_en": "What was the result in the voting district Kentucky 2?",
    "question_th": "ผลลัพธ์ในเขตการเลือกตั้งของรัฐเคนตักกี้ 2 คืออะไร?",
    "context": "CREATE TABLE table_1342218_17 (result VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1342218_17 WHERE incumbent = \"Brent Spence\"",
    "question_en": "What was the result of the election incumbent Brent Spence took place in?",
    "question_th": "ผลลัพธ์ของการเลือกตั้งผู้ดำรงตำแหน่ง Brent Spence เกิดขึ้นคืออะไร?",
    "context": "CREATE TABLE table_1342218_17 (result VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1342218_17 WHERE district = \"Kentucky 5\"",
    "question_en": "Which party won in the election in voting district Kentucky 5?",
    "question_th": "พรรคใดชนะในการเลือกตั้งในเขตลงคะแนนเสียงของรัฐเคนตักกี้ 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_en": "List all candidates in the democratic party where the election had the incumbent Frank Chelf running.",
    "question_th": "รายชื่อผู้สมัครทั้งหมดในพรรคประชาธิปไตยซึ่งมีผู้ดำรงตำแหน่งแฟรงก์ เชฟฟ์ ลงสมัครรับเลือกตั้ง",
    "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_en": "Which district is jamie l. whitten from?",
    "question_th": "เจมี่ แอล. อำเภอไหนคะ. ขาวขึ้นจาก?",
    "context": "CREATE TABLE table_1342233_24 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1342233_24 WHERE district = \"Mississippi 6\"",
    "question_en": "What candidates are from mississippi 6?",
    "question_th": "ผู้สมัครคนใดบ้างที่มาจากมิสซิสซิปปี้ 6",
    "context": "CREATE TABLE table_1342233_24 (candidates VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1342233_24 WHERE first_elected = 1941",
    "question_en": "What is the incumbent from 1941?",
    "question_th": "ผู้ดำรงตำแหน่งตั้งแต่ปี พ.ศ. 2484 คืออะไร?",
    "context": "CREATE TABLE table_1342233_24 (incumbent VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1342233_24 WHERE incumbent = \"W. Arthur Winstead\"",
    "question_en": "What is the result for w. arthur winstead?",
    "question_th": "ผลลัพธ์ของ w คืออะไร อาเธอร์ วินสตีด?",
    "context": "CREATE TABLE table_1342233_24 (result VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(first_elected) FROM table_1342233_5 WHERE district = \"Arkansas 4\"",
    "question_en": "How many were first elected in the Arkansas 4 district?",
    "question_th": "มีกี่คนที่ได้รับเลือกครั้งแรกในเขตอาร์คันซอ 4",
    "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_en": "How many districts had William F. Norrell as the incumbent?",
    "question_th": "วิลเลียม เอฟ. นอร์เรลดำรงตำแหน่งกี่เขต",
    "context": "CREATE TABLE table_1342233_5 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1342233_5 WHERE first_elected > 1939.0",
    "question_en": "Which party has a first elected number bigger than 1939.0?",
    "question_th": "พรรคใดมีหมายเลขการเลือกตั้งครั้งแรกมากกว่า 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_en": "How many incumbents had a district of Arkansas 3?",
    "question_th": "ผู้ครอบครองตลาดมีเขตอาร์คันซอ 3 กี่แห่ง",
    "context": "CREATE TABLE table_1342233_5 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1342249_5 WHERE district = \"Arkansas 5\"",
    "question_en": "What party did the incumbent from the Arkansas 5 district belong to? ",
    "question_th": " ผู้ดำรงตำแหน่งจากเขต Arkansas 5 เป็นสมาชิกพรรคใด",
    "context": "CREATE TABLE table_1342249_5 (party VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1342249_5 WHERE district = \"Arkansas 6\"",
    "question_en": "What party did the incumbent of the Arkansas 6 district belong to? ",
    "question_th": "ผู้ดำรงตำแหน่งในเขตอาร์คันซอ 6 สังกัดพรรคใด",
    "context": "CREATE TABLE table_1342249_5 (party VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT MIN(first_elected) FROM table_1342249_5",
    "question_en": "What is the earliest years any of the incumbents were first elected? ",
    "question_th": " ผู้ดำรงตำแหน่งใดได้รับเลือกครั้งแรกในช่วงปีแรกๆ คือปีใด",
    "context": "CREATE TABLE table_1342249_5 (first_elected INTEGER)"
  },
  {
    "answer": "SELECT party FROM table_1342249_5 WHERE incumbent = \"Brooks Hays\"",
    "question_en": "What party did incumbent Brooks Hays belong to? ",
    "question_th": " Brooks Hays ผู้ดำรงตำแหน่งอยู่ในพรรคใด",
    "context": "CREATE TABLE table_1342249_5 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1342338_3 WHERE district = \"Alabama 1\"",
    "question_en": "What kind of party is the district in Alabama 1?",
    "question_th": "เขตในอลาบามา 1 เป็นงานปาร์ตี้แบบไหน?",
    "context": "CREATE TABLE table_1342338_3 (party VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT first_elected FROM table_1342338_3 WHERE result = \"Lost renomination\"",
    "question_en": "How many in lost renomination results were elected first?",
    "question_th": "ผลการเสนอชื่อที่เสียไปได้รับเลือกก่อนกี่คน?",
    "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_en": "How many in total were elected first in lost renomination?",
    "question_th": "มีทั้งหมดกี่คนที่ได้รับเลือกเป็นอันดับแรกแต่แพ้การเสนอชื่อ?",
    "context": "CREATE TABLE table_1342338_3 (first_elected VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1342338_5 WHERE incumbent = \"John E. Miller\"",
    "question_en": "In what district was John E. Miller the incumbent? ",
    "question_th": " จอห์น อี. มิลเลอร์ดำรงตำแหน่งในเขตใด",
    "context": "CREATE TABLE table_1342338_5 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(district) FROM table_1342338_5 WHERE incumbent = \"David Delano Glover\"",
    "question_en": "In how many districts was the incumbent David Delano Glover? ",
    "question_th": " เดวิด เดลาโน โกลเวอร์ ผู้ดำรงตำแหน่งอยู่ในเขตกี่เขต",
    "context": "CREATE TABLE table_1342338_5 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT first_elected FROM table_1342338_5 WHERE incumbent = \"Claude Fuller\"",
    "question_en": "What year was incumbent Claude Fuller first elected? ",
    "question_th": " โคล้ด ฟุลเลอร์ ผู้ดำรงตำแหน่งเดิมได้รับเลือกครั้งแรกในปีใด",
    "context": "CREATE TABLE table_1342338_5 (first_elected VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1342338_5 WHERE incumbent = \"Claude Fuller\"",
    "question_en": "Who ran in the election where Claude Fuller was the incumbent? ",
    "question_th": " ใครลงสมัครรับเลือกตั้งโดยที่โคลด ฟุลเลอร์ดำรงตำแหน่ง?",
    "context": "CREATE TABLE table_1342338_5 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1342359_39 WHERE incumbent = \"Thomas S. McMillan\"",
    "question_en": "What is the result for thomas s. mcmillan?",
    "question_th": "ผลลัพธ์ของโทมัสคืออะไร? แมคมิลแลน?",
    "context": "CREATE TABLE table_1342359_39 (result VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1342359_39 WHERE district = \"South Carolina 1\"",
    "question_en": "Name the candidate for south carolina 1?",
    "question_th": "ตั้งชื่อผู้สมัครสำหรับเซาท์แคโรไลนา 1 หรือไม่?",
    "context": "CREATE TABLE table_1342359_39 (candidates VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1342359_39 WHERE district = \"South Carolina 3\"",
    "question_en": "What is the party for south carolina 3?",
    "question_th": "ปาร์ตี้สำหรับเซาท์แคโรไลนา 3 คืออะไร?",
    "context": "CREATE TABLE table_1342359_39 (party VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1342359_39 WHERE district = \"South Carolina 4\"",
    "question_en": "What is the result for south carolina 4?",
    "question_th": "ผลลัพธ์ของเซาท์แคโรไลนา 4 คืออะไร?",
    "context": "CREATE TABLE table_1342359_39 (result VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1342359_5 WHERE incumbent = \"Richard J. Welch\"",
    "question_en": "what's the district with incumbent being richard j. welch",
    "question_th": "เขตที่ดำรงตำแหน่งคือริชาร์ด เจ. เวลช์",
    "context": "CREATE TABLE table_1342359_5 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1342359_5 WHERE party = \"Democratic\"",
    "question_en": "what's the districtwith party being democratic",
    "question_th": "อำเภอไหนที่พรรคเป็นประชาธิปไตย",
    "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_en": "what's the district with candidates being harry lane englebright (r) unopposed",
    "question_th": "เขตที่ผู้สมัครคือแฮร์รี เลน เองเกิลไบรท์ (r) ไม่มีการคัดค้าน",
    "context": "CREATE TABLE table_1342359_5 (district VARCHAR, candidates VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(candidates) FROM table_1342359_5 WHERE district = \"California 7\"",
    "question_en": " how many candidates with district being california 7",
    "question_th": " มีผู้สมัครกี่คนที่เขตเป็นแคลิฟอร์เนีย 7",
    "context": "CREATE TABLE table_1342359_5 (candidates VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1342359_5 WHERE incumbent = \"William E. Evans\"",
    "question_en": "what's the party with incumbent being william e. evans",
    "question_th": "ฝ่ายที่ดำรงตำแหน่งคือวิลเลียม อี เป็นยังไงบ้าง อีแวนส์",
    "context": "CREATE TABLE table_1342359_5 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1342370_23 WHERE incumbent = \"William Madison Whittington\"",
    "question_en": "What was the result of the election featuring william madison whittington?",
    "question_th": "ผลการเลือกตั้งที่มีวิลเลียม เมดิสัน วิตติงตันเป็นอย่างไรบ้าง",
    "context": "CREATE TABLE table_1342370_23 (result VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(result) FROM table_1342370_39 WHERE district = \"South Carolina 5\"",
    "question_en": "what is the total number of results where the district is south carolina 5?",
    "question_th": "จำนวนผลลัพธ์ทั้งหมดที่เขตอยู่ที่เซาท์แคโรไลนา 5 คือเท่าไร?",
    "context": "CREATE TABLE table_1342370_39 (result VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1342370_39 WHERE district = \"South Carolina 2\"",
    "question_en": "who is the candidate in district south carolina 2?",
    "question_th": "ใครคือผู้สมัครในเขตเซาท์แคโรไลนา 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_en": "what year was william francis stevenson first elected?",
    "question_th": "วิลเลียม ฟรานซิส สตีเวนสันได้รับเลือกครั้งแรกในปีใด",
    "context": "CREATE TABLE table_1342370_39 (first_elected VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1342451_13 WHERE incumbent = \"Burton E. Sweet\"",
    "question_en": "What political party for burton e. sweet?",
    "question_th": "พรรคการเมืองอะไรสำหรับเบอร์ตันอี หวาน?",
    "context": "CREATE TABLE table_1342451_13 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(location_attendance) FROM table_13464416_7 WHERE record = \"14-38\"",
    "question_en": "how many locations have a record of 14-38?",
    "question_th": "มีกี่แห่งที่มีประวัติ 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_en": "Who wrote the episode that received 1.83 million U.S. viewers?",
    "question_th": "ใครเป็นคนเขียนตอนที่มีผู้ชม 1.83 ล้านคนในสหรัฐฯ?",
    "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_en": "What is the original air date of the episode directed by Jeff Melman?",
    "question_th": "วันที่ออกอากาศดั้งเดิมของตอนที่กำกับโดย 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_en": "Which launch date involved the Driade?",
    "question_th": "วันเปิดตัวใดที่เกี่ยวข้องกับ Driade?",
    "context": "CREATE TABLE table_13537940_1 (launched VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT median_household_income FROM table_1356555_2 WHERE county = \"Sacramento\"",
    "question_en": "What is the median household income of sacramento?",
    "question_th": "รายได้เฉลี่ยของครัวเรือนในแซคราเมนโตคือเท่าไร?",
    "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_en": "What is the per capita income of shasta?",
    "question_th": "รายได้ต่อหัวของชาสต้าคือเท่าไร?",
    "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_en": "Name the median family income for riverside",
    "question_th": "ตั้งชื่อรายได้เฉลี่ยของครอบครัวริมแม่น้ำ",
    "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_en": "What is the median household income of butte?",
    "question_th": "รายได้เฉลี่ยของครัวเรือนของ 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_en": "What club got 239 points against?",
    "question_th": "สโมสรใดมี 239 แต้มต่อ?",
    "context": "CREATE TABLE table_13564702_4 (club VARCHAR, points_against VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_13564702_4 WHERE \"lost\" = \"lost\"",
    "question_en": "What is the value of the points column when the value of the column lost is \"lost\"",
    "question_th": "ค่าของคอลัมน์คะแนนคืออะไรเมื่อค่าของคอลัมน์ที่หายไปคือ \"สูญหาย\"",
    "context": "CREATE TABLE table_13564702_4 (points VARCHAR)"
  },
  {
    "answer": "SELECT tries_against FROM table_13564702_4 WHERE tries_for = \"62\"",
    "question_en": "How many tries against got the club with 62 tries for?",
    "question_th": "สโมสรพยายามพยายามกี่ครั้งโดยทำได้ 62 ครั้ง?",
    "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_en": "What group info is available for the 56.5 kg weight?",
    "question_th": "มีข้อมูลกลุ่มใดบ้างสำหรับน้ำหนัก 56.5 กก.",
    "context": "CREATE TABLE table_1358608_2 (group VARCHAR, weight__kg_ VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1358608_2 WHERE race = \"Railway Stakes\"",
    "question_en": "What was the result for the railway stakes race?",
    "question_th": "ผลการแข่งขันเดิมพันรถไฟเป็นอย่างไร?",
    "context": "CREATE TABLE table_1358608_2 (result VARCHAR, race VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_13618584_2 WHERE incumbent = \"Terry Kilgore\"",
    "question_en": "What district is incument terry kilgore from?",
    "question_th": "incument terry kilgore มาจากเขตไหน?",
    "context": "CREATE TABLE table_13618584_2 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(elected) FROM table_13618584_2 WHERE incumbent = \"Onzlee Ware\"",
    "question_en": "How many times was incumbent onzlee ware elected?",
    "question_th": "ออนลีแวร์ได้รับเลือกกี่ครั้ง?",
    "context": "CREATE TABLE table_13618584_2 (elected VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(2007 AS _result) FROM table_13618584_2 WHERE district = \"19th\"",
    "question_en": "How many election results are there from the 19th district?",
    "question_th": "ผลการเลือกตั้งเขตที่ 19 ออกมากี่รายการ?",
    "context": "CREATE TABLE table_13618584_2 (district VARCHAR)"
  },
  {
    "answer": "SELECT MAX(elected) FROM table_13618584_2 WHERE district = \"14th\"",
    "question_en": "What was the last year someone was elected to the 14th district?",
    "question_th": "ปีที่แล้วมีคนได้รับเลือกเข้าสู่เขตที่ 14 คืออะไร?",
    "context": "CREATE TABLE table_13618584_2 (elected INTEGER, district VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_13619053_4 WHERE team = \"San Antonio\"",
    "question_en": "What was the score against san antonio?",
    "question_th": "ซานอันโตนิโอทำสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_13619053_4 (score VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(score) FROM table_13619053_4 WHERE record = \"1-3\"",
    "question_en": "How many games did the team play when they were 1-3?",
    "question_th": "ทีมเล่นกี่เกมตอน 1-3?",
    "context": "CREATE TABLE table_13619053_4 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_13619135_6 WHERE game = 53",
    "question_en": "Who was the opposing team for game 53?",
    "question_th": "ใครคือทีมตรงข้ามในเกมที่ 53?",
    "context": "CREATE TABLE table_13619135_6 (team VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(game) FROM table_13619135_6 WHERE record = \"26-21\"",
    "question_en": "How many games were played when the record was 26-21?",
    "question_th": "มีการเล่นกี่เกมเมื่อสถิติ 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_en": "How many people had the high assists @ minnesota?",
    "question_th": "มีกี่คนที่แอสซิสต์สูง @ มินนิโซตา?",
    "context": "CREATE TABLE table_13619135_7 (high_assists VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_13619135_7 WHERE team = \"Charlotte\"",
    "question_en": "Who was the high rebounder against charlotte?",
    "question_th": "ใครคือคนที่รีบาวด์สูงเมื่อเทียบกับชาร์ล็อตต์?",
    "context": "CREATE TABLE table_13619135_7 (high_rebounds VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_13619135_7 WHERE team = \"New Jersey\"",
    "question_en": "Where did the team play and what was the attendance against new jersey?",
    "question_th": "ทีมเล่นที่ไหน และเล่นกับนิวเจอร์ซี่ย์เป็นจำนวนเท่าใด?",
    "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_en": "What day was the attendance at the staples center 18,176?",
    "question_th": "ผู้เข้าร่วมศูนย์ลวดเย็บกระดาษ 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_en": "what's the turing complete with numeral system being decimal",
    "question_th": "ทัวริงสมบูรณ์เมื่อระบบตัวเลขเป็นทศนิยมเป็นเท่าใด",
    "context": "CREATE TABLE table_13636_1 (turing_complete VARCHAR, numeral_system VARCHAR)"
  },
  {
    "answer": "SELECT computing_mechanism FROM table_13636_1 WHERE name = \"Atanasoff–Berry Computer (US)\"",
    "question_en": "what's the computing mechanbeingm with name being atanasoff–berry computer (us)",
    "question_th": "กลไกการคำนวณคืออะไร โดยมีชื่อว่า atanasoff–berry 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_en": "what's the name with first operational being march 1945",
    "question_th": "ชื่ออะไร โดยเปิดดำเนินการครั้งแรกเมื่อเดือนมีนาคม พ.ศ. 2488",
    "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_en": "what's the computing mechanbeingm with first operational being february 1944",
    "question_th": "กลไกการประมวลผลคืออะไร โดยเริ่มดำเนินการครั้งแรกในเดือนกุมภาพันธ์ พ.ศ. 2487",
    "context": "CREATE TABLE table_13636_1 (computing_mechanism VARCHAR, first_operational VARCHAR)"
  },
  {
    "answer": "SELECT turing_complete FROM table_13636_1 WHERE name = \"Atanasoff–Berry Computer (US)\"",
    "question_en": "what's the turing complete with name being atanasoff–berry computer (us)",
    "question_th": "ทัวริงที่สมบูรณ์ด้วยชื่อ atanasoff–berry คอมพิวเตอร์ (เรา) คืออะไร",
    "context": "CREATE TABLE table_13636_1 (turing_complete VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT first_operational FROM table_13636_1 WHERE programming = \"Not programmable—single purpose\"",
    "question_en": "what's the first operational with programming being not programmable—single purpose",
    "question_th": "อะไรคือการดำเนินการครั้งแรกโดยที่การเขียนโปรแกรมไม่สามารถตั้งโปรแกรมได้—มีวัตถุประสงค์เดียว",
    "context": "CREATE TABLE table_13636_1 (first_operational VARCHAR, programming VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_13677808_1 WHERE security = \"5.5\"",
    "question_en": "What country has a 5.5 mark for security?",
    "question_th": "ประเทศใดมีคะแนนความปลอดภัย 5.5?",
    "context": "CREATE TABLE table_13677808_1 (rank VARCHAR, security VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(technology) FROM table_13677808_1 WHERE rank = \"Denmark\"",
    "question_en": "How many times is denmark ranked in technology?",
    "question_th": "เดนมาร์กติดอันดับเทคโนโลยีกี่ครั้ง?",
    "context": "CREATE TABLE table_13677808_1 (technology VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT environment FROM table_13677808_1 WHERE overall__average_ = \"4.7\"",
    "question_en": "What is the environment rating of the country with an overall average rating of 4.7?",
    "question_th": "การจัดอันดับสภาพแวดล้อมของประเทศด้วยคะแนนเฉลี่ยโดยรวมที่ 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_en": "What is the migration rating when trade is 5.7?",
    "question_th": "คะแนนการย้ายถิ่นเมื่อการค้าอยู่ที่ 5.7 คืออะไร?",
    "context": "CREATE TABLE table_13677808_1 (migration VARCHAR, trade VARCHAR)"
  },
  {
    "answer": "SELECT MIN(pf) FROM table_1370559_1",
    "question_en": "What is the lowest PF?",
    "question_th": "PF ต่ำสุดคือเท่าไร?",
    "context": "CREATE TABLE table_1370559_1 (pf INTEGER)"
  },
  {
    "answer": "SELECT pa FROM table_1370559_1 WHERE pf = 77",
    "question_en": "What is the PA when the PF is 77?",
    "question_th": "PA คืออะไรเมื่อ PF คือ 77?",
    "context": "CREATE TABLE table_1370559_1 (pa VARCHAR, pf VARCHAR)"
  },
  {
    "answer": "SELECT won FROM table_13758945_3 WHERE try_bonus = \"8\"",
    "question_en": "what's the won with try bonus being 8",
    "question_th": "ชนะด้วยโบนัสลองเป็น 8 คืออะไร",
    "context": "CREATE TABLE table_13758945_3 (won VARCHAR, try_bonus VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_13758945_3 WHERE losing_bonus = \"1\"",
    "question_en": "what's the club with losing bonus being 1",
    "question_th": "สโมสรที่เสียโบนัสเป็น 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_en": " how many losing bonus with won being 10 and points against being 283",
    "question_th": " โบนัสที่เสียไปกี่ครั้งโดยชนะเป็น 10 และแต้มต่อเป็น 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_en": " how many points against with tries for being 43",
    "question_th": "กี่คะแนนกับความพยายามในการเป็น 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_en": "what's the points with tries for being 64",
    "question_th": "การพยายามอายุ 64 ได้ประโยชน์อะไร",
    "context": "CREATE TABLE table_13758945_3 (points VARCHAR, tries_for VARCHAR)"
  },
  {
    "answer": "SELECT won FROM table_13758945_3 WHERE points_against = \"597\"",
    "question_en": "what's the won with points against being 597",
    "question_th": "ชนะโดยมีคะแนนเทียบกับ 597 ได้เท่าไร",
    "context": "CREATE TABLE table_13758945_3 (won VARCHAR, points_against VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_13770460_3 WHERE transfer_fee = \"€20M\"",
    "question_en": "What is the type of the player whose transfer fee was €20m?",
    "question_th": "นักเตะประเภทไหนที่มีค่าธรรมเนียมการโอน 20 ล้านยูโร?",
    "context": "CREATE TABLE table_13770460_3 (type VARCHAR, transfer_fee VARCHAR)"
  },
  {
    "answer": "SELECT eu FROM table_13770460_3 WHERE country = \"ESp\"",
    "question_en": "What is the EU status of ESP?",
    "question_th": "สถานะ EU ของ 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_en": "How many numbers are ending in 1 year?",
    "question_th": "ใน 1 ปี เลขท้ายมีกี่ตัว?",
    "context": "CREATE TABLE table_13770460_3 (COUnT VARCHAR, ends VARCHAR)"
  },
  {
    "answer": "SELECT song_title FROM table_13804825_2 WHERE artist = \"Billy Vaughn\"",
    "question_en": "what is the nme of the song performed by billy vaughn?",
    "question_th": "ชื่อของเพลงที่ 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_en": "What is highest place reached by artist Ray Adams?",
    "question_th": "ศิลปิน เรย์ อดัมส์ ไปถึงจุดสูงสุดได้ที่ไหน?",
    "context": "CREATE TABLE table_13805773_2 (position INTEGER, artist VARCHAR)"
  },
  {
    "answer": "SELECT song_title FROM table_13805773_2 WHERE points = 259",
    "question_en": "What is the title of the song that received 259 points?",
    "question_th": "เพลงที่ได้รับ 259 คะแนน ชื่อเพลงว่าอะไร?",
    "context": "CREATE TABLE table_13805773_2 (song_title VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT MAX(per_lift) FROM table_13950065_1",
    "question_en": "how heavy is the  maximum",
    "question_th": "หนักสุดเท่าไหร่",
    "context": "CREATE TABLE table_13950065_1 (per_lift INTEGER)"
  },
  {
    "answer": "SELECT COUNT(other_programming_sources) FROM table_1397655_1 WHERE year_acquired = 1997",
    "question_en": "how many channels were gained in 1997",
    "question_th": "มีกี่ช่องในปี 2540",
    "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_en": "how any were gained as the chan",
    "question_th": "มีใครได้มาเป็นจันบ้าง",
    "context": "CREATE TABLE table_1397655_1 (year_acquired VARCHAR, station VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year_acquired) FROM table_1397655_1 WHERE station = \"CITV\"",
    "question_en": "how many is the minimum for citv",
    "question_th": "citv ขั้นต่ำเท่าไหร่คะ",
    "context": "CREATE TABLE table_1397655_1 (year_acquired INTEGER, station VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_1397655_1 WHERE station = \"CITV\"",
    "question_en": "where is citv located",
    "question_th": "ซีทีวีตั้งอยู่ที่ไหน",
    "context": "CREATE TABLE table_1397655_1 (city VARCHAR, station VARCHAR)"
  },
  {
    "answer": "SELECT station FROM table_1397655_1 WHERE city = \"Edmonton\"",
    "question_en": "which station is located in edmonton",
    "question_th": "สถานีใดตั้งอยู่ในเอดมันตัน",
    "context": "CREATE TABLE table_1397655_1 (station VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_1399994_5 WHERE year = \"1989\"",
    "question_en": "What was the outcome for the match in 1989?",
    "question_th": "ผลลัพธ์ของการแข่งขันในปี 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_en": "How many locations hosted Claudia Kohde-Kilsch Eva Pfaff?",
    "question_th": "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_en": "Who were all of the opponents in 1984?",
    "question_th": "ใครคือคู่ต่อสู้ทั้งหมดในปี 1984?",
    "context": "CREATE TABLE table_1399994_5 (opponents VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(partner) FROM table_1399994_5 WHERE year = \"1988\"",
    "question_en": "How many partners were there in 1988?",
    "question_th": "ในปี 1988 มีหุ้นส่วนกี่คน?",
    "context": "CREATE TABLE table_1399994_5 (partner VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT height FROM table_14038363_1 WHERE player = \"Maksim Botin\"",
    "question_en": "How tall is Maksim Botin? ",
    "question_th": " มักซิม โบติน สูงเท่าไหร่?",
    "context": "CREATE TABLE table_14038363_1 (height VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_14038363_1 WHERE player = \"Maksim Botin\"",
    "question_en": "What is Maksim Botin's position? ",
    "question_th": " มักซิม โบติน มีจุดยืนอย่างไร?",
    "context": "CREATE TABLE table_14038363_1 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_14038363_1 WHERE player = \"Roman Bragin\"",
    "question_en": "What is Roman Bragin's position? ",
    "question_th": "ตำแหน่งของ Roman Bragin คืออะไร?",
    "context": "CREATE TABLE table_14038363_1 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(position) FROM table_14038363_1 WHERE player = \"Teodor Salparov\"",
    "question_en": "How many position does Teodor Salparov play on? ",
    "question_th": " เทโอดอร์ ซัลปารอฟ เล่นได้กี่ตำแหน่ง?",
    "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_en": "what is the minimum points with goals for/against being 8-5",
    "question_th": "คะแนนขั้นต่ำโดยมีเป้าหมาย/ต่ออยู่ที่ 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_en": "what's the w-l-d with position being 1",
    "question_th": "ตำแหน่งเป็น 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_en": "who is the the club (city/town) with goals for/against being 14-2",
    "question_th": "ซึ่งเป็นสโมสร (เมือง/เมือง) โดยมีเป้าหมาย/ต่อ 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_en": "what's the goals for/against with w-l-d being 3-1-1",
    "question_th": "เป้าหมายสำหรับ/ต่อต้านกับ 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_en": "what is the minimum games played with goals for/against being 7-5",
    "question_th": "เกมขั้นต่ำที่เล่นโดยมีเป้าหมาย/ต่อ 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_en": "What is the nationality of the player whose college/junior/club team (league) is Seattle Thunderbirds (WHL)?",
    "question_th": "ผู้เล่นที่มีสัญชาติอะไรซึ่งมีทีมวิทยาลัย/จูเนียร์/สโมสร (ลีก) คือ 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_en": "What is the college/junior/club team (league) of the player who was pick number 130?",
    "question_th": "ทีมวิทยาลัย/จูเนียร์/สโมสร (ลีก) ของผู้เล่นที่ได้รับเลือกหมายเลข 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_en": "What is the pick number for round 2?",
    "question_th": "หมายเลขเลือกรอบ 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_en": "what time is mon may 26 and fri may 30 is 18' 28.27 122.599mph?",
    "question_th": "วันจันทร์ที่ 26 พฤษภาคม และวันศุกร์ที่ 30 พฤษภาคม คือกี่โมง 18' 28.27 122.599 ไมล์ต่อชั่วโมง?",
    "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_en": "what tims is wed may 28 and mon may 26 is 17' 58.34 125.960mph?",
    "question_th": "วันพุธที่ 28 พฤษภาคม และวันจันทร์ที่ 26 พฤษภาคม เวลากี่โมง ความเร็ว 17' 58.34 125.960 ไมล์/ชม.",
    "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_en": "what is the numbr for fri may 30 and mon may 26 is 19' 02.890 118.847mph?",
    "question_th": "หมายเลขของวันศุกร์ที่ 30 พฤษภาคมและจันทร์ที่ 26 พฤษภาคมคือเท่าไร 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_en": "What the name of  the school where the last win in 2007-08?",
    "question_th": "โรงเรียนที่ชนะครั้งสุดท้ายในปี 2550-51 ชื่ออะไร?",
    "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_en": "How many times was banbridge academy the winner?",
    "question_th": "banbridge academy เป็นผู้ชนะกี่ครั้ง?",
    "context": "CREATE TABLE table_14286908_1 (winners VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_14286908_1 WHERE finalists = 2",
    "question_en": "What are the names that had a finalist score of 2?",
    "question_th": "มีชื่ออะไรบ้างที่เข้ารอบ 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_en": "In what year was the total finals at 10?",
    "question_th": "รอบชิงชนะเลิศรวมวันที่ 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_en": "What is the name of the school where the year of last win is 1985-86?",
    "question_th": "โรงเรียนที่ชนะครั้งสุดท้ายคือปี 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_en": "How many total finals where there when the last win was in 2012-13?",
    "question_th": "มีรอบชิงชนะเลิศทั้งหมดกี่ครั้งเมื่อชัยชนะครั้งล่าสุดคือในปี 2555-2556?",
    "context": "CREATE TABLE table_14286908_1 (total_finals VARCHAR, year_of_last_win VARCHAR)"
  },
  {
    "answer": "SELECT MAX(played) FROM table_14323347_1",
    "question_en": "Name the most played",
    "question_th": "ตั้งชื่อเล่นมากที่สุด",
    "context": "CREATE TABLE table_14323347_1 (played INTEGER)"
  },
  {
    "answer": "SELECT COUNT(1992 AS _93) FROM table_14323347_1 WHERE points = 115",
    "question_en": "Name the total number of 1992-93 for 115 points",
    "question_th": "ทายผลรวมปี 1992-93 ได้ 115 คะแนน",
    "context": "CREATE TABLE table_14323347_1 (points VARCHAR)"
  },
  {
    "answer": "SELECT MAX(touchdowns) FROM table_14342480_6 WHERE field_goals = 1",
    "question_en": "Name the most touchdowns for field goals being 1",
    "question_th": "ตั้งชื่อทัชดาวน์มากที่สุดสำหรับการยิงประตูเป็น 1",
    "context": "CREATE TABLE table_14342480_6 (touchdowns INTEGER, field_goals VARCHAR)"
  },
  {
    "answer": "SELECT starter FROM table_14342480_6 WHERE position = \"Left end\"",
    "question_en": "Name the starter for position being left end",
    "question_th": "ตั้งชื่อสตาร์ทเตอร์สำหรับตำแหน่งปลายซ้าย",
    "context": "CREATE TABLE table_14342480_6 (starter VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT MIN(touchdowns) FROM table_14342480_6",
    "question_en": "Name the fewest touchdowns",
    "question_th": "ตั้งชื่อทัชดาวน์น้อยที่สุด",
    "context": "CREATE TABLE table_14342480_6 (touchdowns INTEGER)"
  },
  {
    "answer": "SELECT MAX(extra_points) FROM table_14342480_6 WHERE position = \"Right tackle\"",
    "question_en": "Name the most extra points for right tackle",
    "question_th": "ระบุแต้มพิเศษที่สุดสำหรับการสกัดกั้นที่ถูกต้อง",
    "context": "CREATE TABLE table_14342480_6 (extra_points INTEGER, position VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(points) FROM table_14342480_6 WHERE field_goals = 1",
    "question_en": "Name the number of points for field goals being 1",
    "question_th": "ตั้งชื่อจำนวนคะแนนสำหรับการยิงประตูเป็น 1",
    "context": "CREATE TABLE table_14342480_6 (points VARCHAR, field_goals VARCHAR)"
  },
  {
    "answer": "SELECT MAX(touchdowns) FROM table_14342592_8 WHERE player = \"Becker\"",
    "question_en": "Name the most touchdowns for becker ",
    "question_th": " ตั้งชื่อทัชดาวน์มากที่สุดสำหรับเบกเกอร์",
    "context": "CREATE TABLE table_14342592_8 (touchdowns INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT extra_points FROM table_14342592_8 WHERE position = \"Left guard\"",
    "question_en": "Name the extra points for left guard",
    "question_th": "ตั้งชื่อคะแนนพิเศษสำหรับผู้พิทักษ์ด้านซ้าย",
    "context": "CREATE TABLE table_14342592_8 (extra_points VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT MIN(touchdowns) FROM table_14342592_8 WHERE points = 11",
    "question_en": "Name the least touchdowns for 11 points",
    "question_th": "ตั้งชื่อทัชดาวน์น้อยที่สุดได้ 11 แต้ม",
    "context": "CREATE TABLE table_14342592_8 (touchdowns INTEGER, points VARCHAR)"
  },
  {
    "answer": "SELECT MAX(field_goals) FROM table_14342592_8",
    "question_en": "Name the most field goals",
    "question_th": "ตั้งชื่อฟิลด์โกลมากที่สุด",
    "context": "CREATE TABLE table_14342592_8 (field_goals INTEGER)"
  },
  {
    "answer": "SELECT COUNT(field_goals) FROM table_14342592_8 WHERE extra_points = 19",
    "question_en": "Name the number of field goals for 19 extra points",
    "question_th": "ระบุจำนวนประตูเพิ่ม 19 แต้ม",
    "context": "CREATE TABLE table_14342592_8 (field_goals VARCHAR, extra_points VARCHAR)"
  },
  {
    "answer": "SELECT MAX(touchdowns) FROM table_14342592_8 WHERE player = \"Norcross\"",
    "question_en": "Name the most touchdowns for norcross",
    "question_th": "ตั้งชื่อทัชดาวน์มากที่สุดสำหรับนอร์ครอส",
    "context": "CREATE TABLE table_14342592_8 (touchdowns INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT famous_for FROM table_14345690_4 WHERE finished = \"9th\"",
    "question_en": "Name who was famous for finished in 9th",
    "question_th": "ชื่อผู้โด่งดังจบในวันที่ 9",
    "context": "CREATE TABLE table_14345690_4 (famous_for VARCHAR, finished VARCHAR)"
  },
  {
    "answer": "SELECT finished FROM table_14345690_4 WHERE exited = \"Day 13\"",
    "question_en": "Name the finished for exited day 13",
    "question_th": "ตั้งชื่อเสร็จสิ้นสำหรับวันที่ออก 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_en": "Name the entered for famous for page 3 model",
    "question_th": "ตั้งชื่อผู้มีชื่อเสียงสำหรับรุ่นหน้า 3",
    "context": "CREATE TABLE table_14345690_4 (entered VARCHAR, famous_for VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(finished) FROM table_14345690_4 WHERE celebrity = \"Kerry Katona\"",
    "question_en": "Name the finished for kerry katona",
    "question_th": "ตั้งชื่อสิ่งที่เสร็จแล้วสำหรับ 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_en": "Name the number of celebrity for athlete",
    "question_th": "ตั้งชื่อเบอร์ดารานักกีฬา",
    "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_en": "What is the total number of values for \"Teleplay by\" category for series # 35?",
    "question_th": "จำนวนค่าทั้งหมดสำหรับหมวดหมู่ \"Teleplay by\" สำหรับซีรีส์ # 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_en": "Who is the teleplay by when the director is Rob Bailey?",
    "question_th": "ใครเป็นผู้ถ่ายทอดทางโทรทัศน์เมื่อผู้กำกับคือ 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_en": "What is the season # for a teleplay by Richard Price and the director is Steve Shill?",
    "question_th": "ซีซั่น # สำหรับการออกอากาศทางโทรทัศน์โดย Richard Price และผู้กำกับคือ 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_en": "What time in eastern standard time was game held at denver broncos?",
    "question_th": "เกมที่เดนเวอร์ บรองโกส์ จัดขึ้นกี่โมงตามเวลามาตรฐานตะวันออก?",
    "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_en": "What are the names of all unix shell with PowerShell (Cmdlet) of select-string?",
    "question_th": "ชื่อของเชลล์ยูนิกซ์ทั้งหมดที่มี PowerShell (Cmdlet) ของสตริงที่เลือกคืออะไร",
    "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_en": "What are all values of CMD.EXE / COMMAND.COM for the unix shell echo?",
    "question_th": "ค่าทั้งหมดของ CMD.EXE / COMMAND.COM สำหรับ 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_en": "If Powershell (alias) is cpi, copy, cp, what are all corresponding descriptions. ",
    "question_th": " หาก Powershell (นามแฝง) คือ cpi, copy, cp คำอธิบายที่เกี่ยวข้องทั้งหมดคืออะไร",
    "context": "CREATE TABLE table_14465871_1 (description VARCHAR, powershell__alias_ VARCHAR)"
  },
  {
    "answer": "SELECT powershell__cmdlet_ FROM table_14465871_1 WHERE cmdexe___commandcom = \"type\"",
    "question_en": "When the cmd.exe / command.com is type, what are all associated values for powershell (cmdlet)?",
    "question_th": "เมื่อพิมพ์ cmd.exe / command.com ค่าที่เกี่ยวข้องทั้งหมดสำหรับ 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_en": "How many values of powershell (cmdlet) are valid when unix shell is env, export, set, setenv?",
    "question_th": "PowerShell (cmdlet) มีค่ากี่ค่าที่ถูกต้องเมื่อ unix shell คือ env, ส่งออก, ตั้งค่า, 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_en": "What county has 2053 households? ",
    "question_th": " มณฑลใดมี 2,053 ครัวเรือน?",
    "context": "CREATE TABLE table_1447085_1 (county VARCHAR, number_of_households VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_1447085_1 WHERE rank = 71",
    "question_en": "Which place has a rank of 71?",
    "question_th": "สถานที่ใดมีอันดับ 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_en": "Which county has a median household income of  $98,090?",
    "question_th": "เคาน์ตีใดมีรายได้เฉลี่ยของครัวเรือนอยู่ที่ $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_en": "What is the median household income for Woodside?",
    "question_th": "รายได้เฉลี่ยของครัวเรือนสำหรับ 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_en": "What is the per capita income for Fayette County?",
    "question_th": "รายได้ต่อหัวของ 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_en": "Where does the common of Galliate rank in population?",
    "question_th": "สามัญของ Galliate อยู่ในอันดับใดของประชากร?",
    "context": "CREATE TABLE table_1449169_1 (rank VARCHAR, common VARCHAR)"
  },
  {
    "answer": "SELECT common FROM table_1449169_1 WHERE area__km_2__ = \"38.38\"",
    "question_en": "Which common has an area (km2) of 38.38?",
    "question_th": "พื้นที่ส่วนกลางใดมีพื้นที่ (km2) เท่ากับ 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_en": "Which common has an area (km2) of 103.02?",
    "question_th": "พื้นที่ส่วนกลางใดมีพื้นที่ (km2) เท่ากับ 103.02",
    "context": "CREATE TABLE table_1449169_1 (common VARCHAR, area__km_2__ VARCHAR)"
  },
  {
    "answer": "SELECT MIN(altitude__mslm_) FROM table_1449169_1",
    "question_en": "What is the minimum altitude (mslm) in all the commons?",
    "question_th": "ระดับความสูงขั้นต่ำ (mslm) ในทุกส่วนคือเท่าใด?",
    "context": "CREATE TABLE table_1449169_1 (altitude__mslm_ INTEGER)"
  },
  {
    "answer": "SELECT rank FROM table_1449176_1 WHERE area__km_2__ = \"47.3\"",
    "question_en": "What rank is the common with an area of 47.3 km^2?",
    "question_th": "อันดับใดคืออันดับทั่วไปที่มีพื้นที่ 47.3 กม.^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_en": "What is the density of the common with an area of 20.4 km^2?",
    "question_th": "ความหนาแน่นของวัตถุทั่วไปที่มีพื้นที่ 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_en": "How many altitudes does the common with an area of 130.7 km^2 have?",
    "question_th": "พื้นที่ร่วม 130.7 กม.^2 มีระดับความสูงเท่าใด",
    "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_en": "How may population figures are given for Settimo Torinese",
    "question_th": "อาจให้ตัวเลขประชากรสำหรับ 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_en": "What is the name of the 9th ranked common?",
    "question_th": "อันดับที่ 9 สามัญชื่ออะไร?",
    "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_en": "The common of Chieri has what population density?",
    "question_th": "ส่วนร่วมของ Chieri มีความหนาแน่นของประชากรเท่าใด",
    "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_en": "what's the economics score with education being 92.0",
    "question_th": "คะแนนเศรษฐศาสตร์โดยการศึกษาอยู่ที่ 92.0 เป็นเท่าใด",
    "context": "CREATE TABLE table_145439_1 (economics VARCHAR, education VARCHAR)"
  },
  {
    "answer": "SELECT health FROM table_145439_1 WHERE justice = \"80.7\"",
    "question_en": "what's the health score with justice being 80.7",
    "question_th": "คะแนนสุขภาพโดยความยุติธรรมอยู่ที่ 80.7 เท่าไหร่",
    "context": "CREATE TABLE table_145439_1 (health VARCHAR, justice VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_145439_1 WHERE country = \"Iceland\"",
    "question_en": "what's the rank for iceland",
    "question_th": "ไอซ์แลนด์อยู่อันดับไหน",
    "context": "CREATE TABLE table_145439_1 (rank VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_145439_1 WHERE health = \"91.4\"",
    "question_en": "what's the country with health being 91.4",
    "question_th": "สุขภาพอยู่ที่ประเทศอะไร 91.4",
    "context": "CREATE TABLE table_145439_1 (country VARCHAR, health VARCHAR)"
  },
  {
    "answer": "SELECT economics FROM table_145439_1 WHERE justice = \"90.8\"",
    "question_en": "what's the economics score with justice being 90.8",
    "question_th": "คะแนนเศรษฐศาสตร์คือเท่าไรโดยความยุติธรรมอยู่ที่ 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_en": "On October 17, 1937 what was maximum number or attendants.",
    "question_th": "เมื่อวันที่ 17 ตุลาคม พ.ศ. 2480 ได้กำหนดจำนวนผู้เข้าร่วมประชุมสูงสุดไว้เท่าใด",
    "context": "CREATE TABLE table_14608759_1 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_14608759_1 WHERE week = 9",
    "question_en": "In week 9 who were the opponent? ",
    "question_th": " ในสัปดาห์ที่ 9 ใครคือคู่ต่อสู้?",
    "context": "CREATE TABLE table_14608759_1 (opponent VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_14608759_1 WHERE week = 4",
    "question_en": "What are week 4 results? ",
    "question_th": " ผลลัพธ์สัปดาห์ที่ 4 คืออะไร?",
    "context": "CREATE TABLE table_14608759_1 (result VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT MAX(number) FROM table_14624447_33 WHERE name = \"Trevard Lindley\"",
    "question_en": "What was Trevard Lindley's number?",
    "question_th": "หมายเลขของ Trevard Lindley คืออะไร",
    "context": "CREATE TABLE table_14624447_33 (number INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_1473672_8 WHERE nhl_team = \"Chicago Black Hawks\"",
    "question_en": "Name the player for chicago black hawks",
    "question_th": "ตั้งชื่อนักเตะทีมชิคาโก้ แบล็ก ฮอว์กส์",
    "context": "CREATE TABLE table_1473672_8 (player VARCHAR, nhl_team VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_1473672_8 WHERE pick__number = 128",
    "question_en": "Name the position for pick number 128",
    "question_th": "ตั้งชื่อตำแหน่งสำหรับเลือกหมายเลข 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_en": "Name the college/junior/club team for left wing",
    "question_th": "ตั้งชื่อทีมวิทยาลัย/จูเนียร์/สโมสรสำหรับปีกซ้าย",
    "context": "CREATE TABLE table_1473672_8 (college_junior_club_team VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT burmese FROM table_14850099_18 WHERE english = \"Thursday\"",
    "question_en": "What is the Burmese term for Thursday?",
    "question_th": "วันพฤหัสบดี ภาษาพม่าเรียกว่าอะไร?",
    "context": "CREATE TABLE table_14850099_18 (burmese VARCHAR, english VARCHAR)"
  },
  {
    "answer": "SELECT cardinal_direction FROM table_14850099_18 WHERE planet = \"Venus\"",
    "question_en": "What is the cardinal direction associated with Venus?",
    "question_th": "ทิศทางสำคัญที่เกี่ยวข้องกับดาวศุกร์คืออะไร?",
    "context": "CREATE TABLE table_14850099_18 (cardinal_direction VARCHAR, planet VARCHAR)"
  },
  {
    "answer": "SELECT burmese FROM table_14850099_18 WHERE cardinal_direction = \"West\"",
    "question_en": "What is the Burmese term associated with a cardinal direction of west?",
    "question_th": "คำภาษาพม่าเกี่ยวข้องกับทิศทิศตะวันตกคืออะไร?",
    "context": "CREATE TABLE table_14850099_18 (burmese VARCHAR, cardinal_direction VARCHAR)"
  },
  {
    "answer": "SELECT planet FROM table_14850099_18 WHERE cardinal_direction = \"South\"",
    "question_en": "What is the planet associated with the direction of south?",
    "question_th": "ดาวเคราะห์ดวงใดสัมพันธ์กับทิศทิศใต้?",
    "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_en": "What is the value scored when there were 19 points for the team 3 de Febrero?",
    "question_th": "เมื่อทีม 3 เด เฟเบรโร มี 19 แต้ม มีมูลค่าเท่าไร?",
    "context": "CREATE TABLE table_14871601_2 (scored INTEGER, points VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(losses) FROM table_14871601_2 WHERE scored = 25",
    "question_en": "What was the number of losses when the scored value was 25?",
    "question_th": "จำนวนการแพ้เมื่อมูลค่าคะแนนคือ 25 เป็นเท่าใด",
    "context": "CREATE TABLE table_14871601_2 (losses INTEGER, scored VARCHAR)"
  },
  {
    "answer": "SELECT yacht FROM table_14882588_3 WHERE sail_number = \"6952\"",
    "question_en": "What were all Yachts with a sail number of 6952?",
    "question_th": "เรือยอทช์ที่มีหมายเลขใบเรือ 6952 คืออะไร?",
    "context": "CREATE TABLE table_14882588_3 (yacht VARCHAR, sail_number VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(yacht) FROM table_14882588_3 WHERE position = 3",
    "question_en": "How many yachts had a position of 3?",
    "question_th": "มีเรือยอทช์กี่ลำที่มีตำแหน่ง 3?",
    "context": "CREATE TABLE table_14882588_3 (yacht VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT sail_number FROM table_14882588_3 WHERE yacht = \"Yendys\"",
    "question_en": "What are all sail numbers for the yacht Yendys?",
    "question_th": "หมายเลขใบเรือของเรือยอชท์ 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_en": "Who is the courtside reporter for the year 2009-10?",
    "question_th": "ใครคือนักข่าวข้างสนามประจำปี 2552-2553?",
    "context": "CREATE TABLE table_14902507_2 (courtside_reporter VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT studio_host FROM table_14902507_2 WHERE year = \"2006-07\"",
    "question_en": "Who is the studio host for the year 2006-07?",
    "question_th": "ใครคือพิธีกรสตูดิโอประจำปี 2549-50?",
    "context": "CREATE TABLE table_14902507_2 (studio_host VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT studio_analysts FROM table_14902507_2 WHERE year = \"2008-09\"",
    "question_en": "Who are the studio analysts for the year 2008-09?",
    "question_th": "ใครคือนักวิเคราะห์สตูดิโอประจำปี 2551-52?",
    "context": "CREATE TABLE table_14902507_2 (studio_analysts VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(channel) FROM table_14902507_2 WHERE year = \"2001-02\"",
    "question_en": "How many channels were the games shown on in 2001-02?",
    "question_th": "มีการแสดงเกมกี่ช่องในปี 2544-2545?",
    "context": "CREATE TABLE table_14902507_2 (channel VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT current_venue FROM table_14903081_1 WHERE tournament = \"Miami Masters\"",
    "question_en": "What is the current venue for the Miami Masters tournament?",
    "question_th": "สถานที่ปัจจุบันสำหรับการแข่งขัน Miami Masters คือที่ไหน?",
    "context": "CREATE TABLE table_14903081_1 (current_venue VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_14903081_1 WHERE location = \"Rome\"",
    "question_en": "Rome is in which country?",
    "question_th": "โรมอยู่ประเทศไหน?",
    "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_en": "How many tournaments have their current venue as the Lindner Family Tennis Center?",
    "question_th": "มีทัวร์นาเมนท์กี่รายการที่มีสถานที่ปัจจุบันในชื่อ 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_en": "What year was the tournament first held in Italy?",
    "question_th": "การแข่งขันจัดขึ้นครั้งแรกในประเทศอิตาลีในปีใด",
    "context": "CREATE TABLE table_14903081_1 (began INTEGER, country VARCHAR)"
  },
  {
    "answer": "SELECT current_venue FROM table_14903081_1 WHERE location = \"Mason, Ohio\"",
    "question_en": "Which current venues location is Mason, Ohio?",
    "question_th": "สถานที่จัดงานปัจจุบันคือเมืองเมสัน รัฐโอไฮโอ",
    "context": "CREATE TABLE table_14903081_1 (current_venue VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_14903081_1 WHERE current_venue = \"Madrid Arena\"",
    "question_en": "Which tournaments current venue is the Madrid Arena?",
    "question_th": "สนามมาดริดอารีน่าคือสนามแข่งขันใดในปัจจุบัน?",
    "context": "CREATE TABLE table_14903081_1 (tournament VARCHAR, current_venue VARCHAR)"
  },
  {
    "answer": "SELECT womens_doubles FROM table_14903841_1 WHERE year = \"2000/2001\"",
    "question_en": "What are all values for Womens Doubles in the year 2000/2001?",
    "question_th": "มูลค่าทั้งหมดสำหรับประเภทหญิงคู่ในปี 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_en": "Who are all the womens doubles for the year 2008/2009?",
    "question_th": "หญิงคู่ประจำปี 2551/2552 คือใคร?",
    "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_en": "Which episode number drew in 3.84 million viewers in the U.S.?",
    "question_th": "หมายเลขตอนใดดึงดูดผู้ชมได้ 3.84 ล้านคนในสหรัฐอเมริกา",
    "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_en": "How many viewers did the episode directed by David Nutter draw in?",
    "question_th": "ตอนที่กำกับโดย David Nutter มีผู้ชมกี่คน",
    "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_en": "Which episode number drew in 3.35 million viewers in the United States?",
    "question_th": "หมายเลขตอนใดดึงดูดผู้ชมได้ 3.35 ล้านคนในสหรัฐอเมริกา",
    "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_en": "Which episode number was directed by Bill Eagles?",
    "question_th": "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_en": "How many masters fought using a boxing style?",
    "question_th": "มีปรมาจารย์กี่คนที่ต่อสู้โดยใช้รูปแบบการชกมวย?",
    "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_en": "How many times did episode 1.8 air?",
    "question_th": "ตอนที่ 1.8 ออกอากาศกี่ครั้ง?",
    "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_en": "Which masters fought in hapkido style?",
    "question_th": "ปรมาจารย์คนไหนที่ต่อสู้แบบฮับกิโด?",
    "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_en": "When did the episode featuring a master using Brazilian jiu-jitsu air?",
    "question_th": "ตอนนี้มีปรมาจารย์ที่ใช้เครื่องบราซิลเลี่ยนยิวยิตสูเมื่อใด",
    "context": "CREATE TABLE table_14937957_1 (original_airdate VARCHAR, martial_art_style VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_14937957_1 WHERE city = \"Netanya\"",
    "question_en": "In which country is the city of Netanya?",
    "question_th": "เมืองเนทันยาอยู่ในประเทศใด",
    "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_en": "Which martial arts style was shown in Rio de Janeiro?",
    "question_th": "ศิลปะการต่อสู้สไตล์ใดที่แสดงในรีโอเดจาเนโร",
    "context": "CREATE TABLE table_14937957_1 (martial_art_style VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_14941284_1 WHERE attendance = 74804",
    "question_en": "When 74804 is the attendance what week is it?",
    "question_th": "เมื่อ 74804 มีผู้เข้าร่วมสัปดาห์ไหน?",
    "context": "CREATE TABLE table_14941284_1 (week VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_14941284_1 WHERE date = \"October 25, 1981\"",
    "question_en": "When it is October 25, 1981 who is the opponent?",
    "question_th": "เมื่อเป็นวันที่ 25 ตุลาคม 2524 คู่ต่อสู้คือใคร?",
    "context": "CREATE TABLE table_14941284_1 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_14941284_1 WHERE week = 2",
    "question_en": "When it is week 2 what is the record?",
    "question_th": "เมื่อถึงสัปดาห์ที่ 2 บันทึกคืออะไร?",
    "context": "CREATE TABLE table_14941284_1 (record VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT game_site FROM table_14941284_1 WHERE date = \"October 18, 1981\"",
    "question_en": "When it is October 18, 1981 where is the game site?",
    "question_th": "เมื่อเป็นวันที่ 18 ตุลาคม 2524 เว็บไซต์เกมอยู่ที่ไหน?",
    "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_en": "Name the median income for age band being under 20",
    "question_th": "ตั้งชื่อรายได้เฉลี่ยสำหรับช่วงอายุที่ต่ำกว่า 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_en": "How many episodes in history have a running time of 24:06?",
    "question_th": "มีกี่ตอนในประวัติศาสตร์ที่มีเวลาฉาย 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íŋhaŋna\"",
    "question_en": "Name the southern lakota for híŋhaŋna",
    "question_th": "ตั้งชื่อลาโกตาทางตอนใต้ว่า ฮินิฮานินา",
    "context": "CREATE TABLE table_1499774_5 (southern_lakota VARCHAR, yankton_yanktonai VARCHAR)"
  },
  {
    "answer": "SELECT santee_sisseton FROM table_1499774_5 WHERE yankton_yanktonai = \"wičháša\"",
    "question_en": "Name the santee sisseton for wičháša",
    "question_th": "ตั้งชื่อสันตี ซิสเซตอน เป็นคำนาม วิชชาชา",
    "context": "CREATE TABLE table_1499774_5 (santee_sisseton VARCHAR, yankton_yanktonai VARCHAR)"
  },
  {
    "answer": "SELECT english_gloss FROM table_1499774_5 WHERE santee_sisseton = \"haŋȟ’áŋna\"",
    "question_en": "Name the english gloss for haŋȟ’áŋna",
    "question_th": "ตั้งชื่อกลอสภาษาอังกฤษของ haŋŋŋŋna",
    "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ȟáŋyeža\"",
    "question_en": "Name the number of english gloss for wakȟáŋyeža",
    "question_th": "ตั้งชื่อเลขหน้ากลอสภาษาอังกฤษสำหรับ wakŋyeža",
    "context": "CREATE TABLE table_1499774_5 (english_gloss VARCHAR, northern_lakota VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_15001753_1",
    "question_en": "What was the first year of the Lithuanian National Badminton Championships?",
    "question_th": "ปีแรกของการแข่งขันแบดมินตันแห่งชาติลิทัวเนียคือปีใด",
    "context": "CREATE TABLE table_15001753_1 (year INTEGER)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_15001753_1 WHERE mens_doubles = \"Aivaras Kvedarauskas Juozas Spelveris\"",
    "question_en": "How many years did aivaras kvedarauskas juozas spelveris participate in the men's doubles?",
    "question_th": "aivaras kvedarauskas juozas spelveris เข้าร่วมการแข่งขันประเภทชายคู่กี่ปี?",
    "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_en": "In 2004, where the womens singles is daniela kressig who is the mens singles",
    "question_th": "ในปี พ.ศ. 2547 ซึ่งประเภทหญิงเดี่ยวคือ ดาเนียลา เครสซิก ซึ่งเป็นประเภทชายเดี่ยว",
    "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_en": "What is the most current year where the women's doubles champions are astrid eidenbenz claudia jehle",
    "question_th": "ปัจจุบันคือปีใดที่แชมป์หญิงคู่ได้แก่ แอสทริด ไอเดนเบนซ์ คลอเดีย เจห์เลอ",
    "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_en": "In the year 2006, the womens singles had no competition and the mens doubles were roland hilti kilian pfister, what were the womens doubles",
    "question_th": "ในปี พ.ศ. 2549 หญิงเดี่ยวไม่มีการแข่งขัน และประเภทชายคู่คือ Roland hilti kilian pfister หญิงคู่คืออะไร",
    "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_en": "In 2001, where the mens singles is armand jehle and the womens singles is michaela ritter, who are the mixed doubles",
    "question_th": "ในปี 2001 โดยประเภทชายเดี่ยวคือ Armand Jehle และประเภทหญิงเดี่ยวคือ Michaela Ritter ซึ่งเป็นประเภทคู่ผสม",
    "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_en": "In 1987 who was the mens singles",
    "question_th": "ในปี 1987 ซึ่งเป็นประเภทชายเดี่ยว",
    "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_en": "When is the rhel release date when scientific linux release is 3.0.4",
    "question_th": "วันวางจำหน่าย rhel คือเมื่อใดเมื่อรุ่น linux ทางวิทยาศาสตร์คือ 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_en": "Name the delay when scientific linux release is 5.10",
    "question_th": "ตั้งชื่อความล่าช้าเมื่อรุ่น linux ทางวิทยาศาสตร์คือ 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_en": "Name the scientific linux release when delay is 28d",
    "question_th": "ตั้งชื่อรุ่น linux ทางวิทยาศาสตร์เมื่อความล่าช้าคือ 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_en": "What is the United States rank?",
    "question_th": "อันดับของสหรัฐอเมริกาคืออะไร?",
    "context": "CREATE TABLE table_150343_3 (rank VARCHAR, country_territory VARCHAR)"
  },
  {
    "answer": "SELECT total FROM table_150343_3 WHERE country_territory = \"Venezuela\"",
    "question_en": "What is Venezuela's total rank?",
    "question_th": "อันดับโดยรวมของเวเนซุเอลาคือเท่าไร?",
    "context": "CREATE TABLE table_150343_3 (total VARCHAR, country_territory VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(total) FROM table_150343_3 WHERE country_territory = \"Iceland\"",
    "question_en": "What is Iceland's total?",
    "question_th": "ยอดรวมของไอซ์แลนด์เป็นเท่าใด?",
    "context": "CREATE TABLE table_150343_3 (total VARCHAR, country_territory VARCHAR)"
  },
  {
    "answer": "SELECT MAX(score) FROM table_1506950_4",
    "question_en": "What is the worst (highest) score?",
    "question_th": "คะแนนแย่ที่สุด (สูงสุด) คืออะไร?",
    "context": "CREATE TABLE table_1506950_4 (score INTEGER)"
  },
  {
    "answer": "SELECT date FROM table_1506950_4 WHERE rounds = \"66-67-70-67\"",
    "question_en": "What days were the rounds of 66-67-70-67 recorded?",
    "question_th": "66-67-70-67 บันทึกไว้วันไหนบ้าง?",
    "context": "CREATE TABLE table_1506950_4 (date VARCHAR, rounds VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_1506950_4 WHERE tournament = \"The Open Championship\"",
    "question_en": "What country hosts the tournament the open championship?",
    "question_th": "ประเทศใดเป็นเจ้าภาพการแข่งขันชิงแชมป์แบบเปิด?",
    "context": "CREATE TABLE table_1506950_4 (country VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_1506950_4 WHERE finish = \"2nd\"",
    "question_en": "What players finished 2nd?",
    "question_th": "ผู้เล่นคนไหนจบอันดับที่ 2?",
    "context": "CREATE TABLE table_1506950_4 (player VARCHAR, finish VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_1507806_1 WHERE winning_score = \"3 & 2\"",
    "question_en": "WHAT YEAR WAS IT WHEN THE SCORE WAS 3 & 2?",
    "question_th": "คะแนนเป็น 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_en": "HOW MANY YEARS WAS IT FOR THE SCORE (76-73-79-72=300)?",
    "question_th": "คะแนนนี้ใช้เวลากี่ปี (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_en": "WHAT WAS THE YEAR WHEN THE RUNNER-UP WAS WILLIAM MEHLHORN?",
    "question_th": "ปีที่รองชนะเลิศคือ 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_en": "WHAT YEAR DID MIKE BRADY GET RUNNER-UP?",
    "question_th": "MIKE BRADY ได้รับรางวัลรองชนะเลิศในปีใด",
    "context": "CREATE TABLE table_1507806_1 (year INTEGER, runner_up VARCHAR)"
  },
  {
    "answer": "SELECT winning_score FROM table_1507806_1 WHERE year = 1922",
    "question_en": "WHAT WAS THE WINNING SCORE IN YEAR 1922?",
    "question_th": "คะแนนที่ชนะในปี 1922 คืออะไร?",
    "context": "CREATE TABLE table_1507806_1 (winning_score VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT cancelable FROM table_1507852_5 WHERE bubbles = \"Yes\"",
    "question_en": "what's the cancelable with bubbles being yes",
    "question_th": "สิ่งที่ยกเลิกได้คือฟองคือใช่",
    "context": "CREATE TABLE table_1507852_5 (cancelable VARCHAR, bubbles VARCHAR)"
  },
  {
    "answer": "SELECT bubbles FROM table_1507852_5 WHERE attribute = \"onpopuphidden\"",
    "question_en": "what's the bubbles with attribute being onpopuphidden",
    "question_th": "ฟองอากาศที่มีแอตทริบิวต์อยู่คืออะไร",
    "context": "CREATE TABLE table_1507852_5 (bubbles VARCHAR, attribute VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(bubbles) FROM table_1507852_5 WHERE category = \"Input\"",
    "question_en": " how many bubbles with category being input",
    "question_th": " มีกี่ฟองที่มีการป้อนหมวดหมู่",
    "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_en": "what's the type with description being fires when the overflow state changes.",
    "question_th": "ประเภทใดที่มีคำอธิบายที่เริ่มทำงานเมื่อสถานะโอเวอร์โฟลว์เปลี่ยนแปลง",
    "context": "CREATE TABLE table_1507852_5 (type VARCHAR, description VARCHAR)"
  },
  {
    "answer": "SELECT attribute FROM table_1507852_5 WHERE cancelable = \"Yes\"",
    "question_en": "what's the attribute with cancelable being yes",
    "question_th": "คุณลักษณะที่ยกเลิกได้คือใช่",
    "context": "CREATE TABLE table_1507852_5 (attribute VARCHAR, cancelable VARCHAR)"
  },
  {
    "answer": "SELECT original_air_date FROM table_15185133_1 WHERE production_code = 318",
    "question_en": "What is the original air date for the episode with a production code of 318?",
    "question_th": "ตอนแรกออกอากาศวันไหนครับ รหัสการผลิต 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_en": "What season has an episode written by john o'bryan and directed by ethan spaulding?",
    "question_th": "ซีซั่นใดมีตอนที่เขียนโดย john o'bryan และกำกับโดย 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_en": "how many segments involve wood boring augers",
    "question_th": "มีกี่ส่วนที่เกี่ยวข้องกับสว่านเจาะไม้",
    "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_en": "for the shows featuring beet sugar, what was on before that",
    "question_th": "สำหรับการแสดงที่มีบีทชูการ์ซึ่งแสดงอยู่ก่อนหน้านั้น",
    "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_en": "are rolled wafers in many episodes",
    "question_th": "เป็นเวเฟอร์แบบม้วนหลายตอน",
    "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_en": "Name the best actor for uncle boonmee who can recall his past lives",
    "question_th": "ตั้งชื่อนักแสดงที่ดีที่สุดให้กับลุงบุญมีที่จำชาติที่แล้วได้",
    "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_en": "Name the best director for mother",
    "question_th": "ตั้งชื่อผู้กำกับที่ดีที่สุดสำหรับคุณแม่",
    "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_en": "Name the year for sammo hung for ip man 2",
    "question_th": "ตั้งชื่อปีสำหรับ sammo hung สำหรับ 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_en": "Name the best supporting actress for sun honglei for mongol",
    "question_th": "ตั้งชื่อนักแสดงสมทบหญิงยอดเยี่ยมจาก 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_en": "How many years was Jiyai Shin the champion?",
    "question_th": "จิไย ชิน เป็นแชมป์กี่ปี?",
    "context": "CREATE TABLE table_1529260_2 (year VARCHAR, champion VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_1529260_2 WHERE margin_of_victory = \"6 strokes\"",
    "question_en": "What countries have a margin of victory at 6 strokes?",
    "question_th": "ประเทศใดมีชัยชนะอยู่ที่ 6 จังหวะ?",
    "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_en": "How many dollars is the purse when the margin of victory is 8 strokes?",
    "question_th": "กระเป๋าเงินมีกี่ดอลลาร์เมื่อระยะขอบของชัยชนะคือ 8 สโตรค?",
    "context": "CREATE TABLE table_1529260_2 (purse___us VARCHAR, margin_of_victory VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_1529260_2",
    "question_en": "What is the lowest year listed?",
    "question_th": "ปีต่ำสุดที่ระบุไว้คืออะไร?",
    "context": "CREATE TABLE table_1529260_2 (year INTEGER)"
  },
  {
    "answer": "SELECT dates FROM table_1529260_2 WHERE score = 66 - 72 - 64 - 65 = 267",
    "question_en": "At what date is the score 66-72-64-65=267?",
    "question_th": "คะแนน 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_en": "How many teams are #2 on the list?",
    "question_th": "มีกี่ทีมที่อยู่ในอันดับที่ 2 ในรายการ?",
    "context": "CREATE TABLE table_15313204_1 (records VARCHAR, _number VARCHAR)"
  },
  {
    "answer": "SELECT records FROM table_15313204_1 WHERE pct = \".464\"",
    "question_en": "What are the record(s) for the team with a winning percentage of .464?",
    "question_th": "อะไรคือสถิติของทีมที่มีเปอร์เซ็นต์การชนะที่ .464?",
    "context": "CREATE TABLE table_15313204_1 (records VARCHAR, pct VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_15418319_1 WHERE team = \"Paulistano\"",
    "question_en": "Name the points for paulistano",
    "question_th": "ตั้งชื่อคะแนนให้เปาลิสตาโน",
    "context": "CREATE TABLE table_15418319_1 (points VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(title) FROM table_15472061_1 WHERE production_code = \"3020\"",
    "question_en": "Name the total number of titles for 3020 production code",
    "question_th": "ตั้งชื่อจำนวนชื่อทั้งหมดสำหรับรหัสการผลิตปี 3020",
    "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_en": "Name the number in the series for when the viewers is 7.78",
    "question_th": "ตั้งชื่อหมายเลขในซีรีส์ว่าคนดูคือ 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_en": "Name the number of original air date for when the number in season is 10/11",
    "question_th": "ตั้งชื่อหมายเลขวันที่ออกอากาศเดิมเมื่อหมายเลขในซีซันคือ 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_en": "Which race number in the Indy F3 Challenge circuit had John Martin in pole position?",
    "question_th": "หมายเลขการแข่งขันใดในสนาม Indy F3 Challenge ที่ John Martin อยู่ในตำแหน่งโพลโพซิชั่น?",
    "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_en": "What is the highest race number in the Phillip Island circuit with James Winslow as the winning driver and pole position?",
    "question_th": "หมายเลขการแข่งขันสูงสุดในสนาม Phillip Island Circuit โดยมี James Winslow เป็นนักแข่งที่ชนะและตำแหน่งโพลคืออะไร?",
    "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_en": "Name the least amount of tackles for danny clark",
    "question_th": "บอกชื่อการสกัดกั้นน้อยที่สุดสำหรับแดนนี่ คลาร์ก",
    "context": "CREATE TABLE table_15581223_8 (tackles INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(tackles) FROM table_15581223_8 WHERE sacks = \"3.5\"",
    "question_en": "Name the most tackles for 3.5 sacks",
    "question_th": "ตั้งชื่อแท็คเกิ้ลมากที่สุดได้ 3.5 กระสอบ",
    "context": "CREATE TABLE table_15581223_8 (tackles INTEGER, sacks VARCHAR)"
  },
  {
    "answer": "SELECT MIN(fum_rec) AS TD FROM table_15581223_8",
    "question_en": "Name the least fum rec td",
    "question_th": "ตั้งชื่อ 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_en": "Name the least int yards when sacks is 11.5",
    "question_th": "ตั้งชื่อ int หลาน้อยที่สุดเมื่อกระสอบคือ 11.5",
    "context": "CREATE TABLE table_15581223_8 (int INTEGER, sacks VARCHAR)"
  },
  {
    "answer": "SELECT MIN(int) AS yards FROM table_15581223_8",
    "question_en": "Name the least amount of int yards",
    "question_th": "ตั้งชื่อจำนวน int หลาน้อยที่สุด",
    "context": "CREATE TABLE table_15581223_8 (int INTEGER)"
  },
  {
    "answer": "SELECT MAX(no) FROM table_15621965_8 WHERE player = \"Al Harrington\"",
    "question_en": "What jersey number did Al Harrington wear",
    "question_th": "อัล แฮร์ริงตันสวมเสื้อหมายเลขอะไร",
    "context": "CREATE TABLE table_15621965_8 (no INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT school_club_team FROM table_15621965_8 WHERE player = \"Dwight Howard\"",
    "question_en": "What school did Dwight Howard play for",
    "question_th": "Dwight Howard เล่นให้กับโรงเรียนใด",
    "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_en": "How many players belong to Notre Dame?",
    "question_th": "มีผู้เล่นกี่คนที่อยู่ใน 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_en": "What number identifies Chris Gatling?",
    "question_th": "ตัวเลขใดที่ระบุถึง 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_en": "What is the extortion and theft rates where the United Nations Observer Mission Uganda-Rwanda is active?",
    "question_th": "อัตราการขู่กรรโชกและการโจรกรรมที่คณะผู้สังเกตการณ์แห่งสหประชาชาติยูกันดา-รวันดาดำเนินการอยู่คือเท่าใด",
    "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_en": "What is the sexual abuse rate where the conflict is the Burundi Civil War?",
    "question_th": "อัตราการล่วงละเมิดทางเพศซึ่งความขัดแย้งคือสงครามกลางเมืองบุรุนดีเป็นเท่าใด",
    "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_en": "What is the sexual abuse rate where the conflict is the Burundi Civil War?",
    "question_th": "อัตราการล่วงละเมิดทางเพศซึ่งความขัดแย้งคือสงครามกลางเมืองบุรุนดีเป็นเท่าใด",
    "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_en": "What is the sexual abuse rate where the conflict is the Second Sudanese Civil War?",
    "question_th": "อัตราการล่วงละเมิดทางเพศซึ่งความขัดแย้งคือสงครามกลางเมืองซูดานครั้งที่สองเป็นเท่าใด",
    "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_en": "When was the Kymberly Paige the Centerfold?",
    "question_th": "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_en": "When was Kalin Olson listed as  the centerfold model?",
    "question_th": "Kalin Olson ถูกระบุให้เป็นโมเดลพับกลางเมื่อใด",
    "context": "CREATE TABLE table_1566850_8 (date VARCHAR, centerfold_model VARCHAR)"
  },
  {
    "answer": "SELECT cover_model FROM table_1566850_8 WHERE date = \"3-97\"",
    "question_en": "What is the name of the cover model on 3-97?",
    "question_th": "ปกรุ่น 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_en": "Who was the centerfold model when a pictorial was done on marilyn monroe?",
    "question_th": "ใครคือนางแบบพับตรงกลางเมื่อถ่ายภาพมาริลิน มอนโร?",
    "context": "CREATE TABLE table_1566850_8 (centerfold_model VARCHAR, pictorials VARCHAR)"
  },
  {
    "answer": "SELECT interview_subject FROM table_1566850_8 WHERE date = \"1-97\"",
    "question_en": "Who was the interview subject on the date 1-97?",
    "question_th": "หัวข้อสัมภาษณ์ในวันที่ 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_en": "Who was the cover model when the issue's pictorials was pmoy - sara jean underwood?",
    "question_th": "ใครคือนางแบบหน้าปกเมื่อรูปภาพของประเด็นคือ 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_en": "List the pictorals from issues when lindsey roeper was the cover model.",
    "question_th": "แสดงรายการรูปภาพจากประเด็นที่ lindsey roeper เป็นนางแบบหน้าปก",
    "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_en": "Who was the centerfold model when the issue's pictorial was kimberly bell , bunnies of the new playboy club?",
    "question_th": "ใครคือนางแบบหน้ากลางเมื่อรูปภาพของประเด็นคือ คิมเบอร์ลี่ เบลล์ กระต่ายของสโมสรเพลย์บอยแห่งใหม่?",
    "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_en": "Who was the centerfold model when the issue's pictorial was amanda beard, reby sky , girls of montauk ?",
    "question_th": "ใครคือนางแบบหน้ากลางเมื่อภาพของประเด็นคือ อแมนดา เครา, รีบี สกาย, สาวๆ แห่งมอนทอก ?",
    "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_en": "Who answered the 20 questions on 10-07?",
    "question_th": "ใครตอบคำถาม 20 ข้อในวันที่ 10-07?",
    "context": "CREATE TABLE table_1566852_8 (date VARCHAR)"
  },
  {
    "answer": "SELECT wickets FROM table_15700367_2 WHERE overs_bowled = \"15\"",
    "question_en": "Name the wickets for overs bowled being 15",
    "question_th": "ตั้งชื่อประตูสำหรับโอเวอร์โบว์ลเป็น 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_en": "Name the total number of wickets being yuvraj singh",
    "question_th": "ตั้งชื่อจำนวนประตูทั้งหมดว่าเป็น 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_en": "Name the name for when overs bowled is 31.2",
    "question_th": "ตั้งชื่อเมื่อโอเวอร์โบว์ลิ่งคือ 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_en": "Name the runs conceded where overs bowled is 53",
    "question_th": "ตั้งชื่อการวิ่งที่ยอมรับโดยที่โอเวอร์โบว์ลิ่งคือ 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_en": "Name the maaidens where overs bowled is 13",
    "question_th": "ตั้งชื่อหญิงสาวที่โอเวอร์โบว์ลิ่งคือ 13",
    "context": "CREATE TABLE table_15700367_2 (maidens VARCHAR, overs_bowled VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_15736385_1 WHERE location = \"Nazareth\"",
    "question_en": "On what date was the race at Nazareth?",
    "question_th": "การแข่งขันที่นาซาเร็ธจัดขึ้นวันไหน?",
    "context": "CREATE TABLE table_15736385_1 (date VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_15736385_1 WHERE driver = \"Rick Mears\"",
    "question_en": "At which location did Rick Mears drive?",
    "question_th": "Rick Mears ขับรถไปที่สถานที่ใด",
    "context": "CREATE TABLE table_15736385_1 (location VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_15736385_1 WHERE date = \"October 19\"",
    "question_en": "Which team raced on October 19?",
    "question_th": "ทีมไหนแข่งวันที่ 19 ตุลาคม?",
    "context": "CREATE TABLE table_15736385_1 (team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT engine FROM table_15736385_1 WHERE team = \"Galles Racing\"",
    "question_en": "What engine does Galles Racing use?",
    "question_th": "Galles Racing ใช้เครื่องยนต์อะไร?",
    "context": "CREATE TABLE table_15736385_1 (engine VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(game) FROM table_15780049_5 WHERE date = \"December 19\"",
    "question_en": "What game happened on December 19?",
    "question_th": "เกมอะไรเกิดขึ้นในวันที่ 19 ธันวาคม?",
    "context": "CREATE TABLE table_15780049_5 (game INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_15780049_5 WHERE team = \"Washington\"",
    "question_en": "Who scored the most points against Washington?",
    "question_th": "ใครทำคะแนนกับวอชิงตันได้มากที่สุด?",
    "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_en": "Which municipalities located in the county of Finnmark have populations bigger than 6187.0?",
    "question_th": "เทศบาลใดที่ตั้งอยู่ในเขต Finnmark มีประชากรมากกว่า 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_en": "In which county is the city/town of Halden located?",
    "question_th": "เมือง/เมืองของ Halden ตั้งอยู่ในเขตใด?",
    "context": "CREATE TABLE table_157826_1 (county VARCHAR, city_town VARCHAR)"
  },
  {
    "answer": "SELECT municipality FROM table_157826_1 WHERE population = 24421",
    "question_en": "Which municipality has a population of 24421?",
    "question_th": "เทศบาลใดมีประชากร 24421 คน",
    "context": "CREATE TABLE table_157826_1 (municipality VARCHAR, population VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(population) FROM table_157826_1 WHERE city_town = \"Arendal\"",
    "question_en": "What is the total population in the city/town of Arendal?",
    "question_th": "จำนวนประชากรทั้งหมดในเมือง/เมือง Arendal คือเท่าใด",
    "context": "CREATE TABLE table_157826_1 (population VARCHAR, city_town VARCHAR)"
  },
  {
    "answer": "SELECT city_town FROM table_157826_1 WHERE municipality = \"Horten\"",
    "question_en": "What are the cities/towns located in the municipality of Horten?",
    "question_th": "เมืองใดบ้างที่ตั้งอยู่ในเขตเทศบาล Horten?",
    "context": "CREATE TABLE table_157826_1 (city_town VARCHAR, municipality VARCHAR)"
  },
  {
    "answer": "SELECT city_town FROM table_157826_1 WHERE municipality = \"Moss\"",
    "question_en": "What are the cities/towns located in the municipality of Moss?",
    "question_th": "เมืองใดบ้างที่ตั้งอยู่ในเขตเทศบาลเมืองมอสส์",
    "context": "CREATE TABLE table_157826_1 (city_town VARCHAR, municipality VARCHAR)"
  },
  {
    "answer": "SELECT song_choice FROM table_15796054_3 WHERE week__number = \"Hollywood\"",
    "question_en": "Name the song choice when week number is hollywood",
    "question_th": "ตั้งชื่อตัวเลือกเพลงเมื่อหมายเลขสัปดาห์เป็นฮอลลีวูด",
    "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_en": "Name the week number for andrew lloyd webber",
    "question_th": "ตั้งชื่อหมายเลขสัปดาห์ของแอนดรูว์ ลอยด์ เวบเบอร์",
    "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_en": "Name the order number for the beatles and result is safe",
    "question_th": "ตั้งชื่อหมายเลขลำดับของเดอะบีเทิลส์แล้วผลลัพธ์ก็ปลอดภัย",
    "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_en": "What is the production code for the episode written by Drew Z. Greenberg?",
    "question_th": "รหัสการผลิตสำหรับตอนที่เขียนโดย 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_en": "Who directed episode number 3?",
    "question_th": "ใครกำกับตอนที่ 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_en": "Which Season originally aired on September 17, 1955",
    "question_th": "ซีซั่นใดออกอากาศครั้งแรกเมื่อวันที่ 17 กันยายน พ.ศ. 2498",
    "context": "CREATE TABLE table_15824796_4 (season__number VARCHAR, original_air_date VARCHAR)"
  },
  {
    "answer": "SELECT MIN(series__number) FROM table_15824796_4",
    "question_en": "What is the lowest number of series?",
    "question_th": "จำนวนซีรีย์ต่ำสุดคือเท่าไร?",
    "context": "CREATE TABLE table_15824796_4 (series__number INTEGER)"
  },
  {
    "answer": "SELECT original_air_date FROM table_15824796_4 WHERE season__number = 9",
    "question_en": "When did season 9 originally air?",
    "question_th": "ซีซั่น 9 ออกอากาศครั้งแรกเมื่อไหร่?",
    "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_en": "On what date was the attendance at Continental Airlines Arena 13,755?",
    "question_th": "งานคอนติเนนตัล แอร์ไลน์ อารีน่า มีผู้เข้าร่วมงานวันไหน 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° > 856.0",
    "question_en": "How many television service are in italian and n°is greater than 856.0?",
    "question_th": "มีโทรทัศน์กี่บริการในภาษาอิตาลี และ n° มากกว่า 856.0",
    "context": "CREATE TABLE table_15887683_15 (television_service VARCHAR, language VARCHAR, n° VARCHAR)"
  },
  {
    "answer": "SELECT television_service FROM table_15887683_15 WHERE country = \"Italy\" AND language = \"English\"",
    "question_en": "What television service is in italy and is in english?",
    "question_th": "บริการโทรทัศน์อะไรในอิตาลีและเป็นภาษาอังกฤษ?",
    "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° > 854.0",
    "question_en": "what television service are in the united kingdom and n° is greater than 854.0?",
    "question_th": "บริการโทรทัศน์ใดบ้างในสหราชอาณาจักร และ n° มากกว่า 854.0",
    "context": "CREATE TABLE table_15887683_15 (television_service VARCHAR, country VARCHAR, n° VARCHAR)"
  },
  {
    "answer": "SELECT dar FROM table_15887683_15 WHERE country = \"Germany\"",
    "question_en": "How many dar are in germany?",
    "question_th": "กี่ดาร์ในเยอรมนี?",
    "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_en": "Name the musical guest where guest host is elle macpherson",
    "question_th": "ตั้งชื่อแขกรับเชิญทางดนตรีโดยพิธีกรรับเชิญคือ เอล แม็คเฟอร์สัน",
    "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_en": "Name the total number of episodes for coat of cash wearing celebrity is matt di angelo",
    "question_th": "บอกจำนวนตอนทั้งหมดของผู้มีชื่อเสียงที่สวมโค้ตออฟแคชคือ 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_en": "What was the total opponents points for the game were the Oilers scored 21?",
    "question_th": "คะแนนรวมของฝ่ายตรงข้ามในเกมนี้คือเท่าไรที่ Oilers ได้ 21 คะแนน?",
    "context": "CREATE TABLE table_15986020_3 (opponents VARCHAR, oilers_points VARCHAR)"
  },
  {
    "answer": "SELECT second_place FROM table_15988037_4 WHERE winner = \"Rafał Mroczek & Aneta Piotrowska\"",
    "question_en": "Who got second place when the winners were rafał mroczek & aneta piotrowska?",
    "question_th": "ใครได้อันดับที่สองเมื่อผู้ชนะคือ rafał mroczek และ aneta piotrowska?",
    "context": "CREATE TABLE table_15988037_4 (second_place VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT province FROM table_160510_1 WHERE hanja = \"朔州\"",
    "question_en": "The hanja 朔州 is for what province?",
    "question_th": "ฮันจา 朔州 ใช้กับจังหวัดอะไร?",
    "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 = \"尙州\"",
    "question_en": "What is the modern equivalent of the former kingdom \"silla\" with the hanja 尙州?",
    "question_th": "อะไรคือความทันสมัยที่เทียบเท่ากับอาณาจักรเดิม \"ซิลลา\" กับฮันจา 尙州?",
    "context": "CREATE TABLE table_160510_1 (modern_equivalent VARCHAR, former_kingdom VARCHAR, hanja VARCHAR)"
  },
  {
    "answer": "SELECT capital FROM table_160510_1 WHERE hanja = \"尙州\"",
    "question_en": "The hanja 尙州 is for what capital?",
    "question_th": "ฮันจา 尙州 มีไว้เพื่อเมืองหลวงอะไร?",
    "context": "CREATE TABLE table_160510_1 (capital VARCHAR, hanja VARCHAR)"
  },
  {
    "answer": "SELECT hangul FROM table_160510_1 WHERE hanja = \"良州\"",
    "question_en": "What is the hangul symbol for the hanja 良州?",
    "question_th": "สัญลักษณ์อังกูลของฮันจา 良州 คืออะไร?",
    "context": "CREATE TABLE table_160510_1 (hangul VARCHAR, hanja VARCHAR)"
  },
  {
    "answer": "SELECT hanja FROM table_160510_1 WHERE province = \"Sangju\"",
    "question_en": "What is the hanja for the province of \"sangju\"?",
    "question_th": "ฮันจาของจังหวัด \"ซังจู\" คืออะไร?",
    "context": "CREATE TABLE table_160510_1 (hanja VARCHAR, province VARCHAR)"
  },
  {
    "answer": "SELECT modern_equivalent FROM table_160510_1 WHERE province = \"Hanju\"",
    "question_en": "What are the modern equivalents for the province of \"hanju\"?",
    "question_th": "จังหวัด \"ฮันจู\" มีความเทียบเท่าสมัยใหม่อย่างไร?",
    "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_en": "How many passengers (in millions) flew from Seoul in 2012?",
    "question_th": "ในปี 2555 มีผู้โดยสารกี่คน (เป็นล้าน) ที่บินจากกรุงโซล",
    "context": "CREATE TABLE table_16066063_1 (city_1 VARCHAR)"
  },
  {
    "answer": "SELECT 2012 AS _passengers__in_millions_ FROM table_16066063_1 WHERE distance = \"1075km\"",
    "question_en": "How many passengers (in millions) flew through along the route that is 1075km long in 2012?",
    "question_th": "มีผู้โดยสารกี่คน (เป็นล้าน) ที่บินผ่านเส้นทางระยะทาง 1,075 กม. ในปี 2555",
    "context": "CREATE TABLE table_16066063_1 (distance VARCHAR)"
  },
  {
    "answer": "SELECT city_1 FROM table_16066063_1 WHERE city_2 = \"Okinawa\"",
    "question_en": "Which city is listed first when Okinawa is listed as the second city?",
    "question_th": "เมืองใดถูกระบุเป็นอันดับแรกเมื่อโอกินาวาถูกระบุเป็นเมืองที่สอง",
    "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_en": "What is the report for races where Will Power had both pole position and fastest lap?",
    "question_th": "รายงานการแข่งขันที่ Will Power มีทั้งตำแหน่งโพลโพซิชั่นและรอบที่เร็วที่สุดเป็นอย่างไร?",
    "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_en": "Who was on the pole at Chicagoland?",
    "question_th": "ใครอยู่บนเสาที่ชิคาโกแลนด์?",
    "context": "CREATE TABLE table_16099880_5 (pole_position VARCHAR, race VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(winning_driver) FROM table_16099880_5 WHERE race = \"Chicagoland\"",
    "question_en": "In what position did the winning driver finish at Chicagoland?",
    "question_th": "นักแข่งที่ชนะจบการแข่งขันที่ชิคาโกแลนด์ในตำแหน่งใด",
    "context": "CREATE TABLE table_16099880_5 (winning_driver VARCHAR, race VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(school) FROM table_16225511_2 WHERE percent = \"0.667\"",
    "question_en": "How many schools had the win loss ratio of 0.667? ",
    "question_th": " มีกี่โรงเรียนที่มีอัตราการแพ้ชนะที่ 0.667",
    "context": "CREATE TABLE table_16225511_2 (school VARCHAR, percent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(wins) FROM table_16225511_2 WHERE school = \"Baylor\"",
    "question_en": "How many wins did Baylor have? ",
    "question_th": " เบย์เลอร์ชนะไปกี่ครั้ง?",
    "context": "CREATE TABLE table_16225511_2 (wins VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT MAX(wins) FROM table_16225511_2 WHERE school = \"Texas\"",
    "question_en": "What's the largest amount of wins Texas has? ",
    "question_th": " เท็กซัสมีชัยชนะมากที่สุดคือเท่าไร?",
    "context": "CREATE TABLE table_16225511_2 (wins INTEGER, school VARCHAR)"
  },
  {
    "answer": "SELECT sanction FROM table_16275828_4 WHERE track_name = \"Fayette County Speedway\"",
    "question_en": "Who sanctioned the event at fayette county speedway?",
    "question_th": "ใครเป็นผู้อนุมัติการแข่งขันที่สนามแข่งรถ Fayette County?",
    "context": "CREATE TABLE table_16275828_4 (sanction VARCHAR, track_name VARCHAR)"
  },
  {
    "answer": "SELECT sanction FROM table_16275828_4 WHERE location = \"Lincoln, Illinois\"",
    "question_en": "Who sanctioned the event in lincoln, illinois?",
    "question_th": "ใครเป็นผู้อนุมัติงานนี้ในลินคอล์น รัฐอิลลินอยส์?",
    "context": "CREATE TABLE table_16275828_4 (sanction VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_16275828_4 WHERE track_name = \"Farmer City Speedway\"",
    "question_en": "What location is farmer city speedway?",
    "question_th": "สนามแข่งรถฟาร์เมอร์ซิตี้ อยู่ที่ไหน?",
    "context": "CREATE TABLE table_16275828_4 (location VARCHAR, track_name VARCHAR)"
  },
  {
    "answer": "SELECT program FROM table_16275828_4 WHERE track_name = \"Highland Speedway\"",
    "question_en": "What programs were held at highland speedway?",
    "question_th": "สนามไฮแลนด์ สปีดเวย์ มีรายการอะไรบ้าง?",
    "context": "CREATE TABLE table_16275828_4 (program VARCHAR, track_name VARCHAR)"
  },
  {
    "answer": "SELECT program FROM table_16275828_4 WHERE location = \"Charleston, Illinois\"",
    "question_en": "What programs were held in charleston, illinois?",
    "question_th": "มีโปรแกรมอะไรบ้างที่จัดขึ้นที่เมืองชาร์ลสตัน รัฐอิลลินอยส์",
    "context": "CREATE TABLE table_16275828_4 (program VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT round_eliminated FROM table_16295365_2 WHERE conf_record = \"12-6\"",
    "question_en": "Name the round eliminated where conference record is 12-6",
    "question_th": "ตั้งชื่อรอบที่ตกรอบโดยที่บันทึกการประชุมคือ 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_en": "Name the school where conference record is 12-6",
    "question_th": "ตั้งชื่อโรงเรียนที่มีบันทึกการประชุมคือ 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_en": "Name the conference record where seed is 3 and record is 24-9",
    "question_th": "ตั้งชื่อบันทึกการประชุมโดยที่เมล็ดคือ 3 และบันทึกคือ 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_en": "For teams in the Sun Belt conference, what is the conference record?",
    "question_th": "สำหรับทีมในการประชุม Sun Belt บันทึกการประชุมคืออะไร",
    "context": "CREATE TABLE table_16295365_1 (conf_record VARCHAR, conference VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_16295365_1 WHERE school = \"Oral Roberts\"",
    "question_en": "What was the overall record of Oral Roberts college?",
    "question_th": "ประวัติโดยรวมของวิทยาลัย Oral Roberts เป็นอย่างไรบ้าง",
    "context": "CREATE TABLE table_16295365_1 (record VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_16295365_1 WHERE conference = \"Patriot\"",
    "question_en": "Which qualifying schools were in the Patriot conference?",
    "question_th": "โรงเรียนใดที่มีคุณสมบัติเหมาะสมอยู่ในการประชุม Patriot",
    "context": "CREATE TABLE table_16295365_1 (school VARCHAR, conference VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_16295365_1 WHERE school = \"UMBC\"",
    "question_en": "What was the overall record of UMBC?",
    "question_th": "ประวัติโดยรวมของ UMBC เป็นอย่างไร?",
    "context": "CREATE TABLE table_16295365_1 (record VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT conference FROM table_16295365_1 WHERE school = \"Belmont\"",
    "question_en": "Which conference is Belmont in?",
    "question_th": "เบลมอนต์อยู่ในการประชุมใด",
    "context": "CREATE TABLE table_16295365_1 (conference VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_1634376_1 WHERE _number = \"K-223\"",
    "question_en": "What is the status of vessel number K-223?",
    "question_th": "สถานะของเรือหมายเลข K-223 คืออะไร?",
    "context": "CREATE TABLE table_1634376_1 (status VARCHAR, _number VARCHAR)"
  },
  {
    "answer": "SELECT third_place FROM table_16331144_1 WHERE season = \"Four\"",
    "question_en": "Who won third place in season four?",
    "question_th": "ใครชนะอันดับสามในฤดูกาลที่สี่?",
    "context": "CREATE TABLE table_16331144_1 (third_place VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT runner_up FROM table_16331144_1 WHERE season = \"Five\"",
    "question_en": "Who was the runner-up in season five?",
    "question_th": "ใครคือรองชนะเลิศในฤดูกาลที่ห้า?",
    "context": "CREATE TABLE table_16331144_1 (runner_up VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_16331144_1 WHERE winning_mentor = \"Ida Corr\"",
    "question_en": "Which season did Ida Corr win?",
    "question_th": "Ida Corr ชนะฤดูกาลใด",
    "context": "CREATE TABLE table_16331144_1 (season VARCHAR, winning_mentor VARCHAR)"
  },
  {
    "answer": "SELECT winning_mentor FROM table_16331144_1 WHERE season = \"Two\"",
    "question_en": "Who was the winning mentor in season two?",
    "question_th": "ใครคือที่ปรึกษาที่ชนะในฤดูกาลที่สอง?",
    "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_en": "Who was the runner-up when Mohamed Ali got third?",
    "question_th": "ใครคือรองแชมป์เมื่อโมฮาเหม็ด อาลี ได้ที่ 3?",
    "context": "CREATE TABLE table_16331144_1 (runner_up VARCHAR, third_place VARCHAR)"
  },
  {
    "answer": "SELECT affiliation FROM table_16381914_1 WHERE location = \"Erie, Pennsylvania\"",
    "question_en": "What affiliation is Erie, Pennsylvania?",
    "question_th": "อีรี เพนซิลเวเนีย สังกัดอะไร",
    "context": "CREATE TABLE table_16381914_1 (affiliation VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT enrollment FROM table_16381914_1 WHERE founded = 1846",
    "question_en": "What was the enrollment of the school founded in 1846?",
    "question_th": "โรงเรียนที่ก่อตั้งในปี พ.ศ. 2389 มีการลงทะเบียนเรียนเป็นอย่างไร?",
    "context": "CREATE TABLE table_16381914_1 (enrollment VARCHAR, founded VARCHAR)"
  },
  {
    "answer": "SELECT affiliation FROM table_16381914_1 WHERE location = \"Canton, New York\"",
    "question_en": "What kind of school is Canton, New York?",
    "question_th": "แคนตัน รัฐนิวยอร์ก เป็นโรงเรียนประเภทไหน?",
    "context": "CREATE TABLE table_16381914_1 (affiliation VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT ground FROM table_16388047_1 WHERE home_team = \"Essendon\"",
    "question_en": "Name the ground for essendon",
    "question_th": "ตั้งชื่อพื้นฐานสำหรับ 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_en": "Name the total number of grounds for essendon",
    "question_th": "ตั้งชื่อจำนวนเหตุผลทั้งหมดสำหรับ 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_en": "Name the time for saturday 4 march 1995",
    "question_th": "ตั้งชื่อเวลาวันเสาร์ที่ 4 มีนาคม 2538",
    "context": "CREATE TABLE table_16388047_1 (time VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_16388478_3 WHERE away_team = \"Fremantle\"",
    "question_en": "On what date did the away team Fremantle play?",
    "question_th": "ทีมเยือน ฟรีแมนเทิล ลงเล่นวันไหน?",
    "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_en": "What score did the away team receive against home team Port Adelaide?",
    "question_th": "ทีมเยือนได้คะแนนเท่าไหร่กับทีมเจ้าบ้าน พอร์ต อเดเลด?",
    "context": "CREATE TABLE table_16388478_3 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT h FROM table WHERE c__max_ = 99",
    "question_en": "Name the h when c max is 99",
    "question_th": "ตั้งชื่อ h เมื่อ c max คือ 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_en": "when was the school/club team for grizzles was maryland",
    "question_th": "เมื่อใดที่ทีมโรงเรียน/สโมสรสำหรับกริซเซิลส์อยู่ที่แมริแลนด์",
    "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_en": "Which position did kevin edwards play for",
    "question_th": "เควิน เอ็ดเวิร์ดส์เล่นตำแหน่งไหน",
    "context": "CREATE TABLE table_16494599_5 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT years_for_grizzlies FROM table_16494599_5 WHERE no = 32",
    "question_en": "when did no. 32 play for grizzles",
    "question_th": "ไม่ทำเมื่อไหร่ 32 เล่นเพื่อกริซเซิลส์",
    "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_en": "what's the highest player number from the list from 2000-2001",
    "question_th": "หมายเลขผู้เล่นสูงสุดจากรายชื่อระหว่างปี 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_en": "Which school/club team did blue edwards play for",
    "question_th": "ทีมโรงเรียน/สโมสรใดที่บลูเอ็ดเวิร์ดส์เล่นให้",
    "context": "CREATE TABLE table_16494599_5 (school_club_team VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_16575609_3 WHERE player = \"Justin Shaw\"",
    "question_en": "What position is Justin Shaw in?",
    "question_th": "จัสติน ชอว์ อยู่ในตำแหน่งไหน?",
    "context": "CREATE TABLE table_16575609_3 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT pick__number FROM table_16575609_3 WHERE college = \"Western Illinois\"",
    "question_en": "What pick # did Western Illinois have?",
    "question_th": "Western Illinois มีตัวเลือกอะไร",
    "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_en": "How many cfl teams had pick # 21?",
    "question_th": "มีทีม cfl กี่ทีมที่เลือก # 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_en": "How many pick numbers did Michael Giffin have?",
    "question_th": "Michael Giffin มีหมายเลขเลือกกี่หมายเลข?",
    "context": "CREATE TABLE table_16575609_3 (pick__number VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_16575609_3 WHERE player = \"Jean-Nicolas Carriere\"",
    "question_en": "What college does Jean-Nicolas Carriere play for?",
    "question_th": "Jean-Nicolas Carriere เล่นให้กับวิทยาลัยใด",
    "context": "CREATE TABLE table_16575609_3 (college VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_16729457_18 WHERE equipment = \"KTM-VMC\"",
    "question_en": "What are the points for ktm-vmc equipment? ",
    "question_th": " อุปกรณ์ ktm-vmc มีคะแนนอะไรบ้าง?",
    "context": "CREATE TABLE table_16729457_18 (points VARCHAR, equipment VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_1672976_7 WHERE big_ten_team = \"Illinois\"",
    "question_en": "Name the location for illinois",
    "question_th": "ตั้งชื่อสถานที่สำหรับรัฐอิลลินอยส์",
    "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_en": "what is the maximum lead margin on august 5, 2008?",
    "question_th": "อัตรากำไรขั้นต้นสูงสุดในวันที่ 5 สิงหาคม 2551 คือเท่าใด",
    "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_en": "what is the percentage for john kerry and dates administered is april 22, 2008?",
    "question_th": "เปอร์เซ็นต์ของ john kerry และวันที่บริหารคือ 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_en": "What was the diameter of the feature found in 1997?",
    "question_th": "เส้นผ่านศูนย์กลางของคุณลักษณะที่พบในปี 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_en": "At a latitude of 67.5n, what is the diameter?",
    "question_th": "ที่ละติจูด 67.5n มีเส้นผ่านศูนย์กลางเท่าไร?",
    "context": "CREATE TABLE table_16799784_3 (diameter__km_ VARCHAR, latitude VARCHAR)"
  },
  {
    "answer": "SELECT latitude FROM table_16799784_3 WHERE name = \"Vaidilute Rupes\"",
    "question_en": "What is the latitude of vaidilute rupes?",
    "question_th": "ละติจูดของรูเป vaidilute คืออะไร?",
    "context": "CREATE TABLE table_16799784_3 (latitude VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT name AS origin FROM table_16799784_3 WHERE longitude = \"71.1E\"",
    "question_en": "At a latitude of 71.1e, what is the feature's name origin?",
    "question_th": "ที่ละติจูด 71.1e ที่มาของชื่อสถานที่นี้คืออะไร",
    "context": "CREATE TABLE table_16799784_3 (name VARCHAR, longitude VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(diameter__km_) FROM table_16799784_3 WHERE longitude = \"109.9E\"",
    "question_en": "At a longitude of 109.9e, how many features were found?",
    "question_th": "ที่ลองจิจูด 109.9e พบกี่จุด?",
    "context": "CREATE TABLE table_16799784_3 (diameter__km_ VARCHAR, longitude VARCHAR)"
  },
  {
    "answer": "SELECT latitude FROM table_16799784_3 WHERE longitude = \"321.9E\"",
    "question_en": "At a longitude of 321.9e, what is the latitude of the features found?",
    "question_th": "ที่ลองจิจูด 321.9e ละติจูดของจุดต่างๆ ที่พบคือเท่าใด",
    "context": "CREATE TABLE table_16799784_3 (latitude VARCHAR, longitude VARCHAR)"
  },
  {
    "answer": "SELECT MAX(year_named) FROM table_16799784_8 WHERE latitude = \"33.3S\"",
    "question_en": "In what year was the feature at a 33.3S latitude named? ",
    "question_th": " คุณลักษณะที่ละติจูด 33.3S ได้รับการตั้งชื่อในปีใด",
    "context": "CREATE TABLE table_16799784_8 (year_named INTEGER, latitude VARCHAR)"
  },
  {
    "answer": "SELECT diameter__km_ FROM table_16799784_8 WHERE name = \"Colette Patera\"",
    "question_en": "What is the diameter in km of the feature named Colette Patera? ",
    "question_th": " จุดที่มีชื่อว่า 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_en": "What is the longitude of the feature named Razia Patera? ",
    "question_th": " ลองจิจูดของสถานที่ชื่อ 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_en": "What is the origin of the name of Keller Patera? ",
    "question_th": " ที่มาของชื่อ Keller Patera คืออะไร?",
    "context": "CREATE TABLE table_16799784_8 (name VARCHAR)"
  },
  {
    "answer": "SELECT diameter__km_ FROM table_16799784_8 WHERE longitude = \"40.2E\"",
    "question_en": "What is  the diameter in km of the feature with a longitude of 40.2E? ",
    "question_th": " จุดสนใจที่มีเส้นผ่านศูนย์กลาง 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_en": "what's the name origin of feature of diameter (km) 2,155.0",
    "question_th": "ชื่ออะไร ที่มาของคุณลักษณะ เส้นผ่านศูนย์กลาง (กม.) 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_en": "what is the diameter (km) of the feature of latitude 23.0s",
    "question_th": "เส้นผ่านศูนย์กลาง (กม.) ของคุณลักษณะของละติจูด 23.0 คือเท่าใด",
    "context": "CREATE TABLE table_16799784_7 (diameter__km_ VARCHAR, latitude VARCHAR)"
  },
  {
    "answer": "SELECT latitude FROM table_16799784_7 WHERE longitude = \"80.0E\"",
    "question_en": "what is the latitude of the feature of longitude 80.0e",
    "question_th": "ละติจูดของคุณลักษณะลองจิจูด 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_en": "what is the diameter (km) of feature of latitude 40.5s",
    "question_th": "เส้นผ่าศูนย์กลาง (กม.) ของจุดสนใจของละติจูด 40.5 คือเท่าใด",
    "context": "CREATE TABLE table_16799784_7 (diameter__km_ VARCHAR, latitude VARCHAR)"
  },
  {
    "answer": "SELECT diameter__km_ FROM table_16799784_7 WHERE longitude = \"170.1E\"",
    "question_en": "what is the diameter (km) of longitude 170.1e",
    "question_th": "เส้นผ่านศูนย์กลาง (กม.) ของลองจิจูด 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_en": "What is the market value of a company in billions that has 172.7 billion in sales? ",
    "question_th": " มูลค่าตลาดของบริษัทในพันล้านซึ่งมียอดขาย 172.7 พันล้านเป็นเท่าใด",
    "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_en": "What are the profits in billions for Berkshire Hathaway? ",
    "question_th": " 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_en": "Which industry has a company with a market value of 80.3 billion? ",
    "question_th": " อุตสาหกรรมใดมีบริษัทที่มีมูลค่าตลาด 80.3 พันล้าน?",
    "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_en": "What is the highest rank of a company that has 1,715.8 billion in assets? ",
    "question_th": " อันดับสูงสุดของบริษัทที่มีสินทรัพย์ 1,715.8 พันล้านคืออะไร?",
    "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_en": "what is the amount of profits in billions for companies with a market value of 204.9 billion? ",
    "question_th": "จำนวนกำไรของบริษัทที่มีมูลค่าตลาด 204.9 พันล้านเป็นจำนวนเท่าใด",
    "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_en": "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?",
    "question_th": "ทีมอยู่อันดับไหนในเมื่อพวกเขาไม่ผ่านเข้ารอบ Concaf Champions Cup แต่ผ่านเข้ารอบ 16 ทีมใน US 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_en": "When was the first season?",
    "question_th": "ซีซั่นแรกคือเมื่อไหร่?",
    "context": "CREATE TABLE table_16857_2 (season INTEGER)"
  },
  {
    "answer": "SELECT paperback FROM table_16907214_1 WHERE title = \"Dead as a Doornail\"",
    "question_en": "What is the ISBN of \"Dead as a Doornail?",
    "question_th": "ISBN ของ \"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_en": "How many publishers put out isbn 193700788x?",
    "question_th": "มีผู้จัดพิมพ์กี่รายที่ออก 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_en": "isbn 0-441-01400-3 is book number?",
    "question_th": "isbn 0-441-01400-3 คือเลขเล่มใช่ไหมคะ?",
    "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_en": "Who pubilshed isbn 1-937007-44-8?",
    "question_th": "ใครเป็นผู้เผยแพร่ isbn 1-937007-44-8?",
    "context": "CREATE TABLE table_16907214_1 (publisher VARCHAR, hardcover VARCHAR)"
  },
  {
    "answer": "SELECT MIN(w) FROM table_16922657_2",
    "question_en": "What is the minimum Wins a team has?",
    "question_th": "ชัยชนะขั้นต่ำที่ทีมมีคือเท่าใด?",
    "context": "CREATE TABLE table_16922657_2 (w INTEGER)"
  },
  {
    "answer": "SELECT COUNT(Ends) AS won FROM table_16922657_2 WHERE country = Scotland",
    "question_en": "When the country was Scotland, how many ends were won?",
    "question_th": "เมื่อประเทศเป็นสกอตแลนด์ ชนะกี่แต้ม?",
    "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_en": "What is Norway's least ends lost?",
    "question_th": "การสูญเสียจุดจบน้อยที่สุดของนอร์เวย์คืออะไร?",
    "context": "CREATE TABLE table_16922657_2 (Ends INTEGER, country VARCHAR, Norway VARCHAR)"
  },
  {
    "answer": "SELECT poles FROM table_1708050_1 WHERE position = \"25th\"",
    "question_en": "Name the poles for 25th position",
    "question_th": "ตั้งชื่อเสาอันดับที่ 25",
    "context": "CREATE TABLE table_1708050_1 (poles VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT starts FROM table_1708050_1 WHERE position = \"16th\"",
    "question_en": "Name the starts when position is 16th",
    "question_th": "ตั้งชื่อสตาร์ทเมื่อตำแหน่งที่ 16",
    "context": "CREATE TABLE table_1708050_1 (starts VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_17103645_9 WHERE date = \"June 7\"",
    "question_en": "What stadium hosted the June 7 game and how many visitors were there?",
    "question_th": "สนามใดจัดการแข่งขันในวันที่ 7 มิถุนายน และมีผู้เข้าชมกี่คน?",
    "context": "CREATE TABLE table_17103645_9 (location_attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_17103645_9 WHERE score = \"79-88\"",
    "question_en": "Who made the highest assist in the game that scored 79-88?",
    "question_th": "ใครเป็นผู้แอสซิสต์สูงสุดในเกมที่สกอร์ 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_en": "When the 8th is Marcos Hernandez who was the 6th?",
    "question_th": "วันที่ 8 คือ Marcos Hernandez ใครคือคนที่ 6?",
    "context": "CREATE TABLE table_17111812_1 (sixth VARCHAR, eighth VARCHAR)"
  },
  {
    "answer": "SELECT fourth FROM table_17111812_1 WHERE sixth = \"Air Traffic\"",
    "question_en": "Who was in 4th when in 6th is Air Traffic?",
    "question_th": "ใครอยู่อันดับที่ 4 ในอันดับที่ 6 คือ Air Traffic?",
    "context": "CREATE TABLE table_17111812_1 (fourth VARCHAR, sixth VARCHAR)"
  },
  {
    "answer": "SELECT tenth FROM table_17111812_1 WHERE ninth = \"Kubb\"",
    "question_en": "When Kubb is in 9th, who is in 10th?",
    "question_th": "เมื่อคับบอยู่อันดับที่ 9 ใครอยู่อันดับที่ 10?",
    "context": "CREATE TABLE table_17111812_1 (tenth VARCHAR, ninth VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(seventh) FROM table_17111812_1 WHERE sixth = \"Interpol\"",
    "question_en": "When Interpol is in 6th, who is in 7th?",
    "question_th": "เมื่ออินเตอร์โพลอยู่อันดับที่ 6 ใครอยู่อันดับที่ 7?",
    "context": "CREATE TABLE table_17111812_1 (seventh VARCHAR, sixth VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(winner) FROM table_17111812_1 WHERE fourth = \"Plan B\"",
    "question_en": "How many times was Plan B 4th place?",
    "question_th": "แผนบีอันดับ 4 กี่ครั้งแล้ว?",
    "context": "CREATE TABLE table_17111812_1 (winner VARCHAR, fourth VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_17111812_1 WHERE fifth = \"Dizzee Rascal\"",
    "question_en": "When dizzee rascal is 5th, who was the winner?",
    "question_th": "เมื่อ dizzee rascal ได้ที่ 5 ใครเป็นผู้ชนะ?",
    "context": "CREATE TABLE table_17111812_1 (winner VARCHAR, fifth VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_17121262_9 WHERE game = 60",
    "question_en": "What was the location and attendance for game 60?",
    "question_th": "สถานที่และผู้เข้าร่วมเกม 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_en": "Who had the highest assists on March 18?",
    "question_th": "ใครแอสซิสต์สูงสุดในวันที่ 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_en": "Who had the high rebound total on january 6?",
    "question_th": "ใครมียอดรวมการรีบาวด์สูงในวันที่ 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_en": "Name the total number of opponent of record 9-2",
    "question_th": "ตั้งชื่อจำนวนคู่ต่อสู้รวมของบันทึก 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_en": "name the date where score time is w 74-63",
    "question_th": "ตั้งชื่อวันที่เวลาคะแนนคือ 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_en": "What episode aired on 11july1964?",
    "question_th": "ออกอากาศวันที่ 11 ก.ค.64 มีตอนไหนบ้าง?",
    "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_en": "How many viewers were there on 1august1964?",
    "question_th": "วันที่ 1 สิงหาคม 2507 มีผู้ชมกี่คน?",
    "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_en": "What is run time when there were 7.4 million viewers?",
    "question_th": "รันไทม์เมื่อมีผู้ชม 7.4 ล้านคนคืออะไร?",
    "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_en": "If the equation is (10 times 8) + 4, what would be the 2nd throw?",
    "question_th": "หากสมการคือ (10 คูณ 8) + 4 การโยนครั้งที่ 2 จะเท่ากับเท่าใด",
    "context": "CREATE TABLE table_17265535_6 (equation VARCHAR)"
  },
  {
    "answer": "SELECT 3 AS rd_throw FROM table_17265535_6 WHERE equation = \"all equal\"",
    "question_en": "If the equation is all equal, what is the 3rd throw?",
    "question_th": "ถ้าสมการเท่ากันหมด การโยนครั้งที่ 3 จะเท่ากับเท่าไร?",
    "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_en": "If the equation is (10 times 1) + 3, what is the 2nd throw?",
    "question_th": "หากสมการคือ (10 คูณ 1) + 3 การโยนครั้งที่ 2 จะเท่ากับเท่าใด",
    "context": "CREATE TABLE table_17265535_6 (equation VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(grid) FROM table_17271495_1 WHERE points = \"30\"",
    "question_en": "Name the total number of grid for 30",
    "question_th": "ตั้งชื่อจำนวนตารางทั้งหมดสำหรับ 30",
    "context": "CREATE TABLE table_17271495_1 (grid VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT laps FROM table_17271495_1 WHERE points = \"18\"",
    "question_en": "Name the laps for 18 pointss",
    "question_th": "ตั้งชื่อรอบได้ 18 แต้ม",
    "context": "CREATE TABLE table_17271495_1 (laps VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_17271495_1 WHERE points = \"13\"",
    "question_en": "Name the drive for points being 13",
    "question_th": "ตั้งชื่อไดรฟ์สำหรับคะแนนเป็น 13",
    "context": "CREATE TABLE table_17271495_1 (driver VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_17271495_1 WHERE driver = \"Scott Dixon\"",
    "question_en": "Name the team for scott dixon",
    "question_th": "ตั้งชื่อทีมให้สก็อตต์ ดิกซัน",
    "context": "CREATE TABLE table_17271495_1 (team VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_17271495_1 WHERE driver = \"Darren Manning\"",
    "question_en": "Name the team of darren manning",
    "question_th": "ตั้งชื่อทีมดาร์เรน แมนนิ่ง",
    "context": "CREATE TABLE table_17271495_1 (team VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_17288825_8 WHERE score = \"L 93–104 (OT)\"",
    "question_en": "Name the record for score of  l 93–104 (ot)",
    "question_th": "ตั้งชื่อบันทึกคะแนน l 93–104 (ot)",
    "context": "CREATE TABLE table_17288825_8 (record VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_17288825_9 WHERE team = \"Memphis\"",
    "question_en": "On what date did the Rockets play Memphis?",
    "question_th": "ร็อคเก็ตส์พบกับเมมฟิสวันไหน?",
    "context": "CREATE TABLE table_17288825_9 (date VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_17288825_9 WHERE game = 72",
    "question_en": "Who had the most poinst in game 72?",
    "question_th": "ใครมีแต้มมากที่สุดในเกม 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_en": "When tracy mcgrady (8) is leading in assists what is the date?",
    "question_th": "เมื่อเทรซี่ แม็คกราดี (8) ขึ้นนำเป็นแอสซิสต์วันที่เท่าไหร่?",
    "context": "CREATE TABLE table_17288825_6 (date VARCHAR, high_assists VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_17288825_6 WHERE team = \"@ New Orleans\"",
    "question_en": "When @ new orleans is the team who has the highest amount of rebounds?",
    "question_th": "เมื่อ @new orleans เป็นทีมที่มีจำนวนรีบาวด์สูงที่สุด?",
    "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_en": "When aaron brooks (6) had the highest amount of assists what is the date?",
    "question_th": "เมื่อแอรอน บรูคส์ (6) แอสซิสต์ได้มากที่สุดคือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_17288825_6 (date VARCHAR, high_assists VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_17288869_5 WHERE date = \"November 1\"",
    "question_en": "What was the record on November 1?",
    "question_th": "บันทึกเมื่อวันที่ 1 พฤศจิกายนคืออะไร?",
    "context": "CREATE TABLE table_17288869_5 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(record) FROM table_17288869_5 WHERE date = \"November 7\"",
    "question_en": "What was the record on November 7?",
    "question_th": "บันทึกเมื่อวันที่ 7 พฤศจิกายนคืออะไร?",
    "context": "CREATE TABLE table_17288869_5 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT grid FROM table_17304504_1 WHERE points = \"14\"",
    "question_en": "What is the grid for the driver who earned 14 points?",
    "question_th": "ตารางสำหรับผู้ขับขี่ที่ได้รับ 14 คะแนนคืออะไร?",
    "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_en": "Name the total number of cars for panther racing and grid of 9",
    "question_th": "ตั้งชื่อจำนวนรถยนต์ทั้งหมดสำหรับการแข่งรถเสือดำและตารางที่ 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_en": "Name the least grid for 17 points ",
    "question_th": " ตั้งชื่อตารางที่น้อยที่สุดให้ได้ 17 คะแนน",
    "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_en": "Name the total number of fin pos for 12 points of accident",
    "question_th": "ระบุจำนวนจุดครีบรวม 12 จุดเกิดอุบัติเหตุ",
    "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_en": "Name the number of driver for fin pos of 19",
    "question_th": "ตั้งชื่อหมายเลขนักขับประจำตำแหน่งครีบ 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_en": "how many high assists stats were maade on february 4",
    "question_th": "มีสถิติแอสซิสต์สูงกี่นัดในวันที่ 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_en": "who made high assists on february 4",
    "question_th": "ที่ทำแอสซิสต์ได้สูงในวันที่ 4 กุมภาพันธ์",
    "context": "CREATE TABLE table_17311759_7 (high_assists VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_17311797_10 WHERE game = 81",
    "question_en": "What was the score in game 81?",
    "question_th": "คะแนนในเกมที่ 81 คืออะไร?",
    "context": "CREATE TABLE table_17311797_10 (score VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_17311797_10 WHERE game = 79",
    "question_en": "Which player had the highest points in game 79?",
    "question_th": "ผู้เล่นคนใดมีคะแนนสูงสุดในเกม 79?",
    "context": "CREATE TABLE table_17311797_10 (high_points VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_17311783_9 WHERE date = \"March 9\"",
    "question_en": "What team(s) did they play on march 9?",
    "question_th": "พวกเขาเล่นทีมอะไรในวันที่ 9 มีนาคม?",
    "context": "CREATE TABLE table_17311783_9 (team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_17311783_9 WHERE team = \"Cleveland\"",
    "question_en": "Who had the high point total against cleveland?",
    "question_th": "ใครมีคะแนนรวมสูงเมื่อเทียบกับคลีฟแลนด์?",
    "context": "CREATE TABLE table_17311783_9 (high_points VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_17323042_8 WHERE team = \"Miami\"",
    "question_en": "When did they play Miami?",
    "question_th": "พวกเขาเล่นไมอามี่เมื่อไหร่?",
    "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_en": "Name the total number of score for staples center 13,266",
    "question_th": "บอกจำนวนคะแนนรวมศูนย์ลวดเย็บกระดาษ 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_en": "Name the high points for the date of november 24",
    "question_th": "ทายคะแนนสูงสุดประจำวันที่ 24 พฤศจิกายน",
    "context": "CREATE TABLE table_17323529_5 (high_points VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_17323529_5 WHERE score = \"L 98–103 (OT)\"",
    "question_en": "Name the high assists for  l 98–103 (ot)",
    "question_th": "ตั้งชื่อแอสซิสต์สูงสำหรับ l 98–103 (ot)",
    "context": "CREATE TABLE table_17323529_5 (high_assists VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_17340355_10 WHERE date = \"April 1\"",
    "question_en": "What was the team's score on April 1?",
    "question_th": "คะแนนของทีมเมื่อวันที่ 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_en": "Who did the most assists when Matt Barnes (11) got the most rebounds?",
    "question_th": "ใครแอสซิสต์ได้มากที่สุดเมื่อแมตต์ บาร์นส์ (11) รีบาวด์มากที่สุด?",
    "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_en": "Steve Nash (24) got high points for how many teams?",
    "question_th": "Steve Nash (24) มีคะแนนสูงจากกี่ทีม?",
    "context": "CREATE TABLE table_17340355_10 (team VARCHAR, high_points VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_17340355_9 WHERE date = \"March 15\"",
    "question_en": "After the March 15 game, what was the team's record?",
    "question_th": "หลังเกมวันที่ 15 มี.ค. สถิติทีมเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_17340355_9 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT written_by FROM table_17356042_1 WHERE directed_by = \"Arthur Albert\"",
    "question_en": "Name who wrote the episode directed by arthur albert",
    "question_th": "ชื่อผู้เขียนบทที่กำกับโดยอาเธอร์ อัลเบิร์ต",
    "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_en": "Name the title that was written by r. scott gemmill",
    "question_th": "ตั้งชื่อเรื่องที่เขียนโดย r. สกอตต์ เจมมิลล์",
    "context": "CREATE TABLE table_17356042_1 (title VARCHAR, written_by VARCHAR)"
  },
  {
    "answer": "SELECT directed_by FROM table_17356042_1 WHERE series__number = 236",
    "question_en": "Name who directed the episode for the series number 236",
    "question_th": "ชื่อผู้กำกับตอน ซีรีส์หมายเลข 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_en": "How many games did the team who scored 60 goals win?",
    "question_th": "ทีมที่ทำประตูได้ 60 ประตูชนะไปกี่เกม?",
    "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_en": "How many points did Goole Town accumulate?",
    "question_th": "Goole Town สะสมได้กี่แต้ม?",
    "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_en": "List all losses with average goals of 1.21.",
    "question_th": "แสดงรายการความพ่ายแพ้ทั้งหมดโดยมีเป้าหมายเฉลี่ย 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_en": "Which team had goal averages of 1.34?",
    "question_th": "ทีมใดมีประตูเฉลี่ย 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_en": "What is the highest position of the Bangor City team?",
    "question_th": "ตำแหน่งสูงสุดของทีมบังกอร์ซิตี้คือตำแหน่งใด?",
    "context": "CREATE TABLE table_17366952_1 (position INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(played) FROM table_17366952_1 WHERE team = \"Lancaster City\"",
    "question_en": "How many times did the Lancaster City team play?",
    "question_th": "ทีมแลงคาสเตอร์ซิตี้เล่นกี่ครั้ง?",
    "context": "CREATE TABLE table_17366952_1 (played VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT athlete FROM table_1745820_5 WHERE event = \"Flyweight\"",
    "question_en": "Which athlete competed in the flyweight division?",
    "question_th": "นักกีฬาคนใดเข้าแข่งขันในรุ่นฟลายเวท?",
    "context": "CREATE TABLE table_1745820_5 (athlete VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT semifinals FROM table_1745820_5 WHERE round_of_32 = \"Bye\"",
    "question_en": "When there was a bye in the round of 32, what was the result in the round of 16?",
    "question_th": "เมื่อมีการบายในรอบ 32 ทีม ผลรอบ 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_en": "What is the part 4 when part 1 is \"lesan\"?",
    "question_th": "ภาค 4 เมื่อภาค 1 คือ \"เลซาน\" คืออะไร?",
    "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_en": "What is the verb meaning of the word with part 3 \"sufun\"?",
    "question_th": "คำกริยาของคำที่มีภาค 3 “ซูฟุน” มีความหมายว่าอย่างไร?",
    "context": "CREATE TABLE table_1745843_8 (verb_meaning VARCHAR, part_3 VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_1745843_8 WHERE part_4 = \"giheizan\"",
    "question_en": "What class in the word with part 4 \"giheizan\"?",
    "question_th": "คลาสไหนในคำศัพท์ที่มีภาค 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_en": "What is the part 4 of the word with the part 1 \"heizan\"?",
    "question_th": "ภาค 4 ของคำกับภาค 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_en": "What is the part 3 of the word in class 7a?",
    "question_th": "ส่วนที่ 3 ของคำในคลาส 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_en": "What is the verb meaning of the word with part 2 \"bant\"?",
    "question_th": "ความหมายกริยาของคำที่มีส่วนที่ 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_en": "What was the swimsuit score for the country with the average score of 8.848?",
    "question_th": "คะแนนชุดว่ายน้ำของประเทศที่ได้คะแนนเฉลี่ย 8.848 เป็นเท่าใด",
    "context": "CREATE TABLE table_17521433_1 (swimsuit VARCHAR, average VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_17521433_1 WHERE swimsuit = \"8.788\"",
    "question_en": "What country had a swimsuit score of 8.788?",
    "question_th": "ประเทศใดมีคะแนนชุดว่ายน้ำ 8.788?",
    "context": "CREATE TABLE table_17521433_1 (country VARCHAR, swimsuit VARCHAR)"
  },
  {
    "answer": "SELECT swimsuit FROM table_17521433_1 WHERE country = \"Illinois\"",
    "question_en": "What was the swimsuit score for Illinois?",
    "question_th": "คะแนนชุดว่ายน้ำของรัฐอิลลินอยส์เป็นเท่าใด",
    "context": "CREATE TABLE table_17521433_1 (swimsuit VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(average) FROM table_17521433_1 WHERE evening_gown = \"9.100\"",
    "question_en": "What was the average score for the country with the evening gown score of 9.100?",
    "question_th": "คะแนนเฉลี่ยของประเทศที่ได้คะแนนชุดราตรี 9.100 คือเท่าไร?",
    "context": "CREATE TABLE table_17521433_1 (average VARCHAR, evening_gown VARCHAR)"
  },
  {
    "answer": "SELECT swimsuit FROM table_17516967_1 WHERE state = \"Oregon\"",
    "question_en": "Name the swuinsuit for oregon",
    "question_th": "ตั้งชื่อ swuinsuit สำหรับรัฐโอเรกอน",
    "context": "CREATE TABLE table_17516967_1 (swimsuit VARCHAR, state VARCHAR)"
  },
  {
    "answer": "SELECT preliminary FROM table_17516967_1 WHERE state = \"North Carolina\"",
    "question_en": "Name the preliminary for north carolina",
    "question_th": "ตั้งชื่อเบื้องต้นสำหรับนอร์ทแคโรไลนา",
    "context": "CREATE TABLE table_17516967_1 (preliminary VARCHAR, state VARCHAR)"
  },
  {
    "answer": "SELECT census_ranking FROM table_176521_2 WHERE official_name = \"Maugerville\"",
    "question_en": "What are the census ranking(s) of maugerville?",
    "question_th": "การจัดอันดับสำมะโนประชากรของ 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_en": "What is the status(es) of the place with an area of 304.06 km2?",
    "question_th": "สถานภาพที่มีพื้นที่ 304.06 ตารางกิโลเมตร เป็นอย่างไร",
    "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_en": "What are the official name(s) of places with an area of 304.06 km2?",
    "question_th": "สถานที่อย่างเป็นทางการซึ่งมีพื้นที่ 304.06 ตารางกิโลเมตรมีชื่ออย่างเป็นทางการว่าอะไร",
    "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_en": "Name the location for school eckstein",
    "question_th": "ตั้งชื่อสถานที่สำหรับโรงเรียนเอคสเตน",
    "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_en": "Name the minimum 11-12 enrollment for washington school",
    "question_th": "ตั้งชื่อการลงทะเบียนขั้นต่ำ 11-12 สำหรับโรงเรียนวอชิงตัน",
    "context": "CREATE TABLE table_17641314_3 (school VARCHAR)"
  },
  {
    "answer": "SELECT length FROM table_1773707_2 WHERE body_style = \"500 E\"",
    "question_en": "What's the length of the model with 500 E body style?",
    "question_th": "รุ่นที่มีทรง 500E ยาวเท่าไรครับ?",
    "context": "CREATE TABLE table_1773707_2 (length VARCHAR, body_style VARCHAR)"
  },
  {
    "answer": "SELECT length FROM table_1773707_2 WHERE body_style = \"Sedan\"",
    "question_en": "What's the length of the model with Sedan body style?",
    "question_th": "รุ่นที่มีทรงซีดานยาวเท่าไรครับ?",
    "context": "CREATE TABLE table_1773707_2 (length VARCHAR, body_style VARCHAR)"
  },
  {
    "answer": "SELECT length FROM table_1773707_2 WHERE height = \"mm (in)\"",
    "question_en": "What are the lengths of the models that are mm (in) tall?",
    "question_th": "รุ่นที่มีความสูงเป็น มม. (นิ้ว) มีความยาวเท่าไร?",
    "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_en": "How many providers are there where the resale category is yes and bandwith is up is 1024?",
    "question_th": "มีผู้ให้บริการกี่รายที่หมวดหมู่การขายต่อเป็นใช่และแบนด์วิดธ์สูงถึง 1,024",
    "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_en": "What is download bandwith where the provider is deutsche telekom ag?",
    "question_th": "แบนด์วิดท์การดาวน์โหลดคืออะไรโดยที่ผู้ให้บริการคือ 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_en": "Who are all of the telecom providers for which the upload rate is 1024 kbits and the resale category is yes?",
    "question_th": "ใครคือผู้ให้บริการโทรคมนาคมทั้งหมดที่มีอัตราการอัพโหลด 1,024 kbits และหมวดหมู่การขายต่อคือใช่?",
    "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_en": "What are all the dsl type offered by the M-Net telecom company?",
    "question_th": "บริษัทโทรคมนาคม M-Net มีประเภท dsl ทั้งหมดอะไรบ้าง",
    "context": "CREATE TABLE table_1773908_3 (dsl_type VARCHAR, provider VARCHAR)"
  },
  {
    "answer": "SELECT resale FROM table_1773908_3 WHERE provider = \"Netcologne\"",
    "question_en": "What is the resale category for the provider NetCologne?",
    "question_th": "หมวดหมู่การขายต่อของผู้ให้บริการ NetCologne คืออะไร?",
    "context": "CREATE TABLE table_1773908_3 (resale VARCHAR, provider VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(result) FROM table_17782308_1 WHERE week = 13",
    "question_en": "How many results are listed for week 13?",
    "question_th": "สัปดาห์ที่ 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_en": "On October 16, 1966, what was the game site?",
    "question_th": "วันที่ 16 ตุลาคม 2509 เว็บไซต์เกมคืออะไร?",
    "context": "CREATE TABLE table_17782308_1 (game_site VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_17782308_1 WHERE opponent = \"Miami Dolphins\"",
    "question_en": "What was the date of the game when the opponent was the Miami Dolphins?",
    "question_th": "วันที่ของเกมที่คู่ต่อสู้คือ 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_en": "On how many dates was the complete 4th series released?",
    "question_th": "ซีรีส์ 4 ครบชุดออกฉายกี่วัน?",
    "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_en": "How many discs for the complete 4th series?",
    "question_th": "ชุดที่ 4 ครบชุดมีกี่แผ่นครับ?",
    "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_en": "What day was the complete 2nd series: volume one released?",
    "question_th": "ชุดที่ 2 ครบชุดคือวันไหน เล่ม 1 ออกคะ?",
    "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_en": "Which US air date had 4.4 million viewers?",
    "question_th": "วันไหนที่ออกอากาศในอเมริกามีผู้ชม 4.4 ล้านคน?",
    "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_en": "How many million viewers watched episode 6?",
    "question_th": "มีผู้ชมดูตอนที่ 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_en": "Name the most wickets for best is 4/22",
    "question_th": "ชื่อประตูที่ดีที่สุดคือ 4/22",
    "context": "CREATE TABLE table_17900317_5 (wickets INTEGER, best VARCHAR)"
  },
  {
    "answer": "SELECT MIN(matches) FROM table_17900317_5 WHERE runs = 276",
    "question_en": "Name the least matches for runs being 276",
    "question_th": "ตั้งชื่อการแข่งขันที่น้อยที่สุดสำหรับการวิ่งเป็น 276",
    "context": "CREATE TABLE table_17900317_5 (matches INTEGER, runs VARCHAR)"
  },
  {
    "answer": "SELECT matches FROM table_17900317_5 WHERE wickets = 17",
    "question_en": "Name the matches for wickets 17",
    "question_th": "ตั้งชื่อการแข่งขันสำหรับประตู 17",
    "context": "CREATE TABLE table_17900317_5 (matches VARCHAR, wickets VARCHAR)"
  },
  {
    "answer": "SELECT MAX(4 AS _inns) FROM table_17900317_5",
    "question_en": "Name the most 4/inns",
    "question_th": "ชื่อมากที่สุด 4/โรงเตี๊ยม",
    "context": "CREATE TABLE table_17900317_5 (Id VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_17927935_1 WHERE week = 4",
    "question_en": "What was the date of the week 4 game?",
    "question_th": "เกมในสัปดาห์ที่ 4 คือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_17927935_1 (date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT MAX(week) FROM table_17927935_1 WHERE opponent = \"New York Jets\"",
    "question_en": "What was the week number when the opponent was the New York Jets?",
    "question_th": "หมายเลขสัปดาห์ที่คู่ต่อสู้คือ 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_en": "What is the district when the first elected was in 1986?",
    "question_th": "การเลือกตั้งครั้งแรกคือเขตใดในปี พ.ศ. 2529?",
    "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_en": "Who were the candidates when the first elected was a republican in 1998? ",
    "question_th": " ใครคือผู้สมัครเมื่อการเลือกตั้งครั้งแรกเป็นพรรครีพับลิกันในปี 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_en": "How many times was Mike McIntyre elected?",
    "question_th": "Mike McIntyre ได้รับเลือกกี่ครั้ง?",
    "context": "CREATE TABLE table_1805191_34 (results VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1805191_34 WHERE first_elected = 1998",
    "question_en": "Which party was elected first in 1998?",
    "question_th": "พรรคใดได้รับเลือกเป็นคนแรกในปี 2541?",
    "context": "CREATE TABLE table_1805191_34 (party VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(candidates) FROM table_1805191_34 WHERE incumbent = \"Robin Hayes\"",
    "question_en": "How many times did Robin Hayes run?",
    "question_th": "Robin Hayes วิ่งกี่ครั้ง?",
    "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_en": "What district first elected a Democratic incumbent in 1998?",
    "question_th": "เขตใดได้รับเลือกผู้ดำรงตำแหน่งพรรคเดโมแครตเป็นครั้งแรกในปี 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_en": "How many tackle assists for the player who averages 23.7?",
    "question_th": "นักเตะที่มีค่าเฉลี่ย 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_en": "How many players named jake flaherty?",
    "question_th": "มีผู้เล่นกี่คนที่ชื่อเจค ฟลาเฮอร์ตี้?",
    "context": "CREATE TABLE table_18064020_21 (solo VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT brup FROM table_18064020_21 WHERE name = \"total\"",
    "question_en": "What is the total brup for the team?",
    "question_th": "จำนวนรวมของทีมคือเท่าไร?",
    "context": "CREATE TABLE table_18064020_21 (brup VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT MAX(td) FROM table_18064020_21",
    "question_en": "What is the largest number of tds scored for a player?",
    "question_th": "จำนวน tds ที่ใหญ่ที่สุดสำหรับผู้เล่นคือเท่าใด?",
    "context": "CREATE TABLE table_18064020_21 (td INTEGER)"
  },
  {
    "answer": "SELECT no_yds FROM table_18064020_21 WHERE tfl_yds = \"2.5-4\"",
    "question_en": "How many yards for the player with tfl-yds of 2.5-4?",
    "question_th": "ระยะ tfl-yds 2.5-4 ของผู้เล่นมีระยะกี่หลา?",
    "context": "CREATE TABLE table_18064020_21 (no_yds VARCHAR, tfl_yds VARCHAR)"
  },
  {
    "answer": "SELECT MIN(tonkolili) FROM table_18103265_1",
    "question_en": "What is the lowest number associated with Tonkolili?",
    "question_th": "ตัวเลขต่ำสุดที่เกี่ยวข้องกับ 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_en": "What is the main service for the station with 14.849 million passengers 2011-12? ",
    "question_th": " บริการหลักสำหรับสถานีที่มีผู้โดยสาร 14.849 ล้านคนในปี 2554-55 คืออะไร?",
    "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_en": "What is the lowest rank of Gatwick Airport? ",
    "question_th": " สนามบิน Gatwick อันดับต่ำสุดคืออะไร?",
    "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_en": "Which location has 103.534 million passengers in 2011-12? ",
    "question_th": " สถานที่ใดมีผู้โดยสาร 103.534 ล้านคนในปี 2554-55",
    "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_en": "How many annual interchanges in the millions occurred in 2011-12 when the number of annual entry/exits was 36.609 million? ",
    "question_th": " การแลกเปลี่ยนระหว่างล้านครั้งต่อปีเกิดขึ้นในปี 2554-2555 เมื่อจำนวนการเข้า/ออกต่อปีอยู่ที่ 36.609 ล้าน",
    "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_en": "Who was the winning team on the circuit Zolder?",
    "question_th": "ใครคือทีมที่ชนะในสนามเซอร์กิตโซลเดอร์?",
    "context": "CREATE TABLE table_18095719_2 (winning_team VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT MAX(round) FROM table_18095719_2 WHERE circuit = \"AVUS\"",
    "question_en": "What round was circuit Avus?",
    "question_th": "Circuit Avus แข่งรอบไหน?",
    "context": "CREATE TABLE table_18095719_2 (round INTEGER, circuit VARCHAR)"
  },
  {
    "answer": "SELECT pole_position FROM table_18095719_2 WHERE round = 7",
    "question_en": "Who had pole position in round 7?",
    "question_th": "ใครได้โพลโพซิชั่นรอบ 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_en": "What is the english (bcp) phrase \"for thine is the kingdom, the power\" in modern german with standard wording?",
    "question_th": "วลีภาษาอังกฤษ (bcp) คืออะไร \"เพราะอาณาจักรของพระองค์คืออำนาจ\" ในภาษาเยอรมันสมัยใหม่พร้อมถ้อยคำมาตรฐาน?",
    "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_en": "What is the modern german standard wording for the german based writing system 2 phrase \"wie mir die vergewwe wu uns schuldich sinn.\"?",
    "question_th": "อะไรคือถ้อยคำมาตรฐานเยอรมันสมัยใหม่สำหรับระบบการเขียนที่ใช้ภาษาเยอรมัน 2 วลี \"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_en": "How many news stations opened on the date of June 24, 2000?",
    "question_th": "วันที่ 24 มิถุนายน 2543 เปิดสถานีข่าวกี่สถานี?",
    "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_en": "What is the length  (miles) when pico to 7th st/metro center are the endpoints?",
    "question_th": "ความยาว (ไมล์) เมื่อพิโกถึง 7th st/metro center เป็นจุดสิ้นสุดคือเท่าใด",
    "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_en": "How many lines have the segment description of red line mos-2 west?",
    "question_th": "มีกี่บรรทัดที่มีคำอธิบายส่วนของเส้นสีแดง mos-2 ตะวันตก?",
    "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_en": "What is the lenth (miles) of endpoints westlake/macarthur park to wilshire/western?",
    "question_th": "ระยะทางที่ 10 (ไมล์) ของจุดสิ้นสุด Westlake/Macarthur Park ถึง 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_en": "What date of segment description red line mos-2 north open?",
    "question_th": "คำอธิบายส่วนเส้นสีแดง mos-2 north เปิดเมื่อใด",
    "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_en": "How many new stations have a lenght (miles) of 6.0?",
    "question_th": "มีสถานีใหม่กี่สถานีที่มีความยาว (ไมล์) 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_en": "If there were 14 in 1990 and 6 survived how many were destroyed?",
    "question_th": "ถ้ามี 14 คนในปี 1990 และ 6 คนที่รอดชีวิตมาได้ จะมีกี่คนที่ถูกทำลาย?",
    "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_en": "If 4 went to iran and the amount that survived was less than 12.0 how many were there in 1990?",
    "question_th": "ถ้า 4 คนไปอิหร่านและจำนวนที่รอดมาได้น้อยกว่า 12.0 จะมีกี่คนในปี 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_en": "If the aircraft was  ussr mig-25 rb how many were destroyed?",
    "question_th": "หากเครื่องบินลำนั้นเป็น ussr mig-25 rb มีกี่ลำที่ถูกทำลาย?",
    "context": "CREATE TABLE table_1817852_1 (destroyed VARCHAR, aircraft VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_18183850_12 WHERE opponent_team = \"Belgium\"",
    "question_en": "What was the score when the opposing team was from Belgium?",
    "question_th": "เมื่อฝ่ายตรงข้ามมาจากเบลเยียมสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_18183850_12 (score VARCHAR, opponent_team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(outcome) FROM table_18183850_12 WHERE opponent = \"Aleksandra Wozniak\"",
    "question_en": "How many outcomes were there when the opponent was Aleksandra Wozniak?",
    "question_th": "เมื่อคู่ต่อสู้คืออเล็กซานดรา วอซเนียค มีผลลัพธ์กี่รายการ?",
    "context": "CREATE TABLE table_18183850_12 (outcome VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_18183850_12 WHERE opponent = \"Dominika Cibulková\"",
    "question_en": "What was the score when the opponent was Dominika Cibulková?",
    "question_th": "เมื่อคู่ต่อสู้คือ Dominika Cibulková ทำสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_18183850_12 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_18183850_12 WHERE opponent = \"Magdaléna Rybáriková\"",
    "question_en": "What was the outcome of the game when the opponent was Magdaléna Rybáriková?",
    "question_th": "ผลลัพธ์ของเกมเป็นอย่างไรเมื่อคู่ต่อสู้คือ Magdaléna Rybáriková?",
    "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_en": "What was the game edition when they played on the clay (i) surface and the outcome was a winner?",
    "question_th": "ตอนที่พวกเขาเล่นบนพื้นดินเหนียว (i) เป็นรุ่นเกมอะไร และผลลัพธ์เป็นผู้ชนะ?",
    "context": "CREATE TABLE table_18183850_12 (edition VARCHAR, surface VARCHAR, outcome VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_18207285_2 WHERE attendance = 60425",
    "question_en": "Who was the game attended by 60425 people played against?",
    "question_th": "ใครคือเกมที่มีผู้เข้าร่วม 60425 คนที่เล่นกับ?",
    "context": "CREATE TABLE table_18207285_2 (opponent VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(raiders_first_downs) FROM table_18207285_2 WHERE game = 9",
    "question_en": "How many different counts of the Raiders first downs are there for the game number 9?",
    "question_th": "Raiders ลงครั้งแรกในเกมหมายเลข 9 มีกี่จำนวนที่แตกต่างกัน?",
    "context": "CREATE TABLE table_18207285_2 (raiders_first_downs VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_18207285_2 WHERE opponents = 42",
    "question_en": "What's the record in the game played against 42?",
    "question_th": "สถิติในเกมที่เล่นกับ 42 คืออะไร?",
    "context": "CREATE TABLE table_18207285_2 (record VARCHAR, opponents VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_18207285_2 WHERE attendance = 31095",
    "question_en": "What was the result of the game seen by 31095 people?",
    "question_th": "ผลของการเล่นเกมที่มีคนเห็น 31,095 คนเป็นอย่างไรบ้าง?",
    "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_en": "How many opponents played 1 game with a result win?",
    "question_th": "มีคู่แข่งกี่คนที่เล่น 1 เกมและผลการแข่งขันชนะ?",
    "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_en": "Which award-winning film has a screening number of 50 films 50 televised?",
    "question_th": "ภาพยนตร์เรื่องใดที่ได้รับรางวัลมีจำนวนฉาย 50 เรื่อง 50 เรื่องทางโทรทัศน์?",
    "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_en": "How many award-winning films have the opening film of encounters at the end of the world?",
    "question_th": "มีภาพยนตร์ที่ได้รับรางวัลกี่เรื่องที่มีภาพยนตร์เปิดเรื่องเผชิญหน้าวันสิ้นโลก?",
    "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_en": "How many number of screenings have an opening film of the journey of vaan nguyen?",
    "question_th": "มีหนังเปิดเรื่องการเดินทางของวันเหงียนฉายกี่เรื่อง?",
    "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_en": "Which opening film has the opening date of august 23?",
    "question_th": "หนังเปิดเรื่องไหนมีกำหนดฉายวันที่ 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_en": "Which award-winning film has a closing date of September 4?",
    "question_th": "หนังรางวัลไหนมีกำหนดปิดฉายวันที่ 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_en": "What series number garnered 20.64 million viewers?",
    "question_th": "ซีรีส์เรื่องใดมีผู้ชม 20.64 ล้านคน",
    "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_en": "What position did Pranita Sahu's team get?",
    "question_th": "ทีมปราณิตา ซาหู ได้ตำแหน่งอะไร?",
    "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_en": "What date did Jatin Shah and Shalini Chandran perform?",
    "question_th": "Jatin Shah และ Shalini Chandran แสดงวันไหน?",
    "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_en": "Who performed with Tina Parekh?",
    "question_th": "ใครแสดงร่วมกับ 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_en": "What position did the team with the total score of 41/60 get?",
    "question_th": "ทีมที่มีคะแนนรวม 41/60 ได้ตำแหน่งอะไร?",
    "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_en": "Which round 5 Grand Prix had Daijiro Hiura at pole position? ",
    "question_th": " กรังด์ปรีซ์ 5 รอบใดที่ไดจิโระ ฮิอุระได้ตำแหน่งโพลโพซิชั่น?",
    "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_en": "What grand prixs did Daijiro Hiura win? ",
    "question_th": " ไดจิโระ ฮิอุระ คว้าแชมป์กรังปรีซ์อะไรได้บ้าง?",
    "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_en": "Who had the fastest lap in the Dutch TT Grand Prix? ",
    "question_th": " ใครมีรอบเร็วที่สุดในการแข่งขัน 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_en": "Luis Salom had the fastest lap on which circuits? ",
    "question_th": "Luis Salom ทำรอบได้เร็วที่สุดในสนามใด",
    "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_en": "When 15 is the number overall what is the original air date?",
    "question_th": "เมื่อ 15 เป็นตัวเลขโดยรวม ออนแอร์เดิมคือวันไหน?",
    "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_en": "When 1 is the number in series who is the director?",
    "question_th": "เมื่อ 1 เป็นตัวเลขในชุดใครเป็นผู้กำกับ?",
    "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_en": "When did the episode first air that had a production code of 102?",
    "question_th": "ออกอากาศตอนแรกที่มีรหัสการผลิต 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_en": "When did the episodes first air that had a production code of 107?",
    "question_th": "ออกอากาศตอนแรกโดยมีรหัสการผลิต 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_en": "What is the highest production code of an episode written by Tim Loane?",
    "question_th": "รหัสการผลิตสูงสุดของตอนที่เขียนโดย 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_en": "How many editions have a most wins value of Franco Marvulli (4)?",
    "question_th": "มีกี่ฉบับที่มีมูลค่าการชนะมากที่สุดของ 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_en": "Name the total number in the series written by john banas and directed by pino amenta",
    "question_th": "ตั้งชื่อจำนวนทั้งหมดในซีรีส์ที่เขียนโดย john banas และกำกับโดย 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_en": "What was the little league team from Kentucky when the little league team from Illinois was Rock Falls LL Rock Falls?",
    "question_th": "ทีมลีกเล็กๆ จากรัฐเคนตักกี้คืออะไร เมื่อทีมลีกเล็กๆ จากอิลลินอยส์คือ 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_en": "What was the little league team from Indiana when the little league team from Michigan was Midland Northeast LL Midland?",
    "question_th": "ทีมลีกเล็ก ๆ จากอินเดียนาคืออะไรเมื่อทีมลีกเล็ก ๆ จากมิชิแกนคือ 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_en": "What was the little league team from Kentucky when the little league team from Indiana and Wisconsin were Brownsburg LL Brownsburg and Merrill LL Merrill?",
    "question_th": "ทีมลีกเล็กๆ จากรัฐเคนตักกี้คืออะไร เมื่อทีมลีกเล็กๆ จากอินเดียนาและวิสคอนซินคือ Brownsburg LL Brownsburg และ 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_en": "What was the little league team from Ohio when the little league team from Kentucky was Warren County South LL Bowling Green?",
    "question_th": "ทีมลีกเล็กๆ จากโอไฮโอคืออะไร เมื่อทีมลีกเล็กๆ จากรัฐเคนตักกี้คือ 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_en": "What was the little league team from Michigan when the little league team from Indiana was Terre Haute North LL Terre Haute? ",
    "question_th": " ทีมลีกเล็ก ๆ จากมิชิแกนคืออะไรเมื่อทีมลีกเล็ก ๆ จากอินเดียนาคือ 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_en": "What was the little league team from Kentucky when the little league team from Michigan was Grosse Pointe Farms-City LL Grosse Pointe Farms? ",
    "question_th": " ทีมลีกเล็ก ๆ จากรัฐเคนตักกี้คืออะไรเมื่อทีมลีกเล็ก ๆ จากมิชิแกนคือ 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_en": " How many table points are listed for the deficit is +194? ",
    "question_th": " มีจุดตารางกี่จุดที่แสดงการขาดดุลคือ +194",
    "context": "CREATE TABLE table_18505065_1 (table_points VARCHAR, difference VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(played) FROM table_18505065_1 WHERE against = 175",
    "question_en": " How many games had a deficit of 175? ",
    "question_th": " มีกี่เกมที่มีการขาดดุล 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_en": "What is the theme song for Magarikado no Kanojo?",
    "question_th": "เพลงประกอบของ 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_en": "Who is the star of the program on Thursdays 22:00~22:54 2005-04-xx to 2005-06-xx?",
    "question_th": "ใครคือดาวเด่นของรายการในวันพฤหัสบดี เวลา 22:00~22:54 2548-04-xx ถึง 2548-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_en": "What is the title with an average rating of 22.4%?",
    "question_th": "ชื่อเรื่องที่มีคะแนนเฉลี่ย 22.4% คืออะไร?",
    "context": "CREATE TABLE table_18540104_1 (romaji_title VARCHAR, average_ratings VARCHAR)"
  },
  {
    "answer": "SELECT MAX(episodes) FROM table_18540104_1",
    "question_en": "What is maximum number of episodes for a show?",
    "question_th": "การแสดงสามารถแสดงได้สูงสุดกี่ตอน?",
    "context": "CREATE TABLE table_18540104_1 (episodes INTEGER)"
  },
  {
    "answer": "SELECT japanese_title FROM table_18540104_1 WHERE average_ratings = \"11.6%\"",
    "question_en": "What is the Japanese title with an average rating of 11.6%?",
    "question_th": "ชื่อภาษาญี่ปุ่นที่มีเรตติ้งเฉลี่ย 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_en": "Who were the starting actors in the time frame of  tuesday 22:00~22:54 8 april 2008 to 17 june 2008?",
    "question_th": "ใครคือนักแสดงเริ่มต้นในช่วงเวลาวันอังคาร 22:00~22:54 วันที่ 8 เมษายน 2551 ถึง 17 มิถุนายน 2551",
    "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_en": "What are the japanese title(s) for tv asahi?",
    "question_th": "ชื่อภาษาญี่ปุ่นของ 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_en": "How many titles had an average rating of 8.9%?",
    "question_th": "มีกี่เรื่องที่มีคะแนนเฉลี่ย 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_en": "What is the average rating for tv asahi?",
    "question_th": "คะแนนเฉลี่ยของ 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_en": "What is the top speed of a 4-speed automatic with production in 2002-2005?",
    "question_th": "ความเร็วสูงสุดของเกียร์อัตโนมัติ 4 สปีดที่มีการผลิตในปี 2545-2548 คือเท่าใด?",
    "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_en": "What is the top speed of a 5-speed manual transmission produced in 2006-2009?",
    "question_th": "ความเร็วสูงสุดของเกียร์ธรรมดา 5 สปีดที่ผลิตในปี 2549-2552 คือเท่าไร?",
    "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_en": "What is the acceleration 0-100km/h that was produced in 2002-2006?",
    "question_th": "อัตราเร่ง 0-100 กม./ชม. ที่ผลิตในปี 2545-2549 เป็นเท่าใด",
    "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_en": "What was the township with a geo ID of 3807116660?",
    "question_th": "เมืองที่มีรหัสทางภูมิศาสตร์ 3807116660 คืออะไร",
    "context": "CREATE TABLE table_18600760_3 (township VARCHAR, geo_id VARCHAR)"
  },
  {
    "answer": "SELECT county FROM table_18600760_3 WHERE longitude = \"-102.302775\"",
    "question_en": "What was the county with a longitude of -102.302775?",
    "question_th": "เคาน์ตีที่มีลองจิจูด -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_en": "What was the land area in sqmi that has a latitude of 48.763937?",
    "question_th": "พื้นที่ดินในตารางไมล์ที่มีละติจูด 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_en": "What was the county with a latitude of 46.770977?",
    "question_th": "เคาน์ตีที่มีละติจูด 46.770977 คืออะไร",
    "context": "CREATE TABLE table_18600760_3 (county VARCHAR, latitude VARCHAR)"
  },
  {
    "answer": "SELECT latitude FROM table_18600760_3 WHERE township = \"Clearwater\"",
    "question_en": "What was the latitude of the Clearwater townsship?",
    "question_th": "ละติจูดของเมืองเคลียร์วอเตอร์คืออะไร?",
    "context": "CREATE TABLE table_18600760_3 (latitude VARCHAR, township VARCHAR)"
  },
  {
    "answer": "SELECT longitude FROM table_18600760_3 WHERE latitude = \"48.075823\"",
    "question_en": "What was the longitude of the township with a latitude of 48.075823?",
    "question_th": "ลองจิจูดของเมืองที่มีละติจูด 48.075823 คือเท่าใด",
    "context": "CREATE TABLE table_18600760_3 (longitude VARCHAR, latitude VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_18621456_22 WHERE legs_lost = 41",
    "question_en": "Who is the player with 41 legs lost?",
    "question_th": "นักเตะที่หายไป 41 ขาคือใคร?",
    "context": "CREATE TABLE table_18621456_22 (player VARCHAR, legs_lost VARCHAR)"
  },
  {
    "answer": "SELECT MAX(legs_lost) FROM table_18621456_22",
    "question_en": "What is the most legs lost of all?",
    "question_th": "ขาที่สูญเสียไปมากที่สุดคืออะไร?",
    "context": "CREATE TABLE table_18621456_22 (legs_lost INTEGER)"
  },
  {
    "answer": "SELECT parallel_bars FROM table_18662026_10 WHERE floor = \"14.200\"",
    "question_en": "If the floor number is 14.200, what is the number for the parallel bars?",
    "question_th": "ถ้าเลขพื้นคือ 14.200 เลขของแท่งขนานคือเลขอะไร?",
    "context": "CREATE TABLE table_18662026_10 (parallel_bars VARCHAR, floor VARCHAR)"
  },
  {
    "answer": "SELECT gymnast FROM table_18662026_10 WHERE parallel_bars = \"16.150\"",
    "question_en": "If the parallel bars is 16.150, who is the gymnast?",
    "question_th": "ถ้าคานขนานคือ 16.150 ใครคือนักกายกรรม?",
    "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_en": "If the parallel bars is 14.025, what is the total number of gymnasts?",
    "question_th": "ถ้าคานขนานคือ 14.025 จำนวนนักยิมนาสติกทั้งหมดเป็นเท่าใด",
    "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_en": "If the horizontal bar is n/a and the floor is 14.175, what is the number for the parallel bars?",
    "question_th": "ถ้าแถบแนวนอนไม่มีข้อมูล และพื้นเป็น 14.175 ตัวเลขของแถบขนานคือเท่าใด",
    "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_en": "When 19 is the stage who is the points classification?",
    "question_th": "เมื่อ 19 ขึ้นเวทีใครเป็นผู้แบ่งคะแนน?",
    "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öfkvist\"",
    "question_en": "When thomas löfkvist is the  young rider classification and alessandro petacchi is the points classification who are the general classifications? ",
    "question_th": " เมื่อ Thomas Löfkvist อยู่ในประเภทนักบิดรุ่นเยาว์ และ Alessandro Petacchi เป็นผู้จัดประเภทคะแนน ใครคือผู้จัดประเภททั่วไป?",
    "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öfkvist\"",
    "question_en": "When  thomas löfkvist is the general classification who is the winner?",
    "question_th": "เมื่อโทมัส ลอฟควิสต์อยู่ในประเภททั่วไป ใครเป็นผู้ชนะ?",
    "context": "CREATE TABLE table_18733814_2 (winner VARCHAR, general_classification VARCHAR)"
  },
  {
    "answer": "SELECT points_classification FROM table_18733814_2 WHERE winner = \"Philippe Gilbert\"",
    "question_en": "When philippe gilbert is the winner who is the points classification?",
    "question_th": "เมื่อฟิลิปป์ กิลเบิร์ตเป็นผู้ชนะ ใครเป็นผู้แบ่งคะแนน?",
    "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_en": "When danilo di luca is the winner who is the general classification? ",
    "question_th": " เมื่อดานิโล ดิ ลูก้าเป็นผู้ชนะ ใครคือประเภททั่วไป?",
    "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_en": "Name the minimum number of reservoir for gnis query link where numbers lake gnis query link being 60",
    "question_th": "ตั้งชื่อจำนวนอ่างเก็บน้ำขั้นต่ำสำหรับลิงก์แบบสอบถาม gnis โดยที่ตัวเลขลิงก์แบบสอบถาม lake gnis เป็น 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_en": "Name the most numbers dam and gnis query link for borough or census area for fairbanks north star",
    "question_th": "ตั้งชื่อเขื่อนที่มีจำนวนมากที่สุดและลิงก์แบบสอบถาม gnis สำหรับเขตเลือกตั้งหรือพื้นที่การสำรวจสำมะโนประชากรสำหรับดาวเหนือของแฟร์แบงค์",
    "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_en": "What is the location for the club with the nickname the bears?",
    "question_th": "สโมสรชื่อเล่นหมีมีที่ตั้งอยู่ที่ไหน?",
    "context": "CREATE TABLE table_18752986_1 (location VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT nickname FROM table_18752986_1 WHERE coach = \"Steve Mayne\"",
    "question_en": "What is the code nickname where Steve Mayne is the coach?",
    "question_th": "รหัสฉายาที่ Steve Mayne เป็นโค้ชคืออะไร?",
    "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_en": "What is the dates where Hillcrest Reserve is the home grounds?",
    "question_th": "Hillcrest Reserve เป็นสนามเหย้าวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_18752986_1 (first_season VARCHAR, home_ground_s_ VARCHAR)"
  },
  {
    "answer": "SELECT captain FROM table_18752986_1 WHERE location = \"Caversham\"",
    "question_en": "For location Caversham, what is the name of the captain?",
    "question_th": "สำหรับสถานที่เคเวอร์แชม กัปตันชื่ออะไร?",
    "context": "CREATE TABLE table_18752986_1 (captain VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT home_ground_s_ FROM table_18752986_1 WHERE nickname = \"Swans\"",
    "question_en": "With the nickname the swans, what is the home ground?",
    "question_th": "ด้วยฉายาหงส์เหย้าคืออะไร?",
    "context": "CREATE TABLE table_18752986_1 (home_ground_s_ VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_18847692_2 WHERE opponent = \"Washington Redskins\"",
    "question_en": "What is the record when the opponent is washington redskins?",
    "question_th": "บันทึกเมื่อฝ่ายตรงข้ามคือวอชิงตันอินเดียนแดงคืออะไร?",
    "context": "CREATE TABLE table_18847692_2 (record VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT MIN(opponents) FROM table_18847692_2",
    "question_en": "What is the minimum number of opponents?",
    "question_th": "จำนวนคู่ต่อสู้ขั้นต่ำคือเท่าไร?",
    "context": "CREATE TABLE table_18847692_2 (opponents INTEGER)"
  },
  {
    "answer": "SELECT COUNT(province) FROM table_1888051_1 WHERE area__km²_ = \"1605.35\"",
    "question_en": "when area (km²) is 1605.35, how many provinces are there?",
    "question_th": "เมื่อพื้นที่ (กม.²) คือ 1605.35 มีกี่จังหวัด?",
    "context": "CREATE TABLE table_1888051_1 (province VARCHAR, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT area__km²_ FROM table_1888051_1 WHERE province = \"Monseñor Nouel\"",
    "question_en": "when province is monseñor nouel, what is the area (km²)?",
    "question_th": "เมื่อจังหวัดเป็นมอนเซนญอร์ นูเอล พื้นที่ (กม.²) เป็นเท่าใด",
    "context": "CREATE TABLE table_1888051_1 (area__km²_ VARCHAR, province VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(capital) FROM table_1888051_1 WHERE area__km²_ = \"1111.14\"",
    "question_en": "How many capitals are there when area (km²) is 1111.14?",
    "question_th": "มีเมืองหลวงกี่แห่งเมื่อพื้นที่ (กม. ²) คือ 1111.14",
    "context": "CREATE TABLE table_1888051_1 (capital VARCHAR, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT area__km²_ FROM table_1888051_1 WHERE capital = \"Nagua\"",
    "question_en": "Nagua has the area (km²) of?",
    "question_th": "นากัว มีพื้นที่ (กม.²) ประมาณ?",
    "context": "CREATE TABLE table_1888051_1 (area__km²_ VARCHAR, capital VARCHAR)"
  },
  {
    "answer": "SELECT period_in_office FROM table_1889233_2 WHERE parliament = \"11th\"",
    "question_en": "During what period were parliament 11th?",
    "question_th": "รัฐสภาสมัยใดเป็นสมัยที่ 11?",
    "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_en": "what parliament's name is lina loh woon lee?",
    "question_th": "รัฐสภาชื่ออะไร ลีนา โลอุน ลี?",
    "context": "CREATE TABLE table_1889233_2 (parliament VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT parliament FROM table_1889233_2 WHERE general_election_contested = 1997",
    "question_en": "What number parliament held it's election in 1997?",
    "question_th": "มีการเลือกตั้งรัฐสภาหมายเลขใดในปี 2540?",
    "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_en": "What period were conscituency contested is aljunied grc?",
    "question_th": "ช่วงเวลาใดที่การเลือกตั้งถูกโต้แย้งคือ 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_en": "Which parliament is sylvia lim swee lian?",
    "question_th": "ซิลเวีย ลิม สวี เหลียน คือรัฐสภาใด",
    "context": "CREATE TABLE table_1889233_2 (parliament VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_1893276_2 WHERE eliminated = \"Jim\"",
    "question_en": "When jim is eliminated what is the finish?",
    "question_th": "เมื่อจิมตกรอบ จุดจบจะเป็นเช่นไร?",
    "context": "CREATE TABLE table_1893276_2 (finish VARCHAR, eliminated VARCHAR)"
  },
  {
    "answer": "SELECT reward FROM table_1893276_2 WHERE air_date = \"October 6, 2005\"",
    "question_en": "How many rewards are there for air date October 6, 2005?",
    "question_th": "ออกอากาศวันที่ 6 ตุลาคม 2548 มีรางวัลทั้งหมดกี่รางวัล?",
    "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_en": "What was eliminated on the air date of November 3, 2005?",
    "question_th": "อะไรถูกตัดออกในวันที่ออกอากาศวันที่ 3 พฤศจิกายน พ.ศ. 2548?",
    "context": "CREATE TABLE table_1893276_2 (eliminated VARCHAR, air_date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(air_date) FROM table_1893276_2 WHERE eliminated = \"Morgan\"",
    "question_en": "How many air dates were there when Morgan was eliminated?",
    "question_th": "มีวันที่ออกอากาศกี่วันที่มอร์แกนถูกตกรอบ?",
    "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_en": "When  same target; linebacker ii offensive is the same target what is the unit?",
    "question_th": "เมื่อเป้าหมายเดียวกัน linebacker ii รุกก็เป้าเดียวกัน ยูนิตอะไรครับ?",
    "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_en": "When hit by sam at 38,500 feet just after bomb release was the cause of loss what is the mission/target?",
    "question_th": "เมื่อแซมโดนที่ความสูง 38,500 ฟุตหลังปล่อยระเบิดเป็นสาเหตุของการสูญเสีย ภารกิจ/เป้าหมายคืออะไร?",
    "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_en": "When 7th bw attached to 43rd sw is the unit what is the b-52 model?",
    "question_th": "เมื่อ 7th bw ติดอยู่กับ 43 sw มีตัวเครื่อง b-52 รุ่นอะไรครับ?",
    "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_en": "When 441st bs, 7th bw is the unit what is the b-52 model?",
    "question_th": "เมื่อ 441st bs, 7th bw อยู่ในยูนิต b-52 รุ่นอะไรครับ?",
    "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_en": "When  27 gp h-e bombs the capacity of the bomb what is the cause of loss?",
    "question_th": "เมื่อ 27 gp เขาระเบิดความจุของระเบิด อะไรเป็นสาเหตุของการสูญเสีย?",
    "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_en": "Name the least clubs involved for leagues being none for semi finals",
    "question_th": "ตั้งชื่อสโมสรน้อยที่สุดที่เกี่ยวข้องกับลีกที่ไม่มีในรอบรองชนะเลิศ",
    "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_en": "Name the new entries this round for third round",
    "question_th": "ตั้งชื่อรายการใหม่รอบนี้เป็นรอบที่สาม",
    "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_en": "Name the leagues entering this round for 4",
    "question_th": "ตั้งชื่อลีกที่เข้ารอบนี้ 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_en": "Name the least clubs remaining",
    "question_th": "ตั้งชื่อไม้กอล์ฟที่เหลืออยู่น้อยที่สุด",
    "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_en": "When conjunction junction is the episode title and the music is by bob dorough who is the performer?",
    "question_th": "เมื่อทางแยกเป็นชื่อตอน และเพลงเป็นของ Bob Dorough ใครคือนักแสดง?",
    "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_en": "When interjection is the subject how many performers are there?",
    "question_th": "เมื่อคำอุทานเป็นเรื่องที่มีนักแสดงกี่คน?",
    "context": "CREATE TABLE table_191105_2 (performed_by VARCHAR, subject VARCHAR)"
  },
  {
    "answer": "SELECT episode_title FROM table_191105_2 WHERE subject = \"pronoun\"",
    "question_en": "When pronoun is the subject what is the episode title?",
    "question_th": "เมื่อสรรพนามเป็นประธาน ชื่อเรื่องตอนคืออะไร?",
    "context": "CREATE TABLE table_191105_2 (episode_title VARCHAR, subject VARCHAR)"
  },
  {
    "answer": "SELECT lyrics_by FROM table_191105_2 WHERE subject = \"interjection\"",
    "question_en": "When interjection is the subject who are the lyrics by?",
    "question_th": "เมื่อคำอุทานเป็นเรื่องของใครเป็นเนื้อเพลงโดย?",
    "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_en": "When zachary sanders is the performer how many first aired are there?",
    "question_th": "ตอนที่แซคารี แซนเดอร์สเป็นนักแสดง มีการออกอากาศครั้งแรกกี่รายการ?",
    "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_en": "When zachary sanders is the performer how many people is the music by?",
    "question_th": "เมื่อแซคารี แซนเดอร์สเป็นนักแสดง มีคนเล่นดนตรีกี่คน?",
    "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_en": "Name the world rank for market value 17.2",
    "question_th": "ตั้งชื่ออันดับโลกสำหรับมูลค่าตลาด 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_en": "Name the market value for rhb capital",
    "question_th": "ตั้งชื่อมูลค่าตลาดสำหรับทุน rb",
    "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_en": "Name the profits for market value of 11.8",
    "question_th": "ตั้งชื่อกำไรสำหรับมูลค่าตลาด 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_en": "Name the industry for revenue being 2.1",
    "question_th": "ตั้งชื่ออุตสาหกรรมสำหรับรายได้เป็น 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_en": "Name the total number of industry for maxis",
    "question_th": "ตั้งชื่อจำนวนอุตสาหกรรมทั้งหมดสำหรับแม็กซี่",
    "context": "CREATE TABLE table_19112_3 (industry VARCHAR, company VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(high_rebounds) FROM table_19169116_6 WHERE date = \"February 26\"",
    "question_en": "how many games with high rebounds where in february 26",
    "question_th": "มีกี่เกมที่มีการรีบาวน์สูงในวันที่ 26 กุมภาพันธ์",
    "context": "CREATE TABLE table_19169116_6 (high_rebounds VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT institute FROM table_1919538_1 WHERE democratic_renewal = \"18.0% – 22.0%\"",
    "question_en": "which institutes gave the democratic renewal 18.0% – 22.0% on a poll from October 6, 1985?",
    "question_th": "สถาบันไหนให้การฟื้นฟูประชาธิปไตย 18.0% – 22.0% จากการสำรวจเมื่อวันที่ 6 ตุลาคม 2528?",
    "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_en": "Name the number of seats to be won being % of popular vote at 6.88%",
    "question_th": "ระบุจำนวนที่นั่งที่จะได้รับเป็น % ของคะแนนนิยม 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_en": "Name the number of total votes for # of seats won being 30",
    "question_th": "ระบุจำนวนคะแนนโหวตทั้งหมดสำหรับ # ที่นั่งที่ได้รับคือ 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_en": "Name the number of candidates for # of seats won being 43",
    "question_th": "ระบุจำนวนผู้สมัคร #ที่นั่งที่ได้รับ คือ 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_en": "Name the number of leaders for % of popular vote being 11.05%",
    "question_th": "ระบุจำนวนผู้นำคิดเป็น % ของคะแนนนิยม 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_en": "What is the location that has the 12th district?",
    "question_th": "ตำบลที่ 12 มีสถานที่ใดบ้าง?",
    "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_en": "How many election results in 2012 had a Cook PVI of D+16?",
    "question_th": "ผลการเลือกตั้งในปี 2555 มี Cook PVI อยู่ที่ D+16 กี่ครั้ง",
    "context": "CREATE TABLE table_19283806_4 (cook_pvi VARCHAR)"
  },
  {
    "answer": "SELECT cook_pvi FROM table_19283806_4 WHERE representative = \"Mike Thompson\"",
    "question_en": "What is the Cook PVI for the location that has a representative of Mike Thompson?",
    "question_th": "Cook PVI สำหรับสถานที่ที่มีตัวแทนของ 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_en": "How many locations have a median household income in 2011 of $71,479?",
    "question_th": "มีสถานที่ใดบ้างที่มีรายได้เฉลี่ยของครัวเรือนในปี 2011 ที่ 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_en": "What is the 2012 election results for locations whose representative is Barbara Lee?",
    "question_th": "ผลการเลือกตั้งปี 2012 สำหรับสถานที่ซึ่งมีตัวแทนคือ 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_en": "What is the latest season number for a show with a production code of 816?",
    "question_th": "หมายเลขซีซันล่าสุดของรายการที่มีรหัสการผลิต 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_en": "How many U.S. air dates were from an episode in Season 4?",
    "question_th": "จำนวนวันที่ออกอากาศของสหรัฐอเมริกามาจากตอนหนึ่งในซีซัน 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_en": "How many different C_{high} values are there for the good category?",
    "question_th": "หมวดหมู่ที่ดีมีค่า C_{high} ที่แตกต่างกันกี่ค่า",
    "context": "CREATE TABLE table_1942366_9 (high VARCHAR, category VARCHAR)"
  },
  {
    "answer": "SELECT STRUCT(high) FROM table_1942366_9 WHERE STRUCT(low) = \"250.5\"",
    "question_en": "What's the C_{high} when the C_{low} value is 250.5?",
    "question_th": "C_{high} คืออะไรเมื่อค่า C_{low} คือ 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_en": "What's the C_{low} value when C_{high} is 12.0?",
    "question_th": "ค่า C_{low} คืออะไรเมื่อ C_{high} เท่ากับ 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_en": "In how many different categories is the value of C_{low} 35.5?",
    "question_th": "ค่า 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_en": "How many members were in the group that sold 65 million albums and singles?",
    "question_th": "มีสมาชิกกี่คนในกลุ่มที่ขายอัลบั้มและซิงเกิลได้ 65 ล้านชุด?",
    "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_en": "What group had 29 studio albums?",
    "question_th": "วงใดมีสตูดิโออัลบั้มถึง 29 อัลบั้ม?",
    "context": "CREATE TABLE table_19439814_1 (girl_group VARCHAR, studio_albums VARCHAR)"
  },
  {
    "answer": "SELECT MIN(ålesund) FROM table_19439864_2 WHERE bergen = 88",
    "question_en": "When bergen is 88, what is the alesund?",
    "question_th": "เมื่อเบอร์เกนอายุ 88 ปี alesund คืออะไร?",
    "context": "CREATE TABLE table_19439864_2 (ålesund INTEGER, bergen VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(elverum) FROM table_19439864_2 WHERE song = \"Et sted i Scandinavia\"",
    "question_en": "How many elverum are tehre for et sted i scandinavia?",
    "question_th": "สแกนดิเนเวียมี elverum กี่อัน?",
    "context": "CREATE TABLE table_19439864_2 (elverum VARCHAR, song VARCHAR)"
  },
  {
    "answer": "SELECT total FROM table_19439864_2 WHERE song = \"Radio Luxembourg\"",
    "question_en": "What was the total for radio luxembourg?",
    "question_th": "วิทยุลักเซมเบิร์กมียอดรวมเท่าไร?",
    "context": "CREATE TABLE table_19439864_2 (total VARCHAR, song VARCHAR)"
  },
  {
    "answer": "SELECT MIN(stavanger) FROM table_19439864_2 WHERE oslo = 48",
    "question_en": "When oslo is 48, what is stavanger?",
    "question_th": "เมื่อออสโลอายุ 48 สตาวังเงร์คืออะไร?",
    "context": "CREATE TABLE table_19439864_2 (stavanger INTEGER, oslo VARCHAR)"
  },
  {
    "answer": "SELECT MIN(total) FROM table_19439864_2",
    "question_en": "What is the lowest total?",
    "question_th": "รวมต่ำสุดคือเท่าไร?",
    "context": "CREATE TABLE table_19439864_2 (total INTEGER)"
  },
  {
    "answer": "SELECT MIN(tromsø) FROM table_19439864_2 WHERE total = 740",
    "question_en": "When the total score is 740, what is tromso?",
    "question_th": "เมื่อคะแนนรวม 740 ทรอมโซคืออะไร?",
    "context": "CREATE TABLE table_19439864_2 (tromsø INTEGER, total VARCHAR)"
  },
  {
    "answer": "SELECT group_8 FROM table_19523142_5 WHERE group_12 = \"Persinab Nabire\"",
    "question_en": "Who played in group 8 when Persinab Nabire played in Group 12?",
    "question_th": "ใครเคยเล่นในกลุ่ม 8 เมื่อเปอร์ซินับ นาบีเรเล่นในกลุ่ม 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_en": "Who played in group 11 when Persipal Palu played in group 12?",
    "question_th": "ใครเล่นในกลุ่ม 11 เมื่อเปอร์ซิปาล ปาลูเล่นในกลุ่ม 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_en": "Who played in group 12 when persikutim east kutai played in group 10?",
    "question_th": "ใครเคยเล่นในกลุ่ม 12 เมื่อ เปอร์ซิคูติม อีสต์ คูไต เล่นในกลุ่ม 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_en": "When  persikos sorong city played in group 11, who played in group 7?",
    "question_th": "เมื่อเปซิโกส โซรองซิตี้เล่นในกลุ่ม 11 ใครเล่นในกลุ่ม 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_en": "Nusa Ina only played once while group 7 played.",
    "question_th": "นูซา อินะ เล่นเพียงครั้งเดียวในขณะที่กลุ่ม 7 เล่น",
    "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_en": "Who played in group 12 when Group 9 played psid jombang?",
    "question_th": "ใครเล่นในกลุ่ม 12 ตอนกลุ่ม 9 เล่น Psid Jombang?",
    "context": "CREATE TABLE table_19523142_5 (group_12 VARCHAR, group_9 VARCHAR)"
  },
  {
    "answer": "SELECT MAX(whole_weeks) FROM table_19542477_9",
    "question_en": "What is the longest number of weeks any 1 song was at number #1?",
    "question_th": "จำนวนสัปดาห์ที่ยาวนานที่สุดที่ 1 เพลงอยู่ในอันดับ 1 คือเท่าไร?",
    "context": "CREATE TABLE table_19542477_9 (whole_weeks INTEGER)"
  },
  {
    "answer": "SELECT song_s__—_weeks FROM table_19542477_9 WHERE artist_s_ = \"One Direction\"",
    "question_en": "What is the title of every song, and how many weeks was each song at #1 for One Direction?",
    "question_th": "ทุกเพลงชื่ออะไร และแต่ละเพลงขึ้นอันดับ 1 ของ One Direction ได้นานกี่สัปดาห์?",
    "context": "CREATE TABLE table_19542477_9 (song_s__—_weeks VARCHAR, artist_s_ VARCHAR)"
  },
  {
    "answer": "SELECT song_s__—_weeks FROM table_19542477_9 WHERE issue_years = 2012 AND artist_s_ = \"Rihanna\"",
    "question_en": "What is the title of every song, and how many weeks was each song at #1 for Rihanna in 2012?",
    "question_th": "ทุกเพลงชื่ออะไร และแต่ละเพลงติดอันดับ 1 ของริฮานน่าในปี 2012 กี่สัปดาห์",
    "context": "CREATE TABLE table_19542477_9 (song_s__—_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_en": "What NHL team was the player from Calgary Centennials (WCHL) drafted for?",
    "question_th": "ผู้เล่นจาก Calgary Centennials (WCHL) ร่างมาเพื่อทีม NHL ใด",
    "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_en": "Who came from the University of Michigan (NCAA) team?",
    "question_th": "ใครมาจากทีมมหาวิทยาลัยมิชิแกน (NCAA)?",
    "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_en": "How many players have the pick number 166?",
    "question_th": "มีผู้เล่นหมายเลข 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_en": "What is the nationality of the player from the University of Michigan (NCAA)?",
    "question_th": "ผู้เล่นจากมหาวิทยาลัยมิชิแกน (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_en": "What team did Russ Wiechnik, on the centre position, come from?",
    "question_th": "รัส วีชนิค ตำแหน่งเซ็นเตอร์ มาจากทีมไหน?",
    "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_en": "What place would you be in if your rank by average is less than 2.0?",
    "question_th": "คุณจะอยู่ในตำแหน่งใดหากอันดับของคุณโดยเฉลี่ยน้อยกว่า 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_en": "What is the couples name where the average is 15.9?",
    "question_th": "คู่รักชื่ออะไรเฉลี่ย 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_en": "If the total points is 50.5, what is the total number of dances?",
    "question_th": "ถ้าคะแนนรวม 50.5 เต้นทั้งหมดเป็นจำนวนเท่าไร?",
    "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_en": "If your rank by average is 9, what is the name of the couple?",
    "question_th": "ถ้าค่าเฉลี่ยของคุณคือ 9 คู่รักชื่ออะไร?",
    "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_en": "Name the number of party for richard l. hanna (r) 53.1% mike arcuri (d) 46.9%",
    "question_th": "ตั้งชื่อหมายเลขปาร์ตี้ของ Richard L. ฮันนา (ขวา) 53.1% ไมค์ อาร์คูรี (ง) 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_en": "Name the party for new york 4",
    "question_th": "ตั้งชื่อปาร์ตี้ให้นิวยอร์ค 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_en": "Name the first elected for re-elected and brian higgins",
    "question_th": "ตั้งชื่อผู้ที่ได้รับเลือกเป็นคนแรกและไบรอัน ฮิกกินส์",
    "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_en": "Name the party for yvette clarke (d) 90.6% hugh carr (r) 9.4%",
    "question_th": "ตั้งชื่อพรรคให้ อีเว็ตต์ คลาร์ก (ง) 90.6% ฮิวจ์ คาร์ (ขวา) 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_en": "Name the result for new york 8",
    "question_th": "ตั้งชื่อผลลัพธ์สำหรับ 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_en": "Name the incumbent for lost renomination republican hold",
    "question_th": "ระบุชื่อผู้ดำรงตำแหน่งที่แพ้การเสนอชื่อจากพรรครีพับลิกัน",
    "context": "CREATE TABLE table_19753079_4 (incumbent VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_19753079_4 WHERE first_elected = 1992",
    "question_en": "Name the result for first elected being 1992",
    "question_th": "ตั้งชื่อผลการเลือกตั้งครั้งแรกคือปี 1992",
    "context": "CREATE TABLE table_19753079_4 (result VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_19753079_4 WHERE district = \"Alabama 6\"",
    "question_en": "Name the incumbent for alabama 6",
    "question_th": "ตั้งชื่อผู้ดำรงตำแหน่งของอลาบามา 6",
    "context": "CREATE TABLE table_19753079_4 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(song) FROM table_19763199_5 WHERE artist = \"Julia Bermejo\"",
    "question_en": "Name the number of song for julia bermejo",
    "question_th": "ตั้งชื่อหมายเลขเพลงของ Julia bermejo",
    "context": "CREATE TABLE table_19763199_5 (song VARCHAR, artist VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(song) FROM table_19763199_5 WHERE artist = \"Solydo\"",
    "question_en": "Name the number of song for solydo",
    "question_th": "บอกชื่อเพลงโซลิโด้",
    "context": "CREATE TABLE table_19763199_5 (song VARCHAR, artist VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_19765685_2 WHERE city = \"Katowice\"",
    "question_en": "What tournament is in katowice?",
    "question_th": "คาโตวีตเซมีทัวร์นาเมนท์อะไรบ้าง?",
    "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_en": "How many tournaments are also currently known as the hp open?",
    "question_th": "ปัจจุบันมีทัวร์นาเมนท์กี่รายการที่เรียกว่า 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_en": "How many defending champs from thailand?",
    "question_th": "กองหลังทีมชาติไทยมีกี่คน?",
    "context": "CREATE TABLE table_19765685_2 (defending_champion VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_19789597_5 WHERE date = \"June 12\"",
    "question_en": "Name the opponent for june 12",
    "question_th": "ตั้งชื่อคู่ต่อสู้วันที่ 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_en": "Name the total number of date for  l 63-77",
    "question_th": "ตั้งชื่อจำนวนวันที่ทั้งหมดสำหรับ 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_en": "Name the most number for viewers being 6.95",
    "question_th": "บอกชื่อจำนวนคนดูมากที่สุดคือ 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_en": "Name the total number of viewers for audience share in timeslot for 10.2%",
    "question_th": "ตั้งชื่อจำนวนผู้ชมทั้งหมดสำหรับส่วนแบ่งผู้ชมในช่วงเวลา 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_en": "Name the timeslot for 6.51 viewers",
    "question_th": "ตั้งชื่อช่วงเวลาสำหรับผู้ชม 6.51",
    "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_en": "Name the uk air date for audience share in timeslot in 7.3%",
    "question_th": "ตั้งชื่อวันที่ออกอากาศในสหราชอาณาจักรสำหรับส่วนแบ่งผู้ชมในช่วงเวลา 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_en": "name the total number of timeslot for number 1",
    "question_th": "ตั้งชื่อจำนวนช่วงเวลาทั้งหมดสำหรับหมายเลข 1",
    "context": "CREATE TABLE table_19834691_4 (timeslot VARCHAR, _number VARCHAR)"
  },
  {
    "answer": "SELECT city___town FROM table_1984697_53 WHERE principal = \"Mark Fletcher\"",
    "question_en": "Where's the school that Mark Fletcher is the principal of?",
    "question_th": "โรงเรียนที่มาร์ค เฟลทเชอร์เป็นอาจารย์ใหญ่อยู่ที่ไหน?",
    "context": "CREATE TABLE table_1984697_53 (city___town VARCHAR, principal VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(website) FROM table_1984697_53 WHERE size = 1939",
    "question_en": "How many websites are there for the school with 1939 students?",
    "question_th": "โรงเรียนที่มีนักเรียน 1939 คนมีกี่เว็บไซต์",
    "context": "CREATE TABLE table_1984697_53 (website VARCHAR, size VARCHAR)"
  },
  {
    "answer": "SELECT principal FROM table_1984697_53 WHERE school = \"Edgewood High school\"",
    "question_en": "Who's the principal of Edgewood High School?/",
    "question_th": "ใครคืออาจารย์ใหญ่ของ 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_en": "Where is Bloomington High School North?",
    "question_th": "โรงเรียนมัธยมบลูมิงตันเหนือ อยู่ที่ไหน",
    "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_en": "Who was on the pole position in the Texaco/Havoline 200 race?",
    "question_th": "ใครได้ตำแหน่งโพลโพซิชั่นในการแข่งขัน Texaco/Havoline 200?",
    "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_en": "Who did the fastest lap in the race won by Paul Tracy, with Emerson Fittipaldi at the pole position?",
    "question_th": "ใครทำรอบเร็วที่สุดในการแข่งขันที่ชนะโดย Paul Tracy โดยมี Emerson Fittipaldi อยู่ที่ตำแหน่งโพล",
    "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_en": "What's the report of the race won by Michael Andretti, with Nigel Mansell driving the fastest lap?",
    "question_th": "Michael Andretti รายงานการแข่งขันที่ชนะ โดยที่ Nigel Mansell ขับรอบได้เร็วที่สุดคืออะไร",
    "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_en": "Who was at the pole position in the ITT Automotive Grand Prix of Detroit, won by Paul Tracy?",
    "question_th": "ใครอยู่ในตำแหน่งโพลโพซิชั่นในการแข่งขัน ITT Automotive Grand Prix of Detroit ที่ 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_en": "Who directed the episode with production code 4akj08?",
    "question_th": "ใครกำกับตอนที่มีรหัสการผลิต 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_en": "Who directed the episode with production code 4akj01?",
    "question_th": "ใครกำกับตอนที่มีรหัสการผลิต 4akj01?",
    "context": "CREATE TABLE table_19929970_1 (directed_by VARCHAR, production_code VARCHAR)"
  },
  {
    "answer": "SELECT torque FROM table_20007413_6 WHERE year = \"1996\"",
    "question_en": "What are the torque characteristics of the model made in 1996?",
    "question_th": "ลักษณะแรงบิดของรุ่นที่ผลิตในปี 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_en": "What's the compression ratio of the model with L35 RPO and 5 applications?",
    "question_th": "อัตราส่วนกำลังอัดของรุ่นที่มี L35 RPO และ 5 แอปพลิเคชันเป็นเท่าใด",
    "context": "CREATE TABLE table_20007413_6 (compression_ratio VARCHAR, rpo VARCHAR, applications VARCHAR)"
  },
  {
    "answer": "SELECT torque FROM table_20007413_6 WHERE applications = 346",
    "question_en": "What are the torque characteristics of the model with 346 applications?",
    "question_th": "คุณลักษณะแรงบิดของรุ่นที่มีการใช้งาน 346 คืออะไร?",
    "context": "CREATE TABLE table_20007413_6 (torque VARCHAR, applications VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_20016339_1 WHERE motorcycle = \"Honda\"",
    "question_en": "What's the name of the team who had a Honda motorcycle?",
    "question_th": "ทีมที่มีรถมอเตอร์ไซค์ฮอนด้าชื่ออะไร?",
    "context": "CREATE TABLE table_20016339_1 (team VARCHAR, motorcycle VARCHAR)"
  },
  {
    "answer": "SELECT poles FROM table_20016339_1 WHERE motorcycle = \"Kalex\"",
    "question_en": "What's the number of poles in the season where the team had a Kalex motorcycle?",
    "question_th": "ในฤดูกาลที่ทีมมีรถมอเตอร์ไซค์คาเล็กซ์จำนวนเท่าไร?",
    "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_en": "How many fastest laps did I.C. Team have?",
    "question_th": "ทีม IC ทำเวลาได้เร็วที่สุดกี่รอบ?",
    "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_en": "What's Italtrans Racing Team's, with 0 pts, class?",
    "question_th": "Italtrans Racing Team ที่มี 0 แต้ม คลาสคืออะไร?",
    "context": "CREATE TABLE table_20016339_1 (class VARCHAR, pts VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT conventional FROM table_2008069_2 WHERE uyghur___k̢ona_yezik̢__ = \"تاغارما\"",
    "question_en": "Name the conventional for تاغارما",
    "question_th": "ตั้งชื่อแบบธรรมดาสำหรับ تاجارما",
    "context": "CREATE TABLE table_2008069_2 (conventional VARCHAR, uyghur___k̢ona_yezik̢__ VARCHAR)"
  },
  {
    "answer": "SELECT uyghur___k̢ona_yezik̢__ FROM table_2008069_2 WHERE chinese = \"瓦恰\"",
    "question_en": "Name the uyghur for  瓦恰",
    "question_th": "ตั้งชื่ออุยกูร์สำหรับ 瓦恰",
    "context": "CREATE TABLE table_2008069_2 (uyghur___k̢ona_yezik̢__ VARCHAR, chinese VARCHAR)"
  },
  {
    "answer": "SELECT conventional FROM table_2008069_2 WHERE uyghur___yenɡi_yezik̢__ = \"Defter\"",
    "question_en": "Name the conventional for defter",
    "question_th": "ตั้งชื่อแบบธรรมดาสำหรับ deffer",
    "context": "CREATE TABLE table_2008069_2 (conventional VARCHAR, uyghur___yenɡi_yezik̢__ VARCHAR)"
  },
  {
    "answer": "SELECT pinyin FROM table_2008069_2 WHERE uyghur___k̢ona_yezik̢__ = \"تىزناپ\"",
    "question_en": "Name the pinyin for تىزناپ",
    "question_th": "ตั้งชื่อพินอินสำหรับ تيزناپ",
    "context": "CREATE TABLE table_2008069_2 (pinyin VARCHAR, uyghur___k̢ona_yezik̢__ VARCHAR)"
  },
  {
    "answer": "SELECT pinyin FROM table_2008069_2 WHERE conventional = \"Mazar\"",
    "question_en": "Name the pinyin for mazar",
    "question_th": "ตั้งชื่อพินอินสำหรับมาซาร์",
    "context": "CREATE TABLE table_2008069_2 (pinyin VARCHAR, conventional VARCHAR)"
  },
  {
    "answer": "SELECT pinyin FROM table_2008069_2 WHERE uyghur___yenɡi_yezik̢__ = \"Kɵkyar K̡irƣiz yezisi\"",
    "question_en": "Name the pinyin for  kɵkyar k̡irƣiz yezisi",
    "question_th": "ตั้งชื่อพินอินสำหรับ kɵkyar k̡irɣiz yezisi",
    "context": "CREATE TABLE table_2008069_2 (pinyin VARCHAR, uyghur___yenɡi_yezik̢__ VARCHAR)"
  },
  {
    "answer": "SELECT team_s_ FROM table_2012187_3 WHERE top_10 = 18",
    "question_en": "What team or teams with 18 in the top 10?",
    "question_th": "ทีมใดหรือทีมใดที่มี 18 ใน 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_en": "How many wins in the 4th position?",
    "question_th": "อันดับ 4 ชนะกี่นัด?",
    "context": "CREATE TABLE table_2012187_3 (wins INTEGER, position VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_2015453_1 WHERE attendance = 22000",
    "question_en": "What date was the attendance 22000?",
    "question_th": "ผู้เข้าร่วม 22000 เป็นวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_2015453_1 (date VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT remarks FROM table_2015453_1 WHERE date = \"8 October 2008\"",
    "question_en": "What are the remarks for 8 October 2008?",
    "question_th": "วันที่ 8 ตุลาคม 2551 มีข้อสังเกตอย่างไรบ้าง?",
    "context": "CREATE TABLE table_2015453_1 (remarks VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT res FROM table_2015453_1 WHERE team__number2 = \"Payam\"",
    "question_en": "What was the res for the game against Payam?",
    "question_th": "เกมกับพยามมีการตอบสนองอย่างไรบ้าง?",
    "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_en": "Who was team #1 on 9 September 2006?",
    "question_th": "ใครคือทีม #1 เมื่อวันที่ 9 กันยายน พ.ศ. 2549?",
    "context": "CREATE TABLE table_2015453_1 (team__number1 VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(attendance) FROM table_2015453_1",
    "question_en": "What was the largest attendance?",
    "question_th": "ผู้เข้าร่วมที่ใหญ่ที่สุดคืออะไร?",
    "context": "CREATE TABLE table_2015453_1 (attendance INTEGER)"
  },
  {
    "answer": "SELECT position FROM table_20170644_3 WHERE college = \"Regina\"",
    "question_en": "What position is the player who went to Regina? ",
    "question_th": " นักเตะที่ไปเรจิน่าอยู่ตำแหน่งไหน?",
    "context": "CREATE TABLE table_20170644_3 (position VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_20170644_3 WHERE cfl_team = \"BC Lions\"",
    "question_en": "Which player is on the BC Lions? ",
    "question_th": " ผู้เล่นคนไหนอยู่ใน 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_en": "What number picks were the players who went to Calgary? ",
    "question_th": " ผู้เล่นที่ไปคาลการีเลือกหมายเลขอะไร",
    "context": "CREATE TABLE table_20170644_3 (pick__number VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_20205538_4 WHERE episode__number = 2",
    "question_en": "What was the title for episode 2?",
    "question_th": "ตอนที่ 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_en": "What is the episode number for series 17?",
    "question_th": "ซีรี่ย์ 17 เล่มที่ 17 มีจำนวนตอนเท่าไหร่ครับ?",
    "context": "CREATE TABLE table_20205538_4 (episode__number VARCHAR, series__number VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_20217456_7 WHERE rl_süd__1st_ = \"SV Darmstadt 98\"",
    "question_en": "What season did SV Darmstadt 98 end up at RL Süd (1st)?",
    "question_th": "SV Darmstadt 98 จบลงที่ RL Süd (ที่ 1) ในฤดูกาลใด?",
    "context": "CREATE TABLE table_20217456_7 (season VARCHAR, rl_süd__1st_ VARCHAR)"
  },
  {
    "answer": "SELECT rl_süd__1st_ FROM table_20217456_7 WHERE rl_südwest__1st_ = \"FK Pirmasens\"",
    "question_en": "Who was RL Süd (1st) when FK Pirmasens was RL Südwest (1st)?",
    "question_th": "RL Südwest (ที่ 1) คือใคร เมื่อ FK Pirmasens คือ RL Südwest (ที่ 1)?",
    "context": "CREATE TABLE table_20217456_7 (rl_süd__1st_ VARCHAR, rl_südwest__1st_ VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_20217456_7 WHERE rl_süd__2nd_ = \"Freiburger FC\"",
    "question_en": "What season was Freiburger FC the RL Süd (2nd) team?",
    "question_th": "ไฟร์เบอร์เกอร์ เอฟซี กับทีม RL Süd (อันดับ 2) ฤดูกาลใด?",
    "context": "CREATE TABLE table_20217456_7 (season VARCHAR, rl_süd__2nd_ VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(serial_no) FROM table_20236726_2 WHERE wd_no = 24",
    "question_en": "Name the total number of serial number for 24 wd no",
    "question_th": "ตั้งชื่อเลขลำดับทั้งหมดสำหรับ 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_en": "Name the total number of wd number for lms number being 7638",
    "question_th": "ตั้งชื่อจำนวนรวมของหมายเลข wd สำหรับหมายเลข lms คือ 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_en": "Name the builder for wd number being 22",
    "question_th": "ตั้งชื่อตัวสร้างสำหรับหมายเลข wd เป็น 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_en": "Name the lms number for serial number being 372",
    "question_th": "ตั้งชื่อหมายเลข lms สำหรับหมายเลขซีเรียลเป็น 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_en": "Name the builder for serial number being 377",
    "question_th": "ตั้งชื่อตัวสร้างสำหรับหมายเลขซีเรียลเป็น 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_en": "who directed s01e13",
    "question_th": "ผู้กำกับ 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_en": "what is the television order of the episode directed by ben jones, written by j. m. dematteis and originally aired on february6,2009",
    "question_th": "ลำดับทางโทรทัศน์ของตอนนี้กำกับโดยเบน โจนส์ เขียนโดย jm dematteis และออกอากาศครั้งแรกเมื่อวันที่ 6 กุมภาพันธ์ พ.ศ. 2552",
    "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_en": "who wrote s01e06",
    "question_th": "ใครเป็นคนเขียน 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_en": "what is the original air date of the episode directed by Ben Jones and written by Steven Melching? ",
    "question_th": "วันที่ออกอากาศดั้งเดิมของตอนที่กำกับโดย Ben Jones และเขียนโดย 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_en": "How many people are guest 1 on episodes where guest 4 is Des Kelly?",
    "question_th": "แขกคนที่ 1 ในตอนที่แขกคนที่ 4 คือ เดส เคลลี่ มีกี่คน?",
    "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_en": "On episodes where guest 1 is Jim White, who was guest 3?",
    "question_th": "ในตอนที่แขกคนที่ 1 คือ จิม ไวท์ ใครคือแขกรับเชิญคนที่ 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_en": "How many points did he win in the race with more than 1.0 poles?",
    "question_th": "แข่งได้เกิน 1.0 แต้มได้กี่แต้ม?",
    "context": "CREATE TABLE table_20500097_1 (points VARCHAR, poles INTEGER)"
  },
  {
    "answer": "SELECT team FROM table_20500097_1 WHERE series = \"GP3 series\"",
    "question_en": "What team did he compete for in the GP3 series?",
    "question_th": "เขาแข่งขันกับทีมใดในซีรีส์ GP3?",
    "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_en": "Who took first place in week 6?",
    "question_th": "ใครได้อันดับหนึ่งในสัปดาห์ที่ 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_en": "What is the epa highway fuel economy for an electric suv?",
    "question_th": "การประหยัดน้ำมันบนทางหลวง epa สำหรับรถ 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_en": "What vehicle has an epa highway fuel economy of 109 mpg-e?",
    "question_th": "รถรุ่นไหนประหยัดน้ำมันบนทางหลวง epa 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_en": "What shareholder has 2.55 percent of votes? ",
    "question_th": " ผู้ถือหุ้นรายใดมีคะแนนเสียงร้อยละ 2.55?",
    "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_en": "What shareholder has 3.63 percent of capital? ",
    "question_th": " ผู้ถือหุ้นรายใดมีทุนร้อยละ 3.63?",
    "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_en": "What is the s B share for the shareholder that has 2.55 percent of votes? ",
    "question_th": " หุ้น s B ของผู้ถือหุ้นที่ได้รับคะแนนเสียงร้อยละ 2.55 คืออะไร?",
    "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_en": "What is the percent of capital for the shareholder that has a s B share of 8256534? ",
    "question_th": " ทุนของผู้ถือหุ้นที่มีส่วนแบ่ง B เท่ากับ 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_en": "What is the s B share for the shareholder that has 2.12 percent of votes? ",
    "question_th": " หุ้น s B ของผู้ถือหุ้นที่ได้รับคะแนนเสียงร้อยละ 2.12 คืออะไร?",
    "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_en": "What is the s B share for Handelsbanken funds incl XACT?",
    "question_th": "หุ้น B สำหรับกองทุน Handelsbanken รวม 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_en": "What was the name that had a starting price of 11/1 and a jockey named Garrett Cotter?",
    "question_th": "ชื่ออะไรที่มีราคาเริ่มต้น 11/1 และจ๊อกกี้ชื่อ 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_en": "What was the name of the entrant with an owner named David Johnson?",
    "question_th": "ผู้เข้าร่วมชื่ออะไรและมีเจ้าของชื่อเดวิด จอห์นสัน",
    "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_en": "What percentage was the others vote when McCain had 52.9% and less than 45205.0 voters?",
    "question_th": "คนอื่น ๆ โหวตกี่เปอร์เซ็นต์เมื่อแมคเคนมีผู้ลงคะแนน 52.9% และผู้ลงคะแนนน้อยกว่า 45,205.0 คน",
    "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_en": "How many numbers were recorded under Obama when he had 29.9% voters?",
    "question_th": "มีกี่หมายเลขที่ถูกบันทึกไว้ภายใต้โอบามาเมื่อเขามีผู้มีสิทธิเลือกตั้ง 29.9%",
    "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_en": "How many numbers were recorded under McCain when Obama had 27.2% voters?",
    "question_th": "มีกี่หมายเลขที่ถูกบันทึกไว้ภายใต้ McCain เมื่อโอบามามีผู้มีสิทธิเลือกตั้ง 27.2%",
    "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_en": "What were the number of voters McCain had when Obama had 895?",
    "question_th": "ผู้มีสิทธิเลือกตั้งที่ McCain มีมีจำนวนเท่าใดเมื่อ Obama มี 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_en": "What was the number of others votes in Columbia county?",
    "question_th": "จำนวนผู้ลงคะแนนเสียงอื่น ๆ ในโคลัมเบียเคาน์ตีคือเท่าใด",
    "context": "CREATE TABLE table_20693870_1 (others_number INTEGER, county VARCHAR)"
  },
  {
    "answer": "SELECT obama_percentage FROM table_20684390_1 WHERE county = \"Gem\"",
    "question_en": "For Gem County, what was the Obama vote percentage?",
    "question_th": "สำหรับ Gem County เปอร์เซ็นต์การโหวตของ Obama คือเท่าใด",
    "context": "CREATE TABLE table_20684390_1 (obama_percentage VARCHAR, county VARCHAR)"
  },
  {
    "answer": "SELECT MAX(mccain_number) FROM table_20684390_1",
    "question_en": "What is the maximum McCain population turnout number?",
    "question_th": "จำนวนผลิตภัณฑ์ประชากร McCain สูงสุดคือเท่าใด",
    "context": "CREATE TABLE table_20684390_1 (mccain_number INTEGER)"
  },
  {
    "answer": "SELECT COUNT(mccain_number) FROM table_20684390_1 WHERE obama_percentage = \"17.34%\"",
    "question_en": "What is the total number of McCain vote totals where Obama percentages was 17.34%?",
    "question_th": "จำนวนการโหวตของ McCain ทั้งหมดคือเท่าไร โดยที่ Obama มีเปอร์เซ็นต์อยู่ที่ 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_en": "What is the McCain vote percentage in Jerome county?",
    "question_th": "เปอร์เซ็นต์การลงคะแนนเสียงของ McCain ในเขตเจอโรมคือเท่าใด",
    "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_en": "What is the total number of 3rd place entries that have exactly 8 total placings?",
    "question_th": "จำนวนผู้เข้าชิงอันดับที่ 3 ทั้งหมดที่มีทั้งหมด 8 อันดับคือเท่าใด",
    "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_en": "How many second place showings does snooker have?",
    "question_th": "สนุกเกอร์มีรอบชิงอันดับที่ 2 กี่ครั้ง?",
    "context": "CREATE TABLE table_20823568_2 (second_place_s_ VARCHAR, sporting_profession VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_20850527_1 WHERE opponent = \"Purdue\"",
    "question_en": "What game number did the Wildcats play Purdue?",
    "question_th": "Wildcats เล่น Purdue หมายเลขเกมใด",
    "context": "CREATE TABLE table_20850527_1 (game VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(result) FROM table_20850527_1 WHERE record = \"3-0\"",
    "question_en": "How many wins or losses were there when the record was 3-0?",
    "question_th": "มีชนะหรือแพ้กี่ครั้งเมื่อสถิติเป็น 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_en": "What is the lowest points scored by the Wildcats when the record was 5-1?",
    "question_th": "คะแนนต่ำสุดที่ Wildcats ทำไว้เมื่อสถิติคือ 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_en": "When az is the runner up nad feyenoord came in third place how many overall winners are there?",
    "question_th": "เมื่อ az เป็นรองแชมป์ nad feyenoord มาเป็นอันดับ 3 มีผู้ชนะโดยรวมกี่คน?",
    "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_en": "When twente came in third place and ajax was the winner what are the seasons?",
    "question_th": "เมื่อทเวนเต้มาอยู่อันดับที่ 3 และอาแจ็กซ์เป็นผู้ชนะ ฤดูกาลจะเป็นอย่างไร?",
    "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_en": "When nac breda came in third place and psv eindhoven was the winner who is the top scorer?",
    "question_th": "เมื่อแนค เบรดาจบอันดับสาม และพีเอสวี ไอนด์โฮเฟ่นเป็นผู้ชนะ ใครคือผู้ทำประตูสูงสุด?",
    "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_en": "Name the naming for fluent and poor comprehension",
    "question_th": "ตั้งชื่อตามความคล่องแคล่วและความเข้าใจที่ไม่ดี",
    "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_en": "Name the number of naming for anomic aphasia",
    "question_th": "ตั้งชื่อหมายเลขของการตั้งชื่อสำหรับความพิการทางสมองแบบอะโนมิกส์",
    "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_en": "Name the comprehension for non-fluent, effortful, slow",
    "question_th": "ตั้งชื่อความเข้าใจว่า ไม่คล่อง พยายาม ช้า",
    "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_en": "Name the fluency for transcortical sensory aphasia",
    "question_th": "ตั้งชื่อความคล่องแคล่วของความพิการทางสมองทางประสาทสัมผัสผ่านเยื่อหุ้มสมอง",
    "context": "CREATE TABLE table_2088_1 (fluency VARCHAR, type_of_aphasia VARCHAR)"
  },
  {
    "answer": "SELECT english FROM table_20925393_3 WHERE cardinal_direction = \"East\"",
    "question_en": "state the name of day in english where cardinal direction is east",
    "question_th": "บอกชื่อวันเป็นภาษาอังกฤษ โดยที่ทิศหลักอยู่ทิศตะวันออก",
    "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_en": "When did Shirley Fry Irvin win the US Open?",
    "question_th": "Shirley Fry Irvin คว้าแชมป์ 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_en": "What year did Martina Navratilova win Wimbledon?",
    "question_th": "Martina Navratilova ชนะวิมเบิลดันในปีใด",
    "context": "CREATE TABLE table_2092557_12 (wimbledon VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MIN(round__number) FROM table_20996923_25 WHERE player = \"Sherrick McManis\"",
    "question_en": "What was Sherrick McManis's earliest round?",
    "question_th": "รอบแรกของ Sherrick McManis คืออะไร?",
    "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_en": "How many NFL teams does Stevie Brown play for?",
    "question_th": "Stevie Brown เล่นให้กับทีม NFL กี่ทีม",
    "context": "CREATE TABLE table_20996923_25 (nfl_team VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT nfl_team FROM table_20996923_25 WHERE pick__number = 28",
    "question_en": "What NFL team was the player with pick number 28 drafted to?",
    "question_th": "ผู้เล่นที่ได้รับเลือกหมายเลข 28 ของทีม NFL ใดคือทีมใด",
    "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_en": "what is the area where barangay is guadalupe viejo?",
    "question_th": "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_en": "Who is the regular season winner for the Ivy League conference?",
    "question_th": "ใครคือผู้ชนะประจำฤดูกาลของการประชุม Ivy League?",
    "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_en": "Where was the Ivy League conference tournament?",
    "question_th": "การแข่งขันการประชุม Ivy League จัดขึ้นที่ไหน?",
    "context": "CREATE TABLE table_21091982_3 (tournament_venue__city_ VARCHAR, conference VARCHAR)"
  },
  {
    "answer": "SELECT locale FROM table_21093403_1 WHERE shot_pct = 78",
    "question_en": "Where was the shot pct 78?",
    "question_th": "ช็อตที่ 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_en": "Name the position for van den brink, bas",
    "question_th": "ระบุตำแหน่ง ฟาน เดน บริงค์,บาส",
    "context": "CREATE TABLE table_21220720_1 (position VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT MAX(finals_apps) FROM table_21220720_1",
    "question_en": "Name the mosst finals apps",
    "question_th": "ตั้งชื่อแอปรอบชิงชนะเลิศมากที่สุด",
    "context": "CREATE TABLE table_21220720_1 (finals_apps INTEGER)"
  },
  {
    "answer": "SELECT to FROM table_21220720_1 WHERE league_apps = 19",
    "question_en": "Name the to for 19 league apps",
    "question_th": "ตั้งชื่อเป็นสำหรับแอปลีก 19 รายการ",
    "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_en": "what is the No in series when Rob wright & Debra j. Fisher & Erica Messer were the writers?",
    "question_th": "No ในซีรีส์คืออะไรเมื่อ Rob wright และ Debra j. Fisher และ Erica Messer เป็นผู้เขียนใช่ไหม?",
    "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_en": "what was the name of the episode that got 3.3 (millions) of u.s viewers?",
    "question_th": "ตอนที่มีผู้ชม 3.3 (ล้าน) คนชื่ออะไร?",
    "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_en": "In season number 3,  who were the writers?",
    "question_th": "ในฤดูกาลที่ 3 ใครคือผู้เขียน?",
    "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_en": "when the writer is Brad Kern, how many u.s viewers (in millions) had the episode?",
    "question_th": "เมื่อคนเขียนคือ Brad Kern พวกเราคนดู (เป็นล้าน) มีตอนนี้กี่คน?",
    "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_en": "What is the 100 year for Carbon Dioxide?",
    "question_th": "คาร์บอนไดออกไซด์ 100 ปี คืออะไร?",
    "context": "CREATE TABLE table_21350772_2 (gas_name VARCHAR)"
  },
  {
    "answer": "SELECT 20 AS _yr FROM table_21350772_2 WHERE gas_name = \"Nitrous oxide\"",
    "question_en": "What is the 20 year for Nitrous Oxide?",
    "question_th": "ไนตรัสออกไซด์ 20 ปีคือเท่าไร?",
    "context": "CREATE TABLE table_21350772_2 (gas_name VARCHAR)"
  },
  {
    "answer": "SELECT lifetime__years_ FROM table_21350772_2 WHERE chemical_formula = \"CH 4\"",
    "question_en": "What is the lifetime (years) for chemical formula ch 4?",
    "question_th": "อายุการใช้งาน (ปี) สำหรับสูตรเคมี 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_en": "What is the 20 year for Sulfur Hexafluoride?",
    "question_th": "ซัลเฟอร์เฮกซาฟลูออไรด์ 20 ปีคือเท่าไร?",
    "context": "CREATE TABLE table_21350772_2 (gas_name VARCHAR)"
  },
  {
    "answer": "SELECT traditional FROM table_2135222_2 WHERE simplified = \"永城市\"",
    "question_en": "What is the traditional form for 永城市?",
    "question_th": "永城市 รูปแบบดั้งเดิมคืออะไร?",
    "context": "CREATE TABLE table_2135222_2 (traditional VARCHAR, simplified VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(density) FROM table_2135222_2 WHERE english_name = \"Yucheng County\"",
    "question_en": "How many figures are there for density for Yucheng County?",
    "question_th": "มีตัวเลขความหนาแน่นของเทศมณฑลยู่เฉิงจำนวนเท่าใด",
    "context": "CREATE TABLE table_2135222_2 (density VARCHAR, english_name VARCHAR)"
  },
  {
    "answer": "SELECT traditional FROM table_2135222_2 WHERE simplified = \"宁陵县\"",
    "question_en": "What is the traditional form for 宁陵县?",
    "question_th": "宁陵县 รูปแบบดั้งเดิมคืออะไร?",
    "context": "CREATE TABLE table_2135222_2 (traditional VARCHAR, simplified VARCHAR)"
  },
  {
    "answer": "SELECT traditional FROM table_2135222_2 WHERE density = 820",
    "question_en": "What is the traditional with density of 820?",
    "question_th": "แบบดั้งเดิมที่มีความหนาแน่น 820 คืออะไร?",
    "context": "CREATE TABLE table_2135222_2 (traditional VARCHAR, density VARCHAR)"
  },
  {
    "answer": "SELECT pinyin FROM table_2135222_2 WHERE simplified = \"虞城县\"",
    "question_en": "What is the Pinyin for the simplified 虞城县?",
    "question_th": "พินอินสำหรับ 虞城县 ตัวย่อคืออะไร?",
    "context": "CREATE TABLE table_2135222_2 (pinyin VARCHAR, simplified VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(area) FROM table_2135222_2 WHERE population = 703379",
    "question_en": "How many areas have a population of 703379?",
    "question_th": "กี่พื้นที่มีประชากร 703,379 คน?",
    "context": "CREATE TABLE table_2135222_2 (area VARCHAR, population VARCHAR)"
  },
  {
    "answer": "SELECT episode AS Summary FROM table_2140071_12 WHERE coach = \"Torae Carr\"",
    "question_en": "Name the episode summary for torae carr",
    "question_th": "ตั้งชื่อตอนสรุปสำหรับ 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_en": "Name the episode summary for travis brown",
    "question_th": "ตั้งชื่อตอนสรุปสำหรับ 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_en": "Name the least episode for donnie klang",
    "question_th": "ตั้งชื่อตอนน้อยที่สุดสำหรับ Donnie Klang",
    "context": "CREATE TABLE table_2140071_12 (episode INTEGER, coach VARCHAR)"
  },
  {
    "answer": "SELECT episode FROM table_2140071_12 WHERE coach = \"Travis Brown\"",
    "question_en": "Name the episode for travis brown",
    "question_th": "ตั้งชื่อตอนนี้ให้เทรวิส บราวน์",
    "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_en": "How many episodes have a premier date of july 24, 2006",
    "question_th": "มีกี่ตอนที่มีกำหนดฉายในวันที่ 24 กรกฎาคม พ.ศ. 2549",
    "context": "CREATE TABLE table_2140071_7 (external_link VARCHAR, premier_date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(season) FROM table_2140071_7",
    "question_en": "What is the newest season?",
    "question_th": "ฤดูกาลใหม่ล่าสุดคืออะไร?",
    "context": "CREATE TABLE table_2140071_7 (season INTEGER)"
  },
  {
    "answer": "SELECT COUNT(episode) AS Summary FROM table_2140071_7 WHERE coach = \"Valerie\"",
    "question_en": "How many episodes have Valerie?",
    "question_th": "วาเลอรี่มีกี่ตอนคะ?",
    "context": "CREATE TABLE table_2140071_7 (episode VARCHAR, coach VARCHAR)"
  },
  {
    "answer": "SELECT episode AS Summary FROM table_2140071_7 WHERE episode = 15",
    "question_en": "What the summary of episode 15?",
    "question_th": "ตอนที่ 15 สรุปอะไรคะ?",
    "context": "CREATE TABLE table_2140071_7 (episode VARCHAR)"
  },
  {
    "answer": "SELECT MAX(episode) FROM table_2140071_8 WHERE premier_date = \"March 8, 2008\"",
    "question_en": "Which Maximum episode premiered March 8, 2008?",
    "question_th": "ตอนสูงสุดใดที่ฉายรอบปฐมทัศน์ในวันที่ 8 มีนาคม พ.ศ. 2551",
    "context": "CREATE TABLE table_2140071_8 (episode INTEGER, premier_date VARCHAR)"
  },
  {
    "answer": "SELECT coach FROM table_2140071_8 WHERE episode = 15",
    "question_en": "Who was the coach for episode 15?",
    "question_th": "ใครเป็นโค้ชในตอนที่ 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_en": "What coach premiered February 16, 2008 later than episode 21.0?",
    "question_th": "โค้ชคนไหนที่ฉายรอบปฐมทัศน์ในวันที่ 16 กุมภาพันธ์ 2551 ช้ากว่าตอนที่ 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_en": "What was Cici Kelley's minimum season?",
    "question_th": "ฤดูกาลขั้นต่ำของ Cici Kelley คืออะไร?",
    "context": "CREATE TABLE table_2140071_8 (season INTEGER, coach VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(season) FROM table_2140071_8 WHERE coach = \"Rob Masek\"",
    "question_en": "How many seasons feature Rob Masek?",
    "question_th": "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_en": "What was the stadium that had the regular season game?",
    "question_th": "สนามไหนที่มีเกมประจำฤดูกาล?",
    "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_en": "What is the y = 2008 when y = 2011 is a = 3?",
    "question_th": "y = 2008 คืออะไร เมื่อ y = 2011 คือ 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_en": "What is the y = 2011 when the expression is month = floor ((d + e + 114) / 31)?",
    "question_th": "y = 2011 คืออะไรเมื่อนิพจน์คือ 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_en": "what is the y = 2008 when the expression is easter day (julian calendar)?",
    "question_th": "= 2008 คืออะไรเมื่อสำนวนคือวันอีสเตอร์ (ปฏิทินจูเลียน)",
    "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_en": "what is  the y = 2009 when the expression is month = floor ((d + e + 114) / 31)?",
    "question_th": "y = 2009 คืออะไรเมื่อนิพจน์คือ 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_en": "Name the most rr1 pts for 7 ranking",
    "question_th": "ตั้งชื่อ rr1 pts มากที่สุดสำหรับการจัดอันดับ 7 อันดับ",
    "context": "CREATE TABLE table_21471897_2 (rr1_pts INTEGER, ranking VARCHAR)"
  },
  {
    "answer": "SELECT races FROM table_21471897_2 WHERE team_name = \"Prada Challenge\"",
    "question_en": "Name the races for the prada challenge",
    "question_th": "ตั้งชื่อการแข่งขันสำหรับการแข่งขันปราด้า",
    "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_en": "Name the min total pts for team dennis conner",
    "question_th": "ตั้งชื่อคะแนนรวมขั้นต่ำสำหรับทีมเดนนิส คอนเนอร์",
    "context": "CREATE TABLE table_21471897_2 (total_pts INTEGER, team_name VARCHAR)"
  },
  {
    "answer": "SELECT ranking FROM table_21471897_2 WHERE rr2_pts = 8",
    "question_en": "Name the ranking for rr2 pts being 8",
    "question_th": "ตั้งชื่อการจัดอันดับสำหรับ rr2 pts เป็น 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_en": "Name the total number of rr2 pts for won being 11",
    "question_th": "ตั้งชื่อจำนวนรวมของ rr2 pts สำหรับการชนะเป็น 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_en": "What percentage is listed in column r1b1a2 (r-m269) for the 77.8% r1b1c (r-v88)?",
    "question_th": "เปอร์เซ็นต์ที่ระบุไว้ในคอลัมน์ r1b1a2 (r-m269) สำหรับ 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_en": "What percentage is listed in column r1b1c (r-v88) for the 4.5% total percentage?",
    "question_th": "เปอร์เซ็นต์ที่ระบุไว้ในคอลัมน์ r1b1c (r-v88) สำหรับเปอร์เซ็นต์รวม 4.5% คืออะไร",
    "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_en": "How many n are listed for 0.6% r1b1a2 (r-m269)?",
    "question_th": "มีกี่ n ที่แสดงไว้สำหรับ 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_en": "How many n are listed for berbers from siwa?",
    "question_th": "มีกี่ n ที่ระบุไว้สำหรับเบอร์เบอร์จาก 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_en": "What is the largest n value for 55.6% r1b1c4 (r-v69)?",
    "question_th": "ค่า n ที่ใหญ่ที่สุดสำหรับ 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_en": "What is the seat of the RCM in the county that has a density of 9.7?",
    "question_th": "RCM ในเขตที่มีความหนาแน่น 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_en": "What is the seat of the county that has a density of 14.1?",
    "question_th": "มณฑลที่มีความหนาแน่น 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_en": "What is the land area for the RCM that has a population of 18847?",
    "question_th": "RCM ที่มีประชากร 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_en": "What is the RCM that has a density of 9.7?",
    "question_th": "RCM ที่มีความหนาแน่น 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_en": "What is the land area of the RCM having a density of 21.1?",
    "question_th": "RCM มีความหนาแน่น 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_en": "What is the withdrawal rate for the school district with a graduation rate of 89.3%?",
    "question_th": "อัตราการถอนตัวของเขตการศึกษาที่มีอัตราการสำเร็จการศึกษา 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_en": "Where is the headquarter located for the Annapolis Valley Regional School Board?",
    "question_th": "สำนักงานใหญ่ของ 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_en": "What is their withdrawal rate for the school district with headquarters located in Truro?",
    "question_th": "อัตราการถอนตัวสำหรับเขตการศึกษาที่มีสำนักงานใหญ่ตั้งอยู่ในทรูโรคือเท่าใด",
    "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_en": "What is the graduation rate for the school district with headquarters located in Sydney?",
    "question_th": "อัตราการสำเร็จการศึกษาของเขตการศึกษาที่มีสำนักงานใหญ่ตั้งอยู่ในซิดนีย์คือเท่าใด",
    "context": "CREATE TABLE table_21514460_1 (graduation_rate__2011_12_ VARCHAR, headquarters VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_2151643_3 WHERE year = 1983",
    "question_en": "What was the surface for events held in 1983?",
    "question_th": "พื้นผิวของงานที่จัดขึ้นในปี 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_en": "What was the total number of matches that had an outcome of Winner, a partner of John Lloyd, and a clay surface?",
    "question_th": "จำนวนแมตช์ทั้งหมดที่มีผลลัพธ์เป็นวินเนอร์ คู่หูของจอห์น ลอยด์ และพื้นผิวดินคือเท่าใด",
    "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_en": "Who were the opponents that led to an outcome of winner on a grass surface?",
    "question_th": "ใครคือคู่ต่อสู้ที่นำไปสู่ผลลัพธ์ของผู้ชนะบนพื้นหญ้า?",
    "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_en": "How many times did episode 6 originally air?",
    "question_th": "ตอนที่ 6 ออกอากาศครั้งแรกกี่ครั้ง?",
    "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_en": "What is the production code for the episode that had 9.18 million viewers (U.S.)?",
    "question_th": "รหัสการผลิตสำหรับตอนที่มีผู้ชม 9.18 ล้านคน (สหรัฐอเมริกา) คืออะไร",
    "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_en": "What episode number was directed by Craig Ross, Jr.",
    "question_th": "หมายเลขตอนใดที่กำกับโดย 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_en": "What episode had 10.14 million viewers (U.S.)?",
    "question_th": "ตอนใดมีผู้ชม 10.14 ล้านคน (สหรัฐฯ)",
    "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_en": "Who wrote the episode with the production code 519?",
    "question_th": "ใครเป็นคนเขียนตอนที่มีรหัสการผลิต 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_en": "Who are all successors when reason for change is died May 12, 1964?",
    "question_th": "ใครคือผู้สืบทอดทั้งหมดเมื่อเหตุผลของการเปลี่ยนแปลงเสียชีวิตเมื่อวันที่ 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_en": "What is every district for reason for change is died August 9, 1964?",
    "question_th": "ทุกอำเภอมีเหตุผลในการเปลี่ยนแปลงอะไรบ้างที่เสียชีวิตเมื่อวันที่ 9 สิงหาคม 2507?",
    "context": "CREATE TABLE table_2159506_4 (district VARCHAR, reason_for_change VARCHAR)"
  },
  {
    "answer": "SELECT MIN(division) FROM table_21602734_1",
    "question_en": "What is the lowest division number?",
    "question_th": "หมายเลขดิวิชั่นต่ำสุดคืออะไร?",
    "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_en": "What was the regular season name where they did not qualify for the playoffs in 2009?",
    "question_th": "ฤดูกาลปกติที่พวกเขาไม่ผ่านเข้ารอบตัดเชือกในปี 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_en": "What league was involved in 2010?",
    "question_th": "ลีกใดที่เกี่ยวข้องกับปี 2010?",
    "context": "CREATE TABLE table_21602734_1 (league VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT MAX(division) FROM table_21602734_1",
    "question_en": "What is the highest number of divisions mentioned?",
    "question_th": "จำนวนดิวิชั่นที่กล่าวถึงมากที่สุดคืออะไร?",
    "context": "CREATE TABLE table_21602734_1 (division INTEGER)"
  },
  {
    "answer": "SELECT league FROM table_21602734_1 WHERE year = 2008",
    "question_en": "What league was involved in 2008?",
    "question_th": "ลีกใดมีส่วนร่วมในปี 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_en": "Which administrative division had a population of 2011 according to the siak database of 3,672,994?",
    "question_th": "ฝ่ายบริหารใดมีประชากร พ.ศ. 2554 ตามฐานข้อมูลเซียก 3,672,994 คน",
    "context": "CREATE TABLE table_21734764_1 (administrative_division VARCHAR, population_2011_siak_database VARCHAR)"
  },
  {
    "answer": "SELECT population_density___km²_2010_ FROM table_21734764_1 WHERE administrative_division = \"Bandung Regency\"",
    "question_en": "What is the population density of bandung regency?",
    "question_th": "ความหนาแน่นของประชากรในบันดุงรีเจนซี่เป็นเท่าใด?",
    "context": "CREATE TABLE table_21734764_1 (population_density___km²_2010_ VARCHAR, administrative_division VARCHAR)"
  },
  {
    "answer": "SELECT administrative_division FROM table_21734764_1 WHERE population_2011_siak_database = \"606,699\"",
    "question_en": "Which administrative division had a 2011 population of 606,699 according to the siak database?",
    "question_th": "หน่วยงานใดมีประชากร 606,699 คน ในปี 2554 ตามฐานข้อมูลเซียก?",
    "context": "CREATE TABLE table_21734764_1 (administrative_division VARCHAR, population_2011_siak_database VARCHAR)"
  },
  {
    "answer": "SELECT area__km²__2005 FROM table_21734764_1 WHERE administrative_division = \"Cimahi City\"",
    "question_en": "What is the area of cimahi city?",
    "question_th": "เมืองจิมาฮีมีพื้นที่เท่าไร?",
    "context": "CREATE TABLE table_21734764_1 (area__km²__2005 VARCHAR, administrative_division VARCHAR)"
  },
  {
    "answer": "SELECT population_density___km²_2010_ FROM table_21734764_1 WHERE population_2010_census = 264170",
    "question_en": "What is the population density of the administrative division with a population in 2010 of 264170 according to the census?",
    "question_th": "ความหนาแน่นของประชากรของฝ่ายบริหารโดยมีจำนวนประชากรในปี 2553 จำนวน 264,170 คน ตามการสำรวจสำมะโนประชากรเป็นเท่าใด",
    "context": "CREATE TABLE table_21734764_1 (population_density___km²_2010_ VARCHAR, population_2010_census VARCHAR)"
  },
  {
    "answer": "SELECT installation_date FROM table_21821014_1 WHERE location = \"El Paso, Texas\"",
    "question_en": "What was the installation date in El Paso, Texas? ",
    "question_th": " วันที่ติดตั้งในเอลปาโซ รัฐเท็กซัส คือเมื่อใด",
    "context": "CREATE TABLE table_21821014_1 (installation_date VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT chapter FROM table_21821014_1 WHERE institution = \"Illinois Wesleyan\"",
    "question_en": "What is the chapter for Illinois Wesleyan? ",
    "question_th": " บทของ 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_en": "What does the inactive state for University of Texas, El Paso? ",
    "question_th": " สถานะที่ไม่ใช้งานของ 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_en": "What is the installation date for the Delta Chapter?",
    "question_th": "วันที่ติดตั้งสำหรับ 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_en": "What is the lowest when pohang steelyard is the stadium?",
    "question_th": "สนามโปฮังสตีลยาร์ดเป็นสนามที่ต่ำที่สุดเท่าไหร่?",
    "context": "CREATE TABLE table_21824695_8 (lowest VARCHAR, stadium VARCHAR)"
  },
  {
    "answer": "SELECT match_played FROM table_21824695_8 WHERE highest = 32250",
    "question_en": "How many match played have the highest as 32250?",
    "question_th": "มีแมตช์ที่เล่นกี่แมตช์ที่มีคะแนนสูงสุดเท่ากับ 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_en": "Which team has a match played of 10 4?",
    "question_th": "ทีมใดมีแมตช์ที่เล่น 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_en": "What is the highest when pohang steelers is the team?",
    "question_th": "โปฮัง สตีลเลอร์ส อยู่ทีมไหนสูงสุด?",
    "context": "CREATE TABLE table_21824695_8 (highest VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_21824695_8 WHERE average = 7757",
    "question_en": "Which team has 7757 as the average?",
    "question_th": "ทีมไหนมี 7757 เป็นค่าเฉลี่ย?",
    "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_en": "What s the episode number in the season that was written by Nancy Oliver?",
    "question_th": "หมายเลขตอนของซีซันที่เขียนโดย 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_en": "What date was episode 10 in the season originally aired?",
    "question_th": "ตอนที่ 10 ของซีซั่นที่ออกอากาศตอนแรกคือวันที่เท่าไหร่?",
    "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_en": "What was the name of the episode that was directed by Mary Harron?",
    "question_th": "ตอนที่กำกับโดย Mary Harron ชื่ออะไร",
    "context": "CREATE TABLE table_2182654_6 (title VARCHAR, directed_by VARCHAR)"
  },
  {
    "answer": "SELECT average_grade FROM table_21829580_1 WHERE song = \"Şımarık Tarkan\"",
    "question_en": "Name the average grade for şımarık tarkan",
    "question_th": "ตั้งชื่อเกรดเฉลี่ยของ şımarık 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_en": "Name the classification for 9, 9, 8, 9",
    "question_th": "ตั้งชื่อการจำแนกประเภทสำหรับ 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_en": "What are the poles is #08 Miller racing?",
    "question_th": "เสาอะไร #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_en": "What is the most recent year where the average start is 8.5?",
    "question_th": "ปีล่าสุดที่ค่าเฉลี่ยเริ่มต้นคือ 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_en": "What are the racing teams for which the average finish is 23.3?",
    "question_th": "ทีมแข่งรถใดบ้างที่จบเฉลี่ย 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_en": "What racing team/s had the 92nd position?",
    "question_th": "ทีมแข่งรถใดมีอันดับที่ 92?",
    "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_en": "How many teams finished in the top team with an average finish of 23.3?",
    "question_th": "มีกี่ทีมที่จบในทีมชั้นนำโดยมีคะแนนเฉลี่ย 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_en": "How many times was the opponent country India? ",
    "question_th": " ฝ่ายตรงข้ามอินเดียกี่ครั้ง?",
    "context": "CREATE TABLE table_21907770_4 (country VARCHAR, versus VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_21907770_4 WHERE versus = \"South Africa\"",
    "question_en": "What are the dates where the versus team is South Africa?",
    "question_th": "วันที่เท่าไหร่ที่ทีมปะทะแอฟริกาใต้?",
    "context": "CREATE TABLE table_21907770_4 (date VARCHAR, versus VARCHAR)"
  },
  {
    "answer": "SELECT championship__titles_finals_ FROM table_2201541_3 WHERE year = 1981",
    "question_en": "What championship was played in 1981?",
    "question_th": "แชมป์อะไรเล่นในปี 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_en": "How many different outcomes did the final with Paul McNamee as a partner have?",
    "question_th": "รอบชิงชนะเลิศกับ Paul McNamee ในฐานะหุ้นส่วนมีผลลัพธ์ที่แตกต่างกันกี่แบบ?",
    "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_en": "How many different partners were played with during French Open (0/1)?",
    "question_th": "มีการเล่นร่วมกับพันธมิตรกี่คนในระหว่างเฟรนช์โอเพ่น (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_en": "What date was the episode originally aired that was directed by James Widdoes and the production code is 320?",
    "question_th": "ตอนแรกออกอากาศวันที่เท่าไหร่ซึ่งกำกับโดย James Widdoes และรหัสการผลิตคือ 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_en": "What is the production code for episode 3 of the season?",
    "question_th": "รหัสการผลิตสำหรับตอนที่ 3 ของซีซั่นคืออะไร?",
    "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_en": "Which orchestra has a recording year of 1951?",
    "question_th": "วงออเคสตราใดมีการบันทึกปี พ.ศ. 2494?",
    "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_en": "Where is the orchestra when the year of recording is 1934?",
    "question_th": "วงออเคสตราอยู่ที่ไหนเมื่อปีที่บันทึกคือ 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_en": "Name the former codes for  merged into panama ( pa , pan , 591 )",
    "question_th": "ตั้งชื่อรหัสเดิมเพื่อรวมเข้ากับปานามา ( 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_en": "Name the total number for period of validity for upper volta",
    "question_th": "ตั้งชื่อจำนวนรวมสำหรับระยะเวลาที่ใช้ได้สำหรับโวลตาตอนบน",
    "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_en": "Who was the winner of seat no 4 for the election on January 25, 1967",
    "question_th": "ซึ่งเป็นผู้ชนะที่นั่งที่ 4 ในการเลือกตั้งเมื่อวันที่ 25 มกราคม พ.ศ. 2510",
    "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_en": "Who is seat no 1 when the mayor was john j. seguier",
    "question_th": "ใครเป็นที่นั่งหมายเลข 1 ในสมัยนายกเทศมนตรีคือ จอห์น เจ. ซีกีเออร์",
    "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_en": "Who was seat no 6 when seat no 1 and seat no 5 were jacques lachapelle and donald s. dutton",
    "question_th": "ใครเป็นที่นั่งหมายเลข 6 ในเมื่อที่นั่งหมายเลข 1 และที่นั่งหมายเลข 5 คือ ฌาค ลาชาเปล และโดนัลด์ ดัตตัน",
    "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_en": "which election had seat no 1 filled by jacques lachapelle but seat no 5 was filled by g. sanscartier",
    "question_th": "การเลือกตั้งครั้งใดมีที่นั่งหมายเลข 1 เต็มไปด้วย Jacques Lachapelle แต่ที่นั่งหมายเลข 5 เต็มด้วย G ซานคาร์เทียร์",
    "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_en": "How many season did the team lost in round 1 with a GP of 64?",
    "question_th": "ทีมแพ้ในรอบ 1 ไปกี่ฤดูกาลด้วย GP 64?",
    "context": "CREATE TABLE table_2233872_1 (COUNt VARCHAR, gp VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_2233872_1 WHERE gf = 244",
    "question_en": "What was the season where the team reached a GP of 244?",
    "question_th": "ฤดูกาลใดที่ทีมมี GP ถึง 244?",
    "context": "CREATE TABLE table_2233872_1 (season VARCHAR, gf VARCHAR)"
  },
  {
    "answer": "SELECT MAX(Otl) FROM table_2233872_1 WHERE l = 28",
    "question_en": "What was the maximum OTL if L is 28?",
    "question_th": "OTL สูงสุดคือเท่าใดหาก L คือ 28?",
    "context": "CREATE TABLE table_2233872_1 (Otl INTEGER, l VARCHAR)"
  },
  {
    "answer": "SELECT MIN(l) FROM table_2233872_1 WHERE ga = 272",
    "question_en": "What was the minimum L if the GA is 272?",
    "question_th": "L ขั้นต่ำคือเท่าใดหาก GA คือ 272",
    "context": "CREATE TABLE table_2233872_1 (l INTEGER, ga VARCHAR)"
  },
  {
    "answer": "SELECT MIN(total_min_2_medals_) FROM table_22355_23",
    "question_en": "What is the least amount of total medals won?",
    "question_th": "เหรียญรางวัลทั้งหมดที่ได้รับน้อยที่สุดคือเท่าไร?",
    "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_en": "Who was the driver for the winning team Lawson Team Impul?",
    "question_th": "ใครคือคนขับรถของทีมที่ชนะ 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ît Tréluyer\"",
    "question_en": "Who has the fastest lap where Benoît Tréluyer got the pole position?",
    "question_th": "ใครมีรอบเร็วที่สุดที่ Benoît Tréluyer ได้ตำแหน่งโพลโพซิชั่น?",
    "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_en": "What was the earlier round where Takashi Kogure got the fastest lap?",
    "question_th": "รอบก่อนหน้านี้ที่ Takashi Kogure ได้รอบเร็วที่สุดคือรอบใด",
    "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ïc Duval\"",
    "question_en": "How many drivers drove on Suzuka Circuit where Loïc Duval took pole position?",
    "question_th": "มีนักแข่งกี่คนที่ขับรถบนสนาม Suzuka Circuit โดยที่ Loïc Duval ขึ้นโพลโพซิชั่น?",
    "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_en": "What date did the West Indies win the match?",
    "question_th": "West Indies ชนะการแข่งขันเมื่อใด",
    "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_en": "How many games were won by a margin of 131 runs?",
    "question_th": "มีกี่เกมที่ชนะด้วยระยะขอบ 131 รัน?",
    "context": "CREATE TABLE table_22384475_1 (team__a_ VARCHAR, margin VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_22384475_1 WHERE margin = \"131 runs\"",
    "question_en": "Who won the match when the margin was 131 runs?",
    "question_th": "ใครเป็นผู้ชนะการแข่งขันเมื่อมาร์จิ้นอยู่ที่ 131 รัน?",
    "context": "CREATE TABLE table_22384475_1 (winner VARCHAR, margin VARCHAR)"
  },
  {
    "answer": "SELECT margin FROM table_22384475_1 WHERE match_date = \"19 Jan 2002\"",
    "question_en": "What was the margin of the match on 19 Jan 2002?",
    "question_th": "มาร์จิ้นของการแข่งขันในวันที่ 19 มกราคม พ.ศ. 2545 เป็นเท่าใด?",
    "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_en": "Where is the Bellerive Country Club venue located?",
    "question_th": "สถานที่จัดงาน Bellerive Country Club อยู่ที่ไหน",
    "context": "CREATE TABLE table_224616_1 (location_of_venue VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT winners_score FROM table_224616_1 WHERE year = 1982",
    "question_en": "List all winning scores from 1982.",
    "question_th": "รายชื่อคะแนนที่ชนะทั้งหมดจากปี 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_en": "How many vacators were in the Pennsylvania 33rd district?",
    "question_th": "มีผู้ว่างงานกี่คนในเขตที่ 33 ของเพนซิลเวเนีย",
    "context": "CREATE TABLE table_224794_3 (vacator VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT successor FROM table_224794_3 WHERE district = \"Kentucky 2nd\"",
    "question_en": "Who was the successor for the Kentucky 2nd district?",
    "question_th": "ใครเป็นผู้สืบทอดตำแหน่งเขตที่ 2 ของรัฐเคนตักกี้?",
    "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_en": "Name the date successor seated for contested election; served until february 14, 1794",
    "question_th": "ระบุวันที่ผู้สืบทอดที่นั่งสำหรับการเลือกตั้งที่โต้แย้ง เสิร์ฟจนถึงวันที่ 14 กุมภาพันธ์ พ.ศ. 2337",
    "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_en": "Name the date successor seated for delegate seat established",
    "question_th": "ตั้งชื่อวันที่ผู้สืบทอดที่นั่งสำหรับที่นั่งผู้รับมอบสิทธิ์ที่จัดตั้งขึ้น",
    "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_en": "Name the date successor seated is south carolina 3rd",
    "question_th": "ตั้งชื่อวันที่ผู้สืบทอดที่นั่งคือเซาท์แคโรไลนาที่ 3",
    "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_en": "What is the number of vacators when the successor was William H. Wells ( F )?",
    "question_th": "จำนวนผู้ว่างเมื่อผู้สืบทอดตำแหน่งคือ วิลเลียม เอช. เวลส์ ( 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_en": "What is the total number of dates of successor formal installation when the vacator was Joshua Clayton ( F )?",
    "question_th": "จำนวนวันที่ทั้งหมดของการติดตั้งผู้สืบทอดอย่างเป็นทางการเมื่อผู้ดำรงตำแหน่งคือ 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_en": "What is the total number of successors when the vacator was William North ( F )",
    "question_th": "จำนวนผู้สืบทอดทั้งหมดเมื่อผู้ว่างงานคือ วิลเลียม นอร์ธ ( 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_en": "What are all the states (class) when the successor was Joseph Anderson ( DR )?",
    "question_th": "รัฐทั้งหมด (ชั้นเรียน) เมื่อผู้สืบทอดคือโจเซฟ แอนเดอร์สัน (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_en": "What are all the states (class) when the reason for change was resigned November 26, 1798 and the vacator was John Hunter ( DR )?",
    "question_th": "รัฐ (ชั้นเรียน) ทั้งหมดมีอะไรบ้างเมื่อเหตุผลของการเปลี่ยนแปลงถูกลาออกเมื่อวันที่ 26 พฤศจิกายน พ.ศ. 2341 และผู้ที่ว่างคือ 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_en": "How many vacators have October 22, 1808 as date successor seated?",
    "question_th": "วันที่ 22 ตุลาคม พ.ศ. 2351 มีผู้ดำรงตำแหน่งแทนจำนวนกี่คน",
    "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_en": "What is the date successor seated where Massachusetts 2nd is the district?",
    "question_th": "วันที่ผู้สืบทอดจะนั่งที่เขตแมสซาชูเซตส์ที่ 2 คือวันที่ใด",
    "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_en": "Who is the successor when the reason for change is seat declared vacant January 2, 1808",
    "question_th": "ใครเป็นผู้สืบทอดเมื่อเหตุผลในการเปลี่ยนแปลงคือที่นั่งว่างในวันที่ 2 มกราคม พ.ศ. 2351",
    "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_en": "Which district has John Culpepper (f) as the vacator?",
    "question_th": "เขตใดมี John Culpepper (f) เป็นผู้ว่างงาน?",
    "context": "CREATE TABLE table_225093_4 (district VARCHAR, vacator VARCHAR)"
  },
  {
    "answer": "SELECT reason_for_change FROM table_225100_4 WHERE district = \"Maryland 6th\"",
    "question_en": "What is the reason for change when maryland 6th is the district? ",
    "question_th": " เหตุผลในการเปลี่ยนแปลงเมื่อแมริแลนด์ที่ 6 เป็นเขตคืออะไร?",
    "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_en": "Who is the vacator when south carolina 4th is the district?",
    "question_th": "ใครคือผู้ว่างงานเมื่อเซาท์แคโรไลนาที่ 4 เป็นเขต?",
    "context": "CREATE TABLE table_225100_4 (vacator VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT successor FROM table_225100_4 WHERE district = \"Florida Territory At-large\"",
    "question_en": "Who is the successor when florida territory at-large is the district?",
    "question_th": "ใครเป็นผู้สืบทอดเมื่อเขตการปกครองฟลอริดามีขนาดใหญ่?",
    "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_en": "Name the vacator for reason for change died january 12, 1826",
    "question_th": "ตั้งชื่อผู้ว่างด้วยเหตุผลในการเปลี่ยนแปลง เสียชีวิตเมื่อวันที่ 12 มกราคม พ.ศ. 2369",
    "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_en": "Name the reason for change pennsylvania 13th",
    "question_th": "ตั้งชื่อเหตุผลในการเปลี่ยนแปลงเพนซิลเวเนีย 13",
    "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_en": "Name the vacator for died august 13, 1826",
    "question_th": "ตั้งชื่อผู้ว่างงาน ซึ่งเสียชีวิตเมื่อวันที่ 13 สิงหาคม พ.ศ. 2369",
    "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_en": "Name the successor for elected january 26, 1837",
    "question_th": "ตั้งชื่อผู้สืบทอดตำแหน่งเมื่อวันที่ 26 มกราคม พ.ศ. 2380",
    "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_en": "Name the successor for north carolina 13th",
    "question_th": "ตั้งชื่อผู้สืบทอดตำแหน่งของนอร์ทแคโรไลนาที่ 13",
    "context": "CREATE TABLE table_225204_4 (successor VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT date_successor_seated FROM table_225204_4 WHERE district = \"Pennsylvania 17th\"",
    "question_en": "Name the date successor seated for pennsylvania 17th",
    "question_th": "ตั้งชื่อวันที่ผู้สืบทอดตำแหน่งสำหรับเพนซิลวาเนียที่ 17",
    "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_en": "who are the writer of the series episode number 170?",
    "question_th": "ใครเป็นคนเขียนซีรีส์ตอนที่ 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_en": "which is the  maximun serie episode number when the millions of North American spectators is 3.14?",
    "question_th": "หมายเลขตอนสูงสุดในซีรีส์ใดที่มีผู้ชมอเมริกาเหนือหลายล้านคนอยู่ที่ 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_en": "How many writers write the episode whose director is Jonathan Herron?",
    "question_th": "มีนักเขียนกี่คนที่เขียนบทซึ่งมีผู้กำกับคือ Jonathan Herron",
    "context": "CREATE TABLE table_22580855_1 (written_by VARCHAR, directed_by VARCHAR)"
  },
  {
    "answer": "SELECT MAX(production_code) FROM table_22580855_1",
    "question_en": "which is the biggest production code?",
    "question_th": "รหัสการผลิตที่ใหญ่ที่สุดคืออะไร?",
    "context": "CREATE TABLE table_22580855_1 (production_code INTEGER)"
  },
  {
    "answer": "SELECT written_by FROM table_22580855_1 WHERE production_code = 8011",
    "question_en": "who are the writers when the production code is 8011?",
    "question_th": "ใครเป็นผู้เขียนเมื่อรหัสการผลิตคือ 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_en": "what is the name of the episode whose writer is Timothy J. Lea and the director is Norberto Barba?",
    "question_th": "ตอนที่ผู้เขียนคือ Timothy J. Lea และผู้กำกับคือ 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_en": "What is the least year when men's singles is Raju Rai?",
    "question_th": "ราจูรายชายเดี่ยวปีไหนน้อยที่สุด?",
    "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_en": "How many outcomes are listed when the final opponent was Johan Kriek? ",
    "question_th": " มีผลลัพธ์กี่รายการที่ระบุไว้เมื่อคู่ต่อสู้คนสุดท้ายคือ 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_en": "How many miles were driven in the race where the winner finished in 2:47:11?",
    "question_th": "วิ่งไปกี่ไมล์แล้วผู้ชนะเข้าเส้นชัยด้วยเวลา 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_en": "What date was the race in 1968 run on?",
    "question_th": "การแข่งขันในปี 1968 จัดขึ้นในวันที่ใด?",
    "context": "CREATE TABLE table_22648285_1 (date VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_22648285_1 WHERE laps = \"301*\"",
    "question_en": "What year had a race with 301* laps?",
    "question_th": "ปีใดที่มีการแข่งขัน 301* รอบ?",
    "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_en": "How many races did Cale Yarborough win at an average speed of 88.924 mph?",
    "question_th": "Cale Yarborough ชนะการแข่งขันกี่ครั้งด้วยความเร็วเฉลี่ย 88.924 ไมล์ต่อชั่วโมง",
    "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_en": "Name the most pos for west bromwich albion club",
    "question_th": "ระบุตำแหน่งที่มากที่สุดของสโมสรเวสต์บรอมวิช อัลเบี้ยน",
    "context": "CREATE TABLE table_226619_12 (pos INTEGER, club VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_226619_12 WHERE respect_toward_opponents = 212",
    "question_en": "Name the points for 212 respect toward opponents",
    "question_th": "ตั้งชื่อคะแนน 212 เคารพคู่ต่อสู้",
    "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_en": "Name the pos for west ham united",
    "question_th": "ตั้งชื่อตำแหน่งเวสต์แฮมยูไนเต็ด",
    "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_en": "Name the date of birth for 27/07/86",
    "question_th": "ตั้งชื่อวันเกิด 27/07/86",
    "context": "CREATE TABLE table_22705586_1 (name VARCHAR, date_of_birth VARCHAR)"
  },
  {
    "answer": "SELECT MIN(number) FROM table_22705586_1",
    "question_en": "Name the least number",
    "question_th": "ตั้งชื่อจำนวนที่น้อยที่สุด",
    "context": "CREATE TABLE table_22705586_1 (number INTEGER)"
  },
  {
    "answer": "SELECT nationality FROM table_22705586_1 WHERE name = \"Francesco Guglielmi\"",
    "question_en": "Name the nationality for francesco guglielmi",
    "question_th": "ตั้งชื่อสัญชาติของฟรานเชสโก กูกลิเอลมี",
    "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_en": "Name the height for date of birth being 17/08/75",
    "question_th": "ตั้งชื่อส่วนสูงวันเกิดเป็น 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_en": "How many points did player 7 score in the challenge cup?",
    "question_th": "ผู้เล่น 7 ทำคะแนนในถ้วยท้าทายได้กี่คะแนน?",
    "context": "CREATE TABLE table_22683369_8 (challenge_cup VARCHAR, p VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(league) FROM table_22683369_8 WHERE player = \"Kris Doolan\"",
    "question_en": "What is Kris doolan's league number?",
    "question_th": "หมายเลขลีกของ Kris doolan คืออะไร?",
    "context": "CREATE TABLE table_22683369_8 (league VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(p) FROM table_22683369_8 WHERE player = \"Bryan Hodge\"",
    "question_en": "What is bryan hodge's player number",
    "question_th": "หมายเลขผู้เล่นของไบรอัน ฮอดจ์คืออะไร",
    "context": "CREATE TABLE table_22683369_8 (p VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MIN(league) AS Cup FROM table_22683369_8",
    "question_en": "What was the lowest number of points scored in the league cup?",
    "question_th": "คะแนนต่ำสุดในลีกคัพคือเท่าไร?",
    "context": "CREATE TABLE table_22683369_8 (league INTEGER)"
  },
  {
    "answer": "SELECT date FROM table_22801165_1 WHERE cowboys_points = 13",
    "question_en": "When did the Cowboys score 13 points in 1966?",
    "question_th": "คาวบอยส์ทำคะแนนได้ 13 แต้มในปี 1966 เมื่อใด",
    "context": "CREATE TABLE table_22801165_1 (date VARCHAR, cowboys_points VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_22801165_1 WHERE date = \"Nov. 5\"",
    "question_en": "What was the Cowboys' record for Nov. 5, 1966?",
    "question_th": "บันทึกของ Cowboys เมื่อวันที่ 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_en": "Who won the regular season when Maryland won the tournament?",
    "question_th": "ใครเป็นผู้ชนะในฤดูกาลปกติเมื่อแมริแลนด์ชนะการแข่งขัน?",
    "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_en": "Who won the tournament when Idaho State won the regular season?",
    "question_th": "ใครชนะการแข่งขันเมื่อรัฐไอดาโฮชนะในฤดูกาลปกติ?",
    "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_en": "Who won the regular season when Missouri Valley Conference took place?",
    "question_th": "ใครเป็นผู้ชนะในฤดูกาลปกติเมื่อการประชุม Missouri Valley Conference เกิดขึ้น?",
    "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_en": "What was the conference when Arizona State won the regular season?",
    "question_th": "การประชุมเมื่อรัฐแอริโซนาชนะในฤดูกาลปกติคืออะไร",
    "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_en": "Who is the tournament winner in the Atlantic Coast Conference?",
    "question_th": "ใครคือผู้ชนะการแข่งขันในการประชุม 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_en": "Which county had a 3.6% unemployment rate?",
    "question_th": "มณฑลใดมีอัตราการว่างงาน 3.6%",
    "context": "CREATE TABLE table_22815568_2 (county VARCHAR, unemployment_rate VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_22815568_2 WHERE poverty_rate = \"17.3%\"",
    "question_en": "What is the status of the county that has a 17.3% poverty rate?",
    "question_th": "สถานะของเทศมณฑลที่มีอัตราความยากจน 17.3% คืออะไร?",
    "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_en": "What is the market income per capita of the county with the 9.4% poverty rate?",
    "question_th": "รายได้จากตลาดต่อหัวของเทศมณฑลที่มีอัตราความยากจน 9.4% เป็นเท่าใด",
    "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_en": "How many status' are there with a population of 90565?",
    "question_th": "จำนวนประชากร 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_en": "What is the status of the county with per capita market income of $24,326?",
    "question_th": "สถานะของเคาน์ตีที่มีรายได้จากตลาดต่อหัวอยู่ที่ 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_en": "What is the unemployment rate for the county with a market income per capita of $20,958?",
    "question_th": "อัตราการว่างงานสำหรับเคาน์ตีที่มีรายได้ตลาดต่อหัวอยู่ที่ 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_en": "List all who wrote for production code 1ark07.",
    "question_th": "รายชื่อทุกคนที่เขียนรหัสการผลิต 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_en": "How many directors were there for the production code 1ark08?",
    "question_th": "มีผู้กำกับกี่คนสำหรับรหัสการผลิต 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_en": "List all directors from episodes with viewership of 1.945 million.",
    "question_th": "รายชื่อผู้กำกับทั้งหมดจากตอนที่มีผู้ชม 1.945 ล้าน",
    "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_en": "What is the original air date for production code 1ark79?",
    "question_th": "รหัสการผลิต 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_en": "How many rounds were there in the 2006 davis cup europe/africa group I?",
    "question_th": "เดวิสคัพยุโรป/แอฟริกากลุ่ม 1 ประจำปี 2006 มีทั้งหมดกี่รอบ",
    "context": "CREATE TABLE table_22853654_10 (round VARCHAR, edition VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_22879262_13 WHERE date = \"May 3\"",
    "question_en": "Where does the team play May 3?",
    "question_th": "ทีมจะเล่นที่ไหนในวันที่ 3 พฤษภาคม?",
    "context": "CREATE TABLE table_22879262_13 (team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_22879323_8 WHERE date = \"February 27\"",
    "question_en": "What team was the game on February 27 played against?",
    "question_th": "วันที่ 27 กุมภาพันธ์ พบกับทีมใด?",
    "context": "CREATE TABLE table_22879323_8 (team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_22879323_8 WHERE high_rebounds = \"Brook Lopez (8)\"",
    "question_en": "What was the score of the game in which Brook Lopez (8) did the high rebounds?",
    "question_th": "ในเกมที่บรู๊ค โลเปซ (8) รีบาวด์ได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_22879323_8 (score VARCHAR, high_rebounds VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_22879323_8 WHERE date = \"February 9\"",
    "question_en": "Who did the high assists in the game played on February 9?",
    "question_th": "ใครทำแอสซิสต์ได้สูงในเกมที่เล่นเมื่อวันที่ 9 กุมภาพันธ์?",
    "context": "CREATE TABLE table_22879323_8 (high_assists VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_22879323_8 WHERE team = \"Memphis\"",
    "question_en": "What was the record in the game against Memphis?",
    "question_th": "สถิติในเกมกับเมมฟิสเป็นอย่างไรบ้าง?",
    "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_en": "What's the highest game number for a game in which Kris Humphries (8) did the high rebounds?",
    "question_th": "หมายเลขเกมสูงสุดสำหรับเกมที่คริส ฮัมฟรีส์ (8) รีบาวด์ได้สูงคือหมายเลขใด",
    "context": "CREATE TABLE table_22879323_8 (game INTEGER, high_rebounds VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_22883210_11 WHERE series = \"0-1\"",
    "question_en": "When 0-1 is the series who has the highest amount of assists?",
    "question_th": "เมื่อ 0-1 เป็นซีรีส์ที่มีจำนวนแอสซิสต์สูงสุด?",
    "context": "CREATE TABLE table_22883210_11 (high_assists VARCHAR, series VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_22883210_11 WHERE game = 5",
    "question_en": "When 5 is the game who has the highest amount of points?",
    "question_th": "เมื่อ 5 คือเกมที่มีคะแนนสูงสุด?",
    "context": "CREATE TABLE table_22883210_11 (high_points VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_22883210_11 WHERE series = \"1-1\"",
    "question_en": "When 1-1 is the series who is the team?",
    "question_th": "เมื่อ 1-1 เป็นซีรีส์ ใครคือทีม?",
    "context": "CREATE TABLE table_22883210_11 (team VARCHAR, series VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_22883210_11 WHERE high_points = \"George Hill (29)\"",
    "question_en": "When george hill (29) has the highest amount of points what is the date?",
    "question_th": "เมื่อจอร์จ ฮิลล์ (29) มีคะแนนสูงสุดคือวันที่เท่าไร?",
    "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_en": "Name the audition city for hyatt regency chicago",
    "question_th": "ตั้งชื่อเมืองออดิชั่นสำหรับไฮแอท รีเจนซี ชิคาโก",
    "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_en": "Name the callback date for amway arena",
    "question_th": "ตั้งชื่อวันที่โทรกลับสำหรับแอมเวย์อารีน่า",
    "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_en": "Name the guest judge for first audition date being july 9, 2009",
    "question_th": "เสนอชื่อกรรมการรับเชิญสำหรับการคัดเลือกครั้งแรกคือวันที่ 9 กรกฎาคม พ.ศ. 2552",
    "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_en": "Name the total number of golden tickets being rosen shingle creek resort",
    "question_th": "ตั้งชื่อบัตรทองจำนวนทั้งหมดว่าเป็นรีสอร์ท Rosen Shingle Creek",
    "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_en": "Name the golden ticket for invesco field",
    "question_th": "ตั้งชื่อตั๋วทองสำหรับสนาม invesco",
    "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_en": "Name the k. r. narayanan values for pondicherry",
    "question_th": "ตั้งชื่อค่า kr narayanan สำหรับพอนดิเชอร์รี",
    "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_en": "Name the kr narayanan votes for values being 936 for kr",
    "question_th": "ตั้งชื่อคะแนนโหวตของ kr narayanan สำหรับค่า 936 สำหรับ 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_en": "Name the most kr votes for value of each vote for 208",
    "question_th": "ระบุจำนวนคะแนนโหวต kr มากที่สุดตามมูลค่าการโหวตแต่ละครั้งสำหรับ 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_en": "Name the number of tn seshan values for kr values is 478608",
    "question_th": "ตั้งชื่อจำนวนค่า tn seshan สำหรับค่า kr คือ 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_en": "Name the production code for number in season being 21",
    "question_th": "ตั้งชื่อรหัสการผลิตสำหรับหมายเลขในฤดูกาลเป็น 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_en": "Name the production code by paul lieberstein",
    "question_th": "ตั้งชื่อรหัสการผลิตโดย 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_en": "How many blockings occured in the game with 198 rebounds?",
    "question_th": "มีการบล็อกกี่ครั้งในเกมที่มี 198 รีบาวน์?",
    "context": "CREATE TABLE table_22993636_5 (blocks INTEGER, rebounds VARCHAR)"
  },
  {
    "answer": "SELECT minutes FROM table_22993636_5 WHERE player = \"Jordan Coleman\"",
    "question_en": "For how long did Jordan Coleman play?",
    "question_th": "Jordan Coleman เล่นนานแค่ไหน?",
    "context": "CREATE TABLE table_22993636_5 (minutes VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(minutes) FROM table_22993636_5 WHERE player = \"Chanel Chisholm\"",
    "question_en": "How much time, in minutes, did Chanel Chisholm play?",
    "question_th": "Chanel Chisholm เล่นกี่โมงในนาที?",
    "context": "CREATE TABLE table_22993636_5 (minutes VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MIN(three_pointers) FROM table_22993636_5 WHERE steals = 52",
    "question_en": "What is the lowest number of 3 pointers that occured in games with 52 steals?",
    "question_th": "จำนวนพอยน์เตอร์ 3 ตัวต่ำสุดที่เกิดขึ้นในเกมที่มีการขโมย 52 ครั้งคือเท่าใด",
    "context": "CREATE TABLE table_22993636_5 (three_pointers INTEGER, steals VARCHAR)"
  },
  {
    "answer": "SELECT MIN(games_played) FROM table_22993636_5 WHERE steals = 50",
    "question_en": "What is the lowest number of games played by the player with 50 steals?",
    "question_th": "จำนวนเกมที่ผู้เล่นเล่นน้อยที่สุดโดยขโมย 50 ครั้งคือเท่าไร?",
    "context": "CREATE TABLE table_22993636_5 (games_played INTEGER, steals VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(country) FROM table_2305948_1 WHERE name = \"The Rock\"",
    "question_en": "What countries does the Rock come from?",
    "question_th": "เดอะร็อคมาจากประเทศใดบ้าง?",
    "context": "CREATE TABLE table_2305948_1 (country VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(other_placings) FROM table_2305948_1 WHERE federation = \"ROH, WWE\"",
    "question_en": "How many times has a wrestler whose federation was roh, wwe competed in this event?",
    "question_th": "มีนักมวยปล้ำคนไหนที่เป็นสหพันธ์ roh ลงแข่งขันในรายการนี้กี่ครั้ง?",
    "context": "CREATE TABLE table_2305948_1 (other_placings VARCHAR, federation VARCHAR)"
  },
  {
    "answer": "SELECT _number FROM table_2305948_1 WHERE name = \"Eddie Guerrero\"",
    "question_en": "What are the rank/s of Eddie Guerrero?",
    "question_th": "Eddie Guerrero มีอันดับเท่าไหร่?",
    "context": "CREATE TABLE table_2305948_1 (_number VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(2) FROM table_2305948_1 WHERE country = \"England\"",
    "question_en": "How many times has a wrestler from the country of England wrestled in this event?",
    "question_th": "นักมวยปล้ำจากประเทศอังกฤษปล้ำครั้งนี้กี่ครั้ง?",
    "context": "CREATE TABLE table_2305948_1 (country VARCHAR)"
  },
  {
    "answer": "SELECT written_by FROM table_23235679_1 WHERE no_in_series = 88",
    "question_en": "Name who wrote number 88",
    "question_th": "ชื่อผู้เขียนหมายเลข 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_en": "Name who wrote 5ajn11",
    "question_th": "ชื่อผู้เขียน 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_en": "Name who wrote the episode directed by  pam cooke & jansen yee",
    "question_th": "ชื่อผู้เขียนบทตอนนี้ กำกับโดย แพม คุก และ แจนเซ่น ยี่",
    "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–3, 6–2\" AND surface = \"Hard\"",
    "question_en": "Name the number of year for 6–3, 6–2 hard surface",
    "question_th": "ตั้งชื่อหมายเลขปีสำหรับพื้นผิวแข็ง 6–3, 6–2",
    "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_en": "Name the surface for philadelphia",
    "question_th": "ตั้งชื่อพื้นผิวของฟิลาเดลเฟีย",
    "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_en": "Name the championship for clay and corrado barazzutti",
    "question_th": "ตั้งชื่อแชมป์สำหรับดินเหนียวและคอร์ราโดบารัซซูตติ",
    "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_en": "Name the year for clay for boston and guillermo vilas",
    "question_th": "ตั้งชื่อปีสำหรับดินเหนียวสำหรับบอสตันและกิลเลอร์โมวิลาส",
    "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–2, 6–1, 6–3\"",
    "question_en": "Name the total number of opponent in the final for 6–2, 6–1, 6–3",
    "question_th": "ระบุจำนวนคู่ต่อสู้ทั้งหมดในรอบชิงชนะเลิศ 6–2, 6–1, 6–3",
    "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_en": "What is every year where opponent in the final is John Mcenroe at Wimbledon?",
    "question_th": "ทุกปีคู่ต่อสู้ในรอบชิงชนะเลิศคือ John Mcenroe ที่วิมเบิลดัน?",
    "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_en": "What is every score in the final for opponent in final John Mcenroe at US Open?",
    "question_th": "ทุกคะแนนในรอบชิงชนะเลิศของคู่ต่อสู้ในรอบสุดท้าย John Mcenroe ที่ 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–4, 6–7 (1–7) , 6–7 (4–7) , 4–6\"",
    "question_en": "What is every surface with a score in the final of 6–4, 6–7 (1–7) , 6–7 (4–7) , 4–6?",
    "question_th": "ทุกพื้นผิวที่มีคะแนนในรอบสุดท้ายของ 6–4, 6–7 (1–7) , 6–7 (4–7) , 4–6 คืออะไร?",
    "context": "CREATE TABLE table_23235767_1 (surface VARCHAR, score_in_the_final VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_23248910_11 WHERE game = 6",
    "question_en": "What was the score in game 6?",
    "question_th": "คะแนนในเกมที่ 6 คืออะไร?",
    "context": "CREATE TABLE table_23248910_11 (score VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_23248910_11 WHERE game = 2",
    "question_en": "What were the amount of rebounds in game 2?",
    "question_th": "จำนวนรีบาวด์ในเกมที่ 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_en": "On what date was the attendance at TD Garden 18,624?",
    "question_th": "งาน 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_en": "What day was the record 14-27?",
    "question_th": "บันทึกวันที่ 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_en": "How many people got high points in game 35?",
    "question_th": "มีกี่คนที่ได้คะแนนสูงในเกม 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_en": "Who had the highest points on January 2?",
    "question_th": "ใครมีคะแนนสูงสุดในวันที่ 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_en": "Who did the high rebounds in the game where Carl Landry (23) did the most high points?",
    "question_th": "ใครทำรีบาวด์ได้สูงในเกมที่ คาร์ล แลนดรี้ (23) ทำแต้มได้สูงที่สุด?",
    "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_en": "What's the end score of the game where Shane Battier (8) did the high rebounds?",
    "question_th": "สกอร์ท้ายเกมที่เชน แบทเทียร์ (8) รีบาวด์สูงเป็นอย่างไรบ้าง?",
    "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_en": "Where was the game in which Carl Landry (25) did the most high points played?",
    "question_th": "เกมที่ Carl Landry (25) เล่นแต้มสูงสุดคือเกมไหน?",
    "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_en": "Who had the most high assists with a record of 32-19?",
    "question_th": "ใครแอสซิสต์สูงสุดด้วยสถิติ 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_en": "When did the Mavericks have a record of 32-19?",
    "question_th": "Mavericks มีสถิติ 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_en": "List the stadium and number of people in attendance when the team record was 45-22.",
    "question_th": "ระบุสนามกีฬาและจำนวนผู้เข้าร่วมเมื่อสถิติของทีมคือ 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_en": "How many games had been played when the Mavericks had a 46-22 record?",
    "question_th": "มีกี่เกมที่ Mavericks มีสถิติ 46-22?",
    "context": "CREATE TABLE table_23284271_9 (game INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_23285761_8 WHERE score = \"W 109–95 (OT)\"",
    "question_en": "Name the date for score w 109–95 (ot)",
    "question_th": "ตั้งชื่อวันที่คะแนน w 109–95 (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_en": "Name the high points for pepsi center 19,155",
    "question_th": "บอกคะแนนสูงสุดเป๊ปซี่เซ็นเตอร์ 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_en": "If the record is 5-8, what is the team name?",
    "question_th": "ถ้าสถิติ 5-8 ชื่อทีมว่าอะไร?",
    "context": "CREATE TABLE table_23285805_4 (team VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT MAX(game) FROM table_23285805_4 WHERE record = \"5-5\"",
    "question_en": "If the record is 5-5, what is the game maximum?",
    "question_th": "หากสถิติคือ 5-5 เกมสูงสุดคือเท่าไร?",
    "context": "CREATE TABLE table_23285805_4 (game INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_23285805_4 WHERE record = \"6-8\"",
    "question_en": "If the record is 6-8, what was the score?",
    "question_th": "ถ้าสถิติ 6-8 สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_23285805_4 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_23286112_6 WHERE game = 3",
    "question_en": "When was the game number 3 played?",
    "question_th": "เกมหมายเลข 3 เล่นเมื่อใด",
    "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_en": "Where was the game in which Kevin Durant (25) did the most high points played?",
    "question_th": "เกมไหนที่เควิน ดูแรนท์ (25) ทำแต้มได้สูงที่สุดคือเกมไหน?",
    "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_en": "What was the record in the game in which Jeff Green (14) did the most high rebounds?",
    "question_th": "สถิติในเกมที่เจฟฟ์ กรีน (14) รีบาวด์ได้สูงที่สุดคือเท่าไหร่?",
    "context": "CREATE TABLE table_23286112_6 (record VARCHAR, high_rebounds VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_23286112_8 WHERE date = \"January 4\"",
    "question_en": "Name the team for january 4",
    "question_th": "ตั้งชื่อทีมวันที่ 4 มกราคม",
    "context": "CREATE TABLE table_23286112_8 (team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_23286112_8 WHERE date = \"January 18\"",
    "question_en": "Name the location attendance for january 18",
    "question_th": "ตั้งชื่อสถานที่เข้าร่วมสำหรับวันที่ 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_en": "Name the least game for january 29",
    "question_th": "ทายชื่อเกมน้อยที่สุดประจำวันที่ 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_en": "What location attendance has russell westbrook (5) as high assists and nenad krstic (8) as high rebounds?",
    "question_th": "รัสเซลล์ เวสต์บรูก (5) แอสซิสต์สูง และเนนัด เครสติค (8) รีบาวด์สูง เข้าชมสถานที่ใด",
    "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_en": "Who has high points when toyota center 15,095 is location attendance?",
    "question_th": "ใครมีคะแนนสูงเมื่อศูนย์โตโยต้า 15,095 คือ 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_en": "Who has high points when verizon center 17,152 is location attendance?",
    "question_th": "ใครมีคะแนนสูงเมื่อ Verizon Center 17,152 คือ 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_en": "What is the score for the date of December 7?",
    "question_th": "คะแนนประจำวันที่ 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_en": "What's the number of the game in which Carlos Boozer (8) did the high rebounds?",
    "question_th": "คาร์ลอส บูเซอร์ (8) รีบาวด์สูงกี่เกม?",
    "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_en": "When was the game in which Deron Williams (13) did the high assists played?",
    "question_th": "เกมที่เดรอน วิลเลียมส์ (13) ทำแอสซิสต์สูงคือเกมเมื่อใด?",
    "context": "CREATE TABLE table_23286223_5 (date VARCHAR, high_assists VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(high_rebounds) FROM table_23286223_5 WHERE game = 26",
    "question_en": "How many different high rebound results are there for the game number 26?",
    "question_th": "เกมหมายเลข 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_en": "How many different players did the most high assists on the March 4 game?",
    "question_th": "มีผู้เล่นกี่คนที่ทำแอสซิสต์ได้มากที่สุดในเกมวันที่ 4 มีนาคม?",
    "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_en": "What was the record at the game where Deron Williams (6) did the high assists?",
    "question_th": "อะไรคือสถิติในเกมที่เดรอน วิลเลียมส์ (6) ทำแอสซิสต์ได้สูง?",
    "context": "CREATE TABLE table_23286223_8 (record VARCHAR, high_assists VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_23286223_8 WHERE date = \"March 24\"",
    "question_en": "Where was the March 24 game played?",
    "question_th": "เกมวันที่ 24 มีนาคมเล่นที่ไหน?",
    "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_en": "How many players did the most high points in the game with 39-22 record?",
    "question_th": "มีผู้เล่นกี่คนที่ทำแต้มสูงสุดในเกมด้วยสถิติ 39-22?",
    "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_en": "What is the broadcast date where Jason's team is Rhod Gilbert and Shappi Khorsandi?",
    "question_th": "Rhod Gilbert และ Shappi Khorsandi จะเป็นทีมของ Jason ออกอากาศวันไหน?",
    "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_en": "In how many episodes did Sean's team include Jeremy Clarkson and James McQuillan?",
    "question_th": "ทีมของ Sean มี Jeremy Clarkson และ 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_en": "Who was on Jason's team for the 12 June 2009 episode?",
    "question_th": "ใครอยู่ในทีมของเจสันในตอนที่ 12 มิถุนายน พ.ศ. 2552",
    "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_en": "Who was on Jason's team in the episode where Sean's team was Reginald D. Hunter and Kelly Osbourne?",
    "question_th": "ใครอยู่ในทีมของ Jason ในตอนที่ทีมของ Sean คือ Reginald D. Hunter และ 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_en": "what is the record where the locaiton is tampa, fl and the opponent is louisville?",
    "question_th": "บันทึกว่าตำแหน่งคือแทมปา ชั้นฟลอริดา และคู่ต่อสู้คือหลุยส์วิลล์คืออะไร",
    "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_en": "what is the number of opponents where the location is syracuse, ny?",
    "question_th": "ฝ่ายตรงข้ามซึ่งตำแหน่งคือซีราคิวส์มีจำนวนเท่าไร ny?",
    "context": "CREATE TABLE table_23346303_3 (opponent VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_23346303_3 WHERE opponent = \"Central Connecticut\"",
    "question_en": "what is the record where the opponent is central connecticut?",
    "question_th": "บันทึกที่คู่ต่อสู้อยู่ที่คอนเนตทิคัตตอนกลางคืออะไร?",
    "context": "CREATE TABLE table_23346303_3 (record VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT horizontal_order FROM table_233830_1 WHERE channels = \"WXYZRSTUVPQ\"",
    "question_en": "If the channels is wxyzrstuvpq, what is the horizontal order?",
    "question_th": "ถ้าช่องเป็น wxyzrstuvpq ลำดับแนวนอนจะเป็นเท่าไหร่?",
    "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_en": "If the height order is 1 and the soundfield type is mixed-order, what are all the channels?",
    "question_th": "ถ้าลำดับความสูงเป็น 1 และประเภทสนามเสียงเป็นแบบผสม จะมีช่องทั้งหมดกี่ช่อง?",
    "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_en": "If the channels is wxyzuv, what is the number of channels?",
    "question_th": "ถ้าช่องเป็น wxyzuv มีจำนวนช่องเท่าไร?",
    "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_en": "What are the titles of the episodes which had 1.10 million U.S. viewers?",
    "question_th": "ชื่อเรื่องของตอนที่มีผู้ชม 1.10 ล้านคนในสหรัฐฯ คืออะไร?",
    "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_en": "What is the name of the episodes which had 1.22 million U.S. viewers?",
    "question_th": "ตอนที่มีผู้ชม 1.22 ล้านคนในอเมริกาชื่ออะไร?",
    "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_en": "How many millions of viewers did the episode written by Andrea Conway Kagey?",
    "question_th": "ตอนที่เขียนโดย 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_en": "What is the title of the episode/s written by Michael Gans & Richard Register?",
    "question_th": "ชื่อเรื่องของตอนที่เขียนโดย 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_en": "What is the total score when 7 is the average ranking?",
    "question_th": "คะแนนรวมเมื่อ 7 คืออันดับเฉลี่ยเป็นเท่าใด",
    "context": "CREATE TABLE table_23465011_5 (total_score INTEGER, average_ranking VARCHAR)"
  },
  {
    "answer": "SELECT couple FROM table_23465011_5 WHERE total_score = 295",
    "question_en": "Which couple has 295 as a total score?",
    "question_th": "คู่ไหนได้คะแนนรวม 295 คะแนน?",
    "context": "CREATE TABLE table_23465011_5 (couple VARCHAR, total_score VARCHAR)"
  },
  {
    "answer": "SELECT average FROM table_23465011_5 WHERE couple = \"Anh & Luda\"",
    "question_en": "What is the average for the couple anh & luda?",
    "question_th": "ค่าเฉลี่ยของคู่รักอันและลูดาคือเท่าไร?",
    "context": "CREATE TABLE table_23465011_5 (average VARCHAR, couple VARCHAR)"
  },
  {
    "answer": "SELECT MAX(attendance) FROM table_23486853_5",
    "question_en": "What was the largest attended game?",
    "question_th": "เกมที่มีผู้เข้าร่วมมากที่สุดคืออะไร?",
    "context": "CREATE TABLE table_23486853_5 (attendance INTEGER)"
  },
  {
    "answer": "SELECT score FROM table_23486853_7 WHERE date = \"February 9\"",
    "question_en": "What scores happened on February 9?",
    "question_th": "วันที่ 9 กุมภาพันธ์มีคะแนนอะไรบ้าง?",
    "context": "CREATE TABLE table_23486853_7 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_23486853_7 WHERE date = \"February 11\"",
    "question_en": "What scores happened on February 11?",
    "question_th": "วันที่ 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_en": "How many directed by have 2.80 as u.s. viewers  (in millions)?",
    "question_th": "มีกี่คนที่กำกับโดยเรามีผู้ชม 2.80 คน (เป็นล้าน)?",
    "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_en": "What is the title when 2.50 is u.s. viewers (in millions)? ",
    "question_th": " ชื่ออะไรเมื่อ 2.50 เป็นผู้ชมของเรา (เป็นล้าน)?",
    "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_en": "Name the number of points defending for 1075",
    "question_th": "บอกจำนวนแต้มป้องกันได้ 1,075",
    "context": "CREATE TABLE table_23501776_16 (points VARCHAR, new_points VARCHAR)"
  },
  {
    "answer": "SELECT points AS won FROM table_23501776_16 WHERE points = 1230",
    "question_en": "Name the points won for 1230",
    "question_th": "บอกชื่อคะแนนที่ได้รับ 1230",
    "context": "CREATE TABLE table_23501776_16 (points VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_23501776_16 WHERE points = 3185",
    "question_en": "Name the status for points 3185",
    "question_th": "ตั้งชื่อสถานะคะแนน 3185",
    "context": "CREATE TABLE table_23501776_16 (status VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT numbers FROM table_2351952_1 WHERE order_number = \"713096-713119\"",
    "question_en": "What are the numbers for the order number 713096-713119?",
    "question_th": "หมายเลขคำสั่งซื้อหมายเลข 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_en": "The numbers 801-812 are in which country?",
    "question_th": "ตัวเลข 801-812 อยู่ในประเทศใด?",
    "context": "CREATE TABLE table_2351952_1 (country VARCHAR, numbers VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_2351952_1 WHERE order_number = \"711871-711880\"",
    "question_en": "What country has the order number 711871-711880?",
    "question_th": "ประเทศอะไรมีหมายเลขคำสั่งซื้อ 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_en": "The serial numbers 713096-713119 are in which country?",
    "question_th": "หมายเลขซีเรียล 713096-713119 อยู่ประเทศไหน?",
    "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_en": "The order number 713726-713735 has what serial number?",
    "question_th": "เลขที่คำสั่งซื้อ 713726-713735 มีซีเรียลนัมเบอร์อะไรคะ?",
    "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_en": "How many railroads have the numbers 864-873?",
    "question_th": "ทางรถไฟมีกี่สายที่มีหมายเลข 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_en": "What's the name of Linroy Bottoson's victim?",
    "question_th": "เหยื่อของลินรอย บอตโตสันชื่ออะไร",
    "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_en": "What was the name of the couple if the number of dances is 6?",
    "question_th": "คู่รักชื่ออะไรถ้าจำนวนการเต้นรำคือ 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_en": "What is the name of the couple if the total points earned is 161?",
    "question_th": "คู่รักชื่ออะไรถ้าคะแนนรวมที่ได้คือ 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_en": "What is the total points earned total number if the average is 21.3?",
    "question_th": "คะแนนรวมที่ได้รับเป็นจำนวนเท่าใดหากค่าเฉลี่ยคือ 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_en": "What is the number of dances total number if the average is 22.3?",
    "question_th": "จำนวนการเต้นรำทั้งหมดเป็นเท่าใดหากค่าเฉลี่ยคือ 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_en": "Name the player that is 1.85 m",
    "question_th": "ตั้งชื่อผู้เล่นว่าสูง 1.85 ม",
    "context": "CREATE TABLE table_23670057_6 (player VARCHAR, height__m_ VARCHAR)"
  },
  {
    "answer": "SELECT height__f_ FROM table_23670057_6 WHERE player = \"Demond Greene\"",
    "question_en": "Name the height of demond greene",
    "question_th": "ตั้งชื่อความสูงของปีศาจกรีน",
    "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_en": "Name the height for the player born 1989 and height 2.11",
    "question_th": "ตั้งชื่อส่วนสูงสำหรับผู้เล่นที่เกิดปี 1989 และส่วนสูง 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_en": "Name the height for the player born in 1981",
    "question_th": "ตั้งชื่อส่วนสูงของผู้เล่นที่เกิดในปี 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_en": "Name the height for steffen hamann",
    "question_th": "ตั้งชื่อส่วนสูงของสเตฟเฟน ฮามันน์",
    "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_en": "Who wrote the episode whose director is Karen Gaviola?",
    "question_th": "ใครเป็นคนเขียนตอนที่ผู้กำกับคือ 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_en": "When did the episode viewed by 10.50 millions of people in the US run for the first time?",
    "question_th": "ตอนนี้มีผู้ชม 10.50 ล้านคนในสหรัฐอเมริกาเป็นครั้งแรกเมื่อใด",
    "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_en": "What's the name of the episode seen by 9.63 millions of people in the US, whose director is Laura Innes?",
    "question_th": "ตอนนี้ชื่ออะไรที่มีผู้ชม 9.63 ล้านคนในสหรัฐอเมริกา โดยมีลอร่า อินเนสเป็นผู้กำกับ",
    "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_en": "How many points per game have the tournament 2005 eurobasket?",
    "question_th": "ยูโรบาสเก็ตทัวร์นาเมนต์ปี 2005 มีกี่แต้มต่อเกม?",
    "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_en": "How may assists per game have 7.7 points per game?",
    "question_th": "แอสซิสต์ต่อเกมมี 7.7 แต้มต่อเกมได้อย่างไร?",
    "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_en": "How many games played have 4.7 as points per game?",
    "question_th": "มีกี่เกมที่เล่นมีคะแนน 4.7 ต่อเกม?",
    "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_en": "How many assists per game have 4.2 rebounds per game?",
    "question_th": "จำนวนแอสซิสต์ต่อเกมมี 4.2 รีบาวด์ต่อเกม?",
    "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_en": "How many assists per game in the tournament 2010 fiba world championship?",
    "question_th": "กี่แอสซิสต์ต่อเกมในการแข่งขันชิงแชมป์โลกฟีบา 2010?",
    "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_en": "How many games played have 4.7 points per game?",
    "question_th": "มีกี่เกมที่เล่นได้ 4.7 แต้มต่อเกม?",
    "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_en": "What was the average finish the year Bodine finished 3rd?",
    "question_th": "ปีที่ Bodine จบอันดับที่ 3 โดยเฉลี่ยอยู่ที่เท่าไร?",
    "context": "CREATE TABLE table_2387790_2 (avg_finish VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_2387790_2 WHERE year = 1987",
    "question_en": "What position did he finish in 1987?",
    "question_th": "เขาจบตำแหน่งอะไรในปี 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_en": "What team was Bodine in when he had an average finish of 8.3?",
    "question_th": "โบดีนอยู่ทีมใดเมื่อเขาจบสกอร์เฉลี่ย 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_en": "How many years did he have an average finish of 11.7?",
    "question_th": "เขาจบเฉลี่ย 11.7 กี่ปี?",
    "context": "CREATE TABLE table_2387790_2 (avg_start VARCHAR, avg_finish VARCHAR)"
  },
  {
    "answer": "SELECT MIN(week) FROM table_23916462_3",
    "question_en": "What is the least value for week?",
    "question_th": "ค่าน้อยที่สุดประจำสัปดาห์คือเท่าใด?",
    "context": "CREATE TABLE table_23916462_3 (week INTEGER)"
  },
  {
    "answer": "SELECT COUNT(attendance) FROM table_23916462_3 WHERE date = \"September 5\"",
    "question_en": "How many values for attendance on the date of September 5?",
    "question_th": "ค่าเข้างานวันที่ 5 กันยายน มีค่าเท่าไร?",
    "context": "CREATE TABLE table_23916462_3 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(date) FROM table_23916462_3 WHERE week = 4",
    "question_en": "How many dates for the week of 4?",
    "question_th": "สัปดาห์ที่ 4 มีกี่วัน?",
    "context": "CREATE TABLE table_23916462_3 (date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(attendance) FROM table_23916462_3 WHERE date = \"August 26\"",
    "question_en": "How many values for attendance on the date of August 26?",
    "question_th": "ค่าเข้างานวันที่ 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_en": "what is the total 07-08 gp/jgp 2nd with the name mao asada",
    "question_th": "ยอดรวม 07-08 gp/jgp อันดับที่ 2 ชื่อ เหมา อาซาดะ คืออะไร",
    "context": "CREATE TABLE table_23938357_5 (name VARCHAR)"
  },
  {
    "answer": "SELECT owner_s___2009_ FROM table_23958917_1 WHERE location = \"South Side Indianapolis\"",
    "question_en": "Name the owners 2009 for south side indianapolis",
    "question_th": "ตั้งชื่อเจ้าของปี 2009 สำหรับอินเดียนาโพลิสฝั่งใต้",
    "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_en": "Name the stacks for 1 1969 2 1995",
    "question_th": "ตั้งชื่อกองสำหรับ 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_en": "Name the number of stacks for 1 & 2 235 mw 3 & 4 88.2 mw",
    "question_th": "ตั้งชื่อจำนวนกองสำหรับ 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_en": "Name the number for service dates for hoosier energy for petersburg",
    "question_th": "ตั้งชื่อหมายเลขสำหรับวันที่ให้บริการสำหรับพลังงาน Hoosier สำหรับปีเตอร์สเบิร์ก",
    "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_en": "What frequency does model L34xx use?",
    "question_th": "รุ่น L34xx ใช้ความถี่อะไร?",
    "context": "CREATE TABLE table_24018112_1 (frequency VARCHAR, model__list_ VARCHAR)"
  },
  {
    "answer": "SELECT brand_name FROM table_24018112_1 WHERE model__list_ = \"G6xxx\"",
    "question_en": "What brand is model G6xxx?",
    "question_th": "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_en": "What is the maximum memory speed for frequencies between 2.93-3.2ghz?",
    "question_th": "ความเร็วหน่วยความจำสูงสุดสำหรับความถี่ระหว่าง 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_en": "What brand is model I7-8xx?",
    "question_th": "รุ่น 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_en": "List the number of cores for ddr3-1333 with frequencies between 2.66-2.8ghz.",
    "question_th": "แสดงรายการจำนวนคอร์สำหรับ ddr3-1333 ที่มีความถี่ระหว่าง 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_en": "What frequency does the Pentium processor use?",
    "question_th": "โปรเซสเซอร์ Pentium ใช้ความถี่เท่าใด",
    "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_en": "How many different counts of the votes for Bush are there in the county where he got 69.7% of the votes?",
    "question_th": "มีการนับคะแนนเสียงของบุชที่แตกต่างกันกี่คะแนนในเขตที่เขาได้รับคะแนนเสียง 69.7%",
    "context": "CREATE TABLE table_2401326_1 (bush_number VARCHAR, bush_percentage VARCHAR)"
  },
  {
    "answer": "SELECT kerry_percentage FROM table_2401326_1 WHERE county = \"Oneida\"",
    "question_en": "What percentage of the votes in Oneida did Kerry win?",
    "question_th": "Kerry ชนะคะแนนโหวตกี่เปอร์เซ็นต์?",
    "context": "CREATE TABLE table_2401326_1 (kerry_percentage VARCHAR, county VARCHAR)"
  },
  {
    "answer": "SELECT bush_percentage FROM table_2401326_1 WHERE county = \"Bonneville\"",
    "question_en": "What percentage of the people in Bonneville voted for Bush?",
    "question_th": "คนใน Bonneville โหวตให้ 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_en": "What percentage of the votes were for others in the county where 462 people voted that way?",
    "question_th": "เปอร์เซ็นต์ของคะแนนเสียงเป็นของคนอื่น ๆ ในเขตที่มีผู้ลงคะแนน 462 คนเช่นนั้น",
    "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_en": "What's percentage voted for Busg in the county where Kerry got 37.6%?",
    "question_th": "โหวตให้บุสก์ในเขตที่เคอรี่ได้ 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_en": "How many people voted for Kerry in the county where 8 voted for others?",
    "question_th": "มีคนโหวตให้ Kerry กี่คนในเขตที่ 8 คนโหวตให้คนอื่น?",
    "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_en": "When north american record is the world record who is the denis nizhegorodov ( rus )?",
    "question_th": "เมื่อสถิติอเมริกาเหนือเป็นสถิติโลก ใครคือเดนิส นิเจโกโรดอฟ ( มาตุภูมิ )?",
    "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_en": "How many incoming managers were there after Roy Hodgson left the position for the Fulham team?",
    "question_th": "หลังจากรอย ฮ็อดจ์สันออกจากตำแหน่งให้ทีมฟูแล่มมีผู้จัดการทีมเข้ามากี่คน?",
    "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_en": "What is the table for the team Blackburn Rovers?",
    "question_th": "ตารางคะแนนของทีม แบล็คเบิร์น โรเวอร์ส เป็นอย่างไร?",
    "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_en": "What was the date of appointment for incoming manager Roy Hodgson and the team is Liverpool?",
    "question_th": "นัดผู้จัดการทีมคนใหม่ รอย ฮอดจ์สัน และทีมลิเวอร์พูลคือวันที่เท่าไหร่?",
    "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_en": "What team has an incoming manager named Kenny Dalglish?",
    "question_th": "ทีมไหนมีผู้จัดการทีมคนใหม่ชื่อ เคนนี่ ดัลกลิช?",
    "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_en": "What is the date of vacancy for the Liverpool team with a table named pre-season?",
    "question_th": "วันที่ว่างสำหรับทีมลิเวอร์พูลที่มีตารางชื่อปรีซีซั่นคือวันที่เท่าไร?",
    "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_en": "When steve mcclaren is the replacer what is the manner of departure?",
    "question_th": "เมื่อสตีฟ แม็คคลาเรนเข้ามาแทน มีลักษณะการจากไปอย่างไร?",
    "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öln\"",
    "question_en": "When 1. fc köln is the team what is the date of appointment?",
    "question_th": "เมื่อ 1.fc köln อยู่ทีมวันที่เท่าไร?",
    "context": "CREATE TABLE table_24162080_3 (date_of_appointment VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(tournament) FROM table_2417741_1 WHERE year = 1999",
    "question_en": "When 1999 is the year how many tournaments are there?",
    "question_th": "เมื่อถึงปี 2542 มีการแข่งขันทั้งหมดกี่รายการ?",
    "context": "CREATE TABLE table_2417741_1 (tournament VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(par) FROM table_2417741_1 WHERE winner = \"Cary Middlecoff\"",
    "question_en": "When cary middlecoff is the winner how many pars are there?",
    "question_th": "เมื่อแครี่ มิดเดิลคอฟฟ์เป็นผู้ชนะ มีพาร์ทั้งหมดกี่พาร์?",
    "context": "CREATE TABLE table_2417741_1 (par VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT margin_of_victory FROM table_2417741_1 WHERE winner = \"Hale Irwin\"",
    "question_en": "When hale irwin is the winner what is the margin of victory?",
    "question_th": "เมื่อเฮล เออร์วินเป็นผู้ชนะ อะไรคือส่วนต่างของชัยชนะ?",
    "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_en": "How many entries are there for founded when the location was springfield, ohio?",
    "question_th": "มีกี่รายการที่ก่อตั้งขึ้นเมื่อสถานที่คือสปริงฟิลด์ รัฐโอไฮโอ?",
    "context": "CREATE TABLE table_24195232_1 (founded VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_24195232_1 WHERE team_name = \"Patriots\"",
    "question_en": "What was the location for the team name of patriots?",
    "question_th": "ที่ตั้งของชื่อทีมผู้รักชาติคืออะไร?",
    "context": "CREATE TABLE table_24195232_1 (location VARCHAR, team_name VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_24195232_1 WHERE founded = 1957",
    "question_en": "What is the location when founded was 1957?",
    "question_th": "ก่อตั้งเมื่อ พ.ศ. 2500 ตั้งอยู่ที่ใด?",
    "context": "CREATE TABLE table_24195232_1 (location VARCHAR, founded VARCHAR)"
  },
  {
    "answer": "SELECT affiliation FROM table_24195232_1 WHERE institution = \"Ohio Christian University\"",
    "question_en": "What is the affiliation when the institution was ohio christian university?",
    "question_th": "สังกัดอะไรเมื่อสถาบันเป็นมหาวิทยาลัยโอไฮโอคริสเตียน?",
    "context": "CREATE TABLE table_24195232_1 (affiliation VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT institution FROM table_24195232_1 WHERE location = \"Circleville, Ohio\"",
    "question_en": "What is the institution that was located is circleville, ohio?",
    "question_th": "สถาบันที่ตั้งอยู่ที่เซอร์เคิลวิลล์ รัฐโอไฮโอคือที่ไหน?",
    "context": "CREATE TABLE table_24195232_1 (institution VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_24195232_1 WHERE team_name = \"Eagles\"",
    "question_en": "What is the location for the team name of eagles?",
    "question_th": "ชื่อทีมอินทรีอยู่ที่ไหน?",
    "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_en": "When did the episode that had 5.09 million total viewers (both Live and SD types) first air?",
    "question_th": "ตอนที่มีผู้ชมทั้งหมด 5.09 ล้านคน (ทั้งแบบ Live และ SD) ออกอากาศครั้งแรกเมื่อไหร่?",
    "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_en": "How many total viewers (combined Live and SD) watched the episode with a share of 8?",
    "question_th": "ผู้ชมทั้งหมดกี่คน (รวม Live และ SD) ที่ดูตอนนี้โดยมีส่วนแบ่ง 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_en": "When did the fourth episode of the season (4 1-04) first air?",
    "question_th": "ตอนที่สี่ของซีซั่น (4 1-04) ออกอากาศครั้งแรกเมื่อไหร่?",
    "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_en": "When did the episode that had 3.69 million total viewers (Live and SD types combined) first air?",
    "question_th": "ตอนที่มีผู้ชมทั้งหมด 3.69 ล้านคน (แบบสดและแบบ SD รวมกัน) ออกอากาศครั้งแรกเมื่อใด",
    "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_en": "Who was the leading actor in the film with a supporting actor named Cecil Kellaway?",
    "question_th": "ใครคือนักแสดงนำในภาพยนตร์เรื่องนี้ร่วมกับนักแสดงสมทบชื่อเซซิล เคลลาเวย์?",
    "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_en": "Who was the supporting actress in \"For Whom the Bell Tolls\"?",
    "question_th": "ใครคือนักแสดงสมทบใน \"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_en": "Who was the supporting actress in a film with Diane Keaton as the leading actress?",
    "question_th": "ใครคือนักแสดงสมทบในภาพยนตร์ที่มีไดแอน คีตันเป็นนักแสดงนำ?",
    "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_en": "Who was the leading actress in a film with Warren Beatty as the leading actor and also at the 40th Oscars?",
    "question_th": "ใครคือนักแสดงนำในภาพยนตร์ร่วมกับ Warren Beatty ในฐานะนักแสดงนำและในงานออสการ์ครั้งที่ 40 ด้วย",
    "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_en": "Which film had Charles Bickford as supporting actor?",
    "question_th": "ภาพยนตร์เรื่องใดที่มี Charles Bickford เป็นนักแสดงสมทบ?",
    "context": "CREATE TABLE table_24225238_1 (film VARCHAR, supporting_actor VARCHAR)"
  },
  {
    "answer": "SELECT supporting_actress FROM table_24225238_1 WHERE year = 1943",
    "question_en": "Who was the supporting actress in 1943?",
    "question_th": "ใครคือนักแสดงสมทบในปี 1943?",
    "context": "CREATE TABLE table_24225238_1 (supporting_actress VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(sydney) FROM table_24291077_4 WHERE week = 3",
    "question_en": "How many episodes aired in Sydney in Week 3?",
    "question_th": "สัปดาห์ที่ 3 ออกอากาศในซิดนีย์กี่ตอน",
    "context": "CREATE TABLE table_24291077_4 (sydney VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT sydney FROM table_24291077_4 WHERE melbourne = 334000",
    "question_en": "How many viewers were there in Sydney for the episode when there were 334000 in Melbourne?",
    "question_th": "มีผู้ชมในซิดนีย์กี่คนสำหรับตอนนี้ที่มีผู้ชม 334,000 คนในเมลเบิร์น",
    "context": "CREATE TABLE table_24291077_4 (sydney VARCHAR, melbourne VARCHAR)"
  },
  {
    "answer": "SELECT adelaide FROM table_24291077_4 WHERE week = 5",
    "question_en": "How many Adelaide viewers were there in Week 5?",
    "question_th": "สัปดาห์ที่ 5 มีผู้ชมแอดิเลดกี่คน",
    "context": "CREATE TABLE table_24291077_4 (adelaide VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT MAX(brisbane) FROM table_24291077_4",
    "question_en": "What is the highest number of Brisbane viewers?",
    "question_th": "จำนวนผู้ชมบริสเบนสูงสุดคือเท่าใด",
    "context": "CREATE TABLE table_24291077_4 (brisbane INTEGER)"
  },
  {
    "answer": "SELECT MAX(brisbane) FROM table_24291077_8 WHERE melbourne = 276000",
    "question_en": "What was the rating in Brisbane the week it was 276000 in Melbourne? ",
    "question_th": " คะแนนใน บริสเบน ในสัปดาห์นี้คือ 276000 ใน เมลเบิร์น คืออะไร?",
    "context": "CREATE TABLE table_24291077_8 (brisbane INTEGER, melbourne VARCHAR)"
  },
  {
    "answer": "SELECT total FROM table_24291077_8 WHERE week = 3",
    "question_en": "What was the total rating on week 3? ",
    "question_th": " คะแนนรวมในสัปดาห์ที่ 3 เป็นเท่าใด",
    "context": "CREATE TABLE table_24291077_8 (total VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT MIN(brisbane) FROM table_24291077_8 WHERE adelaide = 94000",
    "question_en": "What was the rating for Brisbane the week that Adelaide had 94000?",
    "question_th": "บริสเบนในสัปดาห์ที่แอดิเลดได้คะแนน 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_en": "How many millions of people in the US watched when Kevin Bray was director?",
    "question_th": "มีกี่ล้านคนในสหรัฐอเมริกาที่ดูตอนที่เควิน เบรย์เป็นผู้กำกับ",
    "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_en": "How many episodes in the season had 3.81 million US viewers?",
    "question_th": "มีกี่ตอนในฤดูกาลที่มีผู้ชม 3.81 ล้านคนในสหรัฐฯ",
    "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_en": "What is the maximum folded value of the team whose stadium is Fraser Field?",
    "question_th": "ค่าพับสูงสุดของทีมที่มีสนามเฟรเซอร์ฟิลด์คือเท่าใด?",
    "context": "CREATE TABLE table_24334261_1 (folded INTEGER, stadium VARCHAR)"
  },
  {
    "answer": "SELECT MAX(founded) FROM table_24334261_1 WHERE team = \"Worcester Tornadoes\"",
    "question_en": "What is the maximum founded year of the Worcester Tornadoes?",
    "question_th": "พายุทอร์นาโดวูสเตอร์ก่อตั้งสูงสุดในปีใด",
    "context": "CREATE TABLE table_24334261_1 (founded INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(viewers) FROM table_24399615_3 WHERE airdate = \"22 October 2009\"",
    "question_en": "How many viewers were there for airdate is 22 october 2009?",
    "question_th": "ออกอากาศวันที่ 22 ตุลาคม 2552 มีผู้ชมกี่คน?",
    "context": "CREATE TABLE table_24399615_3 (viewers INTEGER, airdate VARCHAR)"
  },
  {
    "answer": "SELECT cable_rank FROM table_24399615_3 WHERE episode_no = 4",
    "question_en": "What is the  cable rank for episode no. 4?",
    "question_th": "ลำดับของเคเบิลสำหรับตอนหมายเลขคืออะไร 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_en": "Where where the bbc three weekly ranking for episode no. 5?",
    "question_th": "โดยที่ BBC Three Weekly Ranking สำหรับตอนที่ 1 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_en": "What is the cable rank for bbc three weekly ranking of n/a?",
    "question_th": "อันดับเคเบิลสำหรับการจัดอันดับ BBC 3 รายสัปดาห์ที่ไม่มีข้อมูลคืออะไร",
    "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_en": "What is the cable rank for the airdate of 10 december 2009?",
    "question_th": "ออนแอร์วันที่ 10 ธันวาคม 2552 ออกอากาศวันที่ 10 ธันวาคม 2552 ออกอากาศทางช่องเคเบิ้ลเรตติ้งเท่าไร?",
    "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_en": "How many entries are shown for viewers when the airdate was 26 november 2009?",
    "question_th": "มีกี่รายการที่แสดงให้ผู้ชมเห็นเมื่อออกอากาศวันที่ 26 พฤศจิกายน 2552?",
    "context": "CREATE TABLE table_24399615_3 (viewers VARCHAR, airdate VARCHAR)"
  },
  {
    "answer": "SELECT difficulty FROM table_24463470_1 WHERE circuit = \"Athens\"",
    "question_en": "What is the difficulty of the athens circuit?",
    "question_th": "ความยากของวงจรเอเธนส์คืออะไร?",
    "context": "CREATE TABLE table_24463470_1 (difficulty VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(unlock_order) FROM table_24463470_1 WHERE unlocks = \"Paris\"",
    "question_en": "How many instances is paris the unlock?",
    "question_th": "ปารีสปลดล็อคได้กี่กรณี?",
    "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_en": "How many instances is the unlocked n/a?",
    "question_th": "ปลดล็อคแล้ว 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_en": "What is the lowest unlock order for the athens circuit?",
    "question_th": "ลำดับการปลดล็อคต่ำสุดสำหรับวงจรเอเธนส์คืออะไร?",
    "context": "CREATE TABLE table_24463470_1 (unlock_order INTEGER, circuit VARCHAR)"
  },
  {
    "answer": "SELECT setting FROM table_24463470_1 WHERE difficulty = \"Hard\"",
    "question_en": "What is the setting for the hard difficulty?",
    "question_th": "การตั้งค่าสำหรับความยากยากคืออะไร?",
    "context": "CREATE TABLE table_24463470_1 (setting VARCHAR, difficulty VARCHAR)"
  },
  {
    "answer": "SELECT conditions FROM table_24463470_1 WHERE circuit = \"Athens\"",
    "question_en": "What are the conditions for the athens circuit?",
    "question_th": "เงื่อนไขสำหรับวงจรเอเธนส์มีอะไรบ้าง?",
    "context": "CREATE TABLE table_24463470_1 (conditions VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_24491017_1 WHERE position = \"11th\"",
    "question_en": "What team was he on when he finished in 11th position?",
    "question_th": "เขาอยู่ทีมอะไรเมื่อเขาจบอันดับที่ 11?",
    "context": "CREATE TABLE table_24491017_1 (team VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT MAX(f_laps) FROM table_24491017_1 WHERE position = \"8th\"",
    "question_en": "How many f/laps when he finished 8th?",
    "question_th": "กี่ f/lap เมื่อเขาจบอันดับที่ 8?",
    "context": "CREATE TABLE table_24491017_1 (f_laps INTEGER, position VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_24491017_1 WHERE f_laps = 10",
    "question_en": "What team was he on when he had 10 f/laps?",
    "question_th": "เขาอยู่ทีมไหนเมื่อเขาทำได้ 10 รอบ?",
    "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_en": "How many podiums when he was in the british f3 national class series?",
    "question_th": "เมื่อเขาอยู่ในซีรีส์ระดับชาติ f3 ของอังกฤษมีกี่โพเดียม?",
    "context": "CREATE TABLE table_24491017_1 (podiums VARCHAR, series VARCHAR)"
  },
  {
    "answer": "SELECT last_title FROM table_2454589_1 WHERE home_city = \"Cuenca\"",
    "question_en": "Name the last title for cuenca",
    "question_th": "ตั้งชื่อนามสกุลสำหรับ 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_en": "Name the first season in the series for 2006",
    "question_th": "ตั้งชื่อซีซันแรกในซีรีส์ปี 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_en": "Name the last title for 2012",
    "question_th": "ตั้งชื่อเรื่องสุดท้ายของปี 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_en": "Name the club for quevedo",
    "question_th": "ตั้งชื่อสโมสรสำหรับ 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_en": "Name the most for first season in the serie a for 7 de octubre",
    "question_th": "ขึ้นชื่อมากที่สุดในฤดูกาลแรกในเซเรีย อา 7 ตุลาคม",
    "context": "CREATE TABLE table_2454589_1 (first_season_in_the_serie_a INTEGER, stadium VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(appearances¹) FROM table_24565004_15 WHERE goals¹ = 7",
    "question_en": "How many games had less than 7 goals scored?",
    "question_th": "มีกี่เกมที่ทำประตูได้น้อยกว่า 7 ประตู?",
    "context": "CREATE TABLE table_24565004_15 (appearances¹ VARCHAR, goals¹ VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_24565004_15 WHERE goals¹ = 4",
    "question_en": "List the player that scored 4 times.",
    "question_th": "รายชื่อผู้เล่นที่ทำประตูได้ 4 ครั้ง",
    "context": "CREATE TABLE table_24565004_15 (name VARCHAR, goals¹ VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(position) FROM table_24565004_15 WHERE nationality² = \"Brazil\"",
    "question_en": "How many players are from the country of Brazil?",
    "question_th": "มีผู้เล่นจากประเทศบราซิลกี่คน?",
    "context": "CREATE TABLE table_24565004_15 (position VARCHAR, nationality² VARCHAR)"
  },
  {
    "answer": "SELECT period FROM table_24565004_15 WHERE position = \"Attaquant\"",
    "question_en": "List the number of active years for attaquant.",
    "question_th": "ระบุจำนวนปีที่ใช้งานอยู่สำหรับ 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_en": "What was the mls cup playoffs when concacaf champions cup / concacaf champions league was quarter-finals (09-10)?",
    "question_th": "รอบตัดเชือกถ้วย mls คืออะไรเมื่อคอนคาแคฟแชมเปี้ยนส์คัพ / คอนคาแคฟแชมเปียนส์ลีกเข้ารอบก่อนรองชนะเลิศ (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_en": "What is the series minimum if the season number is 2.08?",
    "question_th": "ซีรีส์ขั้นต่ำคือเท่าใดหากหมายเลขซีซันคือ 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_en": "What is the amount of viewers if the series number is 14?",
    "question_th": "ถ้าซีรีย์ 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_en": "If the amount of viewers is 2.48 million, what is the original air date?",
    "question_th": "ถ้ายอดคนดู 2.48 ล้านคน ออกอากาศตอนแรกคือวันไหน?",
    "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_en": "If the season number is 2.08, who was the episode written by?",
    "question_th": "ถ้าซีซั่น 2.08 ใครเป็นคนเขียนบท?",
    "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_en": "What is the maximum money list rank for Matt Hansen?",
    "question_th": "อันดับรายการเงินสูงสุดสำหรับ 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_en": "What is the minimum money list rank for the players having a best finish of T9?",
    "question_th": "อันดับเงินขั้นต่ำสำหรับผู้เล่นที่จบ 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_en": "What is the minimum number of starts for the players having a best finish of T18?",
    "question_th": "จำนวนการออกสตาร์ทขั้นต่ำสำหรับผู้เล่นที่เข้าเส้นชัยได้ดีที่สุดที่ 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_en": "What is the minimum number of cuts made for Hunter Mahan?",
    "question_th": "จำนวนการตัดขั้นต่ำสำหรับ 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_en": "What was the profession of the celebrity who was featured on season 15 and finished 7th place?",
    "question_th": "อาชีพของคนดังที่ได้แสดงในซีซั่น 15 และจบอันดับที่ 7 คืออะไร?",
    "context": "CREATE TABLE table_24775967_1 (notability_profession VARCHAR, season VARCHAR, finish VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_24901152_2 WHERE outcome = \"Winner\"",
    "question_en": "When winner is the outcome what is the score?",
    "question_th": "เมื่อผู้ชนะคือผลลัพธ์ที่ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_24901152_2 (score VARCHAR, outcome VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_24901152_2 WHERE championship = \"US Open (2)\"",
    "question_en": "When us open (2) is the championship what is the surface?",
    "question_th": "เมื่อเราเปิด (2) เป็นแชมป์พื้นผิวคืออะไร?",
    "context": "CREATE TABLE table_24901152_2 (surface VARCHAR, championship VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_24901152_2 WHERE championship = \"Australian Open\"",
    "question_en": "When Australian open is the championship what is the lowest year?",
    "question_th": "เมื่อออสเตรเลียนโอเพ่นเป็นแชมป์ปีต่ำสุดคือปีไหน?",
    "context": "CREATE TABLE table_24901152_2 (year INTEGER, championship VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_24901152_2 WHERE partner = \"Alicia Molik\"",
    "question_en": "When alicia molik is the partner what is the outcome?",
    "question_th": "เมื่ออลิเซีย โมลิกเป็นคู่หู ผลลัพธ์จะเป็นอย่างไร?",
    "context": "CREATE TABLE table_24901152_2 (outcome VARCHAR, partner VARCHAR)"
  },
  {
    "answer": "SELECT seasons FROM table_24937583_1 WHERE wins = 7",
    "question_en": "When did they win 7 races?",
    "question_th": "เมื่อไหร่ที่พวกเขาชนะการแข่งขัน 7 ครั้ง?",
    "context": "CREATE TABLE table_24937583_1 (seasons VARCHAR, wins VARCHAR)"
  },
  {
    "answer": "SELECT races__starts_ FROM table_24937583_1 WHERE points__dropped_points_ = \"18\"",
    "question_en": "What were the starts when the points dropped 18?",
    "question_th": "อะไรคือจุดเริ่มต้นเมื่อคะแนนลดลง 18?",
    "context": "CREATE TABLE table_24937583_1 (races__starts_ VARCHAR, points__dropped_points_ VARCHAR)"
  },
  {
    "answer": "SELECT MIN(poles) FROM table_24937583_1",
    "question_en": "What is the minimum amount of poles?",
    "question_th": "เสาขั้นต่ำคือเท่าไรคะ?",
    "context": "CREATE TABLE table_24937583_1 (poles INTEGER)"
  },
  {
    "answer": "SELECT MIN(wins) FROM table_24937583_1",
    "question_en": "What was the least amount of wins?",
    "question_th": "ชัยชนะน้อยที่สุดคือเท่าไร?",
    "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_en": "What is the value for congi core 1 if the code name is Redwood and core clock(mhz) is 500?",
    "question_th": "ค่าของ congi core 1 คืออะไร หากชื่อรหัสคือ Redwood และ core clock(mhz) คือ 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_en": "What is every bus type for the texture of fillrate?",
    "question_th": "บัสทุกประเภทสำหรับพื้นผิวของฟิลเลอร์คืออะไร?",
    "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_en": "What is every code name for the model Radeon HD 6650m?",
    "question_th": "ชื่อรหัสของรุ่น 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_en": "What place is there a change of -19.3?",
    "question_th": "มีการเปลี่ยนแปลงของ -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_en": "What is the density per km in Smoky Lake County?",
    "question_th": "ความหนาแน่นต่อกิโลเมตรใน 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_en": "What is the population per km2 in Fishing Lake?",
    "question_th": "ทะเลสาบตกปลามีประชากรต่อตารางกิโลเมตรเป็นเท่าใด",
    "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_en": "What is the population density in Buffalo Lake?",
    "question_th": "ความหนาแน่นของประชากรในทะเลสาบบัฟฟาโลคืออะไร?",
    "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_en": "How many years was lynn muscarella the high school principal and charlie wiltse the superintendent?",
    "question_th": "ลินน์ มัสคาเรลลา เป็นผู้อำนวยการโรงเรียนมัธยม และชาร์ลี ร่วงเป็นผู้อำนวยการมากี่ปีแล้ว?",
    "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_en": "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?",
    "question_th": "ใครคือผู้อำนวยการเมื่อครูใหญ่โรงเรียนมัธยมคือ Alan Degroote ครูใหญ่กอร์แฮมคือ Paul Lahue และปีคือปี 2549-2550",
    "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_en": "Who was the gorham principal in 2010-2011?",
    "question_th": "ใครคืออาจารย์ใหญ่กอร์แฮมในปี 2553-2554",
    "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_en": "How many middlesex principals were there in 2000-2001?",
    "question_th": "ในปี 2543-2544 มีผู้บริหารคนกลางเพศจำนวนกี่คน?",
    "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_en": "How many high school principals were there in 2000-2001?",
    "question_th": "ในปี 2543-2544 มีผู้อำนวยการโรงเรียนมัธยมกี่คน",
    "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_en": "Who were the middle school principal(s) in 2010-2011?",
    "question_th": "ใครคือผู้อำนวยการโรงเรียนมัธยมศึกษาตอนต้นในปี 2553-2554",
    "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_en": "When Mark Cavendish wins sprint classification and Maarten Tjallingii wins most courageous, who wins youth classification?",
    "question_th": "เมื่อ Mark Cavendish ชนะประเภทวิ่ง และ Maarten Tjallingii ชนะประเภทกล้าหาญที่สุด ใครชนะประเภทเยาวชน?",
    "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_en": "Who won the mountains classification when Maarten Tjallingii won most corageous?",
    "question_th": "ใครเป็นผู้ชนะประเภทภูเขาเมื่อ Maarten Tjallingii ชนะอย่างกล้าหาญที่สุด?",
    "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_en": "When Brett Lancaster won the general classification, who won the team calssification?",
    "question_th": "เมื่อ Brett Lancaster ชนะประเภททั่วไป ใครชนะการแบ่งประเภททีม?",
    "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_en": "When Peter Sagan won the youth classification and Thomas Rabou won the most corageous, who won the sprint classification?",
    "question_th": "เมื่อปีเตอร์ ซาแกนชนะประเภทเยาวชน และโธมัส ราบูชนะประเภทที่กล้าหาญที่สุด ใครชนะประเภทวิ่ง?",
    "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_en": "When Yaroslav Popovych won most corageous, who won the mountains classification?",
    "question_th": "เมื่อยาโรสลาฟ โปโปวิช ชนะรางวัลที่กล้าหาญที่สุด ใครชนะประเภทภูเขา?",
    "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_en": "When Ryan Anderson won the mountains classification, and Michael Rogers won the general classification, who won the sprint classification?",
    "question_th": "เมื่อ Ryan Anderson ชนะประเภท Mountains และ Michael Rogers ชนะประเภททั่วไป ใครชนะประเภท Sprint?",
    "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_en": "What the rank in the top 10 when the  winnings were $1,741,176?",
    "question_th": "อันดับใน 10 อันดับแรกเมื่อเงินรางวัลอยู่ที่ 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_en": "when the gdp per emissions (in us dollars per ton) is 3903, what is the maximum annual co2 emissions (in thousands of metric tons)?",
    "question_th": "เมื่อ GDP ต่อการปล่อยก๊าซเรือนกระจก (ในหน่วยดอลลาร์สหรัฐฯ ต่อตัน) อยู่ที่ 3903 ปริมาณการปล่อยก๊าซ CO2 สูงสุดต่อปี (ในหน่วยพันเมตริกตัน) คือเท่าใด",
    "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_en": "when the annual co2 emissions (in thousands of metric tons) is 1811, what is the country?",
    "question_th": "เมื่อการปล่อยก๊าซคาร์บอนไดออกไซด์ต่อปี (เป็นพันเมตริกตัน) คือปี 1811 ของประเทศใด",
    "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_en": "What pick number did the buffalo bills get?",
    "question_th": "บิลควายได้เลขเด็ดอะไร?",
    "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_en": "What was bruce baldwin's pick #?",
    "question_th": "ตัวเลือก # ของ Bruce Baldwin คืออะไร?",
    "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_en": "What is the highest pick number the los angeles raiders got?",
    "question_th": "หมายเลขตัวเลือกสูงสุดที่ los angeles raiders ได้รับคืออะไร?",
    "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_en": "Which player did the green bay packers pick?",
    "question_th": "นักเตะคนไหนที่ทีมกรีนเบย์เลือก?",
    "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_en": "How many players did the philadelphia eagles pick?",
    "question_th": "ฟิลาเดลเฟียอีเกิลส์เลือกผู้เล่นกี่คน?",
    "context": "CREATE TABLE table_2508633_5 (position VARCHAR, nfl_team VARCHAR)"
  },
  {
    "answer": "SELECT reg_season FROM table_2511876_1 WHERE year = 2001",
    "question_en": "Mame the reg season for 2001",
    "question_th": "Mame ฤดูกาลเร็กสำหรับปี 2544",
    "context": "CREATE TABLE table_2511876_1 (reg_season VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT league FROM table_2511876_1 WHERE year = 2003",
    "question_en": "Name the league for 2003",
    "question_th": "ตั้งชื่อลีกปี 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_en": "Name the number of playoffs for 3rd round",
    "question_th": "ตั้งชื่อหมายเลขเข้ารอบตัดเชือกรอบที่ 3",
    "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_en": "Name the total number of years for usisl pro league",
    "question_th": "ตั้งชื่อจำนวนปีทั้งหมดสำหรับ 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_en": "Name the playoffs for  usisl select league",
    "question_th": "ตั้งชื่อรอบตัดเชือกสำหรับ usisl select league",
    "context": "CREATE TABLE table_2511876_1 (playoffs VARCHAR, league VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_25146455_1 WHERE points = 31",
    "question_en": "What position did the driver earn 31 points?",
    "question_th": "ผู้ขับขี่ได้รับตำแหน่งใด 31 คะแนน?",
    "context": "CREATE TABLE table_25146455_1 (position VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT series FROM table_25146455_1 WHERE driver = \"Bobby Labonte\"",
    "question_en": "In what series did Bobby Labonte drive?",
    "question_th": "Bobby Labonte ขับรถในซีรีส์ใด",
    "context": "CREATE TABLE table_25146455_1 (series VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT MIN(position) FROM table_25146455_1 WHERE winnings = \"$60,000\"",
    "question_en": "In what position was the driver who won $60,000?",
    "question_th": "คนขับที่ได้รับรางวัล 60,000 ดอลลาร์อยู่ในตำแหน่งใด",
    "context": "CREATE TABLE table_25146455_1 (position INTEGER, winnings VARCHAR)"
  },
  {
    "answer": "SELECT winnings FROM table_25146455_1 WHERE driver = \"Jeff Burton\"",
    "question_en": "How much did Jeff Burton win?",
    "question_th": "เจฟฟ์ เบอร์ตัน ชนะเท่าไหร่?",
    "context": "CREATE TABLE table_25146455_1 (winnings VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT winnings FROM table_25146455_1 WHERE driver = \"Kenny Brack\"",
    "question_en": "How much did Kenny Brack win?",
    "question_th": "Kenny Brack ชนะได้เท่าไหร่?",
    "context": "CREATE TABLE table_25146455_1 (winnings VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT special_edition FROM table_25173505_13 WHERE english_version = \"James Baskett\"",
    "question_en": "what is the special edition for the english version of james baskett?",
    "question_th": "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_en": "what is the special edition where the english version is nick stewart?",
    "question_th": "นิค สจ๊วตฉบับภาษาอังกฤษคือฉบับพิเศษอะไรคะ",
    "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_en": "what is the english version that is buena vista edition is daisuke gouri?",
    "question_th": "เวอร์ชันภาษาอังกฤษว่า buena vista edition คือ 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_en": "who is the character where the special edition is koichi sakaguchi?",
    "question_th": "ตัวละครที่โคอิจิ ซาคากุจิฉบับพิเศษคือใคร?",
    "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_en": "who is the buena vista edidtion where special edition is koichi sakaguchi?",
    "question_th": "buena vista edition คือใคร โคอิจิ ซาคากุจิ รุ่นพิเศษคือใคร?",
    "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_en": "How many contestants were there when the runner-up was Monique Evans?",
    "question_th": "ตอนที่รองชนะเลิศคือ 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érgio Abreu\"",
    "question_en": "How many contestants were there when the runner-up was Sérgio Abreu? ",
    "question_th": " ตอนที่รองชนะเลิศคือ Sérgio 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_en": "In what season was the winner Dado Dolabella?",
    "question_th": "ดาโด้ โดลาเบลล่าเป็นผู้ชนะในฤดูกาลใด",
    "context": "CREATE TABLE table_25214321_1 (season INTEGER, winner VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_25214321_1 WHERE third_place = \"Mateus Rocha\"",
    "question_en": "Who was the winner when Mateus Rocha finished in 3rd place? ",
    "question_th": " ใครเป็นผู้ชนะเมื่อ Mateus Rocha จบอันดับที่ 3?",
    "context": "CREATE TABLE table_25214321_1 (winner VARCHAR, third_place VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_25214321_1 WHERE third_place = \"Raquel Pacheco\"",
    "question_en": "In what season did Raquel Pacheco finish in third place?",
    "question_th": "Raquel Pacheco จบอันดับสามในฤดูกาลใด?",
    "context": "CREATE TABLE table_25214321_1 (season VARCHAR, third_place VARCHAR)"
  },
  {
    "answer": "SELECT third_place FROM table_25214321_1 WHERE winner = \"Karina Bacchi\"",
    "question_en": "Who finished in third place when the winner was Karina Bacchi? ",
    "question_th": " ใครจบอันดับสามเมื่อผู้ชนะคือคารินา บัคคี?",
    "context": "CREATE TABLE table_25214321_1 (third_place VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT branding FROM table_2523809_1 WHERE channel = \"TV-62\"",
    "question_en": "List the branding name for channel tv-62.",
    "question_th": "รายชื่อแบรนด์ช่องทีวี-62",
    "context": "CREATE TABLE table_2523809_1 (branding VARCHAR, channel VARCHAR)"
  },
  {
    "answer": "SELECT coverage FROM table_2523809_1 WHERE branding = \"Estrella TV 62\"",
    "question_en": "Which area did estrella tv 62 provide coverage for?",
    "question_th": "estrella tv 62 ให้บริการครอบคลุมพื้นที่ใดบ้าง?",
    "context": "CREATE TABLE table_2523809_1 (coverage VARCHAR, branding VARCHAR)"
  },
  {
    "answer": "SELECT power__kw_ FROM table_2523809_1 WHERE coverage = \"Phoenix\"",
    "question_en": "List the power output for Phoenix. ",
    "question_th": " แสดงรายการกำลังส่งออกสำหรับ Phoenix",
    "context": "CREATE TABLE table_2523809_1 (power__kw_ VARCHAR, coverage VARCHAR)"
  },
  {
    "answer": "SELECT branding FROM table_2523809_1 WHERE callsign = \"KRCA-TV\"",
    "question_en": "List the branding for krca-tv.",
    "question_th": "รายชื่อการสร้างแบรนด์สำหรับ 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_en": "What's the power output for channel tv-29?",
    "question_th": "กระแสไฟออกของช่อง 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_en": "Which city did kpnz-tv provide coverage for?",
    "question_th": "kpnz-tv ให้บริการครอบคลุมเมืองใดบ้าง?",
    "context": "CREATE TABLE table_2523809_1 (coverage VARCHAR, callsign VARCHAR)"
  },
  {
    "answer": "SELECT MAX(renewable_electricity__gw) AS •h_ FROM table_25244412_1 WHERE state = \"Delaware\"",
    "question_en": "What is the maximum renewable energy (gw×h) for the state of Delaware?",
    "question_th": "พลังงานหมุนเวียนสูงสุด (gw×h) สำหรับรัฐเดลาแวร์คือเท่าใด",
    "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•h_ = 5179",
    "question_en": "Which state has 5179 (gw×h) of renewable energy without hydrogen power?wha",
    "question_th": "รัฐใดมีพลังงานหมุนเวียน 5179 (gw×h) โดยไม่มีพลังงานไฮโดรเจน?",
    "context": "CREATE TABLE table_25244412_1 (state VARCHAR, renewable_electricity_w_o_hydro__gw•h_ VARCHAR)"
  },
  {
    "answer": "SELECT MIN(renewable_electricity_w_o_hydro__gw) AS •h_ FROM table_25244412_1 WHERE renewable_electricity__gw•h_ = 5760",
    "question_en": "When renewable electricity is 5760 (gw×h) what is the minimum amount of renewable elecrrixity without hydrogen power?",
    "question_th": "เมื่อไฟฟ้าหมุนเวียนอยู่ที่ 5760 (gw×h) ปริมาณไฟฟ้าหมุนเวียนขั้นต่ำที่ไม่มีพลังงานไฮโดรเจนคือเท่าใด",
    "context": "CREATE TABLE table_25244412_1 (renewable_electricity_w_o_hydro__gw INTEGER, renewable_electricity__gw•h_ VARCHAR)"
  },
  {
    "answer": "SELECT renewable_electricity_w_o_hydro__gw•h_ FROM table_25244412_1 WHERE _percentage_renewable = \"83.4\"",
    "question_en": "What is the amount of renewable electricity without hydrogen power when the percentage of renewable energy is 83.4?",
    "question_th": "ปริมาณไฟฟ้าหมุนเวียนที่ไม่มีพลังงานไฮโดรเจนเป็นเท่าใด เมื่อเปอร์เซ็นต์ของพลังงานหมุนเวียนคือ 83.4?",
    "context": "CREATE TABLE table_25244412_1 (renewable_electricity_w_o_hydro__gw•h_ VARCHAR, _percentage_renewable VARCHAR)"
  },
  {
    "answer": "SELECT state FROM table_25244412_1 WHERE renewable_electricity__gw•h_ = 9667",
    "question_en": "Which states have renewable electricity equal to 9667 (gw×h)?",
    "question_th": "รัฐใดมีไฟฟ้าหมุนเวียนเท่ากับ 9667 (gw×h)",
    "context": "CREATE TABLE table_25244412_1 (state VARCHAR, renewable_electricity__gw•h_ VARCHAR)"
  },
  {
    "answer": "SELECT august_21_22 FROM table_25252080_3 WHERE november_3 = \"november_3, 1994\"",
    "question_en": "What is shown for  august 21-22 when november 3 is november 3, 1994?",
    "question_th": "สิ่งที่จะแสดงในวันที่ 21-22 สิงหาคมเมื่อ 3 พฤศจิกายนเป็นวันที่ 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_en": "What is the number for march 27-29 whern november 3 is 153?",
    "question_th": "ตัวเลขของวันที่ 27-29 มีนาคม ที่ 3 พฤศจิกายน คือ 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_en": "What number is shown for january 15-16 when november 3 is 133?",
    "question_th": "ตัวเลขใดที่แสดงสำหรับวันที่ 15-16 มกราคม เมื่อ 3 พฤศจิกายน คือ 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_en": "What is shown for november 3 when june 10-11 is june 10, 1964?",
    "question_th": "สิ่งที่จะแสดงในวันที่ 3 พฤศจิกายนในวันที่ 10-11 มิถุนายนคือวันที่ 10 มิถุนายน 2507",
    "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_en": " november 3 where march 27-29 is 149?",
    "question_th": " พฤศจิกายน ที่ไหน 27-29 มีนาคม 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_en": "What number is shown for november 3 where january 15-16 is 151?",
    "question_th": "เลขไหนแสดงสำหรับวันที่ 3 พฤศจิกายน โดยวันที่ 15-16 มกราคม คือ 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_en": "What year were outputs is 2x pro bias, rca loop out and notes is vacuum tube released?",
    "question_th": "ปีไหนที่เอาท์พุตเป็น 2x pro bias, rca loop out และโน้ตถูกปล่อยหลอดสุญญากาศ?",
    "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_en": "How many outputs are there for solid state, battery operated for portable use listed in notes?",
    "question_th": "มีเอาท์พุตจำนวนเท่าใดสำหรับโซลิดสเตต ใช้แบตเตอรี่สำหรับการใช้งานแบบพกพาตามรายการในหมายเหตุ",
    "context": "CREATE TABLE table_25276250_3 (outputs VARCHAR, notes VARCHAR)"
  },
  {
    "answer": "SELECT singer FROM table_2528382_5 WHERE movie_album = \"Amar Deep\"",
    "question_en": "Who sang for the movie Amar Deep?",
    "question_th": "ใครร้องเพลงประกอบภาพยนตร์เรื่อง 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_en": "What movie did Vijayalaxmi Co-star in and Shakeel Badayuni write the lyrics?",
    "question_th": "Vijayalaxmi ร่วมแสดงในภาพยนตร์เรื่องใดและ Shakeel Badayuni เขียนเนื้อเพลง",
    "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_en": "What year did Naushad Direct the Music?",
    "question_th": "Naushad กำกับดนตรีในปีใด",
    "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_en": "How many co-singers were there when Parveen Babi co-starred?",
    "question_th": "ตอนที่ปาวีน บาบีร่วมแสดงมีนักร้องร่วมกี่คน?",
    "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_en": "What movie did Bela Bose co-star in?",
    "question_th": "เบลา โบสร่วมแสดงในภาพยนตร์เรื่องใด",
    "context": "CREATE TABLE table_2528382_5 (movie_album VARCHAR, co_stars VARCHAR)"
  },
  {
    "answer": "SELECT lyricist FROM table_2528382_5 WHERE co_stars = \"Jeevankala\"",
    "question_en": "Who wrote the lyrics when Jeevankala co-starred?",
    "question_th": "ใครเป็นคนเขียนเนื้อเพลงตอนที่จีวานกาลาร่วมแสดง?",
    "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_en": "How many episodes are written by Lew Schneider?",
    "question_th": "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_en": "What is the title of the episode written by Jack Orman?",
    "question_th": "ตอนที่เขียนโดย 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_en": "How many viewers (in millions) did episode 1 have?",
    "question_th": "ตอนที่ 1 มีผู้ชมกี่คน (เป็นล้าน)?",
    "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_en": "How many games played catagories are there for Lauren McGee? ",
    "question_th": " 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_en": "How many numbers belong to the player with 10 assists? ",
    "question_th": " ผู้เล่นที่มี 10 แอสซิสต์เป็นของผู้เล่นกี่หมายเลข?",
    "context": "CREATE TABLE table_25401874_1 (number VARCHAR, assists VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(name) FROM table_25401874_1 WHERE points = 50",
    "question_en": "How many names are listed for the player with 50 points?",
    "question_th": "มีกี่ชื่อสำหรับผู้เล่นที่มี 50 คะแนน?",
    "context": "CREATE TABLE table_25401874_1 (name VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_254776_1 WHERE location = \"Swarthmore, Pennsylvania\"",
    "question_en": "What type of school is in swarthmore, pennsylvania?",
    "question_th": "โรงเรียนประเภทใดใน swarthmore, เพนซิลเวเนีย?",
    "context": "CREATE TABLE table_254776_1 (type VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT founded FROM table_254776_1 WHERE institution = \"Dickinson College\"",
    "question_en": "When was Dickinson College founded?",
    "question_th": "วิทยาลัยดิกคินสันก่อตั้งขึ้นเมื่อใด",
    "context": "CREATE TABLE table_254776_1 (founded VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(fl) FROM table_25548630_1 WHERE series = \"Formula Three Euroseries\"",
    "question_en": "How many F.L. are listed for Formula Three Euroseries?",
    "question_th": "มีกี่ FL ที่อยู่ในรายการ Formula Three Euroseries",
    "context": "CREATE TABLE table_25548630_1 (fl VARCHAR, series VARCHAR)"
  },
  {
    "answer": "SELECT MAX(poles) FROM table_25548630_1",
    "question_en": "What are the most poles listed?",
    "question_th": "โพลใดที่ระบุไว้มากที่สุด?",
    "context": "CREATE TABLE table_25548630_1 (poles INTEGER)"
  },
  {
    "answer": "SELECT MIN(podiums) FROM table_25548630_1",
    "question_en": "What is the least amount of podiums?",
    "question_th": "จำนวนโพเดียมน้อยที่สุดคือเท่าไร?",
    "context": "CREATE TABLE table_25548630_1 (podiums INTEGER)"
  },
  {
    "answer": "SELECT COUNT(points) FROM table_25548630_1 WHERE team = \"Marussia Manor Racing\"",
    "question_en": "How many points does Marussia Manor Racing have?",
    "question_th": "Marussia Manor Racing มีกี่คะแนน?",
    "context": "CREATE TABLE table_25548630_1 (points VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT area__km²_ FROM table_255812_1 WHERE income_class__2007_ = \"2nd\"",
    "question_en": "What are all the vicinity (km²) where profits magnificence (2007) is 2nd",
    "question_th": "บริเวณใกล้เคียงทั้งหมด (กม. ²) ซึ่งความยิ่งใหญ่ของผลกำไร (2550) อยู่ที่ 2 คืออะไร",
    "context": "CREATE TABLE table_255812_1 (area__km²_ VARCHAR, income_class__2007_ VARCHAR)"
  },
  {
    "answer": "SELECT income_class__2007_ FROM table_255812_1 WHERE mayor = \"Ma. Ester A. Hamor\"",
    "question_en": "What are all the profits elegance (2007) in which mayor is ma. Ester a. Hamor",
    "question_th": "อะไรคือความสง่างามของผลกำไร (2550) ซึ่งนายกเทศมนตรีเป็นแม่ เอสเตอร์ เอ. ฮามอร์",
    "context": "CREATE TABLE table_255812_1 (income_class__2007_ VARCHAR, mayor VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(population__2010_) FROM table_255812_1 WHERE area__km²_ = \"134.51\"",
    "question_en": "What is the total quantity of populace (2010) where location (km²) is 134.51",
    "question_th": "คือจำนวนประชากรทั้งหมด (พ.ศ. 2553) โดยที่ตั้ง (กม. ²) คือ 134.51",
    "context": "CREATE TABLE table_255812_1 (population__2010_ VARCHAR, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT city___municipality FROM table_255812_1 WHERE mayor = \"Helen C. De Castro\"",
    "question_en": "What are all the metropolis / municipality where mayor is helen c. De castro",
    "question_th": "นครหลวง/เทศบาลทั้งหมดมีอะไรบ้างซึ่งมีนายกเทศมนตรีคือ เฮเลน ค. เดคาสโตร",
    "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_en": "What is the number of the sail with an overall length of 13.68?",
    "question_th": "ใบเรือยาวรวม 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_en": "Name the most number in season for leslie hill",
    "question_th": "เผยชื่อเลสลี่ ฮิลล์ที่ครองเบอร์มากที่สุดในฤดูกาลนี้",
    "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_en": "Name who directed the production code 1l10",
    "question_th": "ชื่อผู้กำกับรหัสการผลิต 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_en": "Name the production code for theresa rebeck",
    "question_th": "ตั้งชื่อรหัสการผลิตสำหรับเทเรซา รีเบค",
    "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_en": "Name the original air date for production code 1l16",
    "question_th": "ตั้งชื่อวันออกอากาศเดิมสำหรับรหัสการผลิต 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_en": "What is the ethnic majority in the only town?",
    "question_th": "เชื้อชาติส่วนใหญ่ในเมืองเดียวคืออะไร?",
    "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 = \"Плавна\"",
    "question_en": "How to you write  плавна with the latin alphabet?",
    "question_th": "คุณจะเขียน плавна ด้วยอักษรละตินได้อย่างไร?",
    "context": "CREATE TABLE table_2562572_11 (settlement VARCHAR, cyrillic_name_other_names VARCHAR)"
  },
  {
    "answer": "SELECT MIN(population__2011_) FROM table_2562572_11",
    "question_en": "What is the smallest population listed?",
    "question_th": "ประชากรที่น้อยที่สุดในรายการคืออะไร?",
    "context": "CREATE TABLE table_2562572_11 (population__2011_ INTEGER)"
  },
  {
    "answer": "SELECT type FROM table_2562572_30 WHERE settlement = \"Rabe\"",
    "question_en": "What type of settlement is rabe?",
    "question_th": "การตั้งถิ่นฐานประเภทใดคือโรคพิษสุนัขบ้า?",
    "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 = \"Банатско Аранђелово\"",
    "question_en": "What is the largest ethnic group of the settlement with the cyrillic name of банатско аранђелово?",
    "question_th": "กลุ่มชาติพันธุ์ที่ใหญ่ที่สุดในนิคมนี้มีชื่อซีริลลิกว่า банатско аранђелово คือกลุ่มชาติพันธุ์ใด",
    "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 = \"Đala\"",
    "question_en": "How many dominant religions are in đala?",
    "question_th": "ศาสนาที่โดดเด่นมีกี่ศาสนาในđala?",
    "context": "CREATE TABLE table_2562572_30 (dominant_religion__2002_ VARCHAR, settlement VARCHAR)"
  },
  {
    "answer": "SELECT settlement FROM table_2562572_30 WHERE cyrillic_name_other_names = \"Сигет\"",
    "question_en": "Which settlement has the cyrillic name сигет? ",
    "question_th": " ข้อตกลงใดมีชื่อซีริลลิก сигет?",
    "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_en": "What is the cyrillic and other name of rabe?",
    "question_th": "อักษรซีริลลิกและชื่ออื่น ๆ ของ 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_en": "What is the dominant religion in Gornji Tavankut?",
    "question_th": "ศาสนาหลักในกรจีตะวันกุตคืออะไร?",
    "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 = \"Стари Жедник (Croatian: Stari Žednik)\"",
    "question_en": "What is the population in стари жедник (croatian: stari žednik)?",
    "question_th": "ประชากรใน стари жедник (โครเอเชีย: stari žednik) เป็นเท่าใด",
    "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_en": "What are the cyrillic and other names of the settlement whose population is 6591?",
    "question_th": "นิคมที่มีประชากร 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_en": "What type of settlement has a population of 1441?",
    "question_th": "การตั้งถิ่นฐานประเภทใดมีประชากร 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 = \"Ђурђин (Croatian: Đurđin)\"",
    "question_en": "How many settlements are named ђурђин (croatian: đurđin)?",
    "question_th": "มีนิคมกี่แห่งที่ชื่อ ђурђин (โครเอเชีย: đurđin)",
    "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_en": "What town has the population of 777?",
    "question_th": "เมืองใดมีประชากร 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 = \"Конак\"",
    "question_en": "What is the ethnic group is конак?",
    "question_th": "конакคือกลุ่มชาติพันธุ์อะไร?",
    "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 = \"Јарковац\"",
    "question_en": "The pooulation of јарковац is?",
    "question_th": "อุจจาระของјарковацคืออะไร?",
    "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 = \"Бока\"",
    "question_en": "What kind of type is  бока?",
    "question_th": "โบก้าเป็นประเภทไหน?",
    "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_en": "The population is 2,107's dominant religion is?",
    "question_th": "ประชากร 2,107 คน นับถือศาสนาอะไร?",
    "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_en": "What is the Deliblato village known as in Cyrillic?",
    "question_th": "หมู่บ้าน Deliblato เป็นที่รู้จักในภาษาซีริลลิกคืออะไร?",
    "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_en": "Who had 41.76% yes votes",
    "question_th": "ซึ่งมีคะแนนโหวตใช่ 41.76%",
    "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_en": "how many yes votes made up 43.18% yes?",
    "question_th": "มีกี่คะแนนโหวตคิดเป็น 43.18% ใช่?",
    "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_en": "HOw many no votes were there when there were 45.60% yes votes",
    "question_th": "มีกี่คนที่ไม่มีการลงคะแนนเสียงเมื่อมีคะแนนโหวตใช่ 45.60%",
    "context": "CREATE TABLE table_256286_20 (no_votes INTEGER, _percentage_yes VARCHAR)"
  },
  {
    "answer": "SELECT meas_num FROM table_256286_18 WHERE type = \"Init\"",
    "question_en": "what is the measure number for the init type? ",
    "question_th": " หมายเลขการวัดสำหรับประเภท init คืออะไร?",
    "context": "CREATE TABLE table_256286_18 (meas_num VARCHAR, type VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_25646820_2 WHERE player = \"Donald Boor\"",
    "question_en": "Name the points for donald boor",
    "question_th": "ตั้งชื่อคะแนนให้โดนัลด์ บูร์",
    "context": "CREATE TABLE table_25646820_2 (points VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MIN(touchdowns) FROM table_25646820_2 WHERE player = \"Joe Rogers\"",
    "question_en": "Name the least touchdowns for joe rogers",
    "question_th": "ตั้งชื่อทัชดาวน์น้อยที่สุดสำหรับโจ โรเจอร์ส",
    "context": "CREATE TABLE table_25646820_2 (touchdowns INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(title) FROM table_25662434_1 WHERE production_code = 1040",
    "question_en": "How many titles had production code 1040?",
    "question_th": "มีกี่เรื่องที่มีรหัสการผลิต 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_en": "Who directed the episode with production code ca311?",
    "question_th": "ใครกำกับตอนด้วยรหัสการผลิต 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_en": "Which episode had 2.75 million viewers in the U.S.?",
    "question_th": "ตอนใดมีผู้ชม 2.75 ล้านคนในสหรัฐอเมริกา",
    "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_en": "Who directed the episode with production code ca303?",
    "question_th": "ใครกำกับตอนด้วยรหัสการผลิต 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_en": "Who wrote the episode with e4515 as the production code?",
    "question_th": "ใครเป็นคนเขียนตอนที่มี e4515 เป็นรหัสการผลิต?",
    "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_en": "If there are 11 lifts, what is the base elevation?",
    "question_th": "ถ้ามีลิฟต์ 11 ตัว ระดับความสูงฐานเท่าไหร่?",
    "context": "CREATE TABLE table_25762852_1 (base_elevation__feet_ INTEGER, lifts VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_25762852_1 WHERE lifts = 30",
    "question_en": "if there are 30 lifts, what is the name of the ski resort?",
    "question_th": "ถ้ามีลิฟต์ 30 ตัว สกีรีสอร์ทชื่ออะไร?",
    "context": "CREATE TABLE table_25762852_1 (name VARCHAR, lifts VARCHAR)"
  },
  {
    "answer": "SELECT top_elevation__feet_ FROM table_25762852_1 WHERE name = \"Steamboat\"",
    "question_en": "If the name is Steamboat, what is the top elevation?",
    "question_th": "ถ้าชื่อสตีมโบ๊ต จุดสูงสุดคืออะไร?",
    "context": "CREATE TABLE table_25762852_1 (top_elevation__feet_ VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(name) FROM table_25762852_1 WHERE runs = \"118\"",
    "question_en": "How many resorts have 118 runs?",
    "question_th": "มีรีสอร์ททั้งหมดกี่แห่งมี 118 รัน?",
    "context": "CREATE TABLE table_25762852_1 (name VARCHAR, runs VARCHAR)"
  },
  {
    "answer": "SELECT MAX(snowfall__in_year_) FROM table_25762852_1 WHERE name = \"Snowmass\"",
    "question_en": "What is the snowfall for ski resort Snowmass?",
    "question_th": "หิมะตกสำหรับสกีรีสอร์ทสโนว์แมสคืออะไร?",
    "context": "CREATE TABLE table_25762852_1 (snowfall__in_year_ INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT MAX(poles) FROM table_25794532_1 WHERE points = \"64\"",
    "question_en": "Name the most poles for 64 points",
    "question_th": "ตั้งชื่อเสามากที่สุดได้ 64 แต้ม",
    "context": "CREATE TABLE table_25794532_1 (poles INTEGER, points VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_25794532_1 WHERE car_no = 4",
    "question_en": "Name the points for car number 4",
    "question_th": "ตั้งชื่อคะแนนให้รถหมายเลข 4",
    "context": "CREATE TABLE table_25794532_1 (points VARCHAR, car_no VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_25794532_1 WHERE team = \"Eifelland Racing\"",
    "question_en": "Name the position for eifelland racing",
    "question_th": "ตั้งชื่อตำแหน่ง eifelland racing",
    "context": "CREATE TABLE table_25794532_1 (position VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT series FROM table_25794532_1 WHERE points = \"68\"",
    "question_en": "Name the series for 68",
    "question_th": "ตั้งชื่อซีรีส์เรื่อง 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_en": "How man teams had a total weight of 57.5?",
    "question_th": "ทีมชายมีน้ำหนักรวม 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_en": "List the weight for 56 kilograms.",
    "question_th": "รายการน้ำหนัก 56 กิโลกรัม",
    "context": "CREATE TABLE table_2581397_3 (distance VARCHAR, weight__kg_ VARCHAR)"
  },
  {
    "answer": "SELECT race FROM table_2581397_3 WHERE weight__kg_ = \"56.5\"",
    "question_en": "List the weight for 56.5 kilograms.",
    "question_th": "รายการน้ำหนัก 56.5 กิโลกรัม",
    "context": "CREATE TABLE table_2581397_3 (race VARCHAR, weight__kg_ VARCHAR)"
  },
  {
    "answer": "SELECT loss_gain FROM table_25818630_2 WHERE votes__cast = 166",
    "question_en": "What was the loss/gain when the votes -cast was 166?",
    "question_th": "ขาดทุน/ได้เท่าไรเมื่อผู้โหวตได้ 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_en": "Who as the candidate when the result - % was 2.9%?",
    "question_th": "ใครเป็นผู้สมัครเมื่อผลลัพธ์ - % เท่ากับ 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_en": "How many votes were cast when the constituency was midlothian?",
    "question_th": "มีผู้ลงคะแนนเสียงกี่เสียงเมื่อเขตเลือกตั้งเป็นแบบมิดโลเธียน?",
    "context": "CREATE TABLE table_25818630_2 (votes__cast VARCHAR, constituency VARCHAR)"
  },
  {
    "answer": "SELECT candidate FROM table_25818630_2 WHERE result____percentage = \"0.4%\"",
    "question_en": "Who was the candidate when the result - % was 0.4%?",
    "question_th": "ใครคือผู้สมัครเมื่อผลลัพธ์ - % เท่ากับ 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_en": "What was the loss/gain when the affiliation was solidarity?",
    "question_th": "อะไรคือการสูญเสีย/กำไรเมื่อสังกัดเป็นความสามัคคี?",
    "context": "CREATE TABLE table_25818630_2 (loss_gain VARCHAR, affiliation VARCHAR)"
  },
  {
    "answer": "SELECT affiliation FROM table_25818630_1 WHERE candidate = \"Daren Ireland\"",
    "question_en": "What is every affiliation for candidate Daren Ireland?",
    "question_th": "ความเกี่ยวข้องของผู้สมัคร Daren Ireland คืออะไร?",
    "context": "CREATE TABLE table_25818630_1 (affiliation VARCHAR, candidate VARCHAR)"
  },
  {
    "answer": "SELECT candidate FROM table_25818630_1 WHERE constituency = \"Cardiff Central\"",
    "question_en": "What is every candidate for the Cardiff Central constituency?",
    "question_th": "ผู้สมัครชิงตำแหน่งเขตเลือกตั้ง Cardiff Central ทุกคนคืออะไร?",
    "context": "CREATE TABLE table_25818630_1 (candidate VARCHAR, constituency VARCHAR)"
  },
  {
    "answer": "SELECT MAX(result___votes) FROM table_25818630_1 WHERE constituency = \"Huddersfield\"",
    "question_en": "What is the largest vote result for the Huddersfield constituency?",
    "question_th": "ผลการโหวตที่ใหญ่ที่สุดสำหรับเขตเลือกตั้งของ Huddersfield คืออะไร?",
    "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_en": "What is the largest vote result if loss/gain is -0.5%?",
    "question_th": "ผลการโหวตที่ใหญ่ที่สุดคืออะไรหากแพ้/ได้ -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_en": "What is every affiliation for the Tottenham constituency?",
    "question_th": "ความเกี่ยวข้องใด ๆ ในเขตเลือกตั้งของท็อตแนมคืออะไร?",
    "context": "CREATE TABLE table_25818630_1 (affiliation VARCHAR, constituency VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(constituency) FROM table_25818630_1 WHERE result___votes = 162",
    "question_en": "How many values for constituency for the vote result of 162?",
    "question_th": "เขตเลือกตั้งสำหรับผลคะแนนเสียง 162 มีค่าเท่าใด",
    "context": "CREATE TABLE table_25818630_1 (constituency VARCHAR, result___votes VARCHAR)"
  },
  {
    "answer": "SELECT MIN(w) FROM table_25933764_1 WHERE locale = Ontario",
    "question_en": "If the locale is Ontario, what is the W minimum?",
    "question_th": "หากสถานที่คือออนแทรีโอ W ขั้นต่ำคือเท่าใด",
    "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_en": "How many runtimes does episode 53 have?",
    "question_th": "ตอนที่ 53 มีรันไทม์ทั้งหมดกี่รอบ?",
    "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_en": "Who was the cast on the 3/23/1963 episode?",
    "question_th": "นักแสดงคนไหนในตอนที่ 23/3/63 บ้างคะ?",
    "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_en": "What movie did dana wynter , mel ferrer , theodore bikel star in?",
    "question_th": "ดาน่า วินเตอร์, เมล เฟอร์เรอร์, ธีโอดอร์ ไบเคิลแสดงนำในภาพยนตร์เรื่องใด",
    "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_en": "What is the branding of the callsign DWCI-TV?",
    "question_th": "อะไรคือตราสินค้าของสัญญาณเรียกขาน 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_en": "How many brandings are there where the Power kW (ERP) is 1kW (29.94kW ERP)?",
    "question_th": "มีกี่แบรนด์ที่ Power kW (ERP) อยู่ที่ 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_en": "The callsign DWEC-TV has what branding? ",
    "question_th": " สัญญาณเรียกขาน DWEC-TV มียี่ห้ออะไร?",
    "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_en": "The location (transmitter site) San Fernando, Pampanga ** has what Power kW (ERP)?",
    "question_th": "ตำแหน่ง (ไซต์เครื่องส่งสัญญาณ) ซาน เฟอร์นันโด ปัมปังกา ** มีกำลังไฟฟ้า 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_en": "What is the station type for the branding ABS-CBN TV-32 Tagaytay?",
    "question_th": "ประเภทของสถานีสำหรับการสร้างแบรนด์ 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_en": "Who are all winning drivers if winning team is Carlin Motorsport and circuit is Croft?",
    "question_th": "ใครคือนักแข่งที่ชนะถ้าทีมที่ชนะคือ Carlin Motorsport และ Circuit คือ 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_en": "What is every date of Mark Taylor as winning driver?",
    "question_th": "ทุกๆ วันของ Mark Taylor ในฐานะนักแข่งที่ชนะคือวันไหน?",
    "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_en": "What is every pole position for the Castle Combe circuit and Robbie Kerr is the winning driver?",
    "question_th": "ตำแหน่งโพลโพซิชั่นของสนามแคสเซิลคอมบ์คืออะไร และร็อบบี เคอร์คือนักแข่งที่ชนะ",
    "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_en": "How many rounds have Fabio Carbone for fastest lap?",
    "question_th": "ฟาบิโอ คาร์โบเน ทำรอบเร็วที่สุดได้กี่รอบ?",
    "context": "CREATE TABLE table_26137666_3 (round VARCHAR, fastest_lap VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(pole_position) FROM table_26137666_3 WHERE round = 20",
    "question_en": "How many pole positions for round 20?",
    "question_th": "ตำแหน่งโพลโพซิชั่นรอบ 20 มีกี่ตำแหน่ง?",
    "context": "CREATE TABLE table_26137666_3 (pole_position VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT ahli FROM table_26173063_2 WHERE ramtha = \"0-4\"",
    "question_en": "what is ahli when ramtha is 0-4?",
    "question_th": "ahli คืออะไรเมื่อรามธาเป็น 0-4?",
    "context": "CREATE TABLE table_26173063_2 (ahli VARCHAR, ramtha VARCHAR)"
  },
  {
    "answer": "SELECT faisaly FROM table_26173063_2 WHERE wehdat = \"XXX\"",
    "question_en": "what is faisaly when wehdat is xxx?",
    "question_th": "faisaly คืออะไรเมื่อ wehdat เป็น xxx?",
    "context": "CREATE TABLE table_26173063_2 (faisaly VARCHAR, wehdat VARCHAR)"
  },
  {
    "answer": "SELECT orthodoxy FROM table_26173063_2 WHERE × = \"wehdat\"",
    "question_en": "What is orthodoxy when x is wehdat?",
    "question_th": "ออร์โธดอกซ์คืออะไรเมื่อ x คือ wehdat?",
    "context": "CREATE TABLE table_26173063_2 (orthodoxy VARCHAR, × VARCHAR)"
  },
  {
    "answer": "SELECT × FROM table_26173063_2 WHERE faisaly = \"0-0\"",
    "question_en": "what is x when faisaly is 0-0?",
    "question_th": "x คืออะไรเมื่อไฟซาลีเป็น 0-0?",
    "context": "CREATE TABLE table_26173063_2 (× VARCHAR, faisaly VARCHAR)"
  },
  {
    "answer": "SELECT ramtha FROM table_26173063_2 WHERE jeel = \"1-0\" AND hussein = \"1-0\"",
    "question_en": "What is ramtha when jeel is 1-0 and hussein is 1-0?",
    "question_th": "รามธาคืออะไรเมื่อเจลเป็น 1-0 และฮุสเซนเป็น 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_en": "name the title of the episode that ed sherin directed.",
    "question_th": "ตั้งชื่อชื่อเรื่องตอนที่เอ็ดเชรินกำกับ",
    "context": "CREATE TABLE table_2618142_1 (title VARCHAR, directed_by VARCHAR)"
  },
  {
    "answer": "SELECT MIN(no_in_series) FROM table_2618142_1",
    "question_en": "the first episode in this season had what number in the series? ",
    "question_th": " ตอนแรกของซีซั่นนี้มีเลขอะไรในซีรีย์นี้?",
    "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_en": "The episode with original air date January 13, 1999 is written by who?",
    "question_th": "ตอนเดิมออกอากาศวันที่ 13 มกราคม 2542 เขียนโดยใคร?",
    "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_en": "The episode with the original air date January 6, 1999, has what production code?",
    "question_th": "ตอนเดิม ออกอากาศวันที่ 6 มกราคม 2542 มีรหัสการผลิตอะไร?",
    "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_en": "What is the title of the episode with the original air date October 21, 1998?",
    "question_th": "ตอนที่ออกอากาศตอนแรก 21 ตุลาคม 2541 ชื่อตอนอะไรครับ?",
    "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_en": "What is the season number of the episode written by Matt Witten , Richard Sweren?",
    "question_th": "หมายเลขซีซันของตอนที่เขียนโดย 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_en": "The episode with the production code E0208 is directed by who?",
    "question_th": "ตอนที่มีรหัสการผลิต E0208 กำกับโดยใคร?",
    "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_en": "which institutions can be categorized as private/united church of christ?",
    "question_th": "สถาบันใดที่สามารถจัดเป็นคริสตจักรส่วนตัว/คริสตจักรรวมของพระคริสต์ได้?",
    "context": "CREATE TABLE table_261895_1 (institution VARCHAR, type VARCHAR)"
  },
  {
    "answer": "SELECT institution FROM table_261895_1 WHERE joined = \"1953\"",
    "question_en": "in 1953, which of the institutions joined?",
    "question_th": "ในปี พ.ศ. 2496 สถาบันใดเข้าร่วม?",
    "context": "CREATE TABLE table_261895_1 (institution VARCHAR, joined VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_261895_1 WHERE institution = \"Calvin College\"",
    "question_en": "which categories fit under the institution calvin college?",
    "question_th": "ประเภทใดที่เหมาะกับสถาบันวิทยาลัยคาลวิน",
    "context": "CREATE TABLE table_261895_1 (type VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(institution) FROM table_261895_1 WHERE founded = 1833",
    "question_en": "in 1833, how many institutions were created?",
    "question_th": "พ.ศ. 2376 มีการสร้างสถาบันขึ้นกี่แห่ง?",
    "context": "CREATE TABLE table_261895_1 (institution VARCHAR, founded VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(type) FROM table_261895_1 WHERE nickname = \"Britons\"",
    "question_en": "how many categories fall under the category of britons?",
    "question_th": "มีกี่หมวดหมู่ที่อยู่ในหมวดหมู่ของชาวอังกฤษ?",
    "context": "CREATE TABLE table_261895_1 (type VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT MAX(founded) FROM table_261895_1 WHERE nickname = \"Belles\"",
    "question_en": "under belles, which is the most possible created?",
    "question_th": "ภายใต้เบลล์ อันไหนสร้างได้มากที่สุด?",
    "context": "CREATE TABLE table_261895_1 (founded INTEGER, nickname VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(pop_density__per_km²_) FROM table_261951_1 WHERE municipality = \"Lubang\"",
    "question_en": "What is the population density for the city of lubang?",
    "question_th": "ความหนาแน่นของประชากรในเมืองลูบังเป็นเท่าใด?",
    "context": "CREATE TABLE table_261951_1 (pop_density__per_km²_ VARCHAR, municipality VARCHAR)"
  },
  {
    "answer": "SELECT MIN(population__2010_) FROM table_261951_1",
    "question_en": "What was the smallist population in 2010?",
    "question_th": "ประชากรกลุ่มเล็กในปี 2010 คือจำนวนเท่าใด",
    "context": "CREATE TABLE table_261951_1 (population__2010_ INTEGER)"
  },
  {
    "answer": "SELECT pop_density__per_km²_ FROM table_261951_1 WHERE municipality = \"Calintaan\"",
    "question_en": "List the population density per kilometer for the city of calintaan?",
    "question_th": "แสดงรายการความหนาแน่นของประชากรต่อกิโลเมตรของเมืองคาลินตาอันใช่หรือไม่",
    "context": "CREATE TABLE table_261951_1 (pop_density__per_km²_ VARCHAR, municipality VARCHAR)"
  },
  {
    "answer": "SELECT pop_density__per_km²_ FROM table_261951_1 WHERE municipality = \"Abra de Ilog\"",
    "question_en": "List the population density per kilometer for the city of abra de ilog.",
    "question_th": "ระบุความหนาแน่นของประชากรต่อกิโลเมตรของเมืองอับราเดอิล็อก",
    "context": "CREATE TABLE table_261951_1 (pop_density__per_km²_ VARCHAR, municipality VARCHAR)"
  },
  {
    "answer": "SELECT enrollment FROM table_261946_3 WHERE location__all_in_ohio_ = \"Ashland\"",
    "question_en": "What is the enrollment for Ashland University?",
    "question_th": "การลงทะเบียนสำหรับมหาวิทยาลัย Ashland คืออะไร?",
    "context": "CREATE TABLE table_261946_3 (enrollment VARCHAR, location__all_in_ohio_ VARCHAR)"
  },
  {
    "answer": "SELECT MAX(founded) FROM table_261946_3",
    "question_en": "Which founding year corresponds with the highest enrollment? ",
    "question_th": " ปีก่อตั้งใดตรงกับการลงทะเบียนสูงสุด?",
    "context": "CREATE TABLE table_261946_3 (founded INTEGER)"
  },
  {
    "answer": "SELECT MIN(left) FROM table_261946_3 WHERE location__all_in_ohio_ = \"Gambier\"",
    "question_en": "Which year did enrolled Gambier members leave?",
    "question_th": "สมาชิก Gambier ที่ลงทะเบียนจะลาออกในปีใด",
    "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_en": "What is the type of institution in Kent State University?",
    "question_th": "สถาบันประเภทใดใน 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_en": "In the championship Miami , United States, what is the score in the final?",
    "question_th": "ในรายการชิงแชมป์ไมอามี่ สหรัฐอเมริกา รอบชิงชนะเลิศเป็นอย่างไรบ้าง?",
    "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_en": "Andy Roddick is the opponent in the final on what surface?",
    "question_th": "แอนดี้ ร็อดดิกเป็นคู่ต่อสู้ในรอบชิงชนะเลิศบนพื้นผิวใด?",
    "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_en": "In the championship Indian Wells, United States (2), who are the opponents in the final?",
    "question_th": "ในการแข่งขันชิงแชมป์อินเดียนเวลส์สหรัฐอเมริกา (2) คู่ต่อสู้ในรอบสุดท้ายคือใคร?",
    "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_en": "Marat Safin is the opponent in the final in what championship?",
    "question_th": "มารัต ซาฟิน เป็นคู่ต่อสู้ในรอบชิงชนะเลิศรายการอะไร?",
    "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_en": "How many championships are there on the date January 9, 2005?",
    "question_th": "วันที่ 9 มกราคม 2548 มีแชมป์กี่รายการ?",
    "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_en": "Where the outcome is Winner and surface is Hard (i), what is the No.?",
    "question_th": "ผลลัพธ์คือผู้ชนะและพื้นผิวคือฮาร์ด (i) หมายเลขคืออะไร?",
    "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_en": "On the date October 21, 2007, what is the No.?",
    "question_th": "เมื่อวันที่ 21 ตุลาคม 2550 ลำดับที่ คืออะไร?",
    "context": "CREATE TABLE table_26202847_6 (no VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT championship FROM table_26202847_6 WHERE score_in_the_final = \"6–1, 3–6, 3–6\"",
    "question_en": "Where is the championship where 6–1, 3–6, 3–6 is the score in the final?",
    "question_th": "การแข่งขันชิงแชมป์อยู่ที่ไหนโดยที่ 6–1, 3–6, 3–6 เป็นคะแนนในรอบชิงชนะเลิศ?",
    "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–6, 6–4, 3–6, 4–6\"",
    "question_en": "When the  score in the final is 3–6, 6–4, 3–6, 4–6, who are all the opponents in the final?",
    "question_th": "เมื่อสกอร์ในรอบชิงชนะเลิศคือ 3–6, 6–4, 3–6, 4–6 คู่ต่อสู้ในรอบชิงชนะเลิศคือใคร?",
    "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–6, 6–2, 6–0\"",
    "question_en": "The score in the final is 2–6, 6–2, 6–0, on what surface?",
    "question_th": "คะแนนในรอบชิงชนะเลิศคือ 2–6, 6–2, 6–0 บนพื้นผิวใด?",
    "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_en": "The original artist Joan Osborne has what result?",
    "question_th": "ศิลปินต้นฉบับ Joan Osborne มีผลลัพธ์อย่างไร",
    "context": "CREATE TABLE table_26250199_1 (result VARCHAR, original_artist VARCHAR)"
  },
  {
    "answer": "SELECT episode FROM table_26250199_1 WHERE order__number = \"10\"",
    "question_en": "In which episode is the order number 10?",
    "question_th": "ลำดับที่ 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_en": "In episode Top 16 (8 Men), what are the themes?",
    "question_th": "ในตอนที่ 16 อันดับสูงสุด (8 คน) มีธีมอะไรบ้าง?",
    "context": "CREATE TABLE table_26250199_1 (theme VARCHAR, episode VARCHAR)"
  },
  {
    "answer": "SELECT song_choice FROM table_26250199_1 WHERE theme = \"Auditioner's Choice\"",
    "question_en": "The theme Auditioner's Choice\thas what song choice?",
    "question_th": "ธีม Auditioner's 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_en": "What are all the week # where subject matter is auditioner's choice",
    "question_th": "ทั้งสัปดาห์มีอะไรบ้าง #เรื่องไหนที่ผู้ออดิชั่นเลือก",
    "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_en": "What are all of the order # where authentic artist is maroon 5",
    "question_th": "สั่งอะไรมาบ้าง #ที่ศิลปินแท้ คือ 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_en": "Name the represents for los alcarrizos",
    "question_th": "ตั้งชื่อตัวแทนของ los alcarrizos",
    "context": "CREATE TABLE table_26301697_2 (represents VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT MAX(age) FROM table_26301697_2",
    "question_en": "Name the most age",
    "question_th": "ตั้งชื่ออายุมากที่สุด",
    "context": "CREATE TABLE table_26301697_2 (age INTEGER)"
  },
  {
    "answer": "SELECT COUNT(represents) FROM table_26301697_2 WHERE contestant = \"Clary Sermina Delgado Cid\"",
    "question_en": "Name the total number of represents for clary sermina delgado cid",
    "question_th": "ตั้งชื่อจำนวนตัวแทนทั้งหมดสำหรับ 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_en": "Name the least age for distrito nacional",
    "question_th": "ตั้งชื่ออายุน้อยที่สุดสำหรับดิสตรีตโต นาซิอองนาล",
    "context": "CREATE TABLE table_26301697_2 (age INTEGER, represents VARCHAR)"
  },
  {
    "answer": "SELECT represents FROM table_26301697_2 WHERE height__cm_ = \"1.76\"",
    "question_en": "Name the represents for 1.76 cm",
    "question_th": "ตั้งชื่อตัวแทน 1.76 ซม",
    "context": "CREATE TABLE table_26301697_2 (represents VARCHAR, height__cm_ VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(round) FROM table_26334740_3 WHERE race = 17",
    "question_en": "In how many rounds was Race 17?",
    "question_th": "Race 17 มีทั้งหมดกี่รอบ?",
    "context": "CREATE TABLE table_26334740_3 (round VARCHAR, race VARCHAR)"
  },
  {
    "answer": "SELECT winning_team FROM table_26334740_3 WHERE race = 17",
    "question_en": "What team won Race 17?",
    "question_th": "ทีมใดชนะเรซ 17?",
    "context": "CREATE TABLE table_26334740_3 (winning_team VARCHAR, race VARCHAR)"
  },
  {
    "answer": "SELECT partner FROM table_26309085_1 WHERE year = 1989",
    "question_en": "Who was his partner in 1989? ",
    "question_th": " ใครคือหุ้นส่วนของเขาในปี 1989?",
    "context": "CREATE TABLE table_26309085_1 (partner VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_26309085_1 WHERE partner = \"John Alexander\"",
    "question_en": "What was the surface when he played with John Alexander? ",
    "question_th": " อะไรคือพื้นผิวเมื่อเขาเล่นกับจอห์นอเล็กซานเดอร์?",
    "context": "CREATE TABLE table_26309085_1 (surface VARCHAR, partner VARCHAR)"
  },
  {
    "answer": "SELECT score_in_final FROM table_26309085_1 WHERE year = 1986",
    "question_en": "What was the final score in 1986?",
    "question_th": "คะแนนสุดท้ายในปี 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_en": "What is the nickname of the University of Alabama?",
    "question_th": "ชื่อเล่นของมหาวิทยาลัยอลาบามาคืออะไร?",
    "context": "CREATE TABLE table_26355116_1 (nickname VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT MAX(enrollment) FROM table_26355116_1",
    "question_en": "What is the maximum enrollment of the schools?",
    "question_th": "โรงเรียนสามารถลงทะเบียนได้สูงสุดเท่าไร?",
    "context": "CREATE TABLE table_26355116_1 (enrollment INTEGER)"
  },
  {
    "answer": "SELECT MAX(public) FROM table_26375386_23 WHERE result = \"Eliminated\"",
    "question_en": "How many public is there for the couple that got eliminated?",
    "question_th": "มีคู่รักที่ถูกคัดออกกี่คน?",
    "context": "CREATE TABLE table_26375386_23 (public INTEGER, result VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_26375386_23 WHERE total = 12",
    "question_en": "What was the result for the total of 12?",
    "question_th": "ผลรวม 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_en": "What was the maximum rank for the vote percentage of 5.6%",
    "question_th": "อันดับสูงสุดสำหรับเปอร์เซ็นต์การโหวตคือ 5.6%",
    "context": "CREATE TABLE table_26375386_23 (rank INTEGER, vote_percentage VARCHAR)"
  },
  {
    "answer": "SELECT judges FROM table_26375386_23 WHERE result = \"Eliminated\"",
    "question_en": "How many judges were there for the eliminated couple? ",
    "question_th": " มีผู้พิพากษากี่คนสำหรับคู่ที่ถูกคัดออก?",
    "context": "CREATE TABLE table_26375386_23 (judges VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(public) FROM table_26375386_23 WHERE vote_percentage = \"22.9%\"",
    "question_en": "What is the number of public that was there when the vote percentage was 22.9%?",
    "question_th": "จำนวนประชาชนที่อยู่ที่นั่นเมื่อเปอร์เซ็นต์การลงคะแนนเสียงคือ 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_en": "What was the total number when the vote percentage was 44.8%?",
    "question_th": "เมื่อคะแนนเสียงคิดเป็นร้อยละ 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_en": "What year was Fayette operational at 46?",
    "question_th": "ฟาเย็ตต์เปิดทำการเมื่ออายุ 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_en": "What farm has a capacity of 70 and is operational?",
    "question_th": "ฟาร์มใดมีความจุ 70 และเปิดดำเนินการ?",
    "context": "CREATE TABLE table_26387382_1 (name VARCHAR, capacity__mw_ VARCHAR, status VARCHAR)"
  },
  {
    "answer": "SELECT power__mw·hr_yr_ FROM table_26387382_1 WHERE location__county_ = \"Centre\"",
    "question_en": "What locations are considered centre?",
    "question_th": "สถานที่ใดบ้างที่ถือเป็นศูนย์กลาง",
    "context": "CREATE TABLE table_26387382_1 (power__mw·hr_yr_ VARCHAR, location__county_ VARCHAR)"
  },
  {
    "answer": "SELECT capacity__mw_ FROM table_26387382_1 WHERE turbines = \"50-60\"",
    "question_en": "What all capacities have turbines between 50-60?",
    "question_th": "ความจุทั้งหมดมีกังหันระหว่าง 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_en": "What all turbines have a capacity of 30 and have a Somerset location?",
    "question_th": "กังหันทั้งหมดมีความจุ 30 และมีที่ตั้งซอมเมอร์เซ็ทหรือไม่?",
    "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_en": "if the peak is 9, how many weeks was it in the top 10?",
    "question_th": "ถ้าจุดสูงสุดคือ 9 แล้วมันจะอยู่ใน 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_en": "How many games had red star as the runner up?",
    "question_th": "มีกี่เกมที่มีดาวแดงเป็นรองแชมป์?",
    "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_en": "What is the fewest recorded entrants against paris saint-germain?",
    "question_th": "นักเตะที่เข้าแข่งขันกับปารีส แซงต์-แชร์กแมงน้อยที่สุดคือใคร?",
    "context": "CREATE TABLE table_26455614_1 (entries INTEGER, winner VARCHAR)"
  },
  {
    "answer": "SELECT member_countries FROM table_26519486_1 WHERE languages = \"Finnish Swedish\"",
    "question_en": "Name the member countries for finnish swedish",
    "question_th": "ตั้งชื่อประเทศสมาชิกสำหรับภาษาสวีเดนฟินแลนด์",
    "context": "CREATE TABLE table_26519486_1 (member_countries VARCHAR, languages VARCHAR)"
  },
  {
    "answer": "SELECT area__km²_ FROM table_26519486_1 WHERE languages = \"German\"",
    "question_en": "Name the area for german",
    "question_th": "ตั้งชื่อพื้นที่เป็นภาษาเยอรมัน",
    "context": "CREATE TABLE table_26519486_1 (area__km²_ VARCHAR, languages VARCHAR)"
  },
  {
    "answer": "SELECT population FROM table_26519486_1 WHERE languages = \"11\"",
    "question_en": "Name the population for 11 languages",
    "question_th": "ตั้งชื่อประชากรสำหรับ 11 ภาษา",
    "context": "CREATE TABLE table_26519486_1 (population VARCHAR, languages VARCHAR)"
  },
  {
    "answer": "SELECT production_code FROM table_26561508_1 WHERE patient_portrayer = \"Kathy Lamkin\"",
    "question_en": "What is the production code for the episode where the patient portrayer is Kathy Lamkin?",
    "question_th": "รหัสการผลิตสำหรับตอนที่ผู้แสดงภาพผู้ป่วยคือ 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_en": "Who was the writter for the  episode identified by the production code 2t5954?",
    "question_th": "ใครคือผู้เขียนบทสำหรับตอนนี้ที่ระบุโดยรหัสการผลิต 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_en": "What is the total number of patient portayers for the episode directed by Craig Zisk and written by Brad Falchuk?",
    "question_th": "จำนวนผู้แสดงภาพผู้ป่วยในตอนนี้ที่กำกับโดย Craig Zisk และเขียนโดย 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_en": "Who directed the episode with production code 177605?",
    "question_th": "ใครกำกับตอนที่มีรหัสการผลิต 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_en": "How many episodes are numbered 4 in the season?",
    "question_th": "ซีซั่น 4 มีกี่ตอนคะ?",
    "context": "CREATE TABLE table_26561506_1 (patient_portrayer VARCHAR, _number VARCHAR)"
  },
  {
    "answer": "SELECT written_by FROM table_26561506_1 WHERE no = 28",
    "question_en": "Who wrote episode number 28?",
    "question_th": "ใครเป็นคนเขียนตอนที่ 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_en": "What is the highest numbered episode with patient portrayer doug savant?",
    "question_th": "ตอนใดที่มีผู้รับบทคนไข้ ดั๊ก เมวานท์ มากที่สุดคือตอนใด",
    "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_en": "What number(s) in the series was written by bo crese?",
    "question_th": "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_en": "Who wrote episode number 109 in the series?",
    "question_th": "ใครเป็นคนเขียนตอนที่ 109 ในซีรีส์นี้?",
    "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_en": "What was the first episode in the season directed by nelson mccormick?",
    "question_th": "ตอนแรกของซีซั่นที่กำกับโดยเนลสัน แมคคอร์มิกคือเรื่องใด",
    "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_en": "What was the original air date for the episode with 13.92 million us viewers?",
    "question_th": "ตอนแรกออกอากาศตอนไหนที่มีผู้ชม 13.92 ล้านคน?",
    "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_en": "When was the episode with a 999,000 BARB rating first aired in Denmark?",
    "question_th": "ตอนที่มีเรตติ้ง 999,000 BARB ออกอากาศครั้งแรกในเดนมาร์กคือเมื่อไหร่?",
    "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_en": "What is the BARB ratings of episode 6?",
    "question_th": "เรตติ้ง BARB ของตอนที่ 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_en": "When was the episode with a 1,036,000 BARB rating first aired in Denmark?",
    "question_th": "ตอนที่มีเรตติ้ง 1,036,000 BARB ออกอากาศครั้งแรกในเดนมาร์กคือเมื่อไหร่?",
    "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_en": "How many parks are called mt. olympus",
    "question_th": "มีสวนสาธารณะกี่แห่งที่เรียกว่าภูเขา โอลิมปัส",
    "context": "CREATE TABLE table_2665085_1 (name VARCHAR, park VARCHAR)"
  },
  {
    "answer": "SELECT speed__mph_ FROM table_2665085_1 WHERE height__ft_ = 163",
    "question_en": "How fast is the coaster that is 163 feet tall",
    "question_th": "รถไฟเหาะที่สูง 163 ฟุตเร็วแค่ไหน",
    "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_en": "What is the length of the coaster with the unknown speed",
    "question_th": "รถไฟเหาะมีความยาวเท่าใดโดยไม่ทราบความเร็ว",
    "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_en": "How long is the rollar coaster on Kemah Boardwalk",
    "question_th": "รถไฟเหาะบน 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_en": "What park is Boardwalk Bullet located in?",
    "question_th": "Boardwalk Bullet ตั้งอยู่ในสวนสาธารณะแห่งใด",
    "context": "CREATE TABLE table_2665085_1 (park VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(park) FROM table_2665085_1 WHERE name = \"Zippin Pippin\"",
    "question_en": "How many parks is Zippin Pippin located in",
    "question_th": "Zippin Pippin ตั้งอยู่ในสวนสาธารณะกี่แห่ง",
    "context": "CREATE TABLE table_2665085_1 (park VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_26669939_1 WHERE host_country = \"Montenegro\"",
    "question_en": "In what year was Montenegro the host country?",
    "question_th": "มอนเตเนโกรเป็นประเทศเจ้าภาพในปีใด",
    "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_en": "What was the number of athletes in the host city of Nice?",
    "question_th": "จำนวนนักกีฬาในเมืองเจ้าภาพนีซคือเท่าไร?",
    "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_en": "Who was the host country when Bar was the host city?",
    "question_th": "ใครคือประเทศเจ้าภาพเมื่อบาร์เป็นเมืองเจ้าภาพ?",
    "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_en": "What was the number of athletes for the 7th edition?",
    "question_th": "จำนวนนักกีฬาสำหรับรุ่นที่ 7 คือเท่าไร?",
    "context": "CREATE TABLE table_26669939_1 (no_of_athletes VARCHAR, edition VARCHAR)"
  },
  {
    "answer": "SELECT MAX(year) FROM table_26669939_1",
    "question_en": "What was the most recent year?",
    "question_th": "ปีที่ผ่านมาคือปีอะไร?",
    "context": "CREATE TABLE table_26669939_1 (year INTEGER)"
  },
  {
    "answer": "SELECT host_city FROM table_26669939_1 WHERE host_country = \"Croatia\" AND edition = \"8th\"",
    "question_en": "What was the host city of the 8th edition in the the host country of Croatia?",
    "question_th": "เมืองเจ้าภาพครั้งที่ 8 ในประเทศเจ้าภาพโครเอเชียคือเมืองใด",
    "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_en": "Name the result for first elected being 1798 1825",
    "question_th": "ตั้งชื่อผลลัพธ์สำหรับการเลือกตั้งครั้งแรกคือ 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_en": "Name the total number of party for willis alston",
    "question_th": "ระบุจำนวนพรรคทั้งหมดสำหรับวิลลิส อัลสตัน",
    "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_en": "Name the result for  augustine h. shepperd (j) 100%",
    "question_th": "ตั้งชื่อผลลัพธ์สำหรับ Augustine H. เชพเพิร์ด (เจ) 100%",
    "context": "CREATE TABLE table_2668243_18 (result VARCHAR, candidates VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_2668243_18 WHERE incumbent = \"Willis Alston\"",
    "question_en": "Name the result for willis alston",
    "question_th": "ตั้งชื่อผลลัพธ์สำหรับวิลลิส อัลสตัน",
    "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_en": "Name the total number of party for willis alston (j) 93.9% george e. spruill 6.1%",
    "question_th": "ระบุจำนวนรวมพรรค วิลลิส อัลสตัน (เจ) 93.9% จอร์จ อี. แตกหน่อ 6.1%",
    "context": "CREATE TABLE table_2668243_18 (party VARCHAR, candidates VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_2668243_18 WHERE party = \"Anti-Jacksonian\"",
    "question_en": "Name the district for anti-jacksonian",
    "question_th": "ตั้งชื่อเขตเพื่อต่อต้านแจ็คสัน",
    "context": "CREATE TABLE table_2668243_18 (district VARCHAR, party VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_2668243_19 WHERE first_elected = \"1820\"",
    "question_en": "What was the result for the candidate first elected in 1820?",
    "question_th": "ผลลัพธ์ของผู้สมัครที่ได้รับเลือกครั้งแรกในปี 1820 คืออะไร?",
    "context": "CREATE TABLE table_2668243_19 (result VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_2668243_19 WHERE incumbent = \"Joseph Vance\"",
    "question_en": "What is the party of Joseph Vance?",
    "question_th": "โจเซฟ แวนซ์ ปาร์ตี้อะไร?",
    "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_en": "Name the first elected for hosea moffitt (f) 57.9% josiah masters (dr) 42.1%",
    "question_th": "ตั้งชื่อคนแรกที่ได้รับเลือกให้เป็น 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_en": "Name the first elected for jacob markell",
    "question_th": "ตั้งชื่อคนแรกที่ได้รับเลือกให้เป็นจาค็อบ มาร์เคลล์",
    "context": "CREATE TABLE table_2668352_11 (first_elected VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT MIN(first_elected) FROM table_2668352_11",
    "question_en": "Name the least first elected",
    "question_th": "ตั้งชื่อผู้ที่ได้รับเลือกน้อยที่สุดก่อน",
    "context": "CREATE TABLE table_2668352_11 (first_elected INTEGER)"
  },
  {
    "answer": "SELECT MAX(first_elected) FROM table_2668352_11",
    "question_en": "Name the most first elected",
    "question_th": "ตั้งชื่อผู้ที่ได้รับเลือกเป็นคนแรก",
    "context": "CREATE TABLE table_2668352_11 (first_elected INTEGER)"
  },
  {
    "answer": "SELECT incumbent FROM table_2668352_11 WHERE district = \"New York 10\"",
    "question_en": "Name the incumbent for new york 10",
    "question_th": "ตั้งชื่อผู้ดำรงตำแหน่งนิวยอร์ก 10",
    "context": "CREATE TABLE table_2668352_11 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_2668367_21 WHERE incumbent = \"Thomas Wilson\"",
    "question_en": "Name the distrct for thomas wilson",
    "question_th": "ตั้งชื่อเขตสำหรับโทมัส วิลสัน",
    "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_en": "Name the party for  john randolph redistricted from the 15th district",
    "question_th": "ตั้งชื่อพรรคให้จอห์น แรนดอล์ฟ กำหนดเขตใหม่จากเขตที่ 15",
    "context": "CREATE TABLE table_2668367_21 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_2668367_21 WHERE district = \"Virginia 12\"",
    "question_en": "Name the party for virginia 12",
    "question_th": "ตั้งชื่อปาร์ตี้ให้เวอร์จิเนีย 12",
    "context": "CREATE TABLE table_2668367_21 (party VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_2668378_5 WHERE incumbent = \"John Boyle\"",
    "question_en": "Name the candidates for john boyle",
    "question_th": "เสนอชื่อผู้สมัครชิงตำแหน่งจอห์น บอยล์",
    "context": "CREATE TABLE table_2668378_5 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT first_elected FROM table_2668378_5 WHERE district = \"Kentucky 3\"",
    "question_en": "Name the first elected for kentucky 3",
    "question_th": "ตั้งชื่อคนแรกที่ได้รับเลือกสำหรับรัฐเคนตักกี้ 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_en": "Name the incumbent for  matthew lyon (dr) anthony new (dr)",
    "question_th": "ตั้งชื่อผู้ดำรงตำแหน่งแมทธิว ลียง (ดร.) แอนโทนี่ นิว (ดร.)",
    "context": "CREATE TABLE table_2668378_5 (incumbent VARCHAR, candidates VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(first_elected) FROM table_2668378_5 WHERE district = \"Kentucky 3\"",
    "question_en": "Name the number of first elected for kentucky 3",
    "question_th": "ตั้งชื่อหมายเลขของผู้ที่ได้รับเลือกคนแรกสำหรับรัฐเคนตักกี้ 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_en": "Name the number of party for kentucky 1",
    "question_th": "ตั้งชื่อหมายเลขปาร์ตี้สำหรับเคนตักกี้ 1",
    "context": "CREATE TABLE table_2668378_5 (party VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT first_elected FROM table_2668378_5 WHERE district = \"Kentucky 1\"",
    "question_en": "Name the first elected for kentucky 1",
    "question_th": "ตั้งชื่อคนแรกที่ได้รับเลือกสำหรับรัฐเคนตักกี้ 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_en": "What is the district for the party federalist and the candidates are william craik (f) 51.0% benjamin edwards 49.0%?",
    "question_th": "เขตสำหรับพรรคสหพันธ์คืออะไรและผู้สมัครคือวิลเลียม craik (f) 51.0% เบนจามินเอ็ดเวิร์ด 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_en": "What is the party when the incumbent is samuel smith?",
    "question_th": "งานปาร์ตี้จะเป็นอย่างไรเมื่อผู้ดำรงตำแหน่งคือซามูเอล สมิธ?",
    "context": "CREATE TABLE table_2668416_7 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_2668416_7 WHERE district = \"Maryland 7\"",
    "question_en": " What is the result for the district Maryland 7?",
    "question_th": " ผลลัพธ์ของเขตแมริแลนด์ 7 คืออะไร?",
    "context": "CREATE TABLE table_2668416_7 (result VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_2668416_7 WHERE district = \"Maryland 1\"",
    "question_en": "Who is the candidates for district maryland 1?",
    "question_th": "ใครคือผู้สมัครชิงตำแหน่งเขตแมรีแลนด์ 1",
    "context": "CREATE TABLE table_2668416_7 (candidates VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_2668420_12 WHERE first_elected = 1791",
    "question_en": "Who was the candidate in 1791?",
    "question_th": "ใครคือผู้สมัครในปี พ.ศ. 2334?",
    "context": "CREATE TABLE table_2668420_12 (candidates VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT tv_season FROM table_2669287_1 WHERE episodes = 23",
    "question_en": "What tv season was episode 23 broadcast?",
    "question_th": "ตอนที่ 23 ออกอากาศทางทีวีซีซั่นใด?",
    "context": "CREATE TABLE table_2669287_1 (tv_season VARCHAR, episodes VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(season) FROM table_2669287_1 WHERE rank = \"#50\"",
    "question_en": "How many seasons was the rank equal to #50?",
    "question_th": "อันดับเท่ากับ #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_en": "When did the season finale reached an audience of 10.02 million viewers?",
    "question_th": "ตอนจบของซีซั่นมีผู้ชมถึง 10.02 ล้านคนเมื่อใด",
    "context": "CREATE TABLE table_2669287_1 (season VARCHAR, viewers__in_millions_ VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_2679061_2 WHERE player = \"Randy Heath\"",
    "question_en": "What is the nationality when the player is randy heath?",
    "question_th": "เมื่อผู้เล่นเป็นแรนดี้ เฮลธ์ เป็นคนสัญชาติอะไร?",
    "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_en": "What is the nhl team when the college, junior, club team is toronto marlboros (ohl) and the position is centre?",
    "question_th": "ทีม nhl คืออะไรเมื่อทีมวิทยาลัย รุ่นน้อง และสโมสรคือโตรอนโต มาร์ลโบรอส (โอห์ล) และตำแหน่งเป็นศูนย์กลาง",
    "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ères Draveurs (QMJHL)\"",
    "question_en": "what is the pick # when the nhl team is montreal canadiens and the college/junior/club team is trois-rivières draveurs (qmjhl)?",
    "question_th": "ตัวเลือก # คืออะไร เมื่อทีม nhl คือชาวแคนาดาในมอนทรีออล และทีมวิทยาลัย/รุ่นน้อง/สโมสรคือ trois-rivières 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_en": "how many times is the nhl team the winnipeg jets?",
    "question_th": "กี่ครั้งแล้วที่ทีม nhl เป็นวินนิเพกเจ็ตส์?",
    "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_en": "what is the position for the nhl team toronto maple leafs?",
    "question_th": "ตำแหน่งของทีม nhl 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_en": "How many were the US viewers (in millions) of the episode that was written by Gordon C. Lonsdale?",
    "question_th": "ผู้ชมในสหรัฐอเมริกา (เป็นล้าน) ตอนที่เขียนโดย 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_en": "What was the air date of the episode that has a production code of 5aky13?",
    "question_th": "ตอนที่มีรหัสการผลิต 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_en": "Who was the writer of the episode with a production code of 5aky04?",
    "question_th": "ใครคือผู้เขียนตอนที่มีรหัสการผลิต 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_en": "What position does the player Todd Wise play in?",
    "question_th": "นักเตะ ท็อดด์ ไวส์ เล่นในตำแหน่งใด?",
    "context": "CREATE TABLE table_26847237_2 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(games) FROM table_26847237_2 WHERE height = \"1.92m\"",
    "question_en": "How many games were played where the height of the player is 1.92m?",
    "question_th": "ผู้เล่นส่วนสูง 1.92 เมตร เล่นไปกี่เกม?",
    "context": "CREATE TABLE table_26847237_2 (games VARCHAR, height VARCHAR)"
  },
  {
    "answer": "SELECT dob FROM table_26847237_2 WHERE club = \"Inglewood\"",
    "question_en": "What is the date of birth for the player in the Inglewood club?",
    "question_th": "วันเกิดของผู้เล่นในสโมสร Inglewood คืออะไร?",
    "context": "CREATE TABLE table_26847237_2 (dob VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_26847237_2 WHERE weight = \"76kg\"",
    "question_en": "Which player weighs 76kg?",
    "question_th": "นักเตะคนไหนหนัก 76 กก.?",
    "context": "CREATE TABLE table_26847237_2 (player VARCHAR, weight VARCHAR)"
  },
  {
    "answer": "SELECT directx FROM table_26860595_2 WHERE core___mhz__ = \"700 700\"",
    "question_en": "What was the model's DirectX if it has a Core of 700 700 mhz?",
    "question_th": "DirectX ของรุ่นคืออะไรหากมี Core 700 700 mhz?",
    "context": "CREATE TABLE table_26860595_2 (directx VARCHAR, core___mhz__ VARCHAR)"
  },
  {
    "answer": "SELECT MAX(fab___nm__) FROM table_26860595_2",
    "question_en": "What was the maximum fab (nm)?",
    "question_th": "Fab สูงสุด (นาโนเมตร) คือเท่าใด",
    "context": "CREATE TABLE table_26860595_2 (fab___nm__ INTEGER)"
  },
  {
    "answer": "SELECT config_core_1 FROM table_26860595_2 WHERE processing_power_gflops = \"432\"",
    "question_en": "What is the config core 1 of the model with a processing power GFLOPs of 432?",
    "question_th": "อะไรคือ config core 1 ของรุ่นที่มีกำลังการประมวลผล GFLOPs 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_en": "How many texture (gt/s) the card has if the tdp (watts) GPU only is 18?",
    "question_th": "การ์ดมีกี่พื้นผิว (gt/s) หาก GPU tdp (วัตต์) มีค่าเพียง 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_en": " How much did Nina Carberry win? ",
    "question_th": " นีน่า คาร์เบอร์รี่ ชนะเท่าไหร่?",
    "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_en": "Name the us viewers directed by christine moore",
    "question_th": "ตั้งชื่อผู้ชมชาวอเมริกันที่กำกับโดยคริสติน มัวร์",
    "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_en": "Name the number for simon cellan jones",
    "question_th": "ตั้งชื่อหมายเลขให้ไซมอน เชลแลน โจนส์",
    "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_en": "Name the teleplay for  david simon & eric overmyer and tom piazza",
    "question_th": "ตั้งชื่อเทเลเพลย์สำหรับ David simon & eric overmyer และ tom piazza",
    "context": "CREATE TABLE table_26914076_2 (teleplay_by VARCHAR, story_by VARCHAR)"
  },
  {
    "answer": "SELECT MAX(no) FROM table_26914076_2",
    "question_en": "Name the most number",
    "question_th": "ตั้งชื่อหมายเลขมากที่สุด",
    "context": "CREATE TABLE table_26914076_2 (no INTEGER)"
  },
  {
    "answer": "SELECT geez FROM table_26919_7 WHERE proto_semitic = \"*bayt-\"",
    "question_en": "If the proto-semitic is *bayt-, what are the geez?",
    "question_th": "หากกลุ่มเซมิติกดั้งเดิมคือ *bayt- geez คืออะไร?",
    "context": "CREATE TABLE table_26919_7 (geez VARCHAR, proto_semitic VARCHAR)"
  },
  {
    "answer": "SELECT english FROM table_26919_7 WHERE aramaic = \"šlām-āʼ\"",
    "question_en": "if the aramaic is šlām-āʼ, what is the english?",
    "question_th": "ถ้าภาษาอราเมอิกคือ šlām-ā' ภาษาอังกฤษคืออะไร?",
    "context": "CREATE TABLE table_26919_7 (english VARCHAR, aramaic VARCHAR)"
  },
  {
    "answer": "SELECT akkadian FROM table_26919_7 WHERE geez = \"libb\"",
    "question_en": "if the geez is libb, what is the akkadian?",
    "question_th": "ถ้า geez คือ libb แล้วอัคคาเดียนคืออะไร?",
    "context": "CREATE TABLE table_26919_7 (akkadian VARCHAR, geez VARCHAR)"
  },
  {
    "answer": "SELECT hebrew FROM table_26919_7 WHERE english = \"heart\"",
    "question_en": "If in english it is heart, what is it in hebrew?",
    "question_th": "ถ้าภาษาอังกฤษเรียกว่า heart ภาษาฮีบรูเรียกว่าอะไร?",
    "context": "CREATE TABLE table_26919_7 (hebrew VARCHAR, english VARCHAR)"
  },
  {
    "answer": "SELECT proto_semitic FROM table_26919_7 WHERE english = \"house\"",
    "question_en": "If in English it's house, what is it in proto-semitic?",
    "question_th": "ถ้าในภาษาอังกฤษคือบ้าน ในภาษาโปรโต-เซมิติกเรียกว่าอะไร?",
    "context": "CREATE TABLE table_26919_7 (proto_semitic VARCHAR, english VARCHAR)"
  },
  {
    "answer": "SELECT proto_semitic FROM table_26919_7 WHERE arabic = \"salām-\"",
    "question_en": "If in arabic it is salām-, what is it in proto-semitic?",
    "question_th": "ถ้าเป็นภาษาอาหรับเรียกว่า สลาม ในภาษากลุ่มเซมิติกดั้งเดิมเรียกว่าอะไร?",
    "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_en": "how many times is the location is homestead, florida?",
    "question_th": "ที่ตั้งบ้านไร่ ฟลอริดา กี่ครั้งแล้ว?",
    "context": "CREATE TABLE table_2696531_2 (pole_position VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT MIN(season) FROM table_26998693_1 WHERE podiums = 9",
    "question_en": "What was the earliest season where podium was 9?",
    "question_th": "ฤดูกาลแรกสุดที่โพเดี้ยมอยู่ที่ 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_en": "How much were the f/laps if poles is higher than 1.0 during 2008?",
    "question_th": "ถ้าโพลสูงกว่า 1.0 ในช่วงปี 2551 ค่า f/รอบจะเป็นเท่าใด",
    "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_en": "What races achieved 0 f/laps and 1 pole position?",
    "question_th": "การแข่งขันใดบ้างที่ทำได้ 0 f/lap และตำแหน่งโพล 1 ตำแหน่ง",
    "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üsnü Özkara\"",
    "question_en": "Who replaced the outgoing manager Hüsnü Özkara? ",
    "question_th": " ใครเข้ามาแทนที่ผู้จัดการทีมฮุสนู เอิซคาราที่กำลังจะหมดวาระ?",
    "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_en": "When was the date of vacancy for the manager of Kartalspor? ",
    "question_th": " ผู้จัดการทีมคาร์ทัลสปอร์ว่างเมื่อใด?",
    "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_en": "Who replaced the manager of Akhisar B.G.S.?",
    "question_th": "ใครเข้ามาแทนที่ผู้จัดการทีม Akhisar BGS?",
    "context": "CREATE TABLE table_27091128_3 (replaced_by VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_27091128_3 WHERE replaced_by = \"Serhat Güller\"",
    "question_en": "Which team replaced their manager with Serhat Güller?",
    "question_th": "ทีมใดเข้ามาแทนที่ผู้จัดการทีมด้วยเซอร์ฮัต กุลเลอร์?",
    "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_en": "How many different episode numbers does the episode written by Sheri Elwood and directed by Jim Allodi have?",
    "question_th": "ตอนที่เขียนโดย Sheri Elwood และกำกับโดย Jim Allodi มีหมายเลขตอนที่แตกต่างกันกี่ตอน",
    "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_en": "How many different episode numbers are there for the episodes directed by Sheri Elwood?",
    "question_th": "มีหมายเลขตอนที่แตกต่างกันกี่ตอนสำหรับตอนที่กำกับโดย 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_en": "Name the original airdate for robin mukherjee and margy kinmonth",
    "question_th": "ตั้งชื่อวันออกอากาศเดิมของ robin mukherjee และ 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_en": "If the highest score is 88, what are the 50s?",
    "question_th": "ถ้าคะแนนสูงสุดคือ 88 แล้ว 50 คะแนนคือเท่าไร?",
    "context": "CREATE TABLE table_27268238_4 (highest_score VARCHAR)"
  },
  {
    "answer": "SELECT highest_score FROM table_27268238_4 WHERE matches = 5 AND team = \"Worcestershire\"",
    "question_en": "If the team is Worcestershire and the Matched had were 5, what is the highest score?",
    "question_th": "หากทีมคือ Worcestershire และ Matched มี 5 คะแนน คะแนนสูงสุดคือเท่าไร?",
    "context": "CREATE TABLE table_27268238_4 (highest_score VARCHAR, matches VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT MIN(matches) FROM table_27268238_4",
    "question_en": "What is the smallest amount of matches?",
    "question_th": "จำนวนการแข่งขันที่น้อยที่สุดคือเท่าใด?",
    "context": "CREATE TABLE table_27268238_4 (matches INTEGER)"
  },
  {
    "answer": "SELECT average FROM table_27268238_4 WHERE team = \"Gloucestershire\"",
    "question_en": "If the team is Gloucestershire, what is the average?",
    "question_th": "ถ้าทีมคือ กลอสเตอร์เชียร์ เฉลี่ยเท่าไหร่?",
    "context": "CREATE TABLE table_27268238_4 (average VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT highest_score FROM table_27268238_4 WHERE team = \"Sussex\"",
    "question_en": "What is the team Sussex' highest score?",
    "question_th": "คะแนนสูงสุดของทีม Sussex คืออะไร?",
    "context": "CREATE TABLE table_27268238_4 (highest_score VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_27268238_4 WHERE average = \"50.16\"",
    "question_en": "If the average is 50.16, who is the player?",
    "question_th": "ถ้าค่าเฉลี่ยอยู่ที่ 50.16 นักเตะคือใคร?",
    "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_en": "If the working force of HK is 32.8%, what are the Pakistanis' %? ",
    "question_th": " หากกำลังแรงงานของ HK อยู่ที่ 32.8% % ของชาวปากีสถานจะเป็นเท่าใด",
    "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_en": "If the Indians are 8.2%, what is the salary range?",
    "question_th": "ถ้าคนอินเดีย 8.2% ช่วงเงินเดือนเท่าไหร่?",
    "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_en": "If the working force of HK is 10.4%, what is the salary range?",
    "question_th": "ถ้ากำลังแรงงานของฮ่องกงอยู่ที่ 10.4% ช่วงเงินเดือนเท่าไหร่?",
    "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_en": "If the nepalese is 37.1%, what is the working force of HK?",
    "question_th": "ถ้าชาวเนปาล 37.1% ฮ่องกงมีกำลังพลเท่าไร?",
    "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_en": "If the salary range is 4,000-9,000, what is the Indians %?",
    "question_th": "ถ้าเงินเดือนอยู่ในช่วง 4,000-9,000 คนอินเดีย % เท่าไหร่?",
    "context": "CREATE TABLE table_27257896_2 (indians VARCHAR, salary_range VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_27293285_6 WHERE won = \"15\"",
    "question_en": "For teams that won exactly 15, how many points were scored?",
    "question_th": "สำหรับทีมที่ชนะได้ 15 แต้มพอดี จะได้คะแนนเท่าไร?",
    "context": "CREATE TABLE table_27293285_6 (points VARCHAR, won VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(drawn) FROM table_27293285_6 WHERE won = \"10\"",
    "question_en": "How many matches were drawn by the teams that won exactly 10?",
    "question_th": "มีกี่นัดที่เสมอกันโดยทีมที่ชนะ 10 นัดพอดี?",
    "context": "CREATE TABLE table_27293285_6 (drawn VARCHAR, won VARCHAR)"
  },
  {
    "answer": "SELECT points_for FROM table_27293285_6 WHERE won = \"22\"",
    "question_en": "How many points for were scored by the team that won exactly 22?",
    "question_th": "ทีมที่ชนะได้ 22 แต้มได้กี่คะแนน?",
    "context": "CREATE TABLE table_27293285_6 (points_for VARCHAR, won VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_27293285_6 WHERE lost = \"7\"",
    "question_en": "Which club lost exactly 7 matches?",
    "question_th": "สโมสรใดแพ้ 7 นัดรวด?",
    "context": "CREATE TABLE table_27293285_6 (club VARCHAR, lost VARCHAR)"
  },
  {
    "answer": "SELECT won FROM table_27293285_6 WHERE tries_for = \"61\"",
    "question_en": "How many matches were won by the teams that scored exactly 61 tries for?",
    "question_th": "ทีมที่ทำคะแนนได้ 61 ครั้งชนะไปกี่แมตช์?",
    "context": "CREATE TABLE table_27293285_6 (won VARCHAR, tries_for VARCHAR)"
  },
  {
    "answer": "SELECT tries_for FROM table_27293285_6 WHERE points_for = \"396\"",
    "question_en": "How many tries for were scored by the team that had exactly 396 points for?",
    "question_th": "ทีมที่ทำคะแนนได้ 396 คะแนนพอดีมีความพยายามกี่ครั้ง?",
    "context": "CREATE TABLE table_27293285_6 (tries_for VARCHAR, points_for VARCHAR)"
  },
  {
    "answer": "SELECT format FROM table_27303975_2 WHERE title = \"Super Callanetics\"",
    "question_en": "Name the format for super callanetics",
    "question_th": "ตั้งชื่อรูปแบบสำหรับ 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_en": "Name the format for  quick callanetics: hips and behind",
    "question_th": "ตั้งชื่อรูปแบบสำหรับ Callanetics ด่วน: สะโพกและด้านหลัง",
    "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_en": "Name the catalog number for  october 6, 1988",
    "question_th": "ตั้งชื่อหมายเลขแค็ตตาล็อกสำหรับวันที่ 6 ตุลาคม 2531",
    "context": "CREATE TABLE table_27303975_2 (catalog_number VARCHAR, release_date VARCHAR)"
  },
  {
    "answer": "SELECT studio FROM table_27303975_2 WHERE title = \"Super Callanetics\"",
    "question_en": "Name the studio for super callanetics",
    "question_th": "ตั้งชื่อสตูดิโอสำหรับ super callanetics",
    "context": "CREATE TABLE table_27303975_2 (studio VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT studio FROM table_27303975_2 WHERE catalog_number = \"81063\"",
    "question_en": "Name the studio for catalog number 81063",
    "question_th": "ตั้งชื่อสตูดิโอสำหรับแค็ตตาล็อกหมายเลข 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_en": "Name the catalog number for am/pm callanetics",
    "question_th": "ตั้งชื่อหมายเลขแค็ตตาล็อกสำหรับวิชา Callanetics แบบ AM/PM",
    "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_en": "What was the share (%) for the Semi-Final 2 episode? ",
    "question_th": " ส่วนแบ่ง (%) สำหรับตอนรอบรองชนะเลิศ 2 เป็นเท่าใด",
    "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_en": "What was the official ITV1 HD rating in millions for the episode that had an official ITV1 rating of 8.98 million?",
    "question_th": "เรตติ้ง ITV1 HD อย่างเป็นทางการในหน่วยล้านสำหรับตอนที่มีเรตติ้ง ITV1 อย่างเป็นทางการอยู่ที่ 8.98 ล้านเป็นเท่าใด",
    "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_en": "When was the episode that had a share (%) of 41.5?",
    "question_th": "ตอนที่มีส่วนแบ่ง (%) 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_en": "Which episode had an official ITV1 HD rating of 1.185 million? ",
    "question_th": " ตอนไหนมีเรตติ้ง ITV1 HD อย่างเป็นทางการ 1.185 ล้าน?",
    "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_en": "What was the official ITV1 rating in millions of the Live Final Results episode?",
    "question_th": "เรตติ้งอย่างเป็นทางการของ ITV1 ในตอน Live Final Results หลายล้านตอนคือเท่าใด",
    "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_en": "What was the total ITV1 viewers in millions for the episode with a share (%) of 28.9? ",
    "question_th": "ผู้ชม ITV1 ทั้งหมดเป็นล้านสำหรับตอนนี้โดยมีส่วนแบ่ง (%) 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_en": "What is the nickname of the Adrian, Michigan team?",
    "question_th": "ชื่อเล่นของทีม Adrian, Michigan คืออะไร?",
    "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_en": "How many primary conferences were held in Allendale, Michigan?",
    "question_th": "มีการประชุมหลักกี่ครั้งที่ Allendale รัฐมิชิแกน",
    "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_en": "Where is Robert Morris University-Illinois held?",
    "question_th": "Robert Morris University-Illinois จัดขึ้นที่ไหน?",
    "context": "CREATE TABLE table_27361255_1 (location VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(enrollment) FROM table_27361255_1 WHERE team_nickname = \"RedHawks\"",
    "question_en": "What is the enrollment for the Redhawks?",
    "question_th": "การลงทะเบียนสำหรับ 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_en": "what is the 2001 % for the status widowed or surviving partner?",
    "question_th": "2001 % สำหรับสถานะเป็นม่ายหรือคู่ครองที่ยังมีชีวิตอยู่คือเท่าไร?",
    "context": "CREATE TABLE table_273617_6 (status VARCHAR)"
  },
  {
    "answer": "SELECT MIN(2011 AS _number__), 000 AS _ FROM table_273617_6",
    "question_en": "What is the lowest 2011 number (,000)?",
    "question_th": "ตัวเลขต่ำสุดในปี 2554 (,000) คือเท่าใด",
    "context": "CREATE TABLE table_273617_6 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2011 AS _number__, 000 AS _ FROM table_273617_6 WHERE status = \"Separated\"",
    "question_en": "What is the 2011 number (,000) when the status is separated?",
    "question_th": "เมื่อแยกสถานะแล้วตัวเลขปี 2554 (,000) คืออะไร?",
    "context": "CREATE TABLE table_273617_6 (status VARCHAR)"
  },
  {
    "answer": "SELECT MAX(no_in_season) FROM table_27374740_1 WHERE directed_by = \"Paul Adelstein\"",
    "question_en": "What number episode in the season was directed by Paul Adelstein? ",
    "question_th": " 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_en": "What is the earliest numbered episode of the season?",
    "question_th": "หมายเลขตอนเร็วที่สุดของฤดูกาลคืออะไร?",
    "context": "CREATE TABLE table_27374740_1 (no_in_season INTEGER)"
  },
  {
    "answer": "SELECT director FROM table_27423508_1 WHERE spanish_title = \"Tango Bar\"",
    "question_en": "Who was the director for Tango Bar?",
    "question_th": "ใครเป็นผู้กำกับ 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_en": "What was the English title fo the film that was a nominee?",
    "question_th": "ชื่อภาษาอังกฤษของภาพยนตร์ที่ได้รับการเสนอชื่อเข้าชิงคืออะไร?",
    "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_en": "What was the English title of Ladrones Y Mentirosos?",
    "question_th": "ชื่อภาษาอังกฤษของ 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_en": "How many years have a weeks at #1 value of exactly 8?",
    "question_th": "กี่ปีมีสัปดาห์ที่ค่า 1 เท่ากับ 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_en": "What is the position for outgoing manager alfredo merino",
    "question_th": "ตำแหน่งผู้จัดการทีมที่กำลังจะลาออก อัลเฟรโด เมริโน คืออะไร",
    "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_en": "how many teams had an appointment date of 11 april 2011",
    "question_th": "มีกี่ทีมที่ได้รับการแต่งตั้งในวันที่ 11 เมษายน พ.ศ. 2554",
    "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ésar Sampedro\"",
    "question_en": "what was the appointment date for outgoing manager luis césar sampedro",
    "question_th": "วันที่นัดหมายสำหรับผู้จัดการทีมที่กำลังจะพ้นตำแหน่ง หลุยส์ ซีซาร์ ซามเปโดร คือเมื่อใด",
    "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_en": "What was the manner of departure for the appointment date of 21 september 2010",
    "question_th": "กำหนดการเดินทางเป็นอย่างไรสำหรับวันนัดหมายวันที่ 21 กันยายน 2553",
    "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_en": "What was the position of appointment date 17 january 2011",
    "question_th": "ตำแหน่งที่ได้รับแต่งตั้งเมื่อวันที่ 17 มกราคม 2554",
    "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ómez\"",
    "question_en": "How many teams had an outgoing manager of antonio gómez",
    "question_th": "มีกี่ทีมที่มีผู้จัดการทีมอันโตนิโอ โกเมซที่กำลังจะลาออก",
    "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_en": "What was the score for the opponent florida panthers?",
    "question_th": "ฟลอริดา แพนเทอร์ส ของคู่ต่อสู้ได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_27501030_3 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT ab_ripper_x FROM table_27512025_1 WHERE length = \"92:24\"",
    "question_en": "What is the ab ripper x when the length is 92:24?",
    "question_th": "ab ripper x คืออะไรเมื่อความยาวเป็น 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_en": "How many types are cardio?",
    "question_th": "คาร์ดิโอมีกี่ประเภท?",
    "context": "CREATE TABLE table_27512025_1 (program VARCHAR, type VARCHAR)"
  },
  {
    "answer": "SELECT ab_ripper_x FROM table_27512025_1 WHERE exercise = \"X Stretch\"",
    "question_en": "What is the ab ripper x when exercise is x stretch?",
    "question_th": "ab ripper x เมื่อออกกำลังกายคือ x ยืดคืออะไร?",
    "context": "CREATE TABLE table_27512025_1 (ab_ripper_x VARCHAR, exercise VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_27512025_1 WHERE type = \"Cardio Workout\"",
    "question_en": "What is the week when type is cardio workout?",
    "question_th": "สัปดาห์ไหนที่ประเภทออกกำลังกายแบบคาร์ดิโอ?",
    "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_en": "What is the exercise when the equipment is heart rate monitor, water and towel?",
    "question_th": "การออกกำลังกายเมื่ออุปกรณ์คือเครื่องวัดอัตราการเต้นของหัวใจ น้ำ และผ้าเช็ดตัว?",
    "context": "CREATE TABLE table_27512025_1 (exercise VARCHAR, equipment VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_27537870_5 WHERE game = 29",
    "question_en": "Name the score for 29 game",
    "question_th": "บอกชื่อสกอร์ 29 เกม",
    "context": "CREATE TABLE table_27537870_5 (score VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_27537870_5 WHERE record = \"10-13-3\"",
    "question_en": "Name the opponent for record 10-13-3",
    "question_th": "ตั้งชื่อคู่ต่อสู้ด้วยสถิติ 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_en": "Name the december for record 14-17-4",
    "question_th": "ตั้งชื่อเดือนธันวาคมเป็นบันทึก 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_en": "Name the least december for hsbc arena/18,017",
    "question_th": "ตั้งชื่อเดือนธันวาคมน้อยที่สุดสำหรับ 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_en": "Name the number of game 2-6",
    "question_th": "ตั้งชื่อหมายเลขของเกม 2-6",
    "context": "CREATE TABLE table_27537870_5 (game VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT MAX(november) FROM table_27539535_4 WHERE game = 20",
    "question_en": "What is the highest entry in November for the game 20?",
    "question_th": "รายการที่สูงที่สุดในเดือนพฤศจิกายนสำหรับเกม 20 คืออะไร?",
    "context": "CREATE TABLE table_27539535_4 (november INTEGER, game VARCHAR)"
  },
  {
    "answer": "SELECT MIN(game) FROM table_27539535_4 WHERE score = \"1-0\"",
    "question_en": "What is the least entry for game if the score is 1-0?",
    "question_th": "การเข้าเกมน้อยที่สุดคือเท่าใดหากสกอร์เป็น 1-0?",
    "context": "CREATE TABLE table_27539535_4 (game INTEGER, score VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_27539535_4 WHERE november = 21",
    "question_en": "What is every game on November 21?",
    "question_th": "ทุกเกมในวันที่ 21 พฤศจิกายนมีอะไรบ้าง?",
    "context": "CREATE TABLE table_27539535_4 (game VARCHAR, november VARCHAR)"
  },
  {
    "answer": "SELECT MAX(points) FROM table_27539535_4",
    "question_en": "What is the highest amount of points?",
    "question_th": "คะแนนสูงสุดคือเท่าไร?",
    "context": "CREATE TABLE table_27539535_4 (points INTEGER)"
  },
  {
    "answer": "SELECT record FROM table_27539535_4 WHERE game = 13",
    "question_en": "What is every record for game 13?",
    "question_th": "ทุกสถิติในเกมที่ 13 คืออะไร?",
    "context": "CREATE TABLE table_27539535_4 (record VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT MIN(points) FROM table_27539535_4",
    "question_en": "What is the least amount of points?",
    "question_th": "คะแนนขั้นต่ำคือเท่าไร?",
    "context": "CREATE TABLE table_27539535_4 (points INTEGER)"
  },
  {
    "answer": "SELECT opponent FROM table_27539272_5 WHERE game = 14",
    "question_en": "who was the opponent where the game is 14?",
    "question_th": "คู่ต่อสู้คือใครในเกมที่ 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_en": "what is the total number of locations that had a score of 1-3?",
    "question_th": "สถานที่ทั้งหมดที่มีคะแนน 1-3 คือเท่าใด",
    "context": "CREATE TABLE table_27539272_5 (location_attendance VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT MAX(points) FROM table_27539272_5",
    "question_en": "what is the maximum number of points?",
    "question_th": "คะแนนสูงสุดคือเท่าไร?",
    "context": "CREATE TABLE table_27539272_5 (points INTEGER)"
  },
  {
    "answer": "SELECT record FROM table_27539272_5 WHERE score = \"5-3\"",
    "question_en": "what is the record that had a score of 5-3?",
    "question_th": "สถิติที่มีคะแนน 5-3 คืออะไร?",
    "context": "CREATE TABLE table_27539272_5 (record VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_27539272_5 WHERE score = \"1-3\"",
    "question_en": "what is the record for score 1-3?",
    "question_th": "สถิติสกอร์ 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_en": "what is the number of original airdate written by allan hawco?",
    "question_th": "อัลลัน ฮาวโก แอร์เดทแรกเขียนเป็นจำนวนเท่าใด",
    "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_en": "what is the total number of films directy and written by john callaghan?",
    "question_th": "ผู้กำกับและเขียนบทโดยจอห์น คัลลาแกนมีภาพยนตร์ทั้งหมดกี่เรื่อง?",
    "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_en": "How many times was the date october 3, 2010?",
    "question_th": "วันที่ 3 ตุลาคม 2553 กี่ครั้ง?",
    "context": "CREATE TABLE table_27552095_27 (player VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(institution) FROM table_27599216_6 WHERE football_stadium = \"Mosaic Stadium\"",
    "question_en": "How many institutions are shown for the football stadium of mosaic stadium?",
    "question_th": "สนามฟุตบอลโมเสกสเตเดียมมีกี่สถาบัน?",
    "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_en": "What year was mcmahon stadium founded?",
    "question_th": "สนามกีฬา mcmahon ก่อตั้งเมื่อปีใด",
    "context": "CREATE TABLE table_27599216_6 (founded INTEGER, football_stadium VARCHAR)"
  },
  {
    "answer": "SELECT MAX(founded) FROM table_27599216_6 WHERE team = \"Dinos\"",
    "question_en": "What is the year founded for the team Dinos?",
    "question_th": "ก่อตั้งทีม Dinos เมื่อปีใด?",
    "context": "CREATE TABLE table_27599216_6 (founded INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT capacity FROM table_27599216_6 WHERE institution = \"University of Alberta\"",
    "question_en": "What is the capacity for the  institution of university of alberta?",
    "question_th": "สถาบันของมหาวิทยาลัยอัลเบอร์ตามีความสามารถอะไรบ้าง?",
    "context": "CREATE TABLE table_27599216_6 (capacity VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT institution FROM table_27599216_6 WHERE endowment = \"$25.9M\"",
    "question_en": "Which institution has an endowment of $25.9m?",
    "question_th": "สถาบันใดมีเงินบริจาคจำนวน 25.9 ล้านเหรียญสหรัฐ?",
    "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_en": "What is the ramsan-810 transfer delay?",
    "question_th": "ความล่าช้าในการถ่ายโอน ramsan-810 คืออะไร?",
    "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_en": "What is the shape distortion for the range frequency of 10?",
    "question_th": "รูปร่างบิดเบี้ยวสำหรับช่วงความถี่ 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_en": "List the number of ramsan-720 hard drives?",
    "question_th": "แสดงรายการจำนวนฮาร์ดไดรฟ์ ramsan-720?",
    "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_en": "List the range distroration for the ramsan-630",
    "question_th": "แสดงรายการการบิดเบือนช่วงสำหรับ 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_en": "What is the Input/output operations per second for the emlc flash?",
    "question_th": "การดำเนินการอินพุต/เอาต์พุตต่อวินาทีสำหรับแฟลช emlc คืออะไร",
    "context": "CREATE TABLE table_27615520_1 (speed___iops__ VARCHAR, storage_medium VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_27698941_6 WHERE record = \"3–12\"",
    "question_en": "What is the score for the game with the record of 3–12?",
    "question_th": "คะแนนของเกมที่มีสถิติ 3–12 คืออะไร?",
    "context": "CREATE TABLE table_27698941_6 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_27698941_6 WHERE score = \"L 90–106 (OT)\"",
    "question_en": "What is the game number for the game with a score of l 90–106 (ot)?",
    "question_th": "หมายเลขเกมของเกมที่มีคะแนน l 90–106 (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_en": "How many games are shown for the game where andre iguodala (9) had the high rebounds?",
    "question_th": "มีการแสดงกี่เกมสำหรับเกมที่อันเดร อิกัวดาลา (9) รีบาวด์สูง?",
    "context": "CREATE TABLE table_27698941_6 (game VARCHAR, high_rebounds VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_27700530_14 WHERE date = \"April 1\"",
    "question_en": "Who had the most the most rebounds and how many did they have on April 1?",
    "question_th": "ใครรีบาวด์มากที่สุดและได้กี่ตัวในวันที่ 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_en": "Where was the game and what was the attendance on April 3? ",
    "question_th": " เกมดังกล่าวจัดขึ้นที่ไหนและผู้เข้าร่วมในวันที่ 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_en": "How many high rebounds are listed for game 35?",
    "question_th": "มีรายการรีบาวด์สูงกี่รายการในเกม 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_en": "If the Close ranged weapons are the knife (stone), knife (iron), what are the Long ranged weapons?",
    "question_th": "ถ้าอาวุธระยะใกล้คือมีด (หิน) มีด (เหล็ก) อาวุธระยะไกลคืออะไร?",
    "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_en": "If the special weapon is the Grenado, what is the armor?",
    "question_th": "ถ้าอาวุธพิเศษคือ Grenado เกราะคืออะไร?",
    "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_en": "If the armor is bronze cuirass , linothorax, what are the close ranged weapons?",
    "question_th": "ถ้าชุดเกราะเป็นเสื้อเกราะสีบรอนซ์ , linothorax อาวุธระยะประชิดมีอะไรบ้าง?",
    "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_en": "If the special weapon is glass egg, what is the close ranged weapon?",
    "question_th": "ถ้าอาวุธพิเศษคือไข่แก้ว อาวุธระยะประชิดคืออะไร?",
    "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_en": "Who had the high rebounds record on December 12?",
    "question_th": "ใครทำสถิติรีบาวด์สูงสุดในวันที่ 12 ธันวาคม?",
    "context": "CREATE TABLE table_27712702_8 (high_rebounds VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_27712702_8 WHERE date = \"December 27\"",
    "question_en": "What was the record on December 27?",
    "question_th": "บันทึกเมื่อวันที่ 27 ธันวาคมคืออะไร?",
    "context": "CREATE TABLE table_27712702_8 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(game) FROM table_27713583_6 WHERE team = \"Washington\"",
    "question_en": "What game number is the Washington team.",
    "question_th": "ทีมวอชิงตันคือเกมหมายเลขใด",
    "context": "CREATE TABLE table_27713583_6 (game VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_27713583_11 WHERE date = \"April 5\"",
    "question_en": "Name the location attendance april 5",
    "question_th": "ตั้งชื่อสถานที่เข้าร่วมวันที่ 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–38\"",
    "question_en": "Name the high assists for madison square garden 19,763 and record is 39–38",
    "question_th": "ตั้งชื่อแอสซิสต์สูงให้กับเมดิสัน สแควร์ การ์เดน 19,763 และสถิติคือ 39–38",
    "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_en": "Name the date for cleveland",
    "question_th": "ตั้งชื่อวันที่สำหรับคลีฟแลนด์",
    "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_en": "What is the original air date when the u.s. viewers in millions was 5.39?",
    "question_th": "วันที่ออกอากาศเดิมเมื่อคนดู US เป็นล้านคือ 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_en": "What is the title of the series # 8?",
    "question_th": "ซีรีย์ #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_en": "What is the highest series # directed by ken whittingham?",
    "question_th": "ซีรีส์สูงสุด # กำกับโดย 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_en": "How many episodes had a production code 120?",
    "question_th": "มีทั้งหมดกี่ตอนครับ รหัสการผลิต 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_en": "Who had the most rebounds and how many did they have on October 16?",
    "question_th": "ใครรีบาวน์มากที่สุดและได้กี่ตัวในวันที่ 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_en": "Who had the most assists and how many did they have on October 7? ",
    "question_th": " ใครแอสซิสต์ได้มากที่สุดและมีกี่แอสซิสต์ในวันที่ 7 ตุลาคม?",
    "context": "CREATE TABLE table_27722408_2 (high_assists VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_27723228_3 WHERE game = 4",
    "question_en": "What team did the Hornets play in game 4?",
    "question_th": "Hornets เล่นอยู่กับทีมใดในเกมที่ 4?",
    "context": "CREATE TABLE table_27723228_3 (team VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_27723526_12 WHERE score = \"L 103–104 (OT)\"",
    "question_en": "Name the high assists for  l 103–104 (ot)",
    "question_th": "ตั้งชื่อแอสซิสต์สูงสำหรับ l 103–104 (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_en": "Name the high points for march 30",
    "question_th": "ตั้งชื่อจุดสูงสุดของวันที่ 30 มีนาคม",
    "context": "CREATE TABLE table_27723526_12 (high_points VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_27723526_12 WHERE high_assists = \"José Juan Barea (8)\"",
    "question_en": "Name the score for  josé juan barea (8)",
    "question_th": "ตั้งชื่อคะแนนให้ โฮเซ่ ฮวน บาเรีย (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_en": "What is the game number played on April 3?",
    "question_th": "เกมที่เล่นในวันที่ 3 เมษายนคือหมายเลขอะไร?",
    "context": "CREATE TABLE table_27723526_13 (game INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_27723526_13 WHERE team = \"Phoenix\"",
    "question_en": "What is the record after the Phoenix game?",
    "question_th": "สถิติหลังเกมฟีนิกซ์เป็นอย่างไรบ้าง?",
    "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_en": "How many games had Robin Lopez (10) for the most rebounds?",
    "question_th": "โรบิน โลเปซ (10) รีบาวด์ได้กี่เกม?",
    "context": "CREATE TABLE table_27733258_2 (game VARCHAR, high_rebounds VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_27733258_2 WHERE date = \"October 14\"",
    "question_en": "What two players had the highest rebounds for the October 14 game?",
    "question_th": "ผู้เล่นสองคนใดที่มีการรีบาวด์สูงสุดในเกมวันที่ 14 ตุลาคม?",
    "context": "CREATE TABLE table_27733258_2 (high_rebounds VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_27733909_7 WHERE date = \"January 17\"",
    "question_en": "Name the team for january 17",
    "question_th": "ตั้งชื่อทีมวันที่ 17 มกราคม",
    "context": "CREATE TABLE table_27733909_7 (team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_27733909_7 WHERE score = \"L 102–122 (OT)\"",
    "question_en": "Name the team for score l 102–122 (ot)",
    "question_th": "ตั้งชื่อทีมตามคะแนน l 102–122 (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_en": "Name the number of high rebounds for january 5",
    "question_th": "บอกจำนวนรีบาวด์สูงประจำวันที่ 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_en": "Who is the mixed doubled on the tour korea super series?",
    "question_th": "ใครคือมิกซ์ดับเบิ้ลในทัวร์เกาหลีซุปเปอร์ซีรีส์?",
    "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_en": "Who is the women's doubles when the mixed doubles are sudket prapakamol saralee thungthongkam?",
    "question_th": "หญิงคู่คือใคร ในเมื่อ คู่ผสม สุดเกตุ ประภากมล สาระลี ทุ่งทองคำ?",
    "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_en": "Who were the womens doubles when the mixed doubles were zhang nan zhao yunlei on the tour all england super series?",
    "question_th": "หญิงคู่คือใคร ในเมื่อคู่ผสมคือ จาง หนาน จ้าว หยุนเล่ย ในทัวร์ออลอิงแลนด์ซูเปอร์ซีรีส์?",
    "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_en": "Who is the womens doubles on the tour french super series?",
    "question_th": "หญิงคู่ผสมในทัวร์ 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_en": "What was the score in the game in which Michael Beasley (26) did the high points?",
    "question_th": "ในเกมที่ไมเคิล บีสลีย์ (26) ทำแต้มได้สูงแค่ไหน?",
    "context": "CREATE TABLE table_27756314_11 (score VARCHAR, high_points VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_27756314_11 WHERE date = \"April 6\"",
    "question_en": "Who did the most high rebounds on April 6?",
    "question_th": "ใครทำรีบาวด์สูงสุดในวันที่ 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_en": "How many different results for high rebounds were there for game number 76?",
    "question_th": "เกมหมายเลข 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_en": "In how many different games did Luke Ridnour (5) did the most high assists?",
    "question_th": "ลุค ริดนูร์ (5) ทำแอสซิสต์ได้มากที่สุดในเกมที่แตกต่างกันกี่เกม?",
    "context": "CREATE TABLE table_27756314_11 (game VARCHAR, high_assists VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_27756314_8 WHERE team = \"Charlotte\"",
    "question_en": "Who had the high points when the team was charlotte?",
    "question_th": "ใครมีแต้มสูงเมื่อทีมชาร์ล็อตต์?",
    "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_en": "What is the highest game with team @ l.a. clippers?",
    "question_th": "เกมสูงสุดกับทีม @ la clippers คืออะไร?",
    "context": "CREATE TABLE table_27756314_8 (game INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_27756314_8 WHERE team = \"Orlando\"",
    "question_en": "What is the date for the game with team orlando?",
    "question_th": "เกมกับทีมออร์แลนโด้คือวันที่เท่าไหร่?",
    "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_en": "How many times did kevin love (22) have the high points?",
    "question_th": "เควิน เลิฟ (22) มีคะแนนสูงกี่ครั้ง?",
    "context": "CREATE TABLE table_27756314_8 (date VARCHAR, high_points VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_27756314_8 WHERE game = 35",
    "question_en": "What is the date for the game 35?",
    "question_th": "เกมวันที่ 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_en": "who directed the episode that 6.3 million u.s. viewers saw?",
    "question_th": "ใครเป็นผู้กำกับตอนที่ผู้ชม 6.3 ล้านคนอย่างพวกเราเห็น?",
    "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_en": "What is the college/junior/club team name of player Mats Lindgren?",
    "question_th": "ชื่อทีมวิทยาลัย/จูเนียร์/สโมสรของผู้เล่น 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_en": "How many NHL teams is Denis Pederson a draft pick for?",
    "question_th": "Denis Pederson เป็นตัวเลือกร่างสำหรับทีม NHL กี่ทีม",
    "context": "CREATE TABLE table_2781227_1 (nhl_team VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT written_by FROM table_27823359_1 WHERE season__number = \"23\"",
    "question_en": "Who wrote episode 23 in the season?",
    "question_th": "ใครเป็นคนเขียนตอนที่ 23 ของซีซั่นนี้?",
    "context": "CREATE TABLE table_27823359_1 (written_by VARCHAR, season__number VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_27882867_9 WHERE team = \"Milwaukee\"",
    "question_en": "Where was the location and attendance when they played milwaukee?",
    "question_th": "สถานที่และการเข้าร่วมเมื่อพวกเขาเล่นมิลวอกีอยู่ที่ไหน?",
    "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_en": "What was the date of the game when g. rivers (5) had the  high assists?",
    "question_th": "วันที่ของเกมคือเมื่อ g. แม่น้ำ (5) มีความช่วยเหลือสูงหรือไม่?",
    "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_en": "How many people had the high points when a. webb (7) had the high assists?",
    "question_th": "มีกี่คนที่มีคะแนนสูงเมื่อ เว็บบ์ (7) มีแอสซิสต์สูงไหม?",
    "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_en": "What date was the game score w 104-98?",
    "question_th": "สกอร์เกม 104-98 ตรงกับวันไหน?",
    "context": "CREATE TABLE table_27882867_9 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_27882867_9 WHERE team = \"Indiana\"",
    "question_en": "Who had the high assists when the opponent was Indiana?",
    "question_th": "ใครเป็นผู้แอสซิสต์สูงเมื่อคู่ต่อสู้คืออินเดียน่า?",
    "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_en": "What was the location and attendance when d. wilkins (29) had the high points?",
    "question_th": "สถานที่และการเข้างานเมื่อใด วิลกินส์ (29) มีคะแนนสูงไหม?",
    "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_en": "What is the location and attendance for the game where b. benjamin (10) had the high rebounds?",
    "question_th": "สถานที่และผู้เข้าร่วมการแข่งขันคือที่ไหน โดยที่ข. เบนจามิน (10) รีบาวด์สูงไหม?",
    "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_en": "What dated was the game played at the location delta center 19,911?",
    "question_th": "เกมนี้เล่นที่ตำแหน่งเดลต้าเซ็นเตอร์ 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_en": "Which game had a score of w 95-85?",
    "question_th": "เกมไหนมีสกอร์ 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_en": "Who had the high points when the score was w 112-110?",
    "question_th": "ใครมีแต้มสูงสุดเมื่อสกอร์เป็น 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_en": "What date was the game played in seattle center coliseum 12,126?",
    "question_th": "เกมนี้เล่นวันที่ใดที่สนามกีฬาซีแอตเทิลเซ็นเตอร์ 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_en": "How many production codes had a total number in the season of 8?",
    "question_th": "มีรหัสการผลิตทั้งหมดกี่รหัสในฤดูกาลที่ 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_en": "what is the total rank on airdate march 30, 2011?",
    "question_th": "อันดับรวมของวันที่ออกอากาศวันที่ 30 มีนาคม 2554 เป็นเท่าใด?",
    "context": "CREATE TABLE table_27987623_4 (rank_timeslot_ VARCHAR, airdate VARCHAR)"
  },
  {
    "answer": "SELECT previous_club FROM table_27998152_1 WHERE name = \"Ben Williams\"",
    "question_en": "for the ben williams name what was the previous club",
    "question_th": "สำหรับเบ็น วิลเลียมส์ตั้งชื่อสโมสรก่อนหน้านี้ว่าอะไร",
    "context": "CREATE TABLE table_27998152_1 (previous_club VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT fee FROM table_27998152_1 WHERE previous_club = \"Ankaragücü\"",
    "question_en": "what is the fee for ankaragücü previous club",
    "question_th": "สโมสรเก่าอันคารากูซูราคาเท่าไร",
    "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_en": "how many date of birts are if the previous club is chelsea",
    "question_th": "เบิร์ตมีกี่วันถ้าสโมสรก่อนหน้าคือเชลซี",
    "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_en": "for the no. 7 what is the date of birth",
    "question_th": "สำหรับหมายเลข 7 วันเกิดคือวันที่เท่าไร",
    "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_en": "How many episodes were written by seth hoffman, russel friend & garrett lerner?",
    "question_th": "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_en": "Where did the episode rank that was written by thomas l. moran?",
    "question_th": "ตอนที่เขียนโดย Thomas L. อยู่อันดับไหน โมแรน?",
    "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_en": "Who won Womens Singles in the year that Ma Lin won Mens Singles?",
    "question_th": "ใครชนะประเภทหญิงเดี่ยวในปีที่หม่าหลินชนะประเภทชายเดี่ยว?",
    "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_en": "What is the place and when was the year when the women's doubles womens were Bai yang Niu Jianfeng?",
    "question_th": "สถานที่ใดและเมื่อใดคือปีที่หญิงคู่หญิงคือ 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_en": "How many times has Ma Long won the men's singles?",
    "question_th": "หม่าหลงชนะชายเดี่ยวกี่ครั้งแล้ว?",
    "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_en": "How many times has Sun Jin won the women's doubles?",
    "question_th": "ซอนจินชนะประเภทหญิงคู่กี่ครั้ง?",
    "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_en": "How many artists were there for the show thoroughly modern millie?",
    "question_th": "มีศิลปินกี่คนสำหรับการแสดงมิลลี่สมัยใหม่อย่างทั่วถึง?",
    "context": "CREATE TABLE table_28140141_1 (artist VARCHAR, show VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(difficulty) FROM table_28140141_1 WHERE year = 1994",
    "question_en": "How many shows were in 1994?",
    "question_th": "ในปี 1994 มีการแสดงกี่รายการ?",
    "context": "CREATE TABLE table_28140141_1 (difficulty VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT engine FROM table_28190534_1 WHERE entrant = \"Ecurie Lutetia\"",
    "question_en": "Name the engine for ecurie lutetia",
    "question_th": "ตั้งชื่อเครื่องยนต์สำหรับ 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_en": "Name the chassis for sfacs ecurie france",
    "question_th": "ตั้งชื่อแชสซีสำหรับ 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_en": "Name the constructor for b. bira",
    "question_th": "ตั้งชื่อตัวสร้างสำหรับ b บีรา",
    "context": "CREATE TABLE table_28190534_1 (constructor VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_28190534_1 WHERE no = 10",
    "question_en": "Name the constructor for number 10",
    "question_th": "ตั้งชื่อตัวสร้างสำหรับหมายเลข 10",
    "context": "CREATE TABLE table_28190534_1 (constructor VARCHAR, no VARCHAR)"
  },
  {
    "answer": "SELECT chassis FROM table_28190534_1 WHERE driver = \"B. Bira\"",
    "question_en": "Name the chassis for b. bira",
    "question_th": "ตั้งชื่อแชสซีสำหรับ b บีรา",
    "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_en": "the episode directed by art dielhenn was what number in the series? ",
    "question_th": " ตอนที่กำกับโดย Art Dielhenn เป็นตอนที่เท่าไหร่ในซีรีส์นี้?",
    "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_en": "Who wrote the episode which was directed by Nick Marck?",
    "question_th": "ใครเป็นคนเขียนตอนที่กำกับโดย 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_en": "What is the season 4 # for the production code of 4abb07?",
    "question_th": "ซีซั่น 4 # สำหรับรหัสการผลิต 4abb07 คืออะไร?",
    "context": "CREATE TABLE table_28195898_1 (_number VARCHAR, production_code VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_28195898_1 WHERE № = 65",
    "question_en": "What is the title of episode No. 65?",
    "question_th": "ตอนที่ 65 ชื่ออะไรคะ?",
    "context": "CREATE TABLE table_28195898_1 (title VARCHAR, № VARCHAR)"
  },
  {
    "answer": "SELECT production_code FROM table_28195898_1 WHERE us_viewers__millions_ = \"5.5\"",
    "question_en": "What is the production code for the episode with 5.5 million u.s. viewers?",
    "question_th": "รหัสการผลิตสำหรับตอนที่มีผู้ชม 5.5 ล้านคนของเราคืออะไร?",
    "context": "CREATE TABLE table_28195898_1 (production_code VARCHAR, us_viewers__millions_ VARCHAR)"
  },
  {
    "answer": "SELECT MIN AS № FROM table_28195898_1 WHERE _number = 18",
    "question_en": "What is the series No when the season 4 # is 18?",
    "question_th": "ซีรีส์ No คืออะไรเมื่อซีซั่น 4 # คือ 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_en": "Who was the U21 Mens winner when Mike Marsden was the mixed restricted winner and Claire Nelson was the U21 Womens winner? ",
    "question_th": " ใครคือผู้ชนะ U21 Mens เมื่อ Mike Marsden เป็นผู้ชนะแบบจำกัดผสม และ Claire Nelson เป็นผู้ชนะ U21 Womens",
    "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_en": "When Naomi Owen won the Womens Singles and Ricardo Walther won the Mens Singles, who won the mixed veteran?",
    "question_th": "เมื่อ Naomi Owen ชนะการแข่งขัน Womens Singles และ Ricardo Walther ชนะการแข่งขัน Mens Singles ใครเป็นผู้ชนะในประเภทผสม?",
    "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_en": "Who won the mixed restricted when Tomasz Rzeszotko won the mixed veteran and Karina Le Fevre won the U21 womens?",
    "question_th": "ใครเป็นผู้ชนะประเภทจำกัดเมื่อ Tomasz Rzeszotko ชนะทหารผ่านศึกแบบผสม และ Karina Le Fevre ชนะประเภท U21 หญิง?",
    "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_en": "When and where did Eddie Smith win the mixed veteran?",
    "question_th": "Eddie Smith ชนะการแข่งขันรุ่นเก๋าแบบผสมเมื่อใดและที่ไหน?",
    "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_en": "When Matt Ware won the mens singles, who won the mixed restricted?",
    "question_th": "เมื่อ Matt Ware ชนะประเภทชายเดี่ยว ใครชนะประเภท Limited แบบผสม?",
    "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_en": "When Paul Whiting won the mixed veteran, who won the mixed restricted?",
    "question_th": "เมื่อ Paul Whiting ชนะการแข่งขันแบบผสม ใครชนะการแข่งขันแบบจำกัด?",
    "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_en": "How many winners have st kilda score at 14.11.95?",
    "question_th": "มีผู้ชนะกี่คนที่ได้คะแนนเซนต์คิลดาที่ 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_en": "What the listed in round when the hawthorn score is 17.7.109?",
    "question_th": "สิ่งที่ระบุไว้ในรอบเมื่อคะแนน Hawthorn คือ 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_en": "What is the attendance when the hawthorn score is 18.15.123?",
    "question_th": "ผู้เข้าร่วมเมื่อคะแนน Hawthorn คือ 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_en": "What is the hawthorn score at the year 2000?",
    "question_th": "คะแนน Hawthorn ในปี 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_en": "Who is the winner when the st kilda score is 13.10.88?",
    "question_th": "ใครเป็นผู้ชนะเมื่อคะแนนเซนต์คิลดาคือ 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_en": "What is the attendance when the st kilda score is 13.10.88?",
    "question_th": "ผู้เข้าร่วมเมื่อคะแนนเซนต์คิลดาคือ 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_en": "How many caps figures for the Doncaster Rovers?",
    "question_th": "ดอนคาสเตอร์ โรเวอร์สติดแคปกี่ตัว?",
    "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_en": "How many caps figures are there for Norwich City, Coventry City?",
    "question_th": "นอริช ซิตี้, โคเวนทรี ซิตี้ มีแคปกี่ตัว?",
    "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_en": "How many players had 8 goals?",
    "question_th": "มีผู้เล่นกี่คนที่ทำได้ 8 ประตู?",
    "context": "CREATE TABLE table_28286776_52 (player VARCHAR, goal_s_ VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(position) FROM table_2840500_1 WHERE nationality = \"Czech Republic\"",
    "question_en": "How many positions does the draft pick whose nationality is Czech Republic play?",
    "question_th": "ดราฟท์เลือกคนสัญชาติเช็กเล่นได้กี่ตำแหน่ง?",
    "context": "CREATE TABLE table_2840500_1 (position VARCHAR, nationality VARCHAR)"
  },
  {
    "answer": "SELECT MIN(pick) FROM table_2840500_1 WHERE player = \"Ric Jackman\"",
    "question_en": "What draft pick number was Ric Jackman?",
    "question_th": "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_en": "How many draft pick positions did Matt Bradley have?",
    "question_th": "Matt Bradley มีตำแหน่งดราฟท์กี่ตำแหน่ง?",
    "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_en": "How many players came from college team reipas lahti (finland)?",
    "question_th": "มีผู้เล่นกี่คนที่มาจากทีมวิทยาลัย เรปัส ลาห์ตี (ฟินแลนด์)",
    "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_en": "What position does Antti-Jussi Niemi play?",
    "question_th": "อันติ-จุสซี่ นิเอมิ เล่นตำแหน่งอะไร?",
    "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_en": "What position does that draft pick play from Lake Superior State University (NCAA)?",
    "question_th": "ร่างนั้นเลือกเล่นตำแหน่งใดจาก 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_en": "What is the nationality of Christian Lefebvre?",
    "question_th": "คริสเตียน เลอเฟบฟวร์มีสัญชาติอะไร?",
    "context": "CREATE TABLE table_2840500_4 (nationality VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(nationality) FROM table_2840500_8 WHERE player = \"Ryan Mckie\"",
    "question_en": "Name the number of nationalities for ryan mckie",
    "question_th": "ตั้งชื่อจำนวนสัญชาติของ Ryan Mckie",
    "context": "CREATE TABLE table_2840500_8 (nationality VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT pick FROM table_2840500_8 WHERE player = \"Matthew Scorsune\"",
    "question_en": "Name the pick for matthew scorsune",
    "question_th": "ตั้งชื่อตัวเลือกสำหรับ แมทธิว สกอร์ซูเน่",
    "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_en": "Name the college for andrej podkonicky",
    "question_th": "ตั้งชื่อวิทยาลัยตามชื่อ 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_en": "Name the most pick for evgeny korolev",
    "question_th": "ตั้งชื่อตัวเลือกมากที่สุดสำหรับ 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_en": "Who was the coastal Carolina head coach in 2013?",
    "question_th": "ใครคือหัวหน้าโค้ชชายฝั่งแคโรไลนาในปี 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_en": "How many head coaches did Kent state golden flashes have?",
    "question_th": "เคนท์มีเฮดโค้ชกี่คน?",
    "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_en": "What was the result when then opponents conference was Mac (east)?",
    "question_th": "ผลเป็นอย่างไรเมื่อการประชุมของฝ่ายตรงข้ามในตอนนั้นคือแม็ค (ตะวันออก)?",
    "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_en": "What nationality is the draft pick player going to Minnesota North Stars?",
    "question_th": "ผู้เล่นร่างตัวเลือกจะไป 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_en": "What daft pick number is the player coming from Regina Pats (WHL)?",
    "question_th": "ผู้เล่นที่มาจาก 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_en": "What player is draft pick 17?",
    "question_th": "ผู้เล่นคนไหนคือ 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_en": "What college team did draft pick 18 come from?",
    "question_th": "Draft Pick 18 มาจากทีมวิทยาลัยใด",
    "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_en": "How many times is  a to par listed when the player is phil mickelson?",
    "question_th": "มีการระบุถึงพาร์กี่ครั้งเมื่อผู้เล่นคือฟิล มิคเคลสัน?",
    "context": "CREATE TABLE table_28498999_5 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_28498999_5 WHERE player = \"Matt Kuchar\"",
    "question_en": "What is the score when the player is Matt Kuchar?",
    "question_th": "เมื่อผู้เล่นคือ แมตต์ คูชาร์ แต้มเท่าไหร่?",
    "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_en": "What is the player listed when the score is 68-70-68-69=275",
    "question_th": "รายชื่อผู้เล่นคืออะไรเมื่อคะแนนคือ 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_en": "What is the # listed when the score is 70-69-69-70=278?",
    "question_th": "# อยู่ในรายการอะไรเมื่อคะแนนคือ 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_en": "To which organziation does the  winnipeg jets belong to?",
    "question_th": "เครื่องบินไอพ่นวินนิเพกเป็นขององค์กรใด?",
    "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_en": "What position does allister brown play.",
    "question_th": "อัลลิสเตอร์ บราวน์เล่นตำแหน่งอะไร",
    "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_en": "What selection was the springfield olympics (nejhl)?",
    "question_th": "โอลิมปิกสปริงฟิลด์ (เนจห์ล) เลือกอะไร?",
    "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äs IF (Sweden)\"",
    "question_en": "List the players for team brynäs if (sweden).",
    "question_th": "รายชื่อนักเตะทีม brynäs if (สวีเดน)",
    "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_en": "Which draft number did the new jersey devils get?",
    "question_th": "นิวเจอร์ซีย์ เดวิลส์ ได้ดราฟท์หมายเลขไหน?",
    "context": "CREATE TABLE table_2850912_12 (pick__number VARCHAR, nhl_team VARCHAR)"
  },
  {
    "answer": "SELECT cuts_made FROM table_28540609_2 WHERE earnings__€_ = 210408",
    "question_en": "How many cuts did the player who earned 210408 Euro make?",
    "question_th": "ผู้เล่นที่ได้รับ 210408 Euro ถูกตัดไปกี่ครั้ง?",
    "context": "CREATE TABLE table_28540609_2 (cuts_made VARCHAR, earnings__€_ VARCHAR)"
  },
  {
    "answer": "SELECT cuts_made FROM table_28540609_2 WHERE player = \"Gary Clark\"",
    "question_en": "How many cuts did Gary Clark make?",
    "question_th": "Gary Clark ตัดไปกี่ครั้ง?",
    "context": "CREATE TABLE table_28540609_2 (cuts_made VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_28540609_2 WHERE starts = 26",
    "question_en": "Which player made exactly 26 starts?",
    "question_th": "ผู้เล่นคนไหนที่ออกสตาร์ทได้ 26 นัดพอดี?",
    "context": "CREATE TABLE table_28540609_2 (player VARCHAR, starts VARCHAR)"
  },
  {
    "answer": "SELECT cuts_made FROM table_28540609_2 WHERE player = \"Bernd Wiesberger\"",
    "question_en": "How many cuts did Bernd Wiesberger make?",
    "question_th": "Bernd Wiesberger ตัดไปกี่ครั้ง?",
    "context": "CREATE TABLE table_28540609_2 (cuts_made VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(earnings__) AS €_ FROM table_28540609_2 WHERE best_finish = \"T38\"",
    "question_en": "How many earnings values are associated with players who had a best finish of T38?",
    "question_th": "มูลค่ารายได้ที่เกี่ยวข้องกับผู้เล่นที่จบ 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__£m_ = \"0.42\"",
    "question_en": "How many items appear in the dividend per share when the turnover is 0.42?",
    "question_th": "เงินปันผลต่อหุ้นปรากฏกี่รายการเมื่อผลประกอบการเท่ากับ 0.42?",
    "context": "CREATE TABLE table_2856898_1 (dividend_per_share__p_ VARCHAR, turnover__£m_ VARCHAR)"
  },
  {
    "answer": "SELECT profit_before_tax__£m_ FROM table_2856898_1 WHERE turnover__£m_ = \"431.06\"",
    "question_en": "What was the profit before tax when the turnover was 431.06?",
    "question_th": "กำไรก่อนหักภาษีเมื่อมูลค่าการซื้อขายเท่ากับ 431.06 เป็นเท่าใด",
    "context": "CREATE TABLE table_2856898_1 (profit_before_tax__£m_ VARCHAR, turnover__£m_ VARCHAR)"
  },
  {
    "answer": "SELECT turnover__£m_ FROM table_2856898_1 WHERE profit_before_tax__£m_ = \"29.47\"",
    "question_en": "What was the turnover when the profit before tax was 29.47?",
    "question_th": "มูลค่าการซื้อขายเมื่อกำไรก่อนหักภาษีเท่ากับ 29.47 เป็นเท่าใด",
    "context": "CREATE TABLE table_2856898_1 (turnover__£m_ VARCHAR, profit_before_tax__£m_ VARCHAR)"
  },
  {
    "answer": "SELECT singer_part_number FROM table_28652521_1 WHERE storage_case = \"green plastic box\"",
    "question_en": "What's the singer part number of the buttonholer whose storage case is a green plastic box?",
    "question_th": "นักร้องหมายเลขชิ้นส่วนของรังดุมที่มีกล่องพลาสติกสีเขียวคืออะไร?",
    "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_en": "What's the description of the buttonholer whose singer part number is 121795 kit 121908 buttonholer?",
    "question_th": "คำอธิบายของรังดุมที่มีหมายเลขชิ้นส่วนนักร้องคือ 121795 ชุด 121908 รังดุมคืออะไร",
    "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_en": "What are all the different descriptions for the buttonholer with cardboard box for storage and a low shank type?",
    "question_th": "อะไรคือคำอธิบายที่แตกต่างกันทั้งหมดสำหรับรังดุมพร้อมกล่องกระดาษแข็งสำหรับจัดเก็บและแบบก้านต่ำ?",
    "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_en": "What's the storage case of the buttonholer described as ivory and red metal?",
    "question_th": "กล่องใส่รังดุมที่อธิบายว่าเป็นงาช้างและโลหะสีแดงคืออะไร",
    "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_en": "What's the shank type of the buttonholer with red plastic box as storage case?",
    "question_th": "เครื่องทำรังดุมมีกล่องพลาสติกสีแดงเป็นกล่องเก็บของแบบก้านอะไร?",
    "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_en": "Who wrote the episode with 7.52 million US viewers?",
    "question_th": "ใครเป็นคนเขียนตอนนี้ที่มีผู้ชม 7.52 ล้านคนในสหรัฐฯ?",
    "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_en": "What are the titles of episodes numbered 19?",
    "question_th": "ตอนที่ 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_en": "Who wrote the episode with 9.81 million US viewers?",
    "question_th": "ใครเป็นคนเขียนตอนนี้โดยมีผู้ชม 9.81 ล้านคนในสหรัฐฯ?",
    "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_en": "How many tracks have the title let love be your energy?",
    "question_th": "มีกี่เพลงที่ให้ความรักเป็นพลังของคุณ?",
    "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_en": "Who arranged song(s) with tom lyle on the vocal percussion?",
    "question_th": "ใครเป็นคนเรียบเรียงเพลงร่วมกับทอม ไลล์ ในเรื่องเครื่องเคาะจังหวะ?",
    "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_en": "Who were the original artist(s) for track number 6?",
    "question_th": "ศิลปินดั้งเดิมของเพลงหมายเลข 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_en": "Who were the original artist(s) on harder to breathe?",
    "question_th": "ใครคือศิลปินดั้งเดิมที่หายใจลำบาก?",
    "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_en": "Who were the original artist(s) when jack stamp arranged?",
    "question_th": "ใครคือศิลปินดั้งเดิมเมื่อแจ็คสแตมป์เรียบเรียง?",
    "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_en": "Who is the artist where the vocal percussionist is Benjamin Holder?",
    "question_th": "ศิลปินคนไหนที่นักร้องนำคือ เบนจามิน โฮลเดอร์?",
    "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_en": "Who is the vocal percussionist for Sex Bomb?",
    "question_th": "ใครคือมือเพอร์คัสชั่นของ 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_en": "Who is the original artist of \"Use Somebody\"?",
    "question_th": "ใครคือศิลปินต้นฉบับของ \"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_en": "Who is the arranger for \"I KIssed a Girl\"?",
    "question_th": "ใครเป็นผู้เรียบเรียงเพลง \"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_en": "Who is the percussionist for The Coral?",
    "question_th": "ใครคือมือเพอร์คัสชั่นของ 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_en": "What is the charity for the celebrity with an occupation title of actor and singer?",
    "question_th": "การกุศลสำหรับคนดังที่มีตำแหน่งอาชีพนักแสดงและนักร้องคืออะไร?",
    "context": "CREATE TABLE table_28730873_2 (charity VARCHAR, occupation VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_28760804_1 WHERE directed_by = \"Alex Reid\"",
    "question_en": "What is the title of the episode Alex Reid directed?",
    "question_th": "ตอนที่ Alex Reid กำกับมีชื่อว่าอะไร?",
    "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_en": "Who wrote the episode that got 5.95 million U.S. viewers?",
    "question_th": "ใครเป็นคนเขียนตอนที่มีผู้ชม 5.95 ล้านคนในสหรัฐฯ?",
    "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_en": "How many million U.S. viewers saw the episode with production code 3X5710?",
    "question_th": "ผู้ชมในสหรัฐฯ จำนวนกี่ล้านคนที่เห็นตอนที่มีรหัสการผลิต 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_en": "How many directors got 6.79 million U.S. viewers from their episodes?",
    "question_th": "มีผู้กำกับกี่คนที่มีผู้ชมในสหรัฐอเมริกา 6.79 ล้านคนจากตอนของพวกเขา?",
    "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_en": "Who had the most points in the game on March 7?",
    "question_th": "ใครมีแต้มมากที่สุดในเกมวันที่ 7 มีนาคม?",
    "context": "CREATE TABLE table_28768469_9 (high_points VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_28768469_9 WHERE team = \"Washington\"",
    "question_en": "What was the record after the game against Washington?",
    "question_th": "บันทึกหลังเกมกับวอชิงตันเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_28768469_9 (record VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT highest_score FROM table_28846752_12 WHERE average = \"30.00\"",
    "question_en": "What is the highest score for the player with average of 30.00?",
    "question_th": "คะแนนสูงสุดสำหรับผู้เล่นที่มีค่าเฉลี่ย 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_en": "How many innings for the player with an average of 22.61?",
    "question_th": "ผู้เล่นที่มีค่าเฉลี่ย 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_en": "What is the strike rate for the player with an average of 32.78?",
    "question_th": "อัตราการนัดหยุดงานสำหรับผู้เล่นที่มีค่าเฉลี่ย 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_en": "What is the name of the team when the stadium is listed as Edward Jones Dome?",
    "question_th": "ชื่อของทีมเมื่อสนามกีฬาอยู่ในชื่อ 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_en": "What is the capacity percentage when the total attendance is 509940?",
    "question_th": "เปอร์เซ็นต์ของกำลังการผลิตเมื่อจำนวนการเข้างานทั้งหมดคือ 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_en": "What is the name of the stadium when the capacity percentage is 83.9%",
    "question_th": "สนามชื่ออะไรในเมื่อเปอร์เซ็นต์ความจุอยู่ที่ 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_en": "How many home games are listed when the average attendance is 79475?",
    "question_th": "มีเกมเหย้ากี่เกมที่มีผู้ชมเฉลี่ย 79,475 นัด?",
    "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_en": "How many average attendance has a capacity percentage of 96.5%",
    "question_th": "จำนวนผู้เข้าอบรมโดยเฉลี่ยมีความจุร้อยละ 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_en": "What is the number listed in home games when the team is Seattle Seahawks?",
    "question_th": "หมายเลขที่ระบุในเกมเหย้าเมื่อทีมคือซีแอตเทิล ซีฮอว์กส์คือหมายเลขใด?",
    "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_en": "How many teams had a 99.3% capacity rating?",
    "question_th": "มีกี่ทีมที่มีคะแนนความสามารถ 99.3%",
    "context": "CREATE TABLE table_28884858_2 (team VARCHAR, capacity_percentage VARCHAR)"
  },
  {
    "answer": "SELECT capacity_percentage FROM table_28884858_2 WHERE team = \"Denver Broncos\"",
    "question_en": "What was the capacity for the Denver Broncos?",
    "question_th": "ความจุของ 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_en": "What was average attendance when total attendance was 541380?",
    "question_th": "ผู้เข้าร่วมโดยเฉลี่ยคือเท่าใดเมื่อมีผู้เข้าร่วมทั้งหมด 541,380 คน",
    "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_en": "What team had a capacity of 102.3%?",
    "question_th": "ทีมไหนมีความจุ 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_en": "What was the total attendance of the New York Giants?",
    "question_th": "จำนวนผู้เข้าร่วมทั้งหมดของ 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_en": "What was the capacity percentage when attendance was 71080?",
    "question_th": "เปอร์เซ็นต์ความจุเมื่อผู้เข้าร่วมคือ 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_en": "What is the postal code when the administrative capital in Bori?",
    "question_th": "รหัสไปรษณีย์เมื่อเป็นเมืองหลวงในบอรีคืออะไร?",
    "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_en": "What is the 2006 censusn population when is the administrative capital is Eleme?",
    "question_th": "การสำรวจสำมะโนประชากร พ.ศ. 2549 เป็นเท่าใด เมื่อใดที่เมืองหลวงคือ 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_en": "What is the 2006 census population when the area is 159?",
    "question_th": "การสำรวจสำมะโนประชากร พ.ศ. 2549 เป็นเท่าใดเมื่อมีพื้นที่ 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_en": "What is the area when the Iga name is Ahoada East?",
    "question_th": "บริเวณใดที่ชื่ออิงะคืออาโฮดะตะวันออก?",
    "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_en": "What NHL team picked richard borgo?",
    "question_th": "ทีม NHL คนใดเลือก 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_en": "What is the nationality of the draft pick player who plays centre position and is going to Calgary Flames?",
    "question_th": "ผู้เล่นดราฟต์พิคที่เล่นตำแหน่งเซ็นเตอร์และกำลังจะย้ายไปคัลการี เฟลมส์มีสัญชาติอะไร?",
    "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_en": "What player came from Cornell University (NCAA)?",
    "question_th": "ผู้เล่นคนไหนที่มาจาก 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_en": "How many draft picks is player byron dafoe?",
    "question_th": "ผู้เล่นไบรอน เดโฟเลือกร่างได้กี่คน?",
    "context": "CREATE TABLE table_2897457_2 (pick__number VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_2897457_2 WHERE nhl_team = \"Washington Capitals\"",
    "question_en": "What is the nationality of the player picked to go to Washington Capitals?",
    "question_th": "ผู้เล่นที่เลือกไป 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_en": "What player attended avon old farms (ushs-ct)?",
    "question_th": "ผู้เล่นคนไหนที่เข้าร่วม 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_en": "What pick number was marc deschamps?",
    "question_th": "มาร์ค เดชองส์ เลือกเบอร์อะไร?",
    "context": "CREATE TABLE table_2897457_5 (pick__number VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_2897457_5 WHERE player = \"Keith Carney\"",
    "question_en": "What nationality is keith carney?",
    "question_th": "คีธ คาร์นีย์ สัญชาติอะไร",
    "context": "CREATE TABLE table_2897457_5 (nationality VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_2897457_5 WHERE pick__number = 94",
    "question_en": "What position did the #94 pick play?",
    "question_th": "#94เลือกเล่นตำแหน่งไหน?",
    "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_en": "Which episode number saw 1.312 million U.S. Wviewers?",
    "question_th": "หมายเลขตอนใดที่มีผู้ชม Wviewers ในสหรัฐฯ ถึง 1.312 ล้านคน?",
    "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_en": "What is the title of the episode directed by Rich Correll and written by Dennis Rinsler?",
    "question_th": "ชื่อเรื่องของตอนที่กำกับโดย Rich Correll และเขียนโดย 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_en": "What number episode in the season had a production code of 334?",
    "question_th": "หมายเลขตอนใดของซีซั่นที่มีรหัสการผลิต 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_en": "What was the production code of the episode directed by Rondell Sheridan? ",
    "question_th": " รหัสการผลิตของตอนที่กำกับโดย 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_en": "in how many dates the opponen in the final was rushmi chakravarthi",
    "question_th": "ฝ่ายตรงข้ามในรอบชิงชนะเลิศคือ 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_en": "what is the name of the tournament where outcome is runner-up",
    "question_th": "การแข่งขันชื่ออะไรซึ่งผลการแข่งขันคือรองชนะเลิศ",
    "context": "CREATE TABLE table_29127804_3 (tournament VARCHAR, outcome VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_29127804_3 WHERE location = \"Dehradun , Uttarakhand, India\"",
    "question_en": "what is the material of the surface in the dehradun , uttarakhand, india location",
    "question_th": "วัสดุของพื้นผิวในเมืองเดห์ราดูน รัฐอุตตราขั ณ ฑ์ ประเทศอินเดีย เป็นวัสดุอะไร",
    "context": "CREATE TABLE table_29127804_3 (surface VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_29127804_3 WHERE location = \"Noida , Uttar Pradesh, India\"",
    "question_en": "what is the material of the surface in noida , uttar pradesh, india",
    "question_th": "วัสดุของพื้นผิวในเมืองนอยดา รัฐอุตตรประเทศ ประเทศอินเดีย เป็นวัสดุอะไร",
    "context": "CREATE TABLE table_29127804_3 (surface VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_29127804_3 WHERE location = \"Bangalore , Karnataka, India\"",
    "question_en": "what is the date of the game played in the bangalore , karnataka, india location",
    "question_th": "วันที่เล่นเกมที่บังกาลอร์ รัฐกรณาฏกะ ประเทศอินเดีย คือวันที่เท่าไร",
    "context": "CREATE TABLE table_29127804_3 (date VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT destination FROM table_29202276_2 WHERE train_number = 16526",
    "question_en": "What is the destination when the train number is 16526?",
    "question_th": "ปลายทางเมื่อรถไฟหมายเลข 16526 คืออะไร?",
    "context": "CREATE TABLE table_29202276_2 (destination VARCHAR, train_number VARCHAR)"
  },
  {
    "answer": "SELECT origin FROM table_29202276_2 WHERE destination = \"Mumbai\"",
    "question_en": "What is the origin when the destination is Mumbai?",
    "question_th": "ต้นทางเมื่อปลายทางคือมุมไบคืออะไร?",
    "context": "CREATE TABLE table_29202276_2 (origin VARCHAR, destination VARCHAR)"
  },
  {
    "answer": "SELECT route_via FROM table_29202276_2 WHERE destination = \"Madurai\"",
    "question_en": "What is the route/via when the destination is listed as Madurai?",
    "question_th": "เส้นทาง/ผ่านคืออะไรเมื่อปลายทางแสดงเป็น มทุไร?",
    "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_en": "What is the route/via when the train name is Parasuram Express?",
    "question_th": "รถไฟสาย 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_en": "What is the train number when the time is 10:38?",
    "question_th": "รถไฟขบวนไหนออกเวลา 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_en": "What is the Thurs 2 June time for the rider with a Fri 3 June time of 17' 36.58 128.554mph?",
    "question_th": "เวลาวันพฤหัสบดีที่ 2 มิถุนายนสำหรับผู้ขับขี่โดยวันศุกร์ที่ 3 มิถุนายน เวลา 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_en": "What is the Mon 30 May time for the rider whose Fri 3 June time was 17' 13.46 131.431mph?",
    "question_th": "เวลาวันจันทร์ที่ 30 พฤษภาคมสำหรับผู้ขับขี่ที่มีวันศุกร์ที่ 3 มิถุนายนคือเวลา 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_en": "What is the Fri 3 June time for the rider whose Tues 31 May time was 19' 18.80 117.215mph?",
    "question_th": "เวลาวันศุกร์ที่ 3 มิถุนายนของผู้ขับขี่ที่มีวันอังคารที่ 31 พฤษภาคมคือเวลา 19' 18.80 117.215 ไมล์ต่อชั่วโมง",
    "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_en": "What is the Fri 3 June time for the rider with a Weds 1 June time of 18' 22.66 123.182mph?",
    "question_th": "เวลาวันศุกร์ที่ 3 มิถุนายนสำหรับผู้ขับขี่ที่มีวันพุธที่ 1 มิถุนายน เวลา 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_en": "What is the rank of the rider whose Tues 31 May time was 19' 02.34 118.903mph?",
    "question_th": "นักบิดที่มีเวลาวันอังคารที่ 31 พฤษภาคมอยู่ที่อันดับเท่าไร 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_en": "What is the number of riders that had a Tues 31 May time of 18' 55.91 124.236mph?",
    "question_th": "จำนวนนักแข่งที่ทำเวลาวันอังคารที่ 31 พฤษภาคมที่ 18' 55.91 124.236 ไมล์ต่อชั่วโมงคือเท่าใด",
    "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_en": "Who was the rider with a Fri 3 June time of 18' 19.68 123.516mph?",
    "question_th": "ใครคือผู้ขับขี่ในวันศุกร์ที่ 3 มิถุนายน เวลา 18' 19.68 123.516 ไมล์ต่อชั่วโมง",
    "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_en": "how many matches did the player that played 23 matches win",
    "question_th": "ผู้เล่นที่เล่น 23 นัดชนะกี่นัด",
    "context": "CREATE TABLE table_29302711_12 (matches_won INTEGER, matches_played VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(country) FROM table_29302711_12 WHERE points = 21",
    "question_en": "how many countries had 21 points",
    "question_th": "มีกี่ประเทศมี 21 คะแนน",
    "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_en": "how much prize money (in USD) did bob lutz win",
    "question_th": "Bob lutz ชนะเงินรางวัลจำนวนเท่าใด (เป็น USD)",
    "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_en": "how many matches did colin dibley win",
    "question_th": "คอลิน ดิบลีย์ชนะไปกี่นัด",
    "context": "CREATE TABLE table_29302711_12 (matches_won VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_29414946_3 WHERE replaced_by = \"Renato Gaúcho\"",
    "question_en": "What team hired Renato Gaúcho?",
    "question_th": "ทีมใดจ้าง Renato Gaúcho?",
    "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_en": "How many times did Silas leave as a team manager?",
    "question_th": "สิลาสลาออกจากตำแหน่งผู้จัดการทีมกี่ครั้ง?",
    "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_en": "Why did Geninho leave as manager?",
    "question_th": "เหตุใดเกนินโญ่จึงลาออกจากตำแหน่งผู้จัดการทีม?",
    "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_en": "Who was the new Santos manager?",
    "question_th": "ผู้จัดการทีมซานโตสคนใหม่คือใคร?",
    "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_en": "Who was replaced as manager on June 20?",
    "question_th": "ใครถูกแทนที่ในฐานะผู้จัดการในวันที่ 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_en": "Who is the s color commentator when the pregame host is jon sciambi?",
    "question_th": "ใครคือผู้บรรยายสี ในเมื่อพิธีกรพรีเกมคือ จอน สเซียมบี?",
    "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_en": "Who is the pregame host when the pregame analysts is  Dave Campbell and the year is 2001?",
    "question_th": "ใครคือพิธีกรพรีเกม ในเมื่อนักวิเคราะห์พรีเกมคือ เดฟ แคมป์เบลล์ และปี 2001 คือปี 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_en": "How many networks are listed when the year is 2008?",
    "question_th": "มีกี่เครือข่ายที่ระบุไว้ในปี 2551?",
    "context": "CREATE TABLE table_2941848_10 (network VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT original_air_date FROM table_29436059_1 WHERE production_code = 319",
    "question_en": "What is the original air date of the episode with production code is 319?",
    "question_th": "วันที่ออกอากาศเดิมของตอนที่มีรหัสการผลิตคือ 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_en": "What is the title of episode 10?",
    "question_th": "ตอนที่ 10 ชื่ออะไรคะ?",
    "context": "CREATE TABLE table_29436059_1 (title VARCHAR, no_in_season VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_29483890_1 WHERE goals = 57",
    "question_en": "What was the position of the player with 57 goals?",
    "question_th": "นักเตะตำแหน่งไหนที่ทำได้ 57 ประตู?",
    "context": "CREATE TABLE table_29483890_1 (position VARCHAR, goals VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_2950964_1 WHERE _number = \"7\"",
    "question_en": "What is the title of book number 7?",
    "question_th": "เล่มที่ 7 ชื่ออะไรคะ?",
    "context": "CREATE TABLE table_2950964_1 (title VARCHAR, _number VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_2950964_1 WHERE _number = \"8\"",
    "question_en": "What is the title of book number 8?",
    "question_th": "เล่มที่ 8 ชื่ออะไรคะ?",
    "context": "CREATE TABLE table_2950964_1 (title VARCHAR, _number VARCHAR)"
  },
  {
    "answer": "SELECT published FROM table_2950964_1 WHERE audiobook_narrator = \"Michael Maloney\"",
    "question_en": "What is the publication date of the book that is narrated by Michael Maloney?",
    "question_th": "หนังสือที่บรรยายโดย 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_en": "What is the title of ISBN 1-84990-243-7?",
    "question_th": "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_en": "Who are the featuring companions of number 3?",
    "question_th": "ใครคือเพื่อนร่วมแสดงของหมายเลข 3?",
    "context": "CREATE TABLE table_2950964_1 (featuring_companion VARCHAR, _number VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_29535057_4 WHERE location = \"Cassell Coliseum • Blacksburg, VA\"",
    "question_en": "What was the time of the games that took place at the cassell coliseum • blacksburg, va?",
    "question_th": "ช่วงเวลาของเกมที่เกิดขึ้นที่โคลีเซียมคาสเซลล์ • แบล็กส์เบิร์ก รัฐเวอร์จิเนีย คืออะไร?",
    "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_en": "How many challenge leaders were there of the games won by virginia (87-79)?",
    "question_th": "มีผู้นำการท้าทายกี่คนในเกมที่เวอร์จิเนียชนะ (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_en": "Who were the challenge leaders of the games won by boston college (88-76)?",
    "question_th": "ใครคือผู้นำการท้าทายของเกมที่วิทยาลัยบอสตันชนะ (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_en": "Where did the games that had Wake Forest as Acc Team take place?",
    "question_th": "เกมที่มี Wake Forest ในฐานะทีม Acc เกิดขึ้นที่ไหน?",
    "context": "CREATE TABLE table_29535057_4 (location VARCHAR, acc_team VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_29535057_4 WHERE big_ten_team = \"Wisconsin\"",
    "question_en": "Where did the games that had Wisconsin as big ten team take place?",
    "question_th": "เกมที่มีวิสคอนซินเป็นทีมใหญ่สิบครั้งเกิดขึ้นที่ไหน?",
    "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_en": "Who had the most assists and how many did they have on January 5?",
    "question_th": "ใครแอสซิสต์ได้มากที่สุดและมีกี่แอสซิสต์ในวันที่ 5 มกราคม?",
    "context": "CREATE TABLE table_29556461_7 (high_assists VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_29556461_7 WHERE date = \"January 19\"",
    "question_en": "What team was Temple playing on January 19?",
    "question_th": "เทมเพิลลงเล่นให้กับทีมใดในวันที่ 19 มกราคม?",
    "context": "CREATE TABLE table_29556461_7 (team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(colors) FROM table_29612224_1 WHERE location = \"Maroa, Illinois\"",
    "question_en": "How many different combinations of team colors are there in all the schools in Maroa, Illinois?",
    "question_th": "โรงเรียนทุกแห่งในเมืองมารัว รัฐอิลลินอยส์ มีสีของทีมผสมกันทั้งหมดกี่สี",
    "context": "CREATE TABLE table_29612224_1 (colors VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT school_website FROM table_29612224_1 WHERE location = \"Macon, Illinois\"",
    "question_en": "What's the website of the school in Macon, Illinois?",
    "question_th": "เว็บไซต์ของโรงเรียนใน 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_en": "What are the team colors from Tolono, Illinois?",
    "question_th": "ทีมจากเมืองโตโลโน รัฐอิลลินอยส์มีสีอะไร",
    "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_en": "What's the name of the city or town of the school that operates the http://www.mfschools.org/high/ website?",
    "question_th": "ชื่อเมืองของโรงเรียนที่ดำเนินการเว็บไซต์ http://www.mfschools.org/high/ คืออะไร",
    "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_en": "Who had the fastest lap(s) when stefan wilson had the pole?",
    "question_th": "ใครมีรอบเร็วที่สุดเมื่อ Stefan Wilson ครองโพล?",
    "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_en": "Who had the fastest lap(s) when josef newgarden led the most laps at edmonton?",
    "question_th": "ใครมีรอบเร็วที่สุดเมื่อโจเซฟ นิวการ์เดนขึ้นนำรอบมากที่สุดที่เอดมันตัน",
    "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_en": "Who had the pole(s) when esteban guerrieri led the most laps round 8a and josef newgarden had the fastest lap?",
    "question_th": "ใครเป็นผู้ครองโพลเมื่อ Esteban Guerrieri ขึ้นนำในรอบ 8a มากที่สุด และ Josef Newgarden มีรอบที่เร็วที่สุด?",
    "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_en": "Who led the most laps when brandon wagner had the fastest lap?",
    "question_th": "ใครเป็นผู้นำรอบมากที่สุดเมื่อแบรนดอน วากเนอร์มีรอบเร็วที่สุด?",
    "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_en": "What race did josef newgarden have the fastest lap and lead the most laps?",
    "question_th": "โจเซฟ นิวการ์เดน มีรอบเร็วที่สุดและขึ้นนำในการแข่งขันรอบใดมากที่สุด",
    "context": "CREATE TABLE table_29690363_3 (race VARCHAR, fastest_lap VARCHAR, most_laps_led VARCHAR)"
  },
  {
    "answer": "SELECT MIN(shutouts) FROM table_29743928_4",
    "question_en": "What is the lowest overall amount of shutouts?",
    "question_th": "จำนวนการปิดระบบโดยรวมต่ำสุดคือเท่าใด?",
    "context": "CREATE TABLE table_29743928_4 (shutouts INTEGER)"
  },
  {
    "answer": "SELECT years FROM table_29743928_4 WHERE name = \"Chase Harrison Category:Articles with hCards\"",
    "question_en": "When chase harrison category:articles with hcards is the name what is the year?",
    "question_th": "เมื่อ Chase Harrison Category:บทความที่มี hcards มีชื่อว่าปีอะไร?",
    "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_en": "When  chris konopka category:articles with hcards is the name what is the year?",
    "question_th": "เมื่อ chris konopka category:articles with hcards เป็นชื่อปีอะไร",
    "context": "CREATE TABLE table_29743928_4 (years VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT games FROM table_29743928_4 WHERE years = \"2010\"",
    "question_en": "When 2010 is the year what is the game?",
    "question_th": "เมื่อถึงปี 2010 เกมคืออะไร?",
    "context": "CREATE TABLE table_29743928_4 (games VARCHAR, years VARCHAR)"
  },
  {
    "answer": "SELECT song_choice FROM table_29756040_1 WHERE week__number = \"Audition\"",
    "question_en": "Which song was chosen during the audition week?",
    "question_th": "เพลงใดที่ถูกเลือกในช่วงสัปดาห์ออดิชั่น?",
    "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_en": "What are all the order #s from the week \"top 6\"?",
    "question_th": "คำสั่งซื้อทั้งหมด #s จากสัปดาห์ \"อันดับ 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_en": "Which artists have order # 1?",
    "question_th": "ศิลปินคนไหนมีออเดอร์ #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_en": "Which artists have order number 6?",
    "question_th": "ศิลปินคนไหนมีลำดับที่ 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_en": "what is the name of the episode directed by james bobin",
    "question_th": "ตอนที่กำกับโดยเจมส์ โบบินชื่ออะไร",
    "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_en": "who directed the episode that have 0.25 million u.s viewers",
    "question_th": "ผู้กำกับตอนที่มีผู้ชม 0.25 ล้านคน",
    "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_en": "what is the official rating 16-39 for the episode with  a 16-39 share of 22,77%?",
    "question_th": "เรตติ้งอย่างเป็นทางการ 16-39 สำหรับตอนที่มีส่วนแบ่ง 16-39 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_en": "What university was Kevan George affiliated with?",
    "question_th": "Kevan George สังกัดมหาวิทยาลัยใด",
    "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_en": "What pick number did Real Salt Lake get?",
    "question_th": "รีล ซอลต์ เลค ได้หมายเลขเลือกอะไร?",
    "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_en": "What pick number is Kevan George?",
    "question_th": "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_en": "Who was pick number 34?",
    "question_th": "ใครเป็นคนเลือกหมายเลข 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_en": "What MLS team picked Babayele Sodade?",
    "question_th": "ทีม MLS ทีมใดเลือก 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 единица\"",
    "question_en": "What is the international use of the 1 единица flag?",
    "question_th": "ธง 1 единица นำไปใช้ในระดับสากลอย่างไร",
    "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_en": "What is the name of the flag that means decimal digit 2?",
    "question_th": "ธงที่หมายถึงเลขทศนิยม 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_en": "How many different descriptions are there for the flag that means decimal digit 2?",
    "question_th": "มีคำอธิบายที่แตกต่างกันกี่แบบสำหรับธงที่หมายถึงเลขทศนิยม 2",
    "context": "CREATE TABLE table_29997112_3 (description VARCHAR, meaning VARCHAR)"
  },
  {
    "answer": "SELECT meaning FROM table_29997112_3 WHERE transliteration = \"dvojka\"",
    "question_en": "What are the meanings of the flag whose name transliterates to dvojka?",
    "question_th": "ธงที่มีชื่อทับศัพท์ว่า dvojka มีความหมายว่าอย่างไร?",
    "context": "CREATE TABLE table_29997112_3 (meaning VARCHAR, transliteration VARCHAR)"
  },
  {
    "answer": "SELECT meaning FROM table_29997112_3 WHERE transliteration = \"semërka\"",
    "question_en": "What are the meanings of the flag whose name transliterates to semërka?",
    "question_th": "ธงที่มีชื่อทับศัพท์เป็นภาษาเซมาร์กามีความหมายว่าอย่างไร?",
    "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_en": "How many 3rd runner up values does Turkey have?",
    "question_th": "ตุรกีมีรองอันดับ 3 กี่คน?",
    "context": "CREATE TABLE table_30007801_1 (country_territory VARCHAR)"
  },
  {
    "answer": "SELECT MIN(1 AS st_runner_up) FROM table_30007801_1",
    "question_en": "What is the smallest 1st runner up value?",
    "question_th": "รองชนะเลิศอันดับ 1 มูลค่าน้อยที่สุดคือเท่าไร?",
    "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_en": "What is the number of 1st runner up values for Jamaica?",
    "question_th": "รองชนะเลิศอันดับ 1 ของจาเมกาคือเลขเท่าไหร่?",
    "context": "CREATE TABLE table_30007801_1 (country_territory VARCHAR)"
  },
  {
    "answer": "SELECT us_air_date FROM table_30012404_4 WHERE directed_by = \"Ken Girotti\"",
    "question_en": "What is the US air date when the director is ken girotti?",
    "question_th": "ผู้กำกับคือ 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_en": "What is the canadian air date when the US air date is 24 august 2012?",
    "question_th": "วันที่ออกอากาศของแคนาดาคือวันที่ 24 สิงหาคม 2555 ในสหรัฐฯ คือเมื่อใด",
    "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_en": "What is the series # when the US air date is 20 July 2012?",
    "question_th": "ซีรีย์ # อะไรจะออกอากาศวันที่ 20 กรกฎาคม 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_en": "How many games had they won or lost in a row on May 9?",
    "question_th": "พวกเขาชนะหรือแพ้ติดต่อกันกี่เกมในวันที่ 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_en": "What is every entry for Tuesday August 23 when Thursday August 25 is 24' 31.87 92.282mph?",
    "question_th": "ทุกรายการสำหรับวันอังคารที่ 23 สิงหาคมเมื่อวันพฤหัสบดีที่ 25 สิงหาคมคือ 24' 31.87 92.282 ไมล์ต่อชั่วโมงคืออะไร",
    "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_en": "What is every value on Thursday August 25 for rank 3?",
    "question_th": "ทุกค่าในวันพฤหัสบดีที่ 25 ส.ค. สำหรับอันดับ 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_en": "What is every entry on Monday August 22 when the entry for Wednesday August 24 is 22' 50.05 99.141mph?",
    "question_th": "ทุกรายการในวันจันทร์ที่ 22 สิงหาคมจะเป็นอย่างไร เมื่อรายการวันพุธที่ 24 สิงหาคมคือ 22' 50.05 99.141 ไมล์ต่อชั่วโมง",
    "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_en": "What is every entry for Friday August 26 if the entry for Monday August 22 is 32' 25.72 69.809mph?",
    "question_th": "ทุกรายการสำหรับวันศุกร์ที่ 26 สิงหาคมจะเป็นอย่างไร หากรายการสำหรับวันจันทร์ที่ 22 สิงหาคมคือ 32' 25.72 69.809 ไมล์ต่อชั่วโมง",
    "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_en": "How many nationalities are there for the 2011 apertura?",
    "question_th": "มีกี่เชื้อชาติสำหรับปี 2554?",
    "context": "CREATE TABLE table_30083499_1 (nationality VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_30083499_1 WHERE tournament = \"2012 Clausura\"",
    "question_en": "Which team was in the 2012 clausura tournament?",
    "question_th": "ทีมใดอยู่ในทัวร์นาเมนต์ clausura ประจำปี 2012?",
    "context": "CREATE TABLE table_30083499_1 (team VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT coefficient FROM table_30083499_1 WHERE player = \"Agustín Marchesín (1)\"",
    "question_en": "What is the coefficient for agustín marchesín (1)?",
    "question_th": "ค่าสัมประสิทธิ์ของอากุสติน มาร์เชซิน (1) คืออะไร?",
    "context": "CREATE TABLE table_30083499_1 (coefficient VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT coefficient FROM table_30083499_1 WHERE tournament = \"2010 Clausura\"",
    "question_en": " the 2010 clausura tournament?",
    "question_th": " การแข่งขันคลอซูร่าปี 2010?",
    "context": "CREATE TABLE table_30083499_1 (coefficient VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_30083499_1 WHERE tournament = \"2012 Clausura\"",
    "question_en": "What is the nationality of the 2012 clausura  tournament?",
    "question_th": "การแข่งขัน clausura ปี 2012 มีสัญชาติอะไร?",
    "context": "CREATE TABLE table_30083499_1 (nationality VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_30087032_5 WHERE game = 1",
    "question_en": "Who did the high points in game number 1?",
    "question_th": "ใครทำคะแนนสูงสุดในเกมหมายเลข 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_en": "In how many different games did Oliver Miller (7) did the high rebounds?",
    "question_th": "โอลิเวอร์ มิลเลอร์ (7) รีบาวด์ได้สูงในเกมที่แตกต่างกันกี่เกม?",
    "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_en": "Who did the high assists in the game where Charles Barkley (21) did the high points?",
    "question_th": "ใครทำแอสซิสต์ได้สูงในเกมที่ชาร์ลส บาร์คลีย์ (21) ทำแต้มได้สูง?",
    "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_en": "How many different high points results are there for the game on May 15?",
    "question_th": "ผลคะแนนสูงสุดสำหรับเกมวันที่ 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_en": "In what series did Charles Barkley (34) did most high points?",
    "question_th": "Charles Barkley (34) ทำคะแนนสูงสุดในซีรีส์เรื่องใด",
    "context": "CREATE TABLE table_30087032_5 (series VARCHAR, high_points VARCHAR)"
  },
  {
    "answer": "SELECT barony FROM table_30120605_1 WHERE townland = \"Mountcotton\"",
    "question_en": "What is the barony of mountcotton?",
    "question_th": "บาโรนีแห่งเมานต์คอตตอนคืออะไร?",
    "context": "CREATE TABLE table_30120605_1 (barony VARCHAR, townland VARCHAR)"
  },
  {
    "answer": "SELECT area__acres__ FROM table_30120605_1 WHERE townland = \"Gortnaskehy\"",
    "question_en": "What is the area in acres of gortnaskehy?",
    "question_th": "gortnaskehy พื้นที่กี่เอเคอร์?",
    "context": "CREATE TABLE table_30120605_1 (area__acres__ VARCHAR, townland VARCHAR)"
  },
  {
    "answer": "SELECT civil_parish FROM table_30120605_1 WHERE townland = \"Ballymacandrick\"",
    "question_en": "In which civil parish is ballymacandrick?",
    "question_th": "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_en": "Name  the townland for fermoy and ballynoe",
    "question_th": "ตั้งชื่อเมืองสำหรับเฟอร์มอยและบัลลีโน",
    "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_en": "name the civil parish for garryduff",
    "question_th": "ตั้งชื่อตำบลพลเรือนสำหรับแกร์รีดัฟฟ์",
    "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_en": "Name the area for civil parish ballynoe and killasseragh",
    "question_th": "ตั้งชื่อพื้นที่สำหรับตำบลพลเรือน Ballynoe และ 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_en": "What is the poor law union of the Kilmaloda townland?",
    "question_th": "สหภาพกฎหมายที่ยากจนของทาวน์แลนด์ Kilmaloda คืออะไร?",
    "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_en": "What is the poor law union of the Lackenagobidane townland?",
    "question_th": "สหภาพกฎหมายที่ยากจนของทาวน์แลนด์ Lckenagobidane คืออะไร?",
    "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_en": "What is the poor law union of the Ardacrow townland?",
    "question_th": "สหภาพกฎหมายที่น่าสงสารของเมือง Ardacrow คืออะไร?",
    "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_en": "What is the maximum area (in acres) of the Knockacullen townland?",
    "question_th": "พื้นที่สูงสุด (เป็นเอเคอร์) ของทาวน์แลนด์ Knockacullen คือเท่าใด",
    "context": "CREATE TABLE table_30121046_1 (area__acres__ INTEGER, townland VARCHAR)"
  },
  {
    "answer": "SELECT civil_parish FROM table_30121082_1 WHERE townland = \"Loughmarsh\"",
    "question_en": "What are the civil parishes of the Loughmarsh townland?",
    "question_th": "ตำบลพลเรือนของ 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_en": "What is the greatest area when the Poor Law Union is Skibbereen and the Civil Parish is Tullagh?",
    "question_th": "พื้นที่ใดที่ยิ่งใหญ่ที่สุดเมื่อสหภาพกฎหมายผู้น่าสงสารคือ Skibbereen และเขตแพริชคือ 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_en": "What are the areas (in acres) of the Kilnahera East townland?",
    "question_th": "พื้นที่ (เป็นเอเคอร์) ของทาวน์แลนด์ Kilnahera East คืออะไร?",
    "context": "CREATE TABLE table_30121082_1 (area__acres__ VARCHAR, townland VARCHAR)"
  },
  {
    "answer": "SELECT barony FROM table_30121082_1 WHERE area__acres__ = 276",
    "question_en": "What are the Baronies when the area (in acres) is 276?",
    "question_th": "Baronies คืออะไรเมื่อพื้นที่ (เป็นเอเคอร์) คือ 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_en": "What are the Poor Law Unions when the area (in acres) is 142?",
    "question_th": "สหภาพแรงงานผู้น่าสงสารคืออะไรเมื่อพื้นที่ (เป็นเอเคอร์) คือ 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_en": "Tell me the average Rank for lossess less than 6 and wins less than 11 for michigan state",
    "question_th": "บอกอันดับเฉลี่ยสำหรับการแพ้น้อยกว่า 6 และชนะน้อยกว่า 11 สำหรับรัฐมิชิแกน",
    "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_en": "Tell me the sum of losses for wins less than 2 and rank of 10 with appearances larger than 3",
    "question_th": "บอกผลรวมของการสูญเสียสำหรับการชนะที่น้อยกว่า 2 และอันดับ 10 ที่ปรากฏตัวมากกว่า 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_en": "Which Rank number has a Silver of 0, Gold of 2 and total smaller than 2?",
    "question_th": "หมายเลขอันดับใดมีเงินเป็น 0 ทองเป็น 2 และผลรวมน้อยกว่า 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_en": "What is the lowest Total containing a Bronze of 0 and Rank smaller than 2?",
    "question_th": "ผลรวมต่ำสุดที่มีทองแดงเป็น 0 และอันดับน้อยกว่า 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_en": "Tell me the track for june 9",
    "question_th": "บอกเพลงวันที่ 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_en": "Tell me the track for scott lagasse jr.",
    "question_th": "บอกเพลงของ 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_en": "Tell me the event name for michael mcdowell and billy leslie",
    "question_th": "บอกชื่องานของ michael mcdowell และ 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_en": "Tell me the pole winner of may 12",
    "question_th": "บอกผู้ชนะเลิศโพล ประจำวันที่ 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_en": "Tell me the lowest kazakhstan for kyrghizstan of 4.62 and belarus less than 2.46",
    "question_th": "บอกคาซัคสถานต่ำสุดสำหรับคีร์กีซสถาน 4.62 และเบลารุสน้อยกว่า 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_en": "Tell me the lowest gold for rank of 6 and total less than 2",
    "question_th": "บอกทองคำต่ำสุดสำหรับอันดับ 6 และรวมน้อยกว่า 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_en": "Tell me the rank for bronze less than 17 and gold less than 1",
    "question_th": "บอกอันดับทองแดงน้อยกว่า 17 และทองน้อยกว่า 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_en": "Tell me the WL doubles with a debut of 1999",
    "question_th": "บอกฉันว่า WL เพิ่มเป็นสองเท่าด้วยการเปิดตัวในปี 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_en": "For the Hockey East conference, what is the total number of win percentages when there are less than 4 bids?",
    "question_th": "สำหรับการประชุม Hockey East จำนวนเปอร์เซ็นต์การชนะทั้งหมดเมื่อมีผู้เสนอราคาน้อยกว่า 4 ครั้งเป็นเท่าใด",
    "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_en": "What is the average Regional Finals score when the record is 3-2 and there are more than 3 bids?",
    "question_th": "คะแนนเฉลี่ยรอบชิงชนะเลิศระดับภูมิภาคเป็นเท่าใดเมื่อมีสถิติ 3-2 และมีผู้เสนอราคามากกว่า 3 ครั้ง?",
    "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_en": "In what competition was the score reported as 12.8 (80) - 8.7 (55)?",
    "question_th": "ในการแข่งขันรายการใดมีคะแนนรายงานเป็น 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_en": "At what venue was there a competition with a score reported as 7.14 (56) - 4.5 (29)?",
    "question_th": "มีการแข่งขันที่สนามใดด้วยคะแนน 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_en": "At what venue did the team from Collingwood score 7.14 (56) - 4.5 (29)?",
    "question_th": "ทีมจากคอลลิงวูดทำคะแนนได้ 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_en": "What team does Jimmy Frazelle play on?",
    "question_th": "Jimmy Frazelle อยู่ทีมใด?",
    "context": "CREATE TABLE table_name_41 (mls_team VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT mls_team FROM table_name_86 WHERE pick__number = 41",
    "question_en": "Which MLS team has the #41 pick?",
    "question_th": "ทีม MLS ใดมีสิทธิ์เลือก #41",
    "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_en": "What position has UCLA pick that is larger than #47?",
    "question_th": "ตำแหน่งใดที่ UCLA เลือกที่ใหญ่กว่า #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_en": "What is the position of the Colorado Rapids team?",
    "question_th": "ตำแหน่งของทีมโคโลราโด ราปิดส์ คืออะไร?",
    "context": "CREATE TABLE table_name_38 (position VARCHAR, mls_team VARCHAR)"
  },
  {
    "answer": "SELECT in_service FROM table_name_52 WHERE versions = \"l-410uvp\"",
    "question_en": "Tell me the service for versions l-410uvp",
    "question_th": "บอกบริการสำหรับรุ่น l-410uvp ให้ฉันหน่อย",
    "context": "CREATE TABLE table_name_52 (in_service VARCHAR, versions VARCHAR)"
  },
  {
    "answer": "SELECT versions FROM table_name_80 WHERE origin = \"czechoslovakia\"",
    "question_en": "Tell me the versions for czechoslovakia?",
    "question_th": "บอกเวอร์ชั่นของเชโกสโลวะเกียหน่อยสิ?",
    "context": "CREATE TABLE table_name_80 (versions VARCHAR, origin VARCHAR)"
  },
  {
    "answer": "SELECT aircraft FROM table_name_1 WHERE versions = \"pzl-104\"",
    "question_en": "Tell me the aircraft for pzl-104",
    "question_th": "บอกเครื่องบินของ pzl-104 หน่อยสิ",
    "context": "CREATE TABLE table_name_1 (aircraft VARCHAR, versions VARCHAR)"
  },
  {
    "answer": "SELECT origin FROM table_name_57 WHERE versions = \"mi-2\"",
    "question_en": "Tell me the origin for mi-2",
    "question_th": "บอกที่มาของ 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_en": "Tell me the total number of top 25 for wins less than 1 and cuts made of 22",
    "question_th": "บอกจำนวนรวม 25 อันดับแรกสำหรับการชนะน้อยกว่า 1 และการตัด 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_en": "Tell me the total number of events for tournament of masters tournament and top 25 less than 6",
    "question_th": "บอกจำนวนกิจกรรมทั้งหมดสำหรับทัวร์นาเมนต์ของ Masters Tournament และ 25 อันดับแรกที่น้อยกว่า 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_en": "What was the earliest year for the USISL Pro League?",
    "question_th": "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_en": "What is the 2007 Lukoil oil prodroduction when in 2010 oil production 3.137 million tonnes?",
    "question_th": "การผลิตน้ำมัน Lukoil ในปี 2550 เป็นเท่าใดเมื่อการผลิตน้ำมันในปี 2553 3.137 ล้านตัน",
    "context": "CREATE TABLE table_name_8 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2010 FROM table_name_25 WHERE 2009 = \"21.662\"",
    "question_en": "What is the 2010 Lukoil oil prodroduction when in 2009 oil production 21.662 million tonnes?",
    "question_th": "การผลิตน้ำมัน Lukoil ในปี 2010 เป็นเท่าใดเมื่อการผลิตน้ำมันในปี 2009 อยู่ที่ 21.662 ล้านตัน",
    "context": "CREATE TABLE table_name_25 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2004 FROM table_name_40 WHERE 2011 = \"90.917\"",
    "question_en": "What is the 2004 Lukoil oil prodroduction when in 2011 oil production 90.917 million tonnes?",
    "question_th": "การผลิตน้ำมัน Lukoil ในปี 2547 เป็นเท่าใดเมื่อการผลิตน้ำมันในปี 2554 90.917 ล้านตัน",
    "context": "CREATE TABLE table_name_40 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2005 FROM table_name_25 WHERE 2007 = \"91.100\"",
    "question_en": "What is the 2005 Lukoil oil prodroduction when in 2007 oil production 91.100 million tonnes?",
    "question_th": "การผลิตน้ำมัน Lukoil ในปี 2548 เป็นเท่าใดเมื่อการผลิตน้ำมันในปี 2550 91.100 ล้านตัน",
    "context": "CREATE TABLE table_name_25 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2005 FROM table_name_88 WHERE 2007 = \"5.545\"",
    "question_en": "What is the 2005 Lukoil oil prodroduction when in 2007 oil production 5.545 million tonnes?",
    "question_th": "การผลิตน้ำมัน Lukoil ในปี 2548 เป็นเท่าใดเมื่อการผลิตน้ำมันในปี 2550 5.545 ล้านตัน",
    "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_en": "Tell me the highest home runs for cleveland indians years before 1931",
    "question_th": "บอกฉันว่าโฮมรันสูงสุดสำหรับชาวอินเดียนแดงในคลีฟแลนด์เมื่อหลายปีก่อนปี 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_en": "What nation has the lowest gold average that has a rank over 9?",
    "question_th": "ประเทศใดมีค่าเฉลี่ยทองคำต่ำสุดและมีอันดับมากกว่า 9?",
    "context": "CREATE TABLE table_name_56 (gold INTEGER, rank INTEGER)"
  },
  {
    "answer": "SELECT country FROM table_name_38 WHERE director = \"julian schnabel\"",
    "question_en": "Tell me the country for julian schnabel",
    "question_th": "บอกประเทศของจูเลียน ชนาเบลหน่อยสิ",
    "context": "CREATE TABLE table_name_38 (country VARCHAR, director VARCHAR)"
  },
  {
    "answer": "SELECT english_title FROM table_name_17 WHERE director = \"jean-pierre jeunet\"",
    "question_en": "Name the title of jean-pierre jeunet",
    "question_th": "ตั้งชื่อหัวเรื่อง 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_en": "What is the power output (kw) of model hxd2b?",
    "question_th": "กำลังไฟฟ้าเอาท์พุต (kw) ของรุ่น 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_en": "What model has a builder of zhuzhou, and a power output of 9600 (kw)?",
    "question_th": "รุ่นใดที่มีผู้สร้าง Zhuzhou และมีกำลังไฟฟ้า 9600 (กิโลวัตต์)",
    "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_en": "What is the power output (kw) of model hxd3d?",
    "question_th": "กำลังขับ (kw) ของรุ่น 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_en": "What is the power output (kw) of builder zhuzhou, model hxd1d, with a total production of 2?",
    "question_th": "กำลังไฟฟ้าที่ส่งออก (กิโลวัตต์) ของช่างก่อสร้าง Zhuzhou รุ่น Hxd1d โดยมีกำลังผลิตทั้งหมด 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_en": "Name the average bronze for total less than 1",
    "question_th": "ตั้งชื่อบรอนซ์เฉลี่ยรวมน้อยกว่า 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_en": "Name the recipient of much ado about nothing for 1973",
    "question_th": "ตั้งชื่อผู้รับความกังวลใจมากเกี่ยวกับอะไรในปี 1973",
    "context": "CREATE TABLE table_name_77 (recipient VARCHAR, play VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT recipient FROM table_name_69 WHERE year = 1976",
    "question_en": "Name the recipientof the year for 1976",
    "question_th": "ตั้งชื่อผู้รับแห่งปี 2519",
    "context": "CREATE TABLE table_name_69 (recipient VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT play FROM table_name_20 WHERE year = 1976",
    "question_en": "Name the play for 1976",
    "question_th": "ตั้งชื่อละครปี 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_en": "Name the average year for much ado about nothing and recipient of ray virta",
    "question_th": "ตั้งชื่อปีโดยเฉลี่ยสำหรับความกังวลใจมากเกี่ยวกับสิ่งใดๆ และผู้รับรังสี 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_en": "On channel 32, when the power is 32 kW horizontal, what is the modulation?",
    "question_th": "ที่ช่อง 32 เมื่อกำลังไฟแนวนอน 32 kW ค่ามอดูเลชั่นเป็นอย่างไรบ้าง?",
    "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_en": "On channel 32, when the power is 32 kW horizontal, what is the frequency?",
    "question_th": "ที่ช่อง 32 เมื่อไฟแนวนอน 32 kW ความถี่เท่าไหร่ครับ?",
    "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_en": "Tell me the highest wins for year less than 2000 and best finish of 4 and tournaments played less than 3",
    "question_th": "บอกฉันหน่อยว่าชัยชนะสูงสุดสำหรับปีที่น้อยกว่าปี 2000 และการจบอันดับ 4 ที่ดีที่สุดและทัวร์นาเมนต์ที่เล่นน้อยกว่า 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_en": "Tell me the scoring average for year less than 1998 and wins more than 3",
    "question_th": "บอกคะแนนเฉลี่ยปีที่ต่ำกว่า 1998 และชนะมากกว่า 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_en": "What happened on November 20, 1983 before week 15?",
    "question_th": "เกิดอะไรขึ้นในวันที่ 20 พฤศจิกายน พ.ศ. 2526 ก่อนสัปดาห์ที่ 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_en": "Who won under Gary Simms?",
    "question_th": "ใครชนะภายใต้ 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_en": "Which trainer had a time of 1:10.09 with a year less than 2009?",
    "question_th": "เทรนเนอร์คนไหนที่ทำเวลาได้ 1:10.09 โดยน้อยกว่าปี 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_en": "Which trainer won the hyroglyphic in a year that was before 2010?",
    "question_th": "ผู้ฝึกสอนคนไหนที่ชนะการแสดงอักษรอียิปต์โบราณในปีก่อนปี 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_en": "What was the time for Screen Your Friend?",
    "question_th": "คัดกรองเพื่อนของคุณกี่โมง?",
    "context": "CREATE TABLE table_name_48 (time VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT MIN(points) FROM table_name_8 WHERE place > 10",
    "question_en": "Which places have points larger than 10?",
    "question_th": "สถานที่ใดมีคะแนนมากกว่า 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_en": "What is the total grid number when Fonsi Nieto had more than 22 laps?",
    "question_th": "หมายเลขกริดรวมเมื่อ Fonsi Nieto มีมากกว่า 22 รอบเป็นเท่าใด",
    "context": "CREATE TABLE table_name_59 (grid VARCHAR, rider VARCHAR, laps VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(laps) FROM table_name_39 WHERE grid = 10",
    "question_en": "When the grid number is 10, what is the total number of laps?",
    "question_th": "เมื่อเลขกริดเป็น 10 จำนวนรอบทั้งหมดเป็นเท่าใด",
    "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_en": "Which bike did Jiri Drazdak ride when he had a grid number larger than 14 and less than 22 laps?",
    "question_th": "Jiri Drazdak ขี่จักรยานคันไหนเมื่อเขามีจำนวนกริดมากกว่า 14 และน้อยกว่า 22 รอบ",
    "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_en": "Tell me the winning driver for pau grand prix",
    "question_th": "บอกคนขับที่ชนะรางวัลโป กรังด์ปรีซ์หน่อยสิ",
    "context": "CREATE TABLE table_name_1 (winning_driver VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT report FROM table_name_86 WHERE date = \"30 july\"",
    "question_en": "Tell me the report for 30 july",
    "question_th": "แจ้งรายงานประจำวันที่ 30 ก.ค. ครับ",
    "context": "CREATE TABLE table_name_86 (report VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT report FROM table_name_64 WHERE date = \"10 april\"",
    "question_en": "Tell me the report for 10 april",
    "question_th": "แจ้งรายงานประจำวันที่ 10 เมษายน ครับ",
    "context": "CREATE TABLE table_name_64 (report VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT winning_constructor FROM table_name_42 WHERE name = \"paris cup\"",
    "question_en": "Tell me the winning constructor for the paris cup",
    "question_th": "บอกผู้สร้างชัยชนะของถ้วยปารีสหน่อยสิ",
    "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é froilán gonzález\" AND position > 2",
    "question_en": "what date has the class of non-championship f2 as well as a driver name josé froilán gonzález that has a position larger than 2?",
    "question_th": "วันที่ใดที่มีคลาสที่ไม่ใช่แชมป์ f2 และนักแข่งชื่อ โฆเซ่ ฟรอยลัน กอนซาเลซ ที่มีตำแหน่งมากกว่า 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_en": "what team has a drive name emmanuel de graffenried and a position larger than 1 as well as the date of 9/1953?",
    "question_th": "ทีมใดมีชื่อไดรฟ์ เอ็มมานูเอล เดอ กราฟเฟนรีด และตำแหน่งที่มากกว่า 1 รวมถึงวันที่ 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_en": "what class has the date of 8/1954?",
    "question_th": "วันที่ 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_en": "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?",
    "question_th": "นักแข่งคนใดมีทีม officine alfieri maserati และอยู่ในประเภท non-championship f2 และมีตำแหน่ง 2 รวมถึงวันที่ 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_en": "How many people attended the game with a result of w 16-13 and a week earlier than 12?",
    "question_th": "มีกี่คนที่เข้าร่วมเกมโดยผลการแข่งขัน w 16-13 และหนึ่งสัปดาห์ก่อน 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_en": "It has fa cup goals larger than 0 and total goals of 0, what is the average total apps?",
    "question_th": "มีเป้าหมายเอฟเอคัพมากกว่า 0 และประตูรวมเป็น 0 จำนวนแอปเฉลี่ยทั้งหมดคือเท่าใด",
    "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_en": "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?",
    "question_th": "มีเป้าหมาย FA Cup ที่น้อยกว่า 4 และแอป FA Cup ที่ใหญ่กว่า 7 จำนวนแอปทั้งหมดคือเท่าใด",
    "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_en": "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?",
    "question_th": "ประตูรวมมีแอป FA Cup มากกว่า 1 และแอปทั้งหมด 37 แอป และแอปลีกน้อยกว่า 30 แอป จำนวนทั้งหมดคือเท่าใด",
    "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_en": "What is the result when the record was 1-0 and it was earlier than week 4?",
    "question_th": "ผลเป็นอย่างไรเมื่อสถิติเป็น 1-0 และเร็วกว่าสัปดาห์ที่ 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_en": "What are the bore & stroke specifications for an engine with 4-barrel carburetor and VIN code of A?",
    "question_th": "ข้อมูลจำเพาะของกระบอกสูบและระยะชักสำหรับเครื่องยนต์ที่ใช้คาร์บูเรเตอร์ 4 บาร์เรลและรหัส VIN ของ 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_en": "Which opponent has unknown attendance, and lost 2-0?",
    "question_th": "คู่ต่อสู้คนไหนที่ไม่ทราบจำนวนผู้เข้าร่วม และแพ้ 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_en": "What is the result from the Leeds United opponent?",
    "question_th": "ผลการแข่งขันของคู่ต่อสู้ลีดส์ยูไนเต็ดเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_89 (result VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_27 WHERE opponent = \"middlesbrough\"",
    "question_en": "What is the attendance rate for the Middlesbrough opponent?",
    "question_th": "อัตราการเข้าชมของฝ่ายตรงข้ามมิดเดิ้ลสโบรช์เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_27 (attendance VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT local_letter FROM table_name_28 WHERE capital = \"funadhoo\"",
    "question_en": "The capital of funadhoo has what local letter?",
    "question_th": "เมืองหลวงของฟูนาดูมีอักษรท้องถิ่นอะไร?",
    "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_en": "Tell me the venue for extra of short race and year less than 1999",
    "question_th": "บอกสถานที่จัดการแข่งขันระยะสั้นพิเศษและปีต่ำกว่า 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_en": "Tell me the sum of year for 5th result",
    "question_th": "บอกผลรวมของปีสำหรับผลที่ 5 ให้ฉันทราบ",
    "context": "CREATE TABLE table_name_12 (year INTEGER, result VARCHAR)"
  },
  {
    "answer": "SELECT extra FROM table_name_14 WHERE tournament = \"olympic games\"",
    "question_en": "Tell me the extra for tournament of olympic games",
    "question_th": "บอกฉันเป็นพิเศษสำหรับการแข่งขันกีฬาโอลิมปิก",
    "context": "CREATE TABLE table_name_14 (extra VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT MAX(year) FROM table_name_98 WHERE result = \"9th\"",
    "question_en": "Tell me the highest year for result of 9th",
    "question_th": "บอกปีสูงสุดสำหรับผลวันที่ 9 หน่อยสิ",
    "context": "CREATE TABLE table_name_98 (year INTEGER, result VARCHAR)"
  },
  {
    "answer": "SELECT shigella FROM table_name_52 WHERE yersinia = \"yopb\"",
    "question_en": "Tell me the shigella for yersinia yopb",
    "question_th": "บอก shigella สำหรับ yersinia yopb ให้ฉันหน่อยสิ",
    "context": "CREATE TABLE table_name_52 (shigella VARCHAR, yersinia VARCHAR)"
  },
  {
    "answer": "SELECT shigella FROM table_name_15 WHERE yersinia = \"yscn\"",
    "question_en": "Tell me the shigella and yscn",
    "question_th": "บอก shigella และ yscn ให้ฉันหน่อยสิ",
    "context": "CREATE TABLE table_name_15 (shigella VARCHAR, yersinia VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_39 WHERE date = \"november 24, 1996\"",
    "question_en": "Tell me the opponent for november 24, 1996",
    "question_th": "บอกคู่ต่อสู้วันที่ 24 พฤศจิกายน 2539",
    "context": "CREATE TABLE table_name_39 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT tv_time FROM table_name_86 WHERE attendance = \"60,894\"",
    "question_en": "Tell me the tv time for attendance of 60,894",
    "question_th": "บอกเวลาดูทีวีว่ามีผู้เข้าร่วม 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_en": "Tell me the lowest week for attendance of 60,894",
    "question_th": "บอกฉันสัปดาห์ต่ำสุดสำหรับการเข้าร่วม 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_en": "Which Ensemble Name has the Advertisement date October 2007?",
    "question_th": "ชื่อคณะใดมีวันที่โฆษณาเมื่อเดือนตุลาคม พ.ศ. 2550",
    "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_en": "Who is the Winning Applicant of Block 10B in Derbyshire Area?",
    "question_th": "ใครคือผู้สมัครที่ชนะของ Block 10B ในเขต Derbyshire?",
    "context": "CREATE TABLE table_name_39 (winning_applicant VARCHAR, block VARCHAR, area VARCHAR)"
  },
  {
    "answer": "SELECT block FROM table_name_25 WHERE area = \"northamptonshire\"",
    "question_en": "Which Block does Northamptonshire Area have?",
    "question_th": "Northamptonshire Area มีบล็อกใดบ้าง",
    "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_en": "What is Ensemble Name Muxco Gloucestershire's Advertisement Date in Block 10C?",
    "question_th": "ชื่อ Ensemble คืออะไรวันที่โฆษณาของ Muxco Gloucestershire ในบล็อก 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_en": "What is Oxfordshire Area's Ensemble Name?",
    "question_th": "ชื่อวงดนตรีของ Oxfordshire Area คืออะไร?",
    "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_en": "Who is the Winning Applicant of Ensemble Name Muxco Lincolnshire in Block 10D?",
    "question_th": "ใครคือผู้สมัครที่ชนะรางวัล Ensemble Name Muxco Lincolnshire ใน 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_en": "What was the average crowd size of games held at Glenferrie Oval?",
    "question_th": "จำนวนฝูงชนโดยเฉลี่ยของเกมที่จัดขึ้นที่ 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_en": "What was the home team's score at the game attended by more than 24,637?",
    "question_th": "คะแนนของเจ้าบ้านในเกมที่มีผู้เข้าร่วมมากกว่า 24,637 คนเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_81 (home_team VARCHAR, crowd INTEGER)"
  },
  {
    "answer": "SELECT time FROM table_name_89 WHERE points = 1",
    "question_en": "What was the time for the man who scored 1 point?",
    "question_th": "ผู้ชายที่ได้ 1 แต้มเวลาเท่าไหร่?",
    "context": "CREATE TABLE table_name_89 (time VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_56 WHERE venue = \"mcg\"",
    "question_en": "Who was the away team when the VFL played at MCG?",
    "question_th": "ทีมเยือนสมัยวีเอฟแอลเล่นที่เอ็มซีจีคือใคร?",
    "context": "CREATE TABLE table_name_56 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT MIN(crowd) FROM table_name_49 WHERE venue = \"mcg\"",
    "question_en": "What was the crowd when the VFL played MCG?",
    "question_th": "ฝูงชนเป็นอย่างไรบ้างเมื่อ VFL เล่น MCG?",
    "context": "CREATE TABLE table_name_49 (crowd INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT AVG(crowd) FROM table_name_70 WHERE home_team = \"melbourne\"",
    "question_en": "What was the crowd when Melbourne was the home team?",
    "question_th": "เมื่อเมลเบิร์นเป็นเจ้าบ้านมีคนเยอะขนาดไหน?",
    "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_en": "What is the total of lane(s) for swimmers from Sweden with a 50m split of faster than 26.25?",
    "question_th": "รวมเลนสำหรับนักว่ายน้ำจากสวีเดนที่มีทางแยก 50 เมตรเร็วกว่า 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_en": "What is the slowest 50m split time for a total of 53.74 in a lane of less than 3?",
    "question_th": "เวลาแยก 50 ม. ที่ช้าที่สุดสำหรับผลรวม 53.74 ในเลนน้อยกว่า 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_en": "What is the total sum of 50m splits for josefin lillhage in lanes above 8?",
    "question_th": "ผลรวมของการแยก 50 เมตรสำหรับ Josefin Lillhage ในเลนที่สูงกว่า 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_en": "What was the score for the home team St Kilda?",
    "question_th": "เจ้าบ้านเซนท์คิลดาสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_60 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT AVG(crowd) FROM table_name_81 WHERE away_team = \"collingwood\"",
    "question_en": "What is the average crowd size when Collingwood is the away team?",
    "question_th": "ขนาดฝูงชนโดยเฉลี่ยเมื่อคอลลิงวูดเป็นทีมเยือนคือเท่าใด?",
    "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_en": "What is the name of the Senator in the O District who assumed office in 2013?",
    "question_th": "ส.ว.เขตโอที่เข้ารับตำแหน่งในปี 2556 ชื่ออะไร?",
    "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_en": "What is the 1944 result for the U.S. Championships?",
    "question_th": "ผลการแข่งขัน US Championships ในปี 1944 คืออะไร?",
    "context": "CREATE TABLE table_name_52 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_30 WHERE 1954 = \"a\" AND 1942 = \"nh\"",
    "question_en": "What is the tournament that had a result of A in 1954 and NH in 1942?",
    "question_th": "การแข่งขันที่มีผลการแข่งขัน A ในปี 1954 และ NH ในปี 1942 คืออะไร?",
    "context": "CREATE TABLE table_name_30 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_94 WHERE home_team = \"fitzroy\"",
    "question_en": "When was Fitzroy the home team?",
    "question_th": "ฟิตซ์รอยเป็นเจ้าบ้านเมื่อไหร่?",
    "context": "CREATE TABLE table_name_94 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_74 WHERE home_team = \"geelong\"",
    "question_en": "Where did Geelong play a home game?",
    "question_th": "จีลองเล่นเกมในบ้านที่ไหน?",
    "context": "CREATE TABLE table_name_74 (venue VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT SUM(lost) FROM table_name_38 WHERE played < 4",
    "question_en": "What is the sum of losses for teams with less than 4 games played?",
    "question_th": "ผลรวมของการสูญเสียสำหรับทีมที่เล่นน้อยกว่า 4 เกมคือเท่าไร?",
    "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_en": "What is the rider status for the 1971 netherlands team?",
    "question_th": "สถานะนักแข่งของทีมเนเธอร์แลนด์ปี 1971 คืออะไร?",
    "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_en": "Who was the winner in 1973 with an amateur rider status?",
    "question_th": "ใครคือผู้ชนะในปี 1973 โดยมีสถานะนักบิดสมัครเล่น?",
    "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_en": "What is the latest year when Phil Anderson won?",
    "question_th": "ล่าสุดปีไหนที่ฟิล แอนเดอร์สันชนะ?",
    "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_en": "What ream played later than 1958 in the kellogg's tour?",
    "question_th": "รีมอะไรเล่นหลังปี 1958 ในทัวร์ของเคลล็อกก์?",
    "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_en": "What is the sum of laps that has a car number of larger than 1, is a ford, and has 155 points?",
    "question_th": "ผลรวมของรอบที่มีหมายเลขรถมากกว่า 1 เป็นฟอร์ดและมี 155 คะแนนเป็นเท่าใด",
    "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_en": "What is the lowest number of laps for kyle petty with under 118 points?",
    "question_th": "จำนวนรอบต่ำสุดของ Kyle Petty ที่ต่ำกว่า 118 แต้มคือเท่าใด",
    "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_en": "Who was the away team that played Fitzroy on May 13, 1950 at Brunswick Street Oval.",
    "question_th": "ซึ่งเป็นทีมเยือนที่เล่นฟิตซ์รอยเมื่อวันที่ 13 พฤษภาคม พ.ศ. 2493 ที่สนามบรันสวิกสตรีทโอวัล",
    "context": "CREATE TABLE table_name_86 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT MIN(crowd) FROM table_name_55 WHERE venue = \"windy hill\"",
    "question_en": "What was the lowest crowd size at the Windy Hill venue?",
    "question_th": "จำนวนผู้เข้าชมที่น้อยที่สุดในสถานที่จัดงาน Windy Hill คือเท่าใด",
    "context": "CREATE TABLE table_name_55 (crowd INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_33 WHERE home_team = \"geelong\"",
    "question_en": "Which venue's home team is geelong?",
    "question_th": "จีลองเจ้าบ้านสนามไหน?",
    "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_en": "How many people in the crowd with north melbourne as an away team?",
    "question_th": "มีคนกี่คนในกลุ่มที่มีเมลเบิร์นตอนเหนือเป็นทีมเยือน?",
    "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_en": "Which team was at Corio Oval on 4 June 1927?",
    "question_th": "ทีมใดเคยอยู่ที่โคริโอโอวัลเมื่อวันที่ 4 มิถุนายน พ.ศ. 2470?",
    "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_en": "What was the home team score for the Richmond away team?",
    "question_th": "สกอร์ของเจ้าบ้านของทีมเยือน ริชมอนด์ เป็นเท่าไหร่?",
    "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_en": "Which rider had a time of 1:54.26.6?",
    "question_th": "นักแข่งคนไหนทำเวลาได้ 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_en": "What was the time for Peter Berwick of Team Suzuki?",
    "question_th": "Peter Berwick จาก 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_en": "What was the home team's score at the game held at Punt Road Oval?",
    "question_th": "สกอร์ของเจ้าบ้านในเกมที่จัดขึ้นที่พันท์ โร้ด โอวัลเป็นเท่าไหร่?",
    "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_en": "What was the home team's score at the game that had a crowd larger than 24,000?",
    "question_th": "เจ้าบ้านได้สกอร์ในเกมที่มีผู้ชมมากกว่า 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_en": "What position was for Arizona State?",
    "question_th": "รัฐแอริโซนามีตำแหน่งอะไร?",
    "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_en": "Who was the home team for the game where North Melbourne was the away team?",
    "question_th": "ใครคือเจ้าบ้านในเกมที่เมลเบิร์นเหนือเป็นทีมเยือน?",
    "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_en": "What was the Candlelight Records Catalog of Candle053tin format?",
    "question_th": "แคตตาล็อก Candlelight Records ของรูปแบบ Candle053tin คืออะไร",
    "context": "CREATE TABLE table_name_93 (format VARCHAR, label VARCHAR, catalog VARCHAR)"
  },
  {
    "answer": "SELECT format FROM table_name_98 WHERE label = \"candlelight records\"",
    "question_en": "What is Candlelight Records format?",
    "question_th": "รูปแบบ Candlelight Records คืออะไร?",
    "context": "CREATE TABLE table_name_98 (format VARCHAR, label VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_79 WHERE region = \"japan\"",
    "question_en": "What year did Japan form a label?",
    "question_th": "ญี่ปุ่นสร้างฉลากในปีใด",
    "context": "CREATE TABLE table_name_79 (year VARCHAR, region VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_64 WHERE length > 903",
    "question_en": "What name is associated with a longer length than 903?",
    "question_th": "ชื่ออะไรเกี่ยวข้องกับความยาวที่ยาวกว่า 903?",
    "context": "CREATE TABLE table_name_64 (name VARCHAR, length INTEGER)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_name_32 WHERE player = \"landon donovan\"",
    "question_en": "What is the sum of all the years that Landon Donovan won the ESPY award?",
    "question_th": "ผลรวมของปีที่ Landon Donovan ได้รับรางวัล ESPY เป็นจำนวนเท่าใด",
    "context": "CREATE TABLE table_name_32 (year VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(uninterrupted_rank) FROM table_name_87 WHERE name = \"john dingell\"",
    "question_en": "How many uninterrupted ranks does john dingell have?",
    "question_th": "john dingell มีอันดับต่อเนื่องกี่อันดับ?",
    "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_en": "Who has a total tenure time and uninterrupted time of 36 years, 0 days, as well as a total tenure rank of 49?",
    "question_th": "ใครมีวาระการดำรงตำแหน่งรวมและระยะเวลาต่อเนื่อง 36 ปี 0 วัน รวมถึงอันดับวาระรวม 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_en": "What is the value of match points when the points for is 570?",
    "question_th": "มูลค่าของแต้มการแข่งขันเมื่อแต้มคือ 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_en": "What is the amount of match points for a club that lost 18 and has 11 bonus points?",
    "question_th": "จำนวนคะแนนการแข่งขันสำหรับสโมสรที่แพ้ 18 คะแนนและมี 11 คะแนนโบนัสคือเท่าใด",
    "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_en": "What is the diff for a club that has a value of 662 for points for?",
    "question_th": "อะไรคือความแตกต่างสำหรับไม้กอล์ฟที่มีมูลค่า 662 สำหรับคะแนน?",
    "context": "CREATE TABLE table_name_46 (diff VARCHAR, points_for VARCHAR)"
  },
  {
    "answer": "SELECT games FROM table_name_26 WHERE points_for = \"595\"",
    "question_en": "What is the number of games for a club that has a value of 595 for points for?",
    "question_th": "จำนวนเกมของสโมสรที่มีมูลค่า 595 แต้มสำหรับแต้มคือเท่าใด?",
    "context": "CREATE TABLE table_name_26 (games VARCHAR, points_for VARCHAR)"
  },
  {
    "answer": "SELECT games FROM table_name_39 WHERE match_points = \"34\"",
    "question_en": "What is the number of games for a club that has 34 match points?",
    "question_th": "จำนวนเกมของสโมสรที่มี 34 แมตช์พอยต์คือเท่าใด",
    "context": "CREATE TABLE table_name_39 (games VARCHAR, match_points VARCHAR)"
  },
  {
    "answer": "SELECT bonus_points FROM table_name_35 WHERE club = \"colomiers\"",
    "question_en": "How many bonus points did the Colomiers earn?",
    "question_th": "Colomiers ได้รับคะแนนโบนัสกี่คะแนน?",
    "context": "CREATE TABLE table_name_35 (bonus_points VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_13 WHERE date = \"12 november 2005\"",
    "question_en": "What is the venue for the event on 12 November 2005?",
    "question_th": "สถานที่จัดงานวันที่ 12 พฤศจิกายน พ.ศ. 2548 คือที่ไหน?",
    "context": "CREATE TABLE table_name_13 (venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_98 WHERE date = \"27 july 2004\"",
    "question_en": "What is the competition that occured on 27 July 2004?",
    "question_th": "การแข่งขันที่เกิดขึ้นในวันที่ 27 กรกฎาคม 2547 คืออะไร?",
    "context": "CREATE TABLE table_name_98 (competition VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_33 WHERE date = \"20 november 2002\"",
    "question_en": "What is the venue of the game on 20 November 2002?",
    "question_th": "สถานที่จัดการแข่งขันในวันที่ 20 พฤศจิกายน พ.ศ. 2545 คือที่ไหน?",
    "context": "CREATE TABLE table_name_33 (venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_32 WHERE date = \"16 august 2006\"",
    "question_en": "What was the score of the game played on 16 August 2006?",
    "question_th": "คะแนนของเกมที่เล่นเมื่อวันที่ 16 สิงหาคม พ.ศ. 2549 เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_32 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT crowd FROM table_name_35 WHERE venue = \"brunswick street oval\"",
    "question_en": "How large was the crowd at Brunswick Street Oval?",
    "question_th": "ฝูงชนที่ 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_en": "How big was the crowd when the away team was Richmond?",
    "question_th": "เมื่อทีมเยือนเป็นริชมอนด์คนเยอะแค่ไหน?",
    "context": "CREATE TABLE table_name_4 (crowd VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(crowd) FROM table_name_19 WHERE home_team = \"fitzroy\"",
    "question_en": "What was the largest crowd where the home team was Fitzroy?",
    "question_th": "แฟนทีมเจ้าบ้านคือฟิตซ์รอยคนไหนเยอะที่สุด?",
    "context": "CREATE TABLE table_name_19 (crowd INTEGER, home_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_87 WHERE home_team = \"fitzroy\"",
    "question_en": "What was the venue where Fitzroy played as the home team?",
    "question_th": "สนามที่ฟิตซ์รอยเล่นเป็นเจ้าบ้านคือสนามใด?",
    "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_en": "Who was the away team playing the home team North Melbourne?",
    "question_th": "ทีมเยือนเล่นทีมเจ้าบ้าน นอร์ท เมลเบิร์น คือใคร?",
    "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_en": "Who built Warren Booth's car with the Cosworth DFV V8 engine?",
    "question_th": "ใครเป็นผู้สร้างรถของ Warren Booth ด้วยเครื่องยนต์ Cosworth DFV V8",
    "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_en": "What engine is used by Colin Bennett Racing with an 811 chassis?",
    "question_th": "Colin Bennett Racing พร้อมแชสซี 811 ใช้เครื่องยนต์ใด",
    "context": "CREATE TABLE table_name_48 (engine VARCHAR, entrant VARCHAR, chassis VARCHAR)"
  },
  {
    "answer": "SELECT entrant FROM table_name_92 WHERE constructor = \"brm\"",
    "question_en": "What team used the BRM built car?",
    "question_th": "ทีมใดใช้รถที่สร้างโดย BRM?",
    "context": "CREATE TABLE table_name_92 (entrant VARCHAR, constructor VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_76 WHERE driver = \"jim crawford\"",
    "question_en": "Who built the Jim Crawford car?",
    "question_th": "ใครเป็นผู้สร้างรถยนต์ Jim Crawford?",
    "context": "CREATE TABLE table_name_76 (constructor VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT chassis FROM table_name_36 WHERE constructor = \"shadow\"",
    "question_en": "What chassis does the shadow built car use?",
    "question_th": "รถ Shadow Built ใช้แชสซีอะไรครับ?",
    "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_en": "What team uses a Cosworth DFV V8 engine and DN9 Chassis?",
    "question_th": "ทีมใดใช้เครื่องยนต์ Cosworth DFV V8 และแชสซี DN9",
    "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_en": "What was Oslo's population in 1960, with a population of 507,467 in 2000?",
    "question_th": "ประชากรของออสโลในปี 1960 เป็นเท่าใด โดยมีประชากร 507,467 คนในปี 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_en": "What is the sum of week number(s) had an attendance of 61,985?",
    "question_th": "ผลรวมของจำนวนสัปดาห์ที่มีผู้เข้าร่วม 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_en": "What is the home team's score when the venue is princes park?",
    "question_th": "เจ้าบ้านได้สกอร์เท่าไหร่เมื่อสนามพรินซ์ปาร์ค?",
    "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_en": "What is the away team when north melbourne is at home?",
    "question_th": "ทีมเยือนเป็นไงเมื่อนอร์ธ เมลเบิร์น อยู่บ้าน?",
    "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_en": "What is the highest average that has 6 dances and a total of over 128?",
    "question_th": "ค่าเฉลี่ยสูงสุดที่มีการเต้นรำ 6 ครั้งและรวมมากกว่า 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_en": "Which party has a net gain/loss of -2?",
    "question_th": "ฝ่ายใดมีกำไร/ขาดทุนสุทธิ -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_en": "When the Swedish People's Party had a net gain/loss of 0, how many seats did they have?",
    "question_th": "เมื่อพรรคประชาชนสวีเดนมีกำไร/ขาดทุนสุทธิ 0 พวกเขามีที่นั่งทั้งหมดกี่ที่นั่ง?",
    "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_en": "When there was a net gain/loss of +34, what was the percentage of seats that party held?",
    "question_th": "เมื่อมีกำไร/ขาดทุนสุทธิ +34 ที่นั่งที่พรรคนั้นถืออยู่คือกี่เปอร์เซ็นต์",
    "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_en": "Regarding the seats that casted 8.1% of the vote how many seats were held?",
    "question_th": "ส่วนที่นั่งที่ได้รับคะแนนเสียง 8.1% มีที่นั่งกี่ที่นั่ง?",
    "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_en": "How many points does footscray score as the home side?",
    "question_th": "ฟุตสเครย์ทำแต้มเจ้าบ้านได้กี่แต้ม?",
    "context": "CREATE TABLE table_name_86 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team AS score FROM table_name_87 WHERE away_team = \"richmond\"",
    "question_en": "What is the home team's score when richmond is away?",
    "question_th": "เมื่อริชมอนด์ไม่อยู่สกอร์ของเจ้าบ้านเป็นเท่าไหร่?",
    "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_en": "What player played on 04/05/1999 with a conv of 0?",
    "question_th": "ผู้เล่นคนไหนที่เล่นเมื่อวันที่ 04/05/1999 โดยมี Conv. เป็น 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_en": "What date did Josh Taumalolo play at Nuku'alofa?",
    "question_th": "Josh Taumalolo เล่นที่ 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_en": "What is the home team score when the away team is St Kilda?",
    "question_th": "เจ้าบ้านสกอร์เท่าไหร่เมื่อทีมเยือนคือเซนต์คิลดา?",
    "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_en": "What is the home team score when the away team is Melbourne?",
    "question_th": "สกอร์เจ้าบ้านตอนทีมเยือนคือเมลเบิร์นเป็นเท่าไหร่?",
    "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_en": "What is the home team for punt road oval?",
    "question_th": "เจ้าบ้านจะเตะพันท์โรดโอวัลเป็นทีมไหน?",
    "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_en": "Which country has a Youth (15-24) Literacy Rate Total of 100% and has an Adult Women Literacy rate of 92%?",
    "question_th": "ประเทศใดมีอัตราการรู้หนังสือของเยาวชน (15-24) รวม 100% และมีอัตราการรู้หนังสือของสตรีวัยผู้ใหญ่ 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_en": "Which country has its most recent year as being 2005 and has an Adult Men literacy rate of 96%?",
    "question_th": "ประเทศใดมีปีล่าสุดคือปี 2548 และมีอัตราการรู้หนังสือของผู้ใหญ่ชายอยู่ที่ 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_en": "What country has a Youth (15-24) Literacy Rate Total of 99%, and a Youth Men of 98%?",
    "question_th": "ประเทศใดมีอัตราการรู้หนังสือของเยาวชน (15-24) รวม 99% และเยาวชนชาย 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_en": "Which public college has a nickname of The Grenadiers?",
    "question_th": "วิทยาลัยของรัฐใดมีชื่อเล่นว่า 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_en": "Which of the private colleges is the oldest, and whose nickname is the Mountaineers?",
    "question_th": "วิทยาลัยเอกชนแห่งใดที่เก่าแก่ที่สุด และมีชื่อเล่นว่า 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_en": "Which college's enrollment is less than 1,000?",
    "question_th": "วิทยาลัยใดลงทะเบียนไม่ถึง 1,000?",
    "context": "CREATE TABLE table_name_85 (institution VARCHAR, enrollment INTEGER)"
  },
  {
    "answer": "SELECT date FROM table_name_19 WHERE away_team = \"essendon\"",
    "question_en": "On what date does Essendon play as the away team?",
    "question_th": "เอสเซนดอนลงเล่นเป็นทีมเยือนวันไหน?",
    "context": "CREATE TABLE table_name_19 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT MIN(goal_gain) FROM table_name_31 WHERE game < 18",
    "question_en": "What team with a Game smaller than 18 has the lowest Goal Gain?",
    "question_th": "ทีมใดที่มีเกมน้อยกว่า 18 ปีจะได้ประตูน้อยที่สุด?",
    "context": "CREATE TABLE table_name_31 (goal_gain INTEGER, game INTEGER)"
  },
  {
    "answer": "SELECT nationality FROM table_name_55 WHERE school_country = \"baylor\"",
    "question_en": "What was the nationality of every player that attended Baylor?",
    "question_th": "ผู้เล่นทุกคนที่เข้าร่วมเบย์เลอร์มีสัญชาติอะไร",
    "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_en": "Which team was the away team when the game was at punt road oval?",
    "question_th": "ทีมใดเป็นทีมเยือนเมื่อเกมที่สนามถ่อวงรี?",
    "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_en": "What was the score for the away team when the home team was Fitzroy?",
    "question_th": "ทีมเยือนเมื่อเจ้าบ้านเป็นฟิตซ์รอยได้สกอร์เท่าไหร่?",
    "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_en": "What was the date of the game when the away team was south melbourne?",
    "question_th": "แมตช์วันที่ทีมเยือนเจอกับเซาท์เมลเบิร์นคือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_77 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT glendale FROM table_name_87 WHERE pasadena = \"14%\"",
    "question_en": "What is the percentage of Glendale when Pasadena is 14%?",
    "question_th": "เปอร์เซ็นต์ของ Glendale คือเท่าใดเมื่อ Pasadena อยู่ที่ 14%?",
    "context": "CREATE TABLE table_name_87 (glendale VARCHAR, pasadena VARCHAR)"
  },
  {
    "answer": "SELECT tujunga FROM table_name_37 WHERE pasadena = \"33%\"",
    "question_en": "What is the percentage of Tujunja when Pasadena is 33%?",
    "question_th": "เปอร์เซ็นต์ของ Tujunja คือเท่าใดเมื่อ Pasadena อยู่ที่ 33%?",
    "context": "CREATE TABLE table_name_37 (tujunga VARCHAR, pasadena VARCHAR)"
  },
  {
    "answer": "SELECT tujunga FROM table_name_33 WHERE la_crescenta__montrose = \"28%\"",
    "question_en": "What is the percentage of Tukunga when La Crescenta-Montrose is 28%?",
    "question_th": "เปอร์เซ็นต์ของ Tukunga เมื่อ La Crescenta-Montrose อยู่ที่ 28% เป็นเท่าใด",
    "context": "CREATE TABLE table_name_33 (tujunga VARCHAR, la_crescenta__montrose VARCHAR)"
  },
  {
    "answer": "SELECT pasadena FROM table_name_11 WHERE tujunga = \"36\"",
    "question_en": "What is the figure for Pasadena when Tujunga is 36?",
    "question_th": "ตัวเลขของ Pasadena เมื่อ Tujunga อายุ 36 ปีเป็นเท่าใด",
    "context": "CREATE TABLE table_name_11 (pasadena VARCHAR, tujunga VARCHAR)"
  },
  {
    "answer": "SELECT glendale FROM table_name_20 WHERE la_cañada_flintridge = \"5%\"",
    "question_en": "What is the percentage of Glendale when La Canada Flintridge is 5%?",
    "question_th": "เปอร์เซ็นต์ของ Glendale คือเท่าไรเมื่อ La Canada Flintridge อยู่ที่ 5%?",
    "context": "CREATE TABLE table_name_20 (glendale VARCHAR, la_cañada_flintridge VARCHAR)"
  },
  {
    "answer": "SELECT la_crescenta__montrose FROM table_name_64 WHERE glendale = \"$57,112\"",
    "question_en": "What is the figure for La Crescenta-Montrose when Gelndale is $57,112?",
    "question_th": "ตัวเลขของ La Crescenta-Montrose เมื่อ Gelndale อยู่ที่ 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_en": "How many conversions had 0 pens and 0 tries?",
    "question_th": "มีการแปลงกี่ครั้งที่มีปากกา 0 ด้ามและความพยายาม 0 ครั้ง",
    "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_en": "How many conversions did Severo Koroduadua Waqanibau have when he has 0 pens?",
    "question_th": "Severo Koroduadua Waqanibau มี Conversion กี่ครั้งเมื่อเขามี 0 ปากกา?",
    "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_en": "What is the home team's score at mcg?",
    "question_th": "สกอร์เจ้าบ้านที่เอ็มซีจีเท่าไหร่?",
    "context": "CREATE TABLE table_name_54 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_33 WHERE venue = \"western oval\"",
    "question_en": "What day is the venue the western oval?",
    "question_th": "สถานที่จัดงานวงรีตะวันตกคือวันไหน?",
    "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_en": "Which Bullet diameter has a Name of 11.4mm werndl m/73?",
    "question_th": "เส้นผ่านศูนย์กลางกระสุนใดมีชื่อ 11.4mm wendl 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_en": "Which Case length has a Rim diameter of 13.20 (.518)?",
    "question_th": "ความยาวตัวเรือนใดมีเส้นผ่านศูนย์กลางขอบ 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_en": "Which Bullet diameter has a Neck diameter of 12.17 (.479)?",
    "question_th": "เส้นผ่านศูนย์กลางกระสุนใดมีเส้นผ่านศูนย์กลางคอ 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_en": "Which Rim diameter has a Neck diameter of 11.84 (.466)?",
    "question_th": "เส้นผ่านศูนย์กลางขอบล้อใดมีเส้นผ่านศูนย์กลางคอ 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_en": "Which Case type has a Cartridge length of 64.77 (2.550)?",
    "question_th": "เคสประเภทใดมีความยาวตลับหมึก 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_en": "Which Case type has a Base diameter of 13.03 (.513), and a Case length of 63.5 (2.5)?",
    "question_th": "เคสประเภทใดที่มีเส้นผ่านศูนย์กลางฐาน 13.03 (.513) และความยาวเคส 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_en": "What day had 37,500 attending?",
    "question_th": "มีผู้เข้าร่วม 37,500 คนวันไหน?",
    "context": "CREATE TABLE table_name_56 (date VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_77 WHERE game_site = \"candlestick park\"",
    "question_en": "What day did they play at candlestick park?",
    "question_th": "พวกเขาเล่นที่สวนเชิงเทียนวันไหน?",
    "context": "CREATE TABLE table_name_77 (date VARCHAR, game_site VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(crowd) FROM table_name_96 WHERE away_team = \"fitzroy\"",
    "question_en": "What is the crowd size of the game when Fitzroy is the away team?",
    "question_th": "ขนาดฝูงชนของเกมเมื่อฟิตซ์รอยเป็นทีมเยือนคือเท่าไร?",
    "context": "CREATE TABLE table_name_96 (crowd VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_27 WHERE away_team = \"geelong\"",
    "question_en": "What is the venue when Geelong is the away team?",
    "question_th": "สนามไหนที่จีลองเป็นทีมเยือน?",
    "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_en": "How many Dwellings does Beverly Heights have that have a change percent larger than -5.2?",
    "question_th": "Beverly Heights มีอาคารพักอาศัยกี่หลังที่มีการเปลี่ยนแปลงเปอร์เซ็นต์มากกว่า -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_en": "What is the density of an area that is 1.38km and has a population more than 12924?",
    "question_th": "ความหนาแน่นของพื้นที่ 1.38 กม. และมีประชากรมากกว่า 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_en": "What is the average week number of all the matches where less than 22,604 people attended?",
    "question_th": "จำนวนสัปดาห์เฉลี่ยของการแข่งขันทั้งหมดที่มีผู้เข้าร่วมน้อยกว่า 22,604 คนคือเท่าใด",
    "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_en": "What is the largest crowd size at a match against the Chicago Cardinals after Week 10 of the season?",
    "question_th": "ขนาดฝูงชนที่ใหญ่ที่สุดในการแข่งขันกับ Chicago Cardinals หลังจากสัปดาห์ที่ 10 ของฤดูกาลคือเท่าใด?",
    "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_en": "What is the average crowd size when North Melbourne is the away team?",
    "question_th": "จำนวนฝูงชนโดยเฉลี่ยเมื่อ นอร์ท เมลเบิร์น เป็นทีมเยือนคือเท่าใด?",
    "context": "CREATE TABLE table_name_33 (crowd INTEGER, away_team VARCHAR)"
  },
  {
    "answer": "SELECT AVG(crowd) FROM table_name_29 WHERE away_team = \"hawthorn\"",
    "question_en": "What is the average crowd to watch Hawthorn as the away team?",
    "question_th": "ฝูงชนโดยเฉลี่ยที่ดูฮอว์ธอร์นเป็นทีมเยือนคือเท่าไร?",
    "context": "CREATE TABLE table_name_29 (crowd INTEGER, away_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_92 WHERE home_team = \"footscray\"",
    "question_en": "What away team played Footscray?",
    "question_th": "ทีมเยือนทีมไหนเล่น 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_en": "What was the size of the largest crowd that Essendon played in front of as the away team?",
    "question_th": "ฝูงชนที่ใหญ่ที่สุดที่เอสเซนดอนเล่นต่อหน้าทีมเยือนมีขนาดเท่าใด?",
    "context": "CREATE TABLE table_name_41 (crowd INTEGER, away_team VARCHAR)"
  },
  {
    "answer": "SELECT AVG(crowd) FROM table_name_9 WHERE venue = \"western oval\"",
    "question_en": "What was the average crowd at Western Oval?",
    "question_th": "ฝูงชนโดยเฉลี่ยที่ 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_en": "What is the sum of all the crowds that watched North Melbourne at home?",
    "question_th": "ผลรวมของฝูงชนทั้งหมดที่รับชม North Melbourne ที่บ้านเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_74 (crowd INTEGER, home_team VARCHAR)"
  },
  {
    "answer": "SELECT crowd FROM table_name_18 WHERE venue = \"victoria park\"",
    "question_en": "What was the crowd size at Victoria Park?",
    "question_th": "ขนาดฝูงชนที่ 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_en": "What was the winning score when there were 9 strokes advantage?",
    "question_th": "สกอร์ชนะเมื่อได้เปรียบ 9 จังหวะเป็นเท่าไหร่?",
    "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_en": "What was the margin of victory on Apr 23, 1967?",
    "question_th": "อะไรคือส่วนต่างของชัยชนะในวันที่ 23 เมษายน พ.ศ. 2510?",
    "context": "CREATE TABLE table_name_56 (margin_of_victory VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT make FROM table_name_32 WHERE driver = \"brian vickers\"",
    "question_en": "What make of car did Brian Vickers drive?",
    "question_th": "Brian Vickers ขับรถยี่ห้ออะไร",
    "context": "CREATE TABLE table_name_32 (make VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT AVG(car__number) FROM table_name_12 WHERE points = \"109\"",
    "question_en": "What is the average car number of all the drivers with 109 points?",
    "question_th": "หมายเลขรถเฉลี่ยของผู้ขับขี่ทั้งหมด 109 คะแนนคือเท่าใด",
    "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_en": "What is the average car number of all the drivers who have won $111,683?",
    "question_th": "หมายเลขรถเฉลี่ยของนักแข่งทั้งหมดที่ได้รับรางวัล $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_en": "How many people were in the crowd when Essendon was the home team?",
    "question_th": "ตอนที่เอสเซนดอนเป็นเจ้าบ้านมีคนอยู่ในฝูงชนกี่คน?",
    "context": "CREATE TABLE table_name_78 (crowd VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_16 WHERE away_team = \"geelong\"",
    "question_en": "Which home team competed against the away team Geelong?",
    "question_th": "เจ้าบ้านทีมไหนแข่งกับทีมเยือน จีลอง?",
    "context": "CREATE TABLE table_name_16 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT SUM(crowd) FROM table_name_32 WHERE venue = \"mcg\"",
    "question_en": "How many people were present in a total of every crowd at the MCG venue?",
    "question_th": "จากฝูงชนทุกกลุ่มที่งาน MCG มีกี่คน?",
    "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_en": "What was the score for the home team of Essendon?",
    "question_th": "เจ้าบ้าน เอสเซนดอน สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_71 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT SUM(crowd) FROM table_name_35 WHERE venue = \"glenferrie oval\"",
    "question_en": "What is the sum of all crowds present at the Glenferrie Oval venue?",
    "question_th": "จำนวนฝูงชนทั้งหมดที่มาร่วมงาน Glenferrie Oval เป็นเท่าใด",
    "context": "CREATE TABLE table_name_35 (crowd INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_name_28 WHERE mayor = \"achille variati\"",
    "question_en": "What party was achille variati afilliated with?",
    "question_th": "achille variati เข้าร่วมกับฝ่ายใด?",
    "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_en": "In the election earlier than 2012 how many Inhabitants had a Party of five star movement?",
    "question_th": "ในการเลือกตั้งก่อนปี 2555 ประชาชนมีพรรคระดับห้าดาวกี่คน?",
    "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_en": "How many Inhabitants were in the democratic party for an election before 2009 for Mayor of stefano cimatti?",
    "question_th": "มีผู้อยู่อาศัยกี่คนในพรรคประชาธิปไตยสำหรับการเลือกตั้งก่อนปี 2009 สำหรับนายกเทศมนตรีของ 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_en": "At 96.76mph speed, what is the Time?",
    "question_th": "ที่ความเร็ว 96.76 ไมล์ต่อชั่วโมง เวลาคืออะไร?",
    "context": "CREATE TABLE table_name_76 (time VARCHAR, speed VARCHAR)"
  },
  {
    "answer": "SELECT rider FROM table_name_92 WHERE time = \"1:06.02.0\"",
    "question_en": "Which Rider has a 1:06.02.0 Time?",
    "question_th": "ไรเดอร์คนไหนที่มีเวลา 1:06.02.0?",
    "context": "CREATE TABLE table_name_92 (rider VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(rank) FROM table_name_8 WHERE rider = \"ray pickrell\"",
    "question_en": "How many Ranks have ray pickrell as a Rider?",
    "question_th": "Ray Pickrell ในฐานะ Rider มีกี่อันดับ?",
    "context": "CREATE TABLE table_name_8 (rank VARCHAR, rider VARCHAR)"
  },
  {
    "answer": "SELECT MAX(crowd) FROM table_name_49 WHERE away_team = \"hawthorn\"",
    "question_en": "What is the largest crowd when the away team is Hawthorn?",
    "question_th": "กองเชียร์เยอะสุดเมื่อทีมเยือนคือฮอว์ธอร์น?",
    "context": "CREATE TABLE table_name_49 (crowd INTEGER, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_45 WHERE away_team = \"carlton\"",
    "question_en": "What date was the game when the away team was carlton?",
    "question_th": "แมตช์วันที่เท่าไหร่ทีมเยือนเป็นคาร์ลตัน?",
    "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_en": "What is the score of the away team when the crowd was larger than 8,000?",
    "question_th": "ทีมเยือนเมื่อคนดูเกิน 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_en": "What was the away team when the game was at corio oval?",
    "question_th": "ทีมเยือนเป็นทีมไหนเมื่อเกมที่โคริโอโอวัล?",
    "context": "CREATE TABLE table_name_53 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_61 WHERE year = 2007",
    "question_en": "What is the location in 2007?",
    "question_th": "2550 ตั้งอยู่ที่ใด?",
    "context": "CREATE TABLE table_name_61 (location VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_21 WHERE theme = \"fate or fortune\"",
    "question_en": "What date has a theme of fate or fortune?",
    "question_th": "วันไหนมีหัวข้อเรื่องโชคลาภหรือโชคลาภ?",
    "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_en": "What is the earliest year it was located in gelredome, arnhem, and a Anthem of technoboy - next dimensional world?",
    "question_th": "ปีแรกสุดที่ตั้งอยู่ในเจลเรโดม อาร์เนม และเพลงสรรเสริญพระบารมีเทคโนบอย - โลกมิติถัดไปคือเมื่อใด",
    "context": "CREATE TABLE table_name_74 (year INTEGER, location VARCHAR, anthem VARCHAR)"
  },
  {
    "answer": "SELECT sweet_sixteen FROM table_name_95 WHERE conference = \"colonial\"",
    "question_en": "What Sweet Sixteen team is in the Colonial conference?",
    "question_th": "ทีม Sweet Sixteen คนไหนในการประชุม Colonial?",
    "context": "CREATE TABLE table_name_95 (sweet_sixteen VARCHAR, conference VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_76 WHERE label = \"spunk\"",
    "question_en": "What date is associated with the Spunk label?",
    "question_th": "วันที่ใดที่เกี่ยวข้องกับป้ายกำกับ Spunk?",
    "context": "CREATE TABLE table_name_76 (date VARCHAR, label VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_2 WHERE catalog = \"chem036cd\"",
    "question_en": "What label has a catalog of chem036cd?",
    "question_th": "ฉลากใดมีแค็ตตาล็อกของ 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_en": "What label is associated with the United Kingdom and the chem036 catalog?",
    "question_th": "ฉลากใดที่เกี่ยวข้องกับสหราชอาณาจักรและแค็ตตาล็อก chem036",
    "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_en": "What is the listed crowd when essendon is the away squad?",
    "question_th": "ฝูงชนในรายการเมื่อเอสเซนดอนเป็นทีมเยือนคือใคร?",
    "context": "CREATE TABLE table_name_68 (crowd VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_98 WHERE crowd > 30 OFFSET 000",
    "question_en": "What venue featured a crowd of over 30,000?",
    "question_th": "สถานที่ใดที่มีฝูงชนมากกว่า 30,000 คน?",
    "context": "CREATE TABLE table_name_98 (venue VARCHAR, crowd INTEGER)"
  },
  {
    "answer": "SELECT crowd FROM table_name_28 WHERE venue = \"junction oval\"",
    "question_en": "What was the listed crowd at junction oval?",
    "question_th": "ฝูงชนที่อยู่ในรายการตรงวงรีทางแยกคือคนไหน?",
    "context": "CREATE TABLE table_name_28 (crowd VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_97 WHERE event = \"1500 m freestyle\"",
    "question_en": "What date was the 1500 m freestyle competition?",
    "question_th": "การแข่งขันฟรีสไตล์ 1,500 ม. จัดวันที่เท่าไหร่?",
    "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_en": "Where were the 2008 championships with a time of 7:56.90 held?",
    "question_th": "การแข่งขันชิงแชมป์ปี 2008 ด้วยเวลา 7:56.90 จัดขึ้นที่ไหน?",
    "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_en": "What is the home team score for Footscray?",
    "question_th": "สกอร์เจ้าบ้าน ฟุตสเครย์ คืออะไร?",
    "context": "CREATE TABLE table_name_22 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_9 WHERE venue = \"western oval\"",
    "question_en": "What home team played at western oval?",
    "question_th": "ทีมเหย้าทีมใดเล่นที่เวสเทิร์นโอวัล?",
    "context": "CREATE TABLE table_name_9 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_48 WHERE week = 4",
    "question_en": "What was the score of the Browns week 4 game?",
    "question_th": "คะแนนของเกม Browns สัปดาห์ที่ 4 คืออะไร?",
    "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_en": "What year has the wild side of soccer! as the slogan?",
    "question_th": "ปีไหนที่มีด้านที่ดุร้ายของฟุตบอล! เป็นสโลแกนเหรอ?",
    "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–7356\"",
    "question_en": "Which LNER 1946 number is from 1892 and has an LNER number of 7347–7356?",
    "question_th": "หมายเลข LNER 1946 ใดมาจากปี 1892 และมีหมายเลข LNER 7347–7356",
    "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_en": "What is order S24's LNER 1946 number?",
    "question_th": "หมายเลข LNER 1946 ของคำสั่งซื้อ S24 คืออะไร",
    "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_en": "Who is the away side at corio oval?",
    "question_th": "ทีมเยือนโคริโอโอวัลคือใคร?",
    "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_en": "Who is the home team when melbourne is the away team?",
    "question_th": "เจ้าบ้านคือใคร เมื่อเมลเบิร์นเป็นทีมเยือน?",
    "context": "CREATE TABLE table_name_47 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_80 WHERE away_team = \"fitzroy\"",
    "question_en": "What is the venue when fitzroy was the away team?",
    "question_th": "สนามไหนที่ฟิตซ์รอยเป็นทีมเยือน?",
    "context": "CREATE TABLE table_name_80 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_51 WHERE venue = \"punt road oval\"",
    "question_en": "What day does the team play at punt road oval?",
    "question_th": "ทีมงานเล่นที่พันท์โรดโอวัลวันไหนครับ?",
    "context": "CREATE TABLE table_name_51 (date VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(week) FROM table_name_30 WHERE attendance > 84 OFFSET 816",
    "question_en": "How many weeks had an attendance larger than 84,816?",
    "question_th": "มีผู้เข้าร่วมมากกว่า 84,816 คนกี่สัปดาห์?",
    "context": "CREATE TABLE table_name_30 (week VARCHAR, attendance INTEGER)"
  },
  {
    "answer": "SELECT date FROM table_name_57 WHERE week = 4",
    "question_en": "What is the date of week 4?",
    "question_th": "สัปดาห์ที่ 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_en": "What is the lowest attendance on September 3, 1972?",
    "question_th": "ผู้เข้าร่วมต่ำสุดในวันที่ 3 กันยายน พ.ศ. 2515 คือเท่าใด",
    "context": "CREATE TABLE table_name_52 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_65 WHERE venue = \"victoria park\"",
    "question_en": "Who was the away team at the game at Victoria Park?",
    "question_th": "ทีมเยือนในเกมที่วิคตอเรีย พาร์คคือใคร?",
    "context": "CREATE TABLE table_name_65 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_38 WHERE away_team = \"footscray\"",
    "question_en": "When was the game when Footscray was the away team?",
    "question_th": "เกมคือเมื่อไหร่ที่ฟุตสเครย์เป็นทีมเยือน?",
    "context": "CREATE TABLE table_name_38 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(laps) FROM table_name_41 WHERE points = \"5\"",
    "question_en": "What is the highest number of laps for the driver with 5 points?",
    "question_th": "นักแข่งที่ได้ 5 แต้มทำรอบสูงสุดได้เท่าไหร่?",
    "context": "CREATE TABLE table_name_41 (laps INTEGER, points VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_35 WHERE driver = \"jan heylen\"",
    "question_en": "What team does jan heylen race for?",
    "question_th": "แจน เฮย์เลนลงแข่งให้กับทีมใด",
    "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_en": "What was the result of the game after Week 13 on December 8, 1991?",
    "question_th": "ผลลัพธ์ของเกมหลังสัปดาห์ที่ 13 เมื่อวันที่ 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_en": "Who did the Patriots play in week 4?",
    "question_th": "ผู้รักชาติเล่นใครในสัปดาห์ที่ 4",
    "context": "CREATE TABLE table_name_43 (opponent VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_37 WHERE date = \"december 22, 1991\"",
    "question_en": "What was the result of the game on December 22, 1991?",
    "question_th": "ผลของเกมเมื่อวันที่ 22 ธันวาคม 1991 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_37 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MIN(silver) FROM table_name_99 WHERE rank > 8",
    "question_en": "What is the fewest number of silver medals a nation who ranked below 8 received?",
    "question_th": "ประเทศที่อันดับต่ำกว่า 8 ได้รับรางวัลเหรียญเงินน้อยที่สุดคือเท่าใด",
    "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_en": "Which place has points larger than 1, a bmw machine, and a time of 1:18.47.6?",
    "question_th": "สถานที่ใดมีคะแนนมากกว่า 1 เครื่อง BMW และเวลา 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_en": "How many total laps did the Chevrolet that won $97,508 make?",
    "question_th": "เชฟโรเลตที่ได้รับรางวัล 97,508 ดอลลาร์ทำรอบได้ทั้งหมดกี่รอบ",
    "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_en": "What away team played at Brunswick Street Oval?",
    "question_th": "ทีมเยือนทีมไหนเล่นที่สนามบรันสวิค สตรีท โอวัล?",
    "context": "CREATE TABLE table_name_23 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT AVG(attendance) FROM table_name_10 WHERE week > 16",
    "question_en": "What is the average attendance after week 16?",
    "question_th": "ผู้เข้าร่วมโดยเฉลี่ยหลังจากสัปดาห์ที่ 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_en": "How many people were injured in total in East Champaran, Bihar with more than 2 people killed?",
    "question_th": "มีผู้ได้รับบาดเจ็บทั้งหมดกี่คนในจัมปารันตะวันออก, พิหาร และมีผู้เสียชีวิตมากกว่า 2 ราย?",
    "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_en": "What is the least amount of injuries in Dantewada, Chhattisgarh when 8 people were killed?",
    "question_th": "จำนวนการบาดเจ็บน้อยที่สุดใน Dantewada, Chhattisgarh เมื่อมีคนเสียชีวิต 8 รายคือเท่าใด?",
    "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_en": "Which team plays home at Princes Park?",
    "question_th": "ทีมไหนเล่นในบ้านที่ 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_en": "Which match where Hawthorn was the away team had the largest crowd?",
    "question_th": "นัดไหนที่ฮอว์ธอร์นเป็นทีมเยือนมีผู้ชมมากที่สุด?",
    "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_en": "What was the away team's score at the match played at The Western Oval?",
    "question_th": "คะแนนของทีมเยือนในแมตช์ที่เล่นที่เดอะ เวสเทิร์น โอวัล เป็นเท่าไหร่?",
    "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_en": "What air date has a red winner and an emergency braking challenge?",
    "question_th": "ออกอากาศวันไหนที่มีผู้ชนะสีแดงและมีความท้าทายในการเบรกฉุกเฉิน?",
    "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_en": "On which air date was Robert the test-taker?",
    "question_th": "โรเบิร์ตเป็นผู้ทดสอบออกอากาศวันไหน?",
    "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_en": "What Nation of citizenship has a stock car vehicle with a year of 1999?",
    "question_th": "สัญชาติใดมีรถสต็อก รถ ปี 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_en": "What driver has a stock car vehicle with a year of 1999?",
    "question_th": "ผู้ขับขี่รถยนต์คนไหนมีรถสต็อกพร้อมปี 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_en": "What Nation of citizenship has a stock car vehicle with a year of 2012?",
    "question_th": "สัญชาติใดมีรถสต็อกรถยนต์พร้อมปี 2555?",
    "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_en": "What year has the vehicle of open wheel and a racing series of formula one with a Nation of citizenship in Germany.",
    "question_th": "ปีใดมีรถแบบเปิดล้อและชุดแข่งรถสูตรหนึ่งที่มีสัญชาติในประเทศเยอรมนี",
    "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_en": "On what Route is the mountain with a Rank less than 33 and an Elevation of 11,312 feet 3448 m?",
    "question_th": "ภูเขาที่มีอันดับน้อยกว่า 33 และระดับความสูง 11,312 ฟุต 3448 ม. อยู่บนเส้นทางใด",
    "context": "CREATE TABLE table_name_60 (route INTEGER, rank VARCHAR, elevation VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_68 WHERE route < 7",
    "question_en": "What is the Surface of the Route less than 7?",
    "question_th": "พื้นผิวของเส้นทางน้อยกว่า 7 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_68 (surface VARCHAR, route INTEGER)"
  },
  {
    "answer": "SELECT mountain_pass FROM table_name_87 WHERE rank = 21",
    "question_en": "What is the Mountain Pass with a 21 Rank?",
    "question_th": "Mountain Pass ที่มีอันดับ 21 คืออะไร?",
    "context": "CREATE TABLE table_name_87 (mountain_pass VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT elevation FROM table_name_1 WHERE route = 62",
    "question_en": "What is the Elevation of the mountain on Route 62?",
    "question_th": "ความสูงของภูเขาบนถนนหมายเลข 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_en": "What Mountain Pass has an Elevation of 10,001 feet 3048 m?",
    "question_th": "Mountain Pass ใดมีระดับความสูง 10,001 ฟุต 3,048 เมตร",
    "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–28–15\"",
    "question_en": "Which Score has a Visitor of ny rangers, and a Record of 19–28–15?",
    "question_th": "คะแนนใดที่มีผู้มาเยือนจากเรนเจอร์ และสถิติ 19–28–15",
    "context": "CREATE TABLE table_name_19 (score VARCHAR, visitor VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_24 WHERE date = \"february 9\"",
    "question_en": "Which Score has a Date of february 9?",
    "question_th": "สกอร์ไหนมีวันที่ 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–1\"",
    "question_en": "Which Game site has a Kickoff (ET) of 1:00pm, and a Record of 4–1?",
    "question_th": "เว็บไซต์เกมใดที่มีการคิกออฟ (ET) เวลา 13.00 น. และสถิติ 4–1",
    "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–1\"",
    "question_en": "Which Opponent has a Game site of heinz field, and a Record of 3–1?",
    "question_th": "ฝ่ายตรงข้ามคนใดที่มีไซต์เกมในสนามไฮนซ์และมีสถิติ 3–1?",
    "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–23\"",
    "question_en": "Which Kickoff (ET) has a Result of w 34–23?",
    "question_th": "Kickoff (ET) ใดมีผลการแข่งขัน w 34–23?",
    "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_en": "Which Floors have a Location of ljubljana, and a Name of tr3?",
    "question_th": "ชั้นใดมีที่ตั้งของลูบลิยานา และชื่อ 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_en": "Which Rank is the lowest one that has a Name of maribor cathedral?",
    "question_th": "อันดับไหนต่ำที่สุดที่มีชื่ออาสนวิหารมาริบอร์?",
    "context": "CREATE TABLE table_name_27 (rank INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_32 WHERE location = \"ljubljana\"",
    "question_en": "Which Name has a Location of ljubljana?",
    "question_th": "ชื่อใดมีที่ตั้งของลูบลิยานา?",
    "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_en": "Which Height Metres / feet has a Rank of 8, and Floors of 3x17?",
    "question_th": "ส่วนสูง เมตร/ฟุต ใดมีอันดับ 8 และพื้น 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_en": "What is the time for Moscow, Russia?",
    "question_th": "มอสโก รัสเซีย กี่โมงคะ?",
    "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_en": "Who was the opponent in London, England in a round less than 2?",
    "question_th": "คู่ต่อสู้ที่ลอนดอน ประเทศอังกฤษ ในรอบน้อยกว่า 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_en": "What was the method for opponent of Ivan Serati?",
    "question_th": "ฝ่ายตรงข้ามของ 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_en": "Which event had an opponent of Yasuhito Namekawa with a decision method?",
    "question_th": "เหตุการณ์ใดมีคู่ต่อสู้ของ Yasuhito Namekawa ด้วยวิธีการตัดสินใจ?",
    "context": "CREATE TABLE table_name_35 (event VARCHAR, opponent VARCHAR, method VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_78 WHERE opponent = \"satoshi honma\"",
    "question_en": "What is the time for an opponent of Satoshi Honma?",
    "question_th": "เวลาที่คู่ต่อสู้ของ 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_en": "What is the manufacturer serial number of the 1963 withdrawn year?",
    "question_th": "หมายเลขซีเรียลของผู้ผลิตปี 1963 ที่ถอนออกคืออะไร?",
    "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_en": "What was the year the MRWA with a wheel arrangement of 4-6-2 was introduced?",
    "question_th": "MRWA ที่มีการจัดเรียงล้อ 4-6-2 เปิดตัวในปีใด",
    "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_en": "What College/Junior/Club Team (League) has 6 as the Round?",
    "question_th": "ทีมวิทยาลัย/จูเนียร์/คลับ (ลีก) ใดมี 6 คนในรอบนี้",
    "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_en": "Which Player has United States as Nationality, forward as Position and a greater than 5 Round?",
    "question_th": "ผู้เล่นคนใดที่มีสัญชาติสหรัฐอเมริกา ส่งต่อในตำแหน่งและมากกว่า 5 รอบ?",
    "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_en": "Name the total number of round for wide receiver for kent state",
    "question_th": "ตั้งชื่อจำนวนรอบทั้งหมดสำหรับตัวรับแบบกว้างสำหรับรัฐเคนต์",
    "context": "CREATE TABLE table_name_51 (round VARCHAR, position VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT episodes FROM table_name_20 WHERE title = \"jewboy\"",
    "question_en": "what episode is called jewboy",
    "question_th": "ตอนไหนเรียกว่าจิวบอย",
    "context": "CREATE TABLE table_name_20 (episodes VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_13 WHERE result = \"won 1-0\"",
    "question_en": "Tell me the date with result of won 1-0",
    "question_th": "แจ้งวันที่ผลชนะ 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_en": "Name the attendance with result of won 1-0",
    "question_th": "ทายผลการเข้าร่วมด้วยผลชนะ 1-0",
    "context": "CREATE TABLE table_name_27 (attendance VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_43 WHERE opponent = \"staines town\"",
    "question_en": "Name the venue for staines town",
    "question_th": "ตั้งชื่อสถานที่สำหรับเมืองสเตนส์",
    "context": "CREATE TABLE table_name_43 (venue VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_name_98 WHERE catalog = \"kem 072\"",
    "question_en": "Which Region has a Catalog of kem 072?",
    "question_th": "ภูมิภาคใดมีแคตตาล็อกของ 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_en": "Which Region has a Format of cd album, and a Label of kemado records, and a Catalog of kem 071?",
    "question_th": "ภูมิภาคใดที่มีรูปแบบของอัลบั้มซีดี และฉลากของแผ่นเสียงเคมาโดะ และแค็ตตาล็อกของ 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_en": "Which Format has a Date of may 24, 2008?",
    "question_th": "รูปแบบใดมีวันที่ 24 พฤษภาคม 2551",
    "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_en": "Which Format has a Region of united states, and a Catalog of kem 072?",
    "question_th": "รูปแบบใดมีภูมิภาคของสหรัฐอเมริกา และแคตตาล็อกของ 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_en": "Which Label has a Region of united states, and a Format of lp album?",
    "question_th": "Label ใดที่มีภูมิภาคเป็นสหรัฐอเมริกา และมีรูปแบบของอัลบั้ม lp",
    "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_en": "Which Format has a Label of toy's factory records?",
    "question_th": "รูปแบบใดมีฉลากบันทึกโรงงานของเล่น?",
    "context": "CREATE TABLE table_name_93 (format VARCHAR, label VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_14 WHERE venue = \"rotterdam, netherlands\"",
    "question_en": "Which result's venue was in Rotterdam, Netherlands?",
    "question_th": "สนามผลการแข่งขันใดที่เมืองร็อตเตอร์ดัม ประเทศเนเธอร์แลนด์",
    "context": "CREATE TABLE table_name_14 (result VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_name_57 WHERE name = \"wallasey\"",
    "question_en": "what is the district of wallasey",
    "question_th": "วอลลาซีย์อำเภออะไร",
    "context": "CREATE TABLE table_name_57 (district VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT AVG(attendance) FROM table_name_97 WHERE week = 4",
    "question_en": "What is the average attendance at a week 4 game?",
    "question_th": "ผู้เข้าร่วมโดยเฉลี่ยในเกมสัปดาห์ที่ 4 เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_97 (attendance INTEGER, week VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_43 WHERE result = \"l 24–14\"",
    "question_en": "What venue held that game with a result of l 24–14?",
    "question_th": "สนามใดจัดเกมนั้นด้วยผลสกอร์ 24–14?",
    "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_en": "What is the average week of the game on November 22, 1964 attended by 48,065?",
    "question_th": "สัปดาห์เฉลี่ยของเกมในวันที่ 22 พฤศจิกายน พ.ศ. 2507 มีผู้เข้าร่วม 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_en": "Which name had more than 5 rounds and was a defensive end?",
    "question_th": "ชื่อไหนเกิน 5 นัดและเป็นแนวรับ?",
    "context": "CREATE TABLE table_name_51 (name VARCHAR, round VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT overall FROM table_name_65 WHERE pick__number = 14",
    "question_en": "Which overall's pick number was 14?",
    "question_th": "หมายเลขที่เลือกโดยรวมคือ 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_en": "Which highest pick number had Akeem Dent as a name and where the overall was less than 91?",
    "question_th": "หมายเลขตัวเลือกสูงสุดใดที่มี Akeem Dent เป็นชื่อ และคะแนนโดยรวมน้อยกว่า 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_en": "How many Points have an Opponent of @ los angeles kings and a Game larger than 4?",
    "question_th": "ฝ่ายตรงข้ามของ @ los angeles kings มีคะแนนกี่คะแนนและเกมที่ใหญ่กว่า 4 ได้กี่คะแนน?",
    "context": "CREATE TABLE table_name_89 (points INTEGER, opponent VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT AVG(october) FROM table_name_2 WHERE record = \"5–1–0\" AND game > 6",
    "question_en": "Which October has a Record of 5–1–0, and a Game larger than 6?",
    "question_th": "ตุลาคมใดที่มีสถิติ 5–1–0 และเกมที่ใหญ่กว่า 6",
    "context": "CREATE TABLE table_name_2 (october INTEGER, record VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT playoffs FROM table_name_88 WHERE year = \"2011\"",
    "question_en": "which playoffs took place during 2011?",
    "question_th": "รอบตัดเชือกใดเกิดขึ้นระหว่างปี 2554?",
    "context": "CREATE TABLE table_name_88 (playoffs VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT open_cup FROM table_name_36 WHERE year = \"2012\"",
    "question_en": "which open cup was in 2012?",
    "question_th": "ถ้วยเปิดใดในปี 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_en": "when did the usl a-league have conference finals?",
    "question_th": "usl a-league มีรอบชิงชนะเลิศการประชุมเมื่อใด",
    "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_en": "what opponent has an average less than 62 and a January average less than 6",
    "question_th": "ฝ่ายตรงข้ามมีค่าเฉลี่ยน้อยกว่า 62 และค่าเฉลี่ยเดือนมกราคมน้อยกว่า 6",
    "context": "CREATE TABLE table_name_34 (opponent VARCHAR, points VARCHAR, january VARCHAR)"
  },
  {
    "answer": "SELECT january FROM table_name_7 WHERE points = 51",
    "question_en": "what is the average for January with points of 51",
    "question_th": "ค่าเฉลี่ยเดือนมกราคมที่ 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_en": "How many vuts made for a player with 2 wins and under 7 top 5s?",
    "question_th": "ผู้เล่นที่ชนะ 2 ครั้งและติดท็อป 5 ต่ำกว่า 7 ครั้งจะสร้าง vut ได้กี่ครั้ง?",
    "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_en": "How many top 10s associated with 3 top 5s and under 22 cuts made?",
    "question_th": "มีกี่อันดับ 10 อันดับแรกที่เกี่ยวข้องกับ 3 อันดับสูงสุด 5 อันดับและต่ำกว่า 22 อันดับที่เกิดขึ้น",
    "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_en": "How many top 10s when he had under 1 top 5s?",
    "question_th": "เขามี 10 อันดับแรกกี่คนเมื่อเขามี 5 อันดับแรกต่ำกว่า 1?",
    "context": "CREATE TABLE table_name_61 (top_10 INTEGER, top_5 INTEGER)"
  },
  {
    "answer": "SELECT loss FROM table_name_96 WHERE record = \"26-9\"",
    "question_en": "What loss has 26-9 as a loss?",
    "question_th": "แพ้อะไร 26-9 ถือว่าขาดทุน?",
    "context": "CREATE TABLE table_name_96 (loss VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_68 WHERE home = \"pittsburgh\"",
    "question_en": "What was their record when they were at Pittsburgh?",
    "question_th": "บันทึกของพวกเขาเมื่ออยู่ที่พิตต์สเบิร์กคืออะไร?",
    "context": "CREATE TABLE table_name_68 (record VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_46 WHERE date = \"february 24\"",
    "question_en": "What was their record on February 24?",
    "question_th": "บันทึกของพวกเขาในวันที่ 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_en": "Driver Shaun Jones with a viper as a chassis is in what class?",
    "question_th": "คนขับ Shaun Jones ที่มีไวเปอร์เป็นแชสซีอยู่ในคลาสไหน?",
    "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_en": "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?",
    "question_th": "ผู้ขับขี่ที่ใช้เครื่องยนต์ rotax max ในรถ rotax รุ่นหนัก มีลูกศรเป็นแชสซี และอยู่ในทีม TWR Raceline Seats ชื่ออะไร",
    "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_en": "What type of engine does the BF Racing Marron Excavations have that also has Monaco as chassis and Lee Filliponi as the driver?",
    "question_th": "BF Racing Marron Excavations มีเครื่องยนต์ประเภทใดที่มี Monaco เป็นแชสซีและมี Lee Filliponi เป็นผู้ขับ",
    "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_en": "Which team does Colin Moore drive for?",
    "question_th": "Colin Moore ขับให้ทีมใด",
    "context": "CREATE TABLE table_name_12 (team VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_95 WHERE class = \"rotax light\"",
    "question_en": "What is the name of the team whose class is Rotax Light?",
    "question_th": "ทีมที่มีคลาส Rotax Light ชื่ออะไร?",
    "context": "CREATE TABLE table_name_95 (team VARCHAR, class VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_36 WHERE launch = \"1996\" AND hanzi = \"凤凰卫视中文台\"",
    "question_en": "Which company launched in 1996 and has a Hanzi of 凤凰卫视中文台?",
    "question_th": "บริษัทใดที่เปิดตัวในปี 1996 และมี Hanzi ของ 凤凰卫视中文台",
    "context": "CREATE TABLE table_name_36 (name VARCHAR, launch VARCHAR, hanzi VARCHAR)"
  },
  {
    "answer": "SELECT origin FROM table_name_62 WHERE hanzi = \"凤凰卫视电影台\"",
    "question_en": "Where did the Hanzi of 凤凰卫视电影台 originate?",
    "question_th": "Hanzi ของ 凤凰卫视电影台 มีต้นกำเนิดมาจากที่ไหน?",
    "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_en": "What is the Hanzi of Hong Kong in 1998?",
    "question_th": "Hanzi ของฮ่องกงในปี 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_en": "What is the Hanzi of Phoenix Television Chinese that launched in 1996?",
    "question_th": "Hanzi ของ Phoenix Television Chinese ที่เปิดตัวในปี 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_en": "Which Against is the highest one that has a Difference of 12?",
    "question_th": "Against อันไหนสูงที่สุดที่มีผลต่าง 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_en": "Which average Played has a Drawn smaller than 1, and Points larger than 4?",
    "question_th": "ค่าเฉลี่ยการเล่นใดที่มีการเสมอน้อยกว่า 1 และแต้มมากกว่า 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_en": "Which Position has a Played larger than 9?",
    "question_th": "ตำแหน่งใดที่มีการเล่นมากกว่า 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_en": "Which Lost is the highest one that has a Drawn smaller than 4, and a Played smaller than 9?",
    "question_th": "แพ้อันไหนคือแต้มที่สูงที่สุดที่มีการเสมอน้อยกว่า 4 และแต้มที่เล่นน้อยกว่า 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_en": "Which Points is the highest one that has a Position of 1, and a Lost smaller than 0?",
    "question_th": "คะแนนใดคือคะแนนสูงสุดที่มีตำแหน่ง 1 และแพ้น้อยกว่า 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_en": "Which District has a First Elected of 1904 and an Incumbent of Duncan E. Mckinlay?",
    "question_th": "เขตใดได้รับการเลือกตั้งครั้งแรกในปี 1904 และดำรงตำแหน่งของ 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_en": "What's the highest First Elected with a Result of Re-elected and DIstrict of California 5?",
    "question_th": "อะไรคือการเลือกตั้งครั้งแรกที่สูงที่สุดโดยมีผลการเลือกตั้งซ้ำและเขตแคลิฟอร์เนีย 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_en": "Which Incumbent has a District of California 8?",
    "question_th": "ผู้ดำรงตำแหน่งคนใดมีเขตแคลิฟอร์เนีย 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_en": "Which District has a Result of Re-elected and a First Elected of 1898?",
    "question_th": "เขตใดมีผลการเลือกตั้งซ้ำและได้รับการเลือกตั้งครั้งแรกในปี พ.ศ. 2441",
    "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_en": "Which Incumbent has a District of California 5?",
    "question_th": "ผู้ดำรงตำแหน่งคนใดมีเขตแคลิฟอร์เนีย 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_en": "Name the venue for friendly competition october 16, 2012",
    "question_th": "ตั้งชื่อสถานที่แข่งขันกระชับมิตรวันที่ 16 ตุลาคม 2555",
    "context": "CREATE TABLE table_name_89 (venue VARCHAR, competition VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_38 WHERE score = \"1-5\"",
    "question_en": "Name the date for score of 1-5",
    "question_th": "ตั้งชื่อวันที่ให้คะแนน 1-5",
    "context": "CREATE TABLE table_name_38 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT gold FROM table_name_68 WHERE year = 1994",
    "question_en": "What Gold has the Year of 1994?",
    "question_th": "ปี 1994 มีทองอะไรบ้าง?",
    "context": "CREATE TABLE table_name_68 (gold VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_name_22 WHERE location = \"bangkok\"",
    "question_en": "What's the lowest Year with the Location of Bangkok?",
    "question_th": "ปีต่ำสุดกับที่ตั้งของกรุงเทพฯคือปีใด?",
    "context": "CREATE TABLE table_name_22 (year INTEGER, location VARCHAR)"
  },
  {
    "answer": "SELECT silver FROM table_name_17 WHERE location = \"guangzhou\"",
    "question_en": "What Silver has the Location of Guangzhou?",
    "question_th": "What Silver มีที่ตั้งของกวางโจว?",
    "context": "CREATE TABLE table_name_17 (silver VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT gold FROM table_name_56 WHERE year = 2006",
    "question_en": "What Gold has the Year of 2006?",
    "question_th": "ปี 2549 มีทองคำอะไรบ้าง?",
    "context": "CREATE TABLE table_name_56 (gold VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT silver FROM table_name_20 WHERE gold = \"li ao\"",
    "question_en": "What Silver has a Golf of Li AO?",
    "question_th": "Silver อะไรมี 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_en": "What's the Bronze with the Year of 1998?",
    "question_th": "บรอนซ์กับปี 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_en": "What is the average number of silver medals for countries with 0 gold and rank under 3?",
    "question_th": "จำนวนเหรียญเงินโดยเฉลี่ยของประเทศที่มี 0 เหรียญทองและอันดับต่ำกว่า 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_en": "What is the average gold medals for countries with more than 0 bronze, more than 0 silver, rank over 2 and total over 3?",
    "question_th": "เหรียญทองโดยเฉลี่ยสำหรับประเทศที่มีมากกว่า 0 เหรียญทองแดง, มากกว่า 0 เหรียญเงิน, อันดับที่มากกว่า 2 และรวมมากกว่า 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_en": "What team had 10 Labs and the Driver was Alex Yoong?",
    "question_th": "ทีมไหนมี 10 Labs และคนขับคือ 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_en": "What is the Grid number for the Team from Italy?",
    "question_th": "หมายเลขกริดของทีมจากอิตาลีคืออะไร?",
    "context": "CREATE TABLE table_name_87 (grid VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_14 WHERE driver = \"narain karthikeyan\"",
    "question_en": "For what Team is Narain Karthikeyan the Driver?",
    "question_th": "นรินทร์ กรธิเกยัน เป็นนักแข่งของทีมไหน?",
    "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_en": "Which award has the category of the best direction of a musical?",
    "question_th": "รางวัลใดมีสาขากำกับละครเพลงยอดเยี่ยมที่สุด?",
    "context": "CREATE TABLE table_name_69 (award VARCHAR, category VARCHAR)"
  },
  {
    "answer": "SELECT winning_team FROM table_name_43 WHERE date = \"22 july\"",
    "question_en": "With a Date of 22 July, what is the Winning team?",
    "question_th": "กับวันที่ 22 ก.ค. ทีมไหนจะเป็นผู้ชนะ?",
    "context": "CREATE TABLE table_name_43 (winning_team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT winning_team FROM table_name_79 WHERE date = \"22 july\"",
    "question_en": "What Winning team has 22 July as a Date?",
    "question_th": "ทีมผู้ชนะคนใดมีวันที่ 22 กรกฎาคม เป็นเดท?",
    "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_en": "Who is the Winning Driver that has a Winning team of Engstler Motorsport Engstler Motorsport and also the Date 22 July?",
    "question_th": "ใครคือผู้ขับที่ชนะซึ่งมีทีมที่ชนะของ Engstler Motorsport Engstler Motorsport และวันที่ 22 กรกฎาคมด้วย",
    "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_en": "What Round was the Winning Team Engstler Motorsport Maurer Motorsport?",
    "question_th": "ทีมที่ชนะคือ 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_en": "Which player(s) was drafted by the Pittsburgh Penguins?",
    "question_th": "ผู้เล่นคนไหนที่ถูกดราฟท์โดยทีม 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_en": "What is the name of the award in a year more than 2005, and the Result of nominated?",
    "question_th": "ชื่อของรางวัลในหนึ่งปีมากกว่า 2005 คืออะไร และผลการเสนอชื่อเข้าชิงคืออะไร?",
    "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_en": "What is the award for the Star Awards earlier than 2005 and the result is won?",
    "question_th": "รางวัล Star Awards ก่อนปี 2548 คืออะไร และผลที่ได้คือ?",
    "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_en": "What is the organisation in 2011 that was nominated and the award of best info-ed programme host?",
    "question_th": "องค์กรใดในปี 2554 ที่ได้รับการเสนอชื่อเข้าชิงและได้รับรางวัลพิธีกรรายการ info-ed ที่ดีที่สุด?",
    "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_en": "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?",
    "question_th": "งานตัวแทนในอีกหนึ่งปีต่อมาหลังจากปี 2548 มีผลงานการเสนอชื่อเข้าชิงและรางวัลพิธีกรรายการวาไรตี้ยอดเยี่ยมชื่ออะไร?",
    "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_en": "What is the award for 1998 with Representative Work of city beat?",
    "question_th": "รางวัลปี 1998 กับ 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–1\"",
    "question_en": "Score of 2–1 has what record?",
    "question_th": "คะแนน 2–1 มีสถิติอะไรบ้าง?",
    "context": "CREATE TABLE table_name_66 (record VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_64 WHERE home = \"kings\"",
    "question_en": "Home of kings had what score?",
    "question_th": "Home of Kings ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_64 (score VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(points) FROM table_name_2 WHERE record = \"21–29–10\"",
    "question_en": "Record of 21–29–10 had what total number of points?",
    "question_th": "สถิติ 21–29–10 มีคะแนนรวมเท่าใด",
    "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_en": "How many wins did the team, which had more than 110 points, have in 1989?",
    "question_th": "ทีมที่มีคะแนนมากกว่า 110 แต้มชนะไปกี่ครั้งในปี 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_en": "What is the highest number of points the team with 0 wins had before 1992?",
    "question_th": "จำนวนคะแนนสูงสุดที่ทีมที่ชนะ 0 มีก่อนปี 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_en": "In what Round was Pick #12 drafted?",
    "question_th": "Pick #12 ได้รับการดราฟท์ในรอบใด",
    "context": "CREATE TABLE table_name_53 (round VARCHAR, pick__number VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_40 WHERE position = \"wide receiver\"",
    "question_en": "What Player is a Wide Receiver?",
    "question_th": "ผู้เล่นคนไหนที่เป็น Wide Receiver?",
    "context": "CREATE TABLE table_name_40 (player VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_1 WHERE college = \"connecticut\"",
    "question_en": "In what Round was a player from College of Connecticut drafted?",
    "question_th": "ผู้เล่นจากวิทยาลัยคอนเนตทิคัตถูกดราฟท์ในรอบใด",
    "context": "CREATE TABLE table_name_1 (round VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_97 WHERE pick__number = 321",
    "question_en": "What is the Position of Pick #321?",
    "question_th": "ตำแหน่ง 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_en": "What is Mark Cannon's College?",
    "question_th": "วิทยาลัยมาร์ค แคนนอน คืออะไร",
    "context": "CREATE TABLE table_name_45 (college VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT length_duration FROM table_name_85 WHERE date = \"april 19\"",
    "question_en": "What is the length and duration of the race on April 19?",
    "question_th": "การแข่งขันวันที่ 19 เมษายน มีความยาวและระยะเวลาเท่าไร?",
    "context": "CREATE TABLE table_name_85 (length_duration VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT circuit FROM table_name_46 WHERE date = \"september 20\"",
    "question_en": "What was the circuit had a race on September 20.",
    "question_th": "What is the Circuit มีการแข่งขันวันที่ 20 กันยายน",
    "context": "CREATE TABLE table_name_46 (circuit VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_54 WHERE length_duration = \"6 hours\"",
    "question_en": "What was the date of the race that lasted 6 hours?",
    "question_th": "การแข่งขันที่ยาวนานถึง 6 ชั่วโมงคือวันที่เท่าไหร่?",
    "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_en": "What are the classes for the circuit that has the Mazda Raceway Laguna Seca race.",
    "question_th": "สนามแข่งรถ Mazda Raceway Laguna Seca มีคลาสอะไรบ้าง",
    "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_en": "Which opponent has points less than 18, and a november greater than 11?",
    "question_th": "คู่ต่อสู้คนใดมีแต้มน้อยกว่า 18 และพฤศจิกายนมากกว่า 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_en": "What is the highest November that has a game less than 12, and @ detroit red wings as the opponent?",
    "question_th": "เดือนพฤศจิกายนสูงสุดที่มีเกมน้อยกว่า 12 นัด และ @ดีทรอยต์ เรดวิงส์ เป็นคู่ต่อสู้คืออะไร?",
    "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_en": "What record has a november greater than 11, and st. louis blues as the opponent?",
    "question_th": "บันทึกอะไรที่มีมากกว่าวันที่ 11 พฤศจิกายนและเซนต์ หลุยส์ บลูส์เป็นคู่ต่อสู้เหรอ?",
    "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_en": "What is the score when the record was 5-4-2?",
    "question_th": "เมื่อสถิติเป็น 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_en": "What is the score for the team with a record of 2-1?",
    "question_th": "สกอร์ของทีมด้วยสถิติ 2-1 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_81 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_49 WHERE record = \"3-2\"",
    "question_en": "Which home team has a record of 3-2?",
    "question_th": "เจ้าบ้านทีมไหนมีสถิติ 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_en": "What is the average wins in 250cc class for Bultaco with 8 points later than 1966?",
    "question_th": "ชัยชนะโดยเฉลี่ยในคลาส 250cc ของ Bultaco โดยมี 8 แต้มหลังปี 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_en": "Which class corresponds to more than 2 points, wins greater than 0, and a year earlier than 1973?",
    "question_th": "คลาสไหนตรงกับมากกว่า 2 แต้ม ชนะมากกว่า 0 และหนึ่งปีก่อนหน้าปี 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_en": "What is the sum of all points in 1975 with 0 wins?",
    "question_th": "ผลรวมของคะแนนทั้งหมดในปี 1975 ที่ชนะ 0 เป็นเท่าไหร่?",
    "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_en": "Which Country has a Score of 70-68-70-68=276?",
    "question_th": "ประเทศใดมีคะแนน 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_en": "What is the fastest lap in the Le Mans Bugatti circuit?",
    "question_th": "รอบที่เร็วที่สุดในสนาม Le Mans Bugatti คืออะไร?",
    "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_en": "What is the fastest lap of the Oschersleben circuit with Audi Sport Team ABT as the winning team?",
    "question_th": "อะไรคือรอบที่เร็วที่สุดของสนาม Oschersleben โดยมี Audi Sport Team ABT เป็นทีมที่ชนะ?",
    "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_en": "Who is the winning driver of the Oschersleben circuit with Timo Scheider as the pole position?",
    "question_th": "ใครคือนักแข่งที่ชนะในสนามออสเชอร์สเลเบน โดยมีทิโม ไชเดอร์เป็นโพลโพซิชั่น?",
    "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_en": "What is the winning team of the race on 31 August with Audi as the winning manufacturer and Timo Scheider as the winning driver?",
    "question_th": "ทีมใดที่ชนะการแข่งขันในวันที่ 31 สิงหาคม โดยมี Audi เป็นผู้ผลิตที่ชนะ และ Timo Scheider เป็นนักแข่งที่ชนะ",
    "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_en": "Who is the winning driver of the race with no race as the winning manufacturer?",
    "question_th": "ใครคือนักแข่งที่ชนะการแข่งขันโดยไม่มีการแข่งขันในฐานะผู้ผลิตที่ชนะ?",
    "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–6, 6–3, 7–6\"",
    "question_en": "In what Tournament was the Score of 3–6, 6–3, 7–6 in a match played on a hard Surface?",
    "question_th": "ในการแข่งขันใดที่มีคะแนน 3–6, 6–3, 7–6 ในการแข่งขันที่เล่นบนพื้นผิวแข็ง",
    "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–4, 6–2\"",
    "question_en": "Who was the Partner in a game with the Score of 6–4, 6–2 on a hard surface?",
    "question_th": "ใครคือคู่หูในเกมที่มีคะแนน 6–4, 6–2 บนพื้นแข็ง?",
    "context": "CREATE TABLE table_name_74 (partner VARCHAR, surface VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_59 WHERE score = \"6–4, 6–2\"",
    "question_en": "On what Date was the Score 6–4, 6–2?",
    "question_th": "คะแนน 6–4, 6–2 คือวันไหน?",
    "context": "CREATE TABLE table_name_59 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_64 WHERE avg_attendance = \"5,445\"",
    "question_en": "When was the year that had an average attendance of 5,445?",
    "question_th": "ปีไหนที่มีผู้เข้าร่วมเฉลี่ย 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_en": "In 2010-11, what was the League name?",
    "question_th": "ฤดูกาล 2010-11 ลีกมีชื่อว่าอะไร?",
    "context": "CREATE TABLE table_name_18 (league VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT lost FROM table_name_66 WHERE \"played\" = \"played\"",
    "question_en": "If the Played was played, what is the lost?",
    "question_th": "ถ้าเล่นไปแล้วจะเสียอะไร?",
    "context": "CREATE TABLE table_name_66 (lost VARCHAR)"
  },
  {
    "answer": "SELECT tries_for FROM table_name_76 WHERE losing_bonus = \"6\"",
    "question_en": "If the losing bonus was 6, what is the tries for?",
    "question_th": "หากโบนัสที่เสียไปคือ 6 จะพยายามเพื่ออะไร?",
    "context": "CREATE TABLE table_name_76 (tries_for VARCHAR, losing_bonus VARCHAR)"
  },
  {
    "answer": "SELECT drawn FROM table_name_51 WHERE points_against = \"371\"",
    "question_en": "If points against was 371, what is the drawn?",
    "question_th": "ถ้าแต้มต่อเป็น 371 เสมอกันเท่าไหร่?",
    "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_en": "If played is 22 and the tries against are 43, what are the points?",
    "question_th": "ถ้าเล่นได้ 22 ครั้งและลองเล่นได้ 43 แต้มจะได้อะไร?",
    "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_en": "What's the losing bonus of Crumlin RFC?",
    "question_th": "โบนัสการสูญเสียของ Crumlin RFC คืออะไร?",
    "context": "CREATE TABLE table_name_21 (losing_bonus VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_9 WHERE week > 16",
    "question_en": "What's the Opponent with a Week that's larger than 16?",
    "question_th": "ฝ่ายตรงข้ามที่มีสัปดาห์มากกว่า 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_en": "What's the Game SIte with an Opponent of San Diego Chargers?",
    "question_th": "Game SIte กับฝ่ายตรงข้ามของ 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_en": "Which Silver is the lowest one that has a Gold larger than 0, and a Rank of total, and a Bronze smaller than 32?",
    "question_th": "เงินใดเป็นเงินที่ต่ำที่สุดที่มีทองคำมากกว่า 0 และอันดับรวม และทองแดงน้อยกว่า 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_en": "Which Bronze is the lowest one that has a Rank of 3, and a Silver smaller than 2?",
    "question_th": "Bronze ใดคืออันที่ต่ำที่สุดที่มีอันดับ 3 และ Silver ที่น้อยกว่า 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_en": "Which Silver has a Nation of china, and a Bronze smaller than 7?",
    "question_th": "เงินใดมีชาติจีนและทองแดงน้อยกว่า 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_en": "Which Nation has a Gold of 0, and a Bronze smaller than 6, and a Rank of 6?",
    "question_th": "ประเทศใดมีทองคำเป็น 0 และทองแดงน้อยกว่า 6 และอันดับ 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_en": "What score has detroit as the home, and December 9 as the date?",
    "question_th": "คะแนนใดที่มีดีทรอยต์เป็นเจ้าบ้านและวันที่ 9 ธันวาคมเป็นวันที่?",
    "context": "CREATE TABLE table_name_78 (score VARCHAR, home VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_91 WHERE visitor = \"mtl. maroons\"",
    "question_en": "What score has mtl. maroons as the visitor?",
    "question_th": "mtl.มีคะแนนอะไรบ้าง.. maroons ในฐานะแขกเหรอ?",
    "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_en": "What record has detroit as the home and mtl. maroons as the visitor?",
    "question_th": "มีสถิติอะไรดีทรอยต์เป็นบ้านและเอ็มทีแอล maroons ในฐานะแขกเหรอ?",
    "context": "CREATE TABLE table_name_99 (record VARCHAR, home VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_55 WHERE date = \"december 14\"",
    "question_en": "What visitor has December 14 as the date?",
    "question_th": "แขกคนไหนมีวันที่ 14 ธันวาคม เป็นวันที่?",
    "context": "CREATE TABLE table_name_55 (visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(fcwc) FROM table_name_38 WHERE years = \"1958–1965\" AND icfc < 11",
    "question_en": "What is the highest number of FCWC in the Years of 1958–1965, and an ICFC smaller than 11?",
    "question_th": "จำนวน FCWC สูงสุดในปี พ.ศ. 2501-2508 และ ICFC น้อยกว่า 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_en": "What is the lowest ranking associated with a total of 23?",
    "question_th": "อันดับต่ำสุดที่เกี่ยวข้องกับผลรวม 23 คืออะไร?",
    "context": "CREATE TABLE table_name_51 (ranking INTEGER, total VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_44 WHERE date = \"13 november 2006\"",
    "question_en": "Which is the Outcome on 13 november 2006?",
    "question_th": "ผลลัพธ์ในวันที่ 13 พฤศจิกายน 2549 คืออะไร?",
    "context": "CREATE TABLE table_name_44 (outcome VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_58 WHERE opponent = \"melanie south\"",
    "question_en": "Which Score has an Opponent of melanie south?",
    "question_th": "สกอร์ไหนมีคู่ต่อสู้ของเมลานีเซาธ์?",
    "context": "CREATE TABLE table_name_58 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_83 WHERE opponent = \"lindsay lee-waters\"",
    "question_en": "Which Outcome has a Opponent of lindsay lee-waters?",
    "question_th": "ผลลัพธ์ใดมีฝ่ายตรงข้ามของ 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_en": "Which Opponent is on 17 november 2002?",
    "question_th": "ฝ่ายตรงข้ามคนใดคือวันที่ 17 พฤศจิกายน พ.ศ. 2545?",
    "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_en": "Which Tournament has an Outcome of winner on 19 october 2008?",
    "question_th": "ทัวร์นาเมนต์ใดมีผลลัพธ์เป็นผู้ชนะในวันที่ 19 ตุลาคม 2551?",
    "context": "CREATE TABLE table_name_25 (tournament VARCHAR, outcome VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_72 WHERE opponent = \"evie dominikovic\"",
    "question_en": "When is an Opponent of evie dominikovic?",
    "question_th": "เมื่อไรจะเป็นฝ่ายตรงข้ามของ evie domininikovic?",
    "context": "CREATE TABLE table_name_72 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent_number FROM table_name_73 WHERE attendance = \"45,000\"",
    "question_en": "Who was the opponent at the game attended by 45,000?",
    "question_th": "คู่ต่อสู้ในเกมที่มีผู้เข้าร่วม 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_en": "Which Bleeding time has a Condition of factor x deficiency as seen in amyloid purpura?",
    "question_th": "เวลาเลือดออกในข้อใดมีภาวะขาดแฟคเตอร์ x ดังที่เห็นในจ้ำอะไมลอยด์",
    "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_en": "Which Platelet count has a Condition of bernard-soulier syndrome?",
    "question_th": "จำนวนเกล็ดเลือดใดที่มีภาวะเบอร์นาร์ด-ซูลิเยร์ซินโดรม",
    "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_en": "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?",
    "question_th": "เวลาใดของ Prothrombin ที่นับเกล็ดเลือดว่าไม่ได้รับผลกระทบ และระยะเวลาเลือดออกคือไม่ได้รับผลกระทบ และเวลา thromboplastin บางส่วนเป็นปกติหรือนานกว่าเล็กน้อย",
    "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_en": "Which Platelet count has a Condition of factor v deficiency?",
    "question_th": "เกล็ดเลือดในข้อใดมีภาวะขาดแฟคเตอร์ v?",
    "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_en": "Which Condition has a Bleeding time of unaffected, and a Partial thromboplastin time of prolonged, and a Prothrombin time of unaffected?",
    "question_th": "สภาวะใดที่มีระยะเวลาเลือดออกคือไม่ได้รับผลกระทบ และมีเวลา thromboplastin บางส่วนนานกว่า และเวลา Prothrombin ไม่ได้รับผลกระทบ",
    "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_en": "What is hemophilia's bleeding time?",
    "question_th": "เวลาตกเลือดของโรคฮีโมฟีเลียคือเท่าไร?",
    "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_en": "Which Bronze has a Year smaller than 1994, and a Silver of south korea?",
    "question_th": "เหรียญทองแดงใดที่มีปีที่เล็กกว่าปี 1994 และเหรียญเงินของเกาหลีใต้",
    "context": "CREATE TABLE table_name_45 (bronze VARCHAR, year VARCHAR, silver VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_10 WHERE silver = \"japan\"",
    "question_en": "Which Location has a Silver of japan?",
    "question_th": "สถานที่ใดมีเหรียญเงินของญี่ปุ่น?",
    "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_en": "Which Year is the highest one that has a Bronze of south korea, and a Silver of philippines?",
    "question_th": "ปีไหนสูงที่สุดที่ได้เหรียญทองแดงของเกาหลีใต้ และเหรียญเงินของฟิลิปปินส์?",
    "context": "CREATE TABLE table_name_27 (year INTEGER, bronze VARCHAR, silver VARCHAR)"
  },
  {
    "answer": "SELECT SUM(year) FROM table_name_4 WHERE silver = \"japan\"",
    "question_en": "How many years has Japan won silver?",
    "question_th": "ญี่ปุ่นได้เหรียญเงินมากี่ปีแล้ว?",
    "context": "CREATE TABLE table_name_4 (year INTEGER, silver VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_75 WHERE attendance = \"19,823\"",
    "question_en": "What was the Indians record during the game that had 19,823 fans attending?",
    "question_th": "บันทึกของชาวอินเดียนแดงในระหว่างเกมที่มีแฟน ๆ เข้าร่วม 19,823 คนเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_75 (record VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_89 WHERE record = \"14-28\"",
    "question_en": "What date did the Indians have a record of 14-28?",
    "question_th": "ชาวอินเดียมีสถิติ 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_en": "In what Round was George Thomas Picked?",
    "question_th": "George Thomas ถูกเลือกในรอบใด",
    "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_en": "What was the first Round with a Pick # greater than 1 and 140 Overall?",
    "question_th": "รอบแรกที่มี Pick # มากกว่า 1 และ 140 โดยรวมคืออะไร",
    "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_en": "What is Aundray Bruce's Pick #?",
    "question_th": "#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_en": "In what Round with an Overall greater than 306 was the pick from the College of Virginia Tech?",
    "question_th": "ในรอบใดที่มีคะแนนรวมมากกว่า 306 ที่ได้รับเลือกจากวิทยาลัยเวอร์จิเนียเทค",
    "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_en": "Which highest wins number had Kawasaki as a team, 95 points, and a year prior to 1981?",
    "question_th": "หมายเลขชัยชนะสูงสุดใดที่คาวาซากิเป็นทีม 95 แต้ม และหนึ่งปีก่อนปี 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_en": "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?",
    "question_th": "มีกี่คะแนนที่มีคลาส 250cc หนึ่งปีก่อนปี 1978 มี Yamaha เป็นทีม และที่ชนะมากกว่า 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_en": "What is the mean year number where there are more than 0 wins, the class is 250cc, and the points are 95?",
    "question_th": "เลขปีเฉลี่ยที่ชนะมากกว่า 0 คลาสคือ 250cc และแต้มคือ 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_en": "What is the score on december 10?",
    "question_th": "คะแนนวันที่ 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_en": "What is the date for the home detroit and visitor was chicago?",
    "question_th": "วันที่สำหรับโฮมดีทรอยต์และผู้มาเยือนคือชิคาโกคือเมื่อใด",
    "context": "CREATE TABLE table_name_82 (date VARCHAR, home VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_66 WHERE date = \"december 3\"",
    "question_en": "Who is the visitor on december 3?",
    "question_th": "ใครคือผู้มาเยือนในวันที่ 3 ธันวาคม?",
    "context": "CREATE TABLE table_name_66 (visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_95 WHERE date = \"december 31\"",
    "question_en": "Who is the visitor on the date december 31?",
    "question_th": "ผู้มาเยือนในวันที่ 31 ธันวาคม คือใคร?",
    "context": "CREATE TABLE table_name_95 (visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_14 WHERE date = \"11 november\"",
    "question_en": "What is the location of the race on 11 November?",
    "question_th": "สนามแข่งขันวันที่ 11 พฤศจิกายน อยู่ที่ใด?",
    "context": "CREATE TABLE table_name_14 (location VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_60 WHERE location = \"burkina faso\"",
    "question_en": "Who is the winner of the race in Burkina Faso?",
    "question_th": "ใครเป็นผู้ชนะการแข่งขันที่บูร์กินาฟาโซ?",
    "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_en": "What is the release date of Martial Law: Take Out?",
    "question_th": "กฎอัยการศึก: 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_en": "Which publisher released Martial Law: Substitutes?",
    "question_th": "สำนักพิมพ์ใดออกกฎอัยการศึก: สารทดแทน?",
    "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_en": "Which country had a release of 1 VCD titled Martial Law: Substitutes?",
    "question_th": "ประเทศใดมีวีซีดีชื่อกฎอัยการศึก: สารทดแทนออก 1 แผ่น?",
    "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_en": "Who was the publisher of Martial Law: Dead Ringers?",
    "question_th": "ใครคือผู้จัดพิมพ์กฎอัยการศึก: 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–28\"",
    "question_en": "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–28?",
    "question_th": "ผู้แพ้ชื่ออะไรเมื่อผู้ชนะคือผู้รักชาติชาวอังกฤษคนใหม่ และที่ตั้งของสนามกีฬายักษ์ใหญ่ และผลการแข่งขัน 30–28?",
    "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–13\"",
    "question_en": "What team was the lower when the winner was the new york jets, and a Year earlier than 1994, and a Result of 37–13?",
    "question_th": "ทีมใดที่ต่ำกว่าเมื่อผู้ชนะคือนิวยอร์กเจ็ตส์และหนึ่งปีก่อนหน้าปี 1994 และผลการแข่งขัน 37–13?",
    "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–28\"",
    "question_en": "What is the location when the new york jets lost earlier than 1997 and a Result of 31–28?",
    "question_th": "สถานที่ใดที่เครื่องบินไอพ่นนิวยอร์กสูญหายก่อนปี 1997 และผลลัพธ์ 31–28 ลำ",
    "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–17\" AND location = \"giants stadium\"",
    "question_en": "What is the year when the Winner was the new york jets, with a Result of 24–17, played at giants stadium?",
    "question_th": "ปีที่ผู้ชนะคือเครื่องบินเจ็ตนิวยอร์ก ด้วยผลสกอร์ 24–17 เล่นที่สนามกีฬาไจแอนต์สคือปีใด",
    "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_en": "What is the earliest year catalog # ual 24033 had an LP?",
    "question_th": "แคตตาล็อกปีแรกสุด # ual 24033 มี 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_en": "Which Games had a Name of manuel felix diaz?",
    "question_th": "เกมใดมีชื่อของมานูเอล เฟลิกซ์ ดิแอซ",
    "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_en": "Which Medal had a Games of 2008 beijing, and a Sport of taekwondo?",
    "question_th": "เหรียญใดที่มีการแข่งขันปักกิ่งปี 2008 และกีฬาเทควันโด",
    "context": "CREATE TABLE table_name_48 (medal VARCHAR, games VARCHAR, sport VARCHAR)"
  },
  {
    "answer": "SELECT medal FROM table_name_43 WHERE name = \"félix sánchez\" AND games = \"2012 london\"",
    "question_en": "Which Medal had a Name of félix sánchez, and a Games of 2012 london?",
    "question_th": "เหรียญใดมีชื่อว่า félix sánchez และการแข่งขัน Games of 2012 ที่ลอนดอน",
    "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_en": "Which Sport had an Event of men's 400 m hurdles?",
    "question_th": "กีฬาใดมีรายการวิ่งข้ามรั้ว 400 ม. ชาย?",
    "context": "CREATE TABLE table_name_21 (sport VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT medal FROM table_name_1 WHERE name = \"manuel felix diaz\"",
    "question_en": "What Medal had a Name of manuel felix diaz?",
    "question_th": "เหรียญอะไรมีชื่อว่ามานูเอล เฟลิกซ์ ดิแอซ",
    "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_en": "Which Name had a Games of 2008 beijing, and a Medal of gold?",
    "question_th": "ชื่อใดที่มีการแข่งขันกีฬาปักกิ่งปี 2008 และเหรียญทอง",
    "context": "CREATE TABLE table_name_37 (name VARCHAR, games VARCHAR, medal VARCHAR)"
  },
  {
    "answer": "SELECT mascot FROM table_name_20 WHERE location = \"bedford\"",
    "question_en": "What is bedford's mascot?",
    "question_th": "มาสคอตของเบดฟอร์ดคืออะไร?",
    "context": "CREATE TABLE table_name_20 (mascot VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT netflix FROM table_name_97 WHERE segment_a = \"heather gems\"",
    "question_en": "Segment A of heather gems is what netflix episode?",
    "question_th": "Heather Gems ภาค A เป็นตอนของ Netflix เรื่องไหนคะ",
    "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_en": "Segment B of aerospace fuel lines is what netflix episode?",
    "question_th": "สายเชื้อเพลิงการบินและอวกาศ Segment B เป็นตอนไหนของ Netflix ครับ?",
    "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_en": "Segment B of aerospace fuel lines has what segment A?",
    "question_th": "ส่วน B ของท่อเชื้อเพลิงอากาศยานมีส่วน 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_en": "Episode smaller than 210 had what segment c?",
    "question_th": "ตอนที่เล็กกว่า 210 มีช่วงไหน 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_en": "What's the Material collected for the 978-1401209674 ISBN?",
    "question_th": "เนื้อหาที่รวบรวมไว้สำหรับ ISBN 978-1401209674 คืออะไร",
    "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_en": "How many Volume Numbers have the title of Darkness Falls?",
    "question_th": "มีกี่เล่มที่มีชื่อ 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_en": "What's the Lowest Volume Number that was published November 2004?",
    "question_th": "หมายเลขปริมาณต่ำสุดที่เผยแพร่เมื่อเดือนพฤศจิกายน พ.ศ. 2547 คือเท่าใด",
    "context": "CREATE TABLE table_name_5 (vol__number INTEGER, publication_date VARCHAR)"
  },
  {
    "answer": "SELECT type_of_game FROM table_name_33 WHERE results¹ = \"10:1\"",
    "question_en": "What Type of game has a Results¹ of 10:1?",
    "question_th": "เกมประเภทใดที่มีผลลัพธ์10:1?",
    "context": "CREATE TABLE table_name_33 (type_of_game VARCHAR, results¹ VARCHAR)"
  },
  {
    "answer": "SELECT results¹ FROM table_name_82 WHERE type_of_game = \"friendly\" AND city = \"belgrade\" AND date = \"november 2\"",
    "question_en": "With the Type is game of friendly and the City Belgrade and November 2 as the Date what were the Results¹?",
    "question_th": "ด้วยประเภทเกมกระชับมิตรและซิตี้ เบลเกรด และวันที่ 2 พฤศจิกายนเป็นวันที่ ผลลัพธ์เป็นอย่างไร¹?",
    "context": "CREATE TABLE table_name_82 (results¹ VARCHAR, date VARCHAR, type_of_game VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_94 WHERE date = \"december 21\"",
    "question_en": "What is the name of the City with December 21 as a Date?",
    "question_th": "เมืองที่กำหนดให้วันที่ 21 ธันวาคม เป็นวันที่ชื่ออะไร?",
    "context": "CREATE TABLE table_name_94 (city VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT type_of_game FROM table_name_28 WHERE date = \"july 29\"",
    "question_en": "What Type of game was played on Date of July 29?",
    "question_th": "เกมประเภทใดที่เล่นในวันที่ 29 กรกฎาคม?",
    "context": "CREATE TABLE table_name_28 (type_of_game VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT results¹ FROM table_name_12 WHERE type_of_game = \"friendly\" AND date = \"june 25\"",
    "question_en": "What is the Results¹ that was a friendly game and played on June 25?",
    "question_th": "ผลการแข่งขันเป็นอย่างไรซึ่งเป็นเกมกระชับมิตรและเล่นในวันที่ 25 มิถุนายน?",
    "context": "CREATE TABLE table_name_12 (results¹ VARCHAR, type_of_game VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT version FROM table_name_1 WHERE length = \"4:58\"",
    "question_en": "What is the version shown for the Length of 4:58?",
    "question_th": "เวอร์ชันที่แสดงสำหรับความยาว 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 = \"—\"",
    "question_en": "What is the version shown for the Length of 5:20, and shows Remixed by —?",
    "question_th": "เวอร์ชันใดที่แสดงสำหรับความยาว 5:20 และแสดงรีมิกซ์โดย —?",
    "context": "CREATE TABLE table_name_48 (version VARCHAR, length VARCHAR, remixed_by VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_78 WHERE record = \"19–16\"",
    "question_en": "Record of 19–16 occurred on what date?",
    "question_th": "บันทึกวันที่ 19–16 เกิดขึ้นวันที่ใด?",
    "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_en": "Loss of postponed (rain) rescheduled for may 10 had what record?",
    "question_th": "แพ้เลื่อน (ฝน) เลื่อนกำหนดฉาย 10 พ.ค. มีบันทึกอะไรบ้าง?",
    "context": "CREATE TABLE table_name_60 (record VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_88 WHERE opponent = \"@ braves\" AND loss = \"pelfrey (2–5)\"",
    "question_en": "Opponent of @ braves, and a Loss of pelfrey (2–5) had what score?",
    "question_th": "ฝ่ายตรงข้ามของ @ Braves และแพ้เพลฟรีย์ (2–5) ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_88 (score VARCHAR, opponent VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_74 WHERE attendance = \"30,335\"",
    "question_en": "Attendance of 30,335 had what record?",
    "question_th": "ผู้เข้าร่วม 30,335 คนมีสถิติอะไร?",
    "context": "CREATE TABLE table_name_74 (record VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_46 WHERE record = \"22–20\"",
    "question_en": "Record of 22–20 involved what score?",
    "question_th": "บันทึก 22–20 เกี่ยวข้องกับคะแนนเท่าใด",
    "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_en": "Score of postponed (rain) rescheduled for June 27 had what loss?",
    "question_th": "คะแนนเลื่อน (ฝน) กำหนดใหม่ 27 มิ.ย. ขาดทุนอะไรบ้าง?",
    "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_en": "Station Ownership of eicb tv, and a Call sign of ktcj-ld is what virtual network?",
    "question_th": "กรรมสิทธิ์ของสถานี eicb tv และสัญญาณเรียกขานของ ktcj-ld คือเครือข่ายเสมือนใด",
    "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_en": "Call sign of k33ln-ld, and a Virtual channel of 33.5 is what network?",
    "question_th": "สัญญาณเรียกขานของ k33ln-ld และ Virtual channel 33.5 คือเครือข่ายอะไรคะ?",
    "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_en": "Digital channel of 32 belongs to what analog channel?",
    "question_th": "ช่องดิจิตอล 32 เป็นช่องอนาล็อกช่องไหนครับ?",
    "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_en": "Call sign of k43hb-ld is what virtual channel?",
    "question_th": "สัญญาณเรียกขานของ k43hb-ld เสมือนช่องไหนครับ?",
    "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_en": "Virtual channel of 16.5 has what call sign?",
    "question_th": "ช่องเสมือน 16.5 มีสัญญาณเรียกขานอะไร?",
    "context": "CREATE TABLE table_name_23 (call_sign VARCHAR, virtual_channel VARCHAR)"
  },
  {
    "answer": "SELECT digital_channel FROM table_name_31 WHERE network = \"nbc\"",
    "question_en": "Network of nbc is what digital channel?",
    "question_th": "เครือข่าย NBC คือช่องดิจิทัลอะไรคะ?",
    "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_en": "What is the latest first year with 0 total medals and over 0 golds?",
    "question_th": "ปีแรกล่าสุดที่มีเหรียญทั้งหมด 0 เหรียญและเหรียญทองมากกว่า 0 คืออะไร?",
    "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_en": "How many bronzes associated with over 0 total medals, 3 golds, and over 6 games?",
    "question_th": "มีเหรียญทองแดงกี่เหรียญที่เกี่ยวข้องกับเหรียญรางวัลรวมมากกว่า 0 เหรียญ 3 เหรียญทอง และมากกว่า 6 เกม?",
    "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_en": "What is the fewest number of medals associated with under 6 games and over 0 golds?",
    "question_th": "จำนวนเหรียญรางวัลน้อยที่สุดที่เกี่ยวข้องกับการแข่งขันต่ำกว่า 6 เกมและมากกว่า 0 เหรียญทองคือเท่าใด",
    "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_en": "How many games are associated with over 0 golds and a first year before 2008?",
    "question_th": "มีกี่เกมที่เกี่ยวข้องกับทองมากกว่า 0 ทองและในปีแรกก่อนปี 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_en": "What is the largest value for goals in rank over 3 with goal ration of 0.54?",
    "question_th": "อะไรคือมูลค่าที่ใหญ่ที่สุดสำหรับประตูในอันดับมากกว่า 3 โดยมีอัตราส่วนเป้าหมาย 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_en": "How many goal ratios have rank of 2 with more than 44 games?",
    "question_th": "อัตราส่วนประตูมีอันดับ 2 มากกว่า 44 เกมกี่คะแนน?",
    "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_en": "How many games have 23 goals with a rank greater than 9?",
    "question_th": "มีกี่เกมที่มี 23 ประตูและอันดับมากกว่า 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_en": "How many goals have a goal ration less than 0.8 with 56 games?",
    "question_th": "มีกี่ประตูที่มีอัตราส่วนประตูน้อยกว่า 0.8 กับ 56 เกม?",
    "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_en": "What Event has an Outcome of other open tournaments?",
    "question_th": "กิจกรรมใดที่มีผลการแข่งขันแบบเปิดอื่นๆ?",
    "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_en": "What is the Outcome of the Singles Event in London, England?",
    "question_th": "ผลการแข่งขันคนโสดในลอนดอน ประเทศอังกฤษ เป็นอย่างไร?",
    "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_en": "What is the Opponent in final with an All England Open Outcome?",
    "question_th": "ฝ่ายตรงข้ามในรอบชิงชนะเลิศกับ 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_en": "Who was the Opponent in London, England with an Outcome of 1?",
    "question_th": "ใครคือคู่ต่อสู้ในลอนดอน ประเทศอังกฤษ ด้วยสกอร์ 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_en": "What is the Outcome when All England Open is the Opponent in the final?",
    "question_th": "ผลลัพธ์จะเป็นเช่นไรเมื่อ All England Open เป็นฝ่ายตรงข้ามในรอบชิงชนะเลิศ?",
    "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_en": "What is the Name of the stage with a Length of 16.62km and Time of 15:10?",
    "question_th": "เวทีความยาว 16.62 กม. เวลา 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_en": "What is the Name of the stage with S. Loeb as the Winner with a Length of 13.04km and a Stage of SS12?",
    "question_th": "ชื่อของสเตจที่ S. Loeb เป็นผู้ชนะด้วยระยะทาง 13.04 กม. และสเตจ 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_en": "What is the Name of the SS5 Stage?",
    "question_th": "ชื่อของเวที SS5 คืออะไร?",
    "context": "CREATE TABLE table_name_90 (name VARCHAR, stage VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_3 WHERE stage = \"ss11\"",
    "question_en": "What is the Name of the SS11 Stage?",
    "question_th": "สเตจ SS11 ชื่ออะไร?",
    "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_en": "How many games ended in a record of 30-28-4, with a March more than 1?",
    "question_th": "มีกี่เกมที่จบด้วยสถิติ 30-28-4 โดยมีมากกว่า 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_en": "What competition has a result of W on June 30, 1966?",
    "question_th": "ผลการแข่งขัน W เมื่อวันที่ 30 มิ.ย.66 มีการแข่งขันอะไรบ้าง?",
    "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_en": "What is the result of the International Friendly competition on May 15, 1966?",
    "question_th": "ผลการแข่งขันกระชับมิตรนานาชาติ เมื่อวันที่ 15 พฤษภาคม 2509 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_89 (result VARCHAR, competition VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_82 WHERE score = \"4-0\"",
    "question_en": "What is the result when the score is 4-0?",
    "question_th": "ผลสกอร์เป็น 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_en": "What is the code for rank 10?",
    "question_th": "รหัสอันดับ 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_en": "Name the week 6 when week 3 is 25 and week 7 is eliminated",
    "question_th": "ตั้งชื่อสัปดาห์ที่ 6 เมื่อสัปดาห์ที่ 3 คือ 25 และสัปดาห์ที่ 7 ถูกตัดออก",
    "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_en": "Name the week 3 for team of mark/jennifer",
    "question_th": "ตั้งชื่อสัปดาห์ที่ 3 สำหรับทีมมาร์ค/เจนนิเฟอร์",
    "context": "CREATE TABLE table_name_99 (week_3 VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_66 WHERE week_1 = \"33\"",
    "question_en": "Name the team for week 1 of 33",
    "question_th": "ตั้งชื่อทีมสำหรับสัปดาห์ที่ 1 จาก 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_en": "Name the week 3 with week 6 of 31+40=71",
    "question_th": "ตั้งชื่อสัปดาห์ที่ 3 ด้วยสัปดาห์ที่ 6 เป็น 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_en": "Name the week 3 of 36",
    "question_th": "ตั้งชื่อสัปดาห์ที่ 3 จาก 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_en": "Name the team for week 1 of 28",
    "question_th": "ตั้งชื่อทีมสำหรับสัปดาห์ที่ 1 จาก 28",
    "context": "CREATE TABLE table_name_88 (team VARCHAR, week_1 VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_21 WHERE visitor = \"chicago\"",
    "question_en": "Who was the home team in the game having a visitor of Chicago?",
    "question_th": "ทีมเจ้าบ้านในเกมที่มีผู้มาเยือนคือทีมใด?",
    "context": "CREATE TABLE table_name_21 (home VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_22 WHERE visitor = \"chicago\"",
    "question_en": "What is the date of the game that had a visitor of Chicago?",
    "question_th": "วันที่เกมที่มีผู้มาเยือนชิคาโกคือวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_22 (date VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT version FROM table_name_60 WHERE length = \"5:15\"",
    "question_en": "what album is 5:15 long",
    "question_th": "อัลบั้มอะไรยาว 5:15",
    "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_en": "How many total show when silver is 0, bronze is 1, and the rank is less than 3?",
    "question_th": "แสดงว่าเงินเป็น 0 ทองแดงเป็น 1 และอันดับต่ำกว่า 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_en": "What is the number for rank when gold is less than 0?",
    "question_th": "เลขลำดับเมื่อทองน้อยกว่า 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_en": "What is the average for silver when bronze is less than 1, and gold is more than 0?",
    "question_th": "ค่าเฉลี่ยของเงินเมื่อทองแดงน้อยกว่า 1 และทองคำมากกว่า 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_en": "What is the average Gold when the rank is less than 3 and the bronze is less than 1?",
    "question_th": "ทองคำเฉลี่ยเมื่ออันดับน้อยกว่า 3 และทองแดงน้อยกว่า 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_en": "What is the average Rank when there are 2 bronze, the total is 2 and gold is less than 0?",
    "question_th": "อันดับเฉลี่ยเมื่อมี 2 ทองแดง รวม 2 และทองน้อยกว่า 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_en": "what player is playing on round 1",
    "question_th": "ผู้เล่นคนไหนกำลังเล่นอยู่ในรอบที่ 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_en": "what is the school that hosts mikael renberg",
    "question_th": "โรงเรียนไหนเป็นเจ้าภาพมิคาเอล เรนเบิร์ก",
    "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_en": "Which area served has a Callsign of 5ddn?",
    "question_th": "พื้นที่ใดที่ให้บริการมี Callsign 5dn?",
    "context": "CREATE TABLE table_name_99 (area_served VARCHAR, callsign VARCHAR)"
  },
  {
    "answer": "SELECT purpose FROM table_name_65 WHERE frequency = \"102.3\"",
    "question_en": "What is the purpose for Frequency of 102.3?",
    "question_th": "วัตถุประสงค์ของความถี่ 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_en": "What is the current freq for Frequency of 104.7?",
    "question_th": "ความถี่ปัจจุบันของความถี่ 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_en": "What was the score for the game with FK Bratstvo as home team?",
    "question_th": "เกมนี้โดยมี FK Bratstvo เป็นเจ้าบ้านได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_7 (score VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_89 WHERE guest = \"fk mogren\"",
    "question_en": "What was the attendance of the game that had an away team of FK Mogren?",
    "question_th": "เกมนี้ทีมเยือนของเอฟเค โมเกรน มีส่วนร่วมอย่างไรบ้าง?",
    "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_en": "What was the final score for the match with a partnering of Tessa Price?",
    "question_th": "คะแนนสุดท้ายของแมตช์นี้กับคู่หูของ 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_en": "What is the earliest round that Donald Mason had a pick larger than 114?",
    "question_th": "รอบแรกสุดที่ Donald Mason มีตัวเลือกมากกว่า 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_en": "What is the nationality of the player from Drexel who had a pick larger than 183?",
    "question_th": "สัญชาติของผู้เล่นจาก Drexel ที่มีตัวเลือกมากกว่า 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_en": "What country has grandstand stadium as the stadium?",
    "question_th": "ประเทศใดมีสนามกีฬาอัฒจรรย์เป็นสนามกีฬา?",
    "context": "CREATE TABLE table_name_71 (country VARCHAR, stadium VARCHAR)"
  },
  {
    "answer": "SELECT AVG(capacity) FROM table_name_19 WHERE country = \"switzerland\"",
    "question_en": "What is the average capacity that has switzerland as the country?",
    "question_th": "กำลังการผลิตเฉลี่ยที่มีสวิตเซอร์แลนด์เป็นประเทศคือเท่าใด",
    "context": "CREATE TABLE table_name_19 (capacity INTEGER, country VARCHAR)"
  },
  {
    "answer": "SELECT AVG(capacity) FROM table_name_97 WHERE stadium = \"rod laver arena\"",
    "question_en": "What is the average capacity that has rod laver arena as the stadium?",
    "question_th": "ความจุเฉลี่ยที่มีสนามร็อดเลเวอร์เป็นสนามกีฬาคือเท่าใด?",
    "context": "CREATE TABLE table_name_97 (capacity INTEGER, stadium VARCHAR)"
  },
  {
    "answer": "SELECT SUM(january) FROM table_name_37 WHERE record = \"26–12–6\" AND points < 58",
    "question_en": "How much January has a Record of 26–12–6, and Points smaller than 58?",
    "question_th": "เดือนมกราคมมีสถิติ 26–12–6 และคะแนนน้อยกว่า 58 เท่าใด",
    "context": "CREATE TABLE table_name_37 (january INTEGER, record VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT MAX(points) FROM table_name_35 WHERE score = \"4–1\"",
    "question_en": "Which Points have a Score of 4–1?",
    "question_th": "คะแนนใดมีคะแนน 4–1",
    "context": "CREATE TABLE table_name_35 (points INTEGER, score VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(game) FROM table_name_38 WHERE score = \"2–6\" AND points > 62",
    "question_en": "How many Games have a Score of 2–6, and Points larger than 62?",
    "question_th": "มีกี่เกมที่มีคะแนน 2–6 และคะแนนมากกว่า 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_en": "Tell me the region for catalog of 576 096-2",
    "question_th": "บอกภูมิภาคสำหรับแคตตาล็อกของ 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_en": "Name the catalog for 26 march 1996",
    "question_th": "ตั้งชื่อแค็ตตาล็อกสำหรับวันที่ 26 มีนาคม พ.ศ. 2539",
    "context": "CREATE TABLE table_name_2 (catalog VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_name_47 WHERE catalog = \"576 097-2\"",
    "question_en": "Name the region with catalog of 576 097-2",
    "question_th": "ตั้งชื่อภูมิภาคด้วยแค็ตตาล็อก 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_en": "The game that has a save of lynch (4) ended with what score?",
    "question_th": "เกมที่ได้เซฟของลินช์ (4) จบลงด้วยสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_41 (score VARCHAR, save VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_23 WHERE loss = \"trout (4-2)\"",
    "question_en": "On which day did the Chicago Cubs have a loss of trout (4-2)?",
    "question_th": "Chicago Cubs สูญเสียปลาเทราท์ในวันไหน (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_en": "What is the loss for the game against @ expos, with a save of parrett (2)?",
    "question_th": "อะไรคือความพ่ายแพ้ของเกมกับ @ expos โดยเซฟพาร์เร็ตต์ (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_en": "The game with a loss of smith (2-4) ended with what score?",
    "question_th": "เกมที่แพ้ สมิธ (2-4) จบลงด้วยสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_6 (score VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_45 WHERE loss = \"sutcliffe (10-4)\"",
    "question_en": "What is the date for the game that included a loss of sutcliffe (10-4)?",
    "question_th": "เกมที่รวมการแพ้ซัตคลิฟฟ์ (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_en": "What is the date of the Greater Greensboro Chrysler Classic?",
    "question_th": "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_en": "What is the score of the B.C. Open in New York?",
    "question_th": "คะแนนของ BC Open ที่นิวยอร์กอยู่ที่เท่าไร?",
    "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_en": "Who is the winner of the tournament in Georgia on Oct 3?",
    "question_th": "ใครคือผู้ชนะการแข่งขันที่จอร์เจียวันที่ 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_en": "What's the largest shirt number when the cap number is 5?",
    "question_th": "หมายเลขเสื้อที่ใหญ่ที่สุดคืออะไรเมื่อหมายเลขหมวกคือ 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_en": "Which team is in the Southeast with a home at Philips Arena?",
    "question_th": "ทีมไหนอยู่อีสานกับเจ้าบ้านที่ฟิลิปส์ อารีน่า?",
    "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_en": "Which division do the Toronto Raptors belong in?",
    "question_th": "Toronto Raptors อยู่ในดิวิชั่นใด?",
    "context": "CREATE TABLE table_name_87 (division VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_62 WHERE home_arena = \"target center\"",
    "question_en": "Which city includes the Target Center arena?",
    "question_th": "เมืองใดที่มีสนามกีฬา Target Center?",
    "context": "CREATE TABLE table_name_62 (city VARCHAR, home_arena VARCHAR)"
  },
  {
    "answer": "SELECT conference FROM table_name_80 WHERE city = \"portland, oregon\"",
    "question_en": "Which conference is in Portland, Oregon?",
    "question_th": "การประชุมใดที่พอร์ตแลนด์ รัฐออริกอน?",
    "context": "CREATE TABLE table_name_80 (conference VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_55 WHERE home_arena = \"barclays center\"",
    "question_en": "Which city includes Barclays Center?",
    "question_th": "เมืองใดรวมถึง 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_en": "Which WYSIWYG Editor has a User-selectable themes of yes, and an Unread message tracking of session, and an Image attachment of plugin?",
    "question_th": "WYSIWYG Editor ใดที่มีธีมที่ผู้ใช้สามารถเลือกได้เป็นใช่ และการติดตามข้อความที่ยังไม่ได้อ่านของเซสชัน และไฟล์แนบรูปภาพของปลั๊กอิน",
    "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_en": "Which Calendar has WYSIWYG Editor of yes and an Unread message tracking of yes?",
    "question_th": "ปฏิทินใดมี WYSIWYG Editor ที่ใช่ และการติดตามข้อความที่ยังไม่ได้อ่านที่ใช่",
    "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_en": "Which WYSIWYG Editor has an Image attachment of yes, and a Calendar of plugin?",
    "question_th": "WYSIWYG Editor ใดที่มีไฟล์แนบรูปภาพใช่และมีปฏิทินปลั๊กอิน",
    "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_en": "Which Calendar has a WYSIWYG Editor of no, and an Unread message tracking of session, and an Image attachment of no?",
    "question_th": "ปฏิทินใดมีตัวแก้ไขแบบ WYSIWYG เป็น no และการติดตามข้อความที่ยังไม่ได้อ่านของเซสชัน และไฟล์แนบรูปภาพเป็น 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_en": "Which Image attachment has a Threaded of yes, and a Calendar of yes?",
    "question_th": "ไฟล์แนบรูปภาพใดที่มี Threaded เป็น yes และ Calendar เป็น 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_en": "Which Calendar has a User-selectable themes of user-selectable themes?",
    "question_th": "ปฏิทินใดมีธีมที่ผู้ใช้เลือกได้จากธีมที่ผู้ใช้เลือกได้",
    "context": "CREATE TABLE table_name_95 (calendar VARCHAR, user_selectable_themes VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_76 WHERE score = \"12–6\"",
    "question_en": "What was the record of the game with a score of 12–6?",
    "question_th": "สถิติของเกมด้วยคะแนน 12–6 คืออะไร?",
    "context": "CREATE TABLE table_name_76 (record VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_18 WHERE loss = \"bush (1–5)\"",
    "question_en": "What was the date of the game with a loss of Bush (1–5)?",
    "question_th": "วันที่ของเกมที่แพ้บุช (1–5) คือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_18 (date VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_16 WHERE score = \"7–6\"",
    "question_en": "Who was the opponent at the game with a score of 7–6?",
    "question_th": "คู่ต่อสู้ในเกมคือใครด้วยคะแนน 7–6?",
    "context": "CREATE TABLE table_name_16 (opponent VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_81 WHERE loss = \"maholm (2–4)\"",
    "question_en": "What was the score of the game with a loss of Maholm (2–4)?",
    "question_th": "เกมนี้แพ้มาโฮล์ม (2–4) ด้วยสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_81 (score VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_33 WHERE date = \"may 25\"",
    "question_en": "What is the attendance for the game on May 25?",
    "question_th": "ผู้เข้าชมเกมวันที่ 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_en": "What was the game with a rank higher than 2 and a name of zendon hamilton?",
    "question_th": "เกมอะไรที่มีอันดับสูงกว่า 2 และชื่อ 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_en": "If the points were 0, what was the losing bonus?",
    "question_th": "ถ้าคะแนนเป็น 0 โบนัสที่เสียไปคืออะไร?",
    "context": "CREATE TABLE table_name_32 (losing_bonus VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_name_67 WHERE points = \"56\"",
    "question_en": "What club had 56 points?",
    "question_th": "สโมสรไหนมี 56 แต้ม?",
    "context": "CREATE TABLE table_name_67 (club VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT tries_for FROM table_name_65 WHERE points_for = \"0\"",
    "question_en": "If the points were 0, what were the tries for?",
    "question_th": "ถ้าคะแนนเป็น 0 พยายามไปเพื่ออะไร?",
    "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_en": "What's the try bonus that had 423 points?",
    "question_th": "โบนัสลองมี 423 แต้มคืออะไร?",
    "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_en": "Name the tries when tries against were 41, try bonus was 6, and had 317 points.",
    "question_th": "ตั้งชื่อความพยายามเมื่อพยายามต่อต้านคือ 41 ครั้ง โบนัสความพยายามคือ 6 และมี 317 คะแนน",
    "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_en": "What was the tries against when they had 32 tries for?",
    "question_th": "ความพยายามต่อต้านอะไรเมื่อพวกเขาพยายาม 32 ครั้ง?",
    "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 = \"то ли ещё будет\"",
    "question_en": "What is the english title with a lp format and an Original title of то ли ещё будет?",
    "question_th": "ชื่อภาษาอังกฤษที่มีรูปแบบ lp และชื่อดั้งเดิมของ то ли ещё будет คืออะไร",
    "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_en": "What was the score when the attendance was 18,545?",
    "question_th": "มีผู้เข้าร่วมประชุม 18,545 คะแนนเป็นเท่าใด",
    "context": "CREATE TABLE table_name_83 (score VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT decision FROM table_name_6 WHERE attendance = \"19,592\"",
    "question_en": "What was the decision when the attendance was 19,592?",
    "question_th": "การตัดสินใจเมื่อมีผู้เข้าร่วม 19,592 คนเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_6 (decision VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT runs FROM table_name_52 WHERE opponent = \"canterbury\"",
    "question_en": "Which Run has an Opponent of Canterbury?",
    "question_th": "Run ใดมีฝ่ายตรงข้ามของ Canterbury?",
    "context": "CREATE TABLE table_name_52 (runs VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT runs FROM table_name_53 WHERE opponent = \"south australia\"",
    "question_en": "Which Runs has a Opponent of south australia?",
    "question_th": "Runs ใดมีฝ่ายตรงข้ามของออสเตรเลียใต้?",
    "context": "CREATE TABLE table_name_53 (runs VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT skip FROM table_name_45 WHERE third = \"tony angiboust\"",
    "question_en": "Which Skip has a Third of tony angiboust?",
    "question_th": "Skip ตัวไหนมีโทนี่แองจิบูสท์ถึงหนึ่งในสาม?",
    "context": "CREATE TABLE table_name_45 (skip VARCHAR, third VARCHAR)"
  },
  {
    "answer": "SELECT lead FROM table_name_15 WHERE nation = \"switzerland\"",
    "question_en": "Which Lead has a Nation of switzerland?",
    "question_th": "Lead คนไหนมีสัญชาติสวิตเซอร์แลนด์?",
    "context": "CREATE TABLE table_name_15 (lead VARCHAR, nation VARCHAR)"
  },
  {
    "answer": "SELECT third FROM table_name_14 WHERE nation = \"scotland\"",
    "question_en": "Which Third has a Nation of scotland?",
    "question_th": "คนที่สามคนไหนมีชาติสกอตแลนด์?",
    "context": "CREATE TABLE table_name_14 (third VARCHAR, nation VARCHAR)"
  },
  {
    "answer": "SELECT third FROM table_name_71 WHERE lead = \"angel garcia\"",
    "question_en": "In which third did angel garcia lead?",
    "question_th": "แองเจิล การ์เซีย เป็นผู้นำในข้อใดในสาม?",
    "context": "CREATE TABLE table_name_71 (third VARCHAR, lead VARCHAR)"
  },
  {
    "answer": "SELECT second FROM table_name_54 WHERE nation = \"france\"",
    "question_en": "When did France come in second?",
    "question_th": "ฝรั่งเศสมาเป็นอันดับสองเมื่อไหร่?",
    "context": "CREATE TABLE table_name_54 (second VARCHAR, nation VARCHAR)"
  },
  {
    "answer": "SELECT third FROM table_name_59 WHERE lead = \"holger höhne\"",
    "question_en": "When did holger höhne come in third?",
    "question_th": "โฮลเกอร์ เฮอเนอ มาเป็นที่สามเมื่อไหร่?",
    "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_en": "How many Caps does the Club/province Munster, position of lock and Mick O'Driscoll have?",
    "question_th": "สโมสร/จังหวัด มุนสเตอร์, ตำแหน่งล็อค และ มิก โอ'ดริสคอล มีแคปกี่ตัว?",
    "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_en": "What Club/province have caps less than 2 and Jonathan Sexton as player?",
    "question_th": "สโมสร/จังหวัดใดที่มีแคปน้อยกว่า 2 และมี Jonathan Sexton เป็นผู้เล่น?",
    "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_en": "Paddy Wallace who plays the position of fly-half has how many Caps?",
    "question_th": "แพดดี้ วอลเลซ ที่เล่นตำแหน่ง ฟลายฮาล์ฟ มีแคปกี่ตัว?",
    "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_en": "What is the total of Caps when player born 13 December 1977?",
    "question_th": "จำนวนแคปทั้งหมดเมื่อผู้เล่นเกิดวันที่ 13 ธันวาคม พ.ศ. 2520 เป็นเท่าใด?",
    "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_en": "what artist has a book called cyberella",
    "question_th": "ศิลปินคนไหนมีหนังสือชื่อไซเบอร์เรลลา",
    "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_en": "WHich INEGI code has a Population density (/km 2 ) smaller than 81.4 and 0.6593 Human Development Index (2000)?",
    "question_th": "รหัส INEGI ใดมีความหนาแน่นของประชากร (/กม. 2) น้อยกว่า 81.4 และ 0.6593 ดัชนีการพัฒนามนุษย์ (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_en": "What is the lowest number of field goals for a player with 3 touchdowns?",
    "question_th": "จำนวนการยิงประตูขั้นต่ำสำหรับผู้เล่นที่มี 3 ทัชดาวน์คือเท่าใด",
    "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_en": "How many extra points did right halfback Roswell Wendell have?",
    "question_th": "รอสเวลล์ เวนเดลล์ กองหลังฝั่งขวามีแต้มพิเศษกี่แต้ม?",
    "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_en": "What is the lowest number of touchdowns for left halfback WIllie Heston who has more than 15 points?",
    "question_th": "จำนวนทัชดาวน์ต่ำสุดของวิลลี เฮสตัน กองหลังซ้ายที่มีมากกว่า 15 แต้มคือเท่าใด?",
    "context": "CREATE TABLE table_name_74 (touchdowns INTEGER, points VARCHAR, position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT results¹ FROM table_name_64 WHERE type_of_game = \"1964 summer olympics\" AND date = \"october 18\"",
    "question_en": "What was the result for the 1964 summer olympics on october 18?",
    "question_th": "โอลิมปิกฤดูร้อนปี 1964 เมื่อวันที่ 18 ตุลาคม มีผลเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_64 (results¹ VARCHAR, type_of_game VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_24 WHERE date = \"october 28\"",
    "question_en": "What was the opponent on october 28?",
    "question_th": "คู่ต่อสู้ในวันที่ 28 ตุลาคมคืออะไร?",
    "context": "CREATE TABLE table_name_24 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_65 WHERE date = \"october 13\"",
    "question_en": "Wjich city had a date of october 13?",
    "question_th": "เมือง Wjich มีวันที่ 13 ตุลาคมเหรอ?",
    "context": "CREATE TABLE table_name_65 (city VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_54 WHERE results¹ = \"3:2\"",
    "question_en": "What day were the results 3:2?",
    "question_th": "ผลลัพธ์เป็นวันไหน 3:2?",
    "context": "CREATE TABLE table_name_54 (date VARCHAR, results¹ VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(failures) FROM table_name_76 WHERE country = \"russia\" AND family = \"r14 r-14\" AND partial_failures < 0",
    "question_en": "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?",
    "question_th": "จำนวนความล้มเหลวสำหรับประเทศรัสเซียและตระกูล r14 r-14 และความล้มเหลวบางส่วนที่น้อยกว่า 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_en": "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?",
    "question_th": "อะไรคือความล้มเหลวบางส่วนสำหรับประเทศรัสเซีย และความล้มเหลวที่มากกว่า 0 และตระกูลอังการา และการเปิดตัวที่ใหญ่กว่า 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_en": "What is the group B region with a Group E region of Georgia?",
    "question_th": "ภูมิภาคกลุ่ม B กับภูมิภาคกลุ่ม E ของจอร์เจียคืออะไร",
    "context": "CREATE TABLE table_name_17 (group_b VARCHAR, group_e VARCHAR)"
  },
  {
    "answer": "SELECT group_a FROM table_name_20 WHERE region = 2",
    "question_en": "What is the group A region with a region number of 2?",
    "question_th": "ภูมิภาคกลุ่ม A ที่มีหมายเลขภูมิภาค 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_en": "What is the group C region with Illinois as group B?",
    "question_th": "ภูมิภาคกลุ่ม C คืออะไรโดยที่รัฐอิลลินอยส์เป็นกลุ่ม 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_en": "What opponnent has a record of 82-68?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีสถิติ 82-68?",
    "context": "CREATE TABLE table_name_61 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_22 WHERE record = \"77-62\"",
    "question_en": "what date has the record of 77-62?",
    "question_th": "มีบันทึกปี77-62วันไหนครับ?",
    "context": "CREATE TABLE table_name_22 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_25 WHERE record = \"78-63\"",
    "question_en": "what opponent has the record of 78-63?",
    "question_th": "คู่แข่งคนไหนมีสถิติ 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_en": "what score has the opponent of tigers and a record of 78-64?",
    "question_th": "คู่ต่อสู้ของเสือมีสกอร์เท่าไหร่และมีสถิติ 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_en": "What time did team kawasaki zx10 1000cc have?",
    "question_th": "ทีม kawasaki zx10 1000cc ออกมากี่โมง?",
    "context": "CREATE TABLE table_name_61 (time VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_72 WHERE team = \"kawasaki zx10 1000cc\"",
    "question_en": "What time did team kawasaki zx10 1000cc have?",
    "question_th": "ทีม kawasaki zx10 1000cc ออกมากี่โมง?",
    "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_en": "What is the rank for the team with a Time of 1:12.40.28?",
    "question_th": "อันดับของทีมด้วยเวลา 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_en": "Which Issue Date(s) has an Artist of men at work?",
    "question_th": "วันที่ออกฉบับใดมีศิลปินผู้ชายที่ทำงานอยู่?",
    "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_en": "Which Weeks on Top have an Issue Date(s) of 20 november?",
    "question_th": "สัปดาห์ใดที่อยู่ด้านบนมีวันที่ออกในวันที่ 20 พฤศจิกายน",
    "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_en": "Who is the male partner for amy winehouse?",
    "question_th": "ใครคือคู่หูชายของเอมี่ ไวน์เฮาส์?",
    "context": "CREATE TABLE table_name_26 (male VARCHAR, female VARCHAR)"
  },
  {
    "answer": "SELECT male FROM table_name_79 WHERE year < 2004 AND female = \"dido\"",
    "question_en": "Which male is paired with dido in 2004?",
    "question_th": "ผู้ชายคนไหนจับคู่กับโด้ในปี 2547?",
    "context": "CREATE TABLE table_name_79 (male VARCHAR, year VARCHAR, female VARCHAR)"
  },
  {
    "answer": "SELECT female FROM table_name_48 WHERE album = \"elephant\"",
    "question_en": "Which female artist has an album named elephant?",
    "question_th": "ศิลปินหญิงคนไหนมีอัลบั้มชื่อช้าง?",
    "context": "CREATE TABLE table_name_48 (female VARCHAR, album VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_86 WHERE date = \"march 30\"",
    "question_en": "Date of march 30 involves what home?",
    "question_th": "วันที่ 30 มีนาคม เกี่ยวอะไรกับบ้าน?",
    "context": "CREATE TABLE table_name_86 (home VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_64 WHERE opponent = \"los angeles rams\"",
    "question_en": "Which venue hosted the Los Angeles Rams as an opponent?",
    "question_th": "สนามใดที่จัดทีม Los Angeles Rams เป็นคู่ต่อสู้?",
    "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_en": "Which date's week was more than 4 with the venue being City Stadium and where the attendance was more than 14,297?",
    "question_th": "สัปดาห์ของวันใดที่มีมากกว่า 4 โดยสนามเป็นซิตี้สเตเดียมและมีผู้เข้าชมมากกว่า 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_en": "Name the home with toronto visiting",
    "question_th": "ตั้งชื่อบ้านด้วยการมาเยือนโตรอนโต",
    "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_en": "What was the pick# for Lorenzo Freeman as defensive tackle?",
    "question_th": "อะไรคือตัวเลือกสำหรับลอเรนโซ ฟรีแมน ในตำแหน่งแท็คเกิ้ลตัวรับ?",
    "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_en": "What is the largest pick# for Greg Harris?",
    "question_th": "ตัวเลือก # ที่ใหญ่ที่สุดสำหรับ Greg Harris คืออะไร",
    "context": "CREATE TABLE table_name_87 (pick__number INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_21 WHERE college = \"stanford\"",
    "question_en": "Which round goes to Stanford college?",
    "question_th": "รอบไหนไปมหาวิทยาลัยสแตนฟอร์ด?",
    "context": "CREATE TABLE table_name_21 (round VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT SUM(pick__number) FROM table_name_26 WHERE player = \"don majkowski\"",
    "question_en": "What is the sum of pick# for Don Majkowski?3",
    "question_th": "ผลรวมของการเลือก # สำหรับ 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_en": "Which college had Tony Leiker in round 7?",
    "question_th": "วิทยาลัยใดมี Tony Leiker ในรอบที่ 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_en": "Which  company's type is joint venture, and has principle activities listed as Cargo Airline and an incorporation of China?",
    "question_th": "บริษัทใดเป็นบริษัทร่วมทุนและมีกิจกรรมหลักอยู่ในรายการ Cargo Airline และการจัดตั้งบริษัทในจีน",
    "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_en": "What is the type for the Cathay Pacific Holidays company, an incorporation of Hong Kong and listed activities as Travel Agency?",
    "question_th": "บริษัท Cathay Pacific Holidays ซึ่งเป็นบริษัทที่จดทะเบียนในฮ่องกงและกิจกรรมที่จดทะเบียนเป็นบริษัทท่องเที่ยวประเภทใด",
    "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_en": "Which Position has a Surname of naylor?",
    "question_th": "ตำแหน่งใดมีนามสกุลเป็น 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_en": "How many Uni numbers have Bats of s, and a Position of utl?",
    "question_th": "ตัวเลข Uni มี Bats เป็น s และตำแหน่ง 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_en": "Which First has a Uni # larger than 34, and Throws of r, and a Position of rhp, and a Surname of stockman?",
    "question_th": "อันไหนตัวแรกที่มี Uni # มากกว่า 34 และ Throws ของ r และตำแหน่ง rhp และนามสกุลของ 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_en": "Which Uni # has a Surname of ough?",
    "question_th": "Uni # ตัวไหนมีนามสกุล 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_en": "Which Surname has Throws of l, and a DOB of 5/02/79?",
    "question_th": "นามสกุลใดที่มีการโยนของ l และวันเกิดของ 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_en": "Which surface had a partner of Sandrine Testud on November 14, 1999?",
    "question_th": "พื้นผิวใดมีคู่หูของ Sandrine Testud เมื่อวันที่ 14 พฤศจิกายน 2542",
    "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_en": "What is the average number of field goals for players with more than 60 points?",
    "question_th": "จำนวนการยิงประตูโดยเฉลี่ยของผู้เล่นที่มีคะแนนมากกว่า 60 คะแนนคือเท่าใด",
    "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_en": "What is the smallest number of field goals for players with 4 touchdowns and less than 9 extra points?",
    "question_th": "จำนวนการยิงประตูที่น้อยที่สุดสำหรับผู้เล่นที่มี 4 ทัชดาวน์และคะแนนพิเศษน้อยกว่า 9 คือเท่าใด",
    "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_en": "What is the highest number of points for players with less than 2 touchdowns and 0 extra points?",
    "question_th": "จำนวนคะแนนสูงสุดสำหรับผู้เล่นที่มีน้อยกว่า 2 ทัชดาวน์และ 0 คะแนนพิเศษคือเท่าใด",
    "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_en": "What is the highest number of extra points for players with less than 2 touchdowns and less than 1 point?",
    "question_th": "จำนวนแต้มพิเศษสูงสุดสำหรับผู้เล่นที่มีน้อยกว่า 2 ทัชดาวน์และน้อยกว่า 1 แต้มคือเท่าใด?",
    "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_en": "What is the average number of points for players with 4 touchdowns and more than 0 field goals?",
    "question_th": "จำนวนคะแนนเฉลี่ยสำหรับผู้เล่นที่มี 4 ทัชดาวน์และมากกว่า 0 ฟิลด์โกลคือเท่าใด",
    "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_en": "What E score has the T score of 8 and a number smaller than 22.95?",
    "question_th": "คะแนน E ใดที่มีคะแนน T เท่ากับ 8 และตัวเลขน้อยกว่า 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_en": "What's the sum of A Score that also has a score lower than 7.3 and an E Score larger than 7.1?",
    "question_th": "ผลรวมของคะแนน A ที่มีคะแนนต่ำกว่า 7.3 และคะแนน E มากกว่า 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_en": "What is the relative height of Scotland with Ben Vorlich as parent?",
    "question_th": "ความสูงสัมพัทธ์ของสกอตแลนด์กับ Ben Vorlich เป็นพ่อแม่คือเท่าใด",
    "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_en": "What is the highest rank of Austria, which had less than 0 silvers?",
    "question_th": "อันดับสูงสุดของออสเตรียซึ่งมีน้อยกว่า 0 เหรียญเงินคืออะไร?",
    "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_en": "What is the rank of the team with 0 gold and less than 0 silvers?",
    "question_th": "อันดับของทีมที่มี 0 เหรียญทอง และน้อยกว่า 0 เหรียญเงิน คืออะไร?",
    "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_en": "What is the total number of bronze medals of West Germany, which is ranked 2 and has less than 1 total medals?",
    "question_th": "เยอรมนีตะวันตกรั้งอันดับ 2 และมีเหรียญทองแดงรวมทั้งหมดกี่เหรียญ?",
    "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_en": "What is the number of points of the game less than number 17 with an 11-6-0 record?",
    "question_th": "แต้มเกมน้อยกว่าอันดับ 17 กับสถิติ 11-6-0 คือเท่าไร?",
    "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_en": "What is the record of the game on November 22?",
    "question_th": "สถิติเกมวันที่ 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_en": "Who is the visitor team of game 19 with Los Angeles as the home team?",
    "question_th": "ทีมเยือนในเกมที่ 19 โดยมีลอสแองเจลิสเป็นเจ้าบ้านคือใคร?",
    "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_en": "WHich Studio host has a Year of 2003-04?",
    "question_th": "โฮสต์ของสตูดิโอคนไหนมีปี 2546-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_en": "WHich Studio analysts has a Studio host of gary tanguay in 2009-10?",
    "question_th": "นักวิเคราะห์ของ Studio คนไหนมีสตูดิโอโฮสต์ของ gary tanguay ในปี 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_en": "WHich Color commentatorhas a Studio host of gary tanguay & eric frede?",
    "question_th": "ผู้บรรยายสีคนไหนมีพิธีกรในสตูดิโอของ 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_en": "WHich Play-by-play has a Studio host of gary tanguay, and a Studio analysts of donny marshall?",
    "question_th": "Play-by-play ใดมีสตูดิโอโฮสต์ของ gary tanguay และมีนักวิเคราะห์ของสตูดิโอของ 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_en": "Which Color commentator has a Channel of fsn new england, and a Year of 2004-05?",
    "question_th": "ผู้วิจารณ์สีคนใดที่มีช่อง fsn new england และปี 2547-2558",
    "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_en": "Which Courtside reporter has a Channel of fsn new england in 2006-07?",
    "question_th": "นักข่าว Courtside คนไหนที่มี Channel ของ fsn new england ในปี 2549-50",
    "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_en": "What was the score on April 21?",
    "question_th": "คะแนนวันที่ 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_en": "What date was the game at Comiskey Park and had a 4th Inning?",
    "question_th": "เกมที่ Comiskey Park คือวันที่ใดและมีอินนิงที่ 4",
    "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_en": "When Efrain Valdez was pitching, what was the highest home run?",
    "question_th": "ตอนที่เอเฟรน วาลเดซขว้าง โฮมรันสูงสุดคือช่วงไหน?",
    "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_en": "On June 17 in Tiger stadium, what was the average home run?",
    "question_th": "วันที่ 17 มิ.ย. ที่ไทเกอร์ สเตเดี้ยม โฮมรันเฉลี่ยเท่าไหร่?",
    "context": "CREATE TABLE table_name_43 (home_run INTEGER, location VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_14 WHERE attendance = \"528\"",
    "question_en": "For the game with 528 attendance, what was the result?",
    "question_th": "เกมที่มีผู้เข้าชม 528 คน ผลเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_14 (result VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_69 WHERE record = \"80-61\"",
    "question_en": "What is the score of the game that holds a record of 80-61?",
    "question_th": "เกมที่ถือสถิติ 80-61 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_69 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_30 WHERE attendance = \"28,135\"",
    "question_en": "What is the record of the game with 28,135 people in attendance?",
    "question_th": "สถิติของเกมที่มีผู้เข้าร่วม 28,135 คนเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_30 (record VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_53 WHERE points = 2",
    "question_en": "what team has a score of 2",
    "question_th": "ทีมใดมีคะแนน 2",
    "context": "CREATE TABLE table_name_53 (score VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_3 WHERE game = 11",
    "question_en": "what team has a score of 11",
    "question_th": "ทีมใดมีคะแนน 11",
    "context": "CREATE TABLE table_name_3 (record VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT nation FROM table_name_56 WHERE time__sec_ = 47.049",
    "question_en": "Which nation finished with a time of 47.049?",
    "question_th": "ชาติใดจบด้วยเวลา 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_en": "Which sport has a time over 49?",
    "question_th": "กีฬาใดมีเวลามากกว่า 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_en": "Which nation had a time of 48.38?",
    "question_th": "ชาติใดมีเวลา 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_en": "Which year had a team of Aprilia and a rank of 4th?",
    "question_th": "ปีไหนมีทีม Aprilia และอันดับที่ 4?",
    "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_en": "Which class had a machine of RS125R, points over 113, and a rank of 4th?",
    "question_th": "คลาสไหนมีเครื่อง RS125R คะแนนเกิน 113 และอันดับที่ 4?",
    "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_en": "Which team had a year over 1995, machine of RS125R, and ranked 1st?",
    "question_th": "ทีมไหนมีปีเกิน 1995 เครื่อง RS125R และอันดับ 1?",
    "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_en": "Which Oberliga Bayern has a Season of 1981-82?",
    "question_th": "Oberliga Bayern ใดมีฤดูกาล 1981-82?",
    "context": "CREATE TABLE table_name_24 (oberliga_bayern VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT oberliga_südwest FROM table_name_82 WHERE oberliga_bayern = \"fc schweinfurt 05\"",
    "question_en": "Which Oberliga Südwest has an Oberliga Bayern of fc schweinfurt 05?",
    "question_th": "Oberliga Südwestคนใดมี Oberliga Bayern จาก fc schweinfurt 05?",
    "context": "CREATE TABLE table_name_82 (oberliga_südwest VARCHAR, oberliga_bayern VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_19 WHERE oberliga_bayern = \"spvgg bayreuth\" AND oberliga_südwest = \"eintracht trier\"",
    "question_en": "Which Season ha spvgg bayreuth and eintracht trier?",
    "question_th": "ฤดูกาลใดมี spvgg bayreuth และ eintracht trier?",
    "context": "CREATE TABLE table_name_19 (season VARCHAR, oberliga_bayern VARCHAR, oberliga_südwest VARCHAR)"
  },
  {
    "answer": "SELECT oberliga_baden_württemberg FROM table_name_41 WHERE season = \"1991-92\"",
    "question_en": "which Oberliga Baden-Württemberg has a Season of 1991-92?",
    "question_th": "Oberliga Baden-Württemberg รุ่นใดมีฤดูกาล 1991-92?",
    "context": "CREATE TABLE table_name_41 (oberliga_baden_württemberg VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT oberliga_baden_württemberg FROM table_name_77 WHERE oberliga_hessen = \"fsv frankfurt\" AND season = \"1993-94\"",
    "question_en": "Which Oberliga Baden-Württemberg has an Oberliga Hessen of fsv frankfurt in 1993-94?",
    "question_th": "Oberliga Baden-Württemberg คนใดมี Oberliga Hessen ของ fsv frankfurt ในปี 1993-94?",
    "context": "CREATE TABLE table_name_77 (oberliga_baden_württemberg VARCHAR, oberliga_hessen VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT oberliga_südwest FROM table_name_60 WHERE oberliga_baden_württemberg = \"sv sandhausen\" AND season = \"1984-85\"",
    "question_en": "which Oberliga Südwes has an Oberliga Baden-Württemberg of sv sandhausen in 1984-85?",
    "question_th": "Oberliga Südwes คนไหนมี Oberliga Baden-Württemberg จาก sv sandhausen ในปี 1984-85?",
    "context": "CREATE TABLE table_name_60 (oberliga_südwest VARCHAR, oberliga_baden_württemberg VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_86 WHERE save = \"|| 23,391 ||17-18||\"",
    "question_en": "Name the loss with save of || 23,391 ||17-18||?",
    "question_th": "ตั้งชื่อการสูญเสียด้วยการบันทึก || 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_en": "Name the opponent for save of williams (9)",
    "question_th": "ตั้งชื่อคู่ต่อสู้เพื่อเซฟของวิลเลียมส์ (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_en": "Name the save for braves for may 15",
    "question_th": "ตั้งชื่อเซฟฟอร์เบรฟเวอร์ 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_en": "Name the loss for may 1",
    "question_th": "ตั้งชื่อการสูญเสียสำหรับวันที่ 1 พฤษภาคม",
    "context": "CREATE TABLE table_name_4 (loss VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_21 WHERE opponent = \"ekaterina makarova\"",
    "question_en": "What was the score in the tournament against Ekaterina Makarova?",
    "question_th": "คะแนนในการแข่งขันกับ 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_en": "What is the market for the 11pm-1am Saturday game?",
    "question_th": "ตลาดสำหรับเกมวันเสาร์เวลา 23.00-01.00 น. เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_3 (market_market_rank VARCHAR, saturday VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_83 WHERE locale = \"holland\"",
    "question_en": "what is the name of the holland locale",
    "question_th": "สถานที่ฮอลแลนด์ชื่ออะไร",
    "context": "CREATE TABLE table_name_83 (name VARCHAR, locale VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(rank) FROM table_name_42 WHERE primary_industry = \"health care\"",
    "question_en": "How many ranks have an industry of health care?",
    "question_th": "อุตสาหกรรมการดูแลสุขภาพมีกี่อันดับ?",
    "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_en": "Which Points have an Opponent of new york islanders, and a Game smaller than 65?",
    "question_th": "แต้มใดที่มีคู่ต่อสู้ของชาวเกาะนิวยอร์ก และเกมที่น้อยกว่า 65",
    "context": "CREATE TABLE table_name_96 (points INTEGER, opponent VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(points) FROM table_name_76 WHERE record = \"40–21–12–3\" AND march > 28",
    "question_en": "How many Points have a Record of 40–21–12–3, and a March larger than 28?",
    "question_th": "มีกี่คะแนนที่มีสถิติ 40–21–12–3 และเดือนมีนาคมมากกว่า 28 คะแนน",
    "context": "CREATE TABLE table_name_76 (points VARCHAR, record VARCHAR, march VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_20 WHERE record = \"38–20–12–2\"",
    "question_en": "Which Opponent has a Record of 38–20–12–2?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีสถิติ 38–20–12–2?",
    "context": "CREATE TABLE table_name_20 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT MAX(game) FROM table_name_76 WHERE points < 92 AND score = \"1–3\"",
    "question_en": "Which Game is the highest one that has Points smaller than 92, and a Score of 1–3?",
    "question_th": "เกมใดเป็นเกมสูงสุดที่มีคะแนนน้อยกว่า 92 และคะแนน 1–3",
    "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_en": "What is the accession number of the protein with the common name Purple Sea Urchin?",
    "question_th": "หมายเลขภาคยานุวัติของโปรตีนที่มีชื่อสามัญว่า 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_en": "What is the protein name of the protein with a sequence identity to human protein of 32%?",
    "question_th": "ชื่อโปรตีนของโปรตีนที่มีลำดับเอกลักษณ์ของโปรตีนของมนุษย์ 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_en": "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?",
    "question_th": "ความยาวลำดับ (aa) ของโปรตีนที่มีชื่อสามัญว่า Urchin ทะเลสีม่วง และความแตกต่างจากเชื้อสายมนุษย์น้อยกว่า 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_en": "What is the accession number of the protein with a divergence from human lineage of 937.5?",
    "question_th": "หมายเลขภาคยานุวัติของโปรตีนที่แตกต่างจากเชื้อสายมนุษย์ที่ 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–4\"",
    "question_en": "Which Series has a Score of 9–4?",
    "question_th": "ซีรีส์ใดมีคะแนน 9–4",
    "context": "CREATE TABLE table_name_86 (series VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT series FROM table_name_3 WHERE opponent = \"calgary flames\" AND score = \"9–4\"",
    "question_en": "Which Series has an Opponent of calgary flames, and a Score of 9–4?",
    "question_th": "ซีรีส์ใดที่มีคู่ต่อสู้ของเปลวไฟคัลการี และคะแนน 9–4",
    "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–5\"",
    "question_en": "Which Date has a Game smaller than 4, and an Opponent of calgary flames, and a Score of 4–5?",
    "question_th": "วันที่ใดมีเกมที่น้อยกว่า 4 และเป็นฝ่ายตรงข้ามของเปลวไฟคัลและคะแนน 4–5",
    "context": "CREATE TABLE table_name_83 (date VARCHAR, score VARCHAR, game VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_33 WHERE score = \"4–5\" AND game < 4",
    "question_en": "Which Date has a Score of 4–5, and a Game smaller than 4?",
    "question_th": "วันใดมีคะแนน 4–5 และเกมที่น้อยกว่า 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_en": "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?",
    "question_th": "กี่ปีที่ก่อตั้งมี af2 ฤดูกาลสุดท้ายก่อนปี 2009 โดยที่สนามกีฬาเป็นศูนย์กลางของไบโล และ af2 ฤดูกาลแรกเกิดขึ้นก่อนปี 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_en": "What is the mean Founded number when the team is the Baton Rouge Blaze?",
    "question_th": "ค่าเฉลี่ยที่ก่อตั้งขึ้นเมื่อทีมคือ 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_en": "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?",
    "question_th": "สิ่งใดที่ถูกระบุว่าเป็นทองคำสูงสุดที่มีเงินน้อยกว่า 1 และมีผลรวมน้อยกว่า 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_en": "What's the total Rank that has a Gold that's smaller than 0?",
    "question_th": "อันดับทั้งหมดที่มีทองน้อยกว่า 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_en": "What is listed as the highest Participants that also have a Rank of 5, and Silver that's smaller than 0?",
    "question_th": "อะไรคือรายชื่อผู้เข้าร่วมสูงสุดที่มีอันดับ 5 และเงินที่น้อยกว่า 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_en": "What is listed as the highest Rank that has a Gold that's larger than 0, and Participants that's smaller than 10?",
    "question_th": "อะไรคืออันดับสูงสุดที่มีทองมากกว่า 0 และผู้เข้าร่วมที่น้อยกว่า 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_en": "What is the total number of Participants that has Silver that's smaller than 0?",
    "question_th": "จำนวนผู้เข้าร่วมทั้งหมดที่มี Silver ที่น้อยกว่า 0 คือเท่าไร?",
    "context": "CREATE TABLE table_name_38 (participants INTEGER, silver INTEGER)"
  },
  {
    "answer": "SELECT skip FROM table_name_90 WHERE second = \"zrinka muhek\"",
    "question_en": "Which skip has Zrinka Muhek as Second?",
    "question_th": "การข้ามครั้งใดมี Zrinka Muhek เป็นอันดับสอง",
    "context": "CREATE TABLE table_name_90 (skip VARCHAR, second VARCHAR)"
  },
  {
    "answer": "SELECT second FROM table_name_96 WHERE third = \"caroline reed\"",
    "question_en": "What is the name of the second who has Caroline Reed as third?",
    "question_th": "คนที่สองที่มี Caroline Reed เป็นอันดับสามชื่ออะไร?",
    "context": "CREATE TABLE table_name_96 (second VARCHAR, third VARCHAR)"
  },
  {
    "answer": "SELECT lead FROM table_name_22 WHERE skip = \"kirsty balfour\"",
    "question_en": "Which lead has Kirsty Balfour as second?",
    "question_th": "ผู้นำคนไหนมี Kirsty Balfour เป็นอันดับสอง?",
    "context": "CREATE TABLE table_name_22 (lead VARCHAR, skip VARCHAR)"
  },
  {
    "answer": "SELECT third FROM table_name_47 WHERE skip = \"barbora vojtusova\"",
    "question_en": "What is the name of the third who has Barbora Vojtusova as Skip?",
    "question_th": "คนที่ 3 ที่มี Barbora Vojtusova เป็น Skip ชื่ออะไร?",
    "context": "CREATE TABLE table_name_47 (third VARCHAR, skip VARCHAR)"
  },
  {
    "answer": "SELECT second FROM table_name_41 WHERE third = \"nikolina petric\"",
    "question_en": "Who is the Second with Nikolina Petric as Third?",
    "question_th": "ใครคือคนที่สองโดยมี Nikolina Petric เป็นอันดับสาม?",
    "context": "CREATE TABLE table_name_41 (second VARCHAR, third VARCHAR)"
  },
  {
    "answer": "SELECT lead FROM table_name_10 WHERE skip = \"katarina radonic\"",
    "question_en": "Which Lead has Katarina Radonic as Skip?",
    "question_th": "ลีดคนไหนที่มี Katarina Radonic เป็น 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_en": "Who manufactured the motorcycle that did 24 laps and 9 grids?",
    "question_th": "ใครเป็นผู้ผลิตรถจักรยานยนต์ที่ทำ 24 รอบ 9 กริด?",
    "context": "CREATE TABLE table_name_84 (manufacturer VARCHAR, laps VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT MAX(grid) FROM table_name_18 WHERE laps > 24",
    "question_en": "How many grids correspond to more than 24 laps?",
    "question_th": "มากกว่า 24 รอบมีกี่กริด?",
    "context": "CREATE TABLE table_name_18 (grid INTEGER, laps INTEGER)"
  },
  {
    "answer": "SELECT time_retired FROM table_name_81 WHERE grid = 10",
    "question_en": "What is the time with 10 grids?",
    "question_th": "10 กริดเวลาเท่าไหร่?",
    "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_en": "How many grids have more than 24 laps with a time/retired of +1:12.208?",
    "question_th": "มีกี่กริดที่มีมากกว่า 24 รอบโดยมีเวลา/เลิกใช้ +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_en": "What is the score from the winner Keith Clearwater (1)?",
    "question_th": "คะแนนจากผู้ชนะ 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_en": "What is the date where the winner was Tom Kite (10)?",
    "question_th": "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_en": "Which Week had a Date of december 4, 1960?",
    "question_th": "สัปดาห์ใดมีวันที่ 4 ธันวาคม 1960",
    "context": "CREATE TABLE table_name_63 (week VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT bats FROM table_name_93 WHERE surname = \"baron\"",
    "question_en": "Which player has a last name of baron?",
    "question_th": "ผู้เล่นคนไหนมีนามสกุลเป็นบารอน?",
    "context": "CREATE TABLE table_name_93 (bats VARCHAR, surname VARCHAR)"
  },
  {
    "answer": "SELECT bats FROM table_name_17 WHERE uni_number = 31",
    "question_en": "Which batter has a uni# of 31?",
    "question_th": "แป้งใดมีหมายเลขเดียวเท่ากับ 31",
    "context": "CREATE TABLE table_name_17 (bats VARCHAR, uni_number VARCHAR)"
  },
  {
    "answer": "SELECT bats FROM table_name_61 WHERE surname = \"graham\"",
    "question_en": "Which batter has the last name Graham?",
    "question_th": "แป้งคนไหนมีนามสกุลเกรแฮม?",
    "context": "CREATE TABLE table_name_61 (bats VARCHAR, surname VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_56 WHERE date = \"april 1\"",
    "question_en": "Which Home has a Date of april 1?",
    "question_th": "บ้านไหนมีวันที่ 1 เมษายน?",
    "context": "CREATE TABLE table_name_56 (home VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_5 WHERE record = \"16–17–6\"",
    "question_en": "Which Home has a Record of 16–17–6?",
    "question_th": "บ้านไหนมีสถิติ 16–17–6?",
    "context": "CREATE TABLE table_name_5 (home VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_50 WHERE score = \"2–7\" AND record = \"5–8–2\"",
    "question_en": "Which Date has a Score of 2–7, and a Record of 5–8–2?",
    "question_th": "วันใดมีคะแนน 2–7 และบันทึก 5–8–2",
    "context": "CREATE TABLE table_name_50 (date VARCHAR, score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_23 WHERE score = \"2–4\" AND home = \"quebec nordiques\"",
    "question_en": "Which Record has a Score of 2–4, and a Home of quebec nordiques?",
    "question_th": "บันทึกใดมีคะแนน 2–4 และเป็นบ้านของชาวนอร์ดิคควิเบก",
    "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–6\"",
    "question_en": "Which Record has a Home of edmonton oilers, and a Score of 3–6?",
    "question_th": "บันทึกใดมีบ้านของช่างทำน้ำมันเอดมันตันและคะแนน 3–6",
    "context": "CREATE TABLE table_name_49 (record VARCHAR, home VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_50 WHERE record = \"11–14–4\"",
    "question_en": "Which Home has a Record of 11–14–4?",
    "question_th": "บ้านไหนมีสถิติ 11–14–4?",
    "context": "CREATE TABLE table_name_50 (home VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT series_ep FROM table_name_22 WHERE segment_d = \"fluorescent tubes\"",
    "question_en": "What is the series episode number with a segment of D, and having fluorescent tubes?",
    "question_th": "ซีรีส์เรื่องไหนมีส่วน D และมีหลอดฟลูออเรสเซนต์?",
    "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_en": "What is the Netflix number having a series episode of 1-01?",
    "question_th": "หมายเลข Netflix ที่มีซีรีส์ตอน 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_en": "What is the Netflix number having a segment D, of NED can corn?",
    "question_th": "หมายเลข Netflix ที่มีส่วน D ของ NED กระป๋องข้าวโพดคืออะไร",
    "context": "CREATE TABLE table_name_2 (netflix VARCHAR, segment_d VARCHAR)"
  },
  {
    "answer": "SELECT segment_a FROM table_name_18 WHERE netflix = \"s01e12\"",
    "question_en": "What is the segment A name, having a Netflix of s01e12?",
    "question_th": "ชื่อกลุ่ม A ที่มี Netflix เป็น s01e12 คืออะไร?",
    "context": "CREATE TABLE table_name_18 (segment_a VARCHAR, netflix VARCHAR)"
  },
  {
    "answer": "SELECT netflix FROM table_name_53 WHERE segment_c = \"pills\"",
    "question_en": "What is the Netflix number having a segment of C of pills?",
    "question_th": "หมายเลข Netflix ที่มีส่วนของเม็ดยาคือหมายเลขอะไร",
    "context": "CREATE TABLE table_name_53 (netflix VARCHAR, segment_c VARCHAR)"
  },
  {
    "answer": "SELECT segment_b FROM table_name_93 WHERE segment_d = \"pasta\"",
    "question_en": "For a segment D of pasta, what is the segment B?",
    "question_th": "ส่วนพาสต้าส่วน D ส่วน 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_en": "Which sport resulted in a gold medal in the 2000 Sydney games?",
    "question_th": "กีฬาใดที่ส่งผลให้ได้รับเหรียญทองในเกมที่ซิดนีย์ปี 2000",
    "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_en": "Which wrestling event was at the 2008 Beijing games?",
    "question_th": "การแข่งขันมวยปล้ำใดที่จัดขึ้นในเกมปักกิ่งปี 2008",
    "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_en": "What wrestling event was participated in during the 2008 Beijing games?",
    "question_th": "การแข่งขันมวยปล้ำที่ปักกิ่งปี 2008 เข้าร่วมในการแข่งขันใดบ้าง",
    "context": "CREATE TABLE table_name_28 (event VARCHAR, games VARCHAR, sport VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_50 WHERE december > 29",
    "question_en": "after december 29 what is the score?",
    "question_th": "หลังวันที่ 29 ธันวาคม คะแนนเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_50 (score VARCHAR, december INTEGER)"
  },
  {
    "answer": "SELECT game_3 FROM table_name_92 WHERE game_2 = \"ian french\"",
    "question_en": "Wjat game 3 has ian french as a game of 2?",
    "question_th": "Wjat game 3 มี ian ภาษาฝรั่งเศสเป็นเกมที่ 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_en": "What game 1 has halfback as a position?",
    "question_th": "เกมที่ 1 มีกองหลังเป็นตำแหน่งอะไร?",
    "context": "CREATE TABLE table_name_13 (game_1 VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_62 WHERE game_1 = \"colin scott\"",
    "question_en": "What position has colin scott as game 1?",
    "question_th": "คอลิน สก็อตต์อยู่ในตำแหน่งใดในเกมที่ 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_en": "What game 1 has bob lindner as game 2?",
    "question_th": "เกมใดที่ 1 มี Bob lindner เป็นเกมที่ 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_en": "What pick was mario williams before 2006?",
    "question_th": "มาริโอ วิลเลียมส์ เลือกอะไรก่อนปี 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_en": "What is the entered office that has 1337 as the left office?",
    "question_th": "สำนักงานที่เข้ามามี 1337 เป็นสำนักงานด้านซ้ายคืออะไร?",
    "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_en": "What is the born-died that has office of 13 September 1229 as the entered?",
    "question_th": "ประสูติ-มรณภาพซึ่งดำรงตำแหน่งวันที่ 13 กันยายน พ.ศ. 1229 เข้ามานั้นคืออะไร?",
    "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_en": "Which Blagojevich (D) has a Source of zogby/wsj, and a Topinka (R) of 33.2%?",
    "question_th": "บลาโกเยวิช (D) คนไหนมีแหล่งที่มาของ zogby/wsj และ Topinka (R) อยู่ที่ 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_en": "Which Blagojevich (D) has a Source of zogby/wsj, and a Date of october 16, 2006?",
    "question_th": "Blagojevich (D) ใดมีแหล่งที่มาของ zogby/wsj และวันที่ 16 ตุลาคม 2549",
    "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_en": "Which Blagojevich (D) happened on october 16, 2006?",
    "question_th": "บลาโกเยวิช (D) คนไหนเกิดขึ้นเมื่อวันที่ 16 ตุลาคม 2549",
    "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_en": "Which Topinka happened on january 22, 2006?",
    "question_th": "Topinka ใดที่เกิดขึ้นในวันที่ 22 มกราคม 2549",
    "context": "CREATE TABLE table_name_11 (topinka__r_ VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_21 WHERE remainder = \"20%\"",
    "question_en": "Which Date has a Remainder of 20%?",
    "question_th": "วันไหนมีเศษเหลือ 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_en": "Which Source has a Remainder of 15%, and a Topinka of 26%?",
    "question_th": "แหล่งที่มาใดมีส่วนที่เหลือ 15% และ Topinka 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_en": "What season had more than 12 contestants in which greydis gil won?",
    "question_th": "ฤดูกาลใดมีผู้เข้าแข่งขันมากกว่า 12 คน ซึ่งเกรย์ดิส กิลชนะ?",
    "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_en": "How many contestants were there in a season where alejandra espinoza won?",
    "question_th": "มีผู้เข้าแข่งขันกี่คนในฤดูกาลที่อเลฮานดรา เอสปิโนซาชนะ",
    "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_en": "Record description of maximum load to m (ft), and a Date of 23 september 1961 is what pilot?",
    "question_th": "บันทึกคำอธิบายการรับน้ำหนักสูงสุดเป็น m (ft) และลงวันที่ 23 กันยายน 1961 นักบินคนไหน?",
    "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_en": "Date of 23 september 1961, and a Pilot of b.v. zemskov had what record description?",
    "question_th": "วันที่ 23 กันยายน พ.ศ. 2504 และนักบินของ bv zemskov มีคำอธิบายบันทึกอะไรบ้าง",
    "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_en": "Type of mi-10r, and a Record description of altitude with kg (lb) payload, and a Pilot of g.v. alfyorov is what date?",
    "question_th": "ประเภทของ mi-10r และบันทึกคำอธิบายระดับความสูงพร้อมน้ำหนักบรรทุก กิโลกรัม (ปอนด์) และนักบินของ gv alfyorov คือวันที่เท่าไร?",
    "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_en": "Record description of altitude with kg (lb) payload, and a Pilot of g.v. alfyorov had what type?",
    "question_th": "บันทึกคำอธิบายความสูงพร้อมน้ำหนักบรรทุกเป็นกิโลกรัม (ปอนด์) และนักบินของ gv alfyorov มีประเภทใด",
    "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_en": "Pilot of g.v. alfyorov, and a Record description of altitude with kg (lb) payload, and a Type of mi-10 involved what date?",
    "question_th": "นักบินของ gv alfyorov และบันทึกคำอธิบายระดับความสูงพร้อมน้ำหนักบรรทุก กิโลกรัม (ปอนด์) และประเภทของ mi-10 เกี่ยวข้องกับวันที่ใด",
    "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_en": "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?",
    "question_th": "ความสำเร็จของ m (ft) และประเภท mi-10r และนักบินของ vp koloshenko และวันที่ 28 พฤษภาคม 1965 มีคำอธิบายบันทึกอะไรบ้าง?",
    "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_en": "When was the date of death for the person married to Charles II?",
    "question_th": "วันสิ้นพระชนม์ของบุคคลที่แต่งงานกับ 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_en": "On what date did James II take a consort?",
    "question_th": "พระเจ้าเจมส์ที่ 2 ทรงอภิเษกสมรสเมื่อใด?",
    "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_en": "What is the total number of field goals a player had when there were more than 0 extra points and there were 5 touchdowns?",
    "question_th": "จำนวนประตูทั้งหมดที่ผู้เล่นทำได้เมื่อมีคะแนนพิเศษมากกว่า 0 คะแนนและมีทัชดาวน์ 5 ครั้งเป็นเท่าใด",
    "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_en": "What is the sum of all the touchdowns when the player had more than 0 extra points and less than 0 field goals?",
    "question_th": "ผลรวมของทัชดาวน์ทั้งหมดเมื่อผู้เล่นมีคะแนนพิเศษมากกว่า 0 คะแนนและการยิงประตูน้อยกว่า 0 คืออะไร?",
    "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_en": "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?",
    "question_th": "จำนวนการยิงประตูรวมของผู้เล่นที่ทำทัชดาวน์น้อยกว่า 3 ครั้ง มี 4 แต้ม และมีแต้มพิเศษน้อยกว่า 4 แต้มคือเท่าใด",
    "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_en": "What is the lowest number of draws of the NTFA Div 2 Lilydale?",
    "question_th": "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_en": "What is the lowest number of draws of the team with 9 wins and less than 0 byes?",
    "question_th": "เสมอน้อยที่สุดของทีมโดยชนะ 9 นัดและบายน้อยกว่า 0 คือเท่าไหร่?",
    "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_en": "What is the lowest number of against of NTFA Div 2 Fingal Valley?",
    "question_th": "จำนวนต่ำสุดที่เทียบกับ 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_en": "What is the largest rank with 2,080 area?",
    "question_th": "อันดับที่ใหญ่ที่สุดด้วยพื้นที่ 2,080 คืออะไร?",
    "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_en": "What is the largest area in Alaska with a population of 39 and rank over 19?",
    "question_th": "พื้นที่ใดที่ใหญ่ที่สุดในอลาสกาซึ่งมีประชากร 39 คนและอันดับที่มากกว่า 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_en": "How many events are in South Africa?",
    "question_th": "มีงานกี่งานในแอฟริกาใต้?",
    "context": "CREATE TABLE table_name_25 (events INTEGER, country VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_98 WHERE game = \"game 2\"",
    "question_en": "On what date was game 2 played?",
    "question_th": "เกมที่ 2 เล่นวันไหนครับ?",
    "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_en": "Which game had Philadelphia as its home team and was played on April 23?",
    "question_th": "เกมใดที่มีฟิลาเดลเฟียเป็นทีมเหย้าและเล่นในวันที่ 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_en": "Which games had Philadelphia as home team?",
    "question_th": "เกมใดบ้างที่มีฟิลาเดลเฟียเป็นทีมเหย้า?",
    "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_en": "What was the result of the game played on April 16 with Philadelphia as home team?",
    "question_th": "ผลการแข่งขันวันที่ 16 เมษายน มีฟิลาเดลเฟียเป็นเจ้าบ้านเป็นอย่างไร?",
    "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_en": "What was the result of the April 16 game?",
    "question_th": "ผลการแข่งขันวันที่ 16 เมษายน เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_94 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_name_88 WHERE result = \"126-95\"",
    "question_en": "Which game had a result of 126-95?",
    "question_th": "เกมไหนสกอร์ 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_en": "Which Services have a Local authority of chiltern, and a Zone 2010 of 9?",
    "question_th": "บริการใดบ้างที่มีหน่วยงานท้องถิ่นของ chitern และโซน 2010 จาก 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_en": "Which Station has a Zone 2010 of 7?",
    "question_th": "สถานีใดมีโซน 2010 เป็น 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_en": "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?",
    "question_th": "หน่วยงานท้องถิ่นใดมีโซน 2007 เป็นโซนภายนอก และโซน 2008 เป็นโซนภายนอก และโซน 2010 เป็นโซนด้านนอก และสถานีวอลแทมครอส",
    "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_en": "Which Local authority has Services of greater anglia?",
    "question_th": "หน่วยงานท้องถิ่นใดมีบริการของ 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_en": "Which Station has a Zone 2008 of 8, and a Zone 2007 of outside zones, and Services of london overground?",
    "question_th": "สถานีใดมีโซน 2008 เป็น 8 และโซน 2007 เป็นโซนภายนอก และบริการบนพื้นดินของลอนดอน",
    "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_en": "Which Zone 2008 has Services of greater anglia, and a Station of cheshunt?",
    "question_th": "โซนใด 2008 มีบริการของ anglia มากขึ้นและสถานี 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_en": "How many touchdowns are there when there were 0 extra points and Hal Weeks had left halfback?",
    "question_th": "มีทัชดาวน์กี่ครั้งเมื่อมี 0 แต้มพิเศษและ Hal Weeks ออกจากกองหลัง?",
    "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_en": "How many field goals did duncan thompson have?",
    "question_th": "ดันแคน ทอมป์สันยิงประตูได้กี่ประตู?",
    "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_en": "What is the highest field goals when there were more than 1 touchdown and 0 extra points?",
    "question_th": "อะไรคือประตูสูงสุดเมื่อมีมากกว่า 1 ทัชดาวน์และ 0 แต้มพิเศษ?",
    "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_en": "What is the lowest number of field goals when the points were less than 5?",
    "question_th": "จำนวนฟิลด์โกลต่ำสุดเมื่อคะแนนน้อยกว่า 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_en": "what is the HAAT of devils lake",
    "question_th": "HAAT ของทะเลสาบปีศาจคืออะไร",
    "context": "CREATE TABLE table_name_94 (haat VARCHAR, city_of_license VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_20 WHERE winner = \"km (mi)\"",
    "question_en": "What was the date with a winner of km (mi)?",
    "question_th": "ผู้ชนะ กม.(ไมล์) ตรงกับวันที่เท่าไหร่?",
    "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_en": "What is the highest ERP W of an 89.1 frequency translator?",
    "question_th": "ERP W สูงสุดของเครื่องแปลความถี่ 89.1 คืออะไร",
    "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_en": "What is the class of the translator with 10 ERP W and a call sign of w273bl?",
    "question_th": "นักแปลที่มี 10 ERP W และสัญญาณเรียกขานของ 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_en": "What is the FCC info of the translator with an Irmo, South Carolina city license?",
    "question_th": "ข้อมูล FCC ของนักแปลที่มีใบอนุญาตเมือง Irmo, South Carolina คืออะไร",
    "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_en": "What is the call sign of the translator in Spring Valley, Nevada?",
    "question_th": "สัญญาณเรียกขานของนักแปลในสปริงวัลเลย์ รัฐเนวาดาคืออะไร?",
    "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_en": "What is the call sign of the translator with an ERP W greater than 38 and a city license from Great Falls, Montana?",
    "question_th": "อะไรคือสัญญาณเรียกของนักแปลที่มี ERP W มากกว่า 38 และมีใบอนุญาตเมืองจาก 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_en": "Name the ERP W for frequency of 92.7",
    "question_th": "ตั้งชื่อ ERP W สำหรับความถี่ 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_en": "Name the ERP W for glens falls, new york",
    "question_th": "ตั้งชื่อ ERP W สำหรับ Glen 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_en": "Name the FCC info for frequency Mhz less than 97.3 and call sign of w237br",
    "question_th": "ตั้งชื่อข้อมูล FCC สำหรับความถี่ Mhz น้อยกว่า 97.3 และสัญญาณเรียกของ 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_en": "Name the average ERP W and call sign of w237br",
    "question_th": "ตั้งชื่อ ERP W โดยเฉลี่ยและสัญญาณเรียกของ 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_en": "Which Score has Points of 64, and a Game of 49?",
    "question_th": "คะแนนใดมีคะแนน 64 และเกม 49",
    "context": "CREATE TABLE table_name_5 (score VARCHAR, points VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT AVG(points) FROM table_name_71 WHERE score = \"4–1\" AND record = \"18–10–8–1\" AND january > 2",
    "question_en": "Which Points have a Score of 4–1, and a Record of 18–10–8–1, and a January larger than 2?",
    "question_th": "แต้มใดมีคะแนน 4–1 และสถิติ 18–10–8–1 และเดือนมกราคมมากกว่า 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_en": "How many Points have a January of 18?",
    "question_th": "วันที่ 18 มกราคม 18 มกราคม มีกี่คะแนน?",
    "context": "CREATE TABLE table_name_88 (points VARCHAR, january VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(game) FROM table_name_96 WHERE score = \"5–4\" AND points < 49",
    "question_en": "How many Games have a Score of 5–4, and Points smaller than 49?",
    "question_th": "มีกี่เกมที่มีคะแนน 5–4 และคะแนนน้อยกว่า 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_en": "What is the average gold of the winter athlete with 1 bronze, less than 3 silver, and less than 4 total medals?",
    "question_th": "เหรียญทองเฉลี่ยของนักกีฬาฤดูหนาวที่ได้ 1 เหรียญทองแดง น้อยกว่า 3 เหรียญเงิน และรวมน้อยกว่า 4 เหรียญคือเท่าใด",
    "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_en": "What is the highest total medals winter athlete Clara Hughes has?",
    "question_th": "Clara Hughes นักกีฬาฤดูหนาวที่ได้เหรียญรางวัลรวมสูงสุดคืออะไร",
    "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_en": "What is the lowest number of bronze a short track athlete with 0 gold medals has?",
    "question_th": "นักกีฬาวิ่งระยะสั้นที่ได้ 0 เหรียญทองได้เหรียญทองแดงน้อยที่สุดคือเท่าไร?",
    "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_en": "What is the Project Name with a Country that is kazakhstan and a Peak that is 150?",
    "question_th": "ชื่อโครงการกับประเทศที่เป็นคาซัคสถานและยอดเขาที่ 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_en": "What is the Peak with a Project Name that is talakan ph 1?",
    "question_th": "พีคที่มีชื่อโครงการว่า 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_en": "What is the Project Name with a Country that is opec?",
    "question_th": "ชื่อโครงการกับประเทศที่เป็นโอเปกคืออะไร?",
    "context": "CREATE TABLE table_name_36 (project_name VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT operator FROM table_name_47 WHERE peak = \"55\"",
    "question_en": "What is the Operator with a Peak that is 55?",
    "question_th": "โอเปอเรเตอร์ที่มียอดอยู่ที่ 55 คืออะไร?",
    "context": "CREATE TABLE table_name_47 (operator VARCHAR, peak VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_84 WHERE record = \"25-41-9\"",
    "question_en": "What was the score when they had a 25-41-9 record?",
    "question_th": "ตอนที่พวกเขามีสถิติ 25-41-9 คะแนนเป็นเท่าไหร่?",
    "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_en": "What is the game associated with a score of 4 - 2, and a record of 25-39-9?",
    "question_th": "เกมที่เกี่ยวข้องกับคะแนน 4 - 2 และสถิติ 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_en": "How many attendances have w 48-10 as the result?",
    "question_th": "มีผู้เข้าร่วมทั้งหมดกี่คนในผลการแข่งขัน w 48-10?",
    "context": "CREATE TABLE table_name_6 (attendance INTEGER, result VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(attendance) FROM table_name_78 WHERE week = 9",
    "question_en": "How many attendances have 9 as the week?",
    "question_th": "มีผู้เข้าร่วมประชุมกี่คนต่อสัปดาห์?",
    "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_en": "What is the lowest attendance that has a week less than 4, and w 13-7 as the result?",
    "question_th": "อะไรคือจำนวนผู้เข้าร่วมต่ำสุดที่มีหนึ่งสัปดาห์น้อยกว่า 4 และผลลัพธ์คือ 13-7?",
    "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_en": "What is the psd-pc for 18-22/04/2009?",
    "question_th": "psd-pc สำหรับวันที่ 18-22/04/2552 คืออะไร",
    "context": "CREATE TABLE table_name_65 (psd___pc VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_74 WHERE others = \"2%\"",
    "question_en": "What date has the others of 2%?",
    "question_th": "วันไหนที่เหลืออีก 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_en": "What was the UDMR for 18-22/04/2009?",
    "question_th": "UDMR สำหรับวันที่ 18-22/04/2552 คืออะไร",
    "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_en": "When the other is n/a and the psc-pc is 30% what is the date?",
    "question_th": "เมื่ออีกอันเป็น n/a และ psc-pc อยู่ที่ 30% คือวันที่เท่าไร",
    "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_en": "What was the polling firm with others of 1%?",
    "question_th": "สำนักงานการเลือกตั้งกับผู้อื่น 1% คืออะไร?",
    "context": "CREATE TABLE table_name_25 (polling_firm VARCHAR, others VARCHAR)"
  },
  {
    "answer": "SELECT elena_băsescu FROM table_name_98 WHERE polling_firm = \"gallup\"",
    "question_en": "What is the elena basescu when the poling firm of gallup?",
    "question_th": "elena basescu คืออะไรเมื่อบริษัทโพลลิ่งแห่งกัลล์อัพ?",
    "context": "CREATE TABLE table_name_98 (elena_băsescu VARCHAR, polling_firm VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_46 WHERE game < 34 AND december < 14 AND score = \"10 - 6\"",
    "question_en": "Game smaller than 34, and a December smaller than 14, and a Score of 10 - 6 has what opponent?",
    "question_th": "เกมที่เล็กกว่า 34 และเดือนธันวาคมน้อยกว่า 14 และคะแนน 10 - 6 มีคู่ต่อสู้คนไหน?",
    "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_en": "Game larger than 34, and a December smaller than 23 had what record?",
    "question_th": "เกมที่มากกว่า 34 และเดือนธันวาคมที่น้อยกว่า 23 มีสถิติอะไร?",
    "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_en": "Record of 15-12-4, and a Game larger than 31 involves what highest December?",
    "question_th": "สถิติ 15-12-4 และเกมที่ใหญ่กว่า 31 เกี่ยวข้องกับเดือนธันวาคมสูงสุดที่ใด",
    "context": "CREATE TABLE table_name_68 (december INTEGER, record VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT AVG(points) FROM table_name_77 WHERE record = \"45–21–4\" AND game > 70",
    "question_en": "Which Points have a Record of 45–21–4, and a Game larger than 70?",
    "question_th": "แต้มใดมีสถิติ 45–21–4 และเกมที่ใหญ่กว่า 70",
    "context": "CREATE TABLE table_name_77 (points INTEGER, record VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT MIN(march) FROM table_name_88 WHERE score = \"5–6\" AND points < 100",
    "question_en": "Which March is the lowest one that has a Score of 5–6, and Points smaller than 100?",
    "question_th": "เดือนมีนาคมใดเป็นช่วงต่ำสุดที่มีคะแนน 5–6 และคะแนนน้อยกว่า 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_en": "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?",
    "question_th": "คะแนนใดที่มีเดือนมีนาคมมากกว่า 15 และคะแนนมากกว่า 96 และเกมที่น้อยกว่า 76 และฝ่ายตรงข้ามของ @ เมืองหลวงของวอชิงตัน",
    "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–21–4\"",
    "question_en": "Which Opponent has a Record of 45–21–4?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีสถิติ 45–21–4",
    "context": "CREATE TABLE table_name_51 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT AVG(year_completed) FROM table_name_82 WHERE floors = 10",
    "question_en": "What year was the building completed that has 10 floors?",
    "question_th": "อาคาร 10 ชั้นสร้างเสร็จปีไหน?",
    "context": "CREATE TABLE table_name_82 (year_completed INTEGER, floors VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_13 WHERE floors = 10",
    "question_en": "What was the name of the building with 10 floors?",
    "question_th": "อาคาร 10 ชั้นชื่ออะไร?",
    "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_en": "How tall is the florida life building, completed before 1990?",
    "question_th": "อาคารฟลอริดาไลฟ์สูงแค่ไหน สร้างเสร็จก่อนปี 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_en": "Result of 86-87 (2-4) is what game?",
    "question_th": "ผลสกอร์ 86-87 (2-4) เกมอะไร?",
    "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_en": "Result of 88-85 ot (1-0) involves what game?",
    "question_th": "ผลสกอร์ 88-85 โอที (1-0) เกี่ยวเกมอะไร?",
    "context": "CREATE TABLE table_name_16 (game VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_83 WHERE game = \"game 5\"",
    "question_en": "Game of game 5 had what result?",
    "question_th": "เกมของเกมที่ 5 มีผลอย่างไร?",
    "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_en": "Road Team of utah jazz, and a Result of 81-83 (3-2) involved what game?",
    "question_th": "ทีมโรดยูทาห์แจ๊ส และผลสกอร์ 81-83 (3-2) เกี่ยวข้องกับเกมอะไร",
    "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_en": "Home Team of chicago bulls, and a Result of 81-83 (3-2) involved what game?",
    "question_th": "เจ้าบ้าน ชิคาโก บูลส์ และผลสกอร์ 81-83 (3-2) เกี่ยวเกมอะไร?",
    "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_en": "Result of 86-87 (2-4) involves what home team?",
    "question_th": "ผลสกอร์ 86-87 (2-4) เจอกับเจ้าบ้านทีมไหน?",
    "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_en": "What is the fewest wins that has fewer than 23 goals scored, team of 2 de Mayo, and fewer than 7 draws?",
    "question_th": "อะไรคือชัยชนะน้อยที่สุดที่ทำได้น้อยกว่า 23 ประตู, ทีม 2 เด มาโย และเสมอน้อยกว่า 7 ครั้ง?",
    "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_en": "What is the number of draws for the team with more than 8 losses and 13 points?",
    "question_th": "ทีมที่เสมอกันมากกว่า 8 นัด และ 13 แต้ม มีจำนวนเท่าไหร่?",
    "context": "CREATE TABLE table_name_61 (draws VARCHAR, losses VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(march) FROM table_name_24 WHERE points = 85",
    "question_en": "How much March has Points of 85?",
    "question_th": "เดือนมีนาคมมีคะแนน 85 เท่าไหร่?",
    "context": "CREATE TABLE table_name_24 (march VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT MIN(game) FROM table_name_46 WHERE score = \"2–3 ot\" AND points > 76",
    "question_en": "Which Game is the lowest one that has a Score of 2–3 ot, and Points larger than 76?",
    "question_th": "เกมใดเป็นเกมที่ต่ำที่สุดที่มีคะแนน 2–3 ot และคะแนนมากกว่า 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_en": "How many games have a March of 19, and Points smaller than 83?",
    "question_th": "มีกี่เกมที่มีวันที่ 19 มีนาคมและมีคะแนนน้อยกว่า 83",
    "context": "CREATE TABLE table_name_50 (game VARCHAR, march VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT almalı__qax_ FROM table_name_77 WHERE süskən = \"zərnə\"",
    "question_en": "What is the Almali village with the Süskən village zərnə?",
    "question_th": "หมู่บ้านอัลมาลีกับหมู่บ้านซุสเค็น zərnə คืออะไร?",
    "context": "CREATE TABLE table_name_77 (almalı__qax_ VARCHAR, süskən VARCHAR)"
  },
  {
    "answer": "SELECT almalı__qax_ FROM table_name_81 WHERE malax = \"qaxingiloy\"",
    "question_en": "What is the Almali village with the Malax village qaxingiloy?",
    "question_th": "หมู่บ้าน Almali กับหมู่บ้าน Malax qaxingiloy คืออะไร?",
    "context": "CREATE TABLE table_name_81 (almalı__qax_ VARCHAR, malax VARCHAR)"
  },
  {
    "answer": "SELECT süskən FROM table_name_25 WHERE malax = \"meşəbaş\"",
    "question_en": "What is the Süskən village with a Malax village meşəbaş?",
    "question_th": "หมู่บ้านSüskənที่มีหมู่บ้าน Malax meşəbaş คืออะไร?",
    "context": "CREATE TABLE table_name_25 (süskən VARCHAR, malax VARCHAR)"
  },
  {
    "answer": "SELECT qaxmuğal FROM table_name_90 WHERE malax = \"meşəbaş\"",
    "question_en": "What is the Qaxmuğal village with a Malax village meşəbaş?",
    "question_th": "หมู่บ้านQaxmuğalกับหมู่บ้าน Malax meşəbaşคืออะไร?",
    "context": "CREATE TABLE table_name_90 (qaxmuğal VARCHAR, malax VARCHAR)"
  },
  {
    "answer": "SELECT qaxmuğal FROM table_name_81 WHERE fıstıqlı = \"keşqutan\"",
    "question_en": "What is the Qaxmuğal village with a Fistiqli village keşqutan?",
    "question_th": "หมู่บ้านQaxmuğalกับหมู่บ้าน Fistiqli keşqutan คืออะไร?",
    "context": "CREATE TABLE table_name_81 (qaxmuğal VARCHAR, fıstıqlı VARCHAR)"
  },
  {
    "answer": "SELECT MAX(championships) FROM table_name_54 WHERE club = \"springfield cardinals\"",
    "question_en": "What are the highest championships where the club is Springfield Cardinals?",
    "question_th": "อะไรคือการแข่งขันชิงแชมป์สูงสุดที่สโมสรคือสปริงฟิลด์คาร์ดินัลส์?",
    "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_en": "What is the maximum torque that has 2,445 CC Displacement, and an Iveco 8144.61 engine?",
    "question_th": "แรงบิดสูงสุดที่มี Displacement 2,445 CC และเครื่องยนต์ Iveco 8144.61 คือเท่าไร?",
    "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_en": "What Valvetrain has a fuel system made up of petrol engines?",
    "question_th": "Valvetrain ใดมีระบบเชื้อเพลิงที่ประกอบด้วยเครื่องยนต์เบนซิน",
    "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_en": "Which Population has an Altitude (mslm) larger than 98, and a Density (inhabitants/km 2) larger than 5869, and a Rank of 1st?",
    "question_th": "ประชากรใดมีระดับความสูง (mslm) มากกว่า 98 และความหนาแน่น (ประชากร/กม. 2) มากกว่า 5869 และอันดับที่ 1",
    "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_en": "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?",
    "question_th": "ประชากรใดมีจำนวนสูงสุดที่มีความหนาแน่น (ประชากร/กิโลเมตร 2) มากกว่า 2,805.8 และอันดับ 1 และระดับความสูง (mslm) น้อยกว่า 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_en": "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?",
    "question_th": "ระดับความสูงใด (mslm) สูงที่สุดโดยมีพื้นที่ (กิโลเมตร 2) น้อยกว่า 13.01 และมีประชากร 74536 และความหนาแน่น (ประชากร/กิโลเมตร 2) มากกว่า 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_en": "Which Altitude (mslm) is the highest one that has a City of legnano, and a Population larger than 59492?",
    "question_th": "ระดับความสูงใด (mslm) ที่สูงที่สุดที่มีเมือง Legnano และมีประชากรมากกว่า 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_en": "What is the Motor that has a Focuses bigger than 62, and a Participant of rebaque?",
    "question_th": "มอเตอร์ที่มี Focuses ใหญ่กว่า 62 และผู้เข้าร่วม Rebaque คืออะไร?",
    "context": "CREATE TABLE table_name_73 (engine VARCHAR, points VARCHAR, entrant VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_name_1 WHERE year > 1977",
    "question_en": "What is the Focus that has a Year bigger than 1977?",
    "question_th": "อะไรคือโฟกัสที่มีปีใหญ่กว่าปี 1977?",
    "context": "CREATE TABLE table_name_1 (points VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_name_42 WHERE driver = \"hans hartmann\"",
    "question_en": "When did Hans Hartmann drive?",
    "question_th": "Hans Hartmann ขับรถเมื่อไหร่?",
    "context": "CREATE TABLE table_name_42 (year VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT second FROM table_name_97 WHERE lead = \"jordan moulton\"",
    "question_en": "What is the second that has jordan moulton as the lead?",
    "question_th": "วินาทีที่มีจอร์แดน โมลตันเป็นผู้นำคืออะไร?",
    "context": "CREATE TABLE table_name_97 (second VARCHAR, lead VARCHAR)"
  },
  {
    "answer": "SELECT skip FROM table_name_22 WHERE third = \"martina baumann\"",
    "question_en": "What skip has martina baumann as the third?",
    "question_th": "มาร์ติน่า บาวมันน์ เป็นคนข้ามทีมคนไหน?",
    "context": "CREATE TABLE table_name_22 (skip VARCHAR, third VARCHAR)"
  },
  {
    "answer": "SELECT skip FROM table_name_15 WHERE country = \"switzerland\"",
    "question_en": "What skip has switzerland as the country?",
    "question_th": "สิ่งที่ข้ามมีสวิตเซอร์แลนด์เป็นประเทศ?",
    "context": "CREATE TABLE table_name_15 (skip VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT skip FROM table_name_13 WHERE lead = \"angela tuvaeva\"",
    "question_en": "What skip has angela tuvaeva as the lead?",
    "question_th": "Angela Tuvaeva เป็นผู้นำในเรื่องใด?",
    "context": "CREATE TABLE table_name_13 (skip VARCHAR, lead VARCHAR)"
  },
  {
    "answer": "SELECT skip FROM table_name_66 WHERE country = \"norway\"",
    "question_en": "What skip has norway as the country?",
    "question_th": "นอร์เวย์มีประเทศอะไรบ้าง?",
    "context": "CREATE TABLE table_name_66 (skip VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT skip FROM table_name_58 WHERE country = \"denmark\"",
    "question_en": "What skip has denmark as the country?",
    "question_th": "เดนมาร์กมีประเทศอะไรบ้างที่ข้ามไป?",
    "context": "CREATE TABLE table_name_58 (skip VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_20 WHERE home = \"los angeles\"",
    "question_en": "Which visitor has a Los Angeles home?",
    "question_th": "แขกคนไหนมีบ้านในลอสแองเจลิส",
    "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_en": "Opponent of edmonton oilers, and a Game of 3 is what series?",
    "question_th": "ฝ่ายตรงข้ามของ edmonton oilers และ Game of 3 คือซีรีส์อะไร",
    "context": "CREATE TABLE table_name_95 (series VARCHAR, opponent VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_76 WHERE score = \"2–3 ot\"",
    "question_en": "Score of 2–3 ot on what date?",
    "question_th": "คะแนน 2–3 ot วันไหน?",
    "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–2\"",
    "question_en": "Opponent of @ edmonton oilers, and a Game smaller than 7, and a Series of oilers lead 3–2 had what score?",
    "question_th": "ฝ่ายตรงข้ามของ @ edmonton oilers และเกมที่น้อยกว่า 7 และซีรีส์ของ oilers นำ 3–2 มีคะแนนเท่าใด",
    "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–2\"",
    "question_en": "Opponent of @ edmonton oilers, and a Game larger than 1, and a Series of oilers lead 3–2 had what score?",
    "question_th": "ฝ่ายตรงข้ามของ @ edmonton oilers และเกมที่ใหญ่กว่า 1 และซีรีส์ของ oilers นำ 3–2 มีคะแนนเท่าใด",
    "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–3\"",
    "question_en": "Series of oilers win 4–3 had what highest game?",
    "question_th": "ซีรีส์ Oilers ชนะ 4–3 มีเกมใดสูงสุด?",
    "context": "CREATE TABLE table_name_6 (game INTEGER, series VARCHAR)"
  },
  {
    "answer": "SELECT december FROM table_name_65 WHERE record = \"4-3-6\"",
    "question_en": "Which December has a Record of 4-3-6?",
    "question_th": "ธันวาคมไหนมีสถิติ 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_en": "Which Score has a December smaller than 14, and a Game of 12?",
    "question_th": "คะแนนใดที่มีเดือนธันวาคมน้อยกว่า 14 และเกม 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_en": "Which Game is the highest one that has a Record of 4-3-6?",
    "question_th": "เกมใดคือเกมสูงสุดที่มีสถิติ 4-3-6?",
    "context": "CREATE TABLE table_name_83 (game INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_85 WHERE record = \"18–11–5\"",
    "question_en": "Which Score has a Record of 18–11–5?",
    "question_th": "คะแนนใดมีสถิติ 18–11–5?",
    "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–12–5\"",
    "question_en": "Which Score has a Game larger than 32, and Points smaller than 42, and a December larger than 19, and a Record of 18–12–5?",
    "question_th": "คะแนนใดที่มีเกมมากกว่า 32 และคะแนนน้อยกว่า 42 และเดือนธันวาคมมากกว่า 19 และมีสถิติ 18–12–5",
    "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_en": "Which Score has Points of 36, and a Game of 30?",
    "question_th": "คะแนนใดมีคะแนน 36 และเกม 30",
    "context": "CREATE TABLE table_name_6 (score VARCHAR, points VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT SUM(game) FROM table_name_50 WHERE record = \"14–10–4\" AND points < 32",
    "question_en": "Which Game has a Record of 14–10–4, and Points smaller than 32?",
    "question_th": "เกมใดมีสถิติ 14–10–4 และแต้มน้อยกว่า 32",
    "context": "CREATE TABLE table_name_50 (game INTEGER, record VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT SUM(game) FROM table_name_47 WHERE score = \"4–1\"",
    "question_en": "Which Game has a Score of 4–1?",
    "question_th": "เกมใดมีคะแนน 4–1?",
    "context": "CREATE TABLE table_name_47 (game INTEGER, score VARCHAR)"
  },
  {
    "answer": "SELECT celebrity FROM table_name_23 WHERE famous_for = \"rapper\"",
    "question_en": "Which celebrity was famous for being a rapper?",
    "question_th": "ดาราคนไหนที่โด่งดังจากการเป็นแร็ปเปอร์?",
    "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_en": "What position did the celebrity finish that entered on day 1 and exited on day 19?",
    "question_th": "ดาราจบตำแหน่งไหนที่เข้าวันที่ 1 และออกวันที่ 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_en": "What was Dom Joly famous for?",
    "question_th": "Dom Joly มีชื่อเสียงในเรื่องอะไร?",
    "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_en": "What position did the celebrity finish that entered on day 1 and exited on day 15?",
    "question_th": "ดาราจบตำแหน่งไหนที่เข้าวันที่ 1 และออกในวันที่ 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_en": "What celebrity is famous for being an actor?",
    "question_th": "ดาราคนไหนมีชื่อเสียงในการเป็นนักแสดง?",
    "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_en": "Where did steve smith go to school?",
    "question_th": "สตีฟ สมิธไปโรงเรียนที่ไหน?",
    "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_en": "What was the result associated with the cinemaa awards, and gabbar singh film?",
    "question_th": "ผลลัพธ์ที่เกี่ยวข้องกับรางวัล Cinemaa และภาพยนตร์ Gabbar Singh คืออะไร?",
    "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_en": "What was the award for the excellence in tamil category?",
    "question_th": "รางวัลความเป็นเลิศประเภททมิฬคืออะไร?",
    "context": "CREATE TABLE table_name_96 (award VARCHAR, category VARCHAR)"
  },
  {
    "answer": "SELECT composer_s_ FROM table_name_85 WHERE length = \"6:24\"",
    "question_en": "Who is the composer of the song with a length of 6:24?",
    "question_th": "ใครเป็นคนแต่งเพลงความยาว 6:24?",
    "context": "CREATE TABLE table_name_85 (composer_s_ VARCHAR, length VARCHAR)"
  },
  {
    "answer": "SELECT length FROM table_name_88 WHERE track = \"16\"",
    "question_en": "What is the lengtho f track 16?",
    "question_th": "f แทร็ก 16 ยาวเท่าไร?",
    "context": "CREATE TABLE table_name_88 (length VARCHAR, track VARCHAR)"
  },
  {
    "answer": "SELECT new_entries_this_round FROM table_name_58 WHERE clubs = \"2 → 1\"",
    "question_en": "How many new entries this round have clubs 2 → 1?",
    "question_th": "รอบนี้มีไม้เข้าใหม่กี่ไม้ 2 → 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 = \"£3,000\"",
    "question_en": "What is the average for matches with a prize money amount of £3,000?",
    "question_th": "ค่าเฉลี่ยสำหรับแมตช์ที่มีเงินรางวัล 3,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_en": "How many new entries this round are there with more than 16 matches and a third round qualifying?",
    "question_th": "รอบนี้มีผู้เข้าใหม่กี่รายด้วยการแข่งขันมากกว่า 16 นัดและรอบคัดเลือกรอบสาม?",
    "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_en": "What are the clubs with 46 matches?",
    "question_th": "สโมสรใดบ้างที่มีการแข่งขัน 46 นัด?",
    "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_en": "What High School with a nickname of S Eagle has a Division of crest?",
    "question_th": "โรงเรียนมัธยมแห่งใดที่มีชื่อเล่นว่า S Eagle มีแผนกตราสัญลักษณ์",
    "context": "CREATE TABLE table_name_17 (high_school VARCHAR, division VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT affiliation FROM table_name_51 WHERE location = \"issaquah\"",
    "question_en": "What is the affiliation of a location called Issaquah?",
    "question_th": "สถานที่ที่เรียกว่าอิสสาควาห์เกี่ยวข้องกับอะไร?",
    "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_en": "What is the affiliation of a high school in Issaquah that was founded in less than 1965?",
    "question_th": "โรงเรียนมัธยมปลายในอิสสาควาห์ซึ่งก่อตั้งในปี 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_en": "Which Venue has a Competition of pl group b, and a Score of 2-2?",
    "question_th": "สถานที่ใดที่มีการแข่งขัน pl กลุ่ม b และคะแนน 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_en": "Which Competition has a Score of 0-1, and Opponents of pkns fc?",
    "question_th": "การแข่งขันรายการใดมีสกอร์ 0-1 และคู่ต่อสู้ของ 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_en": "Who competed on may 6, 2006?",
    "question_th": "ใครเข้าแข่งขันในวันที่ 6 พฤษภาคม พ.ศ. 2549?",
    "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_en": "Which Score has Opponents of pkns fc, and a Date of january 8, 2006?",
    "question_th": "คะแนนใดที่มีฝ่ายตรงข้ามของ pkns fc และวันที่ 8 มกราคม 2549",
    "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_en": "Which Date has a Competition of pl group b, and Opponents of police, and a Venue of selayang municipal council stadium?",
    "question_th": "วันที่ใดมีการแข่งขันของ pl group b และฝ่ายตรงข้ามของตำรวจ และสถานที่ของสนามกีฬาเทศบาลเซลายัง?",
    "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_en": "Which Competition has Opponents of pkns fc, and a Score of 0-0?",
    "question_th": "การแข่งขันรายการไหนมีคู่ต่อสู้ของ pkns fc และสกอร์ 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_en": "How many people attended the game at the miami orange bowl?",
    "question_th": "มีกี่คนที่เข้าร่วมการแข่งขันที่ 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–1)\"",
    "question_en": "What was the attendance at game with a loss of Josh Hall (0–1)?",
    "question_th": "การมีส่วนร่วมในเกมโดยแพ้ Josh Hall (0–1) คืออะไร?",
    "context": "CREATE TABLE table_name_11 (attendance VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_68 WHERE loss = \"chad fox (3–3)\"",
    "question_en": "What was the score of the game that had a loss of Chad Fox (3–3)?",
    "question_th": "เกมที่แพ้แชด ฟ็อกซ์ (3–3) มีสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_68 (score VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_37 WHERE loss = \"yates (3-2)\"",
    "question_en": "What's the attendance of the game where there was a Loss of Yates (3-2)?",
    "question_th": "เกมนี้มีการแพ้เยตส์ (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_en": "What's the latest keynote version of version 2.3 of numbers with pages greater than 4.3?",
    "question_th": "Keynote เวอร์ชันล่าสุดของตัวเลขเวอร์ชัน 2.3 ที่มีหน้ามากกว่า 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_en": "What version of iWork was released on October 22, 2013 with a pages version greater than 2?",
    "question_th": "iWork เวอร์ชันใดที่เปิดตัวเมื่อวันที่ 22 ตุลาคม 2013 โดยมีเวอร์ชันเพจมากกว่า 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_en": "Which Rank is the lowest one that has Points larger than 52, and a Year larger than 1970?",
    "question_th": "อันดับไหนคืออันดับต่ำสุดที่มีคะแนนมากกว่า 52 และหนึ่งปีมากกว่าปี 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_en": "Which opponent has a game larger than 61, february smaller than 28, and fewer points than 69?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีเกมที่ใหญ่กว่า 61, กุมภาพันธ์น้อยกว่า 28 และแต้มน้อยกว่า 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–25–9\" AND points > 69",
    "question_en": "How many games have a record of 30–25–9 and more points than 69?",
    "question_th": "มีกี่เกมที่มีสถิติ 30–25–9 และแต้มมากกว่า 69?",
    "context": "CREATE TABLE table_name_86 (game VARCHAR, record VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT AVG(february) FROM table_name_62 WHERE record = \"29–24–9\"",
    "question_en": "How many february games had a record of 29–24–9?",
    "question_th": "มีกี่เกมในเดือนกุมภาพันธ์ที่มีสถิติ 29–24–9",
    "context": "CREATE TABLE table_name_62 (february INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(pick__number) FROM table_name_85 WHERE college = \"texas\"",
    "question_en": "What numbered pick was the player from texas?",
    "question_th": "ผู้เล่นจากเท็กซัสเลือกหมายเลขใด",
    "context": "CREATE TABLE table_name_85 (pick__number VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT conference_record FROM table_name_7 WHERE year = \"1971\"",
    "question_en": "What is the conference record for the year of 1971?",
    "question_th": "บันทึกการประชุมประจำปี 2514 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_7 (conference_record VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT delegate FROM table_name_99 WHERE first_elected = 2006",
    "question_en": "When first elected was 2006, who was the delegate?",
    "question_th": "เมื่อได้รับการเลือกตั้งครั้งแรกคือ พ.ศ. 2549 ใครคือผู้แทน?",
    "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_en": "Which was the district that had first elected greater than 2006 and is democratic?",
    "question_th": "เขตใดได้รับการเลือกตั้งครั้งแรกมากกว่าปี 2549 และเป็นเขตประชาธิปไตย",
    "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_en": "Name the score for game more than 6 and before october 28",
    "question_th": "ตั้งชื่อสกอร์เกมมากกว่า 6 และก่อนวันที่ 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_en": "Name the least game for october 21",
    "question_th": "ตั้งชื่อเกมน้อยที่สุดสำหรับวันที่ 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_en": "Name the least game for record of 5-1-3",
    "question_th": "ตั้งชื่อเกมที่น้อยที่สุดสำหรับสถิติ 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_en": "Name the most october for game less than 1",
    "question_th": "ตั้งชื่อเดือนตุลาคมมากที่สุดสำหรับเกมที่น้อยกว่า 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_en": "Name the least game for record of 1-0-2",
    "question_th": "ตั้งชื่อเกมที่น้อยที่สุดสำหรับสถิติ 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_en": "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?",
    "question_th": "เหรียญทองแดงใดคือเหรียญทองแดงสูงสุดที่มีอันดับมากกว่า 1 และมีประเทศสาธารณรัฐโดมินิกัน และคะแนนรวมมากกว่า 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_en": "Which Total is the lowest one that has a Rank smaller than 1?",
    "question_th": "ผลรวมใดคือผลรวมต่ำสุดที่มีอันดับน้อยกว่า 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_en": "Which Total is the lowest one that has a Rank smaller than 2, and a Silver smaller than 15?",
    "question_th": "ผลรวมใดคืออันดับต่ำสุดที่มีอันดับน้อยกว่า 2 และ Silver น้อยกว่า 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_en": "Which Silver has a Gold of 2, and a Nation of puerto rico, and a Total smaller than 12?",
    "question_th": "เงินใดมีทองคำ 2 และประเทศเปอร์โตริโกและผลรวมน้อยกว่า 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_en": "Album of les mots had what lowest year?",
    "question_th": "อัลบั้มของ les mots มีปีต่ำสุดเท่าไร?",
    "context": "CREATE TABLE table_name_18 (year INTEGER, album VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_67 WHERE season = \"2000-01\"",
    "question_en": "What team has 2000-01 as the season?",
    "question_th": "ทีมใดมีฤดูกาล 2000-01?",
    "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_en": "What season has a number less than 90, Mitte as the league and spvgg ruhmannsfelden as the team?",
    "question_th": "ฤดูกาลไหนที่มีจำนวนน้อยกว่า 90 มีมิตเต้เป็นลีก และสเปวีกก์รูห์มันน์สเฟลเดนเป็นทีม?",
    "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_en": "What league has a number less than 122, and least wins as the record?",
    "question_th": "ลีกใดมีจำนวนน้อยกว่า 122 และชนะน้อยที่สุดเป็นประวัติการณ์?",
    "context": "CREATE TABLE table_name_38 (league VARCHAR, number VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT league FROM table_name_77 WHERE record = \"most wins\"",
    "question_en": "What league has most wins as the record?",
    "question_th": "ลีกใดมีชัยชนะมากที่สุดเป็นประวัติการณ์?",
    "context": "CREATE TABLE table_name_77 (league VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT league FROM table_name_11 WHERE number < 1",
    "question_en": "What league has a number less than 1?",
    "question_th": "ลีกใดมีจำนวนน้อยกว่า 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_en": "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?",
    "question_th": "ค่าเฉลี่ยที่ได้รับการเสนอชื่อเข้าชิงองค์ประกอบที่เสนอโดย Taioseach โดยมีคณะกรรมการอุตสาหกรรมและการพาณิชย์น้อยกว่า 9 คณะกรรมการฝ่ายบริหารมากกว่า 0 คณะกรรมการด้านวัฒนธรรมและการศึกษามากกว่า 2 และคะแนนรวมน้อยกว่า 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_en": "What is the average administrative panel of the composition nominated by Taoiseach 0 times with a total less than 4?",
    "question_th": "คณะบริหารเฉลี่ยขององค์ประกอบที่เสนอชื่อโดย ท้าวซีช 0 ครั้ง โดยมีคะแนนรวมน้อยกว่า 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_en": "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?",
    "question_th": "จำนวนการเสนอชื่อสูงสุดโดย Taoiseach ในองค์ประกอบที่มีคณะกรรมการบริหารมากกว่า 0 และคณะกรรมการอุตสาหกรรมและเชิงพาณิชย์น้อยกว่า 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_en": "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?",
    "question_th": "แผงเกษตรโดยเฉลี่ยขององค์ประกอบที่มีแผงแรงงานน้อยกว่า 6, ได้รับการเสนอชื่อโดย Taoiseach มากกว่า 0 และทั้งหมดน้อยกว่า 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_en": "What is the total number of agriculatural panels of the composition with more than 3 National Universities of Ireland?",
    "question_th": "จำนวนแผงเกษตรกรรมขององค์ประกอบที่มีมหาวิทยาลัยแห่งชาติไอร์แลนด์มากกว่า 3 แห่งคือเท่าใด",
    "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_en": "What was the attendance on September 28?",
    "question_th": "ผู้เข้าร่วมในวันที่ 28 กันยายนมีอะไรบ้าง?",
    "context": "CREATE TABLE table_name_92 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_95 WHERE away_result = \"1-2\"",
    "question_en": "Away result of 1-2 has what season?",
    "question_th": "ผลทีมเยือน 1-2 ฤดูกาลอะไร?",
    "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_en": "Round of 2r, and a Home result of 0-0 has what season?",
    "question_th": "รอบ 2r และผลการแข่งขันในบ้าน 0-0 เป็นฤดูกาลอะไร?",
    "context": "CREATE TABLE table_name_24 (season VARCHAR, round VARCHAR, home_result VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_name_56 WHERE home_result = \"1–0\" AND away_result = \"0–1\"",
    "question_en": "Home result of 1–0, and a Away result of 0–1 involves what club?",
    "question_th": "ผลการแข่งขันในบ้าน 1–0 และผลการแข่งขันเยือน 0–1 เกี่ยวข้องกับสโมสรใด",
    "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–1\"",
    "question_en": "Round of 1r, and an away result of 7–1 is what season?",
    "question_th": "รอบ 1r และผลทีมเยือน 7–1 คือฤดูกาลใด",
    "context": "CREATE TABLE table_name_65 (season VARCHAR, round VARCHAR, away_result VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_48 WHERE away_result = \"0–3\" AND season = \"1969-70\"",
    "question_en": "Away result of 0–3, and a Season of 1969-70 is what competition?",
    "question_th": "ผลทีมเยือน 0–3 และฤดูกาล 1969-70 คือการแข่งขันอะไร?",
    "context": "CREATE TABLE table_name_48 (competition VARCHAR, away_result VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_name_92 WHERE away_result = \"1–1\" AND round = \"1r\" AND season = \"1967-68\"",
    "question_en": "Away result of 1–1, and a Round of 1r, and a Season of 1967-68 involves what club?",
    "question_th": "ผลการแข่งขันเยือน 1–1 และรอบ 1r และฤดูกาล 1967-68 เกี่ยวข้องกับสโมสรใด",
    "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_en": "what was the nominee of best musical",
    "question_th": "ผู้ได้รับการเสนอชื่อเข้าชิงละครเพลงยอดเยี่ยมคืออะไร",
    "context": "CREATE TABLE table_name_67 (nominee VARCHAR, category VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_60 WHERE nominee = \"michele assaf\"",
    "question_en": "what year was michele assaf nominated",
    "question_th": "มิเชล อัสซาฟได้รับการเสนอชื่อเข้าชิงในปีใด",
    "context": "CREATE TABLE table_name_60 (year VARCHAR, nominee VARCHAR)"
  },
  {
    "answer": "SELECT MAX(pick) FROM table_name_9 WHERE school_club_team = \"arkansas\"",
    "question_en": "What was the highest pick for a player from a school or club team of Arkansas?",
    "question_th": "อะไรคือตัวเลือกสูงสุดสำหรับผู้เล่นจากโรงเรียนหรือทีมสโมสรในอาร์คันซอ?",
    "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_en": "How many Golds did Rank 10 get, with a Bronze larger than 2?",
    "question_th": "อันดับที่ 10 ได้รับเหรียญทองจำนวนเท่าใด โดยที่เหรียญทองแดงมากกว่า 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_en": "What rank is Turkmenistan, who had 0 silver's and Less than 2 golds?",
    "question_th": "เติร์กเมนิสถานคืออันดับไหน ซึ่งมี 0 เหรียญเงินและน้อยกว่า 2 เหรียญทอง",
    "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_en": "What's the biggest Bronze that has less than 0 Silvers?",
    "question_th": "อะไรคือทองแดงที่ใหญ่ที่สุดที่มีน้อยกว่า 0 Silvers?",
    "context": "CREATE TABLE table_name_73 (bronze INTEGER, silver INTEGER)"
  },
  {
    "answer": "SELECT COUNT(total) FROM table_name_44 WHERE gold < 0",
    "question_en": "What is the total Gold's less than 0?",
    "question_th": "ทองรวมน้อยกว่า 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_en": "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?",
    "question_th": "School, Highland คือเมืองใดที่อยู่ในอันดับที่ต่ำกว่า 8 และมีตำแหน่งแรกก่อนปี 1980 และตำแหน่งสุดท้ายหลังปี 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_en": "What city is the school that had less than 17 titles in boys basketball with the last title being after 2005?",
    "question_th": "เมืองใดคือโรงเรียนที่มีแชมป์บาสเก็ตบอลชายน้อยกว่า 17 รายการ โดยแชมป์สุดท้ายคือหลังปี 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_en": "What is the highest rank for the boys swimming team in Albuquerque?",
    "question_th": "อันดับสูงสุดสำหรับทีมว่ายน้ำชายในอัลบูเคอร์คีคืออะไร?",
    "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_en": "What is the total rank number for Los Alamos' girls cross country?",
    "question_th": "หมายเลขอันดับรวมของสาว ๆ ของ Los Alamos อยู่ที่เท่าไร?",
    "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_en": "What capital has an S.Number under 7, and a Name of janapada of Punia?",
    "question_th": "เมืองหลวงใดมีหมายเลข S ต่ำกว่า 7 และมีชื่อ janapada แห่ง 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_en": "What king has an S. number over 1 and a number of villages of 600?",
    "question_th": "กษัตริย์องค์ใดมีหมายเลข S มากกว่า 1 และมีหมู่บ้านจำนวน 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_en": "What is the average number of villages with a name of janapada of Punia?",
    "question_th": "หมู่บ้านที่มีชื่อ ชนาภาดา ปูเนีย มีจำนวนหมู่บ้านโดยเฉลี่ยเท่าไร?",
    "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_en": "What is the highest S number with a capital of Shekhsar?",
    "question_th": "เลข S สูงสุดที่มีทุนเป็น 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_en": "What is the highest round number for the player who came from team Missouri?",
    "question_th": "หมายเลขรอบสูงสุดสำหรับผู้เล่นที่มาจากทีมมิสซูรีคือหมายเลขใด",
    "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_en": "What is the total number of rounds that had draft pick 97, duncan mccoll?",
    "question_th": "จำนวนรอบทั้งหมดที่มีดราฟท์พิค 97 ดันแคน แมคคอลล์ เป็นเท่าไหร่?",
    "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_en": "What opponent uses the method of decision and a 5-3 record?",
    "question_th": "ฝ่ายตรงข้ามคนไหนใช้วิธีการตัดสินและสถิติ 5-3?",
    "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_en": "What round has the highest Res loss, and a time of 40:00?",
    "question_th": "รอบใดที่ Res เสียสูงสุด และเวลา 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_en": "Who visited on April 29?",
    "question_th": "ใครไปเที่ยววันที่ 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_en": "When did Montreal visit and have a score of 1-4?",
    "question_th": "มอนทรีออลมาเยือนเมื่อไหร่และมีสกอร์ 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_en": "What was the score on April 25?",
    "question_th": "คะแนนวันที่ 25 เมษายน เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_9 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_35 WHERE date = \"may 3\"",
    "question_en": "What was the score on May 3?",
    "question_th": "คะแนนวันที่ 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_en": "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?",
    "question_th": "อะไรคือกลุ่มโรงเรียน/จูเนียร์/คลับ (สมาคม) ที่มีรอบที่ใหญ่กว่า 6 และสถานที่ของฝ่ายซ้าย และผู้เล่นของ 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_en": "What is the School/Junior/Club Group (Class) that has a Nationality of canada, and a Place of goalie?",
    "question_th": "กลุ่มโรงเรียน/จูเนียร์/คลับ (ชั้นเรียน) ที่มีสัญชาติแคนาดา และสถานที่ของผู้รักษาประตูคืออะไร?",
    "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_en": "What is the Nationality for alexandre jacques?",
    "question_th": "สัญชาติของ 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_en": "What is the highest Pick that is wide receiver with overall of 29?",
    "question_th": "Pick สูงสุดที่เป็น Wide Receiver รวม 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_en": "What is the lowest Round with Overall of 247 and pick less than 41?",
    "question_th": "รอบต่ำสุดที่มีคะแนนรวม 247 และเลือกน้อยกว่า 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_en": "What is the Position with a round 3 pick for r. jay soward?",
    "question_th": "ตำแหน่งที่มีการเลือกรอบ 3 สำหรับ r คืออะไร เจย์ โซเวิร์ด?",
    "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_en": "What is the average Round for wide receiver r. jay soward and Overall smaller than 29?",
    "question_th": "รอบเฉลี่ยสำหรับตัวรับสัญญาณไวด์ r คืออะไร เจย์โซเวิร์ดและโดยรวมแล้วเล็กกว่า 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_en": "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?",
    "question_th": "แต้มใดคือแต้มต่ำสุดที่มีทัชดาวน์น้อยกว่า 2 และแต้มพิเศษ 7 และประตูในสนามน้อยกว่า 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_en": "How many Touchdowns have a Player of rolla bigelow, and an Extra points smaller than 0?",
    "question_th": "มีผู้เล่น Rolla Bigelow จำนวนกี่ทัชดาวน์ และมีคะแนนพิเศษน้อยกว่า 0",
    "context": "CREATE TABLE table_name_33 (touchdowns INTEGER, player VARCHAR, extra_points VARCHAR)"
  },
  {
    "answer": "SELECT longi__tude FROM table_name_28 WHERE date_³ = \"jun 6\"",
    "question_en": "Which Longi- tude is on jun 6?",
    "question_th": "ลองจิจูดใดคือวันที่ 6 มิ.ย.",
    "context": "CREATE TABLE table_name_28 (longi__tude VARCHAR, date_³ VARCHAR)"
  },
  {
    "answer": "SELECT date_³ FROM table_name_88 WHERE korean_name_² = \"청명 (清明) cheongmyeong\"",
    "question_en": "When has a Korean name ² of 청명 (清明) cheongmyeong?",
    "question_th": "청명 (清明) ชองมยอง มีชื่อภาษาเกาหลีว่า 2 เมื่อใด?",
    "context": "CREATE TABLE table_name_88 (date_³ VARCHAR, korean_name_² VARCHAR)"
  },
  {
    "answer": "SELECT vietnamese_name FROM table_name_23 WHERE chinese_name_¹ = \"芒種 (芒种) mángzhòng\"",
    "question_en": "WHICH Vietnamese name has a Chinese name ¹ of 芒種 (芒种) mángzhòng?",
    "question_th": "ชื่อภาษาเวียดนามใดมีชื่อจีน ¹ ของ 芒種 (芒种) mángzhòng?",
    "context": "CREATE TABLE table_name_23 (vietnamese_name VARCHAR, chinese_name_¹ VARCHAR)"
  },
  {
    "answer": "SELECT usual_translation FROM table_name_98 WHERE date_³ = \"jun 21\"",
    "question_en": "WHICH Usual translation is on jun 21?",
    "question_th": "ปกติการแปลคือวันที่ 21 มิถุนายน?",
    "context": "CREATE TABLE table_name_98 (usual_translation VARCHAR, date_³ VARCHAR)"
  },
  {
    "answer": "SELECT japanese_name FROM table_name_8 WHERE korean_name_² = \"경칩 (驚蟄) gyeongchip\"",
    "question_en": "Which Japanese name has a Korean name ² of 경칩 (驚蟄) gyeongchip?",
    "question_th": "ชื่อภาษาญี่ปุ่นใดมีชื่อภาษาเกาหลี ² ของ 경칩 (驚蟄) กยองชิป?",
    "context": "CREATE TABLE table_name_8 (japanese_name VARCHAR, korean_name_² VARCHAR)"
  },
  {
    "answer": "SELECT usual_translation FROM table_name_80 WHERE date_³ = \"sep 23\"",
    "question_en": "WHich Usual translation is on sep 23?",
    "question_th": "ปกติฉบับแปลคือวันที่ 23 กันยายน?",
    "context": "CREATE TABLE table_name_80 (usual_translation VARCHAR, date_³ VARCHAR)"
  },
  {
    "answer": "SELECT AVG(week) FROM table_name_44 WHERE location = \"three rivers stadium\" AND record = \"3–2\"",
    "question_en": "What is the average Week for the game at three rivers stadium, with a Record of 3–2?",
    "question_th": "สัปดาห์เฉลี่ยของเกมที่สนามกีฬา Three Rivers โดยมีสถิติ 3–2 คือเท่าใด",
    "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–3\"",
    "question_en": "What is the result of the game at three rivers stadium with a Record of 6–3?",
    "question_th": "ผลการแข่งขันที่สนามทรีริเวอร์สเตเดี้ยมด้วยสถิติ 6–3 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_20 (result VARCHAR, location VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT MIN(week) FROM table_name_40 WHERE record = \"8–5\"",
    "question_en": "What is the earliest week that shows a record of 8–5?",
    "question_th": "สัปดาห์แรกสุดที่แสดงสถิติ 8–5 คืออะไร?",
    "context": "CREATE TABLE table_name_40 (week INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_31 WHERE result = \"w 45–17\"",
    "question_en": "What is the record of the game that has a result of w 45–17?",
    "question_th": "บันทึกของเกมที่มีผลการแข่งขัน w 45–17 คืออะไร?",
    "context": "CREATE TABLE table_name_31 (record VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT AVG(week) FROM table_name_94 WHERE record = \"0–1\"",
    "question_en": "What week that shows a game record of 0–1?",
    "question_th": "สัปดาห์ใดที่แสดงสถิติเกม 0–1?",
    "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_en": "Which driver has less than 37 wins and at 14.12%?",
    "question_th": "นักแข่งคนไหนชนะน้อยกว่า 37 และอยู่ที่ 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_en": "Which driver has 162 entries?",
    "question_th": "ไดรเวอร์ใดมี 162 รายการ?",
    "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_en": "Which season did jackie stewart enter with entries less than 215?",
    "question_th": "แจ็กกี้สจ๊วตเข้าร่วมฤดูกาลใดโดยมีผู้เข้าแข่งขันน้อยกว่า 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_en": "How many ERP W is it that has a Call sign of w273bs?",
    "question_th": "มี ERP W กี่ตัวที่มีสัญญาณเรียก 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_en": "Which City of license has a Frequency MHz smaller than 100.9, and a ERP W larger than 100?",
    "question_th": "เมืองที่ได้รับใบอนุญาตใดมีความถี่ MHz น้อยกว่า 100.9 และ ERP W ใหญ่กว่า 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_en": "What is the number of Frequency MHz in woodstock, georgia?",
    "question_th": "จำนวนความถี่ MHz ในวูดสต็อก, จอร์เจียคือเท่าไร?",
    "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_en": "What is the lowest ERP W of  w223bp?",
    "question_th": "ERP W ต่ำสุดของ 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_en": "What was the highest points where there were less than 2 drawn and the games were less than 6?",
    "question_th": "อะไรคือแต้มสูงสุดที่มีเสมอน้อยกว่า 2 และเกมน้อยกว่า 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_en": "What is the license plate code for the country with an area of 784?",
    "question_th": "รหัสป้ายทะเบียนสำหรับประเทศที่มีพื้นที่ 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_en": "What is the country seat for the license plate code 5c?",
    "question_th": "ที่นั่งประเทศสำหรับรหัสป้ายทะเบียน 5c คืออะไร?",
    "context": "CREATE TABLE table_name_72 (county VARCHAR, license_plate_code VARCHAR)"
  },
  {
    "answer": "SELECT pada_3 FROM table_name_41 WHERE pada_1 = \"टे te\"",
    "question_en": "Which Pada 3 has a Pada 1 of टे te?",
    "question_th": "Pada 3 ตัวไหนมี Pada 1 ของ TE te บ้าง?",
    "context": "CREATE TABLE table_name_41 (pada_3 VARCHAR, pada_1 VARCHAR)"
  },
  {
    "answer": "SELECT pada_4 FROM table_name_32 WHERE pada_2 = \"थ tha\"",
    "question_en": "which Pada 4 has a Pada 2 of थ tha?",
    "question_th": "Pada 4 ตัวไหนมี Pada 2 ของथ tha?",
    "context": "CREATE TABLE table_name_32 (pada_4 VARCHAR, pada_2 VARCHAR)"
  },
  {
    "answer": "SELECT pada_3 FROM table_name_27 WHERE pada_2 = \"चे che\"",
    "question_en": "which Pada 3 has a Pada 2 of चे che?",
    "question_th": "Pada 3 ตัวไหนมี Pada 2 ของ चे che บ้าง?",
    "context": "CREATE TABLE table_name_27 (pada_3 VARCHAR, pada_2 VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_87 WHERE pada_3 = \"ङ ng/na\"",
    "question_en": "What is the Name of ङ ng/na?",
    "question_th": "ङng/na ชื่ออะไร?",
    "context": "CREATE TABLE table_name_87 (name VARCHAR, pada_3 VARCHAR)"
  },
  {
    "answer": "SELECT pada_4 FROM table_name_90 WHERE pada_1 = \"खी ju/khi\"",
    "question_en": "What kind of Pada 4 has a Pada 1 of खी ju/khi?",
    "question_th": "ผัด 4 มี ผัด 1 ของ खी 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 = \"सा sa\"",
    "question_en": "What kind of Pada 1 has a Pada 2 of सा sa?",
    "question_th": "ปาด้า 1 มี ปาดา 2 ของ สาสะ แบบไหนคะ?",
    "context": "CREATE TABLE table_name_8 (pada_1 VARCHAR, pada_2 VARCHAR)"
  },
  {
    "answer": "SELECT points_classification FROM table_name_86 WHERE stage = \"18b\"",
    "question_en": "Name the points classification for stage of 18b",
    "question_th": "ตั้งชื่อการจำแนกคะแนนสำหรับระยะ 18b",
    "context": "CREATE TABLE table_name_86 (points_classification VARCHAR, stage VARCHAR)"
  },
  {
    "answer": "SELECT points_classification FROM table_name_31 WHERE stage = \"16\"",
    "question_en": "Name the points classification of stage 16",
    "question_th": "ตั้งชื่อการจำแนกคะแนนของระยะที่ 16",
    "context": "CREATE TABLE table_name_31 (points_classification VARCHAR, stage VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_70 WHERE opponent = \"emanuel newton\"",
    "question_en": "What is the round of the match with Emanuel Newton as the opponent?",
    "question_th": "แมตช์การแข่งขันรอบไหนที่มี เอ็มมานูเอล นิวตัน เป็นคู่ต่อสู้?",
    "context": "CREATE TABLE table_name_70 (round VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_29 WHERE opponent = \"aron lofton\"",
    "question_en": "What is the location of the match with Aron Lofton as the opponent?",
    "question_th": "แมตช์นี้มี อารอน ลอฟตัน เป็นคู่ต่อสู้ที่ตำแหน่งใด?",
    "context": "CREATE TABLE table_name_29 (location VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_49 WHERE event = \"ecc 8: comeback\"",
    "question_en": "What is the location of the match with an event of ecc 8: comeback?",
    "question_th": "สถานที่จัดการแข่งขันกับงาน 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_en": "Who is the opponent of the match with a win result and a time of 3:02?",
    "question_th": "คู่ต่อสู้ของแมตช์นี้ใครเป็นฝ่ายชนะด้วยเวลา 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_en": "What is the method of the match with 1 round and a time of 1:58?",
    "question_th": "แมตช์ 1 รอบ เวลา 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_en": "How many people attended the game on September 19, 1976?",
    "question_th": "มีผู้เข้าร่วมเกมกี่คนในวันที่ 19 กันยายน พ.ศ. 2519",
    "context": "CREATE TABLE table_name_29 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MIN(week) FROM table_name_94 WHERE opponent = \"detroit lions\"",
    "question_en": "What is the lowest week number where they played against the Detroit Lions?",
    "question_th": "สัปดาห์ที่น้อยที่สุดที่พวกเขาเล่นกับ 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_en": "What is the average attendance for the game on September 26, 1976?",
    "question_th": "ผู้เข้าชมเกมโดยเฉลี่ยในวันที่ 26 กันยายน พ.ศ. 2519 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_48 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT pick FROM table_name_26 WHERE school_club_team = \"kentucky\"",
    "question_en": "Which pick has a school/club team that is kentucky?",
    "question_th": "ตัวเลือกใดมีทีมโรงเรียน/สโมสรที่เป็นรัฐเคนตักกี้?",
    "context": "CREATE TABLE table_name_26 (pick VARCHAR, school_club_team VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_22 WHERE pick = \"147\"",
    "question_en": "Which player is it that has a pick of 147?",
    "question_th": "ผู้เล่นคนไหนที่มีให้เลือกถึง 147?",
    "context": "CREATE TABLE table_name_22 (player VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_19 WHERE position = \"cornerback\"",
    "question_en": "Which round has a position that is cornerback?",
    "question_th": "รอบไหนได้ตำแหน่งกองหลัง?",
    "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_en": "What is the height of the building named 555 17th street?",
    "question_th": "ตึกชื่อ 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_en": "What is the height of the building with 40 floors?",
    "question_th": "อาคารสูง 40 ชั้นสูงเท่าไร?",
    "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_en": "What is the per capital income for Charles county?",
    "question_th": "รายได้ต่อทุนสำหรับชาร์ลส์เคาน์ตี้คือเท่าใด",
    "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_en": "What is the per capital income for Washington county?",
    "question_th": "รายได้ต่อทุนสำหรับเขตวอชิงตันคือเท่าไร",
    "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_en": "what builder is now retired",
    "question_th": "ตอนนี้ช่างก่อสร้างคนไหนเกษียณแล้ว",
    "context": "CREATE TABLE table_name_20 (pennant_number VARCHAR, current_status VARCHAR)"
  },
  {
    "answer": "SELECT launched FROM table_name_97 WHERE name = \"minerva\"",
    "question_en": "what builder launched the name minerva",
    "question_th": "ช่างก่อสร้างคนไหนที่ตั้งชื่อว่ามิเนอร์ว่า",
    "context": "CREATE TABLE table_name_97 (launched VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT launched FROM table_name_97 WHERE name = \"danaide\"",
    "question_en": "what is the name of the builder who launched in danaide",
    "question_th": "ชื่อของผู้สร้างที่เปิดตัวใน danaide คืออะไร",
    "context": "CREATE TABLE table_name_97 (launched VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(wins) FROM table_name_22 WHERE events < 2",
    "question_en": "How many wins did he have when he played under 2 events?",
    "question_th": "เขาได้รับชัยชนะกี่ครั้งเมื่อเขาเล่นต่ำกว่า 2 รายการ?",
    "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_en": "What is his highest number of top 25s when eh played over 2 events and under 0 wins?",
    "question_th": "จำนวนสูงสุดของเขาใน 25 อันดับแรกเมื่อเอ๊ะเล่นมากกว่า 2 รายการและชนะต่ำกว่า 0 คืออะไร?",
    "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_en": "What is his low win total when he has over 3 top 25s and under 9 cuts made?",
    "question_th": "ผลรวมชัยชนะที่ต่ำของเขาจะเป็นเท่าใดเมื่อเขามีผู้เล่น 25 อันดับแรกมากกว่า 3 คนและตัดต่ำกว่า 9 ครั้ง?",
    "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_en": "What opponent had an attendance of 10,089?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีผู้เข้าร่วม 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–27\"",
    "question_en": "What was the score of the game against the Braves with a record of 41–27?",
    "question_th": "คะแนนของเกมกับเบรฟส์ด้วยสถิติ 41–27 คืออะไร?",
    "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_en": "Who was the opponent for the match were the outcome was runner-up and the score was 5-7, 1-6?",
    "question_th": "คู่ต่อสู้คือใคร ผลเป็นรองแชมป์ สกอร์ 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_en": "What was the outcome of the match against Stacy Margolin?",
    "question_th": "ผลการแข่งขันกับสเตซี่ มาร์โกลินเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_79 (outcome VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_43 WHERE opponent = \"duk-hee lee\"",
    "question_en": "What was the score of the match against duk-hee lee?",
    "question_th": "แมตช์กับดุ๊กฮีลีสกอร์เท่าไหร่?",
    "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_en": "How many Points have a Rank of 17th, and Wins larger than 0?",
    "question_th": "มีกี่คะแนนที่มีอันดับ 17 และชนะมากกว่า 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_en": "Which Wins have a Class of 500cc, and a Year smaller than 1975?",
    "question_th": "ชัยชนะใดที่มีคลาส 500cc และหนึ่งปีที่เล็กกว่าปี 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_en": "Which Wins is the highest one that has a Class of 500cc, and Points smaller than 6?",
    "question_th": "ชัยชนะใดคือชัยชนะสูงสุดที่มีคลาส 500cc และแต้มน้อยกว่า 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_en": "Which Points is the lowest one that has a Year larger than 1974, and a Rank of 15th?",
    "question_th": "คะแนนใดคือคะแนนต่ำสุดที่มีปีมากกว่าปี 1974 และอันดับที่ 15",
    "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_en": "Frequency MHz of 88.7 had what average erp w?",
    "question_th": "ความถี่ MHz ที่ 88.7 มีค่าเฉลี่ย 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_en": "Frequency MHz smaller than 95.3, and a Call sign of k234ag is what class?",
    "question_th": "ความถี่ MHz น้อยกว่า 95.3 และสัญญาณ Call ของ k234ag เป็นคลาสใด?",
    "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_en": "Call sign of k231bg has what sum of erp w?",
    "question_th": "สัญญาณเรียกขานของ k231bg มีค่า 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_en": "Class of d, and a Frequency MHz smaller than 107.7, and a ERP W smaller than 232 has what call sign?",
    "question_th": "คลาส d และความถี่ MHz น้อยกว่า 107.7 และ ERP W น้อยกว่า 232 มีสัญญาณเรียกอะไร",
    "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_en": "ERP W that has a Class of d, and a Call sign of k299ar is what total number?",
    "question_th": "ERP W ที่มี Class เป็น d และสัญญาณเรียกขาน k299ar คือจำนวนทั้งหมดเท่าใด",
    "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_en": "Name the date for loss of ruffin (3-5)",
    "question_th": "ตั้งชื่อวันที่เสียรัฟฟิน (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_en": "Name the date with loss of carman (3-12)",
    "question_th": "ตั้งชื่อวันที่สูญเสียคนขับรถ (3-12)",
    "context": "CREATE TABLE table_name_59 (date VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_7 WHERE save = \"lancaster (3)\"",
    "question_en": "Name the score for save of lancaster (3)",
    "question_th": "ตั้งชื่อสกอร์ เซฟ ออฟ แลงคาสเตอร์ (3)",
    "context": "CREATE TABLE table_name_7 (score VARCHAR, save VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_80 WHERE loss = \"sanderson (9-8)\"",
    "question_en": "Name the opponent with loss of sanderson (9-8)",
    "question_th": "ตั้งชื่อคู่ต่อสู้โดยเสียแซนเดอร์สัน (9-8)",
    "context": "CREATE TABLE table_name_80 (opponent VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT MAX(october) FROM table_name_41 WHERE game = 9",
    "question_en": "Which game has the highest score in October with 9?",
    "question_th": "เกมใดมีคะแนนสูงสุดในเดือนตุลาคมด้วย 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_en": "What was the average game with a record of 4-4-0?",
    "question_th": "เกมโดยเฉลี่ยที่มีสถิติ 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_en": "What was the literacy rate published in the 2001 census for the state that saw a 12.66% increase?",
    "question_th": "อัตราการรู้หนังสือที่ตีพิมพ์ในการสำรวจสำมะโนประชากรปี 2544 ของรัฐที่เพิ่มขึ้น 12.66% เป็นเท่าใด",
    "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_en": "Who earned the save in the game against the Sinon Bulls when Jeriome Robertson took the loss?",
    "question_th": "ใครเป็นผู้เซฟในเกมที่พบกับซินอน บูลส์ เมื่อเจอริโอม โรเบิร์ตสันพ่ายแพ้?",
    "context": "CREATE TABLE table_name_32 (save VARCHAR, opponent VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_89 WHERE venue = \"tiger stadium\"",
    "question_en": "what number of people went to the tiger stadium",
    "question_th": "มีคนไปสนามเสือกี่คน",
    "context": "CREATE TABLE table_name_89 (result VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT undecided FROM table_name_51 WHERE goldberg = \"6%\"",
    "question_en": "What is the undecided percentage of the poll where Goldberg had 6%?",
    "question_th": "เปอร์เซ็นต์ที่ไม่แน่ใจของการสำรวจความคิดเห็นที่ Goldberg มี 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_en": "What is the date of the poll where Murray had 11% from the Suffolk University source?",
    "question_th": "วันที่สำรวจความคิดเห็นที่ Murray ได้ 11% จากแหล่งที่มาของมหาวิทยาลัย Suffolk คือเมื่อใด",
    "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_en": "What is the undecided percentage of the poll from Suffolk University with Murray at 11%?",
    "question_th": "เปอร์เซ็นต์ที่ไม่แน่ใจของการสำรวจความคิดเห็นจากมหาวิทยาลัย Suffolk กับ Murray ที่ 11% เป็นเท่าใด",
    "context": "CREATE TABLE table_name_80 (undecided VARCHAR, source VARCHAR, murray VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_53 WHERE silbert = \"18%\"",
    "question_en": "What is the date of the poll with Silbert at 18%?",
    "question_th": "โพลกับ Silbert ที่ 18% คือวันไหน?",
    "context": "CREATE TABLE table_name_53 (date VARCHAR, silbert VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_48 WHERE silbert = \"10.0%\"",
    "question_en": "What is the date of the poll with Silbert at 10.0%?",
    "question_th": "โพลกับ Silbert ที่ 10.0% คือวันไหน?",
    "context": "CREATE TABLE table_name_48 (date VARCHAR, silbert VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_12 WHERE goldberg = \"26%\"",
    "question_en": "What is the date of the poll with Goldberg at 26%?",
    "question_th": "โพลกับ Goldberg ที่ 26% คือวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_12 (date VARCHAR, goldberg VARCHAR)"
  },
  {
    "answer": "SELECT MIN(tries) FROM table_name_22 WHERE conversions > 0",
    "question_en": "What is the smallest number of tries with conversions more than 0?",
    "question_th": "จำนวนครั้งที่น้อยที่สุดของการพยายามที่มี Conversion มากกว่า 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_en": "What is the average number of tries for British and Irish Lions with less than 2 games?",
    "question_th": "จำนวนครั้งโดยเฉลี่ยของ British และ Irish Lions ที่น้อยกว่า 2 เกมคือเท่าใด",
    "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_en": "What is the average number of conversions for the Cardiff Blues with less than 14 tries?",
    "question_th": "จำนวน Conversion เฉลี่ยของ Cardiff Blues ที่พยายามน้อยกว่า 14 ครั้งคือเท่าใด",
    "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_en": "What is the Median family income when the Median household income is $38,137?",
    "question_th": "รายได้เฉลี่ยของครอบครัวคือเท่าไร เมื่อรายได้เฉลี่ยของครัวเรือนอยู่ที่ 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_en": "What County has a Median household income of $46,872?",
    "question_th": "เคาน์ตีใดมีรายได้เฉลี่ยของครัวเรือนอยู่ที่ 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_en": "What is the average number of field goals scored by a right halfback who had more than 3 touchdowns?",
    "question_th": "จำนวนการยิงประตูโดยเฉลี่ยของกองหลังฝั่งขวาที่ทำทัชดาวน์มากกว่า 3 ครั้งเป็นเท่าใด",
    "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_en": "What is the week of the game played on November 28, 1974?",
    "question_th": "สัปดาห์ของเกมที่เล่นในวันที่ 28 พฤศจิกายน พ.ศ. 2517 คือสัปดาห์ใด?",
    "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_en": "What Year was james mcclure Deputy, and the Name is robert mcphearson?",
    "question_th": "James McClure เป็นรองผู้อำนวยการในปีใด และชื่อ Robert Mcpearson คือใคร",
    "context": "CREATE TABLE table_name_44 (year VARCHAR, deputy VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT deputy FROM table_name_88 WHERE name = \"elizabeth black\"",
    "question_en": "What is the name of the Deputy when the Name was elizabeth black?",
    "question_th": "ปลัดเมื่อชื่อเอลิซาเบธดำชื่ออะไร?",
    "context": "CREATE TABLE table_name_88 (deputy VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_76 WHERE year = \"1997–99\"",
    "question_en": "What is the Name for 1997–99?",
    "question_th": "1997–99 ชื่ออะไร?",
    "context": "CREATE TABLE table_name_76 (name VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT political_affiliation FROM table_name_39 WHERE deputy = \"john dallat\"",
    "question_en": "What is the Political affiliation of deputy john dallat?",
    "question_th": "ความเกี่ยวข้องทางการเมืองของรองจอห์น ดัลลัตคืออะไร?",
    "context": "CREATE TABLE table_name_39 (political_affiliation VARCHAR, deputy VARCHAR)"
  },
  {
    "answer": "SELECT deputy FROM table_name_41 WHERE year = \"1992–93\"",
    "question_en": "What is the name of the deputy in 1992–93?",
    "question_th": "รองผู้อำนวยการในปี 1992–93 ชื่ออะไร?",
    "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_en": "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?",
    "question_th": "ค่าเสรีภาพของพลเมืองปี 2013 มีกี่ค่าที่เกี่ยวข้องกับค่าสิทธิทางการเมืองปี 2010 ที่ 6 ค่าสิทธิทางการเมืองปี 2012 ที่มากกว่า 5 และสิทธิทางการเมืองปี 2011 ต่ำกว่า 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_en": "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?",
    "question_th": "มูลค่าเสรีภาพของพลเมืองโดยเฉลี่ยในปี 2012 ที่เกี่ยวข้องกับสถานะไม่เป็นอิสระในปี 2011 สิทธิทางการเมืองในปี 2012 มากกว่า 6 และสิทธิทางการเมืองในปี 2011 มากกว่า 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_en": "What is the total number of civil liberties 2011 values having 2010 political rights values under 3 and 2011 political rights values under 1?",
    "question_th": "ค่าสิทธิทางการเมืองปี 2554 ที่มีมูลค่าสิทธิทางการเมืองปี 2553 ต่ำกว่า 3 และค่าสิทธิทางการเมืองปี 2554 ต่ำกว่า 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_en": "What percentage of people were opposed to the candidate based on the WNBC/Marist poll that showed 8% of people were unsure?",
    "question_th": "เปอร์เซ็นต์ของผู้ที่ไม่เห็นด้วยกับผู้สมัครจากการสำรวจของ WNBC/Marist ที่แสดงให้เห็นว่าคน 8% ไม่แน่ใจ",
    "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_en": "What percentage of people were opposed to the candidate based on the Time Poll poll that showed 6% of people were unsure?",
    "question_th": "เปอร์เซ็นต์ของผู้ที่ไม่เห็นด้วยกับผู้สมัครจากการสำรวจความคิดเห็นของ Time Poll ที่แสดงให้เห็นว่าคน 6% ไม่แน่ใจ",
    "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_en": "What percentage of people said they would consider Rudy Giuliani as a candidate according to the Newsweek poll that showed 32% opposed him?",
    "question_th": "มีคนกี่เปอร์เซ็นต์ที่บอกว่าพวกเขาจะถือว่า Rudy Giuliani เป็นผู้สมัครตามการสำรวจของ Newsweek ที่แสดงให้เห็นว่า 32% ไม่เห็นด้วยกับเขา",
    "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_en": "What was the result of the game in Stuttgart, West Germany and a goal number of less than 9?",
    "question_th": "ผลการแข่งขันที่สตุ๊ตการ์ท เยอรมนีตะวันตก และสกอร์รวมน้อยกว่า 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_en": "Which Record has an Opponent of twins, and a Date of july 25?",
    "question_th": "บันทึกใดมีฝ่ายตรงข้ามของฝาแฝดและวันที่ 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_en": "How much is per capita income when median household income is $42,845?",
    "question_th": "รายได้ต่อหัวคือเท่าไรเมื่อรายได้เฉลี่ยของครัวเรือนอยู่ที่ 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–1\" AND game < 39",
    "question_en": "Which Points have a Score of 4–1, and a Game smaller than 39?",
    "question_th": "แต้มใดมีคะแนน 4–1 และเกมที่น้อยกว่า 39",
    "context": "CREATE TABLE table_name_91 (points INTEGER, score VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT SUM(january) FROM table_name_69 WHERE score = \"7–4\" AND game < 42",
    "question_en": "Which January has a Score of 7–4, and a Game smaller than 42?",
    "question_th": "เดือนมกราคมใดที่มีคะแนน 7–4 และเกมที่น้อยกว่า 42",
    "context": "CREATE TABLE table_name_69 (january INTEGER, score VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(game) FROM table_name_9 WHERE score = \"1–0\" AND points < 66",
    "question_en": "How many games have a Score of 1–0, and Points smaller than 66?",
    "question_th": "มีกี่เกมที่มีคะแนน 1–0 และคะแนนน้อยกว่า 66",
    "context": "CREATE TABLE table_name_9 (game VARCHAR, score VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT MIN(points) FROM table_name_26 WHERE score = \"1–4\" AND january < 18",
    "question_en": "Which Points is the lowest one that has a Score of 1–4, and a January smaller than 18?",
    "question_th": "คะแนนใดคือคะแนนต่ำสุดที่มีคะแนน 1–4 และคะแนนเดือนมกราคมน้อยกว่า 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_en": "Which borough or census area has a $59,596 median household income?",
    "question_th": "เขตเลือกตั้งหรือเขตการสำรวจสำมะโนประชากรใดมีรายได้เฉลี่ยของครัวเรือนอยู่ที่ 59,596 ดอลลาร์",
    "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_en": "What is the population of the area with a median family income of $71,278?",
    "question_th": "ประชากรในพื้นที่ที่มีรายได้เฉลี่ยของครอบครัวอยู่ที่ 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_en": "What was the Outcome of the Danish Open in 1985?",
    "question_th": "ผลลัพธ์ของเดนมาร์กโอเพ่นในปี 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_en": "What was the Venue in 1986 with an Outcome of 1?",
    "question_th": "สถานที่จัดงานในปี 1986 โดยมีผลลัพธ์เป็น 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_en": "What was the Outcome in 1983 of the WD Event?",
    "question_th": "เหตุการณ์ WD ในปี 1983 ผลลัพธ์เป็นอย่างไร",
    "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_en": "In what Year did the German Open have Yoo Sang-Hee as Partner?",
    "question_th": "German Open มี Yoo Sang-Hee เป็นหุ้นส่วนในปีใด",
    "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_en": "What is the Outcome in the Malaysia Open with Partner Yoo Sang-Hee?",
    "question_th": "ผลลัพธ์ในการแข่งขัน Malaysia Open กับคู่หู 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_en": "What is the Partner during the Asian Games Year?",
    "question_th": "พันธมิตรในช่วงปีเอเชียนเกมส์คืออะไร?",
    "context": "CREATE TABLE table_name_23 (partner VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_91 WHERE date = \"august 19\"",
    "question_en": "What was the loss for August 19?",
    "question_th": "การสูญเสียในวันที่ 19 สิงหาคมคืออะไร?",
    "context": "CREATE TABLE table_name_91 (loss VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT municipality FROM table_name_94 WHERE rank = 44",
    "question_en": "What Municipality has a Rank of 44?",
    "question_th": "เทศบาลใดมีอันดับ 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_en": "What is the total Rank that has a Municipality of Winnipeg, an Area (KM 2) that's larger than 464.01?",
    "question_th": "อันดับรวมที่มีเทศบาลเมืองวินนิเพก พื้นที่ (KM 2) ที่ใหญ่กว่า 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_en": "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?",
    "question_th": "พื้นที่สูงสุด (KM 2) สำหรับจังหวัดออนแทรีโอที่มีสถานะเมือง เทศบาลมินโต และอันดับน้อยกว่า 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_en": "What's the total of Rank that has an Area (KM 2) of 1050.14?",
    "question_th": "อันดับทั้งหมดที่มีพื้นที่ (KM 2) เท่ากับ 1,050.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_en": "What is the listed Status that has the Province of Ontario and Rank of 86?",
    "question_th": "สถานะที่ระบุไว้ซึ่งมีจังหวัดออนแทรีโอและอันดับที่ 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_en": "What type of event had the wrestler with a reign of 2 and held the title for 35 days?",
    "question_th": "นักมวยปล้ำคนใดครองราชย์ได้ 2 สมัย ครองตำแหน่งได้ 35 วัน?",
    "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_en": "Where did the wrestler, super parka, with the title with a reign of 2?",
    "question_th": "นักมวยปล้ำ ซุปเปอร์ปาร์ก้า ครองตำแหน่ง 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_en": "What is the reign for super kendo who held it for 35 days?",
    "question_th": "รัชสมัยของซุปเปอร์เคนโด้ที่ถือไว้ 35 วันคืออะไร?",
    "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_en": "Which FCC info has an ERP W of 100 watts?",
    "question_th": "ข้อมูล FCC ใดมี ERP W 100 วัตต์",
    "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_en": "Which Frequency MHz has a Call Sign of K218BE?",
    "question_th": "ความถี่ใด MHz ที่มีสัญญาณเรียกขานของ 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_en": "Which ERP W has a Frequency MHz of 88.5 FM?",
    "question_th": "ERP W ใดมีความถี่ MHz 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_en": "What is the name of the player from Spain with a rank lower than 3?",
    "question_th": "นักเตะสเปนอันดับต่ำกว่า 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_en": "Which region had a catalog number of 570 734-2?",
    "question_th": "ภูมิภาคใดมีหมายเลขแค็ตตาล็อก 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_en": "Which region had a release format of CD Maxi?",
    "question_th": "ภูมิภาคใดมีรูปแบบการเผยแพร่ของ CD Maxi",
    "context": "CREATE TABLE table_name_8 (region VARCHAR, format VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_name_20 WHERE format = \"cd maxi\"",
    "question_en": "Which region had a release format of CD Maxi?",
    "question_th": "ภูมิภาคใดมีรูปแบบการเผยแพร่ของ 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_en": "Where did the Jet's play with an attendance of 11,309?",
    "question_th": "เดอะเจ็ตส์เล่นที่ไหนด้วยผู้ชม 11,309 คน?",
    "context": "CREATE TABLE table_name_98 (game_site VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_34 WHERE opponent = \"bye\"",
    "question_en": "What's the result of the game against Bye?",
    "question_th": "ผลเกมกับบายเป็นยังไงบ้าง?",
    "context": "CREATE TABLE table_name_34 (result VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_53 WHERE week = 15",
    "question_en": "What's the Result for week 15?",
    "question_th": "สัปดาห์ที่ 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_en": "What day was the appointment when Credentials Presented was jul 2, 1969?",
    "question_th": "การนัดหมายคือวันใดที่มอบหนังสือรับรองคือวันที่ 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_en": "When were the credentials presented for new jersey with a status of foreign service officer?",
    "question_th": "เมื่อใดที่ข้อมูลรับรองสำหรับนิวเจอร์ซีย์ที่มีสถานะเป็นเจ้าหน้าที่บริการต่างประเทศ?",
    "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_en": "What is the title for david campbell mulford?",
    "question_th": "เดวิด แคมป์เบลล์ มัลฟอร์ด มีฉายาว่าอะไร",
    "context": "CREATE TABLE table_name_90 (title VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT state FROM table_name_47 WHERE appointment = \"jul 12, 2001\"",
    "question_en": "What state has an appointment for jul 12, 2001?",
    "question_th": "รัฐใดมีนัดวันที่ 12 ก.ค. 2544?",
    "context": "CREATE TABLE table_name_47 (state VARCHAR, appointment VARCHAR)"
  },
  {
    "answer": "SELECT credentials_presented FROM table_name_35 WHERE state = \"vermont\"",
    "question_en": "What day were credentials presented for vermont?",
    "question_th": "มีการนำเสนอข้อมูลประจำตัวสำหรับเวอร์มอนต์วันใด",
    "context": "CREATE TABLE table_name_35 (credentials_presented VARCHAR, state VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_name_57 WHERE weight = 203",
    "question_en": "Which Class has a Weight of 203?",
    "question_th": "คลาสใดมีน้ำหนัก 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_en": "What is the team 1 with team 2 Mount Cameroon FC?",
    "question_th": "ทีม 1 กับ ทีม 2 เมาท์ แคเมอรูน เอฟซี คืออะไร?",
    "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_en": "What is the 2nd leg of team 1 Dolphins?",
    "question_th": "เลกที่ 2 ของทีม 1 ดอลฟินส์ คืออะไร?",
    "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_en": "When the winner was No Race in a year after 1909, what was the distance?",
    "question_th": "เมื่อผู้ชนะคือ No Race ในหนึ่งปีหลังจากปี 1909 ระยะทางเท่าไหร่?",
    "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_en": "What horse won with a trainer of \"no race\"?",
    "question_th": "ม้าตัวไหนชนะด้วยเทรนเนอร์ \"ไม่มีแข่ง\"?",
    "context": "CREATE TABLE table_name_21 (winner VARCHAR, trainer VARCHAR)"
  },
  {
    "answer": "SELECT jockey FROM table_name_41 WHERE winner = \"helioptic\"",
    "question_en": "Who was the jockey for the winning horse Helioptic?",
    "question_th": "ใครคือผู้จัดรายการสำหรับม้า Helioptic ที่ชนะ?",
    "context": "CREATE TABLE table_name_41 (jockey VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_94 WHERE winner = \"salford ii\"",
    "question_en": "What was the time for the winning horse Salford ii?",
    "question_th": "เวลาใดที่ม้าผู้ชนะ Salford ii?",
    "context": "CREATE TABLE table_name_94 (time VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_49 WHERE winner = \"kentucky ii\"",
    "question_en": "What was the winning time for the winning horse, Kentucky ii?",
    "question_th": "เวลาที่ชนะสำหรับม้าที่ชนะ Kentucky ii คือเมื่อใด?",
    "context": "CREATE TABLE table_name_49 (time VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(position) FROM table_name_1 WHERE lost < 1",
    "question_en": "What was the position with the total number less than 1?",
    "question_th": "ตำแหน่งที่มีจำนวนรวมน้อยกว่า 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_en": "What is the sum of golds for ranks of 6 and totals over 3?",
    "question_th": "ผลรวมของทองคำสำหรับอันดับ 6 และผลรวมมากกว่า 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_en": "What is the average silver for golds over 2, ranks of 1, and bronzes over 0?",
    "question_th": "เงินเฉลี่ยสำหรับทองคำที่มากกว่า 2 อันดับที่ 1 และเหรียญทองแดงที่มากกว่า 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_en": "What is the number of totals that have silvers under 2, bronzes over 0, and golds over 1?",
    "question_th": "จำนวนรวมที่มีเงินต่ำกว่า 2, เหรียญทองแดงมากกว่า 0 และทองคำมากกว่า 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_en": "What is the total number of golds having a total of 1, bronzes of 0, and from West Germany?",
    "question_th": "มีทองคำทั้งหมด 1 เหรียญทอง 0 เหรียญทองแดง และจากเยอรมนีตะวันตกมีทั้งหมดกี่เหรียญทอง?",
    "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_en": "What is the sum of bronzes having silvers over 5 and golds under 20?",
    "question_th": "ผลรวมของทองแดงที่มีเงินมากกว่า 5 และทองต่ำกว่า 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_en": "What is the result of the game with an attendance greater than 67,702?",
    "question_th": "ผลการแข่งขันที่มีผู้ชมมากกว่า 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_en": "How many Losses have a Ballarat FL of melton south, and an Against larger than 1468?",
    "question_th": "มีการสูญเสียกี่ครั้งที่มี Ballarat FL จากเมลตันทางใต้และมากกว่า 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_en": "How many Against has Byes smaller than 2?",
    "question_th": "มีกี่ Against ที่มี Byes น้อยกว่า 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_en": "How many Against has a Ballarat FL of darley and Wins larger than 8?",
    "question_th": "Against มี Ballarat FL ของ darley และชนะมากกว่า 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_en": "How many Byes have Against of 1076 and Wins smaller than 13?",
    "question_th": "Byes มีกี่ Byes เทียบกับ 1,076 และชนะน้อยกว่า 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_en": "What is the total number of Total Passengers when the annual change is 28.8% and the rank is less than 8?",
    "question_th": "จำนวนผู้โดยสารทั้งหมดเมื่อมีการเปลี่ยนแปลงประจำปีคือ 28.8% และอันดับน้อยกว่า 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_en": "What is the sum of Total Passengers when the annual change is 9.7% and the rank is less than 6?",
    "question_th": "ผลรวมของผู้โดยสารทั้งหมดเมื่อการเปลี่ยนแปลงประจำปีคือ 9.7% และอันดับน้อยกว่า 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_en": "What is the highest Total Passengers when the annual change is 18.3%, and the rank is less than 11?",
    "question_th": "ผู้โดยสารทั้งหมดสูงสุดเมื่อมีการเปลี่ยนแปลงประจำปีคือ 18.3% และอันดับน้อยกว่า 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_en": "What location has an annual change of 7.6%",
    "question_th": "สถานที่ใดมีการเปลี่ยนแปลงปีละ 7.6%",
    "context": "CREATE TABLE table_name_32 (location VARCHAR, annual_change VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_7 WHERE score = \"1–0\" AND goal = 16",
    "question_en": "Which Result has a Score of 1–0, and a Goal of 16?",
    "question_th": "ผลลัพธ์ใดมีคะแนน 1–0 และประตู 16",
    "context": "CREATE TABLE table_name_7 (result VARCHAR, score VARCHAR, goal VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_21 WHERE result = \"2–1\" AND competition = \"friendly\" AND goal < 17",
    "question_en": "Which Score has a Result of 2–1, and a Competition of friendly, and a Goal smaller than 17?",
    "question_th": "สกอร์ใดที่มีผลการแข่งขัน 2–1 และการแข่งขันกระชับมิตร และประตูที่น้อยกว่า 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í, mexico\"",
    "question_en": "Which Score has a Date of october 8, 2005, and a Venue of estadio alfonso lastras, san luis potosí, mexico?",
    "question_th": "คะแนนใดมีวันที่ 8 ตุลาคม 2548 และสถานที่ของ estadio alfonso Lastras, san luis potosí, เม็กซิโก",
    "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í, mexico\" AND goal > 15",
    "question_en": "Which Competition has a Venue of estadio alfonso lastras, san luis potosí, mexico, and a Goal larger than 15?",
    "question_th": "การแข่งขันใดที่มีสนาม Estadio Alfonso Lastras, San Luis Potosí, เม็กซิโก และมีเป้าหมายมากกว่า 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_en": "What is the area for Worth Parish?",
    "question_th": "เขตเวิร์ธ มีพื้นที่ไหนบ้าง?",
    "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_en": "What is the week number with Phil Collins as the original artist?",
    "question_th": "สัปดาห์ที่ Phil Collins เป็นศิลปินต้นฉบับคือสัปดาห์ใด",
    "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_en": "What is the order number that has top 20 (10 women)  as the week number?",
    "question_th": "หมายเลขคำสั่งซื้อที่มี 20 อันดับแรก (ผู้หญิง 10 คน) เป็นหมายเลขสัปดาห์คืออะไร",
    "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_en": "What is the original artist of top 9 as the week number?",
    "question_th": "ศิลปินดั้งเดิมของ 9 อันดับแรกเป็นหมายเลขประจำสัปดาห์คืออะไร?",
    "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_en": "What is the week number that has Dolly Parton as the theme?",
    "question_th": "หมายเลขสัปดาห์ที่มี Dolly Parton เป็นธีมคืออะไร",
    "context": "CREATE TABLE table_name_12 (week__number VARCHAR, theme VARCHAR)"
  },
  {
    "answer": "SELECT original_artist FROM table_name_69 WHERE order__number = \"11\"",
    "question_en": "What is the original artist that has 11 as the order number?",
    "question_th": "ศิลปินต้นฉบับที่มีเลข 11 เป็นหมายเลขคำสั่งซื้อคือศิลปินคนใด",
    "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_en": "What is the order number that has Aretha Franklin as the original artist?",
    "question_th": "หมายเลขคำสั่งซื้อที่มี Aretha Franklin เป็นศิลปินต้นฉบับคืออะไร?",
    "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_en": "Which Format has a Date of 1993, and a Catalog of cleo 2481-2?",
    "question_th": "รูปแบบใดมีวันที่ปี 1993 และแคตตาล็อกของ 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_en": "Which Label has a Date smaller than 2008, and a Catalog of fall cd 006?",
    "question_th": "ป้ายใดมีวันที่น้อยกว่าปี 2008 และแคตตาล็อกฤดูใบไม้ร่วง 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_en": "What is the sum of Round with a Position that is center?",
    "question_th": "ผลรวมของรอบที่มีตำแหน่งที่อยู่ตรงกลางเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_88 (round INTEGER, position VARCHAR)"
  },
  {
    "answer": "SELECT SUM(round) FROM table_name_89 WHERE pick = 55",
    "question_en": "What is the sum of Round with a Pick that is 55?",
    "question_th": "ผลรวมของ Round กับ Pick ที่เท่ากับ 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_en": "What is the most wins when the number of losses was less than 4 and there was more than 0 ties?",
    "question_th": "อะไรชนะมากที่สุดเมื่อจำนวนการแพ้น้อยกว่า 4 และเสมอกันมากกว่า 0 คืออะไร?",
    "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_en": "Which team had fewer than 2 losses and a position number more than 1?",
    "question_th": "ทีมใดแพ้น้อยกว่า 2 ครั้งและมีอันดับมากกว่า 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_en": "What season had Marcio Lassiter?",
    "question_th": "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_en": "What season had an acquisition of free agency, and was higher than 9?",
    "question_th": "ฤดูกาลใดที่มีการได้มาซึ่งเอเจนซี่อิสระและสูงกว่า 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_en": "What number has an acquisition via the Rookie Draft, and is part of a School/club team at Cal State Fullerton?",
    "question_th": "หมายเลขใดที่ได้มาจาก Rookie Draft และเป็นส่วนหนึ่งของทีมโรงเรียน/สโมสรที่ 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_en": "What is the highest rank of the medal total less than 15, more than 2 bronzes, 0 gold and 1 silver?",
    "question_th": "อันดับสูงสุดของเหรียญรางวัลทั้งหมดน้อยกว่า 15 เหรียญทองแดง มากกว่า 2 เหรียญ 0 เหรียญทอง และ 1 เหรียญเงิน คืออะไร?",
    "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_en": "What is the location of the team nicknamed Broncos, which was founded after 1889?",
    "question_th": "ที่ตั้งของทีมชื่อเล่น บรองโกส์ ก่อตั้งหลังปี พ.ศ. 2432 คืออะไร?",
    "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_en": "What is the location of the University of Montana, which was founded after 1890?",
    "question_th": "ที่ตั้งของ University of Montana ซึ่งก่อตั้งหลังปี 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_en": "Which landfall was in category 1 for Saffir-Simpson in 1999?",
    "question_th": "แผ่นดินใดอยู่ในประเภท 1 สำหรับ Saffir-Simpson ในปี 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_en": "What was the lowest V(mph) for a Saffir-Simpson of 4 in 2005?",
    "question_th": "ค่า V(mph) ต่ำสุดสำหรับ Saffir-Simpson ที่ 4 ในปี 2548 คือเท่าใด",
    "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_en": "What was the highest SaffirSimpson with an NHC advisory of 18?",
    "question_th": "SaffirSimpson สูงสุดพร้อมคำแนะนำของ NHC ที่ 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_en": "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?",
    "question_th": "อันดับนักกีฬาคนไหนมากกว่า 15 เมื่อผลการแข่งขันต่ำกว่า 7.68 กลุ่มคือ b และสัญชาติที่ระบุคือบริเตนใหญ่?",
    "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_en": "When did NASA launch the wide field infrared explorer (wire)?",
    "question_th": "NASA เปิดตัวเครื่องสำรวจอินฟราเรด (ลวด) สนามกว้างเมื่อใด",
    "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_en": "Which space agency launched the herschel space observatory?",
    "question_th": "หน่วยงานอวกาศใดที่เปิดตัวหอดูดาวเฮอร์เชล",
    "context": "CREATE TABLE table_name_17 (space_agency VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT lead FROM table_name_98 WHERE third = \"david nedohin\"",
    "question_en": "What lead has the third David Nedohin?",
    "question_th": "David Nedohin คนที่สามเป็นผู้นำอะไร?",
    "context": "CREATE TABLE table_name_98 (lead VARCHAR, third VARCHAR)"
  },
  {
    "answer": "SELECT builder FROM table_name_93 WHERE completed > 1889",
    "question_en": "Which builder completed after 1889?",
    "question_th": "ช่างก่อสร้างคนไหนสร้างเสร็จหลังปี 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_en": "Which builder completed before 1890 and launched on 9 june 1888?",
    "question_th": "ช่างก่อสร้างคนใดสร้างเสร็จก่อนปี 1890 และเปิดตัวในวันที่ 9 มิถุนายน พ.ศ. 2431",
    "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_en": "What is the name of the boat that was built by Chatham and Laid down of 25 april 1887?",
    "question_th": "เรือลำใดที่สร้างโดย Chatham และ Laid down เมื่อวันที่ 25 เมษายน พ.ศ. 2430 คืออะไร?",
    "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_en": "What boat was laid down on 25 april 1887?",
    "question_th": "เรือลำใดถูกวางลงเมื่อวันที่ 25 เมษายน พ.ศ. 2430",
    "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_en": "When did chatham complete the Hmsmedusa?",
    "question_th": "Chatham ทำ 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_en": "What is the Overall with a Date that is february 4, 1964?",
    "question_th": "ภาพรวมกับวันที่ 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_en": "What is the Date with an Opponent that is indiana state college?",
    "question_th": "วันที่กับฝ่ายตรงข้ามที่เป็นวิทยาลัยรัฐอินเดียน่าคืออะไร?",
    "context": "CREATE TABLE table_name_71 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_11 WHERE date = \"december 10, 1963\"",
    "question_en": "What is the Location with a Date that is december 10, 1963?",
    "question_th": "สถานที่ซึ่งมีวันที่คือ 10 ธันวาคม 2506 คืออะไร?",
    "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_en": "What is NiCd, when Type is \"Capacity under 500mA constant Drain\"?",
    "question_th": "NiCd คืออะไร เมื่อประเภทเป็น \"ความจุต่ำกว่าเดรนคงที่ 500mA\"",
    "context": "CREATE TABLE table_name_23 (nicd VARCHAR, type VARCHAR)"
  },
  {
    "answer": "SELECT li_fes_2 FROM table_name_9 WHERE type = \"nominal voltage\"",
    "question_en": "What is Li-FeS 2, when Type is Nominal Voltage?",
    "question_th": "Li-FeS 2 คืออะไร เมื่อ Type เป็น 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_en": "What was the Liberal Party result from the election having a Conservative Party result of 16 (-1) and Labour of 6 (+2)?",
    "question_th": "ผลการเลือกตั้งของพรรคเสรีนิยมมีผลพรรคอนุรักษ์นิยม 16 (-1) และแรงงาน 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_en": "What was the control for the year with a Conservative Party result of 10 (+5)?",
    "question_th": "การควบคุมสำหรับปีโดยผลพรรคอนุรักษ์นิยมเป็น 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_en": "Who was in control the year that Labour Party won 12 (+6) seats?",
    "question_th": "ปีที่พรรคแรงงานได้ 12(+6) ที่นั่ง ใครเป็นผู้ควบคุม?",
    "context": "CREATE TABLE table_name_36 (control VARCHAR, labour_party VARCHAR)"
  },
  {
    "answer": "SELECT independents FROM table_name_73 WHERE labour_party = \"26 (+3)\"",
    "question_en": "What is the number of Independents elected in the year Labour won 26 (+3) seats?",
    "question_th": "พรรคอิสระที่ได้รับเลือกในปีที่พรรคแรงงานได้ 26 (+3) ที่นั่งมีจำนวนเท่าใด?",
    "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_en": "What is the set 5 for the game with a set 2 of 21-25 and a set 1 of 41633?",
    "question_th": "ชุดที่ 5 ของเกมที่มีชุดที่ 2 จาก 21-25 และชุดที่ 1 จาก 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_en": "What is the result of the game with a set 1 of 26-24?",
    "question_th": "ผลเกมกับเซต 1 26-24 เป็นยังไงบ้าง?",
    "context": "CREATE TABLE table_name_17 (result__pts_ VARCHAR, set_1 VARCHAR)"
  },
  {
    "answer": "SELECT altadeña FROM table_name_83 WHERE aprende = \"jaguars\"",
    "question_en": "Which Altadeña has a Aprende of jaguars?",
    "question_th": "Altadeñaคนไหนมี Aprende ของจากัวร์?",
    "context": "CREATE TABLE table_name_83 (altadeña VARCHAR, aprende VARCHAR)"
  },
  {
    "answer": "SELECT aprende FROM table_name_35 WHERE centennial = \"1988\"",
    "question_en": "WHich kind of Aprende has a Centennial of 1988?",
    "question_th": "Aprende ประเภทใดที่มี Centennial ปี 1988?",
    "context": "CREATE TABLE table_name_35 (aprende VARCHAR, centennial VARCHAR)"
  },
  {
    "answer": "SELECT centennial FROM table_name_4 WHERE altadeña = \"panthers\"",
    "question_en": "Which Centennial has a Altadeña of panthers?",
    "question_th": "Centennial ใดมี Altadeña ของเสือดำ?",
    "context": "CREATE TABLE table_name_4 (centennial VARCHAR, altadeña VARCHAR)"
  },
  {
    "answer": "SELECT centennial FROM table_name_40 WHERE del_pueblo = \"1986\"",
    "question_en": "Which Centennial has a del Pueblo of 1986?",
    "question_th": "Centennial ใดที่มี del Pueblo ในปี 1986",
    "context": "CREATE TABLE table_name_40 (centennial VARCHAR, del_pueblo VARCHAR)"
  },
  {
    "answer": "SELECT altadeña FROM table_name_45 WHERE del_pueblo = \"maroon/gray\"",
    "question_en": "What kind of Altadeña has del Pueblo of maroon/gray?",
    "question_th": "Altadeñaแบบไหนที่มี del Pueblo สีน้ำตาลแดง/เทา?",
    "context": "CREATE TABLE table_name_45 (altadeña VARCHAR, del_pueblo VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(attendance) FROM table_name_34 WHERE opponent = \"clemson\"",
    "question_en": "How many people attended the game against Clemson?",
    "question_th": "มีกี่คนที่เข้าร่วมเกมกับเคลมสัน?",
    "context": "CREATE TABLE table_name_34 (attendance VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT runner_s__up FROM table_name_97 WHERE winning_score = −19(71 - 63 - 63 - 64 = 261)",
    "question_en": "Who's the Runner(s)-up with a Winning score of −19 (71-63-63-64=261)?",
    "question_th": "ใครคือรองชนะเลิศด้วยคะแนนชนะ −19 (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_en": "Which Date has a Runner(s)-up of fred funk?",
    "question_th": "วันไหนที่มี 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_en": "Which Tournament has a Date of jul 14, 2013?",
    "question_th": "การแข่งขันใดมีวันที่ 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_en": "Which Margin of victory has a Tournament of u.s. senior open?",
    "question_th": "Margin of Victory ใดที่มีการแข่งขันของพวกเรารุ่นพี่เปิด?",
    "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_en": "Which Date has a Runner(s)-up of bernhard langer, and a Tournament of at&t championship?",
    "question_th": "วันที่ใดที่มีรองชนะเลิศของ Bernhard Langer และทัวร์นาเมนต์ของ 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 = −13(67 - 73 - 64 - 63 = 267)",
    "question_en": "Which Date has a Margin of victory of 5 strokes, and a Winning score of −13 (67-73-64-63=267)?",
    "question_th": "วันใดมีระยะขอบของชัยชนะ 5 จังหวะ และคะแนนชนะที่ −13 (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_en": "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?",
    "question_th": "ความหนาแน่นของประชากรที่มีการเปลี่ยนแปลง (%) สูงกว่า 10.4 และประชากร (2011) น้อยกว่า 8574 ใน 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²_ > 4.5",
    "question_en": "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²) larger than 4.5?",
    "question_th": "ประชากร (2554) คืออะไร เมื่อประชากร (2549) น้อยกว่า 7,083 และความหนาแน่นของประชากรน้อยกว่า 342.8 และการเปลี่ยนแปลง (%) เท่ากับ 5 และพื้นที่ (กม. ²) มากกว่า 4.5",
    "context": "CREATE TABLE table_name_2 (population__2011_ VARCHAR, area__km²_ VARCHAR, change___percentage_ VARCHAR, population__2006_ VARCHAR, population_density VARCHAR)"
  },
  {
    "answer": "SELECT AVG(area__km²_) FROM table_name_21 WHERE population__2011_ = 8574 AND population_density > 381.4",
    "question_en": "What was the Area (km²) when the Population (2011) was 8574, and the Population density was larger than 381.4?",
    "question_th": "พื้นที่ (กม.²) คือเท่าใด เมื่อประชากร (2011) มีจำนวน 8574 คน และความหนาแน่นของประชากรมากกว่า 381.4",
    "context": "CREATE TABLE table_name_21 (area__km²_ INTEGER, population__2011_ VARCHAR, population_density VARCHAR)"
  },
  {
    "answer": "SELECT MAX(population_density) FROM table_name_93 WHERE county = \"prince\" AND area__km²_ > 3.02 AND population__2006_ > 786 AND population__2011_ < 1135",
    "question_en": "In the County of Prince, what was the highest Population density when the Area (km²) was larger than 3.02, and the Population (2006) was larger than 786, and the Population (2011) was smaller than 1135?",
    "question_th": "ในเทศมณฑลพรินซ์ ความหนาแน่นของประชากรสูงสุดคือเท่าใดเมื่อพื้นที่ (กม. ²) มากกว่า 3.02 และประชากร (พ.ศ. 2549) มีขนาดใหญ่กว่า 786 และประชากร (พ.ศ. 2554) น้อยกว่า 1135",
    "context": "CREATE TABLE table_name_93 (population_density INTEGER, population__2011_ VARCHAR, population__2006_ VARCHAR, county VARCHAR, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT MIN(against) FROM table_name_4 WHERE played > 10",
    "question_en": "What is the lowest Against when the played is more than 10?",
    "question_th": "ค่าต่ำสุดต่อเมื่อเล่นมากกว่า 10 คืออะไร?",
    "context": "CREATE TABLE table_name_4 (against INTEGER, played INTEGER)"
  },
  {
    "answer": "SELECT SUM(against) FROM table_name_45 WHERE lost > 7",
    "question_en": "What is the sum of Against when the lost is more than 7?",
    "question_th": "ผลรวมของ Against เมื่อแพ้มากกว่า 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_en": "What is the highest Drawn when the lost is 7 and the points are more than 4, and the against is less than 22?",
    "question_th": "อะไรคือสิ่งที่จั่วได้สูงสุดเมื่อแพ้คือ 7 และแต้มมากกว่า 4 และแต้มต่อน้อยกว่า 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_en": "What team has an against more than 8, lost of 7, and the position is 5?",
    "question_th": "ทีมใดมีแต้มต่อมากกว่า 8 แพ้ 7 และอันดับ 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_en": "What is the Against when the drawn is 5?",
    "question_th": "ต่อต้านคืออะไรเมื่อเสมอกันคือ 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_en": "How many years were there for the 62nd golden globe awards?",
    "question_th": "รางวัลลูกโลกทองคำครั้งที่ 62 มีเวลากี่ปี?",
    "context": "CREATE TABLE table_name_29 (year INTEGER, awards VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_83 WHERE year < 2005",
    "question_en": "What was the result for years prior to 2005?",
    "question_th": "ผลลัพธ์ในหลายปีก่อนปี 2548 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_83 (result VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT awards FROM table_name_33 WHERE year > 2005",
    "question_en": "Which awards happened more recently than 2005?",
    "question_th": "รางวัลใดที่เกิดขึ้นล่าสุดกว่าปี 2548?",
    "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_en": "What is the total years with average runs less than 4.75 and a time of 14.26?",
    "question_th": "จำนวนปีทั้งหมดที่มีค่าเฉลี่ยวิ่งน้อยกว่า 4.75 และเวลา 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_en": "What is the total amount of time for years prior to 2013 when speed option is the stage?",
    "question_th": "จำนวนเวลาทั้งหมดสำหรับปีก่อนปี 2013 เมื่อตัวเลือกความเร็วเป็นเท่าใด",
    "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_en": "What was the prior position held by Wyman Webb?",
    "question_th": "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_en": "Who was appointed on October 21, 2011 from Quebec?",
    "question_th": "ใครได้รับการแต่งตั้งเมื่อวันที่ 21 ตุลาคม 2554 จากควิเบก?",
    "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_en": "The Away High Park Demons was which Ground?",
    "question_th": "The Away High Park Demons คือสนามไหน?",
    "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_en": "With the Ground of Humber College North at 12:00, what was the Away?",
    "question_th": "กับ Ground of Humber College North เวลา 12.00 น. 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_en": "Who has the Home Score of 52-54?",
    "question_th": "ใครมีสกอร์เจ้าบ้าน 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_en": "When did the High Park Demons play Away?",
    "question_th": "High Park Demons เล่นทีมเยือนเมื่อไหร่?",
    "context": "CREATE TABLE table_name_64 (date VARCHAR, away VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_14 WHERE runner_s__up = \"fernando roca\"",
    "question_en": "What tournament that Fernando Roca is the runner-up?",
    "question_th": "รองแชมป์รายการใดที่ เฟร์นันโด โรกา เป็นรองแชมป์?",
    "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_en": "What is the winning score for the runner-up Ernie Els?",
    "question_th": "คะแนนชนะของรองแชมป์ 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_en": "How many people attended when Wake Forest played Virginia Tech?",
    "question_th": "มีผู้เข้าร่วมกี่คนเมื่อ Wake Forest เล่น 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_en": "What is Country, when Television Service is Eurosport 2?",
    "question_th": "ประเทศคืออะไร เมื่อบริการโทรทัศน์คือ 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_en": "What is Package/Option, when Content is Poker?",
    "question_th": "แพ็คเกจ/ออปชันคืออะไร เมื่อเนื้อหาคือโป๊กเกอร์?",
    "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_en": "What is Language, when Content is Sport, when HDTV is No, and when Television Service is ESPN America?",
    "question_th": "ภาษาคืออะไร เมื่อเนื้อหาเป็นกีฬา เมื่อ HDTV เป็นไม่ใช่ และเมื่อบริการโทรทัศน์เป็น 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_en": "What is Package/Option, when Content is Tennis?",
    "question_th": "แพ็คเกจ/ออปชั่นคืออะไร เมื่อเนื้อหาเป็นเทนนิส?",
    "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_en": "What is Television Service, when Content is Calcio, and when Package/Option is Option?",
    "question_th": "บริการโทรทัศน์คืออะไร เมื่อเนื้อหาคือ Calcio และเมื่อใดที่แพ็คเกจ/ตัวเลือกเป็นตัวเลือก",
    "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_en": "What is the Novelty of the dinosaur that was named by the Author, Zhiming, and whose Notes are, \"carcharodontosaurid\"?",
    "question_th": "อะไรคือความแปลกใหม่ของไดโนเสาร์ที่ได้รับการตั้งชื่อโดยผู้แต่ง Zhiming และหมายเหตุของใครคือ \"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_en": "What is the Name of the dinosaur that was discovered in the Location, China, and whose Notes are, \"described from a single tooth\"?",
    "question_th": "ไดโนเสาร์ที่ถูกค้นพบในสถานที่นี้ชื่ออะไร ประเทศจีน และมีหมายเหตุว่า \"อธิบายจากฟันซี่เดียว\"",
    "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_en": "What is the Name of the dinosaur, whose notes are, \"n ornithischia of uncertain placement\"?",
    "question_th": "ไดโนเสาร์ชื่ออะไร ซึ่งมีข้อความว่า \"n ornithischia of uncertainposition\"?",
    "context": "CREATE TABLE table_name_22 (name VARCHAR, notes VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_73 WHERE notes = \"n coelurosauria\"",
    "question_en": "What is the Status of the dinosaur, whose notes are, \"n coelurosauria\"?",
    "question_th": "สถานะของไดโนเสาร์ซึ่งมีข้อความว่า \"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_en": "What are the Notes of the dinosaur, whose Status is nomen dubium, and whose Location is China?",
    "question_th": "อะไรคือบันทึกของไดโนเสาร์ซึ่งมีสถานะเป็น nomen dubium และที่ตั้งคือประเทศจีน?",
    "context": "CREATE TABLE table_name_26 (notes VARCHAR, status VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT novelty FROM table_name_37 WHERE authors = \"galton\"",
    "question_en": "What is the Novelty of the dinosaur, whose naming Author was Galton?",
    "question_th": "ความแปลกใหม่ของไดโนเสาร์ซึ่งมีผู้แต่งชื่อคือกัลตันคืออะไร?",
    "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_en": "What is the number listed under against when there were less than 13 losses and less than 2 byes?",
    "question_th": "หมายเลขที่ระบุไว้ด้านล่างเทียบกับจำนวนใดที่มีการสูญเสียน้อยกว่า 13 ครั้งและน้อยกว่า 2 บาย?",
    "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_en": "What is the highest number listed under against when there were 15 losses and more than 1 win?",
    "question_th": "หมายเลขสูงสุดที่ระบุไว้ภายใต้การต่อต้านเมื่อมีการสูญเสีย 15 ครั้งและชนะมากกว่า 1 ครั้งคืออะไร?",
    "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_en": "What is the average number of Byes when there were less than 0 losses and were against 1247?",
    "question_th": "จำนวนบายโดยเฉลี่ยเมื่อขาดทุนน้อยกว่า 0 ครั้งและเทียบกับ 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_en": "What is the highest number listed under against when there were less than 3 wins and less than 15 losses?",
    "question_th": "หมายเลขสูงสุดที่ระบุไว้ภายใต้เทียบกับจำนวนใดที่มีการชนะน้อยกว่า 3 ครั้งและแพ้น้อยกว่า 15 ครั้ง?",
    "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_en": "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?",
    "question_th": "หนี้สาธารณะเฉลี่ย % ของ GDP ในไตรมาสที่ 1 ปี 2556 ของประเทศที่มีรายชื่อสมาชิกเรียงตาม GDP ของสาธารณรัฐเช็กและ GDP ต่อหัวในสกุลเงิน PPP ดอลลาร์สหรัฐในปี 2555 มากกว่า 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_en": "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%?",
    "question_th": "อัตราเงินเฟ้อ % ที่ใหญ่ที่สุดต่อปีในปี 2555 ของประเทศที่มีหนี้สาธารณะ % ของ GDP ในไตรมาสที่ 1 ปี 2556 มากกว่า 88.2 และ GDP % ของสหภาพยุโรปในปี 2555 อยู่ที่ 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_en": "What is the GDP % of EU in 2012 of the country with a GDP in billions of USD in 2012 of 256.3?",
    "question_th": "GDP % ของสหภาพยุโรปในปี 2555 ของประเทศที่มี GDP เป็นพันล้านเหรียญสหรัฐในปี 2555 เท่ากับ 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_en": "What is the Chord with a Major that is third of e?",
    "question_th": "คอร์ดที่มี Major ที่อยู่ที่สามของ e คืออะไร?",
    "context": "CREATE TABLE table_name_69 (chord VARCHAR, major_third VARCHAR)"
  },
  {
    "answer": "SELECT chord FROM table_name_73 WHERE minor_seventh = \"f\"",
    "question_en": "What is the Chord with a Minor that is seventh of f?",
    "question_th": "คอร์ดที่มีไมเนอร์ที่อยู่ในอันดับที่ 7 ของ 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_en": "What is the Major third with a Perfect fifth that is d?",
    "question_th": "อะไรคือค่าตัวที่สามหลักที่มีค่าตัวที่ห้าสมบูรณ์แบบซึ่งก็คือ 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_en": "What is the Perfect fifth with a Minor that is seventh of d?",
    "question_th": "ค่าสมบูรณ์แบบที่ห้ากับค่าไมเนอร์ที่เจ็ดของ 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_en": "Where was the game, and how many attended the game on january 2?",
    "question_th": "เกมดังกล่าวจัดขึ้นที่ไหนและมีผู้เข้าร่วมเกมในวันที่ 2 มกราคมจำนวนกี่คน?",
    "context": "CREATE TABLE table_name_69 (location_attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_name_16 WHERE record = \"21–22\"",
    "question_en": "What is the Location and Attendance with a Record of 21–22?",
    "question_th": "สถานที่และผู้เข้าร่วมที่มีบันทึก 21–22 คืออะไร",
    "context": "CREATE TABLE table_name_16 (location_attendance VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_10 WHERE opponent = \"north carolina\"",
    "question_en": "What was the date of the game against North Carolina?",
    "question_th": "วันที่ของเกมกับนอร์ธแคโรไลนาคือวันที่เท่าไร?",
    "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_en": "How many FG percent values are associated with 59 assists and offensive rebounds under 40?",
    "question_th": "ค่าเปอร์เซ็นต์ FG ที่เกี่ยวข้องกับ 59 แอสซิสต์และการรีบาวด์ฝ่ายรุกที่ต่ำกว่า 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_en": "What is the total number of offensive rebounds for players with under 65 total rebounds, 5 defensive rebounds, and under 7 assists?",
    "question_th": "จำนวนการรีบาวด์ในเชิงรุกทั้งหมดสำหรับผู้เล่นที่มีการรีบาวด์รวมต่ำกว่า 65 ครั้ง, รีบาวด์การป้องกัน 5 ครั้ง และแอสซิสต์ต่ำกว่า 7 ครั้งเป็นเท่าใด",
    "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–2\"",
    "question_en": "Which Round has a Competition of uefa cup, and a Series of 5–2?",
    "question_th": "รอบใดมีการแข่งขันยูฟ่าคัพ และซีรีส์ 5–2?",
    "context": "CREATE TABLE table_name_34 (round VARCHAR, competition VARCHAR, series VARCHAR)"
  },
  {
    "answer": "SELECT series FROM table_name_96 WHERE home = \"2–0\" AND opponent = \"panathinaikos\"",
    "question_en": "Which Series has a Home of 2–0, and an Opponent of panathinaikos?",
    "question_th": "ซีรีส์ใดมีเจ้าบ้าน 2–0 และฝ่ายตรงข้ามของพานาธิไนกอส?",
    "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_en": "Which Home has a Competition of european cup, and a Round of qf?",
    "question_th": "ทีมเหย้าใดมีการแข่งขันถ้วยยุโรป และรอบ QF?",
    "context": "CREATE TABLE table_name_70 (home VARCHAR, competition VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_4 WHERE opponent = \"hibernians\"",
    "question_en": "Which Season has an Opponent of hibernians?",
    "question_th": "ฤดูกาลใดมีฝ่ายตรงข้ามของชาวฮิเบอร์เนียน?",
    "context": "CREATE TABLE table_name_4 (season VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_25 WHERE away = \"1–1\" AND home = \"3–3\"",
    "question_en": "Which Opponent has an Away of 1–1, and a Home of 3–3?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีแต้มเยือน 1–1 และเจ้าบ้านมีแต้ม 3–3",
    "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_en": "Which Home has a Round of r1, and an Opponent of dundee united?",
    "question_th": "เจ้าบ้านไหนมีรอบ r1 และฝ่ายตรงข้ามของดันดีรวมกัน?",
    "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_en": "What is the set 2 the has 1 set of 21-25, and 4 sets of 25-20?",
    "question_th": "ชุดที่ 2 คืออะไร มี 1 ชุด 21-25 และ 25-20 4 ชุด",
    "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_en": "What is Domenik Hixon's average rush?",
    "question_th": "ความเร็วเฉลี่ยของ Domenik Hixon คืออะไร?",
    "context": "CREATE TABLE table_name_76 (avg VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(viewers) FROM table_name_30 WHERE rank = \"#40\"",
    "question_en": "What is the total number of Viewers when the rank is #40?",
    "question_th": "จำนวนผู้ชมทั้งหมดเมื่ออันดับที่ 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_en": "What is the average Episode # with a share of 9, and #35 is rank and less than 8.21 viewers?",
    "question_th": "ตอนที่ # เฉลี่ยที่มีส่วนแบ่ง 9 คือเท่าใด และ #35 อยู่ในอันดับที่และมีผู้ชมน้อยกว่า 8.21 คน",
    "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_en": "What is the lowest Bronze with a Nation of egypt (egy) and with a Gold that is smaller than 2?",
    "question_th": "อะไรคือเหรียญทองแดงที่ต่ำที่สุดที่มีชาติอียิปต์ (egy) และมีทองคำที่เล็กกว่า 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_en": "What is the total number of Silver with a Total that is smaller than 1?",
    "question_th": "จำนวนเงินทั้งหมดที่มีคะแนนรวมน้อยกว่า 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_en": "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?",
    "question_th": "ผลรวมสูงสุดที่มีอันดับน้อยกว่า 4 และประเทศตูนิเซีย (tun) ที่มีทองคำน้อยกว่า 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_en": "What is the average Total with a Nation of ethiopia (eth) and a Rank that is larger than 9?",
    "question_th": "ผลรวมเฉลี่ยของประเทศเอธิโอเปีย (eth) และอันดับมากกว่า 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_en": "From which region is the album with release date of 19 June 2007?",
    "question_th": "อัลบั้มที่ออกวางจำหน่ายวันที่ 19 มิถุนายน พ.ศ. 2550 มาจากภูมิภาคใด",
    "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_en": "Which label released the catalog Magik Muzik CD 07 on 28 March 2007?",
    "question_th": "ค่ายเพลงใดที่เผยแพร่แคตตาล็อก Magik Muzik CD 07 เมื่อวันที่ 28 มีนาคม พ.ศ. 2550",
    "context": "CREATE TABLE table_name_86 (label VARCHAR, date VARCHAR, catalog VARCHAR)"
  },
  {
    "answer": "SELECT format FROM table_name_52 WHERE catalog = \"dp068-07\"",
    "question_en": "For the catalog title DP068-07, what formats are available?",
    "question_th": "สำหรับชื่อแค็ตตาล็อก DP068-07 มีรูปแบบใดบ้าง",
    "context": "CREATE TABLE table_name_52 (format VARCHAR, catalog VARCHAR)"
  },
  {
    "answer": "SELECT term_in_office FROM table_name_21 WHERE order = \"9\"",
    "question_en": "What is the Term in office with an Order that is 9?",
    "question_th": "วาระการดำรงตำแหน่งเมื่อมีคำสั่งที่ 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_en": "What competition has June 19, 2004 as the date?",
    "question_th": "การแข่งขันรายการใดมีวันที่ 19 มิถุนายน 2547?",
    "context": "CREATE TABLE table_name_5 (competition VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_51 WHERE date = \"january 21, 2002\"",
    "question_en": "What result has January 21, 2002 as the date?",
    "question_th": "วันที่ 21 มกราคม 2545 มีผลอะไร?",
    "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_en": "What date has alamodome, san antonio, united states as the venue?",
    "question_th": "เมืองอลาโมโดม ซานอันโตนิโอ สหรัฐอเมริกา เป็นสถานที่จัดงานวันไหน?",
    "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_en": "What date has 2006 fifa world cup qualification as the competition, and alamodome, san antonio, united States as the venue?",
    "question_th": "การแข่งขันฟุตบอลโลก 2006 รอบคัดเลือกเป็นวันที่ใด และมีเมืองอลาโมโดม ซานอันโตนิโอ ประเทศสหรัฐอเมริกา เป็นสถานที่จัดการแข่งขัน",
    "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_en": "What is the rank of the nation with more than 0 silver medals and 38 bronze medals?",
    "question_th": "อันดับประเทศที่ได้เหรียญเงินมากกว่า 0 เหรียญ และเหรียญทองแดง 38 เหรียญ อยู่อันดับไหน?",
    "context": "CREATE TABLE table_name_97 (rank VARCHAR, silver VARCHAR, bronze VARCHAR)"
  },
  {
    "answer": "SELECT sign FROM table_name_21 WHERE latin_motto = \"vita\"",
    "question_en": "Which astrological sign has the Latin motto of Vita?",
    "question_th": "ราศีใดมีคำขวัญภาษาละตินว่า Vita",
    "context": "CREATE TABLE table_name_21 (sign VARCHAR, latin_motto VARCHAR)"
  },
  {
    "answer": "SELECT translation FROM table_name_15 WHERE sign = \"aquarius\"",
    "question_en": "What is the translation of the sign of Aquarius?",
    "question_th": "สัญลักษณ์ของราศีกุมภ์แปลว่าอะไร?",
    "context": "CREATE TABLE table_name_15 (translation VARCHAR, sign VARCHAR)"
  },
  {
    "answer": "SELECT modern_title_of_house FROM table_name_46 WHERE translation = \"prison\"",
    "question_en": "Which modern house title translates to prison?",
    "question_th": "ชื่อบ้านสมัยใหม่ใดที่แปลว่าคุก?",
    "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_en": "What is the Latin motto of the sign that translates to spouse?",
    "question_th": "คำขวัญภาษาละตินของสัญลักษณ์ที่แปลว่าคู่สมรสคืออะไร?",
    "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_en": "What is the modern house title of the 1st house?",
    "question_th": "ชื่อบ้านสมัยใหม่ของบ้านหลังที่ 1 คืออะไร?",
    "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_en": "Which sign has a modern house title of House of Partnerships?",
    "question_th": "ป้ายใดมีชื่อบ้านสมัยใหม่ว่า 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_en": "What is the sum for the int yards that has an assts more than 3, and player Jay Alford?",
    "question_th": "ผลรวมของระยะอินท์หลาที่มีแอสสต์มากกว่า 3 และผู้เล่น เจย์ อัลฟอร์ด เป็นเท่าใด",
    "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_en": "What is the Time with a Score that is 80-34?",
    "question_th": "เวลาที่มีคะแนน 80-34 คืออะไร?",
    "context": "CREATE TABLE table_name_38 (time VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_29 WHERE home = \"hamilton wildcats\"",
    "question_en": "What is the Date with a Home that is hamilton wildcats?",
    "question_th": "วันที่กับบ้านที่เป็น Wildcats แฮมิลตันคืออะไร?",
    "context": "CREATE TABLE table_name_29 (date VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT ground FROM table_name_42 WHERE date = \"2008-06-20\"",
    "question_en": "What is the Ground with a Date that is 2008-06-20?",
    "question_th": "พื้นที่มีวันที่คือ 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_en": "What is the Away with a Ground that is humber college lakeshore?",
    "question_th": "Away with a Ground ที่เป็นชายฝั่งทะเลสาบของวิทยาลัยฮัมเบอร์คืออะไร?",
    "context": "CREATE TABLE table_name_88 (away VARCHAR, ground VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_7 WHERE ground = \"humber college north\"",
    "question_en": "What is the Time with a Ground that is humber college north?",
    "question_th": "Time with a Ground ที่อยู่ทางตอนเหนือของวิทยาลัยฮัมเบอร์คืออะไร?",
    "context": "CREATE TABLE table_name_7 (time VARCHAR, ground VARCHAR)"
  },
  {
    "answer": "SELECT away FROM table_name_9 WHERE ground = \"humber college north\"",
    "question_en": "What is the Away with a Ground that is humber college north?",
    "question_th": "Away with a Ground ที่เป็นวิทยาลัยฮัมเบอร์ทางตอนเหนือคืออะไร?",
    "context": "CREATE TABLE table_name_9 (away VARCHAR, ground VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_20 WHERE round__number = 290",
    "question_en": "What is the College with a Round # that is 290?",
    "question_th": "วิทยาลัยที่มีรอบ # คือ 290 คืออะไร?",
    "context": "CREATE TABLE table_name_20 (college VARCHAR, round__number VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_49 WHERE player = \"dean caliguire\"",
    "question_en": "What is the College with a Player that is dean caliguire?",
    "question_th": "วิทยาลัยที่มีผู้เล่นที่เป็นคณบดีคาลิกิวคืออะไร?",
    "context": "CREATE TABLE table_name_49 (college VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT first_leg FROM table_name_78 WHERE round = \"semi-final\"",
    "question_en": "What was the first leg of the semi-final?",
    "question_th": "เลกแรกของรอบรองชนะเลิศคืออะไร?",
    "context": "CREATE TABLE table_name_78 (first_leg VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT first_leg FROM table_name_66 WHERE opposition = \"real sociedad\"",
    "question_en": "What was the first leg score against Real Sociedad?",
    "question_th": "สกอร์นัดแรกกับเรอัล โซเซียดาดเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_66 (first_leg VARCHAR, opposition VARCHAR)"
  },
  {
    "answer": "SELECT first_leg FROM table_name_13 WHERE opposition = \"hibernian\"",
    "question_en": "What was the first leg against Hibernian?",
    "question_th": "นัดแรกเจอฮิเบอร์เนี่ยนเป็นไงบ้าง?",
    "context": "CREATE TABLE table_name_13 (first_leg VARCHAR, opposition VARCHAR)"
  },
  {
    "answer": "SELECT opposition FROM table_name_50 WHERE round = \"quarter-final\"",
    "question_en": "Who were the opposition in the quarter-final?",
    "question_th": "ใครคือฝ่ายค้านในรอบก่อนรองชนะเลิศ?",
    "context": "CREATE TABLE table_name_50 (opposition VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT MIN(assists) FROM table_name_53 WHERE rank = 2",
    "question_en": "What is the least number of assists among players ranked 2?",
    "question_th": "จำนวนแอสซิสต์น้อยที่สุดในหมู่ผู้เล่นอันดับ 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_en": "What is the lowest total when the rank is 14 and the gold medals is larger than 0?",
    "question_th": "ผลรวมต่ำสุดเมื่ออันดับ 14 และเหรียญทองมากกว่า 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_en": "What is the total number of medals when there are 18 gold medals?",
    "question_th": "มีจำนวนเหรียญทั้งหมดเท่าไรเมื่อมี 18 เหรียญทอง?",
    "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_en": "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?",
    "question_th": "จำนวนเหรียญทองแดงเมื่อรวมมากกว่า 1 ได้รับรางวัลมากกว่า 2 เหรียญเงิน และอันดับที่ 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_en": "What was the location of the game when the record was 12-4?",
    "question_th": "ตำแหน่งของเกมเมื่อสถิติอยู่ที่ 12-4 คืออะไร?",
    "context": "CREATE TABLE table_name_74 (location VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_86 WHERE record = \"2-1\"",
    "question_en": "What was the location of the game when the record was 2-1?",
    "question_th": "ตำแหน่งของเกมเมื่อสถิติเป็น 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_en": "What day was the game that had the Cavaliers as visiting team and the Knicks as the home team?",
    "question_th": "วันไหนคือเกมที่มี Cavaliers เป็นทีมเยือนและมี Knicks เป็นเจ้าบ้าน?",
    "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_en": "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?",
    "question_th": "ช่วงหลักเป็นฟุตจากปี 2009 หรือล่าสุดที่มีอันดับน้อยกว่า 94 และ 1,310 เมตรคือเท่าใด",
    "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_en": "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?",
    "question_th": "ช่วงฟุตหลักจากปีเปิดทำการในปี 1936 ในสหรัฐอเมริกาที่มีอันดับมากกว่า 47 และ 421 เมตรเป็นเท่าใด",
    "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_en": "What is the highest rank from the year greater than 2010 with 430 main span metres?",
    "question_th": "อะไรคืออันดับสูงสุดจากปีที่มากกว่าปี 2010 ด้วยระยะทางหลัก 430 เมตร?",
    "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_en": "What is the oldest year with a main span feet of 1,640 in South Korea?",
    "question_th": "ปีที่เก่าแก่ที่สุดที่มีช่วงฟุตหลัก 1,640 ในเกาหลีใต้คือปีใด?",
    "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–21–4\"",
    "question_en": "What was the score of the game when the record was 39–21–4?",
    "question_th": "คะแนนของเกมเมื่อบันทึกคือ 39–21–4 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_49 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_60 WHERE score = \"2–1\"",
    "question_en": "What was the date of the game with a score of 2–1?",
    "question_th": "แข่งกันวันที่เท่าไหร่ด้วยสกอร์ 2–1?",
    "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_en": "What is the earliest week that the Texans played at the Cleveland Browns Stadium?",
    "question_th": "สัปดาห์แรกสุดที่ Texans เล่นที่ 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_en": "When did the Texans play at LP Field?",
    "question_th": "ประมวลเล่นที่ 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_en": "Which quarterback had an Avg/G of 195.8?",
    "question_th": "ควอร์เตอร์แบ็กคนใดมีค่าเฉลี่ย/G เท่ากับ 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_en": "Which royal house corresponds to Polyxenos Epiphanes Soter?",
    "question_th": "ราชวงศ์ใดที่สอดคล้องกับ 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_en": "What is Mark, when Name is Dmytro Hlushchenko?",
    "question_th": "มาร์คคืออะไรเมื่อชื่อคือ 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_en": "What is Country, when Lane is 5, and when React is greater than 0.166?",
    "question_th": "Country คืออะไร เมื่อ Lane เป็น 5 และเมื่อ React มากกว่า 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_en": "What is the lowest Lane, when Country is France, and when React is less than 0.14100000000000001?",
    "question_th": "เลนต่ำสุดคือเมื่อประเทศคือฝรั่งเศส และเมื่อ React น้อยกว่า 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_en": "What is Heat, when Mark is 6.69?",
    "question_th": "ฮีตคืออะไร เมื่อมาร์ค 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_en": "What is the average number of points for a song ranked 2nd with a draw greater than 3?",
    "question_th": "จำนวนคะแนนเฉลี่ยสำหรับเพลงอันดับที่ 2 และเสมอมากกว่า 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_en": "What is the total number of draws for songs performed by Miranda with fewer than 48 points?",
    "question_th": "จำนวนการจับรางวัลเพลงที่มิแรนดาแสดงโดยมีคะแนนน้อยกว่า 48 คะแนนคือเท่าใด",
    "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_en": "What is the HDTV when the content shows a timeshift +1 di disney junior?",
    "question_th": "HDTV คืออะไรเมื่อเนื้อหาแสดงไทม์ชิฟท์ +1 ดิสนีย์จูเนียร์?",
    "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_en": "What is the Country when the language is italian english, and the television service is disney xd +1?",
    "question_th": "ประเทศอะไรเมื่อภาษาเป็นภาษาอังกฤษอิตาลีและบริการโทรทัศน์คือ 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_en": "What is the HDTV when the Package/Option is sky famiglia, and a Television service of boomerang +1?",
    "question_th": "HDTV คืออะไรเมื่อแพ็คเกจ/ตัวเลือกคือ sky famiglia และบริการโทรทัศน์ของ 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_en": "What shows as Content for the Television service of nickelodeon +1?",
    "question_th": "รายการอะไรที่แสดงเป็นเนื้อหาสำหรับบริการโทรทัศน์ของ 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_en": "What is the sum of Year 2007(s), when the Year 2005 is greater than 29,377?",
    "question_th": "ผลรวมของปี 2550 เมื่อปี 2548 มากกว่า 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_en": "On what day was the game that ended in a score of 97-38?",
    "question_th": "เกมที่จบด้วยสกอร์ 97-38 คือวันไหน?",
    "context": "CREATE TABLE table_name_17 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_53 WHERE time = \"14:00\"",
    "question_en": "Who was the home team of the game at the time of 14:00?",
    "question_th": "ทีมเจ้าบ้านในเกมเวลา 14.00 น. คือใคร?",
    "context": "CREATE TABLE table_name_53 (home VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_33 WHERE time = \"15:00\"",
    "question_en": "Who was the home team of the game at the time of 15:00?",
    "question_th": "ทีมเจ้าบ้านในเกมเวลา 15.00 น. คือใคร?",
    "context": "CREATE TABLE table_name_33 (home VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_1 WHERE score = \"97-38\"",
    "question_en": "On what day was the game that ended in a score of 97-38?",
    "question_th": "เกมที่จบด้วยสกอร์ 97-38 คือวันไหน?",
    "context": "CREATE TABLE table_name_1 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT away FROM table_name_57 WHERE time = \"15:00\"",
    "question_en": "Who was the away team of the game at the time 15:00?",
    "question_th": "ทีมเยือนของเกมเวลา 15.00 น. คือใคร?",
    "context": "CREATE TABLE table_name_57 (away VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT ground FROM table_name_5 WHERE away = \"toronto rebels\"",
    "question_en": "On what grounds did the away team of the Toronto Rebels play?",
    "question_th": "ทีมเยือนของ Toronto Rebels เล่นบนพื้นที่ใด?",
    "context": "CREATE TABLE table_name_5 (ground VARCHAR, away VARCHAR)"
  },
  {
    "answer": "SELECT capital FROM table_name_97 WHERE hangul_chosongul = \"경상남도\"",
    "question_en": "Which capital has a Hangul of 경상남도?",
    "question_th": "เมืองหลวงใดมีอักษรอังกูลเป็น 경상남도",
    "context": "CREATE TABLE table_name_97 (capital VARCHAR, hangul_chosongul VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_83 WHERE hanja = \"平安北道\"",
    "question_en": "Which country has a city with a Hanja of 平安北道?",
    "question_th": "ประเทศใดมีเมืองที่มีอักษรฮันจาเป็น 平安北道",
    "context": "CREATE TABLE table_name_83 (country VARCHAR, hanja VARCHAR)"
  },
  {
    "answer": "SELECT rr_romaja FROM table_name_85 WHERE hangul_chosongul = \"강원도\" AND capital = \"wonsan\"",
    "question_en": "What is the RR Romaja for the province that has Hangul of 강원도 and capital of Wonsan?",
    "question_th": "RR Romaja สำหรับจังหวัดที่มีอังกูลของ 강วอนโด และเมืองหลวงของวอนซานคืออะไร?",
    "context": "CREATE TABLE table_name_85 (rr_romaja VARCHAR, hangul_chosongul VARCHAR, capital VARCHAR)"
  },
  {
    "answer": "SELECT area FROM table_name_60 WHERE hangul_chosongul = \"경기도\"",
    "question_en": "What is the area for the province having Hangul of 경기도?",
    "question_th": "จังหวัดที่มีอังกูล 경기 มีพื้นที่ใดบ้าง?",
    "context": "CREATE TABLE table_name_60 (area VARCHAR, hangul_chosongul VARCHAR)"
  },
  {
    "answer": "SELECT m_r_romaja FROM table_name_34 WHERE capital = \"cheongju\"",
    "question_en": "What is the M-R Romaja for the province having a capital of Cheongju?",
    "question_th": "MR Romaja สำหรับจังหวัดที่มีเมืองหลวงของ 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_en": "What is the highest game that has 32 points and a team rank larger than 4 named montepaschi siena",
    "question_th": "เกมไหนสูงสุดที่มี 32 แต้ม และมีทีมอันดับมากกว่า 4 ชื่อ มอนเตปาสชิ เซียนา",
    "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_en": "What is the lowest Built, when Floors is greater than 23, and when Rank is 3?",
    "question_th": "อะไรคือสิ่งสร้างที่ต่ำที่สุด เมื่อชั้นมากกว่า 23 และเมื่ออันดับเป็น 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_en": "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)?",
    "question_th": "ความสูงคืออะไร เมื่ออันดับน้อยกว่า 20 เมื่อพื้นมากกว่า 9 เมื่อสร้างในปี 2005 และเมื่อใดคือ 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_en": "What is the lowest Floors, when Built is greater than 1970, and when Name is NV Building 3?",
    "question_th": "ชั้นต่ำสุดคือเท่าไร เมื่อสร้างมากกว่าปี 1970 และเมื่อใดคือ 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_en": "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?",
    "question_th": "จำนวนการสร้างทั้งหมดคือเท่าใด เมื่อชั้นน้อยกว่า 22 เมื่ออันดับน้อยกว่า 8 และเมื่อชื่อคือ 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_en": "What is the height of the player from Las Vegas, NV?",
    "question_th": "ผู้เล่นจาก 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_en": "What is the name of the guard from Cary, NC?",
    "question_th": "ยามจากแครี รัฐนอร์ทแคโรไลนาชื่ออะไร",
    "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_en": "In what year of school is the forward Iman McFarland?",
    "question_th": "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_en": "How tall is the freshman guard Cetera Degraffenreid?",
    "question_th": "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_en": "What position does the 5-8 player from Grottoes, VA play?",
    "question_th": "ผู้เล่น 5-8 คนจาก Grottoes, VA เล่นตำแหน่งอะไร?",
    "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_en": "In what year of school is the player from Fayetteville, NC?",
    "question_th": "นักเตะจากเมืองเฟย์เอตต์วิลล์ รัฐนอร์ทแคโรไลนา อยู่ชั้นปีไหน?",
    "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–90 (ot)\"",
    "question_en": "What is the Team with a game of more than 56, and the score is l 85–90 (ot)?",
    "question_th": "ทีมที่มีเกมมากกว่า 56 เกมคืออะไรและคะแนนคือ l 85–90 (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_en": "What is the Record when the high rebounds was Antonio Davis (9)?",
    "question_th": "อะไรคือสถิติเมื่ออันโตนิโอ เดวิส (9) รีบาวด์สูง?",
    "context": "CREATE TABLE table_name_5 (record VARCHAR, high_rebounds VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_33 WHERE opponent = \"marek dupnitsa\"",
    "question_en": "What is the home score with marek dupnitsa as opponent?",
    "question_th": "สกอร์เจ้าบ้านที่มี มาเร็ก ดุปนิตสา เป็นคู่ต่อสู้เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_33 (home VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_60 WHERE catalog = \"b0011141-01\"",
    "question_en": "What is the Label of the B0011141-01 Catalog?",
    "question_th": "ฉลากของแคตตาล็อก B0011141-01 คืออะไร",
    "context": "CREATE TABLE table_name_60 (label VARCHAR, catalog VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_42 WHERE catalog = \"uici-1069\"",
    "question_en": "What is the Label of the UICI-1069 Catalog?",
    "question_th": "ฉลากของแคตตาล็อก UICI-1069 คืออะไร",
    "context": "CREATE TABLE table_name_42 (label VARCHAR, catalog VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_name_71 WHERE catalog = \"1766390\"",
    "question_en": "What is the Region of the 1766390 Catalog?",
    "question_th": "ภูมิภาคของแค็ตตาล็อก 1766390 คืออะไร",
    "context": "CREATE TABLE table_name_71 (region VARCHAR, catalog VARCHAR)"
  },
  {
    "answer": "SELECT school_club_team FROM table_name_27 WHERE player = \"dominique wilkins\"",
    "question_en": "What School/Club did Dominique Wilkins play for?",
    "question_th": "Dominique Wilkins เล่นให้กับโรงเรียน/สโมสรใด",
    "context": "CREATE TABLE table_name_27 (school_club_team VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_7 WHERE score = \"4–6, 6–4, 6–3, 7–6 (7–2)\"",
    "question_en": "What is the outcome of the 4–6, 6–4, 6–3, 7–6 (7–2) score?",
    "question_th": "ผลลัพธ์ของคะแนน 4–6, 6–4, 6–3, 7–6 (7–2) คืออะไร?",
    "context": "CREATE TABLE table_name_7 (outcome VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_89 WHERE opponent = \"roger federer\"",
    "question_en": "What is the outcome of the match with Roger Federer as the opponent?",
    "question_th": "ผลการแข่งขันที่มี โรเจอร์ เฟเดอเรอร์ เป็นคู่ต่อสู้เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_89 (outcome VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_84 WHERE championship = \"australian open (1)\"",
    "question_en": "What surface was the Australian Open (1) played on?",
    "question_th": "Australian Open (1) เล่นบนพื้นผิวใด",
    "context": "CREATE TABLE table_name_84 (surface VARCHAR, championship VARCHAR)"
  },
  {
    "answer": "SELECT MAX(rank) FROM table_name_92 WHERE matches = 362",
    "question_en": "What is the Rank of the player with 362 Matches?",
    "question_th": "อันดับของผู้เล่นที่มี 362 นัดคืออะไร?",
    "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_en": "What is the Rank of the player with 158 Goals in more than 362 Matches?",
    "question_th": "อันดับของผู้เล่นที่ยิงได้ 158 ประตูจากการลงสนามมากกว่า 362 นัดคือเท่าไร?",
    "context": "CREATE TABLE table_name_85 (rank VARCHAR, goals VARCHAR, matches VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(drawn) FROM table_name_9 WHERE played > 12",
    "question_en": "What is the sum of drawn that has a played more than 12?",
    "question_th": "ผลรวมของการจับฉลากที่เล่นมากกว่า 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_en": "What difference has a points greater than 10, and a drawn less than 2?",
    "question_th": "อะไรคือความแตกต่างที่มีคะแนนมากกว่า 10 และเสมอน้อยกว่า 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_en": "What is the Result of the game with 72,949 in attendance?",
    "question_th": "ผลลัพธ์ของเกมที่มีผู้เข้าร่วม 72,949 คนเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_41 (result VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_39 WHERE week < 16 AND date = \"bye\"",
    "question_en": "What is the Attendance for a Week earlier than 16, and a Date of bye?",
    "question_th": "จำนวนผู้เข้าร่วมในสัปดาห์ก่อนวันที่ 16 และวันที่ลาคือเท่าไร?",
    "context": "CREATE TABLE table_name_39 (attendance VARCHAR, week VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_70 WHERE opponent = \"indianapolis colts\"",
    "question_en": "What is the Result of the game against the Indianapolis Colts?",
    "question_th": "ผลการแข่งขันกับ 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_en": "Which song has more than 66 points, a draw greater than 3, and is ranked 3rd?",
    "question_th": "เพลงไหนได้เกิน 66 แต้ม เสมอมากกว่า 3 และอยู่อันดับที่ 3?",
    "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_en": "What is the lowest points when the ranking is 1st?",
    "question_th": "คะแนนต่ำสุดเมื่ออันดับที่ 1 คืออะไร?",
    "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_en": "What is the average number of points when the ranking is 7th and the draw is less than 4?",
    "question_th": "อันดับที่ 7 และเสมอน้อยกว่า 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_en": "What is the total number of points of the honda hr-1 engine?",
    "question_th": "เครื่องยนต์ honda hr-1 มีคะแนนรวมเท่าไหร่?",
    "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_en": "What is the rank of the reynard 2ki chassis before 2002?",
    "question_th": "แชสซีของ reynard 2ki ก่อนปี 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_en": "Who was the home team on April 13, 2008 when Itabuna was the away team?",
    "question_th": "ใครคือเจ้าบ้านเมื่อวันที่ 13 เมษายน พ.ศ. 2551 เมื่ออิตาบูนาเป็นทีมเยือน?",
    "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ória da conquista\"",
    "question_en": "What is the name of the home team with a round of 2nd and Vitória da Conquista as the way team?",
    "question_th": "เจ้าบ้านรอบ 2 ทีมเจ้าบ้านชื่ออะไร และมีวิตอเรีย ดา กงกิสต้าเป็นทีมเวย์?",
    "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_en": "What is the name of the home team on April 13, 2008 when Itabuna was the away team?",
    "question_th": "เจ้าบ้านชื่ออะไร เมื่อวันที่ 13 เมษายน พ.ศ. 2551 เมื่ออิตาบูนาเป็นทีมเยือน?",
    "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_en": "What home team has a score of 5 - 5?",
    "question_th": "ทีมเจ้าบ้านใดมีสกอร์ 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_en": "On which date was the score 0 - 0?",
    "question_th": "สกอร์ 0 - 0 ตรงกับวันไหน?",
    "context": "CREATE TABLE table_name_54 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_89 WHERE away_team = \"vitória\"",
    "question_en": "Who played as the home team when Vitória was the away team?",
    "question_th": "ใครเคยเล่นเป็นเจ้าบ้านเมื่อวิตอเรียเป็นทีมเยือน?",
    "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_en": "What grid is the lowest when the time/retired is + 5 laps and the laps is less than 161?",
    "question_th": "ตารางใดจะต่ำที่สุดเมื่อเวลา/เกษียณคือ + 5 รอบ และรอบน้อยกว่า 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_en": "What is the biggest points when the grid is less than 13 and the time/retired is +7.538 secs?",
    "question_th": "อะไรคือจุดที่ใหญ่ที่สุดเมื่อกริดน้อยกว่า 13 และเวลา/เกษียณคือ +7.538 วินาที?",
    "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_en": "Driver Ricardo Sperafico has what as his average laps?",
    "question_th": "นักแข่ง Ricardo Sperafico มีรอบเฉลี่ยเท่าไร?",
    "context": "CREATE TABLE table_name_96 (laps INTEGER, driver VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_35 WHERE points = 6",
    "question_en": "What is the name of the driver with 6 points?",
    "question_th": "ผู้ขับขี่ที่มี 6 คะแนนชื่ออะไร?",
    "context": "CREATE TABLE table_name_35 (driver VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT AVG(points) FROM table_name_54 WHERE driver = \"ryan hunter-reay\"",
    "question_en": "What is the average points that the driver Ryan Hunter-Reay has?",
    "question_th": "คะแนนเฉลี่ยที่นักแข่ง Ryan Hunter-Reay มีคือเท่าไร?",
    "context": "CREATE TABLE table_name_54 (points INTEGER, driver VARCHAR)"
  },
  {
    "answer": "SELECT 2006 FROM table_name_64 WHERE 2013 = \"2–4\"",
    "question_en": "What shows for 2006, when 2013 is 2–4?",
    "question_th": "อะไรแสดงให้เห็นในปี 2549 เมื่อปี 2556 เป็น 2–4",
    "context": "CREATE TABLE table_name_64 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2013 FROM table_name_29 WHERE 2012 = \"2r\" AND 2009 = \"2r\"",
    "question_en": "What shows for 2013 when the 2012 is 2r, and a 2009 is 2r?",
    "question_th": "อะไรแสดงให้เห็นในปี 2013 เมื่อปี 2012 คือ 2r และปี 2009 คือ 2r",
    "context": "CREATE TABLE table_name_29 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2006 FROM table_name_89 WHERE 2013 = \"1r\" AND 2012 = \"1r\"",
    "question_en": "What is the 2006 when the 2013 is 1r, and the 2012 is 1r?",
    "question_th": "2006 คืออะไรเมื่อ 2013 คือ 1r และ 2012 คือ 1r",
    "context": "CREATE TABLE table_name_89 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2006 FROM table_name_91 WHERE 2013 = \"2r\" AND tournament = \"us open\"",
    "question_en": "What is the 2006 when the 2013 is 2r, and a Tournament was the us open?",
    "question_th": "ปี 2549 คืออะไรเมื่อปี 2556 อยู่ที่ 2r และทัวร์นาเมนต์ได้เปิดขึ้นแล้ว?",
    "context": "CREATE TABLE table_name_91 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_26 WHERE 2013 = \"2r\" AND 2006 = \"1r\"",
    "question_en": "What is the Tournament when the 2013 is 2r, and a 2006 is 1r?",
    "question_th": "การแข่งขันจะเป็นอย่างไรเมื่อปี 2013 คือ 2r และปี 2006 คือ 1r",
    "context": "CREATE TABLE table_name_26 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_54 WHERE 2013 = \"1r\"",
    "question_en": "What is the Tournament when the 2013 is 1r?",
    "question_th": "การแข่งขันคืออะไรเมื่อ 2013 อยู่ที่ 1r?",
    "context": "CREATE TABLE table_name_54 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2008 FROM table_name_30 WHERE 2007 = \"f\"",
    "question_en": "When in 2008 that has a 2007 of f?",
    "question_th": "เมื่อในปี 2008 มี f ปี 2007?",
    "context": "CREATE TABLE table_name_30 (Id VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_3 WHERE 2007 = \"19–4\"",
    "question_en": "Which Tournament has a 2007 of 19–4?",
    "question_th": "ทัวร์นาเมนต์ใดที่มีปี 2550 จาก 19–4?",
    "context": "CREATE TABLE table_name_3 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2005 FROM table_name_59 WHERE win__percentage = \"82.61\"",
    "question_en": "WHat in 2005 has a Win % of 82.61?",
    "question_th": "อะไรในปี 2548 มี Win % ที่ 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_en": "What in 2007 has a 2008 of sf, and a 2010 of f?",
    "question_th": "อะไรในปี 2550 มี 2551 เป็น sf และ 2553 เป็น f?",
    "context": "CREATE TABLE table_name_95 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2013 FROM table_name_29 WHERE 2009 = \"3r\"",
    "question_en": "What in 2013 has a 2009 of 3r?",
    "question_th": "อะไรในปี 2013 มี 2009 เป็น 3r?",
    "context": "CREATE TABLE table_name_29 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2007 FROM table_name_92 WHERE 2010 = \"qf\" AND 2012 = \"w\"",
    "question_en": "What in 2007 has a 2010 of qf, and a 2012 of w?",
    "question_th": "อะไรในปี 2550 มี qf ปี 2010 และปี 2012 เป็น w?",
    "context": "CREATE TABLE table_name_92 (Id VARCHAR)"
  },
  {
    "answer": "SELECT team_2 FROM table_name_4 WHERE team_1 = \"al qadsia\"",
    "question_en": "What is the name of Team 2 with a Team 1 of Al Qadsia?",
    "question_th": "ทีม 2 กับทีม 1 ของ 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_en": "What is the 1st leg of the Al Fahaheel Team 1?",
    "question_th": "เลกแรกของทีม Al Fahaheel 1 คืออะไร?",
    "context": "CREATE TABLE table_name_11 (team_1 VARCHAR)"
  },
  {
    "answer": "SELECT ground FROM table_name_7 WHERE away = \"central blues\"",
    "question_en": "What is the Ground with an Away that is central blues?",
    "question_th": "อะไรคือ Ground with an Away ที่เป็นเซ็นทรัลบลูส์?",
    "context": "CREATE TABLE table_name_7 (ground VARCHAR, away VARCHAR)"
  },
  {
    "answer": "SELECT away FROM table_name_28 WHERE time = \"14:00\"",
    "question_en": "What is the Away with a Time that is 14:00?",
    "question_th": "เยือนกับเวลา 14:00 คืออะไร?",
    "context": "CREATE TABLE table_name_28 (away VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_6 WHERE time = \"18:45\"",
    "question_en": "What is the Date with a Time that is 18:45?",
    "question_th": "วันที่และเวลาคือ 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_en": "What is the Score with a Date that is 2008-06-28?",
    "question_th": "คะแนนพร้อมวันที่ 28-06-2008 คืออะไร",
    "context": "CREATE TABLE table_name_35 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_5 WHERE club = \"omonia nicosia\"",
    "question_en": "Which player was in the Omonia Nicosia club?",
    "question_th": "ผู้เล่นคนไหนในสโมสรโอโมเนีย นิโคเซีย?",
    "context": "CREATE TABLE table_name_5 (player VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT league FROM table_name_20 WHERE nationality = \"italy\" AND points = \"62\"",
    "question_en": "Which league's nationality was Italy when there were 62 points?",
    "question_th": "อิตาลีเป็นลีกสัญชาติไหนตอนมี 62 แต้ม?",
    "context": "CREATE TABLE table_name_20 (league VARCHAR, nationality VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT lost FROM table_name_86 WHERE tries_for = \"47\"",
    "question_en": "What is the value for the item \"Lost\" when the value \"Tries\" is 47?",
    "question_th": "มูลค่าของสินค้า \"สูญหาย\" เมื่อค่า \"พยายาม\" เท่ากับ 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_en": "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?",
    "question_th": "มูลค่าของไอเท็ม \"ลอง\" คืออะไร เมื่อมูลค่าของไอเท็ม \"เล่นแล้ว\" คือ 18 และมูลค่าของไอเท็ม \"แต้ม\" คือ 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_en": "What is the value of the item \"Points\" when the value of the item \"Points against\" is 272?",
    "question_th": "มูลค่าของรายการ \"คะแนน\" เป็นเท่าใด เมื่อมูลค่าของรายการ \"คะแนนต่อ\" คือ 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_en": "Which Height (cm) has a Birthplace of bloomfield hills, michigan?",
    "question_th": "ความสูง (ซม.) ใดมีสถานที่เกิดของ Bloomfield Hills, มิชิแกน",
    "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_en": "Which Height (cm) has a Birthplace of new canaan, connecticut?",
    "question_th": "ส่วนสูง (ซม.) ใดมีบ้านเกิดของนิวคานาอัน คอนเนตทิคัต",
    "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_en": "Which Class has a Number at Lincoln smaller than 1 and a Wheel Arrangement of 0-6-0?",
    "question_th": "คลาสใดมีตัวเลขที่ลินคอล์นเล็กกว่า 1 และการจัดล้อเป็น 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_en": "Which Class has a Number at Lincoln larger than 0 and a Number at Doncaster of 8?",
    "question_th": "ชั้นเรียนใดมีตัวเลขที่ Lincoln มากกว่า 0 และตัวเลขที่ Doncaster เป็น 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_en": "What was the loss for Boris Picano-Nacci?",
    "question_th": "การสูญเสียของ 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_en": "Which Score has smaller than 1994, and a Partner of elizabeth sayers smylie?",
    "question_th": "คะแนนใดที่มีขนาดเล็กกว่าปี 1994 และพันธมิตรของ 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–4, 6–2\"",
    "question_en": "Who was the Partner that was a winner, a Year smaller than 1993, and a Score of 6–4, 6–2?",
    "question_th": "ใครคือหุ้นส่วนที่เป็นผู้ชนะ หนึ่งปีน้อยกว่าปี 1993 และคะแนน 6–4, 6–2?",
    "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_en": "What tournament had a victory of a 1 stroke margin and the final winning score 69-75-71-70?",
    "question_th": "ทัวร์นาเมนต์ใดมีชัยชนะ 1 สโตรก และคะแนนสุดท้ายชนะ 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–may 18, 2008\"",
    "question_en": "Which Loera has a Source of surveyusa, and a Date of may 16–may 18, 2008?",
    "question_th": "Loera ใดมีแหล่งที่มาของ Surveyusa และวันที่ 16 พฤษภาคม - 18 พฤษภาคม 2551",
    "context": "CREATE TABLE table_name_47 (loera VARCHAR, source VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT goberman FROM table_name_63 WHERE date = \"april 28–april 30, 2008\"",
    "question_en": "Which Goberman has a Date of april 28–april 30, 2008?",
    "question_th": "Goberman คนใดมีวันที่ 28 เมษายน - 30 เมษายน 2551",
    "context": "CREATE TABLE table_name_63 (goberman VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT neville FROM table_name_62 WHERE novick = \"23%\"",
    "question_en": "Which Neville has a Novick of 23%?",
    "question_th": "เนวิลล์คนไหนมีโนวิค 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_en": "Which Goberman has an Obrist of 2%, and a Merkley of 34%?",
    "question_th": "Goberman ใดมี Obrist 2% และ Merkley 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_en": "Which Novick has a Source of surveyusa, and a Neville of 8%?",
    "question_th": "Novick คนไหนมีแหล่งที่มาของ Surveyusa และ Neville 8%?",
    "context": "CREATE TABLE table_name_59 (novick VARCHAR, source VARCHAR, neville VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_48 WHERE novick = \"26%\"",
    "question_en": "Which Date has a Novick of 26%?",
    "question_th": "วันไหนมี Novick 26%?",
    "context": "CREATE TABLE table_name_48 (date VARCHAR, novick VARCHAR)"
  },
  {
    "answer": "SELECT coach FROM table_name_72 WHERE big_ten = \"2nd (79)\"",
    "question_en": "What is the Coach with a Big Ten that is 2nd (79)?",
    "question_th": "โค้ชที่มีสิบใหญ่ที่อันดับ 2 (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_en": "What is the Season with a Big Ten that is 2nd (386)?",
    "question_th": "ฤดูกาลที่มีสิบใหญ่ที่ 2 (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_en": "What is the Coach with a Big Ten that is 3rd (278)?",
    "question_th": "โค้ชที่มี Big Ten ที่ 3 (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_en": "What is the Coach with a Big Ten that is 1st (148)?",
    "question_th": "โค้ชที่มี Big Ten ที่ 1 (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_en": "What is the total of First Season games with 1537 Wins and a Season greater than 109?",
    "question_th": "เกมฤดูกาลแรกทั้งหมดที่ชนะ 1,537 ครั้งและฤดูกาลมากกว่า 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_en": "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?",
    "question_th": "มีชัยชนะกี่ครั้งสำหรับ Washington State College โดยแพ้มากกว่า 980 และฤดูกาลแรกก่อนปี 1906 และอยู่ในอันดับที่มากกว่า 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_en": "What is the total number of rank with losses less than 992, North Carolina State College and a season greater than 101?",
    "question_th": "จำนวนอันดับรวมที่แพ้น้อยกว่า 992, North Carolina State College และฤดูกาลที่มากกว่า 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_en": "What is the total number of bronzes associated with 1 silver, ranks under 6 and under 6 golds?",
    "question_th": "จำนวนเหรียญทองแดงทั้งหมดที่เกี่ยวข้องกับ 1 เหรียญเงิน อันดับที่ต่ำกว่า 6 และต่ำกว่า 6 เหรียญทองคือเท่าใด",
    "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_en": "What is the highest number of bronzes for teams ranked number 7 with more than 0 silver?",
    "question_th": "จำนวนเหรียญทองแดงสูงสุดสำหรับทีมอันดับ 7 ที่มีเงินมากกว่า 0 คืออะไร?",
    "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_en": "What is the average total for teams with more than 1 gold, ranked over 3 and more than 3 bronze?",
    "question_th": "ผลรวมโดยเฉลี่ยสำหรับทีมที่มีมากกว่า 1 เหรียญทอง อันดับที่มากกว่า 3 และมากกว่า 3 เหรียญทองแดง เป็นเท่าใด",
    "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_en": "What is the sum of bronzes for teams with more than 2 gold, ranked under 3, and less than 22 silver?",
    "question_th": "ผลรวมของเหรียญทองแดงสำหรับทีมที่มีมากกว่า 2 เหรียญทอง อันดับที่ต่ำกว่า 3 และน้อยกว่า 22 เหรียญเงินเป็นเท่าใด",
    "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_en": "What is the sum of silvers for teams with ranks over 3 and totals under 2?",
    "question_th": "ผลรวมของเงินสำหรับทีมที่มีอันดับมากกว่า 3 และผลรวมต่ำกว่า 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_en": "What is the number of Games for the Maccabi Tel Aviv Team with less than 208 Rebounds?",
    "question_th": "จำนวนเกมของทีม Maccabi Tel Aviv ที่น้อยกว่า 208 รีบาวด์คือเท่าไร?",
    "context": "CREATE TABLE table_name_47 (games INTEGER, team VARCHAR, rebounds VARCHAR)"
  },
  {
    "answer": "SELECT SUM(rebounds) FROM table_name_6 WHERE name = \"novica veličković\" AND games < 22",
    "question_en": "How many Rebounds did Novica Veličković get in less than 22 Games?",
    "question_th": "Novica Veličković ทำได้กี่ครั้งในเกมที่น้อยกว่า 22 เกม?",
    "context": "CREATE TABLE table_name_6 (rebounds INTEGER, name VARCHAR, games VARCHAR)"
  },
  {
    "answer": "SELECT games FROM table_name_57 WHERE name = \"terence morris\"",
    "question_en": "How many Games for Terence Morris?",
    "question_th": "มีกี่เกมสำหรับ 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ć\" AND rank > 4",
    "question_en": "What is the number of Games for Partizan Belgrade player Nikola Peković with a Rank of more than 4?",
    "question_th": "จำนวนเกมของผู้เล่นปาร์ติซาน เบลเกรด นิโคลา เปโควิช ที่มีอันดับมากกว่า 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_en": "Which year's rank was #4 when the country was the US?",
    "question_th": "อันดับที่ 4 ของปีไหนคือประเทศสหรัฐอเมริกา?",
    "context": "CREATE TABLE table_name_55 (year VARCHAR, rank VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT publication FROM table_name_75 WHERE country = \"uk\"",
    "question_en": "Which publication happened in the UK?",
    "question_th": "สิ่งพิมพ์ใดที่เกิดขึ้นในสหราชอาณาจักร",
    "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_en": "Which rank's country is the US when the accolade is 40 best albums of the year?",
    "question_th": "สหรัฐอเมริกาอยู่อันดับไหนเมื่อได้รับรางวัล 40 อัลบั้มยอดเยี่ยมแห่งปี?",
    "context": "CREATE TABLE table_name_96 (rank VARCHAR, country VARCHAR, accolade VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_32 WHERE name = \"hms cheshire\"",
    "question_en": "What is the nationality of the HMS Cheshire?",
    "question_th": "สัญชาติของ 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_en": "What was the final score with Guillermo Vilas as the opponent in the final, that happened after 1972?",
    "question_th": "อะไรคือคะแนนสุดท้ายของกิเยร์โม่ วิลาสในฐานะคู่ต่อสู้ในรอบชิงชนะเลิศ ที่เกิดขึ้นหลังปี 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_en": "Which points has the driver Paul Tracy?",
    "question_th": "คนขับ 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_en": "What grid has 78 laps, and Ronnie Bremer as driver?",
    "question_th": "ตารางใดมี 78 รอบ และ Ronnie Bremer เป็นนักแข่ง?",
    "context": "CREATE TABLE table_name_54 (grid VARCHAR, laps VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT MAX(laps) FROM table_name_21 WHERE grid = 10",
    "question_en": "Who scored with a grid of 10 and the highest amount of laps?",
    "question_th": "ใครทำคะแนนด้วยตาราง 10 และจำนวนรอบสูงสุด?",
    "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_en": "Who was Fourth in the 2008 Telstra Men's Pro Event?",
    "question_th": "ใครคือคนที่สี่ในการแข่งขัน Telstra Men's Pro ประจำปี 2008",
    "context": "CREATE TABLE table_name_93 (fourth VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_26 WHERE fourth = \"selby riddle\"",
    "question_en": "Who was the Winner when Selby Riddle came in Fourth?",
    "question_th": "ใครคือผู้ชนะเมื่อเซลบี ริดเดิ้ลเข้ามาเป็นอันดับสี่",
    "context": "CREATE TABLE table_name_26 (winner VARCHAR, fourth VARCHAR)"
  },
  {
    "answer": "SELECT second FROM table_name_31 WHERE fourth = \"isabelle brayley\"",
    "question_en": "Who was in Second Place with Isabelle Brayley came in Fourth?",
    "question_th": "ใครอยู่อันดับสอง โดยมีอิซาเบล เบรย์ลีย์มาในอันดับสี่",
    "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_en": "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?",
    "question_th": "อะไรคือค่าเฉลี่ยของการนำน้ำจืดออกทั้งหมด (กิโลเมตร 3 /ปี) เมื่อการใช้ในอุตสาหกรรม (ลูกบาศก์เมตร /p/ปี)(ใน %) คือ 337(63%) และเมื่อการถอนออกต่อหัว (ลูกบาศก์เมตร /p/ปี) คือเท่าใด มากกว่า 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_en": "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?",
    "question_th": "คือเท่าใด การถอนออกต่อหัวสูงสุด (m 3 /p/ปี) เมื่อการใช้ประโยชน์ทางการเกษตร (m 3 /p/ปี)(ใน %) คือ 1363(92%) และเมื่อการถอนน้ำจืดรวม (กิโลเมตร 3 /ปี) คือเท่าใด น้อยกว่า 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_en": "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%)?",
    "question_th": "การใช้ประโยชน์ทางการเกษตรคืออะไร (m 3 /p/yr)(เป็น %) เมื่อการถอนต่อหัว (m 3 /p/ปี) มากกว่า 923 และเมื่อการใช้ภายในประเทศ (m 3 /p/ปี)(ใน %) คือ 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_en": "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%)?",
    "question_th": "การใช้ในอุตสาหกรรมคืออะไร (ลูกบาศก์เมตร /p/ปี)(ใน %) เมื่อปริมาณน้ำจืดที่ดึงออกมาทั้งหมด (กิโลเมตร 3/ปี) น้อยกว่า 82.75 และเมื่อการใช้งานทางการเกษตร (m 3 /p/ปี)(ใน %) คือ 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_en": "Who was the leading score in the game at the Warriors?",
    "question_th": "ใครคือผู้ทำคะแนนนำในเกมที่ 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_en": "How many average cuts made when 11 is the Top-10?",
    "question_th": "มีการตัดค่าเฉลี่ยกี่ครั้งเมื่อ 11 อยู่ใน 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_en": "When the wins are less than 0 and the Top-5 1 what is the average cuts?",
    "question_th": "เมื่อชนะน้อยกว่า 0 และ 5 อันดับแรก 1 ค่าเฉลี่ยตัดเป็นเท่าใด?",
    "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_en": "What is the average Top-10 with a greater than 11 Top-25 and a less than 2 wins?",
    "question_th": "อะไรคือค่าเฉลี่ยของ 10 อันดับแรกที่มีมากกว่า 11 อันดับแรกและชนะน้อยกว่า 2 ครั้ง?",
    "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_en": "What is the total of wins when the cuts made is 76 and the events greater than 115?",
    "question_th": "จำนวนชัยชนะทั้งหมดเมื่อตัดเป็น 76 และเหตุการณ์มากกว่า 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_en": "What are the largest cuts made when the events are less than 21?",
    "question_th": "อะไรคือการปรับลดครั้งใหญ่ที่สุดเมื่อเหตุการณ์น้อยกว่า 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_en": "What is the lowest Top-25 that has 3 Events and Wins greater than 0?",
    "question_th": "อะไรคือ 25 อันดับแรกที่ต่ำที่สุดที่มี 3 เหตุการณ์และชัยชนะที่มากกว่า 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_en": "What is the Wins of the Top-25 of 1 and 7 Events?",
    "question_th": "ชัยชนะของกิจกรรม 25 อันดับแรกจาก 1 และ 7 รายการคืออะไร?",
    "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_en": "What is the lowest Top-25 with Wins less than 0?",
    "question_th": "25 อันดับต่ำสุดที่ชนะน้อยกว่า 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_en": "What is the total number of cuts made of tournaments with 2 Events?",
    "question_th": "จำนวนการตัดทัวร์นาเมนต์ที่มี 2 รายการทั้งหมดเป็นจำนวนเท่าใด?",
    "context": "CREATE TABLE table_name_81 (cuts_made VARCHAR, events VARCHAR)"
  },
  {
    "answer": "SELECT bleeding_time FROM table_name_75 WHERE condition = \"congenital afibrinogenemia\"",
    "question_en": "Which Bleeding has a Condition of congenital afibrinogenemia?",
    "question_th": "เลือดออกในข้อใดมีภาวะภาวะอะไฟบริโนเจเนเมียแต่กำเนิด?",
    "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_en": "which Partial thromboplastin time has a Condition of liver failure , early?",
    "question_th": "thromboplastin time ใดที่ทำให้เกิดภาวะตับวายได้ตั้งแต่เนิ่นๆ?",
    "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_en": "Which Condition has an unaffected Partial thromboplastin time, Platelet count, and a Prothrombin time?",
    "question_th": "สภาวะใดมีเวลา thromboplastin บางส่วน จำนวนเกล็ดเลือด และเวลา Prothrombin ที่ไม่ได้รับผลกระทบ",
    "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_en": "Which Condition has an unaffected Prothrombin time and a Bleeding time, and a Partial thromboplastin time of prolonged?",
    "question_th": "สภาวะใดมีเวลาของ Prothrombin และเวลาเลือดออกที่ไม่ได้รับผลกระทบ และเวลา thromboplastin บางส่วนเป็นเวลานาน",
    "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_en": "What margin was in after 1981, and was Roberto De Vicenzo runner-up?",
    "question_th": "หลังจากปี 1981 มีระยะขอบเท่าใด และ Roberto De Vicenzo รองแชมป์หรือไม่?",
    "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_en": "What championship was in 1985?",
    "question_th": "แชมป์อะไรในปี 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_en": "What is the number of bronze medals when the total medals were 78 and there were less than 12 golds?",
    "question_th": "เหรียญทองแดงเมื่อรวมได้ 78 เหรียญแต่มีไม่ถึง 12 เหรียญทองเป็นจำนวนเท่าไร?",
    "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_en": "What is the average number of gold medals when the total was 1335 medals, with more than 469 bronzes and more than 14 silvers?",
    "question_th": "เหรียญทองเฉลี่ยเมื่อรวมทั้งหมด 1,335 เหรียญ มีมากกว่า 469 เหรียญทองแดง และมากกว่า 14 เหรียญเงิน?",
    "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_en": "What is the total amount of gold medals when there were more than 20 silvers and there were 135 bronze medals?",
    "question_th": "เหรียญทองเมื่อมีมากกว่า 20 เหรียญเงินและมี 135 เหรียญทองแดงเป็นเท่าใด",
    "context": "CREATE TABLE table_name_22 (gold VARCHAR, silver VARCHAR, bronze VARCHAR)"
  },
  {
    "answer": "SELECT AVG(bronze) FROM table_name_85 WHERE nation = \"total\"",
    "question_en": "What is the average number of bronze medals for total of all nations?",
    "question_th": "จำนวนเหรียญทองแดงโดยเฉลี่ยของทุกชาติคือเท่าใด",
    "context": "CREATE TABLE table_name_85 (bronze INTEGER, nation VARCHAR)"
  },
  {
    "answer": "SELECT SUM(gold) FROM table_name_95 WHERE rank = \"14\"",
    "question_en": "What is the sum of gold medals for a rank of 14?",
    "question_th": "ผลรวมของเหรียญทองสำหรับอันดับที่ 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_en": "Which rank has 1 silver medal and more than 1 gold medal?",
    "question_th": "อันดับไหนมี 1 เหรียญเงิน และมากกว่า 1 เหรียญทอง?",
    "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_en": "What is the Clubs when there are 4 for the number of fixtures?",
    "question_th": "สโมสรคืออะไรเมื่อมี 4 สำหรับจำนวนการแข่งขัน?",
    "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_en": "What is the sum of Number of fixtures when the rounds shows quarter-finals?",
    "question_th": "ผลรวมของจำนวนการแข่งขันเมื่อรอบแสดงรอบก่อนรองชนะเลิศเป็นเท่าใด?",
    "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_en": "What is the New entries this round when the round is the semi-finals?",
    "question_th": "รายการใหม่รอบนี้คืออะไรเมื่อรอบรองชนะเลิศ?",
    "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_en": "What is the Round when the number of fixtures is more than 2, and the Main date of 7 and 28 november 2007?",
    "question_th": "รอบจะเป็นอย่างไรเมื่อจำนวนการแข่งขันมากกว่า 2 นัด และนัดหลักคือวันที่ 7 และ 28 พฤศจิกายน พ.ศ. 2550?",
    "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_en": "What is the event average for a top-25 smaller than 0?",
    "question_th": "ค่าเฉลี่ยเหตุการณ์สำหรับ 25 อันดับแรกที่น้อยกว่า 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_en": "What are the highest wins with cuts smaller than 6, events of 4 and a top-5 smaller than 0?",
    "question_th": "อะไรคือชัยชนะสูงสุดที่มีการตัดคะแนนน้อยกว่า 6 เหตุการณ์ที่ 4 และ 5 อันดับแรกที่น้อยกว่า 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_en": "What are the lowest top-5 with a top-25 larger than 4, 29 cuts and a top-10 larger than 18?",
    "question_th": "อะไรคืออันดับต่ำสุด 5 อันดับแรกที่มี 25 อันดับแรกมากกว่า 4, 29 ตัดและ 10 อันดับแรกที่ใหญ่กว่า 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_en": "What is the lowest for top-25 with events smaller than 42 in a U.S. Open with a top-10 smaller than 5?",
    "question_th": "อะไรคือสิ่งที่ต่ำที่สุดสำหรับ 25 อันดับแรกที่มีการแข่งขันน้อยกว่า 42 ใน US Open และ 10 อันดับแรกที่มีขนาดเล็กกว่า 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_en": "Which birthplace's height in inches was more than 192 when the position was d and the birthday was April 5, 1983?",
    "question_th": "บ้านเกิดใดมีส่วนสูงเป็นนิ้วมากกว่า 192 ตอนที่ตำแหน่ง d และวันเกิดคือวันที่ 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_en": "What nationality has steve kerr as the player?",
    "question_th": "สตีฟ เคอร์ เป็นนักเตะสัญชาติอะไร?",
    "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_en": "What years in Orlando have the United States as the nationality, with concord hs as the school/club team?",
    "question_th": "ปีใดในออร์แลนโดที่มีสหรัฐอเมริกาเป็นสัญชาติ โดยมีคองคอร์ดเป็นทีมโรงเรียน/สโมสร",
    "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_en": "Which player has montana as the school/club team?",
    "question_th": "ผู้เล่นคนไหนมีมอนทาน่าเป็นทีมโรงเรียน/สโมสร?",
    "context": "CREATE TABLE table_name_12 (player VARCHAR, school_club_team VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_70 WHERE player = \"jon koncak\"",
    "question_en": "What nationality has jon koncak as the player?",
    "question_th": "จอน คอนจัก เป็นนักเตะสัญชาติอะไร?",
    "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_en": "What years in orlando have the United States as the nationality, and montana as the school/club team?",
    "question_th": "ปีใดในออร์แลนโดที่มีสหรัฐอเมริกาเป็นสัญชาติ และมอนแทนาเป็นทีมโรงเรียน/สโมสร",
    "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_en": "What school/club team has tim kempton as the player?",
    "question_th": "ทีมโรงเรียน/สโมสรใดมีทิม เคมพ์ตันเป็นผู้เล่น?",
    "context": "CREATE TABLE table_name_25 (school_club_team VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_66 WHERE opponent = \"pittsburgh steelers\"",
    "question_en": "In the game where they played the Pittsburgh Steelers, what was the attendance?",
    "question_th": "ในเกมที่พวกเขาเจอกับ พิตส์เบิร์ก สตีลเลอร์ส มีผู้เข้าชมงานมากขนาดไหน?",
    "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_en": "In the game on or before week 9, who was the opponent when the attendance was 61,626?",
    "question_th": "ในเกมในหรือก่อนสัปดาห์ที่ 9 คู่ต่อสู้คือใครเมื่อมีผู้ชม 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_en": "On November 20, 1994, what was the result of the game?",
    "question_th": "เมื่อวันที่ 20 พฤศจิกายน พ.ศ. 2537 ผลการแข่งขันเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_65 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT team__number2 FROM table_name_31 WHERE team__number1 = \"deport\"",
    "question_en": "What is the team #2 with Deport as team #1?",
    "question_th": "ทีม #2 คืออะไร โดยมี Deport เป็นทีม #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_en": "What is the 2nd leg for the team #2 junior?",
    "question_th": "เลกที่ 2 ของทีม #2 รุ่นน้อง คืออะไร?",
    "context": "CREATE TABLE table_name_18 (team__number2 VARCHAR)"
  },
  {
    "answer": "SELECT 1 AS st_leg FROM table_name_5 WHERE team__number2 = \"junior\"",
    "question_en": "What is the 1st leg with a junior team #2?",
    "question_th": "เลกแรกกับทีมรุ่นน้อง #2 คืออะไร?",
    "context": "CREATE TABLE table_name_5 (team__number2 VARCHAR)"
  },
  {
    "answer": "SELECT AVG(rank) FROM table_name_9 WHERE bronze < 0",
    "question_en": "What is the rank with 0 bronze?",
    "question_th": "อันดับ 0 ทองแดงคืออะไร?",
    "context": "CREATE TABLE table_name_9 (rank INTEGER, bronze INTEGER)"
  },
  {
    "answer": "SELECT COUNT(total) FROM table_name_46 WHERE gold > 2",
    "question_en": "What is the total where the gold is larger than 2?",
    "question_th": "ทองคำมากกว่า 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_en": "What is the smallest number of gold where the total is less than 3 and the silver count is 2?",
    "question_th": "อะไรคือจำนวนทองคำที่น้อยที่สุดโดยที่ผลรวมน้อยกว่า 3 และจำนวนเงินคือ 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_en": "Which Against has a Drawn smaller than 5, and a Lost smaller than 6, and a Points larger than 36?",
    "question_th": "ฝ่ายไหนที่เสมอน้อยกว่า 5 และแพ้น้อยกว่า 6 และแต้มมากกว่า 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_en": "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?",
    "question_th": "ที่เล่นแล้วมีแต้มแพ้มากกว่า 9 และแต้มน้อยกว่า 15 และตำแหน่งน้อยกว่า 12 และเสมอน้อยกว่า 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_en": "How many weeks have october 31, 1954 as the date?",
    "question_th": "31 ตุลาคม 2497 เป็นวันที่กี่สัปดาห์?",
    "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_en": "What party took office after 1993 with Senator Michael Galloway?",
    "question_th": "พรรคใดเข้ารับตำแหน่งหลังปี 1993 ร่วมกับวุฒิสมาชิก 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_en": "What year did Senator Ken Armbrister take office?",
    "question_th": "วุฒิสมาชิกเคน อาร์มบริสเตอร์เข้ารับตำแหน่งในปีใด",
    "context": "CREATE TABLE table_name_17 (took_office VARCHAR, senator VARCHAR)"
  },
  {
    "answer": "SELECT SUM(bronze) FROM table_name_91 WHERE total > 27",
    "question_en": "What is the sum of Bronze when the total is more than 27?",
    "question_th": "ผลรวมของทองแดงเป็นเท่าใดเมื่อผลรวมมากกว่า 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_en": "What is the total number of Bronze when gold is more than 1 and nation is total?",
    "question_th": "จำนวนเหรียญทองแดงทั้งหมดเมื่อทองมากกว่า 1 และประเทศรวมเป็นเท่าใด?",
    "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_en": "What is the average Bronze for rank 3 and total is more than 8?",
    "question_th": "ค่าเฉลี่ยสีบรอนซ์สำหรับอันดับ 3 คือเท่าไร และคะแนนรวมมากกว่า 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_en": "What is the sum of Total when rank is 2?",
    "question_th": "ผลรวมของคะแนนรวมเมื่ออันดับที่ 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_en": "What is the Nation when there is a total less than 27, gold is less than 1, and bronze is more than 1?",
    "question_th": "ชาติจะเป็นอย่างไรเมื่อมียอดรวมน้อยกว่า 27 ทองน้อยกว่า 1 และทองแดงมากกว่า 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_en": "What is the earliest Year commissioned wiht an Average annual output greater than 58 and Installed capacity of 20?",
    "question_th": "ปีแรกสุดที่ได้รับมอบหมายโดยมีผลผลิตเฉลี่ยต่อปีมากกว่า 58 และกำลังการผลิตติดตั้งที่ 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_en": "What is the Average annual output for Culligran power station with an Installed capacity less than 19?",
    "question_th": "ผลผลิตเฉลี่ยต่อปีสำหรับโรงไฟฟ้า Culligran ที่มีกำลังการผลิตติดตั้งน้อยกว่า 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_en": "What is the Year Commissioned of the power stationo with a Gross head of less than 18?",
    "question_th": "ปีที่ว่าจ้างให้สถานีไฟฟ้าที่มีหัวรวมน้อยกว่า 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_en": "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?",
    "question_th": "ปีใดที่โรงไฟฟ้ามีกำลังการผลิตรวม 60 เมตร และผลผลิตเฉลี่ยต่อปีน้อยกว่า 59 ล้าน 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²_) FROM table_name_19 WHERE density___km²_ > 462 AND official_website = \"http://krishna.nic.in/\"",
    "question_en": "What is the sum of the area values for districts having density over 462 and websites of http://krishna.nic.in/?",
    "question_th": "ผลรวมของค่าพื้นที่สำหรับเขตที่มีความหนาแน่นมากกว่า 462 และเว็บไซต์ของ http://krishna.nic.in/ เป็นเท่าใด",
    "context": "CREATE TABLE table_name_19 (area__km²_ INTEGER, density___km²_ VARCHAR, official_website VARCHAR)"
  },
  {
    "answer": "SELECT valvetrain FROM table_name_94 WHERE \"engine_model\" = \"engine_model\"",
    "question_en": "What is the valvetrain with an engine model that is engine model?",
    "question_th": "Valvetrain กับรุ่นเครื่องยนต์ที่เป็นรุ่นเครื่องยนต์คืออะไร?",
    "context": "CREATE TABLE table_name_94 (valvetrain VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_36 WHERE school_club_team = \"vanderbilt\"",
    "question_en": "What is the Position of the player from Vanderbilt?",
    "question_th": "ตำแหน่งของผู้เล่นจากแวนเดอร์บิลต์คืออะไร?",
    "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_en": "What is Stephen Thompson's School/Club Team?",
    "question_th": "ทีมโรงเรียน/สโมสรของ Stephen Thompson คืออะไร",
    "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_en": "How many spikes have 28.09.1981 as the date of birth, with a block greater than 318?",
    "question_th": "วันเกิดมีวันที่ 28.09.1981 มีหนามแหลมกี่อัน โดยมีบล็อกมากกว่า 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_en": "On what date was the DVD released for the season with fewer than 13 episodes that aired before season 8?",
    "question_th": "ดีวีดีสำหรับซีซั่นนี้ออกวันไหนซึ่งมีน้อยกว่า 13 ตอนที่ออกอากาศก่อนซีซั่น 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_en": "After Match 43, what was the Attendance of the Match with a Score of 2-4?",
    "question_th": "หลังจากแมตช์ที่ 43 ผู้เข้าชมการแข่งขันด้วยสกอร์ 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ández natalia zvereva\" AND week_of = \"26 june 2 weeks\"",
    "question_en": "When the runner-up is listed as Gigi Fernández Natalia Zvereva and the week is 26 June 2 weeks, who are the semi finalists?",
    "question_th": "เมื่อรองชนะเลิศได้แก่ จีจี้ เฟร์นันเดซ นาตาเลีย ซเวเรวา และสัปดาห์คือวันที่ 26 มิถุนายน 2 สัปดาห์ ใครคือผู้เข้ารอบรองชนะเลิศ?",
    "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ánchez vicario\"",
    "question_en": "Who is the winner in the week listed as 26 June 2 weeks, when the runner-up is Arantxa Sánchez Vicario?",
    "question_th": "ใครคือผู้ชนะในสัปดาห์ที่ระบุคือ 26 มิถุนายน 2 สัปดาห์ เมื่อรองชนะเลิศคือ Arantxa Sánchez 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_en": "Who are the semi finalists on the week of 12 june, when the runner-up is listed as Lori McNeil?",
    "question_th": "ใครคือผู้เข้ารอบรองชนะเลิศในสัปดาห์วันที่ 12 มิถุนายน ซึ่งรองชนะเลิศคือ ลอรี แม็คนีล",
    "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_en": "When the Tier is listed as tier iii, who is the Winner?",
    "question_th": "เมื่อระดับถูกระบุว่าเป็นระดับ iii ใครคือผู้ชนะ?",
    "context": "CREATE TABLE table_name_79 (winner VARCHAR, tier VARCHAR)"
  },
  {
    "answer": "SELECT week_of FROM table_name_71 WHERE winner = \"jana novotná arantxa sánchez vicario 5–7, 7–5, 6–4\"",
    "question_en": "In which week is the winner listed as Jana Novotná Arantxa Sánchez Vicario 5–7, 7–5, 6–4?",
    "question_th": "ผู้ชนะคือ Jana Novotná Arantxa Sánchez Vicario 5–7, 7–5, 6–4 ในสัปดาห์ใด",
    "context": "CREATE TABLE table_name_71 (week_of VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_16 WHERE years_in_orlando = \"2005\"",
    "question_en": "Who was the Player that spent the Year 2005 in Orlando?",
    "question_th": "ใครคือผู้เล่นที่ใช้เวลาปี 2005 ในออร์แลนโด?",
    "context": "CREATE TABLE table_name_16 (player VARCHAR, years_in_orlando VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_79 WHERE player = \"britton johnsen\"",
    "question_en": "What was the Position of the Player, Britton Johnsen?",
    "question_th": "ตำแหน่งผู้เล่น Britton Johnsen คืออะไร?",
    "context": "CREATE TABLE table_name_79 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_54 WHERE position = \"guard-forward\"",
    "question_en": "Who was the Player that had the Position, guard-forward?",
    "question_th": "ใครคือผู้เล่นที่มีตำแหน่งกองหน้า?",
    "context": "CREATE TABLE table_name_54 (player VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT features FROM table_name_18 WHERE datacenter = \"yes\"",
    "question_en": "Which Features have Yes listed under Datacenter?",
    "question_th": "คุณลักษณะใดบ้างที่มีรายการใช่ภายใต้ 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_en": "What is the Datacenter for the Fault Tolerant Memory Sync Feature that has Yes for Itanium and No for Standard?",
    "question_th": "Datacenter สำหรับคุณสมบัติ Fault Tolerant Memory Sync ที่มี Yes สำหรับ Itanium และ No สำหรับ 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_en": "Which Foundation has an Enterprise of 2?",
    "question_th": "มูลนิธิใดมีวิสาหกิจจำนวน 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_en": "What is the Datacenter for the Memory modules: hot addition Feature that has Yes listed for Itanium?",
    "question_th": "Datacenter สำหรับโมดูลหน่วยความจำคืออะไร: คุณสมบัติเพิ่มเติมด่วนที่มีรายการ ใช่ สำหรับ 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_en": "What is the Enterprise for teh memory modules: hot replacement Feature that has a Datacenter of Yes?",
    "question_th": "Enterprise for teh memory modules คืออะไร: คุณสมบัติ hot replacement ที่มี Datacenter ใช่",
    "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_en": "What Datacenter is listed against the network access connections: rras Feature?",
    "question_th": "Datacenter ใดที่แสดงอยู่ในการเชื่อมต่อการเข้าถึงเครือข่าย: คุณสมบัติ rras",
    "context": "CREATE TABLE table_name_85 (datacenter VARCHAR, features VARCHAR)"
  },
  {
    "answer": "SELECT l2_cache FROM table_name_87 WHERE multi_1 = \"13.5x\"",
    "question_en": "What is the L2 cache with a 13.5x multi 1?",
    "question_th": "แคช L2 ที่มี 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_en": "What is the socket with an order part number of amm300dbo22gq and a September 10, 2009 release date?",
    "question_th": "ซ็อกเก็ตที่มีหมายเลขชิ้นส่วนการสั่งซื้อ amm300dbo22gq และวันที่วางจำหน่ายวันที่ 10 กันยายน 2552 คืออะไร",
    "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_en": "What is the order part number with a 12.5x multi 1?",
    "question_th": "หมายเลขชิ้นส่วนของคำสั่งซื้อที่มี 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_en": "What is the frequency of the tmm500dbo22gq order part number?",
    "question_th": "ความถี่ของหมายเลขชิ้นส่วนการสั่งซื้อ tmm500dbo22gq คือเท่าใด",
    "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_en": "What is the L2 cache with a release date on September 10, 2009, a 128-bit FPU width, and a 12x multi 1?",
    "question_th": "แคช L2 คืออะไรซึ่งมีวันวางจำหน่ายในวันที่ 10 กันยายน 2552 ความกว้าง FPU 128 บิต และ 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_en": "What is the release date of the 2x 512 kb L2 cache with a 11x multi 1, and a FPU width of 128-bit?",
    "question_th": "วันที่วางจำหน่ายของแคช L2 2x 512 kb พร้อม 11x multi 1 และความกว้าง FPU 128 บิตคือเมื่อใด",
    "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_en": "What Player has a College that is alberta?",
    "question_th": "ผู้เล่นคนไหนมีวิทยาลัยที่อัลเบอร์ตา?",
    "context": "CREATE TABLE table_name_56 (player VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_79 WHERE player = \"jermaine romans\"",
    "question_en": "What College has a Player that is jermaine romans?",
    "question_th": "วิทยาลัยใดมีผู้เล่นที่เป็นเจอร์เมนโรมัน?",
    "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_en": "Which Score has a Date of 28 february 1953, and a Tie no of 3?",
    "question_th": "คะแนนใดมีวันที่ 28 กุมภาพันธ์ พ.ศ. 2496 และเสมอกันที่ 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–1\" AND away_team = \"tottenham hotspur\"",
    "question_en": "Which Home team has a Score of 0–1, and an Away team of tottenham hotspur?",
    "question_th": "ทีมเหย้าทีมใดมีสกอร์ 0–1 และทีมเยือนของท็อตแน่ม ฮ็อตสเปอร์?",
    "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_en": "Which Score has a Tie no of 1?",
    "question_th": "คะแนนใดมีคะแนนเสมอกันที่ 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_en": "Which Home team has an Away team of everton?",
    "question_th": "เจ้าบ้านทีมไหนมีทีมเยือนเอฟเวอร์ตัน?",
    "context": "CREATE TABLE table_name_57 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT tie_no FROM table_name_95 WHERE score = \"0–1\" AND date = \"9 march 1953\"",
    "question_en": "Which Tie no has a Score of 0–1, and a Date of 9 march 1953?",
    "question_th": "หมายเลขเสมอใดมีคะแนน 0–1 และวันที่ 9 มีนาคม พ.ศ. 2496",
    "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_en": "Which Score has a Home team of aston villa?",
    "question_th": "สกอร์ไหนมีเจ้าบ้านแอสตัน วิลล่า?",
    "context": "CREATE TABLE table_name_20 (score VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT language FROM table_name_16 WHERE television_service = \"canale aste\"",
    "question_en": "What is the Language for Canale Aste?",
    "question_th": "ภาษาสำหรับ 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_en": "What is the Country with Reteconomy as the Television service?",
    "question_th": "ประเทศที่มี Reteconomy เป็นบริการโทรทัศน์คืออะไร?",
    "context": "CREATE TABLE table_name_48 (country VARCHAR, television_service VARCHAR)"
  },
  {
    "answer": "SELECT hdtv FROM table_name_84 WHERE content = \"documentaries\"",
    "question_en": "What is the HDTV when documentaries are the content?",
    "question_th": "HDTV คืออะไร ในเมื่อสารคดีมีเนื้อหา?",
    "context": "CREATE TABLE table_name_84 (hdtv VARCHAR, content VARCHAR)"
  },
  {
    "answer": "SELECT language FROM table_name_86 WHERE television_service = \"reteconomy\"",
    "question_en": "What is the Language when the Reteconomy is the television service?",
    "question_th": "เป็นภาษาอะไรเมื่อ Reteconomy เป็นบริการโทรทัศน์?",
    "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_en": "What is the HDTV for the Rai Nettuno Sat Uno Television service?",
    "question_th": "HDTV สำหรับบริการโทรทัศน์ Rai Nettuno Sat Uno คืออะไร?",
    "context": "CREATE TABLE table_name_77 (hdtv VARCHAR, television_service VARCHAR)"
  },
  {
    "answer": "SELECT MIN(week) FROM table_name_93 WHERE result = \"l 13–10\" AND date = \"november 30, 1975\" AND attendance > 44 OFFSET 982",
    "question_en": "What is the lowest Week when the result was l 13–10, November 30, 1975, with more than 44,982 people in attendance?",
    "question_th": "สัปดาห์ที่ต่ำที่สุดคือสัปดาห์ใดเมื่อผลการแข่งขันคือวันที่ 13–10 วันที่ 30 พฤศจิกายน พ.ศ. 2518 โดยมีผู้เข้าร่วมมากกว่า 44,982 คน",
    "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_en": "What is the highest Week when the opponent was the los angeles rams, with more than 37,382 in Attendance?",
    "question_th": "สัปดาห์ใดคือสัปดาห์สูงสุดที่คู่ต่อสู้คือทีมลอสแองเจลิสแรมส์ โดยมีผู้เข้าร่วมมากกว่า 37,382 คน?",
    "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_en": "What is the highest Week when the opponent was kansas city chiefs, with more than 26,469 in attendance?",
    "question_th": "สัปดาห์สูงสุดคือเมื่อฝ่ายตรงข้ามเป็นหัวหน้าเมืองแคนซัส โดยมีผู้เข้าร่วมมากกว่า 26,469 คน?",
    "context": "CREATE TABLE table_name_54 (week INTEGER, opponent VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT MIN(week) FROM table_name_19 WHERE result = \"l 6–0\"",
    "question_en": "What is the lowest Week when the result was l 6–0?",
    "question_th": "สัปดาห์ที่ต่ำที่สุดเมื่อผลลัพธ์คือ l 6–0 คืออะไร?",
    "context": "CREATE TABLE table_name_19 (week INTEGER, result VARCHAR)"
  },
  {
    "answer": "SELECT AVG(week) FROM table_name_83 WHERE result = \"w 28–20\" AND attendance > 46 OFFSET 888",
    "question_en": "What is the average Week when the result was w 28–20, and there were more than 46,888 in attendance?",
    "question_th": "สัปดาห์โดยเฉลี่ยคือเท่าใดเมื่อผลลัพธ์คือ w 28–20 และมีผู้เข้าร่วมมากกว่า 46,888 คน",
    "context": "CREATE TABLE table_name_83 (week INTEGER, result VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT MIN(overs) FROM table_name_61 WHERE runs = 18",
    "question_en": "What is the lowest Overs with a Run that is 18?",
    "question_th": "Overs ต่ำสุดที่มีการรันที่ 18 คืออะไร?",
    "context": "CREATE TABLE table_name_61 (overs INTEGER, runs VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_83 WHERE away_team = \"charlton athletic\"",
    "question_en": "What score has charlton athletic as the away team?",
    "question_th": "ชาร์ลตัน แอธเลติก เป็นทีมเยือนได้คะแนนเท่าไหร่?",
    "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_en": "What home team has coventry city as the away team?",
    "question_th": "เจ้าบ้านทีมไหนมีโคเวนทรีซิตี้เป็นทีมเยือน?",
    "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_en": "What is the average Pick when the round was less than 6 for kenneth green?",
    "question_th": "การเลือกเฉลี่ยเมื่อรอบน้อยกว่า 6 สำหรับเคนเนธกรีนเป็นเท่าใด",
    "context": "CREATE TABLE table_name_7 (pick INTEGER, round VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT AVG(goals) FROM table_name_68 WHERE matches < 228",
    "question_en": "What average goals have matches less than 228?",
    "question_th": "ประตูเฉลี่ยใดที่มีการแข่งขันน้อยกว่า 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_en": "How many goals/matches have 153 as the goals with matches greater than 352?",
    "question_th": "มีกี่ประตู/แมตช์ที่มี 153 ประตูที่มีแมตช์มากกว่า 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_en": "What are the lowest goal that have goals/matches greater than 0.43 with joachim streich as the name and matches greater than 378?",
    "question_th": "ประตูต่ำสุดที่มีประตู/นัดมากกว่า 0.43 โดยมี Joachim Streich เป็นชื่อและนัดที่มากกว่า 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_en": "What years have goals less than 229, and 440 as matches?",
    "question_th": "ปีไหนที่มีประตูน้อยกว่า 229 และ 440 เป็นแมตช์?",
    "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_en": "What team was the winner when the runner-up shows both teams awarded championship after a draw.?",
    "question_th": "ทีมใดเป็นผู้ชนะเมื่อรองชนะเลิศแสดงให้เห็นว่าทั้งสองทีมได้รับรางวัลแชมป์หลังจากเสมอกัน?",
    "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_en": "What is the Score when the winner was suntory sungoliath, and the number attendance was n/a?",
    "question_th": "คะแนนเมื่อผู้ชนะคือ Suntory Sungoliath และจำนวนผู้เข้าร่วมคือ 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_en": "What is the Attendance number when the runner-up was suntory sungoliath, and a Title of 46th?",
    "question_th": "หมายเลขผู้เข้าร่วมเมื่อรองชนะเลิศคือ Suntory Sungoliath และตำแหน่งที่ 46 คืออะไร?",
    "context": "CREATE TABLE table_name_41 (attendance VARCHAR, runner_up VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_67 WHERE title = \"44th\"",
    "question_en": "What is the Attendance number for the title of 44th?",
    "question_th": "หมายเลขผู้เข้าร่วมสำหรับตำแหน่งที่ 44 คืออะไร?",
    "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_en": "What is the Title when the winner was suntory sungoliath, and a Season of 2011-12 details?",
    "question_th": "อะไรคือตำแหน่งเมื่อผู้ชนะคือ Suntory Sungoliath และรายละเอียดฤดูกาล 2011-12?",
    "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_en": "What is the Score when the winner was sanyo wild knights, and a Runner-up of suntory sungoliath?",
    "question_th": "คะแนนจะเป็นอย่างไรเมื่อผู้ชนะคือ Sanyo Wild Knights และรองชนะเลิศจาก 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_en": "Which Position has a Pick # lower than 278 for Player Charles Benson?",
    "question_th": "ตำแหน่งใดมีหมายเลขเลือกต่ำกว่า 278 สำหรับผู้เล่น 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_en": "Which Player has a Pick # lower than 223 and a Defensive End Position?",
    "question_th": "ผู้เล่นคนใดมี Pick # ต่ำกว่า 223 และตำแหน่งการป้องกัน?",
    "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_en": "If the Position is Running Back what is the Total number of Pick #?",
    "question_th": "หากตำแหน่งวิ่งกลับ จำนวน 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_en": "Which College has Player Mark Brown and a Pick # greater than 195?",
    "question_th": "วิทยาลัยใดมีผู้เล่น Mark Brown และ Pick # มากกว่า 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_en": "What was the average Position for which the amount Drawn was less than 0?",
    "question_th": "ตำแหน่งเฉลี่ยที่จำนวนเงินที่ดึงออกมาน้อยกว่า 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_en": "What was the total number of Points when the value Difference was 13, and when the value Lost was greater than 3?",
    "question_th": "คือจำนวนคะแนนทั้งหมดเมื่อค่าส่วนต่างคือ 13 และเมื่อค่าที่เสียไปมากกว่า 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_en": "Who won with the song kemenangan cinta?",
    "question_th": "ใครชนะด้วยเพลง 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_en": "Which winning song had a debut album in progress?",
    "question_th": "เพลงที่ชนะรางวัลใดที่มีอัลบั้มเปิดตัวอยู่ในระหว่างดำเนินการ?",
    "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_en": "Which album debuted in season 2 (2005)?",
    "question_th": "อัลบั้มใดที่เปิดตัวในซีซัน 2 (พ.ศ. 2548)",
    "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_en": "Which English winning song had the winner aris runtuwene?",
    "question_th": "เพลงชนะรางวัลภาษาอังกฤษเพลงใดที่มีผู้ชนะคือ 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_en": "Which winning song was sung by aku tetap milikmu?",
    "question_th": "เพลงใดที่ชนะเลิศร้องโดย 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_en": "Name the highest Profits (billion $) which has a Company of walmart?",
    "question_th": "ตั้งชื่อผลกำไรสูงสุด (พันล้านดอลลาร์) ซึ่งมีบริษัทของวอลมาร์ท?",
    "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_en": "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?",
    "question_th": "มีสินทรัพย์ (พันล้านเหรียญสหรัฐ) ที่มีอุตสาหกรรมน้ำมันและก๊าซ และมีอันดับที่ 9 และมูลค่าตลาด (พันล้านเหรียญสหรัฐ) มากกว่า 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_en": "Name the lowest Profits (billion $) which has a Sales (billion $) of 425.7, and a Rank larger than 4?",
    "question_th": "ตั้งชื่อผลกำไรต่ำสุด (พันล้าน $) ซึ่งมียอดขาย (พันล้าน $) ที่ 425.7 และอันดับมากกว่า 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_en": "Name the lowest Market Value (billion $) which has Assets (billion $) larger than 276.81, and a Company of toyota, and Profits (billion $) larger than 17.21?",
    "question_th": "ตั้งชื่อมูลค่าตลาดต่ำสุด (พันล้านดอลลาร์) ซึ่งมีสินทรัพย์ (พันล้านดอลลาร์) มากกว่า 276.81 และบริษัทของโตโยต้า และกำไร (พันล้านดอลลาร์) มากกว่า 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_en": "Name the Sales (billion $) which have a Company of exxonmobil?",
    "question_th": "ตั้งชื่อยอดขาย (พันล้านดอลลาร์) ซึ่งมีบริษัทของ 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_en": "What is Winner, when Win # is greater than 1, and when Points is less than 94?",
    "question_th": "ผู้ชนะคืออะไร เมื่อ Win # มากกว่า 1 และเมื่อคะแนนน้อยกว่า 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_en": "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\"?",
    "question_th": "ผลการแข่งขันเพลย์ออฟคืออะไร เมื่อผู้ชนะคือ \"Alaska Aces\" เมื่อ Win # มากกว่า 1 เมื่อคะแนนน้อยกว่า 106 และเมื่อปีคือ \"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_en": "What is the lowest Win #, when Year is \"2011-12\", and when Points is less than 97?",
    "question_th": "หมายเลข Win ต่ำสุดคือเท่าไร เมื่อปีคือ \"2011-12\" และเมื่อคะแนนน้อยกว่า 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_en": "What is the highest Win #, when Winner is \"Knoxville Cherokees\", when Playoff Result is \"Lost 1st Round ( LOU )\", and when Points is less than 94?",
    "question_th": "หมายเลขชัยชนะสูงสุดคืออะไร เมื่อผู้ชนะคือ \"Knoxville Cherokees\" เมื่อผลการแข่งขันเพลย์ออฟคือ \"แพ้รอบแรก ( LOU )\" และเมื่อคะแนนน้อยกว่า 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_en": "Who was the winner against Lindsay Davenport?",
    "question_th": "ใครเป็นผู้ชนะกับลินด์ซีย์ ดาเวนพอร์ต?",
    "context": "CREATE TABLE table_name_42 (winner VARCHAR, finalist VARCHAR)"
  },
  {
    "answer": "SELECT finalist FROM table_name_7 WHERE tournament = \"miami\"",
    "question_en": "Who was the finalist in Miami?",
    "question_th": "ใครคือผู้เข้ารอบสุดท้ายในไมอามี?",
    "context": "CREATE TABLE table_name_7 (finalist VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_92 WHERE finalist = \"lina krasnoroutskaya\"",
    "question_en": "Who was the winner against finalist Lina Krasnoroutskaya?",
    "question_th": "ใครคือผู้ชนะเทียบกับผู้เข้ารอบสุดท้าย 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_en": "What was the date when the away team was carlisle united?",
    "question_th": "คาร์ไลล์ ยูไนเต็ด นัดเยือนวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_50 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_3 WHERE away_team = \"leeds united\"",
    "question_en": "What was the date when the away team was the leeds united?",
    "question_th": "ลีดส์ ยูไนเต็ด นัดเยือนวันที่เท่าไหร่?",
    "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_en": "What was the tie number when peterborough united was the away team?",
    "question_th": "ปีเตอร์โบโร่ ยูไนเต็ด เป็นทีมเยือนเสมอกันเท่าไหร่?",
    "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_en": "What player has E as the to par, and The United States as the country?",
    "question_th": "ผู้เล่นคนใดที่มี E เป็นพาร์ และสหรัฐอเมริกาเป็นประเทศ?",
    "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_en": "What player has The United States as the country with 70 as the score?",
    "question_th": "ผู้เล่นคนไหนมีสหรัฐอเมริกาเป็นประเทศที่มีคะแนน 70 คะแนน?",
    "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_en": "What player has The United States as the country, with t2 as the place?",
    "question_th": "ผู้เล่นคนไหนที่มีสหรัฐอเมริกาเป็นประเทศ โดยมี t2 เป็นสถานที่?",
    "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_en": "What place has E as the to par, with Mark Wiebe as the player?",
    "question_th": "E มีจุดไหนที่เท่าเทียม โดยมี Mark Wiebe เป็นผู้เล่น?",
    "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_en": "When is the club founded that founed prsl in 2008 and the home city is carolina 1?",
    "question_th": "เมื่อใดที่สโมสรก่อตั้งขึ้นซึ่งก่อตั้ง Prsl ในปี 2008 และบ้านเกิดคือ 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á morales stadium\"",
    "question_en": "what is the club that was founded before 2007, joined prsl in 2008 and the stadium is yldefonso solá morales stadium?",
    "question_th": "สโมสรที่ก่อตั้งก่อนปี 2007 เข้าร่วม PRSL ในปี 2008 คืออะไร และสนามกีฬาคือสนามกีฬาอิลเดฟองโซ โซลา โมราเลส?",
    "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üez\"",
    "question_en": "what is the earliest founded when the home city is mayagüez?",
    "question_th": "ก่อตั้งเร็วที่สุดเมื่อเมืองบ้านเกิดคือ Mayagüez?",
    "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_en": "when is the latest to join prsl when founded in 2007 and the stadium is roberto clemente stadium 1?",
    "question_th": "ล่าสุดคือเมื่อใดที่จะเข้าร่วม prsl เมื่อก่อตั้งขึ้นในปี 2550 และสนามกีฬาคือสนามกีฬา Roberto Clemente 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_en": "What year was the International Cup that was won by Akron Goodyear Wingfoots and had Real Madrid as runner-up?",
    "question_th": "อินเตอร์เนชั่นแนล คัพ คือปีไหนที่แอครอน กู๊ดเยียร์ วิงฟุตส์คว้าชัย และมีเรอัล มาดริดเป็นรองแชมป์?",
    "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_en": "In what year did the United States win To par greater than 14",
    "question_th": "สหรัฐอเมริกาชนะพาร์มากกว่า 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_en": "What is the total that South Africa had a par greater than 14",
    "question_th": "ผลรวมที่แอฟริกาใต้มีพาร์มากกว่า 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_en": "What is the highest to par that is less than 153",
    "question_th": "ค่าพาร์สูงสุดที่น้อยกว่า 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_en": "What is the average Attendance, when the Date is September 17, 1981?",
    "question_th": "จำนวนผู้เข้าร่วมโดยเฉลี่ยคือเท่าใด เมื่อวันที่ 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_en": "What is the Attendance, when the Opponent is the Tampa Bay Buccaneers?",
    "question_th": "ผู้เข้าร่วมจะเป็นอย่างไร เมื่อฝ่ายตรงข้ามคือแทมปา เบย์ บัคคาเนียร์ส?",
    "context": "CREATE TABLE table_name_80 (attendance VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(points_) FROM table_name_56 WHERE sets_ > 51",
    "question_en": "What is the total number of Points- when the Sets- is larger than 51?",
    "question_th": "จำนวนแต้มทั้งหมด- เมื่อเซต- มากกว่า 51 คือเท่าไร?",
    "context": "CREATE TABLE table_name_56 (points_ VARCHAR, sets_ INTEGER)"
  },
  {
    "answer": "SELECT developer FROM table_name_96 WHERE year_of_release = \"cancelled\"",
    "question_en": "Which developer has a year of cancelled releases?",
    "question_th": "นักพัฒนาซอฟต์แวร์คนใดมีปีที่ยกเลิกการเผยแพร่?",
    "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_en": "Which publisher has release year of 2000 and an original dreamcast platform?",
    "question_th": "ผู้จัดพิมพ์รายใดที่เปิดตัวในปี 2000 และแพลตฟอร์มดรีมแคสต์ดั้งเดิม",
    "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_en": "Which publisher is responsible for spec ops: stealth patrol?",
    "question_th": "ผู้จัดพิมพ์รายใดที่รับผิดชอบการปฏิบัติงานด้านข้อมูลจำเพาะ: การลาดตระเวนแบบซ่อนตัว",
    "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_en": "What is the connection for the proxyconn web accelerator web client accelerator?",
    "question_th": "การเชื่อมต่อสำหรับตัวเร่งความเร็วเว็บไคลเอนต์ proxyconn web 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_en": "What's the Date with the Region of Europe and has a Catalog of 28765 22392 8?",
    "question_th": "วันที่กับภูมิภาคยุโรปคืออะไรและมีแคตตาล็อก 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_en": "What's listed for the Label with a Date of 29 July 1997?",
    "question_th": "ฉลากระบุวันที่ 29 กรกฎาคม พ.ศ. 2540 มีอะไรบ้าง",
    "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_en": "What's the Date for the Region of Europe and has the Catalog of 28765 22392 8?",
    "question_th": "วันที่สำหรับภูมิภาคยุโรปและมีแค็ตตาล็อก 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_en": "What Format has the Region of Europe and a Catalog of 74321 45851 2?",
    "question_th": "รูปแบบใดมีภูมิภาคของยุโรปและแคตตาล็อก 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_en": "What Label has the Region of Australia?",
    "question_th": "ป้ายชื่อใดมีภูมิภาคของออสเตรเลีย",
    "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_en": "What Date has the Region Europe and a Catalog of 74321 45851 2?",
    "question_th": "ภูมิภาคยุโรปมีวันที่เท่าไรและมีแค็ตตาล็อก 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_en": "How many poles are there in the Formula Three Euroseries in the 2008 season with more than 0 F/Laps?",
    "question_th": "มีกี่โพลใน Formula Three Euroseries ในฤดูกาล 2008 โดยมากกว่า 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_en": "Which series has 11 points?",
    "question_th": "ซีรีย์ไหนมี 11 แต้ม?",
    "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_en": "How many poles are there in the 2009 season with 2 races and more than 0 F/Laps?",
    "question_th": "มีกี่โพลในฤดูกาล 2009 ที่มี 2 การแข่งขันและมากกว่า 0 F/รอบ?",
    "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_en": "How many races did the Formula Three Euroseries signature team have?",
    "question_th": "ทีมลายเซ็น Formula Three Euroseries มีการแข่งขันกี่ครั้ง",
    "context": "CREATE TABLE table_name_2 (races INTEGER, series VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_48 WHERE studio = \"embassy pictures\"",
    "question_en": "What is Title, when Studio is \"Embassy Pictures\"?",
    "question_th": "Title คืออะไร เมื่อ Studio คือ \"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_en": "What is Studio, when Title is \"Do Not Disturb\"?",
    "question_th": "Studio คืออะไร เมื่อชื่อเป็น \"ห้ามรบกวน\"",
    "context": "CREATE TABLE table_name_49 (studio VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT MAX(rank) FROM table_name_63 WHERE director = \"henry hathaway\"",
    "question_en": "What is the highest Rank, when Director is \"Henry Hathaway\"?",
    "question_th": "ตำแหน่งสูงสุดเมื่อผู้กำกับคือ \"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_en": "What Country is Player Sam Snead with a To par of less than 5 from?",
    "question_th": "ผู้เล่น Sam Snead ที่มี To par น้อยกว่า 5 มาจากประเทศใด?",
    "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_en": "What is Claude Harmon's Place?",
    "question_th": "คลอดด์ ฮาร์มอนส์เพลส คืออะไร?",
    "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_en": "What is the Johnny Palmer with a To larger than 6 Money sum?",
    "question_th": "Johnny Palmer ที่มีผลรวม To มากกว่า 6 Money คืออะไร?",
    "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_en": "What is the attendance of the western conference finals series?",
    "question_th": "การเข้าร่วมซีรีส์รอบชิงชนะเลิศการประชุมภาคตะวันตกมีอะไรบ้าง?",
    "context": "CREATE TABLE table_name_84 (attendance VARCHAR, series VARCHAR)"
  },
  {
    "answer": "SELECT Leading AS scorer FROM table_name_96 WHERE series = \"wnba finals\"",
    "question_en": "Who is the leading scorer of the wnba finals series?",
    "question_th": "ใครคือผู้ทำประตูสูงสุดของซีรีส์ Wnba Finals?",
    "context": "CREATE TABLE table_name_96 (Leading VARCHAR, series VARCHAR)"
  },
  {
    "answer": "SELECT tie_no FROM table_name_97 WHERE home_team = \"birmingham city\"",
    "question_en": "Which Tie is from birmingham city?",
    "question_th": "ไทคนไหนมาจากเมืองเบอร์มิงแฮม?",
    "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_en": "Which Tie is from everton?",
    "question_th": "เสมอจากเอฟเวอร์ตัน?",
    "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_en": "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\"?",
    "question_th": "U ชนะต่ำสุดคืออะไร เมื่อ Alianza ชนะมากกว่า 0 เมื่อ Alianza Goals มากกว่า 25 และเมื่อเสมอคือ \"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_en": "What is the sum of Alianza Wins, when Alianza Goals is \"317, and when U Goals is greater than 296?",
    "question_th": "ผลรวมของ Alianza Wins คือเท่าใด เมื่อเป้าหมาย Alianza คือ \"317 และเมื่อเป้าหมาย U มากกว่า 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_en": "What is the total number of U Wins, when Alianza Goals is \"0\", and when U Goals is greater than 3?",
    "question_th": "จำนวน U ชนะทั้งหมดเมื่อเป้าหมาย Alianza คือ \"0\" และเมื่อเป้าหมาย U มากกว่า 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_en": "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?",
    "question_th": "การเสมอกันต่ำสุดคือเมื่อ Alianza Goals น้อยกว่า 317 เมื่อ U Goals น้อยกว่า 3 และเมื่อ Alianza ชนะน้อยกว่า 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_en": "What is the total of all to par with player Bob Rosburg?",
    "question_th": "แต้มรวมทั้งหมดเท่าเทียมกับผู้เล่น 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_en": "Which money has player Jack Fleck with t1 place?",
    "question_th": "ผู้เล่น Jack Fleck มีเงินจำนวนเท่าใดในอันดับที่ 1?",
    "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_en": "What is average to par when Bud Holscher is the player?",
    "question_th": "ค่าเฉลี่ยพาร์เมื่อ Bud Holscher เป็นผู้เล่นคือเท่าใด?",
    "context": "CREATE TABLE table_name_38 (to_par INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_81 WHERE score = 73 - 65 = 138",
    "question_en": "What is the name of the golfer that has the score of 73-65=138?",
    "question_th": "นักกอล์ฟที่มีคะแนน 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_en": "Frank Nobilo plays for what country?",
    "question_th": "แฟรงค์ โนบิโลเล่นให้กับประเทศอะไร?",
    "context": "CREATE TABLE table_name_43 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MIN(appearance) FROM table_name_32 WHERE goals > 0",
    "question_en": "what is the lowest appearance when goals is more than 0?",
    "question_th": "รูปลักษณ์ต่ำสุดเมื่อเป้าหมายมากกว่า 0 คืออะไร?",
    "context": "CREATE TABLE table_name_32 (appearance INTEGER, goals INTEGER)"
  },
  {
    "answer": "SELECT SUM(appearance) FROM table_name_33 WHERE goals > 0",
    "question_en": "what is the sum of appearance when goals is more than 0?",
    "question_th": "ผลรวมของการปรากฏตัวเมื่อประตูมากกว่า 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_en": "what is the average tries for the season 2008 warrington wolves with an appearance more than 7?",
    "question_th": "ความพยายามโดยเฉลี่ยสำหรับ Warrington Wolves ในฤดูกาล 2008 ที่ปรากฏตัวมากกว่า 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_en": "How many times is tries 0 and appearance less than 0?",
    "question_th": "กี่ครั้งแล้วที่พยายามเป็น 0 และลักษณะที่ปรากฏน้อยกว่า 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_en": "What is the Rank of the Film with a Worldwide Gross of $183,031,272?",
    "question_th": "ภาพยนตร์เรื่องนี้มีรายได้รวมทั่วโลกอยู่ที่ 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_en": "What is the Title of the Film with a Rank greater than 11 and Worldwide Gross of $131,002,597?",
    "question_th": "ชื่อเรื่องของภาพยนตร์ที่มีอันดับมากกว่า 11 และรายได้รวมทั่วโลกที่ 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_en": "What is the Worldwide Gross of the Film with a Rank of 3?",
    "question_th": "รายได้รวมทั่วโลกของภาพยนตร์ที่มีอันดับ 3 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_38 (worldwide_gross VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT worldwide_gross FROM table_name_68 WHERE rank = 16",
    "question_en": "What is the Worldwide Gross of the Film with a Rank of 16?",
    "question_th": "รายได้รวมทั่วโลกของภาพยนตร์ด้วยอันดับ 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_en": "When the player gained below 1,405 yards and lost over 390 yards, what's the sum of the long yards?",
    "question_th": "เมื่อผู้เล่นได้ระยะต่ำกว่า 1,405 หลา และเสียไปมากกว่า 390 หลา ผลรวมของระยะยาวจะเป็นเท่าใด",
    "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_en": "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?",
    "question_th": "เมื่อกำไรคือ 29 และค่าเฉลี่ยต่อเกมคือ 2 และผู้เล่นเสียน้อยกว่า 390 หลา ผลรวมของหลายาวเป็นเท่าใด",
    "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_en": "How many overalls have charley barnes as the name, with a pick less than 3?",
    "question_th": "มีชุดเอี๊ยมกี่ชุดที่มีชาร์ลี บาร์นส์เป็นชื่อ โดยมีตัวเลือกน้อยกว่า 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_en": "How many rounds have john o'day as the name, and a pick less than 3?",
    "question_th": "ชื่อจอห์น โอเดย์มีกี่รอบ และเลือกได้น้อยกว่า 3 รอบ?",
    "context": "CREATE TABLE table_name_87 (round INTEGER, name VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT airport FROM table_name_76 WHERE iata = \"arn\"",
    "question_en": "What airport has an IATA of ARN?",
    "question_th": "สนามบินใดมี IATA ของ ARN",
    "context": "CREATE TABLE table_name_76 (airport VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_85 WHERE icao = \"enzv\"",
    "question_en": "What country has an ICAO of ENZV?",
    "question_th": "ประเทศใดบ้างที่มี ICAO ของ ENZV?",
    "context": "CREATE TABLE table_name_85 (country VARCHAR, icao VARCHAR)"
  },
  {
    "answer": "SELECT airport FROM table_name_68 WHERE icao = \"bgbw\"",
    "question_en": "What airport has an ICAP of BGBW?",
    "question_th": "สนามบินใดมี ICAP ของ BGBW?",
    "context": "CREATE TABLE table_name_68 (airport VARCHAR, icao VARCHAR)"
  },
  {
    "answer": "SELECT airport FROM table_name_16 WHERE icao = \"birk\"",
    "question_en": "What airport has an ICAO of Birk?",
    "question_th": "สนามบินใดมี ICAO ของ 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_en": "What is the ICAO for Denmark, and the IATA is bll?",
    "question_th": "ICAO สำหรับเดนมาร์กคืออะไร และ IATA คือ 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_en": "What is the number of the round in which Ron Hansen was drafted and the overall is greater than 332?",
    "question_th": "รอน แฮนเซ่น ดราฟได้กี่ยก และรวมแล้วเกิน 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_en": "What pick did George Rosso get drafted when the overall was less than 296?",
    "question_th": "George Rosso ถูกเลือกอะไรเมื่อคะแนนรวมน้อยกว่า 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_en": "What was the name for the row with Date From of 2008-02-21?",
    "question_th": "แถวที่มี 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_en": "What was the Date From for Theo Robinson, who was with the team until the end of season?",
    "question_th": "ธีโอ โรบินสัน ซึ่งอยู่กับทีมจนจบฤดูกาลคือวันที่เท่าไหร่?",
    "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_en": "What date did Toumani Diagouraga, who played position MF, start?",
    "question_th": "Toumani Diagouraga ผู้เล่นตำแหน่ง MF เริ่มออกสตาร์ทเมื่อใด?",
    "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_en": "What is the average round against opponent Klas Akesson?",
    "question_th": "รอบเฉลี่ยกับคู่ต่อสู้ คลาส เอเคสสัน คือเท่าไร?",
    "context": "CREATE TABLE table_name_18 (round INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT MAX(week) FROM table_name_5 WHERE opponent = \"minnesota vikings\"",
    "question_en": "What is the highest week that was played against the Minnesota Vikings?",
    "question_th": "สัปดาห์สูงสุดที่เล่นกับ Minnesota Vikings คือสัปดาห์ใด?",
    "context": "CREATE TABLE table_name_5 (week INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_26 WHERE week = 6",
    "question_en": "Which opponent was played in Week 6?",
    "question_th": "คู่ต่อสู้คนใดที่เล่นในสัปดาห์ที่ 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_en": "WhichScore has a Location Attendance of seattle center coliseum 11,497?",
    "question_th": "whichScore มีผู้เข้าร่วมสถานที่ของสนามกีฬาซีแอตเทิลเซ็นเตอร์ 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_en": "Which Game has a Team of portland trail blazers?",
    "question_th": "เกมใดมีทีมพอร์ตแลนด์ เทรลเบลเซอร์?",
    "context": "CREATE TABLE table_name_36 (game INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT AVG(game) FROM table_name_4 WHERE date = \"march 2\"",
    "question_en": "Which game was played on march 2?",
    "question_th": "เกมใดที่เล่นในวันที่ 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_en": "Which Game has High assists of s. threatt (9)?",
    "question_th": "เกมใดมีแอสซิสต์สูงที่ ภัยคุกคาม (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² < 78 OFFSET 073",
    "question_en": "Count the sum of Pop (2004) which has a Governorate of al mahrah with an Area km² smaller than 78,073?",
    "question_th": "นับผลรวมของ Pop (2004) ซึ่งมีเขตปกครองของ al mahrah ที่มีพื้นที่ km² น้อยกว่า 78,073 หรือไม่?",
    "context": "CREATE TABLE table_name_15 (pop__2004_ INTEGER, governorate VARCHAR, area_km² VARCHAR)"
  },
  {
    "answer": "SELECT SUM(pop__2004_) FROM table_name_48 WHERE governorate = \"al mahwit\"",
    "question_en": "How many Pop (2004) has a Governorate of al mahwit?",
    "question_th": "Pop (2004) มีเขตผู้ว่าการอัลมะห์วิทกี่แห่ง?",
    "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_en": "What is Location Attendance, when High Points is \"Allen Iverson (23)\"?",
    "question_th": "การเข้าร่วมสถานที่คืออะไร เมื่อคะแนนสูงสุดคือ \"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_en": "What is the average Game, when Team is \"Milwaukee\"?",
    "question_th": "เกมโดยเฉลี่ยคือเท่าไร เมื่อทีมคือ \"Milwaukee\"?",
    "context": "CREATE TABLE table_name_78 (game INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_name_5 WHERE game = 5",
    "question_en": "What is High Points, when Game is \"5\"?",
    "question_th": "High Points คืออะไร เมื่อเกมคือ \"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_en": "What is High Points, when Game is less than 10, and when High Assists is \"Chauncey Billups (8)\"?",
    "question_th": "High Points คืออะไร เมื่อเกมน้อยกว่า 10 และเมื่อ High Assists คือ \"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_en": "What is the Team in Game 38?",
    "question_th": "ทีมในเกมที่ 38 คืออะไร?",
    "context": "CREATE TABLE table_name_46 (team VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT MIN(game) FROM table_name_13 WHERE score = \"129–105\"",
    "question_en": "What Game had a Score of 129–105?",
    "question_th": "เกมใดมีคะแนน 129–105",
    "context": "CREATE TABLE table_name_13 (game INTEGER, score VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_97 WHERE game = 41",
    "question_en": "What is the Team in Game 41?",
    "question_th": "ทีมในเกมที่ 41 คืออะไร?",
    "context": "CREATE TABLE table_name_97 (team VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT streak FROM table_name_42 WHERE record = \"20–16\"",
    "question_en": "What is the Streak in the game with a Record of 20–16?",
    "question_th": "สตรีคในเกมที่มีสถิติ 20–16 คืออะไร?",
    "context": "CREATE TABLE table_name_42 (streak VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_97 WHERE date = \"january 20\"",
    "question_en": "What is the Team on January 20?",
    "question_th": "ทีมอะไรในวันที่ 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_en": "What venue had an event on 17 November 1963?",
    "question_th": "สถานที่ใดมีงานในวันที่ 17 พฤศจิกายน พ.ศ. 2506?",
    "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_en": "What is the most recent season with a date of 27 October 1957?",
    "question_th": "ฤดูกาลล่าสุดคือวันที่ 27 ตุลาคม พ.ศ. 2500 คืออะไร?",
    "context": "CREATE TABLE table_name_43 (season INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_6 WHERE date = \"15 december 1957\"",
    "question_en": "Who was the winner on 15 December 1957?",
    "question_th": "ใครเป็นผู้ชนะในวันที่ 15 ธันวาคม พ.ศ. 2500?",
    "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_en": "What is the score of the event that Alianza Lima won in 1965?",
    "question_th": "งานที่ Alianza Lima ชนะในปี 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_en": "Which Seasons has a Name of joe grugin, and a Lost larger than 8?",
    "question_th": "ซีซั่นใดมีชื่อของ Joe Grugin และ Lost มากกว่า 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_en": "what is the location/attendance when the record is 9-2?",
    "question_th": "สถานที่/การเข้าร่วมเมื่อบันทึกคือ 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_en": "what is the game on june 29?",
    "question_th": "เกมวันที่ 29 มิถุนายนคือเกมอะไร?",
    "context": "CREATE TABLE table_name_75 (game INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_name_42 WHERE date = \"june 8\"",
    "question_en": "who had the high points on june 8?",
    "question_th": "ใครมีคะแนนสูงสุดในวันที่ 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_en": "who had the high assists when the game was less than 13 and the score was w 75-66?",
    "question_th": "ใครแอสซิสต์ได้สูงเมื่อเกมยังน้อยกว่า 13 และสกอร์อยู่ที่ 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_en": "What was the result of Frank Langella?",
    "question_th": "ผลลัพธ์ของ 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_en": "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?",
    "question_th": "คุณช่วยบอกผลรวมของประตูที่มีเป้าหมายมากกว่า 10 และอันดับ 3 และชัยชนะน้อยกว่า 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_en": "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?",
    "question_th": "คุณช่วยบอกฉันได้ไหมว่าการเล่นต่ำสุดที่มีตำแหน่งมากกว่า 2 และเสมอน้อยกว่า 2 และประตูต่อน้อยกว่า 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_en": "Can you tell me the total number of Wins that has the Draws larger than 0, and the Points of 11?",
    "question_th": "คุณช่วยบอกจำนวนการชนะทั้งหมดที่มีการเสมอมากกว่า 0 และแต้ม 11 ให้ฉันหน่อยได้ไหม",
    "context": "CREATE TABLE table_name_48 (wins VARCHAR, draws VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_32 WHERE floors = 35",
    "question_en": "In what city does the tallest building have 35 floors?",
    "question_th": "ตึกที่สูงที่สุดมี 35 ชั้นในเมืองใด",
    "context": "CREATE TABLE table_name_32 (city VARCHAR, floors VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_56 WHERE city = \"louisville\" AND floors > 35",
    "question_en": "What building in Louisville had more than 35 floors?",
    "question_th": "อาคารใดในลุยวิลล์ที่มีมากกว่า 35 ชั้น",
    "context": "CREATE TABLE table_name_56 (name VARCHAR, city VARCHAR, floors VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_11 WHERE goal__number = 2",
    "question_en": "What was the venue where goal #2 occured?",
    "question_th": "สถานที่ใดที่เป้าหมาย #2 เกิดขึ้น?",
    "context": "CREATE TABLE table_name_11 (venue VARCHAR, goal__number VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_63 WHERE visitor = \"florida\"",
    "question_en": "What was the flyers' record when the visitors were florida?",
    "question_th": "บันทึกของใบปลิวเมื่อผู้มาเยือนอยู่ที่ฟลอริดาคืออะไร",
    "context": "CREATE TABLE table_name_63 (record VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_76 WHERE home = \"ny rangers\"",
    "question_en": "Who were the visitors when the home team were the ny rangers?",
    "question_th": "ใครคือผู้มาเยือนเมื่อเจ้าบ้านเป็นเรนเจอร์?",
    "context": "CREATE TABLE table_name_76 (visitor VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT car___motorcycle FROM table_name_14 WHERE speed = \"91.813mph\"",
    "question_en": "What car/motorcycle goes 91.813mph?",
    "question_th": "รถยนต์/รถจักรยานยนต์คันใดวิ่งด้วยความเร็ว 91.813 ไมล์/ชม.?",
    "context": "CREATE TABLE table_name_14 (car___motorcycle VARCHAR, speed VARCHAR)"
  },
  {
    "answer": "SELECT driver___rider FROM table_name_58 WHERE car___motorcycle = \"indian\"",
    "question_en": "Which driver is Indian?",
    "question_th": "คนขับคนไหนเป็นคนอินเดีย?",
    "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_en": "What is the Full Word, when Case Suffix (case) is \"-sa (dative)\"?",
    "question_th": "คำเต็มคืออะไรเมื่อคำต่อท้ายกรณี (กรณี) คือ \"-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_en": "What is English Meaning, when Full Word is \"Shens Gamo\"?",
    "question_th": "ความหมายภาษาอังกฤษคืออะไรเมื่อคำเต็มคือ \"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_en": "What is Case Suffix (Case), when English Meaning is \"to Georgia, in Georgia\"?",
    "question_th": "Case Suffix (Case) คืออะไร เมื่อความหมายภาษาอังกฤษคือ \"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_en": "What is Postposition, when Noun Root (Meaning) is \"mshobl- (parent)\"?",
    "question_th": "Postposition คืออะไรเมื่อ Noun Root (ความหมาย) คือ \"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_en": "What is English Meaning, when Case Suffix (Case) is \"-sa (dative)\"?",
    "question_th": "ความหมายภาษาอังกฤษคืออะไร เมื่อคำต่อท้ายกรณี (กรณี) คือ \"-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_en": "What is Case Suffix (Case), when Postposition is \"-mde (drops d)\"?",
    "question_th": "Case Suffix (Case) คืออะไร เมื่อ Postposition คือ \"-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_en": "What is the total years for roots and branches?",
    "question_th": "รากและกิ่งก้านมีอายุรวมกี่ปี?",
    "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_en": "What is the average number of podiums in the 32nd position with less than 0 wins?",
    "question_th": "จำนวนโพเดี้ยมโดยเฉลี่ยในตำแหน่งที่ 32 โดยชนะน้อยกว่า 0 เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_64 (podiums INTEGER, position VARCHAR, wins VARCHAR)"
  },
  {
    "answer": "SELECT races FROM table_name_43 WHERE position = \"8th\"",
    "question_en": "What is the race in the 8th position?",
    "question_th": "การแข่งขันอันดับที่ 8 คืออะไร?",
    "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_en": "What is the sum of Overall, when College is \"Arkansas State\", and when Pick is less than 17?",
    "question_th": "ผลรวมโดยรวมเมื่อวิทยาลัยคือ \"รัฐอาร์คันซอ\" และเมื่อพิคน้อยกว่า 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_en": "What is the average Pick, when Name is \"Lybrant Robinson\", and when Overall is less than 139?",
    "question_th": "การเลือกโดยเฉลี่ยคือเท่าใด เมื่อชื่อคือ \"Lybrant Robinson\" และเมื่อคะแนนโดยรวมน้อยกว่า 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_en": "What is the sum of Overall, when Name is \"Tim Smiley\", and when Round is less than 5?",
    "question_th": "ผลรวมโดยรวมเมื่อชื่อ \"ทิม สไมล์ลีย์\" และเมื่อรอบน้อยกว่า 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_en": "What is Score In The Final, when Championship is \"Athens , Greece\", and when Outcome is \"Winner\"?",
    "question_th": "คะแนนในรอบชิงชนะเลิศคืออะไร เมื่อการแข่งขันชิงแชมป์คือ \"เอเธนส์ กรีซ\" และเมื่อผลลัพธ์คือ \"ผู้ชนะ\"",
    "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_en": "What is Opponent In The Final, when Date is before 1991, and when Outcome is \"Runner-Up\"?",
    "question_th": "คู่ต่อสู้ในรอบชิงชนะเลิศคืออะไร เมื่อถึงวันที่ก่อนปี 1991 และเมื่อใดที่ผลลัพธ์คือ \"รองชนะเลิศ\"?",
    "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_en": "What was the religious affiliation for the athletics nicknamed lords/ladies?",
    "question_th": "การแข่งขันกรีฑาที่มีชื่อเล่นว่าลอร์ด/สุภาพสตรีมีความเกี่ยวข้องทางศาสนาอะไร?",
    "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_en": "What is Tournament, when Career SR is \"ATP Masters Series\"?",
    "question_th": "Tournament คืออะไร เมื่อ Career SR คือ \"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_en": "What is 1995, when Tournament is \"Miami\"?",
    "question_th": "1995 คืออะไร เมื่อทัวร์นาเมนต์คือ \"ไมอามี่\"?",
    "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_en": "What is 1997, when 1996 is \"1R\", when 1990 is \"2R\", and when 1991 is \"F\"?",
    "question_th": "ปี 1997 คืออะไร เมื่อปี 1996 คือ \"1R\" เมื่อปี 1990 คือ \"2R\" และเมื่อใดคือ \"F\" เมื่อใด 1991",
    "context": "CREATE TABLE table_name_63 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1996 FROM table_name_29 WHERE 1992 = \"atp masters series\"",
    "question_en": "What is 1996, when 1992 is \"ATP Masters Series\"?",
    "question_th": "ปี 1996 คืออะไร เมื่อปี 1992 เป็น \"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_en": "What is 1994, when 1991 is \"QF\", and when Tournament is \"Australian Open\"?",
    "question_th": "ปี 1994 คืออะไร เมื่อปี 1991 เป็น \"QF\" และเมื่อใดที่การแข่งขันคือ \"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_en": "When was the venue named nassau veterans memorial coliseum established??",
    "question_th": "สถานที่จัดงานชื่อสนามกีฬาอนุสรณ์ทหารผ่านศึกแนสซอก่อตั้งขึ้นเมื่อใด??",
    "context": "CREATE TABLE table_name_45 (established INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_23 WHERE record = \"15-21-6\"",
    "question_en": "Who was the opponent with the record of 15-21-6?",
    "question_th": "คู่ต่อสู้ด้วยสถิติ 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_en": "What day in January was the game greater than 49 and had @ Montreal Canadiens as opponents?",
    "question_th": "วันใดในเดือนมกราคมที่เกมมีมากกว่า 49 และมี @ Montreal Canadiens เป็นคู่ต่อสู้?",
    "context": "CREATE TABLE table_name_70 (january INTEGER, opponent VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(game) FROM table_name_75 WHERE january = 20",
    "question_en": "What was the total number of games on January 20?",
    "question_th": "จำนวนเกมทั้งหมดในวันที่ 20 มกราคมเป็นเท่าใด",
    "context": "CREATE TABLE table_name_75 (game VARCHAR, january VARCHAR)"
  },
  {
    "answer": "SELECT votes___percentage_ FROM table_name_14 WHERE episode = \"1x03\"",
    "question_en": "What is Votes (%), when Episode is \"1x03\"?",
    "question_th": "คะแนนโหวต (%) คืออะไร เมื่อตอนคือ \"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_en": "What is Votes (%), when First Broadcast is \"13 March 1998\"?",
    "question_th": "คะแนนโหวต (%) คืออะไร เมื่อออกอากาศครั้งแรกคือ \"13 มีนาคม 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_en": "Who had the high rebounds of the game that Deron Williams (5) had the high assists?",
    "question_th": "ใครที่รีบาวด์ในเกมได้สูงจนเดรอน วิลเลียมส์ (5) มีแอสซิสต์สูง?",
    "context": "CREATE TABLE table_name_4 (high_rebounds VARCHAR, high_assists VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_33 WHERE game = 48",
    "question_en": "What was the score of Game 48?",
    "question_th": "เกมที่ 48 ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_33 (score VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_name_68 WHERE date = \"january 24\"",
    "question_en": "Who had the high rebounds on January 24?",
    "question_th": "วันที่ 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_en": "How big is the area that has a population density of 113 and a population larger than 184,531?",
    "question_th": "พื้นที่ที่มีความหนาแน่นของประชากร 113 คน และจำนวนประชากรมากกว่า 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_en": "What is the population density of the area with a population larger than 92,719?",
    "question_th": "ความหนาแน่นของประชากรในพื้นที่ที่มีประชากรมากกว่า 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_en": "What is the population with an area of 1,126.84?",
    "question_th": "ประชากรมีพื้นที่ 1,126.84 คือเท่าไร?",
    "context": "CREATE TABLE table_name_44 (population INTEGER, area VARCHAR)"
  },
  {
    "answer": "SELECT SUM(noof_settlements) FROM table_name_76 WHERE district = \"český krumlov (ck)\" AND pop_dens > 38",
    "question_en": "How many settlements are in český krumlov (ck) with a population density higher than 38?",
    "question_th": "การตั้งถิ่นฐานใน český krumlov (ck) มีกี่แห่งที่มีความหนาแน่นของประชากรสูงกว่า 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_en": "What is the lowest population density of Strakonice (st) with more than 112 settlements?",
    "question_th": "ความหนาแน่นของประชากรต่ำสุดของ Strakonice (st) ที่มีการตั้งถิ่นฐานมากกว่า 112 แห่งคือเท่าใด",
    "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_en": "Who presented their credentials at an unknown date?",
    "question_th": "ใครเป็นผู้แสดงข้อมูลประจำตัวของตนในวันที่ไม่ทราบ?",
    "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_en": "When did Robert G. Miner present his credentials?",
    "question_th": "Robert G. Miner นำเสนอหนังสือรับรองของเขาเมื่อใด",
    "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_en": "When was William A. Costello appointed?",
    "question_th": "วิลเลียม เอ. คอสเตลโล ได้รับการแต่งตั้งเมื่อใด?",
    "context": "CREATE TABLE table_name_31 (appointment VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_63 WHERE appointment = \"october 24, 1997\"",
    "question_en": "Who was appointed on October 24, 1997?",
    "question_th": "ใครได้รับการแต่งตั้งเมื่อวันที่ 24 ตุลาคม พ.ศ. 2540?",
    "context": "CREATE TABLE table_name_63 (name VARCHAR, appointment VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_14 WHERE name = \"anthony d. marshall\"",
    "question_en": "What was Anthony D. Marshall's title?",
    "question_th": "Anthony D. Marshall มีชื่อว่าอะไร",
    "context": "CREATE TABLE table_name_14 (title VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_44 WHERE position = \"g\" AND pick > 26",
    "question_en": "What is Nationality, when Position is \"G\", and when Pick is greater than 26?",
    "question_th": "สัญชาติคืออะไร เมื่อตำแหน่งคือ \"G\" และเมื่อเลือกมากกว่า 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_en": "What is Player, when Round is \"2\", and when School/Club Team is \"Xavier\"?",
    "question_th": "ผู้เล่นคืออะไร เมื่อรอบคือ \"2\" และเมื่อทีมโรงเรียน/สโมสรคือ \"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_en": "What is the highest Pick, when Position is \"G/F\"?",
    "question_th": "การเลือกสูงสุดคืออะไร เมื่อตำแหน่งคือ \"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_en": "What was the average place for the song that had 69 points and a draw smaller than 13?",
    "question_th": "อันดับเฉลี่ยของเพลงที่มี 69 คะแนนและเสมอน้อยกว่า 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_en": "What was the english translation for the song by svetlana loboda?",
    "question_th": "เพลงของ svetlana loboda แปลภาษาอังกฤษว่าอะไร?",
    "context": "CREATE TABLE table_name_77 (english_translation VARCHAR, artist VARCHAR)"
  },
  {
    "answer": "SELECT song FROM table_name_98 WHERE language = \"french\"",
    "question_en": "What song was in french?",
    "question_th": "เพลงอะไรเป็นภาษาฝรั่งเศส?",
    "context": "CREATE TABLE table_name_98 (song VARCHAR, language VARCHAR)"
  },
  {
    "answer": "SELECT points_against FROM table_name_96 WHERE \"drawn\" = \"drawn\"",
    "question_en": "what is the points against when drawn is drawn?",
    "question_th": "แต้มต่อเมื่อวาดออกมาคืออะไร?",
    "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_en": "what is the points against when the losing bonus is 0 and the club is banwen rfc?",
    "question_th": "อะไรคือคะแนนเมื่อโบนัสที่แพ้เป็น 0 และสโมสรเป็น 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_en": "what is the points when the club blaengarw rfc?",
    "question_th": "สโมสรแบลนการ์ 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_en": "what is the tries fow when losing bonus is losing bonus?",
    "question_th": "อะไรคือความพยายามเมื่อสูญเสียโบนัสคือการเสียโบนัส?",
    "context": "CREATE TABLE table_name_47 (tries_for VARCHAR, losing_bonus VARCHAR)"
  },
  {
    "answer": "SELECT drawn FROM table_name_80 WHERE club = \"hirwaun rfc\"",
    "question_en": "what is drawn when the club is hirwaun rfc?",
    "question_th": "จะเกิดอะไรขึ้นเมื่อสโมสรเป็น hirwaun rfc?",
    "context": "CREATE TABLE table_name_80 (drawn VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT lost FROM table_name_28 WHERE points_against = \"231\"",
    "question_en": "what is lost when the points against is 231?",
    "question_th": "อะไรจะหายไปเมื่อแต้มต่อคือ 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_en": "Who was the away team against the home team Sheffield United?",
    "question_th": "ทีมเยือนเจอกับทีมเจ้าบ้าน เชฟฟิลด์ ยูไนเต็ด คือใคร?",
    "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_en": "Who was the away team with a tie of 14?",
    "question_th": "ทีมเยือนที่เสมอกัน 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_en": "What is the latest year of the album with the release title death valley?",
    "question_th": "อัลบั้มชื่อ 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_en": "What is the total year of release of the title what goes around comes around?",
    "question_th": "ปีที่วางจำหน่ายโดยรวมของชื่อคืออะไร?",
    "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_en": "What percent is the lead margin of 25 that Republican: Jeff Beatty has according to poll source Rasmussen Reports?",
    "question_th": "อัตรากำไรขั้นต้นของ 25 ที่พรรครีพับลิกัน: Jeff Beatty มีเปอร์เซ็นต์เท่าใดตามแหล่งสำรวจ 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_en": "How did the ship named proletarij finish its service?",
    "question_th": "เรือชื่อ proletarij สิ้นสุดการให้บริการได้อย่างไร?",
    "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_en": "What is the average tonnage of the ship named proletarij?",
    "question_th": "น้ำหนักเฉลี่ยของเรือชื่อ 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_en": "What is the area in square kilometers of Studholm?",
    "question_th": "สตัดโฮล์มมีพื้นที่กี่ตารางกิโลเมตร?",
    "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_en": "For what week was the attendance 40,429?",
    "question_th": "มีผู้เข้าร่วม 40,429 คนในสัปดาห์ใด?",
    "context": "CREATE TABLE table_name_2 (week INTEGER, attendance VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_17 WHERE opponent = \"detroit lions\"",
    "question_en": "The Detroit Lions were played against what week?",
    "question_th": "Detroit Lions แข่งกับสัปดาห์ไหน?",
    "context": "CREATE TABLE table_name_17 (week VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_65 WHERE date = \"september 10, 1989\"",
    "question_en": "On September 10, 1989 how many people attended the game?",
    "question_th": "วันที่ 10 กันยายน พ.ศ. 2532 มีผู้เข้าร่วมการแข่งขันกี่คน?",
    "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_en": "Which Poll source has a Peg Luksik of 9%, and Dates administered of may 12, 2010?",
    "question_th": "แหล่งสำรวจความคิดเห็นใดมี Peg Luksik 9% และวันที่ดำเนินการคือวันที่ 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_en": "Which Poll source has Pat Toomey of 23%?",
    "question_th": "แหล่งสำรวจความคิดเห็นใดที่มี Pat Toomey 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_en": "How many total silvers does Russia have?",
    "question_th": "รัสเซียมีเงินทั้งหมดกี่เหรียญ?",
    "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_en": "What is the average number of bronze medals of the Philippines, which has more than 0 gold?",
    "question_th": "ค่าเฉลี่ยของเหรียญทองแดงของฟิลิปปินส์ซึ่งมีมากกว่า 0 เหรียญทองคือเท่าไร?",
    "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_en": "What is the average number of bronze of the nation with more than 1 gold and 1 silver medal?",
    "question_th": "ค่าเฉลี่ยของเหรียญทองแดงของประเทศที่ได้มากกว่า 1 เหรียญทอง และ 1 เหรียญเงิน คือเท่าไร?",
    "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_en": "What is the average total medals of the nation ranked 1 with less than 1 silver?",
    "question_th": "เหรียญรวมเฉลี่ยของประเทศอันดับ 1 เหรียญเงินน้อยกว่า 1 เหรียญคือเท่าไร?",
    "context": "CREATE TABLE table_name_62 (total INTEGER, rank VARCHAR, silver VARCHAR)"
  },
  {
    "answer": "SELECT MIN(gold) FROM table_name_67 WHERE silver < 0",
    "question_en": "What is the lowest number of gold medals the nation with less than 0 silver medals has?",
    "question_th": "ประเทศที่ได้เหรียญทองน้อยที่สุดแต่น้อยกว่า 0 เหรียญเงินมีจำนวนเท่าใด?",
    "context": "CREATE TABLE table_name_67 (gold INTEGER, silver INTEGER)"
  },
  {
    "answer": "SELECT location_attendance FROM table_name_3 WHERE date = \"september 11\"",
    "question_en": "What was the Location/Attendance on september 11?",
    "question_th": "สถานที่/การเข้าร่วมในวันที่ 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_en": "What were the high rebounds on september 11?",
    "question_th": "การรีบาวด์สูงสุดในวันที่ 11 กันยายนเป็นเท่าใด",
    "context": "CREATE TABLE table_name_35 (high_rebounds VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_8 WHERE opponent = \"indiana\"",
    "question_en": "When did indiana play?",
    "question_th": "อินเดียน่าเล่นเมื่อไหร่?",
    "context": "CREATE TABLE table_name_8 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_name_29 WHERE high_rebounds = \"lennox (7)\"",
    "question_en": "Which Location/Attendance has High rebounds of lennox (7)?",
    "question_th": "สถานที่/ผู้เข้าร่วมใดที่มีการรีบาวด์สูงของเลนน็อกซ์ (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_en": "What team has tony parker (10) as the high assists, kurt thomas (12) as the high rebounds?",
    "question_th": "ทีมไหนที่โทนี่ ปาร์กเกอร์ (10) แอสซิสต์สูง, เคิร์ต โธมัส (12) แอสซิสต์สูง?",
    "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_en": "What score has tim duncan (14) as the high rebounds?",
    "question_th": "ทิม ดันแคน (14) รีบาวน์สูงได้คะแนนเท่าไหร่?",
    "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_en": "What is the lowest round for an overall pick of 349 with a pick number in the round over 11?",
    "question_th": "รอบต่ำสุดสำหรับการเลือกโดยรวมที่ 349 โดยมีหมายเลขการเลือกในรอบที่มากกว่า 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_en": "Where was the fight located that lasted 1 round against luiz claudio das dores?",
    "question_th": "การชกที่กินเวลา 1 รอบกับ ลูอิซ เคลาดิโอ ดาส โดเรส เกิดขึ้นที่ไหน?",
    "context": "CREATE TABLE table_name_77 (location VARCHAR, round VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_2 WHERE game = 35",
    "question_en": "Which date was game 35 on?",
    "question_th": "เกมที่ 35 ตรงกับวันไหน?",
    "context": "CREATE TABLE table_name_2 (date VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_70 WHERE game = 37",
    "question_en": "What was the record after game 37?",
    "question_th": "สถิติหลังเกมที่ 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ître\"",
    "question_en": "What is the score of the tournament with olivier delaître as the opponent in the final?",
    "question_th": "สกอร์ของทัวร์นาเมนต์นี้มี โอลิเวียร์ เดอแลตต์ เป็นคู่ต่อสู้ในรอบชิงชนะเลิศอยู่ที่เท่าไร?",
    "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ître\"",
    "question_en": "What is the date of the tournament with olivier delaître as the opponent in the final?",
    "question_th": "วันที่ของทัวร์นาเมนต์โดยมีโอลิเวียร์ เดอแลตต์เป็นคู่ต่อสู้ในรอบชิงชนะเลิศคือวันที่เท่าไร?",
    "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édric pioline\"",
    "question_en": "What is the surface of the tournament with cédric pioline as the opponent in the final?",
    "question_th": "อะไรคือพื้นผิวของทัวร์นาเมนต์ที่มี Cédric Pioline เป็นคู่ต่อสู้ในรอบชิงชนะเลิศ?",
    "context": "CREATE TABLE table_name_37 (surface VARCHAR, opponent_in_the_final VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_42 WHERE draws = \"3\"",
    "question_en": "What was the result for the team with 3 draws?",
    "question_th": "ผลการเสมอ 3 ทีมเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_42 (result VARCHAR, draws VARCHAR)"
  },
  {
    "answer": "SELECT draws FROM table_name_58 WHERE year = \"2006\"",
    "question_en": "How many draws were there in 2006?",
    "question_th": "ในปี 2549 มีการจับรางวัลกี่ครั้ง?",
    "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_en": "What were the matches where the teams finished in the first group stage, in 1998?",
    "question_th": "การแข่งขันที่ทีมต่างๆ จบในรอบแบ่งกลุ่มนัดแรกในปี 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_en": "What year was Zona Sur nominated?",
    "question_th": "Zona Sur ได้รับการเสนอชื่อเข้าชิงในปีใด",
    "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_en": "What is Dependencia Sexual's film title that was used in its nomination?",
    "question_th": "ชื่อภาพยนตร์ของ Dependencia Sexual ที่ใช้ในการเสนอชื่อคืออะไร?",
    "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_en": "What was Zona Sur's result after being considered for nomination?",
    "question_th": "ผลลัพธ์ของ Zona Sur เป็นอย่างไรหลังจากได้รับการพิจารณาให้เสนอชื่อเข้าชิง?",
    "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_en": "How many losses did leon patton have with the longest gain higher than 45?",
    "question_th": "ลีออน แพตตันสูญเสียไปกี่ครั้งโดยกำไรที่ยาวที่สุดสูงกว่า 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_en": "what is the average top-5 when the cuts made is more than 34?",
    "question_th": "ค่าเฉลี่ย 5 อันดับแรกเมื่อตัดมากกว่า 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_en": "what is the sum of wins when events is 13 and top-5 is less than 1?",
    "question_th": "ผลรวมของการชนะเมื่อเหตุการณ์คือ 13 และ 5 อันดับแรกน้อยกว่า 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_en": "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?",
    "question_th": "เหตุการณ์สูงสุดคืออะไรเมื่อมีการตัดน้อยกว่า 34, 25 อันดับแรกน้อยกว่า 5 และ 10 อันดับแรกมากกว่า 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_en": "what is the average top-10 when the cuts made is less than 9 and the events is more than 14?",
    "question_th": "อะไรคือค่าเฉลี่ยของ 10 อันดับแรกเมื่อการตัดน้อยกว่า 9 และเหตุการณ์มากกว่า 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_en": "What is the 2008 for 2009 heartland high tech?",
    "question_th": "ไฮเทค Heartland ปี 2008 สำหรับปี 2009 คืออะไร?",
    "context": "CREATE TABLE table_name_2 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2007 FROM table_name_92 WHERE 2003 = \"ch callaway's copyright\"",
    "question_en": "What is the 2007 with ch callaway's copyright in 2003?",
    "question_th": "2007 กับลิขสิทธิ์ของ ch callaway ในปี 2003 คืออะไร?",
    "context": "CREATE TABLE table_name_92 (Id VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_96 WHERE 2007 = \"big red\"",
    "question_en": "What year is the 2007 big red?",
    "question_th": "บิ๊กเรดปี 2007 คือปีไหน?",
    "context": "CREATE TABLE table_name_96 (year VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_67 WHERE 2004 = \"shake don't stir\"",
    "question_en": "What year is the 2004 shake don't stir?",
    "question_th": "ปี 2004 เชคอะไรไม่กวน?",
    "context": "CREATE TABLE table_name_67 (year VARCHAR)"
  },
  {
    "answer": "SELECT 2007 FROM table_name_48 WHERE 2003 = \"desert prince\"",
    "question_en": "What is the 2007 for the 2003 desert prince?",
    "question_th": "ปี 2550 สำหรับเจ้าชายทะเลทรายปี 2546 คืออะไร?",
    "context": "CREATE TABLE table_name_48 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2008 FROM table_name_89 WHERE 2009 = \"ch our charming lady\"",
    "question_en": "What is the 2008 for the 2009 ch our charming lady?",
    "question_th": "ปี 2008 สำหรับปี 2009 ch ผู้หญิงที่มีเสน่ห์ของเราคืออะไร?",
    "context": "CREATE TABLE table_name_89 (Id VARCHAR)"
  },
  {
    "answer": "SELECT antiparticle_symbol FROM table_name_16 WHERE rest_mass___mev___c_2__ = \".47 ± .33\"",
    "question_en": "What is the antiparticle symbol with a rest mess (mev/c2) of .47 ± .33?",
    "question_th": "สัญลักษณ์ปฏิปักษ์ที่มีค่าความยุ่งเหยิง (mev/c2) เท่ากับ .47 ± .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_en": "What was the surface in 1981?",
    "question_th": "พื้นผิวในปี 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–6, 3–6\"",
    "question_en": "What is the outcome on a hard surface, when the score in the final was 4–6, 3–6?",
    "question_th": "ผลลัพธ์บนพื้นแข็งจะเป็นอย่างไรเมื่อคะแนนในรอบชิงชนะเลิศคือ 4–6, 3–6?",
    "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_en": "What is the total championships that the league cup is less than 0?",
    "question_th": "รวมแชมป์ที่ลีกคัพน้อยกว่า 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_en": "What is the total championships of James Henry that has a league cup more than 1?",
    "question_th": "เจมส์ เฮนรี่ ได้แชมป์ลีกคัพมากกว่า 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_en": "What is the championship of Jem Karacan that has a total of 2 and a league cup more than 0?",
    "question_th": "แชมป์ของ เจม คาราคาน ที่มีสกอร์รวม 2 และลีกคัพมากกว่า 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_en": "In which season did he have 0 Poles and 19th position in the GP2 Series?",
    "question_th": "เขามี 0 เสาและอันดับที่ 19 ในซีรีส์ GP2 ในฤดูกาลใด",
    "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_en": "What was his position in 2009 with 1 win?",
    "question_th": "ตำแหน่งของเขาในปี 2009 ชนะ 1 ครั้งคืออะไร?",
    "context": "CREATE TABLE table_name_93 (position VARCHAR, wins VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT races FROM table_name_47 WHERE points = \"8\"",
    "question_en": "How many races did he do in the year he had 8 points?",
    "question_th": "เขาลงแข่งกี่รอบในปีที่เขามี 8 แต้ม?",
    "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_en": "What were the points in the year when his Wins were 0, his Podiums were 0, and he drove in 4 races?",
    "question_th": "อะไรคือคะแนนในปีที่เขาชนะเป็น 0 โพเดียมของเขาเป็น 0 และเขาขับไป 4 การแข่งขัน?",
    "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_en": "What were the points in the year when his Podiums were 5?",
    "question_th": "อะไรคือคะแนนในปีที่เขาโพเดียมของเขาอยู่ที่ 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_en": "What was the F/Laps when the Wins were 0 and the Position was 4th?",
    "question_th": "F/Laps คืออะไรเมื่อชัยชนะเป็น 0 และอันดับที่ 4?",
    "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_en": "What was the Result on May 30?",
    "question_th": "ผลลัพธ์ในวันที่ 30 พฤษภาคมเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_66 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_1 WHERE date = \"july 24\"",
    "question_en": "What was the Result on July 24?",
    "question_th": "ผลลัพธ์ในวันที่ 24 กรกฎาคมเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_1 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_31 WHERE record = \"0-1\"",
    "question_en": "What was the Score of the game with a Record of 0-1?",
    "question_th": "สกอร์ของเกมที่มีสถิติ 0-1 คืออะไร?",
    "context": "CREATE TABLE table_name_31 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_23 WHERE date = \"june 24\"",
    "question_en": "What is the Record of the game on June 24?",
    "question_th": "สถิติของเกมวันที่ 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_en": "What is the Date of the game with a Loss and Record of 7-9?",
    "question_th": "วันที่ของเกมที่แพ้และบันทึก 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_en": "What is the Record on July 12?",
    "question_th": "บันทึกในวันที่ 12 กรกฎาคมคืออะไร?",
    "context": "CREATE TABLE table_name_10 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_46 WHERE total = 290",
    "question_en": "What player has a total of 290 points?",
    "question_th": "ผู้เล่นคนไหนมีคะแนนรวม 290 แต้ม?",
    "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_en": "What is the year that Hale Irwin won with 285 points?",
    "question_th": "ปีที่เฮล เออร์วิน ชนะด้วยคะแนน 285 แต้มคือปีใด",
    "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_en": "Which year has a 2011 of 1r?",
    "question_th": "ปีใดมี 2011 ของ 1r?",
    "context": "CREATE TABLE table_name_47 (Id VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_38 WHERE 2013 = \"1r\" AND 2012 = \"1r\"",
    "question_en": "Which tournament has a 2013 of 1r, and a 2012 of 1r?",
    "question_th": "ทัวร์นาเมนต์ใดที่มี 2013 ของ 1r และ 2012 ของ 1r",
    "context": "CREATE TABLE table_name_38 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2009 FROM table_name_82 WHERE 2003 = \"lq\"",
    "question_en": "Which year has a 2003 of lq?",
    "question_th": "ปีใดมี 2003 เป็น lq?",
    "context": "CREATE TABLE table_name_82 (Id VARCHAR)"
  },
  {
    "answer": "SELECT SUM(week) FROM table_name_23 WHERE attendance = \"75,555\"",
    "question_en": "WHAT IS THE WEEK WITH AN ATTENDANCE OF 75,555?",
    "question_th": "สัปดาห์ใดที่มีผู้เข้าร่วม 75,555 คน?",
    "context": "CREATE TABLE table_name_23 (week INTEGER, attendance VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_18 WHERE opponent = \"chicago bears\"",
    "question_en": "WHAT IS THE RESULT WHEN THE OPPONENT WAS CHICAGO BEARS?",
    "question_th": "ผลที่ตามมาเมื่อฝ่ายตรงข้ามคือ 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_en": "WHAT IS THE TV TIME WOTH A WEEK BIGGER THAN 15, WITH THE OAKLAND RAIDERS AS OPPONENT?",
    "question_th": "เวลาดูทีวีในหนึ่งสัปดาห์มากกว่า 15 สัปดาห์คือเท่าไร โดยที่ทีม OAKLAND Raiders เป็นฝ่ายตรงข้าม",
    "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_en": "WHAT IS THE TV TIME FOR NOVEMBER 10, 1996?",
    "question_th": "วันที่ 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_en": "What was the date for the match where Tweedie-Yates' partner was jodi kenoyer?",
    "question_th": "วันที่สำหรับการแข่งขันที่คู่หูของ Tweedie-Yates คือ 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_en": "Who were the opponents during the final when christina wheeler was partner?",
    "question_th": "ใครคือคู่ต่อสู้ในรอบชิงชนะเลิศเมื่อคริสตินา วีลเลอร์เป็นคู่หู?",
    "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_en": "What is Country, when Total is less than 290, and when Year(s) Won is 1960?",
    "question_th": "ประเทศคืออะไร เมื่อผลรวมน้อยกว่า 290 และเมื่อปีที่ชนะคือ 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_en": "What is the total number of Total, when To Par is 12?",
    "question_th": "จำนวนรวมทั้งหมดคือเท่าใด เมื่อพาร์คือ 12?",
    "context": "CREATE TABLE table_name_71 (total VARCHAR, to_par VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_36 WHERE total = 292",
    "question_en": "What is Player, when Total is 292?",
    "question_th": "Player คืออะไร เมื่อผลรวมคือ 292",
    "context": "CREATE TABLE table_name_36 (player VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_84 WHERE year_s__won = \"1955\"",
    "question_en": "What is Player, when Year(s) Won is 1955?",
    "question_th": "ผู้เล่นคืออะไร เมื่อปีที่ชนะคือปี 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_en": "Which Oil Pattern has a Winner (Title #) of mike wolfe (3)?",
    "question_th": "รูปแบบน้ำมันใดมีผู้ชนะ (หัวข้อ #) ของ 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_en": "Which Score has an Event of constructionjobs.com classic?",
    "question_th": "คะแนนใดมีเหตุการณ์ของ 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_en": "Name the Event which has a Winner (Title #) of parker bohn iii (31)?",
    "question_th": "ตั้งชื่อกิจกรรมซึ่งมีผู้ชนะ (หัวข้อ #) ของ 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_en": "Name the Date when has  robert smith (7)?",
    "question_th": "ตั้งชื่อวันที่ว่าโรเบิร์ต สมิธ (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_en": "Name the Event which has a Score of 209-197?",
    "question_th": "ตั้งชื่อกิจกรรมที่มีคะแนน 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_en": "Name the Date which has a Oil Pattern of chameleon, and a Event of lake county indiana classic?",
    "question_th": "ตั้งชื่อวันที่ซึ่งมีรูปแบบสีน้ำมันของกิ้งก่า และเหตุการณ์ของ 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_en": "Which Rank has a Nation of south korea, and a Silver larger than 0?",
    "question_th": "อันดับใดที่มีประเทศเกาหลีใต้ และ Silver มากกว่า 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_en": "Which Bronze has a Rank of 3, and a Silver larger than 0?",
    "question_th": "เหรียญทองแดงใดมีอันดับ 3 และเหรียญเงินมากกว่า 0",
    "context": "CREATE TABLE table_name_39 (bronze INTEGER, rank VARCHAR, silver VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_32 WHERE method = \"tko\"",
    "question_en": "Who was the opponent when there was a TKO method?",
    "question_th": "คู่ต่อสู้เมื่อมีวิธี TKO คือใคร?",
    "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_en": "What was the round that Sergio Vinagre had a time of 5:00?",
    "question_th": "Sergio Vinagre ทำเวลา 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_en": "What round was it when the method was TKO (would not stand up from Butt Scoot)?",
    "question_th": "ตอนเป็นทีเคโอรอบไหน (ไม่ยืนจาก Butt Scoot)?",
    "context": "CREATE TABLE table_name_89 (round INTEGER, method VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_1 WHERE january < 7",
    "question_en": "What was the record after the game before Jan 7?",
    "question_th": "สถิติหลังเกมก่อนวันที่ 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_en": "Which TV season has a Season larger than 2, and a Ranking of #5?",
    "question_th": "รายการทีวีซีซั่นใดที่มีซีซั่นมากกว่า 2 และอยู่ในอันดับที่ 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_en": "Which TV season has a Season smaller than 8, and a Household (in millions) of 15.92 (17.1 rating)?",
    "question_th": "ซีซั่นทีวีใดที่มีซีซั่นน้อยกว่า 8 และครัวเรือน (เป็นล้าน) ที่ 15.92 (เรตติ้ง 17.1)",
    "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_en": "Which TV season has Households (in millions) of 30.503 (34.9 rating)?",
    "question_th": "รายการทีวีซีซันใดที่มีครัวเรือน (เป็นล้าน) อยู่ที่ 30.503 (เรตติ้ง 34.9)",
    "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_en": "What is the total number of area listed for cannonvale with a population less than 409?",
    "question_th": "จำนวนพื้นที่ทั้งหมดที่ระบุไว้สำหรับแคนนอนเวลที่มีประชากรน้อยกว่า 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_en": "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?",
    "question_th": "หมายเลขรหัสต่ำสุดสำหรับส่วนที่เหลือของเทศบาลที่มีพื้นที่มากกว่า 15.34 ตารางกิโลเมตร มีประชากรมากกว่า 762 คน และภาษาโซซาที่พูดคือข้อใด",
    "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_en": "What is the total code number for places with a population greater than 87,585?",
    "question_th": "หมายเลขรหัสรวมสำหรับสถานที่ที่มีประชากรมากกว่า 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_en": "What is the lowest area for cannonvale that speaks afrikaans?",
    "question_th": "พื้นที่ต่ำสุดสำหรับ cannonvale ที่พูดภาษาแอฟริกันคืออะไร?",
    "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_en": "Which Score has a Location of richfield coliseum?",
    "question_th": "คะแนนใดมีที่ตั้งของสนามกีฬาริชฟิลด์",
    "context": "CREATE TABLE table_name_96 (score VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_62 WHERE game = 78",
    "question_en": "Where was game 78 held?",
    "question_th": "เกม 78 จัดขึ้นที่ไหน?",
    "context": "CREATE TABLE table_name_62 (location VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_2 WHERE record = \"56-26\"",
    "question_en": "When was the score 56-26?",
    "question_th": "สกอร์ 56-26 เมื่อไหร่?",
    "context": "CREATE TABLE table_name_2 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_44 WHERE score = \"92-111\"",
    "question_en": "Which Opponent has a Score of 92-111?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีคะแนน 92-111?",
    "context": "CREATE TABLE table_name_44 (opponent VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_10 WHERE record = \"3-9\"",
    "question_en": "What was the Opponent when the Cavaliers had a Record of 3-9?",
    "question_th": "ฝ่ายตรงข้ามคืออะไรเมื่อ Cavaliers มีสถิติ 3-9?",
    "context": "CREATE TABLE table_name_10 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_14 WHERE score = \"105-128\"",
    "question_en": "On what Date was the Score 105-128?",
    "question_th": "คะแนน 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_en": "What is the Opponent of the game with a H/A/N of H and Score of 120-99?",
    "question_th": "ฝ่ายตรงข้ามของเกมที่มี H/A/N ของ H และคะแนน 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_en": "On what Date was the Score 106-104 against the Portland Trail Blazers?",
    "question_th": "คะแนน 106-104 เจอกับ พอร์ตแลนด์ เทรลเบลเซอร์ส ในวันไหน?",
    "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_en": "On what Date was the Score 105-118 and the H/A/N A?",
    "question_th": "คะแนน 105-118 และ H/A/NA คือวันใด",
    "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_en": "Which Selection has a College of texas a&m?",
    "question_th": "ตัวเลือกใดมีวิทยาลัย 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_en": "Which Selection has a Player of jamaar taylor, and a Round larger than 6?",
    "question_th": "ตัวเลือกใดมีผู้เล่นของจามาร์ เทย์เลอร์ และรอบที่มากกว่า 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_en": "Which Position has a Player of gibril wilson?",
    "question_th": "ตำแหน่งใดที่มีผู้เล่นของกิบริล วิลสัน?",
    "context": "CREATE TABLE table_name_29 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_13 WHERE round > 5 AND selection = 168",
    "question_en": "Which Position has a Round larger than 5, and a Selection of 168?",
    "question_th": "ตำแหน่งใดมีรอบที่มากกว่า 5 และตัวเลือก 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_en": "What is Jillian Evans highest number of seats?",
    "question_th": "Jillian Evans จำนวนที่นั่งสูงสุดคือเท่าไร?",
    "context": "CREATE TABLE table_name_45 (number_of_seats INTEGER, leader VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_name_50 WHERE leader = \"timothy kirkhope\"",
    "question_en": "Which party does Timothy Kirkhope lead?",
    "question_th": "Timothy Kirkhope เป็นผู้นำพรรคใด",
    "context": "CREATE TABLE table_name_50 (party VARCHAR, leader VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_68 WHERE player = \"daultan leveille\"",
    "question_en": "What is Daultan Leveille's Position?",
    "question_th": "ตำแหน่งของ Daultan Leveille คืออะไร?",
    "context": "CREATE TABLE table_name_68 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_23 WHERE round = 5",
    "question_en": "What is the Player in Round 5?",
    "question_th": "ผู้เล่นในรอบที่ 5 คืออะไร?",
    "context": "CREATE TABLE table_name_23 (player VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_name_58 WHERE game = 81",
    "question_en": "What is the highest rebounds for game 81?",
    "question_th": "รีบาวด์สูงสุดในเกม 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_en": "Who was the winner of the Miami tournament where Elena Dementieva was a finalist?",
    "question_th": "ใครคือผู้ชนะการแข่งขันไมอามี่ โดยที่ Elena Dementieva เข้ารอบสุดท้าย",
    "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_en": "Who was the finalist of the hard surface tournament in Miami?",
    "question_th": "ใครคือผู้เข้ารอบสุดท้ายของทัวร์นาเมนต์พื้นผิวแข็งในไมอามี?",
    "context": "CREATE TABLE table_name_66 (finalist VARCHAR, surface VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT semifinalists FROM table_name_6 WHERE tournament = \"rome\"",
    "question_en": "Who were the semifinalists in the Rome tournament?",
    "question_th": "ใครคือผู้เข้ารอบรองชนะเลิศในการแข่งขันโรม?",
    "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_en": "What is the resolution of the camera that has 6726 x 5040 pixels and a model of afi 7?",
    "question_th": "กล้องที่มีความละเอียด 6726 x 5040 พิกเซล และรุ่น 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_en": "Which model has a sensor sized 48x36 mm, pixels of 6726 x 5040, and a 33 mp resolution?",
    "question_th": "รุ่นใดมีเซ็นเซอร์ขนาด 48x36 มม. พิกเซล 6726 x 5040 และความละเอียด 33 MP",
    "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_en": "What are the active pixels of the cantare model?",
    "question_th": "Active Pixel ของรุ่น Cantare คืออะไร?",
    "context": "CREATE TABLE table_name_10 (active_pixels VARCHAR, model VARCHAR)"
  },
  {
    "answer": "SELECT active_pixels FROM table_name_96 WHERE model = \"c-most\"",
    "question_en": "What are the active pixels of the c-most model camera?",
    "question_th": "Active Pixel ของกล้องรุ่น c-most มีอะไรบ้าง?",
    "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_en": "Which Rank has a Third of 2, and Winners smaller than 2?",
    "question_th": "อันดับใดมีอันดับสามใน 2 และผู้ชนะน้อยกว่า 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_en": "How many Winners have a Third of 1, and Runners-up smaller than 0?",
    "question_th": "มีผู้ชนะกี่คนที่มีหนึ่งในสามของ 1 และรองชนะเลิศน้อยกว่า 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_en": "Which Third has Runners-up of 0, and Winners of 0, and a Club of far rabat?",
    "question_th": "อันดับสามคนไหนมีรองชนะเลิศ 0 และผู้ชนะ 0 และ 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_en": "Which Winners is the highest one that has a Rank larger than 7, and a Third smaller than 1?",
    "question_th": "ผู้ชนะคนใดคือผู้ชนะสูงสุดที่มีอันดับมากกว่า 7 และอันดับที่สามน้อยกว่า 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_en": "Which Leading Scorer has an Opponent of @ seattle, and a Record of 14-16?",
    "question_th": "ผู้ทำประตูสูงสุดคนใดที่มีคู่ต่อสู้ของ @ ซีแอตเทิล และสถิติ 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_en": "Which Score has an Opponent of @ houston, and a Record of 2-0?",
    "question_th": "สกอร์ใดที่มีคู่ต่อสู้ของ @ ฮูสตัน และสถิติ 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_en": "Which Attendance has a Date of september 7?",
    "question_th": "การเข้าร่วมใดมีวันที่ 7 กันยายน?",
    "context": "CREATE TABLE table_name_84 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_88 WHERE game = 3",
    "question_en": "What is the venue of game 3?",
    "question_th": "เกมที่ 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_en": "What is the lowest game number on 20 July 2008?",
    "question_th": "หมายเลขเกมต่ำสุดในวันที่ 20 กรกฎาคม พ.ศ. 2551 คืออะไร?",
    "context": "CREATE TABLE table_name_33 (game INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_52 WHERE date = \"20 july 2008\"",
    "question_en": "What is the result on 20 July 2008?",
    "question_th": "ผลประกอบการวันที่ 20 กรกฎาคม 2551 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_52 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(game) FROM table_name_95 WHERE opponent = \"athlone town\"",
    "question_en": "What is the total game number with athlone town as the opponent?",
    "question_th": "จำนวนเกมทั้งหมดที่มีแอธโลนทาวน์เป็นคู่ต่อสู้คือเท่าไร?",
    "context": "CREATE TABLE table_name_95 (game VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_7 WHERE venue = \"away\" AND game > 6",
    "question_en": "What is the result of the game with a game number greater than 6 and an away venue?",
    "question_th": "อะไรคือผลลัพธ์ของเกมที่มีหมายเลขเกมมากกว่า 6 และสนามเยือน?",
    "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_en": "What was the end date when Alex Bodry was the minister?",
    "question_th": "วันที่สิ้นสุดเมื่อ Alex Bodry เป็นรัฐมนตรีคือเมื่อใด",
    "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_en": "Who was the minister for the CSV party with a present day end date?",
    "question_th": "ใครเป็นรัฐมนตรีของพรรค CSV ที่มีวันสิ้นสุดในปัจจุบัน?",
    "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_en": "What is the sum of the points of the game with philadelphia as the visitor and an attendance greater than 7,284?",
    "question_th": "ผลรวมของคะแนนในเกมที่มีฟิลาเดลเฟียในฐานะผู้มาเยือนและผู้เข้าชมมากกว่า 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_en": "What is the lowest amount of points of the game with toronto as the home team?",
    "question_th": "แต้มต่ำสุดของเกมโดยมีโตรอนโตเป็นเจ้าบ้านคือเท่าไร?",
    "context": "CREATE TABLE table_name_99 (points INTEGER, home VARCHAR)"
  },
  {
    "answer": "SELECT SUM(laps) FROM table_name_52 WHERE rider = \"pere riba\"",
    "question_en": "How many laps did pere riba ride?",
    "question_th": "เปเรริบาขี่ไปกี่รอบ?",
    "context": "CREATE TABLE table_name_52 (laps INTEGER, rider VARCHAR)"
  },
  {
    "answer": "SELECT laps FROM table_name_97 WHERE grid = 4",
    "question_en": "How many laps were in grid 4?",
    "question_th": "ตารางที่ 4 มีกี่รอบ?",
    "context": "CREATE TABLE table_name_97 (laps VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT manufacturer FROM table_name_91 WHERE grid = 11",
    "question_en": "Who manufactured grid 11?",
    "question_th": "ใครเป็นผู้ผลิตกริด 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_en": "Which Grid has Laps larger than 26, and a Time/Retired of 44:39.467?",
    "question_th": "กริดใดมีรอบมากกว่า 26 และเวลา/เกษียณเป็น 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_en": "Which Horse finished in 8?",
    "question_th": "ม้าตัวไหนจบใน 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_en": "Who is the Jockey that has Nick Zito as Trainer and Odds of 34-1?",
    "question_th": "จ๊อกกี้คือใครที่มี นิค ซิโต้ เป็นผู้ฝึกสอน และอัตราต่อรอง 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_en": "What are the Odds for the Horse called Ready's Echo?",
    "question_th": "อัตราต่อรองสำหรับม้าที่เรียกว่า 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_en": "What are the Odds for Trainer Barclay Tagg?",
    "question_th": "อัตราต่อรองของเทรนเนอร์ บาร์เคลย์ แท็กก์ คืออะไร?",
    "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_en": "What is the Finished place for da'tara trained by Nick zito?",
    "question_th": "สถานที่เสร็จสิ้นสำหรับ da'tara ที่ฝึกโดย 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_en": "Who is the Jockey for guadalcanal?",
    "question_th": "ใครคือ Jockey สำหรับ 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_en": "Which Manufacturer has a Time of accident and a Grid greater than 15?",
    "question_th": "ผู้ผลิตรายใดที่มีเวลาเกิดอุบัติเหตุและมีกริดมากกว่า 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_en": "What is the verb for Khola?",
    "question_th": "คำกริยาของ Khola คืออะไร?",
    "context": "CREATE TABLE table_name_1 (verb VARCHAR)"
  },
  {
    "answer": "SELECT 2 AS __f_ FROM table_name_34 WHERE verb = \"khola\"",
    "question_en": "What is the 2nd verb for Khola?",
    "question_th": "กริยาตัวที่ 2 ของ Khola คืออะไร?",
    "context": "CREATE TABLE table_name_34 (verb VARCHAR)"
  },
  {
    "answer": "SELECT 2 AS __f_ FROM table_name_7 WHERE verb = \"chena\"",
    "question_en": "What is the 2nd verb for chena?",
    "question_th": "กริยาตัวที่ 2 ของ 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–10\"",
    "question_en": "Which Lead has a Third of randy ferbey (skip), a Second of scott pfeifer, and a Season of 2009–10?",
    "question_th": "Lead คนไหนมี Randy Ferbey คนที่สาม (ข้าม) คนที่สองของ Scott Pfeifer และฤดูกาลปี 2009–10",
    "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_en": "Which Season has a Third of colin hodgson?",
    "question_th": "ซีซั่นใดมีคอลิน ฮอดจ์สันคนที่ 3 บ้าง?",
    "context": "CREATE TABLE table_name_47 (season VARCHAR, third VARCHAR)"
  },
  {
    "answer": "SELECT second FROM table_name_6 WHERE lead = \"ben hebert\"",
    "question_en": "Which Second has a Lead of ben hebert?",
    "question_th": "วินาทีไหนมีผู้นำของเบน ฮิวเบิร์ต?",
    "context": "CREATE TABLE table_name_6 (second VARCHAR, lead VARCHAR)"
  },
  {
    "answer": "SELECT third FROM table_name_29 WHERE second = \"scott pfeifer\"",
    "question_en": "Which Third has a Second of scott pfeifer?",
    "question_th": "คนที่สามคนไหนมีวินาทีของ 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_en": "Which Second has a Third of david nedohin, and a Lead of ben hebert?",
    "question_th": "วินาทีไหนมีหนึ่งในสามของเดวิด เนโดฮิน และผู้นำของเบน ฮิวเบิร์ต",
    "context": "CREATE TABLE table_name_76 (second VARCHAR, third VARCHAR, lead VARCHAR)"
  },
  {
    "answer": "SELECT skip FROM table_name_77 WHERE season = \"2002–03\"",
    "question_en": "Which Skip has a Season of 2002–03?",
    "question_th": "Skip ใดมีฤดูกาล 2545–03",
    "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_en": "What was the date of the poll with a sample size of 496 where Republican Mike Huckabee was chosen?",
    "question_th": "วันที่ทำการสำรวจความคิดเห็นที่มีขนาดกลุ่มตัวอย่าง 496 คน ซึ่งพรรครีพับลิกัน ไมค์ ฮัคคาบี ได้รับเลือกคือเมื่อใด",
    "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_en": "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?",
    "question_th": "ขนาดตัวอย่างของการสำรวจความคิดเห็นในวันที่ 13-15 ธันวาคม พ.ศ. 2550 ซึ่งมีข้อผิดพลาดมากกว่า 4 และส่งผลให้พรรครีพับลิกัน 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_en": "Which Democrat was selected in the poll with a sample size smaller than 516 where the Republican chosen was Ron Paul?",
    "question_th": "พรรคเดโมแครตคนใดที่ถูกเลือกในการสำรวจความคิดเห็นโดยมีขนาดตัวอย่างน้อยกว่า 516 โดยที่พรรครีพับลิกันเลือกคือรอน พอล",
    "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_en": "When was the show 9 to 5 returning?",
    "question_th": "รายการ 9 ถึง 5 จะกลับมาเมื่อไหร่?",
    "context": "CREATE TABLE table_name_7 (returning VARCHAR, show VARCHAR)"
  },
  {
    "answer": "SELECT MIN(last_aired) FROM table_name_1 WHERE returning = \"september 13\"",
    "question_en": "What was the earliest aired show that's returning on September 13?",
    "question_th": "รายการใดที่ออกอากาศเร็วที่สุดที่จะกลับมาในวันที่ 13 กันยายน?",
    "context": "CREATE TABLE table_name_1 (last_aired INTEGER, returning VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_82 WHERE score = \"74-66\"",
    "question_en": "What is the Opponent of the game with a Score of 74-66?",
    "question_th": "ฝ่ายตรงข้ามของเกมที่มีคะแนน 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_en": "What is the Score of the game @ San Antonio on June 20?",
    "question_th": "ผลการแข่งขัน @ซานอันโตนิโอ วันที่ 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_en": "What is the Record of the game on September 6?",
    "question_th": "บันทึกของเกมวันที่ 6 กันยายนเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_49 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_38 WHERE score = \"65-48\"",
    "question_en": "What is the Record of the game with a Score of 65-48?",
    "question_th": "สถิติของเกมด้วยสกอร์ 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_en": "What is the lowest League Cup Goals, when Scorer is Denis Law?",
    "question_th": "ประตูลีกคัพต่ำที่สุดเมื่อผู้ทำประตูคือเดนิส ลอว์?",
    "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_en": "What is the average Total, when FA Cup Goals is 1, when League Goals is 10, and when Club is Crystal Palace?",
    "question_th": "ผลรวมโดยเฉลี่ยคือเท่าไร เมื่อประตูเอฟเอคัพคือ 1 เมื่อประตูในลีกคือ 10 และเมื่อใดที่สโมสรคือคริสตัล พาเลซ",
    "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_en": "What is the total number of Total, when Club is Leeds United, and when League Goals is 13?",
    "question_th": "จำนวนประตูทั้งหมดเมื่อสโมสรคือลีดส์ยูไนเต็ด และเมื่อประตูลีกคือ 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_en": "What is FA Cup Goals, when Euro Competitions is 1, and when League Goals is 11?",
    "question_th": "ประตู FA Cup คืออะไร เมื่อการแข่งขันยูโรคือ 1 และเมื่อประตูลีกคือ 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_en": "What tournament had finalist Monica Seles?",
    "question_th": "Monica Seles ผู้เข้ารอบสุดท้ายในทัวร์นาเมนต์ใด",
    "context": "CREATE TABLE table_name_49 (tournament VARCHAR, finalist VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_6 WHERE finalist = \"martina hingis\"",
    "question_en": "What week was the finalist Martina Hingis?",
    "question_th": "Martina Hingis ผู้เข้ารอบสุดท้ายคือสัปดาห์ใด",
    "context": "CREATE TABLE table_name_6 (week VARCHAR, finalist VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_56 WHERE finalist = \"justine henin\"",
    "question_en": "What was the surface for finalist Justine Henin?",
    "question_th": "อะไรคือพื้นผิวของผู้เข้ารอบสุดท้าย Justine Henin?",
    "context": "CREATE TABLE table_name_56 (surface VARCHAR, finalist VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_67 WHERE tournament = \"indian wells\"",
    "question_en": "Who was the winner in the Indian Wells?",
    "question_th": "ใครคือผู้ชนะใน 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_en": "Which race did Bill Holland win in 1946?",
    "question_th": "Bill Holland ชนะการแข่งขันรายการใดในปี 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_en": "What date did Ted Horn win Lakewood Race 2?",
    "question_th": "Ted Horn ชนะ 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_en": "Who won on September 6?",
    "question_th": "ใครชนะในวันที่ 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_en": "Jud Larson who which race after 1956?",
    "question_th": "Jud Larson ใครแข่งหลังปี 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_en": "What is the Total medals for the Nation ranking 33 with more than 1 Bronze?",
    "question_th": "เหรียญรวมของประเทศอันดับที่ 33 ที่มีมากกว่า 1 เหรียญทองแดงคือเท่าใด",
    "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_en": "How many games have an Attendance of 19,190?",
    "question_th": "มีกี่เกมที่มีผู้เข้าร่วม 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_en": "How many games had a Time of 2:14?",
    "question_th": "มีกี่เกมที่มีเวลา 2:14?",
    "context": "CREATE TABLE table_name_45 (game INTEGER, time VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_41 WHERE time = \"2:28\"",
    "question_en": "Which Score has a Time of 2:28?",
    "question_th": "คะแนนใดมีเวลา 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–2 november\"",
    "question_en": "Which Result has a Captain 1 of louis burger, and a Date of 30 october–2 november?",
    "question_th": "ผลลัพธ์ใดมีกัปตัน 1 ของหลุยส์ เบอร์เกอร์ และวันที่ 30 ตุลาคม–2 พฤศจิกายน",
    "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_en": "Which Team 2 has a Captain 1 of final?",
    "question_th": "ทีม 2 คนไหนมีกัปตัน 1 ในรอบชิงชนะเลิศ?",
    "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_en": "Which Captain 2 has a Result of ireland by 8 runs?",
    "question_th": "กัปตัน 2 คนไหนมีผลงานไอร์แลนด์ 8 รัน?",
    "context": "CREATE TABLE table_name_87 (captain_2 VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_81 WHERE captain_2 = \"louis burger\"",
    "question_en": "Which Result has a Captain 2 of louis burger?",
    "question_th": "ผลลัพธ์ใดมีกัปตัน 2 ของหลุยส์เบอร์เกอร์?",
    "context": "CREATE TABLE table_name_81 (result VARCHAR, captain_2 VARCHAR)"
  },
  {
    "answer": "SELECT captain_2 FROM table_name_50 WHERE result = \"final\"",
    "question_en": "Which Captain 2 has a Result of final?",
    "question_th": "กัปตัน 2 คนไหนมีผลการแข่งขันรอบสุดท้าย?",
    "context": "CREATE TABLE table_name_50 (captain_2 VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT kosal FROM table_name_97 WHERE sitalsasthi_carnival = \"balangir town\"",
    "question_en": "What is the Kosal with a balangir town sitalsasthi carnival?",
    "question_th": "Kosal กับเทศกาล Sitalsthi เมือง Balangir คืออะไร?",
    "context": "CREATE TABLE table_name_97 (kosal VARCHAR, sitalsasthi_carnival VARCHAR)"
  },
  {
    "answer": "SELECT kosal FROM table_name_94 WHERE sambalpuri_cinema = \"hatibandha\"",
    "question_en": "What is the kosal with hatibandha as the sambalpuri cinema?",
    "question_th": "โศลที่มีหติบันธาเป็นโรงภาพยนตร์ซัมบัลปุรีคืออะไร?",
    "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_en": "What is the sambalpuri saree with a samaleswari temple as sambalpuri language?",
    "question_th": "Sambalpuri saree กับวัด Samaleswari เป็นภาษา Samballpuri คืออะไร?",
    "context": "CREATE TABLE table_name_22 (sambalpuri_saree VARCHAR, sambalpuri_language VARCHAR)"
  },
  {
    "answer": "SELECT sitalsasthi_carnival FROM table_name_97 WHERE kosal = \"sonepur\"",
    "question_en": "What is the sitalsasthi carnival with sonepur as kosal?",
    "question_th": "เทศกาลซิตัลสัถถีที่มีโสเนปูร์เป็นโกศลคืออะไร?",
    "context": "CREATE TABLE table_name_97 (sitalsasthi_carnival VARCHAR, kosal VARCHAR)"
  },
  {
    "answer": "SELECT sitalsasthi_carnival FROM table_name_92 WHERE sambalpuri_saree = \"hirakud\"",
    "question_en": "What is the sitalsasthi carnival with hirakud as sambalpuri saree?",
    "question_th": "งานรื่นเริงซิตาลซัสธีที่มีหิระคุดเป็นซัมบัลปุรีส่าหรีคืออะไร?",
    "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_en": "What was the attendance when their record stood at 0-2-2?",
    "question_th": "ผู้เข้าร่วมเมื่อบันทึกของพวกเขาอยู่ที่ 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_en": "On what date was the venue Away and the result was lost 6-4 (lost 9-7 on agg)?",
    "question_th": "สนามเยือนคือวันไหนและผลแพ้ 6-4 (แพ้ 9-7 กับ agg)?",
    "context": "CREATE TABLE table_name_5 (date VARCHAR, venue VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_31 WHERE date = \"26th\"",
    "question_en": "What was the result on the 26th?",
    "question_th": "ผลวันที่ 26 เป็นยังไงบ้าง?",
    "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_en": "What was the date when the opponent was Sheffield Scimitars and the venue was Home?",
    "question_th": "วันที่เท่าไหร่ที่คู่ต่อสู้คือเชฟฟิลด์ สซิมิทาร์ส และสถานที่จัดคือเจ้าบ้าน?",
    "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_en": "Who was the Man of the Match when the opponent was Milton Keynes Lightning and the venue was Away?",
    "question_th": "ใครคือแมนออฟเดอะแมตช์เมื่อคู่ต่อสู้คือมิลตัน คีนส์ ไลท์นิ่ง และสถานที่แข่งเป็นทีมเยือน?",
    "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_en": "What competition was held on the 26th?",
    "question_th": "วันที่ 26 มีการแข่งขันอะไรบ้าง?",
    "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_en": "What was the date when the attendance was n/a and the Man of the Match was unknown?",
    "question_th": "วันที่ใดที่ผู้เข้าร่วมไม่มีข้อมูล และไม่ทราบ Man of the Match?",
    "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_en": "What Edition had a Result of 6-3, 6-0, 6-2?",
    "question_th": "รุ่นใดมีผล 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_en": "What is the date of Super G in the 2010 season?",
    "question_th": "Super G ในฤดูกาล 2010 คือวันที่เท่าไร?",
    "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_en": "When the communities name is Balmoral and the area is over 43.51 kilometers squared, what's the total population amount?",
    "question_th": "เมื่อชื่อชุมชนคือบัลมอรัล และมีพื้นที่มากกว่า 43.51 ตารางกิโลเมตร จำนวนประชากรทั้งหมดคือเท่าใด",
    "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_en": "When the status is rural community what's the lowest area in kilometers squared?",
    "question_th": "เมื่อสถานะเป็นชุมชนชนบทพื้นที่ต่ำสุดเป็นกิโลเมตรยกกำลังสองคือเท่าใด",
    "context": "CREATE TABLE table_name_47 (area_km_2 INTEGER, status VARCHAR)"
  },
  {
    "answer": "SELECT SUM(gold) FROM table_name_79 WHERE total < 1",
    "question_en": "How many total golds do teams have when the total medals is less than 1?",
    "question_th": "ทีมมีเหรียญทองทั้งหมดกี่เหรียญเมื่อเหรียญรวมน้อยกว่า 1 เหรียญ?",
    "context": "CREATE TABLE table_name_79 (gold INTEGER, total INTEGER)"
  },
  {
    "answer": "SELECT semifinalists FROM table_name_12 WHERE tournament = \"key biscane\"",
    "question_en": "who was the semifinalist for the Key Biscane tournament?",
    "question_th": "ใครคือผู้เข้ารอบรองชนะเลิศของทัวร์นาเมนต์ Key Biscane?",
    "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_en": "What is the score of the game before 56 held after February 18 against the Chicago Black Hawks.",
    "question_th": "สกอร์ของเกมก่อน 56 จัดขึ้นหลังวันที่ 18 กุมภาพันธ์ พบกับ ชิคาโก้ แบล็ค ฮอว์กส์",
    "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_en": "What was the score of the game 57 after February 23?",
    "question_th": "สกอร์เกม 57 หลังวันที่ 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_en": "Who had the lowest laps on a grid smaller than 16 with a time of +21.689?",
    "question_th": "ใครมีรอบต่ำสุดในกริดที่เล็กกว่า 16 ด้วยเวลา +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_en": "What laps did Honda do with a time of +1:38.407?",
    "question_th": "ฮอนด้าทำรอบใดด้วยเวลา +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_en": "What grid is Ducati with fewer than 22 laps?",
    "question_th": "Ducati ที่วิ่งน้อยกว่า 22 รอบ กริดไหน?",
    "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_en": "What is Honda's highest grid with a time of +1:38.407?",
    "question_th": "ตารางคะแนนสูงสุดของฮอนด้าด้วยเวลา +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_en": "What is the to par of player bunky henry?",
    "question_th": "อะไรคือสิ่งที่ได้เปรียบของผู้เล่นบังกี้ เฮนรี่?",
    "context": "CREATE TABLE table_name_5 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_90 WHERE player = \"bob rosburg\"",
    "question_en": "What is the score of player bob rosburg?",
    "question_th": "นักเตะ บ็อบ รอสเบิร์ก มีค่าตัวเท่าไร?",
    "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_en": "Who is the player with a t6 place and a 72-68-72=212 score?",
    "question_th": "ใครคือผู้เล่นอันดับ 6 และคะแนน 72-68-72=212?",
    "context": "CREATE TABLE table_name_7 (player VARCHAR, place VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_46 WHERE player = \"bob rosburg\"",
    "question_en": "What is the score of player bob rosburg?",
    "question_th": "นักเตะ บ็อบ รอสเบิร์ก มีค่าตัวเท่าไร?",
    "context": "CREATE TABLE table_name_46 (score VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_51 WHERE score = 68 - 69 - 73 = 210",
    "question_en": "What is the place of the 68-69-73=210?",
    "question_th": "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_en": "What is Record, when High Rebounds is \"Tyson Chandler (6)\"?",
    "question_th": "Record คืออะไร เมื่อ High Rebounds คือ “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_en": "What is Date, when Location Attendance is \"TD Banknorth Garden 18,624\"?",
    "question_th": "วันที่เท่าไหร่ซึ่งตำแหน่งผู้เข้าร่วมคือ \"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_en": "What is the average Game, when Date is \"December 23\"?",
    "question_th": "เกมโดยเฉลี่ยคือวันที่ \"23 ธันวาคม\" คืออะไร?",
    "context": "CREATE TABLE table_name_58 (game INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_29 WHERE team = \"@ memphis\"",
    "question_en": "What is Score, when Team is \"@ Memphis\"?",
    "question_th": "Score คืออะไร เมื่อทีมคือ \"@ 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_en": "What's the post position when the lengths behind is 0?",
    "question_th": "ตำแหน่งโพสต์คืออะไรเมื่อความยาวด้านหลังเป็น 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_en": "What's the lengths behind of Jockey Ramon A. Dominguez?",
    "question_th": "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_en": "Who was the jockey that had post time odds of 34-1?",
    "question_th": "ใครคือจ๊อกกี้ที่มีอัตราต่อรองเวลาโพสต์ 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_en": "Who is the owner of Icabad Crane?",
    "question_th": "ใครคือเจ้าของ 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_en": "What is the lengths behind of Jeremy Rose?",
    "question_th": "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_en": "How many wins for average start less than 25?",
    "question_th": "ชนะกี่ครั้งโดยเฉลี่ยเริ่มต้นน้อยกว่า 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_en": "What is the average top 10 score for 2 starts, winnings of $135,984 and an average finish more than 43?",
    "question_th": "คะแนนเฉลี่ย 10 อันดับแรกสำหรับการออกสตาร์ท 2 ครั้ง เงินรางวัล 135,984 ดอลลาร์ และการจบสกอร์เฉลี่ยมากกว่า 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_en": "How many starts for an average finish greater than 43?",
    "question_th": "มีการออกสตาร์ทกี่ครั้งสำหรับการจบสกอร์เฉลี่ยที่มากกว่า 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_en": "What is the 1987 results when the results of 1989 is 3R, and the 1986 results is F?",
    "question_th": "ผลลัพธ์ปี 1987 คืออะไรเมื่อผลลัพธ์ปี 1989 คือ 3R และผลลัพธ์ปี 1986 คือ F",
    "context": "CREATE TABLE table_name_47 (Id VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_24 WHERE 1983 = \"0 / 1\"",
    "question_en": "In 1983 what is the tournament that is 0 / 1?",
    "question_th": "ในปี 1983 การแข่งขันที่เป็น 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_en": "What tournament has 0 / 5 as career SR and A as 1983?",
    "question_th": "ทัวร์นาเมนต์ใดที่มี 0/5 เป็นอาชีพ SR และ A เป็นปี 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_en": "What is the result in 1985 when the career win-loss is n/a, and 0 / 23 as the career SR?",
    "question_th": "ผลลัพธ์ในปี 1985 คืออะไร เมื่อการชนะ-แพ้ในอาชีพไม่มี และ 0/23 เป็น 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_en": "With a 1986 of NH and a career SR of 0 / 5 what is the results in 1985?",
    "question_th": "ด้วย NH ปี 1986 และ SR อาชีพ 0/5 ผลลัพธ์ในปี 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_en": "Which Overall has a Name of bob anderson, and a Round smaller than 9?",
    "question_th": "Overall ใดมีชื่อ Bob Anderson และรอบที่เล็กกว่า 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_en": "What is stanford's average overall?",
    "question_th": "ค่าเฉลี่ยของสแตนฟอร์ดโดยรวมคือเท่าไร?",
    "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_en": "Which pick has a Round smaller than 8, and an Overall smaller than 16, and a Name of harry gilmer?",
    "question_th": "ตัวเลือกใดมีรอบที่เล็กกว่า 8 และโดยรวมน้อยกว่า 16 และชื่อของ 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_en": "How much Overall has a Name of bob anderson?",
    "question_th": "โดยรวมแล้วมีชื่อของ 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_en": "What is the points number when 20 shows for played, and lost is 0?",
    "question_th": "เมื่อเล่นครบ 20 โชว์ แพ้ 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_en": "What is the points when the try bonus is 1?",
    "question_th": "คะแนนเมื่อโบนัสลองเป็น 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_en": "What club has a played number of 19, and the lost of 14?",
    "question_th": "สโมสรใดเล่นได้ 19 นัด และแพ้ 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_en": "What is the tries for when 52 was the tries against?",
    "question_th": "อะไรคือความพยายามเมื่อ 52 พยายามต่อต้าน?",
    "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_en": "What is the lost when the try bonus is 5, and points against is 298?",
    "question_th": "จะสูญเสียอะไรไปเมื่อโบนัสลองเป็น 5 และแต้มต่อคือ 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_en": "What is the tries against when the points are 475?",
    "question_th": "ความพยายามต่อต้านอะไรเมื่อคะแนนอยู่ที่ 475?",
    "context": "CREATE TABLE table_name_70 (tries_against VARCHAR, points_for VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_73 WHERE points = \"26\"",
    "question_en": "Which team has 26 points?",
    "question_th": "ทีมไหนมี 26 แต้ม?",
    "context": "CREATE TABLE table_name_73 (team VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_name_17 WHERE driver = \"kosuke matsuura\"",
    "question_en": "How many points does driver kosuke matsuura have?",
    "question_th": "คนขับโคสุเกะ มัตสึอุระ มีกี่คะแนน?",
    "context": "CREATE TABLE table_name_17 (points VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT grid FROM table_name_88 WHERE points = \"24\"",
    "question_en": "What grid has 24 points?",
    "question_th": "ตารางใดมี 24 คะแนน?",
    "context": "CREATE TABLE table_name_88 (grid VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT laps FROM table_name_46 WHERE driver = \"dario franchitti\"",
    "question_en": "How many laps does driver dario franchitti have?",
    "question_th": "คนขับ ดาริโอ ฟรานชิตติ วิ่งได้กี่รอบ?",
    "context": "CREATE TABLE table_name_46 (laps VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_16 WHERE method = \"ko\"",
    "question_en": "What was the record when the method of resolution was KO?",
    "question_th": "บันทึกเมื่อวิธีการแก้ไขคือ KO คืออะไร?",
    "context": "CREATE TABLE table_name_16 (record VARCHAR, method VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_14 WHERE event = \"ufc 27\"",
    "question_en": "What is the record during the event, UFC 27?",
    "question_th": "บันทึกระหว่างงาน UFC 27 คืออะไร?",
    "context": "CREATE TABLE table_name_14 (record VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_1 WHERE opponent = \"keith rockel\"",
    "question_en": "What is the record when the fight was against keith rockel?",
    "question_th": "บันทึกเมื่อต่อสู้กับคีธ ร็อคเคิลคืออะไร?",
    "context": "CREATE TABLE table_name_1 (record VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_97 WHERE time = \"0:10\"",
    "question_en": "Who was the opponent when the fight had a time of 0:10?",
    "question_th": "คู่ต่อสู้คือใครเมื่อการต่อสู้มีเวลา 0:10?",
    "context": "CREATE TABLE table_name_97 (opponent VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_71 WHERE time = \"2:01\"",
    "question_en": "Who was the opponent when the fight had a time of 2:01?",
    "question_th": "คู่ต่อสู้คือใครเมื่อการต่อสู้มีเวลา 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_en": "What was the resolution for the fight against tom bolger by submission (guillotine choke)?",
    "question_th": "วิธีแก้ปัญหาในการต่อสู้กับทอม โบลเจอร์โดยการยอมจำนน (กิโยตินสำลัก) คืออะไร?",
    "context": "CREATE TABLE table_name_65 (res VARCHAR, method VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_61 WHERE result = \"3-2\"",
    "question_en": "What is the score of the match with a 3-2 result?",
    "question_th": "แมตช์นี้เสมอกัน 3-2 สกอร์เท่าไหร่?",
    "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_en": "Who wears the jersey number 20 and has the position of SG?",
    "question_th": "ใครสวมเสื้อหมายเลข 20 และมีตำแหน่ง 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_en": "What position does the player with jersey number 22 play?",
    "question_th": "นักเตะเสื้อหมายเลข 22 เล่นตำแหน่งอะไร?",
    "context": "CREATE TABLE table_name_65 (position VARCHAR, jersey_number_s_ VARCHAR)"
  },
  {
    "answer": "SELECT MIN(loss) FROM table_name_41 WHERE long < 0",
    "question_en": "What is the lowest Loss, when Long is less than 0?",
    "question_th": "อะไรคือการสูญเสียต่ำสุด เมื่อ Long น้อยกว่า 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_en": "What is the average Loss, when Avg/g is 0, and when Long is less than 0?",
    "question_th": "อะไรคือการสูญเสียโดยเฉลี่ย เมื่อ Avg/g เท่ากับ 0 และเมื่อ Long น้อยกว่า 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_en": "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?",
    "question_th": "อะไรคือการสูญเสียสูงสุด เมื่อ Long มากกว่า 0 เมื่อกำไรมากกว่า 484 และเมื่อ Avg/g มากกว่า 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_en": "What is the lowest Long, when Name is Kass, Rob, and when Avg/g is less than -0.30000000000000004?",
    "question_th": "ค่า Long ต่ำสุดคือเท่าใด เมื่อ Name คือ Kass, Rob และเมื่อ Avg/g น้อยกว่า -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_en": "Who is the player from the United States with a total less than 293 and won in 1984?",
    "question_th": "ใครคือผู้เล่นจากสหรัฐอเมริกาที่มีคะแนนรวมน้อยกว่า 293 และชนะในปี 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_en": "What is the average total of player hale irwin, who had a t52 finish?",
    "question_th": "จำนวนรวมเฉลี่ยของผู้เล่น เฮล เออร์วิน ที่จบสกอร์ t52 เป็นเท่าใด",
    "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_en": "Who is the player who won in 1994?",
    "question_th": "ใครคือผู้เล่นที่ชนะในปี 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_en": "What year did player steve jones, who had a t60 finish, win?",
    "question_th": "ผู้เล่นสตีฟ โจนส์ ที่จบสกอร์ t60 ชนะในปีใด",
    "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_en": "What was the result for a friendly match?",
    "question_th": "ผลการแข่งขันนัดกระชับมิตรเป็นอย่างไร?",
    "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_en": "Which player from the United States won in 1962?",
    "question_th": "ผู้เล่นคนใดจากสหรัฐอเมริกาชนะในปี 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_en": "What was Gary Player's highest total when his To par was over 15?",
    "question_th": "อะไรคือคะแนนรวมสูงสุดของ Gary Player เมื่อพาร์ของเขามากกว่า 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_en": "What is Trial Start Date, when Candidate Name is Notes?",
    "question_th": "วันที่เริ่มต้นการทดลองใช้คืออะไร เมื่อชื่อผู้สมัครเป็น 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_en": "What is Candidate Name, when Target/Approach is \"vaccine to amyloid-beta\"?",
    "question_th": "ชื่อผู้สมัครคืออะไร เมื่อเป้าหมาย/แนวทางคือ \"วัคซีนป้องกันอะไมลอยด์-เบต้า\"",
    "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_en": "What is Trial Phase, when Expected End Date is June 2007?",
    "question_th": "ระยะทดลองคืออะไร เมื่อวันสิ้นสุดที่คาดหวังคือเดือนมิถุนายน 2550",
    "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_en": "What is Expected End Date, when Target/Approach is Notes?",
    "question_th": "วันที่สิ้นสุดที่คาดหวังคืออะไร เมื่อเป้าหมาย/แนวทางเป็น 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_en": "What is Trial Start Date, when Candidate Name is PBT2?",
    "question_th": "วันที่เริ่มต้นการทดลองใช้คือเมื่อใด เมื่อชื่อผู้สมัครคือ 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_en": "What is Expected End Date, when Trial Start Date is Nov 2007?",
    "question_th": "วันที่สิ้นสุดที่คาดหวังคือวันที่เริ่มต้นการทดลองใช้คือเดือนพฤศจิกายน 2550",
    "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_en": "Which rider had a time/retired od +19.909?",
    "question_th": "นักบิดคนไหนมีเวลา/เกษียณที่ +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_en": "What is the time/retired for the rider with the manufacturuer yamaha, grod of 1 and 21 total laps?",
    "question_th": "เวลา/เกษียณสำหรับผู้ขับขี่กับผู้ผลิตยามาฮ่า คือจำนวนรอบรวม 1 และ 21 รอบ?",
    "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_en": "How many laps did Valentino rossi have when riding a vehicle manufactured by yamaha?",
    "question_th": "วาเลนติโน รอสซี ขี่รถที่ผลิตโดยยามาฮ่าได้กี่รอบ?",
    "context": "CREATE TABLE table_name_77 (laps VARCHAR, manufacturer VARCHAR, rider VARCHAR)"
  },
  {
    "answer": "SELECT rider FROM table_name_26 WHERE manufacturer = \"kr211v\"",
    "question_en": "WWhich rder had a vehicle manufactured by kr211v?",
    "question_th": "Wรถคันไหนที่ผลิตโดย 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_en": "When rider John Hopkins had 21 laps, what was the grid?",
    "question_th": "เมื่อนักแข่ง John Hopkins มี 21 รอบ ตารางการแข่งขันจะเป็นอย่างไร?",
    "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_en": "What was the amount of laps for the vehicle manufactured by honda with a grid of 9?",
    "question_th": "จำนวนรอบของรถฮอนด้าที่ผลิตโดยฮอนด้าที่มีตาราง 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_en": "Which Laps have a Time/Retired of +23.215, and a Grid larger than 11?",
    "question_th": "รอบใดมีเวลา/เกษียณเป็น +23.215 และตารางที่ใหญ่กว่า 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_en": "Which Manufacturer has a Time/Retired of accident?",
    "question_th": "ผู้ผลิตรายใดมีเวลา/เกษียณจากอุบัติเหตุ?",
    "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_en": "Which Grid has Laps of 25, and a Manufacturer of honda, and a Time/Retired of +1:47.797?",
    "question_th": "กริดใดมีรอบ 25 รอบ และเป็นผู้ผลิตฮอนด้า และเวลา/เกษียณอยู่ที่ +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_en": "What is the number of poles with 104 points?",
    "question_th": "104จุดมีกี่เสา?",
    "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_en": "What is the number of podiums with 0 wins, 0 F.L. and 35 points?",
    "question_th": "จำนวนโพเดียมที่ชนะ 0 0 FL และ 35 แต้มคือเท่าไร?",
    "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_en": "What is the number of poles with 4 races?",
    "question_th": "มี 4 ขั้วจำนวนเท่าไรครับ?",
    "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_en": "What races have gp2 series, 0 F.L. and a 17th position?",
    "question_th": "เผ่าพันธุ์ไหนมี gp2 series, 0 FL และอันดับที่ 17?",
    "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_en": "What is the number of podiums with 0 wins and 6 points?",
    "question_th": "จำนวนโพเดียมที่ชนะ 0 และ 6 แต้มคือเท่าไร?",
    "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_en": "What is the number of wins with a 0 F.L., 0 poles, a position of 7th, and 35 points?",
    "question_th": "ชนะ 0 ฟลอร์ 0 โพล อันดับ 7 มี 35 แต้ม กี่แต้ม?",
    "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_en": "Which pick came from Pittsburgh?",
    "question_th": "ตัวเลือกใดมาจากพิตต์สเบิร์ก?",
    "context": "CREATE TABLE table_name_60 (pick VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT SUM(pick) FROM table_name_25 WHERE college = \"texas el-paso\"",
    "question_en": "Which pick came from Texas El-Paso?",
    "question_th": "ตัวเลือกใดมาจาก 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_en": "WHAT IS THE OPENING WITH A WORLDWIDE NUMBER OF $559,852,396?",
    "question_th": "การเปิดตัวด้วยจำนวน 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_en": "WHAT IS THE BUDGET WHEN THE WORLDWIDE BOX OFFICE IS $363,398,565?",
    "question_th": "งบประมาณคืออะไรเมื่อบ็อกซ์ออฟฟิศทั่วโลกอยู่ที่ 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_en": "WHAT IS THE BUDGET FOR THE INCREDIBLES?",
    "question_th": "งบประมาณสำหรับสิ่งที่เหลือเชื่อคืออะไร?",
    "context": "CREATE TABLE table_name_28 (budget VARCHAR, film VARCHAR)"
  },
  {
    "answer": "SELECT worldwide FROM table_name_41 WHERE film = \"brave\"",
    "question_en": "WHAT IS THE WORLDWIDE BOX OFFICE FOR BRAVE?",
    "question_th": "บ็อกซ์ออฟฟิศทั่วโลกสำหรับ 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_en": "Which driver for Bob Holden Motors has fewer than 36 points and placed 7 in race 1?",
    "question_th": "นักแข่งคนไหนของ Bob Holden Motors มีคะแนนน้อยกว่า 36 แต้มและได้ 7 แต้มในการแข่งที่ 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_en": "Which team received 4 in race 1?",
    "question_th": "ทีมไหนได้ 4 ในการแข่งขันรอบที่ 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_en": "Which driver for Greenfield Mowers Racing has fewer than 36 points?",
    "question_th": "นักแข่งคนไหนของ Greenfield Mowers Racing มีคะแนนน้อยกว่า 36 คะแนน?",
    "context": "CREATE TABLE table_name_82 (driver VARCHAR, points VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT président FROM table_name_10 WHERE départment__or_collectivity_ = \"creuse\"",
    "question_en": "Who is the president representing the Creuse department?",
    "question_th": "ใครเป็นประธานที่เป็นตัวแทนของแผนก Creuse?",
    "context": "CREATE TABLE table_name_10 (président VARCHAR, départment__or_collectivity_ VARCHAR)"
  },
  {
    "answer": "SELECT number FROM table_name_14 WHERE party = \"socialist party\" AND président = \"yves krattinger\"",
    "question_en": "What number corresponds to Presidet Yves Krattinger of the Socialist party?",
    "question_th": "ตัวเลขใดที่ตรงกับประธาน Yves Krattinger แห่งพรรคสังคมนิยม?",
    "context": "CREATE TABLE table_name_14 (number VARCHAR, party VARCHAR, président VARCHAR)"
  },
  {
    "answer": "SELECT départment__or_collectivity_ FROM table_name_54 WHERE since = 2008 AND président = \"guy-dominique kennel\"",
    "question_en": "Which department has Guy-Dominique Kennel as president since 2008?",
    "question_th": "แผนกใดที่มี Guy-Dominique Kennel เป็นประธานตั้งแต่ปี 2551",
    "context": "CREATE TABLE table_name_54 (départment__or_collectivity_ VARCHAR, since VARCHAR, président VARCHAR)"
  },
  {
    "answer": "SELECT président FROM table_name_36 WHERE party = \"union for a popular movement\" AND départment__or_collectivity_ = \"hautes-alpes\"",
    "question_en": "Who is the president from the Union for a Popular Movement party that represents the Hautes-Alpes department?",
    "question_th": "ใครคือประธานาธิบดีจาก Union for a Popular Movement ที่เป็นตัวแทนของแผนก Hautes-Alpes",
    "context": "CREATE TABLE table_name_36 (président VARCHAR, party VARCHAR, départment__or_collectivity_ VARCHAR)"
  },
  {
    "answer": "SELECT MAX(capacity) FROM table_name_1 WHERE location = \"varna\" AND venue = \"ticha stadium\"",
    "question_en": "What is the highest capacity for the venue, ticha stadium, located in varna?",
    "question_th": "สนามติชา สเตเดี้ยม ที่วาร์นา สามารถรองรับความจุสูงสุดได้เท่าใด?",
    "context": "CREATE TABLE table_name_1 (capacity INTEGER, location VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT MAX(capacity) FROM table_name_19 WHERE club = \"vihren\"",
    "question_en": "What is the highest capacity for the venue of the club, vihren?",
    "question_th": "ความจุสูงสุดสำหรับสถานที่ของสโมสรคือเท่าใด?",
    "context": "CREATE TABLE table_name_19 (capacity INTEGER, club VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(capacity) FROM table_name_30 WHERE club = \"pirin\"",
    "question_en": "What is the total number of capacity for the venue of the club, pirin?",
    "question_th": "จำนวนความจุทั้งหมดสำหรับสถานที่ของสโมสรคือเท่าไร พีริน?",
    "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_en": "WHAT IS THE RATING THAT HAD A SHARE SMALLER THAN 4, AND 2.47 MILLION VIEWERS?",
    "question_th": "เรตติ้งที่มีส่วนแบ่งน้อยกว่า 4 และมีผู้ชม 2.47 ล้านคนคือเท่าไร",
    "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_en": "WHAT IS THE NUMBER OF VIEWERS WITH EPISODE LARGER THAN 10, RATING SMALLER THAN 2?",
    "question_th": "จำนวนผู้ชมที่มีตอนมากกว่า 10 และมีเรตติ้งน้อยกว่า 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_en": "WHAT IS THE HIGHEST VIEWERS WITH AN EPISODE LESS THAN 15 AND SHARE LAGER THAN 7?",
    "question_th": "ผู้ชมสูงสุดที่มีตอนน้อยกว่า 15 ตอนและแชร์เกิน 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_en": "What was the score of the game after game 6 on October 28?",
    "question_th": "สกอร์ของเกมหลังเกมที่ 6 เมื่อวันที่ 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_en": "What was the record for the game before game 6 against the chicago black hawks?",
    "question_th": "สถิติของเกมก่อนเกมที่ 6 กับชิคาโก้ แบล็ค ฮอว์กส์เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_54 (record VARCHAR, game VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT position__eliminated FROM table_name_29 WHERE age¹ < 22 AND full_name = \"muhammad fairul azreen bin mohd zahid\"",
    "question_en": "What is Position/ Eliminated, when Age¹ is less than 22, and when Full Name is \"Muhammad Fairul Azreen Bin Mohd Zahid\"?",
    "question_th": "ตำแหน่ง/ตกรอบ คืออะไร เมื่ออายุ¹ น้อยกว่า 22 และเมื่อชื่อเต็มคือ \"Muhammad Fairul Azreen Bin Mohd Zahid\"",
    "context": "CREATE TABLE table_name_29 (position__eliminated VARCHAR, age¹ VARCHAR, full_name VARCHAR)"
  },
  {
    "answer": "SELECT occupation² FROM table_name_52 WHERE age¹ > 24 AND alias = \"black\"",
    "question_en": "What is Occupation², when Age¹ is greater than 24, when Alias is \"Black\"?",
    "question_th": "Occupation² คืออะไร เมื่ออายุ¹ มากกว่า 24 ปี และนามแฝงคือ \"ผิวดำ\"",
    "context": "CREATE TABLE table_name_52 (occupation² VARCHAR, age¹ VARCHAR, alias VARCHAR)"
  },
  {
    "answer": "SELECT full_name FROM table_name_23 WHERE age¹ = 20 AND occupation² = \"student\"",
    "question_en": "What is Full Name, when Age¹ is \"20\", and when Occupation² is \"Student\"?",
    "question_th": "ชื่อเต็มคืออะไร เมื่ออายุ¹ คือ \"20\" และเมื่อ Occupation² คือ \"นักเรียน\"",
    "context": "CREATE TABLE table_name_23 (full_name VARCHAR, age¹ VARCHAR, occupation² VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_16 WHERE score = \"2-8\"",
    "question_en": "Who is the Opponent when the Score is 2-8?",
    "question_th": "ฝ่ายตรงข้ามคือใครเมื่อสกอร์เป็น 2-8?",
    "context": "CREATE TABLE table_name_16 (opponent VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_34 WHERE site = \"shriver field\"",
    "question_en": "What is the Date if the Site is Shriver Field?",
    "question_th": "วันที่เป็นวันที่ใดถ้าไซต์เป็น Shriver Field?",
    "context": "CREATE TABLE table_name_34 (date VARCHAR, site VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_13 WHERE time = \"5:00pm\"",
    "question_en": "Which Score has a Time of 5:00pm?",
    "question_th": "คะแนนใดมีเวลา 17.00 น.?",
    "context": "CREATE TABLE table_name_13 (score VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT site FROM table_name_98 WHERE score = \"0-1\"",
    "question_en": "Which site has a Score of 0-1?",
    "question_th": "ไซต์ใดมีคะแนน 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_en": "Who was the Opponent at Homewood Field with a Score of 5-8?",
    "question_th": "ใครคือฝ่ายตรงข้ามที่โฮมวูดฟิลด์ด้วยคะแนน 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_en": "What is the team #1 with an 11th place position?",
    "question_th": "ทีมอันดับ 1 อันดับที่ 11 คือทีมอะไร?",
    "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éd\"",
    "question_en": "What is the 1st leg of bp. honvéd team #2?",
    "question_th": "ขาที่ 1 ของ bp คืออะไร ทีมฮอนเวด #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_en": "What is the 1st leg with a 4-3 agg.?",
    "question_th": "เลกแรกมีสกอร์ 4-3 คืออะไร?",
    "context": "CREATE TABLE table_name_25 (agg VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_8 WHERE agg = \"2-6\"",
    "question_en": "What position has a 2-6 agg.?",
    "question_th": "ตำแหน่งใดมี 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_en": "What is the 2nd leg of the 4-9 agg.?",
    "question_th": "ขาที่ 2 ของ 4-9 สหกรณ์ คืออะไร?",
    "context": "CREATE TABLE table_name_68 (agg VARCHAR)"
  },
  {
    "answer": "SELECT sport FROM table_name_22 WHERE club = \"montgomery biscuits\"",
    "question_en": "Which sport had the club of the Montgomery Biscuits?",
    "question_th": "กีฬาชนิดใดที่มีสโมสร Montgomery Biscuits?",
    "context": "CREATE TABLE table_name_22 (sport VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_98 WHERE sport = \"basketball\"",
    "question_en": "Which venue held a basketball team?",
    "question_th": "สถานที่ใดจัดทีมบาสเกตบอล?",
    "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_en": "Which sport was held in Huntsville at the Von Braun Center as part of the Southern Indoor Football League?",
    "question_th": "กีฬาใดที่จัดขึ้นใน Huntsville ที่ Von Braun Center ซึ่งเป็นส่วนหนึ่งของ 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_en": "Which venue hosted the Gridiron Development Football League?",
    "question_th": "สนามใดเป็นเจ้าภาพจัดการแข่งขัน 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_en": "Which venue hosted the Dixie Derby Girls?",
    "question_th": "สถานที่ใดจัดการแข่งขัน 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_en": "Which city has a club called the Huntsville Stars?",
    "question_th": "เมืองใดมีสโมสรที่เรียกว่า Huntsville Stars",
    "context": "CREATE TABLE table_name_96 (city VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_49 WHERE title = \"so alive\"",
    "question_en": "which Type has a Title of so alive?",
    "question_th": "ประเภทใดที่มีฉายาว่ามีชีวิตชีวามาก?",
    "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_en": "Name the Year which has a Label of atco records and a Type of album? Question 2",
    "question_th": "ตั้งชื่อปีซึ่งมีป้ายกำกับบันทึก atco และประเภทอัลบั้มหรือไม่ คำถามที่ 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_en": "Which Title has a Type of album and a Year larger than 1986?",
    "question_th": "ชื่อใดมีประเภทของอัลบั้มและหนึ่งปีมีขนาดใหญ่กว่าปี 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_en": "Which Title has a Type of ep and a Year larger than 2003?",
    "question_th": "ชื่อใดมีประเภทของ ep และหนึ่งปีที่ใหญ่กว่าปี 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_en": "Which Title has a Type of album in 1983?",
    "question_th": "ชื่อใดมีประเภทของอัลบั้มในปี 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_en": "What was the date of the game with an attendance of 20,874 fans?",
    "question_th": "เกมวันที่เท่าไหร่ที่มีแฟนบอลเข้าร่วม 20,874 คน?",
    "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_en": "What was the record the the match against vs. calgary stampeders before week 15?",
    "question_th": "บันทึกการแข่งขันกับผู้แตกตื่นคาลการีก่อนสัปดาห์ที่ 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_en": "What is the status when the artist is Neil Sedaka?",
    "question_th": "สถานะเมื่อศิลปินคือ Neil Sedaka คืออะไร?",
    "context": "CREATE TABLE table_name_31 (status VARCHAR, artist VARCHAR)"
  },
  {
    "answer": "SELECT theme FROM table_name_59 WHERE week = \"top 11\"",
    "question_en": "What was the theme for the Top 11 week?",
    "question_th": "ธีมของสัปดาห์ที่ 11 อันดับแรกคืออะไร?",
    "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_en": "What week did the contestant finish in the bottom 2 with a Celine Dion song?",
    "question_th": "ผู้เข้าแข่งขันจบใน 2 อันดับสุดท้ายด้วยเพลงของ Celine Dion ในสัปดาห์ใด",
    "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_en": "What order was the performance of a Richard Marx song?",
    "question_th": "การแสดงเพลงของ Richard Marx อยู่ในลำดับใด",
    "context": "CREATE TABLE table_name_43 (order_sung VARCHAR, artist VARCHAR)"
  },
  {
    "answer": "SELECT artist FROM table_name_89 WHERE theme = \"billboard #1\"",
    "question_en": "What artist's song was performed in the week with theme of Billboard #1?",
    "question_th": "สัปดาห์นี้มีการแสดงเพลงของศิลปินคนใดในธีม 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_en": "What is Headquarter, when Type is Independent Online News Portal?",
    "question_th": "สำนักงานใหญ่คืออะไร เมื่อประเภทเป็นพอร์ทัลข่าวออนไลน์อิสระ",
    "context": "CREATE TABLE table_name_49 (headquarter VARCHAR, type VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_24 WHERE newspaper_magazine = \"al-thawra\"",
    "question_en": "What is Status, when Newspaper/Magazine is Al-Thawra?",
    "question_th": "สถานะคืออะไร เมื่อหนังสือพิมพ์/นิตยสารคืออัล-เถอรา?",
    "context": "CREATE TABLE table_name_24 (status VARCHAR, newspaper_magazine VARCHAR)"
  },
  {
    "answer": "SELECT headquarter FROM table_name_4 WHERE newspaper_magazine = \"al-ayyam\"",
    "question_en": "What is Headquarter, when Newspaper/Magazine is Al-Ayyam?",
    "question_th": "สำนักงานใหญ่คืออะไร เมื่อหนังสือพิมพ์/นิตยสารคืออัลอัยัม?",
    "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_en": "What is Type, when Newspaper/Magazine is Telecoms & It Magazine?",
    "question_th": "Type คืออะไร เมื่อหนังสือพิมพ์/นิตยสารเป็น 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_en": "What is Headquarter, when Language is English, and when Type is Independent Online News Portal?",
    "question_th": "สำนักงานใหญ่คืออะไร เมื่อภาษาเป็นภาษาอังกฤษ และเมื่อใดประเภทคือพอร์ทัลข่าวออนไลน์อิสระ",
    "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_en": "What is Headquarter, when Type is Government-Owned, and when Newspaper/Magazine is Al-Jumhuriya?",
    "question_th": "สำนักงานใหญ่คืออะไร เมื่อประเภทเป็นของรัฐบาล และเมื่อหนังสือพิมพ์/นิตยสารคืออัล-จุมฮูริยา",
    "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_en": "For Saint-Paul parish, if it has an area of over 228.65 kilometers how many people live there?",
    "question_th": "สำหรับตำบลแซงต์ปอล ถ้ามีพื้นที่เกิน 228.65 กิโลเมตร มีคนอาศัยอยู่กี่คน?",
    "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_en": "What was the box score during a game that had a score of 86-96?",
    "question_th": "บ็อกซ์สกอร์ระหว่างเกมที่มีคะแนน 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_en": "What was the report at State Sports Centre?",
    "question_th": "ที่ศูนย์กีฬาแห่งรัฐมีรายงานอะไรบ้าง?",
    "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_en": "Who was the home team at Gold Coast Convention Centre?",
    "question_th": "ทีมเจ้าบ้านที่ 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_en": "What was the date that featured a game against Gold Coast Blaze?",
    "question_th": "วันที่นำเสนอเกมกับ 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_en": "What was the box score during a home game of the Adelaide 36ers?",
    "question_th": "บ็อกซ์สกอร์ในเกมเหย้าของ อเดเลด 36เซอร์ส เป็นเท่าไหร่?",
    "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_en": "How many Picks have an Overall smaller than 304, and a Position of g, and a Round smaller than 11?",
    "question_th": "มีกี่ตัวเลือกที่มีค่าโดยรวมน้อยกว่า 304 และมีตำแหน่งเป็น g และรอบที่เล็กกว่า 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_en": "Which Overall is the highest one that has a Name of raleigh mckenzie, and a Pick larger than 10?",
    "question_th": "โดยรวมแล้วอันไหนคือชื่อที่สูงที่สุดที่มีชื่อ raleigh mckenzie และตัวเลือกที่มากกว่า 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_en": "How many Picks have a College of hawaii, and an Overall smaller than 122?",
    "question_th": "มีวิทยาลัยแห่งฮาวายกี่แห่งและมีทั้งหมดน้อยกว่า 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_en": "Which Round is the highest one that has a Pick smaller than 10, and a Name of tory nixon?",
    "question_th": "รอบใดคือรอบที่สูงที่สุดที่มี Pick น้อยกว่า 10 และชื่อของ 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_en": "Which Ofsted has a Capacity of 1677?",
    "question_th": "Ofsted ใดมีความจุ 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_en": "Which Ofsted has a School of marple hall school, and a Capacity larger than 1711?",
    "question_th": "Ofsted แห่งใดมีโรงเรียนของโรงเรียน marple hall และมีความจุมากกว่าปี 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_en": "Which School has Ages of 11-16, and an Ofsted smaller than 106142, and a Capacity of 1206?",
    "question_th": "โรงเรียนใดมีอายุ 11-16 ปี และ Ofsted เล็กกว่า 1,06142 และจุได้ 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_en": "What is heaton chapel's capacity?",
    "question_th": "โบสถ์ฮีตันมีความสามารถอะไรได้บ้าง?",
    "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_en": "Which School has a Capacity larger than 730, and an Ofsted smaller than 106135, and a Locality of heaton mersey?",
    "question_th": "โรงเรียนใดมีความจุมากกว่า 730 และ Ofsted น้อยกว่า 1,06135 และท้องถิ่นของ 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_en": "What is the lowest Game, when Date is March 21?",
    "question_th": "เกมไหนต่ำสุดคือวันที่ 21 มีนาคม?",
    "context": "CREATE TABLE table_name_66 (game INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_90 WHERE game = 77",
    "question_en": "What is Team, when Game is 77?",
    "question_th": "ทีมคืออะไร เมื่อเกมคือ 77?",
    "context": "CREATE TABLE table_name_90 (team VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_21 WHERE game = 73",
    "question_en": "What is Team, when Game is 73?",
    "question_th": "ทีมคืออะไร เมื่อเกมคือ 73?",
    "context": "CREATE TABLE table_name_21 (team VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_68 WHERE type = \"surveying\"",
    "question_en": "What location has surveying as the type?",
    "question_th": "สถานที่ใดมีการสำรวจเป็นประเภท?",
    "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_en": "What average wheels has accounting as the type, with IBM Collection as the location?",
    "question_th": "ล้อเฉลี่ยใดที่มีการบัญชีเป็นประเภท โดยมี IBM Collection เป็นที่ตั้ง",
    "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_en": "What is the configuration for the country France, with accounting as the type, and wheels greater than 6?",
    "question_th": "การกำหนดค่าสำหรับประเทศฝรั่งเศสโดยมีการบัญชีเป็นประเภทและล้อที่มากกว่า 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_en": "Which NFL team has a pick# less than 200 for Travis Davis?",
    "question_th": "ทีม NFL ทีมใดมีตัวเลือก # น้อยกว่า 200 สำหรับ 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_en": "Which player was a running back from San Jose State?",
    "question_th": "ผู้เล่นคนไหนที่กำลังวิ่งกลับจากซานโฮเซสเตท?",
    "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_en": "What is the pick# from South Dakota college?",
    "question_th": "ตัวเลือก # จากวิทยาลัย South Dakota คืออะไร",
    "context": "CREATE TABLE table_name_23 (pick__number VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_30 WHERE position = \"nose tackle\"",
    "question_en": "Which college has a nose tackle position?",
    "question_th": "วิทยาลัยไหนมีตำแหน่งแก้จมูกบ้าง?",
    "context": "CREATE TABLE table_name_30 (college VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT home_or_away FROM table_name_25 WHERE shirt_number > 18",
    "question_en": "Can you tell me the Home or the Away that has the Shirt Number larger than 18?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าทีมเหย้าหรือทีมเยือนที่มีหมายเลขเสื้อมากกว่า 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_en": "Can you tell me the Score that has the Result of win, and the Date of 13 november 2009?",
    "question_th": "คุณช่วยบอกคะแนนที่มีผลลัพธ์ของการชนะและวันที่ 13 พฤศจิกายน 2552 ให้ฉันหน่อยได้ไหม?",
    "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_en": "Can you tell me the lowest Cap Number that has the Date of 8 february 2009, and the Shirt Number larger than 19?",
    "question_th": "คุณช่วยบอกหมายเลขหมวกต่ำสุดที่มีวันที่ 8 กุมภาพันธ์ 2552 และหมายเลขเสื้อที่มากกว่า 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_en": "Which Points have a Position larger than 6, and a Lost smaller than 13?",
    "question_th": "คะแนนใดที่มีตำแหน่งมากกว่า 6 และแพ้น้อยกว่า 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_en": "How much Drawn has a Lost of 2, and Played smaller than 14?",
    "question_th": "เสมอเท่าไหร่จึงแพ้ 2 ครั้งและเล่นน้อยกว่า 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_en": "Which Points is the highest one that has a Drawn smaller than 2, and a Name of esc holzkirchen, and Played smaller than 14?",
    "question_th": "แต้มใดคือแต้มสูงสุดที่มีการเสมอน้อยกว่า 2 และชื่อของ esc holzkirchen และเล่นน้อยกว่า 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_en": "Which Lost is the lowest one that has a Name of esc holzkirchen, and Played smaller than 14?",
    "question_th": "Lost ตัวไหนต่ำที่สุดที่มีชื่อ esc holzkirchen และเล่นน้อยกว่า 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 –49) = 0.9 / 4 AND viewers__millions_ > 3.79",
    "question_en": "What is the lowest numbered episode that had a rating/share of 0.9/4 and more than 3.79 million viewers?",
    "question_th": "ตอนที่มีเรตติ้ง/แชร์ 0.9/4 ต่ำสุดและมีผู้ชมมากกว่า 3.79 ล้านคนคือตอนใด",
    "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_en": "What is the average number of million viewers that watched an episode before episode 11 with a share of 4?",
    "question_th": "จำนวนผู้ชมโดยเฉลี่ยที่ดูตอนก่อนตอนที่ 11 โดยมีส่วนแบ่ง 4 คือเท่าใด",
    "context": "CREATE TABLE table_name_28 (viewers__millions_ INTEGER, episode__number VARCHAR, share VARCHAR)"
  },
  {
    "answer": "SELECT rating / SHARE(18 AS –49) FROM table_name_72 WHERE episode__number = 13",
    "question_en": "What is the rating/share for episode 13?",
    "question_th": "เรตติ้ง/แชร์ตอนที่ 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 –49) = 1.1 / 3 AND episode__number < 5",
    "question_en": "What is the lowest number of million viewers for an episode before episode 5 with a rating/share of 1.1/3?",
    "question_th": "จำนวนผู้ชมต่ำสุดสำหรับตอนก่อนตอนที่ 5 ที่มีเรตติ้ง/ส่วนแบ่ง 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_en": "How many years of NBA experience does the player who plays position g for the Portland Trail Blazers?",
    "question_th": "ผู้เล่นที่เล่นตำแหน่ง g ให้กับพอร์ตแลนด์ เทรลเบลเซอร์ส มีประสบการณ์การทำงาน NBA นานกี่ปี?",
    "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_en": "Who is the player from the Buffalo Braves with the previous team Los Angeles Lakers and a career with the franchase in 1970?",
    "question_th": "ใครคือผู้เล่นจากทีมบัฟฟาโล เบรฟส์ กับทีมลอสแอนเจลิสเลเกอร์สก่อนหน้านี้ และอาชีพกับแฟรนไชส์ในปี 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_en": "Who is the player with 7 years of NBA experience?",
    "question_th": "ใครคือผู้เล่นที่มีประสบการณ์ NBA 7 ปี?",
    "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_en": "how may times is regular season 1063 and playoffs more than 119?",
    "question_th": "ฤดูกาลปกติ 1,063 และรอบตัดเชือกมากกว่า 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_en": "what is the years when playoffs is 115?",
    "question_th": "รอบตัดเชือกคือ 115 ปีไหน?",
    "context": "CREATE TABLE table_name_51 (years VARCHAR, playoffs VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_38 WHERE score = \"2–0\"",
    "question_en": "What Competition had a Score of 2–0?",
    "question_th": "การแข่งขันใดมีคะแนน 2–0",
    "context": "CREATE TABLE table_name_38 (competition VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_47 WHERE venue = \"gelora sriwijaya stadium\"",
    "question_en": "What was the Score in Gelora Sriwijaya Stadium?",
    "question_th": "สกอร์ในสนามเกโลรา ศรีวิจายาเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_47 (score VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_6 WHERE result = \"2–2 (d)\"",
    "question_en": "What is the Venue of the Competition with a Result of 2–2 (d)?",
    "question_th": "สถานที่จัดการแข่งขันที่มีผลคะแนน 2–2 (ง) คืออะไร?",
    "context": "CREATE TABLE table_name_6 (venue VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_95 WHERE score = \"4–0\" AND venue = \"mbpj stadium\"",
    "question_en": "What is the Result of the Competition at MBPJ Stadium with a Score of 4–0?",
    "question_th": "ผลการแข่งขันที่สนาม MBPJ ด้วยสกอร์ 4–0 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_95 (result VARCHAR, score VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_36 WHERE result = \"2–2 (d)\"",
    "question_en": "What is the Venue of the Competition with a Result of 2–2 (d)?",
    "question_th": "สถานที่จัดการแข่งขันที่มีผลคะแนน 2–2 (ง) คืออะไร?",
    "context": "CREATE TABLE table_name_36 (venue VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_60 WHERE result = \"2–0 (w)\" AND venue = \"shah alam stadium\"",
    "question_en": "What Competition in Shah Alam Stadium have a Result of 2–0 (w)?",
    "question_th": "การแข่งขันใดในสนามกีฬาชาห์อาลัมที่มีผลการแข่งขัน 2–0 (ญ)?",
    "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_en": "Which Avg/G has a Long of 93, and a Loss smaller than 249?",
    "question_th": "Avg/G ใดที่มีความยาว 93 และขาดทุนน้อยกว่า 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_en": "Which Avg/G has a Gain of 1,839?",
    "question_th": "Avg/G ใดมีกำไรอยู่ที่ 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_en": "Which Avg/G has a Name of josh freeman, and a Loss smaller than 134?",
    "question_th": "Avg/G ใดที่มีชื่อเป็น josh freeman และขาดทุนน้อยกว่า 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_en": "How much Gain has a Long of 29, and an Avg/G smaller than 33.7?",
    "question_th": "กำไรจะมีค่า Long เท่ากับ 29 และค่าเฉลี่ย/G น้อยกว่า 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_en": "Which Long is the highest one that has a Loss larger than 3, and a Gain larger than 2,894?",
    "question_th": "Long ใดคือค่าสูงสุดที่มี Loss มากกว่า 3 และ Gain มากกว่า 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_en": "What is the average round of the rw position player from the United States?",
    "question_th": "ผู้เล่นตำแหน่ง RW จากอเมริกา รอบเฉลี่ยเท่าไหร่?",
    "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_en": "What is the college/junior team of player tyler myers, who has a pick less than 44?",
    "question_th": "อะไรคือทีมวิทยาลัย/ทีมจูเนียร์ของผู้เล่นไทเลอร์ ไมเยอร์ส ที่มีตัวเลือกน้อยกว่า 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_en": "What is the nationality of player corey fienhage, who has a pick less than 104?",
    "question_th": "คอเรย์ ไฟน์ฮาจ ผู้เล่นสัญชาติอะไร ที่มีสิทธิเลือกน้อยกว่า 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_en": "What is the sum of the pick of the lw position player?",
    "question_th": "ผลรวมของการเลือกผู้เล่นตำแหน่ง lw เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_25 (pick INTEGER, position VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_50 WHERE week = 2",
    "question_en": "What is the Record in Week 2?",
    "question_th": "บันทึกในสัปดาห์ที่ 2 คืออะไร?",
    "context": "CREATE TABLE table_name_50 (record VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_96 WHERE result = \"w 23–17\"",
    "question_en": "WHEN has a Result of w 23–17?",
    "question_th": "เมื่อไรจะมีผลลัพธ์ของ w 23–17?",
    "context": "CREATE TABLE table_name_96 (date VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_94 WHERE opponent = \"miami dolphins\"",
    "question_en": "WHEN has a Opponent of miami dolphins?",
    "question_th": "เมื่อไหร่จะมีฝ่ายตรงข้ามของไมอามี่โลมา?",
    "context": "CREATE TABLE table_name_94 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT 2009 FROM table_name_40 WHERE ranking = \"webometrics\"",
    "question_en": "What was the 2009 ranking for Webometrics?",
    "question_th": "Webometrics จัดอันดับในปี 2009 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_40 (ranking VARCHAR)"
  },
  {
    "answer": "SELECT MIN(rank) FROM table_name_53 WHERE rebounds < 130 AND team = \"partizan igokea\"",
    "question_en": "What rank is Partizan Igokea that has less than 130 rebounds?",
    "question_th": "ปาร์ติซาน อิโกเกีย ที่ทำได้ไม่ถึง 130 รีบาวด์ อันดับไหน?",
    "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_en": "Which College has a Pick # larger than 30, and a Position of ol?",
    "question_th": "วิทยาลัยใดมีตัวเลือก Pick # มากกว่า 30 และตำแหน่ง 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_en": "Which Pick # has a College of concordia?",
    "question_th": "ตัวเลือกใด # มีวิทยาลัยคอนคอร์เดีย",
    "context": "CREATE TABLE table_name_45 (pick__number INTEGER, college VARCHAR)"
  },
  {
    "answer": "SELECT cfl_team FROM table_name_73 WHERE pick__number > 31",
    "question_en": "Which CFL Team has a Pick # larger than 31?",
    "question_th": "ทีม CFL ใดที่มี Pick # มากกว่า 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_en": "What is buffalo's pick #?",
    "question_th": "#กระบะควายคืออะไร?",
    "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_en": "Which College has a Position of ol, and a Pick # smaller than 32?",
    "question_th": "วิทยาลัยใดมีตำแหน่ง ol และเลือก # น้อยกว่า 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_en": "What is the team of the player who was previously on the indiana pacers?",
    "question_th": "นักเตะที่เคยเล่น 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_en": "What is the previous team of the player with 4 NBA years and a pick less than 16?",
    "question_th": "ทีมก่อนหน้าของผู้เล่นที่มีอายุ 4 ปีใน NBA และตัวเลือกน้อยกว่า 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_en": "How many NBA years did the player from the United States who was previously on the los angeles lakers have?",
    "question_th": "ผู้เล่น NBA จากสหรัฐอเมริกาที่เคยเล่นทีมลอสแอนเจลิสเลเกอร์สใช้เวลากี่ปี",
    "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_en": "What tournament did Nadal win and had a nadal of 16?",
    "question_th": "นาดาลชนะทัวร์นาเมนต์ใดและได้ 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_en": "What was the nadal in Miami in the final round?",
    "question_th": "นาดาลที่ไมอามีในรอบสุดท้ายเป็นอย่างไรบ้าง?",
    "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_en": "What were the sets when Federer had 6 and a nadal of 13?",
    "question_th": "ฉากไหนที่เฟเดอเรอร์ทำได้ 6 และนาดาลได้ 13 แต้ม?",
    "context": "CREATE TABLE table_name_95 (sets VARCHAR, nadal VARCHAR, federer VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_31 WHERE overall = 9",
    "question_en": "Which college had an overall pick of 9?",
    "question_th": "วิทยาลัยใดได้รับเลือกทั้งหมด 9 แห่ง",
    "context": "CREATE TABLE table_name_31 (college VARCHAR, overall VARCHAR)"
  },
  {
    "answer": "SELECT source_of_wealth FROM table_name_51 WHERE value = \"£5726m\"",
    "question_en": "What source of wealth has a value of £5726m?",
    "question_th": "แหล่งความมั่งคั่งใดมีมูลค่า 5,726 ล้านปอนด์?",
    "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_en": "What is the highest Game, when Opponents is less than 80, and when Record is \"1-0\"?",
    "question_th": "เกมสูงสุดคืออะไร เมื่อฝ่ายตรงข้ามน้อยกว่า 80 และเมื่อบันทึกเป็น \"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_en": "What is Result, when Date is \"December 12\"?",
    "question_th": "ผลลัพธ์คืออะไร เมื่อวันที่คือ \"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_en": "What is Streak, when Heat Points is \"101\", and when Game is \"16\"?",
    "question_th": "Streak คืออะไร เมื่อ Heat Points คือ \"101\" และเมื่อเกมอยู่ที่ \"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_en": "What is Heat Points, when Game is less than 80, and when Date is \"April 26 (First Round)\"?",
    "question_th": "Heat Points คืออะไร เมื่อเกมน้อยกว่า 80 และวันที่คือ \"26 เมษายน (รอบแรก)\"",
    "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_en": "What is the average Heat Points, when Result is \"Loss\", when Game is greater than 72, and when Date is \"April 21\"?",
    "question_th": "คะแนนความร้อนโดยเฉลี่ยคือเท่าใด เมื่อผลลัพธ์คือ \"แพ้\" เมื่อเกมมากกว่า 72 และวันที่คือ \"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_en": "What was the attendance for week 2?",
    "question_th": "การเข้าร่วมในสัปดาห์ที่ 2 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_39 (attendance VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_79 WHERE opponent = \"cincinnati bengals\"",
    "question_en": "What was the attendance when the Cincinnati Bengals were the opponents?",
    "question_th": "การเข้าร่วมเมื่อ Cincinnati Bengals เป็นคู่ต่อสู้คืออะไร?",
    "context": "CREATE TABLE table_name_79 (attendance VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_9 WHERE year = 2009 AND publication = \"paste\"",
    "question_en": "What country had a paste publication in 2009?",
    "question_th": "ประเทศใดที่มีการตีพิมพ์แบบวางในปี 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_en": "What was the lowest rank after 2009 with an accolade of 125 best albums of the past 25 years?",
    "question_th": "อะไรคืออันดับต่ำสุดหลังจากปี 2009 ด้วยรางวัล 125 อัลบั้มที่ดีที่สุดในรอบ 25 ปีที่ผ่านมา",
    "context": "CREATE TABLE table_name_79 (rank INTEGER, year VARCHAR, accolade VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_33 WHERE player = \"tom gillis\"",
    "question_en": "What is Tom Gillis' score?",
    "question_th": "คะแนนของทอม กิลลิสคืออะไร?",
    "context": "CREATE TABLE table_name_33 (score VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_70 WHERE place = \"t3\"",
    "question_en": "Which player is T3?",
    "question_th": "ผู้เล่นคนไหนคือ 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_en": "Which country has is Len Mattiace in T10 place?",
    "question_th": "Len Mattiace อยู่ในอันดับที่ T10 ประเทศไหน?",
    "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_en": "What is the average score for the player who is T5 in the United States?",
    "question_th": "คะแนนเฉลี่ยของผู้เล่นที่เป็น T5 ในสหรัฐอเมริกาคือเท่าไร?",
    "context": "CREATE TABLE table_name_60 (score INTEGER, place VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT 1976 FROM table_name_46 WHERE 1980 = \"2.0\"",
    "question_en": "what is 1976 when 1980 is 2.0?",
    "question_th": "1976 คืออะไรเมื่อ 1980 เป็น 2.0?",
    "context": "CREATE TABLE table_name_46 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1980 FROM table_name_9 WHERE 1979 = \"951\"",
    "question_en": "what is 1980 when 1979 is 951?",
    "question_th": "1980 คืออะไร เมื่อ 1979 เป็น 951",
    "context": "CREATE TABLE table_name_9 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1977 FROM table_name_65 WHERE 1980 = \"chile\"",
    "question_en": "what is 1977 when 1980 is chile?",
    "question_th": "ปี 1977 คืออะไร เมื่อปี 1980 เป็นชิลี?",
    "context": "CREATE TABLE table_name_65 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1976 FROM table_name_96 WHERE 1977 = \"3.5\"",
    "question_en": "what is 1976 when 1977 is 3.5?",
    "question_th": "1976 คืออะไรเมื่อ 1977 เป็น 3.5?",
    "context": "CREATE TABLE table_name_96 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1977 FROM table_name_84 WHERE 1978 = \"4.1\"",
    "question_en": "what is 1977 when 1978 is 4.1?",
    "question_th": "1977 คืออะไรเมื่อ 1978 เป็น 4.1?",
    "context": "CREATE TABLE table_name_84 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1980 FROM table_name_22 WHERE 1978 = \"2.3\"",
    "question_en": "what is 1980 when 1978 is 2.3?",
    "question_th": "1980 คืออะไรเมื่อ 1978 เป็น 2.3?",
    "context": "CREATE TABLE table_name_22 (Id VARCHAR)"
  },
  {
    "answer": "SELECT frequency FROM table_name_54 WHERE model_number = \"c7 1.0\"",
    "question_en": "What is the Frequency for Model Number c7 1.0?",
    "question_th": "ความถี่สำหรับหมายเลขรุ่น 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_en": "What is the Release Date for Model Number c7 1.8?",
    "question_th": "วันที่วางจำหน่ายสำหรับหมายเลขรุ่น 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_en": "What is the Front Side Bus for Model Number c7 1.5?",
    "question_th": "Front Side Bus สำหรับหมายเลขรุ่น 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_en": "What to par is located in the united states and has the player by the name of hale irwin?",
    "question_th": "อะไรที่จะพาร์ตั้งอยู่ในสหรัฐอเมริกาและมีผู้เล่นชื่อเฮลเออร์วิน?",
    "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_en": "What country has the score og 66-70-69-71=276?",
    "question_th": "ประเทศใดมีคะแนน 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_en": "WHAT IS THE HOME TEAM ON APRIL 25?",
    "question_th": "ทีมเหย้าในวันที่ 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_en": "WHAT IS THE DATE WITH BOSTON ROAD TEAM AND 126-105 RESULT?",
    "question_th": "วันที่กับทีม BOSTON ROAD และผลการแข่งขัน 126-105 คืออะไร?",
    "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_en": "WHAT GAME HAD A SCORE OF 99-112?",
    "question_th": "เกมอะไรมีคะแนน 99-112?",
    "context": "CREATE TABLE table_name_30 (game VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_60 WHERE date = \"april 23\"",
    "question_en": "WHAT IS THE RESULT OF THE GAME ON APRIL 23?",
    "question_th": "ผลการแข่งขันในวันที่ 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_en": "WHAT IS THE RESULT WITH THE BOSTON ROAD TEAM, ON APRIL 23?",
    "question_th": "ผลลัพธ์ของทีม BOSTON ROAD ในวันที่ 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_en": "WHAT IS THE HOME TEAM, RESULT 99-112?",
    "question_th": "ทีมเหย้าคืออะไร ผลการแข่งขัน 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_en": "What is Brown's transfer window?",
    "question_th": "หน้าต่างการโอนของ Brown คืออะไร?",
    "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_en": "What is the transfer window with a status of transfer from the country of Wal?",
    "question_th": "หน้าต่างการโอนที่มีสถานะการโอนจากประเทศวอลคืออะไร?",
    "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_en": "What is the status of the Eng Country from the Maynard name?",
    "question_th": "สถานะของ Eng Country จากชื่อ Maynard คืออะไร?",
    "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_en": "What is the name of the free transfer fee with a transfer status and an ENG country?",
    "question_th": "ค่าธรรมเนียมการโอนฟรีพร้อมสถานะการโอนและประเทศ ENG ชื่ออะไร?",
    "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_en": "What is the status of the ENG Country with the name of Farquharson?",
    "question_th": "สถานะของ ENG Country ที่มีชื่อว่า 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_en": "What is Left Office, when Took Office is 2006?",
    "question_th": "Left Office คืออะไร เมื่อเข้ารับตำแหน่งในปี 2549",
    "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_en": "What is Left Office, when Party is Vacant (1999-2001)?",
    "question_th": "Left Office คืออะไร เมื่อพรรคว่าง (พ.ศ. 2542-2544)?",
    "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_en": "What is Name, when President is Khamtai Siphandon, and when Left Office is 1999?",
    "question_th": "ชื่ออะไร เมื่อประธานาธิบดีคือคำใต้ สีพันดอน และเมื่อออกจากตำแหน่งคือปี 2542",
    "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_en": "What is Party, when Name is Oudom Khattigna?",
    "question_th": "ปาร์ตี้คืออะไร เมื่อชื่อ อุดม คัทติน่า?",
    "context": "CREATE TABLE table_name_8 (party VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_name_14 WHERE took_office = \"1998\"",
    "question_en": "What is Party, when Took Office is 1998?",
    "question_th": "Party คืออะไร เมื่อเข้ารับตำแหน่งในปี 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_en": "What is Left Office, when Took Office is 1998?",
    "question_th": "Left Office คืออะไร เมื่อเข้ารับตำแหน่งในปี 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_en": "When was the away team geelong?",
    "question_th": "ทีมเยือนจีลองออกเมื่อไหร่?",
    "context": "CREATE TABLE table_name_13 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT ground FROM table_name_19 WHERE away_team = \"essendon\"",
    "question_en": "What was the ground for away team essendon?",
    "question_th": "อะไรคือเหตุผลสำหรับเอสเซนดอนทีมเยือน?",
    "context": "CREATE TABLE table_name_19 (ground VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT ground FROM table_name_59 WHERE away_team = \"sydney\"",
    "question_en": "What was the ground for away team sydney?",
    "question_th": "เหตุผลของทีมเยือนซิดนีย์คืออะไร?",
    "context": "CREATE TABLE table_name_59 (ground VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_80 WHERE week = 6",
    "question_en": "What date was the week 6 game played on?",
    "question_th": "เกมสัปดาห์ที่ 6 เล่นวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_80 (date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_85 WHERE venue = \"mile high stadium\"",
    "question_en": "What week was the game played at Mile High Stadium?",
    "question_th": "เกมนี้เล่นที่ 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_en": "What is the losing bonus when drawn was 0, and there were 101 points?",
    "question_th": "โบนัสที่เสียเมื่อวาดเป็น 0 และมี 101 แต้ม?",
    "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_en": "What is the points when the lost was 11?",
    "question_th": "แต้มที่แพ้คือ 11 คืออะไร?",
    "context": "CREATE TABLE table_name_29 (points_for VARCHAR, lost VARCHAR)"
  },
  {
    "answer": "SELECT lost FROM table_name_60 WHERE club = \"barry rfc\"",
    "question_en": "What is the lost when the club was Barry RFC?",
    "question_th": "สิ่งที่หายไปเมื่อสโมสรเป็น แบร์รี่ อาร์เอฟซี?",
    "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_en": "What is the played number when tries against is 84, and drawn is 2?",
    "question_th": "หมายเลขที่เล่นเมื่อพยายามต่อต้านคือ 84 และเสมอคือ 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_en": "What is the name of the club with 22 points?",
    "question_th": "สโมสรที่มี 22 แต้มชื่ออะไร?",
    "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_en": "What is the name of the club when the played number is 22, and the try bonus was 0?",
    "question_th": "สโมสรชื่ออะไรเมื่อหมายเลขที่เล่นคือ 22 และโบนัสลองเป็น 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_en": "What was the nationality of the players with a position of g?",
    "question_th": "ผู้เล่นที่มีตำแหน่ง 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_en": "What is Team, when High Assists is \"Rashard Lewis (4)\"?",
    "question_th": "ทีมคืออะไร เมื่อ High Assist คือ \"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_en": "What is High Points, when High Rebounds is \"Dwight Howard (16)\"?",
    "question_th": "High Points คืออะไร เมื่อ High Rebounds คือ \"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_en": "What is Series, when Date is \"June 7\"?",
    "question_th": "Series คืออะไร เมื่อวันที่คือ \"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_en": "What is High Assists, when High Rebounds is \"Dwight Howard , Rashard Lewis (10)\"?",
    "question_th": "High Assists คืออะไร เมื่อ High Rebounds คือ “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ürkoğlu (7)\"",
    "question_en": "What is the highest Game, when High Assists is \"Hedo Türkoğlu (7)\"?",
    "question_th": "เกมที่สูงที่สุดคืออะไร เมื่อ High Assists คือ \"Hedo Türkoğlu (7)\"?",
    "context": "CREATE TABLE table_name_86 (game INTEGER, high_assists VARCHAR)"
  },
  {
    "answer": "SELECT AVG(game) FROM table_name_71 WHERE score = \"101–92\"",
    "question_en": "What Game had a Score of 101–92?",
    "question_th": "เกมใดมีคะแนน 101–92",
    "context": "CREATE TABLE table_name_71 (game INTEGER, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_43 WHERE record = \"13–12\"",
    "question_en": "What is the Score of the Game with a Record of 13–12?",
    "question_th": "คะแนนของเกมที่มีสถิติ 13–12 คืออะไร?",
    "context": "CREATE TABLE table_name_43 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT streak FROM table_name_65 WHERE date = \"december 30\"",
    "question_en": "What is the Streak on December 30?",
    "question_th": "สตรีคในวันที่ 30 ธันวาคมคืออะไร?",
    "context": "CREATE TABLE table_name_65 (streak VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_61 WHERE game = 9",
    "question_en": "What is the date of game 9?",
    "question_th": "เกมที่ 9 วันที่เท่าไหร่คะ?",
    "context": "CREATE TABLE table_name_61 (date VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_name_63 WHERE record = \"3-7\"",
    "question_en": "Who had the most assists in the game that led to a 3-7 record?",
    "question_th": "ใครแอสซิสต์ได้มากที่สุดในเกมจนทำสถิติ 3-7?",
    "context": "CREATE TABLE table_name_63 (high_assists VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_71 WHERE record = \"6-11-8\"",
    "question_en": "What is the location of the game with a 6-11-8 record?",
    "question_th": "ตำแหน่งของเกมที่มีสถิติ 6-11-8 อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_71 (location VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_name_65 WHERE record = \"6-12-8\"",
    "question_en": "What game has a 6-12-8 record?",
    "question_th": "เกมอะไรมีสถิติ 6-12-8?",
    "context": "CREATE TABLE table_name_65 (game VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_name_25 WHERE points_for = \"562\"",
    "question_en": "What is Points, when Points For is \"562\"?",
    "question_th": "คะแนนคืออะไร เมื่อคะแนนสำหรับคือ \"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_en": "What is Drawn, when Played is \"Correct as of 2006-06-10\"?",
    "question_th": "Drawn คืออะไร เมื่อเล่นแล้ว \"ถูกต้อง ณ วันที่ 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_en": "What is Drawn, when Points Against is \"686\"?",
    "question_th": "Drawn คืออะไร เมื่อแต้มต่อคือ \"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_en": "What is Points Against, when Drawn is \"2\", and when Points Of is \"32\"?",
    "question_th": "แต้มต่อคืออะไร เมื่อจั่วเป็น \"2\" และเมื่อแต้มของคือ \"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_en": "What is Lost, when Drawn is \"2\", and when Points is \"36\"?",
    "question_th": "อะไรหายไป เมื่อจั่วได้เป็น \"2\" และเมื่อแต้มเป็น \"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_en": "What is Points For, when Points is \"63\"?",
    "question_th": "คะแนนมีไว้เพื่ออะไร เมื่อคะแนนเป็น \"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_en": "What was the game number that was played on November 15?",
    "question_th": "เกมที่เล่นในวันที่ 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_en": "What is the lowest attendance when the h/A is H in the Semi-Finals Second Leg?",
    "question_th": "ผู้เข้าร่วมน้อยที่สุดเมื่อ h/A เป็น H ในรอบรองชนะเลิศเลกที่สองคือเท่าใด?",
    "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_en": "What is the attendance number in the final round?",
    "question_th": "จำนวนผู้เข้าร่วมในรอบสุดท้ายคืออะไร?",
    "context": "CREATE TABLE table_name_29 (attendance INTEGER, round VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_30 WHERE county = \"sheridan\" AND built = \"1915\"",
    "question_en": "What bridge in Sheridan county was built in 1915?",
    "question_th": "สะพานใดในเขต Sheridan ที่สร้างขึ้นในปี 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_en": "What is the listed for the bridge at Daniel in Sublette county?",
    "question_th": "สะพานที่ Daniel ในเขต Sublette ระบุไว้ในรายการคืออะไร",
    "context": "CREATE TABLE table_name_86 (listed VARCHAR, county VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT built FROM table_name_71 WHERE location = \"lovell\"",
    "question_en": "In what year was the bridge in Lovell built?",
    "question_th": "สะพานในโลเวลล์สร้างขึ้นในปีใด",
    "context": "CREATE TABLE table_name_71 (built VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT county FROM table_name_62 WHERE location = \"boulder\"",
    "question_en": "What is the county of the bridge in Boulder?",
    "question_th": "สะพานในโบลเดอร์อยู่จังหวัดอะไร",
    "context": "CREATE TABLE table_name_62 (county VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_79 WHERE score = \"84-88 (ot)\"",
    "question_en": "Which opponent has a score of 84-88 (ot)?",
    "question_th": "คู่ต่อสู้คนไหนมีคะแนน 84-88 (โอที)?",
    "context": "CREATE TABLE table_name_79 (opponent VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(game) FROM table_name_36 WHERE score = \"85-92\"",
    "question_en": "How many games have a score of 85-92?",
    "question_th": "มีกี่เกมที่มีคะแนน 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_en": "What is the earliest game with a score of 99-89?",
    "question_th": "เกมแรกสุดที่มีสกอร์ 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_en": "What game has a score of 89-91?",
    "question_th": "เกมใดมีคะแนน 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_en": "On what date did a game higher than 10 have a score of 99-89?",
    "question_th": "เกมที่สูงกว่า 10 มีคะแนน 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_en": "On what date did Fleetcenter have a game lower than 9 with a score of 104-94?",
    "question_th": "ฟลีทเซ็นเตอร์มีเกมต่ำกว่า 9 ด้วยสกอร์ 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_en": "What is Place, when Score is less than 70?",
    "question_th": "Place คืออะไร เมื่อคะแนนน้อยกว่า 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_en": "What is To Par, when Country is \"United States\", when Place is \"T4\", and when Player is \"Frank Boynton\"?",
    "question_th": "To Par คืออะไร เมื่อประเทศคือ \"สหรัฐอเมริกา\" เมื่ออันดับคือ \"T4\" และเมื่อผู้เล่นคือ \"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_en": "What is To Par, when Country is \"United States\", when Place is \"T4\", and when Player is \"Arnold Palmer\"?",
    "question_th": "To Par คืออะไร เมื่อประเทศคือ \"สหรัฐอเมริกา\" เมื่ออันดับคือ \"T4\" และเมื่อผู้เล่นคือ \"อาร์โนลด์ พาลเมอร์\"",
    "context": "CREATE TABLE table_name_96 (to_par VARCHAR, player VARCHAR, country VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT départ_de_la_main_gauche FROM table_name_26 WHERE mode = \"do\"",
    "question_en": "What is the Depart de la main gauche of the do Mode?",
    "question_th": "Depart de la main gauche ของ do Mode คืออะไร?",
    "context": "CREATE TABLE table_name_26 (départ_de_la_main_gauche VARCHAR, mode VARCHAR)"
  },
  {
    "answer": "SELECT MAX(rank) FROM table_name_8 WHERE name = \"john curry\" AND points > 338.43",
    "question_en": "Which Rank has a Name of john curry, and Points larger than 338.43?",
    "question_th": "อันดับใดมีชื่อ John Curry และคะแนนมากกว่า 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_en": "How many Placings have Points smaller than 330.84, and a Name of silvo svajger?",
    "question_th": "มีกี่ตำแหน่งที่มีคะแนนน้อยกว่า 330.84 และมีชื่อของ 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_en": "Which Placings have a Nation of west germany, and Points larger than 303.72?",
    "question_th": "ตำแหน่งใดที่มีสัญชาติของเยอรมนีตะวันตก และคะแนนมากกว่า 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_en": "Which Nation has Points of 300.38?",
    "question_th": "ชาติใดมีคะแนน 300.38?",
    "context": "CREATE TABLE table_name_90 (nation VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_57 WHERE to_par = \"+10\"",
    "question_en": "Which player finished at +10?",
    "question_th": "ผู้เล่นคนไหนจบที่ +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_en": "Who is the opponent before game 5 with a 0-1-0 record?",
    "question_th": "คู่ต่อสู้ก่อนเกมที่ 5 ด้วยสกอร์ 0-1-0 คือใคร?",
    "context": "CREATE TABLE table_name_31 (opponent VARCHAR, game VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_23 WHERE opponent = \"vancouver canucks\"",
    "question_en": "What is the score for the opponent Vancouver Canucks?",
    "question_th": "ฝ่ายตรงข้าม แวนคูเวอร์ คานัคส์ มีสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_23 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_94 WHERE record = \"4-3-0\"",
    "question_en": "What date is the record 4-3-0?",
    "question_th": "สถิติ 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_en": "What is the fleet number with a 4-6-0 wheel arrangement made in 1890?",
    "question_th": "หมายเลขกองเรือที่มีการจัดเรียงล้อ 4-6-0 ที่ผลิตในปี 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_en": "What is the wheel arrangement made in 1890?",
    "question_th": "การจัดเรียงล้อที่เกิดขึ้นในปี 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_en": "What is the quantity preserved of the e-1 class?",
    "question_th": "ระดับ e-1 ที่เก็บรักษาไว้มีปริมาณเท่าใด",
    "context": "CREATE TABLE table_name_17 (quantity_preserved VARCHAR, class VARCHAR)"
  },
  {
    "answer": "SELECT wheel_arrangement FROM table_name_1 WHERE quantity_preserved = \"1\"",
    "question_en": "What is the wheel arrangement with 1 quantity preserved?",
    "question_th": "การจัดเรียงล้อโดยรักษาปริมาณ 1 ชิ้นไว้เป็นอย่างไร?",
    "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_en": "What is the quantity made of the e-22 class, which has a quantity preserved of 0?",
    "question_th": "คลาส e-22 ซึ่งมีปริมาณคงเหลือเป็น 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_en": "What is the sum of Total, when Rank is 8, and when Bronze is less than 1?",
    "question_th": "ผลรวมของผลรวมเมื่ออันดับคือ 8 และเมื่อทองแดงน้อยกว่า 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_en": "What is the lowest Bronze, when Gold is less than 0?",
    "question_th": "บรอนซ์ต่ำสุดคือเมื่อทองน้อยกว่า 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_en": "What is the average Bronze, when Total is 7, and when Silver is greater than 1?",
    "question_th": "ค่าเฉลี่ยของทองแดงคือเท่าใด เมื่อคะแนนรวมคือ 7 และเมื่อเงินมากกว่า 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_en": "What is the sum of Total, when Silver is 0, and when Gold is 1?",
    "question_th": "ผลรวมของผลรวมเมื่อเงินเป็น 0 และเมื่อทองเป็น 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_en": "What is the highest Total, when Gold is 1, when Nation is Hungary, and when Bronze is less than 0?",
    "question_th": "อะไรคือผลรวมสูงสุด เมื่อทองคำคือ 1 เมื่อชาติคือฮังการี และเมื่อทองแดงน้อยกว่า 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_en": "What is the Year of the Film Belle of the Nineties?",
    "question_th": "ปีแห่งภาพยนตร์ 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_en": "What is the Year of the Film Klondike Annie?",
    "question_th": "ปีแห่งภาพยนตร์ 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_en": "What is the Studio of the Film with Director Gregory Ratoff after 1933?",
    "question_th": "สตูดิโอของภาพยนตร์ร่วมกับผู้กำกับ Gregory Ratoff หลังปี 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_en": "Which label has a year older than 2004 and a 2xcd detail as well as the sonic seducer cold hands seduction vol. 69 title?",
    "question_th": "ซึ่งค่ายเพลงมีอายุมากกว่าปี 2004 และมีรายละเอียด 2xcd เช่นเดียวกับ The Sonic Seducer Cold Hands Seduction Vol. 69 ชื่อ?",
    "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_en": "Which details has the out of line label and the year of 2005?",
    "question_th": "รายละเอียดใดบ้างที่มีป้าย out of line และปี 2548?",
    "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_en": "What average year contains the title of machineries of joy vol. 4?",
    "question_th": "ปีเฉลี่ยใดที่มีชื่อเครื่องจักรแห่งความสุขเล่มที่ 4?",
    "context": "CREATE TABLE table_name_54 (year INTEGER, title VARCHAR)"
  },
  {
    "answer": "SELECT Track AS title FROM table_name_6 WHERE year < 2005",
    "question_en": "Which track title has a year lesser thsn 2005?",
    "question_th": "ชื่อเพลงใดที่มีน้อยกว่าหนึ่งปีในปี 2548",
    "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_en": "Which college has a pick less than 25, an overall greater than 159, a round less than 10, and wr as the position?",
    "question_th": "วิทยาลัยใดมีผู้เลือกน้อยกว่า 25 คน รวมมากกว่า 159 คน รอบน้อยกว่า 10 คน และ WR เป็นตำแหน่ง?",
    "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_en": "What is the average overall that has a pick less than 20, North Carolina as the college, with a round less than 8?",
    "question_th": "ค่าเฉลี่ยโดยรวมที่มีตัวเลือกน้อยกว่า 20 คือ North Carolina เป็นวิทยาลัยโดยมีรอบน้อยกว่า 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_en": "How many overalls have a pick greater than 19, with florida as the college?",
    "question_th": "มีกี่ชุดที่มีตัวเลือกมากกว่า 19 โดยมีฟลอริดาเป็นวิทยาลัย",
    "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_en": "What college has an overall less than 243, and tony green as the name?",
    "question_th": "วิทยาลัยใดมีคะแนนรวมน้อยกว่า 243 และมีโทนี่ กรีนเป็นชื่อ",
    "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_en": "Which Large end has a Taper/ft smaller than 0.6000000000000001?",
    "question_th": "ปลายขนาดใหญ่ใดที่มี Taper/ft เล็กกว่า 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_en": "Which Taper/ft that has a Large end smaller than 0.5, and a Taper of #2?",
    "question_th": "Taper/ft ใดที่มีปลาย Large เล็กกว่า 0.5 และ Taper ที่ #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_en": "Which Length has a Taper of #15, and a Large end larger than 1.875?",
    "question_th": "ความยาวใดมีเทเปอร์ #15 และปลายขนาดใหญ่มากกว่า 1.875",
    "context": "CREATE TABLE table_name_92 (length INTEGER, taper VARCHAR, large_end VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(angle_from_center_) AS ° FROM table_name_97 WHERE taper / ft < 0.6000000000000001",
    "question_en": "Which Angle from center/° has a Taper/ft smaller than 0.6000000000000001?",
    "question_th": "มุมจากศูนย์กลาง/° ใดมีเทเปอร์/ฟุตน้อยกว่า 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_en": "What driver had the highest grid position with a time of +0.283?",
    "question_th": "นักแข่งคนใดมีตำแหน่งกริดสูงสุดด้วยเวลา +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_en": "What is the most number of laps run by Ilario Dionisi?",
    "question_th": "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_en": "What is the total of laps run by the driver with a grid under 17 and a time of +5.088?",
    "question_th": "นักแข่งที่มีกริดต่ำกว่า 17 และเวลา +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_en": "What is the driver with the laps under 16, grid of 10, a bike of Yamaha YZF-R6, and ended with an accident?",
    "question_th": "นักแข่งที่สกอร์รวมต่ำกว่า 16 ตารางคะแนน 10 มอเตอร์ไซค์ Yamaha YZF-R6 แล้วจบลงด้วยอุบัติเหตุคือใคร?",
    "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_en": "Who scored more than 72?",
    "question_th": "ใครทำคะแนนเกิน 72 บ้าง?",
    "context": "CREATE TABLE table_name_28 (player VARCHAR, score INTEGER)"
  },
  {
    "answer": "SELECT MAX(score) FROM table_name_80 WHERE player = \"tsuneyuki nakajima\"",
    "question_en": "What is the top score for tsuneyuki nakajima?",
    "question_th": "คะแนนสูงสุดของสึเนยูกิ นากาจิมะคืออะไร?",
    "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_en": "What is the low score for TO par +2 in japan?",
    "question_th": "คะแนนต่ำสำหรับ TO พาร์ +2 ในญี่ปุ่นคือเท่าไร?",
    "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_en": "What is Anders Forsbrand's Place?",
    "question_th": "แอนเดอร์ส ฟอร์สแบรนด์ส์ เพลส คืออะไร",
    "context": "CREATE TABLE table_name_14 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_78 WHERE place = \"t8\"",
    "question_en": "What is the T8 Place Player?",
    "question_th": "ผู้เล่น T8 Place คืออะไร?",
    "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_en": "What is the To par of the Player with a Score of 70-71=141?",
    "question_th": "ค่าพาร์ของผู้เล่นที่มีคะแนน 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_en": "Which Partner has Opponents in the final of john bromwich frank sedgman?",
    "question_th": "คู่หูคนไหนมีคู่แข่งในรอบชิงชนะเลิศของจอห์น บรอมวิช แฟรงค์ เซดจ์แมน?",
    "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–6, 6–4, 2–6, 4–6\"",
    "question_en": "Which Opponents in the final have a Score of 4–6, 6–4, 2–6, 4–6?",
    "question_th": "คู่ต่อสู้คนใดในรอบชิงชนะเลิศมีคะแนน 4–6, 6–4, 2–6, 4–6?",
    "context": "CREATE TABLE table_name_18 (opponents_in_the_final VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_88 WHERE score = \"5–7, 4–6, 6–3, 1–6\"",
    "question_en": "Which Year has a Score of 5–7, 4–6, 6–3, 1–6?",
    "question_th": "ปีใดมีคะแนน 5–7, 4–6, 6–3, 1–6",
    "context": "CREATE TABLE table_name_88 (year VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT championship FROM table_name_91 WHERE score = \"2–6, 4–6, 4–6\"",
    "question_en": "Which Championship has a Score of 2–6, 4–6, 4–6?",
    "question_th": "แชมป์เปี้ยนชิพใดมีคะแนน 2–6, 4–6, 4–6?",
    "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_en": "Which Score has Opponents in the final of john bromwich frank sedgman?",
    "question_th": "คู่แข่งมีสกอร์ไหนในรอบชิงชนะเลิศของ จอห์น บรอมมิช แฟรงค์ เซดจ์แมน?",
    "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_en": "Which Opponent has a Date of november 17, 1963?",
    "question_th": "ฝ่ายตรงข้ามคนไหนมีวันที่ 17 พฤศจิกายน 2506?",
    "context": "CREATE TABLE table_name_30 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_27 WHERE result = \"l 14–10\"",
    "question_en": "Which Opponent has a Result of l 14–10?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีผลการแข่งขัน l 14–10?",
    "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_en": "Which Result has a Week smaller than 11, and Attendance of 17,568?",
    "question_th": "ผลลัพธ์ใดมีสัปดาห์ที่น้อยกว่า 11 และมีผู้เข้าร่วม 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–10\"",
    "question_en": "Which Opponent has a Result of w 19–10?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีผลการแข่งขัน w 19–10?",
    "context": "CREATE TABLE table_name_40 (opponent VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT AVG(goals) FROM table_name_54 WHERE name = \"essi sainio\"",
    "question_en": "What is the average goals for Essi Sainio?",
    "question_th": "ประตูเฉลี่ยของ เอสซี่ ไซนิโอ คืออะไร?",
    "context": "CREATE TABLE table_name_54 (goals INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT champion FROM table_name_26 WHERE year = 1988",
    "question_en": "Who were the champions in 1988?",
    "question_th": "ใครคือแชมป์ในปี 1988?",
    "context": "CREATE TABLE table_name_26 (champion VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT runner_up FROM table_name_32 WHERE year = 1989",
    "question_en": "Who was the runner-up in 1989?",
    "question_th": "ใครคือรองชนะเลิศในปี 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_en": "What is the lowest December, when Score is \"4 - 4\"?",
    "question_th": "ธันวาคมต่ำสุดคือเมื่อสกอร์อยู่ที่ \"4 - 4\"?",
    "context": "CREATE TABLE table_name_66 (december INTEGER, score VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_24 WHERE game = 24",
    "question_en": "What is Record, when Game is \"24\"?",
    "question_th": "Record คืออะไร เมื่อเกมคือ \"24\"?",
    "context": "CREATE TABLE table_name_24 (record VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_9 WHERE game = 37",
    "question_en": "What is Opponent, when Game is \"37\"?",
    "question_th": "ฝ่ายตรงข้ามคืออะไร เมื่อเกมคือ \"37\"?",
    "context": "CREATE TABLE table_name_9 (opponent VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_22 WHERE date = \"11/09/1935\"",
    "question_en": "How many spectators attended the game on 11/09/1935?",
    "question_th": "มีผู้ชมกี่คนที่เข้าร่วมการแข่งขันในวันที่ 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_en": "Who was the opponent against which the result was w20-0?",
    "question_th": "คู่ต่อสู้คือใครซึ่งผลการแข่งขันคือ w20-0?",
    "context": "CREATE TABLE table_name_3 (opponent VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_66 WHERE result = \"w20-0\"",
    "question_en": "On which date was the result w20-0?",
    "question_th": "ผล w20-0 ออกวันไหน?",
    "context": "CREATE TABLE table_name_66 (date VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_27 WHERE result = \"w29-7\"",
    "question_en": "How many spectators attended the game that ended in a result of w29-7?",
    "question_th": "มีผู้ชมกี่คนที่เข้าร่วมเกมซึ่งจบลงด้วยผล W29-7?",
    "context": "CREATE TABLE table_name_27 (attendance VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_19 WHERE to_par = \"–8\"",
    "question_en": "Which Place has a To par of –8?",
    "question_th": "สถานที่ใดมีพาร์ถึง –8?",
    "context": "CREATE TABLE table_name_19 (place VARCHAR, to_par VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_18 WHERE place = \"3\"",
    "question_en": "Which Score has a Place of 3?",
    "question_th": "คะแนนใดมีอันดับที่ 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_en": "Which average money has a Score of 69-72-72-72=285?",
    "question_th": "เงินเฉลี่ยตัวไหนมีคะแนน 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_en": "Which Score has a Place of t6, and a Country of paraguay?",
    "question_th": "คะแนนใดมีอันดับ t6 และประเทศปารากวัย",
    "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_en": "What are the total rounds for the texas college and has a pick smaller than 25?",
    "question_th": "รอบรวมของวิทยาลัยเท็กซัสและตัวเลือกที่น้อยกว่า 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_en": "What top round has a pick smaller than 2?",
    "question_th": "รอบบนสุดใดที่มีการเลือกน้อยกว่า 2?",
    "context": "CREATE TABLE table_name_7 (round INTEGER, pick INTEGER)"
  },
  {
    "answer": "SELECT result FROM table_name_81 WHERE score = \"70-73\"",
    "question_en": "WHAT IS THE RESULT WITH A SCORE OF 70-73?",
    "question_th": "ผลลัพธ์ที่ได้คะแนน 70-73 คืออะไร?",
    "context": "CREATE TABLE table_name_81 (result VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_10 WHERE score = \"66-62\"",
    "question_en": "What is the date with score of 66-62?",
    "question_th": "คะแนน 66-62 วันที่เท่าไหร่คะ?",
    "context": "CREATE TABLE table_name_10 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_94 WHERE record = \"1-0\"",
    "question_en": "WHAT IS THE SCORE WITH A RECORD OF 1-0?",
    "question_th": "คะแนนที่มีสถิติ 1-0 คืออะไร?",
    "context": "CREATE TABLE table_name_94 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_89 WHERE score = \"72-63\"",
    "question_en": "WHAT IS THE OPPONENT WITH A SCORE OF 72-63?",
    "question_th": "ฝ่ายตรงข้ามที่มีคะแนน 72-63 คืออะไร?",
    "context": "CREATE TABLE table_name_89 (opponent VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(weight) FROM table_name_89 WHERE distance = \"5 ½ f\"",
    "question_en": "What is the weight number when the distance was 5 ½ f?",
    "question_th": "เลขน้ำหนักเมื่อระยะทางคือ 5 ½ f คืออะไร?",
    "context": "CREATE TABLE table_name_89 (weight VARCHAR, distance VARCHAR)"
  },
  {
    "answer": "SELECT distance FROM table_name_21 WHERE weight = 6.11",
    "question_en": "What was the distance when the weight was 6.11?",
    "question_th": "น้ำหนักคือ 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_en": "What was the race when the winner of 2nd was Voleuse?",
    "question_th": "การแข่งขันจะเป็นอย่างไรเมื่อผู้ชนะอันดับที่ 2 คือ Voleuse?",
    "context": "CREATE TABLE table_name_27 (race VARCHAR, winner_or_2nd VARCHAR)"
  },
  {
    "answer": "SELECT winner_or_2nd FROM table_name_91 WHERE result = \"–\" AND weight = 6.7",
    "question_en": "What was the name of the winner or 2nd when the result was –, and weight was 6.7?",
    "question_th": "ผู้ชนะชื่ออะไรหรือที่ 2 เมื่อผลคือ – และน้ำหนัก 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 = \"–\" AND distance = \"7f\"",
    "question_en": "What is the largest weight wth a Result of –, and a Distance of 7f?",
    "question_th": "น้ำหนักที่ใหญ่ที่สุดโดยมีผลเป็น – และระยะทาง 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 = \"–\"",
    "question_en": "What is the the name of the winner or 2nd  with a weight more than 7.3, and the result was –?",
    "question_th": "ชื่อผู้ชนะหรือที่ 2 น้ำหนักเกิน 7.3 คืออะไร และผลคือ –?",
    "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_en": "What is the total number of Total, when Silver is 1, and when Bronze is 7?",
    "question_th": "จำนวนรวมทั้งหมดเมื่อเงินคือ 1 และเมื่อทองแดงคือ 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_en": "What is Bronze, when Silver is 2, and when Nation is Italy?",
    "question_th": "บรอนซ์คืออะไร เมื่อซิลเวอร์คือ 2 และเมื่อชาติคืออิตาลี",
    "context": "CREATE TABLE table_name_20 (bronze VARCHAR, silver VARCHAR, nation VARCHAR)"
  },
  {
    "answer": "SELECT gold FROM table_name_79 WHERE total = 6",
    "question_en": "What is Gold, when Total is 6?",
    "question_th": "ทองคืออะไร เมื่อผลรวมคือ 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_en": "What is Gold, when Silver is 5, and when Nation is Belgium?",
    "question_th": "ทองคำคืออะไร เมื่อเงินคือ 5 และเมื่อประเทศคือเบลเยียม",
    "context": "CREATE TABLE table_name_91 (gold VARCHAR, silver VARCHAR, nation VARCHAR)"
  },
  {
    "answer": "SELECT gold FROM table_name_71 WHERE bronze = \"11\"",
    "question_en": "What is Gold, when Bronze is 11?",
    "question_th": "ทองคืออะไรเมื่อทองแดงคือ 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_en": "Which poll source determined undecided of 5% and Jim DeMint (R) of 58%?",
    "question_th": "แหล่งสำรวจความคิดเห็นใดระบุว่าไม่แน่ใจ 5% และ Jim DeMint (R) 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_en": "Which poll source had an other of 15%?",
    "question_th": "แหล่งสำรวจความคิดเห็นใดมีอีก 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_en": "What was the vote for Alvin Green when other was 9%?",
    "question_th": "คะแนนโหวตของ Alvin Green คืออะไรเมื่อคนอื่นได้ 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_en": "What was the vote for Alvin Green when Jim DeMint was 62%?",
    "question_th": "คะแนนโหวตของ Alvin Green เมื่อ Jim DeMint อยู่ที่ 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_en": "What was the vote for Alvin Green when other was 9%?",
    "question_th": "คะแนนโหวตของ Alvin Green คืออะไรเมื่อคนอื่นได้ 9%",
    "context": "CREATE TABLE table_name_22 (alvin_greene__d_ VARCHAR, other VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_61 WHERE to_par = \"–1\"",
    "question_en": "What is the Place of the Player with a To par of –1?",
    "question_th": "ตำแหน่งผู้เล่นที่มีพาร์ถึง –1 คืออะไร?",
    "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_en": "What is the Place of the Player with Money greater than 300 and a Score of 71-69-70-70=280?",
    "question_th": "ตำแหน่งผู้เล่นที่มีเงินมากกว่า 300 และคะแนน 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_en": "What is the Score of the game of the Player in Place 4?",
    "question_th": "คะแนนของเกมของผู้เล่นอันดับที่ 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_en": "What is the To par of the Player with a Score of 73-70-71-72=286?",
    "question_th": "ค่าพาร์ของผู้เล่นที่มีคะแนน 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_en": "What is the To par of the 4 Place Player?",
    "question_th": "To par ของผู้เล่นอันดับ 4 คืออะไร?",
    "context": "CREATE TABLE table_name_9 (to_par VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT SUM(money___) AS $__ FROM table_name_37 WHERE place = \"5\"",
    "question_en": "What is the Money of the Player in Place 5?",
    "question_th": "เงินของผู้เล่นในตำแหน่งที่ 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_en": "Who was the arranger for the song that had a lyricist of Sirapatara Kalayapanid?",
    "question_th": "ใครเป็นผู้เรียบเรียงเพลงที่มีผู้แต่งเนื้อร้อง สิรภัทร กัลยาพาณิชย์?",
    "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_en": "What is the lowest Bush#, when Bush% is \"65.4%\"?",
    "question_th": "Bush# ต่ำสุดคือเท่าใด เมื่อ Bush% คือ \"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_en": "What is the lowest Kerry#, when Others# is \"106\", and when Bush# is less than 3,188?",
    "question_th": "Kerry# ต่ำสุดคือเมื่อ Others# คือ \"106\" และเมื่อ Bush# น้อยกว่า 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_en": "What is the highest Bush#, when Others% is \"1.7%\", when Others# is less than 75, and when Kerry# is greater than 1,524?",
    "question_th": "Bush# สูงสุดคืออะไร เมื่อ Others% คือ \"1.7%\" เมื่อ Others# น้อยกว่า 75 และเมื่อ Kerry# มากกว่า 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_en": "When did Manchester United play against Bristol City with an H/A of A?",
    "question_th": "แมนเชสเตอร์ ยูไนเต็ด เล่นกับบริสตอล ซิตี้ ด้วย H/A เท่ากับ 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_en": "How many people attended the match when Manchester United played against the Hearts?",
    "question_th": "มีคนเข้าร่วมการแข่งขันกี่คนเมื่อแมนเชสเตอร์ยูไนเต็ดเล่นกับเดอะฮาร์ทส์?",
    "context": "CREATE TABLE table_name_95 (attendance INTEGER, opponents VARCHAR)"
  },
  {
    "answer": "SELECT AVG(week) FROM table_name_78 WHERE opponent = \"denver broncos\"",
    "question_en": "What is the average number of weeks that the opponent was the Denver Broncos?",
    "question_th": "จำนวนสัปดาห์โดยเฉลี่ยที่คู่ต่อสู้คือเดนเวอร์ บรองโกส์คือเท่าใด?",
    "context": "CREATE TABLE table_name_78 (week INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_67 WHERE date = \"november 23, 2003\"",
    "question_en": "What was the result of the game played on November 23, 2003?",
    "question_th": "ผลการแข่งขันที่เล่นเมื่อวันที่ 23 พฤศจิกายน พ.ศ. 2546 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_67 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT kickoff_time FROM table_name_53 WHERE week = 1",
    "question_en": "What was the kickoff time on week 1?",
    "question_th": "เวลาคิกออฟในสัปดาห์ที่ 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_en": "Can you tell me the sum of FA Cup Goals that has the League Cup Goals larger than 0?",
    "question_th": "คุณช่วยบอกผลรวมของประตู FA Cup ที่ประตูลีกคัพมากกว่า 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_en": "what is the english translation when the Language is english, Draw is smaller than 16, and the Artist is aysel and arash?",
    "question_th": "การแปลภาษาอังกฤษคืออะไรเมื่อภาษาเป็นภาษาอังกฤษ Draw น้อยกว่า 16 และศิลปินคือ aysel และ 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čík and nela\" AND place > 18",
    "question_en": "What is the average Points when the artist is kamil mikulčík and nela, and the Place is larger than 18?",
    "question_th": "อะไรคือคะแนนเฉลี่ยเมื่อศิลปินคือ kamil mikulčík และ nela และสถานที่มีขนาดใหญ่กว่า 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_en": "what is the place when the draw is less than 12 and the artist is quartissimo feat. martina?",
    "question_th": "สถานที่ใดเมื่อการจับฉลากน้อยกว่า 12 และศิลปินคือ quartissimo feat. มาร์ติน่า?",
    "context": "CREATE TABLE table_name_60 (place INTEGER, draw VARCHAR, artist VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_50 WHERE winner = \"amer sulaiman\"",
    "question_en": "What is the date amer sulaiman won?",
    "question_th": "อาเมอร์ สุไลมาน ชนะวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_50 (date VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_24 WHERE prize = \"$248,004\"",
    "question_en": "What event has a $248,004 prize?",
    "question_th": "งานใดมีเงินรางวัล $248,004?",
    "context": "CREATE TABLE table_name_24 (event VARCHAR, prize VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_12 WHERE prize = \"$322,280\"",
    "question_en": "What is the date of the event with a $322,280 prize?",
    "question_th": "งานจัดขึ้นวันที่เท่าไหร่พร้อมเงินรางวัล $322,280?",
    "context": "CREATE TABLE table_name_12 (date VARCHAR, prize VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_12 WHERE city = \"florianopolis\"",
    "question_en": "What event is in florianopolis?",
    "question_th": "เหตุการณ์อะไรในฟลอเรียโนโปลิส?",
    "context": "CREATE TABLE table_name_12 (event VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_16 WHERE city = \"lima\"",
    "question_en": "Who is the winner in the city of lima?",
    "question_th": "ใครคือผู้ชนะในเมืองลิมา?",
    "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_en": "Alton Lister Category:Articles with hCards has what as the listed years?",
    "question_th": "Alton Lister หมวดหมู่:บทความที่มี hCards มีปีใดบ้างที่ระบุไว้?",
    "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_en": "Tom Lagarde Category:Articles with hCards used what Jersey Number(s)?",
    "question_th": "Tom Lagarde หมวดหมู่:บทความที่มี hCards ใช้หมายเลขเสื้ออะไร?",
    "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_en": "What is the fastest lap for Seiji Ara?",
    "question_th": "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_en": "On what date does Yuji Tachikawa have the fastest lap in round 1?",
    "question_th": "ยูจิ ทาชิคาว่า มีรอบเร็วที่สุดในรอบ 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_en": "In which venue did he place 3rd in the World Race Walking Cup?",
    "question_th": "เขาได้ที่ 3 ในการแข่งขัน 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_en": "What were the notes when his position was 10th?",
    "question_th": "อะไรคือบันทึกเมื่อตำแหน่งของเขาอยู่ที่ 10?",
    "context": "CREATE TABLE table_name_2 (notes VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_21 WHERE competition = \"universiade\"",
    "question_en": "In which year did he compete in the Universiade?",
    "question_th": "เขาแข่งขันในมหาวิทยาลัยในปีใด?",
    "context": "CREATE TABLE table_name_21 (year VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_48 WHERE years_for_grizzlies = \"2002-2003\"",
    "question_en": "Which Player has Years for Grizzlies of 2002-2003?",
    "question_th": "ผู้เล่นคนไหนที่เล่น Grizzlies ตั้งแต่ปี 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_en": "Which Player has position of power forward and School/Club Team of Depaul?",
    "question_th": "ผู้เล่นคนไหนมีตำแหน่งกองหน้าและทีมโรงเรียน/สโมสรของ 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_en": "What is Nation, when Rank is greater than 2, when Total is greater than 1, and when Bronze is less than 3?",
    "question_th": "Nation คืออะไร เมื่ออันดับมากกว่า 2 เมื่อผลรวมมากกว่า 1 และเมื่อ Bronze น้อยกว่า 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_en": "What is the average Silver, when Rank is 5, and when Bronze is less than 1?",
    "question_th": "เงินโดยเฉลี่ยคือเท่าไร เมื่ออันดับคือ 5 และเมื่อทองแดงน้อยกว่า 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_en": "What is the lowest Rank, when Nation is Great Britain, and when Bronze is less than 1?",
    "question_th": "อันดับต่ำสุดคือเมื่อ Nation คือ Great Britain และเมื่อ Bronze น้อยกว่า 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_en": "What is the total number of Gold, when Silver is 2, and when Total is less than 7?",
    "question_th": "จำนวนทองคำทั้งหมดคือเท่าใด เมื่อเงินคือ 2 และเมื่อรวมน้อยกว่า 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_en": "What is the lowest Gold, when Nation is Canada, and when Rank is greater than 4?",
    "question_th": "ทองคำที่ต่ำที่สุดคืออะไร เมื่อประเทศคือแคนาดา และเมื่ออันดับมากกว่า 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_en": "What is Nation, when Model is M1895 & M1897 Carbine?",
    "question_th": "Nation คืออะไร ในเมื่อรุ่นคือ 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_en": "What is Weight, when Length is 1168mm / 46 in?",
    "question_th": "น้ำหนักคือเท่าใด เมื่อความยาวคือ 1168 มม. / 46 นิ้ว",
    "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_en": "What is Length, when Barrel Length is 750mm / 29.5 in?",
    "question_th": "ความยาวคืออะไร เมื่อความยาวลำกล้องคือ 750 มม. / 29.5 นิ้ว?",
    "context": "CREATE TABLE table_name_46 (length VARCHAR, barrel_length VARCHAR)"
  },
  {
    "answer": "SELECT decision FROM table_name_24 WHERE date = \"january 13\"",
    "question_en": "What is the decision of the game on January 13?",
    "question_th": "การตัดสินใจของเกมวันที่ 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_en": "What was the sum of the ranks for Japan who had less than 5 bronze medals and more than 3 silvers?",
    "question_th": "ผลรวมอันดับของญี่ปุ่นที่ได้น้อยกว่า 5 เหรียญทองแดง และมากกว่า 3 เหรียญเงิน เป็นเท่าใด",
    "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_en": "What is the lowest total medals for the united states who had more than 11 silver medals?",
    "question_th": "เหรียญเงินรวมต่ำสุดของสหรัฐอเมริกาที่ได้เหรียญเงินมากกว่า 11 เหรียญคือเท่าใด",
    "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_en": "What is the sum of the bronze medals when there were more than 2 silver medals and a rank larger than 6?",
    "question_th": "ผลรวมของเหรียญทองแดงเมื่อมีมากกว่า 2 เหรียญเงินและมีอันดับมากกว่า 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_en": "What was the highest points when the second was 4?",
    "question_th": "แต้มสูงสุดเมื่อวินาทีคือ 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_en": "Who was the driver/passengar when the position was smaller than 8, the third was 1, and there was 1 win?",
    "question_th": "ใครคือคนขับ/ผู้โดยสารเมื่อตำแหน่งน้อยกว่า 8 อันดับสามคือ 1 และมีชัย 1 ครั้ง?",
    "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_en": "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?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าคะแนนต่ำสุดที่ชนะโดยมีการแข่งขันทั้งหมด 4 ครั้งและ WLH ทั้งหมดคือ 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_en": "Can you tell me the lowest Total natches that has the Points won of 3, and the Year of 1994?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าคะแนนรวมต่ำสุดที่ได้คะแนน 3 และปี 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ús ramírez\"",
    "question_en": "What is Team, when Replaced By is \"Jesús Ramírez\"?",
    "question_th": "ทีมคืออะไร เมื่อแทนที่ด้วย \"เฆซุส รามิเรซ\"?",
    "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_en": "What is Position in Table, when Replaced By is \"Sergio Bueno\"?",
    "question_th": "ตำแหน่งในตารางคืออะไร เมื่อแทนที่ด้วย \"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_en": "What is Manner of Departure, when Outgoing Manager is \"Luis Fernando Tena\"?",
    "question_th": "ลักษณะการออกเดินทางคืออะไร เมื่อผู้จัดการขาออกคือ \"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_en": "What is Position in Table, when Team is \"Morelia\"?",
    "question_th": "ตำแหน่งในตารางคืออะไร เมื่อทีมคือ \"มอเรเลีย\"?",
    "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_en": "What is Team, when Replaced By is \"Omar Arellano\"?",
    "question_th": "ทีมคืออะไร เมื่อแทนที่ด้วย \"โอมาร์ อาเรลลาโน\"?",
    "context": "CREATE TABLE table_name_5 (team VARCHAR, replaced_by VARCHAR)"
  },
  {
    "answer": "SELECT position_in_table FROM table_name_43 WHERE replaced_by = \"josé pekerman\"",
    "question_en": "What is Position in Table, when Replaced by is \"José Pekerman\"?",
    "question_th": "ตำแหน่งในตารางคืออะไร เมื่อแทนที่ด้วย \"José 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_en": "Which episode 4 has a Star of anna powierza?",
    "question_th": "ตอนที่ 4 มีดาราของ 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_en": "What team has a home city of Koprivnica?",
    "question_th": "ทีมใดมีเมืองโคปริฟนิกาเป็นบ้านเกิด?",
    "context": "CREATE TABLE table_name_77 (team VARCHAR, home_city VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_65 WHERE home_city = \"zadar\"",
    "question_en": "What team that has a Home city of Zadar?",
    "question_th": "ทีมไหนมีเมืองบ้านเกิดอย่างซาดาร์?",
    "context": "CREATE TABLE table_name_65 (team VARCHAR, home_city VARCHAR)"
  },
  {
    "answer": "SELECT stadium FROM table_name_70 WHERE team = \"nk zagreb\"",
    "question_en": "What is the stadium of the NK Zagreb?",
    "question_th": "สนามกีฬาของ NK Zagreb คืออะไร?",
    "context": "CREATE TABLE table_name_70 (stadium VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_74 WHERE home_city = \"velika\"",
    "question_en": "What team has a home city of Velika?",
    "question_th": "ทีมใดมีเมืองเกิดคือเวลิกา?",
    "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_en": "What is the City of license with a 88.7 fm frequency",
    "question_th": "เมืองแห่งใบอนุญาตที่มีความถี่ 88.7 fm คืออะไร",
    "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_en": "what is the Power with 88.5 fm Frequency",
    "question_th": "คลื่นความถี่ 88.5 fm กำลังเท่าไหร่",
    "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_en": "what is the City of license that has a 1,400 watts Power",
    "question_th": "เมืองใบอนุญาตที่มีกำลังไฟ 1,400 วัตต์คืออะไร",
    "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_en": "what is the Identifier with 94.9 fm Frequency",
    "question_th": "ตัวระบุที่มีความถี่ 94.9 fm คืออะไร",
    "context": "CREATE TABLE table_name_19 (identifier VARCHAR, frequency VARCHAR)"
  },
  {
    "answer": "SELECT frequency FROM table_name_32 WHERE city_of_license = \"fairview\"",
    "question_en": "what is the Frequency that has a fairview City of license",
    "question_th": "ความถี่ที่มีใบอนุญาตเมืองแฟร์วิวคืออะไร",
    "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_en": "what is the City of license that has a 1,400 watts Power",
    "question_th": "เมืองใบอนุญาตที่มีกำลังไฟ 1,400 วัตต์คืออะไร",
    "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_en": "How much Loss has a Gain smaller than 1571, and a Long smaller than 47, and an Avg/G of 36.4?",
    "question_th": "ขาดทุนเท่าใดมีกำไรน้อยกว่า 1571 และ Long น้อยกว่า 47 และ Avg/G เท่ากับ 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_en": "Which Avg/G has a Name of david allen, and a Gain larger than 371?",
    "question_th": "Avg/G ใดมีชื่อ David Allen และมีกำไรมากกว่า 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_en": "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?",
    "question_th": "Avg/G ใดคือค่าต่ำสุดที่มี Long น้อยกว่า 47 และชื่อของ Frank murphy และกำไรน้อยกว่า 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_en": "How much Avg/G has a Gain smaller than 1571, and a Long smaller than 46?",
    "question_th": "Avg/G มีกำไรน้อยกว่า 1571 และ Long น้อยกว่า 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_en": "Can you tell me the highest Capacity that has the Team of torpedo?",
    "question_th": "คุณช่วยบอกความจุสูงสุดที่มีทีมตอร์ปิโดได้ไหม?",
    "context": "CREATE TABLE table_name_66 (capacity INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT capacity FROM table_name_88 WHERE position_in_2005 = \"8\"",
    "question_en": "Can you tell me the Capacity that has the Position in 2005 of 8?",
    "question_th": "คุณช่วยบอกความจุที่มีตำแหน่งในปี 2548 จาก 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_en": "Can you tell me the Venue that has the Position in 2005 of 8?",
    "question_th": "คุณช่วยบอกสถานที่ที่มีตำแหน่งในปี 2548 จาก 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_en": "Which tournament was held on October 14, 2007?",
    "question_th": "การแข่งขันใดจัดขึ้นในวันที่ 14 ตุลาคม พ.ศ. 2550",
    "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_en": "Who was the opponent with a score of 4-6, 7-5, 4-6?",
    "question_th": "คู่ต่อสู้ที่มีสกอร์ 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_en": "What was the outcome when Jing-Jing Lu was the opponent?",
    "question_th": "ผลลัพธ์จะเป็นเช่นไรเมื่อ Jing-Jing Lu เป็นคู่ต่อสู้?",
    "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_en": "What is Opponent, when Result is Loss, and when Venue is Mosaic Stadium?",
    "question_th": "คู่ต่อสู้คืออะไร เมื่อผลลัพธ์คือแพ้ และเมื่อใดคือสนามโมเสก",
    "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_en": "What is the date (to) associated wiht a traction type of electric and the Yarmouth Light and Power Company system?",
    "question_th": "วันที่ (ถึง) ที่เกี่ยวข้องกับระบบฉุดลากไฟฟ้าและระบบ Yarmouth Light and Power Company คืออะไร?",
    "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_en": "What is Name, when Overall is less than 175, and when College is \"Georgia\"?",
    "question_th": "ชื่ออะไร เมื่อคะแนนรวมน้อยกว่า 175 และเมื่อวิทยาลัยคือ \"จอร์เจีย\"",
    "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_en": "What is the highest Pick, when Round is greater than 15, and when College is \"Tennessee\"?",
    "question_th": "ตัวเลือกสูงสุดคืออะไร เมื่อรอบมากกว่า 15 และเมื่อวิทยาลัยคือ \"เทนเนสซี\"",
    "context": "CREATE TABLE table_name_19 (pick INTEGER, round VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT pick FROM table_name_45 WHERE round = 15",
    "question_en": "What is Pick, when Round is 15?",
    "question_th": "Pick คืออะไร เมื่อรอบคือ 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_en": "What is the sum of Overall, when Pick is greater than 5, when Round is less than 11, and when Name is \"Tom Barrington\"?",
    "question_th": "ผลรวมของผลรวมเมื่อเลือกมากกว่า 5 เมื่อรอบน้อยกว่า 11 และเมื่อชื่อคือ \"ทอม แบร์ริงตัน\" คืออะไร?",
    "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_en": "Which venue was used for the game whose score was 2:3?",
    "question_th": "สนามใดที่ใช้สำหรับเกมที่มีคะแนน 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_en": "What was the score for the game in which Al-Qadsia was Team 2?",
    "question_th": "คะแนนของเกมที่ Al-Qadsia เป็นทีม 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_en": "What years did the player with the jersey number 33 and played position pf play?",
    "question_th": "ผู้เล่นที่สวมเสื้อหมายเลข 33 และเล่นตำแหน่ง pf เล่นมากี่ปี?",
    "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_en": "What years did the player with the jersey number bigger than 20 play?",
    "question_th": "ผู้เล่นที่มีหมายเลขเสื้อมากกว่า 20 เล่นกี่ปี?",
    "context": "CREATE TABLE table_name_5 (years VARCHAR, jersey_number_s_ INTEGER)"
  },
  {
    "answer": "SELECT place FROM table_name_53 WHERE to_par = \"–2\" AND player = \"bernhard langer\"",
    "question_en": "WHich Place has a To par of –2, and a Player of bernhard langer?",
    "question_th": "สถานที่ใดมีพาร์ถึง –2 และเป็นผู้เล่นของแบร์นฮาร์ด แลงเกอร์?",
    "context": "CREATE TABLE table_name_53 (place VARCHAR, to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_28 WHERE to_par = \"–3\" AND country = \"united states\"",
    "question_en": "WHich Score has a To par of –3, and a Country of united states?",
    "question_th": "คะแนนใดมีพาร์ถึง –3 และประเทศของสหรัฐอเมริกา?",
    "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_en": "Who is the Player with a Score of 70-72=142? Question 3",
    "question_th": "ผู้เล่นที่มีคะแนน 70-72=142 คือใคร? คำถามที่ 3",
    "context": "CREATE TABLE table_name_20 (player VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_74 WHERE to_par = \"–2\" AND score = 69 - 73 = 142",
    "question_en": "Name the Player who has a To par of –2 and a Score of 69-73=142?",
    "question_th": "ตั้งชื่อผู้เล่นที่มีพาร์ถึง –2 และคะแนน 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 = \"–5\"",
    "question_en": "Name the Player who has a Country of united states, and a To par of –5?",
    "question_th": "ตั้งชื่อผู้เล่นที่มีประเทศสหรัฐอเมริกาและถึงพาร์ที่ –5?",
    "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_en": "Name the Player who has a Place of t7 in Country of united states?",
    "question_th": "ตั้งชื่อผู้เล่นที่มีตำแหน่ง t7 ในประเทศสหรัฐอเมริกาหรือไม่?",
    "context": "CREATE TABLE table_name_45 (player VARCHAR, place VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_60 WHERE choreographer_s_ = \"bjørn holthe\"",
    "question_en": "What is the result of choreographer bjørn holthe?",
    "question_th": "ผลลัพธ์ของนักออกแบบท่าเต้น bjørn holthe คืออะไร?",
    "context": "CREATE TABLE table_name_60 (result VARCHAR, choreographer_s_ VARCHAR)"
  },
  {
    "answer": "SELECT music FROM table_name_23 WHERE choreographer_s_ = \"sabina dalfjäll\"",
    "question_en": "What is the music for choreographer sabina dalfjäll?",
    "question_th": "เพลงของนักออกแบบท่าเต้น sabina dalfjäll คืออะไร?",
    "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_en": "What couple had a safe result and a lyrical jazz style?",
    "question_th": "คู่รักคนไหนที่ได้ผลลัพท์ที่ปลอดภัยและมีสไตล์ดนตรีแจ๊สที่ไพเราะ?",
    "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_en": "How many games had fewer than 118 opponents and more than 109 net points with an opponent of Washington?",
    "question_th": "มีกี่เกมที่มีคู่ต่อสู้น้อยกว่า 118 คนและมีคะแนนสุทธิมากกว่า 109 แต้มกับคู่ต่อสู้ของวอชิงตัน",
    "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_en": "which opponent is from February 12?",
    "question_th": "คู่ต่อสู้คนไหนตั้งแต่วันที่ 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_en": "How many opponents were there in a game higher than 20 on January 28?",
    "question_th": "มีคู่ต่อสู้กี่คนในเกมที่สูงกว่า 20 เมื่อวันที่ 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_en": "What round did the celtic played away on 24 february 1900?",
    "question_th": "เซลติกเล่นรอบใดในวันที่ 24 กุมภาพันธ์ พ.ศ. 2443?",
    "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_en": "Who played against in venue a on 17 february 1900?",
    "question_th": "ใครได้เล่นกับในสถานที่ A เมื่อวันที่ 17 กุมภาพันธ์ พ.ศ. 2443?",
    "context": "CREATE TABLE table_name_43 (opponent VARCHAR, venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_79 WHERE opponent = \"morton\"",
    "question_en": "How many people attended in the game against morton?",
    "question_th": "มีกี่คนที่เข้าร่วมในเกมกับมอร์ตัน?",
    "context": "CREATE TABLE table_name_79 (attendance VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(total) FROM table_name_8 WHERE to_par = 4",
    "question_en": "What is the Total of the Player with a To par of 4?",
    "question_th": "ผลรวมของผู้เล่นที่มีพาร์ถึง 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_en": "What is the Total of the Player with a Year(s) won of 1982?",
    "question_th": "ผลรวมของผู้เล่นที่ชนะในปี 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_en": "What is the To par of the Player wtih Year(s) won of 1983?",
    "question_th": "ค่าพาร์ของผู้เล่นที่ชนะในปี 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_en": "What is Andy North with a To par greater than 8 Country?",
    "question_th": "Andy North คืออะไรที่มี To มากกว่า 8 ประเทศ?",
    "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_en": "What is the Country of the Player with a Total less than 153 and Year(s) won of 1984?",
    "question_th": "ประเทศของผู้เล่นที่มีคะแนนรวมน้อยกว่า 153 และปีที่ชนะในปี 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_en": "What is the To par of Player Andy North with a Total larger than 153?",
    "question_th": "อะไรคือค่าพาร์ของผู้เล่น Andy North ที่มีผลรวมมากกว่า 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_en": "WHAT OPPONENT HAD A KICKOFF OF 2007-03-06, 20:45?",
    "question_th": "ฝ่ายตรงข้ามคนไหนที่เริ่มต้นการแข่งขันในวันที่ 06-03-2550, 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_en": "WHAT WAS THE SCORE OF THE GAME WITH A 2007-03-06, 20:45 KICKOFF?",
    "question_th": "คะแนนของเกมเมื่อวันที่ 06-03-2550, 20:45 คืออะไร?",
    "context": "CREATE TABLE table_name_50 (result VARCHAR, kick_off VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(stories) FROM table_name_12 WHERE rank = 10",
    "question_en": "What is the total stories that rank number 10?",
    "question_th": "เรื่องทั้งหมดที่อยู่ในอันดับที่ 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_en": "What is the height of the EMC Insurance Building in Des Moines?",
    "question_th": "อาคาร EMC Insurance ในดิมอยน์มีความสูงเท่าใด",
    "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_en": "What was the 1997 value when 2002 was A and 2003 was 1R?",
    "question_th": "ค่าปี 1997 คืออะไรเมื่อปี 2002 เป็น A และปี 2003 เป็น 1R",
    "context": "CREATE TABLE table_name_61 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1989 FROM table_name_10 WHERE 1997 = \"qf\" AND 1993 = \"a\"",
    "question_en": "What was the value in 1989 with QF in 1997 and A in 1993?",
    "question_th": "มูลค่าในปี 1989 โดยมี QF ในปี 1997 และ A ในปี 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_en": "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?",
    "question_th": "ค่าในปี 1997 เป็นเท่าใดเมื่อค่าในปี 1989 คือ A, ปี 1995 คือ QF, ปี 1996 คือ 3R และอาชีพ SR คือ 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_en": "What was the value in 1995 for A in 2000 at the Indian Wells tournament?",
    "question_th": "มูลค่าในปี 1995 สำหรับ A ในปี 2000 ในการแข่งขัน Indian Wells เป็นเท่าใด",
    "context": "CREATE TABLE table_name_95 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT career_sr FROM table_name_47 WHERE 1989 = \"a\" AND 1997 = \"f\"",
    "question_en": "What was the career SR with a value of A in 1980 and F in 1997?",
    "question_th": "อาชีพ SR ที่มีมูลค่า A ในปี 1980 และ F ในปี 1997 คืออะไร?",
    "context": "CREATE TABLE table_name_47 (career_sr VARCHAR)"
  },
  {
    "answer": "SELECT year_s__won FROM table_name_48 WHERE total < 285",
    "question_en": "What is Year(s) Won, when Total is less than 285?",
    "question_th": "ปีที่ชนะคืออะไร เมื่อผลรวมน้อยกว่า 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_en": "What is Finish, when Country is \"United States\", and when Player is \"Julius Boros\"?",
    "question_th": "Finish คืออะไร เมื่อประเทศคือ \"สหรัฐอเมริกา\" และเมื่อผู้เล่นคือ \"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_en": "What is Country, when Year(s) Won is \"1962\"?",
    "question_th": "ประเทศคืออะไร เมื่อปีที่ชนะคือ \"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_en": "What is Finish, when Country is \"United States\", and when To Par is \"+21\"?",
    "question_th": "Finish คืออะไร เมื่อ Country คือ \"สหรัฐอเมริกา\" และเมื่อ Par คือ \"+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_en": "What format was released in August 1996?",
    "question_th": "รูปแบบใดที่เผยแพร่ในเดือนสิงหาคม พ.ศ. 2539",
    "context": "CREATE TABLE table_name_78 (format VARCHAR, release_date VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_52 WHERE code = \"cocy-78365\"",
    "question_en": "What Label has a Code of cocy-78365?",
    "question_th": "ป้ายอะไรมีรหัส cocy-78365?",
    "context": "CREATE TABLE table_name_52 (label VARCHAR, code VARCHAR)"
  },
  {
    "answer": "SELECT release FROM table_name_70 WHERE title = \"gala\"",
    "question_en": "When was Gala released?",
    "question_th": "Gala ออกฉายเมื่อไร?",
    "context": "CREATE TABLE table_name_70 (release VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_84 WHERE release_date = \"august 1996\"",
    "question_en": "What Label released an album in August 1996?",
    "question_th": "What Label ออกอัลบั้มในเดือนสิงหาคม พ.ศ. 2539",
    "context": "CREATE TABLE table_name_84 (label VARCHAR, release_date VARCHAR)"
  },
  {
    "answer": "SELECT wednesday FROM table_name_24 WHERE day_3 = \"math\"",
    "question_en": "What is the Wednesday when day 3 is math?",
    "question_th": "วันพุธคือวันที่ 3 คือคณิตศาสตร์?",
    "context": "CREATE TABLE table_name_24 (wednesday VARCHAR, day_3 VARCHAR)"
  },
  {
    "answer": "SELECT day_1 FROM table_name_16 WHERE day_3 = \"math\"",
    "question_en": "What is the day 1 when the day 3 is math?",
    "question_th": "วันที่ 1 คือวันที่ 3 คือวันที่เท่าไหร่?",
    "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_en": "What is the day 1 when day 5 is math?",
    "question_th": "วันที่ 1 คือวันที่ 5 คือคณิตศาสตร์?",
    "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_en": "What is the day 3 when day 4 is fr.?",
    "question_th": "วันที่ 3 คือวันที่ 4 คือวันศุกร์อะไร?",
    "context": "CREATE TABLE table_name_45 (day_3 VARCHAR, day_4 VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_42 WHERE opponent_number = \"iowa\"",
    "question_en": "what is the date when the opponent# is iowa?",
    "question_th": "วันที่คู่ต่อสู้ # คือไอโอว่าคือวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_42 (date VARCHAR, opponent_number VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_70 WHERE site = \"memorial stadium • minneapolis, mn\" AND attendance = \"53,192\"",
    "question_en": "what is the date when the site is memorial stadium • minneapolis, mn, and the Attendance is 53,192?",
    "question_th": "วันที่เป็นสนามกีฬาอนุสรณ์ • มินนีแอโพลิส มินนิโซตา และมีผู้เข้าร่วม 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_en": "What is the Attendance when the Result is l0-13?",
    "question_th": "ผู้เข้าร่วมเมื่อผลลัพธ์คือ 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_en": "What is the Site when the date is 11/11/1950?",
    "question_th": "เว็บไซต์คืออะไรเมื่อวันที่ 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_en": "What is the Date when the result is *non-conference game. #rankings from ap poll .?",
    "question_th": "วันที่คือเมื่อผลการแข่งขันคือ *เกมที่ไม่ใช่การประชุม #อันดับจาก 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_en": "Which Player has a Round smaller than 5, and a School/Club Team of florida state?",
    "question_th": "ผู้เล่นคนใดที่มีรอบน้อยกว่า 5 และทีมโรงเรียน/สโมสรของรัฐฟลอริดา",
    "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_en": "Which School/Club Team has a Pick of 198?",
    "question_th": "ทีมโรงเรียน/สโมสรใดมีสิทธิ์เลือกจาก 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_en": "Which Round has a School/Club Team of indiana, and a Pick smaller than 198?",
    "question_th": "รอบใดมีทีมโรงเรียน/สโมสรจากอินเดียนา และทีมคัดเลือกที่น้อยกว่า 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_en": "Which Round has a School/Club Team of north carolina, and a Pick larger than 131?",
    "question_th": "รอบใดที่มีทีมโรงเรียน/สโมสรของนอร์ทแคโรไลนา และตัวเลือกที่มากกว่า 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_en": "Which Round has a School/Club Team of cal-poly slo, and a Pick smaller than 238?",
    "question_th": "รอบใดมีทีมโรงเรียน/คลับที่เป็น cal-poly slo และทีม Pick น้อยกว่า 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_en": "What is the away team with a 5 tie no?",
    "question_th": "ทีมเยือนเสมอกัน 5 นัด คืออะไร?",
    "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_en": "What is the home team with scarborough as the away team?",
    "question_th": "เจ้าบ้านมีสการ์โบโรห์เป็นทีมเยือนคืออะไร?",
    "context": "CREATE TABLE table_name_50 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_37 WHERE tie_no = \"34\"",
    "question_en": "What is the date of tie no. 34?",
    "question_th": "ผูกหมายเลขวันที่เท่าไหร่ 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_en": "What is Michael Del Zotto's nationality?",
    "question_th": "ไมเคิล เดล ซอตโตมีสัญชาติอะไร?",
    "context": "CREATE TABLE table_name_54 (nationality VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(lost) FROM table_name_16 WHERE points < 7",
    "question_en": "What is the highest loss with points less than 7?",
    "question_th": "แพ้สูงสุดด้วยคะแนนน้อยกว่า 7 คืออะไร?",
    "context": "CREATE TABLE table_name_16 (lost INTEGER, points INTEGER)"
  },
  {
    "answer": "SELECT SUM(match) FROM table_name_73 WHERE draw < 0",
    "question_en": "What is the sum for the match with a draw less than 0?",
    "question_th": "ผลรวมของนัดที่เสมอน้อยกว่า 0 เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_73 (match INTEGER, draw INTEGER)"
  },
  {
    "answer": "SELECT MIN(points) FROM table_name_88 WHERE match > 14",
    "question_en": "What is the lowest points for a match before 14?",
    "question_th": "คะแนนต่ำสุดสำหรับการแข่งขันก่อน 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_en": "How many points were there when there were less than 16 rebounds and 5 assists?",
    "question_th": "ตอนที่ทำได้ไม่ถึง 16 รีบาวด์ 5 แอสซิสต์ มีกี่แต้ม?",
    "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_en": "How many minutes were played when there were 18 points and the opponent was Chicago Bulls?",
    "question_th": "แข่งกันกี่นาทีมี 18 แต้มคู่ต่อสู้คือ ชิคาโก้ บูลส์?",
    "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°n 71.9764°w\"",
    "question_en": "Which Mountain Range has a Region of haiti, and a Location of 18.3601°n 71.9764°w?",
    "question_th": "เทือกเขาใดมีภูมิภาคเฮติ และตำแหน่ง 18.3601°n 71.9764°w",
    "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_en": "Name the Mountain Peak which has a Rank of 62?",
    "question_th": "ตั้งชื่อยอดเขาที่มีอันดับ 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°n 115.2206°w\"",
    "question_en": "Which Mountain Peak has a Region of baja california, and a Location of 28.1301°n 115.2206°w?",
    "question_th": "ยอดเขาใดมีภูมิภาคบาฮาแคลิฟอร์เนีย และตำแหน่ง 28.1301°n 115.2206°w",
    "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_en": "Name the Region with a Mountain Peak of dillingham high point?",
    "question_th": "ตั้งชื่อภูมิภาคด้วยยอดเขาดิลลิงแฮมที่มีจุดสูงสุดไหม?",
    "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_en": "How much was paid to the player whose score was 70-71-77-76=294?",
    "question_th": "จ่ายให้กับผู้เล่นที่มีคะแนน 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_en": "Which country is Pete Cooper, who made $816, from?",
    "question_th": "Pete Cooper ซึ่งทำเงินได้ 816 ดอลลาร์มาจากประเทศใด",
    "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_en": "What is the lowest round of the position de player with an overall less than 84?",
    "question_th": "ตำแหน่งเดอเพลเยอร์รอบต่ำสุดที่คะแนนรวมน้อยกว่า 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_en": "What is the highest pick of the player from texas a&i with an overall less than 28?",
    "question_th": "ตัวเลือกสูงสุดของผู้เล่นจาก texas a&i โดยคะแนนรวมน้อยกว่า 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_en": "What is the average round of the player from the college of baylor with a pick less than 28?",
    "question_th": "รอบเฉลี่ยของผู้เล่นจากวิทยาลัยเบย์เลอร์ที่มีตัวเลือกน้อยกว่า 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_en": "What is the sum of the pick from texas a&i college with a round greater than 1?",
    "question_th": "ผลรวมของการเลือกจากวิทยาลัย texas a&i ที่มีรอบมากกว่า 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_en": "What date was the opponent the Boston Yanks?",
    "question_th": "คู่ต่อสู้ของ 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_en": "What was the record for December 5, 1948?",
    "question_th": "บันทึกของวันที่ 5 ธันวาคม พ.ศ. 2491 คืออะไร?",
    "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_en": "What was the average point total for the nets in games before game 9 where the opponents scored less than 95?",
    "question_th": "คะแนนเฉลี่ยรวมของตาข่ายในเกมก่อนเกมที่ 9 ซึ่งฝ่ายตรงข้ามทำคะแนนน้อยกว่า 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_en": "In which game did the opponent score more than 103 and the record was 1-3?",
    "question_th": "ในเกมไหนที่คู่ต่อสู้ทำสกอร์เกิน 103 และสถิติเป็น 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_en": "What is the lowest Game, when Date is \"November 1\"?",
    "question_th": "เกมไหนต่ำสุดคือวันที่ \"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_en": "What is High Rebounds, when High Assists is \"Jason Kidd (13)\"?",
    "question_th": "High Rebounds คืออะไร เมื่อ High Assists คือ 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–0\"",
    "question_en": "What is the Date of the Competition with a Result of 3–0?",
    "question_th": "การแข่งขันวันที่เท่าไหร่ซึ่งผลการแข่งขัน 3–0 คือ?",
    "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_en": "What is the Score of the Fifa World Cup 1986 Qualifying Competition?",
    "question_th": "คะแนนของการแข่งขันฟุตบอลโลกรอบคัดเลือกปี 1986 คืออะไร?",
    "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_en": "What is the Score of the Fifa World Cup 1986 Play-off Competition?",
    "question_th": "คะแนนของการแข่งขันฟุตบอลโลก 1986 รอบเพลย์ออฟคือเท่าไร?",
    "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_en": "What is the Game number on April 12 with St. Louis Home Team?",
    "question_th": "เกมวันที่ 12 เมษายน กับทีมเจ้าบ้านเซนต์หลุยส์คือหมายเลขอะไร?",
    "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_en": "What is the Result of the Game on April 9?",
    "question_th": "ผลการแข่งขันวันที่ 9 เมษายนเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_87 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_name_33 WHERE date = \"march 30\"",
    "question_en": "What is the Game number on March 30?",
    "question_th": "หมายเลขเกมในวันที่ 30 มีนาคมคืออะไร?",
    "context": "CREATE TABLE table_name_33 (game VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_name_9 WHERE result = \"136-112\"",
    "question_en": "What Game had a Result of 136-112?",
    "question_th": "เกมใดมีผลการแข่งขัน 136-112?",
    "context": "CREATE TABLE table_name_9 (game VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_16 WHERE game = \"game 3\"",
    "question_en": "What is the Result of Game 3?",
    "question_th": "ผลลัพธ์ของเกมที่ 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_en": "On what Date is Game 3 with Boston Road Team?",
    "question_th": "เกมที่ 3 กับทีม Boston Road คือวันไหน?",
    "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_en": "Who was the home team in the match against Luton Town?",
    "question_th": "ทีมเจ้าบ้านในเกมกับลูตันทาวน์คือใคร?",
    "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_en": "What tie happened with Southampton?",
    "question_th": "เกิดอะไรขึ้นกับเซาแธมป์ตัน?",
    "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_en": "What was the tie resulting from Sheffield Wednesday's game?",
    "question_th": "เกมของเชฟฟิลด์ เว้นส์เดย์มีผลการแข่งขันเป็นอย่างไร?",
    "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_en": "Which Week has an Opponent of washington redskins, and an Attendance larger than 56,077?",
    "question_th": "สัปดาห์ใดที่มีฝ่ายตรงข้ามของวอชิงตันอินเดียนแดงและมีผู้เข้าร่วมมากกว่า 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_en": "Which Attendance has a Date of november 19, 1961?",
    "question_th": "ผู้เข้าร่วมคนใดมีวันที่ 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_en": "What was the result on october 8, 1961?",
    "question_th": "วันที่ 8 ตุลาคม 2504 มีผลเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_49 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT league FROM table_name_74 WHERE finish = \"2nd\" AND losses = 3",
    "question_en": "What league had a finish of 2nd and 3 losses?",
    "question_th": "ลีกใดจบด้วยการแพ้ 2 และ 3?",
    "context": "CREATE TABLE table_name_74 (league VARCHAR, finish VARCHAR, losses VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(losses) FROM table_name_59 WHERE ties < 0",
    "question_en": "What is the number of losses when the ties are lesser than 0?",
    "question_th": "จำนวนการสูญเสียเมื่อความสัมพันธ์น้อยกว่า 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_en": "What is the losses in the NFL in the 2011 season with less than 13 wins?",
    "question_th": "อะไรคือความพ่ายแพ้ใน NFL ในฤดูกาล 2011 ด้วยการชนะน้อยกว่า 13 ครั้ง?",
    "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_en": "What is the highest wins for the NFL with a finish of 1st, and more than 6 losses?",
    "question_th": "อะไรคือชัยชนะสูงสุดของ NFL ด้วยการจบอันดับที่ 1 และแพ้มากกว่า 6 ครั้ง?",
    "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_en": "What is the lowest number of ties in the NFL, with less than 2 losses and less than 15 wins?",
    "question_th": "จำนวนการเสมอกันต่ำสุดใน NFL คือเท่าไร โดยแพ้น้อยกว่า 2 นัดและชนะน้อยกว่า 15 นัด?",
    "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_en": "Who was the runner-up in the RR Donnelley LPGA Founders Cup?",
    "question_th": "ใครคือรองชนะเลิศใน 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_en": "What is the surface on 21 june 1993?",
    "question_th": "พื้นผิววันที่ 21 มิถุนายน 2536 เป็นอย่างไร?",
    "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_en": "what is the score when the championship is rome and the opponent is richard krajicek?",
    "question_th": "สกอร์เท่าไหร่เมื่อแชมป์คือโรมและคู่ต่อสู้คือริชาร์ด คราจิเซค?",
    "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_en": "who is the opponent when the surface is clay, the outcome is winner and the championship is estoril on 15 april 1996?",
    "question_th": "ใครคือคู่ต่อสู้เมื่อพื้นผิวเป็นดินเหนียว ผลลัพธ์เป็นผู้ชนะ และแชมป์คือเอสโตริลในวันที่ 15 เมษายน 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_en": "who is the opponent on 18 january 1993?",
    "question_th": "คู่ต่อสู้ในวันที่ 18 มกราคม 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_en": "what is the score when the outcome is winner against yevgeny kafelnikov?",
    "question_th": "เมื่อผลการแข่งขันเป็นผู้ชนะกับเยฟเจนี คาเฟลนิคอฟ จะได้คะแนนเท่าไหร่?",
    "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_en": "What was the highest number of attendance in a week before 8 and game on October 25, 1981?",
    "question_th": "จำนวนผู้เข้าชมสูงสุดในหนึ่งสัปดาห์ก่อนวันที่ 8 และเกมในวันที่ 25 ตุลาคม พ.ศ. 2524 คือเท่าใด",
    "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_en": "On what date did the team play againt the New Orleans Saints?",
    "question_th": "ทีมจะเล่นกับนิวออร์ลีนส์เซนต์สวันไหน?",
    "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_en": "What was the average number of attendance for the game on November 29, 1981 played after week 13?",
    "question_th": "จำนวนผู้เข้าร่วมโดยเฉลี่ยของเกมในวันที่ 29 พฤศจิกายน พ.ศ. 2524 ที่เล่นหลังจากสัปดาห์ที่ 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μpga2\"",
    "question_en": "Which model has a frequency of 750 mhz and a socket of bga2μpga2?",
    "question_th": "รุ่นใดมีความถี่ 750 mhz และซ็อกเก็ตbga2μpga2",
    "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_en": "What model number uses standard voltage socket?",
    "question_th": "หมายเลขรุ่นใดใช้เต้ารับแรงดันไฟฟ้ามาตรฐาน?",
    "context": "CREATE TABLE table_name_48 (model_number VARCHAR, socket VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_52 WHERE round = \"sf\"",
    "question_en": "what is the date when the round is sf?",
    "question_th": "รอบวันที่เท่าไหร่คือ SF?",
    "context": "CREATE TABLE table_name_52 (date VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_80 WHERE round = \"qf\"",
    "question_en": "what is the date when the round is qf?",
    "question_th": "รอบคือวันที่เท่าไร 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_en": "Which Attendance has an Opponent of new york giants, and a Week smaller than 5?",
    "question_th": "ผู้เข้าร่วมคนใดที่มีฝ่ายตรงข้ามกับยักษ์ใหญ่ในนิวยอร์ก และหนึ่งสัปดาห์น้อยกว่า 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_en": "Which Week has an Opponent of pittsburgh steelers, and an Attendance larger than 47,727?",
    "question_th": "สัปดาห์ใดที่มีฝ่ายตรงข้ามของพิตส์เบิร์กสตีลเลอร์สและมีผู้เข้าร่วมมากกว่า 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_en": "Which Attendance has a Date of september 29, 1968, and a Week smaller than 3?",
    "question_th": "ผู้เข้าร่วมคนใดมีวันที่ 29 กันยายน 1968 และหนึ่งสัปดาห์น้อยกว่า 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_en": "When did the party elected in jun. 1959 enter office?",
    "question_th": "เมื่อมิถุนายนมีการเลือกตั้งพรรค พ.ศ. 2502 เข้ารับตำแหน่ง?",
    "context": "CREATE TABLE table_name_43 (entered_office VARCHAR, election VARCHAR)"
  },
  {
    "answer": "SELECT year_named FROM table_name_42 WHERE longitude = \"227.5e\"",
    "question_en": "What is Year Named, when Longitude is 227.5E?",
    "question_th": "ชื่อปีคืออะไร เมื่อลองจิจูดคือ 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_en": "What is the average Year Named, when Latitude is 37.9N, and when Diameter (km) is greater than 76?",
    "question_th": "ชื่อปีโดยเฉลี่ยคืออะไร เมื่อละติจูดคือ 37.9N และเมื่อเส้นผ่านศูนย์กลาง (กม.) มากกว่า 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_en": "What is Longitude, when Name is Raskova Paterae?",
    "question_th": "ลองจิจูดคืออะไรเมื่อชื่อ Raskova Paterae?",
    "context": "CREATE TABLE table_name_61 (longitude VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT song FROM table_name_8 WHERE artist = \"liam reilly\"",
    "question_en": "What's the song of artist liam reilly?",
    "question_th": "เพลงของศิลปิน 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_en": "What's the total number of points for grace dunne with a draw over 5?",
    "question_th": "เกรซ ดันน์ เสมอเกิน 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_en": "What's the highest draw with over 60 points for paul duffy?",
    "question_th": "พอล ดัฟฟี่ เกิน 60 แต้ม เสมอสูงสุดคือตัวไหน?",
    "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_en": "What was the highest grid for a time/retired of +19.1 secs?",
    "question_th": "ตารางสูงสุดสำหรับเวลา/เกษียณที่ +19.1 วินาทีคือเท่าใด",
    "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_en": "What is the Population of the New Bandon Parish with an Area km 2 larger than 326.76?",
    "question_th": "ประชากรของตำบลบ้านดอนใหม่ที่มีพื้นที่ กม. 2 มากกว่า 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_en": "What is the Area of the Allardville Parish with a Population smaller than 2,151?",
    "question_th": "พื้นที่ของเขต Allardville Parish ที่มีประชากรน้อยกว่า 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_en": "Who is the player with a 75-68-70=213 score?",
    "question_th": "นักเตะคนไหนที่มีคะแนน 75-68-70=213?",
    "context": "CREATE TABLE table_name_79 (player VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_46 WHERE country = \"australia\"",
    "question_en": "What is the place of Australia?",
    "question_th": "ประเทศออสเตรเลียอยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_46 (place VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_25 WHERE player = \"tom watson\"",
    "question_en": "What is the place of player tom watson?",
    "question_th": "นักเตะทอม วัตสันอยู่ตำแหน่งไหน?",
    "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_en": "Who is the player with a +3 to par and a 74-71-68=213 score?",
    "question_th": "ใครคือผู้เล่นที่มีพาร์ +3 และสกอร์ 74-71-68=213?",
    "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_en": "What is player raymond floyd's country?",
    "question_th": "ประเทศของนักเตะ เรย์มอนด์ ฟลอยด์ คืออะไร?",
    "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_en": "Who is the player from the United States with a 75-70-68=211 score?",
    "question_th": "นักเตะจากสหรัฐอเมริกาคือใครที่ได้คะแนน 75-70-68=211?",
    "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_en": "What is the length in feet when the length in meters is 64.2?",
    "question_th": "ความยาวเป็นฟุตเมื่อความยาวเป็นเมตรคือ 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_en": "Where is the longest arch with a length in meters of 64.2?",
    "question_th": "ส่วนโค้งที่ยาวที่สุดที่มีความยาวเป็นเมตรคือ 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_en": "Where is the longest arch with a length in meters of 63?",
    "question_th": "ส่วนโค้งที่ยาวที่สุดมีความยาวเป็นเมตร 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_en": "What is the rank of the arch with a length in meters of 75/55?",
    "question_th": "ยศของซุ้มที่มีความยาวเป็นเมตรคือ 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_en": "What is the length in feet of the Jiangzhou arch?",
    "question_th": "ประตู Jiangzhou มีความยาวเป็นฟุตเท่าไร?",
    "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_en": "What was the number of the crowd when the Wollongong Hawks were the home team?",
    "question_th": "วูลลองกองฮอกส์เป็นเจ้าบ้านมีจำนวนผู้ชมกี่คน?",
    "context": "CREATE TABLE table_name_53 (crowd INTEGER, home_team VARCHAR)"
  },
  {
    "answer": "SELECT crowd FROM table_name_13 WHERE score = \"101-105\"",
    "question_en": "What was the crowd size for the game with a score of 101-105?",
    "question_th": "จำนวนผู้เข้าชมเกมด้วยคะแนน 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_en": "What was the average crowd size for the game when the Gold Coast Blaze was the home team?",
    "question_th": "ขนาดฝูงชนโดยเฉลี่ยสำหรับเกมเมื่อ Gold Coast Blaze เป็นเจ้าบ้านคือเท่าใด?",
    "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_en": "What is City of License, when Frequency MHz is less than 102.5?",
    "question_th": "City of License คืออะไร เมื่อความถี่ MHz น้อยกว่า 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_en": "What is Call Sign, when ERP W is greater than 50?",
    "question_th": "Call Sign คืออะไร เมื่อ ERP W มากกว่า 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_en": "What is City of License, when ERP W is greater than 3, and when Call Sign is K218DZ?",
    "question_th": "เมืองแห่งใบอนุญาตคืออะไร เมื่อ ERP W มากกว่า 3 และเมื่อ Call Sign เป็น 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_en": "What is Call Sign, when City of License is Brownfield, Texas?",
    "question_th": "Call Sign คืออะไร เมื่อ City of License คือ 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_en": "What is the Sum of ERP W, when Call Sign is K216GA?",
    "question_th": "ผลรวมของ ERP W เมื่อ Call Sign เป็น 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_en": "What is the total number of overall picks that were after pick 9 and went to Auburn College?",
    "question_th": "จำนวนตัวเลือกทั้งหมดที่ได้รับหลังจากเลือก 9 และไปเรียนต่อที่ 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_en": "What is the overall pick number for a draft pick smaller than 9, named buck mystrom from Michigan State college?",
    "question_th": "หมายเลขการเลือกโดยรวมสำหรับร่างตัวเลือกที่มีขนาดเล็กกว่า 9 ชื่อ buck mystrom จากวิทยาลัยรัฐมิชิแกนคือเท่าใด",
    "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_en": "What is the average number of rounds for billy hicks who had an overall pick number bigger than 310?",
    "question_th": "จำนวนรอบเฉลี่ยของบิลลี่ ฮิกส์ที่มีจำนวนการเลือกโดยรวมมากกว่า 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_en": "What is the sum of rounds that has a pick of 9 and is named jim pyburn?",
    "question_th": "ผลรวมของรอบที่เลือกได้ 9 และชื่อ จิม ไพเบิร์น เป็นเท่าใด",
    "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_en": "What is the highest round number for donnie caraway?",
    "question_th": "ดอนนี่ ยี่หร่า เลขรอบสูงสุดคือเท่าไร?",
    "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_en": "What is the highest overall pick number for george nicula who had a pick smaller than 9?",
    "question_th": "หมายเลขตัวเลือกโดยรวมสูงสุดสำหรับ George nicula ที่มีตัวเลือกน้อยกว่า 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_en": "What is the status of the match held on 12/7/1997?",
    "question_th": "สถานะของการแข่งขันที่จัดขึ้นในวันที่ 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_en": "Which venue has an against value larger than 21 and had Argentina as an opposing team.",
    "question_th": "สนามใดมีมูลค่าต่อมูลค่ามากกว่า 21 และมีอาร์เจนตินาเป็นทีมตรงข้าม",
    "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_en": "What was the average of againsts on 21/5/1997?",
    "question_th": "ค่าเฉลี่ยของการต่อต้านในวันที่ 21/5/1997 เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_45 (against INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_93 WHERE year < 1997",
    "question_en": "What was the outcome before 1997?",
    "question_th": "ผลลัพธ์เป็นอย่างไรก่อนปี 1997?",
    "context": "CREATE TABLE table_name_93 (outcome VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT championship FROM table_name_3 WHERE year > 1997 AND score = \"1–6, 4–6, 7–5, 5–7\"",
    "question_en": "What championship after 1997 was the score 1–6, 4–6, 7–5, 5–7?",
    "question_th": "แชมป์อะไรหลังปี 1997 คือคะแนน 1–6, 4–6, 7–5, 5–7?",
    "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_en": "How many years was the opponent petr korda?",
    "question_th": "ศัตรูของ ปีเตอร์ คอร์ดา อยู่มากี่ปีแล้ว?",
    "context": "CREATE TABLE table_name_21 (year VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_68 WHERE year = 1996",
    "question_en": "What was the surface in 1996?",
    "question_th": "พื้นผิวในปี 1996 คืออะไร?",
    "context": "CREATE TABLE table_name_68 (surface VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT SUM(total) FROM table_name_53 WHERE rd_7 < 8",
    "question_en": "What is the sum of total values for Rd 7 less than 8?",
    "question_th": "ผลรวมของค่ารวมของหมู่ที่ 7 น้อยกว่า 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_en": "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?",
    "question_th": "ผลรวมของค่า Rd 7 โดย RD 6 น้อยกว่า 48 และ Rd 8 น้อยกว่า 4 สำหรับ TC Motorsport ในตำแหน่งที่มากกว่า 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_en": "What is the average value for Rd 8 in a position less than 2 for Audi Sport Australia?",
    "question_th": "ค่าเฉลี่ยของ Rd 8 ในตำแหน่งที่น้อยกว่า 2 สำหรับ 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_en": "What position did Luca Sbisa play for the Philadelphia Flyers?",
    "question_th": "Luca Sbisa เล่นตำแหน่งใดให้กับ Philadelphia Flyers?",
    "context": "CREATE TABLE table_name_53 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_48 WHERE home_team = \"walsall\"",
    "question_en": "What was the attendance for the home team of Walsall?",
    "question_th": "การเข้าร่วมงานของเจ้าบ้านของวอลซอลล์เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_48 (attendance VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_55 WHERE tie_no = \"20\"",
    "question_en": "Who were the away team in tie number 20?",
    "question_th": "ทีมเยือนหมายเลข 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_en": "What was the score of tie number 15?",
    "question_th": "คะแนนเสมอกันอันดับ 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_en": "What is the margin of victory when the tournament is konica san jose classic?",
    "question_th": "อะไรคือส่วนต่างของชัยชนะเมื่อการแข่งขันคือ 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 = –9(72 - 68 - 67 = 207)",
    "question_en": "what is the margin of victory when the runner-up is amy alcott and the winning score is –9 (72-68-67=207)?",
    "question_th": "ส่วนต่างของชัยชนะจะเป็นเท่าใดเมื่อรองชนะเลิศคือเอมี่ อัลคอตต์ และคะแนนชนะคือ –9 (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_en": "what is the winning score when the tournament is safeco classic?",
    "question_th": "คะแนนชนะเมื่อทัวร์นาเมนต์คือ safeco classic เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_73 (winning_score VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_84 WHERE winning_score = –9(69 - 69 - 70 - 71 = 279)",
    "question_en": "what is the tournament when the winning score is –9 (69-69-70-71=279)?",
    "question_th": "การแข่งขันจะเป็นอย่างไรเมื่อคะแนนชนะคือ –9 (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_en": "Who is the rider with less than 15 laps, more than 32 grids, and an accident time/retired?",
    "question_th": "ใครคือนักบิดที่มีรอบน้อยกว่า 15 รอบ มากกว่า 32 กริด และมีอุบัติเหตุ/เกษียณแล้ว?",
    "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é\"",
    "question_en": "What is the time/retired of the honda manufacturer with a grid less than 26, 18 laps, and joan olivé as the rider?",
    "question_th": "เวลา/เลิกใช้ของผู้ผลิตฮอนด้าที่มีกริดน้อยกว่า 26, 18 รอบ และมีโจน โอลิเว่ เป็นคนขี่คือเท่าไร?",
    "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_en": "What is the average number of laps with an accident time/retired, aprilia manufacturer and a grid of 27?",
    "question_th": "จำนวนรอบโดยเฉลี่ยที่มีอุบัติเหตุ/เลิกจ้าง ผู้ผลิต Aprilia และตารางที่ 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_en": "What is Type, when Rank is greater than 6, when Number of Bearers 2008 is greater than 13.815, and when Surname is Eriksen?",
    "question_th": "Type คืออะไร เมื่ออันดับมากกว่า 6 เมื่อจำนวนผู้ถือ 2008 มากกว่า 13.815 และเมื่อนามสกุลคือ 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_en": "What is the highest Number of Bearers 2008, when Surname is Hansen, and when Rank is less than 1?",
    "question_th": "จำนวนผู้ถือครองสูงสุดในปี 2008 คือเท่าใด เมื่อนามสกุลคือ Hansen และเมื่อใดอันดับน้อยกว่า 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_en": "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?",
    "question_th": "Type คืออะไร เมื่อ Number of Bearers 2008 มากกว่า 12.376 เมื่อ Rank มากกว่า 3 และเมื่อ Etymology เป็น 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_en": "What is Etymology, when Rank is 14?",
    "question_th": "นิรุกติศาสตร์คืออะไร เมื่ออันดับคือ 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_en": "What is Highest Number of Bearers 2008, when Surname is Jacobsen?",
    "question_th": "จำนวนผู้ถือครองสูงสุดในปี 2551 คือเท่าใด เมื่อนามสกุลคือ 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_en": "WHAT POSITION HAS A ROUND LARGER THAN 2, FOR VALDOSTA COLLEGE?",
    "question_th": "ตำแหน่งใดมีรอบที่ใหญ่กว่า 2 สำหรับวิทยาลัยวัลโดสตา",
    "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_en": "WHAT COLLEGE HAS A ROUND LARGER THAN 9, WITH BUTCH WEBSTER?",
    "question_th": "วิทยาลัยใดมีรอบที่ใหญ่กว่า 9 โดยมี 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_en": "WHAT IS THE NATIONALITY FOR SOUTHWESTERN OKLAHOMA?",
    "question_th": "สัญชาติของโอคลาโฮมาทางตะวันตกเฉียงใต้คืออะไร?",
    "context": "CREATE TABLE table_name_53 (nationality VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(pick) FROM table_name_32 WHERE college = \"boston college\"",
    "question_en": "WHAT IS THE TOTAL PICK FOR BOSTON COLLEGE?",
    "question_th": "ตัวเลือกทั้งหมดสำหรับวิทยาลัยบอสตันคืออะไร?",
    "context": "CREATE TABLE table_name_32 (pick VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_18 WHERE position = \"guard\" AND college = \"ohio\"",
    "question_en": "WHAT ROUND HAS A GUARD POSITION AT OHIO COLLEGE?",
    "question_th": "รอบใดมีตำแหน่งรักษาความปลอดภัยที่วิทยาลัย OHIO?",
    "context": "CREATE TABLE table_name_18 (round VARCHAR, position VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_40 WHERE round = \"r3\"",
    "question_en": "What is the date where the round is R3?",
    "question_th": "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_en": "What is the round of the game at venue H and opponent of Derby County?",
    "question_th": "รอบของเกมที่สนาม H และคู่ต่อสู้ของดาร์บี้ เคาน์ตี้คือรอบใด?",
    "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_en": "What sum of game has an attendance of 18,690?",
    "question_th": "ผู้เข้าร่วมเกมจำนวน 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_en": "What average game was held on february 24 and has an attendance smaller than 16,541?",
    "question_th": "เกมเฉลี่ยใดที่จัดขึ้นในวันที่ 24 กุมภาพันธ์ และมีผู้เข้าร่วมน้อยกว่า 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_en": "What was the score of having a tie of 1?",
    "question_th": "คะแนนเสมอกันที่ 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_en": "What was the attendance for the game where the away team was Stockport County?",
    "question_th": "การเข้าร่วมงานในเกมที่ทีมเยือนคือสต็อคพอร์ท เคาน์ตี้?",
    "context": "CREATE TABLE table_name_1 (attendance VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_93 WHERE tie_no = \"2\"",
    "question_en": "What was the name of the away team that had a tie of 2?",
    "question_th": "ทีมเยือนที่เสมอ 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_en": "What was the score for the game where the home team was Wycombe Wanderers?",
    "question_th": "เกมที่เจ้าบ้านเป็น วีคอมบ์ วันเดอเรอร์ส ได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_73 (score VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_16 WHERE home_team = \"leicester city\"",
    "question_en": "What was the score for the match where the home team was Leicester City?",
    "question_th": "แมตช์ที่เจ้าบ้านเป็นเลสเตอร์ซิตี้ได้สกอร์เท่าไหร่?",
    "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_en": "Which Home team score has a AEDT Time of 11:00 pm?",
    "question_th": "สกอร์ทีมเหย้าใดมีเวลา AEDT 23.00 น.?",
    "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_en": "Which Home team is on Wednesday, 25 february 1998?",
    "question_th": "ทีมเจ้าบ้านใดจะแข่งขันในวันพุธที่ 25 กุมภาพันธ์ 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_en": "Name the Away team which has a Ground of waverley park, and a Home team of hawthorn?",
    "question_th": "ตั้งชื่อทีมเยือนซึ่งมีสนามเวเวอร์ลีย์พาร์ค และทีมเหย้าฮอว์ธอร์นไหม?",
    "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_en": "Name the AEDT Time which has an Away team of collingwood?",
    "question_th": "ตั้งชื่อ AEDT Time ซึ่งมีทีมเยือนอย่างคอลลิงวูดไหม?",
    "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_en": "What was the attendance when they played at Detroit Lions?",
    "question_th": "ผู้เข้าร่วมเมื่อพวกเขาเล่นที่ 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_en": "What was the average attendance for games played at Atlanta Falcons?",
    "question_th": "ผู้เข้าร่วมเกมที่เล่นที่ 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_en": "Which week was the game played on December 8, 1974?",
    "question_th": "สัปดาห์ใดที่เล่นเกมในวันที่ 8 ธันวาคม พ.ศ. 2517",
    "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_en": "What was the result before week 13 when they played the Oakland Raiders?",
    "question_th": "ผลลัพธ์ก่อนสัปดาห์ที่ 13 เมื่อพวกเขาเล่นกับ 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_en": "What time did the even tachi palace fights 3 take place?",
    "question_th": "วังทาจิไฟต์ 3 เกิดขึ้นกี่โมง?",
    "context": "CREATE TABLE table_name_67 (time VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_30 WHERE event = \"kotc: mortal sins\"",
    "question_en": "What location did the event kotc: mortal sins take place?",
    "question_th": "งาน kotc: mortal sins เกิดขึ้นที่ใด?",
    "context": "CREATE TABLE table_name_30 (location VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT SUM(round) FROM table_name_41 WHERE player = \"freddie mitchell\"",
    "question_en": "What is the sum of rounds where freddie mitchell was picked?",
    "question_th": "ผลรวมของรอบที่เลือกเฟรดดี้ มิทเชลล์เป็นเท่าใด",
    "context": "CREATE TABLE table_name_41 (round INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_40 WHERE pick = 147",
    "question_en": "Who was the player who was pick number 147?",
    "question_th": "ใครคือผู้เล่นที่ถูกเลือกหมายเลข 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_en": "What position did a. j. feeley play who was picked in round 5?",
    "question_th": "อาเจ ฟีลีย์ เล่นตำแหน่งใดที่ถูกเลือกในรอบ 5?",
    "context": "CREATE TABLE table_name_70 (position VARCHAR, round VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_18 WHERE round = 3",
    "question_en": "What position did the player who was picked in round 3 play?",
    "question_th": "ผู้เล่นที่ถูกเลือกในรอบที่ 3 เล่นตำแหน่งอะไร?",
    "context": "CREATE TABLE table_name_18 (position VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_95 WHERE player = \"tom kite\"",
    "question_en": "What Country is Tom Kite from?",
    "question_th": "ทอม ไคท์ มาจากประเทศอะไร?",
    "context": "CREATE TABLE table_name_95 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(total) FROM table_name_2 WHERE finish = \"1\"",
    "question_en": "What is the Total of the Player with a Finish of 1?",
    "question_th": "ผลรวมของผู้เล่นที่เข้าเส้นชัยเป็น 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_en": "What was the 2010 population of frankfort which has a rank smaller than 14?",
    "question_th": "ประชากรแฟรงก์ฟอร์ตซึ่งมีอันดับต่ำกว่า 14 ในปี 2010 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_26 (city VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT class AS pos FROM table_name_73 WHERE pos = \"4th\"",
    "question_en": "What was the class position of the team that was in the 4th position?",
    "question_th": "ตำแหน่งคลาสของทีมที่อยู่ในอันดับที่ 4 คืออะไร?",
    "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_en": "What is Class Pos., when Year is before 2013, and when Laps is greater than 175?",
    "question_th": "Class Pos. คืออะไร เมื่อปีก่อน 2013 และเมื่อ Laps มากกว่า 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 (รอเธอหันมา – โฟกัส จิระกุล)\"",
    "question_en": "Which Year has a Category of best original song (รอเธอหันมา – โฟกัส จิระกุล)?",
    "question_th": "ปีไหนมีหมวดหมู่เพลงต้นฉบับดีที่สุด (รอเธอหันมา – โฟกัส จิระกุล)?",
    "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_en": "Which Year has an Award of 17th bangkok critics assembly awards, and a Category of best original score?",
    "question_th": "ปีใดมีรางวัล Bangkok Critics Assembly Awards ครั้งที่ 17 และประเภทเพลงประกอบภาพยนตร์ยอดเยี่ยม",
    "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_en": "Which Country has a Result of nominated, an Award of 17th bangkok critics assembly awards, and a Category of best screenplay?",
    "question_th": "ประเทศใดมีผลการเสนอชื่อเข้าชิง รางวัล Bangkok Critics Assembly Awards ครั้งที่ 17 และประเภทบทภาพยนตร์ยอดเยี่ยม",
    "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_en": "Who was the opponent with a record of 14-4-1 and has a round of 1?",
    "question_th": "คู่ต่อสู้คือใครด้วยสถิติ 14-4-1 และมีรอบ 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_en": "What is the round in Finland with a draw for method?",
    "question_th": "ฟินแลนด์มีรอบไหนแบบเสมอกัน?",
    "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_en": "What's the location when the record was 6-0-1?",
    "question_th": "ตำแหน่งเมื่อบันทึกคือ 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_en": "Who was the opponent on October 14, 1984?",
    "question_th": "คู่ต่อสู้เมื่อวันที่ 14 ตุลาคม 2527 คือใคร?",
    "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_en": "What was the result in a week lower than 10 with an opponent of Chicago Bears?",
    "question_th": "ผลลัพธ์ในหนึ่งสัปดาห์ต่ำกว่า 10 กับคู่ต่อสู้ของ 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_en": "What is the sum of attendance when the result was l 16-13?",
    "question_th": "ผลรวมของผู้เข้าร่วมเมื่อผลคือ 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_en": "What is the name when the position was fullback, hooker?",
    "question_th": "ชื่อตอนเป็นกองหลังโสเภณี?",
    "context": "CREATE TABLE table_name_85 (name VARCHAR, pos VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_33 WHERE pos = \"centre\"",
    "question_en": "What is the name when the position is centre?",
    "question_th": "ตำแหน่งตรงกลางชื่ออะไรคะ?",
    "context": "CREATE TABLE table_name_33 (name VARCHAR, pos VARCHAR)"
  },
  {
    "answer": "SELECT show FROM table_name_89 WHERE character = \"rohan\"",
    "question_en": "Which show has a character of Rohan?",
    "question_th": "รายการใดมีตัวละครของโรฮัน?",
    "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_en": "Which show was nominated for the ITA Milestone Award at the Indian Television Academy Awards?",
    "question_th": "รายการใดที่ได้รับการเสนอชื่อเข้าชิงรางวัล ITA Milestone Award จาก 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_en": "Which character was nominated in the 2010 Indian Television Academy Awards?",
    "question_th": "ตัวละครใดที่ได้รับการเสนอชื่อเข้าชิงรางวัล Indian Television Academy Awards ประจำปี 2010",
    "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_en": "What rank is the title with a gross of $26,589,355?",
    "question_th": "ตำแหน่งใดที่มีรายรับรวม 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_en": "Which title ranked lower than 19 has a gross of $11,833,696?",
    "question_th": "เกมใดที่มีอันดับต่ำกว่า 19 มีรายได้รวม 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_en": "What rank has a gross of $35,976,000?",
    "question_th": "อันดับใดมีรายได้รวม $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_en": "What is the rank of The Big Doll House?",
    "question_th": "บ้านตุ๊กตาใหญ่มีอันดับเท่าไหร่?",
    "context": "CREATE TABLE table_name_62 (rank INTEGER, title VARCHAR)"
  },
  {
    "answer": "SELECT equipment FROM table_name_46 WHERE points > 256 AND position = 3",
    "question_en": "What is the Equipment that has a Point bigger than 256, and a Position of 3?",
    "question_th": "อุปกรณ์ที่มีแต้มมากกว่า 256 และตำแหน่ง 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_en": "What is the Equipment that has a Points littler than 442, and a Position of 9?",
    "question_th": "อุปกรณ์ที่มีคะแนนน้อยกว่า 442 และตำแหน่ง 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_en": "What is the most elevated Position that has a Points of 257, and a Bike No littler than 19?",
    "question_th": "ตำแหน่งที่สูงที่สุดที่มีคะแนน 257 และจักรยานไม่ต่ำกว่า 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_en": "When Bunky Henry of the United States scored higher than 67 and his To par was e, what was his place?",
    "question_th": "เมื่อบังกี้ เฮนรี่ จากสหรัฐอเมริกาทำสกอร์ได้สูงกว่า 67 และทูพาร์ของเขาคือ e เขาจะอยู่ที่ไหน?",
    "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_en": "When Bunky Henry of the United States scored higher than 68 and his To par was e, what was his place?",
    "question_th": "เมื่อบังกี้ เฮนรี่ จากสหรัฐอเมริกาทำคะแนนได้สูงกว่า 68 และทูพาร์ของเขาคือ e เขาจะอยู่ที่ไหน?",
    "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_en": "Where did Bob Murphy of the United States place?",
    "question_th": "Bob Murphy จากสหรัฐอเมริกาอยู่ที่ไหน?",
    "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_en": "When Bunky Henry placed t8, what was his To par?",
    "question_th": "เมื่อบังกี้ เฮนรี่ จบที่ 8 พาร์พาร์ของเขาคือเท่าไร?",
    "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_en": "Which country is George Archer from?",
    "question_th": "George Archer มาจากประเทศใด",
    "context": "CREATE TABLE table_name_22 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_30 WHERE third = \"zach jacobson\"",
    "question_en": "Which season has Zach Jacobson in third?",
    "question_th": "Zach Jacobson อยู่ในอันดับที่สามในฤดูกาลใด",
    "context": "CREATE TABLE table_name_30 (season VARCHAR, third VARCHAR)"
  },
  {
    "answer": "SELECT lead FROM table_name_83 WHERE skip = \"john shuster\" AND season = \"2009–10\"",
    "question_en": "Who was the lead with John Shuster as skip in the season of 2009–10?",
    "question_th": "ใครเป็นผู้นำโดยมี John Shuster เป็นผู้ข้ามในฤดูกาล 2552–10?",
    "context": "CREATE TABLE table_name_83 (lead VARCHAR, skip VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT second FROM table_name_71 WHERE lead = \"shane mckinlay\"",
    "question_en": "Who was second when Shane McKinlay was the lead?",
    "question_th": "ใครเป็นอันดับสองเมื่อ Shane McKinlay เป็นผู้นำ?",
    "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–06\"",
    "question_en": "Who was the lead with Pete Fenson as skip and Joe Polo as second in season 2005–06?",
    "question_th": "ใครเป็นผู้นำโดยมี Pete Fenson เป็นฝ่ายข้ามและ Joe Polo เป็นอันดับสองในฤดูกาล 2548–06?",
    "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_en": "Who was the lead with John Shuster as skip, Chris Plys in second, and Jeff Isaacson in third?",
    "question_th": "ใครเป็นผู้นำโดยมี John Shuster เป็น Skip, Chris Plys ในอันดับที่สอง และ Jeff Isaacson ในอันดับที่สาม",
    "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_en": "WHAT IS THE TO PAR WITH A FINISH OF T11, FOR DAVID GRAHAM?",
    "question_th": "อะไรคือสิ่งที่เทียบเท่ากับการจบ T11 สำหรับ 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_en": "WHAT IS THE TOTAL THAT HAS A WIN IN 1982?",
    "question_th": "ยอดรวมที่ชนะในปี 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_en": "WHAT IS THE TOTAL, OF A TO PAR FOR HUBERT GREEN, AND A TOTAL LARGER THAN 291?",
    "question_th": "ผลรวมของพาร์สำหรับฮิวเบิร์ต กรีน และผลรวมมากกว่า 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_en": "Can you tell me the sum of Area km 2 that has the Official Name of glenelg?",
    "question_th": "คุณช่วยบอกผลรวมของพื้นที่ กม. 2 ที่มีชื่ออย่างเป็นทางการว่า 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_en": "Can you tell me the lowest Area km 2 that has the Population of 2,352?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าพื้นที่ต่ำสุด กม. 2 ที่มีประชากร 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_en": "What is the FCC info for the radio station in West Lafayette, Indiana?",
    "question_th": "ข้อมูล FCC สำหรับสถานีวิทยุใน 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_en": "What is the frequency of the radio station in Indiana that has a call sign of WGNR?",
    "question_th": "ความถี่ของสถานีวิทยุในรัฐอินเดียนาที่มีสัญญาณเรียก 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_en": "What is the frequency of the radio station with a call sign of WGNR-FM?",
    "question_th": "ความถี่ของสถานีวิทยุที่มีสัญญาณเรียกขาน 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_en": "What state is the radio station in that has a frequency of 90.1 FM and a city license in New Castle?",
    "question_th": "สถานีวิทยุในรัฐใดที่มีความถี่ 90.1 FM และมีใบอนุญาตเมืองใน 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_en": "What city is 103.3 FM licensed in?",
    "question_th": "103.3 FM ได้รับใบอนุญาตในเมืองใด",
    "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_en": "What is the call sign for 90.9 FM which is in Florida?",
    "question_th": "สัญญาณเรียกขานของ 90.9 FM ที่ฟลอริดาคืออะไร?",
    "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_en": "What is the result for the Call to Arms I event?",
    "question_th": "ผลลัพธ์ของกิจกรรม Call to Arms I คืออะไร?",
    "context": "CREATE TABLE table_name_98 (res VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_4 WHERE team = \"utah jazz\"",
    "question_en": "What is the record for the Utah Jazz?",
    "question_th": "ยูทาห์ แจ๊ส มีสถิติเป็นอย่างไรบ้าง?",
    "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_en": "what is the location when the method is tko (punches) and the time is 2:48?",
    "question_th": "ตำแหน่งเมื่อวิธีการคือ tko (ต่อย) และเวลาคือ 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_en": "what is the location when the record is 5-1-1?",
    "question_th": "ตำแหน่งที่บันทึกคือ 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_en": "What is the total avg/g of McCrary, Greg?",
    "question_th": "แม็คแครรีมีค่าเฉลี่ยทั้งหมดเท่าไร เกร็ก",
    "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_en": "What is the lowest effic with a 58.9 avg/g?",
    "question_th": "ประสิทธิภาพต่ำสุดที่ 58.9 เฉลี่ย/กรัม คือข้อใด",
    "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_en": "What is the avg/g of Rhines, Chris, who has an effic greater than 73.95?",
    "question_th": "คริส ไรน์ส โดยเฉลี่ย/กรัม มีประสิทธิภาพมากกว่า 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–2\"",
    "question_en": "Which week has a record of 5–2?",
    "question_th": "สัปดาห์ใดมีสถิติ 5–2?",
    "context": "CREATE TABLE table_name_57 (week VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_85 WHERE result = \"w 28–7\"",
    "question_en": "On what date was the result w 28–7?",
    "question_th": "ผลการแข่งขันวันที่ 28–7 คือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_85 (date VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_21 WHERE birth = \"16 august 1401\"",
    "question_en": "Who has a birth of 16 august 1401?",
    "question_th": "ใครเกิดวันที่ 16 สิงหาคม 1401?",
    "context": "CREATE TABLE table_name_21 (name VARCHAR, birth VARCHAR)"
  },
  {
    "answer": "SELECT death FROM table_name_1 WHERE husband = \"charles, 1st dauphin\"",
    "question_en": "when was the death of the person with husband Charles, 1st dauphin?",
    "question_th": "คนกับสามีชาร์ลส์ โดฟินที่ 1 เสียชีวิตเมื่อไหร่?",
    "context": "CREATE TABLE table_name_1 (death VARCHAR, husband VARCHAR)"
  },
  {
    "answer": "SELECT death FROM table_name_45 WHERE birth = \"8 december 1542\"",
    "question_en": "when was the death when the birth was 8 december 1542?",
    "question_th": "สิ้นพระชนม์เมื่อใดเกิดวันที่ 8 ธันวาคม พ.ศ. 2085?",
    "context": "CREATE TABLE table_name_45 (death VARCHAR, birth VARCHAR)"
  },
  {
    "answer": "SELECT became_dauphine FROM table_name_72 WHERE birth = \"1393\"",
    "question_en": "When was became dauphine when birth is 1393?",
    "question_th": "เมื่อใดที่กลายเป็น daupine เมื่อเกิดคือ 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_en": "when was the marriage when became dauphine is 31 august 1412?",
    "question_th": "การแต่งงานเกิดขึ้นเมื่อใดเมื่อกลายเป็น dauphine คือ 31 สิงหาคม 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_en": "who is the husband when ceased to be dauphine is 22 july 1461 became queen?",
    "question_th": "สามีคือใครเมื่อสิ้นพระชนม์เป็นโดฟีน คือวันที่ 22 กรกฎาคม พ.ศ. 1461 ขึ้นเป็นราชินี?",
    "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_en": "what is the least money ($) when the country is united states and the player is kirk triplett?",
    "question_th": "เงินน้อยที่สุด ($) คือเท่าไรเมื่อประเทศคือสหรัฐอเมริกาและผู้เล่นคือ 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_en": "what is the most money ($) when the score is 71-74-69-72=286?",
    "question_th": "เงินมากที่สุด ($) คือเท่าไรเมื่อคะแนนคือ 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_en": "What is the Money ($) when the Place is t6, and Player is chris dimarco?",
    "question_th": "เงิน ($) คืออะไรเมื่อสถานที่คือ t6 และผู้เล่นคือ 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_en": "What year was Jamboree made?",
    "question_th": "จัมโบรีจัดสร้างปีไหน?",
    "context": "CREATE TABLE table_name_26 (year VARCHAR, movie_title VARCHAR)"
  },
  {
    "answer": "SELECT movie_title FROM table_name_75 WHERE year = 1957",
    "question_en": "What movie was made in 1957?",
    "question_th": "ภาพยนตร์เรื่องใดที่ถูกสร้างขึ้นในปี 1957?",
    "context": "CREATE TABLE table_name_75 (movie_title VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_35 WHERE producer = \"sam kazman\"",
    "question_en": "What year was Sam Kazman a producer?",
    "question_th": "Sam Kazman เป็นโปรดิวเซอร์ในปีใด",
    "context": "CREATE TABLE table_name_35 (year VARCHAR, producer VARCHAR)"
  },
  {
    "answer": "SELECT producer FROM table_name_60 WHERE year = 1961",
    "question_en": "Who were the producers in 1961?",
    "question_th": "ใครคือโปรดิวเซอร์ในปี 2504?",
    "context": "CREATE TABLE table_name_60 (producer VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT role FROM table_name_70 WHERE year = 1961",
    "question_en": "What were the roles in 1961?",
    "question_th": "บทบาทในปี 2504 มีอะไรบ้าง?",
    "context": "CREATE TABLE table_name_70 (role VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_70 WHERE week = 13",
    "question_en": "What was the date during week 13?",
    "question_th": "สัปดาห์ที่ 13 ตรงกับวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_70 (date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT SUM(game) FROM table_name_26 WHERE november = 27",
    "question_en": "what is the game when on november 27?",
    "question_th": "เกมอะไรในวันที่ 27 พฤศจิกายน?",
    "context": "CREATE TABLE table_name_26 (game INTEGER, november VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_68 WHERE november = 24",
    "question_en": "who is the opponent on november 24?",
    "question_th": "คู่ต่อสู้ในวันที่ 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_en": "Which opposing team had an Against score less than 42 and a Tour Match status in Rugby Park, Gisborne?",
    "question_th": "ทีมตรงข้ามทีมใดมีคะแนนต่อทีมน้อยกว่า 42 และมีสถานะ Tour Match ใน 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_en": "What date was the opposing team Poverty Bay?",
    "question_th": "ทีมตรงข้าม 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_en": "Which venue had an against score smaller than 18 when the opposing team was North Auckland?",
    "question_th": "สนามใดมีคะแนนต่อคะแนนน้อยกว่า 18 เมื่อทีมตรงข้ามคือโอ๊คแลนด์เหนือ",
    "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_en": "What was the score when the time was 14:00?",
    "question_th": "เมื่อเวลา 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_en": "What is High Assists, when High Points is \"Kobe Bryant (27)\", and when High Rebounds is \"Pau Gasol (11)\"?",
    "question_th": "High Assists คืออะไร เมื่อ High Points คือ \"Kobe Bryant (27)\" และเมื่อ High Rebounds คือ \"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_en": "What is the record for the St. Louis team?",
    "question_th": "สถิติของทีมเซนต์หลุยส์เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_58 (record VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT 2002 FROM table_name_46 WHERE 1991 = \"w\"",
    "question_en": "What shows for 2002 when the 1991 is w?",
    "question_th": "อะไรแสดงให้เห็นในปี 2545 เมื่อปี 1991 เป็น w?",
    "context": "CREATE TABLE table_name_46 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1995 FROM table_name_74 WHERE 1996 = \"grand slams\"",
    "question_en": "What shows for 1995 when 1996 shows grand slams?",
    "question_th": "อะไรแสดงให้เห็นในปี 1995 เมื่อปี 1996 แสดงให้เห็นแกรนด์สแลม?",
    "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_en": "What shows for 202 when the 1994 is A, the 1989 is NME, and the 199 is 2R?",
    "question_th": "อะไรแสดงให้เห็นสำหรับ 202 เมื่อปี 1994 เป็น A, ปี 1989 เป็น NME และ 199 เป็น 2R",
    "context": "CREATE TABLE table_name_3 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1992 FROM table_name_43 WHERE 1988 = \"a\" AND tournament = \"australian open\"",
    "question_en": "What shows for 1992 when 1988 is A, at the Australian Open?",
    "question_th": "สิ่งที่แสดงให้เห็นในปี 1992 เมื่อปี 1988 เป็น A ที่ 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_en": "What shows for 1992 when 2001 is 1r, 1994 is 1r, and the 2002 is qf?",
    "question_th": "อะไรแสดงให้เห็นในปี 1992 เมื่อปี 2001 คือ 1r, 1994 คือ 1r และปี 2002 คือ qf",
    "context": "CREATE TABLE table_name_3 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1988 FROM table_name_32 WHERE 1994 = \"10–6\"",
    "question_en": "What shows for 1988 when 1994 shows 10–6?",
    "question_th": "รายการอะไรในปี 1988 เมื่อปี 1994 แสดง 10–6",
    "context": "CREATE TABLE table_name_32 (Id VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_37 WHERE round = \"f\"",
    "question_en": "What result is found for the round that has f?",
    "question_th": "รอบที่มี f พบผลลัพธ์อะไร?",
    "context": "CREATE TABLE table_name_37 (result VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT method FROM table_name_83 WHERE opponent = \"dale hartt\"",
    "question_en": "What was the method of resolution for the fight against dale hartt?",
    "question_th": "มีวิธีการแก้ปัญหาในการต่อสู้กับเดล ฮาร์ทอย่างไร?",
    "context": "CREATE TABLE table_name_83 (method VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT phase FROM table_name_72 WHERE round = \"matchday 4\"",
    "question_en": "Which phase is for the Matchday 4 Round?",
    "question_th": "รอบแมตช์เดย์ 4 จะเป็นช่วงไหน?",
    "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_en": "what is the mountain range when the state is colorado, rank is higher than 90 and mountain peak is whetstone mountain?",
    "question_th": "เทือกเขาเมื่อรัฐเป็นโคโลราโด อันดับสูงกว่า 90 และยอดเขาเป็นภูเขาหินลับ?",
    "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°n 105.4856°w\"",
    "question_en": "what is the mountain peak when the location is 37.5775°n 105.4856°w?",
    "question_th": "ยอดเขาเมื่อตำแหน่งอยู่ที่ 37.5775°n 105.4856°w?",
    "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_en": "what is the mountain range when the mountain peak is mauna kea?",
    "question_th": "เทือกเขาที่ยอดเขาคือเมานาเกีย?",
    "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°n 107.7039°w\"",
    "question_en": "what is the rank when the state is colorado and the location is 37.7859°n 107.7039°w?",
    "question_th": "รัฐคือโคโลราโดและตำแหน่งอยู่ที่เท่าไร 37.7859°n 107.7039°w",
    "context": "CREATE TABLE table_name_21 (rank INTEGER, state VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_82 WHERE time = \"3:00\"",
    "question_en": "What is the number of people in attendance when the time is 3:00?",
    "question_th": "เวลา 03.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_en": "What was the score at Tiger Stadium on October 12?",
    "question_th": "สกอร์ที่ไทเกอร์ สเตเดี้ยม เมื่อวันที่ 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_en": "What is the number of people in attendance at Oakland-Alameda County Coliseum, and game is 2?",
    "question_th": "จำนวนผู้เข้าร่วมที่ Oakland-Alameda County Coliseum คือเท่าไร และเกมคือ 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_en": "Who had the most assists in the game against Atlanta?",
    "question_th": "ใครแอสซิสต์ได้มากที่สุดในเกมกับแอตแลนต้า?",
    "context": "CREATE TABLE table_name_13 (high_assists VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT MIN(played) FROM table_name_85 WHERE lost > 10",
    "question_en": "What is the lowest played with a lost bigger than 10?",
    "question_th": "การเล่นต่ำสุดโดยแพ้มากกว่า 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_en": "What team with a goals conceded smaller than 25, and a place smaller than 3?",
    "question_th": "ทีมใดที่เสียประตูน้อยกว่า 25 และอันดับที่น้อยกว่า 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_en": "What is the sum of draw with a lost smaller than 6, and a place of 5, and a goals scored less than 29?",
    "question_th": "ผลรวมของการเสมอโดยแพ้น้อยกว่า 6 และอันดับ 5 และประตูที่ทำได้น้อยกว่า 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_en": "What is the total number for a place with points smaller than 12?",
    "question_th": "จำนวนรวมของสถานที่ที่มีคะแนนน้อยกว่า 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_en": "What is Place, when Country is \"United States\", and when Player is \"Lee Trevino\"?",
    "question_th": "สถานที่คืออะไร เมื่อประเทศคือ \"สหรัฐอเมริกา\" และเมื่อผู้เล่นคือ \"ลี เทรวิโน\"?",
    "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_en": "What is the total number of Score, when Country is \"United States\", and when Player is \"Lee Trevino\"?",
    "question_th": "จำนวนคะแนนทั้งหมดคือเท่าไร เมื่อประเทศคือ \"สหรัฐอเมริกา\" และเมื่อผู้เล่นคือ \"ลี เทรวิโน\"?",
    "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_en": "What is To Par, when Place is \"T9\", and when Player is \"Lee Trevino\"?",
    "question_th": "To Par คืออะไร เมื่ออันดับคือ \"T9\" และเมื่อผู้เล่นคือ \"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_en": "What is the Country, when Place is T6, and when Player is \"Raymond Floyd\"?",
    "question_th": "ประเทศคืออะไร เมื่ออันดับคือ T6 และเมื่อผู้เล่นคือ \"เรย์มอนด์ ฟลอยด์\"?",
    "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_en": "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?",
    "question_th": "กี่ปีสำหรับฤดูกาลใน CSL เมื่อพวกเขาเล่นใน Guiyang Olympic Sports Center และคว้าแชมป์ดิวิชั่นสูงสุด (โดยรวม) เป็น 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_en": "What is To Par, when Place is \"T5\", and when Country is \"United States\"?",
    "question_th": "To Par คืออะไร เมื่อสถานที่คือ \"T5\" และเมื่อประเทศคือ \"สหรัฐอเมริกา\"",
    "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_en": "What is Score, when Country is \"United States\", and when To Par is \"+4\"?",
    "question_th": "คะแนนคืออะไร เมื่อประเทศคือ \"สหรัฐอเมริกา\" และเมื่อถึงพาร์คือ \"+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_en": "What is Player, when Score is \"66-74-76=216\"?",
    "question_th": "Player คืออะไร เมื่อคะแนนเป็น \"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_en": "What is Country, when Place is \"T9\", and when Player is \"Michael Campbell\"?",
    "question_th": "ประเทศคืออะไร เมื่ออันดับคือ \"T9\" และเมื่อผู้เล่นคือ \"ไมเคิล แคมป์เบลล์\"",
    "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_en": "What is Player, when Country is \"England\", and when Place is \"T7\"?",
    "question_th": "ผู้เล่นคืออะไร เมื่อประเทศคือ \"อังกฤษ\" และเมื่อสถานที่คือ \"T7\"",
    "context": "CREATE TABLE table_name_50 (player VARCHAR, country VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_70 WHERE place = \"1\"",
    "question_en": "What is Player, when Place is \"1\"?",
    "question_th": "Player คืออะไร เมื่ออันดับคือ \"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_en": "What is the total of Mark O'meara?",
    "question_th": "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_en": "What is the total for Bernhard Langer?",
    "question_th": "Bernhard Langer มียอดรวมเท่าไร?",
    "context": "CREATE TABLE table_name_83 (total VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_45 WHERE to_par = \"+2\"",
    "question_en": "Which player has +2 to par?",
    "question_th": "ผู้เล่นคนไหนมี +2 พาร์?",
    "context": "CREATE TABLE table_name_45 (player VARCHAR, to_par VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_87 WHERE finish = \"t22\"",
    "question_en": "Which country has a finish of t22?",
    "question_th": "ประเทศไหนจบ 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_en": "Which player has a total of more than 290 and +4 to par.",
    "question_th": "ผู้เล่นคนไหนมีแต้มรวมมากกว่า 290 และ +4 พาร์",
    "context": "CREATE TABLE table_name_29 (player VARCHAR, total VARCHAR, to_par VARCHAR)"
  },
  {
    "answer": "SELECT gold FROM table_name_88 WHERE bronze = \"8\"",
    "question_en": "What is the number of gold medals when the number of bronze medals is 8?",
    "question_th": "จำนวนเหรียญทองเมื่อจำนวนเหรียญทองแดงคือ 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_en": "What rank is the nation that has a bronze of source: Maltese Olympic Committee?",
    "question_th": "ประเทศที่มีเหรียญทองแดงอยู่ในอันดับใด: คณะกรรมการโอลิมปิกมอลตา",
    "context": "CREATE TABLE table_name_29 (rank VARCHAR, bronze VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_44 WHERE silver = \"2\"",
    "question_en": "What rank is the nation with 2 silver medals?",
    "question_th": "ประเทศที่ได้ 2 เหรียญเงินอยู่อันดับไหน?",
    "context": "CREATE TABLE table_name_44 (rank VARCHAR, silver VARCHAR)"
  },
  {
    "answer": "SELECT total FROM table_name_91 WHERE gold = \"5\"",
    "question_en": "What is the total medal count for the nation that has 5 gold?",
    "question_th": "จำนวนเหรียญรวมของประเทศที่มี 5 เหรียญทองเป็นเท่าใด",
    "context": "CREATE TABLE table_name_91 (total VARCHAR, gold VARCHAR)"
  },
  {
    "answer": "SELECT bronze FROM table_name_80 WHERE rank = \"1\"",
    "question_en": "How many bronze medals does the nation ranked number 1 have?",
    "question_th": "ประเทศอันดับ 1 มีเหรียญทองแดงกี่เหรียญ?",
    "context": "CREATE TABLE table_name_80 (bronze VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT nation FROM table_name_63 WHERE bronze = \"28\"",
    "question_en": "What nation has 28 bronze medals?",
    "question_th": "ชาติใดมี 28 เหรียญทองแดง?",
    "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_en": "What is the average To Par, when Score is \"72-67-71-72=282\"?",
    "question_th": "ค่าเฉลี่ยทูพาร์เป็นเท่าใด เมื่อสกอร์คือ \"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_en": "What is the highest To Par, when Place is \"1\"?",
    "question_th": "To Par สูงสุดคือเท่าใด เมื่ออันดับคือ \"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_en": "What's the nationality of Montreal Impact with Justin Mapp Category:articles with hcards as the player?",
    "question_th": "Montreal Impact กับ Justin Mapp มีสัญชาติอะไร หมวดหมู่:บทความที่มี hcards เป็นผู้เล่น",
    "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_en": "After 2009, who was the player that has a nationality of Canada?",
    "question_th": "หลังปี 2009 ใครคือผู้เล่นที่มีสัญชาติแคนาดา?",
    "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_en": "After 2009, what's the nationality of a player named Dwayne de Rosario Category:articles with hcards?",
    "question_th": "หลังจากปี 2009 ผู้เล่นชื่อ Dwayne de Rosario มีสัญชาติอะไร หมวดหมู่:บทความที่มี 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_en": "What's the position when the player was Justin Mapp Category:articles with hcards with a United States nationality?",
    "question_th": "ตำแหน่งใดเมื่อผู้เล่นคือ Justin Mapp Category:บทความที่มี hcards ที่มีสัญชาติสหรัฐอเมริกา",
    "context": "CREATE TABLE table_name_36 (position VARCHAR, nationality VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_34 WHERE round = \"r3\"",
    "question_en": "What is the result of round R3?",
    "question_th": "ผลการแข่งขันรอบ R3 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_34 (result VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_72 WHERE round = \"f\"",
    "question_en": "In which venue was round F?",
    "question_th": "รอบ 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_en": "How many top 10s belong to the team with a start of 7 and an average finish less than 16.7?",
    "question_th": "มีกี่คนที่ติด 10 อันดับแรกของทีมโดยออกสตาร์ต 7 และจบเฉลี่ยน้อยกว่า 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_en": "Which Competition has an Event of 50km, a Year earlier than 2010 and a Position of 3rd?",
    "question_th": "การแข่งขันใดที่มีการแข่งขันระยะทาง 50 กม. หนึ่งปีก่อนหน้าปี 2010 และอันดับที่ 3",
    "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_en": "What is the Position for the European U23 Championships?",
    "question_th": "ตำแหน่งแชมป์ยุโรป U23 คืออะไร?",
    "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_en": "Which Event has 5th Position in the European Championships Competition?",
    "question_th": "เหตุการณ์ใดมีตำแหน่งที่ 5 ในการแข่งขันชิงแชมป์ยุโรป?",
    "context": "CREATE TABLE table_name_49 (event VARCHAR, competition VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_64 WHERE venue = \"debrecen, hungary\"",
    "question_en": "What Position is listed against a Venue of Debrecen, Hungary",
    "question_th": "ตำแหน่งใดที่ระบุไว้เทียบกับสถานที่ของ Debrecen ประเทศฮังการี",
    "context": "CREATE TABLE table_name_64 (position VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(blocks) FROM table_name_19 WHERE rebounds < 5.2",
    "question_en": "How many blocks are there when the rebounds are fewer than 5.2?",
    "question_th": "มีกี่บล็อคเมื่อรีบาวด์น้อยกว่า 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_en": "What is the maximum rebounds when there are 0.9 steals and fewer than 1.4 turnovers?",
    "question_th": "การรีบาวด์สูงสุดเมื่อมีการขโมย 0.9 ครั้งและเทิร์นโอเวอร์น้อยกว่า 1.4 คืออะไร?",
    "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_en": "What team was the opponent in a week earlier than 17 on June 17, 2006?",
    "question_th": "ทีมใดเป็นคู่ต่อสู้ในหนึ่งสัปดาห์ก่อนวันที่ 17 เมื่อวันที่ 17 มิถุนายน พ.ศ. 2549?",
    "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_en": "What is the result for the game on May 27, 2006?",
    "question_th": "ผลการแข่งขันในวันที่ 27 พฤษภาคม 2549 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_19 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT game_site FROM table_name_20 WHERE week = 1",
    "question_en": "What is the Game site week 1?",
    "question_th": "เว็บไซต์เกมสัปดาห์ที่ 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_en": "What was the highest Tie no when the home team was the Bolton Wanderers, and the date was Middlesbrough?",
    "question_th": "อะไรคือการเสมอกันสูงสุดเมื่อเจ้าบ้านคือโบลตัน วันเดอเรอร์ส และวันที่คือมิดเดิลสโบรห์?",
    "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_en": "What is the average Tie no when the date is Birmingham City?",
    "question_th": "ค่าเฉลี่ย Tie no เมื่อวันที่คือเบอร์มิงแฮม ซิตี้ คือเท่าใด?",
    "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_en": "What was the Tie no when then home team was Stoke City for the game played on 9 February 1946?",
    "question_th": "เสมอไม่คืออะไรเมื่อเจ้าบ้านคือสโต๊ค ซิตี้ สำหรับเกมที่เล่นเมื่อวันที่ 9 กุมภาพันธ์ พ.ศ. 2489?",
    "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_en": "How many attended the game with an opponent of bye?",
    "question_th": "มีกี่คนที่เข้าร่วมเกมกับคู่ต่อสู้ที่ลาก่อน?",
    "context": "CREATE TABLE table_name_72 (attendance VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_32 WHERE attendance = \"73,428\"",
    "question_en": "Which opponent had 73,428 in attendance?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีผู้เข้าร่วม 73,428 คน?",
    "context": "CREATE TABLE table_name_32 (opponent VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_34 WHERE opponent = \"oakland raiders\"",
    "question_en": "What was the attendance of the Oakland Raiders game?",
    "question_th": "การเข้าร่วมของเกม Oakland Raiders คืออะไร?",
    "context": "CREATE TABLE table_name_34 (attendance VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT streak FROM table_name_6 WHERE game = \"2\"",
    "question_en": "What is the streak for game 2?",
    "question_th": "แนวเกมที่ 2 คืออะไร?",
    "context": "CREATE TABLE table_name_6 (streak VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_90 WHERE game = \"game 3\"",
    "question_en": "Which Date has a Game of game 3?",
    "question_th": "วันที่ใดมีเกมของเกม 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_en": "Which Home Team has a Road Team of rochester, and a Result of 71-78?",
    "question_th": "ทีมเจ้าบ้านใดมีทีมโร้ดของโรเชสเตอร์ และผลการแข่งขัน 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_en": "Which Result has a Home Team of rochester, and a Game of game 5?",
    "question_th": "ผลการแข่งขันใดมีทีมเจ้าบ้านเป็นโรเชสเตอร์ และเกมที่ 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_en": "Which Road Team has a Home Team of rochester, and a Game of game 2?",
    "question_th": "ทีม Road ใดมีทีมเหย้าของ Rochester และเกมของเกมที่ 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_en": "Which Road Team has a Home Team of rochester, and a Result of 89-92?",
    "question_th": "ทีม Road ใดมีทีมเหย้าของ Rochester และผลการแข่งขัน 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_en": "Which Date has a Road Team of new york, and a Result of 79-75?",
    "question_th": "วันที่ใดมีทีม Road ของนิวยอร์กและผลลัพธ์ 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_en": "What was the highest assists for game 3?",
    "question_th": "แอสซิสต์สูงสุดในเกมที่ 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_en": "What country is player ed sneed, who has a to par of +3, from?",
    "question_th": "เอ็ด สนีด เป็นนักเตะประเทศไหนที่มีพาร์ถึง +3 จากประเทศไหน?",
    "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_en": "What is the to par of player ed sneed, who has a t5 place?",
    "question_th": "อะไรคือสิ่งที่ได้เปรียบของผู้เล่น ed sneed ใครมีอันดับ t5?",
    "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_en": "Who is the player with a 70-75=145 score?",
    "question_th": "ใครคือผู้เล่นที่มีคะแนน 70-75=145?",
    "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_en": "What is the to par of player tom weiskopf, who has a 71-74=145 score?",
    "question_th": "แต้มพาร์ของนักเตะทอม ไวสคอฟที่มีคะแนน 71-74=145 คือเท่าไร?",
    "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_en": "Who is the player with a t5 place and a 75-70=145 score?",
    "question_th": "ใครคือผู้เล่นที่มีอันดับ T5 และคะแนน 75-70=145?",
    "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_en": "What is the country of player ed sneed with a to par of +3?",
    "question_th": "ผู้เล่น ed sneed มีค่าพาร์ +3 อยู่ที่ประเทศอะไร?",
    "context": "CREATE TABLE table_name_15 (country VARCHAR, to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_3 WHERE record = \"31–37–9\"",
    "question_en": "What is the Score of the game with a Record of 31–37–9?",
    "question_th": "คะแนนของเกมที่มีสถิติ 31–37–9 คืออะไร?",
    "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_en": "What is the Score of the Pittsburgh Home game on March 3 with 61 Points?",
    "question_th": "คะแนนของเกมเหย้าพิตต์สเบิร์กในวันที่ 3 มีนาคมมี 61 แต้มเป็นเท่าใด",
    "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_en": "What is the Date of the game in Vancouver?",
    "question_th": "วันที่ของเกมในแวนคูเวอร์คือวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_9 (date VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT run_4 FROM table_name_37 WHERE athletes = \"alexandru frimu & costel rădulescu\"",
    "question_en": "Which Run 4 has Athletes of alexandru frimu & costel rădulescu?",
    "question_th": "วิ่ง 4 คนใดมีนักกีฬาของ alexandru frimu และ costel rădulescu",
    "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_en": "Which Final has a Team of liechtenstein (lie) liechtenstein i?",
    "question_th": "ซึ่งรอบชิงชนะเลิศมีทีมลิกเตนสไตน์ (โกหก) ลิกเตนสไตน์ 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_en": "Which Run 2 has a Run 1 of 1:30.03?",
    "question_th": "รัน 2 ตัวไหนมีรัน 1 ด้วยเวลา 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_en": "Which Run 4 has a Run 3 of 1:26.63?",
    "question_th": "รัน 4 ตัวไหนมีรัน 3 ด้วยเวลา 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_en": "Which Run 4 has a Run 1 of 1:25.82?",
    "question_th": "รัน 4 ใดมีรัน 1 จาก 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_en": "Which Final has a Run 2 of 1:27.58?",
    "question_th": "รอบชิงชนะเลิศรายการใดมีรัน 2 ด้วยเวลา 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–6, 6–4, 2–6, 6–3, 20–18\"",
    "question_en": "which opponents in the u.s. championships played after 1945 and had a score of 3–6, 6–4, 2–6, 6–3, 20–18?",
    "question_th": "คู่ต่อสู้คนใดในการแข่งขัน US Championships ที่เล่นหลังปี 1945 และมีคะแนน 3–6, 6–4, 2–6, 6–3, 20–18?",
    "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–10, 8–10, 12–10, 6–2\"",
    "question_en": "what is the most recent year gardnar mulloy played as a partner and score was 12–10, 8–10, 12–10, 6–2?",
    "question_th": "การ์ดนาร์ มัลลอย เล่นเป็นคู่หูในปีที่แล้วคือปีไหน และคะแนนคือ 12–10, 8–10, 12–10, 6–2?",
    "context": "CREATE TABLE table_name_29 (year INTEGER, partner VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT ship FROM table_name_70 WHERE builder = \"cammell laird\"",
    "question_en": "What Ship was Built by Cammell Laird?",
    "question_th": "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_en": "What Country is the John S. McCain Ship from?",
    "question_th": "เรือของ John S. McCain มาจากประเทศใด",
    "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_en": "What is the Cargo Ship located at Birkenhead?",
    "question_th": "เรือบรรทุกสินค้าที่ 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_en": "What is the highest Population, when % LDS is 0.54%, and when Total Congregations is greater than 2?",
    "question_th": "ประชากรสูงสุดคือเท่าใด เมื่อ % LDS คือ 0.54% และเมื่อจำนวนผู้ชุมนุมทั้งหมดมากกว่า 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_en": "What is the total number of Total Congregations, when % LDS is 0.54%, and when Population is greater than 105,275?",
    "question_th": "จำนวน Congregations ทั้งหมดคือเท่าไร เมื่อ % LDS เท่ากับ 0.54% และเมื่อจำนวนประชากรมากกว่า 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_en": "What is the highest Population, when State is Puerto Rico, and when Total Congregations is greater than 41?",
    "question_th": "จำนวนประชากรสูงสุดคืออะไร เมื่อรัฐคือเปอร์โตริโก และเมื่อจำนวนผู้ชุมนุมทั้งหมดมากกว่า 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_en": "What is Population, when Total Congregations is less than 4, and when % LDS is 0.54%?",
    "question_th": "ประชากรคืออะไร เมื่อจำนวน Congregations ทั้งหมดน้อยกว่า 4 และเมื่อ % LDS เท่ากับ 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_en": "Who was the actor in London in 2002 with the shipwreck of Leonty Ibayev?",
    "question_th": "ใครคือนักแสดงในลอนดอนในปี 2545 กับซากเรืออัปปางของ 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_en": "Who was the 2007 actor from Moscow for the voyage of Varenka Bakunin?",
    "question_th": "ใครคือนักแสดงจากมอสโกในปี 2550 สำหรับการเดินทางของ 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_en": "Who was the 2007 actor from Moscow for the shipwreck of Leonty Ibayev?",
    "question_th": "ใครคือนักแสดงจากมอสโกในปี 2550 จากเหตุเรืออับปางของ 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_en": "Which institution is private/catholic?",
    "question_th": "สถาบันไหนเป็นเอกชน/คาทอลิก?",
    "context": "CREATE TABLE table_name_55 (institution VARCHAR, affiliation VARCHAR)"
  },
  {
    "answer": "SELECT AVG(enrollment) FROM table_name_47 WHERE nickname = \"redbirds\"",
    "question_en": "What is the average enrollment of the Redbirds' school?",
    "question_th": "การลงทะเบียนเรียนโดยเฉลี่ยของโรงเรียน Redbirds คือเท่าใด",
    "context": "CREATE TABLE table_name_47 (enrollment INTEGER, nickname VARCHAR)"
  },
  {
    "answer": "SELECT affiliation FROM table_name_48 WHERE institution = \"southern illinois university edwardsville\"",
    "question_en": "What is Southern Illinois University Edwardsville's affiliation?",
    "question_th": "ความร่วมมือของ Southern Illinois University Edwardsville คืออะไร?",
    "context": "CREATE TABLE table_name_48 (affiliation VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_name_23 WHERE series = \"0-2\"",
    "question_en": "With a 0-2 series, what is the high points?",
    "question_th": "ซีรีย์ 0-2 แต้มสูงสุดคืออะไร?",
    "context": "CREATE TABLE table_name_23 (high_points VARCHAR, series VARCHAR)"
  },
  {
    "answer": "SELECT masculine_an_stems FROM table_name_18 WHERE feminine_ō_stems = \"siangar\" AND masculine_u_stems = \"syni\"",
    "question_en": "What is the an-stem for the word which has an ö-stems of siangar and an u-stem ending of syni?",
    "question_th": "an-stem ของคำที่มี ö-stem เป็น siangar และ u-stem ลงท้ายด้วย syni คืออะไร?",
    "context": "CREATE TABLE table_name_18 (masculine_an_stems VARCHAR, feminine_ō_stems VARCHAR, masculine_u_stems VARCHAR)"
  },
  {
    "answer": "SELECT feminine_ōn_stems FROM table_name_82 WHERE feminine_ō_stems = \"siangu\"",
    "question_en": "What ending does siangu get for ön?",
    "question_th": "siangu ลงท้ายด้วยคำว่า ön อย่างไร?",
    "context": "CREATE TABLE table_name_82 (feminine_ōn_stems VARCHAR, feminine_ō_stems VARCHAR)"
  },
  {
    "answer": "SELECT masculine_u_stems FROM table_name_18 WHERE neuter_a_stems = \"skip\" AND masculine_a_stems = \"fisker\"",
    "question_en": "What is the u form of the word with a neuter form of skip and a masculine a-ending of fisker?",
    "question_th": "รูป u ของคำที่มีรูปเพศของ skid และจุดจบของ 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_ō_stems = \"siangar\" AND masculine_u_stems = \"sunar\"",
    "question_en": "What is the masculine an form for the word with a feminine ö ending of siangar and a masculine u ending of sunar?",
    "question_th": "เพศชายใช้คำอะไรเป็นคำที่ลงท้ายด้วย ö ที่เป็นเพศหญิง และลงท้ายด้วย u ที่เป็นสุนาร์เป็นเพศชาย",
    "context": "CREATE TABLE table_name_49 (masculine_an_stems VARCHAR, feminine_ō_stems VARCHAR, masculine_u_stems VARCHAR)"
  },
  {
    "answer": "SELECT masculine_u_stems FROM table_name_68 WHERE neuter_a_stems = \"skipum\"",
    "question_en": "What is the masculine u form for the old Swedish word with a neuter a form of skipum?",
    "question_th": "รูป u ของผู้ชายสำหรับคำภาษาสวีเดนเก่าที่มีเพศเป็นของ 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 = \"−16\"",
    "question_en": "A tournament on which date has a margin of victory of 2 strokes and a par of −16?",
    "question_th": "ทัวร์นาเมนต์วันไหนที่มีระยะขอบของชัยชนะ 2 จังหวะและพาร์ที่ -16?",
    "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 = \"−16\"",
    "question_en": "Who was the runner-up in the tournament that has a margin of victory of 2 strokes, and a To par of −16?",
    "question_th": "ใครคือรองชนะเลิศในทัวร์นาเมนต์ที่มีระยะขอบของชัยชนะ 2 สโตรก และถึงพาร์ที่ −16?",
    "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_en": "What was the to par of the tournament that had Ken Duke as a runner-up?",
    "question_th": "อะไรคือสิ่งที่ได้เปรียบของทัวร์นาเมนต์ที่มี Ken Duke เป็นรองแชมป์?",
    "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_en": "What was the margin of victory when Brandt Snedeker was runner-up?",
    "question_th": "อะไรคือส่วนต่างของชัยชนะเมื่อ Brandt Snedeker รองแชมป์?",
    "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_en": "What is the date that has a winning score of 67-70-68-67=272?",
    "question_th": "มีคะแนนชนะ 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ädt < 848 AND bärenklau < 1.262",
    "question_en": "What year has a Schwante smaller than 2.043, an Eichstädt smaller than 848, and a Bärenklau smaller than 1.262?",
    "question_th": "ปีใดที่มี Schwante น้อยกว่า 2.043, Eichstädt น้อยกว่า 848 และ Bärenklau น้อยกว่า 1.262",
    "context": "CREATE TABLE table_name_30 (year VARCHAR, bärenklau VARCHAR, schwante VARCHAR, eichstädt VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_18 WHERE game > 56 AND decision = \"lundqvist\" AND record = \"29-24-7\"",
    "question_en": "What's the score for a game over 56 with a record of 29-24-7 with a lundqvist decision?",
    "question_th": "คะแนนสำหรับเกมที่เกิน 56 ด้วยสถิติ 29-24-7 ด้วยการตัดสินของลุนด์ควิสต์เป็นเท่าไหร่?",
    "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–2\"",
    "question_en": "What is the High rebounds with a Series with 4–2?",
    "question_th": "การรีบาวด์สูงสุดด้วยซีรีส์ที่มี 4–2 คืออะไร?",
    "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_en": "What is the High rebounds with a High assists with bryant (7), and a Team of @ utah?",
    "question_th": "การรีบาวด์สูงด้วยการช่วยเหลือสูงกับไบรอันต์ (7) และทีมของ @ 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_en": "What is the Series with a High rebounds with gasol (10)?",
    "question_th": "Series ที่รีบาวด์สูงด้วยน้ำมันเบนซิน (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_en": "Tell me the D 49 and D 46 of r 13",
    "question_th": "บอก D 49 และ D 46 ของ 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_en": "I want the D 40 with D 44 of d 15",
    "question_th": "ฉันต้องการ D 40 กับ D 44 ของ 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_en": "I want the D 45 and D 42 of r 22",
    "question_th": "ฉันต้องการ D 45 และ D 42 ของ 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_en": "I want the D 46 for D 45 of r 5",
    "question_th": "ฉันต้องการ D 46 สำหรับ D 45 ของ 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_en": "I want the D 47 for D 41 being r 21",
    "question_th": "ฉันต้องการให้ D 47 สำหรับ D 41 เป็น 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_en": "What is the Name with a Year of junior, and a High School with wheatley?",
    "question_th": "ชื่ออะไรที่มีหนึ่งปีเป็นรุ่นน้อง และโรงเรียนมัธยมที่มีวีทลีย์คืออะไร?",
    "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_en": "What is the Home Town with a Name with rob cunningham?",
    "question_th": "บ้านเกิดที่มีชื่อว่า ร็อบ คันนิงแฮม คืออะไร?",
    "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_en": "What is the Position with a Year with freshman, and a Weight larger than 210?",
    "question_th": "ตำแหน่งที่มีหนึ่งปีกับน้องใหม่และมีน้ำหนักมากกว่า 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–6\"",
    "question_en": "What is the Home Town with a Year of freshman, and a Height with 6–6?",
    "question_th": "บ้านเกิดที่มีปีแรกคืออะไร และความสูงด้วย 6–6 คืออะไร?",
    "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–4\"",
    "question_en": "What is the Name with a Year with freshman, and a Home Town with los angeles, ca, and a Height of 6–4?",
    "question_th": "ชื่ออะไรที่มีหนึ่งปีกับน้องใหม่ และบ้านเกิดที่มีลอสแองเจลิส แคลิฟอร์เนีย และส่วนสูง 6–4 คืออะไร",
    "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_en": "What is the Result for Goal 3?",
    "question_th": "ผลลัพธ์สำหรับเป้าหมาย 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_en": "What is the average ties when the team is montreal victorias and the games played is more than 8?",
    "question_th": "ความสัมพันธ์โดยเฉลี่ยเมื่อทีมชนะมอนทรีออลและเกมที่เล่นมากกว่า 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_en": "what is the average losses when the wins is 3?",
    "question_th": "การสูญเสียโดยเฉลี่ยเมื่อชนะคือ 3 เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_24 (losses INTEGER, wins VARCHAR)"
  },
  {
    "answer": "SELECT MAX(goals_against) FROM table_name_54 WHERE wins < 1",
    "question_en": "what is the highest goals against when the wins is less than 1?",
    "question_th": "ประตูสูงสุดต่ออะไรเมื่อชนะน้อยกว่า 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_en": "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?",
    "question_th": "จำนวนประตูรวมคือเท่าไรเมื่อเสมอกันมากกว่า 0 ประตูที่เสียมากกว่า 35 และชนะน้อยกว่า 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_en": "what is the sum of the losses when the goals against is less than 34 and the games played is less than 8?",
    "question_th": "ผลรวมของการสูญเสียเมื่อประตูที่ทำได้น้อยกว่า 34 และเกมที่เล่นน้อยกว่า 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_en": "What is the name of the platform used for various computers and consoles?",
    "question_th": "ชื่อของแพลตฟอร์มที่ใช้สำหรับคอมพิวเตอร์และคอนโซลต่างๆ คืออะไร?",
    "context": "CREATE TABLE table_name_11 (platform VARCHAR, system VARCHAR)"
  },
  {
    "answer": "SELECT system FROM table_name_66 WHERE name = \"elkjs\"",
    "question_en": "Which system is named ELKJS?",
    "question_th": "ระบบใดชื่อ ELKJS",
    "context": "CREATE TABLE table_name_66 (system VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT system FROM table_name_56 WHERE name = \"elkjs\"",
    "question_en": "What is the system called that is named ELKJS?",
    "question_th": "ระบบที่เรียกว่า ELKJS คืออะไร?",
    "context": "CREATE TABLE table_name_56 (system VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT numbers FROM table_name_13 WHERE completed < 1904",
    "question_en": "What are the numbers for the item completed earlier than 1904?",
    "question_th": "หมายเลขของสินค้าที่สร้างเสร็จก่อนปี 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_en": "For the item with more than 10, and numbers of 53-58, 61-72, what is the lowest completed?",
    "question_th": "สำหรับรายการที่มีมากกว่า 10 และหมายเลข 53-58, 61-72 เสร็จสมบูรณ์ต่ำสุดคือเท่าใด",
    "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_en": "What is the quantity of the item with the numbers of 29-36?",
    "question_th": "สินค้าเบอร์ 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_en": "How many reg GP for rick vaive in round 1?",
    "question_th": "มี reg GP สำหรับ rick vaive กี่คนในรอบที่ 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_en": "How many reg GP for rick vaive in round 1?",
    "question_th": "มี reg GP สำหรับ rick vaive กี่คนในรอบที่ 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_en": "How many rounds exist for picks under 5?",
    "question_th": "มีกี่รอบสำหรับการเลือกที่ต่ำกว่า 5?",
    "context": "CREATE TABLE table_name_21 (rd__number VARCHAR, pick__number INTEGER)"
  },
  {
    "answer": "SELECT opponent FROM table_name_2 WHERE week > 15",
    "question_en": "Who did the Jets play in their post-week 15 game?",
    "question_th": "Jets เล่นใครในเกมหลังสัปดาห์ที่ 15?",
    "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_en": "Who did the Jets play in their pre-week 9 game at the Robert F. Kennedy memorial stadium?",
    "question_th": "ทีมเจ็ตส์เล่นใครในเกมก่อนสัปดาห์ที่ 9 ที่สนามกีฬาอนุสรณ์โรเบิร์ต เอฟ. เคนเนดี้",
    "context": "CREATE TABLE table_name_32 (opponent VARCHAR, week VARCHAR, game_site VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_40 WHERE record = \"31–19–9\"",
    "question_en": "What was the date of the game when the Canadiens had a record of 31–19–9?",
    "question_th": "วันที่ของเกมคือวันที่ชาวแคนาดามีสถิติ 31–19–9?",
    "context": "CREATE TABLE table_name_40 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_29 WHERE record = \"30–19–9\"",
    "question_en": "Who was the visiting team at the game when the Canadiens had a record of 30–19–9?",
    "question_th": "ใครคือทีมเยือนในเกมเมื่อชาวแคนาดามีสถิติ 30–19–9?",
    "context": "CREATE TABLE table_name_29 (visitor VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_96 WHERE player = \"bo jackson\"",
    "question_en": "What school did bo jackson attend?",
    "question_th": "โบแจ็คสันเรียนโรงเรียนอะไร",
    "context": "CREATE TABLE table_name_96 (school VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(pick) FROM table_name_50 WHERE position = \"guard\"",
    "question_en": "What was the highest guard picked?",
    "question_th": "ผู้พิทักษ์สูงสุดที่เลือกคืออะไร?",
    "context": "CREATE TABLE table_name_50 (pick INTEGER, position VARCHAR)"
  },
  {
    "answer": "SELECT MAX(pick) FROM table_name_60 WHERE school = \"auburn\"",
    "question_en": "What is the highest pick for a player from auburn?",
    "question_th": "ตัวเลือกสูงสุดสำหรับผู้เล่นจากออเบิร์นคืออะไร?",
    "context": "CREATE TABLE table_name_60 (pick INTEGER, school VARCHAR)"
  },
  {
    "answer": "SELECT rider FROM table_name_54 WHERE round_1_points = \"18.185\"",
    "question_en": "Tell me the rider with 18.185 points round 1",
    "question_th": "บอกเลยนักบิดด้วย 18.185 แต้ม รอบ 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_en": "Tell me the most total for horse of carlson",
    "question_th": "บอกเลยว่ารวมที่สุดสำหรับม้าแห่งคาร์ลสัน",
    "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_en": "Tell me the rider that had round 1 points of 7.465 and total more than 16.615",
    "question_th": "บอกนักบิดที่ได้รอบ 1 แต้ม 7.465 และรวมกว่า 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_en": "What were the assists on April 8 in game less than 78?",
    "question_th": "แอสซิสต์ในวันที่ 8 เมษายนในเกมที่น้อยกว่า 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_en": "What was the score of game 82?",
    "question_th": "คะแนนของเกม 82 คืออะไร?",
    "context": "CREATE TABLE table_name_91 (score VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_78 WHERE venue = \"kardinia park\"",
    "question_en": "When was there a game at Kardinia Park?",
    "question_th": "มีการแข่งขันที่คาร์ดิเนีย พาร์ค เมื่อไหร่?",
    "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_en": "who had the high points when chris bosh (13) had the high rebounds?",
    "question_th": "ใครมีแต้มสูงเมื่อคริส บอช (13) รีบาวด์สูง?",
    "context": "CREATE TABLE table_name_97 (high_points VARCHAR, high_rebounds VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_20 WHERE team = \"@ cleveland\"",
    "question_en": "what is the score when the team is @ cleveland?",
    "question_th": "เมื่อทีมอยู่@คลีฟแลนด์สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_20 (score VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_name_70 WHERE game = 6",
    "question_en": "who had the high rebounds when the game number was 6?",
    "question_th": "ใครมีการรีบาวด์สูงเมื่อหมายเลขเกมคือ 6?",
    "context": "CREATE TABLE table_name_70 (high_rebounds VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_67 WHERE visitor = \"ny islanders\"",
    "question_en": "What was the score when the NY Islanders was the visiting team?",
    "question_th": "เมื่อทีม NY Islanders เป็นทีมเยือนได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_67 (score VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_54 WHERE visitor = \"ottawa\"",
    "question_en": "What was the record when the visiting team was Ottawa?",
    "question_th": "เมื่อทีมเยือนคือออตตาวามีสถิติอะไรบ้าง?",
    "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_en": "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?",
    "question_th": "จำนวนที่นั่งทั้งหมดที่มีหมายเลขที่นั่งแบบแบ่งเขตมากกว่า 0 ของพรรค Liberal Democrat และจำนวนที่นั่งในภูมิภาคน้อยกว่า 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_en": "How many regional seats were there with the SNP party and where the number of total seats was bigger than 46?",
    "question_th": "พรรค SNP มีที่นั่งในภูมิภาคกี่ที่นั่ง และจำนวนที่นั่งทั้งหมดมากกว่า 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_en": "Which team was the visitor on January 10?",
    "question_th": "ทีมไหนเป็นแขกรับเชิญในวันที่ 10 มกราคม?",
    "context": "CREATE TABLE table_name_69 (visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT AVG(draw) FROM table_name_65 WHERE place > 5",
    "question_en": "What is the average Draw when the Place is larger than 5?",
    "question_th": "เสมอเฉลี่ยเมื่อสถานที่มีขนาดใหญ่กว่า 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_en": "What is the lowest Draw when the Artist is Stine Findsen and the Points are larger than 42?",
    "question_th": "การจับรางวัลต่ำสุดเมื่อศิลปินคือ Stine Findsen และคะแนนมากกว่า 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_en": "What is the Draw that has Points larger than 44 and a Place larger than 1?",
    "question_th": "การจับสลากที่มีคะแนนมากกว่า 44 และสถานที่มากกว่า 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_en": "What is the position of the player from round 2 from Sweden?",
    "question_th": "นักเตะรอบ 2 จากประเทศสวีเดนอยู่ตำแหน่งไหน?",
    "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_en": "What is the highest round of Ian Cole, who played position d from the United States?",
    "question_th": "เอียน โคล ผู้เล่นตำแหน่ง d จากสหรัฐอเมริกา รอบสูงสุดคือรอบไหน?",
    "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_en": "Who is the player from Denmark who plays position c?",
    "question_th": "นักเตะเดนมาร์กคนไหนเล่นตำแหน่ง 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_en": "Which college/junior/club team (league) did Brett Sonne play in?",
    "question_th": "Brett Sonne ลงเล่นให้กับทีมวิทยาลัย/จูเนียร์/สโมสร (ลีก) คนไหน?",
    "context": "CREATE TABLE table_name_45 (college_junior_club_team__league_ VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_53 WHERE to_par = \"–12\"",
    "question_en": "Which date has a To par of –12?",
    "question_th": "วันที่ใดมีพาร์ถึง –12?",
    "context": "CREATE TABLE table_name_53 (date VARCHAR, to_par VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_92 WHERE date = \"december 16, 2001\"",
    "question_en": "How many attended the game on December 16, 2001?",
    "question_th": "มีกี่คนที่เข้าร่วมเกมในวันที่ 16 ธันวาคม พ.ศ. 2544",
    "context": "CREATE TABLE table_name_92 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_64 WHERE date = \"bye\"",
    "question_en": "What week is a bye week?",
    "question_th": "สัปดาห์ไหนคือสัปดาห์ลาก่อน?",
    "context": "CREATE TABLE table_name_64 (week VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(entered_service) FROM table_name_89 WHERE locomotive = \"13\"",
    "question_en": "How many years entered service when there were 13 locomotives?",
    "question_th": "มีตู้รถไฟ 13 ตู้ เข้าประจำการกี่ปี?",
    "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_en": "Which locomotive had a 2-8-2t type, entered service year prior to 1915, and which was built after 1911?",
    "question_th": "หัวรถจักรใดมีแบบ 2-8-2t เข้าประจำการก่อนปี พ.ศ. 2458 และแบบใดสร้างหลังปี พ.ศ. 2454",
    "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_en": "What is the highest number of wins with a goal difference less than 4 at the Villarreal CF and more than 38 played?",
    "question_th": "จำนวนชัยชนะสูงสุดโดยมีผลต่างประตูน้อยกว่า 4 ในบียาร์เรอัล ซีเอฟ และมากกว่า 38 ครั้งคือเท่าใด?",
    "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_en": "What is the highest number played with a goal difference less than -27?",
    "question_th": "หมายเลขสูงสุดที่เล่นโดยมีผลเสียประตูน้อยกว่า -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_en": "What is the highest number of loss with a 7 position and more than 45 goals?",
    "question_th": "จำนวนการแพ้สูงสุดกับตำแหน่ง 7 และมากกว่า 45 ประตูคือเท่าไร?",
    "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_en": "What is the highest position with less than 17 losses, more than 57 goals, and a goal difference less than 4?",
    "question_th": "ตำแหน่งสูงสุดที่แพ้น้อยกว่า 17 ประตู มากกว่า 57 ประตู และผลต่างประตูน้อยกว่า 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_en": "What is the average goal difference with 51 goals scored against and less than 17 losses?",
    "question_th": "อะไรคือผลต่างประตูโดยเฉลี่ยโดยทำได้ 51 ประตูและแพ้น้อยกว่า 17 ครั้ง?",
    "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_en": "What is the lowest position with 32-6 points and less then 59 goals when there are more than 38 played?",
    "question_th": "ตำแหน่งต่ำสุดที่มี 32-6 แต้มและน้อยกว่า 59 ประตูเมื่อเล่นเกิน 38 ลูกคือตำแหน่งไหน?",
    "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_en": "What was the final score of the Australian Open?",
    "question_th": "คะแนนสุดท้ายของ 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_en": "What record was set by walter brennan before 1941?",
    "question_th": "วอลเตอร์ เบรนแนน เป็นผู้กำหนดสถิติอะไรก่อนปี 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_en": "What is the earliest year for ordinary people to appear in the notes?",
    "question_th": "คนธรรมดาจะปรากฎตัวในบันทึกได้เร็วที่สุดคือปีใด?",
    "context": "CREATE TABLE table_name_83 (year INTEGER, notes VARCHAR)"
  },
  {
    "answer": "SELECT engine_† FROM table_name_98 WHERE rounds = \"all\" AND tyre = \"m\" AND driver = \"david coulthard\"",
    "question_en": "what is the engine when the rounds ar all, the tyre is m and the driver is david coulthard?",
    "question_th": "เครื่องยนต์เป็นอย่างไรบ้างเมื่อออกรอบ ยางเป็นเมตร และคนขับคือเดวิด คูลฮาร์ด",
    "context": "CREATE TABLE table_name_98 (engine_† VARCHAR, driver VARCHAR, rounds VARCHAR, tyre VARCHAR)"
  },
  {
    "answer": "SELECT entrant FROM table_name_92 WHERE engine_† = \"bmw p82\"",
    "question_en": "who is the entrant when the engine is bmw p82?",
    "question_th": "ใครคือผู้เข้าแข่งขันเมื่อเครื่องยนต์เป็น bmw p82?",
    "context": "CREATE TABLE table_name_92 (entrant VARCHAR, engine_† VARCHAR)"
  },
  {
    "answer": "SELECT rounds FROM table_name_17 WHERE engine_† = \"mercedes fo110m\"",
    "question_en": "what is the rounds when the engine is mercedes fo110m?",
    "question_th": "เครื่องยนต์ Mercedes FO110M ออกรอบเท่าไหร่ครับ?",
    "context": "CREATE TABLE table_name_17 (rounds VARCHAR, engine_† VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_1 WHERE engine_† = \"mercedes fo110m\"",
    "question_en": "who is the driver when the engine is mercedes fo110m?",
    "question_th": "ใครคือคนขับเมื่อเครื่องยนต์เป็น Mercedes FO110M?",
    "context": "CREATE TABLE table_name_1 (driver VARCHAR, engine_† VARCHAR)"
  },
  {
    "answer": "SELECT tyre FROM table_name_47 WHERE engine_† = \"asiatech at02\" AND driver = \"alex yoong\"",
    "question_en": "what is the tyre when the engine is asiatech at02 and the driver is alex yoong?",
    "question_th": "ยางตอนเครื่องคือ asiatech at02 และคนขับคือ alex yoong ยางอะไรครับ?",
    "context": "CREATE TABLE table_name_47 (tyre VARCHAR, engine_† VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT chassis FROM table_name_14 WHERE tyre = \"b\" AND engine_† = \"ferrari 050 ferrari 051\" AND driver = \"rubens barrichello\"",
    "question_en": "what is the chassis when the tyre is b, the engine is ferrari 050 ferrari 051 and the driver is rubens barrichello?",
    "question_th": "แชสซีจะเป็นอย่างไรเมื่อยางเป็น b เครื่องยนต์คือ ferrari 050 ferrari 051 และคนขับคือ rubens barrichello",
    "context": "CREATE TABLE table_name_14 (chassis VARCHAR, driver VARCHAR, tyre VARCHAR, engine_† VARCHAR)"
  },
  {
    "answer": "SELECT SUM(rank) FROM table_name_24 WHERE time = \"1:41.40.55\"",
    "question_en": "What is the rank of the rider with time of 1:41.40.55?",
    "question_th": "นักบิดด้วยเวลา 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_en": "What is the time of the rider with a 398cc yamaha?",
    "question_th": "ผู้ขับขี่ด้วยยามาฮ่า 398cc เป็นเวลาเท่าไร?",
    "context": "CREATE TABLE table_name_85 (time VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_76 WHERE rank = 6",
    "question_en": "What is the time of the rider ranked 6?",
    "question_th": "ไรเดอร์อันดับ 6 กี่โมงคะ?",
    "context": "CREATE TABLE table_name_76 (time VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT rider FROM table_name_94 WHERE team = \"399cc kawasaki\"",
    "question_en": "Who is the rider with a 399cc Kawasaki?",
    "question_th": "ใครคือผู้ขับขี่กับคาวาซากิ 399cc?",
    "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_en": "Where did Tyler Haws, 2009 Utah Mr. Basketball, go to high school?",
    "question_th": "Tyler Haws ในปี 2009 Utah Mr. Basketball เรียนมัธยมปลายที่ไหน",
    "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_en": "How much have players earned with 14 wins ranked below 3?",
    "question_th": "ผู้เล่นได้รับชัยชนะ 14 ครั้งในอันดับที่ต่ำกว่า 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_en": "Who built the car that ran out of fuel before 28 laps?",
    "question_th": "ใครเป็นคนสร้างรถที่น้ำมันหมดก่อน 28 รอบ?",
    "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_en": "What is the high lap total for cards with a grid larger than 21, and a Time/Retired of +2 laps?",
    "question_th": "ผลรวมรอบสูงสำหรับการ์ดที่มีตารางมากกว่า 21 และเวลา/เลิกใช้ +2 รอบเป็นเท่าใด",
    "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_en": "Which SECR numbers have a class of b1?",
    "question_th": "หมายเลข SECR ใดมีคลาสเป็น b1",
    "context": "CREATE TABLE table_name_36 (secr_numbers VARCHAR, class VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_name_34 WHERE year_made = \"1880\"",
    "question_en": "Which class was made in 1880?",
    "question_th": "ชั้นเรียนใดถูกสร้างขึ้นในปี 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_en": "What is the date of the game when attendance is more than 20,682?",
    "question_th": "เกมวันที่เท่าไหร่ที่มีผู้เข้าร่วมมากกว่า 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_en": "Which home team played the Away team from Richmond?",
    "question_th": "เจ้าบ้านทีมไหนเล่นทีมเยือนจากริชมอนด์?",
    "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_en": "What was the home teams score while playing the away team of south melbourne?",
    "question_th": "ทีมเหย้าได้คะแนนเท่าไหร่ขณะเล่นทีมเยือนเซาธ์ เมลเบิร์น?",
    "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_en": "What was the score of the away team while playing at the arden street oval?",
    "question_th": "ทีมเยือนเล่นที่อาร์เดน สตรีท โอวัลได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_53 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT rounds FROM table_name_50 WHERE tyre = \"b\" AND engine_† = \"ferrari 053\"",
    "question_en": "What are the rounds for the B tyres and Ferrari 053 engine +?",
    "question_th": "ยาง B และเครื่องยนต์ Ferrari 053 + มีรอบไหนบ้าง?",
    "context": "CREATE TABLE table_name_50 (rounds VARCHAR, tyre VARCHAR, engine_† VARCHAR)"
  },
  {
    "answer": "SELECT chassis FROM table_name_30 WHERE driver = \"ricardo zonta\"",
    "question_en": "What kind of chassis does Ricardo Zonta have?",
    "question_th": "Ricardo Zonta มีแชสซีแบบใด?",
    "context": "CREATE TABLE table_name_30 (chassis VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT free_practice_driver_s_ FROM table_name_8 WHERE engine_† = \"ford rs2\"",
    "question_en": "What kind of free practice is there with a Ford RS2 engine +?",
    "question_th": "มีการฝึกปฏิบัติฟรีอะไรบ้างกับเครื่องยนต์ Ford RS2 +?",
    "context": "CREATE TABLE table_name_8 (free_practice_driver_s_ VARCHAR, engine_† VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(matches) FROM table_name_53 WHERE lost < 5 AND season = \"2008/2009\" AND draw > 9",
    "question_en": "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?",
    "question_th": "จำนวนแมตช์ทั้งหมดที่แพ้น้อยกว่า 5 ในฤดูกาล 2008/2009 และเสมอมากกว่า 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_en": "What competition has a score greater than 30, a draw less than 5, and a loss larger than 10?",
    "question_th": "การแข่งขันใดที่มีคะแนนมากกว่า 30 เสมอน้อยกว่า 5 และแพ้มากกว่า 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_en": "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?",
    "question_th": "ผลรวมของการแพ้ที่คะแนนการแข่งขันมากกว่า 26 คะแนน คะแนน 62 คะแนน และเสมอมากกว่า 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_en": "What is the record for the game on January 19?",
    "question_th": "สถิติเกมวันที่ 19 มกราคม เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_92 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_46 WHERE date = \"january 12\"",
    "question_en": "What is the score of the game on January 12?",
    "question_th": "สกอร์เกมวันที่ 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_en": "Who was the home team when the vistor team was the Montreal Canadiens on February 12?",
    "question_th": "ทีมเหย้าคือใครเมื่อทีมเยือนคือมอนทรีออล คานาเดียนส์ เมื่อวันที่ 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_en": "Tell me the city of license with frequency of Mhz of 90.3 fm",
    "question_th": "บอกเมืองที่ได้รับอนุญาตด้วยความถี่ Mhz 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_en": "Name the call sign for ERP W of 4",
    "question_th": "ตั้งชื่อสัญญาณเรียกขานสำหรับ ERP W จาก 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_en": "Name the frequence MHz for ERP W of 55",
    "question_th": "ตั้งชื่อความถี่ MHz สำหรับ ERP W ที่ 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_en": "Name the FCC info for call sign of w279at",
    "question_th": "ตั้งชื่อข้อมูล FCC สำหรับสัญญาณเรียกขานของ 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_en": "Name the call sign for ERP W of 27",
    "question_th": "ตั้งชื่อสัญญาณเรียกขานสำหรับ ERP W ของ 27",
    "context": "CREATE TABLE table_name_65 (call_sign VARCHAR, erp_w VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_60 WHERE score = \"3 – 1\"",
    "question_en": "What was the date of the game that had a score of 3 – 1?",
    "question_th": "แมตช์ที่สกอร์ 3 – 1 คือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_60 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_75 WHERE visitor = \"boston bruins\"",
    "question_en": "What was the score of the game when the Boston Bruins were the visiting team?",
    "question_th": "ในเกมที่บอสตัน บรูอินส์เป็นทีมเยือนได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_75 (score VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_37 WHERE record = \"16–14–6\"",
    "question_en": "What was the score with a 16–14–6 record?",
    "question_th": "คะแนนด้วยสถิติ 16–14–6 คืออะไร?",
    "context": "CREATE TABLE table_name_37 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT secr_numbers FROM table_name_31 WHERE year_made = \"1861\"",
    "question_en": "What was the SECR number of the item made in 1861?",
    "question_th": "หมายเลข SECR ของรายการที่สร้างขึ้นในปี 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_en": "Name the venue with a home team of geelong",
    "question_th": "ตั้งชื่อสถานที่ด้วยทีมเจ้าบ้านจีลอง",
    "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_en": "When the Venue was Punt Road Oval, who was the Home Team?",
    "question_th": "เมื่อสนามคือ พันท์ โร้ด โอวัล เจ้าบ้านคือใคร?",
    "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_en": "When Melbourne was the Away team, what was their score?",
    "question_th": "เมื่อเมลเบิร์นเป็นทีมเยือนสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_75 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_99 WHERE chassis = \"d6\"",
    "question_en": "Who is driver of the d6 chassis?",
    "question_th": "ใครคือคนขับรถของแชสซี d6?",
    "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_en": "Who is the constructor for driver Niki Lauda and a chassis of mp4/1c?",
    "question_th": "ใครคือผู้สร้างไดรเวอร์ Niki Lauda และแชสซีของ 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_en": "Who is the Constructor for driver Piercarlo Ghinzani and a Ford cosworth dfv 3.0 v8 engine?",
    "question_th": "ใครคือผู้สร้างสำหรับคนขับ Piercarlo Ghinzani และเครื่องยนต์ Ford cosworth dfv 3.0 v8",
    "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_en": "When Jean Alesi had laps less than 24, what was his highest grid?",
    "question_th": "เมื่อ Jean Alesi มีรอบน้อยกว่า 24 รอบสูงสุดของเขาคือเท่าใด",
    "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_en": "How many laps did Ricardo Zonta drive with a grid less than 14?",
    "question_th": "Ricardo Zonta ขับไปกี่รอบโดยมีกริดน้อยกว่า 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_en": "What was Alexander Wurz's highest grid with laps of less than 25?",
    "question_th": "ตารางที่สูงที่สุดของ Alexander Wurz โดยมีรอบน้อยกว่า 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_en": "How many years have a Title of Magia Nuda?",
    "question_th": "ฉายา 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_en": "What is the country that has a music writer of Angelo Francesco Lavagnino, written in 1969?",
    "question_th": "ประเทศใดที่มีนักเขียนเพลงของ Angelo Francesco Lavagnino เขียนในปี 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_en": "Which music has the notes of AKA Africa Uncensored?",
    "question_th": "เพลงใดที่มีโน้ตของ 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_en": "What is Pegasus' right ascension with a 7318a NGC?",
    "question_th": "การขึ้นสู่สวรรค์ที่ถูกต้องของเพกาซัสด้วย 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_en": "What is the declination of the spiral galaxy Pegasus with 7337 NGC",
    "question_th": "ความเสื่อมของดาราจักรกังหันเพกาซัสที่มี 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_en": "What is the right ascension of Pegasus with a 7343 NGC?",
    "question_th": "การขึ้นสู่สวรรค์ที่ถูกต้องของเพกาซัสด้วย 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_en": "What was the score on October 13?",
    "question_th": "คะแนนวันที่ 13 ต.ค. เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_94 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT decision FROM table_name_56 WHERE visitor = \"carolina\"",
    "question_en": "Which team won when the visitor was Carolina?",
    "question_th": "ทีมใดชนะเมื่อผู้มาเยือนคือแคโรไลนา?",
    "context": "CREATE TABLE table_name_56 (decision VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_93 WHERE date = \"october 31\"",
    "question_en": "What was the score on October 31?",
    "question_th": "คะแนนวันที่ 31 ต.ค. เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_93 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_26 WHERE date = \"october 13\"",
    "question_en": "Which team was home on October 13?",
    "question_th": "ทีมไหนกลับบ้านวันที่ 13 ตุลาคม?",
    "context": "CREATE TABLE table_name_26 (home VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT home_city FROM table_name_7 WHERE stadium = \"angelo massimino\"",
    "question_en": "What is the home city for angelo massimino stadium?",
    "question_th": "เมืองบ้านเกิดของสนามกีฬาอันเจโล มัสซิมิโนคืออะไร?",
    "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_en": "What is the H/A for 20 february 2007?",
    "question_th": "H/A สำหรับวันที่ 20 กุมภาพันธ์ 2550 เป็นเท่าใด",
    "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_en": "How many people attended on 2 may 2007?",
    "question_th": "วันที่ 2 พฤษภาคม 2550 มีผู้เข้าร่วมกี่คน",
    "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_en": "Which date has roma as opponent and a H/A of A?",
    "question_th": "วันที่ใดที่มี roma เป็นคู่ต่อสู้และมี H/A เท่ากับ 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_en": "Which round happened on 10 april 2007?",
    "question_th": "รอบไหนเกิดขึ้นวันที่ 10 เมษายน 2550?",
    "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_en": "Who was home at Princes Park?",
    "question_th": "ใครอยู่บ้านที่ 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_en": "What was the away team's score at Princes Park?",
    "question_th": "ทีมเยือนที่ปริ้นซ์ ปาร์คได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_38 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_56 WHERE venue = \"lake oval\"",
    "question_en": "When was the game played at Lake Oval?",
    "question_th": "เกมนี้เล่นที่ 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_en": "What was the away team when the game was at Princes Park?",
    "question_th": "ทีมเยือนเป็นทีมไหนเมื่อเกมที่พรินซ์ พาร์ค?",
    "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_en": "What is the smallest place number when the total is 16 and average is less than 16?",
    "question_th": "หมายเลขที่น้อยที่สุดเมื่อผลรวมคือ 16 และค่าเฉลี่ยน้อยกว่า 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_en": "What is the average when the rank by average is more than 12?",
    "question_th": "ค่าเฉลี่ยเมื่ออันดับโดยเฉลี่ยมากกว่า 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_en": "What is the average place for a couple with the rank by average of 9 and total smaller than 83?",
    "question_th": "สถานที่เฉลี่ยสำหรับคู่รักที่มีอันดับเฉลี่ย 9 และคะแนนรวมน้อยกว่า 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_en": "What is the rank by average where the total was larger than 245 and the average was 27.1 with fewer than 15 dances?",
    "question_th": "อันดับโดยเฉลี่ยคือเท่าใด โดยที่ยอดรวมมากกว่า 245 และค่าเฉลี่ยคือ 27.1 โดยมีการเต้นรำน้อยกว่า 15 ครั้ง",
    "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_en": "Which stadium was used for the North East Stars club?",
    "question_th": "สนามใดที่ใช้สำหรับสโมสร North East Stars?",
    "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_en": "What was the total number of Top Division Titles where the year founded was prior to 1975 and the location was in Chaguaramas?",
    "question_th": "จำนวนตำแหน่งแชมป์ดิวิชั่นสูงสุดที่ก่อตั้งก่อนปี 1975 และตำแหน่งอยู่ที่ 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_en": "What was the higest attendance on November 9, 1958?",
    "question_th": "ผู้เข้าร่วมสูงสุดในวันที่ 9 พฤศจิกายน พ.ศ. 2501 คืออะไร?",
    "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_en": "How many games had 22 goals before 1935?",
    "question_th": "กี่เกมที่มี 22 ประตูก่อนปี 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_en": "What is the average games a player born on 17 March 1915 and debut before 1935 had?",
    "question_th": "ค่าเฉลี่ยเกมที่ผู้เล่นที่เกิดในวันที่ 17 มีนาคม พ.ศ. 2458 และเปิดตัวก่อนปี พ.ศ. 2478 เป็นเท่าใด?",
    "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_en": "What is the lowest number of games Jack Gaudion, who debut in 1936, played?",
    "question_th": "Jack Gaudion ซึ่งเปิดตัวในปี 1936 เล่นเกมน้อยที่สุดคือจำนวนเท่าใด",
    "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_en": "What is the years at the club of the player with 2 goals and was born on 23 July 1910?",
    "question_th": "ปีที่อยู่กับสโมสรของผู้เล่นที่มี 2 ประตู และเกิดเมื่อวันที่ 23 กรกฎาคม พ.ศ. 2453?",
    "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_en": "During the play-off quarter-final which team scored position was the team that scored 56 points?",
    "question_th": "ในระหว่างรอบเพลย์ออฟรอบก่อนรองชนะเลิศ ทีมใดที่ทำคะแนนได้ตำแหน่งคือทีมที่ทำคะแนนได้ 56 คะแนน?",
    "context": "CREATE TABLE table_name_91 (pos VARCHAR, play_offs VARCHAR, pts VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_84 WHERE home = \"philadelphia\"",
    "question_en": "What is the score when Philadelphia is at home?",
    "question_th": "เมื่อฟิลาเดลเฟียอยู่ที่บ้านสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_84 (score VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_55 WHERE date = \"december 4\"",
    "question_en": "What is the record on December 4?",
    "question_th": "บันทึกเมื่อวันที่ 4 ธันวาคมคืออะไร?",
    "context": "CREATE TABLE table_name_55 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT decision FROM table_name_84 WHERE record = \"13–10–4\"",
    "question_en": "what is the decision when the record is 13–10–4?",
    "question_th": "การตัดสินใจเมื่อบันทึกคือ 13–10–4 คืออะไร?",
    "context": "CREATE TABLE table_name_84 (decision VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT MIN(attendance) FROM table_name_71 WHERE date = \"august 26\"",
    "question_en": "What is the lowest attendance total on August 26?",
    "question_th": "จำนวนผู้เข้าร่วมต่ำสุดในวันที่ 26 สิงหาคมคือเท่าใด",
    "context": "CREATE TABLE table_name_71 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT SUM(year) FROM table_name_1 WHERE date = \"5 february\"",
    "question_en": "What is the sum of the year for 5 february?",
    "question_th": "ผลรวมของปีในวันที่ 5 กุมภาพันธ์เป็นเท่าใด",
    "context": "CREATE TABLE table_name_1 (year INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_82 WHERE year > 2012",
    "question_en": "What was the location for a year later than 2012?",
    "question_th": "หนึ่งปีหลังจากปี 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_en": "who is the constructor when the laps is more than 72 and the driver is eddie irvine?",
    "question_th": "ใครคือผู้สร้างเมื่อรอบมากกว่า 72 และคนขับคือเอ็ดดี้ เออร์ไวน์",
    "context": "CREATE TABLE table_name_33 (constructor VARCHAR, laps VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_16 WHERE visitor = \"rockets\"",
    "question_en": "What was the record of the game where the Rockets were the visiting team?",
    "question_th": "สถิติของเกมที่ร็อคเก็ตส์เป็นทีมเยือนเป็นอย่างไร?",
    "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_en": "What's the voltage for the pentium dual-core e2140?",
    "question_th": "แรงดันไฟฟ้าของ 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_en": "What part number(s) has a frequency of 2.4 ghz?",
    "question_th": "หมายเลขชิ้นส่วนใดมีความถี่ 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_en": "What's the release price (USD) for part number hh80557pg0491m?",
    "question_th": "ราคาวางจำหน่าย (USD) สำหรับหมายเลขชิ้นส่วน 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_en": "What L2 cache had a release date of august 26, 2007?",
    "question_th": "แคช L2 ใดที่มีวันวางจำหน่ายในวันที่ 26 สิงหาคม 2550",
    "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_en": "Where did the team in which Tom Pryce was in Pole Position race?",
    "question_th": "ทีมที่ Tom Pryce อยู่ในการแข่งขัน Pole Position อยู่ที่ไหน?",
    "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_en": "Who ran the fastest lap in the team that competed in Zolder, in which Ferrari was the Constructor?",
    "question_th": "ใครวิ่งรอบได้เร็วที่สุดในทีมที่เข้าแข่งขันใน Zolder โดยมี Ferrari เป็นตัวสร้าง",
    "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_en": "What tournament was on Jan 29, 2012?",
    "question_th": "การแข่งขันรายการใดในวันที่ 29 มกราคม 2555?",
    "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_en": "What is the to par of the match with a winning score 69-67-72-64=272?",
    "question_th": "แต้มพาร์ของแมตช์ที่ชนะ 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_en": "What is the episode number of the episode that originally aired on January 26, 2009 and had a production number smaller than 38?",
    "question_th": "หมายเลขตอนของตอนที่ออกอากาศครั้งแรกเมื่อวันที่ 26 มกราคม พ.ศ. 2552 และมีจำนวนการผลิตน้อยกว่า 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_en": "Who acquired tom norton?",
    "question_th": "ใครซื้อทอม นอร์ตันมา?",
    "context": "CREATE TABLE table_name_1 (acquired VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_4 WHERE home_team = \"geelong\"",
    "question_en": "Where did Geelong play as the home team?",
    "question_th": "จีลองเล่นเป็นเจ้าบ้านที่ไหน?",
    "context": "CREATE TABLE table_name_4 (venue VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_25 WHERE home_team = \"north melbourne\"",
    "question_en": "Where did North Melbourne play as the home team?",
    "question_th": "นอร์ธ เมลเบิร์น เล่นเป็นเจ้าบ้านที่ไหน?",
    "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_en": "What did the away team score when playing Footscray?",
    "question_th": "ทีมเยือนได้คะแนนเท่าไหร่เมื่อเล่น 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_en": "What's the record for October 8, 2000 before week 13?",
    "question_th": "บันทึกของวันที่ 8 ตุลาคม 2000 ก่อนสัปดาห์ที่ 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_en": "What game site has a result of bye?",
    "question_th": "เว็บไซต์เกมใดมีผลลาก่อน?",
    "context": "CREATE TABLE table_name_52 (game_site VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_80 WHERE week > 16",
    "question_en": "What's the record after week 16?",
    "question_th": "บันทึกหลังจากสัปดาห์ที่ 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_en": "What's the result at psinet stadium when the cincinnati bengals are the opponent?",
    "question_th": "ผลที่ออกมาที่สนาม psinet จะเป็นอย่างไรเมื่อเบงกอลซินซินนาติเป็นคู่ต่อสู้?",
    "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_en": "What's the record after week 12 with a game site of bye?",
    "question_th": "บันทึกหลังจากสัปดาห์ที่ 12 กับเว็บไซต์เกมลาก่อนเป็นอย่างไรบ้าง?",
    "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_en": "What day has a callback Venue of total tickets to hollywood? Question",
    "question_th": "วันใดมีการโทรกลับ สถานที่จำหน่ายบัตรชมฮอลลีวูดทั้งหมด คำถาม",
    "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_en": "How many golden tickets for the georgia international convention center?",
    "question_th": "ตั๋วทองสำหรับศูนย์การประชุมนานาชาติจอร์เจียมีกี่ใบ?",
    "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_en": "What class is associated with a W.A. of 0-8-0?",
    "question_th": "คลาสใดที่เกี่ยวข้องกับ WA 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_en": "Who was the Opponent at the Game Site Indianapolis Hoosierdome?",
    "question_th": "ใครคือฝ่ายตรงข้ามที่ไซต์เกม 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_en": "What is the St Kilda Away team score?",
    "question_th": "คะแนนทีมเยือน เซนต์คิลดาเท่าไหร่?",
    "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_en": "Tell me the highest snatch for 68.63 bodyweight and total kg less than 290",
    "question_th": "บอกพิกัดน้ำหนักตัวสูงสุด 68.63 และน้ำหนักรวมไม่เกิน 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_en": "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",
    "question_th": "บอกจำนวนฉกคลีนแอนด์กระตุกเกิน 132.5 รวม 315 กก. น้ำหนักตัว 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_en": "Name the average clean and jerk for snatch of 140 and total kg less than 315",
    "question_th": "บอกชื่อคลีนแอนด์เจิร์กโดยเฉลี่ยสำหรับฉก 140 และรวมกก. น้อยกว่า 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_en": "Who constructed the car that Derek Warwick raced in with a TG181 chassis?",
    "question_th": "ใครเป็นคนสร้างรถที่ Derek Warwick แข่งด้วยแชสซี TG181",
    "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_en": "Which player has a Club/province of direito, less than 21 caps, and a Position of lock?",
    "question_th": "ผู้เล่นคนไหนมีสโมสร/จังหวัดดิเรโต้ น้อยกว่า 21 แคป และตำแหน่งล็อค?",
    "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_en": "How many caps have a Position of prop, and a Player of rui cordeiro?",
    "question_th": "มีกี่แคปที่มีตำแหน่งเสาและมีผู้เล่น 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_en": "Which Club/province has a Player of david penalva?",
    "question_th": "สโมสร/จังหวัดใดมีผู้เล่นของ 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_en": "How many caps have a Date of Birth (Age) of 15 july 1981?",
    "question_th": "มีกี่แคปที่มีวันเกิด (อายุ) วันที่ 15 กรกฎาคม 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_en": "Which player has a Position of fly-half, and a Caps of 3?",
    "question_th": "ผู้เล่นคนไหนที่มีตำแหน่งฟลายฮาล์ฟ และแคป 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_en": "What constituency does the Conservative Darren Millar belong to?",
    "question_th": "ดาร์เรน มิลลาร์ พรรคอนุรักษ์นิยมอยู่ในเขตเลือกตั้งใด",
    "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_en": "In what constituency was the result labour hold and Liberal democrat Elizabeth Newton won?",
    "question_th": "ผลการกักขังแรงงานเกิดขึ้นในเขตเลือกตั้งใด และเอลิซาเบธ นิวตัน พรรคเสรีประชาธิปไตยได้รับชัยชนะ?",
    "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 = –10(66 - 71 - 62 - 71 = 270)",
    "question_en": "Who has the Winning score of –10 (66-71-62-71=270) ?",
    "question_th": "ใครมีคะแนนชนะ –10 (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_en": "Who is Runner(s)-up that has a Date of may 24, 1999?",
    "question_th": "รองชนะเลิศที่มีวันที่ 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_en": "Which Tournament has a Margin of victory of 7 strokes",
    "question_th": "ทัวร์นาเมนต์ใดมีมาร์จิ้นแห่งชัยชนะ 7 สโตรค",
    "context": "CREATE TABLE table_name_38 (tournament VARCHAR, margin_of_victory VARCHAR)"
  },
  {
    "answer": "SELECT decision FROM table_name_71 WHERE visitor = \"chicago\"",
    "question_en": "What was the decision of the Kings game when Chicago was the visiting team?",
    "question_th": "การตัดสินใจของเกมคิงส์เมื่อชิคาโกเป็นทีมเยือนคืออะไร?",
    "context": "CREATE TABLE table_name_71 (decision VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT SUM(round) FROM table_name_38 WHERE position = \"nose tackle\"",
    "question_en": "What round was the nose tackle drafted?",
    "question_th": "แท็คจมูกเขียนรอบไหนคะ?",
    "context": "CREATE TABLE table_name_38 (round INTEGER, position VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_36 WHERE home = \"buffalo\"",
    "question_en": "What is the Record when Buffalo is at Home?",
    "question_th": "บันทึกเมื่อบัฟฟาโลอยู่ที่บ้านคืออะไร?",
    "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_en": "What were the winnings for the Chevrolet with a number larger than 29 and scored 102 points?",
    "question_th": "ชัยชนะของเชฟโรเลตที่มีจำนวนมากกว่า 29 และคะแนน 102 คืออะไร?",
    "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_en": "What is the make of car 31?",
    "question_th": "รถ 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_en": "What is the car number that has less than 369 laps for a Dodge with more than 49 points?",
    "question_th": "รถหมายเลขใดที่วิ่งได้น้อยกว่า 369 รอบของ Dodge ที่มีคะแนนมากกว่า 49 คะแนน?",
    "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_en": "Tell me the total number of ties for name of totals and lost more than 30",
    "question_th": "บอกจำนวนเสมอกันสำหรับชื่อผลรวมและแพ้มากกว่า 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_en": "I want the total number of ties for win % more than 0 and tenure of 2001-2011 with lost more than 16",
    "question_th": "ฉันต้องการจำนวนรวมของการชนะ % มากกว่า 0 และการดำรงตำแหน่งของปี 2544-2554 โดยแพ้มากกว่า 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_en": "What's the record when the attendance was 28,531?",
    "question_th": "มีสถิติผู้เข้าร่วม 28,531 คนเป็นประวัติการณ์?",
    "context": "CREATE TABLE table_name_62 (record VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_25 WHERE attendance = \"41,573\"",
    "question_en": "What's the record when the attendance was 41,573?",
    "question_th": "มีสถิติผู้เข้าร่วม 41,573 คนเป็นประวัติการณ์?",
    "context": "CREATE TABLE table_name_25 (record VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_88 WHERE date = \"june 13\"",
    "question_en": "Who's the opponent for June 13?",
    "question_th": "คู่ต่อสู้ในวันที่ 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_en": "Where does center Joakim Andersson come from?",
    "question_th": "เซ็นเตอร์ โจอาคิม แอนเดอร์สสัน มาจากไหน?",
    "context": "CREATE TABLE table_name_67 (nationality VARCHAR, position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_6 WHERE player = \"zack torquato\"",
    "question_en": "What position does Zack Torquato play?",
    "question_th": "แซ็ค ทอร์ควาโต เล่นตำแหน่งอะไร?",
    "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_en": "When a lane of 4 has a QUART greater than 44.62, what is the lowest HEAT?",
    "question_th": "เมื่อเลน 4 มี QUART มากกว่า 44.62 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_en": "When did the game at Arden Street Oval occur?",
    "question_th": "เกมที่ Arden Street Oval เกิดขึ้นเมื่อใด?",
    "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_en": "What did the away team score when playing North Melbourne?",
    "question_th": "ทีมเยือนได้คะแนนเท่าไหร่เมื่อพบกับ นอร์ท เมลเบิร์น?",
    "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_en": "How many people attended the game at VFL Park?",
    "question_th": "มีผู้เข้าร่วมการแข่งขันที่ 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_en": "When the home team was fitzroy, what did the away team score?",
    "question_th": "เมื่อเจ้าบ้านเป็นฟิตซ์รอยทีมเยือนได้คะแนนเท่าไหร่?",
    "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_en": "Name the fastest lap for the brazilian grand prix",
    "question_th": "บอกชื่อรอบที่เร็วที่สุดสำหรับบราซิลเลี่ยน กรังด์ปรีซ์",
    "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_en": "Name the pole position at the japanese grand prix when the fastest lap is damon hill",
    "question_th": "ตั้งชื่อตำแหน่งโพลโพซิชั่นในรายการ Japanese Grand Prix เมื่อรอบที่เร็วที่สุดคือ 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_en": "Name the lowest round for when pole position and winning driver is michael schumacher",
    "question_th": "ตั้งชื่อรอบต่ำสุดเมื่อตำแหน่งโพลโพซิชั่นและนักแข่งที่ชนะคือมิคาเอล ชูมัคเกอร์",
    "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_en": "How many reg GP for nathan barrett in a round less than 8?",
    "question_th": "มี reg GP สำหรับนาธาน บาร์เร็ตต์กี่คนในรอบที่น้อยกว่า 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_en": "What organization ranks 68?",
    "question_th": "องค์กรใดอยู่ในอันดับที่ 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_en": "What year is the happy planet index?",
    "question_th": "ดัชนีดาวเคราะห์แห่งความสุขคือปีใด",
    "context": "CREATE TABLE table_name_79 (year INTEGER, index VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_79 WHERE organization = \"legatum institute\"",
    "question_en": "What year for the legatum institute?",
    "question_th": "สถาบัน Legatum ปีไหนคะ?",
    "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_en": "What 1st leg has Alense Vivaldi (Trentino) as Agg.?",
    "question_th": "เลกแรกมี Alense Vivaldi (Trentino) รับบท 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_en": "What is the grid for the Minardi Team USA with laps smaller than 90?",
    "question_th": "ตารางสำหรับ Minardi Team USA ที่มีรอบน้อยกว่า 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_en": "What is Fitzroy's Home team score?",
    "question_th": "คะแนนทีมฟิตซ์รอยส์ โฮมเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_60 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT SUM(crowd) FROM table_name_90 WHERE home_team = \"fitzroy\"",
    "question_en": "What is Fitzroy's Home team Crowd?",
    "question_th": "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_en": "What is the average gold total for nations ranked 6 with 1 total medal and 1 bronze medal?",
    "question_th": "ค่าเฉลี่ยทองคำทั้งหมดของประเทศอันดับที่ 6 โดยมีทั้งหมด 1 เหรียญ และ 1 เหรียญทองแดง เป็นเท่าใด",
    "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_en": "Who drove the grid 10 car?",
    "question_th": "ใครขับรถกริด 10?",
    "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_en": "Who drive the car that went under 60 laps and spun off?",
    "question_th": "ใครขับรถที่วิ่งได้ไม่ถึง 60 รอบแล้วหมุนตัวออกไป?",
    "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_en": "What number of Yards has 32 as an In 20?",
    "question_th": "32 หลามีกี่หลาใน 20?",
    "context": "CREATE TABLE table_name_90 (yards VARCHAR, in_20 VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_76 WHERE date = \"june 12\"",
    "question_en": "What was the score on June 12?",
    "question_th": "คะแนนวันที่ 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_en": "What is the top attendance for weeks past 2 on october 29, 1961?",
    "question_th": "ผู้เข้าร่วมสูงสุดในสัปดาห์ที่ผ่านมา 2 เมื่อวันที่ 29 ตุลาคม 2504 คืออะไร?",
    "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_en": "What is the low week from october 15, 1961?",
    "question_th": "สัปดาห์ต่ำสุดตั้งแต่วันที่ 15 ตุลาคม 2504 คือเท่าใด",
    "context": "CREATE TABLE table_name_82 (week INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT MIN(attendance) FROM table_name_98 WHERE opponent = \"buffalo bills\"",
    "question_en": "What is the low attendance rate against buffalo bills?",
    "question_th": "อัตราการเข้าร่วมต่ำเมื่อเทียบกับบิลควายคือเท่าไร?",
    "context": "CREATE TABLE table_name_98 (attendance INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_37 WHERE date = \"november 28\"",
    "question_en": "What team played on November 28?",
    "question_th": "ทีมใดเล่นในวันที่ 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_en": "What driver has a Time/Retired of 2:16:38.0?",
    "question_th": "นักแข่งคนไหนมีเวลา/เกษียณ 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_en": "What time/retired for grid 18?",
    "question_th": "กี่โมง/เกษียณสำหรับกริด 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_en": "What was the Venue of the North Melbourne Away Team?",
    "question_th": "สนามของทีมเยือนเมลเบิร์นเหนือคือที่ไหน?",
    "context": "CREATE TABLE table_name_33 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_7 WHERE delta = \"0:40\"",
    "question_en": "On what Date is Delta 0:40?",
    "question_th": "เดลต้า 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_en": "Who is the Winner on June 2, 2007?",
    "question_th": "ใครคือผู้ชนะในวันที่ 2 มิถุนายน 2550",
    "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_en": "What did the home team of essendon score?",
    "question_th": "เจ้าบ้านเอสเซนดอนทำประตูอะไรได้บ้าง?",
    "context": "CREATE TABLE table_name_78 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team AS score FROM table_name_56 WHERE venue = \"lake oval\"",
    "question_en": "When the venue was lake oval what did the home team score?",
    "question_th": "เมื่อสนามเป็นเลกรีเจ้าบ้านได้คะแนนเท่าไหร่?",
    "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_en": "What did the away team score when they were playing collingwood?",
    "question_th": "ทีมเยือนทำคะแนนได้เท่าไหร่ตอนเล่นคอลลิงวูด?",
    "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_en": "What is the position of the player from Fort Lauderdale, Florida?",
    "question_th": "ตำแหน่งผู้เล่นจากเมืองฟอร์ตลอเดอร์เดล รัฐฟลอริดา คืออะไร?",
    "context": "CREATE TABLE table_name_3 (position VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_83 WHERE hometown = \"beaumont, texas\"",
    "question_en": "What is the position of the player from Beaumont, Texas?",
    "question_th": "ตำแหน่งผู้เล่นจากเมืองโบมอนต์ รัฐเท็กซัส เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_83 (position VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_97 WHERE player = \"max redfield\"",
    "question_en": "What position did Max Redfield play?",
    "question_th": "แม็กซ์ เรดฟิลด์ เล่นตำแหน่งอะไร?",
    "context": "CREATE TABLE table_name_97 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_58 WHERE school = \"liberty county high school\"",
    "question_en": "What college did the player from Liberty County High School attend?",
    "question_th": "ผู้เล่นจาก Liberty County High School เข้าเรียนที่วิทยาลัยใด",
    "context": "CREATE TABLE table_name_58 (college VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_96 WHERE date = \"march 13\"",
    "question_en": "On the Date of March 13, who was the Home team?",
    "question_th": "เมื่อวันที่ 13 มี.ค. ทีมเหย้าคือใคร?",
    "context": "CREATE TABLE table_name_96 (home VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT decision FROM table_name_28 WHERE home = \"colorado\"",
    "question_en": "What is the Decision listed when the Home was Colorado?",
    "question_th": "การตัดสินใจระบุไว้เมื่อบ้านอยู่ในโคโลราโดคืออะไร?",
    "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_en": "What is the date that Ayrton Senna was the drive in Monza?",
    "question_th": "วันที่เท่าไหร่ที่ Ayrton Senna ขับรถไปที่ 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_en": "What was the constructor when riccardo patrese was the winning driver?",
    "question_th": "คอนสตรัคเตอร์คืออะไรเมื่อ ริคคาร์โด้ ปาเทรเซ เป็นตัวขับเคลื่อนที่ชนะ",
    "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_en": "What is the Pole Position for the German Grand Prix",
    "question_th": "ตำแหน่งโพลสำหรับ 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_en": "What is the date of the game between Melbourne and Footscray?",
    "question_th": "แมตช์ระหว่าง เมลเบิร์น กับ ฟุตสเครย์ ตรงกับวันที่เท่าไร?",
    "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_en": "In the match where footscray was the home team, how much did they score?",
    "question_th": "แมตช์ที่ฟุตสเครย์เป็นเจ้าบ้านได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_55 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_51 WHERE home_team = \"melbourne\"",
    "question_en": "During melbourne's home game, who was the away team?",
    "question_th": "ระหว่างเกมเหย้าของเมลเบิร์นทีมเยือนคือใคร?",
    "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_en": "In the match where north melbourne was the away team, how much did the home team score?",
    "question_th": "แมตช์ที่ เมลเบิร์นเหนือ เป็นทีมเยือน เจ้าบ้านทำสกอร์ได้เท่าไหร่?",
    "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_en": "How many years was there a team that was part of the usisl pro league?",
    "question_th": "มีทีมที่เป็นส่วนหนึ่งของ 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_en": "How many goals were scored on 21 Junio 2008?",
    "question_th": "ยิงได้กี่ประตูในวันที่ 21 มิถุนายน 2551?",
    "context": "CREATE TABLE table_name_26 (goal VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_22 WHERE goal = 6",
    "question_en": "How was the competition in which 6 goals were made?",
    "question_th": "การแข่งขันที่ทำ 6 ประตูเป็นอย่างไรบ้าง?",
    "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_en": "At the venue of panama city, on 11 Febrero 2006, how many goals were scored?",
    "question_th": "ที่สนามปานามาซิตี้ เมื่อวันที่ 11 กุมภาพันธ์ พ.ศ. 2549 ทำได้กี่ประตู?",
    "context": "CREATE TABLE table_name_10 (goal VARCHAR, venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT time_retired FROM table_name_24 WHERE laps = 52",
    "question_en": "what is the time/retired when the laps is 52?",
    "question_th": "เวลาใด / เกษียณเมื่อรอบคือ 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_en": "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?",
    "question_th": "จำนวนเฉลี่ยของรอบเพลย์ออฟเมื่อจำนวนลีกมากกว่า 18 โดยที่ผู้เล่นคือ John Grant และจำนวนรวมมากกว่า 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_en": "Which mean total had Tim Sills as a player?",
    "question_th": "ค่าเฉลี่ยรวมของ Tim Sills ในฐานะผู้เล่นคืออะไร?",
    "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_en": "Which of the lowest FA Trophys involved the Forest Green Rovers club when the play-offs number was bigger than 0?",
    "question_th": "FA Trophys ที่ต่ำที่สุดรายการใดที่เกี่ยวข้องกับสโมสร Forest Green Rovers เมื่อจำนวนรอบเพลย์ออฟมากกว่า 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_en": "Which of the lowest leagues had Aldershot town as a club when the play-offs number was less than 0?",
    "question_th": "ลีกต่ำสุดใดที่มีเมืองอัลเดอร์ช็อตเป็นสโมสร เมื่อจำนวนเพลย์ออฟน้อยกว่า 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_en": "What mean total had a league number of 18, Richard Logan as a player, and a play-offs number smaller than 1?",
    "question_th": "ผลรวมเฉลี่ยคือหมายเลขลีก 18 หมายเลข ริชาร์ด โลแกนเป็นผู้เล่น และหมายเลขเพลย์ออฟน้อยกว่า 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_en": "What is the grid total for ralf schumacher racing over 53 laps?",
    "question_th": "ตารางรวมของราล์ฟ ชูมัคเกอร์ที่แข่งเกิน 53 รอบเป็นเท่าใด",
    "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_en": "Who built the car that went 53 laps with a Time/Retired of 1:17:09.672?",
    "question_th": "ใครเป็นคนสร้างรถที่วิ่งได้ 53 รอบด้วยเวลา/เกษียณที่ 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_en": "What is the high lap total for pedro diniz?",
    "question_th": "ผลรวมรอบสูงของเปโดร ดินิซคือเท่าไร?",
    "context": "CREATE TABLE table_name_24 (laps INTEGER, driver VARCHAR)"
  },
  {
    "answer": "SELECT runner_up FROM table_name_21 WHERE tournament = \"japan open\"",
    "question_en": "Who was the Japan open runner up?",
    "question_th": "รองแชมป์โอเพ่นของญี่ปุ่นคือใคร?",
    "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_en": "What is the name of the race where Stirling Moss was the winning driver?",
    "question_th": "การแข่งขันที่ Stirling Moss เป็นนักแข่งที่ชนะชื่ออะไร",
    "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_en": "What circuit did Innes Ireland win at for the I lombank trophy?",
    "question_th": "Innes Ireland คว้าแชมป์ I lombank ในสนามใด",
    "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_en": "how many times is the constituency edinburgh northern and leith?",
    "question_th": "เขตเลือกตั้งเอดินบะระภาคเหนือและลีธ์มีกี่ครั้ง?",
    "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_en": "what is the constituency when the rank is less than 5 and the result is con hold?",
    "question_th": "เขตเลือกตั้งใดเมื่ออันดับไม่ถึง 5 แล้วผลถูกกักตัว?",
    "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_en": "what is the lowest rank when the constituency is edinburgh northern and leith and the swing to gain is less than 4.16?",
    "question_th": "อันดับต่ำสุดคืออะไรเมื่อเขตเลือกตั้งคือเอดินบะระทางตอนเหนือและลีธ์และวงสวิงที่ได้น้อยกว่า 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_en": "What is the record when the leading scorer is Antawn Jamison (14)?",
    "question_th": "สถิติผู้ทำประตูสูงสุดคือ อันทอว์น จามิสัน (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_en": "How many people were in attendance on January 4, 2008?",
    "question_th": "วันที่ 4 มกราคม 2551 มีผู้เข้าร่วมกี่คน",
    "context": "CREATE TABLE table_name_33 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_47 WHERE location = \"addis ababa\"",
    "question_en": "What is the score at the Addis Ababa location?",
    "question_th": "ที่แอดดิสอาบาบาคะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_47 (score VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_26 WHERE location = \"addis ababa\"",
    "question_en": "Which competition was held at Addis Ababa?",
    "question_th": "การแข่งขันใดจัดขึ้นที่แอดดิสอาบาบา?",
    "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_en": "What is the date of birth of the goalkeeper from the 1st season?",
    "question_th": "วันเกิดของผู้รักษาประตูตั้งแต่ฤดูกาลที่ 1 คือวันที่เท่าไหร่?",
    "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_en": "What previous club was born on October 22, 1993?",
    "question_th": "สโมสรใดก่อนหน้านี้เกิดเมื่อวันที่ 22 ตุลาคม พ.ศ. 2536?",
    "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_en": "What was the competition on 7 June 1999?",
    "question_th": "วันที่ 7 มิถุนายน 2542 มีการแข่งขันอะไรบ้าง?",
    "context": "CREATE TABLE table_name_84 (competition VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_6 WHERE date = \"13 november 2005\"",
    "question_en": "What was the competition on 13 November 2005?",
    "question_th": "วันที่ 13 พฤศจิกายน 2548 มีการแข่งขันอะไรบ้าง?",
    "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_en": "Where was the friendly competition on 7 June 1999 played?",
    "question_th": "การแข่งขันกระชับมิตรเมื่อวันที่ 7 มิถุนายน พ.ศ. 2542 จัดขึ้นที่ไหน?",
    "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_en": "What is the time/retired for brm with a grid of 13?",
    "question_th": "เวลา/เกษียณสำหรับ brm ด้วยตาราง 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_en": "Which Home team has a Venue of mcg?",
    "question_th": "ทีมเจ้าบ้านไหนมีสนาม 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_en": "What was the score of the Chiefs November 27, 1994 game?",
    "question_th": "คะแนนของเกม Chiefs วันที่ 27 พฤศจิกายน 1994 คืออะไร?",
    "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_en": "What was the score of the Chiefs pre-Week 16 game that 69,362 people attended?",
    "question_th": "คะแนนของเกม Chiefs ก่อนสัปดาห์ที่ 16 ที่มีผู้เข้าร่วม 69,362 คนเป็นเท่าใด",
    "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_en": "What's sawyer hannay's total pick number?",
    "question_th": "หมายเลขเลือกทั้งหมดของซอว์เยอร์ ฮันเนย์คือเท่าไร",
    "context": "CREATE TABLE table_name_39 (pick__number VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_37 WHERE date = \"22 august 2012\"",
    "question_en": "Tell me the score on 22 august 2012",
    "question_th": "บอกคะแนนวันที่ 22 สิงหาคม 2555",
    "context": "CREATE TABLE table_name_37 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_51 WHERE points > 167.5",
    "question_en": "Who has points larger than 167.5?",
    "question_th": "ใครมีคะแนนมากกว่า 167.5?",
    "context": "CREATE TABLE table_name_51 (name VARCHAR, points INTEGER)"
  },
  {
    "answer": "SELECT MIN(crowd) FROM table_name_84 WHERE venue = \"mcg\"",
    "question_en": "What is the lowest crowd seen by the mcg Venue?",
    "question_th": "ฝูงชนที่ต่ำที่สุดที่สถานที่ mcg เห็นคืออะไร?",
    "context": "CREATE TABLE table_name_84 (crowd INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_86 WHERE away_team = \"richmond\"",
    "question_en": "When was the game with richmond as Away team?",
    "question_th": "เกมที่มีริชมอนด์เป็นทีมเยือนคือเมื่อไหร่?",
    "context": "CREATE TABLE table_name_86 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(rating) FROM table_name_66 WHERE share < 4",
    "question_en": "What is the total ratings on share less than 4?",
    "question_th": "คะแนนรวมของหุ้นน้อยกว่า 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_en": "When did the person born 24 September 1851 pass away?",
    "question_th": "ผู้เกิดวันที่ 24 กันยายน พ.ศ. 2394 ถึงแก่กรรมเมื่อใด",
    "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_en": "How old was the person born 24 September 1851 at the time of disaster?",
    "question_th": "บุคคลที่เกิดเมื่อวันที่ 24 กันยายน พ.ศ. 2394 ในขณะที่เกิดภัยพิบัติมีอายุเท่าใด",
    "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_en": "What is the name of the person born in 1909?",
    "question_th": "บุคคลที่เกิดในปี พ.ศ. 2452 ชื่ออะไร?",
    "context": "CREATE TABLE table_name_26 (name VARCHAR, date_of_birth VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_11 WHERE venue = \"oakland\"",
    "question_en": "What is the result in oakland?",
    "question_th": "ผลลัพธ์ในโอ๊คแลนด์คืออะไร?",
    "context": "CREATE TABLE table_name_11 (result VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT SUM(crowd) FROM table_name_14 WHERE home_team = \"richmond\"",
    "question_en": "Which Crowd has a Home team of richmond?",
    "question_th": "Crowd ไหนมีทีมเหย้าของริชมอนด์?",
    "context": "CREATE TABLE table_name_14 (crowd INTEGER, home_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_47 WHERE home_team = \"essendon\"",
    "question_en": "Which Venue has a Home team of essendon?",
    "question_th": "สนามไหนมีทีมเหย้าของเอสเซนดอน?",
    "context": "CREATE TABLE table_name_47 (venue VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_44 WHERE round = 6",
    "question_en": "What nationality was the round 6 draft pick?",
    "question_th": "ดราฟท์รอบ 6 สัญชาติอะไร?",
    "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_en": "What nationality is the draft pick with w position from leninogorsk (russia-2)?",
    "question_th": "ร่างเลือกตำแหน่ง w จากเลนิโนกอร์สค์ (รัสเซีย-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_en": "What college or league did the round 2 pick with d position come from?",
    "question_th": "รอบ 2 เลือกตำแหน่ง d มาจากวิทยาลัยหรือลีกใด",
    "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_en": "Who was the away team when North Melbourne was the home team?",
    "question_th": "ใครเป็นทีมเยือนตอนนอร์ทเมลเบิร์นเป็นเจ้าบ้าน?",
    "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_en": "What away team played against Footscray as the home team?",
    "question_th": "ทีมเยือนทีมใดเล่นกับฟุตสเครย์ในฐานะทีมเหย้า?",
    "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_en": "What is the rank for the show aired on May 19, 2009?",
    "question_th": "รายการที่ออกอากาศวันที่ 19 พฤษภาคม 2552 อยู่ในอันดับที่เท่าไหร่?",
    "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_en": "What is the timeslot for the episode that aired April 28, 2009?",
    "question_th": "ตอนที่ออกอากาศวันที่ 28 เมษายน 2552 ออกอากาศเมื่อไหร่?",
    "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_en": "What is the rating of the show ranked tba, aired on April 21, 2009?",
    "question_th": "เรตติ้งของรายการ TBA ออกอากาศวันที่ 21 เมษายน 2552 อยู่ที่เท่าไร?",
    "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_en": "What building shows 2013 and has more than 20 floors?",
    "question_th": "อาคารใดที่จัดแสดงในปี 2013 และมีมากกว่า 20 ชั้น?",
    "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_en": "What is the status of the building for 2014 with 33 floors?",
    "question_th": "สถานะของอาคารปี 2557 จำนวน 33 ชั้นเป็นอย่างไร?",
    "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_en": "What are the number of floors for the building of td building redevelopment (office)?",
    "question_th": "อาคารทีดีพัฒนาขื้นใหม่ (สำนักงาน) มีกี่ชั้น?",
    "context": "CREATE TABLE table_name_45 (floors INTEGER, building VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_57 WHERE floors > 28 AND year = 2013",
    "question_en": "What is the status of the building with more than 28 floor and a year of 2013?",
    "question_th": "สถานะของอาคารที่มีมากกว่า 28 ชั้น และปี 2556 เป็นอย่างไร?",
    "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_en": "What is the status of the building with less than 18 floors and later than 2013?",
    "question_th": "สถานะของอาคารที่มีความสูงน้อยกว่า 18 ชั้นและหลังปี 2556 เป็นอย่างไร?",
    "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_en": "Which Home team has a Venue of arden street oval?",
    "question_th": "ทีมเจ้าบ้านใดมีสนามอาร์เดน สตรีท โอวัล?",
    "context": "CREATE TABLE table_name_64 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_64 WHERE loss = \"tavárez\"",
    "question_en": "When did tavárez lose?",
    "question_th": "ตาวาเรซแพ้เมื่อไหร่?",
    "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_en": "What is the largest area with a Code of 66097, and a Region larger than 6?",
    "question_th": "พื้นที่ที่ใหญ่ที่สุดที่มีรหัส 66097 และภูมิภาคที่ใหญ่กว่า 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'île-dorval\"",
    "question_en": "What is the largest region with a Code smaller than 66112, and a Name of l'île-dorval?",
    "question_th": "ภูมิภาคที่ใหญ่ที่สุดที่มีรหัสเล็กกว่า 66112 และชื่อของ l'île-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_en": "Name the away team score for lake oval",
    "question_th": "บอกชื่อคะแนนทีมเยือนสำหรับวงรีทะเลสาบ",
    "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_en": "Name the home team score for south melbourne home team",
    "question_th": "บอกชื่อคะแนนทีมเหย้าของทีมเหย้าเซาธ์เมลเบิร์น",
    "context": "CREATE TABLE table_name_35 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_77 WHERE away_team = \"carlton\"",
    "question_en": "Name the home team for carlton away team",
    "question_th": "ตั้งชื่อทีมเหย้าสำหรับทีมเยือนคาร์ลตัน",
    "context": "CREATE TABLE table_name_77 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT listed FROM table_name_14 WHERE county = \"cochise\"",
    "question_en": "when was the site listed when the county is cochise?",
    "question_th": "เว็บไซต์ถูกระบุเมื่อใดเมื่อเคาน์ตีเป็น 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_en": "what is the cerclis ID when the site was proposed on 12/30/1982 and was partially deleted on 05/01/2003?",
    "question_th": "รหัส cerclis คืออะไรเมื่อมีการเสนอไซต์เมื่อวันที่ 30/12/2525 และถูกลบบางส่วนเมื่อวันที่ 05/01/2546",
    "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_en": "when was the site partially deleted when the cerclis id is az7570028582?",
    "question_th": "เมื่อใดที่ไซต์ถูกลบบางส่วนเมื่อรหัส cerclis คือ 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_en": "What band is the highest and has a System of gsm-450?",
    "question_th": "วงไหนสูงที่สุดและมีระบบ 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_en": "What was the constructor when there were 95 laps and a grid less than 15?",
    "question_th": "ตัวสร้างคืออะไรเมื่อมี 95 รอบและตารางน้อยกว่า 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_en": "What was the grid for suspension time/retired?",
    "question_th": "ตารางสำหรับเวลาระงับ/เกษียณคืออะไร?",
    "context": "CREATE TABLE table_name_8 (grid VARCHAR, time_retired VARCHAR)"
  },
  {
    "answer": "SELECT MAX(crowd) FROM table_name_64 WHERE venue = \"victoria park\"",
    "question_en": "When the venue is victoria park, what's the largest Crowd that attended?",
    "question_th": "เมื่อสถานที่จัดงานคือวิคตอเรีย พาร์ค ฝูงชนที่เข้าร่วมมากที่สุดคือคนใด?",
    "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_en": "When the Away team is south melbourne, what's the Home team score?",
    "question_th": "เมื่อทีมเยือนอยู่เซาธ์ เมลเบิร์น สกอร์ทีมเจ้าบ้านเท่าไหร่?",
    "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_en": "If the Away team is north melbourne, what's the Home team score?",
    "question_th": "ถ้าทีมเยือนอยู่เมลเบิร์นเหนือ สกอร์ทีมเจ้าบ้านเท่าไหร่?",
    "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_en": "Name the manner of departyre for 26 january date of appointment",
    "question_th": "แจ้งลักษณะการออกเดินทางวันที่ 26 มกราคม นัดหมาย",
    "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_en": "I want to know the team that was sacked and date of vacancy was 4 december",
    "question_th": "อยากทราบทีมที่ถูกไล่ออกและว่างวันที่ 4 ธันวาคมครับ",
    "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_en": "Tell me the outgoing manager for 22 november date of vacancy",
    "question_th": "บอกฉันถึงผู้จัดการที่จะออกจากตำแหน่งว่างในวันที่ 22 พฤศจิกายน",
    "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_en": "Tell me the outgoing manager for livingston",
    "question_th": "บอกผู้จัดการทีมลิฟวิงสตันที่จะลาออกหน่อยสิ",
    "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_en": "Tell me the manner of departure for 3 january date of appointment",
    "question_th": "แจ้งลักษณะการเดินทางวันที่นัดหมาย 3 มกราคม ครับ",
    "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_en": "When did the Argentine Grand Prix race?",
    "question_th": "การแข่งขัน Argentine Grand Prix จัดขึ้นเมื่อใด?",
    "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_en": "What day did Emerson Fittipaldi win the Spanish Grand Prix?",
    "question_th": "Emerson Fittipaldi ชนะ 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_en": "What circuit was the British Grand Prix?",
    "question_th": "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_en": "On which date was the 2006 FIFA World Cup Qualification in Manama, Bahrain?",
    "question_th": "ฟุตบอลโลก 2006 รอบคัดเลือก ที่เมืองมานามา ประเทศบาห์เรน คือวันใด",
    "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_en": "What was the final score of the Friendly Competition in Manama, Bahrain?",
    "question_th": "คะแนนสุดท้ายของการแข่งขันกระชับมิตรที่เมืองมานามา ประเทศบาห์เรนคือเท่าใด",
    "context": "CREATE TABLE table_name_48 (score VARCHAR, venue VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_63 WHERE venue = \"manama, bahrain\"",
    "question_en": "On which date was the match in Manama, Bahrain?",
    "question_th": "แมตช์ที่เมืองมานามา ประเทศบาห์เรน ตรงกับวันไหน?",
    "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_en": "How many laps did Emerson Fittipaldi do on a grid larger than 14, and when was the Time/Retired of accident?",
    "question_th": "Emerson Fittipaldi ทำไปกี่รอบบนกริดที่มากกว่า 14 และเกิดอุบัติเหตุเมื่อใด",
    "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_en": "What is the Time/Retired of Carlos Reutemann who was driving a brabham - Alfa Romeo?",
    "question_th": "เวลา / เกษียณของ Carlos Reutemann ที่กำลังขับรถ 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_en": "what status is the vehicle types of dmbs+tcl+dmcl?",
    "question_th": "ยานพาหนะประเภทใดของ 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_en": "what livery has a status of in service as coaching stock?",
    "question_th": "เครื่องแบบใดมีสถานะเป็นสต็อกการฝึกสอน?",
    "context": "CREATE TABLE table_name_74 (livery VARCHAR, status VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_78 WHERE vehicle_numbers = \"adb977554\"",
    "question_en": "what status is the vehicle numbers of adb977554?",
    "question_th": "เลขรถ adb977554 สถานะอะไรคะ?",
    "context": "CREATE TABLE table_name_78 (status VARCHAR, vehicle_numbers VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_62 WHERE name = \"alianza\"",
    "question_en": "Which city is Alianza?",
    "question_th": "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_en": "When was Alianza's first season in first division with a promotion after 1959?",
    "question_th": "ฤดูกาลแรกของ Alianza ในดิวิชั่น 1 และเลื่อนชั้นหลังปี 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_en": "What is the home team for victoria park?",
    "question_th": "วิคตอเรีย พาร์ค เจ้าบ้านเป็นทีมไหน?",
    "context": "CREATE TABLE table_name_93 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_86 WHERE away_team = \"hawthorn\"",
    "question_en": "Which home team has a Away team of hawthorn?",
    "question_th": "เจ้าบ้านไหนมีทีมเยือนฮอว์ธอร์น?",
    "context": "CREATE TABLE table_name_86 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_82 WHERE score = \"6–5 13\"",
    "question_en": "Who is the opponent with a score of 6–5 13?",
    "question_th": "คู่ต่อสู้ที่มีคะแนน 6–5 13 คือใคร?",
    "context": "CREATE TABLE table_name_82 (opponent VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_39 WHERE save = \"||33,453||36–27\"",
    "question_en": "Who is the opponent with a save of ||33,453||36–27?",
    "question_th": "คู่ต่อสู้ที่เซฟได้ ||33,453||36–27 คือใคร?",
    "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_en": "What is the top grid that laps less than 66 and a retried engine?",
    "question_th": "ตารางบนสุดที่มีรอบน้อยกว่า 66 และเครื่องยนต์ที่ลองใหม่คืออะไร?",
    "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_en": "What is the top lap that had a tyre time?",
    "question_th": "รอบสูงสุดที่มีเวลายางคืออะไร?",
    "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_en": "What is the top grid that roger williamson lapped less than 7?",
    "question_th": "กริดบนสุดที่ โรเจอร์ วิลเลียมสัน ซัดน้อยกว่า 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_en": "What opponent does she fight when she is 10-1?",
    "question_th": "เธอต่อสู้กับคู่ต่อสู้คนไหนเมื่อเธออายุ 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_en": "What is the highest number of rounds for a 3:16 fight?",
    "question_th": "จำนวนยกสูงสุดสำหรับการต่อสู้ 3:16 คือเท่าใด",
    "context": "CREATE TABLE table_name_98 (round INTEGER, time VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_35 WHERE home_team = \"south melbourne\"",
    "question_en": "What day is south melbourne at home?",
    "question_th": "เซาท์เมลเบิร์นที่บ้านวันไหน?",
    "context": "CREATE TABLE table_name_35 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(crowd) FROM table_name_72 WHERE away_team = \"hawthorn\"",
    "question_en": "What is the listed crowd when hawthorn is away?",
    "question_th": "ฝูงชนที่อยู่ในรายการคืออะไรเมื่อ Hawthorn ไม่อยู่?",
    "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_en": "What is the home team's score at mcg?",
    "question_th": "สกอร์เจ้าบ้านที่เอ็มซีจีเท่าไหร่?",
    "context": "CREATE TABLE table_name_49 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_33 WHERE date = \"may 6\"",
    "question_en": "Tell me who was the opponent on May 6",
    "question_th": "บอกฉันว่าใครคือคู่ต่อสู้ในวันที่ 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_en": "Name the score when the opponent was the dodgers on april 21",
    "question_th": "ตั้งชื่อคะแนนเมื่อคู่ต่อสู้เป็นผู้หลบเลี่ยงในวันที่ 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_en": "What is the number of the pick for round 11?",
    "question_th": "หมายเลขที่เลือกสำหรับรอบ 11 คืออะไร?",
    "context": "CREATE TABLE table_name_15 (pick INTEGER, round VARCHAR)"
  },
  {
    "answer": "SELECT MAX(pick) FROM table_name_82 WHERE round = 8",
    "question_en": "What is the largest pick in round 8?",
    "question_th": "ตัวเลือกที่ใหญ่ที่สุดในรอบ 8 คืออะไร?",
    "context": "CREATE TABLE table_name_82 (pick INTEGER, round VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_44 WHERE school = \"washington\"",
    "question_en": "What is the position of the player for Washington school?",
    "question_th": "ตำแหน่งผู้เล่นของโรงเรียนวอชิงตันคืออะไร?",
    "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_en": "Who gave the play by play commentary with studio host Ward Cornell?",
    "question_th": "ใครเป็นผู้บรรยายบทละครต่อบทละครกับพิธีกรในสตูดิโอ 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_en": "Were the color commentators who worked with Bill Hewitt doing the play-by-play?",
    "question_th": "นักวิจารณ์สีที่ทำงานร่วมกับบิล ฮิววิตต์เล่นทีละเรื่องหรือเปล่า?",
    "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_en": "Who did the play-by-play with studio host Ward Cornell and color commentator Bob Goldham?",
    "question_th": "ใครเป็นผู้แสดงแบบทีละรายการกับพิธีกรในสตูดิโอ Ward Cornell และผู้บรรยายสี 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_en": "Who did the play-by-play on the CBC network before 1961?",
    "question_th": "ใครเป็นคนเล่นแบบเล่นต่อเล่นบนเครือข่าย CBC ก่อนปี 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_en": "What's the award for #100?",
    "question_th": "#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_en": "Which award was nominated for in 2000?",
    "question_th": "รางวัลใดที่ได้รับการเสนอชื่อเข้าชิงในปี 2000?",
    "context": "CREATE TABLE table_name_37 (award VARCHAR, year VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_7 WHERE year < 2000",
    "question_en": "What were the results before the year 2000?",
    "question_th": "ผลลัพธ์ก่อนปี 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_en": "What is the 2nd leg of the Comunicaciones team?",
    "question_th": "เลกที่ 2 ของทีม Comunicaciones คืออะไร?",
    "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_en": "What is the 1st leg where Team 1 is C.D. Plaza Amador?",
    "question_th": "เลกแรกทีม 1 คือ ซีดี พลาซา อามาดอร์ คืออะไร?",
    "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_en": "What is the 1st leg where Team 1 is C.D. Plaza Amador?",
    "question_th": "เลกแรกทีม 1 คือ ซีดี พลาซา อามาดอร์ คืออะไร?",
    "context": "CREATE TABLE table_name_48 (team_1 VARCHAR)"
  },
  {
    "answer": "SELECT partner FROM table_name_14 WHERE surface = \"hard\"",
    "question_en": "Who played on a hard surface?",
    "question_th": "ใครเล่นบนพื้นผิวแข็ง?",
    "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_en": "What is north melbourne's score as an away side?",
    "question_th": "นอร์ธ เมลเบิร์น สกอร์เป็นทีมเยือน?",
    "context": "CREATE TABLE table_name_80 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT AVG(year) FROM table_name_16 WHERE award = \"fantasia section award\"",
    "question_en": "What is the average year of the Fantasia Section Award?",
    "question_th": "ปีเฉลี่ยของรางวัล Fantasia Section คือเท่าไร?",
    "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_en": "What is the sum total of picks for drake players from the tri-cities blackhawks?",
    "question_th": "ผลรวมของการเลือกผู้เล่น Drake จากทีม 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_en": "What is the lowest pick number for players from king's (ny)?",
    "question_th": "หมายเลขเลือกต่ำสุดสำหรับผู้เล่นจาก 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_en": "Who was the Home Team while Calgary was visiting while having an Attendance above 15,655?",
    "question_th": "ทีมเหย้าคือใครในขณะที่คัลการีเยือนโดยมีผู้ชมมากกว่า 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_en": "What is the lowest Frequency where the Hemholtz pitch is d?",
    "question_th": "ความถี่ต่ำสุดที่ระดับเสียงของ Hemholtz อยู่ที่ 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_en": "What is the scientific pitch when the Helmholtz pitch is D?",
    "question_th": "สนามทางวิทยาศาสตร์เมื่อสนาม Helmholtz เป็น 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_en": "What company constrcuted the vehicle with a circuit of oulton park on 15 april?",
    "question_th": "บริษัทใดสร้างรถพร้อมสนามโอลตันพาร์คเมื่อวันที่ 15 เมษายน",
    "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_en": "What is the name of the race on 16 september?",
    "question_th": "แข่งวันที่ 16 กันยายน ชื่ออะไรครับ?",
    "context": "CREATE TABLE table_name_29 (race_name VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT circuit FROM table_name_49 WHERE date = \"15 april\"",
    "question_en": "What is the circuit held on 15 april?",
    "question_th": "วันที่ 15 เมษายน เซอร์กิตจะจัดอะไรบ้าง?",
    "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_en": "What date was the xiv international gold cup?",
    "question_th": "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_en": "Name the date for race title lakeside",
    "question_th": "ตั้งชื่อวันที่สำหรับตำแหน่งการแข่งขันริมทะเลสาบ",
    "context": "CREATE TABLE table_name_21 (date VARCHAR, race_title VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_60 WHERE race_title = \"launceston\"",
    "question_en": "Name the team for launceston",
    "question_th": "ตั้งชื่อทีมให้ลอนเซสตัน",
    "context": "CREATE TABLE table_name_60 (team VARCHAR, race_title VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_7 WHERE bowling_style = \"source:\"",
    "question_en": "Who has a bowling style of source:?",
    "question_th": "ใครมีรูปแบบการเล่นโบว์ลิ่งจากแหล่งที่มา :?",
    "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_en": "What first class team does sanath jayasuriya play for?",
    "question_th": "สนั่น ชยาสุริยา ลงเล่นให้กับทีมใดในทีมระดับเฟิร์สคลาส?",
    "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_en": "When was roshan mahanama born?",
    "question_th": "โรชาน มหานามา เกิดเมื่อไหร่?",
    "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_en": "When was avishka gunawardene born?",
    "question_th": "อวิชกา กุณวัตรเถเน เกิดเมื่อใด?",
    "context": "CREATE TABLE table_name_51 (date_of_birth VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_33 WHERE result = \"2-1\"",
    "question_en": "What was the venue where the result was 2-1?",
    "question_th": "สนามไหนผลเป็น 2-1?",
    "context": "CREATE TABLE table_name_33 (venue VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_44 WHERE result = \"3-0\"",
    "question_en": "What was the score of the match with a 3-0 result?",
    "question_th": "แมตช์นี้สกอร์ 3-0 เป็นยังไงบ้าง?",
    "context": "CREATE TABLE table_name_44 (score VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_79 WHERE date = \"july 29, 1990\"",
    "question_en": "What is the score of the match on July 29, 1990?",
    "question_th": "สกอร์ของแมตช์วันที่ 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_en": "What is the venue of the 1990 Asian games?",
    "question_th": "เอเชียนเกมส์ 1990 จัดขึ้นที่ใด?",
    "context": "CREATE TABLE table_name_77 (venue VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_82 WHERE date = \"october 5, 1990\"",
    "question_en": "What is the score of the match on October 5, 1990?",
    "question_th": "ผลการแข่งขันวันที่ 5 ตุลาคม 2533 เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_82 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_21 WHERE venue = \"ta'qali\"",
    "question_en": "What is the competition at the ta'qali venue?",
    "question_th": "การแข่งขันที่สนาม ta'qali คืออะไร?",
    "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_en": "What is the average against score of all teams with less than 7 losses, more than 6 draws, and 25 points?",
    "question_th": "ค่าเฉลี่ยเทียบกับคะแนนของทุกทีมที่แพ้น้อยกว่า 7 เสมอมากกว่า 6 และมี 25 แต้มเป็นเท่าใด",
    "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_en": "What is the lowest number of points of any team with less than 6 draws and less than 18 matches played?",
    "question_th": "จำนวนแต้มต่ำสุดของทีมใดๆ ที่เสมอน้อยกว่า 6 นัด และลงเล่นน้อยกว่า 18 นัด คือข้อใด?",
    "context": "CREATE TABLE table_name_3 (points INTEGER, drawn VARCHAR, played VARCHAR)"
  },
  {
    "answer": "SELECT SUM(points) FROM table_name_96 WHERE against < 14",
    "question_en": "What is the sum of the points of all teams that had against scores less than 14?",
    "question_th": "ผลรวมคะแนนของทุกทีมที่มีคะแนนต่ำกว่า 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_en": "What construction completed on 08/10/2007?",
    "question_th": "การก่อสร้างใดแล้วเสร็จเมื่อวันที่ 08/10/2550?",
    "context": "CREATE TABLE table_name_46 (listed VARCHAR, construction_completed VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_11 WHERE venue = \"western oval\"",
    "question_en": "What away team played at western oval?",
    "question_th": "ทีมเยือนทีมใดเล่นที่เวสเทิร์นโอวัล?",
    "context": "CREATE TABLE table_name_11 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_28 WHERE away_team = \"richmond\"",
    "question_en": "What home team has an Away team of richmond?",
    "question_th": "เจ้าบ้านไหนมีทีมเยือนริชมอนด์?",
    "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_en": "Which home team has an Away team of essendon?",
    "question_th": "เจ้าบ้านไหนมีทีมเยือนเอสเซนดอน?",
    "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_en": "Which Tuesday does big brother 12 air?",
    "question_th": "พี่ใหญ่12ออกอากาศวันอังคารไหนคะ?",
    "context": "CREATE TABLE table_name_16 (tuesday VARCHAR, series VARCHAR)"
  },
  {
    "answer": "SELECT series FROM table_name_20 WHERE saturday = \"channel 5\"",
    "question_en": "Which series airs Saturday on Channel 5?",
    "question_th": "ซีรีย์ไหนออกอากาศวันเสาร์ทางช่อง 5?",
    "context": "CREATE TABLE table_name_20 (series VARCHAR, saturday VARCHAR)"
  },
  {
    "answer": "SELECT thursday FROM table_name_59 WHERE series = \"big brother 13\"",
    "question_en": "Which Thursday does big brother 13 air?",
    "question_th": "พี่ใหญ่13ออกอากาศวันพฤหัสไหนคะ?",
    "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_en": "What is the most lost games for the team with a difference smaller than 86 and points of 32?",
    "question_th": "เกมไหนที่แพ้มากที่สุดสำหรับทีมโดยมีผลต่างน้อยกว่า 86 และ 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_en": "What is the average points for a team that lost 4 and played more than 28 games?",
    "question_th": "คะแนนเฉลี่ยของทีมที่แพ้ 4 และเล่นมากกว่า 28 เกมคือเท่าไร?",
    "context": "CREATE TABLE table_name_56 (points INTEGER, lost VARCHAR, played VARCHAR)"
  },
  {
    "answer": "SELECT MAX(difference) FROM table_name_98 WHERE drew < 0",
    "question_en": "What is the highest difference for the team that had less than 0 draws?",
    "question_th": "อะไรคือความแตกต่างสูงสุดสำหรับทีมที่เสมอน้อยกว่า 0?",
    "context": "CREATE TABLE table_name_98 (difference INTEGER, drew INTEGER)"
  },
  {
    "answer": "SELECT SUM(bronze) FROM table_name_51 WHERE total < 1",
    "question_en": "What is the total number of bronze when the total is less than 1?",
    "question_th": "จำนวนเหรียญทองแดงทั้งหมดเมื่อยอดรวมน้อยกว่า 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_en": "What is the full amount of Total for Austria when the number of gold is less than 0?",
    "question_th": "ยอดรวมทั้งหมดสำหรับออสเตรียเมื่อจำนวนทองน้อยกว่า 0 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_45 (total INTEGER, nation VARCHAR, gold VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_89 WHERE rank = 5",
    "question_en": "What is the name of Rank 5?",
    "question_th": "อันดับ 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_en": "What is the rank of Rmax Rpeak ( Pflops ) of 17.173 20.133?",
    "question_th": "อันดับของ Rmax Rpeak ( Pflops ) ที่ 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_en": "What is the tyre on the race where Bruce Mclaren had the fastest lap?",
    "question_th": "ยางในการแข่งขันที่ Bruce Mclaren มีรอบเร็วที่สุดคือยางอะไร",
    "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_en": "What is the constructor at the United States Grand Prix?",
    "question_th": "ผู้สร้างที่ 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_en": "What is the date of the circuit of Monaco?",
    "question_th": "วงจรโมนาโกวันที่เท่าไหร่?",
    "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_en": "What is the tyre for the circuit of Prince George, which had Jim Clark as the fastest lap?",
    "question_th": "ยางสำหรับสนาม Prince George ซึ่ง Jim Clark ทำเวลาต่อรอบเร็วที่สุดคือยางอะไร",
    "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ürburgring\"",
    "question_en": "What is the date of the circuit of nürburgring, which had Graham Hill as the winning driver?",
    "question_th": "สนามเนือร์บูร์กริงซึ่งมี Graham Hill เป็นนักแข่งที่ชนะคือวันที่เท่าไหร่?",
    "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_en": "What game did Eoin Holohan play in?",
    "question_th": "ออยน์ โฮโลฮาน เล่นเกมอะไร?",
    "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_en": "what is the weekly rank for living when the air date is october 6, 2008?",
    "question_th": "ออกอากาศวันที่ 6 ตุลาคม 2551 อันดับรายสัปดาห์ของการครองชีพเป็นเท่าใด?",
    "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_en": "what is the episode with the 183,000 viewers?",
    "question_th": "ตอนไหนที่มีผู้ชม 183,000 คน?",
    "context": "CREATE TABLE table_name_64 (episode VARCHAR, viewers VARCHAR)"
  },
  {
    "answer": "SELECT viewers FROM table_name_25 WHERE weekly_rank_for_living = \"4\"",
    "question_en": "How many viewers for the episode with the weekly rank for living of 4?",
    "question_th": "มีผู้ชมกี่คนสำหรับตอนนี้ที่มีอันดับรายสัปดาห์สำหรับการใช้ชีวิต 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_en": "Which Away team score has a Venue of kardinia park?",
    "question_th": "คะแนนทีมเยือนทีมไหนมีสนามคาร์ดิเนีย พาร์ค?",
    "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_en": "Which Home team score has a Home team of geelong?",
    "question_th": "สกอร์ทีมเหย้าใดมีทีมเหย้าของจีลอง?",
    "context": "CREATE TABLE table_name_47 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_45 WHERE home_team = \"geelong\"",
    "question_en": "Which Venue has a Home team of geelong?",
    "question_th": "สถานที่ใดมีทีมเหย้าของจีลอง?",
    "context": "CREATE TABLE table_name_45 (venue VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_23 WHERE hometown = \"raleigh, nc\"",
    "question_en": "Which school is in Raleigh, NC?",
    "question_th": "โรงเรียนไหนในเมืองราลี รัฐนอร์ทแคโรไลนา?",
    "context": "CREATE TABLE table_name_23 (school VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_44 WHERE player = \"peyton siva\"",
    "question_en": "Which college does Peyton Siva play for?",
    "question_th": "Peyton Siva เล่นให้กับวิทยาลัยใด",
    "context": "CREATE TABLE table_name_44 (college VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT height FROM table_name_40 WHERE school = \"franklin high school\"",
    "question_en": "Which height is associated with Franklin High School?",
    "question_th": "ความสูงใดที่เกี่ยวข้องกับ 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_en": "How tall is Daniel Orton?",
    "question_th": "แดเนียล ออร์ตัน สูงเท่าไหร่?",
    "context": "CREATE TABLE table_name_93 (height VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_76 WHERE hometown = \"riverside, ca\"",
    "question_en": "Which school is in Riverside, CA?",
    "question_th": "โรงเรียนไหนในริเวอร์ไซด์ แคลิฟอร์เนีย?",
    "context": "CREATE TABLE table_name_76 (school VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_87 WHERE position = \"defensive back\"",
    "question_en": "During which round was a Hawkeyes player selected for the defensive back position?",
    "question_th": "ผู้เล่นฮอว์คอายส์ได้รับเลือกให้ดำรงตำแหน่งกองหลังในรอบใดในรอบใด",
    "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_en": "What was the latest round that Derek Pagel was selected with a pick higher than 50?",
    "question_th": "ล่าสุด Derek Pagel ถูกเลือกด้วยคะแนนเกิน 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_en": "When is the earliest began operation with a length of sultan ismail and over 27 stations?",
    "question_th": "ปฏิบัติการเร็วที่สุดคือเมื่อใดโดยสุลต่านอิสมาอิลและสถานีมากกว่า 27 แห่ง?",
    "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_en": "What is the average operation beginning with a length of ampang and over 27 stations?",
    "question_th": "การดำเนินงานโดยเฉลี่ยที่เริ่มต้นด้วยความยาว ampang และมากกว่า 27 สถานีเป็นเท่าใด",
    "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_en": "what is the nationality of the ship appam?",
    "question_th": "แอพแพมเรือสัญชาติอะไร?",
    "context": "CREATE TABLE table_name_24 (nationality VARCHAR, ship VARCHAR)"
  },
  {
    "answer": "SELECT tonnage_grt FROM table_name_40 WHERE ship = \"author\"",
    "question_en": "what is the tonnage grt of the ship author?",
    "question_th": "น้ำหนักของผู้เขียนเรือคือเท่าไร?",
    "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_en": "what is the most tonnage grt of any ship sunk or captured on 16 jan 16?",
    "question_th": "น้ำหนักเรือที่จมหรือยึดได้มากที่สุดในวันที่ 16 มกราคม 2559 คือเท่าใด?",
    "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_en": "what is the total tonnage grt of the cargo ship(s) sunk or captured on 4 feb 16?",
    "question_th": "น้ำหนักรวมของเรือบรรทุกสินค้าที่จมหรือยึดได้ในวันที่ 4 กุมภาพันธ์ 59 เป็นเท่าใด",
    "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_en": "What Rank has a gold smaller than 1, and a silver larger than 0?",
    "question_th": "อันดับใดที่มีทองคำน้อยกว่า 1 และเงินมากกว่า 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_en": "What year was the Line of Gardermobanen completed?",
    "question_th": "Line of Gardermobanen สร้างเสร็จในปีใด",
    "context": "CREATE TABLE table_name_20 (year_completed VARCHAR, line VARCHAR)"
  },
  {
    "answer": "SELECT line FROM table_name_82 WHERE name = \"geumjeong tunnel\"",
    "question_en": "Which line is the Geumjeong tunnel?",
    "question_th": "อุโมงค์กึมจองคือสายไหน?",
    "context": "CREATE TABLE table_name_82 (line VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_67 WHERE round = \"sf\"",
    "question_en": "What is the Date with a Round with sf?",
    "question_th": "วันที่ที่มีรอบกับ 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_en": "What is the Opponent with a Round with 3, and a Venue of home?",
    "question_th": "ฝ่ายตรงข้ามที่มีรอบ 3 และสถานที่เหย้าคืออะไร?",
    "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_en": "What is the Date with an Opponent with wimbledon, and a Result of drew 0-0?",
    "question_th": "ฝ่ายตรงข้ามกับวิมเบิลดันจะแข่งขันกันเมื่อใด และผลเสมอ 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_en": "What is the Round with a Opponent with blackburn?",
    "question_th": "รอบกับฝ่ายตรงข้ามกับแบล็กเบิร์นคืออะไร?",
    "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_en": "What is the Date with a Opponent with wimbledon, and a Result of won 2-0?",
    "question_th": "วันที่คู่ต่อสู้กับวิมเบิลดันคืออะไรและผลการชนะ 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_en": "What is the Venue with a Date with 14 april 2002?",
    "question_th": "สถานที่จัดงานที่มีวันที่ 14 เมษายน 2545 คืออะไร?",
    "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_en": "What is the smallest withdrawn value with a GNRI greater than 172, name of Croagh Patrick and was rebuilt before 1939?",
    "question_th": "ค่าที่ถอนออกน้อยที่สุดด้วย GNRI มากกว่า 172 ชื่อ Croagh Patrick และถูกสร้างขึ้นใหม่ก่อนปี 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_en": "Where was the California bowl played with 30,000 attending?",
    "question_th": "ชามแคลิฟอร์เนียเล่นที่ไหนโดยมีผู้เข้าร่วม 30,000 คน?",
    "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_en": "What stadium had an opponent of Cal State Fullerton Titans?",
    "question_th": "สนามใดมีคู่แข่งของ 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_en": "What is the time/retired for thierry boutsen?",
    "question_th": "เธียรี่ บูทเซ่น มีเวลา/เกษียณเมื่อใด?",
    "context": "CREATE TABLE table_name_92 (time_retired VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT pitch FROM table_name_97 WHERE location = \"isle of man\"",
    "question_en": "What Pitch is located at Isle of Man?",
    "question_th": "What Pitch ตั้งอยู่ที่เกาะแมน?",
    "context": "CREATE TABLE table_name_97 (pitch VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT name__english_ FROM table_name_76 WHERE location = \"chester\"",
    "question_en": "What is the English Name of the Location in Chester?",
    "question_th": "ชื่อภาษาอังกฤษของที่ตั้งในเชสเตอร์คืออะไร?",
    "context": "CREATE TABLE table_name_76 (name__english_ VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_97 WHERE pitch = \"old bedians\"",
    "question_en": "What is the Location of the Old Bedians Pitch?",
    "question_th": "ที่ตั้งของสนาม Old Bedians อยู่ที่ไหน?",
    "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_en": "Name the report for v grand prix de paris",
    "question_th": "ตั้งชื่อรายงานสำหรับ v กรังด์ปรีซ์เดอปารีส",
    "context": "CREATE TABLE table_name_11 (report VARCHAR, race_name VARCHAR)"
  },
  {
    "answer": "SELECT report FROM table_name_98 WHERE date = \"20 may\"",
    "question_en": "Name the report on 20 may",
    "question_th": "ตั้งชื่อรายงานวันที่ 20 พ.ค",
    "context": "CREATE TABLE table_name_98 (report VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT report FROM table_name_74 WHERE winning_driver = \"philip fotheringham-parker\"",
    "question_en": "Name the report for philip fotheringham-parker",
    "question_th": "ตั้งชื่อรายงานสำหรับฟิลิป ฟอเธอริงแฮม-ปาร์กเกอร์",
    "context": "CREATE TABLE table_name_74 (report VARCHAR, winning_driver VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_76 WHERE circuit = \"pescara\"",
    "question_en": "Name the date for pescara",
    "question_th": "ตั้งชื่อวันที่สำหรับเปสคาร่า",
    "context": "CREATE TABLE table_name_76 (date VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT catalogue FROM table_name_34 WHERE date = \"october 15, 2004\"",
    "question_en": "What is the catalogue on october 15, 2004?",
    "question_th": "แค็ตตาล็อกเมื่อวันที่ 15 ตุลาคม 2547 คืออะไร?",
    "context": "CREATE TABLE table_name_34 (catalogue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_97 WHERE date = \"january 24, 2005\"",
    "question_en": "Name the label for january 24, 2005",
    "question_th": "ตั้งชื่อป้ายกำกับสำหรับวันที่ 24 มกราคม พ.ศ. 2548",
    "context": "CREATE TABLE table_name_97 (label VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT catalogue FROM table_name_48 WHERE date = \"october 15, 2004\"",
    "question_en": "Name the october 15, 2004 catalogue",
    "question_th": "ตั้งชื่อแค็ตตาล็อกวันที่ 15 ตุลาคม 2547",
    "context": "CREATE TABLE table_name_48 (catalogue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_81 WHERE format = \"cd\"",
    "question_en": "Name the date that is a cd",
    "question_th": "ตั้งชื่อวันที่ที่เป็นซีดี",
    "context": "CREATE TABLE table_name_81 (date VARCHAR, format VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_name_33 WHERE date = \"december 7, 2004\"",
    "question_en": "Name the region for december 7, 2004",
    "question_th": "ตั้งชื่อภูมิภาคสำหรับวันที่ 7 ธันวาคม พ.ศ. 2547",
    "context": "CREATE TABLE table_name_33 (region VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT catalogue FROM table_name_53 WHERE region = \"australia\"",
    "question_en": "Name the catalogue for australia",
    "question_th": "ตั้งชื่อแค็ตตาล็อกสำหรับออสเตรเลีย",
    "context": "CREATE TABLE table_name_53 (catalogue VARCHAR, region VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_10 WHERE rank = 2 AND seasons = \"1982–83, 1983–84, 1984–85\"",
    "question_en": "What player is ranked 2 and played in the seasons of 1982–83, 1983–84, 1984–85?",
    "question_th": "ผู้เล่นคนใดที่อยู่ในอันดับ 2 และเล่นในฤดูกาล 1982–83, 1983–84, 1984–85?",
    "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_en": "How many rankings are associated with giuseppe meazza holding over 3 titles?",
    "question_th": "มีกี่อันดับที่เกี่ยวข้องกับ Giuseppe Meazza ที่ครองมากกว่า 3 รายการ?",
    "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_en": "What home team has had a crowd bigger than 20,000?",
    "question_th": "ทีมเจ้าบ้านใดมีผู้ชมมากกว่า 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_en": "What venue had footscray play at it?",
    "question_th": "สนามไหนมีฟุตสเครย์เล่นบ้าง?",
    "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_en": "How much did the away team score at victoria park?",
    "question_th": "ทีมเยือนทำประตูที่วิคตอเรีย พาร์ค ได้เท่าไหร่?",
    "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_en": "What municipality has 719 people and is larger than 108.46 km2?",
    "question_th": "เทศบาลใดมี 719 คน และใหญ่กว่า 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_en": "What was the region for Malartic with 159.31 km2?",
    "question_th": "ภูมิภาคมาลาร์ติกคือพื้นที่ใด 159.31 ตารางกิโลเมตร",
    "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_en": "What is Dupuy lowest area in km2?",
    "question_th": "พื้นที่ Dupuy ต่ำสุดใน 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_en": "What is the km2 area for the population of 311?",
    "question_th": "พื้นที่ km2 สำหรับประชากร 311 คนคือเท่าใด",
    "context": "CREATE TABLE table_name_46 (area__km_2__ INTEGER, population VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_77 WHERE population = 370",
    "question_en": "What type has a population of 370?",
    "question_th": "ประเภทใดมีประชากร 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_en": "What is the score of the away team that played home team Geelong?",
    "question_th": "ทีมเยือนเจอทีมจีลองมีสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_18 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT source FROM table_name_88 WHERE knight = \"2%\"",
    "question_en": "What source has a Knight of 2%?",
    "question_th": "แหล่งใดมีอัศวิน 2%?",
    "context": "CREATE TABLE table_name_88 (source VARCHAR, knight VARCHAR)"
  },
  {
    "answer": "SELECT lanier FROM table_name_60 WHERE cardwell = \"20%\"",
    "question_en": "What Lanier has a Cardwell of 20%?",
    "question_th": "Lanier ใดที่มี Cardwell 20%?",
    "context": "CREATE TABLE table_name_60 (lanier VARCHAR, cardwell VARCHAR)"
  },
  {
    "answer": "SELECT martin FROM table_name_36 WHERE date = \"july 8–9, 2008\"",
    "question_en": "What martin is on july 8–9, 2008?",
    "question_th": "มาร์ตินเป็นอะไรในวันที่ 8-9 กรกฎาคม 2551",
    "context": "CREATE TABLE table_name_36 (martin VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT source FROM table_name_18 WHERE cardwell = \"20%\"",
    "question_en": "What source has a cardwell of 20%?",
    "question_th": "แหล่งใดมี cardwell 20%?",
    "context": "CREATE TABLE table_name_18 (source VARCHAR, cardwell VARCHAR)"
  },
  {
    "answer": "SELECT martin FROM table_name_42 WHERE lanier = \"6%\"",
    "question_en": "What martin has a lanier of 6%?",
    "question_th": "มาร์ตินตัวไหนมีไลเนียร์ 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_en": "What cardwell has an insider advantage and a knight of 1%",
    "question_th": "การ์ดเวลล์ใดมีข้อได้เปรียบภายในและมีอัศวิน 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_en": "How much did the girl, nicknamed Chidi, weigh at birth?",
    "question_th": "เด็กผู้หญิงชื่อเล่น Chidi มีน้ำหนักเท่าไหร่ตั้งแต่แรกเกิด?",
    "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_en": "What nickname has the meaning of God knows my journey?",
    "question_th": "ชื่อเล่นใดที่มีความหมายว่าพระเจ้าทรงทราบการเดินทางของฉัน?",
    "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_en": "What is the nickname of the boy who weighed 810g (26.0 oz.) at birth?",
    "question_th": "ชื่อเล่นของเด็กชายที่มีน้ำหนัก 810 กรัม (26.0 ออนซ์) เมื่อแรกเกิดมีชื่อว่าอะไร",
    "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_en": "How much did the baby who name means God knows my journey weigh at birth?",
    "question_th": "ทารกที่ชื่อมีความหมายว่าพระเจ้ารู้ดีว่าการเดินทางของฉันมีน้ำหนักเท่าไหร่ตั้งแต่แรกเกิด?",
    "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_en": "Chukwubuikem Maduabuchi is what gender?",
    "question_th": "ชุกวูบุยเคม มาดูอาบูจิ เพศอะไร?",
    "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_en": "What is the nickname of the baby with the birth weight of 730g (23.5 oz.)?",
    "question_th": "ทารกน้ำหนักแรกเกิด 730 กรัม (23.5 ออนซ์) มีชื่อเล่นว่าอะไร?",
    "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_en": "For a date of 29 Sep and a time of 16:40, what is the corresponding Set 3?",
    "question_th": "สำหรับวันที่ 29 ก.ย. เวลา 16:40 น. ชุดที่ 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_en": "What Score has a time of 14:10?",
    "question_th": "สกอร์ใดที่มีเวลา 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_en": "who is the winner when the trofeo fast team is carrera jeans-vagabond in stage 5?",
    "question_th": "ใครจะเป็นผู้ชนะเมื่อทีม Trofeo Fast คือ Carrera Jeans-Vagabond ในสเตจที่ 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_en": "who was the trofeo fast team in stage 10?",
    "question_th": "ใครคือทีม trofeo fast ในสเตจ 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_en": "who is the trofeo fast team in stage 10?",
    "question_th": "ใครคือทีม trofeo fast ในสเตจ 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_en": "who is the points classification in stage 1?",
    "question_th": "การแบ่งคะแนนในระยะที่ 1 คือใคร?",
    "context": "CREATE TABLE table_name_64 (points_classification VARCHAR, stage VARCHAR)"
  },
  {
    "answer": "SELECT stage FROM table_name_80 WHERE winner = \"charly mottet\"",
    "question_en": "what is the stage when the winner is charly mottet?",
    "question_th": "เวทีไหนที่ผู้ชนะคือ 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_en": "Who was the maufacturer of the vehicle during the race where Cale Yarborough started at 19 and finished earlier than 42?",
    "question_th": "ใครคือผู้ผลิตรถยนต์ในระหว่างการแข่งขันที่ Cale Yarborough ออกตัวเมื่ออายุ 19 ปีและเข้าเส้นชัยก่อนอายุ 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_en": "What is the smallest finish time for a race after 1972 with a car manufactured by pontiac?",
    "question_th": "เวลาสิ้นสุดที่สั้นที่สุดสำหรับการแข่งขันหลังปี 1972 ด้วยรถยนต์ที่ผลิตโดย 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_en": "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?",
    "question_th": "เวลาสิ้นสุดที่น้อยที่สุดสำหรับการแข่งขันโดยออกสตาร์ทน้อยกว่า 3 โดยมีบูอิคเป็นผู้ผลิต และการแข่งขันจัดขึ้นหลังปี 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_en": "What home team had an attendance record of 16,971?",
    "question_th": "ทีมเจ้าบ้านใดมีสถิติผู้เข้าชม 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_en": "Tell me the track that has the catalogue of apbo 0280",
    "question_th": "บอกแทร็กที่มีแคตตาล็อกของ 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_en": "I want the sum of tracks for raised on rock",
    "question_th": "ฉันต้องการผลรวมของแทร็กที่ยกขึ้นบนหิน",
    "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_en": "Tell me the time for 6/6/77 release date and song title of way down",
    "question_th": "บอกเวลาวันวางจำหน่าย 6/6/77 และชื่อเพลง 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_en": "Tell me the recorded for time of 2:50 and released date of 6/6/77 with track more than 20",
    "question_th": "บอกบันทึกเวลา 2:50 และวันที่ออก 6/6/77 ที่มีเพลงมากกว่า 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_en": "Tell me the release date record on 10/29/76 and a time on 2:50",
    "question_th": "บอกบันทึกวันวางจำหน่ายวันที่ 10/29/76 และเวลา 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_en": "Name the catalogue that has tracks less than 13 and the release date of 10/31/72",
    "question_th": "ตั้งชื่อแคตตาล็อกที่มีเพลงน้อยกว่า 13 และวันที่วางจำหน่าย 31/10/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_en": "What is the opening date of the musical at the adelphi theatre?",
    "question_th": "ละครเพลงที่โรงละครอเดลฟีเปิดแสดงวันไหน?",
    "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_en": "What opening date has a capacity of 100?",
    "question_th": "เปิดวันไหนจุได้ 100 คนคะ?",
    "context": "CREATE TABLE table_name_53 (opening_date VARCHAR, capacity VARCHAR)"
  },
  {
    "answer": "SELECT AVG(wins) FROM table_name_14 WHERE rank < 1",
    "question_en": "On average, how many wins have a rank lower than 1?",
    "question_th": "โดยเฉลี่ยแล้ว มีกี่ชัยชนะที่มีอันดับต่ำกว่า 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_en": "What is the lowest level of Earnings($) to have a Wins value of 22 and a Rank lower than 2?",
    "question_th": "ระดับต่ำสุดของรายได้ ($) ที่มีมูลค่าการชนะ 22 และอันดับต่ำกว่า 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_en": "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?",
    "question_th": "โดยรวมแล้ว George Archer ผู้เล่นจากสหรัฐอเมริกามีรายได้เท่าไรจากการชนะที่ต่ำกว่า 24 และอันดับที่สูงกว่า 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_en": "What state did Hon David Beddall belong to?",
    "question_th": "Hon David Beddall อยู่ในรัฐใด",
    "context": "CREATE TABLE table_name_47 (state VARCHAR, member VARCHAR)"
  },
  {
    "answer": "SELECT state FROM table_name_1 WHERE electorate = \"fowler\"",
    "question_en": "In what state was the electorate fowler?",
    "question_th": "นักล่านกผู้มีสิทธิเลือกตั้งอยู่ในรัฐใด?",
    "context": "CREATE TABLE table_name_1 (state VARCHAR, electorate VARCHAR)"
  },
  {
    "answer": "SELECT pos FROM table_name_57 WHERE school_country = \"arkansas\"",
    "question_en": "What position does the player from arkansas play?",
    "question_th": "นักเตะจากอาร์คันซอเล่นตำแหน่งอะไร?",
    "context": "CREATE TABLE table_name_57 (pos VARCHAR, school_country VARCHAR)"
  },
  {
    "answer": "SELECT word__number FROM table_name_37 WHERE name = \"omega dot\"",
    "question_en": "What is the word count that is named omega dot?",
    "question_th": "การนับจำนวนคำที่เรียกว่าโอเมก้าดอทคืออะไร?",
    "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_en": "What is the total word count with a subframe count greater than 3?",
    "question_th": "จำนวนคำทั้งหมดที่มีจำนวนเฟรมย่อยมากกว่า 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_en": "What is the total grid with laps less than 2?",
    "question_th": "ตารางรวมที่มีรอบน้อยกว่า 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_en": "How much time is required for less than 35 laps and less than 10 grids?",
    "question_th": "น้อยกว่า 35 รอบและน้อยกว่า 10 กริด ต้องใช้เวลาเท่าไร?",
    "context": "CREATE TABLE table_name_9 (time_retired VARCHAR, laps VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_24 WHERE goal = 1",
    "question_en": "What is the Venue for Goal number 1?",
    "question_th": "สถานที่สำหรับเป้าหมายหมายเลข 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_en": "What was the airing date when the number of episodes was larger than 20 and had the genre of costume action?",
    "question_th": "ออกอากาศวันไหนที่มีจำนวนตอนมากกว่า 20 ตอนและมีแนวเครื่องแต่งกายแอ็คชั่น?",
    "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_en": "What are the number of episodes when the genre is modern drama and the highest average ratings points are 28?",
    "question_th": "แนวละครสมัยใหม่มีกี่ตอน และเรตติ้งเฉลี่ยสูงสุดคือ 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_en": "What year was S.A. Allward's theme that had an issue price of $16.95 released?",
    "question_th": "ธีมของ SA Allward ที่ออกจำหน่ายราคา 16.95 ดอลลาร์ในปีใด",
    "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_en": "What was the total mintage for years after 2002 that had a 85th Anniversary of Vimy Ridge theme?",
    "question_th": "จำนวนการผลิตทั้งหมดในช่วงหลายปีหลังจากปี 2002 ที่มีธีมครบรอบ 85 ปีของ Vimy Ridge คือเท่าใด",
    "context": "CREATE TABLE table_name_68 (mintage VARCHAR, theme VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT crowd FROM table_name_29 WHERE away_team = \"footscray\"",
    "question_en": "How many people attended the game where Footscray was away?",
    "question_th": "มีกี่คนที่เข้าร่วมเกมที่ Footscray ไม่อยู่?",
    "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_en": "How many pages associated with isbn 91-7713-035-9?",
    "question_th": "มีกี่หน้าที่เกี่ยวข้องกับ 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_en": "What home team played at MCG?",
    "question_th": "ทีมเหย้าทีมใดเล่นที่ 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_en": "What away team played at Kardinia Park?",
    "question_th": "ทีมเยือนทีมไหนเล่นที่คาร์ดิเนีย พาร์ก?",
    "context": "CREATE TABLE table_name_63 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_63 WHERE venue = \"lake oval\"",
    "question_en": "On what date did the match at Lake Oval take place?",
    "question_th": "แมตช์ที่ Lake Oval จัดขึ้นวันไหน?",
    "context": "CREATE TABLE table_name_63 (date VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_76 WHERE home_team = \"north melbourne\"",
    "question_en": "What wa the date of the North Melbourne home game?",
    "question_th": "เกมเหย้า เมลเบิร์นเหนือ จะเป็นวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_76 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT MIN(crowd) FROM table_name_1 WHERE venue = \"mcg\"",
    "question_en": "What was the lowest crowd size at MCG?",
    "question_th": "ขนาดฝูงชนต่ำสุดที่ MCG คือเท่าไร?",
    "context": "CREATE TABLE table_name_1 (crowd INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_60 WHERE date = \"december 23, 1995\"",
    "question_en": "Who did the Tampa Bay Buccaneers play on december 23, 1995?",
    "question_th": "แทมปาเบย์บัคคาเนียร์สลงเล่นกับใครเมื่อวันที่ 23 ธันวาคม 1995",
    "context": "CREATE TABLE table_name_60 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_2 WHERE week = \"4\"",
    "question_en": "On what date was Tampa Bay's Week 4 game?",
    "question_th": "เกมสัปดาห์ที่ 4 ของแทมปาเบย์คือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_2 (date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_87 WHERE date = \"november 19, 1995\"",
    "question_en": "What week was it on November 19, 1995?",
    "question_th": "วันที่ 19 พฤศจิกายน 2538 เป็นสัปดาห์อะไร?",
    "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_en": "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?",
    "question_th": "ทีมที่ได้เหรียญทองน้อยกว่า 2 เหรียญเงิน รวมมากกว่า 7 เหรียญ และน้อยกว่า 8 เหรียญทองแดง มากที่สุดคือทีมใด",
    "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_en": "What is the number of bronze that Scotland, which has less than 7 total medals, has?",
    "question_th": "สกอตแลนด์ซึ่งมีเหรียญทองแดงทั้งหมดไม่ถึง 7 เหรียญมีจำนวนเหรียญทองแดงเท่าไร?",
    "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_en": "What is the average silver medals a team that has 1 gold and more than 5 bronze has?",
    "question_th": "เหรียญเงินเฉลี่ยของทีมที่มี 1 เหรียญทองและมากกว่า 5 เหรียญทองแดงคือเท่าไร?",
    "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_en": "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?",
    "question_th": "ทีมที่ได้เงินมากกว่า 0 เหรียญทองแดง รวม 7 เหรียญ และน้อยกว่า 1 เหรียญทอง ได้เหรียญทองแดงเป็นจำนวนเท่าใด",
    "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_en": "What is the highest rank a team with 1 silver and less than 5 bronze medals has?",
    "question_th": "ทีมที่ได้ 1 เหรียญเงินและน้อยกว่า 5 เหรียญทองแดงมีอันดับสูงสุดคือทีมใด",
    "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_en": "What's the highest Pl GP with a Reg GP over 18?",
    "question_th": "Pl GP สูงสุดที่มี Reg GP มากกว่า 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_en": "on June 14, what was the winning score by the Devil rays in pro player stadium?",
    "question_th": "เมื่อวันที่ 14 มิ.ย. ปีศาจรังสีในสนามโปรเพลเยอร์คว้าชัยได้เท่าไหร่?",
    "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_en": "what was the score on june 16?",
    "question_th": "คะแนนวันที่ 16 มิถุนายนเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_77 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT winning_team FROM table_name_2 WHERE score = \"4-1\"",
    "question_en": "who won by a score of 4-1?",
    "question_th": "ใครชนะด้วยสกอร์ 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_en": "what was the score on june 29?",
    "question_th": "คะแนนวันที่ 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_en": "what was the score on june 29 when the devil rays los?",
    "question_th": "วันที่ 29 มิ.ย. ที่รังสีปีศาจแพ้คะแนนเท่าไหร่?",
    "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_en": "what was the score of the game at pro player stadium on june 14?",
    "question_th": "เกมที่โปรเพลเยอร์สเตเดี้ยมเมื่อวันที่ 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_en": "What is the average grid for jack brabham going over 32 laps?",
    "question_th": "ตารางเฉลี่ยของ แจ็ค บราแบม ที่วิ่งเกิน 32 รอบเป็นเท่าไหร่?",
    "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_en": "Which Res has a Method of decision (unanimous) and an Opponent of Wataru Sakata?",
    "question_th": "Res ใดมีวิธีการตัดสินใจ (เป็นเอกฉันท์) และฝ่ายตรงข้ามของ 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_en": "Which Record has the Res of win with the Event of extreme fighting 1?",
    "question_th": "บันทึกใดที่มี Res ของการชนะด้วยเหตุการณ์การต่อสู้สุดมันส์ 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_en": "What was the attendance where the record was 8-4?",
    "question_th": "ผู้เข้าร่วมที่มีสถิติ 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_en": "What is the largest total for a team with fewer than 12 bronze, 1 silver and 0 gold medals?",
    "question_th": "อะไรคือผลรวมที่ใหญ่ที่สุดสำหรับทีมที่มีน้อยกว่า 12 เหรียญทองแดง, 1 เหรียญเงิน และ 0 เหรียญทอง?",
    "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_en": "What is the largest total for a team with 1 bronze, 0 gold medals and ranking of 7?",
    "question_th": "ผลรวมที่ใหญ่ที่สุดสำหรับทีมที่มี 1 เหรียญทองแดง 0 เหรียญทอง และอันดับ 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_en": "What is the number of bronze medals when there are fewer than 0 silver medals?",
    "question_th": "เหรียญทองแดงมีจำนวนน้อยกว่า 0 เหรียญเงินเป็นจำนวนเท่าใด",
    "context": "CREATE TABLE table_name_19 (bronze INTEGER, silver INTEGER)"
  },
  {
    "answer": "SELECT MAX(silver) FROM table_name_32 WHERE total < 1",
    "question_en": "What is the highest number of silver medals for a team with total less than 1?",
    "question_th": "จำนวนเหรียญเงินสูงสุดสำหรับทีมที่มีคะแนนรวมน้อยกว่า 1 คือเท่าใด",
    "context": "CREATE TABLE table_name_32 (silver INTEGER, total INTEGER)"
  },
  {
    "answer": "SELECT player FROM table_name_68 WHERE hometown = \"tampa, florida\"",
    "question_en": "Which player is from Tampa, Florida?",
    "question_th": "นักเตะคนไหนมาจากแทมปา ฟลอริดา?",
    "context": "CREATE TABLE table_name_68 (player VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_85 WHERE player = \"jordan phillips\"",
    "question_en": "Which college is Jordan Phillips playing for?",
    "question_th": "Jordan Phillips เล่นให้กับวิทยาลัยใด",
    "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_en": "What college has a position of defensive line and Grant high school?",
    "question_th": "วิทยาลัยใดมีตำแหน่งแนวรับและโรงเรียนมัธยมแกรนท์?",
    "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_en": "What position is for Plant high school?",
    "question_th": "ตำแหน่งใดของโรงเรียนมัธยมพืช?",
    "context": "CREATE TABLE table_name_47 (position VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_94 WHERE school = \"dr. phillips high school\"",
    "question_en": "What position is for Dr. Phillips high school?",
    "question_th": "ตำแหน่งใดของโรงเรียนมัธยมปลายดร. ฟิลลิปส์",
    "context": "CREATE TABLE table_name_94 (position VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_name_19 WHERE player = \"ray drew\"",
    "question_en": "Which hometown has a player of Ray Drew?",
    "question_th": "บ้านเกิดไหนมีนักเตะ เรย์ ดรูว์ บ้าง?",
    "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_en": "What is the most byes with 11 wins and fewer than 1867 againsts?",
    "question_th": "บายมากที่สุดด้วยการชนะ 11 ครั้งและแพ้น้อยกว่าปี 1867 คืออะไร?",
    "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_en": "What are the draws when wins are fwewer than 9 and byes fewer than 2?",
    "question_th": "เสมอกันเมื่อชนะน้อยกว่า 9 และบายน้อยกว่า 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_en": "What are the fewest draws with less than 7 losses and Mitta United is the Tallagatta DFL?",
    "question_th": "เสมอน้อยที่สุดโดยแพ้น้อยกว่า 7 นัดและ Mitta United คือ 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_en": "What are the losses when there are 9 wins and more than 1326 against?",
    "question_th": "อะไรคือความสูญเสียเมื่อมีการชนะ 9 ครั้งและมากกว่า 1326 ต่อ?",
    "context": "CREATE TABLE table_name_47 (losses INTEGER, wins VARCHAR, against VARCHAR)"
  },
  {
    "answer": "SELECT decision FROM table_name_53 WHERE record = \"45–18–6\"",
    "question_en": "What was the decision of the Red Wings game when they had a record of 45–18–6?",
    "question_th": "อะไรคือการตัดสินใจของเกม Red Wings เมื่อพวกเขามีสถิติ 45–18–6?",
    "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_en": "Which R 51 O value corresponds to a D 42 O value of r 19?",
    "question_th": "ค่า R 51 O ใดสอดคล้องกับค่า D 42 O ของ 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_en": "What's the highest round that louisville drafted into when their pick was over 75?",
    "question_th": "รอบสูงสุดที่หลุยส์วิลล์ร่างไว้เมื่อตัวเลือกของพวกเขามีมากกว่า 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_en": "Where's the first round that southern mississippi shows up during the draft?",
    "question_th": "รอบแรกที่ Southern Mississippi ปรากฏตัวระหว่างร่างคือที่ไหน?",
    "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_en": "Cowansville has less than 16 regions and is a Brome-Missisquoi Municipality, what is their population?",
    "question_th": "โควานสวิลล์มีน้อยกว่า 16 ภูมิภาคและเป็นเทศบาลโบรม-มิสซิสควอย มีประชากรกี่คน",
    "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_en": "Saint-Blaise-Sur-Richelieu is smaller than 68.42 km^2, what is the population of this type M municipality?",
    "question_th": "Saint-Blaise-Sur-Richelieu มีขนาดเล็กกว่า 68.42 km^2 ประชากรของเทศบาลประเภท M นี้คือเท่าใด",
    "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_en": "What is the code for a Le Haut-Saint-Laurent municipality that has 16 or more regions?",
    "question_th": "รหัสสำหรับเทศบาล Le Haut-Saint-Laurent ที่มี 16 ภูมิภาคขึ้นไปคืออะไร",
    "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_en": "Where was the security pacific senior classic?",
    "question_th": "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_en": "What is the Home team score for the Away team of North Melbourne?",
    "question_th": "คะแนนทีมเหย้าของทีมเยือน นอร์ธ เมลเบิร์น เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_69 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_81 WHERE away_team = \"footscray\"",
    "question_en": "On what date the footscray's away game?",
    "question_th": "เกมเยือนของฟุตสเครย์วันไหน?",
    "context": "CREATE TABLE table_name_81 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_3 WHERE result = \"3–2\"",
    "question_en": "What was the date of the game with a result of 3–2?",
    "question_th": "วันที่ของเกมกับผล 3–2 คืออะไร?",
    "context": "CREATE TABLE table_name_3 (date VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_27 WHERE goal = 7",
    "question_en": "What was the date of the game with a goal of 7?",
    "question_th": "ในเกมวันที่เท่าไหร่โดยมีเป้าหมายที่ 7?",
    "context": "CREATE TABLE table_name_27 (date VARCHAR, goal VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_91 WHERE date = \"april 16\"",
    "question_en": "Who is the opponent on april 16?",
    "question_th": "คู่ต่อสู้ในวันที่ 16 เมษายนคือใคร?",
    "context": "CREATE TABLE table_name_91 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_43 WHERE date = \"april 23\"",
    "question_en": "What is the team's record on april 23?",
    "question_th": "บันทึกของทีมเมื่อวันที่ 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_en": "what is the competition when the result is loss in berlin with a score of 0-3?",
    "question_th": "การแข่งขันจะเป็นเช่นไรเมื่อผลแพ้ที่เบอร์ลินด้วยสกอร์ 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_en": "what is the date for the game in prague for the world group, consolation round competition?",
    "question_th": "วันที่สำหรับเกมที่กรุงปรากสำหรับกลุ่มโลก, การแข่งขันรอบปลอบใจคือวันที่เท่าไร?",
    "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_en": "What is the competition in tokyo with the result loss?",
    "question_th": "การแข่งขันในโตเกียวที่ผลการแข่งขันเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_3 (competition VARCHAR, location VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_84 WHERE date = \"not played\"",
    "question_en": "what is the year when the date is not played?",
    "question_th": "ไม่เล่นวันที่คือปีอะไร?",
    "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_en": "what is the score when the result is loss, the year is 1980 and the competition is world group, consolation round?",
    "question_th": "สกอร์เมื่อผลแพ้คือปี 1980 และแข่งขันกลุ่มโลกรอบปลอบใจ?",
    "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_en": "How many attended the game on march 16 after over 64 games?",
    "question_th": "มีกี่คนที่เข้าร่วมเกมในวันที่ 16 มีนาคมหลังจากผ่านไป 64 เกม?",
    "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ć (8)\" AND high_assists = \"josé calderón (9)\"",
    "question_en": "What numbered game featured a High rebounds of radoslav nesterović (8), and a High assists of josé calderón (9)?",
    "question_th": "เกมหมายเลขใดที่มีการรีบาวด์สูงของ ราโดสลาฟ เนสเตโรวิช (8) และแอสซิสต์สูงของ โฆเซ่ กัลเดรอน (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_en": "What were the sales for Dj Casper when he was in a position lower than 13?",
    "question_th": "ยอดขายของ Dj Casper เมื่อเขาอยู่ในตำแหน่งต่ำกว่า 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_en": "What was the score on January 12?",
    "question_th": "คะแนนวันที่ 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–5\"",
    "question_en": "Which home team had a visitor of Ottawa Senators with a score of 1–5?",
    "question_th": "ทีมเจ้าบ้านใดมีผู้มาเยือนของวุฒิสมาชิกออตตาวาด้วยคะแนน 1–5?",
    "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_en": "Which team is number 14 and had a franchise in 1993-2000?",
    "question_th": "ทีมใดคือทีมหมายเลข 14 และมีแฟรนไชส์ในปี 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_en": "Who was the player in Position G on the Petron Blaze Boosters and retired in 2000?",
    "question_th": "ใครคือผู้เล่นในตำแหน่ง G ในรายการ Petron Blaze Boosters และเกษียณในปี 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_en": "How many years did the team in slot number 9 have a franchise?",
    "question_th": "ทีมในช่องหมายเลข 9 มีแฟรนไชส์มากี่ปีแล้ว?",
    "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_en": "Tell me the highest matches for point 43 and final rank less than 7",
    "question_th": "บอกการแข่งขันสูงสุดสำหรับคะแนน 43 และอันดับสุดท้ายน้อยกว่า 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_en": "Tell me the average final rank for loe more than 10 and point less than 43",
    "question_th": "บอกอันดับสุดท้ายโดยเฉลี่ยสำหรับ loe มากกว่า 10 และคะแนนน้อยกว่า 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_en": "I want the average lose for lost point more than 16 and goal difference less than 37 and point less than 43",
    "question_th": "ฉันต้องการค่าเฉลี่ยการแพ้สำหรับแต้มที่เสียไปมากกว่า 16 และผลต่างประตูน้อยกว่า 37 และแต้มน้อยกว่า 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_en": "I want the total number of matches for draw less than 7 and lost point of 16 with lose more than 4",
    "question_th": "ฉันต้องการจำนวนการแข่งขันทั้งหมดสำหรับการเสมอน้อยกว่า 7 และแพ้แต้ม 16 โดยแพ้มากกว่า 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_en": "Tell me the highest point with lost point being 33 and league point less than 52",
    "question_th": "บอกจุดสูงสุดที่เสียไปคือ 33 และคะแนนลีกน้อยกว่า 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_en": "How many laps for a grid larger than 1 with a Time/Retired of halfshaft?",
    "question_th": "กี่รอบสำหรับกริดที่มีขนาดใหญ่กว่า 1 โดยมีเวลา/หมดครึ่งเพลา",
    "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_en": "What is the average grid that has over 8 laps, a Time/Retired of +2 laps, and peter gethin driving?",
    "question_th": "ตารางเฉลี่ยที่มีมากกว่า 8 รอบ, เวลา/เกษียณ +2 รอบ และปีเตอร์ เกธิน ขับรถเป็นเท่าใด",
    "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_en": "What is the low grid that has brm and over 54 laps?",
    "question_th": "กริดต่ำที่มี brm และมากกว่า 54 รอบคืออะไร?",
    "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_en": "What city has larger than 94.1 as a frequency?",
    "question_th": "เมืองใดมีความถี่มากกว่า 94.1",
    "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_en": "What is the Frequency MHz for the station with a call sign of w224bn?",
    "question_th": "ความถี่ MHz ของสถานีที่มีสัญญาณเรียกขาน 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_en": "What class is the city of black mountain, north carolina?",
    "question_th": "เมืองแบล็คเมาเทน รัฐนอร์ทแคโรไลนา อยู่ในระดับใด",
    "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_en": "What is the FCC frequency for the station w262al which has a Frequency MHz larger than 92.7?",
    "question_th": "ความถี่ FCC ของสถานี w262al ซึ่งมีความถี่ MHz มากกว่า 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_en": "What grad has a Time/Retired of + 1:24.3?",
    "question_th": "ผู้สำเร็จการศึกษาคนใดมีเวลา/เกษียณ + 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_en": "What is the low lap total for henri pescarolo with a grad larger than 6?",
    "question_th": "ผลรวมรอบต่ำของอองรี เปสคาโรโลที่มีผู้สำเร็จการศึกษามากกว่า 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_en": "What is the low lap total for a grid larger than 16 and has a Time/Retired of + 3:27.3?",
    "question_th": "ผลรวมรอบต่ำสำหรับกริดที่มากกว่า 16 และมีเวลา/เลิกเล่นเป็น + 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_en": "Name what was published in july 1934 with a setting of mars",
    "question_th": "ตั้งชื่อสิ่งที่ตีพิมพ์ในเดือนกรกฎาคม พ.ศ. 2477 โดยมีดาวอังคาร",
    "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_en": "Name the publication date when the fictional date is 2112",
    "question_th": "ตั้งชื่อวันที่ตีพิมพ์เมื่อวันที่สมมติคือ 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_en": "Name the title when the main characters are grant calthorpe, lee neilan and the published in of astounding stories",
    "question_th": "ตั้งชื่อชื่อเรื่องเมื่อตัวละครหลักคือ Grant Calthorpe, Lee neilan และตีพิมพ์ในเรื่องราวที่น่าประหลาดใจ",
    "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_en": "What club has over 1 runners-up and last won the final in 2010?",
    "question_th": "สโมสรใดมีรองชนะเลิศมากกว่า 1 คนและชนะรอบชิงชนะเลิศในปี 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_en": "How manywins for dunfermline athletic that has a total final appearances less than 2?",
    "question_th": "ดันเฟิร์มลิน แอธเลติก ที่ได้เข้าชิงชนะเลิศรวมน้อยกว่า 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_en": "What was the crowd size of the match featuring Hawthorn as the Away team?",
    "question_th": "จำนวนผู้ชมในการแข่งขันที่มีฮอว์ธอร์นเป็นทีมเยือนคือเท่าใด",
    "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_en": "What score did the home team of north melbourne get?",
    "question_th": "เจ้าบ้าน นอร์ธ เมลเบิร์น ได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_59 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_14 WHERE away_team = \"collingwood\"",
    "question_en": "Which home team played the away team of collingwood?",
    "question_th": "เจ้าบ้านทีมไหนเล่นทีมเยือนของคอลลิงวูด?",
    "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_en": "What method had Adriano Martins as an opponent and a time of 5:00?",
    "question_th": "Adriano Martins เป็นคู่ต่อสู้ด้วยวิธีใดและเวลา 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_en": "What is the total number of rounds when Drew Fickett was the opponent and the time is 5:00?",
    "question_th": "ดรูว์ ฟิคเก็ตต์ เป็นคู่ต่อสู้ทั้งหมดกี่ยก และเวลา 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_en": "What competition is located in bamako?",
    "question_th": "การแข่งขันใดที่ตั้งอยู่ในบามาโก?",
    "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_en": "What is the score from the game where Algeria is the opponent at Porto-Novo?",
    "question_th": "สกอร์จากเกมที่ แอลจีเรีย เจอกับ ปอร์โต้-โนโว เป็นอย่างไรบ้าง?",
    "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_en": "What is the mean road number when Moe Lemay is the player?",
    "question_th": "หมายเลขถนนเฉลี่ยเมื่อ โม เลอเมย์ เป็นผู้เล่นคืออะไร?",
    "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_en": "What is the sum number of Pl GP when the pick number is 178 and the road number is bigger than 9?",
    "question_th": "จำนวนรวมของ Pl GP เมื่อหมายเลขเลือกคือ 178 และหมายเลขถนนมากกว่า 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_en": "What is the total number of Pl GP when the pick number is 199 and the Reg GP is bigger than 0?",
    "question_th": "จำนวน Pl GP ทั้งหมดคือเท่าไรเมื่อหมายเลขการเลือกคือ 199 และ Reg GP มากกว่า 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_en": "What position did the player from East Texas State play?",
    "question_th": "ผู้เล่นจาก East Texas State เล่นตำแหน่งใด?",
    "context": "CREATE TABLE table_name_33 (position VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_71 WHERE week < 2",
    "question_en": "What day did they play before week 2?",
    "question_th": "พวกเขาเล่นวันไหนก่อนสัปดาห์ที่ 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_en": "What is the cons for lib dem of 8% and a lead of 27%",
    "question_th": "ข้อเสียสำหรับ lib dem 8% และโอกาสในการขาย 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_en": "I want the lead for others being 5%",
    "question_th": "ฉันต้องการให้คนอื่นนำ 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_en": "I want the plaid cymru for 4 may 2011",
    "question_th": "ฉันต้องการผ้าตาหมากรุกสำหรับวันที่ 4 พฤษภาคม 2554",
    "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_en": "I want the plaid cymru for Polling organisation/client of yougov/itv wales for 4 may 2011",
    "question_th": "ฉันต้องการ Cymru ลายสก็อตสำหรับองค์กร Polling/ลูกค้าของ yougov/itv wales สำหรับวันที่ 4 พฤษภาคม 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_en": "Name the others for cons of 21% and lead of 24%",
    "question_th": "ตั้งชื่ออื่น ๆ สำหรับข้อเสีย 21% และโอกาสในการขาย 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_en": "Tell me the dates conducted for plaid cymru of 19%",
    "question_th": "บอกฉันว่าวันที่ดำเนินการสำหรับลายสก๊อต cymru 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_en": "What was the score on 20/6/97?",
    "question_th": "คะแนนวันที่ 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_en": "What was the score on 20/6/97?",
    "question_th": "คะแนนวันที่ 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_en": "What were the tries on 14/6/97?",
    "question_th": "ความพยายามในวันที่ 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_en": "What were the goals on 3/10/97?",
    "question_th": "เป้าหมายในวันที่ 3/10/97 คืออะไร?",
    "context": "CREATE TABLE table_name_86 (goals VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT laps FROM table_name_67 WHERE grid = 3",
    "question_en": "Tell me the laps for 3 grids",
    "question_th": "บอกรอบ 3 ช่องมาครับ",
    "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_en": "What was the Away team score for Footscray?",
    "question_th": "ฟุตสเครย์ทีมเยือนได้คะแนนเท่าไหร่?",
    "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_en": "What was the Home team score for the team that played South Melbourne?",
    "question_th": "คะแนนทีมเหย้าของทีมที่เล่นเซาท์เมลเบิร์นคือเท่าไร?",
    "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_en": "Tell me the sum of interview for evening gown more than 8.37 and average of 8.363",
    "question_th": "บอกผลสัมภาษณ์ชุดราตรีมากกว่า 8.37 และค่าเฉลี่ย 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_en": "Name the total number of swimsuits for evening gowns less than 8.21 and average of 8.453 with interview less than 9.09",
    "question_th": "ระบุจำนวนชุดว่ายน้ำรวมชุดราตรีน้อยกว่า 8.21 และเฉลี่ย 8.453 โดยสัมภาษณ์น้อยกว่า 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_en": "Name the state with an evening gown more than 8.86 and interview less than 8.7 and swimsuit less than 8.96",
    "question_th": "ระบุชื่อรัฐด้วยชุดราตรีมากกว่า 8.86 และสัมภาษณ์น้อยกว่า 8.7 และชุดว่ายน้ำน้อยกว่า 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_en": "What is the total stellar mass of the type m0?",
    "question_th": "มวลดาวฤกษ์ประเภท m0 ทั้งหมดเป็นเท่าใด",
    "context": "CREATE TABLE table_name_57 (stellar_mass___m__ INTEGER, type VARCHAR)"
  },
  {
    "answer": "SELECT MAX(planetary_mass___m) AS ⊕__ FROM table_name_5 WHERE rv__cm_s_ = 65 AND period__days_ < 21",
    "question_en": "What is the highest planetary mass having an RV (cm/s) of 65 and a Period (days) less than 21?",
    "question_th": "มวลดาวเคราะห์ที่สูงที่สุดที่มี RV (cm/s) 65 และคาบ (วัน) น้อยกว่า 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⊕__ = 1 AND stellar_mass___m__ > 0.21 AND type = \"m0\"",
    "question_en": "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?",
    "question_th": "คาบที่เล็กที่สุด (วัน) ที่จะมีมวลดาวเคราะห์เท่ากับ 1 ซึ่งเป็นมวลดาวฤกษ์มากกว่า 0.21 และเป็นประเภท M0 คือเท่าใด",
    "context": "CREATE TABLE table_name_1 (period__days_ INTEGER, type VARCHAR, planetary_mass___m⊕__ VARCHAR, stellar_mass___m__ VARCHAR)"
  },
  {
    "answer": "SELECT AVG(word__number) FROM table_name_9 WHERE name = \"crs\" AND subframe__number < 2",
    "question_en": "What is the average word count with crs and subframes lesser than 2?",
    "question_th": "จำนวนคำโดยเฉลี่ยที่มี crs และเฟรมย่อยน้อยกว่า 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–22\"",
    "question_en": "What is the page count and word count greater than 5 with Bits of 18–22?",
    "question_th": "จำนวนหน้าและจำนวนคำที่มากกว่า 5 โดยมีบิต 18–22 เป็นเท่าใด",
    "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–22\"",
    "question_en": "What is the total subframe count with Bits of 18–22?",
    "question_th": "จำนวนเฟรมย่อยทั้งหมดที่มีบิต 18–22 คือเท่าใด",
    "context": "CREATE TABLE table_name_48 (subframe__number INTEGER, bits VARCHAR)"
  },
  {
    "answer": "SELECT SUM(attendance) FROM table_name_76 WHERE tie_no = 19",
    "question_en": "How many attended tie number 19?",
    "question_th": "มีผู้เข้าร่วมผูกเน็คไทหมายเลข 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_en": "Who was the away team in a tie no larger than 16 with forest green rovers at home?",
    "question_th": "ทีมเยือนที่เสมอกันไม่เกิน 16 นัด กับฟอเรสต์ กรีน โรเวอร์ ในบ้านคือใคร?",
    "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_en": "What is the highest attendance for games with stevenage borough at home?",
    "question_th": "สถิติเข้าชมเกมกับสตีฟเนจ โบโรห์ในบ้านสูงสุดคือเท่าไร?",
    "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_en": "What is the lowest height for Parent grasmoor when it has a Prom larger than 117?",
    "question_th": "ความสูงต่ำสุดสำหรับ Parent grasmoor คือเท่าไรเมื่อมี Prom ใหญ่กว่า 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_en": "Which Class is Peak Sail when it has a Prom larger than 30?",
    "question_th": "คลาสไหนที่เป็น Peak Sail เมื่อมี Prom ใหญ่กว่า 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_en": "Which Parent has height smaller than 756 and a Prom of 39?",
    "question_th": "ผู้ปกครองคนไหนที่มีความสูงน้อยกว่า 756 และพรหมที่ 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_en": "Who had the lowest interview score from South Dakota with an evening gown less than 8.513?",
    "question_th": "ใครมีคะแนนสัมภาษณ์ต่ำสุดจากเซาท์ดาโคตากับชุดราตรีน้อยกว่า 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_en": "What is the highest average of the contestant from Texas with an evening gown larger than 8.875?",
    "question_th": "ค่าเฉลี่ยสูงสุดของผู้เข้าแข่งขันจากเท็กซัสที่มีชุดราตรีมากกว่า 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_en": "What is the average interview score from Kentucky?",
    "question_th": "คะแนนสัมภาษณ์เฉลี่ยจากรัฐเคนตักกี้คือเท่าไร?",
    "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_en": "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?",
    "question_th": "คะแนนชุดราตรีต่ำสุดของผู้เข้าแข่งขันที่มีชุดราตรีน้อยกว่า 8.938 จากเท็กซัสและมีค่าเฉลี่ยน้อยกว่า 8.846 คืออะไร?",
    "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_en": "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?",
    "question_th": "คะแนนชุดว่ายน้ำสูงสุดของผู้เข้าแข่งขันที่มีชุดราตรีมากกว่า 9.175 และคะแนนสัมภาษณ์น้อยกว่า 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_en": "What is the lowest average of the contestant with an interview of 8.275 and an evening gown bigger than 8.7?",
    "question_th": "ค่าเฉลี่ยต่ำสุดของผู้เข้าแข่งขันที่สัมภาษณ์ 8.275 และชุดราตรีใหญ่กว่า 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_en": "How many attended the game at Arden Street Oval?",
    "question_th": "มีผู้เข้าร่วมการแข่งขันที่ 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_en": "What was the score for Geelong?",
    "question_th": "จีลองได้คะแนนเท่าไหร่?",
    "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_en": "What is the lowest year joined in the city of College Park at the Conference championships smaller than 0?",
    "question_th": "ปีต่ำสุดที่เข้าร่วมในเมืองคอลเลจพาร์คในการแข่งขัน Conference Championships ที่น้อยกว่า 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_en": "What is the latest year joined with a Conference championships of 5, and an Institution of university of north carolina?",
    "question_th": "ปีล่าสุดที่เข้าร่วมกับ Conference Championships 5 รายการและ 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_en": "What is the year joined with a Conference championships of 5, and a Nickname of wolfpack?",
    "question_th": "ปีที่เข้าร่วมกับ Conference Championships 5 คนและชื่อเล่นของ 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_en": "Which is the smallest Total produced with a model of FM H-15-44?",
    "question_th": "Total รุ่นใดที่ผลิตด้วย 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_en": "Name the date for attendance more than 20,268",
    "question_th": "ระบุวันที่เข้าร่วมประชุมเกิน 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_en": "Name the D 47 when it has a D 45 of d 32",
    "question_th": "ตั้งชื่อ D 47 เมื่อมี D 45 ของ 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_en": "Name the D 47 when it has a D 41 of r 36",
    "question_th": "ตั้งชื่อ D 47 เมื่อมี D 41 เป็น 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_en": "Name the D 47 when it has a D 48 of d 49 and D 42 of r 42",
    "question_th": "ตั้งชื่อ D 47 เมื่อมี D 48 จาก d 49 และ D 42 จาก 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_en": "Name the D 48 when it has a D 44 of d 33",
    "question_th": "ตั้งชื่อ D 48 เมื่อมี D 44 ของ 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_en": "Name the D 44 when it has a D 46 of d 31",
    "question_th": "ตั้งชื่อ D 44 เมื่อมี D 46 ของ 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_en": "Tell me the model with fuel or propulsion of diesel and orion manufacturer in 2005",
    "question_th": "บอกรุ่นพร้อมเชื้อเพลิงหรือแรงขับของผู้ผลิตดีเซลและโอไรออนปี 2548 หน่อย",
    "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_en": "Name the sum of quantity for before 2011 model slf-230",
    "question_th": "ตั้งชื่อผลรวมของปริมาณก่อนปี 2011 รุ่น 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_en": "Name the fleet series with a quantity of 5",
    "question_th": "ตั้งชื่อชุดกองเรือด้วยจำนวน 5",
    "context": "CREATE TABLE table_name_96 (fleet_series VARCHAR, quantity VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_57 WHERE race_title = \"mallala\"",
    "question_en": "When was the Mallala race held?",
    "question_th": "การแข่งขัน Mallala จัดขึ้นเมื่อไหร่?",
    "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_en": "Which driver won the Phillip Island Grand Prix Circuit?",
    "question_th": "นักแข่งคนไหนชนะการแข่งขัน 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_en": "What was the name of the driver that won the Lakeside race?",
    "question_th": "นักแข่งที่ชนะการแข่งขัน Lakeside ชื่ออะไร",
    "context": "CREATE TABLE table_name_44 (winner VARCHAR, race_title VARCHAR)"
  },
  {
    "answer": "SELECT clerk FROM table_name_14 WHERE highway_commissioners = \"albert lewis\"",
    "question_en": "Who was the clerk when the highway commissioner was Albert Lewis?",
    "question_th": "ใครคือเสมียนเมื่อ Albert Lewis กรรมาธิการทางหลวงคือใคร",
    "context": "CREATE TABLE table_name_14 (clerk VARCHAR, highway_commissioners VARCHAR)"
  },
  {
    "answer": "SELECT supervisor FROM table_name_43 WHERE years = \"1846\"",
    "question_en": "Who was the supervisor in the year 1846?",
    "question_th": "ใครเป็นหัวหน้างานในปี พ.ศ. 2389?",
    "context": "CREATE TABLE table_name_43 (supervisor VARCHAR, years VARCHAR)"
  },
  {
    "answer": "SELECT highway_commissioners FROM table_name_37 WHERE \"treasurer\" = \"treasurer\"",
    "question_en": "When Treasurer was treasurer, who was the highway commissioner?",
    "question_th": "เมื่อเหรัญญิกเป็นเหรัญญิก ใครเป็นกรรมาธิการทางหลวง?",
    "context": "CREATE TABLE table_name_37 (highway_commissioners VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(snatch) FROM table_name_73 WHERE total < 267.5",
    "question_en": "How many snatches were there with a total of 267.5?",
    "question_th": "มีฉกได้กี่ตัวรวม 267.5?",
    "context": "CREATE TABLE table_name_73 (snatch VARCHAR, total INTEGER)"
  },
  {
    "answer": "SELECT event FROM table_name_2 WHERE snatch = 122.5",
    "question_en": "What event has a 122.5 snatch rate?",
    "question_th": "เหตุการณ์ใดมีอัตราการฉกฉวย 122.5?",
    "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_en": "What is the lowest total that had less than 170 snatches, 56 kg events and less than 145 clean & jerk?",
    "question_th": "อะไรคือผลรวมต่ำสุดที่มีสแนตช์น้อยกว่า 170 ครั้ง 56 กก. และคลีนแอนด์กระตุกน้อยกว่า 145 ครั้ง?",
    "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_en": "What is the total that had an event of +105 kg and clean & jerk less than 227.5?",
    "question_th": "รวมน้ำหนัก +105 กก. และ Clean & Jerk น้อยกว่า 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_en": "What was the average attendance when the decision was price and montreal were the visitors?",
    "question_th": "ผู้เข้าร่วมโดยเฉลี่ยเมื่อตัดสินใจคือราคาและผู้เข้าชมมอนทรีออลคือเท่าใด",
    "context": "CREATE TABLE table_name_58 (attendance INTEGER, visitor VARCHAR, decision VARCHAR)"
  },
  {
    "answer": "SELECT MIN(attendance) FROM table_name_50 WHERE week = 2",
    "question_en": "What is the lowest attendance for week 2?",
    "question_th": "สัปดาห์ที่ 2 มีผู้เข้าร่วมน้อยที่สุดคือเท่าใด",
    "context": "CREATE TABLE table_name_50 (attendance INTEGER, week VARCHAR)"
  },
  {
    "answer": "SELECT shuttle_run__sec_ FROM table_name_36 WHERE grade = \"c\"",
    "question_en": "Tell me the shuttle run with grade c",
    "question_th": "บอกหน่อยรถรับส่งวิ่งเกรด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_en": "On January 15, what was the most in attendance?",
    "question_th": "วันที่ 15 มกราคม มีผู้เข้าร่วมงานมากที่สุด?",
    "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_en": "On January 29, who had the decision of Mason?",
    "question_th": "วันที่ 29 ม.ค. ใครเป็นคนตัดสินเมสัน?",
    "context": "CREATE TABLE table_name_17 (visitor VARCHAR, decision VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT time_retired FROM table_name_15 WHERE grid = 3",
    "question_en": "What was the time of the driver on grid 3?",
    "question_th": "คนขับในตารางที่ 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_en": "What was the retired time on someone who had 43 laps on a grip of 18?",
    "question_th": "เวลาเกษียณของคนที่มี 43 รอบจาก 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_en": "What was the fewest laps for somone who finished +18.445?",
    "question_th": "อะไรคือรอบที่น้อยที่สุดของคนที่จบ +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_en": "On which date was a game played at Junction Oval?",
    "question_th": "แข่งขันที่ Junction Oval วันไหน?",
    "context": "CREATE TABLE table_name_40 (date VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_13 WHERE home_team = \"essendon\"",
    "question_en": "On which date was Essendon the home team?",
    "question_th": "เอสเซนดอนเป็นเจ้าบ้านวันไหน?",
    "context": "CREATE TABLE table_name_13 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_72 WHERE date = \"october 27\"",
    "question_en": "What was the record on the game that was played on october 27?",
    "question_th": "สถิติของเกมที่เล่นเมื่อวันที่ 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_en": "How many receptions for players with over 647 yards and an under 14 yard average?",
    "question_th": "การรับผู้เล่นที่มีระยะเกิน 647 หลาและค่าเฉลี่ยต่ำกว่า 14 หลามีกี่ครั้ง?",
    "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_en": "What is the home teams score at Victoria Park?",
    "question_th": "คะแนนทีมเหย้าที่ วิคตอเรีย พาร์ค คืออะไร?",
    "context": "CREATE TABLE table_name_31 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_20 WHERE venue = \"mcg\"",
    "question_en": "What is the home team at the venue mcg?",
    "question_th": "เจ้าบ้านที่สนามเอ็มซีจีเป็นทีมไหน?",
    "context": "CREATE TABLE table_name_20 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT MAX(attendance) FROM table_name_56 WHERE home = \"lakers\"",
    "question_en": "What is the highest attendace of the game with the Lakers as the home team?",
    "question_th": "ผู้เข้าชมเกมมากที่สุดโดยมี Lakers เป็นเจ้าบ้านคืออะไร?",
    "context": "CREATE TABLE table_name_56 (attendance INTEGER, home VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_55 WHERE date = \"december 5, 2007\"",
    "question_en": "What is the record of the game on December 5, 2007?",
    "question_th": "บันทึกของเกมเมื่อวันที่ 5 ธันวาคม 2550 คืออะไร?",
    "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_en": "Who was the winner and nominees for the movie directed by cary joji fukunaga?",
    "question_th": "ใครคือผู้ชนะและผู้ได้รับการเสนอชื่อเข้าชิงภาพยนตร์ที่กำกับโดย 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_en": "What was the original title for the king's speech?",
    "question_th": "พระราชดำรัสของกษัตริย์มีชื่อเดิมว่าอะไร?",
    "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_en": "What was the original title of the king's speech?",
    "question_th": "พระราชดำรัสของกษัตริย์มีชื่อเดิมว่าอะไร?",
    "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_en": "Who was the director of the king's speech?",
    "question_th": "ใครเป็นผู้อำนวยการกล่าวสุนทรพจน์ของกษัตริย์?",
    "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_en": "What is the nationality of the goalie in Round 7?",
    "question_th": "ผู้รักษาประตูในรอบที่ 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_en": "What was the score from the game played on June 22?",
    "question_th": "คะแนนจากเกมที่เล่นเมื่อวันที่ 22 มิถุนายน เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_84 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT people_assisted FROM table_name_14 WHERE year = \"1997\"",
    "question_en": "How many people were assisted in 1997?",
    "question_th": "มีผู้ได้รับการช่วยเหลือกี่คนในปี 2540?",
    "context": "CREATE TABLE table_name_14 (people_assisted VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_15 WHERE countries_affected = \"usa\"",
    "question_en": "Which year did USA undergo a disaster?",
    "question_th": "สหรัฐอเมริกาประสบภัยพิบัติในปีใด",
    "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_en": "In the disaster in which 1,000 people were helped, what was the nature of help?",
    "question_th": "ในภัยพิบัติที่มีคนได้รับการช่วยเหลือ 1,000 คน ความช่วยเหลือมีลักษณะอย่างไร?",
    "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_en": "What is the pick number of Penn State?",
    "question_th": "หมายเลขเลือกของ Penn State คืออะไร?",
    "context": "CREATE TABLE table_name_2 (pick VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_2 WHERE pick = 112",
    "question_en": "Which Round is pick 112 in?",
    "question_th": "เลือก 112 เข้ารอบไหน?",
    "context": "CREATE TABLE table_name_2 (round VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT MAX(pick) FROM table_name_18 WHERE school = \"washington\"",
    "question_en": "What is the highest pick from Washington?",
    "question_th": "ตัวเลือกสูงสุดจากวอชิงตันคืออะไร?",
    "context": "CREATE TABLE table_name_18 (pick INTEGER, school VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(pick) FROM table_name_60 WHERE round = \"2\"",
    "question_en": "What is the total pick number from round 2?",
    "question_th": "จำนวนเลือกทั้งหมดจากรอบ 2 คือเท่าไร?",
    "context": "CREATE TABLE table_name_60 (pick VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(pick) FROM table_name_7 WHERE position = \"wide receiver\"",
    "question_en": "What is the total pick number for a wide receiver?",
    "question_th": "หมายเลขการเลือกรวมสำหรับตัวรับสัญญาณแบบกว้างคือเท่าไร?",
    "context": "CREATE TABLE table_name_7 (pick VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_85 WHERE player = \"thad jemison\"",
    "question_en": "What is Thad Jemison's position?",
    "question_th": "ทัด เจมิสัน มีจุดยืนอย่างไร?",
    "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_en": "What is the club or province of Girvan Dempsey, who has 74 caps?",
    "question_th": "เกอร์วาน เดมป์ซีย์ สโมสรหรือจังหวัดอะไรมี 74 แคป?",
    "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_en": "Which Ulster player has fewer than 49 caps and plays the wing position?",
    "question_th": "นักเตะอัลสเตอร์คนไหนที่ลงเล่นน้อยกว่า 49 แคปและเล่นตำแหน่งปีก?",
    "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_en": "Which player Munster from Munster is a fly-half?",
    "question_th": "ผู้เล่นคนไหนที่ Munster จาก Munster เป็นฟลายฮาล์ฟ?",
    "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_en": "What was time/retired with less than 67 laps and 6 points?",
    "question_th": "เวลา/เกษียณที่มีน้อยกว่า 67 รอบและ 6 แต้มคือเท่าใด",
    "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_en": "How many average laps for Alex Tagliani with more than 17 points?",
    "question_th": "Alex Tagliani มีคะแนนมากกว่า 17 แต้มโดยเฉลี่ยกี่รอบ?",
    "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_en": "What sum of Attendance has a Week smaller than 10, and a Result of l 30-21?",
    "question_th": "จำนวนผู้เข้าร่วมที่มีสัปดาห์น้อยกว่า 10 และผลลัพธ์เป็น 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_en": "Which Week has a Result of w 24-0, and an Attendance smaller than 10,000?",
    "question_th": "สัปดาห์ใดมีผลลัพธ์เป็น w 24-0 และมีผู้เข้าร่วมน้อยกว่า 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_en": "Which Attendance has an Opponent of green bay packers, and a Week larger than 10?",
    "question_th": "ผู้เข้าร่วมคนใดที่มีฝ่ายตรงข้ามกับกรีนเบย์แพ็คเกอร์ และหนึ่งสัปดาห์มากกว่า 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_en": "Where did fitzroy play as the home team?",
    "question_th": "ฟิตซ์รอยเล่นเป็นเจ้าบ้านที่ไหน?",
    "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_en": "Who was North Melbourne's home opponent?",
    "question_th": "คู่ต่อสู้เจ้าบ้านของนอร์ท เมลเบิร์นคือใคร?",
    "context": "CREATE TABLE table_name_33 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_93 WHERE home_team = \"essendon\"",
    "question_en": "Where did Essendon play as the home team?",
    "question_th": "เอสเซนดอนเล่นเป็นเจ้าบ้านที่ไหน?",
    "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_en": "When was the appointment date for the manager replaced by Lucien Favre?",
    "question_th": "วันที่นัดหมายสำหรับผู้จัดการทีมแทนที่โดย 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_en": "When is the appointment date for outgoing manager Petrik Sander?",
    "question_th": "เพทริค ซานเดอร์ ผู้จัดการทีมที่จะออกจากตำแหน่งคือวันไหน?",
    "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_en": "When was the appointment date for VFL Wolfsburg?",
    "question_th": "วีเอฟแอล โวล์ฟสบวร์ก นัดกันเมื่อไร?",
    "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šnikar\"",
    "question_en": "When was the departure date when a manager was replaced by Bojan Prašnikar?",
    "question_th": "วันออกเดินทางคือเมื่อใดที่ผู้จัดการถูกแทนที่โดย Bojan Prašnikar?",
    "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_en": "In 2011 which sport had the year award?",
    "question_th": "ในปี 2554 กีฬาใดได้รับรางวัลประจำปี?",
    "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_en": "How many laps did Giancarlo Fisichella do with a grid larger than 15?",
    "question_th": "Giancarlo Fisichella ทำได้กี่รอบกับกริดที่ใหญ่กว่า 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_en": "How many laps did Jos Verstappen do on Grid 2?",
    "question_th": "Jos Verstappen ทำไปกี่รอบในกริด 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_en": "David Coulthard was the driver in which grid?",
    "question_th": "David Coulthard เป็นนักแข่งในกริดใด",
    "context": "CREATE TABLE table_name_37 (grid VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT laps FROM table_name_80 WHERE grid = \"21\"",
    "question_en": "How many laps were there in grid 21?",
    "question_th": "ในตารางที่ 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_en": "When Essendon was the Home Team, what was the Away Team score?",
    "question_th": "เมื่อเอสเซนดอนเป็นเจ้าบ้าน สกอร์ทีมเยือนเท่าไหร่?",
    "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_en": "When the Crowd was larger than 25,000. what was the Home Team score?",
    "question_th": "เมื่อฝูงชนมีจำนวนมากกว่า 25,000 คน คะแนนทีมเจ้าบ้านเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_44 (home_team VARCHAR, crowd INTEGER)"
  },
  {
    "answer": "SELECT COUNT(bulls) FROM table_name_27 WHERE venue = \"old trafford\"",
    "question_en": "What was the total number for the Bulls when they were at Old Trafford?",
    "question_th": "จำนวนรวมของบูลส์เมื่อพวกเขาอยู่ที่โอลด์แทรฟฟอร์ดเป็นเท่าใด?",
    "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_en": "Where does Iceland rank with under 19 silvers?",
    "question_th": "ไอซ์แลนด์อยู่อันดับไหนด้วยเงินต่ำกว่า 19 เหรียญเงิน?",
    "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_en": "How many bronzes for nations with over 22 golds and ranked under 2?",
    "question_th": "มีกี่เหรียญทองแดงสำหรับประเทศที่มีมากกว่า 22 เหรียญทองและอันดับต่ำกว่า 2",
    "context": "CREATE TABLE table_name_66 (bronze INTEGER, gold VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT gold FROM table_name_56 WHERE total = 14",
    "question_en": "How many golds for the nation with 14 total?",
    "question_th": "รวม 14 ทองให้ชาติได้กี่เหรียญทอง?",
    "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_en": "How many bronzes for Iceland with over 2 silvers?",
    "question_th": "ไอซ์แลนด์มีเหรียญเงินมากกว่า 2 เหรียญได้กี่เหรียญ?",
    "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_en": "What is the earliest year that had under 26 points and a toyota v8 engine?",
    "question_th": "ปีแรกสุดที่มีคะแนนต่ำกว่า 26 คะแนนและมีเครื่องยนต์ toyota v8 คือปีใด",
    "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_en": "What is the low point total after 2006 with an m16 chassis?",
    "question_th": "จุดรวมต่ำสุดหลังปี 2549 ด้วยแชสซี m16 เป็นเท่าใด",
    "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_en": "How many golds for nations with over 0 silvers, over 1 total, and over 3 bronze?",
    "question_th": "ชาติที่มีมากกว่า 0 เหรียญเงิน รวมมากกว่า 1 เหรียญ และทองแดงมากกว่า 3 เหรียญมีกี่เหรียญทอง",
    "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_en": "What was the highest Pick # for the College of Simon Fraser?",
    "question_th": "ตัวเลือก # สูงสุดสำหรับวิทยาลัย 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_en": "What is the Pick # for the Edmonton Eskimos?",
    "question_th": "Pick # สำหรับ 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_en": "What is the Pick # for Ryan Strong?",
    "question_th": "Pick # สำหรับ Ryan Strong คืออะไร?",
    "context": "CREATE TABLE table_name_84 (pick__number INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_22 WHERE score = \"6–5 (10)\"",
    "question_en": "Who did the Rockies play at the game that had a score of 6–5 (10)?",
    "question_th": "เทือกเขาร็อกกี้เล่นเกมนี้กับใครด้วยคะแนน 6–5 (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_en": "What is the maximum power of engine code 2e?",
    "question_th": "รหัสเครื่องยนต์ 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_en": "What is the combined attendance of all games that had a result of w 35-14?",
    "question_th": "การเข้าชมรวมของเกมทั้งหมดที่มีผลการแข่งขัน 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_en": "What is the sum of NGC numbers for Constellation vela?",
    "question_th": "ผลรวมของหมายเลข NGC สำหรับ 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_en": "What is the Apparent magnitude of a globular cluster?",
    "question_th": "ขนาดปรากฏของกระจุกดาวทรงกลมเป็นเท่าใด",
    "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_en": "What is the total of Apparent magnitudes for an NGC number larger than 3293?",
    "question_th": "ขนาดปรากฏทั้งหมดสำหรับหมายเลข NGC ที่มากกว่า 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_en": "Tell me the money raised when 2Q has total receipts of $890,398",
    "question_th": "บอกฉันว่าเงินที่ได้รับเมื่อไตรมาส 2 มีรายรับรวม 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_en": "Tell me the total receipts for tom tancredo",
    "question_th": "บอกยอดรวมรายรับของทอม แทนเครโดมาหน่อย",
    "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_en": "Name the money spent for 2Q having candidate of john mccain",
    "question_th": "ตั้งชื่อเงินที่ใช้ไปสำหรับไตรมาส 2 โดยมีผู้สมัครชิงตำแหน่งจอห์น แมคเคน",
    "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_en": "Name the loans received for 2Q having total receipts of $25,328,694",
    "question_th": "ตั้งชื่อเงินกู้ที่ได้รับสำหรับไตรมาส 2 โดยมีรายรับรวม 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_en": "When collingwood was the away team, what was the home team?",
    "question_th": "เมื่อคอลลิงวูดเป็นทีมเยือน เจ้าบ้านเป็นทีมอะไร?",
    "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_en": "What was the largest crowd size at arden street oval?",
    "question_th": "ขนาดฝูงชนที่ใหญ่ที่สุดที่ 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_en": "What is the work number for Victor?",
    "question_th": "วิคเตอร์เบอร์ที่ทำงานอะไรคะ?",
    "context": "CREATE TABLE table_name_80 (works_number VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT AVG(built) FROM table_name_75 WHERE name = \"superb\"",
    "question_en": "What is the average building year for Superb?",
    "question_th": "ซูเพิร์บมีระยะเวลาก่อสร้างเฉลี่ยอยู่ที่เท่าไร?",
    "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_en": "What is the highest number of assists for players that are f/c and have under 13 rebounds?",
    "question_th": "จำนวนแอสซิสต์สูงสุดสำหรับผู้เล่นที่ f/c และทำได้ต่ำกว่า 13 รีบาวด์คือเท่าไร?",
    "context": "CREATE TABLE table_name_38 (asts INTEGER, pos VARCHAR, rebs VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_54 WHERE opponent = \"sanaz marand\"",
    "question_en": "What was the score in the match against Sanaz Marand?",
    "question_th": "แมตช์กับ ซานาซ มารานด์ ได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_54 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_80 WHERE date = \"21 may 2006\"",
    "question_en": "What tournament was held on 21 May 2006?",
    "question_th": "การแข่งขันใดจัดขึ้นในวันที่ 21 พฤษภาคม พ.ศ. 2549?",
    "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_en": "Who has the low lap total in a maserati with grid 2?",
    "question_th": "ใครมีรอบรวมต่ำใน Maserati ที่มีตารางที่ 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_en": "What is the highest round number with a time of 4:39?",
    "question_th": "เลขงวดสูงสุดด้วยเวลา 4:39 คือเลขอะไร?",
    "context": "CREATE TABLE table_name_28 (round INTEGER, time VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_87 WHERE time = \"0:13\"",
    "question_en": "Which record has a time of 0:13?",
    "question_th": "บันทึกใดมีเวลา 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_en": "What is the result for rounds under 2 against D.J. Linderman?",
    "question_th": "ผลการแข่งขันรอบต่ำกว่า 2 รอบกับ DJ 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_en": "What's the average crowd size when the Home team is melbourne?",
    "question_th": "ขนาดฝูงชนโดยเฉลี่ยเมื่อทีมเหย้าอยู่ที่เมลเบิร์นคือเท่าใด?",
    "context": "CREATE TABLE table_name_48 (crowd INTEGER, home_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_73 WHERE home_team = \"footscray\"",
    "question_en": "Which Venue is the one for the footscray Home team?",
    "question_th": "สถานที่ใดคือสถานที่สำหรับทีมฟุตสเครย์โฮม?",
    "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_en": "Which Year is the lowest when the Viewers are 13.7 million?",
    "question_th": "ปีไหนต่ำสุดเมื่อมีผู้ชม 13.7 ล้านคน?",
    "context": "CREATE TABLE table_name_7 (year INTEGER, viewers VARCHAR)"
  },
  {
    "answer": "SELECT ratings FROM table_name_23 WHERE year = 2013",
    "question_en": "How many Ratings did the 2013 Year have?",
    "question_th": "ปี 2556 มีเรตติ้งเท่าไร?",
    "context": "CREATE TABLE table_name_23 (ratings VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT network FROM table_name_67 WHERE viewers = \"16.0 million\"",
    "question_en": "Which Network has 16.0 million Viewers?",
    "question_th": "เครือข่ายใดมีผู้ชม 16.0 ล้านคน?",
    "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_en": "What Lap-by-lap has Chris Myers as the Pre-Race Host, a Year larger than 2008, and 9.9/22 as its Ratings?",
    "question_th": "Chris Myers เป็นเจ้าภาพก่อนการแข่งขันในรอบต่อรอบใด ซึ่งมากกว่าปี 2008 หนึ่งปี และเรตติ้งอยู่ที่ 9.9/22",
    "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_en": "Which Network has 17.5 million Viewers?",
    "question_th": "เครือข่ายใดมีผู้ชม 17.5 ล้านคน?",
    "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_en": "Who was driving the Maserati with a Grid smaller than 6, and a Time/Retired of +2 laps?",
    "question_th": "ใครเป็นผู้ขับ Maserati ด้วยกริดที่เล็กกว่า 6 และเวลา / เกษียณ +2 รอบ?",
    "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_en": "What's the average Grid for a Maserati with less than 80 laps, and a Time/Retired of +2 laps?",
    "question_th": "ตารางเฉลี่ยของ Maserati ที่วิ่งน้อยกว่า 80 รอบ และเวลา/เกษียณ +2 รอบเป็นเท่าใด",
    "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_en": "What were the lowest laps of Luigi Musso driving a Ferrari with a Grid larger than 2?",
    "question_th": "รอบต่ำสุดของ Luigi Musso ที่ขับ Ferrari โดยมีกริดใหญ่กว่า 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–21\"",
    "question_en": "What was the score of the Mariners game when they had a record of 56–21?",
    "question_th": "คะแนนของเกมกะลาสีเรือเมื่อพวกเขามีสถิติ 56–21 คืออะไร?",
    "context": "CREATE TABLE table_name_91 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_49 WHERE record = \"53–17\"",
    "question_en": "What was the date of the Mariners game when they had a record of 53–17?",
    "question_th": "วันที่ของเกม Mariners คือวันที่พวกเขามีสถิติ 53–17?",
    "context": "CREATE TABLE table_name_49 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_85 WHERE record = \"56–20\"",
    "question_en": "What was the attendance of the Mariners game when they had a record of 56–20?",
    "question_th": "การเข้าร่วมเกมกะลาสีเรือเป็นอย่างไรเมื่อพวกเขามีสถิติ 56–20?",
    "context": "CREATE TABLE table_name_85 (attendance VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_46 WHERE player = \"matt freeman\"",
    "question_en": "What college did Matt Freeman go to?",
    "question_th": "Matt Freeman เข้าเรียนที่วิทยาลัยใด",
    "context": "CREATE TABLE table_name_46 (college VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_67 WHERE position = \"placekicker\"",
    "question_en": "What college did the placekicker go to?",
    "question_th": "Placekicker เข้าเรียนที่วิทยาลัยใด",
    "context": "CREATE TABLE table_name_67 (college VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_35 WHERE school = \"warren central high school\"",
    "question_en": "What was the position of the player that went to warren central high school?",
    "question_th": "ตำแหน่งผู้เล่นที่ไปโรงเรียนมัธยมกลางวอร์เรนคืออะไร?",
    "context": "CREATE TABLE table_name_35 (position VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_19 WHERE march = 31",
    "question_en": "Which opponent's march was 31?",
    "question_th": "การเดินขบวนของคู่ต่อสู้คนใดคือ 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_en": "Which score's game was less than 69 when the march was bigger than 2 and the opponents were the New York Islanders?",
    "question_th": "เกมของสกอร์ใดที่น้อยกว่า 69 เมื่อการเดินขบวนใหญ่กว่า 2 และคู่ต่อสู้คือชาวเกาะนิวยอร์ก",
    "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_en": "Which opponent's game was less than 76 when the march was 10?",
    "question_th": "เกมของคู่ต่อสู้คนไหนน้อยกว่า 76 เมื่อเดือนมีนาคมเป็น 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_en": "What was North Melbourne's score as the home team?",
    "question_th": "นอร์ธ เมลเบิร์น สกอร์ของเจ้าบ้านเป็นเท่าไหร่?",
    "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_en": "What is the time/retired for phil hill with over 67 laps and a grad smaller than 18?",
    "question_th": "เวลา/เกษียณสำหรับฟิล ฮิลล์ที่มีรอบมากกว่า 67 รอบและผู้สำเร็จการศึกษาน้อยกว่า 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_en": "What was relegated in the 2006 season?",
    "question_th": "ฤดูกาล 2549 ตกชั้นอะไร?",
    "context": "CREATE TABLE table_name_48 (relegated VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_22 WHERE promoted = \"norwich union league\"",
    "question_en": "What season was Norwich Union League promoted?",
    "question_th": "นอริช ยูเนี่ยน ลีก เลื่อนชั้นในฤดูกาลใด?",
    "context": "CREATE TABLE table_name_22 (season VARCHAR, promoted VARCHAR)"
  },
  {
    "answer": "SELECT tv_series FROM table_name_33 WHERE species = \"boar\"",
    "question_en": "What show has a boar?",
    "question_th": "รายการอะไรมีหมูป่า?",
    "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_en": "What animal was yes for tv series and was a terrapins?",
    "question_th": "สัตว์ชนิดใดที่ใช่สำหรับละครโทรทัศน์และเป็นเต่า?",
    "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_en": "What is the smallest season for a tv series with a yes and human was the species?",
    "question_th": "ซีซั่นที่เล็กที่สุดสำหรับซีรีย์ทางทีวีที่มีค่าใช่และมนุษย์คือสายพันธุ์อะไร?",
    "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_en": "What is the mate for Last Appearance of bully, bully, bully (3x13) for the animal named hollow/holly later than season 1?",
    "question_th": "คู่สำหรับ Last Appearance of bully, bully, bully (3x13) สำหรับสัตว์ชื่อ Hollow/holly หลังซีซั่น 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_en": "How many grids for peter collins?",
    "question_th": "ปีเตอร์ คอลลินส์มีกี่กริด?",
    "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_en": "What is the high grid for ferrari's with 2 laps?",
    "question_th": "ตารางไฮกริดของเฟอร์รารีที่มี 2 รอบคืออะไร?",
    "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_en": "Who drove the car with over 66 laps with a grid of 5?",
    "question_th": "ใครขับรถเกิน 66 รอบด้วยตาราง 5?",
    "context": "CREATE TABLE table_name_27 (driver VARCHAR, laps VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_30 WHERE tournament = \"orange\"",
    "question_en": "When was the tournament at Orange?",
    "question_th": "การแข่งขันที่ Orange จัดขึ้นเมื่อไหร่?",
    "context": "CREATE TABLE table_name_30 (date VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_32 WHERE tournament = \"sunderland\"",
    "question_en": "What kind of surface was the Tournament at Sunderland played on?",
    "question_th": "การแข่งขันที่ซันเดอร์แลนด์เล่นบนพื้นผิวประเภทใด?",
    "context": "CREATE TABLE table_name_32 (surface VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_56 WHERE tournament = \"pune\"",
    "question_en": "What kind of surface was the tournament at Pune played on?",
    "question_th": "การแข่งขันที่ปูเน่เล่นบนพื้นผิวประเภทใด?",
    "context": "CREATE TABLE table_name_56 (surface VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_80 WHERE opponent = \"isha lakhani\"",
    "question_en": "What was the score of the tournament against Isha Lakhani?",
    "question_th": "คะแนนของทัวร์นาเมนท์กับ อิชา ลัคคานี อยู่ที่เท่าไร?",
    "context": "CREATE TABLE table_name_80 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_21 WHERE record = \"8-25-7\"",
    "question_en": "What was the date that ended in a record of 8-25-7?",
    "question_th": "วันที่สิ้นสุดด้วยสถิติ 8-25-7 คืออะไร?",
    "context": "CREATE TABLE table_name_21 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_22 WHERE visitor = \"toronto\"",
    "question_en": "What was the home team when the visiting team was Toronto?",
    "question_th": "ทีมเจ้าบ้านเมื่อทีมเยือนคือโตรอนโตคือทีมอะไร?",
    "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_en": "What College/junior/club team (league) did mitch fadden play for?",
    "question_th": "มิทช์ แฟดเดน เล่นให้กับทีมวิทยาลัย/จูเนียร์/สโมสร (ลีก) อะไร?",
    "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_en": "When is the last week that has a result of a w 34-21?",
    "question_th": "อาทิตย์สุดท้ายที่มีผล aw 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_en": "What is the method where there is a loss with time 5:00?",
    "question_th": "ขาดทุนด้วยเวลา 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_en": "What was the method when the time was 1:01?",
    "question_th": "เมื่อถึงเวลา 1:01 มีวิธีใดบ้าง?",
    "context": "CREATE TABLE table_name_51 (method VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT crowd FROM table_name_26 WHERE away_team = \"footscray\"",
    "question_en": "What was the crowd when the away team is footscray?",
    "question_th": "ฝูงชนเป็นอย่างไรบ้างเมื่อทีมเยือนมีรอยเท้า?",
    "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_en": "What is the home team score at lake oval?",
    "question_th": "สกอร์ทีมเหย้าที่เลคโอวัลเป็นเท่าไหร่?",
    "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_en": "What was the score for south melbourne at home?",
    "question_th": "เซาธ์ เมลเบิร์น ในบ้านได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_2 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_name_84 WHERE team = \"lakers\"",
    "question_en": "How many high assists did the Lakers have?",
    "question_th": "เลเกอร์สทำแอสซิสต์ได้มากขนาดไหน?",
    "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_en": "WHat was the result of the friendly match that was played on october 8, 2012?",
    "question_th": "ผลการแข่งขันกระชับมิตรที่เล่นเมื่อวันที่ 8 ตุลาคม 2555 เป็นอย่างไร?",
    "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_en": "What was the name of the competition that took place on may 31, 2008?",
    "question_th": "การแข่งขันที่เกิดขึ้นในวันที่ 31 พฤษภาคม 2551 มีชื่อว่าอะไร?",
    "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_en": "During the loss on march 26, 2005, what was the venue where the match was played?",
    "question_th": "ระหว่างการแพ้เมื่อวันที่ 26 มีนาคม พ.ศ. 2548 สนามที่เล่นคือที่ใด?",
    "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_en": "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?",
    "question_th": "จำนวนรอบเฉลี่ยที่มีเวลา/เกษียณเป็น +1 รอบ, นักแข่งของ olivier panis และตารางที่มากกว่า 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_en": "What constructor has under 62 laps, a Time/Retired of gearbox, a Grid larger than 1, and pedro diniz driving?",
    "question_th": "ตัวสร้างใดที่มีรอบต่ำกว่า 62 รอบ เวลา/เลิกใช้กระปุกเกียร์ ตารางที่ใหญ่กว่า 1 และการขับขี่แบบเปโดรดินิซ",
    "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_en": "What is the time/retired with 60 laps and a grid 19?",
    "question_th": "เวลา / เกษียณด้วย 60 รอบและตาราง 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_en": "What did the away team score when the home team was south melbourne?",
    "question_th": "ทีมเยือนทำประตูได้เมื่อเจ้าบ้านอยู่เซาท์เมลเบิร์น?",
    "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_en": "Who was the away team at western oval?",
    "question_th": "ทีมเยือนในเวสเทิร์นโอวัลคือใคร?",
    "context": "CREATE TABLE table_name_28 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_13 WHERE venue = \"vfl park\"",
    "question_en": "What team played away at vfl park?",
    "question_th": "ทีมไหนไปเล่นที่วีเอฟแอล พาร์ค?",
    "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_en": "What did carlton score while away?",
    "question_th": "คาร์ลตันทำประตูอะไรได้บ้างระหว่างทีมเยือน?",
    "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_en": "Who was the home team in the game where North Melbourne was the away team?",
    "question_th": "ใครคือเจ้าบ้านในเกมที่นอร์ท เมลเบิร์น เป็นทีมเยือน?",
    "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_en": "Who was the home team that played in Victoria Park?",
    "question_th": "ทีมเหย้าที่เล่นในวิคตอเรียพาร์คคือใคร?",
    "context": "CREATE TABLE table_name_32 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT MAX(crowd) FROM table_name_74 WHERE venue = \"victoria park\"",
    "question_en": "What was the highest crowd in Victoria Park?",
    "question_th": "วิคตอเรีย พาร์ค มีผู้คนหนาแน่นที่สุดที่ไหนบ้าง?",
    "context": "CREATE TABLE table_name_74 (crowd INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(crowd) FROM table_name_5 WHERE away_team = \"collingwood\"",
    "question_en": "How many people were in the crowd with the away team being collingwood?",
    "question_th": "มีกี่คนที่อยู่ในฝูงชน โดยทีมเยือนเป็นคอลลิงวูด?",
    "context": "CREATE TABLE table_name_5 (crowd VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_69 WHERE home_team = \"essendon\"",
    "question_en": "Name the away team for essendon",
    "question_th": "ตั้งชื่อทีมเยือนให้เอสเซนดอน",
    "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_en": "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?",
    "question_th": "จำนวนรอบที่ใหญ่ที่สุดโดยมีกริดมากกว่า 14, เวลา/เกษียณ + 2 รอบ และนักขับของเฮลมุทมาร์โกคือเท่าใด",
    "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_en": "Which grid has less than 11 laps, and a Time/Retired of accident?",
    "question_th": "ตารางใดที่มีเวลาน้อยกว่า 11 รอบ และเวลา/ออกจากอุบัติเหตุ",
    "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_en": "What is the total number of grids for peter gethin?",
    "question_th": "จำนวนกริดทั้งหมดของปีเตอร์ เกธินคือเท่าไร?",
    "context": "CREATE TABLE table_name_58 (grid INTEGER, driver VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(grid) FROM table_name_6 WHERE driver = \"dave walker\"",
    "question_en": "How many grids does dave walker have?",
    "question_th": "Dave Walker มีกริดกี่เส้น?",
    "context": "CREATE TABLE table_name_6 (grid VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT MIN(grid) FROM table_name_17 WHERE constructor = \"matra\"",
    "question_en": "What is the lowest grid with matra as constructor?",
    "question_th": "ตารางต่ำสุดที่มี matra เป็นตัวสร้างคืออะไร?",
    "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_en": "What is the catalogue number for the song that is 3:17 and was released 9/21/71?",
    "question_th": "หมายเลขแคตตาล็อกของเพลงที่เป็น 3:17 และเผยแพร่เมื่อวันที่ 21/09/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_en": "What is the highest track for Burning Love?",
    "question_th": "เพลงไหนของ 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_en": "What is Heart of Rome's catalogue number?",
    "question_th": "หมายเลขแค็ตตาล็อกของ Heart of Rome คืออะไร",
    "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_en": "Which song was released 12/8/70 with a time of 2:54?",
    "question_th": "เพลงไหนปล่อยเมื่อ 12/8/70 ด้วยเวลา 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_en": "How many laps did Ricardo Zonta have?",
    "question_th": "ริคาร์โด้ ซอนต้า วิ่งได้กี่รอบ?",
    "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_en": "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?",
    "question_th": "ชื่อของผู้ขับขี่ที่มีเส้นตารางน้อยกว่า 14, รอบน้อยกว่า 53 และเวลา/เกษียณของการชนกัน และผู้สร้างเฟอร์รารีคืออะไร",
    "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_en": "What is the grid number with less than 52 laps and a Time/Retired of collision, and a Constructor of arrows - supertec?",
    "question_th": "หมายเลขกริดที่มีรอบน้อยกว่า 52 รอบและเวลา/เกษียณของการชนคืออะไร และตัวสร้างลูกศร - 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_en": "What is the average Laps for a grid smaller than 17, and a Constructor of williams - bmw, driven by jenson button?",
    "question_th": "รอบเฉลี่ยสำหรับกริดที่เล็กกว่า 17 คืออะไรและตัวสร้างของ williams - bmw ขับเคลื่อนด้วยปุ่ม jenson คืออะไร",
    "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_en": "When the Venue was victoria park, what was the Away team score?",
    "question_th": "เมื่อสนามคือวิคตอเรีย พาร์ค ทีมเยือนได้คะแนนเท่าไหร่?",
    "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_en": "When the Home team of carlton played, what was their score?",
    "question_th": "เมื่อทีมเจ้าบ้าน คาร์ลตัน ลงเล่น สกอร์ของพวกเขาเท่าไหร่?",
    "context": "CREATE TABLE table_name_93 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT lost FROM table_name_20 WHERE tied = \"0\" AND drawn = \"47\"",
    "question_en": "Tell me the lost with tie of 0 and drawn of 47",
    "question_th": "บอกหน่อยว่าแพ้ เสมอ 0 เสมอ 47",
    "context": "CREATE TABLE table_name_20 (lost VARCHAR, tied VARCHAR, drawn VARCHAR)"
  },
  {
    "answer": "SELECT tied FROM table_name_1 WHERE drawn = \"71\"",
    "question_en": "Name the tie that has 71 drawn",
    "question_th": "ตั้งชื่อเสมอว่าได้ 71 เสมอกัน",
    "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_en": "I want to know the drawn that has a tie of 0 and the player is chris cowdrey",
    "question_th": "ฉันต้องการทราบผลการจับฉลากที่เสมอกันที่ 0 และผู้เล่นคือ คริส คาวเดรย์",
    "context": "CREATE TABLE table_name_25 (drawn VARCHAR, tied VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT tied FROM table_name_46 WHERE drawn = \"47\"",
    "question_en": "I want to know the tie for drawn of 47",
    "question_th": "อยากทราบผลเสมอกันของงวด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_en": "What name shows as private authority and hibiscus and bays local board ?",
    "question_th": "ชื่ออะไรที่แสดงเป็นหน่วยงานเอกชนและคณะกรรมการท้องถิ่นชบาและอ่าว ?",
    "context": "CREATE TABLE table_name_70 (name VARCHAR, authority VARCHAR, local_board VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_36 WHERE local_board = \"albert–eden\" AND decile = \"9\"",
    "question_en": "What is the name when the local board is albert–eden, and a Decile of 9?",
    "question_th": "ชื่อคณะกรรมการท้องถิ่นคืออัลเบิร์ต – เอเดน และ Decile ของ 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_en": "What is the name of the suburb with a roll of 741?",
    "question_th": "ชานเมืองที่มีม้วน 741 ชื่ออะไร?",
    "context": "CREATE TABLE table_name_60 (suburb VARCHAR, roll VARCHAR)"
  },
  {
    "answer": "SELECT gender FROM table_name_49 WHERE local_board = \"albert–eden\" AND roll > 232 AND decile = \"5\"",
    "question_en": "What gender has a local board of albert–eden with a roll of more than 232 and Decile of 5?",
    "question_th": "เพศใดที่มีคณะกรรมการท้องถิ่นของ Albert – Eden ที่มีคะแนนมากกว่า 232 และ Decile ที่ 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_en": "What is the status of the torre reforma building that is over 44 stories in mexico city?",
    "question_th": "สถานะของอาคาร Torre Reforma สูง 44 ชั้นในเม็กซิโกซิตี้เป็นอย่างไร?",
    "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_en": "How tall is the 52 story building?",
    "question_th": "ตึกสูง 52 ชั้นสูงเท่าไหร่?",
    "context": "CREATE TABLE table_name_82 (height VARCHAR, stories VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(stories) FROM table_name_99 WHERE building = \"torre reforma\"",
    "question_en": "How many stories is the torre reforma building?",
    "question_th": "อาคาร Torre Reforma มีกี่ชั้น?",
    "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_en": "What is the Nationality of Mike Gatting, who played 551 games?",
    "question_th": "ไมค์ แกตติง ที่เล่นเกมไป 551 เกม สัญชาติอะไร?",
    "context": "CREATE TABLE table_name_7 (nationality VARCHAR, games VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_37 WHERE games = \"505\"",
    "question_en": "What is the nationality of the player who played 505 games?",
    "question_th": "ผู้เล่นที่เล่นเกม 505 มีสัญชาติอะไร?",
    "context": "CREATE TABLE table_name_37 (nationality VARCHAR, games VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_47 WHERE player = \"wasim akram\"",
    "question_en": "What is Wasim Akram's rank?",
    "question_th": "Wasim Akram มียศอะไร?",
    "context": "CREATE TABLE table_name_47 (rank VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_87 WHERE player = \"graham gooch\"",
    "question_en": "What is Graham Gooch's nationality?",
    "question_th": "เกรแฮม กูชมีสัญชาติอะไร",
    "context": "CREATE TABLE table_name_87 (nationality VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(average_attendance) FROM table_name_94 WHERE season = \"2009\"",
    "question_en": "What was the highest average attendance in the 2009 season?",
    "question_th": "ผู้เข้าร่วมเฉลี่ยสูงสุดในฤดูกาล 2009 คือเท่าใด",
    "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_en": "What's the total attendance in rink hockey when the average attendance was smaller than 4850?",
    "question_th": "จำนวนผู้เข้าร่วมในลานสเก็ตฮอกกี้เมื่อผู้เข้าร่วมเฉลี่ยน้อยกว่า 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_en": "What's the average attendance of the league with a total attendance of 2268508?",
    "question_th": "ผู้เข้าชมลีกโดยเฉลี่ยโดยมีผู้เข้าร่วมทั้งหมด 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_en": "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?",
    "question_th": "คุณช่วยบอกคะแนนเฉลี่ยที่มี Pts/เกมมากกว่า 4 และ Nation of England และเกมที่น้อยกว่า 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_en": "Can you tell me the lowest Pts/game that has the Games larger than 6?",
    "question_th": "คุณช่วยบอกฉันได้ไหมว่า Pts/เกมต่ำสุดที่มีเกมใหญ่กว่า 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_en": "Can you tell me the lowest Pts/game that has the Name of philippa tuttiett, and the Points larger then 6?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าคะแนน/เกมต่ำสุดที่มีชื่อของ philippa tuttiett และคะแนนมากกว่า 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_en": "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?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าเกมที่ต่ำที่สุดที่มี Pts/เกมมากกว่า 1.4 และแต้ม 20 และชื่อของ 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_en": "What was the lowest production code value in series #10?",
    "question_th": "ค่ารหัสการผลิตต่ำสุดในซีรีส์ #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_en": "What is the Absorbtion (in nanometers) of the color Orange?",
    "question_th": "สีส้มมีค่าการดูดซึม (เป็นนาโนเมตร) เท่าไร?",
    "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_en": "What is the Absorbtion (in nanometers) of the color Violet with an emission of 432 nm?",
    "question_th": "ค่าการดูดซับ (เป็นนาโนเมตร) ของสีม่วงที่มีการแผ่รังสี 432 นาโนเมตรคืออะไร?",
    "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_en": "Which Emission (in nanometers) has an absorbtion of 593 nm?",
    "question_th": "การปล่อยก๊าซใด (เป็นนาโนเมตร) มีการดูดซับ 593 นาโนเมตร",
    "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_en": "Which Emission (in nanometers) that has a molar mass of 1078 g/mol?",
    "question_th": "การปล่อยก๊าซเรือนกระจกชนิดใด (เป็นนาโนเมตร) ที่มีมวลโมลาร์ 1,078 กรัมต่อโมล",
    "context": "CREATE TABLE table_name_86 (emit__nm_ VARCHAR, mass__g_mol_ VARCHAR)"
  },
  {
    "answer": "SELECT ε__m__1_cm__1__ FROM table_name_79 WHERE mass__g_mol_ = \"1008\"",
    "question_en": "Which ε (M -1 cm -1) has a molar mass of 1008 g/mol?",
    "question_th": "ε (M -1 cm -1) ใดมีมวลโมลเท่ากับ 1,008 กรัม/โมล",
    "context": "CREATE TABLE table_name_79 (ε__m__1_cm__1__ VARCHAR, mass__g_mol_ VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_87 WHERE home_team = \"fitzroy\"",
    "question_en": "What was the away team that played against Fitzroy?",
    "question_th": "ทีมเยือนที่เจอกับฟิตซ์รอยคือทีมอะไร?",
    "context": "CREATE TABLE table_name_87 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_66 WHERE home_team = \"essendon\"",
    "question_en": "On what date was the Essendon home match?",
    "question_th": "เอสเซนดอน นัดเหย้าวันไหน?",
    "context": "CREATE TABLE table_name_66 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_49 WHERE competition = \"friendly\"",
    "question_en": "On what Date did the friendly Competition take place?",
    "question_th": "การแข่งขันกระชับมิตรจัดขึ้นวันไหน?",
    "context": "CREATE TABLE table_name_49 (date VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_92 WHERE game_site = \"hoosier dome\"",
    "question_en": "What was the Attendance of the Game at Hoosier Dome?",
    "question_th": "ผู้เข้าร่วมเกมที่ 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_en": "What was the Result of the Game at the Meadowlands on 1991-09-01?",
    "question_th": "ผลลัพธ์ของเกมที่ Meadowlands เมื่อวันที่ 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_en": "What was the Attendance in Week 17?",
    "question_th": "การเข้าร่วมในสัปดาห์ที่ 17 คืออะไร?",
    "context": "CREATE TABLE table_name_70 (attendance VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_52 WHERE date = \"1991-10-13\"",
    "question_en": "Which Opponent was played on 1991-10-13?",
    "question_th": "ฝ่ายตรงข้ามคนใดที่เล่นในวันที่ 1991-10-13?",
    "context": "CREATE TABLE table_name_52 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT number FROM table_name_77 WHERE position = \"k\"",
    "question_en": "What is the number for the player that has a k position?",
    "question_th": "ผู้เล่นที่มีตำแหน่ง AK คือหมายเลขอะไร?",
    "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_en": "What is the venue for the friendly competition and score of 4-0?",
    "question_th": "สนามไหนคือเกมกระชับมิตรและสกอร์ 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_en": "Name the score for 7 may 2000",
    "question_th": "ตั้งชื่อคะแนนสำหรับวันที่ 7 พฤษภาคม พ.ศ. 2543",
    "context": "CREATE TABLE table_name_18 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_91 WHERE competition = \"uncaf nations cup 2009\"",
    "question_en": "Name the date of the uncaf nations cup 2009",
    "question_th": "ตั้งชื่อวันที่ 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_en": "What date were there more than 19,600 people in attendance?",
    "question_th": "มีผู้เข้าร่วมมากกว่า 19,600 คนในวันไหน?",
    "context": "CREATE TABLE table_name_49 (date VARCHAR, attendance INTEGER)"
  },
  {
    "answer": "SELECT crowd FROM table_name_12 WHERE home_team = \"st kilda\"",
    "question_en": "During st kilda's home game, what was the number of people in the crowd?",
    "question_th": "ระหว่างเกมเหย้าของเซนต์คิลดา คนดูเยอะขนาดไหน?",
    "context": "CREATE TABLE table_name_12 (crowd VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT time_retired FROM table_name_89 WHERE constructor = \"source:\"",
    "question_en": "What's the time/retired for constructor source:?",
    "question_th": "เวลา / เลิกใช้สำหรับแหล่งที่มาของคอนสตรัคเตอร์คือเท่าไร:?",
    "context": "CREATE TABLE table_name_89 (time_retired VARCHAR, constructor VARCHAR)"
  },
  {
    "answer": "SELECT laps FROM table_name_71 WHERE driver = \"luca badoer\"",
    "question_en": "How many laps does luca badoer have?",
    "question_th": "ลูก้า บาโดเออร์ วิ่งได้กี่รอบ?",
    "context": "CREATE TABLE table_name_71 (laps VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT time_retired FROM table_name_98 WHERE grid = \"14\"",
    "question_en": "What's the time/retired for a grid of 14?",
    "question_th": "เวลา/เกษียณสำหรับตารางที่ 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_en": "How many laps does jean-christophe boullion have with a time/retired of +1 lap?",
    "question_th": "บูลเลียนฌอง-คริสตอฟมีกี่รอบโดยมีเวลา/เกษียณ +1 รอบ",
    "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_en": "How many laps does roberto moreno have?",
    "question_th": "โรแบร์โต โมเรโน วิ่งได้กี่รอบ?",
    "context": "CREATE TABLE table_name_51 (laps VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT grid FROM table_name_93 WHERE laps = \"2\"",
    "question_en": "What grid has 2 laps?",
    "question_th": "ตารางใดมี 2 รอบ?",
    "context": "CREATE TABLE table_name_93 (grid VARCHAR, laps VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_6 WHERE venue = \"windy hill\"",
    "question_en": "On what date was a game played at Windy Hill?",
    "question_th": "วินดี้ ฮิลล์ แข่งขันกันวันไหน?",
    "context": "CREATE TABLE table_name_6 (date VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_52 WHERE away_team = \"south melbourne\"",
    "question_en": "Where does South Melbourne play?",
    "question_th": "เซาท์ เมลเบิร์น เล่นที่ไหน?",
    "context": "CREATE TABLE table_name_52 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_10 WHERE away_team = \"richmond\"",
    "question_en": "Where did Richmond play?",
    "question_th": "ริชมอนด์เล่นที่ไหน?",
    "context": "CREATE TABLE table_name_10 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_90 WHERE venue = \"western oval\"",
    "question_en": "Which Team plays at Western Oval?",
    "question_th": "ทีมใดเล่นที่ 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_en": "What is the average crowd attendance for Collingwood?",
    "question_th": "จำนวนผู้เข้าร่วมโดยเฉลี่ยของ Collingwood คือเท่าใด",
    "context": "CREATE TABLE table_name_92 (crowd INTEGER, home_team VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_97 WHERE opponent_in_final = \"alizé cornet janette husárová\"",
    "question_en": "Name the outcome for alizé cornet janette husárová being opponent in final",
    "question_th": "ตั้งชื่อผลลัพธ์สำหรับ alizé cornet janette husárová ที่เป็นคู่ต่อสู้ในรอบชิงชนะเลิศ",
    "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örle\"",
    "question_en": "Name the outcome that had an opponent in final of nina bratchikova kathrin wörle",
    "question_th": "ตั้งชื่อผลลัพธ์ที่มีคู่ต่อสู้ในรอบชิงชนะเลิศของ nina bratchikova kathrin wörle",
    "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_en": "Which partner was on 14 april 2013?",
    "question_th": "พันธมิตรคนไหนคือวันที่ 14 เมษายน 2556?",
    "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_en": "When laps are less than 80 and Bruce mclaren is the driver, what is the grid?",
    "question_th": "เมื่อรอบน้อยกว่า 80 และมีบรูซ แม็คลาเรนเป็นคนขับ กริดจะเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_58 (grid VARCHAR, laps VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_27 WHERE grid > 19",
    "question_en": "What driver has a grid greater than 19?",
    "question_th": "ไดรเวอร์ใดมีกริดมากกว่า 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_en": "When the driver richard attwood has a constructor of brm, what is the number of laps?",
    "question_th": "เมื่อคนขับ ริชาร์ด แอตต์วูด มีคอนสตรัคเตอร์เป็น brm จำนวนรอบเป็นเท่าใด",
    "context": "CREATE TABLE table_name_87 (laps VARCHAR, constructor VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT AVG(grid) FROM table_name_55 WHERE laps < 3",
    "question_en": "What is the average grid for the competitiors who had laps smaller than 3?",
    "question_th": "ตารางเฉลี่ยสำหรับผู้แข่งขันที่มีรอบน้อยกว่า 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_en": "What is the average grid for competitors who had more than 22 laps and time/retired of +17.276?",
    "question_th": "ตารางเฉลี่ยของผู้เข้าแข่งขันที่มีรอบมากกว่า 22 รอบและเวลา/เกษียณที่ +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_en": "What was the average amount of laps for competitors with a grid that was more than 11 and a Time/Retired of +28.108?",
    "question_th": "จำนวนรอบเฉลี่ยของผู้เข้าแข่งขันที่มีกริดมากกว่า 11 และเวลา/เกษียณที่ +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_en": "What was the away team that played at Princes Park?",
    "question_th": "ทีมเยือนที่เล่นที่พรินซ์ พาร์ค คือทีมอะไร?",
    "context": "CREATE TABLE table_name_17 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_97 WHERE venue = \"princes park\"",
    "question_en": "What was the away team that played at Princes Park?",
    "question_th": "ทีมเยือนที่เล่นที่พรินซ์ พาร์ค คือทีมอะไร?",
    "context": "CREATE TABLE table_name_97 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_59 WHERE away_team = \"essendon\"",
    "question_en": "In what venue was the hosted away team Essendon?",
    "question_th": "เอสเซนดอน ทีมเจ้าบ้านเป็นเจ้าภาพในสถานที่ใด?",
    "context": "CREATE TABLE table_name_59 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_86 WHERE venue = \"mcg\"",
    "question_en": "Who was the home team at MCG?",
    "question_th": "ทีมเหย้าของเอ็มซีจีคือใคร?",
    "context": "CREATE TABLE table_name_86 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT final_score FROM table_name_74 WHERE date = \"december 27\"",
    "question_en": "I want to know the final score for december 27",
    "question_th": "อยากทราบคะแนนสุดท้ายของวันที่ 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_en": "Tell me the final score for january 9 for cincinnati bengals",
    "question_th": "บอกคะแนนสุดท้ายของวันที่ 9 มกราคม ของซินซินเนติเบงกอลหน่อยสิ",
    "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_en": "Tell me the host team for giants stadium and visiting of cincinnati bengals",
    "question_th": "บอกทีมเจ้าบ้านสำหรับสนามยักษ์ใหญ่ และการมาเยือนของซินซินเนติ เบงกอลหน่อยสิ",
    "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_en": "Tell me the date for pittsburgh steelers",
    "question_th": "บอกวันที่ของพิตต์สเบิร์ก สตีลเลอร์สมาหน่อยสิ",
    "context": "CREATE TABLE table_name_16 (date VARCHAR, visiting_team VARCHAR)"
  },
  {
    "answer": "SELECT visiting_team FROM table_name_59 WHERE date = \"october 4\"",
    "question_en": "Tell me the visiting team for october 4",
    "question_th": "แจ้งทีมเยือนวันที่ 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_en": "I want to know the stadium for tennessee titans visiting",
    "question_th": "ฉันต้องการทราบสนามสำหรับไททันเทนเนสซีที่มาเยือน",
    "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_en": "When the driver is Juan Manuel Fangio and laps is less than 39, what is the highest grid?",
    "question_th": "เมื่อนักขับคือ ฮวน มานูเอล ฟานจิโอ และรอบน้อยกว่า 39 กริดสูงสุดคือเท่าใด?",
    "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_en": "When grid is less than 7, laps are greater than 17, and time/retired is + 1:35.6, who is the constructor?",
    "question_th": "เมื่อกริดน้อยกว่า 7 รอบจะมากกว่า 17 และเวลา/เลิกใช้คือ + 1:35.6 ใครคือผู้สร้าง",
    "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_en": "What was the smallest grid for Prince bira?",
    "question_th": "ตารางที่เล็กที่สุดสำหรับเจ้าชายบีระคืออะไร?",
    "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_en": "How many losses did the team with 22 goals for andmore than 8 games played have?",
    "question_th": "ทีมที่เสียไป 22 ประตูและลงเล่นมากกว่า 8 นัดมีกี่ครั้ง?",
    "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_en": "For teams with fewer than 5 wins, goals against over 37, and fewer than 8 games played, what is the average number of ties?",
    "question_th": "สำหรับทีมที่ชนะน้อยกว่า 5 นัด มีประตูมากกว่า 37 ประตู และลงเล่นน้อยกว่า 8 เกม จำนวนการเสมอกันโดยเฉลี่ยคือเท่าใด",
    "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_en": "For teams with 7 wins, what is the number of goals against?",
    "question_th": "ทีมที่ชนะ 7 นัด เสียประตูได้จำนวนเท่าใด?",
    "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_en": "For teams with more than 0 ties and goals against of 37, how many wins were tallied?",
    "question_th": "สำหรับทีมที่เสมอมากกว่า 0 และทำประตูได้ 37 ประตู จะนับชัยชนะได้กี่ครั้ง?",
    "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_en": "What year was the the youngest nominee a winner?",
    "question_th": "ผู้ได้รับการเสนอชื่อที่อายุน้อยที่สุดเป็นผู้ชนะในปีใด",
    "context": "CREATE TABLE table_name_35 (year VARCHAR, superlative VARCHAR)"
  },
  {
    "answer": "SELECT actor FROM table_name_22 WHERE year = \"1978\"",
    "question_en": "What actor won in 1978?",
    "question_th": "นักแสดงคนไหนชนะรางวัลในปี 1978?",
    "context": "CREATE TABLE table_name_22 (actor VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_name_99 WHERE year = \"1981\"",
    "question_en": "What are the notes in 1981?",
    "question_th": "บันทึกในปี 1981 คืออะไร?",
    "context": "CREATE TABLE table_name_99 (notes VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_13 WHERE superlative = \"oldest winner\"",
    "question_en": "In what year had the oldest winner?",
    "question_th": "ผู้ชนะที่มีอายุมากที่สุดในปีใด?",
    "context": "CREATE TABLE table_name_13 (year VARCHAR, superlative VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_73 WHERE actor = \"richard farnsworth\"",
    "question_en": "What year did actor Richard Farnsworth get nominated for an award?",
    "question_th": "นักแสดง Richard Farnsworth ได้รับการเสนอชื่อเข้าชิงรางวัลในปีใด",
    "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_en": "Tell me the time/retired for Laps of 42 and Grids of 4",
    "question_th": "บอกเวลา/เลิกใช้สำหรับรอบที่ 42 และกริดที่ 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_en": "I want the driver that has Laps of 10",
    "question_th": "ฉันต้องการคนขับที่มีรอบ 10",
    "context": "CREATE TABLE table_name_59 (driver VARCHAR, laps VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_56 WHERE club_province = \"perpignan\"",
    "question_en": "What is the position of Perpignan?",
    "question_th": "แปร์ปิญองมีตำแหน่งอะไร?",
    "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_en": "Which player has a cap larger than 12 and Clubs of Toulouse?",
    "question_th": "ผู้เล่นคนใดมีแคปมากกว่า 12 และ 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_en": "What is the birthday of caps of 32?",
    "question_th": "วันเกิดของแคป 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_en": "What is the result when the score is 0-2?",
    "question_th": "ผลสกอร์เป็น 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_en": "How many goals when the score is 3-0 in the euro 2012 q?",
    "question_th": "กี่ประตูเมื่อสกอร์เป็น 3-0 ในยูโร 2012 คิว?",
    "context": "CREATE TABLE table_name_61 (goal VARCHAR, competition VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_59 WHERE grid = 9",
    "question_en": "I want the driver for grid of 9",
    "question_th": "ฉันต้องการไดรเวอร์สำหรับกริด 9",
    "context": "CREATE TABLE table_name_59 (driver VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_94 WHERE position = \"quarterback\"",
    "question_en": "Which school has a quarterback?",
    "question_th": "โรงเรียนไหนมีกองหลัง?",
    "context": "CREATE TABLE table_name_94 (school VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(round) FROM table_name_92 WHERE pick = \"242\"",
    "question_en": "In which round is pick number 242?",
    "question_th": "เลือกหมายเลข 242 ในรอบไหน?",
    "context": "CREATE TABLE table_name_92 (round VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(round) FROM table_name_16 WHERE player = \"tom morris\"",
    "question_en": "Which round was Tom Morris picked in?",
    "question_th": "ทอม มอร์ริส ถูกเลือกเข้ารอบไหน?",
    "context": "CREATE TABLE table_name_16 (round VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT pick FROM table_name_38 WHERE school = \"clemson\"",
    "question_en": "What pick did Clemson choose?",
    "question_th": "เคลมสันเลือกอะไร?",
    "context": "CREATE TABLE table_name_38 (pick VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT la_crescenta__montrose FROM table_name_71 WHERE tujunga = \"moderate\"",
    "question_en": "When Tujunga is moderate, what is La Crescenta-Montrose?",
    "question_th": "เมื่อ Tujunga อยู่ในระดับปานกลาง La Crescenta-Montrose คืออะไร?",
    "context": "CREATE TABLE table_name_71 (la_crescenta__montrose VARCHAR, tujunga VARCHAR)"
  },
  {
    "answer": "SELECT la_cañada_flintridge FROM table_name_58 WHERE tujunga = \"7%\"",
    "question_en": "What is the percentage of La Canada Flintridge when Tujunga is 7%?",
    "question_th": "เปอร์เซ็นต์ของ La Canada Flintridge คือเท่าใด เมื่อ Tujunga อยู่ที่ 7%?",
    "context": "CREATE TABLE table_name_58 (la_cañada_flintridge VARCHAR, tujunga VARCHAR)"
  },
  {
    "answer": "SELECT la_crescenta__montrose FROM table_name_25 WHERE pasadena = \"10%\"",
    "question_en": "When Pasadena is at 10%, what is La Crescenta-Montrose?",
    "question_th": "เมื่อ Pasadena อยู่ที่ 10% 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_en": "When La Crescenta-Montrose has 66%, what is Tujunga?",
    "question_th": "เมื่อ La Crescenta-Montrose มี 66% 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_en": "What is the figure for Tujunga when Pasadena is 134,941?",
    "question_th": "ตัวเลขของ Tujunga เมื่อ Pasadena อยู่ที่ 134,941 คืออะไร?",
    "context": "CREATE TABLE table_name_39 (tujunga VARCHAR, pasadena VARCHAR)"
  },
  {
    "answer": "SELECT la_cañada_flintridge FROM table_name_65 WHERE pasadena = \"34\"",
    "question_en": "What is the figure for La Canada Flintridge when Pasadena is 34?",
    "question_th": "ตัวเลขของ La Canada Flintridge เมื่อ Pasadena อายุ 34 ปีเป็นเท่าใด",
    "context": "CREATE TABLE table_name_65 (la_cañada_flintridge VARCHAR, pasadena VARCHAR)"
  },
  {
    "answer": "SELECT member_senator FROM table_name_4 WHERE first_elected = 2002 AND district > 41",
    "question_en": "Who was firest elected in 2002 in a district larger than 41?",
    "question_th": "ใครได้รับเลือกมากที่สุดในปี 2545 ในเขตที่ใหญ่กว่า 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_en": "What district for ulysses currie?",
    "question_th": "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_en": "Where did Geelong play as the away team?",
    "question_th": "จีลองเล่นเป็นทีมเยือนที่ไหน?",
    "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_en": "What was Hawthorn's score as the home team?",
    "question_th": "ฮอว์ธอร์นทำสกอร์ของเจ้าบ้านได้เท่าไหร่?",
    "context": "CREATE TABLE table_name_94 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_18 WHERE home_team = \"south melbourne\"",
    "question_en": "Who was South Melbourne's away opponents?",
    "question_th": "ใครคือคู่แข่งทีมเยือนของเซาธ์ เมลเบิร์น?",
    "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_en": "In which year is the highest for runner-up Steve Stricker?",
    "question_th": "สตีฟ สตริกเกอร์ รองแชมป์สูงสุดคือปีไหน?",
    "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_en": "Which Played has Draws smaller than 7, and Goals for smaller than 61, and Goals against smaller than 48, and a Position of 5?",
    "question_th": "ผู้เล่นคนไหนที่เสมอน้อยกว่า 7 และประตูที่น้อยกว่า 61 และประตูต่อที่น้อยกว่า 48 และตำแหน่งที่ 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_en": "How many Goals against have Played more than 34?",
    "question_th": "มีกี่ประตูที่เล่นมากกว่า 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_en": "Which Losses have a Goal Difference of -16, and less than 8 wins?",
    "question_th": "การแพ้ใดมีผลต่างประตูเป็น -16 และชนะน้อยกว่า 8 ครั้ง",
    "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_en": "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?",
    "question_th": "ชัยชนะใดมีผลต่างประตูมากกว่า 0 และประตูต่อมากกว่า 40 และตำแหน่งน้อยกว่า 6 และคลับของ 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_en": "What place did player mark brooks take?",
    "question_th": "ผู้เล่น มาร์ค บรูคส์ อยู่ตำแหน่งไหน?",
    "context": "CREATE TABLE table_name_84 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_66 WHERE place = \"t5\"",
    "question_en": "What was the To par of the golfer that placed t5?",
    "question_th": "ค่า To par ของนักกอล์ฟที่วาง t5 คืออะไร?",
    "context": "CREATE TABLE table_name_66 (to_par VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_96 WHERE score = 70",
    "question_en": "Which player had a score of 70?",
    "question_th": "ผู้เล่นคนไหนมีคะแนน 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_en": "What was the highest score of t5 place finisher brandt jobe?",
    "question_th": "Brandt Jobe ผู้เข้าเส้นชัยอันดับ 5 ของ T5 มีคะแนนสูงสุดคือเท่าไร?",
    "context": "CREATE TABLE table_name_51 (score INTEGER, place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_39 WHERE total = \"defending champion\"",
    "question_en": "Which event had a total of defending champion?",
    "question_th": "งานใดมีการป้องกันแชมป์ทั้งหมด?",
    "context": "CREATE TABLE table_name_39 (event VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT SUM(week) FROM table_name_63 WHERE attendance = \"74,347\"",
    "question_en": "How many weeks was there an attendance of 74,347?",
    "question_th": "มีผู้เข้าร่วม 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_en": "What is the latest week with an attendance of 74,162?",
    "question_th": "สัปดาห์ล่าสุดที่มีผู้เข้าร่วม 74,162 คนคือสัปดาห์ไหน?",
    "context": "CREATE TABLE table_name_72 (week INTEGER, attendance VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_41 WHERE attendance = \"57,331\"",
    "question_en": "Who is the opponent when the attendance is 57,331?",
    "question_th": "คู่ต่อสู้คือใครในจำนวนผู้เข้าร่วม 57,331 คน?",
    "context": "CREATE TABLE table_name_41 (opponent VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_98 WHERE attendance = \"74,285\"",
    "question_en": "What day was the attendance 74,285?",
    "question_th": "ผู้เข้าร่วม 74,285 วันคือวันไหน?",
    "context": "CREATE TABLE table_name_98 (date VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_36 WHERE week = 16",
    "question_en": "What was the result for week 16?",
    "question_th": "สัปดาห์ที่ 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_en": "Who are the Opponents in the final prior to 1998 in the Bucharest, Romania Tournament?",
    "question_th": "ใครคือฝ่ายตรงข้ามในรอบชิงชนะเลิศก่อนปี 1998 ในการแข่งขันบูคาเรสต์ ประเทศโรมาเนีย?",
    "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_en": "Which parish has an area of 750.51?",
    "question_th": "ตำบลใดมีพื้นที่ 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_en": "What is the area of the parish with a population larger than 1,172 and a census ranking of 1,871 of 5,008?",
    "question_th": "เขตตำบลที่มีประชากรมากกว่า 1,172 คน และมีการสำรวจสำมะโนประชากร 1,871 คน จาก 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_en": "When the position is less than 7, what is the appeared on album?",
    "question_th": "เมื่อตำแหน่งน้อยกว่า 7 ปรากฏอยู่ในอัลบั้มอะไร?",
    "context": "CREATE TABLE table_name_90 (appeared_on_album VARCHAR, position INTEGER)"
  },
  {
    "answer": "SELECT AVG(position) FROM table_name_96 WHERE year > 1996",
    "question_en": "After 1996, what is the average position?",
    "question_th": "หลังจากปี 2539 ตำแหน่งเฉลี่ยอยู่ที่เท่าใด",
    "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_en": "Which To par has a Place of t4, and wayne grady is in?",
    "question_th": "ทูพาร์ใดมีอันดับ t4 และมีเวย์น เกรดี้อยู่?",
    "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_en": "Name the Place of england with a Score larger than 66?",
    "question_th": "ตั้งชื่อสถานที่แห่งประเทศอังกฤษด้วยคะแนนมากกว่า 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_en": "Name the Score united states of tom watson in united state?",
    "question_th": "ตั้งชื่อ Score United States ของ Tom Watson ใน United State ?",
    "context": "CREATE TABLE table_name_40 (score VARCHAR, country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_98 WHERE to_par = \"–2\" AND country = \"united states\"",
    "question_en": "Who has a To par of –2, and a Country of united states?",
    "question_th": "ใครมีพาร์ถึง –2 และมีประเทศเป็นประเทศสหรัฐอเมริกา?",
    "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_en": "What is the time of Max Biaggi with more than 2 grids, 20 laps?",
    "question_th": "Max Biaggi มากกว่า 2 กริด 20 รอบเวลาเท่าไหร่?",
    "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_en": "What is the time of Troy Bayliss with less than 8 grids?",
    "question_th": "เวลาของ Troy Bayliss ที่มีกริดน้อยกว่า 8 กริดคือเท่าไร?",
    "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_en": "Which Torque has a Model of s63 amg ('01)?",
    "question_th": "แรงบิดตัวไหนมีรุ่น s63 amg ('01)?",
    "context": "CREATE TABLE table_name_91 (torque VARCHAR, model VARCHAR)"
  },
  {
    "answer": "SELECT engine FROM table_name_71 WHERE model = \"s430\"",
    "question_en": "Which Engine has a Model of s430?",
    "question_th": "เครื่องยนต์รุ่นใดมีรุ่น s430?",
    "context": "CREATE TABLE table_name_71 (engine VARCHAR, model VARCHAR)"
  },
  {
    "answer": "SELECT engine FROM table_name_87 WHERE model = \"s320 cdi\"",
    "question_en": "Which Engine has a Model of s320 cdi?",
    "question_th": "เครื่องยนต์รุ่นใดมีรุ่น s320 cdi?",
    "context": "CREATE TABLE table_name_87 (engine VARCHAR, model VARCHAR)"
  },
  {
    "answer": "SELECT division_southwest FROM table_name_4 WHERE division_north = \"madžari solidarnost\"",
    "question_en": "Who won Division Southwest when Madžari Solidarnost won Division North?",
    "question_th": "ใครเป็นผู้ชนะดิวิชั่นตะวันตกเฉียงใต้เมื่อ Madžari Solidarnost ชนะดิวิชั่นเหนือ?",
    "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_en": "Who won Division West when Division North was won by Alumina?",
    "question_th": "ใครเป็นผู้ชนะ Division West เมื่อ Alumina ชนะ Division North?",
    "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čište\"",
    "question_en": "Who won Division North when Division Southwest was won by Novaci and Division West by Vrapčište?",
    "question_th": "ใครเป็นผู้ชนะในดิวิชั่นเหนือเมื่อดิวิชั่นตะวันตกเฉียงใต้ชนะโดย Novaci และดิวิชั่นตะวันตกโดยVrapčište?",
    "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_en": "Who won Division Southwest when the winner of Division North was Lepenec and Division South was won by 11 Oktomvri?",
    "question_th": "ใครเป็นผู้ชนะ Division Southwest เมื่อผู้ชนะของ Division North คือ Lepenec และ Division South ชนะ 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_en": "What are the minutes of the Player from Real Madrid Club with a Rank of 7 or larger?",
    "question_th": "นาทีของนักเตะจากสโมสรเรอัล มาดริด ที่มีอันดับ 7 ขึ้นไปคือนาทีที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_73 (minutes INTEGER, rank VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT award FROM table_name_21 WHERE category = \"best actress\"",
    "question_en": "For what award was there a nomination for Best Actress?",
    "question_th": "มีการเสนอชื่อเข้าชิงนักแสดงนำหญิงยอดเยี่ยมสำหรับรางวัลอะไร?",
    "context": "CREATE TABLE table_name_21 (award VARCHAR, category VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_19 WHERE nominated = \"teen angels 2\"",
    "question_en": "What year was Teen Angels 2 nominated?",
    "question_th": "Teen Angels 2 ได้รับการเสนอชื่อเข้าชิงในปีใด",
    "context": "CREATE TABLE table_name_19 (year VARCHAR, nominated VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_73 WHERE category = \"revelation\"",
    "question_en": "What year saw an award in the category of Revelation?",
    "question_th": "ปีไหนที่ได้รับรางวัลประเภทวิวรณ์?",
    "context": "CREATE TABLE table_name_73 (year VARCHAR, category VARCHAR)"
  },
  {
    "answer": "SELECT nominated FROM table_name_60 WHERE award = \"capif award\"",
    "question_en": "Name the performance nominated for a Capif Award.",
    "question_th": "ตั้งชื่อผลงานที่ได้รับการเสนอชื่อเข้าชิงรางวัล Capif Award",
    "context": "CREATE TABLE table_name_60 (nominated VARCHAR, award VARCHAR)"
  },
  {
    "answer": "SELECT category FROM table_name_21 WHERE nominated = \"herself\"",
    "question_en": "In what category was Herself nominated?",
    "question_th": "เธอได้รับการเสนอชื่อเข้าชิงในประเภทใด?",
    "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_en": "What year was there a nomination for Best Actress at the Kids' Choice Awards Argentina?",
    "question_th": "มีการเสนอชื่อเข้าชิงนักแสดงนำหญิงยอดเยี่ยมจาก 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_en": "What is the average Draws, when Goal Difference is greater than -3, when Goals Against is 30, and when Points is greater than 45?",
    "question_th": "ผลเสมอโดยเฉลี่ยคือเท่าไร เมื่อผลต่างประตูมากกว่า -3 เมื่อประตูที่เสียคือ 30 และเมื่อคะแนนมากกว่า 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_en": "What is the average Played, when Club is \"Burgos CF\", and when Draws is less than 7?",
    "question_th": "ค่าเฉลี่ยการเล่นคือเท่าไร เมื่อสโมสรคือ \"บูร์โกส CF\" และเมื่อเสมอน้อยกว่า 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_en": "What is the highest Goals Against, when Club is \"Pontevedra CF\", and when Played is less than 38?",
    "question_th": "อะไรคือประตูสูงสุดในการต่อต้าน เมื่อสโมสรคือ \"ปอนเตเบดรา CF\" และเมื่อเล่นน้อยกว่า 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_en": "What is T2 Place Player Steve Flesch's Score?",
    "question_th": "คะแนนของผู้เล่น T2 Place Steve Flesch คืออะไร?",
    "context": "CREATE TABLE table_name_97 (score INTEGER, place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_16 WHERE score = 67",
    "question_en": "What is the Place of the Player with a Score of 67?",
    "question_th": "ผู้เล่นที่มีคะแนน 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_en": "What Venue has a Year smaller than 1991, Time larger than 10.29, Competition of mediterranean games, and Event of 4x100 m relay?",
    "question_th": "สถานที่ใดที่มีปีที่เล็กกว่าปี 1991 เวลามากกว่า 10.29 การแข่งขันเกมเมดิเตอร์เรเนียน และการแข่งขันวิ่งผลัด 4x100 ม.",
    "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_en": "What Event has a Position of 1st, a Year of 1983, and a Venue of budapest?",
    "question_th": "เหตุการณ์ใดมีตำแหน่งที่ 1 ปี พ.ศ. 2526 และสถานที่จัดงานในบูดาเปสต์?",
    "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_en": "What Position has a Time of 20.66?",
    "question_th": "ตำแหน่งใดมีเวลา 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_en": "What is the greatest Time with a Year of 1991, and Event of 4x100 m relay?",
    "question_th": "เวลาที่ยิ่งใหญ่ที่สุดในปี 1991 และเหตุการณ์วิ่งผลัด 4x100 ม. คืออะไร?",
    "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_en": "When was the match that had Shaun Murphy as runner-up?",
    "question_th": "แมตช์ที่มี Shaun Murphy เป็นรองแชมป์คือเมื่อไหร่?",
    "context": "CREATE TABLE table_name_31 (date VARCHAR, runner_up VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_63 WHERE runner_up = \"john higgins\"",
    "question_en": "Who was the winner in the match that had John Higgins as runner-up?",
    "question_th": "ใครเป็นผู้ชนะในการแข่งขันที่มีจอห์น ฮิกกินส์เป็นรองแชมป์?",
    "context": "CREATE TABLE table_name_63 (winner VARCHAR, runner_up VARCHAR)"
  },
  {
    "answer": "SELECT pronunciation_spelled_free FROM table_name_8 WHERE pronunciation_spelled_checked = \"ʏ\"",
    "question_en": "What is Pronunciation Spelled Free, when Pronunciation Spelled Checked is \"ʏ\"?",
    "question_th": "การสะกดการออกเสียงฟรีคืออะไร เมื่อตรวจสอบการสะกดการออกเสียงเป็น \"ฝา\"",
    "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 = \"ɛ\"",
    "question_en": "What is Pronunciation Spelled Free, when Pronunciation Spelled Checked is \"ɛ\"?",
    "question_th": "การสะกดการออกเสียงฟรีคืออะไร เมื่อตรวจสอบการสะกดการออกเสียงเป็น \"ɛ\"",
    "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 = \"ɑ\"",
    "question_en": "What is Pronunciation Spelled Free, when Pronunciation Spelled Checked is \"ɑ\"?",
    "question_th": "การสะกดการออกเสียงฟรีคืออะไร เมื่อตรวจสอบการสะกดการออกเสียงเป็น \"ɑ\"",
    "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_en": "What was the largest tie when the G.P was more than 5?",
    "question_th": "อะไรคือการเสมอกันที่ใหญ่ที่สุดเมื่อ GP มากกว่า 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_en": "What is the highest number in attendance against the game at Kansas City Chiefs?",
    "question_th": "จำนวนผู้เข้าชมเกมที่ 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_en": "What is the attendance for the game against the Kansas City Chiefs earlier than week 13?",
    "question_th": "ผู้เข้าชมเกมกับแคนซัส ซิตี้ ชีฟส์ ก่อนสัปดาห์ที่ 13 มีจำนวนเท่าใด",
    "context": "CREATE TABLE table_name_32 (attendance INTEGER, opponent VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_64 WHERE week > 13",
    "question_en": "What is the result later than week 13?",
    "question_th": "ผลลัพธ์หลังจากสัปดาห์ที่ 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_en": "What is the lowest To par of gary player, with more than 145 total?",
    "question_th": "อะไรคือค่าพาร์ต่ำสุดของ gary player โดยมีคะแนนรวมมากกว่า 145?",
    "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_en": "How many Wins have Goals against smaller than 30, and Goals for larger than 25, and Draws larger than 5?",
    "question_th": "มีกี่ประตูที่ชนะโดยเทียบกับประตูที่น้อยกว่า 30 และประตูที่มากกว่า 25 และเสมอมากกว่า 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_en": "How many Draws have 30 Points, and less than 33 Goals against?",
    "question_th": "เสมอกันกี่ครั้งมี 30 แต้ม และเสียประตูน้อยกว่า 33 ประตู?",
    "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_en": "Which Wins have a Goal Difference larger than 12, and a Club of granada cf, and Played larger than 30?",
    "question_th": "ชัยชนะใดมีผลต่างประตูมากกว่า 12 และมีคลับของกรานาดา cf และเล่นได้มากกว่า 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ético ceuta\" AND losses < 11",
    "question_en": "Which Played has a Club of atlético ceuta, and less than 11 Losses?",
    "question_th": "ผู้เล่นคนไหนที่มีสโมสรแอตเลติโกเซวตาและแพ้น้อยกว่า 11 ครั้ง?",
    "context": "CREATE TABLE table_name_40 (played INTEGER, club VARCHAR, losses VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_85 WHERE to_par = \"e\"",
    "question_en": "What is the place number for the player with a To Par score of 'E'?",
    "question_th": "หมายเลขตำแหน่งสำหรับผู้เล่นที่มีคะแนน To Par '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_en": "What is the To Par score for the player from South Africa?",
    "question_th": "คะแนน To Par ของผู้เล่นจากแอฟริกาใต้คือเท่าไร?",
    "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_en": "Which player from Scotland has a To Par score of +7?",
    "question_th": "ผู้เล่นคนใดจากสกอตแลนด์ที่มีคะแนน To Par ที่ +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_en": "Player Craig Parry of Australia is in what place number?",
    "question_th": "ผู้เล่น Craig Parry จากออสเตรเลียอยู่อันดับที่เท่าไหร่?",
    "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_en": "Which player from the United States is in a place of T2?",
    "question_th": "ผู้เล่นคนไหนจากสหรัฐอเมริกาที่อยู่ตำแหน่ง 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_en": "For the match in which player David Frost scored a To Par of +7, what was the final score?",
    "question_th": "สำหรับแมตช์ที่ผู้เล่น David Frost ทำคะแนนได้ถึงพาร์ +7 คะแนนสุดท้ายคือเท่าไร?",
    "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_en": "What was Tom Watson's lowest To par when the total was larger than 144?",
    "question_th": "อะไรคือค่าพาร์ต่ำสุดของ Tom Watson เมื่อผลรวมมากกว่า 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_en": "What was England's total?",
    "question_th": "อังกฤษมียอดรวมเท่าไร?",
    "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_en": "What player had a To par smaller than 9 and won in 1985?",
    "question_th": "ผู้เล่นคนใดมีพาร์ต่ำกว่า 9 และชนะในปี 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_en": "What is the seat percentage when vote percentage is 2.4% (-8.3)?",
    "question_th": "เปอร์เซ็นต์ที่นั่งเมื่อเปอร์เซ็นต์การโหวตคือ 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_en": "How many calories is 1 watt hour?",
    "question_th": "1 วัตต์-ชั่วโมงมีกี่แคลอรี่?",
    "context": "CREATE TABLE table_name_64 (calorie VARCHAR, watt_hour VARCHAR)"
  },
  {
    "answer": "SELECT electronvolt FROM table_name_44 WHERE joule = \"3,600\"",
    "question_en": "How many electronvolts is 3,600 joules?",
    "question_th": "3,600 จูลมีกี่อิเล็กตรอนโวลต์?",
    "context": "CREATE TABLE table_name_44 (electronvolt VARCHAR, joule VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_name_81 WHERE winner = \"johnathan gray\"",
    "question_en": "What is the total number of Year, when Winner is \"Johnathan Gray\"?",
    "question_th": "เมื่อผู้ชนะคือ \"โจนาธาน เกรย์\" มีจำนวนทั้งสิ้นกี่ปี?",
    "context": "CREATE TABLE table_name_81 (year VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_16 WHERE college = \"kentucky\"",
    "question_en": "What is Winner, when College is \"Kentucky\"?",
    "question_th": "วินเนอร์คืออะไร เมื่อวิทยาลัยคือ \"เคนตักกี้\"?",
    "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_en": "What is Hometown, when Sport is \"Basketball\", and when Winner is \"Dwight Howard\"?",
    "question_th": "บ้านเกิดคืออะไร เมื่อกีฬาคือ \"บาสเก็ตบอล\" และเมื่อผู้ชนะคือ \"ดไวท์ ฮาวเวิร์ด\"",
    "context": "CREATE TABLE table_name_83 (hometown VARCHAR, sport VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT duration FROM table_name_68 WHERE wins < 53",
    "question_en": "What is the Duration for less than 53 consecutive wins?",
    "question_th": "ระยะเวลาสำหรับการชนะน้อยกว่า 53 ครั้งติดต่อกันคือเท่าไร?",
    "context": "CREATE TABLE table_name_68 (duration VARCHAR, wins INTEGER)"
  },
  {
    "answer": "SELECT COUNT(wins) FROM table_name_97 WHERE defeated_by = \"toda\"",
    "question_en": "How many wins were held before being defeated by toda?",
    "question_th": "ชนะได้กี่ครั้งถึงจะพ่ายแพ้ให้กับโทดา?",
    "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_en": "What is the greatest goals for Curtis Davies if ends is greater than 2012?",
    "question_th": "อะไรคือเป้าหมายที่ยิ่งใหญ่ที่สุดของเคอร์ติส เดวีส์ หากจบมากกว่าปี 2012?",
    "context": "CREATE TABLE table_name_9 (goals INTEGER, name VARCHAR, ends VARCHAR)"
  },
  {
    "answer": "SELECT SUM(ends) FROM table_name_70 WHERE transfer_fee = \"£8.5m\"",
    "question_en": "When the transfer fee is £8.5m, what is the total ends?",
    "question_th": "เมื่อค่าธรรมเนียมการโอนอยู่ที่ 8.5 ล้านปอนด์ ยอดสิ้นสุดอยู่ที่เท่าไร?",
    "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_en": "On what Date was Henry I Latin Commander of the Battle of Boruy?",
    "question_th": "Henry I ผู้บัญชาการชาวละตินของ 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_en": "Who is the Latin Commander of the Siege of Constantinople?",
    "question_th": "ใครคือผู้บัญชาการละตินของการล้อมกรุงคอนสแตนติโนเปิล?",
    "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_en": "What is the Result of the battle with Latin Commander Boniface of Montferrat?",
    "question_th": "ผลลัพธ์ของการต่อสู้กับผู้บัญชาการละติน Boniface แห่ง 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_en": "What is the Battle with Bulgarian Commander Ivan Asen II?",
    "question_th": "การรบกับผู้บัญชาการบัลแกเรีย 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_en": "What is the Bulgarian Commander of the Battle of Rusion?",
    "question_th": "ผู้บัญชาการชาวบัลแกเรียแห่ง 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_en": "What is Type for Rite Albanian?",
    "question_th": "ประเภทของ 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_en": "What Area (km 2) is lowest with a type being Apostolic Administration?",
    "question_th": "พื้นที่ใด (กม. 2) ต่ำที่สุดประเภทเป็นฝ่ายอัครสาวก?",
    "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_en": "What Ecclesiastical Province has a type diocese and a latin name alexiensis?",
    "question_th": "จังหวัดใดมีสังฆมณฑลประเภทและชื่อภาษาละติน 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_en": "What's the money that Sam Snead won?",
    "question_th": "Sam Snead ชนะได้เงินเท่าไหร่?",
    "context": "CREATE TABLE table_name_52 (money___$__ VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT SUM(to_par) FROM table_name_16 WHERE player = \"craig wood\"",
    "question_en": "What was the total To Par for Craig Wood?",
    "question_th": "ค่าพาร์รวมของเครก วูดเป็นเท่าไหร่?",
    "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_en": "What was the score for t9 place for Harold Mcspaden?",
    "question_th": "คะแนน t9 ของแฮโรลด์ แม็คสปาเดนอยู่ที่เท่าไร?",
    "context": "CREATE TABLE table_name_9 (score VARCHAR, place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_58 WHERE player = \"sam snead\"",
    "question_en": "What was the country for Sam Snead?",
    "question_th": "ประเทศสำหรับ 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_en": "What place had a ribbon below 9.8 and a 19.2 total?",
    "question_th": "สถานที่ใดมีริบบิ้นต่ำกว่า 9.8 และรวม 19.2",
    "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_en": "Which Natural change has a Crude death rate (per 1000) larger than 9, and Deaths of 40 399?",
    "question_th": "การเปลี่ยนแปลงทางธรรมชาติใดที่มีอัตราการเสียชีวิตอย่างหยาบ (ต่อ 1,000) มากกว่า 9 และการเสียชีวิต 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_en": "How many season have an average attendance league of 2.456?",
    "question_th": "กี่ฤดูกาลที่มีผู้เข้าชมลีกเฉลี่ย 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_en": "Which venue has more than 19 against?",
    "question_th": "สถานที่ใดมีมากกว่า 19 ต่อ?",
    "context": "CREATE TABLE table_name_63 (venue VARCHAR, against INTEGER)"
  },
  {
    "answer": "SELECT COUNT(against) FROM table_name_20 WHERE status = \"first test\"",
    "question_en": "How many against have a status of first test?",
    "question_th": "มีกี่คนที่มีสถานะการทดสอบครั้งแรก?",
    "context": "CREATE TABLE table_name_20 (against VARCHAR, status VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_38 WHERE date = \"2001-05-05\"",
    "question_en": "What is the Venue of the Competition on 2001-05-05?",
    "question_th": "สถานที่จัดการแข่งขันในวันที่ 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_en": "What is the Date of the Fifa World Cup with a Score of 1-0?",
    "question_th": "บอลโลก ฟีฟ่า สกอร์ 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_en": "What was the result of the game against the Miami Dolphins held at the Riverfront Stadium?",
    "question_th": "ผลการแข่งขันกับไมอามี ดอลฟินส์ ที่ริเวอร์ฟรอนต์ สเตเดี้ยม เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_46 (result VARCHAR, location VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_3 WHERE opponent = \"houston oilers\"",
    "question_en": "What was the location of the game against the Houston Oilers?",
    "question_th": "เกมนี้พบกับ ฮุสตัน ออยเลอร์ส อยู่ที่ไหน?",
    "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_en": "What was the result of the game at the Riverfront Stadium after week 8?",
    "question_th": "ผลลัพธ์ของเกมที่ริเวอร์ฟรอนต์ สเตเดี้ยม หลังจากสัปดาห์ที่ 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_en": "What is the 1880 figure when 1860 is N/A and 1910 is 494?",
    "question_th": "ตัวเลขปี 1880 คืออะไร เมื่อปี 1860 ไม่มีข้อมูล และปี 1910 คือ 494",
    "context": "CREATE TABLE table_name_19 (Id VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_63 WHERE date = \"october 11, 2006\"",
    "question_en": "Which competition took place on October 11, 2006?",
    "question_th": "การแข่งขันใดเกิดขึ้นในวันที่ 11 ตุลาคม พ.ศ. 2549",
    "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_en": "What was the score of the friendly match at Amman on February 14, 2006?",
    "question_th": "คะแนนของนัดกระชับมิตรที่อัมมานเมื่อวันที่ 14 กุมภาพันธ์ 2549 เป็นเท่าไหร่?",
    "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_en": "Where did Ra'fat Ali play on August 17, 1999?",
    "question_th": "Ra'fat Ali เล่นที่ไหนเมื่อวันที่ 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_en": "What was the place when the score was 71-69-71=211?",
    "question_th": "คะแนนอยู่ที่ 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_en": "What was Australia's score when Peter Lonard played?",
    "question_th": "ปีเตอร์ โลนาร์ดทำสกอร์ของออสเตรเลียเป็นเท่าไหร่?",
    "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_en": "What player scored 71-69-71=211?",
    "question_th": "นักเตะคนไหนทำคะแนนได้ 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_en": "What was the score for Peter Lonard?",
    "question_th": "ปีเตอร์ ลอนาร์ดทำสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_97 (score VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_28 WHERE score = 68 - 75 - 68 = 211",
    "question_en": "What was the place when the score was 68-75-68=211?",
    "question_th": "คะแนนอยู่ที่ 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_en": "What was the Venue on November 26?",
    "question_th": "สถานที่จัดงานในวันที่ 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_en": "What was the Venue of the San Francisco 49ers Home game with a Result of 30-10?",
    "question_th": "สนามเหย้าของเกมเหย้าซานฟรานซิสโก 49เนอร์ส ที่มีผลสกอร์ 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_en": "What is the Result of the game on October 3?",
    "question_th": "ผลการแข่งขันวันที่ 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_en": "What is the Venue of the 2009 St. Louis Rams Home game?",
    "question_th": "สถานที่จัดการแข่งขันในบ้านของทีมเซนต์หลุยส์ แรมส์ ประจำปี 2009 คืออะไร?",
    "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_en": "What Date after 2007 had the San Francisco 49ers as the Visiting Team?",
    "question_th": "วันที่ใดหลังจากปี 2550 มี San Francisco 49ers เป็นทีมเยือน?",
    "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_en": "What is 2004, when 2008 is \"WTA Premier 5 Tournaments\"?",
    "question_th": "ปี 2004 คืออะไร เมื่อปี 2008 เป็น \"WTA Premier 5 Tournaments\"?",
    "context": "CREATE TABLE table_name_19 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2010 FROM table_name_82 WHERE 2009 = \"1\"",
    "question_en": "What is 2010, when 2009 is \"1\"?",
    "question_th": "ปี 2010 คืออะไร เมื่อปี 2009 คือ \"1\"",
    "context": "CREATE TABLE table_name_82 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2004 FROM table_name_31 WHERE 2005 = \"not tier i\"",
    "question_en": "What is 2004, when 2005 is \"Not Tier I\"?",
    "question_th": "ปี 2004 คืออะไร เมื่อปี 2005 เป็น \"ไม่ใช่ระดับ I\"",
    "context": "CREATE TABLE table_name_31 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2007 FROM table_name_27 WHERE tournament = \"madrid\"",
    "question_en": "What is 2007, when Tournament is \"Madrid\"?",
    "question_th": "2007 เมื่อทัวร์นาเมนต์คือ \"มาดริด\" คืออะไร?",
    "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_en": "What is 2011, when 2006 is \"A\", when 2008 is \"A\", and when Tournament is \"Rome\"?",
    "question_th": "ปี 2554 คืออะไร เมื่อปี 2549 คือ \"A\" เมื่อปี 2551 คือ \"A\" และเมื่อใดที่ทัวร์นาเมนท์คือ \"โรม\"",
    "context": "CREATE TABLE table_name_19 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_49 WHERE 2010 = \"wta premier 5 tournaments\"",
    "question_en": "What is 2011, when 2010 is \"WTA Premier 5 Tournaments\"?",
    "question_th": "2011 คืออะไร เมื่อปี 2010 เป็น \"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_en": "What is Name, when Weight is \"kg (lb)\", when Club is \"Gezira\", and when Date of Birth is \"1974-02-18\"?",
    "question_th": "ชื่ออะไร เมื่อน้ำหนักเป็น \"กก. (ปอนด์)\" เมื่อสโมสรคือ \"เกซิรา\" และเมื่อวันเกิดคือ \"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_en": "What is Pos., when Height is \"m (ft 10in)\", and when Date of Birth is \"1983-05-29\"?",
    "question_th": "ตำแหน่งคืออะไร เมื่อความสูงคือ \"ม. (ฟุต 10 นิ้ว)\" และเมื่อวันเกิดคือ \"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_en": "What is Weight, when Club is \"Maadi\"?",
    "question_th": "น้ำหนักคืออะไรเมื่อ Club คือ \"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_en": "What is Date of Birth, when Height is \"Head Coach: Adel Shamala\"?",
    "question_th": "วันเดือนปีเกิดคือเมื่อความสูงคือ \"หัวหน้าโค้ช: 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_en": "What is Weight, when Club is \"Ahly\", and when Name is \"Ragy Abdel Hady\"?",
    "question_th": "น้ำหนักคืออะไร เมื่อสโมสรคือ \"Ahly\" และเมื่อชื่อคือ \"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_en": "Which Series 1 has a Series 11 of peter jones?",
    "question_th": "Series 1 ใดมี Series 11 ของ 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_en": "Which Series 2 has a Series 3 of deborah meaden?",
    "question_th": "Series 2 ตัวใดมี Series 3 ของ deborah meden?",
    "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_en": "How many Seat Orders (Right to Left) have a Series 3 of deborah meaden?",
    "question_th": "จำนวนที่นั่ง (จากขวาไปซ้าย) มีเดโบราห์ มีเดน ซีรีส์ 3 กี่ที่นั่ง",
    "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_en": "The player for which country had a score of 66-72=138?",
    "question_th": "ผู้เล่นประเทศใดมีคะแนน 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_en": "In what place was Tiger Woods of the United States?",
    "question_th": "Tiger Woods แห่งสหรัฐอเมริกาอยู่ที่ไหน?",
    "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_en": "What was the TO par for the player who scored 68-71=139?",
    "question_th": "อะไรคือพาร์ TO สำหรับผู้เล่นที่ทำคะแนน 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_en": "What was the TO par for the player who scored 68-69=137?",
    "question_th": "อะไรคือพาร์ TO สำหรับผู้เล่นที่ทำคะแนน 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_en": "What is Illinois 13 District's Party?",
    "question_th": "งานปาร์ตี้ของ Illinois 13 District คืออะไร?",
    "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_en": "What is re-elected Incumbent Jerry Costello's First elected date?",
    "question_th": "วันที่เลือกครั้งแรกของเจอร์รี คอสเตลโล ผู้ดำรงตำแหน่งที่ได้รับการเลือกตั้งใหม่คืออะไร",
    "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_en": "What is the Party of District of Illinois 19 with an Incumbent First elected in 1996?",
    "question_th": "พรรคเขตอิลลินอยส์ 19 ที่ได้รับเลือกครั้งแรกในปี 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_en": "What is Tournament, when 2000 is \"A\"?",
    "question_th": "Tournament คืออะไร เมื่อปี 2000 เป็น \"A\"",
    "context": "CREATE TABLE table_name_60 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 1998 FROM table_name_26 WHERE 1997 = \"3r\" AND 1992 = \"a\"",
    "question_en": "What is 1998, when 1997 is \"3R\", and when 1992 is \"A\"?",
    "question_th": "ปี 1998 คืออะไร เมื่อปี 1997 คือ \"3R\" และเมื่อใดคือ \"A\" เมื่อปี 1992",
    "context": "CREATE TABLE table_name_26 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1992 FROM table_name_74 WHERE 1999 = \"year-end championship\"",
    "question_en": "What is 1992, when 1999 is \"Year-End Championship\"?",
    "question_th": "1992 คืออะไร เมื่อปี 1999 เป็น \"แชมป์ส่งท้ายปี\"?",
    "context": "CREATE TABLE table_name_74 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2005 FROM table_name_89 WHERE 1998 = \"f\" AND 2002 = \"2r\"",
    "question_en": "What is 2005, when 1998 is \"F\", and when 2002 is \"2R\"?",
    "question_th": "ปี 2005 คืออะไร เมื่อปี 1998 คือ \"F\" และเมื่อใดคือ \"2R\" เมื่อปี 2002",
    "context": "CREATE TABLE table_name_89 (Id VARCHAR)"
  },
  {
    "answer": "SELECT british FROM table_name_88 WHERE examples = \"exit\"",
    "question_en": "Which British has Examples of exit?",
    "question_th": "คนอังกฤษคนไหนมีตัวอย่างการออก?",
    "context": "CREATE TABLE table_name_88 (british VARCHAR, examples VARCHAR)"
  },
  {
    "answer": "SELECT australian FROM table_name_61 WHERE british = \"ɒs\"",
    "question_en": "Which Australian has British of ɒs?",
    "question_th": "ชาวออสเตรเลียคนไหนมีชาวอังกฤษ ɒs?",
    "context": "CREATE TABLE table_name_61 (australian VARCHAR, british VARCHAR)"
  },
  {
    "answer": "SELECT examples FROM table_name_10 WHERE australian = \"əm\"",
    "question_en": "Which Examples has Australian of əm?",
    "question_th": "ตัวอย่างใดที่มีภาษาออสเตรเลียของ əm?",
    "context": "CREATE TABLE table_name_10 (examples VARCHAR, australian VARCHAR)"
  },
  {
    "answer": "SELECT american FROM table_name_62 WHERE british = \"ɛm\"",
    "question_en": "Which American has British of ɛm?",
    "question_th": "คนอเมริกันคนไหนมีอังกฤษเท่ากับ ɛm?",
    "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æces\"",
    "question_en": "Which Ending has British of iz, and Examples of achilles, appendices, fæces?",
    "question_th": "ซึ่งตอนจบมีภาษาอังกฤษของ iz และตัวอย่างของ achilles, appendices, fæces?",
    "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_en": "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\"?",
    "question_th": "จำนวนปีแรกทั้งหมดเป็นเท่าใด เมื่อ Displacement CC มากกว่า 4,719 เมื่อเครื่องยนต์เป็น V8 เมื่อกำลัง HP (kW) คือ \"335 (246)\" และเมื่อรุ่นคือ \"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_en": "What is the lowest First Year, when Model is \"Quattroporte (2.8)\"?",
    "question_th": "ปีแรกต่ำสุดเท่าไหร่เมื่อรุ่นเป็น \"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_en": "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\"?",
    "question_th": "Power HP (kW) คืออะไร เมื่อปีแรกมากกว่าปี 1965 เมื่อการจัดจำหน่ายเป็น \"สากล\" เมื่อเครื่องยนต์เป็น V6 Biturbo และเมื่อรุ่นเป็น \"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_en": "What is Competition, when Date is \"January 11, 1996\", when Venue is \"San Diego , United States\"?",
    "question_th": "การแข่งขันคืออะไร เมื่อวันที่คือ \"11 มกราคม 1996\" เมื่อสถานที่คือ \"ซานดิเอโก สหรัฐอเมริกา\"",
    "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_en": "What is Score, when Venue is Riyadh, Saudi Arabia, and when Result is \"Win\"?",
    "question_th": "คะแนนคืออะไร เมื่อสถานที่คือริยาด ซาอุดีอาระเบีย และเมื่อผลลัพธ์คือ \"ชนะ\"",
    "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_en": "What is Result, when Date is \"June 11, 1994\", and when Venue is \"Miami, United States\"?",
    "question_th": "ผลลัพธ์คืออะไร เมื่อวันที่คือ \"11 มิถุนายน 1994\" และเมื่อสถานที่คือ \"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_en": "What is Venue, when Date is \"January 6, 1995\"?",
    "question_th": "สถานที่จัดงานคือที่ไหน โดยวันที่คือ \"6 มกราคม 2538\"?",
    "context": "CREATE TABLE table_name_35 (venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_31 WHERE date = \"june 8, 1996\"",
    "question_en": "What is Score, when Date is \"June 8, 1996\"?",
    "question_th": "Score คืออะไร เมื่อวันที่คือ \"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_en": "What is the total number of PLD for Team Arsenal?",
    "question_th": "จำนวน PLD ทั้งหมดสำหรับทีม 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_en": "What is the total number of points for a total pld less than 38?",
    "question_th": "จำนวนคะแนนรวมของคะแนนรวมน้อยกว่า 38 คือเท่าใด",
    "context": "CREATE TABLE table_name_24 (total_pts VARCHAR, total_pld INTEGER)"
  },
  {
    "answer": "SELECT SUM(points) FROM table_name_86 WHERE score = \"3–2\" AND attendance > 17 OFFSET 398",
    "question_en": "How many Points have a Score of 3–2, and an Attendance larger than 17,398?",
    "question_th": "มีกี่คะแนนที่มีคะแนน 3–2 และมีผู้เข้าร่วมมากกว่า 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–15–1)\"",
    "question_en": "Which score has a Loss of hiller (22–15–1)?",
    "question_th": "คะแนนใดที่แพ้ฮิลเลอร์ (22–15–1)?",
    "context": "CREATE TABLE table_name_12 (score VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_38 WHERE record = \"41–32–6\"",
    "question_en": "Which Loss has a Record of 41–32–6?",
    "question_th": "การสูญเสียใดมีสถิติ 41–32–6?",
    "context": "CREATE TABLE table_name_38 (loss VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_60 WHERE points > 90",
    "question_en": "Which Attendance has more than 90 points?",
    "question_th": "ผู้เข้าร่วมคนไหนมีคะแนนมากกว่า 90 คะแนน?",
    "context": "CREATE TABLE table_name_60 (attendance VARCHAR, points INTEGER)"
  },
  {
    "answer": "SELECT date FROM table_name_95 WHERE record = \"41–32–6\"",
    "question_en": "On what date was the Record 41–32–6?",
    "question_th": "บันทึก 41–32–6 คือวันที่ใด",
    "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_en": "How many ties did he have when he had 1 penalties and more than 20 conversions?",
    "question_th": "เขามีความเสมอกันกี่ครั้งเมื่อเขามี 1 จุดโทษและมากกว่า 20 Conversion?",
    "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_en": "What is the least number of penalties he got when his point total was over 1419 in more than 98 games?",
    "question_th": "เขาได้รับบทลงโทษน้อยที่สุดจำนวนเท่าใดเมื่อคะแนนรวมของเขามากกว่า 1,419 ในมากกว่า 98 เกม?",
    "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_en": "How many fatalities shows for the lockheed l-1049g?",
    "question_th": "มีผู้เสียชีวิตกี่รายสำหรับล็อกฮีด 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_en": "What is the number of people on board at Iberia Airline, with the aircraft type of lockheed l-1049g?",
    "question_th": "เครื่องบินของสายการบิน Iberia Airline เป็นเครื่องบินประเภท 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_en": "How many fatalities are there for the airline of spantax, with a registration of ec-arz?",
    "question_th": "สายการบิน spantax ที่จดทะเบียน 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_en": "What is the End of term of the President with an Age at inauguration of 78years, 160days?",
    "question_th": "ประธานาธิบดีอายุครบ 78 ปี 160 วัน หมดวาระอย่างไร?",
    "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_en": "What is the Length of retirement of the President with an Age at inauguration of 70years, 53days?",
    "question_th": "ประธานาธิบดีที่มีอายุเข้ารับตำแหน่ง 70 ปี 53 วัน จะมีอายุเท่าใด",
    "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_en": "What is the Date of inauguration of the President with an Age at inauguration of 73years, 262days?",
    "question_th": "วันที่เข้ารับตำแหน่งประธานาธิบดีอายุ 73 ปี 262 วัน คือวันที่เท่าไหร่?",
    "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_en": "Which player is from Australia?",
    "question_th": "นักเตะคนไหนมาจากออสเตรเลีย?",
    "context": "CREATE TABLE table_name_88 (player VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT MAX(total) FROM table_name_58 WHERE to_par = \"+14\"",
    "question_en": "Who has the highest total and a to par of +14?",
    "question_th": "ใครมีแต้มรวมสูงสุดและพาร์ถึง +14?",
    "context": "CREATE TABLE table_name_58 (total INTEGER, to_par VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_37 WHERE total = 282",
    "question_en": "Which country had a total of 282?",
    "question_th": "ประเทศใดมีทั้งหมด 282 แห่ง?",
    "context": "CREATE TABLE table_name_37 (country VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_84 WHERE player = \"greg norman\"",
    "question_en": "What country is Greg Norman from?",
    "question_th": "เกร็ก นอร์แมน มาจากประเทศใด",
    "context": "CREATE TABLE table_name_84 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_48 WHERE country = \"australia\"",
    "question_en": "What is Australia's to par?",
    "question_th": "ออสเตรเลียมีอะไรจะพาร์?",
    "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_en": "Which Total (kg) has a Clean & Jerk smaller than 153, and a Snatch smaller than 100?",
    "question_th": "ค่า Total (กก.) ใดที่มี Clean & Jerk น้อยกว่า 153 และ Snatch น้อยกว่า 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ælland\"",
    "question_en": "In which competition or tour was nordsjælland the opponent with a hr Ground?",
    "question_th": "ในการแข่งขันหรือทัวร์ใดที่ nordsjælland เป็นคู่ต่อสู้ที่มี 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_en": "What name has 118 as the apps?",
    "question_th": "118 เป็นแอพชื่ออะไร?",
    "context": "CREATE TABLE table_name_87 (name VARCHAR, apps VARCHAR)"
  },
  {
    "answer": "SELECT judge FROM table_name_42 WHERE state = \"sd\"",
    "question_en": "Who was the judge for the state SD?",
    "question_th": "ใครเป็นผู้พิพากษาของ 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_en": "What's the status with an against over 20 on 18/11/1995?",
    "question_th": "สถานะการต่อต้านมากกว่า 20 เมื่อวันที่ 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_en": "What's the status on 16/12/1995?",
    "question_th": "สถานะวันที่ 16/12/2538 เป็นอย่างไรบ้าง?",
    "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_en": "What date has a status of 1995 rugby world cup and an against of 20?",
    "question_th": "วันที่ใดมีสถานะเป็นฟุตบอลโลกรักบี้ปี 1995 และเทียบกับ 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_en": "What's the total against for opposing team scotland at twickenham, london venue with a status of five nations?",
    "question_th": "ผลรวมของทีมตรงข้ามสกอตแลนด์ที่สนามทวิคเกนแฮม ลอนดอนที่มีสถานะเป็น 5 ชาติจะเป็นอย่างไร",
    "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_en": "When was the status test match with an opposing team of south africa?",
    "question_th": "ทดสอบสถานะแมตช์กับทีมตรงข้ามแอฟริกาใต้เมื่อไหร่?",
    "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_en": "What is the fewest gold medals for the nation with 4 silvers and more than 4 bronze?",
    "question_th": "เหรียญทองน้อยที่สุดของประเทศที่ได้ 4 เหรียญเงิน และมากกว่า 4 เหรียญทองแดง คืออะไร?",
    "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_en": "How many silver medals for the nation with fewer than 1 golds and total less than 1?",
    "question_th": "น้อยกว่า 1 เหรียญทอง และรวมไม่ถึง 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_en": "What is the year when not nominated was the result, and In the Navel of the Sea was the film title used in nomination?",
    "question_th": "ปีที่ไม่ได้รับการเสนอชื่อคือผลการแข่งขัน และ In the Navel of the Sea เป็นชื่อภาพยนตร์ที่ใช้ในการเสนอชื่อ?",
    "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_en": "Who was the director of Small Voices, a film title used in nomination?",
    "question_th": "ใครคือผู้กำกับ Small Voices ชื่อภาพยนตร์ที่ใช้ในการเสนอชื่อ?",
    "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_en": "Which director had not nominated as a result, and had Bayan Ko: Kapit Sa Patalim as an original title?",
    "question_th": "ผู้กำกับคนไหนที่ไม่ได้รับการเสนอชื่อเข้าชิง และมีบายัน โก: กะปิตสาปาตาลิมเป็นชื่อดั้งเดิม?",
    "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_en": "What is the ceremony year when Ganito Kami Noon, Paano Kayo Ngayon was the original title?",
    "question_th": "พิธีปีใดคือที่ชื่อเดิมคือ กานิโต คามี เที่ยง ปาโน กะยอเงยน?",
    "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_en": "What was the score for home team AFC Hornchurch?",
    "question_th": "เจ้าบ้าน เอเอฟซี ฮอร์นเชิร์ช สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_74 (score VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_69 WHERE finish = \"1\"",
    "question_en": "What player has 1 as the place?",
    "question_th": "ผู้เล่นคนไหนมีตำแหน่งที่ 1?",
    "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_en": "What country has a total greater than 270, with sandy lyle as the player?",
    "question_th": "ประเทศใดมียอดรวมมากกว่า 270 โดยมีแซนดี้ ไลล์เป็นผู้เล่น?",
    "context": "CREATE TABLE table_name_94 (country VARCHAR, total VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT SUM(total) FROM table_name_85 WHERE finish = \"t6\"",
    "question_en": "How many totals have t6 as the finish?",
    "question_th": "มี t6 จบได้ทั้งหมดกี่ตัว?",
    "context": "CREATE TABLE table_name_85 (total INTEGER, finish VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_93 WHERE total = 289",
    "question_en": "What player has 289 as the total?",
    "question_th": "ผู้เล่นคนไหนมี 289 รวม?",
    "context": "CREATE TABLE table_name_93 (player VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT local_networked FROM table_name_1 WHERE ad_freq = \"15 minutes\"",
    "question_en": "What is the local/network with an Ad frequency of 15 minutes?",
    "question_th": "ท้องถิ่น/เครือข่ายที่มีความถี่โฆษณา 15 นาทีคืออะไร?",
    "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_en": "What is the ad frequency for the Show Off The Bench?",
    "question_th": "ความถี่โฆษณาสำหรับ 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_en": "What year has Stacy as the category and award of Best Reality Star in Social Media?",
    "question_th": "Stacy เป็นหมวดหมู่และได้รับรางวัล Best Reality Star ในโซเชียลมีเดียในปีใด",
    "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_en": "What was the result in the year greaters than 2008 with an award of Jahat and had a category of Stacy?",
    "question_th": "อะไรคือผลลัพธ์ในปีที่ยิ่งใหญ่ที่สุดกว่าปี 2008 ด้วยรางวัล Jahat และมีประเภท 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_en": "What award was in the year after 2009 with a competition of Digi Wwwow Awards?",
    "question_th": "ในปีหลังปี 2552 ได้มีการประกวด 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_en": "What was the year that had Anugerah Bintang Popular Berita Harian 23 as competition?",
    "question_th": "ปีไหนที่ Anugerah Bintang Popular Berita Harian 23 แข่งขันกัน?",
    "context": "CREATE TABLE table_name_30 (year VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_55 WHERE opponent = \"watford\"",
    "question_en": "What round was the game against Watford?",
    "question_th": "เกมกับวัตฟอร์ดรอบไหน?",
    "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_en": "What round was the game with a result of 5-1 at N venue?",
    "question_th": "เกมนี้ผลเสมอ 5-1 ที่สนาม N ในรอบใด?",
    "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_en": "What is the highest attendance at a game with a result of 5-1?",
    "question_th": "ผู้เข้าชมสูงสุดในเกมที่ผลสกอร์ 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_en": "What was the nationality of the winner on December 8, 1968?",
    "question_th": "ผู้ชนะเมื่อวันที่ 8 ธันวาคม พ.ศ. 2511 มีสัญชาติอะไร",
    "context": "CREATE TABLE table_name_99 (country VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_43 WHERE edition = \"48th\"",
    "question_en": "On what date was the 48th Edition raced?",
    "question_th": "รุ่นที่ 48 แข่งขันวันไหน?",
    "context": "CREATE TABLE table_name_43 (date VARCHAR, edition VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_90 WHERE edition = \"42nd\"",
    "question_en": "What was the nationality of the winner of the 42nd Edition?",
    "question_th": "ผู้ชนะรุ่นที่ 42 มีสัญชาติอะไร?",
    "context": "CREATE TABLE table_name_90 (country VARCHAR, edition VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_84 WHERE edition = \"20th\"",
    "question_en": "What was the nationality of the winner for the 20th Edition?",
    "question_th": "ผู้ชนะการประกวดครั้งที่ 20 มีสัญชาติอะไร",
    "context": "CREATE TABLE table_name_84 (country VARCHAR, edition VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_58 WHERE edition = \"23rd\"",
    "question_en": "Who was the winner of the 23rd Edition?",
    "question_th": "ใครคือผู้ชนะรุ่นที่ 23?",
    "context": "CREATE TABLE table_name_58 (winner VARCHAR, edition VARCHAR)"
  },
  {
    "answer": "SELECT report FROM table_name_8 WHERE date = \"1 september\"",
    "question_en": "Who reported the game played on 1 september?",
    "question_th": "ใครเป็นผู้รายงานเกมที่เล่นในวันที่ 1 กันยายน?",
    "context": "CREATE TABLE table_name_8 (report VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT report FROM table_name_67 WHERE date = \"6 october\"",
    "question_en": "Who reported the game on 6 october?",
    "question_th": "ใครรายงานเกมวันที่ 6 ตุลาคม?",
    "context": "CREATE TABLE table_name_67 (report VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_19 WHERE date = \"20 may\"",
    "question_en": "Where was the game played on 20 may?",
    "question_th": "วันที่ 20 พ.ค. แข่งที่ไหน?",
    "context": "CREATE TABLE table_name_19 (venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_49 WHERE date = \"1 september\"",
    "question_en": "What was the score of the game on 1 september?",
    "question_th": "สกอร์เกมวันที่ 1 กันยายน เป็นอย่างไรบ้าง?",
    "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_en": "Which date has Total Holocaust records in the ed Remaster cassette format?",
    "question_th": "วันที่ใดที่มีบันทึก Total Holocaust ในรูปแบบเทปคาสเซ็ต ed Remaster",
    "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_en": "Which country has the catalog nr of thr-048 in 2004?",
    "question_th": "ประเทศใดมีแคตตาล็อกหมายเลข th-048 ในปี 2547",
    "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_en": "What country is the Debemur Morti prod. label from?",
    "question_th": "ผลิตภัณฑ์ Debemur Morti คือประเทศใด ป้ายกำกับจาก?",
    "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_en": "Which Sales Total has a Chart of oricon monthly albums chart?",
    "question_th": "ยอดขายรวมใดมีชาร์ตของชาร์ตอัลบั้มรายเดือนของ oricon?",
    "context": "CREATE TABLE table_name_30 (sales_total VARCHAR, chart VARCHAR)"
  },
  {
    "answer": "SELECT chart FROM table_name_68 WHERE peak_position = 1",
    "question_en": "Which Chart has a Peak Position of 1?",
    "question_th": "แผนภูมิใดมีตำแหน่งสูงสุดที่ 1?",
    "context": "CREATE TABLE table_name_68 (chart VARCHAR, peak_position VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_7 WHERE record = \"1-3\"",
    "question_en": "When has a Record of 1-3?",
    "question_th": "เมื่อมีบันทึก 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_en": "Name the Visitor that has a Home of chicago black hawks on april 20?",
    "question_th": "ตั้งชื่อผู้เยี่ยมชมที่มีบ้านของเหยี่ยวดำชิคาโกในวันที่ 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_en": "Which Score has a Record of 0-1?",
    "question_th": "สกอร์ไหนมีสถิติ 0-1?",
    "context": "CREATE TABLE table_name_61 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_34 WHERE record = \"1-4\"",
    "question_en": "Which Date has a Record of 1-4?",
    "question_th": "วันที่ใดมีบันทึก 1-4?",
    "context": "CREATE TABLE table_name_34 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_45 WHERE date = \"april 22\"",
    "question_en": "Which Home is on april 22?",
    "question_th": "บ้านไหนคือวันที่ 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_en": "Which Score has a Visitor of buffalo sabres and a Record of 1-3?",
    "question_th": "คะแนนใดที่มีผู้มาเยือนกระบี่กระบือและมีสถิติ 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_en": "What is the Record of the February 26 date?",
    "question_th": "บันทึกประจำวันที่ 26 กุมภาพันธ์ คืออะไร?",
    "context": "CREATE TABLE table_name_64 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_47 WHERE date = \"february 10\"",
    "question_en": "What is the Record from February 10?",
    "question_th": "บันทึกตั้งแต่วันที่ 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_en": "What is the Score of the Chicago Black Hawks Home game with the Visiting Vancouver Canucks on November 17?",
    "question_th": "คะแนนของเกมเหย้าชิคาโกแบล็กฮอกส์กับทีมเยือนแวนคูเวอร์คานักส์ในวันที่ 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_en": "What Service Name has UTV as the owner?",
    "question_th": "ชื่อบริการใดที่มี UTV เป็นเจ้าของ?",
    "context": "CREATE TABLE table_name_60 (service_name VARCHAR, owner VARCHAR)"
  },
  {
    "answer": "SELECT download FROM table_name_55 WHERE catch_up_period = \"varies\"",
    "question_en": "What is the download of the varies catch-up period?",
    "question_th": "ระยะเวลาการดาวน์โหลดที่แตกต่างกันคือเท่าไร?",
    "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_en": "What is the Catch-up period for UTV?",
    "question_th": "ระยะเวลาติดตามสำหรับ 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_en": "What is the Service name of BBC?",
    "question_th": "ชื่อบริการของ BBC คืออะไร?",
    "context": "CREATE TABLE table_name_53 (service_name VARCHAR, owner VARCHAR)"
  },
  {
    "answer": "SELECT MIN(wins) FROM table_name_15 WHERE byes < 0",
    "question_en": "What is the lowest number of wins where the byes are less than 0?",
    "question_th": "จำนวนการชนะต่ำสุดโดยที่บายน้อยกว่า 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_en": "What is the lowest number of wins where the losses are more than 12 and the draws are less than 0?",
    "question_th": "จำนวนการชนะต่ำสุดคือเท่าไร โดยที่แพ้มากกว่า 12 และเสมอน้อยกว่า 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_en": "What is the average of wins when the byes are less than 0?",
    "question_th": "ค่าเฉลี่ยของการชนะเมื่อบายน้อยกว่า 0 เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_31 (wins INTEGER, byes INTEGER)"
  },
  {
    "answer": "SELECT COUNT(losses) FROM table_name_36 WHERE byes > 0",
    "question_en": "What is the total number of losses where the byes were greater than 0?",
    "question_th": "จำนวนการสูญเสียทั้งหมดโดยที่ค่าบายมากกว่า 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_en": "What is the highest number of byes where the losses were 9 and the draws were less than 0?",
    "question_th": "จำนวนบายสูงสุดที่แพ้คือ 9 และเสมอน้อยกว่า 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_en": "What are the average losses for Geelong DFL of Bell Post Hill where the draws are less than 0?",
    "question_th": "อะไรคือความสูญเสียโดยเฉลี่ยของ Geelong DFL ของ Bell Post Hill ที่เสมอน้อยกว่า 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_en": "Which Yards have Carries smaller than 23, and a Team of at chi, and an Average smaller than 8.5?",
    "question_th": "หลาใดที่มีแครี่น้อยกว่า 23 และทีมไคและค่าเฉลี่ยน้อยกว่า 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_en": "Which Team has 19 Carries, and a Week larger than 13?",
    "question_th": "ทีมใดมี 19 Carries และหนึ่งสัปดาห์มากกว่า 13 Carries?",
    "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_en": "Which Average has Yards larger than 167, and a Team of at tb, and a Week larger than 7?",
    "question_th": "ค่าเฉลี่ยใดที่มีหลามากกว่า 167 และทีมที่ tb และหนึ่งสัปดาห์ใหญ่กว่า 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_en": "What is the result of the game with 57,234 people in attendance?",
    "question_th": "ผลการแข่งขันที่มีผู้เข้าร่วม 57,234 คนเป็นอย่างไร?",
    "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_en": "How many people attended the game with a kickoff time of cbs 1:00pm, in a week earlier than 8, on September 15, 2002?",
    "question_th": "มีกี่คนที่เข้าร่วมการแข่งขันโดยเริ่มเวลา 13.00 น. ในหนึ่งสัปดาห์ก่อนวันที่ 8 กันยายน 15 กันยายน พ.ศ. 2545",
    "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_en": "What is the kickoff time for the game in week of 17?",
    "question_th": "เวลาคิกออฟสำหรับเกมในสัปดาห์ที่ 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_en": "What week was the opponent the San Diego Chargers?",
    "question_th": "คู่ต่อสู้ของซานดิเอโกชาร์จเจอร์สคือสัปดาห์ใด?",
    "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_en": "What week number was the kickoff time cbs 1:00pm, with 60,473 people in attendance?",
    "question_th": "สัปดาห์ใดคือเวลาคิกออฟ cbs 13.00 น. โดยมีผู้เข้าร่วม 60,473 คน",
    "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_en": "What is the kickoff time on November 10, 2002?",
    "question_th": "วันที่คิกออฟในวันที่ 10 พฤศจิกายน 2545 คือเมื่อใด",
    "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_en": "What District has a College or Campus Name of anna university college of engineering kanchipuram?",
    "question_th": "เขตใดมีชื่อวิทยาลัยหรือวิทยาเขตของวิทยาลัยวิศวกรรมศาสตร์มหาวิทยาลัยแอนนา 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_en": "What District has a Location of tharamani?",
    "question_th": "ตำบลใดมีที่ตั้งของธารามณี?",
    "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_en": "What Location has a College or Campus Name of anna university - tharamani campus?",
    "question_th": "วิทยาเขตใดมีชื่อวิทยาลัยหรือวิทยาเขตของมหาวิทยาลัยแอนนา - วิทยาเขตธารามณี?",
    "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_en": "What Weblink has a College or Campus Name of anna university college of engineering kanchipuram?",
    "question_th": "Weblink ใดมีชื่อวิทยาลัยหรือวิทยาเขตของ 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_en": "What District has a Location of villupuram?",
    "question_th": "อำเภอใดมีที่ตั้งของวิลัยปุรัม?",
    "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_en": "What Weblink has a College or Campus Name of anna university college of engineering tindivanam?",
    "question_th": "Weblink ใดมีชื่อวิทยาลัยหรือวิทยาเขตของ 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_en": "What Super G has Victories of 26, and a Country of austria?",
    "question_th": "Super G อะไรมีชัยชนะ 26 ครั้งและประเทศออสเตรีย?",
    "context": "CREATE TABLE table_name_31 (super_g VARCHAR, victories VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT super_g FROM table_name_25 WHERE career = \"1980–1996\"",
    "question_en": "What Super G has a Career of 1980–1996?",
    "question_th": "Super G มีอาชีพอะไรในปี 1980–1996?",
    "context": "CREATE TABLE table_name_25 (super_g VARCHAR, career VARCHAR)"
  },
  {
    "answer": "SELECT career FROM table_name_6 WHERE parallel = \"–\" AND combined = \"–\" AND giant_slalom = \"5\"",
    "question_en": "What Career has a Parallel of –, a Combined of –, and a Giant Slalom of 5?",
    "question_th": "อาชีพใดที่มีเส้นขนานระหว่าง –, ผลรวมของ – และไจแอนต์สลาลม 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–2004\"",
    "question_en": "What Country has a Career of 1989–2004?",
    "question_th": "ประเทศใดมีอาชีพในปี 1989–2004?",
    "context": "CREATE TABLE table_name_26 (country VARCHAR, career VARCHAR)"
  },
  {
    "answer": "SELECT giant_slalom FROM table_name_45 WHERE victories > 27 AND slalom = \"–\" AND career = \"1996–2009\"",
    "question_en": "What Giant Slalom has Victories larger than 27, a Slalom of –, and a Career of 1996–2009?",
    "question_th": "ไจแอนต์สลาลอมคนใดที่มีชัยชนะมากกว่า 27, สลาลมของ – และอาชีพของปี 1996–2009?",
    "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_en": "What Career has a Super G of 5, and a Combined of 6?",
    "question_th": "อาชีพใดมี Super G เท่ากับ 5 และรวมกันเป็น 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_en": "Which Class has a Year(s) of Manufacture of 1899?",
    "question_th": "คลาสใดมีปีการผลิต 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–7165\"",
    "question_en": "Which Year(s) of Manufacture has a Quantity larger than 60, and a Number(s) of 7001–7165?",
    "question_th": "ปีที่ผลิตใดที่มีปริมาณมากกว่า 60 และตัวเลข 7001–7165",
    "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–1924\"",
    "question_en": "Which Quantity has a Type of e h4v, and a Year(s) of Manufacture of 1920–1924?",
    "question_th": "ปริมาณใดมีประเภท e h4v และปีที่ผลิตปี 1920–1924",
    "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_en": "What was Shaun Murphy's outcome in the Premier League Snooker championship held before 2010?",
    "question_th": "ผลการแข่งขันของชอน เมอร์ฟีย์ในการแข่งขันพรีเมียร์ลีกสนุกเกอร์ที่จัดขึ้นก่อนปี 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_en": "What league has a 3-1 home?",
    "question_th": "ลีกไหนมีเจ้าบ้าน 3-1?",
    "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_en": "What is the home with a 1-1 away in the 2004-05 season?",
    "question_th": "ฤดูกาล 2004-05 เจ้าบ้านแพ้ 1-1 เป็นยังไงบ้าง?",
    "context": "CREATE TABLE table_name_99 (home VARCHAR, away VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT teams FROM table_name_41 WHERE season = \"2006-07\"",
    "question_en": "Which teams were in the 2006-07 season?",
    "question_th": "ทีมใดอยู่ในฤดูกาล 2549-50?",
    "context": "CREATE TABLE table_name_41 (teams VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT league FROM table_name_37 WHERE home = \"0:1\"",
    "question_en": "What is the league with a 0:1 home?",
    "question_th": "ลีกอะไรที่มีเจ้าบ้าน 0:1?",
    "context": "CREATE TABLE table_name_37 (league VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_38 WHERE league = \"regionalliga süd\" AND home = \"1-0\" AND away = \"2-3\"",
    "question_en": "What season has a regionalliga süd league, a 1-0 home, and an away of 2-3?",
    "question_th": "ฤดูกาลใดที่มีลีกระดับภูมิภาค เสมอ 1-0 เจ้าบ้าน และเสมอ 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üd (iii)\"",
    "question_en": "Which season has the regionalliga süd (iii) league?",
    "question_th": "ฤดูกาลใดที่มีลีกภูมิภาคลีกาซูด (iii)?",
    "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_en": "What is the smallest number of gold of a country of rank 6, with 2 bronzes?",
    "question_th": "จำนวนทองคำที่น้อยที่สุดของประเทศอันดับ 6 โดยมี 2 เหรียญทองแดงคือเท่าใด",
    "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_en": "What is the rank of the country with more than 2 medals, and 2 gold medals?",
    "question_th": "ประเทศที่มีมากกว่า 2 เหรียญ และ 2 เหรียญทอง อยู่อันดับที่เท่าไร?",
    "context": "CREATE TABLE table_name_83 (rank VARCHAR, total VARCHAR, gold VARCHAR)"
  },
  {
    "answer": "SELECT SUM(total) FROM table_name_32 WHERE silver > 1",
    "question_en": "How many total medals does a country with more than 1 silver medals have?",
    "question_th": "ประเทศที่มีเหรียญเงินมากกว่า 1 เหรียญมีทั้งหมดกี่เหรียญ?",
    "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_en": "Who is the co-contestant (yaar vs. Pyaar) with Vishal Singh as the main contestant?",
    "question_th": "ใครคือผู้เข้าแข่งขันร่วม (yaar กับ Pyaar) โดยมี Vishal Singh เป็นผู้เข้าแข่งขันหลัก?",
    "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_en": "Who is the main contestant with scores by each individual judge of 8 + 7 + 7 = 21?",
    "question_th": "ใครคือผู้เข้าแข่งขันหลักที่มีคะแนนจากกรรมการแต่ละคน 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_en": "Who is the main contestant with a total score/week of 42/60 and a co-contestant (Yaar vs. Pyaa) of Tina Sachdev?",
    "question_th": "ใครคือผู้เข้าแข่งขันหลักที่มีคะแนนรวม/สัปดาห์ 42/60 และผู้เข้าแข่งขันร่วม (Yaar vs. Pyaa) ของ 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_en": "What is Tina Sachdev's position?",
    "question_th": "ตำแหน่งของ Tina Sachdev คืออะไร?",
    "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_en": "Name the Rank of Rank Mountain Peak of crested butte pb?",
    "question_th": "ตั้งชื่ออันดับอันดับ Mountain Peak ของ 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_en": "Name the Prominence of the Mountain Peak of matchless mountain pb?",
    "question_th": "ตั้งชื่อความโดดเด่นของยอดเขา 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_en": "What year was Mary Elizabeth Mastrantonio nominated?",
    "question_th": "Mary Elizabeth Mastrantonio ได้รับการเสนอชื่อเข้าชิงในปีใด",
    "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_en": "What was the result for the nomination of Best Revival of a Musical?",
    "question_th": "ผลการเสนอชื่อเข้าชิง 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_en": "Which Nanquan has a Nandao larger than 9.49, and a Rank of 4?",
    "question_th": "Nanquan ใดที่มี Nandao ใหญ่กว่า 9.49 และอันดับ 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_en": "Which Nanquan has a Nandao smaller than 9.44, and a Rank smaller than 9, and a Total larger than 18.68?",
    "question_th": "Nanquan ใดที่มี Nandao น้อยกว่า 9.44 และอันดับน้อยกว่า 9 และผลรวมมากกว่า 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_en": "How many weeks have a Winning team of yellow team, and an Event of foos it or lose it?",
    "question_th": "ทีมสีเหลืองที่ชนะจะมีกี่สัปดาห์ และจะมีเหตุการณ์ที่แพ้หรือแพ้?",
    "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_en": "Which Week has an Air Date of august 2, 2008?",
    "question_th": "สัปดาห์ใดที่มีการออกอากาศวันที่ 2 สิงหาคม 2551?",
    "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_en": "Which Week has an Air Date of august 30, 2008?",
    "question_th": "สัปดาห์ใดที่มีการออกอากาศวันที่ 30 สิงหาคม 2551?",
    "context": "CREATE TABLE table_name_73 (week VARCHAR, air_date VARCHAR)"
  },
  {
    "answer": "SELECT winners_club FROM table_name_20 WHERE week = 4.5",
    "question_en": "Which Winners club has a Week of 4.5?",
    "question_th": "สโมสรผู้ชนะใดมีสัปดาห์ที่ 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_en": "Which Winners club has an Event of hang tight?",
    "question_th": "สโมสร Winners ใดที่มีกิจกรรม 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_en": "on what date was tie number 4?",
    "question_th": "ไทหมายเลข 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_en": "minehead has what tie number?",
    "question_th": "minehead มีหมายเลขเสมอกันไหม?",
    "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_en": "what is enfield's tie number?",
    "question_th": "หมายเลขเสมอของเอนฟิลด์คืออะไร?",
    "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_en": "What show was played on ABC laster after 2002?",
    "question_th": "รายการใดที่เล่นบน ABC ครั้งสุดท้ายหลังปี 2545",
    "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_en": "When did soul train music awards return?",
    "question_th": "รางวัลเพลง Soul Train กลับมาเมื่อไหร่?",
    "context": "CREATE TABLE table_name_49 (returning VARCHAR, show VARCHAR)"
  },
  {
    "answer": "SELECT returning FROM table_name_13 WHERE last_aired = 2002",
    "question_en": "When did a show last aired in 2002 return?",
    "question_th": "รายการที่ออกอากาศครั้งสุดท้ายในปี 2545 กลับมาเมื่อใด",
    "context": "CREATE TABLE table_name_13 (returning VARCHAR, last_aired VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_89 WHERE past_season = \"2nd\"",
    "question_en": "What Venue has a Past Season of 2nd?",
    "question_th": "สถานที่ใดมีฤดูกาลที่ 2 ที่ผ่านมา?",
    "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_en": "What is the Capacity of the Venue of Head Coach Ali Asghar Modir Roosta?",
    "question_th": "ความจุของสถานที่ของหัวหน้าโค้ช 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_en": "What is the Capacity of the Venue of Head Coach Farhad Kazemi?",
    "question_th": "ความจุของสถานที่ของหัวหน้าโค้ช 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_en": "How much 1991-1992 has a Team of gimnasia de la plata, and more than 113 points?",
    "question_th": "1991-1992 มีทีม gimnasia de la plata เท่าไหร่ และมากกว่า 113 แต้ม?",
    "context": "CREATE TABLE table_name_57 (team VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT role FROM table_name_22 WHERE pick__number = 10",
    "question_en": "What role did Pick # 10 have?",
    "question_th": "Pick # 10 มีบทบาทอะไร?",
    "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_en": "What is the real name of the male wrestler from Raw with a pick # smaller than 6?",
    "question_th": "ชื่อจริงของนักมวยปล้ำชายจาก Raw ที่มีตัวเลือก # น้อยกว่า 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_en": "Pick # 3 works for which brand?",
    "question_th": "เลือก #3 ใช้ได้กับแบรนด์ไหน?",
    "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_en": "What is the real name of the Pick # that is greater than 9?",
    "question_th": "ชื่อจริงของ Pick # ที่มากกว่า 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_en": "Who is the director with the Min Dally Nseek title, and won?",
    "question_th": "ใครคือผู้กำกับที่ครองตำแหน่ง Min Dally Nseek และได้รับรางวัล?",
    "context": "CREATE TABLE table_name_57 (director VARCHAR, title VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT survey FROM table_name_57 WHERE title = \"ehsas jdeed\"",
    "question_en": "What survey has the Ehsas Jdeed title?",
    "question_th": "แบบสำรวจใดมีชื่อ Ehsas Jdeed",
    "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_en": "What is the title for the Murex D'or survey, after 2005, Said Elmarouk as director, and was nominated?",
    "question_th": "ชื่อเรื่องของการสำรวจ Murex D'or หลังจากปี 2548 กล่าวว่า Elmarouk ดำรงตำแหน่งผู้อำนวยการและได้รับการเสนอชื่อเข้าชิงคืออะไร",
    "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_en": "What is the result for director Said Elmarouk before 2008?",
    "question_th": "ผลลัพธ์ของผู้กำกับ Said Elmarouk ก่อนปี 2551 คืออะไร?",
    "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_en": "What is the week 1 with candice hunnicutt in week 3?",
    "question_th": "สัปดาห์ที่ 1 กับแคนดิซ ฮันนิคุตต์ในสัปดาห์ที่ 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_en": "What is the week 2 with daniella mugnolo in week 1?",
    "question_th": "สัปดาห์ที่ 2 กับ Daniella Mugnolo ในสัปดาห์ที่ 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_en": "What is the week 3 with addison miller in week 2?",
    "question_th": "สัปดาห์ที่ 3 กับแอดดิสัน มิลเลอร์ในสัปดาห์ที่ 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_en": "In what year was the republican incumbent from Kentucky 2 district first elected?",
    "question_th": "ผู้ดำรงตำแหน่งพรรครีพับลิกันจากเขตเคนตักกี้ 2 ได้รับการเลือกตั้งครั้งแรกในปีใด",
    "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_en": "What is the average played for entries with fewer than 65 goals against, points 1 of 19 2, and a position higher than 15?",
    "question_th": "ค่าเฉลี่ยการเล่นสำหรับรายการที่มีประตูน้อยกว่า 65 ประตู, แต้ม 1 จาก 19 2 และตำแหน่งที่สูงกว่า 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_en": "What is the lowest drawn for entries with a lost of 13?",
    "question_th": "การจับรางวัลต่ำสุดสำหรับผลงานที่แพ้ 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_en": "For entries with fewer than 28 played, with 45 goals against and points 1 of 33, what is the average drawn?",
    "question_th": "สำหรับรายการที่มีการเล่นน้อยกว่า 28 ครั้ง โดยมี 45 ประตูและแต้ม 1 จาก 33 ค่าเฉลี่ยที่ได้คือเท่าใด",
    "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_en": "For entries with lost larger than 21 and goals for smaller than 36, what is the average drawn?",
    "question_th": "สำหรับผลงานที่เสียประตูมากกว่า 21 ประตูและประตูที่น้อยกว่า 36 ประตู ค่าเฉลี่ยที่ได้คือเท่าใด",
    "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_en": "What is the highest goals entry with drawn larger than 6 and goals against 85?",
    "question_th": "การเข้าทำประตูสูงสุดโดยเสมอมากกว่า 6 และประตูต่อ 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_en": "What is the To Par of Fredrik Jacobson?",
    "question_th": "To Par ของ 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_en": "What is the Place of Davis Love III with a To Par of +1?",
    "question_th": "สถานที่ของ Davis Love III โดยมีค่าพาร์ +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_en": "Which Start has a Duration of 6 months 2 days?",
    "question_th": "ซึ่งสตาร์ทมีระยะเวลา 6 เดือน 2 วัน?",
    "context": "CREATE TABLE table_name_55 (start VARCHAR, duration VARCHAR)"
  },
  {
    "answer": "SELECT duration FROM table_name_84 WHERE defeated_by = \"retired\"",
    "question_en": "Which duration was defeated by retired?",
    "question_th": "ระยะเวลาใดที่พ่ายแพ้ให้กับเกษียณ?",
    "context": "CREATE TABLE table_name_84 (duration VARCHAR, defeated_by VARCHAR)"
  },
  {
    "answer": "SELECT AVG(wins) FROM table_name_45 WHERE defeated_by = \"furuichi\"",
    "question_en": "How many wins, on average, were defeated by furuichi?",
    "question_th": "โดยเฉลี่ยแล้ว ฟุรุอิจิพ่ายแพ้ไปกี่ครั้ง?",
    "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_en": "How many wins for Port Fairy and against more than 2333?",
    "question_th": "ชัยชนะของ Port Fairy และมากกว่า 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_en": "How many byes when the draws are less than 0?",
    "question_th": "บายกี่บาทเมื่องวดน้อยกว่า 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_en": "How many draws when the Port Fairy FL is Hawkesdale and there are more than 9 wins?",
    "question_th": "พอร์ทแฟรี่ฟลอริดาเสมอกันกี่ครั้งและชนะมากกว่า 9 นัด?",
    "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_en": "What is the weight of the entry that has a date of birth of 1981-11-21?",
    "question_th": "รายการที่มีวันเกิดปี 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_en": "What is the name of the player from club Circolo Nautico Posillipo and a position of D?",
    "question_th": "นักเตะจากสโมสร ซีร์โคโล เนาติโก โปซิลลิโป ชื่ออะไร และตำแหน่ง 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_en": "What is the position of the player with a height of m (ft 6in)?",
    "question_th": "ตำแหน่งผู้เล่นที่มีส่วนสูง เมตร (ฟุต 6 นิ้ว) อยู่ในตำแหน่งใด?",
    "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_en": "Who won in 1979 with +8 to par?",
    "question_th": "ใครชนะในปี 1979 โดยมีพาร์ +8?",
    "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_en": "What is the average total in 1969?",
    "question_th": "ยอดรวมเฉลี่ยในปี 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_en": "What is the Score of the Tournament with Opponent in the final of Martin Spottl?",
    "question_th": "คะแนนของทัวร์นาเมนต์กับฝ่ายตรงข้ามในรอบสุดท้ายของ 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_en": "What is the Score of the Tournament played on Clay Surface on May 5, 1999?",
    "question_th": "คะแนนของการแข่งขันที่เล่นบน Clay Surface เมื่อวันที่ 5 พฤษภาคม 1999 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_42 (score VARCHAR, surface VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_26 WHERE score = \"6–4, 6–2\"",
    "question_en": "What is the Date of the game with a Score of 6–4, 6–2?",
    "question_th": "วันที่ของเกมที่มีคะแนน 6–4, 6–2 คืออะไร?",
    "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_en": "What is the Opponent in the final of the game on february 2, 2004?",
    "question_th": "ฝ่ายตรงข้ามคืออะไรในรอบชิงชนะเลิศของเกมวันที่ 2 กุมภาพันธ์ พ.ศ. 2547?",
    "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_en": "What team ran car #24 on August 30?",
    "question_th": "ทีมไหนวิ่งรถหมายเลข 24 เมื่อวันที่ 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_en": "What was the average speed of Tony Stewart's winning Chevrolet Impala?",
    "question_th": "ความเร็วเฉลี่ยของ Chevrolet Impala ที่ชนะโดย Tony Stewart คือเท่าใด",
    "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_en": "Which College/junior/club team (league) was the player from Switzerland from?",
    "question_th": "นักเตะจากสวิตเซอร์แลนด์มาจากทีมวิทยาลัย/จูเนียร์/สโมสร (ลีก) คนไหน?",
    "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_en": "Which player from the United States plays defence and was chosen before round 5?",
    "question_th": "ผู้เล่นคนใดจากสหรัฐอเมริกาที่เล่นแนวรับและได้รับเลือกก่อนรอบที่ 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_en": "What's the total attendance at anaheim stadium after 1983 when the result is 14-28?",
    "question_th": "ผู้เข้าชมทั้งหมดที่สนามอนาไฮม์หลังปี 1983 เมื่อผลการแข่งขันคือ 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_en": "What is the score when the tie is 8?",
    "question_th": "คะแนนเมื่อเสมอกันคือ 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_en": "Who is the home team with Liverpool as the away?",
    "question_th": "เจ้าบ้านกับลิเวอร์พูลทีมเยือนคือใคร?",
    "context": "CREATE TABLE table_name_76 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_29 WHERE tie_no = \"9\"",
    "question_en": "What is the score when the tie is 9?",
    "question_th": "คะแนนเมื่อเสมอกันคือ 9?",
    "context": "CREATE TABLE table_name_29 (score VARCHAR, tie_no VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_50 WHERE country = \"england\"",
    "question_en": "What's england's to par?",
    "question_th": "อังกฤษมีอะไรจะเสมอกัน?",
    "context": "CREATE TABLE table_name_50 (to_par VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_7 WHERE finish = \"t49\"",
    "question_en": "What country had a finish of t49?",
    "question_th": "ประเทศไหนจบ t49 ได้?",
    "context": "CREATE TABLE table_name_7 (country VARCHAR, finish VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_38 WHERE finish = \"t42\"",
    "question_en": "What country had a finish of t42?",
    "question_th": "ประเทศใดจบ t42 ได้?",
    "context": "CREATE TABLE table_name_38 (country VARCHAR, finish VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_96 WHERE total = 288",
    "question_en": "What's the finish for the total 288?",
    "question_th": "รวม 288 จบยังไงบ้างคะ?",
    "context": "CREATE TABLE table_name_96 (finish VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_68 WHERE against = 11",
    "question_en": "What is the status when the against is 11?",
    "question_th": "สถานะเมื่อต่อต้านคือ 11 คืออะไร?",
    "context": "CREATE TABLE table_name_68 (status VARCHAR, against VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_5 WHERE date = \"13/02/1954\"",
    "question_en": "What was the venue for the game played on 13/02/1954?",
    "question_th": "สถานที่สำหรับเล่นเกมเมื่อวันที่ 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_en": "What was the venue for the game played on 16/01/1954, when the against was more than 3?",
    "question_th": "สถานที่จัดการแข่งขันนัดที่ 16/01/1954 คือสนามใด เมื่อมีผู้แข่งขันมากกว่า 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_en": "What is the lowest against for games played in the stade colombes, paris venue?",
    "question_th": "ค่าต่ำสุดเทียบกับเกมที่เล่นในสนามสตาดโคลอมบ์ สนามปารีส?",
    "context": "CREATE TABLE table_name_51 (against INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_72 WHERE against = 11",
    "question_en": "In which venue was there an against of 11?",
    "question_th": "สนามไหนที่มีการต่อ 11?",
    "context": "CREATE TABLE table_name_72 (venue VARCHAR, against VARCHAR)"
  },
  {
    "answer": "SELECT elector FROM table_name_31 WHERE elevated = \"december 18, 1182\"",
    "question_en": "What Elector was Elevated on December 18, 1182?",
    "question_th": "ผู้มีสิทธิเลือกตั้งคนใดที่ได้รับการยกระดับในวันที่ 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_en": "What is the Elevator of the Elected Elevated on September 21, 1179?",
    "question_th": "ลิฟต์ของผู้ได้รับเลือกในวันที่ 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_en": "Who is the Elector with a Cardinalatial title of Priest of S. Sabina and Archbishop of Reims?",
    "question_th": "ใครคือผู้มีสิทธิเลือกตั้งที่มีตำแหน่งพระคาร์ดินัลเป็นพระสงฆ์แห่งเอส. ซาบีนาและอัครสังฆราชแห่งแร็งส์?",
    "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_en": "What Elector has an Elevator of Alexander III and a Cardinalatial title of Bishop of Palestrina?",
    "question_th": "ผู้มีสิทธิเลือกตั้งคนใดมีลิฟต์ของ Alexander III และตำแหน่งพระคาร์ดินัลของ 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_en": "Which team played their first leg at home with an aggregate score of 3-4?",
    "question_th": "ทีมใดเล่นเลกแรกในบ้านด้วยสกอร์รวม 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_en": "In what Country is Haugesund?",
    "question_th": "เฮาเกสซุนด์อยู่ประเทศใด",
    "context": "CREATE TABLE table_name_3 (country VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT airport FROM table_name_23 WHERE icao = \"ento\"",
    "question_en": "What Airport's ICAO is ENTO?",
    "question_th": "ICAO ของสนามบินใดคือ 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_en": "What is City of Sandefjord in Norway's IATA?",
    "question_th": "เมืองซานเดฟยอร์ดใน 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_en": "What is th IATA for Norway with an ICAO of ENTO?",
    "question_th": "IATA สำหรับนอร์เวย์ที่มี ICAO ของ ENTO คืออะไร",
    "context": "CREATE TABLE table_name_99 (iata VARCHAR, country VARCHAR, icao VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_67 WHERE icao = \"ekch\"",
    "question_en": "What Country has a ICAO of EKCH?",
    "question_th": "ประเทศใดมี ICAO ของ EKCH?",
    "context": "CREATE TABLE table_name_67 (country VARCHAR, icao VARCHAR)"
  },
  {
    "answer": "SELECT airport FROM table_name_64 WHERE city = \"oslo\"",
    "question_en": "What is the Airport in Oslo?",
    "question_th": "สนามบินในออสโลคืออะไร?",
    "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_en": "How many Drawn have a Lost smaller than 25, and a Goal Difference of +7, and a Played larger than 34?",
    "question_th": "จำนวนเสมอที่แพ้น้อยกว่า 25 และผลต่างประตูเป็น +7 และเล่นมากกว่า 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_en": "Which Goals For has a Played larger than 34?",
    "question_th": "เป้าหมายใดที่เล่นได้มากกว่า 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_en": "Which Position has 47 Goals Against, and a Played larger than 34?",
    "question_th": "ตำแหน่งใดที่มี 47 ประตูต่อ และตำแหน่งที่เล่นมากกว่า 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_en": "Which Goals For has a Lost of 12, and a Played larger than 34?",
    "question_th": "ประตูใดที่แพ้ 12 และเล่นมากกว่า 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_en": "What did Taiwan score?",
    "question_th": "ไต้หวันได้คะแนนเท่าไหร่?",
    "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_en": "Which country placed t9 and had the player jiyai shin?",
    "question_th": "ประเทศไหนติด t9 และมีผู้เล่น 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_en": "Who scored 69-74=143 for Colombia?",
    "question_th": "ใครทำประตูให้โคลอมเบียได้ 69-74=143?",
    "context": "CREATE TABLE table_name_78 (player VARCHAR, country VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_86 WHERE player = \"momoko ueda\"",
    "question_en": "What was Momoko Ueda's place?",
    "question_th": "บ้านของโมโมโกะ อุเอดะอยู่ที่ไหน?",
    "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_en": "Who placed t5 and had a score of 70-72=142?",
    "question_th": "ใครวาง t5 และมีคะแนน 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_en": "What place is David Graham in?",
    "question_th": "David Graham อยู่ที่ไหน?",
    "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_en": "What is the sum of the goals with less than 30 points, a position less than 10, and more than 57 goals against?",
    "question_th": "ผลรวมของประตูที่มีน้อยกว่า 30 คะแนน ตำแหน่งน้อยกว่า 10 และมากกว่า 57 ประตูต่อคืออะไร?",
    "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_en": "What is the lowest amount of draws with less than 12 wins and less than 30 played?",
    "question_th": "จำนวนเสมอต่ำสุดที่ชนะน้อยกว่า 12 ครั้งและเล่นน้อยกว่า 30 ครั้งคือเท่าใด?",
    "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_en": "What is the highest amount of goals with more than 51 goals against and less than 30 played?",
    "question_th": "จำนวนประตูสูงสุดที่ทำได้มากกว่า 51 ประตูและน้อยกว่า 30 ประตูคือเท่าไร?",
    "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_en": "What is the number of goals with less than 14 wins and a goal difference less than -4?",
    "question_th": "จำนวนประตูที่ชนะน้อยกว่า 14 ครั้งและผลต่างประตูน้อยกว่า -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_en": "What is the average number of goals against with more than 12 wins, 12 losses, and a position greater than 3?",
    "question_th": "จำนวนประตูเฉลี่ยต่อชัยชนะมากกว่า 12 ครั้ง แพ้ 12 ครั้ง และอันดับมากกว่า 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_en": "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?",
    "question_th": "จำนวนการแพ้ทั้งหมดโดยทำได้น้อยกว่า 73 ประตู ชนะน้อยกว่า 11 ครั้ง มากกว่า 24 แต้ม และตำแหน่งมากกว่า 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_en": "What is the sum of Goals, when Matches is less than 29?",
    "question_th": "ผลรวมของประตูเมื่อการแข่งขันน้อยกว่า 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_en": "What is the highest Average, when Goals is \"34\", and when Matches is less than 37?",
    "question_th": "อะไรคือค่าเฉลี่ยสูงสุด เมื่อประตูคือ \"34\" และเมื่อแมตช์น้อยกว่า 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_en": "With a tonnage of 225 what is the ship type?",
    "question_th": "น้ำหนัก 225 ตัน เป็นเรือประเภทอะไร?",
    "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_en": "Where was the ship when the ship had captured as the disposition of ship and was carrying 225 tonnage?",
    "question_th": "เรือลำนั้นอยู่ที่ไหนเมื่อเรือยึดได้เป็นท่าประจำเรือและบรรทุกได้ 225 ตัน?",
    "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_en": "For the ship that was a brig and located in the English Channel, what was the disposition of ship?",
    "question_th": "สำหรับเรือที่เป็นเรือสำเภาและตั้งอยู่ในช่องแคบอังกฤษ นิสัยของเรือเป็นอย่างไร?",
    "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_en": "With 14 under the date, what is the tonnage of the ship?",
    "question_th": "ด้วยวันที่ 14 ต่ำกว่า น้ำหนักเรือเท่าไรครับ?",
    "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_en": "The ship named Bacchus with a tonnage of t had what disposition of ship?",
    "question_th": "เรือลำนั้นชื่อแบคคัส หนัก 1 ตัน มีลักษณะเป็นเรือแบบใด",
    "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_en": "What date was a brig type ship located in SW Approaches?",
    "question_th": "เรือประเภทเรือสำเภาที่ตั้งอยู่ใน 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_en": "What was the attendance at Round 9?",
    "question_th": "ผู้เข้าร่วมรอบที่ 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_en": "Which Number of electorates (2009) has a Constituency number of 46?",
    "question_th": "ผู้มีสิทธิเลือกตั้งจำนวนใด (พ.ศ. 2552) มีเขตเลือกตั้งจำนวน 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_en": "What is the capacity of code f4r?",
    "question_th": "ความจุของรหัส 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_en": "What is the code of 1.5 dci 110, which has a capacity of 1,461cc?",
    "question_th": "1.5 dci 110 มีความจุ 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_en": "Can you tell me the Name that has the Height of 6-5, and the Year of junior?",
    "question_th": "คุณช่วยบอกฉันชื่อที่มีส่วนสูง 6-5 และปีรุ่นน้องได้ไหม?",
    "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_en": "Can you tell me the average Weight that has Height of 6-9?",
    "question_th": "คุณช่วยบอกฉันน้ำหนักเฉลี่ยที่มีส่วนสูง 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_en": "What team has fewer than 9 wins and less than 1593 against?",
    "question_th": "ทีมใดชนะน้อยกว่า 9 และน้อยกว่า 1,593 ต่อ?",
    "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_en": "What is the most wins with 0 byes?",
    "question_th": "อะไรชนะมากที่สุดด้วย 0 บาย?",
    "context": "CREATE TABLE table_name_84 (wins INTEGER, byes INTEGER)"
  },
  {
    "answer": "SELECT total FROM table_name_65 WHERE clubs = 10 AND place > 1",
    "question_en": "What total has 10 as the clubs, with a place greater than 1?",
    "question_th": "จำนวนไม้ทั้งหมดมี 10 ไม้ และมีตำแหน่งมากกว่า 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_en": "What are the lowest clubs that have a place greater than 5, with an all around greater than 9.7?",
    "question_th": "ไม้กอล์ฟที่ต่ำที่สุดที่มีอันดับมากกว่า 5 และมีคะแนนรวมมากกว่า 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_en": "What is the highest total that has andrea sinko as the name, with an all around greater than 9.65?",
    "question_th": "ผลรวมสูงสุดที่มีชื่อ Andrea Sinko โดยมีค่าทั้งหมดมากกว่า 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_en": "How many places have bianka panova as the name, with clubs less than 10?",
    "question_th": "มีกี่แห่งที่มีชื่อเป็น bianka panova และมีไม้กอล์ฟน้อยกว่า 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_en": "What is Date, when Country is \"China\", and when Perpetrator is \"Shi Yuejun , 35\"?",
    "question_th": "วันที่คืออะไร เมื่อประเทศคือ \"จีน\" และเมื่อผู้กระทำผิดคือ \"ชิ หยูจุน 35\"",
    "context": "CREATE TABLE table_name_59 (date VARCHAR, country VARCHAR, perpetrator VARCHAR)"
  },
  {
    "answer": "SELECT injured FROM table_name_21 WHERE country = \"afghanistan\"",
    "question_en": "What is Injured, when Country is \"Afghanistan\"?",
    "question_th": "ได้รับบาดเจ็บอะไร เมื่อประเทศคือ \"อัฟกานิสถาน\"?",
    "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_en": "What is Country, when Killed is \"100.9\", and when Year is greater than 1939.9?",
    "question_th": "ประเทศคืออะไร เมื่อ Killed คือ \"100.9\" และเมื่อ Year มากกว่า 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_en": "What is the average Year, when Date is \"04.01 April 1\"?",
    "question_th": "ปีเฉลี่ยคือเท่าใด เมื่อวันที่คือ \"04.01 วันที่ 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_en": "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?",
    "question_th": "จำนวนรวมของตำแหน่งเมื่อมีมากกว่า 48 ประตูต่อ, 1 จาก 29 แต้มที่เล่นและเล่นน้อยกว่า 34 เกมเป็นเท่าใด?",
    "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_en": "What is the smallest number of goals against when 8 games were lost, and the goals for are 60?",
    "question_th": "จำนวนประตูที่น้อยที่สุดต่อเมื่อแพ้ 8 เกมและประตูคือ 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_en": "What is the smallest number of goals against when there are 1 of 18 points, and more than 8 are drawn?",
    "question_th": "จำนวนประตูที่น้อยที่สุดต่อเมื่อมี 1 จาก 18 แต้มและเสมอกันมากกว่า 8 คืออะไร?",
    "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_en": "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?",
    "question_th": "เสมอกันน้อยกว่า 7 ประตู แพ้น้อยกว่า 21 นัด มี 1 ใน 33 แต้ม เท่ากับกี่ประตู?",
    "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_en": "Which Engine has a Model of sl500, and a Year From larger than 1999?",
    "question_th": "เครื่องยนต์ใดมีรุ่น sl500 และหนึ่งปีตั้งแต่ใหญ่กว่าปี 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_en": "Which Engine has a Model of sl500, and a Chassis smaller than 129.067?",
    "question_th": "เครื่องยนต์ใดที่มีรุ่น sl500 และแชสซีที่เล็กกว่า 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_en": "How many engines have a Model of sl600, and a Year From of 1994, and a Year To smaller than 1995?",
    "question_th": "มีเครื่องยนต์กี่รุ่นที่มีรุ่น sl600 และหนึ่งปีตั้งแต่ปี 1994 และหนึ่งปีถึงเล็กกว่าปี 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_en": "Which Year To has an Engine of 119.972, and a Chassis smaller than 129.067?",
    "question_th": "ปีใดที่จะมีเครื่องยนต์ 119.972 และแชสซีที่เล็กกว่า 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_en": "What Time has a Show Name of mornings with neil mitchell?",
    "question_th": "รายการตอนเช้ากับนีล มิทเชลล์มีชื่อรายการกี่โมง?",
    "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_en": "What Time has Ad Freq of 15 minutes, and a Show Name of country today?",
    "question_th": "เวลาใดที่มีความถี่โฆษณา 15 นาที และแสดงชื่อประเทศในปัจจุบัน",
    "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_en": "What Time has a Show Name of mornings with neil mitchell?",
    "question_th": "รายการตอนเช้ากับนีล มิทเชลล์มีชื่อรายการกี่โมง?",
    "context": "CREATE TABLE table_name_15 (time VARCHAR, show_name VARCHAR)"
  },
  {
    "answer": "SELECT local_networked FROM table_name_99 WHERE show_name = \"nightline\"",
    "question_en": "What Local/Networked has a Show Name of nightline?",
    "question_th": "ท้องถิ่น/เครือข่ายใดมีชื่อรายการเป็น 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–4:00pm\"",
    "question_en": "What News Freq has a Time of 1:00pm–4:00pm?",
    "question_th": "ความถี่ข่าวใดมีเวลา 13.00-16.00 น.",
    "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_en": "What was the ERP W for 96.7 MHz?",
    "question_th": "ERP W สำหรับ 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_en": "What was the class for Appleton, Wisconsin?",
    "question_th": "เมืองแอปเปิลตัน รัฐวิสคอนซิน ชั้นเรียนอะไร",
    "context": "CREATE TABLE table_name_96 (class VARCHAR, city_of_license VARCHAR)"
  },
  {
    "answer": "SELECT transfers_in FROM table_name_36 WHERE country = \"hungary\"",
    "question_en": "What are the transfers in for Hungary?",
    "question_th": "การโอนเงินไปฮังการีมีอะไรบ้าง?",
    "context": "CREATE TABLE table_name_36 (transfers_in VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT transfers_out FROM table_name_76 WHERE country = \"peru\"",
    "question_en": "What are the Transfers out for Peru?",
    "question_th": "การโอนเงินไปเปรูมีอะไรบ้าง?",
    "context": "CREATE TABLE table_name_76 (transfers_out VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT points_1 FROM table_name_88 WHERE lost = 22",
    "question_en": "WHAT POINTS 1 HAD A 22 LOST?",
    "question_th": "คะแนนอะไร 1 มี 22 แพ้?",
    "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_en": "WHAT GOALS AGAINST HAD A GOAL FOR OF 46, AND PLAYED LESS THAN 38?",
    "question_th": "ประตูใดที่ทำได้ 46 ประตูและเล่นน้อยกว่า 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_en": "WHAT IS THE POSITION WITH A LOST OF 6, FOR CAERNARFON TOWN?",
    "question_th": "ตำแหน่งที่แพ้ 6 สำหรับเมืองแคร์นาร์ฟอนคืออะไร?",
    "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_en": "WHAT IS THE SUM PLAYED WITH POINTS 1 OF 53, AND POSITION LARGER THAN 3?",
    "question_th": "ผลรวมที่เล่นด้วยคะแนน 1 จาก 53 และตำแหน่งที่มากกว่า 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_en": "WHAT IS THE LOST WITH A DRAWN 11, FOR LEEK TOWN?",
    "question_th": "อะไรคือการสูญเสียจากการเสมอ 11 สำหรับ 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_en": "Which player has a subtotal of more than 3 and more than 8 in round 1?",
    "question_th": "ผู้เล่นคนใดมีผลรวมย่อยมากกว่า 3 และมากกว่า 8 ในรอบที่ 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_en": "What is the ranking for the United States when the money is $200?",
    "question_th": "เงินอยู่ที่ 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_en": "What is the ranking when Archie Compston is the player and the money is $73?",
    "question_th": "อันดับที่เท่าไหร่เมื่อ Archie Compston เป็นผู้เล่นและเงินอยู่ที่ $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_en": "Which country has a to par less than 19 and a score of 75-79-77-73=304?",
    "question_th": "ประเทศใดมีพาร์ต่ำกว่า 19 และคะแนน 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_en": "What is the score for the United States when Harry Hampton is the player and the money is $73?",
    "question_th": "คะแนนของประเทศสหรัฐอเมริกาเมื่อ Harry Hampton เป็นผู้เล่นและเงินอยู่ที่ $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_en": "What is the greatest 2010 for Miami, Fl?",
    "question_th": "ปี 2010 ที่ยิ่งใหญ่ที่สุดสำหรับไมอามี่ ฟลอริดาคืออะไร?",
    "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_en": "What is the North American release date of the remake with a European release date on 2013-03-20?",
    "question_th": "วันที่วางจำหน่ายในอเมริกาเหนือของการรีเมคพร้อมวันวางจำหน่ายในยุโรปในวันที่ 20-03-2013 คืออะไร?",
    "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_en": "What is the series with a North American release date on 2013-09-03?",
    "question_th": "ซีรีส์เรื่องใดบ้างที่จะออกฉายในอเมริกาเหนือในวันที่ 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_en": "What is the US cash box before 1978 with a US billboard of 35?",
    "question_th": "กล่องเงินสดของสหรัฐฯ ก่อนปี 1978 ที่มีป้ายโฆษณาของสหรัฐฯ จำนวน 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_en": "What is the country of the player with a t6 place?",
    "question_th": "ผู้เล่นอันดับที่ 6 คือประเทศอะไร?",
    "context": "CREATE TABLE table_name_33 (country VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_33 WHERE score = 72 - 71 - 65 = 208",
    "question_en": "What is the place of the player with a 72-71-65=208 score?",
    "question_th": "นักเตะที่มีคะแนน 72-71-65=208 อยู่ในอันดับที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_33 (place VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_96 WHERE player = \"thomas bjørn\"",
    "question_en": "What country is player thomas bjørn from?",
    "question_th": "โธมัส บียอร์น นักเตะจากประเทศใด?",
    "context": "CREATE TABLE table_name_96 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_86 WHERE score = 66 - 68 - 70 = 204",
    "question_en": "What is the place of the player with a 66-68-70=204 score?",
    "question_th": "นักเตะที่มีคะแนน 66-68-70=204 อยู่อันดับที่เท่าไหร่?",
    "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_en": "What is the number of wins when the goals against is larger than 41, points is 29, and draws are larger than 5?",
    "question_th": "จำนวนชัยชนะเมื่อประตูมากกว่า 41, 29 แต้มและเสมอมากกว่า 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_en": "What is the number of draws when played is smaller than 30?",
    "question_th": "จำนวนเสมอเมื่อเล่นน้อยกว่า 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_en": "What is the number of losses when the goal difference was -8, and position is smaller than 10?",
    "question_th": "จำนวนการแพ้เมื่อผลต่างประตูคือ -8 และอันดับน้อยกว่า 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_en": "What is the wins number when the points were smaller than 27, and goals against was 41?",
    "question_th": "หมายเลขชัยชนะเมื่อคะแนนน้อยกว่า 27 และประตูที่ทำได้คือ 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_en": "What is the losses when the goal difference is larger than 26?",
    "question_th": "อะไรคือความสูญเสียเมื่อผลต่างประตูมากกว่า 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_en": "What is the goals for when played is larger than 30?",
    "question_th": "เป้าหมายเมื่อเล่นมากกว่า 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_en": "What is the score on 2 October 2011?",
    "question_th": "คะแนนเมื่อวันที่ 2 ตุลาคม 2554 เป็นอย่างไรบ้าง?",
    "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_en": "What is the surface of the tournament with a runner-up outcome and dudi sela as the opponent?",
    "question_th": "พื้นผิวของทัวร์นาเมนต์ที่ผลการแข่งขันรองชนะเลิศและ dudi sela เป็นคู่ต่อสู้เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_59 (surface VARCHAR, outcome VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT shooter FROM table_name_75 WHERE event = \"wc beijing\"",
    "question_en": "Who was the shooter for the WC Beijing event?",
    "question_th": "ใครคือมือปืนในงาน WC Beijing?",
    "context": "CREATE TABLE table_name_75 (shooter VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT score_points FROM table_name_65 WHERE total = \"olympic bronze medalist\"",
    "question_en": "With Olympic Bronze Medalist as the total what are the score points?",
    "question_th": "โดยผู้ชนะเลิศเหรียญทองแดงโอลิมปิกมีคะแนนรวมเท่าไร?",
    "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_en": "With a total of 11, and 10 rank points, what are the score points?",
    "question_th": "มีคะแนนสะสมทั้งหมด 11 และ 10 คะแนน จะได้คะแนนเท่าไหร่?",
    "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_en": "Who is the shooter with 15 rank points, and 0 score points?",
    "question_th": "ใครคือมือปืนที่มีคะแนนอันดับ 15 และ 0 คะแนน?",
    "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_en": "With a total of 11, what is the score points?",
    "question_th": "รวม 11 คะแนน ได้คะแนนเท่าไร?",
    "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_en": "Which Losses have a South West DFL of branxholme-wallacedale, and less than 2 Byes?",
    "question_th": "การสูญเสียใดที่มี DFL ทางตะวันตกเฉียงใต้ของ branxholme-wallacedale และน้อยกว่า 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_en": "Which draws have an average of 14 wins?",
    "question_th": "เสมอใดมีค่าเฉลี่ยชนะ 14?",
    "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_en": "How many wins have 16 losses and an Against smaller than 3213?",
    "question_th": "ชนะกี่ครั้งมีการแพ้ 16 ครั้งและแพ้น้อยกว่า 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_en": "How many Draws have a South West DFL of tyrendarra, and less than 10 wins?",
    "question_th": "เสมอกันกี่ครั้งที่มีไทเรนดาร์ราทางตะวันตกเฉียงใต้ และชนะน้อยกว่า 10 ครั้ง?",
    "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_en": "What Circuit has a Winning constructor of bugatti, and a Winning driver of edward bret?",
    "question_th": "Circuit ใดมี Winning Constructor ของ Bugatti และ Winning Driver ของ 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_en": "What Circuit has a Date of 25 july?",
    "question_th": "สนามไหนมีวันที่ 25 กรกฎาคม?",
    "context": "CREATE TABLE table_name_55 (circuit VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_26 WHERE name = \"thuin circuit\"",
    "question_en": "What Date has a Name of thuin circuit?",
    "question_th": "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_en": "What Name has a Winning constructor of bugatti, and a Winning driver of louis chiron?",
    "question_th": "ชื่ออะไรมี Winning Constructor ของ Bugatti และ Winning Driver ของ 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_en": "What Winning driver has a Name of mugello circuit?",
    "question_th": "นักแข่งที่ชนะคนใดมีชื่อวงจรมูเจลโล?",
    "context": "CREATE TABLE table_name_55 (winning_driver VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT winning_driver FROM table_name_59 WHERE winning_constructor = \"talbot\"",
    "question_en": "What Winning driver has a Winning constructor of talbot?",
    "question_th": "Winning driver ใดที่มี Winning Constructor ของ 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_en": "What is the away team of the match with a 356 attendance?",
    "question_th": "ทีมเยือนของแมตช์นี้มีผู้เข้าชม 356 คน?",
    "context": "CREATE TABLE table_name_64 (away_team VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_21 WHERE year_s__won = \"1993\"",
    "question_en": "Which player won in 1993?",
    "question_th": "ผู้เล่นคนไหนชนะในปี 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_en": "How many to pars were won in 1993?",
    "question_th": "ชนะพาร์ได้กี่พาร์ในปี 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_en": "What is Zimbabwe's total with a to par higher than 5?",
    "question_th": "ผลรวมของซิมบับเวที่มีพาร์สูงกว่า 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_en": "What is the total for 1986 with a to par higher than 6?",
    "question_th": "ผลรวมของปี 1986 โดยมีพาร์สูงกว่า 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_en": "What is the total for 1984 for the team with 100 points total and more than 3 seasons?",
    "question_th": "ยอดรวมของปี 1984 สำหรับทีมที่มีคะแนนรวม 100 คะแนนและมากกว่า 3 ฤดูกาลเป็นเท่าใด",
    "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_en": "What is the points total for the team with points average more than 34, 1984 score more than 37 and N/A in 1982?",
    "question_th": "คะแนนรวมของทีมที่มีคะแนนเฉลี่ยมากกว่า 34, 1984 คะแนนมากกว่า 37 และ N/A ในปี 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_en": "What team had 3 seasons and fewer than 27 in 1984?",
    "question_th": "ทีมใดมี 3 ฤดูกาลและน้อยกว่า 27 ฤดูกาลในปี 1984",
    "context": "CREATE TABLE table_name_71 (team VARCHAR, seasons VARCHAR)"
  },
  {
    "answer": "SELECT SUM(seasons) FROM table_name_45 WHERE total_points < 24",
    "question_en": "What is the number of seasons for the team with a total fewer than 24?",
    "question_th": "จำนวนฤดูกาลของทีมที่มีทั้งหมดน้อยกว่า 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_en": "What is the weight of the player from club panionios g.c. and was born on 1975-05-21?",
    "question_th": "นักเตะจากสโมสร panionios GC และเกิดวันที่ 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_en": "How much Height of ground station(m) has a Name of lutersee, and a Height of mountain station(m) larger than 2398?",
    "question_th": "ความสูงของสถานีภาคพื้นดิน (ม.) มีชื่อ lutersee และความสูงของสถานีบนภูเขา (m) มากกว่า 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_en": "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?",
    "question_th": "สถานีภาคพื้นดินระดับความสูงใดที่สามารถรองรับคน/ชั่วโมงได้มากกว่า 820 และชื่อหรือเส้นทางเบียร์ลาเกอร์ 1 และความยาวทางลาดน้อยกว่า 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_en": "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?",
    "question_th": "ความยาวลาดใดที่มีการยกพื้นผิวประเภทหนึ่ง และสถานีภาคพื้นดินที่มีระดับความสูงน้อยกว่าปี 1974 และปีที่ก่อสร้างในปี 1971 และชื่อหรือเส้นทางของเทือกเขาแอลป์ 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_en": "What is the lowest pick that has arizona cardinals as the NFL club?",
    "question_th": "ตัวเลือกต่ำสุดที่มีพระคาร์ดินัลแอริโซนาเป็นสโมสร NFL คืออะไร?",
    "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_en": "What round has a pick less than 189, with arizona cardinals as the NFL club?",
    "question_th": "รอบใดที่มีคนเลือกน้อยกว่า 189 คน โดยมีคาร์ดินัลแอริโซนาเป็นสโมสร NFL",
    "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_en": "What player has defensive back as the position, with a round less than 2?",
    "question_th": "ผู้เล่นคนไหนมีกองหลังเป็นตำแหน่งโดยมีรอบน้อยกว่า 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_en": "What lowest round has orlando pace as the player?",
    "question_th": "รอบต่ำสุดใดที่มีความเร็วของออร์แลนโด้ในฐานะผู้เล่น?",
    "context": "CREATE TABLE table_name_3 (round INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_name_6 WHERE opponent = \"seattle supersonics\"",
    "question_en": "What was the location when the opponent was Seattle Supersonics?",
    "question_th": "ตำแหน่งใดที่คู่ต่อสู้คือ 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–109 (ot)\"",
    "question_en": "What was the record for less than 78 games and a score of 114–109 (ot)?",
    "question_th": "สถิติการเล่นน้อยกว่า 78 เกมและคะแนน 114–109 (ot) คืออะไร?",
    "context": "CREATE TABLE table_name_69 (record VARCHAR, game VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_96 WHERE game = 75",
    "question_en": "Who was the opponent for game 75?",
    "question_th": "ใครคือคู่ต่อสู้ในเกมที่ 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_en": "Which Wrestler plays for Team Batista which was Elimated by Orton on Elimination 8?",
    "question_th": "นักมวยปล้ำคนไหนเล่นให้กับทีม Batista ซึ่งถูก Orton ตกรอบในรอบที่ 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_en": "What time was the Wrestler Henry eliminated by Batista?",
    "question_th": "นักมวยปล้ำ Henry ถูกบาติสตาตกรอบกี่โมง?",
    "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_en": "Which Elimination Move is listed at Elimination 8 for Team Batista?",
    "question_th": "Elimination Move ใดแสดงอยู่ใน Elimination 8 สำหรับ 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_en": "Which Elimination move is listed against Team Orton, Eliminated by Batista against Elimination number 7?",
    "question_th": "การย้ายทีมใดที่คัดออกในรายการระหว่างทีมออร์ตัน ตกรอบโดยบาติสตา กับทีมคัดออกหมายเลข 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_en": "What Elimination Move is listed against Wrestler Henry, Eliminated by Batista?",
    "question_th": "รายการ Elimination Move ใดที่แสดงต่อนักมวยปล้ำ Henry, ถูก 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_en": "What is the Elimination move listed against Regal?",
    "question_th": "อะไรคือความเคลื่อนไหวของ Elimination ที่แสดงต่อ Regal?",
    "context": "CREATE TABLE table_name_28 (elimination VARCHAR, wrestler VARCHAR)"
  },
  {
    "answer": "SELECT AVG(total) FROM table_name_76 WHERE player = \"jeff sluman\"",
    "question_en": "Name the Total of jeff sluman?",
    "question_th": "ตั้งชื่อ 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_en": "Name the Total of australia and a To par smaller than 7?",
    "question_th": "ตั้งชื่อผลรวมของออสเตรเลียและค่าพาร์ที่น้อยกว่า 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_en": "Name the To par that has a Year(s) won of 1988 and a Total smaller than 148?",
    "question_th": "ตั้งชื่อพาร์ To ที่มีปีที่ชนะในปี 1988 และผลรวมน้อยกว่า 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_en": "Which Number has a Home Club of broomstones, and a Year End smaller than 1999?",
    "question_th": "เบอร์ไหนมีโฮมคลับเป็นไม้กวาด และสิ้นปีน้อยกว่าปี 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_en": "Which Year Start has a Number of 28?",
    "question_th": "ปีที่เริ่มต้นมีจำนวน 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_en": "Which Number has a Name of hill, lucius t.?",
    "question_th": "เบอร์ไหนชื่อฮิล ลูเซียส ที.?",
    "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_en": "Which Number has a Year Start smaller than 1874, and a Year End larger than 1873?",
    "question_th": "หมายเลขใดที่มีปีที่เริ่มต้นน้อยกว่าปี 1874 และวันสิ้นปีที่มากกว่าปี 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_en": "Which Number has a Name of cooper, c. kenneth, and a Year End larger than 1984?",
    "question_th": "เบอร์ไหนมีชื่อคูเปอร์ค. เคนเนธ และสิ้นปีที่ใหญ่กว่าปี 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_en": "What is Venue, when Status is \"Test Match\", and when Against is \"12\"?",
    "question_th": "สนามคืออะไร เมื่อสถานะเป็น \"ทดสอบแมตช์\" และเมื่อใดเป็น \"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_en": "What is Opposing Teams, when Date is \"11/10/1991\"?",
    "question_th": "ทีมตรงข้ามคืออะไร เมื่อวันที่คือ \"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_en": "What is Date, when Opposing Teams is \"Australia\", and when Venue is \"Twickenham , London\"?",
    "question_th": "วันที่คือเมื่อใดเมื่อทีมตรงข้ามคือ \"ออสเตรเลีย\" และเมื่อใดสถานที่คือ \"ทวิคเกนแฮม ลอนดอน\"?",
    "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_en": "What is Against, when Opposing Teams is \"Australia\", and when Date is \"27/07/1991\"?",
    "question_th": "Against คืออะไร เมื่อทีมตรงข้ามคือ \"ออสเตรเลีย\" และวันที่คือ \"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_en": "What is the tie no of the game where exeter city was the home team?",
    "question_th": "เอ็กเซเตอร์ ซิตี้ เป็นเจ้าบ้านเสมอกันอย่างไร?",
    "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_en": "What is the score of the game against away team exeter city on 10 jan 1990?",
    "question_th": "เกมนี้กับทีมเยือน เอ็กเซเตอร์ ซิตี้ เมื่อวันที่ 10 มกราคม 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_en": "What date did home team liverpool play?",
    "question_th": "ทีมเหย้า ลิเวอร์พูล ลงเล่นวันไหน?",
    "context": "CREATE TABLE table_name_70 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_3 WHERE away_team = \"crewe alexandra\"",
    "question_en": "What was the score of the game against away team crewe alexandra?",
    "question_th": "ในเกมกับทีมเยือน อเล็กซานดรา สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_3 (score VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT results FROM table_name_79 WHERE first_elected = 1996",
    "question_en": "What are the results of the incumbent who was first elected in 1996?",
    "question_th": "ผู้ดำรงตำแหน่งที่ได้รับเลือกครั้งแรกในปี 2539 มีผลอย่างไร?",
    "context": "CREATE TABLE table_name_79 (results VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT results FROM table_name_4 WHERE first_elected = 1996",
    "question_en": "What are the results of the incumbent who was first elected in 1996?",
    "question_th": "ผู้ดำรงตำแหน่งที่ได้รับเลือกครั้งแรกในปี 2539 มีผลอย่างไร?",
    "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_en": "Who is the incumbent who was first elected before 2002 from the maryland 3 district?",
    "question_th": "ใครคือผู้ดำรงตำแหน่งที่ได้รับเลือกครั้งแรกก่อนปี 2545 จากเขตแมริแลนด์ 3",
    "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_en": "What is the party of the maryland 6 district?",
    "question_th": "ปาร์ตี้ของเขต 6 แมรี่แลนด์คืออะไร?",
    "context": "CREATE TABLE table_name_73 (party VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT silver FROM table_name_35 WHERE year = 1962",
    "question_en": "WHAT IS THE SILVER WITH A YEAR OF 1962?",
    "question_th": "เงินในปี 1962 คืออะไร?",
    "context": "CREATE TABLE table_name_35 (silver VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT AVG(year) FROM table_name_88 WHERE bronze = \"valentin novikov\"",
    "question_en": "WHAT YEAR HAS A BRONZE OF VALENTIN NOVIKOV?",
    "question_th": "ปีใดที่มีเหรียญทองแดงของ 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_en": "WHAT YEAR HAS A SILVER FOR MATTHIAS MERZ?",
    "question_th": "ปีไหนที่มีเงินสำหรับ 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_en": "WHAT IS THE YEAR WITH A BRONZE OF AIMO TEPSELL?",
    "question_th": "ปีที่มีเหรียญทองแดงของ 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_en": "What is To par, when Player is \"Greg Turner\"?",
    "question_th": "อะไรคือค่าพาร์ เมื่อผู้เล่นคือ \"เกร็ก เทิร์นเนอร์\"?",
    "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_en": "What is Score, when Country is \"United States\", and when Player is \"Mark Brooks\"?",
    "question_th": "Score คืออะไร เมื่อประเทศคือ \"สหรัฐอเมริกา\" และเมื่อผู้เล่นคือ \"Mark Brooks\"",
    "context": "CREATE TABLE table_name_34 (score VARCHAR, country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(money___) AS £__ FROM table_name_95 WHERE player = \"peter hedblom\"",
    "question_en": "What is the highest Money ( £ ), when Player is \"Peter Hedblom\"?",
    "question_th": "เงินสูงสุด (£) คือเท่าไรเมื่อผู้เล่นคือ \"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_en": "What is the total number of losses for a draw of 7, and 1 points less than 33?",
    "question_th": "จำนวนการสูญเสียทั้งหมดสำหรับการเสมอ 7 และ 1 แต้มน้อยกว่า 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_en": "What is the total number drawn with goals against less than 55, and a total of 14 losses?",
    "question_th": "จำนวนทั้งหมดที่เสมอโดยได้ประตูต่อน้อยกว่า 55 และแพ้ทั้งหมด 14 ครั้งคือเท่าไร?",
    "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_en": "What is the total number of goals that has been played less than 38 times?",
    "question_th": "จำนวนประตูทั้งหมดที่เล่นน้อยกว่า 38 ครั้งคือเท่าไร?",
    "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_en": "What is the Diameter of the Dog Sled (gold variant) Theme coin?",
    "question_th": "เหรียญธีมเส้นผ่านศูนย์กลางของ Dog Sled (รุ่นสีทอง) คืออะไร",
    "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_en": "What is the MIntage after 2006 of the Ruby-Throated Hummingbird Theme coin?",
    "question_th": "MIntage หลังปี 2549 ของเหรียญธีม Ruby-Throated Hummingbird คืออะไร",
    "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_en": "What is the Mintage of the 12.61 g Weight Ruby-Throated Hummingbird?",
    "question_th": "เหรียญกษาปณ์ของนกฮัมมิงเบิร์ดคอทับทิมน้ำหนัก 12.61 กรัมคือเท่าไร?",
    "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_en": "What is the Year of the Coin with an Issue Price of $1089.95 and Mintage less than 900?",
    "question_th": "ปีแห่งเหรียญคือปีใดที่ราคาออกที่ $1,089.95 และจำนวนผลิตน้อยกว่า 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_en": "What is the Theme of the coin with an Issue Price of $89.95?",
    "question_th": "รูปแบบของเหรียญที่มีราคาออกที่ $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_en": "What was the winning team on 11 July?",
    "question_th": "ทีมใดที่ชนะในวันที่ 11 กรกฎาคม?",
    "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étition a.z.k./roc-compétition\" AND date = \"2 june\"",
    "question_en": "Who is the winning driver of the race on 2 June with a.z.k./roc-compétition a.z.k./roc-compétition as the winning team?",
    "question_th": "ใครคือนักแข่งที่ชนะการแข่งขันในวันที่ 2 มิถุนายน โดยมี azk/roc-compétition azk/roc-compétition เป็นทีมที่ชนะ",
    "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_en": "Who is the winning driver of the race on 5 May?",
    "question_th": "ใครคือผู้ชนะการแข่งขันในวันที่ 5 พฤษภาคม?",
    "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étition a.z.k./roc-compétition\" AND date = \"30 june\"",
    "question_en": "What is the round on 30 June with a.z.k./roc-compétition a.z.k./roc-compétition as the winning team?",
    "question_th": "วันที่ 30 มิถุนายน รอบอะไรคือทีม azk/roc-compétition azk/roc-compétition เป็นผู้ชนะ?",
    "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étition a.z.k./roc-compétition\" AND circuit = \"zolder\"",
    "question_en": "What is the date of the zolder circuit, which had a.z.k./roc-compétition a.z.k./roc-compétition as the winning team?",
    "question_th": "วันที่ของสนามโซลเดอร์ซึ่งมี azk/roc-compétition azk/roc-compétition เป็นทีมที่ชนะคือเมื่อใด",
    "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_en": "What place did Bob May get when his score was 72-66=138?",
    "question_th": "Bob May ได้อันดับที่ใดเมื่อคะแนนของเขาคือ 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_en": "What country is Stephen Ames from with a place value of t9?",
    "question_th": "Stephen Ames มาจากประเทศใดโดยมีค่าสถานที่เป็น t9",
    "context": "CREATE TABLE table_name_20 (country VARCHAR, place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_28 WHERE to_par = \"–10\"",
    "question_en": "What place had a To par of –10?",
    "question_th": "สถานที่ใดมีพาร์ถึง –10?",
    "context": "CREATE TABLE table_name_28 (place VARCHAR, to_par VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_18 WHERE player = \"darren clarke\"",
    "question_en": "What country is Darren Clarke from?",
    "question_th": "ดาร์เรน คลาร์ก มาจากประเทศใด",
    "context": "CREATE TABLE table_name_18 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_78 WHERE score = 70 - 69 = 139",
    "question_en": "What is the To par value that goes with a Score of 70-69=139?",
    "question_th": "มูลค่าพาร์ To ที่ไปกับคะแนน 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_en": "What is the sum of Goals, when Season is \"2005-06\", and when Division is less than 1?",
    "question_th": "ผลรวมของประตูเมื่อฤดูกาลคือ \"2005-06\" และเมื่อดิวิชั่นน้อยกว่า 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_en": "What is Season, when Goals is less than 6, and when Team is \"Tarbiat Yazd\"?",
    "question_th": "ฤดูกาลคืออะไร เมื่อประตูน้อยกว่า 6 และเมื่อทีมคือ \"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_en": "What is the lowest Division, when Goals is less than 5, and when Season is \"2002-03\"?",
    "question_th": "ดิวิชั่นต่ำสุดคือเมื่อประตูน้อยกว่า 5 และเมื่อฤดูกาลคือ \"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_en": "What is the average Goals, when Team is \"Rah Ahan\", and when Division is less than 1?",
    "question_th": "ประตูเฉลี่ยคือเท่าไร เมื่อทีมคือ \"ราห์ อาฮัน\" และเมื่อดิวิชั่นน้อยกว่า 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_en": "What is the lowest capacity that has stadion mladina as the stadium?",
    "question_th": "ความจุต่ำสุดที่มีสตาเดียน มลาดินาเป็นสนามคือเท่าไร?",
    "context": "CREATE TABLE table_name_96 (capacity INTEGER, stadium VARCHAR)"
  },
  {
    "answer": "SELECT stadium FROM table_name_13 WHERE city = \"kutina\"",
    "question_en": "What stadium has kutina as the city?",
    "question_th": "สนามไหนมีคูติน่าเป็นเมือง?",
    "context": "CREATE TABLE table_name_13 (stadium VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT h___a FROM table_name_4 WHERE date = \"29 july 1992\"",
    "question_en": "What was the H/A on 29 july 1992?",
    "question_th": "H/A เมื่อวันที่ 29 กรกฎาคม 2535 คืออะไร?",
    "context": "CREATE TABLE table_name_4 (h___a VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result_f___a FROM table_name_8 WHERE opponents = \"rosenborg\"",
    "question_en": "Which Result F-A has Opponents of rosenborg?",
    "question_th": "ผลการแข่งขันใดที่ FA มีฝ่ายตรงข้ามของโรเซนบอร์ก?",
    "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_en": "What is the depth of the quake that occurred at 19:48?",
    "question_th": "แผ่นดินไหวเมื่อเวลา 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_en": "What is the magnitude with epicenter at Vrancea County, unknown intensity and which happened at 06:36?",
    "question_th": "ขนาดศูนย์กลางแผ่นดินไหวที่เทศมณฑลวรันเซียเป็นเท่าใด ไม่ทราบความรุนแรง และเกิดขึ้นเมื่อเวลา 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_en": "Where was the epicenter of the quake on December 1, 2012?",
    "question_th": "จุดศูนย์กลางแผ่นดินไหวเมื่อวันที่ 1 ธันวาคม 2555 อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_54 (epicenter VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_6 WHERE year_s__won = \"1991\"",
    "question_en": "What is Finish, when Year(s) Won is \"1991\"?",
    "question_th": "Finish คืออะไร เมื่อปีที่ชนะคือ \"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_en": "What is Year(s) Won, when Finish is \"T31\", and when Player is \"Nick Price\"?",
    "question_th": "ปีที่ชนะคืออะไร เมื่อจบการแข่งขันคือ \"T31\" และเมื่อผู้เล่นคือ \"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_en": "What is Country, when Total is greater than 283, and when Year(s) Won is \"1989\"?",
    "question_th": "ประเทศคืออะไร เมื่อผลรวมมากกว่า 283 และเมื่อปีที่ชนะคือ \"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_en": "born on 1983-03-14, what is the cb's name?",
    "question_th": "เกิดวันที่ 14-03-2526 ชื่อ cb คืออะไร?",
    "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_en": "born on 1973-08-21, what is the cf's name?",
    "question_th": "เกิดวันที่ 21-08-2516 CF ชื่ออะไรคะ?",
    "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_en": "What attendance has detroit lions as the opponent?",
    "question_th": "ดีทรอยต์ไลออนส์เป็นคู่ต่อสู้ที่เข้าร่วมอะไรบ้าง?",
    "context": "CREATE TABLE table_name_14 (attendance VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_62 WHERE opponent = \"houston texans\"",
    "question_en": "What score has houston texans as the opponent?",
    "question_th": "ฮุสตัน เท็กแซนส์ เป็นคู่แข่งได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_62 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_18 WHERE date = \"october 31\"",
    "question_en": "What score has October 31 as the date?",
    "question_th": "วันที่ 31 ตุลาคม มีคะแนนเท่าไหร่?",
    "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_en": "What record has w as the result, with January 2 as the date?",
    "question_th": "ผลลัพธ์ที่ได้คือบันทึกอะไร โดยวันที่ 2 มกราคมเป็นวันที่?",
    "context": "CREATE TABLE table_name_7 (record VARCHAR, result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_69 WHERE team_from = \"aik\"",
    "question_en": "What is the position of the team player from Aik?",
    "question_th": "นักเตะในทีมไอค์ตำแหน่งอะไร?",
    "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_en": "What is the average pick # from the Quebec Major Junior Hockey League player Samuel Carrier?",
    "question_th": "อะไรคือค่าเฉลี่ยของการเลือก # จากผู้เล่น Quebec Major Junior Hockey League 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_en": "What is the total pick # for the D position from a team from Chilliwack Bruins?",
    "question_th": "ตัวเลือก # ทั้งหมดสำหรับตำแหน่ง D จากทีมจาก 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_en": "What is the league that has the pick #160?",
    "question_th": "ลีกที่มีตัวเลือก #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_en": "What bowl game was played on Dec. 26, 2007?",
    "question_th": "เกมชามใดที่เล่นในวันที่ 26 ธันวาคม พ.ศ. 2550",
    "context": "CREATE TABLE table_name_79 (bowl_game VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opp_team FROM table_name_49 WHERE score = \"21-17\"",
    "question_en": "Who was the opposing team in the game with a score of 21-17?",
    "question_th": "ฝ่ายตรงข้ามในเกมด้วยสกอร์ 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_en": "Who was Purdue's opponent?",
    "question_th": "คู่ต่อสู้ของเพอร์ดูคือใคร?",
    "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_en": "What was the score of the Insight Bowl?",
    "question_th": "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_en": "What was the score of the BCS National Championship game?",
    "question_th": "คะแนนของเกม BCS National Championship คืออะไร?",
    "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_en": "Which Democratic incumbent was first elected in 1998?",
    "question_th": "ผู้ดำรงตำแหน่งพรรคเดโมแครตคนใดที่ได้รับเลือกครั้งแรกในปี 2541",
    "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_en": "Which district has a Democratic incumbent that was first elected before 1996?",
    "question_th": "เขตใดมีผู้ดำรงตำแหน่งประชาธิปไตยที่ได้รับการเลือกตั้งครั้งแรกก่อนปี 2539",
    "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_en": "Who is the incumbent for the Oregon 5 District that was elected in 1996?",
    "question_th": "ใครคือผู้ดำรงตำแหน่งในเขต Oregon 5 ที่ได้รับเลือกในปี 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_en": "What was the result of the Oregon 5 District incumbent who was first elected in 1996?",
    "question_th": "อะไรคือผลลัพธ์ของผู้ดำรงตำแหน่งเขต Oregon 5 ที่ได้รับการเลือกตั้งครั้งแรกในปี 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_en": "What's was the location for fight against Liam Mccarty?",
    "question_th": "สถานที่ต่อสู้กับ 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_en": "How many strokes off par was the winner in 1978?",
    "question_th": "แชมป์ปี 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_en": "What was the average round score of the player who won in 1978?",
    "question_th": "คะแนนเฉลี่ยของผู้เล่นที่ชนะในปี 1978 คือเท่าไร?",
    "context": "CREATE TABLE table_name_72 (total INTEGER, year_s__won VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(money___) AS £__ FROM table_name_46 WHERE player = \"frank nobilo\"",
    "question_en": "What is the money won by Frank Nobilo?",
    "question_th": "แฟรงค์ โนบิโล ชนะเงินได้เท่าไหร่?",
    "context": "CREATE TABLE table_name_46 (money___ VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_20 WHERE player = \"lee westwood\"",
    "question_en": "What is Lee Westwood's score?",
    "question_th": "คะแนนของ ลี เวสต์วูด คืออะไร?",
    "context": "CREATE TABLE table_name_20 (score VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT money___£__ FROM table_name_46 WHERE player = \"stephen ames\"",
    "question_en": "How much money has been won by Stephen Ames?",
    "question_th": "Stephen Ames ได้รับเงินไปเท่าไร?",
    "context": "CREATE TABLE table_name_46 (money___£__ VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(drawn) FROM table_name_95 WHERE goals_against = 81 AND lost > 23",
    "question_en": "How much Drawn has Goals Against of 81, and a Lost larger than 23?",
    "question_th": "เสมอกันเท่าไหร่ที่มีประตูต่อ 81 และแพ้มากกว่า 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_en": "Which Lost has a Position larger than 5, and Points 1 of 37, and less than 63 Goals Against?",
    "question_th": "แพ้คนไหนที่มีตำแหน่งมากกว่า 5 และคะแนน 1 จาก 37 และน้อยกว่า 63 ประตูต่อ?",
    "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_en": "How much Drawn has Goals Against larger than 74, and a Lost smaller than 20, and a Played larger than 38?",
    "question_th": "เสมอแค่ไหนที่มีประตูมากกว่า 74 และแพ้น้อยกว่า 20 และเล่นมากกว่า 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_en": "Which Position has Goals For of 52, and Goals Against larger than 70?",
    "question_th": "ตำแหน่งใดมีเป้าหมายที่ 52 และเป้าหมายที่มากกว่า 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_en": "Which Played has a Drawn of 4, and a Position of 9, and Goals Against larger than 59?",
    "question_th": "ผู้เล่นคนไหนที่เสมอกัน 4 ประตู และอันดับ 9 และทำประตูได้มากกว่า 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_en": "Who is the home team when the san francisco 49ers are visiting with a result of 42-14?",
    "question_th": "เจ้าบ้านใครคือทีมซานฟรานซิสโก โฟร์ตีนายเนอร์ส เยือนด้วยสกอร์ 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_en": "When was the earliest year when the attendance was 77,254?",
    "question_th": "ปีแรกสุดที่มีผู้เข้าร่วม 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_en": "What was the total attendance for a result of 7-23 before 1960?",
    "question_th": "จำนวนผู้เข้าร่วมทั้งหมดสำหรับผล 7-23 ก่อนปี 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_en": "What is the location of the enzyme Uroporphyrinogen iii Synthase?",
    "question_th": "ตำแหน่งของเอนไซม์ 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_en": "What is protoporphyrin ix's substrate?",
    "question_th": "สารตั้งต้นของ protoporphyrin ix คืออะไร?",
    "context": "CREATE TABLE table_name_55 (substrate VARCHAR, product VARCHAR)"
  },
  {
    "answer": "SELECT substrate FROM table_name_47 WHERE omim = 176000",
    "question_en": "Which substrate has an OMIM of 176000?",
    "question_th": "วัสดุพิมพ์ใดมี OMIM เท่ากับ 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_en": "What was Anders Forsbrand's score when the TO par is +4?",
    "question_th": "คะแนนของ Anders Forsbrand เป็นเท่าใดเมื่อ TO พาร์คือ +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_en": "Which player scored 76-68=144?",
    "question_th": "ผู้เล่นคนไหนทำคะแนนได้ 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_en": "What did United States place when the player was Raymond Floyd?",
    "question_th": "สหรัฐอเมริกาวางตำแหน่งอะไรเมื่อผู้เล่นคือ 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_en": "What country did Raymond Floyd play for?",
    "question_th": "เรย์มอนด์ ฟลอยด์ ลงเล่นให้กับประเทศใด",
    "context": "CREATE TABLE table_name_9 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_89 WHERE player = \"greg norman\"",
    "question_en": "What is Greg Norman's place?",
    "question_th": "บ้านของเกร็ก นอร์แมนอยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_89 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_46 WHERE player = \"paul mcginley\"",
    "question_en": "What place did Paul McGinley finish in?",
    "question_th": "Paul McGinley จบอันดับที่ไหน?",
    "context": "CREATE TABLE table_name_46 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_26 WHERE player = \"tiger woods\"",
    "question_en": "What is Tiger Woods' to par?",
    "question_th": "ไทเกอร์ วูดส์ จะได้พาร์เท่าไหร่?",
    "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_en": "What is the to par when the year(s) won is larger than 1999?",
    "question_th": "จะต้องพาร์เท่าไรเมื่อปีที่ชนะมากกว่าปี 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_en": "What are the apps for less than 61 goals and before rank 6?",
    "question_th": "ต่ำกว่า 61 ประตู และก่อนอันดับ 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_en": "What season was Barcelona ranked higher than 12, had more than 96 goals and had more than 26 apps?",
    "question_th": "ฤดูกาลใดที่บาร์เซโลน่ารั้งอันดับสูงกว่า 12 ทำได้มากกว่า 96 ประตูและมีมากกว่า 26 แอพ?",
    "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_en": "How many apps when the rank was after 13 and having more than 73 goals?",
    "question_th": "มีกี่แอปเมื่ออันดับอยู่หลัง 13 และมีเป้าหมายมากกว่า 73?",
    "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_en": "Who was the club having less than 22 apps and ranked less than 2?",
    "question_th": "สโมสรใดที่มีแอปน้อยกว่า 22 แอปและมีอันดับน้อยกว่า 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_en": "With a score of 68-65=133 and United States as the country what is the To par?",
    "question_th": "ด้วยคะแนน 68-65=133 และสหรัฐอเมริกาเป็นประเทศ 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_en": "Who is the golfer that golfs for Northern Ireland?",
    "question_th": "ใครคือนักกอล์ฟที่เล่นกอล์ฟให้กับไอร์แลนด์เหนือ?",
    "context": "CREATE TABLE table_name_54 (player VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_13 WHERE place = \"1\"",
    "question_en": "The golfer in place 1 if from what country?",
    "question_th": "นักกอล์ฟอันดับที่ 1 จากประเทศอะไร?",
    "context": "CREATE TABLE table_name_13 (country VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_90 WHERE tie_no = \"26\"",
    "question_en": "On what date was Tie #26 played?",
    "question_th": "เสมอ #26 เล่นวันไหน?",
    "context": "CREATE TABLE table_name_90 (date VARCHAR, tie_no VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_93 WHERE tie_no = \"13\"",
    "question_en": "On what date was Tie #13 played?",
    "question_th": "เสมอ #13 เล่นวันไหน?",
    "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_en": "For which tie was Scunthorpe United the away team?",
    "question_th": "สคันธอร์ป ยูไนเต็ด เป็นทีมเยือนเสมอกันที่ใด?",
    "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_en": "What was the final score for the tie where Leeds United was the home team?",
    "question_th": "สกอร์สุดท้ายของเกมที่ลีดส์ ยูไนเต็ด เป็นเจ้าบ้านคือเท่าไร?",
    "context": "CREATE TABLE table_name_6 (score VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_97 WHERE away_team = \"southampton\"",
    "question_en": "In the tie where Southampton was the away team, who was the home team?",
    "question_th": "ในเกมเสมอกันที่เซาแธมป์ตันเป็นทีมเยือน เจ้าบ้านคือใคร?",
    "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_en": "What is the name of the away team for Tie #19?",
    "question_th": "ทีมเยือน เสมอ #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_en": "Which Nominated Work won in 2000?",
    "question_th": "งานที่ได้รับการเสนอชื่อใดได้รับรางวัลในปี 2543",
    "context": "CREATE TABLE table_name_15 (nominated_work VARCHAR, year VARCHAR, results VARCHAR)"
  },
  {
    "answer": "SELECT results FROM table_name_23 WHERE year = 2000",
    "question_en": "What was the result in 2000?",
    "question_th": "ผลลัพธ์ในปี 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_en": "What was the results of the 71st Academy Awards show?",
    "question_th": "ผลรางวัลออสการ์ครั้งที่ 71 เป็นอย่างไร?",
    "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_en": "What is the city in Alabama that opened in 1996?",
    "question_th": "เมืองในอลาบามาที่เปิดในปี 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_en": "What is the lowest capacity for 1903?",
    "question_th": "ความจุต่ำสุดสำหรับปี 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_en": "What was the year opened for North Carolina with a smaller than 21,500 capacity?",
    "question_th": "นอร์ธแคโรไลนาเปิดให้บริการในปีใดโดยมีความจุน้อยกว่า 21,500 คน",
    "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_en": "What is the rank for the year opened in 1959 in Pennsylvania?",
    "question_th": "อันดับสำหรับปีที่เปิดในปี 1959 ในเพนซิลเวเนียคือเท่าไร?",
    "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_en": "How many years were lightweight class on february 28, 2009?",
    "question_th": "คลาสไลต์เวตในวันที่ 28 กุมภาพันธ์ 2552 มีกี่ปี?",
    "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_en": "How many weeks have a Result of t 10-10?",
    "question_th": "กี่สัปดาห์มีผล 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_en": "Which Date has a Week smaller than 8, and an Opponent of atlanta falcons?",
    "question_th": "วันใดที่มีสัปดาห์น้อยกว่า 8 และเป็นฝ่ายตรงข้ามของ 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_en": "Which Result has an Opponent of minnesota vikings?",
    "question_th": "ผลลัพธ์ใดมีฝ่ายตรงข้ามของ 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_en": "What is the Rank of the Athlete with a Time of 1:47.65 and in Lane 3 or larger?",
    "question_th": "อันดับของนักกีฬาด้วยเวลา 1:47.65 และในเลน 3 หรือใหญ่กว่าคือเท่าไร?",
    "context": "CREATE TABLE table_name_35 (rank INTEGER, time VARCHAR, lane VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_88 WHERE event = \"half marathon\"",
    "question_en": "What is the Place of the half marathon Event?",
    "question_th": "ฮาล์ฟมาราธอนจัดขึ้นที่ใด?",
    "context": "CREATE TABLE table_name_88 (place VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_18 WHERE date = \"august 25, 2007\"",
    "question_en": "What is the Place of the Event on August 25, 2007?",
    "question_th": "สถานที่จัดงานในวันที่ 25 สิงหาคม 2550 คือที่ไหน?",
    "context": "CREATE TABLE table_name_18 (place VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_97 WHERE event = \"half marathon\"",
    "question_en": "What is the Country of the Half Marathon Event?",
    "question_th": "กิจกรรมฮาล์ฟมาราธอนประเทศอะไร?",
    "context": "CREATE TABLE table_name_97 (country VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_39 WHERE event = \"10,000m\"",
    "question_en": "What is the Country of the 10,000m Event?",
    "question_th": "งานวิ่ง 10,000 เมตรคือประเทศอะไร",
    "context": "CREATE TABLE table_name_39 (country VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_69 WHERE country = \"(local competition)\"",
    "question_en": "What is the Event labeled Country of (local competition)?",
    "question_th": "กิจกรรมนี้มีป้ายกำกับว่าประเทศใด (การแข่งขันระดับท้องถิ่น)",
    "context": "CREATE TABLE table_name_69 (event VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_23 WHERE time = \"2:23:47\"",
    "question_en": "What is the Date of the Event with a Time of 2:23:47?",
    "question_th": "จัดงานวันที่เท่าไหร่ เวลา 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_en": "What is the rank of the time of 6:30.53?",
    "question_th": "อันดับเวลา 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_en": "What is the names of the rowers that the time was 6:24.61?",
    "question_th": "คนพายเรือเมื่อเวลา 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_en": "What country has a rank smaller than 6, a time of 6:32.32 and notes of FB?",
    "question_th": "ประเทศใดมีอันดับน้อยกว่า 6 เวลา 6:32.32 และโน๊ตของ 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_en": "Which actor played on Home and Away for 20 years?",
    "question_th": "นักแสดงคนไหนเล่นเรื่อง Home and Away เป็นเวลา 20 ปี?",
    "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_en": "What character was portrayed by the same actor for 12 years on Neighbours?",
    "question_th": "ตัวละครใดที่นักแสดงคนเดียวกันแสดงเป็นเวลา 12 ปีในเรื่อง 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_en": "How long did Joyce Jacobs portray her character on her show?",
    "question_th": "Joyce Jacobs วาดภาพตัวละครของเธอในรายการของเธอนานแค่ไหน?",
    "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_en": "Which actor played Harold Bishop for 17 years?",
    "question_th": "นักแสดงคนไหนรับบทเป็นแฮโรลด์ บิชอปเป็นเวลา 17 ปี",
    "context": "CREATE TABLE table_name_85 (actor VARCHAR, duration VARCHAR, character VARCHAR)"
  },
  {
    "answer": "SELECT years FROM table_name_98 WHERE actor = \"martin sacks\"",
    "question_en": "Which years did Martin Sacks work on a soap opera?",
    "question_th": "Martin Sacks ทำงานละครโทรทัศน์กี่ปี?",
    "context": "CREATE TABLE table_name_98 (years VARCHAR, actor VARCHAR)"
  },
  {
    "answer": "SELECT arena FROM table_name_84 WHERE points = \"65\"",
    "question_en": "What is the Arena when there were 65 points?",
    "question_th": "อารีน่าเมื่อมี 65 แต้มคืออะไร?",
    "context": "CREATE TABLE table_name_84 (arena VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_45 WHERE score = \"2–0\"",
    "question_en": "What is the record when the score was 2–0?",
    "question_th": "สถิติเมื่อสกอร์เป็น 2–0 คืออะไร?",
    "context": "CREATE TABLE table_name_45 (record VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_name_15 WHERE date = \"february 10\"",
    "question_en": "What were the points on February 10?",
    "question_th": "อะไรคือคะแนนในวันที่ 10 กุมภาพันธ์?",
    "context": "CREATE TABLE table_name_15 (points VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_78 WHERE arena = \"palasport olimpico\"",
    "question_en": "What is the record at Palasport Olimpico?",
    "question_th": "ปาลาสปอร์ต โอลิมปิโก มีสถิติเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_78 (record VARCHAR, arena VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_name_52 WHERE score = \"3–1\" AND record = \"25–19–11\"",
    "question_en": "What is the points when the score was 3–1, and record was 25–19–11?",
    "question_th": "อะไรคือแต้มเมื่อสกอร์เป็น 3–1 และสถิติคือ 25–19–11?",
    "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–11–1)\"",
    "question_en": "What is the record at Arrowhead Pond of Anaheim, when the loss was Bryzgalov (10–11–1)?",
    "question_th": "บันทึกที่ Arrowhead Pond ของ Anaheim คืออะไรเมื่อ Bryzgalov แพ้ (10–11–1)?",
    "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_en": "What is the finishing time with a 2/1q finish on the Meadowlands track?",
    "question_th": "เวลาเข้าเส้นชัย 2/1 คิวบนสนาม Meadowlands คือเมื่อใด",
    "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_en": "What is the last 1/4 for the QUA race with a finishing time of 2:03.1?",
    "question_th": "1/4 สุดท้ายสำหรับการแข่งขัน QUA ด้วยเวลาจบที่ 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_en": "How many ranks have 1:01.14.62 as the time, with michael russell as the rider?",
    "question_th": "เวลานั้นอยู่ที่ 1:01.14.62 โดยมี Michael Russell เป็นคนขี่กี่อันดับ?",
    "context": "CREATE TABLE table_name_98 (rank VARCHAR, time VARCHAR, rider VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_34 WHERE rider = \"phil mcgurk\"",
    "question_en": "What time has phil mcgurk as the rider?",
    "question_th": "ฟิล แมคเกิร์ก เป็นนักบิดกี่โมง?",
    "context": "CREATE TABLE table_name_34 (time VARCHAR, rider VARCHAR)"
  },
  {
    "answer": "SELECT SUM(rank) FROM table_name_71 WHERE rider = \"michael russell\"",
    "question_en": "How many ranks have michael russell as the rider?",
    "question_th": "ไมเคิล รัสเซล เป็นนักบิดได้กี่อันดับ?",
    "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_en": "How many goals were conceded by the team with more than 21 points more than 5 draws and less than 18 games played?",
    "question_th": "ทีมเสียไปกี่ประตูโดยมีคะแนนมากกว่า 21 แต้ม เสมอมากกว่า 5 นัด และลงเล่นน้อยกว่า 18 เกม?",
    "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_en": "How many goals were conceded by teams with 32 points, more than 2 losses and more than 22 goals scored?",
    "question_th": "ทีมที่เสียประตูได้กี่ประตูที่มี 32 คะแนน แพ้มากกว่า 2 นัด และทำได้มากกว่า 22 ประตู?",
    "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_en": "How many points did the team have that conceded 41 goals and finish in a place larger than 10?",
    "question_th": "ทีมมีกี่คะแนนที่เสีย 41 ประตูและจบอันดับที่มากกว่า 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_en": "Who was the opponent in week 13?",
    "question_th": "คู่ต่อสู้ในสัปดาห์ที่ 13 คือใคร?",
    "context": "CREATE TABLE table_name_25 (opponent VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_48 WHERE mascot = \"kingsmen\"",
    "question_en": "What location has kingsmen as the mascot?",
    "question_th": "Kingsmen เป็นตัวนำโชคในสถานที่ใด",
    "context": "CREATE TABLE table_name_48 (location VARCHAR, mascot VARCHAR)"
  },
  {
    "answer": "SELECT ihsaa_football_class FROM table_name_39 WHERE county = \"20 elkhart\"",
    "question_en": "What IHSAA Football Class has 20 elkhart as the county?",
    "question_th": "IHSAA Football Class ใดที่มีเอลคาร์ต 20 ตัวเป็นเคาน์ตี",
    "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_en": "What school has south bend as the location, with indians as the mascot?",
    "question_th": "โรงเรียนใดมีโค้งทิศใต้เป็นสถานที่ โดยมีชาวอินเดียเป็นตัวนำโชค",
    "context": "CREATE TABLE table_name_32 (school VARCHAR, location VARCHAR, mascot VARCHAR)"
  },
  {
    "answer": "SELECT MIN(total) FROM table_name_31 WHERE position < 1",
    "question_en": "What's the total that the position is less than 1?",
    "question_th": "ยอดรวมที่ตำแหน่งน้อยกว่า 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_en": "What the B Score when the total is 16.125 and the position is less than 7?",
    "question_th": "คะแนน B คืออะไรเมื่อผลรวมเป็น 16.125 และตำแหน่งน้อยกว่า 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_en": "What was the total rating that had a score higher than 7 and a b score smaller than 8.65?",
    "question_th": "คะแนนรวมที่มีคะแนนสูงกว่า 7 และคะแนน ab น้อยกว่า 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_en": "Which gymnast had a b score of 8.95 and an a score less than 6.9",
    "question_th": "นักกายกรรมคนไหนมีคะแนน AB 8.95 และคะแนนน้อยกว่า 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_en": "Who were the winners in 1998?",
    "question_th": "ใครคือผู้ชนะในปี 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_en": "What year was the runner-up Portugal with Italy in third place, and the gold keeper Nuno Hidalgo?",
    "question_th": "รองแชมป์โปรตุเกสกับอิตาลีอันดับสามคือปีไหน และนูโน อิดัลโกผู้รักษาประตูทอง?",
    "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_en": "What is the college pick for 213?",
    "question_th": "วิทยาลัยเลือกสำหรับ 213 คืออะไร?",
    "context": "CREATE TABLE table_name_23 (college VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_54 WHERE date = \"21 february 2009\"",
    "question_en": "what is the round on 21 february 2009?",
    "question_th": "วันที่ 21 กุมภาพันธ์ 2552 รอบวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_54 (round VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(enrollment) FROM table_name_66 WHERE school = \"rochester community\"",
    "question_en": "What is the highest enrollment for rochester community school?",
    "question_th": "การลงทะเบียนสูงสุดสำหรับโรงเรียนชุมชนโรเชสเตอร์คืออะไร?",
    "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_en": "What is the average enrollment that has hot dogs as the mascot, with a year joined later than 1926?",
    "question_th": "การลงทะเบียนเฉลี่ยที่มีฮอทด็อกเป็นมาสคอต โดยหนึ่งปีเข้าร่วมหลังปี 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_en": "What is the lowest enrollment that has Lafayette as the location?",
    "question_th": "การลงทะเบียนขั้นต่ำสุดที่มีลาฟาแยตเป็นสถานที่คืออะไร?",
    "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_en": "Who was runner-up in the 2006 Pacific Life Open?",
    "question_th": "ใครได้รองชนะเลิศในการแข่งขัน Pacific Life Open ปี 2549",
    "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_en": "Which Class has a Quantity made of 29?",
    "question_th": "คลาสใดมีปริมาณที่สร้างจาก 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_en": "What is the Theme Song of the Yukan Club?",
    "question_th": "เพลงประจำตัวของชมรมยูคังคืออะไร?",
    "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 = \"働きマン\"",
    "question_en": "What is the Theme Song of 働きマン?",
    "question_th": "เพลงประกอบของ 働きマン คืออะไร?",
    "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_en": "What is the Theme Song of the show on Fuji TV Station with Average Ratings of 16.65%?",
    "question_th": "เพลงประกอบของรายการทางสถานีโทรทัศน์ฟูจิด้วยเรตติ้งเฉลี่ย 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_en": "What is the Theme Song of Iryu -Team Medical Dragon-2?",
    "question_th": "เพลงประกอบของ 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_en": "what is the road numbers when the build year is 1943, the railroad (quantity) is clinchfield railroad (12 new, 6 secondhand)?",
    "question_th": "หมายเลขถนนคือเมื่อปีสร้าง 2486 ทางรถไฟ (ปริมาณ) เป็นทางรถไฟสายคลินช์ฟิลด์ (ใหม่ 12 รายการ มือสอง 6 รายการ)",
    "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_en": "what is the road numbers when the builder is alco, the railroad (quantity) is union pacific railroad (105) and the class is csa-2?",
    "question_th": "หมายเลขถนนคืออะไร เมื่อผู้สร้างคืออัลโค ทางรถไฟ (ปริมาณ) คือทางรถไฟยูเนี่ยนแปซิฟิค (105) และคลาสคือ 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_en": "what is the road numbers when the class is z-7?",
    "question_th": "หมายเลขถนนเมื่อคลาสคือ 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_en": "What was the peak date of Kelis's song?",
    "question_th": "เพลงของ Kelis มีจุดสูงสุดเมื่อใด?",
    "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_en": "What is the Nationality of the Swimmer in Lane 4 or larger with a Rank of 5 or more?",
    "question_th": "สัญชาติของนักว่ายน้ำในเลน 4 ขึ้นไปที่มีอันดับ 5 ขึ้นไปคือเท่าใด",
    "context": "CREATE TABLE table_name_37 (nationality VARCHAR, lane VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_87 WHERE week = 3",
    "question_en": "Who was the opponent the falcons played against on week 3?",
    "question_th": "คู่ต่อสู้ที่เหยี่ยวเล่นด้วยในสัปดาห์ที่ 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_en": "what is the highest podiums when the stage wins is 91 and the points is less than 140?",
    "question_th": "โพเดียมสูงสุดเมื่อสเตจชนะคือ 91 และคะแนนน้อยกว่า 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_en": "what is the average wins when the podiums is more than 1, points is 80 and starts is less than 28?",
    "question_th": "ค่าเฉลี่ยการชนะเมื่อโพเดียมมากกว่า 1 คะแนนคือ 80 และการออกสตาร์ทน้อยกว่า 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ën total world rally team\" AND wins < 7",
    "question_en": "what is the total number of points when the constructor is citroën total world rally team and the wins is less than 7?",
    "question_th": "จำนวนคะแนนทั้งหมดเมื่อตัวสร้างคือทีม citroën Total World Rally และชัยชนะน้อยกว่า 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_en": "what is the highest points when the chassis is focus rs wrc 08 and 09 and the stage wins is more than 91?",
    "question_th": "จุดสูงสุดเมื่อแชสซีอยู่ที่ focus rs wrc 08 และ 09 และระยะชนะมากกว่า 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_en": "What driver had a total time of 16:58?",
    "question_th": "ผู้ขับขี่คนใดมีเวลารวม 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_en": "What's the lowest capacity when the margin is 03:30?",
    "question_th": "ความจุต่ำสุดเมื่อมาร์จิ้นคือ 03:30 คือเท่าใด",
    "context": "CREATE TABLE table_name_77 (capacity INTEGER, margin VARCHAR)"
  },
  {
    "answer": "SELECT vehicle FROM table_name_20 WHERE class = \"6c3g\"",
    "question_en": "Which vehicle has a class 6c3g?",
    "question_th": "รถคันไหนมีคลาส 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_en": "What is the lowest capacity for the 1975 toyota celica 1600gt?",
    "question_th": "ความจุต่ำสุดของโตโยต้าเซลิก้า 1600gt ปี 1975 คือเท่าใด",
    "context": "CREATE TABLE table_name_89 (capacity INTEGER, vehicle VARCHAR)"
  },
  {
    "answer": "SELECT athlete FROM table_name_46 WHERE react = 0.164",
    "question_en": "who is the athlete when react is 0.164?",
    "question_th": "นักกีฬาคนไหนเมื่อปฏิกิริยาคือ 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_en": "what is the lowest lane when react is more than 0.164 and the nationality is guinea?",
    "question_th": "เลนต่ำสุดเมื่อ React มากกว่า 0.164 และสัญชาติคือกินีคืออะไร?",
    "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_en": "What is the year retired of the locomotive which had the quantity made of 25?",
    "question_th": "รถจักรที่ผลิตได้ 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_en": "Which class had a quantity made of 20?",
    "question_th": "คลาสใดมีปริมาณ 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_en": "What is the locomotive class that has a wheel arrangement of 2-8-2 and a quantity made of 25?",
    "question_th": "รถจักรประเภทใดที่มีการจัดเรียงล้อ 2-8-2 และจำนวน 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_en": "What is the quantity preserved to the locomotive with a quantity made of 6?",
    "question_th": "ปริมาณที่เก็บรักษาไว้กับหัวรถจักรที่มีปริมาณ 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_en": "What is Beohari's highest number of electorates?",
    "question_th": "จำนวนผู้มีสิทธิเลือกตั้งสูงสุดของเบโอฮารีคือเท่าใด",
    "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_en": "What is the district with 79 constituency number?",
    "question_th": "เขตที่มี 79 เขต คือเขตอะไร?",
    "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_en": "What is Beohari's reserved for (SC/ST/None)?",
    "question_th": "Beohari สงวนไว้สำหรับอะไร (SC/ST/ไม่มี)?",
    "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_en": "What is the sum of the prominence in m of moussa ali terara peak?",
    "question_th": "ผลรวมของความโดดเด่นในหน่วย m ของยอด moussa ali terara เป็นเท่าใด",
    "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_en": "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?",
    "question_th": "อะไรคือจำนวนความโดดเด่นทั้งหมดในหน่วย m ของประเทศเอธิโอเปีย ซึ่งมีคอลัมน์ในหน่วย m ของ 1728 และระดับความสูงน้อยกว่า 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_en": "Which team had a start of 8 in years under 2008?",
    "question_th": "ทีมใดออกสตาร์ทที่ 8 ในปี 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_en": "What was Jeff's finish in 2011?",
    "question_th": "เจฟฟ์จบการแข่งขันในปี 2554 อย่างไร",
    "context": "CREATE TABLE table_name_35 (finish INTEGER, year VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(finish) FROM table_name_78 WHERE start = 15",
    "question_en": "What is the number of finishes having a start of 15?",
    "question_th": "จำนวนการเข้าเส้นชัยเมื่อเริ่มต้นที่ 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_en": "How many 2011 1H values have a 2006 of 27.4 and 2007 over 27.7?",
    "question_th": "ค่า 1H ปี 2554 มีกี่ค่าในปี 2549 เป็น 27.4 และ 2550 มากกว่า 27.7",
    "context": "CREATE TABLE table_name_9 (Id VARCHAR)"
  },
  {
    "answer": "SELECT MAX(2011 AS _1h) FROM table_name_35 WHERE 2005 > 28",
    "question_en": "What is the highest 2011 1H value for a 2005 over 28?",
    "question_th": "ค่าสูงสุด 1H ปี 2554 สำหรับปี 2548 มากกว่า 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_en": "What is the average 2007 value for a 2006 of 2.8 and 2009 under 20?",
    "question_th": "ค่าเฉลี่ยปี 2550 สำหรับปี 2549 ที่ 2.8 และ 2552 ต่ำกว่า 20 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_6 (Id VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_85 WHERE venue = \"villa park\"",
    "question_en": "What was the round for Villa Park?",
    "question_th": "วิลล่า พาร์ก แข่งรอบไหน?",
    "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_en": "What is latitude when 2010 population is 24 and water is more than 0.319?",
    "question_th": "ละติจูดเป็นเท่าใดเมื่อประชากรในปี 2010 อยู่ที่ 24 และน้ำมากกว่า 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_en": "Is Blonanserin MHRA approved?",
    "question_th": "Blonanserin MHRA ได้รับการอนุมัติหรือไม่",
    "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_en": "What is the home team when kwong wah was the away team?",
    "question_th": "เจ้าบ้านเป็นไงบ้าง ในเมื่อ กวงหวา เป็นทีมเยือน?",
    "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_en": "What is the score of the match at happy valley recreation ground pitch #2 with a 14:30 time?",
    "question_th": "แมตช์ที่สนามสันทนาการ แฮปปี้ วัลเลย์ สนามที่ 2 เวลา 14.30 น. เป็นอย่างไร?",
    "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_en": "What is the venue of the match with a 14:30 time and sun source as the away team?",
    "question_th": "สนามใดของการแข่งขันโดยเวลา 14.30 น. และดวงอาทิตย์เป็นทีมเยือน?",
    "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_en": "What is the away team when solon was the home team?",
    "question_th": "ทีมเยือนเมื่อโซโลเป็นเจ้าบ้านคืออะไร?",
    "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_en": "What is Elizabeth Simmonds' average lane number?",
    "question_th": "หมายเลขเลนเฉลี่ยของ Elizabeth Simmonds คืออะไร",
    "context": "CREATE TABLE table_name_21 (lane INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT MAX(rank) FROM table_name_32 WHERE name = \"laure manaudou\"",
    "question_en": "What is Laure Manaudou's highest rank?",
    "question_th": "ตำแหน่งสูงสุดของ Laure Manaudou คืออะไร?",
    "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_en": "What internet explorer has 1.67% as the opera, with 2012 q1 as the period?",
    "question_th": "Internet Explorer ใดที่มี 1.67% เป็นโอเปร่า โดยไตรมาสที่ 1 ปี 2012 เป็นช่วงเวลา",
    "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_en": "What safari has 2012 q4 as the period?",
    "question_th": "ซาฟารีใดที่มีช่วงไตรมาสที่ 4 ปี 2555",
    "context": "CREATE TABLE table_name_58 (safari VARCHAR, period VARCHAR)"
  },
  {
    "answer": "SELECT period FROM table_name_36 WHERE internet_explorer = \"53.52%\"",
    "question_en": "What period has 53.52% as the internet explorer?",
    "question_th": "Internet Explorer ในช่วงเวลาใดถึง 53.52%?",
    "context": "CREATE TABLE table_name_36 (period VARCHAR, internet_explorer VARCHAR)"
  },
  {
    "answer": "SELECT other FROM table_name_85 WHERE firefox = \"20.80%\"",
    "question_en": "What is the other that has 20.80% as the firefox?",
    "question_th": "อีกอันที่มี 20.80% เป็น firefox คืออะไร?",
    "context": "CREATE TABLE table_name_85 (other VARCHAR, firefox VARCHAR)"
  },
  {
    "answer": "SELECT opera FROM table_name_48 WHERE firefox = \"19.87%\"",
    "question_en": "What opera has 19.87% as the firefox?",
    "question_th": "โอเปร่าใดที่มี Firefox 19.87%?",
    "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_en": "How many total Time listings have a 0.209 React entry and a Rank that is greater than 7?",
    "question_th": "รายการเวลาทั้งหมดมีรายการ React 0.209 และอันดับมากกว่า 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_en": "How many total Rank listings have Liu Xiaosheng listed as the athlete with a react entry that is smaller than 0.245?",
    "question_th": "Liu Xiaosheng มีรายชื่ออันดับทั้งหมดกี่รายการที่เป็นนักกีฬาที่มีคะแนนโต้ตอบน้อยกว่า 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_en": "What is the total average for Rank entries where the Lane listed is smaller than 4 and the Nationality listed is San Marino?",
    "question_th": "ค่าเฉลี่ยรวมสำหรับรายการจัดอันดับที่ Lane ที่ระบุน้อยกว่า 4 และสัญชาติที่ระบุคือ 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_en": "What Lane has a 0.209 React entered with a Rank entry that is larger than 6?",
    "question_th": "Lane ใดที่มี 0.209 React เข้ามาพร้อมรายการอันดับที่มีขนาดใหญ่กว่า 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_en": "Which Notes have a Competition of world championships, and a Position of 2nd?",
    "question_th": "Notes ใดที่มีการแข่งขันชิงแชมป์โลกและตำแหน่งที่ 2?",
    "context": "CREATE TABLE table_name_74 (notes VARCHAR, competition VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_4 WHERE year > 2012",
    "question_en": "What was the venue after 2012?",
    "question_th": "สถานที่จัดงานหลังปี 2012 คืออะไร?",
    "context": "CREATE TABLE table_name_4 (venue VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT notes FROM table_name_89 WHERE year = 2011",
    "question_en": "What were the notes in 2011?",
    "question_th": "บันทึกย่อในปี 2554 คืออะไร?",
    "context": "CREATE TABLE table_name_89 (notes VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT AVG(year) FROM table_name_63 WHERE position = \"9th\"",
    "question_en": "Which Year has a Position of 9th?",
    "question_th": "ปีใดมีตำแหน่งที่ 9",
    "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_en": "What's the CSA/CMA Population in IA-IL?",
    "question_th": "ประชากร CSA/CMA ใน 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_en": "What's the projected population of IN-MI?",
    "question_th": "ประชากร 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_en": "Can you tell me the Rank that has the Lane of 6, and the Heat of 2?",
    "question_th": "คุณช่วยบอกอันดับที่มีเลน 6 และฮีต 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_en": "Can you tell me the Time that has the Heat of 1, and the Lane of 2?",
    "question_th": "คุณช่วยบอกเวลาที่มีฮีตเป็น 1 และเลนเป็น 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_en": "What is the Game # that scored 87-92?",
    "question_th": "เกม # ที่ได้คะแนน 87-92 คืออะไร?",
    "context": "CREATE TABLE table_name_46 (game INTEGER, score VARCHAR)"
  },
  {
    "answer": "SELECT MIN(rank) FROM table_name_7 WHERE nation = \"spain\"",
    "question_en": "What is the lowest rank that spain got?",
    "question_th": "สเปนได้อันดับต่ำที่สุดเท่าไหร่?",
    "context": "CREATE TABLE table_name_7 (rank INTEGER, nation VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_58 WHERE competition = \"2000 asian cup qualification\"",
    "question_en": "What was the result from the 2000 asian cup qualification?",
    "question_th": "อะไรคือผลลัพธ์จากรอบคัดเลือกเอเชียนคัพ 2000?",
    "context": "CREATE TABLE table_name_58 (result VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_91 WHERE score = \"7–0\"",
    "question_en": "On what date was the game that had a score of 7–0?",
    "question_th": "เกมที่มีสกอร์ 7–0 คือวันไหน?",
    "context": "CREATE TABLE table_name_91 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_38 WHERE date = \"february 27, 2000\"",
    "question_en": "What was the result of the game that was played on february 27, 2000?",
    "question_th": "ผลของเกมที่เล่นเมื่อวันที่ 27 กุมภาพันธ์ พ.ศ. 2543 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_38 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_95 WHERE score = \"3–1\"",
    "question_en": "During what competition was a game played with a score of 3–1?",
    "question_th": "ในระหว่างการแข่งขันใดมีเกมที่เล่นด้วยสกอร์ 3–1",
    "context": "CREATE TABLE table_name_95 (competition VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_31 WHERE competition = \"king's cup 2000\"",
    "question_en": "What was the score from the king's cup 2000?",
    "question_th": "คิงส์คัพ 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_en": "What is the tie number when the home team is Port Vale?",
    "question_th": "เลขเสมอกันเมื่อเจ้าบ้านคือพอร์ทเวลคือเลขอะไร?",
    "context": "CREATE TABLE table_name_72 (tie_no VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_67 WHERE home_team = \"liverpool\"",
    "question_en": "What is the score in the Liverpool home game?",
    "question_th": "สกอร์ในเกมเหย้าลิเวอร์พูลเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_67 (score VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_28 WHERE tie_no = \"3\"",
    "question_en": "Which away team has a tie number of 3?",
    "question_th": "ทีมเยือนใดมีเลข 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_en": "What murder (2012) rate per 100,00 also has a 1.616 as the peace (2012) GPI?",
    "question_th": "อัตราการฆาตกรรม (2555) ต่อ 100,00 คนมี 1.616 เป็น GPI สันติภาพ (2555) ด้วย",
    "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_en": "What is the sum of poverty (2009) HPI-1 % when the GDP (PPP) (2012) US$ per capita of 11,284?",
    "question_th": "ผลรวมของความยากจน (2009) HPI-1 % คืออะไร เมื่อ GDP (PPP) (2012) US$ ต่อหัว 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_en": "What are the notes with the time 6:24.21?",
    "question_th": "โน้ตเวลา 6:24.21 คืออะไร?",
    "context": "CREATE TABLE table_name_94 (notes VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_68 WHERE rank = 2",
    "question_en": "What country is ranked #2?",
    "question_th": "ประเทศใดอยู่ในอันดับที่ 2?",
    "context": "CREATE TABLE table_name_68 (country VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_78 WHERE rank = 3",
    "question_en": "What's the time of Rank 3?",
    "question_th": "อันดับ 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_en": "How many titles for the nation with less than 3 fastest laps and 22 podiums?",
    "question_th": "มีกี่ชื่อของประเทศที่มีรอบเร็วที่สุดน้อยกว่า 3 รอบและ 22 โพเดียม?",
    "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_en": "How many fastest laps for the nation with 32 (30) entries and starts and fewer than 2 podiums?",
    "question_th": "มีรอบที่เร็วที่สุดของประเทศกี่รอบด้วยการเข้าแข่งขัน 32 (30) ครั้งและการออกสตาร์ทและน้อยกว่า 2 โพเดียม?",
    "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_en": "Kostas Bigalis & Mirella Fragkopoulou the singer had what has the jury?",
    "question_th": "Kostas Bigalis และ Mirella Fragkopoulou นักร้องมีอะไรกับคณะลูกขุน?",
    "context": "CREATE TABLE table_name_51 (jury VARCHAR, singer VARCHAR)"
  },
  {
    "answer": "SELECT MAX(draw) FROM table_name_62 WHERE place = \"4th\"",
    "question_en": "What is the greatest draw that has 4th for place?",
    "question_th": "การจับสลากที่ยิ่งใหญ่ที่สุดที่มีอันดับที่ 4 คืออะไร?",
    "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_en": "Singer Maria-Louiza & Not 4 Sale had what jury?",
    "question_th": "นักร้อง Maria-Louiza และ Not 4 Sale มีคณะลูกขุนอะไร?",
    "context": "CREATE TABLE table_name_6 (jury VARCHAR, singer VARCHAR)"
  },
  {
    "answer": "SELECT song FROM table_name_73 WHERE televoting__votes_ = \"2nd (25,517)\"",
    "question_en": "What song was 2nd (25,517) in televoting (votes)?",
    "question_th": "เพลงอะไรเป็นอันดับ 2 (25,517) ในการโหวตทางโทรทัศน์ (โหวต)?",
    "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_en": "What is the average rank for Group A athlete Yanina Karolchyk, and a result higher than 18?",
    "question_th": "Yanina Karolchyk นักกีฬากลุ่ม A อยู่ในอันดับเฉลี่ยเท่าไร และผลการแข่งขันสูงกว่า 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_en": "Which athlete, has an 18.55 result",
    "question_th": "นักกีฬาคนไหนมีผล 18.55 น",
    "context": "CREATE TABLE table_name_43 (athlete VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_12 WHERE result = 54.67",
    "question_en": "Who has a Result of 54.67?",
    "question_th": "ใครมีผลลัพธ์เป็น 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_en": "Which Nationality has a Heat smaller than 2, and a Rank of 15?",
    "question_th": "สัญชาติใดมีฮีตน้อยกว่า 2 และอันดับ 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_en": "Which Rank has a Name of tsvetelina kirilova, and a Result smaller than 55.97?",
    "question_th": "อันดับใดมีชื่อ tsvetelina kirilova และผลลัพธ์น้อยกว่า 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_en": "Which Heat has a Nationality of bulgaria, and a Result larger than 55.97?",
    "question_th": "ฮีตใดมีสัญชาติบัลแกเรีย และผลลัพธ์มากกว่า 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_en": "What are the notes for Ford when the total is 5?",
    "question_th": "หมายเหตุของฟอร์ดเมื่อรวมเป็น 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_en": "Which builder has a fleet series of s057-s061?",
    "question_th": "บริษัทก่อสร้างใดมีกองเรือรุ่น s057-s061",
    "context": "CREATE TABLE table_name_30 (builder VARCHAR, fleet_series VARCHAR)"
  },
  {
    "answer": "SELECT total FROM table_name_84 WHERE builder = \"international\"",
    "question_en": "How many international builders are there?",
    "question_th": "มีผู้สร้างจากต่างประเทศกี่คน?",
    "context": "CREATE TABLE table_name_84 (total VARCHAR, builder VARCHAR)"
  },
  {
    "answer": "SELECT model FROM table_name_60 WHERE fleet_series = \"s410-s434\"",
    "question_en": "Which model with a fleet series of s410-s434?",
    "question_th": "รุ่นใดที่มีซีรีย์ฟลีต 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_en": "What is the lowest total for those receiving less than 18 but more than 14?",
    "question_th": "จำนวนรวมต่ำสุดสำหรับผู้ที่ได้รับน้อยกว่า 18 แต่มากกว่า 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_en": "How many draws did Mortlake have when the losses were more than 5?",
    "question_th": "มอร์ทเลคเสมอกันกี่ครั้งเมื่อแพ้มากกว่า 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_en": "What is the draw when the losses were more than 8 and less than 2 wins?",
    "question_th": "เสมอกันเมื่อแพ้มากกว่า 8 และชนะน้อยกว่า 2 คืออะไร?",
    "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_en": "How many wins did Cobden have when draws were more than 0?",
    "question_th": "ค็อบเดนชนะได้กี่ครั้งเมื่อเสมอมากกว่า 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_en": "What's the number of losses when the wins were more than 11 and had 0 draws?",
    "question_th": "เมื่อชนะมากกว่า 11 และเสมอ 0 เสียจำนวนเท่าไหร่?",
    "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_en": "What is the score for the date of 16 december 1978, with a tie no of 9?",
    "question_th": "คะแนนของวันที่ 16 ธันวาคม พ.ศ. 2521 โดยเสมอกันที่ 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_en": "What is the tie no for the home team swansea city?",
    "question_th": "ผลเสมอไม่เสมอกันของเจ้าบ้าน สวอนซี ซิตี้ คืออะไร?",
    "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_en": "What date had a tie no of replay, and an away team of watford?",
    "question_th": "นัดรีเพลย์ไม่เสมอกัน กับทีมเยือนวัตฟอร์ด?",
    "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_en": "Waht was the away team when the home team is colchester united?",
    "question_th": "ทีมเยือนเป็นอย่างไรบ้าง เมื่อเจ้าบ้าน โคลเชสเตอร์ ยูไนเต็ด?",
    "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_en": "What is the tie no for the away team altrincham?",
    "question_th": "อัลทริงแคม ทีมเยือนไม่เสมอกันเท่าไหร่?",
    "context": "CREATE TABLE table_name_59 (tie_no VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT pos FROM table_name_25 WHERE name = \"michael lee\"",
    "question_en": "Which position did Michael Lee play?",
    "question_th": "ไมเคิล ลี เล่นตำแหน่งไหน?",
    "context": "CREATE TABLE table_name_25 (pos VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT weight FROM table_name_50 WHERE name = \"serhiy alfyorov\"",
    "question_en": "What was the weight of Serhiy Alfyorov?",
    "question_th": "น้ำหนักของ Serhiy Alfyorov คืออะไร?",
    "context": "CREATE TABLE table_name_50 (weight VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT weight FROM table_name_63 WHERE born = \"1980\"",
    "question_en": "What is the weight of the person born in 1980?",
    "question_th": "คนที่เกิดปี 2523 มีน้ำหนักเท่าไหร่?",
    "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_en": "What is the position of the player born in 1984 with a height of 1.80m?",
    "question_th": "นักเตะที่เกิด พ.ศ. 2527 ส่วนสูง 1.80 ม. อยู่ในตำแหน่งอะไร?",
    "context": "CREATE TABLE table_name_20 (pos VARCHAR, born VARCHAR, height VARCHAR)"
  },
  {
    "answer": "SELECT weight FROM table_name_58 WHERE height = \"2.00\"",
    "question_en": "What is the weight of the player with a height of 2.00m?",
    "question_th": "ผู้เล่นส่วนสูง 2.00 ม. มีน้ำหนักเท่าไหร่?",
    "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_en": "Which Round has a School/Club Team of arizona, and a Pick smaller than 298?",
    "question_th": "รอบใดมีทีมโรงเรียน/สโมสรจากแอริโซนา และทีมตัวเลือกน้อยกว่า 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_en": "Who plays linebacker?",
    "question_th": "ใครเล่นบร็องโก?",
    "context": "CREATE TABLE table_name_99 (player VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_48 WHERE pick = 160",
    "question_en": "Which player's pick is 160?",
    "question_th": "ตัวเลือกของผู้เล่นคนไหนคือ 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_en": "Who had 0 total votes in the purple team?",
    "question_th": "ใครมีคะแนนโหวตทั้งหมด 0 ครั้งในทีมสีม่วง?",
    "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_en": "What were Holly Scouler's total votes?",
    "question_th": "คะแนนโหวตทั้งหมดของ Holly Scouler คืออะไร",
    "context": "CREATE TABLE table_name_27 (total_votes VARCHAR, members VARCHAR)"
  },
  {
    "answer": "SELECT total_votes FROM table_name_62 WHERE members = \"holly scouler\"",
    "question_en": "What was Holly Scouler's total votes",
    "question_th": "คะแนนรวมของ Holly Scouler คืออะไร",
    "context": "CREATE TABLE table_name_62 (total_votes VARCHAR, members VARCHAR)"
  },
  {
    "answer": "SELECT max_aperture FROM table_name_77 WHERE focal_length = \"20mm\"",
    "question_en": "What is the maximum aperture of the lens(es) with a focal length of 20mm?",
    "question_th": "ค่ารูรับแสงสูงสุดของเลนส์ที่มีความยาวโฟกัส 20 มม. คือเท่าใด?",
    "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_en": "What is the 35mm EFL and the equivalent aperture of the lens(es) with a maximum aperture of f /2.5?",
    "question_th": "EFL 35 มม. และรูรับแสงเทียบเท่าของเลนส์ที่มีรูรับแสงกว้างสุด 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_en": "What is the lowest rank for Andre Vonarburg, when the notes are FB?",
    "question_th": "อันดับต่ำสุดของ Andre Vonarburg คืออะไร เมื่อโน้ตเป็น FB?",
    "context": "CREATE TABLE table_name_54 (rank INTEGER, notes VARCHAR, athlete VARCHAR)"
  },
  {
    "answer": "SELECT athlete FROM table_name_44 WHERE country = \"norway\"",
    "question_en": "Which athlete is from Norway?",
    "question_th": "นักกีฬาคนไหนมาจากนอร์เวย์?",
    "context": "CREATE TABLE table_name_44 (athlete VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_name_46 WHERE athlete = \"lassi karonen\"",
    "question_en": "What is listed in notes for the athlete, lassi karonen?",
    "question_th": "สิ่งที่ระบุไว้ในบันทึกสำหรับนักกีฬา 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_en": "What is the highest rank for the team that raced a time of 6:50.40?",
    "question_th": "อันดับสูงสุดของทีมที่ทำเวลาได้ 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_en": "What is the sum of the ranks for india?",
    "question_th": "ผลรวมอันดับของอินเดียเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_59 (rank INTEGER, country VARCHAR)"
  },
  {
    "answer": "SELECT nation FROM table_name_84 WHERE performance = \"9.69\"",
    "question_en": "Which nation ran a time of 9.69 seconds?",
    "question_th": "ชาติใดวิ่งได้ 9.69 วินาที?",
    "context": "CREATE TABLE table_name_84 (nation VARCHAR, performance VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_49 WHERE nation = \"cuba\"",
    "question_en": "What is the Place associated with Cuba?",
    "question_th": "สถานที่เกี่ยวข้องกับคิวบาคืออะไร?",
    "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_en": "Which place had a performance of 19.30 seconds by Jamaica?",
    "question_th": "สถานที่ใดมีการแสดง 19.30 วินาทีโดยจาเมกา?",
    "context": "CREATE TABLE table_name_50 (place VARCHAR, nation VARCHAR, performance VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_name_85 WHERE year = 2005",
    "question_en": "What game was in 2005?",
    "question_th": "เกมอะไรในปี 2548?",
    "context": "CREATE TABLE table_name_85 (game VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_name_66 WHERE year = 2001",
    "question_en": "What game was in 2001?",
    "question_th": "เกมอะไรในปี 2544?",
    "context": "CREATE TABLE table_name_66 (game VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_name_7 WHERE year = 2011",
    "question_en": "What game was in 2011?",
    "question_th": "เกมอะไรในปี 2554?",
    "context": "CREATE TABLE table_name_7 (game VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT platform_s_ FROM table_name_33 WHERE developer_s_ = \"rockstar games\"",
    "question_en": "What's the platform that has Rockstar Games as the developer?",
    "question_th": "แพลตฟอร์มใดที่มี Rockstar Games เป็นผู้พัฒนา?",
    "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_en": "What's the genre of The Sims before 2002?",
    "question_th": "The Sims แนวไหนก่อนปี 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_en": "What actor plays Marie-Rose De Putter?",
    "question_th": "นักแสดงคนไหนที่รับบทเป็น มารี-โรส เดอ พัตเตอร์?",
    "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_en": "What character did Vicky Versavel play for 13 years?",
    "question_th": "Vicky Versavel เล่นตัวละครอะไรมา 13 ปี?",
    "context": "CREATE TABLE table_name_93 (character VARCHAR, duration VARCHAR, actor VARCHAR)"
  },
  {
    "answer": "SELECT years FROM table_name_74 WHERE torque = \"n·m (lb·ft)@1750-3000\" AND model = \"sdrive16d\"",
    "question_en": "What years did the sdrive16d model have a Torque of n·m (lb·ft)@1750-3000?",
    "question_th": "รุ่น sdrive16d มีแรงบิดอยู่ที่ n·m (lb·ft)@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_en": "What is the torque of the xdrive20d model, which has a power of ps (kw; hp)@4000?",
    "question_th": "แรงบิดของรุ่น xdrive20d ซึ่งมีกำลัง 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_en": "What is the engine code of the xdrive23d model?",
    "question_th": "รหัสเครื่องยนต์ของรุ่น xdrive23d คืออะไร?",
    "context": "CREATE TABLE table_name_11 (engine_code VARCHAR, model VARCHAR)"
  },
  {
    "answer": "SELECT model FROM table_name_60 WHERE torque = \"n·m (lb·ft)@1500-2500\"",
    "question_en": "What model is the n·m (lb·ft)@1500-2500 torque?",
    "question_th": "แรงบิด n·m (lb·ft)@1500-2500 เป็นรุ่นอะไร?",
    "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_en": "What's the IHSAA Football Class in Decatur with an AAA IHSAA class?",
    "question_th": "IHSAA Football Class ในดีเคเตอร์กับคลาส AAA IHSAA คืออะไร",
    "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_en": "What's the enrollment for Kendallville?",
    "question_th": "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_en": "What country has a silver medal in the boxing, heavyweight event?",
    "question_th": "ประเทศไหนได้เหรียญเงินมวยรุ่นเฮฟวี่เวต?",
    "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_en": "What is the event in the 2000 summer olympics with a bronze medal?",
    "question_th": "โอลิมปิกฤดูร้อนปี 2000 ได้เหรียญทองแดง โอลิมปิกฤดูร้อน 2000 คืออะไร?",
    "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_en": "Which event is in the 1952 summer olympics?",
    "question_th": "เหตุการณ์ใดอยู่ในโอลิมปิกฤดูร้อนปี 1952?",
    "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_en": "Which country in the 2008 summer olympics is vadim devyatovskiy from?",
    "question_th": "วาดิม เดวียาตอฟสกี้ มาจากประเทศใดในโอลิมปิกฤดูร้อน 2008?",
    "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_en": "What is the average Gold entry for the Netherlands that also has a Bronze entry that is greater than 0?",
    "question_th": "รายการทองคำเฉลี่ยสำหรับเนเธอร์แลนด์ที่มีรายการทองแดงที่มากกว่า 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_en": "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?",
    "question_th": "ประเทศใดที่มีรายการทองที่มากกว่า 0, ผลรวมที่มากกว่า 2, รายการเงินที่มากกว่า 1 และ 0 ทองแดง",
    "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_en": "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?",
    "question_th": "รายการทองคำเฉลี่ยของตุรกีที่มีรายการทองแดงที่น้อยกว่า 2 และผลรวมมากกว่า 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_en": "What were the losses when the byes were less than 0?",
    "question_th": "อะไรคือการสูญเสียเมื่อบายน้อยกว่า 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_en": "what is the play when the company is national theatre of greece?",
    "question_th": "จะเล่นอะไรในเมื่อบริษัทเป็นโรงละครแห่งชาติของกรีซ?",
    "context": "CREATE TABLE table_name_11 (play VARCHAR, company VARCHAR)"
  },
  {
    "answer": "SELECT company FROM table_name_28 WHERE country = \"greece\" AND author = \"aeschylus\"",
    "question_en": "what is the company when the country is greece and the author is aeschylus?",
    "question_th": "บริษัทอะไรในเมื่อประเทศกรีซและผู้เขียนคือเอสคิลัส?",
    "context": "CREATE TABLE table_name_28 (company VARCHAR, country VARCHAR, author VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_67 WHERE base = \"ljubljana\"",
    "question_en": "what is the country when the base is ljubljana?",
    "question_th": "ฐานทัพคือลูบลิยานาประเทศอะไร?",
    "context": "CREATE TABLE table_name_67 (country VARCHAR, base VARCHAR)"
  },
  {
    "answer": "SELECT base FROM table_name_67 WHERE play = \"thesmophoriazusae\"",
    "question_en": "what is the base when the play is thesmophoriazusae?",
    "question_th": "ฐานเมื่อเล่นคือ thesmophoriazusae คืออะไร?",
    "context": "CREATE TABLE table_name_67 (base VARCHAR, play VARCHAR)"
  },
  {
    "answer": "SELECT company FROM table_name_63 WHERE base = \"ljubljana\"",
    "question_en": "what is the company when the base is ljubljana?",
    "question_th": "บริษัทอะไรเมื่อฐานอยู่ที่ลูบลิยานา?",
    "context": "CREATE TABLE table_name_63 (company VARCHAR, base VARCHAR)"
  },
  {
    "answer": "SELECT play FROM table_name_61 WHERE company = \"cyprus theatre organisation\"",
    "question_en": "what is the play when the company is cyprus theatre organisation?",
    "question_th": "ละครจะเป็นอย่างไรเมื่อบริษัทเป็นองค์กรโรงละครไซปรัส?",
    "context": "CREATE TABLE table_name_61 (play VARCHAR, company VARCHAR)"
  },
  {
    "answer": "SELECT MAX(rank) FROM table_name_94 WHERE country = \"denmark\"",
    "question_en": "What was the highest rank for rowers who represented Denmark?",
    "question_th": "อันดับสูงสุดสำหรับฝีพายที่เป็นตัวแทนของเดนมาร์กคืออะไร?",
    "context": "CREATE TABLE table_name_94 (rank INTEGER, country VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_27 WHERE country = \"great britain\"",
    "question_en": "What was the time for the rowers representing great britain?",
    "question_th": "เวลาใดที่นักพายเรือเป็นตัวแทนของบริเตนใหญ่?",
    "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_en": "Which Arena has an Opponent of @ oilers, and a Date of may 25?",
    "question_th": "Arena ใดที่มีฝ่ายตรงข้ามของ @ oilers และวันที่ 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–5)\"",
    "question_en": "How much attendance has a Loss of roloson (11–5)?",
    "question_th": "ผู้เข้าร่วมสูญเสียโรโลสัน (11–5) มากน้อยเพียงใด",
    "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–3)\"",
    "question_en": "Which Attendance has an Arena of arrowhead pond of anaheim, and a Loss of giguere (3–3)?",
    "question_th": "ผู้เข้าร่วมคนใดมีสนามประลองสระน้ำหัวลูกศรแห่งอนาไฮม์ และการสูญเสียกิเกเร (3–3)",
    "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_en": "Which Attendance has an Opponent of @ oilers, and a Date of may 25?",
    "question_th": "ผู้เข้าร่วมคนใดมีฝ่ายตรงข้ามของ @ oilers และวันที่ 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_en": "What was the attendance on may 21?",
    "question_th": "ผู้เข้าร่วมในวันที่ 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_en": "Who's the athlete with a wind of 1.7 and from the United States?",
    "question_th": "นักกีฬาลม 1.7 และจากประเทศสหรัฐอเมริกาคือใคร?",
    "context": "CREATE TABLE table_name_50 (athlete VARCHAR, nationality VARCHAR, wind VARCHAR)"
  },
  {
    "answer": "SELECT athlete FROM table_name_45 WHERE wind = \"1.8\"",
    "question_en": "Who was the athlete with a wind of 1.8?",
    "question_th": "นักกีฬาลม 1.8 คือใคร?",
    "context": "CREATE TABLE table_name_45 (athlete VARCHAR, wind VARCHAR)"
  },
  {
    "answer": "SELECT wind FROM table_name_83 WHERE time = \"19.32\"",
    "question_en": "What's the wind when the time was 19.32?",
    "question_th": "เมื่อเวลา 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_en": "What's the highest total of Romania when the bronze was less than 2?",
    "question_th": "โรมาเนียเมื่อทองแดงน้อยกว่า 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_en": "What's the total of rank number 6 with more than 2 silver?",
    "question_th": "อันดับ 6 ที่มีเงินมากกว่า 2 เหรียญรวมกันเป็นเท่าไหร่?",
    "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_en": "What percentage of browsers were using Internet Explorer during the period in which 27.85% were using Firefox?",
    "question_th": "เปอร์เซ็นต์ของเบราว์เซอร์ที่ใช้ Internet Explorer ในช่วงที่ 27.85% ใช้ 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_en": "What percentage of browsers were using Internet Explorer in April 2009?",
    "question_th": "เบราว์เซอร์ที่ใช้ Internet Explorer ในเดือนเมษายน 2552 มีกี่เปอร์เซ็นต์",
    "context": "CREATE TABLE table_name_81 (internet_explorer VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT safari FROM table_name_62 WHERE firefox = \"31.27%\"",
    "question_en": "What percentage of browsers were using Safari during the period in which 31.27% were using Firefox?",
    "question_th": "เปอร์เซ็นต์ของเบราว์เซอร์ที่ใช้ Safari ในช่วงที่ 31.27% ใช้ Firefox",
    "context": "CREATE TABLE table_name_62 (safari VARCHAR, firefox VARCHAR)"
  },
  {
    "answer": "SELECT opera FROM table_name_53 WHERE date = \"october 2010\"",
    "question_en": "What percentage of browsers were using Opera in October 2010?",
    "question_th": "เบราว์เซอร์ใดที่ใช้ Opera ในเดือนตุลาคม 2010",
    "context": "CREATE TABLE table_name_53 (opera VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opera FROM table_name_69 WHERE date = \"november 2009\"",
    "question_en": "What percentage of browsers were using Opera in November 2009?",
    "question_th": "เบราว์เซอร์ใดที่ใช้ Opera ในเดือนพฤศจิกายน 2552",
    "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_en": "What country has sa/b as the notes, and a time of 5:51.30?",
    "question_th": "ประเทศใดมี sa/b เป็นบันทึก และเวลา 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_en": "Who were the rowers when notes were sa/b, with a time of 5:51.30?",
    "question_th": "ใครคือคนพายเรือเมื่อโน้ตเป็น sa/b ด้วยเวลา 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_en": "What country is ranked larger than 4?",
    "question_th": "ประเทศใดมีอันดับมากกว่า 4?",
    "context": "CREATE TABLE table_name_72 (country VARCHAR, rank INTEGER)"
  },
  {
    "answer": "SELECT MIN(enrollment) FROM table_name_8 WHERE mascot = \"trojans\"",
    "question_en": "What's the least enrolled when the mascot was the Trojans?",
    "question_th": "อะไรคือสิ่งที่ลงทะเบียนน้อยที่สุดเมื่อมิ่งขวัญเป็นโทรจัน?",
    "context": "CREATE TABLE table_name_8 (enrollment INTEGER, mascot VARCHAR)"
  },
  {
    "answer": "SELECT ihsaa_class FROM table_name_77 WHERE mascot = \"red devils\"",
    "question_en": "What's the IHSAA class of the Red Devils?",
    "question_th": "IHSAA คลาสของปีศาจแดงคืออะไร?",
    "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_en": "What's the rank for February 11, 2012 with less than 18,735 in attendance?",
    "question_th": "อันดับที่ 11 กุมภาพันธ์ 2555 โดยมีผู้เข้าร่วมน้อยกว่า 18,735 คนอยู่ที่เท่าไร",
    "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_en": "What is Cynthia Mobumba's height?",
    "question_th": "ซินเธีย โมบัมบามีส่วนสูงเท่าไร?",
    "context": "CREATE TABLE table_name_83 (height__ft_ VARCHAR, contestant VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_name_31 WHERE country = \"indonesia\"",
    "question_en": "What is the hometown of the player from Indonesia?",
    "question_th": "บ้านเกิดของผู้เล่นจากอินโดนีเซียคืออะไร?",
    "context": "CREATE TABLE table_name_31 (hometown VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_88 WHERE round = 3",
    "question_en": "From what school was the player drafted in round 3?",
    "question_th": "ผู้เล่นถูกเกณฑ์ทหารจากโรงเรียนใดในรอบที่ 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_en": "From what school was the linebacker that had a pick less than 245 and was drafted in round 6?",
    "question_th": "บร็องโกที่คัดเลือกน้อยกว่า 245 และถูกดราฟท์ในรอบ 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_en": "What was the Rebuildjahr(e) for the T2AA class?",
    "question_th": "Rebuildjahr(e) สำหรับคลาส T2AA คืออะไร",
    "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_en": "What is the total of quantity rebuilt if the type is 1B N2T and the railway number is 88, 118?",
    "question_th": "ถ้าแบบ 1B N2T และหมายเลขรางรถไฟคือ 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_en": "What date was Chester the away team?",
    "question_th": "เชสเตอร์ทีมเยือนจัดวันไหน?",
    "context": "CREATE TABLE table_name_67 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_4 WHERE home_team = \"wolverhampton wanderers\"",
    "question_en": "What's the score when the Wolverhampton Wanderers played at home?",
    "question_th": "เมื่อวูล์ฟแฮมป์ตันเล่นในบ้านได้สกอร์เท่าไหร่?",
    "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_en": "Who was the home team that played against Manchester United?",
    "question_th": "ทีมเหย้าที่เล่นกับแมนเชสเตอร์ยูไนเต็ดคือใคร?",
    "context": "CREATE TABLE table_name_86 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_35 WHERE tie_no = \"6\"",
    "question_en": "What's the score when the tie number was 6?",
    "question_th": "คะแนนเมื่อเสมอกันคือ 6?",
    "context": "CREATE TABLE table_name_35 (score VARCHAR, tie_no VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_70 WHERE tie_no = \"replay\"",
    "question_en": "What's the score when the tie number was replay?",
    "question_th": "คะแนนเมื่อเล่นซ้ำหมายเลขเสมอกันเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_70 (score VARCHAR, tie_no VARCHAR)"
  },
  {
    "answer": "SELECT episode FROM table_name_38 WHERE program = \"batman\"",
    "question_en": "What's the episode of Batman?",
    "question_th": "แบทแมนตอนอะไรคะ?",
    "context": "CREATE TABLE table_name_38 (episode VARCHAR, program VARCHAR)"
  },
  {
    "answer": "SELECT first_aired FROM table_name_30 WHERE role = \"professor hubert whitehead\"",
    "question_en": "What's the first aired date when Professor Hubert Whitehead was the role?",
    "question_th": "ศาสตราจารย์ฮิวเบิร์ต ไวท์เฮด รับบทนี้ออกอากาศครั้งแรกเมื่อใด",
    "context": "CREATE TABLE table_name_30 (first_aired VARCHAR, role VARCHAR)"
  },
  {
    "answer": "SELECT first_aired FROM table_name_91 WHERE episode = \"animated series\"",
    "question_en": "What's the first aired date of the Animated Series episode?",
    "question_th": "Animated Series ตอนออกอากาศครั้งแรกคือวันไหน?",
    "context": "CREATE TABLE table_name_91 (first_aired VARCHAR, episode VARCHAR)"
  },
  {
    "answer": "SELECT role FROM table_name_4 WHERE program = \"the bionic woman\"",
    "question_en": "What's the roles of the Bionic Woman?",
    "question_th": "Bionic Woman มีบทบาทอย่างไร?",
    "context": "CREATE TABLE table_name_4 (role VARCHAR, program VARCHAR)"
  },
  {
    "answer": "SELECT episode FROM table_name_85 WHERE first_aired = \"1976\"",
    "question_en": "What episode was first aired in 1976?",
    "question_th": "ละครเรื่องใดออกอากาศครั้งแรกในปี พ.ศ. 2519?",
    "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_en": "What is the most total goals for a player having 0 FA Cup goals and 41 League appearances?",
    "question_th": "ประตูรวมมากที่สุดสำหรับผู้เล่นที่ทำได้ 0 ประตูในเอฟเอ คัพ และ 41 นัดในลีก?",
    "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_en": "How many bronze medals were won when the total is more than 1, and gold is more than 0?",
    "question_th": "เมื่อรวมมากกว่า 1 และทองมากกว่า 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_en": "What is the rank when there was less than 1 gold, 0 bronze, and more than 1 total?",
    "question_th": "อันดับเมื่อมีน้อยกว่า 1 เหรียญทอง 0 ทองแดง และมากกว่า 1 ทั้งหมดคืออะไร?",
    "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_en": "What is the total when there were less than 0 bronze?",
    "question_th": "ยอดรวมเมื่อน้อยกว่า 0 ทองแดงเป็นเท่าไหร่?",
    "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_en": "What is the rank when there is 0 gold, the total is more than 1, and silver is more than 0?",
    "question_th": "อันดับเมื่อมี 0 ทอง รวมมากกว่า 1 และเงินมากกว่า 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_en": "What is the number of gold medals for Lithuania (ltu), when the total is more than 1?",
    "question_th": "ลิทัวเนีย (ltu) ได้เหรียญทองเท่าไหร่เมื่อยอดรวมมากกว่า 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_en": "What is the release date of production number 1327?",
    "question_th": "หมายเลขการผลิต 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_en": "What is the highest production number released on 1955-04-02 with i. freleng as the director?",
    "question_th": "หมายเลขการผลิตสูงสุดที่ออกเมื่อ 1955-04-02 คือเท่าใด เฟรเลงเป็นผู้กำกับเหรอ?",
    "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_en": "What is the title with the production number greater than 1334 released on 1955-08-27?",
    "question_th": "ชื่อที่มีจำนวนการผลิตมากกว่า 1334 ที่ออกเมื่อ 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_en": "How many years did the role of Steve Rhoades last?",
    "question_th": "บทบาทของ Steve Rhoades อยู่ได้กี่ปี?",
    "context": "CREATE TABLE table_name_21 (years VARCHAR, role VARCHAR)"
  },
  {
    "answer": "SELECT episodes FROM table_name_37 WHERE actor = \"david faustino\"",
    "question_en": "How many episodes did the actor David Faustino appear in?",
    "question_th": "นักแสดง David Faustino ปรากฏตัวกี่ตอน?",
    "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_en": "Which County has a Rank larger than 8, and a Player of joe mckenna?",
    "question_th": "เคาน์ตี้ใดมีอันดับมากกว่า 8 และเป็นผู้เล่นของ 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–4\" AND rank > 10",
    "question_en": "Which Total has a County of kilkenny, and a Tally of 1–4, and a Rank larger than 10?",
    "question_th": "Total ใดที่มีเคาน์ตีคิลเคนนี และคะแนนรวม 1–4 และมีอันดับมากกว่า 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_en": "What is galway county's total?",
    "question_th": "ยอดรวมของมณฑลกัลเวย์เป็นเท่าใด",
    "context": "CREATE TABLE table_name_80 (total INTEGER, county VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_95 WHERE class = \"time trial hc a\"",
    "question_en": "What is the event when the class is time trial hc a?",
    "question_th": "เหตุการณ์เมื่อคลาสคือ 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_en": "Who received gold when the event is road race details and silver is max weber germany (ger)?",
    "question_th": "ใครได้รับทองเมื่องานเป็นรายละเอียด Road Race และเงินคือ 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_en": "Who received gold when the event is time trial details and silver is simon richardson great britain (gbr)?",
    "question_th": "ใครได้รับเหรียญทองเมื่องานเป็นรายละเอียด Time Trial และเหรียญเงินคือ 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_en": "who received gold when silver is wolfgang eibeck austria (aut)?",
    "question_th": "ใครได้รับทองเมื่อเงินคือโวล์ฟกังไอเบคออสเตรีย (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_en": "what is the event when gold is darren kenny great britain (gbr)?",
    "question_th": "เหตุการณ์ที่ทองคำคือ ดาร์เรน เคนนี บริเตนใหญ่ (gbr) คืออะไร?",
    "context": "CREATE TABLE table_name_1 (event VARCHAR, gold VARCHAR)"
  },
  {
    "answer": "SELECT director FROM table_name_77 WHERE title = \"bunker hill bunny\"",
    "question_en": "Who directed Bunker Hill Bunny?",
    "question_th": "ใครเป็นผู้กำกับ 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_en": "Who directed An Egg Scramble?",
    "question_th": "ใครเป็นผู้กำกับเรื่อง Egg Scramble?",
    "context": "CREATE TABLE table_name_53 (director VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_35 WHERE attendance = \"65,554\"",
    "question_en": "Who was the opposing team in the game attended by 65,554?",
    "question_th": "ทีมตรงข้ามในเกมที่มีผู้เข้าร่วม 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_en": "what is the highest draw when the place is less than 3 and the percentage is 30.71%?",
    "question_th": "เสมอสูงสุดเมื่ออันดับน้อยกว่า 3 และเปอร์เซ็นต์คือ 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_en": "what is the least draw when the place is higher than 4?",
    "question_th": "เสมอน้อยที่สุดเมื่ออันดับสูงกว่า 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_en": "What is the lowest pick of the defensive tackle player dave haverdick?",
    "question_th": "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_en": "What is the average pick of player jim h. mitchell?",
    "question_th": "ค่าเฉลี่ยของการเลือกผู้เล่น จิม เอช. มิทเชล?",
    "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_en": "With a Col (m) larger than 2012, what is Mount Kazbek's Prominence (m)?",
    "question_th": "ด้วย Col (m) ที่ใหญ่กว่าปี 2012 ความโดดเด่นของ Mount Kazbek (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_en": "What genre has a station of Class 95FM?",
    "question_th": "ประเภทใดที่มีสถานีของ 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_en": "What is the genre of the BBC World Service?",
    "question_th": "ประเภทของ 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_en": "Which station is operated by BBC Radio under the talk radio genre?",
    "question_th": "สถานีใดดำเนินการโดย BBC Radio ภายใต้ประเภทวิทยุพูดคุย?",
    "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_en": "What's the sum of Silver with total smaller than 560, a Bronze larger than 6, and a Gold of 3?",
    "question_th": "ผลรวมของเงินที่มียอดรวมน้อยกว่า 560 เหรียญทองแดงที่มากกว่า 6 และทองคำเท่ากับ 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_en": "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?",
    "question_th": "ผลรวมของทองคำกับทองแดงที่มากกว่า 15, เงินที่น้อยกว่า 197, ประเทศเซนต์ลูเซีย และมีผลรวมมากกว่า 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_en": "What Nation has a Bronze that is smaller than 10 with a Silver of 5?",
    "question_th": "ประเทศใดมีเหรียญทองแดงที่น้อยกว่า 10 และมีเงิน 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_en": "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?",
    "question_th": "จำนวนเงินทั้งหมดที่มีทองคำมากกว่า 0, เหรียญทองแดงที่น้อยกว่า 23, จำนวนรวมที่มากกว่า 22 และมีชาติเซนต์คิตส์และเนวิสคือเท่าใด",
    "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_en": "What is listed as the highest Silver that also has a Gold of 4 and a Total that's larger than 25?",
    "question_th": "สิ่งใดที่ถูกระบุว่าเป็นเงินสูงสุดที่มีทองคำเท่ากับ 4 และผลรวมที่มากกว่า 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_en": "What's the lost when there were more than 16 points and had a drawn less than 1?",
    "question_th": "เมื่อเกิน 16 แต้ม เสมอน้อยกว่า 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_en": "What's the most points for Ea Schongau with more than 1 drawn?",
    "question_th": "เอ ชองเกา ที่เสมอมากกว่า 1 แต้มมากที่สุดคือแต้มไหน?",
    "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_en": "What's the points that has a lost more 6, played less than 14 and a position more than 1?",
    "question_th": "แต้มที่เสียมากกว่า 6, เล่นน้อยกว่า 14 และตำแหน่งมากกว่า 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_en": "When dis cbs release the DVD set?",
    "question_th": "เมื่อไหร่dis cbsจะออกชุดดีวีดีคะ?",
    "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_en": "What is the total season number for episodes later than episode 30?",
    "question_th": "จำนวนซีซั่นทั้งหมดสำหรับตอนหลังตอนที่ 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_en": "What year is the Grim Fandango with a windows platform?",
    "question_th": "Grim Fandango พร้อมแพลตฟอร์ม windows ปีไหน?",
    "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_en": "What game in the genre of adventure, has a windows platform and its year is after 1997?",
    "question_th": "เกมแนวผจญภัยใดมีแพลตฟอร์ม Windows และปีหลังปี 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_en": "What is the 2.15 for Tom Parsons?",
    "question_th": "2.15 สำหรับ 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_en": "Which athlete from Brazil has 2.20 O and 2.25 of XXX?",
    "question_th": "นักกีฬาจากบราซิลคนไหนมี 2.20 O และ 2.25 ของ 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_en": "Which athlete from Germany has 2.20 of O and a 2.25 of O?",
    "question_th": "นักกีฬาคนใดจากเยอรมนีที่มี O 2.20 และ 2.25 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_en": "Which 2011 has an Airport of bole international airport?",
    "question_th": "ปี 2011 ใดมีสนามบินของสนามบินนานาชาติโบล?",
    "context": "CREATE TABLE table_name_38 (airport VARCHAR)"
  },
  {
    "answer": "SELECT release_date FROM table_name_10 WHERE title = \"forward march hare\"",
    "question_en": "What's the release date of Forward March Hare?",
    "question_th": "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_en": "What's the release date of Upswept Hare?",
    "question_th": "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_en": "What's the series of Kiss Me Cat?",
    "question_th": "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_en": "What country is the athlete ekaterina karsten from with a rank less than 4?",
    "question_th": "นักกีฬา Ekaterina Karsten มาจากประเทศใดและมีอันดับต่ำกว่า 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_en": "What is the time of frida svensson's race that had sa/b under the notes?",
    "question_th": "การแข่งขันของ frida svensson ที่มี sa/b อยู่ใต้โน้ตคือเวลาใด",
    "context": "CREATE TABLE table_name_81 (time VARCHAR, notes VARCHAR, athlete VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_29 WHERE athlete = \"emma twigg\"",
    "question_en": "What is the race time for emma twigg?",
    "question_th": "เอ็มม่า ทวิกก์ แข่งกี่โมง?",
    "context": "CREATE TABLE table_name_29 (time VARCHAR, athlete VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(rank) FROM table_name_56 WHERE time = \"7:34.24\"",
    "question_en": "What is the total rank for the athlete that had a race time of 7:34.24?",
    "question_th": "นักกีฬาที่ทำเวลาแข่งขันได้รวมอันดับเท่าไหร่คือ 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_en": "What is the Date of the game with an attendance of 72,051 after Week 9?",
    "question_th": "วันที่ของเกมที่มีผู้เข้าร่วม 72,051 คนหลังจากสัปดาห์ที่ 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_en": "In what Week was the Attendance 49,097?",
    "question_th": "ผู้เข้าร่วม 49,097 คนในสัปดาห์ใด",
    "context": "CREATE TABLE table_name_51 (week INTEGER, attendance VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_32 WHERE attendance = \"73,405\"",
    "question_en": "On what Date was the Attendance 73,405?",
    "question_th": "ผู้เข้าร่วม 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_en": "Who was the Opponent on November 27, 2005?",
    "question_th": "ใครคือฝ่ายตรงข้ามในวันที่ 27 พฤศจิกายน พ.ศ. 2548",
    "context": "CREATE TABLE table_name_32 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(week) FROM table_name_87 WHERE date = \"bye\"",
    "question_en": "What is the Week with a Date of Bye?",
    "question_th": "สัปดาห์ที่มีวันที่ลาคืออะไร?",
    "context": "CREATE TABLE table_name_87 (week VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_89 WHERE bronze = 1 AND nation = \"lithuania\"",
    "question_en": "Which Rank has a Bronze of 1, and a Nation of lithuania?",
    "question_th": "อันดับใดมีเหรียญทองแดง 1 และมีชาติลิทัวเนีย?",
    "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_en": "How much Silver has a Rank of 1, and a Bronze smaller than 3?",
    "question_th": "เงินเท่าไหร่มีอันดับ 1 และเหรียญทองแดงน้อยกว่า 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_en": "Which Bronze has a Gold of 2, and a Nation of slovakia, and a Total larger than 2?",
    "question_th": "เหรียญทองแดงใดมีเหรียญทอง 2 เหรียญ และมีประเทศสโลวาเกีย และคะแนนรวมมากกว่า 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_en": "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?",
    "question_th": "ทองแดงจำนวนเท่าใดที่มีทองคำมากกว่า 1 และเงินน้อยกว่า 3 และชาติของเยอรมนี และผลรวมมากกว่า 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_en": "What's the total of the position of 1?",
    "question_th": "ตำแหน่งที่ 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_en": "What's the position that has a total less than 66.5m, a compulsory of 30.9 and voluntary less than 33.7?",
    "question_th": "ตำแหน่งที่มียอดรวมน้อยกว่า 66.5m บังคับ 30.9 และสมัครใจน้อยกว่า 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_en": "What's the total compulsory when the total is more than 69.2 and the voluntary is 38.7?",
    "question_th": "รวมภาคบังคับเมื่อยอดเกิน 69.2 และภาคสมัครใจ 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_en": "What date was Wet Hare, directed by Robert McKimson, released?",
    "question_th": "Wet Hare กำกับโดย Robert McKimson ออกฉายวันที่เท่าไร",
    "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_en": "What is the title of the film with production number 1553, directed by Friz Freleng?",
    "question_th": "ภาพยนตร์เรื่องนี้มีการผลิตหมายเลข 1553 กำกับโดย 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_en": "What is Crows' Feat's production number?",
    "question_th": "หมายเลขการผลิตของ Crows' Feat คืออะไร?",
    "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_en": "What is the safari value with a 2.4% opera and 29.9% internet explorer?",
    "question_th": "ค่าซาฟารีที่มีโอเปร่า 2.4% และ Internet Explorer 29.9% เป็นเท่าใด",
    "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_en": "What is the firefox value with a 1.9% safari?",
    "question_th": "ค่า Firefox ที่มีซาฟารี 1.9% คืออะไร?",
    "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_en": "What is the firefox value with a 1.8% opera on 30 July 2007?",
    "question_th": "ค่า Firefox ที่มีโอเปร่า 1.8% ในวันที่ 30 กรกฎาคม 2550 เป็นเท่าใด",
    "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_en": "What is the date when internet explorer was 62.2%",
    "question_th": "วันที่เท่าไหร่ที่ Internet Explorer อยู่ที่ 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_en": "What is the firefox value with a 22.0% internet explorer?",
    "question_th": "ค่า Firefox ของ Internet Explorer 22.0% เป็นเท่าใด",
    "context": "CREATE TABLE table_name_56 (firefox VARCHAR, internet_explorer VARCHAR)"
  },
  {
    "answer": "SELECT safari FROM table_name_70 WHERE internet_explorer = \"28.0%\"",
    "question_en": "What is the safari value with a 28.0% internet explorer?",
    "question_th": "มูลค่าซาฟารีด้วย Internet Explorer 28.0% คือเท่าไร?",
    "context": "CREATE TABLE table_name_70 (safari VARCHAR, internet_explorer VARCHAR)"
  },
  {
    "answer": "SELECT catalog FROM table_name_34 WHERE region = \"world\"",
    "question_en": "Which catalog value has a region of world?",
    "question_th": "ค่าแค็ตตาล็อกใดมีภูมิภาคของโลก",
    "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_en": "Which formats have a region of Europe and Catalog value of WEBB185?",
    "question_th": "รูปแบบใดมีภูมิภาคของยุโรปและค่าแคตตาล็อกเป็น 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_en": "Which region is associated with the catalog value of 512335?",
    "question_th": "ภูมิภาคใดที่เกี่ยวข้องกับค่าแค็ตตาล็อก 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_en": "What are the formats associated with the Atlantic Records label, catalog number 512336?",
    "question_th": "รูปแบบที่เกี่ยวข้องกับป้าย Atlantic Records หมายเลขแค็ตตาล็อก 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_en": "Which date was associated with the release in Europe on the Wichita Recordings label?",
    "question_th": "วันใดที่เกี่ยวข้องกับการเปิดตัวในยุโรปบนค่ายเพลง Wichita Recordings",
    "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_en": "What is the lowest year that has edmonton, canada as the venue with a weight class (kg) greater than 100?",
    "question_th": "ปีต่ำสุดที่มีเมืองเอดมันตัน ประเทศแคนาดา เป็นสถานที่ที่มีระดับน้ำหนัก (กก.) มากกว่า 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_en": "What is the lowest weight class (kg) that has sofia, bulgaria as the venue?",
    "question_th": "สถานที่จัดการแข่งขันคือรุ่นน้ำหนักต่ำสุด (กก.) ที่มีโซเฟีย บัลแกเรีย เป็นเท่าใด",
    "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_en": "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?",
    "question_th": "ปีใดที่มีการแข่งขัน fila world Championships มากที่สุด โดยมีเมืองโตเลโด ประเทศสหรัฐอเมริกา เป็นสถานที่จัดงาน และระดับน้ำหนัก (กก.) น้อยกว่า 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_en": "What is the Airport with the ICAO fo KSEA?",
    "question_th": "สนามบินที่มี ICAO สำหรับ KSEA คืออะไร?",
    "context": "CREATE TABLE table_name_10 (airport VARCHAR, icao VARCHAR)"
  },
  {
    "answer": "SELECT icao FROM table_name_91 WHERE city = \"frankfurt\"",
    "question_en": "What is the IcAO of Frankfurt?",
    "question_th": "IcAO ของแฟรงก์เฟิร์ตคืออะไร?",
    "context": "CREATE TABLE table_name_91 (icao VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT airport FROM table_name_87 WHERE icao = \"eddh\"",
    "question_en": "What is the Airport with a ICAO of EDDH?",
    "question_th": "สนามบินที่มี ICAO ของ EDDH คืออะไร",
    "context": "CREATE TABLE table_name_87 (airport VARCHAR, icao VARCHAR)"
  },
  {
    "answer": "SELECT airport FROM table_name_56 WHERE iata = \"sea\"",
    "question_en": "What Airport's IATA is SEA?",
    "question_th": "IATA ของสนามบินใดคือ SEA",
    "context": "CREATE TABLE table_name_56 (airport VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_51 WHERE iata = \"muc\"",
    "question_en": "What is the City with an IATA of MUC?",
    "question_th": "เมืองที่มี IATA ของ MUC คืออะไร",
    "context": "CREATE TABLE table_name_51 (city VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT iata FROM table_name_30 WHERE city = \"akureyri\"",
    "question_en": "What is the IATA OF Akureyri?",
    "question_th": "IATA ของ 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_en": "How tall is the Mountain of jbel ghat?",
    "question_th": "ภูเขา 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_en": "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?",
    "question_th": "ประเทศใดมีความโดดเด่น (ม.) เล็กกว่า 1540 และความสูง (ม.) เล็กกว่า 3530 และมีเทือกเขา virunga และภูเขา 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_en": "Which Country has a Height (m) larger than 4100, and a Range of arsi mountains, and a Mountain of bada?",
    "question_th": "ประเทศใดมีความสูง (ม.) มากกว่า 4100 และมีเทือกเขาอาร์ซีและภูเขาบาดา",
    "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_en": "Which Percentage has a Draw of 6?",
    "question_th": "เปอร์เซ็นต์ใดที่มีการเสมอกันที่ 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_en": "Which team had a rank under 4 with a time of 1:14.04.88?",
    "question_th": "ทีมไหนอันดับต่ำกว่า 4 ด้วยเวลา 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_en": "What was the speed for the rider with a time of 1:14.15.64?",
    "question_th": "ความเร็วของนักบิดด้วยเวลา 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_en": "Which College/junior/club team has a Round of 2?",
    "question_th": "ทีมวิทยาลัย/จูเนียร์/สโมสรใดมีรอบ 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_en": "Which Round has a Player of dan chicoine, and a Pick larger than 23?",
    "question_th": "รอบใดที่มีผู้เล่นของ dan chicoine และตัวเลือกที่มากกว่า 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_en": "What is the production number of From Hare to Heir?",
    "question_th": "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_en": "What is the Series number of the episode with a production number of 1547?",
    "question_th": "หมายเลขซีรีส์ตอนที่มีหมายเลขผลิต 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_en": "What is the production number for the episode directed by Robert McKimson named Mice Follies?",
    "question_th": "หมายเลขการผลิตสำหรับตอนที่กำกับโดย Robert McKimson ชื่อ 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’s world cup – group stage\"",
    "question_en": "Name the Result of the Lineup of start, an Assist/pass of carli lloyd, and an Competition of 2011 fifa women’s world cup – group stage?",
    "question_th": "ตั้งชื่อผลการแข่งขันตัวจริง, แอสซิสต์/จ่ายบอลของคาร์ลี ลอยด์ และการแข่งขันฟุตบอลโลกหญิงปี 2011 – รอบแบ่งกลุ่ม?",
    "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 – group stage\"",
    "question_en": "Name the Lineup that has an Assist/pass of carli lloyd,a Competition of 2010 concacaf world cup qualifying – group stage?",
    "question_th": "ตั้งชื่อผู้เล่นตัวจริงที่มีแอสซิสต์/พาสของคาร์ลี ลอยด์ การแข่งขันฟุตบอลโลกคอนคาเคฟ 2010 รอบคัดเลือก – รอบแบ่งกลุ่มหรือไม่?",
    "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 – group stage\"",
    "question_en": "Which Assist/pass has a Score of 1-0,a Competition of 2010 concacaf world cup qualifying – group stage?",
    "question_th": "แอสซิสต์/พาสใดที่มีคะแนน 1-0 การแข่งขันฟุตบอลโลกคอนคาเคฟ 2010 รอบคัดเลือก – รอบแบ่งกลุ่ม?",
    "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_en": "where has a Score of match reports?",
    "question_th": "มีรายงานคะแนนการแข่งขันที่ไหน?",
    "context": "CREATE TABLE table_name_49 (location VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_31 WHERE location = \"mex cancun\"",
    "question_en": "which Score has a Location of mex cancun?",
    "question_th": "Score ใดมีที่ตั้งของ mex cancun?",
    "context": "CREATE TABLE table_name_31 (score VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_81 WHERE competition = \"match reports\"",
    "question_en": "which Score has a Competition of match reports?",
    "question_th": "คะแนนใดมีรายงานการแข่งขันการแข่งขัน?",
    "context": "CREATE TABLE table_name_81 (score VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT tie_no FROM table_name_5 WHERE away_team = \"arsenal\"",
    "question_en": "Which tie number had an away team of Arsenal?",
    "question_th": "เบอร์ไหนเสมอกันกับทีมเยือน อาร์เซนอล?",
    "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_en": "What was the score for the tie that had Shrewsbury Town as home team?",
    "question_th": "เสมอกับชรูว์สบิวรี่ ทาวน์ เป็นเจ้าบ้านได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_87 (score VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_35 WHERE home_team = \"tottenham hotspur\"",
    "question_en": "What was the score of the tie that had Tottenham Hotspur as the home team?",
    "question_th": "เสมอกันที่มีท็อตแน่ม ฮ็อตสเปอร์เป็นเจ้าบ้านสกอร์เท่าไหร่?",
    "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_en": "On which apparatus did Kanayeva have a final score smaller than 75.5 and a qualifying score smaller than 18.7?",
    "question_th": "Kanaeva บนอุปกรณ์ใดที่มีคะแนนสุดท้ายน้อยกว่า 75.5 และคะแนนที่มีคุณสมบัติน้อยกว่า 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_en": "What was her lowest final score with a qualifying score of 74.075?",
    "question_th": "คะแนนสุดท้ายต่ำสุดของเธอด้วยคะแนนคัดเลือก 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_en": "What was her final score on the ribbon apparatus?",
    "question_th": "คะแนนสุดท้ายของเธอในอุปกรณ์ริบบิ้นคือเท่าไร?",
    "context": "CREATE TABLE table_name_86 (score_final VARCHAR, apparatus VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_name_15 WHERE country = \"south africa\"",
    "question_en": "What are the notes for the athlete from South Africa?",
    "question_th": "บันทึกสำหรับนักกีฬาจากแอฟริกาใต้มีอะไรบ้าง?",
    "context": "CREATE TABLE table_name_15 (notes VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_name_29 WHERE country = \"spain\"",
    "question_en": "What are the notes for the athlete from Spain?",
    "question_th": "บันทึกสำหรับนักกีฬาจากสเปนมีอะไรบ้าง?",
    "context": "CREATE TABLE table_name_29 (notes VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT AVG(rank) FROM table_name_1 WHERE athletes = \"calvin mokoto\"",
    "question_en": "What is Calvin Mokoto's average rank?",
    "question_th": "อันดับเฉลี่ยของ Calvin Mokoto คืออะไร?",
    "context": "CREATE TABLE table_name_1 (rank INTEGER, athletes VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_80 WHERE athletes = \"andreas kiligkaridis\"",
    "question_en": "What is Andreas Kiligkaridis rank?",
    "question_th": "อันเดรียส คิลิกคาริดิสอยู่อันดับไหน?",
    "context": "CREATE TABLE table_name_80 (rank VARCHAR, athletes VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_9 WHERE partner = \"erika sema\"",
    "question_en": "Which tournament had a partner of Erika Sema?",
    "question_th": "ทัวร์นาเมนต์ใดที่มีคู่หูของ 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_en": "Who were the opponents in the final at Noida?",
    "question_th": "ใครคือคู่ต่อสู้ในรอบชิงชนะเลิศที่นอยดา?",
    "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_en": "What school is in 36 Jackson?",
    "question_th": "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_en": "What's the IHSAA Class Football if the panthers are the mascot?",
    "question_th": "IHSAA Class Football จะเป็นอย่างไรหากเสือดำเป็นตัวนำโชค?",
    "context": "CREATE TABLE table_name_7 (ihsaa_class VARCHAR, mascot VARCHAR)"
  },
  {
    "answer": "SELECT ihsaa_class FROM table_name_39 WHERE school = \"seymour\"",
    "question_en": "What's the IHSAA Class when the school is Seymour?",
    "question_th": "IHSAA Class คืออะไรเมื่อโรงเรียนคือ 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_en": "What team has a position of running back and picked after 2?",
    "question_th": "ทีมไหนมีตำแหน่งวิ่งกลับเลือกหลังตี 2 ?",
    "context": "CREATE TABLE table_name_44 (team VARCHAR, pick VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_97 WHERE college = \"alabama\"",
    "question_en": "Which player is from the College of Alabama?",
    "question_th": "ผู้เล่นคนไหนมาจาก 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_en": "Which player is from Ohio State College?",
    "question_th": "ผู้เล่นคนไหนมาจาก 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_en": "The New York Jets picked someone from what college?",
    "question_th": "New York Jets เลือกคนจากวิทยาลัยอะไร",
    "context": "CREATE TABLE table_name_43 (college VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(pick) FROM table_name_15 WHERE position = \"defensive end\"",
    "question_en": "What is the highest pick for the position of defensive end?",
    "question_th": "ตัวเลือกสูงสุดสำหรับตำแหน่งฝ่ายรับคืออะไร?",
    "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_en": "What is the fewest number of silver medals won by Canada with fewer than 3 total medals?",
    "question_th": "แคนาดาได้เหรียญเงินจำนวนน้อยที่สุดโดยมีจำนวนเหรียญทั้งหมดน้อยกว่า 3 เหรียญคือเท่าใด",
    "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_en": "What is the sum of wins for Port Fairy with under 1510 against?",
    "question_th": "ผลรวมของการชนะของ Port Fairy ที่ต่ำกว่า 1510 เป็นเท่าใด?",
    "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_en": "What is the total number of Against values for clubs with more than 2 wins, 5 losses, and 0 draws?",
    "question_th": "จำนวนการต่อต้านทั้งหมดสำหรับสโมสรที่ชนะมากกว่า 2 ครั้ง, แพ้ 5 ครั้ง และเสมอ 0 ครั้งเป็นเท่าใด?",
    "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_en": "What is the average number of draws for losses over 8 and Against values under 1344?",
    "question_th": "จำนวนเสมอโดยเฉลี่ยสำหรับการขาดทุนที่มากกว่า 8 และต่อมูลค่าที่ต่ำกว่า 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_en": "What is the sum of losses for Against values over 1510?",
    "question_th": "ผลรวมของการสูญเสียสำหรับค่า Against ที่มากกว่า 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_en": "Which Genre has a Game of tony hawk's pro skater 2?",
    "question_th": "ประเภทใดที่มีเกมของ 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_en": "Which Genre has a Game of donkey kong country?",
    "question_th": "ประเภทใดที่มีเกม 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_en": "Which Genre has a Year larger than 1999, and a Game of tony hawk's pro skater 2?",
    "question_th": "ประเภทใดที่มีหนึ่งปีมากกว่าปี 1999 และเกมสเก็ตมืออาชีพของ Tony Hawk 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_en": "How much Time has a Reaction of 0.155, and an Athlete of kristof beyens, and a Rank smaller than 3?",
    "question_th": "เวลาเท่าไหร่ที่มีปฏิกิริยา 0.155 และนักกีฬาของ kristof beyens และอันดับน้อยกว่า 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_en": "Which Lane has a Time larger than 20.5, and a Nationality of trinidad and tobago?",
    "question_th": "เลนใดมีเวลามากกว่า 20.5 และมีสัญชาติตรินิแดดและโตเบโก",
    "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_en": "What is the Location of the Moulin Bertrand Mill?",
    "question_th": "ที่ตั้งของโรงสี Moulin Bertrand อยู่ที่ไหน?",
    "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_en": "What is year Built of the Moulin de Momalle Mill?",
    "question_th": "โรงสี Moulin de Momalle สร้างขึ้นในปีใด",
    "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_en": "What is the Name of the Grondzeiler Mill?",
    "question_th": "ชื่อของโรงสี Grondzeiler คืออะไร?",
    "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_en": "What's the total population when there are 5.7% Asian American and fewer than 126,965 Asian American Population?",
    "question_th": "ประชากรทั้งหมดเมื่อมีชาวอเมริกันเชื้อสายเอเชีย 5.7% และประชากรชาวอเมริกันเชื้อสายเอเชียน้อยกว่า 126,965 คนจะเป็นเท่าใด",
    "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_en": "Who was their opponent in game 4?",
    "question_th": "คู่ต่อสู้ของพวกเขาในเกมที่ 4 คือใคร?",
    "context": "CREATE TABLE table_name_77 (opponent VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_84 WHERE game = \"3\"",
    "question_en": "On what date was game 3?",
    "question_th": "เกมที่ 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_en": "What is the railway number of t 4 ii class?",
    "question_th": "หมายเลขรถไฟของคลาส t 4 ii คืออะไร?",
    "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_en": "What year was the b n2t axle arrangement, which has a quantity of 31, manufactured?",
    "question_th": "การจัดเรียงเพลา b n2t ซึ่งมีปริมาณ 31 ผลิตในปีใด",
    "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_en": "What is the time in a heat smaller than 5, in Lane 5, for Vietnam?",
    "question_th": "เวลาที่มีอากาศร้อนน้อยกว่า 5 ในเลน 5 สำหรับเวียดนามคือเท่าไร?",
    "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_en": "What is the smallest lane number of Xue Ruipeng?",
    "question_th": "Xue Ruipeng หมายเลขเลนที่เล็กที่สุดคือเท่าไร?",
    "context": "CREATE TABLE table_name_53 (lane INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT AVG(rank) FROM table_name_29 WHERE notes = \"fa\"",
    "question_en": "What is the Rank of the Rowers with FA as Notes?",
    "question_th": "อันดับของฝีพายที่มี FA เป็นหมายเหตุคืออะไร?",
    "context": "CREATE TABLE table_name_29 (rank INTEGER, notes VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_27 WHERE tie_no = \"7\"",
    "question_en": "Which away team that had a tie of 7?",
    "question_th": "ทีมเยือนทีมไหนเสมอกัน 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_en": "What was the attendance for the away team Solihull Moors?",
    "question_th": "การเข้าเล่นของทีมเยือน โซลิฮัลล์ มอร์ส เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_10 (attendance VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_9 WHERE away_team = \"southport\"",
    "question_en": "Which home team had the away team Southport?",
    "question_th": "เจ้าบ้านทีมไหนได้ทีมเยือน เซาธ์ปอร์ท?",
    "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_en": "What home team had 2 ties?",
    "question_th": "เจ้าบ้านไหนเสมอ 2 นัด?",
    "context": "CREATE TABLE table_name_86 (home_team VARCHAR, tie_no VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_36 WHERE tie_no = \"7\"",
    "question_en": "What was the score when there were 7 ties?",
    "question_th": "เมื่อเสมอกัน 7 นัด สกอร์เท่าไหร่?",
    "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_en": "What is the total when the nation is brazil (bra) and bronze is more than 2?",
    "question_th": "เมื่อชาติเป็นบราซิล (บรา) และบรอนซ์เกิน 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_en": "what is the least total when the nation is canada (can) and bronze is less than 0?",
    "question_th": "ผลรวมน้อยที่สุดเมื่อประเทศคือแคนาดา (กระป๋อง) และทองแดงน้อยกว่า 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_en": "what is bronze when the rank is 3 and the total is more than 2?",
    "question_th": "บรอนซ์คืออะไรเมื่ออันดับเป็น 3 และผลรวมมากกว่า 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_en": "What is the most bronze can be when silver is larger than 2, and the nation is germany, and gold is more than 8?",
    "question_th": "ทองแดงจะเป็นอะไรได้มากที่สุดเมื่อเงินมากกว่า 2 และประเทศคือเยอรมนี และทองคำมากกว่า 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_en": "What is the total number for a total when the nation is netherlands and silver is larger than 0?",
    "question_th": "จำนวนรวมทั้งหมดเมื่อประเทศคือเนเธอร์แลนด์และเงินมากกว่า 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_en": "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?",
    "question_th": "เมื่อผลรวมมากกว่า 1 และทองสัมฤทธิ์น้อยกว่า 3 และเงินมากกว่า 2 และทองคำมากกว่า 2 ชาติคืออะไร?",
    "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_en": "What is the average rank when the bronze is larger than 1, and silver is less than 0?",
    "question_th": "อันดับเฉลี่ยคืออะไรเมื่อทองแดงมากกว่า 1 และเงินน้อยกว่า 0?",
    "context": "CREATE TABLE table_name_52 (rank INTEGER, bronze VARCHAR, silver VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_38 WHERE opponent = \"sunderland\"",
    "question_en": "Which result has sunderland as opponent?",
    "question_th": "ผลการแข่งขันใดมีซันเดอร์แลนด์เป็นคู่ต่อสู้?",
    "context": "CREATE TABLE table_name_38 (result VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT SUM(played) FROM table_name_32 WHERE high_checkout = 135",
    "question_en": "What is the played number when the high checkout is 135?",
    "question_th": "หมายเลขที่เล่นเมื่อเช็คเอาต์สูงคือ 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_en": "What is the total number of 3-dart average when legs lost is larger than 41, and played is larger than 7?",
    "question_th": "จำนวนลูกดอกเฉลี่ย 3 ดอกโดยเฉลี่ยเมื่อเสียขาไปมากกว่า 41 และเล่นมากกว่า 7 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_1 (legs_lost VARCHAR, played VARCHAR)"
  },
  {
    "answer": "SELECT years FROM table_name_74 WHERE model = \"sl 350\"",
    "question_en": "What year was the SL 350 Model?",
    "question_th": "SL 350 รุ่นปีไหน?",
    "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_en": "Which Race has a Runners of 7 and Odds of 1/3?",
    "question_th": "การแข่งขันใดมีนักวิ่ง 7 คนและอัตราต่อรอง 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_en": "Which Class has a Jockey of michael kinane on 2:27.71?",
    "question_th": "คลาสไหนมีจ๊อกกี้ของ michael kinane ใน 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_en": "Name the highest Dist (f) with Odds of 11/4 and a Placing larger than 1?",
    "question_th": "ตั้งชื่อ Dist สูงสุด (f) ด้วย Odds 11/4 และการวางตำแหน่งที่มากกว่า 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_en": "Which Margin has a Dist (f) larger than 10, and a Race of king george vi & queen elizabeth stakes?",
    "question_th": "Margin ใดที่มี Dist (f) มากกว่า 10 และ Race of king george vi และ queen elizabeth เดิมพัน",
    "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_en": "Which Dist (f) has a Race of irish derby?",
    "question_th": "Dist (f) ใดที่มี 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_en": "What is the Attendance at Joe Louis Arena?",
    "question_th": "ผู้เข้าร่วมที่ Joe Louis Arena คืออะไร?",
    "context": "CREATE TABLE table_name_49 (attendance INTEGER, arena VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_42 WHERE score = \"4–3\" AND arena = \"nationwide arena\"",
    "question_en": "What is the Loss of the game at Nationwide Arena with a Score of 4–3?",
    "question_th": "การแพ้ของเกมที่ Nationwide Arena ด้วยสกอร์ 4–3 คืออะไร?",
    "context": "CREATE TABLE table_name_42 (loss VARCHAR, score VARCHAR, arena VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(attendance) FROM table_name_59 WHERE score = \"3–2\"",
    "question_en": "What is the Attendance of the game with a Score of 3–2?",
    "question_th": "ผู้เข้าร่วมเกมด้วยคะแนน 3–2 คืออะไร?",
    "context": "CREATE TABLE table_name_59 (attendance VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_21 WHERE date = \"march 19\"",
    "question_en": "What is the Score of the game on March 19?",
    "question_th": "สกอร์ของเกมวันที่ 19 มีนาคมเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_21 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT AVG(attendance) FROM table_name_44 WHERE record = \"37–21–12\" AND points < 86",
    "question_en": "What is the Attendance of the game with a Record of 37–21–12 and less than 86 Points?",
    "question_th": "ผู้เข้าร่วมเกมด้วยสถิติ 37–21–12 และน้อยกว่า 86 แต้มเป็นเท่าใด",
    "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_en": "Which player debuted before 1943, played for the club in 1942, played less than 12 games, and scored less than 11 goals?",
    "question_th": "นักเตะคนไหนที่เปิดตัวก่อนปี 1943 เล่นให้กับสโมสรในปี 1942 ลงเล่นน้อยกว่า 12 เกม และยิงได้น้อยกว่า 11 ประตู?",
    "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_en": "What label had the album after 1978?",
    "question_th": "อัลบั้มหลังปี 1978 มีค่ายเพลงอะไร",
    "context": "CREATE TABLE table_name_70 (label VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT title FROM table_name_56 WHERE riaa = \"gold\"",
    "question_en": "What is the title of the album that had a RIAA of gold?",
    "question_th": "อัลบั้มที่มี RIAA เป็นทองชื่ออะไร",
    "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_en": "What is the highest year for the title, \"loves lost and found\"?",
    "question_th": "ปีไหนที่ชื่อ \"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_en": "Who was the away team when Queensland Roar was the home team in the round less than 3?",
    "question_th": "ทีมเยือนคือใคร เมื่อ ควีนส์แลนด์ โรว์ เป็นเจ้าบ้านในรอบน้อยกว่า 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_en": "What is the least round for the game played at Members Equity Stadium in from of 12,581 people?",
    "question_th": "รอบที่น้อยที่สุดของเกมที่เล่นที่ Members Equity Stadium จากทั้งหมด 12,581 คนคือรอบใด?",
    "context": "CREATE TABLE table_name_50 (round INTEGER, stadium VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT previous_conference FROM table_name_69 WHERE location = \"converse\"",
    "question_en": "what is the previous conference when the location is converse?",
    "question_th": "การประชุมครั้งก่อนคืออะไรเมื่อสถานที่สนทนากัน?",
    "context": "CREATE TABLE table_name_69 (previous_conference VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_58 WHERE location = \"alexandria\"",
    "question_en": "what is the school with the location of alexandria?",
    "question_th": "โรงเรียนที่ตั้งของอเล็กซานเดรียคืออะไร?",
    "context": "CREATE TABLE table_name_58 (school VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT ihsaa_class___football___soccer FROM table_name_43 WHERE location = \"alexandria\"",
    "question_en": "what is teh ihsaa class/football/soccer when the location is alexandria?",
    "question_th": "อะไรคือคลาส/ฟุตบอล/ฟุตบอล เมื่อสถานที่คืออเล็กซานเดรีย?",
    "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_en": "What is canada's margin?",
    "question_th": "Margin ของแคนาดาคืออะไร?",
    "context": "CREATE TABLE table_name_40 (margin INTEGER, country VARCHAR)"
  },
  {
    "answer": "SELECT AVG(margin) FROM table_name_30 WHERE player = \"russ cochran\"",
    "question_en": "What is russ cochran's average margin?",
    "question_th": "อัตรากำไรขั้นต้นเฉลี่ยของ russ cochran คืออะไร",
    "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_en": "How many years have a Player of joe durant, and Earnings ($) larger than 396,000?",
    "question_th": "กี่ปีที่มีผู้เล่นของ joe durant และรายรับ ($) มากกว่า 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_en": "Which Margin has a Country of united states, and a Score of 63-70-65-69=267?",
    "question_th": "Margin ใดที่มีประเทศเป็นสหรัฐอเมริกา และคะแนน 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_en": "what is the quantity made when the class is d-2?",
    "question_th": "ปริมาณที่ทำเมื่อคลาสเป็น 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 — oooo — mogul\"",
    "question_en": "what is the year made when the manufacturer is 2-6-2 — oooo — mogul?",
    "question_th": "ปีที่ผลิตคือ 2-6-2 — oooo — 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_en": "what is the wheel arrangement when the year made is 1881?",
    "question_th": "ปีที่ผลิตคือปี 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_en": "what is the quantity made when the wheel arrangement is 2-6-0 and the class is k?",
    "question_th": "เมื่อจัดเรียงล้อเป็น 2-6-0 และคลาสเป็น 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_en": "what is the class when the quantity perserved is 0 and the quantity made is 5?",
    "question_th": "คลาสคืออะไรเมื่อปริมาณที่สงวนไว้คือ 0 และปริมาณที่ทำคือ 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_en": "What is the match number that had a result of 0:5 (0:3)?",
    "question_th": "หมายเลขคู่ที่มีผลเป็น 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_en": "Which match had more than 1,490 people in attendance to watch FCR 2001 Duisburg have a result of 0:3 (0:2)?",
    "question_th": "นัดไหนมีผู้ชมชม FCR 2001 Duisburg มากกว่า 1,490 คน ผลสกอร์ 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_en": "Which match did FCR 2001 Duisburg participate as the opponent?",
    "question_th": "การแข่งขันใดที่ FCR 2001 Duisburg เข้าร่วมในฐานะคู่ต่อสู้?",
    "context": "CREATE TABLE table_name_39 (match INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_95 WHERE date = \"july 5, 2009\"",
    "question_en": "What is the surface of the match on July 5, 2009?",
    "question_th": "พื้นผิวของการแข่งขันในวันที่ 5 กรกฎาคม 2552 เป็นอย่างไรบ้าง?",
    "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_en": "What is the date of the match on clay with score of 6-3 2-6 6-4?",
    "question_th": "แข่งขันวันที่เท่าไหร่บนดินเหนียวด้วยสกอร์ 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_en": "Who was the opponent on carpet in a final?",
    "question_th": "คู่ต่อสู้บนพรมในรอบชิงชนะเลิศคือใคร?",
    "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_en": "What is the score of the hard court Ramat Hasharon tournament?",
    "question_th": "ฮาร์ดคอร์ต รามัท ฮาชารอน แข่งขันสกอร์เท่าไหร่?",
    "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_en": "What is the score of the match on September 24, 2006?",
    "question_th": "ผลการแข่งขันวันที่ 24 กันยายน 2549 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_50 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_46 WHERE tournament = \"volos\"",
    "question_en": "What is the surface for the Volos tournament?",
    "question_th": "พื้นผิวสำหรับทัวร์นาเมนต์ Volos คืออะไร?",
    "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_en": "Who is the Winner of the Nissan Motorsport Australia Team at the Oran Park Raceway?",
    "question_th": "ใครคือผู้ชนะของทีม Nissan Motorsport Australia ที่สนามแข่งรถ Oran Park",
    "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_en": "What is the Circuit in the ATCC Round 1 Series with Winner Jim Richards?",
    "question_th": "Circuit ใน ATCC Round 1 Series กับผู้ชนะ 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_en": "What is the Team of Winner Mark Skaife in ATCC Round 7?",
    "question_th": "ทีมของผู้ชนะ Mark Skaife ใน ATCC รอบ 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_en": "What is the sum of the bronze medals of the nation with less than 0 silvers?",
    "question_th": "เหรียญทองแดงของประเทศที่ได้น้อยกว่า 0 เหรียญเงินรวมกันเป็นเท่าใด?",
    "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_en": "What is the highest amount of bronze china, which has more than 1 gold and more than 11 total, has?",
    "question_th": "เครื่องถ้วยทองแดงที่มีมากกว่า 1 เหรียญทอง และรวมกันมากกว่า 11 เหรียญทอง มีปริมาณมากที่สุดคือเท่าไร?",
    "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_en": "Wha is the average number of bronze of hungary, which has less than 1 silver?",
    "question_th": "จำนวนเหรียญทองแดงโดยเฉลี่ยของฮังการีซึ่งมีน้อยกว่า 1 เหรียญเงินคือเท่าใด",
    "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_en": "What is the size of the team that was previously from Central Indiana conference, and is in IHSSA Class 4a?",
    "question_th": "ขนาดของทีมที่ก่อนหน้านี้มาจากการประชุม Central Indiana และอยู่ใน 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_en": "What is the IHSAA class for the team located in Middlebury, IN?",
    "question_th": "ชั้นเรียน IHSAA สำหรับทีมที่ตั้งอยู่ในเมืองมิดเดิลเบอรี รัฐอินดีแอนาคืออะไร",
    "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_en": "How many total cuts were made in events with more than 0 wins and exactly 0 top-5s?",
    "question_th": "มีการตัดเฉือนทั้งหมดกี่ครั้งในอีเวนต์ที่ชนะมากกว่า 0 ครั้งและติด 5 อันดับแรก 0 ครั้งพอดี",
    "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_en": "What is the fewest wins for Thomas in events he had entered exactly 9 times?",
    "question_th": "อะไรคือชัยชนะน้อยที่สุดสำหรับโธมัสในอีเวนต์ที่เขาเข้าร่วม 9 ครั้งพอดี?",
    "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_en": "What is the total number of wins for events with under 2 top-5s, under 5 top-25s, and more than 4 events played?",
    "question_th": "จำนวนชัยชนะทั้งหมดสำหรับกิจกรรมที่มี 5 อันดับแรกต่ำกว่า 2 รายการ, 25 อันดับแรกต่ำกว่า 5 รายการ และเล่นมากกว่า 4 รายการเป็นเท่าใด",
    "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_en": "What is the average number of cuts made for events with under 4 entries and more than 0 wins?",
    "question_th": "จำนวนการตัดโดยเฉลี่ยสำหรับกิจกรรมที่เข้าร่วมน้อยกว่า 4 รายการและชนะมากกว่า 0 ครั้งคือเท่าใด",
    "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_en": "What is the average number of cuts made for events with 0 top-5s?",
    "question_th": "จำนวนการตัดโดยเฉลี่ยสำหรับกิจกรรมที่มี 0 อันดับแรกคือเท่าใด",
    "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_en": "What is the fewest number of top-25s for events with more than 13 cuts made?",
    "question_th": "จำนวนผู้เข้ารอบ 25 อันดับแรกน้อยที่สุดสำหรับกิจกรรมที่มีการตัดสิทธิ์มากกว่า 13 ครั้งคือเท่าใด",
    "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_en": "What was the record after game 51 on 1/27/1974?",
    "question_th": "บันทึกหลังเกมที่ 51 เมื่อวันที่ 27/1/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_en": "What was the score on 1/10/1974?",
    "question_th": "คะแนนเมื่อวันที่ 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_en": "What opponent played on 1/13/1974?",
    "question_th": "ฝ่ายตรงข้ามคนใดเล่นเมื่อวันที่ 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_en": "What is the total erp w of class c3, which has a frequency mhz less than 89.9?",
    "question_th": "ค่า erp w ทั้งหมดของคลาส c3 ซึ่งมีความถี่ mhz น้อยกว่า 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_en": "What is the total frequency mhz of the kgrj call sign, which has an erp w greater than 21,500?",
    "question_th": "ความถี่รวม mhz ของสัญญาณเรียกขาน kgrj ซึ่งมี erp w มากกว่า 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_en": "What is the call sign with a 222 erp w?",
    "question_th": "สัญญาณเรียกขานที่มี 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_en": "What is the average frequency mhz of the loomis, south dakota city license?",
    "question_th": "ความถี่เฉลี่ย mhz ของ loomis, ใบอนุญาตเมืองเซาท์ดาโกตาคือเท่าใด?",
    "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_en": "What is the sum of the erp w of the k222al call sign?",
    "question_th": "ผลรวมของ erp w ของสัญญาณเรียกขาน k222al เป็นเท่าไหร่?",
    "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_en": "What is the highest erp w with a 90.5 frequency mhz?",
    "question_th": "erp สูงสุดที่มีความถี่ 90.5 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_en": "What is the total number of ends after 2006 with a nationality of ita and 0 goals?",
    "question_th": "รวมจำนวนจบหลังปี 2549 ด้วยสัญชาติ อิตะ และ 0 ประตูเป็นเท่าไหร่?",
    "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 = \"€ 14m\" AND ends > 2011",
    "question_en": "What is the lowest year in since that had a transfer fee of € 14m and ended after 2011?",
    "question_th": "ปีต่ำสุดนับตั้งแต่มีค่าธรรมเนียมการโอน 14 ล้านยูโรและสิ้นสุดหลังปี 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_en": "Can you tell me the Nationality that has the Round smaller than 5, and the Player of bruce affleck?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าสัญชาติที่มีรอบน้อยกว่า 5 และผู้เล่นของบรูซ อัฟเฟล็ค?",
    "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_en": "Can you tell me the College/Junior/Club Team that has the Round of 4?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าทีมวิทยาลัย/จูเนียร์/คลับที่มีรอบ 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_en": "What is the total number of top-25s for events with 0 wins?",
    "question_th": "จำนวนผู้เข้ารอบ 25 อันดับแรกสำหรับกิจกรรมที่ชนะ 0 ครั้งเป็นจำนวนเท่าใด",
    "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_en": "What is the total number of cuts made for events played more than 3 times and under 2 top-25s?",
    "question_th": "จำนวนการตัดทั้งหมดที่เกิดขึ้นสำหรับกิจกรรมที่เล่นมากกว่า 3 ครั้งและต่ำกว่า 25 อันดับสูงสุดคือเท่าใด",
    "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_en": "What is the sum of top-10s for events with more than 0 wins?",
    "question_th": "ผลรวมของ 10 อันดับแรกสำหรับกิจกรรมที่ชนะมากกว่า 0 เป็นเท่าใด?",
    "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_en": "Which 3rd run has rank of 8?",
    "question_th": "รอบที่ 3 ไหนมีอันดับ 8?",
    "context": "CREATE TABLE table_name_55 (rank VARCHAR)"
  },
  {
    "answer": "SELECT 3 AS rd_run FROM table_name_97 WHERE rank = 1",
    "question_en": "Which 3rd run has rank of 1?",
    "question_th": "รอบที่ 3 ไหนมีอันดับ 1?",
    "context": "CREATE TABLE table_name_97 (rank VARCHAR)"
  },
  {
    "answer": "SELECT AVG(rank) FROM table_name_78 WHERE total = 16",
    "question_en": "Which average rank has a total of 16?",
    "question_th": "อันดับเฉลี่ยใดมีทั้งหมด 16 อันดับ?",
    "context": "CREATE TABLE table_name_78 (rank INTEGER, total VARCHAR)"
  },
  {
    "answer": "SELECT MIN(labour_party) FROM table_name_16 WHERE fianna_fáil > 5",
    "question_en": "What is the lowest number in the Labour Party for the Fianna Fail higher than 5?",
    "question_th": "หมายเลขต่ำสุดในพรรคแรงงานสำหรับฟิอานนา เฟลที่สูงกว่า 5 คือข้อใด",
    "context": "CREATE TABLE table_name_16 (labour_party INTEGER, fianna_fáil INTEGER)"
  },
  {
    "answer": "SELECT SUM(labour_party) FROM table_name_29 WHERE fianna_fáil = 3 AND total > 9 AND green_party > 2",
    "question_en": "How many are in the Labour Party of a Fianna Fail of 3 with a total higher than 9 and more than 2 in the Green Party?",
    "question_th": "มีกี่คนในพรรคแรงงานของฟิอานนาล้มเหลว 3 คน โดยคะแนนรวมสูงกว่า 9 และมากกว่า 2 คนในพรรคกรีน",
    "context": "CREATE TABLE table_name_29 (labour_party INTEGER, green_party VARCHAR, fianna_fáil VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT SUM(green_party) FROM table_name_41 WHERE fine_gael < 4 AND fianna_fáil < 2 AND town = \"athy\"",
    "question_en": "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?",
    "question_th": "มีกี่คนใน Green Party ที่มี Fine Gael น้อยกว่า 4 และ Fianna Fail น้อยกว่า 2 ใน Athy",
    "context": "CREATE TABLE table_name_41 (green_party INTEGER, town VARCHAR, fine_gael VARCHAR, fianna_fáil VARCHAR)"
  },
  {
    "answer": "SELECT MIN(lane) FROM table_name_55 WHERE nationality = \"brazil\" AND time < 21.15",
    "question_en": "What's Brazil's lane with a time less than 21.15?",
    "question_th": "เลนของบราซิลที่มีเวลาน้อยกว่า 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_en": "What's Russia's lane when they were ranked before 1?",
    "question_th": "รัสเซียอยู่เลนไหนเมื่ออยู่อันดับก่อน 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_en": "What's Bulgaria's lane with a time more than 21.55?",
    "question_th": "เลนใดของบัลแกเรียที่มีเวลามากกว่า 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_en": "What nation has 0 as the silver, 1 as the bronze, with 18 as the rank?",
    "question_th": "ชาติใดมี 0 เป็นเงิน 1 เป็นทองแดง มี 18 เป็นอันดับ?",
    "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_en": "How many golds have 3 as the rank, with a total greater than 7?",
    "question_th": "มีกี่เหรียญทองที่มีอันดับ 3 และมียอดรวมมากกว่า 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_en": "What average silver has belarus as the nation, with a total less than 1?",
    "question_th": "เงินโดยเฉลี่ยใดที่มีเบลารุสเป็นประเทศ โดยมีจำนวนรวมน้อยกว่า 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_en": "What average total has 0 as the gold, with 6 as the rank?",
    "question_th": "ค่าเฉลี่ยทั้งหมดมี 0 เป็นทอง และมี 6 เป็นอันดับ?",
    "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_en": "How much Rank has a Bronze of 21, and a Silver larger than 10?",
    "question_th": "ระดับเท่าไรที่มีเหรียญทองแดงเท่ากับ 21 และเหรียญเงินมากกว่า 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_en": "Which Gold has a Nation of sri lanka, and a Silver smaller than 10?",
    "question_th": "ทองคำใดมีประเทศศรีลังกา และเงินมีจำนวนน้อยกว่า 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_en": "How much Silver has a Rank of 7?",
    "question_th": "เงินมีอันดับ 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_en": "Which Gold has a Rank smaller than 5, and a Bronze of 20?",
    "question_th": "ทองคำใดที่มีอันดับน้อยกว่า 5 และทองแดงเท่ากับ 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_en": "Which Silver has a Rank of 6, and a Bronze smaller than 3?",
    "question_th": "เงินใดมีอันดับ 6 และทองแดงน้อยกว่า 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_en": "What's the total of Sweden (SWE) having less than 1 silver?",
    "question_th": "สวีเดน (SWE) ทั้งหมดมีเงินน้อยกว่า 1 เหรียญเป็นเท่าใด",
    "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_en": "What's the total number of bronze medals for Sweden (SWE) having less than 1 gold and silver?",
    "question_th": "เหรียญทองแดงของสวีเดน (SWE) ที่ได้น้อยกว่า 1 เหรียญทองและเงินมีทั้งหมดกี่เหรียญ?",
    "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_en": "What's the total when the gold is less than 0 and silver is less than 1?",
    "question_th": "ผลรวมเมื่อทองคำน้อยกว่า 0 และเงินน้อยกว่า 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_en": "What's the total of rank 8 when Silver medals are 0 and gold is more than 1?",
    "question_th": "อันดับที่ 8 ทั้งหมดเมื่อเหรียญเงินเป็น 0 และทองมากกว่า 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_en": "What are the most bronze medals in a rank more than 1 with a total larger than 3?",
    "question_th": "อะไรคือเหรียญทองแดงมากที่สุดในอันดับมากกว่า 1 โดยมีจำนวนรวมมากกว่า 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_en": "What's the rank of Turkey (TUR) with a total more than 2?",
    "question_th": "ตุรกี (TUR) มีอันดับอะไรมากกว่า 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_en": "What opponent has a record of 86-62?",
    "question_th": "คู่แข่งคนไหนมีสถิติ 86-62?",
    "context": "CREATE TABLE table_name_73 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_62 WHERE date = \"september 16\"",
    "question_en": "What's the loss for September 16?",
    "question_th": "ขาดทุนวันที่ 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_en": "What is the score from September 15 that has the Indians as the opponent?",
    "question_th": "เมื่อวันที่ 15 กันยายน ที่ผ่านมา มีอินเดียนแดงเป็นคู่ต่อสู้เป็นอย่างไรบ้าง?",
    "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_en": "What opponent has a loss of McCaskill (9-11)?",
    "question_th": "คู่ต่อสู้คนไหนที่แพ้แม็คคาสคิล (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_en": "Which engine type was used in the model 2.3 v5?",
    "question_th": "เครื่องยนต์ประเภทใดที่ใช้ในรุ่น 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_en": "Which race has a position of 3rd and a speed of 123.628?",
    "question_th": "เผ่าพันธุ์ใดได้อันดับที่ 3 ด้วยความเร็ว 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_en": "Which race has a replica of DNF?",
    "question_th": "เผ่าพันธุ์ใดมีการจำลอง DNF?",
    "context": "CREATE TABLE table_name_72 (race VARCHAR, replica VARCHAR)"
  },
  {
    "answer": "SELECT race FROM table_name_16 WHERE replica = \"dnf\"",
    "question_en": "Which race has a replica of DNF?",
    "question_th": "เผ่าพันธุ์ใดมีการจำลอง DNF?",
    "context": "CREATE TABLE table_name_16 (race VARCHAR, replica VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_35 WHERE speed = \"123.220\"",
    "question_en": "Which position has a speed of 123.220?",
    "question_th": "ตำแหน่งใดมีความเร็ว 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_en": "Which position has a time of 1:45:53:00?",
    "question_th": "ตำแหน่งใดมีเวลา 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_en": "Which race has a position of 3rd and a speed of 126.452?",
    "question_th": "เผ่าพันธุ์ใดได้อันดับที่ 3 ด้วยความเร็ว 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_en": "Which Scrapped/Sold has a Name as rebuilt of trostan?",
    "question_th": "ของเสีย/ขายใดมีชื่อเป็นสร้างใหม่ของ 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_en": "Which Rebuilt has a Name as rebuilt of binevanagh?",
    "question_th": "ซึ่งสร้างขึ้นใหม่มีชื่อว่า 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_en": "Which Rebuilt has a Builder of derby, and a Name as rebuilt of ben madigan?",
    "question_th": "การสร้างใหม่ครั้งใดมีผู้สร้างดาร์บี้และมีชื่อเป็นเบน มาดิแกนที่สร้างขึ้นใหม่",
    "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_en": "Which Scrapped/Sold has a Builder of derby, and a Name as rebuilt of ben madigan?",
    "question_th": "Scrapped/Sold ใดที่มีผู้สร้างดาร์บี้และมีชื่อเป็น 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_en": "What is the to par number of the person who won in 2003?",
    "question_th": "หมายเลขพาร์ของบุคคลที่ชนะในปี 2546 คือเท่าใด",
    "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_en": "In which year(s) did the person who has a total of 291 win?",
    "question_th": "ผู้ที่มีคะแนนรวม 291 ชนะในปีใด",
    "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_en": "In which year(s) did the person with a total greater than 286 win?",
    "question_th": "ผู้ที่มีคะแนนรวมมากกว่า 286 ชนะในปีใด",
    "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_en": "What is Davis Love III's total?",
    "question_th": "Davis Love III มียอดรวมเท่าไร?",
    "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_en": "In what place did Phil Mickelson finish with a total of 282?",
    "question_th": "ฟิล มิคเคลสัน จบอันดับไหนด้วยสกอร์รวม 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_en": "What's the source of wealth of the person worth $17 billion?",
    "question_th": "แหล่งที่มาของความมั่งคั่งของบุคคลที่มีมูลค่า 17 พันล้านดอลลาร์คืออะไร?",
    "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_en": "What final date had 16 housemates?",
    "question_th": "วันสุดท้ายมีเพื่อนร่วมบ้าน 16 คน?",
    "context": "CREATE TABLE table_name_75 (final_date VARCHAR, housemates VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_92 WHERE date = \"april 24\"",
    "question_en": "What scored is recorded on April 24?",
    "question_th": "คะแนนที่บันทึกไว้เมื่อวันที่ 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_en": "In 1970, what entrant had a cosworth v8 engine?",
    "question_th": "ในปี 1970 ผู้เข้าแข่งขันคนใดมีเครื่องยนต์ cosworth v8",
    "context": "CREATE TABLE table_name_82 (entrant VARCHAR, engine VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT entrant FROM table_name_3 WHERE year = 1971",
    "question_en": "Who was the entrant in 1971?",
    "question_th": "ใครคือผู้เข้าแข่งขันในปี 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_en": "What was the total amount of points in 1978 with a Chassis of arrows fa1?",
    "question_th": "จำนวนคะแนนรวมในปี 1978 กับแชสซีของลูกศร 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_en": "What venue hosted the stan fox stakes?",
    "question_th": "สถานที่ใดจัดการแข่งขันสแตน ฟ็อกซ์?",
    "context": "CREATE TABLE table_name_72 (venue VARCHAR, race VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_82 WHERE loss = \"moore (0-1)\"",
    "question_en": "When was the game with the loss of Moore (0-1)?",
    "question_th": "เกมที่แพ้มัวร์ (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_en": "What is the earliest year that Assists were less than 13 and minutes were under 91?",
    "question_th": "ปีแรกสุดที่แอสซิสต์ทำได้น้อยกว่า 13 นาทีและนาทีที่ต่ำกว่า 91 คือปีใด?",
    "context": "CREATE TABLE table_name_47 (season INTEGER, assists VARCHAR, minutes VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_22 WHERE result = \"draw\"",
    "question_en": "Which venues resulted in a draw?",
    "question_th": "สนามไหนที่มีผลเสมอกัน?",
    "context": "CREATE TABLE table_name_22 (venue VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_50 WHERE venue = \"sabina park\"",
    "question_en": "What dates had matches at the venue Sabina Park?",
    "question_th": "ที่สนามซาบีน่า พาร์ค มีแมตช์วันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_50 (date VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_32 WHERE venue = \"bourda\"",
    "question_en": "What dates contained matches at the venue Bourda?",
    "question_th": "วันที่จัดการแข่งขันที่สนาม 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_en": "How many cuts did he make in the tournament with 3 top 25s and under 13 events?",
    "question_th": "เขาตัดไปกี่ครั้งในทัวร์นาเมนต์โดยมี 3 รายการ 25 อันดับแรกและต่ำกว่า 13 รายการ",
    "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_en": "How many cuts made in the tournament he played 13 times?",
    "question_th": "เขาตัดไปกี่ครั้งในทัวร์นาเมนต์ที่เขาเล่น 13 ครั้ง?",
    "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_en": "How many cuts did he make at the PGA championship in 3 events?",
    "question_th": "เขาตัดสิทธิ์ในการแข่งขัน PGA Championship กี่ครั้งใน 3 รายการ?",
    "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_en": "What is the highest number of points scored by minardi team usa in more than 13 laps?",
    "question_th": "จำนวนคะแนนสูงสุดของทีม Minardi USA ในรอบมากกว่า 13 รอบคือเท่าไร?",
    "context": "CREATE TABLE table_name_2 (points INTEGER, laps VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT AVG(grid) FROM table_name_88 WHERE driver = \"mario domínguez\"",
    "question_en": "What is mario domínguez's average Grid?",
    "question_th": "ตารางเฉลี่ยของ Mario Domínguez คืออะไร?",
    "context": "CREATE TABLE table_name_88 (grid INTEGER, driver VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_11 WHERE date = \"september 19\"",
    "question_en": "Which opponent plays on September 19?",
    "question_th": "คู่ต่อสู้คนไหนเล่นในวันที่ 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_en": "Name the call sign with frequency of 89.5",
    "question_th": "ตั้งชื่อสัญญาณเรียกขานด้วยความถี่ 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_en": "Name the sum of frequency will call sign of k259aw",
    "question_th": "ชื่อผลรวมความถี่จะเรียกสัญญาณของ 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_en": "What's the total failures among rockets that had more than 3 successes, type ariane 5 and more than 0 partial failures?",
    "question_th": "ความล้มเหลวโดยรวมของจรวดที่ประสบความสำเร็จมากกว่า 3 ครั้ง ประเภท Ariane 5 และความล้มเหลวบางส่วนมากกว่า 0 คืออะไร",
    "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_en": "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?",
    "question_th": "จำนวนความสำเร็จของจรวดที่มีการยิงมากกว่า 3 ครั้งซึ่งตั้งอยู่ในรัสเซีย เป็นประเภทโซยุซ และจรวดประเภทโซยุซ-ยู เป็นเท่าใด",
    "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_en": "What dates did the episodes air in the United States?",
    "question_th": "ตอนไหนที่ออกอากาศในสหรัฐอเมริกา?",
    "context": "CREATE TABLE table_name_6 (dates_aired VARCHAR, region_country VARCHAR)"
  },
  {
    "answer": "SELECT starring FROM table_name_61 WHERE network = \"vara\"",
    "question_en": "Who was the star for the Vara network?",
    "question_th": "ใครคือดาวเด่นของเครือข่ายวารา?",
    "context": "CREATE TABLE table_name_61 (starring VARCHAR, network VARCHAR)"
  },
  {
    "answer": "SELECT local_name FROM table_name_28 WHERE dates_aired = \"1981\"",
    "question_en": "What is the local name for the episodes that aired in 1981?",
    "question_th": "ชื่อท้องถิ่นของตอนที่ออกอากาศในปี 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–1992\"",
    "question_en": "What is the name of the network in the United Kingdom which aired in 1985–1992?",
    "question_th": "เครือข่ายในสหราชอาณาจักรซึ่งออกอากาศในปี พ.ศ. 2528-2535 ชื่ออะไร",
    "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_en": "How many total appearances (league only) have a name of gavin dykes?",
    "question_th": "ลงเล่นทั้งหมดกี่นัด (ในลีกเท่านั้น) ที่มีชื่อ กาวิน ไดค์ส?",
    "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_en": "What nationality has a ranking less than 7 with tony stenson as the name?",
    "question_th": "สัญชาติใดมีอันดับต่ำกว่า 7 โดยมีโทนี่ สเตนสันเป็นชื่อ?",
    "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_en": "What is the lowest score that Bob Tway get when he placed t5?",
    "question_th": "คะแนนต่ำสุดที่ Bob Tway ได้รับเมื่อเขาได้อันดับ 5 คือเท่าไร?",
    "context": "CREATE TABLE table_name_70 (score INTEGER, place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_83 WHERE date = \"may 31\"",
    "question_en": "What is the record for May 31?",
    "question_th": "บันทึกประจำวันที่ 31 พฤษภาคม คืออะไร?",
    "context": "CREATE TABLE table_name_83 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_94 WHERE date = \"may 31\"",
    "question_en": "Who lost on May 31?",
    "question_th": "ใครแพ้วันที่ 31 พ.ค.?",
    "context": "CREATE TABLE table_name_94 (loss VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(attendance) FROM table_name_83 WHERE record = \"25-24\"",
    "question_en": "For record 25-24, what is the sum of attendance?",
    "question_th": "สำหรับบันทึกที่ 25-24 ผลรวมของการเข้าร่วมเป็นเท่าใด",
    "context": "CREATE TABLE table_name_83 (attendance VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_64 WHERE record = \"27-25\"",
    "question_en": "When was the record 27-25?",
    "question_th": "สถิติ 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_en": "Which engine is responsible for the USAC Championship Car?",
    "question_th": "เครื่องยนต์ใดที่รับผิดชอบรถ USAC Championship?",
    "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_en": "What was the 2nd leg score between Patronage Sainte-Anne and Asante Kotoko?",
    "question_th": "สกอร์เลกที่ 2 ระหว่าง Patronage Sainte-Anne และ Asante Kotoko คือเท่าไร?",
    "context": "CREATE TABLE table_name_27 (team_1 VARCHAR)"
  },
  {
    "answer": "SELECT team_1 FROM table_name_61 WHERE agg = \"3-4\"",
    "question_en": "Which teams had an aggregate score of 3-4?",
    "question_th": "ทีมไหนมีสกอร์รวม 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_en": "What is the lowest facility ID that's in Beckley?",
    "question_th": "รหัสสิ่งอำนวยความสะดวกต่ำสุดที่อยู่ใน 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_en": "What city has the A Class licence?",
    "question_th": "เมืองใดมีใบอนุญาต A Class?",
    "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_en": "on august 16, 1963, what is the velocity?",
    "question_th": "วันที่ 16 ส.ค. 63 มีความเร็วเท่าใด?",
    "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_en": "What is the highest game number that had a time of 2:44?",
    "question_th": "หมายเลขเกมสูงสุดที่มีเวลา 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_en": "Name the highest 3rd place for nation of perak fa",
    "question_th": "ขึ้นอันดับ 3 สูงสุดของประเทศเปรัคฟ้า",
    "context": "CREATE TABLE table_name_65 (nation VARCHAR)"
  },
  {
    "answer": "SELECT AVG(gold) FROM table_name_53 WHERE total > 32 AND silver > 128",
    "question_en": "What is the gold medal count for the country with a total greater than 32 and more than 128 silvers?",
    "question_th": "ประเทศที่ได้เหรียญทองรวมมากกว่า 32 เหรียญเงิน และมากกว่า 128 เหรียญเงิน มีจำนวนเท่าใด",
    "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_en": "What is the maximum number of silvers for a country with fewer than 12 golds and a total less than 8?",
    "question_th": "จำนวนเหรียญเงินสูงสุดสำหรับประเทศที่มีเหรียญทองน้อยกว่า 12 เหรียญและทั้งหมดน้อยกว่า 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_en": "What is the total number of wins for riders with fewer than 56 races and more than 0 titles?",
    "question_th": "จำนวนชัยชนะทั้งหมดสำหรับนักแข่งที่มีการแข่งขันน้อยกว่า 56 รายการและมากกว่า 0 รายการคือเท่าใด",
    "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_en": "Name the tournament for top-5 more thn 1 and top-25 of 13 with wins of 3",
    "question_th": "ตั้งชื่อทัวร์นาเมนต์สำหรับ 5 อันดับแรกมากกว่า 1 และ 25 อันดับแรกจาก 13 อันดับแรกด้วยการชนะ 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_en": "Name the average cuts for top-25 more than 13 and top-5 less than 11",
    "question_th": "ตั้งชื่อการตัดโดยเฉลี่ยสำหรับ 25 อันดับแรกมากกว่า 13 และ 5 อันดับแรกน้อยกว่า 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_en": "Name the total number of wins with top-25 of 10 and events less than 26",
    "question_th": "ตั้งชื่อจำนวนชัยชนะทั้งหมดด้วย 25 อันดับแรกจาก 10 อันดับแรกและกิจกรรมที่น้อยกว่า 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_en": "Name the sum of top-25 for pga championship and top-5 less than 1",
    "question_th": "ตั้งชื่อผลรวมของ 25 อันดับแรกสำหรับการแข่งขันพีจีเอและ 5 อันดับแรกน้อยกว่า 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_en": "What stage has a start of saint-girons in 1988?",
    "question_th": "Saint-Girons เริ่มต้นในปี 1988 ในระยะใด?",
    "context": "CREATE TABLE table_name_39 (stage VARCHAR, start VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT category FROM table_name_14 WHERE year = 1964",
    "question_en": "What category was in 1964?",
    "question_th": "ในปี 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_en": "An artist of the Beatles with an issue date(s) of 19 September has what as the listed weeks on top?",
    "question_th": "ศิลปินแห่งวงเดอะบีเทิลส์ซึ่งมีกำหนดออกฉบับวันที่ 19 กันยายน มีสัปดาห์ใดอยู่ด้านบนสุด?",
    "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_en": "With an issue date(s) of 12 September, what is in the column for Weeks on Top?",
    "question_th": "เนื่องจากวันที่ออกในวันที่ 12 กันยายน คอลัมน์ 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_en": "What Premier League Manager has an Adidas sponsor and a Newcastle United club?",
    "question_th": "ผู้จัดการทีมพรีเมียร์ลีกคนใดมีผู้สนับสนุน Adidas และสโมสร Newcastle United?",
    "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_en": "Which Manchester United captain is sponsored by Nike?",
    "question_th": "กัปตันทีมแมนเชสเตอร์ ยูไนเต็ด คนไหนที่ได้รับการสนับสนุนจาก 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_en": "Who is Dean Whitehead's manager?",
    "question_th": "ผู้จัดการของดีน ไวท์เฮดคือใคร?",
    "context": "CREATE TABLE table_name_92 (manager VARCHAR, captain VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_name_3 WHERE captain = \"ledley king\"",
    "question_en": "In which club is Ledley King a captain?",
    "question_th": "Ledley King เป็นกัปตันทีมใด?",
    "context": "CREATE TABLE table_name_3 (club VARCHAR, captain VARCHAR)"
  },
  {
    "answer": "SELECT captain FROM table_name_15 WHERE club = \"middlesbrough\"",
    "question_en": "Who is the captain of Middlesbrough?",
    "question_th": "ใครคือกัปตันทีมมิดเดิ้ลสโบรช์?",
    "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_en": "Name the city of license with resolution of sd 480i and official website of telemundo.com",
    "question_th": "ตั้งชื่อเมืองที่ได้รับอนุญาตด้วยความละเอียด sd 480i และเว็บไซต์อย่างเป็นทางการของ 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_en": "Name the dish for resolution of sd 480i and network of bvb",
    "question_th": "ตั้งชื่อจานสำหรับความละเอียด sd 480i และเครือข่ายของ bvb",
    "context": "CREATE TABLE table_name_8 (dish VARCHAR, resolution VARCHAR, network VARCHAR)"
  },
  {
    "answer": "SELECT resolution FROM table_name_36 WHERE dish = \"5270\"",
    "question_en": "Name the resolution for dish of 5270",
    "question_th": "ตั้งชื่อความละเอียดของจาน 5270",
    "context": "CREATE TABLE table_name_36 (resolution VARCHAR, dish VARCHAR)"
  },
  {
    "answer": "SELECT official_website FROM table_name_18 WHERE dish = \"•\" AND callsign = \"kvtv\"",
    "question_en": "Name the official website which has dish of • and callsign of kvtv",
    "question_th": "ตั้งชื่อเว็บไซต์อย่างเป็นทางการซึ่งมีจานของ • และสัญญาณเรียกขานของ 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_en": "Name the resolution for ketftv.com and callsign of kldo-dt2",
    "question_th": "ตั้งชื่อความละเอียดสำหรับ ketftv.com และสัญญาณเรียกของ 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_en": "Name the resolution with dish of 8126",
    "question_th": "ตั้งชื่อมติด้วยจาน 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_en": "What are the highest points for the team of marlboro brm with brm p180 as the chassis?",
    "question_th": "แต้มสูงสุดของทีม marlboro brm ที่มี brm p180 เป็นแชสซีคืออะไร?",
    "context": "CREATE TABLE table_name_43 (points INTEGER, team VARCHAR, chassis VARCHAR)"
  },
  {
    "answer": "SELECT chassis FROM table_name_89 WHERE team = \"marlboro brm\"",
    "question_en": "Which chassis has marlboro brm as the team?",
    "question_th": "แชสซีไหนมี marlboro brm เป็นทีม?",
    "context": "CREATE TABLE table_name_89 (chassis VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT start FROM table_name_83 WHERE rank = \"12\"",
    "question_en": "What place did Jimmy Reece start from when he ranked 12?",
    "question_th": "Jimmy Reece เริ่มต้นจากตำแหน่งใดเมื่อเขาอยู่ในอันดับที่ 12?",
    "context": "CREATE TABLE table_name_83 (start VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_29 WHERE year = \"1957\"",
    "question_en": "What place did Jimmy Reece finish in 1957?",
    "question_th": "Jimmy Reece จบอันดับไหนในปี 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_en": "what is the Sydney that has Adelaide, Gold Coast, Melbourne, and Auckland are all yes?",
    "question_th": "ซิดนีย์ที่มีแอดิเลด โกลด์โคสต์ เมลเบิร์น และโอ๊คแลนด์มีอะไรบ้างคะ?",
    "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_en": "What is The Melbourne with a No- Gold Coast",
    "question_th": "เมลเบิร์นที่ไม่มีโกลด์โคสต์คืออะไร",
    "context": "CREATE TABLE table_name_67 (melbourne VARCHAR, gold_coast VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_22 WHERE votes > 2 OFFSET 211",
    "question_en": "What is the rank of the candidate with more than 2,211 votes?",
    "question_th": "ผู้สมัครที่มีคะแนนเสียงมากกว่า 2,211 เสียง มีอันดับที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_22 (rank VARCHAR, votes INTEGER)"
  },
  {
    "answer": "SELECT since FROM table_name_76 WHERE transfer_fee = \"£ 75k\"",
    "question_en": "What the since year of the player with a transfer fee of £ 75k?",
    "question_th": "ตั้งแต่ปีของผู้เล่นที่มีค่าธรรมเนียมการโอน 75,000 ปอนด์?",
    "context": "CREATE TABLE table_name_76 (since VARCHAR, transfer_fee VARCHAR)"
  },
  {
    "answer": "SELECT since FROM table_name_24 WHERE goals > 3 AND transfer_fee = \"£400k\"",
    "question_en": "What is the since year for the player with more than 3 goals and a transfer fee of £400k?",
    "question_th": "ตั้งแต่ปีใดสำหรับผู้เล่นที่ทำมากกว่า 3 ประตูและค่าธรรมเนียมการโอน 400,000 ปอนด์?",
    "context": "CREATE TABLE table_name_24 (since VARCHAR, goals VARCHAR, transfer_fee VARCHAR)"
  },
  {
    "answer": "SELECT nat FROM table_name_99 WHERE transfer_fee = \"£400k\"",
    "question_en": "What is the nationality of the player with a transfer fee of £400k?",
    "question_th": "นักเตะสัญชาติอะไรที่มีค่าตัว 400,000 ปอนด์?",
    "context": "CREATE TABLE table_name_99 (nat VARCHAR, transfer_fee VARCHAR)"
  },
  {
    "answer": "SELECT AVG(goals) FROM table_name_46 WHERE name = \"sawyer\"",
    "question_en": "What is the average goals Sawyer has?",
    "question_th": "ซอว์เยอร์มีเป้าหมายโดยเฉลี่ยเท่าไร?",
    "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_en": "What were the goal conceded that had a lost greater than 8 and more than 17 points?",
    "question_th": "เสียประตูไหนมากกว่า 8 และมากกว่า 17 แต้ม?",
    "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_en": "For Once Municipal, what were the goals scored that had less than 27 points and greater than place 1?",
    "question_th": "สำหรับวันซ์ มูนิซิเพิล ประตูที่ทำได้น้อยกว่า 27 แต้มและมากกว่าอันดับ 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_en": "How many points were in a game that had a lost of 5, greater than place 2, and 27 goals conceded?",
    "question_th": "มีกี่แต้มในเกมที่แพ้ 5 มากกว่าอันดับ 2 และเสียไป 27 ประตู",
    "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_en": "What is the lowest amount of goals scored that has more than 19 goal conceded and played less than 18?",
    "question_th": "จำนวนประตูต่ำสุดที่ทำได้ซึ่งเสียมากกว่า 19 ประตูและเล่นน้อยกว่า 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_en": "What are the number of goals conceded that has a played greater than 18?",
    "question_th": "จำนวนประตูที่เสียไปและเล่นมากกว่า 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_en": "What's the place that Once Municipal has a lost greater than 3?",
    "question_th": "ไหนล่ะที่ Once Municipal แพ้มากกว่า 3?",
    "context": "CREATE TABLE table_name_81 (place INTEGER, team VARCHAR, lost VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_42 WHERE year > 2007",
    "question_en": "Give the Finish for years after 2007.",
    "question_th": "ให้ Finish เป็นเวลาหลายปีหลังจากปี 2007",
    "context": "CREATE TABLE table_name_42 (finish VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT finish FROM table_name_44 WHERE stage > 15",
    "question_en": "Give the Finish for a Stage that is larger than 15",
    "question_th": "มอบชัยให้กับด่านที่มีขนาดใหญ่กว่า 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_en": "Name the start of an event in Catagory 2 of the year 1947.",
    "question_th": "ตั้งชื่อการเริ่มต้นเหตุการณ์ในหมวดหมู่ 2 ของปี 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_en": "What is the nationality of the ship when the principle victims are civilians?",
    "question_th": "เรือลำนั้นมีสัญชาติอะไร ในเมื่อเหยื่อหลักเป็นพลเรือน?",
    "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_en": "what is the name of the battleship with the battle listed on May 13, 1915?",
    "question_th": "เรือรบประจัญบานที่มีการรบในรายการเมื่อวันที่ 13 พฤษภาคม พ.ศ. 2458 ชื่ออะไร?",
    "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_en": "In what year 2000 tournment did Angeles Montolio have a career win-loss record of 2-4?",
    "question_th": "ในการแข่งขันปี 2000 ปีใดที่ Angeles Montolio มีสถิติชนะ-แพ้ 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_en": "Which career win-loss record has a 1r in 2002, a 2r in 2000 and a 2r in 2001?",
    "question_th": "สถิติการแพ้-ชนะในอาชีพใดที่มี 1r ในปี 2545, 2r ในปี 2543 และ 2r ในปี 2544",
    "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_en": "What is the title of the single with the peak position of 10 and weeks on chart is less than 19?",
    "question_th": "ซิงเกิลที่มีอันดับสูงสุดที่ 10 และสัปดาห์บนชาร์ตน้อยกว่า 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_en": "what is the weeks on chart for the single from france?",
    "question_th": "ซิงเกิลจากฝรั่งเศสอยู่บนชาร์ตสัปดาห์ไหน?",
    "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_en": "what is the country with the album best of and weeks on chart is less than 5?",
    "question_th": "ประเทศใดที่มีอัลบั้มดีที่สุดและสัปดาห์บนชาร์ตน้อยกว่า 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_en": "What is the title of the single with the peak position of 10 and from France?",
    "question_th": "ซิงเกิลที่มีอันดับสูงสุด 10 และจากฝรั่งเศสชื่ออะไร",
    "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_en": "what is the most weeks on chart when the peak position is less than 5 and from Sweden?",
    "question_th": "สัปดาห์ใดมากที่สุดในแผนภูมิเมื่อตำแหน่งสูงสุดน้อยกว่า 5 และมาจากสวีเดน",
    "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_en": "Name the total number of golds when total is 1 and silver is 1",
    "question_th": "ตั้งชื่อจำนวนทองคำทั้งหมดเมื่อรวมเป็น 1 และเงินคือ 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_en": "Name the total number of ranks when total is less than 1",
    "question_th": "ตั้งชื่อจำนวนอันดับทั้งหมดเมื่อผลรวมน้อยกว่า 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_en": "Harry l Stephen rides a Norton machine on what date?",
    "question_th": "Harry l Stephen ขี่เครื่อง Norton วันไหน?",
    "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_en": "What machine did Keith T. Gawler ride?",
    "question_th": "Keith T. Gawler ขี่รถอะไร?",
    "context": "CREATE TABLE table_name_76 (machine VARCHAR, rider VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_3 WHERE machine = \"249cc yamaha\"",
    "question_en": "Where was the 249cc Yamaha?",
    "question_th": "Yamaha 249cc อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_3 (place VARCHAR, machine VARCHAR)"
  },
  {
    "answer": "SELECT machine FROM table_name_2 WHERE rider = \"kenneth e. herbert\"",
    "question_en": "What machine did Kenneth E. Herbert ride?",
    "question_th": "Kenneth E. Herbert ขี่รถอะไร",
    "context": "CREATE TABLE table_name_2 (machine VARCHAR, rider VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_56 WHERE rider = \"rob vine\"",
    "question_en": "What event was Rob Vine riding?",
    "question_th": "Rob Vine ขี่เหตุการณ์อะไร?",
    "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_en": "How long is the XXX track used by the Minnesota Vikings?",
    "question_th": "Minnesota Vikings ใช้แทร็ก XXX นานแค่ไหน",
    "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_en": "What teams used a track 3:29 long?",
    "question_th": "ทีมไหนใช้แทร็กยาว 3:29?",
    "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_en": "Who is the artist of the Seattle Seahawks track?",
    "question_th": "ศิลปินของเพลง Seattle Seahawks คือใคร?",
    "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_en": "Location of ebbets field, and a Time of 2:56, and a Game larger than 6 has what sum of attendance?",
    "question_th": "ตำแหน่งของสนาม ebbets และเวลา 2:56 และเกมที่ใหญ่กว่า 6 จะมีผลรวมของผู้เข้าร่วมหรือไม่",
    "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_en": "The game of 6 has what lowest attendance?",
    "question_th": "เกมที่ 6 มีผู้เข้าชมน้อยที่สุด?",
    "context": "CREATE TABLE table_name_47 (attendance INTEGER, game VARCHAR)"
  },
  {
    "answer": "SELECT AVG(game) FROM table_name_47 WHERE date = \"october 1\"",
    "question_en": "Date of October 1 has what average game?",
    "question_th": "วันที่ 1 ตุลาคม มีเกมเฉลี่ยเท่าไหร่?",
    "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_en": "yankee stadium (i), and a Time of 3:00 has what attendance for this location?",
    "question_th": "สนามกีฬาแยงกี้ (i) และเวลา 3.00 น. มีผู้เข้าร่วมเท่าใดสำหรับสถานที่นี้?",
    "context": "CREATE TABLE table_name_56 (attendance VARCHAR, location VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(round) FROM table_name_52 WHERE college = \"lsu\"",
    "question_en": "College of lsu has how many rounds?",
    "question_th": "วิทยาลัยมสล.มีกี่รอบ?",
    "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_en": "Pick # of 25, and an Overall of 207 has what name?",
    "question_th": "เลือก # จาก 25 และผลรวม 207 มีชื่ออะไร",
    "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_en": "Round smaller than 7, and an Overall of 129 is what college?",
    "question_th": "รอบที่น้อยกว่า 7 และคะแนนรวม 129 คือวิทยาลัยอะไร?",
    "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_en": "Round larger than 6, and a Pick # smaller than 25, and a College of southern Illinois has what position?",
    "question_th": "ปัดเศษที่ใหญ่กว่า 6 และเลือก # น้อยกว่า 25 และวิทยาลัยเซาเทิร์นอิลลินอยส์มีตำแหน่งอะไร",
    "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_en": "Which US release has 704 pages?",
    "question_th": "รุ่นใดของสหรัฐอเมริกามี 704 หน้า",
    "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_en": "Which audio has a Title of a storm of swords?",
    "question_th": "เสียงใดมีชื่อพายุแห่งดาบ",
    "context": "CREATE TABLE table_name_21 (audio VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_56 WHERE us_release = \"august 1996\"",
    "question_en": "Which title has a US release of august 1996?",
    "question_th": "ชื่อใดที่ออกฉายในสหรัฐอเมริกาในเดือนสิงหาคม พ.ศ. 2539",
    "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_en": "How many pages does a dream of spring have?",
    "question_th": "ความฝันในฤดูใบไม้ผลิมีกี่หน้า?",
    "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_en": "Name the result for kingdome game site and opponent of denver broncos",
    "question_th": "ตั้งชื่อผลลัพธ์สำหรับเว็บไซต์เกม Kingdome และคู่ต่อสู้ของ 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_en": "Which College/junior/club team has a Pick # of 1?",
    "question_th": "ทีมวิทยาลัย/จูเนียร์/สโมสรใดที่มีตัวเลือก # จาก 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_en": "Which Pick # has an NHL team of detroit red wings?",
    "question_th": "Pick # ใดที่มีทีมปีกสีแดงดีทรอยต์ของ NHL?",
    "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_en": "Which player has a Position of defence, and a Pick # of 6?",
    "question_th": "ผู้เล่นคนใดมีตำแหน่งป้องกัน และเลือก # จาก 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_en": "Which NHL team has a Player of steve durbano?",
    "question_th": "ทีม NHL ใดมีผู้เล่นของ 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_en": "What is the largest money for a t4 place, for Tiger Woods?",
    "question_th": "เงินที่ใหญ่ที่สุดสำหรับอันดับ 4 สำหรับ 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_en": "How many goals against have 58 points?",
    "question_th": "เสียประตูไปกี่ประตูมี 58 แต้ม?",
    "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_en": "For majors with 8 events played and more than 1 made cut, what is the most top-10s recorded?",
    "question_th": "สำหรับรายการหลักที่มีการแข่งขัน 8 รายการและมีการตัดมากกว่า 1 รายการ 10 อันดับแรกที่บันทึกไว้มากที่สุดคือรายการใด",
    "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_en": "For more than 3 events in the PGA Championship, what is the fewest number of wins?",
    "question_th": "เกินกว่า 3 รายการใน PGA Championship ชนะน้อยที่สุดคือเท่าใด",
    "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_en": "For events with under 3 times played and fewer than 1 cut made, what is the total number of top-10 finishes?",
    "question_th": "สำหรับอีเวนต์ที่มีการเล่นต่ำกว่า 3 ครั้งและตัดน้อยกว่า 1 ครั้ง จำนวนผู้เข้าเส้นชัย 10 อันดับแรกทั้งหมดคือเท่าใด",
    "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_en": "For events with values of exactly 1, and 0 cuts made, what is the fewest number of top-10s?",
    "question_th": "สำหรับกิจกรรมที่มีค่า 1 พอดีและมีการตัด 0 ครั้ง จำนวน 10 อันดับแรกน้อยที่สุดคือเท่าใด",
    "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_en": "What is the tyres with a year earlier than 1961 for a climax l4 engine?",
    "question_th": "ยางชนิดใดที่ปีก่อนปี 1961 สำหรับเครื่องยนต์ climax l4?",
    "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_en": "What company built the chassis for a year later than 1959 and a climax l4 engine?",
    "question_th": "บริษัทใดสร้างแชสซีนี้หลังจากปี 1959 และเครื่องยนต์ L4 ถึงจุดไคลแม็กซ์ในหนึ่งปีหลังจากปี 1959",
    "context": "CREATE TABLE table_name_69 (chassis VARCHAR, year VARCHAR, engine VARCHAR)"
  },
  {
    "answer": "SELECT engine FROM table_name_85 WHERE year = 1961",
    "question_en": "What engine was in the year of 1961?",
    "question_th": "ปี พ.ศ. 2504 เป็นเครื่องยนต์อะไร?",
    "context": "CREATE TABLE table_name_85 (engine VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT engine FROM table_name_19 WHERE chassis = \"cooper t43\"",
    "question_en": "What engine was for the vehicle with a cooper t43 chassis?",
    "question_th": "เครื่องยนต์อะไรสำหรับรถที่มีแชสซีของ cooper t43",
    "context": "CREATE TABLE table_name_19 (engine VARCHAR, chassis VARCHAR)"
  },
  {
    "answer": "SELECT engine FROM table_name_59 WHERE year = 1960",
    "question_en": "What is the engine for a vehicle in 1960?",
    "question_th": "เครื่องยนต์สำหรับรถยนต์ในปี 1960 คืออะไร?",
    "context": "CREATE TABLE table_name_59 (engine VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT tyres FROM table_name_70 WHERE chassis = \"jbw type 2\"",
    "question_en": "What is the tyres for the JBW type 2 chassis?",
    "question_th": "ยางสำหรับแชสซี JBW type 2 คืออะไร?",
    "context": "CREATE TABLE table_name_70 (tyres VARCHAR, chassis VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_68 WHERE game < 2",
    "question_en": "What is the location of the game that has a number smaller than 2?",
    "question_th": "ตำแหน่งของเกมที่มีตัวเลขน้อยกว่า 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_en": "What film did ian mackinnon direct that was in the short film 2007 prix uip category?",
    "question_th": "เอียน แม็คคินนอนกำกับภาพยนตร์เรื่องใดซึ่งอยู่ในประเภทหนังสั้นปี 2007 ประเภท uip ของรางวัล",
    "context": "CREATE TABLE table_name_55 (film VARCHAR, category VARCHAR, director_s_ VARCHAR)"
  },
  {
    "answer": "SELECT film FROM table_name_49 WHERE country = \"spain\"",
    "question_en": "What film was filmed in Spain?",
    "question_th": "ภาพยนตร์เรื่องใดที่ถ่ายทำในสเปน?",
    "context": "CREATE TABLE table_name_49 (film VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_43 WHERE director_s_ = \"2007\"",
    "question_en": "What Country has a Director of 2007?",
    "question_th": "ประเทศใดมีผู้อำนวยการประจำปี 2550?",
    "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_en": "What film did abdelatif hwidar direct that was in the short film 2007 prix uip category?",
    "question_th": "อับเดลาติฟ ฮวิดาร์กำกับภาพยนตร์เรื่องใดซึ่งอยู่ในประเภทหนังสั้นปี 2007 ประเภท uip ของรางวัล?",
    "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_en": "What Nominating festival was party of the adjustment film?",
    "question_th": "เทศกาล Nominating เป็นงานปาร์ตี้ของภาพยนตร์ดัดแปลงเรื่องไหน?",
    "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_en": "What country was the prix uip ghent nominating festival?",
    "question_th": "เทศกาลเสนอชื่อ prix uip ghent ของประเทศใด",
    "context": "CREATE TABLE table_name_49 (country VARCHAR, nominating_festival VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_33 WHERE loss = \"stottlemyre (10-12)\"",
    "question_en": "What was the record of the game that had a loss of Stottlemyre (10-12)?",
    "question_th": "สถิติเกมที่แพ้สโตเติลไมร์ (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_en": "What was the Attendance high on August 28?",
    "question_th": "จำนวนผู้เข้าร่วมสูงสุดในวันที่ 28 สิงหาคมคือเท่าใด",
    "context": "CREATE TABLE table_name_26 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_95 WHERE record = \"22-13\"",
    "question_en": "Who was the opponent at the game when the record was 22-13?",
    "question_th": "คู่ต่อสู้ในเกมเมื่อสถิติ 22-13 คือใคร?",
    "context": "CREATE TABLE table_name_95 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_15 WHERE record = \"21-13\"",
    "question_en": "What was the loss of the game when the record was 21-13?",
    "question_th": "แพ้เกมเมื่อสถิติ 21-13 คืออะไร?",
    "context": "CREATE TABLE table_name_15 (loss VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_14 WHERE record = \"31-15\"",
    "question_en": "What was date of the game when the record was 31-15?",
    "question_th": "วันที่ของเกมเมื่อสถิติคือ 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_en": "What was the record at the game against the Indians with a loss of Camacho (1-4)?",
    "question_th": "สถิติในเกมกับอินเดียนแดงที่แพ้คามาโช่ (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_en": "What type ride is Wild Asia that opened in 2000?",
    "question_th": "Wild Asia เครื่องเล่นประเภทไหนที่เปิดในปี 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_en": "What type of ride is Rameses Revenge?",
    "question_th": "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_en": "Which ride opened after the 2000 Peeking Heights?",
    "question_th": "เครื่องเล่นใดที่เปิดหลังจาก 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_en": "What ride was manufactured by Zierer?",
    "question_th": "Zierer เป็นผู้ผลิตรถรุ่นใด",
    "context": "CREATE TABLE table_name_43 (ride_name VARCHAR, manufacturer VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_77 WHERE engine = \"ferrari v6\"",
    "question_en": "What year engine does a ferrari v6 have?",
    "question_th": "Ferrari v6 มีเครื่องยนต์ปีไหน?",
    "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_en": "What is the entrant of a chassis maserati 250f, also has 6 points and older than year 1957?",
    "question_th": "ผู้เข้ามาใหม่ของแชสซี maserati 250f ที่มี 6 คะแนนและเก่ากว่าปี 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 →\"",
    "question_en": "Name the D 45 O with D 44 O majority →",
    "question_th": "ตั้งชื่อ D 45 O ด้วย D 44 O ส่วนใหญ่ →",
    "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 √\"",
    "question_en": "Name the D 45 O with D 46 O of r 31 √",
    "question_th": "ตั้งชื่อ D 45 O ด้วย D 46 O ของ r 31 √",
    "context": "CREATE TABLE table_name_97 (d_45_o VARCHAR, d_46_o VARCHAR)"
  },
  {
    "answer": "SELECT d_41_√ FROM table_name_17 WHERE d_44_o = \"r 13\"",
    "question_en": "Name the D 41 √ with D 44 O of r 13",
    "question_th": "ตั้งชื่อ D 41 √ ด้วย D 44 O ของ r 13",
    "context": "CREATE TABLE table_name_17 (d_41_√ VARCHAR, d_44_o VARCHAR)"
  },
  {
    "answer": "SELECT d_48_o FROM table_name_47 WHERE d_41_√ = \"d 41 √\"",
    "question_en": "Name the D 48 O with D 41 √ of d 41 √",
    "question_th": "ตั้งชื่อ D 48 O ด้วย D 41 √ จาก d 41 √",
    "context": "CREATE TABLE table_name_47 (d_48_o VARCHAR, d_41_√ VARCHAR)"
  },
  {
    "answer": "SELECT d_47_o FROM table_name_80 WHERE d_48_o = \"r 9\"",
    "question_en": "Name the D 47 O with D 48 O of r 9",
    "question_th": "ตั้งชื่อ D 47 O ด้วย D 48 O ของ 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_en": "What is the lowest number of League Cups a player with a 434 league has?",
    "question_th": "ผู้เล่นที่มีลีกคัพ 434 ลีกมีจำนวนน้อยที่สุดคือเท่าไร?",
    "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_en": "What is the average number of FA cups Steve Whitworth, who has less than 400 total, has?",
    "question_th": "ค่าเฉลี่ยของเอฟเอ คัพ สตีฟ วิทเวิร์ธ ที่มียอดรวมไม่ถึง 400 มีเท่าไหร่?",
    "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_en": "What is the height of the Tides with less than 34 floors?",
    "question_th": "กระแสน้ำที่มีความสูงน้อยกว่า 34 ชั้นมีความสูงเท่าใด",
    "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_en": "How many years was the building with 24 floors the tallest?",
    "question_th": "อาคาร 24 ชั้นสูงที่สุดกี่ปี?",
    "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_en": "How many floors does the Blue Diamond have?",
    "question_th": "บลูไดมอนด์มีกี่ชั้น?",
    "context": "CREATE TABLE table_name_92 (floors INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT mixed_doubles FROM table_name_2 WHERE year > 2011",
    "question_en": "Which mixed doubles happened later than 2011?",
    "question_th": "คู่ผสมใดที่เกิดขึ้นหลังปี 2554?",
    "context": "CREATE TABLE table_name_2 (mixed_doubles VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT name FROM table_name_19 WHERE country = \"sco\"",
    "question_en": "What is the person's name that is from the country of SCO?",
    "question_th": "บุคคลที่มาจากประเทศ SCO ชื่ออะไร?",
    "context": "CREATE TABLE table_name_19 (name VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT source FROM table_name_89 WHERE name = \"cresswell\"",
    "question_en": "What was the source for the person named Cresswell?",
    "question_th": "ที่มาของบุคคลที่ชื่อ Cresswell คืออะไร?",
    "context": "CREATE TABLE table_name_89 (source VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_65 WHERE name = \"nicholls\"",
    "question_en": "What is the current status of the person named Nicholls?",
    "question_th": "สถานะปัจจุบันของบุคคลที่ชื่อ 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_en": "What was the transfer fee for the summer transfer involving the SCO named Crainey?",
    "question_th": "ค่าธรรมเนียมการโอนสำหรับการย้ายทีมในช่วงซัมเมอร์ที่เกี่ยวข้องกับ SCO ที่ชื่อ 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 = \"£1.5m\"",
    "question_en": "What was the source of an ENG transfer that paid a £1.5m transfer fee?",
    "question_th": "แหล่งที่มาของการโอน ENG ที่จ่ายค่าธรรมเนียมการโอน 1.5 ล้านปอนด์คืออะไร?",
    "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_en": "What was the record where the opponent was @ Orioles and the loss was to Leal (5-4)?",
    "question_th": "อะไรคือสถิติที่คู่ต่อสู้คือ @ Orioles และแพ้ให้กับ 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_en": "What was the record for the date of June 14?",
    "question_th": "บันทึกสำหรับวันที่ 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_en": "Name the total number of seats for votes % more than 19.5",
    "question_th": "ระบุจำนวนที่นั่งลงคะแนนเสียง % มากกว่า 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_en": "Name the most vote % with election of 1946",
    "question_th": "ระบุชื่อ % โหวตมากที่สุด กับการเลือกตั้งปี 1946",
    "context": "CREATE TABLE table_name_53 (vote__percentage INTEGER, election VARCHAR)"
  },
  {
    "answer": "SELECT vote__percentage FROM table_name_92 WHERE seats = 9",
    "question_en": "Name the vote % for seats of 9",
    "question_th": "บอกชื่อ % คะแนนโหวตสำหรับ 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_en": "Name the sum of votes % more than 19.5",
    "question_th": "ระบุผลรวมคะแนนเสียง % มากกว่า 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_en": "Who directed a film for Cracking Film Productions?",
    "question_th": "ใครเป็นผู้กำกับภาพยนตร์ให้กับ 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_en": "What award did the film Ozone win?",
    "question_th": "หนังเรื่อง Ozone ได้รับรางวัลอะไรบ้าง?",
    "context": "CREATE TABLE table_name_7 (award VARCHAR, film VARCHAR)"
  },
  {
    "answer": "SELECT recipient FROM table_name_37 WHERE date = \"4/9/02\" AND award = \"£3,000\"",
    "question_en": "Who won an award of £3,000 on 4/9/02?",
    "question_th": "ใครได้รับรางวัล 3,000 ปอนด์ในวันที่ 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_en": "What was the categorie in 2002 at the Berlin international Film Festival that Danielle Darrieux was in?",
    "question_th": "Danielle Darrieux อยู่ในหมวดหมู่ใดในเทศกาลภาพยนตร์นานาชาติเบอร์ลินในปี 2002",
    "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_en": "What was the result at the Berlin International Film Festival in a year greater than 1987?",
    "question_th": "ผลลัพธ์ของเทศกาลภาพยนตร์นานาชาติเบอร์ลินในปีที่มากกว่าปี 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ésar award\"",
    "question_en": "In what year was the movie 8 women up for a César Award?",
    "question_th": "ภาพยนตร์เรื่อง 8 Women เข้าชิงรางวัล César 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_en": "Name the position for indiana state",
    "question_th": "ตั้งชื่อตำแหน่งของรัฐอินเดียนา",
    "context": "CREATE TABLE table_name_17 (position VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT format FROM table_name_53 WHERE date = \"february 14, 2002\"",
    "question_en": "What is the format of the date February 14, 2002?",
    "question_th": "วันที่ 14 กุมภาพันธ์ 2545 เป็นรูปแบบใด",
    "context": "CREATE TABLE table_name_53 (format VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_name_7 WHERE catalog = \"38xa-3\"",
    "question_en": "Which region is identified as 38xa-3 in the catalog?",
    "question_th": "ภูมิภาคใดที่ระบุว่าเป็น 38xa-3 ในแค็ตตาล็อก",
    "context": "CREATE TABLE table_name_7 (region VARCHAR, catalog VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_70 WHERE format = \"cd\"",
    "question_en": "Which date is in CD format?",
    "question_th": "วันที่ใดในรูปแบบซีดี?",
    "context": "CREATE TABLE table_name_70 (date VARCHAR, format VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_97 WHERE format = \"stereo lp\"",
    "question_en": "Which date is in stereo lp format?",
    "question_th": "วันที่ใดอยู่ในรูปแบบสเตอริโอ lp",
    "context": "CREATE TABLE table_name_97 (date VARCHAR, format VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_32 WHERE date = \"february 14, 2002\"",
    "question_en": "Which label is dated February 14, 2002?",
    "question_th": "ป้ายกำกับใดลงวันที่ 14 กุมภาพันธ์ พ.ศ. 2545",
    "context": "CREATE TABLE table_name_32 (label VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT catalog FROM table_name_54 WHERE format = \"cd\"",
    "question_en": "Which catalog is in cd format?",
    "question_th": "แค็ตตาล็อกใดอยู่ในรูปแบบซีดี",
    "context": "CREATE TABLE table_name_54 (catalog VARCHAR, format VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_9 WHERE winner = \"mark teltscher\"",
    "question_en": "What event did Mark Teltscher win?",
    "question_th": "Mark Teltscher ชนะรายการใด",
    "context": "CREATE TABLE table_name_9 (event VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_35 WHERE city = \"baden\"",
    "question_en": "When was the event in the City of Baden?",
    "question_th": "งานนี้จัดขึ้นที่เมืองบาเดนเมื่อไหร่?",
    "context": "CREATE TABLE table_name_35 (date VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_80 WHERE prize = \"€900,000\"",
    "question_en": "What event had a prize of €900,000?",
    "question_th": "งานใดมีเงินรางวัล 900,000 ยูโร?",
    "context": "CREATE TABLE table_name_80 (event VARCHAR, prize VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_50 WHERE city = \"dublin\"",
    "question_en": "When was the event in Dublin?",
    "question_th": "งานนี้จัดขึ้นที่ดับลินเมื่อไหร่?",
    "context": "CREATE TABLE table_name_50 (date VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_96 WHERE prize = \"€288,180\"",
    "question_en": "What city did an event have a prize of €288,180?",
    "question_th": "งานอีเวนต์ที่เมืองใดมีเงินรางวัล 288,180 ยูโร",
    "context": "CREATE TABLE table_name_96 (city VARCHAR, prize VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_93 WHERE winner = \"patrik antonius\"",
    "question_en": "What city was the event in when Patrik Antonius won?",
    "question_th": "เหตุการณ์ที่ Patrik Antonius ชนะคือเมืองใด",
    "context": "CREATE TABLE table_name_93 (city VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT winning_constructor FROM table_name_71 WHERE circuit = \"parioli\"",
    "question_en": "Who was the winning constructor at the circuit of parioli?",
    "question_th": "ใครคือผู้สร้างผู้ชนะในวงจรปาริโอลี?",
    "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_en": "When did Gaspare Bona win the Pozzo Circuit?",
    "question_th": "Gaspare Bona ชนะ 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_en": "Who was the winning constructor of the Grand Prix Du Salon ?",
    "question_th": "ใครคือผู้สร้างผู้ชนะของ 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çois eysermann\"",
    "question_en": "Which circuit did françois eysermann win ?",
    "question_th": "ฟร็องซัว เอย์เซอร์มันน์ คว้าแชมป์สนามไหน?",
    "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_en": "What is the largest silver with Gold larger than 4, a Nation of united states, and a Total larger than 26?",
    "question_th": "เงินที่ใหญ่ที่สุดที่มีทองคำมากกว่า 4, ประเทศของสหรัฐอเมริกา และผลรวมมากกว่า 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_en": "How many silvers have a Nation of hungary, and a Rank larger than 10?",
    "question_th": "ประเทศฮังการีมีกี่เหรียญเงินและมีอันดับมากกว่า 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_en": "Which silver has a Gold smaller than 12, a Rank smaller than 5, and a Bronze of 5?",
    "question_th": "เงินใดที่มีทองคำน้อยกว่า 12, อันดับน้อยกว่า 5 และทองแดงเท่ากับ 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_en": "Who did they play on August 12?",
    "question_th": "พวกเขาเล่นกับใครในวันที่ 12 สิงหาคม?",
    "context": "CREATE TABLE table_name_48 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT model FROM table_name_92 WHERE seats = 175",
    "question_en": "Which model has 175 seats?",
    "question_th": "รุ่นไหนมี 175 ที่นั่ง?",
    "context": "CREATE TABLE table_name_92 (model VARCHAR, seats VARCHAR)"
  },
  {
    "answer": "SELECT year_built FROM table_name_41 WHERE model = \"ctc-3\"",
    "question_en": "In what year was the ctc-3 model built?",
    "question_th": "รุ่น ctc-3 ถูกสร้างขึ้นในปีใด?",
    "context": "CREATE TABLE table_name_41 (year_built VARCHAR, model VARCHAR)"
  },
  {
    "answer": "SELECT SUM(seats) FROM table_name_57 WHERE model = \"btc-5\"",
    "question_en": "How many seats does the BTC-5 model have?",
    "question_th": "รุ่น BTC-5 มีกี่ที่นั่ง?",
    "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_en": "For the train built in 2012 with less than 179 seats, what is the Fleet ID?",
    "question_th": "รถไฟที่สร้างขึ้นในปี 2555 มีที่นั่งไม่ถึง 179 ที่นั่ง รหัส 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_en": "What was the record at the game attended by 10,389?",
    "question_th": "อะไรคือสถิติในเกมที่มีผู้เข้าร่วม 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_en": "What was the score of the game that had a loss of Drese (2-2)?",
    "question_th": "เกมที่แพ้เดรเซ่ (2-2) สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_99 (score VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_85 WHERE attendance = \"25,034\"",
    "question_en": "What is the score of the game attended by 25,034?",
    "question_th": "ผู้เข้าร่วมการแข่งขัน 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_en": "How often are the Olympic games hosted?",
    "question_th": "การแข่งขันกีฬาโอลิมปิกจัดขึ้นบ่อยแค่ไหน?",
    "context": "CREATE TABLE table_name_74 (year INTEGER, tournament VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_29 WHERE year = 1984",
    "question_en": "Where was the 1984 Olympics hosted?",
    "question_th": "การแข่งขันกีฬาโอลิมปิกปี 1984 จัดขึ้นที่ไหน?",
    "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_en": "How many years was the issue price $19.95?",
    "question_th": "ราคาที่ออกคือ $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_en": "Which composition has an issue price of $99.00?",
    "question_th": "องค์ประกอบใดมีราคาจำหน่ายอยู่ที่ $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–01\"",
    "question_en": "Tier of 2, and a Season of 2000–01 is what European competitions?",
    "question_th": "ระดับ 2 และฤดูกาล 2000–01 คือการแข่งขันระดับยุโรปรายการใด",
    "context": "CREATE TABLE table_name_35 (european_competitions VARCHAR, tier VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT league FROM table_name_68 WHERE season = \"2012–13\"",
    "question_en": "Season of 2012–13 is what league?",
    "question_th": "ฤดูกาล 2012–13 คือลีกอะไร?",
    "context": "CREATE TABLE table_name_68 (league VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT european_competitions FROM table_name_49 WHERE tier = 2 AND season = \"2004–05\"",
    "question_en": "Tier of 2, and a Season of 2004–05 is what European competitions?",
    "question_th": "ระดับ 2 และฤดูกาล 2004–05 คือการแข่งขันระดับยุโรปรายการใด",
    "context": "CREATE TABLE table_name_49 (european_competitions VARCHAR, tier VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT operator FROM table_name_20 WHERE rank = 7",
    "question_en": "Which operator has a rank of 7?",
    "question_th": "โอเปอเรเตอร์ใดมีอันดับ 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_en": "What's the lowest ranking source of copper, copper ore, concentrated and leached?",
    "question_th": "แหล่งทองแดง แร่ทองแดง เข้มข้น และชะล้างอยู่ในอันดับที่ต่ำที่สุดคืออะไร?",
    "context": "CREATE TABLE table_name_60 (rank INTEGER, source_of_copper VARCHAR)"
  },
  {
    "answer": "SELECT AVG(rank) FROM table_name_61 WHERE name = \"stéphan perrot\"",
    "question_en": "What was Stéphan Perrot rank average?",
    "question_th": "อันดับเฉลี่ยของStéphan Perrot คืออะไร?",
    "context": "CREATE TABLE table_name_61 (rank INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT MIN(rank) FROM table_name_91 WHERE name = \"maxim podoprigora\"",
    "question_en": "What was Maxim Podoprigora's lowest rank?",
    "question_th": "อันดับต่ำสุดของ Maxim Podoprigora คืออะไร?",
    "context": "CREATE TABLE table_name_91 (rank INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT away_captain FROM table_name_81 WHERE venue = \"kingsmead\"",
    "question_en": "Who is the away captain for Kingsmead?",
    "question_th": "ใครคือกัปตันทีมเยือนของคิงส์มีด?",
    "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_en": "What was the first year that had a prize of 50,000?",
    "question_th": "ปีแรกที่ได้รับรางวัล 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_en": "What year did Zone Rouge first air?",
    "question_th": "Zone Rouge ออกอากาศครั้งแรกในปีใด",
    "context": "CREATE TABLE table_name_79 (first_year_aired VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT host FROM table_name_74 WHERE country = \"horrid henry\"",
    "question_en": "What was the host of Horrid Henry?",
    "question_th": "โฮสต์ของ 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_en": "What is the average launch date of the vmv-1 vessel in Germany?",
    "question_th": "วันที่เปิดตัวเฉลี่ยของเรือ vmv-1 ในเยอรมนีคือเมื่อใด",
    "context": "CREATE TABLE table_name_37 (launched INTEGER, location VARCHAR, ship VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_95 WHERE date = \"may 21\"",
    "question_en": "Which location has a date of may 21?",
    "question_th": "สถานที่ใดมีวันที่ 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_en": "What is the total Decile that has a state authority, fairlie area and roll smarter than 206?",
    "question_th": "Decile รวมที่มีอำนาจรัฐ พื้นที่แฟร์ลี และม้วนฉลาดกว่า 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_en": "What area is named Mackenzie college?",
    "question_th": "วิทยาลัย Mackenzie มีสาขาใดบ้าง",
    "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_en": "What is the highest percent of Bruce Arena when he loses more than 11 games?",
    "question_th": "เปอร์เซ็นต์สูงสุดของ Bruce Arena เมื่อเขาแพ้มากกว่า 11 เกมคือเท่าไร?",
    "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_en": "What is the sum of points when Bruce Arena has 21 wins?",
    "question_th": "เมื่อบรูซ อารีน่า ชนะ 21 ครั้ง ผลรวมของแต้มเป็นเท่าใด?",
    "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_en": "What was the outcome of the game played on 19-Sep-2006?",
    "question_th": "ผลการแข่งขันวันที่ 19 กันยายน 2549 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_68 (outcome VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_56 WHERE date = \"oct. 8, 2006\"",
    "question_en": "Where was the tournament played on Oct. 8, 2006?",
    "question_th": "การแข่งขันจัดขึ้นที่ไหนเมื่อวันที่ 8 ตุลาคม พ.ศ. 2549?",
    "context": "CREATE TABLE table_name_56 (tournament VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_47 WHERE tournament = \"clearwater, florida\"",
    "question_en": "What is the final score of the tournament played in Clearwater, Florida?",
    "question_th": "คะแนนสุดท้ายของทัวร์นาเมนต์ที่เล่นในเคลียร์วอเตอร์ รัฐฟลอริดา เป็นเท่าใด",
    "context": "CREATE TABLE table_name_47 (score VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_35 WHERE opponent = \"maria kondratieva\"",
    "question_en": "What is the score of the game that was played against Maria Kondratieva?",
    "question_th": "แมตช์ที่เล่นกับ มาเรีย คอนดราติเอวา ได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_35 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_90 WHERE score = \"6-1 7-5\"",
    "question_en": "What was the surface of the game that resulted in a final score of 6-1 7-5?",
    "question_th": "พื้นผิวของเกมที่ส่งผลให้สกอร์สุดท้ายเป็น 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_en": "What was the Attendance when the Time was 2:13?",
    "question_th": "ผู้เข้าร่วมเมื่อเวลา 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_en": "What was the attendance when the record was 77-54?",
    "question_th": "ผู้เข้าร่วมเมื่อสถิติอยู่ที่ 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_en": "What did Xavier Doherty (Tasmania) set as his highest Overs?",
    "question_th": "Xavier Doherty (แทสเมเนีย) กำหนดให้อะไรเป็นโอเวอร์สูงสุดของเขา?",
    "context": "CREATE TABLE table_name_25 (overs INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_17 WHERE player = \"tiger woods\"",
    "question_en": "What country does Tiger Woods play for?",
    "question_th": "Tiger Woods เล่นให้กับประเทศใด?",
    "context": "CREATE TABLE table_name_17 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_50 WHERE country = \"england\"",
    "question_en": "What place did the player from England come in?",
    "question_th": "นักเตะจากอังกฤษเข้ามาถึงจุดไหน?",
    "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_en": "What's the English Title of Fanny Och Alexander?",
    "question_th": "ชื่อภาษาอังกฤษของ 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_en": "What was the original title that was directed by Alain Resnais in France before 1986?",
    "question_th": "ชื่อดั้งเดิมที่กำกับโดย Alain Resnais ในฝรั่งเศสก่อนปี 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áll az idö\"",
    "question_en": "What was the year of Megáll az Idö?",
    "question_th": "เมกัล อัซ อิโด ตรงกับปีใด?",
    "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–0\"",
    "question_en": "Avg/G smaller than 225.5, and a GP-GS of 8–0 has what name?",
    "question_th": "Avg/G น้อยกว่า 225.5 และ GP-GS ที่ 8–0 มีชื่ออะไร",
    "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–13\" AND effic < 114.23",
    "question_en": "Avg/G that has a GP-GS of 13–13, and a Effic smaller than 114.23 has what total of numbers?",
    "question_th": "Avg/G ที่มี GP-GS อยู่ที่ 13–13 และ Effic น้อยกว่า 114.23 จะมีตัวเลขทั้งหมดเท่าใด",
    "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_en": "Avg/G of 2.7 is what effic?",
    "question_th": "Avg/G ของ 2.7 มีประสิทธิภาพเท่าใด",
    "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–1–0\" AND effic > 394",
    "question_en": "Avg/G that has a Att-Cmp-Int of 1–1–0, and an Effic larger than 394 is what total?",
    "question_th": "Avg/G ที่มี Att-Cmp-Int เท่ากับ 1–1–0 และ Effic ที่มากกว่า 394 รวมเป็นเท่าใด",
    "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_en": "Which area has a Decile of 9, and a Roll of 31?",
    "question_th": "พื้นที่ใดมี Decile เท่ากับ 9 และมี Roll เท่ากับ 31",
    "context": "CREATE TABLE table_name_98 (area VARCHAR, decile VARCHAR, roll VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(decile) FROM table_name_68 WHERE years = \"9–13\"",
    "question_en": "How many deciles have Years of 9–13?",
    "question_th": "ปีที่ 9–13 มีกี่เดซิลิตร?",
    "context": "CREATE TABLE table_name_68 (decile VARCHAR, years VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_55 WHERE decile < 10 AND roll = 297",
    "question_en": "What is the name with a Decile less than 10, and a Roll of 297?",
    "question_th": "ชื่อที่มี Decile น้อยกว่า 10 และม้วน 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–13\"",
    "question_en": "Which name has a Roll larger than 297, and Years of 7–13?",
    "question_th": "ชื่อใดมีม้วนใหญ่กว่า 297 และปีที่ 7–13",
    "context": "CREATE TABLE table_name_1 (name VARCHAR, roll VARCHAR, years VARCHAR)"
  },
  {
    "answer": "SELECT years FROM table_name_97 WHERE name = \"ladbrooks school\"",
    "question_en": "Which years have a Name of ladbrooks school?",
    "question_th": "ปีไหนมีชื่อโรงเรียนลาดบรูคส์?",
    "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_en": "What is the total of the roll with a Decile of 8, and an Area of hororata?",
    "question_th": "ผลรวมของทอยที่มี Decile 8 และพื้นที่ 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_en": "What is the highest number of laps that also has a finish total of 8?",
    "question_th": "จำนวนรอบสูงสุดที่เข้าเส้นชัยรวมเป็น 8 คือเท่าใด?",
    "context": "CREATE TABLE table_name_98 (laps INTEGER, finish VARCHAR)"
  },
  {
    "answer": "SELECT qual FROM table_name_75 WHERE finish = \"9\"",
    "question_en": "Which qual also has a finish total of 9?",
    "question_th": "รอบคัดเลือกใดมีเส้นชัยรวม 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_en": "Which qual has both 200 total laps and took place in 1957?",
    "question_th": "รอบคัดเลือกใดที่มีทั้ง 200 รอบทั้งหมดและเกิดขึ้นในปี 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_en": "What is the code name when the Southbridge shows as amd-766, via-vt82c686b?",
    "question_th": "ชื่อรหัสคืออะไรเมื่อ Southbridge แสดงเป็น 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_en": "What is the Southbridge when the CPU support was athlon, athlonxp, duron( socketa ), alpha21264?",
    "question_th": "Southbridge คืออะไรเมื่อ CPU รองรับคือ 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_en": "What is the code name when the FSB / HT (MHz) is 100 (fsb)?",
    "question_th": "ชื่อรหัสเมื่อ FSB / HT (MHz) คือ 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_en": "What is the FSB / HT (MHz) when the Southbridge is amd-8131 amd-8132?",
    "question_th": "FSB / HT (MHz) คืออะไรเมื่อ Southbridge คือ 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_en": "What shows for Southbridge when the Model number is amd-640 chipset?",
    "question_th": "สิ่งที่แสดงให้เห็นสำหรับ Southbridge เมื่อหมายเลขรุ่นเป็นชิปเซ็ต amd-640?",
    "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_en": "Which stadium is for football with the China League One?",
    "question_th": "สนามไหนที่เหมาะกับฟุตบอลกับไชน่าลีกวัน?",
    "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_en": "Which tier is for football at Tianhe Stadium?",
    "question_th": "ฟุตบอลที่ 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_en": "Which Little League World Series took place in Parsippany?",
    "question_th": "Little League World Series ใดที่จัดขึ้นที่ Parsippany",
    "context": "CREATE TABLE table_name_70 (llws VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT tennessee FROM table_name_27 WHERE georgia = \"kevin butler\"",
    "question_en": "What is the Tennessee that Georgia of kevin butler is in?",
    "question_th": "รัฐเทนเนสซีที่จอร์เจียของเควิน บัตเลอร์ อยู่คืออะไร?",
    "context": "CREATE TABLE table_name_27 (tennessee VARCHAR, georgia VARCHAR)"
  },
  {
    "answer": "SELECT tennessee FROM table_name_11 WHERE kentucky = \"larry seiple\"",
    "question_en": "What is the Tennessee with a Kentucky of Larry Seiple",
    "question_th": "เทนเนสซีกับรัฐเคนตักกี้ของแลร์รี่ไซเปิลคืออะไร",
    "context": "CREATE TABLE table_name_11 (tennessee VARCHAR, kentucky VARCHAR)"
  },
  {
    "answer": "SELECT SUM(year) FROM table_name_10 WHERE kentucky = \"jeff van note\"",
    "question_en": "What is the total Year of jeff van note ( Kentucky)",
    "question_th": "เจฟฟ์ แวน โน้ต รวมปีเท่าไร (รัฐเคนตักกี้)",
    "context": "CREATE TABLE table_name_10 (year INTEGER, kentucky VARCHAR)"
  },
  {
    "answer": "SELECT built FROM table_name_51 WHERE period = \"1967-1987\"",
    "question_en": "How many cabins were built in the time between 1967-1987?",
    "question_th": "ระหว่างปี พ.ศ. 2510-2530 มีกระท่อมกี่หลังที่ถูกสร้างขึ้น?",
    "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_en": "Between which years were there 241 fokker 70 model cabins built?",
    "question_th": "มีห้องโดยสารจำลองฟอกเกอร์ 70 จำนวน 241 ห้องที่สร้างขึ้นระหว่างปีใด",
    "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_en": "Name the sum of year for engine of brm p202 3.0 v12 brm p200 3.0 v12",
    "question_th": "ตั้งชื่อผลรวมของปีสำหรับเครื่องยนต์ของ 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_en": "Name the chassis for 1970 and tyres of d",
    "question_th": "ตั้งชื่อแชสซีสำหรับปี 1970 และยางของ d",
    "context": "CREATE TABLE table_name_12 (chassis VARCHAR, tyres VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_name_24 WHERE year = 1974",
    "question_en": "Name the point for 1974",
    "question_th": "ตั้งชื่อจุดสำหรับปี 1974",
    "context": "CREATE TABLE table_name_24 (points VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT chassis FROM table_name_33 WHERE year = 1961",
    "question_en": "Name the chassis of 1961",
    "question_th": "ตั้งชื่อแชสซีปี 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_en": "What is the year opened for Chicagoland Speedway with a seating smaller than 75,000?",
    "question_th": "สนามแข่งรถ Chicagoland Speedway ที่มีที่นั่งน้อยกว่า 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_en": "What type of photos of Angelina Jolie cost $500,000?",
    "question_th": "ภาพถ่ายประเภทใดของ Angelina Jolie มีราคา 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_en": "What was the publication date of the photos of Sean Preston Federline that cost $500,000 and were published by People?",
    "question_th": "วันที่ตีพิมพ์ภาพถ่ายของ Sean Preston Federline ซึ่งมีราคา 500,000 ดอลลาร์และเผยแพร่โดย 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_en": "Who won on 28 May?",
    "question_th": "ใครชนะในวันที่ 28 พฤษภาคม?",
    "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_en": "Which country is the film Tent of Miracles from?",
    "question_th": "ภาพยนตร์เรื่อง Tent of Miracles มาจากประเทศใด",
    "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_en": "Which country is the director Roland Verhavert from?",
    "question_th": "ผู้กำกับ Roland Verhavert มาจากประเทศใด",
    "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_en": "What is the title of the German film that is originally called Mama, Ich Lebe?",
    "question_th": "ภาพยนตร์เยอรมันที่เดิมเรียกว่า 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_en": "Which director is from Italy?",
    "question_th": "ผู้กำกับคนไหนมาจากอิตาลี?",
    "context": "CREATE TABLE table_name_41 (director VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_99 WHERE director = \"dariush mehrjui\"",
    "question_en": "Where is the director Dariush Mehrjui from?",
    "question_th": "ผู้กำกับ ดาริอุช เมห์จุย มาจากไหน?",
    "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_en": "Who were the Investing Dragons in the episode that first aired on 18 January 2005 with the entrepreneur Tracey Herrtage?",
    "question_th": "ใครคือ Investing Dragons ในตอนที่ออกอากาศครั้งแรกเมื่อวันที่ 18 มกราคม พ.ศ. 2548 กับผู้ประกอบการ Tracey Herrtage",
    "context": "CREATE TABLE table_name_65 (investing_dragon_s_ VARCHAR, first_aired VARCHAR, entrepreneur_s_ VARCHAR)"
  },
  {
    "answer": "SELECT AVG(money_requested__) AS £_ FROM table_name_96 WHERE first_aired = \"18 january 2005\" AND company_or_product_name = \"iv cam\"",
    "question_en": "What is the average money requested in the episode first aired on 18 January 2005 by the company/product name IV Cam",
    "question_th": "จำนวนเงินเฉลี่ยที่ขอในตอนแรกออกอากาศครั้งแรกเมื่อวันที่ 18 มกราคม พ.ศ. 2548 โดยบริษัท/ชื่อผลิตภัณฑ์ 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_en": "What is the population for Rank 11?",
    "question_th": "อันดับ 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_en": "Name the trailers for formed from pan/pul/res cars",
    "question_th": "ตั้งชื่อรถพ่วงสำหรับรถที่ขึ้นรูปจาก pan/pul/res",
    "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_en": "Name the typed for formed from 6-pul trailer third in res unit",
    "question_th": "ตั้งชื่อประเภทที่พิมพ์สำหรับรถพ่วงขนาด 6 พัลที่ 3 ในหน่วยความละเอียด",
    "context": "CREATE TABLE table_name_40 (type VARCHAR, formed_from VARCHAR)"
  },
  {
    "answer": "SELECT formed_from FROM table_name_58 WHERE type = \"4-cor\"",
    "question_en": "Name the formed that has type of 4-cor",
    "question_th": "ตั้งชื่อรูปแบบที่มีประเภท 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_en": "Who lost with a time of 2:42?",
    "question_th": "ใครแพ้ด้วยเวลา 2:42?",
    "context": "CREATE TABLE table_name_9 (loss VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_93 WHERE date = \"august 27\"",
    "question_en": "Who lost on August 27?",
    "question_th": "ใครแพ้วันที่ 27 สิงหาคม?",
    "context": "CREATE TABLE table_name_93 (loss VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(points) FROM table_name_62 WHERE year > 1953",
    "question_en": "Which of the biggest points numbers had a year more recent than 1953?",
    "question_th": "ตัวเลขคะแนนที่ใหญ่ที่สุดใดในหนึ่งปีล่าสุดมากกว่าปี 1953?",
    "context": "CREATE TABLE table_name_62 (points INTEGER, year INTEGER)"
  },
  {
    "answer": "SELECT SUM(year) FROM table_name_68 WHERE points > 0",
    "question_en": "How many years had more than 0 points?",
    "question_th": "กี่ปีมีมากกว่า 0 คะแนน?",
    "context": "CREATE TABLE table_name_68 (year INTEGER, points INTEGER)"
  },
  {
    "answer": "SELECT entrant FROM table_name_67 WHERE year < 1953",
    "question_en": "Which entrant was present prior to 1953?",
    "question_th": "ผู้เข้าแข่งขันคนใดที่เข้าร่วมก่อนปี 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_en": "How many wickets have runs under 7531, matches over 44, and an average of 22.17?",
    "question_th": "มีกี่วิคเก็ตที่วิ่งได้ต่ำกว่า 7531 แมตช์มากกว่า 44 และเฉลี่ย 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_en": "What is the total number of wickets that have runs under 4600 and matches under 44?",
    "question_th": "จำนวนประตูทั้งหมดที่วิ่งต่ำกว่า 4600 และการแข่งขันต่ำกว่า 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_en": "Which Label was cataloged as alca-9013?",
    "question_th": "ฉลากใดจัดอยู่ในหมวดหมู่ 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_en": "Which Catalog was formated as a CD under the label Alfa Records?",
    "question_th": "แคตตาล็อกใดจัดรูปแบบเป็นซีดีภายใต้ชื่อ 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_en": "What is the earliest year retired delivered in 1965 with an in service in November 1971 for the PoAF Serial less than 7103?",
    "question_th": "ปีแรกสุดที่เลิกผลิตในปี 1965 โดยให้บริการในเดือนพฤศจิกายน 1971 สำหรับอนุกรม PoAF น้อยกว่า 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_en": "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?",
    "question_th": "จำนวนการขนส่งสินค้าที่น้อยที่สุดที่ขนส่งบนถนนซึ่งปิดในวันที่ 31 มีนาคม และถึงขีดความสามารถระดับ Super B ในวันที่ 17 กุมภาพันธ์หลังปี 2554 คือเท่าใด",
    "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_en": "What's the English title listed that has an Original title of The Crying Game?",
    "question_th": "ชื่อภาษาอังกฤษชื่ออะไรที่มีชื่อดั้งเดิมของ 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érémonie\"",
    "question_en": "Which Year has the Orginal title of La Cérémonie?",
    "question_th": "ปีใดมีชื่อดั้งเดิมของ La Cérémonie?",
    "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_en": "What's the Original Title of the English title A Judgement in Stone?",
    "question_th": "ชื่อดั้งเดิมของชื่อภาษาอังกฤษ 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_en": "Who is the Director of the Original title of The Crying Game?",
    "question_th": "ใครคือผู้อำนวยการของชื่อดั้งเดิมของ 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_en": "Which Country is listed for the Director Thomas Vinterberg?",
    "question_th": "ประเทศใดที่อยู่ในรายชื่อผู้อำนวยการ Thomas Vinterberg",
    "context": "CREATE TABLE table_name_74 (country VARCHAR, director VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_79 WHERE director = \"chen kaige\"",
    "question_en": "Which Country has the Director Chen Kaige?",
    "question_th": "ประเทศใดมีผู้อำนวยการ Chen Kaige?",
    "context": "CREATE TABLE table_name_79 (country VARCHAR, director VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_2 WHERE attendance = \"50,200\"",
    "question_en": "What was the score of the game attended by 50,200?",
    "question_th": "คะแนนของเกมที่มีผู้เข้าร่วม 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_en": "What's the Termination of Mission listed that has a Presentation of Credentials for August 29, 1859?",
    "question_th": "การยุติภารกิจในรายการที่มีการนำเสนอหนังสือรับรองสำหรับวันที่ 29 สิงหาคม พ.ศ. 2402 คืออะไร",
    "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_en": "What's the Representative listed that has a Presentation of Credentials of August 25, 1851?",
    "question_th": "ตัวแทนรายใดที่ระบุว่ามีการนำเสนอหนังสือรับรองเมื่อวันที่ 25 สิงหาคม พ.ศ. 2394",
    "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_en": "What Title has a Termination of Mission for August 13, 1854?",
    "question_th": "หัวข้อใดที่มีการยุติภารกิจในวันที่ 13 สิงหาคม พ.ศ. 2397",
    "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_en": "What Title has a Termination of Mission of November 4, 1861?",
    "question_th": "หัวข้อใดมีการยุติภารกิจในวันที่ 4 พฤศจิกายน พ.ศ. 2404",
    "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_en": "What Representative has a Presentation of Credentails of April 10, 1855?",
    "question_th": "ผู้แทนคนใดมีการนำเสนอข้อมูลประจำตัวเมื่อวันที่ 10 เมษายน พ.ศ. 2398",
    "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_en": "Which Title has an Appointed by of Millard Fillmore?",
    "question_th": "ตำแหน่งใดที่ได้รับการแต่งตั้งจาก 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_en": "Who was Choong Tan Fook's opponent in 1999?",
    "question_th": "คู่ต่อสู้ของ Choong Tan Fook ในปี 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_en": "Which opponent played in the Chinese Taipei Open in 2000?",
    "question_th": "คู่ต่อสู้คนใดเคยเล่นในรายการ Chinese Taipei Open ในปี 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_en": "How many bronzes have a Nation of jamaica (jam), and a Total smaller than 7?",
    "question_th": "มีกี่เหรียญทองแดงที่มีประเทศจาเมกา (แยม) และคะแนนรวมน้อยกว่า 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_en": "What is the average silver with more than 0 gold, a Rank of 1, and a Total smaller than 30?",
    "question_th": "เงินโดยเฉลี่ยที่มีมากกว่า 0 เหรียญทอง อันดับ 1 และผลรวมน้อยกว่า 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_en": "What is the total gold with a total less than 1?",
    "question_th": "ทองคำทั้งหมดที่มียอดรวมน้อยกว่า 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_en": "Which NIR number is for the tso (ex-br class 488 unit 488305) type that has a 6082 / 72605 BR number?",
    "question_th": "หมายเลข NIR ใดสำหรับประเภท tso (ex-br class 488 unit 488305) ที่มีหมายเลข 6082/72605 BR",
    "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_en": "What is the Whakamaru school's authority?",
    "question_th": "อำนาจของโรงเรียนวากามารุคืออะไร?",
    "context": "CREATE TABLE table_name_32 (authority VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT area FROM table_name_11 WHERE authority = \"state\" AND roll > 157",
    "question_en": "Where is the school with state authority that has a roll of more than 157 students?",
    "question_th": "โรงเรียนที่มีอำนาจของรัฐที่มีจำนวนนักเรียนมากกว่า 157 คนอยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_11 (area VARCHAR, authority VARCHAR, roll VARCHAR)"
  },
  {
    "answer": "SELECT subject FROM table_name_12 WHERE pinyin = \"shiyan\"",
    "question_en": "Name the subject of shiyan",
    "question_th": "ตั้งชื่อหัวข้อของ ชีหยาน",
    "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_en": "Name the chinese with subject of adjectives, adverbs, mostly with reduplication",
    "question_th": "ตั้งชื่อภาษาจีนด้วยประธานของคำคุณศัพท์ กริยาวิเศษณ์ โดยส่วนใหญ่เป็นการซ้ำซ้อน",
    "context": "CREATE TABLE table_name_50 (chinese VARCHAR, subject VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(chapter) FROM table_name_74 WHERE chinese = \"釋宮\"",
    "question_en": "Name the total number of chapter for chinese of 釋宮",
    "question_th": "ตั้งชื่อจำนวนบททั้งหมดสำหรับภาษาจีนของ 釋宮",
    "context": "CREATE TABLE table_name_74 (chapter VARCHAR, chinese VARCHAR)"
  },
  {
    "answer": "SELECT MAX(chapter) FROM table_name_24 WHERE chinese = \"釋言\"",
    "question_en": "Name the highest chapter with chinese of 釋言",
    "question_th": "ตั้งชื่อบทสูงสุดด้วยภาษาจีนของ 釋言",
    "context": "CREATE TABLE table_name_24 (chapter INTEGER, chinese VARCHAR)"
  },
  {
    "answer": "SELECT chapter FROM table_name_28 WHERE chinese = \"釋水\"",
    "question_en": "Name the chapter with chinese of 釋水",
    "question_th": "ตั้งชื่อบทด้วยภาษาจีนของ 釋水",
    "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_en": "Who used Gordini Straight-6 in 1956?",
    "question_th": "ใครใช้ Gordini Straight-6 ในปี 1956?",
    "context": "CREATE TABLE table_name_93 (entrant VARCHAR, engine VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT entrant FROM table_name_87 WHERE year = 1963",
    "question_en": "Who was in 1963?",
    "question_th": "ใครคือในปี 1963?",
    "context": "CREATE TABLE table_name_87 (entrant VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_48 WHERE date = \"september 11\"",
    "question_en": "Name the score for september 11",
    "question_th": "ทายผลคะแนนประจำวันที่ 11 กันยายน",
    "context": "CREATE TABLE table_name_48 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_23 WHERE record = \"71-81\"",
    "question_en": "Name the loss for record of 71-81",
    "question_th": "ตั้งชื่อการสูญเสียสำหรับบันทึก 71-81",
    "context": "CREATE TABLE table_name_23 (loss VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_17 WHERE record = \"73-83\"",
    "question_en": "Name the score which has record of 73-83",
    "question_th": "บอกชื่อคะแนนที่มีสถิติ 73-83",
    "context": "CREATE TABLE table_name_17 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_20 WHERE record = \"74-84\"",
    "question_en": "Name the date for record of 74-84",
    "question_th": "ตั้งชื่อวันที่บันทึก 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_en": "For all events with index f10, what is the sum of the overall rankings?",
    "question_th": "สำหรับทุกรายการที่มีดัชนี f10 ผลรวมของการจัดอันดับโดยรวมเป็นเท่าใด",
    "context": "CREATE TABLE table_name_66 (overall_ranking INTEGER, index VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_23 WHERE index = \"f7\"",
    "question_en": "For the event with index f7, what is the status?",
    "question_th": "งานที่มีดัชนี F7 สถานะเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_23 (status VARCHAR, index VARCHAR)"
  },
  {
    "answer": "SELECT talent_segment FROM table_name_49 WHERE index = \"f9\"",
    "question_en": "For the event with index f9, what's the talent segment?",
    "question_th": "งานที่มีดัชนี F9 มี 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 = \"林佩琪 lin peiqi\"",
    "question_en": "What's the acting segment of 林佩琪 lin peiqi's events that are eliminated?",
    "question_th": "ช่วงการแสดงของ 林佩琪 lin peiqi ที่ถูกคัดออกคือช่วงไหน?",
    "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 = \"廖尹宁 jvnne leow\"",
    "question_en": "What's the total number of overall rankings of 廖尹宁 jvnne leow's events that are eliminated?",
    "question_th": "จำนวนการจัดอันดับโดยรวมของงานของ 廖尹宁 jvnne leow ที่ตกรอบคือเท่าใด?",
    "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_en": "Who was the opponent at the qf(r) round?",
    "question_th": "คู่ต่อสู้ในรอบ qf(r) คือใคร?",
    "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_en": "What day was the game held at Firhill against AYR United?",
    "question_th": "เกมจัดขึ้นที่ Firhill กับ 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_en": "What is the average attendance at a game held at Firhill for the 5(r) round?",
    "question_th": "ผู้เข้าชมโดยเฉลี่ยในเกมที่จัดขึ้นที่ Firhill ในรอบ 5(r) เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_26 (attendance INTEGER, venue VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_18 WHERE record = \"0-1\"",
    "question_en": "Who was the opponent when the Seattle Seahawks had a record of 0-1?",
    "question_th": "คู่ต่อสู้เมื่อซีแอตเทิล ซีฮอว์กส์มีสถิติ 0-1 คือใคร?",
    "context": "CREATE TABLE table_name_18 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_87 WHERE record = \"8-7\"",
    "question_en": "Who was the opponent when the Seattle Seahawks had a record of 8-7?",
    "question_th": "คู่ต่อสู้เมื่อซีแอตเทิล ซีฮอว์กส์มีสถิติ 8-7 คือใคร?",
    "context": "CREATE TABLE table_name_87 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(points) FROM table_name_40 WHERE year > 1956",
    "question_en": "How many points after 1956?",
    "question_th": "หลังจากปี 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_en": "Before 1956, what Chassis has Gordini Straight-4 engine with 3 points?",
    "question_th": "ก่อนปี 1956 แชสซีรุ่นไหนมีเครื่องยนต์ Gordini Straight-4 มี 3 จุด?",
    "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_en": "What engine was used by Equipe Simca Gordini before 1956 with less than 4 points?",
    "question_th": "Equipe Simca Gordini ใช้เครื่องยนต์ใดก่อนปี 1956 โดยมีคะแนนน้อยกว่า 4 คะแนน",
    "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_en": "What chassis has smaller than 9 points by Equipe Rosier?",
    "question_th": "แชสซีใดที่มีขนาดเล็กกว่า 9 แต้ม โดย 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_en": "Who was the winner in the 2008 season?",
    "question_th": "ใครคือผู้ชนะในฤดูกาล 2008?",
    "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_en": "Who is the company Investing Dragons, or tiny box?",
    "question_th": "บริษัท Investing Dragons หรือกล่องจิ๋วคือใคร?",
    "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_en": "When did episode 6 first air with entrepreneur Guy Portelli?",
    "question_th": "ตอนที่ 6 ออกอากาศครั้งแรกกับผู้ประกอบการ Guy Portelli เมื่อใด",
    "context": "CREATE TABLE table_name_98 (first_aired VARCHAR, episode VARCHAR, entrepreneur_s_ VARCHAR)"
  },
  {
    "answer": "SELECT money_requested__£_ FROM table_name_39 WHERE company_or_product_name = \"neurotica\"",
    "question_en": "How much money did the company Neurotica request?",
    "question_th": "บริษัท Neurotica ขอเงินเท่าไหร่?",
    "context": "CREATE TABLE table_name_39 (money_requested__£_ VARCHAR, company_or_product_name VARCHAR)"
  },
  {
    "answer": "SELECT MIN(hits) FROM table_name_28 WHERE year < 1920 AND player = \"ed delahanty\"",
    "question_en": "Name the least hits for year less than 1920 and player of ed delahanty",
    "question_th": "ตั้งชื่อเพลงฮิตน้อยที่สุดสำหรับปีที่น้อยกว่าปี 1920 และผู้เล่นของ 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_en": "Name the player with 238 hits and years after 1885",
    "question_th": "ตั้งชื่อผู้เล่นด้วยจำนวนการเข้าชม 238 ครั้งและปีหลังปี 1885",
    "context": "CREATE TABLE table_name_8 (player VARCHAR, year VARCHAR, hits VARCHAR)"
  },
  {
    "answer": "SELECT hits FROM table_name_86 WHERE year < 1883",
    "question_en": "Name the hits for years before 1883",
    "question_th": "ตั้งชื่อเพลงฮิตเมื่อหลายปีก่อนปี 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_en": "For the game that was played on october 22 in west side grounds, what is the total attendance",
    "question_th": "สำหรับเกมที่เล่นในวันที่ 22 ตุลาคมที่สนามฝั่งตะวันตก ผู้เข้าร่วมทั้งหมดเป็นเท่าใด",
    "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_en": "Which week was the first game played that had a time of 2:06 and less than 27,374 attendees?",
    "question_th": "สัปดาห์ใดคือเกมแรกที่เล่นซึ่งมีเวลา 2:06 น. และมีผู้เข้าร่วมน้อยกว่า 27,374 คน",
    "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_en": "In which class had 252 laps and a position of dnf?",
    "question_th": "ในคลาสใดมี 252 รอบและตำแหน่ง dnf?",
    "context": "CREATE TABLE table_name_5 (class VARCHAR, pos VARCHAR, laps VARCHAR)"
  },
  {
    "answer": "SELECT pos FROM table_name_35 WHERE year = 1997",
    "question_en": "What was the position in 1997?",
    "question_th": "ปี 2540 ดำรงตำแหน่งอะไร?",
    "context": "CREATE TABLE table_name_35 (pos VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT kit_manufacturer FROM table_name_99 WHERE team = \"arsenal\"",
    "question_en": "Which Kit manufacturer sponsers Arsenal?",
    "question_th": "ผู้ผลิตชุดอุปกรณ์รายใดที่สนับสนุนอาร์เซนอล",
    "context": "CREATE TABLE table_name_99 (kit_manufacturer VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT captain FROM table_name_31 WHERE manager = \"gianluca vialli\"",
    "question_en": "Which captain is managed by gianluca vialli?",
    "question_th": "จานลูก้า วิอัลลี่ คุมกัปตันทีมคนไหน?",
    "context": "CREATE TABLE table_name_31 (captain VARCHAR, manager VARCHAR)"
  },
  {
    "answer": "SELECT kit_manufacturer FROM table_name_90 WHERE team = \"everton\"",
    "question_en": "Which Kit Manufacturer supports team Everton?",
    "question_th": "ผู้ผลิตชุดอุปกรณ์ใดที่สนับสนุนทีมเอฟเวอร์ตัน?",
    "context": "CREATE TABLE table_name_90 (kit_manufacturer VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_28 WHERE manager = \"david o'leary\"",
    "question_en": "Which team does David O'leary manage?",
    "question_th": "เดวิด โอเลียรี่ คุมทีมไหน?",
    "context": "CREATE TABLE table_name_28 (team VARCHAR, manager VARCHAR)"
  },
  {
    "answer": "SELECT shirt_sponsor FROM table_name_68 WHERE kit_manufacturer = \"nike\"",
    "question_en": "Which shirt sponser has Nike as a kit manufacturer?",
    "question_th": "ผู้สนับสนุนเสื้อรายใดที่มี Nike เป็นผู้ผลิตชุดอุปกรณ์",
    "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_en": "Which title has a year prior to 2008 and xbox 360 as the platform?",
    "question_th": "ชื่อใดที่มีหนึ่งปีก่อนปี 2008 และ xbox 360 เป็นแพลตฟอร์ม",
    "context": "CREATE TABLE table_name_31 (title VARCHAR, year VARCHAR, platform VARCHAR)"
  },
  {
    "answer": "SELECT publisher FROM table_name_4 WHERE title = \"far cry\"",
    "question_en": "Which publisher has Far Cry as the title?",
    "question_th": "สำนักพิมพ์ใดมี Far Cry เป็นชื่อเรื่อง?",
    "context": "CREATE TABLE table_name_4 (publisher VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_85 WHERE platform = \"xbox\" AND year < 2006",
    "question_en": "Which title has xbox as the platform with a year prior to 2006?",
    "question_th": "ชื่อใดที่มี xbox เป็นแพลตฟอร์มในหนึ่งปีก่อนปี 2549",
    "context": "CREATE TABLE table_name_85 (title VARCHAR, platform VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT developer FROM table_name_59 WHERE platform = \"xbox 360\"",
    "question_en": "Which developer has xbox 360 as the platform?",
    "question_th": "นักพัฒนารายใดมี xbox 360 เป็นแพลตฟอร์ม",
    "context": "CREATE TABLE table_name_59 (developer VARCHAR, platform VARCHAR)"
  },
  {
    "answer": "SELECT AVG(year) FROM table_name_93 WHERE title = \"far cry vengeance\"",
    "question_en": "What is the average year that has far cry vengeance as the title?",
    "question_th": "ปีเฉลี่ยที่มีการล้างแค้นไกลเป็นชื่อคืออะไร?",
    "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_en": "Which position is the highest to have less than 54 goals, a loss of 7 and a goal difference higher than 23?",
    "question_th": "ตำแหน่งไหนสูงที่สุดที่ทำได้น้อยกว่า 54 ประตู เสีย 7 ประตู และผลต่างประตูมากกว่า 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_en": "Which is the lowest played with 28-10 points and goals higher than 29?",
    "question_th": "ซึ่งเล่นต่ำสุดด้วยคะแนน 28-10 และประตูที่สูงกว่า 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_en": "How many positions have 14 wins, goals against of 61 and fewer than 19 losses?",
    "question_th": "มีกี่ตำแหน่งที่ชนะ 14 ครั้ง เสียประตู 61 ประตู และแพ้น้อยกว่า 19 ครั้ง?",
    "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_en": "What is the average loss with a goal higher than 51 and wins higher than 14?",
    "question_th": "การสูญเสียโดยเฉลี่ยโดยมีเป้าหมายสูงกว่า 51 และชนะสูงกว่า 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_en": "Name the average ends for weston",
    "question_th": "ตั้งชื่อจุดสิ้นสุดเฉลี่ยสำหรับเวสตัน",
    "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_en": "What is the lowest decile with a state authority and Midhirst school?",
    "question_th": "Decile ต่ำสุดที่มีอำนาจของรัฐและโรงเรียน Midhirst คืออะไร?",
    "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_en": "What area is Central Takaka School in?",
    "question_th": "โรงเรียนกลางทากากะตั้งอยู่ในพื้นที่ใด?",
    "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_en": "What is the Mach with Vehicle Flight # m2-f2 #8 and an Altitude (meters) greater than 13,716?",
    "question_th": "Mach with Vehicle Flight # m2-f2 #8 คืออะไร และระดับความสูง (เมตร) มากกว่า 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_en": "What Vehicle Flight # has Pilot Peterson and Velocity (km/h) of 649?",
    "question_th": "ยานพาหนะเที่ยวบิน # ใดที่มีนักบินปีเตอร์สันและความเร็ว (กม./ชม.) เท่ากับ 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_en": "What Date has a Mach of 0.662?",
    "question_th": "วันที่เท่าไหร่มีมัค 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_en": "In 1865, what was the first party?",
    "question_th": "ในปี พ.ศ. 2408 งานปาร์ตี้ครั้งแรกคืออะไร?",
    "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_en": "Which Barrel twist has a Stock of canadian 3rd generation and a Hand guards of short ribbed?",
    "question_th": "Barrel Twist ตัวไหนมี Stock ของแคนาดารุ่นที่ 3 และแฮนด์การ์ดแบบซี่โครงสั้น?",
    "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_en": "Which Hand guards has a Barrel profile of a2 and a Rear sight of weaver?",
    "question_th": "การ์ดแฮนด์ตัวไหนมีโปรไฟล์ลำกล้องขนาด a2 และมีระยะการมองเห็นด้านหลังของช่างทอผ้า?",
    "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_en": "Who was the co-driver for the team with more than 160 laps and the number 6 after 2010?",
    "question_th": "ใครคือนักขับร่วมของทีมที่วิ่งเกิน 160 รอบและหมายเลข 6 หลังปี 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_en": "What is the fewest laps for a team with a position of DNF and a number smaller than 25 before 2001?",
    "question_th": "รอบน้อยที่สุดสำหรับทีมที่มีตำแหน่ง DNF และจำนวนน้อยกว่า 25 ก่อนปี 2544 คือเท่าใด",
    "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_en": "What is the highest number of votes for the French Professor?",
    "question_th": "ศาสตราจารย์ชาวฝรั่งเศสได้รับคะแนนโหวตสูงสุดคือเท่าใด",
    "context": "CREATE TABLE table_name_20 (votes INTEGER, occupation VARCHAR)"
  },
  {
    "answer": "SELECT constellation FROM table_name_38 WHERE designation = \"hip 4872\"",
    "question_en": "Where is Hip 4872?",
    "question_th": "ฮิป 4872 อยู่ที่ไหน",
    "context": "CREATE TABLE table_name_38 (constellation VARCHAR, designation VARCHAR)"
  },
  {
    "answer": "SELECT language_s_ FROM table_name_33 WHERE original_title = \"rosie\"",
    "question_en": "What is the language of the film Rosie?",
    "question_th": "ภาพยนตร์เรื่อง 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_en": "What was the title used for Rosie, the film nominated for the dutch language?",
    "question_th": "ชื่อเรื่องที่ใช้สำหรับ Rosie ภาพยนตร์ที่ได้รับการเสนอชื่อเข้าชิงภาษาดัตช์คืออะไร",
    "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_en": "Who won the Mixed Doubles in 2007?",
    "question_th": "ใครชนะประเภทคู่ผสมในปี 2550?",
    "context": "CREATE TABLE table_name_49 (mixed_doubles VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT AVG(round) FROM table_name_8 WHERE player = \"adrien clarke\"",
    "question_en": "What is the average Round number of Player Adrien Clarke?",
    "question_th": "จำนวนรอบเฉลี่ยของผู้เล่น Adrien Clarke คือเท่าไร?",
    "context": "CREATE TABLE table_name_8 (round INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(round) FROM table_name_31 WHERE pick > 209",
    "question_en": "What is the highest round number of a Pick after 209.",
    "question_th": "หมายเลขรอบสูงสุดของ Pick หลังจาก 209 คือเท่าใด",
    "context": "CREATE TABLE table_name_31 (round INTEGER, pick INTEGER)"
  },
  {
    "answer": "SELECT score FROM table_name_56 WHERE record = \"39-20\"",
    "question_en": "What was the score when the Blue Jays had a record of 39-20?",
    "question_th": "เมื่อบลูเจย์สมีสถิติ 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_en": "Which player has a to par of e and a score of 67-73=140?",
    "question_th": "ผู้เล่นคนไหนมีพาร์ e และคะแนน 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_en": "What country is Adam Scott from?",
    "question_th": "Adam Scott มาจากประเทศใด",
    "context": "CREATE TABLE table_name_19 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_81 WHERE country = \"canada\"",
    "question_en": "What is Canada's score?",
    "question_th": "คะแนนของแคนาดาคืออะไร?",
    "context": "CREATE TABLE table_name_81 (score VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_31 WHERE score = 70 - 66 = 136",
    "question_en": "Which country has a score of 70-66=136?",
    "question_th": "ประเทศใดมีคะแนน 70-66=136?",
    "context": "CREATE TABLE table_name_31 (country VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_3 WHERE country = \"sweden\"",
    "question_en": "Which player is from Sweden?",
    "question_th": "นักเตะคนไหนมาจากสวีเดน?",
    "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_en": "What is the total number of field goals of Denan Kemp, who has more than 4 tries, more than 32 points, and 0 goals?",
    "question_th": "จำนวนการยิงประตูของเดนาน เคมป์ ที่พยายามมากกว่า 4 ครั้ง มากกว่า 32 แต้ม และ 0 ประตูคือเท่าไหร่?",
    "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_en": "What is the number of goals Dave Taylor, who has more than 1 tries, has?",
    "question_th": "เดฟ เทย์เลอร์ ที่พยายามมากกว่า 1 ครั้ง ทำได้กี่ประตู?",
    "context": "CREATE TABLE table_name_65 (goals INTEGER, player VARCHAR, tries VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(goals) FROM table_name_74 WHERE points < 4",
    "question_en": "How many goals did the player with less than 4 points have?",
    "question_th": "ผู้เล่นที่มีคะแนนน้อยกว่า 4 แต้มมีกี่ประตู?",
    "context": "CREATE TABLE table_name_74 (goals VARCHAR, points INTEGER)"
  },
  {
    "answer": "SELECT joined FROM table_name_74 WHERE mascot = \"blue devils\"",
    "question_en": "When doeas Mascot of blue devils in Gary Froebel School?",
    "question_th": "เมื่อไหร่จะได้เป็นมาสคอตของปีศาจสีน้ำเงินในโรงเรียน Gary Froebel?",
    "context": "CREATE TABLE table_name_74 (joined VARCHAR, mascot VARCHAR)"
  },
  {
    "answer": "SELECT previous_conference FROM table_name_49 WHERE school = \"whiting\"",
    "question_en": "Which conference held at School of whiting?",
    "question_th": "การประชุมใดที่จัดขึ้นที่ 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_en": "What is the lifespan of Joseph Vance, a democratic-republican from Ohio?",
    "question_th": "อายุขัยของโจเซฟ แวนซ์ พรรคเดโมแครต-รีพับลิกันจากโอไฮโอคือเท่าไร?",
    "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_en": "Name the loss on may 22",
    "question_th": "ตั้งชื่อขาดทุนวันที่ 22 พ.ค",
    "context": "CREATE TABLE table_name_29 (loss VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_18 WHERE record = \"84-69\"",
    "question_en": "Who was the Blue Jays opponent when their record was 84-69?",
    "question_th": "คู่ต่อสู้ของ Blue Jays คือใครเมื่อสถิติของพวกเขาคือ 84-69?",
    "context": "CREATE TABLE table_name_18 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_56 WHERE record = \"84-69\"",
    "question_en": "What was the date of the game when their record was 84-69?",
    "question_th": "วันที่ของเกมคือเมื่อใดที่สถิติของพวกเขาคือ 84-69?",
    "context": "CREATE TABLE table_name_56 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT laps FROM table_name_1 WHERE rank = \"16\"",
    "question_en": "How many laps does the one ranked 16 have?",
    "question_th": "อันดับที่ 16 มีกี่รอบ?",
    "context": "CREATE TABLE table_name_1 (laps VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT start FROM table_name_29 WHERE laps = \"676\"",
    "question_en": "What is the start of the race with 676 laps?",
    "question_th": "เริ่มการแข่งขันด้วยจำนวน 676 รอบเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_29 (start VARCHAR, laps VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_47 WHERE rank = \"1\"",
    "question_en": "What year was the ranking 1?",
    "question_th": "อันดับ 1 ปีไหนคะ?",
    "context": "CREATE TABLE table_name_47 (year VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_74 WHERE qual = \"141.071\"",
    "question_en": "What finish qualified at 141.071?",
    "question_th": "อะไรเข้ารอบสุดท้ายที่ 141.071?",
    "context": "CREATE TABLE table_name_74 (finish VARCHAR, qual VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_72 WHERE start = \"19\"",
    "question_en": "What ranking that had a start of 19?",
    "question_th": "อันดับไหนที่เริ่มต้นปี 19?",
    "context": "CREATE TABLE table_name_72 (rank VARCHAR, start VARCHAR)"
  },
  {
    "answer": "SELECT laps FROM table_name_4 WHERE qual = \"138.212\"",
    "question_en": "How many laps was qualifier of 138.212?",
    "question_th": "รอบคัดเลือก 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_en": "Name the place for score of 67-70=137 and stuart appleby",
    "question_th": "ตั้งชื่อสถานที่ด้วยคะแนน 67-70=137 และ 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_en": "Name the player for fiji",
    "question_th": "ตั้งชื่อผู้เล่นสำหรับฟิจิ",
    "context": "CREATE TABLE table_name_29 (player VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_99 WHERE country = \"fiji\"",
    "question_en": "Name the score for fiji",
    "question_th": "ตั้งชื่อคะแนนสำหรับฟิจิ",
    "context": "CREATE TABLE table_name_99 (score VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_8 WHERE player = \"vijay singh\"",
    "question_en": "Name the score for vijay singh",
    "question_th": "ตั้งชื่อคะแนนให้วีเจย์ซิงห์",
    "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_en": "What division was Ukraine in 2006/07?",
    "question_th": "ยูเครนอยู่แผนกใดในปี 2549/50?",
    "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_en": "What is the Airdate of the episode that ranked #29 and had a share greater than 10?",
    "question_th": "วันที่ออกอากาศของตอนที่อยู่ในอันดับที่ 29 และมีส่วนแบ่งมากกว่า 10 คืออะไร?",
    "context": "CREATE TABLE table_name_88 (airdate VARCHAR, share VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_1 WHERE airport = \"fuhlsbüttel airport\"",
    "question_en": "What city is fuhlsbüttel airport in?",
    "question_th": "สนามบินฟูลส์บึทเทลตั้งอยู่ในเมืองใด",
    "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_en": "What is the IATA for Ringway Airport in the United Kingdom?",
    "question_th": "IATA สำหรับสนามบิน Ringway ในสหราชอาณาจักรคืออะไร",
    "context": "CREATE TABLE table_name_1 (iata VARCHAR, country VARCHAR, airport VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_40 WHERE iata = \"ssg\"",
    "question_en": "Which city has the IATA SSG?",
    "question_th": "เมืองใดมี IATA SSG",
    "context": "CREATE TABLE table_name_40 (city VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT iata FROM table_name_58 WHERE airport = \"galeão airport\"",
    "question_en": "What is the IATA of galeão airport?",
    "question_th": "IATA ของสนามบินกาเลียวคืออะไร?",
    "context": "CREATE TABLE table_name_58 (iata VARCHAR, airport VARCHAR)"
  },
  {
    "answer": "SELECT icao FROM table_name_13 WHERE city = \"douala\"",
    "question_en": "What is the ICAO of Douala city?",
    "question_th": "ICAO ของเมืองดูอาลาคืออะไร?",
    "context": "CREATE TABLE table_name_13 (icao VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT icao FROM table_name_2 WHERE airport = \"lohausen airport\"",
    "question_en": "What is the ICAO of Lohausen airport?",
    "question_th": "สนามบิน ICAO ของ Lohausen คืออะไร?",
    "context": "CREATE TABLE table_name_2 (icao VARCHAR, airport VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_46 WHERE record = \"62-67\"",
    "question_en": "What was the score of the game when their record was 62-67",
    "question_th": "เมื่อสถิติของพวกเขาอยู่ที่ 62-67 ในเกมนั้นสกอร์เท่าไหร่",
    "context": "CREATE TABLE table_name_46 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT hdmi FROM table_name_29 WHERE codename = \"trinity (valhalla)\"",
    "question_en": "Does Trinity (valhalla) have HDMI?",
    "question_th": "Trinity (valhalla) มี HDMI หรือไม่",
    "context": "CREATE TABLE table_name_29 (hdmi VARCHAR, codename VARCHAR)"
  },
  {
    "answer": "SELECT in_production FROM table_name_66 WHERE codename = \"jasper\"",
    "question_en": "Is Jasper being producted?",
    "question_th": "Jasper กำลังถูกผลิตหรือไม่?",
    "context": "CREATE TABLE table_name_66 (in_production VARCHAR, codename VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_36 WHERE home_captain = \"courtney walsh\"",
    "question_en": "What is the result of Courtney Walsh ?",
    "question_th": "ผลลัพธ์ของ 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_en": "When did a Venue of Antigua Recreation Ground happen?",
    "question_th": "สถานที่จัดงาน Antigua Recreation Ground เกิดขึ้นเมื่อใด",
    "context": "CREATE TABLE table_name_40 (date VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_9 WHERE result = \"wi by 8 wkts\"",
    "question_en": "What is the Venue which has a Wi by 8 wkts?",
    "question_th": "สถานที่ซึ่งมี Wi คูณ 8 สัปดาห์คืออะไร",
    "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_en": "Which Home captain has Date of 25,26,27,29,30 march 1994?",
    "question_th": "กัปตันทีมคนไหนมีวันที่ 25,26,27,29,30 มีนาคม 1994?",
    "context": "CREATE TABLE table_name_6 (home_captain VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT home_captain FROM table_name_42 WHERE venue = \"bourda\"",
    "question_en": "Which Home Captain has Venue of Bourda?",
    "question_th": "กัปตันทีมคนไหนมีสถานที่ของ 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_en": "Which Home Captain has Eng by 208 runs?",
    "question_th": "กัปตันบ้านคนไหนมีภาษาอังกฤษภายใน 208 วิ่ง?",
    "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_en": "What's the Highest Goal Ratio with a League of 88 and an FA Cup less than 7?",
    "question_th": "อัตราประตูสูงสุดกับลีกที่ 88 และเอฟเอคัพน้อยกว่า 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_en": "What was the lowest year that the engine Ilmor 2175a 3.5 v10 was used?",
    "question_th": "ปีต่ำสุดที่ใช้เครื่องยนต์ Ilmor 2175a 3.5 v10 คือปีใด",
    "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_en": "Which engine did dr ing f porsche kg use with the porsche rsk (f2) chassis?",
    "question_th": "เครื่องยนต์ใดที่ dr ing f porsche kg ใช้กับแชสซีของ porsche rsk (f2)",
    "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_en": "What chassis did the porsche flat-4 use before 1958?",
    "question_th": "porsche flat-4 ใช้แชสซีใดก่อนปี 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_en": "What engine did the porsche 718 chassis use?",
    "question_th": "แชสซีของ porsche 718 ใช้เครื่องยนต์อะไร?",
    "context": "CREATE TABLE table_name_52 (engine VARCHAR, chassis VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_name_67 WHERE points > 0",
    "question_en": "Which year had more than 0 points?",
    "question_th": "ปีไหนได้เกิน 0 คะแนน?",
    "context": "CREATE TABLE table_name_67 (year VARCHAR, points INTEGER)"
  },
  {
    "answer": "SELECT position FROM table_name_83 WHERE year = 1999",
    "question_en": "What position is 1999?",
    "question_th": "ปี 2542 ดำรงตำแหน่งอะไร?",
    "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_en": "Where were the Mediterranean games after 2005?",
    "question_th": "เกมเมดิเตอร์เรเนียนหลังปี 2548 อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_79 (venue VARCHAR, competition VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_name_37 WHERE venue = \"bydgoszcz, poland\"",
    "question_en": "What are the notes for bydgoszcz, Poland?",
    "question_th": "อะไรคือบันทึกของบิดกอชช์ ประเทศโปแลนด์?",
    "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_en": "Name the least lane for kasey giteau and rank less than 18",
    "question_th": "ตั้งชื่อเลนที่น้อยที่สุดสำหรับ kasey giteau และอันดับน้อยกว่า 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_en": "Name the total number of lane for brooke bennett and rank less than 1",
    "question_th": "ตั้งชื่อจำนวนเลนทั้งหมดสำหรับ brooke bennett และอันดับที่น้อยกว่า 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_en": "Name the average rank with larger than 3 and heat more than 5",
    "question_th": "ตั้งชื่ออันดับเฉลี่ยที่มีค่ามากกว่า 3 และความร้อนมากกว่า 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_en": "Who was the player associated with Ole Miss in years after 2008 with a Mississippi St. name of Eric Moulds?",
    "question_th": "ใครคือผู้เล่นที่เกี่ยวข้องกับ Ole Miss ในช่วงหลายปีหลังปี 2008 โดยมีชื่อ Eric Moulds ใน Mississippi St.",
    "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_en": "Who was the Ole Miss player associated with Chuck Dicus?",
    "question_th": "ใครคือผู้เล่น Ole Miss ที่เกี่ยวข้องกับ 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_en": "Who was the Alabama player associated with Walt Harris?",
    "question_th": "ใครคือผู้เล่น Alabama ที่เกี่ยวข้องกับ 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_en": "Who was the Mississippi State player associated with Cornelius Bennett?",
    "question_th": "ใครคือผู้เล่นของรัฐมิสซิสซิปปี้ที่เกี่ยวข้องกับคอร์นีเลียส เบนเน็ตต์",
    "context": "CREATE TABLE table_name_55 (mississippi_st VARCHAR, alabama VARCHAR)"
  },
  {
    "answer": "SELECT arkansas FROM table_name_22 WHERE alabama = \"ken stabler\"",
    "question_en": "Who is the Arkansas player associated with Ken Stabler?",
    "question_th": "ผู้เล่น Arkansas ที่เกี่ยวข้องกับ 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_en": "What is the roll of Bishop Viard College (An Integrated College), which has a decile larger than 1?",
    "question_th": "Bishop Viard College (An Integrated College) มีจำนวนเดซิล์มากกว่า 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_en": "What was the decile of Samuel Marsden Collegiate School in Whitby, when it had a roll higher than 163?",
    "question_th": "อะไรคือความเสื่อมโทรมของ Samuel Marsden Collegiate School ในวิตบี เมื่อม้วนได้สูงกว่า 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_en": "What integrated school had a decile of 2 and a roll larger than 55?",
    "question_th": "โรงเรียนบูรณาการใดที่มีเดซิลเป็น 2 และม้วนใหญ่กว่า 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_en": "Who was the 4 lane person from Canada?",
    "question_th": "คน 4 เลนจากแคนาดาคือใคร?",
    "context": "CREATE TABLE table_name_9 (heat INTEGER, lane VARCHAR, nationality VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_89 WHERE year = \"1939\"",
    "question_en": "In 1939, what was the finish?",
    "question_th": "เมื่อปี 1939 ตอนจบเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_89 (finish VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_37 WHERE year = \"1937\"",
    "question_en": "In 1937, what was the finish?",
    "question_th": "เมื่อปี พ.ศ. 2480 ตอนจบเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_37 (finish VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_62 WHERE qual = \"120.006\"",
    "question_en": "The Qual of 120.006 took place in what year?",
    "question_th": "รอบคัดเลือก 120.006 เกิดขึ้นในปีใด?",
    "context": "CREATE TABLE table_name_62 (year VARCHAR, qual VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_41 WHERE rank = \"19\" AND start = \"14\"",
    "question_en": "With a Rank of 19, and a Start of 14, what was the finish?",
    "question_th": "ด้วยอันดับที่ 19 และการเริ่มต้นที่ 14 การจบสกอร์เป็นอย่างไร?",
    "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_en": "What company made the chassis when Ferrari made the engine and there were 25 points?",
    "question_th": "บริษัทไหนทำแชสซีส์ ในตอนที่ Ferrari ทำเครื่องยนต์แล้วมี 25 คะแนน?",
    "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_en": "What is the most points when Maserati made the engine, and a Entrant of owen racing organisation?",
    "question_th": "อะไรคือคะแนนมากที่สุดเมื่อ Maserati สร้างเครื่องยนต์ และเข้าร่วมองค์กรแข่งรถของ Owen?",
    "context": "CREATE TABLE table_name_70 (points INTEGER, engine VARCHAR, entrant VARCHAR)"
  },
  {
    "answer": "SELECT chassis FROM table_name_8 WHERE points = 8",
    "question_en": "What company made the chassis when there were 8 points?",
    "question_th": "บริษัทไหนทำแชสซีตอนมี 8 แต้ม?",
    "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_en": "What is the entrant earlier than 1956 with a Vanwall Special chassis?",
    "question_th": "ผู้เข้าแข่งขันก่อนปี 1956 ที่มีแชสซี Vanwall Special คืออะไร?",
    "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_en": "what is the number of wins that is in the Top 10 and larger than 13?",
    "question_th": "จำนวนชัยชนะที่อยู่ใน 10 อันดับแรกและมากกว่า 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_en": "What is the average number of cuts made in the Top 25 smaller than 5?",
    "question_th": "จำนวนการตัดโดยเฉลี่ยใน 25 อันดับแรกที่น้อยกว่า 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_en": "What is the lowest top 5 winners with less than 0?",
    "question_th": "ผู้ชนะ 5 อันดับแรกต่ำสุดที่มีค่าน้อยกว่า 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_en": "How many points for the cooper car company after 1959?",
    "question_th": "บริษัทคูเปอร์คาร์หลังปี 59 ได้กี่คะแนน?",
    "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_en": "What is the average 3620 value that has a 5432 of 1277 and a 15122 less than 1540?",
    "question_th": "ค่าเฉลี่ย 3620 ที่มี 5432 จาก 1277 และ 15122 น้อยกว่า 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_en": "What is the average 5432 value with a 11502 larger than 1163, a 15122 less than 15122, and a 3620 less than 624?",
    "question_th": "ค่าเฉลี่ย 5432 โดย 11502 มากกว่า 1163, 15122 น้อยกว่า 15122 และ 3620 น้อยกว่า 624 คืออะไร",
    "context": "CREATE TABLE table_name_12 (Id VARCHAR)"
  },
  {
    "answer": "SELECT MAX(3620) FROM table_name_34 WHERE 5432 = 5432 AND 15122 > 15122",
    "question_en": "What is the highest 3620 value with a 5432 of 5432 and a 15122 greater than 15122?",
    "question_th": "ค่าสูงสุด 3620 โดยมีค่า 5432 จาก 5432 และ 15122 มากกว่า 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_en": "Which representative was the Ambassador Extraordinary and Plenipotentiary and had a Termination of Mission date September 20, 1996?",
    "question_th": "ผู้แทนคนใดเป็นเอกอัครราชทูตวิสามัญและผู้มีอำนาจเต็ม และมีการสิ้นสุดภารกิจเมื่อวันที่ 20 กันยายน 2539?",
    "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_en": "Which representative has a Termination of MIssion date Mar 25, 1976?",
    "question_th": "ตัวแทนคนใดมีวันสิ้นสุดภารกิจในวันที่ 25 มีนาคม พ.ศ. 2519",
    "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_en": "What was the Termination of Mission date for the ambassador who was appointed by Barack Obama?",
    "question_th": "วันที่สิ้นสุดภารกิจของเอกอัครราชทูตที่ได้รับการแต่งตั้งจากบารัค โอบามาคือเมื่อใด",
    "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_en": "What is the Termination of Mission date for Marsha E. Barnes, the Ambassador Extraordinary and Plenipotentiary?",
    "question_th": "วันที่สิ้นสุดภารกิจของ Marsha E. Barnes เอกอัครราชทูตวิสามัญและผู้มีอำนาจเต็มคือเมื่อใด",
    "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_en": "Who appointed the representative that had a Presentation of Credentials on March 25, 1976?",
    "question_th": "ใครเป็นผู้แต่งตั้งตัวแทนซึ่งมีการนำเสนอหนังสือรับรองเมื่อวันที่ 25 มีนาคม พ.ศ. 2519",
    "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_en": "Which character first appeared in Amazing Fantasy #15?",
    "question_th": "ตัวละครใดปรากฏตัวครั้งแรกใน 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_en": "What is Action Comics #1's estimated value?",
    "question_th": "มูลค่าโดยประมาณของ Action Comics #1 คืออะไร?",
    "context": "CREATE TABLE table_name_79 (estimated_value VARCHAR, first_appearance VARCHAR)"
  },
  {
    "answer": "SELECT publisher FROM table_name_67 WHERE character_s_ = \"wolverine\"",
    "question_en": "Who publishes Wolverine?",
    "question_th": "ใครเป็นผู้จัดพิมพ์ 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_en": "What player's original team are the Oakland Raiders?",
    "question_th": "ทีมดั้งเดิมของผู้เล่นคนใดคือทีม 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_en": "What player's original team are the Buffalo Bills?",
    "question_th": "ทีมเดิมของผู้เล่นคนใดคือบัฟฟาโล บิลส์?",
    "context": "CREATE TABLE table_name_31 (player VARCHAR, original_nfl_team VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_10 WHERE money___$__ = 800",
    "question_en": "Which to par has a prize less than $800?",
    "question_th": "พาร์ไหนที่มีรางวัลน้อยกว่า $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_en": "Which country has a prize smaller than $250 and the player Henry Picard?",
    "question_th": "ประเทศใดมีรางวัลน้อยกว่า $250 และผู้เล่น 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_en": "Which score has a prize of $400?",
    "question_th": "คะแนนใดมีรางวัล $400?",
    "context": "CREATE TABLE table_name_77 (score VARCHAR, money___$__ VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_85 WHERE date = \"may 29\"",
    "question_en": "On May 29 which team had the loss?",
    "question_th": "วันที่ 29 พ.ค. ทีมไหนแพ้?",
    "context": "CREATE TABLE table_name_85 (loss VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_43 WHERE date = \"may 9\"",
    "question_en": "What was the score of the game played on May 9?",
    "question_th": "คะแนนของเกมที่เล่นในวันที่ 9 พฤษภาคมเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_43 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_70 WHERE record = \"26-19\"",
    "question_en": "On what date was their record 26-19?",
    "question_th": "บันทึกของพวกเขาคือวันที่ 26-19?",
    "context": "CREATE TABLE table_name_70 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_71 WHERE record = \"28-22\"",
    "question_en": "What team did they lose to when they had a 28-22 record?",
    "question_th": "พวกเขาแพ้ทีมใดเมื่อมีสถิติ 28-22?",
    "context": "CREATE TABLE table_name_71 (loss VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT AVG(year) FROM table_name_89 WHERE venue = \"melbourne, australia\"",
    "question_en": "What is the year of the tournament played at Melbourne, Australia?",
    "question_th": "การแข่งขันที่เมืองเมลเบิร์น ประเทศออสเตรเลีย จัดขึ้นในปีใด",
    "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_en": "What is earliest year that had a 50km event with a 2nd place result played in London, United Kingdom?",
    "question_th": "ปีแรกสุดที่มีการแข่งขันระยะทาง 50 กม. และคว้าอันดับ 2 ในลอนดอน ประเทศอังกฤษ คือปีใด",
    "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_en": "What is the result of the World Race Walking Cup tournament played before the year 2010?",
    "question_th": "ผลการแข่งขัน World Race Walking Cup ที่เล่นก่อนปี 2010 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_20 (result VARCHAR, year VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_55 WHERE year = \"1899\"",
    "question_en": "Which country had a tower destroyed in 1899?",
    "question_th": "ประเทศใดที่หอคอยถูกทำลายในปี พ.ศ. 2442",
    "context": "CREATE TABLE table_name_55 (country VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_66 WHERE record = \"28–45\"",
    "question_en": "Who was the opponent at the game when the record was 28–45?",
    "question_th": "คู่ต่อสู้ในเกมนี้คือใครเมื่อสถิติอยู่ที่ 28–45?",
    "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_en": "Which entrant has 4 points and BRM p25 for the Chassis?",
    "question_th": "ผู้เข้าแข่งขันคนใดมี 4 คะแนนและ BRM p25 สำหรับแชสซี",
    "context": "CREATE TABLE table_name_33 (entrant VARCHAR, pts VARCHAR, chassis VARCHAR)"
  },
  {
    "answer": "SELECT entrant FROM table_name_97 WHERE year < 1953",
    "question_en": "Who is the entrant when the year is less than 1953?",
    "question_th": "ใครคือผู้เข้าแข่งขันเมื่อไม่ถึงปี พ.ศ. 2496?",
    "context": "CREATE TABLE table_name_97 (entrant VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT pts FROM table_name_57 WHERE chassis = \"brm p25\"",
    "question_en": "How many points were scored when the Chassis is BRM p25?",
    "question_th": "เมื่อแชสซีเป็น 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_en": "Name the episode that aired october 8, 1988",
    "question_th": "ตั้งชื่อตอนที่ออกอากาศวันที่ 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_en": "Name the original airdate for mr. buckston",
    "question_th": "ตั้งชื่อวันออกอากาศเดิมของนาย บัคสตัน",
    "context": "CREATE TABLE table_name_23 (original_airdate VARCHAR, identity_ies_ VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_2 WHERE round = 23",
    "question_en": "What is the name of the player taken in round 23?",
    "question_th": "ผู้เล่นในรอบที่ 23 ชื่ออะไร?",
    "context": "CREATE TABLE table_name_2 (name VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT engine FROM table_name_76 WHERE year = \"1999\"",
    "question_en": "What engine was used in 1999?",
    "question_th": "เครื่องยนต์อะไรที่ใช้ในปี 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_en": "What rank did the chassis reynard 94i have in 1996?",
    "question_th": "แชสซี reynard 94i มีอันดับใดในปี 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_en": "What rank did the dallara chassis finish in 2000?",
    "question_th": "แชสซีของ dallara จบอันดับใดในปี 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_en": "Which engine finished 7th with the reynard 95i chassis?",
    "question_th": "เครื่องยนต์ใดจบอันดับที่ 7 ด้วยแชสซีของ Reynard 95i",
    "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_en": "What highest Year has Wins 15 and Losses less than 5?",
    "question_th": "ปีสูงสุดใดที่ชนะ 15 และแพ้น้อยกว่า 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_en": "What average Year has Losses 4, and Wins less than 18, and Draws greater than 1?",
    "question_th": "ปีใดโดยเฉลี่ยที่มีการแพ้ 4 และชนะน้อยกว่า 18 และเสมอมากกว่า 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_en": "What average Wins has Losses 2, and Draws less than 0?",
    "question_th": "การชนะโดยเฉลี่ยมีการแพ้ 2 และเสมอน้อยกว่า 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_en": "What average Loses has Draws less than 0?",
    "question_th": "ค่าเฉลี่ยการแพ้ที่มีการเสมอน้อยกว่า 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_en": "What sum of Losses has Year greater than 1972, and Competition of nswrfl, and Draws 0, and Wins 16?",
    "question_th": "ผลรวมของการสูญเสียที่มีปีที่มากกว่าปี 1972 และการแข่งขันของ nswrfl และเสมอ 0 และชนะ 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ón fuenlabrada\"",
    "question_en": "What is the height of the player who currently plays for Alta Gestión Fuenlabrada?",
    "question_th": "นักเตะที่เล่นให้กับ อัลต้า เกสติออน ฟูเอนลาบราดา มีส่วนสูงเท่าไหร่?",
    "context": "CREATE TABLE table_name_59 (height VARCHAR, current_club VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_94 WHERE player = \"mario kasun\"",
    "question_en": "What position does Mario Kasun play?",
    "question_th": "มาริโอ้ คาซุน เล่นตำแหน่งอะไร?",
    "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_en": "What is the largest number Lost to david nalbandian with a Win Rate of 20%?",
    "question_th": "หมายเลขที่ใหญ่ที่สุดที่แพ้ให้กับ David nalbandian ด้วยอัตราการชนะ 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_en": "What is the smallest number of Matches with less than 97 losses and a Win rate of 28.68%?",
    "question_th": "จำนวนแมตช์ที่น้อยที่สุดโดยแพ้น้อยกว่า 97 ครั้งและอัตราการชนะ 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 = \"– –\"",
    "question_en": "What is the total number of Lost for the Highest Ranking of – –?",
    "question_th": "จำนวนผู้แพ้ทั้งหมดสำหรับอันดับสูงสุดคือเท่าไร – –?",
    "context": "CREATE TABLE table_name_61 (lost VARCHAR, highest_ranking VARCHAR)"
  },
  {
    "answer": "SELECT MAX(lane) FROM table_name_74 WHERE name = \"inna nikitina\"",
    "question_en": "what lane did inna nikitina have?",
    "question_th": "อินนา นิกิติน่า มีเลนอะไร?",
    "context": "CREATE TABLE table_name_74 (lane INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_68 WHERE heat = 4 AND lane > 7",
    "question_en": "what is the name that saw 4 heats and a lane higher than 7?",
    "question_th": "ชื่ออะไรที่เห็น 4 ฮีตและเลนที่สูงกว่า 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_en": "What is the highest NBR number that corresponds to the J class and the road number of 1211?",
    "question_th": "หมายเลข NBR สูงสุดที่ตรงกับคลาส J และหมายเลขถนน 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_en": "How many road numbers are before 1922?",
    "question_th": "ก่อนปี 1922 มีหมายเลขถนนกี่สาย?",
    "context": "CREATE TABLE table_name_18 (road_number VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT original_operator FROM table_name_65 WHERE class = \"25nc\"",
    "question_en": "Which original operator is in the 25nc class?",
    "question_th": "โอเปอเรเตอร์ดั้งเดิมตัวใดที่อยู่ในคลาส 25nc",
    "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_en": "Which class starts after 1939 and has a road number smaller than 3508?",
    "question_th": "ชั้นเรียนใดเริ่มหลังปี 1939 และมีหมายเลขถนนเล็กกว่า 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–8600\"",
    "question_en": "Name the LB&SCR number that has SR number of 8597–8600",
    "question_th": "ตั้งชื่อหมายเลข LB&SCR ที่มีหมายเลข SR เป็น 8597–8600",
    "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_en": "What is the time of songs that have the writer Aaron Schroeder and Wally Gold?",
    "question_th": "ช่วงเวลาของเพลงที่มีผู้แต่ง Aaron Schroeder และ 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_en": "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?",
    "question_th": "เพลงที่ออกวันที่ 6/17/61 เพลงที่เกิน 20 และคนเขียนของ Woody Harris ชาร์ตพีคอยู่ที่เท่าไร?",
    "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_en": "What catalogue is the song It's Now or Never?",
    "question_th": "แคตตาล็อกเพลง 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_en": "On songs with track numbers smaller than number 17 and catalogues of LSP 2231, who are the writer(s)?",
    "question_th": "เพลงที่มีหมายเลขเพลงน้อยกว่าหมายเลข 17 และแคตตาล็อกของ LSP 2231 ใครคือผู้แต่ง?",
    "context": "CREATE TABLE table_name_27 (writer_s_ VARCHAR, catalogue VARCHAR, track VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_6 WHERE start = \"13\"",
    "question_en": "What year did he start at 13?",
    "question_th": "เขาเริ่มตอนอายุ 13 ปีอะไร?",
    "context": "CREATE TABLE table_name_6 (year VARCHAR, start VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_26 WHERE qual = \"123.660\"",
    "question_en": "What was the finish place with a qual of 123.660?",
    "question_th": "เข้าเส้นชัยด้วยสกอร์ 123.660 ได้ที่ไหนบ้าง?",
    "context": "CREATE TABLE table_name_26 (finish VARCHAR, qual VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_86 WHERE qual = \"115.095\"",
    "question_en": "What was the rank with the qual of 115.095?",
    "question_th": "อันดับที่เท่าไหร่ด้วยคะแนน 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_en": "Who was the runner-up when the margin was 1 stroke?",
    "question_th": "ใครได้รองแชมป์เมื่อมาร์จิ้นเป็น 1 จังหวะ?",
    "context": "CREATE TABLE table_name_1 (runner_s__up VARCHAR, margin VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_72 WHERE year = \"2004\"",
    "question_en": "What was the score in the year 2004?",
    "question_th": "คะแนนในปี 2547 เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_72 (score VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT runner_s__up FROM table_name_58 WHERE year = \"2008\"",
    "question_en": "Who was the runner-up when the year was 2008?",
    "question_th": "ใครคือรองชนะเลิศเมื่อปี 2551?",
    "context": "CREATE TABLE table_name_58 (runner_s__up VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_3 WHERE score = \"204 (-6)\"",
    "question_en": "In what year was the score 204 (-6)?",
    "question_th": "คะแนน 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_en": "What was the country when the margin was 2 strokes, and when the score was 276 (-4)?",
    "question_th": "ประเทศอะไรเมื่อมาร์จิ้นเป็น 2 จังหวะ และเมื่อสกอร์เป็น 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_en": "What is the Overall Record for the School in Milford?",
    "question_th": "ประวัติโดยรวมของโรงเรียนในมิลฟอร์ดคืออะไร?",
    "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_en": "What was the top first place prize in 1997?",
    "question_th": "รางวัลอันดับหนึ่งสูงสุดในปี 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_en": "What was the total purse in the years after 1996 with a score of 272 (-16) when frank nobilo won?",
    "question_th": "กระเป๋าเงินทั้งหมดในปีหลังปี 1996 เป็นเท่าใดด้วยคะแนน 272 (-16) เมื่อแฟรงค์ โนบิโลชนะ",
    "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_en": "What is the average Rank for a lane smaller than 3 with a nationality of Australia?",
    "question_th": "อันดับเฉลี่ยสำหรับเลนที่เล็กกว่า 3 ที่มีสัญชาติออสเตรเลียคือเท่าไร?",
    "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 ørnstedt\"",
    "question_en": "what is the number of lane with a rank more than 2 for Louise ørnstedt?",
    "question_th": "Louise ørnstedt มีเลนที่มีอันดับมากกว่า 2 เบอร์เท่าไร",
    "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_en": "What shows for nationality when there is a rank larger than 6, and a Time of 2:14.95?",
    "question_th": "อะไรจะแสดงให้เห็นสัญชาติเมื่อมีอันดับมากกว่า 6 และเวลา 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_en": "What is the Total Region number of hte one that has Eidsvold at 970 and Biggenden larger than 1,570?",
    "question_th": "อะไรคือจำนวนภูมิภาคทั้งหมดของ hte ที่มี Eidsvold ที่ 970 และ Biggenden มากกว่า 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_en": "What is the average year with alfredo salazar fina salazar in mixed doubles?",
    "question_th": "ปีเฉลี่ยของอัลเฟรโด ซาลาซาร์ ฟิน่า ซาลาซาร์ในประเภทคู่ผสมคือเท่าไร?",
    "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_en": "Which venue had an extra of Team Competition and a result of 1st?",
    "question_th": "สถานที่ใดที่มีการแข่งขันแบบทีมเป็นพิเศษและผลการแข่งขันเป็นที่ 1?",
    "context": "CREATE TABLE table_name_48 (venue VARCHAR, extra VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_96 WHERE result = \"23rd\"",
    "question_en": "Which venue led to a result of 23rd?",
    "question_th": "สนามใดที่นำไปสู่ผลการแข่งขันวันที่ 23?",
    "context": "CREATE TABLE table_name_96 (venue VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_68 WHERE extra = \"junior race\"",
    "question_en": "Which venue had an extra of Junior Race?",
    "question_th": "สนามไหนมีความพิเศษของ 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_en": "Which venue led to a result of 13th and had an extra of Long Race?",
    "question_th": "สนามใดที่นำไปสู่ผลการแข่งขันอันดับที่ 13 และมีการแข่งขัน 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 – june 2\"",
    "question_en": "What is the percentage of Terry McAuliffe that has a Date Administered on May 31 – june 2",
    "question_th": "เปอร์เซ็นต์ของ Terry McAuliffe ที่มีการจัดวันที่ 31 พฤษภาคม – 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_en": "Which Source has Terry McAuliffe of 36%",
    "question_th": "แหล่งที่มาใดมี Terry McAuliffe ถึง 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–7\"",
    "question_en": "Which Terry McAuliffe is it that has a Dates Administered on June 6–7?",
    "question_th": "Terry McAuliffe คนไหนที่มีวันที่จัดการในวันที่ 6–7 มิถุนายน",
    "context": "CREATE TABLE table_name_8 (terry_mcauliffe VARCHAR, dates_administered VARCHAR)"
  },
  {
    "answer": "SELECT source FROM table_name_64 WHERE brian_moran = \"19%\"",
    "question_en": "Which Source has a Brian Moran of 19%?",
    "question_th": "แหล่งที่มาใดมี Brian Moran 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_en": "What team played on the road against the Buffalo Bills at home ?",
    "question_th": "ทีมใดเล่นบนถนนกับบัฟฟาโล บิลส์ในบ้าน ?",
    "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_en": "Which week did the Baltimore Ravens play at home ?",
    "question_th": "บัลติมอร์ เรเวนส์ เล่นในบ้านสัปดาห์ไหน?",
    "context": "CREATE TABLE table_name_79 (week VARCHAR, host_team VARCHAR)"
  },
  {
    "answer": "SELECT final_score FROM table_name_53 WHERE week = 14",
    "question_en": "What was the final score on week 14 ?",
    "question_th": "คะแนนสุดท้ายของสัปดาห์ที่ 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_en": "When did the Baltimore Ravens play at home ?",
    "question_th": "บัลติมอร์ เรเวนส์ เล่นในบ้านเมื่อไหร่?",
    "context": "CREATE TABLE table_name_79 (date VARCHAR, host_team VARCHAR)"
  },
  {
    "answer": "SELECT final_score FROM table_name_46 WHERE week = 3",
    "question_en": "What was the final score in week 3 ?",
    "question_th": "คะแนนสุดท้ายในสัปดาห์ที่ 3 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_46 (final_score VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_name_79 WHERE member = \"ralph jacobi\"",
    "question_en": "To what party does Ralph Jacobi belong?",
    "question_th": "Ralph Jacobi อยู่ในพรรคใด?",
    "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_en": "When was Hon Les Johnson in office?",
    "question_th": "ฮอน เลส จอห์นสัน เข้ารับตำแหน่งเมื่อใด",
    "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_en": "Which party had a member from the state of Vic and an Electorate called Wannon?",
    "question_th": "พรรคไหนมีสมาชิกจากรัฐวิกและผู้มีสิทธิเลือกตั้งชื่อวานนอน?",
    "context": "CREATE TABLE table_name_23 (party VARCHAR, state VARCHAR, electorate VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_name_45 WHERE member = \"mick young\"",
    "question_en": "What party is Mick Young a member of?",
    "question_th": "มิกค์ ยัง เป็นสมาชิกพรรคไหน?",
    "context": "CREATE TABLE table_name_45 (party VARCHAR, member VARCHAR)"
  },
  {
    "answer": "SELECT tyres FROM table_name_70 WHERE class = \"c\" AND year < 1983",
    "question_en": "Which tires were in Class C in years before 1983?",
    "question_th": "ยางใดบ้างที่อยู่ในคลาส C เมื่อหลายปีก่อนปี 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_en": "What is the earliest year that had a co-driver of Roger Enever?",
    "question_th": "ปีแรกสุดที่มีคนขับร่วมของ Roger Enever คืออะไร?",
    "context": "CREATE TABLE table_name_77 (year INTEGER, co_drivers VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_55 WHERE goal = 3",
    "question_en": "Which date has 3 as the goal?",
    "question_th": "เป้าหมายมี 3 วันไหน?",
    "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_en": "What Label released on October 25, 1984, in the format of Stereo LP?",
    "question_th": "ค่ายเพลงอะไรเปิดตัวเมื่อวันที่ 25 ตุลาคม พ.ศ. 2527 ในรูปแบบ 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_en": "What are the catalogs of releases from Sony Music Direct?",
    "question_th": "แค็ตตาล็อกของเพลงที่ออกจาก 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_en": "What is the region of the release of a CD with catalog 32xa-119?",
    "question_th": "ภูมิภาคที่วางจำหน่ายซีดีพร้อมแค็ตตาล็อก 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_en": "What is the catalog of the release from January 23, 2002?",
    "question_th": "แค็ตตาล็อกของการเปิดตัวตั้งแต่วันที่ 23 มกราคม พ.ศ. 2545 คืออะไร?",
    "context": "CREATE TABLE table_name_59 (catalog VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_name_55 WHERE date = \"may 27, 2009\"",
    "question_en": "What was the region of the release from May 27, 2009?",
    "question_th": "ภูมิภาคที่เผยแพร่ตั้งแต่วันที่ 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_en": "What is the region of the Alfa Records release with catalog ALCA-282?",
    "question_th": "Alfa Records พร้อมแค็ตตาล็อก 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_en": "What is the to par for the player from the United States with a 72-67-80-71=290 score?",
    "question_th": "พาร์สำหรับผู้เล่นจากสหรัฐอเมริกาด้วยคะแนน 72-67-80-71=290 คืออะไร?",
    "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_en": "Name the rank for laps less than 130 and year of 1951",
    "question_th": "ตั้งชื่ออันดับรอบน้อยกว่า 130 และปี พ.ศ. 2494",
    "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_en": "Name the year for laps of 200 and rank of 24",
    "question_th": "ตั้งชื่อปีสำหรับรอบ 200 และอันดับ 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_en": "Name the rank with finish of 12 and year of 1963",
    "question_th": "ตั้งชื่อยศด้วยจบอันดับที่ 12 และปี พ.ศ. 2506",
    "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_en": "Name the rank with laps of 200 and qual of 148.374",
    "question_th": "ตั้งชื่ออันดับด้วยรอบ 200 และรอบคัดเลือก 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_en": "Name the finish with Laps more than 200",
    "question_th": "ตั้งชื่อเส้นชัยด้วย Laps มากกว่า 200",
    "context": "CREATE TABLE table_name_17 (finish VARCHAR, laps INTEGER)"
  },
  {
    "answer": "SELECT rank FROM table_name_18 WHERE laps = 151",
    "question_en": "Name the rank for 151 Laps",
    "question_th": "ตั้งชื่ออันดับ 151 รอบ",
    "context": "CREATE TABLE table_name_18 (rank VARCHAR, laps VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_61 WHERE qual = \"totals\"",
    "question_en": "The qual of totals took place during what year?",
    "question_th": "การประเมินผลรวมเกิดขึ้นในปีใด",
    "context": "CREATE TABLE table_name_61 (year VARCHAR, qual VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_16 WHERE finish = \"15\"",
    "question_en": "What year did the finish of 15 happen in?",
    "question_th": "การจบ 15 เกิดขึ้นในปีใด?",
    "context": "CREATE TABLE table_name_16 (year VARCHAR, finish VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_71 WHERE rank = \"31\"",
    "question_en": "What's the Finish rank of 31?",
    "question_th": "อันดับสุดท้ายที่ 31 คืออะไร?",
    "context": "CREATE TABLE table_name_71 (finish VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_75 WHERE rank = \"31\"",
    "question_en": "What year did the rank of 31 happen in?",
    "question_th": "อันดับที่ 31 เกิดขึ้นในปีใด?",
    "context": "CREATE TABLE table_name_75 (year VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_77 WHERE result = \"4-1\"",
    "question_en": "Which item resulted in a score of 4-1?",
    "question_th": "รายการใดส่งผลให้สกอร์ 4-1?",
    "context": "CREATE TABLE table_name_77 (score VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_6 WHERE result = \"5-1\"",
    "question_en": "Which item has a score of 5-1?",
    "question_th": "รายการใดมีคะแนน 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_en": "Which competition had a 4-1 result, and a score of 4-1?",
    "question_th": "การแข่งขันรายการใดมีผล 4-1 และสกอร์ 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_en": "Name the 2009 ffor 2010 of 1r and 2012 of a and 2008 of 2r",
    "question_th": "ตั้งชื่อปี 2009 สำหรับปี 2010 ของ 1r และ 2012 ของ a และ 2008 ของ 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_en": "Name the 2011 for 2012 of a and 2010 of 1r with 2008 of 2r",
    "question_th": "ตั้งชื่อปี 2011 สำหรับปี 2012 ของ a และ 2010 ของ 1r ด้วย 2008 ของ 2r",
    "context": "CREATE TABLE table_name_92 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2010 FROM table_name_95 WHERE tournament = \"us open\"",
    "question_en": "Name the 2010 for tournament of us open",
    "question_th": "ตั้งชื่อการแข่งขันของ us open ประจำปี 2010",
    "context": "CREATE TABLE table_name_95 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2010 FROM table_name_61 WHERE 2011 = \"a\" AND 2008 = \"1r\"",
    "question_en": "Name the 2010 for 2011 of a and 2008 of 1r",
    "question_th": "ตั้งชื่อปี 2010 สำหรับปี 2011 ของ a และ 2008 ของ 1r",
    "context": "CREATE TABLE table_name_61 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_94 WHERE 2010 = \"2r\"",
    "question_en": "Name the 2011 when 2010 is 2r",
    "question_th": "ตั้งชื่อปี 2011 เมื่อปี 2010 เป็น 2r",
    "context": "CREATE TABLE table_name_94 (Id VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_94 WHERE 2011 = \"2r\"",
    "question_en": "Name the tournament when it has 2011 of 2r",
    "question_th": "ตั้งชื่อทัวร์นาเมนต์เมื่อมี 2011 จาก 2r",
    "context": "CREATE TABLE table_name_94 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT AVG(attendance) FROM table_name_66 WHERE loss = \"papelbon (0–1)\"",
    "question_en": "What was the average attendance for games with a loss of papelbon (0–1)?",
    "question_th": "ผู้เข้าชมเกมที่แพ้กระดาษปาเปลบอนโดยเฉลี่ย (0–1) เป็นเท่าใด",
    "context": "CREATE TABLE table_name_66 (attendance INTEGER, loss VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(attendance) FROM table_name_74 WHERE record = \"16–14\"",
    "question_en": "When the team had their record of 16–14, what was the total attendance?",
    "question_th": "เมื่อทีมมีสถิติ 16–14 ผู้เข้าร่วมทั้งหมดเป็นเท่าใด",
    "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_en": "Who was in a with opponent St. Johnstone?",
    "question_th": "ใครอยู่ร่วมกับคู่ต่อสู้ เซนต์ จอห์นสโตน?",
    "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_en": "What venue was on 27 May 2000?",
    "question_th": "วันที่ 27 พฤษภาคม พ.ศ. 2543 จัดขึ้นที่ใด?",
    "context": "CREATE TABLE table_name_81 (venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT scorers FROM table_name_24 WHERE date = \"12 march 2000\"",
    "question_en": "Who was on 12 March 2000?",
    "question_th": "ใครคือใครในวันที่ 12 มีนาคม พ.ศ. 2543?",
    "context": "CREATE TABLE table_name_24 (scorers VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_55 WHERE player = \"jason dunstall\"",
    "question_en": "What is the rank of player Jason Dunstall?",
    "question_th": "เจสัน ดันสตอลล์ ผู้เล่นอันดับเท่าไหร่?",
    "context": "CREATE TABLE table_name_55 (rank VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_6 WHERE goals = \"1299\"",
    "question_en": "Which player has 1299 goals?",
    "question_th": "นักเตะคนไหนทำได้ 1299 ประตู?",
    "context": "CREATE TABLE table_name_6 (player VARCHAR, goals VARCHAR)"
  },
  {
    "answer": "SELECT club_clubs FROM table_name_11 WHERE player = \"tony lockett\"",
    "question_en": "In what club(s) does Tony Lockett play?",
    "question_th": "Tony Lockett เล่นอยู่ในสโมสรใด?",
    "context": "CREATE TABLE table_name_11 (club_clubs VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT manager FROM table_name_14 WHERE team = \"manchester city\"",
    "question_en": "Which manager has Manchester City as the team?",
    "question_th": "ผู้จัดการทีมคนไหนมีแมนเชสเตอร์ ซิตี้ เป็นทีม?",
    "context": "CREATE TABLE table_name_14 (manager VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT manager FROM table_name_7 WHERE team = \"sheffield wednesday\"",
    "question_en": "Which manager has sheffield wednesday as the team?",
    "question_th": "ผู้จัดการทีมคนไหนมีเชฟฟิลด์ เว้นส์เดย์ เป็นทีม?",
    "context": "CREATE TABLE table_name_7 (manager VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_77 WHERE manager = \"george graham\"",
    "question_en": "Which team has george graham as the manager?",
    "question_th": "ทีมไหนมีจอร์จ เกรแฮม เป็นผู้จัดการทีม?",
    "context": "CREATE TABLE table_name_77 (team VARCHAR, manager VARCHAR)"
  },
  {
    "answer": "SELECT kit_manufacturer FROM table_name_36 WHERE manager = \"billy bonds\"",
    "question_en": "What is the kit manufacturer that has billy bonds as the manager?",
    "question_th": "ผู้ผลิตชุดอุปกรณ์ที่มีบิลลี่บอนด์เป็นผู้จัดการคือบริษัทใด",
    "context": "CREATE TABLE table_name_36 (kit_manufacturer VARCHAR, manager VARCHAR)"
  },
  {
    "answer": "SELECT captain FROM table_name_34 WHERE manager = \"billy bonds\"",
    "question_en": "Which captain has billy bonds as the manager?",
    "question_th": "กัปตันคนไหนมีบิลลี่บอนด์เป็นผู้จัดการ?",
    "context": "CREATE TABLE table_name_34 (captain VARCHAR, manager VARCHAR)"
  },
  {
    "answer": "SELECT captain FROM table_name_52 WHERE manager = \"howard wilkinson\"",
    "question_en": "Which captain has howard wilkinson as the manager?",
    "question_th": "กัปตันทีมคนไหนมีโฮเวิร์ด วิลกินสันเป็นผู้จัดการทีม?",
    "context": "CREATE TABLE table_name_52 (captain VARCHAR, manager VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_90 WHERE record = \"46-48\"",
    "question_en": "What was the loss of the Brewers game when the record was 46-48?",
    "question_th": "ความพ่ายแพ้ของเกมบริวเวอร์สเมื่อสถิติอยู่ที่ 46-48 คืออะไร?",
    "context": "CREATE TABLE table_name_90 (loss VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_76 WHERE score = \"7-10\"",
    "question_en": "What was the record at the game that had a score of 7-10?",
    "question_th": "สถิติในเกมที่มีคะแนน 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_en": "Which chassis is more recent than 1972 and has more than 0 Pts. ?",
    "question_th": "แชสซีใดที่ใหม่กว่าปี 1972 และมีมากกว่า 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_en": "Which engine from 1973 has a Brabham bt37 chassis?",
    "question_th": "เครื่องยนต์ใดจากปี 1973 ที่มีแชสซี Brabham bt37",
    "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_en": "What score to highest to par did Mike Weir achieve?",
    "question_th": "Mike Weir ได้คะแนนสูงสุดถึงพาร์เท่าไหร่?",
    "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_en": "Who had a score of 70-73-69=212?",
    "question_th": "ใครได้คะแนน 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_en": "What player was place of t1 in To Par and had a score of 70-73-69=212?",
    "question_th": "ผู้เล่นคนไหนอยู่อันดับ t1 ในทูพาร์และมีคะแนน 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_en": "What score to par did Mike Weir have?",
    "question_th": "ไมค์ เวียร์ ได้สกอร์พาร์เท่าไร?",
    "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_en": "What place was the scorer of 67-74-73=214?",
    "question_th": "ผู้ทำประตู 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_en": "What country does Rocco Mediate play for?",
    "question_th": "Rocco Mediate เล่นให้กับประเทศใด?",
    "context": "CREATE TABLE table_name_77 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_17 WHERE player = \"rocco mediate\"",
    "question_en": "What is Rocco Mediate's par?",
    "question_th": "พาร์ของ Rocco Mediate คืออะไร?",
    "context": "CREATE TABLE table_name_17 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_49 WHERE player = \"chad campbell\"",
    "question_en": "What country is Chad Campbell from?",
    "question_th": "แชด แคมป์เบลล์ มาจากประเทศใด",
    "context": "CREATE TABLE table_name_49 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_28 WHERE country = \"spain\"",
    "question_en": "What was the score for Spain?",
    "question_th": "สเปนได้สกอร์เท่าไร?",
    "context": "CREATE TABLE table_name_28 (score VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_71 WHERE player = \"fred couples\"",
    "question_en": "Where is Fred Couples from?",
    "question_th": "Fred Couples มาจากไหน?",
    "context": "CREATE TABLE table_name_71 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_65 WHERE date = \"july 10\"",
    "question_en": "what's the record on july 10?",
    "question_th": "บันทึกวันที่ 10 กรกฎาคมเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_65 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT name_of_kingdom FROM table_name_65 WHERE capital = \"suin\"",
    "question_en": "Which kingdom has Suin as its capital?",
    "question_th": "อาณาจักรใดมีซุอินเป็นเมืองหลวง",
    "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_en": "What week did the September 9, 1967 game occur on?",
    "question_th": "เกมวันที่ 9 กันยายน พ.ศ. 2510 เกิดขึ้นในสัปดาห์ใด",
    "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_en": "What was the date of the game after week 5 against the Houston Oilers?",
    "question_th": "วันที่ของเกมหลังจากสัปดาห์ที่ 5 กับฮุสตัน ออยเลอร์สคือเมื่อใด",
    "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_en": "Which week was the game on December 14, 1967?",
    "question_th": "สัปดาห์ใดคือเกมในวันที่ 14 ธันวาคม พ.ศ. 2510",
    "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_en": "Who was the opponent after week 9 with an attendance of 44,020?",
    "question_th": "คู่ต่อสู้คือใครหลังจากสัปดาห์ที่ 9 โดยมีผู้เข้าร่วม 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_en": "What team played against Al-Ismaily (team 1)?",
    "question_th": "ทีมใดเล่นกับอัล-อิสไมลี (ทีม 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_en": "When Kabwe Warriors (team 1) played, what was the result of the 1st leg?",
    "question_th": "ตอนที่ คับเว วอร์ริเออร์ส (ทีม 1) ลงเล่น เลกแรก เป็นยังไงบ้าง?",
    "context": "CREATE TABLE table_name_66 (team_1 VARCHAR)"
  },
  {
    "answer": "SELECT team_1 FROM table_name_36 WHERE team_2 = \"hafia fc\"",
    "question_en": "What team played against Hafia FC (team 2)?",
    "question_th": "ทีมใดเล่นกับ ฮาเฟีย เอฟซี (ทีม 2)?",
    "context": "CREATE TABLE table_name_36 (team_1 VARCHAR, team_2 VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_24 WHERE week = 2",
    "question_en": "For the game that was played on week 2, what is the record?",
    "question_th": "สำหรับเกมที่เล่นในสัปดาห์ที่ 2 มีสถิติเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_24 (record VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_95 WHERE week = 15",
    "question_en": "What was the result of the game that was played on week 15?",
    "question_th": "ผลการแข่งขันที่เล่นในสัปดาห์ที่ 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_en": "How many carries have an average under 8.7 and touchdowns of 72?",
    "question_th": "มีกี่ลูกที่มีค่าเฉลี่ยต่ำกว่า 8.7 และทัชดาวน์ 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_en": "What is the average number of carries that have more than 72 touchdowns?",
    "question_th": "จำนวนการบรรทุกโดยเฉลี่ยที่มีทัชดาวน์มากกว่า 72 ครั้งเป็นเท่าใด?",
    "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_en": "What is the most number of touchdowns that have fewer than 105 points, averages over 4.7, and fewer than 487 rushing yards?",
    "question_th": "อะไรคือจำนวนทัชดาวน์มากที่สุดที่มีน้อยกว่า 105 แต้ม, ค่าเฉลี่ยมากกว่า 4.7 และระยะวิ่งน้อยกว่า 487 หลา?",
    "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_en": "What is the sum of carries associated with 80 points and fewer than 16 touchdowns?",
    "question_th": "ผลรวมของการแบกที่เกี่ยวข้องกับ 80 แต้มและน้อยกว่า 16 ทัชดาวน์เป็นเท่าใด?",
    "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_en": "What is the total number of rushing yards associated with averages over 8.4 and fewer than 54 carries?",
    "question_th": "จำนวนหลาวิ่งทั้งหมดที่เกี่ยวข้องกับค่าเฉลี่ยที่มากกว่า 8.4 และน้อยกว่า 54 ยกเป็นเท่าใด?",
    "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_en": "Which record is dated April 8?",
    "question_th": "บันทึกใดคือวันที่ 8 เมษายน?",
    "context": "CREATE TABLE table_name_60 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_9 WHERE attendance = \"5,298\"",
    "question_en": "What is the score for the game that has an attendance of 5,298?",
    "question_th": "คะแนนของเกมที่มีผู้ชม 5,298 คนเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_9 (score VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_45 WHERE attendance = \"10,101\"",
    "question_en": "What was the date for the game that had an attendance of 10,101?",
    "question_th": "วันที่เท่าไหร่สำหรับเกมที่มีผู้เข้าร่วม 10,101 คน?",
    "context": "CREATE TABLE table_name_45 (date VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_26 WHERE attendance = \"11,141\"",
    "question_en": "What is the record for the game with an attendance of 11,141?",
    "question_th": "สถิติของเกมนี้ด้วยผู้เข้าชม 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_en": "What's the lowest number of points with fewer than 8 losses and fewer than 24 games for the vancouver burrards?",
    "question_th": "จำนวนแต้มต่ำสุดที่แพ้น้อยกว่า 8 นัดและน้อยกว่า 24 เกมสำหรับเบอร์ราร์ดแวนคูเวอร์คือเท่าไร?",
    "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_en": "What's the total number of points when the vancouver carlings have fewer than 12 losses and more than 32 games?",
    "question_th": "เมื่อแวนคูเวอร์ คาร์ลิ่งส์ แพ้น้อยกว่า 12 นัด และเสียมากกว่า 32 เกม จะมีแต้มรวมเป็นเท่าไหร่?",
    "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_en": "What's the total number of points when the vancouver burrards have fewer than 9 losses and more than 24 games?",
    "question_th": "เมื่อแวนคูเวอร์ เบอร์ราร์ด แพ้น้อยกว่า 9 นัด และเสียมากกว่า 24 เกม จะมีแต้มรวมเป็นเท่าใด?",
    "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_en": "What's the sum of points for the 1963 season when there are more than 30 games?",
    "question_th": "ผลรวมแต้มในฤดูกาล 1963 เมื่อมีมากกว่า 30 เกมเป็นเท่าไหร่?",
    "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_en": "What's the total number of games with more than 20 points for the 1976 season?",
    "question_th": "จำนวนเกมทั้งหมดที่มีมากกว่า 20 แต้มในฤดูกาล 1976 คือเท่าใด",
    "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_en": "What's the total losses for the vancouver burrards in the 1947 season with fewer than 24 games?",
    "question_th": "แวนคูเวอร์เบอร์ราร์ดสูญเสียทั้งหมดในฤดูกาล 1947 โดยน้อยกว่า 24 เกมเป็นเท่าใด",
    "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_en": "How many tries against did the club with 1 drawn and 41 points have?",
    "question_th": "สโมสรเสมอ 1 มี 41 แต้มลองพยายามกี่ครั้ง?",
    "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_en": "Which club has 275 points?",
    "question_th": "สโมสรไหนมี 275 แต้ม?",
    "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_en": "How many points against did the club with a losing bonus of 3 and 84 tries have?",
    "question_th": "สโมสรที่แพ้โบนัส 3 และ 84 ครั้งมีกี่คะแนน?",
    "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_en": "Which club has 40 tries for?",
    "question_th": "สโมสรไหนมีความพยายามถึง 40 ครั้ง?",
    "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_en": "How many tries did the club with a try bonus of correct as of 2 June 2009 have?",
    "question_th": "สโมสรที่ได้ลองโบนัสที่ถูกต้อง ณ วันที่ 2 มิถุนายน พ.ศ. 2552 มีความพยายามกี่ครั้ง?",
    "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_en": "How many tries did the club Croesyceiliog rfc have?",
    "question_th": "สโมสร Croesyceiliog rfc พยายามกี่ครั้ง?",
    "context": "CREATE TABLE table_name_24 (tries_for VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT d_42_√ FROM table_name_47 WHERE d_45_o = \"d 32 √\"",
    "question_en": "What is the value of D 42 √, when the value of D 45 O is d 32 √?",
    "question_th": "ค่าของ D 42 √ เป็นเท่าใด เมื่อค่าของ D 45 O คือ d 32 √?",
    "context": "CREATE TABLE table_name_47 (d_42_√ VARCHAR, d_45_o VARCHAR)"
  },
  {
    "answer": "SELECT d_45_o FROM table_name_67 WHERE d_44_o = \"← majority\"",
    "question_en": "What is the value of D 45 O when the value of D 44 O is ← majority?",
    "question_th": "ค่าของ D 45 O เป็นเท่าใด เมื่อค่าของ D 44 O คือ ← ส่วนใหญ่?",
    "context": "CREATE TABLE table_name_67 (d_45_o VARCHAR, d_44_o VARCHAR)"
  },
  {
    "answer": "SELECT d_43_√ FROM table_name_58 WHERE d_42_√ = \"d 42 √\"",
    "question_en": "What is the value of D 43 √ when the value of D 42 √ is d 42 √?",
    "question_th": "ค่าของ D 43 √ เป็นเท่าใด เมื่อค่าของ D 42 √ คือ d 42 √?",
    "context": "CREATE TABLE table_name_58 (d_43_√ VARCHAR, d_42_√ VARCHAR)"
  },
  {
    "answer": "SELECT d_45_o FROM table_name_60 WHERE d_41_√ = \"r 41 √\"",
    "question_en": "What is the value of D 45 O, when the value of D 41 √ is r 41 √?",
    "question_th": "ค่าของ D 45 O เป็นเท่าใด เมื่อค่าของ D 41 √ คือ r 41 √?",
    "context": "CREATE TABLE table_name_60 (d_45_o VARCHAR, d_41_√ VARCHAR)"
  },
  {
    "answer": "SELECT AVG(driver_wins) FROM table_name_51 WHERE nation = \"sweden\"",
    "question_en": "What is the average number of wins of drivers from Sweden?",
    "question_th": "จำนวนชัยชนะโดยเฉลี่ยของนักแข่งจากสวีเดนคือเท่าไร?",
    "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_en": "How many gold are a rank 1 and larger than 16?",
    "question_th": "อันดับ 1 และมากกว่า 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_en": "How many total gold are less than 4?",
    "question_th": "มีทองคำทั้งหมดกี่ตัวที่น้อยกว่า 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_en": "What is the total gold that has bronze less than 2, a silver of 1 and total more than 4?",
    "question_th": "ทองคำทั้งหมดที่มีทองแดงน้อยกว่า 2 เหรียญเงิน 1 และรวมมากกว่า 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_en": "Name the least runners with dist of 10.5",
    "question_th": "ตั้งชื่อนักวิ่งน้อยที่สุดด้วย dist 10.5",
    "context": "CREATE TABLE table_name_34 (runners INTEGER, dist__f_ VARCHAR)"
  },
  {
    "answer": "SELECT runners FROM table_name_88 WHERE course = \"longchamp\"",
    "question_en": "Name the runners for longchamp",
    "question_th": "ตั้งชื่อนักวิ่ง longchamp",
    "context": "CREATE TABLE table_name_88 (runners VARCHAR, course VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_48 WHERE laps = 116",
    "question_en": "What is the year with 116 laps?",
    "question_th": "ปีที่มี 116 รอบคือปีอะไร?",
    "context": "CREATE TABLE table_name_48 (year VARCHAR, laps VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_92 WHERE finish = \"19\"",
    "question_en": "What year has a finish of 19?",
    "question_th": "ปีไหนจบปี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_en": "How many Silver medals were won in total by all those with more than 3 bronze and exactly 16 gold?",
    "question_th": "ผู้ที่มีเหรียญทองแดงมากกว่า 3 เหรียญทองแดงและ 16 เหรียญทองพอดี ได้รับรางวัลเหรียญเงินทั้งหมดกี่เหรียญ",
    "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_en": "Which opponent has a loss of wells (1-3)?",
    "question_th": "คู่ต่อสู้คนไหนเสียหลุม (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_en": "What is the largest attendance that has tigers as the opponent and a loss of leiter (0-1)?",
    "question_th": "ผู้เข้าชมมากที่สุดที่มีเสือเป็นคู่ต่อสู้และแพ้ไลเตอร์ (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_en": "Which party has Peter A. Quinn as a representative?",
    "question_th": "ฝ่ายใดมี Peter A. Quinn เป็นตัวแทน?",
    "context": "CREATE TABLE table_name_44 (party VARCHAR, representative VARCHAR)"
  },
  {
    "answer": "SELECT state FROM table_name_32 WHERE representative = \"jimmy quillen\"",
    "question_en": "Which state does Jimmy Quillen represent?",
    "question_th": "Jimmy Quillen เป็นตัวแทนรัฐใด",
    "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_en": "What is the lifespan of the democratic party in New York, for which Terence J. Quinn is a representative?",
    "question_th": "พรรคประชาธิปไตยในนิวยอร์กซึ่งมีเทอเรนซ์ เจ. ควินน์เป็นตัวแทนมีอายุกี่ปี?",
    "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_en": "Tell me what the notes are for South Australia ",
    "question_th": " บอกฉันว่าบันทึกสำหรับรัฐเซาท์ออสเตรเลียมีอะไรบ้าง",
    "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_en": "What is the current series where the new series began in June 2011?",
    "question_th": "ซีรีส์ปัจจุบันที่ซีรีส์ใหม่เริ่มในเดือนมิถุนายน 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_en": "What is the format for South Australia?",
    "question_th": "รัฐเซาท์ออสเตรเลียมีรูปแบบอะไรบ้าง?",
    "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_en": "Name the background colour for the Australian Capital Territory",
    "question_th": "ตั้งชื่อสีพื้นหลังสำหรับ 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_en": "how many times is the fuel propulsion is cng?",
    "question_th": "เครื่องยนต์เชื้อเพลิงเป็น 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_en": "what is the fuel propulsion where the fleet series (quantity) is 310-329 (20)?",
    "question_th": "แรงขับเชื้อเพลิงคืออะไรโดยที่ซีรีย์กองเรือ (ปริมาณ) คือ 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_en": "who is the manufacturer for the order year 1998?",
    "question_th": "ใครเป็นผู้ผลิตสำหรับการสั่งซื้อปี 1998?",
    "context": "CREATE TABLE table_10007452_3 (manufacturer VARCHAR, order_year VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(manufacturer) FROM table_10007452_3 WHERE model = \"GE40LFR\"",
    "question_en": "how many times is the model ge40lfr?",
    "question_th": "รุ่น 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_en": "how many times is the fleet series (quantity) is 468-473 (6)?",
    "question_th": "ซีรีย์กองเรือ (ปริมาณ) คือ 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_en": "what is the powertrain (engine/transmission) when the order year is 2000?",
    "question_th": "ระบบส่งกำลัง (เครื่องยนต์/เกียร์) คืออะไรเมื่อสั่งปี 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_en": "What if the description of a ch-47d chinook?",
    "question_th": "จะเกิดอะไรขึ้นถ้าคำอธิบายของชินุก ch-47d?",
    "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_en": "What is the max gross weight of the Robinson R-22?",
    "question_th": "น้ำหนักรวมสูงสุดของ 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_en": "What school did player number 6 come from?",
    "question_th": "ผู้เล่นหมายเลข 6 มาจากโรงเรียนใด",
    "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_en": "What school did the player that has been in Toronto from 2012-present come from?",
    "question_th": "ผู้เล่นที่อยู่ในโตรอนโตตั้งแต่ปี 2012 ถึงปัจจุบันมาจากโรงเรียนใด",
    "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_en": "What school did the player that has been in Toronto from 2010-2012 go to?",
    "question_th": "ผู้เล่นที่อยู่ในโตรอนโตระหว่างปี 2010-2012 เรียนอยู่ที่โรงเรียนใด",
    "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_en": "What position did the player from Baylor play?",
    "question_th": "นักเตะเบย์เลอร์เล่นตำแหน่งไหนครับ?",
    "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_en": "Who played in the Toronto Raptors from 1995-96?",
    "question_th": "ใครเคยเล่นให้กับทีม Toronto Raptors ตั้งแต่ปี 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_en": "Which number was Patrick O'Bryant?",
    "question_th": "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_en": "What school did Patrick O'Bryant play for?",
    "question_th": "Patrick O'Bryant เล่นให้กับโรงเรียนใด",
    "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_en": "How many number does Fordham school have?",
    "question_th": "โรงเรียนฟอร์ดแฮมมีกี่แห่ง?",
    "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_en": "Which school was in Toronto in 2001-02?",
    "question_th": "โรงเรียนไหนอยู่ในโตรอนโตในปี 2544-2545",
    "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_en": "Which school did the player that played 2004-05 attend?",
    "question_th": "ผู้เล่นที่เล่นในฤดูกาล 2004-05 เข้าเรียนที่โรงเรียนใด",
    "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_en": "Which position does Loren Woods play?",
    "question_th": "ลอเรน วูดส์ เล่นตำแหน่งไหน?",
    "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_en": "What number is the player that played 1998-2001",
    "question_th": "ผู้เล่นหมายเลขใดที่เล่นในปี 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_en": "Which country is the player that went to Georgetown from?",
    "question_th": "นักเตะที่ไปจอร์จทาวน์มาจากประเทศไหน?",
    "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_en": "Which school did Herb Williams go to?",
    "question_th": "Herb Williams เข้าเรียนที่โรงเรียนไหน",
    "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_en": "When did the player from Hawaii play for Toronto?",
    "question_th": "ผู้เล่นจากฮาวายเล่นให้กับโตรอนโตเมื่อใด",
    "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_en": "During what period did Dell Curry play for Toronto?",
    "question_th": "Dell Curry เล่นให้กับโตรอนโตในช่วงใด",
    "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_en": "What's the number of the player from Boise State?",
    "question_th": "นักเตะจากบอยซีสเตทเบอร์อะไรครับ",
    "context": "CREATE TABLE table_10015132_3 (no VARCHAR, school_club_team VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_10015132_3 WHERE player = \"Dell Curry\"",
    "question_en": "What's Dell Curry nationality?",
    "question_th": "Dell Curry สัญชาติอะไร",
    "context": "CREATE TABLE table_10015132_3 (nationality VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_10015132_7 WHERE school_club_team = \"Georgia\"",
    "question_en": "which player is from georgia",
    "question_th": "ผู้เล่นคนไหนมาจากจอร์เจีย",
    "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_en": "what school is rudy gay from",
    "question_th": "เกย์รูดี้มาจากโรงเรียนไหน",
    "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_en": "what nationality is the player who played from 1997-98",
    "question_th": "นักเตะที่เล่นระหว่างปี 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_en": "what position did the player from connecticut play",
    "question_th": "ผู้เล่นจากคอนเนตทิคัตเล่นตำแหน่งใด",
    "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_en": "During which years was Marcus Banks in Toronto?",
    "question_th": "Marcus Banks ในโตรอนโตในช่วงปีไหน?",
    "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_en": "Which positions were in Toronto in 2004?",
    "question_th": "ตำแหน่งใดบ้างในโตรอนโตในปี 2547",
    "context": "CREATE TABLE table_10015132_2 (position VARCHAR, years_in_toronto VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_10015132_2 WHERE player = \"Muggsy Bogues\"",
    "question_en": "What nationality is the player Muggsy Bogues?",
    "question_th": "นักเตะ 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_en": "What years was the player Lonny Baxter in Toronto?",
    "question_th": "ผู้เล่น Lonny Baxter ในโตรอนโตอายุเท่าไหร่?",
    "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_en": "How many players were with the school or club team La Salle?",
    "question_th": "มีผู้เล่นกี่คนในทีมโรงเรียนหรือสโมสรลาซาล?",
    "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_en": "When the scoring rank was 117, what was the best finish?",
    "question_th": "เมื่ออันดับคะแนนอยู่ที่ 117 จบเกมไหนดีที่สุด?",
    "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_en": "When the best finish was T69, how many people came in 2nd?",
    "question_th": "เมื่อจบดีที่สุดคือ T69 มีคนเข้ารอบ 2 กี่คน?",
    "context": "CREATE TABLE table_10021158_3 (best_finish VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(wins) FROM table_10021158_3 WHERE money_list_rank = \"183\"",
    "question_en": "How many wins were there when the money list rank was 183?",
    "question_th": "มีชัยชนะกี่ครั้งเมื่ออันดับเงินคือ 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_en": "When the money list rank was n/a, what was the scoring average?",
    "question_th": "เมื่ออันดับ Money List ไม่มีอยู่ คะแนนเฉลี่ยจะเป็นเท่าใด",
    "context": "CREATE TABLE table_10021158_3 (scoring_average VARCHAR, money_list_rank VARCHAR)"
  },
  {
    "answer": "SELECT MAX(2 AS nd) FROM table_10021158_3",
    "question_en": "What time was the highest for 2nd finishers?",
    "question_th": "ผู้เข้าเส้นชัยอันดับที่ 2 สูงสุดเวลาใด?",
    "context": "CREATE TABLE table_10021158_3 (Id VARCHAR)"
  },
  {
    "answer": "SELECT MIN(season) FROM table_1004033_1 WHERE team = \"MetroStars\"",
    "question_en": "When did the Metrostars have their first Rookie of the Year winner?",
    "question_th": "Metrostars มีผู้ชนะ Rookie of the Year คนแรกเมื่อใด",
    "context": "CREATE TABLE table_1004033_1 (season INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_1004033_1 WHERE team = \"Columbus Crew\"",
    "question_en": "What college did the Rookie of the Year from the Columbus Crew attend?",
    "question_th": "Rookie of the Year จาก Columbus Crew เข้าเรียนที่วิทยาลัยใด",
    "context": "CREATE TABLE table_1004033_1 (college VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(team) FROM table_1004033_1 WHERE draft_pick__number = \"1\"",
    "question_en": "How many teams had a #1 draft pick that won the Rookie of the Year Award?",
    "question_th": "มีกี่ทีมที่ได้รับเลือกอันดับ 1 ที่ได้รับรางวัล Rookie of the Year?",
    "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_en": "What position did the #10 draft pick play?",
    "question_th": "ดราฟต์หมายเลข 10 เล่นตำแหน่งใด?",
    "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–2\"",
    "question_en": "what's the years played with singles w-l of 3–2",
    "question_th": "ปีใดที่เล่นกับซิงเกิ้ล wl of 3–2",
    "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_en": "what's the doubles w-l for player seol jae-min (none)",
    "question_th": "ดับเบิลดับเบิลยูสำหรับผู้เล่นซอลแจมินคืออะไร (ไม่มี)",
    "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_en": "what's the singles w-l for kim doo-hwan",
    "question_th": "คิมดูฮวานคนโสดคือเพลงอะไร",
    "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–0\" AND total_w_l = \"3–1\"",
    "question_en": "what's the total number of singles w-l with doubles w-l of 0–0 and total w-l of 3–1",
    "question_th": "จำนวนซิงเกิลทั้งหมดคือเท่าไร โดยดับเบิล wl เท่ากับ 0–0 และรวม wl เท่ากับ 3–1",
    "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_en": "what's the doubles w-l with years played value of 1 (1968)",
    "question_th": "อะไรคือสองเท่าที่มีมูลค่าการเล่น 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_en": "what years are played for player  im chung-yang",
    "question_th": "อิมชุงยังเล่นให้กับผู้เล่นกี่ปี",
    "context": "CREATE TABLE table_10023387_1 (years_played VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_10020178_1 WHERE crest_length__meters_ = 375",
    "question_en": "What is the name of the 375 crest length?",
    "question_th": "ความยาวหงอน 375 ชื่ออะไรครับ?",
    "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_en": "What is year of construction of spitallamm?",
    "question_th": "ปีที่ก่อสร้างของ spitallam คือปีใด?",
    "context": "CREATE TABLE table_10020178_1 (year_of_construction INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT canton FROM table_10020178_1 WHERE name = \"Grande Dixence\"",
    "question_en": "What is the canton of grande dixence?",
    "question_th": "ตำบลแกรนด์ดิกเซนซ์คืออะไร?",
    "context": "CREATE TABLE table_10020178_1 (canton VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT guardian_mātṛkā FROM table_100518_1 WHERE consort = \"Svāhā\"",
    "question_en": "What is the  guardian mātṛkā for the guardian whose consort is Svāhā?",
    "question_th": "มัทริกาผู้พิทักษ์สำหรับผู้พิทักษ์ที่มีสามีคือสวาฮาคืออะไร?",
    "context": "CREATE TABLE table_100518_1 (guardian_mātṛkā VARCHAR, consort VARCHAR)"
  },
  {
    "answer": "SELECT direction FROM table_100518_1 WHERE mantra = \"Oṃ Yaṃ Vāyuve Namaḥ\"",
    "question_en": "Where the mantra is \"oṃ yaṃ vāyuve namaḥ\", what is the direction of the guardian?",
    "question_th": "มนต์ที่ว่า “โอม ยัม วายูเว นะมาฮ” อยู่ที่ไหน พระภิกษุจะมีทิศเป็นอย่างไร?",
    "context": "CREATE TABLE table_100518_1 (direction VARCHAR, mantra VARCHAR)"
  },
  {
    "answer": "SELECT weapon FROM table_100518_1 WHERE consort = \"Śacī\"",
    "question_en": "What weapon is used by the guardian whose consort is śacī?",
    "question_th": "ผู้พิทักษ์ที่มีสามีเป็นศาซีใช้อาวุธอะไร?",
    "context": "CREATE TABLE table_100518_1 (weapon VARCHAR, consort VARCHAR)"
  },
  {
    "answer": "SELECT direction FROM table_100518_1 WHERE weapon = \"Khaḍga (sword)\"",
    "question_en": "What are the directions for the guardian whose weapon is khaḍga (sword)?",
    "question_th": "คำแนะนำสำหรับผู้พิทักษ์ที่มีอาวุธคือ ฆะคะคะ (ดาบ) คืออะไร?",
    "context": "CREATE TABLE table_100518_1 (direction VARCHAR, weapon VARCHAR)"
  },
  {
    "answer": "SELECT weapon FROM table_100518_1 WHERE direction = \"East\"",
    "question_en": "What are the weapons used by guardians for the direction East?",
    "question_th": "ผู้พิทักษ์ใช้อาวุธอะไรในทิศตะวันออก?",
    "context": "CREATE TABLE table_100518_1 (weapon VARCHAR, direction VARCHAR)"
  },
  {
    "answer": "SELECT direction FROM table_100518_1 WHERE graha__planet_ = \"Bṛhaspati (Jupiter)\"",
    "question_en": "What are the directions for the guardian whose graha (planet) is bṛhaspati (Jupiter)?",
    "question_th": "คำแนะนำสำหรับผู้ปกครองที่มี Graha (ดาวเคราะห์) เป็น Bṛhaspati (ดาวพฤหัสบดี) คืออะไร?",
    "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_en": "What is the number of chapters listed for the fraternity with a headquarters in Austin, Texas?",
    "question_th": "จำนวนบทที่ระบุไว้สำหรับสมาคมภราดรภาพที่มีสำนักงานใหญ่ในออสติน รัฐเท็กซัส คือเท่าใด",
    "context": "CREATE TABLE table_10054296_1 (chapters INTEGER, classification VARCHAR, headquarters VARCHAR)"
  },
  {
    "answer": "SELECT member FROM table_10054296_1 WHERE classification = \"Sorority\"",
    "question_en": "What are the members listed with the sorority classification",
    "question_th": "สมาชิกที่มีรายชื่ออยู่ในประเภทชมรมมีอะไรบ้าง",
    "context": "CREATE TABLE table_10054296_1 (member VARCHAR, classification VARCHAR)"
  },
  {
    "answer": "SELECT member FROM table_10054296_1 WHERE chapters = 12",
    "question_en": "Name the member that has 12 chapters",
    "question_th": "ตั้งชื่อสมาชิกที่มี 12 บท",
    "context": "CREATE TABLE table_10054296_1 (member VARCHAR, chapters VARCHAR)"
  },
  {
    "answer": "SELECT headquarters FROM table_10054296_1 WHERE member = \"Alpha Nu Omega\"",
    "question_en": "Where is the headquarters of Alpha Nu Omega",
    "question_th": "สำนักงานใหญ่ของ 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_en": "what is the number of relapsing fever when malaria is 3000",
    "question_th": "ไข้กำเริบเมื่อมาลาเรียอยู่ที่ 3,000 มีจำนวนเท่าใด",
    "context": "CREATE TABLE table_1007688_1 (relapsing_fever INTEGER, malaria VARCHAR)"
  },
  {
    "answer": "SELECT typhoid_fever FROM table_1007688_1 WHERE year = \"1934\"",
    "question_en": "what is the typhoid fever number for the year 1934",
    "question_th": "ตัวเลขไข้ไทฟอยด์ประจำปี พ.ศ. 2477 คืออะไร",
    "context": "CREATE TABLE table_1007688_1 (typhoid_fever VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT typhus FROM table_1007688_1 WHERE smallpox = 4",
    "question_en": "What are all the typhus number when smallpox is 4",
    "question_th": "ไข้ทรพิษคือหมายเลข 4 ทั้งหมดเป็นเท่าใด",
    "context": "CREATE TABLE table_1007688_1 (typhus VARCHAR, smallpox VARCHAR)"
  },
  {
    "answer": "SELECT MAX(smallpox) FROM table_1007688_1 WHERE typhoid_fever = 293",
    "question_en": "what is the number of smallpox when typhoid fever is 293",
    "question_th": "จำนวนไข้ทรพิษเมื่อไข้ไทฟอยด์เป็นเท่าใด 293",
    "context": "CREATE TABLE table_1007688_1 (smallpox INTEGER, typhoid_fever VARCHAR)"
  },
  {
    "answer": "SELECT typhoid_fever FROM table_1007688_1 WHERE year = \"1929\"",
    "question_en": "what is the typhoid fever number for the year 1929",
    "question_th": "ตัวเลขไข้ไทฟอยด์ ปี 2472 คืออะไร",
    "context": "CREATE TABLE table_1007688_1 (typhoid_fever VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(founded) FROM table_10082596_1 WHERE location = \"Bloomington, IN\"",
    "question_en": "How many schools are in Bloomington, IN?",
    "question_th": "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_en": "How many of the schools are designated private/Presbyterian?",
    "question_th": "มีโรงเรียนกี่แห่งที่ได้รับการกำหนดให้เป็นเอกชน/เพรสไบทีเรียน?",
    "context": "CREATE TABLE table_10082596_1 (location VARCHAR, affiliation VARCHAR)"
  },
  {
    "answer": "SELECT MIN(founded) FROM table_10082596_1 WHERE school = \"Lindenwood University\"",
    "question_en": "In what year was Lindenwood University founded?",
    "question_th": "มหาวิทยาลัย Lindenwood ก่อตั้งในปีใด",
    "context": "CREATE TABLE table_10082596_1 (founded INTEGER, school VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(primary_conference) FROM table_10082596_1 WHERE location = \"Ames, IA\"",
    "question_en": "How many of the schools listed are in Ames, IA?",
    "question_th": "มีโรงเรียนกี่แห่งที่อยู่ใน 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_en": "What is the capital (endonym) where Douglas is the Capital (exonym)?",
    "question_th": "เมืองหลวง (นามแฝง) คืออะไร โดยที่ดักลาสเป็นเมืองหลวง (นามแฝง)",
    "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_en": "How many countries (endonym) has the capital (endonym) of Jakarta?",
    "question_th": "มีกี่ประเทศ (นามแฝง) มีเมืองหลวง (นามแฝง) ของจาการ์ตา?",
    "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_en": "What is the country (exonym) where the official or native language(s) (alphabet/script) is Icelandic?",
    "question_th": "ประเทศใด (exonym) ที่ภาษาราชการหรือภาษาพื้นเมือง (ตัวอักษร/สคริปต์) เป็นภาษาไอซ์แลนด์?",
    "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_en": "In which country (endonym) is Irish English the official or native language(s) (alphabet/script)?",
    "question_th": "ภาษาไอริชเป็นภาษาราชการหรือภาษาพื้นเมือง (ตัวอักษร/สคริปต์) ในประเทศใด (คำนาม)",
    "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_en": "Which country (exonym) is the country (endonym) isle of man ellan vannin?",
    "question_th": "ประเทศใด (exonym) คือประเทศ (endonym) เกาะแมน 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_en": "what is the minimum population canada 2011 census with seat of rcm being cowansville",
    "question_th": "การสำรวจสำมะโนประชากรแคนาดาปี 2554 จำนวนประชากรขั้นต่ำคือเท่าใด โดยที่นั่งของ rcm คือ 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_en": "what's the land area with seat of rcm being granby",
    "question_th": "พื้นที่ดินพร้อมที่นั่ง RCM เป็น 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_en": "What is the population for County Mayo with the English Name Carrowteige?",
    "question_th": "ประชากรของ County Mayo ที่มีชื่อภาษาอังกฤษ 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_en": "What is the Irish name listed with 62% Irish speakers?",
    "question_th": "ชื่อไอริชที่มีผู้พูดภาษาไอริช 62% คืออะไร?",
    "context": "CREATE TABLE table_101196_1 (irish_name VARCHAR, irish_speakers VARCHAR)"
  },
  {
    "answer": "SELECT population FROM table_101196_1 WHERE irish_name = \"Leitir Mealláin\"",
    "question_en": "What is the population for the Irish Name Leitir mealláin?",
    "question_th": "ประชากรตามชื่อภาษาไอริช Leitir mealláin คือจำนวนเท่าใด",
    "context": "CREATE TABLE table_101196_1 (population VARCHAR, irish_name VARCHAR)"
  },
  {
    "answer": "SELECT county FROM table_101196_1 WHERE irish_name = \"Carna\"",
    "question_en": "What is the county for the Irish name Carna?",
    "question_th": "มณฑลสำหรับชื่อไอริช 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_en": "How many County Kerry have 53% Irish speakers?",
    "question_th": "County Kerry มีผู้พูดภาษาไอริช 53% กี่คน",
    "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_en": "What is the population for the English name Spiddal?",
    "question_th": "ชื่อภาษาอังกฤษว่า Spiddal มีประชากรจำนวนเท่าใด",
    "context": "CREATE TABLE table_101196_1 (population VARCHAR, english_name VARCHAR)"
  },
  {
    "answer": "SELECT MIN(chinese) FROM table_10118412_6 WHERE filipino = 1474707",
    "question_en": "What is the the Chinese population for the state that has a Filipino population of 1474707?",
    "question_th": "ประชากรจีนในรัฐที่มีประชากรฟิลิปปินส์ 1474707 คือเท่าใด",
    "context": "CREATE TABLE table_10118412_6 (chinese INTEGER, filipino VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(filipino) FROM table_10118412_6 WHERE indian = 30947",
    "question_en": "How many States have an Indian population of 30947?",
    "question_th": "มีกี่รัฐที่มีประชากรอินเดีย 30,947 คน",
    "context": "CREATE TABLE table_10118412_6 (filipino VARCHAR, indian VARCHAR)"
  },
  {
    "answer": "SELECT MAX(indian) FROM table_10118412_6",
    "question_en": "What is the highest Indian population?",
    "question_th": "ประชากรอินเดียสูงสุดคืออะไร?",
    "context": "CREATE TABLE table_10118412_6 (indian INTEGER)"
  },
  {
    "answer": "SELECT australian_role FROM table_10121127_1 WHERE un_operation_name = \"UNAMA\"",
    "question_en": "What is Australia's role in the UN operation Unama?",
    "question_th": "บทบาทของออสเตรเลียในปฏิบัติการ Unama ของ UN คืออะไร?",
    "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_en": "What is the UN operation title with the UN operation name, Uncok?",
    "question_th": "ชื่อปฏิบัติการของ UN ที่มีชื่อปฏิบัติการของ UN คืออะไร 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_en": "How many Australians were in the UN commission on Korea?",
    "question_th": "มีชาวออสเตรเลียกี่คนที่อยู่ในคณะกรรมาธิการสหประชาชาติในเกาหลี",
    "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_en": "When was it where 65 Australians were involved in the UN?",
    "question_th": "เมื่อใดที่ชาวออสเตรเลีย 65 คนมีส่วนร่วมในสหประชาชาติ",
    "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_en": "What year is the season with the 10.73 million views?",
    "question_th": "ซีซั่นไหนที่มียอดวิว 10.73 ล้านวิว?",
    "context": "CREATE TABLE table_10120207_8 (tv_season VARCHAR, viewers__millions_ VARCHAR)"
  },
  {
    "answer": "SELECT tv_season FROM table_10120207_8 WHERE rank = \"39\"",
    "question_en": "What is the season year where the rank is 39?",
    "question_th": "ฤดูกาลที่ 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_en": "What is the number of season premieres were 10.17 people watched?",
    "question_th": "จำนวนรอบปฐมทัศน์ของฤดูกาลที่มีคนดู 10.17 คนคือเท่าไร?",
    "context": "CREATE TABLE table_10120207_8 (season VARCHAR, viewers__millions_ VARCHAR)"
  },
  {
    "answer": "SELECT tv_season FROM table_10120207_8 WHERE season = 12",
    "question_en": "What is the year of the season that was 12?",
    "question_th": "ฤดูกาลที่ 12 คือปีอะไร?",
    "context": "CREATE TABLE table_10120207_8 (tv_season VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT avg_finish FROM table_1012730_1 WHERE year = 2012",
    "question_en": "In 2012 what was the average finish?",
    "question_th": "ในปี 2012 ค่าเฉลี่ยการจบสกอร์อยู่ที่เท่าไร?",
    "context": "CREATE TABLE table_1012730_1 (avg_finish VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT MIN(wins) FROM table_1012730_1 WHERE year = 1983",
    "question_en": "How many wins happened in 1983?",
    "question_th": "มีชัยชนะเกิดขึ้นกี่ครั้งในปี 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_en": "How many top tens had an average start of 29.4?",
    "question_th": "สิบอันดับแรกมีคะแนนเฉลี่ยเริ่มต้นที่ 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_en": "How many poles had an average finish of 19.1?",
    "question_th": "มีกี่โพลที่จบสกอร์เฉลี่ย 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_en": "How many starts did Hendrick motorsports have?",
    "question_th": "มอเตอร์สปอร์ตของ Hendrick ออกสตาร์ทได้กี่ครั้ง?",
    "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_en": "NHL players are all centre in Florida panthers.",
    "question_th": "ผู้เล่น NHL ล้วนเป็นศูนย์กลางในแพนเทอร์ฟลอริดา",
    "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_en": "NHL team player San Jose Sharks is United States nationally.",
    "question_th": "ผู้เล่นในทีม NHL San Jose Sharks เป็นประเทศสหรัฐอเมริกา",
    "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_en": "All players are position mark polak.",
    "question_th": "ผู้เล่นทุกคนมีตำแหน่งมาร์คโพลัค",
    "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_en": "Position in nhl team centre are all smaller pick than 243.0",
    "question_th": "ตำแหน่งในศูนย์ทีม nhl ล้วนแล้วแต่เลือกน้อยกว่า 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_en": "What college/junior/club teams do the players from the St. Louis Blues come from?",
    "question_th": "นักเตะทีมเซนต์หลุยส์ บลูส์ มาจากวิทยาลัย/จูเนียร์/สโมสรใดบ้าง?",
    "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_en": "What teams do the players from TPS (Finland) play for?",
    "question_th": "นักเตะจากทีพีเอส (ฟินแลนด์) เล่นให้กับทีมอะไร?",
    "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_en": "What high school team did Doug Nolan play for?",
    "question_th": "ดั๊ก โนแลนเล่นให้กับทีมโรงเรียนมัธยมปลายใด",
    "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_en": "What club team is Per Gustafsson play for?",
    "question_th": "แปร์ กุสตาฟส์สันเล่นให้กับทีมใด?",
    "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_en": "What is the nationality of Shayne Wright?",
    "question_th": "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_en": "How many votes did Southern England cast whilst Northern Ireland cast 3?",
    "question_th": "อังกฤษตอนใต้ได้คะแนนเท่าไร ในขณะที่ไอร์แลนด์เหนือได้ 3 เสียง",
    "context": "CREATE TABLE table_10128185_2 (southern_england VARCHAR, northern_ireland VARCHAR)"
  },
  {
    "answer": "SELECT MIN(scotland) FROM table_10128185_2",
    "question_en": "What was the lowest number of votes Scotland cast?",
    "question_th": "สกอตแลนด์ได้คะแนนโหวตน้อยที่สุดคือเท่าไร?",
    "context": "CREATE TABLE table_10128185_2 (scotland INTEGER)"
  },
  {
    "answer": "SELECT COUNT(scotland) FROM table_10128185_2 WHERE total = 35",
    "question_en": "What is the total number of votes if Scotland cast 35?",
    "question_th": "ถ้าสก็อตแลนด์ได้ 35 คะแนน จะได้คะแนนรวมเท่าไหร่?",
    "context": "CREATE TABLE table_10128185_2 (scotland VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT northern_ireland FROM table_10128185_2 WHERE total = 35",
    "question_en": "How many votes did Northern Ireland cast if the total was 35?",
    "question_th": "ไอร์แลนด์เหนือลงคะแนนได้กี่คะแนนหากคะแนนรวมทั้งหมดเป็น 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_en": "How many votes did Wales cast when Northern England cast 6?",
    "question_th": "เวลส์ลงคะแนนได้กี่คะแนนเมื่ออังกฤษตอนเหนือได้ 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_en": "What teams had 9 in the top 5 and 1 wins?",
    "question_th": "ทีมใดมี 9 ใน 5 อันดับแรกและ 1 ชนะ?",
    "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_en": "What teams did the player vadim sharifijanov play for?",
    "question_th": "นักเตะ วาดิม ชาริฟิยานอฟ เล่นให้กับทีมใด?",
    "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_en": "What positions do the hartford whalers nhl team have?",
    "question_th": "ทีม hartford whalers nhl มีตำแหน่งอะไรบ้าง?",
    "context": "CREATE TABLE table_1013129_1 (position VARCHAR, nhl_team VARCHAR)"
  },
  {
    "answer": "SELECT MIN(pick) FROM table_1013129_1 WHERE player = \"Brett Lindros\"",
    "question_en": "What is the smallest pick for the player, brett lindros?",
    "question_th": "ตัวเลือกที่เล็กที่สุดสำหรับผู้เล่นคืออะไร 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_en": "What positions does the college/junior/club team, molot perm (russia) have?",
    "question_th": "ทีมวิทยาลัย/จูเนียร์/สโมสร โมลอต เพิร์ม (รัสเซีย) มีตำแหน่งอะไรบ้าง?",
    "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_en": "The nhl team new york islanders is what nationality?",
    "question_th": "ทีม NHL ชาวเกาะนิวยอร์กมีสัญชาติอะไร?",
    "context": "CREATE TABLE table_1013129_1 (nationality VARCHAR, nhl_team VARCHAR)"
  },
  {
    "answer": "SELECT vacator FROM table_1013168_3 WHERE district = \"Louisiana 1st\"",
    "question_en": "What is the name of the vacator for district Louisiana 1st?",
    "question_th": "ผู้ว่างงานในเขต 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_en": "What is the notion when the crystal structure is tetragonal and the formula is bi 2 sr 2 cacu 2 o 8",
    "question_th": "แนวคิดเมื่อโครงสร้างผลึกเป็นรูปสี่เหลี่ยมจัตุรัสและมีสูตรคือ 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_en": "How many times is the formula tl 2 ba 2 cuo 6?",
    "question_th": "สูตร 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_en": "What is the crystal structure for the formula yba 2 cu 3 o 7?",
    "question_th": "โครงสร้างผลึกของสูตร 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_en": "What is the number for t c (k) when the notation is tl-2212?",
    "question_th": "ตัวเลขสำหรับ tc (k) คืออะไรเมื่อสัญลักษณ์เป็น 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_en": "How many 2010 estimations have been done in the city of Cremona?",
    "question_th": "มีการประมาณการในปี 2010 กี่ครั้งในเมืองเครโมนา",
    "context": "CREATE TABLE table_10138926_1 (city VARCHAR)"
  },
  {
    "answer": "SELECT MAX(1991 AS _census) FROM table_10138926_1 WHERE city = \"Carpi\"",
    "question_en": "What's the 1991 census of the city of Carpi?",
    "question_th": "การสำรวจสำมะโนประชากรของเมืองการ์ปี พ.ศ. 2534 เป็นเท่าใด",
    "context": "CREATE TABLE table_10138926_1 (city VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(2001 AS _census) FROM table_10138926_1 WHERE _number = 13",
    "question_en": "How many 2001 censuses are there on number 13?",
    "question_th": "หมายเลข 13 มีการสำรวจสำมะโนประชากร พ.ศ. 2544 จำนวนเท่าใด",
    "context": "CREATE TABLE table_10138926_1 (_number VARCHAR)"
  },
  {
    "answer": "SELECT 1981 AS _census FROM table_10138926_1 WHERE city = \"Livorno\"",
    "question_en": "What's the 1981 census of Livorno?",
    "question_th": "การสำรวจสำมะโนประชากรของลิวอร์โนในปี 1981 คืออะไร",
    "context": "CREATE TABLE table_10138926_1 (city VARCHAR)"
  },
  {
    "answer": "SELECT nhl_team FROM table_1013129_8 WHERE player = \"Mike Loach\"",
    "question_en": "Which NHL team has player Mike Loach?",
    "question_th": "ทีม NHL ใดที่มีผู้เล่น 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_en": "What is the NHL team that has Peter Strom?",
    "question_th": "ทีม NHL ที่มี 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_en": "What team is Keith Mccambridge on?",
    "question_th": "Keith McCambridge อยู่ทีมใด?",
    "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_en": "How many nationalities are the pick 193?",
    "question_th": "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_en": "Who was the succesor that was formally installed on November 8, 1978?",
    "question_th": "ใครคือผู้สืบทอดที่ได้รับการแต่งตั้งอย่างเป็นทางการเมื่อวันที่ 8 พฤศจิกายน พ.ศ. 2521?",
    "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_en": "How many songs received a 10 from Goodman and were rated by Tonioli?",
    "question_th": "มีกี่เพลงที่ได้รับ 10 คะแนนจาก Goodman และได้รับการจัดอันดับโดย 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_en": "What score did Goodman give to all songs with safe results, which received a 7 from Horwood and have a total score of 31?",
    "question_th": "Goodman ให้คะแนนเพลงทุกเพลงที่มีผลอย่างปลอดภัยได้ 7 คะแนนจาก Horwood และมีคะแนนรวม 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_en": "What score did Dixon give to the song \"samba / young hearts run free\", which was in second place?",
    "question_th": "Dixon ให้คะแนนเพลง \"samba / young hearts run free\" ไว้อันดับ 2 อย่างไรบ้าง?",
    "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_en": "How many scores did Goodman give to \"samba / young hearts run free\", which was in second place?",
    "question_th": "กู๊ดแมนให้คะแนน \"samba / young hearts run free\" กี่คะแนน ซึ่งอยู่ในอันดับที่ 2?",
    "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_en": "What year was number 7 built?",
    "question_th": "หมายเลข 7 สร้างปีไหน?",
    "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_en": "What is we two when the case/suffix is loc.?",
    "question_th": "เราสองคนคืออะไรเมื่อกรณี/คำต่อท้ายเป็น 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_en": "What is them two (the two) when we two is ngalbelpa?",
    "question_th": "พวกเขาสองคน (ทั้งสอง) คืออะไรเมื่อเราสองคนคือ 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œbalngu\"",
    "question_en": "What is them two (the two) when you and i is ngœbalngu?",
    "question_th": "พวกเขาสองคน (ทั้งสอง) คืออะไรเมื่อคุณและฉันคือngOEbalngu?",
    "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œban\"",
    "question_en": "What is who-two where you and i is ngœban?",
    "question_th": "อะไรคือใครสองคนที่คุณและฉันคือบ้าน?",
    "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_en": "What is we two where you two is ngipen?",
    "question_th": "เราสองคนคืออะไร โดยที่คุณสองคนคือ 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_en": "What is who-two when you two is ngipelngu?",
    "question_th": "ใครสองคนเมื่อคุณสองคนคือ 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_en": "what's the points with driver  mark martin",
    "question_th": "คนขับมาร์ค มาร์ตินมีประโยชน์อะไร",
    "context": "CREATE TABLE table_10160447_1 (points VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_10160447_1 WHERE driver = \"Rusty Wallace\"",
    "question_en": "what's the points with driver  rusty wallace",
    "question_th": "คนขับวอลเลซขึ้นสนิมมีประโยชน์อะไร",
    "context": "CREATE TABLE table_10160447_1 (points VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(position) FROM table_10160447_1 WHERE driver = \"Robby Gordon\"",
    "question_en": "what's the total number of position with driver  robby gordon",
    "question_th": "ตำแหน่งทั้งหมดพร้อมคนขับร็อบบี้ กอร์ดอนคือเท่าไร",
    "context": "CREATE TABLE table_10160447_1 (position VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT MAX(position) FROM table_10160447_1 WHERE winnings = \"$50,000\"",
    "question_en": "what's the maximum position with winnings  $50,000",
    "question_th": "ตำแหน่งสูงสุดพร้อมเงินรางวัล $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_en": "What actor was nominted for an award in the film Anastasiya Slutskaya?",
    "question_th": "นักแสดงคนใดที่ได้รับการเสนอชื่อเข้าชิงรางวัลในภาพยนตร์เรื่อง 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_en": "What was the film Falling up nominated for?",
    "question_th": "ภาพยนตร์เรื่อง Falling up ได้รับการเสนอชื่อเข้าชิงจากเรื่องอะไร?",
    "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_en": "What is the name of the actress that was nominated for best actress in a leading role in the film Chopin: Desire for love?",
    "question_th": "นักแสดงหญิงชื่ออะไรที่ได้รับการเสนอชื่อเข้าชิงนักแสดงนำหญิงยอดเยี่ยมในบทบาทนำในภาพยนตร์เรื่อง 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_en": "Which films does the actor Alla Sergiyko star in?",
    "question_th": "นักแสดง Alla Sergiyko แสดงภาพยนตร์เรื่องใด?",
    "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_en": "Which nominations was the film 27 Stolen Kisses nominated for?",
    "question_th": "ภาพยนตร์เรื่อง 27 Stolen Kisses ได้รับการเสนอชื่อเข้าชิงเรื่องใดบ้าง",
    "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_en": "Which actor from Serbia was nominated for best actor in a supporting role?",
    "question_th": "นักแสดงคนใดจากเซอร์เบียที่ได้รับการเสนอชื่อเข้าชิงนักแสดงสมทบชายยอดเยี่ยม?",
    "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_en": "Vsevolod Shilovskiy is from what country?",
    "question_th": "Vsevolod Shilovskiy มาจากประเทศอะไร?",
    "context": "CREATE TABLE table_10236830_4 (country VARCHAR, actors_name VARCHAR)"
  },
  {
    "answer": "SELECT nomination FROM table_10236830_4 WHERE film_name = \"Totalitarian Romance\"",
    "question_en": "Which nominations are connected to the film Totalitarian Romance?",
    "question_th": "การเสนอชื่อใดที่เกี่ยวข้องกับภาพยนตร์เรื่อง 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_en": "Srdjan Dragojevic worked on a film which earned what nomination?",
    "question_th": "Srdjan Dragojevic ทำงานในภาพยนตร์ที่ได้รับการเสนอชื่อเข้าชิงอะไร?",
    "context": "CREATE TABLE table_10236830_4 (nomination VARCHAR, director VARCHAR)"
  },
  {
    "answer": "SELECT actors_name FROM table_10236830_4 WHERE country = \"Ukraine\"",
    "question_en": "Which actors are from Ukraine?",
    "question_th": "นักแสดงคนไหนมาจากยูเครน?",
    "context": "CREATE TABLE table_10236830_4 (actors_name VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT film_name FROM table_10236830_1 WHERE director = \"Vadim Ilyenko\"",
    "question_en": "What was the film that vadim ilyenko directed?",
    "question_th": "ภาพยนตร์ที่ vadim ilyenko กำกับคืออะไร?",
    "context": "CREATE TABLE table_10236830_1 (film_name VARCHAR, director VARCHAR)"
  },
  {
    "answer": "SELECT actors_name FROM table_10236830_1 WHERE director = \"Vadim Ilyenko\"",
    "question_en": "What was the actors name that vadim ilyenko directed?",
    "question_th": "นักแสดงที่ vadim ilyenko กำกับชื่ออะไร?",
    "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_en": "What was the actors name for fuchzhou and nomination was best non-professional actor?",
    "question_th": "นักแสดงชื่ออะไรสำหรับฟู่โจวและการเสนอชื่อเข้าชิงเป็นนักแสดงที่ไม่ใช่มืออาชีพที่ดีที่สุด?",
    "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_en": "What film did michaylo ilyenko make with best actor in a supporting role?",
    "question_th": "michaylo ilyenko สร้างภาพยนตร์เรื่องใดร่วมกับนักแสดงที่ดีที่สุดในบทบาทสนับสนุน?",
    "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_en": "What was the actor's name for best debut?",
    "question_th": "นักแสดงชื่ออะไรสำหรับการเดบิวต์ที่ดีที่สุด?",
    "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_en": "What was the number of nominations for natalia raskokoha?",
    "question_th": "จำนวนการเสนอชื่อเข้าชิง natalia raskokoha คือเท่าไร?",
    "context": "CREATE TABLE table_10236830_1 (nomination VARCHAR, actors_name VARCHAR)"
  },
  {
    "answer": "SELECT MAX(total_goals) FROM table_10240125_1",
    "question_en": "What is the highest value of Total Goals?",
    "question_th": "เป้าหมายรวมมีมูลค่าสูงสุดคือเท่าใด",
    "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_en": "When FA Cup Apps is 9 what is the smallest number of FA Cup Goals?",
    "question_th": "เมื่อแอป FA Cup คือ 9 จำนวนประตู FA Cup ที่น้อยที่สุดคือเท่าใด",
    "context": "CREATE TABLE table_10240125_1 (fa_cup_goals INTEGER, fa_cup_apps VARCHAR)"
  },
  {
    "answer": "SELECT MIN(total_goals) FROM table_10240125_1",
    "question_en": "What is the smallest number of Total Goals?",
    "question_th": "จำนวนประตูรวมที่น้อยที่สุดคือเท่าใด?",
    "context": "CREATE TABLE table_10240125_1 (total_goals INTEGER)"
  },
  {
    "answer": "SELECT circuit FROM table_10264179_2 WHERE fastest_lap = \"Hideki Mutoh\"",
    "question_en": "What circuit was the race where Hideki Mutoh had the fastest lap?",
    "question_th": "สนามใดคือการแข่งขันที่ Hideki Mutoh มีรอบเร็วที่สุด?",
    "context": "CREATE TABLE table_10264179_2 (circuit VARCHAR, fastest_lap VARCHAR)"
  },
  {
    "answer": "SELECT episode__number FROM table_10269427_3 WHERE production_code = 227",
    "question_en": "what is the episode # for production code 227",
    "question_th": "#รหัสผลิต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_en": "who directed the movie written by is sib ventress / aydrea ten bosch",
    "question_th": "ผู้กำกับภาพยนตร์ที่เขียนโดย 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_en": "Whatis the number of total goals maximum?",
    "question_th": "จำนวนประตูรวมสูงสุดคือเท่าใด?",
    "context": "CREATE TABLE table_10240125_2 (total_goals INTEGER)"
  },
  {
    "answer": "SELECT COUNT(temp__) AS °c_ FROM table_10262329_1 WHERE adhesive_type = \"Acryl\"",
    "question_en": "HOW MANY TEMPERATURE INTERVALS ARE POSSIBLE TO USE WITH ACRYL? ",
    "question_th": " สามารถใช้กับอะคริลิกได้กี่ช่วงอุณหภูมิ",
    "context": "CREATE TABLE table_10262329_1 (temp__ VARCHAR, adhesive_type VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(opponents) FROM table_1028356_3 WHERE partner = \"Jim Pugh\"",
    "question_en": "How many matches where played with Jim Pugh?",
    "question_th": "เล่นกับจิม พัคห์กี่แมตช์?",
    "context": "CREATE TABLE table_1028356_3 (opponents VARCHAR, partner VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_1028356_3 WHERE partner = \"Jim Pugh\"",
    "question_en": "What is the score with partner Jim Pugh?",
    "question_th": "สกอร์กับคู่หู จิม พัคห์ อยู่ที่เท่าไหร่?",
    "context": "CREATE TABLE table_1028356_3 (score VARCHAR, partner VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(surface) FROM table_1028356_3 WHERE score = \"3–6, 7–6(5), 6–3\"",
    "question_en": "How many matched scored 3–6, 7–6(5), 6–3?",
    "question_th": "มีกี่คู่ที่ได้คะแนน 3–6, 7–6(5), 6–3?",
    "context": "CREATE TABLE table_1028356_3 (surface VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_1028356_3 WHERE championship = \"Wimbledon (2)\"",
    "question_en": "What year was the championship in Wimbledon (2)?",
    "question_th": "แชมป์วิมเบิลดัน (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_en": "What is the score of the match with opponents Gretchen Magers Kelly Jones?",
    "question_th": "แมตช์นี้กับคู่ต่อสู้ เกรทเชน มาเกอร์ส เคลลี่ โจนส์ มีผลสกอร์เท่าไหร่?",
    "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_en": "How many birthdays does Earl Hanley Beshlin have?",
    "question_th": "Earl Hanley Beshlin มีวันเกิดกี่วัน?",
    "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_en": "Which politican party has a birthday of November 10, 1880",
    "question_th": "พรรคการเมืองใดมีวันเกิดวันที่ 10 พฤศจิกายน พ.ศ. 2423",
    "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_en": "Which representative has a birthday of January 31, 1866?",
    "question_th": "ตัวแทนคนไหนเกิดวันที่ 31 มกราคม พ.ศ. 2409",
    "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_en": "What is the Singles W-L for the players named  Laurynas Grigelis?",
    "question_th": "Singles WL สำหรับผู้เล่นชื่อ 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škis\"",
    "question_en": "What is the Current singles ranking for the player named Mantas Bugailiškis?",
    "question_th": "อันดับซิงเกิลปัจจุบันของผู้เล่นชื่อ Mantas Bugailiškis คืออะไร?",
    "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_en": "How many playerd Mrs. Darling in the 1999 Broadway?",
    "question_th": "นางดาร์ลิ่งเล่นละครบรอดเวย์ปี 1999 กี่คน",
    "context": "CREATE TABLE table_10312547_1 (character VARCHAR)"
  },
  {
    "answer": "SELECT 1990 AS _broadway FROM table_10312547_1 WHERE character = \"Peter Pan\"",
    "question_en": "Who played Peter Pan in the 1990 Broadway?",
    "question_th": "ใครเล่นปีเตอร์แพนในละครบรอดเวย์ปี 1990?",
    "context": "CREATE TABLE table_10312547_1 (character VARCHAR)"
  },
  {
    "answer": "SELECT broadcast_date FROM table_103084_4 WHERE bbc_one_total_viewing > 11616996.338225884",
    "question_en": "What date was BBC One total viewing greater then 11616996.338225884?",
    "question_th": "BBC One ยอดรับชมมากกว่า 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_en": "How many years did BBC One rank 20th?",
    "question_th": "BBC One อยู่ในอันดับที่ 20 กี่ปี?",
    "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_en": "What year was the BBC two total viewing 7,530,000?",
    "question_th": "BBC มีผู้ชมทั้งหมด 7,530,000 คนในปีใด",
    "context": "CREATE TABLE table_103084_4 (year INTEGER, bbc_two_total_viewing VARCHAR)"
  },
  {
    "answer": "SELECT COUNT AS ↓_function___genus_→ FROM table_10321124_1 WHERE escherichia = \"EspD\"",
    "question_en": " how many ↓ function / genus → with escherichia being espd",
    "question_th": " มี ↓ ฟังก์ชั่น / สกุล → กี่ตัว โดยที่ escherichia เป็น espd",
    "context": "CREATE TABLE table_10321124_1 (COUNT VARCHAR, escherichia VARCHAR)"
  },
  {
    "answer": "SELECT salmonella FROM table_10321124_1 WHERE escherichia = \"EspD\"",
    "question_en": "what's the salmonella with escherichia being espd",
    "question_th": "เชื้อ Salmonella ที่มี Escherichia เป็นอย่างไรบ้าง",
    "context": "CREATE TABLE table_10321124_1 (salmonella VARCHAR, escherichia VARCHAR)"
  },
  {
    "answer": "SELECT ↓_function___genus_→ FROM table_10321124_1 WHERE shigella = \"Spa32\"",
    "question_en": "what's the ↓ function / genus → with shigella being spa32",
    "question_th": "ฟังก์ชัน ↓ / ประเภท → คืออะไร โดยที่ชิเกลล่าเป็น spa32",
    "context": "CREATE TABLE table_10321124_1 (↓_function___genus_→ VARCHAR, shigella VARCHAR)"
  },
  {
    "answer": "SELECT salmonella FROM table_10321124_1 WHERE shigella = \"IpgC\"",
    "question_en": "what's the salmonella with shigella being ipgc",
    "question_th": "เชื้อ Salmonella ที่ Shigella เป็น ipgc คืออะไร",
    "context": "CREATE TABLE table_10321124_1 (salmonella VARCHAR, shigella VARCHAR)"
  },
  {
    "answer": "SELECT salmonella FROM table_10321124_1 WHERE escherichia = \"SepB (EscN)\"",
    "question_en": "what's the salmonella with escherichia being sepb (escn)",
    "question_th": "Salmonella คืออะไรโดยที่ Escherichia เป็น sepb (escn)",
    "context": "CREATE TABLE table_10321124_1 (salmonella VARCHAR, escherichia VARCHAR)"
  },
  {
    "answer": "SELECT shigella FROM table_10321124_1 WHERE yersinia = \"YscP\"",
    "question_en": "what's the shigella with yersinia being yscp",
    "question_th": "ชิเจลลาที่ yersinia เป็น 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_en": "How many original titles did Marriage Italian-Style have? ",
    "question_th": " Marriage Italian-Style มีชื่อต้นฉบับกี่เรื่อง?",
    "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_en": "What year was a movie with the original title La Leggenda del Santo Bevitore submitted?",
    "question_th": "ภาพยนตร์ที่มีชื่อดั้งเดิม La Leggenda del Santo Bevitore ส่งเข้ามาในปีใด",
    "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_en": "what's the camp with estimated deaths of 600,000",
    "question_th": "ค่ายไหนมีผู้เสียชีวิตประมาณ 600,000 คน",
    "context": "CREATE TABLE table_10335_1 (camp VARCHAR, estimated_deaths VARCHAR)"
  },
  {
    "answer": "SELECT operational FROM table_10335_1 WHERE camp = \"Sajmište\"",
    "question_en": "what's the operational period with camp  sajmište",
    "question_th": "ระยะเวลาดำเนินการของค่ายsajmišteคือเท่าไร",
    "context": "CREATE TABLE table_10335_1 (operational VARCHAR, camp VARCHAR)"
  },
  {
    "answer": "SELECT estimated_deaths FROM table_10335_1 WHERE operational = \"17 March 1942 – end of June 1943\"",
    "question_en": "what's the estimated deaths with operational period of 17 march 1942 – end of june 1943",
    "question_th": "ผู้เสียชีวิตโดยประมาณเป็นเท่าใด ระยะเวลาปฏิบัติการ 17 มีนาคม 2485 – ปลายเดือนมิถุนายน 2486",
    "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_en": "what's the current country of location with operational period  of summer of 1941 to 28 june 1944",
    "question_th": "สถานที่ปัจจุบันคือประเทศใด โดยมีระยะเวลาดำเนินการในฤดูร้อนปี 1941 ถึง 28 มิถุนายน 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_en": "what's the occupied territory with estimated deaths of 600,000",
    "question_th": "ดินแดนที่ถูกยึดครองซึ่งมีผู้เสียชีวิตประมาณ 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 – January 1945\"",
    "question_en": "what's the occupied territory with operational period of may 1940 – january 1945",
    "question_th": "ดินแดนที่ถูกยึดครองมีระยะเวลาปฏิบัติการตั้งแต่เดือนพฤษภาคม พ.ศ. 2483 – มกราคม พ.ศ. 2488",
    "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_en": "Which overall pick was traded to the Cleveland Browns?",
    "question_th": "ตัวเลือกโดยรวมใดที่แลกกับ Cleveland Browns?",
    "context": "CREATE TABLE table_10360823_1 (overall VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_10360823_1 WHERE overall = 240",
    "question_en": "Overall pick 240 was a pick in which round?",
    "question_th": "โดยรวมแล้วตัวเลือก 240 เป็นตัวเลือกในรอบใด",
    "context": "CREATE TABLE table_10360823_1 (round VARCHAR, overall VARCHAR)"
  },
  {
    "answer": "SELECT MIN(overall) FROM table_10360823_1 WHERE college = \"Youngstown State\"",
    "question_en": "Which overall pick number went to college at Youngstown State?",
    "question_th": "หมายเลขเลือกโดยรวมใดที่ไปเรียนที่วิทยาลัยที่ Youngstown State",
    "context": "CREATE TABLE table_10360823_1 (overall INTEGER, college VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_10360823_1 WHERE overall = 255",
    "question_en": "What position is played by pick 255 overall?",
    "question_th": "Pick 255 โดยรวมเล่นตำแหน่งไหน?",
    "context": "CREATE TABLE table_10360823_1 (position VARCHAR, overall VARCHAR)"
  },
  {
    "answer": "SELECT player_name FROM table_10360823_1 WHERE round = 17",
    "question_en": "Which player was chosen in round 17?",
    "question_th": "ผู้เล่นคนไหนที่ได้รับเลือกในรอบ 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_en": "The record of 7-3 had the largest attendance of what?",
    "question_th": "สถิติ 7-3 มีผู้เข้าชมมากที่สุด?",
    "context": "CREATE TABLE table_10361453_2 (attendance INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_10361453_2 WHERE record = \"9-4\"",
    "question_en": "The record of 9-4 was against which opponent?",
    "question_th": "สถิติ 9-4 แข่งกับคู่ต่อสู้คนไหน?",
    "context": "CREATE TABLE table_10361453_2 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_10361453_2 WHERE game = 8",
    "question_en": "The game number of 8 had a record of what?",
    "question_th": "เกมหมายเลข 8 มีสถิติอะไรบ้าง?",
    "context": "CREATE TABLE table_10361453_2 (record VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT MAX(round) FROM table_10360656_1 WHERE player_name = \"Steve Stonebreaker\"",
    "question_en": "What round was Steve Stonebreaker drafted?",
    "question_th": "Steve Stonebreaker ถูกดราฟท์รอบไหน?",
    "context": "CREATE TABLE table_10360656_1 (round INTEGER, player_name VARCHAR)"
  },
  {
    "answer": "SELECT MIN(choice) FROM table_10360656_1",
    "question_en": "Who was the top picki n the draft?",
    "question_th": "ใครคือตัวเลือกอันดับต้นๆ ในร่าง?",
    "context": "CREATE TABLE table_10360656_1 (choice INTEGER)"
  },
  {
    "answer": "SELECT choice FROM table_10360656_1 WHERE player_name = \"Bill Hill\"",
    "question_en": "What round was Bill Hill drafted?",
    "question_th": "Bill Hill ถูกดราฟท์รอบไหน?",
    "context": "CREATE TABLE table_10360656_1 (choice VARCHAR, player_name VARCHAR)"
  },
  {
    "answer": "SELECT player_name FROM table_10360656_1 WHERE position = \"Quarterback\"",
    "question_en": "What was the name of the quarterback drafted?",
    "question_th": "กองหลังที่ถูกดราฟท์ชื่ออะไร?",
    "context": "CREATE TABLE table_10360656_1 (player_name VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_10361625_1 WHERE player_name = \"Keith Hartwig\"",
    "question_en": "Where is the college where Keith Hartwig plays?",
    "question_th": "วิทยาลัยที่ Keith Hartwig เล่นอยู่ที่ไหน?",
    "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_en": "What is the name of the linebacker at Illinois college?",
    "question_th": "บร็องโกที่วิทยาลัยอิลลินอยส์ชื่ออะไร?",
    "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_en": "What is the greatest round of overall 83?",
    "question_th": "รอบที่ยิ่งใหญ่ที่สุดของรอบ 83 ทั้งหมดคือรอบไหน?",
    "context": "CREATE TABLE table_10361625_1 (round INTEGER, overall VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_10361625_1 WHERE player_name = \"Tommy Kramer\"",
    "question_en": "Which round did Tommy Kramer play in>",
    "question_th": "ทอมมี่ เครเมอร์ลงเล่นรอบไหน>",
    "context": "CREATE TABLE table_10361625_1 (round VARCHAR, player_name VARCHAR)"
  },
  {
    "answer": "SELECT overall FROM table_10361625_1 WHERE college = \"Rice\"",
    "question_en": "What is Rice's collage score?",
    "question_th": "คะแนนคอลลาจของไรซ์คืออะไร?",
    "context": "CREATE TABLE table_10361625_1 (overall VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT MIN(round) FROM table_10361230_1 WHERE position = \"Defensive Back\"",
    "question_en": "Where does the defensive back position appear first?",
    "question_th": "ตำแหน่งกองหลังจะปรากฏที่ใดเป็นอันดับแรก?",
    "context": "CREATE TABLE table_10361230_1 (round INTEGER, position VARCHAR)"
  },
  {
    "answer": "SELECT MIN(overall) FROM table_10361230_1 WHERE player_name = \"Bruce Cerone\"",
    "question_en": "What is Bruce Cerone overall?",
    "question_th": "Bruce Cerone โดยรวมคืออะไร?",
    "context": "CREATE TABLE table_10361230_1 (overall INTEGER, player_name VARCHAR)"
  },
  {
    "answer": "SELECT player_name FROM table_10361230_1 WHERE college = \"Emporia State\"",
    "question_en": "Which player went to Emporia State?",
    "question_th": "นักเตะคนไหนไปเอ็มโพเรียสเตท?",
    "context": "CREATE TABLE table_10361230_1 (player_name VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT MAX(choice) FROM table_10361230_1",
    "question_en": "What is the highest choice?",
    "question_th": "ตัวเลือกสูงสุดคืออะไร?",
    "context": "CREATE TABLE table_10361230_1 (choice INTEGER)"
  },
  {
    "answer": "SELECT college FROM table_10361230_1 WHERE player_name = \"Bill Cappleman\"",
    "question_en": "What college did Bill Cappleman go to?",
    "question_th": "Bill Cappleman เข้าเรียนที่วิทยาลัยใด",
    "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_en": "For the headstamp id of h2, what was the color of the bullet tip?",
    "question_th": "สำหรับ headstamp id ของ h2 ปลายกระสุนมีสีอะไร?",
    "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_en": "For the functional type of light ball, what were the other features?",
    "question_th": "สำหรับ light ball แบบใช้งานได้จริง มีคุณสมบัติอื่นๆ อีกบ้าง?",
    "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_en": "How many primers annulus colors were there when the color of the bullet tip was white?",
    "question_th": "สีของไพรเมอร์วงแหวนมีกี่สีเมื่อสีของปลายกระสุนเป็นสีขาว?",
    "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_en": "How many bullet tips colors had other features of a blue band on case base?",
    "question_th": "ปลายกระสุนมีกี่สีที่มีคุณสมบัติอื่นของแถบสีน้ำเงินบนฐานตัวเรือน",
    "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_en": "How many touchdowns were scored in the year with a completion percentage of 56.0?",
    "question_th": "ในปีนี้มีการทำทัชดาวน์ได้กี่ครั้งโดยมีเปอร์เซ็นต์สำเร็จที่ 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_en": "How many years were there with 348 attempts?",
    "question_th": "มีความพยายาม 348 ครั้งกี่ปี?",
    "context": "CREATE TABLE table_1037590_1 (yards VARCHAR, attempts VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(london) FROM table_10402018_1 WHERE us_tour = \"Babs Rubenstein\"",
    "question_en": "How many characters is by Babs Rubenstein?",
    "question_th": "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_en": "Which person is in the tronto/broadway and has a uk tour of n/a",
    "question_th": "คนไหนที่อยู่ในทรอนโต/บรอดเวย์และมีทัวร์อังกฤษไม่มีข้อมูล",
    "context": "CREATE TABLE table_10402018_1 (toronto___broadway VARCHAR, uk_tour VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(london) FROM table_10402018_1 WHERE character = \"Frank\"",
    "question_en": "How many people play Frank in London?",
    "question_th": "มีคนเล่นแฟรงค์ในลอนดอนกี่คน?",
    "context": "CREATE TABLE table_10402018_1 (london VARCHAR, character VARCHAR)"
  },
  {
    "answer": "SELECT class_aAA FROM table_10399701_2 WHERE school_year = \"2000-01\"",
    "question_en": "Who was Class AAA during the school year of 2000-01?",
    "question_th": "ใครคือคลาส AAA ในช่วงปีการศึกษา 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_en": "Who was Class AAA during the same year that Class A was (tie) Apple Springs/Texline?",
    "question_th": "Class AAA คือใครในปีเดียวกับที่ Class A (เสมอกัน) 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_en": "Who was Class AAAAA during the school year of 1995-96?",
    "question_th": "ใครคือคลาส AAAAA ในช่วงปีการศึกษา 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_en": "How many records are listed on Friday, May 25?",
    "question_th": "มีกี่บันทึกที่อยู่ในวันศุกร์ที่ 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_en": "How many opponents were played on Saturday, June 9?",
    "question_th": "วันเสาร์ที่ 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_en": "In what week was the first game played at the Commerzbank-Arena?",
    "question_th": "เกมแรกที่เล่นที่คอมเมิร์ซแบงก์-อารีน่าคือสัปดาห์ใด?",
    "context": "CREATE TABLE table_10392906_2 (week INTEGER, game_site VARCHAR)"
  },
  {
    "answer": "SELECT original_air_date FROM table_10413597_5 WHERE setting = \"1544\"",
    "question_en": "What was the original air date of an episode set in 1544?",
    "question_th": "วันที่ออกอากาศดั้งเดิมของตอนที่ตั้งขึ้นในปี 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_en": "How many settings where there for episode 29 of the season?",
    "question_th": "มีการตั้งค่ากี่ฉากสำหรับตอนที่ 29 ของซีซั่น?",
    "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_en": "Who wrote the episode that was set in winter 1541/february 13, 1542?",
    "question_th": "ใครเป็นคนเขียนตอนที่เกิดเหตุในฤดูหนาวปี 1541/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_en": "What is the name of the track that lasts 5:30?",
    "question_th": "เพลงที่เล่นนาทีที่ 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_en": "What is the duration of the song where the major instrument is the piano and the date is 2004-02-03?",
    "question_th": "เพลงที่ใช้เปียโนเป็นเครื่องดนตรีหลักคือเพลงใด และวันที่คือ 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_en": "What is the total number of lyricist where the lyrics theme is romance and the song lasts 3:50?",
    "question_th": "ผู้แต่งเนื้อร้องโดยเนื้อเพลงเป็นแนวโรแมนติกและมีความยาวเพลง 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_en": "What is the major instrument of the song that lasts 4:32? ",
    "question_th": " เครื่องดนตรีหลักของเพลงที่มีความยาว 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_en": "What is the total number of music genre/style in which the lyrics are a detective story?",
    "question_th": "แนวเพลง/สไตล์ที่เนื้อเพลงเป็นเรื่องราวสืบสวนมีจำนวนเท่าใด",
    "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_en": "What is the playoffs for the usl pro select league?",
    "question_th": "รอบตัดเชือกสำหรับลีก usl pro select คืออะไร?",
    "context": "CREATE TABLE table_1046071_1 (playoffs VARCHAR, league VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(division) FROM table_1046071_1 WHERE open_cup = \"1st Round\"",
    "question_en": "What is the number of the division for the 1st round?",
    "question_th": "ดิวิชั่นรอบที่ 1 เบอร์อะไรคะ?",
    "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_en": "What was the team where series is formula renault 2.0 nec?",
    "question_th": "ทีมงานชุดไหนเป็นสูตร 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_en": "What is the total number of poles for arden international?",
    "question_th": "จำนวนเสาทั้งหมดของ 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_en": "What is the number of wins for gp2 series for racing engineering?",
    "question_th": "จำนวนชัยชนะของซีรีส์ gp2 สำหรับวิศวกรรมการแข่งรถคือเท่าไร?",
    "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_en": "What is the number of podiums for season 2010 for campionato italiano superstars.",
    "question_th": "จำนวนโพเดียมสำหรับฤดูกาล 2010 สำหรับซูเปอร์สตาร์ Campionato Italiano คือเท่าใด",
    "context": "CREATE TABLE table_10420426_1 (podiums VARCHAR, season VARCHAR, series VARCHAR)"
  },
  {
    "answer": "SELECT podiums FROM table_10420426_1 WHERE points = 144",
    "question_en": "What is the podium for 144 points?",
    "question_th": "โพเดี้ยม 144 แต้มอยู่ที่เท่าไร?",
    "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_en": "How many writers had an US air date of september 25, 1993?",
    "question_th": "มีนักเขียนกี่คนที่ออกอากาศวันที่ 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_en": "How many villians were in No. 25?",
    "question_th": "หมายเลข 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_en": "what being the maximum year where regular season is 4th, northwest",
    "question_th": "คือปีสูงสุดซึ่งฤดูกาลปกติคืออันดับที่ 4 ทิศตะวันตกเฉียงเหนือ",
    "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_en": "what is the total number of playoffs where regular season is 6th, southwest",
    "question_th": "จำนวนรอบตัดเชือกทั้งหมดซึ่งฤดูกาลปกติคืออันดับที่ 6 ตะวันตกเฉียงใต้",
    "context": "CREATE TABLE table_1046454_1 (playoffs VARCHAR, regular_season VARCHAR)"
  },
  {
    "answer": "SELECT MAX(division) FROM table_1046454_1",
    "question_en": "what is the maximum division",
    "question_th": "การแบ่งสูงสุดคืออะไร",
    "context": "CREATE TABLE table_1046454_1 (division INTEGER)"
  },
  {
    "answer": "SELECT league FROM table_1046454_1 WHERE regular_season = \"2nd, Northwest\"",
    "question_en": " what's the league where regular season is 2nd, northwest",
    "question_th": " ลีกอะไรที่มีฤดูกาลปกติเป็นอันดับ 2 ตะวันตกเฉียงเหนือ",
    "context": "CREATE TABLE table_1046454_1 (league VARCHAR, regular_season VARCHAR)"
  },
  {
    "answer": "SELECT regular_season FROM table_1046454_1 WHERE year = 2011",
    "question_en": "what are all the regular season where year is 2011",
    "question_th": "ฤดูกาลปกติทั้งหมดคือปี 2554 คืออะไร",
    "context": "CREATE TABLE table_1046454_1 (regular_season VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(title) FROM table_10470082_5 WHERE _number = 11",
    "question_en": "How many titles have the number 11",
    "question_th": "มีกี่ชื่อที่มีหมายเลข 11",
    "context": "CREATE TABLE table_10470082_5 (title VARCHAR, _number VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(no) FROM table_10470082_5 WHERE villains = \"Mrs. Briar\"",
    "question_en": "How many have Mrs. briar as a villain",
    "question_th": "มีนางไบรอาร์เป็นตัวร้ายกี่คน",
    "context": "CREATE TABLE table_10470082_5 (no VARCHAR, villains VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(no) FROM table_10470082_5 WHERE _number = 8",
    "question_en": "how many have the number 8",
    "question_th": "มีเลข 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_en": "What is the name of the episode told by Kiki and directed by Will Dixon?",
    "question_th": "ชื่อของตอนที่กีกี้เล่าและกำกับโดยวิล ดิกสันชื่ออะไร",
    "context": "CREATE TABLE table_10470082_6 (title VARCHAR, storyteller VARCHAR, director VARCHAR)"
  },
  {
    "answer": "SELECT writer FROM table_10470082_6 WHERE _number = 3",
    "question_en": "Who wrote Episode #3?",
    "question_th": "ใครเป็นคนเขียนตอนที่ 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_en": "Who are the villains in the episodes where Megan is the storyteller and Lorette LeBlanc is the director?",
    "question_th": "ใครคือคนร้ายในตอนที่เมแกนเป็นนักเล่าเรื่องและลอเร็ตต์ เลอบลังก์เป็นผู้กำกับ",
    "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_en": "What is the largest # for an episode that was written by Allison Lea Bingeman?",
    "question_th": "# ที่ใหญ่ที่สุดสำหรับตอนที่เขียนโดย 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_en": "Name the species when petal width is 2.0 and petal length is 4.9",
    "question_th": "ตั้งชื่อสายพันธุ์เมื่อกลีบกว้าง 2.0 และความยาวกลีบ 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_en": "Name the sepal width for i.virginica with petal length of 5.1",
    "question_th": "ตั้งชื่อความกว้างของกลีบเลี้ยงสำหรับ i.virginica โดยมีความยาวกลีบดอกเท่ากับ 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_en": "Name the number of species with sepal width of 3.4 and sepal length of 5.4",
    "question_th": "ตั้งชื่อจำนวนชนิดที่มีความกว้างของกลีบเลี้ยง 3.4 และความยาวกลีบเลี้ยงเท่ากับ 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_en": "Name the sepal length for sepal width of 2.8 and petal length of 5.1",
    "question_th": "ตั้งชื่อความยาวกลีบเลี้ยงสำหรับความกว้างกลีบเลี้ยง 2.8 และความยาวกลีบดอก 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_en": "Name the sepal width when sepal length is 6.5 and petal width is 2.2",
    "question_th": "ตั้งชื่อความกว้างของกลีบเลี้ยงเมื่อกลีบเลี้ยงยาว 6.5 และความกว้างของกลีบดอกคือ 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_en": "Name the sepal lengh when sepal width is 2.9 and petal width 1.3",
    "question_th": "ตั้งชื่อความยาวกลีบเลี้ยงเมื่อความกว้างของกลีบเลี้ยงคือ 2.9 และความกว้างกลีบดอกคือ 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_en": "Who is the director and what number is the episode for episode #1 of Are You Afraid of the Dark season 3?",
    "question_th": "ใครคือผู้กำกับ และตอนที่ 1 ของ Are You Afraid of the Dark ซีซั่น 3 อยู่ที่หมายเลขใด?",
    "context": "CREATE TABLE table_10470082_4 (director VARCHAR, _number VARCHAR)"
  },
  {
    "answer": "SELECT director FROM table_10470082_4 WHERE writer = \"Scott Peters\"",
    "question_en": "Who is the director of the episode whom Scott Peters is the writer?",
    "question_th": "ใครคือผู้กำกับตอนที่ Scott Peters เป็นผู้เขียนบท?",
    "context": "CREATE TABLE table_10470082_4 (director VARCHAR, writer VARCHAR)"
  },
  {
    "answer": "SELECT villains FROM table_10470082_4 WHERE _number = 7",
    "question_en": "Who is the villain in episode #7?",
    "question_th": "ใครคือผู้ร้ายในตอนที่ 7?",
    "context": "CREATE TABLE table_10470082_4 (villains VARCHAR, _number VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(writer) FROM table_10470082_8 WHERE _number = 1",
    "question_en": "Who wrote episode #1 in season 7?",
    "question_th": "ใครเป็นคนเขียนตอนที่ 1 ในซีซั่น 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_en": "When did the episode written by Jim Morris air?",
    "question_th": "ตอนที่เขียนโดย Jim Morris ออกอากาศเมื่อใด",
    "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_en": "What was Datsun Twin 200's fastest lap?",
    "question_th": "อะไรคือรอบที่เร็วที่สุดของ Datsun Twin 200?",
    "context": "CREATE TABLE table_10527215_3 (fastest_lap VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT report FROM table_10527215_3 WHERE name = \"True Value 500\"",
    "question_en": "What's the report for the True Value 500?",
    "question_th": "รายงานสำหรับ 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_en": "What was Johnny Rutherford's fastest lap while Al Unser was the pole position?",
    "question_th": "อะไรคือรอบที่เร็วที่สุดของ Johnny Rutherford ขณะที่ Al Unser ครองตำแหน่งโพลโพซิชั่น?",
    "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_en": "What's the report on Penske Racing winning while the pole position was Al Unser?",
    "question_th": "รายงานของ Penske Racing ชนะในขณะที่ตำแหน่งโพลโพซิชั่นคือ 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_en": "Which countries have a scouting organization that was founded in 1926, and joined WOSM in 1930?",
    "question_th": "ประเทศใดบ้างที่มีองค์กรสอดแนมซึ่งก่อตั้งขึ้นเมื่อปี พ.ศ. 2469 และเข้าร่วม WOSM ในปี พ.ศ. 2473",
    "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_en": "Does Venezuela admit only boys, only girls, or both?",
    "question_th": "เวเนซุเอลายอมรับเฉพาะเด็กผู้ชาย เด็กผู้หญิงเท่านั้น หรือทั้งสองอย่าง?",
    "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_en": "Which organizations were founded in 1972, but became WOSM members until 1977?",
    "question_th": "องค์กรใดบ้างที่ก่อตั้งขึ้นในปี พ.ศ. 2515 แต่ได้เป็นสมาชิก WOSM จนถึงปี พ.ศ. 2520",
    "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_en": "Does the Scout Association of Hong Kong admit boys, girls, or both?",
    "question_th": "สมาคมลูกเสือแห่งฮ่องกงยอมรับเด็กชาย เด็กหญิง หรือทั้งสองอย่างหรือไม่?",
    "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_en": "Does the Ghana Scout Association (founded in 1912) admit boys, girls, or both?",
    "question_th": "Ghana Scout Association (ก่อตั้งในปี 1912) ยอมรับเด็กชาย เด็กหญิง หรือทั้งสองอย่างหรือไม่?",
    "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_en": "What is the model number introduced May 1999?",
    "question_th": "หมายเลขรุ่นที่แนะนำในเดือนพฤษภาคม 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_en": "What is the print resolution (FPI) for December 2002?",
    "question_th": "ความละเอียดการพิมพ์ (FPI) ของเดือนธันวาคม 2545 เป็นเท่าใด",
    "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_en": "What is the maximum memory for the model discontinued in November 2001?",
    "question_th": "หน่วยความจำสูงสุดสำหรับรุ่นที่เลิกผลิตในเดือนพฤศจิกายน พ.ศ. 2544 คือเท่าใด",
    "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_en": "What is main presenters of La Granja?",
    "question_th": "ผู้นำเสนอหลักของ 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_en": "What is the main presenter of bulgaria?",
    "question_th": "พรีเซนเตอร์หลักของบัลแกเรียคืออะไร?",
    "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_en": "How many winners are there of farma?",
    "question_th": "ฟาร์มามีผู้ชนะกี่คน?",
    "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_en": "What is the most cup goals for seasson 1911-12?",
    "question_th": "ประตูในบอลถ้วยในฤดูกาล 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_en": "What is the league apps for season 1923-24?",
    "question_th": "แอพลีกสำหรับฤดูกาล 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_en": "What is the team for season 1911-12?",
    "question_th": "ทีมในฤดูกาล 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) – 9.22 (76)\"",
    "question_en": "what's the minimum attendance with score  10.16 (76) – 9.22 (76)",
    "question_th": "ผู้เข้าร่วมขั้นต่ำคือเท่าไร คะแนน 10.16 (76) – 9.22 (76)",
    "context": "CREATE TABLE table_10566855_1 (attendance INTEGER, score VARCHAR)"
  },
  {
    "answer": "SELECT premier FROM table_10566855_1 WHERE season = 1970",
    "question_en": "who's the premier with in 1970",
    "question_th": "ใครเป็นนายกรัฐมนตรีด้วยในปี 1970",
    "context": "CREATE TABLE table_10566855_1 (premier VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT runner_up FROM table_10566855_1 WHERE premier = \"Richmond\"",
    "question_en": "who are all the runner-up for premier in richmond",
    "question_th": "ซึ่งล้วนเป็นรองแชมป์พรีเมียร์ที่ริชมอนด์",
    "context": "CREATE TABLE table_10566855_1 (runner_up VARCHAR, premier VARCHAR)"
  },
  {
    "answer": "SELECT MIN(attendance) FROM table_10566855_1 WHERE score = \"8.16 (64) – 8.12 (60)\"",
    "question_en": "what is the minimum attendance with score 8.16 (64) – 8.12 (60)",
    "question_th": "ผู้เข้าร่วมขั้นต่ำคือเท่าไร คะแนน 8.16 (64) – 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_en": "How many mileposts are there on Anne Street?",
    "question_th": "มีระยะทางกี่ไมล์บนถนนแอนน์",
    "context": "CREATE TABLE table_10568553_1 (milepost VARCHAR, street_names VARCHAR)"
  },
  {
    "answer": "SELECT street_names FROM table_10568553_1 WHERE milepost = \"12.2\"",
    "question_en": "Which street is 12.2 miles long?",
    "question_th": "ถนนสายใดยาว 12.2 ไมล์",
    "context": "CREATE TABLE table_10568553_1 (street_names VARCHAR, milepost VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_10568553_1 WHERE roads_intersected = \"Route 24\"",
    "question_en": "Where does Route 24 intersect?",
    "question_th": "เส้นทาง 24 ตัดกันที่ไหน?",
    "context": "CREATE TABLE table_10568553_1 (location VARCHAR, roads_intersected VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_10568553_1 WHERE milepost = \"12.8\"",
    "question_en": "Where is milepost 12.8?",
    "question_th": "ไมล์โพสต์ 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_en": "What is the minimum amount for wool for 2001-02?",
    "question_th": "จำนวนเงินขั้นต่ำสำหรับผ้าขนสัตว์สำหรับปี 2544-2545 คือเท่าไร?",
    "context": "CREATE TABLE table_1057262_1 (commodity VARCHAR)"
  },
  {
    "answer": "SELECT operational_owner_s_ FROM table_1057316_1 WHERE build_date = \"April 1892\"",
    "question_en": "Who were the operational owners during the construction date of April 1892?",
    "question_th": "ใครเป็นเจ้าของกิจการในระหว่างวันก่อสร้างเดือนเมษายน พ.ศ. 2435?",
    "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_en": "Where can you find Colorado and Southern Railway #9?",
    "question_th": "คุณจะพบรถไฟโคโลราโดและสายใต้ #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_en": "What is the wheel arrangement for the train in Riverdale, Georgia?",
    "question_th": "การจัดล้อสำหรับรถไฟใน 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_en": "When was the train 2053 built?",
    "question_th": "รถไฟ พ.ศ. 2596 สร้างขึ้นเมื่อใด",
    "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_en": "How many wheels does the train owned by Texas and New Orleans Railroad #319 have?",
    "question_th": "รถไฟที่ Texas และ New Orleans Railroad #319 เป็นเจ้าของมีกี่ล้อ",
    "context": "CREATE TABLE table_1057316_1 (wheel_arrangement___whyte_notation__ VARCHAR, operational_owner_s_ VARCHAR)"
  },
  {
    "answer": "SELECT institution FROM table_10577579_3 WHERE men’s_nickname = \"Blazers\"",
    "question_en": "Which college has the men's nickname of the blazers?",
    "question_th": "วิทยาลัยใดมีชื่อเล่นของผู้ชายว่าเสื้อคลุม?",
    "context": "CREATE TABLE table_10577579_3 (institution VARCHAR, men’s_nickname VARCHAR)"
  },
  {
    "answer": "SELECT joined FROM table_10577579_3 WHERE women’s_nickname = \"Wolfpack\"",
    "question_en": "Name the joined for the wolfpack women's nickname",
    "question_th": "ตั้งชื่อที่ร่วมเป็นชื่อเล่นของผู้หญิงหมาป่า",
    "context": "CREATE TABLE table_10577579_3 (joined VARCHAR, women’s_nickname VARCHAR)"
  },
  {
    "answer": "SELECT left FROM table_10577579_3 WHERE women’s_nickname = \"Lady Pilots\"",
    "question_en": "Name the left of the Lady Pilots.",
    "question_th": "ตั้งชื่อด้านซ้ายของนักบินหญิง",
    "context": "CREATE TABLE table_10577579_3 (left VARCHAR, women’s_nickname VARCHAR)"
  },
  {
    "answer": "SELECT women’s_nickname FROM table_10577579_3 WHERE enrollment = 1500 AND location = \"Mobile, Alabama\"",
    "question_en": "Name the women's nickname when the enrollment is 1500 in mobile, Alabama.",
    "question_th": "ตั้งชื่อเล่นของผู้หญิงเมื่อลงทะเบียนเป็น 1,500 ในมือถือแอละแบมา",
    "context": "CREATE TABLE table_10577579_3 (women’s_nickname VARCHAR, enrollment VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT current_conference FROM table_10577579_3 WHERE location = \"Jackson, Mississippi\"",
    "question_en": "Which conference is in Jackson, Mississippi?",
    "question_th": "การประชุมใดที่เมืองแจ็กสัน รัฐมิสซิสซิปปี้",
    "context": "CREATE TABLE table_10577579_3 (current_conference VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT men’s_nickname FROM table_10577579_3 WHERE women’s_nickname = \"Lady Wildcats\"",
    "question_en": "What is the men's nickname at the school that has the lady wildcats women's nickname?",
    "question_th": "ชื่อเล่นของผู้ชายที่โรงเรียนที่มีชื่อเล่นว่าผู้หญิง wildcats คืออะไร?",
    "context": "CREATE TABLE table_10577579_3 (men’s_nickname VARCHAR, women’s_nickname VARCHAR)"
  },
  {
    "answer": "SELECT mens_nickname FROM table_10577579_2 WHERE location = \"Jacksonville, Florida\"",
    "question_en": "What is the Mens Nickname for the member location of Jacksonville, florida?",
    "question_th": "ชื่อเล่นสำหรับบุรุษสำหรับที่ตั้งสมาชิกของแจ็กสันวิลล์ รัฐฟลอริดา คืออะไร?",
    "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_en": "What is the enrollment for the institution that was founded in 1866 and is a private/(african methodist) type?",
    "question_th": "การลงทะเบียนสำหรับสถาบันที่ก่อตั้งขึ้นในปี 1866 และเป็นประเภทเอกชน/(เมธอดิสต์แบบแอฟริกัน) คืออะไร",
    "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_en": "That is the year founded for the institution location of Nashville, Tennessee?",
    "question_th": "เป็นปีที่ก่อตั้งสำหรับที่ตั้งของสถาบันในเมืองแนชวิลล์ รัฐเทนเนสซี?",
    "context": "CREATE TABLE table_10577579_2 (founded INTEGER, location VARCHAR)"
  },
  {
    "answer": "SELECT joined FROM table_10577579_2 WHERE institution = \"Tougaloo College\"",
    "question_en": "What is the year the institution Tougaloo College joined?",
    "question_th": "สถาบัน Tougaloo College เข้าร่วมในปีใด",
    "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_en": "What is the date of vacancy when the date of appointment is 28 november 2007 and replaced by is alex mcleish?",
    "question_th": "ตำแหน่งว่างคือวันที่ 28 พฤศจิกายน 2550 และแทนที่ด้วย อเล็กซ์ แม็คเคลช?",
    "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_en": "What is the date of appointment when the date of vacancy is 21 december 2007?",
    "question_th": "วันที่ได้รับการแต่งตั้งคือวันที่ตำแหน่งว่างคือวันที่ 21 ธันวาคม 2550?",
    "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_en": "Who replaced when team is wigan athletic?",
    "question_th": "ใครเข้ามาแทนเมื่อทีมวีแกน แอธเลติก?",
    "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_en": "What is the date of vacancy when the team is manchester city and replaced by is mark hughes?",
    "question_th": "วันที่ทีมเป็นแมนเชสเตอร์ ซิตี้ และมาร์ค ฮิวจ์ส เข้ามาแทนที่คือวันไหน?",
    "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_en": "What is the date of appointment when replaced by is roy hodgson?",
    "question_th": "นัดกับรอย ฮอดจ์สันแทนเมื่อใด?",
    "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_en": "Who replaced when position in table is pre-season?",
    "question_th": "ใครเข้ามาแทนที่เมื่อตำแหน่งในตารางคือช่วงปรีซีซั่น?",
    "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_en": "How many games had a score value of 813.5 in post-season play?",
    "question_th": "มีกี่เกมที่มีคะแนน 813.5 ในการเล่นหลังจบฤดูกาล",
    "context": "CREATE TABLE table_1059743_1 (play_off VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT play_off FROM table_1059743_1 WHERE points = \"860.5\"",
    "question_en": "Did any team score games that totaled up to 860.5?",
    "question_th": "มีทีมใดบ้างที่ทำคะแนนเกมรวมได้ถึง 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_en": "What was the score of the game when the team reached a record of 6-9?",
    "question_th": "เมื่อทีมทำสถิติสกอร์ 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_en": "What type institution is point park university",
    "question_th": "มหาวิทยาลัยพอยต์พาร์คเป็นสถาบันประเภทใด",
    "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_en": "How many institutions are located in wilmore, kentucky and private",
    "question_th": "มีสถาบันกี่แห่งที่ตั้งอยู่ในวิลมอร์ เคนตักกี้ และเอกชน",
    "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_en": "how many founded dates are listed for carlow university 1",
    "question_th": "มีรายชื่อวันที่ก่อตั้งสำหรับมหาวิทยาลัยคาร์โลว์กี่วัน 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_en": "what is the original air date of the episode no in season 9?",
    "question_th": "ตอนที่ 9 ของซีซั่น 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_en": "What is the title of the episode written by denis leary, peter tolan and evan reilly?",
    "question_th": "ตอนที่เขียนโดยเดนิส เลียรี, ปีเตอร์ โทแลน และอีวาน ไรลีย์มีชื่อว่าอะไร",
    "context": "CREATE TABLE table_10610087_3 (title VARCHAR, written_by VARCHAR)"
  },
  {
    "answer": "SELECT dates_active FROM table_10602294_1 WHERE name = \"Kamba\"",
    "question_en": "When was Kamba active?",
    "question_th": "Kamba ใช้งานเมื่อใด?",
    "context": "CREATE TABLE table_10602294_1 (dates_active VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT pressure FROM table_10602294_1 WHERE deaths = \"95km/h (60mph)\"",
    "question_en": "What was the cyclone's pressure in the storm that death was equal to 95km/h (60mph)?",
    "question_th": "ความกดดันของพายุไซโคลนในพายุที่มีผู้เสียชีวิตเท่ากับ 95 กม./ชม. (60 ไมล์/ชม.) เป็นเท่าใด",
    "context": "CREATE TABLE table_10602294_1 (pressure VARCHAR, deaths VARCHAR)"
  },
  {
    "answer": "SELECT dates_active FROM table_10602294_1 WHERE deaths = \"185km/h (115mph)\"",
    "question_en": "What were the active dates for the storm that had 185km/h (115mph) deaths?",
    "question_th": "พายุที่มีผู้เสียชีวิตด้วยความเร็ว 185 กม./ชม. (115 ไมล์/ชม.) มีผู้เสียชีวิตเมื่อใด",
    "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_en": "What was the damage (usd) from the cyclones that measured 1003hPa (29.62inHg) pressure?",
    "question_th": "ความเสียหาย (usd) จากพายุไซโคลนที่วัดความดัน 1003hPa (29.62inHg) คืออะไร",
    "context": "CREATE TABLE table_10602294_1 (damage__usd_ VARCHAR, pressure VARCHAR)"
  },
  {
    "answer": "SELECT average FROM table_10621256_1 WHERE high_score = 120",
    "question_en": " what's the average where high score is 120",
    "question_th": "ค่าเฉลี่ยที่คะแนนสูงสุดคือ 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_en": " what's the player where 50 is 2 and n/o is 0",
    "question_th": " ผู้เล่นคืออะไร โดยที่ 50 คือ 2 และ n/o คือ 0",
    "context": "CREATE TABLE table_10621256_1 (player VARCHAR, n_o VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_10621256_1 WHERE inns = 21",
    "question_en": " what's the player where inns is 21",
    "question_th": " ผู้เล่นคนไหนที่โรงเตี๊ยมอายุ 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_en": "Which general election had a pq majority and a 44.75% of the popular vote?",
    "question_th": "การเลือกตั้งทั่วไปใดที่มีคะแนนเสียงข้างมาก pq และคะแนนนิยม 44.75%",
    "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_en": "What is the least number of candidates running were there when 80 seats were won?",
    "question_th": "มีผู้สมัครลงสมัครรับเลือกตั้งน้อยที่สุดจำนวนเท่าใดเมื่อได้รับที่นั่ง 80 ที่นั่ง?",
    "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_en": "How many seats were won in the election with 125 candidates?",
    "question_th": "การเลือกตั้งได้ที่นั่งกี่ที่นั่งโดยมีผู้สมัคร 125 คน?",
    "context": "CREATE TABLE table_106367_2 (_number_of_seats_won VARCHAR, _number_of_candidates VARCHAR)"
  },
  {
    "answer": "SELECT MAX(week) FROM table_10647639_1",
    "question_en": "How many weeks are there?",
    "question_th": "มีกี่สัปดาห์?",
    "context": "CREATE TABLE table_10647639_1 (week INTEGER)"
  },
  {
    "answer": "SELECT COUNT(attendance) FROM table_10647639_1 WHERE opponent = \"Indianapolis Colts\"",
    "question_en": "How many people attended the game against the indianapolis colts?",
    "question_th": "มีกี่คนที่เข้าร่วมเกมกับ 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_en": "On december 16, 1985, all the records were what?",
    "question_th": "เมื่อวันที่ 16 ธันวาคม 2528 มีบันทึกทั้งหมดอะไรบ้าง?",
    "context": "CREATE TABLE table_10647639_1 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(result) FROM table_10646790_2 WHERE record = \"0-4\"",
    "question_en": "How many results are there for the 0-4 record?",
    "question_th": "สถิติ 0-4 มีผลลัพธ์กี่รายการ?",
    "context": "CREATE TABLE table_10646790_2 (result VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(week) FROM table_10646790_2 WHERE date = \"October 11, 1969\"",
    "question_en": "How many weeks are there that include the date October 11, 1969.",
    "question_th": "มีกี่สัปดาห์ซึ่งรวมวันที่ 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_en": "How many weeks are there that include the date November 9, 1969.",
    "question_th": "รวมวันที่ 9 พฤศจิกายน พ.ศ. 2512 มีกี่สัปดาห์",
    "context": "CREATE TABLE table_10646790_2 (week VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(record) FROM table_10646790_2 WHERE stadium = \"War Memorial stadium\"",
    "question_en": "How many records are there at the War Memorial Stadium?",
    "question_th": "ที่ 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_en": "What was the minimum attendance on December 7, 1969?",
    "question_th": "จำนวนผู้เข้าร่วมขั้นต่ำในวันที่ 7 ธันวาคม พ.ศ. 2512 คือเท่าใด",
    "context": "CREATE TABLE table_10646790_2 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(week) FROM table_10647401_1 WHERE stadium = \"Memorial stadium\"",
    "question_en": "What week corresponds to the last one to be played at the memorial stadium?",
    "question_th": "สัปดาห์ใดตรงกับสัปดาห์สุดท้ายที่จะเล่นที่สนามกีฬาอนุสรณ์?",
    "context": "CREATE TABLE table_10647401_1 (week INTEGER, stadium VARCHAR)"
  },
  {
    "answer": "SELECT stadium FROM table_10647401_1 WHERE week = 5",
    "question_en": "In which stadium is the week 5 game played?",
    "question_th": "เกมสัปดาห์ที่ 5 ลงเล่นที่สนามใด?",
    "context": "CREATE TABLE table_10647401_1 (stadium VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT nfl_team FROM table_10650711_1 WHERE player = \"Thane Gash\"",
    "question_en": " what is the nfl team where player is thane gash",
    "question_th": "ทีม nfl คืออะไรที่ผู้เล่นคือธาเนกาช",
    "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_en": "what is the maximum pick # where player is anthony blaylock",
    "question_th": "ตัวเลือกสูงสุดคือเท่าใด # โดยที่ผู้เล่นคือ anthony blocklock",
    "context": "CREATE TABLE table_10650711_1 (pick__number INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT nfl_team FROM table_10650711_1 WHERE player = \"Clifford Charlton\"",
    "question_en": " what's the nfl team where player is clifford charlton",
    "question_th": " ทีม NFL ของใครคือคลิฟฟอร์ด ชาร์ลตัน",
    "context": "CREATE TABLE table_10650711_1 (nfl_team VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_10650711_1 WHERE player = \"Anthony Blaylock\"",
    "question_en": " what's the position where player is anthony blaylock",
    "question_th": " ตำแหน่งที่ผู้เล่นคือ 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_en": "what is the minimum pick # where position is defensive tackle",
    "question_th": "การเลือกขั้นต่ำคือเท่าใด # โดยที่ตำแหน่งเป็นตำแหน่งสกัดกั้น",
    "context": "CREATE TABLE table_10650711_1 (pick__number INTEGER, position VARCHAR)"
  },
  {
    "answer": "SELECT province FROM table_1067441_1 WHERE density = \"971.4\"",
    "question_en": "Which province has a density of 971.4?",
    "question_th": "จังหวัดใดมีความหนาแน่น 971.4",
    "context": "CREATE TABLE table_1067441_1 (province VARCHAR, density VARCHAR)"
  },
  {
    "answer": "SELECT MIN(gdp_per_cap__2003), _in_€_ FROM table_1067441_1 WHERE province = \"Friesland\"",
    "question_en": "What is Friesland's gdp per capita?",
    "question_th": "GDP ต่อหัวของฟรีสแลนด์คือเท่าใด",
    "context": "CREATE TABLE table_1067441_1 (_in_€_ VARCHAR, gdp_per_cap__2003 INTEGER, province VARCHAR)"
  },
  {
    "answer": "SELECT MAX(area__km²_) FROM table_1067441_1 WHERE density = \"331.4\"",
    "question_en": "What is the area of the place that has a population density of 331.4?",
    "question_th": "พื้นที่ของสถานที่ที่มีความหนาแน่นของประชากรเท่ากับ 331.4 คือข้อใด",
    "context": "CREATE TABLE table_1067441_1 (area__km²_ INTEGER, density VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_10701133_1 WHERE original_air_date = \"May15,2008\"",
    "question_en": "What is the title when original air date is may15,2008?",
    "question_th": "วันที่ออกอากาศเดิมคือวันที่ 15 พฤษภาคม 2551 ชื่อเรื่องอะไร",
    "context": "CREATE TABLE table_10701133_1 (title VARCHAR, original_air_date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(no_in_season) FROM table_10701133_1",
    "question_en": "What is the highest no. in season?",
    "question_th": "หมายเลขสูงสุดคืออะไร ในฤดู?",
    "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_en": "Who directed the episode where u.s. viewers (million) is 12.90?",
    "question_th": "ใครเป็นผู้กำกับตอนที่เราคนดู(ล้าน) 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_en": "How many episodes aired in Region 2 beginning May 26, 2008?",
    "question_th": "เริ่มออกอากาศวันที่ 26 พฤษภาคม 2551 ในเขตภาค 2 จำนวนกี่ตอน",
    "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_en": "What date did the DVD for season six come out in region 2?",
    "question_th": "ดีวีดีสำหรับซีซั่นที่ 6 วางจำหน่ายในภูมิภาค 2 วันที่เท่าไหร่?",
    "context": "CREATE TABLE table_1067134_1 (region_2 VARCHAR, dvd_name VARCHAR)"
  },
  {
    "answer": "SELECT MIN(_number_of_ep) FROM table_1067134_1",
    "question_en": "What is the least amount of season epidsodes?",
    "question_th": "เอพิดโซดของฤดูกาลมีจำนวนน้อยที่สุดคือเท่าใด",
    "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_en": "What DVD season/name for region 2 was released August 22, 2010?",
    "question_th": "ดีวีดีซีซั่น/ชื่ออะไรสำหรับภูมิภาค 2 วางจำหน่ายเมื่อวันที่ 22 สิงหาคม 2553",
    "context": "CREATE TABLE table_1067134_1 (dvd_name VARCHAR, region_2 VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(points) FROM table_10705060_1 WHERE season = \"2005\"",
    "question_en": "How many points for 2005?",
    "question_th": "ปี 2548 ได้กี่คะแนน?",
    "context": "CREATE TABLE table_10705060_1 (points VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_10705060_1 WHERE team_name = \"DAMS\"",
    "question_en": "what is the score for the dams?",
    "question_th": "คะแนนของเขื่อนเท่าไหร่?",
    "context": "CREATE TABLE table_10705060_1 (points VARCHAR, team_name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(position) FROM table_10705060_1 WHERE season = \"2009\"",
    "question_en": "how many positions in 2009?",
    "question_th": "ปี 2552 ได้กี่ตำแหน่ง?",
    "context": "CREATE TABLE table_10705060_1 (position VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT MIN(poles) FROM table_10705060_1",
    "question_en": "what is the least number of poles?",
    "question_th": "เสามีจำนวนน้อยที่สุดคือเท่าไร?",
    "context": "CREATE TABLE table_10705060_1 (poles INTEGER)"
  },
  {
    "answer": "SELECT series FROM table_10705060_1 WHERE points = 62",
    "question_en": "Which series with 62 points?",
    "question_th": "ซีรีย์ไหนได้ 62 แต้ม?",
    "context": "CREATE TABLE table_10705060_1 (series VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(points) FROM table_10705060_1 WHERE position = \"10th\"",
    "question_en": "What is the total for 10th position?",
    "question_th": "อันดับที่ 10 รวมเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_10705060_1 (points VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(report) FROM table_10707142_2 WHERE date = \"October 16\"",
    "question_en": "how many reports of races took place on october 16?",
    "question_th": "มีรายงานการแข่งขันกี่รายการในวันที่ 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_en": "what is the name of the report that lists the race name as long beach grand prix?",
    "question_th": "รายงานที่ระบุชื่อการแข่งขันว่า ลองบีช กรังด์ปรีซ์ ชื่ออะไร?",
    "context": "CREATE TABLE table_10707142_2 (report VARCHAR, race_name VARCHAR)"
  },
  {
    "answer": "SELECT report FROM table_10707142_2 WHERE circuit = \"Nazareth Speedway\"",
    "question_en": "what is the report called where the circuit took place at the nazareth speedway?",
    "question_th": "รายงานเรียกว่าอะไรที่สนามแข่งรถนาซาเร็ธ สปีดเวย์?",
    "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_en": "what is the name of the race where newman/haas racing is the winning team and rick mears is at the pole position?",
    "question_th": "การแข่งขันชื่ออะไร โดยที่ทีมนิวแมน/ฮาส เรซซิ่ง เป็นทีมที่ชนะ และริค เมียร์ส อยู่ในตำแหน่งโพลโพซิชั่น?",
    "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_en": "meadowlands sports complex is the circuit at which city/location?",
    "question_th": "ศูนย์กีฬา Meadowlands อยู่ที่เมือง/สถานที่ใด",
    "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_en": "What is the literacy rate for groups that grew 103.1% between 1991 and 2001?",
    "question_th": "อัตราการรู้หนังสือสำหรับกลุ่มที่เพิ่มขึ้น 103.1% ระหว่างปี 1991 ถึง 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_en": "What is the lowest sex ratio in rural areas?",
    "question_th": "อัตราส่วนเพศต่ำสุดในพื้นที่ชนบทคือเท่าไร?",
    "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_en": "What is the lowest child sex ratio in groups where employment is 31.3%?",
    "question_th": "อัตราส่วนเพศเด็กต่ำสุดในกลุ่มที่มีการจ้างงาน 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_en": "What is the population percentage of the group where the rural sex ratio is 953?",
    "question_th": "เปอร์เซ็นต์ประชากรของกลุ่มที่มีอัตราส่วนเพศในชนบทเท่ากับ 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_en": "What is the title of the episode directed by Peter Markle and written by Jerry Stahl?",
    "question_th": "ชื่อเรื่องของตอนที่กำกับโดย Peter Markle และเขียนโดย 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_en": "Who does the lap-by-lap in 2011?",
    "question_th": "ใครเป็นผู้ตักต่อตักในปี 2554?",
    "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_en": "Which network has Marty Reid as host and lap-by-lap broadcaster?",
    "question_th": "เครือข่ายใดที่มี Marty Reid เป็นเจ้าภาพและผู้ประกาศแบบทีละรอบ",
    "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_en": "How many pre-race analysis occur when Allen Bestwick does the lap-by-lap?",
    "question_th": "การวิเคราะห์ก่อนการแข่งขันเกิดขึ้นกี่ครั้งเมื่อ Allen Bestwick ทำการตักต่อรอบ?",
    "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_en": "What's the highest season number of an episode in the series?",
    "question_th": "หมายเลขซีซันสูงสุดของตอนในซีรีส์คือเท่าใด",
    "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_en": "What's the date of the first airing of the episode with series number 63?",
    "question_th": "ซีรีส์หมายเลข 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_en": "How many titles got a viewership of 26.53 million?",
    "question_th": "มีกี่เรื่องที่มีผู้ชม 26.53 ล้านคน?",
    "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_en": "How many viewers tuned into the show directed by Matt Earl Beesley?",
    "question_th": "มีผู้ชมกี่คนที่ติดตามชมรายการที่กำกับโดย 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_en": "Who wrote episode 94?",
    "question_th": "ใครเป็นคนเขียนตอนที่ 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_en": "Which episode was the number in the season where the number in the season is 10?",
    "question_th": "ตอนไหนคือเลขในซีซั่นที่เลขในซีซั่นคือ 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_en": "When did the 113 episode air?",
    "question_th": "ตอนที่ 113 ออกอากาศเมื่อไหร่?",
    "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_en": "How many titles were there for the 113 episode?",
    "question_th": "ตอนที่ 113 มีกี่เรื่องคะ?",
    "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_en": "What is the number in the season that Marlene Meyer wrote and 20.49 million people watched?",
    "question_th": "ฤดูกาลที่ มาร์ลีน เมเยอร์ เขียนและมีผู้ชม 20.49 ล้านคน ในฤดูกาลนี้อยู่ที่เท่าไร?",
    "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_en": "When did the no. 23 show originally air?",
    "question_th": "เบอร์ทำเมื่อไหร่.. 23 รายการออกอากาศครั้งแรก?",
    "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_en": "Which circuits had a race on October 4?",
    "question_th": "สนามไหนมีการแข่งขันในวันที่ 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_en": "In which reports does Michael Andretti have the pole position and Galles-Kraco Racing is the winning team?",
    "question_th": "Michael Andretti มีตำแหน่งโพลโพซิชั่นและ Galles-Kraco Racing เป็นทีมที่ชนะในรายงานใด",
    "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_en": "How many rounds were there of the Bosch Spark Plug Grand Prix?",
    "question_th": "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_en": "Which rounds were held on August 9?",
    "question_th": "รอบไหนจัดวันที่ 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_en": "On how many dates did the Michigan International Speedway hold a round?",
    "question_th": "Michigan International Speedway จัดการแข่งขันกี่รอบ?",
    "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_en": "Name the total number of bids of the sun belt conference",
    "question_th": "ระบุจำนวนการประมูลการประชุมเข็มขัดแดดทั้งหมด",
    "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_en": "Name the round of 32 in conference usa",
    "question_th": "ตั้งชื่อรอบ 32 ทีม ใน 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_en": "What is the record when round of 32 is 0 and metro atlantic conference?",
    "question_th": "อะไรคือสถิติเมื่อรอบ 32 ทีมเป็น 0 และการประชุมเมโทรแอตแลนติก?",
    "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_en": "What is the number of bids with elite eight larger than 1.0",
    "question_th": "จำนวนการประมูลที่มียอดแปดมากกว่า 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_en": "Who directed the episode with production code 7aff03?",
    "question_th": "ใครกำกับตอนด้วยรหัสการผลิต 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_en": "What is the title of the episode wtih 10.34 million U.S viewers?",
    "question_th": "ชื่อเรื่องของตอนนี้ที่มีผู้ชม 10.34 ล้านคนในสหรัฐฯ คืออะไร?",
    "context": "CREATE TABLE table_10749143_2 (title VARCHAR, us_viewers__millions_ VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_10748727_1 WHERE races = 6",
    "question_en": "What place is the team that completed 6 races?",
    "question_th": "ทีมที่แข่งครบ 6 รายการคือทีมไหน?",
    "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_en": "how much did the british formula three called \"fortec motorsport\" score?",
    "question_th": "สูตรสามของอังกฤษที่เรียกว่า \"fortec motorsport\" ได้คะแนนเท่าไหร่?",
    "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_en": "how many races were in 2009 with 0 wins?",
    "question_th": "มีการแข่งขันทั้งหมดกี่รายการในปี 2009 โดยชนะ 0 ครั้ง",
    "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_en": "What years did art grand prix compete?",
    "question_th": "Art Grand Prix แข่งขันกันกี่ปี?",
    "context": "CREATE TABLE table_10748727_1 (season VARCHAR, team_name VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_10748727_1 WHERE points = \"9\"",
    "question_en": "What year had a score of 9?",
    "question_th": "ปีไหนมีคะแนน 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_en": "what is the greatest number of wins by japanese formula three?",
    "question_th": "สูตรสามของญี่ปุ่นชนะได้มากที่สุดคือเท่าไร?",
    "context": "CREATE TABLE table_10748727_1 (wins INTEGER, series VARCHAR)"
  },
  {
    "answer": "SELECT test_taker FROM table_10749367_3 WHERE _number = 4",
    "question_en": "Who took test #4?",
    "question_th": "ใครสอบ #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_en": "What episode aired on 18 April 2007?",
    "question_th": "ออกอากาศวันที่ 18 เมษายน 2550 ตอนไหน?",
    "context": "CREATE TABLE table_10749367_3 (_number INTEGER, air_date VARCHAR)"
  },
  {
    "answer": "SELECT test_taker FROM table_10749367_3 WHERE challenge = \"Night Driving\"",
    "question_en": "Who had the challenge of night driving?",
    "question_th": "ใครมีปัญหาเรื่องการขับรถตอนกลางคืนบ้าง?",
    "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_en": "How many directors were there for the film Course Completed?",
    "question_th": "มีผู้กำกับกี่คนสำหรับภาพยนตร์เรื่องนี้ 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_en": "Who directed El Nido?",
    "question_th": "ใครกำกับเอลนิโด?",
    "context": "CREATE TABLE table_10798928_1 (director VARCHAR, original_title VARCHAR)"
  },
  {
    "answer": "SELECT director FROM table_10798928_1 WHERE original_title = \"Dulcinea\"",
    "question_en": "Who directed Dulcinea?",
    "question_th": "ใครเป็นผู้กำกับ 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_en": "What are the slovenian names of the villages that had 65.9% of slovenes in 1951?",
    "question_th": "ชื่อหมู่บ้านสโลเวเนียที่มีประชากรสโลเวเนีย 65.9% ในปี 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_en": "What are the slovenian names of the villages that had 16.7% of slovenes in 1991?",
    "question_th": "ชื่อหมู่บ้านสโลเวเนียที่มีประชากรสโลเวเนีย 16.7% ในปี 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_en": "How many villages had 21.7% of slovenes in 1991?",
    "question_th": "มีกี่หมู่บ้านที่มีชาวสโลวีเนีย 21.7% ในปี 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_ = \"Čahorče\"",
    "question_en": "what percent of slovenes did the village called čahorče in slovenian have in 1991?",
    "question_th": "หมู่บ้านที่เรียกว่า čahorče ในภาษาสโลเวเนียมีกี่เปอร์เซ็นต์ในปี 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_en": "What is the slovenian name for the village that in german is known as st.margarethen?",
    "question_th": "หมู่บ้านในภาษาเยอรมันเรียกว่า 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_en": "For games on December 20, how many points did the scoring leaders get?",
    "question_th": "เกมวันที่ 20 ธ.ค. ผู้นำคะแนนได้กี่แต้ม?",
    "context": "CREATE TABLE table_10812293_4 (high_points VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_10812293_4 WHERE date = \"December 23\"",
    "question_en": "Who was the scoring leader and how many points did he get in games on December 23?",
    "question_th": "ใครเป็นผู้นำในการทำคะแนนและเขาได้กี่แต้มในเกมวันที่ 23 ธันวาคม?",
    "context": "CREATE TABLE table_10812293_4 (high_points VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT pick__number FROM table_10812938_3 WHERE position = \"DE\"",
    "question_en": "What is the pick # for the position de?",
    "question_th": "ตัวเลือก # สำหรับตำแหน่ง 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_en": "Which player went to college at Saint Mary's?",
    "question_th": "ผู้เล่นคนไหนเคยไปเรียนวิทยาลัยที่ 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_en": "What is the position for the player with cfl team Winnipeg blue bombers?",
    "question_th": "ตำแหน่งผู้เล่นของทีมซีเอฟแอล วินนิเพ็ก บลูบอมเบอร์ คืออะไร?",
    "context": "CREATE TABLE table_10812938_3 (position VARCHAR, cfl_team VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_10812938_3 WHERE college = \"Laval\"",
    "question_en": "Which player went to college at Laval?",
    "question_th": "นักเตะคนไหนไปเรียนวิทยาลัยที่ลาวาล?",
    "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_en": "What was the college for the player with the cfl team of Edmonton Eskimos (via calgary)?",
    "question_th": "วิทยาลัยสำหรับผู้เล่นกับทีม cfl ของ Edmonton Eskimos (ผ่าน 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_en": "What's the team of the player from St. Francis Xavier College?",
    "question_th": "นักเตะจากวิทยาลัยเซนต์ฟรานซิสเซเวียร์คือทีมอะไร?",
    "context": "CREATE TABLE table_10812938_5 (cfl_team VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_10812938_5 WHERE cfl_team = \"Montreal Alouettes\"",
    "question_en": "What player is on the Montreal Alouettes CFl team?",
    "question_th": "ผู้เล่นคนใดในทีม Montreal Alouettes CFl?",
    "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_en": "What's the pick number of the player from Toronto Argonauts?",
    "question_th": "หมายเลขเลือกของผู้เล่นจาก 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_en": "What's the pick number of the player whose position is CB?",
    "question_th": "ผู้เล่นที่มีตำแหน่ง 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_en": "What's the pick number of the player from New Mexico?",
    "question_th": "หมายเลขเลือกของผู้เล่นจากนิวเม็กซิโกคืออะไร?",
    "context": "CREATE TABLE table_10812938_5 (pick__number INTEGER, college VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_10812938_5 WHERE college = \"Ohio State\"",
    "question_en": "What player went to Ohio State College?",
    "question_th": "ผู้เล่นคนไหนที่เข้าเรียนที่ 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_en": "What is the minimum introduced value for the Departmental region?",
    "question_th": "มูลค่าที่แนะนำขั้นต่ำสำหรับภูมิภาคแผนกคือเท่าใด",
    "context": "CREATE TABLE table_1081459_1 (introduced INTEGER, region VARCHAR)"
  },
  {
    "answer": "SELECT MIN(introduced) FROM table_1081459_1",
    "question_en": "What is the smallest introduced value?",
    "question_th": "ค่าแนะนำที่น้อยที่สุดคืออะไร?",
    "context": "CREATE TABLE table_1081459_1 (introduced INTEGER)"
  },
  {
    "answer": "SELECT cfl_team FROM table_10812938_4 WHERE position = \"OL\"",
    "question_en": "Which CFL Teams drafted an OL in 2006?",
    "question_th": "ทีม CFL ใดที่ร่าง OL ในปี 2549",
    "context": "CREATE TABLE table_10812938_4 (cfl_team VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_10812938_4 WHERE cfl_team = \"Saskatchewan Roughriders\"",
    "question_en": "Which college is aligned to the Saskatchewan Roughriders?",
    "question_th": "วิทยาลัยใดที่สอดคล้องกับ 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_en": "What Position did the Hamilton Tiger-Cats (via Ottawa) pick in the 2006 Draft.",
    "question_th": "Hamilton Tiger-Cats (ผ่านออตตาวา) เลือกตำแหน่งใดในร่างปี 2549",
    "context": "CREATE TABLE table_10812938_4 (position VARCHAR, cfl_team VARCHAR)"
  },
  {
    "answer": "SELECT MIN(pick__number) FROM table_10812938_4",
    "question_en": "What is the earliest pick listed in the table.",
    "question_th": "ตัวเลือกแรกสุดที่ระบุไว้ในตารางคืออะไร",
    "context": "CREATE TABLE table_10812938_4 (pick__number INTEGER)"
  },
  {
    "answer": "SELECT MAX(no_in_season) FROM table_10842344_1 WHERE production_code = \"E4423\"",
    "question_en": "What episode number had production code e4423?",
    "question_th": "หมายเลขตอนใดมีรหัสการผลิต 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_en": "What's the latest episode in a season where the U.S. viewers totaled 14.37 million?",
    "question_th": "ตอนล่าสุดในซีซันที่มีผู้ชมสหรัฐฯ รวม 14.37 ล้านคนคือตอนไหน",
    "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_en": "What is the season finale for season 4?",
    "question_th": "ตอนจบฤดูกาลของฤดูกาลที่ 4 คืออะไร?",
    "context": "CREATE TABLE table_10819266_8 (season VARCHAR)"
  },
  {
    "answer": "SELECT season AS premiere FROM table_10819266_8 WHERE rank = \"#21\"",
    "question_en": "How many season premiers have a rank of #21?",
    "question_th": "พรีเมียร์ฤดูกาลมีกี่รายการที่มีอันดับ #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_en": "What max processor has a maximum memory of 256 gb?",
    "question_th": "โปรเซสเซอร์สูงสุดตัวใดมีหน่วยความจำสูงสุด 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_en": "What is the max memory of the t5120 model?",
    "question_th": "หน่วยความจำสูงสุดของรุ่น t5120 คือเท่าใด?",
    "context": "CREATE TABLE table_10818465_1 (max_memory VARCHAR, model VARCHAR)"
  },
  {
    "answer": "SELECT MIN(ru) FROM table_10818465_1",
    "question_en": "What is the lowest ru?",
    "question_th": "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_en": "What ga date do the models with 1.0, 1.2, 1.4ghz processor frequencies have?",
    "question_th": "รุ่นที่มีความถี่โปรเซสเซอร์ 1.0, 1.2, 1.4ghz มีวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_10818465_1 (ga_date VARCHAR, processor_frequency VARCHAR)"
  },
  {
    "answer": "SELECT ga_date FROM table_10818465_1 WHERE model = \"T5120\"",
    "question_en": "What is the ga date of the t5120 model?",
    "question_th": "ga ของรุ่น t5120 คือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_10818465_1 (ga_date VARCHAR, model VARCHAR)"
  },
  {
    "answer": "SELECT sport FROM table_10815352_1 WHERE league = \"La Liga\"",
    "question_en": "What is the sport of the La Liga league?",
    "question_th": "กีฬาในลีกลาลีกาคืออะไร?",
    "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_en": "What's the minimum total attendance of the Premier League association football?",
    "question_th": "จำนวนผู้เข้าร่วมฟุตบอลสมาคมพรีเมียร์ลีกขั้นต่ำคือเท่าไร?",
    "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_en": "What's the average attendance of the leagues in the season of 2013?",
    "question_th": "ผู้เข้าชมลีกโดยเฉลี่ยในฤดูกาล 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_en": "What's the total attendance of the leagues in season of 2010?",
    "question_th": "จำนวนผู้เข้าแข่งขันในลีกฤดูกาล 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örless\"",
    "question_en": "Who were the directors of the film submitted with the title Young Törless?",
    "question_th": "ใครคือผู้กำกับภาพยนตร์ที่เสนอชื่อ Young Törless",
    "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_en": "What was the original title of the film submitted with the title A Woman in Flames?",
    "question_th": "ชื่อดั้งเดิมของภาพยนตร์ที่ส่งมาด้วยชื่อ 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_en": "In what years was a film submitted with the title The Enigma of Kaspar Hauser?",
    "question_th": "ภาพยนตร์ที่มีชื่อเรื่อง 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_en": "Who were the directors of the film with the original title o.k.?",
    "question_th": "ใครเป็นผู้กำกับของภาพยนตร์เรื่องนี้ที่มีชื่อดั้งเดิม ตกลง?",
    "context": "CREATE TABLE table_10874596_1 (director VARCHAR, original_title VARCHAR)"
  },
  {
    "answer": "SELECT division FROM table_1087659_2 WHERE playoffs = \"division Semifinals\"",
    "question_en": "What is the division for the division semifinals playoffs?",
    "question_th": "การแข่งขันรอบรองชนะเลิศของดิวิชั่นอยู่ในดิวิชั่นอะไร?",
    "context": "CREATE TABLE table_1087659_2 (division VARCHAR, playoffs VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_10908676_7 WHERE written_by = \"David Mamet\"",
    "question_en": "What is the title written by David Mamet?",
    "question_th": "ชื่อเรื่องที่เขียนโดย David Mamet คืออะไร?",
    "context": "CREATE TABLE table_10908676_7 (title VARCHAR, written_by VARCHAR)"
  },
  {
    "answer": "SELECT finale FROM table_10942714_1 WHERE chinese_title = \"潮爆大狀\"",
    "question_en": "What was the finale for 潮爆大狀",
    "question_th": "ตอนจบของ 潮爆大狀 คืออะไร",
    "context": "CREATE TABLE table_10942714_1 (finale VARCHAR, chinese_title VARCHAR)"
  },
  {
    "answer": "SELECT hk_viewers FROM table_10942714_1 WHERE premiere = 34",
    "question_en": "How many viewers were there for the premier with 34",
    "question_th": "มีผู้ชมจำนวนกี่คนสำหรับรอบปฐมทัศน์ด้วยจำนวน 34 คน",
    "context": "CREATE TABLE table_10942714_1 (hk_viewers VARCHAR, premiere VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(peak) FROM table_10942714_1 WHERE chinese_title = \"潮爆大狀\"",
    "question_en": "How many are listed under 潮爆大狀",
    "question_th": "How many islisted under 潮爆大狀",
    "context": "CREATE TABLE table_10942714_1 (peak VARCHAR, chinese_title VARCHAR)"
  },
  {
    "answer": "SELECT director FROM table_10953197_2 WHERE production_code = \"2393059\"",
    "question_en": "Who was the director of the episode with a production code of 2393059?",
    "question_th": "ใครเป็นผู้กำกับตอนที่มีรหัสการผลิต 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_en": "Which episode had 16.38 million U.S. viewers?",
    "question_th": "ตอนใดมีผู้ชม 16.38 ล้านคนในสหรัฐฯ?",
    "context": "CREATE TABLE table_10935548_1 (title VARCHAR, us_viewers__millions_ VARCHAR)"
  },
  {
    "answer": "SELECT production_code FROM table_10935548_1 WHERE written_by = \"José Molina\" AND original_air_date = \"October 12, 2004\"",
    "question_en": "What is the production code of the episode written by José Molina that aired on October 12, 2004?",
    "question_th": "รหัสการผลิตของตอนที่เขียนโดย José Molina ซึ่งออกอากาศเมื่อวันที่ 12 ตุลาคม 2547 คืออะไร",
    "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_en": "Which episode was directed by Jean de Segonzac?",
    "question_th": "ตอนใดที่กำกับโดย 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_en": "what are the original air dates with a production code of 2394087",
    "question_th": "ออกอากาศตอนแรกวันที่เท่าไร โดยมีรหัสการผลิต 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_en": "Who are the writer(s) for the production code 2394084",
    "question_th": "ใครคือผู้เขียนรหัสการผลิต 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_en": "What's the total number of episodes with the production code 2395113A?",
    "question_th": "รหัสการผลิต 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_en": "Who's the writer for the episode with a production code 2395114?",
    "question_th": "ใครคือคนเขียนบทที่มีรหัสการผลิต 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_en": "What's the number of the episode with production code 2395118?",
    "question_th": "รหัสการผลิต 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_en": "Who was the writer for the episode with production code 2395096?",
    "question_th": "ใครคือคนเขียนบทตอนที่มีรหัสการผลิต 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_en": "How long is the orbital period for the planet that has a semimajor axis of 5.20 au?",
    "question_th": "คาบการโคจรของดาวเคราะห์ที่มีแกนกึ่งเอก 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_en": "Which planet has an orbital period of 11.86 years?",
    "question_th": "ดาวเคราะห์ดวงใดมีคาบการโคจร 11.86 ปี",
    "context": "CREATE TABLE table_10932739_2 (planet VARCHAR, orbital_period VARCHAR)"
  },
  {
    "answer": "SELECT director FROM table_10953197_7 WHERE production_code = \"2398204\"",
    "question_en": "who directed the production code 2398204",
    "question_th": "ซึ่งกำกับการผลิตรหัส 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_en": "What is player Alexis Bwenge's pick number?",
    "question_th": "หมายเลขเลือกของผู้เล่น Alexis Bwenge คืออะไร?",
    "context": "CREATE TABLE table_10960039_1 (pick__number VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_10960039_1 WHERE pick__number = 2",
    "question_en": "What player is pick #2?",
    "question_th": "ผู้เล่นคนไหนคือตัวเลือกหมายเลข 2?",
    "context": "CREATE TABLE table_10960039_1 (player VARCHAR, pick__number VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_10960039_1 WHERE college = \"Saskatchewan\"",
    "question_en": "Which player's college is Saskatchewan?",
    "question_th": "ซัสแคตเชวันเป็นวิทยาลัยของผู้เล่นคนไหน",
    "context": "CREATE TABLE table_10960039_1 (player VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT MIN(pick__number) FROM table_10960039_1 WHERE college = \"McMaster\"",
    "question_en": "What is McMaster College's pick number?",
    "question_th": "หมายเลขเลือกของ McMaster College คืออะไร",
    "context": "CREATE TABLE table_10960039_1 (pick__number INTEGER, college VARCHAR)"
  },
  {
    "answer": "SELECT MIN(no_in_season) FROM table_10953197_6",
    "question_en": "give the least number of times an episode was shown from 1997-1998",
    "question_th": "ระบุจำนวนครั้งน้อยที่สุดที่แสดงตอนตั้งแต่ปี 2540-2541",
    "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_en": "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 ",
    "question_th": " ผลรวมของซีซัน 6 ของทั้งจำนวนครั้งในการประมวลผล ID 2397162 คืออะไร และจำนวนครั้งที่ชิป chalmers จัดการตอน",
    "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_en": "Which player went to Michigan State?",
    "question_th": "ผู้เล่นคนไหนไปรัฐมิชิแกน?",
    "context": "CREATE TABLE table_10966926_2 (player_name VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT player_name FROM table_10966926_2 WHERE college = \"Oklahoma\"",
    "question_en": "Which player went to college in Oklahoma?",
    "question_th": "ผู้เล่นคนไหนไปเรียนวิทยาลัยในโอคลาโฮมา?",
    "context": "CREATE TABLE table_10966926_2 (player_name VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_10966926_2 WHERE player_name = \"Colt Brennan\"",
    "question_en": "Which position does Colt Brennan play?",
    "question_th": "โคลท์ เบรนแนนเล่นตำแหน่งไหน?",
    "context": "CREATE TABLE table_10966926_2 (position VARCHAR, player_name VARCHAR)"
  },
  {
    "answer": "SELECT height FROM table_10966926_2 WHERE weight = 320",
    "question_en": "What is the height of the person that weighs 320 pounds?",
    "question_th": "คนที่หนัก 320 ปอนด์มีส่วนสูงเท่าไหร่?",
    "context": "CREATE TABLE table_10966926_2 (height VARCHAR, weight VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(college) FROM table_10975034_4 WHERE position = \"DB\"",
    "question_en": "How many colleges have a DB position?",
    "question_th": "มีกี่วิทยาลัยที่มีตำแหน่ง DB?",
    "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_en": "What is the maximum number of picks for the CFL team Calgary Stampeders?",
    "question_th": "จำนวนตัวเลือกสูงสุดสำหรับทีม CFL 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_en": "How many CFL teams are from York college?",
    "question_th": "มีทีม CFL จากวิทยาลัยยอร์กกี่ทีม",
    "context": "CREATE TABLE table_10975034_4 (cfl_team VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT cfl_team FROM table_10975034_4 WHERE college = \"Simon Fraser\"",
    "question_en": "What CFL teams are part of Simon Fraser college?",
    "question_th": "ทีม CFL ใดบ้างที่เป็นส่วนหนึ่งของวิทยาลัย Simon Fraser",
    "context": "CREATE TABLE table_10975034_4 (cfl_team VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_10975034_4 WHERE pick__number = 27",
    "question_en": "Which players have a pick number of 27?",
    "question_th": "ผู้เล่นคนไหนมีหมายเลขเลือกเป็น 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_en": "How many times were players named brett ralph were selected?",
    "question_th": "ผู้เล่นชื่อ brett ralph ถูกเลือกกี่ครั้ง?",
    "context": "CREATE TABLE table_10960039_6 (pick__number VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_10960039_6 WHERE player = \"Lenard Semajuste\"",
    "question_en": "What schools did lenard semajuste play for?",
    "question_th": "Lenard Semajuste เล่นให้กับโรงเรียนใดบ้าง",
    "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_en": "What is the highest selection number for the saskatchewan roughriders team?",
    "question_th": "หมายเลขตัวเลือกสูงสุดสำหรับทีม Roughriders ของรัฐซัสแคตเชวันคือหมายเลขใด?",
    "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_en": "How many fb players were drafted?",
    "question_th": "ผู้เล่น fb ถูกเกณฑ์ทหารกี่คน?",
    "context": "CREATE TABLE table_10960039_6 (pick__number VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(player) FROM table_10960039_6 WHERE college = \"Adams State\"",
    "question_en": "How many players played for adams state school?",
    "question_th": "มีผู้เล่นกี่คนที่เล่นให้กับโรงเรียนของรัฐอดัมส์",
    "context": "CREATE TABLE table_10960039_6 (player VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT cfl_team FROM table_10960039_6 WHERE college = \"Northwood\"",
    "question_en": "What teams drafted players that played for northwood school?",
    "question_th": "ทีมใดคัดเลือกผู้เล่นที่เล่นให้กับ 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_en": "What college did Craig Zimmer go to?",
    "question_th": "Craig Zimmer เข้าเรียนที่วิทยาลัยใด",
    "context": "CREATE TABLE table_10975034_5 (college VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT pick__number FROM table_10975034_5 WHERE college = \"Regina\"",
    "question_en": "What is the pick number of regina?",
    "question_th": "เรจิน่ารับเบอร์อะไรคะ?",
    "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_en": "What is the player who is lb and cfl team is saskatchewan roughriders?",
    "question_th": "ผู้เล่นที่เป็นทีม lb และ cfl คือ 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_en": "What is the cfl team that has a position of ol?",
    "question_th": "ทีมcflที่มีตำแหน่งเฒ่าคือทีมอะไรคะ?",
    "context": "CREATE TABLE table_10975034_5 (cfl_team VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(position) FROM table_10975034_5 WHERE pick__number = 43",
    "question_en": "What is the number of position where the pick number is 43?",
    "question_th": "หมายเลขตำแหน่งที่หมายเลขเลือกคือ 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_en": "What is the cfl team with ryan folk?",
    "question_th": "ทีม cfl กับ 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_en": "What release date is when kids-270 is a reference? ",
    "question_th": " วันที่วางจำหน่ายคือเมื่อ kids-270 เป็นข้อมูลอ้างอิง?",
    "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_en": "what is the title where romaji is titles da.i.su.ki",
    "question_th": "ชื่ออะไรโดยที่โรมันจิเป็นชื่อ 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_en": "what are the title in japanese where the reference is kids-430?",
    "question_th": "ภาษาญี่ปุ่นชื่ออะไร โดยที่คำว่า 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_en": "who is the reference when romaji title is heartbreak sniper?",
    "question_th": "ใครคือผู้อ้างอิงเมื่อชื่อโรมาจิเป็นมือปืนอกหัก?",
    "context": "CREATE TABLE table_10979230_5 (reference VARCHAR, romaji_title VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(oricon) FROM table_10979230_4 WHERE japanese_title = \"愛のバカ\"",
    "question_en": "What rank is 愛のバカ on the Japanese singles chart?",
    "question_th": "愛のBACA บนชาร์ตซิงเกิลของญี่ปุ่นอยู่อันดับไหน?",
    "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_en": "How many songs have mi-chemin as their Japanese name and romanji name?",
    "question_th": "มีกี่เพลงที่มีมิเคมินเป็นชื่อภาษาญี่ปุ่นและชื่อโรมาจิ?",
    "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_en": "What was the  partial thromboplastin time for factor x deficiency as seen in amyloid purpura",
    "question_th": "ระยะเวลาของการเกิดลิ่มเลือดอุดตันบางส่วนสำหรับการขาดแฟกเตอร์ x ดังที่เห็นในจ่างอะไมลอยด์คือเท่าใด",
    "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_en": "How many conditions have an unaffected prothrombin time and a prolonged bleeding time",
    "question_th": "มีเงื่อนไขกี่ข้อที่มีเวลา prothrombin ที่ไม่ได้รับผลกระทบและมีเลือดออกเป็นเวลานาน",
    "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_en": "What was the bleeding time for the factor x deficiency as seen in amyloid purpura",
    "question_th": "เวลาเลือดออกสำหรับการขาดแฟคเตอร์ x ที่เห็นในจ้ำอะไมลอยด์คือเท่าใด",
    "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_en": "What conditions had both prolonged bleeding times and prolonged partial thromboplastin times",
    "question_th": "สภาวะใดที่ทำให้มีเลือดออกเป็นเวลานานและมีเวลาของ thromboplastin บางส่วนยาวนานขึ้น",
    "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_en": "What was the bleeding time for  factor xii deficiency",
    "question_th": "เวลาเลือดออกสำหรับการขาดปัจจัย xii คือเท่าไร",
    "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_en": "What were the bleeding times when both the platelet count was unaffected and the partial thromboplastin time was unaffected",
    "question_th": "เวลาที่มีเลือดออกคือเท่าใดเมื่อจำนวนเกล็ดเลือดทั้งสองไม่ได้รับผลกระทบ และเวลา thromboplastin บางส่วนไม่ได้รับผลกระทบ",
    "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_en": "what's the tuesday time with location being millhopper",
    "question_th": "วันอังคารเวลาเท่าไร โดยสถานที่เป็นโรงอาหาร",
    "context": "CREATE TABLE table_11019212_1 (tuesday VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT wednesday FROM table_11019212_1 WHERE monday = \"10:00-8:00\"",
    "question_en": "what's the wednesday time with monday being 10:00-8:00",
    "question_th": "วันพุธเวลาเท่าไร วันจันทร์คือ 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_en": "what's the thursday time with location being hawthorne",
    "question_th": "วันพฤหัสบดีกี่โมง โดยสถานที่เป็นฮอว์ธอร์น",
    "context": "CREATE TABLE table_11019212_1 (thursday VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT saturday FROM table_11019212_1 WHERE wednesday = \"10:00-5:00\"",
    "question_en": "what's the saturday time with wednesday being 10:00-5:00",
    "question_th": "วันเสาร์เวลาไหน วันพุธคือ 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_en": "what's the thursday time with sunday being 1:00-5:00 and tuesday being 1:00-7:00",
    "question_th": "เวลาวันพฤหัสบดีคือกี่โมง วันอาทิตย์เวลา 1:00-5:00 น. และวันอังคารเวลา 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_en": "what's the monday time with tuesday being 9:00-6:00",
    "question_th": "วันจันทร์เวลาไหน วันอังคารคือ 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_en": "What are all the reports where Paul Tracy had the fastest lap?",
    "question_th": "มีรายงานใดบ้างที่ Paul Tracy ทำรอบได้เร็วที่สุด?",
    "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_en": "Who drove the fastest lap at the Tenneco Automotive Grand Prix of Detroit?",
    "question_th": "ใครเป็นผู้ขับรอบที่เร็วที่สุดในการแข่งขัน Tenneco Automotive Grand Prix ที่เมืองดีทรอยต์?",
    "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_en": "Who had the fastest lap in the races won by Max Papis?",
    "question_th": "ใครมีรอบเร็วที่สุดในการแข่งขันที่ 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_en": "In Round 6, how many winning drivers were there?",
    "question_th": "ในรอบที่ 6 มีนักแข่งที่ชนะกี่คน?",
    "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_en": "What are the original names of the districts where the population in the 2010 census was 210450?",
    "question_th": "ชื่อเดิมของเขตที่มีประชากรในการสำรวจสำมะโนประชากร พ.ศ. 2553 คือ 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_en": "What is the original name of the district with the current English name of South Bogor?",
    "question_th": "ชื่อเดิมของเขตแต่ปัจจุบันมีชื่อภาษาอังกฤษว่า 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_en": "What is the listed population from the 2010 census of West Bogor?",
    "question_th": "ประชากรที่ระบุไว้จากการสำรวจสำมะโนประชากรโบกอร์ตะวันตก พ.ศ. 2553 คือจำนวนเท่าใด",
    "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² = \"17.72\"",
    "question_en": "How many districts have an area of 17.72 KM2?",
    "question_th": "มีกี่อำเภอที่มีพื้นที่ 17.72 กม.2?",
    "context": "CREATE TABLE table_1104312_5 (english_name VARCHAR, area_in_km² VARCHAR)"
  },
  {
    "answer": "SELECT area_in_km² FROM table_1104312_5 WHERE original_name = \"Kecamatan Bogor Timur\"",
    "question_en": "What is the area in km2 for the district whose original name was Kecamatan Bogor Timur?",
    "question_th": "พื้นที่ในกิโลเมตรที่ 2 ของเขตที่มีชื่อเดิมว่า Kecamatan Bogor Timur คือเท่าใด",
    "context": "CREATE TABLE table_1104312_5 (area_in_km² VARCHAR, original_name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(colour) FROM table_11066073_1 WHERE registration_no = \"MG-509\"",
    "question_en": "What is the number of colour with the regisration number of mg-509?",
    "question_th": "หมายเลขสีอะไร เลขทะเบียน 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_en": "What is the title of the episode directed by Mark Tinker?",
    "question_th": "ตอนที่กำกับโดย 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_en": "What episode in the season was directed by Jeff Melman?",
    "question_th": "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_en": "How many episodes had 16.03 million viewers?",
    "question_th": "มีผู้ชม 16.03 ล้านคนกี่ตอน?",
    "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_en": "What is the number of interregnum for duration 3 months, 6 days?",
    "question_th": "ระยะเว้นระยะ 3 เดือน 6 วัน มีจำนวนเท่าไร?",
    "context": "CREATE TABLE table_11071897_1 (interregnum_ended VARCHAR, duration VARCHAR)"
  },
  {
    "answer": "SELECT directed_by FROM table_11075747_4 WHERE episode__number = 8",
    "question_en": "Who directed Episode 8?",
    "question_th": "ใครกำกับตอนที่ 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_en": "What was the original air date for Series 36?",
    "question_th": "ซีรีย์ 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_en": "Who wrote Series 38?",
    "question_th": "ใครเป็นคนเขียนซีรีส์ 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_en": "What is the percentage for manhattan 45,901?",
    "question_th": "เปอร์เซ็นต์ของแมนฮัตตัน 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_en": "Who won the 1973 democratic initial primary for queens of 19%?",
    "question_th": "ใครเป็นผู้ชนะการเลือกตั้งขั้นต้นตามระบอบประชาธิปไตยในปี 1973 สำหรับราชินีที่มีคะแนน 19%",
    "context": "CREATE TABLE table_1108394_24 (queens VARCHAR)"
  },
  {
    "answer": "SELECT manhattan FROM table_1108394_24 WHERE richmond_[staten_is] = \"35_percentage\"",
    "question_en": "What is the manhattan for richmond 35%?",
    "question_th": "แมนฮัตตันสำหรับริชมอนด์ 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_en": "What is the queens where richmond staten is 42%?",
    "question_th": "ราชินีที่ริชมอนด์สเตทอยู่ที่ 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_en": "what's the party with brooklyn value of 51.0%",
    "question_th": "ปาร์ตี้อะไรมูลค่าบรู๊คลิน 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_en": "what's the brooklyn with queens value of 16.8%",
    "question_th": "บรูคลินที่มีมูลค่าควีนส์อยู่ที่เท่าไร 16.8%",
    "context": "CREATE TABLE table_1108394_43 (brooklyn VARCHAR, queens VARCHAR)"
  },
  {
    "answer": "SELECT MIN(total) FROM table_1108394_43",
    "question_en": "what is the minimum total",
    "question_th": "ยอดรวมขั้นต่ำคือเท่าไร",
    "context": "CREATE TABLE table_1108394_43 (total INTEGER)"
  },
  {
    "answer": "SELECT _percentage FROM table_1108394_43 WHERE total = 249887 AND queens = \"6.8_percentage\"",
    "question_en": "what's the % with total value of 249887 and queens value of 6.8%",
    "question_th": "คือ % ที่มีมูลค่ารวม 249887 และมูลค่าควีนส์ 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_en": "Which teams were in the central division and located in livonia?",
    "question_th": "ทีมไหนอยู่ในดิวิชั่นกลางและอยู่ที่ลิโวเนีย?",
    "context": "CREATE TABLE table_11094950_1 (team VARCHAR, division VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_11094950_1 WHERE location = \"Highland Township\"",
    "question_en": "Which teams are located in highland township?",
    "question_th": "ทีมไหนอยู่ในเขตเมืองบนที่สูง?",
    "context": "CREATE TABLE table_11094950_1 (team VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT conference FROM table_11094950_1 WHERE team = \"Churchill Chargers\"",
    "question_en": "What conference was the churchill chargers team in?",
    "question_th": "ทีมเชอร์ชิลล์ ชาร์จเจอร์สเข้าร่วมการประชุมครั้งใด?",
    "context": "CREATE TABLE table_11094950_1 (conference VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_11111116_7 WHERE written_by = \"Ken LaZebnik\"",
    "question_en": "What was the titles of the episodes written by ken lazebnik?",
    "question_th": "ตอนที่เขียนโดย 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_en": "Who directed an episode that had 2.81 million U.S. viewers?",
    "question_th": "ใครเป็นผู้กำกับตอนที่มีผู้ชม 2.81 ล้านคนในสหรัฐฯ?",
    "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_en": "What were the names of the episodes that had 3.02 million U.S. viewers?",
    "question_th": "ตอนที่มีผู้ชม 3.02 ล้านคนในสหรัฐฯ ชื่ออะไร",
    "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_en": "Who directed episodes that had 2.61 million U.S. viewers?",
    "question_th": "ใครเป็นผู้กำกับตอนที่มีผู้ชม 2.61 ล้านคนในสหรัฐฯ?",
    "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_en": "How many millions of U.S. viewers watched the episode that first aired on March 31, 2013?",
    "question_th": "ผู้ชมในสหรัฐฯ จำนวนกี่ล้านคนที่ดูตอนที่ออกอากาศครั้งแรกเมื่อวันที่ 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_en": "Who wrote the episodes that were viewed by 2.12 million viewers?",
    "question_th": "ใครเป็นคนเขียนตอนที่มีผู้ชม 2.12 ล้านคน?",
    "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_en": "The episode written by Rebecca Dameron aired on what date? ",
    "question_th": " ตอนที่เขียนโดย Rebecca Dameron ออกอากาศวันไหน?",
    "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_en": "Which episode in the series drew 3.6 million U.S. viewers? ",
    "question_th": " ตอนใดในซีรีส์ที่ดึงดูดผู้ชมในสหรัฐอเมริกาได้ 3.6 ล้านคน",
    "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_en": "Who wrote the episode that aired on April 17, 2011? ",
    "question_th": " ใครเป็นคนเขียนตอนที่ออกอากาศเมื่อวันที่ 17 เมษายน 2554?",
    "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_en": "How many times did episode 79 originally air? ",
    "question_th": " ตอนที่ 79 ออกอากาศครั้งแรกกี่ครั้ง?",
    "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_en": "What is the name of the shield winner in which the mls cup winner and mls cup runner up is colorado rapids?",
    "question_th": "ผู้ชนะประเภทโล่ชื่ออะไร ซึ่งผู้ชนะถ้วย mls และรองชนะเลิศถ้วย mls คือ โคโลราโด ราปิดส์",
    "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_en": "What is the name of the shield winner in which the mls cup winner and mls supporters shield runner up is Chivas usa?",
    "question_th": "ผู้ชนะโล่ชื่ออะไร โดยที่ผู้ชนะถ้วย mls และรองแชมป์โล่ผู้สนับสนุน mls คือ 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_en": "who is the of the shield winnerin which the mls cup runner-up and mls cup winner is real salt lake?",
    "question_th": "ใครคือผู้ชนะโล่ซึ่งรองชนะเลิศถ้วย mls และผู้ชนะถ้วย mls คือทะเลสาบน้ำเค็มที่แท้จริง",
    "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_en": "Which shield winner has the mls cup runner up and the season is 2000?",
    "question_th": "ผู้ชนะโล่คนใดที่ได้รองแชมป์ MLS และฤดูกาลคือปี 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_en": "League apps (sub) maximum?",
    "question_th": "แอพลีก (ย่อย) สูงสุด?",
    "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_en": "When total goals is 11 what was the league apps (sub)?",
    "question_th": "เมื่อประตูรวมเป็น 11 แอพลีก (รอง) คืออะไร?",
    "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_en": "Which city had the charleston area convention center as its callback location",
    "question_th": "เมืองใดมีศูนย์การประชุมในพื้นที่ชาร์ลสตันเป็นสถานที่ติดต่อกลับ",
    "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_en": "When did the callbacks from  rancho bernardo inn air",
    "question_th": "แรนโช เบอร์นาโด้ อินน์ แอร์ ได้รับการติดต่อกลับเมื่อใด",
    "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_en": "The station located in Albuquerque has been owned since what year?",
    "question_th": "สถานีที่ตั้งอยู่ในอัลบูเคอร์คีมีเจ้าของมาตั้งแต่ปีใด",
    "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_en": "What channels have stations that were affiliated in 2002?",
    "question_th": "ช่องใดบ้างที่มีสถานีในเครือในปี พ.ศ. 2545?",
    "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_en": "What market is KTFK-DT in?",
    "question_th": "KTFK-DT อยู่ในตลาดใด?",
    "context": "CREATE TABLE table_11147852_1 (city_of_license_market VARCHAR, station VARCHAR)"
  },
  {
    "answer": "SELECT engine FROM table_11167610_1 WHERE performance = \"0–100km/h: 10.5s, VMax km/h (mph)\"",
    "question_en": " what's the engine where performance is 0–100km/h: 10.5s, vmax km/h (mph)",
    "question_th": " เครื่องยนต์อะไรที่มีสมรรถนะอยู่ที่ 0–100 กม./ชม.: 10.5 วินาที vmax กม./ชม. (ไมล์ต่อชั่วโมง)",
    "context": "CREATE TABLE table_11167610_1 (engine VARCHAR, performance VARCHAR)"
  },
  {
    "answer": "SELECT turbo FROM table_11167610_1 WHERE trim = \"2.0 20v\"",
    "question_en": " what's the turbo where trim is 2.0 20v",
    "question_th": " เทอร์โบอะไรครับที่ทริมเป็น 2.0 20v",
    "context": "CREATE TABLE table_11167610_1 (turbo VARCHAR, trim VARCHAR)"
  },
  {
    "answer": "SELECT torque FROM table_11167610_1 WHERE performance = \"0–100km/h: 7.5s auto, VMax: km/h (mph)\"",
    "question_en": " what's the torque where performance is 0–100km/h: 7.5s auto, vmax: km/h (mph)",
    "question_th": " แรงบิดสูงสุดที่อัตราเร่ง 0–100 กม./ชม.: อัตโนมัติ 7.5 วินาที, vmax: กม./ชม. (ไมล์/ชม.)",
    "context": "CREATE TABLE table_11167610_1 (torque VARCHAR, performance VARCHAR)"
  },
  {
    "answer": "SELECT transmission FROM table_11167610_1 WHERE turbo = \"Yes (Mitsubishi TD04-16t )\"",
    "question_en": " what's the transmission where turbo is yes (mitsubishi td04-16t )",
    "question_th": " เกียร์ไหนมีเทอร์โบครับ (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_en": " what's the fuel delivery where power is hp (kw) @6500 rpm",
    "question_th": " อัตราจ่ายน้ำมันเชื้อเพลิงคือเท่าไร แรงม้า (กิโลวัตต์) @6500 รอบต่อนาที",
    "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_en": "\" what's the engine with turbo being yes (mitsubishi td04-15g ) \"",
    "question_th": "\" เครื่องอะไรครับ มีเทอร์โบครับ (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_en": "What is the english title that has finale as 33 and peak as 42?",
    "question_th": "ชื่อภาษาอังกฤษที่มีตอนจบเป็น 33 และสูงสุดเป็น 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_en": "What is the english title where the premiere is less than 30.0 and the finale is bigger than 36.0?",
    "question_th": "ชื่อภาษาอังกฤษที่รอบปฐมทัศน์น้อยกว่า 30.0 และตอนจบใหญ่กว่า 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 = \"緣來自有機\"",
    "question_en": "What is the rank of the chinese title 緣來自有機?",
    "question_th": "ชื่อภาษาจีน 緣來自มี機 คืออะไร?",
    "context": "CREATE TABLE table_11173827_1 (rank VARCHAR, chinese_title VARCHAR)"
  },
  {
    "answer": "SELECT hk_viewers FROM table_11173827_1 WHERE chinese_title = \"十兄弟\"",
    "question_en": "What amount is the number of hk viewers where chinese title is 十兄弟?",
    "question_th": "จำนวนผู้ชมในฮ่องกงที่มีชื่อภาษาจีนคือ 十兄弟 มีจำนวนเท่าไร?",
    "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_en": "What is the weekly rank with an air date is november 12, 2007?",
    "question_th": "อันดับรายสัปดาห์ที่ออกอากาศคือวันที่ 12 พฤศจิกายน 2550 คือเท่าไร?",
    "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_en": "What is the lowest weekly rank with an air date of november 26, 2007?",
    "question_th": "อันดับรายสัปดาห์ต่ำสุดซึ่งออกอากาศวันที่ 26 พฤศจิกายน 2550 คือเท่าใด",
    "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_en": "What is the viewers where the rating is 5.3?",
    "question_th": "ผู้ชมที่ได้เรตติ้งอยู่ที่ 5.3 คืออะไร?",
    "context": "CREATE TABLE table_11178271_1 (viewers__m_ VARCHAR, rating VARCHAR)"
  },
  {
    "answer": "SELECT highest FROM table_11206787_5 WHERE stadium = \"Balmoor\"",
    "question_en": "What is the highest of balmoor/",
    "question_th": "บาลมัวร์สูงสุดคืออะไร/",
    "context": "CREATE TABLE table_11206787_5 (highest VARCHAR, stadium VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(capacity) FROM table_11206787_5 WHERE stadium = \"Somerset Park\"",
    "question_en": "What is the number of capacity at somerset park?",
    "question_th": "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_en": "What is the minimum capacity where airdrie united is?",
    "question_th": "Airdrie United สามารถรองรับความจุขั้นต่ำได้เท่าไร?",
    "context": "CREATE TABLE table_11206787_5 (capacity INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT stadium FROM table_11206787_5 WHERE team = \"Alloa Athletic\"",
    "question_en": "What is the stadium for alloa athletic?",
    "question_th": "สนามของอัลลัว แอธเลติกคือสนามอะไร?",
    "context": "CREATE TABLE table_11206787_5 (stadium VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT MIN(highest) FROM table_11206787_5 WHERE team = \"Ayr United\"",
    "question_en": "What is the highest of ayr united?",
    "question_th": "อายร์ ยูไนเต็ด สูงที่สุดเท่าไหร่?",
    "context": "CREATE TABLE table_11206787_5 (highest INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT MIN(average) FROM table_11206787_5",
    "question_en": "What is the average?",
    "question_th": "ค่าเฉลี่ยคืออะไร?",
    "context": "CREATE TABLE table_11206787_5 (average INTEGER)"
  },
  {
    "answer": "SELECT date_of_appointment FROM table_11190568_7 WHERE team = \"Galway\"",
    "question_en": "When are team Galway's dates of appointment?",
    "question_th": "วันที่นัดหมายของทีมกัลเวย์คือเมื่อใด?",
    "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_en": "When are the vacancy dates for outgoing manager Damien Fox?",
    "question_th": "ดาเมียน ฟ็อกซ์ ผู้จัดการทีมที่จะออกจากตำแหน่งจะว่างเมื่อใด?",
    "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_en": "When is the date of vacancy of Davy Fitzgerald being a replacement?",
    "question_th": "วันที่ตำแหน่งว่างของ Davy Fitzgerald ที่จะเข้ามาแทนที่คือเมื่อใด",
    "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_en": "Which team has the outgoing manager John Meyler?",
    "question_th": "ทีมไหนมีผู้จัดการทีมจอห์น เมย์เลอร์ ที่กำลังจะลาออก?",
    "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_en": "How many 4 credits is the hand two pair?",
    "question_th": "สองมือมีกี่เครดิต 4 เครดิต?",
    "context": "CREATE TABLE table_11200856_1 (hand VARCHAR)"
  },
  {
    "answer": "SELECT duration FROM table_11210576_3 WHERE actor = \"Christian de la Fuente\"",
    "question_en": "What duration is listed for Christian de la Fuente?",
    "question_th": "ระยะเวลาใดที่ระบุไว้สำหรับ 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_en": "What was the final episode for Dea Agent?",
    "question_th": "ตอนสุดท้ายของ 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_en": "What days is greenock morton vacant?",
    "question_th": "Greenock Morton ว่างวันไหน?",
    "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_en": "What are the dates of the outgoing manager colin hendry does appointments? ",
    "question_th": " คอลิน เฮนดรี้ ผู้จัดการทีมที่จะลาออกจะนัดหมายกันเมื่อใด?",
    "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_en": "What teams does jim mcinally manage?",
    "question_th": "จิม บริหารจัดการทีมใดบ้าง?",
    "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_en": "What days are vacant that were replaced by john brown?",
    "question_th": "จอห์น บราวน์ เข้ามาแทนที่ว่างวันไหนบ้าง?",
    "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_en": "What manner of departure is listed with an appointment date of 13 march 2008",
    "question_th": "ประเภทการเดินทางใดระบุไว้พร้อมกับวันที่นัดหมายคือวันที่ 13 มีนาคม พ.ศ. 2551",
    "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_en": "What is the date of appointment for outgoing manager Campbell Money",
    "question_th": "แคมป์เบลล์ มันนี่ ผู้จัดการทีมที่กำลังจะหมดวาระได้รับการแต่งตั้งเมื่อใด",
    "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_en": "What is the lowest attendance that East End Park has ever had?",
    "question_th": "ผู้เข้าร่วม East End Park ต่ำที่สุดเท่าที่เคยมีมาคือเท่าใด",
    "context": "CREATE TABLE table_11207040_5 (lowest INTEGER, stadium VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_11207040_5 WHERE stadium = \"Palmerston Park\"",
    "question_en": "What team plays at Palmerston Park?",
    "question_th": "ทีมใดเล่นที่ Palmerston Park?",
    "context": "CREATE TABLE table_11207040_5 (team VARCHAR, stadium VARCHAR)"
  },
  {
    "answer": "SELECT MIN(lowest) FROM table_11207040_5 WHERE stadium = \"Cappielow\"",
    "question_en": "What is the lowest attandance recorded at Cappielow?",
    "question_th": "จำนวนผู้เข้าร่วมต่ำสุดที่บันทึกไว้ที่ Cappielow คืออะไร?",
    "context": "CREATE TABLE table_11207040_5 (lowest INTEGER, stadium VARCHAR)"
  },
  {
    "answer": "SELECT MAX(highest) FROM table_11207040_5 WHERE team = \"St. Johnstone\"",
    "question_en": "What is the highest attendance at a game played by St. Johnstone?",
    "question_th": "ผู้เข้าร่วมสูงสุดในเกมที่เล่นโดย 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_en": "What is the highest attandence at a Hamilton Academical game?",
    "question_th": "ผู้เข้าชมสูงสุดในเกม Hamilton Academical คืออะไร?",
    "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_en": " who is the champion where semi-finalist #2 is na and location is morrisville, nc",
    "question_th": " ซึ่งเป็นแชมป์โดยที่ผู้เข้ารอบรองชนะเลิศ #2 คือ na และสถานที่คือ 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_en": " what's the score where year is 2007",
    "question_th": " ปี 2550 มีคะแนนเท่าไหร่",
    "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_en": "what is the total number of semi-finalist #2 where runner-up is east carolina",
    "question_th": "จำนวนผู้เข้ารอบรองชนะเลิศหมายเลข 2 ทั้งหมดคือเท่าใด โดยรองชนะเลิศคืออีสต์แคโรไลนา",
    "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_en": " who is the semi-finalist #1 where runner-up is elon university",
    "question_th": " ผู้เข้ารอบรองชนะเลิศ #1 โดยรองชนะเลิศ ได้แก่ มหาวิทยาลัยอีลอน",
    "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_en": " who is the runner-up where year is 2004 and champion is north carolina state",
    "question_th": " ซึ่งเป็นรองชนะเลิศในปี 2547 และแชมป์คือรัฐนอร์ทแคโรไลนา",
    "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_en": " who is the runner-up where location is ellenton, fl and year is 2004",
    "question_th": "ซึ่งเป็นรองชนะเลิศโดยสถานที่คือเอลเลนตัน ชั้น และปีคือ 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_en": "what's the naturalisation  by marriage with numer of jamaicans granted british citizenship being 3165",
    "question_th": "การแปลงสัญชาติโดยการแต่งงานกับจำนวนชาวจาเมกาที่ได้รับสัญชาติอังกฤษคือ 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_en": " how many numer of jamaicans granted british citizenship with naturalisation  by marriage being 1060",
    "question_th": " จำนวนจาเมกาที่ได้รับสัญชาติอังกฤษโดยการแปลงสัญชาติโดยการแต่งงานคือ 1,060 คน",
    "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_en": "what's the naturalisation by marriage with regbeingtration of a minor child being 114",
    "question_th": "การแปลงสัญชาติโดยการสมรสกับการมีชีวิตใหม่ของเด็กที่ยังไม่บรรลุนิติภาวะเมื่ออายุ 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_en": "what's the numer of jamaicans granted british  citizenship with naturalisation by residence being 927",
    "question_th": "จำนวนชาวจาเมกาที่ได้รับสัญชาติอังกฤษโดยการแปลงสัญชาติตามถิ่นที่อยู่คือเท่าไร 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_en": "what is the maximum year with registration of a minor child being 281",
    "question_th": "ปีสูงสุดที่จดทะเบียนผู้เยาว์ได้คือ 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_en": "How many episodes had their first air date on March 6, 2008?",
    "question_th": "วันที่ออกอากาศครั้งแรกในวันที่ 6 มีนาคม พ.ศ. 2551 มีกี่ตอน?",
    "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_en": "What were the results of episodes with the first air date of March 6, 2008?",
    "question_th": "ผลการออกอากาศตอนแรกวันที่ 6 มีนาคม 2551 เป็นอย่างไร?",
    "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_en": "How many millions of viewers watched episode 15?",
    "question_th": "มีผู้ชมดูตอนที่ 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_en": "How many millions of viewers watched the episode directed by Anthony Hemingway?",
    "question_th": "มีผู้ชมกี่ล้านคนที่ดูตอนที่กำกับโดย 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_en": "The Catalog number is 80809 what is the title?",
    "question_th": "หมายเลขแคตตาล็อกคือ 80809 ชื่ออะไร?",
    "context": "CREATE TABLE table_11222744_2 (title VARCHAR, catalog_number VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(format) FROM table_11222744_2 WHERE title = \"Beginning Callanetics\"",
    "question_en": "where title is beginning callanetics , what is the total of format ?",
    "question_th": "โดยที่ title เป็นจุดเริ่มต้นของวิชา Callanetics จำนวนรูปแบบทั้งหมดเป็นเท่าใด?",
    "context": "CREATE TABLE table_11222744_2 (format VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT studio FROM table_11222744_2 WHERE catalog_number = \"81258\"",
    "question_en": "where catalog number is 81258 , what are all the studio ?",
    "question_th": "โดยที่หมายเลขแค็ตตาล็อกคือ 81258 สตูดิโอทั้งหมดมีอะไรบ้าง?",
    "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_en": "where title is am/pm callanetics , what are all the copyright information?",
    "question_th": "โดยที่ชื่อคือ am/pm callanetics ข้อมูลลิขสิทธิ์ทั้งหมดมีอะไรบ้าง?",
    "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_en": "What was the GF attendance at the location of Sydney Football Stadium, Sydney (6)?",
    "question_th": "GF เข้าร่วมที่สนามฟุตบอลซิดนีย์ ซิดนีย์ (6) เป็นเวลาเท่าใด",
    "context": "CREATE TABLE table_11236195_2 (gf_attendance VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT losingteam FROM table_11236195_2 WHERE score = \"24-12\"",
    "question_en": "Which losing team had a score of 24-12?",
    "question_th": "ทีมไหนแพ้มีสกอร์ 24-12?",
    "context": "CREATE TABLE table_11236195_2 (losingteam VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT losingteam FROM table_11236195_2 WHERE season = 1993",
    "question_en": "What was the losing team in the 1993 season?",
    "question_th": "ทีมใดที่แพ้ในฤดูกาล 1993?",
    "context": "CREATE TABLE table_11236195_2 (losingteam VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT compression_ratio FROM table_1123802_1 WHERE engine = \"Wasp Jr. T1B2\"",
    "question_en": "What was the compression ration when the engine was Wasp Jr. T1B2?",
    "question_th": "อัตรากำลังอัดเมื่อเครื่องยนต์คือ 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_en": "When the engine is Wasp Jr. T1B2, what is the number needed for takeoff power?",
    "question_th": "เมื่อเครื่องเป็น Wasp Jr. T1B2 ต้องใช้เลขอะไรในการส่งกำลังขึ้น?",
    "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_en": "How many episodes aired on october 27, 2008",
    "question_th": "ออกอากาศกี่ตอนในวันที่ 27 ตุลาคม พ.ศ. 2551",
    "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_en": "what is the most # that aired on september 29, 2008?",
    "question_th": "#ออกอากาศวันที่ 29 กันยายน 2551 คือเพลงอะไรมากที่สุด?",
    "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_en": "How many seasons did the canterbury bulldogs (8) win?",
    "question_th": "Canterbury Bulldogs (8) ชนะกี่ฤดูกาล?",
    "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_en": "How many teams lost at the sydney football stadium, sydney (11)?",
    "question_th": "กี่ทีมที่แพ้ในสนามฟุตบอลซิดนีย์, ซิดนีย์ (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_en": "What was the date that the st. george-illawarra dragons lost?",
    "question_th": "วันที่เท่าไหร่ที่เซนต์ มังกรจอร์จ-อิลาวาร์ราหายไปเหรอ?",
    "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_en": "Brett kimmorley, who was chosen for the clive churchill medal belonged to what team?",
    "question_th": "เบร็ตต์ คิมมอร์ลีย์ ผู้ได้รับเลือกให้คว้าเหรียญรางวัลไคลฟ์ เชอร์ชิลล์ เป็นของทีมใด",
    "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_en": "What time slots have a 6.3 rating",
    "question_th": "ช่วงเวลาใดมีเรตติ้ง 6.3",
    "context": "CREATE TABLE table_11244302_1 (time_slot__est_ VARCHAR, rating VARCHAR)"
  },
  {
    "answer": "SELECT air_date FROM table_11244302_1 WHERE share = 11",
    "question_en": "Which air date had an 11 share",
    "question_th": "ออกอากาศวันไหนมี 11 แชร์",
    "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_en": "What episode had the last appearances of the late wife of mac taylor?",
    "question_th": "ภรรยาผู้ล่วงลับของแม็ค เทย์เลอร์ ปรากฏตัวครั้งสุดท้ายตอนไหน?",
    "context": "CREATE TABLE table_11240028_3 (last_appearance VARCHAR, relationship VARCHAR)"
  },
  {
    "answer": "SELECT portrayed_by FROM table_11240028_3 WHERE character = \"Reed Garrett\"",
    "question_en": "Which characters were portrayed by reed garrett?",
    "question_th": "ตัวละครใดบ้างที่แสดงโดยรีด การ์เร็ตต์?",
    "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_en": "How many characters were portrayed by the informant of don flack?",
    "question_th": "ผู้ให้ข้อมูลของดอน แฟล็กแสดงตัวละครกี่ตัว?",
    "context": "CREATE TABLE table_11240028_3 (portrayed_by VARCHAR, relationship VARCHAR)"
  },
  {
    "answer": "SELECT last_appearance FROM table_11240028_3 WHERE character = \"Rikki Sandoval\"",
    "question_en": "What episode was the last appearance of the character, rikki sandoval?",
    "question_th": "การปรากฏตัวครั้งสุดท้ายของตัวละคร 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_en": "On which episode did actress Sela Ward make her last appearance?",
    "question_th": "นักแสดงหญิง Sela Ward ปรากฏตัวครั้งสุดท้ายในตอนใด",
    "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_en": "How many episodes did actress Vanessa Ferlito appear in?",
    "question_th": "นักแสดงหญิง Vanessa Ferlito ปรากฏตัวกี่ตอน?",
    "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_en": "What was the duration of Robert Joy's portrayal?",
    "question_th": "ภาพของโรเบิร์ต จอยใช้เวลานานแค่ไหน?",
    "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_en": "Which episode did actor A. J. Buckley last appear in?",
    "question_th": "นักแสดง AJ Buckley ปรากฏตัวครั้งสุดท้ายในตอนใด",
    "context": "CREATE TABLE table_11240028_1 (last_appearance VARCHAR, portrayed_by VARCHAR)"
  },
  {
    "answer": "SELECT MIN(top_division_titles) FROM table_11250_4",
    "question_en": "What is the least top division titles?",
    "question_th": "ชื่อดิวิชั่นสูงสุดน้อยที่สุดคืออะไร?",
    "context": "CREATE TABLE table_11250_4 (top_division_titles INTEGER)"
  },
  {
    "answer": "SELECT MIN(number_of_seasons_in_top_division) FROM table_11250_4",
    "question_en": "What is the least number of seasons in top division?",
    "question_th": "ลีกสูงสุดมีฤดูกาลน้อยที่สุดคือเท่าใด?",
    "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_en": "How many viewers (millions) were there for rank (week) 20?",
    "question_th": "มีผู้ชมกี่คน (ล้าน) สำหรับอันดับ (สัปดาห์) 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_en": "What is the lowest rank (night) for having viewers (millions) 5.25?",
    "question_th": "อันดับต่ำสุด (คืน) สำหรับการมีผู้ชม (ล้าน) 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_en": "How many times was the rank (night) 11?",
    "question_th": "อันดับ (คืน) 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_en": "WHAT WAS THE AMOUNT OF CARBON DIOXIDE EMISSIONS  IN 2006 IN THE COUNTRY WHOSE  CO2 EMISSIONS (TONS PER PERSON)  REACHED 1.4 IN 2OO7?",
    "question_th": "ปริมาณการปล่อยก๊าซคาร์บอนไดออกไซด์ในปี 2549 ในประเทศที่มีการปล่อย CO2 (ตันต่อคน) สูงถึง 1.4 ใน 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_en": "HOW MANY TONS OF CO2 EMISSIONS DID RUSSIA PRODUCE IN 2006?",
    "question_th": "รัสเซียผลิตก๊าซคาร์บอนไดออกไซด์ได้กี่ตันในปี 2549",
    "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_en": "WHAT PERCENTAGE OF GLOBAL TOTAL EMISSIONS DID INDIA PRODUCE?",
    "question_th": "อินเดียก่อให้เกิดการปล่อยก๊าซเรือนกระจกทั่วโลกเป็นจำนวนเท่าใด",
    "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_en": "HOW MUCH IS THE PERCENTAGE OF GLOBAL TOTAL EMISSIONS IN THE COUNTRY THAT PRODUCED 4.9 TONS PER PERSON IN 2007?",
    "question_th": "เปอร์เซ็นต์ของการปล่อยก๊าซเรือนกระจกทั้งหมดทั่วโลกในประเทศที่ผลิตได้ 4.9 ตันต่อคนในปี 2550 เป็นเท่าใด",
    "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_en": "WHAT WAS THE AVERAGE EMISSION PER KM 2 IN INDIA?",
    "question_th": "การปล่อยก๊าซเรือนกระจกโดยเฉลี่ยต่อกิโลเมตรที่ 2 ในอินเดียเป็นเท่าใด",
    "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_en": "What is the rank number that aired october 26, 2007?",
    "question_th": "ออกอากาศวันที่ 26 ตุลาคม 2550 อยู่อันดับที่เท่าไหร่?",
    "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_en": "What is the number of rank with the viewership of 5.96 million?",
    "question_th": "อันดับยอดผู้ชม 5.96 ล้านคน อยู่ที่เท่าไร?",
    "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_en": "What is the viewership on november 9, 2007?",
    "question_th": "ยอดผู้ชมวันที่ 9 พฤศจิกายน 2550 เป็นอย่างไรบ้าง?",
    "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_en": "How many platinum points were awarded when 6 gold points were awarded?",
    "question_th": "เมื่อได้รับคะแนนทองคำ 6 คะแนน จะได้รับคะแนนแพลทินัมกี่คะแนน?",
    "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_en": "What was the range of finishing position for 15 awarded platinum points?",
    "question_th": "ตำแหน่งเข้าเส้นชัยสำหรับคะแนนแพลตตินัมที่ได้รับ 15 คะแนนมีระยะเท่าใด",
    "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_en": "How many platinum points were awarded for 5th place?",
    "question_th": "อันดับที่ 5 ได้รับคะแนนแพลทินัมกี่คะแนน?",
    "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_en": "How many platinum points were awarded when 70 silver points were awarded?",
    "question_th": "จะได้รับคะแนนแพลทินัมกี่คะแนนเมื่อได้รับคะแนนเงิน 70 คะแนน",
    "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_en": "How many platinum points were awarded when 9 gold points were awarded?",
    "question_th": "เมื่อได้รับคะแนนทองคำ 9 คะแนน จะได้รับคะแนนแพลทินัมกี่คะแนน?",
    "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_en": "How did the episode rank that had 2.65 million viewers?",
    "question_th": "ตอนนี้มีผู้ชม 2.65 ล้านคนอยู่ในอันดับที่เท่าไหร่?",
    "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_en": "What was the share for the first episode that ranked 85?",
    "question_th": "ส่วนแบ่งของตอนแรกที่ติดอันดับ 85 เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_11274401_2 (share INTEGER, rank___number_ VARCHAR)"
  },
  {
    "answer": "SELECT timeslot FROM table_11274401_2 WHERE no = 15",
    "question_en": "Which timeslot did episode no. 15 hold?",
    "question_th": "ช่วงเวลาใดที่ทำตอนที่ 15 ถือ?",
    "context": "CREATE TABLE table_11274401_2 (timeslot VARCHAR, no VARCHAR)"
  },
  {
    "answer": "SELECT timeslot FROM table_11274401_3 WHERE air_date = \"May 12, 2009\"",
    "question_en": "What was the timeslot for the episode that aired on May 12, 2009?",
    "question_th": "ตอนที่ออกอากาศวันที่ 12 พฤษภาคม 2552 ออกอากาศเมื่อไหร่?",
    "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_en": "What's the total number of episodes whose original airings were viewed by 1.82 million viewers?",
    "question_th": "จำนวนตอนทั้งหมดที่มีผู้ชมการออกอากาศดั้งเดิม 1.82 ล้านคนคือเท่าใด",
    "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_en": "What's the rating of the episode originally aired on May 5, 2009?",
    "question_th": "เรตติ้งของตอนที่ออกอากาศครั้งแรกเมื่อวันที่ 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_en": "What episode was seen by 2.05 million viewers?",
    "question_th": "มีผู้ชม 2.05 ล้านคนดูตอนใด",
    "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_en": " what's the extroverted, relationship-oriented where moderate is introverted sanguine",
    "question_th": " อะไรคือคนเปิดเผยและมุ่งเน้นความสัมพันธ์ โดยที่คนปานกลางเป็นคนเก็บตัวร่าเริง",
    "context": "CREATE TABLE table_11256021_1 (extroverted VARCHAR, _relationship_oriented VARCHAR, moderate VARCHAR)"
  },
  {
    "answer": "SELECT founder FROM table_11256021_1 WHERE moderate = \"ether\"",
    "question_en": " what's the founder where moderate is ether",
    "question_th": " ผู้ก่อตั้งคืออะไรโดยที่ปานกลางคืออีเทอร์",
    "context": "CREATE TABLE table_11256021_1 (founder VARCHAR, moderate VARCHAR)"
  },
  {
    "answer": "SELECT extroverted, _relationship_oriented FROM table_11256021_1 WHERE date = \"c. 1928\"",
    "question_en": " what's the extroverted, relationship-oriented where date is c. 1928",
    "question_th": " คนเปิดเผยและมุ่งเน้นความสัมพันธ์คืออะไร โดยที่วันที่คือค 2471",
    "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_en": " who is the founder where date is c. 1900",
    "question_th": " ใครเป็นผู้ก่อตั้งโดยที่วันที่คือค 1900",
    "context": "CREATE TABLE table_11256021_1 (founder VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT batting_team FROM table_11303072_5 WHERE runs = \"276\"",
    "question_en": "What is the batting team where the runs are 276?",
    "question_th": "ทีมตีบอลที่วิ่งได้ 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_en": "Name the batting team at Durham",
    "question_th": "ตั้งชื่อทีมตีลูกที่เดอรัม",
    "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_en": "What is the batting team with the batting partnets of thilina kandamby and rangana herath?",
    "question_th": "ทีมตีลูกที่มีพันธมิตรตีลูกของ thilina kandamby และ 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_en": "What is the fielding team with 155 runs?",
    "question_th": "ทีมลงสนาม 155 รัน คืออะไร?",
    "context": "CREATE TABLE table_11303072_5 (fielding_team VARCHAR, runs VARCHAR)"
  },
  {
    "answer": "SELECT batting_partners FROM table_11303072_5 WHERE runs = \"226\"",
    "question_en": "What is the batting partners with runs of 226?",
    "question_th": "คู่ตีลูกที่มีระยะ 226 คืออะไร?",
    "context": "CREATE TABLE table_11303072_5 (batting_partners VARCHAR, runs VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_11303072_9 WHERE player = \"David Bairstow\"",
    "question_en": "What is the nationality of David Bairstow?",
    "question_th": "David Bairstow สัญชาติอะไร?",
    "context": "CREATE TABLE table_11303072_9 (nationality VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_11303072_9 WHERE rank = 2",
    "question_en": "What are the players whose rank is 2?",
    "question_th": "ผู้เล่นอันดับที่ 2 มีอะไรบ้าง?",
    "context": "CREATE TABLE table_11303072_9 (player VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT stumpings FROM table_11303072_9 WHERE player = \"Paul Nixon\"",
    "question_en": "How many stumpings has Paul Nixon in his career?",
    "question_th": "Paul Nixon มีเรื่องสะดุดกี่ครั้งในอาชีพของเขา?",
    "context": "CREATE TABLE table_11303072_9 (stumpings VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_11303072_9 WHERE player = \"Adam Gilchrist\"",
    "question_en": "Where is Adam Gilchrist from?",
    "question_th": "อดัม กิลคริสต์มาจากไหน?",
    "context": "CREATE TABLE table_11303072_9 (nationality VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_1130632_1 WHERE us_viewers__million_ = \"19.48\"",
    "question_en": "What are the title that have 19.48 million u.s. viewers?",
    "question_th": "ชื่ออะไรที่มีผู้ชม 19.48 ล้านคน?",
    "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_en": "Which titles have 18.73 u.s. viewers.",
    "question_th": "ชื่อเรื่องใดมีผู้ชม 18.73 คน",
    "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_en": "Who wrote all the shows with 18.73 u.s. viewers?",
    "question_th": "ใครเป็นคนเขียนรายการทั้งหมดที่มีผู้ชม 18.73 พวกเรา?",
    "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_en": "What is the rank where the area is Los Angeles?",
    "question_th": "พื้นที่คือลอสแอนเจลิสอันดับที่เท่าไหร่?",
    "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_en": "What is the number of jews where the rank is 1?",
    "question_th": "ชาวยิวอันดับที่ 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_en": "What is the number of jews asarb where the metro area is philadelphia?",
    "question_th": "ชาวยิวจำนวนเท่าไรที่บริเวณเมืองใหญ่คือฟิลาเดลเฟีย?",
    "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_en": "what are all the open 1st viii with u15 6th iv being bgs",
    "question_th": "open 1st viii ทั้งหมดคืออะไร โดยที่ u15 6th iv เป็น 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_en": "what are all the u16 2nd viii with u15 3rd iv being bbc",
    "question_th": "u16 2nd viii ทั้งหมดคืออะไร โดย u15 3rd iv เป็น 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_en": "what are all the open 1st viii with u15 4th iv being gt",
    "question_th": "open 1st viii ทั้งหมดที่มี u15 4th iv เป็น 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_en": "how many crew had u15 3rd iv being bgs and u15 1st iv being acgs and open 1st viii being acgs",
    "question_th": "มีลูกเรือกี่คนที่ u15 3rd iv เป็น bgs และ u15 1st iv เป็น acgs และเปิด 1st viii เป็น 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_en": "what are all the u15 3rd iv with u15 4th iv being bbc",
    "question_th": "u15 3rd iv ทั้งหมดคืออะไร โดย u15 4th iv เป็น 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_en": "how many open 2nd viii had u15 3rd iv being gt",
    "question_th": "viii ที่ 2 เปิดได้กี่ตัว u15 3 iv เป็น 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_en": "How many schools have an enrollment of 850?",
    "question_th": "มีโรงเรียนกี่แห่งที่มีการลงทะเบียน 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_en": "What is the location of the school named Brisbane Girls' Grammar School?",
    "question_th": "ที่ตั้งของโรงเรียนชื่อ 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_en": "How many schools are located in South Brisbane?",
    "question_th": "South Brisbane มีโรงเรียนกี่แห่ง?",
    "context": "CREATE TABLE table_11318462_29 (school VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT MIN(founded) FROM table_11318462_29 WHERE abbreviation = \"SPLC\"",
    "question_en": "When was SPLC founded?",
    "question_th": "SPLC ก่อตั้งขึ้นเมื่อใด?",
    "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_en": "What is the enrollment of STM which has been in competition since 1990?",
    "question_th": "STM ที่จัดการแข่งขันมาตั้งแต่ปี 2533 มีการลงทะเบียนอะไรบ้าง?",
    "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_en": "What number is the Monaco Grand Prix?",
    "question_th": "โมนาโกกรังด์ปรีซ์หมายเลขอะไร?",
    "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_en": "Who is in the pole position for the French Grand Prix?",
    "question_th": "ใครอยู่ในตำแหน่งโพลของ 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_en": "What are the numbers for the raceways that are constructed by Ferrari, with Michael Schumacher holding the fastest lap and pole position?",
    "question_th": "อะไรคือตัวเลขสำหรับสนามแข่งที่เฟอร์รารี่สร้าง โดยมิคาเอล ชูมัคเกอร์ ครองตำแหน่งรอบและโพลโพสิชันที่เร็วที่สุด?",
    "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_en": "How many on the list are called the Austrian Grand Prix?",
    "question_th": "มีกี่รายการในรายการที่เรียกว่าออสเตรียนกรังด์ปรีซ์?",
    "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_en": "What number is the Canadian Grand Prix on the list?",
    "question_th": "Canadian Grand Prix อยู่ในรายการหมายเลขใด",
    "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_en": "What is the rd for the canadian grand prix?",
    "question_th": "อะไรคือสิ่งที่สำหรับกรังด์ปรีซ์ของแคนาดา?",
    "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_en": "What is the fastest lap for the european grand prix?",
    "question_th": "รอบที่เร็วที่สุดสำหรับ 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_en": "What is the pole position for the ferrari at the austrian grand prix?",
    "question_th": "ตำแหน่งโพลของเฟอร์รารีในการแข่งขันกรังด์ปรีซ์ออสเตรียคืออะไร?",
    "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_en": "What was the result of round 2r?",
    "question_th": "ผลลัพธ์ของรอบ 2r คืออะไร?",
    "context": "CREATE TABLE table_11326124_3 (outcome VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT against FROM table_11326124_3 WHERE opponent = \"Tina Pisnik\"",
    "question_en": "Who did Tina Pisnik verse?",
    "question_th": "ท่อน Tina Pisnik คือใคร?",
    "context": "CREATE TABLE table_11326124_3 (against VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(result) FROM table_11326124_3 WHERE round = \"2R\"",
    "question_en": "How many rounds were 2r?",
    "question_th": "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_en": "what's the night rank with viewers (m) of 6.63",
    "question_th": "อันดับกลางคืนที่มีผู้ชม (m) เท่ากับ 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_en": "what's the overall rank with viewers (m) of 7.44",
    "question_th": "อันดับผู้ชมโดยรวม (m) 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_en": "what's the night rank with rating of 6.2",
    "question_th": "อันดับกลางคืนคือเท่าไรด้วยเรตติ้ง 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_en": "What is the number of group b winner for francavilla?",
    "question_th": "ผู้ชนะกลุ่ม b ของฟรังกาวิลล่าคือหมายเลขเท่าไร?",
    "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_en": "What is the group a winner for modena?",
    "question_th": "กลุ่มใดเป็นผู้ชนะสำหรับโมเดน่า?",
    "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_en": "What is the group a winner for vis pesaro?",
    "question_th": "กลุ่มใดเป็นผู้ชนะสำหรับ 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_en": "What group a winner was for nocerina?",
    "question_th": "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_en": "What was the group d winner for modena?",
    "question_th": "ผู้ชนะกลุ่ม d สำหรับโมเดน่าคืออะไร?",
    "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_en": "Who had the fastest lap at the brazilian grand prix?",
    "question_th": "ใครมีรอบเร็วที่สุดในการแข่งขัน 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_en": "Who was on the pole position at the monaco grand prix?",
    "question_th": "ใครเป็นผู้ครองตำแหน่งโพลโพซิชั่นที่โมนาโกกรังด์ปรีซ์?",
    "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_en": "Who was the winning driver when Michael Schumacher had the pole and the fastest lap?",
    "question_th": "ใครคือนักแข่งที่ชนะเมื่อ Michael Schumacher ครองโพลและทำรอบได้เร็วที่สุด?",
    "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_en": "what are all the location where date is 5 april",
    "question_th": "สถานที่ทั้งหมดคือวันที่ 5 เมษายนอยู่ที่ไหน",
    "context": "CREATE TABLE table_1137704_2 (location VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT pole_position FROM table_1137704_2 WHERE date = \"26 July\"",
    "question_en": "what are all the pole position where date is 26 july",
    "question_th": "ตำแหน่งโพลทั้งหมดคือวันที่ 26 ก.ค",
    "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_en": "who are all the winning constructors where fastest lap is riccardo patrese and location is interlagos",
    "question_th": "ซึ่งเป็นผู้สร้างที่ชนะทั้งหมด โดยที่รอบเร็วที่สุดคือ riccardo patrese และตำแหน่งคือ 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_en": "what are all the report where winning constructor is williams - renault and grand prix is south african grand prix",
    "question_th": "อะไรคือรายงานทั้งหมดที่ผู้ชนะคือวิลเลียมส์ - เรโนลต์และกรังด์ปรีซ์คือกรังด์ปรีซ์ของแอฟริกาใต้",
    "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_en": "whatthe minimum round where grand prix is german grand prix",
    "question_th": "รอบขั้นต่ำที่กรังด์ปรีซ์คือกรังด์ปรีซ์เยอรมัน",
    "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_en": "what of the total number of date where grand prix is portuguese grand prix",
    "question_th": "คือจำนวนวันทั้งหมดที่กรังด์ปรีซ์เป็นกรังด์ปรีซ์โปรตุเกส",
    "context": "CREATE TABLE table_1137704_2 (date VARCHAR, grand_prix VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(pole_position) FROM table_1137707_2 WHERE round = 15",
    "question_en": "What is the number of pole position with a round of 15?",
    "question_th": "ตำแหน่งโพลโพซิชั่นรอบ 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_en": "What is the date of the circuit gilles villeneuve?",
    "question_th": "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_en": "What is the location of thierry boutsen?",
    "question_th": "เธียรี่ บูทเซ่น อยู่ที่ไหน?",
    "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_en": "Who had the pole position at the German Grand Prix?",
    "question_th": "ใครได้ตำแหน่งโพลโพซิชั่นในรายการเยอรมันกรังด์ปรีซ์?",
    "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_en": "Which rd. occurred on 22 October?",
    "question_th": "ถ.ไหน เกิดขึ้นวันที่ 22 ตุลาคม?",
    "context": "CREATE TABLE table_1137718_2 (rd INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT winning_driver FROM table_1137718_2 WHERE date = \"13 August\"",
    "question_en": "Who was the winning driver on 13 August?",
    "question_th": "ใครคือนักแข่งที่ชนะในวันที่ 13 สิงหาคม?",
    "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_en": "What was the fastest lap at the Mexican Grand Prix?",
    "question_th": "รอบที่เร็วที่สุดในรายการ 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_en": "Which rd. took place at Hockenheimring?",
    "question_th": "ถ.ไหน เกิดขึ้นที่ Hockenheimring?",
    "context": "CREATE TABLE table_1137718_2 (rd INTEGER, location VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(fastest_lap) FROM table_1137718_2 WHERE location = \"Silverstone\"",
    "question_en": "How many drivers had the fastest lap at Silverstone?",
    "question_th": "มีนักแข่งกี่คนที่ทำเวลาต่อรอบได้เร็วที่สุดที่สนามซิลเวอร์สโตน?",
    "context": "CREATE TABLE table_1137718_2 (fastest_lap VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT android FROM table_11381701_3 WHERE windows = \"1.15%\"",
    "question_en": "What is the percentage of Android use when Windows is 1.15%?",
    "question_th": "เปอร์เซ็นต์การใช้งาน Android เมื่อ Windows คือ 1.15% เป็นเท่าใด",
    "context": "CREATE TABLE table_11381701_3 (android VARCHAR, windows VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_11381701_3 WHERE bada = \"0.05%\"",
    "question_en": "On which dates was the value of Bada 0.05%?",
    "question_th": "มูลค่าบาดา 0.05% คือวันไหน?",
    "context": "CREATE TABLE table_11381701_3 (date VARCHAR, bada VARCHAR)"
  },
  {
    "answer": "SELECT windows FROM table_11381701_3 WHERE other = \"0.7%\"",
    "question_en": "When the value of \"other\" is 0.7%, what is the percentage for Windows?",
    "question_th": "เมื่อค่าของ \"other\" เท่ากับ 0.7% 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_en": "When Symbian/Series 40 is 0.40%, what is the percentage of \"other\"?",
    "question_th": "เมื่อ Symbian/Series 40 อยู่ที่ 0.40% เปอร์เซ็นต์ของ \"อื่นๆ\" จะเป็นเท่าใด",
    "context": "CREATE TABLE table_11381701_3 (other VARCHAR, symbian___series_40 VARCHAR)"
  },
  {
    "answer": "SELECT source FROM table_11381701_3 WHERE blackberry = \"2.9%\"",
    "question_en": "Which source shows Blackberry at 2.9%?",
    "question_th": "แหล่งไหนแสดง Blackberry ที่ 2.9%?",
    "context": "CREATE TABLE table_11381701_3 (source VARCHAR, blackberry VARCHAR)"
  },
  {
    "answer": "SELECT english_name FROM table_11390711_4 WHERE abbreviation = \"MTC\"",
    "question_en": "Which colleges have the english abbreviation MTC?",
    "question_th": "วิทยาลัยใดมีอักษรย่อภาษาอังกฤษ 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_en": "What is the Japanese orthography for the English name National Farmers Academy?",
    "question_th": "การสะกดการันต์ของญี่ปุ่นสำหรับชื่อภาษาอังกฤษว่า 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ōkū Daigakkō\"",
    "question_en": "What is the abbreviation for the college pronounced \"kōkū daigakkō\"?",
    "question_th": "วิทยาลัย ออกเสียงว่า \"โคคุ ไดกักโก\" อักษรย่อว่าอะไร?",
    "context": "CREATE TABLE table_11390711_4 (abbreviation VARCHAR, pronouciation VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(provider_iai_) FROM table_11390711_4 WHERE foundation = 1964",
    "question_en": "How many providers were founded in 1964?",
    "question_th": "มีผู้ให้บริการกี่รายที่ก่อตั้งในปี 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_en": "What is the Japanese orthography for National Fisheries University?",
    "question_th": "การสะกดการันต์ของญี่ปุ่นสำหรับมหาวิทยาลัยประมงแห่งชาติคืออะไร?",
    "context": "CREATE TABLE table_11390711_4 (japanese_orthography VARCHAR, english_name VARCHAR)"
  },
  {
    "answer": "SELECT MIN(Half) AS marathon__womens_ FROM table_11391954_3",
    "question_en": "What is the minimum number for the half marathon (womens)?",
    "question_th": "ฮาล์ฟมาราธอน (หญิง) ขั้นต่ำคือเท่าไร?",
    "context": "CREATE TABLE table_11391954_3 (Half INTEGER)"
  },
  {
    "answer": "SELECT COUNT(Half) AS marathon__mens_ FROM table_11391954_3 WHERE country = \"Kazakhstan\"",
    "question_en": "Whatis the total number of half marathon (mens) that represented kazakhstan?",
    "question_th": "ฮาล์ฟมาราธอน (ชาย) ที่เป็นตัวแทนของคาซัคสถานมีจำนวนทั้งหมดเท่าไร?",
    "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_en": "How many times is Moldova the winner of half marathon (womens)?",
    "question_th": "มอลโดวาเป็นผู้ชนะฮาล์ฟมาราธอน (หญิง) กี่ครั้ง?",
    "context": "CREATE TABLE table_11391954_3 (Half VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_1139087_2 WHERE grand_prix = \"Brazilian grand_prix\"",
    "question_en": "What is the make of the car that won the brazilian grand prix?",
    "question_th": "รถยี่ห้ออะไรชนะรางวัล 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_en": "Who drove the fastest lap for round 8?",
    "question_th": "ใครเป็นผู้ขับรอบที่เร็วที่สุดในรอบ 8?",
    "context": "CREATE TABLE table_1139087_2 (fastest_lap VARCHAR, rd VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_1139087_2 WHERE location = \"Jerez\"",
    "question_en": "What day was the grand prix in jerez?",
    "question_th": "กรังด์ปรีซ์ในเจเรซคือวันไหน?",
    "context": "CREATE TABLE table_1139087_2 (date VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT grand_prix FROM table_1139087_2 WHERE location = \"Detroit\"",
    "question_en": "What event was in detroit?",
    "question_th": "เหตุการณ์อะไรในดีทรอยต์?",
    "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_en": "How many events did nigel mansell drive the fastest and a mclaren - honda win?",
    "question_th": "ไนเจล แมนเซลล์ ขับเร็วที่สุดกี่เหตุการณ์ และแม็คลาเรน - ฮอนด้าชนะกี่รายการ?",
    "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_en": "What day is the french grand prix",
    "question_th": "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_en": " who is the winners where season result is 7th",
    "question_th": " ใครเป็นผู้ชนะโดยผลฤดูกาลคืออันดับที่ 7",
    "context": "CREATE TABLE table_1139835_3 (winners VARCHAR, season_result VARCHAR)"
  },
  {
    "answer": "SELECT winners FROM table_1139835_3 WHERE season_result = \"9th\"",
    "question_en": " who is the winners where season result is 9th",
    "question_th": " ใครเป็นผู้ชนะโดยผลฤดูกาลคืออันดับที่ 9",
    "context": "CREATE TABLE table_1139835_3 (winners VARCHAR, season_result VARCHAR)"
  },
  {
    "answer": "SELECT grand_finalist FROM table_1139835_3 WHERE winners = \"Collingwood\"",
    "question_en": " what's the grand finalist where winners is collingwood",
    "question_th": " ผู้เข้ารอบสุดท้ายที่ยิ่งใหญ่คือผู้ชนะคือคอลลิงวูด",
    "context": "CREATE TABLE table_1139835_3 (grand_finalist VARCHAR, winners VARCHAR)"
  },
  {
    "answer": "SELECT season_result FROM table_1139835_3 WHERE margin = 51",
    "question_en": " who is the season result where margin is 51",
    "question_th": " ซึ่งเป็นผลการแข่งขันของฤดูกาลโดยที่มาร์จิ้นคือ 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) – 10.8 (68)\"",
    "question_en": " who is the grand finalist where scores is 11.11 (77) – 10.8 (68)",
    "question_th": " ผู้เข้ารอบสุดท้ายด้วยคะแนน 11.11 (77) – 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) – 7.12 (54)\"",
    "question_en": " who is the grand finalist where scores is 8.9 (57) – 7.12 (54)",
    "question_th": " ผู้เข้ารอบสุดท้ายด้วยคะแนน 8.9 (57) – 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) – 8.11 (59)\"",
    "question_en": "what was the crowd when the scores are 10.12 (72) – 8.11 (59)?",
    "question_th": "ฝูงชนเป็นอย่างไรบ้างเมื่อคะแนน 10.12 (72) – 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) – 8.4 (52)\"",
    "question_en": "what is the venue where the scores are 15.13 (103) – 8.4 (52)?",
    "question_th": "สนามไหนมีคะแนน 15.13 (103) – 8.4 (52)?",
    "context": "CREATE TABLE table_1139835_1 (venue VARCHAR, scores VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_1139835_1 WHERE margin = 4",
    "question_en": "what is the venue where the margin is 4?",
    "question_th": "สถานที่ที่ระยะขอบคือ 4 คือที่ไหน?",
    "context": "CREATE TABLE table_1139835_1 (venue VARCHAR, margin VARCHAR)"
  },
  {
    "answer": "SELECT crowd FROM table_1139835_1 WHERE grand_finalist = \"South Melbourne\"",
    "question_en": "what is the crowd when the grand finalist was south melbourne?",
    "question_th": "ฝูงชนคือใครเมื่อผู้เข้ารอบสุดท้ายคือเซาท์เมลเบิร์น?",
    "context": "CREATE TABLE table_1139835_1 (crowd VARCHAR, grand_finalist VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_1140067_2 WHERE race = \"Monaco Grand Prix\"",
    "question_en": "What was the date for monaco grand prix?",
    "question_th": "โมนาโก กรังด์ปรีซ์ วันที่เท่าไร?",
    "context": "CREATE TABLE table_1140067_2 (date VARCHAR, race VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_1140067_2 WHERE pole_position = \"Alain Prost\"",
    "question_en": "What was the date for the pole position of alain prost?",
    "question_th": "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_en": "What is the race winer of the portuguese grand prix?",
    "question_th": "ผู้ชนะการแข่งขันรายการโปรตุเกสกรังด์ปรีซ์คืออะไร?",
    "context": "CREATE TABLE table_1140067_2 (race VARCHAR)"
  },
  {
    "answer": "SELECT race AS Winner FROM table_1140074_2 WHERE date = \"12 June\"",
    "question_en": "what's the race winner with date being 12 june",
    "question_th": "ผู้ชนะการแข่งขันคือวันที่ 12 มิถุนายน",
    "context": "CREATE TABLE table_1140074_2 (race VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_1140074_2 WHERE location = \"Hockenheimring\"",
    "question_en": "what's the constructor with location being hockenheimring",
    "question_th": "ตัวสร้างที่มีตำแหน่งเป็นฮอคเกนไฮม์ริงคืออะไร",
    "context": "CREATE TABLE table_1140074_2 (constructor VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT race AS Winner FROM table_1140074_2 WHERE location = \"Jacarepaguá\"",
    "question_en": "what's the race winner with location being jacarepaguá",
    "question_th": "ผู้ชนะการแข่งขันโดยสถานที่คือ Jacarepaguá คือใคร",
    "context": "CREATE TABLE table_1140074_2 (race VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(race) AS Winner FROM table_1140074_2 WHERE rnd = 10",
    "question_en": "what's the total number of race winner with rnd being 10",
    "question_th": "ผู้ชนะการแข่งขันทั้งหมดจำนวน 10 คนเป็นเท่าใด",
    "context": "CREATE TABLE table_1140074_2 (race VARCHAR, rnd VARCHAR)"
  },
  {
    "answer": "SELECT pole_position FROM table_1140074_2 WHERE location = \"Hockenheimring\"",
    "question_en": "what's the pole position with location being hockenheimring",
    "question_th": "ตำแหน่งโพลโพสิชันคือตำแหน่งฮอคเกนไฮม์ริงคืออะไร",
    "context": "CREATE TABLE table_1140074_2 (pole_position VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT report FROM table_1140074_2 WHERE rnd = 4",
    "question_en": "what's the report with rnd being 4",
    "question_th": "รายงานที่ rnd เป็น 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_en": "What venue has an attendance of 30824 at Essendon in 1984?",
    "question_th": "สถานที่ใดมีผู้เข้าร่วม 30,824 คนที่ Essendon ในปี 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_en": "What other venue was a runner up to Hawthorn?",
    "question_th": "มีสถานที่อื่นใดอีกบ้างที่เป็นรองแชมป์ฮอว์ธอร์น?",
    "context": "CREATE TABLE table_1139835_9 (venue VARCHAR, runner_up VARCHAR)"
  },
  {
    "answer": "SELECT premiership FROM table_1139835_9 WHERE runner_up = \"Geelong\"",
    "question_en": "What is the other premiership when the runner up wis Geelong?",
    "question_th": "พรีเมียร์อีกสมัยจะเป็นอย่างไรเมื่อรองชนะเลิศ วิส จีลอง?",
    "context": "CREATE TABLE table_1139835_9 (premiership VARCHAR, runner_up VARCHAR)"
  },
  {
    "answer": "SELECT runner_up FROM table_1139835_9 WHERE score = \"9.12 (66) – 5.6 (36)\"",
    "question_en": "Who are all the runner ups when the score is 9.12 (66) – 5.6 (36)?",
    "question_th": "รองชนะเลิศทั้งหมดเมื่อสกอร์ 9.12 (66) – 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_en": "Who had the fastest lap in the race where Patrick Tambay was on the pole?",
    "question_th": "ใครมีรอบเร็วที่สุดในการแข่งขันที่ Patrick Tambay อยู่บนเสา?",
    "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ürburgring\"",
    "question_en": "What race had Nelson Piquet on the pole and was in Nürburgring?",
    "question_th": "เนลสัน ปิเกต์ อยู่บนเสาและอยู่ในเนือร์บูร์กริงเป็นเชื้อชาติใด",
    "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_en": "How many rounds did Patrick Tambay record the fastest lap?",
    "question_th": "Patrick Tambay บันทึกรอบที่เร็วที่สุดได้กี่รอบ?",
    "context": "CREATE TABLE table_1140073_2 (rnd VARCHAR, fastest_lap VARCHAR)"
  },
  {
    "answer": "SELECT race FROM table_1140073_2 WHERE location = \"Kyalami\"",
    "question_en": "Which race is located in kyalami?",
    "question_th": "เผ่าพันธุ์ใดอยู่ในกยาลามิ?",
    "context": "CREATE TABLE table_1140073_2 (race VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT fastest_lap FROM table_1140077_2 WHERE pole_position = \"Gilles Villeneuve\"",
    "question_en": "What is the fastest lap with pole position of gilles villeneuve?",
    "question_th": "อะไรคือเวลาต่อรอบที่เร็วที่สุดของ 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_en": "Who did the fastest lap in the dutch grand prix?",
    "question_th": "ใครทำรอบเร็วที่สุดในการแข่งขัน 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_en": "What is the constructor for 9 May?",
    "question_th": "ตัวสร้างสำหรับ 9 พฤษภาคมคืออะไร?",
    "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_en": "What is the pole position for the race with the fastest lap by Nelson Piquet and the constructor is Ferrari?",
    "question_th": "ตำแหน่งโพลโพซิชั่นของการแข่งขันที่มีรอบเร็วที่สุดโดย Nelson Piquet และผู้ก่อสร้างคือ 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_en": "What is the report listed for the race in San Marino Grand Prix?",
    "question_th": "รายงานที่ระบุไว้สำหรับการแข่งขันใน 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_en": "Who was the constructor in the location Monza?",
    "question_th": "ใครคือผู้สร้างในตำแหน่ง Monza?",
    "context": "CREATE TABLE table_1140076_2 (constructor VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT report FROM table_1140080_2 WHERE location = \"Österreichring\"",
    "question_en": "what's the report with location  österreichring",
    "question_th": "รายงานเกี่ยวกับตำแหน่งที่ österreichring คืออะไร",
    "context": "CREATE TABLE table_1140080_2 (report VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT report FROM table_1140080_2 WHERE race = \"Argentine Grand Prix\"",
    "question_en": "what's the report with race argentine grand prix",
    "question_th": "รายงานเกี่ยวกับ Race Argentina 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_en": "what's the minimum rnd with race  italian grand prix",
    "question_th": "ราคาขั้นต่ำของ Race 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_en": "what's the total number of report with date  29 april",
    "question_th": "วันที่ 29 เมษายน มีรายงานรวมจำนวนเท่าไร",
    "context": "CREATE TABLE table_1140080_2 (report VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT race AS Winner FROM table_1140080_2 WHERE constructor = \"Renault\"",
    "question_en": "what's the race winner with constructor  renault",
    "question_th": "ผู้ชนะการแข่งขันที่มีคอนสตรัคเตอร์เรโนลต์คือใคร",
    "context": "CREATE TABLE table_1140080_2 (race VARCHAR, constructor VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_1140080_2 WHERE rnd = 1",
    "question_en": "what's the date with rnd  1",
    "question_th": "rnd 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_en": "How many days is the Monaco Grand Prix?",
    "question_th": "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_en": "How many rounds were won with James Hunt as pole position and John Watson as  fastest lap?",
    "question_th": "ชนะไปกี่รอบโดย James Hunt ในตำแหน่งโพลและ John Watson เป็นรอบที่เร็วที่สุด",
    "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_en": "The Dijon-prenois had how many fastest laps?",
    "question_th": "Dijon-prenois มีรอบที่เร็วที่สุดกี่รอบ?",
    "context": "CREATE TABLE table_1140083_2 (fastest_lap VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_1140083_2 WHERE rnd = 15",
    "question_en": "What was the constructor for round 15?",
    "question_th": "ตัวสร้างสำหรับรอบ 15 คืออะไร?",
    "context": "CREATE TABLE table_1140083_2 (constructor VARCHAR, rnd VARCHAR)"
  },
  {
    "answer": "SELECT winning_driver FROM table_1140088_6 WHERE circuit = \"Brands Hatch\"",
    "question_en": "Who won the Brands Hatch circuit?",
    "question_th": "ใครเป็นผู้ชนะการแข่งขัน Brands Hatch",
    "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_en": "Who constructed the I Italian Republic Grand Prix?",
    "question_th": "ใครเป็นคนสร้าง 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_en": "What race was held at Oulton Park?",
    "question_th": "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_en": "Did the I Brazilian Grand Prix have a report?",
    "question_th": "I Brazilian Grand Prix มีรายงานหรือไม่?",
    "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_en": "what is the race where the pole position is niki lauda and the date is 27 april?",
    "question_th": "แข่งวันไหนตำแหน่งโพลโพซิชั่นคือนิกิ เลาดา และวันที่ 27 เมษายน?",
    "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_en": "what is the date where the constructor is ferrari and the location is anderstorp?",
    "question_th": "วันที่เท่าไหร่ที่ตัวสร้างคือเฟอร์รารีและตำแหน่งคือแอนเดอร์สตอร์ป?",
    "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_en": "how many times is the pole position niki lauda and the race is monaco grand prix?",
    "question_th": "กี่ครั้งแล้วที่ตำแหน่งโพล นิกิ เลาดา และการแข่งขันคือ โมนาโก กรังด์ปรีซ์?",
    "context": "CREATE TABLE table_1140085_2 (rnd VARCHAR, pole_position VARCHAR, race VARCHAR)"
  },
  {
    "answer": "SELECT report FROM table_1140085_2 WHERE location = \"Kyalami\"",
    "question_en": "what is the report where the location is kyalami?",
    "question_th": "มีรายงานว่าที่ตั้งของคยาลามีอยู่ที่ไหน?",
    "context": "CREATE TABLE table_1140085_2 (report VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT pole_position FROM table_1140085_2 WHERE rnd = 3",
    "question_en": "who is the pole position for the rnd 3",
    "question_th": "ซึ่งเป็นตำแหน่งโพลโพซิชั่นอันดับที่ 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_en": "what is the race where the fastest lap is by jean-pierre jarier?",
    "question_th": "การแข่งขันที่รอบเร็วที่สุดคือของ 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_en": "What circuit did Clay Regazzoni win?",
    "question_th": "Clay Regazzoni ชนะการแข่งขันในสนามใด",
    "context": "CREATE TABLE table_1140090_6 (circuit VARCHAR, winning_driver VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_1140090_6 WHERE winning_driver = \"Chris Amon\"",
    "question_en": "What was the date when Chris Amon won?",
    "question_th": "คริส อมร ชนะวันที่เท่าไหร่?",
    "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_en": "What circuit is the Vi Rhein-Pokalrennen race in?",
    "question_th": "การแข่งขัน Vi Rhein-Pokalrennen อยู่ในสนามใด?",
    "context": "CREATE TABLE table_1140090_6 (circuit VARCHAR, race_name VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_1140103_6 WHERE _number = 13",
    "question_en": "What date is listed at place 13",
    "question_th": "วันที่ใดที่ระบุไว้ ณ สถานที่ 13",
    "context": "CREATE TABLE table_1140103_6 (date VARCHAR, _number VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_1140103_6 WHERE circuit = \"Solitudering\"",
    "question_en": "What date has a solitudering circuit",
    "question_th": "วันไหนมีวงจรโดดเดี่ยว",
    "context": "CREATE TABLE table_1140103_6 (date VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(date) FROM table_1140103_6 WHERE circuit = \"Silverstone\"",
    "question_en": "How many dates have silverstone circuit",
    "question_th": "วงจรซิลเวอร์สโตนมีกี่วัน",
    "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_en": "How many constructors are listed for the XVI BRDC international trophy race",
    "question_th": "มีผู้สร้างกี่รายที่อยู่ในรายการสำหรับการแข่งขันถ้วยรางวัลนานาชาติ XVI BRDC",
    "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_en": "What is the name of the circuit in which the race name is ii danish grand prix?",
    "question_th": "สนามแข่งรถที่ใช้ชื่อการแข่งขันว่า 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_en": "What is te name of the constructors dated 26 march?",
    "question_th": "ผู้สร้างชื่ออะไร ลงวันที่ 26 มีนาคม?",
    "context": "CREATE TABLE table_1140105_6 (constructor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(circuit) FROM table_1140105_6 WHERE date = \"22 April\"",
    "question_en": "What is the total amount of circuts dated 22 april?",
    "question_th": "วงจรรวมวันที่ 22 เมษายน มีจำนวนเท่าไร?",
    "context": "CREATE TABLE table_1140105_6 (circuit VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_1140105_6 WHERE circuit = \"Zeltweg Airfield\"",
    "question_en": "what is the name of the constructor that has the circuit zeltweg airfield?",
    "question_th": "ชื่อของคอนสตรัคเตอร์ที่มีสนามบินเซอร์กิตเซลทเวกคืออะไร?",
    "context": "CREATE TABLE table_1140105_6 (constructor VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT winning_driver FROM table_1140105_6 WHERE circuit = \"Posillipo\"",
    "question_en": "What is the name of the winning driver where the circuit name is posillipo?",
    "question_th": "นักแข่งที่ชนะชื่อสนามว่าอะไร โปซิลลิโป?",
    "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_en": "What is the name of the circuit where the race xi Syracuse grand prix was held?",
    "question_th": "สนามแข่งรถ xi Syracuse grand prix ชื่อว่าอะไร?",
    "context": "CREATE TABLE table_1140105_6 (circuit VARCHAR, race_name VARCHAR)"
  },
  {
    "answer": "SELECT report FROM table_1140111_5 WHERE circuit = \"Pau\"",
    "question_en": "What kind of report is for the Pau circuit?",
    "question_th": "รายงานวงจรโปคืออะไร?",
    "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_en": "How many different kinds of reports are there for races that Juan Manuel Fangio won?",
    "question_th": "มีรายงานประเภทต่างๆ กี่ประเภทสำหรับการแข่งขันที่ Juan Manuel Fangio ชนะ",
    "context": "CREATE TABLE table_1140111_5 (report VARCHAR, winning_driver VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_1140111_5 WHERE circuit = \"Syracuse\"",
    "question_en": "Who constructed the Syracuse circuit?",
    "question_th": "ใครเป็นผู้สร้างวงจรซีราคิวส์",
    "context": "CREATE TABLE table_1140111_5 (constructor VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT race_name FROM table_1140116_5 WHERE circuit = \"Modena\"",
    "question_en": "What is the name of the race in the Modena circuit?",
    "question_th": "การแข่งขันในโมเดน่าเซอร์กิตชื่ออะไร?",
    "context": "CREATE TABLE table_1140116_5 (race_name VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT race_name FROM table_1140116_5 WHERE circuit = \"Monza\"",
    "question_en": "What is the race name in the Monza circuit?",
    "question_th": "ชื่อการแข่งขันในสนามมอนซ่าคืออะไร?",
    "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_en": "When does V Madgwick Cup take place?",
    "question_th": "V Madgwick Cup จัดขึ้นเมื่อไหร่?",
    "context": "CREATE TABLE table_1140116_5 (date VARCHAR, race_name VARCHAR)"
  },
  {
    "answer": "SELECT winning_driver FROM table_1140116_5 WHERE race_name = \"XIV Eläintarhanajot\"",
    "question_en": "Which driver won the race xiv eläintarhanajot?",
    "question_th": "นักแข่งคนไหนที่ชนะการแข่งขัน xiv eläintarhanajot?",
    "context": "CREATE TABLE table_1140116_5 (winning_driver VARCHAR, race_name VARCHAR)"
  },
  {
    "answer": "SELECT winning_driver FROM table_1140116_5 WHERE circuit = \"Modena\"",
    "question_en": "Who won the Modena circuit?",
    "question_th": "ใครเป็นผู้ชนะสนามโมเดน่า?",
    "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_en": "How many constructors won the III Redex Trophy?",
    "question_th": "มีคอนสตรัคเตอร์กี่คนที่ได้รับรางวัล 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_en": "What was the report of Mike Hawthorn's winning race?",
    "question_th": "รายงานการแข่งขันที่ชนะของ Mike Hawthorn คืออะไร?",
    "context": "CREATE TABLE table_1140113_5 (report VARCHAR, winning_driver VARCHAR)"
  },
  {
    "answer": "SELECT race_name FROM table_1140113_5 WHERE circuit = \"Bordeaux\"",
    "question_en": "What was the name of the race in Bordeaux?",
    "question_th": "เชื้อชาติในบอร์กโดซ์ชื่ออะไร",
    "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_en": "What is the report for the race name V Ulster Trophy?",
    "question_th": "รายงานชื่อการแข่งขัน 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_en": "What is the constructor for the Silverstone circuit?",
    "question_th": "ตัวสร้างวงจรซิลเวอร์สโตนคืออะไร?",
    "context": "CREATE TABLE table_1140117_5 (constructor VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT report FROM table_1140117_5 WHERE circuit = \"Silverstone\"",
    "question_en": "What's the report for the Silverstone circuit?",
    "question_th": "รายงานของวงจร Silverstone คืออะไร?",
    "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_en": "What's the report for the race name, XIII Grand Prix de l'Albigeois?",
    "question_th": "รายงานชื่อการแข่งขัน 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_en": "Which date did the race name XII Pau Grand Prix take place on?",
    "question_th": "ชื่อการแข่งขัน XII Pau Grand Prix จัดขึ้นในวันที่ใด",
    "context": "CREATE TABLE table_1140117_5 (date VARCHAR, race_name VARCHAR)"
  },
  {
    "answer": "SELECT winning_driver FROM table_1140117_5 WHERE circuit = \"Goodwood\"",
    "question_en": "Who was the winning driver for the goodwood circuit?",
    "question_th": "ใครคือนักแข่งที่ชนะการแข่งขัน 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_en": "How many millions of U.S. viewers whatched episodes written by Krystal Houghton?",
    "question_th": "ผู้ชมในสหรัฐฯ จำนวนกี่ล้านคนเลือกตอนที่เขียนโดย 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_en": "How many titles were directed in series 79?",
    "question_th": "มีกี่เรื่องที่กำกับในซีรีส์ 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_en": "Who wrote an episode watched by 19.01 million US viewers?",
    "question_th": "ใครเป็นผู้เขียนตอนที่มีผู้ชม 19.01 ล้านคนในสหรัฐฯ",
    "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_en": "What are the titles of the episodes where Rodman Flender is the director?",
    "question_th": "ตอนที่ Rodman Flender เป็นผู้กำกับชื่ออะไร?",
    "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_en": "What is the original air date of the Jamie Babbit directed episode?",
    "question_th": "วันที่ออกอากาศดั้งเดิมของตอนที่กำกับโดย Jamie Babbit คือเมื่อใด",
    "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_en": "What is the original air date when there were 12.81 million u.s viewers?",
    "question_th": "ออกอากาศตอนแรกเมื่อไรที่มีคนดู us 12.81 ล้านคน?",
    "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_en": "When did Shelia Lawrence join the series?",
    "question_th": "Shelia Lawrence เข้าร่วมซีรีส์นี้เมื่อใด",
    "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_en": "Who was the director when there were 13.66 million u.s viewers?",
    "question_th": "ใครคือผู้กำกับในสมัยที่มีผู้ชมพวกเรา 13.66 ล้านคน?",
    "context": "CREATE TABLE table_11404452_1 (director VARCHAR, us_viewers__millions_ VARCHAR)"
  },
  {
    "answer": "SELECT pct__percentage FROM table_1143966_1 WHERE won = 25",
    "question_en": "Name the percentage where the amount won was 25",
    "question_th": "ตั้งชื่อเปอร์เซ็นต์ที่จำนวนเงินที่ชนะคือ 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_en": "How many games were won with 2nd oha was standing and there were 62 games?",
    "question_th": "ชนะไปกี่เกมโดยที่ 2 โอฮายืนและมี 62 เกม?",
    "context": "CREATE TABLE table_1143966_1 (won VARCHAR, standing VARCHAR, games VARCHAR)"
  },
  {
    "answer": "SELECT liscumb FROM table_11447995_2 WHERE gauthier = \"34\"",
    "question_en": "What is the Liscumb when Gauthier is 34?",
    "question_th": "Liscumb คืออะไรเมื่อ Gauthier อายุ 34 ปี?",
    "context": "CREATE TABLE table_11447995_2 (liscumb VARCHAR, gauthier VARCHAR)"
  },
  {
    "answer": "SELECT bello FROM table_11447995_2 WHERE ben_tahir = \"296\"",
    "question_en": "What is the Bello when Ben-Tahir is 296?",
    "question_th": "Bello คืออะไรเมื่อ Ben-Tahir อายุ 296?",
    "context": "CREATE TABLE table_11447995_2 (bello VARCHAR, ben_tahir VARCHAR)"
  },
  {
    "answer": "SELECT ben_tahir FROM table_11447995_2 WHERE bello = \"51\"",
    "question_en": "What is Ben-Tahir when Bello is 51?",
    "question_th": "Ben-Tahir คืออะไรเมื่อ Bello อายุ 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_en": "What is Haydon when Larter is 11 and Libweshya is 4?",
    "question_th": "Haydon คืออะไรเมื่อ Larter อายุ 11 ปีและ Libwesya อายุ 4 ขวบ",
    "context": "CREATE TABLE table_11447995_2 (haydon VARCHAR, larter VARCHAR, libweshya VARCHAR)"
  },
  {
    "answer": "SELECT liscumb FROM table_11447995_2 WHERE haydon = \"1632\"",
    "question_en": "What is Liscumb when Haydon is 1632?",
    "question_th": "Liscumb คืออะไรเมื่อ Haydon อายุ 1632?",
    "context": "CREATE TABLE table_11447995_2 (liscumb VARCHAR, haydon VARCHAR)"
  },
  {
    "answer": "SELECT doucet FROM table_11447995_2 WHERE lawrance = \"36\"",
    "question_en": "What is Doucet when Lawrance is 36?",
    "question_th": "Doucet คืออะไรเมื่อ Lawrance อายุ 36?",
    "context": "CREATE TABLE table_11447995_2 (doucet VARCHAR, lawrance VARCHAR)"
  },
  {
    "answer": "SELECT tv FROM table_11449590_2 WHERE date = \"December 7, 1986\"",
    "question_en": "Which tv had the date december 7, 1986?",
    "question_th": "ทีวีเครื่องไหนมีวันที่ 7 ธันวาคม 2529?",
    "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_en": "Which kickoff has the opponent at new orleans saints?",
    "question_th": "คิกออฟใดมีคู่ต่อสู้ที่ 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_en": "How many houses are green?",
    "question_th": "มีบ้านกี่หลังที่มีสีเขียว?",
    "context": "CREATE TABLE table_11464746_1 (house_name VARCHAR, colours VARCHAR)"
  },
  {
    "answer": "SELECT founded FROM table_11464746_1 WHERE house_name = \"Gongola\"",
    "question_en": "What year was the house named gongola made?",
    "question_th": "บ้านชื่อกอนโกลาสร้างปีไหน?",
    "context": "CREATE TABLE table_11464746_1 (founded VARCHAR, house_name VARCHAR)"
  },
  {
    "answer": "SELECT house_name FROM table_11464746_1 WHERE colours = \"Green\"",
    "question_en": "What is the name of the green house?",
    "question_th": "บ้านสีเขียวชื่ออะไร?",
    "context": "CREATE TABLE table_11464746_1 (house_name VARCHAR, colours VARCHAR)"
  },
  {
    "answer": "SELECT composition FROM table_11464746_1 WHERE colours = \"Green\"",
    "question_en": "What is the green house made of?",
    "question_th": "บ้านสีเขียวทำมาจากอะไร?",
    "context": "CREATE TABLE table_11464746_1 (composition VARCHAR, colours VARCHAR)"
  },
  {
    "answer": "SELECT composition FROM table_11464746_1 WHERE house_name = \"Benue\"",
    "question_en": "What is the benue house made of?",
    "question_th": "บ้านเบนูทำมาจากอะไร?",
    "context": "CREATE TABLE table_11464746_1 (composition VARCHAR, house_name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(week) FROM table_11465521_2 WHERE record = \"3-6\"",
    "question_en": "In which week was the game against a team with a record of 3-6 played?",
    "question_th": "เกมกับทีมที่มีสถิติ 3-6 เล่นในสัปดาห์ใด?",
    "context": "CREATE TABLE table_11465521_2 (week VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT tv FROM table_11465521_2 WHERE opponent = \"Minnesota Vikings\"",
    "question_en": "Which channel had the game against the Minnesota Vikings?",
    "question_th": "ช่องใดที่เล่นเกมกับ 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_en": "How many opponents were there at the game with 64,087 people in attendance?",
    "question_th": "มีคู่ต่อสู้กี่คนในเกมที่มีผู้เข้าร่วม 64,087 คน?",
    "context": "CREATE TABLE table_11465521_2 (opponent VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT game_site FROM table_11452830_2 WHERE record = \"1-3\"",
    "question_en": "Where was the game played when the team's record was 1-3? ",
    "question_th": " เกมนี้เล่นที่ไหนเมื่อสถิติของทีมเป็น 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_en": "How many times was there a kickoff in the September 4, 1988 game? ",
    "question_th": " มีการคิกออฟในเกมวันที่ 4 กันยายน 1988 กี่ครั้ง?",
    "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_en": "How many crowds watched the game where the record was 1-3? ",
    "question_th": " มีผู้ชมกี่คนที่ดูเกมที่มีสถิติ 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_en": "What year finished with Daniel Zueras as the runner-up?",
    "question_th": "แดเนียล ซูเอราส รองแชมป์จบปีไหน?",
    "context": "CREATE TABLE table_1149495_1 (year VARCHAR, runner_up VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(host) FROM table_1149495_1 WHERE fourth_place = \"Chenoa\"",
    "question_en": "How many people hosted the show in the year when Chenoa  ended up in fourth place?",
    "question_th": "ในปีที่ Chenoa จบอันดับที่ 4 มีพิธีกรกี่คน?",
    "context": "CREATE TABLE table_1149495_1 (host VARCHAR, fourth_place VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(fourth_place) FROM table_1149495_1 WHERE year = \"2003\"",
    "question_en": "How many fourth places were there in 2003?",
    "question_th": "ในปี 2546 มีอันดับที่สี่กี่แห่ง?",
    "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·m ( lbf·ft ) @ 4,800\"",
    "question_en": "What is the engine type when the max torque at rpm is n·m ( lbf·ft ) @ 4,800 Answers:?",
    "question_th": "เครื่องยนต์จะเป็นประเภทไหนเมื่อแรงบิดสูงสุดที่รอบต่อนาทีอยู่ที่ n·m ( lbf·ft ) @ 4,800 คำตอบ :?",
    "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_en": "What is the engine configuration $notes 0-100km/h for the engine type b5244 t2?",
    "question_th": "การกำหนดค่าเครื่องยนต์ $notes 0-100 กม./ชม. สำหรับเครื่องยนต์ประเภท 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_en": "What is the engine displacement for the engine type b5254 t?",
    "question_th": "เครื่องยนต์ประเภท 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_en": "How many have are model 2.4 awd?",
    "question_th": "รุ่น 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_en": "How many engine b5204 t3?",
    "question_th": "เครื่อง 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_en": "How many engine b5234 t3?",
    "question_th": "เครื่อง 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_en": "what's the comment with model name being 2.4 (2001-2007)",
    "question_th": "ความคิดเห็นที่มีชื่อรุ่นเป็น 2.4 (2544-2550) คืออะไร",
    "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_en": "what's the model name with engine code being b5204 t5",
    "question_th": "ชื่อรุ่นอะไร รหัสเครื่องยนต์ 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_en": "what's the model name with engine code being b5254 t4",
    "question_th": "ชื่อรุ่นอะไร รหัสเครื่องยนต์ 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_en": "Name the torque of the engine is d5244 t5",
    "question_th": "ชื่อแรงบิดของเครื่องยนต์คือ 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_en": "What is the model of the engine d5244 t?",
    "question_th": "เครื่องยนต์ 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_en": "What is the model of the enginge d5252 t?",
    "question_th": "Enginge d5252t รุ่นอะไรครับ?",
    "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_en": "What is the model of the engine d5244 t7?",
    "question_th": "เครื่องยนต์ 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_en": "What is the position of number 47?",
    "question_th": "หมายเลข 47 อยู่ตำแหน่งอะไร?",
    "context": "CREATE TABLE table_11545282_11 (position VARCHAR, no VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_11545282_11 WHERE nationality = \"Turkey\"",
    "question_en": "Name the position of Turkey",
    "question_th": "ตั้งชื่อตำแหน่งของตุรกี",
    "context": "CREATE TABLE table_11545282_11 (position VARCHAR, nationality VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_11545282_11 WHERE no = \"51\"",
    "question_en": "Who is player number 51?",
    "question_th": "นักเตะหมายเลข 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_en": "What is the position for the years 1998-99",
    "question_th": "ตำแหน่งปี 2541-42 คืออะไร",
    "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_en": "How many positions are for creighton?",
    "question_th": "เครตันมีกี่ตำแหน่ง?",
    "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_en": "Which player is from Marshall and played 1974-75?",
    "question_th": "นักเตะคนไหนมาจากมาร์แชลและเล่นในปี 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_en": "Which country is the player that went to Oregon?",
    "question_th": "นักเตะที่ไปออริกอนคือประเทศไหนครับ?",
    "context": "CREATE TABLE table_11545282_12 (nationality VARCHAR, school_club_team VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_11545282_12 WHERE player = \"Jim Les\"",
    "question_en": "Which country is Jim Les from?",
    "question_th": "Jim Les มาจากประเทศใด",
    "context": "CREATE TABLE table_11545282_12 (nationality VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(no) FROM table_11545282_12 WHERE school_club_team = \"Minnesota\"",
    "question_en": "Which number is the player from Minnesota?",
    "question_th": "ผู้เล่นจากมินนิโซตาคือหมายเลขใด",
    "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_en": "Which player played for years 2000-02",
    "question_th": "ผู้เล่นคนไหนที่เล่นมาตั้งแต่ปี 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_en": "Which school is Kirk Snyder from?",
    "question_th": "เคิร์ก สไนเดอร์ มาจากโรงเรียนไหน?",
    "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_en": "What is the number for years 1985-88",
    "question_th": "ปี 2528-31 เบอร์อะไรคะ",
    "context": "CREATE TABLE table_11545282_18 (no INTEGER, years_for_jazz VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_11545282_18 WHERE player = \"John Starks\"",
    "question_en": "Which position does John Starks play?",
    "question_th": "จอห์น สตาร์คส์ เล่นตำแหน่งไหน?",
    "context": "CREATE TABLE table_11545282_18 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_11545282_18 WHERE player = \"DeShawn Stevenson\"",
    "question_en": "Which position does Deshawn Stevenson play?",
    "question_th": "เดชอน สตีเวนสันเล่นตำแหน่งไหน?",
    "context": "CREATE TABLE table_11545282_18 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_11545282_18 WHERE years_for_jazz = \"2004-05\"",
    "question_en": "Which player played 2004-05",
    "question_th": "ผู้เล่นคนไหนที่เล่นในฤดูกาล 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_en": "Name the nationality who played for 1987-89?",
    "question_th": "บอกชื่อสัญชาติที่เล่นปี 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_en": "Wht years did truck robinson play?",
    "question_th": "Truck Robinson เล่นกี่ปี?",
    "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_en": "What is the player that played 2004-05?",
    "question_th": "นักเตะคนไหนที่เล่นในฤดูกาล 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_en": "What is the number of players that played 1987-89?",
    "question_th": "ผู้เล่นที่เล่นในปี 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_en": "What is the nationality of bill robinzine?",
    "question_th": "บิล โรบินซีนมีสัญชาติอะไร?",
    "context": "CREATE TABLE table_11545282_17 (nationality VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_11545282_19 WHERE player = \"Kelly Tripucka\"",
    "question_en": "What is the nationality of the player named Kelly Tripucka?",
    "question_th": "นักเตะชื่อ เคลลี่ ไตรปุกก้า เป็นคนสัญชาติอะไร?",
    "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_en": "What years were the Iowa State school/club team have a jazz club?",
    "question_th": "ทีมโรงเรียน/สโมสรของรัฐไอโอวามีสโมสรแจ๊สในปีใดบ้าง",
    "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_en": "Which player wears the number 6?",
    "question_th": "นักเตะคนไหนสวมหมายเลข 6?",
    "context": "CREATE TABLE table_11545282_19 (player VARCHAR, no VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_11545282_19 WHERE position = \"Shooting guard\"",
    "question_en": "Which player's position is the shooting guard?",
    "question_th": "ตำแหน่งผู้เล่นคนไหนคือการ์ดยิงปืน?",
    "context": "CREATE TABLE table_11545282_19 (player VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT MIN(no) FROM table_11545282_19 WHERE school_club_team = \"BYU\"",
    "question_en": "What is the number of school/club teams held by BYU?",
    "question_th": "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_en": "What position did the player from maynard evans hs play",
    "question_th": "นักเตะเมย์นาร์ด อีแวนส์ เล่นตำแหน่งไหนครับ",
    "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_en": "What is the largest jersey number for the player from maryland",
    "question_th": "หมายเลขเสื้อที่ใหญ่ที่สุดสำหรับผู้เล่นจากแมรีแลนด์คือหมายเลขใด",
    "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_en": "Who are the players that played for the jazz from 1979-86",
    "question_th": "ใครคือผู้เล่นที่เล่นดนตรีแจ๊สระหว่างปี 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_en": "What years did number 54 play for the jazz",
    "question_th": "หมายเลข 54 เล่นดนตรีแจ๊สมากี่ปี",
    "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_en": "How many schools did darryl dawkins play for",
    "question_th": "ดาร์ริล ดอว์กินส์เล่นให้กับโรงเรียนกี่แห่ง",
    "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_en": "What is the nationality of the player who played during the years 1989-92; 1994-95?",
    "question_th": "นักเตะที่เล่นระหว่างปี 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_en": "How many schools are listed for the player who played the years for Jazz in 2010-11?",
    "question_th": "มีกี่โรงเรียนที่ระบุรายชื่อผู้เล่นที่เล่นให้กับทีมแจ๊สในปี 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_en": "How many players were names Howard Eisley?",
    "question_th": "มีผู้เล่นกี่คนที่ชื่อ Howard Eisley?",
    "context": "CREATE TABLE table_11545282_5 (no VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_11545282_5 WHERE player = \"Blue Edwards\"",
    "question_en": "What is the position for player Blue Edwards?",
    "question_th": "ตำแหน่งผู้เล่น บลู เอ็ดเวิร์ดส์ คืออะไร?",
    "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_en": "Which player played the years for Jazz in 1995-2000, 2004-05",
    "question_th": "ผู้เล่นคนไหนที่เล่นให้กับแจ๊ซในปี 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_en": "Which player is no. 53?",
    "question_th": "นักเตะคนไหนไม่ใช่ 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_en": "During which years did Jim Farmer play for Jazz?",
    "question_th": "Jim Farmer เล่นให้กับ 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_en": "How many players have played for Jazz during 2006-2007?",
    "question_th": "มีผู้เล่นกี่คนที่เล่นให้กับแจ๊ซระหว่างปี 2549-2550?",
    "context": "CREATE TABLE table_11545282_6 (player VARCHAR, years_for_jazz VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_11545282_6 WHERE player = \"Jim Farmer\"",
    "question_en": "What's Jim Farmer's nationality?",
    "question_th": "จิม ฟาร์มเมอร์มีสัญชาติอะไร",
    "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_en": "For how many players from UTEP can one calculate how many years they've played for Jazz?",
    "question_th": "มีผู้เล่นจาก UTEP กี่คนที่สามารถคำนวณได้ว่าพวกเขาเล่นให้กับแจ๊สมากี่ปี?",
    "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_en": "How many position does Jim Farmer play in?",
    "question_th": "จิม ฟาร์มเมอร์ เล่นได้กี่ตำแหน่ง?",
    "context": "CREATE TABLE table_11545282_6 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT school_club_team FROM table_11545282_7 WHERE no = 35",
    "question_en": "What school or club did number 35 play for?",
    "question_th": "หมายเลข 35 เล่นให้กับโรงเรียนหรือสโมสรใด?",
    "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_en": "How many years did number 25 play for the Jazz?",
    "question_th": "หมายเลข 25 เล่นให้กับทีมแจ๊สมากี่ปีแล้ว?",
    "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_en": "How many years did Paul Griffin play for the Jazz?",
    "question_th": "Paul Griffin เล่นให้กับทีม 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_en": "What position did Lamar Green play?",
    "question_th": "ลามาร์ กรีน เล่นตำแหน่งอะไร?",
    "context": "CREATE TABLE table_11545282_7 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(no) FROM table_11545282_7 WHERE years_for_jazz = \"2010\"",
    "question_en": "How many players only played for the Jazz in only 2010?",
    "question_th": "มีผู้เล่นกี่คนที่เล่นให้กับทีมแจ๊สในปี 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_en": "What was the delivery date when s2 (lst) type, s2 (frigate) type, c1-m type was delivered?",
    "question_th": "วันที่จัดส่งคือเมื่อใดที่มีการส่งมอบประเภท s2 (lst), ประเภท s2 (เรือรบ), ประเภท c1-m?",
    "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_en": "When was the delevery date when there were 12 ways of delivery?",
    "question_th": "วันที่ส่งมอบมี 12 วิธีในการจัดส่งคือเมื่อใด?",
    "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_en": "What are the episode numbers where the episode features Jack & Locke?",
    "question_th": "หมายเลขตอนที่ตอนนี้มี 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_en": "What are the episode numbers of episodes featuring Hurley?",
    "question_th": "เฮอร์ลีย์มีตอนจำนวนกี่ตอน?",
    "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_en": "List the episode whose number in the series is 111.",
    "question_th": "รายชื่อตอนที่มีหมายเลขในชุดคือ 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_en": "What date got 9.82 million viewers?",
    "question_th": "มีผู้ชม 9.82 ล้านคน วันไหน?",
    "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_en": "What school took 3rd place in 2007?",
    "question_th": "โรงเรียนใดได้อันดับที่ 3 ในปี 2550",
    "context": "CREATE TABLE table_11577996_1 (year VARCHAR)"
  },
  {
    "answer": "SELECT 4 AS th_place FROM table_11577996_1 WHERE year = 2002",
    "question_en": "What school took 4th place in 2002?",
    "question_th": "โรงเรียนใดได้อันดับที่ 4 ในปี 2545?",
    "context": "CREATE TABLE table_11577996_1 (year VARCHAR)"
  },
  {
    "answer": "SELECT 4 AS th_place FROM table_11577996_1 WHERE year = 2001",
    "question_en": "What school took 4th place in 2001?",
    "question_th": "โรงเรียนใดได้อันดับที่ 4 ในปี 2544",
    "context": "CREATE TABLE table_11577996_1 (year VARCHAR)"
  },
  {
    "answer": "SELECT runner_s__up FROM table_11570261_2 WHERE margin_of_victory = \"11 strokes\"",
    "question_en": "Who were the runner(s)-up when Tiger won by 11 strokes?",
    "question_th": "ใครคือรองชนะเลิศเมื่อไทเกอร์ชนะไป 11 สโตรค?",
    "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_en": "What was the margin of victory over Justin Leonard, phillip price?",
    "question_th": "อะไรคือส่วนต่างของชัยชนะเหนือจัสติน ลีโอนาร์ด ฟิลลิป ไพรซ์?",
    "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_en": "There were 68 worcs f-c matches played on Chester Road North Ground.",
    "question_th": "มีการแข่งขัน 68 นัดที่เล่นบน 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_en": "How many times did Tiger get second in the year where there were 11 cuts?",
    "question_th": "ไทเกอร์ได้อันดับสองกี่ครั้งในปีที่มีการตัด 11 ครั้ง?",
    "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_en": "Which locomotives 12\" x 17\" are both ex-industrial and built by Manning Wardle?",
    "question_th": "ตู้รถไฟขนาด 12\" x 17\" ใดที่เคยเป็นอดีตอุตสาหกรรมและสร้างโดย 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_en": "What's the size of the cylinders built by Longbottom, Barnsley?",
    "question_th": "กระบอกสูบที่สร้างโดย 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_en": "Who is the builder of the locomotives with wheel arrangement of 2-4-2 T?",
    "question_th": "ใครคือผู้สร้างตู้รถไฟที่มีการจัดล้อแบบ 2-4-2 ตัน?",
    "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_en": "On what date did Hudswell Clarke build the locomotive with 0-6-0 ST wheel arrangements?",
    "question_th": "Hudswell Clarke สร้างหัวรถจักรด้วยการจัดล้อ 0-6-0 ST ในวันที่ใด",
    "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_en": "What amount of times is the name, Bok De Korver listed?",
    "question_th": "ชื่อ Bok De Korver ระบุกี่ครั้ง?",
    "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_en": "What is the total number of goals on the debut date of 14-04-1907?",
    "question_th": "จำนวนประตูทั้งหมดในวันที่เปิดตัววันที่ 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_en": "What is the date of debut that has a date of birth listed at 24-10-1887?",
    "question_th": "วันที่เดบิวต์คือวันที่เท่าไหร่ซึ่งระบุวันเกิดไว้ที่ 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_en": "What is the name of person that scored 10 goals?",
    "question_th": "คนที่ยิงได้ 10 ประตูชื่ออะไร",
    "context": "CREATE TABLE table_11585313_1 (name VARCHAR, number_of_goals VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_11585313_1 WHERE date_of_death† = \"01-04-1954\"",
    "question_en": "What is the name of the person whose date of death is 01-04-1954?",
    "question_th": "บุคคลที่เสียชีวิตคือ 01-04-2497 ชื่ออะไร?",
    "context": "CREATE TABLE table_11585313_1 (name VARCHAR, date_of_death† VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(number_of_caps) FROM table_11585313_1 WHERE name = \"Hans Blume\"",
    "question_en": "What is the toatl number of caps where the name is Hans Blume?",
    "question_th": "จำนวนตัวพิมพ์ใหญ่ที่ชื่อ Hans Blume คือเท่าไร?",
    "context": "CREATE TABLE table_11585313_1 (number_of_caps VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT date_of_death† FROM table_11585313_2 WHERE name = \"Henk Hordijk\"",
    "question_en": "What was the date of Henk Hordijk's death?",
    "question_th": "การเสียชีวิตของ Henk Hordijk คือวันที่เท่าไร?",
    "context": "CREATE TABLE table_11585313_2 (date_of_death† VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT frequency FROM table_11602313_4 WHERE model_number = \"Pentium Dual-Core T3200\"",
    "question_en": "What frequency is the pentium dual-core t3200?",
    "question_th": "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_en": "What is the frequency of the model with part number lf80537gf0411m?",
    "question_th": "ความถี่ของรุ่นที่มีหมายเลขชิ้นส่วน 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_en": "What is the FSB of the model with part number lf80537gf0411m?",
    "question_th": "FSB ของรุ่นที่มีหมายเลขชิ้นส่วน 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_en": "What is the FSB of the model with part number lf80537ge0251mn?",
    "question_th": "FSB ของรุ่นที่มีหมายเลขชิ้นส่วน 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_en": "What is the socket for the pentium dual-core t2410?",
    "question_th": "ซ็อกเก็ตสำหรับ 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_en": "What is the release date for the model with sspec number sla4h(m0)?",
    "question_th": "รุ่นที่มีหมายเลขสเป็ค 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_en": "How many different scores are there for the Verizon Classic?",
    "question_th": "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_en": "What was the score for the tournament in Michigan where the purse was smaller than 1813335.221493934?",
    "question_th": "คะแนนสำหรับทัวร์นาเมนต์ที่มิชิแกนซึ่งกระเป๋าเงินมีขนาดเล็กกว่า 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_en": "How many tournaments were held in Maryland?",
    "question_th": "มีการแข่งขันกี่ครั้งในรัฐแมริแลนด์?",
    "context": "CREATE TABLE table_11603006_1 (tournament VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(location) FROM table_11603006_1 WHERE score = \"207 (-10)\"",
    "question_en": "How many different locations have the score 207 (-10)?",
    "question_th": "มีกี่แห่งที่มีคะแนน 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_en": "What is the founding of parsu cimmarons?",
    "question_th": "ปาร์ซู ซิมมารอน ก่อตั้งอย่างไร?",
    "context": "CREATE TABLE table_11604804_5 (founded INTEGER, nickname VARCHAR)"
  },
  {
    "answer": "SELECT founded FROM table_11604804_5 WHERE color = \"Navy Blue\"",
    "question_en": "What was the founding of navy blue?",
    "question_th": "กองทัพเรือสีน้ำเงินมีรากฐานมาจากอะไร?",
    "context": "CREATE TABLE table_11604804_5 (founded VARCHAR, color VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(nickname) FROM table_11604804_5 WHERE founded = 1918",
    "question_en": "What was the number of nickname founded 1918?",
    "question_th": "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_en": "What was the number of location of nickname cbsua formerly known cssac?",
    "question_th": "ที่ตั้งของชื่อเล่น cbsua เดิมชื่อ cssac อยู่ที่ใด?",
    "context": "CREATE TABLE table_11604804_5 (location VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_11603267_1 WHERE location = \"Arizona\"",
    "question_en": "Name the tournament for arizona",
    "question_th": "ตั้งชื่อการแข่งขันสำหรับแอริโซนา",
    "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_en": "Name the state and federal when property taxes is 17,199,210",
    "question_th": "ตั้งชื่อรัฐและรัฐบาลกลางเมื่อภาษีทรัพย์สินคือ 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_en": "What is the local sources for property taxes of 11,631,227?",
    "question_th": "แหล่งที่มาในท้องถิ่นสำหรับภาษีทรัพย์สินจำนวน 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_en": "What is the number of local sources for state and federal 12,929,489",
    "question_th": "จำนวนแหล่งข้อมูลในท้องถิ่นสำหรับรัฐและรัฐบาลกลาง 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 = \"Плоцкая губерния\"",
    "question_en": "What seat does плоцкая губерния hold?",
    "question_th": "плоцкая губерния รองรับที่นั่งแบบใด?",
    "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_en": "Whose name in Polish holds the Lublin seat?",
    "question_th": "ชื่อใครในภาษาโปแลนด์ครองที่นั่งของลูบลิน?",
    "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_en": "What seat does Gubernia Warszawska hold?",
    "question_th": "Gubernia Warszawska มีที่นั่งแบบใด?",
    "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_en": "What population (in thousands) is Lublin's seat?",
    "question_th": "ที่นั่งของลูบลินมีประชากรจำนวนเท่าใด (เป็นพัน)",
    "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 = \"Плоцкая губерния\"",
    "question_en": "плоцкая губерния governs an area with what area (in thousand km 2)?",
    "question_th": "плоцкая губерния ปกครองพื้นที่กับพื้นที่ใด (ในพันกิโลเมตร 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_en": "What is the up/down at the venue that hosted 7 games?",
    "question_th": "ขึ้น/ลง ณ สนามที่จัดการแข่งขัน 7 เกมเป็นอย่างไร?",
    "context": "CREATE TABLE table_1161065_28 (up_down VARCHAR, hosted VARCHAR)"
  },
  {
    "answer": "SELECT last_year FROM table_1161065_28 WHERE venue = \"Manuka Oval\"",
    "question_en": "What was the attendance last year at Manuka Oval?",
    "question_th": "เมื่อปีที่แล้วที่ 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_en": "What was the lowest attendance figure at Football Park?",
    "question_th": "จำนวนผู้เข้าร่วมที่ 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_en": "What is the total of port adelaide",
    "question_th": "พอร์ตแอดิเลดทั้งหมดเป็นเท่าใด",
    "context": "CREATE TABLE table_1161065_27 (total INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(purse__) AS $__ FROM table_11621915_1 WHERE score = \"204 (-9)\"",
    "question_en": "what's the maximum purse( $ ) with score value of 204 (-9)",
    "question_th": "กระเป๋าเงินสูงสุด ( $ ) คือเท่าใด โดยมีค่าคะแนน 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_en": "what's the winner with purse( $ ) value of bigger than 964017.2297960471 and date value of may 28",
    "question_th": "ผู้ชนะที่มีมูลค่ากระเป๋าเงิน ($ ) มากกว่า 964017.2297960471 และมูลค่าวันที่ 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_en": "what's the winner with tournament value of kroger senior classic",
    "question_th": "ผู้ชนะที่มีมูลค่าทัวร์นาเมนต์ของโครเกอร์ซีเนียร์คลาสสิกคืออะไร",
    "context": "CREATE TABLE table_11621915_1 (winner VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_11621915_1 WHERE tournament = \"Ford Senior Players Championship\"",
    "question_en": "what's the date with tournament value of ford senior players championship",
    "question_th": "ราคาทัวร์นาเมนต์ของ 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_en": "what's the location with tournament value of quicksilver classic",
    "question_th": "ตำแหน่งที่มีมูลค่าทัวร์นาเมนต์ของ QuickSilver Classic คือที่ไหน",
    "context": "CREATE TABLE table_11621915_1 (location VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_11621915_1 WHERE date = \"Oct 1\"",
    "question_en": "what's the score with date  oct 1",
    "question_th": "คะแนนวันที่ 1 ต.ค. เป็นเท่าไหร่",
    "context": "CREATE TABLE table_11621915_1 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_11621799_1 WHERE tournament = \"Toshiba Senior Classic\"",
    "question_en": "What was the score for the Toshiba Senior Classic?",
    "question_th": "คะแนนของ 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_en": "Who was the winner when the score was 281 (-6)?",
    "question_th": "ใครเป็นผู้ชนะเมื่อคะแนนอยู่ที่ 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_en": "How many scores were at the Northville Long Island Classic?",
    "question_th": "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_en": " what's the tournament where winner is raymond floyd (1)",
    "question_th": " การแข่งขันรายการใดที่ผู้ชนะคือ 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_en": "what is the total number of purse( $ ) where winner is jimmy powell (2)",
    "question_th": "กระเป๋าเงินทั้งหมดจำนวนเท่าใด ($) โดยผู้ชนะคือจิมมี่ พาวเวลล์ (2)",
    "context": "CREATE TABLE table_11622255_1 (purse__ VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_11622255_1 WHERE location = \"Illinois\"",
    "question_en": " what's the date where location is illinois",
    "question_th": "วันที่เท่าไหร่ที่สถานที่อิลลินอยส์",
    "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_en": "what is the minimum purse( $ ) where tournament is ko olina senior invitational",
    "question_th": "กระเป๋าเงินขั้นต่ำคืออะไร ($) โดยที่ทัวร์นาเมนต์คือการเชิญอาวุโสของ ko olina",
    "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_en": " what's the location where tournament is raley's senior gold rush",
    "question_th": " สถานที่ซึ่งทัวร์นาเมนท์คือยุคตื่นทองรุ่นพี่ของราลีย์คือที่ไหน",
    "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_en": "what is the maximum 1st prize( $ ) where score is 193 (-17)",
    "question_th": "รางวัลที่ 1 สูงสุดคืออะไร ($ ) โดยคะแนนคือ 193 (-17)",
    "context": "CREATE TABLE table_11622255_1 (score VARCHAR)"
  },
  {
    "answer": "SELECT 1 AS st_prize__$__ FROM table_11622496_1 WHERE purse__$__ = 275000",
    "question_en": "How much was the prize money for the 275000 purse?",
    "question_th": "เงินรางวัลสำหรับกระเป๋าเงิน 275000 เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_11622496_1 (purse__$__ VARCHAR)"
  },
  {
    "answer": "SELECT 1 AS st_prize__$__ FROM table_11622496_1 WHERE location = \"Virginia\"",
    "question_en": "What is the prize money for Virginia?",
    "question_th": "เงินรางวัลสำหรับเวอร์จิเนียคือเท่าไร?",
    "context": "CREATE TABLE table_11622496_1 (location VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(tournament) FROM table_11622562_1 WHERE score = \"204 (-12)\"",
    "question_en": "How many tournaments ended with a score of 204 (-12)?",
    "question_th": "มีกี่ทัวร์นาเมนต์ที่จบลงด้วยคะแนน 204 (-12)?",
    "context": "CREATE TABLE table_11622562_1 (tournament VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_11622562_1 WHERE tournament = \"PaineWebber Invitational\"",
    "question_en": "What's the winner of the Painewebber Invitational tournament?",
    "question_th": "ผู้ชนะการแข่งขัน Painewebber Invitational คือใคร?",
    "context": "CREATE TABLE table_11622562_1 (winner VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_11622562_1 WHERE tournament = \"GTE Suncoast Classic\"",
    "question_en": "Where was the GTE Suncoast Classic tournament held?",
    "question_th": "การแข่งขัน GTE Suncoast Classic จัดขึ้นที่ไหน?",
    "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_en": "What was the minimal amount ($) of the 1st prize in the tournaments in New Mexico?",
    "question_th": "จำนวนเงินขั้นต่ำ ($) ของรางวัลที่ 1 ในการแข่งขันที่นิวเม็กซิโกคือเท่าใด",
    "context": "CREATE TABLE table_11622562_1 (location VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_11622829_1 WHERE score = \"203 (-13)\"",
    "question_en": "What are all the dates with a score of 203 (-13)?",
    "question_th": "คะแนน 203 (-13) คือวันไหน?",
    "context": "CREATE TABLE table_11622829_1 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_11622829_1 WHERE score = \"135 (-7)\"",
    "question_en": "For which tournaments was the score 135 (-7)?",
    "question_th": "การแข่งขันใดบ้างที่มีคะแนน 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_en": "How many locations logged a score of 206 (-7)?",
    "question_th": "มีสถานที่กี่แห่งที่มีคะแนน 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_en": "How many tournaments recorded a score of 206 (-7)?",
    "question_th": "มีกี่ทัวร์นาเมนท์ที่มีคะแนน 206 (-7)",
    "context": "CREATE TABLE table_11622840_1 (tournament VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_11622840_1 WHERE location = \"Rhode Island\"",
    "question_en": "Name all the tournaments that took place in Rhode Island.",
    "question_th": "ตั้งชื่อการแข่งขันทั้งหมดที่จัดขึ้นในโรดไอส์แลนด์",
    "context": "CREATE TABLE table_11622840_1 (tournament VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_11622840_1 WHERE score = \"208 (-8)\"",
    "question_en": "What is the state that hosted a tournament with the score of 208 (-8)?",
    "question_th": "รัฐใดเป็นเจ้าภาพจัดการแข่งขันด้วยคะแนน 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_en": "Where was the Fairfield Barnett classic tournament held?",
    "question_th": "การแข่งขันคลาสสิก Fairfield Barnett จัดขึ้นที่ไหน?",
    "context": "CREATE TABLE table_11622771_1 (location VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(purse__) AS $__ FROM table_11622771_1 WHERE date = \"Mar 16\"",
    "question_en": "How many purses were there for the  mar 16?",
    "question_th": "วันที่ 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_en": "When did the series number 23 air?",
    "question_th": "ซีรีส์หมายเลข 23 ออกอากาศเมื่อไหร่?",
    "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_en": "What was the airdate of 21 series number?",
    "question_th": "ซีรีส์ 21 ออกอากาศวันที่เท่าไร?",
    "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_en": "Who won the Suntree Seniors Classic?",
    "question_th": "ใครชนะการแข่งขัน สุนทรี ซีเนียร์ คลาสสิค?",
    "context": "CREATE TABLE table_11622924_1 (winner VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT purse__$__ FROM table_11622924_1 WHERE score = \"289 (9)\"",
    "question_en": "How much was the prize in the tournament where the winning score was 289 (9)?",
    "question_th": "รางวัลในการแข่งขันที่คะแนนชนะคือ 289 (9) เท่าไหร่?",
    "context": "CREATE TABLE table_11622924_1 (purse__$__ VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_11622924_1 WHERE score = \"204 (-6)\"",
    "question_en": "When was the tournament that was won with a score of 204 (-6) played?",
    "question_th": "การแข่งขันที่ชนะด้วยคะแนน 204 (-6) จัดขึ้นเมื่อใด?",
    "context": "CREATE TABLE table_11622924_1 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT MAX(season__number) FROM table_11630008_5 WHERE series__number = 61",
    "question_en": "What was the season number for the episode with the series number 61?",
    "question_th": "หมายเลขซีซันของตอนที่มีซีรีส์หมายเลข 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_en": "What was the title of the episode with the production code 311?",
    "question_th": "ชื่อเรื่องของตอนที่มีรหัสการผลิต 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_en": "Who directed the episode written by Lamont Ferrell?",
    "question_th": "ใครเป็นผู้กำกับตอนที่เขียนโดย Lamont Ferrell?",
    "context": "CREATE TABLE table_11630008_5 (directed_by VARCHAR, written_by VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_11636213_7 WHERE result = \"6–2, 4–6, 6–4\"",
    "question_en": "What date was the result 6–2, 4–6, 6–4?",
    "question_th": "ผลการแข่งขัน 6–2, 4–6, 6–4 เป็นวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_11636213_7 (date VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(partnering) FROM table_11636213_7 WHERE result = \"6–3, 6–2\"",
    "question_en": "How many matches had the result of 6–3, 6–2?",
    "question_th": "มีกี่นัดที่ผลการแข่งขัน 6–3, 6–2?",
    "context": "CREATE TABLE table_11636213_7 (partnering VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT director FROM table_11642945_1 WHERE original_air_date = \"10January2008\"",
    "question_en": "If the Original Air Date is 10January2008, what  directors released on that date?",
    "question_th": "ถ้าวันออกอากาศเดิมคือวันที่ 10 มกราคม 2551 วันนั้นผู้กำกับคนไหนจะออก?",
    "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_en": "The original air date of 29November2007 has what total no.?",
    "question_th": "ออกอากาศตอนแรกวันที่ 29 พฤศจิกายน 2550 มียอดรวมเท่าไร?",
    "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_en": "Margot Kidder had what director?",
    "question_th": "Margot Kidder มีผู้กำกับคนไหน?",
    "context": "CREATE TABLE table_11642945_1 (director VARCHAR, celebrity VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(celebrity) FROM table_11642945_1 WHERE original_air_date = \"18October2007\"",
    "question_en": "How many celebrities had an 18October2007 Original air Date?",
    "question_th": "มีคนดังกี่คนที่มีวันออกอากาศครั้งแรกในวันที่ 18 ตุลาคม 2550?",
    "context": "CREATE TABLE table_11642945_1 (celebrity VARCHAR, original_air_date VARCHAR)"
  },
  {
    "answer": "SELECT viewers FROM table_11642945_1 WHERE director = \"Matt Gallagher\"",
    "question_en": "Which viewers had Matt Gallagher as the director?",
    "question_th": "ผู้ชมคนไหนที่มี Matt Gallagher เป็นผู้กำกับ?",
    "context": "CREATE TABLE table_11642945_1 (viewers VARCHAR, director VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(series__number) FROM table_11630008_7 WHERE production_code = 503",
    "question_en": "What is the number of series with production code 503?",
    "question_th": "หมายเลขซีรีส์ที่มีรหัสการผลิต 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_en": "What is the title of production code 514?",
    "question_th": "ชื่อรหัสการผลิต 514 คืออะไร?",
    "context": "CREATE TABLE table_11630008_7 (title VARCHAR, production_code VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_11658094_1 WHERE institution = \"Barton College\"",
    "question_en": "What is the location of the institution barton college",
    "question_th": "ที่ตั้งของ วิทยาลัยบาร์ตัน อยู่ที่ไหน?",
    "context": "CREATE TABLE table_11658094_1 (location VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT institution FROM table_11658094_1 WHERE joined = \"1993\"",
    "question_en": " Which institutions joined in 1993",
    "question_th": " สถาบันใดเข้าร่วมในปี 2536",
    "context": "CREATE TABLE table_11658094_1 (institution VARCHAR, joined VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_11658094_1 WHERE joined = \"2008\"",
    "question_en": "what are the locations that  joined in 2008",
    "question_th": "สถานที่ใดบ้างที่เข้าร่วมในปี 2551",
    "context": "CREATE TABLE table_11658094_1 (location VARCHAR, joined VARCHAR)"
  },
  {
    "answer": "SELECT MIN(enrollment) FROM table_11658094_1 WHERE institution = \"Barton College\"",
    "question_en": "What is the minimum enrollment at barton college",
    "question_th": "การลงทะเบียนขั้นต่ำที่วิทยาลัยบาร์ตันคือเท่าใด",
    "context": "CREATE TABLE table_11658094_1 (enrollment INTEGER, institution VARCHAR)"
  },
  {
    "answer": "SELECT founded FROM table_11658094_1 WHERE institution = \"Erskine College\"",
    "question_en": "When was erskine college founded",
    "question_th": "วิทยาลัยเออร์สกินก่อตั้งขึ้นเมื่อใด",
    "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–$190,200\"",
    "question_en": "What is ithe range for married filing separately where head of household is $117,451–$190,200?",
    "question_th": "ช่วงใดสำหรับการยื่นขอจดทะเบียนสมรสแยกกัน โดยที่หัวหน้าครัวเรือนอยู่ที่ $117,451–$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– $33,950\"",
    "question_en": "What is the amount of marginal ordinary income tax rate for single in which the range is $8,351– $33,950?",
    "question_th": "จำนวนอัตราภาษีเงินได้ส่วนเพิ่มสำหรับคนโสดซึ่งมีช่วงอยู่ที่ $8,351– $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–$68,525\"",
    "question_en": "What is the range of married filing jointly or qualified widower in which married filing separately is $33,951–$68,525?",
    "question_th": "อะไรคือช่วงของการยื่นฟ้องสมรสร่วมกันหรือเป็นม่ายที่มีคุณสมบัติ ซึ่งการยื่นฟ้องแยกกันอยู่ที่ 33,951–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–$372,950\"",
    "question_en": "What is the range of the head of household whereas single is $171,551–$372,950?",
    "question_th": "หัวหน้าครัวเรือนจะมีช่วงใดในขณะที่โสดอยู่ที่ 171,551–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–$372,950\"",
    "question_en": "What is the amoun of marginal ordinary income tax rate where married filing jointly or qualified widow is $208,851–$372,950?",
    "question_th": "จำนวนภาษีเงินได้ส่วนเพิ่มในอัตราภาษีปกติที่การยื่นฟ้องร่วมกันหรือภรรยาม่ายที่มีคุณสมบัติเหมาะสมอยู่ที่ 208,851–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_en": " who is the coach where dudley tuckey medal is ben howlett",
    "question_th": " โค้ชที่เหรียญดัดลีย์ ทักกี้คือเบน ฮาวเล็ตต์",
    "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_en": "what is the total number of coach where captain is grant welsh and win/loss is 5-15",
    "question_th": "จำนวนโค้ชทั้งหมดที่กัปตันได้รับสิทธิ์เวลส์และชนะ/แพ้คือ 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_en": " who is the dudley tuckey medal where leading goalkicker is scott simister (46)",
    "question_th": " ใครคือเหรียญดัดลีย์ทัคกี้ โดยมีผู้รักษาประตูนำคือสกอตต์ ซิมิสเตอร์ (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_en": "what is the maximum season where leading goalkicker is scott simister (54)",
    "question_th": "ฤดูกาลสูงสุดที่ผู้รักษาประตูชั้นนำคือสก็อตต์ ซิมิสเตอร์ (54)",
    "context": "CREATE TABLE table_1165048_1 (season INTEGER, leading_goalkicker VARCHAR)"
  },
  {
    "answer": "SELECT win_loss FROM table_1165048_1 WHERE season = 2009",
    "question_en": "what are all the win/loss where season is 2009",
    "question_th": "แพ้/ชนะทั้งหมดในฤดูกาล 2009 คืออะไร",
    "context": "CREATE TABLE table_1165048_1 (win_loss VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT captain FROM table_1165048_1 WHERE coach = \"Geoff Miles\"",
    "question_en": " who is the captain where coach is geoff miles",
    "question_th": " ใครเป็นกัปตัน โดยมีโค้ชคือ เจฟฟ์ ไมล์ส",
    "context": "CREATE TABLE table_1165048_1 (captain VARCHAR, coach VARCHAR)"
  },
  {
    "answer": "SELECT disaster FROM table_11649123_1 WHERE year = \"2005-06\"",
    "question_en": "In 2005-06 what was the disaster?",
    "question_th": "ปี 2548-2549 ภัยพิบัติคืออะไร?",
    "context": "CREATE TABLE table_11649123_1 (disaster VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT area_km²__1998_ FROM table_11656578_2 WHERE no_of_communes = 51",
    "question_en": "What's the area of the voivodenship with 51 communes?",
    "question_th": "จังหวัดที่มี 51 คอมมิวนิสต์มีพื้นที่เท่าใด",
    "context": "CREATE TABLE table_11656578_2 (area_km²__1998_ VARCHAR, no_of_communes VARCHAR)"
  },
  {
    "answer": "SELECT area_km²__1998_ FROM table_11656578_2 WHERE abbreviation = \"kn\"",
    "question_en": "How big (in km2) is the voivodenship also known by the abbreviation KN?",
    "question_th": "วอยโวเดนชิพหรือที่รู้จักกันในชื่อย่อ KN มีขนาดใหญ่เพียงใด (ในหน่วย km2)",
    "context": "CREATE TABLE table_11656578_2 (area_km²__1998_ VARCHAR, abbreviation VARCHAR)"
  },
  {
    "answer": "SELECT population__1980_ FROM table_11656578_2 WHERE capital = \"Siedlce\"",
    "question_en": "How many people lived in the voivodenship whose capital is Siedlce in the year of 1980?",
    "question_th": "มีกี่คนที่อาศัยอยู่ในวอยโวเดนซึ่งมีเมืองหลวงคือ Siedlce ในปี 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_en": "How many different voivodenship have 747 900 citizes?",
    "question_th": "voivodenship ที่แตกต่างกันมีกี่ 747 900 พลเมือง?",
    "context": "CREATE TABLE table_11656578_2 (voivodeship VARCHAR, population__1980_ VARCHAR)"
  },
  {
    "answer": "SELECT MIN(left) FROM table_11658094_3 WHERE institution = \"Longwood University\"",
    "question_en": "What year did longwood university leave the conference?",
    "question_th": "มหาวิทยาลัย Longwood ออกจากการประชุมในปีใด",
    "context": "CREATE TABLE table_11658094_3 (left INTEGER, institution VARCHAR)"
  },
  {
    "answer": "SELECT left FROM table_11658094_3 WHERE founded = 1880",
    "question_en": "What year did a school leave that was founded in 1880?",
    "question_th": "โรงเรียนที่ก่อตั้งในปี พ.ศ. 2423 ลาออกในปีใด",
    "context": "CREATE TABLE table_11658094_3 (left VARCHAR, founded VARCHAR)"
  },
  {
    "answer": "SELECT nickname FROM table_11658094_3 WHERE enrollment = 2386",
    "question_en": "What is the nickname of the school with an enrollment of 2386?",
    "question_th": "ชื่อเล่นของโรงเรียนที่มีการลงทะเบียนเรียนคือ 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_en": "What year did the school from mars hill, north carolina join?",
    "question_th": "โรงเรียนจากมาร์สฮิลล์ รัฐนอร์ทแคโรไลนาเข้าร่วมในปีใด",
    "context": "CREATE TABLE table_11658094_3 (joined VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(left) FROM table_11658094_3 WHERE institution = \"Anderson University\"",
    "question_en": "How many times did anderson university leave?",
    "question_th": "มหาวิทยาลัย Anderson ออกไปกี่ครั้ง?",
    "context": "CREATE TABLE table_11658094_3 (left VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT nickname FROM table_11658094_3 WHERE institution = \"Newberry College\"",
    "question_en": "What is the nickname of the newberry college?",
    "question_th": "วิทยาลัยนิวเบอร์รี่มีชื่อเล่นว่าอะไร?",
    "context": "CREATE TABLE table_11658094_3 (nickname VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT gross_tonnage FROM table_11662133_1 WHERE ended_service = \"1866\"",
    "question_en": "What was the gross tonnage of the ship that ended service in 1866?",
    "question_th": "น้ำหนักรวมของเรือที่สิ้นสุดการให้บริการในปี พ.ศ. 2409 เป็นเท่าใด",
    "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_en": "What is the minimum gross tonnage of the Munich? ",
    "question_th": " น้ำหนักรวมขั้นต่ำของมิวนิคคือเท่าไร?",
    "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_en": "What is the air date for the episode written by Wendy Battles and directed by Oz Scott",
    "question_th": "วันที่ออกอากาศสำหรับตอนที่เขียนโดย Wendy Battles และกำกับโดย 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_en": "Which episode was written by anthony e. zuiker & ken solarz",
    "question_th": "ตอนไหนที่เขียนโดย anthony e. ซุยเกอร์ และ เคน โซลาร์ซ",
    "context": "CREATE TABLE table_11665016_2 (title VARCHAR, written_by VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_11665016_2 WHERE directed_by = \"Steven DePaul\"",
    "question_en": "Which episode was directed by steven depaul",
    "question_th": "ภาคไหนกำกับโดย 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_en": "What where the tms numbers built in 1923",
    "question_th": "ตัวเลข tms สร้างขึ้นเมื่อปี พ.ศ. 2466 อยู่ที่ไหน",
    "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_en": "What tms were built nzr addington in the year 1913",
    "question_th": "tms อะไรถูกสร้างขึ้นที่ nzr addton ในปี 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_en": " what's the date entered service with ships name koningin wilhelmina",
    "question_th": " วันที่เข้าประจำการด้วยชื่อเรือ 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_en": " what's the date where ships name is zeeland entered service",
    "question_th": " ชื่อเรือคือ zeeland เข้าประจำการเมื่อใด",
    "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_en": "what is the maximum tonnage where date entered service is 25 march 1986 ",
    "question_th": " น้ำหนักบรรทุกสูงสุดที่เข้าประจำการคือวันที่ 25 มีนาคม พ.ศ. 2529",
    "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_en": "what are all the date withdrawn for service entered on 21 november 1945",
    "question_th": "วันที่ถอนเข้ารับราชการในวันที่ 21 พฤศจิกายน พ.ศ. 2488 คือวันที่เท่าใด",
    "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_en": "what are all the date withdrawn for twin screw ro-ro motorship",
    "question_th": "วันที่ถอนทั้งหมดสำหรับมอเตอร์โรโรสกรูคู่",
    "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_en": "what are all the date withdrawn for koningin beatrix",
    "question_th": "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_en": "Where is the first season that Anthony Hemingway appears?",
    "question_th": "ซีซั่นแรกที่ Anthony Hemingway ปรากฏตัวที่ไหน?",
    "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_en": "What is the original air date of season 18?",
    "question_th": "ซีซั่น 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_en": "When is the first season there were 14.57 million U.S viewers?",
    "question_th": "ซีซั่นแรกมีผู้ชม 14.57 ล้านคนในอเมริกาคือเมื่อไหร่?",
    "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_en": "How many champions were there in 2009?",
    "question_th": "ปี 2552 มีแชมป์กี่คน?",
    "context": "CREATE TABLE table_1167698_1 (champion VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT third_place FROM table_1167698_1 WHERE runner_up = \"Dynamo Moscow\"",
    "question_en": "Who won third place with the runner up being dynamo moscow?",
    "question_th": "ใครได้อันดับที่ 3 โดยรองชนะเลิศคือไดนาโมมอสโก",
    "context": "CREATE TABLE table_1167698_1 (third_place VARCHAR, runner_up VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_11677100_15 WHERE player = \"Matt Hobgood\"",
    "question_en": "What position does Matt Hobgood play?",
    "question_th": "แมตต์ ฮ็อบกู๊ดเล่นตำแหน่งอะไร?",
    "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_en": "How many players were from high point, nc?",
    "question_th": "มีผู้เล่นกี่คนที่มาจากจุดสูงสุด nc?",
    "context": "CREATE TABLE table_11677100_15 (mlb_draft VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_11677100_15 WHERE player = \"Jeff Malm\"",
    "question_en": "What high school did Jeff Malm attend?",
    "question_th": "Jeff Malm เข้าเรียนโรงเรียนมัธยมแห่งใด",
    "context": "CREATE TABLE table_11677100_15 (school VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(hometown) FROM table_11677100_15 WHERE position = \"Catcher\"",
    "question_en": "How many hometowns does the catcher have?",
    "question_th": "คนจับมีบ้านเกิดกี่คน?",
    "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_en": "Who was drafted from the school Mountain Pointe High School?",
    "question_th": "ใครถูกเกณฑ์ทหารจากโรงเรียน 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_en": "What school did the player Ethan Bennett attend?",
    "question_th": "ผู้เล่น Ethan Bennett เข้าเรียนที่โรงเรียนใด",
    "context": "CREATE TABLE table_11677100_16 (school VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT mlb_draft FROM table_11677100_16 WHERE position = \"Pitcher/Infielder\"",
    "question_en": "What MLB Drafts have the position pitcher/infielder? ",
    "question_th": " MLB Draft ใดมีตำแหน่งเหยือก/อินฟิลเดอร์?",
    "context": "CREATE TABLE table_11677100_16 (mlb_draft VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_11677100_16 WHERE hometown = \"Las Vegas, NV\"",
    "question_en": "What positions were drafted from Las Vegas, NV?",
    "question_th": "ตำแหน่งใดบ้างที่ได้รับการร่างจากลาสเวกัส เนวาดา?",
    "context": "CREATE TABLE table_11677100_16 (position VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_11677100_17 WHERE player = \"Bubba Starling\"",
    "question_en": "What is the hometown of Bubba Starling?",
    "question_th": "บ้านเกิดของ 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_en": "How many schools did Bubba Starling attend?",
    "question_th": "Bubba Starling เข้าเรียนกี่โรงเรียน",
    "context": "CREATE TABLE table_11677100_17 (school VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_11677100_5 WHERE school = \"Athens Drive High school\"",
    "question_en": "What was the hometown of the player who attended Athens Drive High School?",
    "question_th": "บ้านเกิดของผู้เล่นที่เข้าเรียนที่ 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_en": "What school did Pat Osborn attend? ",
    "question_th": " แพท ออสบอร์น เรียนที่โรงเรียนอะไร",
    "context": "CREATE TABLE table_11677100_5 (school VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_11677100_5 WHERE player = \"Josh Hamilton\"",
    "question_en": "What is Josh Hamilton's hometown?",
    "question_th": "บ้านเกิดของ Josh Hamilton คืออะไร?",
    "context": "CREATE TABLE table_11677100_5 (hometown VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_11677100_3 WHERE player = \"Kerry Wood\"",
    "question_en": "What school does Kerry Wood play for?",
    "question_th": "Kerry Wood เล่นให้กับโรงเรียนใด?",
    "context": "CREATE TABLE table_11677100_3 (school VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_11677100_3 WHERE hometown = \"Germantown, TN\"",
    "question_en": "What's the position of the player from Germantown, TN?",
    "question_th": "ตำแหน่งผู้เล่นจากเจอร์แมนทาวน์ เทนเนสซี คืออะไร?",
    "context": "CREATE TABLE table_11677100_3 (position VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_11677100_3 WHERE school = \"Torrey Pines High school\"",
    "question_en": "What player goes to Torrey Pines High School?",
    "question_th": "ผู้เล่นคนไหนที่เข้าเรียนที่ 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_en": "What position does Kerry Wood play in?",
    "question_th": "เคอร์รี วู้ด เล่นตำแหน่งไหน?",
    "context": "CREATE TABLE table_11677100_3 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT mlb_draft FROM table_11677100_3 WHERE player = \"Shion Newton\"",
    "question_en": "What's Shion Newton's MLB draft result?",
    "question_th": "ผลร่าง MLB ของ Shion Newton คืออะไร",
    "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_en": "What is the hometown of the pitcher who's school was Saint Joseph Regional High School?",
    "question_th": "บ้านเกิดของเหยือกน้ำที่โรงเรียนคือ 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_en": " What is the school of the player from Lake Charles, LA?",
    "question_th": " โรงเรียนของผู้เล่นจาก 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_en": "Where was mlb draft for the player who's school was Carl Albert High School?",
    "question_th": "ร่าง mlb สำหรับผู้เล่นที่โรงเรียนคือ 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_en": "What school did the player attend who's hometown was Montvale, NJ?",
    "question_th": "ผู้เล่นเข้าเรียนที่โรงเรียนใดซึ่งมีบ้านเกิดคือ Montvale, NJ",
    "context": "CREATE TABLE table_11677100_18 (school VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_11677100_18 WHERE hometown = \"Irvine, CA\"",
    "question_en": "What is the school for the player who's hometown was Irvine, CA?",
    "question_th": "โรงเรียนสำหรับผู้เล่นที่เป็นบ้านเกิดคือเมืองเออร์ไวน์ รัฐแคลิฟอร์เนีย คืออะไร?",
    "context": "CREATE TABLE table_11677100_18 (school VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(position) FROM table_11677100_4 WHERE school = \"Spring High school\"",
    "question_en": "How many positions did the player from Spring High School play?",
    "question_th": "ผู้เล่นจาก Spring High School เล่นได้กี่ตำแหน่ง?",
    "context": "CREATE TABLE table_11677100_4 (position VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_11677100_4 WHERE hometown = \"Spring, TX\"",
    "question_en": "What player is from Spring, Tx?",
    "question_th": "ผู้เล่นคนไหนมาจาก 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_en": "What town is Brighton High School in?",
    "question_th": "Brighton High School ตั้งอยู่ในเมืองใด",
    "context": "CREATE TABLE table_11677100_4 (hometown VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_11677100_7 WHERE position = \"Catcher\"",
    "question_en": "The catcher went to what school? ",
    "question_th": " คนจับไปโรงเรียนอะไร?",
    "context": "CREATE TABLE table_11677100_7 (school VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(school) FROM table_11677100_7 WHERE player = \"Mike Jones\"",
    "question_en": "How many schools did Mike Jones attend?",
    "question_th": "Mike Jones เข้าเรียนกี่โรงเรียน",
    "context": "CREATE TABLE table_11677100_7 (school VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_11677691_10 WHERE school = \"Dooly County High school\"",
    "question_en": "What is the postion of the player listed from Dooly County High School?",
    "question_th": "ตำแหน่งผู้เล่นที่อยู่ใน 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_en": "What player represented Vista Murrieta High School?",
    "question_th": "ผู้เล่นคนใดเป็นตัวแทนของ 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_en": "What was the position of the player from Butler High School?",
    "question_th": "ตำแหน่งผู้เล่นจาก 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_en": "What position belonged to the player from Paramus, New Jersey?",
    "question_th": "ตำแหน่งใดของผู้เล่นจากพารามัส รัฐนิวเจอร์ซีย์?",
    "context": "CREATE TABLE table_11677691_10 (position VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_11677691_10 WHERE school = \"Muscle Shoals High school\"",
    "question_en": "What town is Muscle Shoals High School located in?",
    "question_th": "Muscle Shoals High School ตั้งอยู่ในเมืองใด",
    "context": "CREATE TABLE table_11677691_10 (hometown VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT mlb_draft FROM table_11677100_8 WHERE hometown = \"Apopka, FL\"",
    "question_en": "What pick was the player from Apopka, FL in the 2002 MLB draft",
    "question_th": "ผู้เล่นคนใดที่เลือกจาก Apopka, FL ในร่าง MLB ปี 2002",
    "context": "CREATE TABLE table_11677100_8 (mlb_draft VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_11677691_2 WHERE college = \"South Carolina\"",
    "question_en": "WHAT SCHOOL DID THE PLAYER FROM SOUTH CAROLINA ATTEND?",
    "question_th": "ผู้เล่นจากเซาท์แคโรไลนาเข้าเรียนที่โรงเรียนใด",
    "context": "CREATE TABLE table_11677691_2 (school VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_11677691_2 WHERE player = \"Tony Steward\"",
    "question_en": "WHAT IS THE HOMETOWN OF TONY STEWARD?",
    "question_th": "บ้านเกิดของ TONY STWARD คืออะไร?",
    "context": "CREATE TABLE table_11677691_2 (hometown VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_11677691_2 WHERE school = \"South Pointe High school\"",
    "question_en": "WHAT POSITION DOES THE PLAYER FROM SOUTH POINTE HIGH SCHOOL PLAY?",
    "question_th": "ผู้เล่นจากโรงเรียนมัธยมปลายเซาท์พอยต์อยู่ในตำแหน่งใด",
    "context": "CREATE TABLE table_11677691_2 (position VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(player) FROM table_11677691_2 WHERE college = \"Oregon\"",
    "question_en": "HOW MANY PLAYERS PLAY FOR OREGON?",
    "question_th": "มีผู้เล่นกี่คนที่เล่นให้กับ 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_en": "WHAT SCHOOL DOES HA'SEAN CLINTON-DIX BELONG TO?",
    "question_th": "HA'SEAN CLINTON-DIX อยู่ในโรงเรียนอะไร?",
    "context": "CREATE TABLE table_11677691_2 (school VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(player) FROM table_11677691_11 WHERE hometown = \"Delray Beach, Florida\"",
    "question_en": "How many players are from Delray Beach, Florida?",
    "question_th": "มีผู้เล่นจากเดลเรย์บีช ฟลอริดากี่คน",
    "context": "CREATE TABLE table_11677691_11 (player VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(school) FROM table_11677691_11 WHERE player = \"Derrick Green\"",
    "question_en": "How many schools did Derrick Green attend?",
    "question_th": "Derrick Green เข้าร่วมโรงเรียนกี่แห่ง",
    "context": "CREATE TABLE table_11677691_11 (school VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_11677691_11 WHERE school = \"American Heritage school\"",
    "question_en": "What is the hometown of the player who attended American Heritage School?",
    "question_th": "บ้านเกิดของผู้เล่นที่เข้าเรียนที่ 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_en": "How many positions does Greg Bryant play?",
    "question_th": "Greg Bryant เล่นได้กี่ตำแหน่ง?",
    "context": "CREATE TABLE table_11677691_11 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_11677691_5 WHERE player = \"Rushel Shell\"",
    "question_en": "Which college has the player Rushel Shell?",
    "question_th": "วิทยาลัยไหนมีผู้เล่น Rushel Shell?",
    "context": "CREATE TABLE table_11677691_5 (college VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_11677691_5 WHERE college = \"Stanford\"",
    "question_en": "Which players attend Stanford college?",
    "question_th": "ผู้เล่นคนไหนที่เข้าเรียนที่วิทยาลัยสแตนฟอร์ด?",
    "context": "CREATE TABLE table_11677691_5 (player VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_11677691_5 WHERE hometown = \"Aledo, Texas\"",
    "question_en": "Which school is in the hometown of Aledo, Texas?",
    "question_th": "โรงเรียนไหนอยู่ในบ้านเกิดของ Aledo รัฐเท็กซัส",
    "context": "CREATE TABLE table_11677691_5 (school VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_11677691_5 WHERE player = \"Zach Banner\"",
    "question_en": "Zach Banner is a player at which school?",
    "question_th": "Zach Banner เป็นผู้เล่นของโรงเรียนไหน?",
    "context": "CREATE TABLE table_11677691_5 (school VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(position) FROM table_11677691_5 WHERE hometown = \"Olney, Maryland\"",
    "question_en": "What position is associated with the hometown of Olney, Maryland?",
    "question_th": "ตำแหน่งใดที่เกี่ยวข้องกับบ้านเกิดของ Olney, Maryland?",
    "context": "CREATE TABLE table_11677691_5 (position VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_11677691_5 WHERE player = \"John Theus\"",
    "question_en": "Which college does the player John Theus associate with?",
    "question_th": "ผู้เล่น John Theus เชื่อมโยงกับวิทยาลัยใด",
    "context": "CREATE TABLE table_11677691_5 (college VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_11677691_3 WHERE hometown = \"Abilene, Texas\"",
    "question_en": "What player's hometown is Abilene, Texas? ",
    "question_th": " บ้านเกิดของผู้เล่นคนใดคือเมืองอาบีลีน รัฐเท็กซัส",
    "context": "CREATE TABLE table_11677691_3 (player VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(player) FROM table_11677691_3 WHERE hometown = \"Indianapolis, Indiana\"",
    "question_en": "How many players are from Indianapolis, Indiana? ",
    "question_th": " มีผู้เล่นกี่คนจากอินเดียนาโพลิส รัฐอินเดียนา",
    "context": "CREATE TABLE table_11677691_3 (player VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_11677691_3 WHERE player = \"Charone Peake\"",
    "question_en": "What position is Charone Peake? ",
    "question_th": " ชาโรน พีค ดำรงตำแหน่งอะไร?",
    "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_en": "Running back Aaron Green went to Nebraska and what high school? ",
    "question_th": " แอรอน กรีน รันนิ่งแบ็กไปเนบราสก้าและโรงเรียนมัธยมอะไร?",
    "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_en": "What player's hometown is Roebuck, South Carolina? ",
    "question_th": " บ้านเกิดของผู้เล่นคนใดคือ 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_en": "what are all the positions of players who's hometown is concord, california",
    "question_th": "ตำแหน่งทั้งหมดของผู้เล่นที่บ้านเกิดคือคองคอร์ดแคลิฟอร์เนีย",
    "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_en": "who are all the players for st. thomas aquinas high school",
    "question_th": "ใครคือผู้เล่นทั้งหมดของเซนต์ โรงเรียนมัธยมโทมัส อไควนัส",
    "context": "CREATE TABLE table_11677691_12 (player VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_11677691_12 WHERE school = \"Mission Viejo High school\"",
    "question_en": "who are all the players for mission viejo high school",
    "question_th": "ซึ่งเป็นผู้เล่นทั้งหมดของ 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_en": "What is the hometown of the players for de la salle high school",
    "question_th": "บ้านเกิดของผู้เล่นโรงเรียนมัธยมเดอลาซาลคืออะไร",
    "context": "CREATE TABLE table_11677691_12 (hometown VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_11677691_12 WHERE school = \"Armwood High school\"",
    "question_en": "who are all the players for armwood high school",
    "question_th": "ซึ่งเป็นผู้เล่นทั้งหมดของโรงเรียนมัธยมอาร์มวูด",
    "context": "CREATE TABLE table_11677691_12 (player VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_11677691_12 WHERE hometown = \"Placer, California\"",
    "question_en": "What is the hometown of the players for placer, california",
    "question_th": "ซึ่งเป็นบ้านเกิดของผู้เล่นเพลเซอร์แคลิฟอร์เนีย",
    "context": "CREATE TABLE table_11677691_12 (school VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT nba_draft FROM table_11677760_1 WHERE hometown = \"Virginia Beach, VA\"",
    "question_en": "What is the nba draft for the player from the hometown of virginia beach, va?",
    "question_th": "ร่าง NBA สำหรับผู้เล่นจากบ้านเกิดที่เวอร์จิเนียบีช รัฐเวอร์จิเนีย คืออะไร?",
    "context": "CREATE TABLE table_11677760_1 (nba_draft VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_11677760_1 WHERE school = \"Camden High school\"",
    "question_en": "what is the college for the player who's school is camden high school?",
    "question_th": "วิทยาลัยสำหรับผู้เล่นที่โรงเรียนคือโรงเรียนมัธยมแคมเดนคืออะไร?",
    "context": "CREATE TABLE table_11677760_1 (college VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_11677760_1 WHERE player = \"Derrick Favors\"",
    "question_en": "what is the year for player is derrick favors?",
    "question_th": "นักเตะปั้นจั่นชื่นชอบปีไหน?",
    "context": "CREATE TABLE table_11677760_1 (year VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(nba_draft) FROM table_11677760_1 WHERE player = \"Felipe Lopez\"",
    "question_en": "how many times was the player felipe lopez?",
    "question_th": "นักเตะคนนั้นคือเฟลิเป้ โลเปซกี่ครั้ง?",
    "context": "CREATE TABLE table_11677760_1 (nba_draft VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_11677760_1 WHERE player = \"Damon Bailey\"",
    "question_en": "what is the college for the player damon bailey?",
    "question_th": "วิทยาลัยสำหรับผู้เล่น 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 – St. Mary High school\" AND year = \"2001-2002\"",
    "question_en": "what is the player who's college is listed as direct to nba, school is st. vincent – st. mary high school and the year is 2001-2002?",
    "question_th": "ผู้เล่นคนไหนที่วิทยาลัยอยู่ในรายชื่อโดยตรงกับเอ็นบีเอ โรงเรียนคือเซนต์ วินเซนต์ – เซนต์ โรงเรียนมัธยมแมรี่และปี 2544-2545?",
    "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_en": "Which hometown has the college Louisiana State?",
    "question_th": "บ้านเกิดใดมีวิทยาลัย Louisiana State",
    "context": "CREATE TABLE table_11677691_9 (hometown VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_11677691_9 WHERE hometown = \"Crete, Illinois\"",
    "question_en": "Which college is present in the hometown of Crete, Illinois?",
    "question_th": "วิทยาลัยใดที่อยู่ในบ้านเกิดของครีต รัฐอิลลินอยส์",
    "context": "CREATE TABLE table_11677691_9 (college VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_11677691_9 WHERE player = \"Thomas Tyner\"",
    "question_en": "Which school has the player Thomas Tyner?",
    "question_th": "โรงเรียนไหนมีผู้เล่น Thomas Tyner?",
    "context": "CREATE TABLE table_11677691_9 (school VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_11677691_9 WHERE hometown = \"Centerville, Ohio\"",
    "question_en": "Which school is located in the hometown of Centerville, Ohio?",
    "question_th": "โรงเรียนใดตั้งอยู่ในบ้านเกิดของ Centerville, Ohio",
    "context": "CREATE TABLE table_11677691_9 (school VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_11677691_9 WHERE college = \"Ohio State\"",
    "question_en": "What player is from Ohio State college?",
    "question_th": "ผู้เล่นคนใดมาจากวิทยาลัยแห่งรัฐโอไฮโอ",
    "context": "CREATE TABLE table_11677691_9 (player VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_11677691_6 WHERE player = \"Scott Starr\"",
    "question_en": "Where is scott starr from?",
    "question_th": "สก็อตต์ สตาร์ มาจากไหน?",
    "context": "CREATE TABLE table_11677691_6 (hometown VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_11677691_6 WHERE school = \"Lincoln High school\"",
    "question_en": "Where is lincoln high school located?",
    "question_th": "โรงเรียนมัธยมลินคอล์นตั้งอยู่ที่ไหน",
    "context": "CREATE TABLE table_11677691_6 (hometown VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_11677691_6 WHERE player = \"Shaq Thompson\"",
    "question_en": "Where is Shaq Thompson from?",
    "question_th": "แช็ค ทอมป์สันมาจากไหน?",
    "context": "CREATE TABLE table_11677691_6 (hometown VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_11677691_6 WHERE player = \"Darius Hamilton\"",
    "question_en": "Where did Darius Hamilton go?",
    "question_th": "ดาเรียส แฮมิลตัน ไปไหน?",
    "context": "CREATE TABLE table_11677691_6 (school VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_11677691_6 WHERE school = \"Norco High school\"",
    "question_en": "Where is Norco HIgh School?",
    "question_th": "โรงเรียนมัธยมนอร์โค อยู่ที่ไหน",
    "context": "CREATE TABLE table_11677691_6 (hometown VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT height FROM table_11677760_31 WHERE college = \"Ohio State\"",
    "question_en": "What is the height of the player that went to ohio state?",
    "question_th": "ผู้เล่นที่ไปรัฐโอไฮโอมีส่วนสูงเท่าไร?",
    "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_en": "Name the total number of nba drafts that went to east side high school",
    "question_th": "ตั้งชื่อจำนวนร่าง NBA ทั้งหมดที่ไปโรงเรียนมัธยมฝั่งตะวันออก",
    "context": "CREATE TABLE table_11677760_31 (nba_draft VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT nba_draft FROM table_11677760_31 WHERE college = \"Kentucky\"",
    "question_en": "Name the numbers of the nba draft where the player went to kentucky",
    "question_th": "ตั้งชื่อหมายเลขร่าง NBA ที่ผู้เล่นไปเคนตักกี้",
    "context": "CREATE TABLE table_11677760_31 (nba_draft VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT ratings FROM table_11691212_2 WHERE year = 1997",
    "question_en": "What was the rating in 1997?",
    "question_th": "เรตติ้งในปี 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_en": "Who narrated the lap-by-lap to a 13.4 million audience?",
    "question_th": "ใครเล่าให้ผู้ชมฟังทีละรอบถึง 13.4 ล้านคน?",
    "context": "CREATE TABLE table_11691212_2 (lap_by_lap VARCHAR, viewers VARCHAR)"
  },
  {
    "answer": "SELECT bötzow FROM table_11680175_1 WHERE vehlefanz = \"1.800\"",
    "question_en": "What was the number for Bötzow where Vehlefanz is 1.800?",
    "question_th": "ตัวเลขของ Bötzow โดยที่ Vehlefanz อยู่ที่ 1.800 คืออะไร?",
    "context": "CREATE TABLE table_11680175_1 (bötzow VARCHAR, vehlefanz VARCHAR)"
  },
  {
    "answer": "SELECT vehlefanz FROM table_11680175_1 WHERE bärenklau = \"1.288\"",
    "question_en": "What was the number for Vehlefanz  where Bärenklau  is 1.288?",
    "question_th": "ตัวเลขของ Vehlefanz โดยที่ Bärenklau อยู่ที่ 1.288 คืออะไร?",
    "context": "CREATE TABLE table_11680175_1 (vehlefanz VARCHAR, bärenklau VARCHAR)"
  },
  {
    "answer": "SELECT schwante FROM table_11680175_1 WHERE bärenklau = \"1.270\"",
    "question_en": "What was the number for Schwante where Bärenklau  is 1.270?",
    "question_th": "ตัวเลขของชวันเทอโดยที่เบเรนเลาคือ 1.270 คืออะไร?",
    "context": "CREATE TABLE table_11680175_1 (schwante VARCHAR, bärenklau VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_11680175_1 WHERE Neu - vehlefanz = 365",
    "question_en": "How many years where Neu-Vehlefanz had a number of 365?",
    "question_th": "กี่ปีที่ Neu-Vehlefanz มีจำนวน 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_en": "How many times did Neu-Vehlefanz occur when Schwante had 2.043?",
    "question_th": "Neu-Vehlefanz เกิดขึ้นกี่ครั้งเมื่อ Schwante มี 2.043",
    "context": "CREATE TABLE table_11680175_1 (vehlefanz VARCHAR, Neu VARCHAR, schwante VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_11680175_1 WHERE eichstädt = 939",
    "question_en": "How many years where Eichstädt had a number of 939?",
    "question_th": "Eichstädt มีเลข 939 กี่ปี?",
    "context": "CREATE TABLE table_11680175_1 (year VARCHAR, eichstädt VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(replaced_by) FROM table_11713303_2 WHERE date_of_appointment = \"10 December 2007\" AND manner_of_departure = \"Quit\"",
    "question_en": "How many have been replaced where the appointment date is 10 December 2007 and the manner of departure is quit?",
    "question_th": "มีการเปลี่ยนกี่รายการ โดยนัดวันที่ 10 ธันวาคม 2550 และเลิกลักษณะการเดินทางไปแล้ว?",
    "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_en": "What is the date of vacancy for 10 december 2007 when quit?",
    "question_th": "ตำแหน่งว่างวันที่ 10 ธันวาคม 2550 เมื่อลาออกคือวันที่เท่าไร?",
    "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_en": "How many manners of departure did peter voets have?",
    "question_th": "Peter Voets มีมารยาทในการจากไปกี่แบบ?",
    "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_en": "What is the link abilities when the predecessors is ti-85?",
    "question_th": "ความสามารถในการลิงค์เมื่อรุ่นก่อนคือ 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_en": "What is the cpu of the calculator released in 1993?",
    "question_th": "เครื่องคิดเลข cpu ที่ออกในปี 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_en": "what is the display size for the calculator released in 1997?",
    "question_th": "เครื่องคิดเลขที่ออกในปี 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_en": "what is the display size for the calculator ti-82?",
    "question_th": "เครื่องคิดเลข 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×64 pixels 21×8 characters\"",
    "question_en": "what is the cpu for the calculator with 28 kb of ram and display size 128×64 pixels 21×8 characters?",
    "question_th": "cpu สำหรับเครื่องคิดเลขที่มี ram 28 kb และขนาดหน้าจอ 128×64 พิกเซล 21×8 ตัวอักษรคือเท่าไร?",
    "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_en": "Who was the dirctor for season 13?",
    "question_th": "ใครเป็นผู้กำกับในฤดูกาลที่ 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_en": "What is the episode title of the show that had a production code of 3T5764?",
    "question_th": "ชื่อตอนของรายการที่มีรหัสการผลิต 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_en": "What is the first series number that Adele Lim wrote?",
    "question_th": "หมายเลขชุดแรกที่ Adele Lim เขียนคือหมายเลขอะไร",
    "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_en": "How many millions of U.S. viewers watched the show with a production code of 3T5769?",
    "question_th": "ผู้ชมชาวอเมริกันจำนวนกี่ล้านคนดูรายการด้วยรหัสการผลิต 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_en": "When was the show first aired that was viewed by 3.57 million U.S. viewers?",
    "question_th": "รายการนี้ออกอากาศครั้งแรกเมื่อใดซึ่งมีผู้ชม 3.57 ล้านคนในสหรัฐฯ",
    "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_en": "Who directed the show that was viewed by 2.06 million U.S. people?",
    "question_th": "ใครเป็นผู้กำกับการแสดงที่มีคนดูในสหรัฐฯ 2.06 ล้านคน?",
    "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_en": "What is the position of the player that came from the school/club team/country of Purdue?",
    "question_th": "ตำแหน่งผู้เล่นที่มาจากโรงเรียน/ทีมสโมสร/ประเทศ 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_en": "Who is the player who's number is 3?",
    "question_th": "ผู้เล่นหมายเลข 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_en": "What is the height for the player in 1968-72?",
    "question_th": "ส่วนสูงของผู้เล่นในปี 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_en": "Which player had a height of 6-0?",
    "question_th": "ผู้เล่นคนไหนที่มีส่วนสูง 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_en": "What is the position for the player that played in 2006?",
    "question_th": "นักเตะที่เล่นในปี 2549 อยู่ในตำแหน่งอะไร?",
    "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_en": "What are all the names of the players who are 7-0 tall?",
    "question_th": "นักเตะส่วนสูง 7-0 มีชื่ออะไรบ้าง?",
    "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_en": "Kimball, toby toby kimball is a player; How many times at school/ club team/country  was the player present?",
    "question_th": "คิมบอลล์ โทบี้ โทบี้ คิมบอลล์เป็นผู้เล่น ผู้เล่นปรากฏตัวที่โรงเรียน/ทีมสโมสร/ประเทศกี่ครั้ง?",
    "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_en": "In connecticut the school/club team/country had a set height in ft. what is true for them?",
    "question_th": "ในรัฐคอนเนตทิคัต โรงเรียน/ทีมสโมสร/ประเทศกำหนดส่วนสูงไว้เป็นฟุต ข้อใดเป็นจริงสำหรับพวกเขา",
    "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_en": "Rockets height was 6-6 in feet, list the time frame where this was true?",
    "question_th": "จรวดสูง 6-6 ฟุต ระบุกรอบเวลาที่เป็นจริงหรือไม่",
    "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_en": "What is the hight of the player who's tenure lasted from 1969-70?",
    "question_th": "นักเตะที่อยู่ในตำแหน่งสูงสุดระหว่างปี 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_en": "What school did the 7-4 player attend?",
    "question_th": "ผู้เล่น 7-4 คนเข้าเรียนที่โรงเรียนใด",
    "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_en": " what's the years for rockets where position is guard / forward",
    "question_th": " จรวดที่มีตำแหน่งเป็นผู้พิทักษ์/ข้างหน้าคือปีไหน",
    "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_en": "what is the total number of player where years for rockets is 1975-79",
    "question_th": "จำนวนผู้เล่นทั้งหมดที่เล่นจรวดได้คือปี 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_en": "what is the total number of player where years for rockets is 2004-06",
    "question_th": "จำนวนผู้เล่นทั้งหมดกี่ปีสำหรับจรวดคือปี 2547-2549",
    "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_en": " what's the position where player is williams, bernie bernie williams",
    "question_th": " ตำแหน่งที่ผู้เล่นคือวิลเลียมส์ เบอร์นี เบอร์นี วิลเลียมส์",
    "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_en": "what is the total number of years for rockets where school/club team/country is baylor",
    "question_th": "จำนวนปีทั้งหมดสำหรับจรวดโดยที่โรงเรียน/ทีมสโมสร/ประเทศเป็นเบย์เลอร์คือเท่าใด",
    "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_en": "How many positions had jersey number 32",
    "question_th": "มีเสื้อหมายเลข 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_en": "Which years had a jersey number 55",
    "question_th": "ปีไหนมีเสื้อเบอร์ 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_en": "Which school, club team, or country played for the rockets in the years 2000-01?",
    "question_th": "โรงเรียน ทีมสโมสร หรือประเทศใดที่เล่นให้กับจรวดในปี 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_en": "During which years did number 13 play for the Rockets?",
    "question_th": "หมายเลข 13 เล่นให้กับร็อคเก็ตส์ในช่วงปีใด",
    "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_en": "What is the lowest date settled for chifley?",
    "question_th": "วันที่ต่ำสุดที่ตัดสินสำหรับชิฟลีย์คือวันที่เท่าไร?",
    "context": "CREATE TABLE table_1174162_1 (date_first_settled_as_a_suburb INTEGER, suburb VARCHAR)"
  },
  {
    "answer": "SELECT MIN(density___km²_) FROM table_1174162_1 WHERE suburb = \"Garran\"",
    "question_en": "What is the density in Garran?",
    "question_th": "ความหนาแน่นใน Garran คืออะไร?",
    "context": "CREATE TABLE table_1174162_1 (density___km²_ INTEGER, suburb VARCHAR)"
  },
  {
    "answer": "SELECT date_first_settled_as_a_suburb FROM table_1174162_1 WHERE median_age__in_2006_ = \"40 years\"",
    "question_en": "What is the date settled for 40 years?",
    "question_th": "วันที่ตัดสินเป็นเวลา 40 ปีคืออะไร?",
    "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²_ = \"1.7\"",
    "question_en": "What is the median age where the area is 1.7?",
    "question_th": "อายุมัธยฐานที่พื้นที่คือ 1.7 คือเท่าใด",
    "context": "CREATE TABLE table_1174162_1 (median_age__in_2006_ VARCHAR, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT thursday FROM table_11748792_2 WHERE series = \"Big Brother 13\"",
    "question_en": "Who is the thursday presenter of the show Big Brother 13?",
    "question_th": "ใครคือพรีเซนเตอร์รายการ 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_en": "Who is the friday presenter for each show, when the monday presenter is Emma Willis Jamie East?",
    "question_th": "ใครคือผู้นำเสนอวันศุกร์ของแต่ละรายการ ในเมื่อ ผู้นำเสนอวันจันทร์คือ เอ็มมา วิลลิส เจมี อีสต์?",
    "context": "CREATE TABLE table_11748792_2 (friday VARCHAR, monday VARCHAR)"
  },
  {
    "answer": "SELECT tuesday FROM table_11748792_2 WHERE series = \"Celebrity Big Brother 8\"",
    "question_en": "Who is the Tuesday presenter of Celebrity Big Brother 8?",
    "question_th": "ใครคือพรีเซนเตอร์รายการ 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_en": "Who is the Wednesday presenter of the show Big Brother 13?",
    "question_th": "ใครคือพรีเซ็นเตอร์วันพุธของรายการ 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_en": "List all of the shows with Alice Levine Jamie East is the Sunday presenter.",
    "question_th": "รายการทั้งหมดที่มีอลิซ เลอวีน เจมี อีสต์เป็นพรีเซ็นเตอร์วันอาทิตย์",
    "context": "CREATE TABLE table_11748792_2 (series VARCHAR, sunday VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_11734041_7 WHERE years_for_rockets = \"2008\"",
    "question_en": "What are all the positions for the rockets in 2008?",
    "question_th": "ตำแหน่งจรวดทั้งหมดในปี 2551 มีอะไรบ้าง?",
    "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_en": "What is the height of the school club team members in clemson?",
    "question_th": "สมาชิกในทีมชมรมโรงเรียนในเคลมสันมีส่วนสูงเท่าไร?",
    "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_en": "What years for the rockets did player ford, alton alton ford play?",
    "question_th": "นักเตะฟอร์ด อัลตัน อัลตัน ฟอร์ด เล่นจรวดกี่ปี?",
    "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_en": "What years for the rockets did the player ford, phil phil ford play?",
    "question_th": "ผู้เล่นฟอร์ด, ฟิล ฟิลฟอร์ดเล่นจรวดกี่ปี?",
    "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_en": "What school/club team/country did the player fitch, gerald gerald fitch play for?",
    "question_th": "นักเตะของโรงเรียน/สโมสร/ประเทศใดที่เล่นให้กับ เจอรัลด์ เจอรัลด์ ฟิทช์?",
    "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_en": "What is the weekly rank where the number is 4?",
    "question_th": "อันดับประจำสัปดาห์คือเลข 4 คืออะไร?",
    "context": "CREATE TABLE table_11753080_2 (weekly_rank VARCHAR, _number VARCHAR)"
  },
  {
    "answer": "SELECT MIN(t20_matches) FROM table_1176371_1",
    "question_en": "What is the minimum of t20 matches?",
    "question_th": "การแข่งขัน t20 ขั้นต่ำคือเท่าไร?",
    "context": "CREATE TABLE table_1176371_1 (t20_matches INTEGER)"
  },
  {
    "answer": "SELECT location FROM table_1176371_1 WHERE name_of_ground = \"Ropery Lane\"",
    "question_en": "Where is ropery lane located?",
    "question_th": "ที่ตั้งของ Ropery Lane อยู่ที่ไหน?",
    "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_en": "Where is ropery lane and la matches 7 location?",
    "question_th": "ที่ตั้งของ Ropery Lane และ La Match 7 อยู่ที่ไหน?",
    "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_en": "What is the maximum fc matches?",
    "question_th": "การแข่งขัน fc สูงสุดคือเท่าใด?",
    "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_en": "What is the maximum fc matches at the racecourse?",
    "question_th": "การแข่งขัน FC สูงสุดในสนามแข่งคือเท่าใด?",
    "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_en": "What is the maximum t20 on green lane?",
    "question_th": "t20 สูงสุดบนเลนสีเขียวคือเท่าไร?",
    "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_en": "what's the cylinders/ valves with model being 1.8 20v",
    "question_th": "กระบอกสูบ/วาล์วรุ่นอะไรครับ 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_en": "Which units are commanded by Lieutenant Colonel Francis Hepburn?",
    "question_th": "หน่วยงานใดบ้างที่ได้รับคำสั่งจากพันโทฟรานซิส เฮปเบิร์น?",
    "context": "CREATE TABLE table_11793221_2 (unit VARCHAR, commander VARCHAR)"
  },
  {
    "answer": "SELECT complement FROM table_11793221_2 WHERE commander = \"Major William Lloyd\"",
    "question_en": "What are the complements when the commander is Major William Lloyd?",
    "question_th": "มีอะไรช่วยได้บ้างเมื่อผู้บังคับบัญชาคือพันตรีวิลเลียม ลอยด์?",
    "context": "CREATE TABLE table_11793221_2 (complement VARCHAR, commander VARCHAR)"
  },
  {
    "answer": "SELECT wounded FROM table_11793221_2 WHERE complement = \"173 off 2059 men\"",
    "question_en": "How many were wounded when the complement was 173 off 2059 men?",
    "question_th": "มีผู้ได้รับบาดเจ็บกี่คนเมื่อส่วนเสริมคือ 173 คนจาก 2,059 คน?",
    "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_en": "How many where killed under Major-General Jean Victor de Constant Rebecque's command?",
    "question_th": "มีกี่คนที่ถูกสังหารภายใต้คำสั่งของพลตรี Jean Victor de Constant Rebecque?",
    "context": "CREATE TABLE table_11793221_2 (killed VARCHAR, commander VARCHAR)"
  },
  {
    "answer": "SELECT commander FROM table_11793221_2 WHERE wounded = \"8 off 0 men\"",
    "question_en": "Who were the commanders when 8 off 0 men were wounded?",
    "question_th": "ใครคือผู้บังคับบัญชาเมื่อมีคนบาดเจ็บ 8 จาก 0 คน?",
    "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_en": "What is the gpa per capita (nominal) for the country with gdp (nominal) is $52.0 billion?",
    "question_th": "เกรดเฉลี่ยต่อหัว (เล็กน้อย) สำหรับประเทศที่มีจีดีพี (เล็กน้อย) คือเท่าไร อยู่ที่ 52.0 พันล้านดอลลาร์",
    "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_en": "How many countries has a gdp (nominal) of $29.9 billion?",
    "question_th": "มีกี่ประเทศที่มี GDP (ระบุ) อยู่ที่ 29.9 พันล้านดอลลาร์",
    "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_en": "What is the GDP (nominal) for Uzbekistan?",
    "question_th": "GDP (เล็กน้อย) สำหรับอุซเบกิสถานคือเท่าใด",
    "context": "CREATE TABLE table_11780179_1 (gdp__nominal_ VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT MIN(area__km²_) FROM table_11780179_1 WHERE population = 16967000",
    "question_en": "What is the area (km²) for the country with a population of 16967000?",
    "question_th": "พื้นที่ (กม. ²) ของประเทศที่มีประชากร 16967000 คือเท่าใด",
    "context": "CREATE TABLE table_11780179_1 (area__km²_ INTEGER, population VARCHAR)"
  },
  {
    "answer": "SELECT aspect_ratio FROM table_1180228_1 WHERE released = \"12/10/2009\"",
    "question_en": "What is the aspect ratio of the DVD released on 12/10/2009?",
    "question_th": "อัตราส่วนภาพของดีวีดีที่ออกเมื่อวันที่ 12/10/2552 เป็นเท่าใด",
    "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_en": "What is the name of the DVD where the number of discs is greater than 2.0",
    "question_th": "ดีวีดีชื่ออะไรซึ่งมีจำนวนแผ่นมากกว่า 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_en": "How many releases did the DVD River Cottage forever have?",
    "question_th": "DVD River Cottage มีออกมากี่เรื่องตลอดกาล?",
    "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_en": "What is the total number of discs where the run time was 4 hours 40 minutes?",
    "question_th": "จำนวนแผ่นดิสก์ทั้งหมดที่รันไทม์ 4 ชั่วโมง 40 นาทีคือเท่าไร?",
    "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_en": "What were the wounded for complement of 46 off 656 men?",
    "question_th": "ได้รับบาดเจ็บอะไรบ้างจาก 46 คนจาก 656 คน?",
    "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_en": "What was the missing for lieutenant general sir thomas picton?",
    "question_th": "พลโท เซอร์ โทมัส พิคตัน หายไปจากอะไร?",
    "context": "CREATE TABLE table_11793221_4 (missing VARCHAR, commander VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(complement) FROM table_11793221_4 WHERE unit = \"4th Hanoverian Brigade\"",
    "question_en": "Name the number of complement for 4th hanoverian brigade",
    "question_th": "ตั้งชื่อหมายเลขส่วนประกอบสำหรับกองพลฮันโนเวอร์เรียนที่ 4",
    "context": "CREATE TABLE table_11793221_4 (complement VARCHAR, unit VARCHAR)"
  },
  {
    "answer": "SELECT commander FROM table_11793221_4 WHERE complement = \"167 off 2348 men\"",
    "question_en": "Name the commander of 167 off 2348 men",
    "question_th": "รายนามผู้บังคับบัญชาจำนวน 167 นาย จาก 2,348 นาย",
    "context": "CREATE TABLE table_11793221_4 (commander VARCHAR, complement VARCHAR)"
  },
  {
    "answer": "SELECT MIN(overall) FROM table_11803648_17",
    "question_en": "HOW MUCH WAS THE OVERALL FOR ERIK KARLSSON?",
    "question_th": "ERIK KARLSSON โดยรวมเท่าไหร่?",
    "context": "CREATE TABLE table_11803648_17 (overall INTEGER)"
  },
  {
    "answer": "SELECT MIN(round) FROM table_11803648_17 WHERE position = \"Forward\"",
    "question_en": "WHAT ROUND WAS FORWARD ANDRE PETERSSON SELECTED?",
    "question_th": "กองหน้าอันเดร ปีเตอร์สันถูกเลือกรอบไหน?",
    "context": "CREATE TABLE table_11803648_17 (round INTEGER, position VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_11803648_17 WHERE player = \"Patrick Wiercioch\"",
    "question_en": "WHAT POSITION DOES PATRICK WIERCIOCH PLAY?",
    "question_th": "แพทริค เวียร์ซิออชเล่นตำแหน่งไหน?",
    "context": "CREATE TABLE table_11803648_17 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MIN(overall) FROM table_11803648_17 WHERE club_team = \"Omaha (USHL)\"",
    "question_en": "NAME THE OVERALL FOR THE OMAHA (USHL) CLUB TEAM",
    "question_th": "ตั้งชื่อโดยรวมสำหรับทีม OMAHA (USHL) CLUB",
    "context": "CREATE TABLE table_11803648_17 (overall INTEGER, club_team VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_11803648_17 WHERE player = \"Andre Petersson\"",
    "question_en": "WHERE IS ANDRE PETERSSON FROM?",
    "question_th": "อังเดร ปีเตอร์สันมาจากไหน?",
    "context": "CREATE TABLE table_11803648_17 (nationality VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT club_team FROM table_11803648_21 WHERE player = \"Jarrod Maidens\"",
    "question_en": "What club team did JArrod Maidens play for?",
    "question_th": "เจอาร์ร็อด เมเดนส์ เล่นให้กับทีมสโมสรใด?",
    "context": "CREATE TABLE table_11803648_21 (club_team VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_11803648_21 WHERE player = \"Cody Ceci\"",
    "question_en": "What position does Cody Ceci play?",
    "question_th": "โคดี้ เซซี่ เล่นตำแหน่งอะไร?",
    "context": "CREATE TABLE table_11803648_21 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_11803648_20 WHERE club_team = \"Peterborough Petes (OHL)\"",
    "question_en": "What is the Nationality when the club team is Peterborough Petes (OHL)?",
    "question_th": "เมื่อทีมสโมสรคือ 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_en": "Which player is in round 5?",
    "question_th": "ผู้เล่นคนไหนอยู่ในรอบ 5?",
    "context": "CREATE TABLE table_11803648_20 (player VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_11803648_20 WHERE overall = \"126\"",
    "question_en": "What position is associated with an overall value of 126?",
    "question_th": "ตำแหน่งใดสัมพันธ์กับมูลค่ารวม 126?",
    "context": "CREATE TABLE table_11803648_20 (position VARCHAR, overall VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_11803648_20 WHERE player = \"Jordan Fransoo\"",
    "question_en": "What position is the player Jordan Fransoo in?",
    "question_th": "จอร์แดน ฟรานซู นักเตะอยู่ในตำแหน่งใด?",
    "context": "CREATE TABLE table_11803648_20 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(round) FROM table_11803648_20 WHERE player = \"Matthew Puempel\"",
    "question_en": "How many rounds is the player Matthew Puempel associated with?",
    "question_th": "ผู้เล่น Matthew Puempel เกี่ยวข้องกับกี่รอบ?",
    "context": "CREATE TABLE table_11803648_20 (round VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_11803648_22 WHERE player = \"Tobias Lindberg\"",
    "question_en": "What is the position of player Tobias Lindberg?",
    "question_th": "ตำแหน่งผู้เล่น โทเบียส ลินด์เบิร์ก คืออะไร?",
    "context": "CREATE TABLE table_11803648_22 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(player) FROM table_11803648_22 WHERE overall = \"78\"",
    "question_en": "How many players had overall 78?",
    "question_th": "มีผู้เล่นทั้งหมดกี่คน 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_en": "What is the last round with club team Guelph Storm (ohl)?",
    "question_th": "รอบสุดท้ายกับทีมสโมสร เกล์ฟ สตอร์ม (โอเล่) คืออะไร?",
    "context": "CREATE TABLE table_11803648_22 (round INTEGER, club_team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(position) FROM table_11803648_22 WHERE player = \"Ben Harpur\"",
    "question_en": "How many positions did player Ben Harpur play?",
    "question_th": "นักเตะ เบน ฮาร์ปูร์ เล่นได้กี่ตำแหน่ง?",
    "context": "CREATE TABLE table_11803648_22 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_11803648_22 WHERE player = \"Marcus Hogberg\"",
    "question_en": "What is the position of player Marcus Hogberg?",
    "question_th": "ตำแหน่งของนักเตะ มาร์คัส ฮอกเบิร์ก คืออะไร?",
    "context": "CREATE TABLE table_11803648_22 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT institution FROM table_1183842_1 WHERE enrollment = 3488",
    "question_en": "3488 is the enrollment amount of what college?",
    "question_th": "3488 คือจำนวนการลงทะเบียนของวิทยาลัยใด?",
    "context": "CREATE TABLE table_1183842_1 (institution VARCHAR, enrollment VARCHAR)"
  },
  {
    "answer": "SELECT MAX(enrollment) FROM table_1183842_1 WHERE institution = \"Barry University\"",
    "question_en": "Barry University had the highest enrollment of what number?",
    "question_th": "Barry University มีผู้ลงทะเบียนเรียนมากที่สุดในจำนวนเท่าใด",
    "context": "CREATE TABLE table_1183842_1 (enrollment INTEGER, institution VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_1183842_1 WHERE nickname = \"Fighting Knights\"",
    "question_en": "The fighting knights has what type of nickname?",
    "question_th": "อัศวินต่อสู้มีฉายาประเภทใด?",
    "context": "CREATE TABLE table_1183842_1 (type VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT joined FROM table_1183842_1 WHERE location = \"Boca Raton, Florida\"",
    "question_en": "Boca Raton, Florida had what joined amount?",
    "question_th": "โบคา ราตัน ฟลอริดา มียอดรวมเท่าไร?",
    "context": "CREATE TABLE table_1183842_1 (joined VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT MAX(founded) FROM table_1183842_1 WHERE enrollment = 3584",
    "question_en": "If the enrollment is 3584, what's the largest founded?",
    "question_th": "ถ้าลงทะเบียน 3584 ก่อตั้งอะไรใหญ่ที่สุด?",
    "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_en": "Who directed the episode that was viewed by 2.57 million people in the U.S.?",
    "question_th": "ใครเป็นผู้กำกับตอนที่ผู้ชม 2.57 ล้านคนในสหรัฐอเมริกา?",
    "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_en": "Who directed the episode that was viewed by 2.50 million people in the U.S.?",
    "question_th": "ใครเป็นผู้กำกับตอนที่ผู้ชม 2.50 ล้านคนในสหรัฐอเมริกา?",
    "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_en": "Which episode number in season 5 was viewed by 3.00 million U.S. viziers?",
    "question_th": "หมายเลขตอนใดในซีซั่น 5 ที่มีผู้ชมกว่า 3.00 ล้านคนในสหรัฐฯ",
    "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_en": "what are all the percent (1990) where state is united states",
    "question_th": "เปอร์เซ็นต์ทั้งหมดเป็นเท่าใด (1990) โดยที่รัฐคือสหรัฐอเมริกา",
    "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_en": "what is the total number of percent (2000) where percent (1980) is 3.4%",
    "question_th": "คือจำนวนเปอร์เซ็นต์ทั้งหมด (2000) โดยที่เปอร์เซ็นต์ (1980) คือ 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_en": "what are all the percent (1990) where state is mississippi",
    "question_th": "เปอร์เซ็นต์ทั้งหมดเป็นเท่าไร (1990) โดยที่รัฐมิสซิสซิปปี้",
    "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_en": "what is the maximum norwegian americans (2000) where norwegian americans (1990) is 9170",
    "question_th": "ชาวอเมริกันเชื้อสายนอร์เวย์สูงสุด (2000) คือเท่าใด โดยที่ชาวอเมริกันเชื้อสายนอร์เวย์ (1990) คือ 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_en": "what is the minimum norwegian americans (1980) where state is rhode island",
    "question_th": "ชาวอเมริกันเชื้อสายนอร์เวย์ขั้นต่ำคือเท่าใด (1980) โดยที่รัฐคือโรดไอส์แลนด์",
    "context": "CREATE TABLE table_1182314_5 (norwegian_americans__1980_ INTEGER, state VARCHAR)"
  },
  {
    "answer": "SELECT english_title FROM table_11839306_2 WHERE rōmaji_title = \"Getto Daun\"",
    "question_en": "What is the English version of the title Getto Daun?",
    "question_th": "ชื่อ Getto Daun เวอร์ชันภาษาอังกฤษคืออะไร?",
    "context": "CREATE TABLE table_11839306_2 (english_title VARCHAR, rōmaji_title VARCHAR)"
  },
  {
    "answer": "SELECT MIN(track) FROM table_11839306_2",
    "question_en": "What is the smallest track number?",
    "question_th": "หมายเลขแทร็กที่เล็กที่สุดคืออะไร?",
    "context": "CREATE TABLE table_11839306_2 (track INTEGER)"
  },
  {
    "answer": "SELECT COUNT(track) FROM table_11839306_2 WHERE rōmaji_title = \"Mō Sukoshi Tōku\"",
    "question_en": "How many tracks are titled Mō Sukoshi Tōku?",
    "question_th": "มีเพลงทั้งหมดกี่เพลงที่มีชื่อว่า Mō Sukoshi Tōku",
    "context": "CREATE TABLE table_11839306_2 (track VARCHAR, rōmaji_title VARCHAR)"
  },
  {
    "answer": "SELECT japanese_title FROM table_11839306_2 WHERE english_title = \"Fantasy\"",
    "question_en": "What is the Japanese title for Fantasy?",
    "question_th": "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_en": "How long is track number 8?",
    "question_th": "แทร็กหมายเลข 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_en": "Who was the GT2 winning team when the GT3 winning team was #1 PTG?",
    "question_th": "ใครคือทีมที่ชนะ GT2 เมื่อทีมที่ชนะ GT3 คือ #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_en": "How many doubles champions were there for the Serbia f6 Futures tournament?",
    "question_th": "มีแชมป์ประเภทคู่กี่คนสำหรับทัวร์นาเมนต์ Kenya f6 Futures?",
    "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_en": "How many singles tournaments did Ludovic Walter win?",
    "question_th": "Ludovic Walter ชนะการแข่งขันเดี่ยวกี่รายการ?",
    "context": "CREATE TABLE table_11900378_1 (tournament VARCHAR, singles_champions VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_11891841_2 WHERE country = \"ESp\"",
    "question_en": "What is the type where the country is esp?",
    "question_th": "โดยเฉพาะประเทศอยู่ประเภทไหน?",
    "context": "CREATE TABLE table_11891841_2 (type VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_11891841_2 WHERE p = \"MF\"",
    "question_en": "What is the name where p is mf?",
    "question_th": "ชื่ออะไรโดยที่ p คือ MF?",
    "context": "CREATE TABLE table_11891841_2 (name VARCHAR, p VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_11891841_2 WHERE name = \"Bojan\"",
    "question_en": "What is the type where the name is bojan?",
    "question_th": "โบจันชื่อประเภทอะไรคะ?",
    "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_en": "What was the first day cover cancellation for the University of Saskatchewan themed stamp?",
    "question_th": "วันแรกที่มีการยกเลิกปกแสตมป์ธีมมหาวิทยาลัยซัสแคตเชวันคืออะไร",
    "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_en": "Who was responsible  for the design of the Jasper National Park theme?",
    "question_th": "ใครเป็นผู้รับผิดชอบในการออกแบบธีมอุทยานแห่งชาติแจสเปอร์",
    "context": "CREATE TABLE table_11900773_5 (design VARCHAR, theme VARCHAR)"
  },
  {
    "answer": "SELECT paper_type FROM table_11900773_5 WHERE theme = \"University of Saskatchewan\"",
    "question_en": "What is the paper type of the University of Saskatchewan themed stamp?",
    "question_th": "แสตมป์ธีมมหาวิทยาลัยซัสแคตเชวันประเภทกระดาษคืออะไร",
    "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_en": "Who created the illustration for the stamp that was themed 100 years of scouting?",
    "question_th": "ใครเป็นคนสร้างภาพประกอบสำหรับแสตมป์ที่เป็นธีม 100 ปีแห่งการสอดแนม?",
    "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_en": "What is the number of nicknames for the meaning of god knows my journey.",
    "question_th": "จำนวนชื่อเล่นที่มีความหมายว่าพระเจ้ารู้การเดินทางของฉันคืออะไร",
    "context": "CREATE TABLE table_11908801_1 (nickname VARCHAR, meaning VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(meaning) FROM table_11908801_1 WHERE full_name = \"Chidinma Anulika\"",
    "question_en": "What is the number of meaning where full name is chidinma anulika?",
    "question_th": "ชื่อเต็ม ชิดินมา อนุลิกา มีความหมายว่าอย่างไร?",
    "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_en": "What is the nickname that means god holds my life?",
    "question_th": "ฉายาที่แปลว่าพระเจ้ากุมชีวิตฉันคืออะไร?",
    "context": "CREATE TABLE table_11908801_1 (nickname VARCHAR, meaning VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_11907963_6 WHERE game = 49",
    "question_en": "Who had the high assists for game 49?",
    "question_th": "ใครมีแอสซิสต์สูงในเกมที่ 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_en": "What was the score for the game in which Emeka Okafor (10) had high rebounds?",
    "question_th": "เกมนี้เอเมก้า โอคาฟอร์ (10) รีบาวด์ได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_11907963_6 (score VARCHAR, high_rebounds VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(location) FROM table_11934032_1 WHERE station_number = \"C03\"",
    "question_en": "what is the total number of location where station number is c03",
    "question_th": "จำนวนสถานที่ทั้งหมดซึ่งหมายเลขสถานีคือ c03 เป็นเท่าใด",
    "context": "CREATE TABLE table_11934032_1 (location VARCHAR, station_number VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_11934032_1 WHERE station_number = \"C08\"",
    "question_en": "what are all the type where station number is c08",
    "question_th": "หมายเลขสถานีคือ 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_en": "what are all the type where location is st ives, cambridgeshire",
    "question_th": "สถานที่ประเภทใดบ้างที่เซนต์อีฟส์ แคมบริดจ์เชียร์",
    "context": "CREATE TABLE table_11934032_1 (type VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT registrations FROM table_11934032_1 WHERE station_number = \"C26\"",
    "question_en": "what are all the registrations where station number is c26",
    "question_th": "หมายเลขสถานีคือ c26 มีการลงทะเบียนทั้งหมดอะไรบ้าง",
    "context": "CREATE TABLE table_11934032_1 (registrations VARCHAR, station_number VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_11934032_1 WHERE station_number = \"C11\"",
    "question_en": "what are all the location where station number is c11",
    "question_th": "ตำแหน่งทั้งหมดที่มีหมายเลขสถานีคือ c11 คืออะไร",
    "context": "CREATE TABLE table_11934032_1 (location VARCHAR, station_number VARCHAR)"
  },
  {
    "answer": "SELECT registrations FROM table_11934032_1 WHERE location = \"Yaxley\"",
    "question_en": "what are all the registrations where location is yaxley",
    "question_th": "การลงทะเบียนทั้งหมดอยู่ที่ไหนที่ 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_en": "What is the issue price (proof) where the issue price (bu) is 34.95?",
    "question_th": "ราคาของปัญหา (หลักฐาน) คืออะไร โดยที่ราคาของปัญหา (bu) คือ 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_en": "What is the earliest year where the mintage (proof) is 25,000?",
    "question_th": "ปีแรกสุดที่จำนวนผลิต (พิสูจน์) คือ 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_en": "What is the mintage (bu) with the artist Royal Canadian Mint Staff and has an issue price (proof) of $54.95?",
    "question_th": "เหรียญที่ผลิต (bu) กับศิลปิน Royal Canadian Mint Staff คือเท่าไร และมีราคาออก (พิสูจน์) ที่ $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_en": "What is the year that the issue price (bu) is $26.95?",
    "question_th": "ปีที่ราคาออก (bu) คือ $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_en": "What is the number of first class team with birthday of 5 december 1970?",
    "question_th": "นักเตะชั้นหนึ่งที่เกิดวันที่ 5 ธันวาคม 2513 มีจำนวนเท่าไร?",
    "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_en": "What is the number when birthday is 15 november 1973?",
    "question_th": "วันเกิดคือวันที่ 15 พฤศจิกายน พ.ศ. 2516 เลขที่เท่าไหร่?",
    "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_en": "What is the bowling style of chris harris?",
    "question_th": "สไตล์การเล่นโบว์ลิ่งของคริส แฮร์ริสเป็นอย่างไร?",
    "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_en": "Where is the first class team of date of birth 20 november 1969?",
    "question_th": "วันเกิด 20 พฤศจิกายน 2512 ทีมเฟิร์สคลาสอยู่ไหน?",
    "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_en": "What's Javagal Srinath's batting style?",
    "question_th": "สไตล์การตีบอลของ ชวากัล ศรีนาถ เป็นอย่างไร?",
    "context": "CREATE TABLE table_11950720_3 (batting_style VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT bowling_style FROM table_11950720_8 WHERE player = \"Shivnarine Chanderpaul\"",
    "question_en": "Shivnarine Chanderpaul used what bowling style? ",
    "question_th": " ศิวนารีน จันเดอร์พอล ใช้สไตล์การเล่นโบว์ลิ่งแบบไหน?",
    "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_en": "How many musical guests and songs were in episodes with a production code k0519?",
    "question_th": "มีแขกรับเชิญและเพลงกี่เพลงในตอนที่มีรหัสการผลิต 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_en": "How many episodes originally aired on August 31, 1995?",
    "question_th": "ออกอากาศครั้งแรกเมื่อวันที่ 31 สิงหาคม 2538 มีกี่ตอน",
    "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_en": "What is theoriginal air date of the episode directed by timothy van patten?",
    "question_th": "วันที่ออกอากาศดั้งเดิมของตอนที่กำกับโดยทิโมธี แวน แพทเทนคือวันที่เท่าไร",
    "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_en": "What is the season # where production code is k1505?",
    "question_th": "ฤดูกาลอะไร #รหัสการผลิตคือ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_en": "What is the title of the episode with the original air date of february 6, 1997?",
    "question_th": "ตอนที่ออกอากาศตอนแรกวันที่ 6 กุมภาพันธ์ 2540 ชื่อว่าอะไร",
    "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_en": "How many titles are there for season 8",
    "question_th": "มีกี่ชื่อสำหรับฤดูกาลที่ 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_en": "Which tittles have an original air date of March 19, 1998",
    "question_th": "ซึ่งชื่อเรื่องมีกำหนดออกอากาศเดิมวันที่ 19 มีนาคม พ.ศ. 2541",
    "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_en": "What was the attendance of the game November 24",
    "question_th": "มีผู้เข้าชมเกมอะไรบ้างในวันที่ 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_en": "Who had the  highest assists on November 4",
    "question_th": "ที่ทำแอสซิสต์สูงสุดในวันที่ 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_en": "Who had the highest rebounds on November 4",
    "question_th": "ที่มีการรีบาวด์สูงสุดในวันที่ 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_en": "How many numbers were listed under attendance for March 2?",
    "question_th": "มีกี่หมายเลขที่อยู่ในรายการเข้าร่วมในวันที่ 2 มีนาคม",
    "context": "CREATE TABLE table_11959669_7 (location_attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_11959669_7 WHERE date = \"March 26\"",
    "question_en": "What was the final score on March 26?",
    "question_th": "ผลคะแนนสุดท้ายวันที่ 26 มีนาคม เป็นอย่างไร?",
    "context": "CREATE TABLE table_11959669_7 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_11959669_6 WHERE score = \"88–86\"",
    "question_en": "What is the team when the score is 88–86?",
    "question_th": "เมื่อสกอร์ 88–86 อยู่ทีมอะไร?",
    "context": "CREATE TABLE table_11959669_6 (team VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_11959669_6 WHERE high_points = \"Pierce (30)\"",
    "question_en": "What is the score when high points is from pierce (30)?",
    "question_th": "คะแนนสูงสุดมาจากเพียร์ซ (30) เท่าไหร่?",
    "context": "CREATE TABLE table_11959669_6 (score VARCHAR, high_points VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(location_attendance) FROM table_11959669_6 WHERE score = \"98–90\"",
    "question_en": "How many times is the score 98–90?",
    "question_th": "คะแนน 98–90 กี่ครั้ง?",
    "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_en": "What is the game that the location attendance is pepsi center 19,894?",
    "question_th": "เกมอะไรที่มียอดผู้เข้าร่วม 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_en": "What is the team when location attendance is us airways center 18,422?",
    "question_th": "ทีมงานเป็นอย่างไรบ้างเมื่อเข้าร่วมสถานที่คือสายการบินเราศูนย์ 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_en": "What is the record where high assists is pierce (6)?",
    "question_th": "สถิติแอสซิสต์สูงทะลุ (6) คืออะไร?",
    "context": "CREATE TABLE table_11959669_6 (record VARCHAR, high_assists VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_11960407_2 WHERE team = \"@ Cleveland\"",
    "question_en": "What was the result of the game when the raptors played @ cleveland?",
    "question_th": "ผลการแข่งขันเมื่อแร็พเตอร์สเล่น @คลีฟแลนด์ เป็นอย่างไร?",
    "context": "CREATE TABLE table_11960407_2 (score VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_11960196_3 WHERE game = 5",
    "question_en": "Who did the high points of game 5?",
    "question_th": "ใครทำแต้มสูงสุดในเกมที่ 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_en": "How many high points were at the wachovia center 18,347?",
    "question_th": "ศูนย์วาโชเวีย 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_en": "What is the team of april 25?",
    "question_th": "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_en": "Who had the high rebounds when Chris Bosh (16) had the high points?",
    "question_th": "ใครมีการรีบาวด์สูงเมื่อ Chris Bosh (16) มีแต้มสูง?",
    "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_en": "What was the score when the location attendance was Air Canada Centre 18,067?",
    "question_th": "คะแนนเมื่อเข้าร่วมสถานที่คือ Air Canada Center 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_en": "When did Chris Bosh (14) have the high rebounds?",
    "question_th": "Chris Bosh (14) มีการรีบาวน์สูงเมื่อใด?",
    "context": "CREATE TABLE table_11960407_4 (date VARCHAR, high_rebounds VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_11960407_4 WHERE date = \"January 23\"",
    "question_en": "Who had the high points on January 23?",
    "question_th": "ใครมีแต้มสูงสุดในวันที่ 23 มกราคม?",
    "context": "CREATE TABLE table_11960407_4 (high_points VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(record) FROM table_11960407_4 WHERE game = 39",
    "question_en": "How many times was the game 39?",
    "question_th": "เกม 39 กี่ครั้ง?",
    "context": "CREATE TABLE table_11960407_4 (record VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT MAX(game) FROM table_11960610_10 WHERE team = \"San Antonio\"",
    "question_en": "What is San Antonio  game number?",
    "question_th": "หมายเลขเกมซานอันโตนิโอคืออะไร?",
    "context": "CREATE TABLE table_11960610_10 (game INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_11960610_10 WHERE high_rebounds = \"Gray (8)\"",
    "question_en": "Who had high points when high rebound is gray (8)?",
    "question_th": "ใครมีแต้มสูงเมื่อรีบาวด์สูงเป็นสีเทา (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_en": "What is the date deng (20) had high points?",
    "question_th": "วันที่เติ้ง (20) มีคะแนนสูงคือเมื่อไร?",
    "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_en": "What was the score of united center 22,097?",
    "question_th": "ยูไนเต็ดเซ็นเตอร์ 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_en": "When gordon (27) had high points, what was the number of high assists?",
    "question_th": "เมื่อกอร์ดอน (27) มีคะแนนสูง แอสซิสต์สูงเป็นเท่าใด",
    "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_en": "What was the location attendance on the date of November 15?",
    "question_th": "การเข้าร่วมสถานที่ในวันที่ 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_en": "Where was the game played when the high assists were scored by billups , stuckey (4)?",
    "question_th": "เกมนี้เล่นที่ไหนเมื่อแอสซิสต์สูงทำได้โดยบิลอัพ , ติดค้าง (4)?",
    "context": "CREATE TABLE table_11960944_11 (location_attendance VARCHAR, high_assists VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_11960944_11 WHERE score = \"L 88–79\"",
    "question_en": "What date was the game for the score  L 88–79?",
    "question_th": "คะแนน L 88–79 แข่งขันกันวันไหน?",
    "context": "CREATE TABLE table_11960944_11 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(high_points) FROM table_11960944_7 WHERE game = 67",
    "question_en": "How many high points were there in the game 67?",
    "question_th": "ในเกม 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_en": "Which team was played when the high points was from Wallace (20)?",
    "question_th": "ทีมไหนเล่นตอนคะแนนสูงมาจากวอลเลซ (20)?",
    "context": "CREATE TABLE table_11960944_4 (team VARCHAR, high_points VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_11960944_4 WHERE team = \"@ Memphis\"",
    "question_en": "Which date was the team playing @ Memphis?",
    "question_th": "ทีมเล่น @เมมฟิส วันไหน?",
    "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_en": "how many times was the high rebounds by Mcdyess (9) and the high assists was by Billups (10)?",
    "question_th": "Mcdyess (9) รีบาวด์สูงกี่ครั้งและ 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_en": "Who had the high assists on the date December 12?",
    "question_th": "วันที่ 12 ธันวาคม ใครทำแอสซิสต์ได้สูงที่สุด?",
    "context": "CREATE TABLE table_11960944_4 (high_assists VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_11960944_6 WHERE game = 57",
    "question_en": "What date was game 57 held on?",
    "question_th": "เกม 57 จัดขึ้นวันไหน?",
    "context": "CREATE TABLE table_11960944_6 (date VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(high_points) FROM table_11960944_6 WHERE team = \"@ Milwaukee\"",
    "question_en": "How many players had the most points in the game @ Milwaukee?",
    "question_th": "มีผู้เล่นกี่คนที่มีคะแนนมากที่สุดในเกม @ Milwaukee?",
    "context": "CREATE TABLE table_11960944_6 (high_points VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_11961582_4 WHERE game = 24",
    "question_en": "Who did the most high rebounds in the game 24?",
    "question_th": "ใครทำรีบาวด์ได้มากที่สุดในเกม 24?",
    "context": "CREATE TABLE table_11961582_4 (high_rebounds VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_11961582_4 WHERE date = \"December 8\"",
    "question_en": "What was the score of the game played on December 8?",
    "question_th": "คะแนนของเกมที่เล่นในวันที่ 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_en": "What was the total number of games where A. Johnson (6) gave the most high assists?",
    "question_th": "จำนวนเกมทั้งหมดที่เอ. จอห์นสัน (6) แอสซิสต์สูงที่สุดคือเท่าใด?",
    "context": "CREATE TABLE table_11961582_4 (game VARCHAR, high_assists VARCHAR)"
  },
  {
    "answer": "SELECT MIN(game) FROM table_11961582_4",
    "question_en": "What's the minimal game number in the season?",
    "question_th": "หมายเลขเกมขั้นต่ำในฤดูกาลคือเท่าไร?",
    "context": "CREATE TABLE table_11961582_4 (game INTEGER)"
  },
  {
    "answer": "SELECT location_attendance FROM table_11961582_10 WHERE high_rebounds = \"A. Horford (13)\"",
    "question_en": "What is the location when the high rebounds was from A. Horford (13)?",
    "question_th": "ตำแหน่งไหนที่รีบาวด์สูงมาจาก เอ. ฮอร์ฟอร์ด (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_en": "How had the high points when the high assists were from J. Johnson (7)?",
    "question_th": "เจ. จอห์นสันมีคะแนนสูงแค่ไหนเมื่อแอสซิสต์สูง (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_en": "Who had the high rebounds when the high assists were from J. Johnson (7)?",
    "question_th": "ใครที่รีบาวด์ได้สูงเมื่อแอสซิสต์สูงมาจากเจ. จอห์นสัน (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_en": "Which team was played on April 20?",
    "question_th": "ทีมไหนลงเล่นในวันที่ 20 เมษายน?",
    "context": "CREATE TABLE table_11961582_10 (team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_11961582_10 WHERE date = \"April 23\"",
    "question_en": "Who had the high rebounds for the game on april 23?",
    "question_th": "ใครมีรีบาวด์สูงในเกมวันที่ 23 เมษายน?",
    "context": "CREATE TABLE table_11961582_10 (high_rebounds VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_11963601_11 WHERE date = \"May 11\"",
    "question_en": "What was the score in the game on May 11? ",
    "question_th": " สกอร์ในเกมวันที่ 11 พ.ค. เป็นอย่างไร?",
    "context": "CREATE TABLE table_11963601_11 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_11963601_11 WHERE date = \"May 3\"",
    "question_en": "Who was the high scorer and how much did they score in the game on May 3? ",
    "question_th": "ใครคือผู้ทำประตูสูงสุดและพวกเขาทำคะแนนได้เท่าไหร่ในเกมวันที่ 3 พฤษภาคม?",
    "context": "CREATE TABLE table_11963601_11 (high_points VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT series FROM table_11963601_11 WHERE game = 5",
    "question_en": "What was the series count at for game 5? ",
    "question_th": " ซีรีส์นี้มีจำนวนเท่าใดในเกมที่ 5?",
    "context": "CREATE TABLE table_11963601_11 (series VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_11963601_11 WHERE date = \"May 15\"",
    "question_en": "Where was the game on May 15 and how many were in attendance? ",
    "question_th": " เกมวันที่ 15 พฤษภาคมจัดขึ้นที่ไหนและมีผู้เข้าร่วมกี่คน?",
    "context": "CREATE TABLE table_11963601_11 (location_attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_11961582_7 WHERE date = \"March 17\"",
    "question_en": "What was the attendance on March 17?",
    "question_th": "ผู้เข้าร่วมในวันที่ 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_en": "What was the high assist total on May 11?",
    "question_th": "แอสซิสต์สูงสุดในวันที่ 11 พฤษภาคมเป็นเท่าใด?",
    "context": "CREATE TABLE table_11963536_11 (high_assists VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MIN(_number) FROM table_11964047_10",
    "question_en": "What is the lowest #?",
    "question_th": "#ต่ำสุดคือเท่าไร?",
    "context": "CREATE TABLE table_11964047_10 (_number INTEGER)"
  },
  {
    "answer": "SELECT score FROM table_11964047_10 WHERE streak = \"L5\"",
    "question_en": "What is the score of the game with the streak l5",
    "question_th": "คะแนนของเกมกับสตรีค l5 คืออะไร",
    "context": "CREATE TABLE table_11964047_10 (score VARCHAR, streak VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_11964047_10 WHERE home = \"Los Angeles Lakers\"",
    "question_en": "What is the attendance for the home game at Los Angeles Lakers?",
    "question_th": "การเข้าเล่นเกมเหย้าที่ลอสแอนเจลีส เลเกอร์สมีผู้ชมเข้าร่วมเป็นจำนวนเท่าใด?",
    "context": "CREATE TABLE table_11964047_10 (attendance VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_11964047_10 WHERE home = \"Los Angeles Lakers\"",
    "question_en": "What is the record for the game at home Los Angeles Lakers?",
    "question_th": "สถิติเกมในบ้าน ลอสแอนเจลิส เลเกอร์ส มีสถิติเป็นอย่างไร?",
    "context": "CREATE TABLE table_11964047_10 (record VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_11964047_6 WHERE _number = 29",
    "question_en": "What was the result and score of Game #29?",
    "question_th": "ผลลัพธ์และคะแนนของเกม #29 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_11964047_6 (score VARCHAR, _number VARCHAR)"
  },
  {
    "answer": "SELECT leading_scorer FROM table_11964047_6 WHERE _number = 26",
    "question_en": "Who was the leading scorer in Game #26?",
    "question_th": "ใครคือผู้ทำประตูสูงสุดในเกม #26?",
    "context": "CREATE TABLE table_11964047_6 (leading_scorer VARCHAR, _number VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_11964154_11 WHERE score = \"L 84–102 (OT)\"",
    "question_en": "Who had the high rebounds when the score was l 84–102 (ot)?",
    "question_th": "ใครมีการรีบาวด์สูงเมื่อสกอร์อยู่ที่ l 84–102 (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_en": "Who had the high assists when the high rebounds were from Nick Collison (15)?",
    "question_th": "ใครแอสซิสต์ได้สูงเมื่อรีบาวด์สูงมาจากนิค คอลลิสัน (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_en": "Who had the high assists @ Dallas?",
    "question_th": "ใครแอสซิสต์ได้สูง @ดัลลาส?",
    "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_en": "Who had the high assists when the location attendance was Toyota Center 18,370?",
    "question_th": "ใครมีผู้ช่วยเหลือสูงเมื่อเข้ารับตำแหน่งที่ศูนย์โตโยต้า 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_en": "What was the record when the high rebounds was from Nick Collison (11)?",
    "question_th": "สถิติการรีบาวด์สูงมาจากนิค คอลลิสัน (11) คืออะไร?",
    "context": "CREATE TABLE table_11964154_11 (record VARCHAR, high_rebounds VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(record) FROM table_11964154_7 WHERE score = \"L 96–123 (OT)\"",
    "question_en": "How many times was the final score  l 96–123 (ot)?",
    "question_th": "คะแนนสุดท้าย l 96–123 (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_en": "How many times was the high assists earl watson (5) and the date of the game was december 2?",
    "question_th": "เอิร์ลวัตสัน (5) แอสซิสต์สูงกี่ครั้งแล้ว และเกมคือวันที่ 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_en": "Whom did they play on game number 25?",
    "question_th": "พวกเขาเล่นเกมหมายเลข 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_en": "What is the number of the leading scorer for keyarena 16,640?",
    "question_th": "ผู้ทำประตูสูงสุดคีย์อารีน่า 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_en": "What is the number of leading scorer of february 21?",
    "question_th": "ผู้ทำประตูสูงสุดประจำวันที่ 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_en": "What is the leading scorer on february 1?",
    "question_th": "ผู้ทำประตูสูงสุดในวันที่ 1 กุมภาพันธ์คืออะไร?",
    "context": "CREATE TABLE table_11964047_8 (leading_scorer VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_11964047_9 WHERE record = \"35–33\"",
    "question_en": " what's the score where record is 35–33",
    "question_th": " คะแนนที่สถิติอยู่ที่ 35–33 คืออะไร",
    "context": "CREATE TABLE table_11964047_9 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_11964047_9 WHERE date = \"March 27\"",
    "question_en": " what's the home where date is march 27",
    "question_th": " บ้านอะไรวันที่ 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–30\"",
    "question_en": " what's the date where visitor is phoenix suns and record is 31–30",
    "question_th": " วันที่ผู้มาเยือนคือ phoenix suns และบันทึกคือ 31–30",
    "context": "CREATE TABLE table_11964047_9 (date VARCHAR, visitor VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_11964047_9 WHERE score = \"L 80–88\"",
    "question_en": " what's the home team where score is l 80–88",
    "question_th": " เจ้าบ้านคือทีมไหนที่มีสกอร์ 80–88",
    "context": "CREATE TABLE table_11964047_9 (home VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT leading_scorer FROM table_11964047_9 WHERE date = \"March 2\"",
    "question_en": " what's the leading scorer on march 2",
    "question_th": " ผู้ทำประตูสูงสุดในวันที่ 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_en": " what's the leading scorer where home is sacramento kings",
    "question_th": " ผู้ทำประตูสูงสุดคือทีมเหย้าคือ ซาคราเมนโต คิงส์",
    "context": "CREATE TABLE table_11964047_9 (leading_scorer VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_11964154_9 WHERE date = \"February 8\"",
    "question_en": " what's the team where date is february 8",
    "question_th": " ทีมไหนคือวันที่ 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_en": " what's the location attendance where high rebounds is nick collison (14)",
    "question_th": " ตำแหน่งที่ 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–92 (OT)\"",
    "question_en": " what's the record where score is w 105–92 (ot)",
    "question_th": " บันทึกที่คะแนนคือ 105–92 (ot) คืออะไร",
    "context": "CREATE TABLE table_11964154_9 (record VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_11964154_9 WHERE record = \"14–39\"",
    "question_en": " what's the location attendance where record is 14–39",
    "question_th": " ตำแหน่งผู้เข้าร่วมที่มีสถิติ 14–39 คือที่ไหน",
    "context": "CREATE TABLE table_11964154_9 (location_attendance VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT MAX(game) FROM table_11964154_9 WHERE high_points = \"Mickaël Gelabale (21)\"",
    "question_en": "what is the maximum game where high points is mickaël gelabale (21)",
    "question_th": "เกมสูงสุดที่มีแต้มสูงคือมิกคาเอล เจลาบาเล (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_en": " what's the record where location attendance is keyarena 13,627",
    "question_th": " บันทึกที่มีผู้เข้าร่วมประชุมอยู่ที่คีย์อารีน่า 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_en": "What is the score for april 29?",
    "question_th": "คะแนนของวันที่ 29 เมษายนเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_11964263_13 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MIN(game) FROM table_11964263_13",
    "question_en": "Name the minimum game",
    "question_th": "ตั้งชื่อเกมขั้นต่ำ",
    "context": "CREATE TABLE table_11964263_13 (game INTEGER)"
  },
  {
    "answer": "SELECT high_points FROM table_11964263_13 WHERE location_attendance = \"Toyota Center 18,269\"",
    "question_en": "Name the high points for toyota center 18,269?",
    "question_th": "บอกชื่อจุดสูงสุดของศูนย์โตโยต้า 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_en": "what's the preliminaries with average being 9.135",
    "question_th": "เบื้องต้นคือเท่าไร เฉลี่ยอยู่ที่ 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_en": "what's the evening gown with preliminaries being 9.212",
    "question_th": "ชุดราตรีวันที่ 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_en": "what's the interview with swimsuit being 9.140",
    "question_th": "สัมภาษณ์ว่าชุดว่ายน้ำเวลา 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_en": "what's the evening gown with swimsuit being 9.134",
    "question_th": "ชุดราตรีกับชุดว่ายน้ำอะไรคะ 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_en": "what's the preliminaries with average being 9.360",
    "question_th": "เบื้องต้นคือเท่าไร เฉลี่ยอยู่ที่ 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_en": "How many successors were seated in the New York 20th district?",
    "question_th": "มีผู้สืบทอดจำนวนกี่คนที่นั่งอยู่ในเขตที่ 20 ของนิวยอร์ก",
    "context": "CREATE TABLE table_1199219_2 (successor VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT playoffs FROM table_12002388_1 WHERE reg_season = \"1st, Southern\"",
    "question_en": "What playoff result happened during the season in which they finished 1st, southern?",
    "question_th": "ผลเพลย์ออฟใดที่เกิดขึ้นระหว่างฤดูกาลที่พวกเขาจบอันดับที่ 1 ทางใต้?",
    "context": "CREATE TABLE table_12002388_1 (playoffs VARCHAR, reg_season VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(division) FROM table_12002388_1 WHERE reg_season = \"4th\"",
    "question_en": "How many teams placed 4th in the regular season?",
    "question_th": "มีกี่ทีมที่ได้อันดับที่ 4 ในฤดูกาลปกติ?",
    "context": "CREATE TABLE table_12002388_1 (division VARCHAR, reg_season VARCHAR)"
  },
  {
    "answer": "SELECT open_cup FROM table_12002388_1 WHERE reg_season = \"4th\"",
    "question_en": "What was the result of the open cup when they finished 4th in the regular season?",
    "question_th": "อะไรคือผลลัพธ์ของโอเพ่นคัพเมื่อพวกเขาจบอันดับ 4 ในฤดูกาลปกติ?",
    "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_en": "How many open cups were hosted in 1993?",
    "question_th": "ในปี 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_en": "What year did they finish 1st, southern?",
    "question_th": "จบที่ 1 ภาคใต้ปีไหนครับ?",
    "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_en": "What was the playoff result for theteam in the apsl in 1992?",
    "question_th": "ผลการแข่งขันเพลย์ออฟของทีมใน APSL ในปี 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_en": "What was the status of tropartic?",
    "question_th": "สถานะของทรอพาร์ติกคืออะไร?",
    "context": "CREATE TABLE table_12001616_4 (status VARCHAR, car_name VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_12001616_4 WHERE entrant = \"Joe Gibbs Racing\"",
    "question_en": "What is the status of joe gibbs racing?",
    "question_th": "สถานะของ 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_en": "What is the laops of marcis auto racing?",
    "question_th": "laops ของ 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_en": "what's the author / editor / source with index (year) being press freedom (2007)",
    "question_th": "ผู้เขียน / บรรณาธิการ / แหล่งที่มาที่มีดัชนี (ปี) คืออะไร เสรีภาพสื่อ (2550)",
    "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_en": " how many countries sampled with year of publication being 2007 and ranking l.a. (2) being 7th",
    "question_th": " มีกี่ประเทศที่สุ่มตัวอย่างโดยปีที่ตีพิมพ์คือปี 2550 และอันดับที่ (2) อยู่ที่อันดับที่ 7",
    "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_en": "what's the author / editor / source with world ranking (1) being 73rd",
    "question_th": "ผู้เขียน / บรรณาธิการ / แหล่งที่มาที่มีอันดับโลก (1) อยู่ที่ 73 คืออะไร",
    "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_en": "How many losingteams were for the cup finaldate 20 August 1989?",
    "question_th": "มีทีมที่แพ้กี่ทีมในรอบชิงชนะเลิศบอลถ้วยวันที่ 20 สิงหาคม พ.ศ. 2532?",
    "context": "CREATE TABLE table_12028543_3 (losingteam VARCHAR, cup_finaldate VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(season) FROM table_12028543_3 WHERE losingteam = \"Adelaide City\"",
    "question_en": "How many seasons was the losing team Adelaide City?",
    "question_th": "ทีมที่แพ้แอดิเลดซิตี้กี่ฤดูกาล?",
    "context": "CREATE TABLE table_12028543_3 (season VARCHAR, losingteam VARCHAR)"
  },
  {
    "answer": "SELECT winningteam FROM table_12028543_3 WHERE season = \"1989\"",
    "question_en": "Who was the winning team in the 1989 season?",
    "question_th": "ทีมใดเป็นผู้ชนะในฤดูกาล 1989?",
    "context": "CREATE TABLE table_12028543_3 (winningteam VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT womens_doubles FROM table_12027364_1 WHERE womens_singles = \"Wu Jianqui\"",
    "question_en": "Who won the womens doubles when wu jianqui won the womens singles?",
    "question_th": "ใครชนะประเภทคู่หญิงเมื่อ wu jianqui ชนะประเภทหญิงเดี่ยว?",
    "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_en": "Who won the mixed doubles when ji xinpeng won the mens singles?",
    "question_th": "ใครชนะประเภทคู่ผสมเมื่อจีซินเผิงชนะประเภทชายเดี่ยว?",
    "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_en": "How many womens singles winners were there when peter rasmussen won the mens singles?",
    "question_th": "มีผู้ชนะประเภทหญิงเดี่ยวกี่คนเมื่อปีเตอร์ ราสมุสเซนชนะประเภทชายเดี่ยว",
    "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_en": "WHO WROTE THE STORY WITH THE PRODUCTION CODE OF 1ADK-03",
    "question_th": "ใครเป็นผู้เขียนเรื่องราวด้วยรหัสการผลิต 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_en": "Name the number of titles written by adam i. lapidus",
    "question_th": "ตั้งชื่อจำนวนชื่อเรื่องที่เขียนโดย adam i ลาพิดัส",
    "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_en": "Who directed the episode with a production code 3ADK-03?",
    "question_th": "ใครกำกับตอนด้วยรหัสการผลิต 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īnluó Qū\"",
    "question_en": "When pinyin is xīnluó qū, what is the simplified value?",
    "question_th": "เมื่อพินอินคือ xīnluó qū ค่าตัวย่อจะเป็นเท่าใด?",
    "context": "CREATE TABLE table_1204998_2 (simplified VARCHAR, pinyin VARCHAR)"
  },
  {
    "answer": "SELECT pinyin FROM table_1204998_2 WHERE english_name = \"Wuping County\"",
    "question_en": "What is the pinyin for the English name Wuping County?",
    "question_th": "พินอินของชื่อภาษาอังกฤษ 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_en": "What is the area of the English name Shanghang County?",
    "question_th": "พื้นที่ของชื่อภาษาอังกฤษว่า Shanghang County คืออะไร?",
    "context": "CREATE TABLE table_1204998_2 (area VARCHAR, english_name VARCHAR)"
  },
  {
    "answer": "SELECT pinyin FROM table_1204998_2 WHERE population = 374047",
    "question_en": "Which pinyin have a population of 374047?",
    "question_th": "พินอินใดมีประชากร 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_en": "How many NHL teams are there in the Phoenix, Arizona area?",
    "question_th": "มีทีม NHL กี่ทีมในพื้นที่ฟีนิกซ์ รัฐแอริโซนา",
    "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_en": "What is the media market ranking for the Blackhawks?",
    "question_th": "อันดับตลาดสื่อสำหรับ 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_en": "What is the the name of the NHL team that is in the same market as the NBA team, Nuggets?",
    "question_th": "ทีม NHL ที่อยู่ในตลาดเดียวกับทีม NBA ชื่ออะไร นักเก็ต?",
    "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_en": "What is the NHL team in the media market ranking number 7?",
    "question_th": "ทีม NHL ในตลาดสื่ออันดับ 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_en": "How many netflow version are there when the vendor and type is enterasys switches?",
    "question_th": "มีเวอร์ชัน netflow กี่เวอร์ชันเมื่อผู้ขายและประเภทเป็นสวิตช์ enterasys",
    "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_en": "What are the comments when the  vendor and type is alcatel-lucent routers?",
    "question_th": "ความคิดเห็นเมื่อผู้ขายและประเภทเป็นเราเตอร์ alcatel-lucent คืออะไร",
    "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_en": "What are the comments when vendor and type is enterasys switches?",
    "question_th": "ความคิดเห็นเมื่อผู้ขายและประเภทเป็นสวิตช์ enterasys คืออะไร",
    "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_en": "What is the netflow version when vendor and type is pc and servers?",
    "question_th": "เวอร์ชัน netflow คืออะไรเมื่อผู้จำหน่ายและประเภทเป็นพีซีและเซิร์ฟเวอร์",
    "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_en": "What are the comments when the implementation is software running on central processor module?",
    "question_th": "มีความคิดเห็นอย่างไรเมื่อการใช้งานเป็นซอฟต์แวร์ที่ทำงานบนโมดูลโปรเซสเซอร์กลาง?",
    "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_en": "What is the implementation when the netflow version is v5, v8, v9, ipfix?",
    "question_th": "การใช้งานคืออะไรเมื่อเวอร์ชัน netflow คือ 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_en": "Name the minimum for prohibition?",
    "question_th": "ตั้งชื่อขั้นต่ำสำหรับการห้าม?",
    "context": "CREATE TABLE table_120778_1 (for_prohibition INTEGER)"
  },
  {
    "answer": "SELECT COUNT(jurisdiction) FROM table_120778_1 WHERE percent_for = \"57.3\"",
    "question_en": "What is the number of jurisdiction for 57.3 percent?",
    "question_th": "เขตอำนาจศาลร้อยละ 57.3 มีจำนวนเท่าใด?",
    "context": "CREATE TABLE table_120778_1 (jurisdiction VARCHAR, percent_for VARCHAR)"
  },
  {
    "answer": "SELECT MAX(for_prohibition) FROM table_120778_1",
    "question_en": "Name the max for prohibition.",
    "question_th": "ตั้งชื่อสูงสุดสำหรับการห้าม",
    "context": "CREATE TABLE table_120778_1 (for_prohibition INTEGER)"
  },
  {
    "answer": "SELECT percent_for FROM table_120778_1 WHERE against_prohibition = 2978",
    "question_en": "What is the percent for when against prohibition is 2978?",
    "question_th": "เมื่อต่อต้านการห้ามคือ 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_en": "What is the percent for in manitoba?",
    "question_th": "เปอร์เซ็นต์สำหรับแมนิโทบาคือเท่าไร?",
    "context": "CREATE TABLE table_120778_1 (percent_for VARCHAR, jurisdiction VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(train_name) FROM table_12095519_1 WHERE origin = \"Puri\"",
    "question_en": "How many trains leave from puri?",
    "question_th": "รถไฟไป ปูริ มีกี่สาย",
    "context": "CREATE TABLE table_12095519_1 (train_name VARCHAR, origin VARCHAR)"
  },
  {
    "answer": "SELECT train_no FROM table_12095519_1 WHERE destination = \"Amritsar\"",
    "question_en": "What train number is heading to amritsar?",
    "question_th": "รถไฟขบวนใดที่จะไป อมฤตสาร์?",
    "context": "CREATE TABLE table_12095519_1 (train_no VARCHAR, destination VARCHAR)"
  },
  {
    "answer": "SELECT frequency FROM table_12095519_1 WHERE origin = \"Sealdah\"",
    "question_en": "How often does a train leave sealdah?",
    "question_th": "รถไฟออกจาก sealdah บ่อยแค่ไหน?",
    "context": "CREATE TABLE table_12095519_1 (frequency VARCHAR, origin VARCHAR)"
  },
  {
    "answer": "SELECT destination FROM table_12095519_1 WHERE train_name = \"BG Express\"",
    "question_en": "Where does the bg express train end?",
    "question_th": "รถไฟด่วน bg สิ้นสุดที่ไหน?",
    "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_en": "What's the name of train number 15647/48?",
    "question_th": "รถไฟหมายเลข 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_en": "What is the number of nationality in 1992?",
    "question_th": "ปี 2535 มีสัญชาติเท่าใด",
    "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_en": "Who is the academic & University affairs when the Human resources & operations is N. Charles Hamilton?",
    "question_th": "ฝ่ายวิชาการและมหาวิทยาลัยคือใคร ในเมื่อฝ่ายทรัพยากรบุคคลและฝ่ายปฏิบัติการคือ 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_en": "What year was communications and corporate affairs held by Jeff Rotman?",
    "question_th": "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_en": "What was the built data for Knocklayd rebuild?",
    "question_th": "ข้อมูลที่สร้างขึ้นสำหรับการสร้าง Knocklayd ใหม่คืออะไร",
    "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_en": "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?",
    "question_th": "ข้อมูลที่สร้างใหม่มีกี่ครั้งที่ไม่สามารถจัดการอาร์กิวเมนต์การประทับเวลาที่ไม่ว่างเปล่าได้! 1929 และข้อมูลที่ถูกทิ้งมีไม่สามารถจัดการอาร์กิวเมนต์การประทับเวลาที่ไม่ว่างเปล่าได้! 2497?",
    "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_en": "What is the built data on the scrapped information that is cannot handle non-empty timestamp argument! 1947?",
    "question_th": "ข้อมูลที่สร้างขึ้นจากข้อมูลที่ถูกทิ้งซึ่งไม่สามารถจัดการอาร์กิวเมนต์การประทับเวลาที่ไม่ว่างเปล่าคืออะไร! 2490?",
    "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_en": "How many times was the rebuilt data cannot handle non-empty timestamp argument! 1934?",
    "question_th": "มีกี่ครั้งแล้วที่ข้อมูลที่สร้างขึ้นใหม่ไม่สามารถจัดการอาร์กิวเมนต์การประทับเวลาที่ไม่ว่างเปล่าได้! 2477?",
    "context": "CREATE TABLE table_12113888_1 (number VARCHAR, rebuilt VARCHAR)"
  },
  {
    "answer": "SELECT built FROM table_12113888_1 WHERE number = 34",
    "question_en": "What is the built data for number 34?",
    "question_th": "ข้อมูลที่สร้างขึ้นสำหรับหมายเลข 34 คืออะไร?",
    "context": "CREATE TABLE table_12113888_1 (built VARCHAR, number VARCHAR)"
  },
  {
    "answer": "SELECT MAX(number) FROM table_12113888_1",
    "question_en": "What is the highest number listed?",
    "question_th": "หมายเลขสูงสุดที่ระบุไว้คืออะไร?",
    "context": "CREATE TABLE table_12113888_1 (number INTEGER)"
  },
  {
    "answer": "SELECT womens_singles FROM table_12121208_1 WHERE mens_singles = \"Marc Zwiebler\"",
    "question_en": "Who won the womens singles when Marc Zwiebler won the men's singles?",
    "question_th": "ใครชนะประเภทหญิงเดี่ยวเมื่อ Marc Zwiebler ชนะประเภทชายเดี่ยว?",
    "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_en": "The 1.6 Duratec model/engine has how many torque formulas?",
    "question_th": "เครื่อง 1.6 ดูราเทค/เครื่อง มีสูตรแรงบิดกี่สูตร?",
    "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·m (lb·ft)/*N·m (lb·ft) @1750\"",
    "question_en": "For the model with torque of n·m (lb·ft)/*n·m (lb·ft) @1750, what is the power?",
    "question_th": "สำหรับรุ่นที่มีแรงบิด n·m (lb·ft)/*n·m (lb·ft) @1750 จะมีกำลังเท่าใด",
    "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_en": "For the model/engine of 1.8 Duratec HE, what is the torque?",
    "question_th": "สำหรับรุ่น/เครื่องยนต์ 1.8 Duratec HE แรงบิดเท่าไหร่?",
    "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_en": "How many capacities are possible for the 1.6 Duratec model/engine?",
    "question_th": "1.6 Duratec รุ่น/เครื่องยนต์ ความจุได้กี่ความจุ?",
    "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_en": "What is the torque formula for the model/engine which has 1,753 cc capacity?",
    "question_th": "สูตรแรงบิดของรุ่น/เครื่องยนต์ ความจุ 1,753 ซีซี คืออะไร?",
    "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_en": "What is the torque formula for the 1.6 Duratec ti-vct model/engine?",
    "question_th": "สูตรแรงบิดของเครื่องยนต์ 1.6 Duratec ti-vct คืออะไร?",
    "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_en": "what's the date of birth with end of term being 2april1969",
    "question_th": "วันเกิดวันที่เท่าไร สิ้นสุดภาคเรียนคือ 2 เมษายน 2512",
    "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_en": "who is the the president with date of inauguration being 4june1979",
    "question_th": "ซึ่งเป็นประธานาธิบดี โดยมีวันเข้ารับตำแหน่งคือวันที่ 4 มิถุนายน พ.ศ. 2522",
    "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_en": " how many president with date of inauguration being 4june1979",
    "question_th": "มีประธานาธิบดีกี่คน ซึ่งเข้ารับตำแหน่งคือวันที่ 4 มิถุนายน 2522",
    "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_en": "what's the date of birth with end of term being 5july1978",
    "question_th": "วันเกิดวันที่เท่าไร สิ้นสุดภาคเรียนคือ 5 กรกฎาคม 1978",
    "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_en": "what's the date of birth with # being 2",
    "question_th": "เกิดวันที่เท่าไหร่โดย # เป็น 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_en": " how many end of term with age at inauguration being 64-066 64years, 66days",
    "question_th": " จบวาระกี่ปี โดยอายุเข้ารับตำแหน่ง 64-066 64ปี 66วัน",
    "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_en": "Who was the winning pitcher on june 25?",
    "question_th": "ใครคือเหยือกที่ชนะในวันที่ 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_en": "How many games were on May 20?",
    "question_th": "วันที่ 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_en": "Who is the losing pitcher when the winning pitcher is roy oswalt?",
    "question_th": "ใครคือผู้แพ้ ในเมื่อผู้ขว้างที่ชนะคือ รอย ออสวอลต์?",
    "context": "CREATE TABLE table_12125069_2 (losing_pitcher VARCHAR, winning_pitcher VARCHAR)"
  },
  {
    "answer": "SELECT winning_pitcher FROM table_12125069_2 WHERE attendance = 38109",
    "question_en": "Who is the winning pitcher when attendance is 38109?",
    "question_th": "ใครคือผู้ชนะเหยือกเมื่อเข้าร่วมคือ 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_en": "How many NHL teams does Terry French play for?",
    "question_th": "Terry French เล่นให้กับทีม NHL กี่ทีม",
    "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_en": "Who's the player for the New York Rangers?",
    "question_th": "ใครคือผู้เล่นของทีม 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_en": "How many positions do the players of Chicago Black Hawks play in?",
    "question_th": "ผู้เล่นของ Chicago Black Hawks เล่นได้กี่ตำแหน่ง?",
    "context": "CREATE TABLE table_1213511_2 (position VARCHAR, nhl_team VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_1213511_2 WHERE nhl_team = \"Buffalo Sabres\"",
    "question_en": "What is the nationality of the player from Buffalo Sabres?",
    "question_th": "นักเตะบัฟฟาโล เซเบอร์ มีสัญชาติอะไร?",
    "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_en": "What position does the player from Peterborough Petes (OHA) play on?",
    "question_th": "นักเตะจากปีเตอร์โบโร่ พีทส์ (โอเอชเอ) เล่นตำแหน่งไหน?",
    "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_en": "What's Dave Fortier's pick number?",
    "question_th": "หมายเลขเลือกของ Dave Fortier คืออะไร",
    "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_en": "What team does George Hulme play for?",
    "question_th": "George Hulme เล่นให้กับทีมใด?",
    "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_en": "What position does Neil Komadoski play?",
    "question_th": "นีล โคมาดอสกี้ เล่นตำแหน่งอะไร?",
    "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_en": "where is team player mike mcniven played for?",
    "question_th": "ไมค์ แมคนิเวน นักเตะในทีมเล่นให้กับทีมไหน?",
    "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_en": "what college has nhl team chicago black hawks?",
    "question_th": "วิทยาลัยใดมีทีม nhl ชิคาโกแบล็กฮอว์กส์?",
    "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_en": "who is the player with the nationality of canada and pick # is 65?",
    "question_th": "ผู้เล่นสัญชาติแคนาดาและเลือก #หมายเลข 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_en": "How many teams did Bob Peppler play for?",
    "question_th": "Bob Peppler เล่นให้กับทีมจำนวนกี่ทีม?",
    "context": "CREATE TABLE table_1213511_3 (nhl_team VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_1213511_3 WHERE nhl_team = \"Philadelphia Flyers\"",
    "question_en": "What is the position listed for the team the Philadelphia Flyers?",
    "question_th": "ตำแหน่งใดของทีม 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_en": "How many nationalities are listed for the player Glen Irwin?",
    "question_th": "ผู้เล่น 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_en": "Which players have the position of centre and play for the nhl team new york rangers",
    "question_th": "ซึ่งผู้เล่นได้ตำแหน่งเซ็นเตอร์และเล่นให้กับทีมเอ็นเอชแอล นิวยอร์ก เรนเจอร์ส",
    "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_en": "Which nhl team has a college/junior/club team named university of notre dame (ncaa)",
    "question_th": "ทีม nhl ใดมีทีมวิทยาลัย / จูเนียร์ / สโมสรชื่อมหาวิทยาลัย 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_en": "what are all the position where player is al simmons",
    "question_th": "ตำแหน่งทั้งหมดที่ผู้เล่นคืออัล ซิมมอนส์",
    "context": "CREATE TABLE table_1213511_7 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_1213511_7 WHERE pick__number = 89",
    "question_en": "What nationality is pick # 89",
    "question_th": "เลือกสัญชาติอะไร #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_en": "Which college/junior/club teams nationality is canada and nhl team is minnesota north stars",
    "question_th": "ทีมวิทยาลัย/จูเนียร์/สโมสรใดที่เป็นสัญชาติแคนาดา และทีม nhl คือมินนิโซตานอร์ธสตาร์",
    "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_en": "what is the total number of pick # where nhl team is philadelphia flyers",
    "question_th": "จำนวนการเลือก # ที่ทีม nhl คือฟิลาเดลเฟียฟลายเออร์มีจำนวนเท่าใด",
    "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_en": "What is the nationality of the player from the Detroit Red Wings?",
    "question_th": "นักเตะทีมดีทรอยต์ เรดวิงส์ มีสัญชาติอะไร?",
    "context": "CREATE TABLE table_1213511_6 (nationality VARCHAR, nhl_team VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_1213511_6 WHERE player = \"Jim Johnston\"",
    "question_en": "What position does Jim Johnston play?",
    "question_th": "จิม จอห์นสตันเล่นตำแหน่งอะไร?",
    "context": "CREATE TABLE table_1213511_6 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT nhl_team FROM table_1213511_6 WHERE player = \"Pierre Duguay\"",
    "question_en": "Which team does Pierre Duguay play for?",
    "question_th": "ปิแอร์ ดูกวย ลงเล่นให้กับทีมใด?",
    "context": "CREATE TABLE table_1213511_6 (nhl_team VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_1213511_6 WHERE position = \"Goaltender\"",
    "question_en": "What country does the goaltender come from?",
    "question_th": "ผู้รักษาประตูมาจากประเทศอะไร?",
    "context": "CREATE TABLE table_1213511_6 (nationality VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT writer FROM table_12148018_2 WHERE viewers = \"5.16m\"",
    "question_en": " who is the writer where viewers is 5.16m",
    "question_th": " ใครเป็นนักเขียนที่มีคนดู 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_en": "For which league is the open cup the quarter finals",
    "question_th": "สำหรับลีกใดเป็นโอเพ่นคัพรอบก่อนรองชนะเลิศ",
    "context": "CREATE TABLE table_1214035_1 (league VARCHAR, open_cup VARCHAR)"
  },
  {
    "answer": "SELECT open_cup FROM table_1214035_1 WHERE year = 2002",
    "question_en": "What open cups where played in 2002",
    "question_th": "ถ้วยเปิดอะไรเล่นในปี 2545",
    "context": "CREATE TABLE table_1214035_1 (open_cup VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT league FROM table_1214035_1 WHERE division = \"3\"",
    "question_en": "What leagues includes division 3",
    "question_th": "ลีกใดบ้างที่มีดิวิชั่น 3",
    "context": "CREATE TABLE table_1214035_1 (league VARCHAR, division VARCHAR)"
  },
  {
    "answer": "SELECT playoffs FROM table_1214035_1 WHERE regular_season = \"7th, Southeast\"",
    "question_en": "What was the result of the playoffs when the regular season was 7th, southeast",
    "question_th": "ผลการแข่งขันรอบตัดเชือกเมื่อฤดูกาลปกติอยู่ที่ 7 ตะวันออกเฉียงใต้",
    "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_en": "What's the original air date of the episode with production code 2T6719?",
    "question_th": "วันที่ออกอากาศดั้งเดิมของตอนที่มีรหัสการผลิต 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_en": "Who's the writer of the episode see by 12.13 million US viewers?",
    "question_th": "ใครคือผู้เขียนตอนนี้ที่มีผู้ชม 12.13 ล้านคนในสหรัฐฯ",
    "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_en": "What's the total number of episodes with production code 2T6705?",
    "question_th": "รหัสการผลิต 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_en": "What's the total number of directors who've directed episodes seen by 11.34 million US viewers?",
    "question_th": "ผู้กำกับที่เคยกำกับตอนที่มีผู้ชมชาวอเมริกันจำนวน 11.34 ล้านคนดูมีจำนวนเท่าใด",
    "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_en": "What's the production code of the episode seen by 11.64 million US viewers?",
    "question_th": "รหัสการผลิตของตอนนี้ที่มีผู้ชม 11.64 ล้านคนในสหรัฐฯ เห็นคืออะไร",
    "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_en": "What is the winner women and third is italy and runner-up is finland?",
    "question_th": "ผู้ชนะคือผู้หญิงคนไหน อันดับสามคืออิตาลี และรองชนะเลิศคือฟินแลนด์",
    "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_en": "what's the report with fastest lap being felipe massa and winning driver being jenson button",
    "question_th": "รายงานที่มีรอบเร็วที่สุดคือเฟลิเป มาสซา และนักแข่งที่ชนะคือเจนสัน บัตตัน",
    "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_en": "what's the grand prix with winning driver being jenson button",
    "question_th": "อะไรคือรางวัลกรังด์ปรีซ์ที่นักแข่งที่ชนะคือปุ่มเจนสัน",
    "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_en": "who is the the pole position with grand prix being italian grand prix",
    "question_th": "ซึ่งเป็นตำแหน่งโพลโพซิชั่น โดยกรังด์ปรีซ์เป็นอิตาเลียนกรังด์ปรีซ์",
    "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_en": "who is the the fastest lap with grand prix being european grand prix",
    "question_th": "ซึ่งเป็นรอบที่เร็วที่สุดโดยกรังด์ปรีซ์คือ 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_en": "How many viewers, in millions, were for the episode directed by Tawnia McKiernan?",
    "question_th": "ตอนนี้มีผู้ชมกี่ล้านคนที่กำกับโดย 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_en": "How many episodes were written only by William N. Fordes?",
    "question_th": "มีกี่ตอนที่เขียนโดย 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_en": "How many U.S Viewers, in millions, were for series # 26?",
    "question_th": "มีผู้ชมในสหรัฐฯ จำนวนกี่ล้านคนสำหรับซีรีส์ # 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_en": "What is the third year course in science?",
    "question_th": "วิทยาศาสตร์ปี3วิชาอะไรคะ?",
    "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_en": "What is the second year class following pag-unawa?",
    "question_th": "ชั้นปีที่สองต่อจาก ปัจ-อุนาวา คืออะไร?",
    "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_en": "How many classes are taken in the third year when pag-unawa was taken in the first year?",
    "question_th": "ปีที่สามที่พัคอุนาวาเรียนในปีแรกมีกี่วิชา?",
    "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_en": "What is the first year course in the program where geometry is taken in the third year?",
    "question_th": "หลักสูตรปีแรกในหลักสูตรที่เปิดสอนเรขาคณิตในปีที่สามคืออะไร?",
    "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_en": "What is the second year course in the program where physics is taken in the fourth year?",
    "question_th": "หลักสูตรปีที่สองในหลักสูตรที่เรียนฟิสิกส์ในปีที่สี่คืออะไร?",
    "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_en": "Who won the womens singles event the year that Jonas Lyduch won?",
    "question_th": "ใครเป็นผู้ชนะงานหญิงเดี่ยวในปีที่ Jonas Lyduch ชนะ?",
    "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_en": "Who won the mens doubles the year Alison Humby won the womens singles?",
    "question_th": "ใครชนะประเภทชายคู่ในปีที่ Alison Humby ชนะประเภทหญิงเดี่ยว?",
    "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_en": "How many years did Peter Mikkelsen win the Mens Singles?",
    "question_th": "Peter Mikkelsen ชนะการแข่งขัน Men 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_en": "Who won the Men's Doubles when Karina de Wit won the Women's Singles?",
    "question_th": "ใครชนะประเภทชายคู่เมื่อ Karina de Wit ชนะประเภทหญิงเดี่ยว?",
    "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_en": "How many Mixed Doubles won when Oliver Pongratz won the Men's Singles?",
    "question_th": "Oliver Pongratz ชนะประเภทคู่ผสมได้กี่คู่?",
    "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_en": "Who won the Men's Doubles when Guo Xin won the Women's Singles?",
    "question_th": "ใครชนะประเภทชายคู่เมื่อ Guo Xin ชนะประเภทหญิงเดี่ยว?",
    "context": "CREATE TABLE table_12164707_1 (mens_doubles VARCHAR, womens_singles VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_12165999_1 WHERE player = \"Dennis Byrd\"",
    "question_en": "Which college did Dennis Byrd come from?",
    "question_th": "Dennis Byrd มาจากวิทยาลัยใด",
    "context": "CREATE TABLE table_12165999_1 (college VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT afl_team FROM table_12165999_1 WHERE player = \"Bob Johnson\"",
    "question_en": "Bob Johnson plays for which AFL team?",
    "question_th": "Bob Johnson เล่นให้กับทีม AFL ใด",
    "context": "CREATE TABLE table_12165999_1 (afl_team VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_12165999_1 WHERE afl_team = \"Cincinnati Bengals\"",
    "question_en": "What position does the Cincinnati Bengals' player have?",
    "question_th": "ผู้เล่นของ Cincinnati Bengals มีตำแหน่งอะไร?",
    "context": "CREATE TABLE table_12165999_1 (position VARCHAR, afl_team VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_12165999_1 WHERE college = \"Syracuse\"",
    "question_en": "What position does Syracuse's player have?",
    "question_th": "ผู้เล่นของซีราคิวส์มีตำแหน่งอะไร?",
    "context": "CREATE TABLE table_12165999_1 (position VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_12165999_1 WHERE afl_team = \"Cincinnati Bengals\"",
    "question_en": "What college did the Cincinnati Bengals' player come from?",
    "question_th": "ผู้เล่นของ Cincinnati Bengals มาจากวิทยาลัยใด",
    "context": "CREATE TABLE table_12165999_1 (college VARCHAR, afl_team VARCHAR)"
  },
  {
    "answer": "SELECT pinyin FROM table_1216675_1 WHERE translation = \"Explaining Music\"",
    "question_en": "What is the pinyin for explaining music?",
    "question_th": "พินอินในการอธิบายดนตรีคืออะไร?",
    "context": "CREATE TABLE table_1216675_1 (pinyin VARCHAR, translation VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(subject) FROM table_1216675_1 WHERE pinyin = \"Shixun\"",
    "question_en": "How many subjects have the pinyin shixun?",
    "question_th": "มีกี่วิชาที่มีพินอิน ซือซุน?",
    "context": "CREATE TABLE table_1216675_1 (subject VARCHAR, pinyin VARCHAR)"
  },
  {
    "answer": "SELECT pinyin FROM table_1216675_1 WHERE translation = \"Explaining Beasts\"",
    "question_en": "What is the pinyin for explaining beasts?",
    "question_th": "พินอินที่ใช้อธิบายสัตว์คืออะไร?",
    "context": "CREATE TABLE table_1216675_1 (pinyin VARCHAR, translation VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(pinyin) FROM table_1216675_1 WHERE chinese = \"釋蟲\"",
    "question_en": "How many pinyin transaltions are available for the chinese phrase 釋蟲?",
    "question_th": "วลีภาษาจีน 釋蟲 มีการแปลพินอินได้กี่แบบ",
    "context": "CREATE TABLE table_1216675_1 (pinyin VARCHAR, chinese VARCHAR)"
  },
  {
    "answer": "SELECT MIN(chapter) FROM table_1216675_1 WHERE pinyin = \"Shiqiu\"",
    "question_en": "What chapter number is Shiqiu?",
    "question_th": "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_en": "How many mens doubles when womens doubles is catrine bengtsson margit borg?",
    "question_th": "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_en": "Who is the mens doubles when womens doubles is anastasia chervyakova romina gabdullina?",
    "question_th": "ชายคู่คือใคร เมื่อหญิงคู่คืออนาสตาเซีย เชอร์เวียโควา โรมินา แกบดุลลินา?",
    "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_en": "Who is themens doubles when the mens singles is flemming delfs?",
    "question_th": "ธีมของใครเป็นสองเท่าเมื่อชายเดี่ยวกำลังเฟลมมิงเดลฟ์?",
    "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_en": "Who was the womens doubles when the mixed doubles is jacco arends selena piek?",
    "question_th": "หญิงคู่คือใคร ในเมื่อคู่ผสมคือ จาคโค่ อาเรนด์ เซเลนา เปียก?",
    "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ørensen\"",
    "question_en": "Who was the mens doubles when womens singles is mette sørensen?",
    "question_th": "ชายคู่คือใครเมื่อหญิงเดี่ยวคือ mette sorensen?",
    "context": "CREATE TABLE table_12171145_1 (mens_doubles VARCHAR, womens_singles VARCHAR)"
  },
  {
    "answer": "SELECT motogp_winner FROM table_12186237_1 WHERE circuit = \"Catalunya\"",
    "question_en": "Who is the Motogp winnder for the Catalunya Circuit?",
    "question_th": "ใครคือผู้ชนะ Motogp ของ 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_en": "Who is the 125cc winnder for the Phillip Island circuit?",
    "question_th": "ใครคือผู้ชนะ 125cc สำหรับสนาม 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_en": "What is the date of the German Grand Prix?",
    "question_th": "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_en": "What circuit was on the date 4 May?",
    "question_th": "วันที่ 4 พ.ค.เป็นวงจรอะไรครับ?",
    "context": "CREATE TABLE table_12186237_1 (circuit VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(mens_doubles) FROM table_12193259_1 WHERE season = \"2004/2005\"",
    "question_en": "Name the number of mens doubles for 2004/2005",
    "question_th": "ตั้งชื่อจำนวนชายคู่ประจำปี 2547/2548",
    "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_en": "Name the total number for mens single for 2002/2003",
    "question_th": "แจ้งยอดรวมชายโสด ปี 2545/2546",
    "context": "CREATE TABLE table_12193259_1 (mens_singles VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT mens_singles FROM table_12193259_1 WHERE season = \"1944/1945\"",
    "question_en": "Name the mens singles for 1944/1945",
    "question_th": "ตั้งชื่อชายเดี่ยวสำหรับปี 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_en": "How many times was pernell whitaker an opponent?",
    "question_th": "เพอร์เนล วิเทเกอร์เป็นคู่ต่อสู้กี่ครั้ง?",
    "context": "CREATE TABLE table_12206918_2 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT number FROM table_12206918_2 WHERE opponent = \"Iran Barkley\"",
    "question_en": "How many times was iran barkley an opponent?",
    "question_th": "อิหร่าน บาร์คลีย์เป็นคู่ต่อสู้กี่ครั้ง?",
    "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_en": "Who was the opponent when the result was ud 12/12 and date was 1993-05-22?",
    "question_th": "คู่ต่อสู้คือใครเมื่อผลการแข่งขันคือ ud 12/55 และวันที่คือ 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_en": "How many opponents fought on 1982-12-03?",
    "question_th": "มีคู่ต่อสู้กี่คนที่ต่อสู้กันในปี 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_en": "What is the name of the title winner in the ring light heavyweight (175) division?",
    "question_th": "ผู้ชนะตำแหน่งในรุ่นไลต์เฮฟวี่เวต (175) ชื่ออะไร",
    "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_en": "How many trains call at Castor, Overton, Peterborough East and are operated by LNWR?",
    "question_th": "มีสถานีใดบ้างที่ให้บริการรถไฟจาก Castor, Overton, Peterborough East และให้บริการโดย 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_en": "Who won the mens singles in 2009?",
    "question_th": "ใครชนะประเภทชายเดี่ยวในปี 2552?",
    "context": "CREATE TABLE table_12204717_1 (mens_singles VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT colors FROM table_1221089_1 WHERE institution = \"University of Richmond\"",
    "question_en": "What are the the University of Richmond's school colors?",
    "question_th": "โรงเรียนของมหาวิทยาลัยริชมอนด์มีสีอะไร?",
    "context": "CREATE TABLE table_1221089_1 (colors VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT colors FROM table_1221089_1 WHERE institution = \"University of New Hampshire\"",
    "question_en": "What are the school colors of the University of New Hampshire?",
    "question_th": "สีประจำโรงเรียนของ 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_en": "What's the name of the central bank in the country where Colombian Peso (cop) is the local currency?",
    "question_th": "ธนาคารกลางในประเทศที่ใช้เงินเปโซของโคลอมเบีย (ตำรวจ) เป็นสกุลเงินท้องถิ่นชื่ออะไร",
    "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_en": "what's the minimum production code written by jay sommers & dick chevillat and al schwartz",
    "question_th": "รหัสการผลิตขั้นต่ำคือเท่าไรที่เขียนโดย jay sommers & dick chevillat และ 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_en": "what's the total number of title for production code 39",
    "question_th": "รหัสการผลิต 39 มีทั้งหมดกี่เรื่อง",
    "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_en": "Who wrote the episode 14 in series?",
    "question_th": "ใครเป็นคนเขียนซีรีส์ตอนที่ 14?",
    "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_en": "Who directed the episode with production code 28?",
    "question_th": "ใครกำกับตอนที่มีรหัสการผลิต 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_en": "What's the title of the episode with a season number 25?",
    "question_th": "ตอนที่มีซีซั่นที่ 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_en": "What's the title of the episode with a production code 136?",
    "question_th": "ชื่อตอนที่มีรหัสการผลิต 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_en": "What episode was written by Bobby Bell and Bill Lee?",
    "question_th": "Bobby Bell และ 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_en": "How many women doubles teams competed in the same year as when Jamie van Hooijdonk competed in men singles?",
    "question_th": "มีทีมหญิงคู่กี่ทีมที่แข่งขันในปีเดียวกับที่ Jamie van Hooijdonk แข่งขันประเภทชายเดี่ยว",
    "context": "CREATE TABLE table_12232843_1 (womens_doubles VARCHAR, mens_singles VARCHAR)"
  },
  {
    "answer": "SELECT MAX(hull_numbers) FROM table_12232526_2",
    "question_en": "what is the maximum number of hull numbers?",
    "question_th": "จำนวนตัวถังสูงสุดคือเท่าไร?",
    "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_en": "who is the class where note is reportedly still active as of 2012?",
    "question_th": "ใครคือชั้นเรียนที่มีรายงานว่าโน้ตยังคงใช้งานอยู่ในปี 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_en": "what is the maximum number of hull nunbers where ship name is kri yos sudarso?",
    "question_th": "จำนวนสูงสุดของเรือแม่ชีที่มีชื่อเรือคือ 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_en": "What titles were fought for on 1997-04-12?",
    "question_th": "มีการแข่งขันชิงแชมป์อะไรในวันที่ 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_en": "What is the date of the match for the lineal super lightweight (140)?",
    "question_th": "แข่งขันวันที่เท่าไหร่ ไลน์เนียล ซูเปอร์ไลต์เวต (140)?",
    "context": "CREATE TABLE table_12262182_2 (date VARCHAR, titles VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_12262182_2 WHERE titles = \"WBC Flyweight (112)\"",
    "question_en": "What is the date of the match for the wbc flyweight (112) title?",
    "question_th": "ศึกชิงแชมป์ WBC รุ่นฟลายเวต (112) ตรงกับวันไหน?",
    "context": "CREATE TABLE table_12262182_2 (date VARCHAR, titles VARCHAR)"
  },
  {
    "answer": "SELECT young_rider_classification FROM table_12261714_2 WHERE stage = \"12\"",
    "question_en": "Who's the leader in the young rider classification in stage 12?",
    "question_th": "ใครคือผู้นำในประเภทนักบิดรุ่นเยาว์ในสเตจ 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_en": "Who's leading in the general classification in stage 1a?",
    "question_th": "ใครเป็นผู้นำในการจัดประเภททั่วไปในระยะ 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_en": "How many leaders are there in the intergiro classification in stage 20?",
    "question_th": "มีผู้นำกี่คนในการจัดประเภท Intergiro ในระยะที่ 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_en": "What's the leader team in the Trofeo Fast Team in stage 20?",
    "question_th": "ทีมผู้นำใน Trofeo Fast Team ในสเตจ 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_en": "Who's the winner in stage 1a, where the leader in the young rider classification is Francesco Casagrande?",
    "question_th": "ใครคือผู้ชนะในระยะ 1a โดยที่ผู้นำในประเภทนักแข่งรุ่นเยาว์คือ 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_en": "Name the general classification of stage 15",
    "question_th": "ตั้งชื่อการจำแนกประเภททั่วไปของระยะที่ 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_en": "Name the trofeo fast team of stage 2",
    "question_th": "ตั้งชื่อทีม trofeo fast ของสเตจที่ 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_en": "Name the young rider classification with laudelino cubino",
    "question_th": "ตั้งชื่อประเภทนักบิดรุ่นเยาว์ด้วย 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_en": "Name the total number of trofeo fast team of stage 16",
    "question_th": "แจ้งจำนวนทีม trofeo fast สเตจที่ 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_en": "What kind of bleeding does aspirin cause?",
    "question_th": "แอสไพรินทำให้เกิดเลือดออกประเภทใด?",
    "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_en": "How in prothrombin affected by glanzmann's thrombasthenia.",
    "question_th": "prothrombin ได้รับผลกระทบจาก thrombasthenia ของ glanzmann อย่างไร",
    "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_en": "How long does thromboplastin last when prothrombin is unaffected?",
    "question_th": "thromboplastin จะอยู่ได้นานแค่ไหนเมื่อ prothrombin ไม่ได้รับผลกระทบ?",
    "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_en": "Is uremia affect prothrombin?",
    "question_th": "uremia ส่งผลต่อ 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_en": "Is prothrombin time long when thromboplastin is prolonged?",
    "question_th": "เวลาของ prothrombin นานเมื่อ thromboplastin ยืดเยื้อหรือไม่?",
    "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_en": "How many live births were there in 2006 in South Yorkshire (met county)?",
    "question_th": "มีการเกิดมีชีพกี่ครั้งในปี 2549 ในเซาท์ยอร์กเชียร์ (พบกับเคาน์ตี)",
    "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_en": "How many TFR were there in 2006 when the GFR was 53.8?",
    "question_th": "มี TFR กี่รายการในปี 2549 เมื่อ GFR อยู่ที่ 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_en": "How many times was the GFR 2006 equal to 53.2?",
    "question_th": "GFR 2006 เท่ากับ 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_en": "How many mens doubles took place in 1970/1971?",
    "question_th": "มีชายคู่กี่คู่ในปี 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_en": "Where were the Womens Doubles in the 1951/1952 season and who won?",
    "question_th": "หญิงคู่ในฤดูกาล 1951/1952 อยู่ที่ไหน และใครชนะ?",
    "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_en": "Who was the womens singles winnerwhen the mens doubles were  stefan karlsson claes nordin , bk aura gbk?",
    "question_th": "ใครคือผู้ชนะประเภทหญิงเดี่ยวเมื่อประเภทชายคู่คือ 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_en": "Who were the winners of mens doubles in the 1986/1987 season held?",
    "question_th": "ใครคือผู้ชนะชายคู่ในฤดูกาล 1986/1987?",
    "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åhl , AIK\"",
    "question_en": "Who won the Mens Singles when the Mixed doubles went to Stellan Mohlin Kerstin Ståhl , Aik?",
    "question_th": "ใครเป็นผู้ชนะประเภทชายเดี่ยวเมื่อประเภทคู่ผสมตกเป็นของ Stellan Mohlin Kerstin Ståhl , 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_en": "Who won the womens singles in the 1958/1959 season?",
    "question_th": "ใครเป็นผู้ชนะประเภทหญิงเดี่ยวในฤดูกาล 1958/1959?",
    "context": "CREATE TABLE table_12266757_1 (womens_singles VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT county FROM table_12280396_1 WHERE isolation__km_ = 29",
    "question_en": "What county is in isolation of 29?",
    "question_th": "จังหวัดใดอยู่แยก 29?",
    "context": "CREATE TABLE table_12280396_1 (county VARCHAR, isolation__km_ VARCHAR)"
  },
  {
    "answer": "SELECT county FROM table_12280396_1 WHERE elevation__m_ = 1262",
    "question_en": "What is the county with an elevation of 1262?",
    "question_th": "มณฑลที่มีระดับความสูง 1262 คืออะไร?",
    "context": "CREATE TABLE table_12280396_1 (county VARCHAR, elevation__m_ VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_12280396_1 WHERE municipality = \"Sunndal\"",
    "question_en": "Name the rank where the municipality is sunndal?",
    "question_th": "ชื่อยศที่เทศบาลคือซันดาล?",
    "context": "CREATE TABLE table_12280396_1 (rank VARCHAR, municipality VARCHAR)"
  },
  {
    "answer": "SELECT county FROM table_12280396_1 WHERE peak = \"Indre Russetind\"",
    "question_en": "Name the county with the peak being indre russetind?",
    "question_th": "ตั้งชื่อเคาน์ตีที่มียอดเขาเป็นอินเดรรัสเซตินใช่ไหม?",
    "context": "CREATE TABLE table_12280396_1 (county VARCHAR, peak VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(rank) FROM table_12280396_1 WHERE peak = \"Fresvikbreen\"",
    "question_en": "What is the number of rank of peak fresvikbreen?",
    "question_th": "พีค เฟรสวิคบรีน มีอันดับเท่าไหร่?",
    "context": "CREATE TABLE table_12280396_1 (rank VARCHAR, peak VARCHAR)"
  },
  {
    "answer": "SELECT mens_singles FROM table_12275551_1 WHERE womens_singles = \"Sayaka Sato\"",
    "question_en": "Who won the mens singles when sayaka sato won the womens singles?",
    "question_th": "ใครชนะประเภทชายเดี่ยวเมื่อซายากะ ซาโตชนะประเภทหญิงเดี่ยว?",
    "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_en": "When did Chetan Anand win his first men's single?",
    "question_th": "เชตัน อานันท์ ชนะซิงเกิลชายคนแรกเมื่อใด",
    "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_en": "How many times did Niels Christian Kaldau win the men's single and Pi Hongyan win the women's single in the same year?",
    "question_th": "Niels Christian Kaldau ชนะซิงเกิลชายกี่ครั้ง และ Pi Hongyan ชนะซิงเกิลหญิงในปีเดียวกันกี่ครั้ง?",
    "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_en": "Who won the men's double when Chou Tien-Chen won the men's single?",
    "question_th": "ใครชนะประเภทชายคู่เมื่อ Chou Tien-Chen ชนะประเภทชายเดี่ยว?",
    "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_en": "What team was promoted in the Serbian League East in the same season when Kolubara was promoted in the Serbian League Belgrade?",
    "question_th": "ทีมใดได้เลื่อนชั้นในเซอร์เบียลีกตะวันออกในฤดูกาลเดียวกับที่โคลูบาราได้เลื่อนชั้นในเซอร์เบียลีกเบลเกรด?",
    "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_en": "what's the series with reverse being swimming",
    "question_th": "ซีรีส์เรื่อง Reverse is Swimming คืออะไร",
    "context": "CREATE TABLE table_12284476_8 (series VARCHAR, reverse VARCHAR)"
  },
  {
    "answer": "SELECT alloy FROM table_12284476_8 WHERE series = \"II series\"",
    "question_en": "what's the alloy with series being ii series",
    "question_th": "โลหะผสมที่มีซีรีย์เป็นซีรีย์ ii คืออะไร",
    "context": "CREATE TABLE table_12284476_8 (alloy VARCHAR, series VARCHAR)"
  },
  {
    "answer": "SELECT denomination FROM table_12284476_8 WHERE year = 2008 AND reverse = \"Football\"",
    "question_en": "what's the denomination with year being 2008 and reverse being football",
    "question_th": "ปี 2551 เปลี่ยนชื่อเป็นอะไร และกลับกันเป็นฟุตบอล",
    "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_en": " how many reverse with series being iii series",
    "question_th": " กี่กลับกันโดยที่ซีรีย์เป็นซีรีย์ iii",
    "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_en": "How many times did kingfisher east bengal fc win?",
    "question_th": "คิงฟิชเชอร์ อีสท์ เบงกอล เอฟซี ชนะกี่ครั้ง?",
    "context": "CREATE TABLE table_12303563_1 (winners INTEGER, nation VARCHAR)"
  },
  {
    "answer": "SELECT MAX(winners) FROM table_12303563_1 WHERE nation = \"BEC Tero Sasana\"",
    "question_en": "How many times did bec tero sasana win?",
    "question_th": "เบค เทโรศาสน ชนะกี่ครั้ง?",
    "context": "CREATE TABLE table_12303563_1 (winners INTEGER, nation VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_1231316_5 WHERE nation = \"Nigeria\"",
    "question_en": "Nigeria competed on July2, 1999.",
    "question_th": "ไนจีเรียลงแข่งขันเมื่อวันที่ 2 กรกฎาคม พ.ศ. 2542",
    "context": "CREATE TABLE table_1231316_5 (date VARCHAR, nation VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(fastest_time__s_) FROM table_1231316_5 WHERE nation = \"Nigeria\"",
    "question_en": "Nigeria had the fastest time once.",
    "question_th": "ไนจีเรียมีเวลาที่เร็วที่สุดครั้งหนึ่ง",
    "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_en": " how many runners-up with nation being india",
    "question_th": " รองชนะเลิศกี่คน โดยชาติคืออินเดีย",
    "context": "CREATE TABLE table_12303563_2 (runners_up VARCHAR, nation VARCHAR)"
  },
  {
    "answer": "SELECT runners_up FROM table_12303563_2 WHERE nation = \"Malaysia\"",
    "question_en": "what's the runners-up with nation being malaysia",
    "question_th": "รองชนะเลิศคือประเทศมาเลเซีย",
    "context": "CREATE TABLE table_12303563_2 (runners_up VARCHAR, nation VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(winners) FROM table_12303563_2 WHERE _number = 4",
    "question_en": " how many winners with # being 4",
    "question_th": " มีผู้ชนะกี่คนโดย # เป็น 4",
    "context": "CREATE TABLE table_12303563_2 (winners VARCHAR, _number VARCHAR)"
  },
  {
    "answer": "SELECT MAX(winners) FROM table_12303563_2",
    "question_en": "how many maximum winners",
    "question_th": "มีผู้ชนะสูงสุดกี่คน",
    "context": "CREATE TABLE table_12303563_2 (winners INTEGER)"
  },
  {
    "answer": "SELECT winners FROM table_12303563_2 WHERE nation = \"Vietnam\"",
    "question_en": "how many winners from vietnam",
    "question_th": "มีผู้ชนะกี่คนจากเวียดนาม",
    "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_en": "What was the total of arlenes vote when craig voted for brian and karen?",
    "question_th": "จำนวนการโหวตของอาร์ลีนทั้งหมดเป็นเท่าไรเมื่อเครกโหวตให้ไบรอันและคาเรน?",
    "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_en": "What is the max week where kate and anton are eliminated?",
    "question_th": "สัปดาห์สูงสุดที่เคทและแอนตันตกรอบคือเท่าไร?",
    "context": "CREATE TABLE table_12305325_4 (week INTEGER, eliminated VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(eliminated) FROM table_12305325_4 WHERE safe = \"Kelly and Brendan\"",
    "question_en": "What is the number eliminated when kelly and brendan are safe?",
    "question_th": "ตัวเลขที่จะถูกกำจัดไปเมื่อเคลลี่และเบรนแดนปลอดภัยคืออะไร?",
    "context": "CREATE TABLE table_12305325_4 (eliminated VARCHAR, safe VARCHAR)"
  },
  {
    "answer": "SELECT safe FROM table_12305325_4 WHERE eliminated = \"John and Nicole\"",
    "question_en": "Who is safe if John and Nicole are eliminated?",
    "question_th": "ใครจะปลอดภัยถ้าจอห์นและนิโคลถูกกำจัด?",
    "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_en": "What is the total number of brunos vote when willie and erin are eliminated?",
    "question_th": "จำนวนคะแนนรวมของบรูโนสเมื่อวิลลี่และเอรินตกรอบคือเท่าไร?",
    "context": "CREATE TABLE table_12305325_4 (brunos_vote VARCHAR, eliminated VARCHAR)"
  },
  {
    "answer": "SELECT goals FROM table_12321870_32 WHERE matches = \"17\"",
    "question_en": "How many goals were scored by the player who played 17 matches?",
    "question_th": "ผู้เล่นที่ลงเล่น 17 นัดทำประตูได้กี่ประตู?",
    "context": "CREATE TABLE table_12321870_32 (goals VARCHAR, matches VARCHAR)"
  },
  {
    "answer": "SELECT player_name FROM table_12321870_32 WHERE period = \"2009\"",
    "question_en": "What is the name of the player who played in 2009 only?",
    "question_th": "นักเตะที่เล่นเฉพาะปี 2552 ชื่ออะไรครับ?",
    "context": "CREATE TABLE table_12321870_32 (player_name VARCHAR, period VARCHAR)"
  },
  {
    "answer": "SELECT goals FROM table_12321870_32 WHERE player_name = \"Tiago Gomes\"",
    "question_en": "How many goals have been scored by Tiago Gomes?",
    "question_th": "ติอาโก้ โกเมส ยิงได้กี่ประตู?",
    "context": "CREATE TABLE table_12321870_32 (goals VARCHAR, player_name VARCHAR)"
  },
  {
    "answer": "SELECT athlete FROM table_1231316_7 WHERE location = \"Mexico City\"",
    "question_en": "Which athlete is from Mexico City?",
    "question_th": "นักกีฬาคนไหนมาจากเม็กซิโกซิตี้?",
    "context": "CREATE TABLE table_1231316_7 (athlete VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT athlete FROM table_1231316_7 WHERE location = \"Edwardsville\"",
    "question_en": "What is the athlete from Edwardsville?",
    "question_th": "นักกีฬาจาก 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_en": "What was the wind on 21 june 1976?",
    "question_th": "วันที่ 21 มิถุนายน 2519 ลมอะไรเป็นบ้าง?",
    "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_en": "What is the number of locations with the fastest times of 11.13?",
    "question_th": "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_en": "What's the title of the episode with a broadcast order s04 e01?",
    "question_th": "ตอนที่เรียงลำดับการออกอากาศ 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_en": "What's the number of episodes with a broadcast order s04 e07?",
    "question_th": "ลำดับการออกอากาศ 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_en": "what's the total number of episodes with a US air date of january 15, 2005?",
    "question_th": "วันที่ออกอากาศในอเมริกาวันที่ 15 มกราคม 2548 มีทั้งหมดกี่ตอน?",
    "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_en": "What's the original air date of the episode with a broadcast order s04 e01?",
    "question_th": "ตอนแรกออกอากาศเมื่อใด โดยลำดับการออกอากาศคือ 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_en": "What's the series number of the episode with a broadcast order s04 e07?",
    "question_th": "ซีรีย์ตอนที่มีลำดับการออกอากาศ 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_en": "Which police force serves a population of 17000?",
    "question_th": "กองกำลังตำรวจใดให้บริการประชากร 17,000 คน",
    "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_en": "When total costs (2005) are $700,116, what is the cost per capita?",
    "question_th": "เมื่อต้นทุนรวม (พ.ศ. 2548) อยู่ที่ 700,116 ดอลลาร์ ต้นทุนต่อหัวคือเท่าไร",
    "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_en": "What is the cost per capita in the Courtenay municipality?",
    "question_th": "ค่าใช้จ่ายต่อหัวของเทศบาลกูร์เตอเนย์คือเท่าไร?",
    "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_en": "Which crime rate per 1,000 people is associated with a cost per capita of $152?",
    "question_th": "อัตราอาชญากรรมต่อประชากร 1,000 คนใดสัมพันธ์กับต้นทุนต่อหัวที่ 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_en": "If the number of police officers is 94, what is the lowest population number?",
    "question_th": "ถ้าจำนวนตำรวจคือ 94 นาย จำนวนประชากรต่ำสุดคือข้อใด",
    "context": "CREATE TABLE table_12340907_1 (population INTEGER, police_officers VARCHAR)"
  },
  {
    "answer": "SELECT total_costs__2005_ FROM table_12340907_1 WHERE municipality = \"Coldstream\"",
    "question_en": "What is the value of total costs (2005) in the Coldstream municipality?",
    "question_th": "มูลค่าของต้นทุนทั้งหมด (พ.ศ. 2548) ในเขตเทศบาลโคลด์สตรีมคือเท่าไร?",
    "context": "CREATE TABLE table_12340907_1 (total_costs__2005_ VARCHAR, municipality VARCHAR)"
  },
  {
    "answer": "SELECT interview FROM table_12338595_1 WHERE state = \"Virginia\"",
    "question_en": "What is the interview score for the state of Virginia?",
    "question_th": "คะแนนการสัมภาษณ์ของรัฐเวอร์จิเนียเป็นเท่าใด",
    "context": "CREATE TABLE table_12338595_1 (interview VARCHAR, state VARCHAR)"
  },
  {
    "answer": "SELECT average FROM table_12338595_1 WHERE state = \"New York\"",
    "question_en": "How much is the average score for New York state?",
    "question_th": "คะแนนเฉลี่ยของรัฐนิวยอร์กคือเท่าไร?",
    "context": "CREATE TABLE table_12338595_1 (average VARCHAR, state VARCHAR)"
  },
  {
    "answer": "SELECT interview FROM table_12338595_1 WHERE evening_gown = \"8.977\"",
    "question_en": "Which interview score corresponds with the evening gown score of 8.977?",
    "question_th": "คะแนนสัมภาษณ์ข้อใดตรงกับคะแนนชุดราตรี 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_en": "What is the preliminary score associated with the interview score of 8.488?",
    "question_th": "คะแนนเบื้องต้นกับคะแนนสัมภาษณ์ 8.488 เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_12338595_1 (preliminaries VARCHAR, interview VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(swimsuit) FROM table_12338595_1 WHERE state = \"Virginia\"",
    "question_en": "What swimsuit score did the state of Virginia contestant achieve?",
    "question_th": "ผู้เข้าแข่งขันจากรัฐเวอร์จิเนียทำคะแนนชุดว่ายน้ำได้เท่าใด",
    "context": "CREATE TABLE table_12338595_1 (swimsuit VARCHAR, state VARCHAR)"
  },
  {
    "answer": "SELECT interview FROM table_12338595_1 WHERE state = \"Nevada\"",
    "question_en": "Which interview score belongs to the state of Nevada contestant?",
    "question_th": "คะแนนการสัมภาษณ์ใดเป็นของผู้เข้าแข่งขันของรัฐเนวาดา",
    "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_en": "For the competition Mithras Cup 2nd Rd (2nd Leg), what is the date and time?",
    "question_th": "สำหรับการแข่งขัน มิธราส คัพ 2nd Rd (เลก 2) วันที่และเวลาใด?",
    "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_en": "Is the biggest win recorded as home or away?",
    "question_th": "ชัยชนะที่ยิ่งใหญ่ที่สุดถูกบันทึกไว้ว่าเป็นเหย้าหรือเยือน?",
    "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_en": "What competitions record a date and time of 17.04.1920 at 15:00?",
    "question_th": "การแข่งขันรายการใดบันทึกวันที่และเวลา 17.04.1920 เวลา 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_en": "What records are hit where the opponent is Aylesbury United?",
    "question_th": "โดนสถิติไหนที่คู่ต่อสู้คือ เอลส์บิวรี่ ยูไนเต็ด?",
    "context": "CREATE TABLE table_1233808_2 (record VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_1233808_2 WHERE record = \"Biggest defeat\"",
    "question_en": "Who was the opponent during the biggest defeat?",
    "question_th": "ใครคือคู่ต่อสู้ระหว่างความพ่ายแพ้ครั้งใหญ่ที่สุด?",
    "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 (אני אוהב אותך רוזה)\"",
    "question_en": "How many results are there with the original title of ani ohev otach roza (אני אוהב אותך רוזה)?",
    "question_th": "มีผลการค้นหากี่รายการสำหรับชื่อดั้งเดิมของ ani ohev otach roza (אני אוהב אותך רוזה)",
    "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_en": "What is the power when ch# is tv-26 and dyfj-tv?",
    "question_th": "พลังเมื่อ ch# คือ tv-26 และ 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_en": "What is the coverage for relay tv-37?",
    "question_th": "รีเลย์ ทีวี-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_en": "What is the ch# of dwlj-tv?",
    "question_th": "ch# ของ 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_en": "What is the coverage of relay 5kw of dyfj-tv?",
    "question_th": "รีเลย์ 5kw ของ 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_en": "What is the running of marlene sanchez?",
    "question_th": "มาร์ลีน ซานเชซ เป็นยังไงบ้าง?",
    "context": "CREATE TABLE table_12407546_2 (running VARCHAR, athlete VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(running) FROM table_12407546_2 WHERE athlete = \"Pamela Zapata\"",
    "question_en": "What is the numberof running wiht pamela zapata?",
    "question_th": "จำนวนการวิ่งกับพาเมล่า ซาปาต้าคือเท่าไร?",
    "context": "CREATE TABLE table_12407546_2 (running VARCHAR, athlete VARCHAR)"
  },
  {
    "answer": "SELECT shooting FROM table_12407546_1 WHERE athlete__noc_ = \"Luis Siri\"",
    "question_en": "What's Luis Siri's shooting score?",
    "question_th": "คะแนนการยิงของ หลุยส์ สิริ เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_12407546_1 (shooting VARCHAR, athlete__noc_ VARCHAR)"
  },
  {
    "answer": "SELECT riding FROM table_12407546_1 WHERE athlete__noc_ = \"Eduardo Salas\"",
    "question_en": "What's Eduardo Salas' riding score?",
    "question_th": "คะแนนการขี่ของเอดูอาร์โด้ ซาลาสเป็นเท่าไหร่?",
    "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_en": "What's the number of the player with 68.46 (1144 pts) in riding?",
    "question_th": "ผู้เล่นที่มีคะแนน 68.46 (1144 แต้ม) ในการขี่คือเท่าไร?",
    "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_en": "Who's the player with 2:05.63 (1296 pts) swimming score?",
    "question_th": "ใครคือผู้เล่นที่มีคะแนนว่ายน้ำ 2:05.63 (1296 แต้ม)",
    "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_en": "What's the fencing score of the player with 9:40.31 (1080 pts) in running?",
    "question_th": "คะแนนฟันดาบของผู้เล่นที่วิ่งได้ 9:40.31 (1,080 แต้ม) เป็นเท่าใด",
    "context": "CREATE TABLE table_12407546_1 (fencing VARCHAR, running VARCHAR)"
  },
  {
    "answer": "SELECT fencing FROM table_12407546_1 WHERE athlete__noc_ = \"Eli Bremer\"",
    "question_en": "What's Eli Bremer's fencing score?",
    "question_th": "คะแนนฟันดาบของ Eli Bremer เป็นเท่าใด",
    "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_en": "What is the total number of titles written by Casey Johnson?",
    "question_th": "จำนวนชื่อเรื่องที่เขียนโดย 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_en": "Who wrote the title that received 1.211 million total viewers?",
    "question_th": "ใครเป็นคนเขียนชื่อที่มีผู้ชมทั้งหมด 1.211 ล้านคน?",
    "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_en": "Who directed the title that was written by Adam Milch?",
    "question_th": "ใครเป็นผู้กำกับชื่อเรื่องที่เขียนโดย 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_en": "How many millions of total viewers watched series #57?",
    "question_th": "ผู้ชมดูซีรีส์ #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_en": "How many millions of total viewers watched season #8?",
    "question_th": "ผู้ชมรับชมซีซั่น #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_en": "What is the English spelling of the strongs transliteration: 'adoniyah?",
    "question_th": "การสะกดคำภาษาอังกฤษของการทับศัพท์ที่แข็งแกร่งคืออะไร: '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_en": "What is the hebrew word listed for strongs # 5418?",
    "question_th": "คำภาษาฮีบรูที่แสดงไว้สำหรับจุดแข็ง # 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_en": "List the hebrew word for the strongs words compounded of 'adown [# 113] & yahu",
    "question_th": "แสดงรายการคำภาษาฮีบรูสำหรับคำที่แข็งแกร่งที่ประกอบด้วย '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 = \"יִרְמְיָה\"",
    "question_en": "What is the strongs # for the hebrew word יִרְמְיָה?",
    "question_th": "จุดแข็ง # ของคำภาษาฮีบรู יִרְמָיָה คืออะไร?",
    "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_en": "What is the strongs # for the english spelling of the word  jirmejah?",
    "question_th": "จุดแข็ง # สำหรับการสะกดคำภาษาอังกฤษของคำว่า 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_en": "What is the latest year that 6th, Heartland is regular season?",
    "question_th": "ล่าสุดวันที่ 6 Heartland เป็นซีซั่นปกติคือปีอะไรคะ?",
    "context": "CREATE TABLE table_1241987_1 (year INTEGER, regular_season VARCHAR)"
  },
  {
    "answer": "SELECT regular_season FROM table_1241987_1 WHERE playoffs = \"division Finals\"",
    "question_en": "Which regular season contains playoffs in division finals?",
    "question_th": "ฤดูกาลปกติใดที่มีรอบตัดเชือกในรอบชิงชนะเลิศของดิวิชั่น",
    "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_en": "What is the lowest year that regular season is 4th, Rocky Mountain?",
    "question_th": "ปีต่ำสุดที่ฤดูกาลปกติคืออันดับที่ 4 คือ 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_en": "How many players lost to eventual winner in the season when ASC Jeanne d'Arc lost to eventual runner up?",
    "question_th": "มีผู้เล่นกี่คนที่แพ้ให้กับผู้ชนะในที่สุดในฤดูกาลที่ ASC Jeanne d'Arc แพ้รองชนะเลิศในที่สุด",
    "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_en": "What's the number of seasons i which USC Bassam lost to eventual runner-up?",
    "question_th": "กี่ฤดูกาลที่ USC Bassam แพ้รองแชมป์ในที่สุด?",
    "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_en": "In which season was Jeanne d'Arc (Bamako) the runner-up?",
    "question_th": "Jeanne d'Arc (บามาโก) เป็นรองแชมป์ในฤดูกาลใด",
    "context": "CREATE TABLE table_12444503_1 (season VARCHAR, runner_up VARCHAR)"
  },
  {
    "answer": "SELECT regular_season FROM table_1243601_1 WHERE year = \"2007\"",
    "question_en": "What was the regular season listing in 2007?",
    "question_th": "รายการฤดูกาลปกติในปี 2550 คืออะไร?",
    "context": "CREATE TABLE table_1243601_1 (regular_season VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT playoffs FROM table_1243601_1 WHERE year = \"2002\"",
    "question_en": "What was the playoff result in 2002?",
    "question_th": "ผลการแข่งขันรอบรองชนะเลิศในปี 2545 เป็นอย่างไร?",
    "context": "CREATE TABLE table_1243601_1 (playoffs VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT open_cup FROM table_1243601_1 WHERE year = \"2004\"",
    "question_en": "What was the open cup results in 2004?",
    "question_th": "ผลการแข่งขันโอเพ่นคัพในปี 2547 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_1243601_1 (open_cup VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(division) FROM table_1243601_1 WHERE year = \"2006\"",
    "question_en": "How many divisions were listed in 2006?",
    "question_th": "ในปี 2549 มีกี่แผนก?",
    "context": "CREATE TABLE table_1243601_1 (division VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT recurring_cast_seasons FROM table_12441518_1 WHERE character = \"Kevin Lucas\"",
    "question_en": "Kevin lucas appears in which seasons?",
    "question_th": "Kevin lucas ปรากฏตัวในฤดูกาลใด?",
    "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_en": "How many people named Nick Lucas are on the show?",
    "question_th": "มีคนชื่อ Nick Lucas อยู่ในรายการกี่คน?",
    "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_en": "What seasons does stella malone appear?",
    "question_th": "สเตลล่ามาโลนปรากฏในฤดูกาลใด?",
    "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_en": "What seasons does Nick lucas appear?",
    "question_th": "นิค ลูคัส ปรากฏตัวในฤดูกาลใด?",
    "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_en": "What seasons does Kevin Jonas appear?",
    "question_th": "Kevin Jonas ปรากฏตัวในฤดูกาลใด?",
    "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_en": "What seasons does Nick Lucas appear in?",
    "question_th": "นิค ลูคัส ปรากฏตัวในฤดูกาลใด",
    "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_en": "How many networks aired the franchise in 1981 only?",
    "question_th": "มีกี่เครือข่ายที่ออกอากาศแฟรนไชส์ในปี 1981 เท่านั้น?",
    "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_en": "In how many networks the local name of the franchise was \"in sickness and in health\"?",
    "question_th": "มีกี่เครือข่ายที่ชื่อท้องถิ่นของแฟรนไชส์คือ \"ป่วยและสุขภาพดี\"?",
    "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_en": "What is the title of season 3 ep# 12?",
    "question_th": "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_en": "What is the length of the track named michigan international speedway?",
    "question_th": "สนามแข่งรถชื่อ มิชิแกน อินเตอร์เนชั่นแนล สปีดเวย์ มีความยาวเท่าไร?",
    "context": "CREATE TABLE table_1245148_1 (length VARCHAR, track_name VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_1245148_1 WHERE year_opened = 1995",
    "question_en": "Where is the track that opened in 1995?",
    "question_th": "แทร็กที่เปิดในปี 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_en": "What is the location of the daytona international speedway?",
    "question_th": "สนามแข่งรถเดย์โทนาอินเตอร์เนชั่นแนล สปีดเวย์ อยู่ที่ไหน?",
    "context": "CREATE TABLE table_1245148_1 (location VARCHAR, track_name VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_1245148_1 WHERE year_opened = 1950",
    "question_en": "What is the location of the track that opened in 1950?",
    "question_th": "ตำแหน่งของเส้นทางที่เปิดในปี 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_en": "What is the power of the 3.2i v8 32v?",
    "question_th": "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_en": "What type of quattroporte iv only produced 340 units?",
    "question_th": "quattroporte iv รุ่นไหนผลิตเพียง 340 คันเท่านั้น?",
    "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_en": "When were 668 units produced?",
    "question_th": "ผลิตเมื่อไร 668 คัน?",
    "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_en": "what is the overall record when the club is dallas burn?",
    "question_th": "สถิติโดยรวมเมื่อสโมสรโดนดัลลัสเบิร์นเป็นอย่างไรบ้าง?",
    "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_en": "what is the goals for when the  club is new england revolution?",
    "question_th": "เป้าหมายเมื่อสโมสรคือนิว อิงแลนด์ เรโวลูชัน คืออะไร?",
    "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_en": "What was the total prize money where John Tabatabai was the runner-up?",
    "question_th": "เงินรางวัลทั้งหมดที่ John Tabatabai คว้ารองชนะเลิศคือเท่าไร?",
    "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_en": "Who is the winner where the losing hand is Ah 7s?",
    "question_th": "ใครเป็นผู้ชนะโดยที่มือที่แพ้คือ 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_en": "What was the losing hand where the winning hand was 7h 7s?",
    "question_th": "มือที่แพ้โดยที่มือที่ชนะคือ 7 ชั่วโมง 7 วินาที คืออะไร?",
    "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_en": "How many losing hands are there before 2007?",
    "question_th": "ก่อนปี 2550 มีมือที่เสียไปกี่มือ?",
    "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_en": "When Fabrizio Baldassari is the runner-up what is the total prize money?",
    "question_th": "เมื่อฟาบริซิโอ บัลดัสซารีเป็นรองแชมป์ เงินรางวัลรวมเป็นเท่าไหร่?",
    "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_en": "What is the August 15, 2012 population when the  population density of 2012 is 307?",
    "question_th": "ประชากรในวันที่ 15 สิงหาคม 2555 คือเท่าใด เมื่อความหนาแน่นของประชากรในปี 2555 คือ 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_en": "What is the sector when the population change 2002-2012 (%) is 79.6?",
    "question_th": "ภาคส่วนใดที่ประชากรเปลี่ยนแปลงระหว่างปี 2545-2555 (%) คือ 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_en": "For the sector of Gatunda how many entires are show for the August 15, 2012 population?",
    "question_th": "สำหรับภาค Gatunda มีการแสดงข้อมูลทั้งหมดสำหรับประชากรในวันที่ 15 สิงหาคม 2555 จำนวนเท่าใด",
    "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_en": "When the population change 2002-2012 (%) is 35.5 what is the rank in nyagatare sectors?",
    "question_th": "เมื่อจำนวนประชากรเปลี่ยนแปลงระหว่างปี 2545-2555 (%) คือ 35.5 อันดับในภาค nyagatare คืออะไร?",
    "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_en": "What is the population density for 2012 for Gatunda sector?",
    "question_th": "ความหนาแน่นของประชากรในปี 2555 สำหรับภาค Gatunda เป็นเท่าใด",
    "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_en": "What is the highest population for the ",
    "question_th": " จำนวนประชากรสูงสุดสำหรับ",
    "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_en": "What is the biggended for 1947?",
    "question_th": "อะไรคือสิ่งที่ใหญ่โตในปี 1947?",
    "context": "CREATE TABLE table_12526990_1 (biggenden INTEGER, year VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(monto) FROM table_12526990_1 WHERE total_region = 11230",
    "question_en": "What is the monto where the total region is 11230?",
    "question_th": "มอนโตที่พื้นที่รวมคือ 11230 คืออะไร?",
    "context": "CREATE TABLE table_12526990_1 (monto VARCHAR, total_region VARCHAR)"
  },
  {
    "answer": "SELECT MAX(gayndah) FROM table_12526990_1 WHERE perry = 304",
    "question_en": "What is the gayndah when perry is 304?",
    "question_th": "เกย์นดาห์เมื่อเพอร์รี่คือ 304 คืออะไร?",
    "context": "CREATE TABLE table_12526990_1 (gayndah INTEGER, perry VARCHAR)"
  },
  {
    "answer": "SELECT MIN(mundubbera) FROM table_12526990_1 WHERE biggenden = 1882",
    "question_en": "What is the minimum mundubbera when biggenden is 1882",
    "question_th": "ค่าขั้นต่ำสุดเมื่อ biggenden คือปี 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_en": "The Dallas Burn had a 12-9-7 record and what number of goals for? ",
    "question_th": " ดัลลาส เบิร์น มีสถิติ 12-9-7 และยิงไปกี่ประตู?",
    "context": "CREATE TABLE table_1253396_5 (goals_for VARCHAR, overall_record VARCHAR)"
  },
  {
    "answer": "SELECT MAX(goals_against) FROM table_1255110_7",
    "question_en": "What is the highest value under the column goals against?",
    "question_th": "ค่าสูงสุดภายใต้เป้าหมายของคอลัมน์เทียบกับอะไรคือค่าสูงสุด",
    "context": "CREATE TABLE table_1255110_7 (goals_against INTEGER)"
  },
  {
    "answer": "SELECT date__from_ FROM table_12562214_1 WHERE date__to_ = \"1919\"",
    "question_en": "what is the date (from) where date (to) is 1919?",
    "question_th": "วันที่ (จาก) คืออะไร วันที่ (ถึง) คือ 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_en": "how many times is the date (to) 1919?",
    "question_th": "วันที่ (ถึง) 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_en": "what is the date (from) where the notes are apeldoornsche tramweg-maatschappij?",
    "question_th": "วันที่ (จาก) ที่บันทึกคือ 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_en": "how many notes are form the date (from) 14 march 1910?",
    "question_th": "มีบันทึกกี่ฉบับ ณ วันที่ (ตั้งแต่) 14 มีนาคม พ.ศ. 2453?",
    "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_en": "what is the location for the date (to) 8 october 1922?",
    "question_th": "วันที่ (ถึง) 8 ตุลาคม 2465 คือสถานที่ใด?",
    "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_en": "what are the notes for date (from) 12 august 1897?",
    "question_th": "บันทึกประจำวัน (ตั้งแต่) 12 สิงหาคม พ.ศ. 2440 คืออะไร?",
    "context": "CREATE TABLE table_12562214_1 (notes VARCHAR, date__from_ VARCHAR)"
  },
  {
    "answer": "SELECT livingstone FROM table_12570207_1 WHERE fitzroy = 9499",
    "question_en": "what's the livingstone with fitzroy being 9499",
    "question_th": "ลิฟวิ่งสโตนโดยที่ฟิตซ์รอยคือ 9499 คืออะไร",
    "context": "CREATE TABLE table_12570207_1 (livingstone VARCHAR, fitzroy VARCHAR)"
  },
  {
    "answer": "SELECT MAX(total_region) FROM table_12570207_1 WHERE fitzroy = 8047",
    "question_en": "what is the maximum total region with fitzroy being 8047",
    "question_th": "พื้นที่รวมสูงสุดโดยที่ฟิตซ์รอยอยู่ที่ 8047 คือเท่าใด",
    "context": "CREATE TABLE table_12570207_1 (total_region INTEGER, fitzroy VARCHAR)"
  },
  {
    "answer": "SELECT MIN(rockhampton) FROM table_12570207_1",
    "question_en": "what is the minimum rockhampton",
    "question_th": "ร็อคแฮมป์ตันขั้นต่ำคือเท่าไร",
    "context": "CREATE TABLE table_12570207_1 (rockhampton INTEGER)"
  },
  {
    "answer": "SELECT COUNT(population__glengallan_) FROM table_12584173_1 WHERE population__region_total_ = 30554",
    "question_en": "How many population figures are given for Glengallen for the year when the region's total is 30554?",
    "question_th": "Glengallen มีการระบุตัวเลขประชากรจำนวนเท่าใดในปีที่จำนวนรวมของภูมิภาคคือ 30554",
    "context": "CREATE TABLE table_12584173_1 (population__glengallan_ VARCHAR, population__region_total_ VARCHAR)"
  },
  {
    "answer": "SELECT MAX(population__stanthorpe_) FROM table_12584173_1",
    "question_en": "What is the maximum population size in the town of Stanthorpe?",
    "question_th": "ขนาดประชากรสูงสุดในเมือง Stanthorpe คือเท่าใด",
    "context": "CREATE TABLE table_12584173_1 (population__stanthorpe_ INTEGER)"
  },
  {
    "answer": "SELECT MAX(population__glengallan_) FROM table_12584173_1",
    "question_en": "What is the maximum population size in the town of Glengallen?",
    "question_th": "ขนาดประชากรสูงสุดในเมือง Glengallen คือเท่าใด",
    "context": "CREATE TABLE table_12584173_1 (population__glengallan_ INTEGER)"
  },
  {
    "answer": "SELECT MAX(population__stanthorpe_) FROM table_12584173_1 WHERE population__rosenthal_ = 1548",
    "question_en": "What was the population in Stanthorpe in the year when the population in Rosenthal was 1548?",
    "question_th": "ประชากรในสแตนธอร์ปในปีที่ประชากรในโรเซนธาลคือ 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_en": "How many population total figures are there for the year when Allora's population was 2132?",
    "question_th": "มีประชากรทั้งหมดกี่จำนวนในปีที่ประชากรของ Allora อยู่ที่ 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_en": "When was the ship launched when the commissioned or completed(*) is 6 june 1864?",
    "question_th": "เรือถูกปล่อยเมื่อใดเมื่อได้รับมอบหมายหรือเสร็จสิ้น(*) คือวันที่ 6 มิถุนายน พ.ศ. 2407",
    "context": "CREATE TABLE table_12592074_1 (launched VARCHAR, commissioned_or_completed_ VARCHAR, _ VARCHAR)"
  },
  {
    "answer": "SELECT launched FROM table_12592074_1 WHERE ship = \"Tecumseh\"",
    "question_en": "When was the ship tecumseh launched?",
    "question_th": "เรือ tecumseh เปิดตัวเมื่อใด",
    "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_en": "What is the namesake of the ship that was commissioned or completed(*) 16 april 1864?",
    "question_th": "ชื่อเรือที่ได้รับการว่าจ้างหรือเสร็จสมบูรณ์(*) เมื่อวันที่ 16 เมษายน พ.ศ. 2407 คืออะไร?",
    "context": "CREATE TABLE table_12592074_1 (namesake VARCHAR, commissioned_or_completed_ VARCHAR, _ VARCHAR)"
  },
  {
    "answer": "SELECT MIN(laid_down) FROM table_12592074_1",
    "question_en": "What is the minimum laid down?",
    "question_th": "ขั้นต่ำที่วางไว้คือเท่าไร?",
    "context": "CREATE TABLE table_12592074_1 (laid_down INTEGER)"
  },
  {
    "answer": "SELECT program FROM table_12591022_2 WHERE focus = \"General Management\"",
    "question_en": "What is the program where the focus is general management?",
    "question_th": "โปรแกรมที่เน้นการจัดการทั่วไปคืออะไร?",
    "context": "CREATE TABLE table_12591022_2 (program VARCHAR, focus VARCHAR)"
  },
  {
    "answer": "SELECT teaching_language FROM table_12591022_2 WHERE focus = \"Auditing\"",
    "question_en": "what is teaching language where the focus is auditing?",
    "question_th": "การสอนภาษาที่เน้นการตรวจสอบคืออะไร?",
    "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_en": "WHat is the program where duration (years) is 1.5 and teaching language is german/english?",
    "question_th": "โปรแกรมอะไรคะ ระยะเวลา (ปี) คือ 1.5 และภาษาที่สอนเป็นภาษาเยอรมัน/อังกฤษ?",
    "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_en": "What is the teaching language with the duration (years) 3.5?",
    "question_th": "ภาษาที่สอนมีระยะเวลา (ปี) 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_en": "What is the program where the focus is risk management and regulation?",
    "question_th": "โปรแกรมที่เน้นไปที่การจัดการความเสี่ยงและการควบคุมคืออะไร?",
    "context": "CREATE TABLE table_12591022_2 (program VARCHAR, focus VARCHAR)"
  },
  {
    "answer": "SELECT release_date FROM table_12588029_3 WHERE year = 2003",
    "question_en": "What are the release dates for songs in 2003?",
    "question_th": "เพลงปี 2546 จะออกวันไหนครับ?",
    "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_en": "What is the biggest number of the team who's owned by Jeff Gordon?",
    "question_th": "จำนวนทีมที่มากที่สุดซึ่งเป็นเจ้าของโดย 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_en": "What is the driver for the team whose primary sponsor is Quicken Loans / Haas Automation?",
    "question_th": "อะไรคือแรงผลักดันสำหรับทีมที่มีผู้สนับสนุนหลักคือ 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_en": "What's the total number of crew chiefs of the Fas Lane Racing team?",
    "question_th": "หัวหน้าลูกเรือของทีม Fas Lane Racing มีทั้งหมดกี่คน?",
    "context": "CREATE TABLE table_1266602_1 (crew_chief VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT started FROM table_12608427_8 WHERE name = \"de Vries\"",
    "question_en": "What date did De Vries start?",
    "question_th": "De Vries เริ่มวันที่เท่าไร?",
    "context": "CREATE TABLE table_12608427_8 (started VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT MIN(no) FROM table_12608427_8 WHERE name = \"de Vries\"",
    "question_en": "What is the number for De Vries?",
    "question_th": "เดอ ไวรีส์ เบอร์อะไรครับ?",
    "context": "CREATE TABLE table_12608427_8 (no INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT loan_club FROM table_12608427_8 WHERE name = \"Derry\"",
    "question_en": "What was the loan club when Derry played?",
    "question_th": "สโมสรที่ถูกยืมตัวเมื่อเดอร์รี่เล่นคืออะไร?",
    "context": "CREATE TABLE table_12608427_8 (loan_club VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT loan_club FROM table_12608427_8 WHERE name = \"Westlake\"",
    "question_en": "Who was the loan club for the Westlake game?",
    "question_th": "ใครคือสโมสรยืมตัวในเกมเวสต์เลค?",
    "context": "CREATE TABLE table_12608427_8 (loan_club VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT p FROM table_12608427_8 WHERE name = \"Clapham\"",
    "question_en": "What was the position (P) for Clapham?",
    "question_th": "ตำแหน่ง (P) ของแคลปแฮมคืออะไร?",
    "context": "CREATE TABLE table_12608427_8 (p VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_12679326_1 WHERE party = \"Republican\" AND committee = \"Appropriations\"",
    "question_en": "What district is represented by a Republican Appropriations Committee?",
    "question_th": "เขตใดเป็นตัวแทนจากคณะกรรมการจัดสรรพรรครีพับลิกัน?",
    "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_en": "What are the districts represented by the Democratic Party and a Committee in Economic Matters?",
    "question_th": "พรรคประชาธิปัตย์และคณะกรรมการด้านเศรษฐกิจเป็นตัวแทนเขตใดบ้าง",
    "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_en": "Name the number of constr with the first win at the 1978 brazilian grand prix",
    "question_th": "ตั้งชื่อหมายเลข constr ด้วยการชนะครั้งแรกในการแข่งขัน Brazilian Grand Prix ปี 1978",
    "context": "CREATE TABLE table_12707313_2 (constr VARCHAR, first_win VARCHAR)"
  },
  {
    "answer": "SELECT first_win FROM table_12707313_2 WHERE pos = 6",
    "question_en": "What was the first win for pos 6?",
    "question_th": "ชัยชนะครั้งแรกของตำแหน่ง 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_en": "What is the molecular target listed under the compounded name of hemiasterlin (e7974)",
    "question_th": "เป้าหมายระดับโมเลกุลที่ระบุไว้ภายใต้ชื่อผสมของเฮมิสเตอร์ลิน (e7974) คืออะไร",
    "context": "CREATE TABLE table_12715053_1 (molecular_target VARCHAR, compound_name VARCHAR)"
  },
  {
    "answer": "SELECT molecular_target FROM table_12715053_1 WHERE trademark = \"Irvalec ®\"",
    "question_en": "What is the molecular target listed under the trademark of irvalec ®",
    "question_th": "เป้าหมายระดับโมเลกุลที่ระบุไว้ภายใต้เครื่องหมายการค้าของ irvalec ® คืออะไร",
    "context": "CREATE TABLE table_12715053_1 (molecular_target VARCHAR, trademark VARCHAR)"
  },
  {
    "answer": "SELECT compound_name FROM table_12715053_1 WHERE marine_organism_α = \"Worm\"",
    "question_en": "What is the compound name listed where marine organism α is worm",
    "question_th": "ชื่อสารประกอบที่สิ่งมีชีวิตในทะเล α คือหนอนคืออะไร",
    "context": "CREATE TABLE table_12715053_1 (compound_name VARCHAR, marine_organism_α VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(compound_name) FROM table_12715053_1 WHERE chemical_class = \"Depsipeptide\" AND clinical_trials_β = \"1/7\"",
    "question_en": "How many compound names list a chemical class of depsipeptide and a clinical trials β value of 1/7?",
    "question_th": "มีชื่อสารประกอบกี่ชื่อที่แสดงรายการคลาสทางเคมีของเดซิเปปไทด์และการทดลองทางคลินิก β ที่ค่า 1/7",
    "context": "CREATE TABLE table_12715053_1 (compound_name VARCHAR, chemical_class VARCHAR, clinical_trials_β VARCHAR)"
  },
  {
    "answer": "SELECT trademark FROM table_12715053_1 WHERE molecular_target = \"DNA-Binding\"",
    "question_en": "What is the trademark listed for the molecular target : dna-binding?",
    "question_th": "เครื่องหมายการค้าจดทะเบียนสำหรับเป้าหมายระดับโมเลกุล: การจับกับดีเอ็นเอคืออะไร?",
    "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_en": "How many trademarks list a molecular target of minor groove of dna and a clinical status value of phase i?",
    "question_th": "มีเครื่องหมายการค้ากี่รายการที่ระบุเป้าหมายระดับโมเลกุลของร่องเล็กๆ ของ DNA และค่าสถานะทางคลินิกของระยะที่ 1",
    "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_en": "What's the number of the episode directed by Tucker Gates?",
    "question_th": "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_en": "What was the original air date for the episode with 3.90 u.s. viewers (millions)?",
    "question_th": "วันที่ออกอากาศเดิมสำหรับตอนนี้ที่มีผู้ชม 3.90 คน (ล้านคน) คืออะไร?",
    "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_en": "What is the original air date for no. 2?",
    "question_th": "ออกอากาศตอนแรกวันที่เท่าไร 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_en": "Who directed the episode with 3.19 million u.s. viewers?",
    "question_th": "ใครเป็นผู้กำกับตอนที่มีผู้ชม 3.19 ล้านคน?",
    "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_en": "What's the price (in USD) of the model whose L3 is 18 mb?",
    "question_th": "ราคา (เป็น USD) ของรุ่นที่มี L3 คือ 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_en": "What's the clock speed of the model that costs $910?",
    "question_th": "ความเร็วสัญญาณนาฬิกาของรุ่นที่มีราคา 910 ดอลลาร์คือเท่าใด",
    "context": "CREATE TABLE table_12740151_8 (clock_speed VARCHAR, price___usd__ VARCHAR)"
  },
  {
    "answer": "SELECT MIN(league) AS Cup FROM table_12755786_8",
    "question_en": "what is the least amount in the tournament?",
    "question_th": "จำนวนเงินน้อยที่สุดในการแข่งขันคือเท่าไร?",
    "context": "CREATE TABLE table_12755786_8 (league INTEGER)"
  },
  {
    "answer": "SELECT league AS Cup FROM table_12755786_8 WHERE player = \"Kevin McKinlay\"",
    "question_en": "what is the tourney where the winner is kevin mckinlay?",
    "question_th": "การแข่งขันคืออะไร โดยที่ผู้ชนะคือเควิน แมคคินเลย์?",
    "context": "CREATE TABLE table_12755786_8 (league VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT thursday_iuppiter__jupiter_ FROM table_1277350_1 WHERE tuesday_mars__mars_ = \"Marterì\"",
    "question_en": "what's the thursday iuppiter (jupiter) with tuesday mars (mars) being marterì",
    "question_th": "วันพฤหัสบดีคืออะไร iuppiter (ดาวพฤหัสบดี) โดยมีดาวอังคาร (ดาวอังคาร) เป็น marterì",
    "context": "CREATE TABLE table_1277350_1 (thursday_iuppiter__jupiter_ VARCHAR, tuesday_mars__mars_ VARCHAR)"
  },
  {
    "answer": "SELECT sunday_sōl__sun_ FROM table_1277350_1 WHERE friday_venus__venus_ = \"vernes\"",
    "question_en": "what's the sunday sōl (sun) with friday venus (venus) being vernes",
    "question_th": "วันอาทิตย์ ซอล (ดวงอาทิตย์) คืออะไร โดยที่วันศุกร์วีนัส (วีนัส) เป็นเวิร์น",
    "context": "CREATE TABLE table_1277350_1 (sunday_sōl__sun_ VARCHAR, friday_venus__venus_ VARCHAR)"
  },
  {
    "answer": "SELECT thursday_iuppiter__jupiter_ FROM table_1277350_1 WHERE friday_venus__venus_ = \"vendredi\"",
    "question_en": "what's the thursday iuppiter (jupiter) with friday venus (venus) being vendredi",
    "question_th": "วันพฤหัสบดีคืออะไร iuppiter (ดาวพฤหัสบดี) โดยวันศุกร์คือดาวศุกร์ (venus) ที่กำลังขายของ",
    "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_en": "what's the saturday saturnus ( saturn) with wednesday mercurius (mercury) being mercuridi",
    "question_th": "ดาวเสาร์วันเสาร์ ( ดาวเสาร์) คืออะไร โดยมีวันพุธ ดาวพุธ (ดาวพุธ) เป็นดาวพุธ",
    "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_en": "what's the thursday iuppiter (jupiter) with saturday saturnus ( saturn) being jesarn",
    "question_th": "วันพฤหัสบดีคือวันอะไร (ดาวพฤหัส) โดยที่วันเสาร์คือดาวเสาร์ (เสาร์) เป็นเจสาร",
    "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_en": "What is the sequencer when ion torrent pgm is 200-400 bp?",
    "question_th": "ซีเควนเซอร์คืออะไรเมื่อไอออนทอร์เรนต์ pgm อยู่ที่ 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_en": "How many times was Sanger 3730xl $2400 usd?",
    "question_th": "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_en": "How much was solidv4 when pacbio is $300 usd?",
    "question_th": "solidv4 ราคาเท่าไหร่เมื่อ pacbio อยู่ที่ $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_en": "What is solidv4 when sequencer is data output per run?",
    "question_th": "solidv4 คืออะไรเมื่อซีเควนเซอร์เป็นเอาต์พุตข้อมูลต่อการรัน",
    "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_en": "What is 454 gs flx when pacbio is 100-500 mb?",
    "question_th": "454 gs flx คืออะไรเมื่อ pacbio อยู่ที่ 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_en": "How was times was the dance the jive and the week # was 10?",
    "question_th": "การเต้นรำเป็นเรื่องหลอกลวงกี่ครั้งและสัปดาห์ # คือ 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_en": "What's the Slovene word for Thursday?",
    "question_th": "คำภาษาสโลเวเนียสำหรับวันพฤหัสบดีคืออะไร",
    "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_en": "How do you say Friday in Polish?",
    "question_th": "วันศุกร์เป็นภาษาโปแลนด์ว่าอย่างไร?",
    "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_en": "What's the Croatian word for Saturday?",
    "question_th": "วันเสาร์ ภาษาโครเอเชียเรียกว่าอะไร?",
    "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_ = \"ஞாயிற்று கிழமை Nyāyitru kizhamai\"",
    "question_en": "In the system where Sunday is ஞாயிற்று கிழமை nyāyitru kizhamai, what is Saturday?",
    "question_th": "ในระบบที่วันอาทิตย์คือ ஞாயிறลาร์று கிழமை nyāyitru kizhamai วันเสาร์คืออะไร?",
    "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_ = \"বুধবার Budhbar\"",
    "question_en": "In language where Wednesday is বুধবার budhbar, what is Thursday?",
    "question_th": "ในภาษาที่วันพุธคือ বুধবต้าর บุดห์บัร วันพฤหัสบดีคืออะไร?",
    "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_ = \"සෙනසුරාදා Senasuraadaa\"",
    "question_en": "In language where Saturday is සෙනසුරාදා senasuraadaa, what is Tuesday?",
    "question_th": "ในภาษาที่วันเสาร์คือ සෙනසුරාදා เสนสุราอาดะห์ วันอังคารคืออะไร?",
    "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_ = \"برس وار Bres'var\"",
    "question_en": "In language where Thursday is برس وار bres'var, what is Sunday?",
    "question_th": "ในภาษาที่วันพฤหัสบดีคือ برس وار bres'var วันอาทิตย์คืออะไร?",
    "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_ = \"برھ وار Budh'var\"",
    "question_en": "In language where Wednesday is برھ وار budh'var, what is Saturday?",
    "question_th": "ในภาษาที่วันพุธคือ برھ وار budh'var วันเสาร์คืออะไร?",
    "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 = \"ሐሙስ hamus\"",
    "question_en": "What is saturday day seven when thursday day five is ሐሙስ hamus?",
    "question_th": "วันเสาร์ที่ 7 คืออะไร เมื่อวันพฤหัสบดีที่ 5 เป็น ሐሙስ 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 = \"პარასკევი p'arask'evi\"",
    "question_en": "What is thursday day five when friday day six is პარასკევი p'arask'evi?",
    "question_th": "วันพฤหัสที่ห้าคือวันอะไร เมื่อวันศุกร์ที่หกคือ პრსკევ Micro 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_en": "What is tuesday day three when thursday day five is kamis?",
    "question_th": "วันอังคารที่ 3 คืออะไร เมื่อวันพฤหัสบดีที่ 5 เป็นคามิส?",
    "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 = \"پچھمبے pachhambey\"",
    "question_en": "What is friday day six when thursday day five is پچھمبے pachhambey?",
    "question_th": "วันศุกร์ที่หกคืออะไร เมื่อวันพฤหัสบดีที่ห้าคือ پچھمبے 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_en": "What is friday day six when monday day two is isnin?",
    "question_th": "วันศุกร์ที่หกคืออะไร เมื่อวันจันทร์วันที่สองเป็นวันจันทร์?",
    "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_en": "How many time is sunday day one is ahad?",
    "question_th": "วันอาทิตย์หนึ่งมีเวลาอะฮัดกี่วัน?",
    "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_en": "What is the least amount of freight carried when the super b capacity reached was February 26?",
    "question_th": "จำนวนค่าขนส่งที่น้อยที่สุดที่ขนส่งเมื่อถึงขีดความสามารถของ super b คือวันที่ 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_en": "What is the most number of truck loads north?",
    "question_th": "ภาคเหนือบรรทุกได้มากที่สุดคือเท่าไร?",
    "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_en": "What is thea year the road closed April 13?",
    "question_th": "ถนนปิดในวันที่ 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_en": "When was the Super B capacity reached when the number of truck loads north was 7735?",
    "question_th": "กำลังการผลิต Super B ถึงเมื่อไหร่เมื่อจำนวนรถบรรทุกทางเหนืออยู่ที่ 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_en": "When was the super b capacity reached when the freight carried s tonne was 198818?",
    "question_th": "เมื่อใดที่ความจุ super b ถึงเมื่อสินค้าบรรทุกได้เป็นตันคือ 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_en": "How many loses corresponded to giving up 714 points?",
    "question_th": "แพ้ไปกี่แต้มก็ยอมให้ 714 แต้ม?",
    "context": "CREATE TABLE table_12792876_2 (lost VARCHAR, points_against VARCHAR)"
  },
  {
    "answer": "SELECT drawn FROM table_12792876_2 WHERE tries_against = \"30\"",
    "question_en": "How many draws were there when there were 30 tries against?",
    "question_th": "มีการเสมอกันกี่ครั้งเมื่อมีการพยายามต่อต้าน 30 ครั้ง?",
    "context": "CREATE TABLE table_12792876_2 (drawn VARCHAR, tries_against VARCHAR)"
  },
  {
    "answer": "SELECT try_bonus FROM table_12792876_2 WHERE tries_for = \"64\"",
    "question_en": "How many try bonuses were there when there were 64 tries for?",
    "question_th": "มีโบนัสการลองกี่ครั้งเมื่อมีการลอง 64 ครั้ง?",
    "context": "CREATE TABLE table_12792876_2 (try_bonus VARCHAR, tries_for VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_12792876_2 WHERE points_against = \"714\"",
    "question_en": "Which club gave up 714 points?",
    "question_th": "สโมสรไหนเสีย 714 แต้ม?",
    "context": "CREATE TABLE table_12792876_2 (club VARCHAR, points_against VARCHAR)"
  },
  {
    "answer": "SELECT won FROM table_12792876_2 WHERE \"club\" = \"club\"",
    "question_en": "What is the third entry in the row with a first entry of \"club\"?",
    "question_th": "รายการที่สามในแถวที่มีรายการแรกของ \"club\" คืออะไร?",
    "context": "CREATE TABLE table_12792876_2 (won VARCHAR)"
  },
  {
    "answer": "SELECT tries_for FROM table_12792876_2 WHERE \"club\" = \"club\"",
    "question_en": "What is the 8th entry in the row with a first entry of \"club\"?",
    "question_th": "รายการที่ 8 ติดต่อกันกับรายการแรกของ \"club\" คืออะไร?",
    "context": "CREATE TABLE table_12792876_2 (tries_for VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(won) FROM table_12792876_3 WHERE points_against = \"450\"",
    "question_en": "How many were won with the points against was 450?",
    "question_th": "มีกี่คนที่ชนะโดยมีคะแนนเทียบกับ 450?",
    "context": "CREATE TABLE table_12792876_3 (won VARCHAR, points_against VARCHAR)"
  },
  {
    "answer": "SELECT drawn FROM table_12792876_3 WHERE tries_for = \"46\"",
    "question_en": " what was the drawn when the tries for was 46?",
    "question_th": " สิ่งที่ถูกดึงออกมาเมื่อความพยายามคือ 46?",
    "context": "CREATE TABLE table_12792876_3 (drawn VARCHAR, tries_for VARCHAR)"
  },
  {
    "answer": "SELECT won FROM table_12792876_3 WHERE points_for = \"496\"",
    "question_en": "What was the won when the points for was 496?",
    "question_th": "ชนะอะไรเมื่อคะแนนคือ 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_en": "What was the losing bonus when the points against was 445?",
    "question_th": "โบนัสที่เสียไปเมื่อแต้มต่อคือ 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_en": "What was the tries against when the drawn was 2?",
    "question_th": "การพยายามต่อต้านอะไรเมื่อเสมอกันคือ 2?",
    "context": "CREATE TABLE table_12792876_3 (tries_against VARCHAR, drawn VARCHAR)"
  },
  {
    "answer": "SELECT drawn FROM table_12792876_3 WHERE tries_against = \"89\"",
    "question_en": "What was the drawn when the tries against was 89?",
    "question_th": "สิ่งที่ถูกดึงออกมาเมื่อพยายามต่อต้านคือ 89?",
    "context": "CREATE TABLE table_12792876_3 (drawn VARCHAR, tries_against VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(name) FROM table_12803263_1 WHERE _number = 4",
    "question_en": "What is the number of the name for number 4?",
    "question_th": "หมายเลข 4 ชื่ออะไร?",
    "context": "CREATE TABLE table_12803263_1 (name VARCHAR, _number VARCHAR)"
  },
  {
    "answer": "SELECT MAX(_number) FROM table_12803263_1",
    "question_en": "What is the most number?",
    "question_th": "จำนวนมากที่สุดคืออะไร?",
    "context": "CREATE TABLE table_12803263_1 (_number INTEGER)"
  },
  {
    "answer": "SELECT COUNT(played) FROM table_12807904_5 WHERE tries_for = \"60\"",
    "question_en": "what amount played tried for 60? ",
    "question_th": " พยายามเล่นจำนวนเท่าใดเพื่อ 60?",
    "context": "CREATE TABLE table_12807904_5 (played VARCHAR, tries_for VARCHAR)"
  },
  {
    "answer": "SELECT played FROM table_12807904_5 WHERE points = \"80\"",
    "question_en": "How many played where the points were 80?",
    "question_th": "มีกี่คนที่เล่นได้ 80 แต้ม?",
    "context": "CREATE TABLE table_12807904_5 (played VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_12807904_5 WHERE lost = \"13\"",
    "question_en": "what amount of points were lost by 13?",
    "question_th": "13 แต้มเสียไปกี่แต้ม?",
    "context": "CREATE TABLE table_12807904_5 (points VARCHAR, lost VARCHAR)"
  },
  {
    "answer": "SELECT points_against FROM table_12807904_5 WHERE points = \"63\"",
    "question_en": "what are the total points agains the score of 63?",
    "question_th": "คะแนนรวมเทียบกับคะแนน 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_en": "What amount of points where points  were 389?",
    "question_th": "คะแนนที่ได้คือ 389 คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_12807904_5 (points VARCHAR, points_against VARCHAR)"
  },
  {
    "answer": "SELECT played FROM table_12807904_3 WHERE points_for = \"438\"",
    "question_en": "HOW MANY PLAYERS PLAYED IN THE GAME THAT WON WITH 438 POINTS",
    "question_th": "มีผู้เล่นกี่คนที่เล่นเกมที่ชนะด้วยคะแนน 438 แต้ม",
    "context": "CREATE TABLE table_12807904_3 (played VARCHAR, points_for VARCHAR)"
  },
  {
    "answer": "SELECT won FROM table_12807904_3 WHERE try_bonus = \"11\"",
    "question_en": "HOW MANY GAMES HAD A WIN WITH A BONUS OF 11",
    "question_th": "มีกี่เกมที่ชนะด้วยโบนัส 11",
    "context": "CREATE TABLE table_12807904_3 (won VARCHAR, try_bonus VARCHAR)"
  },
  {
    "answer": "SELECT tries_for FROM table_12807904_3 WHERE drawn = \"3\"",
    "question_en": "HOW MANY GAMES WERE TIED AT 3?",
    "question_th": "มีกี่เกมที่เสมอกันที่ 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_en": "HOW MANY GAMES HAD BONUS POINTS OF 6?",
    "question_th": "มีกี่เกมที่มีคะแนนโบนัส 6 คะแนน?",
    "context": "CREATE TABLE table_12807904_3 (points_for VARCHAR, try_bonus VARCHAR)"
  },
  {
    "answer": "SELECT drawn FROM table_12807904_3 WHERE points = \"76\"",
    "question_en": "HOW MANY GAMES WERE TIED AT 76?",
    "question_th": "มีกี่เกมที่เสมอกันที่ 76?",
    "context": "CREATE TABLE table_12807904_3 (drawn VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(points_for) FROM table_12807904_3 WHERE lost = \"12\"",
    "question_en": "HOW MANY GAMES WERE LOST BY 12 POINTS?",
    "question_th": "มีกี่เกมที่แพ้ 12 แต้ม?",
    "context": "CREATE TABLE table_12807904_3 (points_for VARCHAR, lost VARCHAR)"
  },
  {
    "answer": "SELECT earnings__€_ FROM table_12821159_14 WHERE cuts_made = 19 AND money_list_rank = 3",
    "question_en": "What was the number of earnings were cuts made are 19 and money list rank is 3?",
    "question_th": "จำนวนรายได้ที่ถูกลดจำนวนลงคือ 19 ปี และอันดับรายการเงินคือ 3 เป็นเท่าใด",
    "context": "CREATE TABLE table_12821159_14 (earnings__€_ VARCHAR, cuts_made VARCHAR, money_list_rank VARCHAR)"
  },
  {
    "answer": "SELECT barrel_length FROM table_12834315_2 WHERE name = \"AR-15A3 Competition HBAR\"",
    "question_en": "what are all the barrel lengths whith the name  ar-15a3 competition hbar",
    "question_th": "ความยาวลำกล้องทั้งหมดเท่าไหร่ที่เรียกว่า 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_en": "What is the fire control for the sporter target",
    "question_th": "การควบคุมการยิงสำหรับเป้าหมายของนักกีฬาคืออะไร",
    "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_en": "What is the days with rain figure for the city of Santiago de Compostela?",
    "question_th": "วันที่ฝนตกสำหรับเมือง 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_en": "How many rain figures are provided for sunlight hours in 1966?",
    "question_th": "ตัวเลขฝนสำหรับชั่วโมงแสงแดดในปี พ.ศ. 2509 มีกี่ตัวเลข",
    "context": "CREATE TABLE table_12837_1 (rain VARCHAR, sunlight_hours VARCHAR)"
  },
  {
    "answer": "SELECT barrel_twist FROM table_12834315_8 WHERE barrel_profile = \"SFW\"",
    "question_en": "What is the value of barrel twist when the barrel profile is SFW?",
    "question_th": "ค่าของการบิดของลำกล้องเมื่อโปรไฟล์ของลำกล้องเป็น 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_en": "What kind of hand guards are associated with a rear sight of A1 and stock of A2?",
    "question_th": "แฮนด์การ์ดแบบใดที่เกี่ยวข้องกับการมองเห็นด้านหลังของ A1 และสต็อกของ 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_en": "How many inches is the barrel length when the rear sight is weaver and the barrel profile is A2?",
    "question_th": "ความยาวลำกล้องคือกี่นิ้วเมื่อสายตาด้านหลังเป็นช่างทอและโปรไฟล์ลำกล้องคือ 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_en": "What is the muzzle device on the colt model le1020?",
    "question_th": "อุปกรณ์ปากกระบอกปืนของ colt รุ่น 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_en": "What is the barrell profile that goes with the gas piston carbine?",
    "question_th": "โปรไฟล์ลำกล้องที่เข้าคู่กับปืนสั้นแบบลูกสูบแก๊สคืออะไร?",
    "context": "CREATE TABLE table_12834315_5 (barrel_profile VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_12834315_5 WHERE barrel_profile = \"A2\"",
    "question_en": "What models have an a2 barrel profile?",
    "question_th": "รุ่นใดบ้างที่มีโปรไฟล์ a2 บาร์เรล?",
    "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_en": "What hand guard system is used with a gas piston commando?",
    "question_th": "ระบบป้องกันแฮนด์ใดที่ใช้กับหน่วยคอมมานโดลูกสูบแก๊ส?",
    "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_en": "What is the bayonet lug status for a m4 hbar and m4le carbine equipped?",
    "question_th": "สถานะตัวดึงแบบดาบปลายปืนสำหรับปืนสั้น m4 hbar และ m4le ที่ติดตั้งคืออะไร",
    "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_en": "What is the barrel length for a cold model le6921sp?",
    "question_th": "ความยาวลำกล้องของรุ่นเย็น 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_en": "Name the barrel length for rear sight a2 for factory compensator",
    "question_th": "ตั้งชื่อความยาวลำกล้องสำหรับสายตาด้านหลัง a2 สำหรับการชดเชยจากโรงงาน",
    "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_en": "Name the barrel twist for colt model mt6400",
    "question_th": "ตั้งชื่อลูกบิดกระบอกสำหรับ colt รุ่น 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_en": "Name the forward assist for a2 barrel profile",
    "question_th": "ตั้งชื่อระบบช่วยเดินหน้าสำหรับโปรไฟล์ a2 บาร์เรล",
    "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_en": "Name the stock for colt model mt6601",
    "question_th": "ตั้งชื่อหุ้น colt รุ่น 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_en": "How many races is different distances does Rosehill Guineas compete in? ",
    "question_th": " Rosehill Guineas แข่งขันกันในระยะทางที่แตกต่างกันกี่เชื้อชาติ?",
    "context": "CREATE TABLE table_1284347_2 (distance VARCHAR, race VARCHAR)"
  },
  {
    "answer": "SELECT played FROM table_12886178_4 WHERE points = \"16\"",
    "question_en": "How many games ended up with 16 points?",
    "question_th": "กี่เกมที่จบลงด้วย 16 แต้ม?",
    "context": "CREATE TABLE table_12886178_4 (played VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT tries_against FROM table_12886178_4 WHERE tries_for = \"29\"",
    "question_en": "What was the tries against count for the club whose tries for count was 29?",
    "question_th": "อะไรคือความพยายามต่อต้านการนับของสโมสรที่พยายามนับ 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_en": "How many points does Croesyceiliog RFC have?",
    "question_th": "Croesyceiliog RFC มีกี่แต้ม?",
    "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_en": "What's the points for count for the club with 41 points and 8 won games?",
    "question_th": "สโมสรมี 41 แต้ม ชนะ 8 เกม นับแต้มได้เท่าไร?",
    "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_en": "What's the points for count for the club with tries for count of 29?",
    "question_th": "คะแนนสำหรับการนับสำหรับสโมสรที่มีการพยายามนับ 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_en": "What's the try bonus count for the club whose tries against count is 83?",
    "question_th": "โบนัสการพยายามนับสำหรับสโมสรที่มีการพยายามต่อต้านคือ 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_en": "Where is the real estate agent from?",
    "question_th": "นายหน้าอสังหาริมทรัพย์มาจากไหน?",
    "context": "CREATE TABLE table_1289860_2 (hometown VARCHAR, background VARCHAR)"
  },
  {
    "answer": "SELECT background FROM table_1289860_2 WHERE hometown = \"New York, New York\"",
    "question_en": "What background does the person from New york, New york, have?",
    "question_th": "บุคคลจากนิวยอร์ค นิวยอร์คมีภูมิหลังอะไรบ้าง?",
    "context": "CREATE TABLE table_1289860_2 (background VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(background) FROM table_1289860_2 WHERE hometown = \"Memphis, Tennessee\"",
    "question_en": "How many backgrounds are there represented from Memphis, Tennessee?",
    "question_th": "มีภูมิหลังกี่แบบที่มาจากเมืองเมมฟิส รัฐเทนเนสซี",
    "context": "CREATE TABLE table_1289860_2 (background VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(result) FROM table_1289860_2 WHERE background = \"Prosecutor\"",
    "question_en": "How many people had a prosecutor background?",
    "question_th": "มีภูมิหลังเป็นอัยการกี่คน?",
    "context": "CREATE TABLE table_1289860_2 (result VARCHAR, background VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_1289860_2 WHERE candidate = \"Kristen Kirchner\"",
    "question_en": "Where was Kristen Kirchner from?",
    "question_th": "Kristen Kirchner มาจากไหน?",
    "context": "CREATE TABLE table_1289860_2 (hometown VARCHAR, candidate VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(try_bonus) FROM table_12886178_5 WHERE tries_against = \"41\"",
    "question_en": "How many clubs have a tries against count of 41?",
    "question_th": "มีกี่สโมสรที่มีการพยายามต่อจำนวน 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_en": "How many clubs have won 6 games?",
    "question_th": "มีกี่สโมสรที่ชนะ 6 เกม?",
    "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_en": "How many clubs have a tries against count of 45 and a losing bonus of 4?",
    "question_th": "มีกี่สโมสรที่ได้ลองเล่นโดยนับได้ 45 ครั้งและมีโบนัสแพ้ 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_en": "What club has a tries for count of 19?",
    "question_th": "สโมสรใดมีโอกาสลองนับถึง 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_en": "How many clubs have tries for count of 50?",
    "question_th": "มีกี่ไม้กอล์ฟที่พยายามนับถึง 50 ไม้?",
    "context": "CREATE TABLE table_12886178_5 (played VARCHAR, tries_for VARCHAR)"
  },
  {
    "answer": "SELECT drawn FROM table_12886178_5 WHERE tries_for = \"76\"",
    "question_en": "What's the number of drawn games for the club with a tries for count of 76?",
    "question_th": "จำนวนเกมที่เสมอกันของสโมสรโดยพยายามเล่นถึง 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_en": "What is the against percentage in the Vest-Agder constituency?",
    "question_th": "เปอร์เซ็นต์เทียบกับในเขตเลือกตั้ง Vest-Agder คือเท่าใด",
    "context": "CREATE TABLE table_1289762_1 (against___percentage_ VARCHAR, constituency VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(electorate) FROM table_1289762_1 WHERE constituency = \"Hedmark\"",
    "question_en": "How many electorates are there with Hedmark as a constituency?",
    "question_th": "มีผู้มีสิทธิเลือกตั้งจำนวนกี่คนที่ Hedmark เป็นผู้มีสิทธิเลือกตั้ง",
    "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_en": "How many for percentages are there when the against percentage is 35,782 (69)?",
    "question_th": "มีกี่เปอร์เซ็นต์เมื่อเทียบกับเปอร์เซ็นต์คือ 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ør-Trøndelag\"",
    "question_en": "List the smallest possible spoilt vote with the sør-trøndelag constituency.",
    "question_th": "รายชื่อคะแนนเสียงที่เสียไปน้อยที่สุดที่เป็นไปได้กับเขตเลือกตั้งsør-trøndelag",
    "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_en": "List all total poll percentages when the for percentage is 59,532 (54).",
    "question_th": "แสดงรายการเปอร์เซ็นต์การสำรวจความคิดเห็นทั้งหมดเมื่อเปอร์เซ็นต์สำหรับคือ 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_en": "What's the writer of Episode 1?",
    "question_th": "ผู้เขียนตอนที่ 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_en": "What's the total number of episodes both directed by Tom Hooper and viewed by 8.08 million viewers?",
    "question_th": "จำนวนตอนทั้งหมดที่กำกับโดย Tom Hooper และมีผู้ชม 8.08 ล้านคนคือเท่าใด",
    "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_en": "What's the original airdate of the episode directed by Pete Travis?",
    "question_th": "ตอนที่กำกับโดย 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_en": "How many millions of viewers did watch Episode 5?",
    "question_th": "มีผู้ชมดูตอนที่ 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_en": "What's the total number of directors whose episodes have been seen by 9.14 million viewers?",
    "question_th": "ผู้กำกับที่มีคนดูตอน 9.14 ล้านคนมีทั้งหมดกี่คน?",
    "context": "CREATE TABLE table_12919003_3 (director VARCHAR, viewers_millions_ VARCHAR)"
  },
  {
    "answer": "SELECT director FROM table_12919003_2 WHERE episode = \"episode 5\"",
    "question_en": "Who directed Episode 5?",
    "question_th": "ใครกำกับตอนที่ 5?",
    "context": "CREATE TABLE table_12919003_2 (director VARCHAR, episode VARCHAR)"
  },
  {
    "answer": "SELECT viewers_millions_ FROM table_12919003_2 WHERE episode = \"episode 5\"",
    "question_en": "How many viewers did Episode 5 have?",
    "question_th": "ตอนที่ 5 มีผู้ชมกี่คน?",
    "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_en": " what's the no with current club being panathinaikos and position being forward",
    "question_th": "ข้อเสียของสโมสรปัจจุบันคือพานาธิไนกอสและตำแหน่งกองหน้า",
    "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_en": "what's height with position being center and year born being bigger than 1980.0",
    "question_th": "ส่วนสูงเท่าไรโดยตำแหน่งตรงกลางและปีเกิดใหญ่กว่าปี 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_en": "what's player with position being forward and current club being real madrid",
    "question_th": "ผู้เล่นที่มีตำแหน่งเป็นกองหน้า และสโมสรปัจจุบันคือเรอัล มาดริด",
    "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_en": "what's current club with player being nikolaos chatzivrettas",
    "question_th": "สโมสรปัจจุบันมีผู้เล่นชื่อ 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_en": "what's current club with height being 2.09",
    "question_th": "ไม้กอล์ฟปัจจุบันสูง 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_en": "what's current club with position being center and no being bigger than 12.0",
    "question_th": "สโมสรปัจจุบันคือตำแหน่งตรงกลางและไม่เกิน 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_en": "What is the opponent of the veterans stadium",
    "question_th": "ฝ่ายตรงข้ามของสนามทหารผ่านศึกคืออะไร",
    "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_en": "What year was the player born who is 2.02m tall?",
    "question_th": "นักเตะส่วนสูง 2.02 ม. เกิดปีไหน?",
    "context": "CREATE TABLE table_12962773_14 (year_born INTEGER, height VARCHAR)"
  },
  {
    "answer": "SELECT MAX(no) FROM table_12962773_14 WHERE player = \"Aleksandar Ćapin\"",
    "question_en": "What number does aleksandar ćapin wear?",
    "question_th": "อเล็กซานดาร์ ชาปินใส่เบอร์อะไร?",
    "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_en": "Name the total number of grupo capitol valladolid",
    "question_th": "ตั้งชื่อจำนวนรวมของ group 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_en": "Name the height for the player born in 1980 and center?",
    "question_th": "บอกส่วนสูงของนักเตะที่เกิดปี 1980 และเซนเตอร์?",
    "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_en": "What is the total number that has a height of 2.06?",
    "question_th": "จำนวนรวมที่มีส่วนสูง 2.06 เป็นเท่าใด",
    "context": "CREATE TABLE table_12962773_13 (no VARCHAR, height VARCHAR)"
  },
  {
    "answer": "SELECT current_club FROM table_12962773_13 WHERE no = 6",
    "question_en": "Name the current club for number 6",
    "question_th": "ตั้งชื่อสโมสรปัจจุบันสำหรับหมายเลข 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_en": "Name the current club for player sacha giffa",
    "question_th": "ตั้งชื่อสโมสรปัจจุบันสำหรับผู้เล่น ซาชา กิฟฟา",
    "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_en": "What is the minimum year born for strasbourg?",
    "question_th": "ปีขั้นต่ำที่เกิดในสตราสบูร์กคือเท่าไร?",
    "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_en": "Which club had a player born in 1983?",
    "question_th": "สโมสรใดมีนักเตะเกิดในปี 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_en": "How tall is Marco Belinelli?",
    "question_th": "มาร์โก เบลิเนลลี สูงเท่าไหร่?",
    "context": "CREATE TABLE table_12962773_15 (height VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(no) FROM table_12962773_15 WHERE player = \"Andrea Bargnani\"",
    "question_en": "What number is Andrea Bargnani?",
    "question_th": "อันเดรีย บาร์ญานี เบอร์อะไร?",
    "context": "CREATE TABLE table_12962773_15 (no INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_12962773_15 WHERE no = 6",
    "question_en": "What player is number 6?",
    "question_th": "นักเตะหมายเลข 6 คือใคร?",
    "context": "CREATE TABLE table_12962773_15 (player VARCHAR, no VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(current_club) FROM table_12962773_15 WHERE no = 6",
    "question_en": "How many clubs does number 6 play for?",
    "question_th": "เบอร์ 6 เล่นได้กี่สโมสร?",
    "context": "CREATE TABLE table_12962773_15 (current_club VARCHAR, no VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(player) FROM table_12962773_5 WHERE no = 12",
    "question_en": " how many player with no being 12",
    "question_th": " มีผู้เล่นกี่คนที่ไม่มี 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_en": "what's the height with position being forward and current club being real madrid",
    "question_th": "ตำแหน่งกองหน้าและสโมสรปัจจุบันคือเรอัล มาดริดสูงแค่ไหน",
    "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_en": "what's the height with current club being dkv joventut",
    "question_th": "สโมสรปัจจุบันคือ 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_en": "what's the current club with player being felipe reyes",
    "question_th": "สโมสรปัจจุบันที่มีผู้เล่นชื่อเฟลิเป้ เรเยสคือสโมสรอะไร",
    "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_en": "Who directed the episode that had 6.04 million viewers? ",
    "question_th": " ใครเป็นผู้กำกับตอนที่มีผู้ชม 6.04 ล้านคน?",
    "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_en": "What number episode had 5.74 million viewers? ",
    "question_th": " จำนวนตอนใดที่มีผู้ชม 5.74 ล้านคน?",
    "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_en": "When did the construction of the unit Chinon B1 with net power of 905 MW start?",
    "question_th": "การก่อสร้างยูนิต Chinon B1 กำลังผลิตสุทธิ 905 เมกะวัตต์ เริ่มก่อสร้างเมื่อใด",
    "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_en": "What's the total power of the unit whose construction finished on 14.06.1963?",
    "question_th": "กำลังไฟฟ้าทั้งหมดของยูนิตที่ก่อสร้างแล้วเสร็จเมื่อวันที่ 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_en": "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?",
    "question_th": "มีค่ากำลังไฟฟ้ารวมที่แตกต่างกันกี่ค่าสำหรับหน่วยที่เริ่มก่อสร้างเมื่อวันที่ 01.03.1977 และเริ่มดำเนินการเชิงพาณิชย์เมื่อ 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_en": "What's the shut down state of the unit that's been in commercial operation since 01.02.1984?",
    "question_th": "สถานะการปิดเครื่องของยูนิตที่เปิดดำเนินการเชิงพาณิชย์ตั้งแต่วันที่ 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_en": "When was the start of the construction of the unit that's been in commercial operation since 04.03.1987?",
    "question_th": "ยูนิตที่เริ่มดำเนินการเชิงพาณิชย์ตั้งแต่ 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_en": "what is the total viewers where the date of first broadcast is 28 january 2010 and the episode number is 1?",
    "question_th": "จำนวนผู้ชมทั้งหมดวันที่ 28 มกราคม 2553 ออกอากาศครั้งแรก วันที่ 28 มกราคม 2553 หมายเลขตอนคือเท่าไร?",
    "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_en": "what is the episode number where the total viewers is 614000?",
    "question_th": "เลขตอนไหนคนดูทั้งหมด 614,000 คนคะ?",
    "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_en": "what is  the series number where the date of first broadcast is 16 october 2008?",
    "question_th": "ซีรีส์หมายเลขอะไร ซึ่งออกอากาศครั้งแรกวันที่ 16 ตุลาคม 2551?",
    "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_en": "In what year did Easton LL Easton play in Maryland?",
    "question_th": "Easton LL Easton เล่นในรัฐแมรี่แลนด์ในปีใด",
    "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_en": "What teams played in Washington, DC the year that Ramapo LL Ramapo was the game in New York?",
    "question_th": "ทีมใดที่เล่นในวอชิงตัน ดี.ซี. ในปีที่ Ramapo LL Ramapo เป็นเกมที่นิวยอร์ก?",
    "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_en": "Which year did Maryland hold the title with Railroaders LL Brunswick?",
    "question_th": "รัฐแมรี่แลนด์ครองตำแหน่งร่วมกับ 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_en": "Who played in Maryland the same year that New Jersey hosted Somerset Hills LL Bernardsville?",
    "question_th": "ใครเล่นในรัฐแมริแลนด์ในปีเดียวกับที่นิวเจอร์ซีย์เป็นเจ้าภาพ 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_en": "After the year 2008.0, who played for Maryland the same year M.O.T. LL Middletown played in Delaware?",
    "question_th": "หลังจากปี 2008.0 ใครเล่นให้กับแมริแลนด์ในปีเดียวกับที่ MOT LL มิดเดิลทาวน์เล่นในเดลาแวร์?",
    "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_en": "Who played in Maryland the same year that Deep Run Valley LL Hilltown played in Pennsylvania?",
    "question_th": "ใครเล่นในรัฐแมริแลนด์ในปีเดียวกับที่ Deep Run Valley LL Hilltown เล่นในเพนซิลเวเนีย?",
    "context": "CREATE TABLE table_13012165_1 (maryland VARCHAR, pennsylvania VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_1301373_1 WHERE stadium = \"Bluetongue stadium\"",
    "question_en": "Where is Bluetongue Stadium located? ",
    "question_th": " สนามกีฬาบลูทัง อยู่ที่ไหน",
    "context": "CREATE TABLE table_1301373_1 (location VARCHAR, stadium VARCHAR)"
  },
  {
    "answer": "SELECT founded FROM table_1301373_1 WHERE captain = \"Matt Smith\"",
    "question_en": "When was the team, whose captain is Matt Smith,  founded? ",
    "question_th": "ทีมซึ่งกัปตันคือแมตต์ สมิธ ก่อตั้งขึ้นเมื่อใด",
    "context": "CREATE TABLE table_1301373_1 (founded VARCHAR, captain VARCHAR)"
  },
  {
    "answer": "SELECT captain FROM table_1301373_1 WHERE head_coach = \"Alistair Edwards\"",
    "question_en": "Who's the captain of the team whose head coach is Alistair Edwards? ",
    "question_th": " ใครคือกัปตันทีมซึ่งมีหัวหน้าโค้ชคือ อลิสแตร์ เอ็ดเวิร์ดส์?",
    "context": "CREATE TABLE table_1301373_1 (captain VARCHAR, head_coach VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(location) FROM table_1301373_1 WHERE team = \"Newcastle Jets\"",
    "question_en": "How many locations does the team Newcastle Jets come from? ",
    "question_th": " ทีมนิวคาสเซิ่ล เจ็ทส์ มาจากกี่ตำแหน่ง?",
    "context": "CREATE TABLE table_1301373_1 (location VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_1301373_1 WHERE stadium = \"Westpac stadium\"",
    "question_en": "Where is Westpac Stadium located? ",
    "question_th": " สนามกีฬา Westpac อยู่ที่ไหน",
    "context": "CREATE TABLE table_1301373_1 (location VARCHAR, stadium VARCHAR)"
  },
  {
    "answer": "SELECT new_hampshire FROM table_13011547_1 WHERE year = 2009",
    "question_en": "What is the new hampshire in 2009?",
    "question_th": "นิวแฮมป์เชียร์ในปี 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_en": "What is the most points when the won is 9?",
    "question_th": "แต้มมากที่สุดเมื่อชนะคือ 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_en": "What is the number of played when points against 645?",
    "question_th": "จำนวนการเล่นเมื่อแต้มต่อ 645 เป็นเท่าใด?",
    "context": "CREATE TABLE table_13018116_1 (played VARCHAR, pts_agst VARCHAR)"
  },
  {
    "answer": "SELECT MIN(pts_for) FROM table_13018116_1",
    "question_en": "Name the most points for",
    "question_th": "ตั้งชื่อคะแนนมากที่สุดสำหรับ",
    "context": "CREATE TABLE table_13018116_1 (pts_for INTEGER)"
  },
  {
    "answer": "SELECT MAX(pts_agst) FROM table_13018116_1 WHERE pts_for = 860",
    "question_en": "Name the most points against when points for is 860",
    "question_th": "ตั้งชื่อคะแนนมากที่สุดเทียบกับเมื่อคะแนนคือ 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_en": "How many teams scored 616 points?",
    "question_th": "มีกี่ทีมที่ได้คะแนน 616 คะแนน?",
    "context": "CREATE TABLE table_13018091_1 (won VARCHAR, pts_for VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(drawn) FROM table_13018091_1 WHERE club = \"Widnes Vikings\"",
    "question_en": "How many teams drew the widnes vikings?",
    "question_th": "มีกี่ทีมที่ดึง Widnes Vikings?",
    "context": "CREATE TABLE table_13018091_1 (drawn VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT MIN(won) FROM table_13018091_1 WHERE club = \"Whitehaven\"",
    "question_en": "How many games did whitehaven win?",
    "question_th": "ไวท์เฮเว่นชนะไปกี่เกม?",
    "context": "CREATE TABLE table_13018091_1 (won INTEGER, club VARCHAR)"
  },
  {
    "answer": "SELECT MAX(position) FROM table_13018091_1 WHERE club = \"Sheffield Eagles\"",
    "question_en": "What position did the sheffield eagles finish in?",
    "question_th": "เชฟฟิลด์ อีเกิลส์ จบด้วยตำแหน่งใด?",
    "context": "CREATE TABLE table_13018091_1 (position INTEGER, club VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_13023925_2 WHERE week = 14",
    "question_en": "What was the date of the game in week 14?",
    "question_th": "วันที่ของเกมในสัปดาห์ที่ 14 คืออะไร?",
    "context": "CREATE TABLE table_13023925_2 (date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(points) FROM table_13015539_1 WHERE lost = 8",
    "question_en": "What is the total points for the tean with 8 losses?",
    "question_th": "แต้มรวมของเตี่ยนที่แพ้ 8 นัดคือเท่าไหร่?",
    "context": "CREATE TABLE table_13015539_1 (points VARCHAR, lost VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(lost) FROM table_13015539_1 WHERE club = \"Keighley Cougars\"",
    "question_en": "How many numbers are given for losses by the Keighley Cougars?",
    "question_th": "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_en": "Name the australian marquee for alessandro del piero",
    "question_th": "ตั้งชื่อกระโจมออสเตรเลียสำหรับอเลสซานโดร เดล ปิเอโร",
    "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_en": "Name the vice captain for melbourne victory",
    "question_th": "ตั้งชื่อรองกัปตันทีมเพื่อชัยชนะที่เมลเบิร์น",
    "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_en": "Name the captain for emile heskey",
    "question_th": "ตั้งชื่อกัปตันให้เอมิล เฮสกีย์",
    "context": "CREATE TABLE table_1301373_7 (captain VARCHAR, international_marquee VARCHAR)"
  },
  {
    "answer": "SELECT championship FROM table_13026799_1 WHERE margin = \"Playoff 2\"",
    "question_en": "What championship had a margin of playoff 2?",
    "question_th": "แชมป์อะไรมีระยะเพลย์ออฟ 2 บ้าง?",
    "context": "CREATE TABLE table_13026799_1 (championship VARCHAR, margin VARCHAR)"
  },
  {
    "answer": "SELECT margin FROM table_13026799_1 WHERE championship = \"Masters Tournament\"",
    "question_en": "What was the margin of the Masters Tournament?",
    "question_th": "อะไรคือส่วนต่างของ 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_en": "What was the winning score of the Masters Tournament?",
    "question_th": "คะแนนชนะของ 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_en": "What was the winning score of the PGA Championship (3)?",
    "question_th": "คะแนนชนะของ 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_en": "What is the number of starts for 1987?",
    "question_th": "จำนวนการออกสตาร์ทในปี 1987 เป็นเท่าใด?",
    "context": "CREATE TABLE table_13026799_3 (starts VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT scoring_average FROM table_13026799_3 WHERE earnings__$_ = 111419",
    "question_en": "What is the scoring aerage for 111419?",
    "question_th": "คะแนนทางอากาศของ 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_en": "What is the money list rank for 1966?",
    "question_th": "อันดับรายการเงินของปี 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_en": "Name the total number of scoring average for money list rank of 174",
    "question_th": "ตั้งชื่อจำนวนคะแนนเฉลี่ยรวมสำหรับรายการเงินอันดับ 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_en": "What is the county where kerry# is 59740?",
    "question_th": "จังหวัดไหนที่ kerry# คือ 59740?",
    "context": "CREATE TABLE table_1302886_1 (county VARCHAR, kerry_number VARCHAR)"
  },
  {
    "answer": "SELECT kerry_number FROM table_1302886_1 WHERE county = \"Cook\"",
    "question_en": "In cook county Kerry# is?",
    "question_th": "ในคุกเคาน์ตี้Kerry#คือ?",
    "context": "CREATE TABLE table_1302886_1 (kerry_number VARCHAR, county VARCHAR)"
  },
  {
    "answer": "SELECT kerry_number FROM table_1302886_1 WHERE bush_number = 3907",
    "question_en": "When bush# is 3907, what is Kerry#?",
    "question_th": "เมื่อ bush# เป็น 3907 แล้ว 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_en": "What is the others# when bush% is 57.0%?",
    "question_th": "อย่างอื่น # คืออะไรเมื่อ bush% คือ 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_en": "what's the mole with airdate being 8 january 2009",
    "question_th": "อะไรคือตัวตุ่นที่ออกอากาศวันที่ 8 มกราคม 2552",
    "context": "CREATE TABLE table_13036251_1 (the_mole VARCHAR, airdate VARCHAR)"
  },
  {
    "answer": "SELECT the_mole FROM table_13036251_1 WHERE prize_money = \"€24,475\"",
    "question_en": "what's the mole with prize money being €24,475",
    "question_th": "ตัวตุ่นที่มีเงินรางวัลอยู่ที่ 24,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_en": " what's the the mole with airdate being 5 january 2012",
    "question_th": " ตัวตุ่นที่ออกอากาศวันที่ 5 มกราคม 2555 คืออะไร",
    "context": "CREATE TABLE table_13036251_1 (the_mole VARCHAR, airdate VARCHAR)"
  },
  {
    "answer": "SELECT airdate FROM table_13036251_1 WHERE international_destination = \"Scotland\"",
    "question_en": "what's airdate with international destination being scotland",
    "question_th": "วันที่ออกอากาศโดยปลายทางต่างประเทศคือสกอตแลนด์",
    "context": "CREATE TABLE table_13036251_1 (airdate VARCHAR, international_destination VARCHAR)"
  },
  {
    "answer": "SELECT the_mole FROM table_13036251_1 WHERE winner = \"Frédérique Huydts\"",
    "question_en": "what's the mole with winner being frédérique huydts",
    "question_th": "อะไรเป็นไฝที่ผู้ชนะคือเฟรเดริเก ฮุยต์ส",
    "context": "CREATE TABLE table_13036251_1 (the_mole VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT runner_up FROM table_13036251_1 WHERE season = \"season 13\"",
    "question_en": "what's runner-up with season being season 13",
    "question_th": "รองชนะเลิศคือฤดูกาลที่ 13",
    "context": "CREATE TABLE table_13036251_1 (runner_up VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT county FROM table_1304443_2 WHERE kerry_number = 29231",
    "question_en": "In what county did 29231 people vote for Kerry?",
    "question_th": "มีคนโหวตให้เคอรี่ 29231 คนในเขตไหน?",
    "context": "CREATE TABLE table_1304443_2 (county VARCHAR, kerry_number VARCHAR)"
  },
  {
    "answer": "SELECT county FROM table_1304443_2 WHERE bush_percentage = \"48.3%\"",
    "question_en": "What's the name of the county where 48.3% voted for Bush?",
    "question_th": "มณฑลที่ 48.3% โหวตให้บุชชื่ออะไร",
    "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_en": "What's the percentage of votes for other candidates in the county where Bush got 51.6% of the votes?",
    "question_th": "เปอร์เซ็นต์ของคะแนนเสียงสำหรับผู้สมัครคนอื่นๆ ในเขตที่บุชได้รับคะแนนเสียง 51.6% เป็นเท่าใด",
    "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_en": "What's the name of the county where 54.6% voted for Bush?",
    "question_th": "มณฑลที่ 54.6% โหวตให้บุชชื่ออะไร",
    "context": "CREATE TABLE table_1304443_2 (county VARCHAR, bush_percentage VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(steals) FROM table_13050003_3 WHERE year = 2012",
    "question_en": "What is the number of steals for 2012",
    "question_th": "จำนวนขโมยในปี 2555 เป็นเท่าใด",
    "context": "CREATE TABLE table_13050003_3 (steals VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT blocks FROM table_13050003_2 WHERE points = \"Zach Randolph (24)\"",
    "question_en": "Who are the blockers where points are scored by Zach Randolph (24)?",
    "question_th": "ใครคือบล็อคเกอร์ที่แซค แรนดอล์ฟ (24) ทำแต้มได้?",
    "context": "CREATE TABLE table_13050003_2 (blocks VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(rebounds) FROM table_13050003_2 WHERE year = 2008",
    "question_en": "How many rebounds were there in 2008?",
    "question_th": "ในปี 2551 มีการรีบาวด์กี่ครั้ง?",
    "context": "CREATE TABLE table_13050003_2 (rebounds VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT blocks FROM table_13050003_2 WHERE year = 2012",
    "question_en": "Who had all of the blocks in 2012?",
    "question_th": "ใครมีบล็อกทั้งหมดในปี 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_en": "What year has Nerlens Noel (4) as blocker?",
    "question_th": "Nerlens Noel (4) เป็นตัวบล็อกในปีใด",
    "context": "CREATE TABLE table_13050003_2 (year INTEGER, blocks VARCHAR)"
  },
  {
    "answer": "SELECT MAX(silver_medals) FROM table_1305623_18",
    "question_en": "What is the most silver medals?",
    "question_th": "เหรียญเงินมากที่สุดคืออะไร?",
    "context": "CREATE TABLE table_1305623_18 (silver_medals INTEGER)"
  },
  {
    "answer": "SELECT gold_medals FROM table_1305623_18 WHERE silver_medals < 1.0",
    "question_en": "what are all the gold medals when the silver medals is smaller than 1.0?",
    "question_th": "เหรียญทองทั้งหมดเท่าไหร่เมื่อเหรียญเงินน้อยกว่า 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_en": "How many numbers were listed under Silver Medals for Portsmouth HS?",
    "question_th": "มีกี่หมายเลขที่อยู่ในเหรียญเงินสำหรับ Portsmouth HS",
    "context": "CREATE TABLE table_1305623_20 (silver_medals VARCHAR, ensemble VARCHAR)"
  },
  {
    "answer": "SELECT MIN(total_medals) FROM table_1305623_20",
    "question_en": "What was the smallest total number of medals?",
    "question_th": "จำนวนเหรียญทั้งหมดน้อยที่สุดคือเท่าไร?",
    "context": "CREATE TABLE table_1305623_20 (total_medals INTEGER)"
  },
  {
    "answer": "SELECT MAX(gold_medals) FROM table_1305623_20 WHERE ensemble = \"Naugatuck HS\"",
    "question_en": "What is the highest number of gold medals Naugatuck HS won?",
    "question_th": "Naugatuck HS ได้เหรียญทองมากที่สุดคือเท่าไร?",
    "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_en": "what is the maximum round for gt3 winner hector lester tim mullen and pole position of jonny cocker paul drayson",
    "question_th": "รอบสูงสุดสำหรับผู้ชนะ GT3 คือเท่าไร เฮคเตอร์ เลสเตอร์ ทิม มัลเลน และตำแหน่งโพลโพซิชั่นของจอนนี่ ค็อกเกอร์ พอล เดรย์สัน",
    "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_en": "what are all the date for gt3 winner oliver bryant matt harris",
    "question_th": "วันที่สำหรับผู้ชนะ gt3 คือโอลิเวอร์ ไบรอันท์ แมตต์ แฮร์ริส",
    "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_en": "what are all the date for gtc winners graeme mundy jamie smyth and gt3 winners hector lester tim mullen",
    "question_th": "วันที่เท่าไหร่สำหรับผู้ชนะ gtc แกรม มุนดี้ เจมี สมิธ และผู้ชนะ gt3 เฮคเตอร์ เลสเตอร์ ทิม มัลเลน",
    "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_en": "what are all the circuit for 9 september and gt3 winner hector lester allan simonsen",
    "question_th": "การแข่งขันทั้งหมดในวันที่ 9 กันยายนและผู้ชนะ GT3 คืออะไร เฮคเตอร์ เลสเตอร์ อัลลัน ไซมอนเซน",
    "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_en": "what are all the circuit for gtc winner graeme mundy jamie smyth and pole position bradley ellis alex mortimer",
    "question_th": "อะไรคือวงจรทั้งหมดสำหรับผู้ชนะ gtc แกรม มุนดี้ เจมี สมิธและตำแหน่งโพล แบรดลีย์ เอลลิส อเล็กซ์ มอร์ติเมอร์",
    "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_en": "what are all the gtc winners for pole position no. 21 team modena",
    "question_th": "ผู้ชนะ gtc สำหรับตำแหน่งโพลโพซิชั่นคือใคร 21 ทีม โมเดน่า",
    "context": "CREATE TABLE table_13079788_3 (gtc_winner VARCHAR, pole_position VARCHAR)"
  },
  {
    "answer": "SELECT composition FROM table_1307572_1 WHERE edge = \"Rounded, plain\"",
    "question_en": "What material is made with a rounded, plain edge?",
    "question_th": "วัสดุชนิดใดที่ทำด้วยขอบมนเรียบๆ?",
    "context": "CREATE TABLE table_1307572_1 (composition VARCHAR, edge VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(reverse) FROM table_1307572_1 WHERE diameter = \"23mm\"",
    "question_en": "How many coins have a diameter of 23mm?",
    "question_th": "เส้นผ่านศูนย์กลาง 23 มม. มีกี่เหรียญ?",
    "context": "CREATE TABLE table_1307572_1 (reverse VARCHAR, diameter VARCHAR)"
  },
  {
    "answer": "SELECT first_minting FROM table_1307572_1 WHERE mass = \"3.7 g\"",
    "question_en": "When was the coin with the mass of 3.7 g first minted?",
    "question_th": "เหรียญมวล 3.7 กรัม ผลิตครั้งแรกเมื่อใด",
    "context": "CREATE TABLE table_1307572_1 (first_minting VARCHAR, mass VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(population) FROM table_1307842_7 WHERE member_countries = \"Lithuania\"",
    "question_en": "What is the number of population for lithuania?",
    "question_th": "จำนวนประชากรในลิทัวเนียคือเท่าไร?",
    "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_en": "Name the gdp where gdp per capita 20200",
    "question_th": "ตั้งชื่อ gdp โดยที่ gdp per capita 20200",
    "context": "CREATE TABLE table_1307842_7 (gdp__billion_us$_ VARCHAR, gdp_per_capita__us$_ VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(area__km²_) FROM table_1307842_7 WHERE population = 775927",
    "question_en": "Name the total number of area for 775927 population",
    "question_th": "ตั้งชื่อจำนวนพื้นที่ทั้งหมดสำหรับประชากร 775927 คน",
    "context": "CREATE TABLE table_1307842_7 (area__km²_ VARCHAR, population VARCHAR)"
  },
  {
    "answer": "SELECT gdp__billion_us$_ FROM table_1307842_6 WHERE area__km²_ = 83871",
    "question_en": "What is the gdp of the country with an area of 83871 (km2)?",
    "question_th": "GDP ของประเทศที่มีพื้นที่ 83871 (km2) เป็นเท่าใด",
    "context": "CREATE TABLE table_1307842_6 (gdp__billion_us$_ VARCHAR, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT gdp__billion_us$_ FROM table_1307842_6 WHERE gdp_per_capita__us$_ = 18048",
    "question_en": "What was the gdp of the country with a gdp per capita of $18048?",
    "question_th": "GDP ของประเทศที่มี GDP ต่อหัวอยู่ที่ 18,048 ดอลลาร์เป็นเท่าใด",
    "context": "CREATE TABLE table_1307842_6 (gdp__billion_us$_ VARCHAR, gdp_per_capita__us$_ VARCHAR)"
  },
  {
    "answer": "SELECT MAX(area__km²_) FROM table_1307842_6 WHERE member_countries = \"Austria\"",
    "question_en": "What is Austria's maximum area (km2)?",
    "question_th": "พื้นที่สูงสุดของออสเตรีย (km2) คือเท่าใด",
    "context": "CREATE TABLE table_1307842_6 (area__km²_ INTEGER, member_countries VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_13082900_1 WHERE rookie_of_the_year = \"No award given\"",
    "question_en": "What is the season for no award given for rookie of the year?",
    "question_th": "ฤดูกาลที่ไม่ได้รับรางวัลสำหรับมือใหม่แห่งปีคืออะไร?",
    "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_en": " how many air date with overall being 83/95",
    "question_th": " ออนแอร์กี่วันครับ รวม 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_en": " how many viewers (m) with overall being 91/101",
    "question_th": " จำนวนคนดู (ม.) โดยคะแนนรวมอยู่ที่ 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_en": "what are all the rating with viewers (m) being 2.89",
    "question_th": "เรตติ้งทั้งหมดโดยคนดู (m) อยู่ที่ 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_en": "what are all the overall with rating being 1.4",
    "question_th": "โดยรวมแล้วมีเรตติ้งอยู่ที่ 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_en": "what are all the overall with viewers (m) being 2.61",
    "question_th": "โดยรวมโดยผู้ชม (m) อยู่ที่ 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_en": "what are all the rating with viewers (m) being 2.61",
    "question_th": "เรตติ้งทั้งหมดโดยคนดู (m) อยู่ที่ 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_en": "what is the year where the qualifying score was 15.150?",
    "question_th": "ปีไหนที่คะแนนเข้ารอบคือ 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_en": "how many times was the qualifying score 60.750?",
    "question_th": "คะแนนเข้ารอบ 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_en": "how many times is the qualifying score 61.400?",
    "question_th": "คะแนนเข้ารอบ 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_en": "what is the final-rank for the uneven bars and the competition is u.s. championships?",
    "question_th": "อันดับสุดท้ายสำหรับบาร์ที่ไม่เท่ากันคืออะไรและการแข่งขันคือ US Championships?",
    "context": "CREATE TABLE table_13114949_3 (final_rank VARCHAR, event VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT MIN(qualifying_rank) FROM table_13114949_3",
    "question_en": "what is the lowest qualifying rank?",
    "question_th": "อันดับที่มีคุณสมบัติต่ำสุดคืออะไร?",
    "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_en": "what is the highest qualifying rank where the competition is olympic trials, the final-rank is 4 and qualifying score is 15.100?",
    "question_th": "อะไรคืออันดับสูงสุดที่มีคุณสมบัติโดยการแข่งขันคือโอลิมปิกรอบคัดเลือก อันดับสุดท้ายคือ 4 และคะแนนรอบคัดเลือกคือ 15.100",
    "context": "CREATE TABLE table_13114949_3 (qualifying_rank INTEGER, qualifying_score VARCHAR, competition VARCHAR, final_rank VARCHAR)"
  },
  {
    "answer": "SELECT kōhaku__number FROM table_1315616_1 WHERE red_team_host = \"Peggy Hayama\"",
    "question_en": "In what number kōhaku was the red team host Peggy Hayama? ",
    "question_th": " โคฮาคุเป็นเจ้าภาพทีมสีแดง เพ็กกี้ ฮายามะ ในจำนวนเท่าใด",
    "context": "CREATE TABLE table_1315616_1 (kōhaku__number VARCHAR, red_team_host VARCHAR)"
  },
  {
    "answer": "SELECT mediator FROM table_1315616_1 WHERE kōhaku__number = 53",
    "question_en": "Who was the mediator in kōhaku number 53?",
    "question_th": "ใครเป็นคนกลางในโคฮากุหมายเลข 53?",
    "context": "CREATE TABLE table_1315616_1 (mediator VARCHAR, kōhaku__number VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_1315616_1 WHERE mediator = \"Keiichi Ubukata\" AND red_team_host = \"Mitsuko Mori\"",
    "question_en": "On what date was Keiichi Ubukata the mediator and Mitsuko Mori the red team host?",
    "question_th": "เคอิจิ อูบุกาตะ เป็นคนกลาง และ มิตสึโกะ โมริ เป็นเจ้าภาพทีมสีแดงวันไหน?",
    "context": "CREATE TABLE table_1315616_1 (date VARCHAR, mediator VARCHAR, red_team_host VARCHAR)"
  },
  {
    "answer": "SELECT MAX(year) FROM table_13169136_1",
    "question_en": "What is the most recent year?",
    "question_th": "ล่าสุดคือปีไหนคะ?",
    "context": "CREATE TABLE table_13169136_1 (year INTEGER)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_13169136_1 WHERE champion = \"Jiyai Shin\"",
    "question_en": "What year is Jiyai Shin the champion?",
    "question_th": "จิไย ชิน แชมป์ปีไหนคะ?",
    "context": "CREATE TABLE table_13169136_1 (year VARCHAR, champion VARCHAR)"
  },
  {
    "answer": "SELECT _number FROM table_13183076_3 WHERE production_code = \"3T7057\"",
    "question_en": "What is the # for the episode with a Production code of 3T7057?",
    "question_th": "# ของตอนที่มีรหัสการผลิต 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_en": "What is the Original air date for the episode directed by Tricia Brock?",
    "question_th": "วันที่ออกอากาศดั้งเดิมสำหรับตอนที่กำกับโดย 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_en": "What is the Original air date for the episode written by Peter Ocko?",
    "question_th": "วันที่ออกอากาศดั้งเดิมของตอนที่เขียนโดย 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_en": "How many U.S. viewers (million) are there for the episode whose Production code is 3T7051?",
    "question_th": "มีผู้ชมในสหรัฐฯ จำนวนกี่คน (ล้าน) สำหรับตอนที่มีรหัสการผลิตคือ 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_en": "How many michelob ultra mountains classification for darren lill",
    "question_th": "มีการจัดประเภท Michelob Ultra Mountain ไว้กี่แบบสำหรับ 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_en": "What was the release date of Sonic Adventure 2?",
    "question_th": "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_en": "Was the release on April 8 available on Windows?",
    "question_th": "วางจำหน่ายในวันที่ 8 เมษายนบน Windows หรือไม่",
    "context": "CREATE TABLE table_1322904_1 (windows VARCHAR, release VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_1322904_1 WHERE release = \"August 27\"",
    "question_en": "What title was released on August 27?",
    "question_th": "ชื่ออะไรเปิดตัวเมื่อวันที่ 27 สิงหาคม?",
    "context": "CREATE TABLE table_1322904_1 (title VARCHAR, release VARCHAR)"
  },
  {
    "answer": "SELECT windows FROM table_1322914_1 WHERE title = \"Icewind Dale\"",
    "question_en": "Is icewind dale available for windows",
    "question_th": "Icewind Dale ใช้งานได้กับ Windows หรือไม่",
    "context": "CREATE TABLE table_1322914_1 (windows VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT no_yds FROM table_13237088_28 WHERE ast = 8",
    "question_en": "List all number of yards with an AST of 8.",
    "question_th": "แสดงรายการจำนวนหลาทั้งหมดโดยมีค่า AST เท่ากับ 8",
    "context": "CREATE TABLE table_13237088_28 (no_yds VARCHAR, ast VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_13258876_2 WHERE attendance = 61615",
    "question_en": "Who did the Seahawks play when the listed attendance was 61615?",
    "question_th": "Seahawks เล่นกับใครเมื่อมีผู้เข้าร่วมตามที่ระบุไว้คือ 61,615 คน",
    "context": "CREATE TABLE table_13258876_2 (opponent VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_13258876_2 WHERE date = \"September 18, 1983\"",
    "question_en": "What was the Seahawks record on September 18, 1983?",
    "question_th": "บันทึกของ Seahawks เมื่อวันที่ 18 กันยายน พ.ศ. 2526 คืออะไร?",
    "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_en": "What week did the Seahawks play at los angeles memorial coliseum?",
    "question_th": "Seahawks เล่นที่สนามกีฬาอนุสรณ์ลอสแอนเจลิสสัปดาห์ใด",
    "context": "CREATE TABLE table_13258876_2 (week INTEGER, game_site VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_13258876_2 WHERE attendance = 48945",
    "question_en": "What was the score of the game when the attendance was 48945?",
    "question_th": "คะแนนของเกมเมื่อผู้เข้าร่วมคือ 48945?",
    "context": "CREATE TABLE table_13258876_2 (result VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_13258876_2 WHERE date = \"September 4, 1983\"",
    "question_en": "Who did the Seahawks play on September 4, 1983?",
    "question_th": "Seahawks เล่นกับใครเมื่อวันที่ 4 กันยายน พ.ศ. 2526",
    "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_en": "What was the record set during the game played at Hubert H. Humphrey Metrodome?",
    "question_th": "อะไรคือสถิติที่ตั้งไว้ระหว่างเกมที่เล่นที่ 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_en": "On what date was the game against San Diego Chargers played?",
    "question_th": "เกมกับ ซานดิเอโก ชาร์จเจอร์ส ลงเล่นวันไหน?",
    "context": "CREATE TABLE table_13258851_2 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_13258851_2 WHERE opponent = \"Kansas City Chiefs\"",
    "question_en": "What was the date of the game against Kansas City Chiefs?",
    "question_th": "เกมกับแคนซัส ซิตี้ ชีฟส์คือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_13258851_2 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_13258851_2 WHERE date = \"September 16, 1984\"",
    "question_en": "What was the result of the game played on September 16, 1984?",
    "question_th": "ผลของการแข่งขันเมื่อวันที่ 16 กันยายน พ.ศ. 2527 เป็นอย่างไร?",
    "context": "CREATE TABLE table_13258851_2 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_13258806_2 WHERE result = \"W 43-14\"",
    "question_en": "On what date did the game end with the result w 43-14?",
    "question_th": "จบเกมวันที่เท่าไหร่ด้วยสกอร์ 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_en": "What was the attendance at the game that resulted in w 24-20? ",
    "question_th": " ผู้เข้าชมเกมที่ส่งผลให้ 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_en": "Who did they play against in the game that ended in 2-2?",
    "question_th": "พวกเขาเล่นกับใครในเกมที่จบลงด้วยสกอร์ 2-2?",
    "context": "CREATE TABLE table_13258806_2 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_13258806_2 WHERE record = \"0-1\"",
    "question_en": "When was the record of 0-1 set?",
    "question_th": "สถิติ 0-1 เซต เกิดขึ้นเมื่อไร?",
    "context": "CREATE TABLE table_13258806_2 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT MAX(week) FROM table_13258806_2 WHERE date = \"October 4, 1987\"",
    "question_en": "During what weak of the season was the game played on october 4, 1987?",
    "question_th": "เกมดังกล่าวเล่นในวันที่ 4 ตุลาคม พ.ศ. 2530 ในช่วงที่อ่อนแอของฤดูกาลเพียงใด",
    "context": "CREATE TABLE table_13258806_2 (week INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_13258972_2 WHERE record = \"1-1\"",
    "question_en": "What was the attendance when the record was 1-1?",
    "question_th": "การมีส่วนร่วมเมื่อบันทึกเป็น 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_en": "In what week was the record 5-9?",
    "question_th": "สถิติ 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_en": "What date did the Seahawks play the Kansas City Chiefs at the Kingdome?",
    "question_th": "Seahawks เล่น Kansas City Chiefs ที่ 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_en": "In what week was November 27, 1977?",
    "question_th": "วันที่ 27 พฤศจิกายน พ.ศ. 2520 ในสัปดาห์ใด",
    "context": "CREATE TABLE table_13259034_2 (week INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT game_site FROM table_13259034_2 WHERE date = \"October 16, 1977\"",
    "question_en": "Where did the teams play on October 16, 1977?",
    "question_th": "วันที่ 16 ตุลาคม พ.ศ. 2520 ทั้งสองทีมเล่นที่ไหน?",
    "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_en": "What team was the opponent at Mile High Stadium?",
    "question_th": "คู่ต่อสู้ที่สนามไมล์ไฮสเตเดียมคือทีมใด?",
    "context": "CREATE TABLE table_13259009_2 (opponent VARCHAR, game_site VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_13259009_2 WHERE opponent = \"Los Angeles Rams\"",
    "question_en": "What was the record when they played the Los Angeles Rams?",
    "question_th": "พวกเขาเล่นทีม 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_en": "Where did they play the San Diego Chargers?",
    "question_th": "พวกเขาเล่น 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_en": "How many times during the season were the seahawks 8-6?",
    "question_th": "กี่ครั้งในฤดูกาลนี้ที่ซีฮอว์กส 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_en": "On what day was the team playing at milwaukee county stadium?",
    "question_th": "ทีมจะเล่นที่สนามกีฬามิลวอกีเคาน์ตีวันไหน?",
    "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_en": "How many times did the team play at oakland-alameda county coliseum?",
    "question_th": "ทีมเล่นที่สนามกีฬาโอ๊คแลนด์-อาลาเมดาเคาน์ตีกี่ครั้ง?",
    "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_en": "Which episode was watched by 11.75 million U.S. viewers?",
    "question_th": "ตอนใดที่มีผู้ชมในสหรัฐอเมริกา 11.75 ล้านคน?",
    "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_en": "How many U.S. viewers, in millions, watched the episode that aired on November 13, 2007?",
    "question_th": "ผู้ชมในสหรัฐฯ จำนวนกี่ล้านคนที่ดูตอนที่ออกอากาศเมื่อวันที่ 13 พฤศจิกายน พ.ศ. 2550",
    "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_en": "How many episodes originally aired on April 29, 2008?",
    "question_th": "ออกอากาศครั้งแรกเมื่อวันที่ 29 เมษายน พ.ศ. 2551 มีกี่ตอน",
    "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_en": "How many millions of U.S. viewers watched episode 185?",
    "question_th": "ผู้ชมในสหรัฐฯ ดูตอนที่ 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_en": "Who directed the episode that originally aired on January 15, 2008?",
    "question_th": "ใครเป็นผู้กำกับตอนที่ออกอากาศครั้งแรกเมื่อวันที่ 15 มกราคม พ.ศ. 2551",
    "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_en": "How many players weight 95?",
    "question_th": "มีผู้เล่นกี่คนน้ำหนัก 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_en": "What's Enrique de la Fuente's weight?",
    "question_th": "เอ็นริเก เด ลา ฟูเอนเต มีน้ำหนักเท่าไหร่?",
    "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_en": "What was the election date for H. Brent Coles?",
    "question_th": "วันเลือกตั้งของ 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_en": "What was the election date for Arthur Hodges?",
    "question_th": "วันเลือกตั้งของ 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_en": "What is the country for  # 8",
    "question_th": "หมายเลข 8 ประเทศอะไร",
    "context": "CREATE TABLE table_13282157_1 (country VARCHAR, _number VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_13282157_1 WHERE player = \"Phil Mickelson\"",
    "question_en": "what is the country where the player is phil mickelson?",
    "question_th": "ฟิล มิคเคลสันคือประเทศอะไร?",
    "context": "CREATE TABLE table_13282157_1 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(Reset) AS points FROM table_13282157_1 WHERE events = 23",
    "question_en": "What is the highest reset points where the events is 23?",
    "question_th": "จุดรีเซ็ตสูงสุดที่เหตุการณ์คือ 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_en": "What round was held at Knowsley Road, resulting in a lose.",
    "question_th": "รอบไหนจัดที่ Knowsley Road ส่งผลให้แพ้",
    "context": "CREATE TABLE table_13328239_4 (round VARCHAR, venue VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_13328239_4 WHERE round = \"QF\"",
    "question_en": "What's the score of the QF round?",
    "question_th": "รอบ QF ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_13328239_4 (score VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(round) FROM table_13328239_4 WHERE score = \"16-52\"",
    "question_en": "How many rounds ended with a score of 16-52?",
    "question_th": "จบไปกี่รอบด้วยสกอร์ 16-52?",
    "context": "CREATE TABLE table_13328239_4 (round VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_13328239_4 WHERE round = \"2\"",
    "question_en": "Who was the opponent in round 2?",
    "question_th": "คู่ต่อสู้ในรอบที่ 2 คือใคร?",
    "context": "CREATE TABLE table_13328239_4 (opponent VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_13328239_4 WHERE venue = \"Halton Stadium\"",
    "question_en": "When was the game happening at Halton Stadium?",
    "question_th": "เกมดังกล่าวเกิดขึ้นที่ Halton Stadium เมื่อใด?",
    "context": "CREATE TABLE table_13328239_4 (date VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_13328239_4 WHERE score = \"38-14\"",
    "question_en": "What competition ended with a score of 38-14?",
    "question_th": "การแข่งขันรายการใดจบลงด้วยสกอร์ 38-14?",
    "context": "CREATE TABLE table_13328239_4 (competition VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT population FROM table_1333612_1 WHERE country = \"Chile\"",
    "question_en": "what's the population with country being chile",
    "question_th": "ประชากรของประเทศนี้เป็นชิลีเป็นจำนวนเท่าใด",
    "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_en": "what's the s mestizo with asians being 0.2% and whites being 74.8%",
    "question_th": "ลูกครึ่งคืออะไร โดยชาวเอเชียอยู่ที่ 0.2% และคนผิวขาวอยู่ที่ 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_en": "what's the country with es mulatto being 3.5%",
    "question_th": "ประเทศอะไรที่มี es mulatto อยู่ที่ 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_en": "what's the s mestizo with population being 29461933",
    "question_th": "ลูกครึ่งที่มีประชากรคือ 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_en": "what's the native american with es mulatto being 0.7%",
    "question_th": "คนอเมริกันพื้นเมืองโดยที่ es mulatto อยู่ที่ 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_en": " how many native american with whites being 1.0%",
    "question_th": " มีชาวอเมริกันพื้นเมืองกี่คนที่คนผิวขาวคิดเป็น 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_en": "When did the episode directed by David Duchovny originally air?",
    "question_th": "ตอนที่กำกับโดย David Duchovny ออกอากาศครั้งแรกเมื่อใด",
    "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_en": "What's the title of the episode directed by David von Ancken, with a episode number bigger than 16.0?",
    "question_th": "ตอนที่กำกับโดย David von Ancken ชื่อว่าอะไรและมีหมายเลขตอนมากกว่า 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_en": "How many episodes have been directed by David Duchovny?",
    "question_th": "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_en": "What's the smallest episode number of an episode whose number in the series is 22?",
    "question_th": "หมายเลขตอนที่น้อยที่สุดของตอนที่มีหมายเลขในซีรีส์คือ 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_en": "Name the number of shows when there was 2 million views",
    "question_th": "บอกจำนวนรายการที่มียอดดู 2 ล้านครั้ง",
    "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_en": "what is the original air date for the episoe written by vanessa reisen?",
    "question_th": "ตอนที่เขียนโดย 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_en": "what is the maximum completed for delta bessborough",
    "question_th": "ค่าสูงสุดที่เสร็จสมบูรณ์สำหรับเดลต้าเบสโบโรคือเท่าใด",
    "context": "CREATE TABLE table_13397394_1 (completed INTEGER, building VARCHAR)"
  },
  {
    "answer": "SELECT completed FROM table_13397394_1 WHERE address = \"410 22nd St E\"",
    "question_en": "what is the maximum completed for address on 410 22nd st e",
    "question_th": "ค่าสูงสุดที่เสร็จสมบูรณ์สำหรับที่อยู่ใน 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_en": "what is the total number of building for address on 201 1st avenue south",
    "question_th": "เลขที่ 201 ถนนสาย 1 ทิศใต้ มีจำนวนอาคารทั้งหมดเท่าไร",
    "context": "CREATE TABLE table_13397394_1 (building VARCHAR, address VARCHAR)"
  },
  {
    "answer": "SELECT building FROM table_13397394_1 WHERE storeys = 12",
    "question_en": "what are all the building with 12 storeys",
    "question_th": "อาคารสูง 12 ชั้นมีอะไรบ้าง",
    "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_en": "what is the minimum storeys on 325 5th ave n",
    "question_th": "325 5th avenue 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_en": "What is the region 2 for the complete fifth series?",
    "question_th": "ภูมิภาค 2 สำหรับซีรีส์ที่ห้าทั้งหมดคืออะไร",
    "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_en": "What is the number of region 4 for the series of the complete seventh series?",
    "question_th": "หมายเลขภาค 4 สำหรับซีรีส์ซีรีส์ที่ 7 ครบชุดคือเท่าใด",
    "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_en": "What is the region 1 where region 4 is tba is the complete eighth series?",
    "question_th": "ภูมิภาค 1 คืออะไร โดยที่ภูมิภาค 4 คือ tba เป็นซีรีส์ที่แปดที่สมบูรณ์",
    "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_en": "Name the region 4 for the complete fifth series",
    "question_th": "ตั้งชื่อภูมิภาค 4 สำหรับซีรีส์ที่ห้าทั้งหมด",
    "context": "CREATE TABLE table_1337525_1 (region_4 VARCHAR, complete_series VARCHAR)"
  },
  {
    "answer": "SELECT tries_against FROM table_13399573_3 WHERE won = \"14\"",
    "question_en": "How many tries were against when the number won was 14?",
    "question_th": "มีการพยายามต่อต้านกี่ครั้งเมื่อหมายเลขชนะคือ 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_en": "What was the number of bonus tries when there were 522 points against?",
    "question_th": "จำนวนครั้งในการลองโบนัสเมื่อมี 522 คะแนนเทียบกับอะไร?",
    "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_en": "How many numbers were listed under losing bonus when there were 68 tries for?",
    "question_th": "มีกี่หมายเลขที่อยู่ในรายการโบนัสที่สูญเสียเมื่อมีการลอง 68 ครั้ง",
    "context": "CREATE TABLE table_13399573_3 (losing_bonus VARCHAR, tries_for VARCHAR)"
  },
  {
    "answer": "SELECT points_for FROM table_13399573_3 WHERE points = \"52\"",
    "question_en": "What amount of points for were there when there was 52 points?",
    "question_th": "ตอนนั้นมี 52 แต้มได้กี่แต้ม?",
    "context": "CREATE TABLE table_13399573_3 (points_for VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT points_against FROM table_13399573_3 WHERE won = \"10\"",
    "question_en": "What was the number of points against when the amount won is 10?",
    "question_th": "จำนวนคะแนนเทียบกับเมื่อจำนวนเงินที่ชนะคือ 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_en": "What is listed under try bonus when listed under Tries for is tries for?",
    "question_th": "สิ่งที่ระบุไว้ภายใต้โบนัสลองเมื่ออยู่ในรายการภายใต้พยายามเพื่อคือพยายามเพื่อ?",
    "context": "CREATE TABLE table_13399573_3 (try_bonus VARCHAR)"
  },
  {
    "answer": "SELECT originalairdate FROM table_13403120_1 WHERE repeatairdate_s_ = \"26/01/1969\"",
    "question_en": "What is the original date of the repeat air date of 26/01/1969?",
    "question_th": "เดิมออกอากาศซ้ำวันที่ 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_en": "What is the repeat date of the episode that aired 22/12/1968?",
    "question_th": "ตอนที่ออกอากาศ 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_en": "who is the writer of the episode with prod.code 30-17",
    "question_th": "ซึ่งเป็นคนเขียนตอนที่มี 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_en": "what is the prod.code of the episode with original air date 01/12/1968?",
    "question_th": "prod.code ของตอนที่ออกอากาศตอนแรก 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_en": "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?",
    "question_th": "ในฤดูกาล 2008/2009 ทีมหนึ่งมีคะแนนรวมในฤดูกาลที่ 31 คะแนนสำหรับทีมนั้นคะแนนรวมทั้งหมดมีกี่คะแนน?",
    "context": "CREATE TABLE table_13399573_4 (points_against VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT points_for FROM table_13399573_4 WHERE losing_bonus = \"1\"",
    "question_en": "In the 2008/2009 season one team had 1 losing bonus, How many points did that team score that year?",
    "question_th": "ในฤดูกาล 2008/2009 ทีมหนึ่งมีโบนัสแพ้ 1 ครั้ง ทีมนั้นทำคะแนนได้กี่คะแนนในปีนั้น?",
    "context": "CREATE TABLE table_13399573_4 (points_for VARCHAR, losing_bonus VARCHAR)"
  },
  {
    "answer": "SELECT won FROM table_13399573_4 WHERE tries_against = \"47\"",
    "question_en": "In the 2008/2009 season one team had 47 tries against, how many games did they win that year?",
    "question_th": "ในฤดูกาล 2008/2009 มีทีมหนึ่งพยายามเจอ 47 ครั้ง ในปีนั้นพวกเขาชนะกี่เกม?",
    "context": "CREATE TABLE table_13399573_4 (won VARCHAR, tries_against VARCHAR)"
  },
  {
    "answer": "SELECT losing_bonus FROM table_13399573_4 WHERE tries_against = \"39\"",
    "question_en": "In the 2008/2009 season one team had 39 tries against, how many losing bonuses did they have that year?",
    "question_th": "ในฤดูกาล 2008/2009 ทีมหนึ่งพยายามแข่งขัน 39 ครั้ง พวกเขามีโบนัสที่เสียไปกี่ครั้งในปีนั้น?",
    "context": "CREATE TABLE table_13399573_4 (losing_bonus VARCHAR, tries_against VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341395_22 WHERE incumbent = \"Ed Markey\"",
    "question_en": "Who were the candidates when ed markey was the incumbent?",
    "question_th": "ใครคือผู้สมัครเมื่อเอ็ด มาร์กี้ดำรงตำแหน่ง?",
    "context": "CREATE TABLE table_1341395_22 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(result) FROM table_1341395_22 WHERE incumbent = \"Mike Capuano\"",
    "question_en": "How many times was the incumbent mike capuano",
    "question_th": "ไมค์ คาปูอาโน ดำรงตำแหน่งกี่ครั้งแล้ว",
    "context": "CREATE TABLE table_1341395_22 (result VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341395_22 WHERE incumbent = \"Barney Frank\"",
    "question_en": "Who were the candidates when Barney Frank was the incumbent?",
    "question_th": "ใครคือผู้สมัครเมื่อ Barney Frank ดำรงตำแหน่ง?",
    "context": "CREATE TABLE table_1341395_22 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT MIN(first_elected) FROM table_1341395_22 WHERE district = \"Massachusetts 3\"",
    "question_en": "What was the earliest year someone was first elected from Massachusetts 3",
    "question_th": "ปีแรกสุดที่มีคนได้รับเลือกครั้งแรกจากแมสซาชูเซตส์ 3 คือปีใด",
    "context": "CREATE TABLE table_1341395_22 (first_elected INTEGER, district VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341423_20 WHERE incumbent = \"Albert Wynn\"",
    "question_en": "What party did incumbent Albert Wynn belong to? ",
    "question_th": " Albert Wynn ผู้ดำรงตำแหน่งอยู่ในพรรคใด",
    "context": "CREATE TABLE table_1341423_20 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT results FROM table_1341423_20 WHERE district = \"Maryland 7\"",
    "question_en": "What was the result of the election in the Maryland 7 district? ",
    "question_th": " ผลการเลือกตั้งในเขตแมริแลนด์ 7 เป็นอย่างไร?",
    "context": "CREATE TABLE table_1341423_20 (results VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(candidates) FROM table_1341423_20 WHERE incumbent = \"Wayne Gilchrest\"",
    "question_en": "How many candidates ran in the election where Wayne Gilchrest was the incumbent?",
    "question_th": "มีผู้สมัครกี่คนที่ลงสมัครในการเลือกตั้งโดยที่ Wayne Gilchrest ดำรงตำแหน่ง",
    "context": "CREATE TABLE table_1341423_20 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT results FROM table_1341423_20 WHERE incumbent = \"Albert Wynn\"",
    "question_en": "What were the results in the election where Albert Wynn was the incumbent? ",
    "question_th": " ผลลัพธ์ของการเลือกตั้งที่ Albert Wynn ดำรงตำแหน่งเป็นอย่างไร?",
    "context": "CREATE TABLE table_1341423_20 (results VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341423_20 WHERE district = \"Maryland 5\"",
    "question_en": "Who were the candidates in the Maryland 5 district election? ",
    "question_th": " ใครคือผู้สมัครในการเลือกตั้งเขตแมริแลนด์ 5",
    "context": "CREATE TABLE table_1341423_20 (candidates VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341423_13 WHERE incumbent = \"Henry Hyde\"",
    "question_en": "What district is Henry Hyde in",
    "question_th": "เฮนรี่ ไฮด์อยู่เขตไหน",
    "context": "CREATE TABLE table_1341423_13 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT MIN(first_elected) FROM table_1341423_13 WHERE incumbent = \"Luis Gutierrez\"",
    "question_en": "What year was Luis Gutierrez election",
    "question_th": "การเลือกตั้งของหลุยส์ กูเตียร์เรซในปีใด",
    "context": "CREATE TABLE table_1341423_13 (first_elected INTEGER, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341423_21 WHERE incumbent = \"Joe Moakley\"",
    "question_en": "Which district is Joe Moakley?",
    "question_th": "โจ โมคลีย์ คือเขตไหน?",
    "context": "CREATE TABLE table_1341423_21 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT MIN(first_elected) FROM table_1341423_21",
    "question_en": "What is the lowest first elected?",
    "question_th": "เลือกครั้งแรกต่ำสุดคือเท่าไร?",
    "context": "CREATE TABLE table_1341423_21 (first_elected INTEGER)"
  },
  {
    "answer": "SELECT COUNT(first_elected) FROM table_1341423_32 WHERE incumbent = \"John McHugh\"",
    "question_en": "Name the first election for john mchugh",
    "question_th": "ตั้งชื่อการเลือกตั้งครั้งแรกของ 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_en": "Name the results for district new york 24",
    "question_th": "ตั้งชื่อผลลัพธ์สำหรับเขตนิวยอร์ก 24",
    "context": "CREATE TABLE table_1341423_32 (results VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341423_32 WHERE incumbent = \"Carolyn McCarthy\"",
    "question_en": "Name the district for carolyn mccarthy",
    "question_th": "ตั้งชื่อเขตสำหรับแคโรลิน แม็กคาร์ธี",
    "context": "CREATE TABLE table_1341423_32 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(party) FROM table_1341423_32 WHERE district = \"New York 29\"",
    "question_en": "Name the number of party for new york 29",
    "question_th": "ตั้งชื่อหมายเลขปาร์ตี้สำหรับ 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_en": "Which party does the incumbent first elected in 1994 belong to?",
    "question_th": "ผู้ดำรงตำแหน่งที่ได้รับการเลือกตั้งครั้งแรกในปี 2537 เป็นของพรรคใด",
    "context": "CREATE TABLE table_1341423_22 (party VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(district) FROM table_1341423_22 WHERE incumbent = \"Bart Stupak\"",
    "question_en": "How many districts have Bart Stupak as the incumbent?",
    "question_th": "มีบาร์ต สตูปัก ดำรงตำแหน่งกี่เขต?",
    "context": "CREATE TABLE table_1341423_22 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1341423_35 WHERE first_elected = 1972",
    "question_en": "Who was elected in 1972",
    "question_th": "ผู้ได้รับเลือกในปี พ.ศ. 2515",
    "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_en": "what is the earliest first elected with the results re-elected in the district south carolina 3?",
    "question_th": "การเลือกตั้งครั้งแรกเร็วที่สุดและผลการเลือกตั้งใหม่ในเขตเซาท์แคโรไลนา 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_en": "what is the party with the incumbent jim demint?",
    "question_th": "ปาร์ตี้ของจิมผู้ดำรงตำแหน่งเดิมคืออะไร?",
    "context": "CREATE TABLE table_1341423_40 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341423_40 WHERE district = \"South Carolina 4\"",
    "question_en": "what is the party for the district south carolina 4?",
    "question_th": "งานปาร์ตี้สำหรับเขตเซาท์แคโรไลนา 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_en": "what is the party when candidates is jim demint (r) 80%?",
    "question_th": "งานปาร์ตี้จะเป็นอย่างไรเมื่อผู้สมัครคือ 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_en": "who are the candidates when the incumbent is lindsey graham?",
    "question_th": "ใครคือผู้สมัครเมื่อผู้ดำรงตำแหน่งคือลินด์ซีย์ เกรแฮม?",
    "context": "CREATE TABLE table_1341423_40 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT results FROM table_1341423_36 WHERE incumbent = \"Ernest Istook\"",
    "question_en": "What was the results when the incumbent was ernest istook?",
    "question_th": "เมื่อผู้ดำรงตำแหน่งเดิมได้รับผลเป็นอย่างไร?",
    "context": "CREATE TABLE table_1341423_36 (results VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT results FROM table_1341423_36 WHERE district = \"Oklahoma 3\"",
    "question_en": "What was the results for the district oklahoma 3?",
    "question_th": "ผลลัพธ์ของเขตโอคลาโฮมา 3 เป็นอย่างไร?",
    "context": "CREATE TABLE table_1341423_36 (results VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(party) FROM table_1341423_36 WHERE district = \"Oklahoma 5\"",
    "question_en": "How many party were listed for district oklahoma 5?",
    "question_th": "มีกี่พรรคที่อยู่ในรายการของเขตโอคลาโฮมา 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_en": "What is the party when the candidates were ernest istook (r) 69% garland mcwatters (d) 28%?",
    "question_th": "งานปาร์ตี้คืออะไรเมื่อผู้สมัครถูกเออร์เนสต์ (r) 69% พวงมาลัย 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_en": "when was the first elected for districk oklahoma 1?",
    "question_th": "ครั้งแรกได้รับเลือกให้เข้าร่วม 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_en": "What were the results for the district oklahoma 5?",
    "question_th": "ผลลัพธ์ของเขตโอคลาโฮมา 5 เป็นอย่างไรบ้าง",
    "context": "CREATE TABLE table_1341423_36 (results VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(party) FROM table_1341423_38 WHERE incumbent = \"Bob Brady\"",
    "question_en": "How many parties is the incumbent Bob Brady a member of?",
    "question_th": "ผู้ดำรงตำแหน่ง Bob Brady เป็นสมาชิกกี่พรรค?",
    "context": "CREATE TABLE table_1341423_38 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(candidates) FROM table_1341423_38 WHERE incumbent = \"Joe Hoeffel\"",
    "question_en": "How many candidates were there in the district won by Joe Hoeffel?",
    "question_th": "มีผู้สมัครกี่คนในเขตที่ชนะโดย Joe Hoeffel?",
    "context": "CREATE TABLE table_1341423_38 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341423_38 WHERE district = \"Pennsylvania 3\"",
    "question_en": "Who were the candidates in district Pennsylvania 3?",
    "question_th": "ใครคือผู้สมัครในเขตเพนซิลเวเนีย 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_en": "What's the first elected year of the district whose incumbent is Jim Greenwood?",
    "question_th": "ปีแรกที่ได้รับการเลือกตั้งของเขตซึ่งมีจิม กรีนวูดดำรงตำแหน่งคือปีใด",
    "context": "CREATE TABLE table_1341423_38 (first_elected INTEGER, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT results FROM table_1341423_46 WHERE incumbent = \"Norman Sisisky\"",
    "question_en": "What was the result of the election featuring incumbent norman sisisky?",
    "question_th": "อะไรคือผลลัพธ์ของการเลือกตั้งที่มีผู้ดำรงตำแหน่ง นอร์แมน ซิซิสกี้?",
    "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_en": "Who were the candidates in the district first elected in 1998 whose incumbent ended up being Paul Ryan?",
    "question_th": "ใครคือผู้สมัครในเขตที่ได้รับเลือกครั้งแรกในปี 1998 ซึ่งสุดท้ายผู้ดำรงตำแหน่งคือพอล ไรอัน",
    "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_en": "Who ran in the district elections won by Tom Petri?",
    "question_th": "ใครเป็นผู้สมัครในการเลือกตั้งระดับเขตที่ 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_en": "When was the first election in the district whose incumbent is Ron Kind?",
    "question_th": "การเลือกตั้งครั้งแรกในเขตที่มีรอน ใจดี คือเมื่อไหร่?",
    "context": "CREATE TABLE table_1341423_49 (first_elected INTEGER, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT first_elected FROM table_1341423_43 WHERE district = \"Texas 6\"",
    "question_en": "Name the first elected for texas 6 district",
    "question_th": "ตั้งชื่อคนแรกที่ได้รับเลือกสำหรับเขตเท็กซัส 6",
    "context": "CREATE TABLE table_1341423_43 (first_elected VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1341423_43 WHERE district = \"Texas 22\"",
    "question_en": "Name the incumbent for texas 22 district",
    "question_th": "ตั้งชื่อผู้ดำรงตำแหน่งเขตเท็กซัส 22",
    "context": "CREATE TABLE table_1341423_43 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT results FROM table_1341423_9 WHERE district = \"Florida 14\"",
    "question_en": "How did the election in the Florida 14 district end?",
    "question_th": "การเลือกตั้งในเขต 14 ฟลอริดา จบลงอย่างไร?",
    "context": "CREATE TABLE table_1341423_9 (results VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1341423_9 WHERE district = \"Florida 12\"",
    "question_en": "Who's the incumbent of Florida 12 district?",
    "question_th": "ใครเป็นผู้ดำรงตำแหน่งเขต 12 ฟลอริดา?",
    "context": "CREATE TABLE table_1341423_9 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1341423_9 WHERE district = \"Florida 9\"",
    "question_en": "Who is the incumbent of Florida 9?",
    "question_th": "ใครคือผู้ดำรงตำแหน่ง Florida 9?",
    "context": "CREATE TABLE table_1341423_9 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1341453_11 WHERE district = \"Florida 6\"",
    "question_en": "Who's the incumbent in Florida 6?",
    "question_th": "ใครเป็นผู้ดำรงตำแหน่งใน Florida 6?",
    "context": "CREATE TABLE table_1341453_11 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341453_11 WHERE incumbent = \"Bill McCollum\"",
    "question_en": "What party does Bill McCollum belong to?",
    "question_th": "Bill McCollum อยู่ในพรรคใด?",
    "context": "CREATE TABLE table_1341453_11 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT results FROM table_1341453_11 WHERE incumbent = \"Peter Deutsch\"",
    "question_en": "What are the results in the county with Peter Deutsch as a candidate?",
    "question_th": "ผลการแข่งขันในเคาน์ตีที่มี Peter Deutsch เป็นผู้สมัครเป็นอย่างไร?",
    "context": "CREATE TABLE table_1341453_11 (results VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT results FROM table_1341453_11 WHERE incumbent = \"Robert Wexler\"",
    "question_en": "How did the election end for Robert Wexler?",
    "question_th": "การเลือกตั้งของ Robert Wexler สิ้นสุดลงอย่างไร?",
    "context": "CREATE TABLE table_1341453_11 (results VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341453_22 WHERE district = \"Maryland 6\"",
    "question_en": "What party was the winner in the district Maryland 6?",
    "question_th": "ฝ่ายใดเป็นผู้ชนะในเขตแมริแลนด์ 6?",
    "context": "CREATE TABLE table_1341453_22 (party VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341453_22 WHERE district = \"Maryland 3\"",
    "question_en": "Who run for office in district Maryland 3?",
    "question_th": "ใครลงสมัครรับตำแหน่งในเขตแมริแลนด์ 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_en": "List the candidates in district Maryland 1 where the republican party won.",
    "question_th": "รายชื่อผู้สมัครในเขตแมริแลนด์ 1 ที่พรรครีพับลิกันชนะ",
    "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_en": "When did the elections take place in district Maryland 2?",
    "question_th": "การเลือกตั้งเกิดขึ้นในเขตแมริแลนด์ 2 เมื่อใด",
    "context": "CREATE TABLE table_1341453_22 (first_elected INTEGER, district VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341453_32 WHERE incumbent = \"Frank LoBiondo\"",
    "question_en": "What party is Frank Lobiondo a member of?",
    "question_th": "Frank Lobiondo เป็นสมาชิกพรรคใด",
    "context": "CREATE TABLE table_1341453_32 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341453_32 WHERE incumbent = \"Bill Pascrell\"",
    "question_en": "Who were the candidates in the district whose incumbent is Bill Pascrell?",
    "question_th": "ใครคือผู้สมัครในเขตที่ Bill Pascrell ดำรงตำแหน่ง?",
    "context": "CREATE TABLE table_1341453_32 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341453_32 WHERE incumbent = \"Jim Saxton\"",
    "question_en": "What is the party of the district incumbent Jim Saxton?",
    "question_th": "พรรคของเขตที่ดำรงตำแหน่ง Jim Saxton คืออะไร?",
    "context": "CREATE TABLE table_1341453_32 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341453_34 WHERE incumbent = \"John McHugh\"",
    "question_en": "What party is John McHugh a member of?",
    "question_th": "John McHugh เป็นสมาชิกพรรคใด",
    "context": "CREATE TABLE table_1341453_34 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341453_34 WHERE first_elected = \"1990\"",
    "question_en": "What's the party elected in the district that first elected in 1990?",
    "question_th": "พรรคใดที่ได้รับเลือกในเขตเลือกตั้งครั้งแรกเมื่อปี พ.ศ. 2533?",
    "context": "CREATE TABLE table_1341453_34 (party VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT first_elected FROM table_1341453_34 WHERE incumbent = \"Ed Towns\"",
    "question_en": "What's the first elected year of the district that Ed Towns is an incumbent of?",
    "question_th": "ปีแรกของเขตที่ Ed Towns ดำรงตำแหน่งคือปีใด?",
    "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_en": "How many elections have resulted in retired democratic hold?",
    "question_th": "มีการเลือกตั้งกี่ครั้งที่ส่งผลให้เกิดการยึดถือตามระบอบประชาธิปไตยที่เกษียณแล้ว?",
    "context": "CREATE TABLE table_1341453_34 (party VARCHAR, results VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341453_34 WHERE first_elected = \"1980\"",
    "question_en": "What were the candidates in the district that first elected in 1980?",
    "question_th": "ผู้สมัครในเขตที่ได้รับการเลือกตั้งครั้งแรกในปี 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_en": "When was Chaka Fattah first elected in the Pennsylvania 2 district? ",
    "question_th": " Chaka Fattah ได้รับเลือกครั้งแรกในเขตเพนซิลเวเนีย 2 เมื่อใด",
    "context": "CREATE TABLE table_1341453_40 (first_elected VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(incumbent) FROM table_1341453_40 WHERE first_elected = \"1984\"",
    "question_en": "How many incumbents were first elected in 1984? ",
    "question_th": " มีผู้ดำรงตำแหน่งที่ได้รับการเลือกตั้งครั้งแรกในปี 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_en": "When was incumbent Bud Shuster first elected? ",
    "question_th": " Bud Shuster ผู้ดำรงตำแหน่งได้รับเลือกครั้งแรกเมื่อใด",
    "context": "CREATE TABLE table_1341453_40 (first_elected VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(candidates) FROM table_1341453_40 WHERE incumbent = \"Mike Doyle\"",
    "question_en": "How many candidates ran in the election where Mike Doyle was the incumbent? ",
    "question_th": "มีผู้สมัครกี่คนที่ลงสมัครในการเลือกตั้งโดยที่ Mike Doyle ดำรงตำแหน่ง",
    "context": "CREATE TABLE table_1341453_40 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341453_40 WHERE incumbent = \"Tim Holden\"",
    "question_en": "Incumbent Tim Holden belonged to what party? ",
    "question_th": " ผู้ดำรงตำแหน่ง ทิม โฮลเดน สังกัดพรรคใด",
    "context": "CREATE TABLE table_1341453_40 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341453_40 WHERE incumbent = \"Tim Holden\"",
    "question_en": "In what district was Tim Holden the incumbent? ",
    "question_th": " ทิม โฮลเดนดำรงตำแหน่งในเขตใด",
    "context": "CREATE TABLE table_1341453_40 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1341453_44 WHERE first_elected = 1984",
    "question_en": "Which incumbent was first elected in 1984?",
    "question_th": "ผู้ดำรงตำแหน่งใดที่ได้รับเลือกครั้งแรกในปี 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_en": "When was the incumbent in the Tennessee 4 district first elected? ",
    "question_th": " ผู้ดำรงตำแหน่งในเขตเทนเนสซี 4 ได้รับเลือกครั้งแรกเมื่อใด",
    "context": "CREATE TABLE table_1341453_44 (first_elected VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341453_44 WHERE district = \"Tennessee 3\"",
    "question_en": "Who are the candidates in the Tennessee 3 district election? ",
    "question_th": " ใครคือผู้สมัครในการเลือกตั้งเขตเทนเนสซี 3",
    "context": "CREATE TABLE table_1341453_44 (candidates VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT MIN(first_elected) FROM table_1341453_44 WHERE incumbent = \"Bob Clement\"",
    "question_en": "What year was Bob Clement first elected? ",
    "question_th": " Bob Clement ได้รับเลือกครั้งแรกในปีใด",
    "context": "CREATE TABLE table_1341453_44 (first_elected INTEGER, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341472_11 WHERE incumbent = \"Sam Gibbons\"",
    "question_en": "List all the candidates for the seat where the incumbent is Sam Gibbons?",
    "question_th": "รายชื่อผู้สมัครทั้งหมดสำหรับที่นั่งที่ผู้ดำรงตำแหน่งคือ Sam Gibbons?",
    "context": "CREATE TABLE table_1341472_11 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341453_51 WHERE district = \"Wisconsin 4\"",
    "question_en": "Who were the candidates in district Wisconsin 4?",
    "question_th": "ใครคือผู้สมัครในเขตวิสคอนซิน 4?",
    "context": "CREATE TABLE table_1341453_51 (candidates VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1341453_51 WHERE first_elected = 1969",
    "question_en": "Who's the incumbent in the district that first elected in 1969?",
    "question_th": "ใครเป็นผู้ดำรงตำแหน่งในเขตที่ได้รับการเลือกตั้งครั้งแรกในปี พ.ศ. 2512?",
    "context": "CREATE TABLE table_1341453_51 (incumbent VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1341453_51 WHERE district = \"Wisconsin 5\"",
    "question_en": "Who's the incumbent of district Wisconsin 5?",
    "question_th": "ใครเป็นผู้ดำรงตำแหน่งในเขตวิสคอนซิน 5?",
    "context": "CREATE TABLE table_1341453_51 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(district) FROM table_1341453_7 WHERE incumbent = \"Gary Condit\"",
    "question_en": "How many districts does gary condit represent?",
    "question_th": "แกรี่ คอนดิต เป็นตัวแทนของเขตจำนวนกี่เขต?",
    "context": "CREATE TABLE table_1341453_7 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341453_7 WHERE first_elected = 1974",
    "question_en": "What party was first elected in 1974?",
    "question_th": "พรรคใดได้รับเลือกครั้งแรกในปี พ.ศ. 2517?",
    "context": "CREATE TABLE table_1341453_7 (party VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341453_7 WHERE incumbent = \"Bill Thomas\"",
    "question_en": "What district is bill thomas from?",
    "question_th": "บิล โทมัส มาจากเขตไหน?",
    "context": "CREATE TABLE table_1341453_7 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1341472_12 WHERE district = \"Georgia 2\"",
    "question_en": "Who was the incumbent of district Georgia 2?",
    "question_th": "ใครเป็นผู้ดำรงตำแหน่งในเขตจอร์เจีย 2?",
    "context": "CREATE TABLE table_1341472_12 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341472_12 WHERE incumbent = \"Mac Collins\"",
    "question_en": "What district is Mac Collins an incumbent in?",
    "question_th": "Mac Collins ดำรงตำแหน่งในเขตใด",
    "context": "CREATE TABLE table_1341472_12 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT MAX(first_elected) FROM table_1341472_12",
    "question_en": "What's the first elected year of the district who's been the last one to do so?",
    "question_th": "ปีแรกของเขตที่ได้รับการเลือกตั้งคนสุดท้ายคือปีใด?",
    "context": "CREATE TABLE table_1341472_12 (first_elected INTEGER)"
  },
  {
    "answer": "SELECT candidates FROM table_1341472_12 WHERE incumbent = \"Charlie Norwood\"",
    "question_en": "Who were the candidates in the district where Charlie Norwood is the incumbent?",
    "question_th": "ใครคือผู้สมัครในเขตที่ชาร์ลี นอร์วูด ดำรงตำแหน่ง?",
    "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_en": "Which result did the Republican have with the incumbent, Billy Tauzin?",
    "question_th": "พรรครีพับลิกันมีผลลัพธ์อะไรกับผู้ดำรงตำแหน่ง 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_en": "How many districts was Robert Livingston incumbent in?",
    "question_th": "Robert Livingston ดำรงตำแหน่งอยู่ในกี่เขต",
    "context": "CREATE TABLE table_1341472_20 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT MIN(first_elected) FROM table_1341472_20",
    "question_en": "What is the first election year listed?",
    "question_th": "ปีการเลือกตั้งครั้งแรกระบุไว้ที่ใด?",
    "context": "CREATE TABLE table_1341472_20 (first_elected INTEGER)"
  },
  {
    "answer": "SELECT result FROM table_1341472_20 WHERE incumbent = \"Richard Baker\"",
    "question_en": "List all results in elections with Richard Baker as the incumbent.",
    "question_th": "แสดงรายการผลลัพธ์ทั้งหมดในการเลือกตั้งโดยมี Richard Baker ดำรงตำแหน่ง",
    "context": "CREATE TABLE table_1341472_20 (result VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(party) FROM table_1341472_49 WHERE district = \"Washington 7\"",
    "question_en": " how many party with district being washington 7",
    "question_th": " มีปาร์ตี้กี่คนที่เขตเป็นวอชิงตัน 7",
    "context": "CREATE TABLE table_1341472_49 (party VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT MAX(first_elected) FROM table_1341472_49",
    "question_en": "what's the latest first elected year",
    "question_th": "ปีที่ได้รับการเลือกตั้งครั้งแรกล่าสุดคือปีใด",
    "context": "CREATE TABLE table_1341472_49 (first_elected INTEGER)"
  },
  {
    "answer": "SELECT result FROM table_1341472_49 WHERE district = \"Washington 7\"",
    "question_en": "what's the result with district being washington 7",
    "question_th": "ผลที่ได้คือเขตวอชิงตัน 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_en": "what being the minimum first elected with district being washington 7",
    "question_th": "จำนวนขั้นต่ำที่ได้รับการเลือกตั้งครั้งแรกโดยเขตเป็นวอชิงตัน 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_en": "what's the result for first elected in 1948 , 1964",
    "question_th": "ผลการเลือกตั้งครั้งแรกในปี 2491 และ 2507 เป็นอย่างไร",
    "context": "CREATE TABLE table_1341472_15 (result VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT first_elected FROM table_1341472_15 WHERE district = \"Illinois 18\"",
    "question_en": "what's the first elected with district illinois 18",
    "question_th": "การเลือกตั้งครั้งแรกกับเขตอิลลินอยส์ 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_en": "what's the party with candidates  jerry weller (r) 51.77% clem balanoff (d) 48.23%",
    "question_th": "พรรคอะไรกับผู้สมัคร เจอร์รี่ เวลเลอร์ (ขวา) 51.77% เคลม บาลานอฟ (ง) 48.23%",
    "context": "CREATE TABLE table_1341472_15 (party VARCHAR, candidates VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341472_15 WHERE first_elected = \"1980\"",
    "question_en": "what's the party for the first elected in 1980",
    "question_th": "พรรคอะไรคือการเลือกตั้งครั้งแรกในปี 1980",
    "context": "CREATE TABLE table_1341472_15 (party VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1341472_15 WHERE district = \"Illinois 15\"",
    "question_en": "what's the result with district illinois 15",
    "question_th": "ผลลัพธ์ของเขตอิลลินอยส์ 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_en": "what's the total number of candidates for first elected in 1948 , 1964",
    "question_th": "จำนวนผู้สมัครรับเลือกตั้งครั้งแรกในปี 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_en": "Name thedistrict for 1994",
    "question_th": "ตั้งชื่ออำเภอ ปี 2537",
    "context": "CREATE TABLE table_1341472_34 (district VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1341472_34 WHERE district = \"New York 11\"",
    "question_en": "Name the result for New York 11",
    "question_th": "ตั้งชื่อผลลัพธ์สำหรับ 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_en": "Name the number of first elected for new york 11",
    "question_th": "ตั้งชื่อหมายเลขของผู้ที่ได้รับเลือกคนแรกสำหรับ 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_en": "Name the first elected for new york 1",
    "question_th": "ตั้งชื่อคนแรกที่ได้รับเลือกสำหรับนิวยอร์ก 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_en": "What year was Larry combest elected",
    "question_th": "ลาร์รี คอมเบสต์ได้รับเลือกในปีใด",
    "context": "CREATE TABLE table_1341472_45 (first_elected VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341522_36 WHERE incumbent = \"Bill Hefner\"",
    "question_en": "To what district does Bill Hefner belong?",
    "question_th": "Bill Hefner อยู่ในเขตใด",
    "context": "CREATE TABLE table_1341522_36 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_1341522_36 WHERE incumbent = \"Bill Hefner\"",
    "question_en": "Who ran unsuccessfully against Bill Hefner?",
    "question_th": "ใครวิ่งแข่งกับ 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_en": "How many districts are respresented by Alex McMillan?",
    "question_th": "Alex McMillan เป็นตัวแทนของเขตจำนวนกี่เขต?",
    "context": "CREATE TABLE table_1341522_36 (status VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341522_13 WHERE incumbent = \"Sanford Bishop\"",
    "question_en": "What party is Sanford Bishop a member of?",
    "question_th": "Sanford Bishop เป็นสมาชิกพรรคใด?",
    "context": "CREATE TABLE table_1341522_13 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341522_13 WHERE district = \"Georgia7\"",
    "question_en": "What party won in the district Georgia7?",
    "question_th": "พรรคใดชนะในเขต Georgia7?",
    "context": "CREATE TABLE table_1341522_13 (party VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT MAX(first_elected) FROM table_1341522_13 WHERE district = \"Georgia5\"",
    "question_en": "What's Georgia5's first elected year?",
    "question_th": "ปีที่ได้รับการเลือกตั้งครั้งแรกของ Georgia5 คืออะไร?",
    "context": "CREATE TABLE table_1341522_13 (first_elected INTEGER, district VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_1341522_24 WHERE incumbent = \"Marty Meehan\"",
    "question_en": "Who opposed Marty Meehan in each election?",
    "question_th": "ใครต่อต้าน Marty Meehan ในการเลือกตั้งแต่ละครั้ง",
    "context": "CREATE TABLE table_1341522_24 (opponent VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_1341522_24 WHERE district = \"Massachusetts5\"",
    "question_en": "Who are the opponents in Massachusetts5 district?",
    "question_th": "ใครคือฝ่ายตรงข้ามในเขต Massachusetts5?",
    "context": "CREATE TABLE table_1341522_24 (opponent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341522_24 WHERE district = \"Massachusetts4\"",
    "question_en": "What parties are represented in Massachusetts4 district?",
    "question_th": "ฝ่ายใดบ้างที่เป็นตัวแทนในเขต Massachusetts4?",
    "context": "CREATE TABLE table_1341522_24 (party VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1341522_24 WHERE district = \"Massachusetts7\"",
    "question_en": "Who is the incumbent in district Massachusetts7?",
    "question_th": "ใครคือผู้ดำรงตำแหน่งในเขต 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_en": " how many first elected with district being new york2",
    "question_th": " มีกี่คนที่ได้รับเลือกครั้งแรกโดยเขตเป็นนิวยอร์ก2",
    "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_en": " how many district with candidates being eliot l. engel (d) 85.2% martin richman (r) 14.8%",
    "question_th": " มีกี่เขตที่มีผู้สมัครเป็นเอเลียต แอล. เองเจล (ง) 85.2% มาร์ติน ริชแมน (ขวา) 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_en": " how many candidates with party being democratic and dbeingtrict being new york5",
    "question_th": " มีผู้สมัครกี่คนที่พรรคเป็นประชาธิปไตยและถือว่านิวยอร์ค5",
    "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_en": " how many first elected with result being re-elected and incumbent being gary ackerman redistricted from the 7th district",
    "question_th": "มีการเลือกตั้งครั้งแรกกี่คนโดยมีผลการเลือกตั้งใหม่ และดำรงตำแหน่งเป็นแกรี่ แอคเคอร์แมน ซึ่งถูกจำกัดจากเขตที่ 7",
    "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_en": "What party does ron klink represent?",
    "question_th": "ron klink เป็นตัวแทนของฝ่ายใด?",
    "context": "CREATE TABLE table_1341522_41 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_1341522_41 WHERE incumbent = \"Bud Shuster\"",
    "question_en": "Who was in the election that was for incumbent bud shuster's seat?",
    "question_th": "ใครอยู่ในการเลือกตั้งที่ได้รับตำแหน่งผู้ดำรงตำแหน่งบัด ชูสเตอร์?",
    "context": "CREATE TABLE table_1341522_41 (opponent VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341522_41 WHERE first_elected = 1982",
    "question_en": "What district had someone first elected in 1982?",
    "question_th": "เขตใดมีคนได้รับการเลือกตั้งครั้งแรกในปี 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_en": "How many republican incumbents first elected in 1974?",
    "question_th": "มีผู้ดำรงตำแหน่งพรรครีพับลิกันกี่คนที่ได้รับการเลือกตั้งครั้งแรกในปี 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_en": "What was the result of the election where william f. goodling was the incumbent?",
    "question_th": "ผลการเลือกตั้งเป็นอย่างไร โดยที่ วิลเลียม เอฟ. goodling เป็นผู้ดำรงตำแหน่งเหรอ?",
    "context": "CREATE TABLE table_1341522_41 (status VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341568_34 WHERE incumbent = \"Howard Coble\"",
    "question_en": "What party did incumbent Howard Coble belong to?",
    "question_th": "Howard Coble ผู้ดำรงตำแหน่งอยู่ในพรรคใด",
    "context": "CREATE TABLE table_1341568_34 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341568_34 WHERE incumbent = \"Stephen L. Neal\"",
    "question_en": "What party did incumbent Stephen L. Neal belong to? ",
    "question_th": " Stephen L. Neal ผู้ดำรงตำแหน่งอยู่ในพรรคใด",
    "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_en": "In how many districts was the democratic incumbent elected in 1974? ",
    "question_th": " ผู้ดำรงตำแหน่งที่เป็นประชาธิปไตยได้รับการเลือกตั้งในปี พ.ศ. 2517 กี่เขต?",
    "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_en": "What year was incumbent Martin Lancaster elected? ",
    "question_th": " Martin Lancaster ได้รับเลือกให้ดำรงตำแหน่งในปีใด",
    "context": "CREATE TABLE table_1341568_34 (elected INTEGER, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341568_24 WHERE elected = 1980",
    "question_en": "What are the locations where the year of election is 1980?",
    "question_th": "ปีการเลือกตั้ง พ.ศ. 2523 มีสถานที่ใดบ้าง?",
    "context": "CREATE TABLE table_1341568_24 (district VARCHAR, elected VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341568_24 WHERE incumbent = \"Vin Weber\"",
    "question_en": "What location is Vin Weber from?",
    "question_th": "วิน เวเบอร์ มาจากที่ไหน?",
    "context": "CREATE TABLE table_1341568_24 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341568_44 WHERE incumbent = \"Larry Combest\"",
    "question_en": "What is Larry Combest's district?",
    "question_th": "เขตของแลร์รี่ คอมเบสต์คืออะไร?",
    "context": "CREATE TABLE table_1341568_44 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_1341568_44 WHERE incumbent = \"Charles Stenholm\"",
    "question_en": "What is the status of incumbent Charles Stenholm?",
    "question_th": "สถานะของผู้ดำรงตำแหน่ง 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_en": "How many incumbents represent district California 34?",
    "question_th": "ผู้ดำรงตำแหน่งเป็นตัวแทนของเขตแคลิฟอร์เนีย 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_en": "What is the elected status of the Democratic party in 1989?",
    "question_th": "สถานะการเลือกตั้งของพรรคประชาธิปัตย์ในปี 2532 คืออะไร?",
    "context": "CREATE TABLE table_1341568_6 (status VARCHAR, party VARCHAR, elected VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_1341568_6 WHERE district = \"California 9\"",
    "question_en": "Who are the opponents in district California 9?",
    "question_th": "ฝ่ายตรงข้ามในเขตแคลิฟอร์เนีย 9 คือใคร?",
    "context": "CREATE TABLE table_1341568_6 (opponent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1341568_6 WHERE elected = \"1974\"",
    "question_en": "Who are the incumbents elected in 1974?",
    "question_th": "ใครคือผู้ดำรงตำแหน่งที่ได้รับเลือกในปี 1974?",
    "context": "CREATE TABLE table_1341568_6 (incumbent VARCHAR, elected VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1341577_36 WHERE first_elected = 1958",
    "question_en": "Which incumbent was first elected in 1958?",
    "question_th": "ผู้ดำรงตำแหน่งใดได้รับเลือกครั้งแรกในปี พ.ศ. 2501",
    "context": "CREATE TABLE table_1341577_36 (incumbent VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341577_36 WHERE incumbent = \"Ralph Regula\"",
    "question_en": "Who are all the candidates who ran in the district where Ralph Regula is the incumbent?",
    "question_th": "ใครคือผู้สมัครทั้งหมดที่ลงสมัครในเขตที่ราล์ฟ เรกูลา ดำรงตำแหน่ง?",
    "context": "CREATE TABLE table_1341577_36 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341577_36 WHERE incumbent = \"Del Latta\"",
    "question_en": "Which party does Del Latta belong to?",
    "question_th": "เดล ลัตต้า สังกัดพรรคใด?",
    "context": "CREATE TABLE table_1341577_36 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341577_36 WHERE incumbent = \"Tom Luken\"",
    "question_en": "Which party does Tom Luken belong to?",
    "question_th": "Tom Luken อยู่พรรคไหน?",
    "context": "CREATE TABLE table_1341577_36 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341577_34 WHERE incumbent = \"Tim Valentine\"",
    "question_en": "Who were all the candidates when incumbent was Tim Valentine?",
    "question_th": "ใครคือผู้สมัครทั้งหมดเมื่อทิมวาเลนไทน์ดำรงตำแหน่ง?",
    "context": "CREATE TABLE table_1341577_34 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1341577_22 WHERE first_elected = 1958",
    "question_en": "Name the incumbent for first elected 1958",
    "question_th": "ตั้งชื่อผู้ดำรงตำแหน่งสำหรับการเลือกตั้งครั้งแรก พ.ศ. 2501",
    "context": "CREATE TABLE table_1341577_22 (incumbent VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341577_22 WHERE first_elected = 1952",
    "question_en": "What is the district for 1952?",
    "question_th": "พ.ศ.2495 อยู่จังหวัดอะไรคะ?",
    "context": "CREATE TABLE table_1341577_22 (district VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1341577_22 WHERE first_elected = 1974",
    "question_en": "What is the incumbent for 1974?",
    "question_th": "ผู้ดำรงตำแหน่งในปี 2517 คืออะไร?",
    "context": "CREATE TABLE table_1341577_22 (incumbent VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341577_14 WHERE incumbent = \"Cardiss Collins\"",
    "question_en": "To what party does Cardiss Collins belong?",
    "question_th": "Cardiss Collins อยู่ในพรรคใด?",
    "context": "CREATE TABLE table_1341577_14 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341577_47 WHERE district = \"Virginia 3\"",
    "question_en": "Who was the candidate in the Virginia 3 district election? ",
    "question_th": " ใครคือผู้สมัครในการเลือกตั้งเขตเวอร์จิเนีย 3?",
    "context": "CREATE TABLE table_1341577_47 (candidates VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1341577_47 WHERE district = \"Virginia 3\"",
    "question_en": "What was the result of the election in the Virginia 3 district?",
    "question_th": "ผลการเลือกตั้งในเขตเวอร์จิเนีย 3 เป็นอย่างไร?",
    "context": "CREATE TABLE table_1341577_47 (result VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341577_44 WHERE incumbent = \"Lamar S. Smith\"",
    "question_en": "Who were the candidates when Lamar S. Smith was incumbent?",
    "question_th": "ใครคือผู้สมัครเมื่อลามาร์ เอส. สมิธดำรงตำแหน่ง",
    "context": "CREATE TABLE table_1341577_44 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341577_44 WHERE incumbent = \"Beau Boulter\"",
    "question_en": "What party did Beau Boulter represent?",
    "question_th": "Beau Boulter เป็นตัวแทนของพรรคใด",
    "context": "CREATE TABLE table_1341577_44 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341577_44 WHERE incumbent = \"Jack Fields\"",
    "question_en": "Who were the candidates when Jack Fields was the incumbent?",
    "question_th": "ใครคือผู้สมัครเมื่อ Jack Fields ดำรงตำแหน่ง?",
    "context": "CREATE TABLE table_1341577_44 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1341577_50 WHERE incumbent = \"Les Aspin\"",
    "question_en": "What was the final result for Les Aspin?",
    "question_th": "ผลลัพธ์สุดท้ายของ Les Aspin คืออะไร?",
    "context": "CREATE TABLE table_1341577_50 (result VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341577_50 WHERE first_elected = 1982",
    "question_en": "Who were the candidates that ran when Jim Moody was up for reelection after 1982?",
    "question_th": "ใครคือผู้สมัครที่ลงสมัครรับเลือกตั้งเมื่อจิม มูดี้ส์ได้รับเลือกใหม่หลังปี 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_en": "In the district called Tennessee 6, how many in total of first elected are there?",
    "question_th": "ในเขตที่เรียกว่าเทนเนสซี 6 มีผู้ได้รับเลือกครั้งแรกทั้งหมดกี่คน",
    "context": "CREATE TABLE table_1341577_43 (first_elected VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341577_43 WHERE first_elected = 1982",
    "question_en": "Which party is associated with the person who was first elected in 1982?",
    "question_th": "พรรคใดมีความเกี่ยวข้องกับบุคคลที่ได้รับการเลือกตั้งครั้งแรกในปี 2525?",
    "context": "CREATE TABLE table_1341577_43 (party VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(candidates) FROM table_1341577_43 WHERE incumbent = \"Bob Clement\"",
    "question_en": "How many candidates are listed all together for the incumbent named bob clement?",
    "question_th": "มีผู้สมัครกี่คนที่อยู่ในรายชื่อรวมกันเพื่อชิงตำแหน่งบ๊อบ เคลเมนท์?",
    "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_en": "What was the results for the candidates listed as bart gordon (d) 76.5% wallace embry (r) 23.5%?",
    "question_th": "ผลลัพธ์สำหรับผู้สมัครที่ระบุว่าเป็น 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_en": "Who is the incumbent that is listed with the candidates listed as marilyn lloyd (d) 57.4% harold w. coker (r) 42.6%?",
    "question_th": "ใครเป็นผู้ดำรงตำแหน่งที่มีรายชื่ออยู่ในรายชื่อผู้สมัครที่มีรายชื่อเป็นมาริลิน ลอยด์ (d) 57.4% ฮาโรลด์ ดับเบิลยู. โคเกอร์ (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_en": "In what district would you find the candidates listed as jim cooper (d) unopposed?",
    "question_th": "ในเขตใดคุณจะพบผู้สมัครที่มีรายชื่อเป็นจิม คูเปอร์ (ง) ไม่มีการคัดค้าน",
    "context": "CREATE TABLE table_1341577_43 (district VARCHAR, candidates VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1341586_39 WHERE candidates = \"Bud Shuster (R) Unopposed\"",
    "question_en": "who is the incumbent with candidates being bud shuster (r) unopposed",
    "question_th": "ซึ่งเป็นผู้ดำรงตำแหน่งผู้สมัครที่บัดชูสเตอร์ (r) ค้าน",
    "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_en": "who is the incumbent with candidates being tom ridge (r) 80.9% joylyn blackwell (d) 19.1%",
    "question_th": "ผู้ดำรงตำแหน่งผู้สมัครคือทอมริดจ์ (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_en": "what's district with candidates being curt weldon (r) 61.3% bill spingler (d) 38.7%",
    "question_th": "เขตอะไรที่มีผู้สมัครเป็น 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_en": "what's party with district being pennsylvania 21",
    "question_th": "ปาร์ตี้อะไรกับเขตเพนซิลวาเนีย 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_en": "what is the maximum first elected with incumbent being gus yatron",
    "question_th": "สูงสุดที่ได้รับเลือกครั้งแรกโดยผู้ดำรงตำแหน่งคือ กุส ยาตรอน",
    "context": "CREATE TABLE table_1341586_39 (first_elected INTEGER, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341586_39 WHERE first_elected = 1972",
    "question_en": "what's the district with first elected being 1972",
    "question_th": "เขตที่ได้รับเลือกครั้งแรกคือปี 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_en": " how many district with incumbent being lindy boggs",
    "question_th": " มีกี่เขตที่มีหน้าที่เป็นลินดี้ บ็อกส์",
    "context": "CREATE TABLE table_1341586_19 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1341586_19 WHERE candidates = \"Billy Tauzin (D) Unopposed\"",
    "question_en": "what's the result with candidates being billy tauzin (d) unopposed",
    "question_th": "ผลเป็นอย่างไรเมื่อผู้สมัครถูกบิลลี่ ทอซิน (d) ค้าน",
    "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_en": " how many candidates with result being retired to run for u. s. senate republican hold",
    "question_th": " มีผู้สมัครกี่คนที่ผลการแข่งขันต้องออกจากตำแหน่งเพื่อลงสมัครรับตำแหน่งวุฒิสภาจากพรรครีพับลิกัน",
    "context": "CREATE TABLE table_1341586_19 (candidates VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1341586_19 WHERE district = \"Louisiana 2\"",
    "question_en": "what's the result with district being louisiana 2",
    "question_th": "ผลที่ได้คือเขตเป็นลุยเซียนา 2",
    "context": "CREATE TABLE table_1341586_19 (result VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341586_19 WHERE first_elected = 1977",
    "question_en": "who is the the candidates with first elected being 1977",
    "question_th": "ซึ่งเป็นผู้สมัครที่ได้รับเลือกครั้งแรกคือ พ.ศ. 2520",
    "context": "CREATE TABLE table_1341586_19 (candidates VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1341586_14 WHERE first_elected = 1980",
    "question_en": "What happened to the incombent who was elected in 1980?",
    "question_th": "เกิดอะไรขึ้นกับผู้ดำรงตำแหน่งที่ได้รับเลือกในปี 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_en": "How did the election end for Terry L. Bruce?",
    "question_th": "การเลือกตั้งของ 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_en": "What party was Tony P. Hall affiliated with?",
    "question_th": "Tony P. Hall สังกัดพรรคใด",
    "context": "CREATE TABLE table_1341586_36 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(first_elected) FROM table_1341586_43 WHERE district = \"Tennessee 2\"",
    "question_en": "Name number first elected for tennessee 2?",
    "question_th": "ชื่อหมายเลขได้รับเลือกครั้งแรกสำหรับรัฐเทนเนสซี 2?",
    "context": "CREATE TABLE table_1341586_43 (first_elected VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341586_43 WHERE first_elected = 1964",
    "question_en": "Name the candidates  in 1964",
    "question_th": "เสนอชื่อผู้สมัครในปี พ.ศ. 2507",
    "context": "CREATE TABLE table_1341586_43 (candidates VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(candidates) FROM table_1341586_44 WHERE incumbent = \"Mac Sweeney\"",
    "question_en": "How many districts have Mac Sweeney as incumbent?",
    "question_th": "Mac Sweeney ดำรงตำแหน่งมีกี่เขต",
    "context": "CREATE TABLE table_1341586_44 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341586_44 WHERE incumbent = \"Henry B. Gonzalez\"",
    "question_en": "Who are all the candidates vying for Henry B. Gonzalez' seat?",
    "question_th": "ใครคือผู้สมัครที่แย่งชิงที่นั่งของ Henry B. Gonzalez?",
    "context": "CREATE TABLE table_1341586_44 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341586_44 WHERE incumbent = \"Albert Bustamante\"",
    "question_en": "Name all the candidates vying for Albert Bustamante's seat.",
    "question_th": "ระบุชื่อผู้สมัครทั้งหมดที่แย่งชิงที่นั่งของอัลเบิร์ต บุสตามันเต",
    "context": "CREATE TABLE table_1341586_44 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341598_10 WHERE incumbent = \"Michael Bilirakis\"",
    "question_en": "In what district was the incumbent Michael Bilirakis? ",
    "question_th": " Michael Bilirakis ผู้ดำรงตำแหน่งในเขตใด?",
    "context": "CREATE TABLE table_1341598_10 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341598_10 WHERE first_elected = 1980",
    "question_en": "Who is the candidate in election where the incumbent was first elected in 1980? ",
    "question_th": "ใครคือผู้สมัครรับเลือกตั้งที่ได้รับการเลือกตั้งครั้งแรกในปี พ.ศ. 2523",
    "context": "CREATE TABLE table_1341598_10 (candidates VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341598_10 WHERE incumbent = \"Charles Edward Bennett\"",
    "question_en": "What party does incumbent Charles Edward Bennett belong to? ",
    "question_th": " Charles Edward Bennett ผู้ดำรงตำแหน่งอยู่ในพรรคใด",
    "context": "CREATE TABLE table_1341598_10 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1341598_10 WHERE district = \"Florida 18\"",
    "question_en": "What was the result of the election in the Florida 18 district? ",
    "question_th": " ผลการเลือกตั้งในเขตฟลอริดา 18 เป็นอย่างไร?",
    "context": "CREATE TABLE table_1341598_10 (result VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341598_10 WHERE incumbent = \"Lawrence J. Smith\"",
    "question_en": "In what district is the incumbent Lawrence J. Smith? ",
    "question_th": " ผู้ดำรงตำแหน่ง 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_en": "where is the district where the incumbent is del latta?",
    "question_th": "ตำบลที่ผู้ดำรงตำแหน่งคือเดลลัตตะอยู่ที่ไหน?",
    "context": "CREATE TABLE table_1341598_36 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341598_36 WHERE district = \"Ohio 11\"",
    "question_en": "what is the party for district ohio 11?",
    "question_th": "งานปาร์ตี้สำหรับเขตโอไฮโอ 11 คืออะไร?",
    "context": "CREATE TABLE table_1341598_36 (party VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341598_36 WHERE district = \"Ohio 6\"",
    "question_en": "who were the candidates for district ohio 6?",
    "question_th": "ใครคือผู้สมัครชิงเขตโอไฮโอ 6?",
    "context": "CREATE TABLE table_1341598_36 (candidates VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341598_11 WHERE district = \"Georgia 9\"",
    "question_en": "What is the party for District Georgia 9?",
    "question_th": "งานปาร์ตี้ของเขตจอร์เจีย 9 คืออะไร?",
    "context": "CREATE TABLE table_1341598_11 (party VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341598_11 WHERE first_elected = 1980",
    "question_en": "Which district shows a first elected of 1980?",
    "question_th": "เขตใดที่แสดงการเลือกตั้งครั้งแรกในปี 1980",
    "context": "CREATE TABLE table_1341598_11 (district VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341598_11 WHERE incumbent = \"Wyche Fowler\"",
    "question_en": "What is the party for the incumbent Wyche Fowler?",
    "question_th": "งานปาร์ตี้ของ Wyche Fowler ผู้ดำรงตำแหน่งคืออะไร?",
    "context": "CREATE TABLE table_1341598_11 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341598_11 WHERE incumbent = \"George Darden\"",
    "question_en": "Who are shown as candidates when George Darden is the incumbent?",
    "question_th": "ใครจะถูกแสดงเป็นผู้สมัครเมื่อ George Darden ดำรงตำแหน่ง?",
    "context": "CREATE TABLE table_1341598_11 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341598_14 WHERE incumbent = \"Dan Crane\"",
    "question_en": "What district has Dan Crane as incumbent?",
    "question_th": "แดนเครนดำรงตำแหน่งเขตใด",
    "context": "CREATE TABLE table_1341598_14 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341598_39 WHERE incumbent = \"Robert W. Edgar\"",
    "question_en": "In which district is Robert W. Edgar the incumbent?",
    "question_th": "Robert W. Edgar ดำรงตำแหน่งในเขตใด",
    "context": "CREATE TABLE table_1341598_39 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341598_39 WHERE incumbent = \"Robert W. Edgar\"",
    "question_en": "To which party does Robert W. Edgar belong?",
    "question_th": "Robert W. Edgar สังกัดพรรคใด?",
    "context": "CREATE TABLE table_1341598_39 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341598_44 WHERE incumbent = \"Jack Hightower\"",
    "question_en": "What district is incumbent jack hightower from?",
    "question_th": "แจ็ค ไฮทาวเวอร์ มาจากเขตใด?",
    "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_en": "What year were the election results tom loeffler (r) 80.6% joe sullivan (d) 19.4%?",
    "question_th": "ผลการเลือกตั้งในปีใดที่ 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_en": "What incumbent won the district of texas 22?",
    "question_th": "ผู้ดำรงตำแหน่งคนใดชนะเขตเท็กซัส 22?",
    "context": "CREATE TABLE table_1341598_44 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1341604_19 WHERE district = \"Louisiana 1\"",
    "question_en": "Who's the incumbent of the Louisiana 1 district?",
    "question_th": "ใครเป็นผู้ดำรงตำแหน่งในเขตลุยเซียนา 1?",
    "context": "CREATE TABLE table_1341604_19 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341604_19 WHERE district = \"Louisiana 4\"",
    "question_en": "Who were the candidates in the Louisiana 4 district?",
    "question_th": "ใครคือผู้สมัครในเขตหลุยเซียน่า 4?",
    "context": "CREATE TABLE table_1341604_19 (candidates VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1341604_19 WHERE first_elected = 1976",
    "question_en": "Who's the incumbent in the district first elected in 1976?",
    "question_th": "ใครเป็นผู้ดำรงตำแหน่งในเขตที่ได้รับเลือกครั้งแรกในปี พ.ศ. 2519",
    "context": "CREATE TABLE table_1341604_19 (incumbent VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1341604_22 WHERE district = \"Massachusetts 2\"",
    "question_en": "what's the incumbent with district being massachusetts 2",
    "question_th": "เขตที่รับผิดชอบคือแมสซาชูเซตส์ 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_en": "what's the party with candidates being silvio conte (r) unopposed",
    "question_th": "ฝ่ายที่ผู้สมัครโดยซิลวิโอ คอนเต (ขวา) คัดค้านอยู่เป็นอย่างไรบ้าง",
    "context": "CREATE TABLE table_1341604_22 (party VARCHAR, candidates VARCHAR)"
  },
  {
    "answer": "SELECT first_elected FROM table_1341604_22 WHERE incumbent = \"Joseph D. Early\"",
    "question_en": "what's the first elected with incumbent being joseph d. early",
    "question_th": "คนแรกที่ได้รับเลือกให้ดำรงตำแหน่งคือโจเซฟ ดี. แต่แรก",
    "context": "CREATE TABLE table_1341604_22 (first_elected VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341604_22 WHERE district = \"Massachusetts 3\"",
    "question_en": "what's the party with dbeingtrict being massachusetts 3",
    "question_th": "งานปาร์ตี้ที่แมสซาชูเซตส์ 3 เป็นอย่างไรบ้าง",
    "context": "CREATE TABLE table_1341604_22 (party VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(candidates) FROM table_1341604_39 WHERE incumbent = \"Bud Shuster\"",
    "question_en": "How many candidates won the election in the district whose incumbent is Bud Shuster?",
    "question_th": "มีผู้สมัครกี่คนที่ชนะการเลือกตั้งในเขตที่ Bud Shuster ดำรงตำแหน่ง",
    "context": "CREATE TABLE table_1341604_39 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341604_39 WHERE incumbent = \"Gus Yatron\"",
    "question_en": "What are the candidates in the district whose incumbent is Gus Yatron?",
    "question_th": "ผู้สมัครในเขตที่ดำรงตำแหน่งคือ Gus Yatron มีอะไรบ้าง",
    "context": "CREATE TABLE table_1341604_39 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341604_39 WHERE district = \"Pennsylvania 6\"",
    "question_en": "What's the winning party in the Pennsylvania 6 district?",
    "question_th": "ฝ่ายที่ชนะในเขตเพนซิลเวเนีย 6 คืออะไร?",
    "context": "CREATE TABLE table_1341604_39 (party VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341640_39 WHERE party = \"Republican\"",
    "question_en": "What candidate is a member of the Republican party?",
    "question_th": "ผู้สมัครคนใดที่เป็นสมาชิกพรรครีพับลิกัน?",
    "context": "CREATE TABLE table_1341640_39 (candidates VARCHAR, party VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341640_39 WHERE incumbent = \"Ray Musto\"",
    "question_en": "What district is Ray Musto the incumbent of?",
    "question_th": "เรย์ มุสโต อยู่ในเขตใด?",
    "context": "CREATE TABLE table_1341640_39 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(party) FROM table_1341640_39 WHERE incumbent = \"Donald A. Bailey\"",
    "question_en": "How many parties does the incumbent Donald A. Bailey a member of?",
    "question_th": "ผู้ดำรงตำแหน่ง Donald A. Bailey เป็นสมาชิกกี่พรรค?",
    "context": "CREATE TABLE table_1341640_39 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1341640_39 WHERE district = \"Pennsylvania 6\"",
    "question_en": "What was the outcome of the election in Pennsylvania 6 district?",
    "question_th": "ผลการเลือกตั้งในเขตเพนซิลเวเนีย 6 เป็นอย่างไร?",
    "context": "CREATE TABLE table_1341640_39 (result VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341640_43 WHERE incumbent = \"Al Gore\"",
    "question_en": "Where was Al Gore elected",
    "question_th": "อัล กอร์ได้รับเลือกที่ไหน",
    "context": "CREATE TABLE table_1341640_43 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1341640_43 WHERE first_elected = 1976",
    "question_en": "Election results of 1976",
    "question_th": "ผลการเลือกตั้งปี 2519",
    "context": "CREATE TABLE table_1341640_43 (result VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1341640_26 WHERE district = \"Missouri 1\"",
    "question_en": "What was the incumbent for missouri 1?",
    "question_th": "มิสซูรี 1 มีหน้าที่อะไร",
    "context": "CREATE TABLE table_1341640_26 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1341640_14 WHERE first_elected = 1960",
    "question_en": "What was the result of the election when someone was first elected in 1960?",
    "question_th": "การเลือกตั้งเมื่อมีคนได้รับเลือกครั้งแรกในปี 2503 มีผลอย่างไร?",
    "context": "CREATE TABLE table_1341640_14 (result VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT first_elected FROM table_1341640_14 WHERE incumbent = \"Phil Crane\"",
    "question_en": "What year was incumbent phil crane first elected?",
    "question_th": "ฟิล เครน ผู้ดำรงตำแหน่งได้รับเลือกเป็นครั้งแรกในปีใด",
    "context": "CREATE TABLE table_1341640_14 (first_elected VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341640_14 WHERE first_elected = 1974",
    "question_en": "What candidates were featured in the 1974 election?",
    "question_th": "มีผู้สมัครคนใดบ้างในการเลือกตั้งปี 1974",
    "context": "CREATE TABLE table_1341640_14 (candidates VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT first_elected FROM table_1341663_19 WHERE incumbent = \"Jerry Huckaby\"",
    "question_en": "What year was Jerry Huckaby first elected?",
    "question_th": "Jerry Huckaby ได้รับเลือกครั้งแรกในปีใด",
    "context": "CREATE TABLE table_1341663_19 (first_elected VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341663_19 WHERE incumbent = \"Dave Treen\"",
    "question_en": "What other cadidate ran against Dave Treen?",
    "question_th": "มีผู้สมัครคนไหนอีกบ้างที่วิ่งแข่งกับ Dave Treen?",
    "context": "CREATE TABLE table_1341663_19 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT MIN(first_elected) FROM table_1341663_19",
    "question_en": "What year was the earliest first elected?",
    "question_th": "การเลือกตั้งครั้งแรกเร็วที่สุดคือปีใด",
    "context": "CREATE TABLE table_1341663_19 (first_elected INTEGER)"
  },
  {
    "answer": "SELECT district FROM table_1341663_19 WHERE incumbent = \"Dave Treen\"",
    "question_en": "What district did Dave Treen serve?",
    "question_th": "Dave Treen ให้บริการในเขตใด",
    "context": "CREATE TABLE table_1341663_19 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(incumbent) FROM table_1341663_11 WHERE first_elected = 1972",
    "question_en": "How many sitting politicians were originally elected in 1972?",
    "question_th": "เดิมทีมีนักการเมืองที่นั่งอยู่กี่คนที่ได้รับเลือกในปี 1972",
    "context": "CREATE TABLE table_1341663_11 (incumbent VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341663_11 WHERE district = \"Georgia 6\"",
    "question_en": "In the Georgia 6 district, what is the elected party?",
    "question_th": "ในเขตจอร์เจีย 6 พรรคที่ได้รับเลือกคือพรรคอะไร?",
    "context": "CREATE TABLE table_1341663_11 (party VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1341663_11 WHERE incumbent = \"Billy Lee Evans\"",
    "question_en": "In the race involving Billy Lee Evans as the seated Representative, was he elected again?",
    "question_th": "ในการแข่งขันที่มีบิลลี่ ลี อีแวนส์ เป็นตัวแทนที่นั่ง เขาได้รับเลือกอีกครั้งหรือไม่?",
    "context": "CREATE TABLE table_1341663_11 (result VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(party) FROM table_1341663_11 WHERE incumbent = \"Dawson Mathis\"",
    "question_en": "How many parties are there in races involving Dawson Mathis?",
    "question_th": "มีกี่ฝ่ายในการแข่งขันที่เกี่ยวข้องกับดอว์สัน มาติส",
    "context": "CREATE TABLE table_1341663_11 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341663_44 WHERE party = \"Republican\"",
    "question_en": "Which district is republican?",
    "question_th": "เขตใดเป็นพรรครีพับลิกัน?",
    "context": "CREATE TABLE table_1341663_44 (district VARCHAR, party VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1341663_44 WHERE incumbent = \"George H. Mahon\"",
    "question_en": "Name the result when the incumbent was george h. mahon",
    "question_th": "ตั้งชื่อผลลัพธ์เมื่อผู้ดำรงตำแหน่งคือจอร์จเอช. มาฮอน",
    "context": "CREATE TABLE table_1341663_44 (result VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1341663_44 WHERE district = \"Texas 3\"",
    "question_en": "What was the incumbent of texas 3?",
    "question_th": "เท็กซัส 3 มีหน้าที่อะไร?",
    "context": "CREATE TABLE table_1341663_44 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1341663_44 WHERE district = \"Texas 19\"",
    "question_en": "What was the incumbent for texas 19?",
    "question_th": "เท็กซัส 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_en": "Which district has candidates is dick gephardt (d) 81.9% lee buchschacher (r) 18.1%?",
    "question_th": "เขตใดที่มีผู้สมัครคือ 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_en": "What is the result for the district missouri 2?",
    "question_th": "ผลลัพธ์ของเขตมิสซูรี 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_en": "When was the first elected for district missouri 7?",
    "question_th": "ได้รับเลือกครั้งแรกให้เป็นเขตมิสซูรี 7 เมื่อใด",
    "context": "CREATE TABLE table_1341663_26 (first_elected INTEGER, district VARCHAR)"
  },
  {
    "answer": "SELECT MIN(first_elected) FROM table_1341663_26",
    "question_en": "When was the earliest first election?",
    "question_th": "การเลือกตั้งครั้งแรกเร็วที่สุดคือเมื่อไหร่?",
    "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_en": "How many times was the candidates dick gephardt (d) 81.9% lee buchschacher (r) 18.1%?",
    "question_th": "กี่ครั้งที่ผู้สมัคร 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_en": "What district did S. William Green belong to?",
    "question_th": "S. William Green อยู่ในเขตใด",
    "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_en": "What district did the Democratic party incumbent Stephen J. Solarz get first elected to in 1974?",
    "question_th": "Stephen J. Solarz ผู้ดำรงตำแหน่งพรรคเดโมแครตได้รับเลือกในเขตใดเป็นครั้งแรกในปี 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_en": "When was Stephen J. Solarz first elected?",
    "question_th": "Stephen J. Solarz ได้รับเลือกครั้งแรกเมื่อใด",
    "context": "CREATE TABLE table_1341663_33 (first_elected INTEGER, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341663_33 WHERE incumbent = \"Shirley Chisholm\"",
    "question_en": "Who were the candidates when Shirley Chisholm was the incumbent?",
    "question_th": "ใครคือผู้สมัครเมื่อ Shirley Chisholm ดำรงตำแหน่ง?",
    "context": "CREATE TABLE table_1341663_33 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341663_6 WHERE incumbent = \"Bob Wilson\"",
    "question_en": "What is the district that has Bob Wilson as an incumbent?",
    "question_th": "เขตใดที่มี Bob Wilson ดำรงตำแหน่ง?",
    "context": "CREATE TABLE table_1341663_6 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(result) FROM table_1341663_6 WHERE district = \"California 38\"",
    "question_en": "How many outcomes were there in the elections in California 38?",
    "question_th": "มีผลลัพธ์กี่รายการในการเลือกตั้งในรัฐแคลิฟอร์เนีย 38?",
    "context": "CREATE TABLE table_1341663_6 (result VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341663_6 WHERE incumbent = \"Charles H. Wilson\"",
    "question_en": "What district is Charles H. Wilson the incumbent of?",
    "question_th": "Charles H. Wilson ดำรงตำแหน่งในเขตใด",
    "context": "CREATE TABLE table_1341663_6 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341663_6 WHERE district = \"California 30\"",
    "question_en": "What party was the winning one in the elections in the California 30 district?",
    "question_th": "พรรคใดเป็นฝ่ายชนะในการเลือกตั้งในเขต 30 ของรัฐแคลิฟอร์เนีย",
    "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_en": "How many times did an election feature the result robert l. leggett (d) 50.2% albert dehr (r) 49.8%?",
    "question_th": "การเลือกตั้งมีกี่ครั้งที่ผลการเลือกตั้งโรเบิร์ต แอล. เลกเก็ตต์ (ง) 50.2% อัลเบิร์ต เดอห์ร (ขวา) 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_en": "What year was incumbent mark w. hannaford elected?",
    "question_th": "มาร์ค ว. ดำรงตำแหน่งปีใด ฮันนาฟอร์ดได้รับเลือกเหรอ?",
    "context": "CREATE TABLE table_1341672_6 (first_elected INTEGER, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341672_10 WHERE incumbent = \"Richard Kelly\"",
    "question_en": "what is the district where the incumbent is richard kelly?",
    "question_th": "ริชาร์ด เคลลี่คือเขตอะไร?",
    "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_en": "what is the result where the candidates is robert l. f. sikes (d) unopposed?",
    "question_th": "ผลลัพธ์คืออะไรเมื่อผู้สมัครคือ robert lf sikes (d) ค้าน?",
    "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_en": "who is the incumbent where the candidates is william v. chappell, jr. (d) unopposed?",
    "question_th": "ซึ่งดำรงตำแหน่งโดยที่ผู้สมัครคือ วิลเลียม วี. แชปเพลล์ จูเนียร์ (ง) ไม่ค้าน?",
    "context": "CREATE TABLE table_1341672_10 (incumbent VARCHAR, candidates VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341672_10 WHERE incumbent = \"James A. Haley\"",
    "question_en": "what is the district where the incumbent is james a. haley?",
    "question_th": "เจมส์ เอ ผู้ดำรงตำแหน่งอยู่ที่อำเภออะไร เฮลีย์?",
    "context": "CREATE TABLE table_1341672_10 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341672_10 WHERE district = \"Florida 8\"",
    "question_en": "who are the candidates where the district is florida 8?",
    "question_th": "ใครคือผู้สมัครที่อยู่เขตฟลอริดา 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_en": "what year was the first elected incumbant Sidney R. Yates?",
    "question_th": "ซิดนีย์ อาร์. เยตส์ ผู้ดำรงตำแหน่งที่ได้รับการเลือกตั้งคนแรกคือปีใด",
    "context": "CREATE TABLE table_1341690_13 (first_elected VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(incumbent) FROM table_1341690_18 WHERE district = \"Louisiana 5\"",
    "question_en": "How many incumbents are there in district Louisiana 5?",
    "question_th": "มีผู้ดำรงตำแหน่งในเขตลุยเซียนา 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_en": "How many incumbents resulted in a lost renomination republican gain?",
    "question_th": "มีผู้ดำรงตำแหน่งจำนวนเท่าใดที่ส่งผลให้พรรครีพับลิกันได้รับการเสนอชื่อใหม่หายไป?",
    "context": "CREATE TABLE table_1341690_18 (incumbent VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341690_18 WHERE incumbent = \"John Breaux\"",
    "question_en": "In which district is the incumbent John Breaux?",
    "question_th": "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_en": "What year was Otto Passman (d) unopposed first elected?",
    "question_th": "Otto Passman (d) ไม่ได้รับการเลือกตั้งครั้งแรกในปีใด?",
    "context": "CREATE TABLE table_1341690_18 (first_elected INTEGER, candidates VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1341690_18 WHERE incumbent = \"John Breaux\"",
    "question_en": "What were the results when the incumbent was John Breaux?",
    "question_th": "ผลลัพธ์ที่ได้เมื่อผู้ดำรงตำแหน่งคือจอห์น โบรซ์?",
    "context": "CREATE TABLE table_1341690_18 (result VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341690_43 WHERE district = \"Texas 1\"",
    "question_en": "Name the candidates for texas 1",
    "question_th": "ตั้งชื่อผู้สมัครสำหรับเท็กซัส 1",
    "context": "CREATE TABLE table_1341690_43 (candidates VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1341690_43 WHERE district = \"Texas 12\"",
    "question_en": "Name the incumbent for district texas 12",
    "question_th": "ตั้งชื่อผู้ดำรงตำแหน่งของเขตเท็กซัส 12",
    "context": "CREATE TABLE table_1341690_43 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341690_43 WHERE district = \"Texas 20\"",
    "question_en": "Name the candidates for texas 20",
    "question_th": "ตั้งชื่อผู้สมัครสำหรับเท็กซัส 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_en": "what is the district with the candidates edward boland (d) unopposed?",
    "question_th": "เขตที่มีผู้สมัคร เอ็ดเวิร์ด โบแลนด์ (d) ค้านคืออะไร?",
    "context": "CREATE TABLE table_1341690_21 (district VARCHAR, candidates VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341690_21 WHERE candidates = \"Edward Boland (D) Unopposed\"",
    "question_en": "what is the party where the candidates are edward boland (d) unopposed?",
    "question_th": "พรรคใดที่ผู้สมัครคือ เอ็ดเวิร์ด โบแลนด์ (ง) ค้าน?",
    "context": "CREATE TABLE table_1341690_21 (party VARCHAR, candidates VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341690_21 WHERE incumbent = \"Edward Boland\"",
    "question_en": "what is the party where the incumbent is edward boland?",
    "question_th": "งานปาร์ตี้ที่เอ็ดเวิร์ด โบแลนด์คือพรรคอะไร?",
    "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_en": "How many times was the candidates paul tsongas (d) 60.6% paul w. cronin (r) 39.4%?",
    "question_th": "ผู้สมัครมีกี่ครั้ง Paul Tsongas (ง) 60.6% Paul W. โครนิน (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_en": "List all candidates in elections where the incumbent politician is Goodloe Byron.",
    "question_th": "รายชื่อผู้สมัครทั้งหมดในการเลือกตั้งซึ่งมีนักการเมืองคนปัจจุบันคือ 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_en": "How many instances are there of party in the situation where Robert Bauman is the incumbent politician?",
    "question_th": "มีเหตุการณ์กี่กรณีในสถานการณ์ที่ Robert Bauman เป็นนักการเมืองคนปัจจุบัน?",
    "context": "CREATE TABLE table_1341690_20 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341690_20 WHERE incumbent = \"Robert Bauman\"",
    "question_en": "What is the party of the election in which Robert Bauman is the incumbent?",
    "question_th": "พรรคใดในการเลือกตั้งที่มีโรเบิร์ต บาวแมน ดำรงตำแหน่ง?",
    "context": "CREATE TABLE table_1341690_20 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1341690_20 WHERE district = \"Maryland 7\"",
    "question_en": "List all results where the voting district is Maryland 7.",
    "question_th": "แสดงรายการผลลัพธ์ทั้งหมดที่เขตลงคะแนนคือ Maryland 7",
    "context": "CREATE TABLE table_1341690_20 (result VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1341690_20 WHERE incumbent = \"Robert Bauman\"",
    "question_en": "What are all the results where Robert Bauman is the incumbent politician?",
    "question_th": "ผลลัพธ์ทั้งหมดที่ Robert Bauman เป็นนักการเมืองคนปัจจุบันคืออะไร?",
    "context": "CREATE TABLE table_1341690_20 (result VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341690_35 WHERE incumbent = \"Del Latta\"",
    "question_en": "Who were the candidates in the district won by the incumbent Del Latta?",
    "question_th": "ใครคือผู้สมัครในเขตที่ชนะโดยผู้ดำรงตำแหน่งเดล ลัตตา?",
    "context": "CREATE TABLE table_1341690_35 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341690_35 WHERE first_elected = 1966",
    "question_en": "Who were the candidates in the districts that was first elected in 1966?",
    "question_th": "ใครคือผู้สมัครในเขตที่ได้รับการเลือกตั้งครั้งแรกในปี พ.ศ. 2509?",
    "context": "CREATE TABLE table_1341690_35 (candidates VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341690_5 WHERE district = \"California 10\"",
    "question_en": "Who was running for office in the California 10 district?",
    "question_th": "ใครลงสมัครรับตำแหน่งในเขต California 10?",
    "context": "CREATE TABLE table_1341690_5 (candidates VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(party) FROM table_1341690_5 WHERE district = \"California 23\"",
    "question_en": "How many parties won the election in the California 23 district?",
    "question_th": "มีกี่ฝ่ายที่ชนะการเลือกตั้งในเขต 23 ของรัฐแคลิฟอร์เนีย",
    "context": "CREATE TABLE table_1341690_5 (party VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT MAX(first_elected) FROM table_1341690_5 WHERE party = \"Republican\"",
    "question_en": "What republican candidate was first elected most recently?",
    "question_th": "ผู้สมัครพรรครีพับลิกันคนใดที่ได้รับเลือกครั้งแรกล่าสุด?",
    "context": "CREATE TABLE table_1341690_5 (first_elected INTEGER, party VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341707_12 WHERE first_elected = 1952",
    "question_en": "Phillip Landrum was first elected in 1952 from the ninth district of Georgia.",
    "question_th": "Phillip Landrum ได้รับเลือกครั้งแรกในปี พ.ศ. 2495 จากเขตที่เก้าของจอร์เจีย",
    "context": "CREATE TABLE table_1341707_12 (district VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341707_15 WHERE district = \"Illinois 12\"",
    "question_en": "What party did the incumbent from the Illinois 12 district belong to? ",
    "question_th": " ผู้ดำรงตำแหน่งจากเขตอิลลินอยส์ 12 เป็นสมาชิกพรรคใด",
    "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_en": "Who was the democratic incumbent in the Illinois 11 district who was re-elected? ",
    "question_th": "ใครคือผู้ดำรงตำแหน่งประชาธิปไตยในเขตอิลลินอยส์ 11 ที่ได้รับเลือกอีกครั้ง",
    "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_en": "Which incumbent was first elected in 1964? ",
    "question_th": " ผู้ดำรงตำแหน่งใดที่ได้รับเลือกครั้งแรกในปี พ.ศ. 2507",
    "context": "CREATE TABLE table_1341707_15 (incumbent VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341707_15 WHERE district = \"Illinois 1\"",
    "question_en": "What party did the incumbent from the Illinois 1 district belong to? ",
    "question_th": " ผู้ดำรงตำแหน่งจากเขตอิลลินอยส์ 1 เป็นสมาชิกพรรคใด",
    "context": "CREATE TABLE table_1341707_15 (party VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341690_9 WHERE incumbent = \"Don Fuqua\"",
    "question_en": "What candidates ran in the election with don fuqua?",
    "question_th": "ผู้สมัครคนไหนลงสมัครเลือกตั้งกับดอน ฟูกัว?",
    "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_en": "How many incumbent candidates in the election featuring sam m. gibbons (d) unopposed?",
    "question_th": "มีผู้สมัครรับเลือกตั้งจำนวนกี่คนที่มีแซม ม. ชะนี (d) ค้าน?",
    "context": "CREATE TABLE table_1341690_9 (incumbent VARCHAR, candidates VARCHAR)"
  },
  {
    "answer": "SELECT MAX(first_elected) FROM table_1341690_9",
    "question_en": "What is the last year that someone is first elected?",
    "question_th": "ปีสุดท้ายที่มีการเลือกตั้งครั้งแรกคือปีใด?",
    "context": "CREATE TABLE table_1341690_9 (first_elected INTEGER)"
  },
  {
    "answer": "SELECT incumbent FROM table_1341690_9 WHERE first_elected = 1940",
    "question_en": "Who was the incumbent in 1940?",
    "question_th": "ใครเป็นผู้ดำรงตำแหน่งในปี พ.ศ. 2483?",
    "context": "CREATE TABLE table_1341690_9 (incumbent VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341718_14 WHERE incumbent = \"Sidney R. Yates\"",
    "question_en": "what is the party when the incumbent is sidney r. yates?",
    "question_th": "งานปาร์ตี้จะเป็นอย่างไรเมื่อผู้ดำรงตำแหน่งคือซิดนีย์ อาร์ เยตส์?",
    "context": "CREATE TABLE table_1341718_14 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT MAX(first_elected) FROM table_1341718_14 WHERE district = \"Illinois 7\"",
    "question_en": "what was the year first elected for district illinois 7?",
    "question_th": "ปีแรกที่ได้รับเลือกให้เป็นเขตอิลลินอยส์ 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_en": "how many times was the candidates phil crane (r) 58.0% edward a. warman (d) 42.0%?",
    "question_th": "ผู้สมัครกี่ครั้งแล้ว ฟิล เครน (r) 58.0% เอ็ดเวิร์ด ก. วอร์แมน (ง) 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_en": "how many times was it the district illinois 18?",
    "question_th": "กี่ครั้งที่เขตอิลลินอยส์ 18?",
    "context": "CREATE TABLE table_1341718_14 (candidates VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341718_14 WHERE incumbent = \"Ed Derwinski\"",
    "question_en": "who were the candidates when the incumbent was ed derwinski?",
    "question_th": "ใครคือผู้สมัครเมื่อดำรงตำแหน่งคือ 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_en": "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%?",
    "question_th": "การเลือกตั้งครั้งแรกเมื่อใดเมื่อพรรคเป็นพรรครีพับลิกันและผู้สมัครคือโรเบิร์ต เอช. มิเชล (ขวา) 66.1% โรซา ลี ฟ็อกซ์ (ง) 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_en": "Who is the incumbent in district Texas 15?",
    "question_th": "ใครเป็นผู้ดำรงตำแหน่งในเขตเท็กซัส 15?",
    "context": "CREATE TABLE table_1341707_45 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341718_44 WHERE incumbent = \"Earle Cabell\"",
    "question_en": "Which district elected incumbent Earle Cabell?",
    "question_th": "เขตใดได้รับเลือกให้ดำรงตำแหน่ง Earle Cabell",
    "context": "CREATE TABLE table_1341718_44 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1341718_44 WHERE incumbent = \"Ray Roberts\"",
    "question_en": "What was the result when Ray Roberts was elected?",
    "question_th": "ผลลัพธ์คืออะไรเมื่อ Ray Roberts ได้รับเลือก?",
    "context": "CREATE TABLE table_1341718_44 (result VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT MAX(first_elected) FROM table_1341738_11",
    "question_en": "What is the highest year that a candidate was first elected?",
    "question_th": "ปีสูงสุดที่มีการเลือกตั้งผู้สมัครครั้งแรกคือปีใด",
    "context": "CREATE TABLE table_1341738_11 (first_elected INTEGER)"
  },
  {
    "answer": "SELECT candidates FROM table_1341718_36 WHERE incumbent = \"Bill Harsha\"",
    "question_en": "Incumbent Bill Harsha was the winner in an election in which the candidates were who?",
    "question_th": "ผู้ดำรงตำแหน่ง Bill Harsha เป็นผู้ชนะในการเลือกตั้งซึ่งผู้สมัครเป็นใคร?",
    "context": "CREATE TABLE table_1341718_36 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341738_36 WHERE first_elected = 1954",
    "question_en": "What was the party of the first elected candidate in 1954?",
    "question_th": "พรรคของผู้สมัครที่ได้รับเลือกคนแรกในปี พ.ศ. 2497 คืออะไร?",
    "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_en": "How many districts does Donald D. Clancy represent?",
    "question_th": "Donald D. Clancy เป็นตัวแทนของเขตจำนวนกี่เขต",
    "context": "CREATE TABLE table_1341738_36 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341738_34 WHERE incumbent = \"Lawrence H. Fountain\"",
    "question_en": "Which party is Lawrence H. Fountain part of?",
    "question_th": "Lawrence H. Fountain เป็นส่วนหนึ่งของฝ่ายใด",
    "context": "CREATE TABLE table_1341738_34 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT first_elected FROM table_1341738_34 WHERE district = \"North Carolina 8\"",
    "question_en": "Who was the first person elected in North Carolina 8?",
    "question_th": "ใครคือบุคคลแรกที่ได้รับเลือกใน 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_en": "who was the candidate elected to the democratic party in 1952?",
    "question_th": "ใครคือผู้สมัครที่ได้รับเลือกเข้าสู่พรรคประชาธิปไตยในปี พ.ศ. 2495?",
    "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_en": "What district did Joe Waggonner belong to?",
    "question_th": "Joe Waggonner อยู่ในเขตใด",
    "context": "CREATE TABLE table_1341738_19 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1341738_19 WHERE first_elected = 1940",
    "question_en": "What is the name of the incumbent who was first eleccted in 1940?",
    "question_th": "ผู้ดำรงตำแหน่งที่ได้รับเลือกครั้งแรกในปี 2483 ชื่ออะไร",
    "context": "CREATE TABLE table_1341738_19 (incumbent VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341738_6 WHERE incumbent = \"Edwin Reinecke\"",
    "question_en": "What party does incumbent edwin reinecke represent?",
    "question_th": "Edwin Reinecke ผู้ดำรงตำแหน่งเป็นตัวแทนของพรรคใด",
    "context": "CREATE TABLE table_1341738_6 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341738_6 WHERE incumbent = \"Don Edwards\"",
    "question_en": "Who were the candidates in the election that featured incumbent don edwards?",
    "question_th": "ใครคือผู้สมัครในการเลือกตั้งที่มีผู้ดำรงตำแหน่งดอน เอ็ดเวิร์ดส์?",
    "context": "CREATE TABLE table_1341738_6 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1341843_15 WHERE district = \"Indiana 4\"",
    "question_en": "Who's the incumbent of Indiana 4 district?",
    "question_th": "ใครคือผู้ดำรงตำแหน่งเขตอินเดียน่า 4?",
    "context": "CREATE TABLE table_1341843_15 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1341843_15 WHERE first_elected = \"1950\"",
    "question_en": "Who's the incumbent of the district with first election held in 1950?",
    "question_th": "ใครเป็นผู้ดำรงตำแหน่งของเขตซึ่งมีการเลือกตั้งครั้งแรกในปี พ.ศ. 2493?",
    "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_en": "Who was featured in the election of charles edward bennett redistricted from 2nd?",
    "question_th": "ใครเป็นผู้มีบทบาทในการเลือกตั้งชาร์ลส์ เอ็ดเวิร์ด เบนเน็ตต์ที่ถูกจำกัดใหม่ตั้งแต่วันที่ 2?",
    "context": "CREATE TABLE table_1341843_10 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT first_elected FROM table_1341865_23 WHERE party = \"Republican\"",
    "question_en": "Name the first elected for the republican party",
    "question_th": "ตั้งชื่อคนแรกที่ได้รับเลือกให้เข้าร่วมพรรครีพับลิกัน",
    "context": "CREATE TABLE table_1341865_23 (first_elected VARCHAR, party VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341865_23 WHERE incumbent = \"Philip Philbin\"",
    "question_en": "Name the district with philip philbin",
    "question_th": "ตั้งชื่ออำเภอด้วยฟิลิป ฟิลบิน",
    "context": "CREATE TABLE table_1341865_23 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341865_23 WHERE incumbent = \"Edward Boland\"",
    "question_en": "Name the party with edward boland",
    "question_th": "ตั้งชื่อปาร์ตี้ด้วย เอ็ดเวิร์ด โบแลนด์",
    "context": "CREATE TABLE table_1341865_23 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341843_44 WHERE first_elected = 1966",
    "question_en": "What was the district who had their first elected in 1966?",
    "question_th": "เขตที่ได้รับการเลือกตั้งครั้งแรกในปี พ.ศ. 2509 คือเขตใด",
    "context": "CREATE TABLE table_1341843_44 (district VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341843_44 WHERE incumbent = \"Richard C. White\"",
    "question_en": "Who was the candidate when the incumbent was Richard C. White?",
    "question_th": "ใครคือผู้สมัครเมื่อดำรงตำแหน่งคือ 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_en": "What district did Donald Ray Matthews belong to?",
    "question_th": "Donald Ray Matthews อยู่ในเขตใด",
    "context": "CREATE TABLE table_1341865_11 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341865_11 WHERE incumbent = \"Don Fuqua\"",
    "question_en": "What party did Don Fuqua belong to?",
    "question_th": "ดอน ฟูกัวอยู่พรรคไหน?",
    "context": "CREATE TABLE table_1341865_11 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(party) FROM table_1341865_20 WHERE district = \"Louisiana 5\"",
    "question_en": "How many parties won the election in the Louisiana 5 district?",
    "question_th": "มีกี่พรรคที่ชนะการเลือกตั้งในเขตหลุยเซียน่า 5?",
    "context": "CREATE TABLE table_1341865_20 (party VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(first_elected) FROM table_1341865_20 WHERE district = \"Louisiana 4\"",
    "question_en": "How many candidates were elected in the Louisiana 4 district?",
    "question_th": "มีการเลือกตั้งผู้สมัครกี่คนในเขตหลุยเซียน่า 4",
    "context": "CREATE TABLE table_1341865_20 (first_elected VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1341865_20 WHERE district = \"Louisiana 7\"",
    "question_en": "Who was the winner in the Louisiana 7 district?",
    "question_th": "ใครคือผู้ชนะในเขตหลุยเซียน่า 7?",
    "context": "CREATE TABLE table_1341865_20 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341865_44 WHERE district = \"Tennessee 3\"",
    "question_en": "what's party with district being tennessee 3",
    "question_th": "ปาร์ตี้อะไรกับเขตที่เป็นเทนเนสซี 3",
    "context": "CREATE TABLE table_1341865_44 (party VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(party) FROM table_1341865_44 WHERE district = \"Tennessee 1\"",
    "question_en": "how many party with district being tennessee 1",
    "question_th": "มีกี่พรรคที่มีเขตเป็นเทนเนสซี 1",
    "context": "CREATE TABLE table_1341865_44 (party VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(incumbent) FROM table_1341865_44 WHERE district = \"Tennessee 5\"",
    "question_en": " how many incumbent with district  being tennessee 5",
    "question_th": " มีผู้ดำรงตำแหน่งเขตเป็นเทนเนสซีกี่คน 5",
    "context": "CREATE TABLE table_1341865_44 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1341865_44 WHERE district = \"Tennessee 5\"",
    "question_en": "what's incumbent with district being tennessee 5",
    "question_th": "หน้าที่ของเขตคือเทนเนสซี 5",
    "context": "CREATE TABLE table_1341865_44 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341865_45 WHERE incumbent = \"Jack Brooks\"",
    "question_en": "Who ran in the race for Jack Brooks' seat?",
    "question_th": "ใครลงแข่งเพื่อชิงที่นั่งของแจ็ค บรูคส์?",
    "context": "CREATE TABLE table_1341865_45 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341865_34 WHERE incumbent = \"Seymour Halpern\"",
    "question_en": "which section did seymour halpern run in",
    "question_th": "ส่วนไหนที่ซีมัวร์ ฮัลเพิร์นวิ่งเข้ามา",
    "context": "CREATE TABLE table_1341865_34 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341865_40 WHERE incumbent = \"Albert W. Johnson\"",
    "question_en": "What district is incumbent albert w. johnson from?",
    "question_th": "อัลเบิร์ต ดับเบิลยู ดำรงตำแหน่งเขตใด จอห์นสันจาก?",
    "context": "CREATE TABLE table_1341865_40 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(result) FROM table_1341865_40 WHERE incumbent = \"Frank M. Clark\"",
    "question_en": "How many times was frank m. clark the incumbent?",
    "question_th": "แฟรงค์ ม. กี่ครั้งแล้ว คลาร์กผู้ดำรงตำแหน่ง?",
    "context": "CREATE TABLE table_1341865_40 (result VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341865_40 WHERE incumbent = \"Elmer J. Holland\"",
    "question_en": "What district is incumbent elmer j. holland from?",
    "question_th": "เอลเมอร์ เจ. ดำรงตำแหน่งเขตใด ฮอลแลนด์จาก?",
    "context": "CREATE TABLE table_1341865_40 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341865_37 WHERE incumbent = \"Frank T. Bow\"",
    "question_en": "To which party does Frank T. Bow belong?",
    "question_th": "Frank T. Bow สังกัดพรรคใด?",
    "context": "CREATE TABLE table_1341865_37 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341865_37 WHERE incumbent = \"Carl W. Rich\"",
    "question_en": "Who ran in the race for the seat of incumbent Carl W. Rich?",
    "question_th": "ใครเป็นผู้ลงสมัครชิงตำแหน่งผู้ดำรงตำแหน่งคาร์ล ดับเบิลยู. ริช?",
    "context": "CREATE TABLE table_1341865_37 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341865_37 WHERE incumbent = \"Carl W. Rich\"",
    "question_en": "In which district is the incumbent Carl W. Rich?",
    "question_th": "คาร์ล ดับเบิลยู ริช ดำรงตำแหน่งในเขตใด",
    "context": "CREATE TABLE table_1341865_37 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341884_12 WHERE incumbent = \"Carl Vinson\"",
    "question_en": "Name the candidates where incumbent Carl Vinson is?",
    "question_th": "เสนอชื่อผู้สมัครในตำแหน่งที่คาร์ล วินสันดำรงตำแหน่งอยู่?",
    "context": "CREATE TABLE table_1341884_12 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341884_23 WHERE district = \"Massachusetts 8\"",
    "question_en": "Name the candidates for massachusetts 8",
    "question_th": "ตั้งชื่อผู้สมัครแมสซาชูเซตส์ 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_en": "What candidates were in the election when a republican was re-elected?",
    "question_th": "มีผู้สมัครคนใดบ้างในการเลือกตั้งเมื่อมีการเลือกพรรครีพับลิกันอีกครั้ง?",
    "context": "CREATE TABLE table_1341884_19 (candidates VARCHAR, result VARCHAR, party VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341884_19 WHERE incumbent = \"Frank Chelf\"",
    "question_en": "What district is incumbent frank chelf from?",
    "question_th": "แฟรงค์ เชฟ มาจากเขตใด",
    "context": "CREATE TABLE table_1341884_19 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(district) FROM table_1341884_20 WHERE incumbent = \"Edwin E. Willis\"",
    "question_en": "How many districts represented Edwin E. Willis?",
    "question_th": "มีกี่เขตที่เป็นตัวแทนของ 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_en": "Who were all the candidates when the first elected year was 1961?",
    "question_th": "ใครคือผู้สมัครทั้งหมดเมื่อปีที่ได้รับการเลือกตั้งครั้งแรกคือ พ.ศ. 2504?",
    "context": "CREATE TABLE table_1341884_20 (candidates VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341884_20 WHERE incumbent = \"Hale Boggs\"",
    "question_en": "What party did Hale Boggs belong to?",
    "question_th": "Hale Boggs อยู่ในพรรคใด",
    "context": "CREATE TABLE table_1341884_20 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341884_45 WHERE district = \"Texas 12\"",
    "question_en": "what is the political affiliation of the texas 12 district",
    "question_th": "ความเกี่ยวข้องทางการเมืองของเขตเท็กซัส 12 คืออะไร",
    "context": "CREATE TABLE table_1341884_45 (party VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT first_elected FROM table_1341884_45 WHERE district = \"Texas 6\"",
    "question_en": "how many voted in the texas 6 section",
    "question_th": "มีผู้โหวตกี่คนในส่วนเท็กซัส 6",
    "context": "CREATE TABLE table_1341884_45 (first_elected VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341884_45 WHERE incumbent = \"Ray Roberts\"",
    "question_en": "what is the political affiliation of ray roberts",
    "question_th": "ความเกี่ยวข้องทางการเมืองของเรย์ โรเบิร์ตส์คืออะไร",
    "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_en": "What district featured an election between  james a. byrne (d) 59.3% joseph r. burns (r) 40.7%?",
    "question_th": "เขตใดมีการเลือกตั้งระหว่างเจมส์ เอ. เบิร์น (d) 59.3% โจเซฟ อาร์. แผลไหม้ (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_en": "Name the candidates for massachusetts 6",
    "question_th": "ตั้งชื่อผู้สมัครแมสซาชูเซตส์ 6",
    "context": "CREATE TABLE table_1341897_23 (candidates VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1341897_23 WHERE district = \"Massachusetts 3\"",
    "question_en": "Name the result for massachusetts 3",
    "question_th": "ตั้งชื่อผลลัพธ์สำหรับแมสซาชูเซตส์ 3",
    "context": "CREATE TABLE table_1341897_23 (result VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341897_23 WHERE first_elected = 1942",
    "question_en": "Name the candidate first elected in 1942",
    "question_th": "ตั้งชื่อผู้สมัครที่ได้รับเลือกครั้งแรกในปี พ.ศ. 2485",
    "context": "CREATE TABLE table_1341897_23 (candidates VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341897_23 WHERE district = \"Massachusetts 3\"",
    "question_en": "Name the party for massachusetts 3",
    "question_th": "ตั้งชื่อพรรคแมสซาชูเซตส์ 3",
    "context": "CREATE TABLE table_1341897_23 (party VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341897_3 WHERE incumbent = \"Albert Rains\"",
    "question_en": "What district is incumbent albert rains from?",
    "question_th": "อัลเบิร์ต ฝนตก มาจากเขตไหน?",
    "context": "CREATE TABLE table_1341897_3 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(candidates) FROM table_1341897_3 WHERE incumbent = \"Kenneth A. Roberts\"",
    "question_en": "How many candidates represent the district of kenneth a. roberts?",
    "question_th": "มีผู้สมัครกี่คนที่เป็นตัวแทนของเขตเคนเนธ เอ โรเบิร์ต?",
    "context": "CREATE TABLE table_1341897_3 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1341897_6 WHERE district = \"Arkansas 2\"",
    "question_en": "Who was the incumbent in the Arkansas 2 district election? ",
    "question_th": " ใครเป็นผู้ดำรงตำแหน่งในการเลือกตั้งเขตอาร์คันซอ 2?",
    "context": "CREATE TABLE table_1341897_6 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT first_elected FROM table_1341897_6 WHERE district = \"Arkansas 5\"",
    "question_en": "When was Dale Alford first elected in the Arkansas 5 district? ",
    "question_th": " Dale Alford ได้รับเลือกครั้งแรกในเขต Arkansas 5 เมื่อใด",
    "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_en": "When was James William Trimble first elected in the Arkansas 3 district? ",
    "question_th": " James William Trimble ได้รับเลือกครั้งแรกในเขต Arkansas 3 เมื่อใด",
    "context": "CREATE TABLE table_1341897_6 (first_elected INTEGER, district VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341897_6 WHERE district = \"Arkansas 5\"",
    "question_en": "When party did the incumbent in the Arkansas 5 district belong to? ",
    "question_th": " ผู้ดำรงตำแหน่งในเขต Arkansas 5 เป็นสมาชิกพรรคเมื่อใด",
    "context": "CREATE TABLE table_1341897_6 (party VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1341897_6 WHERE district = \"Arkansas 5\"",
    "question_en": "What was the result in the Arkansas 5 district election? ",
    "question_th": " ผลการเลือกตั้งเขตอาร์คันซอ 5 เป็นอย่างไร",
    "context": "CREATE TABLE table_1341897_6 (result VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341897_6 WHERE district = \"Arkansas 2\"",
    "question_en": "What party did the incumbent in the Arkansas 2 district belong to? ",
    "question_th": " ผู้ดำรงตำแหน่งในเขตอาร์คันซอ 2 สังกัดพรรคใด",
    "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_en": "How many candidates were there in the election for William Jennings Bryan Dorn's seat?",
    "question_th": "มีผู้สมัครกี่คนในการเลือกตั้งที่นั่งของ William Jennings Bryan Dorn",
    "context": "CREATE TABLE table_1341897_42 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT MIN(first_elected) FROM table_1341897_42",
    "question_en": "What is the earliest year that a candidate was first elected?",
    "question_th": "ปีแรกสุดที่มีการเลือกตั้งผู้สมัครครั้งแรกคือปีใด?",
    "context": "CREATE TABLE table_1341897_42 (first_elected INTEGER)"
  },
  {
    "answer": "SELECT result FROM table_1341897_45 WHERE incumbent = \"Lindley Beckworth\"",
    "question_en": "What was the result of the election in which Lindley Beckworth was the incumbent?",
    "question_th": "ผลการเลือกตั้งที่ Lindley Beckworth ดำรงตำแหน่งเป็นอย่างไร",
    "context": "CREATE TABLE table_1341897_45 (result VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1341897_45 WHERE first_elected = 1936",
    "question_en": "Which incumbent was first elected in 1936? ",
    "question_th": "ผู้ดำรงตำแหน่งใดได้รับเลือกครั้งแรกในปี พ.ศ. 2479",
    "context": "CREATE TABLE table_1341897_45 (incumbent VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1341897_45 WHERE incumbent = \"Walter E. Rogers\"",
    "question_en": "What was the result of the election in which Walter E. Rogers was the incumbent? ",
    "question_th": " อะไรคือผลลัพธ์ของการเลือกตั้งที่วอลเตอร์ อี. โรเจอร์ส ดำรงตำแหน่ง?",
    "context": "CREATE TABLE table_1341897_45 (result VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT first_elected FROM table_1341930_10 WHERE incumbent = \"Paul Rogers\"",
    "question_en": "When was Paul Rogers first elected?",
    "question_th": "Paul Rogers ได้รับเลือกครั้งแรกเมื่อใด",
    "context": "CREATE TABLE table_1341930_10 (first_elected VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341930_10 WHERE incumbent = \"James A. Haley\"",
    "question_en": "Which district is James A. Haley from?",
    "question_th": "James A. Haley มาจากเขตใด",
    "context": "CREATE TABLE table_1341930_10 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT MAX(first_elected) FROM table_1341930_10",
    "question_en": "What year were the latest elections?",
    "question_th": "การเลือกตั้งครั้งล่าสุดคือปีไหน?",
    "context": "CREATE TABLE table_1341930_10 (first_elected INTEGER)"
  },
  {
    "answer": "SELECT district FROM table_1341930_24 WHERE incumbent = \"John Bell Williams\"",
    "question_en": "In what district is the incumbent John Bell Williams?",
    "question_th": "จอห์น เบลล์ วิลเลียมส์ ผู้ดำรงตำแหน่งอยู่ในเขตใด",
    "context": "CREATE TABLE table_1341930_24 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT first_elected FROM table_1341930_24 WHERE incumbent = \"John Bell Williams\"",
    "question_en": "In what year was John Bell Williams first elected?",
    "question_th": "John Bell Williams ได้รับเลือกครั้งแรกในปีใด",
    "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_en": "How many districts have W. Arthur Winstead as elected official?",
    "question_th": "W. Arthur Winstead ได้รับเลือกเป็นเจ้าหน้าที่กี่เขต?",
    "context": "CREATE TABLE table_1341930_24 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341930_11 WHERE incumbent = \"Carl Vinson\"",
    "question_en": "What is the district for carl vinson?",
    "question_th": "คาร์ล วินสัน อยู่เขตไหน?",
    "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_en": "What is the most first elected for james c. davis?",
    "question_th": "อะไรคือสิ่งที่ได้รับเลือกเป็นอันดับแรกสำหรับเจมส์ซี เดวิส?",
    "context": "CREATE TABLE table_1341930_11 (first_elected INTEGER, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT first_elected FROM table_1341930_11 WHERE district = \"Georgia 4\"",
    "question_en": "What is the first elected for georgia 4?",
    "question_th": "จอร์เจีย 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_en": "which affiliation does edwin e. willis affiliate with",
    "question_th": "เอ็ดวิน อี. สังกัดไหน วิลลิสเป็นพันธมิตรกับ",
    "context": "CREATE TABLE table_1341930_18 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1341930_18 WHERE incumbent = \"James H. Morrison\"",
    "question_en": "which affiliation is james h. morrison part of",
    "question_th": "สังกัดไหนคือเจมส์เอช. มอร์ริสันเป็นส่วนหนึ่งของ",
    "context": "CREATE TABLE table_1341930_18 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341973_11 WHERE first_elected = 1914",
    "question_en": "Who is the candidate that was first elected in 1914?",
    "question_th": "ใครคือผู้สมัครที่ได้รับเลือกครั้งแรกในปี พ.ศ. 2457?",
    "context": "CREATE TABLE table_1341973_11 (candidates VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1341973_11 WHERE incumbent = \"Carl Vinson\"",
    "question_en": "In which district is the incumbent Carl Vinson?",
    "question_th": "คาร์ล วินสัน ผู้ดำรงตำแหน่งอยู่ในเขตใด",
    "context": "CREATE TABLE table_1341973_11 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(candidates) FROM table_1341930_40 WHERE incumbent = \"L. Mendel Rivers\"",
    "question_en": "Name the candidates for l. mendel rivers",
    "question_th": "ตั้งชื่อผู้สมัครสำหรับ l. แม่น้ำเมนเดล",
    "context": "CREATE TABLE table_1341930_40 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1341930_40 WHERE district = \"South Carolina 4\"",
    "question_en": "Name the result for south carolina 4",
    "question_th": "ตั้งชื่อผลลัพธ์สำหรับเซาท์แคโรไลนา 4",
    "context": "CREATE TABLE table_1341930_40 (result VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341930_40 WHERE district = \"South Carolina 3\"",
    "question_en": "Name the candidates for south carolina 3",
    "question_th": "ตั้งชื่อผู้สมัครสำหรับเซาท์แคโรไลนา 3",
    "context": "CREATE TABLE table_1341930_40 (candidates VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1341930_40 WHERE first_elected = 1956",
    "question_en": "Name the incumbent for first elected 1956",
    "question_th": "ตั้งชื่อผู้ดำรงตำแหน่งสำหรับการเลือกตั้งครั้งแรก พ.ศ. 2499",
    "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_en": "Name the number of party with the incubent james william trimble",
    "question_th": "ตั้งชื่อเบอร์ปาร์ตี้ด้วย เจมส์ วิลเลียม ทริมเบิล",
    "context": "CREATE TABLE table_1341930_5 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1341930_5 WHERE first_elected = 1944",
    "question_en": "What is the result for first elected in 1944",
    "question_th": "ผลการเลือกตั้งครั้งแรกในปี พ.ศ. 2487 เป็นอย่างไร",
    "context": "CREATE TABLE table_1341930_5 (result VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(party) FROM table_1341930_5 WHERE district = \"Arkansas 1\"",
    "question_en": "What is the number of party in the arkansas 1 district",
    "question_th": "งานปาร์ตี้ในเขตอาร์คันซอ 1 มีจำนวนเท่าไร",
    "context": "CREATE TABLE table_1341930_5 (party VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1341973_3 WHERE district = \"Alabama 6\"",
    "question_en": "Who is the incumbent in the Alabama 6 voting district?",
    "question_th": "ใครคือผู้ดำรงตำแหน่งในเขตลงคะแนนเสียงของแอละแบมา 6",
    "context": "CREATE TABLE table_1341973_3 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341973_3 WHERE incumbent = \"Frank W. Boykin\"",
    "question_en": "Which candidates were in the election where Frank W. Boykin was an incumbent?",
    "question_th": "ผู้สมัครคนใดที่อยู่ในการเลือกตั้งโดยที่ Frank W. Boykin ดำรงตำแหน่ง",
    "context": "CREATE TABLE table_1341973_3 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341973_3 WHERE incumbent = \"George M. Grant\"",
    "question_en": "Who were the candidates in the election where the incumbent is George M. Grant?",
    "question_th": "ใครคือผู้สมัครรับเลือกตั้งในการเลือกตั้งโดยที่ผู้ดำรงตำแหน่งคือจอร์จ เอ็ม. แกรนท์",
    "context": "CREATE TABLE table_1341973_3 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1341973_3 WHERE district = \"Alabama 6\"",
    "question_en": "Which candidates ran in the Alabama 6 district?",
    "question_th": "ผู้สมัครคนไหนที่ลงสมัครในเขตอลาบามา 6",
    "context": "CREATE TABLE table_1341973_3 (candidates VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT MAX(first_elected) FROM table_1341973_3 WHERE district = \"Alabama 4\"",
    "question_en": "What is the latest year listed with the Alabama 4 voting district?",
    "question_th": "ปีล่าสุดที่ระบุในเขตลงคะแนนเสียงของ Alabama 4 คือปีใด",
    "context": "CREATE TABLE table_1341973_3 (first_elected INTEGER, district VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1342013_12 WHERE incumbent = \"Fred E. Busbey\"",
    "question_en": "What was the result when incumbent Fred E. Busbey was elected?",
    "question_th": "อะไรคือผลลัพธ์เมื่อผู้ดำรงตำแหน่ง Fred E. Busbey ได้รับเลือก?",
    "context": "CREATE TABLE table_1342013_12 (result VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(result) FROM table_1342013_12 WHERE incumbent = \"Noah M. Mason\"",
    "question_en": "How many results are listed for the election where Noah M. Mason was elected?",
    "question_th": "มีผลลัพธ์กี่รายการสำหรับการเลือกตั้งที่โนอาห์ เอ็ม. เมสันได้รับเลือก",
    "context": "CREATE TABLE table_1342013_12 (result VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1342013_12 WHERE incumbent = \"Leo E. Allen\"",
    "question_en": "What was the result when Leo E. Allen was elected?",
    "question_th": "อะไรคือผลลัพธ์เมื่อลีโอ อี. อัลเลนได้รับเลือก?",
    "context": "CREATE TABLE table_1342013_12 (result VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1342013_10 WHERE first_elected = 1914",
    "question_en": "Which party had a person who has been in the seat since 1914?",
    "question_th": "พรรคใดมีบุคคลที่นั่งเก้าอี้มาตั้งแต่ปี พ.ศ. 2457?",
    "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_en": "Name all the candidates listed in the race where the incumbent is Prince Hulon Preston, Jr.",
    "question_th": "ระบุชื่อผู้สมัครทั้งหมดที่มีรายชื่อในการแข่งขันซึ่งผู้ดำรงตำแหน่งคือ 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_en": "How many candidates ran in the race where the incumbent is J. L. Pilcher?",
    "question_th": "มีผู้สมัครกี่คนที่ลงสมัครในการแข่งขันซึ่งมี JL 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_en": "John W. Heselton was first elected in what year?",
    "question_th": "John W. Heselton ได้รับเลือกครั้งแรกในปีใด",
    "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_en": "Thomas J. Lane is the incumbent of how many parties?",
    "question_th": "โทมัส เจ. เลน ดำรงตำแหน่งกี่ฝ่าย?",
    "context": "CREATE TABLE table_1342013_20 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1342013_20 WHERE first_elected = 1944",
    "question_en": "Who is the incumbent first elected in 1944?",
    "question_th": "ใครคือผู้ดำรงตำแหน่งที่ได้รับเลือกครั้งแรกในปี พ.ศ. 2487?",
    "context": "CREATE TABLE table_1342013_20 (incumbent VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1342013_20 WHERE first_elected = 1942",
    "question_en": "What was the result for the politician first elected in 1942?",
    "question_th": "ผลลัพธ์ของนักการเมืองที่ได้รับเลือกครั้งแรกในปี พ.ศ. 2485 คืออะไร?",
    "context": "CREATE TABLE table_1342013_20 (result VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1342013_34 WHERE district = \"Ohio 2\"",
    "question_en": "what's the result for district ohio 2",
    "question_th": "ผลของเขตโอไฮโอ 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_en": "who is the the incumbent with candidates being john m. vorys (r) 61.5% jacob f. myers (d) 38.5%",
    "question_th": "ซึ่งดำรงตำแหน่งโดยมีผู้สมัครคือ จอห์น ม. vorys (r) 61.5% จาคอบ เอฟ. ไมเออร์ (ง) 38.5%",
    "context": "CREATE TABLE table_1342013_34 (incumbent VARCHAR, candidates VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1342013_34 WHERE district = \"Ohio 2\"",
    "question_en": "who is the the incumbent with district being ohio 2",
    "question_th": "ซึ่งดำรงตำแหน่งเป็นเขตโอไฮโอ 2",
    "context": "CREATE TABLE table_1342013_34 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1342013_34 WHERE incumbent = \"William H. Ayres\"",
    "question_en": "what's the result with incumbent being william h. ayres",
    "question_th": "ผลลัพธ์ที่ได้เป็นวิลเลียม เอช. อายส์",
    "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_en": " how many party with candidates being john m. vorys (r) 61.5% jacob f. myers (d) 38.5%",
    "question_th": " มีกี่พรรคที่มีผู้สมัครเป็นจอห์น ม. vorys (r) 61.5% จาคอบ เอฟ. ไมเออร์ (ง) 38.5%",
    "context": "CREATE TABLE table_1342013_34 (party VARCHAR, candidates VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1342013_4 WHERE incumbent = \"Brooks Hays\"",
    "question_en": "what district is Brooks Hays in",
    "question_th": "บรูคส์ เฮย์ส อยู่เขตไหน",
    "context": "CREATE TABLE table_1342013_4 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1342013_42 WHERE incumbent = \"Omar Burleson\"",
    "question_en": "Omar Burleson was the incumbent in what district? ",
    "question_th": " Omar Burleson ดำรงตำแหน่งในเขตใด",
    "context": "CREATE TABLE table_1342013_42 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1342013_42 WHERE first_elected = 1938",
    "question_en": "In what district was incumbent first elected in 1938? ",
    "question_th": " ในเขตใดที่ได้รับการเลือกตั้งครั้งแรกในปี พ.ศ. 2481?",
    "context": "CREATE TABLE table_1342013_42 (district VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1342013_37 WHERE district = \"Pennsylvania 25\"",
    "question_en": "Name the party for the pennsylvania 25",
    "question_th": "ตั้งชื่อพรรคสำหรับเพนซิลเวเนีย 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_en": "Name the minumim first elected for alvin bush",
    "question_th": "ตั้งชื่อขั้นต่ำที่ได้รับเลือกเป็นอันดับแรกสำหรับอัลวิน บุช",
    "context": "CREATE TABLE table_1342013_37 (first_elected INTEGER, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1342013_37 WHERE district = \"Pennsylvania 15\"",
    "question_en": "What is the incumbent for pennsylvania 15",
    "question_th": "เพนซิลเวเนีย 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_en": "What are the candidates for noah m. mason?",
    "question_th": "ผู้สมัครชิงตำแหน่งโนอาห์ ม. คืออะไร เมสัน?",
    "context": "CREATE TABLE table_1342149_13 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1342149_13 WHERE incumbent = \"Fred E. Busbey\"",
    "question_en": "What is the candidates for fred e. busbey?",
    "question_th": "ผู้สมัครชิง fred e. คืออะไร บัสบี?",
    "context": "CREATE TABLE table_1342149_13 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1342149_13 WHERE first_elected = 1932",
    "question_en": "What is the incumbent for 1932?",
    "question_th": "ผู้ดำรงตำแหน่งในปี พ.ศ. 2475 คืออะไร?",
    "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_en": " how many first elected with incumbent being charles edward bennett",
    "question_th": " มีกี่คนที่ได้รับเลือกครั้งแรกโดยให้ชาร์ลส์ เอ็ดเวิร์ด เบนเน็ตต์เป็นผู้ดำรงตำแหน่ง",
    "context": "CREATE TABLE table_1342013_9 (first_elected VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1342013_9 WHERE district = \"Florida 2\"",
    "question_en": "who is the the incumbent with dbeingtrict being florida 2",
    "question_th": "ซึ่งดำรงตำแหน่งเดิมคือฟลอริดา 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_en": "what's the result with candidates being charles edward bennett (d) unopposed",
    "question_th": "ผลการที่ผู้สมัครคือชาร์ลส์ เอ็ดเวิร์ด เบนเน็ตต์ (d) ไม่มีการคัดค้านจะเป็นอย่างไร",
    "context": "CREATE TABLE table_1342013_9 (result VARCHAR, candidates VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1342013_9 WHERE district = \"Florida 4\"",
    "question_en": "what's the result with dbeingtrict being florida 4",
    "question_th": "ผลลัพธ์ที่ได้คือฟลอริดา 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_en": " how many party with candidates being charles edward bennett (d) unopposed",
    "question_th": " มีกี่พรรคที่มีผู้สมัครเป็นชาร์ลส์ เอ็ดเวิร์ด เบนเน็ตต์ (d) ที่ไม่ค้าน",
    "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_en": " how many first elected with incumbent being william c. lantaff",
    "question_th": " มีกี่คนที่ได้รับเลือกครั้งแรกโดยให้วิลเลียม ซี. ลันตาฟ",
    "context": "CREATE TABLE table_1342013_9 (first_elected VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1342149_11 WHERE incumbent = \"Tic Forrester\"",
    "question_en": "What was the result of the election when Tic Forrester ran as an incumbent?",
    "question_th": "ผลการเลือกตั้งเมื่อ Tic Forrester ลงรับตำแหน่งเป็นอย่างไร?",
    "context": "CREATE TABLE table_1342149_11 (result VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1342013_5 WHERE incumbent = \"Craig Hosmer\"",
    "question_en": "What was the final result for Craig Hosmer?",
    "question_th": "ผลลัพธ์สุดท้ายของ Craig Hosmer คืออะไร?",
    "context": "CREATE TABLE table_1342013_5 (result VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1342013_5 WHERE incumbent = \"Harlan Hagen\"",
    "question_en": "What district does Harlan Hagen represent?",
    "question_th": "Harlan Hagen เป็นตัวแทนของเขตใด",
    "context": "CREATE TABLE table_1342013_5 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1342149_18 WHERE district = \"Louisiana 2\"",
    "question_en": "Who was the candidate in the election in the Louisiana 2 district? ",
    "question_th": " ใครคือผู้สมัครรับเลือกตั้งในเขตหลุยเซียน่า 2?",
    "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_en": "What candidate was re-elected in the Louisiana 5 district? ",
    "question_th": " ผู้สมัครคนใดที่ได้รับเลือกอีกครั้งในเขตหลุยเซียน่า 5",
    "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_en": "What party's candidate was re-elected in the Louisiana 6 district?",
    "question_th": "ผู้สมัครของพรรคใดได้รับเลือกอีกครั้งในเขตหลุยเซียน่า 6",
    "context": "CREATE TABLE table_1342149_18 (party VARCHAR, result VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1342149_18 WHERE incumbent = \"Hale Boggs\"",
    "question_en": "What was the result in the election where Hale Boggs was the incumbent? ",
    "question_th": " ผลการเลือกตั้งที่เฮล บ็อกส์ดำรงตำแหน่งเป็นอย่างไร?",
    "context": "CREATE TABLE table_1342149_18 (result VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1342149_24 WHERE district = \"Mississippi 2\"",
    "question_en": "Name the result for mississippi 2",
    "question_th": "ตั้งชื่อผลลัพธ์สำหรับมิสซิสซิปปี้ 2",
    "context": "CREATE TABLE table_1342149_24 (result VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(candidates) FROM table_1342149_24 WHERE first_elected = 1941",
    "question_en": "Name the number of candidates for 1941",
    "question_th": "ระบุจำนวนผู้สมัคร พ.ศ. 2484",
    "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_en": "Name the candidates for result of lost renomination democratic loss",
    "question_th": "เสนอชื่อผู้สมัครรับผลแพ้การเลือกตั้งแพ้ทางประชาธิปไตย",
    "context": "CREATE TABLE table_1342149_24 (candidates VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1342149_24 WHERE first_elected = 1920",
    "question_en": "Name the result for first elected of 1920",
    "question_th": "ตั้งชื่อผลการเลือกตั้งครั้งแรกของปี 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_en": "In the District Tennessee 7 what is the number of first elected?",
    "question_th": "ในเขตเทนเนสซี 7 ผู้ได้รับเลือกครั้งแรกมีจำนวนเท่าใด",
    "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_en": "What is the candidates  result that is tom j. murray (d) unopposed?",
    "question_th": "ผลผู้สมัครคือทอม เจ. เมอร์เรย์ (d) ค้าน?",
    "context": "CREATE TABLE table_1342149_42 (result VARCHAR, candidates VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1342149_42 WHERE party = \"Republican\"",
    "question_en": "For the Republican party what are the names of the incumbents?",
    "question_th": "สำหรับพรรครีพับลิกัน ผู้ดำรงตำแหน่งชื่ออะไร?",
    "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_en": "How many parties match the canididates listed as howard baker, sr. (r) 68.9% boyd w. cox (d) 31.1%?",
    "question_th": "มีกี่ฝ่ายที่ตรงกับผู้สมัครที่ระบุว่าเป็น Howard Baker, Sr. (r) 68.9% บอยด์ ว. ค็อกซ์ (ง) 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_en": "Which district had Paul B. Dague as the incumbent?",
    "question_th": "เขตใดมี Paul B. Dague ดำรงตำแหน่ง?",
    "context": "CREATE TABLE table_1342149_38 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1342149_43 WHERE first_elected = \"1942\"",
    "question_en": "What was the result in the election where the incumbent was first elected in 1942? ",
    "question_th": " การเลือกตั้งผู้ดำรงตำแหน่งได้รับการเลือกตั้งครั้งแรกเมื่อปี พ.ศ. 2485 มีผลอย่างไร?",
    "context": "CREATE TABLE table_1342149_43 (result VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1342149_43 WHERE district = \"Texas 3\"",
    "question_en": "What was the result of the election in the Texas 3 district? ",
    "question_th": " ผลการเลือกตั้งในเขตเท็กซัส 3 เป็นอย่างไร?",
    "context": "CREATE TABLE table_1342149_43 (result VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1342149_43 WHERE incumbent = \"Wright Patman\"",
    "question_en": "What party did incumbent Wright Patman belong to? ",
    "question_th": " Wright Patman ผู้ดำรงตำแหน่งอยู่ในพรรคใด",
    "context": "CREATE TABLE table_1342149_43 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1342149_43 WHERE district = \"Texas 4\"",
    "question_en": "What was the result of the election in the Texas 4 district? ",
    "question_th": " ผลการเลือกตั้งในเขตเท็กซัส 4 เป็นอย่างไร?",
    "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_en": "What party did the re-elected incumbent of the Texas 11 district belong to?",
    "question_th": "ผู้ดำรงตำแหน่งเขตเท็กซัส 11 ที่ได้รับการเลือกตั้งใหม่เป็นของพรรคใด",
    "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_en": "List all those first elected in the California 22 voting district.",
    "question_th": "รายชื่อผู้ที่ได้รับเลือกครั้งแรกในเขตลงคะแนนเสียงของ California 22",
    "context": "CREATE TABLE table_1342149_6 (first_elected VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1342149_6 WHERE first_elected = \"1946\"",
    "question_en": "Who was the first elected incumbent in the 1946 election?",
    "question_th": "ใครคือผู้ดำรงตำแหน่งที่ได้รับการเลือกตั้งคนแรกในการเลือกตั้งปี พ.ศ. 2489?",
    "context": "CREATE TABLE table_1342149_6 (incumbent VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(result) FROM table_1342149_6 WHERE district = \"California 29\"",
    "question_en": "How many results does the California 29 voting district have?",
    "question_th": "เขตลงคะแนนเสียงของ California 29 มีผลลัพธ์กี่รายการ?",
    "context": "CREATE TABLE table_1342149_6 (result VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1342149_6 WHERE incumbent = \"Clair Engle\"",
    "question_en": "Which party had Clair Engle as an incumbent?",
    "question_th": "ฝ่ายใดมี Clair Engle ดำรงตำแหน่ง",
    "context": "CREATE TABLE table_1342149_6 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1342198_13 WHERE incumbent = \"Sid Simpson\"",
    "question_en": "What party does sid simpson represent?",
    "question_th": "ซิดซิมป์สันเป็นตัวแทนของพรรคใด?",
    "context": "CREATE TABLE table_1342198_13 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(candidates) FROM table_1342198_13 WHERE incumbent = \"Barratt O'Hara\"",
    "question_en": "How many candidates ran against barratt o'hara?",
    "question_th": "มีผู้สมัครกี่คนที่ลงสมัครแข่งขันกับบาร์รัตต์ โอฮารา",
    "context": "CREATE TABLE table_1342198_13 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT first_elected FROM table_1342198_13 WHERE incumbent = \"Barratt O'Hara\"",
    "question_en": "What year was incumbent barratt o'hara first elected?",
    "question_th": "Barratt O'hara ผู้ดำรงตำแหน่งได้รับเลือกครั้งแรกในปีใด",
    "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_en": "How many results for minimum first elected incumbent Noble Jones Gregory?",
    "question_th": "มีผลลัพธ์กี่รายการสำหรับ 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_en": "How many results for incumbent Noble Jones Gregory?",
    "question_th": "มีผลลัพธ์กี่รายการสำหรับผู้ดำรงตำแหน่ง 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_en": "Who is the candidate wehre district is louisiana 1?",
    "question_th": "ใครคือผู้สมัครในเขตหลุยเซียน่า 1?",
    "context": "CREATE TABLE table_1342198_18 (candidates VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1342198_18 WHERE incumbent = \"Overton Brooks\"",
    "question_en": "What is the party where the incumbent is overton brooks?",
    "question_th": "งานปาร์ตี้ที่ผู้ดำรงตำแหน่งโอเวอร์ตันบรูคส์คืออะไร?",
    "context": "CREATE TABLE table_1342198_18 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1342198_18 WHERE district = \"Louisiana 2\"",
    "question_en": "who athe party where district is louisiana 2?",
    "question_th": "ใครเป็นปาร์ตี้ ที่ไหนคือเขตหลุยเซียน่า 2?",
    "context": "CREATE TABLE table_1342198_18 (party VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1342198_18 WHERE district = \"Louisiana 3\"",
    "question_en": "who is the candidate where district is louisiana 3?",
    "question_th": "ใครคือผู้สมัครโดยเขตคือหลุยเซียน่า 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_en": "what is the minimum number first elected to district louisiana 5?",
    "question_th": "จำนวนขั้นต่ำที่ได้รับเลือกเป็นเขต 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_en": "What was the result when incumbent Tom Steed was elected?",
    "question_th": "ผลลัพธ์คืออะไรเมื่อผู้ดำรงตำแหน่ง Tom Steed ได้รับเลือก?",
    "context": "CREATE TABLE table_1342198_36 (result VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1342198_38 WHERE incumbent = \"Hardie Scott\"",
    "question_en": "What was the candidates for hardie scott",
    "question_th": "ผู้เข้าชิงรางวัล 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_en": "What is the number of candidates for pennsylvania 3",
    "question_th": "จำนวนผู้สมัครสำหรับเพนซิลเวเนีย 3 คือเท่าใด",
    "context": "CREATE TABLE table_1342198_38 (candidates VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(candidates) FROM table_1342198_38 WHERE district = \"Pennsylvania 21\"",
    "question_en": "What is the number of candidates for pennsylvania 21",
    "question_th": "จำนวนผู้สมัครสำหรับเพนซิลเวเนีย 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_en": "What is the party for first elected 1948 for william t. granahan",
    "question_th": "พรรคใดที่ได้รับเลือกครั้งแรกในปี 1948 สำหรับวิลเลียม ที. กรานาฮาน",
    "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_en": "How many candidates were there in the race where Cecil R. King is the incumbent?",
    "question_th": "มีผู้สมัครกี่คนในการแข่งขันที่ Cecil R. King ดำรงตำแหน่ง",
    "context": "CREATE TABLE table_1342198_6 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(district) FROM table_1342198_6 WHERE first_elected = 1944",
    "question_en": "How many districts have an incumbent first elected in 1944?",
    "question_th": "มีกี่เขตที่มีผู้ดำรงตำแหน่งที่ได้รับการเลือกตั้งครั้งแรกในปี พ.ศ. 2487",
    "context": "CREATE TABLE table_1342198_6 (district VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1342218_13 WHERE district = \"Illinois 17\"",
    "question_en": "Who was the incumbent in the Illinois 17 district?",
    "question_th": "ใครเป็นผู้ดำรงตำแหน่งในเขตอิลลินอยส์ 17",
    "context": "CREATE TABLE table_1342218_13 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(candidates) FROM table_1342218_24 WHERE incumbent = \"Thomas Abernethy\"",
    "question_en": "How many people on this list are named thomas abernethy?",
    "question_th": "มีกี่คนที่ชื่อโทมัส อเบอร์เนธีในรายชื่อนี้",
    "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_en": "How many times was w. arthur winstead first elected?",
    "question_th": "กี่ครั้งแล้วที่w. อาเธอร์ วินสตีดได้รับเลือกครั้งแรก?",
    "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_en": "How many times was william m. colmer winstead first elected?",
    "question_th": "วิลเลียม ม. กี่ครั้งแล้ว โคลเมอร์ วินสตีดได้รับเลือกครั้งแรก?",
    "context": "CREATE TABLE table_1342218_24 (first_elected VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1342218_24 WHERE incumbent = \"Jamie L. Whitten\"",
    "question_en": "What was the result of the election with jamie l. whitten?",
    "question_th": "ผลการเลือกตั้งกับเจมี่ แอล. ขาวขึ้น?",
    "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_en": "What candidate was re-elected and was first elected in 1942? ",
    "question_th": " ผู้สมัครคนใดที่ได้รับเลือกอีกครั้งและได้รับเลือกครั้งแรกในปี พ.ศ. 2485",
    "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_en": "Who are the candidates in the election in the Ohio 9 district? ",
    "question_th": " ใครคือผู้สมัครรับเลือกตั้งในเขตโอไฮโอ 9",
    "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_en": "What year was incumbent Michael A. Feighan first elected? ",
    "question_th": " Michael A. Feighan ผู้ดำรงตำแหน่งดำรงตำแหน่งได้รับเลือกครั้งแรกในปีใด",
    "context": "CREATE TABLE table_1342218_35 (first_elected INTEGER, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1342218_35 WHERE district = \"Ohio 5\"",
    "question_en": "What party does the incumbent from the Ohio 5 district belong to? ",
    "question_th": " ผู้ดำรงตำแหน่งจากเขตโอไฮโอ 5 เป็นสมาชิกพรรคใด",
    "context": "CREATE TABLE table_1342218_35 (party VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1342218_35 WHERE district = \"Ohio 20\"",
    "question_en": "What party does the incumbent from the Ohio 20 district belong to? ",
    "question_th": " ผู้ดำรงตำแหน่งจากเขตโอไฮโอ 20 เป็นสมาชิกพรรคใด",
    "context": "CREATE TABLE table_1342218_35 (party VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1342218_35 WHERE district = \"Ohio 7\"",
    "question_en": "What party does the incumbent from the Ohio 7 district belong to? ",
    "question_th": " ผู้ดำรงตำแหน่งจากเขตโอไฮโอ 7 เป็นสมาชิกพรรคใด",
    "context": "CREATE TABLE table_1342218_35 (party VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1342218_5 WHERE district = \"Arkansas 2\"",
    "question_en": "Who is the candidate for the district Arkansas 2?",
    "question_th": "ใครคือผู้สมัครในเขตอาร์คันซอ 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_en": "Which district has the incumbent Wilbur Mills and a re-elected result?",
    "question_th": "เขตใดมีผู้ดำรงตำแหน่งวิลเบอร์ มิลส์และผลการเลือกตั้งใหม่",
    "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_en": "What year was first-elected for the row of Texas 2?",
    "question_th": "ปีใดที่ได้รับเลือกครั้งแรกสำหรับแถว 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_en": "What was the result for the incumbent Milton H. West?",
    "question_th": "ผลลัพธ์ของผู้ดำรงตำแหน่งมิลตัน เอช. เวสต์คืออะไร?",
    "context": "CREATE TABLE table_1342218_43 (result VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1342218_43 WHERE district = \"Texas 2\"",
    "question_en": "What party is associated with Texas 2?",
    "question_th": "ฝ่ายใดที่เกี่ยวข้องกับ 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_en": "When the result is retired to run for U.S. Senate Democratic Hold, who is the candidate?",
    "question_th": "เมื่อประกาศผลออกจากตำแหน่งเพื่อลงสมัครชิงตำแหน่ง เดโมแครต โฮลด์ วุฒิสภาสหรัฐฯ แล้ว ใครคือผู้สมัคร?",
    "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_en": "What candidate has a result of being re-elected in the Texas 7 District?",
    "question_th": "ผู้สมัครคนใดที่เป็นผลมาจากการเลือกตั้งอีกครั้งในเขตเท็กซัส 7",
    "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_en": "Which party is associated with the candidate Albert Sidney Camp (D) unopposed?",
    "question_th": "ฝ่ายใดที่เกี่ยวข้องกับผู้สมัคร Albert Sidney Camp (D) ค้าน?",
    "context": "CREATE TABLE table_1342233_11 (party VARCHAR, candidates VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1342233_11 WHERE incumbent = \"Carl Vinson\"",
    "question_en": "Which district is associated with the incumbent Carl Vinson?",
    "question_th": "เขตใดมีความเกี่ยวข้องกับผู้ดำรงตำแหน่งคาร์ล วินสัน",
    "context": "CREATE TABLE table_1342233_11 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1342233_11 WHERE district = \"Georgia 7\"",
    "question_en": "Which candidates are associated with the Georgia 7 district?",
    "question_th": "ผู้สมัครคนใดที่เกี่ยวข้องกับเขตจอร์เจีย 7",
    "context": "CREATE TABLE table_1342233_11 (candidates VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1342233_11 WHERE district = \"Georgia 4\"",
    "question_en": "What candidate is associated with the Georgia 4 district?",
    "question_th": "ผู้สมัครคนใดที่เกี่ยวข้องกับเขตจอร์เจีย 4",
    "context": "CREATE TABLE table_1342233_11 (candidates VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT first_elected FROM table_1342233_17 WHERE incumbent = \"Joe B. Bates\"",
    "question_en": "What year was incumbent joe b. bates first elected?",
    "question_th": "โจบีดำรงตำแหน่งปีไหน เบตส์ได้รับเลือกครั้งแรก?",
    "context": "CREATE TABLE table_1342233_17 (first_elected VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1342233_17 WHERE incumbent = \"Virgil Chapman\"",
    "question_en": "What party is incumbent virgil chapman from?",
    "question_th": "เวอร์จิล แชปแมน มาจากพรรคใด",
    "context": "CREATE TABLE table_1342233_17 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT first_elected FROM table_1342218_6 WHERE incumbent = \"Clair Engle\"",
    "question_en": "What year was clair engle first elected?",
    "question_th": "แคลร์ เองเกิลได้รับเลือกครั้งแรกในปีใด",
    "context": "CREATE TABLE table_1342218_6 (first_elected VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1342218_6 WHERE first_elected = 1943",
    "question_en": "what is the result of the first elected is 1943?",
    "question_th": "ผลการเลือกตั้งครั้งแรกคือปี 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_en": "what the the end number where albert rains was running",
    "question_th": "เลขท้ายที่อัลเบิร์ต เรนกำลังวิ่งอยู่คือเท่าไร",
    "context": "CREATE TABLE table_1342233_3 (result VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1342233_3 WHERE incumbent = \"Frank W. Boykin\"",
    "question_en": "what the was the final in which frank w. boykin was running",
    "question_th": "อะไรคือครั้งสุดท้ายที่แฟรงก์ ดับเบิลยู. บอยคินกำลังวิ่งอยู่",
    "context": "CREATE TABLE table_1342233_3 (result VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(first_elected) FROM table_1342233_32 WHERE incumbent = \"Sol Bloom\"",
    "question_en": "Name the total number of first elected for sol bloom",
    "question_th": "ตั้งชื่อจำนวนรวมของผู้ที่ได้รับเลือกเป็นคนแรกสำหรับซอลบลูม",
    "context": "CREATE TABLE table_1342233_32 (first_elected VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1342233_32 WHERE incumbent = \"Ellsworth B. Buck\"",
    "question_en": "Name the candidates for ellsworth b. buck",
    "question_th": "ตั้งชื่อผู้สมัครสำหรับ ellsworth b. เจ้าชู้",
    "context": "CREATE TABLE table_1342233_32 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1342233_32 WHERE district = \"New York 35\"",
    "question_en": "What are the candidates for new york 35?",
    "question_th": "ผู้สมัครชิง 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_en": "What is the party for new york 20?",
    "question_th": "ปาร์ตี้สำหรับ 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_en": "What was the result of the election featuring r. ewing thomason (d) unopposed?",
    "question_th": "ผลการเลือกตั้งที่มีร. Ewing Thomason (d) ค้าน?",
    "context": "CREATE TABLE table_1342233_43 (result VARCHAR, candidates VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1342233_43 WHERE incumbent = \"Eugene Worley\"",
    "question_en": "What district is eugene worley from?",
    "question_th": "ยูจีน วอร์ลีย์ มาจากเขตไหน?",
    "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_en": " how many result with candidates being richard j. welch (r) unopposed",
    "question_th": " ผลลัพธ์มีผู้สมัครกี่คนคือ Richard J. welch (r) ค้าน",
    "context": "CREATE TABLE table_1342233_6 (result VARCHAR, candidates VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1342233_6 WHERE incumbent = \"Jack Z. Anderson\"",
    "question_en": "what's the result with incumbent being jack z. anderson",
    "question_th": "ผลลัพธ์ที่ได้เป็นแจ็ค z คืออะไร แอนเดอร์สัน",
    "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_en": "what's the district with result being re-elected and candidates being clarence f. lea (d) unopposed",
    "question_th": "เขตที่มีผลการเลือกตั้งใหม่คืออะไร และผู้สมัครคือคลาเรนซ์ f lea (d) ค้าน",
    "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_en": "what's the first elected with incumbent being clair engle",
    "question_th": "คนแรกที่ได้รับเลือกโดยดำรงตำแหน่งคือแคลร์ เองเกิล",
    "context": "CREATE TABLE table_1342233_6 (first_elected VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1342233_6 WHERE incumbent = \"Alfred J. Elliott\"",
    "question_en": "who is the the candidates with incumbent being alfred j. elliott",
    "question_th": "ซึ่งเป็นผู้สมัครซึ่งมีผู้ดำรงตำแหน่งคือ อัลเฟรด เจ. เอลเลียต",
    "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_en": "who is the the incumbent with candidates being jack z. anderson (r) unopposed",
    "question_th": "ซึ่งดำรงตำแหน่งโดยมีผู้สมัครเป็นแจ็คซี แอนเดอร์สัน (ขวา) ค้าน",
    "context": "CREATE TABLE table_1342233_6 (incumbent VARCHAR, candidates VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(party) FROM table_1342249_11 WHERE incumbent = \"Carl Vinson\"",
    "question_en": "How many parties does incumbent carl vinson represent?",
    "question_th": "คาร์ล วินสัน ซึ่งดำรงตำแหน่งอยู่มีกี่พรรค?",
    "context": "CREATE TABLE table_1342249_11 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(party) FROM table_1342249_11 WHERE incumbent = \"Stephen Pace\"",
    "question_en": "How many parties does incumbent stephen pace represent?",
    "question_th": "Stephen Pace ผู้ดำรงตำแหน่งดำรงตำแหน่งมีกี่ฝ่าย?",
    "context": "CREATE TABLE table_1342249_11 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1342249_13 WHERE incumbent = \"Noah M. Mason\"",
    "question_en": "Who were the candidates when Noah M. Mason was incumbent?",
    "question_th": "ใครคือผู้สมัครเมื่อ Noah M. Mason ดำรงตำแหน่ง",
    "context": "CREATE TABLE table_1342249_13 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT first_elected FROM table_1342249_13 WHERE incumbent = \"Leo E. Allen\"",
    "question_en": "In what year was Leo E. Allen first elected?",
    "question_th": "ลีโอ อี. อัลเลนได้รับเลือกครั้งแรกในปีใด",
    "context": "CREATE TABLE table_1342249_13 (first_elected VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1342249_13 WHERE incumbent = \"Sid Simpson\"",
    "question_en": "Who were the candidates when Sid Simpson was the incumbent?",
    "question_th": "ใครคือผู้สมัครเมื่อซิดซิมป์สันดำรงตำแหน่ง?",
    "context": "CREATE TABLE table_1342249_13 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1342256_10 WHERE incumbent = \"Robert L. F. Sikes\"",
    "question_en": "What was the result of Robert L. F. Sikes' election bid?",
    "question_th": "ผลการประมูลการเลือกตั้งของ Robert LF Sikes คืออะไร?",
    "context": "CREATE TABLE table_1342256_10 (result VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(district) FROM table_1342256_10 WHERE first_elected = 1940",
    "question_en": "How many districts have an incumbent first elected in 1940?",
    "question_th": "มีกี่เขตที่มีผู้ดำรงตำแหน่งที่ได้รับการเลือกตั้งครั้งแรกในปี พ.ศ. 2483",
    "context": "CREATE TABLE table_1342256_10 (district VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(result) FROM table_1342256_10 WHERE incumbent = \"Pat Cannon\"",
    "question_en": "How many races involve incumbent Pat Cannon?",
    "question_th": "มีกี่เชื้อชาติที่เกี่ยวข้องกับผู้ดำรงตำแหน่ง Pat Cannon?",
    "context": "CREATE TABLE table_1342256_10 (result VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1342256_10 WHERE first_elected = 1940",
    "question_en": "Which incumbent was first elected in 1940?",
    "question_th": "ผู้ดำรงตำแหน่งใดได้รับเลือกครั้งแรกในปี พ.ศ. 2483",
    "context": "CREATE TABLE table_1342256_10 (incumbent VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT first_elected FROM table_1342249_35 WHERE district = \"Ohio 18\"",
    "question_en": "What is the first electedfor district ohio 18",
    "question_th": "อะไรคือการเลือกตั้งครั้งแรกสำหรับเขตโอไฮโอ 18",
    "context": "CREATE TABLE table_1342249_35 (first_elected VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1342249_35 WHERE district = \"Ohio 12\"",
    "question_en": "What is the incumbent for ohio 12?",
    "question_th": "หน้าที่ของโอไฮโอ 12 คืออะไร?",
    "context": "CREATE TABLE table_1342249_35 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1342256_18 WHERE incumbent = \"James R. Domengeaux\"",
    "question_en": "Who are all of the candidates in the election featuring james r. domengeaux?",
    "question_th": "ใครคือผู้สมัครชิงตำแหน่งที่มีเจมส์ อาร์. โดเมนโกซ์?",
    "context": "CREATE TABLE table_1342256_18 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1342256_33 WHERE incumbent = \"Harold D. Cooley\"",
    "question_en": "Name all the candidates that ran for the seat where Harold D. Cooley is the incumbent?",
    "question_th": "ระบุชื่อผู้สมัครทั้งหมดที่ลงสมัครชิงที่นั่งโดยที่ Harold D. Cooley ดำรงตำแหน่งหรือไม่?",
    "context": "CREATE TABLE table_1342256_33 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(party) FROM table_1342256_33 WHERE first_elected = 1923",
    "question_en": "How many partys have a candidate first elected in 1923?",
    "question_th": "มีพรรคการเมืองกี่พรรคที่ได้รับการเลือกตั้งครั้งแรกในปี พ.ศ. 2466?",
    "context": "CREATE TABLE table_1342256_33 (party VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(candidates) FROM table_1342256_38 WHERE incumbent = \"Leon Sacks\"",
    "question_en": "what was the number of candidates when Leon Sacks was incumbent?",
    "question_th": "เมื่อ Leon Sacks ดำรงตำแหน่งมีผู้สมัครจำนวนเท่าใด",
    "context": "CREATE TABLE table_1342256_38 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1342256_38 WHERE district = \"Pennsylvania 13\"",
    "question_en": "What was the result in Pennsylvania 13?",
    "question_th": "ผลลัพธ์ในเพนซิลเวเนีย 13 คืออะไร?",
    "context": "CREATE TABLE table_1342256_38 (result VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1342256_38 WHERE district = \"Pennsylvania 27\"",
    "question_en": "Who was the incumbent in Pennsylvania 27?",
    "question_th": "ใครเป็นผู้ดำรงตำแหน่งในเพนซิลเวเนีย 27?",
    "context": "CREATE TABLE table_1342256_38 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1342256_32 WHERE district = \"New York 19\"",
    "question_en": "Who are the contenders In the New York 19 polling area race?",
    "question_th": "ใครคือผู้เข้าแข่งขันในการแข่งขันเขตเลือกตั้งที่นิวยอร์ก 19?",
    "context": "CREATE TABLE table_1342256_32 (candidates VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(district) FROM table_1342256_32 WHERE incumbent = \"John Taber\"",
    "question_en": "How many polling areas are there with John Taber as the sitting Representative?",
    "question_th": "มีพื้นที่เลือกตั้งจำนวนกี่แห่งที่มี John Taber เป็นตัวแทนนั่ง",
    "context": "CREATE TABLE table_1342256_32 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1342256_32 WHERE district = \"New York 29\"",
    "question_en": "Who are the contenders In the New York 29 polling area race?",
    "question_th": "ใครคือผู้เข้าแข่งขันในการแข่งขันเขตเลือกตั้ง New York 29?",
    "context": "CREATE TABLE table_1342256_32 (candidates VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1342256_32 WHERE incumbent = \"John J. Delaney\"",
    "question_en": "Which political party is involved where John J. Delaney is the sitting Representative?",
    "question_th": "พรรคการเมืองใดที่เกี่ยวข้องโดยที่ John J. Delaney ดำรงตำแหน่งผู้แทน?",
    "context": "CREATE TABLE table_1342256_32 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1342256_32 WHERE district = \"New York 10\"",
    "question_en": "Who is the sitting Representative In the New York 10 polling area race?",
    "question_th": "ใครคือตัวแทนที่นั่งในการแข่งขันเขตเลือกตั้ง 10 แห่งของนิวยอร์ก?",
    "context": "CREATE TABLE table_1342256_32 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(incumbent) FROM table_1342256_32 WHERE district = \"New York 10\"",
    "question_en": "How many sitting Representatives are there in the New York 10 polling area?",
    "question_th": "มีผู้แทนนั่งกี่คนในเขตเลือกตั้ง 10 แห่งของนิวยอร์ก",
    "context": "CREATE TABLE table_1342256_32 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1342256_40 WHERE incumbent = \"James P. Richards\"",
    "question_en": "What is the district for james p. richards?",
    "question_th": "เจมส์พี.อยู่เขตไหนครับ.. ริชาร์ด?",
    "context": "CREATE TABLE table_1342256_40 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1342256_40 WHERE district = \"South Carolina 4\"",
    "question_en": "What is the candidate for south carolina 4?",
    "question_th": "ผู้สมัครชิงเซาท์แคโรไลนา 4 คืออะไร?",
    "context": "CREATE TABLE table_1342256_40 (candidates VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1342256_40 WHERE district = \"South Carolina 3\"",
    "question_en": "What is the candidate for south carolina 3?",
    "question_th": "ผู้สมัครชิง 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_en": "What is the first elected for south carolina 4?",
    "question_th": "การเลือกตั้งครั้งแรกสำหรับเซาท์แคโรไลนา 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_en": "How many candidates were in the election featuring brooks hays (d) unopposed?",
    "question_th": "มีผู้สมัครกี่คนในการเลือกตั้งที่มีบรูคส์ เฮย์ส (d) ค้าน?",
    "context": "CREATE TABLE table_1342256_5 (first_elected VARCHAR, candidates VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1342256_5 WHERE incumbent = \"Clyde T. Ellis\"",
    "question_en": "What party does clyde t. ellis represent?",
    "question_th": "ไคลด์ทีเป็นฝ่ายไหน เอลลิสเป็นตัวแทนเหรอ?",
    "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_en": " how many party with candidates being john j. phillips (r) 57.6% n. e. west (d) 42.4%",
    "question_th": " มีกี่ฝ่ายที่มีผู้สมัครเป็น john j. ฟิลลิปส์ (r) 57.6% ตะวันออกเฉียงเหนือ (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_en": "what's the result with dbeingtrict being california 10",
    "question_th": "ผลลัพธ์ที่ได้คือแคลิฟอร์เนีย 10 คืออะไร",
    "context": "CREATE TABLE table_1342256_6 (result VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1342256_6 WHERE first_elected = \"1926\"",
    "question_en": "what's the party with first elected being 1926",
    "question_th": "พรรคอะไรที่ได้รับเลือกครั้งแรกคือปี 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_en": "what's the incumbent with result being new seat republican gain",
    "question_th": "หน้าที่ที่ส่งผลให้ได้รับที่นั่งใหม่ของพรรครีพับลิกันคืออะไร",
    "context": "CREATE TABLE table_1342256_6 (incumbent VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT MAX(first_elected) FROM table_1342270_24",
    "question_en": "what was the maxiumum for the first elected?",
    "question_th": "สูงสุดสำหรับผู้ได้รับเลือกครั้งแรกคือเท่าไร?",
    "context": "CREATE TABLE table_1342270_24 (first_elected INTEGER)"
  },
  {
    "answer": "SELECT first_elected FROM table_1342270_3 WHERE incumbent = \"Joe Starnes\"",
    "question_en": "what's the first elected with incumbent being joe starnes",
    "question_th": "คนแรกที่ได้รับเลือกให้ดำรงตำแหน่งคือ โจ สตาร์นส์",
    "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_en": "what's the first elected with candidates being joe starnes (d) 100.0% george bogus ( w/i ) 0.003%",
    "question_th": "อะไรคือผู้ที่ได้รับเลือกเป็นคนแรกโดยที่ผู้สมัครคือ 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_en": " how many party with dbeingtrict being alabama 6",
    "question_th": " มีปาร์ตี้กี่คนที่เป็นอลาบามา 6",
    "context": "CREATE TABLE table_1342270_3 (party VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1342270_3 WHERE incumbent = \"Sam Hobbs\"",
    "question_en": "what are all the district with incumbent being sam hobbs",
    "question_th": "เขตทั้งหมดที่มีหน้าที่เป็นแซม ฮอบส์มีอะไรบ้าง",
    "context": "CREATE TABLE table_1342270_3 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1342270_3 WHERE district = \"Alabama 1\"",
    "question_en": "what are all the result with district being alabama 1",
    "question_th": "ผลลัพธ์ทั้งหมดที่เขตเป็นอลาบามา 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_en": "what is the maximum first elected with district being alabama 5",
    "question_th": "จำนวนสูงสุดที่ได้รับเลือกครั้งแรกโดยเขตคืออลาบามา 5 คือเท่าใด",
    "context": "CREATE TABLE table_1342270_3 (first_elected INTEGER, district VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1342270_42 WHERE district = \"Tennessee 6\"",
    "question_en": "What was the result in the Tennessee 6 district election?",
    "question_th": "ผลการเลือกตั้งเขตเทนเนสซี 6 เป็นอย่างไร",
    "context": "CREATE TABLE table_1342270_42 (result VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(district) FROM table_1342270_42 WHERE incumbent = \"Estes Kefauver\"",
    "question_en": "In how many districts was the incumbent Estes Kefauver? ",
    "question_th": " ผู้ดำรงตำแหน่ง Estes Kefauver อยู่ในกี่เขต?",
    "context": "CREATE TABLE table_1342270_42 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT MAX(first_elected) FROM table_1342270_42",
    "question_en": "What is the latest year any of the incumbents were first elected? ",
    "question_th": " ผู้ดำรงตำแหน่งคนใดได้รับเลือกครั้งแรกในปีล่าสุดคือปีใด",
    "context": "CREATE TABLE table_1342270_42 (first_elected INTEGER)"
  },
  {
    "answer": "SELECT result FROM table_1342270_42 WHERE district = \"Tennessee 2\"",
    "question_en": "What was the result of the Tennessee 2 district election? ",
    "question_th": " การเลือกตั้งเขตเทนเนสซี 2 มีผลอย่างไร?",
    "context": "CREATE TABLE table_1342270_42 (result VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1342292_17 WHERE incumbent = \"Robert L. Mouton\"",
    "question_en": "What district is incumbent robert l. mouton from?",
    "question_th": "โรเบิร์ต แอล. ดำรงตำแหน่งเขตใด มูตอนจาก?",
    "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_en": "William Fadjo Cravens is the only candidate who was first elected in 1939.",
    "question_th": "William Fadjo Cravens เป็นผู้สมัครเพียงคนเดียวที่ได้รับเลือกครั้งแรกในปี 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_en": "William Fadjo Cravens serves the fourth district of Arkansas.",
    "question_th": "William Fadjo Cravens ให้บริการในเขตที่สี่ของรัฐอาร์คันซอ",
    "context": "CREATE TABLE table_1342270_5 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1342292_2 WHERE district = \"Alabama 3\"",
    "question_en": "what's the party with district being alabama 3",
    "question_th": "งานปาร์ตี้ที่เขตเป็นอลาบามา 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_en": "what's the incumbent with candidates being sam hobbs (d) 88.2% c. w. mckay (r) 11.8%",
    "question_th": "หน้าที่ของผู้สมัครคือ แซม ฮอบส์ (d) 88.2% cw 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_en": "what's the party with incumbent being john sparkman",
    "question_th": "ฝ่ายที่ดำรงตำแหน่งคือจอห์น สปาร์คแมนเป็นยังไงบ้าง",
    "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_en": " how many dbeingtrict with candidates being william b. bankhead (d) 71.3% e. m. reed (r) 28.7%",
    "question_th": " มีผู้สมัครกี่คนคือวิลเลียม บี หัวธนาคาร (d) 71.3% em กก (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_en": "what's the party with incumbent being william b. bankhead",
    "question_th": "ฝ่ายที่ดำรงตำแหน่งคือวิลเลียม บี เป็นยังไงบ้าง หัวธนาคาร",
    "context": "CREATE TABLE table_1342292_2 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1342292_2 WHERE first_elected = 1938",
    "question_en": "what's the district  with first elected being 1938",
    "question_th": "เขตที่ได้รับเลือกครั้งแรกคือปี 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_en": "How many incumbents were first elected in 1930?",
    "question_th": "มีผู้ดำรงตำแหน่งกี่คนที่ได้รับการเลือกตั้งครั้งแรกในปี พ.ศ. 2473",
    "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_en": "In how many districts is the incumbent Dave E. Satterfield, Jr.",
    "question_th": "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_en": "What was the election result for the candidate first elected in 1918?",
    "question_th": "ผลการเลือกตั้งของผู้สมัครที่ได้รับเลือกครั้งแรกในปี พ.ศ. 2461 เป็นอย่างไร?",
    "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_en": "How many parties does william b. cravens represent?",
    "question_th": "วิลเลียม บี มีกี่ฝ่าย ขี้ขลาดเป็นตัวแทน?",
    "context": "CREATE TABLE table_1342292_4 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1342292_4 WHERE first_elected = 1932",
    "question_en": "What district had someone first elected in 1932?",
    "question_th": "เขตใดมีคนได้รับเลือกครั้งแรกในปี พ.ศ. 2475",
    "context": "CREATE TABLE table_1342292_4 (district VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1342292_4 WHERE incumbent = \"William J. Driver\"",
    "question_en": "What candidates ran in the election when the incumbent was william j. driver?",
    "question_th": "ผู้สมัครคนใดที่ลงสมัครรับเลือกตั้งเมื่อผู้ดำรงตำแหน่งคือวิลเลียม เจ. คนขับ?",
    "context": "CREATE TABLE table_1342292_4 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1342292_42 WHERE incumbent = \"Sam Rayburn\"",
    "question_en": "Who are all the candidates when Sam Rayburn was incumbent?",
    "question_th": "ใครคือผู้สมัครทั้งหมดเมื่อแซม เรย์เบิร์นดำรงตำแหน่ง?",
    "context": "CREATE TABLE table_1342292_42 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1342292_42 WHERE first_elected = 1919",
    "question_en": "What was the party that was frist elected in 1919?",
    "question_th": "พรรคที่ได้รับเลือกครั้งแรกในปี พ.ศ. 2462 คืออะไร?",
    "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_en": "When was incumbent Leo E. Allen first elected?",
    "question_th": "ลีโอ อี. อัลเลนได้รับเลือกครั้งแรกเมื่อใด",
    "context": "CREATE TABLE table_1342315_12 (first_elected INTEGER, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1342315_12 WHERE party = \"Republican\"",
    "question_en": "Which district has a Republican elected?",
    "question_th": "เขตใดมีการเลือกตั้งจากพรรครีพับลิกัน?",
    "context": "CREATE TABLE table_1342315_12 (district VARCHAR, party VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(district) FROM table_1342315_17 WHERE incumbent = \"Riley Joseph Wilson\"",
    "question_en": "How many districts does riley joseph wilson?",
    "question_th": "ไรลีย์ โจเซฟ วิลสันมีกี่เขต",
    "context": "CREATE TABLE table_1342315_17 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(district) FROM table_1342315_17 WHERE incumbent = \"René L. DeRouen\"",
    "question_en": "How many districts for rené l. derouen?",
    "question_th": "เรอเน่ ล. มีกี่เขต เดรูเอน?",
    "context": "CREATE TABLE table_1342315_17 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1342315_42 WHERE incumbent = \"Wright Patman\"",
    "question_en": "Who are the candidates in the race where Wright Patman is the incumbent?",
    "question_th": "ใครคือผู้สมัครในการแข่งขันที่ Wright Patman ดำรงตำแหน่ง?",
    "context": "CREATE TABLE table_1342315_42 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1342331_11 WHERE incumbent = \"John S. Wood\"",
    "question_en": "What candidates ran in the election when john s. wood was the incumbent?",
    "question_th": "ผู้สมัครคนไหนลงสมัครรับเลือกตั้งเมื่อจอห์น ส. ไม้เป็นผู้ดำรงตำแหน่ง?",
    "context": "CREATE TABLE table_1342331_11 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1342331_11 WHERE first_elected = 1914",
    "question_en": "What was the result of the election held in 1914?",
    "question_th": "การเลือกตั้งในปี พ.ศ. 2457 มีผลอย่างไร?",
    "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_en": "How many first elections have Claude Fuller as incumbent?",
    "question_th": "การเลือกตั้งครั้งแรกมีกี่ครั้งที่ Claude Fuller ดำรงตำแหน่ง?",
    "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_en": "How many winners were there in the Georgia 1 district?",
    "question_th": "มีผู้ชนะกี่คนในเขตจอร์เจีย 1",
    "context": "CREATE TABLE table_1342315_10 (first_elected VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1342315_10 WHERE district = \"Georgia 4\"",
    "question_en": "Who ran for office at the Georgia 4 district in this election?",
    "question_th": "ใครลงสมัครรับตำแหน่งที่เขตจอร์เจีย 4 ในการเลือกตั้งครั้งนี้",
    "context": "CREATE TABLE table_1342315_10 (candidates VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1342331_18 WHERE incumbent = \"Riley Joseph Wilson\"",
    "question_en": "What district has Riley Joseph Wilson as the incumbent?",
    "question_th": "เขตใดมีไรลีย์ โจเซฟ วิลสันดำรงตำแหน่ง?",
    "context": "CREATE TABLE table_1342331_18 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1342331_18 WHERE district = \"Louisiana 6\"",
    "question_en": "What candidate is in Louisiana 6?",
    "question_th": "ผู้สมัครคนใดอยู่ในหลุยเซียน่า 6?",
    "context": "CREATE TABLE table_1342331_18 (candidates VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1342331_43 WHERE incumbent = \"Richard M. Kleberg\"",
    "question_en": "what happened during the election for Richard M. Kleberg?",
    "question_th": "เกิดอะไรขึ้นระหว่างการเลือกตั้ง 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_en": "What year was the first election when Fritz G. Lanham was elected?",
    "question_th": "การเลือกตั้งครั้งแรกเมื่อ Fritz G. Lanham ได้รับเลือกคือปีใด",
    "context": "CREATE TABLE table_1342331_43 (first_elected INTEGER, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1342331_43 WHERE incumbent = \"James P. Buchanan\"",
    "question_en": "What is the name of the candidate where the incumbent is named James P. Buchanan?",
    "question_th": "ผู้สมัครชื่ออะไร โดยที่ผู้ดำรงตำแหน่งชื่อ เจมส์ พี. บูคานัน คืออะไร?",
    "context": "CREATE TABLE table_1342331_43 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1342331_43 WHERE incumbent = \"Oliver H. Cross\"",
    "question_en": "What party is incumbent Oliver H. Cross?",
    "question_th": "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_en": "what's the district with incumbent being william j. driver",
    "question_th": "เขตที่ดำรงตำแหน่งคือวิลเลียม เจ. คนขับ",
    "context": "CREATE TABLE table_1342331_5 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1342331_5 WHERE incumbent = \"John E. Miller\"",
    "question_en": "what's the district with incumbent being john e. miller",
    "question_th": "เขตที่มีหน้าที่คือจอห์น อี. มิลเลอร์",
    "context": "CREATE TABLE table_1342331_5 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(incumbent) FROM table_1342331_5 WHERE first_elected = 1932",
    "question_en": " how many incumbent with first elected being 1932",
    "question_th": " มีผู้ดำรงตำแหน่งกี่คนโดยได้รับเลือกครั้งแรกคือ พ.ศ. 2475",
    "context": "CREATE TABLE table_1342331_5 (incumbent VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1342331_5 WHERE district = \"Arkansas 1\"",
    "question_en": "who is the the incumbent with dbeingtrict being arkansas 1",
    "question_th": "ซึ่งเป็นผู้ดำรงตำแหน่งในอาร์คันซอที่ 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_en": " how many district  with incumbent being david delano glover",
    "question_th": " มีกี่เขตที่มีผู้ดำรงตำแหน่ง เดวิด เดลาโน โกลเวอร์",
    "context": "CREATE TABLE table_1342331_5 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1342331_5 WHERE candidates = \"Ben Cravens (D) Unopposed\"",
    "question_en": "who is the the incumbent with candidates being ben cravens (d) unopposed",
    "question_th": "ซึ่งเป็นผู้ดำรงตำแหน่งผู้สมัครคือ เบ็น คราเวนส์ (d) ค้าน",
    "context": "CREATE TABLE table_1342331_5 (incumbent VARCHAR, candidates VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1342331_6 WHERE incumbent = \"Denver S. Church\"",
    "question_en": "What was the result in the election in which the incumbent was Denver S. Church? ",
    "question_th": " อะไรคือผลลัพธ์ของการเลือกตั้งที่ผู้ดำรงตำแหน่งคือคริสตจักรเดนเวอร์ เอส.",
    "context": "CREATE TABLE table_1342331_6 (result VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1342331_6 WHERE incumbent = \"Ralph R. Eltse\"",
    "question_en": "What was the result in the election in which Ralph R. Eltse was the incumbent?",
    "question_th": "ผลลัพธ์ของการเลือกตั้งที่ Ralph R. Eltse ดำรงตำแหน่งคืออะไร?",
    "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_en": "Who was the candidate in the election in the California 8 district where the incumbent was first elected in 1932? ",
    "question_th": " ใครคือผู้สมัครรับเลือกตั้งในเขต 8 ของรัฐแคลิฟอร์เนียซึ่งมีการเลือกตั้งผู้ดำรงตำแหน่งครั้งแรกในปี 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_en": "what are all the party with district being kansas 1",
    "question_th": "พรรคพวกที่เขตเป็นแคนซัส 1 เป็นยังไงบ้าง",
    "context": "CREATE TABLE table_1342359_15 (party VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1342359_15 WHERE district = \"Kansas 1\"",
    "question_en": "what's the result with district being kansas 1",
    "question_th": "ผลที่ได้คือเขตแคนซัส 1",
    "context": "CREATE TABLE table_1342359_15 (result VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1342359_15 WHERE district = \"Kansas 4\"",
    "question_en": "who are the candidates with district being kansas 4",
    "question_th": "ซึ่งเป็นผู้สมัครที่มีเขตเป็นแคนซัส 4",
    "context": "CREATE TABLE table_1342359_15 (candidates VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1342359_15 WHERE first_elected = 1922",
    "question_en": "what's the result with first elected being 1922",
    "question_th": "ผลลัพธ์ที่ได้รับเลือกครั้งแรกคือปี 1922 จะเป็นอย่างไร",
    "context": "CREATE TABLE table_1342359_15 (result VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1342359_15 WHERE district = \"Kansas 5\"",
    "question_en": "who is the the candidates with dbeingtrict being kansas 5",
    "question_th": "ซึ่งเป็นผู้สมัครที่มีแคนซัส 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_en": " how many first elected with district is kansas 3",
    "question_th": " แคนซัส 3 ที่ได้รับเลือกครั้งแรกมีกี่คน",
    "context": "CREATE TABLE table_1342359_15 (first_elected VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1342359_4 WHERE district = \"Arkansas 2\"",
    "question_en": "What was the result of the election in the Arkansas 2 district? ",
    "question_th": " ผลการเลือกตั้งในเขตอาร์คันซอ 2 เป็นอย่างไร?",
    "context": "CREATE TABLE table_1342359_4 (result VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1342359_4 WHERE district = \"Arkansas 4\"",
    "question_en": "What was the result of the election in the Arkansas 4 district? ",
    "question_th": " ผลการเลือกตั้งในเขตอาร์คันซอ 4 เป็นอย่างไร?",
    "context": "CREATE TABLE table_1342359_4 (result VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(candidates) FROM table_1342359_4 WHERE district = \"Arkansas 4\"",
    "question_en": "How many candidates ran in the election in the Arkansas 4 district? ",
    "question_th": " มีผู้สมัครกี่คนที่ลงสมัครรับเลือกตั้งในเขตอาร์คันซอ 4",
    "context": "CREATE TABLE table_1342359_4 (candidates VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(district) FROM table_1342359_2 WHERE incumbent = \"William B. Oliver\"",
    "question_en": "How many districts does william b. oliver represent?",
    "question_th": "วิลเลียม บี มีกี่เขต ตัวแทนโอลิเวอร์?",
    "context": "CREATE TABLE table_1342359_2 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT MAX(first_elected) FROM table_1342359_2",
    "question_en": "What is the last year that someone is first elected?",
    "question_th": "ปีสุดท้ายที่มีการเลือกตั้งครั้งแรกคือปีใด?",
    "context": "CREATE TABLE table_1342359_2 (first_elected INTEGER)"
  },
  {
    "answer": "SELECT COUNT(candidates) FROM table_1342359_17 WHERE first_elected = 1929",
    "question_en": "How many people were elected in 1929",
    "question_th": "มีการเลือกตั้งกี่คนในปี พ.ศ. 2472",
    "context": "CREATE TABLE table_1342359_17 (candidates VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(district) FROM table_1342359_17 WHERE first_elected = 1914",
    "question_en": "how many people won in 1914",
    "question_th": "มีกี่คนที่ชนะในปี 1914",
    "context": "CREATE TABLE table_1342359_17 (district VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1342359_17 WHERE first_elected = 1927",
    "question_en": "Who won in 1927",
    "question_th": "ใครชนะในปี พ.ศ. 2470",
    "context": "CREATE TABLE table_1342359_17 (incumbent VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(incumbent) FROM table_1342359_42 WHERE district = \"Texas 12\"",
    "question_en": "Name the number of incumbents for texas 12 ",
    "question_th": " ตั้งชื่อจำนวนผู้ครอบครองตลาดเท็กซัส 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_en": "How many parties were represented for Charles R. Crisp?",
    "question_th": "มีกี่ฝ่ายที่เป็นตัวแทนของ 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_en": "In what district was the representative first elected in 1916?",
    "question_th": "ผู้แทนได้รับเลือกครั้งแรกในเขตใดในปี พ.ศ. 2459?",
    "context": "CREATE TABLE table_1342370_10 (district VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1342370_12 WHERE first_elected = 1922",
    "question_en": "Who were the candidates in the 1922 entry?",
    "question_th": "ใครคือผู้สมัครในรายการปี 1922?",
    "context": "CREATE TABLE table_1342370_12 (candidates VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1342370_17 WHERE incumbent = \"James O'Connor\"",
    "question_en": "In which district is James O'Connor the incumbent?",
    "question_th": "James O'Connor ดำรงตำแหน่งในเขตใด?",
    "context": "CREATE TABLE table_1342370_17 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1342370_17 WHERE incumbent = \"Riley Joseph Wilson\"",
    "question_en": "To which party does Riley Joseph Wilson belong?",
    "question_th": "Riley Joseph Wilson สังกัดพรรคใด?",
    "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_en": "How many of the first elected were listed when Hatton W. Sumners was incumbent and re-elected?",
    "question_th": "มีผู้ได้รับเลือกเป็นคนแรกกี่รายที่อยู่ในรายการเมื่อ Hatton W. Sumners ดำรงตำแหน่งและได้รับการเลือกตั้งใหม่",
    "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_en": "What was the result in the election where the incumbent was Finis J. Garrett? ",
    "question_th": "ผลการเลือกตั้งที่ผู้ดำรงตำแหน่งคือ ฟินิส เจ. การ์เร็ตต์ เป็นอย่างไร",
    "context": "CREATE TABLE table_1342370_41 (result VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1342370_41 WHERE incumbent = \"Cordell Hull\"",
    "question_en": "In what district was the incumbent Cordell hull? ",
    "question_th": " เรือคอร์เดลล์ประจำการอยู่ที่เขตใด",
    "context": "CREATE TABLE table_1342370_41 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1342370_41 WHERE district = \"Tennessee 9\"",
    "question_en": "Who were the candidates in the election in the Tennessee 9 district? ",
    "question_th": " ใครคือผู้สมัครรับเลือกตั้งในเขตเทนเนสซี 9?",
    "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_en": "What was the result of the election featuring james a. gallivan (d) unopposed?",
    "question_th": "ผลการเลือกตั้งที่มีเจมส์ ก. gallivan (d) ค้าน?",
    "context": "CREATE TABLE table_1342379_20 (result VARCHAR, candidates VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(district) FROM table_1342379_20 WHERE incumbent = \"John J. Douglass\"",
    "question_en": "How many districts does john j. douglass represent?",
    "question_th": "จอห์น เจ มีกี่เขต ดักลาสเป็นตัวแทนของ?",
    "context": "CREATE TABLE table_1342379_20 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(district) FROM table_1342379_10 WHERE first_elected = 1912",
    "question_en": "how many areas were in the election in 1912",
    "question_th": "การเลือกตั้งในปี พ.ศ. 2455 มีกี่พื้นที่",
    "context": "CREATE TABLE table_1342379_10 (district VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1342379_10 WHERE incumbent = \"Charles H. Brand\"",
    "question_en": "what is the affiliation of charles h. brand",
    "question_th": "อะไรคือความเกี่ยวข้องของชาร์ลส์ เอช. ยี่ห้อ",
    "context": "CREATE TABLE table_1342379_10 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1342370_5 WHERE incumbent = \"Harry Lane Englebright\"",
    "question_en": "What candidates ran in the election that featured harry lane englebright?",
    "question_th": "ผู้สมัครคนใดที่ลงสมัครในการเลือกตั้งที่มีแฮร์รี่ เลน เองเกิลไบรท์?",
    "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_en": "When was incumbent William B. Oliver first elected?",
    "question_th": "ผู้ดำรงตำแหน่งวิลเลียม บี. ออลิเวอร์ได้รับเลือกครั้งแรกเมื่อใด",
    "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_en": "who is the the incumbent with candidates being percy e. quin (d) unopposed",
    "question_th": "ซึ่งเป็นผู้ดำรงตำแหน่งโดยมีผู้สมัครเป็นเพอร์ซี่ อี quin (d) ค้าน",
    "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_en": "what's the district with candidates being john e. rankin (d) unopposed",
    "question_th": "เขตที่มีผู้สมัครคือจอห์น อี. rankin (d) ค้าน",
    "context": "CREATE TABLE table_1342379_23 (district VARCHAR, candidates VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1342379_23 WHERE district = \"Mississippi 4\"",
    "question_en": "who is the the candidates with district being mississippi 4",
    "question_th": "ซึ่งเป็นผู้สมัครที่มีเขตเป็นมิสซิสซิปปี้ 4",
    "context": "CREATE TABLE table_1342379_23 (candidates VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1342379_23 WHERE district = \"Mississippi 4\"",
    "question_en": "who is  the incumbent for district mississippi 4",
    "question_th": "ผู้ดำรงตำแหน่งเขตมิสซิสซิปปี้ที่ 4",
    "context": "CREATE TABLE table_1342379_23 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1342379_23 WHERE incumbent = \"Bill G. Lowrey\"",
    "question_en": "what's the result with incumbent being bill g. lowrey",
    "question_th": "ผู้ดำรงตำแหน่งบิล ก. ผลเป็นอย่างไร โลว์เรย์",
    "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_en": "what's the district  with candidates being william madison whittington (d) unopposed",
    "question_th": "เขตที่มีผู้สมัครคือวิลเลียม เมดิสัน วิตติงตัน (ง) อยู่ฝ่ายใดโดยไม่มีใครค้าน",
    "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_en": "What was the last year that incumbent joseph t. deal was first elected?",
    "question_th": "ปีที่แล้วที่ดำรงตำแหน่งโจเซฟ ที. ข้อตกลงถูกเลือกครั้งแรก?",
    "context": "CREATE TABLE table_1342379_45 (first_elected INTEGER, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT MIN(first_elected) FROM table_1342379_45",
    "question_en": "What year was someone first elected?",
    "question_th": "มีคนได้รับเลือกครั้งแรกในปีใด?",
    "context": "CREATE TABLE table_1342379_45 (first_elected INTEGER)"
  },
  {
    "answer": "SELECT district FROM table_1342379_41 WHERE incumbent = \"Edward Everett Eslick\"",
    "question_en": "What district does edward everett eslick represent?",
    "question_th": "เอ็ดเวิร์ด เอเวอเรตต์ เอสลิคเป็นตัวแทนเขตใด",
    "context": "CREATE TABLE table_1342379_41 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(first_elected) FROM table_1342379_41 WHERE incumbent = \"Cordell Hull\"",
    "question_en": "How many times was incumbent cordell hull first elected?",
    "question_th": "ลำคอร์เดลล์ผู้ดำรงตำแหน่งได้รับเลือกครั้งแรกกี่ครั้ง?",
    "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_en": "How many times was the election joseph w. byrns, sr. (d) unopposed?",
    "question_th": "โจเซฟ ดับเบิลยู. มีการเลือกตั้งกี่ครั้ง เบิร์นส์ ซีเนียร์ (ง) ไม่ค้าน?",
    "context": "CREATE TABLE table_1342379_41 (result VARCHAR, candidates VARCHAR)"
  },
  {
    "answer": "SELECT MIN(first_elected) FROM table_1342393_23 WHERE incumbent = \"Jeff Busby\"",
    "question_en": "What is the least first elected for jeff busby?",
    "question_th": "คนใดได้รับเลือกเป็นคนแรกสำหรับเจฟฟ์ บัสบี?",
    "context": "CREATE TABLE table_1342393_23 (first_elected INTEGER, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1342393_23 WHERE first_elected = 1923",
    "question_en": "What was the party for first elected 1923?",
    "question_th": "พรรคที่ได้รับการเลือกตั้งครั้งแรกในปี พ.ศ. 2466 คืออะไร?",
    "context": "CREATE TABLE table_1342393_23 (party VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(result) FROM table_1342393_23 WHERE district = \"Mississippi 4\"",
    "question_en": "Name the total number of result for mississippi 4?",
    "question_th": "ตั้งชื่อจำนวนผลลัพธ์ทั้งหมดสำหรับ mississippi 4 หรือไม่?",
    "context": "CREATE TABLE table_1342393_23 (result VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1342393_10 WHERE incumbent = \"Gordon Lee\"",
    "question_en": "what is the section where gordon lee ran",
    "question_th": "แผนกไหนที่กอร์ดอน ลีวิ่งอยู่",
    "context": "CREATE TABLE table_1342393_10 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1342393_10 WHERE incumbent = \"Frank Park\"",
    "question_en": "what section did frank park run in",
    "question_th": "แฟรงก์ พาร์คทำงานอยู่แผนกไหน",
    "context": "CREATE TABLE table_1342393_10 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1342393_10 WHERE district = \"Georgia 5\"",
    "question_en": "who won in the race in the section georgia 5",
    "question_th": "ผู้ชนะในการแข่งขันในหมวดจอร์เจีย 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_en": "How many candidates won the election of john n. sandlin?",
    "question_th": "มีผู้สมัครกี่คนที่ชนะการเลือกตั้งของจอห์น เอ็น. ทราย?",
    "context": "CREATE TABLE table_1342426_18 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1342426_18 WHERE candidates = \"Henry Garland Dupré (D) Unopposed\"",
    "question_en": "Who was the incumbent in the election of henry garland dupré (d) unopposed?",
    "question_th": "ใครเป็นผู้ดำรงตำแหน่งในการเลือกตั้งเฮนรี การ์แลนด์ ดูเพร (d) โดยไม่มีฝ่ายค้าน?",
    "context": "CREATE TABLE table_1342426_18 (incumbent VARCHAR, candidates VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1342426_3 WHERE incumbent = \"John R. Tyson\"",
    "question_en": "What was the result when incumbent John R. Tyson was elected?",
    "question_th": "ผลลัพธ์คืออะไรเมื่อผู้ดำรงตำแหน่งจอห์น อาร์. ไทสันได้รับเลือก",
    "context": "CREATE TABLE table_1342426_3 (result VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1342426_5 WHERE incumbent = \"William J. Driver\"",
    "question_en": "Name the result for william j. driver",
    "question_th": "ตั้งชื่อผลลัพธ์สำหรับ william j. คนขับ",
    "context": "CREATE TABLE table_1342426_5 (result VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1342426_5 WHERE incumbent = \"William J. Driver\"",
    "question_en": "Name the district for william j. driver ",
    "question_th": " ตั้งชื่อเขตสำหรับวิลเลียม เจ. คนขับ",
    "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_en": "Name the lowest first elected for chester w. taylor",
    "question_th": "ตั้งชื่อต่ำสุดที่ได้รับเลือกเป็นอันดับแรกสำหรับ chester w เทย์เลอร์",
    "context": "CREATE TABLE table_1342426_5 (first_elected INTEGER, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1342451_16 WHERE incumbent = \"Henry Garland Dupré\"",
    "question_en": "Who were the candidates when Henry Garland Dupré was incumbent?",
    "question_th": "ใครคือผู้สมัครเมื่อ Henry Garland Dupré ดำรงตำแหน่ง",
    "context": "CREATE TABLE table_1342451_16 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(candidates) FROM table_1342451_16 WHERE incumbent = \"Henry Garland Dupré\"",
    "question_en": "How many candidates were there when Henry Garland Dupré was the incumbent? ",
    "question_th": " ตอนที่ Henry Garland Dupré ดำรงตำแหน่งมีผู้สมัครกี่คน",
    "context": "CREATE TABLE table_1342451_16 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1342451_16 WHERE incumbent = \"James O'Connor\"",
    "question_en": "What district did James O'Connor belong to?",
    "question_th": "James O'Connor อยู่เขตใด",
    "context": "CREATE TABLE table_1342451_16 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(original_air_date) FROM table_13426649_1 WHERE _number = 6",
    "question_en": "How many different original air dates did the episode number 6 have? ",
    "question_th": " ตอนที่ 6 ออกอากาศต้นฉบับต่างกันกี่วัน?",
    "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_en": "Who wrote the episode with production code 1ANJ01?",
    "question_th": "ใครเป็นคนเขียนตอนที่มีรหัสการผลิต 1ANJ01?",
    "context": "CREATE TABLE table_13426649_1 (written_by VARCHAR, production_code VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_13456202_1 WHERE mascot = \"Panthers\"",
    "question_en": "What are the locations with a panthers mascot?",
    "question_th": "สถานที่ใดที่มีมาสคอตเสือดำ?",
    "context": "CREATE TABLE table_13456202_1 (location VARCHAR, mascot VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_13456202_1 WHERE mascot = \"Eagles\"",
    "question_en": "What are the locations with an eagles macot?",
    "question_th": "มีเหยี่ยวมาคอทอยู่บริเวณไหนบ้าง?",
    "context": "CREATE TABLE table_13456202_1 (location VARCHAR, mascot VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(affiliation) FROM table_13456202_1 WHERE mascot = \"Eagles\"",
    "question_en": "How many teams have an eagles mascot?",
    "question_th": "มีมาสคอตนกอินทรีกี่ทีม?",
    "context": "CREATE TABLE table_13456202_1 (affiliation VARCHAR, mascot VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(affiliation) FROM table_13456202_1 WHERE mascot = \"Titans\"",
    "question_en": "How many teams have the titans as a mascot?",
    "question_th": "มีไททันเป็นมาสคอตกี่ทีม?",
    "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_en": "WHat year was north college hill high school founded?",
    "question_th": "โรงเรียนมัธยมนอร์ธ คอลเลจ ฮิลล์ ก่อตั้งขึ้นเมื่อปีใด",
    "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_en": "Who was the incumbent when ran william b. oliver (d) unopposed?",
    "question_th": "ใครเป็นผู้ดำรงตำแหน่งเมื่อรัน วิลเลียม บี. โอลิเวอร์ (d) ค้าน?",
    "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_en": "Which party was the incumbent from when the cadidates were henry e. barbour (r) 52.1% henry hawson (d) 47.9%?  Answer: Democratic",
    "question_th": "พรรคใดเป็นผู้ดำรงตำแหน่งเมื่อผู้สมัครสอบคือเฮนรี่ อี บาร์เบอร์ (สำรอง) 52.1% เฮนรี่ ฮอว์สัน (ง) 47.9%? ตอบ: ประชาธิปไตย",
    "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_en": "Which district was the race between john i. nolan (r) 87% thomas f. feeley (s) 13%?",
    "question_th": "เขตไหนเป็นการแข่งขันระหว่าง จอห์น ไอ. โนแลน (r) 87% โทมัส เอฟ. ความรู้สึก 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_en": "What was the net seat gain in the race john a. elston (r) 88.4% luella twining (s) 11.6%?",
    "question_th": "ที่นั่งสุทธิที่เพิ่มขึ้นในการแข่งขันคือเท่าใด จอห์น เอ. เอลสตัน (r) 88.4% ลูเอลล่า ทวินนิ่ง 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_en": "Which District was the incumbent Julius Kahn from?  Answer:  California 4th district",
    "question_th": "ผู้ดำรงตำแหน่ง Julius Kahn มาจากเขตใด คำตอบ: แคลิฟอร์เนียเขตที่ 4",
    "context": "CREATE TABLE table_1346118_5 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1346118_5 WHERE incumbent = \"Clarence F. Lea\"",
    "question_en": "What was the result of the election when Clarence F. Lea was the incumbent?",
    "question_th": "ผลของการเลือกตั้งเมื่อ คลาเรนซ์ เอฟ. ลี ดำรงตำแหน่งเป็นอย่างไร?",
    "context": "CREATE TABLE table_1346118_5 (result VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_13464416_5 WHERE game = 20",
    "question_en": "Which team played in game 20?",
    "question_th": "ทีมใดเล่นในเกมที่ 20?",
    "context": "CREATE TABLE table_13464416_5 (team VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT height__ft_ FROM table_13463790_2 WHERE name = \"Leadenhall Building\"",
    "question_en": "what's the height (ft) with name being leadenhall building",
    "question_th": "สูง (ฟุต) เท่าไร ชื่ออาคารลีดเดนฮอลล์",
    "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_en": "what's the height (ft) with name being 52-54 lime street",
    "question_th": "ถนนไลม์สูงเท่าไร (ฟุต) ชื่อ 52-54 มะนาว",
    "context": "CREATE TABLE table_13463790_2 (height__ft_ VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(city) FROM table_13463790_2 WHERE name = \"Providence Tower\"",
    "question_en": " how many city with name being providence tower",
    "question_th": " มีกี่เมืองที่ชื่อพรอวิเดนซ์ทาวเวอร์",
    "context": "CREATE TABLE table_13463790_2 (city VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT format FROM table_134729_3 WHERE call_sign = \"K213CL\"",
    "question_en": "What station has the call number K213cl",
    "question_th": "สถานีใดมีหมายเลขโทร 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_en": "What market is Wessington Springs in",
    "question_th": "Wessington Springs อยู่ในตลาดใด",
    "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_en": "What station owns Moody Bible Institute",
    "question_th": "สถานีใดเป็นเจ้าของ 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–87\"",
    "question_en": " how many date with score being w 113–87",
    "question_th": " กี่วันด้วยคะแนน w 113–87",
    "context": "CREATE TABLE table_13480122_5 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_13480122_5 WHERE record = \"29–3\"",
    "question_en": "what's the game with record being 29–3",
    "question_th": "เกมอะไรที่มีสถิติ 29–3",
    "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_en": "who is the the high rebounds with high assbeingts being scottie pippen (9)",
    "question_th": "ใครคือผู้รีบาวด์ที่มีแอสบีนต์สูงคือสก็อตตี้ พิพเพน (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–93\"",
    "question_en": "who is the the high points with score being w 117–93",
    "question_th": "ซึ่งเป็นแต้มสูงสุดด้วยคะแนนอยู่ที่ 117–93",
    "context": "CREATE TABLE table_13480122_5 (high_points VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_13480122_5 WHERE date = \"January 13\"",
    "question_en": "what's the record with date being january 13",
    "question_th": "บันทึกวันที่เป็นวันที่ 13 มกราคมคืออะไร",
    "context": "CREATE TABLE table_13480122_5 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_13480122_5 WHERE date = \"January 21\"",
    "question_en": "what are all the record where date is january 21",
    "question_th": "บันทึกทั้งหมดคือวันที่ 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_en": "What is the name of Rapid City's Adult Contemporary station?",
    "question_th": "สถานี Adult Contemporary ของ Rapid City ชื่ออะไร",
    "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_en": "What are the market city/market(s) for Rapid City Alternative format?",
    "question_th": "เมือง/ตลาดสำหรับรูปแบบ Rapid City Alternative คืออะไร",
    "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_en": "What is the frequency for the Christian Kawz-fm Translator station?",
    "question_th": "ความถี่ของสถานี Christian Kawz-fm Translator คืออะไร?",
    "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_en": "What is the target market for the station on 97.9 fm?",
    "question_th": "ตลาดเป้าหมายของสถานี 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_en": "What is the frequency of the Classic Country Krki-fm booster station?",
    "question_th": "ความถี่ของสถานีขยายเสียง Classic Country Krki-fm คืออะไร?",
    "context": "CREATE TABLE table_134987_3 (frequency VARCHAR, format VARCHAR)"
  },
  {
    "answer": "SELECT target_city__market FROM table_134987_3 WHERE call_sign = \"KFXS\"",
    "question_en": "What is the target market of the station with call sign KFXS?",
    "question_th": "ตลาดเป้าหมายของสถานีที่มีสัญญาณเรียกขาน 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_en": "What year did the season finale have a total of 10.29 million viewers?",
    "question_th": "ตอนจบซีซั่นปีไหนมีผู้ชมรวม 10.29 ล้านคน?",
    "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_en": "In what TV season did the 3rd season air?",
    "question_th": "ซีซั่นที่ 3 ออกอากาศทางทีวีซีซั่นไหนคะ?",
    "context": "CREATE TABLE table_1348989_2 (TV VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(ranking) FROM table_1348989_2 WHERE season = \"5th\"",
    "question_en": "How many rankings did the 5th season have?",
    "question_th": "ฤดูกาลที่ 5 มีอันดับกี่อันดับ?",
    "context": "CREATE TABLE table_1348989_2 (ranking VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(season) AS Finale FROM table_1348989_2 WHERE season = \"2nd\"",
    "question_en": "How many times did the 2nd season have a finale?",
    "question_th": "ซีซั่นที่ 2 มีตอนจบกี่ครั้ง?",
    "context": "CREATE TABLE table_1348989_2 (season VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(county) FROM table_1350350_2 WHERE per_capita_income = \"$20,101\"",
    "question_en": " how many county with per capita income being $20,101",
    "question_th": " จำนวนเคาน์ตีที่มีรายได้ต่อหัวอยู่ที่ 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_en": "who is the the place with per capita income being $14,793",
    "question_th": "ซึ่งเป็นสถานที่ที่มีรายได้ต่อหัวอยู่ที่ 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_en": "what's the number of households with per capita income being $16,820",
    "question_th": "จำนวนครัวเรือนที่มีรายได้ต่อหัวอยู่ที่ 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_en": "what is the maximum rank with per capita income being $17,013",
    "question_th": "ตำแหน่งสูงสุดโดยมีรายได้ต่อหัวคือ $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_en": "How old is Darryll Holland's horse",
    "question_th": "ม้าของดาร์ริลล์ ฮอลแลนด์อายุเท่าไหร่",
    "context": "CREATE TABLE table_13498403_1 (barrier VARCHAR, jockey VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(trainer) FROM table_13498403_1 WHERE jockey = \"N Rawiller\"",
    "question_en": "how many people work with N Rawiller",
    "question_th": "มีกี่คนที่ร่วมงานกับ 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_en": "How old is Daniel Morton",
    "question_th": "แดเนียล มอร์ตันอายุเท่าไหร่",
    "context": "CREATE TABLE table_13498403_1 (barrier INTEGER, trainer VARCHAR)"
  },
  {
    "answer": "SELECT Radio AS electrical FROM table_1348246_3 WHERE secretariat = \"WTR I\"",
    "question_en": "What are radio electricals when secretariat is wtr i?",
    "question_th": "เครื่องใช้ไฟฟ้าวิทยุคืออะไรเมื่อสำนักเลขาธิการอยู่ที่ i?",
    "context": "CREATE TABLE table_1348246_3 (Radio VARCHAR, secretariat VARCHAR)"
  },
  {
    "answer": "SELECT electrical FROM table_1348246_3 WHERE secretariat = \"PO(W)\"",
    "question_en": "What are electricals where secretariat is po(w)?",
    "question_th": "การไฟฟ้ามีสำนักเลขาธิการอยู่ที่ po(w) คืออะไร?",
    "context": "CREATE TABLE table_1348246_3 (electrical VARCHAR, secretariat VARCHAR)"
  },
  {
    "answer": "SELECT mechanical FROM table_1348246_3 WHERE regulating = \"LPM\"",
    "question_en": "What mechanical has lpm regulation?",
    "question_th": "กลไกอะไรมีการควบคุม lpm?",
    "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_en": "What number episode in the series is the episode \"things that fly\"?",
    "question_th": "ซีรีส์เรื่อง \"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_en": "What is the production code for season episode 8?",
    "question_th": "รหัสการผลิตสำหรับซีซั่นตอนที่ 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_en": "How many episodes have a series number of 35?",
    "question_th": "มีกี่ตอนมีเลข 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_en": "What is the series number for season episode 24?",
    "question_th": "ซีซั่น 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_en": "how many have times of 6",
    "question_th": "มีกี่ครั้งคูณ 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_en": "which brand have drivers who won with the names of ryan briscoe and tomas scheckter",
    "question_th": "แบรนด์ใดมีนักแข่งที่ชนะด้วยชื่อของ ryan briscoe และ 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_en": "who else along with scott dixon and graham rahal drove with the most speed",
    "question_th": "มีใครอีกบ้างที่พร้อมด้วยสก็อตต์ ดิกซัน และเกรแฮม ราฮาล ขับรถด้วยความเร็วสูงสุด",
    "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_en": "tell the number of times where kansas was the location",
    "question_th": "บอกจำนวนครั้งที่แคนซัสเป็นสถานที่นั้น",
    "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_en": "What TV channel had a license from Boston?",
    "question_th": "ช่องทีวีใดได้รับใบอนุญาตจากบอสตัน",
    "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_en": "Which station has a license in Fort Collins, Colorado?",
    "question_th": "สถานีใดมีใบอนุญาตใน 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_en": "What is the current status of the KDAF ** Station?",
    "question_th": "สถานะปัจจุบันของสถานี KDAF ** เป็นอย่างไร?",
    "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_en": "How many entries are listed under \"current status\" for the WJW-TV ++ Station?",
    "question_th": "มีกี่รายการที่อยู่ใน \"สถานะปัจจุบัน\" สำหรับสถานี WJW-TV ++",
    "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_en": "How many stations have fox as the primary affiliation and have been owned since 1986?",
    "question_th": "มีกี่สถานีที่มี Fox เป็นสังกัดหลักและเป็นเจ้าของมาตั้งแต่ปี 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_en": "What channel has station kdfw ++?",
    "question_th": "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_en": "What city has channel tv (dt) 25 (31)?",
    "question_th": "เมืองใดบ้างที่มีช่องทีวี (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_en": "How many channel tv (dt)s are in austin, texas?",
    "question_th": "ออสติน เท็กซัส มีทีวีกี่ช่อง (dt)",
    "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_en": "When was 10 (10) bought?",
    "question_th": "10 (10) ซื้อเมื่อไหร่?",
    "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_en": "Who were the umpires when Paul Medhurst (C) won the Simpson Medal?",
    "question_th": "ใครคือผู้ตัดสินเมื่อ Paul Medhurst (กลาง) ได้รับรางวัล 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_en": "Who were the umpires when Paul Vines (S) won the Simpson Medal?",
    "question_th": "ใครคือผู้ตัดสินเมื่อ Paul Vines (S) ได้รับรางวัล 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_en": "Which venue did Luke Blackwell serve as captain?",
    "question_th": "ลุค แบล็คเวลล์ ทำหน้าที่เป็นกัปตันทีมในสถานที่ใด",
    "context": "CREATE TABLE table_13514348_7 (venue VARCHAR, captain VARCHAR)"
  },
  {
    "answer": "SELECT MIN(180 AS s) FROM table_13535824_2",
    "question_en": "what's the minimum 180s value",
    "question_th": "ค่าขั้นต่ำ 180 คือเท่าไร",
    "context": "CREATE TABLE table_13535824_2 (Id VARCHAR)"
  },
  {
    "answer": "SELECT new_channel_s_ FROM table_13549921_18 WHERE programme = \"Gladiators\"",
    "question_en": "What channel number is Gladiators on",
    "question_th": "Gladiators เปิดช่องไหนครับ",
    "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_en": "What show is coming back on in July 2008",
    "question_th": "รายการใดที่จะกลับมาแสดงอีกครั้งในเดือนกรกฎาคม พ.ศ. 2551",
    "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_en": "Who are the mens doubles and womens singles is wang shixian?",
    "question_th": "ชายคู่และหญิงเดี่ยวคือใครคือหวังซือเซี่ยน?",
    "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_en": "Who is the mens singles and womens singlses is wang shixian?",
    "question_th": "ชายเดี่ยวและหญิงเดี่ยวคือใครคือ 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_en": "Who are the mens doubles and and mens singles is lee hyun-il?",
    "question_th": "ชายคู่คือใคร และชายเดี่ยวคือลีฮยอนอิล?",
    "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_en": "Who are the mens singles and womens singles with sun yu?",
    "question_th": "ชายเดี่ยวและหญิงเดี่ยวกับซอนยูคือใคร?",
    "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_en": "what is the highest number where people got done at 31.1",
    "question_th": "จำนวนสูงสุดที่คนทำได้ที่ 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_en": "who danced 11 and finished at more than a 2.0",
    "question_th": "ที่เต้นได้ 11 และจบด้วยสกอร์มากกว่า 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_en": "tell the competitions where the mean is 1",
    "question_th": "บอกการแข่งขันว่าค่าเฉลี่ยคือ 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_en": "tell the mean of the times competition for the 7 jigs",
    "question_th": "บอกค่าเฉลี่ยเวลาการแข่งขันของจิ๊กทั้ง 7 ตัว",
    "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_en": "how many turns were completed to make a mean of 34.0",
    "question_th": "ครบกี่รอบจนได้ค่าเฉลี่ย 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_en": "What is the gender of the junior high school is 24mm?",
    "question_th": "โรงเรียนมัธยมต้น 24 มม. เป็นเพศอะไร?",
    "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_en": "What amount of the university students and adults ehre the the senior high school is 26mm?",
    "question_th": "นักศึกษามหาวิทยาลัยและผู้ใหญ่จำนวนเท่าใดที่โรงเรียนมัธยมปลายคือ 26 มม.",
    "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_en": "What amount of senior high school where junior high school is 114cm?",
    "question_th": "มัธยมปลายที่โรงเรียนมัธยมต้นสูง 114 ซม. เท่าไหร่?",
    "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_en": "What is the specification where senior high school is 25mm?",
    "question_th": "สเปคที่มัธยมปลายคือ 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_en": "What amount is the junior high school where the gender is male and the specification is minimum diameter of sakigawa?",
    "question_th": "โรงเรียนมัธยมต้นที่เป็นเพศชายและข้อกำหนดคือเส้นผ่านศูนย์กลางขั้นต่ำของซากิกาวะคือจำนวนเท่าใด",
    "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_en": "What is the gender of senior high school 26mm?",
    "question_th": "โรงเรียนมัธยมปลาย 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_en": "What was the score of the game when the team was 1-2?",
    "question_th": "สกอร์ของเกมเมื่อทีมเสมอ 1-2 คืออะไร?",
    "context": "CREATE TABLE table_13557843_3 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_13557843_3 WHERE team = \"Charlotte\"",
    "question_en": "Who had the high assists against charlotte?",
    "question_th": "ใครทำแอสซิสต์ได้สูงในการเจอกับชาร์ล็อตต์?",
    "context": "CREATE TABLE table_13557843_3 (high_assists VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(high_points) FROM table_13557843_5 WHERE team = \"Utah\"",
    "question_en": "How many leading scorers were there in the game against Utah?",
    "question_th": "มีผู้ทำประตูชั้นนำกี่คนในเกมกับยูทาห์?",
    "context": "CREATE TABLE table_13557843_5 (high_points VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(location_attendance) FROM table_13557843_7 WHERE team = \"Charlotte\"",
    "question_en": " how many location attendance with team being charlotte",
    "question_th": " มีผู้เข้างานกี่คนโดยทีมชาร์ล็อตต์",
    "context": "CREATE TABLE table_13557843_7 (location_attendance VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_13557843_7 WHERE date = \"March 7\"",
    "question_en": "what's the game with date being march 7",
    "question_th": "เกมอะไรคือวันที่ 7 มีนาคม",
    "context": "CREATE TABLE table_13557843_7 (game VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_13557843_7 WHERE game = 72",
    "question_en": "what's the date with game being 72",
    "question_th": "วันที่เกมเป็น 72 คือวันที่เท่าไร",
    "context": "CREATE TABLE table_13557843_7 (date VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(high_assists) FROM table_13557843_7 WHERE score = \"L 90–98 (OT)\"",
    "question_en": " how many high assbeingts with score being l 90–98 (ot)",
    "question_th": " มี assbeing สูงกี่ตัวที่มีคะแนน l 90–98 (ot)",
    "context": "CREATE TABLE table_13557843_7 (high_assists VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_13557843_7 WHERE team = \"Vancouver\"",
    "question_en": "who is the the high rebounds with team being vancouver",
    "question_th": "ที่เป็นรีบาวด์สูง โดยมีทีมเป็น แวนคูเวอร์",
    "context": "CREATE TABLE table_13557843_7 (high_rebounds VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(record) FROM table_13557843_8 WHERE date = \"April 12\"",
    "question_en": "How many pairs of numbers are under record on April 12?",
    "question_th": "มีกี่คู่ที่บันทึกไว้ในวันที่ 12 เมษายน?",
    "context": "CREATE TABLE table_13557843_8 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(won) FROM table_13564702_3 WHERE tries_for = \"92\"",
    "question_en": "Name total number of won for tries for 92",
    "question_th": "ตั้งชื่อจำนวนชนะทั้งหมดสำหรับการลอง 92 ครั้ง",
    "context": "CREATE TABLE table_13564702_3 (won VARCHAR, tries_for VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_13564702_3 WHERE tries_for = \"83\"",
    "question_en": "Name the club when tries for is 83",
    "question_th": "ตั้งชื่อสโมสรเมื่อพยายามทำคือ 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_en": "Name the try bonus for kenfig hill rfc",
    "question_th": "ตั้งชื่อโบนัสการลองสำหรับ 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_en": "Name the tries against for played 22 and points against of 183",
    "question_th": "ตั้งชื่อการพยายามต่อต้านสำหรับการเล่น 22 และแต้มต่อ 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_en": "Name the total number of points for when try bonus is 10",
    "question_th": "ตั้งชื่อจำนวนคะแนนรวมเมื่อลองโบนัสคือ 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_en": "Name the number of won for maesteg harlequins rfc",
    "question_th": "ตั้งชื่อจำนวนวอนสำหรับ maesteg harlequins rfc",
    "context": "CREATE TABLE table_13564702_3 (won VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT played FROM table_13564637_3 WHERE lost = \"8\"",
    "question_en": "What amount had all played that lost were 8?",
    "question_th": "จำนวนการเล่นทั้งหมดที่แพ้คือ 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_en": "what is the name of the club where drawn is 1 and lost is 10?",
    "question_th": "สโมสรชื่ออะไร เสมอ 1 แพ้ 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_en": "what are the tries where the game was lost by 4?",
    "question_th": "อะไรคือความพยายามที่เกมแพ้ 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_en": "what amount of try bonus where the game was won by 11?",
    "question_th": "โบนัสลองเท่าไรที่เกมชนะ 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_en": "what is the total amount of tries where the points were 325?",
    "question_th": "ลองไปกี่ครั้งโดยได้ 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_en": "What is the name of the column points against?",
    "question_th": "ชื่อของคอลัมน์ชี้ต่อต้านคืออะไร?",
    "context": "CREATE TABLE table_13564637_4 (Id VARCHAR)"
  },
  {
    "answer": "SELECT points_for FROM table_13564637_4 WHERE points = \"53\"",
    "question_en": "How many points for when the points was 53?",
    "question_th": "เมื่อได้ 53 แต้ม ได้กี่แต้ม?",
    "context": "CREATE TABLE table_13564637_4 (points_for VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT played FROM table_13564637_4 WHERE points_against = \"321\"",
    "question_en": "What is the played total when the points against was 321?",
    "question_th": "จำนวนการเล่นทั้งหมดเมื่อแต้มต่อคือ 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_en": "How many tries for when the points against was 547?",
    "question_th": "พยายามกี่ครั้งเมื่อแต้มต่อคือ 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_en": "How many total games drawn for club tylorstown rfc?",
    "question_th": "คลับ ไทเลอร์สทาวน์ อาร์เอฟซี เสมอกันทั้งหมดกี่เกม?",
    "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_en": "How many communities had a total renewable generation of 1375?",
    "question_th": "มีกี่ชุมชนที่มีการผลิตพลังงานทดแทนทั้งหมด 1,375 ชุมชน",
    "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_en": "What is the community with a wind power of 1042?",
    "question_th": "ชุมชนที่มีพลังงานลม 1,042 คืออะไร?",
    "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_en": "How many races were for a distance of 2020 m?",
    "question_th": "ระยะทาง 2020 ม. มีแข่งทั้งหมดกี่รอบ?",
    "context": "CREATE TABLE table_1358608_4 (group VARCHAR, distance VARCHAR)"
  },
  {
    "answer": "SELECT winner_2nd FROM table_1358608_4 WHERE venue = \"Belmont\"",
    "question_en": "Who was the winner of the race at Belmont?",
    "question_th": "ใครเป็นผู้ชนะการแข่งขันที่เบลมอนต์?",
    "context": "CREATE TABLE table_1358608_4 (winner_2nd VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_1358608_4 WHERE result = \"6th\"",
    "question_en": "On what date did Northerly place 6th?",
    "question_th": "นอร์ธเธอร์ลีอันดับที่ 6 วันไหน?",
    "context": "CREATE TABLE table_1358608_4 (date VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT weight__kg_ FROM table_1358608_4 WHERE race = \"Ranvet Stakes\"",
    "question_en": "What was the weight in kg on the day of the race at Ranvet Stakes?",
    "question_th": "น้ำหนักเป็นกิโลกรัมในวันแข่งขันที่ 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_en": "What was Northerly's result at the race on 19 Oct 2002?",
    "question_th": "ผลการแข่งขันของนอร์ธเธอร์ลีเมื่อวันที่ 19 ต.ค. 2545 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_1358608_4 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT distance FROM table_1358608_4 WHERE group = \"G3\"",
    "question_en": "What was the distance of the race in which Northerly raced in group G3?",
    "question_th": "การแข่งขันที่ภาคเหนืออยู่ในกลุ่ม 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_en": "what's the software executable space protection with dbeingtribution being gentoo",
    "question_th": "การป้องกันพื้นที่ปฏิบัติการของซอฟต์แวร์ที่มี dbeingtribution คืออะไร",
    "context": "CREATE TABLE table_1357052_6 (software_executable_space_protection VARCHAR, distribution VARCHAR)"
  },
  {
    "answer": "SELECT distribution FROM table_1357052_6 WHERE grsecurity = \"No\"",
    "question_en": "what's the dbeingtribution with grsecurity being no",
    "question_th": "ความเป็นมาที่มีความปลอดภัยสูงคืออะไร",
    "context": "CREATE TABLE table_1357052_6 (distribution VARCHAR, grsecurity VARCHAR)"
  },
  {
    "answer": "SELECT grsecurity FROM table_1357052_6 WHERE distribution = \"Debian / Ubuntu\"",
    "question_en": "what's the grsecurity with dbeingtribution being debian / ubuntu",
    "question_th": "ความปลอดภัยที่ดีคืออะไรกับ dbeingtribution ที่เป็นเดเบียน / อูบุนตู",
    "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_en": "what's the dbeingtribution with grsecurity being optional and compile time buffer checks being yes",
    "question_th": "อะไรคือเหตุผลว่า grsecurity เป็นตัวเลือก และการตรวจสอบบัฟเฟอร์เวลาคอมไพล์คือใช่",
    "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_en": "what's the dbeingtribution with rsbac being unknown",
    "question_th": "ไม่ทราบที่มาของ rsbac คืออะไร",
    "context": "CREATE TABLE table_1357052_6 (distribution VARCHAR, rsbac VARCHAR)"
  },
  {
    "answer": "SELECT 2002 AS _commission FROM table_136027_2 WHERE district = \"district 3\"",
    "question_en": "Who is on the 2002 commission from district 3?",
    "question_th": "ใครอยู่ในคณะกรรมการเขต 3 ปี 2545?",
    "context": "CREATE TABLE table_136027_2 (district VARCHAR)"
  },
  {
    "answer": "SELECT others_percentage FROM table_13608101_1 WHERE parish = \"Tangipahoa\"",
    "question_en": "what's the others% with parbeingh being tangipahoa",
    "question_th": "อะไรคือ% อื่นๆ ที่ parbeingh เป็น 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_en": "what is the maximum bush# with others% being 1.57%",
    "question_th": "บุชสูงสุด # คืออะไร โดยที่% อื่นๆ อยู่ที่ 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_en": " how many bush% with total# being 191269",
    "question_th": " กี่บุช% โดยยอดรวม # คือ 191269",
    "context": "CREATE TABLE table_13608101_1 (bush_percentage VARCHAR, total_number VARCHAR)"
  },
  {
    "answer": "SELECT MAX(game) FROM table_13619027_10",
    "question_en": "What is the highest game number?",
    "question_th": "หมายเลขเกมสูงสุดคืออะไร?",
    "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_en": "How many entries are there for weight when the winner is 1st - defier and venue is randwick?",
    "question_th": "มีผู้เข้าร่วมกี่รายการสำหรับน้ำหนักเมื่อผู้ชนะเป็นที่ 1 - ผู้ท้าทายและสถานที่คือแรนด์วิค",
    "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_en": "Who was the jockey at Rosehill and the weight was 57.5 kg?",
    "question_th": "ใครคือจ๊อกกี้ที่ Rosehill และน้ำหนัก 57.5 กก.?",
    "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_en": "When the time is 1:36.30 what shows as winner?",
    "question_th": "เมื่อเวลา 1:36.30 น. รายการไหนเป็นผู้ชนะ?",
    "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_en": "What was the depravitiy of earnings where international sales was 2470?",
    "question_th": "อะไรคือความเสื่อมทรามของรายได้ที่มียอดขายระหว่างประเทศอยู่ที่ 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_en": "What was head count in 2010 where the farm production is 6.9?",
    "question_th": "จำนวนหัวในปี 2010 ที่ผลผลิตทางการเกษตรอยู่ที่ 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_en": "How many districts had an depravity level of 27.7",
    "question_th": "มีกี่อำเภอที่มีระดับความเสื่อมโทรม 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_en": "How low was the income where services is 72.5?",
    "question_th": "รายได้ที่มีบริการ 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_en": "How low was the San Juan income?",
    "question_th": "รายได้ของซานฮวนต่ำแค่ไหน?",
    "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_en": "who is the player with high assists on january 22?",
    "question_th": "นักเตะที่แอสซิสต์สูงในวันที่ 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_en": "what is the total score for the date of january 3?",
    "question_th": "คะแนนรวมของวันที่ 3 มกราคมเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_13619027_7 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_13619053_9 WHERE record = \"15-63\"",
    "question_en": "Which team was in a game with a record of 15-63?",
    "question_th": "ทีมไหนอยู่ในเกมด้วยสถิติ 15-63?",
    "context": "CREATE TABLE table_13619053_9 (team VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_13619053_9 WHERE date = \"April 1\"",
    "question_en": "Which team played on April 1?",
    "question_th": "ทีมไหนเล่นวันที่ 1 เมษายน?",
    "context": "CREATE TABLE table_13619053_9 (team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(high_points) FROM table_13619053_8 WHERE game = 66",
    "question_en": "How many players led Game #66 in scoring?",
    "question_th": "มีผู้เล่นกี่คนที่นำเกม #66 ในการทำคะแนน?",
    "context": "CREATE TABLE table_13619053_8 (high_points VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_13619053_8 WHERE record = \"13-49\"",
    "question_en": "Who scored the most points in the game where the Raptors became 13-49?",
    "question_th": "ใครทำแต้มได้มากที่สุดในเกมที่แร็พเตอร์สกลายเป็น 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_en": "Who did the Raptors play against when their record was 13-48?",
    "question_th": "Raptors เล่นกับใครเมื่อสถิติของพวกเขาอยู่ที่ 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_en": "Who was the high scorer in the game when the team was 1-4?",
    "question_th": "ใครคือผู้ทำประตูสูงสุดในเกมเมื่อทีมอายุ 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_en": "Where did they play and how many attended in the game against minnesota?",
    "question_th": "พวกเขาเล่นที่ไหนและมีกี่คนที่เข้าร่วมในเกมกับมินนิโซตา?",
    "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_en": "Who had the high point total when dee brown (5) had the high assist total?",
    "question_th": "ใครมีคะแนนรวมสูงเมื่อดี บราวน์ (5) มีคะแนนรวมสูง?",
    "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_en": "How many records are there for the games that took place on January 14.",
    "question_th": "มีกี่บันทึกสำหรับเกมที่เกิดขึ้นในวันที่ 14 มกราคม",
    "context": "CREATE TABLE table_13619135_5 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_13619135_5 WHERE team = \"Seattle\"",
    "question_en": "Which players scored the most points when the opposing team was Seattle and how many points did they score?",
    "question_th": "ผู้เล่นคนใดที่ทำคะแนนได้มากที่สุดเมื่อทีมตรงข้ามคือซีแอตเทิลและพวกเขาทำคะแนนได้กี่คะแนน?",
    "context": "CREATE TABLE table_13619135_5 (high_points VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_13619135_5 WHERE team = \"Portland\"",
    "question_en": "What was the location and attendance of the game against Portland?",
    "question_th": "สถานที่และผู้เข้าชมเกมกับพอร์ตแลนด์คือที่ไหน?",
    "context": "CREATE TABLE table_13619135_5 (location_attendance VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_13619135_5 WHERE score = \"W 108–93 (OT)\"",
    "question_en": "What was the record when the score was w 108–93 (ot)?",
    "question_th": "อะไรคือสถิติเมื่อคะแนนอยู่ที่ 108–93 (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_en": " how many total population with catholic being smaller than 31370649.1405057 and region being north africa",
    "question_th": " จำนวนประชากรทั้งหมดที่มีคาทอลิกมีขนาดเล็กกว่า 31370649.1405057 และภูมิภาคเป็นแอฟริกาเหนือ",
    "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ūshin Taikyoku: Igo Dōjō 2700-Mon\"",
    "question_en": "what's the wii points with title and source being tsūshin taikyoku: igo dōjō 2700-mon",
    "question_th": "wii ชี้อะไรด้วยชื่อและแหล่งที่มาเป็น tsushin taikyoku: igo dōjō 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_en": "what's the na -350- with title and source being paper wars: cannon fodder",
    "question_th": "na -350- คืออะไร โดยมีชื่อเรื่องและแหล่งที่มาคือ 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_en": " how many title and source with pal -295- being yes and jp -210- being yes",
    "question_th": "มีกี่ชื่อและแหล่งที่มาโดยที่เพื่อน -295- เป็นใช่ และ jp -210- เป็นใช่",
    "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_en": "what's the jp -210- with title and source being fun! fun! minigolf",
    "question_th": "jp -210- คืออะไรที่มีชื่อเรื่องและแหล่งที่มาสนุก! สนุก! มินิกอล์ฟ",
    "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_en": " how many na -350- with title and source being bokumo sekai wo sukuitai: battle tournament",
    "question_th": " กี่ na -350- โดยมีชื่อและแหล่งที่มาเป็น bokumo sekai wo sukuitai: battle competition",
    "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_en": "What was the gtu winning team when the gto winning team was #48 greenwood racing?",
    "question_th": "ทีมที่ชนะ gtu คืออะไรเมื่อทีมที่ชนะ gto คือ #48 กรีนวูดเรซซิ่ง?",
    "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_en": "What was the to winnning team when the tu winning team was #16 2002?",
    "question_th": "ทีมที่ชนะคืออะไรเมื่อทีมที่ชนะ tu คือ #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_en": "What round was the gto winning team #48 greenwood racing?",
    "question_th": "ทีม #48 กรีนวูดเรซซิ่งของทีม gto ที่ชนะรอบใด",
    "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_en": "What was the to winning team when the tu winning team was joe amato carson baird?",
    "question_th": "ทีมที่ชนะจะเป็นอย่างไรเมื่อทีมที่ชนะคือ โจ อมาโต คาร์สัน แบร์ด?",
    "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_en": "Who is GTU Winning Team's #27 Don Lindley's TO Winning Team?",
    "question_th": "ใครคือทีมที่ชนะ #27 ของทีม Don Lindley จาก GTU ที่ชนะ?",
    "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_en": "What is GTO Winning Team Mike Keyser's RND number?",
    "question_th": "หมายเลข RND ของทีม Mike Keyser ที่ชนะ GTO คืออะไร",
    "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_en": "Who is Gene Felton's TO Winning Team?",
    "question_th": "ทีมผู้ชนะของ Gene Felton คือใคร?",
    "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_en": "What is Peter Gregg Hurley Haywood's results?",
    "question_th": "ผลลัพธ์ของ Peter Gregg Hurley Haywood คืออะไร",
    "context": "CREATE TABLE table_13657749_2 (results VARCHAR, gto_winning_team VARCHAR)"
  },
  {
    "answer": "SELECT MIN(goals_olimpia) FROM table_13688489_1",
    "question_en": "What was the least amount for Goals Olimpia?",
    "question_th": "จำนวนเงินขั้นต่ำสำหรับ Goals Olimpia คือเท่าไร?",
    "context": "CREATE TABLE table_13688489_1 (goals_olimpia INTEGER)"
  },
  {
    "answer": "SELECT COUNT(goals_olimpia) FROM table_13688489_1 WHERE matches = 32",
    "question_en": "How many goals Olimpia recorded for 32 matches?",
    "question_th": "โอลิมเปียบันทึกได้กี่ประตูใน 32 นัด?",
    "context": "CREATE TABLE table_13688489_1 (goals_olimpia VARCHAR, matches VARCHAR)"
  },
  {
    "answer": "SELECT matches FROM table_13688489_1 WHERE goals_olimpia = 149",
    "question_en": "What was the number of matches when the Goals Olimpia was 149?",
    "question_th": "เมื่อประตูโอลิมเปียทำได้ 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_en": "what's the time required for prices to double with highest monthly inflation rate being 29,500%",
    "question_th": "คือเวลาที่ต้องใช้เพื่อให้ราคาเพิ่มขึ้นสองเท่าโดยมีอัตราเงินเฟ้อรายเดือนสูงสุดที่ 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_en": "what's the currency name with highest monthly inflation rate being 29,500%",
    "question_th": "ชื่อสกุลเงินที่มีอัตราเงินเฟ้อรายเดือนสูงสุดคือ 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_en": " how many equivalent daily inflation rate with time required for prices to double being 3.7 days",
    "question_th": " อัตราเงินเฟ้อรายวันเทียบเท่ากับเวลาที่ต้องใช้เพื่อให้ราคาเพิ่มขึ้นสองเท่าเป็น 3.7 วัน",
    "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_en": " how many country with currency name being republika srpska dinar",
    "question_th": " มีกี่ประเทศที่มีชื่อสกุลเงินว่า 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_en": " how many equivalent daily inflation rate with currency name being republika srpska dinar",
    "question_th": " อัตราเงินเฟ้อรายวันที่เทียบเท่ากับสกุลเงินที่ชื่อ 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 × 10 8 %\"",
    "question_en": "what's the country with highest monthly inflation rate being 3.13 × 10 8 %",
    "question_th": "ประเทศไหนมีอัตราเงินเฟ้อสูงสุดต่อเดือนอยู่ที่ 3.13 × 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_en": "How many grand final dual television commentators were there in 1961?",
    "question_th": "ในปี 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_en": "Who was the spokesperson for France in 1970?",
    "question_th": "ใครเป็นโฆษกของฝรั่งเศสในปี 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_en": "What year was Thierry Beccaro the spokesperson?",
    "question_th": "เธียร์รี เบคคาโร เป็นโฆษกในปีไหน?",
    "context": "CREATE TABLE table_1368649_9 (year_s_ INTEGER, spokesperson VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(score) FROM table_13710464_1 WHERE date = \"June 25\"",
    "question_en": "How many games played on june 25?",
    "question_th": "มีกี่เกมที่เล่นในวันที่ 25 มิถุนายน?",
    "context": "CREATE TABLE table_13710464_1 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT winning_team FROM table_13710464_1 WHERE date = \"May 21\"",
    "question_en": "Who won the game on may 21?",
    "question_th": "ใครชนะเกมในวันที่ 21 พฤษภาคม?",
    "context": "CREATE TABLE table_13710464_1 (winning_team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT losing_pitcher FROM table_13710464_1 WHERE attendance = 40583",
    "question_en": "Who was the losing pitcher when 40583 attended?",
    "question_th": "ใครคือเหยือกที่แพ้เมื่อ 40583 เข้าร่วม?",
    "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_en": "Who was the wenning witcher when ezequiel astacio was the losing pitcher?",
    "question_th": "ใครคือแม่มดเวนนิ่ง ในตอนที่เอเซเกล แอสตาซิโอเป็นผู้แพ้?",
    "context": "CREATE TABLE table_13710464_1 (winning_pitcher VARCHAR, losing_pitcher VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_13710464_1 WHERE date = \"May 20\"",
    "question_en": "Where was the game played on may 20?",
    "question_th": "เกมนี้เล่นที่ไหนในวันที่ 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_en": "On what position number is the club with a w-l-d of 5-7-4?",
    "question_th": "สโมสรที่มีคะแนน 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_en": "What's the position of the club with w-l-d of 6-2-8?",
    "question_th": "สโมสรที่มีคะแนน 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_en": "How many games has the club with 29-24 goals for/against score played? ",
    "question_th": " สโมสรที่ทำประตู/ต่อสกอร์ 29-24 ลงเล่นไปแล้วกี่เกม?",
    "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_en": "How many films titled Gie have been nominated?",
    "question_th": "มีภาพยนตร์ชื่อ Gie ได้รับการเสนอชื่อเข้าชิงกี่เรื่อง?",
    "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_en": "Who is the director of the fimm Biola Tak Berdawai?",
    "question_th": "ใครคือผู้กำกับภาพยนตร์ ไบโอลา ทัก เบอร์ดาไว?",
    "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_en": "What title was used in the nomination for the title Biola Tak Berdawai?",
    "question_th": "ชื่ออะไรที่ใช้ในการเสนอชื่อ 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_en": "How many years have a film that uses the title \"Nagabonar\" in the nomination?",
    "question_th": "กี่ปีแล้วที่มีหนังเรื่องนากาโบนาร์เข้าชิง?",
    "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_en": "Who is the director of the film Gie?",
    "question_th": "ใครเป็นผู้กำกับภาพยนตร์เรื่อง 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_en": "Name the try bonus for tries against is 70",
    "question_th": "ตั้งชื่อโบนัสการลองสำหรับการพยายามต่อต้านคือ 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_en": "What is the try bonus for when tries against is 43?",
    "question_th": "โบนัสการลองเมื่อพยายามต่อต้านคือ 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_en": "Name the drawn for llandaff rfc",
    "question_th": "ตั้งชื่อผู้จับฉลากสำหรับ llandaff rfc",
    "context": "CREATE TABLE table_13741576_4 (drawn VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT won FROM table_13741576_4 WHERE try_bonus = \"10\"",
    "question_en": "Name the won for try bonus of 10",
    "question_th": "ตั้งชื่อชนะเพื่อรับโบนัสลอง 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_en": "It was announced on July 2, 2006 that what asset was acquired? ",
    "question_th": " มีการประกาศเมื่อวันที่ 2 กรกฎาคม พ.ศ. 2549 ว่าได้ทรัพย์สินอะไรมา?",
    "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_en": "On what date was it announced that an asset was acquired for US$9 Million? ",
    "question_th": " มีการประกาศซื้อสินทรัพย์มูลค่า 9 ล้านเหรียญสหรัฐในวันที่ใด",
    "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_en": "On what date was the asset acquisition that was announced on February 22, 2007 completed?  ",
    "question_th": " การเข้าซื้อสินทรัพย์ที่ประกาศเมื่อวันที่ 22 กุมภาพันธ์ 2550 เสร็จสิ้นเมื่อใด",
    "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_en": "What was the reported cost of the asset acquired from Standard & Poor's? ",
    "question_th": "ต้นทุนที่รายงานของสินทรัพย์ที่ได้รับมาจาก 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_en": "what's the trim with fuel mileage (latest epa mpg - us ) being 22 city, 30 hwy, 25 comb",
    "question_th": "มีการตัดแต่งด้วยระยะทางน้ำมันเชื้อเพลิง (epa mpg ล่าสุด - us ) เป็น 22 เมือง, 30 ชั่วโมง, 25 หวี",
    "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_en": "what's the trim with engine being 3.5l lz4 v6",
    "question_th": "เครื่อง 3.5l lz4 v6.4 มีอุปกรณ์ตกแต่งอะไรบ้าง",
    "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_en": "what's the torque with fuel mileage (latest epa mpg - us ) being 22 city, 30 hwy, 25 comb",
    "question_th": "แรงบิดเท่าไหร่กับระยะทางน้ำมันเชื้อเพลิง (epa mpg ล่าสุด - us ) คือ 22 เมือง, 30 ชั่วโมง, 25 หวี",
    "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_en": "what's the torque with trim being xe (2009)",
    "question_th": "แรงบิดโดยทริมเป็น xe (2009) เป็นเท่าใด",
    "context": "CREATE TABLE table_1373768_1 (torque VARCHAR, trim VARCHAR)"
  },
  {
    "answer": "SELECT transmission FROM table_1373768_1 WHERE trim = \"XE (2009)\"",
    "question_en": "what's the transmbeingsion with trim being xe (2009)",
    "question_th": "การแปลงร่างด้วยการตัดแต่งเป็น xe (2009) คืออะไร",
    "context": "CREATE TABLE table_1373768_1 (transmission VARCHAR, trim VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_13741576_6 WHERE points_for = \"546\"",
    "question_en": "Nantyglo RFC had 546 points for and how many points?",
    "question_th": "แนนตีโกล อาร์เอฟซี ได้ 546 แต้ม ได้กี่แต้ม?",
    "context": "CREATE TABLE table_13741576_6 (points VARCHAR, points_for VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_13741576_6 WHERE points_against = \"523\"",
    "question_en": "What club had 523 points against? ",
    "question_th": " สโมสรใดมี 523 แต้มต่อ?",
    "context": "CREATE TABLE table_13741576_6 (club VARCHAR, points_against VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_13741576_6 WHERE points_for = \"536\"",
    "question_en": "What club has 536 points for?",
    "question_th": "สโมสรไหนมี 536 แต้มให้?",
    "context": "CREATE TABLE table_13741576_6 (club VARCHAR, points_for VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(club) FROM table_13741576_6 WHERE won = \"7\"",
    "question_en": "How many clubs had 7 wins? ",
    "question_th": " มีกี่สโมสรที่ชนะ 7 ครั้ง?",
    "context": "CREATE TABLE table_13741576_6 (club VARCHAR, won VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_13741576_6 WHERE points_against = \"404\"",
    "question_en": "What club had 404 points against? ",
    "question_th": " สโมสรใดมี 404 แต้มต่อ?",
    "context": "CREATE TABLE table_13741576_6 (club VARCHAR, points_against VARCHAR)"
  },
  {
    "answer": "SELECT drawn FROM table_13741576_6 WHERE tries_for = \"54\"",
    "question_en": "Risca RFC has 54 tries for and how many draws? ",
    "question_th": " Risca RFC ลองเล่น 54 ครั้งและเสมอกันกี่ครั้ง?",
    "context": "CREATE TABLE table_13741576_6 (drawn VARCHAR, tries_for VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_13758945_1 WHERE points = \"36\"",
    "question_en": "What club has 36 points?",
    "question_th": "สโมสรไหนมี 36 แต้ม?",
    "context": "CREATE TABLE table_13758945_1 (club VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT lost FROM table_13758945_1 WHERE points_for = \"353\"",
    "question_en": "What are the lost where points lost is 353?",
    "question_th": "เสียอะไรบ้างโดยที่คะแนนเสียคือ 353?",
    "context": "CREATE TABLE table_13758945_1 (lost VARCHAR, points_for VARCHAR)"
  },
  {
    "answer": "SELECT won FROM table_13758945_1 WHERE losing_bonus = \"0\"",
    "question_en": "What are the won games with losing bonus of 0?",
    "question_th": "เกมใดบ้างที่ชนะโดยเสียโบนัสเป็น 0?",
    "context": "CREATE TABLE table_13758945_1 (won VARCHAR, losing_bonus VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_13758945_1 WHERE points_for = \"565\"",
    "question_en": "Which club has 565 points?",
    "question_th": "สโมสรไหนมี 565 แต้ม?",
    "context": "CREATE TABLE table_13758945_1 (club VARCHAR, points_for VARCHAR)"
  },
  {
    "answer": "SELECT tries_for FROM table_13758945_1 WHERE points = \"77\"",
    "question_en": "How many tries where points is 77?",
    "question_th": "ลองกี่ครั้งโดยที่คะแนนคือ 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_en": "what's the percentage of votes with number of deputies being 112",
    "question_th": "เปอร์เซ็นต์ของคะแนนเสียงโดยจำนวนสมาชิกสภาผู้แทนราษฎรอยู่ที่ 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_en": "what's the percentage of votes with election date being 1981",
    "question_th": "เปอร์เซ็นต์ของคะแนนเสียงโดยวันเลือกตั้งคือปี 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_en": "what's the number of deputies with number of votes received being smaller than 1549176.2765483726 and election date being 1969",
    "question_th": "ส.ส.จำนวนเท่าใดซึ่งคะแนนเสียงที่ได้รับน้อยกว่า 1549176.2765483726 และวันเลือกตั้งคือปี 2512",
    "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_en": "Who wrote the sorry of the episode directed by Dan Attias? ",
    "question_th": " ใครเป็นคนเขียนบทขอโทษตอนที่กำกับโดย 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_en": "What's the season number of the episode directed by Dan Attias? ",
    "question_th": " ตอนที่กำกับโดย 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_en": "What's the title of the episode written by David Simon? ",
    "question_th": " ตอนที่เขียนโดย 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_en": "What year was Skyline High School founded?",
    "question_th": "Skyline High School ก่อตั้งเมื่อปีใด",
    "context": "CREATE TABLE table_13759592_1 (founded VARCHAR, high_school VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(enrollment) FROM table_13759592_1 WHERE high_school = \"Roosevelt\"",
    "question_en": "How many enrollment figures are provided for Roosevelt High School?",
    "question_th": "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_en": "Which location has a team that is nicknamed the Vikings?",
    "question_th": "สถานที่ใดมีทีมที่มีชื่อเล่นว่าไวกิ้ง?",
    "context": "CREATE TABLE table_13759592_1 (location VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT founded FROM table_13759592_2 WHERE location = \"Kirkland\"",
    "question_en": "What year was Kirkland founded?",
    "question_th": "เคิร์กแลนด์ก่อตั้งในปีใด",
    "context": "CREATE TABLE table_13759592_2 (founded VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT institution FROM table_13759592_2 WHERE founded = 1923",
    "question_en": "Which institution was founded in 1923?",
    "question_th": "สถาบันใดก่อตั้งในปี พ.ศ. 2466?",
    "context": "CREATE TABLE table_13759592_2 (institution VARCHAR, founded VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_13759592_2 WHERE institution = \"Interlake\"",
    "question_en": "Where is Interlake located?",
    "question_th": "อินเทอร์เลค ตั้งอยู่ที่ไหน",
    "context": "CREATE TABLE table_13759592_2 (location VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT series FROM table_13762472_13 WHERE date = \"May 23\"",
    "question_en": "What was the series count at on May 23? ",
    "question_th": " ซีรีส์นี้มีจำนวนเท่าใดในวันที่ 23 พฤษภาคม",
    "context": "CREATE TABLE table_13762472_13 (series VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MIN(game) FROM table_13762472_5",
    "question_en": "What is the lowest numbered game on the list?",
    "question_th": "เกมที่มีหมายเลขต่ำสุดในรายการคืออะไร?",
    "context": "CREATE TABLE table_13762472_5 (game INTEGER)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_13762472_5 WHERE location_attendance = \"Delta Center\"",
    "question_en": "Who had the high rebounds at the delta center?",
    "question_th": "ใครมีการรีบาวด์สูงที่เดลต้าเซ็นเตอร์?",
    "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_en": "How many people had the high rebound total when the team was 19-13?",
    "question_th": "เมื่อทีมอายุ 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_en": "Who had the high point total when the team was 24-17?",
    "question_th": "ใครมีแต้มรวมสูงสุดเมื่อทีมอายุ 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_en": "What was the score when the heat played at charlotte arena?",
    "question_th": "สกอร์เมื่อฮีตเล่นที่ชาร์ล็อตต์อารีน่าเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_13762472_7 (score VARCHAR, location_attendance VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_13762472_7 WHERE record = \"40-20\"",
    "question_en": "How many games had the team played after they were 40-20?",
    "question_th": "ทีมเล่นไปแล้วกี่เกมหลังจากอายุ 40-20 ปี?",
    "context": "CREATE TABLE table_13762472_7 (game VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_13762472_3 WHERE date = \"November 25\"",
    "question_en": "What was the score on November 25?",
    "question_th": "คะแนนวันที่ 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_en": "How many players scored the most points when the opposing team was New Orleans/Oklahoma City?",
    "question_th": "มีผู้เล่นกี่คนที่ทำคะแนนได้มากที่สุดเมื่อทีมตรงข้ามคือนิวออร์ลีนส์/โอคลาโฮมาซิตี้",
    "context": "CREATE TABLE table_13762472_3 (high_points VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(high_points) FROM table_13762472_3 WHERE game = 4",
    "question_en": "How many players scored the most points on game 4?",
    "question_th": "มีผู้เล่นกี่คนที่ทำคะแนนได้มากที่สุดในเกมที่ 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_en": "What was the last game where the record was 6-3?",
    "question_th": "เกมสุดท้ายที่มีสถิติ 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_en": "what's the country/region with seasons and winners being season 1, 2012: demetra malalan",
    "question_th": "ประเทศ/ภูมิภาคที่มีฤดูกาลและผู้ชนะคือฤดูกาลที่ 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_en": " how many local title with televbeingion network being tv nova website",
    "question_th": " มีกี่ชื่อในท้องถิ่นที่มีเครือข่ายโทรทัศน์เป็นเว็บไซต์ tv nova",
    "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–2014: Upcoming season\"",
    "question_en": "who is the the judges with seasons and winners being season 1, 2013–2014: upcoming season",
    "question_th": "ซึ่งเป็นผู้ตัดสินในฤดูกาลและผู้ชนะคือฤดูกาลที่ 1 2013–2014: ฤดูกาลที่จะมาถึง",
    "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_en": "who is the the judges with local title being x factor and presenters being heikki paasonen jukka rossi (xtra factor)",
    "question_th": "ซึ่งเป็นกรรมการตัดสิน โดยมีชื่อท้องถิ่นคือ x factor และผู้นำเสนอคือ heikki paasonen jukka rossi (เอ็กซ์ตร้าแฟกเตอร์)",
    "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_en": "what's the local title with seasons and winners being series 1, 2006: lucy benjamin",
    "question_th": "ชื่อท้องถิ่นประจำฤดูกาลและผู้ชนะคือซีรีส์ 1 ปี 2006: ลูซี่ เบนจามิน",
    "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_en": "what's the country/region with presenters being heikki paasonen jukka rossi (xtra factor)",
    "question_th": "ประเทศ/ภูมิภาคที่ผู้นำเสนอคือ heikki paasonen jukka rossi (ปัจจัยเสริม)",
    "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_en": " how many chroma format with name being high profile",
    "question_th": " มีโครมากี่รูปแบบที่มีชื่อสูงโปรไฟล์",
    "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_en": "what's the chroma format with scalable modes being snr- or spatial-scalable and intra dc precbeingion being 8, 9, 10",
    "question_th": "รูปแบบสีที่มีโหมดที่ปรับขนาดได้คืออะไร snr- หรือเชิงพื้นที่ที่ปรับขนาดได้และ precbeing ภายใน dc เท่ากับ 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_en": "what's the chroma format with name being high profile",
    "question_th": "รูปแบบโครเมียมที่มีชื่อว่าโปรไฟล์สูงคืออะไร",
    "context": "CREATE TABLE table_1376890_2 (chroma_format VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_13789248_2 WHERE artist = \"Dave Appell\"",
    "question_en": "what's the points with artbeingt being dave appell",
    "question_th": "ประเด็นที่อาร์ตบีอิ้งเป็นเดฟ แอพเพิลคืออะไร",
    "context": "CREATE TABLE table_13789248_2 (points VARCHAR, artist VARCHAR)"
  },
  {
    "answer": "SELECT artist FROM table_13789248_2 WHERE position = 32",
    "question_en": "who is the the artbeingt with position being 32",
    "question_th": "ซึ่งเป็นผู้มีศิลปะซึ่งมีตำแหน่งอยู่ที่ 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_en": " how many song title with artbeingt being chubby checker",
    "question_th": " มีกี่เพลงที่artbeingtเป็นตัวตรวจสอบอ้วน",
    "context": "CREATE TABLE table_13789248_2 (song_title VARCHAR, artist VARCHAR)"
  },
  {
    "answer": "SELECT MIN(points) FROM table_13789248_2 WHERE highest_position = 1",
    "question_en": "what is the minimum points with highest position being 1",
    "question_th": "จุดต่ำสุดที่มีตำแหน่งสูงสุดคือ 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_en": "What is the maximum number of trnsit passeners when the total number of international passengers is 4870184?",
    "question_th": "จำนวนผู้โดยสาร trnsit สูงสุดคือเท่าไร เมื่อจำนวนผู้โดยสารระหว่างประเทศทั้งหมดคือ 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_en": "What is Edinburgh's airport's freight in metric tonnes?",
    "question_th": "ค่าระวางของสนามบินเอดินบะระเป็นเมตริกตันเท่าไร",
    "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_en": "How many different total number of transit passengers are there in London Luton?",
    "question_th": "จำนวนผู้โดยสารต่อเครื่องใน 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_en": "What are the total freights in metric tonnes when the total transit passengers is 147791?",
    "question_th": "ค่าระวางรวมในหน่วยเมตริกตันเมื่อจำนวนผู้โดยสารต่อเครื่องทั้งหมดคือ 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_en": "What is the total number of passengers of the airport ranked 15?",
    "question_th": "สนามบินอันดับที่ 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_en": "Whatis the original title for lion's den?",
    "question_th": "ชื่อดั้งเดิมของ 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_en": "What is the percent change from 08/09 for belfast international?",
    "question_th": "เปอร์เซ็นต์การเปลี่ยนแปลงจาก 08/52 สำหรับเบลฟัสต์อินเตอร์เนชั่นแนลเป็นเท่าใด",
    "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_en": "How many transit passengers at london gatwick?",
    "question_th": "มีผู้โดยสารต่อเครื่องที่ลอนดอนแกตวิคกี่คน",
    "context": "CREATE TABLE table_13836704_6 (transit_passengers VARCHAR, airport VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_13836704_6 WHERE freight___metric_tonnes__ = 255121",
    "question_en": "What is the rank of the airport with freight ( metric tonnes ) of 255121?",
    "question_th": "สนามบินที่มีสินค้าบรรทุก (เมตริกตัน) อยู่ที่อันดับไหน 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_en": "What is the rank of the airport with a  freight ( metric tonnes ) of 23791?",
    "question_th": "สนามบินที่มีน้ำหนักบรรทุก (เมตริกตัน) อยู่ที่ระดับใด 23,791?",
    "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_en": "what's the airport with total passengers 2009 being 157933",
    "question_th": "สนามบินคืออะไรที่มีผู้โดยสารทั้งหมดในปี 2009 อยู่ที่ 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_en": "what being the maximum total passengers 2008 with change 2008/09 being 6.5%",
    "question_th": "จำนวนผู้โดยสารรวมสูงสุดคือเท่าใดในปี 2551 โดยการเปลี่ยนแปลงปี 2551/52 อยู่ที่ 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_en": "what's the airport with aircraft movements 2009 being smaller than 238223.1659471435 and change 2008/09 being 0.5%",
    "question_th": "สนามบินอะไรที่มีการเคลื่อนไหวของเครื่องบิน ปี 2552 มีขนาดเล็กกว่า 238223.1659471435 และการเปลี่ยนแปลงปี 2551/52 อยู่ที่ 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_en": "what is the maximum aircraft movements 2009 with change 2008/09 being 18.2%",
    "question_th": "การเคลื่อนย้ายเครื่องบินสูงสุดคือเท่าใด ปี 2552 โดยการเปลี่ยนแปลงปี 2551/52 อยู่ที่ 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_en": "what's the total passengers 2008 with change 2008/09 being 6.5%",
    "question_th": "จำนวนผู้โดยสารทั้งหมดในปี 2551 โดยการเปลี่ยนแปลงปี 2551/52 เป็นเท่าใด 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_en": "Name the rank of birmingham airport",
    "question_th": "ตั้งชื่อสนามบินเบอร์มิงแฮม",
    "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_en": "Name the transit passengers for 171078",
    "question_th": "ตั้งชื่อผู้โดยสารต่อเครื่องสำหรับ 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_en": "Beata syta is the minimum year for womens singles.",
    "question_th": "Beata syta คือปีขั้นต่ำสำหรับหญิงเดี่ยว",
    "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_en": "what is the maximum aircraft movements with international passengers being 21002260",
    "question_th": "การเคลื่อนย้ายเครื่องบินสูงสุดโดยผู้โดยสารระหว่างประเทศคือ 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_en": "what is the maximum freight (metric tonnes) with airport being liverpool",
    "question_th": "ค่าขนส่งสูงสุด (เมตริกตัน) โดยสนามบินคือลิเวอร์พูลคือเท่าใด",
    "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_en": "what's the airport with % change 2005/2006 being 13.0%",
    "question_th": "สนามบินคืออะไรที่มี % การเปลี่ยนแปลงในปี 2548/2549 อยู่ที่ 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_en": "what is the maximum aircraft movements with airport being liverpool",
    "question_th": "การเคลื่อนย้ายเครื่องบินสูงสุดโดยสนามบินคือลิเวอร์พูลคือเท่าใด",
    "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_en": "what's the total passengers with freight (metric tonnes) being 827",
    "question_th": "ผู้โดยสารที่มีสินค้ารวม (เมตริกตัน) เป็นจำนวน 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_en": " how many airport with rank being 4",
    "question_th": " มีสนามบินกี่แห่งอันดับที่ 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öf\"",
    "question_en": " how many mens singles with mens doubles being pontus jantti lasse lindelöf",
    "question_th": " มีชายเดี่ยวกี่ชายกับชายคู่เป็น Pontus jantti lasse lindelöf",
    "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_en": "who is the the mens doubles with mixed doubles being jimm aalto nina sarnesto",
    "question_th": "ประเภทชายคู่และคู่ผสม ได้แก่ จิมม์ อัลโต นีนา ซาร์เนสโต",
    "context": "CREATE TABLE table_13857700_1 (mens_doubles VARCHAR, mixed_doubles VARCHAR)"
  },
  {
    "answer": "SELECT mixed_doubles FROM table_13857700_1 WHERE year = 1972",
    "question_en": "who is the the mixed doubles with year being 1972",
    "question_th": "ซึ่งเป็นประเภทคู่ผสมเมื่อปี พ.ศ. 2515",
    "context": "CREATE TABLE table_13857700_1 (mixed_doubles VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT mens_doubles FROM table_13857700_1 WHERE year = 1978",
    "question_en": "who is the the mens doubles with year being 1978",
    "question_th": "ประเภทชายคู่คือปี 2521",
    "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_en": "who is the the mens singles with mens doubles being kaj lindfors kaj osterberg",
    "question_th": "ใครคือชายเดี่ยวและชายคู่คือ 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_en": "How big (in sq mi)  is the island that's 4065 km2?",
    "question_th": "เกาะนี้ใหญ่แค่ไหน (เป็นตารางไมล์) ซึ่งมีขนาด 4,065 ตารางกิโลเมตร",
    "context": "CREATE TABLE table_13897690_1 (area__sqmi_ VARCHAR, area__km_2__ VARCHAR)"
  },
  {
    "answer": "SELECT MIN(rank) FROM table_13897690_1",
    "question_en": "What is the smallest rank number of those used to rank the islands? ",
    "question_th": " หมายเลขอันดับน้อยที่สุดของผู้ที่ใช้จัดอันดับเกาะคือเท่าไร?",
    "context": "CREATE TABLE table_13897690_1 (rank INTEGER)"
  },
  {
    "answer": "SELECT islands_name FROM table_13897690_1 WHERE population__2000_ = \"64\"",
    "question_en": "What's the name is the island with a population of just 64?",
    "question_th": "เกาะนี้มีประชากรเพียง 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_en": "what's the tries against with try bonus being 10",
    "question_th": "การพยายามต่อต้านกับโบนัสการลองเป็น 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_en": "what's the points with played being 22 and points against being 319",
    "question_th": "อะไรคือแต้มเมื่อเล่นเป็น 22 และแต้มเทียบกับ 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_en": "what's the losing bonus with played being 22 and tries against being 38",
    "question_th": "โบนัสที่เสียไปเมื่ออายุ 22 ปีและพยายามเทียบกับอายุ 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_en": "what's the try bonus with club being abercwmboi rfc",
    "question_th": "โบนัสลองกับสโมสรที่เป็น 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_en": "what's the points for with points against being 556",
    "question_th": "มีแต้มเทียบกับการเป็น 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_en": "what's the won with points against being 304",
    "question_th": "ชนะโดยมีคะแนนเทียบกับ 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_en": "Where was held the ceremony for the 12th Pride of Britain Awards?",
    "question_th": "พิธีมอบรางวัล Pride of Britain Awards ครั้งที่ 12 จัดขึ้นที่ไหน?",
    "context": "CREATE TABLE table_13943239_1 (location VARCHAR, episode VARCHAR)"
  },
  {
    "answer": "SELECT episode FROM table_13943239_1 WHERE viewers__millions_ = \"6.06\"",
    "question_en": "What episode of the Pride of Britain Awards had an audience of 6.06 million viewers?",
    "question_th": "ตอนใดของรางวัล Pride of Britain Awards มีผู้ชม 6.06 ล้านคน",
    "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_en": "How much audience did the 7th Pride of Britain Awards ceremony have?",
    "question_th": "พิธีมอบรางวัล Pride of Britain Awards ครั้งที่ 7 มีผู้ชมจำนวนเท่าใด",
    "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âtard-Montrachet\"",
    "question_en": "what's the vineyard surface (2010) with grand cru being bienvenues-bâtard-montrachet",
    "question_th": "พื้นผิวไร่องุ่นคืออะไร (2010) โดยที่ grand cru คือ bienvenues-bâtard-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_en": "what's the village with wine style being red wine and vineyard surface (2010) being hectares (acres)",
    "question_th": "หมู่บ้านที่มีสไตล์ไวน์คือไวน์แดงและพื้นผิวไร่องุ่น (2010) เป็นเฮกตาร์ (เอเคอร์)",
    "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ée-Conti\"",
    "question_en": "what's the wine style with grand cru being romanée-conti",
    "question_th": "ไวน์สไตล์ไหนที่แกรนด์ครูเป็นโรมาเน-คอนติ",
    "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_en": "what's the wine style with village being puligny-montrachet [d ]",
    "question_th": "ไวน์สไตล์ไหนที่หมู่บ้านเป็น 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_en": "How many classes between senior and junior year for world history",
    "question_th": "มีกี่ชั้นเรียนระหว่างรุ่นพี่และรุ่นน้องสำหรับประวัติศาสตร์โลก",
    "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_en": "What is after intermediate algebra",
    "question_th": "อะไรอยู่หลังพีชคณิตระดับกลาง",
    "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_en": "what is the maximum # with original airdate being march 14, 2001",
    "question_th": "สูงสุด # คือเท่าใด โดยออกอากาศครั้งแรกคือวันที่ 14 มีนาคม พ.ศ. 2544",
    "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_en": " how many original airdate with writer(s) being becky hartman edwards and director being adam nimoy",
    "question_th": " มีวันที่ออกอากาศครั้งแรกกี่เรื่อง โดยผู้เขียนเป็นเบ็คกี้ ฮาร์ทแมน เอ็ดเวิร์ดส์ และผู้กำกับเป็นอดัม นิมอย",
    "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_en": "who is the the writer(s) with original airdate being february 7, 2001",
    "question_th": "ซึ่งเป็นผู้เขียน ออกอากาศครั้งแรกเมื่อ 7 กุมภาพันธ์ พ.ศ. 2544",
    "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_en": "what's the frequency mhz with city of license being chattanooga, tennessee",
    "question_th": "ความถี่ mhz ซึ่งเมืองที่ได้รับใบอนุญาตคือแชตทานูกา รัฐเทนเนสซี",
    "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_en": " how many height m ( ft ) with frequency mhz being 100.1",
    "question_th": " ความสูงกี่เมตร (ฟุต) โดยมีความถี่ mhz เท่ากับ 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_en": "what's the fcc info with call sign being w221aw",
    "question_th": "ข้อมูล fcc ที่มีสัญญาณเรียกขานเป็น 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_en": " how many height m ( ft ) with notes being via wccv; formerly w236aj",
    "question_th": " ความสูงกี่เมตร (ฟุต) โดยบันทึกผ่าน wccv; เดิมคือ 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_en": "what's the fcc info with call sign being w265av",
    "question_th": "ข้อมูล fcc ที่มีสัญญาณเรียกขานว่า 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_en": "what's the capacity with team being berwick rangers",
    "question_th": "ความสามารถของทีมที่เป็นเบอร์วิค เรนเจอร์สคืออะไร",
    "context": "CREATE TABLE table_14003108_1 (capacity VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_14003108_1 WHERE stadium = \"Borough Briggs\"",
    "question_en": "what's the team with stadium being borough briggs",
    "question_th": "ทีมที่สนามกีฬาเป็นโบโรห์บริกส์คือทีมอะไร",
    "context": "CREATE TABLE table_14003108_1 (team VARCHAR, stadium VARCHAR)"
  },
  {
    "answer": "SELECT MAX(lowest) FROM table_14003108_1 WHERE average = 734",
    "question_en": "what is the maximum lowest with average being 734",
    "question_th": "ค่าสูงสุดต่ำสุดโดยเฉลี่ยอยู่ที่ 734",
    "context": "CREATE TABLE table_14003108_1 (lowest INTEGER, average VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(highest) FROM table_14003108_1 WHERE team = \"Forfar Athletic\"",
    "question_en": " how many highest with team being forfar athletic",
    "question_th": "มีทีมที่สูงที่สุดกี่ทีม",
    "context": "CREATE TABLE table_14003108_1 (highest VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT bleeding_time FROM table_14006_1 WHERE condition = \"Factor V deficiency\"",
    "question_en": "what's the bleeding time with condition being factor v deficiency",
    "question_th": "เวลาเลือดออกโดยที่ภาวะขาดปัจจัย v คืออะไร",
    "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_en": "what's the bleeding time with condition being liver failure, end-stage",
    "question_th": "เลือดออกเมื่อไรคือภาวะตับวายระยะสุดท้าย",
    "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_en": "what's the bleeding time with platelet count being decreased or unaffected",
    "question_th": "เวลาเลือดออกที่จำนวนเกล็ดเลือดลดลงหรือไม่ได้รับผลกระทบคือเท่าใด",
    "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_en": "what's the condition with bleeding time being unaffected and prothrombin time being prolonged",
    "question_th": "เป็นยังไงบ้าง โดยที่ระยะเวลาเลือดออกไม่ได้รับผลกระทบ และเวลาของ prothrombin นานขึ้น",
    "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_en": "what's the bleeding time with platelet count being decreased and prothrombin time being prolonged",
    "question_th": "เวลาเลือดออกโดยที่จำนวนเกล็ดเลือดลดลงและเวลาของ prothrombin นานขึ้น",
    "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_en": "what's the bleeding time with partial thromboplastin time being unaffected and condition being liver failure , early",
    "question_th": "เวลาเลือดออกคือเท่าไร โดยเวลาของ thromboplastin บางส่วนไม่ได้รับผลกระทบ และภาวะตับวาย ในช่วงต้น",
    "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_en": "How many of the elected officials are on the Economic Matters committee?",
    "question_th": "เจ้าหน้าที่ที่ได้รับการเลือกตั้งอยู่ในคณะกรรมการเรื่องเศรษฐกิจมีกี่คน",
    "context": "CREATE TABLE table_14009909_1 (first_elected VARCHAR, committee VARCHAR)"
  },
  {
    "answer": "SELECT delegate FROM table_14009909_1 WHERE first_elected = 2003",
    "question_en": "Name the delegate first elected in 2003?",
    "question_th": "ระบุชื่อผู้แทนที่ได้รับเลือกครั้งแรกในปี 2546 หรือไม่?",
    "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_en": "What are the counties represented in District 12.1 12a?",
    "question_th": "มณฑลใดที่เป็นตัวแทนในเขต 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_en": "Which country has a delegate who was first elected in 2006?",
    "question_th": "ประเทศใดมีผู้แทนที่ได้รับเลือกครั้งแรกในปี 2549",
    "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_en": "Who are the foreign players representing Ekaterinburg?",
    "question_th": "นักเตะต่างชาติที่เป็นตัวแทนของเอคาเทอรินเบิร์กคือใคร?",
    "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_en": "What town is Volleyball Sportiv Complex (3 500) located in?",
    "question_th": "Volleyball Sportiv Complex (3 500) ตั้งอยู่ในเมืองใด?",
    "context": "CREATE TABLE table_14015965_1 (town VARCHAR, arena__capacity_ VARCHAR)"
  },
  {
    "answer": "SELECT arena__capacity_ FROM table_14015965_1 WHERE previous_season = \"6\"",
    "question_en": "What arena was season 6 played at?",
    "question_th": "ซีซั่น 6 เล่นที่เวทีไหน?",
    "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_en": "Who was the head coach in season 2?",
    "question_th": "ใครคือหัวหน้าโค้ชในฤดูกาลที่ 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_en": "On what circuit was the City of Ipswich 400 race  held?",
    "question_th": "การแข่งขัน City of Ipswich 400 จัดขึ้นที่สนามใด",
    "context": "CREATE TABLE table_14016079_1 (circuit VARCHAR, race_title VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_14016079_1 WHERE circuit = \"Symmons Plains Raceway\"",
    "question_en": "Who was the winner on the Symmons Plains Raceway?",
    "question_th": "ใครคือผู้ชนะในการแข่งขัน Symmons Plains Raceway",
    "context": "CREATE TABLE table_14016079_1 (winner VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_14016079_1 WHERE rd = 8",
    "question_en": "What were the dates for Round 8?",
    "question_th": "รอบ 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_en": "What was the number of rounds on the Hidden Valley Raceway?",
    "question_th": "สนามแข่งรถ 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_en": "What round was held at the Queensland Raceway?",
    "question_th": "สนาม 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_en": "what the highest number for the opposite of offense for the green bay packers",
    "question_th": "จำนวนสูงสุดที่ตรงข้ามกับการรุกของกรีนเบย์แพ็คเกอร์คือเท่าใด",
    "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_en": "How many counties have an area of 1,205.4 km2?",
    "question_th": "มีกี่มณฑลที่มีพื้นที่ 1,205.4 ตารางกิโลเมตร",
    "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_en": "What capital has a population of 596268?",
    "question_th": "เมืองหลวงใดมีประชากร 596,268 คน?",
    "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_en": "what's the capital with area (km 2 ) being 12,245.9",
    "question_th": "เมืองหลวงมีพื้นที่เท่าไร (กม. 2) 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_en": "what's the former province with area (km 2 ) being 12,245.9",
    "question_th": "จังหวัดเดิมคือจังหวัดใด มีพื้นที่ (กม. 2) 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_en": " how many capital with population census 2009 being 284657",
    "question_th": " มีทุนกี่ทุน โดยการสำรวจสำมะโนประชากร พ.ศ. 2552 เป็น 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_en": "what's the area (km 2 ) with population census 2009 being 939370",
    "question_th": "พื้นที่ (กิโลเมตร 2) คือเท่าใด โดยการสำรวจสำมะโนประชากรปี 2552 เป็น 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_en": "what is the minimum code with area (km 2 ) being 12,245.9",
    "question_th": "รหัสขั้นต่ำคือเท่าใด พื้นที่ (กม. 2) คือ 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_en": "what's the county with code being 2",
    "question_th": "จังหวัดอะไรที่มีรหัสเป็น 2",
    "context": "CREATE TABLE table_1404456_1 (county VARCHAR, code VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_1405704_1 WHERE winning_driver = \"Tom Sneva\"",
    "question_en": "In what year did Tom Sneva win a race?",
    "question_th": "Tom Sneva ชนะการแข่งขันในปีใด",
    "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_en": "What kind of chassis did a winning car with a Foyt engine have in 1979?",
    "question_th": "รถที่ชนะด้วยเครื่องยนต์ Foyt มีแชสซีประเภทใดในปี 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_en": "What team does Al Unser drive for?",
    "question_th": "อัล อุนเซอร์ ขับให้ทีมไหน?",
    "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_en": "What team has a vehicle with an Offenhauser engine and a McLaren chassis?",
    "question_th": "ทีมใดมีรถที่ใช้เครื่องยนต์ Offenhauser และแชสซีของ McLaren?",
    "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_en": "What team raced with a Foyt engine in the Texas Grand Prix?",
    "question_th": "ทีมใดใช้เครื่องยนต์ Foyt ในการแข่งขัน 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_en": "What network is virtual channel 9.1 linked to?",
    "question_th": "Virtual Channel 9.1 เชื่อมโยงกับเครือข่ายใด?",
    "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_en": "Who owns the station on channel 33.3?",
    "question_th": "ใครเป็นเจ้าของสถานีช่อง 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_en": "What is JCTV's digital channel?",
    "question_th": "ช่องดิจิทัลของ JCTV คืออะไร?",
    "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_en": "What is channel 33.7's official call sign?",
    "question_th": "สัญญาณเรียกขานอย่างเป็นทางการของช่อง 33.7 คืออะไร?",
    "context": "CREATE TABLE table_1404984_1 (call_sign VARCHAR, virtual_channel VARCHAR)"
  },
  {
    "answer": "SELECT virtual_channel FROM table_1404984_1 WHERE network = \"HSN\"",
    "question_en": "What is HSN's official virtual channel in Minneapolis-St. Paul?",
    "question_th": "ช่องทางเสมือนอย่างเป็นทางการของ HSN ใน Minneapolis-St. คืออะไร พอล?",
    "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_en": "How many stations own Bounce TV?",
    "question_th": "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_en": "How many points were made when the tries for was 83?",
    "question_th": "ทำได้กี่แต้มเมื่อพยายามทำได้ 83 แต้ม?",
    "context": "CREATE TABLE table_14058433_3 (points VARCHAR, tries_for VARCHAR)"
  },
  {
    "answer": "SELECT points_for FROM table_14058433_3 WHERE lost = \"7\"",
    "question_en": "How many points are there when the lost is 7?",
    "question_th": "แพ้ 7 มีกี่คะแนน?",
    "context": "CREATE TABLE table_14058433_3 (points_for VARCHAR, lost VARCHAR)"
  },
  {
    "answer": "SELECT losing_bonus FROM table_14058433_3 WHERE points = \"24\"",
    "question_en": "What is the losing bonus when the points are 24?",
    "question_th": "โบนัสที่เสียไปเมื่อแต้มถึง 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_en": "How many losing points does Llandudno RFC have?",
    "question_th": "ลานดัดโน อาร์เอฟซี มีแต้มเสียกี่แต้ม?",
    "context": "CREATE TABLE table_14058433_3 (losing_bonus VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT try_bonus FROM table_14058433_3 WHERE club = \"Ruthin RFC\"",
    "question_en": "What is the try bonus for Ruthin RFC?",
    "question_th": "โบนัสการลองของ 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_en": " how many tries against with lost being 11",
    "question_th": " มีกี่ครั้งที่พยายามต่อต้านโดยแพ้ 11",
    "context": "CREATE TABLE table_14058433_4 (tries_against VARCHAR, lost VARCHAR)"
  },
  {
    "answer": "SELECT won FROM table_14058433_4 WHERE try_bonus = \"12\"",
    "question_en": "what's the won with try bonus being 12",
    "question_th": "ชนะด้วยโบนัสลองเป็น 12 คืออะไร",
    "context": "CREATE TABLE table_14058433_4 (won VARCHAR, try_bonus VARCHAR)"
  },
  {
    "answer": "SELECT drawn FROM table_14058433_4 WHERE lost = \"4\"",
    "question_en": "what's the drawn with lost being 4",
    "question_th": "สิ่งที่เสมอกันกับการแพ้คือ 4",
    "context": "CREATE TABLE table_14058433_4 (drawn VARCHAR, lost VARCHAR)"
  },
  {
    "answer": "SELECT points_against FROM table_14058433_4 WHERE lost = \"13\"",
    "question_en": "what's the points against with lost being 13",
    "question_th": "เสียคะแนนไป 13 แต้มจะเสียอะไร",
    "context": "CREATE TABLE table_14058433_4 (points_against VARCHAR, lost VARCHAR)"
  },
  {
    "answer": "SELECT points_against FROM table_14058433_4 WHERE won = \"11\"",
    "question_en": "what's the points against with won being 11",
    "question_th": "แต้มที่ชนะคือ 11 คืออะไร",
    "context": "CREATE TABLE table_14058433_4 (points_against VARCHAR, won VARCHAR)"
  },
  {
    "answer": "SELECT drawn FROM table_14058433_4 WHERE points_for = \"350\"",
    "question_en": "what's the drawn with points for being 350",
    "question_th": "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_en": " how many points for with points against being 177",
    "question_th": " ได้กี่แต้มกับแต้มต่อเป็น 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_en": "what's the lost with club being colwyn bay rfc",
    "question_th": "สโมสรที่เป็น 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_en": "what's the won with tries for being 84",
    "question_th": "ได้อะไรจากการพยายามเป็น 84",
    "context": "CREATE TABLE table_14058433_5 (won VARCHAR, tries_for VARCHAR)"
  },
  {
    "answer": "SELECT won FROM table_14058433_5 WHERE points_for = \"596\"",
    "question_en": "what's the won with points for being 596",
    "question_th": "ชนะได้เท่าไหร่โดยมีคะแนนเป็น 596",
    "context": "CREATE TABLE table_14058433_5 (won VARCHAR, points_for VARCHAR)"
  },
  {
    "answer": "SELECT points_for FROM table_14058433_5 WHERE lost = \"4\"",
    "question_en": "what's the points for with lost being 4",
    "question_th": "แต้มที่หายไปคือ 4 อะไร",
    "context": "CREATE TABLE table_14058433_5 (points_for VARCHAR, lost VARCHAR)"
  },
  {
    "answer": "SELECT won FROM table_14058433_5 WHERE points_for = \"643\"",
    "question_en": "what's the won with points for being 643",
    "question_th": "ชนะได้เท่าไหร่ด้วยคะแนนเป็น 643",
    "context": "CREATE TABLE table_14058433_5 (won VARCHAR, points_for VARCHAR)"
  },
  {
    "answer": "SELECT telugu_తెలుగు FROM table_1408397_3 WHERE mongolian = \"Хонгорцог\"",
    "question_en": "What is the Telugu word for хонгорцог in Mongolian?",
    "question_th": "хонгорцог ในภาษามองโกเลียคืออะไร",
    "context": "CREATE TABLE table_1408397_3 (telugu_తెలుగు VARCHAR, mongolian VARCHAR)"
  },
  {
    "answer": "SELECT malayalam_മലയാളം FROM table_1408397_3 WHERE kannada_ಕನ್ನಡ = \"Punarvasu ಪುನರ್ವಸು\"",
    "question_en": "What is the Malayalam word for punarvasu ಪುನರ್ವಸು in Kannada?",
    "question_th": "punarvasu ಪುನರ್ವಸು คืออะไร?",
    "context": "CREATE TABLE table_1408397_3 (malayalam_മലയാളം VARCHAR, kannada_ಕನ್ನಡ VARCHAR)"
  },
  {
    "answer": "SELECT malayalam_മലയാളം FROM table_1408397_3 WHERE _number = 10",
    "question_en": "What is the Malayalam word that is listed as #10 in the table?",
    "question_th": "คำภาษามาลายาลัมที่อยู่ในอันดับที่ 10 ในตารางคืออะไร",
    "context": "CREATE TABLE table_1408397_3 (malayalam_മലയാളം VARCHAR, _number VARCHAR)"
  },
  {
    "answer": "SELECT points_against FROM table_14070062_4 WHERE tries_against = \"75\"",
    "question_en": "tell the score when the times gone was 75",
    "question_th": "บอกคะแนนเมื่อเวลาที่ผ่านไปคือ 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_en": "was the the score when the tries was 743",
    "question_th": "คือคะแนนเมื่อพยายาม 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_en": "tell how many wins there was when the score was 490",
    "question_th": "บอกว่าชนะไปกี่ครั้งเมื่อได้คะแนน 490",
    "context": "CREATE TABLE table_14070062_4 (won VARCHAR, points_for VARCHAR)"
  },
  {
    "answer": "SELECT try_bonus FROM table_14070062_4 WHERE points = \"48\"",
    "question_en": "how many extra points were there when the score was 48",
    "question_th": "มีคะแนนพิเศษกี่คะแนนเมื่อคะแนนเป็น 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_en": "what was the extra score when the overall score was 52",
    "question_th": "คะแนนพิเศษเป็นเท่าใดเมื่อคะแนนรวมคือ 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_en": "what was the score when the extras were 6",
    "question_th": "ตอนที่ตัวสำรองได้ 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_en": "What country's capital is buenos aires?",
    "question_th": "บัวโนสไอเรสเป็นเมืองหลวงของประเทศใด",
    "context": "CREATE TABLE table_14098_1 (country_or_territory_with_flag VARCHAR, capital VARCHAR)"
  },
  {
    "answer": "SELECT area__km²___per_sqmi_ FROM table_14098_1 WHERE country_or_territory_with_flag = \"Uruguay\"",
    "question_en": "What unit of measurement for uruguay?",
    "question_th": "อุรุกวัยมีหน่วยวัดอะไร",
    "context": "CREATE TABLE table_14098_1 (area__km²___per_sqmi_ VARCHAR, country_or_territory_with_flag VARCHAR)"
  },
  {
    "answer": "SELECT country_or_territory_with_flag FROM table_14098_1 WHERE capital = \"Santiago\"",
    "question_en": "What country'c capital is santiago?",
    "question_th": "ซันติอาโกเป็นเมืองหลวงของประเทศใด",
    "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_en": "who is the the voice actor (englbeingh 1998 / pioneer) with voice actor (englbeingh 1997 / saban) being alec willows and voice actor (englbeingh 2006 / funimation) being andy mcavin",
    "question_th": "ผู้ให้เสียงพากย์ (englbeingh 1998 / ผู้บุกเบิก) โดยนักพากย์ (englbeingh 1997 / สบัน) เป็น alec willows และนักพากย์ (englbeingh 2006 / funimation) เป็น 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_en": "what's the character name with voice actor (englbeingh 1997 / saban) being ian james corlett",
    "question_th": "ชื่อตัวละครกับนักพากย์ (ภาษาอังกฤษ 1997 / สบัน) คือเอียน เจมส์ คอร์เล็ตต์",
    "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_en": "what's the character name with voice actor (englbeingh 1998 / pioneer) being paul dobson",
    "question_th": "ตัวละครชื่ออะไร นักพากย์ (อังกฤษ 1998 / ผู้บุกเบิก) เป็นพอล ด็อบสัน",
    "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_en": " how many voice actor (englbeingh 1998 / pioneer) with voice actor (japanese) being shinobu satouchi",
    "question_th": " นักพากย์ (อังกฤษ 1998 / ผู้บุกเบิก) มีนักพากย์ (ชาวญี่ปุ่น) เป็น 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_en": "who is the the voice actor (japanese) with character name being goku",
    "question_th": "ผู้ให้เสียงพากย์ (ภาษาญี่ปุ่น) ชื่อตัวละครคือ โกคู",
    "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_en": "how many big wins does peru state college have",
    "question_th": "วิทยาลัยรัฐเปรูได้รับชัยชนะครั้งใหญ่กี่ครั้ง",
    "context": "CREATE TABLE table_14115168_4 (national_titles VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_14115168_4 WHERE national_titles = 14",
    "question_en": "which school has 14 large championships",
    "question_th": "โรงเรียนไหนมีแชมป์ใหญ่ถึง 14 รายการ",
    "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_en": "how many overall championships does concordia university have",
    "question_th": "มหาวิทยาลัยคอนคอร์เดียมีการแข่งขันชิงแชมป์โดยรวมกี่รายการ",
    "context": "CREATE TABLE table_14115168_4 (national_titles INTEGER, school VARCHAR)"
  },
  {
    "answer": "SELECT duration FROM table_14118521_1 WHERE mission = \"STS-87\"",
    "question_en": "what's the duration with mission being sts-87",
    "question_th": "ภารกิจอยู่ที่ 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_en": "what's the edo flight with duration being 17 days, 15 hours, 53 minutes, 18 seconds",
    "question_th": "เที่ยวบินเอโดะคืออะไร โดยมีระยะเวลา 17 วัน 15 ชั่วโมง 53 นาที 18 วินาที",
    "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_en": "what's the primary payload(s) with launch date being july 8, 1994",
    "question_th": "เพย์โหลดหลักที่มีวันเปิดตัวคือวันที่ 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_en": "what's the mission with primary payload(s) being spacelab life sciences-2",
    "question_th": "ภารกิจที่มีน้ำหนักบรรทุกหลักคือ 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_en": "what's the shuttle with primary payload(s) being united states microgravity laboratory-1",
    "question_th": "กระสวยอวกาศที่มีน้ำหนักบรรทุกหลักคือห้องปฏิบัติการแรงโน้มถ่วงต่ำของสหรัฐอเมริกา-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_en": " how many primary payload(s) with shuttle being columbia and duration being 13 days, 19 hours, 30 minutes, 4 seconds",
    "question_th": " จำนวนน้ำหนักบรรทุกหลักที่มีรถรับส่งเป็นโคลัมเบียและระยะเวลาคือ 13 วัน 19 ชั่วโมง 30 นาที 4 วินาที",
    "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_en": "what's the pts with team being kopron team scot",
    "question_th": "คะแนนของทีมที่เป็นทีมโคปรอนคืออะไร",
    "context": "CREATE TABLE table_14139408_1 (pts VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT pts FROM table_14139408_1 WHERE position = \"NC\"",
    "question_en": "what's the pts with position being nc",
    "question_th": "คะแนนที่มีตำแหน่งเป็น 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_en": "what's the pts with poles being smaller than 1.0 and motorcycle being aprilia and class being 250cc",
    "question_th": "อะไรคือจุดที่มีเสาที่เล็กกว่า 1.0 และรถจักรยานยนต์เป็น Aprilia และคลาสเป็น 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_en": "what's the poles with pts being 81",
    "question_th": "เสาที่มีแต้มเป็น 81 คืออะไร",
    "context": "CREATE TABLE table_14139408_1 (poles VARCHAR, pts VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(class) FROM table_14139408_1 WHERE poles > 1.0",
    "question_en": " how many class with poles being bigger than 1.0",
    "question_th": " มีกี่คลาสที่มีเสาใหญ่กว่า 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_en": "what's the position with team being skilled racing team",
    "question_th": "ตำแหน่งอะไรกับทีมที่เป็นทีมแข่งฝีมือดี",
    "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_en": "Who was the defensive award winner in February when the rookie award was given to Rhys Duch?",
    "question_th": "ใครคือผู้ชนะรางวัลแนวรับในเดือนกุมภาพันธ์เมื่อรีห์ส ดุช มอบรางวัลมือใหม่?",
    "context": "CREATE TABLE table_14132239_3 (defensive VARCHAR, month VARCHAR, rookie VARCHAR)"
  },
  {
    "answer": "SELECT offensive FROM table_14132239_3 WHERE overall = \"Bob Watson\"",
    "question_en": "Who was the offensive award winner the week when Bob Watson was given the overall award?",
    "question_th": "ใครคือผู้ชนะรางวัลเกมรุกในสัปดาห์ที่บ็อบ วัตสัน ได้รับรางวัลโดยรวม?",
    "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_en": "Who was the defensive award winner when the rookie award was given to Daryl Veltman and the offensive award was given to Mark Steenhuis?",
    "question_th": "ใครคือผู้ชนะรางวัลแนวรับเมื่อดาริล เวลต์แมนมอบรางวัลมือใหม่ และมาร์ค สตีนฮุสมอบรางวัลแนวรุก?",
    "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_en": "Who won the rookie award the week the transition award was given to Brodie Merrill and the offensive award was given to Pat Maddalena?",
    "question_th": "ใครได้รับรางวัลมือใหม่ในสัปดาห์ที่มอบรางวัลการเปลี่ยนผ่านให้กับ Brodie Merrill และรางวัลแนวรุกมอบให้ 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_en": "What is the lowest enrollment value out of the enrollment values I'd the schools with a 3A WIAA clarification? ",
    "question_th": " ค่าลงทะเบียนต่ำสุดจากค่าการลงทะเบียนที่ฉันให้กับโรงเรียนที่มีการชี้แจง 3A WIAA คือเท่าใด",
    "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_en": "What is the WIAA classification of Oakland Alternative High School? ",
    "question_th": " การจำแนกประเภท WIAA ของ 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_en": "When was Mount Tahoma established? ",
    "question_th": " ภูเขาทาโฮมาก่อตั้งขึ้นเมื่อใด",
    "context": "CREATE TABLE table_1414702_3 (established INTEGER, high_school VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_1414702_3 WHERE established = 1973",
    "question_en": "What's the note about the school established in the year of 1973?",
    "question_th": "อะไรคือหมายเหตุเกี่ยวกับโรงเรียนที่ก่อตั้งในปี 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_en": "Who was in the 4th district in 1924?",
    "question_th": "ใครอยู่อำเภอที่ 4 ในปี พ.ศ. 2467?",
    "context": "CREATE TABLE table_14123513_5 (year VARCHAR)"
  },
  {
    "answer": "SELECT fte_teachers FROM table_1414743_1 WHERE school_level = \"Middle\" AND city = \"Sunnyvale\"",
    "question_en": "List all FTE middle school teachers in Sunnyvale.",
    "question_th": "รายชื่อครูโรงเรียนมัธยม FTE ทั้งหมดในซันนีเวล",
    "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_en": "What is the highest number of students with a teacher:student ratio of 20.8?",
    "question_th": "จำนวนนักเรียนที่มีครูสูงสุดคือเท่าใด:อัตราส่วนนักเรียน 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_en": "How many FTE teachers are there when the student:teacher ration is 19?",
    "question_th": "มีครู FTE กี่คนเมื่อปันส่วนนักเรียน:ครูอายุ 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_en": "What edition of congress for member-elect richard p. giles?",
    "question_th": "สภาคองเกรสสำหรับสมาชิกที่ได้รับเลือก ริชาร์ด พี. ฉบับใด ไจล์ส?",
    "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_en": " how many mean elevation with lowest point being gulf of mexico and state being texas",
    "question_th": " ค่าเฉลี่ยระดับความสูงโดยจุดต่ำสุดคืออ่าวเม็กซิโก และรัฐคือเท็กซัส",
    "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_en": "what's the highest point with lowest point being belle fourche river at south dakota border",
    "question_th": "จุดสูงสุดและจุดต่ำสุดคือแม่น้ำเบลล์โฟร์เชที่ชายแดนเซาท์ดาโกตาคือจุดใด",
    "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_en": "what's the lowest elevation with highest point being charles mound",
    "question_th": "ระดับความสูงต่ำสุดคือเท่าไร จุดสูงสุดคือเนินชาร์ลส์",
    "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_en": "what's the lowest point with highest point being mount greylock",
    "question_th": "จุดต่ำสุดกับจุดสูงสุดคือจุดเมานต์เกรย์ล็อกคือเท่าใด",
    "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_en": "what's the state with highest point being mount katahdin",
    "question_th": "รัฐที่มีจุดสูงสุดคือภูเขาคาทาห์ดิน",
    "context": "CREATE TABLE table_1416612_1 (state VARCHAR, highest_point VARCHAR)"
  },
  {
    "answer": "SELECT language FROM table_14160327_4 WHERE genre = \"Glam\"",
    "question_en": "What language for the glam genre?",
    "question_th": "ภาษาอะไรสำหรับประเภทที่น่ามอง?",
    "context": "CREATE TABLE table_14160327_4 (language VARCHAR, genre VARCHAR)"
  },
  {
    "answer": "SELECT exportable FROM table_14160327_4 WHERE decade = \"1980s\"",
    "question_en": "What game allow the 1980s to be exportable?",
    "question_th": "เกมใดที่อนุญาตให้ส่งออกช่วงปี 1980 ได้",
    "context": "CREATE TABLE table_14160327_4 (exportable VARCHAR, decade VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(family_friendly) FROM table_14160327_4 WHERE decade = \"1990s\"",
    "question_en": "How many family friendly games are in the 1990s?",
    "question_th": "มีเกมที่เหมาะกับครอบครัวกี่เกมในปี 1990",
    "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_en": "When 0-1 is the aggregate what are the  home (1st leg)?",
    "question_th": "เมื่อสกอร์รวม 0-1 เจ้าบ้าน (เลกที่ 1) คืออะไร?",
    "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_en": "When belgrano is the home (1st leg) what is the  home (2nd leg)?",
    "question_th": "เมื่อเบลกราโน่เป็นเหย้า (เลกที่ 1) บ้านคืออะไร (เลกที่ 2)?",
    "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_en": "When platense is the home (2nd leg) what is the 2nd leg?",
    "question_th": "เมื่อแพลนเซนเป็นเจ้าบ้าน (ขาที่ 2) ขาที่ 2 คืออะไร?",
    "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_en": "When altos hornos zapla is the  home (1st leg) what is overall amount of 1st leg?",
    "question_th": "เมื่ออัลโตส ฮอร์นอส ซาปลาเป็นเจ้าบ้าน (เลกแรก) เลกแรกโดยรวมเป็นจำนวนเท่าใด?",
    "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_en": "When temperley is the home (2nd leg) what is the home (1st leg)?",
    "question_th": "เมื่อเทมเปอร์ลีย์เป็นเจ้าบ้าน (เลกที่ 2) บ้านคืออะไร (เลกที่ 1)?",
    "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_en": "How many 2nd legs had an aggregate of 2-4?",
    "question_th": "ขาที่ 2 มีทั้งหมด 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_en": "How many 2nd legs are there where home (1st leg) is Independiente?",
    "question_th": "มีกี่ขาที่ 2 ซึ่งบ้าน (เลกที่ 1) คืออินดิเพนเดียนเต้?",
    "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_en": "Who was in home (2nd leg) when Talleres was in home  (1st leg)",
    "question_th": "ใครอยู่บ้าน (เลกที่ 2) เมื่อตัลเลเรสอยู่บ้าน (เลกที่ 1)",
    "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_en": "Who was in 2nd leg when Boca Juniors was in home (1st leg)?",
    "question_th": "ใครอยู่ในเลกที่ 2 ตอนที่โบคา จูเนียร์ส ในบ้าน (เลกที่ 1)?",
    "context": "CREATE TABLE table_14219514_1 (home__1st_leg_ VARCHAR)"
  },
  {
    "answer": "SELECT playoffs FROM table_14240688_1 WHERE open_cup = \"2nd Round\"",
    "question_en": "Name the playoffs for 2nd round open cup",
    "question_th": "ตั้งชื่อรอบตัดเชือกสำหรับถ้วยเปิดรอบที่ 2",
    "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_en": "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?",
    "question_th": "อะไรคืออันดับฤดูกาลปกติสำหรับปีที่รอบตัดเชือกเข้าถึงรอบรองชนะเลิศของการประชุมและทีมไม่ผ่านเข้ารอบ 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_en": "Name the population in 1931 for lubelskie",
    "question_th": "ตั้งชื่อประชากรในปี 1931 ด้วยชื่อ 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_en": "Name the population when the capital is tarnopol",
    "question_th": "ตั้งชื่อประชากรเมื่อเมืองหลวงคือทาร์โนโพล",
    "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_en": "Name the most bits 14-12 for output from accumulator to character bus",
    "question_th": "ตั้งชื่อบิตสูงสุด 14-12 สำหรับเอาต์พุตจากตัวสะสมไปยังบัสอักขระ",
    "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_en": "what is smallest number in fleet for chassis manufacturer Scania and fleet numbers is 3230?",
    "question_th": "อะไรคือจำนวนน้อยที่สุดในกลุ่มรถสำหรับผู้ผลิตแชสซีของ Scania และหมายเลขกลุ่มรถคือ 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_en": "Which chassis manufacturer is for fleet numbers range 2530-2558",
    "question_th": "ผู้ผลิตแชสซีรายใดสำหรับกลุ่มยานพาหนะหมายเลขช่วง 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_en": "Chassis model Scania K360ua has what minimum number in fleet?",
    "question_th": "แชสซีรุ่น Scania K360ua มีจำนวนขั้นต่ำในกลุ่มยานพาหนะเท่าใด",
    "context": "CREATE TABLE table_1425948_1 (number_in_fleet INTEGER, chassis_model VARCHAR)"
  },
  {
    "answer": "SELECT channels FROM table_142573_1 WHERE designation = \"PC700\"",
    "question_en": "Name the channels when designation is pc700",
    "question_th": "ตั้งชื่อช่องเมื่อกำหนดเป็น pc700",
    "context": "CREATE TABLE table_142573_1 (channels VARCHAR, designation VARCHAR)"
  },
  {
    "answer": "SELECT MAX(clock_rate__mhz_) FROM table_142573_1",
    "question_en": "Name the maximum clock rate mhz",
    "question_th": "ตั้งชื่ออัตรานาฬิกาสูงสุด 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_en": "Name the bus width bits when bandwidth mb/s is 3200",
    "question_th": "ตั้งชื่อบิตความกว้างบัสเมื่อแบนด์วิธ mb/s คือ 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_en": "Name the least clock rate mhz",
    "question_th": "ตั้งชื่ออัตรานาฬิกาน้อยที่สุด 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_en": "Name the least clock rate mhz when designation is rimm 4200",
    "question_th": "ตั้งชื่ออัตรานาฬิกาน้อยที่สุด mhz เมื่อกำหนดเป็น 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_en": "Name the number of clock rate mhz when bandwidth mb/s is 2400",
    "question_th": "ตั้งชื่อจำนวนความเร็วสัญญาณนาฬิกา mhz เมื่อแบนด์วิดท์ mb/s คือ 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_en": "Which elementary schools list Cort Monroe as the principal from 2013 to 2014?",
    "question_th": "โรงเรียนประถมศึกษาใดบ้างที่กำหนดให้ Cort Monroe เป็นอาจารย์ใหญ่ตั้งแต่ปี 2013 ถึง 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_en": "Who are all the assistant principals that served from 2013-2014 under the principal Cort Monroe?",
    "question_th": "ใครคือผู้ช่วยอาจารย์ใหญ่ที่ดำรงตำแหน่งตั้งแต่ปี 2556-2557 ภายใต้อาจารย์ใหญ่ Cort Monroe",
    "context": "CREATE TABLE table_14254419_3 (Assistant VARCHAR, principal__2013_2014_ VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_14263158_3 WHERE result = \"0–3 0–8 0–1 0–2 0–3 1–4 0–9 0–5\"",
    "question_en": "Who played in the series that resulted in matches with the following scores: 0–3 0–8 0–1 0–2 0–3 1–4 0–9 0–5?",
    "question_th": "ใครเล่นในซีรีส์ที่มีผลการแข่งขันด้วยคะแนนต่อไปนี้: 0–3 0–8 0–1 0–2 0–3 1–4 0–9 0–5?",
    "context": "CREATE TABLE table_14263158_3 (opponent VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_1425958_1 WHERE _percentage_change = \"6.5\"",
    "question_en": "Where was there a change of 6.5%?",
    "question_th": "มีการเปลี่ยนแปลงตรงไหน 6.5%?",
    "context": "CREATE TABLE table_1425958_1 (name VARCHAR, _percentage_change VARCHAR)"
  },
  {
    "answer": "SELECT density__pop_km²_ FROM table_1425958_1 WHERE _percentage_change = \"8.8\"",
    "question_en": "When the change is 8.8%, what is the density (pop/km²)?",
    "question_th": "เมื่อการเปลี่ยนแปลงคือ 8.8% ความหนาแน่น (pop/km²) เป็นเท่าใด",
    "context": "CREATE TABLE table_1425958_1 (density__pop_km²_ VARCHAR, _percentage_change VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(2011 AS _census) FROM table_1425958_1 WHERE density__pop_km²_ = \"91.8\"",
    "question_en": "How many locations had a density (pop/km²) of 91.8 in the 2011 census?",
    "question_th": "มีสถานที่กี่แห่งที่มีความหนาแน่น (pop/km²) ที่ 91.8 ในการสำรวจสำมะโนประชากร พ.ศ. 2554",
    "context": "CREATE TABLE table_1425958_1 (density__pop_km²_ VARCHAR)"
  },
  {
    "answer": "SELECT MIN(population_rank) FROM table_1425958_1 WHERE _percentage_change = \"8.4\"",
    "question_en": "When the % change is 8.4, what is the population rank?",
    "question_th": "เมื่อ % การเปลี่ยนแปลงเป็น 8.4 ประชากรจะอยู่อันดับเท่าใด",
    "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_en": "When the population rank is 34, what the is % change?",
    "question_th": "เมื่ออันดับประชากรเป็น 34 % การเปลี่ยนแปลงจะเป็นเท่าใด",
    "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_en": "How many teams scored exactly 38 points",
    "question_th": "มีกี่ทีมที่ทำคะแนนได้ 38 แต้มพอดี",
    "context": "CREATE TABLE table_14288212_1 (team VARCHAR, points_for VARCHAR)"
  },
  {
    "answer": "SELECT MIN(first_played) FROM table_14288212_1 WHERE team = \"Italy\"",
    "question_en": "In what year did Italy begin playing?",
    "question_th": "อิตาลีเริ่มเล่นในปีใด?",
    "context": "CREATE TABLE table_14288212_1 (first_played INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT MIN(win) FROM table_14288212_1 WHERE played = 5",
    "question_en": "For teams that played 5 games, what was the smallest number of wins?",
    "question_th": "สำหรับทีมที่เล่น 5 เกม จำนวนชัยชนะน้อยที่สุดคือเท่าใด",
    "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_en": "How many games did the team that began in 2011 and scored 36 points play?",
    "question_th": "ทีมที่เริ่มในปี 2554 และทำคะแนนได้ 36 แต้มลงเล่นกี่เกม?",
    "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_en": "What are all the run times with 8.2 million viewers?",
    "question_th": "ระยะเวลาฉายทั้งหมดที่มีผู้ชม 8.2 ล้านคนคือเท่าไร?",
    "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_en": "What are all the episodes with an episode run time of 24:01?",
    "question_th": "ตอนทั้งหมดที่มีตอน 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_en": "How many episodes had a broadcast date and run time of 24:43?",
    "question_th": "มีกี่ตอนที่มีวันออกอากาศและเวลาฉาย 24:43 น.?",
    "context": "CREATE TABLE table_1429629_1 (broadcast_date VARCHAR, run_time VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(research_funding__) AS £, 000 AS _ FROM table_142950_1 WHERE gained_university_status = 1900",
    "question_en": "How many members gained university status in 1900?",
    "question_th": "มีสมาชิกกี่คนที่ได้รับสถานะเป็นมหาวิทยาลัยในปี พ.ศ. 2443",
    "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_en": "What is the largest number of students?",
    "question_th": "นักเรียนจำนวนมากที่สุดคือเท่าไร?",
    "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_en": "How many members have professor edward acton as vice-chancellor?",
    "question_th": "ศาสตราจารย์เอ็ดเวิร์ด แอกตันมีสมาชิกเป็นรองอธิการบดีกี่คน?",
    "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_en": "What is the year leicester was established?",
    "question_th": "เลสเตอร์ก่อตั้งขึ้นเมื่อปีใด?",
    "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_en": "which country has miss universe Hungary as former pageant?",
    "question_th": "ประเทศไหนมีนางงามจักรวาลฮังการีเป็นอดีตผู้เข้าประกวด?",
    "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_en": "which is the former pageant in the country where the new pageant is miss bahamas?",
    "question_th": "ซึ่งเป็นการประกวดอดีตในประเทศที่ประกวดใหม่คือมิสบาฮามาส?",
    "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_en": "when did new zealand last compete?",
    "question_th": "นิวซีแลนด์แข่งขันครั้งสุดท้ายเมื่อใด?",
    "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_en": "How many new pageants does Aruba have?",
    "question_th": "Aruba มีผู้เข้าประกวดใหม่กี่คน?",
    "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_en": "which is the new pageant from spain?",
    "question_th": "การประกวดครั้งใหม่จากสเปนคือรายการไหน?",
    "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_en": "Who was the away team when Carlton was the home team?",
    "question_th": "เมื่อคาร์ลตันเป็นเจ้าบ้านคือใคร?",
    "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_en": "what is the number of teams where conmebol 1996 did not qualify?",
    "question_th": "คอนเมโบล 1996 ไม่ผ่านเข้ารอบมีกี่ทีม?",
    "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_en": "what is the racing club where copa libertadores 1997?",
    "question_th": "สโมสรแข่งรถที่ใช้ 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_en": "what is th copa libertadores 1997 is qf?",
    "question_th": "copa liberadores 1997 คืออะไร 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_en": "What's the maximum crowd when scg is the ground?",
    "question_th": "ถ้า scg ลงดิน คนเยอะสุดกี่คนคะ?",
    "context": "CREATE TABLE table_14312471_4 (crowd INTEGER, ground VARCHAR)"
  },
  {
    "answer": "SELECT ground FROM table_14312471_4 WHERE crowd = 19929",
    "question_en": "What are the ground where the crowd totals 19929?",
    "question_th": "อะไรคือจุดที่ฝูงชนทั้งหมด 19929?",
    "context": "CREATE TABLE table_14312471_4 (ground VARCHAR, crowd VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_14312471_3 WHERE ground = \"Manuka Oval\"",
    "question_en": "Name the home team for manuka oval",
    "question_th": "ตั้งชื่อทีมเจ้าบ้าน มานูก้า โอวัล",
    "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_en": "Name the away team score for richmond",
    "question_th": "ทายผลคะแนนทีมเยือน ริชมอนด์",
    "context": "CREATE TABLE table_14312471_3 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT report FROM table_14312471_7 WHERE home_team = \"North Melbourne\"",
    "question_en": "Who made the report when the home team is north Melbourne?",
    "question_th": "ใครเป็นคนทำรายงานเมื่อเจ้าบ้านอยู่เมลเบิร์นเหนือ?",
    "context": "CREATE TABLE table_14312471_7 (report VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_14312471_7 WHERE away_team = \"Richmond\"",
    "question_en": "Who played Richmond at home?",
    "question_th": "ใครเล่นริชมอนด์ที่บ้าน?",
    "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_en": "Who has the home ground Aami stadium?",
    "question_th": "สนามเหย้าของใครคือสนามอามิ?",
    "context": "CREATE TABLE table_14312471_7 (home_team VARCHAR, ground VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1431467_4 WHERE incumbent = \"D. Wyatt Aiken\"",
    "question_en": "Who were all candidate when incumbent was D. Wyatt Aiken?",
    "question_th": "ใครคือผู้สมัครทั้งหมดเมื่อดำรงตำแหน่งคือ 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_en": "How many incumbents for the district of South Carolina 5?",
    "question_th": "ผู้ดำรงตำแหน่งในเขตเซาท์แคโรไลนา 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_en": "Who was everyone first elected when incumbent was John J. Hemphill?",
    "question_th": "ใครคือทุกคนที่ได้รับเลือกเป็นครั้งแรกเมื่อจอห์น เจ. เฮมฟิลล์ดำรงตำแหน่ง",
    "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_en": "When the girls singles is lindaweni fanetri what is the mixed doubled?",
    "question_th": "เมื่อสาวโสดคือ lindaweni fanetri คนผสมสองเท่าคืออะไร?",
    "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_en": "When the girls doubles is ayu pratiwi anggi widia what is the boys doubles?",
    "question_th": "เมื่อเด็กหญิงประเภทคู่คือ ayu pratiwi anggi widia เด็กผู้ชายประเภทคู่คืออะไร?",
    "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_en": "When mixed doubles is didit juang indrianto yayu rahayu what is the most current year?",
    "question_th": "เมื่อประเภทคู่ผสมคือ Didit Juang Indrianto Yayu Rahayu ปีปัจจุบันคือปีใด?",
    "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_en": "When mixed doubles is danny bawa chrisnanta debby susanto what is the boys singles?",
    "question_th": "เมื่อประเภทคู่ผสมคือ แดนนี่ บาวา คริสนันต้า เด็บบี้ ซูซานโต ประเภทชายเดี่ยวคืออะไร?",
    "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_en": "When girls doubles is  anneke feinya agustin wenny setiawati what is the mixed doubles?",
    "question_th": "เมื่อหญิงคู่คือ anneke feinya agustin เวนนี่ เซเตียวาตี คู่ผสมคืออะไร?",
    "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_en": "Name the total number of publishers for flushed away",
    "question_th": "ระบุจำนวนผู้จัดพิมพ์ทั้งหมดที่ถูกลบออกไป",
    "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_en": "Name the publisher for resident evil 4",
    "question_th": "ตั้งชื่อผู้จัดพิมพ์สำหรับ 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_en": "What is the highest total number?",
    "question_th": "จำนวนรวมสูงสุดคืออะไร?",
    "context": "CREATE TABLE table_14330096_4 (total_number INTEGER)"
  },
  {
    "answer": "SELECT total_number FROM table_14330096_4 WHERE director = \"Roger Goldby\"",
    "question_en": "How many of the episodes have Roger Goldby as the director?",
    "question_th": "Roger Goldby เป็นผู้กำกับกี่ตอน?",
    "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_en": "Which episodes have Patrick Lau as the director and Lisa Holdsworth as the writer?",
    "question_th": "ตอนใดที่มี Patrick Lau เป็นผู้กำกับและ Lisa Holdsworth เป็นผู้เขียน?",
    "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_en": "What is the Closure date of Hunterston B",
    "question_th": "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_en": "How many power stations are connected to grid at Heysham 2",
    "question_th": "มีสถานีไฟฟ้าจำนวนกี่แห่งที่เชื่อมต่อกับโครงข่ายไฟฟ้าที่ 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_en": "What year did construction start at Heysham 1",
    "question_th": "การก่อสร้างเริ่มที่ 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_en": "When did construction start on the Power station with a net MWE of 1190",
    "question_th": "การก่อสร้างโรงไฟฟ้าเริ่มต้นเมื่อใดโดยมี MWE สุทธิ 1,190",
    "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_en": "Name the most extra points for john heston",
    "question_th": "บอกคะแนนพิเศษที่สุดของจอห์น เฮสตัน",
    "context": "CREATE TABLE table_14341967_2 (extra_points INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(points) FROM table_14342367_11",
    "question_en": "Who scored the most points?",
    "question_th": "ใครทำคะแนนได้มากที่สุด?",
    "context": "CREATE TABLE table_14342367_11 (points INTEGER)"
  },
  {
    "answer": "SELECT position FROM table_14342367_11 WHERE player = \"Joe Maddock\"",
    "question_en": "What position did Joe Maddock play?",
    "question_th": "โจ แมดด็อกเล่นตำแหน่งอะไร?",
    "context": "CREATE TABLE table_14342367_11 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(extra_points) FROM table_14342367_11 WHERE player = \"Paul Jones\"",
    "question_en": "How many extra points did Paul Jones score?",
    "question_th": "พอล โจนส์ ได้คะแนนพิเศษกี่แต้ม?",
    "context": "CREATE TABLE table_14342367_11 (extra_points VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_14342367_7 WHERE player = \"Albert Herrnstein\"",
    "question_en": "How many points did Albert Herrnstein make?",
    "question_th": "Albert Herrnstein ทำคะแนนได้กี่คะแนน?",
    "context": "CREATE TABLE table_14342367_7 (points VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_14342367_7 WHERE player = \"Paul Jones\"",
    "question_en": "What positions did Paul Jones play?",
    "question_th": "พอล โจนส์ เล่นตำแหน่งอะไร?",
    "context": "CREATE TABLE table_14342367_7 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MIN(field_goals) FROM table_14342367_7",
    "question_en": "What is the least amount of field goals made by a player?",
    "question_th": "ผู้เล่นทำฟิลด์โกลได้น้อยที่สุดคือเท่าใด?",
    "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_en": "How many extra points did Paul Dickey received",
    "question_th": "Paul Dickey ได้รับคะแนนพิเศษกี่คะแนน",
    "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_en": "How many 5 points field goals is minimum",
    "question_th": "ฟิลด์โกล 5 แต้มเป็นขั้นต่ำกี่แต้ม",
    "context": "CREATE TABLE table_14342367_15 (field_goals__5_points_ INTEGER)"
  },
  {
    "answer": "SELECT COUNT(player) FROM table_14342367_15 WHERE total_points = 75",
    "question_en": "How many player with total points of 75",
    "question_th": "มีผู้เล่นกี่คนที่มีคะแนนรวม 75",
    "context": "CREATE TABLE table_14342367_15 (player VARCHAR, total_points VARCHAR)"
  },
  {
    "answer": "SELECT MAX(field_goals) FROM table_14342480_5",
    "question_en": "Name the most field goals",
    "question_th": "ตั้งชื่อฟิลด์โกลมากที่สุด",
    "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_en": "Name the number of points for right halfback and starter being yes",
    "question_th": "ตั้งชื่อจำนวนคะแนนสำหรับกองหลังฝั่งขวาและผู้เริ่มต้นว่าใช่",
    "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_en": "Na,e the number of field goals for right tackle",
    "question_th": "ไม่ใช่จำนวนการยิงประตูสำหรับการสกัดกั้นทางขวา",
    "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_en": "Name the most extra points for right halfback",
    "question_th": "บอกชื่อแต้มพิเศษที่สุดสำหรับกองหลังฝั่งขวา",
    "context": "CREATE TABLE table_14342480_5 (extra_points INTEGER, position VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_14342592_3 WHERE player = \"Tom Hammond\"",
    "question_en": "What positions does Tom Hammond play?",
    "question_th": "ทอม แฮมมอนด์เล่นตำแหน่งอะไร?",
    "context": "CREATE TABLE table_14342592_3 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_14342592_3 WHERE player = \"Hal Weeks\"",
    "question_en": "What positions does Hal Weeks play?",
    "question_th": "Hal Weeks เล่นตำแหน่งอะไร?",
    "context": "CREATE TABLE table_14342592_3 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_14342592_3 WHERE player = \"Clark\"",
    "question_en": "How many points does Clark have? ",
    "question_th": " คลาร์กมีกี่คะแนน?",
    "context": "CREATE TABLE table_14342592_3 (points VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(points) FROM table_14342592_7 WHERE position = \"Right guard\"",
    "question_en": "How many points did the player who was right guard score?",
    "question_th": "ผู้เล่นที่เป็นการ์ดขวาทำคะแนนได้กี่แต้ม?",
    "context": "CREATE TABLE table_14342592_7 (points VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT starter FROM table_14342592_7 WHERE touchdowns = 3",
    "question_en": "Was there a starter when 3 touchdowns were scored?",
    "question_th": "มีผู้เริ่มต้นเมื่อทำทัชดาวน์ได้ 3 ครั้งหรือไม่?",
    "context": "CREATE TABLE table_14342592_7 (starter VARCHAR, touchdowns VARCHAR)"
  },
  {
    "answer": "SELECT MAX(touchdowns) FROM table_14342592_7 WHERE player = \"Heston\"",
    "question_en": "How many touchdowns were there when Heston was in play?",
    "question_th": "มีทัชดาวน์กี่ครั้งเมื่อเฮสตันลงเล่น?",
    "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_en": "How many maximum points were there when the left tackle was played and there were 5 extra points?",
    "question_th": "ตอนที่เล่นแท็คเกิ้ลซ้ายมีแต้มสูงสุดกี่แต้มและมีแต้มพิเศษอีก 5 แต้ม?",
    "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_en": "Who are the UK co-presenters that have Joe Swash as a co-presenter and Russell Kane as a comedian?",
    "question_th": "ใครคือผู้นำเสนอร่วมในสหราชอาณาจักรที่มี Joe Swash เป็นผู้นำเสนอร่วมและ Russell Kane เป็นนักแสดงตลก?",
    "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_en": "What series have Caroline Flack as a main presenter?",
    "question_th": "ซีรีส์เรื่องไหนที่มีแคโรไลน์ แฟล็กเป็นพรีเซนเตอร์หลัก?",
    "context": "CREATE TABLE table_14345690_15 (series VARCHAR, main_presenter VARCHAR)"
  },
  {
    "answer": "SELECT co_presenter FROM table_14345690_15 WHERE series = \"Seven (2007)\"",
    "question_en": "Who is the co-presenter of the series Seven (2007)?",
    "question_th": "ใครเป็นพรีเซนเตอร์ร่วมของซีรีส์ 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_en": "Who is the main presenter of the series Twelve (2012)?",
    "question_th": "ใครคือผู้นำเสนอหลักของซีรีส์เรื่อง 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_en": "Who is the UK co-presenters that have Joe Swash as a co-presenter of the series Eleven (2011)?",
    "question_th": "ใครคือผู้นำเสนอร่วมในสหราชอาณาจักรที่มี Joe Swash เป็นพรีเซนเตอร์ร่วมของซีรีส์ 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_en": "What position did Nell McAndrew finish?",
    "question_th": "Nell McAndrew จบตำแหน่งอะไร",
    "context": "CREATE TABLE table_14345690_2 (finished VARCHAR, celebrity VARCHAR)"
  },
  {
    "answer": "SELECT celebrity FROM table_14345690_2 WHERE famous_for = \"Champion boxer\"",
    "question_en": "Who was the champion boxer?",
    "question_th": "นักมวยแชมป์คือใคร?",
    "context": "CREATE TABLE table_14345690_2 (celebrity VARCHAR, famous_for VARCHAR)"
  },
  {
    "answer": "SELECT entered FROM table_14345690_2 WHERE celebrity = \"Darren Day\"",
    "question_en": "When did Darren Day enter?",
    "question_th": "ดาร์เรน เดย์ เข้ามาเมื่อไหร่?",
    "context": "CREATE TABLE table_14345690_2 (entered VARCHAR, celebrity VARCHAR)"
  },
  {
    "answer": "SELECT finished FROM table_14345690_2 WHERE celebrity = \"Tara Palmer-Tomkinson\"",
    "question_en": "What position did Tara Palmer-Tomkinson finish?",
    "question_th": "ทารา พาลเมอร์-ทอมกินสัน จบตำแหน่งอะไร?",
    "context": "CREATE TABLE table_14345690_2 (finished VARCHAR, celebrity VARCHAR)"
  },
  {
    "answer": "SELECT entered FROM table_14345690_2 WHERE finished = \"4th\"",
    "question_en": "When did the 4th finisher enter?",
    "question_th": "หมัดเด็ดที่ 4 เข้าเมื่อไร?",
    "context": "CREATE TABLE table_14345690_2 (entered VARCHAR, finished VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(exited) FROM table_14345690_3 WHERE finished = \"9th\"",
    "question_en": "How many people finished 9th?",
    "question_th": "จบอันดับที่ 9 มีกี่คน?",
    "context": "CREATE TABLE table_14345690_3 (exited VARCHAR, finished VARCHAR)"
  },
  {
    "answer": "SELECT MIN(camp_mates) FROM table_14345690_1",
    "question_en": "What was the least amount of camp mates?",
    "question_th": "เพื่อนร่วมค่ายน้อยที่สุดคือเท่าไร?",
    "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_en": "Who directed series #4 that was teleplayed by David Simon?",
    "question_th": "ใครเป็นผู้กำกับซีรีส์ #4 ที่ 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_en": "What is the title of series #1?",
    "question_th": "ซีรีย์ #1 ชื่ออะไรคะ?",
    "context": "CREATE TABLE table_14346353_1 (title VARCHAR, series__number VARCHAR)"
  },
  {
    "answer": "SELECT finished FROM table_14345690_5 WHERE exited = \"Day 11\"",
    "question_en": "What is the finished place where exited is day 11?",
    "question_th": "สถานที่ที่เสร็จแล้วซึ่งออกคือวันที่ 11 คืออะไร?",
    "context": "CREATE TABLE table_14345690_5 (finished VARCHAR, exited VARCHAR)"
  },
  {
    "answer": "SELECT famous_for FROM table_14345690_5 WHERE finished = \"2nd\"",
    "question_en": "Who is the famous for that finished 2nd?",
    "question_th": "ใครคือผู้มีชื่อเสียงจากการจบอันดับที่ 2?",
    "context": "CREATE TABLE table_14345690_5 (famous_for VARCHAR, finished VARCHAR)"
  },
  {
    "answer": "SELECT famous_for FROM table_14345690_5 WHERE finished = \"5th\"",
    "question_en": "What is the famous for where the finished is 5th?",
    "question_th": "สิ่งที่มีชื่อเสียงในเรื่องที่จบอันดับที่ 5 คืออะไร?",
    "context": "CREATE TABLE table_14345690_5 (famous_for VARCHAR, finished VARCHAR)"
  },
  {
    "answer": "SELECT exited FROM table_14345690_5 WHERE celebrity = \"Vic Reeves\"",
    "question_en": "What is the exited day where the celebrity is vic reeves?",
    "question_th": "วันไหนที่คนดังคือวิค รีฟส์?",
    "context": "CREATE TABLE table_14345690_5 (exited VARCHAR, celebrity VARCHAR)"
  },
  {
    "answer": "SELECT celebrity FROM table_14345690_5 WHERE finished = \"5th\"",
    "question_en": "what is the celebrity where the finished is 5th?",
    "question_th": "ดาราคนไหนจบอันดับที่ 5 คะ?",
    "context": "CREATE TABLE table_14345690_5 (celebrity VARCHAR, finished VARCHAR)"
  },
  {
    "answer": "SELECT first_elected FROM table_1434788_5 WHERE incumbent = \"John Thomas Wilson\"",
    "question_en": "When was incumbent John Thomas Wilson first elected? ",
    "question_th": " จอห์น โธมัส วิลสัน ได้รับเลือกครั้งแรกเมื่อใด",
    "context": "CREATE TABLE table_1434788_5 (first_elected VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_1434788_5 WHERE incumbent = \"John Beatty\"",
    "question_en": "Who were the candidates in the election where John Beatty was the incumbent? ",
    "question_th": " ใครคือผู้สมัครในการเลือกตั้งโดยที่ John Beatty ดำรงตำแหน่ง?",
    "context": "CREATE TABLE table_1434788_5 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1434788_5 WHERE district = \"Ohio 16\"",
    "question_en": "Who was the incumbent in the Ohio 16 district? ",
    "question_th": " ใครเป็นผู้ดำรงตำแหน่งในเขตโอไฮโอ 16?",
    "context": "CREATE TABLE table_1434788_5 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT 1991 AS _92 FROM table_14368332_1 WHERE average = \"1.053\"",
    "question_en": "What is the result in 91-92 for the team with a 1.053 average?",
    "question_th": "ผล 91-92 ของทีมเฉลี่ย 1.053 เป็นอย่างไร?",
    "context": "CREATE TABLE table_14368332_1 (average VARCHAR)"
  },
  {
    "answer": "SELECT birth_date FROM table_14363116_1 WHERE shirt_no = 7",
    "question_en": "Name the birth date for shirt number 7",
    "question_th": "ตั้งชื่อวันเกิดเสื้อหมายเลข 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_en": "Name the maximum height for yury berezhko",
    "question_th": "ตั้งชื่อความสูงสูงสุดสำหรับ 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_en": "Name the 1991-1992 for river plate",
    "question_th": "ตั้งชื่อปี 1991-1992 สำหรับจานแม่น้ำ",
    "context": "CREATE TABLE table_14390413_1 (team VARCHAR)"
  },
  {
    "answer": "SELECT opengl AS ES FROM table_1439045_5 WHERE model = \"SGX520\"",
    "question_en": "Which version of opengl is used by model sgx520?",
    "question_th": "รุ่น sgx520 ใช้ opengl เวอร์ชันใด",
    "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_en": "What is the die size(mm 2) for model sgx531?",
    "question_th": "ขนาดของแม่พิมพ์ (มม. 2) สำหรับรุ่น 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_en": "Name the number of nationality is tom hilde",
    "question_th": "ชื่อหมายเลขสัญชาติคือ ทอม ฮิลด์",
    "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_en": "Who was the director of the episode originally aired on 26 October 1969?",
    "question_th": "ใครคือผู้กำกับตอนที่ออกอากาศครั้งแรกเมื่อวันที่ 26 ตุลาคม พ.ศ. 2512",
    "context": "CREATE TABLE table_1439096_1 (director VARCHAR, original_air_date__atv_ VARCHAR)"
  },
  {
    "answer": "SELECT MIN(production_no) FROM table_1439096_1",
    "question_en": "What is the lowest production number?",
    "question_th": "จำนวนการผลิตต่ำสุดคืออะไร?",
    "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_en": "What is the title of the episode with the original air date of 28 September 1969?",
    "question_th": "ตอนที่ออกอากาศตอนแรกวันที่ 28 กันยายน 2512 ชื่อตอนอะไรครับ?",
    "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_en": "What was the original air date (atv) of episode 1?",
    "question_th": "ตอนที่ 1 ออกอากาศตอนแรก (atv) เมื่อใด?",
    "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_en": "What was the length of the jumper representing FIN, in meters?",
    "question_th": "จัมเปอร์ที่แสดงถึง FIN มีความยาวเท่าใด มีหน่วยเป็นเมตร",
    "context": "CREATE TABLE table_14407512_4 (nationality VARCHAR)"
  },
  {
    "answer": "SELECT 1 AS st__m_ FROM table_14407512_9 WHERE points = \"272.7\"",
    "question_en": "What is the 1st(m) score for the Person who had a total points of 272.7",
    "question_th": "คะแนนที่ 1(m) ของบุคคลที่มีคะแนนรวม 272.7 คืออะไร",
    "context": "CREATE TABLE table_14407512_9 (points VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_14418812_1 WHERE week = 12",
    "question_en": "Name the opponent for week 12",
    "question_th": "ตั้งชื่อคู่ต่อสู้ในสัปดาห์ที่ 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_en": "Name the number of date for shea stadium",
    "question_th": "ตั้งชื่อหมายเลขวันที่สำหรับสนามเชีย",
    "context": "CREATE TABLE table_14418812_1 (date VARCHAR, game_site VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_14418812_1 WHERE game_site = \"Astrodome\"",
    "question_en": "Name the opponent for astrodome",
    "question_th": "ตั้งชื่อคู่ต่อสู้สำหรับแอสโตรโดม",
    "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_en": "How many home team scores have a time of 4:40 PM?",
    "question_th": "เวลา 16.40 น. สกอร์ทีมเจ้าบ้านมีกี่แต้ม?",
    "context": "CREATE TABLE table_14425454_1 (home_team VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT ground FROM table_14425454_1 WHERE crowd = \"8,256\"",
    "question_en": "What stadiums had an attendance of 8,256?",
    "question_th": "สนามกีฬาใดมีผู้เข้าร่วม 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_en": "What is the total number of attendees where the home team was Port Adelaide?",
    "question_th": "จำนวนผู้เข้าร่วมโดยเจ้าบ้านคือพอร์ตแอดิเลดคือเท่าไร?",
    "context": "CREATE TABLE table_14425454_1 (crowd VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_14423274_3 WHERE game_site = \"Rich Stadium\"",
    "question_en": "Which team did they play at Rich Stadium?",
    "question_th": "พวกเขาเล่นทีมไหนที่ริช สเตเดี้ยม?",
    "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_en": "What date did they play in Cleveland Municipal Stadium?",
    "question_th": "พวกเขาเล่นที่สนามกีฬาเทศบาลคลีฟแลนด์วันที่เท่าไหร่?",
    "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_en": "Name the year model for  4-cyl straight engine dohc 16v and 1.5 crdi",
    "question_th": "ตั้งชื่อรุ่นปีสำหรับเครื่องยนต์ 4 สูบตรง dohc 16v และ 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_en": "Name the year model for 1.3",
    "question_th": "ตั้งชื่อรุ่นปีสำหรับ 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_en": "what is the minimum pos with clubs being 16",
    "question_th": "ตำแหน่งขั้นต่ำคือเท่าไรกับไม้กอล์ฟที่มีอายุ 16 ปี",
    "context": "CREATE TABLE table_14460937_2 (pos INTEGER, clubs VARCHAR)"
  },
  {
    "answer": "SELECT MAX(afc_cup) FROM table_14460937_2",
    "question_en": "what is the maximum value for afc cup",
    "question_th": "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_en": " how many pos with member association being china pr",
    "question_th": " มีกี่ตำแหน่งที่สมาคมสมาชิกเป็น 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_en": " how many points (total 500) with pos being 11",
    "question_th": " ได้กี่คะแนน (รวม 500) โดยอันดับเป็น 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órdoba\"",
    "question_en": "How many points in 87/88 for racing de córdoba?",
    "question_th": "87/88 เรซซิ่ง เดอ กอร์โดบา ได้กี่คะแนน?",
    "context": "CREATE TABLE table_14460085_3 (team VARCHAR)"
  },
  {
    "answer": "SELECT MIN(played) FROM table_14460085_3 WHERE team = \"Deportivo Español\"",
    "question_en": "What is the lowest number of games played for deportivo español?",
    "question_th": "เดปอร์ติโบ เอสปันญอล ลงเล่นน้อยที่สุดกี่เกม?",
    "context": "CREATE TABLE table_14460085_3 (played INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(points) FROM table_14460085_3 WHERE team = \"San Lorenzo\"",
    "question_en": "How many points total for san lorenzo?",
    "question_th": "ซาน ลอเรนโซ่ รวมได้กี่แต้ม?",
    "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_en": "Name the telephone 052 for area km2  being 5.42",
    "question_th": "ตั้งชื่อโทรศัพท์ 052 สำหรับพื้นที่ km2 เป็น 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_en": "Name the population of people for area being 24.35",
    "question_th": "ตั้งชื่อจำนวนประชากรสำหรับพื้นที่ 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_en": "Name the total number of telephone 052 for 362.81",
    "question_th": "ตั้งชื่อหมายเลขโทรศัพท์ทั้งหมด 052 เป็น 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_en": "Name the number of administrative unit for number 4",
    "question_th": "ตั้งชื่อหมายเลขหน่วยการบริหารสำหรับหมายเลข 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_en": "Name the name of administrative unit for 3464 people",
    "question_th": "ตั้งชื่อหน่วยบริหารจำนวน 3464 คน",
    "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_en": "How many of the cmdlets are the 2008 version?",
    "question_th": "รุ่น 2008 มี cmdlet กี่ตัว",
    "context": "CREATE TABLE table_14465871_2 (cmdlets VARCHAR, version VARCHAR)"
  },
  {
    "answer": "SELECT provider FROM table_14465871_2 WHERE application = \"Exchange Server\"",
    "question_en": "Which providers use exchange server?",
    "question_th": "ผู้ให้บริการรายใดใช้เซิร์ฟเวอร์แลกเปลี่ยน?",
    "context": "CREATE TABLE table_14465871_2 (provider VARCHAR, application VARCHAR)"
  },
  {
    "answer": "SELECT provider FROM table_14465871_2 WHERE version = \"2008\"",
    "question_en": "Which providers use version 2008?",
    "question_th": "ผู้ให้บริการรายใดใช้เวอร์ชัน 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_en": "how many points  did the argentinos juniors team score during the 1986-87 season?",
    "question_th": "ทีมรุ่นน้องของอาร์เจนติโนสทำคะแนนได้กี่คะแนนในช่วงฤดูกาล 1986-87?",
    "context": "CREATE TABLE table_14489821_1 (team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(played) FROM table_14489821_1",
    "question_en": "what is the maximum number of matches played by a team?",
    "question_th": "จำนวนการแข่งขันสูงสุดที่เล่นโดยทีมคือเท่าใด?",
    "context": "CREATE TABLE table_14489821_1 (played INTEGER)"
  },
  {
    "answer": "SELECT 1986 AS _87 FROM table_14489821_1 WHERE average = \"1.079\"",
    "question_en": "list the number of matches played by the teams that got an average of 1.079",
    "question_th": "แสดงรายการจำนวนแมตช์ที่เล่นโดยทีมที่ได้คะแนนเฉลี่ย 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_en": "Name the womens singles for korea open super series",
    "question_th": "ตั้งชื่อหญิงเดี่ยวสำหรับเกาหลีโอเพ่นซูเปอร์ซีรีส์",
    "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_en": "Name the tour when mens singles is chen jin and womens doubles is zhang yawen zhao tingting",
    "question_th": "ตั้งชื่อทัวร์เมื่อชายเดี่ยวคือ chen jin และหญิงคู่คือ 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_en": "Name the womens doubles when tour is malaysia super series",
    "question_th": "ตั้งชื่อประเภทหญิงคู่เมื่อทัวร์มาเลเซียซุปเปอร์ซีรีส์",
    "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_en": "Name the mens singles when womens singles is wang lin and mixed doubles is joachim fischer nielsen christinna pedersen",
    "question_th": "ตั้งชื่อชายเดี่ยวเมื่อหญิงเดี่ยวคือ Wang Lin และคู่ผสมคือ 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_en": "Name the mixed doubles when tour is hong kong super series",
    "question_th": "ตั้งชื่อคู่ผสมเมื่อทัวร์ฮ่องกงซุปเปอร์ซีรีส์",
    "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_en": "Name the mixed doubles for zhu lin",
    "question_th": "ตั้งชื่อคู่ผสมของจู้ หลิน",
    "context": "CREATE TABLE table_14496232_2 (mixed_doubles VARCHAR, womens_singles VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_14520977_1 WHERE location = \"Kingdome\"",
    "question_en": "Name the week for kingdome",
    "question_th": "ตั้งชื่อสัปดาห์สำหรับ kingdome",
    "context": "CREATE TABLE table_14520977_1 (week VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_14520977_1 WHERE result = \"L 13–10 OT\"",
    "question_en": "Name the date when result is l 13–10 ot",
    "question_th": "ตั้งชื่อวันที่ที่ผลลัพธ์คือ l 13–10 ot",
    "context": "CREATE TABLE table_14520977_1 (date VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_14520977_1 WHERE result = \"L 24–22\"",
    "question_en": "Name the record for l 24–22",
    "question_th": "ตั้งชื่อบันทึกสำหรับ l 24–22",
    "context": "CREATE TABLE table_14520977_1 (record VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_14523485_9 WHERE channel = \"Fox\"",
    "question_en": "Which Country is the show aired on Fox?",
    "question_th": "รายการที่ออกอากาศทาง Fox คือประเทศใด",
    "context": "CREATE TABLE table_14523485_9 (country VARCHAR, channel VARCHAR)"
  },
  {
    "answer": "SELECT channel FROM table_14523485_9 WHERE country = \"New Zealand\"",
    "question_en": "Where is the show aired in New Zealand?",
    "question_th": "รายการนี้ออกอากาศที่ไหนในนิวซีแลนด์?",
    "context": "CREATE TABLE table_14523485_9 (channel VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT channel FROM table_14523485_9 WHERE top_prize = \"€100,000\"",
    "question_en": "What channel had the prize of €100,000?",
    "question_th": "ช่องใดมีรางวัล 100,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_en": "How many hosts were on Seven Network?",
    "question_th": "Seven Network มีโฮสต์กี่เครื่อง?",
    "context": "CREATE TABLE table_14523485_9 (host VARCHAR, channel VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_14523485_9 WHERE channel = \"TVNZ\"",
    "question_en": "What country is the show aired on TVNZ?",
    "question_th": "รายการที่ออกอากาศทาง TVNZ คือประเทศใด",
    "context": "CREATE TABLE table_14523485_9 (country VARCHAR, channel VARCHAR)"
  },
  {
    "answer": "SELECT capital FROM table_14532_1 WHERE region = \"Umbria\"",
    "question_en": "What is the capital of Umbria?",
    "question_th": "เมืองหลวงของแคว้นอุมเบรียคืออะไร?",
    "context": "CREATE TABLE table_14532_1 (capital VARCHAR, region VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_14532_1 WHERE capital = \"Milan\"",
    "question_en": "What is the region where Milan is located?",
    "question_th": "มิลานตั้งอยู่ในภูมิภาคใด?",
    "context": "CREATE TABLE table_14532_1 (region VARCHAR, capital VARCHAR)"
  },
  {
    "answer": "SELECT MAX(area__km²_) FROM table_14532_1 WHERE region = \"Tuscany\"",
    "question_en": "What is the area of Tuscany?",
    "question_th": "พื้นที่ทัสคานีคืออะไร?",
    "context": "CREATE TABLE table_14532_1 (area__km²_ INTEGER, region VARCHAR)"
  },
  {
    "answer": "SELECT MIN(2500 AS _3000ft) FROM table_1456056_1 WHERE country = \"Scotland\"",
    "question_en": "Name the minimum for 2500-3000 ft for scotland",
    "question_th": "ตั้งชื่อขั้นต่ำสำหรับ 2,500-3,000 ฟุตสำหรับสกอตแลนด์",
    "context": "CREATE TABLE table_1456056_1 (country VARCHAR)"
  },
  {
    "answer": "SELECT MAX(2500 AS _3000ft) FROM table_1456056_1",
    "question_en": "Name the most of 2500-3000ft",
    "question_th": "ชื่อส่วนใหญ่ของ 2,500-3,000ft",
    "context": "CREATE TABLE table_1456056_1 (Id VARCHAR)"
  },
  {
    "answer": "SELECT MIN(total) FROM table_1456056_1 WHERE country = \"Ireland\"",
    "question_en": "Name the minimum total for ireland",
    "question_th": "ตั้งชื่อยอดรวมขั้นต่ำสำหรับไอร์แลนด์",
    "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_en": "Who directed all the episodes that were written by aaron ehasz & john o'bryan?",
    "question_th": "ใครเป็นผู้กำกับตอนทั้งหมดที่เขียนโดย 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_en": "What was the production code of the episode that was written by michael dante dimartino and directed by lauren macmullan?",
    "question_th": "รหัสการผลิตของตอนที่เขียนโดย michael dante dimartino และกำกับโดย 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_en": "What was the airdate of the episode that was directed by giancarlo volpe and written by is john o'bryan?",
    "question_th": "ตอนที่กำกับโดย giancarlo volpe และเขียนโดย 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_en": "Which situation has an original u.s. airdate of December 5, 2007?",
    "question_th": "สถานการณ์ใดมีกำหนดออกอากาศเดิมของสหรัฐอเมริกาในวันที่ 5 ธันวาคม พ.ศ. 2550",
    "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_en": "Name the circuit for gt3 alex mortimer bradley ellis",
    "question_th": "ตั้งชื่อวงจรสำหรับ 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_en": "Name the episodes when region 1 is september 19, 2006",
    "question_th": "ตั้งชื่อตอนเมื่อภาค 1 คือวันที่ 19 กันยายน 2549",
    "context": "CREATE TABLE table_14562722_2 (episodes VARCHAR, region_1 VARCHAR)"
  },
  {
    "answer": "SELECT MAX(discs) FROM table_14562722_2",
    "question_en": "Name the maximum discs",
    "question_th": "ตั้งชื่อดิสก์สูงสุด",
    "context": "CREATE TABLE table_14562722_2 (discs INTEGER)"
  },
  {
    "answer": "SELECT MAX(episodes) FROM table_14562722_2 WHERE region_4 = \"March 13, 2008\"",
    "question_en": "Name the most epiosdes when region 4 is march 13, 2008",
    "question_th": "ตั้งชื่อตอนมากที่สุดเมื่อภาค 4 คือวันที่ 13 มีนาคม 2551",
    "context": "CREATE TABLE table_14562722_2 (episodes INTEGER, region_4 VARCHAR)"
  },
  {
    "answer": "SELECT individual_winners FROM table_1458666_4 WHERE nation = \"Australia\"",
    "question_en": "what's the individual winners with nation being australia",
    "question_th": "ผู้ชนะรายบุคคลโดยประเทศคือออสเตรเลียคืออะไร",
    "context": "CREATE TABLE table_1458666_4 (individual_winners VARCHAR, nation VARCHAR)"
  },
  {
    "answer": "SELECT MIN(total_wins) FROM table_1458666_4",
    "question_en": "what is the value for minimum total wins",
    "question_th": "มูลค่าของการชนะทั้งหมดขั้นต่ำคือเท่าใด",
    "context": "CREATE TABLE table_1458666_4 (total_wins INTEGER)"
  },
  {
    "answer": "SELECT COUNT(team_s_) FROM table_1458412_1 WHERE winnings = \"$1,752,299\"",
    "question_en": "What is the total amount o teams where winnings is $1,752,299?",
    "question_th": "จำนวนเงินรวมของทีมที่ชนะรางวัลคือ $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_en": "What is the avg start that starts at 30?",
    "question_th": "ค่าเฉลี่ยเริ่มต้นที่เริ่มต้นที่ 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_en": "What is the totl amount of years where avg start is 27.3?",
    "question_th": "จำนวนปีที่เริ่มต้นเฉลี่ยคือ 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_en": "What coach had 15 wins?",
    "question_th": "โค้ชคนไหนชนะ 15 นัด?",
    "context": "CREATE TABLE table_14594528_6 (name__alma_mater_ VARCHAR, wins VARCHAR)"
  },
  {
    "answer": "SELECT losses FROM table_14594528_6 WHERE games = 19",
    "question_en": "How many losses for the coach that coached 19 games?",
    "question_th": "โค้ชที่คุมทีม 19 เกม แพ้ไปกี่เกม?",
    "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_en": "Name the number of class aa for bridgeport and 1999-2000",
    "question_th": "ตั้งชื่อหมายเลขคลาส aa สำหรับบริดจ์พอร์ตและ 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_en": "Name the class aa for 1998-99",
    "question_th": "ตั้งชื่อคลาส aa สำหรับปี 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_en": "Name the class a for pearland",
    "question_th": "ตั้งชื่อคลาส a สำหรับ เพิร์ลแลนด์",
    "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_en": "Name the class aaaaa for 2005-06",
    "question_th": "ตั้งชื่อชั้นเรียน aaaaaa สำหรับปี 2548-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_en": "Name the number of class aaaaa for 1988-89",
    "question_th": "ตั้งชื่อหมายเลขคลาส aaaaa สำหรับปี 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_en": "What is the percentage of females where in India and are maharashtra?",
    "question_th": "เปอร์เซ็นต์ของผู้หญิงที่อยู่ในอินเดียและอยู่ในรัฐมหาราษฏระคือเท่าไร?",
    "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_en": "What is the percentage of all females that are literate people have a percentage of 68.74?",
    "question_th": "ผู้หญิงที่รู้หนังสือทั้งหมดมีเปอร์เซ็นต์ 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_en": "What is the percentage of females where the state code is a 4?",
    "question_th": "ผู้หญิงที่มีรหัสรัฐเป็น 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_en": "What is the percentage of all the literate people where females are 73.17?",
    "question_th": "เปอร์เซ็นต์ของผู้รู้หนังสือทั้งหมดโดยที่ผู้หญิงมีค่าเท่ากับ 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_en": "What is the percentage of literate people where india is andaman and Nicobar Islands?",
    "question_th": "เปอร์เซ็นต์ของผู้รู้หนังสือที่อินเดียคือหมู่เกาะอันดามันและนิโคบาร์คือเท่าใด",
    "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_en": "Who was the Class AAAA champion in 2006-07?",
    "question_th": "ใครคือแชมป์คลาส AAAA ในปี 2549-50",
    "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_en": "How many times was there a class A winner when Gregory-Portland was the class AAAA?",
    "question_th": "มีผู้ชนะคลาส A กี่ครั้งแล้วเมื่อ Gregory-Portland เป็นคลาส 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_en": "How many Class AAAA winners where in 2002-03?",
    "question_th": "มีผู้ชนะระดับ AAAA กี่คนในปี 2545-2546?",
    "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_en": "Who was the class AAAAA in 2008-09?",
    "question_th": "ใครคือคลาส AAAAA ในปี 2551-52",
    "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_en": "Who was the Class AA winner when Plains was Class A winner and Lubbock was Class AAAAA winner?",
    "question_th": "ใครคือผู้ชนะคลาส AA เมื่อ Plains เป็นผู้ชนะ Class A และ Lubbock เป็นผู้ชนะ Class AAAAA",
    "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_en": "Who was the Class A winner in 2006-07?",
    "question_th": "ใครคือผู้ชนะคลาส A ในปี 2549-50?",
    "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_en": "If class a is canadian and class aaa is wimberley, which possible school years could this fall on? ",
    "question_th": " ถ้าคลาส a เป็นคนแคนาดา และคลาส aaa คือ Wimberley ชั้นเรียนนี้จะตรงกับปีการศึกษาใดที่เป็นไปได้",
    "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_en": "For franklin of class aa, which school years does this occur? ",
    "question_th": " สำหรับแฟรงคลินของคลาส aa เหตุการณ์นี้เกิดขึ้นชั้นปีใด",
    "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_en": "Which school years have a class a being lindsay and a class aaa being cuero? ",
    "question_th": " ปีการศึกษาใดมีชั้นเรียนเป็นลินด์เซย์ และชั้นเรียน aaa เป็นคิวเอโร",
    "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_en": "What season was the overall record 29-7?",
    "question_th": "สถิติรวม 29-7 ในฤดูกาลใด?",
    "context": "CREATE TABLE table_14609295_4 (season VARCHAR, overall VARCHAR)"
  },
  {
    "answer": "SELECT postseason FROM table_14609295_4 WHERE overall = \"29-7\"",
    "question_en": "How far into the postseason did the Rams go when their record was 29-7?",
    "question_th": "Rams ไปไกลแค่ไหนในช่วงฤดูเมื่อสถิติของพวกเขาคือ 29-7?",
    "context": "CREATE TABLE table_14609295_4 (postseason VARCHAR, overall VARCHAR)"
  },
  {
    "answer": "SELECT conference FROM table_14609295_4 WHERE postseason = \"CBI Champions\"",
    "question_en": "What was the Ram's conference record when they were the CBI champions?",
    "question_th": "บันทึกการประชุมของ Ram เมื่อพวกเขาเป็นแชมป์ CBI คืออะไร?",
    "context": "CREATE TABLE table_14609295_4 (conference VARCHAR, postseason VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_14609295_4 WHERE overall = \"24-10\"",
    "question_en": "What season was the overall record 24-10?",
    "question_th": "สถิติรวมฤดูกาลไหน 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_en": "What are the school years where class \"AAA\" is argyle?",
    "question_th": "ปีการศึกษาใดที่คลาส \"AAA\" เป็นอาร์ไกล์?",
    "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_en": "What are all the AAA classes in the school years of 2005-06?",
    "question_th": "ชั้นเรียน AAA ทั้งหมดในปีการศึกษา 2548-2549 มีอะไรบ้าง",
    "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_en": "What are all the AAAA classes in the schools years 2004-05?",
    "question_th": "ชั้นเรียน AAAA ทั้งหมดในโรงเรียนปี 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_en": "What are all the school years where class AAAA is in Gregory-Portland? ",
    "question_th": " ปีการศึกษาทั้งหมดที่ระดับ AAAA อยู่ใน 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_en": "What are all the AAA classes in the school years of 2004-05?",
    "question_th": "ชั้นเรียน AAA ทั้งหมดในปีการศึกษา 2547-2548 มีอะไรบ้าง",
    "context": "CREATE TABLE table_14603212_5 (class_aAA VARCHAR, school_year VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_14624447_24 WHERE position = \"SLB\"",
    "question_en": "What are all classes for the position SLB?",
    "question_th": "ตำแหน่ง SLB มีคลาสอะไรบ้าง?",
    "context": "CREATE TABLE table_14624447_24 (class VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT weight FROM table_14624447_24 WHERE number = 27",
    "question_en": "What are all weights for the number 27?",
    "question_th": "เลข 27 มีน้ำหนักทั้งหมดเท่าไร?",
    "context": "CREATE TABLE table_14624447_24 (weight VARCHAR, number VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_14624447_24 WHERE position = \"FS\"",
    "question_en": "What are all names for the position FS?",
    "question_th": "ตำแหน่ง FS มีชื่ออะไรบ้าง?",
    "context": "CREATE TABLE table_14624447_24 (name VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT call_sign FROM table_14623167_1 WHERE physical = 17",
    "question_en": "Name the call sign for the 17 physical",
    "question_th": "ตั้งชื่อสัญญาณเรียกขานสำหรับ 17 คน",
    "context": "CREATE TABLE table_14623167_1 (call_sign VARCHAR, physical VARCHAR)"
  },
  {
    "answer": "SELECT branding FROM table_14623167_1 WHERE owner = \"Forum Communications\"",
    "question_en": "Name the branding for forum communications",
    "question_th": "ตั้งชื่อแบรนด์สำหรับการสื่อสารในฟอรัม",
    "context": "CREATE TABLE table_14623167_1 (branding VARCHAR, owner VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(branding) FROM table_14623167_1 WHERE physical = 31",
    "question_en": "Name the number of branding for 31 physical",
    "question_th": "ตั้งชื่อหมายเลขของแบรนด์สำหรับ 31 กายภาพ",
    "context": "CREATE TABLE table_14623167_1 (branding VARCHAR, physical VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(virtual) FROM table_14623167_1 WHERE network = \"NBC\"",
    "question_en": "Name the number of virtual for NBC",
    "question_th": "ตั้งชื่อหมายเลขเสมือนสำหรับ NBC",
    "context": "CREATE TABLE table_14623167_1 (virtual VARCHAR, network VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(virtual) FROM table_14623167_1 WHERE network = \"Fox\"",
    "question_en": "Name the virtual for Fox",
    "question_th": "ตั้งชื่อเสมือนจริงสำหรับ Fox",
    "context": "CREATE TABLE table_14623167_1 (virtual VARCHAR, network VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(owner) FROM table_14623167_1 WHERE branding = \"Prairie Public\"",
    "question_en": "Name the owners for prairie public",
    "question_th": "ตั้งชื่อเจ้าของทุ่งหญ้าสาธารณะ",
    "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_en": "Name the total number of class aaa for 2006-07",
    "question_th": "ตั้งชื่อจำนวนคลาส aaa ทั้งหมดสำหรับปี 2549-50",
    "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_en": "Name the class aaaa for menard",
    "question_th": "ตั้งชื่อคลาส aaaa สำหรับ 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_en": "Name the class a for carthage",
    "question_th": "ตั้งชื่อคลาส a สำหรับคาร์เธจ",
    "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_en": "What is the original title of europe for dummies?",
    "question_th": "ชื่อดั้งเดิมของยุโรปสำหรับหุ่นคืออะไร?",
    "context": "CREATE TABLE table_14631909_1 (original_title VARCHAR, english_title VARCHAR)"
  },
  {
    "answer": "SELECT english_title FROM table_14631909_1 WHERE author = \"Mariusz Szczygieł\"",
    "question_en": "What is the English version of Mariusz Szczygieł book?",
    "question_th": "หนังสือ Mariusz Szczygieł เวอร์ชันภาษาอังกฤษคืออะไร",
    "context": "CREATE TABLE table_14631909_1 (english_title VARCHAR, author VARCHAR)"
  },
  {
    "answer": "SELECT pole_position FROM table_14638077_2 WHERE date = \"August 10\"",
    "question_en": "who is the the pole position with date being august 10",
    "question_th": "ซึ่งเป็นตำแหน่งโพลโพซิชั่น โดยมีวันที่ 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_en": " how many winning team with circuit being road america",
    "question_th": " มีทีมที่ชนะกี่ทีมโดยที่ Circuit เป็น 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_en": "who is the the winning driver with pole position being paul tracy and race name being miller genuine draft 200",
    "question_th": "ซึ่งเป็นนักแข่งที่ชนะโดยตำแหน่งโพลโพซิชั่นคือพอล เทรซี และชื่อการแข่งขันคือมิลเลอร์ของแท้ดราฟ 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_en": "who is the the pole position with rnd being 16",
    "question_th": "ซึ่งเป็นตำแหน่งโพลโพซิชั่น โดย rnd คือ 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_en": "what's the race name with date being september 7",
    "question_th": "ชื่อการแข่งขันคืออะไร วันที่ 7 กันยายน",
    "context": "CREATE TABLE table_14638077_2 (race_name VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT circuit FROM table_14638077_2 WHERE rnd = 5",
    "question_en": "what's the circuit with rnd being 5",
    "question_th": "วงจรที่ rnd เป็น 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_en": "What is the number of appearances where the most recent final result is 1999, beat Genk 3-1?",
    "question_th": "ลงเล่นกี่นัดซึ่งผลงานนัดชิงชนะเลิศล่าสุดคือปี 1999 เอาชนะเกงค์ 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_en": "What is the number of runner-up results for the years (won in bold) 1984, 2010?",
    "question_th": "ผลรองชนะเลิศในปี 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_en": "What is the most recent final result for the years (won in bold) 1979?",
    "question_th": "ผลการแข่งขันล่าสุดในรอบหลายปี (ชนะด้วยตัวหนา) ในปี 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_en": "what's the title with original air date being september23,1995",
    "question_th": "ชื่อเรื่องว่าอะไร วันที่ออกอากาศตอนแรกคือ 23 กันยายน 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_en": "who wrote with original air date being september23,1995",
    "question_th": "ผู้เขียนโดยกำหนดวันออกอากาศเดิมคือ 23 กันยายน พ.ศ. 2538",
    "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_en": "who directed with original air date being november18,1995",
    "question_th": "ซึ่งกำกับโดยกำหนดออกอากาศเดิมคือ 18 พฤศจิกายน 2538",
    "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_en": "What percentages of social democratic correspond to a 5.5% left bloc?",
    "question_th": "สังคมประชาธิปไตยมีกี่เปอร์เซ็นต์ที่ตรงกับกลุ่มซ้าย 5.5%",
    "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_en": "When was there 8.9% Green-Communist?",
    "question_th": "เมื่อไหร่จะมี 8.9% กรีน-คอมมิวนิสต์?",
    "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_en": "How many socialists correspond to a 7.5% People's Party?",
    "question_th": "นักสังคมนิยมกี่คนที่สอดคล้องกับพรรคประชาชน 7.5%?",
    "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_en": "What are all percentages of Left Block when there is a 28.7% Social Democratic?",
    "question_th": "อะไรคือเปอร์เซ็นต์ของ Left Block เมื่อมีพรรค Social Democratic 28.7%?",
    "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_en": "If Socialist is at 46.1%, what are all percentages for social democratic?",
    "question_th": "ถ้าสังคมนิยมอยู่ที่ 46.1% แล้วสังคมประชาธิปไตยทั้งหมดเป็นกี่เปอร์เซ็นต์?",
    "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_en": "How many percentages of Left Bloc correspond to a 32.1% Social Democratic?",
    "question_th": "Left Bloc มีกี่เปอร์เซ็นต์ที่สอดคล้องกับพรรคสังคมนิยมประชาธิปไตย 32.1%",
    "context": "CREATE TABLE table_1463383_1 (left_bloc VARCHAR, social_democratic VARCHAR)"
  },
  {
    "answer": "SELECT nfl_team FROM table_14650162_1 WHERE college = \"Minnesota\"",
    "question_en": "What is the NFL team of the player whose college is Minnesota?",
    "question_th": "ทีม NFL ของผู้เล่นที่มีวิทยาลัยอยู่ที่มินนิโซตาคืออะไร?",
    "context": "CREATE TABLE table_14650162_1 (nfl_team VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_14650162_1 WHERE position = \"Defensive Back\"",
    "question_en": "What college did the defensive back attend?",
    "question_th": "ฝ่ายป้องกันกลับเข้าเรียนที่วิทยาลัยใด",
    "context": "CREATE TABLE table_14650162_1 (college VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT pick__number FROM table_14650162_1 WHERE college = \"Florida State\"",
    "question_en": "What is the pick number of the player whose college is Florida State?",
    "question_th": "หมายเลขเลือกของผู้เล่นที่มีวิทยาลัยอยู่ในรัฐฟลอริดาคืออะไร?",
    "context": "CREATE TABLE table_14650162_1 (pick__number VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(college) FROM table_14650162_1 WHERE pick__number = 269",
    "question_en": "How many colleges did pick number 269 attend?",
    "question_th": "มีกี่วิทยาลัยที่เลือกหมายเลข 269 เข้าร่วม?",
    "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_en": "How many picks played Tight end?",
    "question_th": "มีกี่ตัวเลือกที่เล่นแบบ 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_en": "What is the position of the player whose college is Western Kentucky?",
    "question_th": "ตำแหน่งผู้เล่นที่วิทยาลัยคือ 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_en": "What position does Robert Brooks play?",
    "question_th": "โรเบิร์ต บรูคส์ เล่นตำแหน่งอะไร?",
    "context": "CREATE TABLE table_14649522_1 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT nfl_team FROM table_14649522_1 WHERE player = \"Robert Brooks\"",
    "question_en": "Which team does Robert Brooks play with?",
    "question_th": "โรเบิร์ต บรู๊คส์ เล่นกับทีมไหน?",
    "context": "CREATE TABLE table_14649522_1 (nfl_team VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT nfl_team FROM table_14649522_1 WHERE college = \"South Carolina\"",
    "question_en": "Which team picked from South Carolina college?",
    "question_th": "ทีมใดเลือกจากวิทยาลัยเซาท์แคโรไลนา",
    "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_en": "Which college was the wide receiver whose pick was less than 130.0 picked from?",
    "question_th": "วิทยาลัยใดเป็นผู้รับช่วงกว้างซึ่งมีผู้เลือกน้อยกว่า 130.0 คน",
    "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_en": "What position(s) does the player drafted #34 play?",
    "question_th": "ผู้เล่นร่าง #34 เล่นตำแหน่งใด?",
    "context": "CREATE TABLE table_14650373_1 (position VARCHAR, pick__number VARCHAR)"
  },
  {
    "answer": "SELECT MAX(pick__number) FROM table_14650373_1",
    "question_en": "What is the highest pick number?",
    "question_th": "หมายเลขเลือกสูงสุดคืออะไร?",
    "context": "CREATE TABLE table_14650373_1 (pick__number INTEGER)"
  },
  {
    "answer": "SELECT pick__number FROM table_14650373_1 WHERE college = \"Arizona State\"",
    "question_en": "What number picked were players from arizona state picked?",
    "question_th": "ผู้เล่นจากรัฐแอริโซนาเลือกหมายเลขใด",
    "context": "CREATE TABLE table_14650373_1 (pick__number VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT nfl_team FROM table_14650373_1 WHERE player = \"Keith Woodside\"",
    "question_en": "What NFL team does player keith woodside play for?",
    "question_th": "คีธ วูดไซด์ ผู้เล่น NFL เล่นให้กับทีมใด?",
    "context": "CREATE TABLE table_14650373_1 (nfl_team VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_14655985_1 WHERE college = \"Penn State\"",
    "question_en": "what's the player with college being penn state",
    "question_th": "ผู้เล่นที่วิทยาลัยเป็นเพนน์สเตตคืออะไร",
    "context": "CREATE TABLE table_14655985_1 (player VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_14655985_1 WHERE college = \"USC\"",
    "question_en": "what's the position with college being usc",
    "question_th": "วิทยาลัยเป็น usc ในตำแหน่งอะไร",
    "context": "CREATE TABLE table_14655985_1 (position VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(college) FROM table_14655985_1 WHERE player = \"Rich Voltzke\"",
    "question_en": " how many college with player being rich voltzke",
    "question_th": " มีกี่วิทยาลัยที่มีผู้เล่นรวย voltzke",
    "context": "CREATE TABLE table_14655985_1 (college VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_14655985_1 WHERE position = \"Placekicker\"",
    "question_en": "what's the college with position being placekicker",
    "question_th": "วิทยาลัยอะไรมีตำแหน่งเป็น placekicker",
    "context": "CREATE TABLE table_14655985_1 (college VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_14655985_1 WHERE pick__number = 64",
    "question_en": "who is the the player where pick # is 64",
    "question_th": "ใครคือผู้เล่นที่เลือก # คือ 64",
    "context": "CREATE TABLE table_14655985_1 (player VARCHAR, pick__number VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_14655917_1 WHERE opponent = \"Denver Broncos\"",
    "question_en": "What day were the Denver Broncos the opponent?",
    "question_th": "คู่ต่อสู้ของเดนเวอร์ บรองโกส์คือวันไหน?",
    "context": "CREATE TABLE table_14655917_1 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_14655917_1 WHERE opponent = \"Detroit Lions\"",
    "question_en": "What day was the oppenent the detroit lions?",
    "question_th": "ฝ่ายตรงข้ามของดีทรอยต์ไลออนส์คือวันไหน?",
    "context": "CREATE TABLE table_14655917_1 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_14656147_2 WHERE record = \"0-1\"",
    "question_en": "List the record of 0-1 from the table?",
    "question_th": "แสดงรายการบันทึก 0-1 จากตาราง?",
    "context": "CREATE TABLE table_14656147_2 (week VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_14656147_2 WHERE result = \"L 3-6\"",
    "question_en": "Type the record details if any result has L 3-6 in it?",
    "question_th": "พิมพ์รายละเอียดบันทึกถ้ามีผล L 3-6 อยู่ในนั้นหรือไม่?",
    "context": "CREATE TABLE table_14656147_2 (record VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT MIN(attendance) FROM table_14656147_2",
    "question_en": "Find the least value of attendance?",
    "question_th": "ค้นหามูลค่าการเข้าร่วมน้อยที่สุด?",
    "context": "CREATE TABLE table_14656147_2 (attendance INTEGER)"
  },
  {
    "answer": "SELECT attendance FROM table_14656147_2 WHERE opponent = \"Tampa Bay Buccaneers\"",
    "question_en": "type the attendance for playing with tampa bay buccaneers?",
    "question_th": "พิมพ์จำนวนการเข้าเล่นกับแทมปาเบย์ไฮเวย์?",
    "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_en": "How many numbers were recorded under revenue when revenue per capita was $6,126?",
    "question_th": "มีการบันทึกตัวเลขจำนวนเท่าใดภายใต้รายได้เมื่อรายได้ต่อหัวอยู่ที่ 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_en": "What was the spending per capita when the revenue per capita was $7,755?",
    "question_th": "การใช้จ่ายต่อหัวเป็นเท่าใดเมื่อรายได้ต่อหัวอยู่ที่ 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_en": "What was the recorded result under presidential majority 2000/2004 when the presiditial majority in 2012 was non-voting?",
    "question_th": "ผลลัพธ์ที่บันทึกไว้ภายใต้เสียงข้างมากของประธานาธิบดีในปี 2000/2004 เมื่อเสียงข้างมากของประธานาธิบดีในปี 2012 ไม่มีการลงคะแนนเสียงคืออะไร",
    "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_en": "How many times was revenue in millions recorded when the spending per capita was $6,736?",
    "question_th": "มีการบันทึกรายได้เป็นล้านกี่ครั้งเมื่อการใช้จ่ายต่อหัวอยู่ที่ 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_en": "What is the largest number of DVDs?",
    "question_th": "ดีวีดีจำนวนมากที่สุดคือเท่าใด",
    "context": "CREATE TABLE table_1467951_4 (dvd_no INTEGER)"
  },
  {
    "answer": "SELECT MAX(ep_no) FROM table_1467951_4",
    "question_en": "What is the highest number of episodes?",
    "question_th": "จำนวนตอนสูงสุดคือเท่าไร?",
    "context": "CREATE TABLE table_1467951_4 (ep_no INTEGER)"
  },
  {
    "answer": "SELECT MAX(release_date) FROM table_1467951_4",
    "question_en": "What is the most recent release date?",
    "question_th": "วันที่วางจำหน่ายล่าสุดคือเมื่อใด?",
    "context": "CREATE TABLE table_1467951_4 (release_date INTEGER)"
  },
  {
    "answer": "SELECT COUNT(release_date) FROM table_1467951_4 WHERE dvd_name = \"Volume 4\"",
    "question_en": "How many release dates does volume 4 DVD have?",
    "question_th": "ดีวีดีเล่ม 4 มีกำหนดออกกี่วัน?",
    "context": "CREATE TABLE table_1467951_4 (release_date VARCHAR, dvd_name VARCHAR)"
  },
  {
    "answer": "SELECT arrival FROM table_14688744_2 WHERE no = 14",
    "question_en": "what is the arrival time for no. 14?",
    "question_th": "หมายเลขจะมาถึงกี่โมง 14?",
    "context": "CREATE TABLE table_14688744_2 (arrival VARCHAR, no VARCHAR)"
  },
  {
    "answer": "SELECT arrival FROM table_14688744_2 WHERE station_code = \"AWY\"",
    "question_en": "what is the arrival time where the station code is awy?",
    "question_th": "เวลามาถึงที่รหัสสถานีไม่ปกติคือเมื่อใด?",
    "context": "CREATE TABLE table_14688744_2 (arrival VARCHAR, station_code VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(station) FROM table_14688744_2 WHERE station_code = \"AWY\"",
    "question_en": "what amount of stations have station code is awy?",
    "question_th": "มีสถานีจำนวนเท่าใด รหัสสถานีไม่ปกติ?",
    "context": "CREATE TABLE table_14688744_2 (station VARCHAR, station_code VARCHAR)"
  },
  {
    "answer": "SELECT arrival FROM table_14688744_2 WHERE station_code = \"PNVL\"",
    "question_en": "what is the arrival time where station code is pnvl?",
    "question_th": "เวลาที่มาถึงโดยรหัสสถานีคือ pnvl คือเมื่อใด?",
    "context": "CREATE TABLE table_14688744_2 (arrival VARCHAR, station_code VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(years) FROM table_14707564_1 WHERE total = 402",
    "question_en": "How many years was the total 402?",
    "question_th": "รวม 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_en": "Who won the young rider classification in Stage 9 where the mountain classification was Emanuele Sella?",
    "question_th": "ใครเป็นผู้ชนะประเภทนักบิดรุ่นเยาว์ในสเตจที่ 9 โดยที่ประเภทภูเขาคือ 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_en": "Who is the general classification leader for stage 3?",
    "question_th": "ใครคือผู้นำการจัดประเภททั่วไปสำหรับระยะที่ 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_en": "Who won the points classifications in the stage where Matteo Priamo was the winner?",
    "question_th": "ใครเป็นผู้ชนะการแบ่งกลุ่มคะแนนในระยะที่มัตเตโอ ปรีอาโมเป็นผู้ชนะ",
    "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_en": "Who was awarded the young ride classification leader when the winner was Marzio Bruseghin?",
    "question_th": "ใครเป็นผู้ได้รับรางวัลผู้นำประเภทรถรุ่นเยาว์ เมื่อผู้ชนะคือ 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_en": "Which title did Neil Affleck direct?",
    "question_th": "Neil Affleck กำกับเรื่องใด",
    "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_en": "What is the first number in series that had the production code 1ACX03?",
    "question_th": "หมายเลขแรกในซีรีส์ที่มีรหัสการผลิต 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_en": "Which title had the production code 1ACX04?",
    "question_th": "ชื่อเรื่องใดมีรหัสการผลิต 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_en": "When did the show directed by Michael Dimartino first air?",
    "question_th": "การแสดงที่กำกับโดย Michael Dimartino ออกอากาศครั้งแรกเมื่อใด",
    "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_en": "Which series numbers were directed by Monte Young?",
    "question_th": "หมายเลขซีรีส์ใดที่กำกับโดย 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_en": "How many people directed the show written by Chris Sheridan?",
    "question_th": "มีกี่คนที่กำกับการแสดงที่เขียนโดย 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_en": "What regular seasons occurred in 2011?",
    "question_th": "ฤดูกาลปกติใดที่เกิดขึ้นในปี 2554?",
    "context": "CREATE TABLE table_14723382_1 (regular_season VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT MAX(division) FROM table_14723382_1",
    "question_en": "What is the largest numbered?",
    "question_th": "ตัวเลขที่ใหญ่ที่สุดคืออะไร?",
    "context": "CREATE TABLE table_14723382_1 (division INTEGER)"
  },
  {
    "answer": "SELECT COUNT(position) FROM table_1473672_2 WHERE player = \"Rene Villemure\"",
    "question_en": "How many positions does rene villemure play?",
    "question_th": "เรเน่ วิลเลเมอร์เล่นได้กี่ตำแหน่ง?",
    "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_en": "What is the pick# for the medicine hat tigers (wchl)?",
    "question_th": "ตัวเลือก # สำหรับยาหมวกเสือ (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_en": "What nhl team does stan weir play for?",
    "question_th": "สแตน เวียร์เล่นให้กับทีมใดใน NHL?",
    "context": "CREATE TABLE table_1473672_2 (nhl_team VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT nhl_team FROM table_1473672_2 WHERE player = \"Dwight Bialowas\"",
    "question_en": "What nhl team does dwight bialowas play for?",
    "question_th": "ดไวต์ เบียโลวาสเล่นให้กับทีมใดของ NHL",
    "context": "CREATE TABLE table_1473672_2 (nhl_team VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MIN(pick__number) FROM table_1473672_2",
    "question_en": "Lorne Henning has the lowest pick# of?",
    "question_th": "Lorne Henning มีตัวเลือกต่ำสุด# จาก?",
    "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_en": "Jack Lynch played for the oshawa generals (omjhl) before playing for what nhl team?",
    "question_th": "Jack Lynch เล่นให้กับ Oshawa Generals (omjhl) ก่อนที่จะเล่นให้กับทีม NHL ใด?",
    "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_en": "Which colle/junior/club team did Michel Boudreau play for?",
    "question_th": "มิเชล บูโดรเล่นให้เพื่อนร่วมงาน/รุ่นน้อง/สโมสรคนใด",
    "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_en": "Which players played right wing?",
    "question_th": "นักเตะคนไหนเล่นปีกขวา?",
    "context": "CREATE TABLE table_1473672_3 (player VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_1473672_3 WHERE nhl_team = \"Philadelphia Flyers\"",
    "question_en": "Which nationality is the player from the Philadelphia Flyers?",
    "question_th": "นักเตะทีม 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_en": "Which position did the player hold that played for the Philadelphia Flyers in NHL?",
    "question_th": "ผู้เล่นดำรงตำแหน่งใดที่เล่นให้กับ Philadelphia Flyers ใน 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_en": "Which college/junior/club team did the player play on that played for the Buffalo Sabres in NHL?",
    "question_th": "ผู้เล่นในทีมวิทยาลัย/รุ่นน้อง/สโมสรใดที่เล่นให้กับทีม Buffalo Sabers ใน 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_en": "Name the number of teams for college/junior club for philadelphia flyers",
    "question_th": "ตั้งชื่อจำนวนทีมสำหรับวิทยาลัย/สโมสรจูเนียร์สำหรับใบปลิวฟิลาเดลเฟีย",
    "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_en": "Name the position for ron lalonde",
    "question_th": "ตั้งชื่อตำแหน่งรอน ลาลอนด์",
    "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_en": "Name the college/junior club team for pick number 63",
    "question_th": "ตั้งชื่อทีมสโมสรวิทยาลัย/จูเนียร์สำหรับเลือกหมายเลข 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_en": "How many positions did 1972 NHL Draft pick Rene Lambert play?",
    "question_th": "1972 NHL Draft เลือก Rene Lambert เล่นได้กี่ตำแหน่ง",
    "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_en": "what's the college/junior/club team with nhl team being california golden seals",
    "question_th": "ทีมวิทยาลัย/รุ่นน้อง/สโมสรคืออะไร โดยทีม NHL เป็นทีม 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_en": "what's the nhl team with college/junior/club team being brandon wheat kings (wchl)",
    "question_th": "ทีม NHL กับทีมวิทยาลัย/จูเนียร์/สโมสรคือทีม 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_en": "who is the the player with pick # being 132",
    "question_th": "ใครเป็นผู้เล่นที่เลือกหมายเลข # เป็น 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_en": " how many player with nhl team being vancouver canucks",
    "question_th": " มีผู้เล่นกี่คนที่ทีม NHL เป็นแวนคูเวอร์ คานัคส์",
    "context": "CREATE TABLE table_1473672_9 (player VARCHAR, nhl_team VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_1473672_9 WHERE player = \"Ray Boutin\"",
    "question_en": "what's the position with player being ray boutin",
    "question_th": "ตำแหน่งที่ผู้เล่นเป็นเรย์บูแตงคืออะไร",
    "context": "CREATE TABLE table_1473672_9 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT borough FROM table_14748457_1 WHERE station_users_2008_9 = \"28702\"",
    "question_en": "what is the name of the borough where station uses is 28702?",
    "question_th": "เขตที่สถานีใช้คือ 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_en": "what are the lines served where station users is 210076?",
    "question_th": "ผู้ใช้บริการสถานีคือ 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_en": "whatis hte station code where users are 130368?",
    "question_th": "รหัสสถานี hte คืออะไร โดยที่ผู้ใช้คือ 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_en": "Which is the class A when Weslaco was the class AAAAA and brownwood was the class AAAA",
    "question_th": "ซึ่งก็คือคลาส A เมื่อเวสลาโกเป็นคลาส AAAAA และไม้สีน้ำตาลคือคลาส 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_en": "Which is the class A when Marion was the class AA",
    "question_th": "ซึ่งเป็นคลาส A เมื่อแมเรียนเป็นคลาส 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_en": "Which is the class AA when graford was the class A",
    "question_th": "ซึ่งเป็นคลาส AA เมื่อกราฟอร์ดเป็นคลาส 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_en": "How many class AA in the year 2002-03",
    "question_th": "มีกี่คลาส AA ในปี 2545-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_en": "Who was the class AAAA when class AAAAA was Weslaco in 1994-95",
    "question_th": "ใครคือคลาส AAAA เมื่อคลาส AAAAA คือ Weslaco ในปี 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_en": "What are the changes from 2009 to 2010 in Tunisia?",
    "question_th": "การเปลี่ยนแปลงในปี 2009 ถึง 2010 ในตูนิเซียมีอะไรบ้าง",
    "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_en": "What are the international tourist arrivals in 2010 where change from 2010 to 2011 is +11.2% ?",
    "question_th": "จำนวนนักท่องเที่ยวต่างชาติที่เข้ามาในปี 2553 โดยการเปลี่ยนแปลงระหว่างปี 2553 ถึง 2554 อยู่ที่ +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_en": "What are the changes (2010 to 2011) where the International Tourist Arrivals is 1.7 million?",
    "question_th": "การเปลี่ยนแปลง (2553 ถึง 2554) ที่จำนวนนักท่องเที่ยวขาเข้าระหว่างประเทศอยู่ที่ 1.7 ล้านคนมีการเปลี่ยนแปลงอะไรบ้าง (2553 ถึง 2554)",
    "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_en": "What are the international tourist arrivals(2010) where change from 2009 to 2010 is +11.1%?",
    "question_th": "จำนวนนักท่องเที่ยวต่างชาติ (พ.ศ. 2553) ที่เปลี่ยนแปลงระหว่างปี พ.ศ. 2552 ถึง พ.ศ. 2553 อยู่ที่ +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_en": "What are the International tourist arrivals (2010) where change from 2010 to 2011 is +15%",
    "question_th": "จำนวนนักท่องเที่ยวต่างชาติ (2553) ที่เปลี่ยนแปลงจากปี 2553 ถึง 2554 คือ +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_en": "How many international tourist arrivals were in Senegal in 2011?",
    "question_th": "ในปี 2554 มีนักท่องเที่ยวต่างชาติเข้ามาในประเทศเซเนกัลจำนวนกี่คน",
    "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_en": "When the change (2010 to 2011) is +1.0% what is the change (2011 to 2012)?",
    "question_th": "เมื่อการเปลี่ยนแปลง (2553 ถึง 2554) เป็น +1.0% การเปลี่ยนแปลง (2554 ถึง 2555) คืออะไร",
    "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_en": "When the change (2011 to 2012) is -0.1% what is the country?",
    "question_th": "เมื่อมีการเปลี่ยนแปลง (พ.ศ. 2554 ถึง พ.ศ. 2555) คือ -0.1% อยู่ที่ประเทศอะไร?",
    "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_en": "When the change (2011 to 2012) is +13.4% what is the country?",
    "question_th": "เมื่อมีการเปลี่ยนแปลง (พ.ศ. 2554 ถึง 2555) เป็น +13.4% อยู่ที่ประเทศอะไร?",
    "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_en": "When 24.1 million is international tourist arrivals (2012) what is the  change (2010 to 2011) ?",
    "question_th": "เมื่อมีจำนวนนักท่องเที่ยวต่างชาติเข้ามาถึง 24.1 ล้านคน (พ.ศ. 2555) การเปลี่ยนแปลง (พ.ศ. 2553 ถึง พ.ศ. 2554) เป็นอย่างไร ?",
    "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_en": "United kingdom is the country what is the change (2011 to 2012)?",
    "question_th": "สหราชอาณาจักรเป็นประเทศ การเปลี่ยนแปลงคืออะไร (2554 ถึง 2555)?",
    "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_en": "When the 1 is the rank what is the overall amount of  international tourist arrivals in 2012?",
    "question_th": "เมื่ออันดับที่ 1 มีจำนวนนักท่องเที่ยวต่างชาติเข้ามาในปี 2555 ทั้งหมดเป็นเท่าใด",
    "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_en": "What is the enrollment amount where Hispanic (%) is 3.6?",
    "question_th": "จำนวนการลงทะเบียนโดยที่ฮิสแปนิก (%) คือ 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_en": "What percentage of Asians are there in the year 2009?",
    "question_th": "ในปี 2552 มีชาวเอเชียกี่เปอร์เซ็นต์?",
    "context": "CREATE TABLE table_14754471_1 (asian___percentage_ VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT asian___percentage_ FROM table_14754471_1 WHERE year = 2004",
    "question_en": "What percentage of Asians are there in the year 2004?",
    "question_th": "ในปี 2547 มีชาวเอเชียกี่เปอร์เซ็นต์?",
    "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_en": "What percentage of hispanics are there when the free/reduced lunch percentage is 81.4?",
    "question_th": "มีชาวละตินอเมริกากี่เปอร์เซ็นต์เมื่อเปอร์เซ็นต์อาหารกลางวันฟรี/ลดราคาคือ 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_en": "What percentage of free/reduced lunch  are there when the hispanic percentage is 3.7?",
    "question_th": "มีอาหารกลางวันฟรี/ลดราคากี่เปอร์เซ็นต์เมื่อเปอร์เซ็นต์ฮิสแปนิกคือ 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_en": "Who was the arranger for the track written by Nizar Francis ?",
    "question_th": "ใครเป็นผู้เรียบเรียงเพลงที่เขียนโดย Nizar Francis",
    "context": "CREATE TABLE table_14778650_1 (arranger VARCHAR, writer VARCHAR)"
  },
  {
    "answer": "SELECT writer FROM table_14778650_1 WHERE length = \"4:29\"",
    "question_en": "Who was the writer for the song 4:29 in length?",
    "question_th": "ใครเป็นคนเขียนเพลงความยาว 4:29?",
    "context": "CREATE TABLE table_14778650_1 (writer VARCHAR, length VARCHAR)"
  },
  {
    "answer": "SELECT _number FROM table_14778650_1 WHERE length = \"4:29\"",
    "question_en": "What track number is 4:29 in length?",
    "question_th": "หมายเลขเพลงใดมีความยาว 4:29?",
    "context": "CREATE TABLE table_14778650_1 (_number VARCHAR, length VARCHAR)"
  },
  {
    "answer": "SELECT females_rank FROM table_14785903_1 WHERE states = \"Karnataka\"",
    "question_en": "What is the female rank in Karnataka?",
    "question_th": "หญิงมียศอะไรในรัฐกรณาฏกะ?",
    "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_en": "What is the English title when the original title is Die Qual Der Wahl?",
    "question_th": "ชื่อภาษาอังกฤษคืออะไรเมื่อชื่อเดิมคือ 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_en": "What is the episode number where the English title is Pilot?",
    "question_th": "หมายเลขตอนที่ชื่อภาษาอังกฤษคือ 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_en": "What was the original air date for episode number 6?",
    "question_th": "ตอนที่ 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_en": "What is the original title of season number 3?",
    "question_th": "ชื่อดั้งเดิมของซีซั่นที่ 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_en": "What municipality where the human development index in the year 2000 was 0.7827?",
    "question_th": "เทศบาลใดที่ดัชนีการพัฒนามนุษย์ในปี พ.ศ. 2543 อยู่ที่ 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_en": "What is the total number of population in the year 2005 where the population density 35.9 (/km 2)?",
    "question_th": "จำนวนประชากรทั้งหมดในปี พ.ศ. 2548 โดยความหนาแน่นของประชากร 35.9 (/กม. 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_en": "What is the human development index for the year 2000 where the ingei code is 10?",
    "question_th": "ดัชนีการพัฒนามนุษย์ปี 2543 โดยรหัส ingei คือ 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_en": "What is the area (km 2) where the population density (/mk2) is 84.3?",
    "question_th": "พื้นที่ (กม. 2) ที่ความหนาแน่นของประชากร (/mk2) เท่ากับ 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_en": "Name the mandate for list pct 12.39%",
    "question_th": "ระบุชื่ออาณัติสำหรับรายการ เปอร์เซ็นต์ 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_en": "Name the total number of list votes for 20.95%",
    "question_th": "ระบุจำนวนคะแนนโหวตรวม 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_en": "What was the scoring rank for Angela Stanford in 2009?",
    "question_th": "คะแนนของแองเจลา สแตนฟอร์ดในปี 2009 อยู่ที่เท่าไร",
    "context": "CREATE TABLE table_14836185_3 (scoring_rank VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT MAX(money_list_rank) FROM table_14836185_3",
    "question_en": "What was the highest number on money list rank for Angela Stanford's career?",
    "question_th": "อาชีพของ Angela Stanford อยู่ในอันดับสูงสุดในรายการเงินคือเท่าใด",
    "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_en": "In the year where Angela Stanford had a scoring average of 71.62, how many times did she take second place?",
    "question_th": "ในปีที่แองเจลา สแตนฟอร์ดมีคะแนนเฉลี่ย 71.62 เธอได้อันดับสองกี่ครั้ง",
    "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_en": "Namw the minimum production code for 16.04 million viewers",
    "question_th": "กำหนดรหัสการผลิตขั้นต่ำสำหรับผู้ชม 16.04 ล้านคน",
    "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_en": "Name the written by for 16.32 million viewers",
    "question_th": "ตั้งชื่อผู้เขียนให้คนดู 16.32 ล้านคน",
    "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_en": "What is the highest number of cuts made when her best finish is t4?",
    "question_th": "จำนวนการคัทสูงสุดของเธอเมื่อเข้าเส้นชัยได้ดีที่สุดคือ 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_en": "How many total earnings are recorded when her best finish is t2 with a 71.25 scoring average?",
    "question_th": "รายได้ทั้งหมดจะถูกบันทึกเมื่อจบสกอร์ที่ดีที่สุดของเธอคือ t2 ด้วยคะแนนเฉลี่ย 71.25",
    "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_en": "What is the lowest number of cuts made when her best finish is t4?",
    "question_th": "จำนวนการคัทต่ำสุดเมื่อเข้าสกอร์ได้ดีที่สุดคือ 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_en": "How many years has she ranked 56 on the money list?",
    "question_th": "เธออยู่ในอันดับที่ 56 ในรายการเงินมากี่ปีแล้ว?",
    "context": "CREATE TABLE table_14853156_2 (year VARCHAR, money_list_rank VARCHAR)"
  },
  {
    "answer": "SELECT MIN(wins) FROM table_14853156_2",
    "question_en": "What is the lowest number of wins?",
    "question_th": "จำนวนชัยชนะต่ำสุดคือเท่าไร?",
    "context": "CREATE TABLE table_14853156_2 (wins INTEGER)"
  },
  {
    "answer": "SELECT written_by FROM table_14847258_1 WHERE directed_by = \"Steve Gomer\"",
    "question_en": "When steve gomer is the director who is the writer?",
    "question_th": "เมื่อ สตีฟ โกเมอร์ เป็นผู้กำกับ ใครเป็นคนเขียนบท?",
    "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_en": "15.03 million u.s viewers seen what episode?",
    "question_th": "ผู้ชม 15.03 ล้านคนดูตอนไหน?",
    "context": "CREATE TABLE table_14847258_1 (title VARCHAR, us_viewers__millions_ VARCHAR)"
  },
  {
    "answer": "SELECT MIN(3 AS _credits) FROM table_148535_2",
    "question_en": "Name the most 3 credits",
    "question_th": "ระบุชื่อได้มากที่สุด 3 หน่วยกิต",
    "context": "CREATE TABLE table_148535_2 (Id VARCHAR)"
  },
  {
    "answer": "SELECT MIN(2 AS _credits) FROM table_148535_2 WHERE hand = \"Straight\"",
    "question_en": "Name the least 2 credits for straight hand",
    "question_th": "ตั้งชื่ออย่างน้อย 2 เครดิตสำหรับมือตรง",
    "context": "CREATE TABLE table_148535_2 (hand VARCHAR)"
  },
  {
    "answer": "SELECT MIN(2 AS _credits) FROM table_148535_2 WHERE hand = \"Flush\"",
    "question_en": "Name the least 2 credits for flush",
    "question_th": "ตั้งชื่ออย่างน้อย 2 เครดิตสำหรับการฟลัช",
    "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_en": "Name the most 1 credit for three of a kind",
    "question_th": "ตั้งชื่อเครดิตสูงสุด 1 รายการสำหรับสามประเภท",
    "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_en": "Name the points classification for mark renshaw and team csc",
    "question_th": "ตั้งชื่อการจำแนกคะแนนสำหรับ mark renshaw และ 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_en": "How many episodes were released on DVD in the US on October 13, 2009?",
    "question_th": "วันที่ 13 ตุลาคม 2552 ดีวีดีในสหรัฐอเมริกาวางจำหน่ายกี่ตอน",
    "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_en": "How many episodes were put out in Region 4 on March 4, 2010?",
    "question_th": "วันที่ 4 มีนาคม 2553 มีกี่ตอนที่ถูกปล่อยออกมาในภาค 4?",
    "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_en": "How many episodes were released in the season 1 DVD?",
    "question_th": "ดีวีดีซีซั่น 1 ปล่อยออกมากี่ตอน?",
    "context": "CREATE TABLE table_14855908_3 (episodes INTEGER, dvd_name VARCHAR)"
  },
  {
    "answer": "SELECT altitude__km_ FROM table_148578_1 WHERE explosion = \"Hardtack Teak\"",
    "question_en": "What was the altitude of the explosion Hardtack Teak?",
    "question_th": "การระเบิดของ 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_en": "What was the altitude of the event on 1962-07-09?",
    "question_th": "เหตุการณ์ในวันที่ 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_en": "What was the altitude of the yield of 1.4 megatons?",
    "question_th": "ระดับความสูงของผลผลิต 1.4 เมกะตันคืออะไร?",
    "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_en": "What was the yield of the K-4 explosion?",
    "question_th": "ผลของการระเบิด K-4 คืออะไร?",
    "context": "CREATE TABLE table_148578_1 (yield__approximate_ VARCHAR, explosion VARCHAR)"
  },
  {
    "answer": "SELECT explosion FROM table_148578_1 WHERE altitude__km_ = \"539\"",
    "question_en": "What explosion had an altitude of 539 km?",
    "question_th": "การระเบิดใดมีระดับความสูง 539 กม.",
    "context": "CREATE TABLE table_148578_1 (explosion VARCHAR, altitude__km_ VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_14863869_1 WHERE date = \"September 23, 1984\"",
    "question_en": "List all opponents in the September 23, 1984 game?",
    "question_th": "รายชื่อคู่ต่อสู้ทั้งหมดในเกม 23 กันยายน 2527?",
    "context": "CREATE TABLE table_14863869_1 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_14863869_1 WHERE date = \"December 2, 1984\"",
    "question_en": "What was the score in the game played on December 2, 1984?",
    "question_th": "คะแนนในเกมที่เล่นเมื่อวันที่ 2 ธันวาคม พ.ศ. 2527 เป็นเท่าใด?",
    "context": "CREATE TABLE table_14863869_1 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(record) FROM table_14863869_1 WHERE week = 11",
    "question_en": "How many scores were there in week 11?",
    "question_th": "สัปดาห์ที่ 11 มีกี่คะแนน?",
    "context": "CREATE TABLE table_14863869_1 (record VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT MAX(wins) FROM table_14871601_1 WHERE team = \"Nacional\"",
    "question_en": "What is the highest win for the team Nacional?",
    "question_th": "ชัยชนะสูงสุดของทีม 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_en": "What is the smallest conceded value for the team 12 De Octubre?",
    "question_th": "ค่าตัวที่ยอมรับน้อยที่สุดของทีม 12 เด ออคทูเบอร์ คือเท่าไร?",
    "context": "CREATE TABLE table_14871601_1 (conceded INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT MIN(draws) FROM table_14871601_1 WHERE points = 21",
    "question_en": "What is the smallest draws value with 21 points?",
    "question_th": "ค่าเสมอที่น้อยที่สุดด้วย 21 แต้มคือเท่าไร?",
    "context": "CREATE TABLE table_14871601_1 (draws INTEGER, points VARCHAR)"
  },
  {
    "answer": "SELECT MAX(losses) FROM table_14871601_1 WHERE team = \"Tacuary\"",
    "question_en": "What is the largest loss for the Tacuary team?",
    "question_th": "อะไรคือการสูญเสียครั้งใหญ่ที่สุดสำหรับทีม Tacuary?",
    "context": "CREATE TABLE table_14871601_1 (losses INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_14877831_2 WHERE opponents = 51",
    "question_en": "What is the name of the venue where the opponent scored 51?",
    "question_th": "สนามที่คู่ต่อสู้ทำคะแนนได้ 51 ประตูชื่ออะไร?",
    "context": "CREATE TABLE table_14877831_2 (venue VARCHAR, opponents VARCHAR)"
  },
  {
    "answer": "SELECT MIN(first_downs) FROM table_14877831_2 WHERE attendance = 13196",
    "question_en": "How many first downs were there when the attendance was 13196?",
    "question_th": "มีผู้ล้มลงครั้งแรกกี่ครั้งเมื่อมีผู้เข้าร่วม 13,196 คน?",
    "context": "CREATE TABLE table_14877831_2 (first_downs INTEGER, attendance VARCHAR)"
  },
  {
    "answer": "SELECT game_site FROM table_14875671_1 WHERE opponent = \"Buffalo Bills\"",
    "question_en": "What was the site of the game against Buffalo Bills ?",
    "question_th": "เกมนี้เจอกับบัฟฟาโล บิลส์ ที่ไหน?",
    "context": "CREATE TABLE table_14875671_1 (game_site VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT MAX(attendance) FROM table_14875671_1 WHERE week = 8",
    "question_en": "What was the attendance in week 8?",
    "question_th": "การเข้าร่วมในสัปดาห์ที่ 8 คืออะไร?",
    "context": "CREATE TABLE table_14875671_1 (attendance INTEGER, week VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_14875671_1 WHERE attendance = 63995",
    "question_en": "What was the date when the attendance was 63995",
    "question_th": "ผู้เข้าร่วมคือวันที่เท่าไร 63995",
    "context": "CREATE TABLE table_14875671_1 (date VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_14875671_1 WHERE week = 4",
    "question_en": "Who was the opponent in week 4?",
    "question_th": "คู่ต่อสู้ในสัปดาห์ที่ 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_en": "How many different skippers of the yacht City Index Leopard?",
    "question_th": "มีกัปตันเรือยอทช์ 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_en": "If sail number is AUS 03, what are all associated race numbers?",
    "question_th": "หากหมายเลขใบเรือคือ AUS 03 หมายเลขการแข่งขันที่เกี่ยวข้องทั้งหมดคืออะไร",
    "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_en": "In what location was the fastest time 1:37.071s?",
    "question_th": "เวลาที่เร็วที่สุดคือ 1:37.071 วินาที ณ ตำแหน่งใด",
    "context": "CREATE TABLE table_14884844_2 (location VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_14884844_2 WHERE athletes = \"Birgit Fischer\"",
    "question_en": "What are all the places where Birgit Fischer competed?",
    "question_th": "Birgit Fischer ลงแข่งขันที่ไหนบ้าง?",
    "context": "CREATE TABLE table_14884844_2 (location VARCHAR, athletes VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_14884844_2 WHERE athletes = \"Elzbieta Urbanczik\"",
    "question_en": "What are the records when Elzbieta Urbanczik competed?",
    "question_th": "บันทึกเมื่อ Elzbieta Urbanczik ลงแข่งขันมีอะไรบ้าง?",
    "context": "CREATE TABLE table_14884844_2 (record VARCHAR, athletes VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(wins) FROM table_14889048_1 WHERE points = 17",
    "question_en": "Name the number of wins for when points is 17",
    "question_th": "ตั้งชื่อจำนวนชัยชนะเมื่อแต้มคือ 17",
    "context": "CREATE TABLE table_14889048_1 (wins VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(draws) FROM table_14889048_1 WHERE conceded = 25",
    "question_en": "Name the number of draws for when conceded is 25",
    "question_th": "ตั้งชื่อจำนวนเสมอเมื่อยอมรับคือ 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_en": "Name the most conceded when draws is 5 and position is 1",
    "question_th": "ระบุชื่อที่ยอมรับมากที่สุดเมื่อเสมอคือ 5 และตำแหน่งคือ 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_en": "What date was the episode with production code 176265 aired?",
    "question_th": "ตอนรหัสผลิต 176265 ออกอากาศวันไหนครับ?",
    "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_en": "On what dates were episodes written by Robert Carlock aired?",
    "question_th": "ตอนที่เขียนโดย Robert Carlock ออกอากาศวันไหน?",
    "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_en": "What is the production code for episode 229?",
    "question_th": "รหัสการผลิตตอนที่ 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_en": "What is the title for the episode written by Robert Carlock & Dana Klein Borkow?",
    "question_th": "ตอนที่เขียนโดย 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_en": "Who directed the episode with the production code 176252?",
    "question_th": "ใครกำกับตอนด้วยรหัสการผลิต 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_en": "How many points when 15 is scored is considered the minimum?",
    "question_th": "เมื่อได้ 15 คะแนน ถือว่าขั้นต่ำกี่คะแนน?",
    "context": "CREATE TABLE table_14889048_2 (points INTEGER, scored VARCHAR)"
  },
  {
    "answer": "SELECT MAX(points) FROM table_14889048_2 WHERE wins = 4",
    "question_en": "When a team wins 4, how much is the Maximum amount of points?",
    "question_th": "เมื่อทีมชนะได้ 4 คะแนน จำนวนคะแนนสูงสุดคือเท่าไร?",
    "context": "CREATE TABLE table_14889048_2 (points INTEGER, wins VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(draws) FROM table_14889048_2 WHERE team = \"Libertad\"",
    "question_en": "How may draws did libertad have?",
    "question_th": "ลิเบอร์ตาดมีแต้มเสมอได้อย่างไร?",
    "context": "CREATE TABLE table_14889048_2 (draws VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT men_doubles FROM table_14903355_2 WHERE womens_singles = \"Els Baert\"",
    "question_en": "Name the men doubles for els baert",
    "question_th": "ตั้งชื่อประเภทชายคู่สำหรับ 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_en": "Name the men doubles for caroline persyn smids",
    "question_th": "ตั้งชื่อประเภทชายคู่สำหรับแคโรไลน์ เพอร์ซิน สมิดส์",
    "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_en": "Name the number of men doubles for 2007",
    "question_th": "ตั้งชื่อจำนวนชายสองเท่าในปี 2550",
    "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_en": "Name the womens singles for  raina tzvetkova petya nedelcheva",
    "question_th": "ตั้งชื่อประเภทหญิงเดี่ยวสำหรับ 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_en": "Name the number of years for womens doubles being  diana koleva emilia dimitrova and  jeliazko valkov",
    "question_th": "ตั้งชื่อจำนวนปีหญิงคู่ ได้แก่ ไดอาน่า โคเลวา เอมิเลีย ดิมิโทรวา และเยลิอาซโก วัลคอฟ",
    "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_en": "Name the mens singles for  jeliazko valkov dobrinka peneva",
    "question_th": "ตั้งชื่อชายเดี่ยวสำหรับ 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_en": "Name the mens singles for 1989",
    "question_th": "ตั้งชื่อชายเดี่ยวปี 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_en": "Name the year for victoria hristova neli nedialkova",
    "question_th": "ตั้งชื่อปีตามวิกตอเรีย ฮริสโตวา เนลี เนเดียลโควา",
    "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_en": "Name the year for womens doubles being raina tzvetkova emilia dimitrova",
    "question_th": "ตั้งชื่อปีประเภทหญิงคู่ว่า เรนา ทซเวตโควา เอมิเลีย ดิมิโตรวา",
    "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_en": "WHAT ARE THE NAMES OF THE MENS DOUBLES WHEN THE WOMENS DOUBLES WAS PIRET HAMER HELEN REINO?",
    "question_th": "ชื่อของชายคู่เมื่อหญิงคู่คือไพเรต ฮาเมอร์ เฮเลน เรโนชื่ออะไร?",
    "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_en": "WHAT IS THE NAME OF THE MENS DOUBLES PLAYER WHEN THE WOMENS DOUBLES PLAYER IS HELEN REINO KAI-RIIN SALUSTE?",
    "question_th": "ชื่อของผู้เล่นคู่ชายคืออะไร เมื่อผู้เล่นหญิงคู่คือเฮเลน เรโน ไค-ริอิน ซาลุสต์?",
    "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_en": "WHAT IS THE NAME OF THE MIXED DOUBLES PLAYER WHEN THE WOMENS SINGLE PLAYER IS KAIRI VIILUP?",
    "question_th": "ชื่อของผู้เล่นคู่ผสมเมื่อผู้เล่นเดี่ยวหญิงคือ 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_en": "HOW MANY YEARS DID MENS DOUBLES PLAYER HEIKI SORGE MEELIS MAISTE PLAY?",
    "question_th": "ผู้เล่น HEIKI SORGE MEELIS MAISTE เล่นได้กี่ปี?",
    "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_en": "Name the womens doubles when mens doubles is charalambos kazilas stepan partemian",
    "question_th": "ตั้งชื่อประเภทหญิงคู่เมื่อชายคู่คือ 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_en": "Name the womens doubles when mixed doubles is potten ruth scott",
    "question_th": "ตั้งชื่อประเภทหญิงคู่เมื่อคู่ผสมคือ พอตเทน รูธ สกอตต์",
    "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_en": "Name the mens singles when mens doubles is george georgoudis gerostergiou",
    "question_th": "ตั้งชื่อชายเดี่ยวเมื่อชายคู่คือ 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_en": "Name the womens doubles when mens doubles is theodoros velkos giorgos patis",
    "question_th": "ตั้งชื่อประเภทหญิงคู่ เมื่อชายคู่คือ 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 = \"Þorvaldur Ásgeirsson Lovísa Sigurðardóttir\"",
    "question_en": "What was the earliest year Þorvaldur Ásgeirsson Lovísa Sigurðardóttir won mixed doubles",
    "question_th": "ปีแรกสุดคือ Þorvaldur Ásgeirsson Lovísa Sigurðardóttir ชนะประเภทคู่ผสม",
    "context": "CREATE TABLE table_14903999_1 (year INTEGER, mixed_doubles VARCHAR)"
  },
  {
    "answer": "SELECT womens_doubles FROM table_14903999_1 WHERE mixed_doubles = \"Magnús Ingi Helgason Tinna Helgadóttir\" AND womens_singles = \"Ragna Ingólfsdóttir\" AND year = 2010",
    "question_en": "Who won womens doubles the year magnús ingi helgason tinna helgadóttir won mixed doubles and ragna ingólfsdóttir won womens singles in 2010",
    "question_th": "ใครชนะประเภทหญิงคู่ในปีนี้ Magnus Ingi Helgason tinna Helgadóttir ชนะประเภทคู่ผสม และ Ragna ingólfsdóttir ชนะประเภทหญิงเดี่ยวในปี 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ánsson Drífa Harðardóttir\"",
    "question_en": "How many womens doubles had champions the years broddi kristjánsson drífa harðardóttir won mixed doubles",
    "question_th": "มีหญิงคู่กี่คนที่ได้แชมป์ในสมัยนั้น broddi kristjánsson drífa harðardóttir ชนะประเภทคู่ผสม",
    "context": "CREATE TABLE table_14903999_1 (womens_doubles VARCHAR, mixed_doubles VARCHAR)"
  },
  {
    "answer": "SELECT MAX(year) FROM table_14903999_1 WHERE mixed_doubles = \"Árni Þór Hallgrímsson Drífa Harðardóttir\"",
    "question_en": "What was the last year árni þór hallgrímsson drífa harðardóttir won mixed doubles",
    "question_th": "ปีที่แล้วคือ árni þór hallgrímsson drífa harðardóttir ชนะประเภทคู่ผสม",
    "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ölvason Tryggvi Nilsen\" AND womens_singles = \"Elsa Nielsen\"",
    "question_en": "Who won mens singles the year sveinn logi sölvason tryggvi nilsen won mens doubles and elsa nielsen won womens singles",
    "question_th": "ใครชนะประเภทชายเดี่ยวในปีนี้ สเวนน์ โลกี ซอลวาสัน tryggvi nilsen ชนะประเภทชายคู่ และ elsa nielsen ชนะประเภทหญิงเดี่ยว",
    "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ño\"",
    "question_en": "In which position is the team Cerro Porteño?",
    "question_th": "ทีม Cerro Porteño อยู่ตำแหน่งไหน?",
    "context": "CREATE TABLE table_14911550_5 (position VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT MIN(played) FROM table_14911550_5",
    "question_en": "How many games were played?",
    "question_th": "เล่นไปแล้วกี่เกม?",
    "context": "CREATE TABLE table_14911550_5 (played INTEGER)"
  },
  {
    "answer": "SELECT mixed_doubles FROM table_14904221_1 WHERE mens_doubles = \"no competition\"",
    "question_en": "What is the result of men's doubles when there was no competition?",
    "question_th": "ชายคู่จะส่งผลอย่างไรเมื่อไม่มีการแข่งขัน?",
    "context": "CREATE TABLE table_14904221_1 (mixed_doubles VARCHAR, mens_doubles VARCHAR)"
  },
  {
    "answer": "SELECT mens_singles FROM table_14904221_1 WHERE year = 1994",
    "question_en": "WHo won men's singles in 1994?",
    "question_th": "ใครชนะประเภทชายเดี่ยวในปี 1994?",
    "context": "CREATE TABLE table_14904221_1 (mens_singles VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT womens_singles FROM table_14904221_1 WHERE year = 2001",
    "question_en": "Who won women's singles in 2001?",
    "question_th": "ใครชนะหญิงเดี่ยวในปี 2544?",
    "context": "CREATE TABLE table_14904221_1 (womens_singles VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT MIN(wins) FROM table_14911550_1",
    "question_en": "Name the least wins",
    "question_th": "ตั้งชื่อว่าชนะน้อยที่สุด",
    "context": "CREATE TABLE table_14911550_1 (wins INTEGER)"
  },
  {
    "answer": "SELECT result FROM table_14928423_1 WHERE original_title = \"Γолемата Вода\"",
    "question_en": "is γолемата вода nominated for anything?",
    "question_th": "γолемата вода ได้รับการเสนอชื่อเข้าชิงรางวัลอะไรไหม?",
    "context": "CREATE TABLE table_14928423_1 (result VARCHAR, original_title VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(year__ceremony_) FROM table_14928423_1 WHERE original_title = \"Сенки\"",
    "question_en": "how many years has сенки been nominated?",
    "question_th": "сенки ได้รับการเสนอชื่อมากี่ปีแล้ว?",
    "context": "CREATE TABLE table_14928423_1 (year__ceremony_ VARCHAR, original_title VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(director_s_) FROM table_14928423_1 WHERE original_title = \"Мајки\"",
    "question_en": "how many directors for the film мајки",
    "question_th": "มีผู้กำกับกี่คนสำหรับภาพยนตร์เรื่องนี้ мајки",
    "context": "CREATE TABLE table_14928423_1 (director_s_ VARCHAR, original_title VARCHAR)"
  },
  {
    "answer": "SELECT performer_2 FROM table_14934885_1 WHERE episode = 5",
    "question_en": "Who is the second performer in episode 5?",
    "question_th": "นักแสดงคนที่สองในตอนที่ 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_en": "How many times was performer 3 Kate Robbins?",
    "question_th": "นักแสดง 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_en": "Who was perfomer one on 30 January 1988?",
    "question_th": "ใครคือนักแสดงคนหนึ่งในวันที่ 30 มกราคม พ.ศ. 2531?",
    "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_en": "Who was performer 4 when Kate Robbins was performer 3?",
    "question_th": "ใครคือนักแสดงคนที่ 4 เมื่อ Kate Robbins เป็นนักแสดงคนที่ 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_en": "How many episodes was Jimmy Mulville performer 4?",
    "question_th": "Jimmy Mulville นักแสดง 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_en": "Which general election had a vote swing of 1.84?",
    "question_th": "การเลือกตั้งทั่วไปใดมีคะแนนเสียงแกว่ง 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_en": "What was the total number of seats won where the % of votes is equal to 20.29?",
    "question_th": "จำนวนที่นั่งทั้งหมดที่ชนะโดย % ของคะแนนเสียงเท่ากับ 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_en": "What was the number of seat changes when the % of votes was 23.75?",
    "question_th": "จำนวนที่นั่งเปลี่ยนแปลงเป็นเท่าใดเมื่อ % ของคะแนนโหวตคือ 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_en": "Which general election had a vote swing of 1.69?",
    "question_th": "การเลือกตั้งทั่วไปใดมีคะแนนเสียงแกว่ง 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_en": "What was the vote swing for the general election of the 12th lok sabha?",
    "question_th": "การเลือกตั้งทั่วไปโลกสภาครั้งที่ 12 มีความผันผวนของคะแนนเสียงอย่างไรบ้าง?",
    "context": "CREATE TABLE table_149330_1 (votes_swing VARCHAR, general_election VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_14942535_1 WHERE week = 4",
    "question_en": "What was the team's result in week 4?",
    "question_th": "ผลงานของทีมในสัปดาห์ที่ 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_en": "When the network mask is 255.255.255.252 what is the prefix size?",
    "question_th": "เมื่อเน็ตเวิร์กมาสก์เป็น 255.255.255.252 คำนำหน้ามีขนาดเท่าใด",
    "context": "CREATE TABLE table_149426_4 (prefix_size VARCHAR, network_mask VARCHAR)"
  },
  {
    "answer": "SELECT MAX(available_subnets) FROM table_149426_4",
    "question_en": "available subnets leading total is?",
    "question_th": "ซับเน็ตที่มีอยู่ชั้นนำทั้งหมดคืออะไร?",
    "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_en": "When the network mask is  255.255.255.128 what is the lowest available subnet?",
    "question_th": "เมื่อเน็ตเวิร์กมาสก์คือ 255.255.255.128 ซับเน็ตต่ำสุดที่มีอยู่คืออะไร",
    "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_en": "When the network mask is 255.255.255.224 what is the highest  total usable host?",
    "question_th": "เมื่อเน็ตเวิร์กมาสก์คือ 255.255.255.224 โฮสต์ที่ใช้งานรวมสูงสุดคือเท่าใด",
    "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_en": "Who were all of the opponents when the date was November 12, 1978?",
    "question_th": "คู่ต่อสู้ทั้งหมดเมื่อถึงวันที่ 12 พฤศจิกายน พ.ศ. 2521 คือใคร?",
    "context": "CREATE TABLE table_14945112_1 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(attendance) FROM table_14945112_1 WHERE date = \"October 1, 1978\"",
    "question_en": "What is the total number of values for attendance for the date October 1, 1978?",
    "question_th": "จำนวนมูลค่ารวมสำหรับการเข้าร่วมสำหรับวันที่ 1 ตุลาคม 2521 เป็นเท่าใด",
    "context": "CREATE TABLE table_14945112_1 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(attendance) FROM table_14945608_1",
    "question_en": "What was the highest attendance?",
    "question_th": "ผู้เข้าร่วมสูงสุดคืออะไร?",
    "context": "CREATE TABLE table_14945608_1 (attendance INTEGER)"
  },
  {
    "answer": "SELECT date FROM table_14945608_1 WHERE opponent = \"New York Jets\"",
    "question_en": "What date did the Colts play New York Jets?",
    "question_th": "Colts เล่น 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_en": "How many games had the attendance of 60225?",
    "question_th": "มีผู้เข้าร่วม 60225 เกมกี่เกม?",
    "context": "CREATE TABLE table_14945608_1 (result VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_14954150_1 WHERE date = \"October 6, 1974\"",
    "question_en": "What was the result of the game on October 6, 1974?",
    "question_th": "ผลการแข่งขันเมื่อวันที่ 6 ตุลาคม พ.ศ. 2517 เป็นอย่างไร?",
    "context": "CREATE TABLE table_14954150_1 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_14954150_1 WHERE date = \"September 22, 1974\"",
    "question_en": "What was the record on September 22, 1974?",
    "question_th": "บันทึกเมื่อวันที่ 22 กันยายน พ.ศ. 2517 คืออะไร?",
    "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_en": "What was the Bhofen #1 score and rank for the player whose Bhofen #2 score and rank was 231.2 (8)?",
    "question_th": "คะแนนและอันดับของ Bhofen #1 คืออะไรสำหรับผู้เล่นที่มีคะแนนและอันดับของ Bhofen #2 คือ 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_en": "What was the Bhofen #2 score and rank for the player whose GA-PA score and rank was 233.4 (16)?",
    "question_th": "คะแนนและอันดับ Bhofen #2 สำหรับผู้เล่นที่มีคะแนน GA-PA และอันดับคือ 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_en": "What was the Bhofen #2 score and rank for the player whose GA-PA score and rank was 227.5 (19)?",
    "question_th": "คะแนนและอันดับ Bhofen #2 สำหรับผู้เล่นที่มีคะแนน GA-PA และอันดับคือ 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_en": "How many points in total were scored by the player whose Oberstdork score and rank were 252.6 (11)?",
    "question_th": "ผู้เล่นที่ทำคะแนนและอันดับของ Oberstdork ได้ทั้งหมดกี่คะแนนคือ 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_en": "On which week was the attendance 74303?",
    "question_th": "ผู้เข้าร่วม 74303 ในสัปดาห์ใด",
    "context": "CREATE TABLE table_14958620_1 (week INTEGER, attendance VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_14958620_1 WHERE game_site = \"Tiger Stadium\"",
    "question_en": "On which date was the game played at Tiger Stadium?",
    "question_th": "แข่งขันที่ไทเกอร์ สเตเดี้ยม วันไหน?",
    "context": "CREATE TABLE table_14958620_1 (date VARCHAR, game_site VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_14959246_2 WHERE opponent = \"Dallas Cowboys\"",
    "question_en": "What was the final score of the game against the Dallas Cowboys?",
    "question_th": "คะแนนสุดท้ายของเกมกับดัลลัส คาวบอยส์คือเท่าไร?",
    "context": "CREATE TABLE table_14959246_2 (result VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_14959246_2 WHERE date = \"December 10, 1972\"",
    "question_en": "What was the attendance at the game played on December 10, 1972?",
    "question_th": "ผู้เข้าร่วมในเกมที่เล่นเมื่อวันที่ 10 ธันวาคม พ.ศ. 2515 เป็นอย่างไรบ้าง?",
    "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_en": "Name the french actor with javier romano",
    "question_th": "ตั้งชื่อนักแสดงชาวฝรั่งเศสด้วย ฮาเวียร์ โรมาโน",
    "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_en": "Name the german voice actor for alain dorval",
    "question_th": "ตั้งชื่อนักพากย์ชาวเยอรมันสำหรับ 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_en": "Name the german voice actor for rafael torres",
    "question_th": "ตั้งชื่อผู้ให้เสียงชาวเยอรมันให้กับ ราฟาเอล ตอร์เรส",
    "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_en": "Name the character for sophie arthuys",
    "question_th": "ตั้งชื่อตัวละครให้โซฟี อาร์ธุยส์",
    "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_en": "Name the italian voice actor for dirk fenselau",
    "question_th": "ตั้งชื่อนักพากย์ชาวอิตาลีให้กับ 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_en": "which fa cups had a total of 565 (7)?",
    "question_th": "เอฟเอคัพไหนมีทั้งหมด 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_en": "which years had other a of 8 (1)?",
    "question_th": "ปีใดมีอีก 8 (1)?",
    "context": "CREATE TABLE table_14962287_1 (years VARCHAR, other_a VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_14962287_2 WHERE league = 142",
    "question_en": "What name is associated with League 142?",
    "question_th": "ชื่ออะไรที่เกี่ยวข้องกับลีก 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_en": "How many values of Other A correspond to Tommy Johnson Category:Articles with hCards?",
    "question_th": "มีกี่ค่าของ Other A ที่สอดคล้องกับ Tommy Johnson Category:บทความที่มี 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_en": "How many different Leagues are associated with Billy Meredith Category:Articles with hCards?",
    "question_th": "มีกี่ลีกที่เกี่ยวข้องกับ 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_en": "How many separate values for Years are associated with FA Cup of 5?",
    "question_th": "ค่าแยกปีที่เกี่ยวข้องกับ 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_en": "What years have a total of 139?",
    "question_th": "ปีไหนมีทั้งหมด 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_en": "What was the GDP (in millions USD) of Indonesia in 2009?",
    "question_th": "GDP (ล้านเหรียญสหรัฐ) ของอินโดนีเซียในปี 2552 เป็นเท่าใด",
    "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_en": "What was the GDP (in millions USD) of Hong Kong in 2009?",
    "question_th": "GDP (ล้านเหรียญสหรัฐ) ของฮ่องกงในปี 2552 เป็นเท่าใด",
    "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_en": "How tall is Braxton Kelley?",
    "question_th": "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_en": "what class is Braxton Kelley in?",
    "question_th": "Braxton Kelley อยู่คลาสไหน?",
    "context": "CREATE TABLE table_14966667_19 (class VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(hometown) FROM table_14966667_19 WHERE position = \"FS\"",
    "question_en": "how many hometowns use the position of fs?",
    "question_th": "มีกี่บ้านเกิดที่ใช้ตำแหน่ง fs?",
    "context": "CREATE TABLE table_14966667_19 (hometown VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_14966667_19 WHERE number = \"98\"",
    "question_en": "who is number 98?",
    "question_th": "หมายเลข 98 คือใคร?",
    "context": "CREATE TABLE table_14966667_19 (name VARCHAR, number VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(record) FROM table_14966537_1 WHERE opponent = \"Chicago Bears\"",
    "question_en": "How many games were played against the Chicago Bears?",
    "question_th": "มีการเล่นกับ Chicago Bears กี่เกม?",
    "context": "CREATE TABLE table_14966537_1 (record VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_14966537_1 WHERE opponent = \"Chicago Bears\"",
    "question_en": "What is the result of the game against the Chicago Bears?",
    "question_th": "ผลการแข่งขันกับชิคาโก้ แบร์สเป็นอย่างไร?",
    "context": "CREATE TABLE table_14966537_1 (result VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_14966537_1 WHERE date = \"October 4, 1970\"",
    "question_en": "What was the final score of the game on October 4, 1970?",
    "question_th": "คะแนนสุดท้ายของเกมเมื่อวันที่ 4 ตุลาคม พ.ศ. 2513 เป็นเท่าใด",
    "context": "CREATE TABLE table_14966537_1 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_14966537_1 WHERE date = \"October 25, 1970\"",
    "question_en": "Who was the team's opponent of October 25, 1970?",
    "question_th": "คู่ต่อสู้ของทีมเมื่อวันที่ 25 ตุลาคม พ.ศ. 2513 คือใคร?",
    "context": "CREATE TABLE table_14966537_1 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT recopa_sudamericana_1998 FROM table_14962316_9 WHERE team = \"Flamengo\"",
    "question_en": "Did Flamengo play in the Recopa Sudamericana in 1998",
    "question_th": "ฟลาเมงโกเคยเล่นในเรโคปา ซูดาเมริกานา เมื่อปี 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_en": "What were Cruzeiro results in the Copa Mercosur in 1998",
    "question_th": "ครูไซโร่ทำผลงานได้เท่าไหร่ในโคปา เมอร์โกซูร์ ในปี 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_en": "Where is California Lutheran University located?",
    "question_th": "มหาวิทยาลัยแคลิฟอร์เนีย ลูเธอรัน ตั้งอยู่ที่ไหน",
    "context": "CREATE TABLE table_14976504_2 (location VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT new_classification FROM table_14976504_2 WHERE institution = \"University of Arizona\"",
    "question_en": "What is the new classification for the University of Arizona Western in the Collegiate Lacrosse League?",
    "question_th": "การจำแนกประเภทใหม่สำหรับ University of Arizona Western ใน 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_en": "What is California State University, Hayward's new conference for Western Collegiate Lacrosse?",
    "question_th": "California State University คืออะไร การประชุมใหม่ของ Hayward สำหรับ 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_en": "Which new conference is the Toreros Western Collegiate Lacrosse team playing in?",
    "question_th": "การประชุมครั้งใหม่ใดที่ทีม Toreros Western Collegiate Lacrosse ลงเล่น",
    "context": "CREATE TABLE table_14976504_2 (new_conference VARCHAR, team_nickname VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_14981555_3 WHERE venue = \"Ascot (UK)\"",
    "question_en": "In Ascot (UK), what was the result?",
    "question_th": "ที่ Ascot (สหราชอาณาจักร) ผลลัพธ์เป็นอย่างไร?",
    "context": "CREATE TABLE table_14981555_3 (result VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(jockey) FROM table_14981555_3 WHERE date = \"17 Feb 2007\"",
    "question_en": "How many different jockeys ran on 17 Feb 2007?",
    "question_th": "มีจ๊อกกี้ที่แตกต่างกันกี่คนที่วิ่งในวันที่ 17 กุมภาพันธ์ พ.ศ. 2550",
    "context": "CREATE TABLE table_14981555_3 (jockey VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_14981555_3 WHERE date = \"10 Mar 2007\"",
    "question_en": "How many venues were used on 10 Mar 2007?",
    "question_th": "วันที่ 10 มีนาคม พ.ศ. 2550 ใช้สถานที่จำนวนเท่าใด",
    "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_en": "How many jockeys are listed running at the Sir Rupert Clarke Stakes?",
    "question_th": "มีจ๊อกกี้กี่คนที่ลงแข่งขันที่ 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_en": "How many venues had a race called the Australia Stakes?",
    "question_th": "มีสถานที่จัดการแข่งขันกี่แห่งที่เรียกว่า Australia Stakes",
    "context": "CREATE TABLE table_14981555_3 (venue VARCHAR, race VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_14981555_1 WHERE distance = \"1400 m\"",
    "question_en": "Where was the 1400 m held?",
    "question_th": "วิ่ง 1,400 ม. จัดขึ้นที่ไหน?",
    "context": "CREATE TABLE table_14981555_1 (venue VARCHAR, distance VARCHAR)"
  },
  {
    "answer": "SELECT group FROM table_14981555_1 WHERE race = \"3yo Hcp Restricted Maiden\"",
    "question_en": "What is the group name when 3yo hcp restricted maiden was raced?",
    "question_th": "ชื่อกลุ่มเมื่อ 3yo hcp จำกัด หญิงสาวถูกแข่งคืออะไร?",
    "context": "CREATE TABLE table_14981555_1 (group VARCHAR, race VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_14981555_1 WHERE weight__kg_ = \"55\"",
    "question_en": "When did the 55 kg participant race?",
    "question_th": "ผู้เข้าร่วม 55 กก. แข่งขันเมื่อใด",
    "context": "CREATE TABLE table_14981555_1 (date VARCHAR, weight__kg_ VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(week) FROM table_14984050_1 WHERE attendance = 50073",
    "question_en": "Name the number of weeks for 50073 attendance",
    "question_th": "ตั้งชื่อจำนวนสัปดาห์สำหรับการเข้าร่วม 5,0073 ครั้ง",
    "context": "CREATE TABLE table_14984050_1 (week VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_14984050_1 WHERE game_site = \"Milwaukee County Stadium\"",
    "question_en": "Name the result for milwaukee county stadium",
    "question_th": "ตั้งชื่อผลลัพธ์สำหรับสนามกีฬามิลวอกีเคาน์ตี",
    "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_en": "What was the record when the game was played at Cleveland Municipal Stadium?",
    "question_th": "เกมนี้เล่นที่สนามกีฬาเทศบาลคลีฟแลนด์มีสถิติอะไรบ้าง?",
    "context": "CREATE TABLE table_14984078_1 (record VARCHAR, game_site VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_14984078_1 WHERE week = 13",
    "question_en": "What was the game date in week 13?",
    "question_th": "วันที่เล่นเกมในสัปดาห์ที่ 13 คืออะไร?",
    "context": "CREATE TABLE table_14984078_1 (date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT game_site FROM table_14984078_1 WHERE opponent = \"Detroit Lions\"",
    "question_en": "Where did the team play the Detroit Lions?",
    "question_th": "ทีมเล่น 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_en": "What week of the season did the date December 2, 1962 fall on?",
    "question_th": "วันที่ 2 ธันวาคม 2505 ตรงกับสัปดาห์ใดของฤดูกาล?",
    "context": "CREATE TABLE table_14984078_1 (week VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_14984039_1 WHERE date = \"October 14, 1956\"",
    "question_en": "what is the result for October 14, 1956?",
    "question_th": "ผลลัพธ์ของวันที่ 14 ตุลาคม 2499 เป็นอย่างไร?",
    "context": "CREATE TABLE table_14984039_1 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT game_site FROM table_14984103_1 WHERE week = 6",
    "question_en": "Name the game site for week 6",
    "question_th": "ตั้งชื่อเว็บไซต์เกมสำหรับสัปดาห์ที่ 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_en": "Name the number  of weeks for san francisco 49ers",
    "question_th": "ตั้งชื่อจำนวนสัปดาห์สำหรับซานฟรานซิสโก 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_en": "Name the most attendance for game site for los angeles memorial coliseum",
    "question_th": "ตั้งชื่อผู้เข้าชมเว็บไซต์เกมลอสแอนเจลิสอนุสรณ์สถานโคลิเซียมมากที่สุด",
    "context": "CREATE TABLE table_14984103_1 (attendance INTEGER, game_site VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_14984126_1 WHERE record = \"0–1\"",
    "question_en": "what's the result with record being 0–1",
    "question_th": "ผลลัพธ์ที่ได้คือ 0–1",
    "context": "CREATE TABLE table_14984126_1 (result VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT game_site FROM table_14984126_1 WHERE result = \"L 24–34\"",
    "question_en": "what's the game site with result being l 24–34",
    "question_th": "เว็บไซต์เกมคืออะไรและผลการแข่งขันคือ l 24–34",
    "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_en": " how many result with date being october 25, 1964",
    "question_th": " ออกผลกี่รายการวันที่ 25 ตุลาคม 2507",
    "context": "CREATE TABLE table_14984126_1 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(opponent) FROM table_14984126_1 WHERE date = \"October 25, 1964\"",
    "question_en": " how many opponent with date being october 25, 1964",
    "question_th": " คู่ต่อสู้กี่คน โดยวันที่ 25 ตุลาคม 2507",
    "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_en": "Name the population 2010 census for population 2000 census of 920599",
    "question_th": "ตั้งชื่อการสำรวจสำมะโนประชากรปี 2010 สำหรับการสำรวจสำมะโนประชากรปี 2000 จำนวน 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_en": "Name the total number of population 2000 census for mesquita",
    "question_th": "ตั้งชื่อจำนวนรวมของการสำรวจสำมะโนประชากร พ.ศ. 2543 สำหรับเมสกีตา",
    "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²_ = \"77\"",
    "question_en": "Name the population 2000 census for 77 area",
    "question_th": "ตั้งชื่อการสำรวจสำมะโนประชากร พ.ศ. 2543 สำหรับ 77 พื้นที่",
    "context": "CREATE TABLE table_14986292_1 (population_2000_census VARCHAR, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(area__km²_) FROM table_14986292_1 WHERE population_density_2010___km²_ = 514",
    "question_en": "Name the number of area where population density 2010 for 514",
    "question_th": "ตั้งชื่อจำนวนพื้นที่ที่มีความหนาแน่นของประชากรปี 2010 สำหรับ 514 คน",
    "context": "CREATE TABLE table_14986292_1 (area__km²_ VARCHAR, population_density_2010___km²_ VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(population_density_2010___km²_) FROM table_14986292_1 WHERE administrative_division = \"Duque de Caxias\"",
    "question_en": "Name the number of population density 2010 for duque de caxias",
    "question_th": "ตั้งชื่อจำนวนความหนาแน่นของประชากรปี 2010 สำหรับ duque de caxias",
    "context": "CREATE TABLE table_14986292_1 (population_density_2010___km²_ VARCHAR, administrative_division VARCHAR)"
  },
  {
    "answer": "SELECT administrative_division FROM table_14986292_1 WHERE population__2010_census_ = 95391",
    "question_en": "Name the administrative division for 95391",
    "question_th": "ตั้งชื่อฝ่ายธุรการสำหรับ 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_en": "How many losses did 12 de Octubre have ? ",
    "question_th": " 12 de Octubre ขาดทุนไปกี่ครั้ง?",
    "context": "CREATE TABLE table_14997324_5 (losses INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT santee_sisseton FROM table_1499791_2 WHERE english_gloss = \"morning\"",
    "question_en": "Name the santee sisseton for morning",
    "question_th": "ตั้งชื่อซานตี ซิสเซตันในตอนเช้า",
    "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_en": "Name the southern lakota for morning",
    "question_th": "ตั้งชื่อลาโกต้าใต้เป็นตอนเช้า",
    "context": "CREATE TABLE table_1499791_2 (southern_lakota VARCHAR, english_gloss VARCHAR)"
  },
  {
    "answer": "SELECT southern_lakota FROM table_1499791_2 WHERE yankton_yanktonai = \"wakȟáŋyeža\"",
    "question_en": "Name the southern lakota for wakȟáŋyeža",
    "question_th": "ตั้งชื่อลาโกตาทางตอนใต้ว่า วักโชอานิเยชา",
    "context": "CREATE TABLE table_1499791_2 (southern_lakota VARCHAR, yankton_yanktonai VARCHAR)"
  },
  {
    "answer": "SELECT english_gloss FROM table_1499791_2 WHERE southern_lakota = \"naháŋȟčiŋ\"",
    "question_en": "Name the english gloss for naháŋȟčiŋ",
    "question_th": "ตั้งชื่อกลอสภาษาอังกฤษของ naháŋŋŋčiŋ",
    "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íŋhaŋna\"",
    "question_en": "Name the santee sisseton for híŋhaŋna",
    "question_th": "ตั้งชื่อสันตี ซิสเซตอนเป็นชื่อฮิญาฮานา",
    "context": "CREATE TABLE table_1499791_2 (santee_sisseton VARCHAR, yankton_yanktonai VARCHAR)"
  },
  {
    "answer": "SELECT yankton_yanktonai FROM table_1499791_2 WHERE southern_lakota = \"wičháša\"",
    "question_en": "Name the yankton yanktonai for wičháša",
    "question_th": "ตั้งชื่อ yankton yanktonai สำหรับ wičháša",
    "context": "CREATE TABLE table_1499791_2 (yankton_yanktonai VARCHAR, southern_lakota VARCHAR)"
  },
  {
    "answer": "SELECT MAX(round) FROM table_14999879_2",
    "question_en": "What was the last round the team drafted?",
    "question_th": "ทีมดราฟท์รอบล่าสุดคือรอบไหนคะ?",
    "context": "CREATE TABLE table_14999879_2 (round INTEGER)"
  },
  {
    "answer": "SELECT college FROM table_14999879_2 WHERE player = \"Steve Justice\"",
    "question_en": "What college did steve justice attend?",
    "question_th": "Steve Justice เข้าเรียนที่วิทยาลัยใด",
    "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_en": "How may women doubles winner were there when Philippe Aulner was mens singles winner?",
    "question_th": "ผู้ชนะประเภทคู่หญิงจะอยู่ที่นั่นได้อย่างไรเมื่อ Philippe Aulner เป็นผู้ชนะประเภทชายเดี่ยว?",
    "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_en": "How many mixed doubles were won in 1996?",
    "question_th": "ในปี 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öhlich Lore Voit\"",
    "question_en": "who is the the womens doubles with mens doubles being reinhold pum karl buchart and mixed doubles being hermann fröhlich lore voit",
    "question_th": "ใครคือประเภทหญิงคู่ โดยชายคู่คือผู้ครองตำแหน่งพัม คาร์ล บูชาร์ท และคู่ผสมคือตำนานของแฮร์มันน์ โฟลิช",
    "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_en": "who is the the womens doubles with mens doubles being leopold bauer alfred kohlhauser",
    "question_th": "ประเภทหญิงคู่ และชายคู่ ได้แก่ ลีโอโปลด์ บาวเออร์ อัลเฟรด โคห์ลเฮาเซอร์",
    "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_en": "who is the the mixed doubles with mens singles being peter moritz",
    "question_th": "ประเภทคู่ผสม ชายเดี่ยวคือ ปีเตอร์ มอริตซ์",
    "context": "CREATE TABLE table_15002265_1 (mixed_doubles VARCHAR, mens_singles VARCHAR)"
  },
  {
    "answer": "SELECT mens_doubles FROM table_15002265_1 WHERE mens_singles = \"Jürgen Koch\" AND womens_singles = \"Sabine Ploner\"",
    "question_en": "who is the the mens doubles with mens singles being jürgen koch and womens singles being sabine ploner",
    "question_th": "ชายคู่คือใคร โดยชายเดี่ยวคือเจอร์เกน คอช และชายเดี่ยวคือซาบีน โพลเนอร์",
    "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_en": "who is the the womens singles with mixed doubles being bernd frohnwieser hilde themel and year being smaller than 1959.0",
    "question_th": "ซึ่งเป็นประเภทหญิงเดี่ยวและคู่ผสมตามธีมของ bernd frohnwieser hilde และปีน้อยกว่าปี 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_en": "How many mixed doubles were there in the year that Olga Koseli won the women's singles?",
    "question_th": "ในปีที่ Olga Koseli ชนะประเภทหญิงเดี่ยวมีคู่ผสมกี่คู่?",
    "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_en": "What is the # for the episode with viewing figures of 7.02 million ?",
    "question_th": "#ตอนที่มียอดรับชม 7.02 ล้าน คืออะไร ?",
    "context": "CREATE TABLE table_15026994_5 (_number INTEGER, viewing_figure VARCHAR)"
  },
  {
    "answer": "SELECT MIN(rank) FROM table_150340_3 WHERE country = \"Puerto Rico\"",
    "question_en": "What is the lowest rank for puerto rico?",
    "question_th": "อันดับต่ำสุดของเปอร์โตริโกคืออะไร?",
    "context": "CREATE TABLE table_150340_3 (rank INTEGER, country VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(director) FROM table_15026994_2 WHERE writer = \"Gaby Chiappe\"",
    "question_en": "How many different directors are associated with the writer Gaby Chiappe?",
    "question_th": "มีผู้กำกับกี่คนที่เกี่ยวข้องกับนักเขียน 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_en": "What writers are associated with a viewing figure of 7.01 million?",
    "question_th": "นักเขียนคนไหนที่เกี่ยวข้องกับตัวเลขการดู 7.01 ล้านคน?",
    "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_en": "What are all episodes with a viewing figure of 6.72 million?",
    "question_th": "มียอดดูทั้งหมด 6.72 ล้านตอน คือตอนไหนคะ?",
    "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_en": "What original air dates are associated with a viewing figure of 7.27 million?",
    "question_th": "วันออกอากาศดั้งเดิมใดที่เกี่ยวข้องกับยอดดู 7.27 ล้าน?",
    "context": "CREATE TABLE table_15026994_2 (original_air_date VARCHAR, viewing_figure VARCHAR)"
  },
  {
    "answer": "SELECT director FROM table_15026994_3 WHERE _number = 13",
    "question_en": "Who is the director of the episode at entry number 13? ",
    "question_th": " ใครเป็นผู้กำกับตอนที่รายการหมายเลข 13?",
    "context": "CREATE TABLE table_15026994_3 (director VARCHAR, _number VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(writer) FROM table_15026994_3 WHERE director = \"David Tucker\"",
    "question_en": "Who wrote the episode that David Tucker directed?",
    "question_th": "ใครเป็นคนเขียนตอนที่ David Tucker กำกับ?",
    "context": "CREATE TABLE table_15026994_3 (writer VARCHAR, director VARCHAR)"
  },
  {
    "answer": "SELECT episode FROM table_15026994_3 WHERE viewing_figure = \"6.34 million\"",
    "question_en": "Which episode has been viewed 6.34 million times? ",
    "question_th": " มีผู้ชมตอนไหน 6.34 ล้านครั้ง?",
    "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_en": "What is the original air date of the episode directed by Paul Marcus?",
    "question_th": "วันที่ออกอากาศดั้งเดิมของตอนที่กำกับโดย 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_en": "How many licenses have version 1.2.2.0?",
    "question_th": "เวอร์ชัน 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_en": "What is the version with sbagen software?",
    "question_th": "เวอร์ชันที่มีซอฟต์แวร์ sbagen คืออะไร?",
    "context": "CREATE TABLE table_15038373_1 (version VARCHAR, software VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(license) FROM table_15038373_1 WHERE software = \"Mind WorkStation\"",
    "question_en": "How many licenses have mind workstation software?",
    "question_th": "ซอฟต์แวร์ Mind Workstation มีใบอนุญาตจำนวนเท่าใด",
    "context": "CREATE TABLE table_15038373_1 (license VARCHAR, software VARCHAR)"
  },
  {
    "answer": "SELECT software FROM table_15038373_1 WHERE version = \"1.2.2.0\"",
    "question_en": "What is the software with version 1.2.2.0?",
    "question_th": "ซอฟต์แวร์เวอร์ชัน 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_en": "What is hte license for beeone smod/hms software?",
    "question_th": "ใบอนุญาต hte สำหรับซอฟต์แวร์ beeone smod/hms คืออะไร",
    "context": "CREATE TABLE table_15038373_1 (license VARCHAR, software VARCHAR)"
  },
  {
    "answer": "SELECT operating_systems FROM table_15038373_1 WHERE software = \"SBaGen\"",
    "question_en": "What are all the operating systems for sbagen?",
    "question_th": "ระบบปฏิบัติการทั้งหมดสำหรับ sbagen คืออะไร?",
    "context": "CREATE TABLE table_15038373_1 (operating_systems VARCHAR, software VARCHAR)"
  },
  {
    "answer": "SELECT english FROM table_15040_8 WHERE french = \"cheval\"",
    "question_en": "What is the English word for the French word cheval?",
    "question_th": "คำว่า cheval ในภาษาฝรั่งเศสมีอะไรบ้าง?",
    "context": "CREATE TABLE table_15040_8 (english VARCHAR, french VARCHAR)"
  },
  {
    "answer": "SELECT spanish FROM table_15040_8 WHERE french = \"filtrer\"",
    "question_en": "What is the Spanish word for the French word filtrer?",
    "question_th": "คำภาษาสเปนสำหรับตัวกรองคำภาษาฝรั่งเศสคืออะไร?",
    "context": "CREATE TABLE table_15040_8 (spanish VARCHAR, french VARCHAR)"
  },
  {
    "answer": "SELECT french FROM table_15040_8 WHERE german = \"filtern\"",
    "question_en": "What is the French word where the German word is filtern?",
    "question_th": "คำภาษาฝรั่งเศสที่กรองคำภาษาเยอรมันคืออะไร?",
    "context": "CREATE TABLE table_15040_8 (french VARCHAR, german VARCHAR)"
  },
  {
    "answer": "SELECT french FROM table_15040_8 WHERE russian = \"filtrovat (фильтровать)\"",
    "question_en": "What is the french word for the Russian word filtrovat (фильтровать)?",
    "question_th": "คำภาษาฝรั่งเศสสำหรับคำภาษารัสเซีย filtrovat (фильтровать) คืออะไร?",
    "context": "CREATE TABLE table_15040_8 (french VARCHAR, russian VARCHAR)"
  },
  {
    "answer": "SELECT french FROM table_15040_8 WHERE italian = \"nazione\"",
    "question_en": "What is the French word for the Italian word nazione?",
    "question_th": "คำภาษาฝรั่งเศสสำหรับคำภาษาอิตาลี nazione คืออะไร?",
    "context": "CREATE TABLE table_15040_8 (french VARCHAR, italian VARCHAR)"
  },
  {
    "answer": "SELECT english FROM table_15040_8 WHERE russian = \"loshad, kobyla (лошадь, кобыла)\"",
    "question_en": "What is the English word for the Russian words loshad, kobyla (лошадь, кобыла)?",
    "question_th": "คำภาษาอังกฤษสำหรับคำภาษารัสเซีย loshad, kobyla (лошадь, кобыла) คืออะไร?",
    "context": "CREATE TABLE table_15040_8 (english VARCHAR, russian VARCHAR)"
  },
  {
    "answer": "SELECT states FROM table_15055594_6 WHERE fall_06 = 3821",
    "question_en": "Which state had 3821 students in the fall of 06?",
    "question_th": "รัฐใดมีนักเรียน 3821 คนในฤดูใบไม้ร่วงปี 06",
    "context": "CREATE TABLE table_15055594_6 (states VARCHAR, fall_06 VARCHAR)"
  },
  {
    "answer": "SELECT fall_05 FROM table_15055594_6 WHERE states = \"Maryland\"",
    "question_en": "How man students were from Maryland in Fall 05?",
    "question_th": "นักเรียนชายมาจากรัฐแมริแลนด์ในฤดูใบไม้ร่วงปี 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_en": "What is the number of students in Fall 09 from the state that had 3940 in Fall 07?",
    "question_th": "จำนวนนักเรียนในฤดูใบไม้ร่วง 09 จากรัฐที่มี 3940 ในฤดูใบไม้ร่วง 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_en": "What was the highest number of students in Fall 09 in the state that had 3821 in Fall 06?",
    "question_th": "จำนวนนักเรียนสูงสุดในฤดูใบไม้ร่วง 09 ในรัฐที่มี 3821 ในฤดูใบไม้ร่วง 06 คือเท่าใด",
    "context": "CREATE TABLE table_15055594_6 (fall_09 INTEGER, fall_06 VARCHAR)"
  },
  {
    "answer": "SELECT MIN(fall_06) FROM table_15055594_6",
    "question_en": "What is the lowest number of students from a state during the Fall 06 semester?",
    "question_th": "จำนวนนักเรียนจากรัฐหนึ่งๆ ต่ำสุดในช่วงภาคเรียนฤดูใบไม้ร่วง 06 คือเท่าใด",
    "context": "CREATE TABLE table_15055594_6 (fall_06 INTEGER)"
  },
  {
    "answer": "SELECT 1321 AS _percentage FROM table_15051_4 WHERE north_carolina = \"Colorado\"",
    "question_en": "Name the 132.1% for where north carolina is colorado",
    "question_th": "ตั้งชื่อ 132.1% สำหรับรัฐนอร์ทแคโรไลนาคือโคโลราโด",
    "context": "CREATE TABLE table_15051_4 (north_carolina VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(shot_pct) FROM table_1505809_2 WHERE blank_ends = 8",
    "question_en": "What is the total of all Shot PCT occurrences when the value of Blank Ends is 8?",
    "question_th": "จำนวน Shot PCT ทั้งหมดที่เกิดขึ้นเมื่อค่าของ Blank Ends คือ 8 เป็นเท่าใด",
    "context": "CREATE TABLE table_1505809_2 (shot_pct VARCHAR, blank_ends VARCHAR)"
  },
  {
    "answer": "SELECT locale FROM table_1505809_2 WHERE l = 2",
    "question_en": "Where is the Locale when L is 2.",
    "question_th": "Locale อยู่ที่ไหนเมื่อ L คือ 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_en": "What is the lowest value of Blank Ends when Stolen Ends is 7. ",
    "question_th": " ค่าต่ำสุดของ Blank Ends เมื่อ Stolen Ends คือ 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_en": "What is the value of Ends Lost when Blank Ends is 9.",
    "question_th": "ค่าของ Ends Lost เมื่อ Blank Ends คือ 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_en": "How many combination classifications have the winner as Erik Zabel and a points classification as Alessandro Petacchi",
    "question_th": "มีกี่ประเภทรวมกันที่มีผู้ชนะคือ Erik Zabel และการจัดประเภทคะแนนเป็น 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_en": "If winner is alejandro Valverde and the points Classification is by Erik Zabel, who is the mountain classification?",
    "question_th": "หากผู้ชนะคือ alejandro Valverde และการจัดประเภทคะแนนเป็นของ Erik Zabel ใครคือประเภทภูเขา?",
    "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_en": "How many teams have a combination classification of Alejandro Valverde and a Points classification of Alessandro Petacchi?",
    "question_th": "มีกี่ทีมที่มีการแบ่งประเภทแบบผสมของ Alejandro Valverde และการแบ่งประเภทคะแนนของ 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_en": "How many times were the winnings $3,816,362?",
    "question_th": "เงินรางวัล $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_en": "How many wins were there when the position was 26th?",
    "question_th": "ตอนที่อันดับที่ 26 มีชัยชนะกี่ครั้ง?",
    "context": "CREATE TABLE table_1507423_4 (wins VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT avg_finish FROM table_1507423_4 WHERE avg_start = \"18.4\"",
    "question_en": "What was the average finish when the average start was 18.4?",
    "question_th": "การจบสกอร์โดยเฉลี่ยเมื่อเริ่มต้นเฉลี่ยคือ 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_en": "How many teams had a 76th position finish?",
    "question_th": "มีกี่ทีมที่จบอันดับที่ 76?",
    "context": "CREATE TABLE table_1507423_4 (team_s_ VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT MIN(wins) FROM table_1507423_4",
    "question_en": "What is the maximumum number of wins?",
    "question_th": "จำนวนชัยชนะสูงสุดคือเท่าไร?",
    "context": "CREATE TABLE table_1507423_4 (wins INTEGER)"
  },
  {
    "answer": "SELECT team_s_ FROM table_1507423_4 WHERE year = 2007",
    "question_en": "What teams won in 2007?",
    "question_th": "ทีมใดชนะในปี 2550?",
    "context": "CREATE TABLE table_1507423_4 (team_s_ VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(top_10) FROM table_1507423_5 WHERE position = \"78th\"",
    "question_en": "How many entries arr there for the top 10 for the 78th position?",
    "question_th": "มีกี่รายการสำหรับ 10 อันดับแรกสำหรับตำแหน่งที่ 78",
    "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_en": "Where does team #55/#83 robby gordon motorsports rank in the top 10?",
    "question_th": "ทีม #55/#83 Robby Gordon Motorsports อยู่อันดับไหนใน 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_en": "How many entries are shown for winnings for team #07 robby gordon motorsports?",
    "question_th": "มีการแสดงกี่รายการสำหรับการชนะสำหรับทีม #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_en": "What are all values for 'to par' for the winning score of 67-67-69-69=272?",
    "question_th": "ค่าทั้งหมดสำหรับ 'to par' สำหรับคะแนนชนะที่ 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_en": "The tournament Buick Classic occured on what dates?",
    "question_th": "การแข่งขัน Buick Classic จัดขึ้นในวันที่เท่าไร?",
    "context": "CREATE TABLE table_1507431_1 (date VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT runner_up FROM table_1507431_1 WHERE no = 2",
    "question_en": "Who are all runner-ups for No. 2?",
    "question_th": "ใครคือรองชนะเลิศอันดับ 2 ทั้งหมด?",
    "context": "CREATE TABLE table_1507431_1 (runner_up VARCHAR, no VARCHAR)"
  },
  {
    "answer": "SELECT date_completed FROM table_15070195_1 WHERE nickname = \"Halley\"",
    "question_en": "when the nickname halley is used, what are the date completed",
    "question_th": "เมื่อใช้ชื่อเล่น ฮัลเลย์ แล้วเสร็จเมื่อใด",
    "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_en": "the date complted is 02/91, what framed size was used",
    "question_th": "วันที่เสร็จสิ้นคือ 02/91 ใช้กรอบขนาดใด",
    "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_en": "for the robot black nickname, what framed size is used",
    "question_th": "สำหรับฉายาหุ่นยนต์ดำ ใช้กรอบขนาดใด",
    "context": "CREATE TABLE table_15070195_1 (framed_size VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT attribute FROM table_1507852_1 WHERE type = \"DOMNodeRemoved\"",
    "question_en": "What are the attributes when the type is \"DOMNodeRemoved\"?",
    "question_th": "คุณลักษณะเมื่อประเภทเป็น \"DOMNodeRemoved\" คืออะไร",
    "context": "CREATE TABLE table_1507852_1 (attribute VARCHAR, type VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(category) FROM table_1507852_1 WHERE attribute = \"onreset\"",
    "question_en": "How many categories are there when the attribute is \"onreset\"?",
    "question_th": "เมื่อแอตทริบิวต์เป็น \"onreset\" มีกี่หมวดหมู่",
    "context": "CREATE TABLE table_1507852_1 (category VARCHAR, attribute VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(description) FROM table_1507852_1 WHERE attribute = \"ondragstart\"",
    "question_en": "How many descriptions are there when the attribute is \"ondragstart\"?",
    "question_th": "มีคำอธิบายกี่รายการเมื่อแอตทริบิวต์เป็น \"ondragstart\"",
    "context": "CREATE TABLE table_1507852_1 (description VARCHAR, attribute VARCHAR)"
  },
  {
    "answer": "SELECT description FROM table_1507852_1 WHERE type = \"reset\"",
    "question_en": "When the type is \"reset\" what is the description?",
    "question_th": "เมื่อประเภทเป็น \"รีเซ็ต\" คำอธิบายคืออะไร?",
    "context": "CREATE TABLE table_1507852_1 (description VARCHAR, type VARCHAR)"
  },
  {
    "answer": "SELECT team_classification FROM table_15088557_1 WHERE combination_classification = \"Mederic Clain\"",
    "question_en": "Name all the team clasification where the combination classification is mederic clain",
    "question_th": "ตั้งชื่อการแบ่งประเภททีมทั้งหมดที่การจัดประเภทแบบรวมกันคือ 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_en": "In how many stages did Jose Vicente Garcia Acosta won?",
    "question_th": "โฆเซ่ วิเซนเต้ การ์เซีย อคอสต้า ชนะได้กี่สเตจ?",
    "context": "CREATE TABLE table_15088557_1 (stage VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT MIN(stage) FROM table_15088557_1 WHERE winner = \"Sergei Smetanine\"",
    "question_en": "What is the minimum stage where Sergei Smetanine won?",
    "question_th": "สเตจขั้นต่ำที่ Sergei Smetanine ชนะคือเท่าไร?",
    "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ález\"",
    "question_en": "what is the minimum stage where mountains classification is aitor osa and aitor gonzález won?",
    "question_th": "ขั้นตอนขั้นต่ำที่การจำแนกประเภทภูเขาคือ aitor osa และ aitor gonzález ชนะคืออะไร?",
    "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_en": "How many seasons in the top division for the team that finished 005 5th in 2012-2013",
    "question_th": "กี่ฤดูกาลในดิวิชั่นสูงสุดของทีมที่จบ 005 อันดับที่ 5 ในปี 2555-2556",
    "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_en": "How many countries does honoree Roberto de Vicenzo represent?",
    "question_th": "Roberto de Vicenzo ผู้ได้รับเกียรติเป็นตัวแทนจากกี่ประเทศ?",
    "context": "CREATE TABLE table_1515346_2 (country VARCHAR, honoree_s_ VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_1515346_2 WHERE player = \"Keith Fergus\"",
    "question_en": "For which country does Keith Fergus play?",
    "question_th": "Keith Fergus เล่นให้กับประเทศใด?",
    "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_en": "Who won the tournament for Australia in the year when Byron Nelson was Honoree?",
    "question_th": "ใครเป็นผู้ชนะการแข่งขันให้กับออสเตรเลียในปีที่ Byron Nelson ได้รับรางวัล?",
    "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_en": "What was the margin of victory in the year when the honoree was Tommy Armour?",
    "question_th": "อะไรคือส่วนต่างของชัยชนะในปีที่ผู้ได้รับรางวัลคือ 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_en": "What year was the most recent US Open championship?",
    "question_th": "การแข่งขันชิงแชมป์ US Open ครั้งล่าสุดคือปีใด",
    "context": "CREATE TABLE table_1514559_1 (year INTEGER, championship VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(nominee) FROM table_15162479_8 WHERE net_vote = \"15.17%\"",
    "question_en": "How many nominees had a net voice of 15.17%",
    "question_th": "ผู้ที่ได้รับการเสนอชื่อมีเสียงสุทธิ 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_en": "What nominees had a net vote of 34.46%?",
    "question_th": "ผู้ที่ได้รับการเสนอชื่อคนใดมีคะแนนโหวตสุทธิ 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_en": "How many nominee's had a vote to evict percentage of 3.92%",
    "question_th": "มีผู้ได้รับการเสนอชื่อกี่คนมีคะแนนเสียงให้ถอดถอนร้อยละ 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_en": "How many eviction results occurred with a eviction no. 12 and a vote to save of 2.76%?",
    "question_th": "ผลการขับไล่เกิดขึ้นกี่ครั้ง 12 และโหวตประหยัด 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_en": "What was the final result when the viewers selected ejay?",
    "question_th": "ผลลัพธ์สุดท้ายคืออะไรเมื่อผู้ชมเลือกอีเจย์?",
    "context": "CREATE TABLE table_15162503_1 (result VARCHAR, viewers_selection VARCHAR)"
  },
  {
    "answer": "SELECT description FROM table_15162503_1 WHERE viewers_selection = \"Nan\"",
    "question_en": "What was the description when the viewers selected Nan?",
    "question_th": "คำอธิบายเมื่อผู้ชมเลือกแนนคืออะไร?",
    "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_en": "What is the name of series episode 11-02's segment c?",
    "question_th": "ซีรีย์ตอนที่ 11-02 ตอน 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_en": "What is the title of series episode 11-05's segment d?",
    "question_th": "ซีรีส์ตอนที่ 11-05 ช่วง 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_en": "In seris episode 11-04, what is the B segment titled?",
    "question_th": "ในซีรีส์ตอนที่ 11-04 ภาค B มีชื่อว่าอะไร?",
    "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_en": "In the episode where segment a is microphones, what is segment d?",
    "question_th": "ในตอนที่เซกเมนต์ a คือไมโครโฟน แล้วเซกเมนต์ 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_en": "What is Segment B for series episode 12-08?",
    "question_th": "Segment B สำหรับซีรีส์ตอนที่ 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_en": "What is the series episode where Segment B is popcorn ?",
    "question_th": "ซีรีส์ตอนไหนที่ Segment B เป็นป๊อปคอร์น ?",
    "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_en": "What is the Netflix where Segment C is car washes?",
    "question_th": "Netflix ที่ Segment C ล้างรถคืออะไร",
    "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_en": "What is Segment B for series episode 12-02?",
    "question_th": "Segment B สำหรับซีรีส์ตอนที่ 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_en": "What is Segment A where Segment B is Kevlar S Canoe?",
    "question_th": "Segment A คืออะไร โดย Segment B คือ 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_en": "What is the Netflix where Segment D is pressure gauges ?",
    "question_th": "Netflix คืออะไรที่ Segment D เป็นเกจวัดแรงดัน ?",
    "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_en": "Name the segment d for bowling balls",
    "question_th": "ตั้งชื่อส่วน d สำหรับลูกโบว์ลิ่ง",
    "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_en": "Name the segment b for pressure cookers",
    "question_th": "ตั้งชื่อส่วน b สำหรับหม้ออัดแรงดัน",
    "context": "CREATE TABLE table_15187735_13 (segment_b VARCHAR, segment_a VARCHAR)"
  },
  {
    "answer": "SELECT segment_b FROM table_15187735_13 WHERE episode = 167",
    "question_en": "Name the segment b for 167",
    "question_th": "ตั้งชื่อส่วน b สำหรับ 167",
    "context": "CREATE TABLE table_15187735_13 (segment_b VARCHAR, episode VARCHAR)"
  },
  {
    "answer": "SELECT segment_a FROM table_15187735_13 WHERE episode = 162",
    "question_en": "Name the segment a for 162",
    "question_th": "ตั้งชื่อกลุ่ม a สำหรับ 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_en": "Name the total number of segment c for pressure cookers",
    "question_th": "ตั้งชื่อจำนวนรวมของส่วน c สำหรับหม้ออัดแรงดัน",
    "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_en": "What was segment C when segment D was fluorescent tubes? ",
    "question_th": " ส่วน C คืออะไรเมื่อส่วน D เป็นหลอดฟลูออเรสเซนต์",
    "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_en": "What was segment C when segment B was package printing? ",
    "question_th": " เซ็กเมนต์ C คืออะไรเมื่อเซ็กเมนต์ B เป็นการพิมพ์บรรจุภัณฑ์",
    "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_en": "What was segment A when segment B was snowboards? ",
    "question_th": " ส่วน A คืออะไรเมื่อส่วน B เป็นสโนว์บอร์ด",
    "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_en": "What was segment D when segment B was jeans? ",
    "question_th": " Segment D คืออะไรเมื่อ Segment B เป็นกางเกงยีนส์?",
    "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_en": "In what episode was segment D ned Can Corn? ",
    "question_th": " ละครเรื่อง 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_en": "Name the segment c for crash test dummies",
    "question_th": "ตั้งชื่อส่วน c สำหรับหุ่นทดสอบการชน",
    "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_en": "Name the segment b for s dress form",
    "question_th": "ตั้งชื่อส่วน b สำหรับรูปแบบการแต่งกาย",
    "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_en": "Name the segment a for s duvet",
    "question_th": "ตั้งชื่อส่วน a สำหรับผ้านวม",
    "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_en": "Name the total number of episodes for s fire extinguisher",
    "question_th": "ตั้งชื่อจำนวนตอนทั้งหมดของถังดับเพลิง",
    "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_en": "Name the total number of segment b for s banjo",
    "question_th": "ตั้งชื่อจำนวนรวมของเซ็กเมนต์ b สำหรับ s แบนโจ",
    "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_en": "Name the total number of segment d for wooden s barrel",
    "question_th": "ตั้งชื่อจำนวนรวมของส่วน d สำหรับถังไม้",
    "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_en": "How many segment A were in series episode 14-05",
    "question_th": "มีกี่เซ็กเมนต์ A ในซีรีส์ตอนที่ 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_en": "What is segment C in s07e05",
    "question_th": "ส่วน C ใน 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_en": "What is the netflix episode number where Segment D is high-performance engines?",
    "question_th": "หมายเลขตอนของ netflix ที่ Segment D เป็นเอ็นจิ้นประสิทธิภาพสูงคือหมายเลขอะไร",
    "context": "CREATE TABLE table_15187735_15 (netflix VARCHAR, segment_d VARCHAR)"
  },
  {
    "answer": "SELECT segment_d FROM table_15187735_15 WHERE episode = 183",
    "question_en": "What was segment D for episode 183?",
    "question_th": "ตอนที่ 183 ตอนที่ 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_en": "What is Segment A where Segment C is Sushi (part 1)? ",
    "question_th": " Segment A คืออะไร โดยที่ Segment C คือ Sushi (ตอนที่ 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_en": "How many episodes have the Netflix episode number S08E04?",
    "question_th": "Netflix หมายเลขตอน 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_en": "What is Segment A where Segment D is luxury sports cars?",
    "question_th": "Segment A คืออะไร โดยที่ Segment D เป็นรถสปอร์ตหรู?",
    "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_en": "What episode number is the episode with a segment on thinning shears?",
    "question_th": "ตอนไหนคือตอนที่มีตอนใช้กรรไกรผอมบางครับ?",
    "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_en": "Which episode has segment D on custom motorcycle tanks?",
    "question_th": "ตอนใดที่มีส่วน D บนรถถังมอเตอร์ไซค์แต่ง?",
    "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_en": "How many segment C are there in the episode where segment D is bicycle tires?",
    "question_th": "ตอนที่ C มียางรถจักรยานกี่เส้น?",
    "context": "CREATE TABLE table_15187735_20 (segment_c VARCHAR, segment_d VARCHAR)"
  },
  {
    "answer": "SELECT MIN(episode) FROM table_15187735_20",
    "question_en": "What is the first episode number?",
    "question_th": "หมายเลขตอนแรกคืออะไร?",
    "context": "CREATE TABLE table_15187735_20 (episode INTEGER)"
  },
  {
    "answer": "SELECT COUNT(segment_b) FROM table_15187735_16 WHERE segment_a = \"Filigree Glass\"",
    "question_en": "How many segment b's when segment a is filigree glass",
    "question_th": "มีกี่เซกเมนต์ b เมื่อเซกเมนต์ a เป็นกระจกลวดลาย",
    "context": "CREATE TABLE table_15187735_16 (segment_b VARCHAR, segment_a VARCHAR)"
  },
  {
    "answer": "SELECT segment_a FROM table_15187735_16 WHERE netflix = \"S08E21\"",
    "question_en": "Whats the name of segment in s08e21",
    "question_th": "เซ็กเมนต์ใน 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_en": "Whats the season/episode of segment a digital dentistry",
    "question_th": "ฤดูกาล/ตอนของเซ็กเมนต์ทันตกรรมดิจิทัลคืออะไร",
    "context": "CREATE TABLE table_15187735_16 (netflix VARCHAR, segment_a VARCHAR)"
  },
  {
    "answer": "SELECT segment_d FROM table_15187735_16 WHERE segment_a = \"Tequila\"",
    "question_en": "Whats the name of segment D in the episode where segment A is tequila",
    "question_th": "ชื่อของกลุ่ม D ในตอนที่กลุ่ม A คือเตกีล่า",
    "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_en": "Name the number of episods for segment c being s oyster",
    "question_th": "ตั้งชื่อจำนวนตอนของเซ็กเมนต์ c ว่าหอยนางรม",
    "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_en": "Name the least episode for fibre cement siding",
    "question_th": "ตั้งชื่อตอนที่น้อยที่สุดสำหรับผนังไฟเบอร์ซีเมนต์",
    "context": "CREATE TABLE table_15187735_18 (episode INTEGER, segment_d VARCHAR)"
  },
  {
    "answer": "SELECT segment_b FROM table_15187735_18 WHERE episode = 226",
    "question_en": "Name the segment b for 226 episode",
    "question_th": "ตั้งชื่อส่วน b สำหรับ 226 ตอน",
    "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_en": "Name the number of sement d for solar water heaters ",
    "question_th": " ตั้งชื่อหมายเลขส่วน d สำหรับเครื่องทำน้ำอุ่นพลังงานแสงอาทิตย์",
    "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_en": "Name the segment d for s cufflink",
    "question_th": "ตั้งชื่อส่วน d สำหรับกระดุมข้อมือ",
    "context": "CREATE TABLE table_15187735_18 (segment_d VARCHAR, segment_a VARCHAR)"
  },
  {
    "answer": "SELECT segment_b FROM table_15187735_19 WHERE episode = 242",
    "question_en": "What is the segment B of episode 242?",
    "question_th": "ตอนที่ 242 ตอนที่ 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_en": "What is the segment C of the episode where segment B is Film Digitization?",
    "question_th": "ส่วน C ของตอนที่ส่วน B คือ 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_en": "What is the segment A on episode 237?",
    "question_th": "ส่วน A ในตอนที่ 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_en": "What is the last episode which has segment d as blown glass?",
    "question_th": "ตอนสุดท้ายที่มีเซกเมนต์ d เป็นแก้วเป่าคือตอนไหนคะ?",
    "context": "CREATE TABLE table_15187735_4 (episode INTEGER, segment_d VARCHAR)"
  },
  {
    "answer": "SELECT MIN(episode) FROM table_15187735_4 WHERE netflix = \"S02E20\"",
    "question_en": "What is the first episode with a netflix episode code of s02e20?",
    "question_th": "ตอนแรกที่มีรหัสตอนของ netflix s02e20 คืออะไร?",
    "context": "CREATE TABLE table_15187735_4 (episode INTEGER, netflix VARCHAR)"
  },
  {
    "answer": "SELECT netflix FROM table_15187735_4 WHERE episode = 46",
    "question_en": "What is the netflix code for episode 46?",
    "question_th": "รหัส netflix ตอนที่ 46 คืออะไร?",
    "context": "CREATE TABLE table_15187735_4 (netflix VARCHAR, episode VARCHAR)"
  },
  {
    "answer": "SELECT netflix FROM table_15187735_4 WHERE series_ep = \"4-11\"",
    "question_en": "What is the netflix code where the series and episode are 4-11?",
    "question_th": "รหัส netflix ของซีรีย์และตอนคือ 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_en": "What is listed in segment b when segment c is artificial flowers?",
    "question_th": "สิ่งที่ระบุไว้ในส่วน b เมื่อส่วน c เป็นดอกไม้ประดิษฐ์?",
    "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_en": "What are the titles of segment c when segment d is motorcycle brake locks?",
    "question_th": "ชื่อของเซ็กเมนต์ c เมื่อเซ็กเมนต์ d คือตัวล็อคเบรกรถจักรยานยนต์คืออะไร?",
    "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_en": "What are the titles of segment c for series episode is 21-08?",
    "question_th": "ชื่อเรื่องของช่วง c สำหรับซีรีส์ตอนที่ 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_en": "What are the titles of segment b when segment c is standby generators (part 1)?",
    "question_th": "ชื่อของเซ็กเมนต์ b คืออะไรเมื่อเซ็กเมนต์ c เป็นตัวสร้างสแตนด์บาย (ตอนที่ 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_en": "What are the titles of segment a for series episode 21-12?",
    "question_th": "Segment A ของซีรีส์ตอนที่ 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_en": "Name the number of episode for phyllo dough",
    "question_th": "ตั้งชื่อจำนวนตอนของแป้งฟิลโล",
    "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_en": "Name the segment d for combination locks",
    "question_th": "ตั้งชื่อส่วน d สำหรับการล็อคแบบรวม",
    "context": "CREATE TABLE table_15187735_3 (segment_d VARCHAR, segment_a VARCHAR)"
  },
  {
    "answer": "SELECT series_ep FROM table_15187735_3 WHERE netflix = \"S02E08\"",
    "question_en": "Name the series ep for s02e08",
    "question_th": "ตั้งชื่อซีรีส์ ep สำหรับ 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_en": "Name the segment c for couscous",
    "question_th": "ตั้งชื่อส่วน c สำหรับ 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_en": "Name the segment c for pottery",
    "question_th": "ตั้งชื่อส่วน c สำหรับเครื่องปั้นดินเผา",
    "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_en": "Name the segment d for chicken",
    "question_th": "ตั้งชื่อส่วน d สำหรับไก่",
    "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_en": "What is the Segment A for when Segment C is s Sailboard?",
    "question_th": "Segment A มีไว้เพื่ออะไรเมื่อ Segment C เป็น 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_en": "What is the Segment B when the Segment D is s Hammock?",
    "question_th": "เซ็กเมนต์ B คืออะไรเมื่อเซ็กเมนต์ D คือเปลญวน",
    "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_en": "What is the Netflix Episode when the Segment B is s Highlighter?",
    "question_th": "ตอนของ Netflix คืออะไรเมื่อส่วน B เป็นไฮไลต์",
    "context": "CREATE TABLE table_15187735_6 (netflix VARCHAR, segment_b VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_15190346_2 WHERE _number = 1",
    "question_en": "What is the location of #1?",
    "question_th": "เบอร์ 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_en": "What stadium was the 1994 Gator Bowl in?",
    "question_th": "เกเตอร์โบว์ลปี 1994 อยู่ในสนามกีฬาใด",
    "context": "CREATE TABLE table_15190346_2 (stadium VARCHAR, bowl_game VARCHAR)"
  },
  {
    "answer": "SELECT stadium FROM table_15190346_2 WHERE attendance = \"75,406\"",
    "question_en": "What is the stadium where the attendance was 75,406?",
    "question_th": "สนามกีฬาแห่งใดที่มีผู้ชม 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_en": "What is the number of the bowl game when attendance was 79,280?",
    "question_th": "เกมชามหมายเลขเท่าไหร่เมื่อมีผู้เข้าร่วม 79,280?",
    "context": "CREATE TABLE table_15190346_2 (_number INTEGER, attendance VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_15190346_2 WHERE location = \"Gainesville, FL\"",
    "question_en": "What was the attendance of the bowl game in Gainesville, Fl?",
    "question_th": "การแข่งขันชามในเกนส์วิลล์ รัฐฟลอริดา มีผู้เข้าร่วมเป็นอย่างไรบ้าง",
    "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_en": "Name the total number of median income for population 2006 for 365540",
    "question_th": "ตั้งชื่อจำนวนรายได้เฉลี่ยรวมของประชากรปี 2549 เป็น 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_en": "Name the minimum derby county goals",
    "question_th": "ตั้งชื่อประตูขั้นต่ำดาร์บี้เคาน์ตี้",
    "context": "CREATE TABLE table_15201666_3 (derby_county INTEGER)"
  },
  {
    "answer": "SELECT MAX(derby_county) FROM table_15201666_3",
    "question_en": "Name the most derby county",
    "question_th": "ตั้งชื่อดาร์บี้เคาน์ตี้มากที่สุด",
    "context": "CREATE TABLE table_15201666_3 (derby_county INTEGER)"
  },
  {
    "answer": "SELECT segment_b FROM table_15187735_9 WHERE segment_c = \"British Police Helmets\"",
    "question_en": "In episode 115 what is seen being made before British police helmets?",
    "question_th": "ในตอนที่ 115 สิ่งที่เห็นเกิดขึ้นต่อหน้าหมวกตำรวจอังกฤษ?",
    "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_en": "How many times was leather introduced before pedal steel guitars in episode 111?",
    "question_th": "หนังถูกนำมาใช้ก่อนกีตาร์เหล็กเหยียบกี่ครั้งในตอนที่ 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_en": "What was the UK broadcast date for the episode which visited USA?",
    "question_th": "วันที่ออกอากาศในสหราชอาณาจักรสำหรับตอนที่ไปเยือนสหรัฐอเมริกาคือเมื่อใด",
    "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_en": "What countries are visited in the episode presented by Brian B. Thompson?",
    "question_th": "มีการเยี่ยมชมประเทศใดบ้างในตอนนี้ที่นำเสนอโดย 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_en": "What is the episode title for the episode numbered #1.4?",
    "question_th": "ตอนที่ #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_en": "Name the social democratic party for labour",
    "question_th": "ตั้งชื่อพรรคสังคมประชาธิปไตยเพื่อแรงงาน",
    "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_en": "Who wrote episode 11, of which was directed by Will Waring?",
    "question_th": "ใครเป็นคนเขียนตอนที่ 11 ซึ่งกำกับโดย 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_en": "Who wrote the episode directed by Peter Woeste?",
    "question_th": "ใครเป็นผู้เขียนบทที่กำกับโดย 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_en": "Who was the director of Pecado Mortal",
    "question_th": "ใครเป็นผู้กำกับของ 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_en": "What was the original title of the Bruno Barreto film in 1989",
    "question_th": "ชื่อดั้งเดิมของภาพยนตร์เรื่อง Bruno Barreto ในปี 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_en": "What was the result for director Fernando Meirelles",
    "question_th": "ผลลัพธ์ของผู้กำกับ 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_en": "Name the original title of the Suzana Amaral film",
    "question_th": "ตั้งชื่อชื่อดั้งเดิมของภาพยนตร์ Suzana Amaral",
    "context": "CREATE TABLE table_15277629_1 (original_title VARCHAR, director VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(province) FROM table_152834_2 WHERE county = \"Fenghuang\"",
    "question_en": "If the country is fenghuang how many provinces are there? ",
    "question_th": " ถ้าประเทศคือเฟิ่งหวงมีกี่จังหวัด?",
    "context": "CREATE TABLE table_152834_2 (province VARCHAR, county VARCHAR)"
  },
  {
    "answer": "SELECT group_a FROM table_15290638_1 WHERE group_d = \"Indiana\"",
    "question_en": "Who is in group a when indiana is in group d?",
    "question_th": "ใครอยู่ในกลุ่ม a เมื่ออินเดียน่าอยู่ในกลุ่ม 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_en": "Who is in group c when wisconsin is in group d?",
    "question_th": "ใครอยู่ในกลุ่ม c เมื่อวิสคอนซินอยู่ในกลุ่ม 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_en": "Who is in group c when iowa is in group e?",
    "question_th": "ใครอยู่กลุ่ม c ในเมื่อ iowa อยู่ในกลุ่ม 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_en": "Name the old bulgarian names for yuni",
    "question_th": "ตั้งชื่อชื่อบัลแกเรียเก่าสำหรับ 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_en": "Name the old bulgarian names for yanuari",
    "question_th": "ตั้งชื่อชื่อบัลแกเรียเก่าสำหรับยานูอารี",
    "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_en": "Name the bulgarian name for mart",
    "question_th": "ตั้งชื่อชื่อบัลแกเรียสำหรับมาร์ท",
    "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_en": "Who owned the team Jeremy Mayfield raced for?",
    "question_th": "ใครเป็นเจ้าของทีม Jeremy Mayfield ลงแข่งเพื่อ?",
    "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_en": "Who is Jason Leffler's primary sponsor?",
    "question_th": "ใครคือผู้สนับสนุนหลักของ Jason Leffler?",
    "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_en": "How many stages were there where the winner and the points classification were Alberto Contador?",
    "question_th": "มีกี่ขั้นตอนที่ 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_en": "When the winner was Alessandro Ballan, how many total team classifications were there?",
    "question_th": "เมื่อผู้ชนะคืออเลสซานโดร บัลลาน มีการแบ่งประเภททีมทั้งหมดกี่ประเภท?",
    "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_en": "When the team classification was quick step, what was the total number of general classifications?",
    "question_th": "เมื่อแบ่งประเภททีมเป็นขั้นด่วน แล้วแบ่งประเภททั่วไปทั้งหมดเป็นจำนวนเท่าใด?",
    "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_en": "Who won the spanish grand prix?",
    "question_th": "ใครชนะกรังด์ปรีซ์สเปน?",
    "context": "CREATE TABLE table_15299235_1 (grand_prix VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_15299235_1 WHERE circuit = \"Indianapolis\"",
    "question_en": "What is the date for the Indianapolis circuit?",
    "question_th": "วันที่สำหรับวงจร Indianapolis คืออะไร?",
    "context": "CREATE TABLE table_15299235_1 (date VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT 250 AS cc_winner FROM table_15299235_1 WHERE round = 9",
    "question_en": "in round 9 who was the 250cc winner?",
    "question_th": "ในรอบ 9 ใครคือผู้ชนะ 250cc?",
    "context": "CREATE TABLE table_15299235_1 (round VARCHAR)"
  },
  {
    "answer": "SELECT condition_parameter FROM table_15314901_1 WHERE velocity_angle_η_in_i_radians = \"ln[(1 + √5)/2] ≅ 0.481\"",
    "question_en": "If the velocity angle is ln[(1 + √5)/2] ≅ 0.481, what is the condition/parameter?",
    "question_th": "หากมุมความเร็วคือ ln[(1 + √5)/2] ≅ 0.481 เงื่อนไข/พารามิเตอร์จะเป็นเท่าใด",
    "context": "CREATE TABLE table_15314901_1 (condition_parameter VARCHAR, velocity_angle_η_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_en": "If the the condition/parameter is rapidity of 2 hyperbolic radians, what is the coordinate velocity v dx/dt in units of c?",
    "question_th": "ถ้าเงื่อนไข/พารามิเตอร์คือความรวดเร็วของ 2 ไฮเปอร์โบลิกเรเดียน ความเร็วพิกัด v dx/dt ในหน่วยของ c เป็นเท่าใด",
    "context": "CREATE TABLE table_15314901_1 (coordinate_velocity_v_dx_dt_in_units_of_c VARCHAR, condition_parameter VARCHAR)"
  },
  {
    "answer": "SELECT velocity_angle_η_in_i_radians FROM table_15314901_1 WHERE coordinate_velocity_v_dx_dt_in_units_of_c = \"(e 2 − 1)/(e 2 + 1) ≅ 0.761\"",
    "question_en": "If the coordinate velocity v dx/dt in units of c is (e 2 − 1)/(e 2 + 1) ≅ 0.761, what is the velocity angle η in i-radians?",
    "question_th": "ถ้าความเร็วพิกัด v dx/dt ในหน่วยของ c เท่ากับ (e 2 − 1)/(e 2 + 1) ≅ 0.761 แล้วมุมความเร็ว η ใน i-เรเดียนจะเป็นเท่าใด?",
    "context": "CREATE TABLE table_15314901_1 (velocity_angle_η_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_η_in_i_radians = \"ln[2 + √5] ≅ 1.444\"",
    "question_en": "What is the coordinate velocity v dx/dt in units of c total number if the velocity angle η in i-radians is ln[2 + √5] ≅ 1.444?",
    "question_th": "ความเร็วพิกัด v dx/dt ในหน่วยของจำนวนรวม c เป็นเท่าใด ถ้ามุมความเร็ว η ใน i-เรเดียนคือ ln[2 + √5] ≅ 1.444",
    "context": "CREATE TABLE table_15314901_1 (coordinate_velocity_v_dx_dt_in_units_of_c VARCHAR, velocity_angle_η_in_i_radians VARCHAR)"
  },
  {
    "answer": "SELECT proper_velocity_w_dx_dτ_in_units_of_c FROM table_15314901_1 WHERE condition_parameter = \"Rapidity of 1 hyperbolic radian\"",
    "question_en": "If the condition/parameter is rapidity of 1 hyperbolic radian, what is the proper velocity w dx/dτ in units of c?",
    "question_th": "ถ้าเงื่อนไข/พารามิเตอร์คือความรวดเร็วเท่ากับ 1 ไฮเปอร์โบลิกเรเดียน ความเร็วที่เหมาะสม w dx/dτ ในหน่วยของ c เป็นเท่าใด",
    "context": "CREATE TABLE table_15314901_1 (proper_velocity_w_dx_dτ_in_units_of_c VARCHAR, condition_parameter VARCHAR)"
  },
  {
    "answer": "SELECT school_year FROM table_15315103_1 WHERE class_aAAA = Dayton",
    "question_en": "What year is dayton in class AAAA?",
    "question_th": "เดย์ตันอยู่ในคลาส 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_en": "Who is in class during 1995-96?",
    "question_th": "ใครอยู่ในชั้นเรียนระหว่างปี 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_en": "When are all years that tournament location is Western Turnpike Golf Course?",
    "question_th": "สถานที่จัดแข่งขันคือ 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_en": "When are all years that the champion is Ji Min Jeong?",
    "question_th": "เมื่อไหร่ที่แชมป์คือจีมินจอง?",
    "context": "CREATE TABLE table_15315816_1 (year VARCHAR, champion VARCHAR)"
  },
  {
    "answer": "SELECT winners_share__$_ FROM table_15315816_1 WHERE year = \"2004\"",
    "question_en": "How much are all winners share ($) in the year 2004?",
    "question_th": "ผู้ชนะทั้งหมดมีส่วนแบ่ง ($) ในปี 2547 เท่าใด",
    "context": "CREATE TABLE table_15315816_1 (winners_share__$_ VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(dates) FROM table_15315816_1 WHERE year = \"2006\"",
    "question_en": "When are all dates in the year 2006?",
    "question_th": "วันที่ทั้งหมดในปี 2549 คือเมื่อใด",
    "context": "CREATE TABLE table_15315816_1 (dates VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT dates FROM table_15315816_1 WHERE score = \"205 (–8)\" AND country = \"Australia\"",
    "question_en": "When are all dates with a score of 205 (–8)  in Australia?",
    "question_th": "วันที่ทั้งหมดที่มีคะแนน 205 (–8) ในออสเตรเลียคือเมื่อใด",
    "context": "CREATE TABLE table_15315816_1 (dates VARCHAR, score VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT dates FROM table_15315816_1 WHERE country = \"Canada\"",
    "question_en": "What are all of the dates in the country of Canada?",
    "question_th": "วันที่ทั้งหมดในประเทศแคนาดาคือวันที่เท่าไร?",
    "context": "CREATE TABLE table_15315816_1 (dates VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT dates FROM table_15315276_1 WHERE champion = \"Jenny Gleason\"",
    "question_en": "When was Jenny Gleason the champion of the Northeast Delta Dental International?",
    "question_th": "Jenny Gleason เป็นแชมป์ของ 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_en": "Where was the tournament located when Misun Cho won the championship?",
    "question_th": "การแข่งขันจัดขึ้นที่ไหนเมื่อ Misun Cho คว้าแชมป์?",
    "context": "CREATE TABLE table_15315276_1 (tournament_location VARCHAR, champion VARCHAR)"
  },
  {
    "answer": "SELECT MAX(purse__) AS $_ FROM table_15315276_1",
    "question_en": "What is the maximum purse prize of the Northeast Delta Dental International Championship?",
    "question_th": "รางวัลกระเป๋าเงินสูงสุดของ 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_en": "How many prizes were available when Jenny Shin became the champion?",
    "question_th": "เมื่อเจนนี่ ชิน เป็นแชมป์ มีรางวัลทั้งหมดกี่รางวัล?",
    "context": "CREATE TABLE table_15315276_1 (purse__ VARCHAR, champion VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_15318779_1 WHERE points = 21",
    "question_en": "Which team had 21 points?",
    "question_th": "ทีมไหนมี 21 แต้ม?",
    "context": "CREATE TABLE table_15318779_1 (team VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT MAX(won) FROM table_15318779_1 WHERE team = \"Palmeiras\"",
    "question_en": "How many games did Palmeiras win?",
    "question_th": "พัลไมรัสชนะกี่เกม?",
    "context": "CREATE TABLE table_15318779_1 (won INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(lost) FROM table_15319684_1 WHERE against = 46",
    "question_en": "Name the number of lost for against being 46",
    "question_th": "ตั้งชื่อจำนวนที่หายไปเทียบกับเป็น 46",
    "context": "CREATE TABLE table_15319684_1 (lost VARCHAR, against VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(against) FROM table_15319684_1 WHERE team = \"Portuguesa Santista\"",
    "question_en": "Name the number of against for portuguesa santista",
    "question_th": "ตั้งชื่อจำนวนต่อต้านสำหรับภาษาโปรตุเกส santista",
    "context": "CREATE TABLE table_15319684_1 (against VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT won FROM table_15319684_1 WHERE difference = \"33\"",
    "question_en": "Name the won for difference being 33",
    "question_th": "ตั้งชื่อวอนสำหรับส่วนต่างเป็น 33",
    "context": "CREATE TABLE table_15319684_1 (won VARCHAR, difference VARCHAR)"
  },
  {
    "answer": "SELECT MIN(lost) FROM table_15319684_1 WHERE team = \"Corinthians\"",
    "question_en": "Name the most losst for corinthians",
    "question_th": "ตั้งชื่อผู้ที่สูญเสียมากที่สุดสำหรับโครินเธียนส์",
    "context": "CREATE TABLE table_15319684_1 (lost INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT r_z___arcsecond__ FROM table_15318324_1 WHERE r_y___arcsecond__ = \"−0.247\"",
    "question_en": "How many values of r z (arcsecond) correspond with a r y (arcsecond) value of −0.247?",
    "question_th": "มีกี่ค่าของ rz (arcsecond) ที่สอดคล้องกับค่า ary (arcsecond) ที่ −0.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_en": "How many values of r z(arcsecond) are associated with a target datum of Ireland 1965?",
    "question_th": "ค่า rz(arcsecond) ที่เกี่ยวข้องกับข้อมูลเป้าหมายของไอร์แลนด์ปี 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_en": "What is the muslim percentage of the 49634 population of england and wales 000?",
    "question_th": "เปอร์เซ็นต์มุสลิมของประชากร 49,634 คนของอังกฤษและเวลส์ 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_en": "What is the most recent census year?",
    "question_th": "ปีการสำรวจสำมะโนประชากรล่าสุดคือปีใด?",
    "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_en": "What was the percentage of muslims during a time where there were 614 registered mosques?",
    "question_th": "เปอร์เซ็นต์ของชาวมุสลิมในช่วงเวลาที่มีมัสยิดจดทะเบียน 614 แห่งเป็นเท่าใด",
    "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_en": "Name the most pa for ontario ",
    "question_th": " ตั้งชื่อ PA มากที่สุดสำหรับออนแทรีโอ",
    "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_en": "Name the ends lost for 67 pa",
    "question_th": "ตั้งชื่อปลายหาย 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_en": "Name the number ends won when L is 4 and stolen ends is 17",
    "question_th": "ตั้งชื่อหมายเลขที่ปลายชนะเมื่อ L คือ 4 และปลายที่ถูกขโมยคือ 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_en": "What day was Jeld-Wen Tradition held?",
    "question_th": "ประเพณีเจลด์เหวินจัดขึ้นวันไหน?",
    "context": "CREATE TABLE table_15346009_1 (date VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_15346009_1 WHERE winner = \"Bernhard Langer (2)\"",
    "question_en": "What day did Bernhard Langer (2) win?",
    "question_th": "Bernhard Langer (2) ชนะวันไหน?",
    "context": "CREATE TABLE table_15346009_1 (date VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_15346009_1 WHERE location = \"Alabama\"",
    "question_en": "On what day was the tournament in Alabama?",
    "question_th": "การแข่งขันที่อลาบามาจัดขึ้นวันไหน?",
    "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_en": "What was the value of 1st prize when the score was 271 (-9)?",
    "question_th": "รางวัลที่ 1 เมื่อได้คะแนน 271 (-9) มีมูลค่าเท่าไร?",
    "context": "CREATE TABLE table_15346009_1 (score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_15346009_1 WHERE score = \"200 (-16)\"",
    "question_en": "What day was the score 200 (-16)?",
    "question_th": "คะแนน 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_en": "Where was Outback Steakhouse Pro-AM held?",
    "question_th": "Outback Steakhouse Pro-AM จัดขึ้นที่ไหน?",
    "context": "CREATE TABLE table_15346009_1 (location VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT date_of_polls FROM table_15329030_1 WHERE state = \"Mizoram\"",
    "question_en": "Which dates of polls occur in the Mizoram state?",
    "question_th": "วันเลือกตั้งใดที่เกิดขึ้นในรัฐมิโซรัม",
    "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_en": "How many dates of polls occur in the Madhya Pradesh state?",
    "question_th": "มีการเลือกตั้งในรัฐมัธยประเทศกี่วัน?",
    "context": "CREATE TABLE table_15329030_1 (date_of_polls VARCHAR, state VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(against) FROM table_15352382_1 WHERE difference = 11",
    "question_en": "How many under the category of Against have a Difference of 11",
    "question_th": "มีกี่รายการในประเภท Against ที่มีผลต่าง 11",
    "context": "CREATE TABLE table_15352382_1 (against VARCHAR, difference VARCHAR)"
  },
  {
    "answer": "SELECT won FROM table_15352382_1 WHERE against = 20",
    "question_en": "if Against is 20 how much is Won?",
    "question_th": "ถ้าต่อ 20 จะชนะเท่าไหร่?",
    "context": "CREATE TABLE table_15352382_1 (won VARCHAR, against VARCHAR)"
  },
  {
    "answer": "SELECT drawn FROM table_15352382_1 WHERE team = \"Portuguesa Santista\"",
    "question_en": "How many Drawn does the team Portuguesa Santista have?",
    "question_th": "ทีมโปรตุเกส ซานติสต้า จับฉลากได้กี่ทีม?",
    "context": "CREATE TABLE table_15352382_1 (drawn VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT drawn FROM table_15352382_1 WHERE team = \"Corinthians\"",
    "question_en": "How many drawn does the team Corinthians have?",
    "question_th": "ทีมโครินเธียนส์เสมอกันกี่ทีม?",
    "context": "CREATE TABLE table_15352382_1 (drawn VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(won) FROM table_15331868_1 WHERE difference = \"1\"",
    "question_en": "What is the highest number won with a difference of 1?",
    "question_th": "หมายเลขสูงสุดที่ชนะด้วยผลต่าง 1 คืออะไร?",
    "context": "CREATE TABLE table_15331868_1 (won INTEGER, difference VARCHAR)"
  },
  {
    "answer": "SELECT MAX(position) FROM table_15331868_1 WHERE against = 28",
    "question_en": "What the highest position when there is 28 against?",
    "question_th": "ตำแหน่งสูงสุดเมื่อมี 28 ต่อ?",
    "context": "CREATE TABLE table_15331868_1 (position INTEGER, against VARCHAR)"
  },
  {
    "answer": "SELECT MAX(won) FROM table_15331868_1 WHERE points = 31",
    "question_en": "What is the highest number won when the number of points is 31?",
    "question_th": "จำนวนสูงสุดที่ได้รับเมื่อจำนวนคะแนนคือ 31 คือเท่าใด",
    "context": "CREATE TABLE table_15331868_1 (won INTEGER, points VARCHAR)"
  },
  {
    "answer": "SELECT MIN(position) FROM table_15331868_1 WHERE difference = \"6\"",
    "question_en": "What is the smalledt position when the difference was 6?",
    "question_th": "ตำแหน่ง Smalledt คืออะไรเมื่อผลต่างคือ 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_en": "How many were the show's average weekly ranking when it reached No. 2 in average nightly ranking?",
    "question_th": "อันดับเฉลี่ยรายสัปดาห์ของรายการเมื่อขึ้นถึงอันดับ 2 ในอันดับเฉลี่ยต่อคืนมีกี่รายการ",
    "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_en": "What is the show's time slot during season 3?",
    "question_th": "ช่วงเวลาของการแสดงในช่วงซีซั่น 3 คืออะไร?",
    "context": "CREATE TABLE table_15358729_6 (timeslot VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT february FROM table_1539201_1",
    "question_en": "Name all of the february",
    "question_th": "ตั้งชื่อทั้งหมดของเดือนกุมภาพันธ์",
    "context": "CREATE TABLE table_1539201_1 (february VARCHAR)"
  },
  {
    "answer": "SELECT june FROM table_1539201_1",
    "question_en": "Name the junes",
    "question_th": "ตั้งชื่อจูน",
    "context": "CREATE TABLE table_1539201_1 (june VARCHAR)"
  },
  {
    "answer": "SELECT july FROM table_1539201_1",
    "question_en": "Name the julys",
    "question_th": "ตั้งชื่อเดือนกรกฎาคม",
    "context": "CREATE TABLE table_1539201_1 (july VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(february) FROM table_1539201_1",
    "question_en": "Name the number of februaries",
    "question_th": "ตั้งชื่อจำนวนเดือนกุมภาพันธ์",
    "context": "CREATE TABLE table_1539201_1 (february VARCHAR)"
  },
  {
    "answer": "SELECT MAX(points) FROM table_15405904_1 WHERE position = 2",
    "question_en": "How many points are listed when the position is 2?",
    "question_th": "ตำแหน่งเป็น 2 มีกี่คะแนน?",
    "context": "CREATE TABLE table_15405904_1 (points INTEGER, position VARCHAR)"
  },
  {
    "answer": "SELECT MAX(drawn) FROM table_15405904_1 WHERE lost = 2",
    "question_en": "When there is a lost of 2 what is the mumber drawn?",
    "question_th": "เมื่อแพ้ 2 ตัว มัมเบอร์จั่วได้อะไร?",
    "context": "CREATE TABLE table_15405904_1 (drawn INTEGER, lost VARCHAR)"
  },
  {
    "answer": "SELECT MIN(played) FROM table_15405904_1",
    "question_en": "How many games are played?",
    "question_th": "เล่นได้กี่เกม?",
    "context": "CREATE TABLE table_15405904_1 (played INTEGER)"
  },
  {
    "answer": "SELECT MIN(lost) FROM table_15405904_1 WHERE position = 2",
    "question_en": "When the position is 2 what is the number lost?",
    "question_th": "เมื่อตำแหน่งเป็น 2 เลขอะไรหายไป?",
    "context": "CREATE TABLE table_15405904_1 (lost INTEGER, position VARCHAR)"
  },
  {
    "answer": "SELECT MIN(won) FROM table_15405904_1 WHERE team = \"Ypiranga-SP\"",
    "question_en": "When the team is ypiranga-sp what is the number of won games?",
    "question_th": "เมื่อทีม ypiranga-sp ชนะได้กี่เกม?",
    "context": "CREATE TABLE table_15405904_1 (won INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT difference FROM table_15400878_1 WHERE drawn > 2.0",
    "question_en": "Name the difference for when drawn is larger than 2.0",
    "question_th": "ตั้งชื่อความแตกต่างเมื่อวาดมีขนาดใหญ่กว่า 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_en": "Name the most against for minas gerais",
    "question_th": "ชื่อที่ต่อต้านมินาสเชไรส์มากที่สุด",
    "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_en": "What is the LMS class of trains with numbers 14510-5?",
    "question_th": "รถไฟประเภท LMS ที่มีหมายเลข 14510-5 คืออะไร",
    "context": "CREATE TABLE table_15412381_5 (LMS VARCHAR, lms_nos VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_15412381_5 WHERE wheels = 279",
    "question_en": "What is the date of the 279 wheels?",
    "question_th": "ล้อ279วันที่เท่าไหร่คับ?",
    "context": "CREATE TABLE table_15412381_5 (date VARCHAR, wheels VARCHAR)"
  },
  {
    "answer": "SELECT lms_nos FROM table_15412381_5 WHERE builder = \"G&SWR Kilmarnock\"",
    "question_en": "What is the LMS number of the trains built by G&SWR Kilmarnock?",
    "question_th": "หมายเลข LMS ของรถไฟที่สร้างโดย 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_en": "How many figures are there for wheels for LMS numbers 16377-9?",
    "question_th": "ล้อ LMS เบอร์ 16377-9 มีกี่ตัว?",
    "context": "CREATE TABLE table_15412381_5 (wheels VARCHAR, lms_nos VARCHAR)"
  },
  {
    "answer": "SELECT MAX(saffir_simpson_category) FROM table_15416002_1",
    "question_en": "What is the maximum number for the Saffir-Simpson category in the Carvill Hurricane Index?",
    "question_th": "จำนวนสูงสุดสำหรับหมวดหมู่ Saffir-Simpson ในดัชนี Carvill Hurricane คือเท่าใด",
    "context": "CREATE TABLE table_15416002_1 (saffir_simpson_category INTEGER)"
  },
  {
    "answer": "SELECT MAX(v_mph_) FROM table_15416002_1 WHERE chi = \"13.5\"",
    "question_en": "What is the maximum miles per hour recorded when the  CHI (Carvill Hurricane Index) is equal to 13.5",
    "question_th": "ไมล์สูงสุดต่อชั่วโมงที่บันทึกไว้คือเท่าไรเมื่อ CHI (Carvill Hurricane Index) เท่ากับ 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_en": "What is the CHI (Carvill Hurricane Index) when the NHC advisory number is equal to 49b?",
    "question_th": "CHI (Carvill Hurricane Index) คืออะไร เมื่อหมายเลขที่ปรึกษา NHC เท่ากับ 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_en": "What is the maximum number of miles reached in a Texas landfall when the Saffir-Simpson category is smaller than 3.0?",
    "question_th": "จำนวนไมล์สูงสุดที่ไปถึงในแผ่นดินเท็กซัสเมื่อหมวดหมู่ Saffir-Simpson น้อยกว่า 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_en": "What are the miles when the Carvill Hurricane Index (CHI) is equal to 9.9?",
    "question_th": "อะไรคือไมล์เมื่อดัชนี Carvill Hurricane (CHI) เท่ากับ 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_en": "What is the Saffir-Simpson category for the hurricane named Bonnie?",
    "question_th": "หมวดหมู่ Saffir-Simpson สำหรับพายุเฮอริเคนชื่อ 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_en": "What kind of animal corresponds to the accession number xp_852505.1?",
    "question_th": "สัตว์ชนิดใดที่ตรงกับหมายเลขภาคยานุวัติ 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_en": "How similar is the genus/species sus scrofa? ",
    "question_th": " สกุล/สปีชีส์ 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_en": "What identities do the genus/species arabidopsis thaliana have? ",
    "question_th": " สกุล/สปีชีส์ arabidopsis thaliana มีลักษณะเฉพาะอย่างไร?",
    "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_en": "What's the animals name when the genus/species is rattus norvegicus? ",
    "question_th": "สัตว์ชื่ออะไรเมื่อสกุล/สปีชีส์คือ 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_en": "For the genus/species arabidopsis thaliana, what are the lengths? ",
    "question_th": " สกุล Arabidopsis thaliana มีความยาวเท่าใด",
    "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_en": "How many original air dates were there for episode 17?",
    "question_th": "ตอนที่ 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_en": "Which company was based in London, United Kingdom?",
    "question_th": "บริษัทใดตั้งอยู่ในลอนดอน สหราชอาณาจักร",
    "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_en": "What was the original air date of Stargate SG-1 written by Peter Deluise?",
    "question_th": "วันที่ออกอากาศดั้งเดิมของ Stargate SG-1 ที่เขียนโดย 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_en": "How many seasons did Peter Deluise direct Stargate SG-1?",
    "question_th": "Peter Deluise กำกับ 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_en": "Name the fifth district for william womer",
    "question_th": "ตั้งชื่อเขตที่ห้าสำหรับผู้หญิงวิลเลียม",
    "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_en": "Name the third district for christine young",
    "question_th": "ตั้งชื่อเขตที่สามสำหรับคริสตินหนุ่ม",
    "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_en": "Name the fourth district for joan runnels",
    "question_th": "ตั้งชื่อเขตที่สี่สำหรับโจน รันเนลส์",
    "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_en": "Name the fourth district for beverly bodem",
    "question_th": "ตั้งชื่อเขตที่สี่สำหรับ 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_en": "Name the number for fifth district for richard houskamp",
    "question_th": "ตั้งชื่อหมายเลขเขตที่ 5 ให้กับ ริชาร์ด ฮูสแคมป์",
    "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_en": "Name the fifth district for steve rudoni",
    "question_th": "ตั้งชื่อเขตที่ห้าสำหรับสตีฟ รูโดนี",
    "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_en": "What was the location when the stolen ends is 12 and shot pct is 77%?",
    "question_th": "ตำแหน่งใดเมื่อจุดสิ้นสุดที่ถูกขโมยคือ 12 และเปอร์เซ็นต์การยิงคือ 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_en": "How many stolen ends were there when the locale was Sweden?",
    "question_th": "มีปลายที่ถูกขโมยไปกี่จุดเมื่อสถานที่นี้คือสวีเดน?",
    "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_en": "What was the school/club team whose season was in 2012 and were acquired via trade? ",
    "question_th": " ทีมโรงเรียน/สโมสรใดที่มีฤดูกาลในปี 2012 และได้มาจากการแลกเปลี่ยน?",
    "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_en": "Which school/club team has a player named Mark Sanford? ",
    "question_th": " ทีมโรงเรียน/สโมสรใดมีผู้เล่นชื่อ 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_en": "How many school/club teams have a player named Manuel Luis Quezon? ",
    "question_th": "ทีมโรงเรียน/สโมสรมีผู้เล่นชื่อ 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_en": "How many players are listed for the school/club team Washington? ",
    "question_th": " มีผู้เล่นกี่คนที่อยู่ในรายชื่อทีมโรงเรียน/สโมสรวอชิงตัน",
    "context": "CREATE TABLE table_15463188_17 (name VARCHAR, school_club_team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(position) FROM table_15463188_17 WHERE season = \"2009\"",
    "question_en": "How many players with a position are listed for the 2009 season? ",
    "question_th": " มีรายชื่อผู้เล่นที่มีตำแหน่งสำหรับฤดูกาล 2009 จำนวนกี่คน?",
    "context": "CREATE TABLE table_15463188_17 (position VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT school_club_team FROM table_15463188_1 WHERE position = \"Guard\"",
    "question_en": "Name the school/club for guard",
    "question_th": "ตั้งชื่อโรงเรียน/สโมสรสำหรับเฝ้า",
    "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_en": "Name the position for judy-ann ramirez",
    "question_th": "ตั้งชื่อตำแหน่งจูดี้-แอน รามิเรซ",
    "context": "CREATE TABLE table_15463188_1 (position VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT losing_bonus FROM table_15467476_3 WHERE points_difference = \"-99\"",
    "question_en": "What is the losing bonus for the team with a point difference of -99?",
    "question_th": "โบนัสการแพ้ของทีมที่มีคะแนนต่างกัน -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_en": "How many games played for teams with 277 points?",
    "question_th": "มีกี่เกมที่เล่นให้กับทีมที่มี 277 แต้ม?",
    "context": "CREATE TABLE table_15467476_3 (played VARCHAR, points_for VARCHAR)"
  },
  {
    "answer": "SELECT won FROM table_15467476_3 WHERE tries_against = \"49\"",
    "question_en": "How many games won for teams with 49 tries against?",
    "question_th": "ทีมที่ได้ลองแข่ง 49 ครั้งชนะไปกี่เกม?",
    "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_en": "How many teams have 62 tries against?",
    "question_th": "มีกี่ทีมที่มีการพยายาม 62 ครั้ง?",
    "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_en": "How many tries for, for club cambrian welfare rfc?",
    "question_th": "พยายามกี่ครั้งเพื่อสวัสดิการ club cambrian 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_en": "How many teams have 21 tries for?",
    "question_th": "มีกี่ทีมที่สามารถลองได้ 21 ครั้ง?",
    "context": "CREATE TABLE table_15467476_3 (points_difference VARCHAR, tries_for VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(chassis) FROM table_15491596_1 WHERE no = 34",
    "question_en": "How many chassis used number 34?",
    "question_th": "ใช้เบอร์ 34 แชสซีไปกี่ตัว?",
    "context": "CREATE TABLE table_15491596_1 (chassis VARCHAR, no VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_15491596_1 WHERE no = 22",
    "question_en": "Who was the constructor of car 22?",
    "question_th": "ใครคือผู้สร้างรถยนต์หมายเลข 22?",
    "context": "CREATE TABLE table_15491596_1 (constructor VARCHAR, no VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(engine) FROM table_15491596_1 WHERE no = 48",
    "question_en": "How many cars used number 48?",
    "question_th": "หมายเลข 48 ใช้ไปกี่คัน?",
    "context": "CREATE TABLE table_15491596_1 (engine VARCHAR, no VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_15491596_1 WHERE no = 44",
    "question_en": "Who drove car 44?",
    "question_th": "ใครขับรถ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_en": "Name the total number of years where runner-up and championship is us open",
    "question_th": "ระบุจำนวนปีทั้งหมดที่เราเปิดรองชนะเลิศและแชมป์",
    "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_en": "Name the surfaace where outcome is runner-up and championship is us open",
    "question_th": "ตั้งชื่อพื้นผิวที่ผลลัพธ์เป็นรองแชมป์และแชมป์คือเราเปิด",
    "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_en": "Name the partner for mark woodforde martina navratilova",
    "question_th": "ตั้งชื่อคู่หูของมาร์ค วูดฟอร์ดเด มาร์ตินา นาฟราติโลวา",
    "context": "CREATE TABLE table_1547951_3 (partner VARCHAR, opponents VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_1547951_3 WHERE opponents = \"Rick Leach Zina Garrison\"",
    "question_en": "Name the score for rick leach zina garrison",
    "question_th": "ตั้งชื่อคะแนนให้กับ 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_en": "Name the swimsuit for arizona",
    "question_th": "ตั้งชื่อชุดว่ายน้ำสำหรับแอริโซนา",
    "context": "CREATE TABLE table_15532342_2 (swimsuit VARCHAR, state VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_15530244_5 WHERE race_2 = \"7\"",
    "question_en": "Name the driver for race 2 7",
    "question_th": "ตั้งชื่อนักแข่งรอบที่ 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_en": "Name the total number of qualifiying for race 3 being 3",
    "question_th": "ตั้งชื่อจำนวนรวมของผู้เข้ารอบการแข่งขันรอบที่ 3 เป็น 3",
    "context": "CREATE TABLE table_15530244_5 (qualifying VARCHAR, race_3 VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_15530244_5 WHERE race_2 = \"2\"",
    "question_en": "Name the driver for race 2 2 ",
    "question_th": " ตั้งชื่อนักแข่งรอบที่ 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_en": "Name the race 1 when race 3 is 8",
    "question_th": "ตั้งชื่อการแข่งขัน 1 เมื่อการแข่งขัน 3 คือ 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_en": "Name the race 2 for james winslow",
    "question_th": "ตั้งชื่อการแข่งขัน 2 สำหรับเจมส์ วินสโลว์",
    "context": "CREATE TABLE table_15530244_5 (race_2 VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(pos) FROM table_15530244_5 WHERE race_1 = \"2\"",
    "question_en": "Name the total number of positions for race 1 being 2",
    "question_th": "ตั้งชื่อจำนวนตำแหน่งทั้งหมดสำหรับการแข่งขัน 1 เป็น 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_en": "Did the race get reported where the winning team was Newman Wachs racing and the pole belonged to Carl Skerlong",
    "question_th": "มีการรายงานการแข่งขันหรือไม่ว่าทีมที่ชนะคือทีมแข่งของ Newman Wachs และเสาเป็นของ 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_en": "Did the round 8 race get reported",
    "question_th": "มีการรายงานการแข่งขันรอบ 8 หรือไม่",
    "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_en": "Which race was the winning team mathiasen motorsports and the pole belonged to jonathan bomarito",
    "question_th": "การแข่งขันรายการใดเป็นทีมที่ชนะ Mathiasen Motorsports และเสาเป็นของ 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_en": "how many winners were in round 8",
    "question_th": "มีผู้ชนะกี่คนในรอบ 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_en": "What channel tv (dt) plays the KPIX station?",
    "question_th": "ทีวีช่องใด (dt) ที่เล่นสถานี KPIX",
    "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_en": "Which city of license/market has 3 (26) as their channel tv (dt)?",
    "question_th": "เมืองที่ได้รับใบอนุญาต/ตลาดใดมี 3 (26) เป็นช่องทีวี (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_en": "Which channel tv (dt) plays in San Francisco - Oakland - San Jose?",
    "question_th": "ทีวีช่องใด (dt) ที่เล่นในซานฟรานซิสโก - โอ๊คแลนด์ - ซานโฮเซ",
    "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_en": "How many years has station KPIX been owned?",
    "question_th": "สถานี KPIX เป็นเจ้าของมากี่ปีแล้ว?",
    "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_en": "Who currently affiliates in San Francisco - Oakland - San Jose?",
    "question_th": "ปัจจุบันบริษัทในเครือในซานฟรานซิสโก - โอ๊คแลนด์ - ซานโฮเซคือใคร?",
    "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_en": "In which condition(s) is bleeding time prolonged and prothrombin time unaffected?",
    "question_th": "ภาวะใดที่เลือดออกนานขึ้นและเวลาของ prothrombin ไม่ได้รับผลกระทบ?",
    "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_en": "How many entries for prothrombin time are there where platelet count is \"decreased or unaffected\"?",
    "question_th": "มีรายการเวลา prothrombin ที่จำนวนเกล็ดเลือด \"ลดลงหรือไม่ได้รับผลกระทบ\" กี่รายการ?",
    "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_en": "How is the bleeding time wherein platelet count is decreased and prothrombin time is unaffected?",
    "question_th": "เวลาในการตกเลือดที่จำนวนเกล็ดเลือดลดลงและเวลาของโปรทรอมบินไม่ได้รับผลกระทบอย่างไร",
    "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_en": "What are all the possible bleeding time results where prothrombin time and platelet count are both unaffected?",
    "question_th": "อะไรคือผลลัพธ์ที่เป็นไปได้ของเวลาเลือดออก โดยที่เวลาของ prothrombin และจำนวนเกล็ดเลือดไม่ได้รับผลกระทบ?",
    "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_en": "What is the percentage of land area in the ecozone that the percentage protected is 7.96?",
    "question_th": "เปอร์เซ็นต์ของพื้นที่ดินในเขตนิเวศที่ได้รับการคุ้มครองคือ 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_en": "What is the percentage of total area in the ecozone that the percentage of land area is 2.2?",
    "question_th": "เปอร์เซ็นต์ของพื้นที่ทั้งหมดในนิเวศโซนที่มีพื้นที่เป็น 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_en": "What is the  percentage of total area in the ecozone that the percentage protected is 8.06?",
    "question_th": "เปอร์เซ็นต์ของพื้นที่ทั้งหมดในนิเวศโซนที่มีเปอร์เซ็นต์การป้องกันคือ 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_en": "What is the  percentage of land area in the ecozone that the percentage protected is 15.28?",
    "question_th": "เปอร์เซ็นต์ของพื้นที่ในนิเวศโซนที่ได้รับการคุ้มครองคือ 15.28 เปอร์เซ็นต์เป็นเท่าใด",
    "context": "CREATE TABLE table_15555661_2 (percentage_of_land_area VARCHAR, percentage_protected VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(area__km²_) FROM table_15555661_2 WHERE ecozone = \"Boreal Shield\"",
    "question_en": "How large is the Boreal Shield in km2?",
    "question_th": "Boreal Shield มีขนาดใหญ่แค่ไหนใน km2?",
    "context": "CREATE TABLE table_15555661_2 (area__km²_ VARCHAR, ecozone VARCHAR)"
  },
  {
    "answer": "SELECT percentage_of_total_area FROM table_15555661_2 WHERE area__km²_ = 1782252",
    "question_en": "What is the percentage of total area in the ecozone that the area is 1782252 km2?",
    "question_th": "เปอร์เซ็นต์ของพื้นที่ทั้งหมดในเขตนิเวศที่มีพื้นที่ 1782252 ตารางกิโลเมตร เป็นเท่าใด",
    "context": "CREATE TABLE table_15555661_2 (percentage_of_total_area VARCHAR, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT platelet_count FROM table_1557752_1 WHERE condition = \"Hemophilia\"",
    "question_en": "What is the condition of the platelet counts in hemophilia?",
    "question_th": "ภาวะเกล็ดเลือดในฮีโมฟีเลียเป็นอย่างไร?",
    "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_en": "What is the prothrombin time in Von willebrand disease?",
    "question_th": "เวลา prothrombin ในโรค Von willebrand คืออะไร?",
    "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_en": "If the partial thromboplastin and bleeding time is prolonged, what is the prothrombin time?",
    "question_th": "หากเวลาของ thromboplastin บางส่วนและเลือดออกนานขึ้น เวลาในการเกิด prothrombin คือเท่าไร?",
    "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_en": "What is the bleeding time in Bernard-soulier syndrome?",
    "question_th": "เวลามีเลือดออกในกลุ่มอาการ Bernard-soulier คืออะไร?",
    "context": "CREATE TABLE table_1557752_1 (bleeding_time VARCHAR, condition VARCHAR)"
  },
  {
    "answer": "SELECT ring_name FROM table_1557974_1 WHERE current_rank = \"f0 Jūryō 3 West\"",
    "question_en": "Which ring names are currently ranked f0 jūryō 3 west?",
    "question_th": "ชื่อแหวนใดที่อยู่ในอันดับที่ f0 jūryō 3 ตะวันตก?",
    "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_en": "How many wrestlers were born in nara, and have a completed 'career and other notes' section?",
    "question_th": "มีนักมวยปล้ำกี่คนที่เกิดในนารา และจบหมวด 'อาชีพและบันทึกอื่นๆ' แล้ว",
    "context": "CREATE TABLE table_1557974_1 (career_and_other_notes VARCHAR, birthplace VARCHAR)"
  },
  {
    "answer": "SELECT debut FROM table_1557974_1 WHERE birthplace = \"Nara\"",
    "question_en": "What are the debut year for wrestlers born in Nara?",
    "question_th": "นักมวยปล้ำที่เกิดที่เมืองนาราเปิดตัวในปีใด",
    "context": "CREATE TABLE table_1557974_1 (debut VARCHAR, birthplace VARCHAR)"
  },
  {
    "answer": "SELECT birthplace FROM table_1557974_1 WHERE debut = \"2002-7\"",
    "question_en": "Where were the wrestlers born who debuted in 2002-7?",
    "question_th": "นักมวยปล้ำเกิดที่ไหนในปี 2545-2540?",
    "context": "CREATE TABLE table_1557974_1 (birthplace VARCHAR, debut VARCHAR)"
  },
  {
    "answer": "SELECT career_and_other_notes FROM table_1557974_1 WHERE stable = \"Oguruma\"",
    "question_en": "What are the career and other notes for wrestlers whose stable is oguruma?",
    "question_th": "อาชีพและบันทึกอื่น ๆ สำหรับนักมวยปล้ำที่มี 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_en": "Name the kinship for *t-ina",
    "question_th": "ตั้งชื่อเครือญาติสำหรับ *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_en": "Name the number of proto austronesian for *natu",
    "question_th": "ตั้งชื่อหมายเลขออสโตรนีเซียนดั้งเดิมสำหรับ *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_en": "Name the ptor-austronesian for father",
    "question_th": "ตั้งชื่อ ptor-austronesian สำหรับพ่อ",
    "context": "CREATE TABLE table_15568886_14 (proto_austronesian VARCHAR, kinship VARCHAR)"
  },
  {
    "answer": "SELECT proto_oceanic FROM table_15568886_14 WHERE proto_polynesian = \"*fafine\"",
    "question_en": "Name the proto oceanic for *fafine",
    "question_th": "ตั้งชื่อคำโปรโตโอเชียนิกสำหรับ *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_en": "Name the proto-austrronesian for *pine, *papine",
    "question_th": "ตั้งชื่อคำออสโตรนีเซียนดั้งเดิมสำหรับ *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_en": "Name who wrote number 47",
    "question_th": "ชื่อผู้เขียนหมายเลข 47",
    "context": "CREATE TABLE table_15584067_4 (written_by VARCHAR, no_in_series VARCHAR)"
  },
  {
    "answer": "SELECT MAX(mass__kg_) FROM table_1558077_2",
    "question_en": "What is the largest mass(kg)?",
    "question_th": "มวลที่ใหญ่ที่สุด (กก.) คืออะไร?",
    "context": "CREATE TABLE table_1558077_2 (mass__kg_ INTEGER)"
  },
  {
    "answer": "SELECT college FROM table_15582870_1 WHERE choice = 143",
    "question_en": "Which college did draft pick #143 attend?",
    "question_th": "วิทยาลัยใดที่ร่างเลือก #143 เข้าร่วม",
    "context": "CREATE TABLE table_15582870_1 (college VARCHAR, choice VARCHAR)"
  },
  {
    "answer": "SELECT weight FROM table_15582870_1 WHERE college = \"Arkansas\"",
    "question_en": "How heavy were the players who attended Arkansas?",
    "question_th": "ผู้เล่นที่เข้าร่วมอาร์คันซอหนักแค่ไหน?",
    "context": "CREATE TABLE table_15582870_1 (weight VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_15582870_1 WHERE weight = 207",
    "question_en": "Which college did the player weighing 207 pounds attend?",
    "question_th": "ผู้เล่นที่มีน้ำหนัก 207 ปอนด์เข้าเรียนในวิทยาลัยใด",
    "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_en": "Name who wrote the episode when the viewers was 1.81",
    "question_th": "ชื่อคนเขียนตอนตอนคนดู 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_en": "Name who directed the 114 episode in the series",
    "question_th": "ชื่อผู้กำกับซีรีส์ตอนที่ 114",
    "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_en": "Name the total number of air dates for 102 episode",
    "question_th": "บอกจำนวนวันออกอากาศทั้งหมด 102 ตอน",
    "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_en": "Name who wrote the 11 number in the season",
    "question_th": "ชื่อผู้เขียนเลข 11 ในฤดูกาลนี้",
    "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_en": "Name the award name for black ocean current",
    "question_th": "ตั้งชื่อรางวัลกระแสน้ำทะเลดำ",
    "context": "CREATE TABLE table_15584199_3 (award_name VARCHAR, team_name VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_15592941_1 WHERE college = \"Florida State\"",
    "question_en": "What position(s) do players from florida state play?",
    "question_th": "ผู้เล่นจากรัฐฟลอริดาเล่นตำแหน่งใด",
    "context": "CREATE TABLE table_15592941_1 (position VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT weight FROM table_15592941_1 WHERE player_name = \"Geno Hayes\"",
    "question_en": "How much does geno hayes weigh?",
    "question_th": "จีโนเฮย์สมีน้ำหนักเท่าไหร่?",
    "context": "CREATE TABLE table_15592941_1 (weight VARCHAR, player_name VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_15592941_1 WHERE player_name = \"Jeremy Zuttah\"",
    "question_en": "What college did jeremy zuttah attend?",
    "question_th": "jeremy zuttah เข้าเรียนที่วิทยาลัยใด",
    "context": "CREATE TABLE table_15592941_1 (college VARCHAR, player_name VARCHAR)"
  },
  {
    "answer": "SELECT MAX(pa) FROM table_15597975_2 WHERE stolen_ends = 5",
    "question_en": "When the stolen ends equal 5 whats the amount of pa?",
    "question_th": "เมื่อขโมยจบเท่ากับ 5 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_en": "What position is the player whose first year is 2014",
    "question_th": "ผู้เล่นที่มีตำแหน่งปีแรกคือปี 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_en": "What was the players position in 2013 who had 29 seasons in the second tier",
    "question_th": "ตำแหน่งผู้เล่นในปี 2013 ซึ่งมี 29 ฤดูกาลในระดับที่สองคืออะไร",
    "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_en": "What was the first season for Syrianska FC",
    "question_th": "ฤดูกาลแรกของซีเรียนสก้า เอฟซี คืออะไร",
    "context": "CREATE TABLE table_1560673_1 (first_season VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT MIN(first_season) FROM table_1560673_1",
    "question_en": "What was the earliest season recorded for any team",
    "question_th": "ฤดูกาลแรกสุดที่บันทึกไว้สำหรับทีมใดๆ คือช่วงใด",
    "context": "CREATE TABLE table_1560673_1 (first_season INTEGER)"
  },
  {
    "answer": "SELECT MAX(points_for) FROM table_15607589_2 WHERE date = \"October 11\"",
    "question_en": "Name the number of points for october 11",
    "question_th": "ตั้งชื่อจำนวนคะแนนสำหรับวันที่ 11 ตุลาคม",
    "context": "CREATE TABLE table_15607589_2 (points_for INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_15607589_2 WHERE week = 9",
    "question_en": "Name the date for week 9",
    "question_th": "ตั้งชื่อวันที่สำหรับสัปดาห์ที่ 9",
    "context": "CREATE TABLE table_15607589_2 (date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT points_against FROM table_15607589_2 WHERE date = \"November 7\"",
    "question_en": "Name the points against for november 7",
    "question_th": "ตั้งชื่อคะแนนเทียบกับวันที่ 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_en": "Name the points against for november 14",
    "question_th": "ตั้งชื่อคะแนนเทียบกับวันที่ 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_en": "Name the first downs for points against being 0",
    "question_th": "ตั้งชื่อดาวน์แรกสำหรับคะแนนเทียบกับ 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_en": "Name the record for new york giants",
    "question_th": "ตั้งชื่อสถิติให้นิวยอร์กไจแอนต์",
    "context": "CREATE TABLE table_15607589_2 (record VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT MIN(purse___us) AS $__ FROM table_15618241_1 WHERE year = 2011",
    "question_en": "Name the least purse for 2011",
    "question_th": "ตั้งชื่อกระเป๋าเงินที่น้อยที่สุดในปี 2554",
    "context": "CREATE TABLE table_15618241_1 (purse___us INTEGER, year VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(wheel_arrangement) FROM table_15608800_2 WHERE class = \"D14\"",
    "question_en": "Name the number of wheel arrangement when class is d14",
    "question_th": "ตั้งชื่อหมายเลขการจัดเรียงล้อเมื่อคลาสเป็น d14",
    "context": "CREATE TABLE table_15608800_2 (wheel_arrangement VARCHAR, class VARCHAR)"
  },
  {
    "answer": "SELECT MAX(number_at_pyewipe) FROM table_15608800_2",
    "question_en": "Name the most number of pyewipe",
    "question_th": "ตั้งชื่อ pyewipe จำนวนมากที่สุด",
    "context": "CREATE TABLE table_15608800_2 (number_at_pyewipe INTEGER)"
  },
  {
    "answer": "SELECT number_at_march FROM table_15608800_2 WHERE class = \"J66\"",
    "question_en": "Name the number at march when class is j66",
    "question_th": "ตั้งชื่อหมายเลขในเดือนมีนาคมเมื่อคลาสคือ j66",
    "context": "CREATE TABLE table_15608800_2 (number_at_march VARCHAR, class VARCHAR)"
  },
  {
    "answer": "SELECT railway FROM table_15608800_2 WHERE class = \"J19\"",
    "question_en": "Name the railway when class is j19",
    "question_th": "ตั้งชื่อทางรถไฟเมื่อคลาสคือ j19",
    "context": "CREATE TABLE table_15608800_2 (railway VARCHAR, class VARCHAR)"
  },
  {
    "answer": "SELECT railway FROM table_15608800_2 WHERE class = \"J15\"",
    "question_en": "Name the railway when class is j15",
    "question_th": "ตั้งชื่อทางรถไฟเมื่อคลาสเป็น 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_en": "Name the years in orlando for penn state",
    "question_th": "ตั้งชื่อปีในออร์แลนโดสำหรับรัฐเพนน์",
    "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_en": "Name the nationality of number 9",
    "question_th": "บอกชื่อสัญชาติหมายเลข 9",
    "context": "CREATE TABLE table_15621965_1 (nationality VARCHAR, no VARCHAR)"
  },
  {
    "answer": "SELECT years_in_orlando FROM table_15621965_10 WHERE position = \"Forward\"",
    "question_en": "Name the years in orlando for forward",
    "question_th": "ตั้งชื่อปีในออร์แลนโดเพื่อส่งต่อ",
    "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_en": "Name the number of players from arizona",
    "question_th": "ตั้งชื่อจำนวนผู้เล่นจากแอริโซนา",
    "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_en": "Name the years in orlando that the player from concord hs was in",
    "question_th": "ตั้งชื่อปีในออร์แลนโดที่ผู้เล่นจาก Concord HS อยู่",
    "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_en": "Name the number of players for louisiana state",
    "question_th": "ตั้งชื่อจำนวนผู้เล่นของรัฐลุยเซียนา",
    "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_en": "Name the school/club team for kevin ollie",
    "question_th": "ตั้งชื่อทีมโรงเรียน/สโมสรสำหรับเควิน ออลลี่",
    "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_en": "Name the school/club team for jawann oldham",
    "question_th": "ตั้งชื่อทีมโรงเรียน/สโมสรสำหรับ จาวานน์ โอลด์แฮม",
    "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_en": "Name the player for seattle",
    "question_th": "ตั้งชื่อผู้เล่นสำหรับซีแอตเทิล",
    "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_en": "What is the nationality of th player who's school is Clemson?",
    "question_th": "นักเตะที่โรงเรียนคือเคลมสันเป็นคนสัญชาติอะไร?",
    "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_en": "What years did the player who's school is Clemson spend in Orlando?",
    "question_th": "ผู้เล่นที่โรงเรียนคือเคลมสันใช้เวลาอยู่ที่ออร์แลนโดกี่ปี?",
    "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_en": "What is the number of the player who attended Delta State?",
    "question_th": "ผู้เล่นที่เข้าร่วม 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_en": "Who plays the position of forward-center?",
    "question_th": "ใครเล่นตำแหน่งกองหน้า-เซนเตอร์?",
    "context": "CREATE TABLE table_15621965_2 (player VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT years_in_orlando FROM table_15621965_3 WHERE player = \"Chris Corchiani\"",
    "question_en": "During what years did Chris Corchiani play in Orlando?",
    "question_th": "Chris Corchiani เล่นในออร์แลนโดในช่วงกี่ปี?",
    "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¢\"",
    "question_en": "When the face value is 42¢, what was the issue's date?",
    "question_th": "เมื่อมูลค่าหน้าบัตรคือ 42¢ ประเด็นการออกคือวันที่ใด",
    "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_en": "Which location has the ecosystem of kelp forest?",
    "question_th": "บริเวณใดมีระบบนิเวศของป่าสาหร่ายทะเล",
    "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¢\" AND printer = \"Banknote Corporation of America\"",
    "question_en": "How many stamps have a face value of 37¢ and were printed in the banknote corporation of america?",
    "question_th": "มีแสตมป์กี่ดวงที่มีมูลค่าหน้า 37¢ และพิมพ์ในบริษัทธนบัตรแห่งอเมริกา",
    "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_en": "Who was the printer of Estes Park, Colorado?",
    "question_th": "ใครคือเครื่องพิมพ์ของเอสเตสพาร์ค รัฐโคโลราโด",
    "context": "CREATE TABLE table_15635768_1 (printer VARCHAR, place_of_issue VARCHAR)"
  },
  {
    "answer": "SELECT printer FROM table_15635768_1 WHERE face_value = \"39¢\"",
    "question_en": "The stamp was 39¢, who was the printer?",
    "question_th": "แสตมป์คือ 39¢ ใครคือเครื่องพิมพ์?",
    "context": "CREATE TABLE table_15635768_1 (printer VARCHAR, face_value VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_15647838_3 WHERE location = \"El Paso, TX\"",
    "question_en": "What are values of attendance for the El Paso, TX location?",
    "question_th": "มูลค่าการเข้าร่วมสำหรับสถานที่ตั้งของ El Paso, TX คืออะไร?",
    "context": "CREATE TABLE table_15647838_3 (attendance VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(result) FROM table_15647838_3 WHERE attendance = \"74,111\"",
    "question_en": "How many values for result correspond to attendance of 74,111?",
    "question_th": "มีกี่ค่าสำหรับผลลัพธ์ที่สอดคล้องกับการเข้าร่วมของ 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_en": "How many locations have the Sun Life Stadium?",
    "question_th": "สนามกีฬาซันไลฟ์มีกี่แห่ง?",
    "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_en": "What is the highest season for a bowl game of the 1993 Independence Bowl?",
    "question_th": "ฤดูกาลที่สูงสุดสำหรับเกมชามของ Independence Bowl ปี 1993 คืออะไร?",
    "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_en": "What is the lowest # in Atlanta, GA with the Georgia Bulldogs as an opponent?",
    "question_th": "# ต่ำสุดใน Atlanta, GA คืออะไรโดยมี Georgia Bulldogs เป็นคู่ต่อสู้?",
    "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_en": "How many values for attendance correspond to the 1986 Peach Bowl?",
    "question_th": "ค่าการเข้าร่วมที่สอดคล้องกับ Peach Bowl ปี 1986 มีกี่ค่า",
    "context": "CREATE TABLE table_15647838_3 (attendance VARCHAR, bowl_game VARCHAR)"
  },
  {
    "answer": "SELECT interview_subject FROM table_1566848_7 WHERE date = \"2-86\"",
    "question_en": "Who was the interview subject in the 2-86 issue?",
    "question_th": "หัวข้อสัมภาษณ์ในฉบับที่ 2-86 คือใคร?",
    "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_en": "Who were all the pictorials when the centerfold model was Rebekka Armstrong?",
    "question_th": "ภาพทั้งหมดคือใครเมื่อ 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_en": "Who were the pictorials when the centerfold model was Ava Fabian?",
    "question_th": "ใครคือรูปถ่ายเมื่อนางแบบพับกลางคือ 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_en": "Who was the interview subject when the centerfold model was Sherry Arnett?",
    "question_th": "ใครคือผู้ถูกสัมภาษณ์เมื่อนางแบบหน้ากลางคือ 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_en": "Who was the cover model in the 7-86 issue?",
    "question_th": "นางแบบหน้าปกฉบับ 7-86 คือใคร?",
    "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_en": "What is the date of the issue where the pictorials is of Female s disk jockey?",
    "question_th": "วันที่ออกคือเมื่อใดที่มีรูปถ่ายของนักจัดรายการหญิง?",
    "context": "CREATE TABLE table_1566848_7 (date VARCHAR, pictorials VARCHAR)"
  },
  {
    "answer": "SELECT cover_model FROM table_1566852_3 WHERE centerfold_model = \"Shallan Meiers\"",
    "question_en": "WHO WAS THE COVER MODEL OF PLAYBOY WHERE THE CENTERFOLD MODEL WAS SHALLAN MEIERS?",
    "question_th": "ใครเป็นนางแบบหน้าปกของ PLAYBOY โดยที่นางแบบตรงกลางคือ 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_en": "IN THE ISSUE WHERE NICOLE NARAIN WAS THE CENTERFOLD MODEL, WHO WAS THE INTERVIEW SUBJECT?",
    "question_th": "ในประเด็นที่นิโคล นาเรนเป็นนางแบบตรงกลาง ใครคือผู้ถูกสัมภาษณ์",
    "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_en": "IN HOW MANY ISSUES WAS HARRISON FORD THE INTERVIEW SUBJECT?",
    "question_th": "แฮร์ริสัน ฟอร์ด ให้สัมภาษณ์กับประเด็นต่างๆ มากมายเพียงใด",
    "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_en": "Who was featured in 20 questions when the subject of the interview was Mike Piazza?",
    "question_th": "ใครถูกนำเสนอในคำถาม 20 ข้อ เมื่อผู้ถูกสัมภาษณ์คือ 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_en": "Who was featured in 20 questions on 4-03?",
    "question_th": "ใครถูกนำเสนอใน 20 คำถามในวันที่ 4-03?",
    "context": "CREATE TABLE table_1566852_4 (date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_1566852_4 WHERE centerfold_model = \"Luci Victoria\"",
    "question_en": "On what deate was the centerfold featured Luci Victoria?",
    "question_th": "ลูซี วิกตอเรีย โชว์ตรงกลางเวทีเมื่อไร?",
    "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_en": "How many centerfold models were there when the cover model was Torrie Wilson?",
    "question_th": "รุ่นปกกลางมีกี่รุ่นในสมัยที่รุ่นหน้าปกคือ 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_en": "What is the name of the pictorial in the 11-98 issue?",
    "question_th": "ภาพฉบับ 11-98 ชื่ออะไรครับ?",
    "context": "CREATE TABLE table_1566850_9 (pictorials VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(centerfold_model) FROM table_1566850_9 WHERE date = \"9-98\"",
    "question_en": "How many centerfolds were in the 9-98 issue?",
    "question_th": "ฉบับ 9-98 มีพับตรงกลางกี่หน้า?",
    "context": "CREATE TABLE table_1566850_9 (centerfold_model VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT interview_subject FROM table_1566850_9 WHERE date = \"8-98\"",
    "question_en": "Who was interviewed in the 8-98 issue?",
    "question_th": "สัมภาษณ์ใครในฉบับ 8-98 บ้าง?",
    "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_en": "Who was asked 20 questions in the issue where the centerfold is Marliece Andrada?",
    "question_th": "ใครถูกถามคำถาม 20 ข้อในประเด็นที่คนกลางคือ 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_en": "Who was asked 20 questions in the issue where the cover model is Linda Brava?",
    "question_th": "20 คำถามโดนใครถามในประเด็นที่นางแบบหน้าปกคือ ลินดา บราวา?",
    "context": "CREATE TABLE table_1566850_9 (cover_model VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(date) FROM table_1566852_6 WHERE centerfold_model = \"Jillian Grace\"",
    "question_en": "How many times was Jillian Grace the centerfold model?",
    "question_th": "Jillian Grace เป็นนางแบบพับกลางกี่ครั้ง?",
    "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_en": "What were the interview subjects on those occasions where Bai Ling was the cover model?",
    "question_th": "หัวข้อสัมภาษณ์ในโอกาสเหล่านั้นที่ Bai Ling เป็นนายแบบหน้าปกมีอะไรบ้าง?",
    "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_en": "How many total interview subjects wererthere when the centerfold model was Tamara Witmer?",
    "question_th": "มีผู้ให้สัมภาษณ์ทั้งหมดกี่คนเมื่อ 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_en": "What's the subject of 20 questions in those issues where Jillian Grace is the centerfold model?",
    "question_th": "คำถาม 20 ข้อในประเด็นเหล่านั้นมีหัวข้ออะไรโดยที่จิลเลียน เกรซเป็นนางแบบพับกลาง",
    "context": "CREATE TABLE table_1566852_6 (centerfold_model VARCHAR)"
  },
  {
    "answer": "SELECT cover_model FROM table_1566852_6 WHERE date = \"4-05\"",
    "question_en": "Who were the cover model(s) on the 4-05 issue?",
    "question_th": "ใครคือนางแบบหน้าปกในฉบับ 4-05?",
    "context": "CREATE TABLE table_1566852_6 (cover_model VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_1566852_5 WHERE interview_subject = \"Oliver Stone\"",
    "question_en": "Name the date for oliver stone",
    "question_th": "ตั้งชื่อวันที่สำหรับโอลิเวอร์ สโตน",
    "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_en": "Name the 20 questions for derek jeter",
    "question_th": "ตั้งชื่อคำถาม 20 ข้อสำหรับเดเร็ก เจเตอร์",
    "context": "CREATE TABLE table_1566852_5 (interview_subject VARCHAR)"
  },
  {
    "answer": "SELECT 20 AS _questions FROM table_1566852_5 WHERE date = \"8-04\"",
    "question_en": "Name the 20 questions for 8-04",
    "question_th": "ตั้งชื่อคำถาม 20 ข้อสำหรับ 8-04",
    "context": "CREATE TABLE table_1566852_5 (date VARCHAR)"
  },
  {
    "answer": "SELECT open_cup FROM table_15672920_1 WHERE year = 2010",
    "question_en": "Name the open cup for 2010",
    "question_th": "ตั้งชื่อถ้วยเปิดสำหรับปี 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_en": "IN WHAT ISSUE OF PLAYBOY WAS SHEPARD SMITH INTERVIEWED?",
    "question_th": "Shepard Smith ถูกสัมภาษณ์ในเรื่องใดของ PLAYBOY",
    "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_en": "HOW MANY MODELS WERE ON THE COVER OF THE ISSUE WHERE THE CENTERFOLD WAS STEPHANIE LARIMORE?",
    "question_th": "มีโมเดลกี่แบบที่อยู่บนหน้าปกของประเด็นนี้ โดยที่ส่วนกลางคือสเตฟานี ลาริมอร์",
    "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_en": "IN THE ISSUE WITH KARA MONACO ON THE COVER, WHO WAS THE INTERVIEW SUBJECT?",
    "question_th": "ในประเด็นที่มีคาร่า โมนาโกอยู่บนหน้าปก ใครคือผู้ถูกสัมภาษณ์?",
    "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_en": "HOW MANY TIMES WAS LUDACRIS THE INTERVIEW SUBJECT FOR THE 20 QUESTIONS COLUMN?",
    "question_th": "ลูดาคริสให้สัมภาษณ์หัวข้อคำถาม 20 ข้อกี่ครั้ง",
    "context": "CREATE TABLE table_1566852_7 (interview_subject VARCHAR)"
  },
  {
    "answer": "SELECT arabic_capital_name FROM table_15694696_1 WHERE english_capital_name = \"Manama\"",
    "question_en": "what is the arabic capital name wher the english capital name is manama?",
    "question_th": "ชื่อเมืองหลวงภาษาอาหรับคืออะไร ชื่อเมืองหลวงภาษาอังกฤษคือมานามา?",
    "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_en": "what is the arabic capital name where the english capital name is beirut?",
    "question_th": "ชื่อเมืองหลวงของภาษาอาหรับคืออะไร ชื่อเมืองหลวงในภาษาอังกฤษคือเบรุต?",
    "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_en": "what is the rank for the rating 4.4?",
    "question_th": "อันดับสำหรับเรตติ้ง 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_en": "what is the rating where the rank is 48?",
    "question_th": "เรตติ้งเท่าไหร่ โดยที่อันดับ 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_en": "what is the total rank where the rank is 58?",
    "question_th": "อันดับทั้งหมดคือเท่าไร โดยอันดับ 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_en": "what rank has viewers at 6.45?",
    "question_th": "คนดู 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_en": "what is the total number of rank where viewers is 9.38?",
    "question_th": "อันดับคนดูทั้งหมด 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_en": "Where is the service pattern sydenham then fast to norwood junction?",
    "question_th": "รูปแบบการให้บริการของ Sydenham แล้วไปเร็วถึงทางแยก Norwood อยู่ที่ไหน?",
    "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_en": "How many platforms have a southern opertator and the pattern is all stations via clapham junction?",
    "question_th": "มีกี่ชานชาลาที่มีโอเปอเรเตอร์ทางใต้ และรูปแบบคือทุกสถานีผ่านทางแยกแคลปแฮม",
    "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_en": "When London Bridge is the destination, what is the frequency?",
    "question_th": "เมื่อสะพานลอนดอนเป็นจุดหมายปลายทาง ความถี่คืออะไร?",
    "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_en": "When London Bridge is the destination, how many lines are there?",
    "question_th": "เมื่อ London Bridge เป็นจุดหมายปลายทาง มีกี่สาย?",
    "context": "CREATE TABLE table_1569516_1 (line VARCHAR, destination VARCHAR)"
  },
  {
    "answer": "SELECT playoffs FROM table_1570003_2 WHERE year = 1998",
    "question_en": "What was the playoff advancement during the year 1998?",
    "question_th": "ความก้าวหน้ารอบรองชนะเลิศในปี 1998 คืออะไร?",
    "context": "CREATE TABLE table_1570003_2 (playoffs VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT open_cup FROM table_1570003_2 WHERE year = 2003",
    "question_en": "During 2003 what was open cup qualifying status?",
    "question_th": "ระหว่างปี 2003 สถานะการคัดเลือกโอเพ่นคัพคืออะไร?",
    "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_en": "What is the most recent year where team made it to 2nd round of the Open Cup?",
    "question_th": "ปีล่าสุดที่ทีมผ่านเข้ารอบ 2 ของ 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_en": "Name the margin of victory when the number is 15",
    "question_th": "ตั้งชื่อส่วนต่างของชัยชนะเมื่อหมายเลขคือ 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_en": "Name the number of numbers for howard clark",
    "question_th": "ตั้งชื่อหมายเลขของฮาวเวิร์ด คลาร์ก",
    "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_en": "Name the margin of victory when tournament is algarve open de portugal",
    "question_th": "ตั้งชื่อส่วนต่างของชัยชนะเมื่อทัวร์นาเมนต์คือ 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_en": "Name the tournament when margin of victory is 3 strokes and winning score is 71-66-70-67=274",
    "question_th": "ตั้งชื่อทัวร์นาเมนท์เมื่อมาร์จิ้นของชัยชนะคือ 3 สโตรก และคะแนนชนะคือ 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_en": "Name the most runs conceded",
    "question_th": "ระบุการวิ่งที่ยอมรับมากที่สุด",
    "context": "CREATE TABLE table_15700367_4 (runs_conceded INTEGER)"
  },
  {
    "answer": "SELECT wickets FROM table_15700367_4 WHERE overs_bowled = \"9\"",
    "question_en": "Name the wickets when overs bowled is 9",
    "question_th": "ตั้งชื่อวิคเก็ตเมื่อโอเวอร์โบว์ลิ่งคือ 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_en": "Name the most maidens when e.r. 5.11",
    "question_th": "ตั้งชื่อสาวใช้มากที่สุดเมื่อ 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_en": "Name the least runs conceded for brett lee",
    "question_th": "ตั้งชื่อการวิ่งน้อยที่สุดที่ยอมรับสำหรับเบรตต์ ลี",
    "context": "CREATE TABLE table_15700367_4 (runs_conceded INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT runs_conceded FROM table_15700367_6 WHERE er = \"4.96\"",
    "question_en": "How many runs conceded when the earned runs was 4.96?",
    "question_th": "เสียการวิ่งกี่ครั้งเมื่อการวิ่งที่ได้รับคือ 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_en": "How many players named sanath jayasuriya?",
    "question_th": "สนั่น ชยสุริยา มีผู้เล่นกี่คน?",
    "context": "CREATE TABLE table_15700367_6 (runs_conceded VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT runs_conceded FROM table_15700367_6 WHERE name = \"Chaminda Vaas\"",
    "question_en": "How many runs conceded for chaminda vaas?",
    "question_th": "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_en": "How many overs bowled for muttiah muralitharan?",
    "question_th": "มุตติอาห์ มูรีธารัน โยนไปกี่โอเวอร์?",
    "context": "CREATE TABLE table_15700367_6 (overs_bowled VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT er FROM table_15700367_6 WHERE runs_conceded = 368",
    "question_en": "What was the ER average for the player that conceded 368 runs?",
    "question_th": "ค่าเฉลี่ย ER สำหรับผู้เล่นที่เสีย 368 รันเป็นเท่าใด?",
    "context": "CREATE TABLE table_15700367_6 (er VARCHAR, runs_conceded VARCHAR)"
  },
  {
    "answer": "SELECT MIN(wickets) FROM table_15700367_6 WHERE name = \"Farveez Maharoof\"",
    "question_en": "What is the lowest number of wickets for farveez maharoof?",
    "question_th": "จำนวนวิคเก็ตต่ำสุดของฟาร์วีซ มาฮารูฟคือเท่าไร?",
    "context": "CREATE TABLE table_15700367_6 (wickets INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT airdate FROM table_15739098_2 WHERE story = \"Hugh Leonard\"",
    "question_en": "What is the airdate when the story is listed as hugh leonard?",
    "question_th": "เรื่องราวคือฮิวจ์ ลีโอนาร์ด ออกอากาศเมื่อใด?",
    "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_en": "who won the kansas state game on 11/26/1988",
    "question_th": "ผู้ชนะเกมรัฐแคนซัสเมื่อวันที่ 26/11/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_en": "how many games has kansas state and depaul played against each other",
    "question_th": "รัฐแคนซัสและเดพอลเล่นกันกี่เกม",
    "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_en": "if they played last on 12/5/1987 what is their record",
    "question_th": "ถ้าพวกเขาเล่นครั้งสุดท้ายในวันที่ 5/12/1987 อะไรคือสถิติของพวกเขา",
    "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_en": "Name the high points for march 7",
    "question_th": "ตั้งชื่อจุดสูงสุดของวันที่ 7 มีนาคม",
    "context": "CREATE TABLE table_15780049_8 (high_points VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_15780049_8 WHERE team = \"Sacramento\"",
    "question_en": "Name the date for sacramento",
    "question_th": "ตั้งชื่อวันที่สำหรับแซคราเมนโต",
    "context": "CREATE TABLE table_15780049_8 (date VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_15780049_8 WHERE date = \"March 17\"",
    "question_en": "Name the high rebounds for march 17",
    "question_th": "ตั้งชื่อการรีบาวด์สูงสำหรับวันที่ 17 มีนาคม",
    "context": "CREATE TABLE table_15780049_8 (high_rebounds VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_15780049_8 WHERE team = \"Philadelphia\"",
    "question_en": "Name the location attendance for philadelphia",
    "question_th": "ตั้งชื่อการเข้าร่วมสถานที่สำหรับฟิลาเดลเฟีย",
    "context": "CREATE TABLE table_15780049_8 (location_attendance VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_15780718_8 WHERE game = 59",
    "question_en": "Who scored the most assists in game 59?",
    "question_th": "ใครทำแอสซิสต์ได้มากที่สุดในเกมที่ 59?",
    "context": "CREATE TABLE table_15780718_8 (high_assists VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_15780718_8 WHERE team = \"Boston\"",
    "question_en": "What was the record against Boston?",
    "question_th": "สถิติในการเจอกับบอสตันคืออะไร?",
    "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_en": "Name the poll winner for march 19, 2008",
    "question_th": "ตั้งชื่อผู้ชนะการสำรวจความคิดเห็นสำหรับวันที่ 19 มีนาคม พ.ศ. 2551",
    "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_en": "Name the # for youtube",
    "question_th": "ตั้งชื่อ # สำหรับ 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_en": "What are the original air dates when scientology isthe poll winner?",
    "question_th": "วันที่ออกอากาศดั้งเดิมคือเมื่อใดที่ไซเอนโทโลจีเป็นผู้ชนะการสำรวจ?",
    "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_en": "When bloggers was the poll winner, who was the root of all evil?",
    "question_th": "เมื่อบล็อกเกอร์เป็นผู้ชนะโพล ใครคือต้นตอของความชั่วร้ายทั้งหมด?",
    "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_en": "How many times did drinking games win the poll?",
    "question_th": "เกมการดื่มชนะการสำรวจกี่ครั้ง?",
    "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_en": "What date was an episode with a run time of 24:30 broadcasted?",
    "question_th": "ออกอากาศวันไหน เวลา 24.30 น.?",
    "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_en": "What episode had a run time of 24:25?",
    "question_th": "เรื่องใดมีระยะเวลา 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_en": "Who was the original artist for week number Top 16 (8 women)?",
    "question_th": "ศิลปินต้นฉบับประจำสัปดาห์ที่ 16 อันดับแรก (ผู้หญิง 8 คน) คือใคร?",
    "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_en": "What was the order number where the original artist is The Doors?",
    "question_th": "หมายเลขคำสั่งซื้อที่ศิลปินต้นฉบับคือ 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_en": "What was the theme when the original artist was The Beatles?",
    "question_th": "ธีมของศิลปินดั้งเดิมคือเดอะบีเทิลส์คืออะไร",
    "context": "CREATE TABLE table_15796072_1 (theme VARCHAR, original_artist VARCHAR)"
  },
  {
    "answer": "SELECT original_artist FROM table_15796072_1 WHERE theme = \"1980s\"",
    "question_en": "Who was the original artist when the theme was 1980s?",
    "question_th": "ใครคือศิลปินดั้งเดิมเมื่อธีมคือช่วงปี 1980?",
    "context": "CREATE TABLE table_15796072_1 (original_artist VARCHAR, theme VARCHAR)"
  },
  {
    "answer": "SELECT original_artist FROM table_15796072_1 WHERE order__number = \"9\"",
    "question_en": "Who was the original artist when the order number is 9?",
    "question_th": "ศิลปินต้นฉบับคือใครเมื่อลำดับที่ 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_en": "Which episode was N/A in region 1",
    "question_th": "ตอนใดไม่มีข้อมูลในภาค 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_en": "When was series premiere on the pilot episode",
    "question_th": "เมื่อซีรีส์เปิดตัวในตอนนำร่อง",
    "context": "CREATE TABLE table_15823956_1 (series VARCHAR)"
  },
  {
    "answer": "SELECT region_1 FROM table_15823956_1 WHERE series = \"4\"",
    "question_en": "What is the region 1 date for series 4",
    "question_th": "วันที่ภาค 1 สำหรับชุดที่ 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_en": "What season began on december 5, 1953?",
    "question_th": "ฤดูกาลใดเริ่มในวันที่ 5 ธันวาคม พ.ศ. 2496",
    "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_en": "What is the title of the first episode of the season that begin on february 27, 1954?",
    "question_th": "ตอนแรกของซีซั่นที่เริ่มวันที่ 27 กุมภาพันธ์ 2497 ชื่ออะไร",
    "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_en": "What is the title of the episode that aired on december 12, 1953?",
    "question_th": "ตอนที่ออกอากาศวันที่ 12 ธันวาคม 2496 ชื่ออะไร",
    "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_en": "How many episodes aired on february 13, 1954?",
    "question_th": "ออกอากาศวันที่ 13 กุมภาพันธ์ 2497 กี่ตอน?",
    "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_en": "What are all the CFL teams where the pick number is 36?",
    "question_th": "ทีม CFL ทั้งหมดที่มีหมายเลขเลือกคือ 36 คืออะไร?",
    "context": "CREATE TABLE table_15817998_5 (cfl_team VARCHAR, pick__number VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_15817998_5 WHERE college = \"Alberta\"",
    "question_en": "What are the positions in the college of Alberta?",
    "question_th": "ตำแหน่งในวิทยาลัยอัลเบอร์ตามีตำแหน่งอะไรบ้าง?",
    "context": "CREATE TABLE table_15817998_5 (position VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(cfl_team) FROM table_15817998_5 WHERE college = \"Wilfrid Laurier\"",
    "question_en": "What is the total number of CFL teams in the college Wilfrid Laurier",
    "question_th": "จำนวนทีม CFL ทั้งหมดในวิทยาลัย 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_en": "What is the college that Jeffrey Simmer plays for?",
    "question_th": "Jeffrey Simmer เล่นในวิทยาลัยอะไร",
    "context": "CREATE TABLE table_15817998_5 (college VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MIN(matches) FROM table_15829930_5 WHERE year = 2008",
    "question_en": "Name the least matches for year 2008",
    "question_th": "ตั้งชื่อการแข่งขันที่น้อยที่สุดสำหรับปี 2551",
    "context": "CREATE TABLE table_15829930_5 (matches INTEGER, year VARCHAR)"
  },
  {
    "answer": "SELECT MAX(wins) FROM table_15829930_5 WHERE success_rate = \"68.75%\"",
    "question_en": "Name the maximum wins for 68.75%",
    "question_th": "ตั้งชื่อชัยชนะสูงสุด 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_en": "Name the summary for the success rate for 68.75%",
    "question_th": "สรุปอัตราความสำเร็จ 68.75%",
    "context": "CREATE TABLE table_15829930_5 (summary VARCHAR, success_rate VARCHAR)"
  },
  {
    "answer": "SELECT MIN(tied) FROM table_15829930_5",
    "question_en": "Name the least tied",
    "question_th": "ตั้งชื่อผูกน้อยที่สุด",
    "context": "CREATE TABLE table_15829930_5 (tied INTEGER)"
  },
  {
    "answer": "SELECT MIN(wins) FROM table_15829930_5 WHERE success_rate = \"56.25%\"",
    "question_en": "Name the least wins of 56.25%",
    "question_th": "ตั้งชื่อชนะน้อยที่สุด 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_en": "How many locomotives have a name of City of Birmingham",
    "question_th": "มีตู้รถไฟกี่ตู้ที่มีชื่อเมืองเบอร์มิงแฮม",
    "context": "CREATE TABLE table_15827397_1 (no VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(name) FROM table_15827397_1 WHERE livery = \"Highland Railway green\"",
    "question_en": "How many locomotives have a livery that is highland railway green",
    "question_th": "มีตู้รถไฟกี่ตู้ที่มีเครื่องแบบเป็นรถไฟบนที่สูงสีเขียว",
    "context": "CREATE TABLE table_15827397_1 (name VARCHAR, livery VARCHAR)"
  },
  {
    "answer": "SELECT locomotive_type FROM table_15827397_1 WHERE status = \"Static display\"",
    "question_en": "Which locomotive type has a status in static display",
    "question_th": "รถจักรประเภทใดมีสถานะแสดงแบบคงที่",
    "context": "CREATE TABLE table_15827397_1 (locomotive_type VARCHAR, status VARCHAR)"
  },
  {
    "answer": "SELECT MAX(points_against) FROM table_15847691_2 WHERE attendance = 47678",
    "question_en": "What is the maximum number of points against when the attendance was 47678?",
    "question_th": "จำนวนคะแนนสูงสุดเทียบกับเมื่อผู้เข้าร่วมคือ 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_en": "What was the total number of first down on October 23?",
    "question_th": "หลุดครั้งแรกวันที่ 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_en": "Name the most series number for giula sandler",
    "question_th": "ตั้งชื่อหมายเลขซีรีส์ที่มากที่สุดสำหรับ 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_en": "Name the number of season number for jeff truman",
    "question_th": "ตั้งชื่อหมายเลขหมายเลขซีซันของเจฟฟ์ ทรูแมน",
    "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_en": "Name the minimum enrollment for montana tech of the university of montana",
    "question_th": "ตั้งชื่อการลงทะเบียนขั้นต่ำสำหรับ montana tech ของมหาวิทยาลัย 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_en": "Name the location when control is private and founded is 1870",
    "question_th": "ตั้งชื่อสถานที่เมื่อการควบคุมเป็นแบบส่วนตัวและก่อตั้งในปี 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_en": "Who directed the TV broadcast s03e19?",
    "question_th": "ใครเป็นผู้กำกับการออกอากาศทางทีวี 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_en": "What episode in the series is TV broadcast s03e20?",
    "question_th": "รายการทีวีออกอากาศตอนใดในซีรีส์ 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_en": "WHAT WAS THE SCORE FOR GAME 31?",
    "question_th": "คะแนนของเกมที่ 31 คืออะไร?",
    "context": "CREATE TABLE table_15869204_6 (score VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_15869204_6 WHERE date = \"January 9\"",
    "question_en": "WHO DID THE RAPTORS PLAY ON JANUARY 9?",
    "question_th": "RAPTORS ใครเล่นในวันที่ 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_en": "Name thenames for 2002-04-01",
    "question_th": "ตั้งชื่อชื่อสำหรับ 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_en": "Name all the date of designations for kurume",
    "question_th": "ตั้งชื่อวันที่กำหนดสำหรับคุรุเมะทั้งหมด",
    "context": "CREATE TABLE table_1585609_2 (date_of_designation VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(japanese) FROM table_1585609_2 WHERE name = \"Amagasaki\"",
    "question_en": "Name the total number of japanese for amagasaki",
    "question_th": "ตั้งชื่อจำนวนภาษาญี่ปุ่นทั้งหมดสำหรับอามากาซากิ",
    "context": "CREATE TABLE table_1585609_2 (japanese VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_1585609_2 WHERE prefecture = \"Iwate\"",
    "question_en": "Name the region for iwate",
    "question_th": "ตั้งชื่อภูมิภาคสำหรับอิวาเตะ",
    "context": "CREATE TABLE table_1585609_2 (region VARCHAR, prefecture VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_15869204_9 WHERE team = \"Chicago\"",
    "question_en": "Who scored the most rebounds in the game against Chicago?",
    "question_th": "ใครทำคะแนนรีบาวน์มากที่สุดในเกมกับชิคาโก?",
    "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_en": "What were the dates of the games where Jalen Rose (32) had the highest points?",
    "question_th": "เกมวันที่ใดที่จาเลน โรส (32) มีคะแนนสูงสุด?",
    "context": "CREATE TABLE table_15872814_5 (date VARCHAR, high_points VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_15872814_5 WHERE team = \"New Orleans\"",
    "question_en": "What is the location and total attendance for games played against New Orleans?",
    "question_th": "สถานที่และผู้เข้าชมทั้งหมดของเกมที่เล่นกับนิวออร์ลีนส์คือที่ไหน?",
    "context": "CREATE TABLE table_15872814_5 (location_attendance VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(team) FROM table_15869204_7 WHERE date = \"February 18\"",
    "question_en": "How many teams are listed for February 18?",
    "question_th": "มีรายชื่อกี่ทีมในวันที่ 18 กุมภาพันธ์?",
    "context": "CREATE TABLE table_15869204_7 (team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_15869204_7 WHERE date = \"February 24\"",
    "question_en": "What were the high rebounds on February 24?",
    "question_th": "การรีบาวด์สูงสุดในวันที่ 24 กุมภาพันธ์เป็นเท่าใด?",
    "context": "CREATE TABLE table_15869204_7 (high_rebounds VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_15869204_7 WHERE game = 51",
    "question_en": "What was the score in game 51?",
    "question_th": "คะแนนในเกมที่ 51 คืออะไร?",
    "context": "CREATE TABLE table_15869204_7 (score VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_15869204_7 WHERE team = \"San Antonio\"",
    "question_en": "What was the score when they played against San Antonio?",
    "question_th": "ตอนที่พวกเขาเล่นกับซานอันโตนิโอได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_15869204_7 (score VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_15869204_8 WHERE game = 68",
    "question_en": "Who was the high point scorer in game number 68?",
    "question_th": "ใครคือผู้ทำแต้มสูงสุดในเกมหมายเลข 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_en": "How many players had the most assists against New Jersey?",
    "question_th": "มีผู้เล่นกี่คนที่แอสซิสต์มากที่สุดในการเจอกับนิวเจอร์ซีย์?",
    "context": "CREATE TABLE table_15873014_3 (high_assists VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(game) FROM table_15873014_3",
    "question_en": "How many games were played in the season?",
    "question_th": "ฤดูกาลนี้เล่นไปกี่เกม?",
    "context": "CREATE TABLE table_15873014_3 (game INTEGER)"
  },
  {
    "answer": "SELECT team FROM table_15872814_7 WHERE high_assists = \"Rafer Alston (5)\"",
    "question_en": "What team had high assists Rafer Alston (5)?",
    "question_th": "ทีมใดมีแอสซิสต์สูง ราเฟอร์ อัลสตัน (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_en": "Who has the most assists on January 3?",
    "question_th": "ใครแอสซิสต์ได้มากที่สุดในวันที่ 3 มกราคม?",
    "context": "CREATE TABLE table_15873014_5 (high_assists VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT rector FROM table_15873547_1 WHERE mascot = \"Phoxes\"",
    "question_en": "Who is the rector of the residence hall who's mascot is the phoxes?",
    "question_th": "ใครเป็นอธิการบดีหอพัก ตัวนำโชคคือจิ้งจอก?",
    "context": "CREATE TABLE table_15873547_1 (rector VARCHAR, mascot VARCHAR)"
  },
  {
    "answer": "SELECT mascot FROM table_15873547_1 WHERE colors = \"Green and Navy\"",
    "question_en": "What is the mascot with the colors green and navy?",
    "question_th": "มาสคอตที่มีสีเขียวและน้ำเงินคืออะไร?",
    "context": "CREATE TABLE table_15873547_1 (mascot VARCHAR, colors VARCHAR)"
  },
  {
    "answer": "SELECT residence_hall FROM table_15873547_1 WHERE mascot = \"Vermin\"",
    "question_en": "What residence hall has the vermin mascot?",
    "question_th": "หอพักไหนมีมาสคอตสัตว์ร้าย?",
    "context": "CREATE TABLE table_15873547_1 (residence_hall VARCHAR, mascot VARCHAR)"
  },
  {
    "answer": "SELECT colors FROM table_15873547_1 WHERE residence_hall = \"Howard Hall\"",
    "question_en": "What are the colors of Howard Hall?",
    "question_th": "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_en": "What is the content of la7 television service?",
    "question_th": "เนื้อหาของบริการโทรทัศน์ la7 คืออะไร?",
    "context": "CREATE TABLE table_15887683_1 (content VARCHAR, television_service VARCHAR)"
  },
  {
    "answer": "SELECT content FROM table_15887683_1 WHERE television_service = \"Rai 1\"",
    "question_en": "What is the content of the rai 1 television service?",
    "question_th": "เนื้อหาของบริการโทรทัศน์ไร่ 1 มีอะไรบ้าง?",
    "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_en": "What are the package/options when the TV service is rai 3?",
    "question_th": "แพ็คเกจ/ตัวเลือก เมื่อใช้บริการทีวี ไร่ 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_en": "What high definition television options are available for Italia 1?",
    "question_th": "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_en": "How many values of HDTV apply when television service is elite shopping tv?",
    "question_th": "HDTV มีค่าเท่าใดเมื่อบริการโทรทัศน์เป็นทีวีสำหรับช็อปปิ้งชั้นยอด",
    "context": "CREATE TABLE table_15887683_16 (hdtv VARCHAR, television_service VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(country) FROM table_15887683_16 WHERE content = \"arte\"",
    "question_en": "How many countries have content of arte?",
    "question_th": "มีกี่ประเทศที่มีเนื้อหาของ 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_en": "How many values of HDTV correspond to television service of la sorgente sat 1?",
    "question_th": "ค่า HDTV ที่สอดคล้องกับบริการโทรทัศน์ของ la sorgente sat 1 มีกี่ค่า",
    "context": "CREATE TABLE table_15887683_16 (hdtv VARCHAR, television_service VARCHAR)"
  },
  {
    "answer": "SELECT hdtv FROM table_15887683_16 WHERE n° = 862",
    "question_en": "What values of HDTV correspond to  n° of 862?",
    "question_th": "ค่า HDTV ใดที่สอดคล้องกับ n° ของ 862",
    "context": "CREATE TABLE table_15887683_16 (hdtv VARCHAR, n° 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_en": "Name the content for sky famiglia for italian and dar 16:9 for mtv hits",
    "question_th": "ตั้งชื่อเนื้อหาสำหรับ sky famiglia สำหรับภาษาอิตาลี และ dar 16:9 สำหรับเพลงฮิตใน mtv",
    "context": "CREATE TABLE table_15887683_10 (content VARCHAR, television_service VARCHAR, dar VARCHAR, package_option VARCHAR, language VARCHAR)"
  },
  {
    "answer": "SELECT MIN(n) AS ° FROM table_15887683_10 WHERE television_service = \"myDeejay\"",
    "question_en": "Name the least number for mydeejay",
    "question_th": "ตั้งชื่อหมายเลขที่น้อยที่สุดสำหรับ 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_en": "Name the number of package options for music box italia",
    "question_th": "ตั้งชื่อจำนวนตัวเลือกแพ็คเกจสำหรับกล่องดนตรีอิตาลี",
    "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_en": "Name the hdtv for sky famiglia and dar 16:9 for mydeejay",
    "question_th": "ตั้งชื่อ hdtv สำหรับ sky famiglia และ dar 16:9 สำหรับ 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_en": "Name the dar for mtv rocks",
    "question_th": "ตั้งชื่อดาร์สำหรับ 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_en": "Name the ppv for sky famiglia and dar 16:9 for mtv dance",
    "question_th": "ตั้งชื่อ ppv สำหรับ sky famiglia และ dar 16:9 สำหรับ 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_en": "Name the dar for telenord",
    "question_th": "ตั้งชื่อดาร์สำหรับเทเลนอร์ด",
    "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_en": "Name the total number of hdtv for eurotic tv",
    "question_th": "ตั้งชื่อจำนวน hdtv ทั้งหมดสำหรับทีวียูโรติค",
    "context": "CREATE TABLE table_15887683_17 (hdtv VARCHAR, television_service VARCHAR)"
  },
  {
    "answer": "SELECT dar FROM table_15887683_17 WHERE n° = 912",
    "question_en": "Name the dar for 912",
    "question_th": "ตั้งชื่อดาร์สำหรับ 912",
    "context": "CREATE TABLE table_15887683_17 (dar VARCHAR, n° VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(content) FROM table_15887683_19 WHERE television_service = \"R-LIGHT\"",
    "question_en": "How many times was something listed under content when the television was R-light?",
    "question_th": "มีกี่ครั้งที่มีรายการอยู่ภายใต้เนื้อหาเมื่อโทรทัศน์มีไฟ R",
    "context": "CREATE TABLE table_15887683_19 (content VARCHAR, television_service VARCHAR)"
  },
  {
    "answer": "SELECT ppv FROM table_15887683_19 WHERE television_service = \"SCT\"",
    "question_en": "Was there PPV when the service was SCT?",
    "question_th": "ตอนให้บริการเป็น SCT มี PPV หรือไม่?",
    "context": "CREATE TABLE table_15887683_19 (ppv VARCHAR, television_service VARCHAR)"
  },
  {
    "answer": "SELECT hdtv FROM table_15887683_19 WHERE television_service = \"PRIVÈ\"",
    "question_en": "Was there HDTV when the service was Privè?",
    "question_th": "มี HDTV เมื่อบริการเป็นแบบ Privè หรือไม่?",
    "context": "CREATE TABLE table_15887683_19 (hdtv VARCHAR, television_service VARCHAR)"
  },
  {
    "answer": "SELECT language FROM table_15887683_19 WHERE television_service = \"ContoTV 5\"",
    "question_en": "In what laguage was Contotv 5?",
    "question_th": "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_en": "What's the content of the Tutti i Pacchetti + Sky HD package?",
    "question_th": "แพ็คเกจ Tutti i Pacchetti + Sky HD มีเนื้อหาอะไรบ้าง?",
    "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_en": "What package offers Fox Sports HD?",
    "question_th": "แพ็คเกจใดบ้างที่ให้บริการ 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_en": "What packages offer the Cartello Promozionale Sky HD service?",
    "question_th": "แพ็คเกจใดบ้างที่ให้บริการ Cartello Promozionale Sky HD?",
    "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_en": "How many different contents are offered by the Qualsiasi Tranne Sky HD package?",
    "question_th": "แพ็คเกจ Qualsiasi Tranne Sky HD มีเนื้อหาที่แตกต่างกันจำนวนเท่าใด",
    "context": "CREATE TABLE table_15887683_3 (content VARCHAR, package_option VARCHAR)"
  },
  {
    "answer": "SELECT content FROM table_15887683_3 WHERE n° = 204",
    "question_en": "What's the content offered by the package number 204?",
    "question_th": "เนื้อหาที่นำเสนอโดยแพ็คเกจหมายเลข 204 คืออะไร?",
    "context": "CREATE TABLE table_15887683_3 (content VARCHAR, n° VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(ppv) FROM table_15887683_5 WHERE television_service = \"Sky Cinema 1\"",
    "question_en": "How many PPV values are listed for when television service Sky Cinema 1?",
    "question_th": "ค่า PPV ที่แสดงเมื่อใช้บริการโทรทัศน์ Sky Cinema 1 มีกี่ค่า",
    "context": "CREATE TABLE table_15887683_5 (ppv VARCHAR, television_service VARCHAR)"
  },
  {
    "answer": "SELECT dar FROM table_15887683_5 WHERE n° = \"336\" AND language = \"Italian\"",
    "question_en": "What DAR is available for n. 336 in Italian?",
    "question_th": "DAR ใดที่มีให้สำหรับ n 336 ในภาษาอิตาลีเหรอ?",
    "context": "CREATE TABLE table_15887683_5 (dar VARCHAR, n° VARCHAR, language VARCHAR)"
  },
  {
    "answer": "SELECT n° FROM table_15887683_5 WHERE package_option = \"Sky Cinema\" AND content = \"cinema\" AND television_service = \"Sky Cinema\" + 24",
    "question_en": "What are the values of n for cinema content provided by Sky Cinema +24 on its Sky Cinema package?",
    "question_th": "ค่าของ n สำหรับเนื้อหาภาพยนตร์ที่ Sky Cinema +24 มอบให้ในแพ็คเกจ Sky Cinema คืออะไร",
    "context": "CREATE TABLE table_15887683_5 (n° VARCHAR, television_service VARCHAR, package_option VARCHAR, content VARCHAR)"
  },
  {
    "answer": "SELECT language FROM table_15887683_5 WHERE television_service = \"Sky Cinema Passion\" AND n° = \"308\"",
    "question_en": "What language is Sky Cinema Passion television service n. 308?",
    "question_th": "บริการโทรทัศน์ Sky Cinema Passion ภาษาอะไร 308?",
    "context": "CREATE TABLE table_15887683_5 (language VARCHAR, television_service VARCHAR, n° VARCHAR)"
  },
  {
    "answer": "SELECT package_option FROM table_15887683_5 WHERE content = \"cinema\" AND n° = \"333\"",
    "question_en": "What package offers cinema content and is n. 333?",
    "question_th": "แพ็คเกจใดที่นำเสนอเนื้อหาภาพยนตร์และเป็น n 333?",
    "context": "CREATE TABLE table_15887683_5 (package_option VARCHAR, content VARCHAR, n° VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(dar) FROM table_15887683_9 WHERE television_service = \"Disney Channel\" AND n° = 613",
    "question_en": "Name the total number of dar for disney channel and number is 613",
    "question_th": "ตั้งชื่อจำนวนดาร์ทั้งหมดสำหรับช่องดิสนีย์และหมายเลขคือ 613",
    "context": "CREATE TABLE table_15887683_9 (dar VARCHAR, television_service VARCHAR, n° VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_15887683_9 WHERE dar = \"16:9\" AND language = \"Italian English\" AND television_service = \"Disney XD +2\"",
    "question_en": "Name the country when dar is 16:9 for italian english for disney xd +2",
    "question_th": "ตั้งชื่อประเทศเมื่อ dar เป็น 16:9 สำหรับภาษาอังกฤษภาษาอิตาลีสำหรับ 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_en": "Who was the player with a bowling best of 2/43?",
    "question_th": "ใครคือผู้เล่นที่เล่นโบว์ลิ่งได้ดีที่สุด 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_en": "What is the highest number of maidens when the bowling best was 1/13?",
    "question_th": "จำนวนสาวใช้สูงสุดเมื่อโบว์ลิ่งดีที่สุดคือ 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_en": "How many overs did Oliver Hannon-Dalby have?",
    "question_th": "Oliver Hannon-Dalby มีโอเวอร์กี่โอเวอร์?",
    "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_en": "What is the highest number of 5w when there was a 21.33 average?",
    "question_th": "จำนวน 5w สูงสุดเมื่อมีค่าเฉลี่ย 21.33 คือเท่าใด?",
    "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_en": "What are the countries in which the agricultural use  (m 3 /p/yr)(in %) is 2040(93%)?",
    "question_th": "ประเทศใดบ้างที่มีการใช้ทางการเกษตร (ลูกบาศก์เมตร /p/ปี)(ใน %) คือปี 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_en": "How many countries had a per capita withdrawal (m 3 /p/yr) of 372?",
    "question_th": "มีกี่ประเทศที่มีการถอนเงินต่อหัว (m 3 /p/ปี) ที่ 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_en": "How many countries had a total freshwater withdrawal (km 3 /yr) where the agricultural use (m 3 /p/yr)(in %) was 428(62%)?",
    "question_th": "มีกี่ประเทศที่มีการนำน้ำจืดกลับมาใช้ใหม่ทั้งหมด (กิโลเมตร 3/ปี) โดยการใช้ทางการเกษตร (ลูกบาศก์เมตร/p/ปี)(ใน %) อยู่ที่ 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_en": "In Pakistan, what was the total freshwater withdrawal (km 3 /yr) where the agricultural use (m 3 /p/yr)(in %) was 1029(96%)?",
    "question_th": "ในปากีสถาน ปริมาณน้ำจืดที่ดึงออกมาทั้งหมด (กิโลเมตร 3 /ปี) โดยที่การใช้ทางการเกษตร (ลูกบาศก์เมตร /p/ปี)(ใน %) อยู่ที่ 1,029(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_en": "What was the country in which the agricultural use (m 3 /p/yr)(in %) was 794(86%)?",
    "question_th": "ประเทศใดที่มีการใช้ทางการเกษตร (m 3 /p/ปี)(ใน %) คือ 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_en": "In how many countries was the total freshwater withdrawal (km 3 /yr) 169.39?",
    "question_th": "ปริมาณการใช้น้ำจืดรวมในกี่ประเทศ (กม. 3/ปี) 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_en": "Name the date of winning score being 67-67-63=197",
    "question_th": "ตั้งชื่อวันที่ชนะคะแนนเป็น 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_en": "Name the runners up for when tournament is wgc-accenture match play championship",
    "question_th": "ตั้งชื่อรองชนะเลิศเมื่อทัวร์นาเมนต์คือ 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_en": "Name the total number when date is 30 may 2010",
    "question_th": "ตั้งชื่อหมายเลขรวมเมื่อวันที่ 30 พฤษภาคม 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_en": "Name th margin of victory when date is 10 jul 2011",
    "question_th": "ตั้งชื่อส่วนต่างของชัยชนะเมื่อวันที่ 10 กรกฎาคม 2554",
    "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_en": "Name the most number when tournament is madrid masters",
    "question_th": "ตั้งชื่อหมายเลขมากที่สุดเมื่อทัวร์นาเมนต์คือ 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_en": "Name the most episode numbers of 6 january 2006",
    "question_th": "รายชื่อตอนมากที่สุดของวันที่ 6 มกราคม 2549",
    "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_en": "How many validations are listed for the iin range 36?",
    "question_th": "มีการตรวจสอบความถูกต้องกี่ครั้งสำหรับ 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_en": "What is the validation for iin ranges  5610, 560221-560225?",
    "question_th": "การตรวจสอบความถูกต้องสำหรับช่วง iin 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_en": "What is the length for iin range 51-55?",
    "question_th": "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_en": "Is the iin range 4 active?",
    "question_th": "iin range 4 ทำงานอยู่หรือไม่?",
    "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_en": "What episode did Pamela Anderson guest host.",
    "question_th": "พาเมล่า แอนเดอร์สันเป็นพิธีกรตอนไหน",
    "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_en": "What song was performed when Barbara Windsor was the guest host?",
    "question_th": "เพลงใดที่แสดงเมื่อบาร์บารา วินด์เซอร์เป็นพิธีกร?",
    "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_en": "What is the entry for weight in kilograms of jockey D. Nikolic?",
    "question_th": "รายการน้ำหนักเป็นกิโลกรัมของจ๊อกกี้ 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_en": "Which group had the time 1:11.65?",
    "question_th": "กลุ่มใดมีเวลา 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_en": "Which horse won with a time of 1:35.98 and what was their position?",
    "question_th": "ม้าตัวไหนชนะด้วยเวลา 1:35.98 และตำแหน่งอะไร?",
    "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_en": "What engine type is used in a Space Shuttle Vacuum scenario?",
    "question_th": "เครื่องยนต์ประเภทใดที่ใช้ในสถานการณ์สุญญากาศกระสวยอวกาศ",
    "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_en": "What is the effective exhaust velocity in a Space Shuttle Vacuum?",
    "question_th": "ความเร็วไอเสียที่มีประสิทธิภาพในสุญญากาศกระสวยอวกาศคืออะไร?",
    "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_en": "What is the maximum specific impulse with a 4423 m/s effective exhaust velocity?",
    "question_th": "แรงกระตุ้นจำเพาะสูงสุดที่มีความเร็วไอเสียประสิทธิผล 4423 m/s คือเท่าใด",
    "context": "CREATE TABLE table_15944_5 (specific_impulse__s_ INTEGER, effective_exhaust_velocity__m_s_ VARCHAR)"
  },
  {
    "answer": "SELECT sfc_in_g__kn·s_ FROM table_15944_5 WHERE specific_impulse__s_ = 453",
    "question_en": "What is the SFC when the specific impulse is 453?",
    "question_th": "SFC คืออะไรเมื่อแรงกระตุ้นเฉพาะคือ 453",
    "context": "CREATE TABLE table_15944_5 (sfc_in_g__kn·s_ VARCHAR, specific_impulse__s_ VARCHAR)"
  },
  {
    "answer": "SELECT start_date__1st_night_ FROM table_159359_2 WHERE season = \"1966\"",
    "question_en": "When are start dates (1st night) for the season of 1966?",
    "question_th": "วันที่เริ่มต้น (คืนแรก) สำหรับฤดูกาลปี 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_en": "When are end dates (last night) for the season of 1918?",
    "question_th": "วันที่สิ้นสุด (เมื่อคืน) สำหรับฤดูกาลปี 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_en": "What is the percentage of the Labour Party on the Harris Poll",
    "question_th": "เปอร์เซ็นต์ของพรรคแรงงานใน 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_en": "On all other parties the National option polls are at 1.3% where as the opinion research pole is at what percentage? ",
    "question_th": " ในส่วนอื่นๆ ทั้งหมด ผลสำรวจทางเลือกระดับชาติอยู่ที่ 1.3% ในขณะที่กลุ่มวิจัยความคิดเห็นอยู่ที่เปอร์เซ็นต์เท่าใด",
    "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_en": "Name the del pueblo for centennial 1988",
    "question_th": "ตั้งชื่อเดลปูเอโบลสำหรับร้อยปี 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_en": "Name the centennial for 1992 akimel",
    "question_th": "ตั้งชื่อครบรอบหนึ่งร้อยปีสำหรับอาคิเมลปี 1992",
    "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_en": "Name the del pueblo for red/black",
    "question_th": "ตั้งชื่อ del pueblo ด้วยสีแดง/ดำ",
    "context": "CREATE TABLE table_15977768_1 (del_pueblo VARCHAR, centennial VARCHAR)"
  },
  {
    "answer": "SELECT centennial FROM table_15977768_1 WHERE information = \"Location\"",
    "question_en": "Name the centennial for location",
    "question_th": "ตั้งชื่อครบรอบร้อยปีสำหรับสถานที่",
    "context": "CREATE TABLE table_15977768_1 (centennial VARCHAR, information VARCHAR)"
  },
  {
    "answer": "SELECT host FROM table_1597866_3 WHERE first_premiere = \"August 3, 2007\"",
    "question_en": "Name the host when first premiere is august 3, 2007",
    "question_th": "ตั้งชื่อพิธีกรเมื่อเปิดตัวครั้งแรกคือ 3 สิงหาคม 2550",
    "context": "CREATE TABLE table_1597866_3 (host VARCHAR, first_premiere VARCHAR)"
  },
  {
    "answer": "SELECT regular_judge FROM table_1597866_3 WHERE host = \"Anja Rubik\"",
    "question_en": "Name the regular judge when host is anja rubik",
    "question_th": "ตั้งชื่อผู้ตัดสินประจำเมื่อพิธีกรคืออันจา รูบิค",
    "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_en": "Name the number of regular judge when host is bernie chan",
    "question_th": "ตั้งชื่อหมายเลขผู้ตัดสินประจำ เมื่อพิธีกรคือ เบอร์นี่ชาน",
    "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_en": "Name the most number for 74 runs margins",
    "question_th": "ตั้งชื่อหมายเลขมากที่สุดสำหรับระยะขอบการรัน 74 ครั้ง",
    "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_en": "Name the number of team for 35 runs margin and india winner",
    "question_th": "ตั้งชื่อทีมสำหรับระยะขอบ 35 รันและผู้ชนะจากอินเดีย",
    "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_en": "Namethe team for feb 27, 1996",
    "question_th": "ตั้งชื่อทีมวันที่ 27 ก.พ. 2539",
    "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_en": "Name the numbers for date of feb 27, 1996",
    "question_th": "ตั้งชื่อหมายเลขประจำวันที่ 27 ก.พ. 2539",
    "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_en": "Name the team for oct 30, 1989",
    "question_th": "ตั้งชื่อทีมวันที่ 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_en": "Name the winner for date of nov 5, 1987",
    "question_th": "แจ้งชื่อผู้โชคดีวันที่ 5 พ.ย. 2530",
    "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_en": "On Sept. 17, how many first downs did the oilers have?",
    "question_th": "ในวันที่ 17 กันยายน oilers มีดาวน์ครั้งแรกกี่ครั้ง?",
    "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_en": "How many games were against the los angeles rams?",
    "question_th": "แข่งกับทีมลอสแอนเจลิสแรมส์กี่เกม?",
    "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_en": "What is the annual change of GDP with a 20.5% GDP of EU in 2012?",
    "question_th": "การเปลี่ยนแปลงประจำปีของ GDP โดยมี GDP 20.5% ของสหภาพยุโรปในปี 2555 คืออะไร?",
    "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_en": "What is the public debt % of GDP in 2013 Q1 with a 4.7% GDP of EU in 2012?",
    "question_th": "หนี้สาธารณะ % ของ GDP ในไตรมาสที่ 1 ปี 2556 โดยมี GDP 4.7% ของสหภาพยุโรปในปี 2555 เป็นเท่าใด",
    "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_en": "What is the annual inflation % when GDP per capita in ppp US$ is 24505 in 2012?",
    "question_th": "อัตราเงินเฟ้อต่อปีคือเท่าใดเมื่อ GDP ต่อหัวในหน่วย ppp US$ คือ 24505 ในปี 2555",
    "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_en": "What are all the places where the number of perfect 40s is 0 and the average is 27.25?",
    "question_th": "สถานที่ใดบ้างที่จำนวนคนอายุ 40 สมบูรณ์แบบคือ 0 และค่าเฉลี่ยคือ 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_en": "What is the maximum total in which the average is 28.5?",
    "question_th": "ผลรวมสูงสุดที่ค่าเฉลี่ยคือ 28.5 คือเท่าใด",
    "context": "CREATE TABLE table_15988037_24 (total INTEGER, average VARCHAR)"
  },
  {
    "answer": "SELECT MIN(perfect_40s) FROM table_15988037_24",
    "question_en": "What is the minimum number of perfect 40s?",
    "question_th": "จำนวนขั้นต่ำที่สมบูรณ์แบบของ 40 คือเท่าไร?",
    "context": "CREATE TABLE table_15988037_24 (perfect_40s INTEGER)"
  },
  {
    "answer": "SELECT muzzle_velocity FROM table_16010376_1 WHERE cartridge = \".375 Remington Ultra Magnum\"",
    "question_en": "When using a .375 Remington Ultra Magnum, what is the muzzle velocity?",
    "question_th": "เมื่อใช้ .375 Remington Ultra Magnum ความเร็วปากกระบอกปืนเป็นเท่าใด",
    "context": "CREATE TABLE table_16010376_1 (muzzle_velocity VARCHAR, cartridge VARCHAR)"
  },
  {
    "answer": "SELECT cartridge FROM table_16010376_1 WHERE source = \"Weatherby\"",
    "question_en": "What type of cartridge is used by a Weatherby?",
    "question_th": "Weatherby ใช้คาร์ทริดจ์ประเภทใด?",
    "context": "CREATE TABLE table_16010376_1 (cartridge VARCHAR, source VARCHAR)"
  },
  {
    "answer": "SELECT cartridge FROM table_16010376_1 WHERE source = \"Winchester\"",
    "question_en": "What type of cartridge is used by a Winchester?",
    "question_th": "Winchester ใช้คาร์ทริดจ์ประเภทใด",
    "context": "CREATE TABLE table_16010376_1 (cartridge VARCHAR, source VARCHAR)"
  },
  {
    "answer": "SELECT bullet_weight FROM table_16010376_1 WHERE source = \"Weatherby\"",
    "question_en": "What is the weight of the bullet used in a Weatherby?",
    "question_th": "กระสุนที่ใช้ใน Weatherby มีน้ำหนักเท่าไหร่?",
    "context": "CREATE TABLE table_16010376_1 (bullet_weight VARCHAR, source VARCHAR)"
  },
  {
    "answer": "SELECT bullet_weight FROM table_16010376_1 WHERE source = \"Remington\"",
    "question_en": "What is the weight of the bullet used in a Remington?",
    "question_th": "กระสุนที่ใช้ในเรมิงตันมีน้ำหนักเท่าไหร่?",
    "context": "CREATE TABLE table_16010376_1 (bullet_weight VARCHAR, source VARCHAR)"
  },
  {
    "answer": "SELECT muzzle_energy FROM table_16010376_1 WHERE cartridge = \".375 Winchester\"",
    "question_en": "When using a .375 Winchester, what is the muzzle energy?",
    "question_th": "เมื่อใช้ .375 Winchester พลังงานปากกระบอกปืนคืออะไร?",
    "context": "CREATE TABLE table_16010376_1 (muzzle_energy VARCHAR, cartridge VARCHAR)"
  },
  {
    "answer": "SELECT headphone_model FROM table_1601027_1 WHERE us_msrp = \"$150\"",
    "question_en": "Which headphone models correspond to the US MSRP of $150?",
    "question_th": "หูฟังรุ่นใดที่สอดคล้องกับ US MSRP ที่ 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_en": "Which terminations correspond to a US MSRP of $49?",
    "question_th": "การยุติใดที่สอดคล้องกับ MSRP ของสหรัฐอเมริกาที่ $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_en": "How many headphone classes have a US MSRP of $150?",
    "question_th": "มีคลาสหูฟังกี่คลาสที่มี US MSRP ที่ $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_en": "How many values for earpads correspond to the headphone class Prestige and a US MSRP of $79?",
    "question_th": "เอียร์แพดมีกี่ค่าที่สอดคล้องกับคลาสหูฟัง Prestige และ MSRP ของสหรัฐอเมริกาที่ 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_en": "Which headphone models have a driver-matched DB of 0.1 and a US MSRP of $49?",
    "question_th": "หูฟังรุ่นใดที่มี DB ที่ตรงกับไดรเวอร์ที่ 0.1 และ MSRP ของสหรัฐอเมริกาที่ $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_en": "Which terminations correspond with headphone model SR80I?",
    "question_th": "ขั้วปลายใดที่สอดคล้องกับหูฟังรุ่น SR80I",
    "context": "CREATE TABLE table_1601027_1 (termination VARCHAR, headphone_model VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_1602620_1 WHERE office = \"State Assemblyman\"",
    "question_en": "What type are State Assemblyman",
    "question_th": "ส.ส.ของรัฐเป็นประเภทใด",
    "context": "CREATE TABLE table_1602620_1 (type VARCHAR, office VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_1602620_1 WHERE term_began = \"December 8, 1980\"",
    "question_en": "What type had a beginning term of December 8, 1980",
    "question_th": "ประเภทใดมีวาระเริ่มต้นคือวันที่ 8 ธันวาคม พ.ศ. 2523",
    "context": "CREATE TABLE table_1602620_1 (type VARCHAR, term_began VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_1602620_1 WHERE elected = 1980",
    "question_en": "What type had an election day in 1980",
    "question_th": "ประเภทใดที่มีวันเลือกตั้งในปี พ.ศ. 2523",
    "context": "CREATE TABLE table_1602620_1 (type VARCHAR, elected VARCHAR)"
  },
  {
    "answer": "SELECT term_ended FROM table_1602620_1 WHERE elected = 1990",
    "question_en": "What year did the term end for those elected in 1990",
    "question_th": "วาระของผู้ได้รับเลือกในปี 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_en": "What is the location for the office whose term ended December 2, 1976",
    "question_th": "ที่ตั้งสำนักงานซึ่งสิ้นสุดวาระในวันที่ 2 ธันวาคม พ.ศ. 2519 อยู่ที่ใด",
    "context": "CREATE TABLE table_1602620_1 (location VARCHAR, term_ended VARCHAR)"
  },
  {
    "answer": "SELECT term_ended FROM table_1602620_1 WHERE elected = 1984",
    "question_en": "What year did the term end for the office elected in 1984",
    "question_th": "วาระการดำรงตำแหน่งของผู้ได้รับเลือกในปี พ.ศ. 2527 สิ้นสุดลงเมื่อใด",
    "context": "CREATE TABLE table_1602620_1 (term_ended VARCHAR, elected VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_16028499_2 WHERE date = \"October 8, 1989\"",
    "question_en": "What was the record on October 8, 1989?",
    "question_th": "บันทึกเมื่อวันที่ 8 ตุลาคม พ.ศ. 2532 คืออะไร?",
    "context": "CREATE TABLE table_16028499_2 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT game_site FROM table_16028499_2 WHERE date = \"October 29, 1989\"",
    "question_en": "Where was the game site on October 29, 1989?",
    "question_th": "เว็บไซต์เกมเมื่อวันที่ 29 ตุลาคม พ.ศ. 2532 อยู่ที่ไหน",
    "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_en": "What was the minimum attendance against the New Orleans Saints?",
    "question_th": "จำนวนผู้เข้าร่วมขั้นต่ำในการเจอกับ New Orleans Saints คืออะไร?",
    "context": "CREATE TABLE table_16028499_2 (attendance INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_16028499_2 WHERE week = 2",
    "question_en": "What was the result of week 2?",
    "question_th": "สัปดาห์ที่ 2 ผลลัพธ์เป็นอย่างไร?",
    "context": "CREATE TABLE table_16028499_2 (result VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_16028499_2 WHERE opponent = \"New York Jets\"",
    "question_en": "What date did the team play the New York Jets?",
    "question_th": "ทีมเล่น 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_en": "What was the minimum crowd on January 24, 1987?",
    "question_th": "จำนวนฝูงชนขั้นต่ำในวันที่ 24 มกราคม พ.ศ. 2530 คือเท่าใด",
    "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_en": "How many millions of viewers were there for the episode with a run time of 18:00?",
    "question_th": "มีผู้ชมกี่ล้านคนสำหรับตอนนี้โดยมีความยาว 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_en": "What was the archive for episode with 6.6 million viewers?",
    "question_th": "ไฟล์เก็บถาวรสำหรับตอนที่มีผู้ชม 6.6 ล้านคนคืออะไร",
    "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_en": "When is the latest game the bills had 21 first downs",
    "question_th": "เมื่อเป็นเกมล่าสุดตั๋วเงินมี 21 นัดแรก",
    "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_en": "How many first downs did the bills have when their opponent had 6",
    "question_th": "ตั๋วเงินมีดาวน์ครั้งแรกกี่ครั้งเมื่อคู่ต่อสู้มี 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_en": "How many points did the bills score when their opponent had 14",
    "question_th": "บิลได้คะแนนเท่าไรเมื่อฝ่ายตรงข้ามมี 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_en": "What is the minimum number of points given up to the Baltimore Colts",
    "question_th": "จำนวนคะแนนขั้นต่ำที่มอบให้กับบัลติมอร์ โคลท์คือเท่าใด",
    "context": "CREATE TABLE table_16028459_2 (opponents INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT runner_s__up FROM table_1602858_1 WHERE tournament = \"Memorial tournament\"",
    "question_en": "Who was the runner-up in the Memorial Tournament?",
    "question_th": "ใครคือรองชนะเลิศในการแข่งขัน 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_en": "What was the winning score for the tournament with runner-up Rory Sabbatini?",
    "question_th": "คะแนนชนะสำหรับทัวร์นาเมนต์นี้กับรองแชมป์ 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_en": "What was the margin of victory with the winning score \"63-68-68-68=267\"?",
    "question_th": "ส่วนต่างของชัยชนะด้วยคะแนนชนะ \"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_en": "Name the least position",
    "question_th": "ตั้งชื่อตำแหน่งน้อยที่สุด",
    "context": "CREATE TABLE table_16034882_5 (position INTEGER)"
  },
  {
    "answer": "SELECT MAX(goals_scored) FROM table_16034882_5 WHERE position = 4",
    "question_en": "Name the most goals scored for position 4",
    "question_th": "ทายผลประตูสูงสุดอันดับที่ 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_en": "What is the name of the bowl game that was played in Tempe, Arizona?",
    "question_th": "เกมชามที่เล่นในเมืองเทมพี รัฐแอริโซนา ชื่ออะไร",
    "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_en": "What city in the Citrus Bowl aired on ABC?",
    "question_th": "เมืองใดใน Citrus Bowl ที่ออกอากาศทาง 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_en": "What teams played in the Capital One bowl game on January 1, 2009?",
    "question_th": "ทีมใดที่เล่นในเกมชามแคปิตอลวันเมื่อวันที่ 1 มกราคม พ.ศ. 2552",
    "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_en": "Which stadium has a payout of $3 million?",
    "question_th": "สนามกีฬาใดมีการจ่ายเงิน 3 ล้านเหรียญสหรัฐ?",
    "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_en": "What is the largest population in regions where the average family size is 2.8 people?",
    "question_th": "ประชากรที่ใหญ่ที่สุดในภูมิภาคที่มีขนาดครอบครัวโดยเฉลี่ยคือ 2.8 คนคือข้อใด",
    "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_en": "What is the total number of regions where the average family size is 2.8?",
    "question_th": "จำนวนภูมิภาคทั้งหมดที่มีขนาดครอบครัวโดยเฉลี่ยคือ 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_en": "What regions of the USSR have a percentage of deportees of 10.6?",
    "question_th": "ภูมิภาคใดของสหภาพโซเวียตที่มีเปอร์เซ็นต์ผู้ถูกเนรเทศ 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_en": "What is the most number of families in regions where average family size is 2.7?",
    "question_th": "จำนวนครอบครัวในภูมิภาคที่ขนาดครอบครัวเฉลี่ยคือ 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_en": "How many total families are there in regions with 5.8 percent of the population being made up of deportees?",
    "question_th": "มีครอบครัวทั้งหมดกี่ครอบครัวในภูมิภาคที่มีประชากรร้อยละ 5.8 ประกอบด้วยผู้ถูกเนรเทศ",
    "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_en": "What is the most number of families among regions where the population is made up of 5.8% deportees?",
    "question_th": "จำนวนครอบครัวมากที่สุดในภูมิภาคที่ประชากรประกอบด้วยผู้ถูกเนรเทศ 5.8% คือเท่าใด",
    "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_en": "Which operator runs the Mamariga shuttle line?",
    "question_th": "บริษัทใดที่ให้บริการเส้นทางรถรับส่ง Mamariga?",
    "context": "CREATE TABLE table_1603807_2 (operator VARCHAR, line VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(length) FROM table_1603807_2 WHERE line = \"line 3\"",
    "question_en": "How many lengths of line 3 are given?",
    "question_th": "เส้นที่ 3 ให้ความยาวกี่เส้น?",
    "context": "CREATE TABLE table_1603807_2 (length VARCHAR, line VARCHAR)"
  },
  {
    "answer": "SELECT terminals FROM table_1603807_2 WHERE line = \"line 2\"",
    "question_en": "What are the terminals for line 2?",
    "question_th": "ขั้วต่อสาย 2 คืออะไร?",
    "context": "CREATE TABLE table_1603807_2 (terminals VARCHAR, line VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_1603807_2 WHERE line = \"Airport line\"",
    "question_en": "What is the status of the airport line?",
    "question_th": "สถานะของสายสนามบินคืออะไร?",
    "context": "CREATE TABLE table_1603807_2 (status VARCHAR, line VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(hangul_chosongul) FROM table_160510_5 WHERE area = \"8,352\"",
    "question_en": "Name the total number of hangul chosongul for 8,352",
    "question_th": "ตั้งชื่อจำนวนทั้งหมดฮันกึลโชซงกุลเป็น 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_en": "Name the iso for chungcheongnam",
    "question_th": "ตั้งชื่อ iso สำหรับ chungcheongnam",
    "context": "CREATE TABLE table_160510_5 (iso VARCHAR, rr_romaja VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_160510_5 WHERE area = \"11,891\"",
    "question_en": "Name the country for 11,891 area",
    "question_th": "ตั้งชื่อประเทศ 11,891 พื้นที่",
    "context": "CREATE TABLE table_160510_5 (country VARCHAR, area VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(region) FROM table_160510_5 WHERE hangul_chosongul = \"경상남도\"",
    "question_en": "Name the number of region for  경상남도",
    "question_th": "ตั้งชื่อหมายเลขภูมิภาคสำหรับ 경상남서",
    "context": "CREATE TABLE table_160510_5 (region VARCHAR, hangul_chosongul VARCHAR)"
  },
  {
    "answer": "SELECT m_r_romaja FROM table_160510_5 WHERE region = \"Kwanbuk\"",
    "question_en": "Name the m r romaja for kwanbuk",
    "question_th": "ตั้งชื่อคุณ romaja สำหรับ ขวัญบุก",
    "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_en": "Name the population density where population % is 1.1% for slovakia",
    "question_th": "ตั้งชื่อความหนาแน่นของประชากร โดยที่ % ของประชากรคือ 1.1% สำหรับสโลวาเกีย",
    "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_en": "Name the population density people where population % eu for 1.7%",
    "question_th": "ตั้งชื่อความหนาแน่นของประชากร โดยที่ประชากร % eu เท่ากับ 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_en": "Name the number of area km 2 for population density is 87",
    "question_th": "ตั้งชื่อจำนวนพื้นที่ กม. 2 สำหรับความหนาแน่นของประชากรคือ 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_en": "Name the population % of eu for greece",
    "question_th": "ตั้งชื่อประชากร % ของสหภาพยุโรปสำหรับกรีซ",
    "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_en": "How many networks are there that have a channel number 7?",
    "question_th": "มีกี่เครือข่ายที่มีช่องหมายเลข 7?",
    "context": "CREATE TABLE table_160728_4 (network VARCHAR, channel VARCHAR)"
  },
  {
    "answer": "SELECT network FROM table_160728_4 WHERE station = \"TV3\"",
    "question_en": "What station on the network is tv3?",
    "question_th": "tv3 คือสถานีใดในเครือข่าย?",
    "context": "CREATE TABLE table_160728_4 (network VARCHAR, station VARCHAR)"
  },
  {
    "answer": "SELECT MAX(founded) FROM table_16078390_2 WHERE team_nickname = \"Raiders\"",
    "question_en": "What year was the team named the Raiders established?",
    "question_th": "ทีมชื่อ Raiders ก่อตั้งในปีใด",
    "context": "CREATE TABLE table_16078390_2 (founded INTEGER, team_nickname VARCHAR)"
  },
  {
    "answer": "SELECT primary_conference FROM table_16078390_2 WHERE institution = \"Gonzaga University\"",
    "question_en": "What conference does Gonzaga University play in?",
    "question_th": "มหาวิทยาลัย Gonzaga เล่นในการประชุมใด?",
    "context": "CREATE TABLE table_16078390_2 (primary_conference VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(founded) FROM table_16078390_2 WHERE location = \"Tacoma, Washington\"",
    "question_en": "How many Universities were founded in Tacoma, Washington?",
    "question_th": "มีมหาวิทยาลัยกี่แห่งที่ก่อตั้งขึ้นในเมืองทาโคมา รัฐวอชิงตัน",
    "context": "CREATE TABLE table_16078390_2 (founded VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT institution FROM table_16078390_2 WHERE team_nickname = \"Wildcats\"",
    "question_en": "Which school's team has the nickname of the Wildcats?",
    "question_th": "ทีมโรงเรียนใดมีชื่อเล่นว่า 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_en": "What year was the university that is located in Ellensburg, Washington established?",
    "question_th": "มหาวิทยาลัยที่ตั้งอยู่ในเมืองเอลเลนสเบิร์ก รัฐวอชิงตัน ก่อตั้งขึ้นเมื่อปีใด",
    "context": "CREATE TABLE table_16078390_2 (founded INTEGER, location VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_16078390_2 WHERE team_nickname = \"Wolves\"",
    "question_en": "Where is the university located that's nicknamed the Wolves?",
    "question_th": "มหาวิทยาลัยที่ตั้งชื่อว่า 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_en": "What is the total number of viewers where the share is 7 and the week rank is 64?",
    "question_th": "จำนวนผู้ชมทั้งหมดที่มีส่วนแบ่งคือ 7 และอันดับประจำสัปดาห์คือ 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_en": "How many episodes have a share bigger than 7.0?",
    "question_th": "มีกี่ตอนที่มีส่วนแบ่งมากกว่า 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_en": "How many episodes have a weekly rank tba and are broadcast at 8:00 p.m.?",
    "question_th": "มีกี่ตอนต่อสัปดาห์ และออกอากาศเวลา 20.00 น.?",
    "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_en": "What are the timeslot(s) for broadcast on February 22, 2008?",
    "question_th": "ออกอากาศวันที่ 22 กุมภาพันธ์ 2551 มีกำหนดออกอากาศช่วงใด?",
    "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_en": "What broadcast dates have a weekly rank of 73?",
    "question_th": "วันไหนที่ออกอากาศมีอันดับรายสัปดาห์ที่ 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_en": "When was the date of appointment for St. Johnstone's manager? ",
    "question_th": " วันที่ได้รับการแต่งตั้งให้เป็นผู้จัดการของเซนต์ จอห์นสโตนคือเมื่อใด?",
    "context": "CREATE TABLE table_16075179_6 (date_of_appointment VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT outgoing_manager FROM table_16075179_6 WHERE team = \"Aberdeen\"",
    "question_en": "Who was the outgoing manager for Aberdeen? ",
    "question_th": " ใครคือผู้จัดการทีมอเบอร์ดีนที่จะลาออก?",
    "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_en": "When was the date of appointment for the manager replacing Wim Jansen? ",
    "question_th": " วันที่ได้รับการแต่งตั้งผู้จัดการแทนวิม แจนเซ่น คือเมื่อใด?",
    "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_en": "What is the result for salmonella spp. if you use citrate?",
    "question_th": "ผลลัพธ์ของเชื้อ Salmonella spp. คืออะไร ถ้าคุณใช้ซิเตรต?",
    "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_en": "Which species show a negative result with both voges-proskauer and indole?",
    "question_th": "สายพันธุ์ใดแสดงผลเชิงลบกับทั้ง voges-proskauer และ 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_en": "What are the results for testing the species with voges-proskauer when citrate yields a positive result?",
    "question_th": "อะไรคือผลลัพธ์ของการทดสอบสายพันธุ์ด้วย voges-proskauer เมื่อซิเตรตให้ผลลัพธ์ที่เป็นบวก?",
    "context": "CREATE TABLE table_16083989_1 (voges_proskauer VARCHAR, citrate VARCHAR)"
  },
  {
    "answer": "SELECT indole FROM table_16083989_1 WHERE species = \"Proteus mirabilis\"",
    "question_en": "What is the result of proteus mirabilis tested with indole?",
    "question_th": "ผลการทดสอบ Proteus mirabilis ด้วยอินโดลมีผลอย่างไร?",
    "context": "CREATE TABLE table_16083989_1 (indole VARCHAR, species VARCHAR)"
  },
  {
    "answer": "SELECT originalairdate FROM table_16090262_1 WHERE tv_broadcast = \"S07E04\"",
    "question_en": "When was the show originally aired that had a TV broadcast of S07E04?",
    "question_th": "รายการนี้ออกอากาศครั้งแรกเมื่อใดซึ่งมีการออกอากาศทางทีวีเรื่อง 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_en": "Which title was No. 4 in season?",
    "question_th": "ชื่อใดคืออันดับที่ 4 ในฤดูกาล?",
    "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_en": "Who directed the show that had a TV broadcast of S07E04?",
    "question_th": "ใครเป็นผู้กำกับรายการที่มีการออกอากาศทางโทรทัศน์เรื่อง 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_en": "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?",
    "question_th": "อัตราการปล่อยก๊าซเรือนกระจกใน Mid-Atlantic South สำหรับรถยนต์ที่ได้รับการจัดอันดับ 90 กรัม/ไมล์ (56 กรัม/กม.) ในอลาสก้า และ 110 กรัม/ไมล์ (68 กรัม/กม.) ในแคลิฟอร์เนีย คืออะไร",
    "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_en": "What was the emission rating in Mid-Atlantic South for the vehicle that was rated 300 g/mi (186 g/km) in the Midwest?",
    "question_th": "อัตราการปล่อยก๊าซเรือนกระจกในมิดแอตแลนติกตอนใต้สำหรับรถยนต์ที่ได้รับการจัดอันดับ 300 กรัม/ไมล์ (186 กรัม/กม.) ในมิดเวสต์เป็นเท่าใด",
    "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_en": "What was the US national average electric mix rating for the vehicle that was rated 280 g/mi (174 g/km) in the Midwest?",
    "question_th": "อัตราส่วนผสมทางไฟฟ้าโดยเฉลี่ยของประเทศสหรัฐอเมริกาสำหรับรถยนต์ที่ได้รับการจัดอันดับ 280 กรัม/ไมล์ (174 กรัม/กิโลเมตร) ในมิดเวสต์คือเท่าใด",
    "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_en": "How many Ford Focus electric vehicle emission test scores were recorded in California?",
    "question_th": "คะแนนการทดสอบการปล่อยก๊าซเรือนกระจกของรถยนต์ไฟฟ้าของฟอร์ดโฟกัสในแคลิฟอร์เนียมีกี่คะแนน",
    "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_en": "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 ?",
    "question_th": "อัตราการปล่อยก๊าซเรือนกระจกในแคลิฟอร์เนียสำหรับรถยนต์ที่ได้รับการจัดอันดับ 80 กรัม/ไมล์ (50 กรัม/กม.) ในอลาสก้า และ 250 กรัม/ไมล์ (155 กรัม/กม.) ในภาคตะวันออกเฉียงใต้ คืออะไร",
    "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_en": "What was the lowest no. of attendance on record?",
    "question_th": "หมายเลขต่ำสุดคืออะไร ของการเข้าร่วมเป็นประวัติการณ์?",
    "context": "CREATE TABLE table_16119656_1 (attendance INTEGER)"
  },
  {
    "answer": "SELECT date FROM table_16119656_1 WHERE attendance < 6427.0",
    "question_en": "When was the game played if the attendance is less than 6427.0?",
    "question_th": "เกมเล่นเมื่อใดหากผู้เข้าร่วมน้อยกว่า 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_en": "How many were in attendance during the game on January 9, 1988?",
    "question_th": "มีผู้เข้าร่วมระหว่างเกมในวันที่ 9 มกราคม พ.ศ. 2531 กี่คน?",
    "context": "CREATE TABLE table_16119656_1 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT headquarters FROM table_1610301_1 WHERE code = \"HY\"",
    "question_en": "Where is the headquarters of the place whose abbreviation is hy?",
    "question_th": "สำนักงานใหญ่ของสถานที่ซึ่งมีอักษรย่อว่า hy อยู่ที่ไหน?",
    "context": "CREATE TABLE table_1610301_1 (headquarters VARCHAR, code VARCHAR)"
  },
  {
    "answer": "SELECT headquarters FROM table_1610301_1 WHERE population__2011_ = 3811738",
    "question_en": "Where is the headquarters of the place whose population in 2011 was 3811738?",
    "question_th": "สำนักงานใหญ่ของสถานที่ซึ่งมีประชากรในปี 2554 อยู่ที่ 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_en": "What was the minimum population in 2011 of the district of Prakasam?",
    "question_th": "จำนวนประชากรขั้นต่ำในปี 2554 ของอำเภอปรากาสัม คือเท่าใด",
    "context": "CREATE TABLE table_1610301_1 (population__2011_ INTEGER, district VARCHAR)"
  },
  {
    "answer": "SELECT code FROM table_1610301_1 WHERE district = \"Mahbubnagar\"",
    "question_en": "What is the abbreviation of the district of Mahbubnagar?",
    "question_th": "อำเภอมะบุบนาการ์ อักษรย่อว่าอะไร?",
    "context": "CREATE TABLE table_1610301_1 (code VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT population__2011_ FROM table_1610301_1 WHERE district = \"East Godavari\"",
    "question_en": "What is the 2011 population of the district of East Godavari?",
    "question_th": "ประชากรในเขตโกดาวารีตะวันออกในปี 2554 เป็นจำนวนเท่าใด",
    "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_en": "What is the adjusted GDP when the nominal GDP per capita is 2874?",
    "question_th": "GDP ที่ปรับแล้วจะเป็นเท่าใดเมื่อ GDP ต่อหัวที่ระบุคือ 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_en": "What is the adjusted GDP per capita when the population is 37.376 million?",
    "question_th": "GDP ต่อหัวที่ปรับปรุงแล้วเมื่อมีประชากร 37.376 ล้านคนคือเท่าใด",
    "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_en": "What is the nominal GDP per capita when the population is 63.056 million?",
    "question_th": "GDP ที่กำหนดต่อหัวคือเท่าใดเมื่อมีประชากร 63.056 ล้านคน",
    "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_en": "What is the adjusted GDP when the population is 5.141 million?",
    "question_th": "GDP ที่ปรับปรุงแล้วเมื่อมีประชากร 5.141 ล้านคนเป็นเท่าใด",
    "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_en": "What is the population in millions when the adjusted GDP is 492 billion?",
    "question_th": "ประชากรเป็นล้านเมื่อ GDP ที่ปรับปรุงแล้วคือ 492 พันล้าน?",
    "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_en": "What is the adjusted GDP when the nominal GDP is 8.43 (in billions)?",
    "question_th": "GDP ที่ปรับแล้วจะเป็นเท่าใดเมื่อ GDP ที่ระบุคือ 8.43 (ในหน่วยพันล้าน)",
    "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_en": "What was the opearint profit (s$m) associated with an expenditure (s$m) of 12,127.8?",
    "question_th": "กำไรของโอเปร่า (s$m) ที่เกี่ยวข้องกับค่าใช้จ่าย (s$m) ของ 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_en": "What was the expenditure (s$m) associated with an operating profit (s$m) of 717.1?",
    "question_th": "อะไรคือค่าใช้จ่าย (s$m) ที่เกี่ยวข้องกับกำไรจากการดำเนินงาน (s$m) ที่ 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_en": "How many years was the operating profit (s$m) 717.1?",
    "question_th": "กำไรจากการดำเนินงาน (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üan … i-ma\"",
    "question_en": "Name the simplified characters for wade giles is ch'ing-yüan … i-ma",
    "question_th": "ตั้งชื่ออักขระตัวย่อสำหรับ Wade Giles คือ ch'ing-yüan … 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_en": "Name the pinyin for 657 date",
    "question_th": "ตั้งชื่อพินอินตามวันที่ 657",
    "context": "CREATE TABLE table_16162581_1 (pinyin VARCHAR, date__ce_ VARCHAR)"
  },
  {
    "answer": "SELECT text FROM table_16162581_1 WHERE simplified_characters = \"心猿意马\"",
    "question_en": "Name the text for 心猿意马",
    "question_th": "ตั้งชื่อข้อความสำหรับ heart猿意马",
    "context": "CREATE TABLE table_16162581_1 (text VARCHAR, simplified_characters VARCHAR)"
  },
  {
    "answer": "SELECT simplified_characters FROM table_16162581_1 WHERE wade_giles = \"hsin-yüan … i-ma\"",
    "question_en": "Name the simplified charaacters being hsin-yüan … i-ma",
    "question_th": "ตั้งชื่อตัวละครตัวย่อว่า hsin-yüan … 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üan-i-ma\"",
    "question_en": "Name the total number of pinyin for hsin-yüan-i-ma",
    "question_th": "ตั้งชื่อจำนวนพินอินทั้งหมดสำหรับซิน-หยวน-อี-มา",
    "context": "CREATE TABLE table_16162581_1 (pinyin VARCHAR, wade_giles VARCHAR)"
  },
  {
    "answer": "SELECT date__ce_ FROM table_16162581_1 WHERE pinyin = \"qíngyuán … yìmǎ\"",
    "question_en": "Name the date for qíngyuán … yìmǎ",
    "question_th": "ตั้งชื่อวันที่สำหรับqíngyuán … yìmǎ",
    "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_en": "Which line offers Fast to Norwood Junction?",
    "question_th": "สายใดบ้างที่ให้บริการ Fast ไปยัง 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_en": "Who is the operator to Highbury & Islington?",
    "question_th": "ใครเป็นผู้ดำเนินการไป 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_en": "How many frequency figures are given for next station service pattern?",
    "question_th": "รูปแบบการให้บริการของสถานีถัดไปมีตัวเลขความถี่เท่าใด",
    "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_en": "Who is the operator to destination Dalston Junction?",
    "question_th": "ใครเป็นผู้ดำเนินการไปยังจุดหมายปลายทาง 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_en": "How many tournament wins were at Volvo Masters Andalucia?",
    "question_th": "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_en": "Who was the runner up at the Volvo Masters Andalucia?",
    "question_th": "ใครคือผู้ชนะเลิศการแข่งขัน 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_en": "In what tournament was the winning score 68-67-65-66=266?",
    "question_th": "คะแนนชนะในการแข่งขันรายการใด 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_en": "Name the joined for blue hose",
    "question_th": "ตั้งชื่อข้อต่อสำหรับท่อสีน้ำเงิน",
    "context": "CREATE TABLE table_16168849_1 (joined VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT MAX(founded) FROM table_16168849_1 WHERE nickname = \"Blue Hose\"",
    "question_en": "Name the maximum founded for blue hose",
    "question_th": "ตั้งชื่อค่าสูงสุดที่ก่อตั้งสำหรับท่อสีน้ำเงิน",
    "context": "CREATE TABLE table_16168849_1 (founded INTEGER, nickname VARCHAR)"
  },
  {
    "answer": "SELECT MAX(enrollment) FROM table_16168849_1 WHERE institution = \"St. Andrews University\"",
    "question_en": "Name the maximum enrollment for st. andrews university",
    "question_th": "ตั้งชื่อการลงทะเบียนสูงสุดสำหรับเซนต์ มหาวิทยาลัยแอนดรูว์",
    "context": "CREATE TABLE table_16168849_1 (enrollment INTEGER, institution VARCHAR)"
  },
  {
    "answer": "SELECT current_conference FROM table_16168849_1 WHERE left = \"1974, 1989\"",
    "question_en": "Name the current conference for 1974, 1989",
    "question_th": "ตั้งชื่อการประชุมปัจจุบันสำหรับปี 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_en": "What is the total number of episodes where alexa wyatt is the writer?",
    "question_th": "จำนวนตอนทั้งหมดที่ alexa wyatt เป็นผู้เขียนคือเท่าไร?",
    "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_en": "Who is the director when Chris Hawkshaw is the writer?",
    "question_th": "ใครคือผู้กำกับเมื่อ Chris Hawkshaw เป็นคนเขียนบท?",
    "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_en": "What is the season number of the episode directed by Donald Crombie and the series number is 40?",
    "question_th": "หมายเลขซีซันของตอนที่กำกับโดย Donald Crombie และหมายเลขซีรีส์คือ 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_en": "What is the released date for Super Mario 64 DS?",
    "question_th": "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_en": "What are the game modes for the game released in 2007?",
    "question_th": "โหมดเกมสำหรับเกมที่เปิดตัวในปี 2550 มีอะไรบ้าง?",
    "context": "CREATE TABLE table_1616608_2 (game_modes VARCHAR, released_date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(western_title) FROM table_1616608_2 WHERE chinese_title = \"摸摸耀西-云中漫步\"",
    "question_en": "How many games share their western title with the Chinese title of 摸摸耀西-云中漫步 ?",
    "question_th": "มีเกมกี่เกมที่มีชื่อเกมตะวันตกร่วมกับชื่อภาษาจีน 摸摸耀西-云中漫步",
    "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_en": "What was the released date of Polarium?",
    "question_th": "Polarium เปิดตัวเมื่อใด",
    "context": "CREATE TABLE table_1616608_2 (released_date VARCHAR, western_title VARCHAR)"
  },
  {
    "answer": "SELECT game_modes FROM table_1616608_2 WHERE pinyin = \"Zhígǎn Yī Bǐ\"",
    "question_en": "What game modes are there when the pinyin is zhígǎn yī bǐ ?",
    "question_th": "เมื่อพินอินคือ zhígǎn yī bǐ มีโหมดเกมอะไรบ้าง?",
    "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_en": "What is the status of donor payment in the country where there are 6 children per donor and no data on allowed recipients?",
    "question_th": "สถานะการชำระเงินของผู้บริจาคในประเทศที่มีเด็ก 6 คนต่อผู้บริจาค และไม่มีข้อมูลเกี่ยวกับผู้รับที่ได้รับอนุญาตเป็นอย่างไร",
    "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_en": "What are donor payments in the country where there are 12 children to 6 families (2 per family)?",
    "question_th": "การจ่ายเงินของผู้บริจาคในประเทศที่มีเด็ก 12 คนต่อ 6 ครอบครัว (2 คนต่อครอบครัว) คืออะไร?",
    "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_en": "What is the donor payment in Belgium?",
    "question_th": "การชำระเงินของผู้บริจาคในเบลเยียมคืออะไร?",
    "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_en": "What is the country where there are 8 children per donor and no data for donor payments?",
    "question_th": "ประเทศใดที่มีเด็ก 8 คนต่อผู้บริจาค และไม่มีข้อมูลการชำระเงินของผู้บริจาค",
    "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_en": "What are the children per donor in the country where the allowed recipients are married or in cohabitation?",
    "question_th": "เด็กต่อผู้บริจาคในประเทศที่ผู้รับที่ได้รับอนุญาตแต่งงานหรืออยู่กินด้วยกันมีกี่คน?",
    "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_en": "List the possible children per donor levels for countries where the allowed recipients is no data.",
    "question_th": "ระบุรายชื่อเด็กที่เป็นไปได้ต่อระดับผู้บริจาคสำหรับประเทศที่ผู้รับที่ได้รับอนุญาตไม่มีข้อมูล",
    "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_en": "Against which team does Missouri Tigers have a record of mu, 2-1 at a neutral site?",
    "question_th": "Missouri Tigers มีสถิติ mu 2-1 ในเกมที่เป็นกลางกับทีมใด?",
    "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_en": "Which is the team against which Missouri Tigers have a record of ui, 4-1 at the opponent's venue?How",
    "question_th": "ทีมใดที่ Missouri Tigers มีสถิติ UI 4-1 ที่สนามของคู่ต่อสู้?",
    "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_en": "How many times did the team achieve an overrall record of mu, 21-19?",
    "question_th": "กี่ครั้งแล้วที่ทีมทำสถิติโอเวอร์ออล มิว 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_en": "What is the record at the neutral site for when the overall record is ui, 27-16?",
    "question_th": "บันทึกที่ไซต์กลางสำหรับเมื่อบันทึกโดยรวมคือ 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_en": "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?",
    "question_th": "สถิติที่สนามของคู่ต่อสู้ต่อทีมเป็นอย่างไรบ้าง โดยสถิติการพบกัน 5 ครั้งหลังสุดคือ มิว 4-1 และสถิติที่สนามกลางเสมอกัน 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_en": "What is the stamp duty reserve tax when the percentage over total tax revenue is 0.79?",
    "question_th": "ภาษีสำรองอากรแสตมป์เป็นเท่าใด เมื่อเปอร์เซ็นต์ของรายได้ภาษีทั้งหมดคือ 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_en": "When the standard stamp duty is 367 what is the percentage over gdp?",
    "question_th": "เมื่ออากรแสตมป์มาตรฐานคือ 367 ส่วน 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_en": "When the stamp duty reserve tax is 3,669 what is the percentage over gdp?",
    "question_th": "เมื่อภาษีสำรองอากรแสตมป์เป็น 3,669 ส่วน 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_en": "During what years are the percentage over total tax revenue is 0.65?",
    "question_th": "ในช่วงปีใดที่เปอร์เซ็นต์ของรายได้ภาษีทั้งหมดคือ 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_en": "Name the total number of opponets venue for oklahoma",
    "question_th": "ตั้งชื่อจำนวนสถานที่ฝ่ายตรงข้ามทั้งหมดสำหรับโอคลาโฮมา",
    "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_en": "Name the total number of last 5 meetings for texas tech",
    "question_th": "ตั้งชื่อจำนวนการประชุมทั้งหมด 5 ครั้งล่าสุดสำหรับ 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_en": "Name the total number of series sorted for when released is april 2010",
    "question_th": "ตั้งชื่อจำนวนซีรีส์ทั้งหมดที่จัดเรียงเมื่อวางจำหน่ายในเดือนเมษายน 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_en": "Name the author for 6y/ae",
    "question_th": "ตั้งชื่อผู้เขียน 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_en": "Name the author for peri and april 2010",
    "question_th": "ตั้งชื่อผู้เขียนสำหรับ เปริ และ เมษายน 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_en": "Name the released for pat mills",
    "question_th": "ตั้งชื่อที่ออกสำหรับ pat mills",
    "context": "CREATE TABLE table_1620397_2 (released VARCHAR, author VARCHAR)"
  },
  {
    "answer": "SELECT featuring FROM table_1620397_2 WHERE author = \"Pat Mills\"",
    "question_en": "Name the featuring for pat mills",
    "question_th": "ตั้งชื่อเนื้อเรื่องสำหรับ 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_en": "What are the outcomes of the last 5 meetings where the overall record is UM, 2-1?",
    "question_th": "ผลการพบกัน 5 นัดหลังสุดเป็นอย่างไร สถิติรวม 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_en": "What is the record of wins/losses that were played at opponents venue (uf, 1-0)",
    "question_th": "อะไรคือสถิติการชนะ/แพ้ที่เล่นที่สนามของฝ่ายตรงข้าม (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_en": "Who are the opponents of Missouri that have an overall record of MU, 3-1?",
    "question_th": "คู่ต่อสู้ของมิสซูรีที่มีสถิติรวม 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_en": "What is the record at Columbia for the team overall record of MU, 3-1?",
    "question_th": "สถิติที่โคลัมเบียสำหรับสถิติโดยรวมของทีม 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_en": "How many feet in length are there when the length is 106.1 meters? ",
    "question_th": " มีความยาวกี่ฟุตเมื่อมีความยาว 106.1 เมตร?",
    "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_en": "When the kilometers from kingston is 105.4 what is the minimum amount of length in feet? ",
    "question_th": " เมื่อกิโลเมตรจากคิงส์ตันคือ 105.4 ความยาวต่ำสุดเป็นฟุตคือเท่าใด?",
    "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_en": "Which parishes have a railroad length of 51.8 meters? ",
    "question_th": "ตำบลใดมีทางรถไฟยาว 51.8 เมตร",
    "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_en": "When the railroad length is 362 feet how many miles is it from kingston? ",
    "question_th": " เมื่อทางรถไฟยาว 362 ฟุต ระยะทางจากคิงส์ตันคือกี่ไมล์?",
    "context": "CREATE TABLE table_16226584_1 (mi_from_kingston VARCHAR, length_feet VARCHAR)"
  },
  {
    "answer": "SELECT parish FROM table_16226584_1 WHERE name = \"Highworth\"",
    "question_en": "Which parishes have the highworth railroad?",
    "question_th": "ตำบลใดบ้างที่มีทางรถไฟสาย Highworth",
    "context": "CREATE TABLE table_16226584_1 (parish VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_16226584_1 WHERE km_from_kingston = \"112.6\"",
    "question_en": "Which railroad is 112.6 kilometers from kingston? ",
    "question_th": " ทางรถไฟสายใดอยู่ห่างจากคิงส์ตัน 112.6 กิโลเมตร?",
    "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_en": "Name the most number for new england blazers",
    "question_th": "ตั้งชื่อเบอร์เบอร์ที่มากที่สุดสำหรับนิวอิงแลนด์เบลเซอร์",
    "context": "CREATE TABLE table_16227492_1 (_number INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT MAX(attendance) FROM table_16227492_1",
    "question_en": "Name the most attendance",
    "question_th": "ตั้งชื่อผู้เข้าร่วมมากที่สุด",
    "context": "CREATE TABLE table_16227492_1 (attendance INTEGER)"
  },
  {
    "answer": "SELECT MAX(attendance) FROM table_16227492_1 WHERE _number = 4",
    "question_en": "Name the most attendance for number 4",
    "question_th": "ตั้งชื่อผู้เข้าร่วมมากที่สุดสำหรับหมายเลข 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_en": "What is the preliminary average when the semifinal average is 8.834 (3) ?",
    "question_th": "ค่าเฉลี่ยเบื้องต้นเมื่อค่าเฉลี่ยรอบรองชนะเลิศอยู่ที่ 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_en": "What is the interview when preliminary average is 8.662 (3) ?",
    "question_th": "สัมภาษณ์เมื่อค่าเฉลี่ยเบื้องต้นอยู่ที่ 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_en": "What state has a semifinal average of 8.538 (8) ?",
    "question_th": "รัฐใดมีค่าเฉลี่ยรอบรองชนะเลิศที่ 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_en": "What state has an interview of 8.313 (8) ?",
    "question_th": "รัฐใดมีบทสัมภาษณ์ 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_en": "What is the semifinal average where the preliminary average is 9.084 (1) ?",
    "question_th": "ค่าเฉลี่ยรอบรองชนะเลิศโดยค่าเฉลี่ยเบื้องต้นอยู่ที่ 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_en": "What is the swimsuit when evening gown is 8.774 (6) ?",
    "question_th": "ชุดว่ายน้ำเมื่อชุดราตรีเบอร์ 8.774 (6) ?",
    "context": "CREATE TABLE table_16268026_3 (swimsuit VARCHAR, evening_gown VARCHAR)"
  },
  {
    "answer": "SELECT pop_density__per_km²_ FROM table_16278602_1 WHERE english_name = \"Capital Region of Denmark\"",
    "question_en": "What is the population density of the Capital Region of Denmark?",
    "question_th": "ความหนาแน่นของประชากรในเขตเมืองหลวงของเดนมาร์กคือเท่าใด",
    "context": "CREATE TABLE table_16278602_1 (pop_density__per_km²_ VARCHAR, english_name VARCHAR)"
  },
  {
    "answer": "SELECT seat_of_administration FROM table_16278602_1 WHERE largest_city = \"Roskilde\"",
    "question_en": "In the region where Roskilde is the largest city, what is the seat of administration?",
    "question_th": "ในภูมิภาคที่ Roskilde เป็นเมืองที่ใหญ่ที่สุด ศูนย์กลางการปกครองมีอะไรบ้าง?",
    "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_en": "What is the minimum population of the region in which Roskilde is the largest city?",
    "question_th": "จำนวนประชากรขั้นต่ำในภูมิภาคที่ Roskilde เป็นเมืองที่ใหญ่ที่สุดคือเท่าใด",
    "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_en": "How many languages for the 2001 (74th) awards?",
    "question_th": "รางวัลปี 2544 (ครั้งที่ 74) มีกี่ภาษา",
    "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_en": "What was the result for the 2009 (82nd) awards?",
    "question_th": "ผลการได้รับรางวัลประจำปี 2552 (ครั้งที่ 82) เป็นอย่างไร?",
    "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_en": "Name the original title for the counterfeiters",
    "question_th": "ตั้งชื่อชื่อเดิมสำหรับผู้ลอกเลียนแบบ",
    "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_en": "Name the year for spiele leben",
    "question_th": "ตั้งชื่อปีสำหรับเกมสปีเอเล เลเบน",
    "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ück - Welcome in Vienna\"",
    "question_en": "Name the film title for wohin und zurück - welcome in vienna",
    "question_th": "ตั้งชื่อชื่อภาพยนตร์เรื่อง wohin und zurück - ยินดีต้อนรับสู่เวียนนา",
    "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_en": "Name the language for kunar",
    "question_th": "ตั้งชื่อภาษาสำหรับคูนาร์",
    "context": "CREATE TABLE table_16278349_1 (language VARCHAR, province VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_16278349_1 WHERE province = \"Samangan\"",
    "question_en": "Name the notes for samangan",
    "question_th": "ตั้งชื่อบันทึกย่อสำหรับ samangan",
    "context": "CREATE TABLE table_16278349_1 (notes VARCHAR, province VARCHAR)"
  },
  {
    "answer": "SELECT un_region FROM table_16278349_1 WHERE population = 3314000",
    "question_en": "Name the un region for 3314000 population",
    "question_th": "ตั้งชื่อภูมิภาค un สำหรับประชากร 3314000 คน",
    "context": "CREATE TABLE table_16278349_1 (un_region VARCHAR, population VARCHAR)"
  },
  {
    "answer": "SELECT area__km²_ FROM table_16278349_1 WHERE map__number = 24",
    "question_en": "Name the area for map # 24",
    "question_th": "ตั้งชื่อพื้นที่สำหรับแผนที่ # 24",
    "context": "CREATE TABLE table_16278349_1 (area__km²_ VARCHAR, map__number VARCHAR)"
  },
  {
    "answer": "SELECT un_region FROM table_16278349_1 WHERE population = 378000",
    "question_en": "Name the un region for 378000 population",
    "question_th": "ตั้งชื่อภูมิภาค un สำหรับประชากร 378,000 คน",
    "context": "CREATE TABLE table_16278349_1 (un_region VARCHAR, population VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(population) FROM table_16278825_1 WHERE towns__villages = 217",
    "question_en": "NJame the total number of population for towns/villages for 217",
    "question_th": "NJame จำนวนประชากรรวมของเมือง/หมู่บ้าน จำนวน 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_en": "Name the towns/villages for budapest",
    "question_th": "ตั้งชื่อเมือง/หมู่บ้านสำหรับบูดาเปสต์",
    "context": "CREATE TABLE table_16278825_1 (towns__villages VARCHAR, county_seat VARCHAR)"
  },
  {
    "answer": "SELECT MIN(area__km²_) FROM table_16278825_1 WHERE name_of_county = \"Vas\"",
    "question_en": "Name the least area for vas",
    "question_th": "ตั้งชื่อพื้นที่น้อยที่สุดสำหรับวาส",
    "context": "CREATE TABLE table_16278825_1 (area__km²_ INTEGER, name_of_county VARCHAR)"
  },
  {
    "answer": "SELECT points_won FROM table_1628607_5 WHERE year = \"1992\"",
    "question_en": "When the year was 1992, what were the points won?",
    "question_th": "เมื่อปี 2535 ได้คะแนนเท่าไหร่?",
    "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–0–0 won w/ P. Creamer 3&2\"",
    "question_en": "When the foursome was w-l-h is 1–0–0 won w/ p. creamer 3&2, what was the points %?",
    "question_th": "เมื่อสี่คนเป็น wlh 1–0–0 ชนะด้วย p ครีมเทียม 3&2 มีกี่คะแนน %?",
    "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_en": "What was the foursome's record in 2002?",
    "question_th": "บันทึกของสี่คนในปี 2545 คืออะไร?",
    "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_en": "What was the length time of the 3.5 release?",
    "question_th": "เวอร์ชัน 3.5 ปล่อยมานานแค่ไหนแล้ว?",
    "context": "CREATE TABLE table_16279520_1 (length VARCHAR, release VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_16279520_1 WHERE release = \"1.1\"",
    "question_en": "What is the title of the 1.1 realease?",
    "question_th": "เวอร์ชัน 1.1 มีชื่อว่าอะไร?",
    "context": "CREATE TABLE table_16279520_1 (title VARCHAR, release VARCHAR)"
  },
  {
    "answer": "SELECT series FROM table_16279520_1 WHERE release = \"3.5\"",
    "question_en": "Under what series was the 3.5 release?",
    "question_th": "3.5 เปิดตัวภายใต้ซีรีส์ใด",
    "context": "CREATE TABLE table_16279520_1 (series VARCHAR, release VARCHAR)"
  },
  {
    "answer": "SELECT release FROM table_16279520_1 WHERE timeline = \"Season 2\"",
    "question_en": "What is the releases number under Season 2?",
    "question_th": "หมายเลขการเผยแพร่ภายใต้ซีซั่น 2 คืออะไร?",
    "context": "CREATE TABLE table_16279520_1 (release VARCHAR, timeline VARCHAR)"
  },
  {
    "answer": "SELECT capital FROM table_16278894_1 WHERE county = \"Bungoma\"",
    "question_en": "What is the capital of Bungoma county?",
    "question_th": "เมืองหลวงของเทศมณฑลบุงโกมะคืออะไร?",
    "context": "CREATE TABLE table_16278894_1 (capital VARCHAR, county VARCHAR)"
  },
  {
    "answer": "SELECT capital FROM table_16278894_1 WHERE county = \"Uasin Gishu\"",
    "question_en": "What is the capital of Uasin Gishu county?",
    "question_th": "เมืองหลวงของเทศมณฑล Uasin Gishu คืออะไร?",
    "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_en": "In what former province was the area 694.9 kilometers squared?",
    "question_th": "เดิมมีเนื้อที่ 694.9 ตารางกิโลเมตรที่จังหวัดใด",
    "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_en": "How many numbers were listed under area with a population of 240075 as of 2009?",
    "question_th": "มีตัวเลขจำนวนเท่าใดที่ระบุไว้ในพื้นที่ที่มีประชากร 24,0075 คน ณ ปี 2552",
    "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_en": "What was the population in Kisumu county as of 2009?",
    "question_th": "ประชากรในเขต Kisumu ณ ปี 2552 เป็นจำนวนเท่าใด",
    "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_en": "What capital's county had a population of 730129 as of 2009?",
    "question_th": "มณฑลในเมืองหลวงใดมีประชากร 730129 คน ณ ปี 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_en": "Name the dates for margin of victory being 5 strokes",
    "question_th": "ตั้งชื่อวันที่ส่วนต่างของชัยชนะเป็น 5 จังหวะ",
    "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_en": "Name the champion for  london hunt and country club ( london , on )",
    "question_th": "ตั้งชื่อแชมป์รายการ 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_en": "What was the evening gown score for the woman who scored 7.600 (9) in her interview?",
    "question_th": "คะแนนชุดราตรีของผู้หญิงที่ได้คะแนน 7.600 (9) ในการสัมภาษณ์เป็นเท่าใด",
    "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_en": "What was the swimsuit score for the one who had a semifinal average of 8.759 (5)?",
    "question_th": "คะแนนชุดว่ายน้ำของผู้ที่มีคะแนนเฉลี่ยรอบรองชนะเลิศอยู่ที่ 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_en": "What was the evening gown score for the one who had a preliminary average of 8.121 (8)?",
    "question_th": "คะแนนชุดราตรีของผู้ที่มีคะแนนเฉลี่ยเบื้องต้น 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_en": "What was the preliminary average for the one who had a semifinal average of 8.966 (3)?",
    "question_th": "ค่าเฉลี่ยเบื้องต้นของคนที่มีค่าเฉลี่ยรอบรองชนะเลิศอยู่ที่ 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_en": "What was the preliminary average for Miss Mississippi?",
    "question_th": "ค่าเฉลี่ยเบื้องต้นของมิสซิสซิปปี้คือเท่าใด",
    "context": "CREATE TABLE table_16323766_3 (preliminary_average VARCHAR, state VARCHAR)"
  },
  {
    "answer": "SELECT preliminary_average FROM table_16323766_3 WHERE state = \"Maryland\"",
    "question_en": "What was the preliminary average for Miss Maryland?",
    "question_th": "ค่าเฉลี่ยเบื้องต้นของมิสแมรีแลนด์คือเท่าไร?",
    "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_en": "What day was the gross sales $1,271,451?",
    "question_th": "ยอดขายรวม 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_en": "What is the sellout % when the gross sales is $1,727,400?",
    "question_th": "% การขายเมื่อยอดขายรวมอยู่ที่ 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_en": "Who many dates are in position 9 and the sellout is 81%?",
    "question_th": "มีใครอยู่ในตำแหน่งที่ 9 กี่วันและมียอดขายถึง 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_en": "What is the position of tickets sold/available when the sellout is 82%?",
    "question_th": "ตำแหน่งของตั๋วที่ขาย/มีจำหน่ายเมื่อขายหมดคือ 82% คืออะไร?",
    "context": "CREATE TABLE table_16331025_2 (tickets_sold___available VARCHAR, sellout___percentage_ VARCHAR)"
  },
  {
    "answer": "SELECT probable_future FROM table_16337329_5 WHERE imperative = \"गरेस् gares 'may you do'\"",
    "question_en": "Name the probably futures for गरेस् gares 'may you do'",
    "question_th": "ตั้งชื่ออนาคตที่เป็นไปได้ของ गरेस् gares 'คุณทำได้ไหม'",
    "context": "CREATE TABLE table_16337329_5 (probable_future VARCHAR, imperative VARCHAR)"
  },
  {
    "answer": "SELECT imperative FROM table_16337329_5 WHERE past_habitual = \"गरिस् garis 'you did'\"",
    "question_en": "Name the imperative for  गरिस् garis 'you did'",
    "question_th": "ตั้งชื่อความจำเป็นสำหรับ गरिस् garis 'คุณทำ'",
    "context": "CREATE TABLE table_16337329_5 (imperative VARCHAR, past_habitual VARCHAR)"
  },
  {
    "answer": "SELECT past_habitual FROM table_16337329_5 WHERE probable_future = \"गर्छस् garchas 'you (will) do'\"",
    "question_en": "Name the past habitual for गर्छस् garchas 'you (will) do'",
    "question_th": "ตั้งชื่อนิสัยในอดีตของ गर्छस् garchas 'คุณ (จะ) ทำ'",
    "context": "CREATE TABLE table_16337329_5 (past_habitual VARCHAR, probable_future VARCHAR)"
  },
  {
    "answer": "SELECT past_habitual FROM table_16337329_5 WHERE probable_future = \"गर्छ garcha 'he does'\"",
    "question_en": "Name the past habitual for  गर्छ garcha 'he does'",
    "question_th": "ตั้งชื่ออดีตที่เป็นนิสัยของ गर्छ garcha 'เขาทำ'",
    "context": "CREATE TABLE table_16337329_5 (past_habitual VARCHAR, probable_future VARCHAR)"
  },
  {
    "answer": "SELECT injunctive FROM table_16337329_5 WHERE past_habitual = \"गर्यो garyo 'he did'\"",
    "question_en": "Name the injunctive for गर्यो garyo 'he did'",
    "question_th": "ตั้งชื่อคำสั่งห้ามสำหรับ गर्यो garyo 'เขาทำ'",
    "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_en": "How many years did he have an average finish of 29.2?",
    "question_th": "เขาจบเฉลี่ย 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_en": "How many years did he finish in 59th?",
    "question_th": "จบปี 59 กี่ปีครับ?",
    "context": "CREATE TABLE table_1637041_2 (avg_start VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(starts) FROM table_1637041_2 WHERE year = 2003",
    "question_en": "How many instances do you see the year 2003?",
    "question_th": "คุณเห็นเหตุการณ์ปี 2546 กี่ครั้ง?",
    "context": "CREATE TABLE table_1637041_2 (starts VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT MAX(top_10) FROM table_1637041_2 WHERE position = \"63rd\"",
    "question_en": "What is the maximum number of top 10s when he finished in 63rd?",
    "question_th": "จำนวนสูงสุดของ 10 อันดับแรกเมื่อเขาจบในปี 63 คือเท่าไร?",
    "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_en": "What are the average start(s) when he had $1,663,868?",
    "question_th": "การเริ่มต้นโดยเฉลี่ยเมื่อเขามีเงิน $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_en": "What was the position in the season when the average start is 9.2?",
    "question_th": "ตำแหน่งในฤดูกาลเมื่อออกสตาร์ตเฉลี่ยอยู่ที่ 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_en": "What is the average start for the season with $7,220 in winnings?",
    "question_th": "การเริ่มต้นฤดูกาลโดยเฉลี่ยด้วยเงินรางวัล 7,220 ดอลลาร์เป็นเท่าใด",
    "context": "CREATE TABLE table_1637041_6 (avg_start VARCHAR, winnings VARCHAR)"
  },
  {
    "answer": "SELECT winnings FROM table_1637041_6 WHERE avg_finish = \"11.1\"",
    "question_en": "What are the winnings for the season where the average finish is 11.1?",
    "question_th": "ชัยชนะในฤดูกาลที่จบเฉลี่ยอยู่ที่ 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_en": "What is the maximum number of wins in the season with 22 starts?",
    "question_th": "จำนวนชัยชนะสูงสุดในฤดูกาลด้วยการออกสตาร์ท 22 ครั้งคือเท่าใด?",
    "context": "CREATE TABLE table_1637041_6 (wins INTEGER, starts VARCHAR)"
  },
  {
    "answer": "SELECT all_games FROM table_16372244_1 WHERE team = \"Maryland\"",
    "question_en": "What is the all games for Maryland?",
    "question_th": "เกมทั้งหมดสำหรับแมริแลนด์คืออะไร?",
    "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_en": "What is the fare to Kalamazoo during the time frame when Saginaw's was $481.39?",
    "question_th": "ค่าโดยสารไปคาลามาซูในช่วงเวลาที่ Saginaw's อยู่ที่ 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_en": "When Lansing's fare is $433.59, what is the Detroit fare?",
    "question_th": "เมื่อค่าโดยสารของ Lansing อยู่ที่ 433.59 ดอลลาร์ ค่าโดยสารของ Detroit จะเป็นเท่าใด",
    "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_en": "At a Saginaw fare of $470.47, what is the fare to Lansing?",
    "question_th": "ด้วยค่าโดยสาร Saginaw ที่ 470.47 ดอลลาร์ ค่าโดยสารไป 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_en": "During the year when Lansing's fare is $433.59, what is the fare to Kalamazoo?",
    "question_th": "ในระหว่างปีที่ค่าโดยสารของ Lansing อยู่ที่ 433.59 ดอลลาร์ ค่าโดยสารไป 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_en": "When Saginaw's fare is $470.47, what was the fare to Grand Rapids?",
    "question_th": "เมื่อค่าโดยสารของ Saginaw อยู่ที่ 470.47 ดอลลาร์ ค่าโดยสารไป 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_en": "When Grand Rapids's fare was $377.29, what is the fare to Detroit?",
    "question_th": "เมื่อค่าโดยสารของ Grand Rapids อยู่ที่ 377.29 ดอลลาร์ ค่าโดยสารไปดีทรอยต์คือเท่าไร",
    "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_en": "Name the maximum enrollment for niagara university",
    "question_th": "ตั้งชื่อการลงทะเบียนสูงสุดสำหรับมหาวิทยาลัยไนแอการา",
    "context": "CREATE TABLE table_16383772_1 (enrollment INTEGER, school VARCHAR)"
  },
  {
    "answer": "SELECT primary_conference FROM table_16383772_1 WHERE school = \"St. Bonaventure University\"",
    "question_en": "Name the primary conference for st. bonaventure university",
    "question_th": "ตั้งชื่อการประชุมใหญ่สำหรับ st. มหาวิทยาลัยโบนาเวนเจอร์",
    "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_en": "Name the total number of nicknames for st. bonaventure university",
    "question_th": "ตั้งชื่อจำนวนชื่อเล่นทั้งหมดสำหรับเซนต์ มหาวิทยาลัยโบนาเวนเจอร์",
    "context": "CREATE TABLE table_16383772_1 (nickname VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(affiliation) FROM table_16383772_1 WHERE enrollment = 14898",
    "question_en": "Name the total number of affiliation for enrollment being 14898",
    "question_th": "ตั้งชื่อจำนวนรวมของสังกัดสำหรับการลงทะเบียนเป็น 14898",
    "context": "CREATE TABLE table_16383772_1 (affiliation VARCHAR, enrollment VARCHAR)"
  },
  {
    "answer": "SELECT acc_home FROM table_16372911_1 WHERE acc__percentage = \".813\"",
    "question_en": "what was the ACC home game record for the team who's ACC winning percentage was .813?",
    "question_th": "สถิติเกมในบ้านของ ACC สำหรับทีมที่ ACC ชนะเปอร์เซ็นต์คือ .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_en": "Who wrote the episode for s02 e07?",
    "question_th": "ใครเป็นคนเขียนตอนของ 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_en": "Who directed the episode for s02 e08?",
    "question_th": "ใครเป็นผู้กำกับตอนของ 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_en": "Who directed the episode with the production code 209?",
    "question_th": "ใครกำกับตอนด้วยรหัสการผลิต 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_en": "How many schools have the team nickname bobcats? ",
    "question_th": " มีโรงเรียนกี่แห่งที่มีชื่อเล่นว่า Bobcats?",
    "context": "CREATE TABLE table_16384648_2 (institution VARCHAR, team_nickname VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_16384648_2 WHERE team_nickname = \"Bearcats\"",
    "question_en": "Which city has the team nickname bearcats? ",
    "question_th": " เมืองใดมีชื่อเล่นว่า 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_en": "What year did the university of Pittsburgh school join the hockey league? ",
    "question_th": " โรงเรียนของมหาวิทยาลัย Pittsburgh เข้าร่วมลีกฮอกกี้ในปีใด",
    "context": "CREATE TABLE table_16384648_2 (joined_tschl VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT MIN(joined_tschl) FROM table_16384648_2",
    "question_en": "What's the earliest year anybody joined the hockey league? ",
    "question_th": " มีใครเข้าร่วมลีกฮ็อกกี้ในปีแรกสุดคือปีใด",
    "context": "CREATE TABLE table_16384648_2 (joined_tschl INTEGER)"
  },
  {
    "answer": "SELECT location FROM table_16384648_2 WHERE team_website = \"Cincinnati Hockey\"",
    "question_en": "Which city has the cincinnati hockey website?",
    "question_th": "เมืองใดมีเว็บไซต์ฮอกกี้ซินซินเนติ",
    "context": "CREATE TABLE table_16384648_2 (location VARCHAR, team_website VARCHAR)"
  },
  {
    "answer": "SELECT MIN(capacity) FROM table_16384648_2 WHERE team_nickname = \"Flyers\"",
    "question_en": "For the flyers, what's the minimum capacity? ",
    "question_th": " สำหรับใบปลิว ความจุขั้นต่ำคือเท่าใด",
    "context": "CREATE TABLE table_16384648_2 (capacity INTEGER, team_nickname VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(pinyin) FROM table_1638437_2 WHERE simplified = \"河西区\"",
    "question_en": "Name the number of pinyin where simplified is 河西区",
    "question_th": "ตั้งชื่อหมายเลขพินอินโดยที่ตัวย่อคือ 河西区",
    "context": "CREATE TABLE table_1638437_2 (pinyin VARCHAR, simplified VARCHAR)"
  },
  {
    "answer": "SELECT pinyin FROM table_1638437_2 WHERE population = 44617",
    "question_en": "Name the pinyin for where population is 44617",
    "question_th": "ตั้งชื่อพินอินสำหรับจำนวนประชากร 44617",
    "context": "CREATE TABLE table_1638437_2 (pinyin VARCHAR, population VARCHAR)"
  },
  {
    "answer": "SELECT pinyin FROM table_1638437_2 WHERE area = \"487\"",
    "question_en": "Name the pinyin for 487 area",
    "question_th": "ตั้งชื่อพินอินสำหรับพื้นที่ 487",
    "context": "CREATE TABLE table_1638437_2 (pinyin VARCHAR, area VARCHAR)"
  },
  {
    "answer": "SELECT traditional FROM table_1638437_2 WHERE population = 74779",
    "question_en": "Name the traditional for population 74779",
    "question_th": "ตั้งชื่อตามประเพณีสำหรับประชากร 74779",
    "context": "CREATE TABLE table_1638437_2 (traditional VARCHAR, population VARCHAR)"
  },
  {
    "answer": "SELECT english_name FROM table_1638437_2 WHERE simplified = \"崖城镇\"",
    "question_en": "Name the english name for  崖城镇",
    "question_th": "ตั้งชื่อชื่อภาษาอังกฤษของ 崖城镇",
    "context": "CREATE TABLE table_1638437_2 (english_name VARCHAR, simplified VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_16387700_1 WHERE away_team = \"Richmond\"",
    "question_en": "Name the date for richmond",
    "question_th": "ตั้งชื่อวันที่สำหรับริชมอนด์",
    "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_en": "Name the most crowd for saturday 16 february",
    "question_th": "รายชื่อคนเยอะที่สุดในวันเสาร์ที่ 16 กุมภาพันธ์",
    "context": "CREATE TABLE table_16387700_1 (crowd INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_16388230_1 WHERE away_team = \"West Coast\"",
    "question_en": "What home team played the West Coast away team?",
    "question_th": "ทีมเจ้าบ้านใดเล่นเป็นทีมเยือนฝั่งตะวันตก?",
    "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_en": "How many days did Hawthorn play as a home team?",
    "question_th": "ฮอว์ธอร์นเล่นเป็นเจ้าบ้านกี่วัน?",
    "context": "CREATE TABLE table_16388230_1 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT ground FROM table_16388230_1 WHERE away_team = \"Richmond\"",
    "question_en": "The away team of Richmond played on what grounds?",
    "question_th": "ทีมเยือนริชมอนด์เล่นสนามอะไร?",
    "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_en": "What was the away team's score at the venue football park?",
    "question_th": "คะแนนของทีมเยือนที่สนามฟุตบอลคือเท่าไร?",
    "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_en": "What are the scores for games where the home team is Adelaide?",
    "question_th": "เกมเจ้าบ้านคืออเดเลดมีสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_16387953_1 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_16387953_1 WHERE ground = \"Football Park\"",
    "question_en": "On what dates where games played at Football Park?",
    "question_th": "ที่ 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_en": "What was the home team score against Collingwood?",
    "question_th": "สกอร์ของเจ้าบ้านกับคอลลิงวูดเป็นเท่าไหร่?",
    "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_en": "Who was the away team playing at Carlton?",
    "question_th": "ทีมเยือนที่เล่นให้คาร์ลตันคือใคร?",
    "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_en": "What did the home team score against Richmond?",
    "question_th": "เจ้าบ้านได้คะแนนอะไรกับริชมอนด์?",
    "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_en": "What was the maximum crowd size against St Kilda?",
    "question_th": "จำนวนฝูงชนสูงสุดในการเจอกับเซนต์คิลดาคือเท่าใด?",
    "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_en": "What to Footscray score at home?",
    "question_th": "Footscray ทำคะแนนอะไรในบ้าน?",
    "context": "CREATE TABLE table_16387653_1 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_16388439_3 WHERE ground = \"Bundaberg Rum Stadium\"",
    "question_en": "Name the date for bundaberg rum stadium",
    "question_th": "ตั้งชื่อวันที่สนามกีฬาเหล้ารัมบันดาเบิร์ก",
    "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_en": "Name the home team score for brisbane lions",
    "question_th": "ทายผลสกอร์ทีมเจ้าบ้าน บริสเบน ไลออนส์",
    "context": "CREATE TABLE table_16388439_3 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_16388439_3 WHERE ground = \"Football Park\"",
    "question_en": "Name the home team for football park",
    "question_th": "ตั้งชื่อทีมเหย้าสำหรับสวนฟุตบอล",
    "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_en": "Name the away team score for carlton",
    "question_th": "ทายผลคะแนนทีมเยือนของคาร์ลตัน",
    "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_en": "Name the date for adelaide for westpac stadium",
    "question_th": "ตั้งชื่อวันที่แอดิเลดสำหรับสนามกีฬา Westpac",
    "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_en": "Name the total number of ground for essendon",
    "question_th": "ตั้งชื่อจำนวนพื้นดินทั้งหมดสำหรับ 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_en": "Name the most crowd for essendon",
    "question_th": "ตั้งชื่อ 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_en": "When ground is manuka oval what is the home team score?",
    "question_th": "เมื่อสนามมานูก้ารีสกอร์เจ้าบ้านเท่าไหร่?",
    "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_en": "When the crowd was 8642 what was the away team's score?",
    "question_th": "เมื่อจ่าฝูงเป็น 8642 สกอร์ทีมเยือนได้เท่าไหร่?",
    "context": "CREATE TABLE table_16388439_2 (away_team VARCHAR, crowd VARCHAR)"
  },
  {
    "answer": "SELECT ground FROM table_16388545_1 WHERE crowd = 22537",
    "question_en": "Which location had an attendance of 22537?",
    "question_th": "สถานที่ใดมีผู้เข้าร่วม 22,537 คน?",
    "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_en": "What was the away team's score of at the game of telstra stadium?",
    "question_th": "คะแนนของทีมเยือนในเกมที่เทลสตรา สเตเดี้ยมเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_16388545_1 (away_team VARCHAR, ground VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_16388545_1 WHERE away_team = \"Carlton\"",
    "question_en": "When the away team was Carlton, who was the home team?",
    "question_th": "เมื่อทีมเยือนคือคาร์ลตันเจ้าบ้านคือใคร?",
    "context": "CREATE TABLE table_16388545_1 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT average FROM table_16390001_2 WHERE swimsuit = \"8.266\"",
    "question_en": "What was the average for contestants with a swimsuit score of 8.266?",
    "question_th": "ผู้เข้าแข่งขันที่มีคะแนนชุดว่ายน้ำเฉลี่ยอยู่ที่ 8.266 เป็นเท่าใด",
    "context": "CREATE TABLE table_16390001_2 (average VARCHAR, swimsuit VARCHAR)"
  },
  {
    "answer": "SELECT interview FROM table_16390001_2 WHERE average = \"9.090\"",
    "question_en": "What are the interview scores for contestants whose average is 9.090?",
    "question_th": "คะแนนสัมภาษณ์ผู้เข้าแข่งขันเฉลี่ย 9.090 เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_16390001_2 (interview VARCHAR, average VARCHAR)"
  },
  {
    "answer": "SELECT average FROM table_16390001_2 WHERE country = \"Pennsylvania\"",
    "question_en": "What are the average scores of contestants whose home state is Pennsylvania?",
    "question_th": "คะแนนเฉลี่ยของผู้แข่งขันที่มีรัฐบ้านเกิดคือเพนซิลเวเนียคือเท่าไร",
    "context": "CREATE TABLE table_16390001_2 (average VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT evening_gown FROM table_16390001_2 WHERE average = \"9.266\"",
    "question_en": "What are the evening gown scores of contestants whose average is 9.266?",
    "question_th": "คะแนนชุดราตรีของผู้เข้าแข่งขันเฉลี่ย 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_en": "What are the average scores of contestants whose interview score is 8.011?",
    "question_th": "คะแนนเฉลี่ยของผู้เข้าแข่งขันที่มีคะแนนสัมภาษณ์คือ 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_en": "What are the home team scores when richmond is the home team?",
    "question_th": "เจ้าบ้านสกอร์เท่าไหร่เมื่อริชมอนด์เป็นเจ้าบ้าน?",
    "context": "CREATE TABLE table_16388506_1 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team AS score FROM table_16388506_1 WHERE away_team = \"Fremantle\"",
    "question_en": "What are the home team scores when fremantle is the away team?",
    "question_th": "เจ้าบ้านได้คะแนนเท่าไหร่เมื่อฟรีแมนเทิลเป็นทีมเยือน?",
    "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_en": "What is the largest crowd when essendon is the home team?",
    "question_th": "แฟนบอลเยอะที่สุดเมื่อเอสเซนดอนเป็นเจ้าบ้าน?",
    "context": "CREATE TABLE table_16388506_1 (crowd INTEGER, home_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_16388506_1 WHERE ground = \"Subiaco Oval\"",
    "question_en": "Who are the away teams when subiaco oval was the grounds?",
    "question_th": "ทีมเยือนเมื่อซูเบียโกโอวัลเป็นสนามคือใคร?",
    "context": "CREATE TABLE table_16388506_1 (away_team VARCHAR, ground VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_16388478_4 WHERE away_team = \"Carlton\"",
    "question_en": "Who was the home team when the away team is Carlton?",
    "question_th": "เจ้าบ้านคือใครเมื่อทีมเยือนคือคาร์ลตัน?",
    "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_en": "What is the home team score where the home team is Fremantle?",
    "question_th": "คะแนนเจ้าบ้านคือเจ้าบ้านฟรีแมนเทิลเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_16388478_4 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team AS score FROM table_16388478_4 WHERE crowd = 5391",
    "question_en": "What was the away team score for the game with a crowd of 5391?",
    "question_th": "สกอร์ทีมเยือนในเกมกับจ่าฝูง 5391 เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_16388478_4 (away_team VARCHAR, crowd VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_16388478_4 WHERE home_team = \"Adelaide\"",
    "question_en": "What date was Adelaide the home team?",
    "question_th": "แอดิเลดเป็นเจ้าบ้านวันไหน?",
    "context": "CREATE TABLE table_16388478_4 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(location) FROM table_16403890_1 WHERE institution = \"Elon University\"",
    "question_en": "How many locations does Elon University have?",
    "question_th": "มหาวิทยาลัย Elon มีสถานที่กี่แห่ง?",
    "context": "CREATE TABLE table_16403890_1 (location VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT MIN(enrollment) FROM table_16403890_1 WHERE affiliation = \"Private/Catholic\"",
    "question_en": "Private/Catholic school's minimum enrollment is?",
    "question_th": "การลงทะเบียนขั้นต่ำของโรงเรียนเอกชน/คาทอลิกคือ?",
    "context": "CREATE TABLE table_16403890_1 (enrollment INTEGER, affiliation VARCHAR)"
  },
  {
    "answer": "SELECT institution FROM table_16403890_1 WHERE team_nickname = \"Colonials\"",
    "question_en": "Which school has the mascot of the Colonials?",
    "question_th": "โรงเรียนไหนมีตัวนำโชคของชาวอาณานิคม?",
    "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_en": "What is the socket location for sSPEC number sl3f7(kc0)sl3fj(kc0)?",
    "question_th": "ตำแหน่งซ็อกเก็ตสำหรับหมายเลข sSPEC 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_en": "What is the release date of part 80525py500512bx80525u500512bx80525u500512e?",
    "question_th": "วันที่วางจำหน่ายของชิ้นส่วน 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_en": "How many release prices are there for the Pentium iii 550?",
    "question_th": "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_en": "What is the model number with a release price of $496?",
    "question_th": "หมายเลขรุ่นที่มีราคาวางจำหน่ายอยู่ที่ 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_en": "What is the l2 cache for the model with a release price of $669?",
    "question_th": "l2 cache สำหรับรุ่นที่มีราคาวางจำหน่ายอยู่ที่ 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_en": "What day(s) did they play on week 2?",
    "question_th": "สัปดาห์ที่ 2 พวกเขาเล่นวันไหน?",
    "context": "CREATE TABLE table_1639689_2 (date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT kickoff FROM table_1639689_2 WHERE date = \"Monday, May 13\"",
    "question_en": "What was the kickoff time on monday, may 13?",
    "question_th": "วันจันทร์ที่ 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_en": "what is the latest episode in season 2 directed by jamie babbit?",
    "question_th": "ตอนล่าสุดในซีซั่น 2 กำกับโดย 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_en": "what are the air dates for episodes with the production code 08-02-214",
    "question_th": "กำหนดออกอากาศวันไหน รหัสการผลิต 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_en": "what is the title of episode 28",
    "question_th": "ตอนที่ 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_en": "What is the dpi of a scanner with the mm dimensions 280 x 95 x 40?",
    "question_th": "dpi ของเครื่องสแกนที่มีขนาด 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_en": "What is the maximum pages per minute for the Xerox Travel Scanner 100?",
    "question_th": "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_en": "What interface is used on the scanner that has a 36 pages per minute?",
    "question_th": "สแกนเนอร์ใช้อินเทอร์เฟซใดที่มีความเร็ว 36 หน้าต่อนาที",
    "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_en": "What are the mm dimensions of the Plustek Mobileoffice D28 Corporate?",
    "question_th": "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_en": "What are the mm dimensions for the Fujitsu fi-6130 a4 Series Scanner?",
    "question_th": "เครื่องสแกน Fujitsu fi-6130 a4 Series มีขนาด mm เท่าไร?",
    "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_en": "What is the dpi for the scanner with a max page size of 216mm x 355mm?",
    "question_th": "dpi สำหรับสแกนเนอร์ที่มีขนาดหน้าสูงสุดคือ 216 มม. x 355 มม.",
    "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_en": "which country won swimming track & field when lexington won swimming and madison won volleyball",
    "question_th": "ประเทศใดชนะกรีฑาว่ายน้ำ เมื่อเล็กซิงตันชนะว่ายน้ำ และเมดิสันชนะวอลเลย์บอล",
    "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_en": "how many teams won at golf when wooster won soccer",
    "question_th": "มีกี่ทีมที่ชนะการแข่งขันกอล์ฟเมื่อวูสเตอร์ชนะฟุตบอล",
    "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_en": "Who won soccer when madison won volleyball, lexington won cross country and orrville won softball ",
    "question_th": " ใครชนะฟุตบอลเมื่อเมดิสันชนะวอลเลย์บอล เล็กซิงตันชนะครอสคันทรี และออร์วิลล์ชนะซอฟต์บอล",
    "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_en": "Who won volleyball when west holmes won basketball and wooster won swimming in 2011-12",
    "question_th": "ใครชนะวอลเลย์บอลเมื่อเวสต์โฮล์มส์ชนะบาสเก็ตบอลและวูสเตอร์ชนะว่ายน้ำในปี 2554-55",
    "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_en": "who won tennis when ashland won softball and wooster won volleybal",
    "question_th": "ผู้ชนะเทนนิสเมื่อแอชแลนด์ชนะซอฟต์บอล และวูสเตอร์ชนะวอลเลย์บอล",
    "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_en": "who won basketball when ashland won track & field and cross country",
    "question_th": "ผู้ชนะบาสเก็ตบอลเมื่อแอชแลนด์ชนะกรีฑาและครอสคันทรี",
    "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_en": "What is the location of the school established in 1923",
    "question_th": "ที่ตั้งของโรงเรียนที่ก่อตั้งเมื่อ พ.ศ. 2466 คืออะไร",
    "context": "CREATE TABLE table_16432543_1 (location VARCHAR, established VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(enrollment) FROM table_16432543_1 WHERE nickname = \"Blue Hens\"",
    "question_en": "Total enrollment at the school with the nickname Blue Hens",
    "question_th": "จำนวนการลงทะเบียนทั้งหมดที่โรงเรียนที่มีชื่อเล่นว่า Blue Hens",
    "context": "CREATE TABLE table_16432543_1 (enrollment VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT nickname FROM table_16432543_1 WHERE established = 1773",
    "question_en": "Nickname of the school established in 1773",
    "question_th": "ชื่อเล่นของโรงเรียนที่ก่อตั้งในปี พ.ศ. 2316",
    "context": "CREATE TABLE table_16432543_1 (nickname VARCHAR, established VARCHAR)"
  },
  {
    "answer": "SELECT established FROM table_16432543_1 WHERE institution = \"Rowan University\"",
    "question_en": "What is the year Rowan University was established",
    "question_th": "มหาวิทยาลัย Rowan ก่อตั้งขึ้นเมื่อปีใด",
    "context": "CREATE TABLE table_16432543_1 (established VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(nickname) FROM table_16432543_1 WHERE location = \"Newark, DE\"",
    "question_en": "How many nicknames does the school in Newark, DE have",
    "question_th": "โรงเรียนในนวร์ก รัฐเดลาแวร์ มีชื่อเล่นกี่ชื่อ",
    "context": "CREATE TABLE table_16432543_1 (nickname VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_16432543_1 WHERE nickname = \"Mountaineers\"",
    "question_en": "Location of the school with the nickname Mountaineers",
    "question_th": "ที่ตั้งของโรงเรียนที่มีชื่อเล่นว่านักปีนเขา",
    "context": "CREATE TABLE table_16432543_1 (location VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT written_by FROM table_16432167_1 WHERE production_code = \"942A\"",
    "question_en": "Who wrote the episode with the production code of 942A?",
    "question_th": "ใครเป็นคนเขียนตอนด้วยรหัสการผลิต 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_en": "What is the English title for the official number 22 episode?",
    "question_th": "ตอนที่ 22 ตอนที่ 22 อย่างเป็นทางการมีชื่อภาษาอังกฤษว่าอะไร?",
    "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_en": "Which CFL team did the player from British Columbia get drafted to",
    "question_th": "ทีม CFL ใดที่ผู้เล่นจากบริติชโคลัมเบียถูกดราฟท์ไป",
    "context": "CREATE TABLE table_16441561_5 (cfl_team VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_16441561_5 WHERE college = \"Laval\"",
    "question_en": "Which positions had players from Laval college",
    "question_th": "ตำแหน่งไหนมีผู้เล่นจากวิทยาลัยลาวาล",
    "context": "CREATE TABLE table_16441561_5 (position VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_16441561_5 WHERE player = \"Gene Stahl\"",
    "question_en": "What position did Gene Stahl play",
    "question_th": "ยีน สตาห์ล เล่นตำแหน่งไหน",
    "context": "CREATE TABLE table_16441561_5 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_16441561_5 WHERE position = \"DB\"",
    "question_en": "Which player played DB",
    "question_th": "ผู้เล่นคนไหนที่เล่น DB",
    "context": "CREATE TABLE table_16441561_5 (player VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT MIN(pick__number) FROM table_16441561_5 WHERE position = \"LB\"",
    "question_en": "Who was the lowest picked LB",
    "question_th": "ใครคือ 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_en": "How many players named Jeff Brown were drafted",
    "question_th": "มีผู้เล่นชื่อ Jeff Brown กี่คนที่ถูกเกณฑ์ทหาร",
    "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_en": "How many feet per second does a shell move where the height range is 23500?",
    "question_th": "กระสุนเคลื่อนที่ได้กี่ฟุตต่อวินาทีที่ความสูง 23,500?",
    "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_en": "If the gun used is the qf 12 pdr 12 cwt, what is the shell weight?",
    "question_th": "ถ้าปืนที่ใช้คือ qf 12 pdr 12 cwt น้ำหนักกระสุนเท่าไหร่?",
    "context": "CREATE TABLE table_16439764_1 (shell__lb_ VARCHAR, gun VARCHAR)"
  },
  {
    "answer": "SELECT time_to_ft__m__at_25°__seconds_ FROM table_16439764_1 WHERE shell__lb_ = \"12.5\" AND max_height__ft_ > 20000.0",
    "question_en": "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?",
    "question_th": "โดยที่ช่วงความสูงสูงกว่า 20,000.0 และน้ำหนักเปลือกคือ 12.5 อัตราส่วนเวลาต่อฟุตที่ 25 องศาคือเท่าใด",
    "context": "CREATE TABLE table_16439764_1 (time_to_ft__m__at_25°__seconds_ VARCHAR, shell__lb_ VARCHAR, max_height__ft_ VARCHAR)"
  },
  {
    "answer": "SELECT gun FROM table_16439764_1 WHERE time_to_ft__m__at_55°__seconds_ = \"18.8\"",
    "question_en": "What gun has a time to feet ratio of 18.8 at 55 degrees?",
    "question_th": "ปืนอะไรมีอัตราส่วนเวลาต่อฟุต 18.8 ที่ 55 องศา?",
    "context": "CREATE TABLE table_16439764_1 (gun VARCHAR, time_to_ft__m__at_55°__seconds_ VARCHAR)"
  },
  {
    "answer": "SELECT MAX(m_v_ft_s) FROM table_16439764_1 WHERE time_to_ft__m__at_55°__seconds_ = \"22.1\"",
    "question_en": "What is the maximum foot per second speed where time to feet ratio is 22.1 at 55 degrees?",
    "question_th": "ความเร็วสูงสุดฟุตต่อวินาทีคือเท่าใด โดยอัตราส่วนเวลาต่อฟุตคือ 22.1 ที่ 55 องศา",
    "context": "CREATE TABLE table_16439764_1 (m_v_ft_s INTEGER, time_to_ft__m__at_55°__seconds_ VARCHAR)"
  },
  {
    "answer": "SELECT m_v_ft_s FROM table_16439764_1 WHERE time_to_ft__m__at_25°__seconds_ = \"9.2\"",
    "question_en": "What is the foot per second speed where time to feet ratio is 9.2 at 25 degrees?",
    "question_th": "ความเร็วฟุตต่อวินาทีเป็นเท่าใด โดยที่อัตราส่วนเวลาต่อฟุตคือ 9.2 ที่ 25 องศา",
    "context": "CREATE TABLE table_16439764_1 (m_v_ft_s VARCHAR, time_to_ft__m__at_25°__seconds_ VARCHAR)"
  },
  {
    "answer": "SELECT skip FROM table_1644857_2 WHERE pf = 73",
    "question_en": "Who was skip for the country whose points for (PF) was 73?",
    "question_th": "ใครบ้างที่ข้ามไปประเทศที่มีคะแนน (PF) คือ 73?",
    "context": "CREATE TABLE table_1644857_2 (skip VARCHAR, pf VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(stolen_ends) FROM table_1644857_2 WHERE country = France",
    "question_en": "How many times is a score for stolen ends recorded for France?",
    "question_th": "คะแนนของการถูกขโมยถูกบันทึกไว้สำหรับฝรั่งเศสกี่ครั้ง?",
    "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_en": "How many ends were lost by the country whose points for (PF) was 87?",
    "question_th": "ประเทศที่มีคะแนน (PF) เท่ากับ 87 เสียไปกี่แต้ม?",
    "context": "CREATE TABLE table_1644857_2 (Ends INTEGER, pf VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(season) FROM table_16446652_1 WHERE treasurer = \"Dave Reid\"",
    "question_en": "How many seasons was Dave Reid treasurer?",
    "question_th": "เหรัญญิกของ Dave Reid อยู่กี่ฤดูกาล?",
    "context": "CREATE TABLE table_16446652_1 (season VARCHAR, treasurer VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_16446652_1 WHERE president = \"Jonny Leadbeater\"",
    "question_en": "When was Jonny Leadbeater President?",
    "question_th": "จอนนี่ ลีดบีเตอร์เป็นประธานเมื่อใด",
    "context": "CREATE TABLE table_16446652_1 (season VARCHAR, president VARCHAR)"
  },
  {
    "answer": "SELECT skip FROM table_1644876_2 WHERE stolen_ends = 14",
    "question_en": "Who was the skip with 14 stolen ends?",
    "question_th": "ใครคือผู้ข้ามที่ถูกขโมยไป 14 ตอนจบ?",
    "context": "CREATE TABLE table_1644876_2 (skip VARCHAR, stolen_ends VARCHAR)"
  },
  {
    "answer": "SELECT MIN(l) FROM table_1644876_2",
    "question_en": "What is the fewest number of losses?",
    "question_th": "ขาดทุนน้อยที่สุดคือเท่าไร?",
    "context": "CREATE TABLE table_1644876_2 (l INTEGER)"
  },
  {
    "answer": "SELECT shot__percentage FROM table_1644876_2 WHERE locale = Switzerland",
    "question_en": "What are the shot percentages for teams that played in switzerland?",
    "question_th": "เปอร์เซ็นต์การยิงของทีมที่เล่นในสวิตเซอร์แลนด์คือเท่าไร?",
    "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_en": "what is the minimum of 60 -64?",
    "question_th": "ขั้นต่ำ 60 -64 คือเท่าไร?",
    "context": "CREATE TABLE table_16457934_4 (Id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(province) FROM table_16489766_2 WHERE chinese = \"重庆\"",
    "question_en": "What province has the Chinese translation 重庆?",
    "question_th": "จังหวัดใดมีภาษาจีนแปล 重庆?",
    "context": "CREATE TABLE table_16489766_2 (province VARCHAR, chinese VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(administrative_population__2010_) FROM table_16489766_2 WHERE city = \"Shanghai\"",
    "question_en": "What is the total administrative population of Shanghai?",
    "question_th": "เซี่ยงไฮ้มีประชากรในเขตปกครองทั้งหมดเป็นจำนวนเท่าใด",
    "context": "CREATE TABLE table_16489766_2 (administrative_population__2010_ VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT MAX(administrative_population__2010_) FROM table_16489766_2 WHERE chinese = \"昆明\"",
    "question_en": "What is the maximum administrative population of the city with Chinese translation 昆明?",
    "question_th": "จำนวนประชากรในการบริหารสูงสุดของเมืองที่มีคำแปลเป็นภาษาจีน 昆明 คือเท่าใด",
    "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ángchūn\"",
    "question_en": "What is the total urban population of the city with the pinyin translation chángchūn?",
    "question_th": "จำนวนประชากรในเมืองทั้งหมดที่มีอักษรพินอินแปลว่า chángchūn เป็นเท่าใด",
    "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_en": "What player was on the Grizzlies from 2009-2013?",
    "question_th": "ผู้เล่นคนไหนใน Grizzlies ตั้งแต่ปี 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_en": "What nationality is the player who went to school at South Florida?",
    "question_th": "ผู้เล่นที่ไปโรงเรียนที่เซาท์ฟลอริดาคือสัญชาติใด",
    "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_en": "What position is the player who was on the Grizzlies from 1995-1996?",
    "question_th": "ผู้เล่นที่อยู่ในทีมกริซลี่ส์ระหว่างปี 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_en": "How may players played for the Grizzlies from 2000-2002?",
    "question_th": "ผู้เล่นอาจเล่นให้กับ Grizzlies ตั้งแต่ปี 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_en": "Name the miles for june 7",
    "question_th": "ตั้งชื่อไมล์สำหรับวันที่ 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_en": "Name the driver for race time being 2:34:21",
    "question_th": "ตั้งชื่อนักแข่งเวลาแข่งขันเป็น 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_en": "Name the driver for june 23 and team of penske racing",
    "question_th": "ตั้งชื่อนักแข่งประจำวันที่ 23 มิถุนายน และทีมเพนก์เรซซิ่ง",
    "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_en": "Who was the director for the episode in season #50?",
    "question_th": "ใครคือผู้กำกับสำหรับตอนในซีซั่นที่ 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_en": "How many directors were there in total for the episode with series #62?",
    "question_th": "มีผู้กำกับทั้งหมดกี่คนสำหรับตอนของซีรีส์ #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_en": "What are the nationalities of players who attended duke?",
    "question_th": "ผู้เล่นที่เข้าร่วม 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_en": "How many nationalities does athlete Casey Jacobsen have?",
    "question_th": "นักกีฬา Casey Jacobsen มีกี่สัญชาติ?",
    "context": "CREATE TABLE table_16494599_10 (nationality VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_16494599_10 WHERE school_club_team = \"Stanford\"",
    "question_en": "Who are the players that have attended Stanford?",
    "question_th": "ใครคือผู้เล่นที่ได้เข้าเรียนที่สแตนฟอร์ด?",
    "context": "CREATE TABLE table_16494599_10 (player VARCHAR, school_club_team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(player) FROM table_16494599_10 WHERE position = \"Guard\"",
    "question_en": "How many athletes play the position of guard?",
    "question_th": "มีนักกีฬากี่คนที่เล่นตำแหน่งผู้พิทักษ์?",
    "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_en": "During what years did athletes who attended school in Minnesota play for the Grizzlies?",
    "question_th": "นักกีฬาที่เข้าเรียนในโรงเรียนในรัฐมินนิโซตาเล่นให้กับทีม 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_en": "How many players went to depaul?",
    "question_th": "มีผู้เล่นกี่คนที่ไปเดพอล?",
    "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_en": "What school did the player who was with the grizzles in 2011 attend?",
    "question_th": "ผู้เล่นที่อยู่กับหมีกริซเซิลในปี 2554 เข้าเรียนที่โรงเรียนใด",
    "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_en": "What players attended missouri?",
    "question_th": "ผู้เล่นคนใดที่เข้าร่วมมิสซูรี?",
    "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_en": "What position(s) does the player from seton hall play?",
    "question_th": "นักเตะเซตัน ฮอลล์เล่นตำแหน่งไหน?",
    "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_en": "What number does the player who was with the grizzles in 1999 wear?",
    "question_th": "นักเตะที่สวมชุดกริซเซิลส์ในปี 1999 สวมหมายเลขอะไร?",
    "context": "CREATE TABLE table_16494599_4 (no INTEGER, years_for_grizzlies VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_16494599_4 WHERE position = \"Guard\"",
    "question_en": "What players play guard?",
    "question_th": "นักเตะคนไหนเล่นการ์ด?",
    "context": "CREATE TABLE table_16494599_4 (player VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_16494599_4 WHERE school_club_team = \"Bowling Green\"",
    "question_en": "What position(s) do players from bowling green play?",
    "question_th": "ผู้เล่นจากโบว์ลิ่งกรีนเล่นตำแหน่งใด?",
    "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_en": "Name the most losses for leslie mann",
    "question_th": "กล่าวถึงการสูญเสียมากที่สุดของเลสลี มันน์",
    "context": "CREATE TABLE table_16512618_1 (losses INTEGER, manager VARCHAR)"
  },
  {
    "answer": "SELECT vacator FROM table_1651764_3 WHERE district = \"New Jersey 2nd\"",
    "question_en": "who is the vacator whre the district is new jersey 2nd?",
    "question_th": "ใครคือผู้ว่างงาน ซึ่งเขตคือนิวเจอร์ซีย์ที่ 2?",
    "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_en": "what is the date the successor seated because the person died august 17, 1954?",
    "question_th": "วันที่ผู้สืบทอดนั่งเพราะบุคคลนั้นเสียชีวิตเมื่อวันที่ 17 สิงหาคม พ.ศ. 2497 คือวันที่เท่าไร?",
    "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_en": "who was the successor for district ohio 15th?",
    "question_th": "ใครเป็นผู้สืบทอดของเขตโอไฮโอที่ 15?",
    "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_en": "what is the total number for reason for change is district michigan 3rd?",
    "question_th": "เหตุผลในการเปลี่ยนแปลงคือเขตมิชิแกนที่ 3 มีจำนวนเท่าใด",
    "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_en": "What day did ARchie Roberts die?",
    "question_th": "ARchie Roberts เสียชีวิตวันไหน?",
    "context": "CREATE TABLE table_16527640_3 (date_of_death VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_16527640_3 WHERE vfl_games = 9",
    "question_en": "What location had a VFL Game number of 9?",
    "question_th": "สถานที่ใดมีเกม VFL หมายเลข 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_en": "How many VFL games were located off Goodenough Island Milne Bay?",
    "question_th": "มีเกม VFL กี่เกมที่ตั้งอยู่นอก 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_en": "Name the 3rd stage for parameter of thrust ",
    "question_th": " ตั้งชื่อขั้นตอนที่ 3 สำหรับพารามิเตอร์ของแรงขับ",
    "context": "CREATE TABLE table_16537783_2 (parameter VARCHAR)"
  },
  {
    "answer": "SELECT 1 AS st_stage FROM table_16537783_2 WHERE parameter = \"Diameter\"",
    "question_en": "Name the 1st stage for parameter being diameter",
    "question_th": "ตั้งชื่อระยะที่ 1 สำหรับพารามิเตอร์ที่เป็นเส้นผ่านศูนย์กลาง",
    "context": "CREATE TABLE table_16537783_2 (parameter VARCHAR)"
  },
  {
    "answer": "SELECT archbishop FROM table_1656555_1 WHERE ordained_bishop = \"November 30, 1925\"",
    "question_en": "Which archbishop was ordained as bishop November 30, 1925?",
    "question_th": "พระอัครสังฆราชองค์ใดได้รับการแต่งตั้งเป็นพระสังฆราชเมื่อวันที่ 30 พฤศจิกายน พ.ศ. 2468?",
    "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_en": "What is the death date of the archbishop who was ordained as bishop April 26, 1927?",
    "question_th": "พระอัครสังฆราชที่ได้รับแต่งตั้งเป็นพระสังฆราชเมื่อวันที่ 26 เมษายน พ.ศ. 2470 มีกำหนดสิ้นพระชนม์คือเมื่อใด",
    "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_en": "How many appointed archbishops were ordained as priests on December 20, 1959",
    "question_th": "จำนวนพระอัครสังฆราชที่ได้รับการแต่งตั้งเป็นพระภิกษุเมื่อวันที่ 20 ธันวาคม พ.ศ. 2502",
    "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_en": "What date was the person ordained as a priest in December 1838 ordained as a bishop?",
    "question_th": "ผู้ที่ได้รับแต่งตั้งเป็นพระภิกษุในเดือนธันวาคม พ.ศ. 2381 ได้รับแต่งตั้งเป็นพระสังฆราชเมื่อใด",
    "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_en": "When was the archbishop who vacated the throne on August 18, 1885 ordained as a priest?",
    "question_th": "พระอัครสังฆราชซึ่งพ้นจากบัลลังก์เมื่อวันที่ 18 สิงหาคม พ.ศ. 2428 ได้อุปสมบทเป็นพระภิกษุเมื่อใด",
    "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_en": "How many players Bowled 4/125?",
    "question_th": "ผู้เล่นโบว์ลิ่ง 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_en": "What number of wickets were there when the average was 22.66?",
    "question_th": "มีประตูจำนวนเท่าใดเมื่อค่าเฉลี่ยอยู่ที่ 22.66?",
    "context": "CREATE TABLE table_16570286_4 (wickets INTEGER, average VARCHAR)"
  },
  {
    "answer": "SELECT wickets FROM table_16570286_4 WHERE average = \"22.66\"",
    "question_en": "How many wickets were there when average was 22.66?",
    "question_th": "มีกี่ประตูเมื่อเฉลี่ยอยู่ที่ 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_en": "What was the best bowling score when the average was 23.33?",
    "question_th": "คะแนนโบว์ลิ่งที่ดีที่สุดเมื่อเฉลี่ยอยู่ที่ 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_en": "How many matches had 11 wickets?",
    "question_th": "กี่นัดมี 11 ประตู?",
    "context": "CREATE TABLE table_16570286_4 (matches INTEGER, wickets VARCHAR)"
  },
  {
    "answer": "SELECT MAX(wickets) FROM table_16570286_4 WHERE player = \"Alec Bedser\"",
    "question_en": "How many wickets did Alec bedser have?",
    "question_th": "อเล็ก เบเซอร์ มีกี่ประตู?",
    "context": "CREATE TABLE table_16570286_4 (wickets INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT cfl_team FROM table_16575609_1 WHERE player = \"Dimitri Tsoumpas\"",
    "question_en": "Who picked dimitri tsoumpas?",
    "question_th": "ใครเลือกดิมิทรี ซูมปาส?",
    "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_en": "What position did the winnipeg blue bombers draft?",
    "question_th": "เครื่องบินทิ้งระเบิดสีน้ำเงินของวินนิเพกร่างตำแหน่งใด",
    "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_en": "Where did Brendon Labatte get picked?",
    "question_th": "Brendon Labatt ถูกเลือกที่ไหน?",
    "context": "CREATE TABLE table_16575609_1 (pick__number INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT cfl_team FROM table_16575609_1 WHERE college = \"Weber State\"",
    "question_en": "Who picked a player from Weber State?",
    "question_th": "ใครเลือกผู้เล่นจาก 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_en": "What position was taken out of Louisiana-Lafayette?",
    "question_th": "ตำแหน่งใดที่ถูกถอดออกจาก 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_en": "Name the college for calgary stampeders",
    "question_th": "ตั้งชื่อวิทยาลัยสำหรับผู้แตกตื่นในคาลการี",
    "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_en": "Name the most pick number for cfl team being edmonton eskimos",
    "question_th": "ตั้งชื่อหมายเลขที่ถูกเลือกมากที่สุดสำหรับทีม cfl คือ 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_en": "How many days are associated with production code 210?",
    "question_th": "กี่วันเกี่ยวข้องกับรหัสการผลิต 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_en": "How many titles have a production code of 211?",
    "question_th": "มีกี่เรื่องที่มีรหัสการผลิต 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_en": "How many seasons have a production code of 204?",
    "question_th": "มีกี่ซีซั่นที่มีรหัสการผลิต 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_en": "What title was written by Matt Wayne?",
    "question_th": "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_en": "What is the series episode number of the episode with production code 303?",
    "question_th": "หมายเลขตอนของซีรีส์ตอนที่มีรหัสการผลิต 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_en": "What is the production code for episode 15 in season 3?",
    "question_th": "รหัสการผลิตตอนที่ 15 ในซีซั่น 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_en": "Who directed episode 12 in season 3?",
    "question_th": "ใครเป็นผู้กำกับตอนที่ 12 ในซีซั่น 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_en": "How many tree species are listed when the total plant species is 258?",
    "question_th": "เมื่อรวมพันธุ์พืชทั้งหมด 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_en": "How many tree species are there when the total plant species is 113?",
    "question_th": "เมื่อพืชทั้งหมดมี 113 ชนิด มีต้นไม้กี่ชนิด?",
    "context": "CREATE TABLE table_16577990_1 (tree_species VARCHAR, total_plant_species VARCHAR)"
  },
  {
    "answer": "SELECT MIN(size_in_km²) FROM table_16577990_1 WHERE central_forest_reserve = \"Itwara\"",
    "question_en": "What is the size of Itwara central forest reserve?",
    "question_th": "ป่าสงวนกลางอิทวารามีขนาดเท่าไร?",
    "context": "CREATE TABLE table_16577990_1 (size_in_km² INTEGER, central_forest_reserve VARCHAR)"
  },
  {
    "answer": "SELECT tree_species FROM table_16577990_1 WHERE central_forest_reserve = \"Kitechura\"",
    "question_en": "How many tree species are in the kitechura reserve?",
    "question_th": "เขตอนุรักษ์ Kitechura มีต้นไม้กี่ชนิด?",
    "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_en": "What episode titles have 17.93 million U.S. viewers?",
    "question_th": "ชื่อตอนใดมีผู้ชม 17.93 ล้านคนในสหรัฐฯ",
    "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_en": "What episode titles have 20.94 million U.S. viewers?",
    "question_th": "ชื่อตอนใดมีผู้ชม 20.94 ล้านคนในสหรัฐฯ",
    "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_en": "In what seasons did Kate Woods direct Without A Trace?",
    "question_th": "Kate Woods กำกับเรื่อง 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_en": "Who wrote Season 8?",
    "question_th": "ใครเป็นคนเขียนซีซั่น 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_en": "When did the country that produced 1,213,000 (21st) bbl/day join Opec?",
    "question_th": "ประเทศที่ผลิต 1,213,000 (21) บาร์เรลต่อวันเข้าร่วมกับโอเปกเมื่อใด",
    "context": "CREATE TABLE table_166346_1 (joined_opec VARCHAR, production___bbl__day_ VARCHAR)"
  },
  {
    "answer": "SELECT MIN(area__km²_) FROM table_166346_1 WHERE production___bbl__day_ = \"3,200,000 (12th)\"",
    "question_en": "What was the minimum area in square kilometers that produced 3,200,000 (12th) bbl/day?",
    "question_th": "พื้นที่ขั้นต่ำในตารางกิโลเมตรที่ผลิต 3,200,000 (อันดับที่ 12) บาร์เรลต่อวันคือเท่าใด",
    "context": "CREATE TABLE table_166346_1 (area__km²_ INTEGER, production___bbl__day_ VARCHAR)"
  },
  {
    "answer": "SELECT MAX(population__july_2012_) FROM table_166346_1 WHERE area__km²_ = 2149690",
    "question_en": "What is the highest poplulation in July 2012 in the country with an area of 2149690 square kilometers?",
    "question_th": "เดือนกรกฎาคม 2555 มีประชากรมากที่สุดในประเทศใดบ้าง โดยมีพื้นที่ 2149,690 ตารางกิโลเมตร",
    "context": "CREATE TABLE table_166346_1 (population__july_2012_ INTEGER, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_166346_1 WHERE production___bbl__day_ = \"1,213,000 (21st)\"",
    "question_en": "Which regions had a production (bbl/day) of 1,213,000 (21st)?",
    "question_th": "ภูมิภาคใดมีการผลิต (บาร์เรล/วัน) 1,213,000 (อันดับที่ 21)",
    "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_en": "Which country had a production (bbl/day) of 2,494,000 (10th)?",
    "question_th": "ประเทศใดมีการผลิต (บาร์เรล/วัน) 2,494,000 (อันดับที่ 10)",
    "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_en": "What are all the approved treatments for the target CD30?",
    "question_th": "การรักษาที่ได้รับการอนุมัติทั้งหมดสำหรับ 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_en": "What is the brand name for the antibody Brentuximab Vedotin?",
    "question_th": "ชื่อแบรนด์ของแอนติบอดี 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_en": "How many targets are there with an approval date of 1997?",
    "question_th": "มีเป้าหมายที่ได้รับการอนุมัติในปี 2540 กี่เป้าหมาย?",
    "context": "CREATE TABLE table_1661124_1 (target VARCHAR, approval_date VARCHAR)"
  },
  {
    "answer": "SELECT approved_treatment_s_ FROM table_1661124_1 WHERE antibody = \"Bevacizumab\"",
    "question_en": "What are the approved treatments when the antibody is bevacizumab?",
    "question_th": "การรักษาที่ได้รับอนุมัติเมื่อแอนติบอดีคือเบวาซิซูแมบมีอะไรบ้าง?",
    "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_en": "What is the target when the approved treatment is non-hodgkin lymphoma?",
    "question_th": "เป้าหมายคืออะไรเมื่อการรักษาที่ได้รับอนุมัติคือมะเร็งต่อมน้ำเหลืองชนิดนอนฮอดจ์กิน?",
    "context": "CREATE TABLE table_1661124_1 (target VARCHAR, approved_treatment_s_ VARCHAR)"
  },
  {
    "answer": "SELECT target FROM table_1661124_1 WHERE approval_date = 2006",
    "question_en": "What is the target with an approval date of 2006?",
    "question_th": "เป้าหมายที่มีวันอนุมัติปี 2549 คืออะไร?",
    "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_en": "What is the rural population percentage in 1979?",
    "question_th": "เปอร์เซ็นต์ประชากรในชนบทในปี 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_en": "How many percentage figures are given for the urban population when the total population number is 14685?",
    "question_th": "ประชากรในเมืองจะได้รับตัวเลขกี่เปอร์เซ็นต์เมื่อจำนวนประชากรทั้งหมดคือ 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_en": "When tajik is the ethnicity  what is islam?",
    "question_th": "เมื่อทาจิกิสถานเป็นเชื้อชาติ อิสลามคืออะไร?",
    "context": "CREATE TABLE table_16642_1 (islam VARCHAR, ethnicity VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(name) FROM table_16654785_2 WHERE length__m_ = 455",
    "question_en": "How many had a length of 455?",
    "question_th": "มีกี่ตัวที่มีความยาว 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_en": "What is the average climb for Tenbosse?",
    "question_th": "การไต่ระดับเฉลี่ยของ Tenbosse คือเท่าใด?",
    "context": "CREATE TABLE table_16654785_2 (average_climb___percentage_ INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT number FROM table_16654785_2 WHERE kilometer = 233",
    "question_en": "How many have a kilometers of 233?",
    "question_th": "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_en": "How many have a length of 375?",
    "question_th": "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_en": "What was the team's playoff status in 2011?",
    "question_th": "สถานะรอบรองชนะเลิศของทีมในปี 2554 คืออะไร?",
    "context": "CREATE TABLE table_16636344_1 (playoffs VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT league FROM table_16636344_1 WHERE year = \"2010\"",
    "question_en": "What was the team's league in 2010?",
    "question_th": "ลีกของทีมในปี 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_en": "What is the league name for the regular season status of 2nd, mid atlantic?",
    "question_th": "ชื่อลีกสำหรับสถานะฤดูกาลปกติของอันดับที่ 2 กลางมหาสมุทรแอตแลนติกคืออะไร?",
    "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_en": "Who was the winning driver at Okayama International Circuit?",
    "question_th": "ใครคือนักแข่งที่ชนะในสนามแข่งรถโอคายามะ อินเตอร์เนชั่นแนล เซอร์กิต?",
    "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_en": "Who had the fastest lap when the winning team was Tom's Racing?",
    "question_th": "ใครมีรอบเร็วที่สุดเมื่อทีมที่ชนะคือ 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_en": "Who had the fastest lap in the race won by Team Impul at the Twin Ring Motegi circuit?",
    "question_th": "ใครมีรอบเร็วที่สุดในการแข่งขันที่ Team Impul ชนะที่สนาม Twin Ring Motegi",
    "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_en": "How many opponents did the team play in week 13?",
    "question_th": "ทีมเล่นฝ่ายตรงข้ามกี่คนในสัปดาห์ที่ 13",
    "context": "CREATE TABLE table_16677874_2 (opponents VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT MAX(opponents) FROM table_16677887_2 WHERE date = \"Sept. 14\"",
    "question_en": "How many points did the opponent score on Sept. 14?",
    "question_th": "ฝ่ายตรงข้ามได้คะแนนเท่าไรในวันที่ 14 กันยายน?",
    "context": "CREATE TABLE table_16677887_2 (opponents INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_16677887_2 WHERE bills_first_downs = 23",
    "question_en": "What team were the bills playing where their first down was 23?",
    "question_th": "ทีมใดเป็นตั๋วเงินที่ลงเล่นครั้งแรกคือ 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_en": "What was the record for the game on Sept. 14?",
    "question_th": "สถิติของเกมเมื่อวันที่ 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_en": "When 12743 is the spelthorne what is the largest gore hundred?",
    "question_th": "เมื่อ 12,743 เป็นสเปลธอร์น เลือดร้อยที่ใหญ่ที่สุดคือเท่าใด?",
    "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_en": "When 1546 is inns of court and chancery what is the finsbury division?",
    "question_th": "เมื่อ ค.ศ. 1546 เป็นโรงเตี๊ยมของศาลและศาลฎีกา แผนกฟินส์เบอรีคืออะไร?",
    "context": "CREATE TABLE table_16677738_1 (finsbury_division VARCHAR, inns_of_court_and_chancery VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_16677738_1",
    "question_en": "What is the lowest overall year?",
    "question_th": "ปีโดยรวมต่ำสุดคือเท่าไร?",
    "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_en": "When 70489 is without walls what is the inns of court and chancery?",
    "question_th": "เมื่อ 70489 ไม่มีกำแพง โรงแรมเล็กๆ ในศาลและศาลสูงคืออะไร?",
    "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_en": "When within the walls is larger than 56174.0 what is the lowest amount without the walls?",
    "question_th": "เมื่อภายในผนังมีขนาดใหญ่กว่า 56174.0 ค่าต่ำสุดที่ไม่มีผนังคือเท่าใด",
    "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_en": "When 272966 is the tower division what is the highest holborn division?",
    "question_th": "เมื่อ 272966 เป็นแผนกหอคอย แผนกโฮลบอร์นสูงสุดคืออะไร?",
    "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_en": "What is the maximum number of stolen ends against for Japan? ",
    "question_th": " จำนวนการถูกขโมยสูงสุดในญี่ปุ่นคือเท่าไร?",
    "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_en": "Who was the skip when the stolen ends against was 13? ",
    "question_th": " ใครคือผู้ข้ามเมื่อการขโมยจบลงที่ 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_en": "Who are the batting partners for the 1997 season?",
    "question_th": "ใครคือคู่ตีลูกในฤดูกาล 1997?",
    "context": "CREATE TABLE table_1670921_1 (batting_partners VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_1670921_1 WHERE wicket = \"7th\"",
    "question_en": "Which season reported wickets of 7th?",
    "question_th": "ฤดูกาลใดที่รายงานประตูที่ 7?",
    "context": "CREATE TABLE table_1670921_1 (season VARCHAR, wicket VARCHAR)"
  },
  {
    "answer": "SELECT fielding_team FROM table_1670921_1 WHERE wicket = \"9th\"",
    "question_en": "Which team is 9th in wickets?",
    "question_th": "ทีมใดอยู่อันดับที่ 9 ในด้านประตู?",
    "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_en": "What is the venue for batting partners Mahela Jayawardene and Prasanna Jayawardene",
    "question_th": "สถานที่สำหรับตีลูกคู่ Mahela Jayawardene และ 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_en": "How many teams are listed for 3rd wickets?",
    "question_th": "มีกี่ทีมที่อยู่ในรายชื่อประตูที่ 3?",
    "context": "CREATE TABLE table_1670921_1 (batting_team VARCHAR, wicket VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(batting_partners) FROM table_1670921_2 WHERE season = \"2006\"",
    "question_en": "How many total batting partners were most successful in the 2006 season?",
    "question_th": "คู่ตีลูกทั้งหมดกี่คนที่ประสบความสำเร็จมากที่สุดในฤดูกาล 2549",
    "context": "CREATE TABLE table_1670921_2 (batting_partners VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT batting_partners FROM table_1670921_2 WHERE batting_team = \"Pakistan\"",
    "question_en": "What batting partners batted for pakistan?",
    "question_th": "พันธมิตรตีลูกคนไหนที่ซัดให้ปากีสถาน?",
    "context": "CREATE TABLE table_1670921_2 (batting_partners VARCHAR, batting_team VARCHAR)"
  },
  {
    "answer": "SELECT runs FROM table_1670921_2 WHERE fielding_team = \"Bangladesh\"",
    "question_en": "How many runs when bangladesh was the fielding team?",
    "question_th": "บังคลาเทศเป็นทีมลงสนามกี่รอบ?",
    "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_en": "What are the wickets when there are 451 runs and india is the fielding team?",
    "question_th": "เมื่อมี 451 รัน และอินเดียเป็นทีมลงสนามจะได้ประตูเท่าไร?",
    "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_en": "What batting partners played in sydney?",
    "question_th": "คู่ตีคนไหนเล่นในซิดนีย์?",
    "context": "CREATE TABLE table_1670921_2 (batting_partners VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT batting_partners FROM table_1670921_2 WHERE season = \"2004\"",
    "question_en": "What batting partners were the most successful in 2004?",
    "question_th": "คู่ตีลูกใดที่ประสบความสำเร็จมากที่สุดในปี 2547",
    "context": "CREATE TABLE table_1670921_2 (batting_partners VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT falcons_points FROM table_16710829_2 WHERE record = \"3-2\"",
    "question_en": "Name the falcons points for record of 3-2",
    "question_th": "ตั้งชื่อแต้มฟอลคอนเป็นสถิติ 3-2",
    "context": "CREATE TABLE table_16710829_2 (falcons_points VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_16710829_2 WHERE game = 9",
    "question_en": "Name the date for game 9",
    "question_th": "ตั้งชื่อวันที่สำหรับเกมที่ 9",
    "context": "CREATE TABLE table_16710829_2 (date VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT MAX(game) FROM table_16710829_2 WHERE attendance = 54774",
    "question_en": "Name the max game for attendance being 54774",
    "question_th": "ตั้งชื่อเกมสูงสุดสำหรับการเข้าร่วมเป็น 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_en": "Name the total number of results for new orleans saints",
    "question_th": "ตั้งชื่อจำนวนผลลัพธ์ทั้งหมดสำหรับนักบุญนิวออร์ลีนส์",
    "context": "CREATE TABLE table_16710829_2 (result VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(opponent) FROM table_16710971_2 WHERE record = \"1-3\"",
    "question_en": "What is the total number of opponents for the game recorded as 1-3?",
    "question_th": "จำนวนคู่ต่อสู้ทั้งหมดของเกมที่บันทึกเป็น 1-3 คือเท่าใด",
    "context": "CREATE TABLE table_16710971_2 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_16710971_2 WHERE record = \"1-2\"",
    "question_en": "What was the result of the 1978 Atlanta Falcons season when the record was 1-2?",
    "question_th": "อะไรคือผลลัพธ์ของฤดูกาล 1978 Atlanta Falcons ที่สถิติเสมอกัน 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_en": "How many points did the Falcons score when the record was 4-4? ",
    "question_th": " ฟอลคอนส์ทำคะแนนได้กี่แต้มเมื่อสถิติเป็น 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_en": "How many opponents were there for the game recorded as 6-4 in the Atlanta Falcons 1978 season?",
    "question_th": "มีคู่ต่อสู้กี่คนสำหรับเกมนี้ที่บันทึกเป็น 6-4 ในฤดูกาล Atlanta Falcons 1978?",
    "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_en": "In games where the opponent was the San Francisco 49ers what was the minimum amount of points scored?",
    "question_th": "ในเกมที่คู่ต่อสู้คือทีม San Francisco 49ers คะแนนขั้นต่ำที่ได้คือเท่าใด",
    "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_en": "How many points did kiefer-bos-castrol honda have?",
    "question_th": "คีเฟอร์-บอส-คาสตรอล ฮอนด้า ได้กี่คะแนน?",
    "context": "CREATE TABLE table_16710541_2 (pts VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_16710541_2 WHERE motorcycle = \"KTM\"",
    "question_en": "What result did the ktm motorcycle achieve?",
    "question_th": "รถจักรยานยนต์ ktm บรรลุผลสำเร็จอย่างไร",
    "context": "CREATE TABLE table_16710541_2 (position VARCHAR, motorcycle VARCHAR)"
  },
  {
    "answer": "SELECT MIN(poles) FROM table_16710541_2",
    "question_en": "What is the lowest number of poles?",
    "question_th": "จำนวนเสาต่ำสุดคือเท่าไร?",
    "context": "CREATE TABLE table_16710541_2 (poles INTEGER)"
  },
  {
    "answer": "SELECT MIN(top_5) FROM table_1671401_1",
    "question_en": "Name the least top 5",
    "question_th": "ตั้งชื่อ 5 อันดับแรกที่น้อยที่สุด",
    "context": "CREATE TABLE table_1671401_1 (top_5 INTEGER)"
  },
  {
    "answer": "SELECT top_5 FROM table_1671401_3 WHERE winnings = \"$52,595\"",
    "question_en": "name the top 5 where the winnings is $52,595",
    "question_th": "ตั้งชื่อ 5 อันดับแรกที่เงินรางวัลอยู่ที่ 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_en": "name the total number of top 10 also where the position is 51st ",
    "question_th": " ตั้งชื่อจำนวนรวมของ 10 อันดับแรกและอันดับที่ 51",
    "context": "CREATE TABLE table_1671401_3 (top_10 VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT winnings FROM table_1671401_3 WHERE starts = 7",
    "question_en": "name all the winnings that the start appears to be 7",
    "question_th": "ตั้งชื่อการชนะทั้งหมดที่จุดเริ่มต้นปรากฏเป็น 7",
    "context": "CREATE TABLE table_1671401_3 (winnings VARCHAR, starts VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(winnings) FROM table_1671401_2 WHERE year = 1995",
    "question_en": "Name the total number of winnings for 1995",
    "question_th": "ตั้งชื่อจำนวนชัยชนะทั้งหมดในปี 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_en": "Name the max top 5 for 5.0 avg finish",
    "question_th": "ตั้งชื่อสูงสุด 5 อันดับแรกสำหรับการจบเฉลี่ย 5.0",
    "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_en": "Name the poles for avg finish is 26.8",
    "question_th": "ตั้งชื่อเสาให้เฉลี่ยจบที่ 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_en": "Name the total number of teams for top 10 being 5",
    "question_th": "ตั้งชื่อจำนวนทีมทั้งหมดสำหรับ 10 อันดับแรกคือ 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_en": "How many times was the mens u20 recorded when the Womens 40 were Sydney Scorpions def North Queensland Cyclones?",
    "question_th": "มีกี่ครั้งที่ U20 ชายถูกบันทึกไว้เมื่อทีมหญิง 40 คือ 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_en": "What were the results for mens 40 when the mens u20 was Southern Suns def Gold Coast Sharks?",
    "question_th": "ผลลัพธ์สำหรับบุรุษอายุ 40 ปีเมื่อชาย U20 คือ 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_en": "What were the results of the mens open when the  womens 40 was Sydney Scorpions defeated Hunter Hornets?",
    "question_th": "อะไรคือผลลัพธ์ของการเปิดชายเมื่อผู้หญิงอายุ 40 คือ Sydney Scorpions เอาชนะ 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_en": "What were the results of the womens u20 when the mens 45 was  Sunwest Razorbacks def Northern Eagles?",
    "question_th": "อะไรคือผลลัพธ์ของทีมหญิง U20 เมื่อทีมชายอายุ 45 คือ 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_en": "What was the mens 45 when mens 40 was Sunwest Razorbacks def Sydney Mets?",
    "question_th": "ผู้ชาย 45 คืออะไรเมื่อผู้ชาย 40 คือ 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_en": "What was the mens open when the mens u20 was  Qld Country Rustlers def Southern Suns?",
    "question_th": "ผู้ชายเปิดอะไรเมื่อผู้ชาย u20 คือ 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_en": "What date was the opponent the Los Angeles Raiders?",
    "question_th": "คู่ต่อสู้ของ 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_en": "How many games were played at Cleveland Stadium?",
    "question_th": "สนามกีฬาคลีฟแลนด์เล่นไปกี่เกม?",
    "context": "CREATE TABLE table_16729063_2 (date VARCHAR, game_site VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(week) FROM table_16729063_2 WHERE attendance = 74716",
    "question_en": "In what week number was the attendance 74716?",
    "question_th": "ผู้เข้าร่วม 74,716 คนในสัปดาห์ใด",
    "context": "CREATE TABLE table_16729063_2 (week VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_1672804_2 WHERE name_of_city = \"Iquitos\"",
    "question_en": "What is the region where Iquitos is located?",
    "question_th": "อีกีโตสตั้งอยู่ในภูมิภาคใด?",
    "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_en": "What is the region containing the Constitutional Province of Callao?",
    "question_th": "ภูมิภาคที่มีจังหวัด Callao ตามรัฐธรรมนูญคืออะไร?",
    "context": "CREATE TABLE table_1672804_2 (region VARCHAR, province VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_16729071_1 WHERE opponent = \"New Orleans Saints\"",
    "question_en": "How did the game end against the New Orleans Saints?",
    "question_th": "เกมกับนิวออร์ลีนส์เซนต์สจบลงอย่างไร?",
    "context": "CREATE TABLE table_16729071_1 (result VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(week) FROM table_16729071_1 WHERE attendance = 60038",
    "question_en": "How many weeks had an attendance of 60038?",
    "question_th": "มีผู้เข้าร่วม 6,0038 คนกี่สัปดาห์?",
    "context": "CREATE TABLE table_16729071_1 (week VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT MIN(points) FROM table_16729457_17 WHERE driver___passenger = \"Daniël Willemsen / Kenny van Gaalen\"",
    "question_en": "Name the least points for daniël willemsen / kenny van gaalen",
    "question_th": "บอกคะแนนน้อยที่สุดของ ดาเนียล วิลเลมเซ่น / เคนนี่ ฟาน กัลเลน",
    "context": "CREATE TABLE table_16729457_17 (points INTEGER, driver___passenger VARCHAR)"
  },
  {
    "answer": "SELECT driver___passenger FROM table_16729457_17 WHERE position = 4",
    "question_en": "Name the driver passenger for position 4",
    "question_th": "ตั้งชื่อคนขับผู้โดยสารตำแหน่งที่ 4",
    "context": "CREATE TABLE table_16729457_17 (driver___passenger VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT driver___passenger FROM table_16729457_16 WHERE position = 8",
    "question_en": "Name the driver/passenger for position 8",
    "question_th": "ตั้งชื่อผู้ขับขี่/ผู้โดยสารสำหรับตำแหน่งที่ 8",
    "context": "CREATE TABLE table_16729457_16 (driver___passenger VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT driver___passenger FROM table_16729457_16 WHERE position = 6",
    "question_en": "Name the driver/passenger for 6 position",
    "question_th": "ระบุชื่อผู้ขับขี่/ผู้โดยสาร จำนวน 6 ตำแหน่ง",
    "context": "CREATE TABLE table_16729457_16 (driver___passenger VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_1672976_5 WHERE attendance = 16597",
    "question_en": "Who was the winner when the total attendance was 16597?",
    "question_th": "ใครเป็นผู้ชนะเมื่อมีผู้เข้าร่วมทั้งหมด 16,597 คน?",
    "context": "CREATE TABLE table_1672976_5 (winner VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT socket FROM table_16729930_18 WHERE frequency = \"1.3 GHz\"",
    "question_en": "What is the socket for microprocessors with a frequency of 1.3 ghz?",
    "question_th": "ซ็อกเก็ตสำหรับไมโครโปรเซสเซอร์ที่มีความถี่ 1.3 กิกะเฮิร์ตซ์คืออะไร?",
    "context": "CREATE TABLE table_16729930_18 (socket VARCHAR, frequency VARCHAR)"
  },
  {
    "answer": "SELECT tdp FROM table_16729930_18 WHERE release_price___usd__ = \"$72\"",
    "question_en": "For a release price of $72, what is the TDP of the microprocessor?",
    "question_th": "สำหรับราคาวางจำหน่ายที่ 72 ดอลลาร์ TDP ของไมโครโปรเซสเซอร์คือเท่าใด",
    "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_en": "For a processor with part number cy80632007221ab and TDP of 3.6 W, What are the available GPU  frequencies?",
    "question_th": "สำหรับโปรเซสเซอร์ที่มีหมายเลขชิ้นส่วน cy80632007221ab และ TDP 3.6 W ความถี่ GPU ที่ใช้งานได้คือเท่าใด",
    "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_en": "For a processor with model number atom e665c and a TDP of 3.6 W, what is the sSpec number?",
    "question_th": "สำหรับโปรเซสเซอร์ที่มีหมายเลขรุ่น atom e665c และ TDP 3.6 W หมายเลข sSpec คืออะไร",
    "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_en": "What is the release price for a processor with part number  cy80632007227ab?",
    "question_th": "ราคาวางจำหน่ายสำหรับโปรเซสเซอร์ที่มีหมายเลขชิ้นส่วน 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_en": "Name the fsb for atom z540",
    "question_th": "ตั้งชื่อ fsb สำหรับอะตอม 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_en": "Name the frequency for part number of ac80566ue041dw",
    "question_th": "ตั้งชื่อความถี่สำหรับหมายเลขชิ้นส่วนของ 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_en": "Name the memory for part number of  ct80618003201aa",
    "question_th": "ตั้งชื่อหน่วยความจำสำหรับหมายเลขชิ้นส่วน 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_en": "Name the memory for meodel number for atom e640t",
    "question_th": "ตั้งชื่อหน่วยความจำหมายเลข meodel สำหรับอะตอม 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_en": "Name the memory for frequency of 1.6 ghz",
    "question_th": "ตั้งชื่อหน่วยความจำความถี่ 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_en": "Who won the game where the Challenge Leader is ACC (2-1)?",
    "question_th": "ใครชนะในเกมที่ Challenge Leader คือ 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_en": "What station aired a game at 9:00pm?",
    "question_th": "สถานีใดออกอากาศเวลา 21.00 น.?",
    "context": "CREATE TABLE table_1672976_6 (television VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT MIN(rnd) FROM table_16732659_2 WHERE date = \"June 11\"",
    "question_en": "ON JUNE 11, WHAT WAS THE NUMBER OF RNDS ?",
    "question_th": "ในวันที่ 11 มิถุนายน RNDS มีจำนวนเท่าใด",
    "context": "CREATE TABLE table_16732659_2 (rnd INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(rnd) FROM table_16732659_2 WHERE date = \"August 13\"",
    "question_en": "FOR AUGUST 13 WHAT IS THE RND ?",
    "question_th": "สำหรับวันที่ 13 สิงหาคม RND คืออะไร?",
    "context": "CREATE TABLE table_16732659_2 (rnd INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT race_name FROM table_16732659_2 WHERE rnd = 13",
    "question_en": "PLEASE LIST ALL RACES WHERE THE RND IS 13.",
    "question_th": "โปรดระบุการแข่งขันทั้งหมดที่ RND คือ 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_en": "How many figures are there for Rank 07-11 when the world ranking is 4?",
    "question_th": "อันดับ 07-11 เมื่ออันดับโลกอยู่ที่ 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_en": "How many figures are given for pubs 2011 in Chennai?",
    "question_th": "มีการระบุตัวเลขสำหรับผับปี 2554 ในเจนไนจำนวนเท่าใด",
    "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_en": "Name the number location of georgia perimeter college",
    "question_th": "ตั้งชื่อสถานที่หมายเลขของวิทยาลัยปริมณฑลจอร์เจีย",
    "context": "CREATE TABLE table_16734640_1 (location VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_16734640_1 WHERE institution = \"Chattahoochee Technical College\"",
    "question_en": "Name the location for chattahoochee technical college",
    "question_th": "ตั้งชื่อที่ตั้งวิทยาลัยเทคนิคฉัตรชัย",
    "context": "CREATE TABLE table_16734640_1 (location VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_16734640_1 WHERE institution = \"Abraham Baldwin Agricultural College\"",
    "question_en": "Name the location for abraham baldwin agricultural college",
    "question_th": "ตั้งชื่อสถานที่ตั้งของวิทยาลัยเกษตรกรรมอับราฮัม บอลด์วิน",
    "context": "CREATE TABLE table_16734640_1 (location VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(nickname) FROM table_16734640_1 WHERE institution = \"Andrew College\"",
    "question_en": "Name the total number of nicknames for andrew college",
    "question_th": "ตั้งชื่อจำนวนชื่อเล่นทั้งหมดสำหรับวิทยาลัยแอนดรูว์",
    "context": "CREATE TABLE table_16734640_1 (nickname VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT MAX(enrollment) FROM table_16734640_1 WHERE nickname = \"Hawks\"",
    "question_en": "Name the most enrollment when nickname is hawks",
    "question_th": "ตั้งชื่อที่ลงทะเบียนมากที่สุดเมื่อชื่อเล่นคือเหยี่ยว",
    "context": "CREATE TABLE table_16734640_1 (enrollment INTEGER, nickname VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_16741821_8 WHERE opponent = \"George Khrikadze\"",
    "question_en": "WHAT WAS THE SURFACE MADE OF WHEN THE OPPONENT WAS GEORGE KHRIKADZE?",
    "question_th": "พื้นผิวทำมาจากอะไรเมื่อฝ่ายตรงข้ามคือ 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_en": "WHAT WERE ALL OF THE RESULTS WHEN THEY PLAYED AGAINST LITHUANIA AND THE SURFACE WAS MADE OF CLAY?",
    "question_th": "ผลลัพธ์ทั้งหมดเป็นอย่างไรเมื่อพวกเขาเล่นกับลิทัวเนีย และพื้นผิวนั้นทำจากดินเหนียว",
    "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_en": "Name the republican steve sauerberg where dates administered september 15-september 18, 2008",
    "question_th": "ตั้งชื่อพรรครีพับลิกัน สตีฟ เซาเออร์เบิร์ก โดยวันที่บริหารตั้งแต่วันที่ 15 กันยายนถึง 18 กันยายน พ.ศ. 2551",
    "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_en": "Name the republican steve sauerberg for august 12, 2008",
    "question_th": "ตั้งชื่อสตีฟ เซาเออร์เบิร์กของพรรครีพับลิกันสำหรับวันที่ 12 สิงหาคม พ.ศ. 2551",
    "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_en": "Name the poll source for july 12, 2008",
    "question_th": "ตั้งชื่อแหล่งโพลสำหรับวันที่ 12 กรกฎาคม พ.ศ. 2551",
    "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_en": "When the lead margin was 35, what were the Democrat: Vivian Davis Figures?",
    "question_th": "เมื่ออัตรากำไรขั้นต้นคือ 35 พรรคเดโมแครต: 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_en": "On June 30, 2008 who what was the Republican: Jeff Sessions percentage?",
    "question_th": "เมื่อวันที่ 30 มิถุนายน 2551 พรรครีพับลิกัน: Jeff Sessions เปอร์เซ็นต์คือใคร",
    "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_en": "On November 14, 2007, how many different Republican: Jeff Sessions are there?",
    "question_th": "เมื่อวันที่ 14 พฤศจิกายน พ.ศ. 2550 มี Republican: Jeff Sessions กี่คน?",
    "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_en": "On November 14, 2007, what are the Democrat: Vivian Davis Figures percentages? ",
    "question_th": " เมื่อวันที่ 14 พฤศจิกายน พ.ศ. 2550 พรรคเดโมแครต: วิเวียน เดวิส มีเปอร์เซ็นต์เป็นเท่าใด",
    "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_en": "On July 31, 2008, what are the Democrat: Vivian Davis Figures percentages?",
    "question_th": "วันที่ 31 กรกฎาคม 2551 พรรคเดโมแครต: วิเวียน เดวิส มีเปอร์เซ็นต์เป็นเท่าใด",
    "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_en": "What was Mark Begich polling on October 6, 2008?",
    "question_th": "Mark Begich โพลเมื่อวันที่ 6 ตุลาคม 2551 คืออะไร",
    "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_en": "When the poll source is research 2000/daily kos, what is the total number of dates administered? ",
    "question_th": " เมื่อแหล่งที่มาของการสำรวจความคิดเห็นคือการวิจัย 2,000/คอสต่อวัน จำนวนวันที่ทั้งหมดที่ได้รับการจัดการคือเท่าใด",
    "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_en": "On July 17, 2008, what was the total number of lead maragin? ",
    "question_th": " เมื่อวันที่ 17 กรกฎาคม 2551 มีตะกั่วมาราจินทั้งหมดกี่ตัว?",
    "context": "CREATE TABLE table_16751596_13 (lead_maragin VARCHAR, dates_administered VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_1676073_12 WHERE points_against = \"608\"",
    "question_en": "What clubs had 608 points against?",
    "question_th": "สโมสรใดมี 608 แต้มต่อ?",
    "context": "CREATE TABLE table_1676073_12 (club VARCHAR, points_against VARCHAR)"
  },
  {
    "answer": "SELECT played FROM table_1676073_12 WHERE points = \"48\"",
    "question_en": "How many games played for the team with 48 points?",
    "question_th": "กี่เกมที่เล่นให้ทีมมี 48 แต้ม?",
    "context": "CREATE TABLE table_1676073_12 (played VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT played FROM table_1676073_12 WHERE points_against = \"686\"",
    "question_en": "How many games played for the team with 686 points against?",
    "question_th": "กี่เกมที่เล่นให้กับทีมโดยมีคะแนน 686 แต้ม?",
    "context": "CREATE TABLE table_1676073_12 (played VARCHAR, points_against VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_1676073_12 WHERE points_for = \"748\"",
    "question_en": "What clubs recorded 748 points to the good?",
    "question_th": "สโมสรไหนมีคะแนนดีถึง 748 แต้ม?",
    "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_en": "How many teams had 632 points against?",
    "question_th": "มีกี่ทีมที่มี 632 แต้มต่อ?",
    "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_en": "How many games drawn for the team that lost 11 and had 748 points?",
    "question_th": "กี่เกมที่ทีมที่แพ้ 11 และมี 748 แต้ม?",
    "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_en": "How many times did Public Policy Polling under Republican: Jack Hoogendyk?",
    "question_th": "การสำรวจนโยบายสาธารณะภายใต้พรรครีพับลิกัน: 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_en": "What poll source had an administered date on July 10, 2008?",
    "question_th": "แหล่งสำรวจความคิดเห็นใดมีวันที่จัดการในวันที่ 10 กรกฎาคม พ.ศ. 2551",
    "context": "CREATE TABLE table_16751596_6 (poll_source VARCHAR, dates_administered VARCHAR)"
  },
  {
    "answer": "SELECT latitude FROM table_16768245_2 WHERE diameter = \"184.0\"",
    "question_en": "What is the latitude when the diameter is 184.0?",
    "question_th": "ละติจูดเมื่อเส้นผ่านศูนย์กลางเป็น 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_en": "How many longitudes have a diameter of 224.0?",
    "question_th": "กี่ลองจิจูดมีเส้นผ่านศูนย์กลาง 224.0?",
    "context": "CREATE TABLE table_16768245_2 (longitude VARCHAR, diameter VARCHAR)"
  },
  {
    "answer": "SELECT namesake FROM table_16768245_2 WHERE longitude = \"189.5W\"",
    "question_en": "What is the namesake of the feature found at 189.5w longitude? ",
    "question_th": " ชื่อของสถานที่ที่พบในลองจิจูด 189.5w คืออะไร",
    "context": "CREATE TABLE table_16768245_2 (namesake VARCHAR, longitude VARCHAR)"
  },
  {
    "answer": "SELECT namesake FROM table_16768245_2 WHERE longitude = \"147.1W\"",
    "question_en": "When the longitude is 147.1w what is the namesake of the feature? ",
    "question_th": " เมื่อลองจิจูดคือ 147.1w ชื่อของคุณลักษณะนี้คืออะไร",
    "context": "CREATE TABLE table_16768245_2 (namesake VARCHAR, longitude VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(longitude) FROM table_16768245_2 WHERE latitude = \"9.9N\"",
    "question_en": "How many longitudes have a latitude of 9.9n?",
    "question_th": "กี่ลองจิจูดมีละติจูด 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_en": "What is the maximum points against when team's points are 10?",
    "question_th": "แต้มสูงสุดเมื่อแต้มของทีมคือ 10 คืออะไร?",
    "context": "CREATE TABLE table_16770037_3 (points INTEGER, pts VARCHAR)"
  },
  {
    "answer": "SELECT MAX(tries_against) FROM table_16770037_3 WHERE team = Bridgend",
    "question_en": "What are the tries against when they played against Bridgend?",
    "question_th": "เมื่อพวกเขาเล่นกับบริดเจนด์มีความพยายามอะไรบ้าง?",
    "context": "CREATE TABLE table_16770037_3 (tries_against INTEGER, team VARCHAR, Bridgend VARCHAR)"
  },
  {
    "answer": "SELECT MIN(tries_for) FROM table_16770037_3",
    "question_en": "What is the smallest number of tries for in a game?",
    "question_th": "จำนวนครั้งในการพยายามน้อยที่สุดในเกมคือเท่าใด?",
    "context": "CREATE TABLE table_16770037_3 (tries_for INTEGER)"
  },
  {
    "answer": "SELECT latitude FROM table_16768245_5 WHERE name = \"Philae Sulcus\"",
    "question_en": "Philae Sulcus has a latitude of what?",
    "question_th": "Philae Sulcus มีละติจูดเท่ากับอะไร?",
    "context": "CREATE TABLE table_16768245_5 (latitude VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_16776312_3 WHERE date = \"12 May 2008\"",
    "question_en": "Name the opponent for 12 may 2008",
    "question_th": "ตั้งชื่อคู่ต่อสู้วันที่ 12 พฤษภาคม 2551",
    "context": "CREATE TABLE table_16776312_3 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(points) FROM table_16788123_5 WHERE team = \"Sportivo Luqueño\"",
    "question_en": "how many points scored by sportivo luqueño",
    "question_th": "สปอร์ติโว ลูเกโน ทำคะแนนได้กี่คะแนน",
    "context": "CREATE TABLE table_16788123_5 (points VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_16795394_3 WHERE team__number2 = \"Atlético Nacional\"",
    "question_en": "For team Atlético Nacional, what were the points?",
    "question_th": "สำหรับทีมแอตเลติโก นาซิอองนาล ได้แต้มอะไรบ้าง?",
    "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_en": "If team two is San Lorenzo, how many were on team one?",
    "question_th": "ถ้าทีมที่สองคือซาน ลอเรนโซ ทีมหนึ่งมีกี่คน",
    "context": "CREATE TABLE table_16795394_3 (team__number1 VARCHAR, team__number2 VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(points) FROM table_16795394_3 WHERE team__number2 = \"Lanús\"",
    "question_en": "If team two is Lanús, what was the total number of points?",
    "question_th": "ถ้าทีมที่ 2 คือ ลานุส ได้คะแนนรวมเท่าไหร่?",
    "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_en": "What is the name origin of Nike Fossae? ",
    "question_th": " Nike Fossae มีที่มาของชื่ออะไร",
    "context": "CREATE TABLE table_16799784_11 (name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_16799784_11 WHERE latitude = \"10.0S\"",
    "question_en": "Which name is at latitude 10.0s?",
    "question_th": "ชื่ออะไรอยู่ที่ละติจูด 10.0?",
    "context": "CREATE TABLE table_16799784_11 (name VARCHAR, latitude VARCHAR)"
  },
  {
    "answer": "SELECT latitude FROM table_16799784_11 WHERE name = \"Yuzut-Arkh Fossae\"",
    "question_en": "At what latitude can the name origin of yuzut-arkh fossae be found?",
    "question_th": "แหล่งกำเนิดของชื่อ yuzut-arkh fossae สามารถพบได้ที่ละติจูดใด",
    "context": "CREATE TABLE table_16799784_11 (latitude VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT latitude FROM table_16799784_11 WHERE name = \"Naijok Fossae\"",
    "question_en": "At what latitude can the name origin of naijok fossae be found?",
    "question_th": "แหล่งกำเนิดของชื่อไนจอก ฟอสเซ่ อยู่ที่ละติจูดใด",
    "context": "CREATE TABLE table_16799784_11 (latitude VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT latitude FROM table_16799784_11 WHERE diameter__km_ = \"500.0\"",
    "question_en": "At what latitude can you find the diameter (km) of 500.0?",
    "question_th": "ที่ละติจูดใดที่คุณหาเส้นผ่านศูนย์กลาง (กม.) ได้ที่ 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_en": "How many numbers are listed under diameter with a lattitude of 5.0n?",
    "question_th": "มีกี่ตัวเลขที่อยู่ในเส้นผ่านศูนย์กลางโดยมีละติจูด 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_en": "What is the name origin with a diameter of 220.0 kilometers?",
    "question_th": "ที่มาของชื่อมีเส้นผ่านศูนย์กลาง 220.0 กิโลเมตร คืออะไร?",
    "context": "CREATE TABLE table_16799784_14 (name VARCHAR, diameter__km_ VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_16799784_14 WHERE longitude = \"246.0E\"",
    "question_en": "What is the name of feature with a longitude 246.0e?",
    "question_th": "ชื่อของสถานที่ที่มีลองจิจูด 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_en": "What is every name origin with the name Ovda Fluctus?",
    "question_th": "ทุกชื่อมีต้นกำเนิดมาจากชื่อ Ovda Fluctus คืออะไร?",
    "context": "CREATE TABLE table_16799784_12 (name VARCHAR)"
  },
  {
    "answer": "SELECT MAX(year_named) FROM table_16799784_12 WHERE name = \"Tie Fluctus\"",
    "question_en": "What is the highest year named for the name Tie Fluctus?",
    "question_th": "ปีสูงสุดที่ชื่อ 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_en": "What is every year named for the latitude of 66.5N?",
    "question_th": "ทุกปีตั้งชื่อตามละติจูด 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_en": "What is every name for longitude of 152.0E?",
    "question_th": "ลองจิจูดของ 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_en": "What is the diameter of the feature with longitude 8.0e?",
    "question_th": "เส้นผ่านศูนย์กลางของจุดสนใจที่มีลองจิจูด 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_en": "What feature is at latitude 23.9S?",
    "question_th": "คุณลักษณะใดที่ละติจูด 23.9S?",
    "context": "CREATE TABLE table_16799784_13 (name VARCHAR, latitude VARCHAR)"
  },
  {
    "answer": "SELECT MAX(year_named) FROM table_16799784_13",
    "question_en": "When was  the most recently named feature named?",
    "question_th": "ฟีเจอร์ที่ถูกตั้งชื่อล่าสุดถูกตั้งชื่อเมื่อใด",
    "context": "CREATE TABLE table_16799784_13 (year_named INTEGER)"
  },
  {
    "answer": "SELECT name FROM table_16799784_2 WHERE latitude = \"36.0N\"",
    "question_en": "Name the name of 36.0n",
    "question_th": "ตั้งชื่อ 36.0n",
    "context": "CREATE TABLE table_16799784_2 (name VARCHAR, latitude VARCHAR)"
  },
  {
    "answer": "SELECT latitude FROM table_16799784_2 WHERE name = \"Laima Tessera\"",
    "question_en": "Name the latitude of laima tessera",
    "question_th": "ตั้งชื่อละติจูดของไลมา เตสเซรา",
    "context": "CREATE TABLE table_16799784_2 (latitude VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT name AS origin FROM table_16799784_2 WHERE longitude = \"54.0E\"",
    "question_en": "Name the name origin for 54.0e",
    "question_th": "ตั้งชื่อที่มาของชื่อสำหรับ 54.0e",
    "context": "CREATE TABLE table_16799784_2 (name VARCHAR, longitude VARCHAR)"
  },
  {
    "answer": "SELECT longitude FROM table_16799784_4 WHERE name = \"Grechukha Tholi\"",
    "question_en": "Grechukha Tholi has what longitude?",
    "question_th": "เกรชุคา โธลี มีลองจิจูดเท่าใด",
    "context": "CREATE TABLE table_16799784_4 (longitude VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_16799784_4 WHERE longitude = \"202.9E\"",
    "question_en": "Where is longitude 202.9e?",
    "question_th": "ลองจิจูด 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_en": "How many schools are named otafuku tholi?",
    "question_th": "มีโรงเรียนกี่แห่งที่มีชื่อว่า 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_en": "What year was Norterma Tholus created?",
    "question_th": "Norterma Tholus สร้างขึ้นในปีใด",
    "context": "CREATE TABLE table_16799784_4 (year_named INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT round1 FROM table_16815824_1 WHERE team = \"Great Britain\"",
    "question_en": "What was Great Britain's Round 1 score?",
    "question_th": "คะแนน Round 1 ของสหราชอาณาจักรเป็นเท่าใด",
    "context": "CREATE TABLE table_16815824_1 (round1 VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT MIN(round4) FROM table_16815824_1 WHERE team = \"team Toshiba\"",
    "question_en": "What was team Toshiba's round 4 score?",
    "question_th": "คะแนนรอบ 4 ของทีมโตชิบาเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_16815824_1 (round4 INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(round2) FROM table_16815824_1",
    "question_en": "What was the highest score for round 2?",
    "question_th": "คะแนนสูงสุดในรอบที่ 2 คืออะไร?",
    "context": "CREATE TABLE table_16815824_1 (round2 INTEGER)"
  },
  {
    "answer": "SELECT round5 FROM table_16815824_1 WHERE total_points = 212",
    "question_en": "What was the round 5 score if the team's total points where 212?",
    "question_th": "คะแนนรอบ 5 เป็นเท่าใด หากคะแนนรวมของทีมอยู่ที่ 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_en": "What is the score for round 2 for team Toshiba?",
    "question_th": "คะแนนรอบ 2 ทีมโตชิบาเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_16815824_1 (round2 VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT name AS origin FROM table_16799784_9 WHERE longitude = \"355.0E\"",
    "question_en": "At the longitude of 355.0e, what is the name origin?",
    "question_th": "ที่ลองจิจูด 355.0e มีที่มาของชื่ออะไร?",
    "context": "CREATE TABLE table_16799784_9 (name VARCHAR, longitude VARCHAR)"
  },
  {
    "answer": "SELECT name AS origin FROM table_16799784_9 WHERE name = \"Morrigan Linea\"",
    "question_en": "What is the name origin of Morrigan Linea?",
    "question_th": "ที่มาของชื่อ Morrigan Linea คืออะไร?",
    "context": "CREATE TABLE table_16799784_9 (name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(year_named) FROM table_16799784_9 WHERE longitude = \"20.0E\"",
    "question_en": "How many years have a longitude measure of 20.0e?",
    "question_th": "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_en": "At a longitude of 293.0e, what is the diameter, in km?",
    "question_th": "ที่ลองจิจูด 293.0e เส้นผ่านศูนย์กลางคือเท่าไร มีหน่วยเป็น 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_en": "What is the release date of the bonus interview with Peter Purves?",
    "question_th": "บทสัมภาษณ์พิเศษของ 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_en": "Which narrator has the bonus interview with Frazer Hines?",
    "question_th": "ผู้บรรยายคนใดมีโบนัสสัมภาษณ์เฟรเซอร์ ไฮนส์",
    "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_en": "What is the release date for Destiny of the Daleks?",
    "question_th": "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_en": "What are the profits of Wells Fargo (in billions)?",
    "question_th": "ผลกำไรของ Wells Fargo (เป็นพันล้าน) คืออะไร?",
    "context": "CREATE TABLE table_1682026_3 (profits__billion_$_ VARCHAR, company VARCHAR)"
  },
  {
    "answer": "SELECT MIN(rank) FROM table_1682026_3 WHERE company = \"BNP Paribas\"",
    "question_en": "What is the ranking of BNP Paribas?",
    "question_th": "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_en": "Where are the headquarters of the company whose sales were 69.2 billion?",
    "question_th": "สำนักงานใหญ่ของบริษัทที่มียอดขาย 69.2 พันล้านอยู่ที่ไหน?",
    "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_en": "What are the assets (in billions) of the company headquartered in China and whose profits are 21.2 billion?",
    "question_th": "สินทรัพย์ (เป็นพันล้าน) ของบริษัทที่มีสำนักงานใหญ่ในประเทศจีนและมีกำไร 21.2 พันล้านคืออะไร?",
    "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_en": "What are the profits (in billions) of the company with a market value of 172.9 billion?",
    "question_th": "กำไร (เป็นพันล้าน) ของบริษัทที่มีมูลค่าตลาด 172.9 พันล้านเป็นเท่าใด",
    "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_en": "What are the profits (in billions) where the assets are 192.8 billion?",
    "question_th": "กำไร (เป็นพันล้าน) โดยที่สินทรัพย์อยู่ที่ 192.8 พันล้านเป็นเท่าใด?",
    "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_en": "Name the total number of index weighting % at 17 january 2013 for bouygues",
    "question_th": "ตั้งชื่อจำนวนดัชนีการถ่วงน้ำหนัก % ทั้งหมด ณ วันที่ 17 มกราคม 2013 สำหรับ 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_en": "Name the icb sector for ai",
    "question_th": "ตั้งชื่อเซกเตอร์ icb สำหรับ 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_en": "Name the company where index weighting % is 11.96",
    "question_th": "ตั้งชื่อบริษัทที่ดัชนีถ่วงน้ำหนัก % คือ 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_en": "Name the index weighting % for 17 januaary 2013 for rno",
    "question_th": "ตั้งชื่อดัชนีการถ่วงน้ำหนัก % สำหรับวันที่ 17 มกราคม 2013 สำหรับ 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_en": "How many headquarters are there listed for HSBC?",
    "question_th": "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_en": "What is the market value in billions when the assets totaled 1,380.88?",
    "question_th": "มูลค่าตลาดเป็นพันล้านเมื่อสินทรัพย์รวม 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_en": "What is the highest rank of a company in the oil and gas industry headquartered in Netherlands?",
    "question_th": "อันดับสูงสุดของบริษัทในอุตสาหกรรมน้ำมันและก๊าซซึ่งมีสำนักงานใหญ่ในประเทศเนเธอร์แลนด์คือบริษัทใด",
    "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_en": "What is the lowest rank of a company with 248.44 billions of dollars in assets?",
    "question_th": "อันดับต่ำสุดของบริษัทที่มีสินทรัพย์ 248.44 พันล้านดอลลาร์คืออะไร?",
    "context": "CREATE TABLE table_1682026_7 (rank INTEGER, assets__billion_$_ VARCHAR)"
  },
  {
    "answer": "SELECT industry FROM table_1682026_7 WHERE sales__billion_$_ = \"89.16\"",
    "question_en": "In what industry was the company that had 89.16 billions of dollars in sales?",
    "question_th": "บริษัทที่มียอดขาย 89.16 พันล้านดอลลาร์ในอุตสาหกรรมใด",
    "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_en": "Name the number of rank for 9.52 profits",
    "question_th": "ตั้งชื่อหมายเลขอันดับกำไร 9.52",
    "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_en": "Name the country for 188.77 market value",
    "question_th": "ตั้งชื่อประเทศตามมูลค่าตลาด 188.77",
    "context": "CREATE TABLE table_1682026_9 (country VARCHAR, market_value__billion_$_ VARCHAR)"
  },
  {
    "answer": "SELECT numeral FROM table_1682865_1 WHERE english_name = \"Florin\"",
    "question_en": "What is the numeral where the English name is Florin?",
    "question_th": "ตัวเลขที่ชื่อภาษาอังกฤษคือฟลอรินคืออะไร?",
    "context": "CREATE TABLE table_1682865_1 (numeral VARCHAR, english_name VARCHAR)"
  },
  {
    "answer": "SELECT £1_fraction FROM table_1682865_1 WHERE reverse = \"Hare\"",
    "question_en": "What is the £1 fraction when the reverse is hare?",
    "question_th": "เศษส่วน 1 ปอนด์เมื่อด้านหลังเป็นกระต่ายเป็นเท่าใด",
    "context": "CREATE TABLE table_1682865_1 (£1_fraction VARCHAR, reverse VARCHAR)"
  },
  {
    "answer": "SELECT introduction FROM table_1682865_1 WHERE numeral = \"6d\"",
    "question_en": "What date was the 6d introduced?",
    "question_th": "6d เปิดตัววันไหน?",
    "context": "CREATE TABLE table_1682865_1 (introduction VARCHAR, numeral VARCHAR)"
  },
  {
    "answer": "SELECT irish_name FROM table_1682865_1 WHERE £1_fraction = \"1/240\"",
    "question_en": "What is the Irish name for the £1 fraction of 1/240?",
    "question_th": "ชื่อไอริชของเศษ 1 ปอนด์ของ 1/240 คืออะไร?",
    "context": "CREATE TABLE table_1682865_1 (irish_name VARCHAR, £1_fraction VARCHAR)"
  },
  {
    "answer": "SELECT reverse FROM table_1682865_1 WHERE £1_fraction = \"1/480\"",
    "question_en": "What is the reverse when the £1 fraction is 1/480?",
    "question_th": "สิ่งที่ตรงกันข้ามเมื่อเศษ 1 ปอนด์คือ 1/480?",
    "context": "CREATE TABLE table_1682865_1 (reverse VARCHAR, £1_fraction VARCHAR)"
  },
  {
    "answer": "SELECT MAX(_number_of_seats_won) FROM table_168482_1",
    "question_en": "What is the largest number of seats won?",
    "question_th": "จำนวนที่นั่งที่ชนะมากที่สุดคือเท่าใด?",
    "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_en": "How many percentages are listed for the election in 1983?",
    "question_th": "มีการระบุรายชื่อสำหรับการเลือกตั้งในปี 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_en": "What place did the party finish in the year when they earned 0.86% of the vote?",
    "question_th": "งานปาร์ตี้จบที่อันดับไหนในปีที่พวกเขาได้รับคะแนนเสียง 0.86%?",
    "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_en": "What is the NCBI Accession Number for the length of 5304bp/377aa?",
    "question_th": "หมายเลขภาคยานุวัติ NCBI สำหรับความยาว 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_en": "What is the NCBI Accession Number of the Homo Sapiens species?",
    "question_th": "หมายเลขภาคยานุวัติ NCBI ของสายพันธุ์ Homo Sapiens คืออะไร?",
    "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_en": "What is the protein identity with a length of 5304bp/377aa?",
    "question_th": "ลักษณะเฉพาะของโปรตีนที่มีความยาว 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_en": "When was \"Tell You When\" released?",
    "question_th": "\"บอกคุณเมื่อ\" เปิดตัวเมื่อไหร่?",
    "context": "CREATE TABLE table_16859758_1 (release_date VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_16864968_7 WHERE game = 62",
    "question_en": "Where was game 62 played? ",
    "question_th": " เกม 62 เล่นที่ไหน?",
    "context": "CREATE TABLE table_16864968_7 (location VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_16864968_7 WHERE opponent = \"Columbus Blue Jackets\"",
    "question_en": "What was the final score when the Maple Leafs played the Columbus Blue Jackets? ",
    "question_th": " คะแนนสุดท้ายเมื่อ Maple Leafs เล่นกับ Columbus Blue Jackets คืออะไร?",
    "context": "CREATE TABLE table_16864968_7 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT network FROM table_16884579_1 WHERE host_s_ = \"Dré Steemans Ann Van Elsen\"",
    "question_en": "Name the network for  dré steemans ann van elsen",
    "question_th": "ตั้งชื่อเครือข่ายสำหรับ dré 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_en": "Name the seasons and winners that airs 28 january 2007",
    "question_th": "ตั้งชื่อฤดูกาลและผู้ชนะที่ออกอากาศวันที่ 28 มกราคม พ.ศ. 2550",
    "context": "CREATE TABLE table_16884579_1 (seasons_and_winners VARCHAR, premiere VARCHAR)"
  },
  {
    "answer": "SELECT host_s_ FROM table_16884579_1 WHERE network = \"Prime\"",
    "question_en": "Name the host for prime",
    "question_th": "ตั้งชื่อโฮสต์เป็นนายก",
    "context": "CREATE TABLE table_16884579_1 (host_s_ VARCHAR, network VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(judges) FROM table_16884579_1 WHERE host_s_ = \"Dré Steemans Ann Van Elsen\"",
    "question_en": "Name the number of judges for  dré steemans ann van elsen",
    "question_th": "ระบุจำนวนกรรมการของ dré 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_en": "Name the website for car number of 92",
    "question_th": "ตั้งชื่อเว็บไซต์รถหมายเลข 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_en": "Name the year started where car number is 55",
    "question_th": "ชื่อปีเริ่มต้นที่รถหมายเลข 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_en": "Name the car number for 1997",
    "question_th": "ตั้งชื่อหมายเลขรถปี 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_en": "Name the nickerie for marowijne being 4.7%",
    "question_th": "ตั้งชื่อ Nickerie สำหรับ marowijne เป็น 4.7%",
    "context": "CREATE TABLE table_16886076_1 (nickerie VARCHAR, marowijne VARCHAR)"
  },
  {
    "answer": "SELECT coronie FROM table_16886076_1 WHERE marowijne = \"6.8%\"",
    "question_en": "Name the coronie for marowijne being 6.8%",
    "question_th": "ตั้งชื่อโคโรนีสำหรับมาโรวิจน์เป็น 6.8%",
    "context": "CREATE TABLE table_16886076_1 (coronie VARCHAR, marowijne VARCHAR)"
  },
  {
    "answer": "SELECT para FROM table_16886076_1 WHERE commewijne = \"1.5%\"",
    "question_en": "Name the para for 1.5% commewijne",
    "question_th": "ตั้งชื่อพาราสำหรับ 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_en": "Name the least amount of races for 2 poles",
    "question_th": "ตั้งชื่อจำนวนการแข่งขันน้อยที่สุดสำหรับ 2 เสา",
    "context": "CREATE TABLE table_16908657_1 (races INTEGER, poles VARCHAR)"
  },
  {
    "answer": "SELECT motorcycle FROM table_16908657_1 WHERE season = 2012",
    "question_en": "Name the motorcycle for season 2012",
    "question_th": "ตั้งชื่อรถจักรยานยนต์สำหรับฤดูกาล 2012",
    "context": "CREATE TABLE table_16908657_1 (motorcycle VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(flaps) FROM table_16908657_1 WHERE points = \"63\"",
    "question_en": "Name the number of flaps for 63 points ",
    "question_th": " ตั้งชื่อจำนวนพนัง 63 คะแนน",
    "context": "CREATE TABLE table_16908657_1 (flaps VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT MIN(flaps) FROM table_16908657_1",
    "question_en": "Name the least flaps",
    "question_th": "ตั้งชื่ออวัยวะเพศหญิงน้อยที่สุด",
    "context": "CREATE TABLE table_16908657_1 (flaps INTEGER)"
  },
  {
    "answer": "SELECT COUNT(p_ret) FROM table_16912000_13 WHERE kr_avg = \"11.3\"",
    "question_en": "How many p.ret are there when kr avg is 11.3 ? ",
    "question_th": " จะมีกี่ p.ret เมื่อ kr เฉลี่ยคือ 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_en": "What is the kr td when mfg lg is 64?",
    "question_th": "kr td คืออะไรเมื่อ mfg lg คือ 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_en": "Who's average is 24.8?",
    "question_th": "ค่าเฉลี่ยใครคือ 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_en": "What is the pr avg, when kr lg is 49?",
    "question_th": "pr avg คืออะไร เมื่อ kr lg คือ 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_en": "what is the population where municipality is san jacinto?",
    "question_th": "เทศบาลซานจาซินโตมีประชากรกี่คน?",
    "context": "CREATE TABLE table_1691800_2 (population__2010_ VARCHAR, municipality VARCHAR)"
  },
  {
    "answer": "SELECT income_class FROM table_1691800_2 WHERE area__km²_ = 75",
    "question_en": "what is the income class for area 75?",
    "question_th": "ชั้นรายได้สำหรับพื้นที่ 75 คืออะไร?",
    "context": "CREATE TABLE table_1691800_2 (income_class VARCHAR, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT area__km²_ FROM table_1691800_2 WHERE municipality = \"Labrador\"",
    "question_en": "what is th area where the municipaity is labrador?",
    "question_th": "พื้นที่ใดที่เทศบาลคือลาบราดอร์?",
    "context": "CREATE TABLE table_1691800_2 (area__km²_ VARCHAR, municipality VARCHAR)"
  },
  {
    "answer": "SELECT municipality FROM table_1691800_2 WHERE area__km²_ = 73",
    "question_en": "what is the municipality where the area is 73?",
    "question_th": "เทศบาลไหนพื้นที่73คือ?",
    "context": "CREATE TABLE table_1691800_2 (municipality VARCHAR, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT equipment FROM table_16941304_4 WHERE bike_no = 6",
    "question_en": "Name the equipment for bike number 6",
    "question_th": "ชื่ออุปกรณ์สำหรับจักรยานหมายเลข 6",
    "context": "CREATE TABLE table_16941304_4 (equipment VARCHAR, bike_no VARCHAR)"
  },
  {
    "answer": "SELECT driver___passenger FROM table_16941304_4 WHERE points = 394",
    "question_en": "Name the driver passenger for 394 points",
    "question_th": "ระบุชื่อคนขับผู้โดยสาร 394 คะแนน",
    "context": "CREATE TABLE table_16941304_4 (driver___passenger VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT equipment FROM table_16941304_4 WHERE bike_no = 3",
    "question_en": "Name the equipment for bike number being 3",
    "question_th": "ตั้งชื่ออุปกรณ์สำหรับจักรยานหมายเลข 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_en": "In district New York 10th, what was the reason for change?",
    "question_th": "ในเขตนิวยอร์ก 10 สาเหตุของการเปลี่ยนแปลงคืออะไร?",
    "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_en": "In the district Wisconsin 2nd, what was the reason for change?",
    "question_th": "ในเขตวิสคอนซินที่ 2 สาเหตุของการเปลี่ยนแปลงคืออะไร?",
    "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_en": "Name the least age 30-39 where age 20-29 is 593",
    "question_th": "ระบุอายุขั้นต่ำ 30-39 ปี โดยอายุ 20-29 ปีคือ 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_en": "Name the least age 40-49",
    "question_th": "ระบุอายุขั้นต่ำ 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_en": "Name the age 30-39 and age 10-19 380",
    "question_th": "ระบุอายุ 30-39 ปี และอายุ 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_en": "Name the score for number 4",
    "question_th": "บอกชื่อคะแนนข้อที่ 4",
    "context": "CREATE TABLE table_16967990_1 (score VARCHAR, _number VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(chester) FROM table_16974228_1 WHERE religion = \"Hindu\"",
    "question_en": "How many numbers were recorded for Chester when the religion was Hindu?",
    "question_th": "เชสเตอร์บันทึกไว้กี่หมายเลขเมื่อศาสนาเป็นศาสนาฮินดู",
    "context": "CREATE TABLE table_16974228_1 (chester VARCHAR, religion VARCHAR)"
  },
  {
    "answer": "SELECT MIN(earnings___) AS $__ FROM table_1697190_2",
    "question_en": "what was Casey Martin's minimum yearly earnings?",
    "question_th": "รายได้ขั้นต่ำต่อปีของ Casey Martin คือเท่าใด",
    "context": "CREATE TABLE table_1697190_2 (earnings___ INTEGER)"
  },
  {
    "answer": "SELECT money_list_rank FROM table_1697190_2 WHERE best_finish = \"T-65\"",
    "question_en": "when Casey Martin's best finish was t-65, where did he land in the money list rankings?",
    "question_th": "เมื่อการจบสกอร์ที่ดีที่สุดของ Casey Martin คือ t-65 เขาอยู่ตรงไหนในการจัดอันดับ money list?",
    "context": "CREATE TABLE table_1697190_2 (money_list_rank VARCHAR, best_finish VARCHAR)"
  },
  {
    "answer": "SELECT MAX(wins) FROM table_1697190_2",
    "question_en": "how many times did Casey Martin win?",
    "question_th": "Casey Martin ชนะกี่ครั้ง?",
    "context": "CREATE TABLE table_1697190_2 (wins INTEGER)"
  },
  {
    "answer": "SELECT COUNT(air_dates) FROM table_16976547_2 WHERE cycle_no = \"05\"",
    "question_en": "Name the total number of air dates for 05 cycle",
    "question_th": "ตั้งชื่อจำนวนวันที่ออกอากาศทั้งหมดสำหรับรอบ 05",
    "context": "CREATE TABLE table_16976547_2 (air_dates VARCHAR, cycle_no VARCHAR)"
  },
  {
    "answer": "SELECT vote FROM table_16976547_2 WHERE eliminated = \"Gigit\"",
    "question_en": "Name the vote for gigit",
    "question_th": "ตั้งชื่อการโหวตให้กับ gigit",
    "context": "CREATE TABLE table_16976547_2 (vote VARCHAR, eliminated VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_16976547_2 WHERE eliminated = \"Patani\"",
    "question_en": "Name the finish for patani",
    "question_th": "ตั้งชื่อส่วนท้ายให้ปาตานี",
    "context": "CREATE TABLE table_16976547_2 (finish VARCHAR, eliminated VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(immunity) FROM table_16976547_2 WHERE cycle_no = \"13\"",
    "question_en": "Name the total number of immunity for cycle number of 13",
    "question_th": "ตั้งชื่อจำนวนภูมิคุ้มกันทั้งหมดสำหรับรอบที่ 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_en": "For the NBC network, what was the new/returning/same network status?",
    "question_th": "สำหรับเครือข่าย NBC สถานะเครือข่ายใหม่/กลับมา/เหมือนเดิมคืออะไร",
    "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_en": "Which show was sent to syndication for its new/returning/same network.",
    "question_th": "รายการใดที่ถูกส่งไปยังองค์กรสำหรับเครือข่ายใหม่/ที่กลับมา/เดิม",
    "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_en": "What is the new/returning/same network name for This Week in Baseball?",
    "question_th": "ชื่อเครือข่ายใหม่/กลับมา/เดิมสำหรับ 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_en": "Which show as previously on The Family Channel?",
    "question_th": "รายการไหนเหมือนเมื่อก่อนทาง 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_en": "Did the name change for the program last aired in 1958?",
    "question_th": "เปลี่ยนชื่อรายการออกอากาศครั้งสุดท้ายเมื่อปี 2501 หรือไม่?",
    "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_en": "What was the rating of the episode with an overall ranking of 190?",
    "question_th": "เรตติ้งของตอนนี้มีเรตติ้งรวม 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_en": "How many were the shares when the viewers reached 3.11 million?",
    "question_th": "ยอดแชร์เมื่อคนดูถึง 3.11 ล้านได้เท่าไร?",
    "context": "CREATE TABLE table_16993379_1 (share VARCHAR, viewers__millions_ VARCHAR)"
  },
  {
    "answer": "SELECT saka_era FROM table_169955_1 WHERE in_malayalam = \"മിഥുനം\"",
    "question_en": "Name the saka era for malayalam മിഥുനം",
    "question_th": "ตั้งชื่อยุคซะกาของมาลายาลัม മിഥുനം",
    "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 = \"കുംഭം\"",
    "question_en": "Name the months in the malayalam era for കുംഭം",
    "question_th": "ตั้งชื่อเดือนในยุคมาลายาลัมสำหรับ കുംഭം",
    "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_en": "Name the sign of zodiac for chithirai",
    "question_th": "ตั้งชื่อราศีให้ชิตถิราย",
    "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_en": "Name the saka era for sign of zodiac being pisces",
    "question_th": "ตั้งชื่อศักราชที่เป็นราศีมีน",
    "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_en": "Name the number of gregorian calenda rof gemini",
    "question_th": "ตั้งชื่อหมายเลขปฏิทินเกรกอเรียน rof ราศีเมถุน",
    "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_en": "For High Assists of Raymond Felton (12), who were the High rebounds?",
    "question_th": "สำหรับการทำแอสซิสต์สูงของเรย์มอนด์ เฟลตัน (12) ใครคือรีบาวด์ที่สูง?",
    "context": "CREATE TABLE table_17001658_10 (high_rebounds VARCHAR, high_assists VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_17001658_10 WHERE team = \"Philadelphia\"",
    "question_en": "On what date was the team Philadelphia?",
    "question_th": "ทีมฟิลาเดลเฟียจัดวันไหน?",
    "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_en": "Who was the high rebound for the high assists of d. j. augustin (8)?",
    "question_th": "ใครคือคนที่รีบาวด์สูงจากแอสซิสต์สูงของ ดีเจ ออกัสติน (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_en": "What was the final score of the game with gerald wallace (14) as the High Rebound?",
    "question_th": "คะแนนสุดท้ายของเกมโดยเจอรัลด์ วอลเลซ (14) เป็นรีบาวด์สูงเท่าไร?",
    "context": "CREATE TABLE table_17001658_10 (record VARCHAR, high_rebounds VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_17001658_5 WHERE game = 15",
    "question_en": "What was the final score in game 15? ",
    "question_th": " คะแนนสุดท้ายในเกมที่ 15 คืออะไร?",
    "context": "CREATE TABLE table_17001658_5 (score VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_17001658_5 WHERE team = \"Miami\"",
    "question_en": "Who had the most assists and how many did they have in the game against Miami? ",
    "question_th": " ใครแอสซิสต์ได้มากที่สุด และพวกเขามีกี่แอสซิสต์ในเกมกับไมอามี?",
    "context": "CREATE TABLE table_17001658_5 (high_assists VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_17001658_8 WHERE game = 55",
    "question_en": "Name the location attendance for game 55",
    "question_th": "ตั้งชื่อสถานที่เข้าร่วมเกม 55",
    "context": "CREATE TABLE table_17001658_8 (location_attendance VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_17001658_7 WHERE game = 46",
    "question_en": "Who got the game high rebounds in game 46?",
    "question_th": "ใครเป็นผู้ทำให้เกมรีบาวด์สูงในเกมที่ 46?",
    "context": "CREATE TABLE table_17001658_7 (high_rebounds VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(score) FROM table_17001658_7 WHERE game = 37",
    "question_en": "How many scores are listed for game 37?",
    "question_th": "มีกี่คะแนนที่ระบุไว้ในเกม 37?",
    "context": "CREATE TABLE table_17001658_7 (score VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_17001658_7 WHERE team = \"Milwaukee\"",
    "question_en": "What date was the opposing team Milwaukee?",
    "question_th": "ทีมตรงข้ามมิลวอกีจัดวันไหน?",
    "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_en": "What is the pressure in ultra high vacuum?",
    "question_th": "แรงดันในสุญญากาศสูงพิเศษคือเท่าไร?",
    "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_en": "what is the nightly rank where the episode number production number is 06 1-06?",
    "question_th": "อันดับคืนที่เลขตอนผลิตคือ 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_en": "what is the number of weekly rank where the total is 1980000?",
    "question_th": "อันดับรายสัปดาห์คือเท่าไร โดยยอดรวมอยู่ที่ 1980000?",
    "context": "CREATE TABLE table_17004367_3 (weekly_rank VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_17001658_9 WHERE game = 70",
    "question_en": "Name the high assists for 70 game",
    "question_th": "ทายซิซิสต์สูงๆ 70 เกม",
    "context": "CREATE TABLE table_17001658_9 (high_assists VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT pe̍h_ōe_jī FROM table_17015_2 WHERE chinese = \"前金區\"",
    "question_en": "Name the pe̍h-ōe-jī  for 前金區",
    "question_th": "ตั้งชื่อ Pe̍h-ōe-ji สำหรับ 前金區",
    "context": "CREATE TABLE table_17015_2 (pe̍h_ōe_jī VARCHAR, chinese VARCHAR)"
  },
  {
    "answer": "SELECT no FROM table_17015_2 WHERE population__2010_ = 171906",
    "question_en": "Name the number where population 2010 is 171906",
    "question_th": "ตั้งชื่อจำนวนประชากรปี 2010 คือ 171906",
    "context": "CREATE TABLE table_17015_2 (no VARCHAR, population__2010_ VARCHAR)"
  },
  {
    "answer": "SELECT tongyong FROM table_17015_2 WHERE chinese = \"湖內區\"",
    "question_en": "Name the tongyong for chinese of  湖內區",
    "question_th": "ตั้งชื่อตองหยงเป็นภาษาจีนของ 湖內區",
    "context": "CREATE TABLE table_17015_2 (tongyong VARCHAR, chinese VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(tongyong) FROM table_17015_2 WHERE hanyu = \"Qiaotou\"",
    "question_en": "Name the tongyong for qiaotou",
    "question_th": "ตั้งชื่อตงหยงสำหรับเฉียวโถว",
    "context": "CREATE TABLE table_17015_2 (tongyong VARCHAR, hanyu VARCHAR)"
  },
  {
    "answer": "SELECT pixels FROM table_1701371_2 WHERE hardware_colours = 8",
    "question_en": "How many pixels would be found in a hardware colour of 8?",
    "question_th": "ฮาร์ดแวร์สี 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_en": "If hardware colours is 8 what would the char cells be?",
    "question_th": "ถ้าสีฮาร์ดแวร์เป็น 8 เซลล์ถ่านจะเป็นสีอะไร",
    "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_en": "Name the year for le confessional",
    "question_th": "ตั้งชื่อปีสำหรับ 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_en": "Name the year for les portes tournantes",
    "question_th": "ตั้งชื่อปีสำหรับ 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_en": "Of the teams that lost 5 games, what is the highest number of wins?",
    "question_th": "จากทีมที่แพ้ 5 เกม ชนะจำนวนสูงสุดคือทีมใด?",
    "context": "CREATE TABLE table_17012578_37 (w INTEGER, l VARCHAR)"
  },
  {
    "answer": "SELECT MAX(Ends) AS lost FROM table_17012578_37",
    "question_en": "What is the highest number of ends lost?",
    "question_th": "จำนวนเอนด์ที่เสียไปมากที่สุดคือเท่าไร?",
    "context": "CREATE TABLE table_17012578_37 (Ends INTEGER)"
  },
  {
    "answer": "SELECT COUNT(Ends) AS won FROM table_17012578_37 WHERE pa = 39",
    "question_en": "How many values are in the ends won cell corresponding to a PA of 39?",
    "question_th": "เซลล์ที่ชนะในตอนท้ายมีค่ากี่ค่าซึ่งสอดคล้องกับ PA ของ 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_en": "Who was Alberta's skip when the shot pct was 88?",
    "question_th": "ใครคือผู้ข้ามของอัลเบอร์ตาเมื่อเปอร์เซ็นต์การยิงคือ 88?",
    "context": "CREATE TABLE table_17012578_6 (skip VARCHAR, shot_pct VARCHAR, province VARCHAR)"
  },
  {
    "answer": "SELECT MAX(pa) FROM table_17012578_6",
    "question_en": "What is the top Points Allowed?",
    "question_th": "คะแนนสูงสุดที่อนุญาตคืออะไร?",
    "context": "CREATE TABLE table_17012578_6 (pa INTEGER)"
  },
  {
    "answer": "SELECT COUNT(pa) FROM table_17012578_6 WHERE blank_ends = 1",
    "question_en": "When the blank ends at 1, what is the PA?",
    "question_th": "เมื่อช่องว่างสิ้นสุดที่ 1 แล้ว PA คืออะไร?",
    "context": "CREATE TABLE table_17012578_6 (pa VARCHAR, blank_ends VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(record) FROM table_17058116_6 WHERE team = \"Charlotte\"",
    "question_en": "How many times did the team play charlotte?",
    "question_th": "ทีมเล่นชาร์ล็อตต์กี่ครั้ง?",
    "context": "CREATE TABLE table_17058116_6 (record VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_17058116_6 WHERE team = \"Charlotte\"",
    "question_en": "What day did the team play charlotte?",
    "question_th": "ทีมเล่นชาร์ล็อตต์วันไหน?",
    "context": "CREATE TABLE table_17058116_6 (date VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_17058116_7 WHERE score = \"L 99–107 (OT)\"",
    "question_en": "When was the game with score l 99–107 (ot)",
    "question_th": "เมื่อเป็นเกมที่มีสกอร์ l 99–107 (ot)",
    "context": "CREATE TABLE table_17058116_7 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_17058116_7 WHERE record = \"20–23\"",
    "question_en": "Where was the game with record 20–23 and how many people attended it",
    "question_th": "เกมนี้มีสถิติ 20–23 อยู่ที่ไหนและมีผู้เข้าร่วมกี่คน",
    "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_en": "Who scored highest rebounds high points is charlie villanueva (32)",
    "question_th": "ผู้ที่ทำแต้มรีบาวด์สูงสุดคือ ชาร์ลี วิลลานูเอวา (32)",
    "context": "CREATE TABLE table_17058116_7 (high_rebounds VARCHAR, high_points VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_17058116_7 WHERE game = 46",
    "question_en": "What is the score of game 46",
    "question_th": "คะแนนของเกมที่ 46 คืออะไร",
    "context": "CREATE TABLE table_17058116_7 (score VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_17058116_5 WHERE date = \"November 2\"",
    "question_en": "Who scored the high points on the date November 2?",
    "question_th": "ใครทำคะแนนสูงสุดในวันที่ 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_en": "In how many locations did Game 13 take place?",
    "question_th": "เกมที่ 13 จัดขึ้นในสถานที่กี่แห่ง?",
    "context": "CREATE TABLE table_17058116_5 (location_attendance VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_17058116_5 WHERE date = \"November 21\"",
    "question_en": "Where was the game that took place in November 21 located and how many attended?",
    "question_th": "เกมที่จัดขึ้นในวันที่ 21 พฤศจิกายน จัดขึ้นที่ไหนและมีผู้เข้าร่วมกี่คน?",
    "context": "CREATE TABLE table_17058116_5 (location_attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_17058178_11 WHERE date = \"April 7\"",
    "question_en": "Name the high reobounds for april 7",
    "question_th": "ตั้งชื่อการรีบาวด์สูงสุดสำหรับวันที่ 7 เมษายน",
    "context": "CREATE TABLE table_17058178_11 (high_rebounds VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(record) FROM table_17058151_7 WHERE game = 43",
    "question_en": "How many games was game 43?",
    "question_th": "เกมที่ 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_en": "Name the total number of high rebounds for february 10",
    "question_th": "ตั้งชื่อจำนวนรีบาวด์สูงทั้งหมดสำหรับวันที่ 10 กุมภาพันธ์",
    "context": "CREATE TABLE table_17058151_8 (high_rebounds VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_17058151_6 WHERE date = \"December 6\"",
    "question_en": "Name the record for december 6",
    "question_th": "ตั้งชื่อบันทึกสำหรับวันที่ 6 ธันวาคม",
    "context": "CREATE TABLE table_17058151_6 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_17058178_8 WHERE game = 38",
    "question_en": "What was the final score in game 38?",
    "question_th": "คะแนนสุดท้ายในเกมที่ 38 คืออะไร?",
    "context": "CREATE TABLE table_17058178_8 (score VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_17058178_8 WHERE date = \"January 2\"",
    "question_en": "Who did the Trail Blazers play on January 2?",
    "question_th": "Trail Blazers เล่นกับใครในวันที่ 2 มกราคม?",
    "context": "CREATE TABLE table_17058178_8 (team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(date) FROM table_17058226_10 WHERE team = \"Phoenix\"",
    "question_en": "On how many dates did the Timberwolves play Phoenix? ",
    "question_th": " Timberwolves เล่นกับ Phoenix กี่วัน?",
    "context": "CREATE TABLE table_17058226_10 (date VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_17058226_10 WHERE date = \"April 3\"",
    "question_en": "What was the Timberwolves' record on April 3? ",
    "question_th": "บันทึกของทิมเบอร์วูล์ฟส์เมื่อวันที่ 3 เมษายนเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_17058226_10 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_17058226_8 WHERE team = \"Utah\"",
    "question_en": "Where are all of Utah's games held and how many have attended?",
    "question_th": "การแข่งขันของยูทาห์จัดขึ้นที่ไหนและมีกี่คนที่เข้าร่วม?",
    "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_en": "Who performed all the high rebounds when craig smith (4) was the lead for high assists?",
    "question_th": "ใครเป็นผู้ทำรีบาวด์สูงทั้งหมดเมื่อเครก สมิธ (4) เป็นผู้นำในการแอสซิสต์สูง?",
    "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_en": "Who had all the high rebounds when kevin love (20) scored the highest points?",
    "question_th": "ใครรีบาวด์สูงไปหมดเมื่อเควิน เลิฟ (20) ทำแต้มสูงสุด?",
    "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_en": "What opposing team was playing when sebastian telfair (7) had the highest assists?",
    "question_th": "ทีมตรงข้ามเล่นทีมใดเมื่อเซบาสเตียน เทลแฟร์ (7) ทำแอสซิสต์สูงสุด?",
    "context": "CREATE TABLE table_17058226_5 (team VARCHAR, high_assists VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_17058226_7 WHERE date = \"January 26\"",
    "question_en": "Name the score for january 26",
    "question_th": "ตั้งชื่อคะแนนสำหรับวันที่ 26 มกราคม",
    "context": "CREATE TABLE table_17058226_7 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_17060277_10 WHERE date = \"April 12\"",
    "question_en": "Who did the high points in the game played on April 12?",
    "question_th": "ใครทำแต้มสูงสุดในเกมที่เล่นเมื่อวันที่ 12 เมษายน?",
    "context": "CREATE TABLE table_17060277_10 (high_points VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_1706942_1 WHERE q1_order = 4",
    "question_en": "What is the constructor when the Q1 order is 4?",
    "question_th": "Constructor คืออะไรเมื่อลำดับ Q1 คือ 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_en": "What is the Q1 order for Felipe Massa?",
    "question_th": "คำสั่งซื้อ Q1 ของ 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_en": "What is the Q1 time for the driver with Q1 order of 6?",
    "question_th": "เวลา Q1 สำหรับผู้ขับขี่ที่มีลำดับ Q1 เป็น 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_en": "How many Q1 figures are given for Alexander Wurz?",
    "question_th": "Alexander Wurz ให้ตัวเลข Q1 กี่ตัว",
    "context": "CREATE TABLE table_1706942_1 (q1_order VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_17060277_5 WHERE game = 12",
    "question_en": "Who all had the most assists in game 12?",
    "question_th": "ใครมีแอสซิสต์มากที่สุดในเกมที่ 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_en": "Which position offers winnings of $4,228,889?",
    "question_th": "ตำแหน่งใดเสนอเงินรางวัล $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_en": "How many poles did team #14 ginn racing have?",
    "question_th": "ทีม#14จินน์เรซซิ่งมีกี่เสา?",
    "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_en": "When the poles are 0 and the position is 14th, how much are the winnings?",
    "question_th": "เมื่อเสาเป็น 0 และตำแหน่งที่ 14 ชนะได้เท่าไหร่?",
    "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_en": "Which start won $1,301,370?",
    "question_th": "ซึ่งเริ่มต้นได้รับรางวัล $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_en": "For team #40 chip ganassi racing which top 5 is the highest where top 10 is 5?",
    "question_th": "สำหรับการแข่งทีม #40 Chip Ganassi 5 อันดับแรกสูงสุด โดย 10 อันดับแรกคือ 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_en": "what is the posisiotn where the start is 3?",
    "question_th": "ตำแหน่งที่จุดเริ่มต้นคือ 3 คืออะไร?",
    "context": "CREATE TABLE table_1708014_2 (position VARCHAR, starts VARCHAR)"
  },
  {
    "answer": "SELECT team_s_ FROM table_1708014_2 WHERE winnings = \"$81,690\"",
    "question_en": "what is the team where winnings is $81,690?",
    "question_th": "ทีมใดที่ชนะรางวัล $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_en": "What was the attendance of the Indiana game?",
    "question_th": "การเข้าร่วมเกม Indiana คืออะไร?",
    "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_en": "What is the trans 2 duration if the biking stage is covered within 58:20?",
    "question_th": "ระยะเวลาของทรานส์ 2 คือเท่าไรหากครอบคลุมระยะการปั่นจักรยานภายใน 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_en": "What is the trans 2 duration if the total time is 1:51:19.45?",
    "question_th": "ระยะเวลาของทรานส์ 2 คือเท่าไร หากเวลาทั้งหมดคือ 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_en": "What was the duration of Daniela Ryf's swimming stage?",
    "question_th": "ระยะว่ายน้ำของ Daniela Ryf คือเท่าไร?",
    "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_en": "How many athletes completed a trans 1 within 0:26?",
    "question_th": "มีนักกีฬากี่คนที่ทำทรานส์ 1 ได้สำเร็จภายในเวลา 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_en": "Who was the athlete that covered biking within 58:52?",
    "question_th": "นักกีฬาที่วิ่งครอบคลุมการปั่นจักรยานในเวลา 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_en": "All high points are team new york.",
    "question_th": "แต้มสูงทั้งหมดคือทีมนิวยอร์ก",
    "context": "CREATE TABLE table_17080868_8 (high_points VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_17080868_8 WHERE date = \"February 12\"",
    "question_en": "February 12 is the date for all location attendance.",
    "question_th": "วันที่ 12 กุมภาพันธ์เป็นวันที่สำหรับการเข้าร่วมสถานที่ทั้งหมด",
    "context": "CREATE TABLE table_17080868_8 (location_attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_17080868_8 WHERE game = 54",
    "question_en": "54 is the game where location attendance are.",
    "question_th": "54 เป็นเกมที่มีการเข้าร่วมสถานที่",
    "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_en": "All high points were record by corey maggette (25).",
    "question_th": "คะแนนสูงสุดทั้งหมดบันทึกโดย 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_en": "what is the total number of attendance where the date is december 29?",
    "question_th": "วันที่ 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_en": "What was the manner in which Petrik Sander departed?",
    "question_th": "Petrik Sander จากไปในลักษณะใด?",
    "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_en": "What was the manner of departure for Edgar Schmitt of the Stuttgarter Kickers?",
    "question_th": "ลักษณะการจากไปของ Edgar Schmitt จาก 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ürgen Kohler\"",
    "question_en": "What was the date of appointment when Jürgen Kohler was the outgoing manager?",
    "question_th": "วันที่ได้รับการแต่งตั้งเมื่อเจอร์เก้น โคห์เลอร์เป็นผู้จัดการทีมที่จะลาออกคือเมื่อใด?",
    "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ürgen Kohler\"",
    "question_en": "How many appointment dates were recorded when Jürgen Kohler was the replaced by?",
    "question_th": "มีการบันทึกวันที่นัดหมายกี่วันเมื่อเจอร์เก้น โคห์เลอร์ถูกแทนที่โดย?",
    "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_en": "What are the swimsuit scores of participants with score 9.366 in interview",
    "question_th": "คะแนนชุดว่ายน้ำของผู้เข้าร่วมที่ได้คะแนน 9.366 ในการสัมภาษณ์เป็นเท่าใด",
    "context": "CREATE TABLE table_17088705_2 (swimsuit VARCHAR, interview VARCHAR)"
  },
  {
    "answer": "SELECT average FROM table_17088705_2 WHERE country = \"Arizona\"",
    "question_en": "State average scores of participants from arizona",
    "question_th": "ระบุคะแนนเฉลี่ยของผู้เข้าร่วมจากแอริโซนา",
    "context": "CREATE TABLE table_17088705_2 (average VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(interview) FROM table_17088705_2 WHERE preliminary = \"8.895\"",
    "question_en": "Number of participants with a score 8.895 in preliminary",
    "question_th": "จำนวนผู้เข้าร่วมด้วยคะแนนเบื้องต้น 8.895",
    "context": "CREATE TABLE table_17088705_2 (interview VARCHAR, preliminary VARCHAR)"
  },
  {
    "answer": "SELECT evening_gown FROM table_17088705_2 WHERE swimsuit = \"8.988\"",
    "question_en": "Evening gown scores of participants with 8.988 swimsuit score",
    "question_th": "คะแนนชุดราตรีของผู้เข้าร่วมด้วยคะแนนชุดว่ายน้ำ 8.988 คะแนน",
    "context": "CREATE TABLE table_17088705_2 (evening_gown VARCHAR, swimsuit VARCHAR)"
  },
  {
    "answer": "SELECT average FROM table_17088705_2 WHERE evening_gown = \"9.226\"",
    "question_en": "What are the average scores of participants with 9.226 in evening gown ",
    "question_th": " คะแนนเฉลี่ยของผู้เข้าร่วมงานแต่งชุดราตรีได้ 9.226 คะแนน",
    "context": "CREATE TABLE table_17088705_2 (average VARCHAR, evening_gown VARCHAR)"
  },
  {
    "answer": "SELECT swimsuit FROM table_17088705_2 WHERE preliminary = \"8.847\"",
    "question_en": "Give swimsuit scores of participants 8.847 in preliminary",
    "question_th": "ให้คะแนนชุดว่ายน้ำของผู้เข้าร่วม 8.847 เบื้องต้น",
    "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_en": "What is the official name of the land with an area of 276.84 km2?",
    "question_th": "ที่ดินที่มีพื้นที่ 276.84 ตารางกิโลเมตรมีชื่ออย่างเป็นทางการว่าอะไร?",
    "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_en": "What is the total number of population in the land with an area of 149.32 km2?",
    "question_th": "จำนวนประชากรทั้งหมดบนพื้นที่ 149.32 ตารางกิโลเมตร เป็นเท่าใด",
    "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_en": "What is the maximum population of the land with an area of 276.84 km2?",
    "question_th": "ที่ดินที่มีพื้นที่ 276.84 ตารางกิโลเมตรมีประชากรสูงสุดเท่าใด",
    "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_en": "What is the land area of Hopewell parish in km2?",
    "question_th": "ตำบลโฮปเวลล์มีเนื้อที่กี่กิโลเมตร?",
    "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_en": "Name the march 27-29 for november 3 being 133",
    "question_th": "ตั้งชื่อวันที่ 27-29 มีนาคม สำหรับวันที่ 3 พฤศจิกายน เป็น 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_en": "Name march 27-29 where january 15-16 is january 15, 1991",
    "question_th": "ชื่อ 27-29 มีนาคม โดยวันที่ 15-16 มกราคม เป็นวันที่ 15 มกราคม 2534",
    "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_en": "Name the january 15-16 where march 27-29 where march 29, 2006",
    "question_th": "ตั้งชื่อวันที่ 15-16 มกราคม ที่ 27-29 มีนาคม ที่ 29 มีนาคม 2549",
    "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–143 (OT)\"",
    "question_en": "Name the number of location attendance for  l 141–143 (ot)",
    "question_th": "ตั้งชื่อจำนวนผู้มาร่วมงาน l 141–143 (ot)",
    "context": "CREATE TABLE table_17102076_10 (location_attendance VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_17102076_10 WHERE date = \"April 1\"",
    "question_en": "Name the record for april 1",
    "question_th": "ตั้งชื่อบันทึกสำหรับวันที่ 1 เมษายน",
    "context": "CREATE TABLE table_17102076_10 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_17102076_10 WHERE score = \"L 98–118 (OT)\"",
    "question_en": "Name the high assists for score being  l 98–118 (ot)",
    "question_th": "ตั้งชื่อแอสซิสต์สูงสำหรับคะแนนเป็น l 98–118 (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_en": "Name the least game for arco arena 13,330",
    "question_th": "ตั้งชื่อเกมที่น้อยที่สุดสำหรับ 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_en": "Name the high rebounds for game 11",
    "question_th": "ตั้งชื่อการรีบาวด์สูงสำหรับเกมที่ 11",
    "context": "CREATE TABLE table_17102076_5 (high_rebounds VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_17102076_5 WHERE score = \"L 92–100 (OT)\"",
    "question_en": "Name the high points for score being  l 92–100 (ot)",
    "question_th": "ตั้งชื่อคะแนนสูงสุดสำหรับคะแนนเป็น l 92–100 (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_en": "Name the team for arco arena 13,685",
    "question_th": "ตั้งชื่อทีม 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_en": "What was the score of game 35?",
    "question_th": "คะแนนของเกม 35 คืออะไร?",
    "context": "CREATE TABLE table_17102076_7 (score VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_17103645_10 WHERE score = \"65-72\"",
    "question_en": "Name the location attendance for score of 65-72",
    "question_th": "ตั้งชื่อสถานที่เข้าร่วมคะแนน 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_en": "Name the record for july 18",
    "question_th": "ตั้งชื่อบันทึกสำหรับวันที่ 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_en": "Name the number of high assists for july 1",
    "question_th": "บอกจำนวนแอสซิสต์สูงประจำวันที่ 1 กรกฎาคม",
    "context": "CREATE TABLE table_17103645_10 (high_assists VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_17103645_10 WHERE game = 19",
    "question_en": "Name the score when game is 19",
    "question_th": "ตั้งชื่อคะแนนเมื่อเกมคือ 19",
    "context": "CREATE TABLE table_17103645_10 (score VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_17103566_1 WHERE team_1 = \"ICL Pakistan\"",
    "question_en": "What is the result when team 1 is ICL Pakistan?",
    "question_th": "ผลเป็นอย่างไรเมื่อทีม 1 คือ 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_en": "What is the match number where the result is ICL World by 8 wickets?",
    "question_th": "หมายเลขการแข่งขันที่ผล ICL World คูณ 8 คืออะไร?",
    "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_en": "What is team 2 where the result is ICL world by 8 wickets?",
    "question_th": "ทีม 2 คืออะไร โดยผล ICL world อยู่ที่ 8 ประตู?",
    "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_en": "Who is man of the match when Team 1 is ICL Pakistan?",
    "question_th": "ใครคือแมนออฟเดอะแมตช์เมื่อทีม 1 คือ 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_en": "How many dates have a Match number of 5?",
    "question_th": "มีกี่วันที่ตรงกับเลข 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_en": "Who is man of the match for match number 5?",
    "question_th": "ใครคือแมนออฟเดอะแมตช์สำหรับคู่ที่ 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_en": "With a score of 68-85, what is the location and attendance?",
    "question_th": "ด้วยคะแนน 68-85 คะแนน สถานที่และการเข้างานเป็นอย่างไร?",
    "context": "CREATE TABLE table_17103729_7 (location_attendance VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_17103729_8 WHERE score = \"64-74\"",
    "question_en": "Name the location of 64-74",
    "question_th": "ตั้งชื่อสถานที่ 64-74",
    "context": "CREATE TABLE table_17103729_8 (location_attendance VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_17103729_8 WHERE game = 25",
    "question_en": "Name the score for game for 25",
    "question_th": "ตั้งชื่อคะแนนสำหรับเกม 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_en": "Name the record for attendance location of palace of auburn hills 15,210",
    "question_th": "ตั้งชื่อบันทึกสถานที่เข้าร่วมพระราชวังออเบิร์นฮิลส์ 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_en": "Name the high rebounds for score of 64-74",
    "question_th": "ตั้งชื่อรีบาวด์สูงด้วยคะแนน 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_en": "Namethe score for july 16",
    "question_th": "แจ้งคะแนนประจำวันที่ 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_en": "Which people had the best 10-year period when Fischer had best 15-year period?",
    "question_th": "คนคนไหนมีช่วงเวลา 10 ปีที่ดีที่สุด ในขณะที่ Fischer มีช่วงเวลา 15 ปีที่ดีที่สุด",
    "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_en": "Which people had the best 10-year period when Capablanca had the best 15-year period?",
    "question_th": "คนคนไหนมีช่วงเวลา 10 ปีที่ดีที่สุด เมื่อ Capablanca มีช่วงเวลา 15 ปีที่ดีที่สุด?",
    "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_en": "Name the record for june 7",
    "question_th": "ตั้งชื่อบันทึกสำหรับวันที่ 7 มิถุนายน",
    "context": "CREATE TABLE table_17104539_9 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_17104539_9 WHERE score = \"W 83-69\"",
    "question_en": "Name the date for the score of w 83-69",
    "question_th": "ตั้งชื่อวันที่คะแนน ส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_en": "Name the record for score of w 76-67",
    "question_th": "ตั้งชื่อสถิติคะแนน 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_en": "What are the scores for games played on september 9?",
    "question_th": "คะแนนของเกมที่เล่นในวันที่ 9 กันยายนเป็นเท่าใด",
    "context": "CREATE TABLE table_17104539_12 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_17104539_12 WHERE record = \"16-17\"",
    "question_en": "What was the score of the game played when the team was 16-17?",
    "question_th": "เกมที่เล่นเมื่อทีมอายุ 16-17 คะแนนเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_17104539_12 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_17104539_12 WHERE game = 32",
    "question_en": "What was the location and where did the team play game number 32?",
    "question_th": "สถานที่อะไร และทีมเล่นเกมหมายเลข 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_en": "Who had a high rebound where the associated record is 11-13?",
    "question_th": "ใครมีการรีบาวด์สูงโดยสถิติที่เกี่ยวข้องคือ 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_en": "On July 8, what was the score?",
    "question_th": "วันที่ 8 ก.ค. สกอร์เป็นไงบ้าง?",
    "context": "CREATE TABLE table_17104539_10 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_17104539_10 WHERE score = \"L 68-60\"",
    "question_en": "Who was the oppenent what the score was L 68-60?",
    "question_th": "ฝ่ายตรงข้ามคือใคร แอล 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_en": "If high assists are under Canty (6) how much would the record be?",
    "question_th": "หากแคนตี้ (6) แอสซิสต์สูงจะอยู่ที่เท่าไร?",
    "context": "CREATE TABLE table_17118657_10 (record VARCHAR, high_assists VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_17118657_10 WHERE score = \"62-70\"",
    "question_en": "If the score is 62-70, what are the high points?",
    "question_th": "ถ้าคะแนนอยู่ที่ 62-70 แต้มสูงสุดคือเท่าไร?",
    "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_en": "On which date was the location/attendance UIC Pavilion 3,829 respectively?",
    "question_th": "สถานที่/ร่วมงาน UIC Pavilion 3,829 ตรงกับวันไหน ?",
    "context": "CREATE TABLE table_17118657_10 (date VARCHAR, location_attendance VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_17118657_10 WHERE high_assists = \"Dupree (6)\"",
    "question_en": "On which date is high assists Dupree (6)?",
    "question_th": "ดูปรี (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_en": "What was the local investment (in $) in the projects of the department with $912,185 BID/PRONAR investment?",
    "question_th": "การลงทุนในท้องถิ่น (เป็นดอลลาร์) ในโครงการของแผนกที่มีการลงทุน BID/PRONAR มูลค่า 912,185 ดอลลาร์คืออะไร",
    "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_en": "How many farmers were included by the department with 32 projects?",
    "question_th": "กรมรวมเกษตรกรจำนวน 32 โครงการ?",
    "context": "CREATE TABLE table_17118006_2 (farmers INTEGER, projects VARCHAR)"
  },
  {
    "answer": "SELECT department FROM table_17118006_2 WHERE irrigated_ha = 2170",
    "question_en": "What department irrigated 2170 Ha?",
    "question_th": "กรมชลประทานอะไร 2170 ฮ่า?",
    "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_en": "What was the BID/PRONAR investment (in $) in the department that included 1326 farmers in its projects?",
    "question_th": "การลงทุน BID/PRONAR (เป็นดอลลาร์) ในแผนกที่รวมเกษตรกร 1,326 รายในโครงการเป็นเท่าใด",
    "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_en": "What was the department that got $626,798 in local investments?",
    "question_th": "แผนกใดที่ได้รับเงินลงทุนในท้องถิ่นจำนวน 626,798 ดอลลาร์",
    "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_en": "What number was the game resulting in a 5-11 record?",
    "question_th": "เกมนี้จบลงด้วยสถิติ 5-11 ที่เป็นหมายเลขใด?",
    "context": "CREATE TABLE table_17118657_8 (game INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(high_assists) FROM table_17118657_8 WHERE score = \"68-60\"",
    "question_en": "How many high assists are listed for the game with a score of 68-60?",
    "question_th": "มีรายการแอสซิสต์สูงกี่รายการสำหรับเกมนี้ด้วยคะแนน 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_en": "In the game resulting in a 5-11 record, who scored the high rebounds?",
    "question_th": "ในเกมสกอร์สกอร์ 5-11 ใครรีบาวด์สูง?",
    "context": "CREATE TABLE table_17118657_8 (high_rebounds VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_17120964_8 WHERE result = \"Won 4-1\"",
    "question_en": "Who was the opponent of the game with final score won 4-1?",
    "question_th": "คู่ต่อสู้ของเกมที่สกอร์สุดท้ายชนะ 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_en": "What was the attendance at the game where Neil Liddiard was Man of the Match?",
    "question_th": "การเข้าร่วมในเกมที่นีล ลิดดิอาร์ดเป็นแมนออฟเดอะแมตช์มีผู้ชมกี่คน?",
    "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_en": "What was the venue of the game that was lost 3-4?",
    "question_th": "สนามเกมที่แพ้ 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_en": "What is the venue of the game with Man of the Match Vaclav Zavoral?",
    "question_th": "สนามแห่งเกมกับ Man of the Match วาคลาฟ ซาวารอล อยู่ที่ไหน?",
    "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_en": "How many attendance figures are given for the game where the final score was lost 5-3?",
    "question_th": "มีการระบุจำนวนผู้เข้าร่วมในเกมที่คะแนนสุดท้ายแพ้ 5-3 เป็นจำนวนเท่าใด",
    "context": "CREATE TABLE table_17120964_8 (attendance VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_17120964_5 WHERE date = \"4th\"",
    "question_en": "Name the opponent for 4th",
    "question_th": "ตั้งชื่อคู่ต่อสู้อันดับที่ 4",
    "context": "CREATE TABLE table_17120964_5 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_17120964_5 WHERE date = \"19th\"",
    "question_en": "Name the venue for 19th date",
    "question_th": "ตั้งชื่อสถานที่สำหรับวันที่ 19",
    "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_en": "Name the result for lukas smital and home",
    "question_th": "ตั้งชื่อผลลัพธ์สำหรับ lukas smital และ 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_en": "Name the man of the match for 24th",
    "question_th": "ตั้งชื่อแมนออฟเดอะแมตช์วันที่ 24",
    "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_en": "Name the man of the maatch for sheffield scimitars",
    "question_th": "ตั้งชื่อชายแห่งแมตช์สำหรับนักดาบเชฟฟิลด์",
    "context": "CREATE TABLE table_17120964_5 (man_of_the_match VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_17120964_6 WHERE date = \"19th\"",
    "question_en": "On the 19th, where was the venue?",
    "question_th": "วันที่ 19 สถานที่จัดงานอยู่ที่ไหน?",
    "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_en": "What was the total attendance during the home game against the Swindon Wildcats?",
    "question_th": "ผู้เข้าชมทั้งหมดในเกมเหย้ากับสวินดอน ไวลด์แคทส์เป็นเท่าใด?",
    "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_en": "On what day was Stuart Potts the Man of the Match?",
    "question_th": "Stuart Potts เป็น 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_en": "At what venue did Alex Mettam/Mark Williams be named Man of the Match?",
    "question_th": "Alex Mettam/Mark Williams ได้รับเลือกให้เป็นแมนออฟเดอะแมตช์ที่สถานที่ใด",
    "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_en": "How many dates did David Savage get man of the match?",
    "question_th": "David Savage ได้แมนออฟเดอะแมตช์กี่วัน?",
    "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_en": "When the attendance was 1568, who was man of the match?",
    "question_th": "เมื่อผู้เข้าร่วมงานคือปี 1568 ใครคือแมนออฟเดอะแมตช์?",
    "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_en": "Who was the man of the match when they lost 2-4?",
    "question_th": "ใครคือแมนออฟเดอะแมตช์ตอนแพ้ 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_en": "what was the competitoin where the opponent is sheffield scimitars?",
    "question_th": "การแข่งขันคืออะไรโดยที่คู่ต่อสู้คือนักดาบเชฟฟิลด์?",
    "context": "CREATE TABLE table_17120964_9 (competition VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_17120964_9 WHERE attendance = \"702\"",
    "question_en": "where was the venue where the attendance was 702?",
    "question_th": "สถานที่จัดงานที่มีผู้เข้าร่วม 702 คนคือที่ไหน?",
    "context": "CREATE TABLE table_17120964_9 (venue VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_17120964_9 WHERE date = \"22nd\"",
    "question_en": "what was the venue where the date was the 22nd?",
    "question_th": "วันที่ 22 คือวันที่อะไร?",
    "context": "CREATE TABLE table_17120964_9 (venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_17120964_9 WHERE date = \"21st\"",
    "question_en": "who was the opponent where the date was the 21st?",
    "question_th": "คู่ต่อสู้คือใคร วันที่ 21 คือวันไหน?",
    "context": "CREATE TABLE table_17120964_9 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_17121262_5 WHERE team = \"Milwaukee\"",
    "question_en": "What is the score for Milwaukee? ",
    "question_th": " มิลวอกีมีคะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_17121262_5 (score VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(record) FROM table_17121262_10 WHERE team = \"Washington\"",
    "question_en": "What was the record against Washington?",
    "question_th": "บันทึกต่อต้านวอชิงตันคืออะไร?",
    "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_en": "If the census ranking is 231 of 5,008, what was the population?",
    "question_th": "หากอันดับการสำรวจสำมะโนประชากรคือ 231 จาก 5,008 ประชากรจะเป็นเท่าใด",
    "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_en": "If the area is 59.73, what is the official name?",
    "question_th": "ถ้าพื้นที่เป็น 59.73 ชื่อทางการคืออะไร?",
    "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_en": "If the census ranking is 693 of 5,008, what is the status?",
    "question_th": "หากอันดับการสำรวจสำมะโนประชากรอยู่ที่ 693 จาก 5,008 สถานะจะเป็นเช่นไร?",
    "context": "CREATE TABLE table_171236_1 (status VARCHAR, census_ranking VARCHAR)"
  },
  {
    "answer": "SELECT census_ranking FROM table_171236_1 WHERE official_name = \"Quispamsis\"",
    "question_en": "With the official name Quispamsis, what is the census ranking?",
    "question_th": "มีชื่ออย่างเป็นทางการว่า Quispamsis อันดับการสำรวจสำมะโนประชากรคืออะไร?",
    "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_en": "What was the population for census ranking 782 of 5,008?",
    "question_th": "จำนวนประชากรสำหรับการสำรวจสำมะโนประชากรอันดับที่ 782 จาก 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_en": "If the area is 34.73, what is the census ranking?",
    "question_th": "หากพื้นที่คือ 34.73 อันดับการสำรวจสำมะโนประชากรคืออะไร?",
    "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_en": "What are the census ranking(s) for a population of 284?",
    "question_th": "การจัดอันดับสำมะโนประชากรสำหรับประชากร 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_en": "What are the census ranking(s) that have an area of 369.25 km2?",
    "question_th": "การจัดอันดับสำมะโนประชากรที่มีพื้นที่ 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_en": "What is the population that has an area of 715.58?",
    "question_th": "ประชากรที่มีพื้นที่ 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_en": "What are that status(es) of saint-jacques?",
    "question_th": "สถานะของแซงต์-ฌาคส์นั้นเป็นอย่างไร?",
    "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_en": "What are the area(s) (km2) for saint-joseph?",
    "question_th": "แซงต์-โจเซฟ มีพื้นที่เท่าใด (km2)?",
    "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_en": "What rank is the parish with 482.81 km^2?",
    "question_th": "ตำบลมีระยะทาง 482.81 กม.^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_en": "What status doe the area with a census ranking of 2,290 of 5,008 have?",
    "question_th": "พื้นที่ที่มีการสำรวจสำมะโนประชากร 2,290 จาก 5,008 มีสถานะเป็นอย่างไร",
    "context": "CREATE TABLE table_171356_2 (status VARCHAR, census_ranking VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(status) FROM table_171356_2 WHERE official_name = \"Gagetown\"",
    "question_en": "How many statuses are listed for the parish officially named Gagetown?",
    "question_th": "มีสถานะกี่สถานะสำหรับตำบลที่มีชื่ออย่างเป็นทางการว่า 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_en": "What is Petersville's census ranking?",
    "question_th": "การจัดอันดับการสำรวจสำมะโนประชากรของ Petersville คืออะไร?",
    "context": "CREATE TABLE table_171356_2 (census_ranking VARCHAR, official_name VARCHAR)"
  },
  {
    "answer": "SELECT population FROM table_171361_1 WHERE status = \"City\"",
    "question_en": "What is the population of each community with city status?",
    "question_th": "แต่ละชุมชนที่มีสถานะเป็นเมืองมีจำนวนประชากรเท่าใด",
    "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_en": "What is the name of the community with an area of 30.75 sq. km.?",
    "question_th": "ชุมชนที่มีพื้นที่ 30.75 ตร.กม. ชื่ออะไร?",
    "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_en": "What is the area of the community with a population of 1209?",
    "question_th": "พื้นที่ชุมชนที่มีประชากร 1,209 คน คือพื้นที่ใด?",
    "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_en": "How many population values are listed for the community with an area of 10.25 sq.km.?",
    "question_th": "ชุมชนพื้นที่ 10.25 ตร.กม. ระบุได้กี่ค่า?",
    "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_en": "Name the region 1 where region 4 for april 2, 2009",
    "question_th": "ตั้งชื่อภูมิภาค 1 โดยที่ ภูมิภาค 4 สำหรับวันที่ 2 เมษายน 2552",
    "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_en": "Name the region 1 for episode number 13",
    "question_th": "ตั้งชื่อภูมิภาค 1 สำหรับตอนที่ 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_en": "How many episodes have the season number of 1?",
    "question_th": "ซีซั่นที่ 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_en": "Who was the director of the film with the original title of \"The Patience Stone\"? ",
    "question_th": " ใครเป็นผู้กำกับภาพยนตร์เรื่องนี้ซึ่งมีชื่อดั้งเดิมว่า \"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_en": "For what ceremony was \"Fire Dancer\" not nominated? ",
    "question_th": " “นักเต้นระบำไฟ” ไม่ได้รับการเสนอชื่อเข้าชิงในพิธีใด?",
    "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_en": "What name was used for nomination for the film with an original title of \"The Black Tulip\"? ",
    "question_th": " ชื่ออะไรที่ใช้ในการเสนอชื่อเข้าชิงภาพยนตร์เรื่องนี้ซึ่งมีชื่อดั้งเดิมว่า \"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_en": "What languages were spoken in the film \"FireDancer\"?",
    "question_th": "ภาพยนตร์เรื่อง \"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_en": "Who was the director of the film with an original title of \"16 Days in Afghanistan\"? ",
    "question_th": " ใครเป็นผู้กำกับภาพยนตร์เรื่องนี้ซึ่งมีชื่อดั้งเดิมว่า \"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_en": "what is the model where the method is ha?",
    "question_th": "รุ่นไหนมีวิธีการอะไรฮ่า?",
    "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_en": "what is the total number of model wehre the status is named geneva?",
    "question_th": "จำนวนรุ่นทั้งหมดที่มีสถานะชื่อเจนีวาคือเท่าไร?",
    "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_en": "what is the max fs where the status is status and the method is method?",
    "question_th": "fs สูงสุดคืออะไรโดยที่สถานะเป็นสถานะและวิธีการเป็นวิธีการ?",
    "context": "CREATE TABLE table_17157367_1 (max_fs VARCHAR)"
  },
  {
    "answer": "SELECT output FROM table_17157367_1 WHERE short_description = \"massive\"",
    "question_en": "what ist he output where the short description is massive?",
    "question_th": "เขาให้ผลลัพธ์อะไรโดยที่คำอธิบายสั้น ๆ มีขนาดใหญ่มาก?",
    "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 = \"শ্যামল ছায়া (Shyamol Chhaya)\"",
    "question_en": "What was the nominated film title of শ্যামল ছায়া (shyamol chhaya)?",
    "question_th": "ชื่อภาพยนตร์ที่ได้รับการเสนอชื่อเข้าชิงของ শ্যামল ছায়া (shyamal chahaya) คืออะไร",
    "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 = \"বৃত্তের বাইরে (Britter Baire)\"",
    "question_en": "What year and ceremony was the original title  বৃত্তের বাইরে (britter baire)?",
    "question_th": "ชื่อเดิม বৃত্তের বাইরে (บริตเทอร์ แบร์) เป็นชื่อดั้งเดิมของปีและพิธีใด",
    "context": "CREATE TABLE table_17156199_1 (year__ceremony_ VARCHAR, original_title VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(year__ceremony_) FROM table_17156199_1 WHERE original_title = \"স্বপ্নডানায় (Swopnodanay)\"",
    "question_en": "How many years was the original title was স্বপ্নডানায় (swopnodanay)?",
    "question_th": "ชื่อเดิมคือ স্বপ্নডনায় (swopnodanay) กี่ปี?",
    "context": "CREATE TABLE table_17156199_1 (year__ceremony_ VARCHAR, original_title VARCHAR)"
  },
  {
    "answer": "SELECT nickname FROM table_1715730_2 WHERE founded = 1902",
    "question_en": "what is the nickname founded in 1902?",
    "question_th": "ชื่อเล่นที่ตั้งขึ้นในปี 1902 คืออะไร?",
    "context": "CREATE TABLE table_1715730_2 (nickname VARCHAR, founded VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_1715730_2 WHERE enrollment = 4259",
    "question_en": "where is the enrollment 4259?",
    "question_th": "การลงทะเบียน 4259 อยู่ที่ไหน?",
    "context": "CREATE TABLE table_1715730_2 (location VARCHAR, enrollment VARCHAR)"
  },
  {
    "answer": "SELECT founded FROM table_1715730_2 WHERE institution = \"Union University\"",
    "question_en": "what is the year union university was founded?",
    "question_th": "มหาวิทยาลัยสหพันธ์ก่อตั้งเมื่อปีใด?",
    "context": "CREATE TABLE table_1715730_2 (founded VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT _percentage_2011 FROM table_1717824_1 WHERE province = \"Manitoba\"",
    "question_en": "What was the percentage in Manitoba in 2011?",
    "question_th": "เปอร์เซ็นต์ในแมนิโทบาในปี 2554 คือเท่าใด",
    "context": "CREATE TABLE table_1717824_1 (_percentage_2011 VARCHAR, province VARCHAR)"
  },
  {
    "answer": "SELECT province FROM table_1717824_1 WHERE south_asians_2001 = 210295",
    "question_en": "Which province had population of 210295 South Asians in 2001?",
    "question_th": "จังหวัดใดมีประชากรชาวเอเชียใต้ 210,295 คนในปี 2544",
    "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_en": "What was the South Asian population in Nova Scotia in 2001?",
    "question_th": "ประชากรชาวเอเชียใต้ในโนวาสโกเชียในปี 2544 เป็นจำนวนเท่าใด",
    "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_en": "What was the percentage in 2011 of the province that had 2.4% population in 2001?",
    "question_th": "จังหวัดที่มีประชากร 2.4% ในปี พ.ศ. 2554 คิดเป็นร้อยละเท่าใด",
    "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_en": "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?",
    "question_th": "มีการระบุตัวเลขจำนวนเท่าใดสำหรับจำนวนชาวเอเชียใต้ทั้งหมดในปี 2544 สำหรับพื้นที่ที่พวกเขาคิดเป็น 4.4% ของประชากรในปี 2554",
    "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_en": "How many Indians were admitted in 2001?",
    "question_th": "ในปี 2544 มีชาวอินเดียเข้าศึกษากี่คน?",
    "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_en": "What is the greatest number of Pakistanis admitted to Canada during those times when the number of Nepalis admitted was 627?",
    "question_th": "ชาวปากีสถานจำนวนมากที่สุดที่เข้ารับการรักษาในแคนาดาในช่วงเวลาดังกล่าวคือจำนวนชาวเนปาลที่เข้ารับการรักษาคือ 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_en": "What is the most number of Indians admitted to Canada when the number of Sri Lankans admitted was 3104?",
    "question_th": "ชาวอินเดียจำนวนมากที่สุดที่เข้ารับการรักษาในแคนาดาเมื่อจำนวนชาวศรีลังกาที่เข้ารับการรักษาคือ 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_en": "Name the driver/passenger for 30",
    "question_th": "ระบุชื่อผู้ขับขี่/ผู้โดยสาร จำนวน 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_en": "Name the max bike number of position for 30",
    "question_th": "ตั้งชื่อจำนวนจักรยานสูงสุดของตำแหน่งสำหรับ 30",
    "context": "CREATE TABLE table_17176509_4 (bike_no INTEGER, position VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_17190012_12 WHERE game = 4",
    "question_en": "Who had the most points in game 4?",
    "question_th": "ใครมีคะแนนมากที่สุดในเกมที่ 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_en": "Name the number of going to for  thurlby, braceborough spa at departure being 16.50",
    "question_th": "ระบุหมายเลขที่จะไป thurlby, เบรซโบโร สปา เวลาออกเดินทาง 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_en": "Name the departure for spalding",
    "question_th": "ตั้งชื่อการออกเดินทางสำหรับสปัลดิง",
    "context": "CREATE TABLE table_17200372_2 (departure VARCHAR, going_to VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_17190012_7 WHERE record = \"27–5\"",
    "question_en": "who scored highest points on the game with record 27–5",
    "question_th": "ผู้ทำคะแนนสูงสุดในเกมด้วยสถิติ 27–5",
    "context": "CREATE TABLE table_17190012_7 (high_points VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_17190012_7 WHERE score = \"W 105–88 (OT)\"",
    "question_en": "who did highest rebounds in the game with score w 105–88 (ot)",
    "question_th": "ที่ทำรีบาวด์สูงสุดในเกมด้วยคะแนน 105–88 (ot)",
    "context": "CREATE TABLE table_17190012_7 (high_rebounds VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(record) FROM table_17190012_7 WHERE score = \"W 121–119 (OT)\"",
    "question_en": "how many records were made on the game that ended with score w 121–119 (ot)",
    "question_th": "มีกี่บันทึกในเกมที่จบลงด้วยคะแนน 121–119 (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_en": "What was the team's position when the new manager was Lucas Alcaraz?",
    "question_th": "ตำแหน่งผู้จัดการทีมคนใหม่คือ ลูคัส อัลการาซ อยู่ตำแหน่งไหน?",
    "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é Ángel Ziganda\"",
    "question_en": "Who replaced outgoing manager José Ángel Ziganda?",
    "question_th": "ใครเข้ามาแทนที่ผู้จัดการทีมที่กำลังจะหมดวาระ โฮเซ่ อังเคล ซิกันดา?",
    "context": "CREATE TABLE table_17201869_3 (replaced_by VARCHAR, outgoing_manager VARCHAR)"
  },
  {
    "answer": "SELECT grid FROM table_17244483_1 WHERE points = \"19\"",
    "question_en": "What grid did the driver who earned 19 points start at?",
    "question_th": "นักแข่งที่ได้รับ 19 คะแนนเริ่มต้นที่กริดใด",
    "context": "CREATE TABLE table_17244483_1 (grid VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(grid) FROM table_17244483_1 WHERE driver = \"Scott Dixon\"",
    "question_en": "Scott Dixon had how many Grid positions?",
    "question_th": "สก็อตต์ ดิ๊กสันมีตำแหน่งกริดกี่ตำแหน่ง?",
    "context": "CREATE TABLE table_17244483_1 (grid VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT time_retired FROM table_17244483_1 WHERE car_no = 15",
    "question_en": "Car number 15 earned what time?",
    "question_th": "รถหมายเลข 15 ได้กี่โมง?",
    "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_en": "How many positions did the car with a final time of +10.8098 finish in?",
    "question_th": "รถที่มีเวลาสุดท้าย +10.8098 เข้าเส้นชัยได้กี่ตำแหน่ง?",
    "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_en": "Darren Manning finished in what position?",
    "question_th": "Darren Manning จบในตำแหน่งไหน?",
    "context": "CREATE TABLE table_17244483_1 (fin_pos INTEGER, driver VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_17246160_1 WHERE team = \"Josef Kaufmann Racing\"",
    "question_en": "What was the position for the Josef Kaufmann Racing team?",
    "question_th": "ตำแหน่งของทีม Josef Kaufmann Racing คืออะไร?",
    "context": "CREATE TABLE table_17246160_1 (position VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(poles) FROM table_17246160_1 WHERE series = \"Formula BMW Pacific\"",
    "question_en": "How many poles did the player have during the Formula BMW Pacific race?",
    "question_th": "ผู้เล่นมีโพลกี่อันในระหว่างการแข่งขัน Formula BMW Pacific",
    "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_en": "Which season did he have 0 points and 31st position?",
    "question_th": "ฤดูกาลไหนที่เขามี 0 แต้มและอันดับที่ 31?",
    "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_en": "How many wins did the player have in the Formula BMW World Final?",
    "question_th": "ผู้เล่นได้รับชัยชนะในการแข่งขัน 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_en": "On what date was the episode aired where event 2 was Hang Tough?",
    "question_th": "ตอนที่ออกอากาศวันไหนที่งาน 2 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_en": "When event 4 was Whiplash, what was event 2?",
    "question_th": "เมื่อเหตุการณ์ที่ 4 เป็น Whiplash เหตุการณ์ที่ 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_en": "On how many different dates was event 1 Suspension Bridge?",
    "question_th": "สะพานแขวน ครั้งที่ 1 จัดขึ้นกี่วัน?",
    "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_en": "On which episode number is event 4 The Wall and event 1 the Pendulum?",
    "question_th": "เหตุการณ์ที่ 4 The Wall และเหตุการณ์ที่ 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_en": "What was event 2 when event 1 was Atlasphere?",
    "question_th": "เหตุการณ์ที่ 2 คืออะไร ในเมื่อเหตุการณ์ที่ 1 คือ 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_en": "What is the car number driven by Darren Manning?",
    "question_th": "หมายเลขรถที่ขับโดย 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_en": "Which position earned 50 points?",
    "question_th": "ตำแหน่งใดได้รับ 50 คะแนน?",
    "context": "CREATE TABLE table_17256857_1 (fin_pos INTEGER, points VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(grid) FROM table_17256857_1 WHERE driver = \"Vitor Meira\"",
    "question_en": "How many drivers on the grid are called Vitor Meira?",
    "question_th": "มีคนขับกี่คนบนกริดที่เรียกว่า Vitor Meira",
    "context": "CREATE TABLE table_17256857_1 (grid VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT MIN(result) FROM table_17265535_7 WHERE equation = \"0 × 9² + 3 × 9 + 3\"",
    "question_en": "If the equation is 0 × 9² + 3 × 9 + 3, what is the result?",
    "question_th": "หากสมการคือ 0 × 9² + 3 × 9 + 3 ผลลัพธ์จะเป็นอย่างไร",
    "context": "CREATE TABLE table_17265535_7 (result INTEGER, equation VARCHAR)"
  },
  {
    "answer": "SELECT MAX(3 AS rd_throw) FROM table_17265535_7 WHERE equation = \"6 × 9² + 6 × 9 + 6\"",
    "question_en": "If the equation is 6 × 9² + 6 × 9 + 6, what is the 3rd throw?",
    "question_th": "หากสมการคือ 6 × 9² + 6 × 9 + 6 การโยนครั้งที่ 3 จะเท่ากับเท่าใด",
    "context": "CREATE TABLE table_17265535_7 (equation VARCHAR)"
  },
  {
    "answer": "SELECT MIN(2 AS nd_throw) FROM table_17265535_7 WHERE equation = \"8 × 9² + 8 × 9 + 8\"",
    "question_en": "If the equation is 8 × 9² + 8 × 9 + 8, what is the 2nd throw?",
    "question_th": "หากสมการคือ 8 × 9² + 8 × 9 + 8 การโยนครั้งที่ 2 จะเท่ากับเท่าใด",
    "context": "CREATE TABLE table_17265535_7 (equation VARCHAR)"
  },
  {
    "answer": "SELECT 2 AS nd_throw FROM table_17265535_7 WHERE equation = \"1 × 9² + 4 × 9 + 0\"",
    "question_en": "If the equation is 1 × 9² + 4 × 9 + 0, what is the 2nd throw?",
    "question_th": "หากสมการคือ 1 × 9² + 4 × 9 + 0 การโยนครั้งที่ 2 จะเท่ากับเท่าใด",
    "context": "CREATE TABLE table_17265535_7 (equation VARCHAR)"
  },
  {
    "answer": "SELECT MAX(2 AS nd_throw) FROM table_17265535_7 WHERE equation = \"6 × 9² + 6 × 9 + 6\"",
    "question_en": "If the equation is  6 × 9² + 6 × 9 + 6, what is the 2nd throw?",
    "question_th": "หากสมการคือ 6 × 9² + 6 × 9 + 6 การโยนครั้งที่ 2 จะเท่ากับเท่าใด",
    "context": "CREATE TABLE table_17265535_7 (equation VARCHAR)"
  },
  {
    "answer": "SELECT 2 AS nd_leg FROM table_17282875_3 WHERE team__number1 = \"San Lorenzo\"",
    "question_en": "When they played San Lorenzo, what was the score of the second leg?",
    "question_th": "ตอนเจอซาน ลอเรนโซ่ นัดสองสกอร์เท่าไหร่?",
    "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_en": "When they played Universidad de Chile, what was the score of the first leg?",
    "question_th": "ตอนที่พวกเขาเล่น Universidad de Chile เลกแรกได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_17282875_3 (team__number2 VARCHAR)"
  },
  {
    "answer": "SELECT team__number2 FROM table_17282875_3 WHERE team__number1 = \"San Lorenzo\"",
    "question_en": "Who played San Lorenzo?",
    "question_th": "ใครเล่นซาน ลอเรนโซ?",
    "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_en": "Who played River Plate?",
    "question_th": "ใครเล่นริเวอร์เพลท?",
    "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_en": "What was the score on the 1st leg if the team 2 is botafogo?",
    "question_th": "ในเลกแรกถ้าทีม 2 คือ โบตาโฟโก้ สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_17282875_2 (team__number2 VARCHAR)"
  },
  {
    "answer": "SELECT team__number2 FROM table_17282875_2 WHERE team__number1 = \"Vitória\"",
    "question_en": "Who played against team 1 Vitória?",
    "question_th": "ใครเล่นกับทีม 1 วิตอเรีย?",
    "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_en": "Who played against team 1 Liverpool? ",
    "question_th": " ใครเล่นกับทีม 1 ลิเวอร์พูลบ้าง?",
    "context": "CREATE TABLE table_17282875_2 (team__number2 VARCHAR, team__number1 VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_17282875_2 WHERE team__number2 = \"Deportivo Anzoátegui\"",
    "question_en": "What was the game's points against Team 2 Deportivo Anzoátegui?",
    "question_th": "แต้มของเกมกับทีม 2 เดปอร์ติโบ อันโซอาเตกี คืออะไร?",
    "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_en": "How many different items appear in the high points column when the location attendance was US Airways Center 18,422?",
    "question_th": "มีรายการที่แตกต่างกันกี่รายการที่ปรากฏในคอลัมน์คะแนนสูงเมื่อผู้เข้าร่วมสถานที่คือ 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_en": "What was the high assists on April 7?",
    "question_th": "แอสซิสต์สูงสุดในวันที่ 7 เมษายนเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_17288825_10 (high_assists VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_17288825_7 WHERE date = \"January 25\"",
    "question_en": "What is the score for the game played on January 25?",
    "question_th": "สกอร์เกมที่เล่นวันที่ 25 มกราคม เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_17288825_7 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_17288825_7 WHERE date = \"January 19\"",
    "question_en": "What is the record for the team on January 19?",
    "question_th": "สถิติของทีมเมื่อวันที่ 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_en": "How many times did Ron Artest (24) receive the record for high points?",
    "question_th": "รอน อาร์เตสต์ (24) รับสถิติคะแนนสูงสุดกี่ครั้ง?",
    "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_en": "At what location and what was the attendance when Rafer Alston (10) achieved high assists? ",
    "question_th": " ราเฟอร์ อัลสตัน (10) ทำแอสซิสต์ได้สูง ณ ตำแหน่งใดและผู้ชมมีส่วนร่วมเท่าใด",
    "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_en": "At what game number was the attendance at Conseco Fieldhouse 14,486?",
    "question_th": "การเข้าร่วมที่คอนเซโก ฟิลด์เฮาส์ ในเกมที่หมายเลขใด 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_en": "What is the number of the game that was played on January 19?",
    "question_th": "เกมที่เล่นเมื่อวันที่ 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_en": "Name the record for verizon center 20,173",
    "question_th": "ตั้งชื่อเรกคอร์ดสำหรับ 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–91 (OT)\"",
    "question_en": "Name the date for score  l 89–91 (ot)",
    "question_th": "ตั้งชื่อวันที่สำหรับคะแนน l 89–91 (ot)",
    "context": "CREATE TABLE table_17288845_8 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_17288861_5 WHERE team = \"Cleveland\"",
    "question_en": "What was the team record when the team was Cleveland?",
    "question_th": "บันทึกของทีมเมื่อครั้งเป็นทีมคลีฟแลนด์คืออะไร?",
    "context": "CREATE TABLE table_17288861_5 (record VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_17288861_9 WHERE score = \"L 93–103 (OT)\"",
    "question_en": "Name the high assists for  l 93–103 (ot)",
    "question_th": "ตั้งชื่อแอสซิสต์สูงสำหรับ l 93–103 (ot)",
    "context": "CREATE TABLE table_17288861_9 (high_assists VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_17288869_6 WHERE game = 21",
    "question_en": "What was the date of game 21?",
    "question_th": "เกมที่ 21 วันที่เท่าไหร่?",
    "context": "CREATE TABLE table_17288869_6 (date VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT round_of_32 FROM table_17289604_38 WHERE athlete = \"Nicole Vaidišová\"",
    "question_en": "What were the results for round of 32 for  Nicole Vaidišová?",
    "question_th": "ผลการแข่งขันรอบ 32 ทีมของ Nicole Vaidišová เป็นอย่างไรบ้าง?",
    "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–2, 3–6, 5–7\"",
    "question_en": "How many number of athletes were in round of 64 was llagostera Vives ( esp ) l 6–2, 3–6, 5–7?",
    "question_th": "ลาโกสเตรา วิเวส (โดยเฉพาะ) ในรอบ 64 มีนักกีฬากี่คน 6–2, 3–6, 5–7?",
    "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–6, 6–1, 7–5\"",
    "question_en": "What was round of 16 when in round 32 it was  koryttseva ( ukr ) w 2–6, 6–1, 7–5?",
    "question_th": "รอบ 16 ทีมสุดท้ายคืออะไรเมื่อในรอบ 32 เป็นโคริตต์เซวา ( ukr ) กับ 2–6, 6–1, 7–5?",
    "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šová\"",
    "question_en": "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šová?",
    "question_th": "การแข่งขันประเภทเดี่ยวรอบ 64 ทีมคืออะไรเมื่อผลรอบ 16 ไม่ผ่านเข้ารอบและนักกีฬาคือ Iveta Benešová",
    "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–4, 5–7, 1–6\"",
    "question_en": "What were the quarterfinals in the round of 32 was  S williams / V williams ( usa ) l 6–4, 5–7, 1–6?",
    "question_th": "รอบก่อนรองชนะเลิศในรอบ 32 ทีมสุดท้ายคือ เอส วิลเลียมส์ / วี วิลเลียมส์ (สหรัฐอเมริกา) แพ้ 6–4, 5–7, 1–6?",
    "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_en": "On what day did Dirk Nowitzki (14) have a high rebound? ",
    "question_th": " เดิร์ก โนวิตซกี้ (14) ดีดตัวสูงในวันไหน?",
    "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_en": "High points earned by Josh Howard (19) resulted in how many high rebounds?",
    "question_th": "Josh Howard (19) คะแนนสูงสุดที่ได้รับส่งผลให้มีการรีบาวด์สูงกี่คะแนน?",
    "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_en": "Who had the high assists while Erick Dampier (8) had the high rebounds?",
    "question_th": "ใครทำแอสซิสต์ได้สูง ในขณะที่เอริค แดมเปียร์ (8) รีบาวด์สูง?",
    "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_en": "Who had the high points while Dirk Nowitzki (13) had the high rebounds?",
    "question_th": "ใครมีแต้มสูงในขณะที่เดิร์ก โนวิตซกี้ (13) รีบาวด์สูง?",
    "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_en": "What was the final record for the game in which Dirk Nowitzki (19) had the high points?",
    "question_th": "อะไรคือสถิติสุดท้ายของเกมที่เดิร์ก โนวิตซกี้ (19) มีแต้มสูง?",
    "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_en": "Which championship had the final opponents of nathalie dechy andy ram?",
    "question_th": "แชมป์รายการใดมีคู่ต่อสู้คนสุดท้ายของ 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_en": "What is the upstream speed of the network that costs 39 tl?",
    "question_th": "ความเร็วอัปสตรีมของเครือข่ายที่มีราคา 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_en": "How many upstream speeds are there for downstream of 20 mbit/s and bandwidth of 40 gb?",
    "question_th": "มีความเร็วอัปสตรีมสำหรับดาวน์สตรีม 20 mbit/s และแบนด์วิดท์ 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_en": "What is the upstream speed that you get for 89 tl?",
    "question_th": "ความเร็วอัปสตรีมที่คุณได้รับสำหรับ 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_en": "What is the bandwidth for downstream of 20 mbit/s for 69 tl?",
    "question_th": "แบนด์วิดท์สำหรับดาวน์สตรีม 20 mbit/s สำหรับ 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_en": "What was the year when West Manila has a tariff increase of 6.5?",
    "question_th": "ปีที่มะนิลาตะวันตกขึ้นภาษี 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_en": "Of the times the Broncos played the Cincinnati Bengals, what was the highest attendance?",
    "question_th": "ในสมัยที่บรองโกส์พบกับซินซินเนติ เบงกอลส์ มีผู้ชมมากที่สุดทีมใด?",
    "context": "CREATE TABLE table_17294353_1 (attendance INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_17294353_1 WHERE opponent = \"Miami Dolphins\"",
    "question_en": "When did the Broncos play the Miami Dolphins?",
    "question_th": "Broncos เล่น Miami Dolphins เมื่อไร?",
    "context": "CREATE TABLE table_17294353_1 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_17294353_1 WHERE attendance = 18304",
    "question_en": "In the game with an attendance of 18304, what was the final score?",
    "question_th": "ในเกมที่มีผู้ชม 18304 คะแนน สุดท้ายเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_17294353_1 (result VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(max_pressure) FROM table_173103_1 WHERE cartridge = \".380 ACP\"",
    "question_en": "How many pressure figures are given for the .380 acp cartridge?",
    "question_th": "คาร์ทริดจ์ .380 acp มีตัวเลขแรงกดจำนวนเท่าใด",
    "context": "CREATE TABLE table_173103_1 (max_pressure VARCHAR, cartridge VARCHAR)"
  },
  {
    "answer": "SELECT max_pressure FROM table_173103_1 WHERE muzzle_energy = \"201ft•lbf (273 J)\"",
    "question_en": "What is the max pressure of the cartridge where the muzzle energy is 201ft•lbf (273 j)?",
    "question_th": "แรงดันสูงสุดของคาร์ทริดจ์โดยที่พลังงานปากกระบอกปืนอยู่ที่ 201ft•lbf (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_en": "What is the max pressure of the .38 long colt cartridge?",
    "question_th": "แรงดันสูงสุดของกระสุนโคลท์ยาว .38 คือเท่าไร?",
    "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_en": "What is the bullet weight when the max pressure is 12,000 cup?",
    "question_th": "น้ำหนักกระสุนเมื่อความดันสูงสุด 12,000 ถ้วยเป็นเท่าใด?",
    "context": "CREATE TABLE table_173103_1 (bullet_weight VARCHAR, max_pressure VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_17311759_4 WHERE team = \"Charlotte\"",
    "question_en": "What are the scores made by Charlotte team",
    "question_th": "ทีมชาร์ล็อตต์ทำคะแนนได้เท่าไร",
    "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_en": "Who made highest assists when high rebounds was Al Horford (17)",
    "question_th": "ผู้ทำแอสซิสต์สูงสุดเมื่อรีบาวด์สูงคือ อัล ฮอร์ฟอร์ด (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_en": "Give the score when high rebounds was zaza pachulia (8)",
    "question_th": "ให้คะแนนเมื่อรีบาวด์สูงคือ ซาซ่า ปาชูเลีย (8)",
    "context": "CREATE TABLE table_17311759_4 (score VARCHAR, high_rebounds VARCHAR)"
  },
  {
    "answer": "SELECT gs FROM table_17309500_1 WHERE points = \"12.1\"",
    "question_en": "Name the gs for points being 12.1",
    "question_th": "ตั้งชื่อ gs สำหรับคะแนนเป็น 12.1",
    "context": "CREATE TABLE table_17309500_1 (gs VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT assists FROM table_17309500_1 WHERE games = 157",
    "question_en": "Name the assists for 157 games",
    "question_th": "เอ่ยชื่อแอสซิสต์ 157 เกม",
    "context": "CREATE TABLE table_17309500_1 (assists VARCHAR, games VARCHAR)"
  },
  {
    "answer": "SELECT steals FROM table_17309500_1 WHERE season = \"2007/2008\"",
    "question_en": "Name the steals for season 2007/2008",
    "question_th": "ตั้งชื่อทีมขโมยสำหรับฤดูกาล 2007/2008",
    "context": "CREATE TABLE table_17309500_1 (steals VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(assists) FROM table_17309500_1 WHERE blocks = \"77\"",
    "question_en": "Name the total number of assists for 77 blocks",
    "question_th": "ตั้งชื่อจำนวนแอสซิสต์ทั้งหมดสำหรับ 77 บล็อก",
    "context": "CREATE TABLE table_17309500_1 (assists VARCHAR, blocks VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_17311759_9 WHERE high_assists = \"Mike Bibby (8)\"",
    "question_en": "When mike bibby (8) had the highest amount of assists what is the record?",
    "question_th": "เมื่อ ไมค์ บิ๊บบี้ (8) มียอดแอสซิสต์สูงสุดเป็นประวัติการณ์?",
    "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_en": "When mike bibby (9) has the highest amount of assists what is the location and attendance?",
    "question_th": "เมื่อไมค์ บิ๊บบี้ (9) มียอดแอสซิสต์สูงสุด ตำแหน่งและการเข้างานคือตำแหน่งใด?",
    "context": "CREATE TABLE table_17311759_9 (location_attendance VARCHAR, high_assists VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_17311759_6 WHERE date = \"January 23\"",
    "question_en": "Who was the team played on January 23?",
    "question_th": "ทีมใดที่เล่นเมื่อวันที่ 23 มกราคม?",
    "context": "CREATE TABLE table_17311759_6 (team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_17311759_6 WHERE team = \"Orlando\"",
    "question_en": "Where was the game held and what was the attendance when they played Orlando?",
    "question_th": "เกมนี้จัดขึ้นที่ไหนและมีผู้ชมเข้าร่วมเท่าไรเมื่อพวกเขาเล่นกับออร์แลนโด้?",
    "context": "CREATE TABLE table_17311759_6 (location_attendance VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(game) FROM table_17311783_8 WHERE team = \"Charlotte\"",
    "question_en": "In what game did Miami play Charlotte? ",
    "question_th": " ไมอามีเล่นกับชาร์ล็อตต์ในเกมใด",
    "context": "CREATE TABLE table_17311783_8 (game INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_17311797_8 WHERE date = \"February 6\"",
    "question_en": "Who had the high points on February 6?",
    "question_th": "ใครมีคะแนนสูงสุดในวันที่ 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_en": "What is the highest number of laps led with 16 points?",
    "question_th": "จำนวนรอบสูงสุดนำด้วย 16 แต้มคือเท่าใด?",
    "context": "CREATE TABLE table_17319931_1 (laps INTEGER, points VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(driver) FROM table_17319931_1 WHERE team = \"SAMAX Motorsport\"",
    "question_en": "How many drivers were there for Samax Motorsport?",
    "question_th": "Samax Motorsport มีคนขับกี่คน?",
    "context": "CREATE TABLE table_17319931_1 (driver VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_17319931_1 WHERE driver = \"Jeff Simmons\"",
    "question_en": "What is the team whose driver Jeff Simmons?",
    "question_th": "ทีมที่มีคนขับรถ 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_en": "How many drivers where there when the time/retired +3 laps and points were 24?",
    "question_th": "มีคนขับกี่คนที่เมื่อเวลา / เกษียณ +3 รอบและคะแนนเป็น 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_en": "What is the highest number of laps for Darren Manning?",
    "question_th": "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_en": "How many car numbers were recorded when the time/retired is +4.0019?",
    "question_th": "เมื่อถึงเวลา/เกษียณคือ +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_en": "What game number was played on January 28?",
    "question_th": "วันที่ 28 มกราคม เล่นเกมหมายเลขอะไร?",
    "context": "CREATE TABLE table_17311812_7 (game VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_17311812_8 WHERE date = \"February 11\"",
    "question_en": "What is the high amount of points on February 11?",
    "question_th": "คะแนนสูงสุดในวันที่ 11 กุมภาพันธ์คือเท่าไร?",
    "context": "CREATE TABLE table_17311812_8 (high_points VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_17311812_8 WHERE team = \"Denver\"",
    "question_en": "Who has the most assists on Denver?",
    "question_th": "ใครแอสซิสต์มากที่สุดในเดนเวอร์?",
    "context": "CREATE TABLE table_17311812_8 (high_assists VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_17322817_10 WHERE date = \"April 13\"",
    "question_en": "Name the location attendance for april 13",
    "question_th": "ตั้งชื่อสถานที่เข้าร่วมสำหรับวันที่ 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_en": "Name the location attendance for april 5",
    "question_th": "ตั้งชื่อสถานที่เข้าร่วมสำหรับวันที่ 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_en": "Who had the high points on December 17?",
    "question_th": "ใครมีแต้มสูงสุดในวันที่ 17 ธันวาคม?",
    "context": "CREATE TABLE table_17323042_6 (high_points VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(score) FROM table_17323042_7 WHERE team = \"Houston\"",
    "question_en": "How many scores are listed for the game against Houston",
    "question_th": "มีกี่คะแนนที่ระบุไว้สำหรับเกมกับฮูสตัน",
    "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_en": "What was the location and attendance of the game when High Assists were Andre Miller (7)?",
    "question_th": "สถานที่และผู้เข้าชมเกมเมื่ออังเดร มิลเลอร์ (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_en": "Who was the High Assist in game 1?",
    "question_th": "High Assist ในเกมที่ 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_en": "Who was the High Assist when the High Rebounds was andre iguodala (8)?",
    "question_th": "ใครคือผู้ช่วยระดับสูงเมื่อรีบาวด์สูงคือ อังเดร อิกัวดาลา (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_en": "What was the W-L record when HIgh Points was andre miller (30)?",
    "question_th": "บันทึก WL คืออะไรเมื่อ HIgh Points คือ 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_en": "What was the score and game outcome when High Points was andre miller (17)?",
    "question_th": "คะแนนและผลการแข่งขันเป็นอย่างไรเมื่อ High Points คือ 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_en": "How many games was High Points andre iguodala (29)?",
    "question_th": "อังเดร อิกัวดาลา (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_en": "How many games were played on March 15?",
    "question_th": "วันที่ 15 มีนาคม มีการเล่นกี่เกม?",
    "context": "CREATE TABLE table_17323042_9 (game VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_17323042_5 WHERE team = \"Orlando\"",
    "question_en": "What was the team's record when they faced orlando?",
    "question_th": "บันทึกของทีมเมื่อเผชิญหน้ากับออร์แลนโดเป็นอย่างไร?",
    "context": "CREATE TABLE table_17323042_5 (record VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_17323092_5 WHERE score = \"L 97–107 (OT)\"",
    "question_en": "Whic teams scored l 97–107 (ot) ",
    "question_th": " ทีมไหนทำคะแนนได้ l 97–107 (ot)",
    "context": "CREATE TABLE table_17323092_5 (team VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_17323092_7 WHERE team = \"@ Minnesota\"",
    "question_en": "Who had the high assists when the team was @ Minnesota?",
    "question_th": "ใครแอสซิสต์ได้สูงเมื่อทีมอยู่ที่มินนิโซตา?",
    "context": "CREATE TABLE table_17323092_7 (high_assists VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_17323092_7 WHERE team = \"Minnesota\"",
    "question_en": "On what date did the Team Minnesota play?",
    "question_th": "ทีมมินนิโซตาเล่นวันไหน?",
    "context": "CREATE TABLE table_17323092_7 (date VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_17323092_7 WHERE date = \"February 10\"",
    "question_en": "Who had the high points on the date February 10?",
    "question_th": "ใครมีคะแนนสูงสุดในวันที่ 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_en": "How many players had high points in the location/attendance FedexForum 11,498 respectively?",
    "question_th": "มีผู้เล่นกี่คนที่ได้คะแนนสูงในตำแหน่ง/การเข้าร่วม FedexForum 11,498 ตามลำดับ?",
    "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_en": "When the high assists were Shawn Marion (6) who had high rebounds?",
    "question_th": "เมื่อแอสซิสต์สูงคือ ชอว์น แมเรียน (6) ที่รีบาวด์สูง?",
    "context": "CREATE TABLE table_17323092_7 (high_rebounds VARCHAR, high_assists VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_17323092_8 WHERE team = \"Miami\"",
    "question_en": "What dates did they play Miami?",
    "question_th": "พวกเขาเล่นไมอามี่วันที่เท่าไหร่?",
    "context": "CREATE TABLE table_17323092_8 (date VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_17323092_8 WHERE high_points = \"Chris Bosh (18)\"",
    "question_en": "What dates did Chris Bosh (18) score the high points?",
    "question_th": "Chris Bosh (18) ทำคะแนนสูงสุดในวันที่ใด",
    "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_en": "Where was the location and what was the attendance in the game that Anthony Parker (7) earned high assists?",
    "question_th": "สถานที่อยู่ที่ไหนและการมีส่วนร่วมในเกมที่แอนโทนี่ ปาร์คเกอร์ (7) ทำแอสซิสต์ได้สูงเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_17323092_8 (location_attendance VARCHAR, high_assists VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_17323092_8 WHERE game = 69",
    "question_en": "Who earned high points in game 69?",
    "question_th": "ใครได้รับคะแนนสูงในเกม 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_en": "What is the total number of high points on January 21?",
    "question_th": "คะแนนสูงสุดในวันที่ 21 ม.ค. รวมเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_17323092_6 (high_points VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_17323092_6 WHERE team = \"Orlando\"",
    "question_en": "What is the location and attendance for the Orlando team?",
    "question_th": "สถานที่และการเข้าร่วมของทีมออร์แลนโดคืออะไร?",
    "context": "CREATE TABLE table_17323092_6 (location_attendance VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_17325580_5 WHERE team = \"Milwaukee\"",
    "question_en": "what was the final score of the game versus Milwaukee?",
    "question_th": "คะแนนสุดท้ายของเกมกับมิลวอกีเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_17325580_5 (score VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_17323529_8 WHERE team = \"Boston\"",
    "question_en": "What is the record against Boston?",
    "question_th": "มีสถิติอะไรกับบอสตันบ้าง?",
    "context": "CREATE TABLE table_17323529_8 (record VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_17325580_6 WHERE team = \"Washington\"",
    "question_en": "What is every high point when the team is Washington?",
    "question_th": "ทุกจุดสูงสุดเมื่อทีมคือวอชิงตันคืออะไร?",
    "context": "CREATE TABLE table_17325580_6 (high_points VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(game) FROM table_17325580_6 WHERE date = \"December 12\"",
    "question_en": "How many games occur on the date December 12?",
    "question_th": "วันที่ 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_en": "How many high assist are on the date December 13?",
    "question_th": "วันที่ 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_en": "What is every location attendance on the date December 12?",
    "question_th": "การเข้าร่วมทุกสถานที่ในวันที่ 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_en": "What was the high rebounds on November 26?",
    "question_th": "การรีบาวด์สูงสุดในวันที่ 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_en": "What was the high assists on November 14?",
    "question_th": "แอสซิสต์สูงสุดในวันที่ 14 พฤศจิกายนเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_17325937_5 (high_assists VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_17325937_8 WHERE team = \"Miami\"",
    "question_en": "Who had the most assists in the game against Miami?",
    "question_th": "ใครเป็นผู้แอสซิสต์มากที่สุดในเกมกับไมอามี?",
    "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_en": "How many assists were made in the game against San Antonio?",
    "question_th": "ในเกมที่เจอกับซาน อันโตนิโอ มีแอสซิสต์ไปกี่ครั้ง?",
    "context": "CREATE TABLE table_17325937_8 (high_assists VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_17326036_5 WHERE date = \"November 1\"",
    "question_en": "Who did the most high rebounds in the game played on November 1?",
    "question_th": "ใครทำรีบาวด์ได้มากที่สุดในเกมที่เล่นเมื่อวันที่ 1 พฤศจิกายน?",
    "context": "CREATE TABLE table_17326036_5 (high_rebounds VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_17326036_5 WHERE date = \"November 21\"",
    "question_en": "What team was the game on November 21 played against?",
    "question_th": "วันที่ 21 พฤศจิกายน พบกับทีมใด?",
    "context": "CREATE TABLE table_17326036_5 (team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_17326036_5 WHERE team = \"Boston\"",
    "question_en": "What was the score in the game against Boston?",
    "question_th": "ในเกมกับบอสตันมีสกอร์เท่าไหร่?",
    "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_en": "Name the date of appointment for petrik sander",
    "question_th": "ตั้งชื่อวันที่นัดหมาย 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_en": "Name the date of appointment for sacked and 14th position replaced by marco kostmann",
    "question_th": "แจ้งวันแต่งตั้งไล่ออกและตำแหน่งที่ 14 เข้ามาแทน มาร์โก คอสต์มันน์",
    "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_en": "How many location attendance was recorded for December 5?",
    "question_th": "มีการบันทึกการเข้าร่วมสถานที่จำนวนเท่าใดในวันที่ 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_en": "What was the attendance and location on December 15?",
    "question_th": "ผู้เข้าร่วมและสถานที่ในวันที่ 15 ธันวาคมมีอะไรบ้าง?",
    "context": "CREATE TABLE table_17326036_6 (location_attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(game) FROM table_17326036_6 WHERE team = \"@ Memphis\"",
    "question_en": "How many games were recorded when the team was @ Memphis?",
    "question_th": "ตอนที่ทีมเป็น @เมมฟิส บันทึกไว้กี่เกม?",
    "context": "CREATE TABLE table_17326036_6 (game VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_17326036_6 WHERE high_rebounds = \"Jeff Foster (10)\"",
    "question_en": "What was the score of the game when the high rebounds Jeff Foster (10)?",
    "question_th": "ในเกมที่เจฟฟ์ ฟอสเตอร์ รีบาวด์สูง (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_en": "What team appointed a manager on 12 June?",
    "question_th": "ทีมใดแต่งตั้งผู้จัดการทีมเมื่อวันที่ 12 มิถุนายน?",
    "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_en": "Who was replaced on 11 July?",
    "question_th": "ใครถูกแทนที่ในวันที่ 11 กรกฎาคม?",
    "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_en": "Who left a position on 29 May?",
    "question_th": "ใครออกจากตำแหน่งเมื่อวันที่ 29 พ.ค. ?",
    "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_en": "Who left a position on 24 January?",
    "question_th": "ใครออกจากตำแหน่งเมื่อวันที่ 24 มกราคม?",
    "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_en": "How many vacancies happened on 25 May?",
    "question_th": "วันที่ 25 พฤษภาคม มีตำแหน่งงานว่างกี่ตำแหน่ง?",
    "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_en": "If the points is 15, what is the fin. pos?",
    "question_th": "ถ้าแต้มเป็น 15 แต้มคือเท่าไร ตำแหน่ง?",
    "context": "CREATE TABLE table_17330069_1 (fin_pos VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT MIN(car_no) FROM table_17330069_1 WHERE driver = \"Hélio Castroneves\"",
    "question_en": "What is the car number for driver Hélio Castroneves",
    "question_th": "หมายเลขรถของคนขับ Hélio 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_en": "If grid is 2, what is the minimum fin. pos number?",
    "question_th": "ถ้ากริดเป็น 2 ครีบขั้นต่ำคือเท่าใด หมายเลขไปรษณีย์?",
    "context": "CREATE TABLE table_17330069_1 (fin_pos INTEGER, grid VARCHAR)"
  },
  {
    "answer": "SELECT time_retired FROM table_17330069_1 WHERE points = \"28\"",
    "question_en": "If there are 28 points, what is the time/retired?",
    "question_th": "ถ้ามี 28 คะแนน หมดเวลา/เกษียณเมื่อไร?",
    "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_en": "How many winning scores were there in the rr donnelley lpga founders cup?",
    "question_th": "มีกี่คะแนนที่ชนะใน rr donnelley lpgafounders 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_en": "When was the mcdonald's lpga championship?",
    "question_th": "แชมป์ lpga ของ mcdonald เกิดขึ้นเมื่อใด?",
    "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_en": "What was the winner's share in the wegmans lpga championship?",
    "question_th": "ส่วนแบ่งของผู้ชนะในการแข่งขัน 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_en": "Name the kerry # for others# is 44",
    "question_th": "ตั้งชื่อเคอรี่ # ให้คนอื่น # คือ 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_en": "Name the minimum kerry # for bush % for 50.9%",
    "question_th": "ชื่อเคอรี่ขั้นต่ำ #สำหรับบุช % 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_en": "Name the others % for johnson",
    "question_th": "ตั้งชื่อ % อื่นๆ สำหรับจอห์นสัน",
    "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_en": "Name the maximum kerry # for where others is 47",
    "question_th": "ตั้งชื่อเคอร์รี่สูงสุด # สำหรับที่อื่นคือ 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_en": "Name the bush% for where others # is 90",
    "question_th": "ตั้งชื่อพุ่มไม้% โดยที่ # อื่นคือ 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_en": "Name the others % for cleveland",
    "question_th": "ตั้งชื่อ % อื่นๆ สำหรับคลีฟแลนด์",
    "context": "CREATE TABLE table_1733457_1 (others_percentage VARCHAR, county VARCHAR)"
  },
  {
    "answer": "SELECT others_percentage FROM table_1733513_1 WHERE others_number = 2286",
    "question_en": "What is the percentage of others when the number of others is 2286?",
    "question_th": "เปอร์เซ็นต์ของคนอื่นเมื่อจำนวนคนอื่นคือ 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_en": "What was the percentage of others when the number for Bush was 3196? ",
    "question_th": " เปอร์เซ็นต์ของคนอื่นๆ เมื่อตัวเลขของบุชคือ 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_en": "What is the percentage of others when the number for Bush is 1329? ",
    "question_th": " เปอร์เซ็นต์ของคนอื่นๆ เมื่อตัวเลขของบุชคือ 1329 เป็นเท่าใด",
    "context": "CREATE TABLE table_1733513_1 (others_percentage VARCHAR, bush_number VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_17340355_6 WHERE team = \"Milwaukee\"",
    "question_en": "Which game was played by team milwaukee",
    "question_th": "เกมใดที่เล่นโดยทีมมิลวอกี",
    "context": "CREATE TABLE table_17340355_6 (game VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_17340355_6 WHERE score = \"W 106–104 (OT)\"",
    "question_en": "Who made high points on games of score w 106–104 (ot)",
    "question_th": "ใครทำคะแนนสูงสุดในเกมที่มีสกอร์ 106–104 (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_en": "What are the records of games where high rebounds is amar'e stoudemire (11)",
    "question_th": "อะไรคือบันทึกของเกมที่มีการรีบาวด์สูงคือ 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_en": "What is the location of the the game on december 10",
    "question_th": "สถานที่ของเกมในวันที่ 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_en": "List the all the scores where the high assis is b. shaw (5)",
    "question_th": "แสดงรายการคะแนนทั้งหมดที่การช่วยเหลือสูงคือ b ชอว์ (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_en": "List of high assists with high rebounds for k. mchale (10)",
    "question_th": "รายการแอสซิสต์สูงพร้อมรีบาวด์สูงสำหรับ k มาชาเล (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_en": "List all location attendance for series 1-1.",
    "question_th": "แสดงรายการการเข้าร่วมสถานที่ทั้งหมดสำหรับซีรี่ส์ 1-1",
    "context": "CREATE TABLE table_17344582_11 (location_attendance VARCHAR, series VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_17340355_7 WHERE team = \"Indiana\"",
    "question_en": "What day(s) did the team play indiana?",
    "question_th": "ทีมเล่นอินเดียน่าวันไหน?",
    "context": "CREATE TABLE table_17340355_7 (date VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_17340355_7 WHERE date = \"January 2\"",
    "question_en": "Who had the high assist total on january 2?",
    "question_th": "ใครมีแอสซิสต์รวมสูงในวันที่ 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ābǎi zhuàngshì (八百壯士)\"",
    "question_en": "What was the title used in nomination in the original Bābǎi Zhuàngshì (八百壯士)?",
    "question_th": "ชื่อที่ใช้ในการเสนอชื่อในต้นฉบับ Bābāi Zhuàngshì (八百壯士) คืออะไร?",
    "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ūnqiū cháshì (春秋茶室)\"",
    "question_en": "What was the year when Chūnqiū Cháshì (春秋茶室) was submitted?",
    "question_th": "Chūnqiū Cháshì (春秋茶室) ถูกยื่นในปีใด?",
    "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_en": "Old Mo's Second Spring was the film title used in nomination in what year?",
    "question_th": "Old Mo's Second Spring เป็นชื่อภาพยนตร์ที่ใช้ในการเสนอชื่อเข้าชิงในปีใด?",
    "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_en": "What was the year when My Mother's Teahouse was not nominated?",
    "question_th": "เมื่อปีใดที่ My Mother's Teahouse ไม่ได้รับการเสนอชื่อเข้าชิง?",
    "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_en": "What titles were released in 2006?",
    "question_th": "ชื่ออะไรบ้างที่ออกในปี 2549?",
    "context": "CREATE TABLE table_173475_1 (title VARCHAR, release VARCHAR)"
  },
  {
    "answer": "SELECT release FROM table_173475_1 WHERE title = \"Axis & Allies: D-Day\"",
    "question_en": "What year(s) was axis & allies: d-day released?",
    "question_th": "axis & allies: d-day เปิดตัวปีไหน?",
    "context": "CREATE TABLE table_173475_1 (release VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_17355408_12 WHERE date = \"May 25\"",
    "question_en": "What game was on May 25?",
    "question_th": "วันที่ 25 พฤษภาคมเป็นเกมอะไร?",
    "context": "CREATE TABLE table_17355408_12 (game VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(game) FROM table_17355408_12 WHERE record = \"2-3\"",
    "question_en": "What game was the record 2-3?",
    "question_th": "เกมไหนเป็นสถิติ 2-3?",
    "context": "CREATE TABLE table_17355408_12 (game VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_17355408_9 WHERE team = \"Sacramento\"",
    "question_en": "Who had the high rebounds when the team played Sacramento?",
    "question_th": "ใครมีการรีบาวด์สูงเมื่อทีมเล่นซาคราเมนโต?",
    "context": "CREATE TABLE table_17355408_9 (high_rebounds VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_17355408_9 WHERE date = \"April 8\"",
    "question_en": "Who had the high points on April 8?",
    "question_th": "ใครมีคะแนนสูงสุดในวันที่ 8 เมษายน?",
    "context": "CREATE TABLE table_17355408_9 (high_points VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_17355408_9 WHERE game = 80",
    "question_en": "Who had the high assists in game 80?",
    "question_th": "ใครมีแอสซิสต์สูงในเกมที่ 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_en": "Name the highh points for december 29",
    "question_th": "ตั้งชื่อคะแนนสูงสุดสำหรับวันที่ 29 ธันวาคม",
    "context": "CREATE TABLE table_17355408_5 (high_points VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_17355408_5 WHERE game = 29",
    "question_en": "Name the high assists for 29 game",
    "question_th": "ทายแอสซิสต์สูง 29 เกม",
    "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_en": "Name the high points for pepsi center 18,611",
    "question_th": "บอกคะแนนสูงสุดเป๊ปซี่เซ็นเตอร์ 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_en": "Name the date for chicago",
    "question_th": "ตั้งชื่อวันที่สำหรับชิคาโก",
    "context": "CREATE TABLE table_17355408_4 (date VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_17355408_4 WHERE team = \"New Orleans\"",
    "question_en": "Name the record for new orleans",
    "question_th": "ตั้งชื่อเรกคอร์ดสำหรับนิวออร์ลีนส์",
    "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_en": "Name the high assists for chauncey billups , carmelo anthony (18)",
    "question_th": "ทายแอสซิสต์สูงๆ ของ Chauncey Billups , คาร์เมโล่ แอนโทนี่ (18)",
    "context": "CREATE TABLE table_17355408_4 (high_assists VARCHAR, high_points VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_17355408_7 WHERE team = \"@ Orlando\"",
    "question_en": "What was the final score for @ Orlando?",
    "question_th": "คะแนนสุดท้ายของ @ 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_en": "Chauncey Billups (6) had a high assist on what date?",
    "question_th": "ชอนซีย์ บิลลัพส์ (6) แอสซิสต์ได้สูงในวันไหน?",
    "context": "CREATE TABLE table_17355408_7 (date VARCHAR, high_assists VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_17355408_7 WHERE team = \"@ Chicago\"",
    "question_en": "@ Chicago had a high points of what?",
    "question_th": "@ชิคาโก้มีคะแนนสูงในเรื่องอะไรบ้าง?",
    "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_en": "High assists belonging to Carmelo Anthony (11) have a record of what?",
    "question_th": "แอสซิสต์สูงของ คาร์เมโล แอนโธนี (11) มีสถิติอะไรบ้าง?",
    "context": "CREATE TABLE table_17355408_7 (record VARCHAR, high_assists VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_17355628_10 WHERE date = \"April 8\"",
    "question_en": "Name the high assists for april 8",
    "question_th": "ทายซิซิสต์สูงสุดประจำวันที่ 8 เมษายน",
    "context": "CREATE TABLE table_17355628_10 (high_assists VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_17355628_10 WHERE team = \"Charlotte\"",
    "question_en": "Name the score for charlotte",
    "question_th": "ตั้งชื่อคะแนนให้ชาร์ล็อตต์",
    "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_en": "Name the location attendance for chucky atkins , russell westbrook (4)",
    "question_th": "ตั้งชื่อสถานที่เข้าร่วมของชัคกี้ แอตกินส์ รัสเซลล์ เวสต์บรูก (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_en": "Name the series number directed by richard thorpe written by dee johnson",
    "question_th": "ตั้งชื่อหมายเลขซีรีส์ กำกับโดย ริชาร์ด ธอร์ป เขียนโดย ดี จอห์นสัน",
    "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_en": "Name the team where the date is november 17",
    "question_th": "ตั้งชื่อทีมว่าวันที่ 17 พฤศจิกายน",
    "context": "CREATE TABLE table_17355716_5 (team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_17355716_5 WHERE date = \"November 5\"",
    "question_en": "Name the team for november 5",
    "question_th": "ตั้งชื่อทีมวันที่ 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_en": "What is the maximum series number what is smaller than season 7.0 and directed by Laura Innes?",
    "question_th": "หมายเลขซีรีส์สูงสุดที่เล็กกว่าซีซัน 7.0 และกำกับโดยลอร่า อินเนสคือเท่าใด",
    "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_en": "If Arthur Albert is the director, what is the maximum series number?",
    "question_th": "ถ้า Arthur Albert เป็นผู้กำกับ จำนวนซีรีส์สูงสุดคือเท่าใด",
    "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_en": "What was the number of seasons that was directed by Joanna Kerns?",
    "question_th": "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_en": "For series number 256, what was the original air date?",
    "question_th": "ซีรีส์หมายเลข 256 ออกอากาศตอนแรกเมื่อใด",
    "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_en": "What season episode is directed by Skipp Sudduth?",
    "question_th": "สกิปป์ สุดดุธ กำกับตอนซีซันใด",
    "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_en": "How many titles are given for the episode directed by Joanna Kerns?",
    "question_th": "ตอนที่กำกับโดย 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_en": "What is the original air date of the episode directed by Terrence Nightingall?",
    "question_th": "วันที่ออกอากาศดั้งเดิมของตอนที่กำกับโดย 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_en": "Which seasons were directed by Nelson McCormick?",
    "question_th": "ฤดูกาลใดที่กำกับโดย 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_en": "Which season titles were directed by Laura Innes?",
    "question_th": "ชื่อฤดูกาลใดที่กำกับโดย 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_en": "Which episodes did Nelson McCormick direct?",
    "question_th": "Nelson McCormick กำกับตอนใด",
    "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_en": "How many episodes were there in season 19?",
    "question_th": "ซีซัน 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_en": "In which season did Paul McCrane first direct an episode?",
    "question_th": "Paul McCrane กำกับตอนแรกในฤดูกาลใด",
    "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_en": "On which dates did the episodes directed by TR Babu Subramaniam air?",
    "question_th": "กำกับโดย TR Babu Subramaniam ออกอากาศวันไหน?",
    "context": "CREATE TABLE table_17355820_1 (original_air_date VARCHAR, directed_by VARCHAR)"
  },
  {
    "answer": "SELECT MIN(lost) FROM table_17357929_1",
    "question_en": "What is the fewest number of games lost?",
    "question_th": "จำนวนเกมที่แพ้น้อยที่สุดคือเท่าไร?",
    "context": "CREATE TABLE table_17357929_1 (lost INTEGER)"
  },
  {
    "answer": "SELECT goal_average_1 FROM table_17357929_1 WHERE lost = 9",
    "question_en": "What is the goal average 1 for teams that lost 9 games?",
    "question_th": "ประตูเฉลี่ย 1 สำหรับทีมที่แพ้ 9 เกมคือเท่าไร?",
    "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_en": "How many teams finished with a 2nd points total of 31?",
    "question_th": "มีกี่ทีมที่จบด้วยคะแนนที่ 2 รวม 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_en": "How many games drawn for the team that had 72 goals for?",
    "question_th": "กี่เกมที่เสมอกันสำหรับทีมที่ทำประตูได้ 72 ประตู?",
    "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_en": "How many games with record 1-3-3",
    "question_th": "มีกี่เกมที่มีสถิติ 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_en": "How many attended on mathches against atlanta thrashers",
    "question_th": "มีผู้เข้าร่วมคณิตศาสตร์กับ Atlanta thrashers กี่คน",
    "context": "CREATE TABLE table_17360840_4 (attendance VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_17360840_4 WHERE opponent = \"Minnesota Wild\"",
    "question_en": "Give the date of games against minnesota wild",
    "question_th": "ระบุวันที่ของเกมกับมินนิโซตาไวลด์",
    "context": "CREATE TABLE table_17360840_4 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_17360840_4 WHERE record = \"1-2-3\"",
    "question_en": "State the dates of games with record 1-2-3",
    "question_th": "ระบุวันที่แข่งขันด้วยบันทึก 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_en": "What is the minimum attendance on games of record 0-2-1",
    "question_th": "ผู้เข้าร่วมขั้นต่ำในเกมที่มีสถิติ 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_en": "Which venue does Mardan sponsor?",
    "question_th": "Mardan สนับสนุนสถานที่ใด?",
    "context": "CREATE TABLE table_17356873_1 (venue VARCHAR, shirt_sponsor VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_17356873_1 WHERE head_coach = \"Erdoğan Arıca\"",
    "question_en": "Erdoğan Arıca is the head coach at what venue?",
    "question_th": "Erdoğan Arıca เป็นหัวหน้าโค้ชที่สนามใด?",
    "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_en": "How many points were scored when the record was 6-8-6?",
    "question_th": "เมื่อสถิติเป็น 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_en": "Which game had a record of 6-9-7?",
    "question_th": "เกมไหนมีสถิติ 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_en": "When they played at the Bankatlantic Center, what was their record?",
    "question_th": "ตอนที่พวกเขาเล่นที่ Bankatlantic Center บันทึกของพวกเขาเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_17360840_5 (record VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_17360840_6 WHERE date = \"December 27\"",
    "question_en": "Who was the opponent on December 27?",
    "question_th": "คู่ต่อสู้ในวันที่ 27 ธันวาคมคือใคร?",
    "context": "CREATE TABLE table_17360840_6 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_17360840_6 WHERE date = \"December 11\"",
    "question_en": "What was the score of the game on December 11?",
    "question_th": "สกอร์เกมวันที่ 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_en": "What was the record when the opposing team was the Columbus Blue Jackets at St. Pete Times Forum?",
    "question_th": "อะไรคือบันทึกเมื่อทีมตรงข้ามคือ Columbus Blue Jackets ที่ 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_en": "What was the score when the record was 21-31-13?",
    "question_th": "เมื่อทำสถิติ 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_en": "How many locations were recorded when the opponent Columbus Blue Jackets?",
    "question_th": "มีกี่สถานที่ที่ถูกบันทึกไว้เมื่อคู่ต่อสู้โคลัมบัสบลูแจ็คเก็ตส์?",
    "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_en": "What was the attendance when the opposing team was the Ottawa Senators  and the record was 24-35-17?",
    "question_th": "การเข้าร่วมงานเมื่อทีมตรงข้ามคือวุฒิสมาชิกออตตาวาและสถิติ 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_en": "The player who plays left wing is from what college/junior/club team? ",
    "question_th": " ผู้เล่นที่เล่นปีกซ้ายมาจากทีมวิทยาลัย/จูเนียร์/สโมสรใด?",
    "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_en": "The player who plays goaltender is from what college/junior/club team? ",
    "question_th": " นักเตะที่เล่นเป็นผู้รักษาประตูมาจากทีมวิทยาลัย/จูเนียร์/สโมสรไหน?",
    "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_en": "How many were played when there were 39 tries for? ",
    "question_th": " มีการเล่นกี่ครั้งเมื่อมีการพยายาม 39 ครั้ง?",
    "context": "CREATE TABLE table_17369472_2 (played VARCHAR, tries_for VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(won) FROM table_17369472_2 WHERE points = \"12\"",
    "question_en": "How many were won when the points were 12? ",
    "question_th": " ชนะไปกี่แต้มเมื่อได้ 12 แต้ม?",
    "context": "CREATE TABLE table_17369472_2 (won VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT won FROM table_17369472_2 WHERE points = \"49\"",
    "question_en": "How many were won when there were 49 points? ",
    "question_th": " มีกี่แต้มที่ชนะเมื่อมี 49 แต้ม?",
    "context": "CREATE TABLE table_17369472_2 (won VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_17369472_2 WHERE tries_for = \"84\"",
    "question_en": "How many points were there when tries for were 84? ",
    "question_th": " มีกี่แต้มเมื่อพยายามให้ได้ 84?",
    "context": "CREATE TABLE table_17369472_2 (points VARCHAR, tries_for VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_17382360_7 WHERE date = \"February 18\"",
    "question_en": "what team play in february 18 in the supersonic season ",
    "question_th": "ทีมใดเล่นในวันที่ 18 กุมภาพันธ์ในฤดูกาลเหนือเสียง",
    "context": "CREATE TABLE table_17382360_7 (team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_17382360_7 WHERE team = \"Boston Celtics\"",
    "question_en": "what is the score in february 12 of the boston celtics team",
    "question_th": "คะแนนในวันที่ 12 กุมภาพันธ์ ของทีมบอสตัน เซลติกส์ เป็นเท่าไหร่",
    "context": "CREATE TABLE table_17382360_7 (score VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_17386066_2 WHERE stadium = \"Shea stadium\"",
    "question_en": "Who is the opposing team when the game was played on the Shea Stadium?",
    "question_th": "ฝ่ายตรงข้ามคือใครเมื่อเล่นเกมที่เชียสเตเดียม?",
    "context": "CREATE TABLE table_17386066_2 (opponent VARCHAR, stadium VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(record) FROM table_17386066_2 WHERE stadium = \"Miami Orange Bowl\"",
    "question_en": "How many games or records were played on the Miami Orange Bowl?",
    "question_th": "มีการเล่นเกมหรือบันทึกกี่เกมใน 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_en": "What was the result of the game that was played on Nov. 26, 1972?",
    "question_th": "ผลของเกมที่เล่นเมื่อวันที่ 26 พฤศจิกายน พ.ศ. 2515 เป็นอย่างไร?",
    "context": "CREATE TABLE table_17386066_2 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT tamil_months FROM table_1740431_3 WHERE season_in_english = \"Monsoon\"",
    "question_en": "What are all Tamil months when the season in English is monsoon?",
    "question_th": "เดือนทมิฬทั้งหมดเมื่อฤดูกาลในภาษาอังกฤษเป็นมรสุมคือเดือนใด",
    "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ārkazhi, tai\"",
    "question_en": "What is every English translation when Tamil months is Mārkazhi, Tai?",
    "question_th": "ภาษาอังกฤษทุกคำแปลเมื่อเดือนทมิฬคือMārkazhi, 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 = \"இளவேனில்\"",
    "question_en": "What is every Gregorian month when the season in Tamil is இளவேனில்?",
    "question_th": "ทุกๆ เดือนเกรกอเรียนเมื่อฤดูกาลในภาษาทมิฬคือ இளவேனிலandra คือเดือนใด",
    "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_en": "How many seasons in Tamil occur when the season in Sanskrit is Grishma?",
    "question_th": "ในภาษาทมิฬมีกี่ฤดูกาลเมื่อภาษาสันสกฤตเป็นฤดูกริชมะ",
    "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_en": "Which departments have M.Phil(Maths)?",
    "question_th": "คณะไหนมี M.Phil(คณิต) บ้างคะ?",
    "context": "CREATE TABLE table_17384764_1 (department VARCHAR, qualification VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(designation) FROM table_17384764_1 WHERE experience = \"20 years\"",
    "question_en": "How many faculty members have 20 years of experience? ",
    "question_th": " มีคณาจารย์กี่คนที่มีประสบการณ์ 20 ปี?",
    "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_en": "Name the power provided for transfer speed mb/s is 1250",
    "question_th": "ตั้งชื่อกำลังไฟที่กำหนดให้สำหรับความเร็วการถ่ายโอน mb/s คือ 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_en": "Name the devices per channel for 2560",
    "question_th": "ตั้งชื่ออุปกรณ์ตามช่องสัญญาณ ปี 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_en": "Name the power provided where transfer speed mb/s is 300 and max cable length of 10",
    "question_th": "ตั้งชื่อกำลังไฟที่กำหนดให้โดยที่ความเร็วการถ่ายโอน mb/s คือ 300 และความยาวสายเคเบิลสูงสุดคือ 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_en": "Name the colorado when alaska is connecticut",
    "question_th": "ตั้งชื่อโคโลราโดเมื่ออลาสกาคือคอนเนตทิคัต",
    "context": "CREATE TABLE table_17425749_1 (colorado VARCHAR, alaska VARCHAR)"
  },
  {
    "answer": "SELECT california FROM table_17425749_1 WHERE alaska = \"Tennessee\"",
    "question_en": "Name the california where alaska tennessee",
    "question_th": "ตั้งชื่อแคลิฟอร์เนียที่อลาสก้าเทนเนสซี",
    "context": "CREATE TABLE table_17425749_1 (california VARCHAR, alaska VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_17432028_1 WHERE score = \"95-101\"",
    "question_en": "Name the date for score of 95-101",
    "question_th": "ตั้งชื่อวันที่คะแนน 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_en": "Name the high rebounds for march 15",
    "question_th": "ตั้งชื่อการรีบาวด์สูงสำหรับวันที่ 15 มีนาคม",
    "context": "CREATE TABLE table_17432028_1 (high_rebounds VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_17432028_1 WHERE record = \"2-5\"",
    "question_en": "Name the score for record of 2-5",
    "question_th": "ตั้งชื่อคะแนนบันทึก 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_en": "How many schools won their last occ championship in 2006?",
    "question_th": "มีกี่โรงเรียนที่คว้าแชมป์ OCC ครั้งล่าสุดในปี 2549",
    "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_en": "What are the years of participation for central crossing school?",
    "question_th": "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_en": "What is the fewest number of occ championships for the team that last won an outright occ championship in 2006?",
    "question_th": "จำนวนการแข่งขัน occ น้อยที่สุดสำหรับทีมที่คว้าแชมป์ occ ครั้งสุดท้ายในปี 2549 คือเท่าใด",
    "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_en": "What are the years of participation for pickerington north?",
    "question_th": "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_en": "Name the event for redouane bouchtouk",
    "question_th": "ตั้งชื่อกิจกรรมสำหรับ 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_en": "Name the round 16 for did not advance and light flyweight",
    "question_th": "ยกชื่อรอบ 16 ทีมไม่เลื่อนชั้นและรุ่นไลท์ฟลายเวต",
    "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–10\"",
    "question_en": "Name the athelte for enkhzorig ( mgl ) l 1–10",
    "question_th": "ตั้งชื่อนักกีฬาสำหรับ enkhzorig ( mgl ) l 1–10",
    "context": "CREATE TABLE table_17417383_6 (athlete VARCHAR, round_of_32 VARCHAR)"
  },
  {
    "answer": "SELECT quarterfinals FROM table_17427004_7 WHERE athlete = \"Abdelhafid Benchebla\"",
    "question_en": "Who did Abdelhafid Benchebla face in the quarterfinals?",
    "question_th": "อับเดลฮาฟิด เบนเชบลาเผชิญหน้ากับใครในรอบก่อนรองชนะเลิศ?",
    "context": "CREATE TABLE table_17427004_7 (quarterfinals VARCHAR, athlete VARCHAR)"
  },
  {
    "answer": "SELECT round_of_32 FROM table_17427004_7 WHERE athlete = \"Nabil Kassel\"",
    "question_en": "Who did Nabil Kassel face in the Round of 32?",
    "question_th": "นาบิล คาสเซล เผชิญหน้ากับใครในรอบ 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_en": "How did Hamza Kramou fare in the semifinals?",
    "question_th": "Hamza Kramou ทำได้ดีในรอบรองชนะเลิศอย่างไร?",
    "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_en": "In what year did the winner of the FIS championship in 1982 win the Winter Olympics?",
    "question_th": "ผู้ชนะการแข่งขัน FIS Championship ในปี 1982 ชนะการแข่งขันกีฬาโอลิมปิกฤดูหนาวในปีใด",
    "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_en": "What year did Thorleif Haug win the Winter Olympics?",
    "question_th": "Thorleif Haug ชนะการแข่งขันกีฬาโอลิมปิกฤดูหนาวในปีใด",
    "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_en": "What year did the man from Norway who won the Holmenkollen in 1958 win the FIS Nordic World Ski Championships?",
    "question_th": "ชายชาวนอร์เวย์ที่ชนะการแข่งขัน Holmenkollen ในปี 1958 ชนะการแข่งขัน 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_en": "What is the holmenkollen for the 1982 FIS Nordic World Ski Championships?",
    "question_th": "holmenkollen สำหรับ FIS Nordic World Ski Championships ปี 1982 คืออะไร?",
    "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_en": "What years did Birger Ruud win the FIS Nordic World Ski Championships?",
    "question_th": "Birger Ruud ชนะการแข่งขัน 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_en": "What year did Karl Schnabl win the Winter Olympics?",
    "question_th": "Karl Schnabl ชนะการแข่งขันกีฬาโอลิมปิกฤดูหนาวในปีใด",
    "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_en": "What is the FIS Nordic World Ski Championships when holmenkollen is 1976?",
    "question_th": "FIS Nordic World Ski Championships คืออะไรเมื่อ holmenkollen คือปี 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_en": "What year is Winter Olympics when Holmenkollen is 1957, 1960?",
    "question_th": "โอลิมปิกฤดูหนาวคือปีใดที่ Holmenkollen คือ 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_en": "What's the part 4 for the verb whose part 3 is borgen?",
    "question_th": "ส่วนที่ 4 ของคำกริยาที่มีส่วนที่ 3 คือ 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_en": "What's the meaning of the verb whose part 1 is slapen?",
    "question_th": "กริยาที่ภาค 1 คือ 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_en": "In what class does the verb with part 4 gelopen belong to?",
    "question_th": "กริยาที่มีภาค 4 gelopen อยู่ในคลาสใด",
    "context": "CREATE TABLE table_1745843_7 (class VARCHAR, part_4 VARCHAR)"
  },
  {
    "answer": "SELECT part_1 FROM table_1745843_7 WHERE part_4 = \"gevroren\"",
    "question_en": "What's part 1 of the verb whose part 4 is gevroren?",
    "question_th": "กริยาส่วนที่ 1 ของส่วนที่ 4 คือ 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_en": "How many different meanings does the verb with part 4 gegeven have?",
    "question_th": "กริยาภาค 4 gegeven มีความหมายต่างกันกี่คำ?",
    "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_en": "What's the part 3 of the verb with part 4 gelopen?",
    "question_th": "กริยาภาค 3 กับภาค 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_en": "How many different classes of verbs are there whose part 3 is lucon?",
    "question_th": "กริยาที่มีส่วนที่ 3 เรียกว่า lucon มีกี่ประเภท?",
    "context": "CREATE TABLE table_1745843_6 (class VARCHAR, part_3 VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_1745843_6 WHERE part_1 = \"lesan\"",
    "question_en": "What's the class of the verb whose part 1 is lesan?",
    "question_th": "กริยาของภาค 1 คือ 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_en": "How many different part 3 verbs are there that mean to freeze?",
    "question_th": "มีคำกริยาส่วนที่ 3 ที่หมายถึงการหยุดอยู่กี่คำ?",
    "context": "CREATE TABLE table_1745843_6 (part_3 VARCHAR, verb_meaning VARCHAR)"
  },
  {
    "answer": "SELECT part_3 FROM table_1745843_6 WHERE class = \"4\"",
    "question_en": "What's the part 3 of the verb whose class is 4?",
    "question_th": "คำกริยาที่มีคลาส 4 อยู่ในส่วนที่ 3 คืออะไร?",
    "context": "CREATE TABLE table_1745843_6 (part_3 VARCHAR, class VARCHAR)"
  },
  {
    "answer": "SELECT part_3 FROM table_1745843_6 WHERE class = \"5\"",
    "question_en": "What's the part 3 of the verb in class 5?",
    "question_th": "กริยาภาค 3 ในคลาส 5 คืออะไร?",
    "context": "CREATE TABLE table_1745843_6 (part_3 VARCHAR, class VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_1745843_5 WHERE part_2 = \"laug\"",
    "question_en": "What is the class of the word who's second participle is laug?",
    "question_th": "คำว่า who ของกริยาที่ 2 คือ laug อยู่ในคลาสใด?",
    "context": "CREATE TABLE table_1745843_5 (class VARCHAR, part_2 VARCHAR)"
  },
  {
    "answer": "SELECT verb_meaning FROM table_1745843_5 WHERE class = \"6\"",
    "question_en": "What is the meaning of the class 6 verbs?",
    "question_th": "กริยาคลาส 6 มีความหมายว่าอย่างไร?",
    "context": "CREATE TABLE table_1745843_5 (verb_meaning VARCHAR, class VARCHAR)"
  },
  {
    "answer": "SELECT part_3 FROM table_1745843_5 WHERE part_2 = \"band\"",
    "question_en": "What is the 3rd participle of the verb whose 2nd participle is band?",
    "question_th": "กริยาที่ 3 ของกริยาที่มีกริยาที่ 2 เป็น 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_en": "What is the 1st participle of the verb whose 4th participle is haitans?",
    "question_th": "กริยาที่ 1 ของกริยาที่มีกริยาที่ 4 คือ 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_en": "For part 2 *lauk, what is listed for part 4?",
    "question_th": "สำหรับภาค 2 *lauk ภาค 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_en": "What is the verb meaning for *bundun?",
    "question_th": "คำกริยา *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_en": "For part 2 *raid, what is listed for part 3?",
    "question_th": "สำหรับส่วนที่ 2 *raid มีอะไรระบุไว้ในส่วนที่ 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_en": "What word is listed under part 2 for part 4 *ridanaz?",
    "question_th": "คำใดอยู่ในส่วนที่ 2 สำหรับส่วนที่ 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_en": "What is listed under part 1 for class 3b?",
    "question_th": "สิ่งที่ระบุไว้ในส่วนที่ 1 สำหรับคลาส 3b คืออะไร",
    "context": "CREATE TABLE table_1745843_2 (part_1 VARCHAR, class VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_1745843_10 WHERE part_4 = \"frosinn\"",
    "question_en": "What class is the verb wich its part 4 is frosinn",
    "question_th": "กริยาเป็นคลาสใดซึ่งส่วนที่ 4 คือ frosinn",
    "context": "CREATE TABLE table_1745843_10 (class VARCHAR, part_4 VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_1745843_10 WHERE part_3 = \"heldu\"",
    "question_en": "What class is the verb wich its part 3 is heldu",
    "question_th": "กริยาที่เป็นคลาสใดซึ่งอยู่ในภาคที่ 3",
    "context": "CREATE TABLE table_1745843_10 (class VARCHAR, part_3 VARCHAR)"
  },
  {
    "answer": "SELECT part_1 FROM table_1745843_10 WHERE class = \"7b\"",
    "question_en": "What is part 1 of the verb in class 7b",
    "question_th": "คำกริยาในคลาส 7b ตอนที่ 1 คืออะไร",
    "context": "CREATE TABLE table_1745843_10 (part_1 VARCHAR, class VARCHAR)"
  },
  {
    "answer": "SELECT part_3 FROM table_1745843_10 WHERE class = \"4\"",
    "question_en": "What is part 1 of the verb in class 4",
    "question_th": "กริยาภาคที่ 1 ในชั้น 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_en": "How many verbs mean to bear",
    "question_th": "มีคำกริยากี่คำที่หมายถึงการอดทน",
    "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_en": "How many verbs mean to grow, to produce",
    "question_th": "มีกี่คำกริยาที่หมายถึงการเติบโตเพื่อผลิต",
    "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_en": "Who wrote the episode \"The Dream Lover\", which was viewed by 3.96 million viewers?",
    "question_th": "ใครเป็นคนเขียนตอน “คนรักในฝัน” มีผู้ชม 3.96 ล้านคน?",
    "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_en": "What is the original air date of episode 8?  Answer: Dec. 21, 2006",
    "question_th": "ตอนที่ 8 ออกอากาศตอนแรกเมื่อใด? คำตอบ: 21 ธันวาคม 2549",
    "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_en": "Who wrote the episode \"The Cold Turkey\", which was viewed by 3.73 million viewers?",
    "question_th": "ใครเป็นคนเขียนตอน “The Cold Turkey” มีผู้ชม 3.73 ล้านคน?",
    "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_en": "Who wrote episode 11?",
    "question_th": "ใครเป็นคนเขียนตอนที่ 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_en": "What was the original airdate of the episode \"The Cold Turkey\", which was viewed by 3.73 million viewers?",
    "question_th": "ออกอากาศตอนแรกของตอน \"The Cold Turkey\" ซึ่งมีผู้ชม 3.73 ล้านคน ออกอากาศเมื่อใด",
    "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_en": "Name the class for boten",
    "question_th": "ตั้งชื่อคลาสสำหรับ 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_en": "Name the part 3 for treffen",
    "question_th": "ตั้งชื่อส่วนที่ 3 สำหรับ 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_en": "Name the part one for to give",
    "question_th": "ตั้งชื่อส่วนที่หนึ่งที่จะให้",
    "context": "CREATE TABLE table_1745843_9 (part_1 VARCHAR, verb_meaning VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_1745843_9 WHERE part_3 = \"schliefen\"",
    "question_en": "Name the class for schliefen",
    "question_th": "ตั้งชื่อคลาสสำหรับ 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_en": "Name the verb meaning for half drosch",
    "question_th": "ตั้งชื่อคำกริยาที่มีความหมายว่า 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_en": "If the product code is 2t6267, who was the director?",
    "question_th": "ถ้ารหัสสินค้าคือ 2t6267 ใครคือผู้อำนวยการ?",
    "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_en": "What is the air date when the U.S. viewers was 5.50 million?",
    "question_th": "ยอดดูอเมริกา 5.50 ล้าน ออกอากาศวันไหน?",
    "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_en": "Who were the writers for production code 2t6268?",
    "question_th": "ใครคือผู้เขียนรหัสการผลิต 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_en": "Name the number of builders for number 96",
    "question_th": "ตั้งชื่อจำนวนผู้สร้างหมายเลข 96",
    "context": "CREATE TABLE table_1748444_1 (builder VARCHAR, number VARCHAR)"
  },
  {
    "answer": "SELECT builder FROM table_1748444_1 WHERE date_built = \"January 1910\"",
    "question_en": "Name the builder for date built is january 1910",
    "question_th": "ชื่อผู้สร้าง วันที่สร้าง มกราคม 2453",
    "context": "CREATE TABLE table_1748444_1 (builder VARCHAR, date_built VARCHAR)"
  },
  {
    "answer": "SELECT disposition FROM table_1748444_1 WHERE date_built = \"March 1909\"",
    "question_en": "Name the disposition for date built is march 1909",
    "question_th": "ระบุชื่อวันที่สร้างคือ มีนาคม 2452",
    "context": "CREATE TABLE table_1748444_1 (disposition VARCHAR, date_built VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_17482534_1 WHERE no_in_series = \"96\"",
    "question_en": "What is the title of episode number 96 in the series?",
    "question_th": "ตอนที่ 96 ชื่อเรื่องว่าอะไรคะ?",
    "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_en": "What number in season is the episode directed by Gene Stupnitsky?",
    "question_th": "ตอนที่กำกับโดย 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_en": "How many viewers did the episode written by Warren Lieberstein & Halsted Sullivan have?",
    "question_th": "ตอนที่เขียนโดย Warren Lieberstein และ Halsted Sullivan มีผู้ชมกี่คน",
    "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_en": "How many writers are listed for the episode with a production code of 5008?",
    "question_th": "มีนักเขียนกี่คนที่อยู่ในรายชื่อตอนนี้ซึ่งมีรหัสการผลิต 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_en": "What number in the series are the episodes with production code 5016/5017?",
    "question_th": "ซีรีส์มีตอนใดบ้างรหัสการผลิต 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_en": "How many locations have the call signs dxjp-fm? ",
    "question_th": " มีสัญญาณเรียกขาน dxjp-fm กี่แห่ง?",
    "context": "CREATE TABLE table_17487395_1 (location VARCHAR, callsign VARCHAR)"
  },
  {
    "answer": "SELECT callsign FROM table_17487395_1 WHERE frequency = \"90.3MHz\"",
    "question_en": "What is the call sign of the station with the frequency of 90.3mhz",
    "question_th": "สัญญาณเรียกขานของสถานีความถี่ 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_en": "What is the call sign for the station that uses the branding, mom's radio 101.5 tacloban?",
    "question_th": "สัญญาณเรียกขานของสถานีที่ใช้ตราแม่วิทยุ 101.5 tacloban คืออะไร?",
    "context": "CREATE TABLE table_17487395_1 (callsign VARCHAR, branding VARCHAR)"
  },
  {
    "answer": "SELECT branding FROM table_17487395_1 WHERE location = \"Cebu\"",
    "question_en": "What is the branding for stations located in Cebu? ",
    "question_th": " ตราสินค้าของสถานีที่ตั้งอยู่ในเซบูคืออะไร?",
    "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_en": "Which eagle riders whose ova (harmony gold dub) is dr. kozaburo nambu?",
    "question_th": "นักขี่นกอินทรีคนไหนที่มีไข่ (พากย์เสียงฮาร์โมนีโกลด์) คือดร. โคซาบุโระ นัมบุ?",
    "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_en": "Which battle of the planets where ova (harmony gold dub) is solaris?",
    "question_th": "การต่อสู้ของดาวเคราะห์ดวงใดที่โอวา (พากย์เสียงฮาร์โมนีโกลด์) เป็นโซลาริส?",
    "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_en": "Which eagle riders have battle of the planets as zoltar?",
    "question_th": "นักขี่นกอินทรีคนไหนที่ต่อสู้กับดวงดาวในฐานะโซลตาร์?",
    "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_en": " Which gatchaman has eagle riders as lukan?",
    "question_th": " กัตชามันคนไหนมีนกอินทรีขี่ลูกาน?",
    "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_en": "What eagle riders where ova (harmony gold dub) is lord zortek?",
    "question_th": "Eagle Riders คนไหนที่ Ova (พากย์เสียง Harmony Gold) คือ 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_en": "What pregame host was on espn and had taylor twellman color commentating?",
    "question_th": "โฮสต์พรีเกมใดที่เล่นบน espn และมี taylor twellman color แสดงความคิดเห็น?",
    "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_en": "What pregame analyst(s) had rob stone and monica gonzalez as sideline reporters and were on tsn2?",
    "question_th": "นักวิเคราะห์ก่อนเกมคนใดมี rob stone และ monica gonzalez เป็นนักข่าวข้างสนามและอยู่ใน 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_en": "What color commentator(s) were in 2010?",
    "question_th": "นักวิจารณ์สีอะไรในปี 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_en": "What is the last year that had sideline reporters rob stone and monica gonzalez?",
    "question_th": "ปีที่แล้วที่นักข่าวข้างสนามปล้นสโตนและโมนิก้า กอนซาเลซคือปีไหน?",
    "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_en": "Who had the play-by-play on espn with sideline reporter monica gonzalez?",
    "question_th": "ใครเป็นคนเล่นแบบเล่นต่อเกมบน espn กับนักข่าวข้างสนาม โมนิก้า กอนซาเลซ?",
    "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_en": "What was the name of race #28?",
    "question_th": "เผ่าพันธุ์ #28 ชื่ออะไร?",
    "context": "CREATE TABLE table_1749567_2 (name VARCHAR, number VARCHAR)"
  },
  {
    "answer": "SELECT MAX(number) FROM table_1749567_2 WHERE name = \"Eyserweg\"",
    "question_en": "The Eyserweg race was which race #?",
    "question_th": "การแข่งขัน Eyserweg คือการแข่งขัน #?",
    "context": "CREATE TABLE table_1749567_2 (number INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_1749567_2 WHERE average_climb___percentage_ = 40",
    "question_en": "Which race had an average climb of 40%?",
    "question_th": "เผ่าพันธุ์ใดมีการไต่ระดับเฉลี่ย 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_en": "The Keutenberg race had what race length?",
    "question_th": "การแข่งขัน Keutenberg มีความยาวการแข่งขันเท่าใด",
    "context": "CREATE TABLE table_1749567_2 (length__in_m_ INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT MIN(Champions) AS league FROM table_17505751_5",
    "question_en": "In the Champions league, what is the Minimum",
    "question_th": "ในแชมเปี้ยนส์ลีกขั้นต่ำคือเท่าไร",
    "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_en": "In the Champions league is the forward position smaller than 6.0",
    "question_th": "ในแชมเปี้ยนส์ลีกตำแหน่งกองหน้าน้อยกว่า 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_en": "when the total is 8 and copa del rey is 0 what is the minimum league",
    "question_th": "เมื่อผลรวมคือ 8 และโคปา เดล เรย์เป็น 0 ลีกขั้นต่ำคือเท่าใด",
    "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_en": "when the position is forward and the league is 5 what number is the Champion league",
    "question_th": "เมื่อตำแหน่งกองหน้าและลีกอยู่ที่ 5 แชมเปี้ยนลีกคือเลขอะไร",
    "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_en": "if p is bigger than 4.0 what is total number",
    "question_th": "ถ้า p มากกว่า 4.0 จำนวนทั้งหมดจะเป็นเท่าใด",
    "context": "CREATE TABLE table_17505751_5 (total VARCHAR, p INTEGER)"
  },
  {
    "answer": "SELECT 2008 AS _status FROM table_17503169_1 WHERE democratic = \"Glenn Nye\"",
    "question_en": "What was the 2008 election status when glenn nye was the running democrat?",
    "question_th": "สถานะการเลือกตั้งปี 2008 เป็นอย่างไรเมื่อ Glenn Nye ลงสมัครรับตำแหน่งพรรคเดโมแครต",
    "context": "CREATE TABLE table_17503169_1 (democratic VARCHAR)"
  },
  {
    "answer": "SELECT republican FROM table_17503169_1 WHERE incumbent = \"Thelma Drake\"",
    "question_en": "Who was the republican candidate in the race with incumbent thelma drake?",
    "question_th": "ใครคือผู้สมัครจากพรรครีพับลิกันในการแข่งขันกับผู้ดำรงตำแหน่งเทลมา เดรก?",
    "context": "CREATE TABLE table_17503169_1 (republican VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(district) FROM table_17503169_1 WHERE republican = \"Bob Goodlatte\"",
    "question_en": "How many districts had republican Bob Goodlatte as a candidate?",
    "question_th": "มีกี่เขตที่มี Bob Goodlatte จากพรรครีพับลิกันเป็นผู้สมัคร",
    "context": "CREATE TABLE table_17503169_1 (district VARCHAR, republican VARCHAR)"
  },
  {
    "answer": "SELECT democratic FROM table_17503169_1 WHERE republican = \"Frank Wolf\"",
    "question_en": "Who was the democratic candidate when the republican was  frank wolf?",
    "question_th": "ใครคือผู้สมัครตามระบอบประชาธิปไตยเมื่อพรรครีพับลิกันเป็นหมาป่าตรงไปตรงมา?",
    "context": "CREATE TABLE table_17503169_1 (democratic VARCHAR, republican VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(won) FROM table_17510803_2 WHERE points_against = \"410\"",
    "question_en": "How many won when points against is 410?",
    "question_th": "กี่แต้มที่ชนะคือ 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_en": "How many bonus points are there when points for is 385?",
    "question_th": "เมื่อถึง 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_en": "How many clubs have 62 points?",
    "question_th": "มีกี่สโมสรมี 62 คะแนน?",
    "context": "CREATE TABLE table_17510803_2 (club VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT bonus_points FROM table_17510803_2 WHERE won = \"5\"",
    "question_en": "How many bonus points were won by 5?",
    "question_th": "5 คะแนนโบนัสได้รับกี่คะแนน?",
    "context": "CREATE TABLE table_17510803_2 (bonus_points VARCHAR, won VARCHAR)"
  },
  {
    "answer": "SELECT played FROM table_17510803_2 WHERE points_for = \"362\"",
    "question_en": "How many have been played for 362 points?",
    "question_th": "เล่นไปแล้วกี่แต้มถึง 362 แต้ม?",
    "context": "CREATE TABLE table_17510803_2 (played VARCHAR, points_for VARCHAR)"
  },
  {
    "answer": "SELECT points_against FROM table_17510803_2 WHERE lost = \"13\"",
    "question_en": "How many points against have a lose of 13?",
    "question_th": "แพ้ 13 แต้มมีกี่แต้ม?",
    "context": "CREATE TABLE table_17510803_2 (points_against VARCHAR, lost VARCHAR)"
  },
  {
    "answer": "SELECT MAX(level) FROM table_1751142_2",
    "question_en": "What is the highest possible level?",
    "question_th": "ระดับสูงสุดที่เป็นไปได้คืออะไร?",
    "context": "CREATE TABLE table_1751142_2 (level INTEGER)"
  },
  {
    "answer": "SELECT shuttle_time__seconds_ FROM table_1751142_2 WHERE speed__km_h_ = \"15.5\"",
    "question_en": "What is the shuttle time for the level where the speed is 15.5 km/h?",
    "question_th": "รถรับส่งสำหรับระดับที่ความเร็ว 15.5 กม./ชม. คือเท่าไร?",
    "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_en": "What is the fewest number of shuttles where the shuttle time is 6.55 seconds?",
    "question_th": "ลูกขนไก่ที่ใช้เวลา 6.55 วินาทีน้อยที่สุดคือจำนวนเท่าใด?",
    "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_en": "What is the distance (in meters) when the shuttle time is 6.86 seconds?",
    "question_th": "ระยะทาง (เป็นเมตร) ที่เวลารถรับส่งคือ 6.86 วินาทีคือเท่าไร?",
    "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_en": "How many 3rd ru does Costa Rica have? ",
    "question_th": " คอสตาริกามีรูที่ 3 กี่รู?",
    "context": "CREATE TABLE table_17522854_6 (country VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(3 AS rd_ru) FROM table_17522854_6 WHERE country = \"Canada\"",
    "question_en": "How many 3rd ru does Canada have? ",
    "question_th": " แคนาดามี ru ที่ 3 กี่อัน?",
    "context": "CREATE TABLE table_17522854_6 (country VARCHAR)"
  },
  {
    "answer": "SELECT MIN(miss_united_continent) FROM table_17522854_6",
    "question_en": "What is the least number of miss united continents? ",
    "question_th": " 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_en": "How many different lead margins were stated in the poll administered on September 11, 2008?",
    "question_th": "มีการระบุอัตรากำไรขั้นต้นที่แตกต่างกันกี่แบบในการสำรวจความคิดเห็นที่จัดทำเมื่อวันที่ 11 กันยายน พ.ศ. 2551",
    "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_en": "Name the common name for rhampholeon spectrum ",
    "question_th": " ตั้งชื่อชื่อสามัญของสเปกตรัมแรมโฟเลียน",
    "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_en": "Name the scientific name for veiled chameleon",
    "question_th": "ตั้งชื่อชื่อวิทยาศาสตร์ของกิ้งก่ามีผ้าคลุมหน้า",
    "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_en": "Name the common name for furcifer pardalis",
    "question_th": "ตั้งชื่อชื่อสามัญของเฟอร์ซิเฟอร์ ปาร์ดาลิส",
    "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_en": "Name the number of color for furcifer pardalis",
    "question_th": "ตั้งชื่อจำนวนสีสำหรับเฟอร์ซิเฟอร์ ปาร์ดาลิส",
    "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_en": "Name the number of international frieghts for domestic mail of 260",
    "question_th": "ตั้งชื่อจำนวนการขนส่งระหว่างประเทศสำหรับไปรษณีย์ภายในประเทศ 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_en": "Name the total number of domestic mail for 7853 for total frieght and mail",
    "question_th": "ตั้งชื่อจำนวนไปรษณีย์ในประเทศทั้งหมดเป็น 7853 สำหรับจำนวนขนส่งและไปรษณีย์ทั้งหมด",
    "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_en": "Namw the total number for domestic freight for international mail is larger than 1.0 with domestic mail for 260",
    "question_th": "นำยอดค่าขนส่งภายในประเทศสำหรับไปรษณียภัณฑ์ระหว่างประเทศเกิน 1.0 ขึ้นไป โดยมีไปรษณียในประเทศอยู่ที่ 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_en": "What was the highest vote for others?",
    "question_th": "คะแนนโหวตสูงสุดสำหรับคนอื่นๆ คืออะไร?",
    "context": "CREATE TABLE table_1756284_1 (others_number INTEGER)"
  },
  {
    "answer": "SELECT kerry_percentage FROM table_1756284_1 WHERE kerry_number = 199060",
    "question_en": "When Kerry# was 199060, what was the percentage?",
    "question_th": "เมื่อ Kerry# คือ 199060 เปอร์เซ็นต์เท่าไหร่?",
    "context": "CREATE TABLE table_1756284_1 (kerry_percentage VARCHAR, kerry_number VARCHAR)"
  },
  {
    "answer": "SELECT MAX(bush_number) FROM table_1756284_1",
    "question_en": "What was the highest vote number for Bush?",
    "question_th": "หมายเลขโหวตสูงสุดสำหรับ 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_en": "How many transfer windows coming from Crystal Palace?",
    "question_th": "คริสตัล พาเลซ มีหน้าต่างโอนย้ายกี่รอบ?",
    "context": "CREATE TABLE table_17596418_4 (COUnT VARCHAR, moving_from VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_17596418_4 WHERE p = \"GK\"",
    "question_en": "What country has a P of GK?",
    "question_th": "ประเทศใดมี P ของ GK?",
    "context": "CREATE TABLE table_17596418_4 (country VARCHAR, p VARCHAR)"
  },
  {
    "answer": "SELECT p FROM table_17596418_4 WHERE moving_from = \"Everton\"",
    "question_en": "What is the P for the player moving from Everton?",
    "question_th": "ค่า P สำหรับนักเตะที่ย้ายจากเอฟเวอร์ตันคือเท่าไร?",
    "context": "CREATE TABLE table_17596418_4 (p VARCHAR, moving_from VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_17594659_1 WHERE opposition = \"Panathinaikos\"",
    "question_en": "Name the competition of panathinaikos",
    "question_th": "ตั้งชื่อการแข่งขันของพานาธิไนกอส",
    "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_en": "What is every value for viewers for ranking #51 for the Tuesday 9:00 p.m. timeslot?",
    "question_th": "มูลค่าของผู้ชมในการจัดอันดับ #51 ในช่วงเวลา 21.00 น. วันอังคารคืออะไร",
    "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_en": "What finales took place in the Tuesday 9:30 p.m. timeslot?",
    "question_th": "ตอนจบรายการใดเกิดขึ้นในวันอังคาร เวลา 21.30 น.",
    "context": "CREATE TABLE table_175980_2 (finale VARCHAR, timeslot VARCHAR)"
  },
  {
    "answer": "SELECT premiere FROM table_175980_2 WHERE finale = \"May 25, 2004\"",
    "question_en": "What premieres had a finale on May 25, 2004?",
    "question_th": "รอบปฐมทัศน์เรื่องใดบ้างที่มีตอนจบในวันที่ 25 พฤษภาคม พ.ศ. 2547",
    "context": "CREATE TABLE table_175980_2 (premiere VARCHAR, finale VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_175980_2 WHERE finale = \"May 25, 2004\"",
    "question_en": "What seasons had a finale on May 25, 2004?",
    "question_th": "ฤดูกาลใดมีตอนจบในวันที่ 25 พฤษภาคม พ.ศ. 2547",
    "context": "CREATE TABLE table_175980_2 (season VARCHAR, finale VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_175980_2 WHERE ranking = \"#47\"",
    "question_en": "What seasons had a ranking of #47?",
    "question_th": "ฤดูกาลใดมีอันดับ #47?",
    "context": "CREATE TABLE table_175980_2 (season VARCHAR, ranking VARCHAR)"
  },
  {
    "answer": "SELECT viewers__in_millions_ FROM table_175980_2 WHERE season = \"1st\"",
    "question_en": "What are all values for viewers for 1st season?",
    "question_th": "คุณค่าทั้งหมดสำหรับผู้ชมสำหรับซีซันที่ 1 คืออะไร?",
    "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_en": "What is the withdraw date for secr no. 771?",
    "question_th": "วันที่ถอนออกสำหรับหมายเลขหลักทรัพย์คือเมื่อใด 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_en": "Who is the builder for br no. 31779?",
    "question_th": "ใครคือผู้สร้างหมายเลข br. 31779?",
    "context": "CREATE TABLE table_17607663_1 (builder VARCHAR, br_no VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_17596418_5 WHERE loan_club = \"Fulham\"",
    "question_en": "what ist he country where the loan club is fulham?",
    "question_th": "เขาอยู่ประเทศอะไร สโมสรยืมตัวคือฟูแล่ม?",
    "context": "CREATE TABLE table_17596418_5 (country VARCHAR, loan_club VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(age) FROM table_17596418_5 WHERE started = \"6 November\"",
    "question_en": "what ist he total number of ages where the start date is 6 november?",
    "question_th": "เขาอายุทั้งหมดกี่ปี โดยวันที่เริ่มต้นคือ 6 พฤศจิกายน?",
    "context": "CREATE TABLE table_17596418_5 (age VARCHAR, started VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_17624965_1 WHERE production_code = 618",
    "question_en": "What was the name of eipsode 618?",
    "question_th": "ตอนที่ 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_en": "How many episodes did Alison Maclean direct?",
    "question_th": "Alison Maclean กำกับกี่ตอน?",
    "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_en": "Name the high points for may 29",
    "question_th": "ทายคะแนนสูงสุดประจำวันที่ 29 พ.ค",
    "context": "CREATE TABLE table_17622423_12 (high_points VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_17622423_12 WHERE series = \"2-2\"",
    "question_en": "Name the date for series 2-2",
    "question_th": "ตั้งชื่อวันที่สำหรับชุดที่ 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_en": "Name the high assists for may 21",
    "question_th": "ทายแอสซิสต์สูงประจำวันที่ 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_en": "How many different play-by-play announcers also had pregame analysis by Darren Flutie, Eric Tillman and Greg Frers?",
    "question_th": "มีผู้ประกาศแบบเล่นต่อเกมกี่คนที่ได้รับการวิเคราะห์ก่อนเกมโดย Darren Flutie, Eric Tillman และ 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_en": "Who did the play-by-play when the pregame host was Brian Williams and the sideline reporters were Steve Armitage and Brenda Irving?",
    "question_th": "ใครเป็นคนเล่นแบบเพลย์บายเพลย์เมื่อพิธีกรก่อนเกมคือ Brian Williams และนักข่าวข้างสนามคือ Steve Armitage และ 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_en": "Who were the pregame hosts when the sideline reporters were Steve Armitage and Brenda Irving?",
    "question_th": "ใครคือพิธีกรก่อนเกมเมื่อนักข่าวข้างสนามคือ Steve Armitage และ 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_en": "Who did pregame analysis in 2002?",
    "question_th": "ใครทำการวิเคราะห์ก่อนเกมในปี 2545?",
    "context": "CREATE TABLE table_17628022_2 (pregame_analysts VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT state FROM table_1762887_1 WHERE county = \"Lake county\"",
    "question_en": "Name the state for lake county",
    "question_th": "ตั้งชื่อรัฐสำหรับเลกเคาน์ตี้",
    "context": "CREATE TABLE table_1762887_1 (state VARCHAR, county VARCHAR)"
  },
  {
    "answer": "SELECT MIN(season) FROM table_17632217_1",
    "question_en": "What is the lowest season?",
    "question_th": "ฤดูกาลต่ำสุดคืออะไร?",
    "context": "CREATE TABLE table_17632217_1 (season INTEGER)"
  },
  {
    "answer": "SELECT COUNT(number_of_clubs) FROM table_17632217_1 WHERE runners_up = \"Shandong\"",
    "question_en": "How many values for number of clubs have Shandong as the runner-up?",
    "question_th": "สโมสรที่มีซานตงเป็นรองแชมป์มีกี่ค่า?",
    "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_en": "How many total wins with Shanghai as runner-up?",
    "question_th": "เซี่ยงไฮ้เป็นรองแชมป์ทั้งหมดกี่ทีม?",
    "context": "CREATE TABLE table_17632217_1 (total_wins VARCHAR, runners_up VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_17625749_1 WHERE tries_for = \"32\"",
    "question_en": "Name the club for when tries for is 32",
    "question_th": "ตั้งชื่อสโมสรเมื่อพยายามเพื่อคือ 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_en": "Name the number of lost where tries for is 109",
    "question_th": "บอกจำนวนผู้แพ้โดยพยายามให้ได้ 109",
    "context": "CREATE TABLE table_17625749_1 (lost VARCHAR, tries_for VARCHAR)"
  },
  {
    "answer": "SELECT won FROM table_17625749_1 WHERE tries_against = \"72\"",
    "question_en": "Name the won when tries against is 72",
    "question_th": "ตั้งชื่อผู้ชนะเมื่อพยายามต่อต้านคือ 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_en": "Name the points aginst when drawn is 1 and points is 51",
    "question_th": "ตั้งชื่อแต้มตรงข้ามเมื่อวาดได้ 1 และแต้มคือ 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_en": "Name the original air date for number in season being 1",
    "question_th": "ตั้งชื่อวันที่ออกอากาศเดิมสำหรับหมายเลขในซีซันเป็น 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_en": "How many were won when 5 were lost? ",
    "question_th": " ชนะไปกี่คนเมื่อแพ้ 5 คน?",
    "context": "CREATE TABLE table_17625749_3 (won VARCHAR, lost VARCHAR)"
  },
  {
    "answer": "SELECT drawn FROM table_17625749_3 WHERE lost = \"13\"",
    "question_en": "How many were drawn when 13 were lost? ",
    "question_th": " เมื่อแพ้ 13 คนถูกจับได้กี่คน?",
    "context": "CREATE TABLE table_17625749_3 (drawn VARCHAR, lost VARCHAR)"
  },
  {
    "answer": "SELECT points_for FROM table_17625749_3 WHERE tries_against = \"63\"",
    "question_en": "How many points are there for 63 tries against? ",
    "question_th": " 63 ครั้งมีกี่คะแนน?",
    "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_en": "What is the try bonus when the tries against are 17? ",
    "question_th": " โบนัสลองเมื่อพยายามต่อต้านคือ 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_en": "How many tries for are there when 11 were won? ",
    "question_th": " มีความพยายามกี่ครั้งเมื่อชนะ 11 ครั้ง?",
    "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_en": "How many points categories are there when the losing bonus is 2 and points for are 642?",
    "question_th": "มีกี่ประเภทคะแนนเมื่อโบนัสที่แพ้คือ 2 และคะแนนคือ 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_en": "How many people wrote the episode that had 6.34 million viewers?",
    "question_th": "มีกี่คนที่เขียนตอนที่มีผู้ชม 6.34 ล้านคน?",
    "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_en": "What was the title of the episode with 5.04 million viewers?",
    "question_th": "ชื่อเรื่องของตอนที่มีผู้ชม 5.04 ล้านคนคืออะไร?",
    "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_en": "What was the first airdate with a viewership of 4.77 million?",
    "question_th": "ออกอากาศครั้งแรกเมื่อใดที่มีผู้ชม 4.77 ล้านคน?",
    "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_en": "How many episodes  of 30 minutes were written by John Sullivan?",
    "question_th": "John Sullivan เขียนบทความยาว 30 นาทีทั้งหมดกี่ตอน?",
    "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_en": "Who was the director when the writer was John Sullivan?",
    "question_th": "ใครเป็นผู้กำกับเมื่อผู้เขียนคือ 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_en": "What are the movies that are written and dircted by  john sullivan  with the airdate of 15january2009.",
    "question_th": "มีภาพยนตร์อะไรบ้างที่เขียนบทและกำกับโดยจอห์น ซัลลิแวน ซึ่งมีกำหนดออกอากาศวันที่ 15 มกราคม 2552",
    "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_en": "How many episodes aired on 22january2009",
    "question_th": "ออกอากาศวันที่ 22 มกราคม 2552 กี่ตอน",
    "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_en": "Name the least transfers out when transfers is 21",
    "question_th": "ตั้งชื่อการโอนออกน้อยที่สุดเมื่อโอนคือ 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_en": "Name the least total transfers for romania",
    "question_th": "ตั้งชื่อการโอนรวมน้อยที่สุดสำหรับโรมาเนีย",
    "context": "CREATE TABLE table_17650725_1 (total_transfers INTEGER, country VARCHAR)"
  },
  {
    "answer": "SELECT MIN(internal_transfers) FROM table_17650725_1",
    "question_en": "Name the least internal transfers",
    "question_th": "ตั้งชื่อการโอนภายในน้อยที่สุด",
    "context": "CREATE TABLE table_17650725_1 (internal_transfers INTEGER)"
  },
  {
    "answer": "SELECT COUNT(status) FROM table_176529_2 WHERE official_name = \"Moncton\"",
    "question_en": "How many status are there for Moncton?",
    "question_th": "มองก์ตันมีสถานะกี่สถานะ?",
    "context": "CREATE TABLE table_176529_2 (status VARCHAR, official_name VARCHAR)"
  },
  {
    "answer": "SELECT census_ranking FROM table_176529_2 WHERE population = 959",
    "question_en": "What is the census ranking of the location with population of 959?",
    "question_th": "การสำรวจสำมะโนประชากรของสถานที่ที่มีประชากร 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_en": "What is the name of the place with 582.20 square km area?",
    "question_th": "สถานที่ที่มีพื้นที่ 582.20 ตารางกิโลเมตรชื่ออะไร",
    "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_en": "What is the name of the place where area is 578.28 square km?",
    "question_th": "สถานที่ซึ่งมีพื้นที่ 578.28 ตารางกิโลเมตรชื่ออะไร",
    "context": "CREATE TABLE table_176529_2 (official_name VARCHAR, area_km_2 VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_17693171_1 WHERE points = \"20\"",
    "question_en": "If the points is 20, what was the team name?",
    "question_th": "ถ้าคะแนนเป็น 20 ทีมชื่ออะไร?",
    "context": "CREATE TABLE table_17693171_1 (team VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT time_retired FROM table_17693171_1 WHERE driver = \"Marco Andretti\"",
    "question_en": "What is the time/retired if the driver is Marco Andretti?",
    "question_th": "เวลาใด/จะเกษียณแล้วหากคนขับคือ 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_en": "If the laps is 191, what is the maximum laps led?",
    "question_th": "ถ้ารอบเป็น 191 รอบสูงสุดที่นำมาคือเท่าใด?",
    "context": "CREATE TABLE table_17693171_1 (laps INTEGER)"
  },
  {
    "answer": "SELECT time_retired FROM table_17693171_1 WHERE driver = \"Ed Carpenter\"",
    "question_en": "What is the time/retired if the driver is Ed Carpenter?",
    "question_th": "มีเวลา/เกษียณเมื่อใดหากคนขับคือ 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_en": "If the time/retired is +1 lap, what is the amount of maximum laps?",
    "question_th": "หากเวลา/เกษียณคือ +1 รอบ จำนวนรอบสูงสุดคือเท่าใด",
    "context": "CREATE TABLE table_17693171_1 (laps INTEGER, time_retired VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_17693171_1 WHERE driver = \"Milka Duno\"",
    "question_en": "If the driver is Milka Duno, what is the name of the team?",
    "question_th": "ถ้าคนขับคือ มิลก้า ดูโน ทีมชื่ออะไร?",
    "context": "CREATE TABLE table_17693171_1 (team VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(stage) FROM table_17672470_19 WHERE winner = \"Robbie McEwen\"",
    "question_en": "How many stages were won by Robbie McEwen?",
    "question_th": "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_en": "How many car numbers were listed for Rusty Wallace?",
    "question_th": "มีหมายเลขรถกี่หมายเลขสำหรับ 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_en": "In what season did Rusty Wallace win?",
    "question_th": "Rusty Wallace ชนะในฤดูกาลใด",
    "context": "CREATE TABLE table_1769428_2 (season INTEGER, winning_driver VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_1769428_2 WHERE date = \"June 27\"",
    "question_en": "What was the represented team on June 27?",
    "question_th": "ทีมตัวแทนในวันที่ 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_en": "Who was the winning driver for Hendrick Motorsports in a Chevrolet Impala SS?",
    "question_th": "ใครคือนักแข่งที่ชนะของ Hendrick Motorsports ใน 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_en": "When 45 is the goals for and  10 is the drawn what is the lost?",
    "question_th": "เมื่อได้ 45 ประตูและเสมอกัน 10 ประตู อะไรคือการสูญเสีย?",
    "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_en": "When +10 is the goal difference what is the goals for?",
    "question_th": "เมื่อ +10 คือผลต่างประตู เป้าหมายมีไว้เพื่ออะไร?",
    "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_en": "When ellesmere port & neston is the team what are the points 1?",
    "question_th": "เมื่อ ellesmere port & Neston อยู่ทีมอะไร แต้ม 1 คืออะไร?",
    "context": "CREATE TABLE table_17718005_2 (points_1 VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(driver) FROM table_1771753_3 WHERE season = \"2005\"",
    "question_en": "When 2005 is the season how many drivers are there?",
    "question_th": "เมื่อถึงฤดูกาลปี 2548 มีนักแข่งกี่คน?",
    "context": "CREATE TABLE table_1771753_3 (driver VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT average_speed__mph_ FROM table_1771753_3 WHERE driver = \"Tony Kanaan\"",
    "question_en": "When tony kanaan is the driver what is the average speed miles per hour?",
    "question_th": "เมื่อ Tony Kanaan เป็นคนขับ ความเร็วเฉลี่ยเป็นไมล์ต่อชั่วโมงเป็นเท่าใด",
    "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_en": "When 169.182 is the average speed miles per hour what is the chassis?",
    "question_th": "เมื่อ 169.182 คือความเร็วเฉลี่ยไมล์ต่อชั่วโมง แชสซีคืออะไร?",
    "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_en": "When 1:34:01 is the race time what is the miles in kilometers?",
    "question_th": "เมื่อเวลา 1:34:01 น. ถึงเวลาแข่งขัน ไมล์เป็นกิโลเมตรเท่าไร?",
    "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_en": "When 228 is the lap and chip ganassi racing is the team what is the race time?",
    "question_th": "เมื่อ 228 เป็นการแข่งรอบและชิปกานาซซีทีมแข่งเวลาใด?",
    "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_en": "What tie number featured Chelsea as the home team?",
    "question_th": "หมายเลขเสมอใดที่ทำให้เชลซีเป็นเจ้าบ้าน?",
    "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_en": "In what tie were Leeds United the away team?",
    "question_th": "ลีดส์ ยูไนเต็ด เสมอกับทีมเยือน?",
    "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_en": "Who was the home team when Burnley were the away team?",
    "question_th": "เมื่อเบิร์นลี่ย์เป็นทีมเยือนคือใคร?",
    "context": "CREATE TABLE table_17736890_5 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_177273_2",
    "question_en": "what is the lowest year represented?",
    "question_th": "ปีต่ำสุดคือปีใด?",
    "context": "CREATE TABLE table_177273_2 (year INTEGER)"
  },
  {
    "answer": "SELECT score FROM table_177273_2 WHERE partner = \"Françoise Dürr\"",
    "question_en": "What was the score when Françoise Dürr was partner?",
    "question_th": "เมื่อฟร็องซัว ดูร์เป็นคู่หูทำสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_177273_2 (score VARCHAR, partner VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_177273_2 WHERE year = 1975",
    "question_en": "What was the outcome in 1975?",
    "question_th": "ผลลัพธ์ในปี 1975 เป็นอย่างไร?",
    "context": "CREATE TABLE table_177273_2 (outcome VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_177273_2 WHERE score = \"6–4, 6–4\"",
    "question_en": "On what surface was the game played with a score of  6–4, 6–4?",
    "question_th": "เกมนี้เล่นบนพื้นผิวใดด้วยคะแนน 6–4, 6–4?",
    "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_en": "What is the year of appearance for the Prince Albert Raiders? ",
    "question_th": " 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_en": "How many wins do the Erie Otters have? ",
    "question_th": " Erie Otters มีชัยชนะกี่ครั้ง?",
    "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_en": "What is the final win percentage of the Sault Ste. Marie Greyhounds? ",
    "question_th": " เปอร์เซ็นต์การชนะครั้งสุดท้ายของ Sault Ste คืออะไร มารี เกรฮาวด์?",
    "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_en": "What is the total number of semi-final losses for the Kitchener Rangers? ",
    "question_th": " จำนวนการแพ้รอบรองชนะเลิศของ 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_en": "How many wins do the Red Deer Rebels have? ",
    "question_th": " Red Deer Rebels ชนะได้กี่ครั้ง?",
    "context": "CREATE TABLE table_17751942_4 (wins INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_17765888_1 WHERE date = \"November 26, 1961\"",
    "question_en": "What is the record for November 26, 1961?",
    "question_th": "บันทึกประจำวันที่ 26 พฤศจิกายน 2504 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_17765888_1 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT game_site FROM table_17765888_1 WHERE opponent = \"Dallas Texans\"",
    "question_en": "What was the game site against the Dallas Texans?",
    "question_th": "เว็บไซต์เกมกับ 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_en": "In how many years was Tom Fleming the final television commentator? ",
    "question_th": " ทอม เฟลมมิงเป็นผู้บรรยายรายการโทรทัศน์คนสุดท้ายในรอบกี่ปี?",
    "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_en": "What was the latest year that Colin Berry was the spokesperson? ",
    "question_th": "ล่าสุดปีไหนที่ Colin Berry เป็นโฆษก?",
    "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_en": "Who was the semi-final television commentator when the spokesperson was Colin Berry and the final television commentator was Pete Murray?",
    "question_th": "ใครคือผู้บรรยายรายการโทรทัศน์รอบรองชนะเลิศเมื่อโฆษกคือ Colin Berry และผู้บรรยายโทรทัศน์คนสุดท้ายคือ 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_en": "Who was the radio commentator when the final television commentator was John Dunn? ",
    "question_th": " ใครคือผู้บรรยายรายการวิทยุ ในตอนที่ผู้บรรยายโทรทัศน์คนสุดท้ายคือ จอห์น ดันน์",
    "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_en": "What is the latest year that the final television commentator was David Jacobs? ",
    "question_th": " ปีล่าสุดที่ผู้บรรยายรายการโทรทัศน์คนสุดท้ายคือ 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_en": "What was their record when the attendance at the game was 14489?",
    "question_th": "สถิติของพวกเขาเมื่อเข้าร่วมในเกมคือ 14489 คืออะไร?",
    "context": "CREATE TABLE table_17765264_1 (record VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_17765264_1 WHERE game_site = \"Cotton Bowl\"",
    "question_en": "When did they play at the Cotton Bowl?",
    "question_th": "พวกเขาเล่นที่ Cotton Bowl เมื่อไหร่?",
    "context": "CREATE TABLE table_17765264_1 (date VARCHAR, game_site VARCHAR)"
  },
  {
    "answer": "SELECT per­cent­age FROM table_177766_1 WHERE abbre­viation = \"Nor\"",
    "question_en": "What is the percentage of this constellation abbreviated as 'nor'?",
    "question_th": "เปอร์เซ็นต์ของกลุ่มดาวนี้ใช้อักษรย่อว่า 'nor' เป็นเท่าใด",
    "context": "CREATE TABLE table_177766_1 (per­cent­age VARCHAR, abbre­viation VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(right_ascension__hm_) FROM table_177766_1 WHERE abbre­viation = \"Oph\"",
    "question_en": "This constellation, abbreviated as 'oph' has how many right ascension (in hm)?",
    "question_th": "กลุ่มดาวนี้เรียกโดยย่อว่า 'อ๊อฟ' มีการเสด็จขึ้นสู่สวรรค์ที่ถูกต้องกี่ดวง (หน่วยเป็น hm)?",
    "context": "CREATE TABLE table_177766_1 (right_ascension__hm_ VARCHAR, abbre­viation VARCHAR)"
  },
  {
    "answer": "SELECT constellation FROM table_177766_1 WHERE area__sqdeg_ = \"245.375\"",
    "question_en": "What is the name of this constellation with an area of 245.375 sq. deg.?",
    "question_th": "กลุ่มดาวนี้มีพื้นที่ 245.375 ตารางองศา ชื่ออะไร",
    "context": "CREATE TABLE table_177766_1 (constellation VARCHAR, area__sqdeg_ VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(per) AS ­cent­age FROM table_177766_1 WHERE rank = 51",
    "question_en": "This constellation with a ranking of 51 has how many percentages on record?",
    "question_th": "กลุ่มดาวที่มีอันดับ 51 นี้มีสถิติกี่เปอร์เซ็นต์?",
    "context": "CREATE TABLE table_177766_1 (per VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT per­cent­age FROM table_177766_1 WHERE area__sqdeg_ = \"248.885\"",
    "question_en": "What is the percentage of this constellation with an area of 248.885 sq. deg.?",
    "question_th": "กลุ่มดาวนี้มีพื้นที่ 248.885 ตารางองศา คิดเป็นเปอร์เซ็นต์เท่าใด",
    "context": "CREATE TABLE table_177766_1 (per­cent­age VARCHAR, area__sqdeg_ VARCHAR)"
  },
  {
    "answer": "SELECT broadcast_date FROM table_1776943_1 WHERE viewers__in_millions_ = \"6.4\" AND archive = \"16mm t/r\"",
    "question_en": "Name the broadcast date for 6.4 million viewers for the archive of 16mm t/r",
    "question_th": "ตั้งชื่อวันที่ออกอากาศสำหรับผู้ชม 6.4 ล้านคนสำหรับไฟล์เก็บถาวรขนาด 16 มม. 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_en": "Name the archive where run time 24:04",
    "question_th": "ตั้งชื่อไฟล์เก็บถาวรโดยที่เวลารัน 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_en": "On November 1, 1964, where was the game site?",
    "question_th": "วันที่ 1 พฤศจิกายน 2507 เว็บไซต์เกมอยู่ที่ไหน?",
    "context": "CREATE TABLE table_17781394_1 (game_site VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_17778417_1 WHERE week = 8",
    "question_en": "How many people attended the Week 8 game when Denver played Buffalo?",
    "question_th": "มีกี่คนที่เข้าร่วมเกมสัปดาห์ที่ 8 เมื่อเดนเวอร์เล่นบัฟฟาโล",
    "context": "CREATE TABLE table_17778417_1 (attendance VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(record) FROM table_17778417_1 WHERE opponent = \"Dallas Texans\"",
    "question_en": "How many times did the Denver Broncos face the Dallas Texans this season?",
    "question_th": "เดนเวอร์ บรองโกส์ พบกับ ดัลลัส เท็กแซนส์ กี่ครั้งในฤดูกาลนี้?",
    "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_en": "What year was the winning race time 1:55:13?",
    "question_th": "ผู้ชนะการแข่งขันเวลา 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_en": "For races with an average speed of 113.835 mph, what are the winning race times?",
    "question_th": "สำหรับการแข่งด้วยความเร็วเฉลี่ย 113.835 ไมล์ต่อชั่วโมง เวลาการแข่งขันที่ชนะคือเท่าใด",
    "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_en": "What manufacturer won the race on November 2?",
    "question_th": "ผู้ผลิตรายใดชนะการแข่งขันในวันที่ 2 พฤศจิกายน",
    "context": "CREATE TABLE table_17801022_1 (manufacturer VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_17801022_1 WHERE driver = \"Jamie McMurray\"",
    "question_en": "What date did Jamie McMurray win the race?",
    "question_th": "Jamie McMurray ชนะการแข่งขันวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_17801022_1 (date VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_17801022_1 WHERE race_time = \"1:55:13\"",
    "question_en": "What was the date of the race with a winning time of 1:55:13?",
    "question_th": "แข่งวันที่เท่าไหร่คะ ชนะด้วยเวลา 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_en": "What team(s) enjoyed an average spped (mph) of 138.14?",
    "question_th": "ทีมใดมีความเร็วเฉลี่ย (mph) ที่ 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_en": "How many laps recorded in 2001?",
    "question_th": "บันทึกกี่รอบในปี 2544?",
    "context": "CREATE TABLE table_17802778_1 (laps VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_17802778_1 WHERE year = 2003",
    "question_en": "What team(s) were in 2003?",
    "question_th": "ปี 2546 อยู่ทีมอะไร?",
    "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_en": "What was the average speed (mph) for the racer who finished in 1:45:00?",
    "question_th": "ความเร็วเฉลี่ย (mph) ของนักแข่งที่เข้าเส้นชัยในเวลา 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_en": "How many total miles recorded for the racer who finished in 1:05:33?",
    "question_th": "นักแข่งที่เข้าเส้นชัยในเวลา 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_en": "what was the title of the episode 21a?",
    "question_th": "ตอนที่ 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_en": "who wrote episode 14?",
    "question_th": "ใครเป็นคนเขียนตอนที่ 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_en": "Who many votes did E. Greenberg receive in Morris County?",
    "question_th": "E. Greenberg ได้รับคะแนนเสียงกี่คะแนนใน 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_en": "How many precincts are in the county where G. Hager received 19 (20%) votes?",
    "question_th": "มีกี่เขตในเขตที่ G. Hager ได้รับคะแนนเสียง 19 (20%)",
    "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_en": "Name the slope length for 1966 groundstation",
    "question_th": "ตั้งชื่อความยาวความลาดชันของสถานีภาคพื้นดินปี 1966",
    "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_en": "Name the name or route for slope length being 336",
    "question_th": "ตั้งชื่อหรือเส้นทางสำหรับความยาวความชันเป็น 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_en": "Name the slope length for gondola",
    "question_th": "ตั้งชื่อความยาวความชันของเรือกอนโดลา",
    "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_en": "Name the least capacity for persons hour for 1983",
    "question_th": "ตั้งชื่อความจุน้อยที่สุดสำหรับชั่วโมงบุคคล พ.ศ. 2526",
    "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_en": "How many categories of new entries this round are there for the fourth round proper? ",
    "question_th": " รอบนี้มีผู้เข้าใหม่กี่ประเภทสำหรับรอบที่สี่?",
    "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_en": "How many runner-ups were there when the show went to Japan?",
    "question_th": "ตอนที่ไปแสดงที่ญี่ปุ่นมีรองแชมป์กี่คน?",
    "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_en": "How many won the prize when Regina was the runner-up?",
    "question_th": "ตอนที่เรจิน่าได้รางวัลรองชนะเลิศไปกี่คน?",
    "context": "CREATE TABLE table_178242_7 (winner VARCHAR, runner_up VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_178242_7 WHERE the_mole = \"Milouska\"",
    "question_en": "Which season is it when Milouska was the show's mole ?",
    "question_th": "ฤดูกาลไหนที่ Milouska เป็นไฝของรายการ?",
    "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_en": "What were the requirements for the role played by Robert Austin in the original production?",
    "question_th": "ข้อกำหนดสำหรับบทบาทของโรเบิร์ต ออสตินในการผลิตดั้งเดิมมีอะไรบ้าง?",
    "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_en": "What actor played the \"female, older\" role in the original production?",
    "question_th": "นักแสดงคนใดที่มีบทบาทเป็น \"ผู้หญิง, อายุมากกว่า\" ในการผลิตดั้งเดิม?",
    "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_en": "What FlatSpin actor played the same role as Robert Austin?",
    "question_th": "นักแสดง FlatSpin คนใดที่มีบทบาทเหมือนกับ 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_en": "How many RolePlay actors played the role requiring a \"male, younger\" actor?",
    "question_th": "มีนักแสดงสวมบทบาทกี่คนที่มีบทบาทที่ต้องการนักแสดง \"ผู้ชาย อายุน้อยกว่า\"?",
    "context": "CREATE TABLE table_17827271_1 (roleplay VARCHAR, actor_required VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(roleplay) FROM table_17827271_1 WHERE flatspin = \"Tracy Taylor\"",
    "question_en": "How many RolePlay actors played the same role as FlatSpin's Tracy Taylor?",
    "question_th": "มีนักแสดงสวมบทบาทกี่คนที่มีบทบาทเหมือนกับ Tracy Taylor จาก FlatSpin",
    "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_en": "What RolePlay actor played the same role Alison Pargeter played in the original production?",
    "question_th": "นักแสดงสวมบทบาทคนใดที่มีบทบาทเดียวกันกับที่ Alison Pargeter เล่นในการผลิตดั้งเดิม?",
    "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_en": "What's the name of the church in Stavang?",
    "question_th": "โบสถ์ที่สตาวังชื่ออะไรคะ?",
    "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_en": "What's the sub-parish (sokn) of Eikefjord?",
    "question_th": "เขตย่อย (sokn) ของ 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_en": "On how many locations is there a church named Askrova Bedehuskapell, built in 1957?",
    "question_th": "มีโบสถ์ชื่อ Askrova Bedehuskapell สร้างขึ้นในปี 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_en": "In what parish is the Askrova Bedehuskapell church?",
    "question_th": "โบสถ์ Askrova Bedehuskapell อยู่ในตำบลใด?",
    "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_en": "Which channel has the host Art Rooijakkers?",
    "question_th": "ช่องไหนมีพิธีกร อาร์ต รอยจักร์ บ้าง?",
    "context": "CREATE TABLE table_178242_1 (channel VARCHAR, host_s_ VARCHAR)"
  },
  {
    "answer": "SELECT premiere___aired FROM table_178242_1 WHERE channel = \"VIER\"",
    "question_en": "When did the program air on Vier?",
    "question_th": "รายการนี้ออกอากาศทาง 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 – 21 June 2008\"",
    "question_en": "What is the title that aired from 17 may 2008 – 21 june 2008 on Nederland 3?",
    "question_th": "ชื่อเรื่องที่ออกอากาศตั้งแต่วันที่ 17 พฤษภาคม พ.ศ. 2551 – 21 มิถุนายน พ.ศ. 2551 ทางช่อง 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_en": "How many seasons did the show run in Poland?",
    "question_th": "รายการนี้ดำเนินไปกี่ฤดูกาลในโปแลนด์?",
    "context": "CREATE TABLE table_178242_1 (seasons VARCHAR, country___region VARCHAR)"
  },
  {
    "answer": "SELECT current_stock FROM table_17839_1 WHERE avg_trips_per_mile__×1000_ = 4744",
    "question_en": "When 4744 is the avg. trips per mile (x1000) what is the current stock?",
    "question_th": "เมื่อ 4744 คือค่าเฉลี่ย เที่ยวต่อไมล์ (x1,000) หุ้นปัจจุบันคือเท่าไร?",
    "context": "CREATE TABLE table_17839_1 (current_stock VARCHAR, avg_trips_per_mile__×1000_ VARCHAR)"
  },
  {
    "answer": "SELECT future_stock FROM table_17839_1 WHERE map_colour = \"Green\"",
    "question_en": "When green is the map colour what is the future stock?",
    "question_th": "เมื่อสีเขียวเป็นสีแผนที่ หุ้นในอนาคตคืออะไร?",
    "context": "CREATE TABLE table_17839_1 (future_stock VARCHAR, map_colour VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(avg_trips_per_mile__) AS ×1000_ FROM table_17839_1 WHERE map_colour = \"Turquoise\"",
    "question_en": "When turquoise is the map colour how many avg. trips per mile (×1000)  are there?",
    "question_th": "เมื่อสีเขียวขุ่นเป็นสีแผนที่เฉลี่ยเท่าไร มีเที่ยวต่อไมล์ (×1,000) หรือไม่?",
    "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_en": "When turquoise is the map colour what is the length?",
    "question_th": "เมื่อเทอร์ควอยซ์เป็นสีแผนที่จะมีความยาวเท่าใด",
    "context": "CREATE TABLE table_17839_1 (length VARCHAR, map_colour VARCHAR)"
  },
  {
    "answer": "SELECT MAX(year_established) FROM table_1784514_1",
    "question_en": "What is the latest year a division was established?",
    "question_th": "แผนกนี้ก่อตั้งขึ้นเมื่อปีล่าสุดคือเมื่อปีใด?",
    "context": "CREATE TABLE table_1784514_1 (year_established INTEGER)"
  },
  {
    "answer": "SELECT number_of_powiats FROM table_1784514_1 WHERE capital = \"Mstsislaw\"",
    "question_en": "How many powiats have mstsislaw as a capital?",
    "question_th": "มีโพเวียตกี่ตัวที่มี mstsislaw เป็นเมืองหลวง?",
    "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_en": "How many capitals had brest litovsk voivodeship as voivodeship after 1569?",
    "question_th": "มีเมืองหลวงกี่แห่งที่มีวอยโวเดชิพเบรสต์ ลิตอฟสค์ เป็นวอยโวเดชิพหลังปี 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_en": "What is the latest year established that had 5 powiats?",
    "question_th": "ปีล่าสุดที่ก่อตั้งมี 5 โพเวียตคือปีใด?",
    "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_en": "In what parish is the sub-parish fortun? ",
    "question_th": " ตำบลโชคอยู่ตำบลใด?",
    "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_en": "What is the sub-parish of the church located in Fortun? ",
    "question_th": " วัดตำบลฟอร์ตุน สังกัดวัดใด?",
    "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_en": "What is the year that the oldest church was built in Jostedal? ",
    "question_th": " โบสถ์ที่เก่าแก่ที่สุดสร้างขึ้นใน 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_en": "What parishes are in Solvorn? ",
    "question_th": " 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_en": "Name the number of parish for vilnes kyrkje",
    "question_th": "ตั้งชื่อหมายเลขตำบลสำหรับ 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_en": "Name the parish for 1908",
    "question_th": "ตั้งชื่อตำบลสำหรับปี 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_en": "Name the maximum year built for holmedal kyrkje",
    "question_th": "ตั้งชื่อปีสูงสุดที่สร้างขึ้นสำหรับ 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_en": "What is the week where the game site is Shea Stadium?",
    "question_th": "สัปดาห์ไหนที่สถานที่เล่นเกมคือ Shea Stadium?",
    "context": "CREATE TABLE table_17861179_1 (week INTEGER, game_site VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_17861179_1 WHERE week = 6",
    "question_en": "For week 6, what were the results?",
    "question_th": "สัปดาห์ที่ 6 ผลลัพธ์เป็นอย่างไร?",
    "context": "CREATE TABLE table_17861179_1 (result VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(week) FROM table_17869717_1 WHERE date = \"November 3\"",
    "question_en": "In how many weeks was the game played on November 3 played?",
    "question_th": "เกมที่เล่นในวันที่ 3 พฤศจิกายนเล่นได้กี่สัปดาห์?",
    "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_en": "What is the broadcast date when 8.3 million viewers watched?",
    "question_th": "ออกอากาศวันไหนที่มีผู้ชม 8.3 ล้านคน?",
    "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_en": "What is the broadcast date of the episode with run time 25:12?",
    "question_th": "ออกอากาศวันไหน เวลา 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_en": "How many million viewers watched the episode that runs 25:55 minutes?",
    "question_th": "มีผู้ชมรับชมตอนที่ 25:55 นาทีกี่ล้านคน?",
    "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_en": "How many dances did Warren & Kym have?",
    "question_th": "Warren & Kym มีการเต้นรำกี่ครั้ง?",
    "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_en": "What are the total points for the team that averages 17.8?",
    "question_th": "คะแนนรวมของทีมที่เฉลี่ย 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_en": "What is average for Cody & Julianne?",
    "question_th": "ค่าเฉลี่ยของ Cody & Julianne คืออะไร?",
    "context": "CREATE TABLE table_17862135_3 (average VARCHAR, couple VARCHAR)"
  },
  {
    "answer": "SELECT division_southwest FROM table_17881033_1 WHERE division_south = \"Kožuf\" AND division_east = \"Osogovo\"",
    "question_en": "what is the division southwest when division south was kožuf and division east was osogovo",
    "question_th": "ฝ่ายตะวันตกเฉียงใต้คืออะไรเมื่อฝ่ายใต้คือ kožuf และฝ่ายตะวันออกคือ 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–08\"",
    "question_en": "what is the division north in 2007–08",
    "question_th": "ฝ่ายเหนือคืออะไรในปี 2550–08",
    "context": "CREATE TABLE table_17881033_1 (division_north VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT division_north FROM table_17881033_1 WHERE division_south = \"Kožuf\" AND division_southwest = \"Ilinden Velmej\"",
    "question_en": "what is the division north when division south was kožuf and division southwest was ilinden velmej",
    "question_th": "ฝ่ายเหนือคืออะไรเมื่อฝ่ายใต้คือ kožuf และฝ่ายตะวันตกเฉียงใต้คือ 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_en": "how many division southwest was there when  division east was babi",
    "question_th": "มีกี่กองทางตะวันตกเฉียงใต้เมื่อกองทางตะวันออกเป็นบาบี",
    "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_en": "what is the division east when division north was milano",
    "question_th": "ฝ่ายตะวันออกคืออะไร เมื่อฝ่ายเหนือคือมิลาโน",
    "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_en": "who co-wrote Season 2, Episode 3?",
    "question_th": "ใครร่วมเขียนซีซั่น 2 ตอนที่ 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_en": "what is the series # for the episode directed by Kelly Sandefur?",
    "question_th": "ซีรีส์ # สำหรับตอนที่กำกับโดย 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_en": "how many production codes were there for the episode that was 32 in the series?",
    "question_th": "ตอนที่ 32 ของซีรีส์มีรหัสการผลิตทั้งหมดกี่รหัส?",
    "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_en": "What year was the film Milagros submitted?",
    "question_th": "ภาพยนตร์เรื่อง Milagros ส่งเข้ามาในปีใด",
    "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_en": "How many years was the film The Blossoming of Maximo Oliveros entered?",
    "question_th": "ภาพยนตร์เรื่อง The Blossoming of Maximo Oliveros เข้ามากี่ปี?",
    "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_en": "How many directors were there for the film with the original title of The Moises Padilla Story?",
    "question_th": "มีผู้กำกับกี่คนสำหรับภาพยนตร์เรื่องนี้ที่ใช้ชื่อดั้งเดิมว่า 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_en": "What spacecraft was launched from the LC34 launch complex? ",
    "question_th": " ยานอวกาศใดที่ถูกส่งออกจากศูนย์ปล่อย LC34",
    "context": "CREATE TABLE table_179174_2 (spacecraft VARCHAR, launch_complex VARCHAR)"
  },
  {
    "answer": "SELECT spacecraft FROM table_179174_2 WHERE flights = \"22 Orbital\"",
    "question_en": "What spacecrafts had 22 orbital flights? ",
    "question_th": " ยานอวกาศใดมี 22 เที่ยวบินในวงโคจร",
    "context": "CREATE TABLE table_179174_2 (spacecraft VARCHAR, flights VARCHAR)"
  },
  {
    "answer": "SELECT launcher FROM table_179174_2 WHERE flights = \"37 Orbital\"",
    "question_en": "What launcher had spacecrafts that did 37 orbital flights? ",
    "question_th": "เครื่องยิงจรวดลำใดมียานอวกาศที่ทำการบินในวงโคจร 37 รอบ",
    "context": "CREATE TABLE table_179174_2 (launcher VARCHAR, flights VARCHAR)"
  },
  {
    "answer": "SELECT years FROM table_179174_2 WHERE flights = \"134 Orbital\"",
    "question_en": "What years had 134 orbital flights? ",
    "question_th": " กี่ปีมี 134 เที่ยวบินโคจร?",
    "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_en": "What is the status of the London Aquatics Centre project at the time of production?",
    "question_th": "สถานะของโครงการ London Aquatics Centre ณ เวลาที่ผลิตเป็นอย่างไร",
    "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_en": "What was the original are date of series number 71?",
    "question_th": "ต้นฉบับของซีรีส์หมายเลข 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_en": "What is the length for a diameter totaling 450 mm?",
    "question_th": "เส้นผ่านศูนย์กลางรวม 450 มม. มีความยาวเท่าไร?",
    "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_en": "What is Esperance pipeline co total diameter?",
    "question_th": "เส้นผ่านศูนย์กลางรวมของไปป์ไลน์ Esperance คืออะไร?",
    "context": "CREATE TABLE table_17918238_1 (maximum_diameter VARCHAR, owner_operator VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_17924362_1 WHERE date = \"December 8\"",
    "question_en": "Name the opponent for december 8",
    "question_th": "ทายชื่อคู่ต่อสู้วันที่ 8 ธันวาคม",
    "context": "CREATE TABLE table_17924362_1 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(week) FROM table_17924362_1 WHERE date = \"October 26\"",
    "question_en": "Name the number of weeks for october 26",
    "question_th": "ตั้งชื่อจำนวนสัปดาห์สำหรับวันที่ 26 ตุลาคม",
    "context": "CREATE TABLE table_17924362_1 (week VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(attendance) FROM table_17928023_1 WHERE week = 6",
    "question_en": "What is the attendance record for week 6?",
    "question_th": "บันทึกการเข้างานในสัปดาห์ที่ 6 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_17928023_1 (attendance VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_17928023_1 WHERE game_site = \"Schaefer Stadium\"",
    "question_en": "For game site Schaefer Stadium, what were the results?",
    "question_th": "สำหรับเว็บไซต์เกม Schaefer Stadium ผลลัพธ์เป็นอย่างไร?",
    "context": "CREATE TABLE table_17928023_1 (result VARCHAR, game_site VARCHAR)"
  },
  {
    "answer": "SELECT outgoing_manage FROM table_17933600_2 WHERE incoming_manager = \"João Pereira\"",
    "question_en": "Who was the outgoing manager when the incoming manager was joão pereira?",
    "question_th": "ใครคือผู้จัดการทีมที่จะลาออก ตอนที่ผู้จัดการทีมคนใหม่คือ ชูเอา เปเรย์รา?",
    "context": "CREATE TABLE table_17933600_2 (outgoing_manage VARCHAR, incoming_manager VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_17933600_2 WHERE outgoing_manage = \"João Alves\"",
    "question_en": "What team(s) had an outgoing manager of joão alves?",
    "question_th": "ทีมใดมีผู้จัดการทีมที่กำลังจะลาออกจากทีมของชูเอา อัลเวส?",
    "context": "CREATE TABLE table_17933600_2 (team VARCHAR, outgoing_manage VARCHAR)"
  },
  {
    "answer": "SELECT date_of_vacancy FROM table_17933600_2 WHERE outgoing_manage = \"Bogićević\"",
    "question_en": "What day did the job open up when bogićević was outgoing?",
    "question_th": "งานเปิดวันไหนเมื่อbogićevićออกไป?",
    "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_en": "Name the 0-100 km/hs for name of 2.0 8v",
    "question_th": "ตั้งชื่อ 0-100 กม./ชม. สำหรับชื่อ 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_en": "Name the volume for co 2 for 168 g/km",
    "question_th": "ตั้งชื่อปริมาตรให้ co 2 เท่ากับ 168 กรัม/กม",
    "context": "CREATE TABLE table_17941111_2 (volume VARCHAR, co_2 VARCHAR)"
  },
  {
    "answer": "SELECT tries_for FROM table_17941032_1 WHERE tries_against = \"60\"",
    "question_en": "When 60 is the tries against what is the tries for?",
    "question_th": "เมื่อ 60 เป็นการพยายามเทียบกับความพยายามเพื่ออะไร?",
    "context": "CREATE TABLE table_17941032_1 (tries_for VARCHAR, tries_against VARCHAR)"
  },
  {
    "answer": "SELECT lost FROM table_17941032_1 WHERE tries_for = \"22\"",
    "question_en": "When 22 is the tries for what is the lost?",
    "question_th": "เมื่อ 22 ความพยายามคืออะไรที่หายไป?",
    "context": "CREATE TABLE table_17941032_1 (lost VARCHAR, tries_for VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_17941032_1 WHERE points = \"98\"",
    "question_en": "When 98 is the points what is the club?",
    "question_th": "เมื่อ 98 คือแต้ม สโมสรคืออะไร?",
    "context": "CREATE TABLE table_17941032_1 (club VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT try_bonus FROM table_17941032_1 WHERE tries_for = \"80\"",
    "question_en": "When 80 is the tries for what is the try bonus?",
    "question_th": "เมื่อถึง 80 ครั้ง โบนัสการลองคืออะไร?",
    "context": "CREATE TABLE table_17941032_1 (try_bonus VARCHAR, tries_for VARCHAR)"
  },
  {
    "answer": "SELECT lost FROM table_17941032_1 WHERE tries_for = \"55\"",
    "question_en": "When 55 is the tries for what is the lost?",
    "question_th": "เมื่อ 55 พยายามเพื่ออะไรขาดทุน?",
    "context": "CREATE TABLE table_17941032_1 (lost VARCHAR, tries_for VARCHAR)"
  },
  {
    "answer": "SELECT points_against FROM table_17941032_1 WHERE tries_for = \"17\"",
    "question_en": "When 17 is the tries for what is the points against?",
    "question_th": "เมื่อลอง 17 แต้มแล้วได้อะไร?",
    "context": "CREATE TABLE table_17941032_1 (points_against VARCHAR, tries_for VARCHAR)"
  },
  {
    "answer": "SELECT drawn FROM table_17941032_2 WHERE \"played\" = \"played\"",
    "question_en": "How many draws were there in played games?",
    "question_th": "ในเกมที่เล่นมีกี่แต้ม?",
    "context": "CREATE TABLE table_17941032_2 (drawn VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_17941032_2 WHERE drawn = \"1\" AND won = \"2\"",
    "question_en": "Which club had 2 wins and 1 draw?",
    "question_th": "สโมสรไหนชนะ 2 เสมอ 1?",
    "context": "CREATE TABLE table_17941032_2 (club VARCHAR, drawn VARCHAR, won VARCHAR)"
  },
  {
    "answer": "SELECT played FROM table_17941032_2 WHERE tries_for = \"56\"",
    "question_en": "How many times were there plays with a try of 56?",
    "question_th": "มีการเล่นกี่ครั้งโดยลอง 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_en": "How many tries against were there with points of 150?",
    "question_th": "มีความพยายามกี่ครั้งที่มีคะแนน 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_en": "What was the losing bonus that had 53 points?",
    "question_th": "โบนัสที่เสียไปมี 53 แต้มคืออะไร?",
    "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_en": "List all points against with a 0 try bonus and points for of 150.",
    "question_th": "แสดงรายการคะแนนทั้งหมดเทียบกับโบนัสลอง 0 และคะแนน 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_en": "Name the tries against when tries for is 30",
    "question_th": "ตั้งชื่อความพยายามต่อต้านเมื่อพยายามเพื่อคือ 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_en": "Name the points when tries for is 49",
    "question_th": "ตั้งชื่อคะแนนเมื่อพยายามเพื่อคือ 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_en": "Name the try bonus for lost being 11 and losing bonus is 6",
    "question_th": "ตั้งชื่อโบนัสการลองเมื่อแพ้เป็น 11 และโบนัสที่แพ้คือ 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_en": "For home of River Plate, what is the first leg listed?",
    "question_th": "สำหรับทีมเหย้าของริเวอร์เพลท นัดแรกคือรายการอะไร?",
    "context": "CREATE TABLE table_17968229_1 (home__2nd_leg_ VARCHAR)"
  },
  {
    "answer": "SELECT home__2nd_leg_ FROM table_17968229_1 WHERE aggregate = \"0-2\"",
    "question_en": "With an aggregate of 0-2, what is listed for home?",
    "question_th": "รวมแล้ว 0-2 เรียกว่าบ้านอะไร?",
    "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ético Tucumán\"",
    "question_en": "If the home is Atlético Tucumán, what is the name of the first leg?",
    "question_th": "ถ้าเจ้าบ้านคือ แอตเลติโก ตูคูมัน เลกแรกจะชื่ออะไร?",
    "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_en": "If second leg is Newell's Old Boys, what name is first leg?",
    "question_th": "ถ้าเลกที่สองคือนีเวลล์ส โอลด์ บอยส์ เลกแรกจะชื่ออะไร?",
    "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_en": "What is the chinese name for whom chan chi-yuen, paul is listed as the romanised name?",
    "question_th": "ชื่อภาษาจีนที่ chan chi-yuen, paul ถูกระบุเป็นชื่อแบบโรมันคืออะไร?",
    "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_en": "The name cheung, raymond man-to is listed as a romanised name is cheung, raymond man-to?",
    "question_th": "ชื่อ cheung, raymond man-to ถูกระบุเป็นชื่อแบบโรมันคือ 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 = \"盧奕基\"",
    "question_en": "For the chinese name  盧奕基 how many in total is the govt salary?",
    "question_th": "ชื่อภาษาจีน 盧奕基 เงินเดือนรัฐบาลทั้งหมดเท่าไหร่?",
    "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_en": "For the name romanised name is lo yik-kee, victor what is the total number foreign nationality that is listed?",
    "question_th": "ส่วนชื่ออักษรโรมันคือ หล่อ ยี่กี่ ผู้ชนะ มีสัญชาติต่างด้าวทั้งหมดกี่รายการ?",
    "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_en": "For the prior occupation listed as assistant police commissioner (ret'd) what are the entire list of romanised name. ",
    "question_th": " สำหรับอาชีพเดิมที่มีรายชื่อเป็นผู้ช่วยผู้บัญชาการตำรวจ (เกษียณแล้ว) รายชื่ออักษรโรมันทั้งหมดมีอะไรบ้าง",
    "context": "CREATE TABLE table_17964087_2 (romanised_name VARCHAR, prior_occupation VARCHAR)"
  },
  {
    "answer": "SELECT MAX(played) FROM table_17968282_1 WHERE points = 105",
    "question_en": "Name the most played when points is 105",
    "question_th": "ตั้งชื่อเกมที่เล่นมากที่สุดเมื่อแต้มคือ 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_en": "Name the total number of points for newell's old boys",
    "question_th": "บอกจำนวนคะแนนรวมของนีเวลล์ส โอลด์ บอยส์",
    "context": "CREATE TABLE table_17968282_1 (points VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT home__1st_leg_ FROM table_17968233_2 WHERE aggregate = \"3-4\"",
    "question_en": "If the aggregate is 3-4, what is the first leg?",
    "question_th": "ถ้าสกอร์รวม 3-4 เลกแรกเป็นเท่าไหร่?",
    "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_en": "If the second leg is Instituto, what is the total number of aggregate?",
    "question_th": "ถ้าเลกที่ 2 เป็น Instituto ผลรวมทั้งหมดเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_17968233_2 (aggregate VARCHAR, home__2nd_leg_ VARCHAR)"
  },
  {
    "answer": "SELECT 1989 AS _90 FROM table_17968274_2 WHERE team = \"Vélez Sársfield\"",
    "question_en": "How many games were played by the Vélez Sársfield team from 1989-90?",
    "question_th": "ทีมเบเลซ ซาร์สฟิลด์เล่นไปกี่เกมในช่วงปี 1989-90?",
    "context": "CREATE TABLE table_17968274_2 (team VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_17968274_2 WHERE points = 122",
    "question_en": "What was the team that scored 122 points?",
    "question_th": "ทีมไหนได้ 122 แต้ม?",
    "context": "CREATE TABLE table_17968274_2 (team VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_17972136_1 WHERE date = \"October 4\"",
    "question_en": "What is the opponent played on October 4?",
    "question_th": "คู่ต่อสู้จะเล่นอะไรในวันที่ 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_en": "Where is riverfront stadium the game site for the week?",
    "question_th": "สนามกีฬาริมแม่น้ำเป็นสถานที่จัดการแข่งขันประจำสัปดาห์อยู่ที่ไหน?",
    "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_en": "How many number of lakes are there in the Valdez-Cordova (CA) area?",
    "question_th": "มีทะเลสาบกี่แห่งในพื้นที่วาลเดซ-กอร์โดวา (CA)",
    "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_en": "What was the comment on the Denali area?",
    "question_th": "ความคิดเห็นเกี่ยวกับพื้นที่ Denali คืออะไร?",
    "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_en": "How many dams are there in the Lake and Peninsula area?",
    "question_th": "บริเวณทะเลสาบและคาบสมุทรมีเขื่อนกี่แห่ง?",
    "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_en": "How many dams are there in the Nome (CA) area?",
    "question_th": "มีเขื่อนกี่แห่งในพื้นที่ Nome (CA)",
    "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_en": "How many comments are there in the Bethel (CA) Borough area?",
    "question_th": "มีความคิดเห็นกี่ข้อในพื้นที่เขตเทศบาลเบเธล (แคลิฟอร์เนีย)",
    "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_en": "How many total numbers of attendance are there during the game in October 27?",
    "question_th": "มีผู้เข้าชมทั้งหมดกี่คนในระหว่างเกมในวันที่ 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_en": "What was the game record when the opponent was 'at Los Angeles Raiders'?",
    "question_th": "บันทึกของเกมเมื่อคู่ต่อสู้อยู่ที่ 'ที่ 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_en": "When was the game played when the opponent was 'at Los Angeles Rams'?",
    "question_th": "เกมนี้เล่นเมื่อใดเมื่อคู่ต่อสู้อยู่ที่ 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_en": "How many total number of attendance were there when the game was held in Anaheim Stadium?",
    "question_th": "มีผู้เข้าร่วมทั้งหมดกี่คนเมื่อเกมจัดขึ้นที่สนามกีฬาอนาไฮม์",
    "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_en": "How many were in attendance when the game was held in Arrowhead Stadium?",
    "question_th": "มีผู้เข้าร่วมกี่คนเมื่อเกมจัดขึ้นที่ 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_en": "What is the highest position a team with 7 draws earned?",
    "question_th": "ตำแหน่งสูงสุดของทีมที่เสมอกัน 7 นัดคืออะไร?",
    "context": "CREATE TABLE table_18018214_1 (position INTEGER, draws VARCHAR)"
  },
  {
    "answer": "SELECT original_air_date FROM table_18012738_1 WHERE ai___percentage_ = 83",
    "question_en": "Name the original air date for ai% for 83",
    "question_th": "ตั้งชื่อวันออกอากาศเดิมสำหรับ ai% สำหรับ 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_en": "Name the story number for paul cornell",
    "question_th": "ตั้งชื่อหมายเลขเรื่องของพอล คอร์เนล",
    "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_en": "Name the total number directed by for uk viewers being 6.86",
    "question_th": "ตั้งชื่อจำนวนรวมที่กำกับโดยผู้ชมในสหราชอาณาจักรคือ 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_en": "Name the least ai %",
    "question_th": "ชื่อ ai % น้อยที่สุด",
    "context": "CREATE TABLE table_18012738_1 (ai___percentage_ INTEGER)"
  },
  {
    "answer": "SELECT MAX(games_played) FROM table_18018214_4",
    "question_en": "What is the highest number of games played?",
    "question_th": "จำนวนเกมที่เล่นสูงสุดคือเท่าไร?",
    "context": "CREATE TABLE table_18018214_4 (games_played INTEGER)"
  },
  {
    "answer": "SELECT COUNT(goals_conceded) FROM table_18018214_4 WHERE points = 31",
    "question_en": "In the game with 31 points, how many goals were conceded?",
    "question_th": "ในเกมที่มี 31 แต้ม เสียไปกี่ประตู?",
    "context": "CREATE TABLE table_18018214_4 (goals_conceded VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(games_played) FROM table_18018214_4 WHERE points = 22",
    "question_en": "How many games had 22 points?",
    "question_th": "กี่เกมมี 22 แต้ม?",
    "context": "CREATE TABLE table_18018214_4 (games_played VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT wins FROM table_18018248_2 WHERE goals_scored = 58",
    "question_en": "How many wins had 58 goals scored?",
    "question_th": "ชนะกี่ครั้งมี 58 ประตู?",
    "context": "CREATE TABLE table_18018248_2 (wins VARCHAR, goals_scored VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(club) FROM table_18018248_2 WHERE points = 29",
    "question_en": "How many clubs had 29 points?",
    "question_th": "มีกี่สโมสรที่มี 29 คะแนน?",
    "context": "CREATE TABLE table_18018248_2 (club VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_18018248_2 WHERE draws = 9",
    "question_en": "Which clubs had draws of 9?",
    "question_th": "สโมสรไหนเสมอกัน 9 นัด?",
    "context": "CREATE TABLE table_18018248_2 (club VARCHAR, draws VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(draws) FROM table_18018248_2 WHERE goals_conceded = 45",
    "question_en": "How many draws were there when the conceded goals was numbered at 45?",
    "question_th": "เสมอกันกี่ครั้งเมื่อเสียประตูที่ 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_en": "What is the least amount of games played with 21 losses?",
    "question_th": "จำนวนเกมที่เล่นน้อยที่สุดโดยแพ้ 21 นัดคือเท่าไร?",
    "context": "CREATE TABLE table_18018248_2 (games_played INTEGER, loses VARCHAR)"
  },
  {
    "answer": "SELECT MIN(games_played) FROM table_18018214_3",
    "question_en": "How many games did each team played?",
    "question_th": "แต่ละทีมเล่นไปกี่เกม?",
    "context": "CREATE TABLE table_18018214_3 (games_played INTEGER)"
  },
  {
    "answer": "SELECT MAX(points) FROM table_18018214_3 WHERE goals_scored = 47",
    "question_en": "HOw many points where there when the number of goals scored was 47?",
    "question_th": "มีกี่คะแนนเมื่อจำนวนประตูที่ทำได้คือ 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_en": "How many goals were scored by club team fm (losc) vilnius",
    "question_th": "ทีมสโมสร fm (losc) วิลนีอุสทำประตูได้กี่ประตู",
    "context": "CREATE TABLE table_18018214_3 (goals_scored VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT MAX(loses) FROM table_18018214_3 WHERE club = \"Ekranas-2 Panevėžys\"",
    "question_en": "How many losses occurred when the club team was ekranas-2 panevėžys",
    "question_th": "มีการสูญเสียเกิดขึ้นกี่ครั้งเมื่อทีมสโมสรคือ ekranas-2 panevėžys",
    "context": "CREATE TABLE table_18018214_3 (loses INTEGER, club VARCHAR)"
  },
  {
    "answer": "SELECT MAX(wins) FROM table_18018214_3",
    "question_en": "What was the highest number of wins for any team?",
    "question_th": "จำนวนชัยชนะสูงสุดสำหรับทีมใด ๆ คือเท่าใด?",
    "context": "CREATE TABLE table_18018214_3 (wins INTEGER)"
  },
  {
    "answer": "SELECT ncaat_record FROM table_18025024_7 WHERE date = \"June 22\"",
    "question_en": "What is the June 22 ncaat baseball record for Fresno State Bulldogs?",
    "question_th": "บันทึกเบสบอล ncaat ในวันที่ 22 มิถุนายนของ 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_en": "How many saves were in the Georgia game, versus the Bulldogs, with a score of 7-6?",
    "question_th": "เกมจอร์เจียเซฟได้กี่ครั้ง เทียบกับบูลด็อกด้วยสกอร์ 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_en": "What is the June 21 ncaat baseball record for Fresno State Bulldogs?",
    "question_th": "บันทึกเบสบอล ncaat ในวันที่ 21 มิถุนายนของ 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_en": "how many times did estudiantes de la plata participate in 2008 suruga bank championship",
    "question_th": "Estudiantes de la plata เข้าร่วมในการแข่งขันชิงแชมป์ธนาคาร Suruga ปี 2008 กี่ครั้ง",
    "context": "CREATE TABLE table_18027411_1 (team___competition VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_18042031_16 WHERE against = \"Morocco\"",
    "question_en": "What date was the match against Morocco played?",
    "question_th": "แมตช์กับโมร็อกโกเล่นวันไหน?",
    "context": "CREATE TABLE table_18042031_16 (date VARCHAR, against VARCHAR)"
  },
  {
    "answer": "SELECT against FROM table_18042031_16 WHERE date = \"21–23 September 2007\"",
    "question_en": "What country did Gil play against on 21–23 september 2007?",
    "question_th": "กิลเล่นกับประเทศใดในวันที่ 21–23 กันยายน พ.ศ. 2550?",
    "context": "CREATE TABLE table_18042031_16 (against VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT partnering FROM table_18042031_16 WHERE date = \"10–12 July 2009\"",
    "question_en": "Who was Gil's partner on 10–12 july 2009",
    "question_th": "ใครเป็นคู่หูของกิลในวันที่ 10–12 กรกฎาคม พ.ศ. 2552",
    "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_en": "Where was the successor formally installed on December 3, 1858?",
    "question_th": "ผู้สืบทอดได้รับการติดตั้งอย่างเป็นทางการเมื่อวันที่ 3 ธันวาคม พ.ศ. 2401?",
    "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_en": "Why did the change happen in the state where the formal installation happen on February 14, 1859?",
    "question_th": "เหตุใดการเปลี่ยนแปลงจึงเกิดขึ้นในสถานะที่มีการติดตั้งอย่างเป็นทางการเมื่อวันที่ 14 กุมภาพันธ์ พ.ศ. 2402",
    "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_en": "Name the vacator for tennessee 1st",
    "question_th": "ตั้งชื่อผู้ว่างสำหรับรัฐเทนเนสซีที่ 1",
    "context": "CREATE TABLE table_1802522_4 (vacator VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT iata_code FROM table_18047346_4 WHERE passengers = \"15,505,566\"",
    "question_en": "If the passengers are 15,505,566, what is the iata code?",
    "question_th": "หากผู้โดยสารคือ 15,505,566 รหัส iata คืออะไร?",
    "context": "CREATE TABLE table_18047346_4 (iata_code VARCHAR, passengers VARCHAR)"
  },
  {
    "answer": "SELECT airport_name FROM table_18047346_4 WHERE location = \"Chicago, Illinois\"",
    "question_en": "If the location is Chicago, Illinois, what is the airport name?",
    "question_th": "ถ้าสถานที่คือชิคาโก รัฐอิลลินอยส์ สนามบินชื่ออะไร?",
    "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_en": "If the amount of passengers is 15,505,566, what is the %/chg. for 2009/10?",
    "question_th": "ถ้าจำนวนผู้โดยสารคือ 15,505,566 คน %/chg จะเป็นเท่าใด สำหรับปี 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_en": "What university did Steve Hoar attend. ",
    "question_th": " Steve Hoar เข้าเรียนที่มหาวิทยาลัยใด",
    "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_en": "List the plats that attended Wilfrid Laurier University. ",
    "question_th": " รายชื่อที่นั่งที่เข้าเรียนที่มหาวิทยาลัยวิลฟริด ลอริเอร์",
    "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_en": "List all the international lacrosse league competitions for Toronto Rock.",
    "question_th": "รายชื่อการแข่งขันลาครอสระดับนานาชาติทั้งหมดของ 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_en": "List all of the NLL Toronto Rock players. ",
    "question_th": " รายชื่อผู้เล่น NLL Toronto Rock ทั้งหมด",
    "context": "CREATE TABLE table_18042409_1 (player VARCHAR, national_lacrosse_league VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_18047346_5 WHERE iata_code = \"JFK\"",
    "question_en": "What rank is the airport whose IATA Code is JFK?",
    "question_th": "สนามบินที่มีรหัส IATA คือ 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_en": "Which airport has an IATA Code of ORD?",
    "question_th": "สนามบินใดมีรหัส IATA ของ 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_en": "Louisville International Airport had how many tonnes of cargo in 2011?",
    "question_th": "สนามบินนานาชาติหลุยส์วิลล์มีสินค้าจำนวนกี่ตันในปี 2554",
    "context": "CREATE TABLE table_18047346_5 (tonnes VARCHAR, airport_name VARCHAR)"
  },
  {
    "answer": "SELECT tonnes FROM table_18047346_5 WHERE iata_code = \"IND\"",
    "question_en": "How many tonnes of cargo did the airport have with the IATA Code IND?",
    "question_th": "สนามบินมีสินค้ากี่ตันตามรหัส IATA 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_en": "Who is the incumbent democratic party in district florida 11?",
    "question_th": "ใครคือพรรคประชาธิปไตยที่ดำรงตำแหน่งในเขตฟลอริดา 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_en": "In which district is the first elected 2000?",
    "question_th": "เขตใดที่ได้รับการเลือกตั้งครั้งแรกในปี พ.ศ. 2543",
    "context": "CREATE TABLE table_1805191_10 (district VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT first_elected FROM table_1805191_10 WHERE district = \"Florida 19\"",
    "question_en": "When is the first elected in the Florida 19 district?",
    "question_th": "การเลือกตั้งครั้งแรกในเขต Florida 19 คือเมื่อใด",
    "context": "CREATE TABLE table_1805191_10 (first_elected VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(results) FROM table_1805191_10 WHERE incumbent = \"Dave Weldon\"",
    "question_en": "What are the results of incumbent dave weldon?",
    "question_th": "ผลลัพธ์ของผู้ดำรงตำแหน่ง เดฟ เวลดอน คืออะไร?",
    "context": "CREATE TABLE table_1805191_10 (results VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(district) FROM table_1805191_33 WHERE incumbent = \"Charles Rangel\"",
    "question_en": "How many districts have the incumbent, Charles Rangel? ",
    "question_th": " 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_en": "What is the party affiliation of New York 26? ",
    "question_th": " นิวยอร์ก 26 สังกัดพรรคอะไร?",
    "context": "CREATE TABLE table_1805191_33 (party VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(party) FROM table_1805191_39 WHERE district = \"Pennsylvania 1\"",
    "question_en": "In the district of Pennsylvania 1, what is the total number of political parties?",
    "question_th": "ในเขตเพนซิลเวเนีย 1 มีพรรคการเมืองทั้งหมดกี่พรรค?",
    "context": "CREATE TABLE table_1805191_39 (party VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT MIN(first_elected) FROM table_1805191_39 WHERE incumbent = \"Tim Holden\"",
    "question_en": "What year was Tim Holden first elected?",
    "question_th": "ทิม โฮลเดนได้รับเลือกครั้งแรกในปีใด",
    "context": "CREATE TABLE table_1805191_39 (first_elected INTEGER, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(party) FROM table_1805191_39 WHERE first_elected = 1994",
    "question_en": "How many parties were first elected in 1994?",
    "question_th": "มีการเลือกตั้งครั้งแรกกี่พรรคในปี 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_en": "In district Pennsylvania 11, what was the total numbers of results?",
    "question_th": "ในเขตเพนซิลเวเนีย 11 ผลสอบทั้งหมดเป็นจำนวนเท่าใด",
    "context": "CREATE TABLE table_1805191_39 (results VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(first_elected) FROM table_1805191_2 WHERE incumbent = \"Spencer Bachus\"",
    "question_en": "During what year was Representative Spencer Bachus first elected?",
    "question_th": "ส.ส.สเปนเซอร์ บาคัสได้รับเลือกครั้งแรกในช่วงปีใด",
    "context": "CREATE TABLE table_1805191_2 (first_elected VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1805191_2 WHERE incumbent = \"Robert Cramer\"",
    "question_en": "What is the party affiliation of the incumbent Robert Cramer?",
    "question_th": "โรเบิร์ต แครมเมอร์ ซึ่งดำรงตำแหน่งอยู่สังกัดพรรคอะไร?",
    "context": "CREATE TABLE table_1805191_2 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_1805191_48 WHERE district = \"Washington 1\"",
    "question_en": "Who is the incumbent in the Washington 1 district? ",
    "question_th": " ใครเป็นผู้ดำรงตำแหน่งในเขตวอชิงตัน 1?",
    "context": "CREATE TABLE table_1805191_48 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(first_elected) FROM table_1805191_48 WHERE district = \"Washington 4\"",
    "question_en": "How many categories of first elected are in Washington 4 district? ",
    "question_th": " ผู้ได้รับเลือกคนแรกในเขตวอชิงตัน 4 มีกี่ประเภท?",
    "context": "CREATE TABLE table_1805191_48 (first_elected VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT results FROM table_1805191_48 WHERE first_elected = 2000",
    "question_en": "What was the result in the election where the date of first elected was 2000? ",
    "question_th": " ผลการเลือกตั้งโดยการเลือกตั้งครั้งแรกคือปี 2543 เป็นอย่างไร?",
    "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_en": "Which title, directed by David Kendall, had 3.7 million viewers?",
    "question_th": "ชื่อเรื่องใดที่กำกับโดย David Kendall มีผู้ชม 3.7 ล้านคน",
    "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_en": "How many people were first elected with an incument of diane watson?",
    "question_th": "มีกี่คนที่ได้รับเลือกครั้งแรกโดยได้รับตำแหน่งไดแอน วัตสัน?",
    "context": "CREATE TABLE table_1805191_6 (first_elected VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1805191_6 WHERE incumbent = \"Hilda Solis\"",
    "question_en": "What party did hilda solis represent?",
    "question_th": "ฮิลดา โซลิส เป็นตัวแทนของพรรคใด",
    "context": "CREATE TABLE table_1805191_6 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT results FROM table_1805191_6 WHERE incumbent = \"Grace Napolitano\"",
    "question_en": "What were the result(s) of the election featuring grace napolitano as the incumbent?",
    "question_th": "ผลลัพธ์ของการเลือกตั้งที่มีเกรซ นาโปลิตาโนเป็นผู้ดำรงตำแหน่งคืออะไร?",
    "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_en": "Which place in the order is the Pinyin transcription She Jiang?",
    "question_th": "เฉอเจียงถอดเสียงพินอินลำดับใด",
    "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_en": "What is the place of \"A Lament for Ying\"?",
    "question_th": "สถานที่จัดงาน “คร่ำครวญหญิง” อยู่ที่ไหน?",
    "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_en": "How many traditional Chinese for the translation of \"Crossing the River\"?",
    "question_th": "คำว่า \"ข้ามแม่น้ำ\" มีภาษาจีนตัวเต็มกี่คำ?",
    "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_en": "What is the place of the Pinyin transcription Xi Wangri?",
    "question_th": "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 = \"哀郢\"",
    "question_en": "What is the English translation of 哀郢?",
    "question_th": "คำว่า 哀郢 ภาษาอังกฤษแปลว่าอะไร?",
    "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_en": "What is the Pinyin transcription for \"Alas for the Days Gone By\"?",
    "question_th": "การถอดเสียงพินอินสำหรับ \"อนิจจาสำหรับวันที่หายไป\" คืออะไร?",
    "context": "CREATE TABLE table_1805919_1 (transcription__based_on_pinyin_ VARCHAR, english_translation VARCHAR)"
  },
  {
    "answer": "SELECT english_name FROM table_180802_2 WHERE abbr = \"พ.ย.\"",
    "question_en": "What's the English name for the month with พ.ย. abbreviation? ",
    "question_th": " พ.ย. ชื่อภาษาอังกฤษว่าอะไร ตัวย่อ?",
    "context": "CREATE TABLE table_180802_2 (english_name VARCHAR, abbr VARCHAR)"
  },
  {
    "answer": "SELECT zodiac_sign FROM table_180802_2 WHERE abbr = \"มี.ค.\"",
    "question_en": "What's the zodiac sing for the month abbreviated as มี.ค.?",
    "question_th": "ราศีไหน ย่อว่า มี.ค.?",
    "context": "CREATE TABLE table_180802_2 (zodiac_sign VARCHAR, abbr VARCHAR)"
  },
  {
    "answer": "SELECT transcription FROM table_180802_2 WHERE thai_name = \"พฤษภาคม\"",
    "question_en": "What's the transcription of the thai name of the month พฤษภาคม?",
    "question_th": "ชื่อไทยประจำเดือน พฤษภาคม ถอดความว่าอะไร?",
    "context": "CREATE TABLE table_180802_2 (transcription VARCHAR, thai_name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(zodiac_sign) FROM table_180802_2 WHERE thai_name = \"กันยายน\"",
    "question_en": "How many zodiac signs does the month by the Thai name of กันยายน belong to?",
    "question_th": "เดือนตามชื่อไทยของเกามีกี่ราศี?",
    "context": "CREATE TABLE table_180802_2 (zodiac_sign VARCHAR, thai_name VARCHAR)"
  },
  {
    "answer": "SELECT english_name FROM table_180802_2 WHERE abbr = \"มิ.ย.\"",
    "question_en": "What's the English name of the month abbreviated as มิ.ย.?",
    "question_th": "ชื่อเดือนภาษาอังกฤษ ย่อว่า มิ.ย. คืออะไร?",
    "context": "CREATE TABLE table_180802_2 (english_name VARCHAR, abbr VARCHAR)"
  },
  {
    "answer": "SELECT abbr FROM table_180802_2 WHERE zodiac_sign = \"Scorpio\"",
    "question_en": "What's the abbreviation of the month in the zodiac sign scorpio?",
    "question_th": "ราศีพิจิก ราศีพิจิก อักษรย่อว่าอะไร?",
    "context": "CREATE TABLE table_180802_2 (abbr VARCHAR, zodiac_sign VARCHAR)"
  },
  {
    "answer": "SELECT year_[e_] AS __ceremony_ FROM table_18069789_1 WHERE original_title = \"გაღმა ნაპირი\"",
    "question_en": "which year was the original title გაღმა ნაპირი",
    "question_th": "ปีไหนเป็นชื่อดั้งเดิม",
    "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_en": "how many times was 27 missing kisses used in nomination",
    "question_th": "มีการใช้จูบที่หายไป 27 ครั้งในการเสนอชื่อกี่ครั้ง",
    "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_en": "when was otar iosseliani's film selected",
    "question_th": "ภาพยนตร์ของ otar iosseliani ได้รับเลือกเมื่อใด",
    "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_en": "What is the thai name of the transcription wan chan?",
    "question_th": "วรรณจันทร์ ชื่อภาษาไทยว่าอะไรคะ?",
    "context": "CREATE TABLE table_180802_3 (thai_name VARCHAR, transcription VARCHAR)"
  },
  {
    "answer": "SELECT sanskrit_word FROM table_180802_3 WHERE color = \"red\"",
    "question_en": "What is the sanskrit word for the color red?",
    "question_th": "สีแดงเป็นภาษาสันสกฤตว่าอะไร?",
    "context": "CREATE TABLE table_180802_3 (sanskrit_word VARCHAR, color VARCHAR)"
  },
  {
    "answer": "SELECT transcription FROM table_180802_3 WHERE sanskrit_word = \"Chandra\"",
    "question_en": "What is the transcription of the sanskrit word chandra?",
    "question_th": "ข้อใดถอดความจากคำภาษาสันสกฤต จันทรา?",
    "context": "CREATE TABLE table_180802_3 (transcription VARCHAR, sanskrit_word VARCHAR)"
  },
  {
    "answer": "SELECT sanskrit_word FROM table_180802_3 WHERE transcription = \"wan athit\"",
    "question_en": "What is the sanskrit word if the transcription is wan athit?",
    "question_th": "ถ้าถอดความว่าวันอาทิตย์ จะใช้คำสันสกฤตว่าอะไร?",
    "context": "CREATE TABLE table_180802_3 (sanskrit_word VARCHAR, transcription VARCHAR)"
  },
  {
    "answer": "SELECT color FROM table_180802_3 WHERE planet = \"Venus\"",
    "question_en": "What is the color of the planet venus?",
    "question_th": "ดาวศุกร์มีสีอะไร?",
    "context": "CREATE TABLE table_180802_3 (color VARCHAR, planet VARCHAR)"
  },
  {
    "answer": "SELECT planet FROM table_180802_3 WHERE transcription = \"wan suk\"",
    "question_en": "Which planet has the transcription of wan suk?",
    "question_th": "ดาวเคราะห์ดวงใดมีอักษรว่า วันสุข?",
    "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_en": "What is the year to april when the revenue is 434.8 million dollars?",
    "question_th": "ปีถึงเดือนเมษายนคือปีใดที่มีรายได้ 434.8 ล้านดอลลาร์?",
    "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_en": "What is the dollar amount of ebit when the net profit is 120.6?",
    "question_th": "ebit จำนวนดอลลาร์เมื่อกำไรสุทธิคือ 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_en": "How many dollars is the revenue when the net profit is 55.4 million dollars?",
    "question_th": "กำไรสุทธิ 55.4 ล้านดอลลาร์ มีรายได้กี่ดอลลาร์?",
    "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__¢_ = \"22.0\"",
    "question_en": "When the earning per share is listed as 22.0 what is the year to april?",
    "question_th": "เมื่อกำไรต่อหุ้นแสดงเป็น 22.0 ปีถึงเดือนเมษายนคือปีใด",
    "context": "CREATE TABLE table_18077713_1 (year_to_april VARCHAR, earnings_per_share__¢_ VARCHAR)"
  },
  {
    "answer": "SELECT earnings_per_share__¢_ FROM table_18077713_1 WHERE net_profit__us_$m_ = \"16.2\"",
    "question_en": "What is the earnings per share when the net profit is 16.2 million dollars?",
    "question_th": "กำไรต่อหุ้นเมื่อกำไรสุทธิเท่ากับ 16.2 ล้านดอลลาร์เป็นเท่าใด",
    "context": "CREATE TABLE table_18077713_1 (earnings_per_share__¢_ VARCHAR, net_profit__us_$m_ VARCHAR)"
  },
  {
    "answer": "SELECT net_profit__us_$m_ FROM table_18077713_1 WHERE revenue__us_$million_ = \"150.6\"",
    "question_en": "How much is the net profit when the revenue is 150.6 million dollars?",
    "question_th": "กำไรสุทธิเมื่อมีรายได้ 150.6 ล้านเหรียญสหรัฐ อยู่ที่เท่าไร?",
    "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_en": "Name the year for not nominated for alberto aruelo",
    "question_th": "ตั้งชื่อปีที่ไม่ได้รับการเสนอชื่อเข้าชิงอัลแบร์โต อารูเอโล",
    "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_en": "Name the total number of director for oro diablo",
    "question_th": "ตั้งชื่อจำนวนผู้กำกับทั้งหมดสำหรับ 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_en": "Name the number of result for maroa",
    "question_th": "ตั้งชื่อหมายเลขผลลัพธ์สำหรับ 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_en": "Name the number of director for  huelepega: ley de la calle",
    "question_th": "ตั้งชื่อหมายเลขผู้อำนวยการของ 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_en": "What was the win/loss record for All Neutral games for the team whose Big 10 winning percentage was .833?",
    "question_th": "อะไรคือสถิติการชนะ/แพ้ของเกมที่เป็นกลางทั้งหมดสำหรับทีมที่มีเปอร์เซ็นต์การชนะ Big 10 อยู่ที่ .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_en": "What is the category when the version is 1.0 and the title is Chord finder? ",
    "question_th": " หมวดหมู่คืออะไรเมื่อเวอร์ชันเป็น 1.0 และชื่อเป็น 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_en": "What was the release date for metronome? ",
    "question_th": " วันที่วางจำหน่ายสำหรับเครื่องเมตรอนอมคือเมื่อใด",
    "context": "CREATE TABLE table_18138132_2 (release_date VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT developer FROM table_18138132_2 WHERE title = \"Windows Live Messenger\"",
    "question_en": "Who is the developer for Windows live messenger? ",
    "question_th": " ใครเป็นผู้พัฒนา 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_en": "What is the function of 1.4 version of Windows live messenger? ",
    "question_th": " Windows live Messenger เวอร์ชั่น 1.4 ทำหน้าที่อะไร?",
    "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_en": "What functions were released on 2011-06-23? ",
    "question_th": " ฟังก์ชั่นใดบ้างที่เปิดตัวในวันที่ 23-06-2554?",
    "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_en": "What is the cospar ID of the Kosmos 2397 satellite, which has an operational life of 2 months?",
    "question_th": "cospar ID ของดาวเทียม Kosmos 2397 ซึ่งมีอายุการใช้งาน 2 เดือนคืออะไร",
    "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_en": "What was the launch date the satellite with cospar ID is 2008-033A?",
    "question_th": "วันที่เปิดตัวดาวเทียมที่มี cospar ID คือ 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_en": "What it the international designation for the kosmos 2379 satellite?",
    "question_th": "ดาวเทียม kosmos 2379 ถูกกำหนดให้เป็นสากลอย่างไร",
    "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_en": "What is the estimated end date for the 2001-037a international designated satellite?",
    "question_th": "วันที่สิ้นสุดโดยประมาณของดาวเทียมที่กำหนดระหว่างประเทศปี 2001-037a คือเมื่อใด",
    "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_en": "in which city was charter date december 4, 2011",
    "question_th": "ซึ่งเมืองใดได้รับกฎบัตรวันที่ 4 ธันวาคม พ.ศ. 2554",
    "context": "CREATE TABLE table_18159601_1 (city VARCHAR, charter_date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(greek_designation) FROM table_18159601_1 WHERE city = \"Tampa\"",
    "question_en": "how mnay greek designation  in tampa",
    "question_th": "การกำหนดภาษากรีกในแทมปาเป็นอย่างไร",
    "context": "CREATE TABLE table_18159601_1 (greek_designation VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_18159601_1 WHERE city = \"Vestal\"",
    "question_en": "what is the status in vestal",
    "question_th": "สถานะในเสื้อกั๊กคืออะไร",
    "context": "CREATE TABLE table_18159601_1 (status VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT collegiate_institution FROM table_18159601_1 WHERE city = \"Queens\"",
    "question_en": "what is the collegiate institution in queens",
    "question_th": "สถาบันวิทยาลัยในควีนส์คืออะไร",
    "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_en": "What was the original title of Run for Money?",
    "question_th": "ชื่อเดิมของ 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_en": "What was the Tuesday episode if theThursday episode was 196 Buried?",
    "question_th": "ตอนวันอังคารจะเป็นอย่างไรถ้าตอนวันพฤหัสบดีคือ 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_en": "How many episodes were shown on Friday if 210 Kirby's Epic Yarn was shown on Wednesday?",
    "question_th": "วันศุกร์จะฉายกี่ตอนถ้าวันพุธ 210 Kirby's Epic Yarn ฉาย",
    "context": "CREATE TABLE table_18173916_6 (friday VARCHAR, wednesday VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(friday) FROM table_18173916_6 WHERE wednesday = \"190 Boardwalk Empire\"",
    "question_en": "How many episodes were shown on Friday if 190 Boardwalk Empire was shown on Wednesday?",
    "question_th": "วันศุกร์จะฉายกี่ตอน ถ้าวันพุธ 190 Boardwalk Empire จะฉาย",
    "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_en": "What were the dates when 224 Assassin's Creed: Brotherhood Circus Training was shown on Tuesday?",
    "question_th": "วันอังคารที่ 224 Assassin's Creed: Brotherhood Circus Training ฉายคือวันที่เท่าไร?",
    "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_en": "When the average away attendance is 1.889 in the Superettan, what's the average home attendance?",
    "question_th": "เมื่อผู้เข้าร่วมงานเยือนโดยเฉลี่ยคือ 1.889 คนใน Superettan การเข้างานในบ้านโดยเฉลี่ยคือเท่าใด",
    "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_en": "In which season was the average league attendance 2.572?",
    "question_th": "ฤดูกาลใดที่มีผู้เข้าชมลีกเฉลี่ย 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_en": "In which division did they compete in 2012?",
    "question_th": "พวกเขาแข่งขันในดิวิชั่นใดในปี 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_en": "When the home attendance is 3.123, what's the highest away attendance?",
    "question_th": "เมื่อผู้เข้าร่วมในบ้านคือ 3.123 ผู้เข้าร่วมนอกบ้านสูงสุดคือเท่าใด?",
    "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_en": "Which division has an average home attendance of 2.459?",
    "question_th": "ดิวิชั่นใดมีผู้ชมในบ้านเฉลี่ย 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_en": "How many years was he car number 92?",
    "question_th": "รถหมายเลข 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_en": "How many years was the chassis a lotus-ford 38/7?",
    "question_th": "แชสซีของโลตัส-ฟอร์ด 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_en": "What was the race status(es) with the lotus-ford 38/1 chassis?",
    "question_th": "สถานะการแข่งขันของแชสซี Lotus-ford 38/1 เป็นอย่างไร?",
    "context": "CREATE TABLE table_181892_4 (race_status VARCHAR, chassis VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_181892_4 WHERE race_status = \"Piston\"",
    "question_en": "What year(s) was the race status piston?",
    "question_th": "ลูกสูบสถานะการแข่งขันปีไหน?",
    "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_en": "What is the largest laps led with the lotus-ford 34/3 chassis?",
    "question_th": "รอบที่ใหญ่ที่สุดที่นำโดยแชสซีของ Lotus-ford 34/3 คืออะไร?",
    "context": "CREATE TABLE table_181892_4 (laps_led INTEGER, chassis VARCHAR)"
  },
  {
    "answer": "SELECT MAX(population) FROM table_1818254_1 WHERE city = \"Minneapolis\"",
    "question_en": "What was the population of Minneapolis in 2012?",
    "question_th": "ประชากรของ Minneapolis ในปี 2012 เป็นจำนวนเท่าใด",
    "context": "CREATE TABLE table_1818254_1 (population INTEGER, city VARCHAR)"
  },
  {
    "answer": "SELECT burglary FROM table_1818254_1 WHERE violent_crime = \"974.7\"",
    "question_en": "How many burglaries occurred in the city where the violent crime rate was 974.7?",
    "question_th": "มีการลักขโมยเกิดขึ้นกี่ครั้งในเมืองที่มีอัตราการก่ออาชญากรรมรุนแรงอยู่ที่ 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_en": "What was the violent crime rate in the city where the robbery rate was 201.4?",
    "question_th": "อัตราอาชญากรรมรุนแรงในเมืองที่มีอัตราการโจรกรรมอยู่ที่ 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_en": "How many cities were there in 2012 where the rate of burglary was 224.8?",
    "question_th": "ในปี 2555 มีกี่เมืองที่มีอัตราการลักขโมยอยู่ที่ 224.8",
    "context": "CREATE TABLE table_1818254_1 (property_crime VARCHAR, burglary VARCHAR)"
  },
  {
    "answer": "SELECT value FROM table_1818471_1 WHERE mitchell = 676",
    "question_en": "What is every value when Mitchell is 676?",
    "question_th": "ทุกค่าเมื่อมิทเชลล์คือ 676 คืออะไร?",
    "context": "CREATE TABLE table_1818471_1 (value VARCHAR, mitchell VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(afinsa) FROM table_1818471_1 WHERE value = \"5P\"",
    "question_en": "How many different numbers for Afinsa when value is 5p?",
    "question_th": "อฟินซ่าเมื่อค่าเป็น 5p มีกี่หมายเลขที่แตกต่างกัน?",
    "context": "CREATE TABLE table_1818471_1 (afinsa VARCHAR, value VARCHAR)"
  },
  {
    "answer": "SELECT scott FROM table_1818471_1 WHERE date = \"(15.12)\"",
    "question_en": "What is every entry for Scott when the date is (15.12)?",
    "question_th": "ทุกรายการของ Scott เมื่อวันที่คือ (15.12) คืออะไร?",
    "context": "CREATE TABLE table_1818471_1 (scott VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT species FROM table_1818471_1 WHERE afinsa = 639",
    "question_en": "What is every species when Afinsa is 639?",
    "question_th": "เมื่ออาฟินซ่าเป็น 639 ทุกสายพันธุ์มีอะไรบ้าง?",
    "context": "CREATE TABLE table_1818471_1 (species VARCHAR, afinsa VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(order) FROM table_1818471_1 WHERE species = \"Pavo cristatus\"",
    "question_en": "How many orders when the species is Pavo Cristatus?",
    "question_th": "สั่งกี่ตัวเมื่อพันธุ์เป็น Pavo Crisstatus?",
    "context": "CREATE TABLE table_1818471_1 (order VARCHAR, species VARCHAR)"
  },
  {
    "answer": "SELECT constellation FROM table_1820752_1 WHERE distance___ly__ = \"55.7\"",
    "question_en": "If the distance is 55.7, what is the name of the constellation?",
    "question_th": "ถ้าระยะทางคือ 55.7 กลุ่มดาวชื่ออะไร",
    "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_en": "If the spectral type is g1v, what is the total distance amount?",
    "question_th": "ถ้าสเปกตรัมเป็น g1v ระยะทางรวมจะเป็นเท่าใด",
    "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_en": "What is the hd designation for arrival date of February 2070?",
    "question_th": "การกำหนด hd สำหรับวันที่มาถึงของเดือนกุมภาพันธ์ 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_en": "If the constellation is Gemini, what is the spectral type?",
    "question_th": "ถ้ากลุ่มดาวคือราศีเมถุน สเปกตรัมจะเป็นประเภทใด",
    "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_en": "If the arrival date is January 2059, what is the total amount of signal power?",
    "question_th": "หากวันที่มาถึงคือมกราคม 2552 พลังงานสัญญาณทั้งหมดเป็นเท่าใด?",
    "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_en": "If the spectral type is g1v, what is the constellation?",
    "question_th": "ถ้าสเปกตรัมเป็น g1v แล้วกลุ่มดาวคืออะไร?",
    "context": "CREATE TABLE table_1820752_1 (constellation VARCHAR, spectral_type VARCHAR)"
  },
  {
    "answer": "SELECT MAX(no) FROM table_18198579_2 WHERE tournament = \"Evian Masters\"",
    "question_en": "List the total numbers of Evian Masters tournaments. ",
    "question_th": " แสดงรายการจำนวนการแข่งขัน Evian Masters ทั้งหมด",
    "context": "CREATE TABLE table_18198579_2 (no INTEGER, tournament VARCHAR)"
  },
  {
    "answer": "SELECT original_air_date FROM table_18217753_1 WHERE season__number = 9",
    "question_en": "What is the original air date of season 9?",
    "question_th": "ซีซั่น 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_en": "Who were the writers when there were 27.11 million viewers?",
    "question_th": "ใครคือนักเขียนเมื่อมีผู้ชม 27.11 ล้านคน?",
    "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_en": "How many series had viewers totaling 23.93 million?",
    "question_th": "มีซีรีย์กี่เรื่องที่มีคนดูรวม 23.93 ล้านคน?",
    "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_en": "How many original air dates totaled 26.06 million viewers?",
    "question_th": "ออกอากาศครั้งแรกกี่วันมีผู้ชมรวม 26.06 ล้านคน?",
    "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_en": "What is the title when 18.58 u.s. viewers  (millions) watched?",
    "question_th": "ชื่ออะไรเมื่อผู้ชม 18.58 us (ล้านคน) ดู?",
    "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_en": "How many digital terrestrial channels are there for channel 4?",
    "question_th": "ช่อง 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_en": "What is the channel that is on digital terrestrial channel 10?",
    "question_th": "ช่องที่ออกอากาศทางภาคพื้นดินดิจิทัล 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_en": "What is the digital terrestria channel number for itv3?",
    "question_th": "หมายเลขช่อง Digital Terrestria ของ 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_en": "What is the position of digital channel 5 44 (+1)?",
    "question_th": "ช่องดิจิทัล 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_en": "where pageant is elite model look and year is bigger than 1993.0, who is the delegate?",
    "question_th": "โดยการประกวดเป็นอีลิทโมเดลลุคและปีใหญ่กว่าปี 2536.0 ใครคือตัวแทน?",
    "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_en": "How many years was the pageant miss globe international and delegate was karen loren medrano agustin?",
    "question_th": "การประกวดมิสโกลบอินเตอร์เนชั่นแนลใช้เวลากี่ปี และตัวแทนคือคาเรน ลอเรน เมดราโน ออกุสติน?",
    "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_en": "How many pageants were in san fernando, pampanga?",
    "question_th": "ซาน เฟอร์นันโด ปัมปังกา มีผู้เข้าประกวดกี่คน?",
    "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_en": "How many pageants were margaret ann awitan bayot the delegate of?",
    "question_th": "มาร์กาเร็ต แอน อาวิตัน บาย็อต เป็นตัวแทนเข้าประกวดกี่คน?",
    "context": "CREATE TABLE table_1825751_14 (pageant VARCHAR, delegate VARCHAR)"
  },
  {
    "answer": "SELECT other_awards FROM table_1825751_14 WHERE delegate = \"Milagros Gutierrez\"",
    "question_en": "How many awards did milagros gutierrez win?",
    "question_th": "มิลาโกรส กูเตียร์เรซ คว้ารางวัลไปกี่รางวัล?",
    "context": "CREATE TABLE table_1825751_14 (other_awards VARCHAR, delegate VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_1825751_14 WHERE pageant = \"Miss Global Teen\"",
    "question_en": "Where is the miss global teen?",
    "question_th": "มิสโกลบอลทีนอยู่ไหน?",
    "context": "CREATE TABLE table_1825751_14 (hometown VARCHAR, pageant VARCHAR)"
  },
  {
    "answer": "SELECT substrate FROM table_182499_1 WHERE enzyme = \"ALA dehydratase\"",
    "question_en": "what is the subtrate for enzyme ala dehydratase",
    "question_th": "สารย่อยของเอนไซม์ ala dehydratase คืออะไร",
    "context": "CREATE TABLE table_182499_1 (substrate VARCHAR, enzyme VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(porphyria) FROM table_182499_1 WHERE substrate = \"δ-Aminolevulinic acid\"",
    "question_en": "how many porphyria have substrate δ-aminolevulinic acid",
    "question_th": "porphyria มีสารตั้งต้น δ-aminolevulinic acid กี่ตัว",
    "context": "CREATE TABLE table_182499_1 (porphyria VARCHAR, substrate VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_182499_1 WHERE substrate = \"Coproporphyrinogen III\"",
    "question_en": "give the location of subtrate coproporphyrinogen iii",
    "question_th": "ให้ตำแหน่งของซับเทรต 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_en": "Who were the authors  of episode having production code 3t7573?",
    "question_th": "ใครคือผู้เขียนตอนที่มีรหัสการผลิต 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_en": "How many episodes had a viewership of 2.65 million?",
    "question_th": "มีกี่ตอนที่มีผู้ชม 2.65 ล้านคน?",
    "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_en": "Who were the director/s of episodes written by Mike Daniels?",
    "question_th": "ใครคือผู้กำกับตอนต่างๆ ที่เขียนโดย 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_en": "How many winners of Binibining Pilipinas-International when Nina Ricci Alagao?",
    "question_th": "มีผู้ชนะ Binibining Pilipinas-International กี่คนเมื่อ 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_en": "Who was second runner up when Janina San Miguel won Binibining Pilipinas-World?",
    "question_th": "ใครคือรองอันดับสองเมื่อ Janina San Miguel คว้าแชมป์ 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_en": "Who was the winner of binibining pilipinas-International wheh Gionna Cabrera won Miss Universe Philippines?",
    "question_th": "ใครคือผู้ชนะการประกวด Binibining Pilipinas-International โดย Gionna Cabrera คว้ามงกุฎ 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_en": "How many winners of binibining pilipinas-International when Maria Karla Bautista won binibining pilipinas-world?",
    "question_th": "มีผู้ชนะกี่คนจาก binibining pilipinas-International เมื่อ Maria Karla Bautista ชนะ 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_en": "Who is the second runner up when Janina San Miguel won binibining pilipinas-world?",
    "question_th": "ใครคือรองชนะเลิศอันดับที่ 2 เมื่อ Janina San Miguel ได้รับรางวัล 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_en": "When Margaret Ann Bayot won binibining pilipinas-international, how many winners of Miss Universe Philippines were there?",
    "question_th": "ตอนที่ Margaret Ann Bayot ได้รับรางวัล binibining pilipinas-international มีผู้ชนะ Miss Universe Philippines กี่คน?",
    "context": "CREATE TABLE table_1825751_4 (miss_universe_philippines VARCHAR, binibining_pilipinas_international VARCHAR)"
  },
  {
    "answer": "SELECT MIN(population_served) FROM table_18268930_1",
    "question_en": "What's the minimal number of population served?",
    "question_th": "จำนวนประชากรขั้นต่ำที่ให้บริการคือเท่าใด",
    "context": "CREATE TABLE table_18268930_1 (population_served INTEGER)"
  },
  {
    "answer": "SELECT partner FROM table_18268930_1 WHERE location = \"Tamara, HON\"",
    "question_en": "Who's the partner at Tamara, Hon?",
    "question_th": "ใครคือหุ้นส่วนของทามารา ที่รัก?",
    "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_en": "How many votes Khuzestan were there when the percentage was 34.50?",
    "question_th": "Khuzestan มีคะแนนเสียงทั้งหมดกี่เสียงเมื่อคะแนนร้อยละ 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_en": "How many figures for votes Khuzestan were there when the percentage was 34.50?",
    "question_th": "Khuzestan มีผู้โหวตทั้งหมดกี่คนเมื่อคิดเป็นเปอร์เซ็นต์คือ 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_en": "What was the percentage of national votes for Mahmoud Ahmadinejad?",
    "question_th": "เปอร์เซ็นต์ของคะแนนเสียงระดับชาติสำหรับ Mahmoud Ahmadinejad คือเท่าใด",
    "context": "CREATE TABLE table_1827900_1 (_percentage_of_votes_nationally VARCHAR, candidates VARCHAR)"
  },
  {
    "answer": "SELECT revenue__£million_ FROM table_18304259_1 WHERE earnings_per_share__p_ = \"8.9\"",
    "question_en": "Name the revenue for eps being 8.9",
    "question_th": "ตั้งชื่อรายได้สำหรับ eps เป็น 8.9",
    "context": "CREATE TABLE table_18304259_1 (revenue__£million_ VARCHAR, earnings_per_share__p_ VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(year_to_april) FROM table_18304259_1 WHERE ebit__£m_ = \"24.5\"",
    "question_en": "Name the total number of year to april for ebit being 24.5",
    "question_th": "ตั้งชื่อจำนวนปีทั้งหมดถึงเดือนเมษายนสำหรับ ebit เป็น 24.5",
    "context": "CREATE TABLE table_18304259_1 (year_to_april VARCHAR, ebit__£m_ VARCHAR)"
  },
  {
    "answer": "SELECT earnings_per_share__p_ FROM table_18304259_1 WHERE net_profit__£m_ = \"39.2\"",
    "question_en": "Name the eps for net profit being 39.2",
    "question_th": "ตั้งชื่อ eps สำหรับกำไรสุทธิเป็น 39.2",
    "context": "CREATE TABLE table_18304259_1 (earnings_per_share__p_ VARCHAR, net_profit__£m_ VARCHAR)"
  },
  {
    "answer": "SELECT ebit__£m_ FROM table_18304259_1 WHERE earnings_per_share__p_ = \"10.6\"",
    "question_en": "Name the ebit for eps being 10.6",
    "question_th": "ตั้งชื่อส่วนที่เพิ่มขึ้นสำหรับ eps เป็น 10.6",
    "context": "CREATE TABLE table_18304259_1 (ebit__£m_ VARCHAR, earnings_per_share__p_ VARCHAR)"
  },
  {
    "answer": "SELECT pop_density__km_2__ FROM table_1828368_1 WHERE area__km_2__ = \"28.3\"",
    "question_en": "What are the population densities of all communes with an are of 28.3 sq.km.?",
    "question_th": "ชุมชนทั้งหมดมีพื้นที่ 28.3 ตร.กม. มีความหนาแน่นของประชากรเป็นเท่าใด",
    "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_en": "What commune has an area of 12.4 sq.km.?",
    "question_th": "ตำบลใดมีพื้นที่ 12.4 ตร.กม.?",
    "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_en": "Which city has a resolution that is negotiated exile in Austria?",
    "question_th": "เมืองใดมีมติให้เจรจาเนรเทศในประเทศออสเตรีย",
    "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_en": "How many missions countries have notability with president of burundi?",
    "question_th": "มีกี่ประเทศที่มีความโดดเด่นกับประธานาธิบดีบุรุนดี?",
    "context": "CREATE TABLE table_18299148_1 (Missions VARCHAR, notability VARCHAR)"
  },
  {
    "answer": "SELECT nickname_s_ FROM table_18304058_2 WHERE enrollment__2013_14_ = 436",
    "question_en": "What is the nickname of the team whose 2013/2014 enrollment is 436? ",
    "question_th": " ชื่อเล่นของทีมที่มีการลงทะเบียนในปี 2013/2014 คือ 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_en": "What is the name of the team from the Elverado Trico school in football? ",
    "question_th": " ทีมจากโรงเรียนเอลเวราโด ทริโก ในวงการฟุตบอลชื่ออะไร?",
    "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_en": "How many years of kindergarten is provided in Ticino?",
    "question_th": "โรงเรียนอนุบาลในทีชีโนเปิดสอนกี่ปี",
    "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_en": "What is the longest length of mandatory secondary school?",
    "question_th": "โรงเรียนมัธยมศึกษาภาคบังคับที่ยาวที่สุดคือเท่าไร?",
    "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_en": "Who wrote the story that is cover date 19 October 1985?",
    "question_th": "ใครเป็นคนเขียนเรื่องที่ขึ้นปกวันที่ 19 ตุลาคม 2528?",
    "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_en": "How many cover dates does the story \"Devastation Derby! (part 1)\" have?",
    "question_th": "เรื่อง “Devastation Derby! (ตอนที่ 1)” มีปกกี่วัน?",
    "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_en": "What is the comment on the issue dated 14 March 1987?",
    "question_th": "มีความคิดเห็นอย่างไรในประเด็นลงวันที่ 14 มีนาคม พ.ศ. 2530?",
    "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_en": "What is the title of the issue where the art was done by Barry Kitson and Farmer?",
    "question_th": "หัวข้อของปัญหาที่งานศิลปะนี้ทำโดย Barry Kitson และ Farmer คืออะไร",
    "context": "CREATE TABLE table_18305523_2 (story_title VARCHAR, artist_s VARCHAR)"
  },
  {
    "answer": "SELECT MIN(_number) FROM table_18305523_1",
    "question_en": "What is the minimum number which is for title The Enemy Within part 1?",
    "question_th": "จำนวนขั้นต่ำสำหรับชื่อเรื่อง The Enemy Within ตอนที่ 1 คือเท่าไร?",
    "context": "CREATE TABLE table_18305523_1 (_number INTEGER)"
  },
  {
    "answer": "SELECT hydroxymatairesinol FROM table_1831262_2 WHERE sesamin = \"62724\"",
    "question_en": "what is the number of hydroxymatairesinol where sesamin is 62724?",
    "question_th": "ไฮดรอกซีมาไทร์ซินอลมีจำนวนเท่าใด โดยที่เซซามินคือ 62724 เป็นเท่าใด",
    "context": "CREATE TABLE table_1831262_2 (hydroxymatairesinol VARCHAR, sesamin VARCHAR)"
  },
  {
    "answer": "SELECT sesamin FROM table_1831262_2 WHERE secoisolariciresinol = 240",
    "question_en": "what is the total number of sesamin were secoisolariciresinol is 240?",
    "question_th": "จำนวนเซซามินทั้งหมดที่มีเซคอยโซลาริซิเรซินอลคือ 240 เป็นเท่าใด",
    "context": "CREATE TABLE table_1831262_2 (sesamin VARCHAR, secoisolariciresinol VARCHAR)"
  },
  {
    "answer": "SELECT MAX(pinoresinol) FROM table_1831262_2 WHERE foodstuff = \"Wheat bran\"",
    "question_en": "what is the maximum number of pinorinol in wheat bran?",
    "question_th": "พินโนรินอลในรำข้าวสาลีมีปริมาณสูงสุดคือเท่าใด",
    "context": "CREATE TABLE table_1831262_2 (pinoresinol INTEGER, foodstuff VARCHAR)"
  },
  {
    "answer": "SELECT sesamin FROM table_1831262_2 WHERE foodstuff = \"Sesame seed\"",
    "question_en": "how much sesamin is in sesame seed?",
    "question_th": "เซซามินในเมล็ดงามีปริมาณเท่าใด?",
    "context": "CREATE TABLE table_1831262_2 (sesamin VARCHAR, foodstuff VARCHAR)"
  },
  {
    "answer": "SELECT MIN(lariciresinol) FROM table_1831262_2 WHERE matairesinol = 440",
    "question_en": "what is the minimum number is lariciresinol where matairesinol number is 440?",
    "question_th": "จำนวนขั้นต่ำคือ lariciresinol โดยที่หมายเลข matairesinol คือ 440?",
    "context": "CREATE TABLE table_1831262_2 (lariciresinol INTEGER, matairesinol VARCHAR)"
  },
  {
    "answer": "SELECT calling_at FROM table_18332845_2 WHERE arrival = \"18.42\"",
    "question_en": "What was the calling for the 18.42 arrival time?",
    "question_th": "เวลาที่มาถึง 18.42 คืออะไร?",
    "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_en": "What was the arrival for Wansford, Peterborough East?",
    "question_th": "การมาถึงของ 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_en": "What was the departure time when the arrival was 14.40?",
    "question_th": "เวลาออกเดินทางเมื่อมาถึงคือ 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_en": "What is the departure for Peterborough East whose arrival time is 12.40?",
    "question_th": "รถออกเดินทางจาก Peterborough East ซึ่งมาถึงเวลา 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_en": "What is the calling at for the 09.50 departure?",
    "question_th": "รถออกเวลา 09.50 โทรเรียกอะไร?",
    "context": "CREATE TABLE table_18332845_2 (calling_at VARCHAR, departure VARCHAR)"
  },
  {
    "answer": "SELECT going_to FROM table_18332845_2 WHERE departure = \"20.35\"",
    "question_en": "Where is the train going to when departing at 20.35?",
    "question_th": "รถไฟออกเวลา 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_en": "Name the 3 dart average for michael van gerwen",
    "question_th": "ตั้งชื่อค่าเฉลี่ยลูกดอก 3 ลูกสำหรับไมเคิล แวน เกอร์เวน",
    "context": "CREATE TABLE table_18317531_1 (player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(calling_at) FROM table_18333678_2 WHERE arrival = \"09.06\"",
    "question_en": "how many callings of trains arriving at 09.06",
    "question_th": "จำนวนรถไฟที่มาถึงเวลา 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_en": "what is the operator of trains arriving at 13.39 ",
    "question_th": " รถไฟขบวนไหนมาถึงเวลา 13.39 น",
    "context": "CREATE TABLE table_18333678_2 (operator VARCHAR, arrival VARCHAR)"
  },
  {
    "answer": "SELECT arrival FROM table_18333678_2 WHERE departure = \"11.35\"",
    "question_en": "when does the train departuring at 11.35 arrive",
    "question_th": "รถไฟออกเดินทางเวลา 11.35 น. จะมาถึงเมื่อใด",
    "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_en": "when does the train arriving at bourne at 11.45 departure ",
    "question_th": " รถไฟจะถึงบอร์นเวลา 11.45 น. รถออกเมื่อไหร่",
    "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_en": "when does the train arriving at stamford east at 11.45 departure ",
    "question_th": " รถไฟจะถึงสแตมฟอร์ดตะวันออกเวลา 11.45 น. เมื่อใด",
    "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_en": "How many clubs are remaining when the winners from the previous round totals 4?",
    "question_th": "จะเหลือกี่สโมสรเมื่อผู้ชนะจากรอบที่แล้วมีทั้งหมด 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_en": "What is the round where winners from the previous round totals 8?",
    "question_th": "รอบที่แล้วผู้ชนะจากรอบที่แล้วมีทั้งหมด 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_en": "How many clubs remain in the fourth round?",
    "question_th": "เหลือกี่สโมสรในรอบที่สี่?",
    "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_en": "How many new entries started in the round where winners from the previous round is 32?",
    "question_th": "มีผู้เข้าใหม่กี่คนที่เริ่มต้นในรอบที่ผู้ชนะจากรอบที่แล้วคือ 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_en": "How many new entries started in the quarter finals?",
    "question_th": "มีรายการใหม่กี่รายการที่เริ่มต้นในรอบก่อนรองชนะเลิศ?",
    "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_en": "How many new entries started in the round where winners from the previous round is 16?",
    "question_th": "มีผู้เข้าใหม่กี่คนที่เริ่มต้นในรอบที่ผู้ชนะจากรอบที่แล้วคือ 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_en": "Who was the train operator when the train departed at 11.02 in 1922?",
    "question_th": "ใครคือผู้ดำเนินการรถไฟเมื่อรถไฟออกเดินทางเวลา 11.02 น. ในปี พ.ศ. 2465",
    "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_en": "What was the train destination when it has a calling at Boston, Sleaford, Nottingham Victoria?",
    "question_th": "จุดหมายปลายทางของรถไฟเมื่อมีสายที่ 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_en": "What was the departure time of the train going to Boston?",
    "question_th": "รถไฟไปบอสตันออกเดินทางกี่โมง?",
    "context": "CREATE TABLE table_18365784_3 (departure VARCHAR, going_to VARCHAR)"
  },
  {
    "answer": "SELECT arrival FROM table_18365784_3 WHERE departure = \"18.16\"",
    "question_en": "What was the arrival time of the train that departed at 18.16?",
    "question_th": "รถไฟออกเวลา 18.16 น. มาถึงกี่โมง?",
    "context": "CREATE TABLE table_18365784_3 (arrival VARCHAR, departure VARCHAR)"
  },
  {
    "answer": "SELECT departure FROM table_18365784_3 WHERE arrival = \"21.26\"",
    "question_en": "What was the departure time of the train that arrived at 21.26?",
    "question_th": "รถไฟมาถึงเวลา 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_en": "What was the 'calling at' station of the train that departed on 18.16?",
    "question_th": "สถานี 'เรียกที่' ของรถไฟที่ออกเดินทางในวันที่ 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_en": "Name the original air date for barnaby southcomb for charlie martin",
    "question_th": "ตั้งชื่อวันออกอากาศเดิมของ barnaby southcomb สำหรับ 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_en": "Name the number in series for number 38",
    "question_th": "ตั้งชื่อหมายเลขในชุดหมายเลข 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_en": "What is the original air date of the episode with the production code 1115? ",
    "question_th": " วันที่ออกอากาศเดิมของตอนที่มีรหัสการผลิต 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_en": "who directed the episode with the original air date of November 22, 1989? ",
    "question_th": " ใครเป็นผู้กำกับตอนที่มีกำหนดออกอากาศเดิมวันที่ 22 พฤศจิกายน 2532?",
    "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_en": "when deland is the fcsl team and 2008 is the year played who is the mlb team?",
    "question_th": "เมื่อดีแลนด์เป็นทีม fcsl และปี 2008 เป็นปีที่เล่น ใครคือทีม mlb?",
    "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_en": "When toronto blue jays are the mlb team who are the fscl team?",
    "question_th": "เมื่อโตรอนโต้ บลูเจย์ส์คือทีม mlb ใครคือทีม fscl?",
    "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_en": "When 2005 is the year played what is the lowest year drafted?",
    "question_th": "เมื่อเล่นปี 2548 ปีใดที่ร่างต่ำที่สุด?",
    "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_en": "When winter pines is the fcsl team how many mlb teams are there?",
    "question_th": "เมื่อวินเทอร์ไพน์เป็นทีม fcsl มีทีม mlb กี่ทีม?",
    "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_en": "When 2006 is the year played and winter park is the fcsl team who is the player?",
    "question_th": "เมื่อถึงปี 2006 ที่ลงเล่น และวินเทอร์ พาร์ค คือทีม fcsl นักเตะคนไหน?",
    "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_en": "Which operators offer a genre of music?",
    "question_th": "ผู้ให้บริการรายใดเสนอแนวเพลง?",
    "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_en": "Which languages are offered in the coverage area of klang petaling jaya shah alam?",
    "question_th": "ให้บริการภาษาใดบ้างที่ให้บริการใน 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_en": "Name the macedonian for  il/elle avait entendu",
    "question_th": "ตั้งชื่อภาษามาซิโดเนียสำหรับ 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łyszałeś był / słyszałaś była\"",
    "question_en": "Name the greek modern for  słyszałeś był / słyszałaś była",
    "question_th": "ตั้งชื่อภาษากรีกสมัยใหม่ว่า słyszałeś był / słyszałaś była",
    "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_en": "Name the bulgarian for  jullie hadden gehoord",
    "question_th": "ตั้งชื่อภาษาบัลแกเรียสำหรับ 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_en": "Name the english for  j'avais entendu",
    "question_th": "ตั้งชื่อภาษาอังกฤษว่า 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_en": "What was the air date in the U.S. for the episode that had 1.452 million Canadian viewers?",
    "question_th": "วันที่ออกอากาศในสหรัฐอเมริกาสำหรับตอนที่มีผู้ชมชาวแคนาดา 1.452 ล้านคนคือวันที่เท่าไร",
    "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_en": "What number episode in the series was directed by Kelly Makin and written by Mark Ellis & Stephanie Morgenstern?",
    "question_th": "ตอนใดในซีรีส์นี้กำกับโดย Kelly Makin และเขียนโดย 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_en": "What is the maximum number of episodes in the series listed?",
    "question_th": "ซีรีส์นี้แสดงได้สูงสุดกี่ตอน?",
    "context": "CREATE TABLE table_18424435_4 (no INTEGER)"
  },
  {
    "answer": "SELECT COUNT(_number) FROM table_18424435_4 WHERE production_code = 306",
    "question_en": "What is the total number of episodes listed with a production code of 306?",
    "question_th": "จำนวนตอนทั้งหมดที่ระบุด้วยรหัสการผลิต 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_en": "Who directed the episode with a production code of 301?",
    "question_th": "ใครกำกับตอนด้วยรหัสการผลิต 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_en": "Who wrote the episodes watched by 1.816 million people in Canada?",
    "question_th": "ใครเป็นคนเขียนตอนที่มีผู้ชม 1.816 ล้านคนในแคนาดา",
    "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_en": "Who wrote the episodes watched by 1.575 million people in Canada?",
    "question_th": "ใครเป็นคนเขียนตอนที่มีผู้ชม 1.575 ล้านคนในแคนาดา",
    "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_en": "Who directed the episode aired on February 27, 2009?",
    "question_th": "ใครเป็นผู้กำกับตอนที่ออกอากาศเมื่อวันที่ 27 กุมภาพันธ์ พ.ศ. 2552?",
    "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_en": "Which episodes had production code 217?",
    "question_th": "ตอนใดมีรหัสการผลิต 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_en": "For upper Arlington, what was the median household income?",
    "question_th": "สำหรับอาร์ลิงตันตอนบน รายได้เฉลี่ยของครัวเรือนคือเท่าใด",
    "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_en": "With a per capita income of $30,298, what was the total number of households?",
    "question_th": "ด้วยรายได้ต่อหัวที่ 30,298 ดอลลาร์ จำนวนครัวเรือนทั้งหมดคือเท่าใด",
    "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_en": "If the population is 2188, what was the median household income?",
    "question_th": "หากประชากรคือ 2,188 คน รายได้เฉลี่ยของครัวเรือนคือเท่าใด",
    "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_en": "For Pigeon Creek what is the per capita income?",
    "question_th": "สำหรับ Pigeon Creek รายได้ต่อหัวคือเท่าไร?",
    "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_en": "If the median income is $57,407, what is the per capita income?",
    "question_th": "หากรายได้เฉลี่ยอยู่ที่ 57,407 ดอลลาร์ รายได้ต่อหัวคือเท่าใด",
    "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_en": "Who directed the episode that aired on July 29, 2011?",
    "question_th": "ใครเป็นผู้กำกับตอนที่ออกอากาศเมื่อวันที่ 29 กรกฎาคม 2554?",
    "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_en": "How many air dates where directed by jim donovan?",
    "question_th": "จิม โดโนแวน กำกับโดย จิม โดโนแวน ออกอากาศกี่วัน?",
    "context": "CREATE TABLE table_18424435_5 (us_air_date VARCHAR, directed_by VARCHAR)"
  },
  {
    "answer": "SELECT MIN(_number) FROM table_18424435_5",
    "question_en": "What is the smallest number?",
    "question_th": "จำนวนที่น้อยที่สุดคืออะไร?",
    "context": "CREATE TABLE table_18424435_5 (_number INTEGER)"
  },
  {
    "answer": "SELECT us_air_date FROM table_18424435_5 WHERE canadian_viewers__million_ = \"1.229\"",
    "question_en": "Which air dates have 1.229 canadian viewers (millions)?",
    "question_th": "วันออกอากาศใดที่มีผู้ชมชาวแคนาดา 1.229 คน (ล้าน)",
    "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_en": "In what district is the city listed in Serial number 9?",
    "question_th": "เมืองใดอยู่ในรายการหมายเลขลำดับที่ 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_en": "What is the area of the city in the Sargodha district?",
    "question_th": "เมืองในอำเภอสารโกธะมีอาณาเขตเท่าใด?",
    "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_en": "What is the smallest city area?",
    "question_th": "พื้นที่เมืองที่เล็กที่สุดคืออะไร?",
    "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_en": "If Di Drew is the director, what was the original air date for episode A Whole Lot to Lose?",
    "question_th": "ถ้า Di Drew เป็นผู้กำกับ วันที่ออกอากาศตอนแรกของตอน 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_en": "What is the population (2010 census) if s barangay is 51?",
    "question_th": "ประชากร (การสำรวจสำมะโนประชากร พ.ศ. 2553) คือเท่าใด หากบารังไกมีอายุ 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_en": "What is the population  (2010 census) if the area is 66.11?",
    "question_th": "ประชากร (การสำรวจสำมะโนประชากร พ.ศ. 2553) คือเท่าใด หากพื้นที่คือ 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_en": "How many entered the match with a time of 14:42? ",
    "question_th": " มีกี่คนที่เข้าแข่งขันด้วยเวลา 14:42?",
    "context": "CREATE TABLE table_18438494_3 (entered VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_18438494_3 WHERE wrestler = \"Cena\"",
    "question_en": "What was the time for the match with Cena? ",
    "question_th": " แมตช์กับซีน่ากี่โมงคะ?",
    "context": "CREATE TABLE table_18438494_3 (time VARCHAR, wrestler VARCHAR)"
  },
  {
    "answer": "SELECT station FROM table_1847523_2 WHERE city_of_license__market = \"Cincinnati\"",
    "question_en": "What are all the stations with a license in Cincinnati?",
    "question_th": "สถานีทั้งหมดที่มีใบอนุญาตใน 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_en": "What station is affiliated with kmgh-tv?",
    "question_th": "สถานีใดในเครือ 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_en": "How many stations have been owned since wfts-tv?",
    "question_th": "ตั้งแต่ 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_en": "What city of license/market has the channel of 41?",
    "question_th": "เมืองไหนอนุญาต/ตลาดมีช่องทาง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_en": "What is the minimum stations owned since kero-tv?",
    "question_th": "สถานีขั้นต่ำที่เป็นเจ้าของตั้งแต่ 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_en": "What is the lyric fm for rnag 93.2?",
    "question_th": "เนื้อเพลง fm สำหรับ 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_en": "What are the 2fm's for erp 16?",
    "question_th": "2fm สำหรับ erp 16 คืออะไร?",
    "context": "CREATE TABLE table_18475946_2 (erp__kw_ VARCHAR)"
  },
  {
    "answer": "SELECT rnag__mhz_ FROM table_18475946_2 WHERE transmitter = \"Kippure\"",
    "question_en": "What is the rnag for kippure transmitter? ",
    "question_th": " rnag สำหรับเครื่องส่งสัญญาณ kippure คืออะไร",
    "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_en": "What is the rnag for  lyric fm 98.7? ",
    "question_th": " rnag สำหรับเนื้อเพลง 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_en": "What is the 2fm for rnag 94.4?",
    "question_th": "2fm สำหรับ 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_en": "How many reasons were given when A. Willis Robertson (D) resigned?",
    "question_th": "มีการให้เหตุผลกี่ประการเมื่อ A. Willis Robertson (D) ลาออก?",
    "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_en": "Who vacated his post when his successor was formally installed on May 11, 1966?",
    "question_th": "ใครพ้นจากตำแหน่งเมื่อผู้สืบทอดตำแหน่งของเขาได้รับแต่งตั้งอย่างเป็นทางการเมื่อวันที่ 11 พฤษภาคม พ.ศ. 2509?",
    "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_en": "What was the state (class) where the new successor was formally installed on May 11, 1966?",
    "question_th": "รัฐ (คลาส) ใดที่ผู้สืบทอดคนใหม่ได้รับการติดตั้งอย่างเป็นทางการเมื่อวันที่ 11 พฤษภาคม พ.ศ. 2509?",
    "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_en": "When abba is the artist what is the album?",
    "question_th": "เมื่อ abba เป็นศิลปิน อัลบั้มอะไร?",
    "context": "CREATE TABLE table_18442691_2 (album VARCHAR, artist VARCHAR)"
  },
  {
    "answer": "SELECT album FROM table_18442691_2 WHERE no = 35",
    "question_en": "When 35 is the number what is the album?",
    "question_th": "เมื่อ 35 คือเบอร์ อัลบั้มอะไรคะ?",
    "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_en": "When bat out of hell is the album what is the lowest number?",
    "question_th": "เมื่อ bat out of hell อัลบั้มเลขต่ำสุดคือตัวอะไร?",
    "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_en": "When cannot handle non-empty timestamp argument! 2007 is released what is the no.?  ",
    "question_th": " เมื่อไม่สามารถจัดการอาร์กิวเมนต์การประทับเวลาที่ไม่ว่างเปล่าได้! 2007 เปิดตัวแล้ว หมายเลขอะไร.?",
    "context": "CREATE TABLE table_18442691_2 (no VARCHAR, released VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_1847180_4 WHERE vacator = \"Ralph Harvey (R)\"",
    "question_en": "Which district did Ralph Harvey (r) vacated when he resigned?",
    "question_th": "ราล์ฟ ฮาร์วีย์ (ขวา) ออกจากเขตใดเมื่อเขาลาออก?",
    "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_en": "Who did Walter B. Jones, Sr. (d) succeeded in office?",
    "question_th": "วอลเตอร์ บี. โจนส์ ซีเนียร์ (ง) ประสบความสำเร็จในตำแหน่งใด",
    "context": "CREATE TABLE table_1847180_4 (vacator VARCHAR, successor VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_18481791_2 WHERE directed_by = \"John T. Kretchmer\"",
    "question_en": "What was the title of the episode directed by John T. Kretchmer? ",
    "question_th": " ตอนที่กำกับโดย 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_en": "How many seasons were directed by Bryan Spicer?",
    "question_th": "ไบรอัน สไปเซอร์กำกับกี่ฤดูกาล?",
    "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_en": "What is the title of series 23?",
    "question_th": "ซีรีย์ 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_en": "Who directed season 1?",
    "question_th": "ใครเป็นผู้กำกับซีซั่น 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_en": "What is the title when u.s. viewers (millions) is 3.97?",
    "question_th": "ชื่อเรื่องเมื่อเราคนดู(ล้าน)คือ 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_en": "how many people commentated where broadcaster is orf",
    "question_th": "มีกี่คนที่แสดงความคิดเห็นว่าผู้ประกาศอยู่ที่ไหน",
    "context": "CREATE TABLE table_184803_4 (commentator VARCHAR, broadcaster VARCHAR)"
  },
  {
    "answer": "SELECT spokespersons FROM table_184803_4 WHERE voting_order = 9",
    "question_en": "list the spokespersons where voting order is 9",
    "question_th": "รายชื่อโฆษกที่มีลำดับการลงคะแนนเสียงคือ 9",
    "context": "CREATE TABLE table_184803_4 (spokespersons VARCHAR, voting_order VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_184803_4 WHERE commentator = \"Gordana Bonetti\"",
    "question_en": "which countries were commentated on by gordana bonetti",
    "question_th": "ประเทศใดได้รับการวิจารณ์โดย กอร์ดานา โบเน็ตติ",
    "context": "CREATE TABLE table_184803_4 (country VARCHAR, commentator VARCHAR)"
  },
  {
    "answer": "SELECT spokespersons FROM table_184803_4 WHERE country = \"Luxembourg\"",
    "question_en": "wich spokesperson talked on luxembourg",
    "question_th": "ซึ่งโฆษกได้พูดคุยกับลักเซมเบิร์ก",
    "context": "CREATE TABLE table_184803_4 (spokespersons VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT commentator FROM table_184803_4 WHERE spokespersons = \"Claude Darget\"",
    "question_en": "who was the commentator when spokesperson was claude darget",
    "question_th": "ซึ่งเป็นผู้วิจารณ์เมื่อโฆษกคือ โคล้ด ดาร์เก็ต",
    "context": "CREATE TABLE table_184803_4 (commentator VARCHAR, spokespersons VARCHAR)"
  },
  {
    "answer": "SELECT institution FROM table_18483171_1 WHERE team_nickname = \"Cardinals\"",
    "question_en": "List all institutions with a team name of the Cardinals. ",
    "question_th": " รายชื่อสถาบันทั้งหมดที่มีชื่อทีมของพระคาร์ดินัล",
    "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_en": "List the total number of institutions founded in Rock Island, Illinois.",
    "question_th": "ระบุจำนวนสถาบันทั้งหมดที่ก่อตั้งขึ้นใน Rock Island รัฐอิลลินอยส์",
    "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_en": "How many viewers in millions watched the episode 23:55 minutes long?",
    "question_th": "มีผู้ชมกี่ล้านที่ดูตอน 23:55 นาที?",
    "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_en": "What is the broadcast date of the 16mm t/r episode?",
    "question_th": "ตอน 16mm t/r ออกอากาศวันไหนคะ?",
    "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_en": "How many viewers watched the 16mm t/r episode?",
    "question_th": "มีผู้ชมกี่คนที่ดูตอน 16 มม. t/r",
    "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ñana_es_para_siempre = \"Impreuna pentru totdeauna\"",
    "question_en": "state el canal de las estrellas where mañana es para siempre is impreuna pentru totdeauna",
    "question_th": "state el canal de las estrellas โดยที่ mañana es para siempre คือ impreuna pentru totdeauna",
    "context": "CREATE TABLE table_18498743_1 (el_canal_de_las_estrellas VARCHAR, mañana_es_para_siempre VARCHAR)"
  },
  {
    "answer": "SELECT mexico FROM table_18498743_1 WHERE mañana_es_para_siempre = \"Love Never Dies\"",
    "question_en": "what is the mexico stat where mañana es para siempre is love never dies",
    "question_th": "สถิติของเม็กซิโกคืออะไรโดยที่ mañana es para siempre คือความรักไม่มีวันตาย",
    "context": "CREATE TABLE table_18498743_1 (mexico VARCHAR, mañana_es_para_siempre VARCHAR)"
  },
  {
    "answer": "SELECT october_20, _2008 FROM table_18498743_1 WHERE mexico = \"Romania\"",
    "question_en": "what is the october 20, 2008 stat where mexico stat is romania",
    "question_th": "สถิติวันที่ 20 ตุลาคม 2551 ซึ่งเม็กซิโกคือโรมาเนียคือเท่าไร",
    "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_en": "Name the other for chironius multiventris septentrionalis",
    "question_th": "ตั้งชื่ออีกชื่อหนึ่งว่า 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_en": "Name the trinidad for yellow-bellied puffing snake",
    "question_th": "ตั้งชื่อตรินิแดดให้เป็นงูพองท้องเหลือง",
    "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_en": "Name the bocas for chironius multiventris septentrionalis",
    "question_th": "ตั้งชื่อ bocas สำหรับ 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_en": "Name the common name for chironius multiventris septentrionalis",
    "question_th": "ตั้งชื่อชื่อสามัญของ 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_en": "What contestant was premiered on July 25? ",
    "question_th": " ผู้เข้าแข่งขันคนใดที่เปิดตัวในวันที่ 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_en": "What's the Air Force - Navy score in the 2018 season?",
    "question_th": "คะแนนกองทัพอากาศ-กองทัพเรือในฤดูกาล 2018 เป็นเท่าใด?",
    "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_en": "What was the Air Force - Navy score in the 1983 season?",
    "question_th": "คะแนนกองทัพอากาศ-กองทัพเรือในฤดูกาล พ.ศ. 2526 เป็นเท่าใด",
    "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_en": "How many different season have an Army - Navy score of 10 dec. 2016 at Baltimore, MD (M&T Bank Stadium)?",
    "question_th": "คะแนนกองทัพบก-กองทัพเรือ ต่างกันกี่ฤดูกาล 10 ธ.ค. 2016 ที่บัลติมอร์ รัฐแมรี่แลนด์ (สนามกีฬา M&T Bank)?",
    "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_en": "Name the tourism receipts 2003 for tourism competitiveness 3.26",
    "question_th": "รายรับจากการท่องเที่ยว ปี 2546 เพื่อความสามารถในการแข่งขันด้านการท่องเที่ยว 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_en": "Name the tourism receipts 2003 for colombia",
    "question_th": "ตั้งชื่อใบเสร็จรับเงินการท่องเที่ยวปี 2003 สำหรับประเทศโคลอมเบีย",
    "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_en": "Name the total number of tourism receipts 2011 where tourism receipts 2003 13.5",
    "question_th": "ระบุจำนวนรายรับการท่องเที่ยวทั้งหมด พ.ศ. 2554 โดย รายรับการท่องเที่ยว พ.ศ. 2546 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_en": "When classic hits 102.1 cjcy is the branding who is the owner?",
    "question_th": "เมื่อคลาสสิคฮิต 102.1 cjcy คือแบรนด์ ใครเป็นเจ้าของ?",
    "context": "CREATE TABLE table_18536769_1 (owner VARCHAR, branding VARCHAR)"
  },
  {
    "answer": "SELECT call_sign FROM table_18536769_1 WHERE format = \"hot adult contemporary\"",
    "question_en": "When hot adult contemporary is the format what is the call sign?",
    "question_th": "เมื่อผู้ใหญ่สุดฮอตร่วมสมัยมีรูปแบบอะไรคือสัญญาณเรียกขาน?",
    "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_en": "When vista radio is the owner how many call signs are there?",
    "question_th": "เมื่อวิทยุ vista เป็นเจ้าของ มีสัญญาณเรียกเข้ากี่สัญญาณ?",
    "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_en": "When fm 97.3 is the frequency how many formats are there?",
    "question_th": "เมื่อ fm 97.3 มีความถี่มีกี่รูปแบบ?",
    "context": "CREATE TABLE table_18536769_1 (format VARCHAR, frequency VARCHAR)"
  },
  {
    "answer": "SELECT frequency FROM table_18536769_1 WHERE owner = \"Vista Radio\"",
    "question_en": "When vista radio is the owner what is the frequency? ",
    "question_th": " เมื่อวิทยุ vista เป็นเจ้าของ ความถี่คืออะไร?",
    "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_en": "Name the team for 5 september 2008 for date of vacancy for 30 august 2008",
    "question_th": "ตั้งชื่อทีม วันที่ 5 กันยายน พ.ศ. 2551 สำหรับตำแหน่งที่ว่างในวันที่ 30 สิงหาคม พ.ศ. 2551",
    "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_en": "Name the date of vacancy for daniel uberti",
    "question_th": "ตั้งชื่อวันที่ว่างของ 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_en": "Name the manner of departure for date of vacancy 25 august 2008",
    "question_th": "แจ้งกำหนดการเดินทางวันที่ตำแหน่งว่าง 25 สิงหาคม 2551",
    "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_en": "Name the date of vacancy for 29 december 2008 being date of appointment",
    "question_th": "ตั้งชื่อวันที่ตำแหน่งว่างในวันที่ 29 ธันวาคม 2551 เป็นวันที่ได้รับการแต่งตั้ง",
    "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_en": "When 1008/1009 is the production code how many directors are there?",
    "question_th": "เมื่อ 1008/1009 เป็นรหัสการผลิต มีกรรมการกี่คน?",
    "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_en": "When arthur heinemann is the writer who is the director?",
    "question_th": "เมื่ออาเธอร์ ไฮเนอมันน์เป็นนักเขียน ใครเป็นผู้กำกับ?",
    "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_en": "Name the running with for elizabeth falco",
    "question_th": "ตั้งชื่อนักวิ่งด้วยสำหรับ อลิซาเบธ ฟัลโก",
    "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_en": "Name the officing running for for carol marsh",
    "question_th": "ตั้งชื่อเจ้าหน้าที่ที่ลงสมัครรับตำแหน่งแครอล มาร์ช",
    "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_en": "Name the office running for for anthony mussara",
    "question_th": "ตั้งชื่อสำนักงานที่ลงสมัครรับตำแหน่ง แอนโทนี่ มุสซารา",
    "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_en": "Name the votes given for michael russo, genevy dimitrion , manny ortega",
    "question_th": "ตั้งชื่อคะแนนโหวตให้กับ ไมเคิล รุสโซ, เจนีวี ดิมิทริออน, แมนนี่ ออร์เทกา",
    "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_en": "Qhat was the position of sail 6606?",
    "question_th": "Qhat คือตำแหน่งของใบ 6606?",
    "context": "CREATE TABLE table_1858574_3 (position VARCHAR, sail_number VARCHAR)"
  },
  {
    "answer": "SELECT yacht FROM table_1858574_3 WHERE sail_number = \"AUS70\"",
    "question_en": "On what yacht was the sail number aus70?",
    "question_th": "ใบเรือหมายเลข 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_en": "How many titles were released on 21 October 1992?",
    "question_th": "มีกี่ชื่อที่ออกเมื่อวันที่ 21 ตุลาคม พ.ศ. 2535",
    "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_en": "What rank is Super Mario Land 2: 6 Golden Coins?",
    "question_th": "Super Mario Land 2: 6 เหรียญทองอยู่ในอันดับใด",
    "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_en": "What platform sold 11.18 million units?",
    "question_th": "แพลตฟอร์มใดขายได้ 11.18 ล้านเครื่อง?",
    "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_en": "What day did the platform sell 9.87 million units?",
    "question_th": "แพลตฟอร์มขายได้ 9.87 ล้านหน่วยวันไหน?",
    "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_en": "If new entries this round is 65, what is the round?",
    "question_th": "ถ้าเข้าใหม่รอบนี้65รอบอะไรคะ?",
    "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üper Lig\"",
    "question_en": "If leagues entering this round is Süper Lig, what is the maximum amount of clubs remaining?",
    "question_th": "หากลีกที่เข้ารอบนี้คือซูเปอร์ลีก สโมสรจะเหลือจำนวนสูงสุดคือเท่าใด?",
    "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_en": "If the winners from the previous round is 8, what is the round?",
    "question_th": "หากผู้ชนะจากรอบที่แล้วคือ 8 รอบจะเป็นเท่าไหร่?",
    "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_en": "If the round is the semi-finals, what are the new entries this round?",
    "question_th": "ถ้ารอบนี้เป็นรอบรองชนะเลิศ รอบนี้จะมีรายการใหม่อะไรบ้าง?",
    "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_en": "How many losses for the team atl. colegiales?",
    "question_th": "ทีมแอตฯ แพ้ไปกี่ครั้ง นักศึกษาวิทยาลัย?",
    "context": "CREATE TABLE table_18594107_2 (losses INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT MIN(points) FROM table_18594107_2 WHERE scored = 14",
    "question_en": "How many points when the score is 14?",
    "question_th": "คะแนนเป็น 14 ได้กี่คะแนน?",
    "context": "CREATE TABLE table_18594107_2 (points INTEGER, scored VARCHAR)"
  },
  {
    "answer": "SELECT MAX(draws) FROM table_18594107_2 WHERE scored = 13",
    "question_en": "How many draws are there when the score is 13?",
    "question_th": "สกอร์เป็น 13 มีกี่งวด?",
    "context": "CREATE TABLE table_18594107_2 (draws INTEGER, scored VARCHAR)"
  },
  {
    "answer": "SELECT MAX(wins) FROM table_18594107_2 WHERE conceded = 18",
    "question_en": "How many wins have conceded as 18?",
    "question_th": "ชนะกี่ครั้งแล้วที่เสียไป 18 นัด?",
    "context": "CREATE TABLE table_18594107_2 (wins INTEGER, conceded VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(draws) FROM table_18594107_1 WHERE scored = 25",
    "question_en": "How many draws occurred when 25 points were scored? ",
    "question_th": " เสมอกันกี่ครั้งเมื่อได้ 25 แต้ม?",
    "context": "CREATE TABLE table_18594107_1 (draws VARCHAR, scored VARCHAR)"
  },
  {
    "answer": "SELECT MIN(points) FROM table_18594107_1 WHERE team = \"San Lorenzo\"",
    "question_en": "What is the least number of poins for San Lorenzo? ",
    "question_th": " ซาน ลอเรนโซ ทำแต้มได้น้อยที่สุดเท่าไหร่?",
    "context": "CREATE TABLE table_18594107_1 (points INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT draws FROM table_18594107_1 WHERE team = \"12 de Octubre\"",
    "question_en": "How many draws does 12 de Octubre  have? ",
    "question_th": " 12 ตุลาคม มีกี่งวด?",
    "context": "CREATE TABLE table_18594107_1 (draws VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(inaba) FROM table_18595004_7",
    "question_en": "What is Inaba's maximum score?",
    "question_th": "คะแนนสูงสุดของอินาบะคือเท่าไร?",
    "context": "CREATE TABLE table_18595004_7 (inaba INTEGER)"
  },
  {
    "answer": "SELECT COUNT(tonioli) FROM table_18595004_7 WHERE week__number = 3",
    "question_en": "How many sets of marks does Tonioli get in week 3?",
    "question_th": "โทนิโอลีได้คะแนนกี่ชุดในสัปดาห์ที่ 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_en": "When columbia, south carolina is the hometown what is the lowest age?",
    "question_th": "เมื่อโคลัมเบีย เซาท์แคโรไลนาเป็นบ้านเกิด อายุต่ำสุดคือเท่าไหร่?",
    "context": "CREATE TABLE table_1859855_2 (age INTEGER, hometown VARCHAR)"
  },
  {
    "answer": "SELECT MIN(age) FROM table_1859855_2 WHERE hometown = \"Austin, Texas\"",
    "question_en": "When austin, texas is the hometown what is the lowest age?",
    "question_th": "เมื่อออสติน เท็กซัสเป็นบ้านเกิด อายุน้อยที่สุดคือเท่าไหร่?",
    "context": "CREATE TABLE table_1859855_2 (age INTEGER, hometown VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_1859855_2 WHERE candidate = \"Stacy Schneider\"",
    "question_en": "When stacy schneider is the candidate what are the results?",
    "question_th": "เมื่อสเตซี่ ชไนเดอร์เป็นผู้สมัคร ผลลัพธ์จะเป็นอย่างไร?",
    "context": "CREATE TABLE table_1859855_2 (result VARCHAR, candidate VARCHAR)"
  },
  {
    "answer": "SELECT township FROM table_18600760_15 WHERE land___sqmi__ = \"35.766\"",
    "question_en": "Which township is 35.766 sqmi?",
    "question_th": "เมืองใดมีพื้นที่ 35.766 ตร.ม.",
    "context": "CREATE TABLE table_18600760_15 (township VARCHAR, land___sqmi__ VARCHAR)"
  },
  {
    "answer": "SELECT county FROM table_18600760_15 WHERE township = \"Osborn\"",
    "question_en": "What county is the township of Osborn in?",
    "question_th": "ออสบอร์น อยู่ในจังหวัดใด",
    "context": "CREATE TABLE table_18600760_15 (county VARCHAR, township VARCHAR)"
  },
  {
    "answer": "SELECT longitude FROM table_18600760_15 WHERE latitude = \"47.985154\"",
    "question_en": "What is the longitude with a latitude of 47.985154?",
    "question_th": "ลองจิจูดที่มีละติจูด 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_en": "How many square miles of water is in Ramsey County with a geo id larger than 3807159460.0?",
    "question_th": "Ramsey County มีน้ำกี่ตารางไมล์ซึ่งมีรหัสทางภูมิศาสตร์ใหญ่กว่า 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_en": "how many latitudes have 0.081 (sqmi) of water?",
    "question_th": "กี่ละติจูดมีน้ำ 0.081 (ตารางเมตร)?",
    "context": "CREATE TABLE table_18600760_15 (latitude VARCHAR, water__sqmi_ VARCHAR)"
  },
  {
    "answer": "SELECT MIN(geo_id) FROM table_18600760_15",
    "question_en": "what is the lowest geo id?",
    "question_th": "รหัสทางภูมิศาสตร์ต่ำสุดคืออะไร?",
    "context": "CREATE TABLE table_18600760_15 (geo_id INTEGER)"
  },
  {
    "answer": "SELECT MAX(geo_id) FROM table_18600760_10 WHERE water__sqmi_ = \"0.771\"",
    "question_en": "What is the geo ID for the township with 0.771 square miles of water?",
    "question_th": "รหัสทางภูมิศาสตร์สำหรับเขตเมืองที่มีพื้นที่น้ำ 0.771 ตารางไมล์คืออะไร",
    "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_en": "What is the geo id for Logan county?",
    "question_th": "รหัสทางภูมิศาสตร์ของโลแกนเคาน์ตี้คืออะไร?",
    "context": "CREATE TABLE table_18600760_10 (geo_id INTEGER, county VARCHAR)"
  },
  {
    "answer": "SELECT land___sqmi__ FROM table_18600760_10 WHERE county = \"Grand Forks\"",
    "question_en": "How big is the land in square miles of Grand Forks county?",
    "question_th": "ที่ดินมีขนาดใหญ่แค่ไหนในตารางไมล์ของเทศมณฑล Grand Forks?",
    "context": "CREATE TABLE table_18600760_10 (land___sqmi__ VARCHAR, county VARCHAR)"
  },
  {
    "answer": "SELECT MAX(geo_id) FROM table_18600760_10 WHERE township = \"Joliette\"",
    "question_en": "What is the geo id for Joliette?",
    "question_th": "รหัสทางภูมิศาสตร์ของ 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_en": "What was the lattitude for the area with 4.243 square miles of water?",
    "question_th": "ละติจูดของพื้นที่ที่มีน้ำ 4.243 ตารางไมล์เป็นเท่าใด",
    "context": "CREATE TABLE table_18600760_10 (latitude VARCHAR, water__sqmi_ VARCHAR)"
  },
  {
    "answer": "SELECT township FROM table_18600760_10 WHERE land___sqmi__ = \"28.597\"",
    "question_en": "What township is 28.597 square miles of land?",
    "question_th": "เมืองใดมีที่ดิน 28.597 ตารางไมล์",
    "context": "CREATE TABLE table_18600760_10 (township VARCHAR, land___sqmi__ VARCHAR)"
  },
  {
    "answer": "SELECT township FROM table_18600760_12 WHERE longitude = \"-98.741656\"",
    "question_en": "Which township has a longitude of -98.741656?",
    "question_th": "เมืองใดมีลองจิจูด -98.741656",
    "context": "CREATE TABLE table_18600760_12 (township VARCHAR, longitude VARCHAR)"
  },
  {
    "answer": "SELECT land___sqmi__ FROM table_18600760_12 WHERE township = \"Lansing\"",
    "question_en": "What is the land (sqmi) in lansing township?",
    "question_th": "ที่ดิน (ตารางเมตร) ในเมืองแลนซิงคืออะไร?",
    "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_en": "What is the geo id when water is 0.457?",
    "question_th": "รหัสทางภูมิศาสตร์คืออะไรเมื่อน้ำเป็น 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_en": "What is the geo id of the land at 35.999?",
    "question_th": "รหัสทางภูมิศาสตร์ของที่ดินที่ 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_en": "What is the land (sqmi) at geo id 3801947380?",
    "question_th": "ที่ดิน (ตร.ม.) ที่ 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_en": "What is the population associated with latitude 48.676125?",
    "question_th": "ประชากรที่เกี่ยวข้องกับละติจูด 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_en": "How many places associated with latitude 48.247662?",
    "question_th": "มีสถานที่กี่แห่งที่เกี่ยวข้องกับละติจูด 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_en": "What longitudes associated with a water (sqmi) area of 0.068?",
    "question_th": "ลองจิจูดใดที่เกี่ยวข้องกับพื้นที่น้ำ (ตร.ม.) ที่ 0.068",
    "context": "CREATE TABLE table_18600760_13 (longitude VARCHAR, water__sqmi_ VARCHAR)"
  },
  {
    "answer": "SELECT MIN(ansi_code) FROM table_18600760_13",
    "question_en": "What is the smallest ansi code?",
    "question_th": "รหัส ansi ที่เล็กที่สุดคืออะไร?",
    "context": "CREATE TABLE table_18600760_13 (ansi_code INTEGER)"
  },
  {
    "answer": "SELECT county FROM table_18600760_13 WHERE ansi_code = 1759686",
    "question_en": "What county is associated with ansi code 1759686?",
    "question_th": "จังหวัดใดที่เกี่ยวข้องกับรหัส ansi 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_en": "What is the geo id for malcolm township?",
    "question_th": "รหัสทางภูมิศาสตร์สำหรับเขตการปกครองท้องถิ่นมัลคอล์มคืออะไร?",
    "context": "CREATE TABLE table_18600760_13 (geo_id VARCHAR, township VARCHAR)"
  },
  {
    "answer": "SELECT land___sqmi__ FROM table_18600760_18 WHERE township = \"Reed\"",
    "question_en": "What is the land area of Reed Township?",
    "question_th": "ที่ดินของตำบลรีดมีเนื้อที่เท่าไร?",
    "context": "CREATE TABLE table_18600760_18 (land___sqmi__ VARCHAR, township VARCHAR)"
  },
  {
    "answer": "SELECT township FROM table_18600760_18 WHERE longitude = \"-100.680772\"",
    "question_en": "What is the township at longitude -100.680772?",
    "question_th": "เมืองที่ลองจิจูด -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_en": "What is the ANSI code of the township where the area is 35.737 square miles?",
    "question_th": "รหัส ANSI ของเมืองที่มีพื้นที่ 35.737 ตารางไมล์ คืออะไร",
    "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_en": "What is the GEO ID of the township with area of 32.532 square miles?",
    "question_th": "GEO ID ของเมืองที่มีพื้นที่ 32.532 ตารางไมล์คืออะไร",
    "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_en": "What township is 34.781 square miles?",
    "question_th": "เมืองอะไรมีพื้นที่ 34.781 ตารางไมล์",
    "context": "CREATE TABLE table_18600760_18 (township VARCHAR, land___sqmi__ VARCHAR)"
  },
  {
    "answer": "SELECT longitude FROM table_18600760_20 WHERE township = \"Tatman\"",
    "question_en": "What longitude is tatman township?",
    "question_th": "เมืองแทตมันคือลองจิจูดเท่าใด",
    "context": "CREATE TABLE table_18600760_20 (longitude VARCHAR, township VARCHAR)"
  },
  {
    "answer": "SELECT land___sqmi__ FROM table_18600760_20 WHERE latitude = \"47.548602\"",
    "question_en": "What is the land area (sqmi) for the township at longtidue 47.548602?",
    "question_th": "พื้นที่ดิน (ตารางเมตร) ของเขตเมืองที่ลองน้ำ 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_en": "How many ansi codes are there for longitude 46.415037?",
    "question_th": "ลองจิจูด 46.415037 มีรหัส ansi กี่รหัส",
    "context": "CREATE TABLE table_18600760_20 (ansi_code VARCHAR, latitude VARCHAR)"
  },
  {
    "answer": "SELECT water__sqmi_ FROM table_18600760_20 WHERE latitude = \"48.423224\"",
    "question_en": "What is the water area (sqmi) for the township at latitude 48.423224?",
    "question_th": "พื้นที่น้ำ (ตร.ม.) สำหรับเมืองที่ละติจูด 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_en": "How many ansi codes are there for latitude 48.142938?",
    "question_th": "มีรหัส ansi สำหรับละติจูด 48.142938 จำนวนเท่าใด",
    "context": "CREATE TABLE table_18600760_20 (ansi_code VARCHAR, latitude VARCHAR)"
  },
  {
    "answer": "SELECT township FROM table_18600760_8 WHERE county = \"Kidder\"",
    "question_en": "Name the township for kidder",
    "question_th": "ตั้งชื่อเมืองให้เด็กเล่น",
    "context": "CREATE TABLE table_18600760_8 (township VARCHAR, county VARCHAR)"
  },
  {
    "answer": "SELECT latitude FROM table_18600760_8 WHERE geo_id = 3810536900",
    "question_en": "Name the latitude for  3810536900",
    "question_th": "ตั้งชื่อละติจูดสำหรับ 3810536900",
    "context": "CREATE TABLE table_18600760_8 (latitude VARCHAR, geo_id VARCHAR)"
  },
  {
    "answer": "SELECT latitude FROM table_18600760_8 WHERE geo_id = 3809935740",
    "question_en": "Name the latitude for 3809935740",
    "question_th": "ตั้งชื่อละติจูดสำหรับ 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_en": "Name the number of county for 90 population",
    "question_th": "ตั้งชื่อจำนวนเขตสำหรับประชากร 90 คน",
    "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_en": "When houdet ( fra ) w 6-2, 6-1 is the quarterfinals what is the final/bronze medal match?",
    "question_th": "เมื่อ Houdet (fra) w 6-2, 6-1 เข้าสู่รอบก่อนรองชนะเลิศ การแข่งขันรอบชิงชนะเลิศ/เหรียญทองแดงจะเป็นอย่างไร?",
    "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_en": "When in round of 16 it was did not advance what was it in round of 32?",
    "question_th": "เมื่อเข้ารอบ 16 ทีมไม่ผ่านเข้ารอบ 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_en": "When scheffers ( ned ) l 3-6, 1-6 is the final/ bronze medal match what was the event?",
    "question_th": "เมื่อเชฟเฟอร์ส (เน็ด) l 3-6, 1-6 เป็นแมตช์ชิงชนะเลิศ/เหรียญทองแดง เหตุการณ์คืออะไร?",
    "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_en": "When mixed quad singles is the event what is the final/bronze medal match?",
    "question_th": "เมื่อการแข่งขันประเภทควอดเดี่ยวแบบผสมเป็นการแข่งขันรอบชิงชนะเลิศ/เหรียญทองแดงคืออะไร?",
    "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_en": "When bas van erp was the athlete what was the quarterfinals?",
    "question_th": "เมื่อ บาส ฟาน เอร์ป เป็นนักกีฬาในรอบก่อนรองชนะเลิศคือรายการใด?",
    "context": "CREATE TABLE table_18602462_21 (quarterfinals VARCHAR, athlete VARCHAR)"
  },
  {
    "answer": "SELECT semifinals FROM table_18602462_22 WHERE athlete = \"Dorrie Timmermans-Van Hall\"",
    "question_en": "What is the semifinal result for Dorrie Timmermans-Van Hall?",
    "question_th": "ผลการแข่งขันรอบรองชนะเลิศของ ดอร์รี่ ทิมเมอร์แมนส์-แวน ฮอลล์ คืออะไร?",
    "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_en": "What is the round of 16 result for Jiske Griffioen Esther Vergeer?",
    "question_th": "ผลการแข่งขันรอบ 16 ทีมสุดท้าย จิสเก กริฟฟิโอเอน เอสเธอร์ เวอร์เกียร์ คืออะไร?",
    "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_en": "The semifinal score of vergeer ( ned ) l 0-6, 1-6 follows a round of 16 result of what?",
    "question_th": "คะแนนรอบรองชนะเลิศ เวอร์เกียร์ (เน็ด) l 0-6, 1-6 ตามผลรอบ 16 ทีม ผลอะไร?",
    "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_en": "How many round of 32 results are followed by Polidori ( Ita ) w 6-1, 3-6, 6-3 in the round of 16?",
    "question_th": "ผลการแข่งขันรอบ 32 ทีมตามมากี่ทีม โปลิโดริ (อิต้า) ชนะ 6-1, 3-6, 6-3 ในรอบ 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_en": "Name the maximum points for libertad",
    "question_th": "ตั้งชื่อคะแนนสูงสุดสำหรับ libertad",
    "context": "CREATE TABLE table_18607260_6 (points INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT MIN(wins) FROM table_18607260_6 WHERE losses = 5",
    "question_en": "Name the least wins for 5 losses",
    "question_th": "ตั้งชื่อชัยชนะน้อยที่สุดจากการแพ้ 5 ครั้ง",
    "context": "CREATE TABLE table_18607260_6 (wins INTEGER, losses VARCHAR)"
  },
  {
    "answer": "SELECT MAX(draws) FROM table_18607260_6",
    "question_en": "Name the most draws",
    "question_th": "ชื่อที่เสมอกันมากที่สุด",
    "context": "CREATE TABLE table_18607260_6 (draws INTEGER)"
  },
  {
    "answer": "SELECT MIN(played) FROM table_18607260_6",
    "question_en": "Name the least played",
    "question_th": "ตั้งชื่อเล่นน้อยที่สุด",
    "context": "CREATE TABLE table_18607260_6 (played INTEGER)"
  },
  {
    "answer": "SELECT geographical_regions FROM table_18618707_1 WHERE contestant = \"Cristina Peña Garzon\"",
    "question_en": "When  cristina peña garzon is the contestant what is the geographical region?",
    "question_th": "เมื่อคริสติน่า เปญา การ์ซอนเป็นผู้เข้าแข่งขัน ภูมิภาคไหน?",
    "context": "CREATE TABLE table_18618707_1 (geographical_regions VARCHAR, contestant VARCHAR)"
  },
  {
    "answer": "SELECT geographical_regions FROM table_18618707_1 WHERE height = \"1.79\"",
    "question_en": "When  1.79 is the height what is the geographical region?",
    "question_th": "เมื่อ 1.79 คือความสูง ภูมิภาคทางภูมิศาสตร์คืออะไร?",
    "context": "CREATE TABLE table_18618707_1 (geographical_regions VARCHAR, height VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(contestant) FROM table_18618707_1 WHERE height = \"1.67\"",
    "question_en": "When 1.67 is the height how many contestants are there?",
    "question_th": "เมื่อสูง 1.67 มีผู้เข้าแข่งขันกี่คน?",
    "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_en": "When el cibao is the geographical region and the height is 1.80 who is the contestant?",
    "question_th": "เมื่อเอลซิเบาอยู่เขตภูมิศาสตร์และสูง 1.80 ใครคือผู้เข้าแข่งขัน?",
    "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_en": "When toronto is the hometown how many height measurements are there?",
    "question_th": "เมื่อโตรอนโตเป็นบ้านเกิด วัดส่วนสูงมีกี่วัด?",
    "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_en": "What is the 3rd place team for the year of 1955?",
    "question_th": "ทีมอันดับที่ 3 ประจำปี 2498 คือทีมอะไร?",
    "context": "CREATE TABLE table_18618672_2 (year VARCHAR)"
  },
  {
    "answer": "SELECT sanskrit AS gloss FROM table_186462_1 WHERE western_name = \"Sagittarius\"",
    "question_en": "When Sagittarius is the wester name what is the sanskrit gloss?",
    "question_th": "เมื่อราศีธนูเป็นชื่อตะวันตก ภาษาสันสกฤตคืออะไร?",
    "context": "CREATE TABLE table_186462_1 (sanskrit VARCHAR, western_name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(western_name) FROM table_186462_1 WHERE sanskrit = \"धनुष\"",
    "question_en": "When धनुष is the sankrit how many western names are there?",
    "question_th": "เมื่อ धनुष เป็นวันสันกฤต มีชื่อภาษาตะวันตกกี่ชื่อ?",
    "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_en": "In the film Mrs. Miniver, what is the actresses name?",
    "question_th": "ในภาพยนตร์เรื่อง Mrs. Miniver ดาราสาวชื่ออะไร?",
    "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_en": "What year was Teresa Wright nominated best supporting actress?",
    "question_th": "Teresa Wright ได้รับการเสนอชื่อเข้าชิงนักแสดงสมทบหญิงยอดเยี่ยมในปีใด",
    "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_en": "What category was the movie Working Girl nominated?",
    "question_th": "ภาพยนตร์เรื่อง Working Girl ได้รับการเสนอชื่อเข้าชิงประเภทใด",
    "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_en": "Who was nominated for best supporting actor in the movie Going My Way?",
    "question_th": "ใครได้รับการเสนอชื่อเข้าชิงนักแสดงสมทบชายยอดเยี่ยมจากภาพยนตร์เรื่อง 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_en": "Name the series number that aired on november 11, 1996",
    "question_th": "บอกชื่อซีรีส์ที่ออกอากาศวันที่ 11 พฤศจิกายน พ.ศ. 2539",
    "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_en": "Who wrote the episode originally aired on September 29, 1999?",
    "question_th": "ใครเป็นคนเขียนตอนนี้ซึ่งออกอากาศครั้งแรกเมื่อวันที่ 29 กันยายน พ.ศ. 2542",
    "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_en": "What is the name of the episode originally aired on September 29, 1999?",
    "question_th": "ตอนที่ออกอากาศครั้งแรกเมื่อวันที่ 29 กันยายน 2542 ชื่ออะไร",
    "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_en": "If the rings is 58.975, what is the number for the horizontal bar?",
    "question_th": "ถ้าวงแหวนคือ 58.975 ตัวเลขของแถบแนวนอนคือเท่าใด",
    "context": "CREATE TABLE table_18662026_1 (horizontal_bar VARCHAR, rings VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(position) FROM table_18662026_1 WHERE country = \"United States\"",
    "question_en": "How many positions was the United States in?",
    "question_th": "สหรัฐอเมริกามีกี่ตำแหน่ง?",
    "context": "CREATE TABLE table_18662026_1 (position VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT parallel_bars FROM table_18662026_1 WHERE rings = \"60.500\"",
    "question_en": "If the rings are 60.500, what is the parallel bars number?",
    "question_th": "ถ้าวงแหวนคือ 60.500 เลขแท่งขนานคือเท่าไร?",
    "context": "CREATE TABLE table_18662026_1 (parallel_bars VARCHAR, rings VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(vault) FROM table_18662026_1 WHERE rings = \"60.000\"",
    "question_en": "If the rings number is 60.000, what is the number for the vault?",
    "question_th": "ถ้าหมายเลขแหวนคือ 60,000 หมายเลขของตู้นิรภัยคือหมายเลขอะไร",
    "context": "CREATE TABLE table_18662026_1 (vault VARCHAR, rings VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(floor) FROM table_18662026_1 WHERE parallel_bars = \"61.500\"",
    "question_en": "If the parallel bars numbers is 61.500, what is the total number for the flood?",
    "question_th": "หากตัวเลขแท่งขนานคือ 61.500 จำนวนน้ำท่วมทั้งหมดจะเป็นเท่าใด",
    "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_en": "When united kingdom is the country what is the most recent date?",
    "question_th": "เมื่อสหราชอาณาจักรเป็นประเทศล่าสุดคือเมื่อใด",
    "context": "CREATE TABLE table_18676973_3 (most_recent_date VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT MAX(combo) FROM table_18676973_3 WHERE rank = \"3\"",
    "question_en": "When 3 is the rank what is the highest combo?",
    "question_th": "เมื่อ 3 เป็นอันดับที่คอมโบสูงสุดคืออะไร?",
    "context": "CREATE TABLE table_18676973_3 (combo INTEGER, rank VARCHAR)"
  },
  {
    "answer": "SELECT most_recent_cyclist FROM table_18676973_3 WHERE rank = \"12\"",
    "question_en": "When 12 is the rank who is the most recent cyclist?",
    "question_th": "เมื่อ 12 อันดับ ใครคือนักปั่นคนล่าสุด?",
    "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_en": "When 155 is the jersey what is the highest amount of different holders?",
    "question_th": "เมื่อ 155 เป็นเสื้อแข่ง จำนวนผู้ถือต่างกันสูงสุดคือเท่าใด?",
    "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_en": " Name the upper index kcal/nm3 for 62.47",
    "question_th": " ตั้งชื่อดัชนีด้านบน kcal/nm3 สำหรับ 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_en": "Name the fuel gas for upper index mj/nm3 for 92.32",
    "question_th": "ตั้งชื่อก๊าซเชื้อเพลิงสำหรับดัชนีบน mj/nm3 สำหรับ 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_en": "Name the lower index kcal/ nm3 for 61.32",
    "question_th": "ตั้งชื่อดัชนีล่าง kcal/ nm3 สำหรับ 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_en": "What is the Quarterback rating of the player who got a comp percentage of 62.0?",
    "question_th": "เรตติ้งกองหลังของผู้เล่นที่ได้เปอร์เซ็นต์คอมพ์ 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_en": "What is the rank of the player who got 58179 in yardage?",
    "question_th": "ผู้เล่นที่ได้ระยะ 58179 อยู่ในอันดับเท่าไหร่?",
    "context": "CREATE TABLE table_18686317_1 (rank VARCHAR, yardage VARCHAR)"
  },
  {
    "answer": "SELECT leagues FROM table_18686317_1 WHERE comp__percentage = \"54.0\"",
    "question_en": "In which league would you find the player with a comp percentage of 54.0?",
    "question_th": "คุณจะหาผู้เล่นที่มีเปอร์เซ็นต์คอมพ์ 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_en": "Which nation is where rider phillip dutton from?",
    "question_th": "ผู้ขับขี่ phillip dutton มาจากประเทศใด?",
    "context": "CREATE TABLE table_18666752_3 (nation VARCHAR, rider VARCHAR)"
  },
  {
    "answer": "SELECT nation FROM table_18666752_3 WHERE horse = \"Parkmore Ed\"",
    "question_en": "Which nation is where the horse parkmore ed is?",
    "question_th": "สวนม้ามอร์เอ็ดอยู่ประเทศไหน?",
    "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_en": "How many total team penalties are there when cross country penalties is 30.40?",
    "question_th": "บทลงโทษข้ามประเทศมีบทลงโทษทั้งหมดกี่ทีมที่ 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_en": "Who is the rider where the horse is galan de sauvagere?",
    "question_th": "ใครคือคนขี่ม้าที่ม้าคือ 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_en": "How many penalties are there when Eric Vigeanel is the rider?",
    "question_th": "มีบทลงโทษกี่ครั้งเมื่อเอริก วิเกเนลเป็นผู้ขับขี่?",
    "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_en": "What record label corresponds to the single \"I can't stay\"?",
    "question_th": "ค่ายเพลงใดที่สอดคล้องกับซิงเกิล \"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_en": "What format for the release that had 2000 copies?",
    "question_th": "รูปแบบของการเปิดตัวที่มี 2,000 ชุด?",
    "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_en": "What single(s) released in 2008 and had 4000 copies?",
    "question_th": "ซิงเกิลใดที่ออกในปี 2551 และมี 4,000 ชุด?",
    "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_en": "What were the \"other details\" (number released) for \"is my love will follow me\"?",
    "question_th": "“รายละเอียดอื่นๆ” (จำนวนที่ปล่อยออกมา) สำหรับ “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_en": "What year was \"moped girls\" released?",
    "question_th": "\"สาวมอเตอร์ไซค์\" ออกฉายปีไหน?",
    "context": "CREATE TABLE table_18710512_3 (date VARCHAR, single VARCHAR)"
  },
  {
    "answer": "SELECT MIN(losses) FROM table_18703133_1 WHERE points = 23",
    "question_en": "Name the least amount of losses for 23 points",
    "question_th": "ระบุจำนวนขาดทุนน้อยที่สุดได้ 23 คะแนน",
    "context": "CREATE TABLE table_18703133_1 (losses INTEGER, points VARCHAR)"
  },
  {
    "answer": "SELECT MAX(wins) FROM table_18703133_1 WHERE team = \"Sport Colombia\"",
    "question_en": "Name the most wins for sport colombia",
    "question_th": "ตั้งชื่อชัยชนะมากที่สุดสำหรับกีฬาโคลัมเบีย",
    "context": "CREATE TABLE table_18703133_1 (wins INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(played) FROM table_18703133_1 WHERE losses = 5",
    "question_en": "Namr the total number of played for 5 losses",
    "question_th": "เรียกจำนวนการเล่นทั้งหมด 5 นัดที่แพ้",
    "context": "CREATE TABLE table_18703133_1 (played VARCHAR, losses VARCHAR)"
  },
  {
    "answer": "SELECT MIN(scored) FROM table_18703133_6 WHERE position = 6",
    "question_en": "What is scored with the position of 6?",
    "question_th": "ตำแหน่งที่ 6 ได้คะแนนอะไร?",
    "context": "CREATE TABLE table_18703133_6 (scored INTEGER, position VARCHAR)"
  },
  {
    "answer": "SELECT losses FROM table_18703133_6 WHERE team = \"Tembetary\"",
    "question_en": "How many losses are there for team tembetary?",
    "question_th": "ทีมชั่วคราวมีการสูญเสียกี่ครั้ง?",
    "context": "CREATE TABLE table_18703133_6 (losses VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT wins FROM table_18703133_6 WHERE points = 24",
    "question_en": "How many wins have 24 points?",
    "question_th": "ชนะกี่ครั้งมี 24 แต้ม?",
    "context": "CREATE TABLE table_18703133_6 (wins VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT MAX(wins) FROM table_18703133_6",
    "question_en": "How many wins?",
    "question_th": "ชนะกี่นัด?",
    "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_en": "What is the original air date of the episode directed by Ian Barry and written by Philip Dalkin?",
    "question_th": "วันที่ออกอากาศดั้งเดิมของตอนที่กำกับโดย Ian Barry และเขียนโดย 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_en": "What is the show episode number of the episode that reached 1.215 millions views?",
    "question_th": "หมายเลขตอนของรายการที่มียอดดู 1.215 ล้านครั้งคือเท่าไร?",
    "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_en": "Who directed the episode written by Matt Ford?",
    "question_th": "ใครเป็นผู้กำกับตอนที่เขียนโดย 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_en": "How many times was team 1 the wykeham wonderers?",
    "question_th": "ทีม 1 วีคแฮม วันเดอร์ส กี่ครั้งแล้ว?",
    "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_en": "What is the original air date that had the wykeham wonderers as team 1?",
    "question_th": "วันออกอากาศดั้งเดิมที่มี wykeham Wonderers เป็นทีม 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_en": "Who was team 1 when the chalkheads were team 2?",
    "question_th": "ใครคือทีม 1 เมื่อหัวดำคือทีม 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_en": "What is the title of the production code 1acx09?",
    "question_th": "ชื่อของรหัสการผลิต 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_en": "How many series were directed by Rob Renzetti?",
    "question_th": "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_en": "Who wrote the series number 14?",
    "question_th": "ใครเป็นคนเขียนชุดหมายเลข 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_en": "Did this driver have any winnings the season he had 32 starts",
    "question_th": "นักแข่งรายนี้มีชัยชนะในฤดูกาลที่เขาออกสตาร์ท 32 ครั้งหรือไม่",
    "context": "CREATE TABLE table_1875157_1 (winnings VARCHAR, starts VARCHAR)"
  },
  {
    "answer": "SELECT winnings FROM table_1875157_1 WHERE position = \"33rd\"",
    "question_en": "How many wins in the season he finished 33rd",
    "question_th": "ในฤดูกาลนี้เขาจบอันดับที่ 33 กี่ชัยชนะ",
    "context": "CREATE TABLE table_1875157_1 (winnings VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT MIN(top_10) FROM table_1875157_1",
    "question_en": "What is the lowest number of top 10 finishes",
    "question_th": "จำนวนต่ำสุดของ 10 อันดับแรกคือเท่าไร",
    "context": "CREATE TABLE table_1875157_1 (top_10 INTEGER)"
  },
  {
    "answer": "SELECT MAX(poles) FROM table_1875157_1 WHERE year = 2000",
    "question_en": "How many poles in the year 2000",
    "question_th": "มีกี่เสาในปี พ.ศ. 2543",
    "context": "CREATE TABLE table_1875157_1 (poles INTEGER, year VARCHAR)"
  },
  {
    "answer": "SELECT avg_finish FROM table_1875157_2 WHERE winnings = \"$1,400\"",
    "question_en": "What is the average finish for winnings of $1,400?",
    "question_th": "การชนะรางวัล $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_en": "What is the maximum starts that result in an average finish of 16.5?",
    "question_th": "การออกสตาร์ทสูงสุดที่ส่งผลให้จบสกอร์เฉลี่ย 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_en": "How many starts were there when the winnings are $690,321?",
    "question_th": "มีการเริ่มต้นกี่ครั้งเมื่อเงินรางวัลอยู่ที่ 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_en": "If Safari is 3.76%, what is the other Mozilla amount?",
    "question_th": "ถ้า Safari อยู่ที่ 3.76% แล้ว Mozilla อื่นๆ จะเป็นเท่าใด",
    "context": "CREATE TABLE table_1876262_10 (other_mozilla VARCHAR, safari VARCHAR)"
  },
  {
    "answer": "SELECT other_mozilla FROM table_1876262_10 WHERE firefox = \"30.45%\"",
    "question_en": "If Firefox is 30.45%, what is the other Mozilla amount?",
    "question_th": "ถ้า Firefox อยู่ที่ 30.45% แล้ว Mozilla ที่เหลือจะเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_1876262_10 (other_mozilla VARCHAR, firefox VARCHAR)"
  },
  {
    "answer": "SELECT safari FROM table_1876262_10 WHERE internet_explorer = \"47.22%\"",
    "question_en": "If Internet Explorer is 47.22%, what is the Safari total?",
    "question_th": "หาก Internet Explorer อยู่ที่ 47.22% แล้ว Safari ทั้งหมดจะเป็นเท่าใด",
    "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_en": "For period September 2009, what is the other Mozilla total number?",
    "question_th": "สำหรับช่วงเดือนกันยายน 2552 จำนวนรวมของ Mozilla อื่นเป็นเท่าใด",
    "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_en": "Name the total number of production code by david richardson and todd holland",
    "question_th": "ตั้งชื่อจำนวนรหัสการผลิตทั้งหมดโดย david richardson และ 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_en": "Name the total number of series for march 19, 2000",
    "question_th": "ตั้งชื่อซีรี่ส์ทั้งหมดสำหรับวันที่ 19 มีนาคม พ.ศ. 2543",
    "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_en": "What episode number in the series originally aired on February 25, 2001?",
    "question_th": "หมายเลขตอนใดในซีรีส์ที่ออกอากาศครั้งแรกเมื่อวันที่ 25 กุมภาพันธ์ พ.ศ. 2544",
    "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_en": "What is the name of the episode with the production code of 06-00-218?",
    "question_th": "ชื่อตอน รหัสการผลิต 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_en": "What is the production code for episode 26 in the series?",
    "question_th": "รหัสการผลิตตอนที่ 26 ของซีรีส์คืออะไร?",
    "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_en": "What is the production code for episode 6 in the season?",
    "question_th": "รหัสการผลิตตอนที่ 6 ของซีซั่นคืออะไร?",
    "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_en": "what is the title no in season 2?",
    "question_th": "ไม่มีชื่อเรื่องอะไรในซีซั่น 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_en": "What date did Micky Adams vacate his position?",
    "question_th": "มิกกี้ อดัมส์ พ้นจากตำแหน่งเมื่อใด",
    "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_en": "Which vacancy happened on 4 November 2008?",
    "question_th": "ตำแหน่งงานว่างใดที่เกิดขึ้นในวันที่ 4 พฤศจิกายน 2551?",
    "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_en": "How many times did Keith Downing depart a position?",
    "question_th": "Keith Downing ออกจากตำแหน่งกี่ครั้ง?",
    "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_en": "Which team appointed a person on 23 December 2008?",
    "question_th": "ทีมไหนแต่งตั้งบุคคลเมื่อวันที่ 23 ธันวาคม พ.ศ. 2551?",
    "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_en": "What date did the Milton Keynes Dons appoint?",
    "question_th": "มิลตัน คีนส์ ดอนส์ แต่งตั้งวันไหน?",
    "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_en": "Which vacancy occurred on 16 February 2009?",
    "question_th": "ตำแหน่งงานว่างใดที่เกิดขึ้นในวันที่ 16 กุมภาพันธ์ 2552?",
    "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_en": "What is title of episode 06-02-407?",
    "question_th": "ตอนที่ 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_en": "What is title of episode 06-02-406?",
    "question_th": "ตอนที่ 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_en": "What is title of episode aired on March 2, 2003?",
    "question_th": "ตอนที่ออกอากาศวันที่ 2 มีนาคม 2546 ชื่ออะไร?",
    "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_en": "Who wrote episode 74?",
    "question_th": "ใครเป็นคนเขียนตอนที่ 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_en": "Which position in the table is the team watford?",
    "question_th": "ทีมวัตฟอร์ดอยู่ตำแหน่งไหนในตาราง?",
    "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_en": "Name the number of number in series for production code of 06-04-621",
    "question_th": "ตั้งชื่อหมายเลขซีรีส์สำหรับรหัสการผลิต 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_en": "Name the total number of written by for original air date for may 8, 2005",
    "question_th": "ตั้งชื่อจำนวนรวมที่เขียนโดยสำหรับวันออกอากาศเดิมวันที่ 8 พฤษภาคม 2548",
    "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_en": "What was the place and how many people attended the game on July 11?",
    "question_th": "วันที่ 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_en": "Who had the most assist and how many on July 26?",
    "question_th": "ใครแอสซิสต์ได้มากที่สุดและเท่าไหร่ในวันที่ 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_en": "Who had the high assist in the game where the record is 13-11?",
    "question_th": "ใครมีแอสซิสต์สูงในเกมที่สถิติ 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_en": "At what date did the 23rd manager vacate the position?",
    "question_th": "ผู้จัดการคนที่ 23 พ้นจากตำแหน่งเมื่อใด?",
    "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_en": "What was the date of appointment for the manager that replaced Simon Davies? ",
    "question_th": " วันที่ได้รับการแต่งตั้งให้เป็นผู้จัดการทีมที่มาแทนไซม่อน เดวีส์คือเมื่อใด?",
    "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_en": "What was the date of appointment for the manager of the 23rd team?",
    "question_th": "นัดผู้จัดการทีมชุดที่ 23 วันที่เท่าไหร่?",
    "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_en": "How many categories for, replaced by, exist when the outgoing manager is Alan Buckley? ",
    "question_th": " มีกี่หมวดหมู่ที่แทนที่ด้วยเมื่อผู้จัดการที่จะออกไปคือ 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_en": "Which driver starts 3?",
    "question_th": "ไดรเวอร์ใดที่เริ่ม 3?",
    "context": "CREATE TABLE table_18811741_15 (driver VARCHAR, starts VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(podiums) FROM table_18811741_15 WHERE stage_wins = 18",
    "question_en": "How many podiums for the driver with 18 stage wins?",
    "question_th": "นักแข่งที่ชนะ 18 สเตจได้กี่โพเดียม?",
    "context": "CREATE TABLE table_18811741_15 (podiums VARCHAR, stage_wins VARCHAR)"
  },
  {
    "answer": "SELECT MAX(pos) FROM table_18811741_15 WHERE podiums = 1",
    "question_en": "What is the highest pos for a driver with 1 podium?",
    "question_th": "ตำแหน่งสูงสุดสำหรับนักแข่งที่มี 1 โพเดียมคือเท่าใด",
    "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_en": "What is every TV network with a weekly schedule of Monday to Thursday @ 11:00 pm?",
    "question_th": "ทีวีทุกช่องที่มีตารางรายสัปดาห์ วันจันทร์-พฤหัสบดี เวลา 23.00 น. คือช่องไหน",
    "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_en": "What is every country with a TV network of AXN India?",
    "question_th": "ทุกประเทศที่มีเครือข่ายทีวีของ 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_en": "What is every weekly schedule in the country of Norway?",
    "question_th": "ตารางรายสัปดาห์ในประเทศนอร์เวย์คืออะไร?",
    "context": "CREATE TABLE table_18821196_1 (weekly_schedule VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT tv_network_s_ FROM table_18821196_1 WHERE country = \"Belgium\"",
    "question_en": "What is every TV network in Belgium?",
    "question_th": "ทุกเครือข่ายทีวีในเบลเยียมคืออะไร?",
    "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_en": "What is every status with a weekly schedule of Monday to Thursday @ 11:00 pm?",
    "question_th": "ตารางรายสัปดาห์ของวันจันทร์ถึงพฤหัสบดี เวลา 23.00 น. มีอะไรบ้าง?",
    "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_en": "What is every weekly schedule of TV network Viasat 4?",
    "question_th": "ตารางรายสัปดาห์ของเครือข่ายทีวี 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ülheim\"",
    "question_en": "How much was the prize money for  rwe-sporthalle, mülheim ?",
    "question_th": "rwe-sporthalle, mülheim เงินรางวัลเท่าไหร่?",
    "context": "CREATE TABLE table_18828487_1 (prize_fund VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(runner_up) FROM table_18828487_1 WHERE year = 2009",
    "question_en": "In 2009, how many were runner-up?",
    "question_th": "ปี 2552 รองชนะเลิศมีกี่คน?",
    "context": "CREATE TABLE table_18828487_1 (runner_up VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT champion FROM table_18828487_1 WHERE venue = \"Stadthalle Dinslaken, Dinslaken\"",
    "question_en": "How much does the champion get for stadthalle dinslaken, dinslaken?",
    "question_th": "แชมป์จะได้เงิน 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_en": "When by80607002529af is the part number and september 2009 is the release date what is the l2 cache?",
    "question_th": "เมื่อ by80607002529af เป็นหมายเลขชิ้นส่วน และเดือนกันยายน 2552 เป็นวันวางจำหน่าย แคช l2 คืออะไร",
    "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_en": "When by80607002907ahbx80607i7720qm is the part number what is the socket?",
    "question_th": "เมื่อ by80607002907ahbx80607i7720qm เป็นหมายเลขชิ้นส่วน ซ็อกเก็ตคืออะไร?",
    "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_en": "When slblw(b1) is the sspec number what is the mult.?",
    "question_th": "เมื่อ slblw(b1) เป็นหมายเลข sspec ค่า 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_en": "When socketg1 is the socket what is the release price in dollars?",
    "question_th": "เมื่อ socketg1 เป็น socket ราคาวางจำหน่ายเป็นดอลลาร์คือเท่าไร?",
    "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_en": "How many points did the opposing team score on Dec. 19, 1982?",
    "question_th": "วันที่ 19 ธ.ค. 2525 ทีมตรงข้ามทำคะแนนได้กี่คะแนน?",
    "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_en": "How many bills where originally cosponsored in those years where the total of all amendments cosponsored was 0?",
    "question_th": "มีบิลจำนวนกี่ใบที่แต่เดิมได้รับการสนับสนุนร่วมกันในปีเหล่านั้นซึ่งผลรวมของการแก้ไขทั้งหมดที่ได้รับการสนับสนุนเป็น 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_en": "How many bill cosponsored during those years where bills originally cosponsored is 113?",
    "question_th": "มีการเรียกเก็บเงินจำนวนเท่าใดที่ได้รับการสนับสนุนในช่วงหลายปีที่ผ่านมาซึ่งการเรียกเก็บเงินที่ได้รับการสนับสนุนในตอนแรกคือ 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_en": "What is the greatest number of bills sponsored in any year?",
    "question_th": "ตั๋วเงินที่ได้รับการสนับสนุนมากที่สุดในปีใดๆ คือเท่าใด",
    "context": "CREATE TABLE table_18852984_2 (all_bills_sponsored INTEGER)"
  },
  {
    "answer": "SELECT MIN(cr_no) FROM table_1886270_1",
    "question_en": "What is the lowest cr number?",
    "question_th": "หมายเลข cr ต่ำสุดคืออะไร?",
    "context": "CREATE TABLE table_1886270_1 (cr_no INTEGER)"
  },
  {
    "answer": "SELECT built FROM table_1886270_1 WHERE withdrawn = \"2/1939\"",
    "question_en": "When 2/1939 is the withdrawn when was it built?",
    "question_th": "ถอนออกเมื่อ 2/1939 สร้างขึ้นเมื่อไหร่?",
    "context": "CREATE TABLE table_1886270_1 (built VARCHAR, withdrawn VARCHAR)"
  },
  {
    "answer": "SELECT hr_no FROM table_1886270_1 WHERE hr_name = \"River Ness\"",
    "question_en": "When river ness is the hr name what is the hr number?",
    "question_th": "เมื่อแม่น้ำเนสเป็นชื่อ hr เลข hr คืออะไร?",
    "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_en": "When (river garry) is the hr name how many builts are there?",
    "question_th": "เมื่อใด (แม่น้ำแกรี) เป็นชื่อ HR มีกี่สิ่งก่อสร้าง?",
    "context": "CREATE TABLE table_1886270_1 (built VARCHAR, hr_name VARCHAR)"
  },
  {
    "answer": "SELECT MAX(cr_no) FROM table_1886270_1",
    "question_en": "What is the highest cr number?",
    "question_th": "หมายเลข CR สูงสุดคืออะไร?",
    "context": "CREATE TABLE table_1886270_1 (cr_no INTEGER)"
  },
  {
    "answer": "SELECT COUNT(built) FROM table_1886270_1 WHERE hr_name = \"River Ness\"",
    "question_en": "When river ness is the hr name how many builts are there?",
    "question_th": "เมื่อแม่น้ำเนสเป็นชื่อ hr. มีกี่สิ่งก่อสร้าง?",
    "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_en": "How many opponents are at Minnesota Vikings?",
    "question_th": "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_en": "What is the date when the opponent is the New England Patriots?",
    "question_th": "วันที่คู่ต่อสู้คือนิวอิงแลนด์เพเทรียตส์คือเมื่อใด",
    "context": "CREATE TABLE table_18847736_2 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_18847736_2 WHERE dolphins_points = 6",
    "question_en": "How many dates do the dolphins have 6 points?",
    "question_th": "โลมามีกี่วันมี 6 คะแนน?",
    "context": "CREATE TABLE table_18847736_2 (date VARCHAR, dolphins_points VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_18862490_2 WHERE player = \"Robert Allenby\"",
    "question_en": "What country does robert allenby represent?",
    "question_th": "Robert Allenby เป็นตัวแทนประเทศใด",
    "context": "CREATE TABLE table_18862490_2 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_18862490_2 WHERE year = 1998",
    "question_en": "What score to par won in 1998?",
    "question_th": "สกอร์พาร์ชนะเท่าไหร่ในปี 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_en": "What player(s) had the score of 64-70-67-69=270?",
    "question_th": "นักเตะคนไหนมีคะแนน 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_en": "What players had teh score of 64-71-67-67=269?",
    "question_th": "ผู้เล่นคนไหนมีคะแนน 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_en": "What is the first yar that someone won with a score of 68-66-68-71=273?",
    "question_th": "ปีแรกที่มีคนชนะด้วยคะแนน 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_en": "How many socialist have a lead of 12.6%?",
    "question_th": "นักสังคมนิยมมีผู้นำ 12.6% กี่คน?",
    "context": "CREATE TABLE table_1886589_1 (socialist VARCHAR, lead VARCHAR)"
  },
  {
    "answer": "SELECT MIN(SOl) FROM table_1888157_1",
    "question_en": "What is the lowest SOL?",
    "question_th": "SOL ต่ำสุดคืออะไร?",
    "context": "CREATE TABLE table_1888157_1 (SOl INTEGER)"
  },
  {
    "answer": "SELECT MAX(ga) FROM table_1888157_1 WHERE gf = 39",
    "question_en": "What is the highest GA when GF is 39?",
    "question_th": "GA สูงสุดเมื่อ GF คือ 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_en": "How many different records were there in the games that ended in w 70-66?",
    "question_th": "มีสถิติที่แตกต่างกันกี่เกมในเกมที่จบลงด้วยสกอร์ 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_en": "What was the record of the game in which Dydek (10) did the most high rebounds?",
    "question_th": "สถิติเกมที่ไดเดค (10) รีบาวด์ได้สูงที่สุดคือเกมไหน?",
    "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_en": "Who did the most high rebounds in the game where Sales (17) did the high points?",
    "question_th": "ใครทำรีบาวด์ได้สูงที่สุดในเกมที่ยอดขาย (17) ทำแต้มได้สูง?",
    "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_en": "When a private individual is the source and 018 is the story number what is the total footage remaining from missing episodes (mm:ss)?",
    "question_th": "เมื่อบุคคลธรรมดาเป็นแหล่งที่มา และ 018 เป็นหมายเลขเรื่อง จะมีฟุตเทจที่เหลือจากตอนที่หายไปทั้งหมดเป็นเท่าใด (นาที:วินาที)",
    "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_en": "When episode 4 is the missing episode with recovered footage and the 032 is the story number what is the country/territory?",
    "question_th": "เมื่อตอนที่ 4 เป็นตอนที่หายไปพร้อมฟุตเทจที่กู้คืนได้ และ 032 คือหมายเลขเรื่อง ประเทศ/เขตแดนคืออะไร?",
    "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_en": "Name the least game for 8-3",
    "question_th": "ตั้งชื่อเกมที่น้อยที่สุดสำหรับ 8-3",
    "context": "CREATE TABLE table_18894744_5 (game INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_18894744_5 WHERE record = \"10-4\"",
    "question_en": "Name the opponent for record 10-4",
    "question_th": "ตั้งชื่อคู่ต่อสู้ด้วยสถิติ 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_en": "Name the high rebounds for record 7-1",
    "question_th": "ตั้งชื่อการรีบาวด์สูงเป็นประวัติการณ์ 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_en": "Name the game for june 16",
    "question_th": "ตั้งชื่อเกมสำหรับวันที่ 16 มิถุนายน",
    "context": "CREATE TABLE table_18894744_5 (game VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_18894744_5 WHERE date = \"June 7\"",
    "question_en": "Name the game for june 7",
    "question_th": "ตั้งชื่อเกมสำหรับวันที่ 7 มิถุนายน",
    "context": "CREATE TABLE table_18894744_5 (game VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_18894744_6 WHERE record = \"19-6\"",
    "question_en": "Who did the high rebounds in the game with a 19-6 record?",
    "question_th": "ใครทำสถิติรีบาวด์สูงในเกมด้วยสถิติ 19-6?",
    "context": "CREATE TABLE table_18894744_6 (high_rebounds VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_18894744_6 WHERE record = \"13-5\"",
    "question_en": "Where was the game with a 13-5 record played, and in front of how many people?",
    "question_th": "เกมนี้เล่นที่ไหนมีสถิติ 13-5 ต่อหน้าคนกี่คน?",
    "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_en": "Who did the high rebounds in the game where Douglas (28) did the high points?",
    "question_th": "ใครเป็นผู้รีบาวด์สูงในเกมที่ดักลาส (28) ทำแต้มสูง?",
    "context": "CREATE TABLE table_18894744_6 (high_rebounds VARCHAR, high_points VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_18894744_6 WHERE date = \"July 1\"",
    "question_en": "What was the record on the game played on July 1?",
    "question_th": "สถิติของเกมที่เล่นในวันที่ 1 กรกฎาคม คืออะไร?",
    "context": "CREATE TABLE table_18894744_6 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(opponent) FROM table_18894744_6 WHERE record = \"17-6\"",
    "question_en": "How many opponents was a game with a record 17-6 played against?",
    "question_th": "เกมนี้เล่นกับคู่แข่งด้วยสกอร์ 17-6 กี่คน?",
    "context": "CREATE TABLE table_18894744_6 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT career FROM table_18914438_1 WHERE matches = 60",
    "question_en": "What was the career duration of the bowler who played 60 matches?",
    "question_th": "ระยะเวลาอาชีพของนักขว้างลูกที่เล่น 60 นัดคือเท่าไร?",
    "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_en": "What is the Best score if the Maidens is 547 and Overs is 2755.1?",
    "question_th": "คะแนนที่ดีที่สุดคืออะไรถ้า Maidens คือ 547 และ Overs คือ 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_en": "What was the Overs score of the career played from 1993-2007?",
    "question_th": "คะแนนโอเวอร์สในอาชีพที่เล่นระหว่างปี 1993-2007 เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_18914438_1 (overs VARCHAR, career VARCHAR)"
  },
  {
    "answer": "SELECT best FROM table_18914438_1 WHERE career = \"1971-1984\"",
    "question_en": "What was the Best score during the game played from 1971-1984?",
    "question_th": "คะแนนที่ดีที่สุดระหว่างเกมที่เล่นระหว่างปี 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_en": "When dydek (11) has the highest rebounds what is the date?",
    "question_th": "เมื่อไดเด็ค (11) รีบาวด์สูงสุดคือวันไหน?",
    "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_en": "When mcwilliams-franklin (8) has the highest rebounds what is the date?",
    "question_th": "แมควิลเลียมส์-แฟรงคลิน (8) รีบาวด์สูงสุดเมื่อไร?",
    "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_en": "When dydek (8) has the highest rebounds who has the highest amount of points?",
    "question_th": "เมื่อ ไดเด็ค (8) รีบาวด์สูง ใครมีคะแนนสูงสุด?",
    "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_en": "When w 73-70 is the score what is the location?",
    "question_th": "เมื่อ w 73-70 คือคะแนน สถานที่อยู่ที่ไหน?",
    "context": "CREATE TABLE table_18904831_6 (location VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_18904831_7 WHERE record = \"25-8\"",
    "question_en": "What was the score in the game that had a record of 25-8?",
    "question_th": "สกอร์ในเกมที่มีสถิติ 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_en": "What was # of the first game played on August 20?",
    "question_th": "#ของเกมแรกที่เล่นในวันที่ 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_en": "What were the high points for the game played at the MCI Center?",
    "question_th": "อะไรคือคะแนนสูงสุดของเกมที่เล่นที่ 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_en": "Where was the game played that had a record of 19-6?",
    "question_th": "เล่นเกมไหนมีสถิติ 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_en": "What is the col (m) of the Barurumea Ridge peak? ",
    "question_th": " Col (m) ของยอดเขา Baruruumea คืออะไร?",
    "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_en": "What is the elevation (m) of the Mount Wilhelm peak? ",
    "question_th": " ยอดเขาวิลเฮล์มมีความสูง (ม.) เท่าไร?",
    "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_en": "What is the col (m) of the Bewani Mountains High Point peak? ",
    "question_th": " Col (m) ของยอดเขา Bewani Mountains High Point คืออะไร?",
    "context": "CREATE TABLE table_18946749_2 (col__m_ INTEGER, peak VARCHAR)"
  },
  {
    "answer": "SELECT island FROM table_18946749_1 WHERE peak = \"Mount Wondiwoi\"",
    "question_en": "When mount wondiwoi is the peak what is the island?",
    "question_th": "เมื่อยอดเขาวันดิโวยถึงจุดสูงสุด เกาะอะไร?",
    "context": "CREATE TABLE table_18946749_1 (island VARCHAR, peak VARCHAR)"
  },
  {
    "answer": "SELECT island FROM table_18946749_1 WHERE peak = \"Mount Gauttier\"",
    "question_en": "When mount gauttier is the peak what is the island?",
    "question_th": "เมื่อ Mount Gauttier เป็นจุดสูงสุด เกาะคืออะไร?",
    "context": "CREATE TABLE table_18946749_1 (island VARCHAR, peak VARCHAR)"
  },
  {
    "answer": "SELECT MAX(elevation__m_) FROM table_18946749_1 WHERE peak = \"Mount Kobowre\"",
    "question_en": "When mount kobowre is the peak what is the highest elevation in meters?",
    "question_th": "เมื่อภูเขาโคโบวร์เป็นยอดเขา ระดับความสูงสูงสุดมีหน่วยเป็นเมตรคือเท่าใด",
    "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_en": "When mount gauttier is the peak what is the highest prominence in meters?",
    "question_th": "เมื่อ Mount Gauttier อยู่บนยอดเขา ความโดดเด่นสูงสุดมีหน่วยเป็นเมตรคืออะไร?",
    "context": "CREATE TABLE table_18946749_1 (prominence__m_ INTEGER, peak VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_18946749_1 WHERE col__m_ = 44",
    "question_en": "When 44 is the col in meters what is the country?",
    "question_th": "เมื่อ 44 เป็นค่าคอล มีหน่วยเป็นเมตร ของประเทศอะไร?",
    "context": "CREATE TABLE table_18946749_1 (country VARCHAR, col__m_ VARCHAR)"
  },
  {
    "answer": "SELECT release_date FROM table_1893815_1 WHERE album_number = \"2nd\"",
    "question_en": "Name the release date for album # 2nd",
    "question_th": "ตั้งชื่อวันที่วางจำหน่ายอัลบั้ม # 2",
    "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_en": "Name the label for grown up overnight",
    "question_th": "ตั้งชื่อป้ายกำกับว่าโตข้ามคืน",
    "context": "CREATE TABLE table_1893815_1 (label VARCHAR, english_title VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_1893815_1 WHERE chinese__traditional_ = \"情歌沒有告訴你\"",
    "question_en": "Name the label for traditional chinese  情歌沒有告訴你",
    "question_th": "ตั้งชื่อป้ายกำกับสำหรับภาษาจีนดั้งเดิม 情歌沒有告訴คุณ",
    "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_en": "Name the number of traditional chinese for album number 6th",
    "question_th": "ตั้งชื่อเลขภาษาจีนดั้งเดิมสำหรับอัลบั้มที่ 6",
    "context": "CREATE TABLE table_1893815_1 (chinese__traditional_ VARCHAR, album_number VARCHAR)"
  },
  {
    "answer": "SELECT chinese__traditional_ FROM table_1893815_1 WHERE chinese__simplified_ = \"美丽人生\"",
    "question_en": "Name the chinese traditional for 美丽人生",
    "question_th": "ตั้งชื่อภาษาจีนดั้งเดิมว่า 美丽人生",
    "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_en": "Name the english title for album # 2nd",
    "question_th": "ตั้งชื่อชื่อภาษาอังกฤษสำหรับอัลบั้ม # 2nd",
    "context": "CREATE TABLE table_1893815_1 (english_title VARCHAR, album_number VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(samples_taken) FROM table_18943444_1 WHERE product = \"嬰幼兒配方乳粉2段基粉\"",
    "question_en": "How many samples were taken of 嬰幼兒配方乳粉2段基粉 ?",
    "question_th": "嬰幼兒配方乳粉2段基粉 เก็บตัวอย่างได้กี่ตัวอย่าง?",
    "context": "CREATE TABLE table_18943444_1 (samples_taken VARCHAR, product VARCHAR)"
  },
  {
    "answer": "SELECT producer FROM table_18943444_1 WHERE product = \"磊磊牌嬰幼兒配方乳粉\"",
    "question_en": "What are the producers of  磊磊牌嬰幼兒配方乳粉 ?",
    "question_th": "ผู้ผลิตของ 磊磊牌嬰幼兒配方乳粉 คืออะไร ?",
    "context": "CREATE TABLE table_18943444_1 (producer VARCHAR, product VARCHAR)"
  },
  {
    "answer": "SELECT MIN(samples_taken) FROM table_18943444_1 WHERE product = \"蒙牛牌嬰幼兒配方乳粉\"",
    "question_en": "What is the smallest amount sampled of product 蒙牛牌嬰幼兒配方乳粉 ?",
    "question_th": "จำนวนตัวอย่างที่น้อยที่สุดของผลิตภัณฑ์ 蒙牛牌嬰幼兒配方乳粉 ?",
    "context": "CREATE TABLE table_18943444_1 (samples_taken INTEGER, product VARCHAR)"
  },
  {
    "answer": "SELECT producer FROM table_18943444_1 WHERE product = \"金必氏牌嬰幼兒配方乳粉\"",
    "question_en": "Who is the producer of 金必氏牌嬰幼兒配方乳粉 ?",
    "question_th": "ใครคือโปรดิวเซอร์ของ 金必氏牌嬰幼兒配方乳粉 ?",
    "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_en": "How many live births per year are there in the period where the life expectancy for females is 73.3?",
    "question_th": "ในช่วงที่อายุขัยของผู้หญิงคือ 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_en": "How many births per year are there for the period with 998 000 deaths per year?",
    "question_th": "มีการเกิดกี่ครั้งต่อปีในช่วงเวลาที่มีผู้เสียชีวิต 998,000 รายต่อปี?",
    "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_en": "What is the highest value for col(m) when prominence(m) is 3755?",
    "question_th": "ค่าสูงสุดสำหรับ col(m) เมื่อความโดดเด่น (m) คือ 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_en": "What is the highest value for col(m) at North Island?",
    "question_th": "ค่า col(m) ของเกาะเหนือมีค่าสูงสุดคือเท่าใด?",
    "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_en": "What is the lowest elevation(m) for the peak Mount Taylor?",
    "question_th": "ระดับความสูงต่ำสุด (m) สำหรับยอดเขา 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_en": "How many values of prominence(m) occur at rank 5?",
    "question_th": "ค่าความโดดเด่น (m) เกิดขึ้นที่อันดับ 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_en": "what ae all of the brazil 100% where the age group is 15-17?",
    "question_th": "อะไรคือบราซิล 100% โดยที่กลุ่มอายุ 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_en": "If the just ratio is 11:8 and the cents size is 560, what is the interval name?",
    "question_th": "หากอัตราส่วนเพียง 11:8 และขนาดเซนต์คือ 560 ชื่อช่วงเวลาคืออะไร",
    "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_en": "If the just cents is 84.46, what is the just ratio?",
    "question_th": "ถ้า just cent คือ 84.46 อัตราส่วน just คืออะไร?",
    "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_en": "If the just cents is 701.96, what is the interval name?",
    "question_th": "หากเพียงเซนต์คือ 701.96 ชื่อช่วงเวลาคืออะไร",
    "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_en": "Name the asian american population 2010 for kansas city-overland park-kansas city, mo-ks csa",
    "question_th": "ตั้งชื่อประชากรชาวอเมริกันเชื้อสายเอเชียในปี 2010 สำหรับแคนซัสซิตี้-โอเวอร์แลนด์พาร์ค-แคนซัสซิตี้, 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_en": "Name the % indian american for asian population 126965",
    "question_th": "ตั้งชื่อ % ชาวอเมริกันเชื้อสายอินเดียสำหรับประชากรชาวเอเชีย 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_en": "Name the % asian american for 23526",
    "question_th": "ตั้งชื่อ % ชาวอเมริกันเชื้อสายเอเชีย สำหรับ 23526",
    "context": "CREATE TABLE table_18963843_1 (_percentage_asian_american VARCHAR, indian_american_population__2010_ VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(population_density__per_km²_) FROM table_189598_7 WHERE name = \"Buffalo Narrows\"",
    "question_en": "When buffalo narrows is the name how many measurements of population density per kilometer squared are there?",
    "question_th": "เมื่อควายแคบเป็นชื่อ มีกี่หน่วยวัดความหนาแน่นของประชากรต่อกิโลเมตรยกกำลังสอง?",
    "context": "CREATE TABLE table_189598_7 (population_density__per_km²_ VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT land_area__km²_ FROM table_189598_7 WHERE population__2011_ = 1233",
    "question_en": "When 1233 is the population of 2011 what is the land area in kilometers squared?",
    "question_th": "เมื่อ 1233 คือประชากรในปี 2554 พื้นที่ดินมีหน่วยเป็นกิโลเมตรยกกำลังสองเป็นเท่าใด",
    "context": "CREATE TABLE table_189598_7 (land_area__km²_ VARCHAR, population__2011_ VARCHAR)"
  },
  {
    "answer": "SELECT MAX(population__2011_) FROM table_189598_7 WHERE land_area__km²_ = \"6.00\"",
    "question_en": "When 6.00 is the land area in kilometers squared what is the highest population of 2011?",
    "question_th": "เมื่อเวลา 6.00 น. พื้นที่ดินเป็นกิโลเมตรยกกำลังสองของประชากรสูงสุดในปี 2554 คือเท่าใด",
    "context": "CREATE TABLE table_189598_7 (population__2011_ INTEGER, land_area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT MIN(population__2011_) FROM table_189598_7 WHERE name = \"Beauval\"",
    "question_en": "When beauval is the name what is the lowest population of 2011?",
    "question_th": "เมื่อ beauval เป็นชื่อประชากรต่ำสุดของปี 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_en": "When 4.5 is the percentage of change how many population counts were made for 2011?",
    "question_th": "เมื่อ 4.5 คือเปอร์เซ็นต์ของการเปลี่ยนแปลง จำนวนประชากรที่เกิดขึ้นในปี 2554",
    "context": "CREATE TABLE table_189598_7 (population__2011_ VARCHAR, change___percentage_ VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_189598_7 WHERE land_area__km²_ = \"14.85\"",
    "question_en": "When 14.85 kilometers squared is the land area what is the name?",
    "question_th": "เมื่อพื้นที่ 14.85 ตารางกิโลเมตรเป็นพื้นที่ ชื่อว่าอะไร?",
    "context": "CREATE TABLE table_189598_7 (name VARCHAR, land_area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT state_and_district_of_columbia FROM table_18958648_1 WHERE overweight__incl_obese__adults = \"60.0%\"",
    "question_en": "What is every state and District of Columbia with 60.0% overweight or obese adults?",
    "question_th": "ทุกรัฐและ District of Columbia ที่มีผู้ใหญ่มีน้ำหนักเกินหรือเป็นโรคอ้วน 60.0% คืออะไร",
    "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_en": "What are all percentages of overweight or obese adults for obesity rank of 21?",
    "question_th": "เปอร์เซ็นต์ของผู้ใหญ่ที่มีน้ำหนักเกินหรือเป็นโรคอ้วนสำหรับโรคอ้วนอันดับที่ 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_en": "What is the least obesity rank for the state of Utah?",
    "question_th": "อันดับโรคอ้วนน้อยที่สุดในรัฐยูทาห์คืออะไร?",
    "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_en": "How many states or District of Columbia have 65.4% overweight or obese adults?",
    "question_th": "มีกี่รัฐหรือ District of Columbia ที่มีผู้ใหญ่ที่มีน้ำหนักเกินหรือเป็นโรคอ้วน 65.4%",
    "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_en": "What is every percentage of overweight or obese adults when 12.4% of children and adolescents are obese?",
    "question_th": "ทุกเปอร์เซ็นต์ของผู้ใหญ่ที่มีน้ำหนักเกินหรือเป็นโรคอ้วนเมื่อ 12.4% ของเด็กและวัยรุ่นเป็นโรคอ้วนคือเท่าใด",
    "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_en": "Who directed the film Gomorra?",
    "question_th": "ใครเป็นผู้กำกับภาพยนตร์เรื่อง 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_en": "What language was spoken in Everlasting Moments?",
    "question_th": "พูดภาษาอะไรในช่วงเวลานิรันดร์?",
    "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_en": "What is the original title of the film submitted by Greece?",
    "question_th": "ชื่อดั้งเดิมของภาพยนตร์ที่กรีซส่งมาคืออะไร?",
    "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_en": "Who directed the film Nuits d'arabie?",
    "question_th": "ใครเป็นผู้กำกับภาพยนตร์เรื่อง 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_en": "What is every value for population (2006) with a Romanian mother tongue?",
    "question_th": "อะไรคือคุณค่าของประชากร (2549) ที่มีภาษาแม่โรมาเนีย?",
    "context": "CREATE TABLE table_189893_1 (population__2006_ VARCHAR, mother_tongue VARCHAR)"
  },
  {
    "answer": "SELECT MIN(population__2011_) FROM table_189893_1",
    "question_en": "What is the lowest population(2011)?",
    "question_th": "จำนวนประชากรต่ำสุด (พ.ศ. 2554) คืออะไร?",
    "context": "CREATE TABLE table_189893_1 (population__2011_ INTEGER)"
  },
  {
    "answer": "SELECT MIN(population__2006_) FROM table_189893_1 WHERE percentage__2011_ = \"1.06%\"",
    "question_en": "What is the lowest population(2006) when there is a 1.06% in 2011?",
    "question_th": "ประชากรต่ำสุด (พ.ศ. 2549) คือเท่าใดเมื่อมี 1.06% ในปี พ.ศ. 2554",
    "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_en": "How many values for population(2011) correspond to a 1.40% in 2006?",
    "question_th": "มีค่าประชากร (2554) เท่ากับ 1.40% ในปี 2549 กี่ค่า",
    "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_en": "What is every value for percentage(2006) with a Polish mother tongue?",
    "question_th": "ทุกค่าของเปอร์เซ็นต์ (2549) ที่มีภาษาแม่ของโปแลนด์คือเท่าใด",
    "context": "CREATE TABLE table_189893_1 (percentage__2006_ VARCHAR, mother_tongue VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_18967450_2 WHERE goals = 48",
    "question_en": "Which team/s have 48 goals total?",
    "question_th": "ทีมไหนมีประตูรวมทั้งหมด 48 ประตู?",
    "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_en": "Who was the contestant eliminated on episode 8 of RW: Key West season?",
    "question_th": "ใครคือผู้เข้าแข่งขันที่ถูกคัดออกในตอนที่ 8 ของ 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_en": "Who was the female contestant on the Original season of Fresh Meat?",
    "question_th": "ใครคือผู้เข้าแข่งขันหญิงในรายการ 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_en": "What was the gender of the contestant on RR: South Pacific season?",
    "question_th": "เพศของผู้เข้าแข่งขันในรายการ RR: South Pacific คืออะไร?",
    "context": "CREATE TABLE table_18974269_1 (gender VARCHAR, original_season VARCHAR)"
  },
  {
    "answer": "SELECT original_season FROM table_18974269_1 WHERE player = \"Evelyn Smith\"",
    "question_en": "What was the season where Evelyn Smith was on?",
    "question_th": "เอเวลิน สมิธอยู่ในฤดูกาลอะไร?",
    "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_en": "How many original Australian performers are there when the Original West End Performer is Jordan Dunne?",
    "question_th": "มีนักแสดงชาวออสเตรเลียดั้งเดิมกี่คนเมื่อ Jordan Dunne นักแสดงต้นฉบับของ West End คือ 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_en": "Who is the Original west end performer for the character Martha?",
    "question_th": "ใครคือนักแสดงต้นฉบับฝั่งตะวันตกของตัวละครมาร์ธา?",
    "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_en": "Who is the original broadway performer for the character Colin Craven?",
    "question_th": "ใครคือนักแสดงบรอดเวย์ดั้งเดิมของตัวละคร 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_en": "Who is the original west end performer for the character Neville Craven?",
    "question_th": "ใครคือนักแสดงฝั่งตะวันตกดั้งเดิมของตัวละครเนวิลล์ คราเวน?",
    "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_en": "Who is the 2005 World AIDS Day Benefit \"Dream\" Cast when the Original Australian performer is Susan-Ann Walker?",
    "question_th": "ใครคือนักแสดง \"ความฝัน\" ที่ได้รับผลประโยชน์ในวันเอดส์โลกปี 2548 ในเมื่อนักแสดงชาวออสเตรเลียดั้งเดิมคือซูซาน-แอน วอล์คเกอร์",
    "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_en": "Who is the Original Australian performer when the Original West End Performer is Linzi Hateley?",
    "question_th": "ใครคือนักแสดงชาวออสเตรเลียดั้งเดิมเมื่อนักแสดง West End ดั้งเดิมคือ 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_en": "Name the minimum wins",
    "question_th": "ตั้งชื่อชัยชนะขั้นต่ำ",
    "context": "CREATE TABLE table_19001175_1 (wins INTEGER)"
  },
  {
    "answer": "SELECT country FROM table_19001175_1 WHERE name = \"Hideki Noda Category:Articles with hCards\"",
    "question_en": "Name the country for hideki noda category:articles with hcards",
    "question_th": "ตั้งชื่อประเทศสำหรับหมวดหมู่ฮิเดกิ โนดะ:บทความที่มี hcard",
    "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_en": "Name the number of poles for stefano livio category:articles with hcards",
    "question_th": "ตั้งชื่อจำนวนเสาสำหรับหมวดหมู่ stefano livio: บทความที่มี hcard",
    "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_en": "Name the points for thierry tassin category:articles with hcards",
    "question_th": "ตั้งชื่อคะแนนสำหรับหมวดหมู่ thierry tassin: บทความที่มี 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_en": "Name the number of wins for michele rugolo category:articles with hcards",
    "question_th": "ตั้งชื่อจำนวนการชนะสำหรับหมวดหมู่ Michele rugolo: บทความที่มี hcard",
    "context": "CREATE TABLE table_19001175_1 (wins VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT l_g FROM table_19018191_5 WHERE player = \"Ermengol\"",
    "question_en": "Name the lg for ermengol",
    "question_th": "ตั้งชื่อ lg สำหรับ ermengol",
    "context": "CREATE TABLE table_19018191_5 (l_g VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT nat FROM table_19018191_5 WHERE total_apps = 27",
    "question_en": "Name the nat for total apps for 27",
    "question_th": "ตั้งชื่อ nat สำหรับแอปทั้งหมดสำหรับ 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_en": "Name the number of apps for total g is 8",
    "question_th": "ตั้งชื่อจำนวนแอปรวม g คือ 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_en": "Name the player for l apps is 27",
    "question_th": "ตั้งชื่อเครื่องเล่นสำหรับ l apps คือ 27",
    "context": "CREATE TABLE table_19018191_5 (player VARCHAR, l_apps VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_19001916_2 WHERE entities = \"EBISA\"",
    "question_en": "What are all the countries where the electric company Ebisa has a presence?",
    "question_th": "ประเทศใดบ้างที่บริษัทไฟฟ้า Ebisa มีอยู่?",
    "context": "CREATE TABLE table_19001916_2 (country VARCHAR, entities VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(country) FROM table_19001916_2 WHERE supply_point = \"Itaipu\"",
    "question_en": "In how many countries is Itaipu a supply point for electricity?",
    "question_th": "Itaipu เป็นจุดจ่ายไฟฟ้าในกี่ประเทศ?",
    "context": "CREATE TABLE table_19001916_2 (country VARCHAR, supply_point VARCHAR)"
  },
  {
    "answer": "SELECT entities FROM table_19001916_2 WHERE supply_point = \"Itaipu\"",
    "question_en": "What are the electric companies drawing power from Itaipu?",
    "question_th": "บริษัทไฟฟ้าใดบ้างที่ดึงอำนาจจากอิไตปู",
    "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_en": "what will the population of Asia be when Latin America/Caribbean is 783 (7.5%)?",
    "question_th": "ประชากรของเอเชียจะเป็นอย่างไรเมื่อละตินอเมริกา/แคริบเบียนมีจำนวน 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_en": "what will be the population of Europe when  Northern America is 482 (4.7%)?",
    "question_th": "ประชากรของยุโรปเมื่ออเมริกาเหนืออยู่ที่ 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_en": "what row is the  population of Latin America/Caribbean when Asia is 4,894 (46.1%)?",
    "question_th": "ประชากรของละตินอเมริกา/แคริบเบียนคือแถวใดเมื่อเอเชียอยู่ที่ 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_en": "what will be the population of Africa when Oceania is 67 (0.6%)",
    "question_th": "ประชากรของแอฟริกาจะเป็นเท่าใดเมื่อโอเชียเนียมีอายุ 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_en": "What is population in the world when 788 (8.1%)?",
    "question_th": "ประชากรในโลกคือเท่าไรเมื่อ 788 (8.1%)?",
    "context": "CREATE TABLE table_19017269_5 (world INTEGER, latin_america_caribbean VARCHAR)"
  },
  {
    "answer": "SELECT MIN(world) FROM table_19017269_5",
    "question_en": "what is the worlds smallest population?",
    "question_th": "ประชากรที่เล็กที่สุดในโลกคืออะไร?",
    "context": "CREATE TABLE table_19017269_5 (world INTEGER)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_19047_2",
    "question_en": "What is the first year in the competition?",
    "question_th": "แข่งขันปีแรกคือปีอะไร?",
    "context": "CREATE TABLE table_19047_2 (year INTEGER)"
  },
  {
    "answer": "SELECT outcome FROM table_19047_2 WHERE opponent_in_the_final = \"Jennifer Capriati\"",
    "question_en": "What is the result in the final versos Jennifer Capriati?",
    "question_th": "ผลลัพธ์ในข้อสุดท้าย 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–6, 7–5, 6–2\"",
    "question_en": "What tournament did she win with a final score of 4–6, 7–5, 6–2?",
    "question_th": "เธอชนะทัวร์นาเมนต์ใดด้วยคะแนนสุดท้าย 4–6, 7–5, 6–2",
    "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_en": "When joj agpangan* is the name how many duration's are there?",
    "question_th": "เมื่อ joj agpangan* เป็นชื่อ มีระยะเวลากี่ช่วง?",
    "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_en": "When davao city is the  home or representative town or province and clash 2010 is the edition how many ages are there?",
    "question_th": "เมื่อเมืองดาเวาเป็นบ้านหรือเมืองตัวแทนหรือจังหวัด และ clash 2010 เป็นฉบับอายุกี่ปี?",
    "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_en": "When winner is the status and  77 is the total days in pbb house what is the edition?",
    "question_th": "เมื่อผู้ชนะคือสถานะ และ 77 คือจำนวนวันทั้งหมดใน pbb house ฉบับอะไร?",
    "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_en": "When days 1-86 is the duration how many names are there?",
    "question_th": "เมื่อวันที่ 1-86 เป็นระยะเวลามีกี่ชื่อ?",
    "context": "CREATE TABLE table_19061741_3 (name VARCHAR, duration VARCHAR)"
  },
  {
    "answer": "SELECT duration FROM table_19061741_3 WHERE name = \"Joaqui Mendoza\"",
    "question_en": "WHen joaqui mendoza is the name how long is the duration?",
    "question_th": "เมื่อ joaqui mendoza เป็นชื่อระยะเวลาเท่าไร?",
    "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_en": "When guiguinto, bulacan is the  home or representative town or province how many names are there?",
    "question_th": "เมื่อกีกีนโต บูลาคัน เป็นเมืองหรือจังหวัดตัวแทน มีกี่ชื่อ?",
    "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_en": "When 3t7458 is the production code who are the writers?",
    "question_th": "เมื่อ 3t7458 เป็นรหัสการผลิต ใครเป็นคนเขียน?",
    "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_en": "When there are  3.39 million u.s viewers what is the production code?",
    "question_th": "เมื่อมีผู้ชมเรา 3.39 ล้านคน รหัสการผลิตคืออะไร?",
    "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_en": "When 3t7461 is the production code who is the director?",
    "question_th": "เมื่อ 3t7461 เป็นรหัสการผลิตใครเป็นผู้กำกับ?",
    "context": "CREATE TABLE table_19068566_1 (directed_by VARCHAR, production_code VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_19072602_1 WHERE match_no = 4",
    "question_en": "What was the score at the end of the match number 4?",
    "question_th": "คะแนนเมื่อจบการแข่งขันนัดที่ 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_en": "What's the match number where Bill Hoffman plays for Team USA?",
    "question_th": "หมายเลขการแข่งขันที่ Bill Hoffman เล่นให้กับทีม 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_en": "How many different scores did Team Europe get when Mika Koivuniemi played for them?",
    "question_th": "Team Europe ได้คะแนนที่แตกต่างกันกี่คะแนนเมื่อ Mika Koivuniemi เล่นให้พวกเขา?",
    "context": "CREATE TABLE table_19072602_1 (score VARCHAR, team_europe VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_19072602_1 WHERE team_europe = \"Tore Torgersen\"",
    "question_en": "What was the score when Tore Torgersen played for Team Europe?",
    "question_th": "เมื่อทอเร่ ทอร์เกอร์เซ่นเล่นให้กับทีมยุโรปได้คะแนนเท่าไหร่?",
    "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_en": "Name the launch date for duration days 174.14",
    "question_th": "ตั้งชื่อวันที่เปิดตัวตามระยะเวลาวันที่ 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_en": "What is the total number of 3rd placed teams when the host is University of Manitoba, Winnipeg, Manitoba?",
    "question_th": "จำนวนทีมอันดับที่ 3 ทั้งหมดเมื่อเจ้าภาพคือ 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_en": "When tim mack is on team usa what is the progressive total?",
    "question_th": "เมื่อทิม แม็กอยู่ในทีมสหรัฐอเมริกา ยอดโปรเกรสซีฟเป็นเท่าใด?",
    "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_en": "When 14 is the match number how many usa teams are there?",
    "question_th": "เมื่อเลข 14 เป็นเลขแมตช์ มีทีม USA กี่ทีม?",
    "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_en": "When chris barnes is on team usa how many europe teams are there?",
    "question_th": "ตอนที่คริส บาร์นส์อยู่ทีมสหรัฐอเมริกา มีทีมยุโรปกี่ทีม?",
    "context": "CREATE TABLE table_19072602_3 (team_europe VARCHAR, team_usa VARCHAR)"
  },
  {
    "answer": "SELECT league FROM table_1908049_1 WHERE year = \"1998/99\"",
    "question_en": "in the year 1998/99 what was the league",
    "question_th": "ในปี 1998/99 ลีกคืออะไร",
    "context": "CREATE TABLE table_1908049_1 (league VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT reg_season FROM table_1908049_1 WHERE year = \"1995/96\"",
    "question_en": "in the year 1995/96 what was the reg. season",
    "question_th": "ในปี 1995/96 มีทะเบียนอะไร ฤดูกาล",
    "context": "CREATE TABLE table_1908049_1 (reg_season VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT league FROM table_1908049_1 WHERE playoffs = \"Semifinals\"",
    "question_en": "in what playoffs the league was in the semifinals",
    "question_th": "ในรอบตัดเชือกที่ลีกอยู่ในรอบรองชนะเลิศ",
    "context": "CREATE TABLE table_1908049_1 (league VARCHAR, playoffs VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_1908049_1 WHERE playoffs = \"Champions\"",
    "question_en": "what was the year where in the playoffs was champions",
    "question_th": "ปีไหนที่เข้ารอบตัดเชือกเป็นแชมป์",
    "context": "CREATE TABLE table_1908049_1 (year VARCHAR, playoffs VARCHAR)"
  },
  {
    "answer": "SELECT playoffs FROM table_1908049_1 WHERE avg_attendance = 3416",
    "question_en": "what where the playoffs where the avg attendance of the team was 3416",
    "question_th": "อะไรในรอบตัดเชือกที่มีผู้เข้าชมเฉลี่ยของทีมอยู่ที่ 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_en": "when did the club Citizen achieve its last top division title?",
    "question_th": "Club Citizen คว้าแชมป์ดิวิชั่นสูงสุดเป็นครั้งสุดท้ายเมื่อใด?",
    "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_en": "How many clubs achieved the 5th position in 2012-13?",
    "question_th": "มีกี่สโมสรที่ได้ตำแหน่งที่ 5 ในปี 2555-2556?",
    "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_en": "When interplanet janet is the episode title who is the music by?",
    "question_th": "เมื่อ interplanet janet เป็นชื่อตอน เพลงของใคร?",
    "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_en": "WHen jaime aff and christine langner are the performers what is the subject?",
    "question_th": "เมื่อไจแอฟและคริสติน แลงเนอร์เป็นนักแสดง หัวข้อเรื่องคืออะไร?",
    "context": "CREATE TABLE table_191105_3 (subject VARCHAR, performed_by VARCHAR)"
  },
  {
    "answer": "SELECT first_aired FROM table_191105_3 WHERE subject = \"Skeletal system\"",
    "question_en": "If skeletal system is the subject when was it first aired?",
    "question_th": "ถ้าระบบโครงกระดูกเป็นเรื่อง ออกอากาศครั้งแรกเมื่อไหร่?",
    "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_en": "When zachary sanders is the performer what is the lowerst first aired?",
    "question_th": "เมื่อแซคารี แซนเดอร์สเป็นนักแสดง รายการใดออกอากาศครั้งแรกที่ต่ำที่สุด?",
    "context": "CREATE TABLE table_191105_3 (first_aired INTEGER, performed_by VARCHAR)"
  },
  {
    "answer": "SELECT winnings FROM table_1909647_2 WHERE wins = 2",
    "question_en": "What's the amount of winnings (in $) in the year with 2 wins?",
    "question_th": "จำนวนเงินชนะ (เป็น $) ในปีที่มีการชนะ 2 ครั้งเป็นเท่าใด?",
    "context": "CREATE TABLE table_1909647_2 (winnings VARCHAR, wins VARCHAR)"
  },
  {
    "answer": "SELECT MIN(starts) FROM table_1909647_2 WHERE avg_finish = \"19.3\"",
    "question_en": "What's the number of starts in the year with 19.3 average finish?",
    "question_th": "จำนวนการออกสตาร์ทในปีโดยจบเฉลี่ย 19.3 เป็นเท่าไหร่?",
    "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_en": "In what year did the #14 FitzBradshaw Racing compete?",
    "question_th": "#14 FitzBradshaw Racing ลงแข่งขันในปีใด",
    "context": "CREATE TABLE table_1909647_2 (year VARCHAR, team_s_ VARCHAR)"
  },
  {
    "answer": "SELECT avg_finish FROM table_1909647_2 WHERE year = 2008",
    "question_en": "What's the average finish in 2008?",
    "question_th": "ค่าเฉลี่ยการจบในปี 2551 เป็นเท่าใด",
    "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_en": "What's #14 FitzBradshaw Racing's top 5 result?",
    "question_th": "ผลการแข่งขัน 5 อันดับแรกของ #14 FitzBradshaw Racing คืออะไร",
    "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_en": "What is the date for the episode performed by Sue Manchester?",
    "question_th": "วันที่แสดงโดย 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_en": "Who is the music by for episode the Elbow Room?",
    "question_th": "เพลงของใครครับ ตอน 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_en": "What is the name of the episode performed by Essra Mohawk",
    "question_th": "ตอนที่แสดงโดย 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_en": "When five is the new channel what is the date of original removal?",
    "question_th": "เมื่อห้าช่องใหม่คือวันที่ลบเดิมคือวันที่เท่าไร?",
    "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_en": "When bbc two is the original channel what is the date of original removal?",
    "question_th": "เมื่อ bbc two เป็นช่องเดิม ถอดต้นฉบับวันที่เท่าไหร่คะ?",
    "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_en": "When bbc two is the new channel what is the date of return?",
    "question_th": "เมื่อ bbc two เป็นช่องใหม่ คืนวันไหนคะ?",
    "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_en": "What's team #2 in the round where team $1 is Ilisiakos?",
    "question_th": "ทีมอันดับ 2 ในรอบนี้คือทีมไหน โดยที่ทีม $1 คืออิลิเซียคอส",
    "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_en": "What's the team #2 in the round where team #1 is Iraklis?",
    "question_th": "ทีม #2 ในรอบนี้คือทีมอะไร โดยทีม #1 คือ อิราคลิส?",
    "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_en": "What's the 1st leg result in the round where team #1 is Iraklis?",
    "question_th": "ผลการแข่งขันเลกแรกในรอบที่ 1 คืออะไร โดยทีมอันดับ 1 คือ อิราคลิส?",
    "context": "CREATE TABLE table_19130829_4 (team__number1 VARCHAR)"
  },
  {
    "answer": "SELECT 2 AS nd_leg FROM table_19130829_4 WHERE team__number2 = \"Panionios\"",
    "question_en": "What's the 2nd leg result in the round where Panionios is team #2?",
    "question_th": "ผลการแข่งขันเลกที่ 2 ในรอบที่พานิโอนิออสอยู่ทีม #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_en": "What's the 2nd leg result in the round where team #1 is Iraklis?",
    "question_th": "ผลเลกที่ 2 ในรอบที่ 2 เป็นอย่างไรบ้าง โดยทีมอันดับ 1 คือ อิราคลิส?",
    "context": "CREATE TABLE table_19130829_4 (team__number1 VARCHAR)"
  },
  {
    "answer": "SELECT MIN(dma) FROM table_19131921_1 WHERE format = \"Rhythmic Contemporary\"",
    "question_en": "What is the dma when the format is rhythmic contemporary?",
    "question_th": "dma คืออะไรเมื่อรูปแบบเป็นจังหวะร่วมสมัย?",
    "context": "CREATE TABLE table_19131921_1 (dma INTEGER, format VARCHAR)"
  },
  {
    "answer": "SELECT frequency FROM table_19131921_1 WHERE station = \"WLFV-FM\"",
    "question_en": "Which frequency is station wlfv-fm?",
    "question_th": "สถานี wlfv-fm คือความถี่ใด?",
    "context": "CREATE TABLE table_19131921_1 (frequency VARCHAR, station VARCHAR)"
  },
  {
    "answer": "SELECT station FROM table_19131921_1 WHERE frequency = \"107.3\"",
    "question_en": "Which station has the frequency of 107.3?",
    "question_th": "สถานีใดมีความถี่ 107.3?",
    "context": "CREATE TABLE table_19131921_1 (station VARCHAR, frequency VARCHAR)"
  },
  {
    "answer": "SELECT MIN(dma) FROM table_19131921_1",
    "question_en": "What is dma?",
    "question_th": "ดีมาคืออะไร?",
    "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_en": "What is the dma of branding is big oldies 107.3 with the station warv-fm?",
    "question_th": "dma ของการสร้างแบรนด์ is big oldies 107.3 กับสถานี 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_en": "Which branding has the format of southern country?",
    "question_th": "ตราสินค้าใดมีรูปแบบเป็นภาคใต้?",
    "context": "CREATE TABLE table_19131921_1 (branding VARCHAR, format VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(方位_direction) FROM table_1912713_2 WHERE 性情_personality = \"Gentle\"",
    "question_en": "What is the total number of gentle personalities?",
    "question_th": "บุคลิกอ่อนโยนมีทั้งหมดกี่คน?",
    "context": "CREATE TABLE table_1912713_2 (方位_direction VARCHAR, 性情_personality VARCHAR)"
  },
  {
    "answer": "SELECT 意義_meaning FROM table_1912713_2 WHERE 性情_personality = \"Gentle\"",
    "question_en": "What is the meaning of a gentle personality?",
    "question_th": "บุคลิกอ่อนโยนหมายถึงอะไร?",
    "context": "CREATE TABLE table_1912713_2 (意義_meaning VARCHAR, 性情_personality VARCHAR)"
  },
  {
    "answer": "SELECT 家族_family FROM table_1912713_2 WHERE 性情_personality = \"Gentle\"",
    "question_en": "Who in the family has a gentle personality?",
    "question_th": "ใครในครอบครัวมีบุคลิกอ่อนโยน?",
    "context": "CREATE TABLE table_1912713_2 (家族_family VARCHAR, 性情_personality VARCHAR)"
  },
  {
    "answer": "SELECT mission_no FROM table_191323_2 WHERE alt_name = \"1962-F01\"",
    "question_en": "Which mission number has alternate name 1962-f01",
    "question_th": "หมายเลขภารกิจใดมีชื่อสำรอง 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_en": "What are the notes of the satellite whose nssdc id number is 1959-002a?",
    "question_th": "บันทึกของดาวเทียมที่มีหมายเลข nssdc id คือ 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_en": "What are the alternative name/s of those satellites whose nssdc id number is 1970-054a?",
    "question_th": "ชื่ออื่นของดาวเทียมที่มีหมายเลข nssdc id คือ 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_en": "What are the alternative names of those satellites where the notes are: mission failed. guidance system failed. no orbit.",
    "question_th": "อะไรคือชื่ออื่นของดาวเทียมเหล่านั้นที่มีหมายเหตุ: ภารกิจล้มเหลว ระบบนำทางล้มเหลว ไม่มีวงโคจร",
    "context": "CREATE TABLE table_191323_2 (alt_name VARCHAR, notes VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_1912276_2 WHERE __750m = \"46.436\"",
    "question_en": "If -750m is 46.436, what is the name of the cyclist? ",
    "question_th": " ถ้า -750 ม. คือ 46.436 นักปั่นจักรยานชื่ออะไร",
    "context": "CREATE TABLE table_1912276_2 (name VARCHAR, __750m VARCHAR)"
  },
  {
    "answer": "SELECT __500m FROM table_1912276_2 WHERE name = \"Theo Bos\"",
    "question_en": "What is the -500 number for Theo Bos?",
    "question_th": "หมายเลข -500 ของธีโอ บอสคืออะไร?",
    "context": "CREATE TABLE table_1912276_2 (__500m VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT __750m FROM table_1912276_2 WHERE __250m = \"18.852\"",
    "question_en": "If the -250m is 18.852, what is the ",
    "question_th": "ถ้า -250m คือ 18.852 จะได้อะไร",
    "context": "CREATE TABLE table_1912276_2 (__750m VARCHAR, __250m VARCHAR)"
  },
  {
    "answer": "SELECT MAX(rank) FROM table_1912276_2 WHERE __750m = \"45.505\"",
    "question_en": "If -750 is 45.505, what is the maximum rank?",
    "question_th": "ถ้า -750 คือ 45.505 อันดับสูงสุดคือเท่าไร?",
    "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_en": "Where are there 25 episodes in Catfights and Brawls?",
    "question_th": "Catfights and Brawls มี 25 ตอนอยู่ที่ไหน",
    "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_en": "Name the missouri for 2002",
    "question_th": "ตั้งชื่อรัฐมิสซูรีสำหรับปี 2002",
    "context": "CREATE TABLE table_19153842_1 (missouri VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT MIN(bangladeshi_population) FROM table_19149550_9 WHERE rank = 7",
    "question_en": "How many Bangladeshi citizens are there in the borough ranked at number 7?",
    "question_th": "มีพลเมืองบังคลาเทศกี่คนในเขตเลือกตั้งอันดับที่ 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_en": "What's the London borough with 7797 Pakistani citizens?",
    "question_th": "เขตลอนดอนที่มีพลเมืองปากีสถาน 7797 คนคืออะไร",
    "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_en": "How many boroughs with different ranks have a total Asian population of 33338?",
    "question_th": "มีกี่เมืองที่มีอันดับต่างกันและมีประชากรเอเชียทั้งหมด 33,338 คน",
    "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_en": "What's the Chinese population in the borough with 26347 Pakistanis?",
    "question_th": "ประชากรชาวจีนในเขตเลือกตั้งที่มีชาวปากีสถาน 26,347 คนคือเท่าใด",
    "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_en": "How many Asians live in the borough with 8109 Chinese population?",
    "question_th": "มีชาวเอเชียกี่คนที่อาศัยอยู่ในเขตเลือกตั้งนี้ โดยมีประชากรชาวจีน 8,109 คน",
    "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_en": "How many Bangladeshi citizens live in the borough ranked at number 14?",
    "question_th": "มีพลเมืองบังคลาเทศกี่คนที่อาศัยอยู่ในเขตเลือกตั้งอันดับที่ 14",
    "context": "CREATE TABLE table_19149550_9 (bangladeshi_population INTEGER, rank VARCHAR)"
  },
  {
    "answer": "SELECT africa FROM table_1914090_2 WHERE australia = 94615",
    "question_en": "How many members did Africa have the year that Australia had 94615?",
    "question_th": "แอฟริกามีสมาชิกกี่คน โดยปีที่ออสเตรเลียมี 94615?",
    "context": "CREATE TABLE table_1914090_2 (africa VARCHAR, australia VARCHAR)"
  },
  {
    "answer": "SELECT europe FROM table_1914090_2 WHERE america = 403892",
    "question_en": "How many members did Europe have the year that America had 403892?",
    "question_th": "ยุโรปมีสมาชิกกี่คน โดยปีที่อเมริกามี 403892?",
    "context": "CREATE TABLE table_1914090_2 (europe VARCHAR, america VARCHAR)"
  },
  {
    "answer": "SELECT MIN(europe) FROM table_1914090_2 WHERE africa = 7375139",
    "question_en": "What is the minimum number of members Europe had at the time Africa had 7375139?",
    "question_th": "จำนวนสมาชิกขั้นต่ำที่ยุโรปมี ณ เวลาที่แอฟริกามี 7375139 คือเท่าใด",
    "context": "CREATE TABLE table_1914090_2 (europe INTEGER, africa VARCHAR)"
  },
  {
    "answer": "SELECT MIN(africa) FROM table_1914090_2 WHERE year = 2001",
    "question_en": "What is the minimum number of members Africa had in 2001?",
    "question_th": "จำนวนสมาชิกขั้นต่ำที่แอฟริกามีในปี 2544 คือเท่าใด",
    "context": "CREATE TABLE table_1914090_2 (africa INTEGER, year VARCHAR)"
  },
  {
    "answer": "SELECT MAX(europe) FROM table_1914090_2 WHERE australia = 94615",
    "question_en": "What is the most members Europe had when Australia had 94615?",
    "question_th": "ยุโรปมีสมาชิกมากที่สุดเมื่อออสเตรเลียมี 94615 คืออะไร?",
    "context": "CREATE TABLE table_1914090_2 (europe INTEGER, australia VARCHAR)"
  },
  {
    "answer": "SELECT MAX(year) FROM table_1914090_2 WHERE europe = 471895",
    "question_en": "What is the latest year that Europe had 471895?",
    "question_th": "ปีล่าสุดที่ยุโรปมี 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_en": "What's the bus width (in bit) of the model whose core is 650 MHz?",
    "question_th": "ความกว้างบัส (เป็นบิต) ของรุ่นที่มีคอร์คือ 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_en": "What's the directx of the model with code name RV770 PRO and a core bigger than 650.0 MHz?",
    "question_th": "directx ของรุ่นที่มีชื่อรหัส RV770 PRO และคอร์ที่ใหญ่กว่า 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_en": "What are the notes recorded for the model HIS HD4850 (512MB)?",
    "question_th": "บันทึกย่อของรุ่น HIS HD4850 (512MB) มีอะไรบ้าง?",
    "context": "CREATE TABLE table_19161046_1 (notes VARCHAR, model VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_19161605_2 WHERE _number = 14",
    "question_en": "What is the title of episode number 14?",
    "question_th": "ตอนที่ 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_en": "If the net worth of fixed assets is 621, what is the current ratio?",
    "question_th": "หากมูลค่าสุทธิของสินทรัพย์ถาวรคือ 621 อัตราส่วนสภาพคล่องจะเป็นเท่าใด",
    "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_en": "Name the score for opponent of cleveland",
    "question_th": "ตั้งชื่อคะแนนให้คู่ต่อสู้ของคลีฟแลนด์",
    "context": "CREATE TABLE table_19169116_8 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(played) FROM table_19179465_1 WHERE club = \"Featherstone Rovers\"",
    "question_en": "Featherstone Rovers club played a total of how many games?",
    "question_th": "สโมสร Featherstone Rovers เล่นทั้งหมดกี่เกม?",
    "context": "CREATE TABLE table_19179465_1 (played VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT MIN(lost) FROM table_19179465_1 WHERE points = 34",
    "question_en": "How many games were lost when the club got 34 points",
    "question_th": "แพ้ไปกี่เกมเมื่อสโมสรได้ 34 แต้ม",
    "context": "CREATE TABLE table_19179465_1 (lost INTEGER, points VARCHAR)"
  },
  {
    "answer": "SELECT bp FROM table_19179465_1 WHERE club = \"Halifax\"",
    "question_en": "What was the B.P. of club Halifax?",
    "question_th": "BP ของสโมสรแฮลิแฟกซ์คืออะไร?",
    "context": "CREATE TABLE table_19179465_1 (bp VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_1920271_2 WHERE championship = \"French Open\"",
    "question_en": "What is the first year she played in the french open?",
    "question_th": "เธอเล่นเฟรนช์โอเพ่นปีแรกคือปีใด?",
    "context": "CREATE TABLE table_1920271_2 (year INTEGER, championship VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(opponents) FROM table_1920271_2 WHERE score = \"6–7(5), 6–2, 6–3\"",
    "question_en": "How many times was the score 6–7(5), 6–2, 6–3?",
    "question_th": "คะแนน 6–7(5), 6–2, 6–3 กี่ครั้ง?",
    "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_en": "Who was her partner at the US Open and they were runner-up?",
    "question_th": "ใครคือคู่หูของเธอที่ US Open และพวกเขาได้รองแชมป์?",
    "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_en": "Who was her partner at the US Open and they were runner-up?",
    "question_th": "ใครคือคู่หูของเธอที่ US Open และพวกเขาได้รองแชมป์?",
    "context": "CREATE TABLE table_1920271_3 (partner VARCHAR, outcome VARCHAR, championship VARCHAR)"
  },
  {
    "answer": "SELECT partner FROM table_1920271_3 WHERE surface = \"Clay\"",
    "question_en": "Who did she play with on clay?",
    "question_th": "เธอเล่นกับใครบนดินเหนียว?",
    "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–3, 4–6, 11–9\"",
    "question_en": "state the number of surface where championship is australian open and score in the final is 6–3, 4–6, 11–9",
    "question_th": "ระบุจำนวนพื้นผิวที่การแข่งขันชิงแชมป์ออสเตรเลียนโอเพ่นและทำคะแนนในรอบชิงชนะเลิศคือ 6–3, 4–6, 11–9",
    "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ánchez Vicario Todd Woodbridge\"",
    "question_en": "which championship had arantxa sánchez vicario todd woodbridge as opponents in the final ",
    "question_th": " ซึ่งแชมป์เปี้ยนชิพมี arantxa sánchez vicario todd woodbridge เป็นคู่ต่อสู้ในรอบชิงชนะเลิศ",
    "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_en": "what is the surface of the final which had score 6-2, 6-3",
    "question_th": "พื้นผิวของรอบชิงชนะเลิศที่มีสกอร์ 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á Todd Woodbridge\"",
    "question_en": "when were helena suková todd woodbridge the opponents in the final",
    "question_th": "เฮเลนา ซูโควา ทอดด์ วูดบริดจ์ เอาชนะคู่ต่อสู้ในรอบชิงชนะเลิศเมื่อใด",
    "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á Tom Nijssen\"",
    "question_en": "which championship had helena suková tom nijssen as opponents in the final and nicole provis as partner, the surface was hard and the outcome was winner",
    "question_th": "ซึ่งการแข่งขันชิงแชมป์มี helena suková tom nijssen เป็นคู่ต่อสู้ในรอบชิงชนะเลิศและมี nicole provis เป็นคู่หู พื้นผิวยากและผลลัพธ์เป็นผู้ชนะ",
    "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_en": "when was the last performance of the first performance on 11/15/1909",
    "question_th": "การแสดงครั้งสุดท้ายของการแสดงครั้งแรกเมื่อ 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_en": "how many first performances where performer is wilfred engelman category:articles with hcards",
    "question_th": "จำนวนการแสดงครั้งแรกที่นักแสดงคือ วิลเฟรด เองเกลแมน หมวดหมู่:บทความที่มี 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_en": "who was the performer that did last performance on 04/08/1963",
    "question_th": "ซึ่งเป็นนักแสดงที่ได้แสดงครั้งสุดท้ายเมื่อ 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_en": "what is the first performance of the last performance on 03/29/1957",
    "question_th": "การแสดงครั้งแรกของการแสดงครั้งสุดท้ายเมื่อวันที่ 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_en": "what is the last performance of leon varkas category:articles with hcards",
    "question_th": "ประสิทธิภาพล่าสุดของหมวดหมู่ Leon Varkas คืออะไร:บทความที่มี 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_en": "How many different finales had the English title \"Beyond the Realm of Conscience\"?",
    "question_th": "มีตอนจบที่แตกต่างกันกี่เรื่องที่มีชื่อภาษาอังกฤษว่า \"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 = \"古靈精探B\"",
    "question_en": "What was the maximum average of the episode with a Chinese title 古靈精探b?",
    "question_th": "ค่าเฉลี่ยสูงสุดของตอนที่มีชื่อภาษาจีน 古靈精探b คือเท่าใด",
    "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_en": "How was the episode seen by 2.26 million HK viewers ranked?",
    "question_th": "ตอนนี้มีผู้ชม HK 2.26 ล้านคนในการจัดอันดับอย่างไร",
    "context": "CREATE TABLE table_19210674_1 (rank VARCHAR, hk_viewers VARCHAR)"
  },
  {
    "answer": "SELECT finale FROM table_19210674_1 WHERE rank = 7",
    "question_en": "What is the finale number ranked at number 7?",
    "question_th": "หมายเลขสุดท้ายอันดับที่ 7 คืออะไร?",
    "context": "CREATE TABLE table_19210674_1 (finale VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT conflict FROM table_1921_1 WHERE location = \"Iraq\"",
    "question_en": "What is every conflict in Iraq?",
    "question_th": "ความขัดแย้งในอิรักคืออะไร?",
    "context": "CREATE TABLE table_1921_1 (conflict VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT branches_involved FROM table_1921_1 WHERE location = \"Afghanistan\"",
    "question_en": "What is every branch involved in Afghanistan?",
    "question_th": "ทุกสาขาที่เกี่ยวข้องในอัฟกานิสถานมีอะไรบ้าง?",
    "context": "CREATE TABLE table_1921_1 (branches_involved VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT conflict FROM table_1921_1 WHERE location = \"Yemen\"",
    "question_en": "Which conflicts took place in Yemen?",
    "question_th": "ความขัดแย้งใดเกิดขึ้นในเยเมน?",
    "context": "CREATE TABLE table_1921_1 (conflict VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(start_of_conflict) FROM table_1921_1 WHERE location = \"Afghanistan\"",
    "question_en": "How many conflicts started in Afghanistan?",
    "question_th": "ความขัดแย้งเริ่มขึ้นในอัฟกานิสถานกี่ครั้ง?",
    "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_en": "How many u.s. viewers (million) have the number 16?",
    "question_th": "พวกเราคนดู(ล้าน)คนมีเลข 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_en": "How many u.s. viewers  (million) have the production code of 5.09?",
    "question_th": "พวกเราคนดู (ล้าน) คนมีรหัสการผลิต 5.09 กี่คน?",
    "context": "CREATE TABLE table_19229713_6 (us_viewers__million_ VARCHAR, production_code VARCHAR)"
  },
  {
    "answer": "SELECT MAX(of_which_currently_forests), _km² FROM table_19242_5 WHERE land_formation = \"Middle Prut Valley\"",
    "question_en": "When middle prut valley is the land formation what is the highest of which currently forests, km² ?",
    "question_th": "เมื่อหุบเขาปรุตกลางเป็นการก่อตัวของดิน อะไรคือจุดสูงสุดของป่าในปัจจุบัน ตารางกิโลเมตร ?",
    "context": "CREATE TABLE table_19242_5 (_km² VARCHAR, of_which_currently_forests INTEGER, land_formation VARCHAR)"
  },
  {
    "answer": "SELECT MIN(series_no) FROM table_19236587_4 WHERE season_no = 2",
    "question_en": "What's the series number of the episode with season number 2?",
    "question_th": "ตอนที่ 2 ซีซั่น 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_en": "What's the series number of the episode seen by 2.43 million viewers in the UK?",
    "question_th": "หมายเลขซีรีส์ของตอนที่ผู้ชม 2.43 ล้านคนในสหราชอาณาจักรเห็นคือเท่าใด",
    "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_en": "How many different original air dates does the episode with series number 13 have?",
    "question_th": "ตอนที่ซีรีส์ 13 มีกำหนดออกอากาศดั้งเดิมที่แตกต่างกันกี่วัน",
    "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_en": "Name the number for viewers being 1.87",
    "question_th": "ตั้งชื่อเลขให้คนดู 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_en": "Name the production code for viewers for 1.69",
    "question_th": "ตั้งชื่อรหัสการผลิตสำหรับผู้ดูสำหรับ 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_en": "whare are al of the launche dates where th carrier is orange and the up is 5.76 mbit/s",
    "question_th": "มีวันเปิดตัวอะไรบ้างโดยที่ผู้ให้บริการรายนั้นเป็นสีส้มและสูงสุดคือ 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_en": "With the country of Sweden and the result is out, what is the song?",
    "question_th": "กับประเทศสวีเดนและผลออกมาคือเพลงอะไรคะ?",
    "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_en": "If the English translation is hello girl, what was the language?",
    "question_th": "ถ้าแปลเป็นภาษาอังกฤษว่า hello girl เป็นภาษาอะไรคะ?",
    "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_en": "What was the connection speed when launched on 07.06.2005?",
    "question_th": "ความเร็วในการเชื่อมต่อเมื่อเปิดตัวเมื่อวันที่ 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_en": "When the carrier is idc, what are the frequencies?",
    "question_th": "เมื่อผู้ให้บริการเป็น idc ความถี่จะเป็นเท่าใด?",
    "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_en": "When the launch date is 14.09.2005, and the frequency is 900mhz and 1800mhz, how many carriers are there?",
    "question_th": "เมื่อวันเปิดตัวคือวันที่ 14.09.2548 และความถี่คือ 900mhz และ 1800mhz จะมีผู้ให้บริการกี่ราย?",
    "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_en": "How many standards are there, when the launch date was 17.04.2006?",
    "question_th": "มีกี่มาตรฐาน วันที่เปิดตัวคือ 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_en": "Name the 2 car sets for 622 ",
    "question_th": " ตั้งชื่อรถ 2 คัน 622",
    "context": "CREATE TABLE table_19255192_2 (total_vehicles VARCHAR)"
  },
  {
    "answer": "SELECT MAX(3 AS _car_sets) FROM table_19255192_2",
    "question_en": "Name the most 3 car sets",
    "question_th": "ตั้งชื่อชุดรถได้มากที่สุด 3 ชุด",
    "context": "CREATE TABLE table_19255192_2 (Id VARCHAR)"
  },
  {
    "answer": "SELECT MIN(4 AS _car_sets) FROM table_19255192_2",
    "question_en": "Name the least 4 car sets",
    "question_th": "ตั้งชื่อชุดรถอย่างน้อย 4 ชุด",
    "context": "CREATE TABLE table_19255192_2 (Id VARCHAR)"
  },
  {
    "answer": "SELECT _percentage FROM table_19260_1 WHERE _percentage_core_moldova = \"4.36_percentage\"",
    "question_en": "Name the % for core moldova being 4.36%",
    "question_th": "ตั้งชื่อ % สำหรับคอร์มอลโดวาเป็น 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_en": "Name the % for total being 57613",
    "question_th": "ตั้งชื่อ % สำหรับผลรวมเป็น 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_en": "Name the total for % core moldova for 4.36%",
    "question_th": "ตั้งชื่อผลรวมสำหรับ % คอร์มอลโดวาเป็น 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_en": "What was the waveform of the encoding with a bit rate of 6.203?",
    "question_th": "รูปคลื่นของการเข้ารหัสด้วยอัตราบิต 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_en": "What was the informational CVBS Lines of the encoding with max character of 32 and has B (global) standard?",
    "question_th": "CVBS Lines ที่ให้ข้อมูลของการเข้ารหัสที่มีอักขระสูงสุด 32 ตัวและมีมาตรฐาน B (สากล) คืออะไร",
    "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_en": "How many color systems has a bit rate of 5.734?",
    "question_th": "มีกี่ระบบสีที่มีอัตราบิต 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_en": "What was the max character (per page row) of the encoding with a bit rate of 6.203?",
    "question_th": "การเข้ารหัสด้วยอัตราบิต 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_en": "With U.S. viewers of 9.32 million, what is the production code?",
    "question_th": "ด้วยผู้ชมสหรัฐ 9.32 ล้านคน รหัสการผลิตคืออะไร?",
    "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_en": "For episode number 7, what was the numbers of original air dates?",
    "question_th": "ตอนที่ 7 เดิมออกอากาศวันที่เท่าไหร่คะ?",
    "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_en": "How many millions of viewers were there for number 6?",
    "question_th": "อันดับ 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_en": "How many teams won $2,089,556?",
    "question_th": "มีกี่ทีมที่ชนะรางวัล $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_en": "HOw many top 5 starts did the team with an average start of 17.7 have?",
    "question_th": "ทีมที่ออกสตาร์ทเฉลี่ย 17.7 อันดับแรกมีกี่ทีม?",
    "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_en": "Who is team 1 when team 2 is koper?",
    "question_th": "ทีม 1 คือใคร เมื่อทีม 2 เป็นโคเปอร์?",
    "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_en": "What is the tie when team 2 is koper?",
    "question_th": "เสมอกันเมื่อทีม 2 เป็นโคเปอร์คืออะไร?",
    "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_en": "How many 1st leg have team 1 ofk belgrade?",
    "question_th": "ทีม 1 ofk เบลเกรดมีกี่เลกแรก?",
    "context": "CREATE TABLE table_19294812_2 (team_1 VARCHAR)"
  },
  {
    "answer": "SELECT tie_no FROM table_19294812_2 WHERE team_1 = \"Borac Banja Luka\"",
    "question_en": "How many tie no have team 1 as borac banja luka?",
    "question_th": "ไม่มีทีมที่ 1 เสมอกับ โบรัค บานยา ลูก้า กี่ทีม?",
    "context": "CREATE TABLE table_19294812_2 (tie_no VARCHAR, team_1 VARCHAR)"
  },
  {
    "answer": "SELECT language FROM table_1930857_1 WHERE grades = \"4-12\"",
    "question_en": "What's the language in the school teaching grades 4-12?",
    "question_th": "โรงเรียนสอนภาษาอะไรในเกรด 4-12?",
    "context": "CREATE TABLE table_1930857_1 (language VARCHAR, grades VARCHAR)"
  },
  {
    "answer": "SELECT language FROM table_1930857_1 WHERE year_founded = \"1949\"",
    "question_en": "What's the language of the school founded in 1949?",
    "question_th": "โรงเรียนที่ก่อตั้งในปี 1949 ใช้ภาษาอะไร",
    "context": "CREATE TABLE table_1930857_1 (language VARCHAR, year_founded VARCHAR)"
  },
  {
    "answer": "SELECT gender FROM table_1930857_1 WHERE year_founded = \"1894\"",
    "question_en": "What's the gender of the students taught in the school founded in 1894?",
    "question_th": "นักเรียนสอนในโรงเรียนที่ก่อตั้งเมื่อปี พ.ศ. 2437 เป็นเพศอะไร",
    "context": "CREATE TABLE table_1930857_1 (gender VARCHAR, year_founded VARCHAR)"
  },
  {
    "answer": "SELECT language FROM table_1930857_1 WHERE year_founded = \"1874\"",
    "question_en": "What's the language of classes in the school founded in 1874?",
    "question_th": "ชั้นเรียนในโรงเรียนที่ก่อตั้งในปี 1874 ใช้ภาษาอะไร",
    "context": "CREATE TABLE table_1930857_1 (language VARCHAR, year_founded VARCHAR)"
  },
  {
    "answer": "SELECT MIN(current) FROM table_19312274_2",
    "question_en": "what is the least current",
    "question_th": "กระแสน้อยที่สุดคือเท่าไร",
    "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_en": "how many total where last/current driver(s) is narain karthikeyan ( 2010 )",
    "question_th": "มีทั้งหมดกี่คนที่คนขับคนสุดท้าย/คนปัจจุบันคือ 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_en": "How many numbers were recorded for Qatari female when Qatari male was 97?",
    "question_th": "มีการบันทึกตัวเลขจำนวนเท่าใดสำหรับผู้หญิงชาวกาตาร์ เมื่อชายชาวกาตาร์อายุ 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_en": "How many years were there 97 qatari male births?",
    "question_th": "ผู้ชายกาตาร์ 97 คนมีบุตรกี่ปี?",
    "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_en": "What is the national cup statistics when the Championship is 21 app / 6 goals?",
    "question_th": "สถิติบอลถ้วยระดับประเทศเป็นอย่างไรเมื่อแชมป์ 21 แอป / 6 ประตู?",
    "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ško , Slovenia Matije Gubca Stadium\"",
    "question_en": "Who came in 3rd place in Krško , Slovenia Matije Gubca Stadium",
    "question_th": "ที่เข้ามาเป็นอันดับ 3 ใน Krško , สนามกีฬา Matije Gubca ของสโลวีเนีย",
    "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_en": "How many placed 4th on April 25?",
    "question_th": "มีกี่คนที่อยู่ในอันดับที่ 4 ในวันที่ 25 เมษายน?",
    "context": "CREATE TABLE table_19317584_2 (date VARCHAR)"
  },
  {
    "answer": "SELECT cause_of_destruction FROM table_19342760_1 WHERE name = \"Mausoleum at Halicarnassus\"",
    "question_en": "What caused the collapse of the Mausoleum at Halicarnassus?",
    "question_th": "อะไรทำให้เกิดการล่มสลายของสุสานที่ 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_en": "How was the Temple of Artemis at Ephesus destroyed?",
    "question_th": "วิหารอาร์เทมิสในเมืองเอเฟซัสถูกทำลายอย่างไร?",
    "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_en": "Who came as a replacement in Sheffield United?",
    "question_th": "ใครเข้ามาแทนเชฟฟิลด์ ยูไนเต็ด?",
    "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_en": "When was the new manager of the team on 21st position appointed?",
    "question_th": "ผู้จัดการทีมคนใหม่ในตำแหน่งที่ 21 ได้รับการแต่งตั้งเมื่อใด?",
    "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_en": "What was Gary Megson's manner of departure?",
    "question_th": "ลักษณะการจากไปของ Gary Megson คืออะไร?",
    "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_en": "When did the old manager vacate his position in Plymouth Argyle?",
    "question_th": "ผู้จัดการทีมคนเก่าพ้นจากตำแหน่งในพลีมัธ อาร์ไกล์ เมื่อไร?",
    "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_en": "Name the class 1-200 for university of hertfordshire for university of warwick",
    "question_th": "ตั้งชื่อชั้นเรียน 1-200 สำหรับ University of Hertfordshire สำหรับ 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_en": "Name the class 3 for silverstone rmit university",
    "question_th": "ตั้งชื่อคณะที่ 3 ของมหาวิทยาลัย Silverstone rmit",
    "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_en": "When 4th, great lakes is the regular season what is the league?",
    "question_th": "ตอนที่ 4 ทะเลสาบใหญ่เป็นฤดูกาลปกติ ลีกคืออะไร?",
    "context": "CREATE TABLE table_1939235_1 (league VARCHAR, regular_season VARCHAR)"
  },
  {
    "answer": "SELECT MAX(division) FROM table_1939235_1 WHERE regular_season = \"5th\"",
    "question_en": "When 5th is the regular season what is the highest season?",
    "question_th": "เมื่อฤดูกาลที่ 5 เป็นฤดูกาลปกติ ฤดูกาลสูงสุดคืออะไร?",
    "context": "CREATE TABLE table_1939235_1 (division INTEGER, regular_season VARCHAR)"
  },
  {
    "answer": "SELECT playoffs FROM table_1939235_1 WHERE open_cup = \"2nd Round\"",
    "question_en": "When it's the 2nd round of the open cup what is the playoffs?",
    "question_th": "เมื่อถึงรอบ 2 ถ้วยเปิด รอบตัดเชือกจะเป็นเช่นไร?",
    "context": "CREATE TABLE table_1939235_1 (playoffs VARCHAR, open_cup VARCHAR)"
  },
  {
    "answer": "SELECT league FROM table_1939202_2 WHERE avg_attendance = 1452",
    "question_en": "What league has an average attendance of 1452?",
    "question_th": "ลีกใดมีผู้ชมเฉลี่ย 1,452 คน?",
    "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_en": "What year at the US Open Cup quarterfinals, were the playoffs in the semifinals for the USL second division?",
    "question_th": "ปีใดที่ US Open Cup รอบก่อนรองชนะเลิศ มีรอบตัดเชือกในรอบรองชนะเลิศของ USL ดิวิชั่น 2 หรือไม่",
    "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_en": "Name the original air date for production code of 3t7501",
    "question_th": "ตั้งชื่อวันออกอากาศเดิมสำหรับรหัสการผลิต 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_en": "Name the title directed by charles beeson by jeremy carver",
    "question_th": "ตั้งชื่อชื่อเรื่องที่กำกับโดย charles beeson โดย 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_en": "Name the directed by for production code for 3t7509",
    "question_th": "ตั้งชื่อกำกับโดยสำหรับรหัสการผลิตสำหรับ 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_en": "What's the season number of the episode originally aired on October 14, 2008?",
    "question_th": "ตอนที่ออกอากาศครั้งแรกเมื่อวันที่ 14 ตุลาคม 2551 มีจำนวนซีซันใด",
    "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_en": "What's the title of the episode originally aired on September 23, 2008?",
    "question_th": "ตอนที่ออกอากาศเมื่อวันที่ 23 กันยายน 2551 ชื่อว่าอะไร",
    "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_en": "What's the series number of the episode seen by 9.35 million people in the US?",
    "question_th": "หมายเลขซีรีส์ของตอนที่มีผู้ชม 9.35 ล้านคนในสหรัฐอเมริกาคือเท่าใด",
    "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_en": "What's the title of the episode with production code 10018?",
    "question_th": "ตอนที่มีรหัสการผลิต 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_en": "How many millions of people in the US saw the episode with season number 1?",
    "question_th": "มีกี่ล้านคนในสหรัฐอเมริกาที่ดูตอนนี้กับซีซั่นที่ 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_en": "How many places has the rank changed since 2006, for Clane? ",
    "question_th": " อันดับมีการเปลี่ยนแปลงไปกี่ตำแหน่งตั้งแต่ปี 2549 สำหรับ 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_en": "In what counties is the 2011 population 17908?",
    "question_th": "ประชากร 17908 ปี 2554 อยู่ในมณฑลใด",
    "context": "CREATE TABLE table_1940144_1 (county VARCHAR, population_2011 VARCHAR)"
  },
  {
    "answer": "SELECT urban_area FROM table_1940144_1 WHERE population_2011 = 21561",
    "question_en": "In what urban area is the 2011 population 21561? ",
    "question_th": " ประชากรปี 2554 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_en": "How many places did the rank change since 22006 for County Leitrim? ",
    "question_th": "อันดับของ County Leitrim เปลี่ยนแปลงไปกี่แห่งตั้งแต่ปี 22006",
    "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_en": "Which urban area has a 2011 population of 5010? ",
    "question_th": " เขตเมืองใดมีประชากรในปี 2554 จำนวน 5,010 คน",
    "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_en": "wich were the events when bout 2 was zhang ( chn ) l 0-5?",
    "question_th": "เหตุการณ์อะไรคือตอนที่ 2 จาง ( 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_en": "Which were the bout 1 when the bout 5 was andreev ( rus ) w 5-2?",
    "question_th": "ไฟต์ไหนคือไฟต์ที่ 1 เมื่อไฟต์ที่ 5 คือ andreev (rus) ชนะ 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_en": "when Sanchez ( esp ) w 5-0 were the bout 6, which were the class?",
    "question_th": "เมื่อซานเชซ (โดยเฉพาะ) ชนะ 5-0 เป็นไฟต์ที่ 6 ซึ่งเป็นคลาสไหน?",
    "context": "CREATE TABLE table_19398910_4 (class VARCHAR, bout_6 VARCHAR)"
  },
  {
    "answer": "SELECT MIN(attempts) FROM table_19418696_3 WHERE name = \"Bobby Layne\"",
    "question_en": "How many attempts for Bobby Layne?",
    "question_th": "บ๊อบบี้ เลย์น พยายามกี่ครั้ง?",
    "context": "CREATE TABLE table_19418696_3 (attempts INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT MAX(interceptions) FROM table_19418696_3",
    "question_en": "What is the highest number of interceptions?",
    "question_th": "จำนวนการสกัดกั้นสูงสุดคือเท่าไร?",
    "context": "CREATE TABLE table_19418696_3 (interceptions INTEGER)"
  },
  {
    "answer": "SELECT MAX(yards) FROM table_19418696_3 WHERE name = \"Bobby Layne\"",
    "question_en": "How many total yards for Bobby Layne?",
    "question_th": "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_en": "Which QB had a rating of 72.3?",
    "question_th": "QB ใดมีคะแนน 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_en": "How many QB ratings for the player with 1069 completions?",
    "question_th": "เรตติ้ง QB สำหรับผู้เล่นที่สำเร็จ 1,069 ครั้งมีเท่าใด",
    "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_en": "How many yardage figures for the player with 72.3 QB rating?",
    "question_th": "จำนวนระยะสำหรับผู้เล่นที่มีเรตติ้ง 72.3 QB?",
    "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_en": "In how many locations was the game against Barcelona Dragons played?",
    "question_th": "เกมกับ Barcelona Dragons เล่นในสถานที่กี่แห่ง?",
    "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_en": "how many posiitions did saudi arabia land on",
    "question_th": "ซาอุดีอาระเบียขึ้นตำแหน่งได้กี่ตำแหน่ง",
    "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_en": "what is the play-off in group stage 4 and clubs is 12",
    "question_th": "รอบเพลย์ออฟในรอบแบ่งกลุ่ม 4 และสโมสรคือ 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_en": "which group stage was there 0 play-offs and 12 clubs played in it",
    "question_th": "รอบแบ่งกลุ่มใดที่มี 0 รอบเพลย์ออฟ และมี 12 สโมสรเล่นอยู่ในนั้น",
    "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_en": "which club in group stage 4 had member association iran",
    "question_th": "สโมสรใดในกลุ่มสเตจ 4 มีสมาคมสมาชิกอิหร่าน",
    "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_en": "who write the episode that have 14.39 million viewers",
    "question_th": "ผู้เขียนตอนที่มีผู้ชม 14.39 ล้านคน",
    "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_en": "who directed the episode that have 14.59 million viewers",
    "question_th": "ผู้กำกับตอนที่มีผู้ชม 14.59 ล้านคน",
    "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_en": "who write the episode 5 in no. in season",
    "question_th": "ผู้เขียนตอนที่ 5 ใน no. ในฤดู",
    "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_en": "How many clubs are there in the Korea Republic?",
    "question_th": "สาธารณรัฐเกาหลีมีกี่สโมสร?",
    "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_en": "At what position is the association with 279 points?",
    "question_th": "สมาคมมี 279 คะแนน อยู่ตำแหน่งไหน?",
    "context": "CREATE TABLE table_19412902_2 (pos INTEGER, points__total_500_ VARCHAR)"
  },
  {
    "answer": "SELECT MAX(pos) FROM table_19412902_2",
    "question_en": "What is the lowest position?",
    "question_th": "ตำแหน่งต่ำสุดคืออะไร?",
    "context": "CREATE TABLE table_19412902_2 (pos INTEGER)"
  },
  {
    "answer": "SELECT MIN(year_opened) FROM table_1942683_1",
    "question_en": "What is the earliest year a house opened?",
    "question_th": "บ้านเปิดปีแรกสุดคือปีไหน?",
    "context": "CREATE TABLE table_1942683_1 (year_opened INTEGER)"
  },
  {
    "answer": "SELECT COUNT(house_colour) FROM table_1942683_1 WHERE house_name = \"Hillary\"",
    "question_en": "How many house colours are associated with house names of Hillary?",
    "question_th": "มีกี่สีที่เกี่ยวข้องกับชื่อบ้านของฮิลลารี?",
    "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_en": "What is the house colour associated with the house name of Kupe?",
    "question_th": "บ้านสีอะไรที่เกี่ยวข้องกับชื่อบ้านของกูเป?",
    "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_en": "How many house mascots are associated with yellow house colours?",
    "question_th": "มีมาสคอตประจำบ้านกี่ตัวที่เกี่ยวข้องกับสีบ้านสีเหลือง?",
    "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_en": "what is the title of the episode where b b is 20/16",
    "question_th": "ตอนที่ bb เป็น 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_en": "What is the minimum losses for the Kansas City Chiefs?",
    "question_th": "การสูญเสียขั้นต่ำสำหรับ 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_en": "How many division titles are there when the win pc is .558?",
    "question_th": "มีกี่ชื่อแผนกเมื่อ win pc เป็น .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_en": "How many villages are there in the Magway region?",
    "question_th": "เขตมาเกวมีหมู่บ้านกี่แห่ง?",
    "context": "CREATE TABLE table_19457_1 (villages VARCHAR, state_region VARCHAR)"
  },
  {
    "answer": "SELECT MAX(town_ships) FROM table_19457_1 WHERE no = 2",
    "question_en": "How many townships are there in region number 2?",
    "question_th": "ภูมิภาคที่ 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_en": "How many townships are there in the region with 376 village groups?",
    "question_th": "มีกี่เมืองในภูมิภาคที่มีกลุ่มหมู่บ้าน 376 กลุ่ม?",
    "context": "CREATE TABLE table_19457_1 (town_ships INTEGER, village_groups VARCHAR)"
  },
  {
    "answer": "SELECT MAX(poles) FROM table_19487922_1 WHERE country = \"Netherlands\"",
    "question_en": "How many poles for the Netherlands?",
    "question_th": "เนเธอร์แลนด์มีกี่เสา?",
    "context": "CREATE TABLE table_19487922_1 (poles INTEGER, country VARCHAR)"
  },
  {
    "answer": "SELECT seasons FROM table_19487922_1 WHERE country = \"Monaco\"",
    "question_en": "How many seasons for Monaco?",
    "question_th": "โมนาโกกี่ฤดูกาล?",
    "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_en": "Who is the competitor from France with 10 starts?",
    "question_th": "ใครคือคู่แข่งจากฝรั่งเศสที่ออกสตาร์ท 10 นัด?",
    "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_en": "When 1180 am is the frequency how many call signs are there?",
    "question_th": "เมื่อ 1180 น. ความถี่มีสัญญาณเรียกเข้ากี่สัญญาณ?",
    "context": "CREATE TABLE table_1949746_1 (call_sign VARCHAR, frequency VARCHAR)"
  },
  {
    "answer": "SELECT licensee FROM table_1949746_1 WHERE city_of_license = \"Portsmouth\"",
    "question_en": "When portsmouth is the city of license who is the licensee?",
    "question_th": "เมื่อพอร์ตสมัธเป็นเมืองแห่งใบอนุญาต ใครคือผู้รับใบอนุญาต?",
    "context": "CREATE TABLE table_1949746_1 (licensee VARCHAR, city_of_license VARCHAR)"
  },
  {
    "answer": "SELECT format FROM table_1949746_1 WHERE frequency = \"790 AM\"",
    "question_en": "When 790 am is the frequency what is the format?",
    "question_th": "เมื่อ 790 น. คือความถี่ รูปแบบอะไร?",
    "context": "CREATE TABLE table_1949746_1 (format VARCHAR, frequency VARCHAR)"
  },
  {
    "answer": "SELECT licensee FROM table_1949746_1 WHERE frequency = \"90.7 FM\"",
    "question_en": "When 90.7 fm is the frequency who is the licensee?",
    "question_th": "เมื่อความถี่ 90.7 fm คือใครคือผู้รับอนุญาต?",
    "context": "CREATE TABLE table_1949746_1 (licensee VARCHAR, frequency VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(total_drivers) FROM table_19487922_2 WHERE country = \"India\"",
    "question_en": "How many drivers does India have/",
    "question_th": "อินเดียมีคนขับกี่คน/",
    "context": "CREATE TABLE table_19487922_2 (total_drivers VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(championships) FROM table_19487922_2 WHERE country = \"Pakistan\"",
    "question_en": "How many championships does Pakistan have?",
    "question_th": "ปากีสถานได้แชมป์กี่สมัย?",
    "context": "CREATE TABLE table_19487922_2 (championships VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT current_march_20, _2010 FROM table_19487922_2 WHERE country = \"Denmark\"",
    "question_en": "How many current drivers, as of March 20, 2010 does Denmark have?",
    "question_th": "ณ วันที่ 20 มีนาคม 2010 เดนมาร์กมีไดรเวอร์ปัจจุบันกี่คน",
    "context": "CREATE TABLE table_19487922_2 (current_march_20 VARCHAR, _2010 VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT MIN(championships) FROM table_19487922_2",
    "question_en": "What in the minimum number of championships won by a nation?",
    "question_th": "จำนวนการแข่งขันชิงแชมป์ขั้นต่ำที่ชาติหนึ่งชนะคืออะไร?",
    "context": "CREATE TABLE table_19487922_2 (championships INTEGER)"
  },
  {
    "answer": "SELECT country FROM table_1949994_7 WHERE end_date = \"June 25\"",
    "question_en": "Where was the season that ended on June 25 located?",
    "question_th": "ฤดูกาลที่สิ้นสุดในวันที่ 25 มิถุนายนอยู่ที่ไหน?",
    "context": "CREATE TABLE table_1949994_7 (country VARCHAR, end_date VARCHAR)"
  },
  {
    "answer": "SELECT start_date FROM table_1949994_7 WHERE end_date = \"July ?\"",
    "question_en": "When did the season that end in July ? start?",
    "question_th": "ฤดูกาลนั้นสิ้นสุดในเดือนกรกฎาคมเมื่อไหร่? เริ่ม?",
    "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_en": "When did the season with 1 team format premiere?",
    "question_th": "ฤดูกาลที่มีรูปแบบทีม 1 เริ่มฉายรอบปฐมทัศน์เมื่อใด",
    "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_en": "What's the format of the season that ended on June 25?",
    "question_th": "ฤดูกาลที่สิ้นสุดในวันที่ 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_en": "What's season 3's premiere date?",
    "question_th": "วันที่ฉายรอบปฐมทัศน์ของซีซั่น 3 คือวันที่เท่าไร?",
    "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_en": "When did the season located in the Netherlands premier?",
    "question_th": "ฤดูกาลนี้จัดขึ้นที่พรีเมียร์ของเนเธอร์แลนด์เมื่อใด",
    "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_en": "Name the viewers for the episode directed by tony phelan",
    "question_th": "ตั้งชื่อผู้ชมสำหรับตอนที่กำกับโดย 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_en": "Name the original air date for 15.74 viewers",
    "question_th": "ตั้งชื่อวันออกอากาศเดิมสำหรับคนดู 15.74 น",
    "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_en": "Name the title for us viewers being 18.29",
    "question_th": "ตั้งชื่อหัวข้อให้พวกเราผู้ชม 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_en": "Name the platforms for cityengine",
    "question_th": "ตั้งชื่อแพลตฟอร์มสำหรับ cityengine",
    "context": "CREATE TABLE table_19495707_1 (platforms VARCHAR, application VARCHAR)"
  },
  {
    "answer": "SELECT license FROM table_19495707_1 WHERE application = \"E-on Vue\"",
    "question_en": "Name the license for e-on vue",
    "question_th": "ตั้งชื่อใบอนุญาตสำหรับ 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_en": "Name the number of developed by for solid edge",
    "question_th": "ตั้งชื่อหมายเลขที่พัฒนาโดยสำหรับขอบทึบ",
    "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_en": "Name the license for 2009-05-25 v 7.61",
    "question_th": "ตั้งชื่อใบอนุญาตสำหรับ 25-05-2552 เวอร์ชัน 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_en": "Name the number of application for modeling, computer aided design, animation",
    "question_th": "ตั้งชื่อหมายเลขแอปพลิเคชันสำหรับการสร้างแบบจำลอง การออกแบบโดยใช้คอมพิวเตอร์ช่วย แอนิเมชั่น",
    "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_en": "Name the application for caligari corporation",
    "question_th": "ตั้งชื่อใบสมัครสำหรับ บริษัท คาลิการี",
    "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_en": "What series number started production on June 6?",
    "question_th": "หมายเลขซีรีส์ใดเริ่มผลิตในวันที่ 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_en": "What was the production format for the series with the local title Fort Boyard: Ultimate Challenge?",
    "question_th": "รูปแบบการผลิตสำหรับซีรีส์ที่มีชื่อในท้องถิ่นว่า 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_en": "What were the television air dates for the series that had a production start date of June 16?",
    "question_th": "ซีรีส์นี้ออกอากาศทางโทรทัศน์เมื่อใด ซึ่งเริ่มผลิตในวันที่ 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_en": "What series number had the local title of Fort Boyard?",
    "question_th": "หมายเลขซีรีส์ใดที่มีชื่อท้องถิ่นว่า Fort Boyard",
    "context": "CREATE TABLE table_1949994_8 (no INTEGER, local_title VARCHAR)"
  },
  {
    "answer": "SELECT MIN(episodes) FROM table_1949994_8",
    "question_en": "What was the minimum number of episodes in any of the series? ",
    "question_th": " จำนวนตอนขั้นต่ำในซีรีส์ใด ๆ คือเท่าใด",
    "context": "CREATE TABLE table_1949994_8 (episodes INTEGER)"
  },
  {
    "answer": "SELECT week__number FROM table_19508635_1 WHERE theme = \"The Beatles\"",
    "question_en": "Name the week number for the beatles",
    "question_th": "ตั้งชื่อหมายเลขสัปดาห์สำหรับเดอะบีเทิลส์",
    "context": "CREATE TABLE table_19508635_1 (week__number VARCHAR, theme VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_19508635_1 WHERE theme = \"1980s\"",
    "question_en": "Name the result for 1980s",
    "question_th": "ตั้งชื่อผลลัพธ์สำหรับปี 1980",
    "context": "CREATE TABLE table_19508635_1 (result VARCHAR, theme VARCHAR)"
  },
  {
    "answer": "SELECT order__number FROM table_19508635_1 WHERE theme = \"1960s\"",
    "question_en": "Name the order number for 1960s",
    "question_th": "ตั้งชื่อหมายเลขคำสั่งซื้อสำหรับปี 1960",
    "context": "CREATE TABLE table_19508635_1 (order__number VARCHAR, theme VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_19508635_1 WHERE original_artist = \"Dolly Parton\"",
    "question_en": "Name the result for dolly parton",
    "question_th": "ตั้งชื่อผลลัพธ์สำหรับดอลลี่พาร์ตัน",
    "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_en": "Name the song choice for michael jackson",
    "question_th": "ตั้งชื่อตัวเลือกเพลงสำหรับไมเคิล แจ็คสัน",
    "context": "CREATE TABLE table_19508635_1 (song_choice VARCHAR, original_artist VARCHAR)"
  },
  {
    "answer": "SELECT MAX(series__number) FROM table_19517621_4",
    "question_en": "What is the largest series number? ",
    "question_th": " หมายเลขซีรีส์ที่ใหญ่ที่สุดคืออะไร?",
    "context": "CREATE TABLE table_19517621_4 (series__number INTEGER)"
  },
  {
    "answer": "SELECT MAX(episode__number) FROM table_19517621_4 WHERE title = \"Jerusalem\"",
    "question_en": "What is the latest episode number with the title of Jerusalem? ",
    "question_th": " เยรูซาเลมชื่อตอนล่าสุดคือเรื่องไหนคะ?",
    "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_en": "What was the original air date of the episode written by Michelle Offen?",
    "question_th": "วันที่ออกอากาศดั้งเดิมของตอนที่เขียนโดย 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_en": "What is the title of the episode written by Vanessa Bates? ",
    "question_th": " ตอนที่เขียนโดย 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_en": "What was the original air date for the episode Calle, The Transit of Venus? ",
    "question_th": " วันออกอากาศดั้งเดิมของตอน 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_en": "What is the completion percentage when yards per attempt was done by Steve McNair : 2003?",
    "question_th": "เปอร์เซ็นต์ความสำเร็จเมื่อหลาต่อความพยายามทำโดย 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_en": "What rank has a rating of 146.8? ",
    "question_th": " อันดับไหนมีเรตติ้ง 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_en": "How many yards per attempt were there when total yards were 513?",
    "question_th": "มีกี่หลาต่อความพยายามเมื่อรวมระยะ 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_en": "What is the series number for the episode written by Kristen Dunphy and David Ogilvy?",
    "question_th": "หมายเลขซีรีส์ของตอนที่เขียนโดย Kristen Dunphy และ 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_en": "If the title if the Lost Boy, how many directors were there?",
    "question_th": "ถ้าชื่อเรื่องว่า Lost Boy มีผู้กำกับกี่คน?",
    "context": "CREATE TABLE table_19517621_3 (directed_by VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_19517621_3 WHERE written_by = \"Michael Miller\"",
    "question_en": "What is the title for the episode that written by Michael Miller?",
    "question_th": "ตอนที่เขียนโดย 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_en": "If the playoff berth is 17, what is the AFC championship number?",
    "question_th": "ถ้ารอบรองชนะเลิศคือ 17 เบอร์แชมป์ AFC คืออะไร?",
    "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_en": "If the team in the New England Patriots, what is the super bowl championship minimum number?",
    "question_th": "ถ้าทีมในนิวอิงแลนด์ แพทริออตส์ ได้แชมป์ซูเปอร์โบวล์ขั้นต่ำเท่าไหร่?",
    "context": "CREATE TABLE table_1952057_5 (super_bowl_championships INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(afc_championships) FROM table_1952057_5",
    "question_en": "What is the maximum number of AFC championships?",
    "question_th": "จำนวนแชมป์ AFC สูงสุดคือเท่าไร?",
    "context": "CREATE TABLE table_1952057_5 (afc_championships INTEGER)"
  },
  {
    "answer": "SELECT COUNT(authors) FROM table_19523708_1 WHERE original = \"Carry On\"",
    "question_en": "How many authors are present when the original was Carry On?",
    "question_th": "มีผู้เขียนกี่คนเมื่อต้นฉบับถูก 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_en": "What was the draw for the english meaning Eyes that Never Lie?",
    "question_th": "คำว่า 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_en": "What is the highest draw represented?",
    "question_th": "การจับฉลากสูงสุดคือเท่าใด?",
    "context": "CREATE TABLE table_19523708_1 (draw INTEGER)"
  },
  {
    "answer": "SELECT artist FROM table_19523708_1 WHERE original = \"Shake It, Europe\"",
    "question_en": "Who was the artist for the origin Shake it, Europe?",
    "question_th": "ใครคือศิลปินที่มีต้นกำเนิด Shake it ยุโรป?",
    "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_en": "What is the arena capacity of the arena in the town whose head coach is Yuriy Korotkevich?",
    "question_th": "สนามกีฬาในเมืองซึ่งมีหัวหน้าโค้ชคือ ยูรี โครอตเควิช สามารถรองรับอารีน่าได้เท่าไร?",
    "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_en": "What is the arena capacity of the arena in the town whose head coach is Roberto Serniotti?",
    "question_th": "ความจุของสนามในเมืองซึ่งมีหัวหน้าโค้ชคือโรแบร์โต แซร์นิออตติคือเท่าไร?",
    "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_en": "Who are the foreign players on team/s that play in Moscow?",
    "question_th": "ใครคือผู้เล่นต่างชาติในทีมที่เล่นในมอสโก?",
    "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_en": "What are the previous season ranks of teams whose website is www.novavolley.narod.ru?",
    "question_th": "อันดับของทีมในฤดูกาลที่แล้วที่มีเว็บไซต์คือ 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_en": "What are the minimum indoor results that have a 5 for inspection? ",
    "question_th": " ผลลัพธ์ในร่มขั้นต่ำที่มี 5 สำหรับการตรวจสอบคือเท่าใด",
    "context": "CREATE TABLE table_19534874_2 (indoor INTEGER, inspection VARCHAR)"
  },
  {
    "answer": "SELECT MAX(written) FROM table_19534874_2 WHERE standard = 2",
    "question_en": "What was the maximum number in written when the standard was 2? ",
    "question_th": " จำนวนสูงสุดที่เขียนเมื่อมาตรฐานคือ 2 คือเท่าใด",
    "context": "CREATE TABLE table_19534874_2 (written INTEGER, standard VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(points) FROM table_19534874_2 WHERE mile_run = 3",
    "question_en": "How many point categories are there for the 3 mile run? ",
    "question_th": " การวิ่ง 3 ไมล์มีกี่ประเภท?",
    "context": "CREATE TABLE table_19534874_2 (points VARCHAR, mile_run VARCHAR)"
  },
  {
    "answer": "SELECT indoor FROM table_19534874_2 WHERE wing = \"NJ\"",
    "question_en": "What is the indoor number for the NJ wing/ ",
    "question_th": " หมายเลขภายในอาคารของปีก NJ คืออะไร/",
    "context": "CREATE TABLE table_19534874_2 (indoor VARCHAR, wing VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(indoor) FROM table_19534874_2 WHERE region = \"NER\"",
    "question_en": "What is the indoor number for the NER region? ",
    "question_th": " หมายเลขภายในสำหรับภูมิภาค NER คืออะไร?",
    "context": "CREATE TABLE table_19534874_2 (indoor VARCHAR, region VARCHAR)"
  },
  {
    "answer": "SELECT winning_span FROM table_1953516_1 WHERE name = \"Martin Kaymer\"",
    "question_en": "What is the winning span of the name martin kaymer?",
    "question_th": "ช่วงชนะของชื่อมาร์ติน เคย์เมอร์คือเท่าไร?",
    "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_en": "What is the winning span in the country of England with the name of paul casey?",
    "question_th": "ช่วงชนะในประเทศอังกฤษชื่อพอลเคซี่ย์คืออะไร?",
    "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_en": "What is the winning span for the name of bernard gallacher?",
    "question_th": "ช่วงชนะของชื่อเบอร์นาร์ด กัลลาเชอร์คือเท่าไร?",
    "context": "CREATE TABLE table_1953516_1 (winning_span VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT winning_span FROM table_1953516_1 WHERE rank = \"5\"",
    "question_en": "What is the winning span with the rank of 5?",
    "question_th": "ช่วงชนะด้วยอันดับ 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_en": "How many scorecards are there for the match on October 28? ",
    "question_th": "แมตช์วันที่ 28 ตุลาคม มีกี่ใบ?",
    "context": "CREATE TABLE table_19576091_1 (scorecard VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(venue) FROM table_19576091_1 WHERE date = \"November 6\"",
    "question_en": "How many venues were there for the match on November 6? ",
    "question_th": " วันที่ 6 พฤศจิกายน มีสถานที่จัดการแข่งขันกี่แห่ง?",
    "context": "CREATE TABLE table_19576091_1 (venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_19576091_1 WHERE date = \"October 10\"",
    "question_en": "What was the venue for the match on October 10? ",
    "question_th": " วันที่ 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_en": "Who was the man of the match when the Rockets won by 9 wickets? ",
    "question_th": " ใครคือแมนออฟเดอะแมตช์เมื่อร็อคเก็ตส์ชนะไป 9 ประตู?",
    "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_en": "Name the vacator for wisconsin 1st",
    "question_th": "ตั้งชื่อผู้ว่างสำหรับวิสคอนซินที่ 1",
    "context": "CREATE TABLE table_1958768_3 (vacator VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT successor FROM table_1958768_3 WHERE district = \"Pennsylvania 15th\"",
    "question_en": "Name the successor for pennsylvania 15th",
    "question_th": "ตั้งชื่อผู้สืบทอดของเพนซิลวาเนียที่ 15",
    "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_en": "Name the circuit for #47 orbit racing ",
    "question_th": " ตั้งชื่อวงจรสำหรับการแข่งรถวงโคจร #47",
    "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_en": "Name the gt2 winning team where lmp2 winning team and butch leitzinger marino franchitti ben devlin",
    "question_th": "ตั้งชื่อทีมที่ชนะ gt2 โดยที่ทีมที่ชนะ lmp2 และบุทช์ ไลต์ซิงเกอร์ มาริโน ฟรานชิตติ เบน เดฟลิน",
    "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ández Luis Díaz\"",
    "question_en": "Name the lmp 1 winning team for rnd being 2 and adrian fernández luis díaz",
    "question_th": "ตั้งชื่อทีมที่ชนะ lmp 1 สำหรับอันดับที่ 2 และ adrian fernández luis díaz",
    "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² = 377930",
    "question_en": "Which capitals have an area of exactly 377930 square km?",
    "question_th": "เมืองหลวงใดมีพื้นที่ 377930 ตารางกิโลเมตรพอดี",
    "context": "CREATE TABLE table_19605700_1 (capital VARCHAR, area_km² VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(capital) FROM table_19605700_1 WHERE area_km² = 1104",
    "question_en": "What is the total number of capitals that have an area of exactly 1104 square km?",
    "question_th": "จำนวนเมืองหลวงทั้งหมดที่มีพื้นที่ 1,104 ตารางกิโลเมตรพอดีคือเท่าไร?",
    "context": "CREATE TABLE table_19605700_1 (capital VARCHAR, area_km² VARCHAR)"
  },
  {
    "answer": "SELECT capital FROM table_19605700_1 WHERE population = 1339724852",
    "question_en": "What capital has a population of exactly 1339724852?",
    "question_th": "เมืองหลวงใดมีประชากร 1339724852 พอดี?",
    "context": "CREATE TABLE table_19605700_1 (capital VARCHAR, population VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(population) FROM table_19605700_1 WHERE capital = \"Hong Kong\"",
    "question_en": "How many populations have a capital of Hong Kong?",
    "question_th": "มีประชากรกี่คนที่มีเมืองหลวงของฮ่องกง?",
    "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_en": "What are all values for the male population in 2001 with a growth rate in 1991-01 of 36.16?",
    "question_th": "ค่าทั้งหมดสำหรับประชากรชายในปี 2544 โดยมีอัตราการเติบโตในปี 2534-2544 เป็น 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_en": "What is the least value for total population in 2001 with a growth rate in 1991-01 of 33.08?",
    "question_th": "ค่าน้อยที่สุดสำหรับประชากรทั้งหมดในปี 2544 โดยมีอัตราการเติบโตในปี 2534-2544 คือ 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_‡_1991 = 896",
    "question_en": "What are all values for male population in 2001 when sex ratio in 1991 is 896?",
    "question_th": "ค่าทั้งหมดสำหรับประชากรชายในปี 2544 เมื่ออัตราส่วนเพศในปี 2534 คือ 896 เป็นเท่าใด",
    "context": "CREATE TABLE table_19589113_5 (male_population_2001 VARCHAR, sex_ratio_‡_1991 VARCHAR)"
  },
  {
    "answer": "SELECT growth_rate_1991_01 FROM table_19589113_5 WHERE sex_ratio_‡_2001 = 937",
    "question_en": "What is every growth rate in 1991-2001 when sex ratio in 2001 is 937?",
    "question_th": "อัตราการเติบโตในปี 2534-2544 เป็นเท่าใดเมื่ออัตราส่วนเพศในปี 2544 อยู่ที่ 937",
    "context": "CREATE TABLE table_19589113_5 (growth_rate_1991_01 VARCHAR, sex_ratio_‡_2001 VARCHAR)"
  },
  {
    "answer": "SELECT districts_of_bihar FROM table_19589113_5 WHERE sex_ratio_‡_1991 = 864",
    "question_en": "What districts of Bihar have a sex ratio in 1991 of 864?",
    "question_th": "เขตใดของแคว้นมคธที่มีอัตราส่วนเพศในปี 1991 จาก 864 คน",
    "context": "CREATE TABLE table_19589113_5 (districts_of_bihar VARCHAR, sex_ratio_‡_1991 VARCHAR)"
  },
  {
    "answer": "SELECT marriages_between_women FROM table_19614212_1 WHERE _percentage_same_sex_marriages = \"1.06\"",
    "question_en": "How many marriages between women have % same-sex marriages of 1.06?",
    "question_th": "มีการแต่งงานระหว่างผู้หญิงกี่ครั้งที่มี % การแต่งงานของเพศเดียวกัน 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_en": "What is the % of same-sex marriages for the year of 2011?",
    "question_th": "% ของการแต่งงานเพศเดียวกันในปี 2554 คือเท่าไร?",
    "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_en": "How many % same-sex marriages are there for the year 2008?",
    "question_th": "ในปี 2551 มีการแต่งงานเพศเดียวกันกี่ %",
    "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_en": "How many % same-sex marriages are marriages between men for 923? ",
    "question_th": " การแต่งงานของเพศเดียวกันเป็นการแต่งงานระหว่างผู้ชายกี่ % ในปี 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_en": "When was the episode number 2 originally aired?",
    "question_th": "ตอนที่ 2 ออกอากาศครั้งแรกเมื่อไหร่?",
    "context": "CREATE TABLE table_19632728_1 (original_air_date VARCHAR, episode__number VARCHAR)"
  },
  {
    "answer": "SELECT MAX(season__number) FROM table_19632728_1",
    "question_en": "What was the highest season number?",
    "question_th": "หมายเลขฤดูกาลสูงสุดคืออะไร?",
    "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_en": "What was the margin of victory of Steve Stricker as a runner up?",
    "question_th": "อะไรคือชัยชนะของ Steve Stricker ในฐานะรองแชมป์?",
    "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_en": "How many to par has the winning score of 69-66-68=203.",
    "question_th": "กี่พาร์มีคะแนนชนะ 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_en": "What is the minimum number of the bmw championship tournament.",
    "question_th": "จำนวนขั้นต่ำของการแข่งขันชิงแชมป์ BMW คือเท่าใด",
    "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_en": "What is the total number of  John Merrick as a runner up?",
    "question_th": "John Merrick รองแชมป์มีจำนวนเท่าไร?",
    "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_en": "What horses does r. a. Scott own?",
    "question_th": "ra Scott เป็นเจ้าของม้าตัวไหน?",
    "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_en": "How many numbers have sp of 20/1 and a finishing position of fence 19?",
    "question_th": "มีกี่หมายเลขที่มี sp 20/1 และตำแหน่งเข้าเส้นชัยของรั้ว 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_en": "Which handicap has the horse knowhere?",
    "question_th": "ม้าตัวไหนมีแต้มต่อบ้าง?",
    "context": "CREATE TABLE table_19624708_1 (handicap__st_lb_ VARCHAR, horse VARCHAR)"
  },
  {
    "answer": "SELECT colours FROM table_19624708_1 WHERE owner = \"David Langdon\"",
    "question_en": "What colors does David Langdon use?",
    "question_th": "David Langdon ใช้สีอะไร?",
    "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_en": "If the film title nominated is Baran, what was the result?",
    "question_th": "ถ้าชื่อหนังที่ได้รับการเสนอชื่อคือ บารัน ผลลัพธ์จะเป็นอย่างไร?",
    "context": "CREATE TABLE table_19625976_1 (result VARCHAR, film_title_used_in_nomination VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_19625976_1 WHERE persian_title = \"میم مثل مادر\"",
    "question_en": "For the Persian Title میم مثل مادر, what were the results?",
    "question_th": "สำหรับชื่อเปอร์เซีย میم مثل مادر ผลลัพธ์เป็นอย่างไร",
    "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 = \"گبه\"",
    "question_en": "For the Persian title گبه, What was the film title used for the nomination?",
    "question_th": "สำหรับชื่อภาษาเปอร์เซีย گبه ชื่อภาพยนตร์ที่ใช้ในการเสนอชื่อคืออะไร?",
    "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_en": "What year had an Allison B400R transmission and a model of BRT?",
    "question_th": "ปีไหนมีเกียร์ Allison B400R และรุ่น 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_en": "What is the fleet number when the length (ft) is 30?",
    "question_th": "หมายเลขกองเรือเมื่อความยาว (ฟุต) คือ 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_en": "What is the fleet number when the transmission is Voith D863.4 and the engine is Cummins ISL?",
    "question_th": "หมายเลขฟลีทเมื่อระบบเกียร์คือ Voith D863.4 และเครื่องยนต์คือ 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_en": "Which year had a transmission of Voith D863.4 and a Cummins ISM engine?",
    "question_th": "ปีใดที่มีระบบส่งกำลังของ Voith D863.4 และเครื่องยนต์ Cummins ISM",
    "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_en": "Name the college/junior club team for ian turnbull",
    "question_th": "ตั้งชื่อทีมสโมสรวิทยาลัย/จูเนียร์สำหรับเอียน เทิร์นบูล",
    "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_en": "Name the position for nhl team being los angeles kings",
    "question_th": "ตั้งชื่อตำแหน่งทีม nhl ว่าเป็น 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_en": "Name the nhl times for jeff jacques",
    "question_th": "ตั้งชื่อเวลา nhl สำหรับ 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_en": "Name the college/junior club team for john campbell",
    "question_th": "ตั้งชื่อทีมสโมสรระดับวิทยาลัย/จูเนียร์สำหรับจอห์น แคมป์เบลล์",
    "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_en": "Name the least pick # for doug gibson",
    "question_th": "ตั้งชื่อตัวเลือกน้อยที่สุด # สำหรับ 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_en": "How many nationalities does Tom Colley have?",
    "question_th": "Tom Colley มีกี่สัญชาติ?",
    "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_en": "What's the NHL team that drafted the player from Sudbury Wolves (OHA)?",
    "question_th": "ทีม NHL ที่ร่างผู้เล่นจาก 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_en": "What's the number of positions of the player playing in Minnesota North Stars?",
    "question_th": "ผู้เล่นที่เล่นใน 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_en": "What's the smallest pick number of a player playing in Minnesota North Stars?",
    "question_th": "หมายเลขเลือกที่น้อยที่สุดของผู้เล่นที่เล่นใน 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_en": "What's the nationality of the player coming from Edmonton Oil Kings (WCHL)?",
    "question_th": "ผู้เล่นจาก 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_en": "What's Steve Langdon's naitionality?",
    "question_th": "สัญชาติของ Steve Langdon คืออะไร?",
    "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_en": "When michigan technological university (ncaa) is the  college, junior, or club team what is the nationality?",
    "question_th": "เมื่อมหาวิทยาลัยเทคโนโลยีมิชิแกน (ncaa) เป็นวิทยาลัย รุ่นน้อง หรือทีมสโมสร สัญชาติอะไร?",
    "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_en": "When kitchener rangers (oha) is the  college, junior, or club team team who is the player?",
    "question_th": "เมื่อคิทเชนเนอร์ เรนเจอร์ส (โอฮา) เป็นทีมวิทยาลัย รุ่นน้อง หรือทีมสโมสร ใครคือนักเตะ?",
    "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_en": "When  sault ste. marie greyhounds (oha) is the  college, junior, or club team how many nationalities are there?",
    "question_th": "เมื่อซอลต์สเต มารี เกรย์ฮาวด์ (โอฮ่า) เป็นทีมวิทยาลัย รุ่นน้อง หรือสโมสร มีกี่สัญชาติ?",
    "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_en": "When kitchener rangers (oha) is the college, junior, or club team what is the position?",
    "question_th": "เมื่อคิทเชนเนอร์เรนเจอร์ (โอฮา) เป็นทีมวิทยาลัย รุ่นน้อง หรือทีมสโมสร ตำแหน่งอะไร?",
    "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_en": "How many positions for denis patry?",
    "question_th": "เดนิส ปาทรี มีกี่ตำแหน่ง?",
    "context": "CREATE TABLE table_1965650_6 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_1965650_6 WHERE player = \"Neil Korzack\"",
    "question_en": "What nationality for neil korzack?",
    "question_th": "นีล คอร์แซค สัญชาติอะไร?",
    "context": "CREATE TABLE table_1965650_6 (nationality VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT institution FROM table_1969577_1 WHERE enrollment = 10000",
    "question_en": "Name the college that has 10000 enrolled",
    "question_th": "ตั้งชื่อวิทยาลัยที่มีผู้ลงทะเบียนเรียนครบ 10,000 คน",
    "context": "CREATE TABLE table_1969577_1 (institution VARCHAR, enrollment VARCHAR)"
  },
  {
    "answer": "SELECT MAX(joined) FROM table_1969577_1 WHERE institution = \"Molloy College\"",
    "question_en": "Name the most joined for molloy college",
    "question_th": "ชื่อวิทยาลัยมอลลอยที่มีคนเข้าร่วมมากที่สุด",
    "context": "CREATE TABLE table_1969577_1 (joined INTEGER, institution VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(total) FROM table_19681738_1 WHERE hancock__number = 1394",
    "question_en": "how many times was total considered when hancock # was 1394",
    "question_th": "พิจารณาทั้งหมดกี่ครั้งเมื่อแฮนค็อก # เป็น 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_en": "how many times was hancock % considered when starky % was 20.96%",
    "question_th": "แฮนค็อกคิดเป็น % กี่ครั้งเมื่อ starky % คือ 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_en": "How many times was country considered when starky % was 20.96%",
    "question_th": "ประเทศถูกพิจารณากี่ครั้งเมื่อ starky % คือ 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_en": "which country did stary get 17.41%",
    "question_th": "ประเทศไหนติดดาวได้ 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_en": "what is the least total in gila",
    "question_th": "ยอดรวมน้อยที่สุดในกิล่าคือเท่าไร",
    "context": "CREATE TABLE table_19681738_1 (total INTEGER, county VARCHAR)"
  },
  {
    "answer": "SELECT county FROM table_19681738_1 WHERE hancock__percentage = \"3.09%\"",
    "question_en": "where did hancock get 3.09%",
    "question_th": "แฮนค็อกได้ 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_en": "What is the BBM when the strike rate is 42.2?",
    "question_th": "BBM จะเป็นเท่าใดเมื่ออัตราการนัดหยุดงานคือ 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_en": "What is the economy when the strike rate is 54.0?",
    "question_th": "เศรษฐกิจจะเป็นอย่างไรเมื่ออัตราการนัดหยุดงานอยู่ที่ 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_en": "How many averages are there when the economy rate is 2.26?",
    "question_th": "อัตราเศรษฐกิจอยู่ที่ 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_en": "How many figures for wickets when the strike rate is 54.0?",
    "question_th": "กี่ตัวเลขสำหรับประตูเมื่ออัตราการนัดหยุดงานคือ 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_en": "What is the strike rate when there are 17 wickets?",
    "question_th": "อัตราการนัดหยุดงานเมื่อมี 17 ประตูเป็นเท่าใด?",
    "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_en": "How many areas (km 2) have 151511 as the census 2006 population?",
    "question_th": "กี่พื้นที่ (กม. 2) มี 151511 เป็นการสำรวจสำมะโนประชากร พ.ศ. 2549",
    "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_en": "What is the LGA name where the 2006 census population is bigger than 425208.9417698913 and administrative capital is port harcourt?",
    "question_th": "ชื่อ LGA คืออะไรซึ่งมีประชากรในการสำรวจสำมะโนประชากรปี 2549 มากกว่า 425208.9417698913 และทุนการบริหารคือพอร์ตฮาร์คอร์ต",
    "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_en": "What is the administrative capital of LGA name Akuku-Toru?",
    "question_th": "เมืองหลวงของ LGA ชื่อ 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_en": "What is the administrative capital that has a 2006 census population of 249425?",
    "question_th": "ทุนบริหารที่มีจำนวนประชากร 249425 จำนวน 249425 คนในปี 2549 คืออะไร",
    "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_en": "What is the maximum 2006 census population of LGA name Opobo/Nkoro?",
    "question_th": "จำนวนประชากรสูงสุดของการสำรวจสำมะโนประชากรในปี 2549 ของชื่อ LGA Opobo/Nkoro คือเท่าใด",
    "context": "CREATE TABLE table_1966992_1 (census_2006_population INTEGER, lga_name VARCHAR)"
  },
  {
    "answer": "SELECT MIN(enrollment) FROM table_1969577_3",
    "question_en": "What's the minimal enrollment of any of the schools?",
    "question_th": "การลงทะเบียนขั้นต่ำของโรงเรียนใด ๆ คือเท่าใด",
    "context": "CREATE TABLE table_1969577_3 (enrollment INTEGER)"
  },
  {
    "answer": "SELECT MAX(founded) FROM table_1969577_3 WHERE nickname = \"Rams\"",
    "question_en": "When was the school whose students are nicknamed Rams founded?",
    "question_th": "โรงเรียนที่มีนักเรียนชื่อเล่นว่าแรมส์ก่อตั้งขึ้นเมื่อใด",
    "context": "CREATE TABLE table_1969577_3 (founded INTEGER, nickname VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_1969577_3 WHERE nickname = \"Chargers\"",
    "question_en": "What's the type of the school whose students are nicknamed Chargers?",
    "question_th": "โรงเรียนประเภทไหนที่นักเรียนมีชื่อเล่นว่า Chargers?",
    "context": "CREATE TABLE table_1969577_3 (type VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT founded FROM table_1969577_3 WHERE location = \"Philadelphia, Pennsylvania\"",
    "question_en": "When was the school in Philadelphia, Pennsylvania founded?",
    "question_th": "โรงเรียนในเมืองฟิลาเดลเฟีย รัฐเพนซิลวาเนียก่อตั้งขึ้นเมื่อใด",
    "context": "CREATE TABLE table_1969577_3 (founded VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT MIN(total_votes) FROM table_19698421_1 WHERE year = \"2005\"",
    "question_en": "What was the total number of votes in the 2005 elections?",
    "question_th": "จำนวนคะแนนเสียงทั้งหมดในการเลือกตั้งปี 2548 เป็นเท่าใด",
    "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_en": "How many elections had 1423 average voters per candidate?",
    "question_th": "มีการเลือกตั้งกี่ครั้งที่มีผู้ลงคะแนนเฉลี่ย 1,423 คนต่อผู้สมัครหนึ่งคน",
    "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_en": "How many candidates were there in the year of 1987?",
    "question_th": "ในปี 2530 มีผู้สมัครกี่คน?",
    "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_en": "What is the modified torque (lb/ft) when the standard hp n/a?",
    "question_th": "แรงบิดดัดแปลง (ปอนด์/ฟุต) เมื่อไม่มีแรงม้ามาตรฐานคือเท่าไร?",
    "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_en": "When the standard speed (6th gear) is 114, what is the minimum rpm?",
    "question_th": "เมื่อความเร็วมาตรฐาน (เกียร์ 6) อยู่ที่ 114 รอบต่ำสุดคือเท่าไร?",
    "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_en": "when standard speed (6th gear) is 88, what is the rpm?",
    "question_th": "เมื่อความเร็วมาตรฐาน (เกียร์ 6) อยู่ที่ 88 รอบต่อนาทีเป็นเท่าใด?",
    "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_en": "What is the modified speed (6th gear) when standard torque (lb/ft) is 10.3 and modified torque (lb/ft) is 8.75?",
    "question_th": "ความเร็วที่แก้ไข (เกียร์ 6) คือเท่าใด เมื่อแรงบิดมาตรฐาน (ปอนด์/ฟุต) เท่ากับ 10.3 และแรงบิดดัดแปลง (ปอนด์/ฟุต) เท่ากับ 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_en": "when the max speed for modified speed (6th gear) where standard speed (6th gear) is 98",
    "question_th": "เมื่อความเร็วสูงสุดที่ปรับเปลี่ยนความเร็ว (เกียร์ 6) โดยที่ความเร็วมาตรฐาน (เกียร์ 6) คือ 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_en": "When the standard torque (lb/ft) is 11.53 how much does more is the modified hp?",
    "question_th": "เมื่อแรงบิดมาตรฐาน (ปอนด์/ฟุต) เท่ากับ 11.53 แรงม้าที่ดัดแปลงจะมากขึ้นเท่าใด",
    "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_en": "how many assists did the player who played 195 minutes make",
    "question_th": "นักเตะที่ลงเล่น 195 นาทีทำได้กี่แอสซิสต์",
    "context": "CREATE TABLE table_19722233_5 (assists VARCHAR, minutes VARCHAR)"
  },
  {
    "answer": "SELECT MIN(blocks) FROM table_19722233_5",
    "question_en": "what is the lowest number of blocks",
    "question_th": "จำนวนบล็อกต่ำสุดคือเท่าใด",
    "context": "CREATE TABLE table_19722233_5 (blocks INTEGER)"
  },
  {
    "answer": "SELECT MIN(points) FROM table_19722233_5 WHERE blocks = 21",
    "question_en": "what is the lowest points scored by a player who blocked 21 times",
    "question_th": "คะแนนต่ำสุดที่ผู้เล่นบล็อกได้ 21 ครั้งคือเท่าไร",
    "context": "CREATE TABLE table_19722233_5 (points INTEGER, blocks VARCHAR)"
  },
  {
    "answer": "SELECT blocks FROM table_19722233_5 WHERE player = \"Debbie Black\"",
    "question_en": "how many times did debbie black block",
    "question_th": "เด็บบี้ แบล็คบล็อกไปกี่ครั้งแล้ว",
    "context": "CREATE TABLE table_19722233_5 (blocks VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(field_goals) FROM table_19722233_5 WHERE assists = 27",
    "question_en": "what is the highest number of goals did the player with 27 asists score",
    "question_th": "ผู้เล่นที่ทำคะแนนได้ 27 แอสซิสต์มากที่สุดคือจำนวนเท่าใด",
    "context": "CREATE TABLE table_19722233_5 (field_goals INTEGER, assists VARCHAR)"
  },
  {
    "answer": "SELECT assists FROM table_19722233_5 WHERE points = 251",
    "question_en": "how many assists did the player who scored 251 points make",
    "question_th": "ผู้เล่นที่ทำคะแนนได้ 251 แต้มทำแอสซิสต์ได้กี่ครั้ง",
    "context": "CREATE TABLE table_19722233_5 (assists VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT prod__number FROM table_1971734_1 WHERE filmed = \"Aug/Sept 1968\"",
    "question_en": "What was the production number of the episode filmed in aug/sept 1968?",
    "question_th": "ตอนที่ถ่ายทำในเดือนสิงหาคม/กันยายน 2511 มีการผลิตจำนวนเท่าใด",
    "context": "CREATE TABLE table_1971734_1 (prod__number VARCHAR, filmed VARCHAR)"
  },
  {
    "answer": "SELECT MAX(enrollment) FROM table_1971074_1",
    "question_en": "What's the highest enrollment among the schools?",
    "question_th": "โรงเรียนใดมีการลงทะเบียนเรียนมากที่สุด?",
    "context": "CREATE TABLE table_1971074_1 (enrollment INTEGER)"
  },
  {
    "answer": "SELECT joined FROM table_1971074_1 WHERE location = \"Logan Township, Pennsylvania\"",
    "question_en": "When did the school from Logan Township, Pennsylvania join the Conference?",
    "question_th": "โรงเรียนจากเมืองโลแกน รัฐเพนซิลเวเนีย เข้าร่วมการประชุมเมื่อใด",
    "context": "CREATE TABLE table_1971074_1 (joined VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT founded FROM table_1971074_1 WHERE type = \"Private/Non-sectarian\"",
    "question_en": "When was the private/non-sectarian school founded?",
    "question_th": "โรงเรียนเอกชน/ไม่แบ่งนิกายก่อตั้งขึ้นเมื่อใด",
    "context": "CREATE TABLE table_1971074_1 (founded VARCHAR, type VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_1971074_1 WHERE nickname = \"Panthers\"",
    "question_en": "Where is the school whose students are nicknamed Panthers located?",
    "question_th": "โรงเรียนที่นักเรียนชื่อเล่นแพนเทอร์ตั้งอยู่ที่ไหน?",
    "context": "CREATE TABLE table_1971074_1 (location VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(enrollment) FROM table_1971074_1 WHERE nickname = \"Barons\"",
    "question_en": "How many different enrollment numbers are there for the school whose students are nicknamed Barons?",
    "question_th": "โรงเรียนที่มีนักเรียนชื่อเล่นว่าบารอนมีหมายเลขการลงทะเบียนที่แตกต่างกันกี่หมายเลข",
    "context": "CREATE TABLE table_1971074_1 (enrollment VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(joined) FROM table_1971074_1 WHERE location = \"Logan Township, Pennsylvania\"",
    "question_en": "In how many different years did schools located in Logan Township, Pennsylvania join the Conference?",
    "question_th": "โรงเรียนที่ตั้งอยู่ในเมืองโลแกน รัฐเพนซิลเวเนีย เข้าร่วมการประชุมกี่ปี",
    "context": "CREATE TABLE table_1971074_1 (joined VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(isolation) FROM table_19716903_1 WHERE mountain_peak = \"Jack Mountain\"",
    "question_en": "How many different isolation numbers does the Jack Mountain peak have?",
    "question_th": "ยอดเขาแจ็คมีหมายเลขแยกที่แตกต่างกันกี่หมายเลข",
    "context": "CREATE TABLE table_19716903_1 (isolation VARCHAR, mountain_peak VARCHAR)"
  },
  {
    "answer": "SELECT steals FROM table_19722664_5 WHERE player = \"Nicole Levandusky\"",
    "question_en": "How many steals did Nicole Levandusky make?",
    "question_th": "Nicole Levandusky ขโมยได้กี่ครั้ง?",
    "context": "CREATE TABLE table_19722664_5 (steals VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(rebounds) FROM table_19722664_5 WHERE player = \"Rhonda Mapp\"",
    "question_en": "How many rebounds did Rhonda Mapp make?",
    "question_th": "Rhonda Mapp ทำกี่รีบาวด์?",
    "context": "CREATE TABLE table_19722664_5 (rebounds INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(assists) FROM table_19722664_5 WHERE player = \"Nicole Levandusky\"",
    "question_en": "What is the largest amount of assists that Nicole Levandusky made?",
    "question_th": "นิโคล เลแวนดัสกี้ทำแอสซิสต์ได้มากที่สุดเท่าไหร่?",
    "context": "CREATE TABLE table_19722664_5 (assists INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(blocks) FROM table_19722664_5 WHERE rebounds = 35",
    "question_en": "What is the maximum number of blocks where rebounds equal 35?",
    "question_th": "จำนวนบล็อกสูงสุดที่รีบาวด์เท่ากับ 35 คือเท่าใด",
    "context": "CREATE TABLE table_19722664_5 (blocks INTEGER, rebounds VARCHAR)"
  },
  {
    "answer": "SELECT assists FROM table_19722664_5 WHERE player = \"DeLisha Milton-Jones\"",
    "question_en": "How many assists did Delisha Milton-Jones make?",
    "question_th": "เดลิชา มิลตัน-โจนส์ แอสซิสต์ได้กี่ครั้ง?",
    "context": "CREATE TABLE table_19722664_5 (assists VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(total_apps) FROM table_19730892_1 WHERE name = \"Eddie Carr\"",
    "question_en": "Name the total apps for eddie carr",
    "question_th": "ตั้งชื่อแอปทั้งหมดสำหรับ 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_en": "Name the fa cup apps for arthur morton",
    "question_th": "ตั้งชื่อแอปเอฟเอคัพสำหรับอาเธอร์ มอร์ตัน",
    "context": "CREATE TABLE table_19730892_1 (fa_cup_apps VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_19730892_1 WHERE name = \"Billy Price\"",
    "question_en": "Name the position for billy price",
    "question_th": "ตั้งชื่อตำแหน่งราคาบิลลี่",
    "context": "CREATE TABLE table_19730892_1 (position VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(position) FROM table_19730892_1 WHERE name = \"Don Clegg\"",
    "question_en": "Name the total number of position for don clegg",
    "question_th": "บอกจำนวนตำแหน่งดอนเคล็กทั้งหมด",
    "context": "CREATE TABLE table_19730892_1 (position VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT nation FROM table_19730892_1 WHERE name = \"Jeff Barker\"",
    "question_en": "Name the nation where jeff barker is from",
    "question_th": "ตั้งชื่อประเทศที่เจฟฟ์ บาร์เกอร์มาจาก",
    "context": "CREATE TABLE table_19730892_1 (nation VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT fa_cup_apps FROM table_19730892_1 WHERE name = \"George Green\"",
    "question_en": "Name the fa cup apps for george green",
    "question_th": "ตั้งชื่อแอป fa cup สำหรับ 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_en": "Name the school that was founded in 1950",
    "question_th": "ตั้งชื่อโรงเรียนที่ก่อตั้งในปี 1950",
    "context": "CREATE TABLE table_1973648_1 (institution VARCHAR, founded VARCHAR)"
  },
  {
    "answer": "SELECT MAX(founded) FROM table_1973648_1 WHERE nickname = \"Sea Gulls\"",
    "question_en": "Name the most founded for sea gulls",
    "question_th": "ชื่อนกนางนวลที่ก่อตั้งมากที่สุด",
    "context": "CREATE TABLE table_1973648_1 (founded INTEGER, nickname VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_1973648_1 WHERE nickname = \"Eagles\"",
    "question_en": "Name the location for eagles",
    "question_th": "ตั้งชื่อสถานที่สำหรับนกอินทรี",
    "context": "CREATE TABLE table_1973648_1 (location VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT enrollment FROM table_1973648_1 WHERE joined = \"2007-08\"",
    "question_en": "Name the enrollment for 2007-08",
    "question_th": "ตั้งชื่อการลงทะเบียนสำหรับปี 2550-51",
    "context": "CREATE TABLE table_1973648_1 (enrollment VARCHAR, joined VARCHAR)"
  },
  {
    "answer": "SELECT MIN(new_points) FROM table_1973321_5 WHERE player = \"Steffi Graf\"",
    "question_en": "Name the least new points for steffi graf",
    "question_th": "ตั้งชื่อจุดใหม่น้อยที่สุดสำหรับ 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élie Mauresmo\"",
    "question_en": "Name the most points for champion, won in the final against amélie mauresmo",
    "question_th": "บอกชื่อแชมป์ที่มีคะแนนมากที่สุด ซึ่งชนะในรอบชิงชนะเลิศกับอเมลี เมาเรสโม",
    "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_en": "Name the further cities for slovakia and west direction",
    "question_th": "ตั้งชื่อเมืองเพิ่มเติมสำหรับสโลวาเกียและทิศตะวันตก",
    "context": "CREATE TABLE table_197286_4 (further_cities VARCHAR, country VARCHAR, direction VARCHAR)"
  },
  {
    "answer": "SELECT distance FROM table_197286_4 WHERE direction = \"North\"",
    "question_en": "Name the distance from north",
    "question_th": "บอกระยะทางจากทิศเหนือ",
    "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_en": "Name the further cities for east romania",
    "question_th": "ตั้งชื่อเมืองเพิ่มเติมสำหรับโรมาเนียตะวันออก",
    "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_en": "Name the number of direction for debrecen",
    "question_th": "ตั้งชื่อหมายเลขทิศทางสำหรับ debrecen",
    "context": "CREATE TABLE table_197286_4 (direction VARCHAR, further_cities VARCHAR)"
  },
  {
    "answer": "SELECT nickname FROM table_1973816_1 WHERE founded = 1933",
    "question_en": "What's the nickname of the students of the school founded in 1933?",
    "question_th": "นักเรียนโรงเรียนที่ก่อตั้งเมื่อปี พ.ศ. 2476 มีชื่อเล่นว่าอะไร?",
    "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_en": "On how many locations is the Saint Joseph's College of Maine located?",
    "question_th": "วิทยาลัยเซนต์โจเซฟแห่งเมนตั้งอยู่ที่กี่แห่ง?",
    "context": "CREATE TABLE table_1973816_1 (location VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(joined) FROM table_1973842_1 WHERE location = \"Chestnut Hill, Massachusetts\"",
    "question_en": "On how many different dates did schools from Chestnut Hill, Massachusetts join the conference?",
    "question_th": "โรงเรียนจาก Chestnut Hill รัฐแมสซาชูเซตส์เข้าร่วมการประชุมในวันที่ต่างกันกี่วัน",
    "context": "CREATE TABLE table_1973842_1 (joined VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_1973842_1 WHERE nickname = \"Tigers\"",
    "question_en": "What is the type of the school whose students' nickname is tigers?",
    "question_th": "โรงเรียนประเภทใดที่นักเรียนมีชื่อเล่นว่าเสือ?",
    "context": "CREATE TABLE table_1973842_1 (type VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_1973842_1 WHERE nickname = \"Spirits\"",
    "question_en": "What's the type of the school whose students' name is spirits?",
    "question_th": "โรงเรียนประเภทไหนที่นักเรียนชื่อสปิริต?",
    "context": "CREATE TABLE table_1973842_1 (type VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT institution FROM table_1973842_1 WHERE location = \"Chestnut Hill, Massachusetts\"",
    "question_en": "What school is located in Chestnut Hill, Massachusetts?",
    "question_th": "โรงเรียนใดตั้งอยู่ใน 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_en": "What type is the school located in Macon, Georgia?",
    "question_th": "โรงเรียนประเภทใดที่ตั้งอยู่ในเมืองเมคอน รัฐจอร์เจีย",
    "context": "CREATE TABLE table_1973842_1 (type VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT nickname FROM table_1973842_2 WHERE location = \"Maryville, Tennessee\"",
    "question_en": "What's the nickname of the school in Maryville, Tennessee?",
    "question_th": "ชื่อเล่นของโรงเรียนในเมืองแมรีวิลล์ รัฐเทนเนสซีคืออะไร",
    "context": "CREATE TABLE table_1973842_2 (nickname VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_1973842_2 WHERE nickname = \"Tigers\"",
    "question_en": "Where is the school with nickname Tigers located?",
    "question_th": "โรงเรียนชื่อเล่นเสืออยู่ที่ไหน?",
    "context": "CREATE TABLE table_1973842_2 (location VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT nickname FROM table_1973842_2 WHERE joined = 2010",
    "question_en": "What's the nickname of the students of the school that joined the Conference in 2010?",
    "question_th": "นักเรียนโรงเรียนที่เข้าร่วมการประชุมฯ ประจำปี 2553 มีชื่อเล่นว่าอะไร",
    "context": "CREATE TABLE table_1973842_2 (nickname VARCHAR, joined VARCHAR)"
  },
  {
    "answer": "SELECT founded FROM table_1973816_2 WHERE institution = \"Daniel Webster College\"",
    "question_en": "When was Daniel Webster College founded?",
    "question_th": "Daniel Webster College ก่อตั้งขึ้นเมื่อใด",
    "context": "CREATE TABLE table_1973816_2 (founded VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_1973816_2 WHERE institution = \"Southern Vermont College\"",
    "question_en": "Where is Southern Vermont College located?",
    "question_th": "วิทยาลัยเซาเทิร์นเวอร์มอนต์ ตั้งอยู่ที่ไหน",
    "context": "CREATE TABLE table_1973816_2 (location VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT left FROM table_1973816_2 WHERE enrollment = 650",
    "question_en": "In what year did the school with enrollment of 650 leave?",
    "question_th": "โรงเรียนที่มีจำนวน 650 คนออกจากโรงเรียนในปีใด",
    "context": "CREATE TABLE table_1973816_2 (left VARCHAR, enrollment VARCHAR)"
  },
  {
    "answer": "SELECT MIN(races) FROM table_19741316_1 WHERE position = \"14th\"",
    "question_en": "What was the number of races in the season in which the team placed on the 14th position?",
    "question_th": "จำนวนการแข่งขันในฤดูกาลที่ทีมได้อันดับที่ 14 คือเท่าไร?",
    "context": "CREATE TABLE table_19741316_1 (races INTEGER, position VARCHAR)"
  },
  {
    "answer": "SELECT MIN(wins) FROM table_19741316_1",
    "question_en": "What is the lowest number of wins of a team?",
    "question_th": "จำนวนชัยชนะขั้นต่ำของทีมคือเท่าใด?",
    "context": "CREATE TABLE table_19741316_1 (wins INTEGER)"
  },
  {
    "answer": "SELECT institution FROM table_1974482_1 WHERE nickname = \"Statesmen\"",
    "question_en": "Name the institution for statesmen",
    "question_th": "ตั้งชื่อสถาบันสำหรับรัฐบุรุษ",
    "context": "CREATE TABLE table_1974482_1 (institution VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT institution FROM table_1974482_1 WHERE nickname = \"Yellowjackets\"",
    "question_en": "Name the institution for yellowjackets",
    "question_th": "ตั้งชื่อสถาบันสำหรับเสื้อเหลือง",
    "context": "CREATE TABLE table_1974482_1 (institution VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_1974482_1 WHERE institution = \"Hobart College\"",
    "question_en": "Name the type for hobart college",
    "question_th": "ตั้งชื่อประเภทของวิทยาลัยโฮบาร์ต",
    "context": "CREATE TABLE table_1974482_1 (type VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_1974482_1 WHERE founded = 1829",
    "question_en": "Name the location for 1829",
    "question_th": "ตั้งชื่อสถานที่สำหรับปี 1829",
    "context": "CREATE TABLE table_1974482_1 (location VARCHAR, founded VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_1974482_1 WHERE nickname = \"Statesmen\"",
    "question_en": "Name the location of statesmen",
    "question_th": "ตั้งชื่อสถานที่ของรัฐบุรุษ",
    "context": "CREATE TABLE table_1974482_1 (location VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_197446_1 WHERE term_ended = \"January 3, 2011\"",
    "question_en": "What location was the congressional service of which the term ended in January 3, 2011?",
    "question_th": "สถานที่ให้บริการของรัฐสภาซึ่งสิ้นสุดวาระในวันที่ 3 มกราคม 2554 คือสถานที่ใด",
    "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_en": "What branch was involved when the term began in January 3, 1985?",
    "question_th": "สาขาใดที่เกี่ยวข้องเมื่อเริ่มภาคเรียนในวันที่ 3 มกราคม พ.ศ. 2528?",
    "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_en": "What year was the congressional service elected for a term beginning on January 3, 1989?",
    "question_th": "การรับราชการของรัฐสภาได้รับเลือกเป็นวาระใดเริ่มตั้งแต่วันที่ 3 มกราคม พ.ศ. 2532",
    "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_en": "What group was in office when the term ended in January 3, 1993?",
    "question_th": "กลุ่มใดอยู่ในตำแหน่งเมื่อหมดวาระในวันที่ 3 มกราคม พ.ศ. 2536",
    "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_en": "How many terms began when the term ended in January 3, 1989?",
    "question_th": "มีกี่ภาคเรียนที่เริ่มเมื่อหมดวาระในวันที่ 3 มกราคม พ.ศ. 2532",
    "context": "CREATE TABLE table_197446_1 (term_began VARCHAR, term_ended VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(total) FROM table_19744915_22 WHERE rank = 5",
    "question_en": "How many different total points does the couple ranked at number 5 have?",
    "question_th": "คู่รักอันดับที่ 5 มีคะแนนรวมต่างกันกี่คะแนน?",
    "context": "CREATE TABLE table_19744915_22 (total VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT couple FROM table_19744915_22 WHERE vote_percentage = \"21.843%\"",
    "question_en": "What couple had vote percentage of 21.843%?",
    "question_th": "คู่รักคนไหนมีคะแนนโหวต 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_en": "How many judges points did the couple ranked at number 5 have?",
    "question_th": "คู่รักอันดับ 5 มีคะแนนกรรมการกี่คะแนน?",
    "context": "CREATE TABLE table_19744915_22 (judges INTEGER, rank VARCHAR)"
  },
  {
    "answer": "SELECT couple FROM table_19744915_22 WHERE public < 2.0",
    "question_en": "What couple had less than 2.0 points from the public?",
    "question_th": "คู่ไหนได้คะแนนจากสาธารณะน้อยกว่า 2.0 คะแนน?",
    "context": "CREATE TABLE table_19744915_22 (couple VARCHAR, public INTEGER)"
  },
  {
    "answer": "SELECT COUNT(result) FROM table_19744915_17 WHERE couple = \"Ellery and Frankie\"",
    "question_en": "What was the total result for couple Ellery and Frankie?",
    "question_th": "ผลลัพธ์รวมของคู่รัก Ellery และ 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_en": "If the vote percentage is 2.111%, what was the minimum rank?",
    "question_th": "ถ้าเปอร์เซ็นต์การโหวตคือ 2.111% อันดับขั้นต่ำคือเท่าไร?",
    "context": "CREATE TABLE table_19744915_17 (rank INTEGER, vote_percentage VARCHAR)"
  },
  {
    "answer": "SELECT MAX(rank) FROM table_19744915_17 WHERE total = 17",
    "question_en": "If the total is 17, what was the maximum rank amount?",
    "question_th": "หากทั้งหมดคือ 17 จำนวนอันดับสูงสุดคือเท่าใด?",
    "context": "CREATE TABLE table_19744915_17 (rank INTEGER, total VARCHAR)"
  },
  {
    "answer": "SELECT vote_percentage FROM table_19744915_17 WHERE couple = \"Todd and Susie\"",
    "question_en": "For couple Todd and Susie, what was the vote percentage?",
    "question_th": "สำหรับคู่รักท็อดด์และซูซี่ เปอร์เซ็นต์การโหวตคือเท่าใด",
    "context": "CREATE TABLE table_19744915_17 (vote_percentage VARCHAR, couple VARCHAR)"
  },
  {
    "answer": "SELECT couple FROM table_19744915_18 WHERE rank = 9",
    "question_en": "When 9 is the rank who are the couple?",
    "question_th": "เมื่อ 9 คืออันดับใครเป็นคู่?",
    "context": "CREATE TABLE table_19744915_18 (couple VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT MAX(rank) FROM table_19744915_18 WHERE couple = \"Roxanne and Daniel\"",
    "question_en": "When roxanne and daniel are the couple what is the highest rank?",
    "question_th": "เมื่อร็อกแซนและแดเนียลเป็นคู่รักกัน อันดับสูงสุดคืออะไร?",
    "context": "CREATE TABLE table_19744915_18 (rank INTEGER, couple VARCHAR)"
  },
  {
    "answer": "SELECT MAX(total) FROM table_19744915_18 WHERE couple = \"Ellery and Frankie\"",
    "question_en": "When ellery and frankie are the couple what is the highest total?",
    "question_th": "เมื่อเอเลรีและแฟรงกี้เป็นคู่รักกัน ผลรวมสูงสุดคือเท่าใด",
    "context": "CREATE TABLE table_19744915_18 (total INTEGER, couple VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_19744915_18 WHERE public = 8",
    "question_en": "When 8 is the public what are the results?",
    "question_th": "เมื่อ 8 เป็นที่สาธารณะ ผลเป็นอย่างไร?",
    "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_en": "When 8 is the public and the result is safe what is the highest rank?",
    "question_th": "เมื่อ 8 เป็นที่สาธารณะและผลออกมาปลอดภัยอันดับสูงสุดคืออะไร?",
    "context": "CREATE TABLE table_19744915_18 (rank INTEGER, result VARCHAR, public VARCHAR)"
  },
  {
    "answer": "SELECT karen FROM table_19744915_4 WHERE nicky = \"2.5\"",
    "question_en": "Name the karen when nicky is 2.5",
    "question_th": "ตั้งชื่อคาเรนเมื่อนิคกี้อายุ 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_en": "What is the capacity for the school that has the Owl Athletic Complex baseball stadium?",
    "question_th": "โรงเรียนที่มีสนามเบสบอล Owl Athletic Complex สามารถรองรับความจุได้เท่าใด",
    "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_en": "What is the name of the softball stadium for the school that has Eastern Baseball Stadium?",
    "question_th": "สนามซอฟท์บอลของโรงเรียนที่มีสนามเบสบอลตะวันออกชื่ออะไร?",
    "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_en": "What is the name of UMass Boston's softball stadium?",
    "question_th": "สนามซอฟต์บอลของ UMass Boston ชื่ออะไร",
    "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_en": "What is the name of Rhode Island College's softball stadium?",
    "question_th": "สนามซอฟต์บอลของวิทยาลัยโรดไอส์แลนด์ชื่ออะไร",
    "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_en": "How many basketball arenas are there that belong to a school with a capacity of 3,000?",
    "question_th": "โรงเรียนแห่งหนึ่งจุคนได้ 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_en": "What is the name of the baseball stadium for the school with the Murray Center basketball arena?",
    "question_th": "สนามเบสบอลของโรงเรียนที่มีสนามบาสเก็ตบอล Murray Center ชื่ออะไร",
    "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_en": "Where is the Westfield State University located?",
    "question_th": "มหาวิทยาลัยแห่งรัฐ Westfield อยู่ที่ไหน",
    "context": "CREATE TABLE table_1974545_2 (location VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT founded FROM table_1974545_2 WHERE location = \"Salem, Massachusetts\"",
    "question_en": "When was the school in Salem, Massachusetts located?",
    "question_th": "โรงเรียนในเมืองเซเลม รัฐแมสซาชูเซตส์ ตั้งอยู่เมื่อไหร่?",
    "context": "CREATE TABLE table_1974545_2 (founded VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT nickname FROM table_1974545_2 WHERE institution = \"Westfield State University\"",
    "question_en": "What's the nickname of Westfield State University's students?",
    "question_th": "นักศึกษามหาวิทยาลัย Westfield State มีชื่อเล่นว่าอะไร",
    "context": "CREATE TABLE table_1974545_2 (nickname VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT lec_sport FROM table_1974545_2 WHERE institution = \"Fitchburg State University\"",
    "question_en": "What's Fitchburg State University's LEC sport?",
    "question_th": "กีฬา LEC ของ Fitchburg State University คืออะไร",
    "context": "CREATE TABLE table_1974545_2 (lec_sport VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_1974545_2 WHERE nickname = \"Falcons\"",
    "question_en": "Where is the school whose students are nicknamed falcons located?",
    "question_th": "โรงเรียนที่นักเรียนชื่อเล่นเหยี่ยวตั้งอยู่ที่ไหน?",
    "context": "CREATE TABLE table_1974545_2 (location VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT primary_conference FROM table_1974545_2 WHERE institution = \"Salem State University\"",
    "question_en": "What's Salem State University's primary conference?",
    "question_th": "การประชุมหลักของ Salem State University คืออะไร?",
    "context": "CREATE TABLE table_1974545_2 (primary_conference VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_19753079_36 WHERE district = \"North Carolina 9\"",
    "question_en": "Name the incumbent for north carolina 9",
    "question_th": "ตั้งชื่อผู้ดำรงตำแหน่ง 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_en": "Name the total party for north carolina 7",
    "question_th": "ตั้งชื่อพรรคทั้งหมดสำหรับนอร์ธแคโรไลนา 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_en": "Name the incumbent for sue myrick (r) 69.0% jeff doctor (d) 31.0%",
    "question_th": "ตั้งชื่อผู้ดำรงตำแหน่งฟ้อง 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_en": "Name the result for north carolina 7",
    "question_th": "ตั้งชื่อผลลัพธ์สำหรับ 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_en": "What's Babson College's enrollment?",
    "question_th": "Babson College ลงทะเบียนเรียนอะไรบ้าง?",
    "context": "CREATE TABLE table_1974782_1 (enrollment INTEGER, institution VARCHAR)"
  },
  {
    "answer": "SELECT MAX(joined) FROM table_1974782_1 WHERE institution = \"Clark University\"",
    "question_en": "When has Clark University joined the Conference?",
    "question_th": "มหาวิทยาลัยคลาร์กเข้าร่วมการประชุมเมื่อใด",
    "context": "CREATE TABLE table_1974782_1 (joined INTEGER, institution VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_1974782_1 WHERE location = \"New London, Connecticut\"",
    "question_en": "What's the type of the school in New London, Connecticut? ",
    "question_th": " โรงเรียนประเภทไหนในนิวลอนดอน รัฐคอนเนตทิคัต?",
    "context": "CREATE TABLE table_1974782_1 (type VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT MAX(founded) FROM table_1974782_1 WHERE location = \"Springfield, Massachusetts\"",
    "question_en": "When was the school in Springfield, Massachusetts founded?",
    "question_th": "โรงเรียนในเมืองสปริงฟิลด์ รัฐแมสซาชูเซตส์ ก่อตั้งขึ้นเมื่อใด",
    "context": "CREATE TABLE table_1974782_1 (founded INTEGER, location VARCHAR)"
  },
  {
    "answer": "SELECT institution FROM table_1974782_1 WHERE location = \"Worcester, Massachusetts\"",
    "question_en": "What school is located in Worcester, Massachusetts?",
    "question_th": "โรงเรียนใดบ้างที่ตั้งอยู่ใน Worcester, Massachusetts?",
    "context": "CREATE TABLE table_1974782_1 (institution VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_19753079_12 WHERE district = \"Florida 13\"",
    "question_en": "Who are the candidates in Florida 13 district?",
    "question_th": "ผู้สมัครในเขตฟลอริดา 13 คือใคร?",
    "context": "CREATE TABLE table_19753079_12 (candidates VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(candidates) FROM table_19753079_12 WHERE first_elected = 1988",
    "question_en": "How many different pairs of candidates were there for the district first elected in 1988?",
    "question_th": "มีผู้สมัครที่แตกต่างกันกี่คู่สำหรับเขตที่ได้รับการเลือกตั้งครั้งแรกในปี 1988",
    "context": "CREATE TABLE table_19753079_12 (candidates VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_19753079_12 WHERE district = \"Florida 10\"",
    "question_en": "Who were candidates in Florida 10 district?",
    "question_th": "ใครคือผู้สมัครในเขตฟลอริดา 10",
    "context": "CREATE TABLE table_19753079_12 (candidates VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_19753079_12 WHERE district = \"Florida 9\"",
    "question_en": "What party got elected in Florida 9 district?",
    "question_th": "พรรคใดได้รับเลือกในเขตฟลอริดา 9?",
    "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_en": "What is the first round that had #67 the racer's group with the fastest lap?",
    "question_th": "รอบแรกที่มี #67 กลุ่มนักแข่งที่ทำเวลาต่อรอบเร็วที่สุดคือรอบไหน?",
    "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_en": "How many races had #99 gainsco/bob stallings racing in round 10?",
    "question_th": "มีการแข่งขันกี่รายการที่มีการแข่งขัน #99 Gainsco/Bob Stallings ในรอบ 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_en": "What incumbent was first elected in 2009?",
    "question_th": "ผู้ดำรงตำแหน่งใดที่ได้รับเลือกครั้งแรกในปี 2552",
    "context": "CREATE TABLE table_19753079_8 (incumbent VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT first_elected FROM table_19753079_8 WHERE district = \"California 7\"",
    "question_en": "How many were first elected in California 7?",
    "question_th": "มีกี่คนที่ได้รับเลือกครั้งแรกในแคลิฟอร์เนีย 7?",
    "context": "CREATE TABLE table_19753079_8 (first_elected VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_19753079_8 WHERE incumbent = \"George Miller\"",
    "question_en": "What district did George Miller belong to?",
    "question_th": "George Miller อยู่เขตใด",
    "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_en": "When mark critz (d) 50.8% tim burns (r) 49.2% are the candidates what is the party?",
    "question_th": "เมื่อมาร์ค คริตซ์ (d) 50.8% ทิมเบิร์นส์ (r) 49.2% คือผู้สมัคร พรรคอะไร?",
    "context": "CREATE TABLE table_19753079_41 (party VARCHAR, candidates VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_19753079_41 WHERE incumbent = \"Chris Carney\"",
    "question_en": "When chris carney is the incumbent what are the results?",
    "question_th": "เมื่อคริส คาร์นีย์ ดำรงตำแหน่ง ผลลัพธ์จะเป็นอย่างไร?",
    "context": "CREATE TABLE table_19753079_41 (result VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_19753079_41 WHERE first_elected = 1994",
    "question_en": "When 1994 is the first elected what is the district?",
    "question_th": "เมื่อ พ.ศ. 2537 มีการเลือกตั้งครั้งแรก อำเภอคืออะไร?",
    "context": "CREATE TABLE table_19753079_41 (district VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_19753079_41 WHERE district = \"Pennsylvania 3\"",
    "question_en": "When pennsylvania 3 is the district who is the incumbent?",
    "question_th": "เมื่อเพนซิลเวเนีย 3 เป็นอำเภอ ใครเป็นผู้ดำรงตำแหน่ง?",
    "context": "CREATE TABLE table_19753079_41 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_19753079_41 WHERE first_elected = 1984",
    "question_en": "When 1984 is the first elected who are the candidates?",
    "question_th": "เมื่อ พ.ศ. 2527 มีการเลือกตั้งครั้งแรก ใครคือผู้สมัคร?",
    "context": "CREATE TABLE table_19753079_41 (candidates VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_19763199_4 WHERE artist = \"Salva Ortega\"",
    "question_en": "What is Salva Ortega's result?",
    "question_th": "ผลลัพธ์ของ Salva Ortega คืออะไร?",
    "context": "CREATE TABLE table_19763199_4 (result VARCHAR, artist VARCHAR)"
  },
  {
    "answer": "SELECT televotes FROM table_19763199_4 WHERE jury_votes = 4",
    "question_en": "How many televotes are there where there is 4 jury votes?",
    "question_th": "มีผู้โหวตทางโทรทัศน์กี่คนโดยคณะลูกขุนโหวต 4 คน?",
    "context": "CREATE TABLE table_19763199_4 (televotes VARCHAR, jury_votes VARCHAR)"
  },
  {
    "answer": "SELECT jury_votes FROM table_19763199_4 WHERE televotes = 7",
    "question_en": "How many jury votes for the televote of 7?",
    "question_th": "คณะลูกขุนโหวตให้ผู้ถ่ายทอดสดทั้ง 7 คนได้กี่คน?",
    "context": "CREATE TABLE table_19763199_4 (jury_votes VARCHAR, televotes VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_19763199_3 WHERE artist = \"Normativa Vigente\"",
    "question_en": "What is the result for Normativa Vigente?",
    "question_th": "ผลลัพธ์ของ นอร์มาติวา วิเจนเต้ คืออะไร?",
    "context": "CREATE TABLE table_19763199_3 (result VARCHAR, artist VARCHAR)"
  },
  {
    "answer": "SELECT song FROM table_19763199_3 WHERE total_votes = 24",
    "question_en": "What song has 24 votes?",
    "question_th": "เพลงอะไรได้ 24 โหวต?",
    "context": "CREATE TABLE table_19763199_3 (song VARCHAR, total_votes VARCHAR)"
  },
  {
    "answer": "SELECT MIN(total_votes) FROM table_19763199_3",
    "question_en": "What is the least total votes?",
    "question_th": "คะแนนรวมน้อยที่สุดคือเท่าไร?",
    "context": "CREATE TABLE table_19763199_3 (total_votes INTEGER)"
  },
  {
    "answer": "SELECT total_votes FROM table_19763199_3 WHERE artist = \"Carlos Ferrer EAI\"",
    "question_en": "How many votes does Carlos Ferrer Eai have?",
    "question_th": "คาร์ลอส เฟร์เรอร์ เอไอ ได้กี่โหวต?",
    "context": "CREATE TABLE table_19763199_3 (total_votes VARCHAR, artist VARCHAR)"
  },
  {
    "answer": "SELECT MAX(_number) FROM table_197638_6",
    "question_en": "How many players are on this list?",
    "question_th": "มีผู้เล่นกี่คนในรายชื่อนี้?",
    "context": "CREATE TABLE table_197638_6 (_number INTEGER)"
  },
  {
    "answer": "SELECT player FROM table_197638_6 WHERE french_open = 1999",
    "question_en": "Who won the French Open in 1999?",
    "question_th": "ใครชนะเฟรนช์โอเพ่นในปี 1999?",
    "context": "CREATE TABLE table_197638_6 (player VARCHAR, french_open VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_197638_6 WHERE us_open = 1937",
    "question_en": "Who won the US Open in 1937?",
    "question_th": "ใครชนะการแข่งขัน US Open ในปี 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_en": "How many times did Roy Emerson win the Australian Open?",
    "question_th": "Roy Emerson คว้าแชมป์ 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_en": "At what age did Roy Emerson complete the Grand Slam?",
    "question_th": "รอย เอเมอร์สัน คว้าแชมป์แกรนด์สแลมได้เมื่ออายุเท่าไหร่?",
    "context": "CREATE TABLE table_197638_6 (age INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT MIN(rank) FROM table_19764939_1 WHERE total = 2",
    "question_en": "Name the least rank for 2",
    "question_th": "ตั้งชื่ออันดับน้อยที่สุดสำหรับ 2",
    "context": "CREATE TABLE table_19764939_1 (rank INTEGER, total VARCHAR)"
  },
  {
    "answer": "SELECT total FROM table_19764939_1 WHERE player = \"Jamie Carragher\"",
    "question_en": "Name the total for jamie carragher",
    "question_th": "ตั้งชื่อผลรวมของเจมี่ คาร์ราเกอร์",
    "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_en": "Name the total number of club worl cup for djibril cisse",
    "question_th": "ตั้งชื่อจำนวนรวมของคลับเวิร์ลคัพสำหรับจิบริล ซิสเซ่",
    "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_ = \"潜山县 / 潛山縣\"",
    "question_en": "What's the post code of the county with the Chinese name  潜山县 / 潛山縣?",
    "question_th": "รหัสไปรษณีย์ของมณฑลที่มีชื่อภาษาจีน 潜山县 / 潛yama縣 คืออะไร?",
    "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_ = \"太湖县 / 太湖縣\"",
    "question_en": "What's the English name of the county called 太湖县 / 太湖縣 in Chinese?",
    "question_th": "มณฑลที่เรียกว่า 太湖县 / 太湖縣 ในภาษาจีนมีชื่อภาษาอังกฤษว่าอะไร?",
    "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_en": "What's the English name of the county with a postcode 246400?",
    "question_th": "ชื่อเทศมณฑลภาษาอังกฤษที่มีรหัสไปรษณีย์ 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_en": "What's the Chinese (simplified/traditional) name of Susong County?",
    "question_th": "ชื่อภาษาจีน (ตัวย่อ/ตัวเต็ม) ของเทศมณฑลซูซงคืออะไร",
    "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_en": "What's the Pinyin name of the county with a postcode 246500?",
    "question_th": "ชื่อพินอินของเทศมณฑลที่มีรหัสไปรษณีย์ 246500 คืออะไร",
    "context": "CREATE TABLE table_1976898_1 (pinyin VARCHAR, post_code VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(date) FROM table_19778010_5 WHERE opponent = \"Houston\"",
    "question_en": "On how many different dates was a game against Houston played?",
    "question_th": "เกมกับฮูสตันแข่งกันกี่วัน?",
    "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_en": "How many different players did the high assists in games where the high rebounds were done by Sales (10)?",
    "question_th": "มีผู้เล่นกี่คนที่ทำแอสซิสต์สูงในเกมที่ยอดขายรีบาวด์สูง (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_en": "What's the number of the game played on June 22?",
    "question_th": "วันที่ 22 มิถุนายน แข่งกันที่หมายเลขเท่าไร?",
    "context": "CREATE TABLE table_19778010_5 (game INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_19778010_5 WHERE game = 8",
    "question_en": "Who was game number 8 played against?",
    "question_th": "เกมหมายเลข 8 เล่นกับใคร?",
    "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_en": "Who did the high rebounds in the game in which five players (3) did the high assists?",
    "question_th": "ใครเป็นผู้ทำรีบาวด์สูงในเกมที่มีผู้เล่น 5 คน (3) ทำแอสซิสต์ได้สูง?",
    "context": "CREATE TABLE table_19778010_5 (high_rebounds VARCHAR, high_assists VARCHAR)"
  },
  {
    "answer": "SELECT nosotros___nosotras FROM table_1977630_2 WHERE él___ella___usted = \"piense\"",
    "question_en": "What are all  the conjugated forms of the verb where the el/ ella/usted verb is piense?",
    "question_th": "กริยารูปแบบผันทั้งหมดที่มีกริยา el/ ella/usted คือ piense คืออะไร?",
    "context": "CREATE TABLE table_1977630_2 (nosotros___nosotras VARCHAR, él___ella___usted VARCHAR)"
  },
  {
    "answer": "SELECT yo FROM table_1977630_2 WHERE vosotros___vosotras = \"moláis\"",
    "question_en": "What are all  the conjugated forms of the verb moler where the vosotros / vosotras is moláis for the yo tense?",
    "question_th": "รูปแบบการผันคำกริยาทั้งหมดของคำกริยา moler โดยที่ vosotros / vosotras เป็น moláis สำหรับ 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_en": "how many verbs have the yo form as sienta?",
    "question_th": "โย่มีรูปแบบเป็น sienta กี่คำ?",
    "context": "CREATE TABLE table_1977630_2 (verbs VARCHAR, yo VARCHAR)"
  },
  {
    "answer": "SELECT él___ella___usted FROM table_1977630_2 WHERE vos__ * _ = \"muelas / molás\"",
    "question_en": "What  us the conjucated form(s)  of  el/ella/ usted when the Vos (*) is muelas / molás?",
    "question_th": "เราเป็นรูปแบบการผันของ el/ella/ usted เมื่อ Vos (*) คือ muelas / molás?",
    "context": "CREATE TABLE table_1977630_2 (él___ella___usted VARCHAR, vos__ VARCHAR, _ VARCHAR)"
  },
  {
    "answer": "SELECT vos__ * _ FROM table_1977630_2 WHERE él___ella___usted = \"muela\"",
    "question_en": "What are the forms of the conjucated vos(*) where él / ella / usted is muela",
    "question_th": "รูปแบบของการผัน vos(*) คืออะไร โดยที่ él / ella / usted คือ muela",
    "context": "CREATE TABLE table_1977630_2 (vos__ VARCHAR, _ VARCHAR, él___ella___usted VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(till_mathura) FROM table_19787093_1 WHERE till_agra = 500",
    "question_en": "How many have the Till Agra of 500?",
    "question_th": "Till Agra ของ 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_en": "What kind of vehicle is the agra 1050?",
    "question_th": "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_en": "If the till aligarh is 150, what the mac till mathura?",
    "question_th": "ถ้าค่าจนถึงอลิการ์ห์คือ 150 แล้วค่า mac จนถึงมถุราจะเท่ากับเท่าไร?",
    "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_en": "If the till agra is 1050, what is the max round trip?",
    "question_th": "หากค่าทิลอักราคือ 1,050 ค่าไปกลับสูงสุดคือเท่าใด",
    "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_en": "If the vehicle category is multi-axle vehicle, what is the till aligarh?",
    "question_th": "ถ้าประเภทรถเป็นรถหลายเพลา ค่าทิลการ์คือเท่าไร",
    "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_en": "What's the lowest  number of a game where S. Johnson (3) did the most high assists?",
    "question_th": "หมายเลขต่ำสุดของเกมที่เอส. จอห์นสัน (3) แอสซิสต์ได้สูงที่สุดคือเท่าใด?",
    "context": "CREATE TABLE table_19789597_6 (game INTEGER, high_assists VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_19789597_6 WHERE date = \"July 12\"",
    "question_en": "Who was the game on July 12 played against?",
    "question_th": "เกมเมื่อวันที่ 12 กรกฎาคมเล่นกับใคร?",
    "context": "CREATE TABLE table_19789597_6 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_19789597_6 WHERE high_rebounds = \"McWilliams (8)\"",
    "question_en": "What was the record in the game where McWilliams (8) did the most high rebounds?",
    "question_th": "สถิติในเกมที่แม็ควิลเลียมส์ (8) รีบาวด์สูงที่สุดคือเท่าไหร่?",
    "context": "CREATE TABLE table_19789597_6 (record VARCHAR, high_rebounds VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_19789597_6 WHERE date = \"July 7\"",
    "question_en": "Who was the game on July 7 played against?",
    "question_th": "เกมเมื่อวันที่ 7 กรกฎาคมแข่งกับใครคือใคร?",
    "context": "CREATE TABLE table_19789597_6 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT owner FROM table_1979203_1 WHERE callsign = \"WLIW\"",
    "question_en": "what is the owner of the callsign wliw",
    "question_th": "เจ้าของสัญญาณเรียกชื่อ wliw คืออะไร",
    "context": "CREATE TABLE table_1979203_1 (owner VARCHAR, callsign VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(callsign) FROM table_1979203_1 WHERE branding = \"Telemundo 47\"",
    "question_en": "how many callsigns are for the branding telemundo 47",
    "question_th": "จำนวนสัญญาณเรียกสำหรับการสร้างแบรนด์ telemundo 47",
    "context": "CREATE TABLE table_1979203_1 (callsign VARCHAR, branding VARCHAR)"
  },
  {
    "answer": "SELECT _virtual_ FROM table_1979203_1 WHERE callsign = \"WNET\"",
    "question_en": "what is the virtual callsign if is wnet",
    "question_th": "สัญญาณเรียกเสมือนคืออะไรหากเป็น wnet",
    "context": "CREATE TABLE table_1979203_1 (_virtual_ VARCHAR, callsign VARCHAR)"
  },
  {
    "answer": "SELECT branding FROM table_1979203_1 WHERE _virtual_ = \"13.1\"",
    "question_en": "what is the name of the branding where the virtual is 13.1",
    "question_th": "ชื่อของการสร้างแบรนด์ที่เสมือนจริงคือ 13.1.1 คืออะไร",
    "context": "CREATE TABLE table_1979203_1 (branding VARCHAR, _virtual_ VARCHAR)"
  },
  {
    "answer": "SELECT MIN(district) FROM table_1979619_3 WHERE residence = \"Newtown Square\"",
    "question_en": "Name the district for newtown square",
    "question_th": "ตั้งชื่อเขตสำหรับนิวทาวน์สแควร์",
    "context": "CREATE TABLE table_1979619_3 (district INTEGER, residence VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_1979619_3 WHERE residence = \"Bensalem\"",
    "question_en": "Name the party for bensalem",
    "question_th": "ตั้งชื่อพรรคให้เบนซาเลม",
    "context": "CREATE TABLE table_1979619_3 (party VARCHAR, residence VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(term_ends) FROM table_1979619_3 WHERE residence = \"Bethlehem\"",
    "question_en": "Name the term ends for bethlehem",
    "question_th": "ตั้งชื่อคำที่ลงท้ายสำหรับเบธเลเฮม",
    "context": "CREATE TABLE table_1979619_3 (term_ends VARCHAR, residence VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(district) FROM table_1979619_3 WHERE representative = \"Rob Teplitz\"",
    "question_en": "Name the total number of districts for rob teplitz",
    "question_th": "ตั้งชื่อจำนวนเขตทั้งหมดสำหรับ rob teplitz",
    "context": "CREATE TABLE table_1979619_3 (district VARCHAR, representative VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_19810459_1 WHERE background = \"Business major\"",
    "question_en": "What was the result for the contestant whose background was as a business major?",
    "question_th": "ผลลัพธ์ของผู้เข้าแข่งขันที่มีพื้นฐานเป็นสาขาวิชาธุรกิจคืออะไร?",
    "context": "CREATE TABLE table_19810459_1 (result VARCHAR, background VARCHAR)"
  },
  {
    "answer": "SELECT background FROM table_19810459_1 WHERE result = \"11th place\"",
    "question_en": "What was the background of the contestant whose result was 11th place?",
    "question_th": "ผู้เข้าแข่งขันที่ได้อันดับที่ 11 มีภูมิหลังอย่างไร?",
    "context": "CREATE TABLE table_19810459_1 (background VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(contestant) FROM table_19810459_1 WHERE background = \"Internet dreamer\"",
    "question_en": "For how many contestants was the background internet dreamer? ",
    "question_th": " มีผู้เข้าแข่งขันกี่คนที่เป็นนักฝันทางอินเทอร์เน็ตเบื้องหลัง",
    "context": "CREATE TABLE table_19810459_1 (contestant VARCHAR, background VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_19810459_1 WHERE background = \"Small business owner\"",
    "question_en": "What was the result for the contestant who was a small business owner? ",
    "question_th": "ผลลัพธ์ของผู้เข้าแข่งขันที่เป็นเจ้าของธุรกิจขนาดเล็กเป็นอย่างไร?",
    "context": "CREATE TABLE table_19810459_1 (result VARCHAR, background VARCHAR)"
  },
  {
    "answer": "SELECT original_team FROM table_19810459_1 WHERE result = \"10th place\"",
    "question_en": "What team was the contestant who finished in 10th place originally on? ",
    "question_th": " ผู้เข้าแข่งขันที่จบอันดับที่ 10 เดิมคือทีมใด",
    "context": "CREATE TABLE table_19810459_1 (original_team VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_19810459_1 WHERE background = \"Financial consultant\"",
    "question_en": "What is the hometown of the contestant whose background is as a financial consultant? ",
    "question_th": " บ้านเกิดของผู้เข้าแข่งขันที่มีพื้นฐานเป็นที่ปรึกษาทางการเงินคือเมืองใด",
    "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_en": "If the rating/share is 3.8/10, what is the total number of rating?",
    "question_th": "หากเรตติ้ง/แชร์ 3.8/10 คะแนนรวมเป็นเท่าใด",
    "context": "CREATE TABLE table_19805130_3 (rating VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(share) FROM table_19805130_3 WHERE rank__night_ = \"9\"",
    "question_en": "If the night rank is 9, what is the total share number?",
    "question_th": "ถ้าคืนที่ 9 ยอดแชร์คือเท่าไร?",
    "context": "CREATE TABLE table_19805130_3 (share VARCHAR, rank__night_ VARCHAR)"
  },
  {
    "answer": "SELECT episode FROM table_19805130_3 WHERE rank__night_ = \"9\"",
    "question_en": "What is the name of the episode with a night rank of 9?",
    "question_th": "ตอนที่ได้เรตติ้งคืนที่ 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_en": "If the amount of viewers is 5.14 million and the rating/share is 2.0/6, what is the ranking?",
    "question_th": "ถ้ายอดคนดู 5.14 ล้านคน และเรตติ้ง/แชร์ 2.0/6 อันดับเท่าไหร่คะ?",
    "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_en": "Name the writers for swedish sailor",
    "question_th": "ตั้งชื่อผู้เขียนกะลาสีเรือชาวสวีเดน",
    "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_en": "Name the season number for herr ostropolyer, pastry chef",
    "question_th": "ตั้งชื่อหมายเลขฤดูกาลสำหรับ herr ostropolyer พ่อครัวทำขนม",
    "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_en": "Name the principal of Northfield Junior-Senior High School.",
    "question_th": "ตั้งชื่ออาจารย์ใหญ่ของ 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_en": "What is the name of the school/s in North Manchester?",
    "question_th": "โรงเรียนในนอร์ธแมนเชสเตอร์ชื่ออะไร?",
    "context": "CREATE TABLE table_1984697_85 (school VARCHAR, city___town VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_1984697_85 WHERE size = 604",
    "question_en": "Name the school/s with is size of 604.",
    "question_th": "ตั้งชื่อโรงเรียนด้วยขนาด 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_en": "What is the IDOE Profile in North Manchester?",
    "question_th": "โปรไฟล์ IDOE ในนอร์ธแมนเชสเตอร์คืออะไร?",
    "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_en": "What are the grades served at Manchester Junior-Senior High School?",
    "question_th": "ที่ 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_en": "Writer Max Ehrlich, what is the minimum series number?",
    "question_th": "นักเขียน Max Ehrlich หมายเลขซีรี่ส์ขั้นต่ำคือเท่าไร?",
    "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_en": "From writer Denne Bart Petitclerc, what is the maximum season number?",
    "question_th": "จากนักเขียน Denne Bart Petitclerc หมายเลขฤดูกาลสูงสุดคือเท่าใด",
    "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_en": "From writer Max Ehrlich, what is the total amount of series numbers?",
    "question_th": "จากนักเขียน แม็กซ์ เออร์ลิช จำนวนอนุกรมทั้งหมดคือเท่าใด",
    "context": "CREATE TABLE table_19852975_4 (series__number VARCHAR, writer_s_ VARCHAR)"
  },
  {
    "answer": "SELECT winning_driver FROM table_19850806_3 WHERE rd = \"3\"",
    "question_en": "Who is the winning driver when rd. is 3?",
    "question_th": "ใครเป็นคนขับที่ชนะเมื่อถ. คือ 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_en": "How many winning drivers are there when the winning team is Bryan herta autosport?",
    "question_th": "มีนักแข่งที่ชนะกี่คนเมื่อทีมที่ชนะคือ 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_en": "Which report is where rd. is 9?",
    "question_th": "รายงานไหนอยู่ที่ไหน ถ. คือ 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_en": "Who held the fastest lap in the race in texas and dario franchitti is the winning driver?",
    "question_th": "ใครเป็นผู้ทำรอบได้เร็วที่สุดในการแข่งขันที่เท็กซัส และ dario Franchitti คือนักแข่งที่ชนะ",
    "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_en": "How many Huckleberry Hound episodes were aired on 1960.09.18?",
    "question_th": "Huckleberry Hound ออกอากาศกี่ตอนในวันที่ 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_en": "What is the Pixie and Dixie skit in episode 7?",
    "question_th": "Pixie และ Dixie skit ในตอนที่ 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_en": "What is the Yogi Bear that aired on 1959.12.21?",
    "question_th": "Yogi Bear ที่ออกอากาศวันที่ 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_en": "From brand Yes! FM 101.1, what was the frequency?",
    "question_th": "จากแบรนด์ ใช่! FM 101.1 ความถี่เท่าไหร่คะ?",
    "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_en": "If the branding is Yes! FM 91.1 Boracay, what is the power?",
    "question_th": "หากแบรนด์คือ Yes! FM 91.1 โบราไกย์ พลังอะไร?",
    "context": "CREATE TABLE table_19874169_3 (power__kw_ VARCHAR, branding VARCHAR)"
  },
  {
    "answer": "SELECT branding FROM table_19874169_3 WHERE callsign = \"DXYR\"",
    "question_en": "If the call sign is DXYR, what is the branding?",
    "question_th": "หากสัญญาณเรียกขานคือ DXYR จะเป็นตราสินค้าอะไร?",
    "context": "CREATE TABLE table_19874169_3 (branding VARCHAR, callsign VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_1986692_1 WHERE playoffs = \"divisional Semifinals\"",
    "question_en": "When divisional semifinals are the playoffs what is the year?",
    "question_th": "เมื่อรอบรองชนะเลิศประเภทดิวิชั่นเป็นรอบตัดเชือกในปีใด?",
    "context": "CREATE TABLE table_1986692_1 (year VARCHAR, playoffs VARCHAR)"
  },
  {
    "answer": "SELECT regular_season FROM table_1986692_1 WHERE playoffs = \"divisional Finals\"",
    "question_en": "When divisional finals are the playoffs what is the regular season?",
    "question_th": "เมื่อรอบชิงชนะเลิศแบบแบ่งกลุ่มเป็นรอบตัดเชือกฤดูกาลปกติคืออะไร?",
    "context": "CREATE TABLE table_1986692_1 (regular_season VARCHAR, playoffs VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(division) FROM table_1986692_1 WHERE year = \"1992\"",
    "question_en": "When 1992 is the year how many divisions are there?",
    "question_th": "เมื่อถึงปี 1992 มีกี่แผนก?",
    "context": "CREATE TABLE table_1986692_1 (division VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT league FROM table_1986692_1 WHERE open_cup = \"Final\"",
    "question_en": "When final is the open cup what is the league?",
    "question_th": "เมื่อรอบชิงชนะเลิศคือโอเพ่นคัพ ลีกคืออะไร?",
    "context": "CREATE TABLE table_1986692_1 (league VARCHAR, open_cup VARCHAR)"
  },
  {
    "answer": "SELECT open_cup FROM table_1986692_1 WHERE year = \"1995\"",
    "question_en": "When 1995 is the year what is the open cup?",
    "question_th": "เมื่อ พ.ศ. 2538 เป็นปีที่ถ้วยเปิดคืออะไร?",
    "context": "CREATE TABLE table_1986692_1 (open_cup VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(division) FROM table_1986692_1 WHERE year = \"2008\"",
    "question_en": "When 2008 is the year how many divisions are there?",
    "question_th": "เมื่อถึงปี 2551 มีกี่แผนก?",
    "context": "CREATE TABLE table_1986692_1 (division VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT MIN(stumped) FROM table_19870086_24 WHERE dismissals = 13",
    "question_en": "what is the least number of stumps in a game with 13 dismissals",
    "question_th": "จำนวนตอไม้น้อยที่สุดในเกมที่มีการไล่ออก 13 ครั้งคือเท่าใด",
    "context": "CREATE TABLE table_19870086_24 (stumped INTEGER, dismissals VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(dismissals) FROM table_19870086_24 WHERE innings = 8",
    "question_en": "what is the highest number of dismissals in a match with 8 innings",
    "question_th": "จำนวนการไล่ออกสูงสุดในการแข่งขัน 8 อินนิงคือเท่าใด",
    "context": "CREATE TABLE table_19870086_24 (dismissals VARCHAR, innings VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(rank) FROM table_19870086_24 WHERE player = \"Adam Gilchrist\"",
    "question_en": "what is the rank of adam gilchrist",
    "question_th": "อดัม กิลคริสต์มียศอะไร",
    "context": "CREATE TABLE table_19870086_24 (rank VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_1987995_5 WHERE team = \"Twins\"",
    "question_en": "Where is the ballpark of the Twins?",
    "question_th": "สนามเบสบอลของ Twins อยู่ที่ไหน",
    "context": "CREATE TABLE table_1987995_5 (location VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(location) FROM table_1987995_5 WHERE ballpark = \"Memorial Stadium\"",
    "question_en": "How many locations have been used for ballparks named Memorial Stadium?",
    "question_th": "สนามเบสบอลชื่อ Memorial Stadium มีการใช้สถานที่กี่แห่ง",
    "context": "CREATE TABLE table_1987995_5 (location VARCHAR, ballpark VARCHAR)"
  },
  {
    "answer": "SELECT MIN(closed) FROM table_1987995_5 WHERE demod = 1994",
    "question_en": "When was the park demolished in 1994 closed?",
    "question_th": "สวนสาธารณะถูกรื้อถอนในปี พ.ศ. 2537 เมื่อใด",
    "context": "CREATE TABLE table_1987995_5 (closed INTEGER, demod VARCHAR)"
  },
  {
    "answer": "SELECT flag FROM table_19872699_1 WHERE builder = \"Green Marine\"",
    "question_en": "Which flag was on the Green Marine's boat?",
    "question_th": "ธงใดอยู่บนเรือของ Green Marine?",
    "context": "CREATE TABLE table_19872699_1 (flag VARCHAR, builder VARCHAR)"
  },
  {
    "answer": "SELECT builder FROM table_19872699_1 WHERE skipper = \"Ken Read\"",
    "question_en": "Who build the boat where Ken Read was the skipper?",
    "question_th": "ใครเป็นคนสร้างเรือ โดยที่ เคน รีด เป็นกัปตันเรือ?",
    "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_en": "Farr Yacht Design designed boats for how many country/flags?",
    "question_th": "Farr Yacht Design ออกแบบเรือให้กี่ประเทศ/ธง?",
    "context": "CREATE TABLE table_19872699_1 (flag VARCHAR, design_firm VARCHAR)"
  },
  {
    "answer": "SELECT builder FROM table_19872699_1 WHERE design_firm = \"Botin Carkeek\"",
    "question_en": "Who were the builders of the boat designed by Botin Carkeek?",
    "question_th": "ใครคือผู้สร้างเรือที่ออกแบบโดย 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_en": "In how many locations was the episode with the Bailey family filmed?",
    "question_th": "ตอนที่ครอบครัวเบลีย์ถ่ายทำในสถานที่กี่แห่ง",
    "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_en": "How many episodes with different season numbers had the Jeans family in them?",
    "question_th": "ครอบครัวยีนส์มีกี่ตอนที่มีหมายเลขซีซั่นต่างกัน",
    "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_en": "When did the episode with the Ririe family air for the first time?",
    "question_th": "ตอนกับครอบครัว Ririe ออกอากาศครั้งแรกเมื่อไหร่?",
    "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_en": "Where was the episode with series number US9 filmed?",
    "question_th": "ตอนที่ซีรีส์หมายเลข US9 ถ่ายทำที่ไหน?",
    "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_en": "What's the season number of the episode with series number US6?",
    "question_th": "หมายเลขซีซันของตอนที่มีหมายเลขซีรีส์ 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_en": "What family was featured in episode us14 of the series?",
    "question_th": "ครอบครัวใดปรากฏในตอนที่ 14 ของซีรีส์นี้?",
    "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_en": "How many locations featured the Webb Family?",
    "question_th": "มีสถานที่กี่แห่งที่เป็นจุดเด่นของตระกูลเวบบ์?",
    "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_en": "What episode in the season was episode us17 in the series?",
    "question_th": "ตอนที่ 17 ของซีซั่นนี้คือตอนไหนคะ?",
    "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_en": "What episode in the season was episode us18 in the series?",
    "question_th": "ตอนที่ 18 ของซีซั่นนี้คือตอนไหนคะ?",
    "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_en": "What episode in the series was the Amaral family featured?",
    "question_th": "ครอบครัว Amaral นำเสนอตอนใดในซีรีส์นี้?",
    "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_en": "Who is the round winner when entrant is craven mild racing?",
    "question_th": "ใครคือผู้ชนะในรอบนี้เมื่อผู้เข้าร่วมแข่งขันอย่างดุเดือด?",
    "context": "CREATE TABLE table_19886463_1 (round_winner VARCHAR, entrant VARCHAR)"
  },
  {
    "answer": "SELECT round_winner FROM table_19886463_1 WHERE circuit = \"Wanneroo Park\"",
    "question_en": "Who is the round winner of the wanneroo park circuit?",
    "question_th": "ใครคือผู้ชนะรอบ 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_en": "Which circuit has two heats as the format?",
    "question_th": "วงจรใดมีความร้อนสองรูปแบบตามรูปแบบ?",
    "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_en": "Name the original air date for the potter family",
    "question_th": "ตั้งชื่อวันออกอากาศเดิมของครอบครัวพอตเตอร์",
    "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_en": "how many original air date where family/families is the ryder family and the schwartz family",
    "question_th": "ออกอากาศตอนแรกกี่วันโดยที่ครอบครัว/ครอบครัวคือครอบครัวไรเดอร์และตระกูลชวาร์ตษ์",
    "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_en": "where was the abbas family and the pickering family located",
    "question_th": "ตระกูลอับบาสและตระกูลผู้เลือกสรรอยู่ที่ไหน",
    "context": "CREATE TABLE table_19897294_9 (location_s_ VARCHAR, family_families VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_19897896_7 WHERE position = \"Forward\"",
    "question_en": "in which class is the position forward",
    "question_th": "ชนชั้นไหนมีตำแหน่งข้างหน้า",
    "context": "CREATE TABLE table_19897896_7 (class VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_19897896_7 WHERE position = \"Center\"",
    "question_en": "in which season the position was center",
    "question_th": "ตำแหน่งตรงกลางในฤดูกาลใด",
    "context": "CREATE TABLE table_19897896_7 (season VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_19897896_7 WHERE university = \"Ohio state\"",
    "question_en": "in which class was the ohio state university",
    "question_th": "มหาวิทยาลัยแห่งรัฐโอไฮโออยู่ในชั้นเรียนใด",
    "context": "CREATE TABLE table_19897896_7 (class VARCHAR, university VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(family_families) FROM table_19897294_8 WHERE no_overall = \"UK30\"",
    "question_en": "Name the number of families for uk30",
    "question_th": "ตั้งชื่อจำนวนครอบครัวสำหรับ 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_en": "Name the number in series for in the ward family and the wren family",
    "question_th": "ตั้งชื่อหมายเลขตามลำดับในครอบครัววอร์ดและตระกูลนกกระจิบ",
    "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_en": "Name the family for uk31",
    "question_th": "ตั้งชื่อครอบครัวสำหรับ uk31",
    "context": "CREATE TABLE table_19897294_8 (family_families VARCHAR, no_overall VARCHAR)"
  },
  {
    "answer": "SELECT MIN(no_in_series) FROM table_19897294_8",
    "question_en": "Name the least number in series",
    "question_th": "ตั้งชื่อจำนวนที่น้อยที่สุดในชุด",
    "context": "CREATE TABLE table_19897294_8 (no_in_series INTEGER)"
  },
  {
    "answer": "SELECT COUNT(location_s_) FROM table_19897294_8 WHERE no_overall = \"UK32\"",
    "question_en": "Name the number of locations for uk32",
    "question_th": "ตั้งชื่อจำนวนสถานที่สำหรับ 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_en": "Name the air date for uk17",
    "question_th": "ตั้งชื่อวันที่ออกอากาศสำหรับ 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_en": "Name the family/families uk17",
    "question_th": "ตั้งชื่อครอบครัว/ครอบครัว 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_en": "What is the number of the truck that has the crew chief Billy Wilburn?",
    "question_th": "รถบรรทุกคันไหนที่มีหัวหน้าลูกเรือ บิลลี่ วิลเบิร์น?",
    "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_en": "What number truck is owned by Stephen Germain?",
    "question_th": "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_en": "What team is sponsored by d3 Outdoors?",
    "question_th": "ทีมใดที่ได้รับการสนับสนุนจาก 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_en": "How many teams does Jeff Wyler own?",
    "question_th": "Jeff Wyler เป็นเจ้าของทีมกี่ทีม?",
    "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_en": "Who is the primary sponsor for crew cheif Rick Ren's team?",
    "question_th": "ใครคือผู้สนับสนุนหลักของทีมหัวหน้าทีมของ Rick Ren?",
    "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_en": "Who sponsors owner Bobby Dotter's team?",
    "question_th": "ใครเป็นผู้สนับสนุนทีมของเจ้าของ Bobby Dotter?",
    "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_en": "What's the price of the team whose captain is Sanath Jayasuriya?",
    "question_th": "ทีมที่มีกัปตัน สนั่น ชยสุริยา ราคาเท่าไหร่?",
    "context": "CREATE TABLE table_19905183_1 (price VARCHAR, captain VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_19905183_1 WHERE province = \"Eastern\"",
    "question_en": "What team is from the Eastern province?",
    "question_th": "ทีมไหนมาจากจังหวัดภาคตะวันออก?",
    "context": "CREATE TABLE table_19905183_1 (team VARCHAR, province VARCHAR)"
  },
  {
    "answer": "SELECT head_coach FROM table_19905183_1 WHERE price = \"$3.22 million\"",
    "question_en": "Who's the head coach of the team with a price of $3.22 million?",
    "question_th": "เฮดโค้ชทีมไหนราคา 3.22 ล้านเหรียญสหรัฐ?",
    "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_en": "In how many teams is Waqar Younis the head coach?",
    "question_th": "Waqar Younis เป็นหัวหน้าโค้ชกี่ทีม?",
    "context": "CREATE TABLE table_19905183_1 (team VARCHAR, head_coach VARCHAR)"
  },
  {
    "answer": "SELECT province FROM table_19905183_1 WHERE team = \"Ruhuna Royals\"",
    "question_en": "What province does the Ruhuna Royals team come from?",
    "question_th": "ทีม Ruhuna Royals มาจากจังหวัดไหน?",
    "context": "CREATE TABLE table_19905183_1 (province VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT birth_date FROM table_19900792_1 WHERE player = \"Alexey Kuleshov\"",
    "question_en": "When was Alexey Kuleshov born?",
    "question_th": "Alexey Kuleshov เกิดเมื่อไหร่?",
    "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_en": "What is the trigger pack on the Colt 602 with the a1 rear sight type? ",
    "question_th": " Trigger Pack ของ Colt 602 ชนิดเล็งหลัง a1 คืออะไร?",
    "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_en": "What is the rear sight type on the model with the acr muzzle brake device? ",
    "question_th": "กล้องมองหลังในรุ่นที่มีอุปกรณ์เบรกปากกระบอกปืน ACR คืออะไร?",
    "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_en": "Which muzzle devices are on the Colt 603? ",
    "question_th": " อุปกรณ์ปากกระบอกปืนใดบ้างที่อยู่ใน 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_en": "How many millions of people in the US watched the episode with season number 8?",
    "question_th": "มีกี่ล้านคนในสหรัฐอเมริกาที่ดูตอนที่มีซีซั่น 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_en": "How many episodes had the series number of 38?",
    "question_th": "ซีรีย์ 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_en": "How many different numbers of people in the US who'd seen the episode with a season number 8 are there?",
    "question_th": "มีผู้คนจำนวนเท่าใดในสหรัฐฯ ที่เคยดูตอนที่มีซีซันที่ 8 บ้าง",
    "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_en": "Name the rufus guest for 15 december 2008",
    "question_th": "ตั้งชื่อแขกรูฟัสสำหรับวันที่ 15 ธันวาคม 2551",
    "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_en": "Name the winner for jason byrne",
    "question_th": "ตั้งชื่อผู้ชนะให้กับ 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_en": "Name the rufus guest for episode 1x07",
    "question_th": "ตั้งชื่อแขกรับเชิญรูฟัสสำหรับตอนที่ 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_en": "Name the winner for 26 january 2009",
    "question_th": "ประกาศรายชื่อผู้โชคดีประจำวันที่ 26 มกราคม พ.ศ. 2552",
    "context": "CREATE TABLE table_19930660_1 (winner VARCHAR, first_broadcast VARCHAR)"
  },
  {
    "answer": "SELECT first_broadcast FROM table_19930660_2 WHERE episode = \"2x11\"",
    "question_en": "When was episode 2x11 aired for the first time?",
    "question_th": "ตอนที่ 2x11 ออกอากาศครั้งแรกเมื่อไหร่?",
    "context": "CREATE TABLE table_19930660_2 (first_broadcast VARCHAR, episode VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_19930660_2 WHERE rufus_guest = \"Sean Lock\"",
    "question_en": "Who won the episode in which Sean Lock was Rufus's guest?",
    "question_th": "ใครชนะตอนที่ Sean Lock เป็นแขกรับเชิญของ Rufus?",
    "context": "CREATE TABLE table_19930660_2 (winner VARCHAR, rufus_guest VARCHAR)"
  },
  {
    "answer": "SELECT first_broadcast FROM table_19930660_2 WHERE episode = \"2x10\"",
    "question_en": "When was the episode 2x10 aired for the first time?",
    "question_th": "ตอนที่ 2x10 ออกอากาศครั้งแรกเมื่อไหร่?",
    "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_en": "Who was Marcus's guest in the episode when Rufus's guest was Rory McGrath?",
    "question_th": "ใครเป็นแขกของ Marcus ในตอนที่แขกของ Rufus คือ 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_en": "How many items were under ranking l.a.(2) when the world ranking was 21st?",
    "question_th": "มีสินค้ากี่รายการที่อยู่ภายใต้การจัดอันดับ la(2) เมื่ออันดับโลกอยู่ที่ 21?",
    "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_en": "What was the author/editor/source when the l.a. ranking was 1st?",
    "question_th": "ผู้แต่ง/บรรณาธิการ/แหล่งที่มาคือใครเมื่ออันดับที่ 1 ของ la อยู่?",
    "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_en": "How many years were listed under index when there were 157 countries sampled?",
    "question_th": "กี่ปีที่อยู่ในดัชนีเมื่อมี 157 ประเทศสุ่มตัวอย่าง?",
    "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_en": "What was the publication year ranking l.a. is 1st?",
    "question_th": "ปีที่ตีพิมพ์อันดับ la อยู่ที่ 1 คืออะไร?",
    "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_en": "How many years were recorded when world ranking was 21st?",
    "question_th": "กี่ปีบันทึกไว้เมื่ออันดับโลกอยู่ที่ 21?",
    "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_en": "What Wireless LAN had a process technology of 90nm and a Carmel centrino?",
    "question_th": "LAN ไร้สายใดที่มีเทคโนโลยีการผลิตขนาด 90 นาโนเมตร และ 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_en": "How many series had the chipset of the Intel Centrino Ultimate-N 6300 wireless LAN with the codename Arrandale?",
    "question_th": "มีชิปเซ็ตของ LAN ไร้สาย Intel Centrino Ultimate-N 6300 ที่มีชื่อรหัส 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_en": "What's the process technology of the Intel WiFi Link 5100 wireless LAN?",
    "question_th": "เทคโนโลยีกระบวนการของ LAN ไร้สาย Intel WiFi Link 5100 คืออะไร",
    "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_en": "What type of processor does the Intel Centrino Wireless-N 105 wireless LAN have?",
    "question_th": "LAN ไร้สาย Intel Centrino Wireless-N 105 มีโปรเซสเซอร์ประเภทใด",
    "context": "CREATE TABLE table_199666_1 (processor VARCHAR, wireless_lan VARCHAR)"
  },
  {
    "answer": "SELECT codename FROM table_199666_1 WHERE centrino = \"Chief River\"",
    "question_en": "What's the code name of the wireless LAN with Chief River Centrino?",
    "question_th": "ชื่อรหัสของ LAN ไร้สายกับ 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_en": "on 19 april 1985 how many of number last flew",
    "question_th": "เมื่อวันที่ 19 เมษายน พ.ศ. 2528 บินไปล่าสุดกี่หมายเลข",
    "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_en": "what is the registration located on 31 january 1975 where first flew?",
    "question_th": "ทะเบียนวันที่ 31 มกราคม พ.ศ. 2518 บินครั้งแรกที่ใด?",
    "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_en": "at what location is the last flew on 11 june 2000",
    "question_th": "บินครั้งสุดท้าย ณ ตำแหน่งใด เมื่อวันที่ 11 มิถุนายน พ.ศ. 2543",
    "context": "CREATE TABLE table_1997759_1 (location VARCHAR, last_flew VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(number) FROM table_1997759_1 WHERE registration = \"F-BVFF\"",
    "question_en": "how many number is located at registration f-bvff?",
    "question_th": "ที่ทะเบียน 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_en": "Who is the television commentator when the radio commentator is Galyna Babiy?",
    "question_th": "ใครคือผู้บรรยายโทรทัศน์ ในเมื่อ 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_en": "Who is the television commentator when the spokesperson is Kateryna Osadcha?",
    "question_th": "ใครคือผู้ประกาศข่าวโทรทัศน์ ในเมื่อ แคทรีนา โอซาดชา โฆษกเป็นโฆษก?",
    "context": "CREATE TABLE table_1998037_9 (television_commentator VARCHAR, spokesperson VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year_s_) FROM table_1998037_9 WHERE spokesperson = \"Ruslana\"",
    "question_en": "What is the year when the spoksperson is Ruslana?",
    "question_th": "ปีใดที่โฆษกคือรุสลานา?",
    "context": "CREATE TABLE table_1998037_9 (year_s_ INTEGER, spokesperson VARCHAR)"
  },
  {
    "answer": "SELECT television_commentator FROM table_1998037_9 WHERE year_s_ = 2006",
    "question_en": "Who is the television commentator for the year 2006?",
    "question_th": "ใครคือผู้ประกาศข่าวโทรทัศน์ประจำปี 2549?",
    "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_en": "What is the season number of the episode seen by 10.11 million people in the US?",
    "question_th": "หมายเลขซีซันของตอนที่มีผู้ชม 10.11 ล้านคนในสหรัฐอเมริกาคือเท่าใด",
    "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_en": "How many episodes with different series numbers were seen by 8.69 people in the US?",
    "question_th": "มีผู้ชม 8.69 คนในสหรัฐอเมริการับชมได้กี่ตอนที่มีหมายเลขซีรีส์ต่างกัน",
    "context": "CREATE TABLE table_19995378_1 (no_in_season VARCHAR, us_viewers__millions_ VARCHAR)"
  },
  {
    "answer": "SELECT san_antonio_de_lomerío_municipality___percentage_ FROM table_19998428_3 WHERE language = \"Only native\"",
    "question_en": "If the language is only native, what is the percentage of the San Antonio de Lomerio municipality?",
    "question_th": "หากเป็นภาษาท้องถิ่น เทศบาลซานอันโตนิโอ เด โลเมริโอมีกี่เปอร์เซ็นต์",
    "context": "CREATE TABLE table_19998428_3 (san_antonio_de_lomerío_municipality___percentage_ VARCHAR, language VARCHAR)"
  },
  {
    "answer": "SELECT MAX(san_javier_municipality___percentage_) FROM table_19998428_3 WHERE language = \"Aymara simi\"",
    "question_en": "For language Aymara Simi, what was the maximum San Javier municipality percentage?",
    "question_th": "สำหรับภาษา Aymara Simi เปอร์เซ็นต์สูงสุดของเทศบาล San Javier คือเท่าใด",
    "context": "CREATE TABLE table_19998428_3 (san_javier_municipality___percentage_ INTEGER, language VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(san_julián_municipality___percentage_) FROM table_19998428_3 WHERE san_antonio_de_lomerío_municipality___percentage_ = \"5.480\"",
    "question_en": "If the San Antonio de Lomerio municipality percentage is 5.480, what is the total percentage for the San Julian municipality?",
    "question_th": "หากเปอร์เซ็นต์ของเทศบาลซานอันโตนิโอ เด โลเมริโอคือ 5.480 เปอร์เซ็นต์รวมของเทศบาลซานจูเลียนคือเท่าใด",
    "context": "CREATE TABLE table_19998428_3 (san_julián_municipality___percentage_ VARCHAR, san_antonio_de_lomerío_municipality___percentage_ VARCHAR)"
  },
  {
    "answer": "SELECT san_antonio_de_lomerío_municipality___percentage_ FROM table_19998428_3 WHERE san_javier_municipality___percentage_ = 31",
    "question_en": "What is the municipality percentage for San Antonio de Lomerio is San Javier municipality percentage is 31?",
    "question_th": "เปอร์เซ็นต์ของเทศบาลสำหรับ San Antonio de Lomerio คือเท่าใด เปอร์เซ็นต์ของเทศบาล San Javier คือ 31?",
    "context": "CREATE TABLE table_19998428_3 (san_antonio_de_lomerío_municipality___percentage_ VARCHAR, san_javier_municipality___percentage_ VARCHAR)"
  },
  {
    "answer": "SELECT san_antonio_de_lomerío_municipality___percentage_ FROM table_19998428_3 WHERE cuatro_cañadas_municipality___percentage_ = \"252\"",
    "question_en": "If the Cuatro Cañadas municipality percentage is 252, what are all the San Antonio de Lomerío municipality percentage?",
    "question_th": "ถ้าเปอร์เซ็นต์ของเทศบาล Cuatro Cañadas คือ 252 เปอร์เซ็นต์ของเทศบาล San Antonio de Lomerío ทั้งหมดคือเท่าใด",
    "context": "CREATE TABLE table_19998428_3 (san_antonio_de_lomerío_municipality___percentage_ VARCHAR, cuatro_cañadas_municipality___percentage_ VARCHAR)"
  },
  {
    "answer": "SELECT san_javier_municipality___percentage_ FROM table_19998428_3 WHERE cuatro_cañadas_municipality___percentage_ = \"202\"",
    "question_en": "What is the San Javier municipality percentage if the Cuatro Cañadas municipality percentage is 202?",
    "question_th": "เปอร์เซ็นต์ของเทศบาล San Javier คือเท่าใด ถ้าเปอร์เซ็นต์ของเทศบาล Cuatro Cañadas คือ 202?",
    "context": "CREATE TABLE table_19998428_3 (san_javier_municipality___percentage_ VARCHAR, cuatro_cañadas_municipality___percentage_ VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(_number) FROM table_19982699_1 WHERE director = \"Robert Young\"",
    "question_en": "How many total number have robert young as the director?",
    "question_th": "โรเบิร์ต ยัง เป็นผู้กำกับทั้งหมดกี่คน?",
    "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_en": "How many numbers have Charles Salmon as the producer and January 27, 2007 was the television premiere?",
    "question_th": "Charles Salmon เป็นโปรดิวเซอร์กี่หมายเลขและวันที่ 27 มกราคม 2550 เป็นรอบปฐมทัศน์ทางโทรทัศน์",
    "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_en": "How many dvd releases where directed by david decoteau?",
    "question_th": "มีดีวีดีกี่เรื่องที่กำกับโดย 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_en": "When was the dvd release directed by Billy O'Brien?",
    "question_th": "ดีวีดีที่กำกับโดย 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_en": "What was the record after game 20?",
    "question_th": "สถิติหลังเกมที่ 20 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_20010140_9 (record VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_20010140_9 WHERE team = \"Iowa\"",
    "question_en": "For the game against Iowa, who had the most assists?",
    "question_th": "สำหรับเกมกับไอโอวาใครแอสซิสต์ได้มากที่สุด?",
    "context": "CREATE TABLE table_20010140_9 (high_assists VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_20010140_10 WHERE date = \"February 15\"",
    "question_en": "state high assists on february 15",
    "question_th": "รัฐแอสซิสต์สูงสุดในวันที่ 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_en": "how many high points where date is february 19",
    "question_th": "มีกี่คะแนนสูงสุดซึ่งวันที่ 19 กุมภาพันธ์",
    "context": "CREATE TABLE table_20010140_10 (high_points VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(location_attendance) FROM table_20010140_10 WHERE record = \"15–10 (5–7)\"",
    "question_en": "state the number of location attendance where record is 15–10 (5–7)",
    "question_th": "ระบุจำนวนการเข้างานในสถานที่ซึ่งบันทึกคือ 15–10 (5–7)",
    "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) – 4\"",
    "question_en": "how many dates where high assists is stu douglass (5) – 4",
    "question_th": "กี่วันที่มีสตูดักลาสสูง (5) – 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_en": "how many records were made on february 22",
    "question_th": "มีการบันทึกกี่รายการในวันที่ 22 กุมภาพันธ์",
    "context": "CREATE TABLE table_20010140_10 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(applications) FROM table_20007413_3 WHERE year = \"1986\"",
    "question_en": "Name the most applications for 1986",
    "question_th": "ตั้งชื่อใบสมัครมากที่สุดในปี 1986",
    "context": "CREATE TABLE table_20007413_3 (applications INTEGER, year VARCHAR)"
  },
  {
    "answer": "SELECT torque FROM table_20007413_3 WHERE year = \"1986\"",
    "question_en": "Name the torque for 1986",
    "question_th": "ตั้งชื่อแรงบิดสำหรับปี 1986",
    "context": "CREATE TABLE table_20007413_3 (torque VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT network FROM table_20026849_1 WHERE destination = \"Australia\"",
    "question_en": "What network showed the season with Australia as the destination?",
    "question_th": "เครือข่ายใดที่แสดงฤดูกาลนี้โดยมีออสเตรเลียเป็นจุดหมายปลายทาง",
    "context": "CREATE TABLE table_20026849_1 (network VARCHAR, destination VARCHAR)"
  },
  {
    "answer": "SELECT MAX(season) FROM table_20026849_1 WHERE contestants = 20",
    "question_en": "What was the latest season with 20 contestants?",
    "question_th": "ฤดูกาลล่าสุดที่มีผู้เข้าแข่งขัน 20 คนคืออะไร?",
    "context": "CREATE TABLE table_20026849_1 (season INTEGER, contestants VARCHAR)"
  },
  {
    "answer": "SELECT MIN(season) FROM table_20026849_1 WHERE winner = \"Ashutosh Kaushik\"",
    "question_en": "What season was won by Ashutosh Kaushik?",
    "question_th": "Ashutosh Kaushik ชนะฤดูกาลใด",
    "context": "CREATE TABLE table_20026849_1 (season INTEGER, winner VARCHAR)"
  },
  {
    "answer": "SELECT destination FROM table_20026849_1 WHERE winner = \"Anwar Syed\"",
    "question_en": "What was the destination of the season won by Anwar Syed?",
    "question_th": "จุดหมายปลายทางของฤดูกาลที่ Anwar Syed ชนะคืออะไร?",
    "context": "CREATE TABLE table_20026849_1 (destination VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_20026849_1 WHERE winner = \"Anthony Yeh\"",
    "question_en": "What season was won by Anthony Yeh?",
    "question_th": "Anthony Yeh ชนะฤดูกาลใด",
    "context": "CREATE TABLE table_20026849_1 (season VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_20026849_1 WHERE destination = \"Africa\"",
    "question_en": "Who won the season with Africa as its destination?",
    "question_th": "ใครเป็นผู้ชนะในฤดูกาลนี้โดยมีแอฟริกาเป็นจุดหมายปลายทาง?",
    "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_en": "What is the African Spoonbill when the Hadeda Ibis is the Brown Snake Eagle?",
    "question_th": "African Spoonbill คืออะไร เมื่อ Hadeda Ibis คือ 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_en": "What is the Hadeda Ibis when the Ostrich is Dark Chanting Goshawk?",
    "question_th": "Hadeda Ibis คืออะไร เมื่อนกกระจอกเทศเป็น 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_en": "What is the African Spoonbill when the Hadeda Ibis is Flernecked Nightjar?",
    "question_th": "African Spoonbill คืออะไรเมื่อ Hadeda Ibis เป็น 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_en": "What is the Hadeda Ibis when the Knobbilled Duck is Pied Crow?",
    "question_th": "Hadeda Ibis คืออะไรเมื่อเป็ด Knobbilled เป็นอีกาลาย?",
    "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_en": "What is the African Spoonbill when the Ostrich is Brown-hooded Kingfisher?",
    "question_th": "African Spoonbill คืออะไรเมื่อนกกระจอกเทศเป็นนกกระเต็นหมวกน้ำตาล?",
    "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_en": "What is the Hadeda Ibis when the Whitefaced Duck is Blacksmith Plover?",
    "question_th": "Hadeda Ibis คืออะไรเมื่อเป็ดหน้าขาวเป็น 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_en": "Name the winning pilot for hungary",
    "question_th": "ตั้งชื่อนักบินที่ชนะรางวัลฮังการี",
    "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_en": "Name the most round for michael goulian",
    "question_th": "ตั้งชื่อให้ไมเคิล กูเลี่ยนที่กลมที่สุด",
    "context": "CREATE TABLE table_20036882_2 (round INTEGER, winning_pilot VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_20036882_2 WHERE winning_pilot = \"Hannes Arch\"",
    "question_en": "Name the country for hannes arch",
    "question_th": "ตั้งชื่อประเทศสำหรับ 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_en": "Who wrote the episode with series number 45?",
    "question_th": "ใครเป็นคนเขียนตอนที่มีซีรีส์หมายเลข 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_en": "How many millions of people in the US saw the episode with production code 214?",
    "question_th": "มีกี่ล้านคนในสหรัฐอเมริกาที่ดูตอนที่มีรหัสการผลิต 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_en": "What's the title of the episode seen by 3.8 million people in the US?",
    "question_th": "ตอนที่คน 3.8 ล้านคนในอเมริกาเห็นชื่ออะไร",
    "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_en": "On how many different dates did the episode with series number 35 air for the first time?",
    "question_th": "ตอนของซีรีส์หมายเลข 35 ออกอากาศครั้งแรกกี่วัน?",
    "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_en": "Name the date for value 55c",
    "question_th": "ตั้งชื่อวันที่สำหรับค่า 55c",
    "context": "CREATE TABLE table_2006661_1 (date VARCHAR, value VARCHAR)"
  },
  {
    "answer": "SELECT scott FROM table_2006661_1 WHERE species = \"Chloropsis hardwickii\"",
    "question_en": "Name the scott for chloropsis hardwickii",
    "question_th": "ตั้งชื่อสกอตต์ว่า คลอรอปซิส ฮาร์ดวิคii",
    "context": "CREATE TABLE table_2006661_1 (scott VARCHAR, species VARCHAR)"
  },
  {
    "answer": "SELECT MAX(population__2000_) FROM table_2004733_2 WHERE barangay = \"Bulac\"",
    "question_en": "How many people lived in bulac in the year 2000?",
    "question_th": "มีกี่คนที่อาศัยอยู่ในบูลักในปี พ.ศ. 2543",
    "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_en": "In 2010, how many people lived in cities with a population density of 3,965.02?",
    "question_th": "ในปี 2010 มีกี่คนที่อาศัยอยู่ในเมืองที่มีความหนาแน่นของประชากร 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_en": "What's the name of the barangay whose area is 3.6787 km² ?",
    "question_th": "บารังไกย์ มีพื้นที่ 3.6787 ตารางกิโลเมตร ชื่อว่าอะไร",
    "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_en": "How many people lived in the city which has 1.2530 km² in the year 2000?",
    "question_th": "มีกี่คนที่อาศัยอยู่ในเมืองซึ่งมีพื้นที่ 1.2530 ตารางกิโลเมตรในปี 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_en": "How many people lived in san gabriel in the year 2000?",
    "question_th": "มีกี่คนที่อาศัยอยู่ในซานกาเบรียลในปี 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_en": "How many different titles does the representative whose mission was terminated on August 5, 1984 have?",
    "question_th": "ตัวแทนที่ภารกิจสิ้นสุดลงเมื่อวันที่ 5 สิงหาคม พ.ศ. 2527 มีตำแหน่งที่แตกต่างกันกี่ตำแหน่ง",
    "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_en": "What state does the representative whose mission was terminated on November 29, 1973 represent?",
    "question_th": "ตัวแทนของรัฐใดที่ภารกิจสิ้นสุดลงเมื่อวันที่ 29 พฤศจิกายน พ.ศ. 2516 เป็นตัวแทนของรัฐใด",
    "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_en": "Who trained the representative whose presentation of credentials happened on February 24, 1950?",
    "question_th": "ใครเป็นผู้ฝึกอบรมตัวแทนซึ่งมีการนำเสนอหนังสือรับรองเมื่อวันที่ 24 กุมภาพันธ์ พ.ศ. 2493",
    "context": "CREATE TABLE table_20065425_1 (training VARCHAR, presentation_of_credentials VARCHAR)"
  },
  {
    "answer": "SELECT year__ceremony_ FROM table_20061872_1 WHERE original_title = \"Här har du ditt liv\"",
    "question_en": "When was the film Här har du ditt liv used in nomination?",
    "question_th": "ภาพยนตร์เรื่อง Här har du ditt liv ใช้ในการเสนอชื่อเข้าชิงเมื่อใด",
    "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_en": "What's the original title of the film Zozo?",
    "question_th": "ชื่อเรื่องดั้งเดิมของภาพยนตร์เรื่อง 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_en": "What's the original title of The New Land?",
    "question_th": "ชื่อดั้งเดิมของ 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_en": "Name the championship for winner and judy tegart dalton lesley turner bowrey",
    "question_th": "ตั้งชื่อแชมป์ให้กับผู้ชนะ และ จูดี้ เทการ์ต ดัลตัน เลสลีย์ เทิร์นเนอร์ บาวรีย์",
    "context": "CREATE TABLE table_2009095_2 (championship VARCHAR, outcome VARCHAR, opponents VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_2009095_2 WHERE championship = \"Wimbledon\"",
    "question_en": "Name the outcome for wimbledon",
    "question_th": "ตั้งชื่อผลการแข่งขันวิมเบิลดัน",
    "context": "CREATE TABLE table_2009095_2 (outcome VARCHAR, championship VARCHAR)"
  },
  {
    "answer": "SELECT opponents FROM table_2009095_2 WHERE score = \"6–4, 3–6, 6–2\"",
    "question_en": "Name the opponets for  6–4, 3–6, 6–2",
    "question_th": "ตั้งชื่อฝ่ายตรงข้ามสำหรับ 6–4, 3–6, 6–2",
    "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_en": "Name the least year for evonne goolagong helen gourlay",
    "question_th": "ตั้งชื่อปีน้อยที่สุดสำหรับ evonne goulagong 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_en": "Name the surface for australian open for winner",
    "question_th": "ตั้งชื่อพื้นผิวสำหรับการแข่งขันออสเตรเลียนโอเพ่นสำหรับผู้ชนะ",
    "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_en": "What's the highest scoring team in the round in Ring Knutstorp in which Polestar Racing is the winning team?",
    "question_th": "ทีมใดที่ทำคะแนนสูงสุดในรอบใน Ring Knutstorp โดยที่ Polestar Racing เป็นทีมที่ชนะ?",
    "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_en": "How many rounds were there in Karlskoga Motorstadion with Roger Eriksson at the pole position?",
    "question_th": "มีกี่รอบในคาร์ลสโกก้า มอเตอร์สตาดิโอน โดยมีโรเจอร์ อีริคสัน อยู่ในตำแหน่งโพลโพซิชั่น?",
    "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_en": "What was the first leg result in the round against Norchi Dinamoeli?",
    "question_th": "ผลการแข่งขันเลกแรกในรอบที่เจอกับนอร์ชี่ ดินาโมเอลีเป็นอย่างไรบ้าง?",
    "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_en": "which vehicles got best time of day 1:17.17",
    "question_th": "ยานพาหนะคันไหนมีเวลาที่ดีที่สุดของวัน 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_en": "how many drivers driving toyota corolla",
    "question_th": "มีคนขับกี่คนที่ขับโตโยต้าโคโรลล่า",
    "context": "CREATE TABLE table_20090682_4 (driver VARCHAR, vehicle VARCHAR)"
  },
  {
    "answer": "SELECT MAX(pos) FROM table_20090682_4 WHERE driver = \"Brendan Sole\"",
    "question_en": "what is the lowest position of brendan sole",
    "question_th": "ตำแหน่งต่ำสุดของเบรนแดนโซลคือเท่าไร",
    "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_en": "how many vehicles where top 13 time is 1:18.72",
    "question_th": "มีรถกี่คันที่เวลา 13 อันดับแรกคือ 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_en": "which driver got best time of day 1:16.93",
    "question_th": "นักแข่งคนไหนทำเวลาได้ดีที่สุด 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_en": "What is the amount of assists when mins is 744:27?",
    "question_th": "จำนวนแอสซิสต์เมื่อนาทีคือ 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_en": "What is the game number with 385:33 mins?",
    "question_th": "นาทีที่ 385:33 เกมหมายเลขอะไร?",
    "context": "CREATE TABLE table_20107762_1 (games INTEGER, mins VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_20107762_1 WHERE rebounds = \"4.4\"",
    "question_en": "What is the points number when rebounds is 4.4?",
    "question_th": "เมื่อรีบาวด์เป็น 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_en": "Who is the team with the ft% of 77.6?",
    "question_th": "ทีมไหนมี ft% 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_en": "When did Austin Austin TX get the third place?",
    "question_th": "Austin Austin TX ได้อันดับสามเมื่อใด",
    "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_en": "Who has a religion of United Methodist and a prior background of a Congressional Aide?",
    "question_th": "ใครนับถือศาสนา United Methodist และมีภูมิหลังเป็นผู้ช่วยรัฐสภามาก่อน",
    "context": "CREATE TABLE table_20098199_2 (representative VARCHAR, religion VARCHAR, prior_background VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_20095300_1 WHERE number = 25",
    "question_en": "What horse has the number 25?",
    "question_th": "ม้าอะไรมีหมายเลข 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_en": "How much does Point Barrow weight?",
    "question_th": "Point Barrow มีน้ำหนักเท่าไหร่?",
    "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_en": "What are Andrew McNamara's colors?",
    "question_th": "แอนดรูว์ แม็กนามารามีสีอะไร",
    "context": "CREATE TABLE table_20095300_1 (colours VARCHAR, jockey VARCHAR)"
  },
  {
    "answer": "SELECT MAX(number) FROM table_20095300_1 WHERE trainer = \"Kim Bailey\"",
    "question_en": "What's the number of the horse whose trainer is Kim Bailey?",
    "question_th": "ม้าที่ครูฝึกคือคิม เบลีย์ มีจำนวนเท่าไร",
    "context": "CREATE TABLE table_20095300_1 (number INTEGER, trainer VARCHAR)"
  },
  {
    "answer": "SELECT written_by FROM table_20098479_1 WHERE no_in_series = 48",
    "question_en": "Who wrote episode number 48",
    "question_th": "ใครเป็นคนเขียนตอนที่ 48",
    "context": "CREATE TABLE table_20098479_1 (written_by VARCHAR, no_in_series VARCHAR)"
  },
  {
    "answer": "SELECT MIN(production_code) FROM table_20098479_1",
    "question_en": "What is the lowest production code",
    "question_th": "รหัสการผลิตต่ำสุดคืออะไร",
    "context": "CREATE TABLE table_20098479_1 (production_code INTEGER)"
  },
  {
    "answer": "SELECT original_title FROM table_20124413_3 WHERE production_code = \"3.19\"",
    "question_en": "What was the original title of 3.19?",
    "question_th": "ชื่อดั้งเดิมของ 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_en": "How many numbers have the product code of 2.6?",
    "question_th": "รหัสสินค้า 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_en": "How many directed have the product code of 2.8?",
    "question_th": "มีกี่กำกับมีรหัสสินค้า 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_en": "When 1.12 is the production code what is the original title?",
    "question_th": "เมื่อ 1.12 เป็นรหัสการผลิต ชื่อดั้งเดิมคืออะไร?",
    "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_en": "When 1.17 is the production code how many air dates are there?",
    "question_th": "เมื่อรหัสการผลิต 1.17 มีวันออกอากาศกี่วัน?",
    "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_en": "state the winnings of yates racing front row motorsports where poles were 0",
    "question_th": "ระบุชัยชนะของกีฬามอเตอร์สปอร์ตแถวหน้าของ Yates Racing โดยที่โพลเป็น 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_en": "which team(s) won $2,605,05",
    "question_th": "ทีมใดชนะ $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_en": "state the wins of the team with 2 top 10",
    "question_th": "ระบุชัยชนะของทีมที่มี 2 อันดับแรก 10",
    "context": "CREATE TABLE table_2012187_1 (wins VARCHAR, top_10 VARCHAR)"
  },
  {
    "answer": "SELECT kannada_name_ಕನ್ನಡ FROM table_201400_2 WHERE tamil_name_தமிழ் = \"Anusham அனுஷம்\"",
    "question_en": "what is kannada name ಕನ್ನಡ of tamil name தமிழ் anusham அனுஷம்",
    "question_th": "ชื่อกันนาดาคืออะไร ಕನ್ನಡ ของชื่อทมิฬ தமிழâ อนุชาม அனுஷமà",
    "context": "CREATE TABLE table_201400_2 (kannada_name_ಕನ್ನಡ VARCHAR, tamil_name_தமிழ் VARCHAR)"
  },
  {
    "answer": "SELECT malayalam_name_മലയാളം FROM table_201400_2 WHERE tamil_name_தமிழ் = \"Punarpoosam புனர்பூசம்\"",
    "question_en": "what is the malayalam name മലയാളം of tamil name தமிழ் punarpoosam புனர்பூசம்",
    "question_th": "ชื่อภาษามาลายาลัมคืออะไร മലയാളം ชื่อทมิฬ தமிழâ punarpoosam புனரारபூசமार",
    "context": "CREATE TABLE table_201400_2 (malayalam_name_മലയാളം VARCHAR, tamil_name_தமிழ் VARCHAR)"
  },
  {
    "answer": "SELECT telugu_name_తెలుగు FROM table_201400_2 WHERE kannada_name_ಕನ್ನಡ = \"Utthara ಉತ್ತರ\"",
    "question_en": "what is the telugu name తెలుగు of kannada name ಕನ್ನಡ utthara ಉತ್ತರ",
    "question_th": "ชื่อภาษาเตลูกูคืออะไรతెలుగుของชื่อกันนาดาಕನ್ನಡ utthara ಉತ್ತರ",
    "context": "CREATE TABLE table_201400_2 (telugu_name_తెలుగు VARCHAR, kannada_name_ಕನ್ನಡ VARCHAR)"
  },
  {
    "answer": "SELECT sanskrit FROM table_201400_2 WHERE western_star_name = \"Arcturus\"",
    "question_en": "what is the sanskrit of western star name arcturus",
    "question_th": "อักษรสันสกฤตของดาวฤกษ์ตะวันตกชื่ออาร์คทูรัสคืออะไร",
    "context": "CREATE TABLE table_201400_2 (sanskrit VARCHAR, western_star_name VARCHAR)"
  },
  {
    "answer": "SELECT malayalam_name_മലയാളം FROM table_201400_2 WHERE sanskrit = \"Uttarāṣāḍha उत्तराषाढा\"",
    "question_en": "what is the malayalam name മലയാളം of sanskrit uttarāṣāḍha उत्तराषाढा",
    "question_th": "ชื่อมาลายาลัมคืออะไร മലയാളം ในภาษาสันสกฤต uttarāṣāḍha उत्तराषाढा",
    "context": "CREATE TABLE table_201400_2 (malayalam_name_മലയാളം VARCHAR, sanskrit VARCHAR)"
  },
  {
    "answer": "SELECT traditional FROM table_2013618_1 WHERE area = 544",
    "question_en": "Name the traditional for area 544",
    "question_th": "ตั้งชื่อตามประเพณีสำหรับพื้นที่ 544",
    "context": "CREATE TABLE table_2013618_1 (traditional VARCHAR, area VARCHAR)"
  },
  {
    "answer": "SELECT foochow FROM table_2013618_1 WHERE english_name = \"Pingnan County\"",
    "question_en": "Name the foochow for pingnan county",
    "question_th": "ตั้งชื่อ ฟู่เชาว์ สำหรับ เทศมณฑลผิงหนาน",
    "context": "CREATE TABLE table_2013618_1 (foochow VARCHAR, english_name VARCHAR)"
  },
  {
    "answer": "SELECT pinyin FROM table_2013618_1 WHERE foochow = \"Ciá-ìng-gâing\"",
    "question_en": "Name the pinyin for  ciá-ìng-gâing",
    "question_th": "ตั้งชื่อพินอินว่า cia-ing-gâing",
    "context": "CREATE TABLE table_2013618_1 (pinyin VARCHAR, foochow VARCHAR)"
  },
  {
    "answer": "SELECT traditional FROM table_2013618_1 WHERE simplified = \"屏南县\"",
    "question_en": "Name the traditional for  屏南县",
    "question_th": "ตั้งชื่อรูปแบบดั้งเดิมสำหรับ 屏南县",
    "context": "CREATE TABLE table_2013618_1 (traditional VARCHAR, simplified VARCHAR)"
  },
  {
    "answer": "SELECT density FROM table_2013618_1 WHERE traditional = \"古田縣\"",
    "question_en": "Name the density for 古田縣",
    "question_th": "ตั้งชื่อความหนาแน่นของ 古田縣",
    "context": "CREATE TABLE table_2013618_1 (density VARCHAR, traditional VARCHAR)"
  },
  {
    "answer": "SELECT english_name FROM table_2013618_1 WHERE traditional = \"福鼎市\"",
    "question_en": "Name the english name for  福鼎市",
    "question_th": "ตั้งชื่อชื่อภาษาอังกฤษของ 福鼎市",
    "context": "CREATE TABLE table_2013618_1 (english_name VARCHAR, traditional VARCHAR)"
  },
  {
    "answer": "SELECT cfl_team FROM table_20170644_1 WHERE player = \"Darcy Brown\"",
    "question_en": "What CFL team did Darcy Brown play for?",
    "question_th": "Darcy Brown เล่นให้กับทีม CFL ใด",
    "context": "CREATE TABLE table_20170644_1 (cfl_team VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT cfl_team FROM table_20170644_1 WHERE player = \"Simeon Rottier\"",
    "question_en": "What CFL team did simeon rottier play for?",
    "question_th": "ซิเมียน ร็อตติเยร์เล่นให้กับทีม CFL ใด",
    "context": "CREATE TABLE table_20170644_1 (cfl_team VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_20170644_1 WHERE player = \"Étienne Légaré\"",
    "question_en": "What college did étienne légaré play for?",
    "question_th": "étienne légaré เล่นให้กับวิทยาลัยใด",
    "context": "CREATE TABLE table_20170644_1 (college VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT cfl_team FROM table_20170644_1 WHERE position = \"OL\"",
    "question_en": "What team was in position OL?",
    "question_th": "ทีมไหนอยู่ตำแหน่ง 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_en": "Who was the player for the CFL team hamilton tiger-cats (via bc via saskatchewan )?",
    "question_th": "ใครคือผู้เล่นของทีม CFL hamilton Tiger-cats (ผ่าน BC ผ่าน 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_en": "What number pick did the CFL team bc lions (via hamilton via winnipeg ) have?",
    "question_th": "ทีม CFL ก่อนคริสต์ศักราช Lions (ผ่านแฮมิลตันและวินนิเพก) เลือกหมายเลขใด?",
    "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_en": "How many different release dates are there for the audio book with a story number 7?",
    "question_th": "หนังสือเสียงเรื่องที่ 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_en": "What's the title of the audio book with story number 91?",
    "question_th": "หนังสือเสียงเรื่องที่ 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_en": "When was the audio book with target number 069 69 released?",
    "question_th": "หนังสือเสียงหมายเลขเป้าหมาย 069 69 ออกเมื่อไร?",
    "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_en": "What's the format of the audio book titled The Mind Robber?",
    "question_th": "หนังสือเสียงชื่อ 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_en": "who is the reader of the audiobook authored by cole, stephen stephen cole and released on 2008-11-13 13 november 2008",
    "question_th": "ซึ่งเป็นผู้อ่านหนังสือเสียงที่ประพันธ์โดย โคล, สตีเฟน สตีเฟน โคล และวางจำหน่ายเมื่อ 13 พฤศจิกายน 2551 2551-11-56",
    "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_en": "how many companies released an audiobook titled deadly download",
    "question_th": "มีกี่บริษัทที่ออกหนังสือเสียงชื่อ 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_en": "which companies released on 2010-11-04 4 november 2010",
    "question_th": "บริษัทใดบ้างที่เผยแพร่เมื่อ 2010-11-04 4 พฤศจิกายน 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_en": "which company released audiobooks authored by day, martin martin day",
    "question_th": "บริษัทไหนออกหนังสือเสียงที่แต่งโดยเดย์ มาร์ติน มาร์ติน เดย์",
    "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_en": "how many formats of books authored by day, martin martin day",
    "question_th": "หนังสือกี่รูปแบบที่แต่งในแต่ละวัน มาร์ติน มาร์ติน เดย์",
    "context": "CREATE TABLE table_20174050_24 (format VARCHAR, author VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(cfl_team) FROM table_20170644_5 WHERE college = \"Laval\"",
    "question_en": "How many players were drafted from laval?",
    "question_th": "มีผู้เล่นกี่คนที่ถูกเกณฑ์ทหารจากลาวาล?",
    "context": "CREATE TABLE table_20170644_5 (cfl_team VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_20170644_5 WHERE college = \"Montreal\"",
    "question_en": "What player went to montreal college?",
    "question_th": "ผู้เล่นคนไหนไปเรียนที่วิทยาลัยมอนทรีออล?",
    "context": "CREATE TABLE table_20170644_5 (player VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_20170644_5 WHERE cfl_team = \"Hamilton Tiger-Cats\"",
    "question_en": "What player(s) drafted by the hamilton tiger-cats?",
    "question_th": "ผู้เล่นคนไหนที่ร่างโดยทีมแฮมิลตัน ไทเกอร์-แคทส์?",
    "context": "CREATE TABLE table_20170644_5 (player VARCHAR, cfl_team VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_20170644_5 WHERE cfl_team = \"Montreal Alouettes\"",
    "question_en": "What position(s) drafted by the montreal alouettes?",
    "question_th": "ตำแหน่งใดที่ร่างโดย 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_en": "which company uses pinborough, sarah sarah pinborough?",
    "question_th": "บริษัทไหนใช้พินโบโรห์ ซาราห์ ซาราห์ พินโบโรห์?",
    "context": "CREATE TABLE table_20174050_23 (company VARCHAR, author VARCHAR)"
  },
  {
    "answer": "SELECT reader FROM table_20174050_23 WHERE title = \"Department X\"",
    "question_en": "who the reader of title department x?",
    "question_th": "ใครคือผู้อ่านแผนกชื่อเรื่อง 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_en": "how many notes were read by reader varma, idria indira varma?",
    "question_th": "ผู้อ่าน 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_en": "who is the reader on the download/cd format of the title written by author lidster, joseph joseph lidster? ",
    "question_th": " ใครคือผู้อ่านในรูปแบบดาวน์โหลด/ซีดีของชื่อเรื่องที่เขียนโดยผู้แต่ง ลิดสเตอร์ โจเซฟ โจเซฟ ลิดสเตอร์",
    "context": "CREATE TABLE table_20174050_23 (reader VARCHAR, format VARCHAR, author VARCHAR)"
  },
  {
    "answer": "SELECT landesliga_mitte FROM table_20181270_3 WHERE landesliga_süd = \"FC Gundelfingen\" AND landesliga_nord = \"VfL Frohnlach\"",
    "question_en": "Name the landesliga mitte for fc gundelfingen and vfl frohnlach",
    "question_th": "ตั้งชื่อ mitte ของสโมสรสำหรับ fc gundelfingen และ vfl frohnlach",
    "context": "CREATE TABLE table_20181270_3 (landesliga_mitte VARCHAR, landesliga_süd VARCHAR, landesliga_nord VARCHAR)"
  },
  {
    "answer": "SELECT landesliga_nord FROM table_20181270_3 WHERE landesliga_mitte = \"Freier TuS Regensburg\"",
    "question_en": "Name the landesliga nord for  freier tus regensburg",
    "question_th": "ตั้งชื่อลีกแลนด์สลีกานอร์ดสำหรับฟรีเออร์ ตุส เรเกนสบวร์ก",
    "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_en": "Name the landesliga nord for asv neumarkt",
    "question_th": "ตั้งชื่อ Landesliga Nord สำหรับ 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ürk Gücü München\"",
    "question_en": "Name the landesliga mitte sv türk gücü münchen",
    "question_th": "ตั้งชื่อทีม Landesliga Mitte Sv türk gücü münchen",
    "context": "CREATE TABLE table_20181270_3 (landesliga_mitte VARCHAR, bayernliga VARCHAR)"
  },
  {
    "answer": "SELECT landesliga_süd FROM table_20181270_3 WHERE bayernliga = \"SG Quelle Fürth\"",
    "question_en": "Name the landesliga sud for sg quelle fürth",
    "question_th": "ตั้งชื่อ Landesliga Sud สำหรับ sg quelle fürth",
    "context": "CREATE TABLE table_20181270_3 (landesliga_süd VARCHAR, bayernliga VARCHAR)"
  },
  {
    "answer": "SELECT oil_rig FROM table_20183474_1 WHERE place = \"7th\"",
    "question_en": "What's the oil rig of the song that ended on 7th place?",
    "question_th": "แท่นขุดเจาะน้ำมันของเพลงที่จบอันดับที่ 7 คืออะไร?",
    "context": "CREATE TABLE table_20183474_1 (oil_rig VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT MIN(oil_rig) FROM table_20183474_1 WHERE draw = 9",
    "question_en": "What's the oil rig of the song with a draw number 9?",
    "question_th": "แท่นขุดเจาะน้ำมันของเพลงเลข 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_en": "How many press jury points did the song by Frank Aleksandersen get?",
    "question_th": "เพลงของ Frank Aleksandersen ได้รับคะแนนจากคณะกรรมการตัดสินกี่คะแนน",
    "context": "CREATE TABLE table_20183474_1 (press_jury INTEGER, artist VARCHAR)"
  },
  {
    "answer": "SELECT total_points FROM table_20183474_1 WHERE draw = 3",
    "question_en": "How many points did the song with a draw number 3 get?",
    "question_th": "เพลงที่ถูกรางวัลที่ 3 ได้กี่คะแนน?",
    "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_en": "If the title is Paradox Lost and the reader is Briggs, Nicholas Nicholas Briggs, what are all of the notes?",
    "question_th": "ถ้าชื่อเรื่องคือ Paradox Lost และผู้อ่านคือ Briggs, Nicholas Nicholas Briggs แล้วโน้ตทั้งหมดมีอะไรบ้าง?",
    "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_en": "If the title is The Way Through The Woods, what is the release date?",
    "question_th": "ถ้าชื่อ The Way Through The Woods จะออกฉายวันไหนครับ?",
    "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_en": "If the reader is Syal, Meera Meera Syal, what was the release date?",
    "question_th": "ถ้าคนอ่านคือ ไซอัล มีระ มีระ ไซอัล จะออกฉายวันไหนคะ?",
    "context": "CREATE TABLE table_20174050_7 (release_date VARCHAR, reader VARCHAR)"
  },
  {
    "answer": "SELECT MAX(divisional_titles) FROM table_20190834_1 WHERE enrollment = 30049",
    "question_en": "What is the most divisional titles won by a school with an enrollment of 30049?",
    "question_th": "โรงเรียนได้รับตำแหน่งดิวิชั่นมากที่สุดโดยมีจำนวนการลงทะเบียน 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_en": "What is the maximum enrollment of the Sooners?",
    "question_th": "การลงทะเบียนสูงสุดของ 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_en": "What is the minimum enrollment of the cyclones?",
    "question_th": "การลงทะเบียนขั้นต่ำของไซโคลนคือเท่าใด",
    "context": "CREATE TABLE table_20190834_1 (enrollment INTEGER, team_name VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_20193855_2 WHERE book_title = \"Firelands\"",
    "question_en": "What is the result of the book title firelands?",
    "question_th": "ผลของชื่อหนังสือ 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_en": "Which year is the book title the ordinary?",
    "question_th": "หนังสือชื่อ Theธรรมดา ปีไหนคะ?",
    "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_en": "Who is the publisher of the book titled daughters of an emerald dusk?",
    "question_th": "ใครคือผู้จัดพิมพ์หนังสือชื่อ 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_en": "In which year were the authors or editors Delia Sherman?",
    "question_th": "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_en": "How many authors or editors are there for the book title elf child?",
    "question_th": "มีผู้แต่งหรือบรรณาธิการกี่คนสำหรับชื่อหนังสือ 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_en": "What is the title of the book when the publisher is black car publishing?",
    "question_th": "ชื่อหนังสือตอนที่สำนักพิมพ์เป็นสำนักพิมพ์รถดำชื่ออะไรคะ?",
    "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_en": "What are the prizes when 1 is the number of winning tickets?",
    "question_th": "รางวัลคืออะไร เมื่อ 1 คือจำนวนตั๋วที่ชนะ?",
    "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_en": "What are the number of winning tickets that have 180.00 as the prize (eur)?",
    "question_th": "ตั๋วที่ถูกรางวัลซึ่งมีเงินรางวัล 180.00 เป็นรางวัล (ยูโร) มีจำนวนเท่าใด?",
    "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_en": "How many odd of winning have 6th as the division?",
    "question_th": "มีกี่โอกาสที่จะชนะโดยมีอันดับที่ 6 อยู่ในดิวิชั่น?",
    "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_en": "What is the prize (eur) for the 6th division?",
    "question_th": "รางวัล (ยูโร) สำหรับดิวิชั่น 6 คืออะไร?",
    "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_en": "Which divisions have 565 as the number of winning tickets?",
    "question_th": "ดิวิชั่นใดมี 565 เป็นจำนวนตั๋วที่ชนะ?",
    "context": "CREATE TABLE table_20195922_3 (divisions VARCHAR, number_of_winning_tickets VARCHAR)"
  },
  {
    "answer": "SELECT гә_гә_[ɡʷ] FROM table_202365_2 WHERE ҕь_ҕь_[ʁʲ_ɣʲ] = \"Ҭә ҭә [tʷʰ]\"",
    "question_en": "what is гә гә [ɡʷ] when ҕь ҕь [ʁʲ/ɣʲ] is ҭә ҭә [tʷʰ]?",
    "question_th": "гэ гҙ [ɡʷ] คืออะไร เมื่อ ҕь ҕь [ʁʲ/ɣʲ] คือ ҭҙ ҭę [tʷʰ]?",
    "context": "CREATE TABLE table_202365_2 (гә_гә_ VARCHAR, ɡʷ VARCHAR, ҕь_ҕь_ VARCHAR, ʁʲ_ɣʲ VARCHAR)"
  },
  {
    "answer": "SELECT гә_гә_[ɡʷ] FROM table_202365_2 WHERE ҕ_ҕ_[ʁ_ɣ] = \"Ҿ ҿ [t͡ʂʼ]\"",
    "question_en": "What is гә гә [ɡʷ] when ҕ ҕ [ʁ/ɣ] is ҿ ҿ [t͡ʂʼ]?",
    "question_th": "гэ гэ [ɡʷ] คืออะไร เมื่อ ҕ ҕ [ʁ/ɣ] คือ ҿ ҿ [t͡ʂ']?",
    "context": "CREATE TABLE table_202365_2 (гә_гә_ VARCHAR, ɡʷ VARCHAR, ҕ_ҕ_ VARCHAR, ʁ_ɣ VARCHAR)"
  },
  {
    "answer": "SELECT г_г_[ɡ] FROM table_202365_2 WHERE а_а_[a] = \"Ҕә ҕә [ʁʷ/ɣʷ]\"",
    "question_en": "what is г г [ɡ] when а а [a] is ҕә ҕә [ʁʷ/ɣʷ]?",
    "question_th": "г г [ɡ] คืออะไร เมื่อ а а [a] คือ ҕҙ ҕљ [ʁʷ/ɣʷ]?",
    "context": "CREATE TABLE table_202365_2 (г_г_ VARCHAR, ɡ VARCHAR, а_а_ VARCHAR, a VARCHAR)"
  },
  {
    "answer": "SELECT а_а_[a] FROM table_202365_2 WHERE ҕь_ҕь_[ʁʲ_ɣʲ] = \"Ш ш [ʂʃ]\"",
    "question_en": "what is а а [a] when ҕь ҕь [ʁʲ/ɣʲ] is ш ш [ʂʃ]?",
    "question_th": "а а [a] คืออะไร เมื่อ ҕь ҕь [ʁʲ/ɣʲ] คือ ш ш [ʂʃ]?",
    "context": "CREATE TABLE table_202365_2 (а_а_ VARCHAR, a VARCHAR, ҕь_ҕь_ VARCHAR, ʁʲ_ɣʲ VARCHAR)"
  },
  {
    "answer": "SELECT а_а_[a] FROM table_202365_2 WHERE гь_гь_[ɡʲ] = \"Л л [l]\"",
    "question_en": "what is а а [a] when гь гь [ɡʲ] is л л [l]?",
    "question_th": "а а [a] คืออะไร เมื่อ гь гь [ɡʲ] คือ л л [l]?",
    "context": "CREATE TABLE table_202365_2 (а_а_ VARCHAR, a VARCHAR, гь_гь_ VARCHAR, ɡʲ VARCHAR)"
  },
  {
    "answer": "SELECT ҕь_ҕь_[ʁʲ_ɣʲ] FROM table_202365_2 WHERE гь_гь_[ɡʲ] = \"Ҷ ҷ [t͡ʃʼ]\"",
    "question_en": "what is ҕь ҕь [ʁʲ/ɣʲ] when гь гь [ɡʲ] is ҷ ҷ [t͡ʃʼ]?",
    "question_th": "ҕь ҕь [ʁʲ/ɣʲ] คืออะไร เมื่อ гь гь [ɡʲ] คือ ҷ ҷ [t͡ʃ']?",
    "context": "CREATE TABLE table_202365_2 (ҕь_ҕь_ VARCHAR, ʁʲ_ɣʲ VARCHAR, гь_гь_ VARCHAR, ɡʲ VARCHAR)"
  },
  {
    "answer": "SELECT green FROM table_20217811_1 WHERE electorate = \"Otaki\"",
    "question_en": "Name the green for otaki",
    "question_th": "ตั้งชื่อสีเขียวให้กับโอตากิ",
    "context": "CREATE TABLE table_20217811_1 (green VARCHAR, electorate VARCHAR)"
  },
  {
    "answer": "SELECT national FROM table_20217811_1 WHERE electorate = \"Rimutaka\"",
    "question_en": "Name the national for rimutaka",
    "question_th": "ตั้งชื่อชาติว่า ริมุตกะ",
    "context": "CREATE TABLE table_20217811_1 (national VARCHAR, electorate VARCHAR)"
  },
  {
    "answer": "SELECT electorate FROM table_20217811_1 WHERE united_future = \"4.47%\"",
    "question_en": "Name the electoraate for united future being 4.47%",
    "question_th": "ระบุชื่อผู้มีสิทธิเลือกตั้งเพื่ออนาคตรวมเป็น 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_en": "How many different popular vote counts were there for the candidate Rick Perry?",
    "question_th": "จำนวนคะแนนโหวตยอดนิยมของผู้สมัคร 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_en": "Which office has 1 New Hampshire as a third place state?",
    "question_th": "สำนักงานใดมี 1 รัฐนิวแฮมป์เชียร์เป็นรัฐที่สาม",
    "context": "CREATE TABLE table_20246201_9 (office VARCHAR, states___third_place VARCHAR)"
  },
  {
    "answer": "SELECT office FROM table_20246201_9 WHERE candidate = \"Jon Huntsman\"",
    "question_en": "What office is Jon Huntsman a candidate for?",
    "question_th": "Jon Huntsman เป็นผู้สมัครเข้ารับตำแหน่งในสำนักงานใด",
    "context": "CREATE TABLE table_20246201_9 (office VARCHAR, candidate VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(states___first_place) FROM table_20246201_9 WHERE office = \"Governor\"",
    "question_en": "How many states-first place are there for the office of Governor?",
    "question_th": "ตำแหน่งผู้ว่าการรัฐมีตำแหน่งที่หนึ่งของรัฐกี่แห่ง?",
    "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_en": "Name the competition for australia 13, new zealand 40, drawn 3",
    "question_th": "ทายผลการแข่งขัน ออสเตรเลีย 13 นิวซีแลนด์ 40 เสมอ 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_en": "Name the explanation by rank is 10",
    "question_th": "ตั้งชื่อคำอธิบายตามอันดับคือ 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_en": "Name the order in office for spiro agnew",
    "question_th": "ตั้งชื่อคำสั่งซื้อในสำนักงานสำหรับ 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_en": "Name the explanation for alben w. barkley",
    "question_th": "ตั้งชื่อคำอธิบายสำหรับ alben w. บาร์คลีย์",
    "context": "CREATE TABLE table_2026548_1 (explanation VARCHAR, vice_president VARCHAR)"
  },
  {
    "answer": "SELECT obama__percentage FROM table_20278716_2 WHERE county = \"Burlington\"",
    "question_en": "What percentage of people voted for Obama in Burlington?",
    "question_th": "มีคนโหวตให้โอบามาในเบอร์ลิงตันกี่เปอร์เซ็นต์",
    "context": "CREATE TABLE table_20278716_2 (obama__percentage VARCHAR, county VARCHAR)"
  },
  {
    "answer": "SELECT mccain__percentage FROM table_20278716_2 WHERE county = \"Burlington\"",
    "question_en": "What percentage of voters choise McCain in Burlington?",
    "question_th": "ผู้มีสิทธิเลือกตั้งเลือก McCain ในเบอร์ลิงตันกี่เปอร์เซ็นต์",
    "context": "CREATE TABLE table_20278716_2 (mccain__percentage VARCHAR, county VARCHAR)"
  },
  {
    "answer": "SELECT others__percentage FROM table_20278716_2 WHERE others__number = 802",
    "question_en": "What percentage of voters voted for a third party in the county that had 802 third party voters?",
    "question_th": "ผู้ลงคะแนนเสียงลงคะแนนให้บุคคลที่สามในเคาน์ตีซึ่งมีผู้ลงคะแนนเสียงบุคคลที่สาม 802 คนกี่เปอร์เซ็นต์",
    "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_en": "What percentage of voters chose McCain in the county where 1.1% of voters voted third party?",
    "question_th": "ผู้มีสิทธิเลือกตั้งเลือกแมคเคนในเคาน์ตีที่ 1.1% ของผู้ลงคะแนนโหวตเป็นบุคคลที่สามมีกี่เปอร์เซ็นต์",
    "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_en": "What percentage of voters chose McCain in the county where 2.1% of voters voted third party?",
    "question_th": "ผู้มีสิทธิเลือกตั้งเลือกแมคเคนในเคาน์ตีที่ 2.1% ของผู้ลงคะแนนโหวตเป็นบุคคลที่สามมีกี่เปอร์เซ็นต์",
    "context": "CREATE TABLE table_20278716_2 (mccain__percentage VARCHAR, others__percentage VARCHAR)"
  },
  {
    "answer": "SELECT county FROM table_20278716_2 WHERE others__number = 915",
    "question_en": "What county had 915 third party voters?",
    "question_th": "มณฑลใดมีผู้ลงคะแนนเสียงบุคคลที่สาม 915 คน",
    "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_en": "Name the ply (uk, nz, au) for fingering ",
    "question_th": " ตั้งชื่อชั้น (uk, nz, au) สำหรับการใช้นิ้ว",
    "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_en": "Name the wraps per inch for 120-240",
    "question_th": "ตั้งชื่อผ้าห่อตัวต่อนิ้วเป็น 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_en": "Name the ply uk, nz, au for wraps per inch 7 wpi",
    "question_th": "ตั้งชื่อ ply uk, nz, au สำหรับการพันต่อนิ้ว 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_en": "Name the yarn type for standard yarn weight system for 3 or light",
    "question_th": "ตั้งชื่อประเภทเส้นด้ายสำหรับระบบน้ำหนักเส้นด้ายมาตรฐานสำหรับ 3 หรือเส้นด้ายอ่อน",
    "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_en": "Name the standard yarn weight system for 7 wpi",
    "question_th": "ตั้งชื่อระบบน้ำหนักเส้นด้ายมาตรฐานสำหรับ 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_en": "Name the standard yarn weight system for 9 wpi",
    "question_th": "ตั้งชื่อระบบน้ำหนักเส้นด้ายมาตรฐานสำหรับ 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_en": "When was the motor gear of the LMS 1946 no. 1901 model fitted?",
    "question_th": "เกียร์มอเตอร์ของ LMS 1946 เบอร์ 1 มีมาเมื่อใด ใส่รุ่น 1901 ได้ไหมครับ?",
    "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_en": "how many matches did wayne mardle play",
    "question_th": "เวย์น มาร์เดิลลงเล่นกี่นัด",
    "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_en": "what is the 3-dart average of raymond van barneveld",
    "question_th": "ค่าเฉลี่ย 3 ดอกของเรย์มอนด์ แวน บาร์เนเวลด์เป็นเท่าใด",
    "context": "CREATE TABLE table_20301877_2 (player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(result) FROM table_20319085_2 WHERE conference_record = \"4-3\"",
    "question_en": "How many different results are there for the season with a 4-3 conference record?",
    "question_th": "มีผลลัพธ์ที่แตกต่างกันกี่รายการสำหรับฤดูกาลด้วยสถิติการประชุม 4-3?",
    "context": "CREATE TABLE table_20319085_2 (result VARCHAR, conference_record VARCHAR)"
  },
  {
    "answer": "SELECT coach FROM table_20319085_2 WHERE conference_record = \"6-1\"",
    "question_en": "Who coached the team in the season with a 6-1 conference record?",
    "question_th": "ใครเป็นโค้ชทีมในฤดูกาลนี้ด้วยสถิติการประชุม 6-1?",
    "context": "CREATE TABLE table_20319085_2 (coach VARCHAR, conference_record VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(conference_record) FROM table_20319085_2 WHERE season = 2006",
    "question_en": "How many different conference records are there for season 2006?",
    "question_th": "มีบันทึกการประชุมที่แตกต่างกันสำหรับฤดูกาลปี 2549 กี่รายการ?",
    "context": "CREATE TABLE table_20319085_2 (conference_record VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_20319085_2 WHERE conference_record = \"7-2\"",
    "question_en": "How did the season with 7-2 conference record ed?",
    "question_th": "ฤดูกาลที่มีบันทึกการประชุม 7-2 ปรับปรุงอย่างไร?",
    "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_en": "In what season was the conference record 4-3?",
    "question_th": "บันทึกการประชุม 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_en": "What is the highest number of third place runners up held by any of the countries competing in the Mr. International competition?. ",
    "question_th": " ประเทศใดที่เข้าร่วมการแข่งขัน Mr. International มีตำแหน่งรองชนะเลิศอันดับที่ 3 มากที่สุดคือจำนวนเท่าใด",
    "context": "CREATE TABLE table_20325360_2 (Id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(2 AS nd_runner_up) FROM table_20325360_2 WHERE rank = 3",
    "question_en": "The country, competing in the Mr. International competition, that holds a rank of 3, has how many 2nd runners up?",
    "question_th": "ประเทศที่เข้าแข่งขันรายการ Mr.International ที่รั้งอันดับ 3 มีรองชนะเลิศอันดับ 2 กี่คน?",
    "context": "CREATE TABLE table_20325360_2 (rank VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(2 AS nd_runner_up) FROM table_20325360_2 WHERE rank = 2",
    "question_en": "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?",
    "question_th": "สำหรับประเทศที่รั้งอันดับ 2 ในรายการ Mr. International Competition มีผู้เข้าแข่งขันอันดับที่ 2 ทั้งหมดกี่คน?",
    "context": "CREATE TABLE table_20325360_2 (rank VARCHAR)"
  },
  {
    "answer": "SELECT MAX(total) FROM table_20325360_2 WHERE country_territory = \"Brazil\"",
    "question_en": "How many competitors in total, for the Mr. International competition, does Brazil have? ",
    "question_th": " บราซิลมีผู้เข้าแข่งขันทั้งหมดกี่คนในการแข่งขัน Mr. International?",
    "context": "CREATE TABLE table_20325360_2 (total INTEGER, country_territory VARCHAR)"
  },
  {
    "answer": "SELECT high_checkout FROM table_20351295_2 WHERE player = \"Trina Gulliver\"",
    "question_en": "What's Trina Gulliver's high checkout?",
    "question_th": "การชำระเงินที่สูงของ Trina Gulliver คืออะไร?",
    "context": "CREATE TABLE table_20351295_2 (high_checkout VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT legs_won FROM table_20351295_2 WHERE high_checkout = 80",
    "question_en": "How many legs has the player with high checkout of 80 won?",
    "question_th": "ผู้เล่นที่มีเงินรางวัลสูงถึง 80 วอนมีกี่ขา?",
    "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_en": "Name the sanskrit word and meaning for aquarius",
    "question_th": "ตั้งชื่อคำภาษาสันสกฤตและความหมายสำหรับราศีกุมภ์",
    "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 = \"കന്നി\"",
    "question_en": "Name the zodiac for കന്നി",
    "question_th": "ตั้งชื่อราศีสำหรับ കന്നി",
    "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_en": "Name the malayalam name for leo",
    "question_th": "ตั้งชื่อมาลายาลัมให้ลีโอ",
    "context": "CREATE TABLE table_20354_7 (malayalam_name VARCHAR, zodiac_sign VARCHAR)"
  },
  {
    "answer": "SELECT transliteration FROM table_20354_7 WHERE malayalam_name = \"ചിങ്ങം\"",
    "question_en": "Name the transliteration for ചിങ്ങം",
    "question_th": "ตั้งชื่อการทับศัพท์สำหรับ ചിങ്ങം",
    "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_en": "How many votes did McCain get in the county where Obama got 50.7% of the votes?",
    "question_th": "แมคเคนได้รับคะแนนเสียงกี่คะแนนในเขตที่โอบามาได้คะแนนเสียง 50.7%",
    "context": "CREATE TABLE table_20350118_1 (mccain_number INTEGER, obama_percentage VARCHAR)"
  },
  {
    "answer": "SELECT county FROM table_20350118_1 WHERE mccain_number = 20226",
    "question_en": "Where did McCain get 20226 votes?",
    "question_th": "McCain ได้คะแนนโหวต 20226 คะแนนที่ไหน?",
    "context": "CREATE TABLE table_20350118_1 (county VARCHAR, mccain_number VARCHAR)"
  },
  {
    "answer": "SELECT MIN(total) FROM table_20350118_1 WHERE county = \"Cabarrus\"",
    "question_en": "How many people voted in Cabarrus county?",
    "question_th": "มีผู้ลงคะแนนกี่คนในเขต Cabarrus",
    "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_en": "How many different results were there for the number of votes fro Obama in the county where he got 27.8% of the votes?",
    "question_th": "มีผลลัพธ์ที่แตกต่างกันกี่รายการสำหรับจำนวนคะแนนเสียงของโอบามาในเขตที่เขาได้รับคะแนนเสียง 27.8%",
    "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_en": "How many episodes directed by ben jones and written by paul dini?",
    "question_th": "มีกี่ตอนที่กำกับโดย Ben Jones และเขียนโดย 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_en": "What is the title of S02E01?",
    "question_th": "ชื่อ 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_en": "What TV order is written by gail simone?",
    "question_th": "เกล ซิโมนเขียนลำดับรายการทีวีอะไร",
    "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_en": "who won mens doubles when zhou mi won womens singles",
    "question_th": "ผู้ชนะประเภทคู่ชายเมื่อโจวหมี่ชนะประเภทหญิงเดี่ยว",
    "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_en": "who won mixed doubles when zhou mi won womens singles",
    "question_th": "ผู้ชนะประเภทคู่ผสมเมื่อโจวหมี่ชนะประเภทหญิงเดี่ยว",
    "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_en": "state the earliest year li xuerui won womens singles",
    "question_th": "ระบุปีแรกสุดที่ li xuerui ชนะประเภทหญิงเดี่ยว",
    "context": "CREATE TABLE table_20361783_1 (year INTEGER, womens_singles VARCHAR)"
  },
  {
    "answer": "SELECT womens_doubles FROM table_20361783_1 WHERE year = 2010",
    "question_en": "who won womens doubles in 2010",
    "question_th": "ที่ได้รับรางวัลหญิงคู่ในปี 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_en": "who won mixed doubles when wang yihan won womens singles",
    "question_th": "ผู้ชนะประเภทคู่ผสมเมื่อหวังอี้หานชนะประเภทหญิงเดี่ยว",
    "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_en": "How many county councils for the communist party of norway",
    "question_th": "มีสภามณฑลกี่แห่งสำหรับพรรคคอมมิวนิสต์แห่งนอร์เวย์",
    "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_en": "What percent of the parliamentary election did the pensioners party receive",
    "question_th": "พรรคผู้รับบำนาญได้รับการเลือกตั้งรัฐสภากี่เปอร์เซ็นต์",
    "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_en": "How many parties are named the Center Alliance",
    "question_th": "มีกี่ฝ่ายที่ได้รับการตั้งชื่อว่า 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_en": "Name the most withdrawn for 37 lstr no.",
    "question_th": "ชื่อที่ถูกถอนมากที่สุดสำหรับ 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_en": "how many won 83 points for?",
    "question_th": "กี่คนก็ได้ 83 แต้ม?",
    "context": "CREATE TABLE table_20396710_1 (won VARCHAR, points_for VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_20396710_1 WHERE \"bonus_points\" = \"bonus_points\"",
    "question_en": "which club is listed when bonus points is bonus points",
    "question_th": "สโมสรใดระบุไว้เมื่อคะแนนโบนัสคือคะแนนโบนัส",
    "context": "CREATE TABLE table_20396710_1 (club VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(points_difference) FROM table_20396710_1 WHERE points_for = \"139\"",
    "question_en": "when the points for is 139 is points difference?",
    "question_th": "เมื่อคะแนนเป็น 139 คะแนนต่างกัน?",
    "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_en": "when points against is points again, which are the drawn?",
    "question_th": "เมื่อแต้มต่อเป็นแต้มอีกครั้งแต้มไหนเสมอ?",
    "context": "CREATE TABLE table_20396710_1 (drawn VARCHAR)"
  },
  {
    "answer": "SELECT drawn FROM table_20396710_1 WHERE points_for = \"39\"",
    "question_en": "when points for is 39 what is the total number of drawn",
    "question_th": "เมื่อแต้มได้ 39 แต้มรวมที่จับได้เป็นเท่าใด",
    "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_en": "what is the mccain % where obama got 19.3%",
    "question_th": "แมคเคน % เป็นเท่าใด โดยที่โอบามาได้ 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_en": "what is the highest mccain # where obama got 33.7%",
    "question_th": "แมคเคนที่สูงที่สุดคืออะไร #โดยที่โอบามาได้ 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_en": "where did obama get 39.8%",
    "question_th": "โอบามาได้ 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_en": "what is the obama # in carson city",
    "question_th": "โอบามา # ในเมืองคาร์สันคืออะไร",
    "context": "CREATE TABLE table_20424014_1 (obama__number VARCHAR, county VARCHAR)"
  },
  {
    "answer": "SELECT county FROM table_20424014_1 WHERE obama__percentage = \"41.3%\"",
    "question_en": "where did obama get 41.3%",
    "question_th": "โอบามาได้ 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_en": "Name the number of season for team bruichladdich",
    "question_th": "บอกชื่อหมายเลขฤดูกาลของทีมบรูชลัดดิช",
    "context": "CREATE TABLE table_20398823_1 (season VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT MIN(podiums) FROM table_20398823_1 WHERE points = \"49\"",
    "question_en": "Name the least podiums for 49 points",
    "question_th": "ระบุชื่อโพเดี้ยมน้อยที่สุดได้ 49 แต้ม",
    "context": "CREATE TABLE table_20398823_1 (podiums INTEGER, points VARCHAR)"
  },
  {
    "answer": "SELECT MIN(f_laps) FROM table_20398823_1",
    "question_en": "Name the least f/laps",
    "question_th": "ตั้งชื่อ 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_en": "Namet he season for wins being 0 and 20 races",
    "question_th": "ฤดูกาลที่เขาชนะคือ 0 และ 20 การแข่งขัน",
    "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_en": "Name the least podiums for 0 wins and 2005 season for 321 points",
    "question_th": "ขึ้นโพเดียมน้อยที่สุดด้วยการชนะ 0 ครั้ง และฤดูกาล 2005 ได้ 321 แต้ม",
    "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_en": "What is the Spanish title of the film whose title used in nomination was Ogu and Mampato in Rapa Nui? ",
    "question_th": " ชื่อภาษาสเปนของภาพยนตร์ที่ใช้ชื่อในการเสนอชื่อคือ Ogu และ Mampato ใน 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_en": "Who was the director of the film that was not nominated and had the Spanish title of play? ",
    "question_th": " ใครคือผู้กำกับภาพยนตร์ที่ไม่ได้รับการเสนอชื่อเข้าชิงและได้รับบทละครภาษาสเปน",
    "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_en": "How many couples have an average of 25.3?",
    "question_th": "มีคู่รักกี่คู่ที่มีค่าเฉลี่ย 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_en": "How many different numbers of total dances are there for the couple ranked at number 6?",
    "question_th": "คู่รักอันดับที่ 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_en": "What couple has an average of 17.2?",
    "question_th": "คู่ไหนมีค่าเฉลี่ย 17.2?",
    "context": "CREATE TABLE table_20424140_3 (couple VARCHAR, average VARCHAR)"
  },
  {
    "answer": "SELECT MIN(number_of_dances) FROM table_20424140_3",
    "question_en": "What's the minimal number of dances a couple has danced?",
    "question_th": "จำนวนการเต้นรำขั้นต่ำที่คู่หนึ่งเต้นคือเท่าไร?",
    "context": "CREATE TABLE table_20424140_3 (number_of_dances INTEGER)"
  },
  {
    "answer": "SELECT MAX(place) FROM table_20424140_3",
    "question_en": "What's the highest number a couple has ranked at?",
    "question_th": "คู่รักที่มีอันดับสูงสุดอยู่ที่เท่าไร?",
    "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_en": "How many crops were damaged when the public property damage was 1,03,049.60?",
    "question_th": "พืชผลเสียหายจำนวนเท่าใดเมื่อทรัพย์สินสาธารณะเสียหาย 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_en": "What is the panchayat when the public property damage was 1,03,049.60",
    "question_th": "ปัญจยัตคืออะไร เมื่อทรัพย์สินสาธารณะเสียหาย 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_en": "What is the largest village that had 103279 houses affected? ",
    "question_th": " หมู่บ้านที่ใหญ่ที่สุดที่มีบ้านเรือนได้รับผลกระทบ 1,03279 หลังคืออะไร?",
    "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_en": "What is the smallest district that had 33.25 in animals",
    "question_th": "เขตที่เล็กที่สุดที่มีสัตว์ 33.25 คือเขตใด",
    "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_en": "How many districts had crib damage of 1,164.50?",
    "question_th": "กี่อำเภอมีเปลเสียหาย 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_en": "Where did Obama get 37.1%?",
    "question_th": "โอบามาได้ 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_en": "What's the county where McCain got 60.6% and Obama got 37.3%?",
    "question_th": "เขตใดที่แมคเคนได้ 60.6% และโอบามาได้ 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_en": "What's the number of McCain votes in the county where Obama got 35.7% and others got 1.9% of the votes?",
    "question_th": "จำนวนคะแนนเสียงของแมคเคนในเขตที่โอบามาได้ 35.7% และคนอื่นๆ ได้คะแนนเสียง 1.9% เป็นเท่าใด",
    "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_en": "How many votes did Obama get in Geauga?",
    "question_th": "โอบามาได้รับคะแนนเสียงกี่คะแนนใน 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_en": "How many people voted for others in the county where McCain got 65.5% of the votes?",
    "question_th": "มีกี่คนที่โหวตให้คนอื่นในเขตที่ McCain ได้คะแนนเสียง 65.5%",
    "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_en": "What is Phil Taylor's 3-dart average?",
    "question_th": "ค่าเฉลี่ยลูกดอก 3 ดอกของ Phil Taylor คืออะไร?",
    "context": "CREATE TABLE table_20463779_22 (player VARCHAR)"
  },
  {
    "answer": "SELECT guest_3 FROM table_20466963_4 WHERE guest_4 = \"Jill Douglas\"",
    "question_en": "Who is the guest 3 in the show where guest 4 is Jill Douglas?",
    "question_th": "แขกคนที่ 3 ในรายการคือใคร โดยแขกคนที่ 4 คือ จิล ดักลาส",
    "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_en": "Who is the guest 2 in the episode where guest 4 is Iyare Igiehon and guest 3 is John Oliver?",
    "question_th": "แขกรับเชิญคนที่ 2 ในตอนที่แขกรับเชิญคนที่ 4 คือ อิยาเระ อิจิฮอน และแขกรับเชิญคนที่ 3 คือ จอห์น โอลิเวอร์",
    "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_en": "Who is the guest 1 in the episode where guest 4 is Jill Douglas?",
    "question_th": "แขกคนที่ 1 ในตอนที่แขกคนที่ 4 คือ จิล ดักลาส คือใคร?",
    "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_en": "How many dates are associated with a guest 4 being Jim Jeffries (debut)?",
    "question_th": "มีกี่วันที่เชื่อมโยงกับแขกรับเชิญ 4 ที่เป็น Jim Jeffries (เปิดตัว)",
    "context": "CREATE TABLE table_20466963_4 (date VARCHAR, guest_4 VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_20466963_4 WHERE presenter = \"Johnny Vaughan\"",
    "question_en": "What is the date of the episode in which the presenter is Johnny Vaughan?",
    "question_th": "พิธีกรคือ จอห์นนี่ วอห์น ออกอากาศวันที่เท่าไหร่คะ?",
    "context": "CREATE TABLE table_20466963_4 (date VARCHAR, presenter VARCHAR)"
  },
  {
    "answer": "SELECT guest_4 FROM table_20466963_13 WHERE date = \"8 December\"",
    "question_en": "Name the guest 4 for 8 december",
    "question_th": "ตั้งชื่อแขก 4 วันที่ 8 ธันวาคม",
    "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_en": "Name the guest 4 for steve lamacq",
    "question_th": "ตั้งชื่อแขก 4 สำหรับ 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_en": "Name the guest 2 for colin murray 6 april",
    "question_th": "ตั้งชื่อแขกคนที่ 2 ให้กับคอลิน เมอร์เรย์ วันที่ 6 เมษายน",
    "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_en": "Name the presenter 11 may",
    "question_th": "ตั้งชื่อผู้นำเสนอ 11 พ.ค",
    "context": "CREATE TABLE table_20466963_13 (presenter VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT guest_3 FROM table_20466963_13 WHERE guest_2 = \"Iyare Igiehon\"",
    "question_en": "Name the guest 3 for iyare igiehon",
    "question_th": "ตั้งชื่อแขกคนที่ 3 สำหรับ 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_en": "How many seasons featured 29 conversions?",
    "question_th": "มีกี่ฤดูกาลที่มีการแปลง 29 ครั้ง?",
    "context": "CREATE TABLE table_20505342_1 (penalties VARCHAR, conversions VARCHAR)"
  },
  {
    "answer": "SELECT MIN(drop_goals) FROM table_20505342_1",
    "question_en": "Lowest number of drop goals?",
    "question_th": "จำนวนประตูดรอปน้อยที่สุด?",
    "context": "CREATE TABLE table_20505342_1 (drop_goals INTEGER)"
  },
  {
    "answer": "SELECT MIN(total_points) FROM table_20505342_1 WHERE drop_goals = 2",
    "question_en": "What is the point total for the season with 2 drop goals?",
    "question_th": "คะแนนรวมของฤดูกาลที่เสีย 2 ประตูคือเท่าไร?",
    "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_en": "Name the most obama number for mccain being 38.86%",
    "question_th": "ตั้งชื่อหมายเลขโอบามามากที่สุดสำหรับแมคเคนคือ 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_en": "Name the most abama number for mccain being 29266",
    "question_th": "ตั้งชื่อหมายเลขอาบามามากที่สุดสำหรับแมคเคนคือ 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_en": "Name the county for mccain being 38.78%",
    "question_th": "ตั้งชื่อเคาน์ตีสำหรับแมคเคนเป็น 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_en": "In how many counties di McCain win 41.62% of the vote?",
    "question_th": "มีกี่มณฑลที่ดิ แมคเคนได้รับคะแนนเสียง 41.62%",
    "context": "CREATE TABLE table_20524090_1 (county VARCHAR, mccain_percentage VARCHAR)"
  },
  {
    "answer": "SELECT mccain_percentage FROM table_20524090_1 WHERE county = \"Waynesboro (city)\"",
    "question_en": "What percentage of the vote did McCain win in Waynesboro (city)?",
    "question_th": "แมคเคนชนะคะแนนเสียงกี่เปอร์เซ็นต์ในเวย์เนสโบโร (เมือง)",
    "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_en": "What was Obama's percentage in those places where McCain's percentage was 55.46%?",
    "question_th": "เปอร์เซ็นต์ของโอบามาในสถานที่เหล่านั้นที่เปอร์เซ็นต์ของแมคเคนอยู่ที่ 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_en": "What was Obama's percentage in the county of Alleghany?",
    "question_th": "เปอร์เซ็นต์ของโอบามาในเขตอัลเลกานีคือเท่าใด",
    "context": "CREATE TABLE table_20524090_1 (obama_percentage VARCHAR, county VARCHAR)"
  },
  {
    "answer": "SELECT obama_percentage FROM table_20524090_1 WHERE county = \"Surry\"",
    "question_en": "What was Obama's percentage in the county of Surry?",
    "question_th": "เปอร์เซ็นต์ของโอบามาในเขตเซอร์รีคือเท่าใด",
    "context": "CREATE TABLE table_20524090_1 (obama_percentage VARCHAR, county VARCHAR)"
  },
  {
    "answer": "SELECT mccain_percentage FROM table_20539826_1 WHERE county = \"DeBaca\"",
    "question_en": "How many percent of the votes in Debaca did McCain get?",
    "question_th": "McCain ได้รับคะแนนเสียงกี่เปอร์เซ็นต์?",
    "context": "CREATE TABLE table_20539826_1 (mccain_percentage VARCHAR, county VARCHAR)"
  },
  {
    "answer": "SELECT obama_percentage FROM table_20539826_1 WHERE total = 3909",
    "question_en": "What percentage of the votes did Obama get in the county where 3909 people voted in total?",
    "question_th": "โอบามาได้รับคะแนนเสียงกี่เปอร์เซ็นต์ในเขตที่มีผู้ลงคะแนนทั้งหมด 3,909 คน",
    "context": "CREATE TABLE table_20539826_1 (obama_percentage VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT obama_percentage FROM table_20539826_1 WHERE mccain_number = 3648",
    "question_en": "What percentage of the votes did Obama get in the county where McCain got 3648 votes?",
    "question_th": "โอบามาได้รับคะแนนเสียงกี่เปอร์เซ็นต์ในเขตที่แมคเคนได้คะแนนเสียง 3,648 เสียง",
    "context": "CREATE TABLE table_20539826_1 (obama_percentage VARCHAR, mccain_number VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_20540006_6 WHERE sec_team = \"LSU\"",
    "question_en": "Who was the winner when the SEC team LSU played?",
    "question_th": "ใครคือผู้ชนะเมื่อทีม SEC LSU เล่น?",
    "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_en": "What was the attendance for the game when the challenge leader was at Big East (4-2)?",
    "question_th": "ผู้เข้าชมเกมเมื่อผู้นำการท้าทายอยู่ที่บิ๊กอีสต์ (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_en": "What suumer team was James Lomangino from St. John's on?",
    "question_th": "James Lomangino จาก St. John's อยู่ทีมซูเมอร์คนใด",
    "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_en": "In what draft round in 2012 did a player from Rio Hondo get drafted?",
    "question_th": "ผู้เล่นจากริโอ ฮอนโดถูกดราฟท์รอบใดในปี 2012?",
    "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_en": "What college did Aaron Slegers attend?",
    "question_th": "Aaron Slegers เข้าเรียนที่วิทยาลัยใด",
    "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_en": "What are the statuses of the platelet counts for the conditions where the prothrombin time and partial thromboblastin time is unaffected? ",
    "question_th": " สถานะของการนับเกล็ดเลือดสำหรับภาวะที่ไม่ส่งผลต่อเวลาของการเกิดโปรทรอมบินและเวลาของทรอมโบบลาสตินบางส่วนคืออะไร?",
    "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_en": "What is the status of partial thromboplastin times for conditions where the platelet count is decreased? ",
    "question_th": "สถานะเวลาของ thromboplastin บางส่วนสำหรับภาวะที่จำนวนเกล็ดเลือดลดลงเป็นอย่างไร?",
    "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_en": "In what conditions are both the platelet count and prothrombin time unaffected? ",
    "question_th": " จำนวนเกล็ดเลือดและเวลาของโปรทรอมบินไม่ได้รับผลกระทบในสภาวะใดบ้าง",
    "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_en": "What is the status of bleeding time for thrombocytopenia? ",
    "question_th": " สถานะของเวลาเลือดออกสำหรับภาวะเกล็ดเลือดต่ำคืออะไร?",
    "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_en": "What is the status of platelet counts for conditions where bleeding time is prolonged and partial thromboplastin time is unaffected? ",
    "question_th": " สถานะของการนับเกล็ดเลือดสำหรับภาวะที่เลือดออกนานขึ้นและไม่มีผลกระทบต่อเวลาของเกล็ดเลือดบางส่วนจะเป็นอย่างไร",
    "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_en": "Which players made exactly 8 cuts?",
    "question_th": "ผู้เล่นคนไหนตัดได้ 8 ครั้งพอดี?",
    "context": "CREATE TABLE table_20590020_2 (player VARCHAR, cuts_made VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(starts) FROM table_20590020_2 WHERE player = \"Leif Olson\"",
    "question_en": "What is the total number of entries for Leif Olson?",
    "question_th": "จำนวนรายการทั้งหมดของ 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_en": "What is the total number of players who had a money list rank of 96?",
    "question_th": "จำนวนผู้เล่นทั้งหมดที่มีเงินอันดับ 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_en": "what is the name for br no. 60501",
    "question_th": "หมายเลขเบอร์ชื่ออะไร 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_en": "When 23% scott mcadams (d) what are the dates administered?",
    "question_th": "เมื่อ 23% scott mcadams (ง) กำหนดวันไหน?",
    "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_en": "When 30% is scott mcadams (d) percentage how many poll sources are there?",
    "question_th": "เมื่อ 30% เป็น scott mcadams (d) เปอร์เซ็นต์ มีแหล่งสำรวจความคิดเห็นกี่แหล่ง",
    "context": "CREATE TABLE table_20597634_3 (poll_source VARCHAR, scott_mcadams__d_ VARCHAR)"
  },
  {
    "answer": "SELECT MAX(revenue__) AS €million_ FROM table_20614109_1 WHERE earnings_per_share__€_ = \"1.19\"",
    "question_en": "Name the revenue for eps being 1.19",
    "question_th": "ตั้งชื่อรายได้สำหรับ eps เป็น 1.19",
    "context": "CREATE TABLE table_20614109_1 (revenue__ INTEGER, earnings_per_share__€_ VARCHAR)"
  },
  {
    "answer": "SELECT net_profit__€m_ FROM table_20614109_1 WHERE earnings_per_share__€_ = \"1.19\"",
    "question_en": "Name the net profit for eps beign 1.19",
    "question_th": "ตั้งชื่อกำไรสุทธิสำหรับ eps beign 1.19",
    "context": "CREATE TABLE table_20614109_1 (net_profit__€m_ VARCHAR, earnings_per_share__€_ VARCHAR)"
  },
  {
    "answer": "SELECT earnings_before_interest_and_taxes__€m_ FROM table_20614109_1 WHERE earnings_per_share__€_ = \"1.78\"",
    "question_en": "Name the ebit for eps being 1.78",
    "question_th": "ตั้งชื่อส่วนที่เพิ่มขึ้นสำหรับ eps เป็น 1.78",
    "context": "CREATE TABLE table_20614109_1 (earnings_before_interest_and_taxes__€m_ VARCHAR, earnings_per_share__€_ VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(production_code) FROM table_20613292_1 WHERE directed_by = \"Dominic Polcino\"",
    "question_en": "How many different production codes does the episode directed by Dominic Polcino have?",
    "question_th": "ตอนที่กำกับโดย Dominic Polcino มีรหัสการผลิตที่แตกต่างกันกี่รหัส",
    "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_en": "What's the production code of the episode written by Kirker Butler and directed by Dan Povenmire?",
    "question_th": "รหัสการผลิตของตอนที่เขียนโดย Kirker Butler และกำกับโดย 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_en": "What was the weight in kg when the jockey was B. York? ",
    "question_th": " น้ำหนักเป็นกิโลกรัมเมื่อนักจัดรายการคือ 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_en": "What was the result of the race where the jockey was J. Marshall? ",
    "question_th": " อะไรคือผลลัพธ์ของการแข่งขันที่เจ. มาร์แชลเป็นจ๊อกกี้?",
    "context": "CREATE TABLE table_2062148_2 (result VARCHAR, jockey VARCHAR)"
  },
  {
    "answer": "SELECT MAX(weight__kg_) FROM table_2062148_4",
    "question_en": "Name the most weight",
    "question_th": "ตั้งชื่อน้ำหนักมากที่สุด",
    "context": "CREATE TABLE table_2062148_4 (weight__kg_ INTEGER)"
  },
  {
    "answer": "SELECT date FROM table_2062148_4 WHERE venue = \"Moonee Valley\"",
    "question_en": "Name the date for moonee valley",
    "question_th": "ตั้งชื่อวันที่สำหรับหุบเขามูนี",
    "context": "CREATE TABLE table_2062148_4 (date VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT group FROM table_2062148_3 WHERE race = \"Hollindale Stakes\"",
    "question_en": "What group was the Hollindale Stakes in?",
    "question_th": "Hollindale Stakes อยู่ในกลุ่มใด",
    "context": "CREATE TABLE table_2062148_3 (group VARCHAR, race VARCHAR)"
  },
  {
    "answer": "SELECT race FROM table_2062148_3 WHERE distance = \"1200 m\"",
    "question_en": "What race has a distance of 1200 m?",
    "question_th": "การแข่งขันรายการใดมีระยะทาง 1,200 เมตร?",
    "context": "CREATE TABLE table_2062148_3 (race VARCHAR, distance VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_20626467_1 WHERE time = \"1-26.21\"",
    "question_en": "What was the result for the time of 1-26.21?",
    "question_th": "งวดวันที่ 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_en": "Who was the jockey in group 1 at the 1400m distance at randwick?",
    "question_th": "ใครคือจ๊อกกี้ในกลุ่ม 1 ที่ระยะ 1,400 ม. ที่แรนด์วิค",
    "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_en": "What class was the 2nd - portillo?",
    "question_th": "คลาสที่ 2 - ปอร์ติลโลคืออะไร?",
    "context": "CREATE TABLE table_20626467_1 (class VARCHAR, winner_2nd VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_20626467_1 WHERE weight__kg_ = \"54.4kg\"",
    "question_en": "What time for the entrant weighing 54.4kg?",
    "question_th": "ผู้เข้าร่วมที่มีน้ำหนัก 54.4 กก. จะต้องเข้ารอบกี่โมง?",
    "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_en": "What is every entry for epoch if periselene is 5,454.925?",
    "question_th": "ทุกรายการสำหรับยุคจะเป็นอย่างไรถ้าเพอริลีนคือ 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_en": "What is every entry for epoch if periselene is 2,291.250?",
    "question_th": "ทุกรายการสำหรับยุคจะเท่ากับเท่าไรหากเพอริเซลีนคือ 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_en": "What is every value of period when eccentricity is 0.583085?",
    "question_th": "ค่าของคาบที่ค่าความเยื้องศูนย์คือ 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_en": "What is every value of epoch if inclination is 90.063603?",
    "question_th": "ทุกค่าของยุคจะเป็นเท่าใดหากความเอียงคือ 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_en": "What is every value for periselene if period is 4.947432?",
    "question_th": "ทุกค่าของเพอริเซลีนคือเท่าใด หากระยะเวลาคือ 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_en": "How many values of periselene when epoch is November 15, 2004, 17:47:12.1?",
    "question_th": "มีค่า periselen กี่ค่าเมื่อยุคคือ 15 พฤศจิกายน 2547, 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_en": "How many times did the Bruins play Tennessee?",
    "question_th": "บรูอินส์เล่นเทนเนสซีกี่ครั้ง?",
    "context": "CREATE TABLE table_20630665_1 (result VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT also_currently_known_as FROM table_20630462_1 WHERE tournament = \"Tampa\"",
    "question_en": "What is the current tournament name for the event in Tampa?",
    "question_th": "ชื่อทัวร์นาเมนต์ปัจจุบันของงานที่แทมปาคืออะไร?",
    "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_en": "What is the tier IV year for the tournament held in Tampa?",
    "question_th": "ปีระดับ IV ของทัวร์นาเมนต์ที่จัดขึ้นที่เมืองแทมปาคือปีใด?",
    "context": "CREATE TABLE table_20630462_1 (tier_iv_in VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT MAX(years) FROM table_20630462_1 WHERE tournament = \"Rome\"",
    "question_en": "What is the most years that tournaments held in Rome have lasted?",
    "question_th": "การแข่งขันที่จัดขึ้นในโรมใช้เวลาหลายปีมากที่สุดคือกี่ปี?",
    "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_en": "What is the city location of the tournament currently known as the Medibank International Sydney?",
    "question_th": "เมืองของทัวร์นาเมนต์ปัจจุบันรู้จักกันในชื่อ 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_en": "How many different shareholders have 2.39 % of capital?",
    "question_th": "ผู้ถือหุ้นคนละกี่คนมีทุน 2.39 %?",
    "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_en": "What shareholders have 0 A shares?",
    "question_th": "ผู้ถือหุ้นรายใดมีหุ้น 0 A?",
    "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_en": "What percentage of votes does the shareholder with 78.19% of capital have?",
    "question_th": "ผู้ถือหุ้นซึ่งถือหุ้นร้อยละ 78.19 มีคะแนนเสียงกี่เปอร์เซ็นต์?",
    "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_en": "How many different numbers of B shares does Handelsbanken fonder have?",
    "question_th": "Handelsbanken fonder มีหุ้น B ที่แตกต่างกันจำนวนเท่าใด",
    "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_en": "What's the green (SW) of the model with charcoal/white interior/roof?",
    "question_th": "สีเขียว (SW) ของรุ่นที่มีสีชาร์โคล/ภายในสีขาว/หลังคาคือสีอะไร?",
    "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_en": "How many different results for red (e8) does the model with parchment/saddle interior/roof have?",
    "question_th": "สีแดง (e8) รุ่นที่มีแผ่นหนัง/เบาะภายใน/หลังคา ให้ผลลัพธ์ที่แตกต่างกันกี่แบบ?",
    "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_en": "How many different total results are there for the model with parchment/black interior/roof?",
    "question_th": "รุ่นที่มีแผ่นหนัง/ภายในสีดำ/หลังคามีผลลัพธ์ที่แตกต่างกันทั้งหมดกี่แบบ",
    "context": "CREATE TABLE table_2066296_5 (totals VARCHAR, interior_roof VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_20649850_1 WHERE player = \"Aaron Wagner\"",
    "question_en": "Where did aaron wagner go to college",
    "question_th": "แอรอน วากเนอร์ไปเรียนที่วิทยาลัยที่ไหน",
    "context": "CREATE TABLE table_20649850_1 (college VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_20649850_1 WHERE position = \"OL\"",
    "question_en": "Where did the ol go to college?",
    "question_th": "เฒ่าเรียนมหาลัยไหน?",
    "context": "CREATE TABLE table_20649850_1 (college VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT MIN(pick__number) FROM table_20649850_1 WHERE college = \"New Mexico\"",
    "question_en": "Name the number for new mexico",
    "question_th": "ตั้งชื่อหมายเลขสำหรับเม็กซิโกใหม่",
    "context": "CREATE TABLE table_20649850_1 (pick__number INTEGER, college VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(pick__number) FROM table_20649850_1 WHERE position = \"DB\"",
    "question_en": "Name the number for db",
    "question_th": "ตั้งชื่อหมายเลขสำหรับ db",
    "context": "CREATE TABLE table_20649850_1 (pick__number VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_20649850_1 WHERE position = \"OL\"",
    "question_en": "Name the player for ol",
    "question_th": "ตั้งชื่อผู้เล่นว่า ol",
    "context": "CREATE TABLE table_20649850_1 (player VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT pick__number FROM table_20649850_1 WHERE position = \"DL\"",
    "question_en": "Name the number for dl",
    "question_th": "ตั้งชื่อหมายเลขสำหรับ 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_en": "Which companies have a free float of 0.2726?",
    "question_th": "บริษัทไหนมี Free Float อยู่ที่ 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_en": "What is every BSE code for a free float of 0.2726?",
    "question_th": "รหัส BSE ทุกรหัสสำหรับโฟลตฟรี 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_en": "What is every GICS sector for free float of 0.3180?",
    "question_th": "ทุกภาคส่วน GICS สำหรับ Free Float ที่ 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_en": "What is every company with an index weighting % of 1 and the city of Dimitrovgrad?",
    "question_th": "ทุกบริษัทที่มีดัชนีถ่วงน้ำหนัก % 1 และเมือง 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_en": "How many GICS sectors have a free float of 0.2391?",
    "question_th": "มีกี่ภาค GICS ที่มี Free Float ที่ 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_en": "How many values of free float for the BSE code of 4EH?",
    "question_th": "Free Float สำหรับรหัส BSE ของ 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_en": "How many polls taken on different dates show an undecided percentage of 25%?",
    "question_th": "มีการสำรวจกี่ครั้งในวันที่ต่างกันแสดงเปอร์เซ็นต์ที่ยังไม่ได้ตัดสินใจที่ 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_en": "When was Quantum Research's poll conducted?",
    "question_th": "การสำรวจความคิดเห็นของ Quantum Research จัดขึ้นเมื่อใด",
    "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_en": "Who conducted the poll with sample size of 2000 that shows 18% undecided?",
    "question_th": "ใครเป็นผู้ดำเนินการสำรวจความคิดเห็นด้วยขนาดตัวอย่างปี 2000 ซึ่งแสดงว่ามีผู้ยังไม่ตัดสินใจ 18%",
    "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_en": "How tall is the contestant from Ecuador?",
    "question_th": "ผู้เข้าแข่งขันจากเอกวาดอร์สูงเท่าไหร่?",
    "context": "CREATE TABLE table_20669355_2 (height__ft_ VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT height__ft_ FROM table_20669355_2 WHERE country = \"Aruba\"",
    "question_en": "How tall is the contestant from Aruba?",
    "question_th": "ผู้เข้าแข่งขันจาก 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_en": "What country is the contestant from San Francisco de Yojoa from?",
    "question_th": "ผู้เข้าแข่งขันจาก San Francisco de Yojoa มาจากประเทศใด?",
    "context": "CREATE TABLE table_20669355_2 (country VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(height__ft_) FROM table_20669355_2 WHERE hometown = \"Warsaw\"",
    "question_en": "How many different heights are there for the contestants from Warsaw?",
    "question_th": "ผู้เข้าแข่งขันจากวอร์ซอมีความสูงต่างกันกี่ระดับ",
    "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_en": "What is the total of countys where Obama is popular by 35.44%?",
    "question_th": "มณฑลทั้งหมดที่โอบามาได้รับความนิยม 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_en": "What are McCain's Percent when Obama has 36.47%?",
    "question_th": "เปอร์เซ็นต์ของแมคเคนเป็นเท่าใดเมื่อโอบามามี 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_en": "What is McCains percent when Obamas is 39.13%",
    "question_th": "เปอร์เซ็นต์ของ McCains คืออะไรเมื่อ Obamas อยู่ที่ 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_en": "What is the maximum Obama supporters in Wayne county?",
    "question_th": "ผู้สนับสนุนโอบามาสูงสุดในเขตเวย์นคือเท่าไร?",
    "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_en": "Name th epopulation may for general terrero",
    "question_th": "ตั้งชื่อ epopulation สำหรับ 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_en": "What is the season number for Series #23, the Runway Job?",
    "question_th": "หมายเลขซีซันของ Series #23, 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_en": "What series was directed by Mark Roskin?",
    "question_th": "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_en": "How many were written by Peter Winther?",
    "question_th": "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_en": "How many directors were in Season 2?",
    "question_th": "มีผู้กำกับกี่คนในซีซั่น 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_en": "When was the episode written by Albert Kim aired for the first time?",
    "question_th": "ตอนที่เขียนโดย Albert Kim ออกอากาศครั้งแรกเมื่อไหร่?",
    "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_en": "Name the series number for  m. scott veach & rebecca kirsch",
    "question_th": "ตั้งชื่อหมายเลขซีรีส์สำหรับ m สก็อตต์ วีช และรีเบคก้า เคิร์ช",
    "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_en": "Name the number of viewers for series number 50",
    "question_th": "ตั้งชื่อจำนวนผู้ชมสำหรับซีรีส์หมายเลข 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_en": "Name who directed season 1",
    "question_th": "ชื่อผู้กำกับซีซั่น 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_en": "What is the moment of intertia in torsion (j) Cm4) for the beam height (mm) 120??=",
    "question_th": "โมเมนต์อินเทอร์เทียในแรงบิด (j) Cm4) สำหรับความสูงของคาน (มม.) คือเท่าใด 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_en": "What is the cross section area (cm 2) for the moment of intertia in torsion (j) (cm 4) 2.54?",
    "question_th": "พื้นที่หน้าตัด (ซม. 2) สำหรับโมเมนต์อินเทอร์เทียเป็นแรงบิด (j) (ซม. 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_en": "What is the flange thickness (mm) for the weight (kg/m) 6.0?Wg",
    "question_th": "ความหนาของหน้าแปลน (มม.) สำหรับน้ำหนัก (กก./ม.) คือเท่าไร 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_en": "What is the number for the moment of intertia in torsion (j) (cm 4) for the 4.7 web thickness (mm)?",
    "question_th": "ตัวเลขของโมเมนต์อินเทอร์เทียเป็นแรงบิด (j) (ซม. 4) สำหรับความหนาของราง 4.7 (มม.) คืออะไร?",
    "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_en": "What is the flange thickness (mm) for the weight (kg/m) 10.4?",
    "question_th": "ความหนาของหน้าแปลน (มม.) สำหรับน้ำหนัก (กก./ม.) 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_en": "What is the flange width (mm) for cross section area (cm 2) 16.4?",
    "question_th": "ความกว้างของหน้าแปลน (มม.) สำหรับพื้นที่หน้าตัด (ซม. 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_en": "In what round was lyon (32) a 5 seed?",
    "question_th": "ลียง (32) 5 เมล็ดในรอบใด?",
    "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_en": "How many items were recorded marseille (32 draw) was a 2 seed?",
    "question_th": "มาร์กเซยบันทึกไว้กี่รายการ (เสมอ 32) ได้ 2 เมล็ด?",
    "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_en": "What is the seed for lyon (32) was DNQ?",
    "question_th": "เมล็ดพันธุ์สำหรับลียง (32) คือ 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_en": "What was the result for Paris(48-byes) for 3 seed?",
    "question_th": "ผลลัพธ์ของปารีส (48 บาย) สำหรับ 3 เมล็ดคืออะไร?",
    "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_en": "What was McCain's percentage when Obama had 64.39% of the vote?",
    "question_th": "เปอร์เซ็นต์ของแมคเคนเมื่อโอบามามีคะแนนเสียง 64.39% เป็นเท่าใด",
    "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_en": "What was McCain's vote when Obama had 48.35%",
    "question_th": "แมคเคนโหวตอะไรเมื่อโอบามามี 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_en": "How many votes did Obama have at 32.12%",
    "question_th": "โอบามามีคะแนนเสียงกี่เสียงที่ 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_en": "What parish did McCain have 45.37% of the votes?",
    "question_th": "แมคเคนตำบลใดได้คะแนนเสียง 45.37%",
    "context": "CREATE TABLE table_20722805_1 (parish VARCHAR, mccain_percentage VARCHAR)"
  },
  {
    "answer": "SELECT MAX(mccain_number) FROM table_20722805_1 WHERE parish = \"Webster\"",
    "question_en": "What is the total number of votes McCain had in Webster?",
    "question_th": "จำนวนโหวตทั้งหมดที่ McCain มีในเว็บสเตอร์คือเท่าไร?",
    "context": "CREATE TABLE table_20722805_1 (mccain_number INTEGER, parish VARCHAR)"
  },
  {
    "answer": "SELECT originalairdate FROM table_20726262_2 WHERE production_code = \"1WAB06\"",
    "question_en": "What was the original air date for the episode with production code 1wab06?",
    "question_th": "วันที่ออกอากาศเดิมสำหรับตอนที่มีรหัสการผลิต 1wab06 คือเมื่อใด",
    "context": "CREATE TABLE table_20726262_2 (originalairdate VARCHAR, production_code VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_20726262_2 WHERE directedby = \"Paris Barclay\"",
    "question_en": "What title episode did Paris Barclay direct?",
    "question_th": "Paris Barclay กำกับตอนชื่อเรื่องอะไร",
    "context": "CREATE TABLE table_20726262_2 (title VARCHAR, directedby VARCHAR)"
  },
  {
    "answer": "SELECT production_code FROM table_20726262_2 WHERE no_in_series = 1",
    "question_en": "What was the production code for episode #1?",
    "question_th": "รหัสการผลิตสำหรับตอนที่ 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_en": "What number episode was written by kurt sutter & jack logiudice?",
    "question_th": "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_en": "What was the production code for the episode with 3.38 million viewers?",
    "question_th": "รหัสการผลิตสำหรับตอนที่มีผู้ชม 3.38 ล้านคนคืออะไร?",
    "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_en": "What season number did production code  2wab12?",
    "question_th": "รหัสการผลิต 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_en": "How many numbers in the season were written by  Brett Conrad & Liz Sagal?",
    "question_th": "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_en": "what i the maximum number in the series where the production code is 3wab07?",
    "question_th": "ฉันมีจำนวนสูงสุดในซีรีส์ที่รหัสการผลิตคือ 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_en": "what is the maximum number in the season wher the us viewers is 2.59?",
    "question_th": "จำนวนสูงสุดในฤดูกาลที่ผู้ชมสหรัฐคือ 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_en": "what is the written by and production code is 3wab03?",
    "question_th": "เขียนโดยและรหัสการผลิตคือ 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_en": "How many seats were won, when the seats contested was 48?",
    "question_th": "ได้ที่นั่งไปกี่ที่นั่ง เมื่อที่นั่งแข่งขันได้ 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_en": "How many seats are contested for independents?",
    "question_th": "ผู้สมัครอิสระจะแข่งขันกันกี่ที่นั่ง?",
    "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_en": "What is the percentage seats contested for the revolutionary socialist party?",
    "question_th": "พรรคสังคมนิยมปฏิวัติมีที่นั่งกี่เปอร์เซ็นต์?",
    "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_en": "What is the 2003 seat number, when seats contested was at 38.23%",
    "question_th": "หมายเลขที่นั่งปี 2546 คือเท่าใด เมื่อที่นั่งแข่งขันอยู่ที่ 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_en": "How many seats were forfeited in the revolutionary socialist party?",
    "question_th": "พรรคสังคมนิยมปฏิวัติถูกริบไปกี่ที่นั่ง?",
    "context": "CREATE TABLE table_20728138_1 (seats_forfeited VARCHAR, party VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_20745685_1 WHERE attendance = 16642",
    "question_en": "Who was the opponent when the attendance was exactly 16642?",
    "question_th": "คู่ต่อสู้คือใครเมื่อมีคนเข้าร่วม 16,642 คนพอดี?",
    "context": "CREATE TABLE table_20745685_1 (opponent VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_20745685_1 WHERE _number = 7",
    "question_en": "What is the score for game #7?",
    "question_th": "คะแนนของเกม #7 คืออะไร?",
    "context": "CREATE TABLE table_20745685_1 (score VARCHAR, _number VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_20745685_1 WHERE date = \"February 28, 1991\"",
    "question_en": "Who was the opponent on February 28, 1991",
    "question_th": "ซึ่งเป็นคู่ต่อสู้เมื่อวันที่ 28 กุมภาพันธ์ พ.ศ. 2534",
    "context": "CREATE TABLE table_20745685_1 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_20745444_1 WHERE record = \"1-0\"",
    "question_en": "What was the date when the record was 1-0?",
    "question_th": "วันที่เท่าไหร่ที่สถิติเป็น 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_en": "How many results finished in a loss?",
    "question_th": "มีกี่ผลลัพธ์ที่จบลงด้วยการขาดทุน?",
    "context": "CREATE TABLE table_20745444_1 (tar_heels_points VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT MAX(game) FROM table_20745444_1 WHERE opponent = \"Furman\"",
    "question_en": "How many games were against Furman?",
    "question_th": "แข่งกับเฟอร์แมนกี่เกม?",
    "context": "CREATE TABLE table_20745444_1 (game INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(opponents) FROM table_20745444_1 WHERE opponent = \"Duke\"",
    "question_en": "How many times were Duke the opponents?",
    "question_th": "Duke เป็นฝ่ายตรงข้ามกี่ครั้ง?",
    "context": "CREATE TABLE table_20745444_1 (opponents VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT MAX(opponents) FROM table_20745444_1 WHERE record = \"4-0\"",
    "question_en": "How many losses were there when the record was 4-0?",
    "question_th": "มีการสูญเสียกี่ครั้งเมื่อบันทึกเป็น 4-0?",
    "context": "CREATE TABLE table_20745444_1 (opponents INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT at_vs FROM table_20745754_1 WHERE _number = \"7\"",
    "question_en": "What was the game #7, at or versus (home or at)?",
    "question_th": "เกม #7 คืออะไร เยือนหรือต่อกร (เหย้าหรือเยือน)?",
    "context": "CREATE TABLE table_20745754_1 (at_vs VARCHAR, _number VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_20745754_1 WHERE _number = \"7\"",
    "question_en": "Who did they play against in game 7?",
    "question_th": "พวกเขาเล่นกับใครในเกมที่ 7?",
    "context": "CREATE TABLE table_20745754_1 (opponent VARCHAR, _number VARCHAR)"
  },
  {
    "answer": "SELECT _number FROM table_20745754_1 WHERE attendance = 2813",
    "question_en": "What game number had an attendance of 2813?",
    "question_th": "หมายเลขเกมใดที่มีผู้เข้าร่วม 2813?",
    "context": "CREATE TABLE table_20745754_1 (_number VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_20746062_1 WHERE game = 9",
    "question_en": "What day did the play game number 9?",
    "question_th": "เล่นเกมหมายเลข 9 วันไหน?",
    "context": "CREATE TABLE table_20746062_1 (date VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_20746062_1 WHERE record = \"2-1\"",
    "question_en": "What was the result of the game when they were 2-1?",
    "question_th": "ผลลัพธ์ของเกมเมื่อพวกเขาเสมอ 2-1 คืออะไร?",
    "context": "CREATE TABLE table_20746062_1 (result VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_20760407_1 WHERE bruins_points = 41",
    "question_en": "What was the record when the Bruins had 41 points?",
    "question_th": "บรูอินส์มี 41 แต้มมีสถิติอะไรบ้าง?",
    "context": "CREATE TABLE table_20760407_1 (record VARCHAR, bruins_points VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_20760407_1 WHERE game = 9",
    "question_en": "What was the date for game 9?",
    "question_th": "เกมที่ 9 วันที่เท่าไหร่?",
    "context": "CREATE TABLE table_20760407_1 (date VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT MAX(game) FROM table_20760407_1 WHERE bruins_points = 56",
    "question_en": "What game did the Bruins have 56 points?",
    "question_th": "บรูอินส์มี 56 แต้มในเกมไหน?",
    "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_en": "What is the total of played where lost equals 4 and drawn equals 1?",
    "question_th": "จำนวนการเล่นทั้งหมดโดยที่แพ้เท่ากับ 4 และเสมอเท่ากับ 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_en": "How many drawn are there where the Club is new ross?",
    "question_th": "มีกี่คนที่เสมอกันที่ 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_en": "How may drawn equal points against at 129?",
    "question_th": "จะดึงคะแนนเท่ากันกับ 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_en": "How many points differ from 134?",
    "question_th": "ต่างจาก 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_en": "How many of the points difference lost equal 10?",
    "question_th": "เสียคะแนนต่างกันกี่คะแนน เท่ากับ 10?",
    "context": "CREATE TABLE table_20760802_1 (points_difference VARCHAR, lost VARCHAR)"
  },
  {
    "answer": "SELECT played FROM table_20760802_1 WHERE won = \"0\"",
    "question_en": "How many teams that played won 0 games?",
    "question_th": "มีกี่ทีมที่เล่นชนะ 0 เกม?",
    "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_en": "What are the public schools with a master's university?",
    "question_th": "โรงเรียนของรัฐที่มีมหาวิทยาลัยระดับปริญญาโทมีอะไรบ้าง?",
    "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_en": "What is the minimum enrollment for Plainfield?",
    "question_th": "การลงทะเบียนขั้นต่ำสำหรับ 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_en": "What type of school had an enrollment in 2009 of 224?",
    "question_th": "โรงเรียนประเภทใดที่มีการลงทะเบียนในปี 2552 จาก 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_en": "When was Southern Vermont College founded?",
    "question_th": "Southern Vermont College ก่อตั้งขึ้นเมื่อใด",
    "context": "CREATE TABLE table_2076595_1 (founded INTEGER, school VARCHAR)"
  },
  {
    "answer": "SELECT control FROM table_2076595_1 WHERE type = \"Art school\"",
    "question_en": "Is art school public or private?",
    "question_th": "โรงเรียนศิลปะเป็นของรัฐหรือเอกชน?",
    "context": "CREATE TABLE table_2076595_1 (control VARCHAR, type VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_2076595_1 WHERE founded = 1791",
    "question_en": "What school was founded in 1791?",
    "question_th": "โรงเรียนใดก่อตั้งในปี พ.ศ. 2334?",
    "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_en": "Name the number of spring enrollment for sioux falls seminary",
    "question_th": "บอกจำนวนการลงทะเบียนฤดูใบไม้ผลิของเซมินารีซูฟอลส์",
    "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_en": "Name the accrediatation for southeast technical institute",
    "question_th": "ตั้งชื่อการรับรองสถาบันเทคนิคตะวันออกเฉียงใต้",
    "context": "CREATE TABLE table_2076557_2 (accreditation VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(founded) FROM table_2076557_2 WHERE location_s_ = \"Yankton\"",
    "question_en": "Name the total number of founded for yankton",
    "question_th": "ตั้งชื่อจำนวนการก่อตั้งทั้งหมดสำหรับแยงก์ตัน",
    "context": "CREATE TABLE table_2076557_2 (founded VARCHAR, location_s_ VARCHAR)"
  },
  {
    "answer": "SELECT italian FROM table_2077192_2 WHERE english = \"otter\"",
    "question_en": "What is the Italian word for the English word \"otter\"?",
    "question_th": "คำภาษาอิตาลีสำหรับคำว่า \"นาก\" ในภาษาอังกฤษคืออะไร?",
    "context": "CREATE TABLE table_2077192_2 (italian VARCHAR, english VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(french) FROM table_2077192_2 WHERE central_southern_calabrian = \"zinnapòtamu\"",
    "question_en": "How many French words does zinnapòtamu in Central-Southern Calabrian translate to?",
    "question_th": "zinnapòtamu ในภาษา Central-Southern Calabrian แปลเป็นภาษาฝรั่งเศสได้กี่คำ",
    "context": "CREATE TABLE table_2077192_2 (french VARCHAR, central_southern_calabrian VARCHAR)"
  },
  {
    "answer": "SELECT french FROM table_2077192_2 WHERE english = \"orange\"",
    "question_en": "What is the French translation for the English word \"orange\"?",
    "question_th": "คำว่า \"สีส้ม\" ในภาษาอังกฤษแปลเป็นภาษาฝรั่งเศสว่าอะไร?",
    "context": "CREATE TABLE table_2077192_2 (french VARCHAR, english VARCHAR)"
  },
  {
    "answer": "SELECT italian FROM table_2077192_2 WHERE english = \"orange\"",
    "question_en": "What is the Italian word for \"orange\" in English?",
    "question_th": "คำว่า \"สีส้ม\" ภาษาอิตาลีในภาษาอังกฤษคืออะไร?",
    "context": "CREATE TABLE table_2077192_2 (italian VARCHAR, english VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(phonetic_greek) FROM table_2077192_2 WHERE french = \"grenouille\"",
    "question_en": "How many Phonetic Greek words translate to grenouille in French?",
    "question_th": "คำภาษากรีกแบบออกเสียงมีกี่คำที่แปลเป็น grenouille ในภาษาฝรั่งเศส",
    "context": "CREATE TABLE table_2077192_2 (phonetic_greek VARCHAR, french VARCHAR)"
  },
  {
    "answer": "SELECT italian FROM table_2077192_2 WHERE english = \"frog\"",
    "question_en": "What does the word \"frog\"in English translate to in Italian?",
    "question_th": "คำว่า \"กบ\" ในภาษาอังกฤษแปลว่าอะไรในภาษาอิตาลี?",
    "context": "CREATE TABLE table_2077192_2 (italian VARCHAR, english VARCHAR)"
  },
  {
    "answer": "SELECT enrollment FROM table_2076608_3 WHERE location_s_ = \"Alexandria\"",
    "question_en": "Where are the Alexandria enrollment locations?",
    "question_th": "สถานที่รับสมัครของอเล็กซานเดรียอยู่ที่ไหน?",
    "context": "CREATE TABLE table_2076608_3 (enrollment VARCHAR, location_s_ VARCHAR)"
  },
  {
    "answer": "SELECT control FROM table_2076608_3 WHERE founded = \"1991\"",
    "question_en": "What is the control type which was founded in 1991?",
    "question_th": "ประเภทการควบคุมที่ก่อตั้งขึ้นในปี 1991 คืออะไร?",
    "context": "CREATE TABLE table_2076608_3 (control VARCHAR, founded VARCHAR)"
  },
  {
    "answer": "SELECT control FROM table_2076608_3 WHERE founded = \"1818\"",
    "question_en": "What is the control type which was founded in 1818?",
    "question_th": "ประเภทการควบคุมที่ก่อตั้งในปี พ.ศ. 2361 คืออะไร?",
    "context": "CREATE TABLE table_2076608_3 (control VARCHAR, founded VARCHAR)"
  },
  {
    "answer": "SELECT founded FROM table_2076608_3 WHERE school = \"Hartland College\"",
    "question_en": "What year was Hartland College founded?",
    "question_th": "Hartland College ก่อตั้งเมื่อปีใด",
    "context": "CREATE TABLE table_2076608_3 (founded VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_2076608_3 WHERE school = \"Cordoba University\"",
    "question_en": "What type of school is Cordoba University?",
    "question_th": "มหาวิทยาลัยคอร์โดบาเป็นโรงเรียนประเภทใด",
    "context": "CREATE TABLE table_2076608_3 (type VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_2076608_3 WHERE location_s_ = \"Richmond\"",
    "question_en": "What school is in Richmond?",
    "question_th": "โรงเรียนอะไรในริชมอนด์?",
    "context": "CREATE TABLE table_2076608_3 (school VARCHAR, location_s_ VARCHAR)"
  },
  {
    "answer": "SELECT accreditation FROM table_2076608_1 WHERE school = \"Hollins University\"",
    "question_en": "What accreditation does Hollins University have?",
    "question_th": "มหาวิทยาลัย Hollins ได้รับการรับรองอะไรบ้าง?",
    "context": "CREATE TABLE table_2076608_1 (accreditation VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT MAX(founded) FROM table_2076608_1 WHERE enrollment = \"696\"",
    "question_en": "What was the largest founded year for schools having enrollment of exactly 696?",
    "question_th": "ปีก่อตั้งที่ใหญ่ที่สุดสำหรับโรงเรียนที่มีการลงทะเบียนถึง 696 พอดีคือปีใด",
    "context": "CREATE TABLE table_2076608_1 (founded INTEGER, enrollment VARCHAR)"
  },
  {
    "answer": "SELECT control FROM table_2076608_1 WHERE school = \"Christopher Newport University\"",
    "question_en": "What is the control for Christopher Newport University?",
    "question_th": "การควบคุมของ 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_en": "What is the total number of schools founded that have an enrollment of 5634?",
    "question_th": "จำนวนโรงเรียนที่ก่อตั้งทั้งหมดซึ่งมีผู้ลงทะเบียนเรียน 5,634 แห่งคือเท่าไร?",
    "context": "CREATE TABLE table_2076608_1 (founded VARCHAR, enrollment VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_2076608_1 WHERE school = \"Stratford University\"",
    "question_en": "What type of school is Stratford University?",
    "question_th": "มหาวิทยาลัย Stratford เป็นโรงเรียนประเภทใด",
    "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_en": "What type of school is Jefferson College of Health Sciences?",
    "question_th": "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_en": "Name the nec record for 11th standing",
    "question_th": "ตั้งชื่อสถิติ nec สำหรับอันดับที่ 11",
    "context": "CREATE TABLE table_20774360_2 (nec_record VARCHAR, standing VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_20774360_2 WHERE standing = \"9th\"",
    "question_en": "Name the year for standing 9th",
    "question_th": "ตั้งชื่อปีที่ยืน 9",
    "context": "CREATE TABLE table_20774360_2 (year VARCHAR, standing VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_20774360_2 WHERE standing = \"T-10th\"",
    "question_en": "Name the year for t-10th",
    "question_th": "ตั้งชื่อปีสำหรับ t-10",
    "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_en": "Name the regular season record for standing 11th",
    "question_th": "ตั้งชื่อสถิติฤดูกาลปกติสำหรับการยืนอันดับที่ 11",
    "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_en": "Name the most previous br number",
    "question_th": "ตั้งชื่อหมายเลข br ก่อนหน้าสุด",
    "context": "CREATE TABLE table_2079664_3 (previous_br_no INTEGER)"
  },
  {
    "answer": "SELECT COUNT(previous_br_no) FROM table_2079664_3 WHERE number = \"21\"",
    "question_en": "Name the total number of previous br number for number 21",
    "question_th": "ตั้งชื่อจำนวนรวมของหมายเลข br ก่อนหน้าสำหรับหมายเลข 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âștigător The Big Winner\"",
    "question_en": "What country uses the title Marele Câștigător The Big Winner?",
    "question_th": "ประเทศใดใช้ชื่อ Marele Câştigător 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_en": "Silvio Santos is the presenter in what country?",
    "question_th": "ซิลวิโอ ซานโตสเป็นพรีเซนเตอร์ที่ประเทศอะไร",
    "context": "CREATE TABLE table_20780285_1 (country_region VARCHAR, presenters VARCHAR)"
  },
  {
    "answer": "SELECT home_town FROM table_20785990_2 WHERE name = \"David Noel\"",
    "question_en": "What is the home town of David Noel?",
    "question_th": "บ้านเกิดของ 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_en": "What is the high school for the player who's hometown is Blue Island, Il?",
    "question_th": "โรงเรียนมัธยมสำหรับผู้เล่นที่เป็นบ้านเกิดคือ 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_en": "What is the position of the player who's hometown is North Babylon, NY?",
    "question_th": "ตำแหน่งผู้เล่นที่เป็นบ้านเกิดอยู่ที่เมืองนอร์ธ บาบิลอน รัฐนิวยอร์ค คืออะไร?",
    "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_en": "What position is the player from Chapel Hill, NC?",
    "question_th": "ผู้เล่นจาก 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_en": "What is the height of the player from Gulfport, MS?",
    "question_th": "ผู้เล่นจากเมืองกัลฟ์พอร์ต รัฐมิสซิสซิปปี มีความสูงเท่าไร?",
    "context": "CREATE TABLE table_20785990_2 (height VARCHAR, home_town VARCHAR)"
  },
  {
    "answer": "SELECT county FROM table_20799905_1 WHERE mccain_percentage = \"57.8%\"",
    "question_en": "In what county did McCain get 57.8%?",
    "question_th": "แมคเคนได้รับ 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_en": "How many figures are given for McCain's % in Davidson county?",
    "question_th": "% ของแมคเคนในเขตเดวิดสันมีตัวเลขกี่ตัว",
    "context": "CREATE TABLE table_20799905_1 (mccain_percentage VARCHAR, county VARCHAR)"
  },
  {
    "answer": "SELECT obama_percentage FROM table_20799905_1 WHERE county = \"RUTHERFORD\"",
    "question_en": "What percentage did Obama get in Rutherford county?",
    "question_th": "โอบามาได้รับในเขตรัทเธอร์ฟอร์ดกี่เปอร์เซ็นต์",
    "context": "CREATE TABLE table_20799905_1 (obama_percentage VARCHAR, county VARCHAR)"
  },
  {
    "answer": "SELECT mccain_percentage FROM table_20799905_1 WHERE county = \"HAMILTON\"",
    "question_en": "What percentage did McCain get in Hamilton county?",
    "question_th": "McCain ได้รับในเขตแฮมิลตันกี่เปอร์เซ็นต์",
    "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_en": "What percentage did Obama get when McCain got 52.8%?",
    "question_th": "โอบามาได้คะแนนเท่าไรเมื่อแมคเคนได้ 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_en": "How many votes did Obama get in Lake County?",
    "question_th": "โอบามาได้รับคะแนนเสียงกี่คะแนนในเลคเคาน์ตี้",
    "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_en": "In how many counties did McCain get 65.72% of the votes?",
    "question_th": "แมคเคนได้รับคะแนนเสียง 65.72% ในกี่มณฑล",
    "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_en": "How many people voted for Obama in the county where McCain got 72.75% of the votes?",
    "question_th": "มีกี่คนที่โหวตให้โอบามาในเขตที่แมคเคนได้คะแนนเสียง 72.75%",
    "context": "CREATE TABLE table_20799587_1 (obama_number INTEGER, mccain_percentage VARCHAR)"
  },
  {
    "answer": "SELECT mccain_percentage FROM table_20799587_1 WHERE county = \"Hinds\"",
    "question_en": "What percentage of the votes did McCain get in Hinds?",
    "question_th": "McCain ได้รับคะแนนเสียงกี่เปอร์เซ็นต์จาก 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_en": "How many votes did McCain get in Scott?",
    "question_th": "McCain ได้รับคะแนนเสียงกี่คะแนนใน Scott?",
    "context": "CREATE TABLE table_20799587_1 (mccain_number INTEGER, county VARCHAR)"
  },
  {
    "answer": "SELECT obama_percentage FROM table_20799587_1 WHERE county = \"Tippah\"",
    "question_en": "What percentage of the votes in Tippah did Obama get?",
    "question_th": "โอบามาได้รับคะแนนเสียงจาก Tippah กี่เปอร์เซ็นต์",
    "context": "CREATE TABLE table_20799587_1 (obama_percentage VARCHAR, county VARCHAR)"
  },
  {
    "answer": "SELECT mccain_percentage FROM table_20799587_1 WHERE county = \"Copiah\"",
    "question_en": "What percentage of the votes in Copiah did McCain get?",
    "question_th": "McCain ได้รับคะแนนเสียงกี่เปอร์เซ็นต์ใน Copiah",
    "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_en": "When n/a is the cash fate and n/a is the 31-day pass how many types of fare are there?",
    "question_th": "เมื่อ n/a คือชะตากรรมของเงินสด และ n/a คือบัตรโดยสารแบบ 31 วัน ค่าโดยสารมีกี่ประเภท?",
    "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_en": "When fixed route is the type of fare how much is the 31-day pass?",
    "question_th": "เมื่อเส้นทางคงที่เป็นประเภทค่าโดยสาร บัตรโดยสารประเภท 31 วัน ราคาเท่าไร?",
    "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_en": "When mega pass* (senior/disabled) is the type of fare what is the cash fare?",
    "question_th": "เมก้าพาส* (ผู้อาวุโส/ผู้ทุพพลภาพ) เป็นประเภทค่าโดยสาร ค่าโดยสารเงินสดจะเป็นเท่าใด",
    "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_en": "When mega pass* (senior/disabled) is the type of fare what is the day pass?",
    "question_th": "เมกะพาส* (ผู้อาวุโส/ผู้ทุพพลภาพ) เป็นประเภทค่าโดยสาร บัตรโดยสารประเภทวันคืออะไร?",
    "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_en": "When  fort irwin-barstow/victorville is the type of fare what is the cash fare?",
    "question_th": "เมื่อ fort irwin-barstow/victorville เป็นค่าโดยสารประเภทเงินสด ราคาเท่าไหร่?",
    "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_en": "Where total goals is 1 and total apps is 33, what is the smallest no.?",
    "question_th": "โดยที่เป้าหมายทั้งหมดคือ 1 และแอปทั้งหมดคือ 33 หมายเลขที่น้อยที่สุดคือหมายเลขใด?",
    "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_en": "What position is the boat with 20.12 LOA (metres)?",
    "question_th": "เรือที่มีน้ำ 20.12 LOA (เมตร) อยู่ในตำแหน่งใด",
    "context": "CREATE TABLE table_20854943_2 (position INTEGER, loa__metres_ VARCHAR)"
  },
  {
    "answer": "SELECT loa__metres_ FROM table_20854943_2 WHERE sail_number = \"M10\"",
    "question_en": "What are the LOA (metres) of boat with sail number M10?",
    "question_th": "เรือที่มีใบเรือหมายเลข M10 มีปริมาณ LOA (เมตร) เท่าไร",
    "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_en": "How many LOA (metres) reported for Black Jack?",
    "question_th": "มีการรายงาน LOA (เมตร) ของแบล็คแจ็คจำนวนเท่าใด",
    "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_en": "What race number had sail number AUS 98888?",
    "question_th": "หมายเลขการแข่งขันใดมีใบเรือ 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_en": "How many sail numbers for boat skippered by Geoff Ross?",
    "question_th": "เจฟฟ์ รอสส์ กัปตันเรือมีหมายเลขใบเรือกี่ใบ",
    "context": "CREATE TABLE table_20854943_2 (sail_number VARCHAR, skipper VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_20850339_1 WHERE opponent = \"West Virginia\"",
    "question_en": "When did they play against West Virginia?",
    "question_th": "พวกเขาเล่นกับเวสต์เวอร์จิเนียเมื่อไหร่?",
    "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_en": "When l (ot/so) is 22 (3/4), what is the season?",
    "question_th": "เมื่อ l (ot/so) เท่ากับ 22 (3/4) ฤดูกาลคืออะไร?",
    "context": "CREATE TABLE table_20833768_4 (season VARCHAR, l__ot_so_ VARCHAR)"
  },
  {
    "answer": "SELECT w__ot_so_ FROM table_20833768_4 WHERE season = \"2008–09\"",
    "question_en": "In season is 2008–09, how many wins did they have?",
    "question_th": "ในฤดูกาลนี้คือ 2008–09 พวกเขามีชัยชนะกี่ครั้ง?",
    "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_en": "What is the weight of Eben Britton?",
    "question_th": "Eben Britton มีน้ำหนักเท่าไหร่?",
    "context": "CREATE TABLE table_20860739_1 (weight INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_20860739_1 WHERE college = \"Virginia\"",
    "question_en": "How many rounds did Virginia have?",
    "question_th": "เวอร์จิเนียมีกี่รอบ?",
    "context": "CREATE TABLE table_20860739_1 (round VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_20860739_1 WHERE height = \"6'5\"",
    "question_en": "How many rounds were there a height of 6'5?",
    "question_th": "สูง 6 ฟุต 5 มีกี่รอบ?",
    "context": "CREATE TABLE table_20860739_1 (round VARCHAR, height VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_20860739_1 WHERE height = \"6'1\"",
    "question_en": "What college has a player that is 6'1?",
    "question_th": "วิทยาลัยไหนมีผู้เล่นสูง 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_en": "What is the number of Mike Thomas?",
    "question_th": "ไมค์ โทมัส เบอร์อะไรคะ?",
    "context": "CREATE TABLE table_20860739_1 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_20861261_4 WHERE player = \"Terrance Taylor\"",
    "question_en": "What college did Terrance Taylor play for?",
    "question_th": "Terrance Taylor เล่นให้กับวิทยาลัยใด",
    "context": "CREATE TABLE table_20861261_4 (college VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_20861261_4 WHERE player = \"Curtis Painter\"",
    "question_en": "What's Curtis Painter's position?",
    "question_th": "ตำแหน่งของ Curtis Painter คืออะไร?",
    "context": "CREATE TABLE table_20861261_4 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT weight FROM table_20861261_4 WHERE college = \"Southern California\"",
    "question_en": "How much does the player from Southern California weight?",
    "question_th": "ผู้เล่นจากแคลิฟอร์เนียตอนใต้มีน้ำหนักเท่าไหร่?",
    "context": "CREATE TABLE table_20861261_4 (weight VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT MAX(round) FROM table_20861261_4 WHERE weight = \"192lb (87kg)\"",
    "question_en": "In what round did the player who weights 192lb (87kg) play?",
    "question_th": "ผู้เล่นที่มีน้ำหนัก 192 ปอนด์ (87 กก.) เล่นในรอบใด",
    "context": "CREATE TABLE table_20861261_4 (round INTEGER, weight VARCHAR)"
  },
  {
    "answer": "SELECT MIN(choice) FROM table_20861261_4 WHERE weight = \"303lb (137kg)\"",
    "question_en": "What's the choice score of the player who weights 303lb (137kg)?",
    "question_th": "คะแนนตัวเลือกของผู้เล่นที่มีน้ำหนัก 303 ปอนด์ (137 กก.) คือเท่าใด",
    "context": "CREATE TABLE table_20861261_4 (choice INTEGER, weight VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(engine) FROM table_20866024_2 WHERE model_designation = \"97G00\"",
    "question_en": "How many different engines are there for the model with model designation 97G00?",
    "question_th": "รุ่นที่มีชื่อรุ่น 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_en": "What's the engine for the model model designation 97G00 and GVW of 2500/2.46 kg/ton?",
    "question_th": "เครื่องยนต์สำหรับรุ่น ชื่อรุ่น 97G00 และ GVW 2,500/2.46 กก./ตัน คืออะไร?",
    "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_en": "What model type has model designation 97500?",
    "question_th": "รุ่นใดมีชื่อรุ่นว่า 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_en": "What's the axle ratio of the model with model designation 97G00?",
    "question_th": "อัตราทดเพลาของรุ่นที่มีชื่อรุ่น 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_en": "What model type has 97100 model designation?",
    "question_th": "รุ่นใดที่มีชื่อรุ่น 97100?",
    "context": "CREATE TABLE table_20866024_2 (model_type VARCHAR, model_designation VARCHAR)"
  },
  {
    "answer": "SELECT engine FROM table_20866024_3 WHERE model_designation = \"97100\"",
    "question_en": "What type of engine does the model with model designation 97100 have?",
    "question_th": "รุ่นที่มีชื่อรุ่น 97100 มีเครื่องยนต์ประเภทใด?",
    "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_en": "What's the wheelbase (in mm/inch) of the model with model designation 97G00?",
    "question_th": "ระยะฐานล้อ (เป็น มม./นิ้ว) ของรุ่นที่มีชื่อรุ่น 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_en": "What type of engine does the model with model designation 97F00 have?",
    "question_th": "รุ่นที่มีชื่อรุ่น 97F00 มีเครื่องยนต์ประเภทใด?",
    "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_en": "What's the model designation of the model with GVW of 2828/2.78 kg/ton and axle ratio of 9/47?",
    "question_th": "รุ่นที่มี GVW 2828/2.78 กก./ตัน และอัตราส่วนเพลา 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_en": "Who is the player name when eastern michigan is the college?",
    "question_th": "ชื่อผู้เล่นเมื่อมิชิแกนตะวันออกเป็นวิทยาลัยคือใคร?",
    "context": "CREATE TABLE table_20871703_1 (player_name VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT height FROM table_20871703_1 WHERE position = \"OT\"",
    "question_en": "What is the height if ot is the position?",
    "question_th": "ถ้าตำแหน่ง ot อยู่สูงเท่าไร?",
    "context": "CREATE TABLE table_20871703_1 (height VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT player_name FROM table_20871703_1 WHERE college = \"South Carolina\"",
    "question_en": "Who is the player for south carolina college?",
    "question_th": "ใครคือผู้เล่นของวิทยาลัยเซาท์แคโรไลนา?",
    "context": "CREATE TABLE table_20871703_1 (player_name VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(height) FROM table_20871703_1 WHERE position = \"DE\"",
    "question_en": "What is the height if de is the position?",
    "question_th": "ถ้าตำแหน่ง de คือความสูงเท่าไร?",
    "context": "CREATE TABLE table_20871703_1 (height VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_20871703_1 WHERE position = \"FB\"",
    "question_en": "Which college has fb as the position?",
    "question_th": "วิทยาลัยไหนมีตำแหน่ง fb บ้าง?",
    "context": "CREATE TABLE table_20871703_1 (college VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT gvw__kg_ton_ FROM table_20866024_4 WHERE model_designation = \"97H00\"",
    "question_en": "What is the GVW for model 97H00?",
    "question_th": "GVW สำหรับรุ่น 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_en": "How many engines are there for model 97H00?",
    "question_th": "รุ่น 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_en": "What is the Wheelbase for Model 97300?",
    "question_th": "ระยะฐานล้อสำหรับรุ่น 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_en": "Name the Engine for model CF350.",
    "question_th": "ตั้งชื่อเครื่องยนต์สำหรับรุ่น 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_en": "Was the result of the supercheap auto bathurst 1000 reported?",
    "question_th": "มีการรายงานผลลัพธ์ของ supercheap auto bathurst 1000 หรือไม่",
    "context": "CREATE TABLE table_20884160_1 (report VARCHAR, race_title VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_20884160_1 WHERE circuit = \"Barbagallo Raceway\"",
    "question_en": "Who was the winner of the race at barbagallo raceway?",
    "question_th": "ใครคือผู้ชนะการแข่งขันที่สนามแข่งรถ Barbagallo?",
    "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_en": "how many players played running back where status is made 53-man roster at start of 2009 season",
    "question_th": "มีผู้เล่นกี่คนที่เล่นรันนิ่งแบ็กซึ่งมีสถานะเป็นบัญชีรายชื่อ 53 คนเมื่อเริ่มฤดูกาล 2009",
    "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_en": "howe many positions did wallace, mike mike wallace play for ",
    "question_th": " วอลเลซทำได้กี่ตำแหน่ง ไมค์ ไมค์ วอลเลซเล่นให้",
    "context": "CREATE TABLE table_20898602_1 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_20898602_1 WHERE pick__number = 32",
    "question_en": "state the status of pick # 32",
    "question_th": "ระบุสถานะการเลือก # 32",
    "context": "CREATE TABLE table_20898602_1 (status VARCHAR, pick__number VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_20898602_1 WHERE position = \"Running back\"",
    "question_en": "which college had a running back player",
    "question_th": "วิทยาลัยไหนมีนักเตะรันนิ่งแบ็ค",
    "context": "CREATE TABLE table_20898602_1 (college VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_20898602_1 WHERE height = \"ft0in (m)\"",
    "question_en": "what is the position of the player of height ft0in (m)",
    "question_th": "ตำแหน่งผู้เล่นส่วนสูง ft0in (m) คืออะไร",
    "context": "CREATE TABLE table_20898602_1 (position VARCHAR, height VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_20898602_1 WHERE pick__number = 79",
    "question_en": "what's the position of pick # 79",
    "question_th": "ตำแหน่งที่เลือก # 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_en": "How many touchdowns were scored when QB rating was 82.7?",
    "question_th": "มีการทำทัชดาวน์ได้กี่ครั้งเมื่อเรตติ้ง QB อยู่ที่ 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_en": "What was the QB rating for Neil lomax?",
    "question_th": "คะแนน QB สำหรับ 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_en": "How many attempts did Charley Johnson have?",
    "question_th": "Charley Johnson พยายามกี่ครั้ง?",
    "context": "CREATE TABLE table_20906175_3 (attempts VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT touchdowns FROM table_20906175_3 WHERE qb_rating = \"66.6\"",
    "question_en": "How many touchdowns were there with QB rating of 66.6?",
    "question_th": "มีทัชดาวน์กี่ครั้งด้วยคะแนน QB ที่ 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_en": "Name the number opponent for loss result",
    "question_th": "ตั้งชื่อหมายเลขคู่ต่อสู้เพื่อผลแพ้",
    "context": "CREATE TABLE table_20928661_1 (opponent VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_20928661_1 WHERE record = \"3-0\"",
    "question_en": "Name the game for record being 3-0",
    "question_th": "ตั้งชื่อเกมเพื่อบันทึกเป็น 3-0",
    "context": "CREATE TABLE table_20928661_1 (game VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_20928649_1 WHERE game = 6",
    "question_en": "What was the date of game 6?",
    "question_th": "เกมที่ 6 วันที่เท่าไหร่?",
    "context": "CREATE TABLE table_20928649_1 (date VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_20928649_1 WHERE cardinals_points = 7",
    "question_en": "What was the record for the game where the cardinals scored 7 points?",
    "question_th": "อะไรคือสถิติของเกมที่พระคาร์ดินัลทำคะแนนได้ 7 แต้ม?",
    "context": "CREATE TABLE table_20928649_1 (record VARCHAR, cardinals_points VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_20928649_1 WHERE record = \"1-2\"",
    "question_en": "What game date had the record of 1-2?",
    "question_th": "เกมไหนมีสถิติเสมอกัน 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_en": "How many opponents were in North Carolina state game?",
    "question_th": "มีฝ่ายตรงข้ามกี่คนในเกมของรัฐนอร์ธแคโรไลนา?",
    "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_en": "How many 125cc winners were in the same events as when the Moto2 winner was Shoya Tomizawa?",
    "question_th": "ผู้ชนะ 125cc อยู่ในกิจกรรมเดียวกับตอนที่ผู้ชนะ Moto2 คือ 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_en": "After how many opponents was the overall record 1-0-0?",
    "question_th": "สถิติรวมมีคู่แข่งกี่คน 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_en": "What was the record after the game in which the Hurricanes scored 24 points?",
    "question_th": "อะไรคือสถิติหลังเกมที่เฮอริเคนทำคะแนนได้ 24 แต้ม?",
    "context": "CREATE TABLE table_20928682_1 (record VARCHAR, hurricanes_points VARCHAR)"
  },
  {
    "answer": "SELECT MIN(game) FROM table_20928682_1 WHERE opponent = \"Georgia\"",
    "question_en": "Which game number was played against Georgia?",
    "question_th": "เกมหมายเลขใดที่เล่นกับจอร์เจีย?",
    "context": "CREATE TABLE table_20928682_1 (game INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(opponents) FROM table_20928682_1 WHERE opponent = \"Tulane\"",
    "question_en": "How many games were played against Tulane?",
    "question_th": "ทูเลนเล่นกับทูเลนกี่เกม?",
    "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_en": "How much parking is in Van Nuys at the Sepulveda station? ",
    "question_th": " แวนนายส์ที่สถานีเซปุลเบดา คิดค่าจอดรถเท่าไหร่",
    "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_en": "What are the stations in Tarzana? ",
    "question_th": " สถานีใดในทาร์ซานา?",
    "context": "CREATE TABLE table_2093995_1 (stations VARCHAR, city__neighborhood VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(connections) FROM table_2093995_1 WHERE stations = \"Tampa\"",
    "question_en": "How many connection catagories are there for Tampa? ",
    "question_th": " มีหมวดหมู่การเชื่อมต่อสำหรับแทมปากี่ประเภท?",
    "context": "CREATE TABLE table_2093995_1 (connections VARCHAR, stations VARCHAR)"
  },
  {
    "answer": "SELECT stations FROM table_2093995_1 WHERE parking = \"Park & Ride Lot\"",
    "question_en": "Which station has park & ride lot parking? ",
    "question_th": "สถานีใดมีลานจอดรถและลานจอดรถ?",
    "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_en": "What is the 3-dart average with a high checkout of 112?",
    "question_th": "ค่าเฉลี่ยของดาร์ท 3 ดอกที่มีแต้มต่อสูงถึง 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_en": "How many 180s have legs won of 45?",
    "question_th": "180 มีกี่ขาที่ชนะ 45?",
    "context": "CREATE TABLE table_20948329_1 (legs_won VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(touchdowns) FROM table_20938922_2 WHERE yards = 145",
    "question_en": "The player who had 145 yards had how many touchdowns?",
    "question_th": "ผู้เล่นที่มีระยะ 145 หลามีทัชดาวน์ได้กี่ครั้ง?",
    "context": "CREATE TABLE table_20938922_2 (touchdowns VARCHAR, yards VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_20938922_2 WHERE carries = 27",
    "question_en": "Which team did the player have who had 27 total carries?",
    "question_th": "ผู้เล่นคนไหนที่ถือได้ทั้งหมด 27 ครั้ง?",
    "context": "CREATE TABLE table_20938922_2 (team VARCHAR, carries VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_20938922_2 WHERE week = 12",
    "question_en": "What was the player's team's opponent for Week 12?",
    "question_th": "คู่ต่อสู้ของทีมผู้เล่นในสัปดาห์ที่ 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_en": "Who directed the episode that originally aired on March 18, 1988?",
    "question_th": "ใครเป็นผู้กำกับตอนที่ออกอากาศครั้งแรกเมื่อวันที่ 18 มีนาคม พ.ศ. 2531?",
    "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_en": "What was the name of the episode that aired originally on March 11, 1988?",
    "question_th": "ตอนที่ออกอากาศครั้งแรกเมื่อวันที่ 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_en": "What is the production code of the episode written by Jack Carrerrow?",
    "question_th": "รหัสการผลิตของตอนที่เขียนโดย 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_en": "How many episodes had a production code of 5m13?",
    "question_th": "มีกี่ตอนที่มีรหัสการผลิต 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_en": "Name the title that aired for november 08, 1985",
    "question_th": "ตั้งชื่อเรื่องที่ออกอากาศเมื่อวันที่ 8 พฤศจิกายน พ.ศ. 2528",
    "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_en": "Name the production code for november 08, 1985",
    "question_th": "ตั้งชื่อรหัสการผลิตสำหรับวันที่ 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_en": "Name the written by for production code 4g07",
    "question_th": "ตั้งชื่อที่เขียนโดยสำหรับรหัสการผลิต 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_en": "Name the least episode for november 29, 1985",
    "question_th": "ตั้งชื่อตอนน้อยที่สุดของวันที่ 29 พฤศจิกายน 2528",
    "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_en": "What was the final score when tracy austin was runner up?",
    "question_th": "คะแนนสุดท้ายเมื่อเทรซี่ ออสติน รองชนะเลิศคืออะไร",
    "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_en": "When 5a06 is the production code what is the highest episode?",
    "question_th": "เมื่อ 5a06 เป็นรหัสการผลิตตอนสูงสุดคือตอนไหน?",
    "context": "CREATE TABLE table_20967430_3 (ep INTEGER, prod_code VARCHAR)"
  },
  {
    "answer": "SELECT written_by FROM table_20967430_3 WHERE season = 10",
    "question_en": "When it is season 10 who are the writers?",
    "question_th": "เมื่อถึงซีซั่น 10 ใครคือผู้เขียน?",
    "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_en": "when womens singles is wang yihan and tour is french super series, what were the men's singles?",
    "question_th": "เมื่อซิงเกิ้ลหญิงคือ Wang Yihan และ Tour เป็น French Super Series ซิงเกิลชายมีอะไรบ้าง?",
    "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_en": "when mixed doubles is zheng bo ma jin and womens singles is wang yihan, what was the tour?",
    "question_th": "เมื่อคู่ผสมคือเจิ้งโบมาจิน และหญิงเดี่ยวคือหวังอี้ฮั่น ทัวร์จะเป็นอย่างไรบ้าง?",
    "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_en": "How many titles were directed by Alex Chapple?",
    "question_th": "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_en": "Name the most number for air date 2009/12/29",
    "question_th": "ตั้งชื่อหมายเลขมากที่สุด ออกอากาศวันที่ 29/12/2552",
    "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_en": "How many millions viewers watched the episode that ran 23:25?",
    "question_th": "มีผู้ชมกี่ล้านคนที่ดูตอนที่มีความยาว 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_en": "What is the broadcast date of the episode on 16mm t/r that ran 23:25?",
    "question_th": "วันที่ออกอากาศของตอน 16 มม. ในเวลา 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_en": "Which episode was watched by 7.2 million viewers?",
    "question_th": "มีผู้ชมรับชมตอนใดถึง 7.2 ล้านคน?",
    "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_en": "What episode had a run time of 24:18?",
    "question_th": "เรื่องใดมีระยะเวลาฉาย 24:18?",
    "context": "CREATE TABLE table_2101431_1 (episode VARCHAR, run_time VARCHAR)"
  },
  {
    "answer": "SELECT MIN(valves) FROM table_21021796_1",
    "question_en": "What is the greatest number of valves?",
    "question_th": "จำนวนวาล์วมากที่สุดคือเท่าไร?",
    "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_en": "For the 1999 w210 e-class , 2000 w203 c-class, what is the stroke?",
    "question_th": "สำหรับปี 1999 w210 e-class , 2000 w203 c-class ระยะชักเท่าไหร่?",
    "context": "CREATE TABLE table_21021796_1 (stroke VARCHAR, applications VARCHAR)"
  },
  {
    "answer": "SELECT displacement FROM table_21021796_1 WHERE torque = \"N·m (lb·ft) @1500 rpm\"",
    "question_en": "What is the displacement for torque of  n·m (lb·ft) @1500 rpm?",
    "question_th": "การกระจัดของแรงบิด n·m (lb·ft) @ 1500 rpm คืออะไร?",
    "context": "CREATE TABLE table_21021796_1 (displacement VARCHAR, torque VARCHAR)"
  },
  {
    "answer": "SELECT power FROM table_21021796_1 WHERE torque = \"N·m (lb·ft) @1600–2400 rpm\" AND applications = \"2000 W90x Sprinter\"",
    "question_en": "If torque is n·m (lb·ft) @1600–2400 rpm and applications is 2000 w90x sprinter, what is the power?",
    "question_th": "หากแรงบิดอยู่ที่ n·m (ปอนด์·ฟุต) @ 1600–2400 รอบต่อนาที และการใช้งานคือ 2000 w90x sprinter จะมีกำลังเท่าใด",
    "context": "CREATE TABLE table_21021796_1 (power VARCHAR, torque VARCHAR, applications VARCHAR)"
  },
  {
    "answer": "SELECT torque FROM table_21021796_1 WHERE stroke = \"88.4mm\"",
    "question_en": "List the torque possible when the stroke is 88.4mm?",
    "question_th": "ทำรายการแรงบิดที่เป็นไปได้เมื่อระยะชัก 88.4 มม.?",
    "context": "CREATE TABLE table_21021796_1 (torque VARCHAR, stroke VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_21007907_1 WHERE record = \"7-1-0\"",
    "question_en": "Name the opponent for 7-1-0",
    "question_th": "ตั้งชื่อคู่ต่อสู้เป็น 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_en": "Name the episode for run time 25:05",
    "question_th": "ตั้งชื่อตอน เวลา 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_en": "Name the broadcast date for run timke of 25:04",
    "question_th": "แจ้งวันออกอากาศ เวลา 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_en": "Name the archive for run time of 23:55",
    "question_th": "ตั้งชื่อไฟล์เก็บถาวรสำหรับเวลารัน 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_en": "Name the broadcast date for 7.4 viewers",
    "question_th": "ตั้งชื่อวันที่ออกอากาศสำหรับผู้ชม 7.4",
    "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_en": "Name the broadcast date for 6.0 viewers",
    "question_th": "ตั้งชื่อวันที่ออกอากาศสำหรับผู้ชม 6.0",
    "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_en": "How many episodes were written by Kirstie Falkous & John Regier?",
    "question_th": "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_en": "What episode had 9.7 million viewers?",
    "question_th": "ตอนไหนมีผู้ชม 9.7 ล้านคน?",
    "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_en": "What date was an episode broadcasted on that had a run time of 24:40?",
    "question_th": "ออกอากาศวันไหน เวลา 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_en": "What episode had a run time of 24:53?",
    "question_th": "เรื่องใดมีระยะเวลาฉาย 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_en": "What was the archive for the episode with a run time of 25:24?",
    "question_th": "ไฟล์เก็บถาวรของตอนที่มีความยาว 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_en": "What is he archive for the episode with a run time of 24:05?",
    "question_th": "เขาเก็บถาวรอะไรสำหรับตอนที่มีความยาว 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_en": "Who directed episode number 23?",
    "question_th": "ใครกำกับตอนที่ 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_en": "What was the numer of the game when the record was 4-0?",
    "question_th": "ตัวเลขของเกมเมื่อสถิติคือ 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_en": "How many opponents led to an exactly 7-0 record?",
    "question_th": "มีคู่ต่อสู้กี่คนที่ทำสถิติ 7-0 พอดี?",
    "context": "CREATE TABLE table_21034801_1 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_21034801_1 WHERE opponent = \"Kansas State\"",
    "question_en": "What number was the game against Kansas State?",
    "question_th": "เกมที่พบกับรัฐแคนซัสคือเกมหมายเลขใด",
    "context": "CREATE TABLE table_21034801_1 (game VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(episode) FROM table_2102898_1 WHERE run_time = \"24:33\"",
    "question_en": "How many episodes ran 24:33?",
    "question_th": "ออกอากาศทั้งหมดกี่ตอน 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_en": "On broadcast date is 25april1970, how many people tuned in?",
    "question_th": "ออกอากาศวันที่ 25 เมษายน 2513 มีคนติดตามกี่คน?",
    "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_en": "On broadcast date is 28march1970, how many people tuned in?",
    "question_th": "ออกอากาศวันที่ 28 มีนาคม 2513 มีคนติดตามกี่คน?",
    "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_en": "On broadcast date is 21march1970, how many people tuned in?",
    "question_th": "ออกอากาศวันที่ 21 มีนาคม 2513 มีคนติดตามกี่คน?",
    "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_en": "What is the archive of the show that aired on 18april1970?",
    "question_th": "ที่เก็บถาวรของรายการที่ออกอากาศเมื่อวันที่ 18 เมษายน 2513 คืออะไร?",
    "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_en": "What was the least amount of points scored by the golden bears when the opponent scored 15 points?",
    "question_th": "หมีทองคำได้คะแนนน้อยที่สุดเมื่อคู่ต่อสู้ทำคะแนนได้ 15 คะแนนคือเท่าใด",
    "context": "CREATE TABLE table_21035326_1 (golden_bears_points INTEGER, opponents VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(opponents) FROM table_21035326_1 WHERE game = 4",
    "question_en": "What is the total number of opponents played against the bears in game 4?",
    "question_th": "จำนวนฝ่ายตรงข้ามทั้งหมดที่เล่นกับหมีในเกมที่ 4 คือเท่าไร?",
    "context": "CREATE TABLE table_21035326_1 (opponents VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_21035326_1 WHERE golden_bears_points = 3",
    "question_en": "What opponent was playing against the Golden Bears when they scored 3 points?",
    "question_th": "คู่ต่อสู้คนใดกำลังเล่นกับหมีทองคำเมื่อพวกเขาทำคะแนนได้ 3 แต้ม?",
    "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_en": "What is the Medal of Honor with Army Distinguished Service Medal?",
    "question_th": "เหรียญเกียรติยศกับเหรียญบริการดีเด่นกองทัพบกคืออะไร?",
    "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_en": "WHat is the Homeland security distinguished service medal when the medal of honor is Coast guard Medal?",
    "question_th": "เหรียญบริการที่โดดเด่นด้านความมั่นคงแห่งมาตุภูมิคืออะไรเมื่อเหรียญเกียรติยศคือเหรียญหน่วยยามฝั่ง?",
    "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_en": "What is the distinguished service cross when the navy cross is Coast Guard commendation medal?",
    "question_th": "เครื่องหมายบริการที่โดดเด่นคืออะไรเมื่อเครื่องหมายกากบาทของกองทัพเรือเป็นเหรียญยกย่องหน่วยยามฝั่ง?",
    "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_en": "What is the air force cross when you recieve the Aerial achievement medal?",
    "question_th": "เครื่องหมายกากบาทของกองทัพอากาศเมื่อคุณได้รับเหรียญความสำเร็จทางอากาศคืออะไร?",
    "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_en": "What is the coast guard cross when you recieve the navy distinguished service medal?",
    "question_th": "ไม้กางเขนยามฝั่งคืออะไรเมื่อคุณได้รับเหรียญตราบริการดีเด่นของกองทัพเรือ?",
    "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_en": "How many figures are given for Walker's percentage in Kenosha county?",
    "question_th": "มีตัวเลขกี่เปอร์เซ็นต์สำหรับวอล์คเกอร์ในเขตเคโนชา",
    "context": "CREATE TABLE table_21046399_3 (walker__percentage VARCHAR, county VARCHAR)"
  },
  {
    "answer": "SELECT walker__percentage FROM table_21046399_3 WHERE county = \"Calumet\"",
    "question_en": "What percentage did Walker win in Calumet county?",
    "question_th": "วอล์คเกอร์ชนะในเขตคาลูเมตกี่เปอร์เซ็นต์",
    "context": "CREATE TABLE table_21046399_3 (walker__percentage VARCHAR, county VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(won_by) FROM table_21046399_3 WHERE county = \"Milwaukee\"",
    "question_en": "How many total figures are given for Milwaukee county?",
    "question_th": "มีการระบุตัวเลขทั้งหมดสำหรับเทศมณฑลมิลวอกีจำนวนเท่าใด",
    "context": "CREATE TABLE table_21046399_3 (won_by VARCHAR, county VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_21058823_1 WHERE record = \"3-2-1\"",
    "question_en": "What did they do in the game when their record was 3-2-1?",
    "question_th": "พวกเขาทำอะไรในเกมเมื่อสถิติของพวกเขาคือ 3-2-1?",
    "context": "CREATE TABLE table_21058823_1 (result VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_21058823_1 WHERE opponent = \"Villanova\"",
    "question_en": "What did they do against Villanova?",
    "question_th": "พวกเขาทำอะไรกับวิลลาโนวา?",
    "context": "CREATE TABLE table_21058823_1 (result VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_21058823_1 WHERE opponent = \"Memphis\"",
    "question_en": "What did they do against Memphis?",
    "question_th": "พวกเขาทำอะไรกับเมมฟิส?",
    "context": "CREATE TABLE table_21058823_1 (result VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(date) FROM table_21058823_1 WHERE record = \"0-2-0\"",
    "question_en": "How many games did they play when their record 0-2-0?",
    "question_th": "พวกเขาเล่นไปกี่เกมเมื่อสถิติ 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_en": "When did the episode seen by  is 2.267 million people get aired?",
    "question_th": "ตอนที่เห็นมีผู้ชม 2.267 ล้านคน ออกอากาศเมื่อไหร่?",
    "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_en": "Name the episode for run time in 24:44",
    "question_th": "ตั้งชื่อตอนให้เวลาฉาย 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_en": "Name the total episode for runtime of 24:11",
    "question_th": "ตั้งชื่อตอนทั้งหมดสำหรับรันไทม์ 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_en": "Who did the team play against when a record of 3-1, #16 was achieved?",
    "question_th": "ทีมเล่นกับใครเมื่อทำสถิติ 3-1, #16 ได้สำเร็จ?",
    "context": "CREATE TABLE table_21063459_1 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_21063459_1 WHERE opponent = \"Mississippi State\"",
    "question_en": "What was the result of the game against Mississippi State?",
    "question_th": "ผลการแข่งขันกับมิสซิสซิปปี้ สเตท เป็นอย่างไร?",
    "context": "CREATE TABLE table_21063459_1 (result VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_21063459_1 WHERE result = \"Loss\"",
    "question_en": "Who did the team play against in the game that resulted with a loss?",
    "question_th": "ทีมเล่นกับใครในเกมที่ส่งผลให้แพ้?",
    "context": "CREATE TABLE table_21063459_1 (opponent VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_21058836_1 WHERE opponent = \"Santa Clara\"",
    "question_en": "What game did the Bruins play Santa Clara?",
    "question_th": "บรูอินส์เล่นเกมอะไรกับซานตาคลารา?",
    "context": "CREATE TABLE table_21058836_1 (game VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponents FROM table_21058836_1 WHERE opponent = \"Santa Clara\"",
    "question_en": "Santa Clara was played how many times?",
    "question_th": "ซานตาคลาร่าเล่นกี่ครั้ง?",
    "context": "CREATE TABLE table_21058836_1 (opponents VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_21058836_1 WHERE opponents = 26",
    "question_en": "The game the Bruins scored 26 ,what was the result?",
    "question_th": "เกมที่บรูอินส์ทำได้ 26 ประตู ผลการแข่งขันเป็นอย่างไร?",
    "context": "CREATE TABLE table_21058836_1 (result VARCHAR, opponents VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_21058836_1 WHERE game = 9",
    "question_en": "What was the record for game 9?",
    "question_th": "สถิติของเกมที่ 9 คืออะไร?",
    "context": "CREATE TABLE table_21058836_1 (record VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_21062353_1 WHERE game = 4",
    "question_en": "Who were the opponents of the Wildcats in game 4?",
    "question_th": "ใครคือคู่ต่อสู้ของ Wildcats ในเกมที่ 4?",
    "context": "CREATE TABLE table_21062353_1 (opponent VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_21062353_1 WHERE game = 8",
    "question_en": "Who were the the opponents of the Wildcats for game 8 of the season?",
    "question_th": "ใครคือคู่ต่อสู้ของ Wildcats ในเกมที่ 8 ของฤดูกาล?",
    "context": "CREATE TABLE table_21062353_1 (opponent VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_21062353_1 WHERE opponent = \"Florida\"",
    "question_en": "What was the record of the Wildcats after playing Florida?",
    "question_th": "อะไรคือสถิติของ Wildcats หลังจากเล่น Florida?",
    "context": "CREATE TABLE table_21062353_1 (record VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(wildcats_points) FROM table_21062353_1 WHERE game = 11",
    "question_en": "How many times did the Wildcats play a game 11 regardless of points scored?",
    "question_th": "Wildcats เล่นเกม 11 กี่ครั้งโดยไม่คำนึงถึงคะแนน?",
    "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_en": "Name the number of black knights points for 3 game",
    "question_th": "บอกจำนวนคะแนนอัศวินดำสำหรับ 3 เกม",
    "context": "CREATE TABLE table_21091145_1 (black_knights_points VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT opponents FROM table_21091145_1 WHERE game = 5",
    "question_en": "Name the opponents for game 5",
    "question_th": "ตั้งชื่อคู่ต่อสู้ในเกมที่ 5",
    "context": "CREATE TABLE table_21091145_1 (opponents VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_21091145_1 WHERE black_knights_points = 19",
    "question_en": "Name the result for 19 black knights points",
    "question_th": "ทายผลคะแนนอัศวินดำ 19 แต้ม",
    "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_en": "Name the opponent for black knights points 27",
    "question_th": "ตั้งชื่อคู่ต่อสู้ให้อัศวินดำแต้ม 27",
    "context": "CREATE TABLE table_21091145_1 (opponent VARCHAR, black_knights_points VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_21091157_1 WHERE game = 8",
    "question_en": "Name the date for game 8",
    "question_th": "ตั้งชื่อวันที่สำหรับเกมที่ 8",
    "context": "CREATE TABLE table_21091157_1 (date VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(date) FROM table_21091157_1 WHERE record = \"1-0\"",
    "question_en": "Name the number of date for 1-0 record",
    "question_th": "ตั้งชื่อหมายเลขวันที่สำหรับบันทึก 1-0",
    "context": "CREATE TABLE table_21091157_1 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_21091157_1 WHERE record = \"1-0\"",
    "question_en": "Name the game for record 1-0",
    "question_th": "ตั้งชื่อเกมเป็นสถิติ 1-0",
    "context": "CREATE TABLE table_21091157_1 (game VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT MAX(game) FROM table_21091157_1",
    "question_en": "Name the most game",
    "question_th": "ตั้งชื่อเกมมากที่สุด",
    "context": "CREATE TABLE table_21091157_1 (game INTEGER)"
  },
  {
    "answer": "SELECT MAX(game) FROM table_21091162_1 WHERE record = \"3-4-0\"",
    "question_en": "How many games have a record of 3-4-0?",
    "question_th": "มีกี่เกมที่มีสถิติ 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_en": "How many dates have boston college as the opponent?",
    "question_th": "วิทยาลัยบอสตันเป็นคู่ต่อสู้กี่วัน?",
    "context": "CREATE TABLE table_21091162_1 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT MAX(game) FROM table_21091162_1 WHERE opponent = \"Air Force\"",
    "question_en": "How many games have Air Force as the opponent?",
    "question_th": "แอร์ฟอร์ซเป็นคู่แข่งกี่เกม?",
    "context": "CREATE TABLE table_21091162_1 (game INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(record) FROM table_21091162_1 WHERE black_knights_points = 17",
    "question_en": "How many records have black knights points as 17?",
    "question_th": "มีกี่บันทึกที่มีคะแนนอัศวินดำถึง 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_en": "Which opponent has a record of 6-2?",
    "question_th": "คู่ต่อสู้คนไหนมีสถิติ 6-2?",
    "context": "CREATE TABLE table_21091127_1 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(result) FROM table_21091127_1 WHERE game = 5",
    "question_en": "How many results have a game of 5?",
    "question_th": "มีผลลัพธ์กี่เกมจาก 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_en": "What is the run time for the episode with 7.9 million viewers?",
    "question_th": "ออกอากาศตอนไหนที่มีผู้ชม 7.9 ล้านคน?",
    "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_en": "What episode had a run time of 23:38?",
    "question_th": "เรื่องใดมีระยะเวลาฉาย 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_en": "How many million viewers watched the episode with a run time of 25:22?",
    "question_th": "มีผู้ชมรับชมตอนนี้กี่ล้านคนโดยมีความยาว 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_en": "Name the date for result loss for duke",
    "question_th": "ตั้งชื่อวันที่ผลการแพ้ของดยุค",
    "context": "CREATE TABLE table_21092444_1 (date VARCHAR, result VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponents FROM table_21092444_1 WHERE record = \"2-1\"",
    "question_en": "Name the opponents for record of 2-1",
    "question_th": "ตั้งชื่อคู่ต่อสู้ด้วยสถิติ 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_en": "Name the record for black knights points 54",
    "question_th": "ตั้งชื่อบันทึกอัศวินดำคะแนน 54",
    "context": "CREATE TABLE table_21092444_1 (record VARCHAR, black_knights_points VARCHAR)"
  },
  {
    "answer": "SELECT opponents FROM table_21092444_1 WHERE opponent = \"Stanford\"",
    "question_en": "Name the opponents stanford",
    "question_th": "ตั้งชื่อฝ่ายตรงข้ามสแตนฟอร์ด",
    "context": "CREATE TABLE table_21092444_1 (opponents VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_21094951_1 WHERE opponent = \"Ursinus College\"",
    "question_en": "Name the result for ursinus college",
    "question_th": "ตั้งชื่อผลลัพธ์สำหรับวิทยาลัย ursinus",
    "context": "CREATE TABLE table_21094951_1 (result VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT MAX(black_knights_points) FROM table_21094951_1 WHERE result = \"Loss\"",
    "question_en": "Name the black knights points for loss result",
    "question_th": "ตั้งชื่อคะแนนอัศวินดำสำหรับผลการแพ้",
    "context": "CREATE TABLE table_21094951_1 (black_knights_points INTEGER, result VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_21094951_1 WHERE record = \"6-2\"",
    "question_en": "Name the date for 6-2 record",
    "question_th": "ตั้งชื่อวันที่สำหรับบันทึก 6-2",
    "context": "CREATE TABLE table_21094951_1 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT MAX(opponents) FROM table_21094951_1 WHERE record = \"2-0\"",
    "question_en": "Name the opponents for record being 2-0",
    "question_th": "ตั้งชื่อฝ่ายตรงข้ามเพื่อบันทึกเป็น 2-0",
    "context": "CREATE TABLE table_21094951_1 (opponents INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT innings FROM table_21100348_10 WHERE average = \"41.43\"",
    "question_en": "How man innings were there during the period with a career average of 41.43?",
    "question_th": "มีโอกาสใดบ้างในช่วงเวลาดังกล่าวโดยมีค่าเฉลี่ยอาชีพอยู่ที่ 41.43",
    "context": "CREATE TABLE table_21100348_10 (innings VARCHAR, average VARCHAR)"
  },
  {
    "answer": "SELECT period FROM table_21100348_10 WHERE player = \"Ricky Ponting\"",
    "question_en": "During what period did Ricky Ponting play?",
    "question_th": "Ricky Ponting เล่นในช่วงเวลาใด?",
    "context": "CREATE TABLE table_21100348_10 (period VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT period FROM table_21100348_10 WHERE average = \"44.10\"",
    "question_en": "During what period was the career average 44.10?",
    "question_th": "ค่าเฉลี่ยอาชีพ 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_en": "What was the smallest numbered rank for Michael Bevan?",
    "question_th": "อันดับที่น้อยที่สุดสำหรับ Michael Bevan คืออะไร?",
    "context": "CREATE TABLE table_21100348_10 (rank INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT period FROM table_21100348_10 WHERE average = \"48.15\"",
    "question_en": "What period was there a career average of 48.15?",
    "question_th": "ค่าเฉลี่ยอาชีพอยู่ที่ 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_en": "when the value (int $1000) is 409566, what is the commodity?",
    "question_th": "เมื่อมูลค่า (int $1,000) คือ 409566 สินค้าโภคภัณฑ์จะเป็นเท่าใด",
    "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_en": "When the value rank is 23, what is the value?",
    "question_th": "เมื่อค่าอันดับเป็น 23 มีค่าเท่าไหร่?",
    "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_en": "When the value world rank is 7, what is the rank?",
    "question_th": "เมื่ออันดับโลกมูลค่าเป็น 7 อันดับคืออะไร?",
    "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_en": "When the production (mt) is 650000, what is the total number of rank?",
    "question_th": "เมื่อผลิต(mt)ได้ 650000 ยอดรวมอันดับเท่าไหร่?",
    "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_en": "When the production (mt) is 446424, what is the value world rank ?",
    "question_th": "เมื่อปริมาณการผลิต (mt) คือ 446424 มูลค่าโลกอันดับเท่าไหร่ ?",
    "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_en": "where value world rank is 12, what is the quantity world rank?",
    "question_th": "โดยที่อันดับมูลค่าโลกคือ 12 อันดับปริมาณโลกคืออะไร?",
    "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_en": "What is the rank of Tim Paine?",
    "question_th": "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_en": "What rank does Rodney Marsh have?",
    "question_th": "Rodney Marsh มีอันดับเท่าไหร่?",
    "context": "CREATE TABLE table_21100348_15 (rank INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(rank) FROM table_21100348_11 WHERE strike_rate = \"91.67\"",
    "question_en": "What is the rank for a strike rate of 91.67?",
    "question_th": "อันดับสำหรับอัตราการหยุดงาน 91.67 คืออะไร?",
    "context": "CREATE TABLE table_21100348_11 (rank INTEGER, strike_rate VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_21100348_11 WHERE runs = 477",
    "question_en": "What player has 477 runs?",
    "question_th": "ผู้เล่นคนไหนมี 477 วิ่ง?",
    "context": "CREATE TABLE table_21100348_11 (player VARCHAR, runs VARCHAR)"
  },
  {
    "answer": "SELECT MAX(innings) FROM table_21100348_11 WHERE rank = 3",
    "question_en": "How many innings does rank 3 have?",
    "question_th": "อันดับ 3 มีกี่อินนิง?",
    "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_en": "What was the goals for in the season that the pct % was 0.604?",
    "question_th": "เป้าหมายในฤดูกาลที่เปอร์เซ็นต์เปอร์เซ็นต์คือ 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_en": "In what season was the pct % 0.552? ",
    "question_th": " เปอร์เซ็นต์เป็น 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_en": "What was the standing in the season that the pct% was 0.769? ",
    "question_th": " เปอร์เซ็นต์ของเปอร์เซ็นต์คือ 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_en": "What were the points in the 1958-59 season? ",
    "question_th": " ฤดูกาล 1958-59 มีแต้มอะไรบ้าง?",
    "context": "CREATE TABLE table_2110959_1 (points VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT opponents_in_the_final FROM table_2112025_3 WHERE year = 1968",
    "question_en": "Who were Dürr's opponents in the final on year 1968?",
    "question_th": "ใครคือคู่ต่อสู้ของดูร์ร์ในรอบชิงชนะเลิศเมื่อปี 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_en": "What was the court surface on year 1971?",
    "question_th": "พื้นผิวศาลในปี พ.ศ. 2514 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_2112025_3 (surface VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT MAX(top_10s) FROM table_2112220_6 WHERE best_finish = \"2\"",
    "question_en": "Name  the most top 10s for 2 best finish",
    "question_th": "ตั้งชื่อ 10 อันดับแรกมากที่สุดสำหรับ 2 อันดับที่ดีที่สุด",
    "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_en": "Name the tournaments played for 2004",
    "question_th": "ตั้งชื่อทัวร์นาเมนต์ที่เล่นในปี 2547",
    "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_en": "How many submission of the night occurred when the fighter was matt wiman?",
    "question_th": "กี่คืนที่นักสู้คือ แมตต์ วิมาน?",
    "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_en": "How many knockout of the night occurred when joe lauzon fought. ",
    "question_th": " มีการน็อกเอาต์ในคืนนี้กี่ครั้งเมื่อโจ เลาซอนชก",
    "context": "CREATE TABLE table_21114902_1 (knockouts_of_the_night VARCHAR, fighter VARCHAR)"
  },
  {
    "answer": "SELECT MIN(episodes) FROM table_2113721_7",
    "question_en": "What is the smallest number of episodes in a season?",
    "question_th": "จำนวนตอนที่น้อยที่สุดในหนึ่งฤดูกาลคือเท่าใด",
    "context": "CREATE TABLE table_2113721_7 (episodes INTEGER)"
  },
  {
    "answer": "SELECT region_2 FROM table_2113721_7 WHERE dvd_name = \"Season Three\"",
    "question_en": "When was Season Three premiered in region 2?",
    "question_th": "ซีซั่น 3 เปิดตัวครั้งแรกในภูมิภาค 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_en": "Where is every location with specialization of textile engineering?",
    "question_th": "ทุกสถานที่ที่มีความเชี่ยวชาญด้านวิศวกรรมสิ่งทออยู่ที่ไหน?",
    "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_en": "What is every website with specialization of engineering and division of dhaka division?",
    "question_th": "ทุกเว็บไซต์ที่มีความเชี่ยวชาญด้านวิศวกรรมและแผนกธากาคืออะไร?",
    "context": "CREATE TABLE table_2112260_1 (website VARCHAR, specialization VARCHAR, division VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_2112260_1 WHERE nick = \"BRU\"",
    "question_en": "Where is every location where Nick is Bru?",
    "question_th": "ทุกสถานที่ที่นิคคือบรูอยู่ที่ไหน?",
    "context": "CREATE TABLE table_2112260_1 (location VARCHAR, nick VARCHAR)"
  },
  {
    "answer": "SELECT specialization FROM table_2112260_1 WHERE website = \"jstu.edu.bd\"",
    "question_en": "What is every specialization with the website Jstu.edu.bd",
    "question_th": "ความเชี่ยวชาญทุกอย่างของเว็บไซต์ 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_en": "Name the languages for cyprus",
    "question_th": "ตั้งชื่อภาษาสำหรับประเทศไซปรัส",
    "context": "CREATE TABLE table_21133193_1 (languages VARCHAR, member_countries VARCHAR)"
  },
  {
    "answer": "SELECT languages FROM table_21133193_1 WHERE member_countries = \"Estonia\"",
    "question_en": "Name the languages for estonia",
    "question_th": "ตั้งชื่อภาษาสำหรับเอสโตเนีย",
    "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_en": "Name the most gdp per capita latvian",
    "question_th": "ตั้งชื่อ GDP สูงสุดต่อหัวลัตเวีย",
    "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_en": "how many archive were when run time is 24:34",
    "question_th": "มีไฟล์เก็บถาวรจำนวนเท่าใดเมื่อรันไทม์คือ 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_en": "what is all the  broadcast date when viewers were 8.4 millions",
    "question_th": "ออกอากาศวันไหนที่มีคนดูถึง 8.4 ล้านคน",
    "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_en": "how many episode have 8.4 millions  viewer.",
    "question_th": "มีกี่ตอนคนดู 8.4 ล้านคน",
    "context": "CREATE TABLE table_2112766_1 (episode VARCHAR, viewers__in_millions_ VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_21146729_6 WHERE season__number = 8",
    "question_en": "What was the title in season #8?",
    "question_th": "ชื่ออะไรในฤดูกาล #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_en": "Who was the director when the writer(s) was John W. Bloch?",
    "question_th": "ใครคือผู้กำกับเมื่อผู้เขียนคือ 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_en": "What was the series# with the original airdate of october 23, 1967?",
    "question_th": "ซีรีส์# ที่ออกอากาศครั้งแรกเมื่อวันที่ 23 ตุลาคม พ.ศ. 2510 คืออะไร",
    "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_en": "what is the title when the  writer(s) is jack turley?",
    "question_th": "ผู้เขียนชื่อ แจ็ค เทอร์ลีย์ ชื่ออะไร",
    "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_en": "How  many of the  series # when the original airdate is september 25, 1967?",
    "question_th": "มีกี่ซีรีส์ #เมื่อออกอากาศเดิมคือวันที่ 25 กันยายน 2510?",
    "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_en": "Name the episode for run time of 22:50",
    "question_th": "ตั้งชื่อตอนเวลาฉาย 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_en": "Name the broadcast date of 6.9 million viewers",
    "question_th": "ระบุวันออกอากาศที่มีผู้ชม 6.9 ล้านคน",
    "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_en": "Name the broadcast date of run time being 24:14",
    "question_th": "ตั้งชื่อวันที่ออกอากาศของรันไทม์เป็น 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_en": "Which archive has a run time of 23:48?",
    "question_th": "ไฟล์เก็บถาวรใดมีเวลาทำงาน 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_en": "Which broadcast date has 6.8 million viewers?",
    "question_th": "วันไหนที่มีผู้ชม 6.8 ล้านคน?",
    "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_en": "What Petrol engine has total power of ps (kw; bhp)@5400-6500?",
    "question_th": "เครื่องยนต์เบนซินรุ่นใดมีกำลังรวม 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_en": "What is top speed of a petrol engine at ps (kw; bhp)@5250-6250?",
    "question_th": "ความเร็วสูงสุดของเครื่องยนต์เบนซินที่ 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_en": "What is the maximum speed for total power of ps (kw; bhp)?",
    "question_th": "ความเร็วสูงสุดสำหรับกำลังรวมของ 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_en": "What is the s7 4.0 tfsi quattro engine torque?",
    "question_th": "แรงบิดของเครื่องยนต์ s7 4.0 tfsi quattro คืออะไร?",
    "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_en": "Name the number in season for 4300062",
    "question_th": "ตั้งชื่อหมายเลขในฤดูกาล 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_en": "Name the number of cancelled for turnham green",
    "question_th": "ตั้งชื่อหมายเลขที่ยกเลิกสำหรับ 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_en": "Name the number of details for emlyn road",
    "question_th": "ตั้งชื่อเลขที่รายละเอียดถนนเอมลิน",
    "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_en": "What episode number in the series was directed by John Behring?",
    "question_th": "หมายเลขตอนใดในซีรีส์ที่กำกับโดย 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_en": "How many original air dates were there for episodes with a production code of 4398016?",
    "question_th": "มีกำหนดออกอากาศเดิมกี่ตอนซึ่งมีรหัสการผลิต 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_en": "Name the rank for 14.80 viewers",
    "question_th": "ตั้งชื่ออันดับคนดู 14.80 ครับ",
    "context": "CREATE TABLE table_211714_2 (rank VARCHAR, viewers__in_millions_ VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(rank) FROM table_211714_2 WHERE season = 6",
    "question_en": "Name the number of rank for season 6",
    "question_th": "ตั้งชื่อหมายเลขอันดับสำหรับฤดูกาลที่ 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_en": "What date did the episode with a production code of 4301085 originally air?",
    "question_th": "ตอนรหัสผลิต 4301085 เดิมออกอากาศวันไหนครับ?",
    "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_en": "What date did episode 15 of the season originally air?",
    "question_th": "ตอนที่ 15 ของซีซั่นเดิมออกอากาศวันไหน?",
    "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_en": "Name the remarks for sawhouse",
    "question_th": "ตั้งชื่อข้อสังเกตสำหรับโรงเลื่อย",
    "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_en": "Name the nato/ us dod code for sabbot",
    "question_th": "ตั้งชื่อรหัส nato/ us dod สำหรับ 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_en": "When autodromo nazionale monza is the circuit what is the report?",
    "question_th": "เมื่อ autodromo nazionale monza เป็นวงจร รายงานคืออะไร?",
    "context": "CREATE TABLE table_21191496_1 (report VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_21191496_1 WHERE pole_position = \"Michele Pirro\"",
    "question_en": "When michele pirro is the pole position what is the date?",
    "question_th": "เมื่อมิเชล ปิร์โร ขึ้นโพลโพซิชั่น วันที่เท่าไหร่?",
    "context": "CREATE TABLE table_21191496_1 (date VARCHAR, pole_position VARCHAR)"
  },
  {
    "answer": "SELECT report FROM table_21191496_1 WHERE country = \"Netherlands\"",
    "question_en": "When Netherlands is the country what is the report? ",
    "question_th": "เมื่อเนเธอร์แลนด์เป็นประเทศมีรายงานอะไรบ้าง?",
    "context": "CREATE TABLE table_21191496_1 (report VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT winning_team FROM table_21191496_1 WHERE circuit = \"circuit Ricardo Tormo\"",
    "question_en": "When circuit ricardo tormo is the circuit who is the winning team?",
    "question_th": "เมื่อ Circuit ricardo tormo เป็นเซอร์กิต ใครเป็นทีมที่ชนะ?",
    "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_en": "When circuit ricardo tormo is the circuit what is the round?",
    "question_th": "เมื่อวงจรริคาร์โด้ ตอร์โมมีวงจรเป็นวงกลมเท่าใด",
    "context": "CREATE TABLE table_21191496_1 (round VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(opponent) FROM table_21197135_1 WHERE record = \"6-0\"",
    "question_en": "How many opponents were there when the record was 6-0?",
    "question_th": "มีคู่แข่งกี่คนเมื่อสถิติเป็น 6-0?",
    "context": "CREATE TABLE table_21197135_1 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_21197135_1 WHERE record = \"6-0\"",
    "question_en": "How many opponents were there when the record was 6-0?",
    "question_th": "มีคู่แข่งกี่คนเมื่อสถิติเป็น 6-0?",
    "context": "CREATE TABLE table_21197135_1 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_21197135_1 WHERE opponent = \"@ Utah\"",
    "question_en": "What was the team record when the team played @ Utah?",
    "question_th": "สถิติของทีมเมื่อทีมเล่นที่ยูทาห์เป็นอย่างไร?",
    "context": "CREATE TABLE table_21197135_1 (record VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT cowboys_points FROM table_21197135_1 WHERE record = \"7-0\"",
    "question_en": "How many points did the Cowboys have when they had a 7-0 record?",
    "question_th": "คาวบอยส์มีสถิติชนะ 7-0 ได้กี่แต้ม?",
    "context": "CREATE TABLE table_21197135_1 (cowboys_points VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT scoreboard FROM table_21234111_6 WHERE total = \"23.5\"",
    "question_en": "Name the scoreboard for total being 23.5",
    "question_th": "ตั้งชื่อกระดานคะแนนรวมเป็น 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_en": "Name the jason for public vote being 19.20%",
    "question_th": "ตั้งชื่อเจสันให้ประชาชนลงคะแนนเสียง 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_en": "Name the number of song for scoreboard being 3rd",
    "question_th": "ตั้งชื่อเพลงสำหรับกระดานคะแนนเป็นอันดับที่ 3",
    "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_en": "state the opponent on halliwell jones stadium in super league xiv",
    "question_th": "กล่าวถึงคู่ต่อสู้ที่สนามฮัลลิเวลล์ โจนส์ ในซูเปอร์ลีก 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_en": "how many venues were played on in round 1",
    "question_th": "มีกี่สนามที่เล่นในรอบที่ 1",
    "context": "CREATE TABLE table_21256068_3 (venue VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_21256068_3 WHERE score = \"50-10\"",
    "question_en": "state the round that had a game score 50-10",
    "question_th": "ระบุรอบที่มีคะแนนเกม 50-10",
    "context": "CREATE TABLE table_21256068_3 (round VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_21256068_3 WHERE attendance = 9359",
    "question_en": "state the round that had a game attended attended by 9359 people",
    "question_th": "ระบุรอบที่มีเกมเข้าร่วม 9,359 คน",
    "context": "CREATE TABLE table_21256068_3 (round VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(round) FROM table_21256068_3 WHERE score = \"44-22\"",
    "question_en": "how many rounds had the score 44-22",
    "question_th": "กี่รอบมีสกอร์ 44-22",
    "context": "CREATE TABLE table_21256068_3 (round VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_21256068_3 WHERE opponent = \"Crusaders\"",
    "question_en": "what's the score against crusaders",
    "question_th": "เทียบกับพวกครูเซเดอร์ได้คะแนนเท่าไหร่",
    "context": "CREATE TABLE table_21256068_3 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(small__100ha_) FROM table_21249915_1 WHERE medium__500ha_ = 17101",
    "question_en": "How many Small catagories are there for the department that has a medium of 17101? ",
    "question_th": " มีหมวดย่อยกี่หมวดสำหรับแผนกที่มีสื่อ 17101?",
    "context": "CREATE TABLE table_21249915_1 (small__100ha_ VARCHAR, medium__500ha_ VARCHAR)"
  },
  {
    "answer": "SELECT total FROM table_21249915_1 WHERE department = \"Chuquisaca\"",
    "question_en": "What is the total for Chuquisaca?",
    "question_th": "ชูกิซาก้ารวมเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_21249915_1 (total VARCHAR, department VARCHAR)"
  },
  {
    "answer": "SELECT department FROM table_21249915_1 WHERE small__100ha_ = 11370",
    "question_en": "Which department has a small of 11370? ",
    "question_th": " แผนกไหนมีน้อย 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_en": "How many total catagories are there for La Paz? ",
    "question_th": " ลาปาซมีทั้งหมดกี่หมวดหมู่",
    "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_en": "How many points under par was the winner of the Miyagi TV Cup Dunlop Ladies Open?",
    "question_th": "ผู้ชนะรายการ 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_en": "What was the winning score of the Vernal Ladies tournament?",
    "question_th": "คะแนนชนะของทัวร์นาเมนต์ Vernal Ladies คืออะไร?",
    "context": "CREATE TABLE table_2126093_3 (winning_score VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT athlete FROM table_21276428_21 WHERE place = 3",
    "question_en": "Name the athlete for 3",
    "question_th": "ตั้งชื่อนักกีฬาคนที่ 3",
    "context": "CREATE TABLE table_21276428_21 (athlete VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_21269143_1 WHERE round = \"13\"",
    "question_en": "Name the result for round 13",
    "question_th": "ประกาศผลรอบ 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_en": "Name the attendance for loss result and salford city reds",
    "question_th": "ระบุชื่อการเข้าร่วมสำหรับผลแพ้และซอลฟอร์ดซิตี้สีแดง",
    "context": "CREATE TABLE table_21269143_1 (attendance VARCHAR, result VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(date) FROM table_21269143_1 WHERE round = \"26\"",
    "question_en": "Name the total number of date for round 26",
    "question_th": "ตั้งชื่อจำนวนวันที่ทั้งหมดสำหรับรอบ 26",
    "context": "CREATE TABLE table_21269143_1 (date VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_21269143_1 WHERE round = \"23\"",
    "question_en": "Name the attendace for 23 round",
    "question_th": "แจ้งชื่อผู้เข้ารอบ 23 รอบ",
    "context": "CREATE TABLE table_21269143_1 (attendance VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(opponent) FROM table_21269143_1 WHERE date = \"05/09/2009\"",
    "question_en": "Name the total number of opponets for  05/09/2009",
    "question_th": "ตั้งชื่อจำนวนฝ่ายตรงข้ามทั้งหมดสำหรับวันที่ 05/09/2552",
    "context": "CREATE TABLE table_21269143_1 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_21284653_1 WHERE population_density = \"200\"",
    "question_en": "What is the only city name with a population density of 200?",
    "question_th": "ชื่อเมืองเดียวที่มีความหนาแน่นของประชากร 200 คืออะไร?",
    "context": "CREATE TABLE table_21284653_1 (name VARCHAR, population_density VARCHAR)"
  },
  {
    "answer": "SELECT census_division FROM table_21284653_1 WHERE name = \"Stratford\"",
    "question_en": "What is the census division for the name Stratford?",
    "question_th": "แผนกสำรวจสำมะโนประชากรสำหรับชื่อ Stratford คืออะไร?",
    "context": "CREATE TABLE table_21284653_1 (census_division VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT change___percentage_ FROM table_21284653_1 WHERE area__km²_ = \"247.21\"",
    "question_en": "What is the change (%) when the area size (km2) is 247.21?",
    "question_th": "การเปลี่ยนแปลง (%) คืออะไรเมื่อขนาดพื้นที่ (km2) คือ 247.21?",
    "context": "CREATE TABLE table_21284653_1 (change___percentage_ VARCHAR, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT municipal_status FROM table_21284653_1 WHERE population_density = \"895.5\"",
    "question_en": "What is the municipal status where the population density is 895.5?",
    "question_th": "สถานะของเทศบาลที่มีความหนาแน่นของประชากรอยู่ที่ 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_en": "What is the census division for the city named Kenora?",
    "question_th": "แผนกสำรวจสำมะโนประชากรของเมืองที่ชื่อเคโนราคืออะไร?",
    "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_en": "If there are 18 villages, what is the minimum area ?",
    "question_th": "ถ้ามี 18 หมู่บ้าน พื้นที่ขั้นต่ำคือเท่าไร ?",
    "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_en": "With the population in 2005 of 572, what is the former name?",
    "question_th": "ด้วยจำนวนประชากรในปี 2548 จำนวน 572 คน เดิมชื่ออะไร?",
    "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_en": "How many villages have a density persons/ha of 5.5?",
    "question_th": "มีกี่หมู่บ้านที่มีความหนาแน่น คน/เฮกตาร์ 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_en": "What were the scores for matches with irving wright hazel hotchkiss wightman?",
    "question_th": "แมตช์กับ เออร์วิ่ง ไรท์ เฮเซล ฮอตช์คิส ไวท์แมน ให้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_2127933_3 (score VARCHAR, opponents VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_2127933_3 WHERE score = \"10–12, 6–1, 6–3\"",
    "question_en": "How many years had scores of 10–12, 6–1, 6–3?",
    "question_th": "กี่ปีมีคะแนน 10–12, 6–1, 6–3?",
    "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_en": "Who were the partners during times that harry johnson hazel hotchkiss wightman was the opponent?",
    "question_th": "ใครคือหุ้นส่วนในช่วงเวลาที่แฮร์รี่ จอห์นสัน เฮเซล ฮอตช์คิส ไวท์แมนเป็นคู่ต่อสู้?",
    "context": "CREATE TABLE table_2127933_3 (partner VARCHAR, opponents VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_2127933_3 WHERE opponents = \"Bill Tilden Florence Ballin\"",
    "question_en": "What were the outcomes of matches with bill tilden florence ballin as opponents?",
    "question_th": "ผลการแข่งขันกับบิล ทิลเดน ฟลอเรนซ์ บัลลิน ในฐานะคู่ต่อสู้เป็นอย่างไร?",
    "context": "CREATE TABLE table_2127933_3 (outcome VARCHAR, opponents VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_2127933_3",
    "question_en": "What is the earliest year?",
    "question_th": "ปีแรกสุดคืออะไร?",
    "context": "CREATE TABLE table_2127933_3 (year INTEGER)"
  },
  {
    "answer": "SELECT survivor_count FROM table_21304131_2 WHERE directed_by = \"Gwyneth Horder-Payton\"",
    "question_en": "What was the survivor count for the episode directed by Gwyneth Horder-Payton?",
    "question_th": "จำนวนผู้รอดชีวิตสำหรับตอนที่กำกับโดย 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_en": "When did series number 65 originally air?",
    "question_th": "ซีรีส์หมายเลข 65 ออกอากาศครั้งแรกเมื่อไหร่?",
    "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_en": "What is the production code of the episode directed by David Solomon? ",
    "question_th": " รหัสการผลิตของตอนที่กำกับโดย 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_en": "Who wrote the episode with the production code of BN103? ",
    "question_th": " ใครเป็นคนเขียนตอนด้วยรหัสการผลิต 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_en": "What was the original air date of the episode that had 4.08 million U.S. viewers? ",
    "question_th": " วันที่ออกอากาศดั้งเดิมของตอนที่มีผู้ชม 4.08 ล้านคนในสหรัฐฯ คือเมื่อใด",
    "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_en": "List all the locations where net capacity is 950?",
    "question_th": "แสดงรายการสถานที่ทั้งหมดที่มีความจุสุทธิอยู่ที่ 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_en": "List all the locations with a RBMK-1000 reactor.",
    "question_th": "ระบุสถานที่ทั้งหมดที่มีเครื่องปฏิกรณ์ RBMK-1000",
    "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_en": "What is the gross capacity where the net capacity is 1380?",
    "question_th": "กำลังการผลิตรวมโดยที่กำลังการผลิตสุทธิคือ 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_en": "when was the premiere when a 3.3 millions of North American watched the episode whose writer was Rob Wright?",
    "question_th": "รอบปฐมทัศน์คือเมื่อไหร่เมื่อมีชาวอเมริกาเหนือ 3.3 ล้านคนดูตอนที่ผู้เขียนคือ 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_en": "what is the name of the episode which the production code is 62015-08-162",
    "question_th": "ตอนที่ชื่ออะไร รหัสการผลิต 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_en": "in the number of episode in season is 11, who was the writer?",
    "question_th": "ในจำนวนตอนในซีซั่นมี 11 ตอน ใครเป็นคนเขียน?",
    "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_en": "How many episodes had the us viewers (millions) figure of 5.0?",
    "question_th": "จำนวนผู้ชมของพวกเรา (ล้าน) คิดเป็น 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_en": "Who are the writers for the episode number in series 129?",
    "question_th": "ใครคือคนเขียนบทหมายเลขตอนในซีรีส์ 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_en": "What is the latest episode in the season directed by Chris Long?",
    "question_th": "ตอนล่าสุดในซีซั่นที่กำกับโดย 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_en": "Who wrote the episodes directed by David Straiton?",
    "question_th": "ใครเป็นผู้เขียนตอนที่กำกับโดย 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_en": "Who directed the episode with a production code greater than 4301103.585233785 that was written by Curtis Kheel?",
    "question_th": "ใครเป็นผู้กำกับตอนที่มีรหัสการผลิตมากกว่า 4301103.585233785 ที่เขียนโดย 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_en": "How many results were there on 19/06/2009?",
    "question_th": "ในวันที่ 19/06/2552 มีผลลัพธ์กี่รายการ?",
    "context": "CREATE TABLE table_21311525_1 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_21311525_1 WHERE date = \"19/06/2009\"",
    "question_en": "What is the round number for the date 19/06/2009?",
    "question_th": "เลขรอบวันที่ 19/06/2552 คืออะไร?",
    "context": "CREATE TABLE table_21311525_1 (round VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_21311525_1 WHERE venue = \"Stade de la Méditerranée\"",
    "question_en": "What is the round number for the venue of Stade de la Méditerranée?",
    "question_th": "สนาม Stade de la Méditerranée มีจำนวนรอบเท่าไร?",
    "context": "CREATE TABLE table_21311525_1 (round VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_21311525_1 WHERE date = \"17/07/2009\"",
    "question_en": "What was the score when the date was 17/07/2009?",
    "question_th": "เมื่อวันที่ 17/07/2552 คะแนนเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_21311525_1 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_21321804_5 WHERE player = \"Marc Parenteau\"",
    "question_en": "What is Marc Parenteau's position? ",
    "question_th": " ตำแหน่งของมาร์ค ปาเรนโต คืออะไร?",
    "context": "CREATE TABLE table_21321804_5 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MIN(pick__number) FROM table_21321804_5 WHERE college = \"McGill\"",
    "question_en": "What is the smallest pick number for McGill?",
    "question_th": "หมายเลขเลือกที่น้อยที่สุดสำหรับ McGill คืออะไร?",
    "context": "CREATE TABLE table_21321804_5 (pick__number INTEGER, college VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_21321804_5 WHERE player = \"Derik Fury\"",
    "question_en": "Derik Fury plays for which college? ",
    "question_th": " Derik Fury เล่นให้กับวิทยาลัยใด",
    "context": "CREATE TABLE table_21321804_5 (college VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(college) FROM table_21321804_5 WHERE player = \"David Kasouf\"",
    "question_en": "David Kasouf plays for how many colleges? ",
    "question_th": "David Kasouf เล่นให้กับวิทยาลัยกี่แห่ง?",
    "context": "CREATE TABLE table_21321804_5 (college VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_21321804_5 WHERE cfl_team = \"Hamilton Tiger-Cats\"",
    "question_en": "What position was drafted by the Hamilton Tiger-Cats? ",
    "question_th": " 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_en": "Who won when Jamie Green had the best lap?",
    "question_th": "ใครชนะเมื่อ Jamie Green ทำรอบได้ดีที่สุด?",
    "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_en": "Who had the fasted lap in motorsport arena oschersleben?",
    "question_th": "ใครเป็นผู้ทำรอบอดอาหารในสนามกีฬามอเตอร์สปอร์ต 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_en": "When did Oliver Jarvis have pole position?",
    "question_th": "Oliver Jarvis ได้ตำแหน่งโพลโพซิชั่นเมื่อใด",
    "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_en": "What college did the player for the Hamilton Tiger-Cats go to? ",
    "question_th": " ผู้เล่นของทีม Hamilton Tiger-Cats เข้าเรียนที่วิทยาลัยใด",
    "context": "CREATE TABLE table_21321804_3 (college VARCHAR, cfl_team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(player) FROM table_21321804_3 WHERE position = \"DT\"",
    "question_en": "How many players are at the DT position? ",
    "question_th": " มีผู้เล่นกี่คนที่ตำแหน่ง DT?",
    "context": "CREATE TABLE table_21321804_3 (player VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT cfl_team FROM table_21321804_3 WHERE college = \"Nebraska\"",
    "question_en": "What team does the player who went to Nebraska play for? ",
    "question_th": " นักเตะที่ไปเนแบรสกาเล่นให้ทีมไหน?",
    "context": "CREATE TABLE table_21321804_3 (cfl_team VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT MAX(pick__number) FROM table_21321804_3",
    "question_en": "What is the highest number any of the players were picked at? ",
    "question_th": " ผู้เล่นคนใดถูกเลือกมากที่สุดคือจำนวนเท่าใด?",
    "context": "CREATE TABLE table_21321804_3 (pick__number INTEGER)"
  },
  {
    "answer": "SELECT player FROM table_21321804_3 WHERE cfl_team = \"Winnipeg Blue Bombers\"",
    "question_en": "Which player plays for the Winnipeg Blue Bombers? ",
    "question_th": " ผู้เล่นคนไหนเล่นให้กับทีม 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_en": "What is the pick # for player wes lysack?",
    "question_th": "ตัวเลือก # สำหรับผู้เล่น เวส ไลแซค คืออะไร?",
    "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_en": "How many clf teams have a pick # of 5?",
    "question_th": "มีกี่ทีม CLF ที่มีตัวเลือก # จาก 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_en": "How many total positions are there for utah college?",
    "question_th": "วิทยาลัยยูทาห์มีทั้งหมดกี่ตำแหน่ง?",
    "context": "CREATE TABLE table_21321804_1 (position VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT cfl_team FROM table_21321804_1 WHERE college = \"Manitoba\"",
    "question_en": "Which cfl team is manitoba college?",
    "question_th": "ทีม cfl ใดคือวิทยาลัยแมนิโทบา",
    "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_en": "Which position is cfl team edmonton eskimos for weber state college?",
    "question_th": "ตำแหน่งใดของทีม cfl edmonton eskimos สำหรับ 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_en": "What is the pick # for player wes lysack?",
    "question_th": "ตัวเลือก # สำหรับผู้เล่น เวส ไลแซค คืออะไร?",
    "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_en": "How many stages of the rally took 14:33.9 for the leader to finish?",
    "question_th": "การชุมนุมใช้เวลากี่ขั้นตอน 14:33.9 กว่าผู้นำจะจบ?",
    "context": "CREATE TABLE table_21326205_2 (length VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT stage FROM table_21326205_2 WHERE rally_leader = \"Sébastien Loeb\" AND name = \"Tempo 2\"",
    "question_en": "In which special stage named Tempo 2 was Sébastien Loeb the leader?",
    "question_th": "ฉากพิเศษใดที่ชื่อ Tempo 2 มี Sébastien Loeb เป็นผู้นำ?",
    "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_en": "Which ralliers won the stages that were at 18:54 GMT?",
    "question_th": "นักแข่งคนไหนที่ชนะในแต่ละด่านเมื่อเวลา 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_en": "How many locations have #12 Michigan State as the big ten team?",
    "question_th": "มีสถานที่ใดบ้างที่ #12 รัฐมิชิแกนเป็นทีมใหญ่สิบทีม",
    "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_en": "Who is the winner when bigten (2-1) is the challenge leader?",
    "question_th": "ใครเป็นผู้ชนะ เมื่อบิ๊กเทน (2-1) เป็นผู้นำการท้าทาย?",
    "context": "CREATE TABLE table_21330550_2 (winner VARCHAR, challenge_leader VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_21330550_2 WHERE location = \"LJVM Coliseum • Winston-Salem, NC\"",
    "question_en": "Who is the winner in the location of ljvm coliseum • winston-salem, nc?",
    "question_th": "ใครคือผู้ชนะในตำแหน่งสนามกีฬา ljvm • 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_en": "What time was the acc team #17 wake forest?",
    "question_th": "ทีมแอค #17 เวคฟอเรสต์ กี่โมงคะ?",
    "context": "CREATE TABLE table_21330550_2 (time VARCHAR, acc_team VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_21330550_2 WHERE time = \"9:30PM\"",
    "question_en": "Which location has a time of 9:30pm?",
    "question_th": "สถานที่ใดมีเวลา 21.30 น.",
    "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_en": "How many dates have a big ten team of #10 purdue?",
    "question_th": "มีกี่วันที่สิบทีมใหญ่ของ #10 เพอร์ดู?",
    "context": "CREATE TABLE table_21330550_2 (date VARCHAR, big_ten_team VARCHAR)"
  },
  {
    "answer": "SELECT contestant FROM table_21346767_3 WHERE hometown = \"Villa Hermosa\"",
    "question_en": "Name the contestant for villa hermosa",
    "question_th": "ตั้งชื่อผู้เข้าประกวดวิลล่าเฮอร์โมซา",
    "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_en": "Name the least age for cibao central and santo domingo",
    "question_th": "ตั้งชื่ออายุน้อยที่สุดสำหรับ cibao central และ 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_en": "How many different results of the population count in 2001 are there for the census division whose population in 1996 is 880859?",
    "question_th": "ผลการนับจำนวนประชากรในปี 2544 สำหรับการสำรวจสำมะโนประชากรซึ่งมีประชากรในปี 2539 มีจำนวน 880859 จำนวนเท่าใด",
    "context": "CREATE TABLE table_2134521_1 (pop__2001_ VARCHAR, pop__1996_ VARCHAR)"
  },
  {
    "answer": "SELECT pop__1996_ FROM table_2134521_1 WHERE area__km²_ = \"15767.99\"",
    "question_en": "How many people lived in the census division with an area of 15767.99 km2 in 1996?",
    "question_th": "มีกี่คนที่อาศัยอยู่ในแผนกสำรวจสำมะโนประชากรโดยมีพื้นที่ 15,767.99 ตารางกิโลเมตรในปี 1996",
    "context": "CREATE TABLE table_2134521_1 (pop__1996_ VARCHAR, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT MAX(pop__2006_) FROM table_2134521_1",
    "question_en": "What is the largest population count in any of the census divisions in 2006?",
    "question_th": "จำนวนประชากรที่ใหญ่ที่สุดในแผนกการสำรวจสำมะโนใดๆ ในปี 2549 คือข้อใด",
    "context": "CREATE TABLE table_2134521_1 (pop__2006_ INTEGER)"
  },
  {
    "answer": "SELECT pop__1996_ FROM table_2134521_1 WHERE area__km²_ = \"9909.31\"",
    "question_en": "How many people lived in the census division spread out on 9909.31 km2 in 1996?",
    "question_th": "มีกี่คนที่อาศัยอยู่ในแผนกการสำรวจสำมะโนประชากรซึ่งกระจายอยู่บนพื้นที่ 9909.31 ตารางกิโลเมตร ในปี 1996?",
    "context": "CREATE TABLE table_2134521_1 (pop__1996_ VARCHAR, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_21350934_2 WHERE round = \"QF\"",
    "question_en": "What is the result of the qf round?",
    "question_th": "ผลการแข่งขันรอบ QF เป็นอย่างไร?",
    "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_en": "Which venue has bradford bulls as the opponent on the date of 06/09/2009?",
    "question_th": "สนามใดที่มีแบรดฟอร์ด บูลล์ส เป็นคู่ต่อสู้ในวันที่ 06/09/2552?",
    "context": "CREATE TABLE table_21350934_2 (venue VARCHAR, opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_21350934_2 WHERE attendance = \"N/A\"",
    "question_en": "Who is the opponent when the attendance is n/a?",
    "question_th": "คู่ต่อสู้คือใครเมื่อไม่มีผู้เข้าร่วม?",
    "context": "CREATE TABLE table_21350934_2 (opponent VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_21350934_2 WHERE score = \"34-18\"",
    "question_en": "What is the venue that has 34-18 as the score?",
    "question_th": "สนามไหนมีคะแนน 34-18 เป็นบ้าง?",
    "context": "CREATE TABLE table_21350934_2 (venue VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(result) FROM table_21350934_2 WHERE attendance = \"14,381\"",
    "question_en": "How many results have 14,381 as the attendance?",
    "question_th": "มีผู้เข้าแข่งขันทั้งหมด 14,381 ราย?",
    "context": "CREATE TABLE table_21350934_2 (result VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_21350934_2 WHERE attendance = \"6,150\"",
    "question_en": "How many rounds have 6,150 as attendance?",
    "question_th": "มีผู้เข้าแข่งขันกี่รอบ 6,150 คน?",
    "context": "CREATE TABLE table_21350934_2 (round VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(opponent) FROM table_21378160_2 WHERE date = \"17/05/2009\"",
    "question_en": "How many opponents did they play on 17/05/2009?",
    "question_th": "พวกเขาเล่นกับฝ่ายตรงข้ามกี่คนในวันที่ 17/05/2552?",
    "context": "CREATE TABLE table_21378160_2 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_21378160_2 WHERE round = \"3\"",
    "question_en": "What was the score of round 3?",
    "question_th": "คะแนนรอบ 3 เท่าไหร่คะ?",
    "context": "CREATE TABLE table_21378160_2 (score VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(artist) FROM table_21378339_5 WHERE televote_points = 7",
    "question_en": "Name the artist for 7 points",
    "question_th": "ตั้งชื่อศิลปินให้ 7 คะแนน",
    "context": "CREATE TABLE table_21378339_5 (artist VARCHAR, televote_points VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(artist) FROM table_21378339_5 WHERE panel_points = 5",
    "question_en": "Name the number of artists for panel points being 5",
    "question_th": "ตั้งชื่อจำนวนศิลปินสำหรับแผงคะแนนคือ 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_en": "Name the total number of televote points for cry on my shoulders",
    "question_th": "บอกจำนวนคะแนนโทรทัศน์ทั้งหมดเพื่อร้องไห้บนไหล่ของฉัน",
    "context": "CREATE TABLE table_21378339_5 (televote_points VARCHAR, song VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_21378339_5 WHERE artist = \"Rebeka Dremelj\"",
    "question_en": "Name the score for rebeka dremelj",
    "question_th": "ตั้งชื่อคะแนนให้ Rebeka dremelj",
    "context": "CREATE TABLE table_21378339_5 (score VARCHAR, artist VARCHAR)"
  },
  {
    "answer": "SELECT artist FROM table_21378339_5 WHERE televotes = 1595",
    "question_en": "Name the artist for 1595 televotes",
    "question_th": "ตั้งชื่อศิลปิน 1,595 โทรทัศน์",
    "context": "CREATE TABLE table_21378339_5 (artist VARCHAR, televotes VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_2139023_2 WHERE surface = \"Grass\" AND year = 1955",
    "question_en": "What was the result of the match on grass in 1955?",
    "question_th": "ผลของการแข่งขันบนพื้นหญ้าในปี 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_en": "What was the result of the Australian Championships?",
    "question_th": "ผลการแข่งขัน 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_en": "What is the number of external links with a coach named Katie Kansas?",
    "question_th": "จำนวนลิงก์ภายนอกกับโค้ชชื่อ Katie Kansas คือเท่าใด",
    "context": "CREATE TABLE table_2140071_13 (external_link VARCHAR, coach VARCHAR)"
  },
  {
    "answer": "SELECT MIN(season) FROM table_2140071_13",
    "question_en": "What is the minimum number of seasons?",
    "question_th": "จำนวนฤดูกาลขั้นต่ำคือเท่าไร?",
    "context": "CREATE TABLE table_2140071_13 (season INTEGER)"
  },
  {
    "answer": "SELECT episode AS Summary FROM table_2140071_13 WHERE episode = 5",
    "question_en": "What is the episode summary for episode 5?",
    "question_th": "สรุปตอนที่ 5 คืออะไรคะ?",
    "context": "CREATE TABLE table_2140071_13 (episode VARCHAR)"
  },
  {
    "answer": "SELECT episode AS Summary FROM table_2140071_13 WHERE coach = \"Rebecca Star\"",
    "question_en": "What is the summary for the episode with a coach named Rebecca Star?",
    "question_th": "บทสรุปของตอนที่มีโค้ชชื่อ รีเบคก้า สตาร์ คืออะไร?",
    "context": "CREATE TABLE table_2140071_13 (episode VARCHAR, coach VARCHAR)"
  },
  {
    "answer": "SELECT episode FROM table_2140071_10 WHERE coach = \"Maritza Reveron\"",
    "question_en": "Name the episode with maritza reveron",
    "question_th": "ตั้งชื่อตอนด้วย 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_en": "Name the season for august 16, 2010",
    "question_th": "ตั้งชื่อฤดูกาลสำหรับวันที่ 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_en": "Name the number of episode summary for jesse csincsak",
    "question_th": "บอกชื่อสรุปจำนวนตอนของ เจสซี ชินศักดิ์",
    "context": "CREATE TABLE table_2140071_10 (episode VARCHAR, coach VARCHAR)"
  },
  {
    "answer": "SELECT coach FROM table_2140071_10 WHERE premier_date = \"May 20, 2010\"",
    "question_en": "Name the coach for may 20, 2010",
    "question_th": "ตั้งชื่อโค้ชประจำวันที่ 20 พฤษภาคม 2553",
    "context": "CREATE TABLE table_2140071_10 (coach VARCHAR, premier_date VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_2139390_2 WHERE date = \"June 20\"",
    "question_en": "Name the team for june 20",
    "question_th": "ตั้งชื่อทีมวันที่ 20 มิถุนายน",
    "context": "CREATE TABLE table_2139390_2 (team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT race_time FROM table_2139390_2 WHERE year = 2002",
    "question_en": "Name the race time for 2002",
    "question_th": "ตั้งชื่อเวลาการแข่งขันปี 2545",
    "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_en": "How many seasons have a premier date of January 6, 2005? ",
    "question_th": " มีกี่ฤดูกาลที่มีวันที่ออกฉายในวันที่ 6 มกราคม พ.ศ. 2548",
    "context": "CREATE TABLE table_2140071_5 (season VARCHAR, premier_date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(season) FROM table_2140071_5",
    "question_en": "What is the last season? ",
    "question_th": " ฤดูกาลที่แล้วคืออะไร?",
    "context": "CREATE TABLE table_2140071_5 (season INTEGER)"
  },
  {
    "answer": "SELECT premier_date FROM table_2140071_5 WHERE coach = \"John O'Connell\"",
    "question_en": "What date did the episode, with John O'Connell as the coach, premier? ",
    "question_th": " ตอนนี้ทำวันที่เท่าไหร่ โดยมี John O'Connell เป็นโค้ช นายกรัฐมนตรี?",
    "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_en": "Name the result for total attendance-regular season",
    "question_th": "ตั้งชื่อผลการเข้าร่วมทั้งหมด-ฤดูกาลปกติ",
    "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_en": "Name the result/games for 52521",
    "question_th": "ตั้งชื่อผลลัพธ์/เกมสำหรับ 52521",
    "context": "CREATE TABLE table_21436373_11 (result_games VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT result_games FROM table_21436373_11 WHERE attendance = 54530",
    "question_en": "Name the result/games for 54530",
    "question_th": "ตั้งชื่อผลลัพธ์/เกมสำหรับ 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_en": "Name the stadium for regular season game",
    "question_th": "ตั้งชื่อสนามสำหรับเกมประจำฤดูกาล",
    "context": "CREATE TABLE table_21436373_11 (stadium VARCHAR, type_of_record VARCHAR)"
  },
  {
    "answer": "SELECT result_games FROM table_21436373_11 WHERE attendance = 54741",
    "question_en": "Name the result/games for 54741",
    "question_th": "ตั้งชื่อผลลัพธ์/เกมสำหรับ 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_en": "give the 1st leg score against ilisiakos",
    "question_th": "ให้คะแนนเลกแรกกับอิลิเซียกอส",
    "context": "CREATE TABLE table_21434618_1 (team__number2 VARCHAR)"
  },
  {
    "answer": "SELECT team__number1 FROM table_21434618_1 WHERE team__number2 = \"Chalkida\"",
    "question_en": "which team #1 played again chalkida",
    "question_th": "ทีมไหน#1เล่นอีกแล้วชาลคิดา",
    "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_en": "which team#2 played against poseidon neoi porroi",
    "question_th": "ทีม#2 แข่งกับ โพไซดอน เนย พอร์รอย",
    "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_en": "When was the pre-season game record achieved?",
    "question_th": "สถิติเกมปรีซีซั่นทำได้เมื่อใด?",
    "context": "CREATE TABLE table_21436373_10 (date_year VARCHAR, type_of_record VARCHAR)"
  },
  {
    "answer": "SELECT MAX(attendance) FROM table_21436373_10",
    "question_en": "What is the maximal number of people that attended any of these games?",
    "question_th": "จำนวนคนสูงสุดที่เข้าร่วมเกมเหล่านี้คือเท่าใด?",
    "context": "CREATE TABLE table_21436373_10 (attendance INTEGER)"
  },
  {
    "answer": "SELECT attendance FROM table_21436373_12 WHERE date_year = \"2011\"",
    "question_en": "what is the attendance in 2011 records",
    "question_th": "บันทึกการเข้าร่วมในปี 2554 คืออะไร",
    "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_en": "what type of record was made where result/games is 10 games (29,606 avg.)",
    "question_th": "สถิติประเภทใดที่ทำขึ้นโดยผลการแข่งขัน/เกมคือ 10 เกม (เฉลี่ย 29,606 เกม)",
    "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_en": "where was the total attendance-regular season record made",
    "question_th": "บันทึกการเข้าร่วมฤดูกาลปกติทั้งหมดอยู่ที่ไหน",
    "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_en": "where was sun 09/12/93 record made",
    "question_th": "บันทึกของดวงอาทิตย์ 09/12/93 อยู่ที่ไหน",
    "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_en": "how many records had result/games: 10 games (29,606 avg.)",
    "question_th": "มีสถิติผลการแข่งขัน/เกม กี่เกม : 10 เกม (เฉลี่ย 29,606 เกม)",
    "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_en": "what is the highest attendance for a total attendance-regular season record",
    "question_th": "จำนวนผู้เข้าร่วมสูงสุดสำหรับสถิติการเข้าร่วมทั้งหมด-ปกติในฤดูกาลคือเท่าใด",
    "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_en": "When 2005 is the date/year how many measurements of attendance are there?",
    "question_th": "เมื่อ พ.ศ. 2548 เป็นวันที่/ปี มีการวัดการเข้างานทั้งหมดกี่แบบ?",
    "context": "CREATE TABLE table_21436373_7 (attendance VARCHAR, date_year VARCHAR)"
  },
  {
    "answer": "SELECT result_games FROM table_21436373_7 WHERE attendance = 27585",
    "question_en": "When 27585 is the attendance what are the results of the games?",
    "question_th": "เมื่อผู้เข้าร่วม 27585 ผลการแข่งขันเป็นอย่างไร?",
    "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_en": "When  9 games (28,002 avg.) is the results of the games what is the date/year?",
    "question_th": "เมื่อ 9 เกม (เฉลี่ย 28,002) ผลการแข่งขันคือวันที่/ปีอะไร?",
    "context": "CREATE TABLE table_21436373_7 (date_year VARCHAR, result_games VARCHAR)"
  },
  {
    "answer": "SELECT stadium FROM table_21436373_7 WHERE attendance = 255627",
    "question_en": "When 255627 is the attendance what is the stadium?",
    "question_th": "เมื่อ 255627 มีผู้ชมสนามอะไร?",
    "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_en": "What record was set on Tue 11/02/75?",
    "question_th": "อังคาร 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_en": "What record was set when the result/game was equal to 9 games (28,595 avg.)",
    "question_th": "สถิติใดถูกกำหนดไว้เมื่อผลการแข่งขัน/เกมเท่ากับ 9 เกม (เฉลี่ย 28,595)",
    "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_en": "What record was set when the result/game was montreal 20 @ ottawa 10?",
    "question_th": "สถิติใดถูกกำหนดไว้เมื่อผลการแข่งขัน/เกมคือมอนทรีออล 20 @ ออตตาวา 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_en": "Which stadium had the result/game montreal 20 @ ottawa 10?",
    "question_th": "สนามใดมีผลการแข่งขัน/เกม มอนทรีออล 20 @ ออตตาวา 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_en": "For what year is the type of record 'total attendance-regular season?",
    "question_th": "ประเภทของบันทึก 'จำนวนผู้เข้าร่วมทั้งหมด-ฤดูกาลปกติ' เป็นประเภทใดในปีใด",
    "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_en": "What type of record is the result of the game Montreal 31 @ Calgary 32?",
    "question_th": "ผลการแข่งขันประเภทใดคือ มอนทรีออล 31 @ คัลการี 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_en": "On what date/s has attendance been 45010?",
    "question_th": "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_en": "What is the number of attendance with the pre-season game as the type of record?",
    "question_th": "จำนวนผู้เข้าชมโดยเกมปรีซีซั่นเป็นประเภทสถิติคือเท่าใด?",
    "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_en": "Which type of record has result/games of 9 games (57,144 avg.)",
    "question_th": "สถิติประเภทไหนมีผลการแข่งขัน/เกม 9 เกม (เฉลี่ย 57,144 เกม)",
    "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_en": "What is the result/games of Sun 11/28/10 as the date/year?",
    "question_th": "ผลการแข่งขัน/เกมวันอาทิตย์ที่ 11/28/53 เป็นวันที่/ปีเป็นอย่างไร?",
    "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_en": "Which stadium has the date/year of Fri 06/25/82?",
    "question_th": "สนามไหนมีวัน/ปี ศุกร์ 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_en": "Which type of record has result/games of b.c. 16 @ edmonton 22?",
    "question_th": "บันทึกประเภทใดที่มีผลการแข่งขัน/เกมของ bc 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_en": "What was the populati in 2000 for Panlicsian? ",
    "question_th": " ประชากร Panlicsian ในปี 2000 คือเท่าใด",
    "context": "CREATE TABLE table_2144436_1 (population__2000_ INTEGER, barangay VARCHAR)"
  },
  {
    "answer": "SELECT MAX(population__2010_) FROM table_2144436_1 WHERE barangay = \"Minane\"",
    "question_en": "What was the population in 2010 for Minane",
    "question_th": "มินาเนะมีประชากรเท่าไรในปี 2010",
    "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_en": "What is the 2007 population for Corazon de Jesus? ",
    "question_th": " ประชากรของ Corazon de Jesus ในปี 2550 เป็นเท่าใด",
    "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_en": "What is the 2010 population when the 2000 population is 5720? ",
    "question_th": " ประชากรปี 2010 เป็นเท่าใดเมื่อประชากรปี 2000 คือ 5720",
    "context": "CREATE TABLE table_2144436_1 (population__2010_ INTEGER, population__2000_ VARCHAR)"
  },
  {
    "answer": "SELECT rōmaji FROM table_2144389_8 WHERE japanese_translation = \"By Your Side ~Hikari's Theme~ (PopUp.Version)\"",
    "question_en": "Name the romaji by your side ~hikari's theme~ (popup.version)",
    "question_th": "ตั้งชื่อโรมาจิข้างๆ คุณ ~ธีมของฮิคาริ~ (popup.version)",
    "context": "CREATE TABLE table_2144389_8 (rōmaji VARCHAR, japanese_translation VARCHAR)"
  },
  {
    "answer": "SELECT vocalist FROM table_2144389_8 WHERE rōmaji = \"Kaze no Messēji (PokaPoka-Version)\"",
    "question_en": "Name the vocalist for kaze no messēji (pokapoka-version)",
    "question_th": "ตั้งชื่อนักร้องนำของเพลง kaze no Messēji (เวอร์ชั่น pokapoka)",
    "context": "CREATE TABLE table_2144389_8 (vocalist VARCHAR, rōmaji VARCHAR)"
  },
  {
    "answer": "SELECT MIN(_number) FROM table_2144389_8 WHERE japanese_title = \"君のそばで～ヒカリのテーマ～(PopUp.Version)\"",
    "question_en": "Name the least number for  君のそばで～ヒカリのテーマ～(popup.version)",
    "question_th": "ตั้งชื่อตัวเลขที่น้อยที่สุดสำหรับ 君のそばで~ヒカラのテーマ~(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_en": "Name the number of vocalists for  which one ~ is it?",
    "question_th": "บอกชื่อเบอร์นักร้องวงไหน~ ?",
    "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_en": "Name the to par for 20 feb 2005",
    "question_th": "ตั้งชื่อพาร์สำหรับวันที่ 20 กุมภาพันธ์ พ.ศ. 2548",
    "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_en": "Name the number for margin of victory being 3 strokes",
    "question_th": "ตั้งชื่อหมายเลขส่วนต่างของชัยชนะเป็น 3 จังหวะ",
    "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_en": "Name the winning score for 8 feb 2009",
    "question_th": "ตั้งชื่อคะแนนที่ชนะสำหรับวันที่ 8 กุมภาพันธ์ 2552",
    "context": "CREATE TABLE table_21469545_2 (winning_score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT publisher FROM table_21458142_1 WHERE genre = \"Pet-raising simulator\"",
    "question_en": "Who published the title in the pet-raising simulator genre?",
    "question_th": "ใครเป็นผู้เผยแพร่ชื่อในประเภทสัตว์เลี้ยงจำลอง?",
    "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_en": "What's the sales breakdown for Nintendo's Mario Kart DS?",
    "question_th": "รายละเอียดยอดขายของ Mario Kart DS ของ Nintendo เป็นเท่าใด",
    "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_en": "How many copies were sold of the game released on october 23, 2008?",
    "question_th": "เกมที่วางจำหน่ายเมื่อวันที่ 23 ตุลาคม พ.ศ. 2551 ขายได้กี่ชุด",
    "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_en": "What's the sales breakdown of the Nintendo game released on May 15, 2006?",
    "question_th": "ยอดขายของเกม Nintendo ที่วางจำหน่ายเมื่อวันที่ 15 พฤษภาคม พ.ศ. 2549 เป็นอย่างไรบ้าง",
    "context": "CREATE TABLE table_21458142_1 (sales_breakdown VARCHAR, publisher VARCHAR, release_date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(races) FROM table_21457754_2",
    "question_en": "Name the most races",
    "question_th": "ตั้งชื่อเผ่าพันธุ์มากที่สุด",
    "context": "CREATE TABLE table_21457754_2 (races INTEGER)"
  },
  {
    "answer": "SELECT MAX(rr1_pts) FROM table_21457754_2",
    "question_en": "Name the most rr 1 pts",
    "question_th": "ตั้งชื่อ rr มากที่สุด 1 แต้ม",
    "context": "CREATE TABLE table_21457754_2 (rr1_pts INTEGER)"
  },
  {
    "answer": "SELECT COUNT(total_pts) FROM table_21457754_2 WHERE team_name = \"GBR Challenge\"",
    "question_en": "Name the number of total pts for gbr challenge",
    "question_th": "ตั้งชื่อจำนวนคะแนนรวมสำหรับความท้าทาย gbr",
    "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_en": "What is the total number of second place finishes when the city & nation was Chicago, USA?",
    "question_th": "จำนวนผู้เข้าเส้นชัยเป็นอันดับสองทั้งหมดเมื่อเมืองและประเทศคือเมืองชิคาโก สหรัฐอเมริกา เป็นเท่าใด",
    "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_en": "What is the total number of third place finishes when the city & nation was Vancouver, Canada?",
    "question_th": "จำนวนผู้เข้าเส้นชัยเป็นอันดับสามทั้งหมดเมื่อเมืองและประเทศคือเมืองแวนคูเวอร์ ประเทศแคนาดา เป็นเท่าใด",
    "context": "CREATE TABLE table_2146364_2 (third_place INTEGER, city_ VARCHAR, _nation VARCHAR)"
  },
  {
    "answer": "SELECT MIN(third_place) FROM table_2146364_2",
    "question_en": "What is the smallest third place finish?",
    "question_th": "อันดับสามที่เล็กที่สุดจบคืออะไร?",
    "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_en": "What change caused a change of staff in March 9, 1865?",
    "question_th": "การเปลี่ยนแปลงอะไรทำให้เกิดการเปลี่ยนแปลงเจ้าหน้าที่ในวันที่ 9 มีนาคม พ.ศ. 2408",
    "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_en": "Who was the successor for the new seat?",
    "question_th": "ใครเป็นผู้สืบทอดที่นั่งใหม่?",
    "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_en": "What was the reason for change in staff in formal installations on March 15, 1865?",
    "question_th": "อะไรคือสาเหตุของการเปลี่ยนแปลงเจ้าหน้าที่ในสถานประกอบการอย่างเป็นทางการเมื่อวันที่ 15 มีนาคม พ.ศ. 2408?",
    "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_en": "When nathaniel g. taylor (u) is the successor what is the vacator?",
    "question_th": "เมื่อนาธาเนียล จี. เทย์เลอร์ (u) เป็นผู้สืบทอด 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_en": "When william b. campbell (u) is the successor what is the district?",
    "question_th": "เมื่อวิลเลียมบี. แคมป์เบลล์ (u) เป็นผู้สืบทอดอำเภออะไร?",
    "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_en": "When james brooks (d) is the vacator what is the date the successor was seated?",
    "question_th": "เมื่อเจมส์ บรูคส์ (ง) เป็นผู้ว่างงาน ผู้สืบทอดตำแหน่งจะนั่งเมื่อใด?",
    "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_en": "When john w. leftwich (uu) is the successor what is the date the successor was seated?",
    "question_th": "เมื่อจอห์น ว. leftwich (uu) เป็นผู้สืบทอด วันที่ผู้สืบทอดนั่งคือวันที่เท่าไร?",
    "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_en": "When new york 8th is teh district who is the successor?",
    "question_th": "เมื่อนิวยอร์ค 8 เป็นเขตเทห์ ใครเป็นผู้สืบทอด?",
    "context": "CREATE TABLE table_2147588_4 (successor VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT MIN(rr3_pts) FROM table_21489362_2 WHERE rr4_pts = \"20\"",
    "question_en": "When 20 is the rr4 points what is the lowest rr3 points?",
    "question_th": "เมื่อ 20 คือจุด rr4 จุด rr3 ต่ำสุดคือเท่าใด",
    "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_en": "When 70 is the total points what is the rr4 points?",
    "question_th": "เมื่อ 70 คือคะแนนรวม rr4 คืออะไร?",
    "context": "CREATE TABLE table_21489362_2 (rr4_pts VARCHAR, total_pts VARCHAR)"
  },
  {
    "answer": "SELECT won FROM table_21489362_2 WHERE rr1_pts = 3",
    "question_en": "When 3 is the rr1 points what is won score?",
    "question_th": "เมื่อ 3 คือ rr1 คะแนน คะแนนที่ชนะคืออะไร?",
    "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_en": "When spanish challenge is the team name what are the rr1 points?",
    "question_th": "เมื่อ Spanish Challenge ชื่อทีมคือ rr1 แต้มอะไร?",
    "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_en": "Name the innings for 5088 runs scored",
    "question_th": "ตั้งชื่ออินนิ่งสำหรับการทำคะแนนได้ 5,088 รัน",
    "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_en": "Name the matches for mark taylor category:articles with hcards",
    "question_th": "ตั้งชื่อรายการที่ตรงกันสำหรับหมวดหมู่ของมาร์คเทย์เลอร์:บทความที่มี hcards",
    "context": "CREATE TABLE table_21486890_1 (matches INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT MAX(runs_scored) FROM table_21486890_1",
    "question_en": "Name the most runs scored",
    "question_th": "ตั้งชื่อคะแนนวิ่งมากที่สุด",
    "context": "CREATE TABLE table_21486890_1 (runs_scored INTEGER)"
  },
  {
    "answer": "SELECT MIN(matches) FROM table_21486890_1 WHERE not_out = 44",
    "question_en": "Name the least matches for not out being 44",
    "question_th": "ตั้งชื่อการแข่งขันที่น้อยที่สุดโดยที่ไม่เท่ากับ 44",
    "context": "CREATE TABLE table_21486890_1 (matches INTEGER, not_out VARCHAR)"
  },
  {
    "answer": "SELECT nation FROM table_2150068_1 WHERE satellite = \"PAGEOS 1\"",
    "question_en": "What nation was Pageos 1 from?",
    "question_th": "Pageos 1 มาจากประเทศใด",
    "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_en": "What was the launch date for the sattelite with ado that was 4 kg and 3 meters in diameter?",
    "question_th": "วันที่เปิดตัวสำหรับดาวเทียมที่มี Ado ที่มีเส้นผ่านศูนย์กลาง 4 กก. และ 3 เมตรคือเมื่อใด",
    "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_en": "What was the decay for the sattelite that was 180 kg?",
    "question_th": "อะไรคือความเสื่อมสลายของดาวเทียมที่มีน้ำหนัก 180 กิโลกรัม?",
    "context": "CREATE TABLE table_2150068_1 (decay VARCHAR, mass_kg_ VARCHAR)"
  },
  {
    "answer": "SELECT nssdc_id FROM table_2150068_1 WHERE satellite = \"Echo 1\"",
    "question_en": "What is the nssdc id for Echo 1?",
    "question_th": "รหัส nssdc สำหรับ 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_en": "What is the launch date for the sattelite with a nssdc id of 1960-009a?",
    "question_th": "วันที่เปิดตัวสำหรับดาวเทียมที่มีรหัส nssdc เป็น 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_en": "What is the decay for the sattelite with an id that is 1990-081c?",
    "question_th": "การสลายตัวของดาวเทียมที่มีรหัส 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_en": "How many song titles belong to the artist Ratt?",
    "question_th": "ศิลปิน รัตต์ มีชื่อเพลงกี่เพลง?",
    "context": "CREATE TABLE table_21500850_1 (song_title VARCHAR, artist VARCHAR)"
  },
  {
    "answer": "SELECT original_game FROM table_21500850_1 WHERE artist = \"Lynyrd Skynyrd\"",
    "question_en": "What is every original game for the artist Lynyrd Skynyrd?",
    "question_th": "เกมต้นฉบับของศิลปิน 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_en": "What is every song title for the rock genre and Guitar Hero as original game and the artist is Queens of the Stone Age?",
    "question_th": "ทุกชื่อเพลงสำหรับแนวร็อคและ Guitar Hero ในฐานะเกมดั้งเดิมคืออะไร และศิลปินคือ 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_en": "What is every song title for 2007?",
    "question_th": "ชื่อเพลงทั้งหมดในปี 2550 คืออะไร?",
    "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_en": "What was Lambert's song choice in the top 13?",
    "question_th": "เพลงที่แลมเบิร์ตเลือกใน 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_en": "What order did Lambert perform in the top 11?",
    "question_th": "แลมเบิร์ตแสดงลำดับอะไรใน 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_en": "What week was themed disco?",
    "question_th": "สัปดาห์ใดเป็นธีมดิสโก้?",
    "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_en": "What week #(s featured sara bareilles as the original artist?",
    "question_th": "สัปดาห์ไหนที่ #(sara barilles มาเป็นศิลปินต้นฉบับ?",
    "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_en": "What week # featured first solo as the theme?",
    "question_th": "สัปดาห์ใดที่ # มีโซโลชุดแรกเป็นธีม?",
    "context": "CREATE TABLE table_21501564_1 (week__number VARCHAR, theme VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(theme) FROM table_21501564_1 WHERE original_artist = \"Duffy\"",
    "question_en": "How many weeks featured duffy as the original artist?",
    "question_th": "ดัฟฟี่เป็นศิลปินดั้งเดิมเป็นเวลากี่สัปดาห์?",
    "context": "CREATE TABLE table_21501564_1 (theme VARCHAR, original_artist VARCHAR)"
  },
  {
    "answer": "SELECT original_artist FROM table_21501564_1 WHERE result = \"Selected\"",
    "question_en": "Who was the originally artist when Jasmine Murray was selected?",
    "question_th": "ใครคือศิลปินดั้งเดิมเมื่อจัสมิน เมอร์เรย์ได้รับเลือก?",
    "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_en": "With theme the Year They Were Born, what is the song of choice?",
    "question_th": "ถ้าพูดถึงปีที่พวกเขาเกิด คุณจะเลือกเพลงอะไร?",
    "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_en": "With order number 7 and the theme is Motown, who were the original artists?",
    "question_th": "ด้วยลำดับที่ 7 และธีมคือ Motown ใครคือศิลปินดั้งเดิม?",
    "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_en": "With an original artist names Bette Midler, what is the order number?",
    "question_th": "โดยมีศิลปินต้นฉบับชื่อ Bette Midler หมายเลขการสั่งซื้อคืออะไร?",
    "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_en": "With original artist of Tina Turner, what is the week number?",
    "question_th": "กับศิลปินต้นฉบับของ Tina Turner สัปดาห์ที่เท่าไหร่?",
    "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_en": "Who is the original artist with a theme of N/A?",
    "question_th": "ศิลปินต้นฉบับที่มีธีม 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_en": "Name the team for june 16 jeff gordon",
    "question_th": "ตั้งชื่อทีมวันที่ 16 มิถุนายน เจฟฟ์ กอร์ดอน",
    "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_en": "Name the driver for 200 laps 1997",
    "question_th": "ตั้งชื่อนักแข่ง 200 รอบ ปี 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_en": "Name the team for ricky rudd",
    "question_th": "ตั้งชื่อทีมให้ริกกี้ รัดด์",
    "context": "CREATE TABLE table_2150776_1 (team VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT ranking FROM table_21515673_2 WHERE rr2_pts = 4",
    "question_en": "What is the rank when RR2 has 4 points?",
    "question_th": "เมื่อ RR2 มี 4 แต้มอยู่อันดับไหน?",
    "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_en": "How many points does Swedish America's Cup Challenge have for rr1?",
    "question_th": "Swedish America's Cup Challenge มีคะแนนเท่าไหร่สำหรับ 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_en": "Who was the senior US senator in the state whose governor was D. Patrick?",
    "question_th": "ใครคือสมาชิกวุฒิสภาอาวุโสของสหรัฐอเมริกาในรัฐซึ่งมีผู้ว่าการรัฐคือ ดี. แพทริค",
    "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_en": "What's the lower house majority in the state whose Senior senator is J. Shaheen?",
    "question_th": "สมาชิกสภาผู้แทนราษฎรส่วนใหญ่ในรัฐที่มีวุฒิสมาชิกอาวุโสคือเจ. ชาฮีนคือคนใด",
    "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_en": "Who is every name for time(cet) of 09:58?",
    "question_th": "ใครคือชื่อเวลา (cet) ของ 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_en": "What is every time(cet) for the name of Lillehammer 2?",
    "question_th": "ทุกครั้ง (cet) สำหรับชื่อของ 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_en": "Who is every name for time(cet) of 09:03?",
    "question_th": "ใครคือชื่อเวลา (cet) ของ 09:03 ทุกคน?",
    "context": "CREATE TABLE table_21536557_2 (name VARCHAR, time__cet_ VARCHAR)"
  },
  {
    "answer": "SELECT day FROM table_21536557_2 WHERE stage = \"SS11\"",
    "question_en": "Which days have a stage of ss11?",
    "question_th": "วันไหนมีสเตจ 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_en": "What is every time(cet) for a time of 5:04.8?",
    "question_th": "ทุกครั้ง (cet) สำหรับเวลา 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_en": "How many calibers require the type LB/RN?",
    "question_th": "ต้องใช้คาลิเปอร์ประเภท 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_en": "Type FJ/RN/SC is associated with what class?",
    "question_th": "ประเภท FJ/RN/SC เกี่ยวข้องกับคลาสใด?",
    "context": "CREATE TABLE table_21538523_1 (class VARCHAR, type VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_21538523_1 WHERE caliber = \".44 Magnum\"",
    "question_en": "What type of glazing will stop a .44 magnum?",
    "question_th": "กระจกประเภทใดที่จะหยุดยั้ง. 44 แม็กนั่มได้?",
    "context": "CREATE TABLE table_21538523_1 (type VARCHAR, caliber VARCHAR)"
  },
  {
    "answer": "SELECT MIN(shots) FROM table_21538523_1",
    "question_en": "What is the fewest shots a glazing can handle?",
    "question_th": "กระจกสามารถจับภาพได้น้อยที่สุดจำนวนเท่าใด",
    "context": "CREATE TABLE table_21538523_1 (shots INTEGER)"
  },
  {
    "answer": "SELECT range__m_ FROM table_21538523_1 WHERE type = \"FJ/PB/SCP\"",
    "question_en": "What range does type FJ/PB/SCP work at?",
    "question_th": "FJ/PB/SCP ประเภทใดทำงานที่ช่วงใด",
    "context": "CREATE TABLE table_21538523_1 (range__m_ VARCHAR, type VARCHAR)"
  },
  {
    "answer": "SELECT drivetrain FROM table_21530474_1 WHERE engine_code = \"2UR-FSE\"",
    "question_en": "Name the drivetrain for 2ur-fse",
    "question_th": "ตั้งชื่อระบบขับเคลื่อนสำหรับ 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_en": "Name the regions for usf45",
    "question_th": "ตั้งชื่อภูมิภาคสำหรับ 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_en": "Name the model number for usf46",
    "question_th": "ตั้งชื่อหมายเลขรุ่นสำหรับ 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_en": "Name the drivetrain for 1ur-fse for usf41",
    "question_th": "ตั้งชื่อระบบขับเคลื่อนสำหรับ 1ur-fse สำหรับ 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_en": "For the area which was 9.1 in October 2010, what is the figure for October 2012?",
    "question_th": "สำหรับพื้นที่ซึ่งอยู่ที่ 9.1 ในเดือนตุลาคม 2553 ตัวเลขเดือนตุลาคม 2555 เป็นเท่าใด",
    "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_en": "Where is the rate 5.7 in October 2010?",
    "question_th": "อัตรา 5.7 ในเดือนตุลาคม 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_en": "Name the original air date for 9.16 viewers",
    "question_th": "ตั้งชื่อวันออกอากาศเดิมสำหรับผู้ชม 9.16",
    "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_en": "Name the total number of production code for  episode by steve cohen & andrew dettman",
    "question_th": "ตั้งชื่อจำนวนรหัสการผลิตทั้งหมดสำหรับตอนโดย 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_en": "What is the population in millions for 2011 where the HDI for 2011 is 0.453 (low)?",
    "question_th": "จำนวนประชากรเป็นล้านในปี 2554 โดยที่ HDI ในปี 2554 อยู่ที่ 0.453 (ต่ำ)",
    "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_en": "What is the population in millions for 2011 where the GDP (nominal) (billions USD) is 4? ",
    "question_th": " จำนวนประชากรเป็นล้านในปี 2554 โดยที่ GDP (เล็กน้อย) (พันล้านดอลลาร์สหรัฐ) เท่ากับ 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_en": "What is the HDI for 2011 in Tunisia? ",
    "question_th": " HDI สำหรับปี 2554 ในตูนิเซียคืออะไร?",
    "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_en": "What is the GDP (PPP) (USD, per capita) for Algeria? ",
    "question_th": " GDP (PPP) (USD ต่อหัว) สำหรับแอลจีเรียคือเท่าใด",
    "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_en": "Name the number of cab size for 4 medium tanker",
    "question_th": "ตั้งชื่อจำนวนห้องโดยสารสำหรับเรือบรรทุกน้ำมันขนาดกลาง 4 ลำ",
    "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_en": "Name the category for cab size crew and super tanker",
    "question_th": "ตั้งชื่อหมวดหมู่สำหรับลูกเรือขนาดห้องโดยสารและเรือบรรทุกน้ำมันขนาดใหญ่",
    "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_en": "Name the capacity for single cab size 2 medium tanker",
    "question_th": "ตั้งชื่อความจุของเรือบรรทุกน้ำมันขนาดกลางขนาดห้องโดยสารเดี่ยวขนาด 2",
    "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_en": "What school is in Brechin?",
    "question_th": "โรงเรียนอะไรในเบรชิน?",
    "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_en": "How many kids go to Brechin High School?",
    "question_th": "มีเด็กกี่คนที่เข้าเรียนที่ 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_en": "What year did Negro American League join?",
    "question_th": "Negro American League เข้าร่วมในปีใด",
    "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_en": "What year did the team who played at the Scottrade Center leave the city?",
    "question_th": "ทีมที่เล่นที่ Scottrade Center ออกจากเมืองในปีใด",
    "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_en": "How may championships were won by the team that started in 1950?",
    "question_th": "ทีมที่เริ่มในปี 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_en": "How many championships were won for arena football?",
    "question_th": "อารีน่าฟุตบอลคว้าแชมป์ได้กี่สมัย?",
    "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_en": "When samai amari is the asian rider classification how many asian team classifications are there?",
    "question_th": "เมื่อสมัยอมารีเป็นประเภทนักบิดเอเชีย มีประเภททีมเอเชียกี่ประเภท?",
    "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_en": "When 4 is the stage who is the general classification?",
    "question_th": "เมื่อ 4 คือ เวทีใครเป็นประเภททั่วไป?",
    "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_en": "What is the number in season for the episode written by Chris Mitchell and Erik Wiese?",
    "question_th": "หมายเลขในฤดูกาลของตอนที่เขียนโดย Chris Mitchell และ 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_en": "What is the title for episode number in series of 28?",
    "question_th": "ซีรีย์ 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_en": "How many titles were written by Don Shank and Genndy Tartakovsky?",
    "question_th": "Don Shank และ 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_en": "When 3rd, sedgemoor division 1 is the ladies 1st xi what is the mens 3rd xi?",
    "question_th": "เมื่ออันดับที่ 3 เซดจ์มัวร์ดิวิชั่น 1 เป็นฝ่ายหญิงอันดับที่ 1 xi ฝ่ายชายอันดับที่ 3 คืออะไร?",
    "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_en": "When 10th, south west district 1 is the mens 2nd xi what is the ladies 1st xi?",
    "question_th": "เมื่อวันที่ 10 เขตตะวันตกเฉียงใต้ 1 คือชายคนที่ 2 xi ผู้หญิงอันดับที่ 1 คืออะไร?",
    "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_en": "When 5th, south western district 2 is the mens 2nd xi what is the season?",
    "question_th": "เมื่อครั้งที่ 5 เขตตะวันตกเฉียงใต้ 2 เป็นชายที่ 2 xi ฤดูกาลอะไร?",
    "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_en": "When 6th, south division 2 is the mens 1st xi what is the mens 2nd xi?",
    "question_th": "ตอนที่ 6 ภาคใต้ดิวิชั่น 2 คือชายที่ 1 xi อะไรคือชาย xi ที่ 2?",
    "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_en": "Which stage has kourdali as the name?",
    "question_th": "เวทีใดมี kourdali เป็นชื่อ?",
    "context": "CREATE TABLE table_21578303_2 (stage VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT stage FROM table_21578303_2 WHERE time__eet_ = \"15:17\"",
    "question_en": "Which stage has 15:17 as time?",
    "question_th": "สเตจไหนมีเวลา 15:17 น.?",
    "context": "CREATE TABLE table_21578303_2 (stage VARCHAR, time__eet_ VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_21578303_2 WHERE time__eet_ = \"10:46\"",
    "question_en": "What is the time when time is 10:46?",
    "question_th": "เวลา 10:46 น. กี่โมงคะ?",
    "context": "CREATE TABLE table_21578303_2 (time VARCHAR, time__eet_ VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_21578303_2 WHERE stage = \"SS12\"",
    "question_en": "What is the time when ss12 is stage?",
    "question_th": "ss12ขึ้นเวทีกี่โมงคะ?",
    "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_en": "Name the state class for resigned november 3, 1964",
    "question_th": "ตั้งชื่อชนชั้นของรัฐลาออกวันที่ 3 พฤศจิกายน 2507",
    "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_en": "How many champions are shown for the runner-up of stefan edberg?",
    "question_th": "รองแชมป์สเตฟาน เอ็ดเบิร์ก มีแชมป์กี่คน?",
    "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ärryd\" AND champion = \"John McEnroe 7–6, 6–3\"",
    "question_en": "What week was stefan edberg anders järryd was semifinalist and champion is john mcenroe 7–6, 6–3?",
    "question_th": "สเตฟาน เอ็ดเบิร์ก แอนเดอร์ส เจอร์ริด เข้ารอบรองชนะเลิศในสัปดาห์ใด และแชมป์คือ จอห์น แม็คเคนโร 7–6, 6–3",
    "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–2, 6–3\"",
    "question_en": "Who is the runner up for the champion of john mcenroe 6–2, 6–3?",
    "question_th": "ใครคือรองแชมป์ของจอห์น แม็คเคนโร 6–2, 6–3?",
    "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_en": "Who were the  quarterfinalists for the runner-ups of mike de palmer gary donnelly?",
    "question_th": "ใครคือผู้เข้ารอบก่อนรองชนะเลิศสำหรับรองแชมป์ของ ไมค์ เดอ พาลเมอร์ แกรี่ ดอนเนลลี?",
    "context": "CREATE TABLE table_21584646_10 (quarterfinalists VARCHAR, runner_up VARCHAR)"
  },
  {
    "answer": "SELECT quarterfinalists FROM table_21584646_10 WHERE runner_up = \"Jimmy Connors\"",
    "question_en": "Who are the quarterfinalists for runner-up  jimmy connors?",
    "question_th": "ใครคือผู้เข้ารอบก่อนรองชนะเลิศของจิมมี่ คอนเนอร์ส รองชนะเลิศ?",
    "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–2, 6–3\"",
    "question_en": "How many weeks are shown for the champion of john mcenroe 6–2, 6–3?",
    "question_th": "แชมป์ของ john mcenroe 6–2, 6–3 จะแสดงกี่สัปดาห์?",
    "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_en": "What is every reason for change for the date of successors installation is March 16, 1960?",
    "question_th": "อะไรคือสาเหตุของการเปลี่ยนแปลงวันที่ติดตั้งผู้สืบทอดคือวันที่ 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_en": "Who is every vacator if date of successors formal installation is August 8, 1960?",
    "question_th": "ใครคือผู้ว่างงานทุกคน หากวันที่ผู้สืบทอดตำแหน่งอย่างเป็นทางการคือวันที่ 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_en": "Who is every successor for the Washington 3rd District?",
    "question_th": "ใครคือผู้สืบทอดตำแหน่งของ 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_en": "What is every reason for change for the Washington 3rd District?",
    "question_th": "อะไรคือเหตุผลของการเปลี่ยนแปลงสำหรับ 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_en": "Who is every vacator with reason for change as resigned December 31, 1959?",
    "question_th": "ผู้ว่างงานทุกคนโดยมีเหตุผลในการเปลี่ยนแปลงเมื่อลาออกเมื่อวันที่ 31 ธันวาคม 2502 คือใคร?",
    "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_en": "In what district was the successor seated August 31, 1943?",
    "question_th": "ผู้สืบทอดได้นั่ง ณ เขตใดเมื่อวันที่ 31 สิงหาคม พ.ศ. 2486?",
    "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_en": "Who was the successor for the reason for change being \"died January 16, 1944?",
    "question_th": "ใครเป็นผู้สืบทอดตำแหน่งเนื่องมาจากการเปลี่ยนแปลง \"ถึงแก่กรรม 16 มกราคม พ.ศ. 2487?",
    "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_en": "Who was the successor in New York 11th district?",
    "question_th": "ใครเป็นผู้สืบทอดในเขต 11 ของนิวยอร์ก?",
    "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_en": "On what date was James P. Buchanan (d)'s successor seated?",
    "question_th": "ผู้สืบทอดของ James P. Buchanan (d) นั่งเมื่อวันที่ใด",
    "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_en": "How many people vacated to successor Dave E. Satterfield, Jr. (d)?",
    "question_th": "มีกี่คนที่ว่างจากตำแหน่งผู้สืบทอดตำแหน่ง 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_en": "Why did Robert L. Bacon (r) vacate?",
    "question_th": "เหตุใด Robert L. Bacon (r) จึงลาออก",
    "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_en": "Makio Inoue dubbed on which character?",
    "question_th": "มากิโอะ อิโนะอุเอะ พากย์เสียงตัวละครตัวไหน?",
    "context": "CREATE TABLE table_2160215_1 (character VARCHAR, original_japanese VARCHAR)"
  },
  {
    "answer": "SELECT english___manga_uk__ FROM table_2160215_1 WHERE original_japanese = \"Kō Nishimura\"",
    "question_en": "Who was the cast on the English (Manga UK) version if Kō Nishimura acted on the original Japanese?",
    "question_th": "ใครคือนักแสดงในเวอร์ชันภาษาอังกฤษ (มังงะสหราชอาณาจักร) หากโคนิชิมูระแสดงในต้นฉบับภาษาญี่ปุ่น?",
    "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_en": "Who was the original Japanese cast if Sean Barrett acted on the English (Manga UK) version?",
    "question_th": "นักแสดงชาวญี่ปุ่นดั้งเดิมคือใครหาก Sean Barrett แสดงในเวอร์ชันภาษาอังกฤษ ( Manga UK)",
    "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_en": "Name the district for reason for change being died july 4, 1939",
    "question_th": "ตั้งชื่ออำเภอด้วยเหตุผลในการเปลี่ยนแปลงถึงแก่กรรมเมื่อวันที่ 4 กรกฎาคม พ.ศ. 2482",
    "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_en": "Name the number of reason for change on may 11, 1939",
    "question_th": "ระบุจำนวนเหตุผลในการเปลี่ยนแปลงเมื่อวันที่ 11 พฤษภาคม พ.ศ. 2482",
    "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_en": "What were the time and speed for the rider ranked in 12 on Wed, June 3?",
    "question_th": "เวลาและความเร็วของนักบิดอันดับที่ 12 ในวันพุธที่ 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_en": "What is the series number for the Golden Frog?",
    "question_th": "กบทองมีหมายเลขซีรีย์อะไร?",
    "context": "CREATE TABLE table_2161859_1 (series__number VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT artist FROM table_2161859_1 WHERE strip_numbers = \"3932-4031A\"",
    "question_en": "Who is the artist for strip numbers 3932-4031a?",
    "question_th": "ศิลปินแถบหมายเลข 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_en": "who got the first position when  Ehime Shimanami got the third position?",
    "question_th": "ใครได้ตำแหน่งแรกเมื่อเอฮิเมะ ชิมานามิได้ตำแหน่งที่สาม?",
    "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_en": "who got the third position when laranja kyoto got the second position?",
    "question_th": "ใครได้ตำแหน่งที่สามเมื่อ laranja kyoto ได้ตำแหน่งที่สอง?",
    "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_en": "how many persons got the third position whan sanyo electric tokushima got the fourth position?",
    "question_th": "มีกี่คนที่ได้ตำแหน่งที่สาม เมื่อ sanyo electric tokushima ได้ตำแหน่งที่สี่?",
    "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_en": "how many persons got the fourth position when the regional was shikoku?",
    "question_th": "มีกี่คนที่ได้ตำแหน่งที่สี่เมื่อภูมิภาคเป็นชิโกกุ?",
    "context": "CREATE TABLE table_21632864_1 (fourth_place VARCHAR, regional VARCHAR)"
  },
  {
    "answer": "SELECT champions FROM table_21632864_1 WHERE regional = \"Hokushinetsu\"",
    "question_en": "who got the first place when the Japanese Regional Leagues was in hokushinetsu?",
    "question_th": "ใครได้อันดับหนึ่งเมื่อลีกภูมิภาคญี่ปุ่นอยู่ที่โฮคุชิเน็ตสึ?",
    "context": "CREATE TABLE table_21632864_1 (champions VARCHAR, regional VARCHAR)"
  },
  {
    "answer": "SELECT champions FROM table_21632864_1 WHERE fourth_place = \"Fujieda City Government\"",
    "question_en": "who got the first position when fujieda city government got the fourth position?",
    "question_th": "ใครได้ตำแหน่งแรกเมื่อรัฐบาลเมืองฟูจิเอดะได้ตำแหน่งที่สี่?",
    "context": "CREATE TABLE table_21632864_1 (champions VARCHAR, fourth_place VARCHAR)"
  },
  {
    "answer": "SELECT civilians FROM table_21636599_2 WHERE security_forces = \"36\"",
    "question_en": "What are the civilian total when the security force total is 36?",
    "question_th": "จำนวนพลเรือนทั้งหมดเมื่อกองกำลังรักษาความปลอดภัยรวม 36 คนเป็นเท่าใด",
    "context": "CREATE TABLE table_21636599_2 (civilians VARCHAR, security_forces VARCHAR)"
  },
  {
    "answer": "SELECT security_forces FROM table_21636599_2 WHERE civilians = \"202\"",
    "question_en": "What are the security forces when the civilians are 202?",
    "question_th": "กองกำลังรักษาความปลอดภัยเมื่อพลเรือนอายุ 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_en": "How many figures are named for security forces in 1998?",
    "question_th": "มีกี่คนที่ได้รับการตั้งชื่อตามกองกำลังความมั่นคงในปี 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_en": "How many insurgents are there when the total per period is 156?",
    "question_th": "มีผู้ก่อความไม่สงบกี่คน รวมงวดละ 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_en": "How many U.S. viewers watched the episode directed by Frank Waldeck?",
    "question_th": "มีผู้ชมในสหรัฐฯ กี่คนที่ดูตอนที่กำกับโดย 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_en": "How many tournaments were at sime darby lpga malaysia?",
    "question_th": "มีกี่ทัวร์นาเมนท์ที่ไซม์ ดาร์บี้ แอลพีจีเอ มาเลเซีย?",
    "context": "CREATE TABLE table_21649285_2 (no VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT margin_of_victory FROM table_21649285_2 WHERE no = 4",
    "question_en": "Margin of victory on no. 4 was?",
    "question_th": "ขอบแห่งชัยชนะบนหมายเลข 4 คือ?",
    "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_en": "Who was the runner up when the won by 4 strokes?",
    "question_th": "ใครเป็นรองแชมป์เมื่อชนะ 4 จังหวะ?",
    "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_en": "Which film title used in nomination has the year (ceremony) 1990 (63rd)?",
    "question_th": "ภาพยนตร์เรื่องใดที่ใช้ในการเสนอชื่อมีปี (พิธี) 2533 (ครั้งที่ 63)?",
    "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_en": "Who is the director of kon-tiki original title?",
    "question_th": "ใครคือผู้กำกับชื่อดั้งเดิมของ kon-tiki?",
    "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_en": "Which film title used in nomination has vinterkyss as the original title?",
    "question_th": "ชื่อภาพยนตร์เรื่องใดที่ใช้ในการเสนอชื่อมี vinterkyss เป็นชื่อดั้งเดิม",
    "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_en": "What is the date for the tournament McDonald's wpga championship?",
    "question_th": "การแข่งขันชิงแชมป์ wpga ของ McDonald คือวันที่เท่าไหร่?",
    "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_en": "What is the winning score when 5 strokes is the margin of victory?",
    "question_th": "คะแนนชนะเมื่อ 5 จังหวะคือส่วนต่างของชัยชนะเป็นเท่าใด",
    "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_en": "What is the to par with the winning score of 74-67-71-73=285?",
    "question_th": "จะต้องเสมอกับคะแนนชนะ 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_en": "What is the date of the winning score 74-67-71-73=285?",
    "question_th": "คะแนนชนะคือวันที่เท่าไหร่ 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_en": "How many number in series's are written by Greg Haddrick?",
    "question_th": "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_en": "When were the odds of winner 16.66?",
    "question_th": "อัตราต่อรองของผู้ชนะ 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_en": "What was the winning time in the year when the odds of the winner were 2.94?",
    "question_th": "เวลาที่ชนะในปีที่อัตราต่อรองของผู้ชนะคือ 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_en": "What were Gentleman's odds of winner?",
    "question_th": "โอกาสชนะของ Gentleman คืออะไร?",
    "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_en": "How many countries did Utah Bulwark's owner come from?",
    "question_th": "เจ้าของ Utah Bulwark มาจากกี่ประเทศ?",
    "context": "CREATE TABLE table_21676617_1 (country_of_owner VARCHAR, horse VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(horse) FROM table_21676617_1 WHERE year = 1985",
    "question_en": "How many horses are mentioned competing in 1985?",
    "question_th": "มีม้ากี่ตัวที่ถูกกล่าวถึงในการแข่งขันในปี 1985?",
    "context": "CREATE TABLE table_21676617_1 (horse VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT MAX(area__km²_) FROM table_2168295_1 WHERE headquarters = \"Bharatpur\"",
    "question_en": "If the headquarters is Bharatpur, what is the maximum area?",
    "question_th": "ถ้าสำนักงานใหญ่คือภารัตปูร์ พื้นที่สูงสุดคือเท่าใด",
    "context": "CREATE TABLE table_2168295_1 (area__km²_ INTEGER, headquarters VARCHAR)"
  },
  {
    "answer": "SELECT area__km²_ FROM table_2168295_1 WHERE district = \"Chittorgarh\"",
    "question_en": "If the district is Chittorgarh, what is the area?",
    "question_th": "ถ้าอำเภอคือจิตตอร์การห์พื้นที่คืออะไร?",
    "context": "CREATE TABLE table_2168295_1 (area__km²_ VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT headquarters FROM table_2168295_1 WHERE population__2011_ = 3685681",
    "question_en": "If the 2011 population is 3685681, what is the name of the headquarters?",
    "question_th": "ถ้าจำนวนประชากรในปี 2554 คือ 3685681 สำนักงานใหญ่ชื่ออะไร",
    "context": "CREATE TABLE table_2168295_1 (headquarters VARCHAR, population__2011_ VARCHAR)"
  },
  {
    "answer": "SELECT MIN(area__km²_) FROM table_2168295_1 WHERE population__2011_ = 3067549",
    "question_en": "What is the minimum area id the 2011 population is 3067549?",
    "question_th": "รหัสพื้นที่ขั้นต่ำสำหรับประชากรปี 2554 คือ 3067549",
    "context": "CREATE TABLE table_2168295_1 (area__km²_ INTEGER, population__2011_ VARCHAR)"
  },
  {
    "answer": "SELECT population__2011_ FROM table_2168295_1 WHERE headquarters = \"Chittorgarh\"",
    "question_en": "What is the 2011 population if the headquarters is Chittorgarh?",
    "question_th": "ประชากรในปี 2554 คือเท่าใด หากสำนักงานใหญ่คือ Chittorgarh",
    "context": "CREATE TABLE table_2168295_1 (population__2011_ VARCHAR, headquarters VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(municipal_mayor) FROM table_216776_2 WHERE area__km²_ = \"42.66\"",
    "question_en": "How many different municipal mayors were there in the municipality with an area of 42.66 km2?",
    "question_th": "มีนายกเทศมนตรีเทศบาลจำนวนกี่คนในเขตเทศบาลที่มีพื้นที่ 42.66 ตารางกิโลเมตร",
    "context": "CREATE TABLE table_216776_2 (municipal_mayor VARCHAR, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT municipality FROM table_216776_2 WHERE population__2010_ = 26839",
    "question_en": "What municipality had 26839 people living in it in 2010?",
    "question_th": "เทศบาลใดมี 26,839 คนอาศัยอยู่ในปี 2010?",
    "context": "CREATE TABLE table_216776_2 (municipality VARCHAR, population__2010_ VARCHAR)"
  },
  {
    "answer": "SELECT municipality FROM table_216776_2 WHERE pop_density__per_km²_ = \"757.5\"",
    "question_en": "In what municipality were there 757.5 people per km2?",
    "question_th": "ในเขตเทศบาลใดมี 757.5 คนต่อตารางกิโลเมตร?",
    "context": "CREATE TABLE table_216776_2 (municipality VARCHAR, pop_density__per_km²_ VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(population__2010_) FROM table_216776_2 WHERE municipality = \"Cavinti\"",
    "question_en": "How many different counts of the population in Cavinti in 2010 are there?",
    "question_th": "จำนวนประชากรใน Cavinti ในปี 2010 มีจำนวนเท่าใด",
    "context": "CREATE TABLE table_216776_2 (population__2010_ VARCHAR, municipality VARCHAR)"
  },
  {
    "answer": "SELECT pop_density__per_km²_ FROM table_216776_2 WHERE municipal_mayor = \"Boy Quiat\"",
    "question_en": "How many people per km2 are there in the municipality whose mayor is Boy Quiat?",
    "question_th": "ในเขตเทศบาลที่มีนายกเทศมนตรีชื่อ บอย เกียต มีกี่คนต่อตารางกิโลเมตร",
    "context": "CREATE TABLE table_216776_2 (pop_density__per_km²_ VARCHAR, municipal_mayor VARCHAR)"
  },
  {
    "answer": "SELECT _number FROM table_21696800_1 WHERE us_viewers__million_ = \"2.24\"",
    "question_en": "What's the number of the episode seen by 2.24 million people in the US?",
    "question_th": "จำนวนตอนที่มีผู้ชม 2.24 ล้านคนในสหรัฐอเมริกามีจำนวนเท่าใด",
    "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_en": "How many different episode numbers are there for episodes directed by Wayne Rose?",
    "question_th": "มีหมายเลขตอนที่แตกต่างกันกี่ตอนสำหรับตอนที่กำกับโดยเวย์น โรส",
    "context": "CREATE TABLE table_21696800_1 (_number VARCHAR, directed_by VARCHAR)"
  },
  {
    "answer": "SELECT wins FROM table_2169966_1 WHERE starts = 10",
    "question_en": "How many wins does he get when he starts at 10?",
    "question_th": "เขาจะชนะได้กี่ครั้งเมื่อเขาเริ่มที่ 10?",
    "context": "CREATE TABLE table_2169966_1 (wins VARCHAR, starts VARCHAR)"
  },
  {
    "answer": "SELECT MAX(wins) FROM table_2169966_1",
    "question_en": "How many wins does he have?",
    "question_th": "เขามีชัยชนะกี่ครั้ง?",
    "context": "CREATE TABLE table_2169966_1 (wins INTEGER)"
  },
  {
    "answer": "SELECT _percentage_cut FROM table_21690339_1 WHERE gas_storage = \"80% full\"",
    "question_en": "What wast the percent cut for the nation with an 80% full gas storage?",
    "question_th": "เปอร์เซ็นต์ที่ลดลงของประเทศด้วยการจัดเก็บก๊าซเต็ม 80% คืออะไร?",
    "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_en": "What was the gas storage status for the nation that had \"yes\" for alternative fuel?",
    "question_th": "สถานะการจัดเก็บก๊าซของประเทศที่ \"ใช่\" เป็นเชื้อเพลิงทดแทนเป็นอย่างไร",
    "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_en": "What was the percent cunt for the nation that had fuel oil stocks need only for industry as their fuel alternative?",
    "question_th": "เปอร์เซ็นต์หีของประเทศที่มีสต็อกน้ำมันเชื้อเพลิงต้องการเพียงเพื่ออุตสาหกรรมเป็นทางเลือกเชื้อเพลิงคืออะไร?",
    "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_en": "What country had 20% imports from russia?",
    "question_th": "ประเทศใดมีการนำเข้า 20% จากรัสเซีย",
    "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_en": "What country had a 100% cut?",
    "question_th": "ประเทศใดมีการตัด 100%?",
    "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_en": "What network garnered 2.74 million viewers for Supernatural?",
    "question_th": "เครือข่ายใดที่มีผู้ชมเรื่อง Supernatural ถึง 2.74 ล้านคน",
    "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_en": "What season had 2.52 million viewers?",
    "question_th": "ซีซั่นใดมีผู้ชม 2.52 ล้านคน?",
    "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_en": "What is the category for trains numbered 16609/16610?",
    "question_th": "รถไฟหมายเลข 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_en": "What trains have a category of express and a weekly frequency?",
    "question_th": "รถไฟขบวนใดมีประเภทรถด่วนและความถี่รายสัปดาห์",
    "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_en": "What is the train name that has a destination of Tuticorin?",
    "question_th": "รถไฟชื่อใดที่มีจุดหมายปลายทางของ 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_en": "What is the frequency of trains numbered 12671/12672?",
    "question_th": "รถไฟหมายเลข 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_en": "How many destinations have a weekly frequency and are named AC Express?",
    "question_th": "มีจุดหมายปลายทางกี่แห่งที่มีความถี่รายสัปดาห์และชื่อว่า 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_en": "What is the number of frequencies that have a destination of Jaipur?",
    "question_th": "จำนวนความถี่ที่มีจุดหมายปลายทางของ ชัยปุระ คือเท่าใด?",
    "context": "CREATE TABLE table_21716139_1 (frequency VARCHAR, destination VARCHAR)"
  },
  {
    "answer": "SELECT MAX(pick__number) FROM table_21721351_18 WHERE player = \"David Grannis\"",
    "question_en": "What is the pick # for player david grannis?",
    "question_th": "ตัวเลือก # ของนักเตะ เดวิด กรานนิส คืออะไร?",
    "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_en": "Which player belongs to deerfield academy (Massachusetts) college/junior/club team?",
    "question_th": "ผู้เล่นคนไหนที่อยู่ในทีมวิทยาลัย/รุ่นน้อง/สโมสรของ Deerfield Academy (Massachusetts)?",
    "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_en": "Which nationality is kitchener rangers (ohl) college/junior/club team?",
    "question_th": "Kitchener Rangers (ohl) วิทยาลัย/รุ่นน้อง/ทีมสโมสรมีสัญชาติใด",
    "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_en": "Which nationality is player Brian Wilks?",
    "question_th": "ไบรอัน วิลค์ส เป็นผู้เล่นสัญชาติใด",
    "context": "CREATE TABLE table_21721351_18 (nationality VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(position) FROM table_21721351_18 WHERE player = \"Tom Glavine\"",
    "question_en": "How many positions is player Tom Glavine?",
    "question_th": "ทอม กลาวีน นักเตะมีกี่ตำแหน่ง?",
    "context": "CREATE TABLE table_21721351_18 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT directed_by FROM table_21726793_1 WHERE production_code = \"2T5710\"",
    "question_en": "who directed the production code 2t5710?",
    "question_th": "ใครเป็นคนกำกับรหัสการผลิต 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_en": "what is the total number o production code where us viewers is 2.76?",
    "question_th": "จำนวนรวม o รหัสการผลิตโดยที่ผู้ชมของเราคือ 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_en": "who wrote the no 2?",
    "question_th": "ใครเป็นคนเขียนหมายเลข 2?",
    "context": "CREATE TABLE table_21726793_1 (written_by VARCHAR, no VARCHAR)"
  },
  {
    "answer": "SELECT maac FROM table_21756039_1 WHERE overall = \"26-8\"",
    "question_en": "What is the maac when the overall is 26-8?",
    "question_th": "เมื่อสกอร์รวมเป็น 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_en": "How many maac are there that have 14th as the ncaa and the overall is 20-10?",
    "question_th": "มี Maac กี่ตัวที่มีอันดับที่ 14 เป็น ncaa และผลรวมคือ 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_en": "How many overall in the year 2010-2011?",
    "question_th": "โดยรวมในปี 2553-2554 มีทั้งหมดกี่แห่ง?",
    "context": "CREATE TABLE table_21756039_1 (overall VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_21756039_1 WHERE overall = \"29-4\"",
    "question_en": "In which year is the overall 29-4?",
    "question_th": "รวม 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_en": "What is the regular season results for the year 2011-2012?",
    "question_th": "ผลของฤดูกาลปกติสำหรับปี 2554-2555 เป็นอย่างไรบ้าง?",
    "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_en": "How many drivers had a time of 3:09:45?",
    "question_th": "มีคนขับกี่คนที่มีเวลา 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_en": "How many drivers drove 300 laps at average speed of 103.594?",
    "question_th": "มีคนขับกี่คนที่ขับ 300 รอบด้วยความเร็วเฉลี่ย 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_en": "How many dates had an average speed of 102.003?",
    "question_th": "มีกี่วันที่มีความเร็วเฉลี่ย 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_en": "How many laps were driven in 2009?",
    "question_th": "ปี 2552 ขับไปกี่รอบ?",
    "context": "CREATE TABLE table_2175858_1 (laps VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT laps FROM table_2175858_1 WHERE race_time = \"3:03:50\"",
    "question_en": "How many laps were completed in the race with time of 3:03:50?",
    "question_th": "ในการแข่งขันเสร็จสิ้นไปกี่รอบด้วยเวลา 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_en": "How many miles were driven with the average speed at 116.81?",
    "question_th": "วิ่งไปกี่ไมล์ด้วยความเร็วเฉลี่ย 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_en": "What was the season number for production code E2110?",
    "question_th": "หมายเลขฤดูกาลสำหรับรหัสการผลิต 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_en": "What was the original air date for season number 2?",
    "question_th": "ซีซั่นที่ 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_en": "What was the season number episode directed by John David Coles?",
    "question_th": "หมายเลขซีซันที่กำกับโดย 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_en": "What was the number of US Viewers in the episode directed by Steve Shill and having a production code of E2102?",
    "question_th": "จำนวนผู้ชมในสหรัฐอเมริกาในตอนนี้ที่กำกับโดย Steve Shill และมีรหัสการผลิต 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_en": "What was the number of season number entries that had US Viewers of 12.30 million?",
    "question_th": "จำนวนรายการซีซันที่มีผู้ชมในสหรัฐอเมริกา 12.30 ล้านคนคือเท่าใด",
    "context": "CREATE TABLE table_21781578_2 (season_no VARCHAR, us_viewers__millions_ VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_21761882_4 WHERE week = 3",
    "question_en": "What was the date of the game in week 3?",
    "question_th": "วันที่ของเกมในสัปดาห์ที่ 3 คืออะไร?",
    "context": "CREATE TABLE table_21761882_4 (date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT final_score FROM table_21761882_4 WHERE opponent = \"@ Roughriders\"",
    "question_en": "What was the final score when the game was @ roughriders?",
    "question_th": "คะแนนสุดท้ายเมื่อเกมอยู่ที่ @ 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_en": "What was the total number of weeks where the game played Ivor Wynne Stadium?",
    "question_th": "จำนวนสัปดาห์ทั้งหมดที่เกมนี้เล่นกับ Ivor Wynne Stadium คือเท่าใด?",
    "context": "CREATE TABLE table_21761882_4 (week VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_21761882_4 WHERE opponent = \"@ Roughriders\"",
    "question_en": "What was the location for when the opponent was @ roughriders?",
    "question_th": "เมื่อฝ่ายตรงข้ามเป็น @ roughriders อยู่ที่ไหน?",
    "context": "CREATE TABLE table_21761882_4 (location VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT final_score FROM table_21761882_4 WHERE attendance = 25598",
    "question_en": "What was the final score when the attendance was 25598?",
    "question_th": "คะแนนสุดท้ายเมื่อเข้าร่วม 25598 เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_21761882_4 (final_score VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_21761882_4 WHERE date = \"October 6\"",
    "question_en": "What location was the game on October 6?",
    "question_th": "เกมในวันที่ 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_en": "What's the lowest rating with 11.2 million viewers?",
    "question_th": "เรตติ้งต่ำสุดที่มีผู้ชม 11.2 ล้านคนคือเท่าไหร่?",
    "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_en": "When did the season finale ranked at 73 first air?",
    "question_th": "ตอนจบฤดูกาลอยู่ที่ 73 ออกอากาศครั้งแรกเมื่อใด",
    "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_en": "Which season received 10.2 million viewers?",
    "question_th": "ซีซั่นไหนมีผู้ชม 10.2 ล้านคน?",
    "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_en": "When 19/05/2002 is the date of withdrawn what is the name?",
    "question_th": "เมื่อ 19/05/2002 เป็นวันถอนชื่ออะไรคะ?",
    "context": "CREATE TABLE table_21795986_1 (name VARCHAR, withdrawn VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_21795986_1 WHERE original_number = \"2008 T\"",
    "question_en": "When 2008 t is the original number what is the lowest year?",
    "question_th": "เมื่อ พ.ศ. 2551 เป็นตัวเลขเดิม ปีต่ำสุดคือเท่าไร?",
    "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_en": "When  9/07/1999 is the date of withdrawn what is the original number?",
    "question_th": "เมื่อ 9/07/2542 เป็นวันถอน เบอร์เดิมคือเลขอะไร?",
    "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_en": "WHO WAS THE STAGE WINNER IN THE STAGE WHERE MICHAEL ALBASINI WON THE METAS VOLANTES CLASSIFICATION?",
    "question_th": "ใครคือผู้ชนะบนเวทีที่ Michael ALBASINI ชนะการแบ่งประเภท METAS VOLANTES",
    "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_en": "Who got the mountains classification when Michael Albasini won the stage?",
    "question_th": "ใครได้ประเภทภูเขาเมื่อ Michael Albasini ชนะบนเวที?",
    "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_en": "How many people were present at the July 10 game?",
    "question_th": "มีกี่คนที่เข้าร่วมในเกมวันที่ 10 กรกฎาคม?",
    "context": "CREATE TABLE table_21796261_4 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT final_score FROM table_21796261_4 WHERE date = \"July 10\"",
    "question_en": "What was the final score of the game played on July 10?",
    "question_th": "คะแนนสุดท้ายของเกมที่เล่นในวันที่ 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_en": "What's the record achieved in the gamed played at BC Place Stadium?",
    "question_th": "สถิติความสำเร็จในเกมที่เล่นที่ 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_en": "During what week was the July 10 game played?",
    "question_th": "เกมวันที่ 10 กรกฎาคมเล่นในช่วงสัปดาห์ใด?",
    "context": "CREATE TABLE table_21796261_4 (week VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_21796261_4 WHERE location = \"Taylor Field\"",
    "question_en": "When was the game on Taylor Field played?",
    "question_th": "เกมที่ Taylor Field เล่นเมื่อไหร่?",
    "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_en": "Who placed fourth when the winner was Greg Hancock?",
    "question_th": "ใครได้อันดับที่สี่เมื่อผู้ชนะคือ Greg Hancock?",
    "context": "CREATE TABLE table_21808535_1 (winner VARCHAR)"
  },
  {
    "answer": "SELECT runner_up FROM table_21808535_1 WHERE date = \"September 11\"",
    "question_en": "Who was the runner-up on September 11?",
    "question_th": "ใครคือรองชนะเลิศในวันที่ 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_en": "How many rounds were on July 10?",
    "question_th": "วันที่ 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_en": "Name the number of years for 18.5",
    "question_th": "ตั้งชื่อจำนวนปีสำหรับ 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_en": "Name the max top 5 for avg finish being 27.6",
    "question_th": "ตั้งชื่อสูงสุด 5 อันดับแรกสำหรับการจบเฉลี่ยเป็น 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_en": "Name the number of wins for 30 starts",
    "question_th": "ตั้งชื่อจำนวนการชนะ 30 ครั้ง",
    "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_en": "Name the year for  donlavey racing bill davis racing",
    "question_th": "ตั้งชื่อปีสำหรับ 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_en": "Name the starts for 23.7",
    "question_th": "ตั้งชื่อจุดเริ่มต้นสำหรับ 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_en": "Name the position for 23.7 avg start",
    "question_th": "ตั้งชื่อตำแหน่งสำหรับการเริ่มต้นเฉลี่ย 23.7",
    "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_en": "What is the car number for the Chevrolet Monte Carlo that Teresa Earnhardt owns and Paul Menard is her driver?",
    "question_th": "หมายเลขรถของ Chevrolet Monte Carlo ที่ Teresa Earnhardt เป็นเจ้าของคืออะไร และ Paul Menard เป็นคนขับรถของเธอ",
    "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_en": "What type of car does Jeff Fuller drive?",
    "question_th": "เจฟฟ์ ฟูลเลอร์ขับรถประเภทไหน?",
    "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_en": "How many cars does Gregg Mixon own?",
    "question_th": "Gregg Mixon เป็นเจ้าของรถยนต์กี่คัน?",
    "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_en": "Who is Wayne Day's crew chief?",
    "question_th": "หัวหน้าลูกเรือของ Wayne Day คือใคร?",
    "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_en": "What number is on the car that Geoffrey Bodine drives?",
    "question_th": "รถที่เจฟฟรีย์ โบดีนขับอยู่หมายเลขอะไร",
    "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_en": "What episode number in the season is episode 24 in the series?",
    "question_th": "ตอนที่ 24 ของซีรีส์คือตอนที่ 24 ของซีซั่นใด",
    "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_en": "How many episodes in the season were directed by Jeremy Podeswa?",
    "question_th": "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_en": "What is the name of the episode directed by Miguel Arteta?",
    "question_th": "ตอนที่กำกับโดยมิเกล อาร์เตตาชื่ออะไร",
    "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_en": "How many episodes in the series were directed by Alan Taylor?",
    "question_th": "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_en": "How many different teams had an average start of 12.9?",
    "question_th": "มีกี่ทีมที่ออกสตาร์ทเฉลี่ย 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_en": "How high was the amount of winnings (in $) in the year with 15 starts?",
    "question_th": "จำนวนเงินรางวัล (เป็น $) ในปีที่มีการเริ่มต้น 15 ครั้งสูงแค่ไหน?",
    "context": "CREATE TABLE table_2182562_2 (winnings VARCHAR, starts VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(winnings) FROM table_2182562_2 WHERE avg_finish = \"17.4\"",
    "question_en": "How many different amounts of winnings were there for the year when the team had an average finish of 17.4?",
    "question_th": "มีชัยชนะที่แตกต่างกันจำนวนเท่าใดในปีที่ทีมจบสกอร์เฉลี่ย 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_en": "What was the top 5 in the year with an average finish of 8.2?",
    "question_th": "5 อันดับแรกของปีที่มีคะแนนเฉลี่ย 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_en": "What was the position of the team with an average finish of 21.5?",
    "question_th": "ตำแหน่งของทีมที่มีคะแนนเฉลี่ยจบที่ 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_en": "How many years was the position 97th?",
    "question_th": "อยู่ตำแหน่งที่ 97 กี่ปี?",
    "context": "CREATE TABLE table_2182562_1 (year VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(wins) FROM table_2182562_1 WHERE avg_start = \"29.0\"",
    "question_en": "How many wins when the average start is 29.0?",
    "question_th": "ชนะกี่ครั้งเมื่อเริ่มต้นเฉลี่ยคือ 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_en": "What is the average finish when winnings equals $71,200?",
    "question_th": "การจบสกอร์โดยเฉลี่ยเมื่อเงินรางวัลเท่ากับ $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_en": "What year did the winnings equal $281,945?",
    "question_th": "เงินรางวัลที่ชนะรางวัลเท่ากับ 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_en": "What are the top 5 average finishes equalling 40.3?",
    "question_th": "การจบสกอร์เฉลี่ย 5 อันดับแรกที่เท่ากับ 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_en": "Who wrote episode 31 in the series?",
    "question_th": "ใครเป็นคนเขียนตอนที่ 31 ของซีรีส์นี้?",
    "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_en": "What was the date that the episode with a production code of 213 was originally aired?",
    "question_th": "ตอนแรกรหัสการผลิต 213 ออกอากาศวันไหนครับ?",
    "context": "CREATE TABLE table_21831229_3 (original_us_air_date VARCHAR, prod_code VARCHAR)"
  },
  {
    "answer": "SELECT opponents FROM table_2186447_1 WHERE score = \"5–7, 6–7 (4–7)\"",
    "question_en": "Who was playing when the score was 5–7, 6–7 (4–7)?",
    "question_th": "ใครกำลังเล่นอยู่เมื่อสกอร์เป็น 5–7, 6–7 (4–7)?",
    "context": "CREATE TABLE table_2186447_1 (opponents VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT opponents FROM table_2186447_1 WHERE score = \"5–7, 5–7\"",
    "question_en": "Who was playing when the score was 5–7, 5–7?",
    "question_th": "ใครกำลังเล่นอยู่เมื่อสกอร์เป็น 5–7, 5–7?",
    "context": "CREATE TABLE table_2186447_1 (opponents VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(partner) FROM table_2186447_1 WHERE score = \"7–6 (7–4) , 6–3\"",
    "question_en": "How many partners were there when the score was 7–6 (7–4) , 6–3?",
    "question_th": "มีหุ้นส่วนกี่คนเมื่อคะแนนเป็น 7–6 (7–4) , 6–3",
    "context": "CREATE TABLE table_2186447_1 (partner VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_21839208_4 WHERE opponent = \"Stampeders\"",
    "question_en": "What was their record when they played the stampeders?",
    "question_th": "บันทึกของพวกเขาเมื่อพวกเขาเล่น Stampeders คืออะไร?",
    "context": "CREATE TABLE table_21839208_4 (record VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_21839208_4 WHERE week = 11",
    "question_en": "What was their record in week 11?",
    "question_th": "บันทึกของพวกเขาในสัปดาห์ที่ 11 คืออะไร?",
    "context": "CREATE TABLE table_21839208_4 (record VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT MIN(wins) FROM table_2187333_1",
    "question_en": "Name the least wins",
    "question_th": "ตั้งชื่อว่าชนะน้อยที่สุด",
    "context": "CREATE TABLE table_2187333_1 (wins INTEGER)"
  },
  {
    "answer": "SELECT avg_start FROM table_2187333_1 WHERE avg_finish = \"18.3\"",
    "question_en": "Name the avg start for avg finish of 18.3",
    "question_th": "ตั้งชื่อการเริ่มต้นเฉลี่ยสำหรับการสิ้นสุดเฉลี่ยที่ 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_en": "Name the year for #16 roush racing for poles less than smaller 1.0",
    "question_th": "ตั้งชื่อปี #16 roush racing สำหรับเสาน้อยกว่า 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_en": "Name the listen owners for repairone",
    "question_th": "ตั้งชื่อเจ้าของการฟังสำหรับการซ่อมแซม",
    "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_en": "Name the trucks for scott neal",
    "question_th": "ตั้งชื่อรถบรรทุกให้สก็อตต์ นีล",
    "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_en": "Name the listed owners for brevak racing",
    "question_th": "ตั้งชื่อเจ้าของรายชื่อสำหรับ 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_en": "Name the crew chief for ricky craven",
    "question_th": "ตั้งชื่อหัวหน้าลูกเรือให้กับ 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_en": "Name the drivers for superchips",
    "question_th": "ตั้งชื่อไดรเวอร์สำหรับซูเปอร์ชิป",
    "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_en": "When was Viva Cuba submitted?",
    "question_th": "Viva Cuba ถูกส่งเมื่อใด?",
    "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_en": "Name the name for 15 yield",
    "question_th": "ตั้งชื่อให้ผลตอบแทน 15 รายการ",
    "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_en": "What is the rank of the company known for retailing?",
    "question_th": "บริษัทที่เป็นที่รู้จักในเรื่องการค้าปลีกอยู่ในอันดับที่เท่าไหร่?",
    "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_en": "What is the rank for Murphy Oil?",
    "question_th": "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_en": "Where is the company with estimated revenue of 33.3 billion headquartered?",
    "question_th": "บริษัทที่มีรายได้ประมาณ 33.3 พันล้าน มีสำนักงานใหญ่อยู่ที่ไหน?",
    "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_en": "What is the national rank of Windstream?",
    "question_th": "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_en": "What is the state rank of the company with 6.8 billion in revenue?",
    "question_th": "อันดับของรัฐของบริษัทที่มีรายได้ 6.8 พันล้านคืออะไร?",
    "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_en": "Name the entrant for benedicto campos",
    "question_th": "ตั้งชื่อผู้เข้าประกวด Benedicto Campos",
    "context": "CREATE TABLE table_21977704_1 (entrant VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT no FROM table_21977704_1 WHERE entrant = \"Automóvil Club Argentino\" AND driver = \"Juan Manuel Fangio\"",
    "question_en": "Name the number for  automóvil club argentino for juan manuel fangio",
    "question_th": "ตั้งชื่อหมายเลขของ automóvil club argentino สำหรับฮวน มานูเอล ฟานจิโอ",
    "context": "CREATE TABLE table_21977704_1 (no VARCHAR, entrant VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT MAX(no) FROM table_21977704_1 WHERE entrant = \"Automóvil Club Argentino\" AND driver = \"Benedicto Campos\"",
    "question_en": "Name the most number for automóvil club argentino for benedicto campos",
    "question_th": "ตั้งชื่อหมายเลขที่มากที่สุดสำหรับ automóvil club argentino สำหรับ 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_en": "Name the driver for talbot l6",
    "question_th": "ตั้งชื่อไดรเวอร์สำหรับ talbot l6",
    "context": "CREATE TABLE table_21977704_1 (driver VARCHAR, engine VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_21977704_1 WHERE driver = \"Alberto Ascari\"",
    "question_en": "Name the constructor for alberto ascari",
    "question_th": "ตั้งชื่อตัวสร้างสำหรับ alberto ascari",
    "context": "CREATE TABLE table_21977704_1 (constructor VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT chassis FROM table_21977704_1 WHERE constructor = \"Alta\"",
    "question_en": "Name the chassis for alta",
    "question_th": "ตั้งชื่อแชสซีสำหรับอัลตา",
    "context": "CREATE TABLE table_21977704_1 (chassis VARCHAR, constructor VARCHAR)"
  },
  {
    "answer": "SELECT MIN(no) FROM table_21977627_1 WHERE chassis = \"Maserati 4CL\"",
    "question_en": "The Maserati 4cl's minimum no was?",
    "question_th": "ขั้นต่ำของ Maserati 4cl ไม่มีคือ?",
    "context": "CREATE TABLE table_21977627_1 (no INTEGER, chassis VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(entrant) FROM table_21977627_1 WHERE driver = \"Yves Giraud-Cabantous\"",
    "question_en": "How many entrants was yves giraud-cabantous?",
    "question_th": "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_en": "What chasis did the maserati l6s have?",
    "question_th": "Maserati l6s มี chasis อะไรบ้าง?",
    "context": "CREATE TABLE table_21977627_1 (chassis VARCHAR, engine VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(driver) FROM table_21977627_1 WHERE entrant = \"Bob Gerard Racing\"",
    "question_en": "How many drivers did Bob Gerard Racing have?",
    "question_th": "Bob Gerard Racing มีคนขับกี่คน?",
    "context": "CREATE TABLE table_21977627_1 (driver VARCHAR, entrant VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(pts_agst) FROM table_21991074_1 WHERE points = 7",
    "question_en": "For the team with 7 points, how many points were scored against this season?",
    "question_th": "สำหรับทีมที่มี 7 แต้ม ฤดูกาลนี้ทำได้กี่แต้ม?",
    "context": "CREATE TABLE table_21991074_1 (pts_agst VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT MAX(pts_agst) FROM table_21991074_1",
    "question_en": "What is the maximum number of points scored against?",
    "question_th": "คะแนนสูงสุดที่ทำได้คือเท่าไร?",
    "context": "CREATE TABLE table_21991074_1 (pts_agst INTEGER)"
  },
  {
    "answer": "SELECT average FROM table_21991074_1 WHERE club = \"Chesterfield Spires\"",
    "question_en": "What is Chesterfield Spires average?",
    "question_th": "ค่าเฉลี่ยของเชสเตอร์ฟิลด์ สไปร์สอยู่ที่เท่าไร?",
    "context": "CREATE TABLE table_21991074_1 (average VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(january__) AS °c_ FROM table_21980_1 WHERE july__°c_ = \"22/13\"",
    "question_en": "What is the total number of January (°C) temperatures when the July (°C) temperatures were 22/13?",
    "question_th": "เดือนมกราคม (°C) อุณหภูมิในเดือนกรกฎาคม (°C) อยู่ที่ 22/13 มีจำนวนเท่าใด",
    "context": "CREATE TABLE table_21980_1 (january__ VARCHAR, july__°c_ VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(january__) AS °c_ FROM table_21980_1 WHERE july__°c_ = \"23/15\"",
    "question_en": "What is the total number of January (°C) temperatures when the July (°C) temperatures were 23/15?",
    "question_th": "เดือนมกราคม (°C) อุณหภูมิในเดือนกรกฎาคม (°C) อยู่ที่ 23/15 มีจำนวนเท่าใด",
    "context": "CREATE TABLE table_21980_1 (january__ VARCHAR, july__°c_ VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_21980_1 WHERE january__°f_ = \"30/17\"",
    "question_en": "In what location were the January (°F) temperatures 30/17?",
    "question_th": "อุณหภูมิเดือนมกราคม (°F) 30/17 อยู่ที่ตำแหน่งใด",
    "context": "CREATE TABLE table_21980_1 (location VARCHAR, january__°f_ VARCHAR)"
  },
  {
    "answer": "SELECT july__°c_ FROM table_21980_1 WHERE july__°f_ = \"71/55\"",
    "question_en": "What were the  July (°C) temperatures when the July (°F) temperatures were 71/55?",
    "question_th": "อุณหภูมิเดือนกรกฎาคม (°C) เป็นอย่างไร เมื่ออุณหภูมิเดือนกรกฎาคม (°F) อยู่ที่ 71/55",
    "context": "CREATE TABLE table_21980_1 (july__°c_ VARCHAR, july__°f_ VARCHAR)"
  },
  {
    "answer": "SELECT january__°f_ FROM table_21980_1 WHERE location = \"Corner Brook\"",
    "question_en": "What were the  January (°F) temperatures in the Corner Brook location?",
    "question_th": "อุณหภูมิเดือนมกราคม (°F) ในตำแหน่ง Corner Brook คืออะไร?",
    "context": "CREATE TABLE table_21980_1 (january__°f_ VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT MAX(pts_agst) FROM table_21991074_3",
    "question_en": "Name the most points agst",
    "question_th": "ตั้งชื่อคะแนนมากที่สุด agst",
    "context": "CREATE TABLE table_21991074_3 (pts_agst INTEGER)"
  },
  {
    "answer": "SELECT MIN(lost) FROM table_21991074_3",
    "question_en": "Name the least lost",
    "question_th": "ชื่อที่หายไปน้อยที่สุด",
    "context": "CREATE TABLE table_21991074_3 (lost INTEGER)"
  },
  {
    "answer": "SELECT written_by FROM table_21979779_1 WHERE us_viewers__million_ = \"3.07\"",
    "question_en": "who are the writers of the episode that had 3.07 millions of North American spectators?",
    "question_th": "ใครคือคนเขียนบทที่มีผู้ชมในอเมริกาเหนือถึง 3.07 ล้านคน?",
    "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_en": "what is the biggest series episode number whose production code is 2t7211?",
    "question_th": "หมายเลขตอนของซีรีส์ที่ใหญ่ที่สุดซึ่งมีรหัสการผลิตคือ 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_en": "what is the smallest series episode number whose production code is 2t7211?",
    "question_th": "หมายเลขตอนของซีรีส์ที่เล็กที่สุดซึ่งมีรหัสการผลิตคือ 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_en": "when was the premiere of the episode where the amount of North American spectators was 1.76 millions?",
    "question_th": "ตอนที่ยอดผู้ชมในอเมริกาเหนือเปิดตัวเมื่อไรคือ 1.76 ล้านคน?",
    "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_en": "how many maximum series number have 2apx05 prod. code.",
    "question_th": "จำนวนอนุกรมสูงสุดที่มี 2apx05 prod. รหัส.",
    "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_en": "What are all the title directed by reginald hudlin",
    "question_th": "เรจินัลด์ ฮัดลิน กำกับโดยเรจินัลด์ ฮัดลิน มีชื่อเรื่องว่าอะไร",
    "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_en": "reginald hudlin directed how many written by.",
    "question_th": "เรจินัลด์ ฮัดลินกำกับว่ามีคนเขียนบทกี่คน",
    "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_en": "Who wore the episode with the production code of 1apx11?",
    "question_th": "ใครใส่ตอนที่มีรหัสการผลิต 1apx11 บ้าง?",
    "context": "CREATE TABLE table_21994729_2 (written_by VARCHAR, prod_code VARCHAR)"
  },
  {
    "answer": "SELECT total FROM table_21995420_9 WHERE rank = 11",
    "question_en": "If the rank is 11, what is the total amount?",
    "question_th": "ถ้าอันดับ 11 มียอดรวมเท่าไหร่?",
    "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_en": "If the school is Central Colleges of the Philippines CCP Bobcats, what is the stunts number?",
    "question_th": "หากโรงเรียนเป็น Central Colleges of the Philippines CCP Bobcats หมายเลขการแสดงผาดโผนคือเท่าใด",
    "context": "CREATE TABLE table_21995420_9 (stunts VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT 08 AS _pts FROM table_22011138_7 WHERE pos = 3",
    "question_en": "If the POS is 3, what is the 08 points?",
    "question_th": "ถ้า POS คือ 3 แล้ว 08 จุดคือเท่าใด",
    "context": "CREATE TABLE table_22011138_7 (pos VARCHAR)"
  },
  {
    "answer": "SELECT 08 AS _pts FROM table_22011138_7 WHERE team = \"Rubio Ñú\"",
    "question_en": "If the team is Rubio ñú, what is the 08 points?",
    "question_th": "ถ้าทีมคือ รูบิโอ นู 08 แต้มคือเท่าไร?",
    "context": "CREATE TABLE table_22011138_7 (team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(total_pts) FROM table_22011138_7 WHERE avg = \"1.2803\"",
    "question_en": "If the average is 1.2803, what is the total points maximum?",
    "question_th": "ถ้าค่าเฉลี่ยอยู่ที่ 1.2803 คะแนนรวมสูงสุดคือเท่าใด",
    "context": "CREATE TABLE table_22011138_7 (total_pts INTEGER, avg VARCHAR)"
  },
  {
    "answer": "SELECT total_pld FROM table_22011138_7 WHERE pos = 4",
    "question_en": "If the POS is 4, what is the total PLD?",
    "question_th": "หาก POS คือ 4 PLD ทั้งหมดคือเท่าใด",
    "context": "CREATE TABLE table_22011138_7 (total_pld VARCHAR, pos VARCHAR)"
  },
  {
    "answer": "SELECT team_name FROM table_22014431_3 WHERE total = \"243\"",
    "question_en": "What is the team name when 243 is the total?",
    "question_th": "ชื่อทีมเมื่อ 243 คือผลรวม?",
    "context": "CREATE TABLE table_22014431_3 (team_name VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT team_name FROM table_22014431_3 WHERE tumbling = \"44.5\"",
    "question_en": "Which team names have 44.5 for tumbling?",
    "question_th": "ชื่อทีมไหนมี 44.5 สำหรับการล้ม?",
    "context": "CREATE TABLE table_22014431_3 (team_name VARCHAR, tumbling VARCHAR)"
  },
  {
    "answer": "SELECT total FROM table_22014431_3 WHERE tosses_pyramids = \"44\"",
    "question_en": "What is the total if 44 is tosses/pyramids?",
    "question_th": "ถ้า 44 เป็นการทอย/ปิรามิด จะมีผลรวมเป็นเท่าใด",
    "context": "CREATE TABLE table_22014431_3 (total VARCHAR, tosses_pyramids VARCHAR)"
  },
  {
    "answer": "SELECT deductions FROM table_22014431_3 WHERE tosses_pyramids = \"56.5\"",
    "question_en": "How many deductions have 56.5 as tosses/pyramids?",
    "question_th": "การหักเงิน 56.5 เป็นการทอย/ปิรามิดมีกี่ครั้ง?",
    "context": "CREATE TABLE table_22014431_3 (deductions VARCHAR, tosses_pyramids VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(rank) FROM table_22014431_3 WHERE tumbling = \"36.5\"",
    "question_en": "What is the rank when 36.5 is tumbling?",
    "question_th": "เมื่อ 36.5 ร่วงลงมาอยู่อันดับไหน?",
    "context": "CREATE TABLE table_22014431_3 (rank VARCHAR, tumbling VARCHAR)"
  },
  {
    "answer": "SELECT MAX(rank) FROM table_22014431_3 WHERE tosses_pyramids = \"64.5\"",
    "question_en": "What is the rank when 64.5 is tosses/pyramids?",
    "question_th": "อันดับคือเท่าไรเมื่อ 64.5 คือการโยน/ปิรามิด?",
    "context": "CREATE TABLE table_22014431_3 (rank INTEGER, tosses_pyramids VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(outcome) FROM table_2201724_2 WHERE championship = \"French championships\"",
    "question_en": "How many different outcomes of the French Championships were there?",
    "question_th": "ผลการแข่งขัน French Championships มีกี่ผลที่แตกต่างกัน?",
    "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_en": "How many different final scores were there in 1963?",
    "question_th": "ในปี 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_en": "Who directed the film titled 'Steam of Life'?",
    "question_th": "ใครเป็นผู้กำกับภาพยนตร์เรื่อง '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_en": "What year was the ceremony where the film 'Tummien Perhosten Koti' was submitted?",
    "question_th": "พิธีส่งภาพยนตร์เรื่อง 'ทุมเมียน เปอร์โฮสเตน โกติ' จัดขึ้นในปีใด?",
    "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_en": "What are the results for the film titled 'Joki'?",
    "question_th": "ผลลัพธ์ของภาพยนตร์เรื่อง 'โจกิ' เป็นอย่างไรบ้าง?",
    "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_en": "What was the domestic box office for the film that had a foreign box office of $26,600,000?",
    "question_th": "บ็อกซ์ออฟฟิศในประเทศสำหรับภาพยนตร์เรื่องนี้ที่มีบ็อกซ์ออฟฟิศต่างประเทศอยู่ที่ 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_en": "What was the domestic box office for \"House on Haunted Hill\"?",
    "question_th": "บ็อกซ์ออฟฟิศในประเทศของ \"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_en": "What was the budget for \"Thirteen Ghosts\"?",
    "question_th": "งบประมาณสำหรับ \"สิบสามผี\" คือเท่าไร?",
    "context": "CREATE TABLE table_2203760_4 (budget VARCHAR, film VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_22043925_1 WHERE location = \"Adelaide\"",
    "question_en": "What is every school for the Adelaide location?",
    "question_th": "โรงเรียนทุกแห่งในแอดิเลดมีอะไรบ้าง?",
    "context": "CREATE TABLE table_22043925_1 (school VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(founded) FROM table_22043925_1 WHERE enrolment = 850",
    "question_en": "How many values for founded when enrollment is 850?",
    "question_th": "มูลค่าที่ก่อตั้งเมื่อลงทะเบียนคือ 850 มีกี่ค่า",
    "context": "CREATE TABLE table_22043925_1 (founded VARCHAR, enrolment VARCHAR)"
  },
  {
    "answer": "SELECT denomination FROM table_22043925_1 WHERE school = \"Seymour College\"",
    "question_en": "What is every denomination for the school Seymour college?",
    "question_th": "แต่ละนิกายของโรงเรียน Seymour College คืออะไร?",
    "context": "CREATE TABLE table_22043925_1 (denomination VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_22050544_3 WHERE event__number = \"38M\"",
    "question_en": "Event number 38m was held on which date? ",
    "question_th": " งานหมายเลข 38m จัดขึ้นวันไหน?",
    "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_en": "Who won the $109 no limit hold'em w/rebuys [turbo]?",
    "question_th": "ใครชนะการถือครองแบบไม่จำกัดจำนวน $109 ด้วยการซื้อซ้ำ [เทอร์โบ]?",
    "context": "CREATE TABLE table_22050544_3 (winner VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_22050544_3 WHERE entries = \"25,883\"",
    "question_en": "Which event had 25,883 entries? ",
    "question_th": " งานใดมี 25,883 รายการ?",
    "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_en": "How many categories for elapsed time exist for the $16.50 fixed-limit badugi game?",
    "question_th": "มีกี่หมวดหมู่สำหรับเวลาที่ผ่านไปสำหรับเกม badugi แบบจำกัดราคา $16.50",
    "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_en": "What year did jaroslav vojtek category:articles with hcards Direct?",
    "question_th": "jaroslav vojtek จัดหมวดหมู่:บทความที่มี 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_en": "What was the result for Gypsy?",
    "question_th": "ผลลัพธ์ของยิปซีคืออะไร?",
    "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_en": "HOw many films did martin repka category:articles with hcards direct?",
    "question_th": "Martin Repka มีภาพยนตร์กี่เรื่องที่หมวดหมู่:บทความที่มี hcards กำกับโดยตรง",
    "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_en": "What was the result for City of the Sun?",
    "question_th": "ผลลัพธ์ของเมืองแห่งดวงอาทิตย์คืออะไร?",
    "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_en": "What was the language for the movie \"Late Bloomers\"?",
    "question_th": "ภาพยนตร์เรื่อง \"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_en": "How many original titles were listed as \"If the Sun Never Returns\"?",
    "question_th": "มีชื่อดั้งเดิมกี่ชื่อที่ถูกระบุว่าเป็น \"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_en": "What was the language of \"Mein Name Ist Bach\"?",
    "question_th": "\"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_en": "What was the year for the film \"Vitus\"?",
    "question_th": "ภาพยนตร์เรื่อง \"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_en": "How many films are titled \"Dans la Ville Blanche\"?",
    "question_th": "มีภาพยนตร์กี่เรื่องที่มีชื่อว่า \"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_en": "How many of the writers had 5.35 viewers?",
    "question_th": "นักเขียนกี่คนมีผู้ชม 5.35 คน?",
    "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_en": "What was the elapsed time for the championship that had $9,377.42 in prize money? ",
    "question_th": " เวลาที่ผ่านไปสำหรับการแข่งขันชิงแชมป์ที่มีเงินรางวัล $9,377.42 คืออะไร?",
    "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_en": "What was the prize pool for the event number 27H? ",
    "question_th": " เงินรางวัลรวมสำหรับกิจกรรมหมายเลข 27H คืออะไร?",
    "context": "CREATE TABLE table_22050544_4 (prize VARCHAR, event__number VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_22050544_4 WHERE event__number = \"8M\"",
    "question_en": "What is the event name with the number 8M? ",
    "question_th": " ชื่อของงานหมายเลข 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_en": "Name the total number 1980 mil for soviet union",
    "question_th": "ตั้งชื่อจำนวนรวม 1980 ล้านสำหรับสหภาพโซเวียต",
    "context": "CREATE TABLE table_22071705_6 (country VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(languages) FROM table_22073745_1 WHERE film_title_used_in_nomination = \"Elles\"",
    "question_en": "How many languages have elles as the film title used in nomination?",
    "question_th": "ชื่อภาพยนตร์ที่ใช้ในการเสนอชื่อมี elles กี่ภาษา?",
    "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_en": "How many languages is refractaire as the film title used in nomination?",
    "question_th": "ชื่อภาพยนตร์ที่ใช้ในการเสนอชื่อมีกี่ภาษา refractaire?",
    "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_en": "How many languages have le roman de renart as the original title?",
    "question_th": "le roman de renart เป็นชื่อดั้งเดิมมีกี่ภาษา",
    "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_en": "Who is the director of the original title perl oder pica?",
    "question_th": "ใครเป็นผู้กำกับของชื่อดั้งเดิม 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_en": "What is the result of the 2005 (78th) year ceremony?",
    "question_th": "พิธีพุทธาภิเษก ๒๕๔๘ (๗๘) มีผลอย่างไร?",
    "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_en": "What is the title that has 14.59 u.s. viewers (millions)?",
    "question_th": "ชื่อเรื่องที่มีผู้ชม 14.59 us (ล้าน) คืออะไร?",
    "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_en": "What is the title that had 13.59 u.s. viewers  (millions)?",
    "question_th": "ชื่ออะไรที่มีผู้ชม 13.59 คน (ล้านคน)?",
    "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_en": "If the earning amount is $309,886, what is the money list ranking?",
    "question_th": "หากรายได้อยู่ที่ 309,886 ดอลลาร์ การจัดอันดับรายการเงินจะเป็นอย่างไร",
    "context": "CREATE TABLE table_22081847_1 (money_list_rank VARCHAR, earnings__$_ VARCHAR)"
  },
  {
    "answer": "SELECT MAX(wins) FROM table_22081847_1",
    "question_en": "What was the maximum number of wins?",
    "question_th": "จำนวนชัยชนะสูงสุดคือเท่าใด?",
    "context": "CREATE TABLE table_22081847_1 (wins INTEGER)"
  },
  {
    "answer": "SELECT scoring_average FROM table_22081847_1 WHERE year = 2010",
    "question_en": "If the year is 2010, what was the average score?",
    "question_th": "ถ้าปี 2553 มีคะแนนเฉลี่ยเท่าไร?",
    "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_en": "How many times did Tim Macrow and Joey Foster both got the fastest lap and pole position respectively?",
    "question_th": "Tim Macrow และ Joey Foster ทั้งคู่ได้ตำแหน่งรอบและโพลโพลที่เร็วที่สุดกี่ครั้งตามลำดับ?",
    "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_en": "What was the winning team where Tim Macrow won the fastest lap on Queensland Raceway circuit?",
    "question_th": "ทีมใดที่ชนะซึ่ง Tim Macrow ชนะรอบที่เร็วที่สุดในสนาม 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_en": "What's the series number of the episode whose writer is David North?",
    "question_th": "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_en": "What's the series number of the episode seen by 17.04 million people in the US?",
    "question_th": "หมายเลขซีรีส์ของตอนที่มีผู้ชม 17.04 ล้านคนในสหรัฐอเมริกาคือเท่าใด",
    "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_en": "What's the title of the episode first seen by 18.15 million people in the US?",
    "question_th": "ชื่อตอนที่มีผู้ชม 18.15 ล้านคนในสหรัฐอเมริกาเห็นครั้งแรกชื่ออะไร",
    "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_en": "How many millions of people in the US saw the episode with series number 103?",
    "question_th": "มีกี่ล้านคนในสหรัฐอเมริกาที่ดูตอนที่มีซีรีส์หมายเลข 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_en": "What number episode in the series was watched by 15.89 million U.S. viewers? ",
    "question_th": " มีผู้ชมชาวอเมริกันจำนวน 15.89 ล้านคนรับชมตอนใดในซีรีส์นี้",
    "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_en": "What is the title of the episode directed by William Webb? ",
    "question_th": "ตอนที่กำกับโดย 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_en": "What was the final score when River Plate was the runner-up?",
    "question_th": "คะแนนสุดท้ายเมื่อริเวอร์เพลทเป็นรองแชมป์คืออะไร?",
    "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_en": "What was spent per voter when total amount spent was 210,280,000?",
    "question_th": "ใช้จ่ายต่อผู้มีสิทธิเลือกตั้งเท่าใดเมื่อยอดใช้จ่ายทั้งหมดคือ 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_en": "What was spent per voter when the spent per vote was 20.07?",
    "question_th": "การใช้จ่ายต่อผู้มีสิทธิเลือกตั้งจำนวนเท่าใดเมื่อการใช้จ่ายต่อการลงคะแนนคือ 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_en": "Between November 25–30, 2008 the sellout rate was at 75%, indicating that the ration between shows to sellout was what?",
    "question_th": "ระหว่างวันที่ 25–30 พฤศจิกายน พ.ศ. 2551 อัตราการขายอยู่ที่ 75% บ่งชี้ว่าอัตราส่วนระหว่างรายการต่อการขายคือเท่าไร?",
    "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_en": "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? ",
    "question_th": " ในช่วงที่ยอดขายรวมของ \"The Show Girl Must Go On\" สูงถึง 2,628,457 ดอลลาร์ ตัวเลขที่แสดงสำหรับตั๋วที่ขาย/มีจำหน่ายในบ็อกซ์ออฟฟิศเป็นเท่าใด",
    "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_en": "Which specific dates encompass the time period when \"The Show Girl Must Go On\" showed a gross sales figure total of $2,877,906?",
    "question_th": "วันที่ใดที่รวมช่วงเวลาที่ \"The Show Girl Must Go On\" มียอดขายรวมอยู่ที่ 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_en": "What year and the corresponding ceremony was the english titled movie \"time out\" submitted?",
    "question_th": "มีการส่งภาพยนตร์ชื่อภาษาอังกฤษเรื่อง \"time out\" ในปีใดและในพิธีที่เกี่ยวข้องหรือไม่",
    "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_en": "How many english titles were directed by carlos moreno?",
    "question_th": "คาร์ลอส โมเรโน กำกับภาพยนตร์ภาษาอังกฤษกี่เรื่อง?",
    "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_en": "What is the rank # of kelli miller the winning pitcher?",
    "question_th": "อันดับ # ของ kelli miller เหยือกที่ชนะคืออะไร?",
    "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_en": "How many number of site have May 1, 2004 as the date?",
    "question_th": "มีกี่ไซต์ที่มีวันที่ 1 พฤษภาคม 2547 เป็นวันที่?",
    "context": "CREATE TABLE table_22098274_1 (site VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_22098274_1 WHERE site = \"USF Softball Field • Tampa, FL\" AND result = \"W4-0\"",
    "question_en": "At what time is the site usf softball field • tampa, fl and w4-0 is the result?",
    "question_th": "ผลการแข่งขันที่สนาม usf softball • แทมปา ชั้น และ w4-0 ในเวลาใด?",
    "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_en": "What was the result for the film with the English name of Morning Undersea? ",
    "question_th": " ผลลัพธ์ของภาพยนตร์เรื่องนี้ที่ใช้ชื่อภาษาอังกฤษว่า 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_en": "What was the result of the film with the Portuguese title, Um Filme Falado? ",
    "question_th": " อะไรคือผลลัพธ์ของภาพยนตร์เรื่องนี้ที่ใช้ชื่อภาษาโปรตุเกสว่า 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_en": "What is the Portuguese name of the film who's English title is, Belle Toujours? ",
    "question_th": " ชื่อภาษาโปรตุเกสของภาพยนตร์ที่มีชื่อภาษาอังกฤษว่า 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_en": "What is every result for the ceremony year of 2007 (80th)?",
    "question_th": "ผลพิธีประจำปี 2550 (ปีที่ 80) เป็นอย่างไร?",
    "context": "CREATE TABLE table_22128871_1 (result VARCHAR, year__ceremony_ VARCHAR)"
  },
  {
    "answer": "SELECT english_title FROM table_22128871_1 WHERE result = \"Nominee\"",
    "question_en": "What is every English title for the result of nominee?",
    "question_th": "ชื่อภาษาอังกฤษสำหรับผลลัพธ์ของผู้ได้รับการเสนอชื่อคืออะไร?",
    "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_en": "How many directors have vietnamese titles of Gate, Gate, Paragate?",
    "question_th": "มีกรรมการกี่คนที่มีตำแหน่งภาษาเวียดนามของ 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_en": "What is every ceremony year for the result of nominee?",
    "question_th": "ทุกปีพิธีสำหรับผลการเสนอชื่อคืออะไร?",
    "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_en": "Who was the pilot of max altitude of 55.9 miles?",
    "question_th": "ใครคือนักบินที่ระดับความสูงสูงสุด 55.9 ไมล์?",
    "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_en": "What is the highest number of fai space flights when max mach is 5.65?",
    "question_th": "จำนวนเที่ยวบินอวกาศไฟสูงสุดเมื่อเครื่องสูงสุดคือ 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_en": "What was the maximum altitude for Neil Armstrong?",
    "question_th": "ความสูงสูงสุดของนีล อาร์มสตรองคือเท่าใด",
    "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_en": "How many numbers were recorded under max speed for 1 USAF space flight and total flights 34?",
    "question_th": "มีกี่หมายเลขที่ถูกบันทึกภายใต้ความเร็วสูงสุดสำหรับการบินอวกาศของ USAF 1 ครั้ง และเที่ยวบินทั้งหมด 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_en": "What were all USAF space flights when the aximum speed was 3822?",
    "question_th": "เที่ยวบินอวกาศของ USAF ทั้งหมดเป็นเท่าใดเมื่อความเร็วสูงสุดคือ 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_en": "What was the max mach when the maximum speed was 3887?",
    "question_th": "เครื่องสูงสุดเป็นเท่าใดเมื่อความเร็วสูงสุดคือ 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_en": "What is the record for the away leg in round 1 and aggregate 2-0?",
    "question_th": "สถิตินัดเยือนรอบ 1 และสกอร์รวม 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_en": "Name the parishes for  beira baixa province",
    "question_th": "ตั้งชื่อตำบลของจังหวัดเบราไบซา",
    "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_en": "Name the most municipalities for alto alentejo province (partly ribatejo)",
    "question_th": "ตั้งชื่อเขตเทศบาลส่วนใหญ่สำหรับจังหวัดอัลโตอาเลนเตโจ (ริบาเตโจบางส่วน)",
    "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_en": "Name province of 1936  viana do castelo",
    "question_th": "ตั้งชื่อจังหวัด พ.ศ. 2479 เวียนา โด คาสเตโล",
    "context": "CREATE TABLE table_221375_1 (province_of_1936 VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_2215159_2 WHERE partner = \"Rafael Osuna\"",
    "question_en": "What was the score when the partner is Rafael Osuna?",
    "question_th": "เมื่อคู่หูคือ ราฟาเอล โอซูน่า สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_2215159_2 (score VARCHAR, partner VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_2215159_2 WHERE partner = \"Rafael Osuna\"",
    "question_en": "What was the outcome of the game when the partner is Rafael Osuna?",
    "question_th": "ผลเกมเป็นอย่างไรเมื่อคู่หูคือ ราฟาเอล โอซูน่า?",
    "context": "CREATE TABLE table_2215159_2 (outcome VARCHAR, partner VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_2215159_2 WHERE championship = \"French championships\"",
    "question_en": "What is the surface of the French Championships?",
    "question_th": "พื้นผิวของการแข่งขันชิงแชมป์ฝรั่งเศสคืออะไร?",
    "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_en": "How many outcomes were there for matches played with Chuck McKinley on grass in 1962?",
    "question_th": "มีผลลัพธ์กี่รายการสำหรับแมตช์ที่เล่นกับ Chuck McKinley บนสนามหญ้าในปี 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_en": "What was the home leg score against partizani tirana?",
    "question_th": "สกอร์เหย้านัดเหย้ากับปาร์ติซานี่ ติรานาเป็นเท่าไหร่?",
    "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_en": "What round did they face fc st. gallen?",
    "question_th": "เจอกันรอบไหน fc. แกลเลน?",
    "context": "CREATE TABLE table_2214582_3 (round VARCHAR, opponents VARCHAR)"
  },
  {
    "answer": "SELECT home_leg FROM table_2214582_3 WHERE opponents = \"FC Schalke 04\"",
    "question_en": "What was the home leg score against fc schalke 04?",
    "question_th": "สกอร์เจ้าบ้านในการเจอกับเอฟซี ชาลเก้ 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_en": "How many dfb-pokal did kevin-prince boateng have?",
    "question_th": "เควิน-พริ้นซ์ บัวเต็ง มี dfb-pokal กี่คน?",
    "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_en": "Who is the head coach when Miami University is the championship game opponent?",
    "question_th": "ใครเป็นหัวหน้าโค้ชเมื่อมหาวิทยาลัยไมอามีเป็นคู่ต่อสู้ในเกมชิงแชมป์?",
    "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_en": "What is the location when 2-1 is the score?",
    "question_th": "สกอร์ 2-1 อยู่ตำแหน่งไหน?",
    "context": "CREATE TABLE table_22165661_3 (location VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT conference FROM table_22165661_3 WHERE championship_game_opponent = \"Ferris State\"",
    "question_en": "What is the conference when Ferris State is the championship game opponent?",
    "question_th": "คอนเฟอเรนซ์อะไรเมื่อ เฟอริส สเตท เป็นคู่ต่อสู้ชิงแชมป์?",
    "context": "CREATE TABLE table_22165661_3 (conference VARCHAR, championship_game_opponent VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_22165661_3 WHERE tournament = 1999",
    "question_en": "What is the location of the 1999 tournament?",
    "question_th": "สถานที่จัดการแข่งขันปี 1999 อยู่ที่ไหน?",
    "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_en": "How many scores are there when the championship game opponent is Miami University?",
    "question_th": "เมื่อคู่ต่อสู้ในเกมชิงแชมป์คือ 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_en": "Who is the head coach for the score of 4-3?",
    "question_th": "เฮดโค้ชสกอร์ 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_en": "What is the bleeding time when the  platelet count is decreased or unaffected?",
    "question_th": "เวลาเลือดออกเมื่อจำนวนเกล็ดเลือดลดลงหรือไม่ได้รับผลกระทบคืออะไร?",
    "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_en": "What is the partial thromboplastin time when the condition  factor x deficiency as seen in amyloid purpura?",
    "question_th": "เวลาของ thromboplastin บางส่วนคือเท่าไรเมื่อปัจจัยภาวะ x ขาดดังที่พบในจ้ำ amyloid?",
    "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_en": "How many time does the platelet count occur when prothrombin time and bleeding time are prolonged?",
    "question_th": "การนับเกล็ดเลือดเกิดขึ้นกี่ครั้งเมื่อเวลาของ prothrombin และเวลาในการตกเลือดยาวนานขึ้น?",
    "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_en": "What is the bleeding time for the disseminated intravascular coagulation condition?",
    "question_th": "ระยะเวลาที่มีเลือดออกสำหรับภาวะการแข็งตัวของเลือดในหลอดเลือดที่แพร่กระจายคืออะไร?",
    "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_en": "What is the result for partial thromboplastin time when prothrombin time and bleeding time are prolonged?",
    "question_th": "อะไรคือผลลัพธ์ของเวลา thromboplastin บางส่วน เมื่อเวลาของ prothrombin และเวลาเลือดออกนานขึ้น?",
    "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_en": "What is the platelet count when partial thromboplastin time and bleeding time are unaffected?",
    "question_th": "จำนวนเกล็ดเลือดจะเป็นอย่างไรเมื่อเวลาของ thromboplastin บางส่วนและเวลาเลือดออกไม่ได้รับผลกระทบ?",
    "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_en": "What is the lowest top 50 ranking that the episode titled \"the god-why-don't-you-love-me blues\" received?",
    "question_th": "อันดับต่ำสุด 50 อันดับแรกที่ตอนชื่อ \"เดอะ ก๊อด-ทำไม-ไม่-ไม่-รัก-ฉัน-บลูส์\" ได้รับคือเท่าไร",
    "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_en": "Which episodes originally aired on April 19, 2010?",
    "question_th": "ตอนใดที่ออกอากาศครั้งแรกเมื่อวันที่ 19 เมษายน พ.ศ. 2553",
    "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_en": "The episode titled \"Epiphany\" received what scripted show ranking?",
    "question_th": "ตอนที่ชื่อว่า \"Epiphany\" ได้รับการจัดอันดับการแสดงตามสคริปต์อะไร",
    "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_en": "How many of the episodes in the top 50 rankings were originally aired on June 28, 2010?",
    "question_th": "มีกี่ตอนในการจัดอันดับ 50 อันดับแรกที่ออกอากาศครั้งแรกเมื่อวันที่ 28 มิถุนายน พ.ศ. 2553",
    "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_en": "For the location of quezon city , metro manila what is the athletic nickname?",
    "question_th": "สำหรับที่ตั้งของเกซอนซิตี้ เมโทรมะนิลา นักกีฬามีชื่อเล่นว่าอะไร?",
    "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_en": "How many locations are there for the athletic nickname is blue crusaders?",
    "question_th": "มีสถานที่กี่แห่งสำหรับชื่อเล่นนักกีฬาคือ 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_en": "How many entries are shown for school colors for the location of naga , camarines sur?",
    "question_th": "มีกี่รายการที่แสดงสำหรับสีประจำโรงเรียนสำหรับที่ตั้งของนาค , คามารีเนสซูร์?",
    "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_en": "For the athletic nickname of golden knights how many entries are shown for enrollment?",
    "question_th": "สำหรับชื่อเล่นนักกีฬาของอัศวินทองคำ จะมีการรับสมัครกี่รายการ?",
    "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_en": "What year was the ateneo de manila university founded?",
    "question_th": "มหาวิทยาลัย Ateneo de Manila ก่อตั้งเมื่อปีใด",
    "context": "CREATE TABLE table_22171978_1 (founded VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT founded FROM table_22171978_1 WHERE athletic_nickname = \"Blue Crusaders\"",
    "question_en": "What year was the athletic nickname blue crusaders founded?",
    "question_th": "ชื่อเล่นนักกีฬาบลูแซ็กซอนก่อตั้งในปีใด",
    "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_en": "How many original airdates did season 20 have?",
    "question_th": "ซีซั่น 20 มีออนแอร์ดั้งเดิมกี่รอบ?",
    "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_en": "Who directed the episode that was watched by 6.62 million U.S. viewers?",
    "question_th": "ใครเป็นผู้กำกับตอนที่ผู้ชมชาวอเมริกันจำนวน 6.62 ล้านคนดู?",
    "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_en": "What is the production code for the episode with 8.56 million U.S. viewers?",
    "question_th": "รหัสการผลิตสำหรับตอนที่มีผู้ชม 8.56 ล้านคนในสหรัฐฯ คืออะไร?",
    "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_en": "What is the title of the episode that had 9.76 million U.S. viewers?",
    "question_th": "ชื่อเรื่องของตอนที่มีผู้ชม 9.76 ล้านคนในสหรัฐฯ คืออะไร?",
    "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_en": "What is the title of the original airing on e4 May 2, 2010?",
    "question_th": "ชื่อเรื่องของต้นฉบับที่ออกอากาศในวันที่ e4 วันที่ 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_en": "How many total viewers have April 21, 2010 as the original airing on channel 4?",
    "question_th": "วันที่ 21 เมษายน 2553 เดิมออกอากาศทางช่อง 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_en": "What is the position in e4s ratings b when June 30, 2010 is the original airing on channel 4?",
    "question_th": "เรตติ้ง e4s b อยู่ตำแหน่งไหน เมื่อ 30 มิ.ย. 53 ออกอากาศตอนแรกทางช่อง 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_en": "When is the original airing on channel 4 with being alive as the title?",
    "question_th": "ต้นฉบับออกอากาศทางช่อง 4 โดยมีชีวิตเป็นชื่อเรื่องเมื่อไร?",
    "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_en": "How many position in channel 4s ratings a have February 24, 2010 as the original airing on channel 4?",
    "question_th": "เรตติ้งของช่อง 4s มีกี่ตำแหน่งในวันที่ 24 กุมภาพันธ์ 2553 เท่ากับรายการเดิมที่ออกอากาศทางช่อง 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_en": "What are all types where registration is HB-OPU?",
    "question_th": "ทุกประเภทที่จดทะเบียนเป็น 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_en": "What is every registration for the type of T 6 G?",
    "question_th": "การจดทะเบียนประเภท 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_en": "What is every construction date for the registration of HB-HOS?",
    "question_th": "HB-HOS จะมีการจดทะเบียน 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_en": "What is every conformity to original design if registration is HB-DAI?",
    "question_th": "อะไรคือความสอดคล้องกับการออกแบบดั้งเดิมหากการจดทะเบียนเป็น 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_en": "What is the latest season number that Eric Tuchman directed? ",
    "question_th": " หมายเลขซีซันล่าสุดที่ Eric Tuchman กำกับคืออะไร?",
    "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_en": "How man seasons have the air date of October 2, 2001? ",
    "question_th": " Man Seasons มีกำหนดออกอากาศวันที่ 2 ตุลาคม 2544 กี่วัน?",
    "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_en": "What was the report in the race where the winning team was Roush Fenway Racing? ",
    "question_th": " รายงานในการแข่งขันที่ทีมผู้ชนะคือ 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_en": "What was the miles (km) for the race that had an average speed of 136.117 MPH?",
    "question_th": "ระยะทาง (กม.) ของการแข่งขันที่มีความเร็วเฉลี่ย 136.117 ไมล์ต่อชั่วโมงเป็นเท่าใด",
    "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_en": "What are the miles when February 25 is the date?",
    "question_th": "วันที่ 25 กุมภาพันธ์ เป็นวันที่กี่ไมล์?",
    "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_en": "How many laps have an average speed of 141.911?",
    "question_th": "กี่รอบมีความเร็วเฉลี่ย 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_en": "Who is the manufacturer when 150.088 is the average speed (mph)?",
    "question_th": "ใครเป็นผู้ผลิตเมื่อ 150.088 คือความเร็วเฉลี่ย (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_en": "Who is the manufacturer for the date of June 22?",
    "question_th": "ใครเป็นผู้ผลิตในวันที่ 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_en": "How many laps have a race time of 3:31:24?",
    "question_th": "เวลาแข่งขัน 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_en": "How many laps have an average speed  (mph) of 140.22?",
    "question_th": "กี่รอบมีความเร็วเฉลี่ย (mph) 140.22?",
    "context": "CREATE TABLE table_2226343_1 (laps VARCHAR, average_speed__mph_ VARCHAR)"
  },
  {
    "answer": "SELECT director FROM table_22265716_1 WHERE original_title = \"Три летња дана\"",
    "question_en": "Who directed the film with the original title of три летња дана?",
    "question_th": "ใครเป็นผู้กำกับภาพยนตร์เรื่องนี้โดยใช้ชื่อดั้งเดิมว่า три LETња дана?",
    "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_en": "Who directed the film with the title three summer days?",
    "question_th": "ใครเป็นผู้กำกับภาพยนตร์เรื่อง 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 = \"Лепа села лепо горе\"",
    "question_en": "Who is the director of the film with the title лепа села лепо горе?",
    "question_th": "ใครเป็นผู้กำกับภาพยนตร์เรื่อง лепа села лепо горе?",
    "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_en": "How many viewers in millions watched the episode with the production code 6acx16?",
    "question_th": "มีผู้ชมกี่ล้านคนที่ดูตอนที่มีรหัสการผลิต 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_en": "What is the air date of the episode with the production code 6acx19? ",
    "question_th": " ตอนรหัสผลิต 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_en": "What is the original air date for the production code of 1.12?",
    "question_th": "รหัสการผลิต 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_en": "How many number of series have a production code of 1.11?",
    "question_th": "มีกี่ซีรีส์ที่มีรหัสการผลิต 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_en": "How many number of series have the production code of 1.11?",
    "question_th": "มีรหัสการผลิต 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_en": "Who wrote when the original airdate is April 5, 1987?",
    "question_th": "ใครเป็นคนเขียนเมื่อออกอากาศครั้งแรกคือวันที่ 5 เมษายน พ.ศ. 2530",
    "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_en": "Who directed when the production code is 1.02?",
    "question_th": "ใครกำกับเมื่อรหัสการผลิตเป็น 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_en": "Name the production code for november 27, 1988",
    "question_th": "ตั้งชื่อรหัสการผลิตวันที่ 27 พฤศจิกายน 2531",
    "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_en": "Name the original air date for 3.04 production code",
    "question_th": "ตั้งชื่อวันที่ออกอากาศเดิมสำหรับรหัสการผลิต 3.04",
    "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_en": "Name who wrote the episode that aired april 9, 1989",
    "question_th": "ชื่อผู้เขียนตอนที่ออกอากาศวันที่ 9 เมษายน พ.ศ. 2532",
    "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_en": "Name the number of number in season for 3.09",
    "question_th": "บอกชื่อหมายเลขในฤดูกาล 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_en": "when was the episode premiere if the production code is 11.19? ",
    "question_th": " ตอนออกอากาศตอนแรกถ้ารหัสการผลิตเป็น 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_en": "what is the name of the episode whose premiere was in march 2, 1997?",
    "question_th": "ตอนที่เปิดตัวเมื่อวันที่ 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_en": "what is the name of the episode when the production code is 11.01?",
    "question_th": "ตอนรหัสการผลิตเป็น 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_en": "what is the name of the episode if the production code is 11.12?",
    "question_th": "ถ้ารหัสการผลิตเป็น 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_en": "how many episodes has been directed by Mark K. Samuels ?",
    "question_th": "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_en": "Who directed what was written by Michael G. Moye & Ron Leavitt & J. Stanford Parker?",
    "question_th": "ใครกำกับสิ่งที่เขียนโดย 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_en": "What are all the production codes of episodes written by Michael G. Moye?",
    "question_th": "รหัสการผลิตตอนที่เขียนโดย 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_en": "Who is the writer of episode 13?",
    "question_th": "ใครคือผู้เขียนตอนที่ 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_en": "Which series number has the production code 7.07?",
    "question_th": "หมายเลขซีรีส์ใดมีรหัสการผลิต 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_en": "How many seasons have the production code 7.01 for an episode? ",
    "question_th": " มีกี่ซีซั่นที่มีรหัสการผลิต 7.01 สำหรับตอน?",
    "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_en": "How many episodes in the series are from season 12?",
    "question_th": "ซีรีส์นี้มีทั้งหมดกี่ตอนจากซีซั่น 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_en": "How many seasons had episode 158?",
    "question_th": "ตอนที่ 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_en": "What is the production code of the episode directed by Stacie Lipp?",
    "question_th": "รหัสการผลิตของตอนที่กำกับโดย 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_en": "What is the name of episode 165?",
    "question_th": "ตอนที่ 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_en": "How many episodes have the production code 8.04",
    "question_th": "รหัสการผลิต 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_en": "What is the Alpha 2 code for the area also known as TCA?",
    "question_th": "รหัส Alpha 2 สำหรับพื้นที่ที่เรียกว่า 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_en": "What is the Alpha 3 code for the area also known as FO?",
    "question_th": "รหัส Alpha 3 สำหรับพื้นที่ที่เรียกว่า 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_en": "What is the alpha 2  code for the area also known as NZL?",
    "question_th": "รหัสอัลฟ่า 2 สำหรับพื้นที่ที่เรียกว่า 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_en": "What is the ISO for South Sudan?",
    "question_th": "ISO ของซูดานใต้คืออะไร?",
    "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_en": "What is the Alpha 2 code for Papua New Guinea?",
    "question_th": "รหัส Alpha 2 สำหรับปาปัวนิวกินีคืออะไร",
    "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_en": "What is the number reference for LIE?",
    "question_th": "หมายเลขอ้างอิงของ 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_en": "How many launch dates are there for digital transmission?",
    "question_th": "มีวันเปิดตัวสำหรับการส่งสัญญาณดิจิทัลกี่วัน?",
    "context": "CREATE TABLE table_22274142_1 (launch_date VARCHAR, transmission VARCHAR)"
  },
  {
    "answer": "SELECT written_by FROM table_22269839_1 WHERE production_code = \"7ACX14\"",
    "question_en": "Who wrote the title with production code 7acx14?",
    "question_th": "ใครเป็นคนเขียนชื่อเรื่องด้วยรหัสการผลิต 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_en": "Who directed the title written by cherry chevapravatdumrong?",
    "question_th": "ใครกำกับเรื่องที่เขียนโดย เชอรี่ ชีวะพัฒน์ดำรง?",
    "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_en": "Who wrote the title with the production code is 7acx08?",
    "question_th": "ใครเป็นคนเขียนชื่อเรื่องด้วยรหัสการผลิตคือ 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_en": "Who directed the episode written by patrick meighan?",
    "question_th": "ใครเป็นผู้กำกับตอนที่เขียนโดย 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_en": "When is every date that control site condition or owner is machine shop on Martin Dr.?",
    "question_th": "ทุกวันที่ควบคุมสภาพไซต์หรือเจ้าของเป็นร้านขายเครื่องจักรที่ 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_en": "What is every missile type with a code and location of M-20 Harbor Drive?",
    "question_th": "ขีปนาวุธแต่ละประเภทมีรหัสและตำแหน่งของ 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_en": "What is every code and location where the launch site condition and owner is obliterated?",
    "question_th": "อะไรคือรหัสและตำแหน่งทั้งหมดที่เงื่อนไขของไซต์เปิดตัวและเจ้าของถูกลบล้าง?",
    "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_en": "What is every control site condition and owner if launch site condition and owner is Lakefront Office Buildings?",
    "question_th": "เงื่อนไขของไซต์ควบคุมทุกรายการจะเป็นอย่างไร และเจ้าของหากเงื่อนไขของไซต์เปิดตัวและเจ้าของคืออาคารสำนักงานริมทะเลสาบ?",
    "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_en": "Which team had an outgoing manager of Behtash Fariba?",
    "question_th": "ทีมใดมีผู้จัดการทีม 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_en": "Which team had a manager who was replaced by Faraz Kamalvand?",
    "question_th": "ทีมใดมีผู้จัดการทีมซึ่งถูกแทนที่โดย 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_en": "Which outgoing manager was replaced by Jafar Fatahi?",
    "question_th": "ผู้จัดการทีมคนไหนที่ถูกแทนที่โดยจาฟาร์ ฟาตาฮี?",
    "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_en": "Which team had a manager replaced by Ebrahim Talebi?",
    "question_th": "ทีมไหนมีผู้จัดการทีมเข้ามาแทนที่ เอบราฮิม ทาเลบี?",
    "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_en": "What was the date in which Behtash Fariba left his team?",
    "question_th": "วันที่ Behtash Fariba ออกจากทีมคือวันที่เท่าไหร่?",
    "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_en": "What was the manner of leaving the team for the manager of Gostaresh Foolad?",
    "question_th": "การออกจากทีมไปหาผู้จัดการทีม 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_en": "How much was the cost of in-county tuition per credit hour at the Gloucester College by the fall of 2009?",
    "question_th": "ค่าเล่าเรียนต่อชั่วโมงหน่วยกิตที่ Gloucester College ภายในฤดูใบไม้ร่วงปี 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_en": "How much was the in-county tuition per credit hour at the Mercer College by the fall of 2009?",
    "question_th": "ค่าเล่าเรียนต่อชั่วโมงหน่วยกิตที่ Mercer College ภายในฤดูใบไม้ร่วงปี 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_en": "Who was the replacement manager for the vacancy of 12 Dec 2009?",
    "question_th": "ใครคือผู้จัดการแทนตำแหน่งที่ว่างในวันที่ 12 ธันวาคม 2552",
    "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_en": "What team did Alireza mansourian leave?",
    "question_th": "Alireza mansourian ออกจากทีมใด?",
    "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_en": "Why did Majid bagherinia leave?",
    "question_th": "เหตุใดมาจิด บาเกอริเนีย จึงจากไป?",
    "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_en": "What team did a manager leave on 12 Dec 2009",
    "question_th": "ผู้จัดการทีมออกจากทีมใดเมื่อวันที่ 12 ธันวาคม พ.ศ. 2552",
    "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_en": "How many teams did Farhad Kazemi leave?",
    "question_th": "ฟาร์ฮัด คาเซมี ออกไปกี่ทีม?",
    "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_en": "If the school is Rend Lake College, what is the team name?",
    "question_th": "ถ้าโรงเรียนคือ Rend Lake College ทีมชื่ออะไร?",
    "context": "CREATE TABLE table_22319599_1 (team_name VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT MIN(njcaa_championships) FROM table_22319599_1",
    "question_en": "What is the minimum possible for the NJCAA championships?",
    "question_th": "ขั้นต่ำที่เป็นไปได้สำหรับการแข่งขัน NJCAA คืออะไร?",
    "context": "CREATE TABLE table_22319599_1 (njcaa_championships INTEGER)"
  },
  {
    "answer": "SELECT location FROM table_22319599_1 WHERE varsity_teams = 6",
    "question_en": "If the varsity team is 6, what is the location?",
    "question_th": "ถ้าทีมตัวแทนอายุ 6 อยู่สถานที่ใด?",
    "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_en": "If the school is John A. Logan College, what are the colors?",
    "question_th": "ถ้าโรงเรียนเป็น John A. Logan College มีสีอะไรบ้าง?",
    "context": "CREATE TABLE table_22319599_1 (colors VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(date) FROM table_22334183_3 WHERE circuit = \"Silverstone\"",
    "question_en": "On how many different dates was the race at the Silverstone circuit?",
    "question_th": "การแข่งขันที่สนามซิลเวอร์สโตนเซอร์กิตมีกี่วัน?",
    "context": "CREATE TABLE table_22334183_3 (date VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_22334183_3 WHERE circuit = \"Donington Park\"",
    "question_en": "When was the circuit Donington Park?",
    "question_th": "สนามเซอร์กิต Donington Park จัดขึ้นเมื่อไหร่?",
    "context": "CREATE TABLE table_22334183_3 (date VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT weight FROM table_22344463_2 WHERE name = \"Stuart Craig\"",
    "question_en": "What is the weight is the name is Stuart Craig?",
    "question_th": "ชื่อสจวร์ต เครกชื่อน้ำหนักอะไร?",
    "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_en": "If the name is Timo Higgins, what is the total date of birth amount?",
    "question_th": "ถ้าชื่อทิโม ฮิกกินส์ วันเกิดรวมคือเท่าไหร่?",
    "context": "CREATE TABLE table_22344463_2 (date_of_birth VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_22344463_2 WHERE height = \"181cm\"",
    "question_en": "If the height is 181cm, what was the position?",
    "question_th": "ถ้าสูง 181 ซม. อยู่ในตำแหน่งอะไร?",
    "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_en": "If the home team is UMBC and the weight is 78kg, what the the name total number?",
    "question_th": "ถ้าเจ้าบ้านคือ UMBC และน้ำหนัก 78 กก. ชื่อหมายเลขทั้งหมดว่าอะไร?",
    "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_en": "If the height is 185cm and the home team is Heaton Mersey, what is the date of birth?",
    "question_th": "ถ้าส่วนสูง 185 ซม. เจ้าบ้านคือ ฮีตัน เมอร์ซีย์ วันเกิดคือวันที่เท่าไร?",
    "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_en": "How many viewers tuned in for season 2?",
    "question_th": "มีผู้ชมกี่คนที่ติดตามซีซั่น 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_en": "Who directed the episode that has 3x6752 listed as the production code?",
    "question_th": "ใครเป็นผู้กำกับตอนที่มี 3x6752 อยู่ในรายการรหัสการผลิต",
    "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_en": "Which series number had 1.98 million viewers?",
    "question_th": "ซีรีส์เรื่องไหนมีผู้ชม 1.98 ล้านคน?",
    "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_en": "Name the viewers for production code for 3x6704",
    "question_th": "ตั้งชื่อผู้ดูสำหรับโค้ดการผลิตสำหรับ 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_en": "Name the viewers for production code being 3x6706",
    "question_th": "ตั้งชื่อผู้ดูสำหรับรหัสการผลิตเป็น 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_en": "Name the title that got 1.54 viewers",
    "question_th": "ตั้งชื่อเรื่องที่มีผู้ชม 1.54 คน",
    "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_en": "Name the number of number in season for 26",
    "question_th": "บอกชื่อหมายเลขในฤดูกาล 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_en": "Who wrote the episode that has a production code 3x7557?",
    "question_th": "ใครเป็นคนเขียนตอนที่มีรหัสการผลิต 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_en": "How many directors are there for the episode that had 1.59 million U.S. viewers?",
    "question_th": "มีผู้กำกับกี่คนในตอนนี้ที่มีผู้ชมในสหรัฐอเมริกา 1.59 ล้านคน?",
    "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_en": "What is the production code for the episode that had 1.32 million U.S. viewers?",
    "question_th": "รหัสการผลิตสำหรับตอนที่มีผู้ชม 1.32 ล้านคนในสหรัฐฯ คืออะไร?",
    "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_en": "What episode number in the series had a production code of 3x7554?",
    "question_th": "ซีรีส์เรื่องใดมีรหัสการผลิต 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_en": "What is the name of episode number 41 in the series?",
    "question_th": "ตอนที่ 41 ของซีรีส์ชื่ออะไรคะ?",
    "context": "CREATE TABLE table_22347090_6 (title VARCHAR, no_in_series VARCHAR)"
  },
  {
    "answer": "SELECT MIN(silver) FROM table_22355_20",
    "question_en": "Who has the minimum number of silver?",
    "question_th": "ใครมีจำนวนเงินขั้นต่ำ?",
    "context": "CREATE TABLE table_22355_20 (silver INTEGER)"
  },
  {
    "answer": "SELECT athlete FROM table_22355_20 WHERE rank = 8 AND olympics = \"1948–1952\"",
    "question_en": "Who is the athlete who's rank is 8 and competed in the olympics during 1948–1952?",
    "question_th": "นักกีฬาอันดับ 8 และเคยแข่งขันกีฬาโอลิมปิกระหว่างปี พ.ศ. 2491-2495 คือใคร?",
    "context": "CREATE TABLE table_22355_20 (athlete VARCHAR, rank VARCHAR, olympics VARCHAR)"
  },
  {
    "answer": "SELECT nation FROM table_22355_20 WHERE olympics = \"1924–1928\" AND bronze = 1",
    "question_en": "What is the nation who won 1 bronze in the Olympics during  1924–1928?",
    "question_th": "ประเทศใดที่ได้ 1 เหรียญทองแดงในโอลิมปิกระหว่างปี 1924–1928?",
    "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_en": "Who is the athlete from the nation of Ethiopia (eth) who had a rank bigger than 7.0?",
    "question_th": "นักกีฬาจากประเทศเอธิโอเปีย (eth) ที่มีอันดับสูงกว่า 7.0 คือใคร?",
    "context": "CREATE TABLE table_22355_20 (athlete VARCHAR, nation VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT MAX(gold) FROM table_22355_26",
    "question_en": "What is the maximum number of golds?",
    "question_th": "จำนวนทองสูงสุดคือเท่าไร?",
    "context": "CREATE TABLE table_22355_26 (gold INTEGER)"
  },
  {
    "answer": "SELECT MIN(silver) FROM table_22355_29",
    "question_en": "What is the smallest amount of silver?",
    "question_th": "เงินจำนวนน้อยที่สุดคืออะไร?",
    "context": "CREATE TABLE table_22355_29 (silver INTEGER)"
  },
  {
    "answer": "SELECT nation FROM table_22355_44 WHERE athlete = \"Abdon Pamich Category:Articles with hCards\"",
    "question_en": "Name the nation for abdon pamich category:articles with hcards",
    "question_th": "ตั้งชื่อประเทศสำหรับหมวดหมู่ อับดอน ปามิช: บทความที่มี 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_en": "Name the silver for ronald weigel category:articles with hcards",
    "question_th": "ตั้งชื่อเหรียญเงินสำหรับหมวดหมู่ ronald weigel:บทความที่มี hcard",
    "context": "CREATE TABLE table_22355_44 (silver INTEGER, athlete VARCHAR)"
  },
  {
    "answer": "SELECT MIN(rank) FROM table_22355_5",
    "question_en": "What's the minimal rank of a athlete shown in the chart?",
    "question_th": "อันดับขั้นต่ำของนักกีฬาที่แสดงในแผนภูมิคือเท่าใด",
    "context": "CREATE TABLE table_22355_5 (rank INTEGER)"
  },
  {
    "answer": "SELECT MIN(gold) FROM table_22355_35",
    "question_en": "which is the minimun amount of gold medals?",
    "question_th": "เหรียญทองขั้นต่ำคือเท่าไร?",
    "context": "CREATE TABLE table_22355_35 (gold INTEGER)"
  },
  {
    "answer": "SELECT MIN(silver) FROM table_22355_35",
    "question_en": "which is the minimun amount of silver medals?",
    "question_th": "เหรียญเงินขั้นต่ำคือเท่าไร?",
    "context": "CREATE TABLE table_22355_35 (silver INTEGER)"
  },
  {
    "answer": "SELECT MIN(total_min_2_medals_) FROM table_22355_65",
    "question_en": "What is the lowest overall number for  total(min. 2 medals)?",
    "question_th": "จำนวนรวมต่ำสุดสำหรับทั้งหมดคือเท่าใด (ขั้นต่ำ 2 เหรียญ)",
    "context": "CREATE TABLE table_22355_65 (total_min_2_medals_ INTEGER)"
  },
  {
    "answer": "SELECT MAX(rank) FROM table_22355_62 WHERE gold = 4",
    "question_en": "What is the maximum rank of the nation that won 4 gold medals?",
    "question_th": "อันดับสูงสุดของประเทศที่ได้ 4 เหรียญทองคือเท่าไร?",
    "context": "CREATE TABLE table_22355_62 (rank INTEGER, gold VARCHAR)"
  },
  {
    "answer": "SELECT MAX(rank) FROM table_22355_68",
    "question_en": "Name the most rank",
    "question_th": "ตั้งชื่ออันดับมากที่สุด",
    "context": "CREATE TABLE table_22355_68 (rank INTEGER)"
  },
  {
    "answer": "SELECT MIN(rank) FROM table_22355_68 WHERE gold = 2",
    "question_en": "Name the most rank for 2 gold",
    "question_th": "ตั้งชื่ออันดับสูงสุดได้ 2 ทอง",
    "context": "CREATE TABLE table_22355_68 (rank INTEGER, gold VARCHAR)"
  },
  {
    "answer": "SELECT MAX(total) FROM table_22360_3",
    "question_en": "Name the most total ",
    "question_th": " ตั้งชื่อรวมมากที่สุด",
    "context": "CREATE TABLE table_22360_3 (total INTEGER)"
  },
  {
    "answer": "SELECT MIN(silver) FROM table_22360_3 WHERE discipline = \"Baseball\"",
    "question_en": "Name the silver for baseball",
    "question_th": "ตั้งชื่อเงินสำหรับกีฬาเบสบอล",
    "context": "CREATE TABLE table_22360_3 (silver INTEGER, discipline VARCHAR)"
  },
  {
    "answer": "SELECT discipline FROM table_22360_3 WHERE bronze = 0",
    "question_en": "Name the discipline for bronze being 0",
    "question_th": "ตั้งชื่อวินัยสำหรับเหรียญทองแดงเป็น 0",
    "context": "CREATE TABLE table_22360_3 (discipline VARCHAR, bronze VARCHAR)"
  },
  {
    "answer": "SELECT MAX(tier_1_capital), _€_million FROM table_22368322_2 WHERE institution = \"Irish Nationwide\"",
    "question_en": "Name the most tier 1 capital for irish nationwide",
    "question_th": "ตั้งชื่อเมืองหลวงระดับ 1 มากที่สุดสำหรับไอริชทั่วประเทศ",
    "context": "CREATE TABLE table_22368322_2 (_€_million VARCHAR, tier_1_capital INTEGER, institution VARCHAR)"
  },
  {
    "answer": "SELECT tier_1_ratio FROM table_22368322_2 WHERE institution = \"Irish Life and Permanent\"",
    "question_en": "Name the tier 1 ratio for irish life and permanent",
    "question_th": "ตั้งชื่ออัตราส่วนเทียร์ 1 สำหรับชีวิตไอริชและถาวร",
    "context": "CREATE TABLE table_22368322_2 (tier_1_ratio VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(tier_1_capital), _€_million FROM table_22368322_2 WHERE institution = \"Allied Irish Banks\"",
    "question_en": "Name the total number of tier 1 capital for allied irish banks",
    "question_th": "ตั้งชื่อจำนวนเงินทุนระดับ 1 ทั้งหมดสำหรับธนาคารไอร์แลนด์ที่เป็นพันธมิตร",
    "context": "CREATE TABLE table_22368322_2 (_€_million VARCHAR, tier_1_capital VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT date_of_report FROM table_22368322_2 WHERE tier_1_ratio = \"3.9%\"",
    "question_en": "Name the date of report for tier 1 ratio being 3.9%",
    "question_th": "ตั้งชื่อวันที่รายงานสำหรับอัตราส่วนชั้นที่ 1 เป็น 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_en": "What season ended on April 18?",
    "question_th": "ฤดูกาลใดสิ้นสุดในวันที่ 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–0–0)\"",
    "question_en": "When did the season start that ended with the top record of Lindenwood (20–0–0)?",
    "question_th": "ฤดูกาลเริ่มต้นซึ่งจบลงด้วยสถิติสูงสุดของลินเดนวูด (20–0–0) เมื่อใด",
    "context": "CREATE TABLE table_22383603_1 (start__reg_season_ VARCHAR, top_record VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_22383603_1 WHERE no = 4",
    "question_en": "What is the year range of season 4?",
    "question_th": "ฤดูกาลที่ 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_en": "When is the finish of the season that started on September 25?",
    "question_th": "ฤดูกาลที่เริ่มในวันที่ 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_en": "On what air date were there 2.15 million u.s. viewers?",
    "question_th": "พวกเราคนดู 2.15 ล้านคนออกอากาศวันไหน?",
    "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_en": "Who was the writer for the episode with 2.15 million u.s.viewers?",
    "question_th": "ใครคือคนเขียนบทสำหรับตอนนี้ที่มีผู้ชม 2.15 ล้านคน?",
    "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_en": "Who walked in space from STS-101 Eva 1?",
    "question_th": "ใครเดินในอวกาศจาก 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_en": "What is the end (UTC) if the duration is 6 hours, 55 minutes?",
    "question_th": "การสิ้นสุด (UTC) คืออะไรหากระยะเวลาคือ 6 ชั่วโมง 55 นาที?",
    "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_en": "If the end (UTC) is January 31, 2007 23:09, what is the name of the spacewalkers?",
    "question_th": "หากสิ้นสุด (UTC) คือวันที่ 31 มกราคม 2550 เวลา 23:09 น. นักสำรวจอวกาศชื่ออะไร",
    "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_en": "What are the names of the spacewalkers for end (UTC) October 30, 2007 15:53?",
    "question_th": "ชื่อของ spacewalkers for end (UTC) 30 ตุลาคม 2550 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_en": "Which position is player bernie doan?",
    "question_th": "เบอร์นี่ โดน นักเตะตำแหน่งไหน?",
    "context": "CREATE TABLE table_22402438_7 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MIN(pick__number) FROM table_22402438_7 WHERE position = \"Goaltender\"",
    "question_en": "How many pick # are there for the goaltender position?",
    "question_th": "ตำแหน่งผู้รักษาประตูมีกี่ตัวเลือก?",
    "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_en": "How many college/junior/clubteams have John garrett as the player?",
    "question_th": "วิทยาลัย/จูเนียร์/ทีมสโมสรมีจอห์น การ์เร็ตต์เป็นผู้เล่นกี่คน?",
    "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_en": "Who is the player with the pick# 80?",
    "question_th": "ใครคือผู้เล่นที่ได้รับเลือก # 80?",
    "context": "CREATE TABLE table_22402438_7 (player VARCHAR, pick__number VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_22402438_7 WHERE player = \"John Garrett\"",
    "question_en": "Which nationality is player John Garrett?",
    "question_th": "นักเตะสัญชาติใด จอห์น การ์เร็ตต์?",
    "context": "CREATE TABLE table_22402438_7 (nationality VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT team_classification FROM table_22410316_17 WHERE combativity_prize = \"Ricardo Serrano\"",
    "question_en": "what team had ricardo serrano for combativity prize?",
    "question_th": "ทีมใดมีริคาร์โด้ เซอร์ราโนเป็นรางวัลด้านการต่อสู้",
    "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_en": "How many production stage managers worked with Gabriel di Chiara as the Male Rep?",
    "question_th": "มีผู้จัดการขั้นตอนการผลิตกี่คนที่ทำงานร่วมกับ Gabriel di Chiara ในฐานะตัวแทนชาย",
    "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_en": "How many production stage managers worked with secretary Rachel Hartmann?",
    "question_th": "ผู้จัดการขั้นตอนการผลิตทำงานร่วมกับเลขานุการ 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_en": "Who were the performance liaisons for the dramaturge Chrisena Ricci?",
    "question_th": "ใครคือผู้ประสานงานด้านการแสดงสำหรับละคร 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_en": "Who was the male rep. when Caroline Rhoads was the artistic director?",
    "question_th": "ใครคือตัวแทนฝ่ายชาย เมื่อ Caroline Rhoads เป็นผู้กำกับศิลป์?",
    "context": "CREATE TABLE table_22410780_1 (male_rep VARCHAR, artistic_director VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(driver) FROM table_2241101_1 WHERE manufacturer = \"Toyota\"",
    "question_en": "How many different drivers were there for the team when the manufacturer was Toyota?",
    "question_th": "ในสมัยที่ผู้ผลิตคือโตโยต้ามีนักแข่งที่แตกต่างกันกี่คน",
    "context": "CREATE TABLE table_2241101_1 (driver VARCHAR, manufacturer VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_2241101_1 WHERE date = \"February 27\"",
    "question_en": "In how many different years did the race happen on February 27?",
    "question_th": "การแข่งขันในวันที่ 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_en": "What team had average speed of 107.063 mph?",
    "question_th": "ทีมใดมีความเร็วเฉลี่ย 107.063 ไมล์ต่อชั่วโมง",
    "context": "CREATE TABLE table_2241101_1 (team VARCHAR, average_speed__mph_ VARCHAR)"
  },
  {
    "answer": "SELECT report FROM table_2241101_1 WHERE year = 2010",
    "question_en": "What was the report for 2010?",
    "question_th": "รายงานประจำปี 2553 มีอะไรบ้าง?",
    "context": "CREATE TABLE table_2241101_1 (report VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(race_time) FROM table_2241259_1 WHERE driver = \"Kevin Harvick\"",
    "question_en": "Name the total number of race time for kevin harvick",
    "question_th": "ตั้งชื่อจำนวนเวลาแข่งขันทั้งหมดของเควิน ฮาร์วิค",
    "context": "CREATE TABLE table_2241259_1 (race_time VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT manufacturer FROM table_2241841_1 WHERE year = \"2004\"",
    "question_en": "What manufacturer made the car that won in 2004?",
    "question_th": "ผู้ผลิตรายใดที่ผลิตรถยนต์ที่ได้รับรางวัลในปี 2547",
    "context": "CREATE TABLE table_2241841_1 (manufacturer VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(miles__km_) FROM table_2241841_1 WHERE manufacturer = \"Dodge\"",
    "question_en": "How many wins are with Dodge vehicles?",
    "question_th": "ยานพาหนะ Dodge มีชัยชนะกี่ครั้ง?",
    "context": "CREATE TABLE table_2241841_1 (miles__km_ VARCHAR, manufacturer VARCHAR)"
  },
  {
    "answer": "SELECT manufacturer FROM table_2241841_1 WHERE date = \"May 21\"",
    "question_en": "Who made the car that won the race on May 21?",
    "question_th": "ใครเป็นผู้สร้างรถที่ชนะการแข่งขันในวันที่ 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_en": "In the race with a winning time of 4:17:18, how many laps were run?",
    "question_th": "ในการแข่งขันด้วยเวลาชนะ 4:17:18 วิ่งไปกี่รอบ?",
    "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_en": "What team set a 3:15:43 winning time?",
    "question_th": "ทีมใดตั้งเวลาชนะได้ 3:15:43?",
    "context": "CREATE TABLE table_2241841_1 (team VARCHAR, race_time VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(hometown) FROM table_22447251_2 WHERE height = \"1.80\"",
    "question_en": "How many different cities are represented by contestants whose height stands at 1.80?",
    "question_th": "มีกี่เมืองที่เป็นตัวแทนจากผู้เข้าแข่งขันที่มีส่วนสูง 1.80",
    "context": "CREATE TABLE table_22447251_2 (hometown VARCHAR, height VARCHAR)"
  },
  {
    "answer": "SELECT height FROM table_22447251_2 WHERE contestant = \"Alexandra Díaz Bello\"",
    "question_en": "How tall is contestant Alexandra Díaz Bello?",
    "question_th": "ผู้เข้าแข่งขัน Alexandra Díaz Bello สูงเท่าไหร่?",
    "context": "CREATE TABLE table_22447251_2 (height VARCHAR, contestant VARCHAR)"
  },
  {
    "answer": "SELECT province, _community FROM table_22447251_2 WHERE hometown = \"Villa Bisonó\"",
    "question_en": "Which province is Villa Bisonó in?",
    "question_th": "วิลล่า บิโซโน อยู่จังหวัดไหน?",
    "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_en": "How old is contestant Valerie Chardonnens Vargas?",
    "question_th": "ผู้เข้าแข่งขัน 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_en": "Who was the origianal south korean performer when Adebayo Bolaji performed in Manchester?",
    "question_th": "ใครคือนักแสดงเกาหลีใต้คนแรกเมื่อ Adebayo Bolaji แสดงในแมนเชสเตอร์",
    "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_en": "What character did Lisa Davina Phillip portray?",
    "question_th": "ลิซ่า ดาวิน่า ฟิลลิป แสดงเป็นตัวละครตัวใด",
    "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_en": "Who was the Broadway equivalent of Sharon D. Clarke's character?",
    "question_th": "ใครคือตัวละครบรอดเวย์ที่เทียบเท่ากับตัวละครของ Sharon D. Clarke?",
    "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_en": "What character did Moya Angela portray?",
    "question_th": "โมยา แองเจล่า รับบทเป็นตัวละครตัวใด",
    "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_en": "What character did Richard Fleeshman portray?",
    "question_th": "ริชาร์ด ฟลีชแมนแสดงเป็นตัวละครตัวใด",
    "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_en": "Who was the Manchester performer of Lisa Davina Phillip's character?",
    "question_th": "ใครคือนักแสดงชาวแมนเชสเตอร์ในตัวละครของ Lisa Davina Phillip",
    "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_en": "Name the european tier for rick springfield",
    "question_th": "ตั้งชื่อเทียร์ยุโรปให้กับริก สปริงฟิลด์",
    "context": "CREATE TABLE table_22457674_1 (european_tier VARCHAR, artist VARCHAR)"
  },
  {
    "answer": "SELECT song_title FROM table_22457674_1 WHERE artist = \"Europe\"",
    "question_en": "Name the song title for europe",
    "question_th": "ตั้งชื่อเพลงสำหรับยุโรป",
    "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_en": "Name the number of master recording for doobie brothers the doobie brothers",
    "question_th": "ตั้งชื่อหมายเลขบันทึกมาสเตอร์ของพี่น้อง doobie พี่น้อง doobie",
    "context": "CREATE TABLE table_22457674_1 (master_recording VARCHAR, artist VARCHAR)"
  },
  {
    "answer": "SELECT master_recording FROM table_22457674_1 WHERE artist = \"Europe\"",
    "question_en": "Name the master recording for europe",
    "question_th": "ตั้งชื่อการบันทึกหลักสำหรับยุโรป",
    "context": "CREATE TABLE table_22457674_1 (master_recording VARCHAR, artist VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_22464685_1 WHERE georgian_name = \"ცხოვრება და უწყება ბაგრატონიანთა\"",
    "question_en": "what is the date for when the georgian name is ცხოვრება და უწყება ბაგრატონიანთა?",
    "question_th": "ชื่อจอร์เจียคือวันที่เท่าไหร่ ცხოვრებロ დAWA უწყებロ ბּგრტონნნთロ?",
    "context": "CREATE TABLE table_22464685_1 (date VARCHAR, georgian_name VARCHAR)"
  },
  {
    "answer": "SELECT transliteration FROM table_22464685_1 WHERE period_covered = \"1125-1223\"",
    "question_en": "what is the transliteration during the period covered is 1125-1223?",
    "question_th": "การทับศัพท์ในช่วงที่ครอบคลุมคือ 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_en": "Who is the auther when the english name was histories and eulogies of the sovereigns?",
    "question_th": "ใครคือผู้ตรวจสอบเมื่อชื่อภาษาอังกฤษเป็นประวัติศาสตร์และคำสรรเสริญของกษัตริย์?",
    "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_en": "who is the auther when the transliteration is lasha-giorgis droindeli matiane?",
    "question_th": "ใครคือผู้ตรวจสอบเมื่อมีการทับศัพท์คือ 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_en": "in which state where John Laurance (f) as a vacator?",
    "question_th": "ในรัฐใดที่ John Laurance (f) เป็นผู้ว่างงาน?",
    "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_en": "when the vacator was Henry Latimer (f), what were the causes for modification?",
    "question_th": "เมื่อผู้ว่างงานคือ Henry Latimer (f) อะไรเป็นสาเหตุของการเปลี่ยนแปลง?",
    "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_en": "how many times has Aaron Ogden (f), been a successor and has had a formal installation? ",
    "question_th": "Aaron Ogden (f) เป็นผู้สืบทอดและมีการติดตั้งอย่างเป็นทางการกี่ครั้งแล้ว?",
    "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_en": "In 2010, how many 1st venue cities were there? ",
    "question_th": " ในปี 2010 มีเมืองสถานที่จัดงานที่ 1 กี่เมือง?",
    "context": "CREATE TABLE table_22482077_1 (year VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(vacator) FROM table_224840_4 WHERE district = \"Massachusetts 3rd\"",
    "question_en": "How many seats became avaliable in Massachusetts 3rd district?",
    "question_th": "มีที่นั่งว่างในเขต 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_en": "Who left office on November 26, 1800?",
    "question_th": "ใครออกจากตำแหน่งเมื่อวันที่ 26 พฤศจิกายน พ.ศ. 2343?",
    "context": "CREATE TABLE table_224840_4 (vacator VARCHAR, date_successor_seated VARCHAR)"
  },
  {
    "answer": "SELECT successor FROM table_224840_4 WHERE district = \"Massachusetts 3rd\"",
    "question_en": "Who was the latest to take office in Massachusetts 3rd district?",
    "question_th": "ใครคือคนล่าสุดที่เข้ารับตำแหน่งในเขต 3 ของแมสซาชูเซตส์?",
    "context": "CREATE TABLE table_224840_4 (successor VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT builder FROM table_22481967_1 WHERE date = \"1930\"",
    "question_en": "List the builder from 1930.",
    "question_th": "รายชื่อผู้สร้างตั้งแต่ปี 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_en": "List the number of builders where the withdrawn is 1951 and number is 42.",
    "question_th": "ระบุจำนวนผู้สร้างที่ถอนออกคือปี 1951 และหมายเลข 42",
    "context": "CREATE TABLE table_22481967_1 (builder VARCHAR, withdrawn VARCHAR, number VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_22481967_1 WHERE number = \"1\"",
    "question_en": "List the date for number 1.",
    "question_th": "ระบุวันที่สำหรับหมายเลข 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_en": "List the number for the operator melbourne and metropolitan tramways board.",
    "question_th": "ระบุหมายเลขของผู้ดำเนินการกระดานรถรางเมลเบิร์นและนครหลวง",
    "context": "CREATE TABLE table_22481967_1 (number VARCHAR, operator VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_22481967_1 WHERE operator = \"Toronto Transit Commission\"",
    "question_en": "List the status for the operator Toronto transit commission.",
    "question_th": "แสดงรายการสถานะสำหรับผู้ดำเนินการค่าคอมมิชชั่นการขนส่งของโตรอนโต",
    "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_en": "Which network has bob costas as the studio host and darren pang as the ice level reporters?",
    "question_th": "เครือข่ายใดที่มี Bob Costas เป็นเจ้าภาพในสตูดิโอและมี Darren Pang เป็นผู้รายงานระดับน้ำแข็ง?",
    "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_en": "Which play-by-play has mike milbury as the studio analyst and darren pang as the ice level reporters?",
    "question_th": "การเล่นแบบเล่นต่อเกมคนไหนที่มีไมค์ มิลเบอรีเป็นนักวิเคราะห์ของสตูดิโอ และดาร์เรน ปังเป็นนักข่าวระดับน้ำแข็ง?",
    "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_en": "Who is the color commentator when brian engblom is ice level reporters?",
    "question_th": "ใครคือผู้บรรยายสี ในเมื่อ Brian Engblom เป็นนักข่าวระดับน้ำแข็ง?",
    "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_en": "Who is the play-by-play when nbc is the network and darren pang is the ice level reporters?",
    "question_th": "ใครคือคนเล่นต่อเมื่อ NBC เป็นเครือข่าย และดาร์เรน แป้งเป็นนักข่าวระดับน้ำแข็ง?",
    "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_en": "Who is the studio host for the year 2010?",
    "question_th": "ใครคือพิธีกรสตูดิโอประจำปี 2553?",
    "context": "CREATE TABLE table_22485543_1 (studio_host VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT vacator FROM table_224844_4 WHERE district = \"Connecticut At-large\"",
    "question_en": "Who left a seat open for the district of connecticut at-large",
    "question_th": "ที่ได้เปิดที่นั่งทิ้งไว้ให้กับเขตคอนเนตทิคัตขนาดใหญ่",
    "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_en": "Why was a seat left open fo Connecticut at-large?",
    "question_th": "เหตุใดจึงเปิดที่นั่งทิ้งไว้สำหรับคอนเนตทิคัตโดยรวม",
    "context": "CREATE TABLE table_224844_4 (reason_for_change VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT MIN(rank_asia) FROM table_2248784_4",
    "question_en": "What is the smallest Asian rank?",
    "question_th": "อันดับเอเชียที่เล็กที่สุดคืออะไร?",
    "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_en": "What 2011 GDP (PPP) billions of USD does Iraq have?",
    "question_th": "อิรักมี GDP (PPP) มูลค่าหลายพันล้านเหรียญสหรัฐในปี 2554 เท่าใด",
    "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_en": "What 2011 GDP (PPP) billions of USD does Israel have?",
    "question_th": "อิสราเอลมี GDP (PPP) มูลค่าหลายพันล้านเหรียญสหรัฐฯ ในปี 2554 เท่าใด",
    "context": "CREATE TABLE table_2248784_4 (country VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(rank_asia) FROM table_2248784_4 WHERE rank_mideast = 1",
    "question_en": "How many asian rank have 1 as a mideast rank?",
    "question_th": "อันดับเอเชียมีกี่อันดับ 1 เป็นอันดับตะวันออกกลาง?",
    "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_en": "Name the gdp world rank for asian rank being 15",
    "question_th": "ตั้งชื่ออันดับโลกของ GDP สำหรับอันดับเอเชียเป็น 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_en": "Name the gdp per capita for world rank being 131",
    "question_th": "ตั้งชื่อ GDP ต่อหัวสำหรับอันดับโลกเป็น 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_en": "Name the gdp world rank for asian rank being 20",
    "question_th": "ตั้งชื่ออันดับโลกของ GDP สำหรับอันดับเอเชียเป็น 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_en": "Name the most world rank for asian rank being 31",
    "question_th": "ตั้งชื่ออันดับโลกมากที่สุดสำหรับอันดับเอเชียอยู่ที่ 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_en": "Name the least rank subcontinent for bangladesh",
    "question_th": "ตั้งชื่ออนุทวีปอันดับน้อยที่สุดสำหรับบังคลาเทศ",
    "context": "CREATE TABLE table_2248784_3 (rank_subcontinent INTEGER, country VARCHAR)"
  },
  {
    "answer": "SELECT rank_world FROM table_2248784_3 WHERE rank_subcontinent = 7",
    "question_en": "Name the rank world for 7 rank subcontinent",
    "question_th": "ตั้งชื่อโลกอันดับ 7 อนุทวีป",
    "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_en": "Name the 2011 gdp for pakistan",
    "question_th": "ตั้งชื่อ GDP ปี 2011 สำหรับปากีสถาน",
    "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_en": "Name the 2011 gdp for 65 rank world",
    "question_th": "ตั้งชื่อ GDP ปี 2011 สำหรับอันดับ 65 ของโลก",
    "context": "CREATE TABLE table_2248784_3 (rank_world VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(rank_world) FROM table_2248784_3 WHERE country = \"Bhutan\"",
    "question_en": "Name the number of rank world for bhutan",
    "question_th": "ตั้งชื่อเลขอันดับโลกของภูฏาน",
    "context": "CREATE TABLE table_2248784_3 (rank_world VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(world_rank) FROM table_2248991_2 WHERE nation = \"Nigeria\"",
    "question_en": "How many items were listed under world rank under the nation of Nigeria?",
    "question_th": "มีกี่รายการที่อยู่ในอันดับโลกภายใต้ประเทศไนจีเรีย",
    "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_en": "How many items are listed under gdp per capita under the nation of Burkina Faso?",
    "question_th": "มีกี่รายการที่อยู่ในรายการ GDP ต่อหัวภายใต้ประเทศบูร์กินาฟาโซ",
    "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_en": "What is the total gdp world rank when the gdp per capita was listed at $1,163?",
    "question_th": "GDP ของโลกทั้งหมดมีอันดับเท่าใดเมื่อ GDP ต่อหัวอยู่ที่ 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_en": "Name the least world rank for south american rank 3",
    "question_th": "ตั้งชื่ออันดับโลกน้อยที่สุดสำหรับอันดับ 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_en": "Name the south american rank for venezuela",
    "question_th": "ตั้งชื่ออันดับอเมริกาใต้ของเวเนซุเอลา",
    "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_en": "How many weight stats are there for players from San Francisco, CA?",
    "question_th": "มีสถิติน้ำหนักของผู้เล่นจากซานฟรานซิสโก แคลิฟอร์เนีย กี่สถิติ",
    "context": "CREATE TABLE table_22496374_1 (weight VARCHAR, home_town VARCHAR)"
  },
  {
    "answer": "SELECT MAX(_number) FROM table_22496374_1 WHERE name = \"Rickie Winslow\"",
    "question_en": "What was rickie winslow's number?",
    "question_th": "หมายเลขของริคกี้ วินสโลว์คืออะไร?",
    "context": "CREATE TABLE table_22496374_1 (_number INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(height) FROM table_22496374_1 WHERE home_town = \"Lagos, Nigeria\"",
    "question_en": "How many height entries are there for players from lagos, nigeria?",
    "question_th": "ผู้เล่นจากลากอส ไนจีเรีย มีความสูงกี่รายการ",
    "context": "CREATE TABLE table_22496374_1 (height VARCHAR, home_town VARCHAR)"
  },
  {
    "answer": "SELECT home_town FROM table_22496374_1 WHERE high_school = \"Alvin\"",
    "question_en": "What is the hometown of the players from alvin high school?",
    "question_th": "บ้านเกิดของผู้เล่นจากโรงเรียนมัธยมอัลวินคืออะไร?",
    "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_en": "How many height entries are there for players from bayside high school?",
    "question_th": "มีรายการส่วนสูงสำหรับผู้เล่นจากโรงเรียนมัธยมปลายเบย์ไซด์จำนวนเท่าใด",
    "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_en": "How many reasons for change were listed when Edward Hempstead was the successor?",
    "question_th": "มีการระบุสาเหตุของการเปลี่ยนแปลงกี่ประการเมื่อ Edward Hempstead เป็นผู้สืบทอด",
    "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_en": "How many Vacators were listed when the district was North Carolina 3rd?",
    "question_th": "มีผู้ว่างกี่คนที่ระบุไว้เมื่อเขตอยู่ที่ North Carolina ที่ 3",
    "context": "CREATE TABLE table_225095_4 (vacator VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT vacator FROM table_225095_4 WHERE successor = \"Shadrach Bond\"",
    "question_en": "Who was the vacator when Shadrach Bond was the successor?",
    "question_th": "ใครคือผู้ว่างงานเมื่อชัดรัค บอนด์เป็นผู้สืบทอดตำแหน่ง?",
    "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_en": "When was the successor who got his seat because of \"until august 2, 1813\" seated?",
    "question_th": "เมื่อใดที่ผู้สืบทอดที่ได้ที่นั่งเพราะ \"จนถึง 2 สิงหาคม พ.ศ. 2356\" ได้นั่ง?",
    "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_en": "The successor for the Massachusetts 20th district was seated on what date?",
    "question_th": "ผู้สืบทอดตำแหน่งเขตที่ 20 ของแมสซาชูเซตส์ได้นั่งในวันที่ใด?",
    "context": "CREATE TABLE table_225098_4 (date_successor_seated VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT vacator FROM table_225098_4 WHERE district = \"Pennsylvania 6th\"",
    "question_en": "Who vacated the Pennsylvania 6th district?",
    "question_th": "ใครพ้นจากเขตที่ 6 ของเพนซิลเวเนีย?",
    "context": "CREATE TABLE table_225098_4 (vacator VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT successor FROM table_225099_3 WHERE state__class_ = \"Maine (2)\"",
    "question_en": "Who was the successor for the state of Maine (2) ?",
    "question_th": "ใครเป็นผู้สืบทอดรัฐเมน (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_en": "What is the date of successors formal installation when the reason for change is resigned december 4, 1819?",
    "question_th": "วันที่ผู้สืบทอดตำแหน่งอย่างเป็นทางการคือเมื่อใดเมื่อเหตุผลในการเปลี่ยนแปลงลาออกในวันที่ 4 ธันวาคม พ.ศ. 2362",
    "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_en": "How many entries are shown for date of successors formal installation where successor is john w. walker (dr)?",
    "question_th": "มีกี่รายการที่แสดงสำหรับวันที่ของการติดตั้งอย่างเป็นทางการของผู้สืบทอดโดยที่ผู้สืบทอดคือ john w วอล์คเกอร์ (ดร.)?",
    "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_en": "what is the state for reason for change is resigned may 15, 1820?",
    "question_th": "รัฐมีเหตุผลอะไรในการเปลี่ยนแปลงจึงลาออกในวันที่ 15 พฤษภาคม พ.ศ. 2363?",
    "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_en": "Who is the trophy presentation in the year 1987?",
    "question_th": "ใครเป็นผู้มอบถ้วยรางวัลในปี 2530?",
    "context": "CREATE TABLE table_22514845_4 (trophy_presentation VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT network FROM table_22514845_4 WHERE s_analyst = \"Eddie Arcaro\"",
    "question_en": "Which network has s analyst of eddie arcaro?",
    "question_th": "เครือข่ายใดมีนักวิเคราะห์ของ Eddie Arcaro?",
    "context": "CREATE TABLE table_22514845_4 (network VARCHAR, s_analyst VARCHAR)"
  },
  {
    "answer": "SELECT reporters FROM table_22514845_4 WHERE year = 1984",
    "question_en": "Who are the reporters for the year of 1984?",
    "question_th": "นักข่าวประจำปี 2527 คือใคร?",
    "context": "CREATE TABLE table_22514845_4 (reporters VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(trophy_presentation) FROM table_22514845_4 WHERE year = 1987",
    "question_en": "How many trophy presentations where in the year 1987?",
    "question_th": "มอบถ้วยรางวัลกี่ครั้งในปี 2530?",
    "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_en": "In which year were howard cosell and jack whitaker reporters and s analyst is bill hartack?",
    "question_th": "ในปีใดที่นักข่าวของฮาวเวิร์ด โคเซลล์ และแจ็ค วิเทเกอร์คือบิล ฮาร์แทค?",
    "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_en": "Who is the race caller when jim mckay and al michaels were s hosts in the year 1987?",
    "question_th": "ใครคือผู้เรียกการแข่งขันเมื่อจิม แมคเคย์และอัล ไมเคิลส์เป็นเจ้าภาพในปี 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_en": "Name the host for  john rotz and howard cosell",
    "question_th": "ตั้งชื่อพิธีกรให้กับจอห์น ร็อตซ์และโฮเวิร์ด โคเซลล์",
    "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_en": "Name the race caller for jim mckay and howard cosell",
    "question_th": "ตั้งชื่อผู้เรียกการแข่งขันของจิม แมคเคย์และโฮเวิร์ด โคเซลล์",
    "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_en": "Name the race caller for jim mckay and howard cosell and eddie arcaro",
    "question_th": "ตั้งชื่อผู้เรียกการแข่งขันสำหรับจิม แมคเคย์, ฮาวเวิร์ด โคเซลล์ และเอ็ดดี้ อาร์คาโร",
    "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_en": "Name the reporters for dave johnson for  eddie arcaro and howard cosell",
    "question_th": "ตั้งชื่อนักข่าวของเดฟ จอห์นสัน สำหรับเอ็ดดี้ อาร์คาโร และโฮเวิร์ด โคเซลล์",
    "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_en": "Name the reporters for howard cosell",
    "question_th": "บอกชื่อนักข่าวของโฮเวิร์ด โคเซลล์",
    "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_en": "Name the number of reporters for  heywood hale broun",
    "question_th": "บอกชื่อจำนวนนักข่าวของเฮย์วู้ด เฮล บรอน",
    "context": "CREATE TABLE table_22514845_5 (reporters VARCHAR, s_analyst VARCHAR)"
  },
  {
    "answer": "SELECT province FROM table_2251578_4 WHERE elevation__m_ = 4550",
    "question_en": "Which province has an elevation of 4550? ",
    "question_th": " จังหวัดใดมีระดับความสูง 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_en": "Which province is in the district of San Antonio de Chuca? ",
    "question_th": " จังหวัดใดอยู่ในอำเภอซานอันโตนิโอเดชูกา",
    "context": "CREATE TABLE table_2251578_4 (province VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(elevation__m_) FROM table_2251578_4 WHERE district = \"Paratia\"",
    "question_en": "How many elevations are listed for Paratia? ",
    "question_th": " Paratia มีระดับความสูงกี่ระดับ?",
    "context": "CREATE TABLE table_2251578_4 (elevation__m_ VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT province FROM table_2251578_4 WHERE district = \"Condoroma\"",
    "question_en": "What province is in the district of Condoroma? ",
    "question_th": " คอนโดโรมา อยู่จังหวัดอะไรคะ?",
    "context": "CREATE TABLE table_2251578_4 (province VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT reporters FROM table_22514845_2 WHERE year = 2003",
    "question_en": "Name the reporters for 2003",
    "question_th": "ตั้งชื่อผู้รายงานประจำปี 2546",
    "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_en": "Name the total number for race caller for bob costas and charlsie cantey",
    "question_th": "ตั้งชื่อหมายเลขรวมของผู้เรียกการแข่งขันสำหรับ Bob costas และ 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_en": "Who is the race caller for the year 1994?",
    "question_th": "ใครคือผู้เรียกการแข่งขันประจำปี 1994?",
    "context": "CREATE TABLE table_22514845_3 (race_caller VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(reporters) FROM table_22514845_3 WHERE year = 1993",
    "question_en": "How many reporters for the year 1993?",
    "question_th": "ปี 2536 มีนักข่าวกี่คน?",
    "context": "CREATE TABLE table_22514845_3 (reporters VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT starting_odds FROM table_22517564_3 WHERE opening_odds = \"2-1\"",
    "question_en": "What were the starting odds for the opening odds of 2-1?",
    "question_th": "อัตราต่อรองเริ่มต้นของอัตราต่อรองเปิด 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_en": "Who was the jockey with opening odds of 4-1?",
    "question_th": "ใครคือจ๊อกกี้ที่มีอัตราต่อรองเปิด 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_en": "HOw many jockeys had eoin harty as a trainer",
    "question_th": "มีจ๊อกกี้กี่คนที่มี eoin harty เป็นผู้ฝึกสอน",
    "context": "CREATE TABLE table_22517564_3 (jockey VARCHAR, trainer VARCHAR)"
  },
  {
    "answer": "SELECT post FROM table_22517564_3 WHERE horse_name = \"Chocolate Candy\"",
    "question_en": "Which post had the horse named chocolate candy?",
    "question_th": "โพสไหนม้าชื่อช็อกโกแลตแคนดี้?",
    "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_en": "What is every date successor seated for the Virginia 11th District?",
    "question_th": "ผู้สืบทอดทุกวันจะนั่งอยู่ในเขตที่ 11 ของเวอร์จิเนียหรือไม่?",
    "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_en": "Name the successor for not filled this congress",
    "question_th": "ตั้งชื่อผู้สืบทอดที่ไม่ได้เข้าร่วมการประชุมครั้งนี้",
    "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_en": "Name the district for  rep. warren r. davis died during previous congress",
    "question_th": "ตั้งชื่อเขตสำหรับตัวแทน วอร์เรน อาร์. เดวิสเสียชีวิตระหว่างการประชุมครั้งก่อน",
    "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_en": "Name the total number of reason for change for not filled this congress",
    "question_th": "ระบุจำนวนเหตุผลทั้งหมดสำหรับการเปลี่ยนแปลงที่ไม่ผ่านการประชุมครั้งนี้",
    "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_en": "Name the vacator for resigned february 26, 1836 because of ill health",
    "question_th": "ตั้งชื่อผู้ว่างงานซึ่งลาออกเมื่อวันที่ 26 กุมภาพันธ์ พ.ศ. 2379 เนื่องจากสุขภาพไม่ดี",
    "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_en": "Name the vacator for failure to elect",
    "question_th": "ตั้งชื่อผู้ว่างงานหากไม่เข้ารับการเลือก",
    "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_en": "Name the state class for  iowa admitted to the union december 28, 1846",
    "question_th": "ตั้งชื่อชั้นเรียนของรัฐสำหรับไอโอวาที่เข้ารับการรักษาในสหภาพเมื่อวันที่ 28 ธันวาคม พ.ศ. 2389",
    "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_en": "Who was the vacator when the reason for change was failure to elect?",
    "question_th": "ใครคือผู้ว่างเมื่อไม่สามารถเลือกเหตุผลของการเปลี่ยนแปลงได้?",
    "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_en": "Name the number of nat for total g of 6",
    "question_th": "ตั้งชื่อจำนวนแนทสำหรับผลรวมกรัมของ 6",
    "context": "CREATE TABLE table_22542179_3 (nat VARCHAR, total_g VARCHAR)"
  },
  {
    "answer": "SELECT l_g FROM table_22542179_3 WHERE player = \"Rubio\"",
    "question_en": "Name the l g for rubio",
    "question_th": "ตั้งชื่อ lg สำหรับ 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_en": "Name the least total apaps for txema",
    "question_th": "ตั้งชื่อ apaps ทั้งหมดน้อยที่สุดสำหรับ txema",
    "context": "CREATE TABLE table_22542179_3 (total_apps INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(pop__km²) FROM table_2252745_1 WHERE administrative_centre = \"Egilsstaðir\"",
    "question_en": "when administrative centre is egilsstaðir, what is the pop./ km²?",
    "question_th": "เมื่อศูนย์กลางการบริหารคือ egilsstaðir ค่า pop./ km² คืออะไร?",
    "context": "CREATE TABLE table_2252745_1 (pop__km² VARCHAR, administrative_centre VARCHAR)"
  },
  {
    "answer": "SELECT pop__km² FROM table_2252745_1 WHERE area__km²_ = 22721",
    "question_en": "when the area (km²) is 22721, what is the pop./ km²?",
    "question_th": "เมื่อพื้นที่ (กม.²) คือ 22721 ค่า pop./ km² คืออะไร?",
    "context": "CREATE TABLE table_2252745_1 (pop__km² VARCHAR, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT MAX(population_2008_07_01) FROM table_2252745_1 WHERE administrative_centre = \"Selfoss\"",
    "question_en": "What is the max pop of 2008 for selfoss?",
    "question_th": "ป๊อปสูงสุดของปี 2008 สำหรับเซลฟี่คือเท่าไร?",
    "context": "CREATE TABLE table_2252745_1 (population_2008_07_01 INTEGER, administrative_centre VARCHAR)"
  },
  {
    "answer": "SELECT pop__km² FROM table_2252745_1 WHERE _number = 4",
    "question_en": "When the # is 4, what is the pop./ km²?",
    "question_th": "เมื่อ # คือ 4 pop./ km² เป็นเท่าใด?",
    "context": "CREATE TABLE table_2252745_1 (pop__km² VARCHAR, _number VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_22538587_3 WHERE l_apps = 17",
    "question_en": "Name the player for l apps for 17",
    "question_th": "ตั้งชื่อเครื่องเล่นสำหรับ l แอพสำหรับ 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_en": "Name the least total apps for jaime",
    "question_th": "ตั้งชื่อแอปทั้งหมดน้อยที่สุดสำหรับ 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_en": "Name the total number of lg for cg is larger than 1.0 for c apps is 3",
    "question_th": "ตั้งชื่อจำนวนรวมของ lg สำหรับ cg มากกว่า 1.0 สำหรับแอป c คือ 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_en": "If the runner-up is [[|]] 151/8 (50.0 overs), what were the results?",
    "question_th": "หากรองแชมป์คือ [[|]] 151/8 (50.0 โอเวอร์) ผลลัพธ์เป็นอย่างไรบ้าง?",
    "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_en": "What is the name of the host nations if the winner was Hong Kong 207/6 (47.1 overs)?",
    "question_th": "ประเทศเจ้าภาพชื่ออะไรถ้าผู้ชนะคือฮ่องกง 207/6 (47.1 โอเวอร์)?",
    "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_en": "If the results are Kuwait won by 72 runs scorecard, what are the details?",
    "question_th": "ถ้าผลคูเวตชนะ 72 รัน มีรายละเอียดอะไรบ้าง?",
    "context": "CREATE TABLE table_22577693_1 (details VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_22577693_1 WHERE final_venue = \"Kowloon Cricket Club\"",
    "question_en": "Who was the winner if the final venue is Kowloon Cricket Club?",
    "question_th": "ใครคือผู้ชนะหากสถานที่สุดท้ายคือ 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_en": "How many u.s. viewers (million) have a series # 83?",
    "question_th": "พวกเราผู้ชม (ล้าน) คนมีซีรีย์ # 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_en": "How many u.s. viewers (millions) have 5 as the season #?",
    "question_th": "ผู้ชมของเรา (ล้านคน) มี 5 คนเป็นซีซัน # กี่คน?",
    "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_en": "How many written by have wendey stanzler as the director?",
    "question_th": "มีเวนดี้ สแตนซ์เลอร์เป็นผู้กำกับกี่คนที่เขียนบท?",
    "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_en": "What is the original air date where tracy poust & jon kinnally was written by?",
    "question_th": "วันที่ออกอากาศดั้งเดิมที่ Tracy Poust & Jon Kinnally เขียนโดยคือเมื่อใด",
    "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_en": "Who is the written by when mark worthington is the director?",
    "question_th": "ใครเป็นคนเขียนบทตอนที่มาร์ค เวิร์ธธิงตันเป็นผู้กำกับ?",
    "context": "CREATE TABLE table_22570439_1 (written_by VARCHAR, directed_by VARCHAR)"
  },
  {
    "answer": "SELECT reporters FROM table_22583466_5 WHERE year = 1976",
    "question_en": "In 1976, who was the reporter for the Belmont Stakes?",
    "question_th": "ในปี 1976 ใครเป็นนักข่าวของสเตคเบลมอนต์",
    "context": "CREATE TABLE table_22583466_5 (reporters VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT race_caller FROM table_22583466_5 WHERE year = 1978",
    "question_en": "Who called the race in 1978?",
    "question_th": "ใครเป็นผู้เรียกการแข่งขันในปี 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_en": "For the race called by Marshall Cassidy, who was the host?",
    "question_th": "สำหรับการแข่งขันที่เรียกโดย มาร์แชล แคสซิดี้ ใครเป็นเจ้าบ้าน?",
    "context": "CREATE TABLE table_22583466_5 (s_host VARCHAR, race_caller VARCHAR)"
  },
  {
    "answer": "SELECT reporters FROM table_22583466_5 WHERE year = 1977",
    "question_en": "Who were the reporters for the 1977 Belmont Stakes?",
    "question_th": "ใครคือนักข่าวของ Belmont Stakes ปี 1977",
    "context": "CREATE TABLE table_22583466_5 (reporters VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT race_caller FROM table_22583466_3 WHERE year = 1998",
    "question_en": "Who called the race in 1998? ",
    "question_th": " ใครเป็นผู้เรียกการแข่งขันในปี 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_en": "who was position 3 in 2007-2008?",
    "question_th": "ใครคือตำแหน่งที่ 3 ในปี 2550-2551?",
    "context": "CREATE TABLE table_22591910_4 (position VARCHAR)"
  },
  {
    "answer": "SELECT standing FROM table_2259285_1 WHERE goals_against = 279",
    "question_en": "What was the standing when goal against were 279? ",
    "question_th": " อะไรคือจุดยืนเมื่อประตูที่เสียไปคือ 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_en": "What is the winning pct % if the goal for are 229? ",
    "question_th": " เปอร์เซ็นต์การชนะจะเป็นเท่าใดหากเป้าหมายคือ 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_en": "What was the winning % when there were 322 goals? ",
    "question_th": " เปอร์เซ็นต์การชนะเมื่อทำได้ 322 ประตูเป็นเท่าใด?",
    "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_en": "Name the year for willie goggin",
    "question_th": "ตั้งชื่อปีสำหรับวิลลี่ ก็อกกิน",
    "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_en": "Name the winning score for pga championship",
    "question_th": "บอกชื่อคะแนนชนะพีจีเอแชมเปี้ยนชิพ",
    "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_en": "Name the least year for walter hagen",
    "question_th": "ตั้งชื่อปีน้อยที่สุดสำหรับ 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_en": "What was the score in the final where one of the opponents in the final was fitzgerald vilas?",
    "question_th": "คะแนนในรอบชิงชนะเลิศเป็นเท่าใด โดยหนึ่งในฝ่ายตรงข้ามในรอบชิงชนะเลิศคือ ฟิตซ์เจอรัลด์ วิลาส์?",
    "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_en": "What was the surface for the  opponents in the final with fitzgerald vilas?",
    "question_th": "พื้นผิวของคู่ต่อสู้ในรอบชิงชนะเลิศกับฟิตซ์เจอรัลด์ วิลาสเป็นอย่างไร?",
    "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–4, 7–6 2\"",
    "question_en": "Who were the opponents in the final where the score in the final is 6–4, 7–6 2?",
    "question_th": "คู่ต่อสู้ในรอบชิงชนะเลิศคือใครโดยที่คะแนนในรอบชิงชนะเลิศคือ 6–4, 7–6 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_en": "What was the partner count when the opponents in the final was forget leconte?",
    "question_th": "พันธมิตรนับเท่าไรเมื่อคู่ต่อสู้ในรอบชิงชนะเลิศถูกลืมเลคอนเต้?",
    "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–6 2 , 6–1\"",
    "question_en": "What was the year date when one of the opponents in the final was bahrami leconte and score in the final is 7–6 2 , 6–1?",
    "question_th": "วันที่เท่าไหร่คือวันที่ฝ่ายตรงข้ามคนใดคนหนึ่งในรอบชิงชนะเลิศคือบารามี เลคอนเต และทำคะแนนในรอบชิงชนะเลิศได้ 7–6 2 , 6–1",
    "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–3, 6–2, 6–4\"",
    "question_en": "Name the number of year for score being  6–3, 6–2, 6–4",
    "question_th": "ตั้งชื่อจำนวนปีสำหรับคะแนนเป็น 6–3, 6–2, 6–4",
    "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–0, 6–3\"",
    "question_en": "Name the surface for 6–0, 6–3",
    "question_th": "ตั้งชื่อพื้นผิวสำหรับ 6–0, 6–3",
    "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_en": "Name the championship for peter mcnamara",
    "question_th": "ตั้งชื่อแชมป์ให้กับปีเตอร์ แม็คนามารา",
    "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_en": "Name the championship for 1980 hard surface",
    "question_th": "ตั้งชื่อแชมป์พื้นผิวแข็งปี 1980",
    "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_en": "If the team is Billy Ballew Motorsports, what is the race time?",
    "question_th": "ถ้าทีมคือ บิลลี่ บอลล์ มอเตอร์สปอร์ต แข่งเวลากี่โมง?",
    "context": "CREATE TABLE table_2260452_1 (race_time VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_2260452_1 WHERE driver = \"Robert Pressley\"",
    "question_en": "What was the date if the driver was Robert Pressley?",
    "question_th": "วันที่เท่าไหร่ถ้าคนขับคือ 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_en": "If the race time is 2:00:33, what is the average speed?",
    "question_th": "หากเวลาแข่งขันคือ 2:00:33 น. ความเร็วเฉลี่ยคือเท่าไร?",
    "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_en": "What is every entry for 1982-83 for rank 1?",
    "question_th": "ทุกรายการในปี 1982-83 สำหรับอันดับ 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_en": "How many heights are listed for Jesse Holley in the WR position? ",
    "question_th": "Jesse Holley อยู่ในตำแหน่ง WR มีความสูงเท่าใด",
    "context": "CREATE TABLE table_22603701_1 (height VARCHAR, position VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_22603701_1 WHERE college = \"Wisconsin\"",
    "question_en": "What is the result for Wisconsin? ",
    "question_th": " ผลลัพธ์สำหรับวิสคอนซินคืออะไร?",
    "context": "CREATE TABLE table_22603701_1 (result VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_22603701_1 WHERE name = \"Steve Gonzalez\"",
    "question_en": "What is the result for Steve Gonzalez? ",
    "question_th": " ผลลัพธ์ของสตีฟ กอนซาเลซคืออะไร?",
    "context": "CREATE TABLE table_22603701_1 (result VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_22603701_1 WHERE college = \"Menlo college\"",
    "question_en": "What are the positions for Menlo College? ",
    "question_th": " ตำแหน่งงานของ 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_en": "If the distribution mechanism is the Microsoft website and the security issues id 98-004, what are all of the features?",
    "question_th": "หากกลไกการเผยแพร่คือเว็บไซต์ Microsoft และปัญหาด้านความปลอดภัย id 98-004 ฟีเจอร์ทั้งหมดมีอะไรบ้าง",
    "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_en": "With the distribution mechanism of Microsoft website and the security issues of 98-004, what is the version?",
    "question_th": "ด้วยกลไกการเผยแพร่ของเว็บไซต์ Microsoft และปัญหาด้านความปลอดภัย 98-004 เวอร์ชันคืออะไร",
    "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_en": "If the security issues is 99-025 and the distribution mechanism is the Microsoft website, what is the release date total number?",
    "question_th": "หากปัญหาด้านความปลอดภัยคือ 99-025 และกลไกการจัดจำหน่ายคือเว็บไซต์ Microsoft จำนวนรวมของวันที่วางจำหน่ายคือเท่าใด",
    "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_en": "With the version of 1.5a, what is the release date?",
    "question_th": "เวอร์ชั่น 1.5a จะวางจำหน่ายวันที่เท่าไรครับ?",
    "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_en": "If the distribution mechanism is windows nt 4.0 option pack Microsoft office 97 and the features is service release, what is the version?",
    "question_th": "หากกลไกการแจกจ่ายเป็น Windows nt 4.0 option pack Microsoft office 97 และคุณสมบัติคือการเผยแพร่บริการ เวอร์ชันคืออะไร",
    "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_en": "If the version is 1.5b, what is the distribution mechanism?",
    "question_th": "ถ้าเป็นเวอร์ชัน 1.5b กลไกการกระจายคืออะไร?",
    "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_en": "How many locations are listed for the winner Temple?",
    "question_th": "มีสถานที่กี่แห่งที่ได้รับการระบุไว้สำหรับวัดผู้ชนะ?",
    "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_en": "How many locations are listed for the Big 12 Conference?",
    "question_th": "มีสถานที่กี่แห่งที่ระบุไว้สำหรับการประชุม Big 12?",
    "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_en": "Who had the best regular season in the contest won by Arkansas-Pine Bluff?",
    "question_th": "ใครมีฤดูกาลปกติที่ดีที่สุดในการแข่งขันที่ชนะโดย 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 = \"孫明揚\"",
    "question_en": "How old was the official with Chinese name  孫明揚?",
    "question_th": "ข้าราชการชื่อภาษาจีน 孫明揚 อายุเท่าไหร่?",
    "context": "CREATE TABLE table_2263674_1 (age_at_appointment VARCHAR, chinese_name VARCHAR)"
  },
  {
    "answer": "SELECT romanised_name FROM table_2263674_1 WHERE chinese_name = \"梁愛詩\"",
    "question_en": "What's 梁愛詩's romanised name?",
    "question_th": "梁愛詩 ชื่ออักษรโรมันว่าอะไร",
    "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_en": "What's the romanised name of the official who was Secretary for health, welfare and food?",
    "question_th": "ข้าราชการที่เป็นรัฐมนตรีกระทรวงสาธารณสุข สวัสดิการ และอาหาร อักษรโรมันชื่ออะไร",
    "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_en": "What was Anthony Leung Kam-Chung previous position?",
    "question_th": "Anthony Leung Kam-Chung ตำแหน่งก่อนหน้าคืออะไร?",
    "context": "CREATE TABLE table_2263674_1 (portfolio VARCHAR, romanised_name VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_22654073_13 WHERE date = \"May 11\"",
    "question_en": "List all high rebound entries from May 11.",
    "question_th": "แสดงรายการการรีบาวด์สูงทั้งหมดตั้งแต่วันที่ 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_en": "How many games were there on May 1?",
    "question_th": "วันที่ 1 พฤษภาคม มีกี่เกม?",
    "context": "CREATE TABLE table_22654073_13 (game VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_22654073_13 WHERE series = \"2-3\"",
    "question_en": "List all high assists in series 2-3.",
    "question_th": "แสดงรายการการช่วยเหลือสูงทั้งหมดในซีรีส์ 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_en": "How many games were played on May 11?",
    "question_th": "วันที่ 11 พฤษภาคม มีการเล่นกี่เกม?",
    "context": "CREATE TABLE table_22654073_13 (game VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_22654073_7 WHERE team = \"Chicago Bulls\"",
    "question_en": "Name the score for chicago bulls",
    "question_th": "ตั้งชื่อคะแนนให้ชิคาโกบูลส์",
    "context": "CREATE TABLE table_22654073_7 (score VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_22654073_7 WHERE record = \"22-8\"",
    "question_en": "Name the location attendance for 22-8",
    "question_th": "ตั้งชื่อสถานที่เข้าร่วมสำหรับวันที่ 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_en": "Name the high points for mo williams , lebron james , j.j. hickson (6)",
    "question_th": "พูดถึงจุดสูงสุดของโม วิลเลียมส์, เลอบรอน เจมส์, เจเจ ฮิคสัน (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_en": "Name the high assists for december 13",
    "question_th": "ทายแอสซิสต์สูงสุดประจำวันที่ 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_en": "What value can you find under the column \"august 21-22\" and the row of June 11, 1983?",
    "question_th": "คุณสามารถหาค่าใดได้ใต้คอลัมน์ \"21-22 สิงหาคม\" และแถววันที่ 11 มิถุนายน 2526",
    "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_en": "What was the location and attendance for the game against the team with a 51-15 record with the Cavaliers?",
    "question_th": "สถานที่และผู้เข้าชมเกมกับทีมที่มีสถิติ 51-15 กับคาวาเลียร์สคือสถานที่ใด?",
    "context": "CREATE TABLE table_22654073_10 (location_attendance VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(score) FROM table_22654073_8 WHERE record = \"27-9\"",
    "question_en": "How many scores are associated with a record of 27-9?",
    "question_th": "มีกี่คะแนนที่เกี่ยวข้องกับสถิติ 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_en": "How many games are associated with a record of 29-10?",
    "question_th": "มีกี่เกมที่เกี่ยวข้องกับสถิติ 29-10?",
    "context": "CREATE TABLE table_22654073_8 (game VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_22654073_6 WHERE record = \"3-2\"",
    "question_en": "Name the team for record 3-2",
    "question_th": "ตั้งชื่อทีมทำสถิติ 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_en": "Name the date for lebron james , mo williams (21)",
    "question_th": "ตั้งชื่อวันที่ของเลอบรอน เจมส์ โม วิลเลียมส์ (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_en": "Name the high points for record 9-4",
    "question_th": "ตั้งชื่อคะแนนสูงสุดสำหรับบันทึก 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–86 (OT)\"",
    "question_en": "Name the total number of date for l 85–86 (ot)",
    "question_th": "ตั้งชื่อจำนวนวันที่ทั้งหมดสำหรับ l 85–86 (ot)",
    "context": "CREATE TABLE table_22654073_6 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(network) FROM table_22654139_2 WHERE year = 2007",
    "question_en": "Name the network for 2007 total",
    "question_th": "ตั้งชื่อเครือข่ายสำหรับปี 2550 ทั้งหมด",
    "context": "CREATE TABLE table_22654139_2 (network VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT s_analyst FROM table_22654139_2",
    "question_en": "Name the analysts",
    "question_th": "ตั้งชื่อนักวิเคราะห์",
    "context": "CREATE TABLE table_22654139_2 (s_analyst VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_22656187_9 WHERE partnering = \"Frederica Piedade\"",
    "question_en": "What was the result for a partnering of Frederica Piedade?",
    "question_th": "อะไรคือผลลัพธ์ของการเป็นหุ้นส่วนของ 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_en": "Which round has a win-loss result of loss and an edition of 2012 Fed Cup Europe/Africa Group I?",
    "question_th": "รอบใดมีผลแพ้ชนะและผลการแข่งขัน Fed Cup Europe/Africa Group I ประจำปี 2012?",
    "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_en": "Name the manufacturer for cale yarborough for 1984",
    "question_th": "ตั้งชื่อผู้ผลิต Cale Yarborough ในปี 1984",
    "context": "CREATE TABLE table_2266230_1 (manufacturer VARCHAR, driver VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT report FROM table_2266230_1 WHERE year = \"2003\"",
    "question_en": "Name the report for 2003",
    "question_th": "ตั้งชื่อรายงานประจำปี 2546",
    "context": "CREATE TABLE table_2266230_1 (report VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT date_opened FROM table_22665117_1 WHERE dist_id = 11901",
    "question_en": "What is the date opened if thedistrict ID is 11901?",
    "question_th": "ถ้ารหัสเขตคือ 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_en": "If the district name is the Academy of Flint, what is the authorizing agency?",
    "question_th": "หากชื่อเขตคือ Academy of Flint หน่วยงานที่มีอำนาจคือหน่วยงานใด",
    "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_en": "If the district ID is 74907, what is the name of the district?",
    "question_th": "ถ้ารหัสอำเภอคือ 74907 อำเภอชื่ออะไร?",
    "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_en": "If the name of the district is the Charyl Stockwell Academy, what is the county name?",
    "question_th": "ถ้าชื่อเขตคือ Charyl Stockwell Academy แล้วชื่อเขตคืออะไร?",
    "context": "CREATE TABLE table_22665117_1 (county VARCHAR, district_name VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_2266976_1 WHERE year = \"1986\"",
    "question_en": "Who was the driver in 1986?",
    "question_th": "ใครคือคนขับในปี 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_en": "When was an average speed of 81.388 mph recorded?",
    "question_th": "ความเร็วเฉลี่ย 81.388 ไมล์ต่อชั่วโมงถูกบันทึกไว้เมื่อใด",
    "context": "CREATE TABLE table_2266976_1 (date VARCHAR, average_speed__mph_ VARCHAR)"
  },
  {
    "answer": "SELECT manufacturer FROM table_2266976_1 WHERE year = \"1990\"",
    "question_en": "Who was the manufacturer in 1990?",
    "question_th": "ใครเป็นผู้ผลิตในปี 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_en": "Who was the manufacturer in the year when the race lasted 2:30:28?",
    "question_th": "ใครคือผู้ผลิตในปีที่การแข่งขันดำเนินไปในเวลา 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_en": "What team competed in 2003?",
    "question_th": "ทีมใดเข้าแข่งขันในปี 2546?",
    "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_en": "How long in miles (km) was the race that lasted 3:07:53?",
    "question_th": "การแข่งขันที่กินเวลา 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_en": "Name the race name for june 6",
    "question_th": "ตั้งชื่อการแข่งขันสำหรับวันที่ 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_en": "Name the location for trenton 300",
    "question_th": "ตั้งชื่อสถานที่สำหรับเทรนตัน 300",
    "context": "CREATE TABLE table_22669375_1 (location VARCHAR, race_name VARCHAR)"
  },
  {
    "answer": "SELECT race_name FROM table_22669375_1 WHERE rnd = 11",
    "question_en": "Name the race name for rnd being 11",
    "question_th": "ตั้งชื่อการแข่งขันสำหรับอันดับที่ 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_en": "What length was won by Roger McCluskey?",
    "question_th": "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_en": "What rounds did Phoenix International Raceway host?",
    "question_th": "Phoenix International Raceway เป็นเจ้าภาพจัดการแข่งขันรอบใดบ้าง?",
    "context": "CREATE TABLE table_22669816_1 (rnd VARCHAR, track VARCHAR)"
  },
  {
    "answer": "SELECT length FROM table_22669816_1 WHERE track = \"Pocono International Raceway\"",
    "question_en": "What are the lengths hosted by Pocono International Raceway?",
    "question_th": "สนามแข่งรถ 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_en": "What lengths did Phoenix International Raceway host?",
    "question_th": "Phoenix International Raceway เป็นเจ้าภาพจัดการแข่งขันนานเท่าใด",
    "context": "CREATE TABLE table_22669816_1 (length VARCHAR, track VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_22669044_7 WHERE score = \"L 83–118 (OT)\"",
    "question_en": "Name the location attendance for score being l 83–118 (ot)",
    "question_th": "ตั้งชื่อสถานที่ การเข้างาน คะแนนเป็น l 83–118 (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_en": "Name the high assists for december 9",
    "question_th": "ทายซิซิสต์สูงสุดประจำวันที่ 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_en": "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?",
    "question_th": "จำนวนผู้ชนะทั้งหมดเมื่อหัวหน้าประเภททีมคือ Kelme-Costa Blanca และรางวัลการต่อสู้คือเท่าใดคือ 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_en": "Who was the general classification leader when the young rider classification leader was Salvatore Commesso and the winner was Erik Dekker?",
    "question_th": "ใครคือผู้นำประเภททั่วไปเมื่อผู้นำประเภทนักบิดรุ่นเยาว์คือ Salvatore Commesso และผู้ชนะคือ 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_en": "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?",
    "question_th": "จำนวนการจัดประเภททีมทั้งหมดเมื่อผู้นำประเภทนักบิดรุ่นเยาว์คือ Salvatore Commesso และผู้ชนะรางวัลด้านการต่อสู้คือ 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_en": "In what round did Al Unser win at Wisconsin State Fair Park Speedway? ",
    "question_th": " Al Unser ชนะที่สนามแข่งรถ Wisconsin State Fair Park ในรอบใด",
    "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_en": "How many races are in College Station, Texas and won by Johnny Rutherford? ",
    "question_th": " มีการแข่งขันกี่ครั้งในคอลเลจสเตชัน รัฐเท็กซัส และจอห์นนี่ รัทเทอร์ฟอร์ด ชนะ",
    "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_en": "What was the name of the race that Al Unser had the pole position? ",
    "question_th": " เผ่าพันธุ์ที่ อัล อุนเซอร์ ได้ตำแหน่งโพลโพซิชั่นชื่ออะไร?",
    "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_en": "What is the name of the track for the International 500 mile Sweepstakes race? ",
    "question_th": " สนามแข่งชิงโชคนานาชาติ 500 ไมล์ชื่ออะไร",
    "context": "CREATE TABLE table_22673872_1 (track VARCHAR, race_name VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_22673872_1 WHERE pole_position = \"Gordon Johncock\"",
    "question_en": "Which locations did Gordon Johncock hold the pole position? ",
    "question_th": " Gordon Johncock ดำรงตำแหน่งโพลโพสิชันตำแหน่งใด",
    "context": "CREATE TABLE table_22673872_1 (location VARCHAR, pole_position VARCHAR)"
  },
  {
    "answer": "SELECT classification FROM table_2266990_2 WHERE title = \"Fish Rap Live!\"",
    "question_en": "What classifications does Fish Rap live! has?",
    "question_th": "Fish Rap อยู่ในประเภทใด! มี?",
    "context": "CREATE TABLE table_2266990_2 (classification VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(race_name) FROM table_22673956_1 WHERE date = \"October 1\"",
    "question_en": "How many races took place on October 1?",
    "question_th": "มีการแข่งขันกี่รายการในวันที่ 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_en": "How many types of tracks are there on the Phoenix International raceway?",
    "question_th": "สนามแข่ง Phoenix International มีสนามแข่งกี่ประเภท?",
    "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_en": "Daily Empress Indy Silverstone took place on which round?",
    "question_th": "Daily Empress Indy Silverstone จัดขึ้นในรอบใด",
    "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_en": "How many races took place on the Indianapolis Motor Speedway track?",
    "question_th": "มีการแข่งขันกี่ครั้งบนสนาม Indianapolis Motor Speedway",
    "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_en": "What driver achieved a 3:50:12 race time?",
    "question_th": "นักแข่งคนไหนที่ทำเวลาแข่งขันได้ 3:50:12?",
    "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_en": "Can you tell me the manufacturer behind Race Hill Farm Team?",
    "question_th": "คุณช่วยบอกผู้ผลิตที่อยู่เบื้องหลังทีม Race Hill Farm หน่อยได้ไหม?",
    "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_en": "How many laps have a 3:34:26 race time?",
    "question_th": "เวลาแข่งขันมีกี่รอบ 3:34:26?",
    "context": "CREATE TABLE table_2267465_1 (laps VARCHAR, race_time VARCHAR)"
  },
  {
    "answer": "SELECT average_speed__mph_ FROM table_2267465_1 WHERE year = \"1964\"",
    "question_en": "What's the average mph of 1964?",
    "question_th": "ไมล์ต่อชั่วโมงเฉลี่ยของปี 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_en": "Whose is the manufacturer for team Ranier-Lundy? ",
    "question_th": " ใครเป็นผู้ผลิตทีม 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_en": "In what year was the average speed 92.68?",
    "question_th": "ความเร็วเฉลี่ย 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_en": "How many years was Pontiac the manufacturer for Joe Gibbs Racing? ",
    "question_th": " Pontiac เป็นผู้ผลิต 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_en": "What is the date for the race that had the time of 2:43:19?",
    "question_th": "แข่งขันเวลา 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_en": "How many average speeds are listed in the year 2003? ",
    "question_th": " ในปี พ.ศ. 2546 มีการระบุความเร็วเฉลี่ยไว้เท่าใด",
    "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_en": "What team had a race time of 2:53:57?",
    "question_th": "ทีมใดมีเวลาแข่งขัน 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_en": "Name the sprint classification being alejandro valverde",
    "question_th": "ตั้งชื่อประเภทการวิ่งว่า อเลฮานโดร บัลเบร์เด",
    "context": "CREATE TABLE table_22713796_14 (sprint_classification VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT stage FROM table_22713796_14 WHERE mountains_classification = \"no award\"",
    "question_en": "Name the stage for no award",
    "question_th": "ตั้งชื่อเวทีที่ไม่ได้รับรางวัล",
    "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_en": "Name the total number of stage for lloyd mondory",
    "question_th": "ตั้งชื่อจำนวนเวทีทั้งหมดสำหรับ 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_en": "Name the most stage for alejandro valverde and astana greg henderson",
    "question_th": "กล่าวถึงเวทีที่ยิ่งใหญ่ที่สุดสำหรับอเลฮานโดร บัลเบร์เด้ และอัสตานา เกร็ก เฮนเดอร์สัน",
    "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_en": "When the Border Conference was held, who was the tournament winner?",
    "question_th": "เมื่อการประชุม Border Conference ใครเป็นผู้ชนะการแข่งขัน?",
    "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_en": "When Princeton was the regular season winner, who was the tournament winner?",
    "question_th": "เมื่อพรินซ์ตันเป็นผู้ชนะในฤดูกาลปกติ ใครเป็นผู้ชนะการแข่งขัน?",
    "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_en": "How long has Mel Daniels been playing?",
    "question_th": "Mel Daniels เล่นมานานแค่ไหนแล้ว?",
    "context": "CREATE TABLE table_22719663_3 (experience VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_22719663_3 WHERE college = \"San Jose State\"",
    "question_en": "What position did the player from San Jose State play?",
    "question_th": "นักเตะจากซาน โฮเซ สเตท เล่นตำแหน่งอะไร?",
    "context": "CREATE TABLE table_22719663_3 (position VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT number FROM table_22719663_3 WHERE height = \"6-6\"",
    "question_en": "What was the number of the player that was 6-6?",
    "question_th": "ผู้เล่นหมายเลข 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_en": "If the song choice is Coba and the order number is 10, what is the result?",
    "question_th": "ถ้าเลือกเพลงเป็นโคบาและลำดับเลข 10 ผลลัพธ์จะเป็นอย่างไร?",
    "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_en": "What is the result if Coba is the song choice?",
    "question_th": "ถ้า Coba เป็นตัวเลือกเพลงจะเป็นอย่างไร?",
    "context": "CREATE TABLE table_22736523_1 (result VARCHAR, song_choice VARCHAR)"
  },
  {
    "answer": "SELECT order__number FROM table_22736523_1 WHERE song_choice = \"Coba\"",
    "question_en": "If Coba is the song choice, what is the order number?",
    "question_th": "ถ้า Coba เป็นตัวเลือกเพลง หมายเลขลำดับคืออะไร?",
    "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_en": "If Crazy In Love is the song choice, what is the theme?",
    "question_th": "ถ้า Crazy In Love เป็นตัวเลือกเพลง จะเป็นเพลงอะไร?",
    "context": "CREATE TABLE table_22736523_1 (theme VARCHAR, song_choice VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_22736523_1 WHERE week__number = \"Top 40\"",
    "question_en": "For week number of the top 40, what was the results?",
    "question_th": "สำหรับอันดับ 40 อันดับแรกประจำสัปดาห์ ผลลัพธ์เป็นอย่างไร",
    "context": "CREATE TABLE table_22736523_1 (result VARCHAR, week__number VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_22736523_1 WHERE week__number = \"Top 9\"",
    "question_en": "For week of top 9, what were the results?",
    "question_th": "สัปดาห์ท็อป 9 ผลลัพธ์เป็นอย่างไร?",
    "context": "CREATE TABLE table_22736523_1 (result VARCHAR, week__number VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_2273738_1 WHERE city = \"Birmingham\"",
    "question_en": "The city of Birmingham is what type of location?",
    "question_th": "เมืองเบอร์มิงแฮมเป็นสถานที่ประเภทใด?",
    "context": "CREATE TABLE table_2273738_1 (type VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_2273738_1 WHERE local_authority = \"Leeds city Council\"",
    "question_en": "Leeds City Council is the local authority for what type of location?",
    "question_th": "สภาเมืองลีดส์เป็นหน่วยงานท้องถิ่นของสถานที่ประเภทใด",
    "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_en": "Tyne and Wear County has what total membership for their metropolitan area?",
    "question_th": "เทศมณฑลไทน์และแวร์มีสมาชิกทั้งหมดเท่าใดสำหรับเขตเมืองใหญ่ของตน",
    "context": "CREATE TABLE table_2273738_1 (metropolitan_area VARCHAR, county VARCHAR)"
  },
  {
    "answer": "SELECT MAX(metropolitan_area) FROM table_2273738_1 WHERE city = \"Manchester\"",
    "question_en": "What is the total membership for the metropolitan area in the city of Manchester?",
    "question_th": "จำนวนสมาชิกรวมของเขตมหานครในเมืองแมนเชสเตอร์คือเท่าไร?",
    "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_en": "Who was the runner-up (a) if K. P. Ramalingam won the election?",
    "question_th": "ใครคือรองชนะเลิศ (ก) ถ้า ก.พ. รามาลินกัม ชนะการเลือกตั้ง?",
    "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_en": "When 1 (5) is the races what is the team name?",
    "question_th": "เมื่อการแข่งขันครั้งที่ 1 (5) เป็นการแข่งขัน ทีมชื่ออะไร?",
    "context": "CREATE TABLE table_22737506_1 (team_name VARCHAR, races VARCHAR)"
  },
  {
    "answer": "SELECT MAX(poles) FROM table_22737506_1 WHERE pos = \"19th\"",
    "question_en": "When 19th is the position what is the highest amount of poles?",
    "question_th": "เมื่ออันดับที่ 19 ครองตำแหน่งโพลสูงสุดจำนวนเท่าใด?",
    "context": "CREATE TABLE table_22737506_1 (poles INTEGER, pos VARCHAR)"
  },
  {
    "answer": "SELECT pos FROM table_22737506_1 WHERE points = 86",
    "question_en": "When 86  is the amount of points what is the position?",
    "question_th": "เมื่อ 86 คือจำนวนแต้ม ตำแหน่งคืออะไร?",
    "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_en": "Name the most margin for nco party and p. ramachandran won",
    "question_th": "ตั้งชื่อมาร์จิ้นสูงสุดสำหรับพรรค nco และ p รามาจันทรันชนะ",
    "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_en": "Name the party a for m. s. k. sathiyendran runner up",
    "question_th": "ตั้งชื่อพรรค ก. สำหรับ มร.ส. เสถียรราษฎร์ รองชนะเลิศ",
    "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_en": "Name the party a for  sriperumbudur",
    "question_th": "ตั้งชื่อพรรคว่า a สำหรับ 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_en": "Name the total number of runner up a for  perambalur",
    "question_th": "ตั้งชื่อจำนวนรองชนะเลิศทั้งหมดสำหรับเปรัมบาลูร์",
    "context": "CREATE TABLE table_22754310_1 (runner_up_a VARCHAR, constituency VARCHAR)"
  },
  {
    "answer": "SELECT constituency FROM table_22754310_1 WHERE margin = 175130",
    "question_en": "Name the constituency for 175130",
    "question_th": "ตั้งชื่อเขตเลือกตั้ง 175130",
    "context": "CREATE TABLE table_22754310_1 (constituency VARCHAR, margin VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(margin) FROM table_22753439_1 WHERE winner = \"S. Singaravadivel\"",
    "question_en": "How many margins have a winner of S. Singaravadivel?",
    "question_th": "ผู้ชนะของ ส.สิงการาวดิเวล มีกำไรเท่าไหร่?",
    "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_en": "How many winners have a runner-up of A. Karthikeyan?",
    "question_th": "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_en": "What is every party with a winner of P. Chidambaram?",
    "question_th": "ทุกฝ่ายมีผู้ชนะ ป. จิตัมพรัม อย่างไรบ้าง?",
    "context": "CREATE TABLE table_22753439_1 (party VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT party AS a FROM table_22753439_1 WHERE constituency = \"Tiruchendur\"",
    "question_en": "What is every party A with a constituency of Tiruchendur?",
    "question_th": "แต่ละฝ่าย A ที่มีเขตเลือกตั้งของ 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_en": "Who is the constituency when the runner-up was d. Venugopal? ",
    "question_th": " ใครเป็นผู้มีสิทธิเลือกตั้งเมื่อรองชนะเลิศคือดี เวนูโกปาล?",
    "context": "CREATE TABLE table_22753245_1 (constituency VARCHAR, runner_up_a VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_22753245_1 WHERE constituency = \"10. Tindivanam\"",
    "question_en": "What is the party where the constituency is 10. Tindivanam? ",
    "question_th": " พรรคที่มีเขตเลือกตั้งคือ 10.ติณฑวานาม คือพรรคอะไร?",
    "context": "CREATE TABLE table_22753245_1 (party VARCHAR, constituency VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_22753245_1 WHERE constituency = \"1. Chennai North\"",
    "question_en": "What is the party when the constituency is 1. Chennai North? ",
    "question_th": " พรรคอะไรเมื่อเขตเลือกตั้งคือ 1.เจนไนเหนือ?",
    "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_en": "How many margin results are listed in the election that was won by L. Adaikalaraj C and the party was the Indian national congress? ",
    "question_th": " มีกี่ผลลัพธ์ที่ระบุไว้ในการเลือกตั้งที่ L. Adaikalaraj C ชนะและพรรคคือสภาแห่งชาติของอินเดีย",
    "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_en": "What is the margin when k. balathandayutham is the winner?",
    "question_th": "ระยะขอบเมื่อ k คืออะไร บาลาธันดายูธัมเป็นผู้ชนะ?",
    "context": "CREATE TABLE table_22754491_1 (margin INTEGER, winner VARCHAR)"
  },
  {
    "answer": "SELECT margin FROM table_22754491_1 WHERE constituency = \"Periyakulam\"",
    "question_en": "What is the margin when periyakulam is the constituency?",
    "question_th": "ระยะขอบเมื่อเปริยากุลัมเป็นเขตเลือกตั้งคืออะไร?",
    "context": "CREATE TABLE table_22754491_1 (margin VARCHAR, constituency VARCHAR)"
  },
  {
    "answer": "SELECT pole_position FROM table_22765887_1 WHERE date = \"August 15, 1981\"",
    "question_en": "Who had the pole position in the August 15, 1981 race? ",
    "question_th": " ใครได้ตำแหน่งโพลโพซิชั่นในการแข่งขันวันที่ 15 สิงหาคม 2524?",
    "context": "CREATE TABLE table_22765887_1 (pole_position VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT track FROM table_22765887_1 WHERE date = \"September 12, 1981\"",
    "question_en": "Which track was used on September 12, 1981? ",
    "question_th": " แทร็กใดที่ใช้ในวันที่ 12 กันยายน พ.ศ. 2524",
    "context": "CREATE TABLE table_22765887_1 (track VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT extension FROM table_22771048_3 WHERE city_neighborhood = \"University of Washington\"",
    "question_en": "Name the extension for university of washington",
    "question_th": "ตั้งชื่อส่วนขยายสำหรับมหาวิทยาลัยวอชิงตัน",
    "context": "CREATE TABLE table_22771048_3 (extension VARCHAR, city_neighborhood VARCHAR)"
  },
  {
    "answer": "SELECT MIN(projected_opening) FROM table_22771048_3",
    "question_en": "Name the least projected opening",
    "question_th": "ตั้งชื่อช่องเปิดที่คาดการณ์น้อยที่สุด",
    "context": "CREATE TABLE table_22771048_3 (projected_opening INTEGER)"
  },
  {
    "answer": "SELECT transit_connections FROM table_22771048_3 WHERE station = \"Capitol Hill U\"",
    "question_en": "Name the transit connections for capitol hill u",
    "question_th": "ตั้งชื่อจุดเชื่อมต่อระบบขนส่งมวลชนสำหรับ 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_en": "How many neighborhoods have a station proposed at a Hospital?",
    "question_th": "มีสถานีที่นำเสนอในโรงพยาบาลกี่แห่ง",
    "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_en": "What are the transit connections from Pioneer Square U?",
    "question_th": "มีการเชื่อมต่อระบบขนส่งมวลชนจาก 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_en": "What's the transit connection in Columbia City, Seattle?",
    "question_th": "การเชื่อมต่อระบบขนส่งมวลชนใน 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_en": "For small patent type of protections, what type of PCT route is available?",
    "question_th": "สำหรับการคุ้มครองประเภทสิทธิบัตรขนาดเล็ก มีเส้นทาง PCT ประเภทใดบ้าง",
    "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_en": "In Tonga, what is the conversion from patent application?",
    "question_th": "ในตองกา การแปลงจากการยื่นขอรับสิทธิบัตรเป็นอย่างไร",
    "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_en": "For short patent type of protections, what type of PCT route is available?",
    "question_th": "การคุ้มครองสิทธิบัตรประเภทสั้นมีเส้นทาง PCT ประเภทใดให้เลือก",
    "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_en": "In Tangier Zone, what is the PCT route availibility?",
    "question_th": "ใน Tangier Zone เส้นทาง PCT พร้อมให้บริการเป็นอย่างไร",
    "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_en": "When the PCT route available is yes and the maximum term is 10 years, what are the available conversions from patent applications?",
    "question_th": "เมื่อเส้นทาง PCT ที่มีอยู่เป็นใช่และระยะเวลาสูงสุดคือ 10 ปี การแปลงที่มีอยู่จากการยื่นขอรับสิทธิบัตรจะเป็นเท่าใด",
    "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_en": "What was the result against the team which the Cowboys have a 6-2 record against?",
    "question_th": "ผลการแข่งขันกับทีมที่คาวบอยส์มีสถิติ 6-2 เป็นอย่างไร?",
    "context": "CREATE TABLE table_22801331_1 (result VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT MIN(opponents) FROM table_22801331_1 WHERE cowboys_points = 36",
    "question_en": "What is the fewest points opponents have scored when the Cowboys score 36?",
    "question_th": "ฝ่ายตรงข้ามได้คะแนนน้อยที่สุดเมื่อคาวบอยส์ทำคะแนนได้ 36 คือเท่าไร?",
    "context": "CREATE TABLE table_22801331_1 (opponents INTEGER, cowboys_points VARCHAR)"
  },
  {
    "answer": "SELECT opponents FROM table_22801331_1 WHERE record = \"1-0\"",
    "question_en": "How many opponents have a 1-0 record against the Cowboys?",
    "question_th": "มีคู่ต่อสู้กี่คนที่ทำสถิติเอาชนะคาวบอยส์ 1-0?",
    "context": "CREATE TABLE table_22801331_1 (opponents VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_22801331_1 WHERE record = \"6-3\"",
    "question_en": "What game was held against a team with a 6-3 record against the Cowboys?",
    "question_th": "เกมใดที่จัดขึ้นกับทีมที่มีสถิติ 6-3 กับคาวบอยส์?",
    "context": "CREATE TABLE table_22801331_1 (game VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT COUnT AS name FROM table_22810095_8 WHERE country = \"CIV\"",
    "question_en": "How many names have a country of civ?",
    "question_th": "ประเทศที่มีพลเมืองมีกี่ชื่อ?",
    "context": "CREATE TABLE table_22810095_8 (COUnT VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_22810095_8 WHERE moving_from = \"northampton Town\"",
    "question_en": "Who moved from Northampton Town?",
    "question_th": "ใครย้ายจากนอร์ธแฮมป์ตัน ทาวน์?",
    "context": "CREATE TABLE table_22810095_8 (name VARCHAR, moving_from VARCHAR)"
  },
  {
    "answer": "SELECT moving_from FROM table_22810095_8 WHERE name = \"Kisnorbo\"",
    "question_en": "Where did Kisnorbo move from?",
    "question_th": "คิสนอร์โบ ย้ายมาจากไหน?",
    "context": "CREATE TABLE table_22810095_8 (moving_from VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_22810095_8 WHERE n = 28",
    "question_en": "What is the name of the player when n is 28?",
    "question_th": "นักเตะเมื่อ n อายุ 28 ชื่ออะไร?",
    "context": "CREATE TABLE table_22810095_8 (name VARCHAR, n VARCHAR)"
  },
  {
    "answer": "SELECT transfer_fee FROM table_22810095_8 WHERE n = 2",
    "question_en": "How much was the transfer fee when n is 2?",
    "question_th": "ค่าโอนเมื่อ n เป็น 2 เท่าไหร่คะ?",
    "context": "CREATE TABLE table_22810095_8 (transfer_fee VARCHAR, n VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_22810095_9 WHERE age = 24",
    "question_en": "What player is 24 years old? ",
    "question_th": " นักเตะคนไหนอายุ 24 ปี?",
    "context": "CREATE TABLE table_22810095_9 (name VARCHAR, age VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(bruce_coulter_award) FROM table_228149_1 WHERE game = \"9th\"",
    "question_en": "Nam the total number for bruce coulter award for 9th game",
    "question_th": "ทายผลรวมรางวัลบรูซ โคลเตอร์ เกมที่ 9",
    "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_en": "How many opponents were there when the opponent was Arizona State?",
    "question_th": "มีฝ่ายตรงข้ามกี่คนเมื่อฝ่ายตรงข้ามเป็นรัฐแอริโซนา?",
    "context": "CREATE TABLE table_22815265_1 (opponents INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(record) FROM table_22815265_1 WHERE opponent = \"Utah\"",
    "question_en": "How many records show Utah as the opponent?",
    "question_th": "มีกี่บันทึกที่แสดงให้เห็นว่ายูทาห์เป็นคู่ต่อสู้?",
    "context": "CREATE TABLE table_22815265_1 (record VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponents FROM table_22815265_1 WHERE cowboys_points = 10",
    "question_en": "How many opponents are there when cowboy points were 10?",
    "question_th": "มีฝ่ายตรงข้ามกี่คนเมื่อคะแนนคาวบอยเป็น 10?",
    "context": "CREATE TABLE table_22815265_1 (opponents VARCHAR, cowboys_points VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(record) FROM table_22815265_1 WHERE opponents = 9",
    "question_en": "How many records were there when opponents were 9?",
    "question_th": "มีบันทึกกี่รายการเมื่อฝ่ายตรงข้ามอายุ 9 ปี?",
    "context": "CREATE TABLE table_22815265_1 (record VARCHAR, opponents VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(record) FROM table_22815259_1 WHERE cowboys_points = 12",
    "question_en": "Name the number of record for 12 cowboys points",
    "question_th": "ตั้งชื่อหมายเลขบันทึก 12 แต้มคาวบอย",
    "context": "CREATE TABLE table_22815259_1 (record VARCHAR, cowboys_points VARCHAR)"
  },
  {
    "answer": "SELECT MAX(game) FROM table_22815259_1 WHERE record = \"4-0\"",
    "question_en": "Name the most game for record 4-0",
    "question_th": "ตั้งชื่อเกมมากที่สุดเป็นประวัติการณ์ 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_en": "Name the result for cowboys points being 23",
    "question_th": "ตั้งชื่อผลคะแนนคาวบอยส์เป็น 23",
    "context": "CREATE TABLE table_22815259_1 (result VARCHAR, cowboys_points VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_22815259_1 WHERE opponent = \"Arizona\"",
    "question_en": "Name the record for arizona",
    "question_th": "ตั้งชื่อระเบียนสำหรับแอริโซนา",
    "context": "CREATE TABLE table_22815259_1 (record VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(unemployment_rate) FROM table_22815568_12 WHERE population = 34024",
    "question_en": "Name the unemployment rate for 34024",
    "question_th": "ตั้งชื่ออัตราการว่างงานสำหรับ 34024",
    "context": "CREATE TABLE table_22815568_12 (unemployment_rate VARCHAR, population VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(population) FROM table_22815568_12 WHERE county = \"Craig\"",
    "question_en": "Name the total number of population for craig",
    "question_th": "ตั้งชื่อจำนวนประชากรทั้งหมดสำหรับเครก",
    "context": "CREATE TABLE table_22815568_12 (population VARCHAR, county VARCHAR)"
  },
  {
    "answer": "SELECT unemployment_rate FROM table_22815568_12 WHERE county = \"Botetourt\"",
    "question_en": "Name the unemployment rate for botetourt",
    "question_th": "ตั้งชื่ออัตราการว่างงานสำหรับ 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_en": "Name the status for unemployment rate being 6.7%",
    "question_th": "ตั้งชื่อสถานะอัตราการว่างงานเป็น 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_en": "What is the status of the county that has a 14.7% poverty rate?",
    "question_th": "สถานะของเทศมณฑลที่มีอัตราความยากจน 14.7% คืออะไร?",
    "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_en": "What is the poverty rate in the county that has a market income per capita of $16,420?",
    "question_th": "อัตราความยากจนในเคาน์ตีที่มีรายได้ในตลาดต่อหัวอยู่ที่ 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_en": "What is the lowest population in a county with market income per capita of $24,383?",
    "question_th": "ประชากรต่ำสุดในเขตที่มีรายได้ในตลาดต่อหัวอยู่ที่ 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_en": "What is the povery rate of the county with market income per capita of $20,518?",
    "question_th": "อัตราความยากจนของเคาน์ตีที่มีรายได้ในตลาดต่อหัวอยู่ที่ 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_en": "what is the market income per capita where the county is hancock?",
    "question_th": "รายได้จากตลาดต่อหัวที่แฮนค็อกคือเท่าไร?",
    "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_en": "what is the county where the market income per capita is $25,006?",
    "question_th": "เคาน์ตีที่รายได้ของตลาดต่อหัวอยู่ที่ 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_en": "what is the unemployment rate where the market income per capita is $16,406?",
    "question_th": "อัตราการว่างงานโดยที่รายได้ในตลาดต่อหัวอยู่ที่ 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_en": "what is the unemployment rate for wayne county?",
    "question_th": "อัตราการว่างงานของเวย์นเคาน์ตีคือเท่าไร?",
    "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_en": "What is the original air date of the episode with a production code of 105? ",
    "question_th": " วันที่ออกอากาศดั้งเดิมของตอนที่มีรหัสการผลิต 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_en": "How many counties have a population of 2266?",
    "question_th": "มีกี่มณฑลที่มีประชากร 2,266 คน?",
    "context": "CREATE TABLE table_22815568_3 (county VARCHAR, population VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(status) FROM table_22815568_3 WHERE county = \"Wayne\"",
    "question_en": "How many statuses are listed for Wayne county? ",
    "question_th": " มีสถานะกี่สถานะสำหรับเวย์นเคาน์ตี?",
    "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_en": "What is the market income per capita in a county where the status is distressed and the unemployment rate is at 10.5%? ",
    "question_th": " รายได้จากตลาดต่อหัวในเขตที่สถานะเป็นทุกข์และอัตราการว่างงานอยู่ที่ 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_en": "What is the status for all the counties that have a poverty rate of 36.6%? ",
    "question_th": " สถานะของทุกมณฑลที่มีอัตราความยากจน 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_en": "What is the status if the poverty rate is 11.4%?",
    "question_th": "หากอัตราความยากจนอยู่ที่ 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_en": "If the poverty rate is 12.9%, what is the county?",
    "question_th": "หากอัตราความยากจนอยู่ที่ 12.9% อำเภอคือเท่าไร?",
    "context": "CREATE TABLE table_22815568_6 (county VARCHAR, poverty_rate VARCHAR)"
  },
  {
    "answer": "SELECT MAX(population) FROM table_22815568_6",
    "question_en": "What is the population maximum?",
    "question_th": "จำนวนประชากรสูงสุดคือเท่าไร?",
    "context": "CREATE TABLE table_22815568_6 (population INTEGER)"
  },
  {
    "answer": "SELECT county FROM table_22815568_6 WHERE unemployment_rate = \"4.8%\"",
    "question_en": "What county is the unemployment rate 4.8%?",
    "question_th": "อัตราการว่างงาน 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_en": "If the poverty rate is 12.9%, what is the market income per capita?",
    "question_th": "หากอัตราความยากจนอยู่ที่ 12.9% รายได้ของตลาดต่อหัวคือเท่าใด",
    "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_en": "Name the viewers for 2.1 rating",
    "question_th": "ตั้งชื่อผู้ดูสำหรับการให้คะแนน 2.1",
    "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_en": "Name the most share for 2.76 million viewers ",
    "question_th": " เผยยอดแชร์สูงสุด 2.76 ล้านคน",
    "context": "CREATE TABLE table_22822468_2 (share INTEGER, viewers__millions_ VARCHAR)"
  },
  {
    "answer": "SELECT viewers__millions_ FROM table_22822468_2 WHERE rating / SHARE(18 AS –49) = 1.2 / 4",
    "question_en": "Name the viewers for 1.2/4 rating",
    "question_th": "ตั้งชื่อผู้ชมให้คะแนน 1.2/4",
    "context": "CREATE TABLE table_22822468_2 (viewers__millions_ VARCHAR, rating VARCHAR)"
  },
  {
    "answer": "SELECT rating / SHARE(18 AS –49) FROM table_22822468_2 WHERE viewers__millions_ = \"3.79\"",
    "question_en": "Name the rating for 3.79 viewers",
    "question_th": "บอกชื่อเรตติ้งคนดู 3.79",
    "context": "CREATE TABLE table_22822468_2 (rating VARCHAR, viewers__millions_ VARCHAR)"
  },
  {
    "answer": "SELECT MIN(europa_league) FROM table",
    "question_en": "Name the least europa league",
    "question_th": "ตั้งชื่อลีกยูโรป้าน้อยที่สุด",
    "context": "CREATE TABLE table (europa_league INTEGER)"
  },
  {
    "answer": "SELECT COUNT(high_rebounds) FROM table_22822559_4 WHERE date = \"November 27\"",
    "question_en": "What was the total number of rebounds on november 27?",
    "question_th": "จำนวนรีบาวด์ทั้งหมดในวันที่ 27 พฤศจิกายนเป็นเท่าใด?",
    "context": "CREATE TABLE table_22822559_4 (high_rebounds VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_22822559_4 WHERE team = \"@ Toronto\"",
    "question_en": "On what date did the Pistons play @ toronto?",
    "question_th": "Pistons เล่นที่โตรอนโตวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_22822559_4 (date VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(location_attendance) FROM table_22822559_4 WHERE game = 7",
    "question_en": "List the location and number of fans in attendance for game 7/",
    "question_th": "รายชื่อสถานที่และจำนวนแฟนบอลที่เข้าชมเกมที่ 7/",
    "context": "CREATE TABLE table_22822559_4 (location_attendance VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT steals FROM table_22824302_3 WHERE games_played = 31",
    "question_en": "How many interceptions for the team who played 31 games?",
    "question_th": "ทีมที่เล่นไป 31 นัด สกัดบอลได้กี่ครั้ง?",
    "context": "CREATE TABLE table_22824302_3 (steals VARCHAR, games_played VARCHAR)"
  },
  {
    "answer": "SELECT MIN(steals) FROM table_22824302_3 WHERE rebounds = 121",
    "question_en": "How many steals for the player who had 121 rebounds?",
    "question_th": "ผู้เล่นที่ขโมยได้ 121 รีบาวด์ ขโมยไปกี่ครั้ง?",
    "context": "CREATE TABLE table_22824302_3 (steals INTEGER, rebounds VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_22822559_8 WHERE record = \"23-47\"",
    "question_en": "What date was the Piston's record at 23-47?",
    "question_th": "บันทึกของพิสตันที่ 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_en": "Who had the highest rebounds during the game with a record of 23-47?",
    "question_th": "ใครมีรีบาวด์สูงสุดระหว่างเกมด้วยสถิติ 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_en": "How many rebound did the person who scored 147 points have?",
    "question_th": "คนที่ได้คะแนน 147 เด้งได้กี่แต้ม?",
    "context": "CREATE TABLE table_22824199_1 (rebounds VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT MIN(three_pointers) FROM table_22824199_1 WHERE free_throws = 50",
    "question_en": "Of the players with 50 free throws, what is the lowest number of three pointers?",
    "question_th": "ในบรรดาผู้เล่นที่โยนโทษครบ 50 ครั้ง 3 พอยน์เตอร์มีจำนวนน้อยที่สุดคือเท่าไร?",
    "context": "CREATE TABLE table_22824199_1 (three_pointers INTEGER, free_throws VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_22824199_1 WHERE rebounds = 156",
    "question_en": "Who are all the players with 156 rebounds?",
    "question_th": "นักเตะ 156 รีบาวด์ ทั้งหมดคือใคร?",
    "context": "CREATE TABLE table_22824199_1 (player VARCHAR, rebounds VARCHAR)"
  },
  {
    "answer": "SELECT MAX(games_played) FROM table_22824199_1 WHERE three_pointers = 5",
    "question_en": "Of the players who scored 5 three pointers, what is the highest number of games played?",
    "question_th": "ในบรรดาผู้เล่นที่ทำสามพอยน์เตอร์ได้ 5 ครั้ง มีจำนวนเกมที่เล่นมากที่สุดคือเกมใด?",
    "context": "CREATE TABLE table_22824199_1 (games_played INTEGER, three_pointers VARCHAR)"
  },
  {
    "answer": "SELECT no FROM table_22824297_1 WHERE hometown = \"Canton, Illinois\"",
    "question_en": "What is every number for the hometown of Canton, Illinois?",
    "question_th": "บ้านเกิดของแคนตัน รัฐอิลลินอยส์ คือเลขอะไร",
    "context": "CREATE TABLE table_22824297_1 (no VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_22824297_1 WHERE height = \"6-5\"",
    "question_en": "Who is every player with a height of 6-5?",
    "question_th": "ผู้เล่นทุกคนที่มีส่วนสูง 6-5 คือใคร?",
    "context": "CREATE TABLE table_22824297_1 (player VARCHAR, height VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_22824297_1 WHERE hometown = \"Carbondale, Illinois\"",
    "question_en": "Who are all players from hometown of Carbondale, Illinois?",
    "question_th": "ใครคือผู้เล่นทั้งหมดจากบ้านเกิดของ 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_en": "What is every class with a position of guard and Tal Brody as the player?",
    "question_th": "ทุกคลาสที่มีตำแหน่งผู้พิทักษ์และมีทัล โบรดี้เป็นผู้เล่นคืออะไร?",
    "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_en": "How many values for number occur with the hometown of Canton, Illinois?",
    "question_th": "บ้านเกิดของแคนตัน รัฐอิลลินอยส์ มีค่าตัวเลขกี่ค่า",
    "context": "CREATE TABLE table_22824297_1 (no VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_22824312_1 WHERE player = \"Ren Alde\"",
    "question_en": "What class was ren alde?",
    "question_th": "เรน อัลเด้เรียนคลาสไหน?",
    "context": "CREATE TABLE table_22824312_1 (class VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_22824312_1 WHERE weight = 170",
    "question_en": "Who are the player's who weighed 170?",
    "question_th": "ใครคือผู้เล่นที่มีน้ำหนัก 170?",
    "context": "CREATE TABLE table_22824312_1 (player VARCHAR, weight VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_22824312_1 WHERE player = \"Jim Dutcher\"",
    "question_en": "What is jim dutcher's hometown?",
    "question_th": "บ้านเกิดของจิม ดัทเชอร์คืออะไร?",
    "context": "CREATE TABLE table_22824312_1 (hometown VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(player) FROM table_22824319_3 WHERE points = 51",
    "question_en": "Name the total number of player for 51 points",
    "question_th": "ระบุชื่อผู้เล่นรวม 51 แต้ม",
    "context": "CREATE TABLE table_22824319_3 (player VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT MAX(rebounds) FROM table_22824319_3 WHERE player = \"Larry Smith\"",
    "question_en": "Name the most rebounds for larry smith",
    "question_th": "ตั้งชื่อการรีบาวน์มากที่สุดของแลร์รี่ สมิธ",
    "context": "CREATE TABLE table_22824319_3 (rebounds INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT steals FROM table_22824319_3 WHERE blocks = 5",
    "question_en": "Name the steals for 5 blocks",
    "question_th": "ตั้งชื่อขโมยเป็นเวลา 5 ช่วงตึก",
    "context": "CREATE TABLE table_22824319_3 (steals VARCHAR, blocks VARCHAR)"
  },
  {
    "answer": "SELECT MIN(points) FROM table_22824319_3",
    "question_en": "Name the least points",
    "question_th": "ตั้งชื่อคะแนนน้อยที่สุด",
    "context": "CREATE TABLE table_22824319_3 (points INTEGER)"
  },
  {
    "answer": "SELECT h_ci__ka_m_ FROM table_2282444_1 WHERE b_r__t_ = \"0.6–1.4\"",
    "question_en": "When  0.6–1.4 is the b r (t) what is the h ci (ka/m)?",
    "question_th": "เมื่อ 0.6–1.4 คือ br (t) ค่า 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 °c_ FROM table_2282444_1 WHERE magnet = \"Nd 2 Fe 14 B (bonded)\"",
    "question_en": "When nd 2 fe 14 b (bonded) is the magnet how many measurements of tc (°c)?",
    "question_th": "เมื่อ nd 2 fe 14 b (ถูกพันธะ) เป็นแม่เหล็ก จะมีค่า tc (°c) เท่ากับกี่หน่วย?",
    "context": "CREATE TABLE table_2282444_1 (t_c__ VARCHAR, magnet VARCHAR)"
  },
  {
    "answer": "SELECT h_ci__ka_m_ FROM table_2282444_1 WHERE t_c__°c_ = \"720\"",
    "question_en": "When 720 is the t c (°c) what is the   h ci (ka/m)?",
    "question_th": "เมื่อ 720 คือ tc (°c) h ci (ka/m) คืออะไร?",
    "context": "CREATE TABLE table_2282444_1 (h_ci__ka_m_ VARCHAR, t_c__°c_ VARCHAR)"
  },
  {
    "answer": "SELECT sec_wins FROM table_22825679_1 WHERE percentage = \".357\" AND home_record = \"4-3\"",
    "question_en": "Name the sec wins for .357 percentage and 4-3 home record",
    "question_th": "ตั้งชื่อวินาทีที่ชนะด้วยเปอร์เซ็นต์ .357 และสถิติในบ้าน 4-3",
    "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_en": "Name the percentage for georgia",
    "question_th": "ตั้งชื่อเปอร์เซ็นต์สำหรับจอร์เจีย",
    "context": "CREATE TABLE table_22825679_1 (percentage VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT overall_record FROM table_22825679_1 WHERE road_record = \"4-3\"",
    "question_en": "Name the overall record for road record being 4-3",
    "question_th": "ตั้งชื่อบันทึกโดยรวมสำหรับบันทึกถนนเป็น 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_en": "Name the number of road record for team ole miss",
    "question_th": "บอกชื่อเลขโรดเรคคอร์ดของทีมโอเล่มิส",
    "context": "CREATE TABLE table_22825679_1 (road_record VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT percentage FROM table_22825679_1 WHERE team = \"Ole Miss\"",
    "question_en": "Name the percentage for ole miss",
    "question_th": "ตั้งชื่อเปอร์เซ็นต์สำหรับ 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_en": "What is the most number of blocks kendall gill had?",
    "question_th": "เคนดัลล์ กิลล์ มีบล็อกได้มากที่สุดคือเท่าไร",
    "context": "CREATE TABLE table_22824324_2 (blocks INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT MIN(three_pointers) FROM table_22824324_2 WHERE rebounds = 178",
    "question_en": "What is the lowest number of three pointers in games where the number of rebounds was 178?",
    "question_th": "จำนวนพอยน์เตอร์สามตัวต่ำสุดในเกมที่จำนวนรีบาวด์คือ 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_en": "How many steals were the in games that andy kaufmann played?",
    "question_th": "แอนดี้ คอฟมันน์ ขโมยบอลในเกมได้กี่ครั้ง?",
    "context": "CREATE TABLE table_22824324_2 (steals VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MIN(three_pointers) FROM table_22824324_2 WHERE player = \"Kendall Gill\"",
    "question_en": "What is the lowest number of three pointers in games that kendall gill played?",
    "question_th": "สามพอยน์เตอร์จำนวนน้อยที่สุดในเกมที่เคนดัลล์ กิลล์เล่นคือเท่าใด",
    "context": "CREATE TABLE table_22824324_2 (three_pointers INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(three_pointers) FROM table_22824324_2 WHERE points = 581",
    "question_en": "How many games had three pointers where the number of points was 581?",
    "question_th": "มีกี่เกมที่มีสามพอยน์เตอร์ซึ่งมีคะแนน 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_en": "What was the highest amount of episodes for the season with 5.74 million viewers?",
    "question_th": "จำนวนตอนสูงสุดสำหรับซีซันที่มีผู้ชม 5.74 ล้านคนคือเท่าใด",
    "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–1, 6–7 (2–7) , 7–6 (7–5) , 7–6 (10–8)\"",
    "question_en": "Which surfaces have the final score of 6–1, 6–7 (2–7) , 7–6 (7–5) , 7–6 (10–8)?",
    "question_th": "พื้นผิวใดมีคะแนนสุดท้ายคือ 6–1, 6–7 (2–7) , 7–6 (7–5) , 7–6 (10–8)",
    "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–6 (9–7) , 6–3\"",
    "question_en": "How many outcome have a score of 7–6 (9–7) , 6–3?",
    "question_th": "มีกี่ผลลัพธ์ที่มีคะแนน 7–6 (9–7) , 6–3",
    "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–3, 6–2\"",
    "question_en": "Which outcomes have a final score of 6–3, 6–2?",
    "question_th": "ผลลัพธ์ใดมีคะแนนสุดท้าย 6–3, 6–2",
    "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_en": "What is the last year that Andre Agassi was the final opponent?",
    "question_th": "ปีที่แล้วที่ Andre Agassi เป็นคู่ต่อสู้คนสุดท้ายคืออะไร?",
    "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–3, 6–2\"",
    "question_en": "How many years have a final score of 6–3, 6–2?",
    "question_th": "กี่ปีมีคะแนนสุดท้าย 6–3, 6–2?",
    "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–7 (9–11) , 6–4, 7–5, 4–6, 4–6\"",
    "question_en": "Which championship has a final score of 6–7 (9–11) , 6–4, 7–5, 4–6, 4–6?",
    "question_th": "แชมป์เปี้ยนชิพใดมีคะแนนสุดท้าย 6–7 (9–11) , 6–4, 7–5, 4–6, 4–6?",
    "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_en": "How many years had a total earnings amount of 2254598?",
    "question_th": "กี่ปีมียอดรายได้รวม 2254598?",
    "context": "CREATE TABLE table_22834834_12 (year VARCHAR, earnings__$_ VARCHAR)"
  },
  {
    "answer": "SELECT MAX(year) FROM table_22834834_12",
    "question_en": "What is the latest year that data is available for?",
    "question_th": "ปีล่าสุดที่มีข้อมูลคือปีใด",
    "context": "CREATE TABLE table_22834834_12 (year INTEGER)"
  },
  {
    "answer": "SELECT score_in_the_final FROM table_22834834_2 WHERE year = 1994",
    "question_en": "What is the score in the final in the year 1994?",
    "question_th": "คะแนนในรอบชิงชนะเลิศปี 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_en": "Who is the championship for the year of 1993?",
    "question_th": "ใครคือแชมป์ประจำปี 2536?",
    "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_en": "Who is the opponent in the final when frankfurt is championship and the year is less than 1993.0?",
    "question_th": "คู่ต่อสู้ในรอบชิงชนะเลิศเมื่อแฟรงค์เฟิร์ตเป็นแชมป์และปีต่ำกว่า 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_en": "In what year was his money list rank 3? ",
    "question_th": " รายชื่อเงินของเขาอยู่ในอันดับที่ 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_en": "What was his money list rank in 2001? ",
    "question_th": " อันดับรายการเงินของเขาในปี 2544 คืออะไร?",
    "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_en": "How many atp wins did he have when his money list rank was 4? ",
    "question_th": " เขามีชัยชนะ ATP กี่ครั้งเมื่ออันดับเงินของเขาคือ 4?",
    "context": "CREATE TABLE table_22839669_12 (atp_wins INTEGER, money_list_rank VARCHAR)"
  },
  {
    "answer": "SELECT MAX(total_wins) FROM table_22839669_12",
    "question_en": "What is the maximum total wins he had for any year? ",
    "question_th": " ชัยชนะรวมสูงสุดที่เขามีในปีใด ๆ คือเท่าใด?",
    "context": "CREATE TABLE table_22839669_12 (total_wins INTEGER)"
  },
  {
    "answer": "SELECT district FROM table_228439_4 WHERE successor = \"Samuel A. Bridges ( D )\"",
    "question_en": "What district is Samuel A. Bridges ( D ) assigned to as a successor?",
    "question_th": "ซามูเอล เอ. บริดเจส (D) ได้รับมอบหมายให้เป็นผู้สืบทอดเขตใด",
    "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_en": "what was the reason Richard K. Meade ( d ) became a successor?",
    "question_th": "อะไรคือเหตุผลที่ Richard K. Meade (d) กลายเป็นผู้สืบทอด?",
    "context": "CREATE TABLE table_228439_4 (reason_for_change VARCHAR, successor VARCHAR)"
  },
  {
    "answer": "SELECT successor FROM table_228439_4 WHERE district = \"Massachusetts 8th\"",
    "question_en": "Who is the successor for massachusetts 8th?",
    "question_th": "ใครคือผู้สืบทอดตำแหน่ง Massachusetts 8th?",
    "context": "CREATE TABLE table_228439_4 (successor VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_22847880_2 WHERE record = \"11-1\"",
    "question_en": "Name the opponent for 11-1",
    "question_th": "ตั้งชื่อคู่ต่อสู้ 11-1",
    "context": "CREATE TABLE table_22847880_2 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_22847880_2 WHERE opponent = \"Kentucky\"",
    "question_en": "Name the record for kentucky",
    "question_th": "ตั้งชื่อบันทึกสำหรับรัฐเคนตักกี้",
    "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–6, 4–6, 7–5, 4–6\"",
    "question_en": "Who is the opponent in the match with final score 3–6, 4–6, 7–5, 4–6?",
    "question_th": "คู่ต่อสู้คือใครในแมตช์ที่มีสกอร์สุดท้าย 3–6, 4–6, 7–5, 4–6?",
    "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–6, 3–6, 2–6\"",
    "question_en": "What was the outcome of the match with score 4–6, 3–6, 2–6?",
    "question_th": "ผลลัพธ์ของการแข่งขันด้วยสกอร์ 4–6, 3–6, 2–6 เป็นอย่างไรบ้าง?",
    "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–6, 3–6, 6–4, 5–7\"",
    "question_en": "What is the most recent year where the final score is 4–6, 3–6, 6–4, 5–7?",
    "question_th": "ปีล่าสุดที่คะแนนสุดท้ายคือ 4–6, 3–6, 6–4, 5–7 คือปีใด",
    "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–4, 6–2, 6–2\"",
    "question_en": "What championship had a final score of 6–4, 6–2, 6–2?",
    "question_th": "แชมป์รายการใดมีคะแนนสุดท้าย 6–4, 6–2, 6–2?",
    "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_en": "If the year is 2007, what is the top ten?",
    "question_th": "ถ้าปี 2550 สิบอันดับแรกคืออะไร?",
    "context": "CREATE TABLE table_22838521_3 (top_10s VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT MAX(money_list_rank) FROM table_22838521_3",
    "question_en": "What is the possible maximum money list rank?",
    "question_th": "อันดับรายการเงินสูงสุดที่เป็นไปได้คืออะไร?",
    "context": "CREATE TABLE table_22838521_3 (money_list_rank INTEGER)"
  },
  {
    "answer": "SELECT best_finish FROM table_22838521_3 WHERE scoring_average = \"72.46\"",
    "question_en": "If the scoring average is 72.46, what is the best finish?",
    "question_th": "ถ้าคะแนนเฉลี่ย 72.46 จบเส้นไหนดีที่สุด?",
    "context": "CREATE TABLE table_22838521_3 (best_finish VARCHAR, scoring_average VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_22853654_9 WHERE opponent = \"Wesley Moodie\"",
    "question_en": "Name the result for wesley moodie",
    "question_th": "ตั้งชื่อผลลัพธ์สำหรับเวสลีย์ มูดี้",
    "context": "CREATE TABLE table_22853654_9 (result VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_22853654_9 WHERE against = \"Monaco\"",
    "question_en": "Name the surface against monaco",
    "question_th": "ตั้งชื่อพื้นผิวเทียบกับโมนาโก",
    "context": "CREATE TABLE table_22853654_9 (surface VARCHAR, against VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_22853654_9 WHERE opponent = \"Alexander Shvec\"",
    "question_en": "Name the result for alexander shvec",
    "question_th": "ตั้งชื่อผลลัพธ์สำหรับ alexander shvec",
    "context": "CREATE TABLE table_22853654_9 (result VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_22853654_9 WHERE result = \"3–6, 4–6, 6–1, 6–7 (7–9)\"",
    "question_en": "Name the opponent for 3–6, 4–6, 6–1, 6–7 (7–9)",
    "question_th": "ตั้งชื่อคู่ต่อสู้เป็น 3–6, 4–6, 6–1, 6–7 (7–9)",
    "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_en": "Name the annual rainfail for 2002 population being 493984",
    "question_th": "ตั้งชื่อปริมาณน้ำฝนประจำปีสำหรับประชากรปี 2545 เป็น 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_en": "Name the most population 2002",
    "question_th": "รายชื่อประชากรมากที่สุด พ.ศ. 2545",
    "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_en": "Name the total water resources m3 for rainfall being 650",
    "question_th": "ตั้งชื่อแหล่งน้ำทั้งหมด ลบ.ม. สำหรับปริมาณน้ำฝนเท่ากับ 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_en": "What were the carpet w-l in 1993?",
    "question_th": "พรม wl ในปี 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_en": "What is the amount of US open runner-up score?",
    "question_th": "คะแนนรองแชมป์ US Open เท่าไหร่?",
    "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_en": "What is the year where the runner-up outcome was at its basic minimum?",
    "question_th": "ปีที่ผลการแข่งขันรองชนะเลิศอยู่ที่ขั้นต่ำพื้นฐานคือปีใด?",
    "context": "CREATE TABLE table_22858557_1 (year INTEGER, outcome VARCHAR)"
  },
  {
    "answer": "SELECT championship FROM table_22858557_1 WHERE opponent_in_final = \"Steffi Graf\"",
    "question_en": "How many championships have there been with Steffi Graf?",
    "question_th": "มีการแข่งขันกับ 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_en": "How many opponents have wimbledon (2) as the championship?",
    "question_th": "มีคู่แข่งกี่คนที่ได้วิมเบิลดัน (2) เป็นแชมป์?",
    "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_en": "What is the surface when the us open is the championship in the year 1979?",
    "question_th": "พื้นผิวเมื่อเราเปิดเป็นแชมป์ในปี 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_en": "What is the game number that was on November 27? ",
    "question_th": " หมายเลขเกมเมื่อวันที่ 27 พฤศจิกายนคืออะไร?",
    "context": "CREATE TABLE table_22871239_5 (_number VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_22871239_5 WHERE team = \"@ New Jersey\"",
    "question_en": "What was the score when the team was @ New Jersey? ",
    "question_th": " เมื่อทีมอยู่ที่นิวเจอร์ซี่ย์สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_22871239_5 (score VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(high_rebounds) FROM table_22871239_5 WHERE _number = 5",
    "question_en": "How many high rebound catagories are listed for game number 5? ",
    "question_th": " มีหมวดหมู่การรีบาวด์สูงกี่รายการที่ระบุไว้สำหรับเกมหมายเลข 5",
    "context": "CREATE TABLE table_22871239_5 (high_rebounds VARCHAR, _number VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_22862203_2 WHERE record = \"11-2\"",
    "question_en": "Who were the opponents when the record was 11-2?",
    "question_th": "ใครคือคู่ต่อสู้เมื่อสถิติ 11-2?",
    "context": "CREATE TABLE table_22862203_2 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_22862203_2 WHERE opp_points = 50",
    "question_en": "What were the records when the opponents had 50 points?",
    "question_th": "บันทึกเมื่อฝ่ายตรงข้ามมี 50 แต้มมีอะไรบ้าง?",
    "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_en": "What are the terps points for the nov. 25/05 game?",
    "question_th": "อะไรคือจุด Terps สำหรับเดือนพฤศจิกายน เกม 25/05?",
    "context": "CREATE TABLE table_22862203_2 (terps_points VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_22862203_2 WHERE record = \"9-1\"",
    "question_en": "Where were games played when the record was 9-1?",
    "question_th": "เกมที่เล่นที่ไหนเมื่อสถิติคือ 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_en": "What is the highest number of terps points in games where the opponent made 53 points?",
    "question_th": "จำนวนคะแนน Terps สูงสุดในเกมที่คู่ต่อสู้ทำคะแนนได้ 53 คะแนนคือเท่าใด",
    "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_en": "Where was the game on jan. 16/06 played?",
    "question_th": "เกมเมื่อวันที่ 1 ม.ค. อยู่ที่ไหน 16/06 เล่นแล้ว?",
    "context": "CREATE TABLE table_22862203_2 (location VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(high_points) FROM table_22871239_9 WHERE record = \"21-45\"",
    "question_en": "Name the high points for 21-45 record",
    "question_th": "ตั้งชื่อจุดสูงสุดของสถิติ 21-45",
    "context": "CREATE TABLE table_22871239_9 (high_points VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_22871239_9 WHERE date = \"March 23\"",
    "question_en": "Name the visitor for march 23",
    "question_th": "ตั้งชื่อผู้เยี่ยมชมสำหรับวันที่ 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_en": "Name the high rebounds for td garden 18,624",
    "question_th": "ตั้งชื่อการรีบาวด์สูงสำหรับ 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_en": "Name the record for march 16",
    "question_th": "ตั้งชื่อบันทึกสำหรับวันที่ 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_en": "Name the total number for score  l 110-112",
    "question_th": "ตั้งชื่อจำนวนรวมสำหรับคะแนน 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_en": "Name the team for  w 125-115 score",
    "question_th": "ตั้งชื่อทีมด้วยสกอร์ 125-115",
    "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_en": "Name the high assists for american airlines center 19,585",
    "question_th": "ตั้งชื่อแอสซิสต์สูงให้ศูนย์อเมริกันแอร์ไลน์ 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_en": "Who has the high points when 3-2 is the series?",
    "question_th": "ใครมีแต้มสูงเมื่อซีรีส์ 3-2?",
    "context": "CREATE TABLE table_22871316_11 (high_points VARCHAR, series VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_22871316_11 WHERE series = \"0-1\"",
    "question_en": "Who has the high assists when 0-1 is the series?",
    "question_th": "ใครแอสซิสต์ได้สูงเมื่อ 0-1 เป็นซีรีส์?",
    "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_en": "How many high rebounds are in series 3-3?",
    "question_th": "ซีรีย์ 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_en": "How many games are on the date of April 30?",
    "question_th": "วันที่ 30 เมษายน มีกี่เกม?",
    "context": "CREATE TABLE table_22871316_11 (game INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_22871316_6 WHERE date = \"December 18\"",
    "question_en": "Who did the high points in the game played on December 18?",
    "question_th": "ใครทำแต้มสูงสุดในเกมที่เล่นเมื่อวันที่ 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_en": "Who did the high points in the game played on December 2?",
    "question_th": "ใครทำแต้มสูงสุดในเกมที่เล่นเมื่อวันที่ 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_en": "What's the record of the game in which Carlos Delfino (17) did the most high points?",
    "question_th": "สถิติเกมที่ คาร์ลอส เดลฟิโน (17) ทำแต้มสูงสุดได้มากที่สุดคือเกมไหน?",
    "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_en": "Who did the high rebounds in the game in which Brandon Jennings (8) did the high assists?",
    "question_th": "ใครเป็นผู้ทำรีบาวด์สูงในเกมที่แบรนดอน เจนนิงส์ (8) ทำแอสซิสต์ได้สูง?",
    "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_en": "Which player has 18-50 .360 field goals?",
    "question_th": "ผู้เล่นคนไหนที่ยิงประตูได้ 18-50 .360?",
    "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_en": "What is the most assists for points 129-3.9?",
    "question_th": "แอสซิสต์ได้มากที่สุดเมื่อได้คะแนน 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_en": "Name the date for irish points being 89",
    "question_th": "ตั้งชื่อวันที่สำหรับจุดไอริชเป็น 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_en": "Name the number of location for 22-1",
    "question_th": "ตั้งชื่อเลขสถานที่ 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_en": "Name the opponent for 2-27-10",
    "question_th": "ตั้งชื่อคู่ต่อสู้ 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_en": "Name the max irish points for eastern michigan",
    "question_th": "ตั้งชื่อคะแนนสูงสุดของไอริชสำหรับมิชิแกนตะวันออก",
    "context": "CREATE TABLE table_22875369_3 (irish_points INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT irish_points FROM table_22875369_3 WHERE record = \"23-1\"",
    "question_en": "Name the irish points for 23-1 record",
    "question_th": "ตั้งชื่อแต้มไอริชสำหรับบันทึก 23-1",
    "context": "CREATE TABLE table_22875369_3 (irish_points VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(high_rebounds) FROM table_22879262_14 WHERE score = \"L 92–96 (OT)\"",
    "question_en": "Name the number of high rebounds for l 92–96 (ot)",
    "question_th": "ตั้งชื่อจำนวนรีบาวด์สูงสำหรับ l 92–96 (ot)",
    "context": "CREATE TABLE table_22879262_14 (high_rebounds VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_22879262_7 WHERE game = 29",
    "question_en": "what ist he date of game 29?",
    "question_th": "เกมที่ 29 ของเขาคือวันที่เท่าไร?",
    "context": "CREATE TABLE table_22879262_7 (date VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_22879262_7 WHERE game = 27",
    "question_en": "what is the location attendance for game 27?",
    "question_th": "ตำแหน่งที่จะเข้าร่วมในเกมที่ 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_en": "what is the total number of high rebounds for minnesota?",
    "question_th": "จำนวนรีบาวด์สูงสำหรับมินนิโซตาคือเท่าไร?",
    "context": "CREATE TABLE table_22879262_7 (high_rebounds VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_22879323_10 WHERE date = \"April 4\"",
    "question_en": "What were the high rebounds on April 4?",
    "question_th": "การรีบาวด์สูงสุดในวันที่ 4 เมษายนเป็นเท่าใด",
    "context": "CREATE TABLE table_22879323_10 (high_rebounds VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_22879323_10 WHERE game = 80",
    "question_en": "What was the score when the game was 80?",
    "question_th": "คะแนนเมื่อเกมอยู่ที่ 80 คืออะไร?",
    "context": "CREATE TABLE table_22879323_10 (score VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_22879323_10 WHERE record = \"11-67\"",
    "question_en": "What date was the record 11-67?",
    "question_th": "บันทึก 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_en": "How many high rebounds were there on April 7?",
    "question_th": "ในวันที่ 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_en": "What was the high points when rebounds were Terrence Williams (8)?",
    "question_th": "เทอร์เรนซ์ วิลเลียมส์ (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_en": "When the record was 2-29 who had the most assists?",
    "question_th": "เมื่อสถิติ 2-29 ใครแอสซิสต์ได้มากที่สุด?",
    "context": "CREATE TABLE table_22879323_6 (high_assists VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_22879323_6 WHERE team = \"Houston\"",
    "question_en": "When we played Houston who had the most points?",
    "question_th": "เมื่อเราเล่นกับฮูสตันใครมีคะแนนมากที่สุด?",
    "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_en": "Name the number of high points for ford center",
    "question_th": "ตั้งชื่อเลขแต้มสูงสำหรับศูนย์ฟอร์ด",
    "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_en": "Name the high rebounds for american airlines center",
    "question_th": "ตั้งชื่อการรีบาวด์สูงสำหรับศูนย์สายการบินอเมริกัน",
    "context": "CREATE TABLE table_22879323_9 (high_rebounds VARCHAR, location_attendance VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_22879323_9 WHERE score = \"L 90–100 (OT)\"",
    "question_en": "Name the record for  l 90–100 (ot)",
    "question_th": "ตั้งชื่อบันทึก l 90–100 (ot)",
    "context": "CREATE TABLE table_22879323_9 (record VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_22879323_9 WHERE score = \"L 83–106 (OT)\"",
    "question_en": "Name the location attendance for  l 83–106 (ot)",
    "question_th": "ตั้งชื่อสถานที่เข้าร่วมสำหรับ l 83–106 (ot)",
    "context": "CREATE TABLE table_22879323_9 (location_attendance VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_22883210_10 WHERE record = \"49-31\"",
    "question_en": "Name the score for 49-31",
    "question_th": "บอกชื่อคะแนน 49-31",
    "context": "CREATE TABLE table_22883210_10 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_22883210_10 WHERE team = \"Minnesota\"",
    "question_en": "Name the location attendance for minnesota",
    "question_th": "ตั้งชื่อการเข้าร่วมสถานที่สำหรับมินนิโซตา",
    "context": "CREATE TABLE table_22883210_10 (location_attendance VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_22883210_7 WHERE record = \"20-12\"",
    "question_en": "What location had a record of 20-12, and how many people attended?",
    "question_th": "สถานที่ใดมีสถิติ 20-12 คน และมีผู้เข้าร่วมกี่คน",
    "context": "CREATE TABLE table_22883210_7 (location_attendance VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(score) FROM table_22883210_7 WHERE date = \"January 18\"",
    "question_en": "What was the total score for january 18?",
    "question_th": "คะแนนรวมของวันที่ 18 มกราคม เป็นเท่าใด",
    "context": "CREATE TABLE table_22883210_7 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_22883210_7 WHERE game = 41",
    "question_en": "Where was game 41 held, and how many people attended?",
    "question_th": "เกม 41 จัดขึ้นที่ไหน และมีผู้เข้าร่วมกี่คน?",
    "context": "CREATE TABLE table_22883210_7 (location_attendance VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_22883210_7 WHERE record = \"23-13\"",
    "question_en": "What was the date for the record 23-13?",
    "question_th": "บันทึกวันที่ 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_en": "What was the high point for January 20?",
    "question_th": "จุดสูงสุดของวันที่ 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_en": "What was the location and how many attended when Golden State played? ",
    "question_th": " สถานที่ใดและมีผู้เข้าร่วมกี่คนเมื่อ Golden State เล่น?",
    "context": "CREATE TABLE table_22883210_9 (location_attendance VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(game) FROM table_22883210_9 WHERE team = \"Cleveland\"",
    "question_en": "What is the highest game number where the team was Cleveland? ",
    "question_th": " หมายเลขเกมสูงสุดที่ทีมคือคลีฟแลนด์คืออะไร?",
    "context": "CREATE TABLE table_22883210_9 (game INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(nightly_rank) FROM table_22892217_4",
    "question_en": "What is the highest numbered nightly rank for any episode? ",
    "question_th": " อันดับต่อคืนสูงสุดสำหรับตอนใดคือข้อใด",
    "context": "CREATE TABLE table_22892217_4 (nightly_rank INTEGER)"
  },
  {
    "answer": "SELECT COUNT(location_attendance) FROM table_22893781_5 WHERE date = \"December 2\"",
    "question_en": "How many attended on december 2?",
    "question_th": "มีผู้เข้าร่วมกี่คนในวันที่ 2 ธันวาคม?",
    "context": "CREATE TABLE table_22893781_5 (location_attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_22893781_5 WHERE date = \"December 11\"",
    "question_en": "Who was he opponent on december 11?",
    "question_th": "เขาเป็นคู่ต่อสู้ในวันที่ 11 ธันวาคมใคร?",
    "context": "CREATE TABLE table_22893781_5 (team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_22893781_5 WHERE team = \"Houston\"",
    "question_en": "What was the score against houston?",
    "question_th": "ฮูสตันทำสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_22893781_5 (score VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_22893781_7 WHERE team = \"@ Indiana\"",
    "question_en": "when did the @ indiana game take place?",
    "question_th": "เกม @ indiana เกิดขึ้นเมื่อไหร่?",
    "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_en": "Name the score for madison square garden 18,828",
    "question_th": "ตั้งชื่อคะแนนให้กับ 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_en": "Name the number of date for dallas",
    "question_th": "ตั้งชื่อหมายเลขวันที่สำหรับดัลลัส",
    "context": "CREATE TABLE table_22893781_6 (date VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_22893781_6 WHERE date = \"January 15\"",
    "question_en": "Name the high assists for january 15",
    "question_th": "ทายแอสซิสต์สูงสุดประจำวันที่ 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_en": "What is the name of the episode that aired originally on November 10, 1998?",
    "question_th": "ตอนที่ออกอากาศครั้งแรกเมื่อวันที่ 10 พฤศจิกายน 2541 ชื่ออะไร",
    "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_en": "What episode number in the series originally aired on April 27, 1999?",
    "question_th": "ซีรีส์นี้ออกอากาศครั้งแรกเมื่อวันที่ 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_en": "How many people wrote episode 68 in the series?",
    "question_th": "มีคนเขียนตอนที่ 68 ในซีรีส์กี่คนคะ?",
    "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_en": "Who directed the episode that originally aired on February 16, 1999?",
    "question_th": "ใครเป็นผู้กำกับตอนที่ออกอากาศครั้งแรกเมื่อวันที่ 16 กุมภาพันธ์ พ.ศ. 2542?",
    "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_en": "The episode which originally aired on February 11, 2005 had which episode # of the season?",
    "question_th": "ตอนที่ออกอากาศครั้งแรกเมื่อวันที่ 11 กุมภาพันธ์ พ.ศ. 2548 มีตอน # ของซีซันใด",
    "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_en": "The episode which originally aired on December 17, 2004  was written by whom?",
    "question_th": "ตอนที่ออกอากาศครั้งแรกเมื่อวันที่ 17 ธันวาคม พ.ศ. 2547 เขียนโดยใคร?",
    "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_en": "David James Elliott directed which episode number within the series?",
    "question_th": "David James Elliott กำกับหมายเลขตอนใดในซีรีส์นี้",
    "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_en": "Who directed the episode which originally aired February 4, 2005?",
    "question_th": "ใครเป็นผู้กำกับตอนที่ออกอากาศครั้งแรกเมื่อวันที่ 4 กุมภาพันธ์ พ.ศ. 2548",
    "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_en": "which is the number of the season episode whose premiere was in january 3, 1997?",
    "question_th": "หมายเลขของซีซั่นที่ออกอากาศตอนแรกในวันที่ 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_en": "which is the number of the season episode whose writer is R. Scott Gemmill and the Director is Ray Austin?",
    "question_th": "หมายเลขตอนของซีซันที่ผู้เขียนคือ R. Scott Gemmill และผู้กำกับคือ 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_en": "what is the name of the episode whose number of the series episode was 31?",
    "question_th": "ตอนที่ 31 ตอนที่ 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_en": "When 129 is the number in the series who is the writer?",
    "question_th": "เมื่อ 129 เป็นเลขในซีรีส์ใครเป็นคนเขียน?",
    "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_en": "How many product # have episode 1?",
    "question_th": "มีสินค้ากี่ตัว #มีตอนที่ 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_en": "Name the windows builders for apache gump",
    "question_th": "ตั้งชื่อผู้สร้าง windows สำหรับ 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_en": "Name the number of scm system for nant, visual studio",
    "question_th": "ตั้งชื่อจำนวนระบบ scm สำหรับแนนท์, วิชวลสตูดิโอ",
    "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_en": "Name the  number of other builders for nant, visual studio",
    "question_th": "ตั้งชื่อจำนวนผู้สร้างรายอื่นสำหรับ 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_en": "What is the minimum for 2nd runner-up?",
    "question_th": "รองชนะเลิศอันดับ 2 ขั้นต่ำคือเท่าไร?",
    "context": "CREATE TABLE table_2290097_4 (Id VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_228973_9 WHERE original_air_date = \"February 4, 2003\"",
    "question_en": "If the original air date is February 4, 2003, what is the episode title?",
    "question_th": "ถ้ากำหนดออกอากาศเดิมคือวันที่ 4 กุมภาพันธ์ พ.ศ.2546 ชื่อเรื่องตอนคืออะไร",
    "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_en": "If the original air date is April 1, 2003, what number in the series is this episode?",
    "question_th": "ถ้ากำหนดออกอากาศเดิมคือวันที่ 1 เมษายน พ.ศ. 2546 ซีรีส์นี้จะเป็นเลขใด?",
    "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_en": "What is the maximum number in the series for the episode directed by Harvey S. Laidman?",
    "question_th": "จำนวนสูงสุดของซีรีส์สำหรับตอนที่กำกับโดย 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_en": "When is the original air date written by sean whitesell?",
    "question_th": "ฌอน ไวท์เซลล์ ออกอากาศตอนแรกเมื่อไร?",
    "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_en": "Who is no. 79 directed by?",
    "question_th": "ใครคือไม่มี. 79 กำกับโดย?",
    "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_en": "What is the # when u.s. viewers  (million) is 17.44?",
    "question_th": "#อะไรคือ#เมื่อเราคนดู(ล้าน)คือ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_en": "How many # were written by david hoselton?",
    "question_th": "เดวิด โฮเซลตัน เขียน # ไว้กี่ #?",
    "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_en": "How many race 3 winners were there when Mitch Evans won race 2?",
    "question_th": "มีผู้ชนะการแข่งขัน 3 คนกี่คนเมื่อ Mitch Evans ชนะการแข่งขัน 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_en": "What date was the race at the Symmons Plains Raceway?",
    "question_th": "การแข่งขันที่ 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_en": "Who was the race 1 winner at the race held at Winton Motor Raceway?",
    "question_th": "ใครคือผู้ชนะการแข่งขันรอบที่ 1 ในการแข่งขันที่จัดขึ้นที่ 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_en": "Who was the race 1 winner of the race at Hidden Valley Raceway?",
    "question_th": "ใครคือผู้ชนะการแข่งขันอันดับที่ 1 ของการแข่งขันที่ 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_en": "In how many years did Pat Bradley became the champion?",
    "question_th": "แพท แบรดลีย์ เป็นแชมป์ในรอบกี่ปี?",
    "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_en": "When was the tournament in Forest Lake Country Club held?",
    "question_th": "การแข่งขันที่ Forest Lake Country Club จัดขึ้นเมื่อไหร่?",
    "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_en": "How many different countries did the champion Se Ri Pak (2) represent?",
    "question_th": "แชมป์ Se Ri Pak (2) เป็นตัวแทนจากกี่ประเทศ?",
    "context": "CREATE TABLE table_229059_2 (country VARCHAR, champion VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_229059_2 WHERE year = 1978",
    "question_en": "What was the score in 1978?",
    "question_th": "คะแนนในปี 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_en": "What was the winner share (in $) in the year when Se Ri Pak (2) was the champion?",
    "question_th": "ส่วนแบ่งผู้ชนะ (เป็นดอลลาร์) ในปีที่ Se Ri Pak (2) เป็นแชมป์คือเท่าใด",
    "context": "CREATE TABLE table_229059_2 (winners_share__ INTEGER, champion VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_229059_2 WHERE champion = \"Jan Stephenson\"",
    "question_en": "What was the score in the tournament won by Jan Stephenson?",
    "question_th": "คะแนนในทัวร์นาเมนต์ที่แจน สตีเฟนสันชนะคือเท่าไร?",
    "context": "CREATE TABLE table_229059_2 (score VARCHAR, champion VARCHAR)"
  },
  {
    "answer": "SELECT MIN(opp_points) FROM table_22903773_2 WHERE location = \"Knoxville\"",
    "question_en": "How many points did the opponents score at the game in Knoxville?",
    "question_th": "ฝ่ายตรงข้ามทำคะแนนได้กี่คะแนนในเกมที่น็อกซ์วิลล์?",
    "context": "CREATE TABLE table_22903773_2 (opp_points INTEGER, location VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_22903773_2 WHERE record = \"17-7\"",
    "question_en": "What game date had a record of 17-7?",
    "question_th": "เกมไหนมีสถิติ 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_en": "How many points did the opponents score on the game where Sooners' record was 16-5?",
    "question_th": "ฝ่ายตรงข้ามทำคะแนนได้กี่แต้มในเกมที่สถิติของซูเนอร์สอยู่ที่ 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_en": "List the number of shows that had 12.04 million viewers in the united states",
    "question_th": "ระบุจำนวนรายการที่มีผู้ชม 12.04 ล้านคนในสหรัฐอเมริกา",
    "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_en": "List the original air date for week 5.",
    "question_th": "ระบุวันออกอากาศเดิมสำหรับสัปดาห์ที่ 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_en": "List the 1st air date for the show where the writers are russel friend & garrett lerner.",
    "question_th": "ระบุวันที่ออกอากาศครั้งแรกสำหรับรายการที่ผู้เขียนคือ 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_en": "When shinya nakano's kawasaki ninja zx-rr is the example what is the graphical?",
    "question_th": "เมื่อ kawasaki ninja zx-rr ของ Shinya Nakano เป็นตัวอย่าง กราฟคืออะไร?",
    "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_en": "When 1985-2007 yamaha v-max honda vfr800 is the example what is the engine is it?",
    "question_th": "เมื่อตัวอย่างปี 1985-2007 yamaha v-max honda vfr800 มันคือเครื่องยนต์อะไร?",
    "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_en": "When shinya nakano's kawasaki ninja zx-rr is the example what is the engine type?",
    "question_th": "เมื่อ kawasaki ninja zx-rr ของ Shinya Nakano เป็นตัวอย่าง เครื่องยนต์เป็นประเภทไหน?",
    "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_en": "When 68-292-68-292 is the ignition timing how many graphicals is it?",
    "question_th": "เมื่อ 68-292-68-292 มีจังหวะการจุดระเบิดเป็นกราฟจำนวนเท่าใด?",
    "context": "CREATE TABLE table_22915134_2 (graphical VARCHAR, ignition_timing VARCHAR)"
  },
  {
    "answer": "SELECT graphical FROM table_22915134_2 WHERE engine = \"I4\"",
    "question_en": "When i4 is the engine what is the graphical?",
    "question_th": "เมื่อ i4 เป็นเครื่องยนต์ กราฟิกคืออะไร?",
    "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_en": "When 1-1-0-0-1-1-0-0- is the graphical how many ignition timings are there?",
    "question_th": "เมื่อ 1-1-0-0-1-1-0-0- เป็นกราฟิก มีการกำหนดเวลาการจุดระเบิดกี่ครั้ง?",
    "context": "CREATE TABLE table_22915134_2 (ignition_timing VARCHAR, graphical VARCHAR)"
  },
  {
    "answer": "SELECT MAX(r) FROM table WHERE total = 6",
    "question_en": "If the total is 6, what is the maximum R?",
    "question_th": "หากผลรวมคือ 6 ค่า R สูงสุดคือเท่าใด",
    "context": "CREATE TABLE table (r INTEGER, total VARCHAR)"
  },
  {
    "answer": "SELECT MIN(r) FROM table WHERE player = Marcelo",
    "question_en": "If the player is Marcelo, what is the minimum R?",
    "question_th": "ถ้าผู้เล่นคือมาร์เซโล ค่า R ขั้นต่ำคือเท่าไร?",
    "context": "CREATE TABLE table (r INTEGER, player VARCHAR, Marcelo VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table WHERE player = Marcelo",
    "question_en": "If the player is Marcelo, what is the position?",
    "question_th": "ถ้านักเตะคือมาร์เซโล่ตำแหน่งอะไร?",
    "context": "CREATE TABLE table (position VARCHAR, player VARCHAR, Marcelo VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(r) FROM table WHERE position = AM AND league > 7.0",
    "question_en": "If the position is AM and the league is larger than 7.0, what is the total R number?",
    "question_th": "ถ้าตำแหน่ง AM และลีกมากกว่า 7.0 แล้วเลข R ทั้งหมดจะเป็นเท่าใด?",
    "context": "CREATE TABLE table (r VARCHAR, position VARCHAR, AM VARCHAR, league VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_22917458_15 WHERE stage = 1",
    "question_en": "Who was the Stage 1 winner?",
    "question_th": "ใครคือผู้ชนะสเตจ 1?",
    "context": "CREATE TABLE table_22917458_15 (winner VARCHAR, stage VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_22917458_15 WHERE stage = 7",
    "question_en": "Who won Stage 7?",
    "question_th": "ใครชนะสเตจที่ 7?",
    "context": "CREATE TABLE table_22917458_15 (winner VARCHAR, stage VARCHAR)"
  },
  {
    "answer": "SELECT mountains_classification_klasyfikacja_górska FROM table_22917458_15 WHERE winner = \"Alessandro Ballan\"",
    "question_en": "Who was the mountain classification winner in the stage won by Alessandro Ballan?",
    "question_th": "ใครคือผู้ชนะประเภทภูเขาในรอบที่อเลสซานโดร บัลลาน ชนะ?",
    "context": "CREATE TABLE table_22917458_15 (mountains_classification_klasyfikacja_górska VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT population_density__people_per_mi_2__ FROM table_22916979_1 WHERE land_area__mi_2__ = \"135.09\"",
    "question_en": "For the city whose land area was 135.09, what was the total population density?",
    "question_th": "สำหรับเมืองที่มีพื้นที่ 135.09 ความหนาแน่นของประชากรทั้งหมดเป็นเท่าใด",
    "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_en": "Which major metropolitan area had a land area of 23.80?",
    "question_th": "เขตมหานครใหญ่ใดมีพื้นที่ดินเท่ากับ 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_en": "How many states had a population density of 10188.8?",
    "question_th": "มีกี่รัฐที่มีความหนาแน่นของประชากร 1,0188.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_en": "Name the number of left for cardinals",
    "question_th": "ตั้งชื่อจำนวนซ้ายสำหรับพระคาร์ดินัล",
    "context": "CREATE TABLE table_2293402_2 (left VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT institution FROM table_2293402_2 WHERE type = \"Private\"",
    "question_en": "Name the school that is private",
    "question_th": "ตั้งชื่อโรงเรียนที่เป็นเอกชน",
    "context": "CREATE TABLE table_2293402_2 (institution VARCHAR, type VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_2293402_2 WHERE founded = 1798",
    "question_en": "Name the location that was founded 1798",
    "question_th": "ตั้งชื่อสถานที่ซึ่งก่อตั้งเมื่อปี พ.ศ. 2341",
    "context": "CREATE TABLE table_2293402_2 (location VARCHAR, founded VARCHAR)"
  },
  {
    "answer": "SELECT nickname FROM table_2293402_2 WHERE founded = 1798",
    "question_en": "Name the nickname that was founded 1798",
    "question_th": "ตั้งชื่อเล่นที่ก่อตั้งเมื่อปี พ.ศ. 2341",
    "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_en": "Name the least 10,000+ places for louisville",
    "question_th": "ตั้งชื่อสถานที่อย่างน้อย 10,000 แห่งสำหรับลุยวิลล์",
    "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_en": "Name the density for pennsbury village",
    "question_th": "ตั้งชื่อความหนาแน่นของหมู่บ้านเพนส์เบอรี",
    "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_en": "Name the number of rank for stone park",
    "question_th": "ตั้งชื่อเลขยศอุทยานหิน",
    "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_en": "Name the area for north bay village",
    "question_th": "ตั้งชื่อพื้นที่สำหรับหมู่บ้านอ่าวเหนือ",
    "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_€_ = 23164",
    "question_en": "Where is the PPP 23164 million €?",
    "question_th": "พรรคพลังประชาชน 23164 ล้านยูโรอยู่ไหน?",
    "context": "CREATE TABLE table_2293510_1 (region___nuts_2006_ VARCHAR, ppp__million_€_ VARCHAR)"
  },
  {
    "answer": "SELECT total__million_€__ FROM table_2293510_1 WHERE ppp__million_€_ = 21779",
    "question_en": "What's the total (in million €) in the region where PPP is 21779 million €?",
    "question_th": "ยอดรวม (เป็นล้านยูโร) ในภูมิภาคที่ PPP อยู่ที่ 21,779 ล้านยูโรคือเท่าไร?",
    "context": "CREATE TABLE table_2293510_1 (total__million_€__ VARCHAR, ppp__million_€_ VARCHAR)"
  },
  {
    "answer": "SELECT _percentage_of_eu_average_gdp__ppp_ FROM table_2293510_1 WHERE €_per_capita__2005_ = 2519",
    "question_en": "What's the percentage of EU average GDP (PPP) in the region where € per capita is 2519",
    "question_th": "เปอร์เซ็นต์ของ GDP เฉลี่ยของสหภาพยุโรป (PPP) ในภูมิภาคที่ € ต่อหัว คือเท่าไร 2519",
    "context": "CREATE TABLE table_2293510_1 (_percentage_of_eu_average_gdp__ppp_ VARCHAR, €_per_capita__2005_ VARCHAR)"
  },
  {
    "answer": "SELECT MAX(stage) FROM table_22941863_19 WHERE winner = \"Bernhard Eisel\"",
    "question_en": "If the winner is Bernhard Eisel, what is the stage maximum?",
    "question_th": "หากผู้ชนะคือ Bernhard Eisel เวทีสูงสุดคือเท่าใด?",
    "context": "CREATE TABLE table_22941863_19 (stage INTEGER, winner VARCHAR)"
  },
  {
    "answer": "SELECT mountains_classification FROM table_22941863_19 WHERE winner = \"Bernhard Eisel\"",
    "question_en": "What is the mountain classification name if the winner is Bernhard Eisel?",
    "question_th": "ถ้าผู้ชนะคือ 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_en": "If the stage is 3, what is the points classification name?",
    "question_th": "ถ้าสเตจที่ 3 ชื่อการจำแนกคะแนนคืออะไร?",
    "context": "CREATE TABLE table_22941863_19 (points_classification VARCHAR, stage VARCHAR)"
  },
  {
    "answer": "SELECT team_classification FROM table_22941863_19 WHERE stage = 9",
    "question_en": "If the stage is 9, what is the team classification name?",
    "question_th": "ถ้าสเตจที่ 9 จะใช้ชื่อประเภททีมว่าอะไร?",
    "context": "CREATE TABLE table_22941863_19 (team_classification VARCHAR, stage VARCHAR)"
  },
  {
    "answer": "SELECT mountains_classification FROM table_22941863_19 WHERE winner = \"Michael Albasini\"",
    "question_en": "If the winner is Michael Albasini, what is the mountains classification name?",
    "question_th": "หากผู้ชนะคือ Michael Albasini การจัดประเภทภูเขาคืออะไร?",
    "context": "CREATE TABLE table_22941863_19 (mountains_classification VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_22941863_19 WHERE sprints_classification = \"no award\"",
    "question_en": "What is the name of the winner when the sprints classification is no award?",
    "question_th": "ผู้ชนะชื่ออะไรเมื่อประเภทการวิ่งไม่มีรางวัล?",
    "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_en": "How many viewers (in millions) watched the episode written by deidre shaw?",
    "question_th": "มีผู้ชมกี่คน (เป็นล้าน) ที่ดูตอนที่เขียนโดย 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_en": "What was the original air date of episode number 1?",
    "question_th": "ตอนที่ 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_en": "Who was the bowler when the batsmen was dwaraka ravi teja rp singh pragyan ojha?",
    "question_th": "ใครเป็นคนขว้างลูกในสมัยที่ผู้ตีคือ ทวารากา ราวี เตจา รพี ซิงห์ ปราเกียน โอจฮา?",
    "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_en": "How many bowlers were there when david hussey azhar mahmood gurkeerat singh was the batsmen?",
    "question_th": "มีนักขว้างกี่คนในตอนที่ David Hussey Azhar Mahmood Gurkeerat Singh เป็นคนตีลูก?",
    "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_en": "What season was herschelle gibbs andrew symonds venugopal rao batsmen?",
    "question_th": "เฮอร์เชล กิบส์ แอนดรูว์ ไซมอนด์ เวนูโกพัล ราว คนตีลูก ในฤดูกาลใด?",
    "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_en": "What was the scorecard when robin uthappa mark boucher jacques kallis was the batsmen?",
    "question_th": "ดัชนีชี้วัดคืออะไรเมื่อโรบิน อุทัปปา มาร์ค บูเชอร์ ฌาคส์ คาลลิสเป็นคนตีลูก?",
    "context": "CREATE TABLE table_22962745_35 (scorecard VARCHAR, batsmen VARCHAR)"
  },
  {
    "answer": "SELECT MAX(no) FROM table_22962745_35 WHERE against = \"Rajasthan Royals\"",
    "question_en": "What is the number when against is rajasthan royals?",
    "question_th": "ราชวงศ์ราชสถานเป็นปฏิปักษ์กับเลขอะไร?",
    "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_en": "Name number of stellar classification for 3 neptune planets < 1 au",
    "question_th": "ชื่อหมายเลขการจำแนกดาวฤกษ์ของดาวเคราะห์เนปจูน 3 ดวง < 1 au",
    "context": "CREATE TABLE table_2296507_1 (stellar_classification VARCHAR, system VARCHAR)"
  },
  {
    "answer": "SELECT system FROM table_2296507_1 WHERE constellation = \"Aries\"",
    "question_en": "Name the system for aries",
    "question_th": "ตั้งชื่อระบบสำหรับราศีเมษ",
    "context": "CREATE TABLE table_2296507_1 (system VARCHAR, constellation VARCHAR)"
  },
  {
    "answer": "SELECT stellar_age__myr_ FROM table_2296507_1 WHERE stellar_classification = \"F3V\"",
    "question_en": "Name the stellar age for f3v",
    "question_th": "ตั้งชื่ออายุที่เป็นตัวเอกของ 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_en": "Name the dust for star being hd 69830",
    "question_th": "ตั้งชื่อฝุ่นให้ดาวเป็น 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_en": "Name the number of names for exeter chiefs",
    "question_th": "ตั้งชื่อจำนวนรายชื่อหัวหน้าเอ็กเซเตอร์",
    "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_en": "Name the name for henley manchester",
    "question_th": "ตั้งชื่อให้กับเฮนลีย์แมนเชสเตอร์",
    "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_en": "Name the name for doncaster newbury",
    "question_th": "ตั้งชื่อให้กับดอนคาสเตอร์นิวเบอรี",
    "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_en": "Name the season for rotherham titans",
    "question_th": "ตั้งชื่อฤดูกาลของร็อตเธอร์แฮมไททันส์",
    "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_en": "Name the name for  plymouth albion orrell",
    "question_th": "ตั้งชื่อให้พลีมัธ อัลเบี้ยน ออร์เรลล์",
    "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_en": "What's the tail number of the airplane involved in the accident described as crashed?",
    "question_th": "หมายเลขท้ายของเครื่องบินที่เกี่ยวข้องกับอุบัติเหตุคือหมายเลขอะไร",
    "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_en": "How many different brief descriptions are there for crashes with 0/161 fatalities?",
    "question_th": "มีคำอธิบายสั้นๆ สำหรับการชนที่มีผู้เสียชีวิต 0/161 รายแตกต่างกันกี่ข้อ",
    "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_en": "When did the airplane with tail number RA-85282 crash?",
    "question_th": "เครื่องบินหมายเลขหาง RA-85282 ตกเมื่อใด",
    "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_en": "How many fatalities were there in the crash described as ditched 300 m short of runway?",
    "question_th": "มีผู้เสียชีวิตกี่รายในอุบัติเหตุครั้งนี้ ซึ่งระบุว่าขาดรันเวย์ไป 300 เมตร",
    "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_en": "How many fatalities were there in the crash described as crashed at take-off due to engine failure?",
    "question_th": "มีผู้เสียชีวิตกี่รายในอุบัติเหตุครั้งนี้ ซึ่งอธิบายว่าเกิดอุบัติเหตุขณะขึ้นเครื่องเนื่องจากเครื่องยนต์ขัดข้อง",
    "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_en": "What class year was Vencie Glenn from? ",
    "question_th": "Vencie Glenn มาจากชั้นปีใด",
    "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_en": "What position did the player whose highlights were 5 career INTs play?",
    "question_th": "ผู้เล่นที่มีไฮไลท์ 5 อาชีพ INT เล่นตำแหน่งใด?",
    "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_en": "What class year was the player whose highlights were 35 career INTs from?",
    "question_th": "ผู้เล่นที่มีจุดเด่นคือ 35 อาชีพ INT มาจากชั้นปีใด",
    "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_en": "What class year was the player who played for Buffalo from? ",
    "question_th": " ผู้เล่นที่เล่นให้กับบัฟฟาโลมาจากชั้นปีใด",
    "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_en": "Name the gore number for others # 6.6%",
    "question_th": "ตั้งชื่อเลขกอร์ให้คนอื่น #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_en": "Name the others % for bush number 1372",
    "question_th": "ตั้งชื่อ % อื่นๆ สำหรับบุชหมายเลข 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_en": "Name the gore number for others % being 5.3%",
    "question_th": "ตั้งชื่อเลขกอร์ให้คนอื่น % เป็น 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_en": "Name the couty for others% 5.8",
    "question_th": "ตั้งชื่อ couty ให้ผู้อื่น% 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_en": "Name the number of bush % for elko",
    "question_th": "ตั้งชื่อจำนวนบุช % สำหรับ 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_en": "If the series is ADAC GT Masters and poles is 1, what is the name of the team?",
    "question_th": "ถ้าซีรีย์เป็น ADAC GT Masters และโพลเป็น 1 ทีมชื่ออะไร?",
    "context": "CREATE TABLE table_22998777_1 (team VARCHAR, poles VARCHAR, series VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(season) FROM table_22998777_1 WHERE position = \"26th\"",
    "question_en": "If the position of 26th what is the season total number?",
    "question_th": "ถ้าอันดับ 26 ฤดูกาลรวมเลขเท่าไหร่?",
    "context": "CREATE TABLE table_22998777_1 (season VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_22998777_1 WHERE points = \"41\"",
    "question_en": "If the points is 41, what is the season?",
    "question_th": "ถ้าแต้มเป็น 41 ฤดูกาลอะไร?",
    "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_en": "If the primary (South) winners is Inter The Bloomfield, what is the season total number?",
    "question_th": "หากผู้ชนะหลัก (ใต้) คืออินเตอร์ เดอะ บลูมฟิลด์ จำนวนรวมของฤดูกาลคือเท่าใด?",
    "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_en": "What is the season total number if the primary (South) winners is Ridings High 'A'?",
    "question_th": "จำนวนรวมของฤดูกาลจะเป็นเท่าใดหากผู้ชนะหลัก (ใต้) คือ 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_en": "What is the year of the season if the intermediate (South) winners is Southmead Athletic?",
    "question_th": "ปีของฤดูกาลคือปีใด หากผู้ชนะระดับกลาง (ใต้) คือ เซาธ์มีด แอธเลติก?",
    "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_en": "What is the season date if the minor (South) winners is Bristol Sanctuary XI?",
    "question_th": "ฤดูกาลจะวันที่ใดหากผู้ชนะรอง (ใต้) คือ 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_en": "What isthe minor (South) winners total number is the primary (South) winners is Mendip Gate?",
    "question_th": "จำนวนรวมของผู้ชนะรอง (ใต้) คืออะไร ผู้ชนะหลัก (ใต้) คือ 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_en": "What area was damaged when King Khalid Military City was targeted?",
    "question_th": "พื้นที่ใดได้รับความเสียหายเมื่อเมืองทหารคิงคาลิดตกเป็นเป้าหมาย?",
    "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_en": "What was the place and date that the Apartments area was damaged?",
    "question_th": "บริเวณอพาร์ตเมนต์ได้รับความเสียหายเมื่อวันที่และเมื่อใด",
    "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_en": "Was the missile intercepted by patriot when the parking lot was damaged?",
    "question_th": "ขีปนาวุธถูกสกัดกั้นโดยผู้รักชาติเมื่อลานจอดรถได้รับความเสียหายหรือไม่?",
    "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_en": "What number missile led to damage to the Islamic University campus?",
    "question_th": "ขีปนาวุธจำนวนเท่าใดที่ทำให้เกิดความเสียหายต่อวิทยาเขตของมหาวิทยาลัยอิสลาม?",
    "context": "CREATE TABLE table_23014685_1 (no INTEGER, area_damaged VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_23015396_1 WHERE driver = \"Mark Martin\"",
    "question_en": "Name the number of year for mark martin",
    "question_th": "ตั้งชื่อจำนวนปีของมาร์ค มาร์ติน",
    "context": "CREATE TABLE table_23015396_1 (year VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_23015396_1 WHERE date = \"June 30\"",
    "question_en": "Name the number of year for june 30",
    "question_th": "ตั้งชื่อหมายเลขปีสำหรับวันที่ 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_en": "What is the model number for part numbers of  cm80616003177acbx80616i5660?",
    "question_th": "หมายเลขรุ่นของหมายเลขชิ้นส่วน 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_en": "What is every release price(USD) for model number core i5-650?",
    "question_th": "ราคาวางจำหน่าย (USD) สำหรับหมายเลขรุ่น 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_en": "How many frequencies have a model number of core i5-655k?",
    "question_th": "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_en": "What is every part number with model number core i5-670?",
    "question_th": "Part 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_en": "What is the record for Big Ten Team #4 Purdue?",
    "question_th": "สถิติของทีม Big Ten #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_en": "Name the avg start for avg finish being 24.2",
    "question_th": "ตั้งชื่อการเริ่มต้นเฉลี่ยสำหรับการจบเฉลี่ยเป็น 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_en": "Name the year for avg start being 22.4",
    "question_th": "ตั้งชื่อปีเริ่มต้นเฉลี่ยเป็น 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_en": "How many KEI catagories are listed when the economic incentive regime is 2.56? ",
    "question_th": "มีกี่หมวดหมู่ของ KEI ที่แสดงเมื่อระบบแรงจูงใจทางเศรษฐกิจอยู่ที่ 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_en": "What is the innovation when the economic incentive grime is 7.14? ",
    "question_th": " นวัตกรรมอะไรเมื่อค่าสิ่งสกปรกจูงใจเศรษฐกิจเป็น 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_en": "What is the education in Nepal? ",
    "question_th": " การศึกษาในประเทศเนปาลคืออะไร?",
    "context": "CREATE TABLE table_23050383_1 (education VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT 2008 AS _rank FROM table_23050383_1 WHERE country = \"Djibouti\"",
    "question_en": "What is the 2008 rank of Djibouti? ",
    "question_th": " จิบูตีอันดับเท่าไหร่ในปี 2008?",
    "context": "CREATE TABLE table_23050383_1 (country VARCHAR)"
  },
  {
    "answer": "SELECT ict FROM table_23050383_1 WHERE education = \"1.73\" AND ki = \"1.99\"",
    "question_en": "What is the ICT when education is 1.73 and KI is ag 1.99? ",
    "question_th": " ICT คืออะไร เมื่อการศึกษาคือ 1.73 และ KI คือ 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_en": "What is the education when the economic incentive regime is 1.58?",
    "question_th": "การศึกษาเมื่อระบบแรงจูงใจทางเศรษฐกิจอยู่ที่ 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_en": "What was the air date of the episod that had 456.58 thousand viewers?",
    "question_th": "วันที่ออกอากาศของตอนที่มีผู้ชม 456.58 พันคนคือวันที่เท่าไร?",
    "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_en": "What season had a winning profit of $15,000?",
    "question_th": "ฤดูกาลใดมีกำไรชนะ 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_en": "How many series premieres did the season \"All-stars\" have?",
    "question_th": "ซีซั่น All-Stars มีรอบปฐมทัศน์กี่เรื่อง?",
    "context": "CREATE TABLE table_2311410_1 (series_premiere VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT erin_and_jake FROM table_2311410_5 WHERE week = 4",
    "question_en": "Name the erin and jake for week 4",
    "question_th": "ตั้งชื่อเอรินและเจคสำหรับสัปดาห์ที่ 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_en": "when the number of spectator are 5.28 millions, which is the smallest number of the episode in series? ",
    "question_th": " เมื่อจำนวนคนดู 5.28 ล้านคน ตอนไหนน้อยที่สุดในซีรีส์?",
    "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_en": "which is the biggest number of episode in the season, where the number of the episode in series is 20?",
    "question_th": "จำนวนตอนใดมากที่สุดในซีซั่น โดยจำนวนตอนในซีรีส์คือ 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_en": "what is the name of the episode when the number of spectators was 5.60 millions?",
    "question_th": "ตอนที่จำนวนผู้ชม 5.60 ล้านคน ชื่อว่าอะไร?",
    "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_en": "how many millions of spectator did has the episode whose prod.code was rp#213?",
    "question_th": "มีผู้ชมกี่ล้านคนที่มีตอนที่ prod.code เป็น 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_en": "which is the biggest number of episode in the season, when the director of the episode was Constantine Makris?",
    "question_th": "ตอนไหนคือจำนวนตอนที่ใหญ่ที่สุดในซีซั่นตอนที่ผู้กำกับคือ 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_en": "What is the name of the episode that was written by Michael Rauch?",
    "question_th": "ตอนที่เขียนโดย 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_en": "For the episode directed by Matthew Penn, what is the total number in the series?",
    "question_th": "ตอนที่กำกับโดยแมทธิว เพนน์ ซีรีส์เรื่องนี้มีทั้งหมดกี่เรื่อง?",
    "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_en": "Name the production code for 4.92 million viewers",
    "question_th": "ตั้งชื่อรหัสการผลิตสำหรับผู้ชม 4.92 ล้านคน",
    "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_en": "Name the least number in season for jessica ball",
    "question_th": "ตั้งชื่อหมายเลขที่น้อยที่สุดในฤดูกาลสำหรับเจสสิก้าบอล",
    "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_en": "How many flaps did he have when he had 109 points?",
    "question_th": "เขามีปีกกี่อันเมื่อเขามี 109 แต้ม?",
    "context": "CREATE TABLE table_23128286_1 (flaps INTEGER, points VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(wins) FROM table_23128286_1 WHERE team_name = \"Carlin Motorsport\"",
    "question_en": "How many wins did he have with carlin motorsport?",
    "question_th": "เขามีชัยชนะกี่ครั้งกับคาร์ลินมอเตอร์สปอร์ต?",
    "context": "CREATE TABLE table_23128286_1 (wins VARCHAR, team_name VARCHAR)"
  },
  {
    "answer": "SELECT MAX(races) FROM table_23128286_1",
    "question_en": "What was the most races he had in a season?",
    "question_th": "เขามีการแข่งขันมากที่สุดในฤดูกาลใด?",
    "context": "CREATE TABLE table_23128286_1 (races INTEGER)"
  },
  {
    "answer": "SELECT sets_w_l FROM table_23133482_1 WHERE player = \"Ken Rosewall\"",
    "question_en": "What are Ken Rosewall's sets w-l?",
    "question_th": "ชุด wl ของ Ken Rosewall คืออะไร?",
    "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_en": "What are Arthur Ashe's games w-l?",
    "question_th": "เกมของ Arthur Ashe คืออะไร wl?",
    "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_en": "Name the games w-1 for cliff richey",
    "question_th": "ตั้งชื่อเกม w-1 สำหรับหน้าผาริชชี่",
    "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_en": "What stage number had the general classification Rory Sutherland?",
    "question_th": "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_en": "Who was the Youth Classification in the race with Kenneth Hanson as Mountains Classification and Lucas Sebastian Haedo as winner?",
    "question_th": "ใครคือ Youth Classification ในการแข่งขันที่มี Kenneth Hanson เป็น Mountains Classification และ Lucas Sebastian Haedo เป็นผู้ชนะ",
    "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_en": "Who won the race with Tom Zirbel as Mountains Classification and Thomas Soladay as Points Classification?",
    "question_th": "ใครเป็นผู้ชนะการแข่งขันโดยมี Tom Zirbel เป็น Mountains Classification และ Thomas Soladay เป็น 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_en": "Who was Mountains Classification in the race with Nick Frey as Youth Classification and Tom Zirbel as Points Classification?",
    "question_th": "ใครคือ Mountains Classification ในการแข่งขันโดยมี Nick Frey เป็น Youth Classification และ Tom Zirbel เป็น 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_en": "How many Mountains Classifications were in the race with Mike Northey as Youth Classification?",
    "question_th": "มี Mountains Classifications กี่รายการในการแข่งขันกับ Mike Northey ในฐานะ 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_en": "How many foundation dates were there when the  television channels is canal nou canal nou dos canal nou 24 tvvi?",
    "question_th": "มีกี่วันก่อตั้งเมื่อช่องโทรทัศน์ 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úsica\"",
    "question_en": "If the radio stations is radio nou si radio radio nou música; what were the total number of television channels?",
    "question_th": "หากสถานีวิทยุเป็น radio nou si radio radio nou música; โทรทัศน์มีทั้งหมดกี่ช่อง?",
    "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_en": "What is the total number of television channels when one of the radio stations is onda madrid?",
    "question_th": "จำนวนช่องโทรทัศน์ทั้งหมดเมื่อสถานีวิทยุแห่งใดแห่งหนึ่งคือ 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úblico Radio Televisión Madrid (EPRTVM)\"",
    "question_en": "Which of the radio stations has the organization of ente público radio televisión madrid (eprtvm)?",
    "question_th": "สถานีวิทยุใดที่มีองค์กร ente público radio televisión 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_en": "What is the autonomous community with television channels  tpa tpa2 rtpa internacional?",
    "question_th": "ชุมชนอิสระที่มีช่องโทรทัศน์ 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_en": "How many villains were in episode 3 (13)?",
    "question_th": "ตอนที่ 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_en": "What was the title of the episode where reg lacey (aka mr. b) played the villain?",
    "question_th": "ตอนที่ reg lacey (aka mr. b) รับบทเป็นตัวร้ายชื่ออะไร",
    "context": "CREATE TABLE table_23170118_2 (title VARCHAR, villains VARCHAR)"
  },
  {
    "answer": "SELECT MAX(three_pointers) FROM table_23183195_5 WHERE player = \"DeWanna Bonner\"",
    "question_en": "Name the most three pointers for dewanna bonner",
    "question_th": "ตั้งชื่อตัวชี้สามตัวที่มากที่สุดสำหรับ 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_en": "Name the least field goals for chantel hilliard",
    "question_th": "ตั้งชื่อฟิลด์โกลน้อยที่สุดของแชนเทล ฮิลเลียร์ด",
    "context": "CREATE TABLE table_23183195_5 (field_goals INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(minutes) FROM table_23183195_5 WHERE player = \"Morgan Jennings\"",
    "question_en": "Name the most minutes for morgan jennings",
    "question_th": "บอกชื่อนาทีที่มากที่สุดของมอร์แกน เจนนิ่งส์",
    "context": "CREATE TABLE table_23183195_5 (minutes INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(free_throws) FROM table_23183195_5 WHERE steals = 4",
    "question_en": "Name the most free throws for 4 steals",
    "question_th": "บอกชื่อการโยนโทษสูงสุดจากการขโมย 4 ครั้ง",
    "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_en": "What is the road record for the team with an overall record of 22-11?",
    "question_th": "บันทึกถนนของทีมด้วยสถิติรวม 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_en": "What is the road record for Vanderbilt?",
    "question_th": "ประวัติถนนของ 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_en": "What team's overal record is 22-11?",
    "question_th": "สถิติโดยรวมของทีมใดคือ 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_en": "What is the percentage for the team with a road record of 3-4 and a home record of 7-0?",
    "question_th": "เปอร์เซ็นต์ของทีมที่มีสถิติ 3-4 และสถิติในบ้าน 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_en": "Name the number of three pointers for 67",
    "question_th": "ตั้งชื่อตัวเลขสามตัวชี้สำหรับ 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_en": "Name the field goals for alexis yackley",
    "question_th": "ตั้งชื่อลูกยิงประตูของอเล็กซิส ยัคลีย์",
    "context": "CREATE TABLE table_23184448_4 (field_goals INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(assists) FROM table_23184448_4 WHERE minutes = 321",
    "question_en": "Name the number of assists for 321 minutes ",
    "question_th": " ทายจำนวนแอสซิสต์ 321 นาที",
    "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_en": "Name the number of players for field goals being 25 and blocks is 6",
    "question_th": "ตั้งชื่อจำนวนผู้เล่นสำหรับการยิงประตูเป็น 25 และบล็อคคือ 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_en": "Name the location attendance of 5-15",
    "question_th": "ตั้งชื่อสถานที่เข้าร่วม 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_en": "Name the record for golden state",
    "question_th": "ตั้งชื่อบันทึกสำหรับสถานะทอง",
    "context": "CREATE TABLE table_23186738_6 (record VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(high_points) FROM table_23186738_6 WHERE record = \"5-17\"",
    "question_en": "Name the number of high points for record 5-17",
    "question_th": "ตั้งชื่อจำนวนคะแนนสูงสุดสำหรับบันทึก 5-17",
    "context": "CREATE TABLE table_23186738_6 (high_points VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_23186738_6 WHERE team = \"Houston\"",
    "question_en": "Name the record for houston",
    "question_th": "ตั้งชื่อเรกคอร์ดสำหรับ 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_en": "Name the cardinal points for 19-4 record",
    "question_th": "ตั้งชื่อแต้มสำคัญสำหรับบันทึก 19-4",
    "context": "CREATE TABLE table_23192661_3 (cardinal_points INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_23192661_3 WHERE record = \"2-1\"",
    "question_en": "Name the location for 2-1 record",
    "question_th": "ตั้งชื่อสถานที่สำหรับบันทึก 2-1",
    "context": "CREATE TABLE table_23192661_3 (location VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(step_6) FROM table_2319437_1 WHERE gs_grade = 11",
    "question_en": "Name the total number of step 6 for 11 gs grade",
    "question_th": "บอกจำนวนขั้นตอนที่ 6 ทั้งหมดสำหรับเกรด 11 gs",
    "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_en": "such as are entire the rating of closing where championship is moscow",
    "question_th": "เช่นมีการจัดอันดับการปิดโดยที่แชมป์คือมอสโก",
    "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_en": "as is the quantity variety of score between ultimate the place opponents between remaining is alexandra fusai nathalie tauziat",
    "question_th": "เช่นเดียวกับปริมาณคะแนนที่หลากหลายระหว่างอัลติเมท และคู่ต่อสู้ที่เหลือคือ อเล็กซานดรา ฟูไซ นาตาลี เทาเซียต",
    "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ürich\"",
    "question_en": "what are every one of the rivals in conclusive where title is zürich",
    "question_th": "อะไรคือคู่แข่งในการสรุปโดยที่ชื่อซูริค",
    "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_en": "what are all the score in conclusive where title is rome",
    "question_th": "คะแนนทั้งหมดสรุปว่าชื่อโรมเป็นอย่างไรบ้าง",
    "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_en": "Name the most 10 3 bbl/d (2008) for present share being 1.7%",
    "question_th": "ตั้งชื่อ 10 3 bbl/d มากที่สุด (2551) สำหรับส่วนแบ่งปัจจุบันคือ 1.7%",
    "context": "CREATE TABLE table_23195_5 (present_share VARCHAR)"
  },
  {
    "answer": "SELECT present_share FROM table_23195_5 WHERE producing_nation = \"Australia\"",
    "question_en": "Name the present share for australia",
    "question_th": "ตั้งชื่อหุ้นปัจจุบันสำหรับออสเตรเลีย",
    "context": "CREATE TABLE table_23195_5 (present_share VARCHAR, producing_nation VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_23211041_10 WHERE team = \"Utah\"",
    "question_en": "Name the location attendance for utah",
    "question_th": "ตั้งชื่อการเข้าร่วมสถานที่สำหรับยูทาห์",
    "context": "CREATE TABLE table_23211041_10 (location_attendance VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(game) FROM table_23211041_5 WHERE team = \"Houston\"",
    "question_en": "How many games were played against houston?",
    "question_th": "เล่นกับฮูสตันกี่เกม?",
    "context": "CREATE TABLE table_23211041_5 (game VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_23211041_5 WHERE date = \"November 24\"",
    "question_en": "What team was played on november 24?",
    "question_th": "วันที่ 24 พฤศจิกายน พบกับทีมใด?",
    "context": "CREATE TABLE table_23211041_5 (team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_23211041_5 WHERE game = 4",
    "question_en": "Who had the most points in game 4?",
    "question_th": "ใครมีคะแนนมากที่สุดในเกมที่ 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_en": "Who had the highest points against new york?",
    "question_th": "ใครมีคะแนนสูงสุดเมื่อเทียบกับนิวยอร์ก?",
    "context": "CREATE TABLE table_23211041_5 (high_points VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT syrian_christians FROM table_23214055_2 WHERE district = \"Thiruvananthapuram\"",
    "question_en": "Name the syrian christians for  thiruvananthapuram",
    "question_th": "ตั้งชื่อคริสเตียนซีเรียสำหรับเมืองธีรุวานันทปุรัม",
    "context": "CREATE TABLE table_23214055_2 (syrian_christians VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT ezhavas FROM table_23214055_2 WHERE muslims = \"5.4\"",
    "question_en": "Name the ezhavas for muslims being 5.4",
    "question_th": "ตั้งชื่อเอชาวาสสำหรับชาวมุสลิมเป็น 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_en": "Name the ezhavas and syrian christians being 26.2",
    "question_th": "ตั้งชื่อเอชาวาสและคริสเตียนซีเรียเป็น 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_en": "Name the syrian christians for kollam",
    "question_th": "ตั้งชื่อคริสเตียนซีเรียเป็น kollam",
    "context": "CREATE TABLE table_23214055_2 (syrian_christians VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_23214055_2 WHERE others = \"18.3\"",
    "question_en": "Name the district for others being 18.3",
    "question_th": "ตั้งชื่ออำเภอให้คนอื่นเป็น 18.3",
    "context": "CREATE TABLE table_23214055_2 (district VARCHAR, others VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_23214055_2 WHERE nairs = \"8.2\"",
    "question_en": "Name the district for nairs 8.2",
    "question_th": "ตั้งชื่อเขตสำหรับ nars 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_en": "If the total points is 5, what is the 2005-2006 points total number?",
    "question_th": "ถ้าคะแนนรวมคือ 5 คะแนนรวมในปี 2548-2549 เป็นเท่าใด",
    "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_en": "What is the 2006-2007 points minimum is the team is Overmach Parma?",
    "question_th": "คะแนนขั้นต่ำของปี 2549-2550 คือทีมโอเวอร์มัช ปาร์ม่า?",
    "context": "CREATE TABLE table_23215145_2 (team VARCHAR)"
  },
  {
    "answer": "SELECT 2005 AS _06_points FROM table_23215145_2 WHERE team = \"Worcester\"",
    "question_en": "If the team is Worcester, what is the 2005-2006 points?",
    "question_th": "ถ้าทีมวูสเตอร์ ปี 2548-2549 แต้มเท่าไหร่?",
    "context": "CREATE TABLE table_23215145_2 (team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(2006 AS _07_points) FROM table_23215145_2 WHERE team = \"Saracens\"",
    "question_en": "What is the 2006-2007 points total number if the team is Saracens?",
    "question_th": "คะแนนรวมในปี 2549-2550 คือเท่าไรหากทีมคือซาราเซ็นส์?",
    "context": "CREATE TABLE table_23215145_2 (team VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_23224961_1 WHERE oberpfalz = \"SpVgg Vohenstrauß\"",
    "question_en": "When spvgg vohenstrauß is the oberpfalz what is the season?",
    "question_th": "เมื่อ spvgg vohenstrauß เป็น oberpfalz ฤดูกาลคืออะไร?",
    "context": "CREATE TABLE table_23224961_1 (season VARCHAR, oberpfalz VARCHAR)"
  },
  {
    "answer": "SELECT niederbayern FROM table_23224961_1 WHERE oberbayern_b = \"ESV Ingolstadt\"",
    "question_en": "When esv ingolstadt is the oberbayern b what is the  niederbayern?",
    "question_th": "เมื่อ esv ingolstadt เป็น oberbayern b นีเดอร์บาเยิร์นคืออะไร?",
    "context": "CREATE TABLE table_23224961_1 (niederbayern VARCHAR, oberbayern_b VARCHAR)"
  },
  {
    "answer": "SELECT schwaben FROM table_23224961_1 WHERE oberbayern_a = \"Wacker Burghausen\"",
    "question_en": "When wacker burghausen is the oberbayern a what is the schwaben?",
    "question_th": "เมื่อ Wacker Burghausen คือ Oberbayern และ 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_en": "When fc oberau is the oberbayern a what is the oberpfalz?",
    "question_th": "เมื่อ fc oberau คือ oberbayern a 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_en": "When tus rosenberg is the oberpfalz what is the oberbayern b?",
    "question_th": "เมื่อ tus rosenberg เป็น oberpfalz 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_en": "When fc schwandorf is the oberpfalz what is the oberbayern b?",
    "question_th": "เมื่อ fc ชวานดอร์ฟเป็นโอแบร์พฟัลซ์ โอเบอร์บาเยิร์น 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_en": "What was the score in the final when the outcome was winner in 1989?",
    "question_th": "คะแนนในรอบชิงชนะเลิศเมื่อผลการแข่งขันเป็นผู้ชนะในปี 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_en": "What was the score in the final when Mats Wilander was the opponent in the Australian Open?",
    "question_th": "คะแนนในรอบชิงชนะเลิศเมื่อ Mats Wilander เป็นคู่ต่อสู้ใน 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_en": "If the number in the season is 22, what is the original air date?",
    "question_th": "ถ้าเลขในซีซั่นคือ 22 เดิมออนแอร์วันไหนคะ?",
    "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_en": "What is the maximum season number for the episode written by Jonathan Greene?",
    "question_th": "หมายเลขซีซันสูงสุดของตอนที่เขียนโดย 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_en": "Name the original air date for prod code 201",
    "question_th": "ตั้งชื่อวันออกอากาศเดิมสำหรับรหัสผลิตภัณฑ์ 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_en": "Name the written by for prod code being 206",
    "question_th": "ตั้งชื่อที่เขียนโดยรหัสผลิตภัณฑ์เป็น 206",
    "context": "CREATE TABLE table_2322716_2 (written_by VARCHAR, prod_code VARCHAR)"
  },
  {
    "answer": "SELECT MAX(position) FROM table_23239946_3",
    "question_en": "How many positions are there in Canadian Nascar? ",
    "question_th": " Canadian Nascar มีกี่ตำแหน่ง?",
    "context": "CREATE TABLE table_23239946_3 (position INTEGER)"
  },
  {
    "answer": "SELECT COUNT(driver) FROM table_23239946_3 WHERE points = 1942",
    "question_en": "How many drivers have 1942 points?",
    "question_th": "คนขับมีกี่คน 1942 คะแนน?",
    "context": "CREATE TABLE table_23239946_3 (driver VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT MIN(starts) FROM table_23239946_3",
    "question_en": "How many starts are there?",
    "question_th": "มีสตาร์ทกี่คันครับ?",
    "context": "CREATE TABLE table_23239946_3 (starts INTEGER)"
  },
  {
    "answer": "SELECT COUNT(wins) FROM table_23239946_3 WHERE driver = \"Andrew Ranger\"",
    "question_en": "How many wins did Andrew Ranger have?",
    "question_th": "แอนดรูว์ เรนเจอร์ ชนะได้กี่ครั้ง?",
    "context": "CREATE TABLE table_23239946_3 (wins VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT MAX(winnings__) AS $_ FROM table_23239946_3 WHERE position = 7",
    "question_en": "What are the winnings for position 7?",
    "question_th": "ชัยชนะของตำแหน่งที่ 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_en": "What number episode in the series was written by David Zuckerman? ",
    "question_th": " 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_en": "What is the original air date of the episode written by David Zuckerman? ",
    "question_th": " วันที่ออกอากาศดั้งเดิมของตอนที่เขียนโดย 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_en": "What is the title of the episode directed by Rodney Clouden? ",
    "question_th": " ตอนที่กำกับโดย 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_en": "How many millions of U.S. viewers watched the episode with the production code of 3AJN01?",
    "question_th": "ผู้ชมในสหรัฐฯ กี่ล้านคนดูตอนนี้ด้วยรหัสการผลิต 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_en": "Who directed the episode that had 6.76 million U.S. viewers?",
    "question_th": "ใครเป็นผู้กำกับตอนที่มีผู้ชม 6.76 ล้านคนในสหรัฐฯ?",
    "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_en": "What episode number of the season was also number 75 in the series?",
    "question_th": "หมายเลขตอนใดของซีซันที่มีหมายเลข 75 ในซีรีส์นี้ด้วย",
    "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_en": "Who wrote the episode that had a production code of 3ajn20?",
    "question_th": "ใครเป็นคนเขียนตอนที่มีรหัสการผลิต 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_en": "Who directed the episode that was written by Jonathan Fener?",
    "question_th": "ใครเป็นผู้กำกับตอนที่เขียนโดย 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_en": "What was the name of the episode with a production code of 3ajn20?",
    "question_th": "ตอนที่มีรหัสการผลิต 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_en": "Who wrote the episode with production code 1AJN05?",
    "question_th": "ใครเป็นคนเขียนตอนที่มีรหัสการผลิต 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_en": "How many different series numbers are there for the episode seen by 7.84 million people in the US?",
    "question_th": "มีซีรีส์จำนวนเท่าใดสำหรับตอนนี้ที่มีผู้ชม 7.84 ล้านคนในสหรัฐอเมริกา",
    "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_en": "What's the series number of the episode written by Dan Vebber?",
    "question_th": "ตอนที่เขียนโดย 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_en": "How many different titles are there of episodes that have been seen by 7.84 million people in the US/",
    "question_th": "มีตอนต่างๆ กี่ตอนที่มีผู้ชม 7.84 ล้านคนในสหรัฐอเมริกา/",
    "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_en": "When did 6.09 million people in the US see the original airing of an episode of the show?",
    "question_th": "เมื่อใดที่ผู้คน 6.09 ล้านคนในสหรัฐอเมริกาเห็นการออกอากาศตอนดั้งเดิมของรายการ",
    "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_en": "What's the season number of the episode originally seen by 6.64 million people in the US?",
    "question_th": "หมายเลขซีซันของตอนเดิมที่มีผู้ชม 6.64 ล้านคนในสหรัฐอเมริกาคือเท่าใด",
    "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_en": "What's the production code of the episode seen by 7.49 million people in the US?",
    "question_th": "รหัสการผลิตของตอนนี้ที่มีผู้ชม 7.49 ล้านคนในสหรัฐอเมริกาเป็นอย่างไร",
    "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_en": "What opponent got 44 points in their game?",
    "question_th": "คู่ต่อสู้คนใดได้ 44 แต้มในเกมของพวกเขา?",
    "context": "CREATE TABLE table_23243769_4 (opponent VARCHAR, opp_points VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_23243769_4 WHERE record = \"4-1\"",
    "question_en": "Where was the game with a 4-1 record played?",
    "question_th": "เกมนี้เล่นด้วยสถิติ 4-1 ที่ไหน?",
    "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_en": "Who did the high rebounds in the game where Larry Hughes (21) did the high ponts?",
    "question_th": "ใครเป็นผู้ทำรีบาวด์สูงในเกมที่ แลร์รี ฮิวจ์ส (21) ทำพอนต์สูง?",
    "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_en": "How many different people did different scores of high assists during the December 11 game?",
    "question_th": "มีกี่คนที่ทำคะแนนแอสซิสต์สูงต่างกันไปในเกมวันที่ 11 ธันวาคม?",
    "context": "CREATE TABLE table_23248869_6 (high_assists VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_23248869_6 WHERE team = \"Portland\"",
    "question_en": "Who did the high assists in the game against Portland?",
    "question_th": "ใครทำแอสซิสต์ได้สูงในเกมกับพอร์ตแลนด์?",
    "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_en": "What is every score for location attendance of Madison Square Garden 19,763 and game less than 80.0?",
    "question_th": "ทุกคะแนนสำหรับการเข้าร่วมสถานที่ของ Madison Square Garden 19,763 และเกมน้อยกว่า 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_en": "What is every record for the team Boston?",
    "question_th": "ทุกสถิติของทีมบอสตันคืออะไร?",
    "context": "CREATE TABLE table_23248869_10 (record VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(high_assists) FROM table_23248869_10 WHERE game = 81",
    "question_en": "How many values for high assists when the game is 81?",
    "question_th": "แอสซิสต์สูงเมื่อเกมเป็น 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_en": "How many times was the high points david lee (30)",
    "question_th": "แต้มสูงกี่ครั้งแล้ว เดวิด ลี (30)",
    "context": "CREATE TABLE table_23248869_8 (date VARCHAR, high_points VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_23248869_8 WHERE score = \"L 85–118 (OT)\"",
    "question_en": "Who had the high assists when the score was l 85–118 (ot)",
    "question_th": "ใครทำแอสซิสต์ได้สูงเมื่อสกอร์อยู่ที่ l 85–118 (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_en": "What was the record when the high rebounds was david lee (8)",
    "question_th": "เดวิด ลี (8) รีบาวด์สูงเป็นสถิติอะไร",
    "context": "CREATE TABLE table_23248869_8 (record VARCHAR, high_rebounds VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(score) FROM table_23248869_8 WHERE record = \"19–34\"",
    "question_en": "How many times was the record 19–34",
    "question_th": "มีสถิติ 19–34 กี่ครั้ง",
    "context": "CREATE TABLE table_23248869_8 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_23248869_8 WHERE record = \"19–35\"",
    "question_en": "What was the score when the record was 19–35",
    "question_th": "คะแนนเมื่อบันทึกคือ 19–35",
    "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_en": "What was the game when high points was david lee (30)",
    "question_th": "เกมอะไรที่มีแต้มสูงคือ เดวิด ลี (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²_ = \"7,447.32\"",
    "question_en": "If the population density is 7,447.32, what is the population total number?",
    "question_th": "ถ้าความหนาแน่นของประชากรคือ 7,447.32 จำนวนประชากรทั้งหมดจะเป็นเท่าใด",
    "context": "CREATE TABLE table_232458_1 (population__2010_census_ VARCHAR, pop_density__per_km²_ VARCHAR)"
  },
  {
    "answer": "SELECT pop_density__per_km²_ FROM table_232458_1 WHERE no_of_barangays = 19",
    "question_en": "If the number of barangays is 19, what is the population density?",
    "question_th": "ถ้าจำนวนบารังไกคือ 19 ความหนาแน่นของประชากรจะเป็นเท่าใด",
    "context": "CREATE TABLE table_232458_1 (pop_density__per_km²_ VARCHAR, no_of_barangays VARCHAR)"
  },
  {
    "answer": "SELECT MIN(population__2010_census_) FROM table_232458_1 WHERE area__km²_ = \"66.34\"",
    "question_en": "If the area is 66.34, what is the minimum (2010 census) population?",
    "question_th": "หากพื้นที่คือ 66.34 จำนวนประชากรขั้นต่ำ (การสำรวจสำมะโนประชากร พ.ศ. 2553) คือเท่าใด",
    "context": "CREATE TABLE table_232458_1 (population__2010_census_ INTEGER, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT city___municipality FROM table_232458_1 WHERE pop_density__per_km²_ = \"1,388.88\"",
    "question_en": "What is the name of the city/municipality if the population is 1,388.88?",
    "question_th": "ชื่อเมือง/เทศบาล ถ้ามีประชากร 1,388.88 คน คืออะไร?",
    "context": "CREATE TABLE table_232458_1 (city___municipality VARCHAR, pop_density__per_km²_ VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(rank) FROM table_23248420_1 WHERE country = \"England\" AND county = \"Merseyside\" AND city_town = \"Birkenhead\"",
    "question_en": "When birkenhead is the city/town and merseyside is the county and england is the country how many ranks are there?",
    "question_th": "เมื่อเบอร์เคนเฮดเป็นเมือง/เมือง และเมอร์ซีย์ไซด์เป็นมณฑล และอังกฤษเป็นประเทศ มีกี่อันดับ?",
    "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_en": "When 2 is the rank what is the city/town?",
    "question_th": "เมื่ออันดับ 2 คือเมืองอะไร?",
    "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_en": "When 20 is the rank and north west is the region/province what is the county?",
    "question_th": "เมื่อ 20 คืออันดับ และทิศตะวันตกเฉียงเหนือคือภูมิภาค/จังหวัด อำเภอคืออะไร?",
    "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_en": "When fleetwood is the city/town how many sets of population are there?",
    "question_th": "เมื่อฟลีทวูดเป็นเมือง/เมือง มีประชากรกี่กลุ่ม?",
    "context": "CREATE TABLE table_23248420_1 (population VARCHAR, city_town VARCHAR)"
  },
  {
    "answer": "SELECT MAX(rank) FROM table_23248420_1 WHERE population = 142900",
    "question_en": "When 142900 is the population what is the highest rank?",
    "question_th": "เมื่อจำนวนประชากร 142900 อยู่อันดับสูงสุดคือข้อใด?",
    "context": "CREATE TABLE table_23248420_1 (rank INTEGER, population VARCHAR)"
  },
  {
    "answer": "SELECT county FROM table_23248420_1 WHERE population = 31901",
    "question_en": "When 31901 is the population what is the county?",
    "question_th": "เมื่อ 31901 เป็นประชากร อำเภออะไร?",
    "context": "CREATE TABLE table_23248420_1 (county VARCHAR, population VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_23248910_5 WHERE record = \"11-3\"",
    "question_en": "What was the score against the team with an 11-3 record against the Hawks?",
    "question_th": "สกอร์กับทีมที่มีสถิติเจอกับฮอกส์ 11-3 เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_23248910_5 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_23248910_5 WHERE record = \"5-2\"",
    "question_en": "Who had the most rebounds in the game against the team with a 5-2 record against the Hawks?",
    "question_th": "ใครมีรีบาวด์มากที่สุดในเกมกับทีมด้วยสถิติ 5-2 กับฮอว์กส์?",
    "context": "CREATE TABLE table_23248910_5 (high_rebounds VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_23248910_6 WHERE team = \"Cavaliers\"",
    "question_en": "What location and it's attendance was the game against the cavaliers?",
    "question_th": "สถานที่ใดและการเข้าร่วมคือเกมกับนตะลึง?",
    "context": "CREATE TABLE table_23248910_6 (location_attendance VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_23248910_6 WHERE team = \"Raptors\"",
    "question_en": "Who scored the highest points and how much against the raptors?",
    "question_th": "ใครทำคะแนนสูงสุดและเทียบกับแร็พเตอร์ได้เท่าไหร่?",
    "context": "CREATE TABLE table_23248910_6 (high_points VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_23248910_6 WHERE team = \"Nets\"",
    "question_en": "What location and it's attendance was the game against the Nets?",
    "question_th": "สถานที่ใดและการเข้าร่วมคือเกมกับ 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_en": "List all players with highest assists from April 2.",
    "question_th": "รายชื่อนักเตะที่แอสซิสต์สูงสุดทั้งหมดตั้งแต่วันที่ 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_en": "List high points from the April 7 game.",
    "question_th": "สรุปคะแนนสูงสุดจากเกมวันที่ 7 เมษายน",
    "context": "CREATE TABLE table_23248910_10 (high_points VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_23248910_9 WHERE date = \"March 5\"",
    "question_en": "What is every team on March 5?",
    "question_th": "ทุกทีมในวันที่ 5 มีนาคมเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_23248910_9 (team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_23248910_9 WHERE team = \"Pistons\"",
    "question_en": "Who is every high points for the Pistons team?",
    "question_th": "ใครคือคะแนนสูงสุดของทีม Pistons?",
    "context": "CREATE TABLE table_23248910_9 (high_points VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_23248910_9 WHERE record = \"46-25\"",
    "question_en": "What is every score with a record of 46-25?",
    "question_th": "ทุกสกอร์ที่มีสถิติ 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_en": "How many people had high rebounds during the game with a record of 34-32?",
    "question_th": "มีกี่คนที่รีบาวด์สูงในระหว่างเกมด้วยสถิติ 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_en": "How many people led in assists on game 71?",
    "question_th": "มีกี่คนที่นำแอสซิสต์ในเกมที่ 71?",
    "context": "CREATE TABLE table_23248940_10 (high_assists VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_23248940_10 WHERE team = \"Washington\"",
    "question_en": "What was the location and it's attendance when the Bobcats played against Washington?",
    "question_th": "สถานที่คืออะไรและเข้าร่วมเมื่อ Bobcats เล่นกับวอชิงตันคืออะไร?",
    "context": "CREATE TABLE table_23248940_10 (location_attendance VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_23248940_7 WHERE team = \"Milwaukee\"",
    "question_en": "Name the record for milwaukee",
    "question_th": "ตั้งชื่อเรกคอร์ดสำหรับมิลวอกี",
    "context": "CREATE TABLE table_23248940_7 (record VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_23248940_7 WHERE record = \"10-14\"",
    "question_en": "Name the location attendance for 10-14",
    "question_th": "ตั้งชื่อสถานที่เข้าร่วมสำหรับ 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_en": "Name the record for december 8",
    "question_th": "ตั้งชื่อบันทึกสำหรับวันที่ 8 ธันวาคม",
    "context": "CREATE TABLE table_23248940_7 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_23248940_9 WHERE game = 50",
    "question_en": "How did the game number 50 end?",
    "question_th": "เกมหมายเลข 50 จบลงอย่างไร?",
    "context": "CREATE TABLE table_23248940_9 (score VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(high_assists) FROM table_23248940_9 WHERE date = \"February 24\"",
    "question_en": "How many different high assists results are there for the game played on February 24?",
    "question_th": "มีผลการแอสซิสต์สูงที่แตกต่างกันกี่แบบสำหรับเกมที่เล่นในวันที่ 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_en": "Who did the most high assists during the game played on February 6?",
    "question_th": "ใครทำแอสซิสต์ได้มากที่สุดระหว่างเกมที่เล่นเมื่อวันที่ 6 กุมภาพันธ์?",
    "context": "CREATE TABLE table_23248940_9 (high_assists VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_23248940_9 WHERE game = 55",
    "question_en": "Where was game number 55 played?",
    "question_th": "เกมหมายเลข 55 เล่นที่ไหน?",
    "context": "CREATE TABLE table_23248940_9 (location_attendance VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_23248967_10 WHERE game = 78",
    "question_en": "What date was game 78 played on?",
    "question_th": "เกม 78 เล่นวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_23248967_10 (date VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_23248967_10 WHERE date = \"April 9\"",
    "question_en": "What is the final score of the game on April 9?",
    "question_th": "คะแนนสุดท้ายของเกมวันที่ 9 เมษายนเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_23248967_10 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_23248967_10 WHERE game = 78",
    "question_en": "Who scored the high points in game 78?",
    "question_th": "ใครทำแต้มสูงสุดในเกมที่ 78?",
    "context": "CREATE TABLE table_23248967_10 (high_points VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_23249053_8 WHERE game > 29.0",
    "question_en": "What is the score when the game is bigger than 29.0?",
    "question_th": "คะแนนเมื่อเกมใหญ่กว่า 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_en": "When rashard lewis (24) has the highest amount of points who is the team?",
    "question_th": "เมื่อ ราชาร์ด เลวิส (24) มีแต้มสูงสุดทีมไหน?",
    "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_en": "When vince carter (24) has the highest points how many teams are there? ",
    "question_th": " เมื่อวินซ์ คาร์เตอร์ (24) มีแต้มสูงสุดจะมีกี่ทีม?",
    "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_en": "In which championship did John Newcombe play against Ken Rosewall in the final match?",
    "question_th": "John Newcombe เล่นกับ Ken Rosewall ในการแข่งขันชิงแชมป์ใดในนัดสุดท้าย?",
    "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_en": "What were the scores of the Wimbledon final matches where Newcombe was the runner-up?",
    "question_th": "นัดชิงชนะเลิศวิมเบิลดันที่นิวคอมบ์เป็นรองแชมป์มีคะแนนเท่าไหร่?",
    "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_en": "On what year did Newcombe first face Clark Graebner in a final match?",
    "question_th": "Newcombe เผชิญหน้ากับ Clark Graebner ครั้งแรกในนัดชิงชนะเลิศในปีใด",
    "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š\"",
    "question_en": "What was the outcome for Newcombe in the matches he played against Jan Kodeš?",
    "question_th": "ผลลัพธ์ของนิวคอมบ์ในการแข่งขันที่เขาเล่นกับแจน โคเดชเป็นอย่างไร?",
    "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_en": "How many writers were there in the episode directed by Charles Haid?",
    "question_th": "มีนักเขียนกี่คนในตอนนี้ที่กำกับโดย 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_en": "What was the title of the episode written by Mark Goffman?",
    "question_th": "ตอนที่เขียนโดย 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_en": "How many original air dates did episode 12 have?h",
    "question_th": "ตอนที่ 12 มีกำหนดออกอากาศดั้งเดิมกี่วัน?",
    "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_en": "How many millions of viewers watched the episode directed by Christine Moore?",
    "question_th": "มีผู้ชมกี่ล้านคนที่ดูตอนที่กำกับโดยคริสติน มัวร์",
    "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–97 (OT)\"",
    "question_en": "Name the number of date for w 107–97 (ot)",
    "question_th": "ตั้งชื่อหมายเลขวันที่สำหรับ w 107–97 (ot)",
    "context": "CREATE TABLE table_23274514_7 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_23274514_7 WHERE record = \"17-32\"",
    "question_en": "Name the date for 17-32",
    "question_th": "ตั้งชื่อวันที่ 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_en": "Name the high rebounds for 17-33",
    "question_th": "ตั้งชื่อรีบาวด์สูงสำหรับ 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_en": "Name the team for 19-34",
    "question_th": "ตั้งชื่อทีม 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_en": "How many models have maximum power output is 162kw (220 ps) at 6,300 rpm?",
    "question_th": "มีกี่รุ่นที่มีกำลังสูงสุดอยู่ที่ 162kw (220 ps) ที่ 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·m (lb·ft) at 3,500 rpm\"",
    "question_en": "List the max power produced for model 2.0 ts with peak of n·m (lb·ft) at 3,500 rpm.",
    "question_th": "แสดงรายการกำลังสูงสุดที่ผลิตได้สำหรับรุ่น 2.0 ts โดยมีจุดสูงสุด n·m (ปอนด์·ฟุต) ที่ 3,500 รอบต่อนาที",
    "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_en": "Who had the highest points during the game with a record of 2-7?",
    "question_th": "ใครมีแต้มสูงสุดระหว่างเกมด้วยสถิติ 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_en": "What team did the Wizards play against when their record was 2-5?",
    "question_th": "Wizards เล่นกับทีมใดเมื่อสถิติของพวกเขาคือ 2-5?",
    "context": "CREATE TABLE table_23274514_4 (team VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_23274514_4 WHERE team = \"Phoenix\"",
    "question_en": "Who tied in the highest point scorer when playing against Phoenix?",
    "question_th": "ใครเป็นผู้ทำคะแนนสูงสุดเสมอเมื่อเล่นกับฟีนิกซ์?",
    "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_en": "Which season used production code \"am10\"?",
    "question_th": "ซีซั่นไหนใช้รหัสการผลิต \"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_en": "When did Jeremy Kagan's episode first air?",
    "question_th": "ตอนของ Jeremy Kagan ออกอากาศครั้งแรกเมื่อไหร่?",
    "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_en": "What seasons  in series 7 did David E. Kelley write ?",
    "question_th": "David E. Kelley เขียนซีซันใดในซีรีส์ 7",
    "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–116 (OT)\"",
    "question_en": "Name the total number of date for score being  l 106–116 (ot)",
    "question_th": "ตั้งชื่อจำนวนวันที่ทั้งหมดสำหรับคะแนนเป็น l 106–116 (ot)",
    "context": "CREATE TABLE table_23281862_10 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_23281862_10 WHERE team = \"Charlotte\"",
    "question_en": "Name the record for charlotte",
    "question_th": "ตั้งชื่อบันทึกสำหรับ charlotte",
    "context": "CREATE TABLE table_23281862_10 (record VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(game) FROM table_23281862_10 WHERE score = \"W 113–96 (OT)\"",
    "question_en": "Name the most game for w 113–96 (ot)",
    "question_th": "ตั้งชื่อเกมมากที่สุดใน w 113–96 (ot)",
    "context": "CREATE TABLE table_23281862_10 (game INTEGER, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_23274514_9 WHERE record = \"22-53\"",
    "question_en": "What was the score when the record was 22-53?",
    "question_th": "เมื่อทำสถิติ 22-53 สกอร์เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_23274514_9 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_23274514_9 WHERE team = \"Golden State\"",
    "question_en": "What was the record when they played golden state?",
    "question_th": "เมื่อพวกเขาเล่น 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_en": "How many percentages (2006) are there for the population whose mother tongue is French?",
    "question_th": "ประชากรที่มีภาษาแม่เป็นภาษาฝรั่งเศสมีกี่เปอร์เซ็นต์ (พ.ศ. 2549)",
    "context": "CREATE TABLE table_2328113_1 (percentage__2006_ VARCHAR, mother_tongue VARCHAR)"
  },
  {
    "answer": "SELECT MIN(population__2011_) FROM table_2328113_1",
    "question_en": "What was the minimum population in 2011?",
    "question_th": "จำนวนประชากรขั้นต่ำในปี 2554 คือเท่าใด",
    "context": "CREATE TABLE table_2328113_1 (population__2011_ INTEGER)"
  },
  {
    "answer": "SELECT percentage__2006_ FROM table_2328113_1 WHERE mother_tongue = \"Polish\"",
    "question_en": "What was the percentage in 2006 whose natives is Polish?",
    "question_th": "เปอร์เซ็นต์ในปี 2549 ซึ่งมีชาวโปแลนด์เป็นเท่าใด",
    "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_en": "Name the location attendance for dirk nowitzki , caron butler (17)",
    "question_th": "ตั้งชื่อสถานที่เข้าร่วมของ 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_en": "Name the location attendance for 4 game",
    "question_th": "ตั้งชื่อสถานที่เข้าร่วมสำหรับ 4 เกม",
    "context": "CREATE TABLE table_23284271_11 (location_attendance VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_23284271_11 WHERE score = \"L 89–92 (OT)\"",
    "question_en": "Name the date for  l 89–92 (ot)",
    "question_th": "ตั้งชื่อวันที่ l 89–92 (ot)",
    "context": "CREATE TABLE table_23284271_11 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_23284271_11 WHERE series = \"1-2\"",
    "question_en": "Name the high assists for 1-2 series",
    "question_th": "ตั้งชื่อการช่วยเหลือสูงสำหรับซีรีส์ 1-2",
    "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_en": "Name the high rebounds for american airlines center 20,557",
    "question_th": "ตั้งชื่อการรีบาวด์สูงของสายการบินอเมริกันแอร์ไลน์ที่ 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_en": "Name the score for december 27",
    "question_th": "ทายผลคะแนนประจำวันที่ 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_en": "Name the total number of high points for pepsi center 19,756",
    "question_th": "บอกยอดคะแนนสูงสุดรวมเป๊ปซี่เซ็นเตอร์ 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–6, 1–6\"",
    "question_en": "Name the opponent in the final for 3–6, 1–6",
    "question_th": "ตั้งชื่อคู่ต่อสู้ในรอบชิงชนะเลิศ 3–6, 1–6",
    "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ñas\"",
    "question_en": "Name the year for guillermo cañas",
    "question_th": "ตั้งชื่อปีสำหรับ guillermo cañas",
    "context": "CREATE TABLE table_23284597_3 (year VARCHAR, opponent_in_the_final VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_23285761_10 WHERE team = \"Houston\"",
    "question_en": "What was the score for the game against Houston?",
    "question_th": "ในเกมกับฮุสตันมีสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_23285761_10 (score VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(record) FROM table_23285805_5 WHERE game = 30",
    "question_en": "Name the number of records for 30 game",
    "question_th": "ตั้งชื่อจำนวนบันทึกสำหรับ 30 เกม",
    "context": "CREATE TABLE table_23285805_5 (record VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_23285805_5 WHERE date = \"December 19\"",
    "question_en": "Name the team for december 19",
    "question_th": "ตั้งชื่อทีมวันที่ 19 ธันวาคม",
    "context": "CREATE TABLE table_23285805_5 (team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_23285849_5 WHERE record = \"9-4\"",
    "question_en": "What location and how many people were in attendance where the record was 9-4 for the season?",
    "question_th": "สถานที่ใดและมีผู้เข้าร่วมงานกี่คนโดยมีสถิติอยู่ที่ 9-4 ในฤดูกาลนี้",
    "context": "CREATE TABLE table_23285849_5 (location_attendance VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_23285849_5 WHERE record = \"3-0\"",
    "question_en": "How scored the most points where the record is 3-0 for the season?",
    "question_th": "ทำคะแนนได้มากที่สุดโดยทำสถิติเป็น 3-0 ในฤดูกาลนี้อย่างไร?",
    "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_en": "When chauncey billups (7) has the highest amount of assists what is the score?",
    "question_th": "เมื่อชอนซีย์บิลอัพ (7) มียอดแอสซิสต์สูงสุดคือคะแนนเท่าไหร่?",
    "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_en": "When j.r. smith (26) has the highest amount of points what is the score?",
    "question_th": "เมื่อ jr smith (26) มีคะแนนสูงสุดคือเท่าไร?",
    "context": "CREATE TABLE table_23285849_10 (score VARCHAR, high_points VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(game) FROM table_23285849_10 WHERE team = \"Clippers\"",
    "question_en": "When the clippers are the team how many games are there?",
    "question_th": "เมื่อคลิปเปอร์เป็นทีมมีกี่เกม?",
    "context": "CREATE TABLE table_23285849_10 (game VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_23285849_10 WHERE high_rebounds = \"Aaron Afflalo (9)\"",
    "question_en": "When aaron afflalo (9) has the highest amount of rebounds what is the score?",
    "question_th": "เมื่อแอรอน อัฟฟลาโล (9) มีแต้มรีบาวด์มากที่สุดคือคะแนนเท่าไหร่?",
    "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_en": "When chauncey billups (4) has the highest amount of assists who has the highest amount of points?",
    "question_th": "เมื่อ Chauncey Billups (4) มียอดแอสซิสต์สูงที่สุด ใครมีคะแนนสูงสุด?",
    "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_en": "When carmelo anthony (39) has the highest amount of points where is the location and what is the attendance?",
    "question_th": "เมื่อ คาร์เมโล แอนโทนี่ (39) มีคะแนนสูงสุด สถานที่ไหน และผู้เข้าร่วมเป็นอย่างไรบ้าง?",
    "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_en": "When carmelo anthony (42) has the highest amount of points how many measurements of highest rebounds are there?",
    "question_th": "เมื่อคาร์เมโล แอนโทนี่ (42) มีคะแนนสูงสุด จะมีการวัดการรีบาวด์สูงสุดกี่ครั้ง?",
    "context": "CREATE TABLE table_23285849_11 (high_rebounds VARCHAR, high_points VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_23285849_8 WHERE score = \"L 106–116 (OT)\"",
    "question_en": "Name the record for  l 106–116 (ot)",
    "question_th": "ตั้งชื่อบันทึก l 106–116 (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_en": "Name the high points for the staples center 18,997",
    "question_th": "ตั้งชื่อจุดสูงสำหรับลวดเย็บตรงกลาง 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_en": "What was the date of the game when the record was 27-14?",
    "question_th": "วันที่ของเกมคือเมื่อใดที่มีสถิติ 27-14?",
    "context": "CREATE TABLE table_23285849_7 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_23285849_7 WHERE score = \"W 97–92 (OT)\"",
    "question_en": "Who had the most points in the game where the score was w 97–92 (ot)?",
    "question_th": "ใครมีคะแนนมากที่สุดในเกมที่คะแนนคือ 97–92 (OT)?",
    "context": "CREATE TABLE table_23285849_7 (high_points VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_23285849_7 WHERE team = \"Timberwolves\"",
    "question_en": "What was the record when the timberwolves were played?",
    "question_th": "อะไรคือบันทึกเมื่อเล่น Timberwolves?",
    "context": "CREATE TABLE table_23285849_7 (record VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(high_points) FROM table_23285849_6 WHERE team = \"Heat\"",
    "question_en": "How many players has the highest points in the game against the Heat?",
    "question_th": "มีผู้เล่นกี่คนที่ได้คะแนนสูงสุดในเกมเจอกับฮีต?",
    "context": "CREATE TABLE table_23285849_6 (high_points VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_23285849_6 WHERE game = 29",
    "question_en": "Who tied for highest rebounds in game 29?",
    "question_th": "ใครเสมอกันในการรีบาวด์สูงสุดในเกมที่ 29?",
    "context": "CREATE TABLE table_23285849_6 (high_rebounds VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_23286112_12 WHERE game = 5",
    "question_en": "Where was game number 5 played?",
    "question_th": "เกมที่ 5 เล่นที่ไหน?",
    "context": "CREATE TABLE table_23286112_12 (location_attendance VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_23286112_12 WHERE game = 2",
    "question_en": "Who had the highest rebounds in game 2?",
    "question_th": "ใครมีรีบาวด์สูงสุดในเกมที่ 2?",
    "context": "CREATE TABLE table_23286112_12 (high_rebounds VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_23286112_12 WHERE series = \"0-2\"",
    "question_en": "What date was the series 0-2?",
    "question_th": "ซีรีส์ 0-2 ฉายวันไหน?",
    "context": "CREATE TABLE table_23286112_12 (date VARCHAR, series VARCHAR)"
  },
  {
    "answer": "SELECT series FROM table_23286112_12 WHERE date = \"April 18\"",
    "question_en": "Which series were played on April 18?",
    "question_th": "ซีรีส์ใดที่เล่นในวันที่ 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_en": "What series had high rebounds with Marcus Camby (11)?",
    "question_th": "ซีรีส์ใดที่มีการรีบาวด์สูงกับ 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_en": "What was the series where the game was 5?",
    "question_th": "ซีรีย์อะไรที่มีเกม 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_en": "What is the score when high points were Andre Miller (31)?",
    "question_th": "เมื่ออังเดร มิลเลอร์ (31) ได้คะแนนสูงสุดเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_23286158_11 (score VARCHAR, high_points VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_23286158_11 WHERE game = 3",
    "question_en": "What is the score in game 3?",
    "question_th": "คะแนนในเกมที่ 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_en": "When marcus camby (15) has the highest amount of rebounds who has the highest amount of assists?",
    "question_th": "เมื่อมาร์คัส แคมบี้ (15) มีจำนวนรีบาวด์สูงที่สุด ใครมีปริมาณแอสซิสต์สูงที่สุด?",
    "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_en": "When 48-30 is the record who has the highest amount of points?",
    "question_th": "เมื่อ 48-30 เป็นสถิติใครมีคะแนนสูงสุด?",
    "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_en": "When 78 is the game and brandon roy (6) has the highest amount of assists how many locations/attendances are there?",
    "question_th": "เมื่อถึงเกมที่ 78 และแบรนดอน รอย (6) มีปริมาณแอสซิสต์สูงสุด มีสถานที่/ผู้เข้าชมกี่แห่ง?",
    "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_en": "When marcus camby (15) has the highest amount of rebounds what is the date?",
    "question_th": "เมื่อมาร์คัส แคมบี้ (15) มียอดรีบาวด์มากที่สุดคือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_23286158_10 (date VARCHAR, high_rebounds VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_23286158_7 WHERE team = \"Cleveland\"",
    "question_en": "When did the Portland Trail Blazers play against Cleveland?",
    "question_th": "พอร์ตแลนด์ เทรลเบลเซอร์ส พบกับ คลีฟแลนด์ เมื่อไร?",
    "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_en": "How many episodes were directed by Sarah Pia Anderson?",
    "question_th": "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_en": "List all season numbers with production codes of 5m21.",
    "question_th": "ระบุหมายเลขฤดูกาลทั้งหมดด้วยรหัสการผลิต 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_en": "How many episodes had a series number of 95?",
    "question_th": "มีกี่ตอนมีเลขชุด 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_en": "Name the total number of season for production code 3m17",
    "question_th": "ตั้งชื่อจำนวนฤดูกาลทั้งหมดสำหรับรหัสการผลิต 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_en": "Name the directed by season # 2",
    "question_th": "ตั้งชื่อผู้กำกับซีซั่น # 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_en": "Name least series number for writers david e. kelley & jill goldsmith",
    "question_th": "ตั้งชื่อหมายเลขซีรีส์น้อยที่สุดสำหรับผู้เขียน เดวิด อี เคลลี่ แอนด์ จิล โกลด์สมิธ",
    "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_en": "How many episodes are numbered 12x03?",
    "question_th": "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_en": "Who was on Jon's team when Sean's team had Matthew Crosby and Kimberly Wyatt?",
    "question_th": "ใครอยู่ในทีมของจอนเมื่อทีมของ Sean มี Matthew Crosby และ 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_en": "What was the episode that had Jack Dee and Stacey Solomon on Sean's team?",
    "question_th": "ตอนไหนที่มี Jack Dee และ Stacey Solomon ในทีมของ Sean?",
    "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_en": "What was the score in the episode that had Louie Spence and Joe Wilkinson on Sean's team?",
    "question_th": "คะแนนในตอนที่มี Louie Spence และ Joe Wilkinson ในทีมของ Sean เป็นอย่างไรบ้าง",
    "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_en": "What was the score on the episode that had Russell Kane and Louise Redknapp on Sean's team?",
    "question_th": "คะแนนในตอนที่มีรัสเซล เคนและหลุยส์ เรดแนปป์อยู่ในทีมของฌอนเป็นอย่างไรบ้าง",
    "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_en": "In which episode is Sean's team made up of Krishnan Guru-Murthy and Vic Reeves?",
    "question_th": "ในตอนใดที่ทีมของ Sean ประกอบด้วย Krishnan Guru-Murthy และ 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_en": "What is the first broadcast date of the episode in which Dave's team is made up of Dave Johns and Sally Lindsay?",
    "question_th": "วันที่ออกอากาศครั้งแรกของตอนที่ทีมของ Dave ประกอบด้วย Dave Johns และ 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_en": "What was the first broadcast date of the episode in which Sean's team is made up of Peter Serafinowicz and Johnny Vegas?",
    "question_th": "วันที่ออกอากาศครั้งแรกของตอนที่ทีมของ Sean ประกอบด้วย Peter Serafinowicz และ 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_en": "In how many episodes was Dave's team made up of David Walliams and Louis Walsh?",
    "question_th": "ทีมของ Dave ประกอบด้วย David Walliams และ 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_en": "Which episode has boy george and lee mack on dave's team?",
    "question_th": "ตอนไหนที่มีบอยจอร์จและลีแม็คอยู่ในทีมของเดฟ",
    "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_en": "How many daves team entries are there on 27 october 2006?",
    "question_th": "วันที่ 27 ตุลาคม 2549 มีทีมเดฟเข้าร่วมกี่ทีม?",
    "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_en": "Which episode has ulrika jonsson and michael mcintyre on sean's team?",
    "question_th": "ตอนไหนที่มี ulrika jonsson และ michael mcintyre ในทีมของ sean?",
    "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_en": "What was the score in the episode with john barrowman and vic reeves on sean's team?",
    "question_th": "คะแนนในตอนที่มีจอห์น บาร์โรว์แมนและวิค รีฟส์อยู่ในทีมของฌอนเป็นอย่างไรบ้าง",
    "context": "CREATE TABLE table_23292220_4 (scores VARCHAR, seans_team VARCHAR)"
  },
  {
    "answer": "SELECT first_broadcast FROM table_23292220_4 WHERE episode = \"4x03\"",
    "question_en": "What was the first broadcast date of episode 4x03?",
    "question_th": "ตอนที่ 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_en": "Name the first broadcast for trisha goddard and glenn wool",
    "question_th": "ตั้งชื่อการออกอากาศครั้งแรกสำหรับ Trisha Goddard และ 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_en": "Name the number of scores for 5x06",
    "question_th": "ตั้งชื่อจำนวนคะแนนสำหรับ 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_en": "Name the first broadcast for tina malone and joe wilkinson",
    "question_th": "ตั้งชื่อการออกอากาศครั้งแรกของทีน่า มาโลนและโจ วิลกินสัน",
    "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_en": "Name the number of jons team for 15x10",
    "question_th": "ตั้งชื่อทีมจอนส์ 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_en": "Name the scores for  chris ramsey and carol vorderman",
    "question_th": "ตั้งชื่อคะแนนของคริส แรมซีย์และแครอล วอร์เดอร์แมน",
    "context": "CREATE TABLE table_23292220_17 (scores VARCHAR, seans_team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(jons_team) FROM table_23292220_17 WHERE episode = \"15x07\"",
    "question_en": "Name the total number of jons team for 15x07",
    "question_th": "ตั้งชื่อทีมจอนส์ทั้งหมดสำหรับ 15x07",
    "context": "CREATE TABLE table_23292220_17 (jons_team VARCHAR, episode VARCHAR)"
  },
  {
    "answer": "SELECT jasons_team FROM table_23292220_6 WHERE episode = \"6x02\"",
    "question_en": "Name all of Jason's teams that appeared on episode 6x02?",
    "question_th": "บอกชื่อทีมทั้งหมดของ Jason ที่ปรากฏในตอนที่ 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_en": "In how many episodes were Vanessa Feltz and Lee Mack the team for Sean? ",
    "question_th": " Vanessa Feltz และ Lee Mack เป็นทีมของ 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_en": "Name the episode(s) that featured Duncan James and Johnny Vegas as Jason's team.",
    "question_th": "ตั้งชื่อตอนที่มี Duncan James และ Johnny Vegas เป็นทีมของ Jason",
    "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_en": "What round does Duncan Tappy drive in?",
    "question_th": "Duncan Tappy ขับเข้ารอบไหน?",
    "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_en": "How many racing points did England get?",
    "question_th": "อังกฤษได้คะแนนการแข่งกี่แต้ม?",
    "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_en": "How many are the Race 2 points when Race 1 was 12?",
    "question_th": "Race 2 มีกี่แต้มเมื่อ Race 1 มี 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_en": "How many millions of people in the US saw the episode number 226?",
    "question_th": "มีคนดูตอนที่ 226 ในอเมริกากี่ล้านคน?",
    "context": "CREATE TABLE table_23294081_11 (us_viewers__millions_ VARCHAR, no VARCHAR)"
  },
  {
    "answer": "SELECT MAX(no) FROM table_23294081_11",
    "question_en": "What is the highest episode number?",
    "question_th": "หมายเลขตอนสูงสุดคืออะไร?",
    "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_en": "Who was performer 1 in the episode number 7 where Heather Anne Campbell was performer 2?",
    "question_th": "ใครคือนักแสดงคนที่ 1 ในตอนที่ 7 โดยที่ Heather Anne Campbell เป็นนักแสดงคนที่ 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_en": "What's the number of the episode seen by 2.99 millions of people in the US, where performer 2 was Heather Anne Campbell?",
    "question_th": "จำนวนตอนที่ผู้ชม 2.99 ล้านคนในสหรัฐอเมริกาเห็นเป็นจำนวนเท่าใด โดยที่นักแสดงคนที่ 2 คือ 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_en": "Name the episode for vic reeves and claudia winkleman",
    "question_th": "ตั้งชื่อตอนของ vic reeves และ 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_en": "Name the number of scores for episode 7x05",
    "question_th": "ตั้งชื่อจำนวนคะแนนสำหรับตอนที่ 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_en": "Name the seans team being 13 november 2008",
    "question_th": "ตั้งชื่อทีมฌอนเป็นวันที่ 13 พฤศจิกายน พ.ศ. 2551",
    "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_en": "Name the total number of seans team being 7x04",
    "question_th": "ตั้งชื่อทีมฌอนทั้งหมดเป็น 7x04",
    "context": "CREATE TABLE table_23292220_7 (seans_team VARCHAR, episode VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(scores) FROM table_23292220_7 WHERE episode = \"7x10\"",
    "question_en": "Name the total number of scores for 7x10",
    "question_th": "ตั้งชื่อจำนวนคะแนนรวมสำหรับ 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_en": "How many dates have a total points for race of 180?",
    "question_th": "มีคะแนนรวมแข่ง 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_en": "What is every points value for race 1 if the total race points is 180?",
    "question_th": "ทุกคะแนนสำหรับการแข่งครั้งที่ 1 จะเป็นเท่าใด หากคะแนนการแข่งขันรวมคือ 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_en": "What is the lowest number of total race points for the country of Belgium?",
    "question_th": "คะแนนการแข่งขันรวมต่ำสุดของประเทศเบลเยียมคือเท่าใด?",
    "context": "CREATE TABLE table_23293785_2 (race_total_pts_ INTEGER, country VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_23293785_2 WHERE location = \"Estoril Circuit\"",
    "question_en": "Who is every driver for the location of Estoril Circuit?",
    "question_th": "ใครคือนักแข่งทุกคนสำหรับตำแหน่งของสนามแข่งรถเอสโตริล เซอร์กิต?",
    "context": "CREATE TABLE table_23293785_2 (driver VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT MAX(sf_round) FROM table_23293785_2 WHERE country = \"England\"",
    "question_en": "What is the highest value for SF round for the country of England?",
    "question_th": "ค่าสูงสุดสำหรับรอบ SF ของประเทศอังกฤษคือเท่าไร?",
    "context": "CREATE TABLE table_23293785_2 (sf_round INTEGER, country VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_23297_3 WHERE year = 2001",
    "question_en": "What is the surface for the year 2001?",
    "question_th": "พื้นผิวสำหรับปี 2544 คืออะไร?",
    "context": "CREATE TABLE table_23297_3 (surface VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_23308178_4 WHERE date = \"October 29\"",
    "question_en": "What was the score on October 29?",
    "question_th": "คะแนนวันที่ 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_en": "How many opponents were there with the record of 3-2-2?",
    "question_th": "มีคู่ต่อสู้กี่คนที่ทำสถิติ 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_en": "What was the record on October 17?",
    "question_th": "บันทึกเมื่อวันที่ 17 ตุลาคมคืออะไร?",
    "context": "CREATE TABLE table_23308178_4 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_23308178_4 WHERE opponent = \"New York Rangers\"",
    "question_en": "What date did they play agains the New York Rangers?",
    "question_th": "พวกเขาเล่นกับ 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_en": "How many points were there scored on October 27?",
    "question_th": "วันที่ 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_en": "How many different scores are there for the game with 10-3-4 record?",
    "question_th": "เกมที่มีสถิติ 10-3-4 มีกี่คะแนนที่แตกต่างกัน?",
    "context": "CREATE TABLE table_23308178_5 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_23308178_5 WHERE record = \"13-5-6\"",
    "question_en": "When was the game with 13-5-6 record played?",
    "question_th": "เกมนี้เล่นด้วยสถิติ 13-5-6 เมื่อใด?",
    "context": "CREATE TABLE table_23308178_5 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT MIN(points) FROM table_23308178_5",
    "question_en": "What's the minimal number of points scored in any game?",
    "question_th": "คะแนนขั้นต่ำในเกมใด ๆ คือเท่าไร?",
    "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_en": "How many different games against Florida Panthers were played in Verizon Center?",
    "question_th": "มีการเล่นเกมกับ Florida Panthers ที่แตกต่างกันกี่เกมใน 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_en": "What was the record in the November 7 game?",
    "question_th": "สถิติในเกมวันที่ 7 พฤศจิกายน คืออะไร?",
    "context": "CREATE TABLE table_23308178_5 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(attendance) FROM table_23308178_9 WHERE record = \"49-15-11\"",
    "question_en": "How many times was there a record of 49-15-11?",
    "question_th": "มีสถิติ 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_en": "How many scores had a date of March 6?",
    "question_th": "วันที่ 6 มีนาคมมีกี่คะแนน?",
    "context": "CREATE TABLE table_23308178_9 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_23314951_4 WHERE date = \"7-21-2006\"",
    "question_en": "If the date is 7-21-2006, who was the opponent?",
    "question_th": "ถ้าวันที่ 7-21-2549 คู่ต่อสู้คือใคร?",
    "context": "CREATE TABLE table_23314951_4 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT against FROM table_23314951_4 WHERE opponent = \"Kristian Pless\"",
    "question_en": "If the opponent is Kristian Pless, who was it against?",
    "question_th": "ถ้าคู่ต่อสู้คือคริสเตียน เพลส ปะทะใคร?",
    "context": "CREATE TABLE table_23314951_4 (against VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT winning_team FROM table_23315271_2 WHERE winning_driver = \"Max Busnelli\"",
    "question_en": "Who is the winning team when max busnelli is the winning driver?",
    "question_th": "ทีมไหนคือผู้ชนะ เมื่อแม็กซ์ บัสเนลลีเป็นผู้ชนะ?",
    "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_en": "In which location is aci vallelunga circuit?",
    "question_th": "วงจร aci vallelunga อยู่ที่ตำแหน่งใด",
    "context": "CREATE TABLE table_23315271_2 (location VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT pole_position FROM table_23315271_2 WHERE circuit = \"Misano World circuit\"",
    "question_en": "Who held the pole position in misano world circuit?",
    "question_th": "ใครครองตำแหน่งโพลโพซิชั่นในสนามมิซาโนะเวิลด์เซอร์กิต?",
    "context": "CREATE TABLE table_23315271_2 (pole_position VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_23308178_7 WHERE opponent = \"Detroit Red Wings\"",
    "question_en": "List the results for all games which involved the detroit red wings.",
    "question_th": "รายชื่อผลการแข่งขันทั้งหมดที่เกี่ยวข้องกับทีมดีทรอยต์ เร้ด วิงส์",
    "context": "CREATE TABLE table_23308178_7 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT MAX(points) FROM table_23308178_7 WHERE record = \"28-12-6\"",
    "question_en": "Calculate the highest points where the win,loss, tie ratio is  28-12-6",
    "question_th": "คำนวณแต้มสูงสุดที่อัตราส่วนชนะ แพ้ เสมอกันคือ 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_en": "what are the previous performance details for games involving the montreal canadiens?",
    "question_th": "รายละเอียดประสิทธิภาพก่อนหน้านี้ของเกมที่เกี่ยวข้องกับมอนทรีออลคานาเดียนเป็นอย่างไร",
    "context": "CREATE TABLE table_23308178_7 (record VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_2331549_1 WHERE third_place = \"Michigan State University\"",
    "question_en": "Which years did Michigan state university come in third place?",
    "question_th": "มหาวิทยาลัยรัฐมิชิแกนได้อันดับที่สามในปีใด",
    "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_en": "Who were the champions in years where michigan technological university was in third place?",
    "question_th": "ใครคือแชมป์ในปีที่มหาวิทยาลัยเทคโนโลยีมิชิแกนอยู่ในอันดับที่สาม?",
    "context": "CREATE TABLE table_2331549_1 (champion VARCHAR, third_place VARCHAR)"
  },
  {
    "answer": "SELECT host_city FROM table_2331549_1 WHERE host_school = \"École de technologie supérieure\"",
    "question_en": "What was the host city in years where the host school was école de technologie supérieure?",
    "question_th": "เมืองเจ้าภาพในปีที่โรงเรียนเจ้าภาพเป็น école de technologie supérieure คือเมืองใด",
    "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_en": "Who came in second place when the champion was south dakota school of mines & technology?",
    "question_th": "ใครมาเป็นอันดับสองเมื่อแชมป์คือ 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_en": "If the average is 45.65, what is the total number of innings?",
    "question_th": "ถ้าเฉลี่ยอยู่ที่ 45.65 อินนิ่งทั้งหมดคือเท่าไร?",
    "context": "CREATE TABLE table_23316034_16 (innings VARCHAR, average VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_23316034_16 WHERE innings = 82",
    "question_en": "What is the name of the player if the innings is 82?",
    "question_th": "ผู้เล่นชื่ออะไรถ้าอินนิ่งคือ 82?",
    "context": "CREATE TABLE table_23316034_16 (player VARCHAR, innings VARCHAR)"
  },
  {
    "answer": "SELECT average FROM table_23316034_16 WHERE innings = 68",
    "question_en": "If the innings is 68, what is the average?",
    "question_th": "ถ้าอินนิ่งคือ 68 ค่าเฉลี่ยคือเท่าไร?",
    "context": "CREATE TABLE table_23316034_16 (average VARCHAR, innings VARCHAR)"
  },
  {
    "answer": "SELECT MAX(matches) FROM table_23316034_16 WHERE runs = 5028",
    "question_en": "If the runs is 5028, what is the matches maximum?",
    "question_th": "หากการวิ่งคือ 5028 การแข่งขันสูงสุดคือเท่าใด",
    "context": "CREATE TABLE table_23316034_16 (matches INTEGER, runs VARCHAR)"
  },
  {
    "answer": "SELECT MIN(dismissals) FROM table_23316034_23 WHERE player = \"Sammy Carter\"",
    "question_en": "Name the least dismissals for sammy carter",
    "question_th": "ตั้งชื่อการเลิกจ้างน้อยที่สุดของแซมมี่ คาร์เตอร์",
    "context": "CREATE TABLE table_23316034_23 (dismissals INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(dismissals) FROM table_23316034_23 WHERE player = \"Adam Gilchrist\"",
    "question_en": "Name the number of dismissals for adam gilchrist",
    "question_th": "ตั้งชื่อจำนวนการเลิกจ้างของอดัม กิลคริสต์",
    "context": "CREATE TABLE table_23316034_23 (dismissals VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(dismissals) FROM table_23316034_23 WHERE rank = 4",
    "question_en": "Name the least dismissals for 4 rank",
    "question_th": "ตั้งชื่อการเลิกจ้างน้อยที่สุดสำหรับ 4 อันดับ",
    "context": "CREATE TABLE table_23316034_23 (dismissals INTEGER, rank VARCHAR)"
  },
  {
    "answer": "SELECT top_10 FROM table_2333416_2 WHERE winnings = \"$17,695\"",
    "question_en": "How many top 10 finishes did Ken Bouchard get in the year he won $17,695?",
    "question_th": "Ken Bouchard เข้าเส้นชัย 10 อันดับแรกได้กี่ครั้งในปีที่เขาได้รับรางวัล 17,695 ดอลลาร์",
    "context": "CREATE TABLE table_2333416_2 (top_10 VARCHAR, winnings VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_2333416_2 WHERE position = \"78th\"",
    "question_en": "What year did Ken Bouchard finish in 78th place?",
    "question_th": "Ken Bouchard จบอันดับที่ 78 ในปีใด",
    "context": "CREATE TABLE table_2333416_2 (year VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_2333416_2 WHERE position = \"38th\"",
    "question_en": "How many seasons did Ken Bouchard finish in 38th place?",
    "question_th": "Ken Bouchard จบอันดับที่ 38 กี่ฤดูกาล?",
    "context": "CREATE TABLE table_2333416_2 (year VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT MIN(wins) FROM table_2333416_2",
    "question_en": "What is the greatest number of wins Ken Bouchard had in a season?",
    "question_th": "เคน บูชาร์ด คว้าชัยชนะได้มากที่สุดในหนึ่งฤดูกาลเป็นจำนวนเท่าใด",
    "context": "CREATE TABLE table_2333416_2 (wins INTEGER)"
  },
  {
    "answer": "SELECT COUNT(races) FROM table_23338693_1 WHERE season = 2012 AND podiums = 0",
    "question_en": "How many races in 2012 season have 0 podiums?",
    "question_th": "ฤดูกาล 2012 มี 0 โพเดี้ยมกี่รายการ?",
    "context": "CREATE TABLE table_23338693_1 (races VARCHAR, season VARCHAR, podiums VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(season) FROM table_23338693_1 WHERE team = \"Motopark\"",
    "question_en": "How many seasons have motopark team?",
    "question_th": "ทีม Motopark มีกี่ฤดูกาล?",
    "context": "CREATE TABLE table_23338693_1 (season VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_23338693_1 WHERE position = \"NC\" AND season = 2010",
    "question_en": "Which team has nc position for 2010 season?",
    "question_th": "ทีมใดมีตำแหน่ง nc ในฤดูกาล 2010?",
    "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_en": "How many points have a series of british formula renault 2.0 winter cup and f/laps of 0?",
    "question_th": "ชุดถ้วยฤดูหนาวเรโนลต์ 2.0 สูตรอังกฤษและ f/รอบมีกี่คะแนน?",
    "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_en": "If the amount of rebounds is 0, what is the maximum minutes?",
    "question_th": "ถ้าจำนวนรีบาวด์เป็น 0 นาทีสูงสุดคือเท่าใด?",
    "context": "CREATE TABLE table_23346303_5 (minutes INTEGER, rebounds VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(points) FROM table_23346303_5 WHERE assists = 7",
    "question_en": "What is the points total number if the assists is 7?",
    "question_th": "ถ้าแอสซิสต์ได้ 7 คะแนนรวมจะเท่ากับเท่าไร?",
    "context": "CREATE TABLE table_23346303_5 (points VARCHAR, assists VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_23346303_5 WHERE field_goals = 26",
    "question_en": "If the field goals is 26, what are the players names?",
    "question_th": "ถ้าฟิลด์โกลคือ 26 นักเตะชื่ออะไร?",
    "context": "CREATE TABLE table_23346303_5 (player VARCHAR, field_goals VARCHAR)"
  },
  {
    "answer": "SELECT MIN(steals) FROM table_23346303_5 WHERE player = \"Jasmine Wynne\"",
    "question_en": "If the player is Jasmine Wynne, what is the minimum number of steals?",
    "question_th": "หากผู้เล่นคือ Jasmine Wynne จำนวนการขโมยขั้นต่ำคือเท่าไร?",
    "context": "CREATE TABLE table_23346303_5 (steals INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(blocks) FROM table_23346303_5 WHERE points = 4",
    "question_en": "What is the blocks total number if the points is 4?",
    "question_th": "ถ้าแต้มเป็น 4 มีจำนวนบล็อคทั้งหมดเท่าไร?",
    "context": "CREATE TABLE table_23346303_5 (blocks VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT steals FROM table_23346303_4 WHERE player = \"Jasmine Wynne\"",
    "question_en": "How many steals did jasmine wynne have?",
    "question_th": "จัสมิน วินน์ ขโมยไปกี่อัน?",
    "context": "CREATE TABLE table_23346303_4 (steals VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(games_played) FROM table_23346303_4 WHERE player = \"Janae Stokes\"",
    "question_en": "How many games did janae stokes play?",
    "question_th": "จานี สโต๊คส์ลงเล่นกี่เกม?",
    "context": "CREATE TABLE table_23346303_4 (games_played INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(rebounds) FROM table_23346303_4 WHERE player = \"Crystal Ayers\"",
    "question_en": "How many rebounds did crystal ayers have?",
    "question_th": "คริสตัลเอเยอร์สมีรีบาวด์กี่ครั้ง?",
    "context": "CREATE TABLE table_23346303_4 (rebounds VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_23346983_1 WHERE game = 3",
    "question_en": "What was the Orangemen record during game 3?",
    "question_th": "สถิติของ Orangemen ในเกมที่ 3 คืออะไร?",
    "context": "CREATE TABLE table_23346983_1 (record VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_23346983_1 WHERE opponent = \"Army\"",
    "question_en": "What was the record for the Orangemen when they played against Army?",
    "question_th": "อะไรคือสถิติของ Orangemen เมื่อพวกเขาเล่นกับ Army?",
    "context": "CREATE TABLE table_23346983_1 (record VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT MAX(orangemen_points) FROM table_23346983_1 WHERE game = 1",
    "question_en": "How many points did the Orangemen score in game 1?",
    "question_th": "Orangemen ทำคะแนนในเกมที่ 1 ได้กี่คะแนน?",
    "context": "CREATE TABLE table_23346983_1 (orangemen_points INTEGER, game VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_23346983_1 WHERE record = \"5-1\"",
    "question_en": "Who did the Orangemen play against when their record was 5-1?",
    "question_th": "ทีม Orangemen เล่นกับใครเมื่อสถิติของพวกเขาคือ 5-1?",
    "context": "CREATE TABLE table_23346983_1 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_23379776_6 WHERE year = 2007",
    "question_en": "Name the location for 2007",
    "question_th": "ตั้งชื่อสถานที่สำหรับปี 2550",
    "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_en": "Display the lowest score for candidate Mir-Hossein Mousavi when candidate Mohsen Rezaee scored 44809 votes",
    "question_th": "แสดงคะแนนต่ำสุดของผู้สมัคร มีร์-ฮอสเซน มูซาวี เมื่อผู้สมัคร โมห์เซน เรซาอี ได้คะแนน 44809 คะแนน",
    "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_en": "What is the highest score for candidate Mohsen Rezaee when  candidate mir-hossein mousavi  scored 837858 votes?",
    "question_th": "คะแนนสูงสุดสำหรับผู้สมัคร Mohsen Rezaee คือเท่าใด เมื่อผู้สมัคร Mir-hossein mousavi ได้คะแนน 837858 คะแนน?",
    "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_en": "List all the total scores for the election which had 3072 invalid votes",
    "question_th": "แสดงรายการคะแนนรวมทั้งหมดสำหรับการเลือกตั้งซึ่งมีคะแนนเสียงไม่ถูกต้อง 3,072 เสียง",
    "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_en": "What was the highest score of candidate mir-hossein mousavi in the location known as azarbaijan, west?",
    "question_th": "คะแนนสูงสุดของผู้สมัคร มีร์-ฮอสเซน มูซาวี ในสถานที่ที่เรียกว่า อาซาร์ไบจาน ทางตะวันตกคือเท่าใด",
    "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_en": "List all the results for mahmoud ahmadinejad when candidate mir-hossein mousavi obtained 218481 votes.",
    "question_th": "แสดงรายการผลลัพธ์ทั้งหมดสำหรับ mahmoud ahmadinejad เมื่อผู้สมัคร มีร์-ฮอสเซน มูซาวี ได้รับคะแนนเสียง 218481 เสียง",
    "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_en": "What was the highest number of votes for mir-hossein mousavi when the number of invalid votes is 5683",
    "question_th": "มีร์-ฮอสเซน มูซาวี มีผู้ลงคะแนนเสียงสูงสุดคือเท่าใด โดยจำนวนผู้ลงคะแนนที่ไม่ถูกต้องคือ 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_en": "Name surface for 8 round",
    "question_th": "ชื่อพื้นผิว 8 รอบ",
    "context": "CREATE TABLE table_23385853_1 (surface VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT rally_base FROM table_23385853_1 WHERE round = 5",
    "question_en": "Name the rally base for 5 round",
    "question_th": "ตั้งชื่อฐานการชุมนุม 5 รอบ",
    "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_en": "Name the rally base for rallye de france alsace",
    "question_th": "ตั้งชื่อฐานการชุมนุมสำหรับ 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_en": "What is the lowest position for a driver with 2 points?",
    "question_th": "ตำแหน่งต่ำสุดของนักแข่งที่ได้ 2 คะแนนคือตำแหน่งใด",
    "context": "CREATE TABLE table_23385853_19 (pos INTEGER, points VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_23385853_19 WHERE stage_wins = 65",
    "question_en": "What driver(s) had over 65 stag wins?",
    "question_th": "นักแข่งคนไหนที่ชนะมากกว่า 65 stag win?",
    "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_en": "What is the power stage wins total number if the wins is 10?",
    "question_th": "ระดับพลังที่ชนะจำนวนทั้งหมดคืออะไร หากการชนะคือ 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_en": "If finishes is 10, what is the POS minimum?",
    "question_th": "หากเสร็จสิ้นคือ 10 POS ขั้นต่ำคือเท่าใด",
    "context": "CREATE TABLE table_23385853_20 (pos INTEGER, finishes VARCHAR)"
  },
  {
    "answer": "SELECT MAX(finishes) FROM table_23385853_20",
    "question_en": "What is the finishes maximum number?",
    "question_th": "จำนวนการเข้าเส้นชัยสูงสุดคือเท่าไร?",
    "context": "CREATE TABLE table_23385853_20 (finishes INTEGER)"
  },
  {
    "answer": "SELECT branding FROM table_23394920_1 WHERE power_kw = \"5kW\" AND station_type = \"Relay\"",
    "question_en": "When relay is the station type and 5kw is the power kw what is the branding?",
    "question_th": "เมื่อรีเลย์เป็นประเภทสถานี และ 5kw คือกำลังกิโลวัตต์ ตราสินค้าคืออะไร?",
    "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_en": "When dxrt-tv is the callsign what is the power kw?",
    "question_th": "เมื่อ dxrt-tv เป็นสัญญาณเรียกขาน กำลัง 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_en": "When dxzb-tv is the call sign what is the power kw?",
    "question_th": "เมื่อ dxzb-tv เป็นสัญญาณเรียกขาน กำลังไฟฟ้า 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_en": "When dxcc-tv is the call sign how many station types are there?",
    "question_th": "เมื่อ dxcc-tv เป็นสัญญาณเรียกขาน มีสถานีกี่ประเภท?",
    "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_en": "When dwhr-tv is the call sign how many station types are there?",
    "question_th": "เมื่อ dwhr-tv เป็นสัญญาณเรียกขาน มีสถานีกี่ประเภท?",
    "context": "CREATE TABLE table_23394920_1 (station_type VARCHAR, callsign VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(original_airdate) FROM table_23392257_4 WHERE _number = 22",
    "question_en": "What date did Episode 22 originally air?",
    "question_th": "ตอนที่ 22 เดิมออกอากาศวันไหน?",
    "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_en": "What episode premier received 0.680 million viewers?",
    "question_th": "พรีเมียร์ตอนไหนมีผู้ชม 0.680 ล้านคน?",
    "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_en": "What timeslot received 0.673 viewers?",
    "question_th": "ช่วงเวลาใดที่มีผู้ชม 0.673 คน?",
    "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_en": "What is the original air date of the episode that was directed by David Paymer?",
    "question_th": "วันที่ออกอากาศดั้งเดิมของตอนที่กำกับโดย 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_en": "If the amount of U.S. viewers is 2.14 million, who was the episode directed by?",
    "question_th": "ถ้ายอดคนดูในอเมริกา 2.14 ล้านคน ละครเรื่องนี้กำกับโดยใคร?",
    "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_en": "If the amount of U.S. viewers is 2.05 milliom, who was the episode directed by?",
    "question_th": "ถ้ายอดคนดูในอเมริกา 2.05 ล้านคน ละครเรื่องนี้กำกับโดยใคร?",
    "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_en": "What is the director name is the U.S. viewers is 2.22 million?",
    "question_th": "ผู้กำกับชื่ออะไร คนดูอเมริกา 2.22 ล้านคน?",
    "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 –49) = 2.6 / 7",
    "question_en": "How many million viewers watched the episode that had a 2.6/7 rating/share (18-49)",
    "question_th": "ยอดดูตอนที่มีเรตติ้ง 2.6/7/แชร์ (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_en": "How many million viewers watched the episode that aired on March 28, 2010?",
    "question_th": "มีผู้ชมรับชมตอนที่ออกอากาศเมื่อวันที่ 28 มีนาคม 2553 จำนวนกี่ล้านคน",
    "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_en": "How many rankings (timeslot) were there for the episode that aired on May 2, 2010?",
    "question_th": "ตอนที่ออกอากาศเมื่อวันที่ 2 พฤษภาคม 2553 มีการจัดอันดับ (ช่วงเวลา) กี่ครั้ง?",
    "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_en": "What episode had 1.42 million viewers?",
    "question_th": "ตอนไหนมีผู้ชม 1.42 ล้านคน?",
    "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_en": "What is the original air date for episode 4? ",
    "question_th": " ตอนที่ 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_en": "Which team uses lola t92/00/ buick for their chassis/engine?",
    "question_th": "ทีมใดใช้ lola t92/00/ buick เป็นแชสซี/เครื่องยนต์",
    "context": "CREATE TABLE table_23391714_1 (team VARCHAR, chassis_engine VARCHAR)"
  },
  {
    "answer": "SELECT MAX(points) FROM table_23391714_1 WHERE pos = 18",
    "question_en": "When the pos equals 18 what is the max amount of points?",
    "question_th": "เมื่อ POS เท่ากับ 18 คะแนนสูงสุดคือเท่าใด?",
    "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_en": "How many drivers  used lola t92/00/ buick for their chassis/engine?",
    "question_th": "มีไดรเวอร์กี่คนที่ใช้ lola t92/00/ buick สำหรับแชสซี/เครื่องยนต์",
    "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_en": "What's the series number of the episode with a season number 5, written by Bernie Ancheta?",
    "question_th": "ซีรีส์ตอนที่ 5 ซึ่งเขียนโดย 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_en": "When did the episode with production code 213 air for the first time?",
    "question_th": "ตอนรหัส 213 ออกอากาศครั้งแรกเมื่อไหร่?",
    "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_en": "Who directed the episode with production code 208?",
    "question_th": "ใครกำกับตอนที่มีรหัสการผลิต 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_en": "How many values for 24 mountains when the bearing or degrees is 67.6 - 82.5 82.6 - 97.5 97.6 - 112.5?",
    "question_th": "24 ภูเขา เมื่อลูกปืนหรือองศาเป็น 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_en": "What is every trigram when direction is Northwest?",
    "question_th": "ทุกไตรแกรมเมื่อทิศตะวันตกเฉียงเหนือเป็นเท่าใด",
    "context": "CREATE TABLE table_23406517_2 (trigram VARCHAR, direction VARCHAR)"
  },
  {
    "answer": "SELECT 24 AS _mountains FROM table_23406517_2 WHERE direction = \"Northeast\"",
    "question_en": "What are all values for 24 mountains when direction is Northeast?",
    "question_th": "ภูเขาทั้ง 24 ลูกเมื่อทิศทิศตะวันออกเฉียงเหนือมีค่าเท่าใด",
    "context": "CREATE TABLE table_23406517_2 (direction VARCHAR)"
  },
  {
    "answer": "SELECT total_career_titles FROM table_23408094_14 WHERE player = \"Roy Emerson\"",
    "question_en": "How many career titles does roy emerson have?",
    "question_th": "รอย เอเมอร์สัน มีตำแหน่งอาชีพกี่ตำแหน่ง?",
    "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_en": "What were the total career titles of the player who led for 5 years?",
    "question_th": "ตำแหน่งอาชีพทั้งหมดของผู้เล่นที่เป็นผู้นำเป็นเวลา 5 ปีคืออะไร?",
    "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_en": "Of the players whose lead began at the australian championships, what was the shortest span of years led?",
    "question_th": "ในบรรดาผู้เล่นที่เป็นผู้นำในการแข่งขันชิงแชมป์ออสเตรเลีย ช่วงปีที่สั้นที่สุดที่นำอยู่คือช่วงใด",
    "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_en": "At which tournament did william renshaw begin his lead when he had won 7 titles?",
    "question_th": "วิลเลียม เรนชอว์เริ่มเป็นผู้นำในทัวร์นาเมนต์ใดเมื่อเขาคว้าแชมป์ 7 รายการ",
    "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_en": "At what tournament did pete sampras begin his lead?",
    "question_th": "พีท แซมปราส เริ่มเป็นผู้นำในการแข่งขันรายการใด?",
    "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_en": "Who are all directors when Sherwood Schwartz is the writer?",
    "question_th": "ใครคือผู้กำกับทั้งหมดเมื่อ Sherwood Schwartz เป็นผู้เขียน?",
    "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_en": "What is the highest episode# with the writer Paul West?",
    "question_th": "ตอนสูงสุด#ของผู้เขียน พอล เวสต์ คือตอนไหน?",
    "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_en": "What is every production code for episode # 13?",
    "question_th": "รหัสการผลิตสำหรับตอนที่ 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_en": "What is the highest episode number written by Harry Winkler?",
    "question_th": "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_en": "List all directors when Brad Radnitz was the writer?",
    "question_th": "รายชื่อผู้กำกับทั้งหมดเมื่อ Brad Radnitz เป็นผู้เขียน?",
    "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_en": "Name the airdate for the episode written by howard ostroff",
    "question_th": "ตั้งชื่อวันที่ออกอากาศสำหรับตอนที่เขียนโดย 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_en": "Name the production code # for episode 109",
    "question_th": "ตั้งชื่อรหัสการผลิต # ตอนที่ 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_en": "Name who drected the episode written by george tibbles",
    "question_th": "ชื่อผู้เขียนตอนที่เขียนโดย 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_en": "What's the title of the episode written by Harry Winkler?",
    "question_th": "ตอนที่เขียนโดย 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_en": "During the 1st Place (Won the Series), who was the act?",
    "question_th": "ในช่วงอันดับที่ 1 (ชนะซีรีส์) การแสดงของใคร?",
    "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_en": "During the act, Playing on Glasses, what was the semi-final?",
    "question_th": "ระหว่างการแสดง Playing on Glasses รอบรองชนะเลิศคืออะไร?",
    "context": "CREATE TABLE table_23429629_4 (semi_final VARCHAR, act VARCHAR)"
  },
  {
    "answer": "SELECT place_came FROM table_23429629_4 WHERE artist = \"Erlend Bratland\"",
    "question_en": "What was the final place came for the performance of Erlend Bratland?",
    "question_th": "สถานที่สุดท้ายมาสำหรับการแสดงของ 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_en": "How many deaths per year have 66.3 as the life expectancy females?",
    "question_th": "มีผู้เสียชีวิตกี่รายต่อปี โดยที่ 66.3 เป็นอายุขัยของเพศหญิง",
    "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_en": "Which leagues entered in rounds where there were 16 winners from the previous round?",
    "question_th": "ลีกใดบ้างที่เข้ารอบซึ่งมีผู้ชนะ 16 คนจากรอบที่แล้ว?",
    "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_en": "Which rounds had 32 clubs involved?",
    "question_th": "รอบใดมี 32 ไม้กอล์ฟที่เกี่ยวข้อง?",
    "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_en": "Which round had 24 new entries?",
    "question_th": "รอบไหนมี 24 รายการใหม่?",
    "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_en": "Which leagues entered an extra preliminary round?",
    "question_th": "ลีกใดบ้างที่เข้าสู่รอบคัดเลือกเบื้องต้นพิเศษ?",
    "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_en": "Name the location of buffalo sabres",
    "question_th": "ตั้งชื่อสถานที่กระบี่กระบือ",
    "context": "CREATE TABLE table_23453931_5 (location VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_23453931_5 WHERE record = \"13–17–9\"",
    "question_en": "Name the game for 13–17–9",
    "question_th": "ตั้งชื่อเกมสำหรับวันที่ 13–17–9",
    "context": "CREATE TABLE table_23453931_5 (game VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_23453931_5 WHERE date = \"December 19\"",
    "question_en": "Name the score for december 19",
    "question_th": "ทายผลคะแนนประจำวันที่ 19 ธันวาคม",
    "context": "CREATE TABLE table_23453931_5 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_23453931_5 WHERE opponent = \"New York Islanders\"",
    "question_en": "Name the date for new york islanders",
    "question_th": "ตั้งชื่อวันที่ของชาวเกาะนิวยอร์ก",
    "context": "CREATE TABLE table_23453931_5 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(opponent) FROM table_23453931_5 WHERE date = \"December 3\"",
    "question_en": "Name the opponents for december 3",
    "question_th": "ตั้งชื่อฝ่ายตรงข้ามสำหรับวันที่ 3 ธันวาคม",
    "context": "CREATE TABLE table_23453931_5 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(game) FROM table_23453931_8 WHERE opponent = \"Carolina Hurricanes\"",
    "question_en": "How many games did they play the carolina hurricanes?",
    "question_th": "พวกเขาเล่นเกม Carolina Hurricanes กี่เกม?",
    "context": "CREATE TABLE table_23453931_8 (game VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_23453931_8 WHERE points = 62",
    "question_en": "What was the score when they had 62 points?",
    "question_th": "ตอนที่พวกเขามี 62 คะแนนเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_23453931_8 (score VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_23453931_4 WHERE points = 9",
    "question_en": "What team did the Maple Leafs score 9 points against?",
    "question_th": "Maple Leafs ทำคะแนนกับทีมใดได้ 9 แต้ม?",
    "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_en": "What time was achieved on Saturday 29th August by the rider who recorded 23' 18.82 97.102mph on Tuesday 25th August?",
    "question_th": "นักบิดที่ทำสถิติความเร็ว 23' 18.82 97.102 ไมล์ต่อชั่วโมง ในวันอังคารที่ 25 สิงหาคม ได้เวลาใดในวันเสาร์ที่ 29 สิงหาคม",
    "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_en": "What time was achieved on Saturday 29th August by the rider who recorded 24' 17.26 93.208mph on Monday 24th August?",
    "question_th": "นักบิดที่ทำสถิติความเร็ว 24' 17.26 93.208 ไมล์ต่อชั่วโมง ในวันจันทร์ที่ 24 สิงหาคม ได้เวลาใดในวันเสาร์ที่ 29 สิงหาคม",
    "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_en": "What time was achieved on Saturday 29th August by the rider who recorded 22' 54.20 98.842mph on Tuesday 25th August?",
    "question_th": "นักบิดที่บันทึกความเร็ว 22' 54.20 98.842 ไมล์ต่อชั่วโมง ในวันอังคารที่ 25 สิงหาคม ทำได้กี่โมงในวันเสาร์ที่ 29 สิงหาคม",
    "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_en": "What time was achieved on Saturday 29th August by the rider who recorded 25' 01.89 90.438mph on Friday 28th August?",
    "question_th": "นักบิดที่ทำสถิติความเร็ว 25' 01.89 90.438mph ในวันศุกร์ที่ 28 สิงหาคม ได้เวลาใดในวันเสาร์ที่ 29 สิงหาคม",
    "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_en": "What was the event on Wed 26 Aug where rider is Andrew Farrell 400cc Kawasaki?",
    "question_th": "เหตุการณ์ในวันพุธที่ 26 ส.ค. คืออะไร ซึ่งนักบิดคือ 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_en": "What was the event on Thurs 27 Aug when Tues 25 Aug was 23' 00.59 98.384mph?",
    "question_th": "เหตุการณ์ในวันพฤหัสบดีที่ 27 ส.ค. คืออะไร เมื่อวันอังคารที่ 25 ส.ค. เท่ากับ 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_en": "What was the Tues 25 Aug time and speed when Mon 24 Aug was 22' 24.56 101.021mph?",
    "question_th": "อะไรคือเวลาและความเร็วของวันอังคารที่ 25 ส.ค. ในวันจันทร์ที่ 24 ส.ค. อยู่ที่ 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_en": "Who was the rider when Fri 28 Aug was 24' 23.36 92.820mph?",
    "question_th": "ใครคือผู้ขับขี่เมื่อวันศุกร์ที่ 28 ส.ค. อยู่ที่ 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_en": "Which opponent has 32194 as the attendance?",
    "question_th": "คู่ต่อสู้คนไหนมีผู้เข้าร่วม 32194 คน?",
    "context": "CREATE TABLE table_23466021_4 (opponent VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_23466021_4 WHERE attendance = 36102",
    "question_en": "Which opponent has 36102 is the attendance?",
    "question_th": "ฝ่ายตรงข้ามคนไหนมี 36102 ผู้เข้าร่วม?",
    "context": "CREATE TABLE table_23466021_4 (opponent VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT MAX(attendance) FROM table_23466021_4",
    "question_en": "What is the attendance?",
    "question_th": "ผู้เข้าร่วมคืออะไร?",
    "context": "CREATE TABLE table_23466021_4 (attendance INTEGER)"
  },
  {
    "answer": "SELECT hometown FROM table_23476629_2 WHERE province = \"Huesca\"",
    "question_en": "What is the hometown of contestants who are from the province of Huesca?",
    "question_th": "บ้านเกิดของผู้เข้าแข่งขันที่มาจากจังหวัดฮูเอสกาคือเมืองใด",
    "context": "CREATE TABLE table_23476629_2 (hometown VARCHAR, province VARCHAR)"
  },
  {
    "answer": "SELECT height__in_ FROM table_23476629_2 WHERE province = \"La Rioja\"",
    "question_en": "What is the height in inches of contestants who are from the province of La Rioja?",
    "question_th": "ผู้เข้าแข่งขันที่มาจากจังหวัดลารีโอคามีส่วนสูงกี่นิ้ว?",
    "context": "CREATE TABLE table_23476629_2 (height__in_ VARCHAR, province VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(age) FROM table_23476629_2 WHERE hometown = \"Andujar\"",
    "question_en": "How many contestants of whatever age are there whose hometown of Andujar?",
    "question_th": "มีผู้เข้าแข่งขันทุกช่วงอายุกี่คนที่บ้านเกิดของ 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_en": "What's the service number of the Jammu Duronto train? ",
    "question_th": " รถไฟ Jammu Duronto มีหมายเลขให้บริการอะไร?",
    "context": "CREATE TABLE table_23477312_1 (service INTEGER, train_name VARCHAR)"
  },
  {
    "answer": "SELECT train_name FROM table_23477312_1 WHERE destination = \"Madurai Junction\"",
    "question_en": "What's the name of the train to Madurai Junction?",
    "question_th": "รถไฟไป ชุมทางมทุไร มีชื่อว่าอะไร",
    "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_en": "What's the service number of the Pune Duronto train that departures at 21:35?",
    "question_th": "รถไฟ Pune Duronto ที่ออกเดินทางเวลา 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_en": "What's the name of the train that goes to Bhubaneswar?",
    "question_th": "รถไฟไปภูพเนศวรชื่ออะไรคะ",
    "context": "CREATE TABLE table_23477312_1 (train_name VARCHAR, destination VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_23486853_6 WHERE opponent = \"Pittsburgh Penguins\"",
    "question_en": "What is the record when the opposing team was the Pittsburgh Penguins?",
    "question_th": "บันทึกเมื่อทีมตรงข้ามคือทีม 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_en": "What was the game number when the opposing team was the Buffalo Sabres?",
    "question_th": "ฝ่ายตรงข้ามคือ บัฟฟาโล เซเบอร์ ในเกมหมายเลขอะไร?",
    "context": "CREATE TABLE table_23486853_6 (game INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT directed_by FROM table_234886_3 WHERE no_in_series = 44",
    "question_en": "Who directed episode no. 44 in the series?",
    "question_th": "ใครกำกับตอนที่. 44 ในซีรีส์?",
    "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_en": "What is the number in the season of the episode with a production code of 2-05?",
    "question_th": "ซีซั่นตอนรหัสผลิต 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_en": "What is the title of the episode with the production code 2-19?",
    "question_th": "ชื่อตอน รหัสการผลิต 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_en": "What is the total number of titles for the episode numbered 29 in the series?",
    "question_th": "ตอนที่ 29 ของซีรีส์มีทั้งหมดกี่เรื่องคะ?",
    "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_en": "What was the name of the episode directed by Jessica Yu?",
    "question_th": "ตอนที่กำกับโดยเจสสิก้า หยูชื่ออะไร",
    "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_en": "who directed the episode written by Shonda Rhimes?",
    "question_th": "ใครเป็นผู้กำกับตอนที่เขียนโดย 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_en": "How many episodes in the series are also episode 18 in the season?",
    "question_th": "มีกี่ตอนในซีรีส์ที่เป็นตอนที่ 18 ในฤดูกาลนี้?",
    "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_en": "Who is every opponent on the date of March 16?",
    "question_th": "คู่ต่อสู้ทุกคนคือใครในวันที่ 16 มีนาคม?",
    "context": "CREATE TABLE table_23486853_8 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_23486853_8 WHERE opponent = \"Atlanta Thrashers\"",
    "question_en": "What is every score for the opponent of Atlanta Thrashers?",
    "question_th": "ทุกคะแนนของคู่ต่อสู้ของ Atlanta Thrashers คืออะไร?",
    "context": "CREATE TABLE table_23486853_8 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_23486853_8 WHERE date = \"March 20\"",
    "question_en": "What is every location for the date of March 20?",
    "question_th": "ทุกสถานที่ในวันที่ 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_en": "What is every score at the location of Verizon Center and points of 68?",
    "question_th": "ทุกคะแนน ณ ตำแหน่ง Verizon Center และ 68 คะแนนเป็นเท่าใด",
    "context": "CREATE TABLE table_23486853_8 (score VARCHAR, location VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_23486853_8 WHERE record = \"30–34–12\"",
    "question_en": "What is every date with a record of 30–34–12?",
    "question_th": "ทุกวันที่มีบันทึก 30–34–12 คืออะไร?",
    "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_en": "How many officers o/s were there on the day when the number of USAAF was 2373882?",
    "question_th": "มีเจ้าหน้าที่กี่คนในวันที่จำนวน USAAF คือ 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_en": "How many different numbers of Tot enlisted are there on the dates when the number of Enlisted o/s was 801471?",
    "question_th": "มีจำนวน Tot ที่สมัครเป็นทหารกี่หมายเลขในวันที่จำนวน o/s ที่สมัครเป็น 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_en": "How many tot officers were there on the date when the number of tot enlisted was 329640?",
    "question_th": "มีเจ้าหน้าที่ทีโอทีจำนวนกี่คนในวันที่จำนวนทีโอทีที่สมัครเป็น 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_en": "How many Tot enlisted were there on the day when the number of total USAAF was 2329534?",
    "question_th": "มี Tot เกณฑ์กี่คนในวันที่จำนวน USAAF ทั้งหมดคือ 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_en": "How many contestants where from mitteldeutschland?",
    "question_th": "มีผู้เข้าแข่งขันกี่คนจาก mitteldeutschland?",
    "context": "CREATE TABLE table_23495048_2 (age VARCHAR, represent VARCHAR)"
  },
  {
    "answer": "SELECT height__mtr_ FROM table_23495048_2 WHERE contestant = \"Ulrike Wolful\"",
    "question_en": "How many meters tall is Ulrike Wolful?",
    "question_th": "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_en": "Which country had a contestant that was 1.76 meters tall?",
    "question_th": "ประเทศใดมีผู้เข้าแข่งขันที่สูง 1.76 เมตร?",
    "context": "CREATE TABLE table_23495048_2 (represent VARCHAR, height__mtr_ VARCHAR)"
  },
  {
    "answer": "SELECT represent FROM table_23495048_2 WHERE height__mtr_ = \"1.70\"",
    "question_en": "What country had a contestant that was 1.70 meters tall?",
    "question_th": "ประเทศใดมีผู้เข้าแข่งขันที่สูง 1.70 เมตร?",
    "context": "CREATE TABLE table_23495048_2 (represent VARCHAR, height__mtr_ VARCHAR)"
  },
  {
    "answer": "SELECT MAX(points) FROM table_23501776_18 WHERE seed = 2",
    "question_en": "If seed number is 2, what is the maximum amount of points?",
    "question_th": "หากหมายเลขเมล็ดคือ 2 คะแนนสูงสุดคือเท่าใด",
    "context": "CREATE TABLE table_23501776_18 (points INTEGER, seed VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_23501776_18 WHERE new_points = 1720",
    "question_en": "If new points is 1720, what is the status?",
    "question_th": "ถ้าแต้มใหม่เป็น 1720 สถานะจะเป็นเช่นไร?",
    "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_en": "Who is the winning party/coalition name in election year 1980?",
    "question_th": "ชื่อพรรค/พันธมิตรที่ชนะการเลือกตั้งปี 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_en": "If the speaker is Munu Adhi (2) K. Rajaram, what is the election year maximum?",
    "question_th": "ถ้าวิทยากรคือ มุนู อธิ (2) ก. ราชราม เลือกตั้งสูงสุดได้กี่ปี?",
    "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_en": "If the speaker is R. Muthiah, what is the election year maximum?",
    "question_th": "ถ้าวิทยากรคือ ร. มุทิอาห์ เลือกตั้งสูงสุดได้ปีละเท่าไร?",
    "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_en": "What is the name of the speaker if the chief minister is M.G. Ramachandran?",
    "question_th": "วิทยากรชื่ออะไรถ้าหัวหน้าคณะรัฐมนตรีคือ เอ็มจี พระรามจันทรา?",
    "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_en": "If the assembly is the sixth assembly, what is the maximum election year?",
    "question_th": "ถ้าสภาเป็นสภาที่ 6 ปีการเลือกตั้งสูงสุดคือเท่าใด",
    "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_en": "Name the number of crews for light bombardment group",
    "question_th": "ระบุจำนวนลูกเรือสำหรับกลุ่มโจมตีเบา",
    "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_en": "What is the aircraft for 21 crews?",
    "question_th": "เครื่องบินสำหรับลูกเรือ 21 คนคืออะไร?",
    "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_en": "Nam ethe enlisted for troop carrier group",
    "question_th": "Nam ethe สมัครเข้าร่วมกลุ่มขนส่งทหาร",
    "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_en": "What was the title when 1.121 million US people watched it?",
    "question_th": "ชื่อเรื่องอะไรเมื่อมีชาวอเมริกัน 1.121 ล้านคนดู?",
    "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_en": "What is the lowest series episode with a production code of 406?",
    "question_th": "ซีรีส์ตอนต่ำสุดเรื่องใดที่มีรหัสการผลิต 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_en": "List the title of series episode 38.",
    "question_th": "รายชื่อซีรีส์ตอนที่ 38 ค่ะ",
    "context": "CREATE TABLE table_23513241_5 (title VARCHAR, series_episode VARCHAR)"
  },
  {
    "answer": "SELECT formula FROM table_23548160_1 WHERE driver = \"Stirling Moss\"",
    "question_en": "What type of formula did Stirling Moss drive?",
    "question_th": "Stirling Moss ขับสูตรอะไร?",
    "context": "CREATE TABLE table_23548160_1 (formula VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_23548160_1 WHERE driver = \"Randy Lewis\"",
    "question_en": "What year did Randy Lewis drive?",
    "question_th": "Randy Lewis ขับรถปีไหน",
    "context": "CREATE TABLE table_23548160_1 (year VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_23548160_1 WHERE year = 1975",
    "question_en": "What was the constructor in 1975?",
    "question_th": "ผู้สร้างในปี 1975 คืออะไร?",
    "context": "CREATE TABLE table_23548160_1 (constructor VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT weight FROM table WHERE market_name = \"Xperia U\"",
    "question_en": "If the market name is Xperia U, what is the weight?",
    "question_th": "ถ้าชื่อตลาดคือ Xperia U จะมีน้ำหนักเท่าไหร่?",
    "context": "CREATE TABLE table (weight VARCHAR, market_name VARCHAR)"
  },
  {
    "answer": "SELECT release_date FROM table WHERE code_name = \"Aoba\"",
    "question_en": "What is the release date if the code name is Aoba?",
    "question_th": "ถ้าโค้ดเนมว่า Aoba จะออกวันไหน?",
    "context": "CREATE TABLE table (release_date VARCHAR, code_name VARCHAR)"
  },
  {
    "answer": "SELECT battery___mah__ FROM table WHERE nfc = \"Yes\" AND weight = \"126g\"",
    "question_en": "If the weight is 126g and the NFC is yes, what is the battery (MAH)?",
    "question_th": "ถ้าน้ำหนัก 126g และ NFC คือ ใช่ แบตเตอรี่ (MAH) คืออะไร?",
    "context": "CREATE TABLE table (battery___mah__ VARCHAR, nfc VARCHAR, weight VARCHAR)"
  },
  {
    "answer": "SELECT platform FROM table WHERE weight = \"131.5g\"",
    "question_en": "What is the platform if the weight is 131.5g?",
    "question_th": "แพลตฟอร์มคืออะไรถ้าน้ำหนัก 131.5 กรัม?",
    "context": "CREATE TABLE table (platform VARCHAR, weight VARCHAR)"
  },
  {
    "answer": "SELECT android_version FROM table WHERE code_name = \"Lotus\"",
    "question_en": "What is the Android version is the code name is Lotus?",
    "question_th": "Android เวอร์ชันอะไร ชื่อรหัสว่า 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_en": "When middle assyrian empire is the ubaid period in mesopotamia what is the copper age?",
    "question_th": "เมื่อจักรวรรดิอัสซีเรียกลางเป็นยุคยูไบด์ในเมโสโปเตเมีย ยุคทองแดงคือเท่าใด",
    "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_en": "When hittite old kingdom , minoan eruption is the  ubaid period in mesopotamia what is the copper age?",
    "question_th": "เมื่ออาณาจักรเก่าฮิตไทต์ การปะทุของมิโนอันคือช่วง ubaid ในเมโสโปเตเมีย ยุคทองแดงคือเท่าใด",
    "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_en": "When hittite middle kingdom , new kingdom of egypt is the ubaid period in mesopotamia how many early chalcolithics are there?",
    "question_th": "เมื่ออาณาจักรฮิตไทต์ตอนกลาง อาณาจักรใหม่ของอียิปต์เป็นยุคยูไบด์ในเมโสโปเตเมีย มีหินปูนในยุคแรกๆ กี่แห่ง?",
    "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_en": "When the second intermediate period of egypt is the  ubaid period in mesopotamia how many early calcolithics are there?",
    "question_th": "เมื่อช่วงกลางที่สองของอียิปต์เป็นช่วง ubaid ในเมโสโปเตเมีย มีหินปูนในยุคแรกๆ กี่ช่วง?",
    "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_en": "What was the score against Loic Didavi?",
    "question_th": "โลอิก ดิดาวี ทำสกอร์เท่าไหร่?",
    "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_en": "Who was played against when there was a loss and in the gi po round?",
    "question_th": "แข่งกับใครตอนแพ้และในรอบกีโป?",
    "context": "CREATE TABLE table_23563375_11 (against VARCHAR, w_l VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT w_l FROM table_23563375_11 WHERE result = \"2–6, 5–7, 7–6 (11–9) , 1–6\"",
    "question_en": "What were the w/l when the final score was 2–6, 5–7, 7–6 (11–9) , 1–6?",
    "question_th": "อะไรคือสิ่งที่เมื่อคะแนนสุดท้ายคือ 2–6, 5–7, 7–6 (11–9) , 1–6?",
    "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_en": "When Cleveland was 2nd, great lakes in the regular season what did they get to in the playoffs?",
    "question_th": "เมื่อคลีฟแลนด์เป็นที่ 2 ทะเลสาบที่ยิ่งใหญ่ในฤดูกาลปกติพวกเขาได้อะไรในรอบตัดเชือก?",
    "context": "CREATE TABLE table_2357201_1 (playoffs VARCHAR, regular_season VARCHAR)"
  },
  {
    "answer": "SELECT MIN(division) FROM table_2357201_1",
    "question_en": "What is the lowest numbered division Cleveland played in? ",
    "question_th": " คลีฟแลนด์เล่นอยู่ในดิวิชั่นที่มีหมายเลขต่ำสุดคือทีมใด",
    "context": "CREATE TABLE table_2357201_1 (division INTEGER)"
  },
  {
    "answer": "SELECT regular_season FROM table_2357201_1 WHERE year = 2006",
    "question_en": "How did Cleveland do in the regular season in 2006?",
    "question_th": "คลีฟแลนด์ทำอะไรในฤดูกาลปกติปี 2549?",
    "context": "CREATE TABLE table_2357201_1 (regular_season VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT open_cup FROM table_2357201_1 WHERE year = 2009",
    "question_en": "How did Cleveland do in the Open Cup in 2009?",
    "question_th": "คลีฟแลนด์ทำอะไรในโอเพ่นคัพในปี 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_en": "When victoria coren and rhod gilbert are both on the lees team what is the score?",
    "question_th": "เมื่อวิคตอเรีย คอเรน และโรด กิลเบิร์ต อยู่ในทีมลีส์ สกอร์เท่าไหร่?",
    "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_en": "When david o'doherty and katherine parkinson are both on the davids team when is the first broadcast?",
    "question_th": "เมื่อ David O'doherty และ Katherine Parkinson อยู่ในทีม Davids ออกอากาศครั้งแรกเมื่อใด?",
    "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_en": "When bill oddie and frank skinner are both on the davids team what is the episode?",
    "question_th": "เมื่อบิล ออดดี้และแฟรงค์ สกินเนอร์อยู่ในทีมเดวิดส์ เรื่องราวตอนไหน?",
    "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_en": "When  kevin bridges and katy wix are both on the less team what is the score?",
    "question_th": "เมื่อ kevin brids และ katy wix อยู่ทีมน้อยกว่ากัน สกอร์จะเป็นเท่าไหร่?",
    "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 Ó Briain\"",
    "question_en": "How many shows did team David consist of vernon kay and dara ó briain",
    "question_th": "ทีม David ประกอบด้วยเวอร์นอนเคย์และดาราโอไบรอันกี่รายการ",
    "context": "CREATE TABLE table_23575917_8 (episode VARCHAR, davids_team VARCHAR)"
  },
  {
    "answer": "SELECT represented FROM table_23576576_2 WHERE hometown = \"Windhoek\"",
    "question_en": "If the hometown is Windhoek, what is the represented?",
    "question_th": "ถ้าบ้านเกิดคือวินด์ฮุก ตัวแทนคืออะไร?",
    "context": "CREATE TABLE table_23576576_2 (represented VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT contestant FROM table_23576576_2 WHERE hometown = \"Omuthiya\"",
    "question_en": "If the hometown is Omuthiya, what is the contestant name?",
    "question_th": "ถ้าบ้านเกิดคือโอมุทิยะผู้เข้าแข่งขันชื่ออะไร?",
    "context": "CREATE TABLE table_23576576_2 (contestant VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT height__in_ FROM table_23576576_2 WHERE represented = \"Erongo\"",
    "question_en": "What is the height in inches if the represented is Erongo?",
    "question_th": "ความสูงเป็นนิ้วเท่าใดหากตัวแทนคือ 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_en": "What week did September 29 fall in?",
    "question_th": "วันที่ 29 กันยายน ตรงกับสัปดาห์ใด",
    "context": "CREATE TABLE table_23601267_2 (week VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT final_score FROM table_23601267_2 WHERE date = \"October 28\"",
    "question_en": "What was the score on the October 28 game?",
    "question_th": "สกอร์เกมวันที่ 28 ต.ค. เป็นอย่างไร?",
    "context": "CREATE TABLE table_23601267_2 (final_score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT final_score FROM table_23601267_2 WHERE date = \"September 20\"",
    "question_en": "What was the score on September 20?",
    "question_th": "คะแนนวันที่ 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_en": "What's Blanco Encalada's main artillery?",
    "question_th": "ปืนใหญ่หลักของ Blanco Encalada คืออะไร?",
    "context": "CREATE TABLE table_23614702_1 (main_artillery VARCHAR, warship VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(horse__power) FROM table_23614702_1 WHERE warship = \"Cochrane\"",
    "question_en": "How many different horse-powers does the Cochrane have?",
    "question_th": "Cochrane มีแรงม้าที่แตกต่างกันกี่แบบ?",
    "context": "CREATE TABLE table_23614702_1 (horse__power VARCHAR, warship VARCHAR)"
  },
  {
    "answer": "SELECT warship FROM table_23614702_1 WHERE horse__power = 1500",
    "question_en": "What warship has horse-power of 1500?",
    "question_th": "เรือรบลำใดมีแรงม้าถึง 1,500?",
    "context": "CREATE TABLE table_23614702_1 (warship VARCHAR, horse__power VARCHAR)"
  },
  {
    "answer": "SELECT MIN(tons___lton__) FROM table_23614702_1 WHERE warship = \"Independencia\"",
    "question_en": "How much does the Independencia weight?",
    "question_th": "Independencia มีน้ำหนักเท่าไหร่?",
    "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_en": "In how many different years was the warship that weights 1130 tons built?",
    "question_th": "เรือรบที่มีน้ำหนัก 1,130 ตันถูกสร้างขึ้นภายในระยะเวลากี่ปี?",
    "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_en": "What is every value for  % 20-39 if % 60-74 is 10,46%?",
    "question_th": "ทุกค่าของ % 20-39 คือเท่าใด หาก % 60-74 คือ 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_en": "What is every value for  % 40-59  if  % 60-74 is 12,42%?",
    "question_th": "ทุกค่าของ % 40-59 คือเท่าใด หาก % 60-74 คือ 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_en": "What is every value for % 20-39 if  % 0-19 is 21,11%?",
    "question_th": "ทุกค่าของ % 20-39 คือเท่าใด หาก % 0-19 คือ 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_en": "What is every value for  % 40-59 if  % 60-74 is 12,40%?",
    "question_th": "ทุกค่าของ % 40-59 คือเท่าใด หาก % 60-74 คือ 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_en": "How man horse power did the ship covadonga have?",
    "question_th": "เรือ covadonga มีแรงม้ามากแค่ไหน?",
    "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_en": "What is the primary artillery for the  1,051 ships?",
    "question_th": "ปืนใหญ่หลักสำหรับเรือรบ 1,051 ลำคืออะไร?",
    "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_en": "List the maximum speed for the 1.150 ton ships?",
    "question_th": "ทำรายการความเร็วสูงสุดสำหรับเรือ 1,150 ตัน?",
    "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_en": "List the ship with 1x115-2x70-2x12-pounders for primary artillery.",
    "question_th": "รายชื่อเรือที่มีปืนใหญ่ขนาด 1x115-2x70-2x12 ปอนด์",
    "context": "CREATE TABLE table_23614702_2 (warship VARCHAR, main_artillery VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_23612439_2 WHERE date = \"October 28\"",
    "question_en": "Which location has the date of October 28?",
    "question_th": "สถานที่ใดมีวันที่ 28 ตุลาคม",
    "context": "CREATE TABLE table_23612439_2 (location VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT final_score FROM table_23612439_2 WHERE attendance = 22210",
    "question_en": "What is the final score when 22210 is the attendance?",
    "question_th": "คะแนนสุดท้ายเมื่อ 22210 เข้ามาเป็นเช่นไร?",
    "context": "CREATE TABLE table_23612439_2 (final_score VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_23612439_2 WHERE date = \"July 22\"",
    "question_en": "Which opponents are on the date July 22?",
    "question_th": "คู่ต่อสู้คนไหนคือวันที่ 22 กรกฎาคม?",
    "context": "CREATE TABLE table_23612439_2 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_23612439_2 WHERE date = \"September 5\"",
    "question_en": "Which opponents are on the date September 5?",
    "question_th": "คู่ต่อสู้คนไหนคือวันที่ 5 กันยายน?",
    "context": "CREATE TABLE table_23612439_2 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT final_score FROM table_23612439_2 WHERE date = \"July 16\"",
    "question_en": "What is the final score when July 16 is the date?",
    "question_th": "คะแนนสุดท้ายเมื่อ 16 ก.ค. เป็นวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_23612439_2 (final_score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_23612439_2 WHERE location = \"Taylor Field\"",
    "question_en": "On which date is Taylor Field the location?",
    "question_th": "Taylor Field จัดขึ้นวันไหน?",
    "context": "CREATE TABLE table_23612439_2 (date VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(regular_season) FROM table_2361788_1 WHERE year = 2007",
    "question_en": "Name the number of regular season for 2007",
    "question_th": "ตั้งชื่อหมายเลขฤดูกาลปกติปี 2550",
    "context": "CREATE TABLE table_2361788_1 (regular_season VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT MAX(year) FROM table_2361788_1 WHERE playoffs = \"Conference Finals\"",
    "question_en": "Name the most year for conference finals",
    "question_th": "ตั้งชื่อปีมากที่สุดสำหรับรอบชิงชนะเลิศการประชุม",
    "context": "CREATE TABLE table_2361788_1 (year INTEGER, playoffs VARCHAR)"
  },
  {
    "answer": "SELECT regular_season FROM table_2361911_2 WHERE playoffs = \"Final\"",
    "question_en": "Name the regular season for final playoffs",
    "question_th": "ตั้งชื่อฤดูกาลปกติสำหรับรอบตัดเชือกรอบสุดท้าย",
    "context": "CREATE TABLE table_2361911_2 (regular_season VARCHAR, playoffs VARCHAR)"
  },
  {
    "answer": "SELECT MIN(division) FROM table_2361911_2",
    "question_en": "Name the least division",
    "question_th": "ตั้งชื่อส่วนที่น้อยที่สุด",
    "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_en": "Name the regular season for usisl d-3 pro league did not qualify",
    "question_th": "ชื่อฤดูกาลปกติสำหรับ usisl d-3 pro league ไม่ผ่านเข้ารอบ",
    "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_en": "What was the position of the player from Saskatchewan Roughriders?",
    "question_th": "นักเตะซัสแคตเชวัน รัฟไรเดอร์ส อยู่ตำแหน่งไหนครับ?",
    "context": "CREATE TABLE table_23619005_3 (position VARCHAR, cfl_team VARCHAR)"
  },
  {
    "answer": "SELECT cfl_team FROM table_23619005_3 WHERE position = \"SB\"",
    "question_en": "What CFL team was the player playing on SB position drafted for?",
    "question_th": "ผู้เล่นที่เล่นในตำแหน่ง SB ดราฟท์ให้ทีม CFL ใด",
    "context": "CREATE TABLE table_23619005_3 (cfl_team VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_23619005_3 WHERE player = \"Michael Shaver\"",
    "question_en": "What was Michael Shaver's position?",
    "question_th": "Michael Shaver อยู่ในตำแหน่งใด?",
    "context": "CREATE TABLE table_23619005_3 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(player) FROM table_23619005_3 WHERE cfl_team = \"Ottawa Renegades\"",
    "question_en": "How many different players got drafted for the Ottawa Renegades?",
    "question_th": "มีผู้เล่นกี่คนที่ถูกเกณฑ์เข้าทีม 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_en": "What's Doug Borden's position?",
    "question_th": "ตำแหน่งของดั๊ก บอร์เดนคืออะไร?",
    "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_en": "What's the percentage of all immigrants in 2007 in the country with 1.7% of all immigrants in 2008?",
    "question_th": "เปอร์เซ็นต์ของผู้อพยพทั้งหมดในปี 2550 ในประเทศโดยคิดเป็น 1.7% ของผู้อพยพทั้งหมดในปี 2551 เป็นเท่าใด",
    "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_en": "How many different percentages of immigrants in 2006 can there be for Morocco?",
    "question_th": "ผู้อพยพในปี 2549 สามารถมีได้กี่เปอร์เซ็นต์สำหรับโมร็อกโก",
    "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_en": "What's the percentage of immigrants in 2004 in the country with 2.1% of the immigrants in 2006?",
    "question_th": "เปอร์เซ็นต์ของผู้อพยพในปี 2547 ในประเทศโดยมี 2.1% ของผู้อพยพในปี 2549 เป็นเท่าใด",
    "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_en": "What's the percentage of the immigrants in 2007 in the country with 14.1% of the immigrants in 2006?",
    "question_th": "เปอร์เซ็นต์ของผู้อพยพในปี 2550 ในประเทศโดยคิดเป็น 14.1% ของผู้อพยพในปี 2549 เป็นเท่าใด",
    "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_en": "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?",
    "question_th": "มีผู้อพยพในปี 2550 กี่เปอร์เซ็นต์ในประเทศที่มีผู้อพยพ 1.2% ในปี 2548",
    "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–7(1), 2–6, 6–4, 7–5, 6–7(2)\"",
    "question_en": "What was the outcome in the championship where the final score was 6–7(1), 2–6, 6–4, 7–5, 6–7(2)?",
    "question_th": "ผลลัพธ์ในการแข่งขันชิงแชมป์ที่คะแนนสุดท้ายคือ 6–7(1), 2–6, 6–4, 7–5, 6–7(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–4, 2–6, 6–4, 7–6(3)\"",
    "question_en": "Who were the opponents in the final where the score was 6–4, 2–6, 6–4, 7–6(3)?",
    "question_th": "ใครคือคู่ต่อสู้ในรอบชิงชนะเลิศซึ่งมีสกอร์ 6–4, 2–6, 6–4, 7–6(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–4, 2–6, 6–4, 7–6(3)\"",
    "question_en": "Which championship had a final score of 6–4, 2–6, 6–4, 7–6(3)?",
    "question_th": "แชมป์ใดมีคะแนนสุดท้าย 6–4, 2–6, 6–4, 7–6(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_en": "What was the score in the final in 1988?",
    "question_th": "คะแนนในรอบชิงชนะเลิศปี 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_en": "Name the london great britain for championship record",
    "question_th": "ตั้งชื่อบริเตนใหญ่ของลอนดอนเป็นสถิติแชมป์",
    "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_en": "Name the total number of african record",
    "question_th": "ตั้งชื่อจำนวนบันทึกแอฟริกันทั้งหมด",
    "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_en": "Who are thebmix artists when tears for fears is artist 1 and eric prydz is artist 2?",
    "question_th": "ศิลปิน thebmix คือใครเมื่อน้ำตาแห่งความกลัวคือศิลปิน 1 และ eric prydz คือศิลปิน 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_en": "Which level has marvin gaye as artist 1 and david bowie as artist 2?",
    "question_th": "ระดับไหนที่ Marvin Gaye เป็นศิลปินคนที่ 1 และ David Bowie เป็นศิลปินคนที่ 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_en": "Which level has grandmaster flash as artist 1?",
    "question_th": "ระดับไหนที่มีแกรนด์มาสเตอร์แฟลชเป็นศิลปิน 1?",
    "context": "CREATE TABLE table_23649244_1 (level VARCHAR, artist_1 VARCHAR)"
  },
  {
    "answer": "SELECT level FROM table_23649244_1 WHERE artist_1 = \"Wale\"",
    "question_en": "Which level has wale as artist 1?",
    "question_th": "มีเวลเป็นศิลปินระดับไหน 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_en": "Which mix artists have shlomo as artist 1?",
    "question_th": "ศิลปินมิกซ์คนไหนมี shlomo เป็นศิลปิน 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_en": "How many season had Melgar as a champion?",
    "question_th": "เมลการ์เป็นแชมป์กี่ฤดูกาล?",
    "context": "CREATE TABLE table_23647668_2 (season VARCHAR, champion VARCHAR)"
  },
  {
    "answer": "SELECT third_place FROM table_23647668_2 WHERE season = 1980",
    "question_en": "Who was in third place in the 1980 season?",
    "question_th": "ใครอยู่อันดับสามในฤดูกาล 1980?",
    "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_en": "Name the open cup for usl pdl for did not qualify",
    "question_th": "ตั้งชื่อถ้วยเปิดสำหรับ usl pdl เนื่องจากไม่ผ่านเข้ารอบ",
    "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_en": "Name the total number of open cup for 1996",
    "question_th": "ตั้งชื่อจำนวนรวมถ้วยเปิดปี 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_en": "Name the open cup for division finals",
    "question_th": "ตั้งชื่อถ้วยเปิดสำหรับรอบชิงชนะเลิศประเภทดิวิชั่น",
    "context": "CREATE TABLE table_2365150_1 (open_cup VARCHAR, playoffs VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_23670057_1 WHERE height__m_ = \"2.16\"",
    "question_en": "Name the position for 2.16",
    "question_th": "ตั้งชื่อตำแหน่งสำหรับ 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_en": "Name the number for 1.96 height",
    "question_th": "บอกชื่อเลขส่วนสูง 1.96",
    "context": "CREATE TABLE table_23670057_1 (no VARCHAR, height__m_ VARCHAR)"
  },
  {
    "answer": "SELECT height__m_ FROM table_23670057_1 WHERE no = 7",
    "question_en": "Name the height for number 7",
    "question_th": "ตั้งชื่อความสูงของหมายเลข 7",
    "context": "CREATE TABLE table_23670057_1 (height__m_ VARCHAR, no VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_23670057_1 WHERE no = 5",
    "question_en": "name the player for number 5",
    "question_th": "ตั้งชื่อผู้เล่นสำหรับหมายเลข 5",
    "context": "CREATE TABLE table_23670057_1 (player VARCHAR, no VARCHAR)"
  },
  {
    "answer": "SELECT height__f_ FROM table_23670057_4 WHERE position = \"Center\"",
    "question_en": "For all players playing at the center,  list the height in feet.",
    "question_th": "สำหรับผู้เล่นทุกคนที่เล่นตรงกลาง ให้ระบุส่วนสูงเป็นฟุต",
    "context": "CREATE TABLE table_23670057_4 (height__f_ VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT no FROM table_23670057_4 WHERE position = \"Center\"",
    "question_en": "Display the serial numbers for the players who play at the center.",
    "question_th": "แสดงหมายเลขซีเรียลของผู้เล่นที่เล่นตรงกลาง",
    "context": "CREATE TABLE table_23670057_4 (no VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT MAX(year_born) FROM table_23670057_4 WHERE player = \"Ido Kozikaro\"",
    "question_en": "What is the date of birth for basket baller called ido kozikaro",
    "question_th": "วันเกิดของนักบาสเกตบอลชื่อ อิโดะ โคซิคาโระ คือวันที่เท่าไร",
    "context": "CREATE TABLE table_23670057_4 (year_born INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT height__m_ FROM table_23670057_4 WHERE player = \"Lior Eliyahu\"",
    "question_en": "How tall is the basket ball player lior eliyahu in meters?",
    "question_th": "ลิออร์ เอลิยาฮู นักบาสเก็ตบอลสูงเท่าไหร่ มีหน่วยเป็นเมตร?",
    "context": "CREATE TABLE table_23670057_4 (height__m_ VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT average FROM table_23662356_3 WHERE number_of_dances = 4",
    "question_en": "What was the average score for the couple that had 4 dances?",
    "question_th": "คะแนนเฉลี่ยของคู่รักที่เต้น 4 ครั้งคือเท่าไหร่?",
    "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_en": "How many averages were listed for the couple who had 12 dances?",
    "question_th": "คู่รักที่เต้นรำ 12 ครั้งมีค่าเฉลี่ยกี่รายการ?",
    "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_en": "How many total points were earned from the couple that averaged 29.0 points?",
    "question_th": "คู่ที่ได้คะแนนเฉลี่ย 29.0 คะแนน ได้คะแนนรวมทั้งหมดกี่คะแนน?",
    "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_en": "What album was the song It's going so badly on?",
    "question_th": "อัลบั้มอะไรคือเพลงที่มันกำลังดำเนินไปอย่างแย่มาก?",
    "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_en": "What album was the song My Chariot on?",
    "question_th": "เพลง My Chariot อยู่ในอัลบั้มใด",
    "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_en": "Who sand He's Bigfoot?",
    "question_th": "ใครทรายเขาคือบิ๊กฟุต?",
    "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_en": "What album was the song Shimmy Jimmy from the episode titled Toy to the world on?",
    "question_th": "เพลง Shimmy Jimmy จากตอนที่ชื่อว่า 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_en": "which players have a height of 2.07m? ",
    "question_th": " ผู้เล่นคนไหนที่มีส่วนสูง 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_en": "Which clubs have players with height 2.14m?",
    "question_th": "สโมสรใดมีผู้เล่นส่วนสูง 2.14 ม.?",
    "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_en": "Which players were born in 1983 and play as forward position?",
    "question_th": "นักเตะคนไหนที่เกิดในปี 1983 และเล่นในตำแหน่งกองหน้า?",
    "context": "CREATE TABLE table_23670057_5 (player VARCHAR, year_born VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT current_club FROM table_23670057_7 WHERE player = \"Artūrs Štālbergs\"",
    "question_en": "What is every current club for the player Artūrs Štālbergs?",
    "question_th": "สโมสรปัจจุบันของนักเตะ อาร์ตูร์ ชตาลเบิร์ก คืออะไร?",
    "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_en": "How many players have a height of 2.07?",
    "question_th": "ผู้เล่นที่มีส่วนสูง 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_en": "What is the latest year born when the current club is Barons LMT?",
    "question_th": "ปีสุดท้ายเกิดเมื่อสโมสรปัจจุบันคือ 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_en": "How many current clubs have the player Aigars Vitols?",
    "question_th": "ปัจจุบันมีผู้เล่น 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_en": "What is every year born for height of 1.88?",
    "question_th": "ทุกปีเกิดส่วนสูง 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_en": "What is every number when the player is Aigars Vitols?",
    "question_th": "เมื่อผู้เล่นเป็น 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_en": "Name the most high schools for 31851",
    "question_th": "ตั้งชื่อโรงเรียนมัธยมสูงสุดสำหรับ 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_en": "Name the most district wide for 1639 other programs",
    "question_th": "ตั้งชื่อเขตได้กว้างที่สุด 1,639 โปรแกรมอื่นๆ",
    "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_en": "Name the total number of elementary schools for 31851",
    "question_th": "ตั้งชื่อโรงเรียนประถมศึกษาทั้งหมดจำนวน 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_en": "Name the most middle schools for 2005-2006",
    "question_th": "รายชื่อโรงเรียนมัธยมศึกษาตอนต้นที่มีมากที่สุดในปี พ.ศ. 2548-2549",
    "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_en": "If the polling average in July 2009 was 7.2%, what was it in May 2009?",
    "question_th": "หากค่าเฉลี่ยการเลือกตั้งในเดือนกรกฎาคม 2552 อยู่ที่ 7.2% แล้วในเดือนพฤษภาคม 2552 จะเป็นเท่าใด",
    "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_en": "What was the polling average in Aug 2009 when is was 5.0% in Sep 2009?",
    "question_th": "ค่าเฉลี่ยการเลือกตั้งในเดือนสิงหาคม 2552 คือเท่าใด ซึ่งอยู่ที่ 5.0% ในเดือนกันยายน 2552",
    "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_en": "How many polling percentages were there in October 2008 when is was 30.8% in Aug 2008?",
    "question_th": "มีกี่เปอร์เซ็นต์ในการเลือกตั้งในเดือนตุลาคม 2551 ซึ่งอยู่ที่ 30.8% ในเดือนสิงหาคม 2551",
    "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_en": "Name the party/s when the polling percentage was 6.3% in Dec 2008.",
    "question_th": "ตั้งชื่อพรรคเมื่อเปอร์เซ็นต์การเลือกตั้งอยู่ที่ 6.3% ในเดือนธันวาคม พ.ศ. 2551",
    "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_en": "What was the polling percentage in Nov 2008 when it was 1.7% in Aug 2008?",
    "question_th": "เปอร์เซ็นต์การเลือกตั้งในเดือนพฤศจิกายน 2551 เมื่ออยู่ที่ 1.7% ในเดือนสิงหาคม 2551 เป็นเท่าใด",
    "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_en": "What is the week 32 result when week 33 is 31.9%?",
    "question_th": "ผลลัพธ์ของสัปดาห์ที่ 32 คืออะไรเมื่อสัปดาห์ที่ 33 คือ 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_en": "List all week 37 results when week 33 is 14.3%.",
    "question_th": "แสดงรายการผลลัพธ์ทั้งหมดของสัปดาห์ที่ 37 เมื่อสัปดาห์ที่ 33 คือ 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_en": "List the full amount of week 36 results when week 32 is 13.2%.",
    "question_th": "แสดงรายการผลลัพธ์เต็มสัปดาห์ที่ 36 เมื่อสัปดาห์ที่ 32 คือ 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²_ = \"4563\"",
    "question_en": "On what year was the local government area with a surface of 4563 square kilometers established?",
    "question_th": "ได้มีการจัดตั้งเขตปกครองส่วนท้องถิ่นที่มีพื้นที่ 4,563 ตารางกิโลเมตรขึ้นเมื่อปีใด",
    "context": "CREATE TABLE table_23685890_2 (est VARCHAR, land_area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT major_town FROM table_23685890_2 WHERE local_government_area = \"Outback Areas Community Development Trust\"",
    "question_en": "Which major town is located within the Outback Areas Community Development Trust?",
    "question_th": "เมืองใหญ่ใดที่ตั้งอยู่ในกองทุนพัฒนาชุมชนชนบทห่างไกล",
    "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²_ = \"110\"",
    "question_en": "How many towns exist on the government area with a surface of 110 square kilometers?",
    "question_th": "พื้นที่ราชการมีกี่เมืองบนพื้นที่ 110 ตารางกิโลเมตร?",
    "context": "CREATE TABLE table_23685890_2 (towns INTEGER, land_area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_23685890_2 WHERE local_government_area = \"Yalata\"",
    "question_en": "What type of local government area is Yalata?",
    "question_th": "ยะลาตาเป็นเขตปกครองส่วนท้องถิ่นประเภทใด",
    "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_en": "What was the 2006 population count of the local government area where Coober Pedy is located?",
    "question_th": "จำนวนประชากรในปี 2549 ในเขตปกครองท้องถิ่นซึ่งเป็นที่ตั้งของ Coober Pedy เป็นเท่าใด",
    "context": "CREATE TABLE table_23685890_2 (pop_2006 VARCHAR, major_town VARCHAR)"
  },
  {
    "answer": "SELECT MAX(week) FROM table_23685152_2 WHERE attendance = 20114",
    "question_en": "During what week was the game attended by 20114 people?",
    "question_th": "เกมดังกล่าวมีผู้เข้าร่วม 2,0114 คนในช่วงสัปดาห์ใด",
    "context": "CREATE TABLE table_23685152_2 (week INTEGER, attendance VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_23685152_2 WHERE date = \"July 28\"",
    "question_en": " What was the record in game played on July 28?",
    "question_th": " สถิติในเกมที่เล่นเมื่อวันที่ 28 กรกฎาคม คืออะไร?",
    "context": "CREATE TABLE table_23685152_2 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_23685152_2 WHERE opponent = \"Eskimos\"",
    "question_en": "What was the record in the game against Eskimos?",
    "question_th": "สถิติในเกมกับเอสกิโมเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_23685152_2 (record VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_23696862_6 WHERE wsop_earnings = \"$36,372\"",
    "question_en": "Whose WSOP earnings were $36,372? ",
    "question_th": " รายได้ WSOP ของใครอยู่ที่ 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_en": "The person who had 0 WSOP earnings had how man WSOP cashes?",
    "question_th": "ผู้ที่มีรายรับ WSOP 0 รายจะได้รับเงิน WSOP อย่างไร",
    "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_en": "Who had 2 WSOP cashes and was 6th in final place?",
    "question_th": "ใครมีเงินสด WSOP 2 ใบและอยู่ในอันดับที่ 6 ในอันดับสุดท้าย?",
    "context": "CREATE TABLE table_23696862_6 (name VARCHAR, wsop_cashes VARCHAR, final_place VARCHAR)"
  },
  {
    "answer": "SELECT MIN(wsop_bracelets) FROM table_23696862_6",
    "question_en": "What is the smallest amount of WSOP bracelets anyone had?",
    "question_th": "ใครมีกำไล WSOP จำนวนน้อยที่สุดคือเท่าไร?",
    "context": "CREATE TABLE table_23696862_6 (wsop_bracelets INTEGER)"
  },
  {
    "answer": "SELECT wsop_cashes FROM table_23696862_6 WHERE wsop_earnings = \"$126,796\"",
    "question_en": "The person who had $126,796 WSOP earnings had how many WSOP cashes? ",
    "question_th": " บุคคลที่มีรายได้ WSOP มูลค่า 126,796 ดอลลาร์จะมีเงินสด WSOP กี่เหรียญ",
    "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_en": "What is the high 10 profile number when the high profile is 80?",
    "question_th": "หมายเลขโปรไฟล์สูง 10 เมื่อโปรไฟล์สูงคือ 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_en": "What is the baseline extended and main profiles when level is 1.3?",
    "question_th": "โปรไฟล์ขยายพื้นฐานและโปรไฟล์หลักคืออะไรเมื่อระดับ 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_en": "What level has 11880 macroblocks and high 10 profile is 6000?",
    "question_th": "ระดับใดที่มีมาโครบล็อก 11880 และโปรไฟล์สูง 10 คือ 6,000",
    "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_en": "What are the luma samples at level 1.3?",
    "question_th": "ตัวอย่างลูม่าที่ระดับ 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_en": "What is the high 10 profile when high profile is 160?",
    "question_th": "โปรไฟล์สูง 10 เมื่อโปรไฟล์สูงเป็น 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_en": "What is the original air date if the ratings is 1.92 million?",
    "question_th": "ถ้าเรตติ้งอยู่ที่ 1.92 ล้าน ออนแอร์วันไหน?",
    "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_en": "What is the name of the writer when the ratings was 2.61 million?",
    "question_th": "คนเขียนชื่ออะไรตอนเรตติ้ง 2.61 ล้าน?",
    "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_en": "Who directed the episode written by Tony O'Grady (pseudonym of brian clemens)?",
    "question_th": "ใครเป็นผู้กำกับตอนที่เขียนโดย Tony O'Grady (นามแฝงของ 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_en": "What is the production number for episode 23?",
    "question_th": "ตอนที่ 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_en": "What is the colloquial translation of (s)he will sing? ",
    "question_th": " เขาจะร้องเพลงเป็นภาษาพูดแปลว่าอะไร?",
    "context": "CREATE TABLE table_23710609_2 (romanian__colloquial_ VARCHAR, english VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_23718905_6 WHERE city = \"El Paso, Texas\"",
    "question_en": "What was the date of the game played in El Paso, Texas?",
    "question_th": "วันที่เล่นเกมที่เอลปาโซ รัฐเท็กซัส คือวันที่เท่าไหร่?",
    "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_en": "How many different matchup/results appear in San Diego, California?",
    "question_th": "มีการจับคู่/ผลการแข่งขันที่แตกต่างกันจำนวนเท่าใดที่ปรากฏในซานดิเอโก แคลิฟอร์เนีย",
    "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_en": "How many different items appear in the television column when the results where Iowa State 14, Minnesota 13?",
    "question_th": "มีกี่รายการที่แตกต่างกันปรากฏในคอลัมน์โทรทัศน์เมื่อผลการแข่งขันที่รัฐไอโอวา 14, มินนิโซตา 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_en": "How many different items appear in he attendance column at Sun Devil Stadium?",
    "question_th": "มีรายการที่แตกต่างกันกี่รายการที่ปรากฏในคอลัมน์การเข้าร่วมของเขาที่ 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_en": "In what bowl game was the result Oklahoma 31, Stanford 27?",
    "question_th": "ในเกมชามใดที่ผลการแข่งขันโอคลาโฮมา 31, สแตนฟอร์ด 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_en": "What was the television that was dated December 28, 2009?",
    "question_th": "โทรทัศน์วันที่ 28 ธันวาคม 2552 คืออะไร?",
    "context": "CREATE TABLE table_23718905_6 (television VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_237199_1 WHERE company_name = \"Doosan Infracore\"",
    "question_en": "Which country has doosan infracore as then company name?",
    "question_th": "ประเทศใดมี doosan infracore เป็นชื่อบริษัท?",
    "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_en": "How many north american brands have world headquarters in sagamihara?",
    "question_th": "มีแบรนด์ในอเมริกาเหนือกี่แบรนด์ที่มีสำนักงานใหญ่อยู่ที่ซากามิฮาระ",
    "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_en": "Which company name has headquarters in nagaokakyo, kyoto?",
    "question_th": "ชื่อบริษัทใดมีสำนักงานใหญ่อยู่ที่นางาโอกะเคียว จังหวัดเกียวโต",
    "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_en": "what is the bore where the vehicle code is t214?",
    "question_th": "เจาะอะไร รหัสรถคือ 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_en": "what is the compression ratio whre the torque is 208?",
    "question_th": "อัตรากำลังอัดที่แรงบิด 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_en": "what is the vehicle code where the bore is 79.4?",
    "question_th": "รหัสรถที่เจาะ 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_en": "what is the stroke where the vehicle code is t211?",
    "question_th": "จังหวะที่รหัสรถคือ 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_en": "What was the rating/share for 18-49 for the episode that had 5.90 million viewers? ",
    "question_th": " เรตติ้ง/แชร์สำหรับตอนอายุ 18-49 ปีที่มีผู้ชม 5.90 ล้านคนเป็นเท่าใด",
    "context": "CREATE TABLE table_23730973_5 (rating VARCHAR, viewers__millions_ VARCHAR)"
  },
  {
    "answer": "SELECT episode FROM table_23730973_5 WHERE no = 3",
    "question_en": "What was the title of episode 3?",
    "question_th": "ตอนที่ 3 ชื่ออะไรคะ?",
    "context": "CREATE TABLE table_23730973_5 (episode VARCHAR, no VARCHAR)"
  },
  {
    "answer": "SELECT MIN(no) FROM table_23730973_5 WHERE rating = \"4.7\"",
    "question_en": "What number episode had a rating of 4.7?",
    "question_th": "เรื่องไหนได้เรตติ้ง 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_en": "What was the rating for the episode that had 5.90 million viewers? ",
    "question_th": " เรตติ้งตอนที่มีผู้ชม 5.90 ล้านคนอยู่ที่เท่าไร?",
    "context": "CREATE TABLE table_23730973_5 (rating VARCHAR, viewers__millions_ VARCHAR)"
  },
  {
    "answer": "SELECT MIN(no) FROM table_23730973_5 WHERE rating = \"4.2\"",
    "question_en": "What number episode had a 4.2 rating? ",
    "question_th": " เรื่องไหนได้เรตติ้ง 4.2 ครับ?",
    "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_en": "What is the winning coach total number if the top team in regular season (points) is the Kansas City Spurs (110 points)?",
    "question_th": "หมายเลขรวมของโค้ชที่ชนะจะเป็นเท่าใด หากทีมอันดับต้นๆ ในฤดูกาลปกติ (คะแนน) คือ Kansas City Spurs (110 คะแนน)",
    "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_en": "If the top team in regular season (points) is the New York Cosmos (200 points), what is the winner (number of titles)?",
    "question_th": "หากทีมอันดับต้นๆ ในฤดูกาลปกติ (คะแนน) คือ New York Cosmos (200 คะแนน) ผู้ชนะ (จำนวนรายการ) คือทีมใด?",
    "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_en": "If the runner-up is the Fort Lauderdale Strikers, what is the winner (number of titles)?",
    "question_th": "หากรองชนะเลิศคือ Fort Lauderdale Strikers ผู้ชนะคืออะไร (จำนวนตำแหน่ง)",
    "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_en": "How many figures for Other in the district where the GN division is 95?",
    "question_th": "อื่นๆ ในเขตที่ GN อยู่ 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_en": "What was the market share of the operator whose technology is CDMA EVDO GSM EDGE HSPA+?",
    "question_th": "ส่วนแบ่งการตลาดของผู้ให้บริการที่มีเทคโนโลยี 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_en": "What was the rank of operator whose technology is CDMA EVDO?",
    "question_th": "ผู้ปฏิบัติงานที่มีเทคโนโลยี 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_en": "What was the production code for the episode directed by Michael Morris?",
    "question_th": "รหัสการผลิตสำหรับตอนที่กำกับโดย 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_en": "What is the title the episode directed by Allison Liddi-Brown?",
    "question_th": "ตอนที่กำกับโดย 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_en": "What the production code for the episode with 16.10 U.S. viewers?",
    "question_th": "รหัสการผลิตสำหรับตอนที่มีผู้ชม 16.10 US คืออะไร?",
    "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_en": "what is the episode title on original air date of September 30, 2007?",
    "question_th": "ชื่อตอนของวันที่ออกอากาศครั้งแรกวันที่ 30 กันยายน 2550 คืออะไร?",
    "context": "CREATE TABLE table_23799417_2 (title VARCHAR, original_airing VARCHAR)"
  },
  {
    "answer": "SELECT rating FROM table_23799417_2 WHERE rating / SHARE(18 AS –49) = 3.6",
    "question_en": "What is the rating if the rating/share (18-49) is 3.6?",
    "question_th": "ถ้าเรตติ้ง/หุ้น (18-49) อยู่ที่ 3.6 จะให้คะแนนเท่าไร?",
    "context": "CREATE TABLE table_23799417_2 (rating VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(rating) / SHARE(18 AS –49) FROM table_23799417_2 WHERE total_viewers__in_millions_ = \"12.75\"",
    "question_en": "What is the rating/share total number if the total viewers is 12.75 million?",
    "question_th": "ถ้ายอดคนดู 12.75 ล้านคน จะให้คะแนน/แชร์เป็นจำนวนเท่าใด?",
    "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_en": "If the rating is 9.1, what was the total viewers?",
    "question_th": "หากเรตติ้งคือ 9.1 ยอดผู้ชมทั้งหมดเป็นเท่าใด",
    "context": "CREATE TABLE table_23799417_2 (total_viewers__in_millions_ VARCHAR, rating VARCHAR)"
  },
  {
    "answer": "SELECT rating / SHARE(18 AS –49) FROM table_23793770_2 WHERE total_viewers__in_millions_ = \"11.49\"",
    "question_en": "What was the reating share when the total viewers was 11.49 million?",
    "question_th": "ส่วนแบ่งการรีตติ้งเมื่อยอดผู้ชมทั้งหมดอยู่ที่ 11.49 ล้านคนเป็นเท่าใด",
    "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_en": "What was the name of the show that had 10.47 million total viewers?",
    "question_th": "รายการที่มีผู้ชมทั้งหมด 10.47 ล้านคนชื่ออะไร",
    "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_en": "How many shows had 12.46 total viewers?",
    "question_th": "มีกี่รายการที่มีผู้ชมทั้งหมด 12.46 คน?",
    "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_en": "If the establishment is 49319, what is the sales, receipts or shipments maximum amount?",
    "question_th": "หากสถานประกอบการคือ 49319 ยอดขาย ใบเสร็จรับเงิน หรือการจัดส่งสูงสุดคือเท่าใด",
    "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_en": "What is the sector is the establishment is 110313?",
    "question_th": "ภาคที่เป็นสถานประกอบการคือ 110313 คืออะไร?",
    "context": "CREATE TABLE table_23802822_1 (sector VARCHAR, establishments VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(league) FROM table_2380212_1 WHERE avg_attendance = 3589",
    "question_en": "How many different Leagues had average attendance of 3589?",
    "question_th": "มีกี่ลีกที่แตกต่างกันที่มีผู้เข้าร่วมเฉลี่ย 3,589 คน?",
    "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_en": "How many people saw the 3rd, Central regular season on average?",
    "question_th": "ซีซั่นปกติที่ 3 เซ็นทรัล มีคนดูเฉลี่ยกี่คน?",
    "context": "CREATE TABLE table_2380212_1 (avg_attendance INTEGER, regular_season VARCHAR)"
  },
  {
    "answer": "SELECT league FROM table_2380212_1 WHERE year = 2007",
    "question_en": "What League was played in 2007?",
    "question_th": "ลีกใดที่เล่นในปี 2550?",
    "context": "CREATE TABLE table_2380212_1 (league VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_2380212_1 WHERE avg_attendance = 789",
    "question_en": "When was the average attendance 789?",
    "question_th": "ผู้เข้าร่วมเฉลี่ย 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_en": "what is the score in fg-fga if in ft-fta is 16-21",
    "question_th": "คะแนนใน fg-fga เป็นเท่าใด ถ้าใน ft-fta คือ 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_en": "in the ft pct .667 what is the number of gp-gs",
    "question_th": "ใน ft pct .667 จำนวนของ 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_en": "Name the team number 1 for san lorenzo",
    "question_th": "ตั้งชื่อทีมหมายเลข 1 ให้ซาน ลอเรนโซ",
    "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_en": "Name the team #2 for river plate",
    "question_th": "ตั้งชื่อทีม #2 สำหรับจานแม่น้ำ",
    "context": "CREATE TABLE table_23812628_1 (team__number2 VARCHAR, team__number1 VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_23812628_1 WHERE team__number1 = \"Zamora\"",
    "question_en": "Name the points for zamora",
    "question_th": "ตั้งชื่อคะแนนสำหรับซาโมรา",
    "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_en": "Name the 2nd leg for boca juniors",
    "question_th": "ตั้งชื่อเลกที่ 2 ให้กับ โบคา จูเนียร์ส",
    "context": "CREATE TABLE table_23812628_1 (team__number1 VARCHAR)"
  },
  {
    "answer": "SELECT media_type FROM table_23829490_1 WHERE genre = \"Psychedelic Trance\"",
    "question_en": "What is every media type for the Psychedelic Trance genre?",
    "question_th": "สื่อทุกประเภทสำหรับประเภท Psychedelic Trance คืออะไร?",
    "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_en": "Who is every composer for the media named Hall of Dreams?",
    "question_th": "ใครคือผู้แต่งเพลงให้กับสื่อชื่อ 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_en": "What is every media type for the Dub genre?",
    "question_th": "สื่อทุกประเภทสำหรับประเภท Dub คืออะไร?",
    "context": "CREATE TABLE table_23829490_1 (media_type VARCHAR, genre VARCHAR)"
  },
  {
    "answer": "SELECT media_type FROM table_23829490_1 WHERE genre = \"World\"",
    "question_en": "What is every media type for the World genre?",
    "question_th": "สื่อทุกประเภทสำหรับประเภท World คืออะไร?",
    "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_en": "What is every composition name when the music library is Heart of Asia and media type is album with the Trance genre?",
    "question_th": "ชื่อเพลงทุกเพลงเมื่อคลังเพลงคือ Heart of Asia และประเภทสื่อคืออัลบั้มประเภท Trance?",
    "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_en": "what percentage is brooklyn when manhattan is 15.5%?",
    "question_th": "บรูคลินเป็นกี่เปอร์เซ็นต์เมื่อแมนฮัตตันอยู่ที่ 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_en": "What is every entry in the QLD Cup Premierships when home ground is Dairy Farmers Stadium?",
    "question_th": "ทุกรายการใน QLD Cup Premierships จะเป็นอย่างไรเมื่อสนามเหย้าคือ 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_en": "What is every value for first year in QLD Cup if home ground is Corbett Park, Crosby Park, Lang Park, ANZ Stadium?",
    "question_th": "ทุกมูลค่าสำหรับปีแรกใน QLD Cup จะมีมูลค่าเท่าใด หากสนามเหย้าคือ 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_en": "What is the home ground if team is Sunshine Coast Falcons?",
    "question_th": "สนามเหย้าจะเป็นอย่างไรหากทีมคือ 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_en": "What is the QLD Cup Premierships if team is Gold Coast Vikings?",
    "question_th": "QLD Cup Premierships จะเป็นอย่างไรหากทีมคือ 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_en": "What is every team in the location of Port Moresby?",
    "question_th": "ตำแหน่งของพอร์ท มอร์สบี้ ทุกทีมเป็นอย่างไรบ้าง?",
    "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_en": "How many values of last year in QLD Cup if QLD Cup Premierships is 1996, 2001?",
    "question_th": "QLD Cup ของปีที่แล้วมีกี่ค่าถ้า QLD Cup Premierships คือ 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_en": "What are the undisclosed when Adam Hinshelwood is Ricky Newman?",
    "question_th": "สิ่งที่ไม่เปิดเผยเมื่อ Adam Hinshelwood คือ 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_en": "What is the df when Adam Hinshelwood is Junior Mendes?",
    "question_th": "df จะเป็นอย่างไรเมื่อ Adam Hinshelwood เป็น 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_en": "What is the undisclosed when Aldertown is Aldershot Town and Wycombe Wanderers is Oxford United?",
    "question_th": "สิ่งที่ไม่เปิดเผยเมื่ออัลเดอร์ทาวน์คืออัลเดอร์ช็อต ทาวน์ และวีคอมบ์ วันเดอเรอร์สคืออ็อกซ์ฟอร์ด ยูไนเต็ด?",
    "context": "CREATE TABLE table_23835213_2 (undisclosed VARCHAR, wycombe_wanderers VARCHAR)"
  },
  {
    "answer": "SELECT undisclosed FROM table_23835213_2 WHERE wycombe_wanderers = \"Unattached\"",
    "question_en": "What is the undisclosed when Wycombe Wanderers is unattached?",
    "question_th": "สิ่งที่ไม่เปิดเผยเมื่อวีคอมบ์ วันเดอเรอร์สไม่ได้ติดทีมคืออะไร?",
    "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_en": "Who is the head coach for the team that plays at Altrincham Ice Dome?",
    "question_th": "ใครคือหัวหน้าโค้ชของทีมที่เล่นที่อัลทริงแคม ไอซ์โดม?",
    "context": "CREATE TABLE table_2384331_1 (head_coach VARCHAR, arena VARCHAR)"
  },
  {
    "answer": "SELECT arena FROM table_2384331_1 WHERE captain = \"Michael Wales\"",
    "question_en": "What arena does the team play at that has Michael Wales as the captain?",
    "question_th": "ทีมเล่นในเวทีไหนที่มีไมเคิล เวลส์เป็นกัปตันทีม?",
    "context": "CREATE TABLE table_2384331_1 (arena VARCHAR, captain VARCHAR)"
  },
  {
    "answer": "SELECT theme FROM table_23871828_1 WHERE week__number = \"Top 9\"",
    "question_en": "List all themes from the top 9.",
    "question_th": "แสดงรายการธีมทั้งหมดจาก 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_en": "In what week was the original singer Whitney Houston.",
    "question_th": "วิทนีย์ ฮูสตัน นักร้องต้นฉบับคือสัปดาห์ใด",
    "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_en": "Name the song for safe result #8.",
    "question_th": "ตั้งชื่อเพลงเพื่อความปลอดภัย #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_en": "List the song chose for the British Invasion.",
    "question_th": "รายชื่อเพลงที่เลือกสำหรับ British Invasion",
    "context": "CREATE TABLE table_23871828_1 (song_choice VARCHAR, theme VARCHAR)"
  },
  {
    "answer": "SELECT stops FROM table_2385460_1 WHERE stations = 36",
    "question_en": "Name the stops for stations 36",
    "question_th": "ตั้งชื่อป้ายหยุดสำหรับสถานี 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_en": "Name the number of lines for porta nolana - ottaviano- sarno",
    "question_th": "ตั้งชื่อจำนวนบรรทัดสำหรับ porta nolana - ottoviano-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_en": "Name the travel time for porta nolana - nola - baiano",
    "question_th": "ตั้งชื่อเวลาการเดินทางของ 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_en": "Name the number of stations for 15 minutes travel time",
    "question_th": "บอกจำนวนสถานี ระยะเวลาเดินทาง 15 นาที",
    "context": "CREATE TABLE table_2385460_1 (stations VARCHAR, travel_time VARCHAR)"
  },
  {
    "answer": "SELECT area__km²_ FROM table_23887174_1 WHERE province__ashkharh_ = \"Persarmenia\"",
    "question_en": "How big (in km2) is Persarmenia?",
    "question_th": "Persarmenia ใหญ่แค่ไหน (ใน km2)?",
    "context": "CREATE TABLE table_23887174_1 (area__km²_ VARCHAR, province__ashkharh_ VARCHAR)"
  },
  {
    "answer": "SELECT center FROM table_23887174_1 WHERE province__ashkharh_ = \"Artsakh\"",
    "question_en": "What's the center of the Artsakh province?",
    "question_th": "ศูนย์กลางของจังหวัด Artsakh คืออะไร?",
    "context": "CREATE TABLE table_23887174_1 (center VARCHAR, province__ashkharh_ VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(province__ashkharh_) FROM table_23887174_1 WHERE center = \"Baghaberd\"",
    "question_en": "How many different provinces is Baghaberd the center of?",
    "question_th": "Baghaberd เป็นศูนย์กลางของจังหวัดที่แตกต่างกันกี่จังหวัด",
    "context": "CREATE TABLE table_23887174_1 (province__ashkharh_ VARCHAR, center VARCHAR)"
  },
  {
    "answer": "SELECT MIN(area__km²_) FROM table_23887174_1 WHERE armenian_name = \"Փայտակարան\"",
    "question_en": "How big is the province with the Armenian name of փայտակարան?",
    "question_th": "จังหวัดที่มีชื่ออาร์เมเนียว่า Ճայտակաաան ใหญ่แค่ไหน?",
    "context": "CREATE TABLE table_23887174_1 (area__km²_ INTEGER, armenian_name VARCHAR)"
  },
  {
    "answer": "SELECT center FROM table_23887174_1 WHERE area__km²_ = 23860",
    "question_en": "What's the center of the province that spreads out on 23860 km2?",
    "question_th": "ศูนย์กลางของจังหวัดที่แผ่ขยายออกไปบนพื้นที่ 23860 km2 คืออะไร?",
    "context": "CREATE TABLE table_23887174_1 (center VARCHAR, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(number_of_cantons__gavars_) FROM table_23887174_1 WHERE armenian_name = \"Վասպուրական\"",
    "question_en": "How many different numbers of cantons does the province with the Armenian name վասպուրական have?",
    "question_th": "จังหวัดที่มีชื่ออาร์เมเนีย վասպոոաական มีกี่รัฐที่แตกต่างกันจำนวนเท่าใด",
    "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_en": "what are the seasons for no 3?",
    "question_th": "หมายเลข 3 ฤดูกาลอะไร?",
    "context": "CREATE TABLE table_23886181_1 (seasons VARCHAR, no VARCHAR)"
  },
  {
    "answer": "SELECT MAX(wins) FROM table_2387790_1 WHERE poles = 2",
    "question_en": "what are the maximum wins where the poles are 2?",
    "question_th": "ชนะสูงสุดโดยที่เสาเป็น 2 คือเท่าไร?",
    "context": "CREATE TABLE table_2387790_1 (wins INTEGER, poles VARCHAR)"
  },
  {
    "answer": "SELECT translation FROM table_23915_4 WHERE ipa___rio_de_janeiro__ = \"ki̥ mo̞ɕˈtɾaɾɜ̃w̃ nɐ ˈtɛʁə tɕĩʑiˈtɜ̃nə\"",
    "question_en": "What is the original of the ipa ( rio de janeiro )translation ki̥ mo̞ɕˈtɾaɾɜ̃w̃ nɐ ˈtɛʁə tɕĩʑiˈtɜ̃nə?",
    "question_th": "ต้นฉบับของคำแปล ipa (rio de janeiro ) ki̥ mo̞ɕˈtɾaɾɜ̃w̃ nɐ ˈtɛʁə tɕĩʑiˈtɜ̃nə คืออะไร?",
    "context": "CREATE TABLE table_23915_4 (translation VARCHAR, ipa___rio_de_janeiro__ VARCHAR)"
  },
  {
    "answer": "SELECT translation FROM table_23915_4 WHERE ipa___são_paulo__ = \"dɐ̃ːˈtɕiɣɐ ˈtɐ̃ʊ̯̃ ɐ̃ˈmadɐ ˈsuɐ ɦõ̞ˈmənə\"",
    "question_en": "What is the original of the  ipa ( são paulo ) translation dɐ̃ːˈtɕiɣɐ ˈtɐ̃ʊ̯̃ ɐ̃ˈmadɐ ˈsuɐ ɦõ̞ˈmənə?",
    "question_th": "ต้นฉบับของคำแปล ipa ( são paulo ) dɐ̃ːˈtɕiɣɐ ˈtɐ̃ʊ̯̃ ɐ̃ˈmadɐ ˈsuɐ ɦõ̞ˈmənə คืออะไร?",
    "context": "CREATE TABLE table_23915_4 (translation VARCHAR, ipa___são_paulo__ VARCHAR)"
  },
  {
    "answer": "SELECT frequency FROM table_23910822_1 WHERE callsign = \"DYMY\"",
    "question_en": "Which frequency is DYMY?",
    "question_th": "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_en": "What is the frequency when radio station branding is 106.3 energy fm naga?",
    "question_th": "ความถี่ในการสร้างแบรนด์สถานีวิทยุเป็น 106.3 พลังงาน fm นาค?",
    "context": "CREATE TABLE table_23915973_1 (frequency VARCHAR, branding VARCHAR)"
  },
  {
    "answer": "SELECT callsign FROM table_23915973_1 WHERE power_kw = \"25kW\"",
    "question_en": "What is the callsign when power kw is 25kw?",
    "question_th": "สัญญาณเรียกเมื่อกำลังกิโลวัตต์คือ 25kw คืออะไร?",
    "context": "CREATE TABLE table_23915973_1 (callsign VARCHAR, power_kw VARCHAR)"
  },
  {
    "answer": "SELECT frequency FROM table_23915973_1 WHERE callsign = \"DXRU-FM\"",
    "question_en": "What is the frequency when callsign is dxru-fm?",
    "question_th": "ความถี่เมื่อ callsign เป็น dxru-fm คืออะไร?",
    "context": "CREATE TABLE table_23915973_1 (frequency VARCHAR, callsign VARCHAR)"
  },
  {
    "answer": "SELECT branding FROM table_23915973_1 WHERE power_kw = \"5kW\"",
    "question_en": "What is the radio station branding when the power km is 5kw?",
    "question_th": "สถานีวิทยุมีตราสินค้าอะไรเมื่อกำลังกม. อยู่ที่ 5kw?",
    "context": "CREATE TABLE table_23915973_1 (branding VARCHAR, power_kw VARCHAR)"
  },
  {
    "answer": "SELECT coverage FROM table_23915973_1 WHERE power_kw = \"25kW\"",
    "question_en": "What is the coverage when power kw is 25kw?",
    "question_th": "เมื่อกำลังไฟฟ้า kw คือ 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_en": "How many power kw have a frequency of 93.7 mhz?",
    "question_th": "ความถี่ 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_en": "Who were all the writers whose episodes had 0.97 million viewers?",
    "question_th": "ใครคือนักเขียนที่มีผู้ชมตอน 0.97 ล้านคน?",
    "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_en": "How many directors worked on the episode written by Brent Fletcher & Miranda Kwok?",
    "question_th": "มีผู้กำกับกี่คนที่เขียนบทโดย 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_en": "What was the title of the episode directed by Rowan Woods?",
    "question_th": "ตอนที่กำกับโดย 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_en": "How many episodes were viewed by 1.29 million people?",
    "question_th": "มีผู้ชม 1.29 ล้านคนกี่ตอน?",
    "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_en": "Who was the writer for the episode originally airing on March 1, 2004?",
    "question_th": "ใครคือผู้เขียนตอนที่ออกอากาศเมื่อวันที่ 1 มีนาคม พ.ศ. 2547",
    "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_en": "List the title for the season episode number of 8.",
    "question_th": "ระบุชื่อซีซั่นตอนที่ 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_en": "Who was the director for the episode originally airing September 29, 2003?",
    "question_th": "ใครคือผู้กำกับสำหรับตอนที่ออกอากาศครั้งแรกเมื่อวันที่ 29 กันยายน พ.ศ. 2546",
    "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_en": "Name the original air date for harry hannigan directed by adam weissman",
    "question_th": "ตั้งชื่อวันออกอากาศดั้งเดิมของแฮร์รี่ ฮันนิแกน กำกับโดยอดัม ไวส์แมน",
    "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_en": "How many people directed episode 7 In the season?",
    "question_th": "มีคนกำกับตอนที่ 7 กี่คนในฤดูกาลนี้?",
    "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_en": "How many original air dates were there for the episode with production code 212?",
    "question_th": "ตอนรหัสการผลิต 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_en": "What is the production code for episode 31 in the series?",
    "question_th": "รหัสการผลิตตอนที่ 31 ของซีรีส์คืออะไร?",
    "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_en": "How many seasons did Barking Birmingham & Solihull Stourbridge were relegated from league?",
    "question_th": "บาร์คกิ้ง เบอร์มิงแฮม และ โซลิฮัลล์ สตอร์บริดจ์ ตกชั้นจากลีกกี่ฤดูกาล?",
    "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_en": "Who was relegated to league if Barking Birmingham & Solihull Stourbridge were relegated from league?",
    "question_th": "ใครบ้างที่ตกชั้นสู่ลีก หากบาร์คกิ้ง เบอร์มิงแฮม และโซลิฮัลล์ สตอร์บริดจ์ตกชั้นจากลีก?",
    "context": "CREATE TABLE table_23927423_4 (relegated_to_league VARCHAR, relegated_from_league VARCHAR)"
  },
  {
    "answer": "SELECT MIN(teams) FROM table_23927423_4",
    "question_en": "How many were the minimum team that participated in the league?",
    "question_th": "ทีมขั้นต่ำที่เข้าร่วมในลีกมีกี่ทีม?",
    "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_en": "How many teams participated (maximum) when Cornish All Blacks Pertemps Bees were relegated to the league?",
    "question_th": "มีกี่ทีมที่เข้าร่วม (สูงสุด) เมื่อ Cornish All Blacks Pertemps Bees ตกชั้นสู่ลีก?",
    "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_en": "Who was promoted to the league when Coventry was relegated to the league?",
    "question_th": "ใครได้เลื่อนชั้นสู่ลีกเมื่อโคเวนทรีตกชั้นสู่ลีก?",
    "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_en": "How many were promoted from the league when Esher was relegated to the league?",
    "question_th": "มีกี่คนที่ได้เลื่อนชั้นจากลีกเมื่อเอสเชอร์ตกชั้นสู่ลีก?",
    "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_en": "What is the smallest 08-09 GP/JGP 2nd value when WS points equals 3197?",
    "question_th": "ค่าที่ 2 08-09 GP/JGP ที่เล็กที่สุดคืออะไรเมื่อคะแนน WS เท่ากับ 3197",
    "context": "CREATE TABLE table_23938357_7 (ws_points VARCHAR)"
  },
  {
    "answer": "SELECT MIN(07 AS _08_oi_best) FROM table_23938357_7",
    "question_en": "What is the smallest 07-08 oi best value?",
    "question_th": "07-08 oi ตัวเล็กที่สุดตัวไหนคุ้มที่สุด?",
    "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_en": "Name the number of partners for 5-7, 6-7 (5-7)",
    "question_th": "ตั้งชื่อจำนวนคู่ 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_en": "Name the surface for cara black rennae stubbs",
    "question_th": "ตั้งชื่อพื้นผิวของ 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_en": "Name the score for san diego",
    "question_th": "ตั้งชื่อคะแนนสำหรับซานดิเอโก",
    "context": "CREATE TABLE table_23944006_4 (score VARCHAR, championship VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_23944006_4 WHERE championship = \"Zurich\"",
    "question_en": "Name the outcome for zurich",
    "question_th": "ตั้งชื่อผลลัพธ์สำหรับซูริก",
    "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_en": "Name the number of surfaces for  4-6, 2-6",
    "question_th": "ตั้งชื่อจำนวนพื้นผิวสำหรับ 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_en": "What is the least 08-09 i/o best?",
    "question_th": "08-09 i/o อย่างน้อยที่สุดคืออะไรดีที่สุด?",
    "context": "CREATE TABLE table_23938357_6 (Id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(rank) FROM table_23938357_6 WHERE name = \"Keauna McLaughlin / Rockne Brubaker\"",
    "question_en": "How many times is  keauna mclaughlin / rockne brubaker ranked?",
    "question_th": "คีอาน่า แม็คลาฟลิน / ร็อคเน่ บรูเบเกอร์ ติดอันดับกี่ครั้ง?",
    "context": "CREATE TABLE table_23938357_6 (rank VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT sprint_classification FROM table_23944514_15 WHERE aggressive_rider = \"Michael Barry\"",
    "question_en": "Name the sprint classification for michael barry",
    "question_th": "ตั้งชื่อการจำแนกประเภทการวิ่งสำหรับไมเคิล แบร์รี่",
    "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_en": "Name the youth classification for michael barry",
    "question_th": "ตั้งชื่อการจำแนกประเภทเยาวชนสำหรับไมเคิล แบร์รี่",
    "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_en": "Name the mountains classification for bradley white",
    "question_th": "ตั้งชื่อการจำแนกประเภทภูเขาสำหรับแบรดลีย์ ไวท์",
    "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_en": "List all mbit/s with profiles of 8b.",
    "question_th": "แสดงรายการ mbit/s ทั้งหมดที่มีโปรไฟล์ 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_en": "What are the mhz when the profile is 8b?",
    "question_th": "mhz คืออะไรเมื่อโปรไฟล์เป็น 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_en": "What are the highest mbit/s when the dbm is +17.5?",
    "question_th": "mbit/s สูงสุดคือเท่าใดเมื่อ dbm คือ +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_en": "List all dbm's when profiles are 8a.",
    "question_th": "แสดงรายการ dbm ทั้งหมดเมื่อโปรไฟล์เป็น 8a",
    "context": "CREATE TABLE table_2394927_1 (power___dbm__ VARCHAR, profile VARCHAR)"
  },
  {
    "answer": "SELECT MIN(number_of_carriers) FROM table_2394927_1",
    "question_en": "What is the lowest number of carriers?",
    "question_th": "จำนวนผู้ให้บริการขั้นต่ำคือเท่าไร?",
    "context": "CREATE TABLE table_2394927_1 (number_of_carriers INTEGER)"
  },
  {
    "answer": "SELECT directed_by FROM table_23958944_5 WHERE no_by_season = 21",
    "question_en": "Who directed episode 21?",
    "question_th": "ใครกำกับตอนที่ 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_en": "What episode was watched by 10.81 million US viewers?",
    "question_th": "ผู้ชมชาวอเมริกันจำนวน 10.81 ล้านคนรับชมตอนใด",
    "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_en": "What episode is directed by Bryan Spicer and written by Terence Paul Winter?",
    "question_th": "ตอนใดกำกับโดย Bryan Spicer และเขียนบทโดย 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_en": "Name the number of series for 19",
    "question_th": "ตั้งชื่อหมายเลขซีรีส์สำหรับ 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_en": "Name the viewers for 520",
    "question_th": "ตั้งชื่อคนดู 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_en": "How many different writers have written the episode with series number 8?",
    "question_th": "มีนักเขียนกี่คนที่เขียนตอนนี้กับซีรีส์หมายเลข 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_en": "What's the title of the episode with production number 103?",
    "question_th": "ตอนที่ 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_en": "who has the 1 goal and the position is fw?",
    "question_th": "ใครได้ประตูที่ 1 และตำแหน่งคือ 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_en": "How many release dates are there for year of 1988 and additional rock band 3 features is none?",
    "question_th": "มีวันที่วางจำหน่ายกี่วันในปี 1988 และคุณสมบัติเพิ่มเติมของวงร็อค 3 ไม่มีเลย?",
    "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_en": "What is the nationality associated with 0 minutes, position of MF, and an Athletica career of 2009?",
    "question_th": "สัญชาติใดที่เกี่ยวข้องกับ 0 นาที, ตำแหน่ง MF และอาชีพของ Athletica ในปี 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_en": "What is the position of the player who is from the United States and has 30 minutes? ",
    "question_th": " นักเตะที่มาจากอเมริกาและมีเวลา 30 นาทีอยู่ตำแหน่งไหน?",
    "context": "CREATE TABLE table_23963781_3 (position VARCHAR, nationality VARCHAR, minutes VARCHAR)"
  },
  {
    "answer": "SELECT MAX(goals) FROM table_23963781_3",
    "question_en": "What is the most amount of goals any of the players had? ",
    "question_th": " ผู้เล่นคนใดมีเป้าหมายมากที่สุดคือเท่าใด?",
    "context": "CREATE TABLE table_23963781_3 (goals INTEGER)"
  },
  {
    "answer": "SELECT song_title FROM table_23981771_1 WHERE artist = \"Dixie Chicks\"",
    "question_en": "What is the song for Dixie Chicks?",
    "question_th": "เพลงของ 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_en": "What is the episode title for number 7 in the season?",
    "question_th": "หมายเลข 7 ของซีซั่นชื่อตอนอะไรคะ?",
    "context": "CREATE TABLE table_23981882_1 (title VARCHAR, no_in_season VARCHAR)"
  },
  {
    "answer": "SELECT special FROM table_23982399_12 WHERE challenger = \"Dominique Bouchet\"",
    "question_en": "What is the special when the challenger is dominique bouchet?",
    "question_th": "มีอะไรพิเศษเมื่อผู้ท้าชิงคือ โดมินิค บูเชต์?",
    "context": "CREATE TABLE table_23982399_12 (special VARCHAR, challenger VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_23982399_12 WHERE iron_chef = \"Hiroyuki Sakai\"",
    "question_en": "Who was the winner when the iron chef is hiroyuki sakai?",
    "question_th": "ใครคือผู้ชนะเมื่อเชฟกระทะเหล็กคือฮิโรยูกิ ซากาอิ?",
    "context": "CREATE TABLE table_23982399_12 (winner VARCHAR, iron_chef VARCHAR)"
  },
  {
    "answer": "SELECT challenger FROM table_23982399_12 WHERE winner = \"Kimio Nonaga\"",
    "question_en": "Who was the challenger when winner was kimio nonaga?",
    "question_th": "ใครคือผู้ท้าชิงเมื่อผู้ชนะคือ คิมิโอะ โนนากะ?",
    "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_en": "What episode number originally aired on November 21, 1993?",
    "question_th": "หมายเลขตอนใดที่ออกอากาศครั้งแรกเมื่อวันที่ 21 พฤศจิกายน พ.ศ. 2536?",
    "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_en": "Who was the challenger on Episode 5?",
    "question_th": "ใครคือผู้ท้าชิงในตอนที่ 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_en": "What is the qualifying end date when the qualifying start date is qualifying start date?",
    "question_th": "วันที่สิ้นสุดการคัดเลือกคือวันที่เริ่มต้นที่มีคุณสมบัติเป็นวันที่เริ่มต้นที่มีคุณสมบัติตามที่กำหนดคือเมื่อใด",
    "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_en": "How many teams can still qualify when there are 0 teams that have secured qualification and 52 teams started?",
    "question_th": "มีกี่ทีมที่ยังสามารถผ่านเข้ารอบได้เมื่อมี 0 ทีมที่ผ่านการรับรองและมี 52 ทีมที่เริ่มแล้ว",
    "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_en": "How many teams eliminated when 11 teams started?",
    "question_th": "มีกี่ทีมที่ตกรอบเมื่อ 11 ทีมเริ่ม?",
    "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_en": "What is the confederation when there are 4 places remaining in the finals?",
    "question_th": "สมาพันธ์จะเป็นอย่างไรเมื่อเหลือ 4 ตำแหน่งในรอบชิงชนะเลิศ?",
    "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_en": "How many qualifying start dates for the Concacaf confederation?",
    "question_th": "สมาพันธ์คอนคาแคฟเริ่มรอบคัดเลือกกี่วัน?",
    "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_en": "How many remaining places in finals when 1 team can still qualify and 0 teams have secured qualification?",
    "question_th": "จะเหลืออีกกี่ตำแหน่งในรอบชิงชนะเลิศเมื่อ 1 ทีมยังผ่านเข้ารอบได้ และ 0 ทีมผ่านเข้ารอบอย่างปลอดภัย",
    "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_en": "How many of 3:26.00 have a championship record?",
    "question_th": "3:26.00 มีสถิติแชมป์กี่รายการ?",
    "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_en": "How many of 3:26.00 when hicham el guerrouj ( mar ) is hudson de souza ( bra )?",
    "question_th": "3:26.00 มีกี่นาทีที่ hicham el guerrouj ( mar ) คือ 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_en": "When saif saaeed shaheen (qat) is the saif saaeed shaheen ( qat ) what is the world record?",
    "question_th": "เมื่อไซฟ สะอีด ชาฮีน (กัต) คือ ไซฟ สะอีด ชาฮีน (กัต) สถิติโลกคืออะไร?",
    "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_en": "When daniel lincoln ( usa ) is the saif saaeed shaheen ( qat ) What is the date for September 3rd, 2004?",
    "question_th": "เมื่อแดเนียล ลินคอล์น (สหรัฐอเมริกา) คือไซฟ ซาอิด ชาฮีน (กัต) วันที่ 3 กันยายน พ.ศ. 2547 คือวันที่เท่าไร?",
    "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_en": "When  saif saaeed shaheen ( qat ) is the  saif saaeed shaheen ( qat ) what is the date on September 3rd, 2004?",
    "question_th": "เมื่อไซฟ สะอีด ชาฮีน (กัต) คือวันที่ 3 กันยายน พ.ศ. 2547 คือวันที่เท่าไร?",
    "context": "CREATE TABLE table_23988726_2 (Id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(1) AS :5328 FROM table_24001246_2 WHERE world_record = \"African record\"",
    "question_en": "If the world record is the African record, what is the 1:53.28 total number?",
    "question_th": "ถ้าสถิติโลกเป็นสถิติแอฟริกัน ตัวเลขรวม 1:53.28 คือเท่าไร?",
    "context": "CREATE TABLE table_24001246_2 (world_record VARCHAR)"
  },
  {
    "answer": "SELECT directed_by FROM table_2400842_1 WHERE prod__number = 109",
    "question_en": "Who directed the epsiode with production number 109?",
    "question_th": "ใครกำกับตอนที่มีผลงานหมายเลข 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_en": "Name the least finish for larry dickson",
    "question_th": "ตั้งชื่อการจบสกอร์น้อยที่สุดสำหรับแลร์รี ดิกสัน",
    "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_en": "Name the 26 august 2005 asian record",
    "question_th": "ตั้งชื่อบันทึกเอเชียวันที่ 26 สิงหาคม พ.ศ. 2548",
    "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_en": "Name the total number of kenesia for african record",
    "question_th": "ตั้งชื่อจำนวนเคเนเซียทั้งหมดสำหรับบันทึกในแอฟริกา",
    "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_en": "List the number of runners up when albertina fransisca mailoa won the putri pariwisata contest?",
    "question_th": "ระบุจำนวนรองชนะเลิศเมื่อ albertina Fransisca mailoa ชนะการแข่งขัน putri pariwisata?",
    "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_en": "Who won 2nd place when albertina fransisca mailoa was the winner of the putri pariwisata  contest?",
    "question_th": "ใครชนะอันดับที่ 2 เมื่อ albertina Fransisca Mailoa เป็นผู้ชนะการประกวด Putri Pariwisata?",
    "context": "CREATE TABLE table_24014744_1 (putri_pariwisata_indonesia VARCHAR)"
  },
  {
    "answer": "SELECT original_air_date FROM table_24018430_3 WHERE production_code = 216",
    "question_en": "what is the original air date for production code 216?",
    "question_th": "รหัสการผลิต 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_en": "what is writtenand directed by shannon flynn?",
    "question_th": "แชนนอน ฟลินน์ เขียนบทและกำกับเรื่องอะไร?",
    "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_en": "what number is us viewers in season 12?",
    "question_th": "พวกเราผู้ชมในซีซั่น 12 มีจำนวนเท่าไหร่?",
    "context": "CREATE TABLE table_24018430_3 (us_viewers__millions_ VARCHAR, no_in_season VARCHAR)"
  },
  {
    "answer": "SELECT population_density___km²_2011_ FROM table_24027047_1 WHERE area__km²__2011 * * = \"684.37\"",
    "question_en": "What was the population density in km2 for 2011 in the division where area in km2 was 684.37 in 2011? ",
    "question_th": " ความหนาแน่นของประชากรในหน่วยกิโลเมตรที่ 2 ในปี พ.ศ. 2554 เป็นเท่าใด โดยพื้นที่ในหน่วยกิโลเมตรที่ 2 เท่ากับ 684.37 ในปี พ.ศ. 2554",
    "context": "CREATE TABLE table_24027047_1 (population_density___km²_2011_ VARCHAR, area__km²__2011 VARCHAR)"
  },
  {
    "answer": "SELECT administrative_division FROM table_24027047_1 WHERE population_density___km²_2011_ = \"8,552.4\"",
    "question_en": "What division had a population density of 8,552.4 km2 in 2011?",
    "question_th": "เขตใดมีความหนาแน่นของประชากร 8,552.4 ตารางกิโลเมตรในปี 2554",
    "context": "CREATE TABLE table_24027047_1 (administrative_division VARCHAR, population_density___km²_2011_ VARCHAR)"
  },
  {
    "answer": "SELECT area__km²__2011 * * FROM table_24027047_1 WHERE administrative_division = \"Narsingdi District\"",
    "question_en": "What was the area in km2 in 2011 for the Narsingdi District?",
    "question_th": "พื้นที่ใน km2 ในปี 2554 ของเขต Narsingdi คือเท่าใด",
    "context": "CREATE TABLE table_24027047_1 (area__km²__2011 VARCHAR, administrative_division VARCHAR)"
  },
  {
    "answer": "SELECT administrative_division FROM table_24027047_1 WHERE population_density___km²_2011_ = \"1,604.3\"",
    "question_en": "In what division was there a population density in km2 of 1,604.3 in 2011?",
    "question_th": "ในปี 2554 มีความหนาแน่นของประชากรอยู่ที่ 1,604.3 ตารางกิโลเมตรในเขตใด",
    "context": "CREATE TABLE table_24027047_1 (administrative_division VARCHAR, population_density___km²_2011_ VARCHAR)"
  },
  {
    "answer": "SELECT administrative_division FROM table_24027047_1 WHERE population_density___km²_2011_ = \"4,491.8\"",
    "question_en": "In what division was there a population density in km2 of 4,491.8 in 2011? ",
    "question_th": " ในปี 2554 มีความหนาแน่นของประชากรในหน่วยกิโลเมตรที่ 2 ที่ 4,491.8",
    "context": "CREATE TABLE table_24027047_1 (administrative_division VARCHAR, population_density___km²_2011_ VARCHAR)"
  },
  {
    "answer": "SELECT area_coordinator FROM table_2402209_1 WHERE population__2010_ = 1715",
    "question_en": "What's the area coordinator for the municipality with 1715 people living in it in 2010?",
    "question_th": "ผู้ประสานงานพื้นที่ของเทศบาลที่มีประชากร 1,715 คนอาศัยอยู่ในนั้นในปี 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_en": "How many different counts of tue number of Barangays are there for the municipality with 13824 citizens in 2010?",
    "question_th": "Barangay จำนวนอ.สำหรับเทศบาลซึ่งมีพลเมือง 13,824 คนในปี 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_en": "How many Barangays lived in the municipality with area coordinator of 110.95?",
    "question_th": "มีบารังไกจำนวนกี่คนที่อาศัยอยู่ในเขตเทศบาลโดยมีผู้ประสานงานพื้นที่ 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_en": "What circuit had rnd 3?",
    "question_th": "วงจรอะไรมี 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ón Highcroft Racing\" AND gtc_winning_team = \"#81 Alex Job Racing\"",
    "question_en": "How many circuits had a winning team of #1 patrón highcroft racing ang gtc winning team #81 alex job racing ?",
    "question_th": "มีทีมที่ชนะ #1 Patrón Highcroft Racing และ GTC ที่ชนะทีม #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_en": "What was the winning team lmpc in rnd 3?",
    "question_th": "ทีม lmpc ที่ชนะใน 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_en": "What was the gtc winning team when lmp winning team was #8 drayson racing?",
    "question_th": "ทีมที่ชนะ gtc คืออะไรเมื่อทีมที่ชนะ lmp คือทีม #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_en": "Who is the captain in Chaguaramas?",
    "question_th": "ใครคือกัปตันใน 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_en": "What is the minimum capacity for Sangre Grande Ground?",
    "question_th": "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_en": "What is the capacity for Sangre Grande Ground, home of the North East Stars?",
    "question_th": "Sangre Grande Ground ซึ่งเป็นที่ตั้งของ 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_en": "San Juan Jabloteh calls which stadium home?",
    "question_th": "San Juan Jabloteh เรียกสนามไหนว่าบ้าน?",
    "context": "CREATE TABLE table_24039173_1 (stadium VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT innings FROM table_24039597_26 WHERE caught = 20",
    "question_en": "What was the innings when caught was 20?",
    "question_th": "โอกาสที่ถูกจับได้คือ 20?",
    "context": "CREATE TABLE table_24039597_26 (innings VARCHAR, caught VARCHAR)"
  },
  {
    "answer": "SELECT matches FROM table_24039597_26 WHERE player = \"MS Dhoni\"",
    "question_en": "What ist he matches where the player is ms dhoni?",
    "question_th": "เขาตรงกับอะไรโดยที่ผู้เล่นคือ ms dhoni?",
    "context": "CREATE TABLE table_24039597_26 (matches VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT stumped FROM table_24039597_26 WHERE innings = 143",
    "question_en": "What is stumped when inning is 143?",
    "question_th": "จะงงอะไรเมื่ออินนิ่งเป็น 143?",
    "context": "CREATE TABLE table_24039597_26 (stumped VARCHAR, innings VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(dismissals) FROM table_24039597_26 WHERE matches = 44",
    "question_en": "How many matches were 44?",
    "question_th": "44 นัดมีกี่นัด?",
    "context": "CREATE TABLE table_24039597_26 (dismissals VARCHAR, matches VARCHAR)"
  },
  {
    "answer": "SELECT MIN(stumped) FROM table_24039597_26 WHERE matches = 14",
    "question_en": "What is stumped when matches is 14?",
    "question_th": "อะไรจะนิ่งงันเมื่อนัดที่ 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_en": "Name the total number of monarchs for 23 may 1059 crowned",
    "question_th": "ระบุจำนวนพระมหากษัตริย์ทั้งหมด ประจำวันที่ 23 พฤษภาคม พ.ศ. 2502 ครองราชย์",
    "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_en": "What was the playoff result where the league did not qualify in the Open Cup in 1998?",
    "question_th": "ผลการแข่งขันเพลย์ออฟที่ลีกไม่ผ่านเข้ารอบโอเพ่นคัพในปี 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_en": "What was the earliest year where USL PDL played in 3rd, Southeast season?",
    "question_th": "ปีแรกสุดที่ USL PDL เล่นในฤดูกาลที่ 3 ของตะวันออกเฉียงใต้คือปีใด",
    "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_en": "What was the Open Cup results for the year 2003?",
    "question_th": "ผลการแข่งขัน Open Cup ในปี 2546 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_2402864_1 (open_cup VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT MAX(total_evm_votes) FROM table_24051013_3",
    "question_en": "What is the highest total for evm votes",
    "question_th": "คะแนนรวมสูงสุดสำหรับคะแนนเสียง evm คือเท่าใด",
    "context": "CREATE TABLE table_24051013_3 (total_evm_votes INTEGER)"
  },
  {
    "answer": "SELECT episode FROM table_24051050_1 WHERE contest = \"Heat 1\"",
    "question_en": "In what episode did heat 1 take place?",
    "question_th": "ฮีต 1 เกิดขึ้นในตอนใด?",
    "context": "CREATE TABLE table_24051050_1 (episode VARCHAR, contest VARCHAR)"
  },
  {
    "answer": "SELECT events FROM table_24051050_1 WHERE episode = 12",
    "question_en": "What events took place in episode 12?",
    "question_th": "เหตุการณ์อะไรเกิดขึ้นในตอนที่ 12?",
    "context": "CREATE TABLE table_24051050_1 (events VARCHAR, episode VARCHAR)"
  },
  {
    "answer": "SELECT challengers__female_ FROM table_24051050_1 WHERE episode = 28",
    "question_en": "Which female challengers featured in episode 28?",
    "question_th": "ผู้ท้าชิงหญิงคนไหนในตอนที่ 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_en": "How many players came from Los Angeles?",
    "question_th": "มีผู้เล่นกี่คนที่มาจากลอสแองเจลิส?",
    "context": "CREATE TABLE table_24055352_1 (name VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT height FROM table_24055352_1 WHERE hometown = \"Los Angeles\"",
    "question_en": "What is the height when the player is from Los Angeles?",
    "question_th": "ความสูงเมื่อผู้เล่นมาจากลอสแองเจลิสคือเท่าไร?",
    "context": "CREATE TABLE table_24055352_1 (height VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT height FROM table_24055352_1 WHERE name = \"Kammeon Holsey\"",
    "question_en": "What is Kammeon Holsey's height?",
    "question_th": "คัมเมียน โฮลซีย์สูงเท่าไร?",
    "context": "CREATE TABLE table_24055352_1 (height VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT high_school FROM table_24055352_1 WHERE number = 5",
    "question_en": "What is the high school of the player number 5?",
    "question_th": "โรงเรียนมัธยมของผู้เล่นหมายเลข 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ílson Gomes dos Santos ( BRA )\"",
    "question_en": "How many times is kenenisa bekele ( eth ) is marílson gomes dos santos ( bra )?",
    "question_th": "kenenisa bekele ( eth ) คือ marílson 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_en": "What is every entry for against with opponent Andreas Vinciguerra?",
    "question_th": "การเข้าแข่งขันกับอันเดรียส วินซิเกร์รา คู่ต่อสู้คืออะไร?",
    "context": "CREATE TABLE table_24074130_5 (against VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_24074130_5 WHERE against = \"Sweden\"",
    "question_en": "What is every surface against Sweden?",
    "question_th": "ทุกพื้นผิวในการต่อต้านสวีเดนคืออะไร?",
    "context": "CREATE TABLE table_24074130_5 (surface VARCHAR, against VARCHAR)"
  },
  {
    "answer": "SELECT win_lose FROM table_24074130_5 WHERE against = \"Sweden\"",
    "question_en": "What is every entry in the win/lose against Sweden?",
    "question_th": "ทุกรายการในการชนะ/แพ้กับสวีเดนคืออะไร?",
    "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_en": "How many production codes have an original airdate of November 16, 1990?",
    "question_th": "มีกี่รหัสการผลิตที่ออกอากาศครั้งแรกเมื่อวันที่ 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_en": "What series number had an original airdate of March 1, 1991?",
    "question_th": "หมายเลขซีรีส์ใดที่ออกอากาศครั้งแรกคือวันที่ 1 มีนาคม พ.ศ. 2534",
    "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_en": "How many production codes were in series 39?",
    "question_th": "ซีรี่ส์ 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_en": "Who wrote season 23?",
    "question_th": "ใครเป็นคนเขียนซีซั่น 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_en": "What is the production code for episode number 86 in the series?",
    "question_th": "รหัสการผลิตตอนที่ 86 ของซีรีส์คืออะไร?",
    "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_en": "What is the production code for the episode that originally aired on January 8, 1993?",
    "question_th": "รหัสการผลิตสำหรับตอนที่ออกอากาศครั้งแรกเมื่อวันที่ 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_en": "Who wrote the episode that originally aired on January 15, 1993?",
    "question_th": "ใครเป็นคนเขียนตอนที่ออกอากาศครั้งแรกเมื่อวันที่ 15 มกราคม พ.ศ. 2536",
    "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_en": "What is the name of episode number 77 in the series?",
    "question_th": "ตอนที่ 77 ของซีรีส์ชื่ออะไรคะ?",
    "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_en": "When 17 is the number in series who is the director?",
    "question_th": "เมื่อ 17 เป็นเลขในซีรีส์ใครเป็นผู้กำกับ?",
    "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_en": "When 21 is the number in series what is the air date?",
    "question_th": "เลข 21 เป็นเลขในซีรีย์ ออกอากาศวันไหนคะ?",
    "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_en": "When 446004 is the production code who are the writers?",
    "question_th": "เมื่อ 446004 เป็นรหัสการผลิตใครเป็นคนเขียน?",
    "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_en": "What was the name of the epiode written by Gary M. Goodrich?",
    "question_th": "ตอนที่เขียนโดย 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_en": "Who directed episode number 179 in the series?",
    "question_th": "ใครเป็นผู้กำกับตอนที่ 179 ในซีรีส์?",
    "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_en": "What's  the voltage of the model with part number TT80503300?",
    "question_th": "รุ่นที่มีหมายเลขชิ้นส่วน 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_en": "What's the frequency of the model with part number TT80503300?",
    "question_th": "รุ่นที่มีหมายเลขชิ้นส่วน 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_en": "What's the part number of the model with TDP of 2.9 (max.4.1~5.4) w?",
    "question_th": "หมายเลขชิ้นส่วนของรุ่นที่มี TDP อยู่ที่ 2.9 (สูงสุด 4.1~5.4) วัตต์ คืออะไร?",
    "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_en": "What's the l1 cache of the model with sspec number sl2z3, sl28q (mya0)?",
    "question_th": "แคช l1 ของรุ่นที่มีหมายเลข sspec 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_en": "How many region 4 dates are associated with a region 2 date of July 9, 2007?",
    "question_th": "มีกี่วันที่ของภูมิภาค 4 ที่เกี่ยวข้องกับวันที่ของภูมิภาค 2 เมื่อวันที่ 9 กรกฎาคม พ.ศ. 2550",
    "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_en": "What is the region 1 (Canada) date associated with a region 1 (US) date of January 16, 2007?",
    "question_th": "วันที่ของภูมิภาค 1 (แคนาดา) ที่เกี่ยวข้องกับภูมิภาค 1 (สหรัฐอเมริกา) คือวันที่ 16 มกราคม 2550 คืออะไร",
    "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_en": "What is the region 4 (Aus) date associated with a region 1 (US) date of January 16, 2007?",
    "question_th": "วันที่ของภูมิภาค 4 (Aus) ที่เกี่ยวข้องกับวันที่ของภูมิภาค 1 (US) คือวันที่ 16 มกราคม 2550 คืออะไร",
    "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_en": "What is the region 2 (UK) date associated with a region 4 (Aus) date of July 31, 2008?",
    "question_th": "วันที่ของภูมิภาค 2 (สหราชอาณาจักร) ที่เกี่ยวข้องกับภูมิภาค 4 (Aus) คือวันที่ 31 กรกฎาคม 2551 คืออะไร",
    "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_en": "What is the region 1 (Canada) date associated with a region 2 (UK) date of May 18, 2009?",
    "question_th": "วันที่ของภูมิภาค 1 (แคนาดา) ที่เกี่ยวข้องกับภูมิภาค 2 (สหราชอาณาจักร) คือวันที่ 18 พฤษภาคม 2552 คืออะไร",
    "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_en": "Who was the director for the episode airing on September 24, 1993?",
    "question_th": "ใครเป็นผู้กำกับตอนที่ออกอากาศเมื่อวันที่ 24 กันยายน พ.ศ. 2536?",
    "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_en": "In which series was season 18?",
    "question_th": "ซีรีส์ใดคือซีซั่น 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_en": "What is the title of season 2? ",
    "question_th": "ชื่อเรื่องของซีซั่น 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_en": "What is the brand name associated with a model name e4xxx?",
    "question_th": "ชื่อแบรนด์ที่เกี่ยวข้องกับชื่อรุ่น 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_en": "What is the brand name associated with the model 4x0?",
    "question_th": "ชื่อแบรนด์ที่เกี่ยวข้องกับรุ่น 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_en": "What is the number of cores associated with model name e2xxx?",
    "question_th": "จำนวนคอร์ที่เกี่ยวข้องกับชื่อรุ่น e2xxx คือเท่าใด?",
    "context": "CREATE TABLE table_24099628_1 (cores VARCHAR, model__list_ VARCHAR)"
  },
  {
    "answer": "SELECT tdp FROM table_24099628_1 WHERE model__list_ = \"4x0\"",
    "question_en": "What is the wattage/TDP associated with model name 4x0?",
    "question_th": "วัตต์/TDP ที่เกี่ยวข้องกับชื่อรุ่น 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_en": "When the socket is bga956 and processor is penryn-3m, what is the tdp?",
    "question_th": "เมื่อซ็อกเก็ตเป็น bga956 และโปรเซสเซอร์เป็น penryn-3m 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_en": "Whats the processor for p9xxx?",
    "question_th": "โปรเซสเซอร์สำหรับ 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_en": "What's the l2 cache of the model with TDP of 5.5-10 w?",
    "question_th": "แคช l2 ของรุ่นที่มี TDP 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_en": "What's the model of the processor with BGA479 socket and a 5.5 w TDP?",
    "question_th": "โปรเซสเซอร์ที่มีซ็อกเก็ต BGA479 และ 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_en": "What's the model of the processor with a 5.5 w TDP?",
    "question_th": "โปรเซสเซอร์ที่มี TDP 5.5 w รุ่นอะไรคือรุ่นอะไร",
    "context": "CREATE TABLE table_24099916_1 (model__list_ VARCHAR, tdp VARCHAR)"
  },
  {
    "answer": "SELECT MIN(cores) FROM table_24099916_1",
    "question_en": "What's the smallest number for cores of any of the processor models?",
    "question_th": "จำนวนคอร์ของโปรเซสเซอร์รุ่นใดที่น้อยที่สุดคือจำนวนเท่าใด",
    "context": "CREATE TABLE table_24099916_1 (cores INTEGER)"
  },
  {
    "answer": "SELECT model__list_ FROM table_24101118_1 WHERE processor = \"Yorkfield\" AND brand_name = \"Xeon\"",
    "question_en": "what is the model where the processor is yorkfield and the brand name is xeon?",
    "question_th": "รุ่นใดที่โปรเซสเซอร์คือ yorkfield และชื่อแบรนด์คือ 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_en": "what is the socket that has a brand name of core 2 extreme?",
    "question_th": "ซ็อกเก็ตที่มีชื่อแบรนด์ว่า 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_en": "what is the name of the processor for model x33x0?",
    "question_th": "โปรเซสเซอร์สำหรับรุ่น x33x0 ชื่ออะไร?",
    "context": "CREATE TABLE table_24101118_1 (processor VARCHAR, model__list_ VARCHAR)"
  },
  {
    "answer": "SELECT MIN(before) FROM table_24108789_4",
    "question_en": "What is the earliest number in before?",
    "question_th": "เลขแรกสุดก่อนหน้านี้คือเลขอะไร?",
    "context": "CREATE TABLE table_24108789_4 (before INTEGER)"
  },
  {
    "answer": "SELECT MAX(after) FROM table_24108789_4 WHERE player = \"Steve Stricker\"",
    "question_en": "What is the latest after when the player is Steve Stricker?",
    "question_th": "ล่าสุดเมื่อนักเตะคือ สตีฟ สตริกเกอร์ คืออะไร?",
    "context": "CREATE TABLE table_24108789_4 (after INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT before FROM table_24108789_4 WHERE player = \"Geoff Ogilvy\"",
    "question_en": "List all before numbers when Geoff Ogilvy was playing.",
    "question_th": "แสดงรายการทั้งหมดก่อนหมายเลขเมื่อเจฟฟ์ โอกิลวี่เล่น",
    "context": "CREATE TABLE table_24108789_4 (before VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MIN(events) FROM table_24108789_6 WHERE _number = 7",
    "question_en": "Name the least events for number 7",
    "question_th": "ตั้งชื่อเหตุการณ์ที่น้อยที่สุดสำหรับหมายเลข 7",
    "context": "CREATE TABLE table_24108789_6 (events INTEGER, _number VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(events) FROM table_24108789_6 WHERE points = 3031",
    "question_en": "Name the number of events for 3031",
    "question_th": "ตั้งชื่อจำนวนเหตุการณ์สำหรับ 3031",
    "context": "CREATE TABLE table_24108789_6 (events VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_24108789_6 WHERE events = 22",
    "question_en": "Name the player for 22 events",
    "question_th": "ตั้งชื่อผู้เล่นสำหรับ 22 เหตุการณ์",
    "context": "CREATE TABLE table_24108789_6 (player VARCHAR, events VARCHAR)"
  },
  {
    "answer": "SELECT MIN(points) FROM table_24108789_6 WHERE _number = 6",
    "question_en": "Name the least points for number 6",
    "question_th": "ตั้งชื่อคะแนนน้อยที่สุดสำหรับหมายเลข 6",
    "context": "CREATE TABLE table_24108789_6 (points INTEGER, _number VARCHAR)"
  },
  {
    "answer": "SELECT MAX(_number) FROM table_24108789_6 WHERE player = \"Steve Stricker\"",
    "question_en": "Name the most number for steve stricker",
    "question_th": "บอกชื่อเบอร์ที่มากที่สุดสำหรับสตีฟ สตริกเกอร์",
    "context": "CREATE TABLE table_24108789_6 (_number INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(points) FROM table_24108789_6 WHERE reset_points = 800",
    "question_en": "Name the total number of points for 800 reset",
    "question_th": "ตั้งชื่อจำนวนคะแนนทั้งหมดสำหรับการรีเซ็ต 800 ครั้ง",
    "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_en": "What percentage did kennedy win while coakly won 37.9%",
    "question_th": "เคนเนดี้ชนะกี่เปอร์เซ็นต์ในขณะที่โคกลี่ชนะ 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_en": "How many votes did kennedy win when coakley won 66.2%",
    "question_th": "เคนเนดี้ชนะกี่คะแนนเมื่อโคกลีย์ชนะ 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_en": "What was the percentage of votes for coakley when kennedy won 1.6%",
    "question_th": "เปอร์เซ็นต์การโหวตให้โคกลีย์เมื่อเคนเนดี้ชนะ 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_en": "How many votes did kennedy win when coaklely won 2139 votes?",
    "question_th": "เคนเนดีชนะกี่คะแนนเมื่อ coaklely ชนะ 2,139 คะแนน?",
    "context": "CREATE TABLE table_24115349_4 (kennedy_votes VARCHAR, coakley_votes VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(location) FROM table_24123547_2 WHERE week = 7",
    "question_en": "How many locations did the team play at on week 7?",
    "question_th": "ทีมเล่นกี่แห่งในสัปดาห์ที่ 7",
    "context": "CREATE TABLE table_24123547_2 (location VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT final_score FROM table_24123547_2 WHERE opponent = \"Lions\"",
    "question_en": "What was the result of the games VS the Lions?",
    "question_th": "ผลการแข่งขัน VS สิงห์บลูส์ เป็นอย่างไร?",
    "context": "CREATE TABLE table_24123547_2 (final_score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(date) FROM table_24126518_2 WHERE opponent = \"Alouettes\"",
    "question_en": "Name the number of dates for alouettes",
    "question_th": "ตั้งชื่อจำนวนวันที่สำหรับ alouettes",
    "context": "CREATE TABLE table_24126518_2 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT MIN(attendance) FROM table_24126518_2 WHERE final_score = \"L 36–1\"",
    "question_en": "Name the least attendance for l 36–1",
    "question_th": "ตั้งชื่อผู้เข้าร่วมน้อยที่สุดสำหรับ l 36–1",
    "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_en": "Name the final score for exhibition stadium for september 10",
    "question_th": "แจ้งผลคะแนนสนามนิทรรศการรอบสุดท้ายวันที่ 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_en": "Name the number of record for week 11",
    "question_th": "ตั้งชื่อหมายเลขบันทึกสำหรับสัปดาห์ที่ 11",
    "context": "CREATE TABLE table_24126518_2 (record VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_24126606_2 WHERE week = 12",
    "question_en": "Name the opponent for week 12",
    "question_th": "ตั้งชื่อคู่ต่อสู้ในสัปดาห์ที่ 12",
    "context": "CREATE TABLE table_24126606_2 (opponent VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(opponent) FROM table_24126606_2 WHERE date = \"October 3\"",
    "question_en": "Name the total number of opponent for october 3",
    "question_th": "ตั้งชื่อจำนวนคู่ต่อสู้ทั้งหมดสำหรับวันที่ 3 ตุลาคม",
    "context": "CREATE TABLE table_24126606_2 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT final_score FROM table_24126606_2 WHERE week = 5",
    "question_en": "Name the final score for week 5",
    "question_th": "ตั้งชื่อคะแนนสุดท้ายของสัปดาห์ที่ 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_en": "Who directed episode 28 in the series?",
    "question_th": "ใครเป็นผู้กำกับตอนที่ 28 ในซีรีส์?",
    "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_en": "What in the series number of the episode written by Lauren Gussis?",
    "question_th": "ตอนที่เขียนโดย 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_en": "On how many different dates did the episode directed by Marcos Siega and written by Scott Buck air for the first time?",
    "question_th": "ตอนที่กำกับโดย Marcos Siega และเขียนโดย Scott Buck ออกอากาศครั้งแรกกี่วันที่แตกต่างกัน",
    "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_en": "What's the series number of the episode written by Tim Schlattmann?",
    "question_th": "ตอนที่เขียนโดย 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_en": "Who played in the semi finals matches at the Buick WCT finals?",
    "question_th": "ใครเล่นในการแข่งขันรอบรองชนะเลิศที่รอบชิงชนะเลิศ Buick WCT?",
    "context": "CREATE TABLE table_2413292_1 (semifinal_matches VARCHAR, commercial_name VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_24138601_2 WHERE final_score = \"L 28–15\"",
    "question_en": "Name the date for  l 28–15 ",
    "question_th": " ตั้งชื่อวันที่ l 28–15",
    "context": "CREATE TABLE table_24138601_2 (date VARCHAR, final_score VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_24136365_2 WHERE opponent = \"Tiger-Cats\"",
    "question_en": "When tiger-cats is the opponent what is the location?",
    "question_th": "เมื่อเสือแมวเป็นศัตรูกัน ตำแหน่งไหน?",
    "context": "CREATE TABLE table_24136365_2 (location VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_24136365_2 WHERE week = 4",
    "question_en": "When 4 is the week what is the location?",
    "question_th": "สัปดาห์ที่ 4 คือตำแหน่งใด?",
    "context": "CREATE TABLE table_24136365_2 (location VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_24136814_3 WHERE date = \"September 7\"",
    "question_en": "What was the record for the Argonauts on September 7?",
    "question_th": "บันทึกของ Argonauts เมื่อวันที่ 7 กันยายนคืออะไร?",
    "context": "CREATE TABLE table_24136814_3 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MIN(week) FROM table_24136814_3",
    "question_en": "What is he smallest numbered week?",
    "question_th": "เขาคือสัปดาห์ที่มีเลขน้อยที่สุดคืออะไร?",
    "context": "CREATE TABLE table_24136814_3 (week INTEGER)"
  },
  {
    "answer": "SELECT celli FROM table_2414_1 WHERE section_size = \"20 players\"",
    "question_en": "How many cellos are suggested in the reference with section size for 20 players?",
    "question_th": "แนะนำให้ใช้เชลโลจำนวนกี่เชลโลในการอ้างอิงที่มีขนาดหน้าตัดสำหรับผู้เล่น 20 คน",
    "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_en": "What reference, written by Nelson Riddle, suggests 2 violas?",
    "question_th": "การอ้างอิงใดที่เขียนโดยเนลสัน ริดเดิ้ล กล่าวถึงวิโอลา 2 อัน",
    "context": "CREATE TABLE table_2414_1 (reference VARCHAR, violas VARCHAR, author VARCHAR)"
  },
  {
    "answer": "SELECT MAX(basses) FROM table_2414_1",
    "question_en": "What is the biggest number of basses suggested in either one of the references?",
    "question_th": "จำนวนเบสที่ใหญ่ที่สุดที่แนะนำในข้อมูลอ้างอิงอย่างใดอย่างหนึ่งคือเท่าใด",
    "context": "CREATE TABLE table_2414_1 (basses INTEGER)"
  },
  {
    "answer": "SELECT current_marital_status FROM table_24143253_2 WHERE name = \"Stella Farentino\"",
    "question_en": "What is Stella Farentino's current relationship status?",
    "question_th": "สถานะความสัมพันธ์ปัจจุบันของ Stella Farentino คืออะไร?",
    "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_en": "How many children did Dennis Hawley have at his time of death?",
    "question_th": "เดนนิส ฮอว์ลีย์มีลูกกี่คนในช่วงที่เขาเสียชีวิต",
    "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_en": "How did Stella Farentino die?",
    "question_th": "สเตลล่า ฟาเรนติโน เสียชีวิตอย่างไร?",
    "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_en": "What was the cause of death in the marriage that lasted 28 years? ",
    "question_th": " อะไรเป็นสาเหตุของการเสียชีวิตในชีวิตสมรสที่ยาวนานถึง 28 ปี?",
    "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_en": "How long were Ray Bradbury and his wife married?",
    "question_th": "Ray Bradbury และภรรยาของเขาแต่งงานกันนานแค่ไหน?",
    "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_en": "Name the name for deceased spouse being louis malle",
    "question_th": "ตั้งชื่อคู่สมรสที่เสียชีวิตว่า หลุยส์ มาเล่",
    "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_en": "Name the deceased spouse for length of marriage being 24 years",
    "question_th": "ตั้งชื่อคู่สมรสที่เสียชีวิตตามอายุสมรส 24 ปี",
    "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_en": "Name the decease spouse for carol deluise",
    "question_th": "ตั้งชื่อคู่สมรสที่เสียชีวิตสำหรับแครอลหลงผิด",
    "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_en": "Name the children together for 9 years of marriage",
    "question_th": "ตั้งชื่อลูกด้วยกันครบ 9 ปีแห่งการแต่งงาน",
    "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_en": "Who was the deceased spouse who was married for 4 years?",
    "question_th": "คู่สมรสที่เสียชีวิตซึ่งแต่งงานกันมา 4 ปีคือใคร?",
    "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_en": "Who were the children of Benjamin Harrison?",
    "question_th": "ใครคือลูกของเบนจามิน แฮร์ริสัน?",
    "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_en": "Name the segment 1 for episode # 2/225",
    "question_th": "ตั้งชื่อส่วนที่ 1 สำหรับตอนที่ # 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_en": "Name the lessons taught for episode # 2/205",
    "question_th": "ตั้งชื่อบทเรียนที่สอนในตอนที่ # 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_en": "What state had william bigler (d) as a successor)",
    "question_th": "รัฐใดมีวิลเลียม บิ๊กเลอร์ (ง) เป็นผู้สืบทอด",
    "context": "CREATE TABLE table_2417308_3 (state__class_ VARCHAR, successor VARCHAR)"
  },
  {
    "answer": "SELECT date_successor_seated FROM table_2417330_4 WHERE successor = \"Vacant\"",
    "question_en": "Name the date successor seated for successor being vacant",
    "question_th": "ระบุวันที่ผู้สืบทอดตำแหน่งแทนตำแหน่งที่ว่าง",
    "context": "CREATE TABLE table_2417330_4 (date_successor_seated VARCHAR, successor VARCHAR)"
  },
  {
    "answer": "SELECT vacator FROM table_2417330_4 WHERE district = \"Kentucky 2nd\"",
    "question_en": "Name the vacator for kentucky 2nd",
    "question_th": "ตั้งชื่อผู้ว่างสำหรับรัฐเคนตักกี้ที่ 2",
    "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_en": "Name the successor for election was successfully contested july 30, 1861",
    "question_th": "เสนอชื่อผู้สืบทอดตำแหน่งต่อการเลือกตั้งได้สำเร็จโต้แย้งเมื่อวันที่ 30 กรกฎาคม พ.ศ. 2404",
    "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_en": "Name the successor for vacant and december 3, 1862",
    "question_th": "ตั้งชื่อผู้สืบทอดตำแหน่งว่าง และ 3 ธันวาคม พ.ศ. 2405",
    "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_en": "What was the vacator for georgia 2nd?",
    "question_th": "ผู้ว่างสำหรับจอร์เจียที่ 2 คืออะไร?",
    "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_en": "What was the successor for vacant alabama 3rd?",
    "question_th": "ผู้สืบทอดตำแหน่งของอลาบามาคนที่ 3 ที่ว่างคืออะไร?",
    "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_en": "Who was the successor for vacant louisiana 5th",
    "question_th": "ใครเป็นผู้สืบทอดตำแหน่งของหลุยเซียน่าที่ว่างที่ 5",
    "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_en": "Who were the successors when the date the successors were installed was February 23, 1870?",
    "question_th": "ใครคือผู้สืบทอดเมื่อวันที่ติดตั้งผู้สืบทอดคือวันที่ 23 กุมภาพันธ์ พ.ศ. 2413",
    "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_en": "Who was the vacator when the successor was formally installed on February 1, 1871?",
    "question_th": "ใครคือผู้ว่างงานเมื่อผู้สืบทอดได้รับการติดตั้งอย่างเป็นทางการเมื่อวันที่ 1 กุมภาพันธ์ พ.ศ. 2414?",
    "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_en": "Who was the successor that was formally installed on March 30, 1870?",
    "question_th": "ใครคือผู้สืบทอดที่ได้รับการแต่งตั้งอย่างเป็นทางการเมื่อวันที่ 30 มีนาคม พ.ศ. 2413",
    "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_en": "When did Orville H. Browning (r) succeed?",
    "question_th": "Orville H. Browning (r) ประสบความสำเร็จเมื่อใด",
    "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_en": "List all dates of succession in the state class Missouri (3).",
    "question_th": "ระบุวันที่สืบทอดทั้งหมดในชั้นเรียนรัฐมิสซูรี (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_en": "List the number of vacators when successors were formally installed on June 22, 1868.",
    "question_th": "ระบุจำนวนผู้ว่างเมื่อมีการติดตั้งผู้สืบทอดอย่างเป็นทางการในวันที่ 22 มิถุนายน พ.ศ. 2411",
    "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_en": "List all state classes when successors were formally installed on June 22, 1868.",
    "question_th": "แสดงรายการคลาสของรัฐทั้งหมดเมื่อมีการติดตั้งผู้สืบทอดอย่างเป็นทางการเมื่อวันที่ 22 มิถุนายน พ.ศ. 2411",
    "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_en": "What was the reason for change to the successor that was seated on December 13, 1880?",
    "question_th": "อะไรคือสาเหตุของการเปลี่ยนแปลงผู้สืบทอดตำแหน่งเมื่อวันที่ 13 ธันวาคม พ.ศ. 2423?",
    "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_en": "When the person died May 22, 1895 is the reason for vacancy what is the district?",
    "question_th": "เมื่อผู้นั้นถึงแก่กรรมเมื่อวันที่ 22 พ.ค. 2438 เหตุใดจึงว่าง อำเภอคืออะไร?",
    "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_en": "When frederick remann (r) is the vacator what is the reason for vacancy?",
    "question_th": "เมื่อเฟรดเดอริก เรมันน์ (ขวา) เป็นผู้ว่างงาน อะไรเป็นสาเหตุที่ทำให้ตำแหน่งว่าง?",
    "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_en": "When rudolph kleberg (d) is the successor is the reason for vacancy?",
    "question_th": "เมื่อ rudolph kleberg (d) เป็นผู้สืบทอดคือสาเหตุของตำแหน่งที่ว่าง?",
    "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_en": "When massachusetts 6th is the district what is the reason for vacancy?",
    "question_th": "เมื่อแมสซาชูเซตส์ที่ 6 เป็นเขต เหตุใดจึงว่าง?",
    "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_en": "When rudolph kleberg (d) is the successor what is the date of successors taking office?",
    "question_th": "เมื่อรูดอล์ฟ เคลเบิร์ก (ง) เป็นผู้สืบทอดตำแหน่ง ผู้สืบทอดจะเข้ารับตำแหน่งเมื่อใด",
    "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énez Ynoa\"",
    "question_en": "What geographical region is contestant  laura jiménez ynoa from?",
    "question_th": "ผู้เข้าแข่งขัน ลอร่า จิเมเนซ ยินัว มาจากภูมิภาคใด",
    "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⁄2 in)\"",
    "question_en": "How many hometowns have a  height of m (ft 10 1⁄2 in)?",
    "question_th": "บ้านเกิดมีกี่แห่งที่มีความสูง เมตร (ฟุต 10 1/2 นิ้ว)",
    "context": "CREATE TABLE table_24192031_2 (hometown VARCHAR, height VARCHAR)"
  },
  {
    "answer": "SELECT age FROM table_24192031_2 WHERE height = \"m (ft 3⁄4 in)\"",
    "question_en": "How old is the person with the height of m (ft 3⁄4 in)?",
    "question_th": "คนที่มีส่วนสูงเป็นเมตร (ฟุต 3/4 นิ้ว) อายุเท่าไหร่?",
    "context": "CREATE TABLE table_24192031_2 (age VARCHAR, height VARCHAR)"
  },
  {
    "answer": "SELECT viewers__millions_ FROM table_24212608_1 WHERE broadcast_date = 2010",
    "question_en": "What was the number of viewers in millions for the broadcast from 2010? ",
    "question_th": " จำนวนผู้ชมในการออกอากาศตั้งแต่ปี 2010 เป็นจำนวนเท่าใด",
    "context": "CREATE TABLE table_24212608_1 (viewers__millions_ VARCHAR, broadcast_date VARCHAR)"
  },
  {
    "answer": "SELECT starring FROM table_24212608_1 WHERE episode = 3",
    "question_en": "Who starred in episode 3? ",
    "question_th": " ใครแสดงในตอนที่ 3 บ้าง?",
    "context": "CREATE TABLE table_24212608_1 (starring VARCHAR, episode VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(episode) FROM table_24212608_1 WHERE broadcast_date = 2010",
    "question_en": "How many episodes were broadcast in 2010?",
    "question_th": "ปี 2553 ออกอากาศกี่ตอน?",
    "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_en": "Who was the radio 1 presenter for the broadcast that had 9.73 million viewers? ",
    "question_th": " ใครคือผู้จัดรายการวิทยุ 1 รายการที่มีผู้ชม 9.73 ล้านคน?",
    "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_en": "Name the powertrain for kmd and c40lf",
    "question_th": "ตั้งชื่อระบบส่งกำลังสำหรับ kmd และ 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_en": "Name the division for  detroit diesel series 50egr allison wb-400r",
    "question_th": "ตั้งชื่อแผนกสำหรับดีทรอยต์ดีเซลซีรีส์ 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_en": "Name the manufacturer for 2011",
    "question_th": "ตั้งชื่อผู้ผลิตสำหรับปี 2011",
    "context": "CREATE TABLE table_24193494_3 (manufacturer VARCHAR, order_year VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(location) FROM table_2419754_1 WHERE nickname = \"Billikens\"",
    "question_en": "List the number of locations for the team known as the billikens.",
    "question_th": "ระบุจำนวนสถานที่ของทีมที่เรียกว่าบิลลิเคนส์",
    "context": "CREATE TABLE table_2419754_1 (location VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT MIN(enrollment) FROM table_2419754_1 WHERE location = \"Milwaukee, Wisconsin\"",
    "question_en": "How many people are enrolled at the university in milwaukee, wisconsin",
    "question_th": "มีผู้ลงทะเบียนเรียนที่มหาวิทยาลัยในเมืองมิลวอกี รัฐวิสคอนซิน จำนวนกี่คน",
    "context": "CREATE TABLE table_2419754_1 (enrollment INTEGER, location VARCHAR)"
  },
  {
    "answer": "SELECT MAX(left) FROM table_2419754_1",
    "question_en": "In what year did the teams leave the conference?",
    "question_th": "ทีมออกจากการประชุมในปีใด",
    "context": "CREATE TABLE table_2419754_1 (left INTEGER)"
  },
  {
    "answer": "SELECT institution FROM table_2419754_1 WHERE nickname = \"Tigers\"",
    "question_en": "What university team is referred to as the tigers?",
    "question_th": "ทีมมหาวิทยาลัยใดเรียกว่าเสือ?",
    "context": "CREATE TABLE table_2419754_1 (institution VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT magnitude FROM table_24192190_1 WHERE latitude = \"43.048° N\"",
    "question_en": "When 43.048° n is the latitude what is the magnitude?",
    "question_th": "เมื่อ 43.048° n เป็นละติจูด จะมีขนาดเท่าใด",
    "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_en": "When 9:47:38 is the time (utc) how many measurements of latitude are there?",
    "question_th": "เมื่อ 9:47:38 เป็นเวลา (utc) มีการวัดละติจูดได้กี่ครั้ง?",
    "context": "CREATE TABLE table_24192190_1 (latitude VARCHAR, time__utc_ VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(longitude) FROM table_24192190_1 WHERE latitude = \"42.903° N\"",
    "question_en": "When 42.903° n is the latitude how many measurements of longitude are there?",
    "question_th": "เมื่อ 42.903° n เป็นละติจูด ลองจิจูดวัดได้กี่ครั้ง",
    "context": "CREATE TABLE table_24192190_1 (longitude VARCHAR, latitude VARCHAR)"
  },
  {
    "answer": "SELECT depth FROM table_24192190_1 WHERE time__utc_ = \"11:40:26\"",
    "question_en": "When 11:40:26 is the time (utc) what is the depth?",
    "question_th": "เมื่อ 11:40:26 เป็นเวลา (utc) ความลึกเป็นเท่าใด?",
    "context": "CREATE TABLE table_24192190_1 (depth VARCHAR, time__utc_ VARCHAR)"
  },
  {
    "answer": "SELECT main_presenter FROM table_24224647_2 WHERE year_premiered = 2011",
    "question_en": "Who is every main presenter for the year 2011?",
    "question_th": "ใครคือพรีเซนเตอร์หลักประจำปี 2554?",
    "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_en": "Who is every main presenter for the Estonia region/country?",
    "question_th": "ใครคือผู้นำเสนอหลักสำหรับภูมิภาค/ประเทศเอสโตเนีย",
    "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 = \"Øyvind Mund\"",
    "question_en": "What is the highest year premiered for the TV2 network when main present is øyvind mund?",
    "question_th": "ปีสูงสุดที่ฉายรอบปฐมทัศน์สำหรับเครือข่าย TV2 คือปีใดที่รายการหลักคือ øyvind 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_en": "How many years premiered have Sa Beining as main presenter?",
    "question_th": "กี่ปีที่ซาเป่ยหนิงเป็นพรีเซนเตอร์หลัก?",
    "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_en": "What is every year premiered when Behzat Uighur is main presenter?",
    "question_th": "ทุกปีจะฉายรอบปฐมทัศน์เมื่อ Behzat Uighur เป็นผู้นำเสนอหลักอย่างไร",
    "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_en": "What is the highest year premiered when Benjamin Castaldi is main presenter?",
    "question_th": "ปีใดที่เปิดตัวสูงสุดเมื่อ Benjamin Castaldi เป็นผู้นำเสนอหลัก?",
    "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_en": "Name the episode number for tasers and mind erasers",
    "question_th": "ตั้งชื่อหมายเลขตอนสำหรับปืนช็อตไฟฟ้าและยางลบความคิด",
    "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_en": "Name the original air date for 7 1-07",
    "question_th": "ตั้งชื่อวันออกอากาศเดิม 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_en": "Name the total viewers on hallmark for pilot",
    "question_th": "ตั้งชื่อผู้ชมทั้งหมดบนตราสัญลักษณ์สำหรับโครงการนำร่อง",
    "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_en": "Name the rank on channel mooning and crooning",
    "question_th": "ตั้งชื่ออันดับในช่อง mooning และ 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_en": "Name the rank on channel for pilot",
    "question_th": "ตั้งชื่อช่องสำหรับนักบิน",
    "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_en": "What is the manner of departure for the team racing santander?",
    "question_th": "ลักษณะการจากไปของทีม ราซิ่ง ซานตานเดร์ เป็นอย่างไร?",
    "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_en": "Who replaced on the date of appointment 2 november 2010?",
    "question_th": "ใครเข้ามาแทนที่ในวันที่ได้รับการแต่งตั้ง 2 พฤศจิกายน 2553?",
    "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_en": "What is the team for the position in table 19th?",
    "question_th": "ทีมอันดับที่ 19 ของตารางคือทีมอะไร?",
    "context": "CREATE TABLE table_24231638_3 (team VARCHAR, position_in_table VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_24231638_3 WHERE replaced_by = \"Miroslav Đukić\"",
    "question_en": "What is the team that the replaced by is miroslav đukić?",
    "question_th": "มิโรสลาฟ จูกิช คือทีมอะไร?",
    "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_en": "How many times was the date of vacancy 14 february 2011?",
    "question_th": "ตำแหน่งว่าง 14 กุมภาพันธ์ 2554 มีกี่ครั้ง?",
    "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_en": "what is the date of appointment for the team osasuna?",
    "question_th": "นัดทีมโอซาสึนะวันที่เท่าไหร่คะ?",
    "context": "CREATE TABLE table_24231638_3 (date_of_appointment VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT MIN(l) FROM table_24224991_2",
    "question_en": "What is the lowest amount of L in any season? ",
    "question_th": " L ต่ำที่สุดในฤดูกาลใดคือเท่าไร?",
    "context": "CREATE TABLE table_24224991_2 (l INTEGER)"
  },
  {
    "answer": "SELECT COUNT(vote) FROM table_24233848_2 WHERE finish = \"3rd voted Out Day 9\"",
    "question_en": "Name the total number of votes for 3rd voted out day 9",
    "question_th": "ตั้งชื่อจำนวนคะแนนเสียงทั้งหมดสำหรับการลงคะแนนเสียงครั้งที่ 3 วันที่ 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_en": "Name the eliminated 7th voted out day 21",
    "question_th": "ตั้งชื่อผู้ที่ถูกตัดสิทธิ์คนที่ 7 ที่โหวตออกวันที่ 21",
    "context": "CREATE TABLE table_24233848_2 (eliminated VARCHAR, finish VARCHAR)"
  },
  {
    "answer": "SELECT vote FROM table_24233848_2 WHERE eliminated = \"Thiago\"",
    "question_en": "Name the vote for thiago",
    "question_th": "ตั้งชื่อการโหวตให้ติอาโก",
    "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_en": "Name the vote for 9th voted out day 22",
    "question_th": "ตั้งชื่อการลงคะแนนเสียงครั้งที่ 9 โหวตออกวันที่ 22",
    "context": "CREATE TABLE table_24233848_2 (vote VARCHAR, finish VARCHAR)"
  },
  {
    "answer": "SELECT reward FROM table_24233848_2 WHERE eliminated = \"Hilca\"",
    "question_en": "Name the reward eliminated hilca",
    "question_th": "ตั้งชื่อรางวัลกำจัดฮิลก้า",
    "context": "CREATE TABLE table_24233848_2 (reward VARCHAR, eliminated VARCHAR)"
  },
  {
    "answer": "SELECT exports__us$_mil_ FROM table_24239748_2 WHERE county = \"Vest\"",
    "question_en": "When the country is vest, what were the exports?",
    "question_th": "เมื่อประเทศได้รับสิทธิส่งออกอะไรบ้าง?",
    "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_en": "What was the major version when the webkit version was 528.17?",
    "question_th": "เวอร์ชันหลักคืออะไรเมื่อเวอร์ชัน webkit คือ 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_en": "List major versions released on May 12, 2009, that had a minor version of 3.2.3.",
    "question_th": "แสดงรายการเวอร์ชันหลักที่เผยแพร่เมื่อวันที่ 12 พฤษภาคม พ.ศ. 2552 ซึ่งมีเวอร์ชันรองเป็น 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_en": "What was the minor version released on April 16, 2008?",
    "question_th": "เวอร์ชันรองคืออะไรที่เปิดตัวเมื่อวันที่ 16 เมษายน พ.ศ. 2551",
    "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_en": "List all webkit versions when the major version was Safari 3, and the minor version was 3.1.2.",
    "question_th": "แสดงรายการเวอร์ชัน webkit ทั้งหมดเมื่อเวอร์ชันหลักคือ Safari 3 และเวอร์ชันรองคือ 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_en": "List all OS's with a webkit version of 525.29.1.",
    "question_th": "แสดงรายการ OS ทั้งหมดที่มี webkit เวอร์ชัน 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_en": "What is the webkit version when the minor version was 3.1.2.?",
    "question_th": "เวอร์ชันของ webkit คืออะไรเมื่อเวอร์ชันรองคือ 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_en": "What was the main legion base for the Romans when the notes were \"primigenia goddess of fate. xx in batavi revolt\"?",
    "question_th": "ฐานทัพหลักของชาวโรมันคืออะไรเมื่อข้อความคือ \"เทพีแห่งโชคชะตายุคดึกดำบรรพ์ xx ในการปฏิวัติบาตาวี\"",
    "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_en": "What are the notes during 57 bc caesar?",
    "question_th": "บันทึกในช่วง 57 ปีก่อนคริสตกาลซีซาร์มีอะไรบ้าง?",
    "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_en": "What is the date founded/founder when the emblem was Hercules?",
    "question_th": "วันที่ก่อตั้ง/ก่อตั้งเมื่อสัญลักษณ์คือ 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_en": "What is the main legion base that disbanded 70 xx?",
    "question_th": "ฐานทัพหลักที่ยุบ 70xx คืออะไร?",
    "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_en": "When did svishtov , bulgaria disband?",
    "question_th": "svishtov บัลแกเรีย ยุบวงเมื่อไหร่?",
    "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_en": "when notes are prima italica:raised for aborted caucasus war, when was that founded?",
    "question_th": "เมื่อบันทึกย่อเป็น prima italica:ยกขึ้นเพื่อสงครามคอเคซัสที่ถูกยกเลิก สิ่งนั้นก่อตั้งขึ้นเมื่อใด",
    "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_en": "What are the notes for svishtov , bulgaria?",
    "question_th": "โน้ตของสวิชตอฟ บัลแกเรียมีอะไรบ้าง",
    "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_en": "Name the team ranked 4",
    "question_th": "ประกาศชื่อทีมอันดับที่ 4",
    "context": "CREATE TABLE table_242813_2 (team VARCHAR, overall_rank VARCHAR)"
  },
  {
    "answer": "SELECT league FROM table_242813_2 WHERE strikeouts = 451",
    "question_en": "Name the league for strikeouts being 451",
    "question_th": "ตั้งชื่อลีกสำหรับการหยุดงานเป็น 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_en": "Name the most overall rank for nl/ua league",
    "question_th": "ตั้งชื่ออันดับโดยรวมมากที่สุดสำหรับลีก nl/ua",
    "context": "CREATE TABLE table_242813_2 (overall_rank INTEGER, league VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(pitcher) FROM table_242813_2 WHERE overall_rank = 9",
    "question_en": "Name the total number of pitcher for 9 overall rank",
    "question_th": "ตั้งชื่อจำนวนเหยือกทั้งหมดสำหรับอันดับรวม 9 อันดับ",
    "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_en": "Name the most season for old hoss radbourn",
    "question_th": "ตั้งชื่อฤดูกาลให้มากที่สุดสำหรับเจ้าเก่าแรดบอร์น",
    "context": "CREATE TABLE table_242813_2 (season INTEGER, pitcher VARCHAR)"
  },
  {
    "answer": "SELECT MAX(week) FROM table_24278858_2 WHERE opponent = \"Amsterdam Admirals\"",
    "question_en": "What week did they play the amsterdam admirals?",
    "question_th": "พวกเขาเล่นกับพลเรือเอกอัมสเตอร์ดัมสัปดาห์ไหน?",
    "context": "CREATE TABLE table_24278858_2 (week INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_24278858_2 WHERE week = 8",
    "question_en": "What date did the team play on week 8?",
    "question_th": "สัปดาห์ที่ 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_en": "What country has the most height in the northwestern peak of rysy?",
    "question_th": "ประเทศใดมีความสูงมากที่สุดในยอดเขาไรซีทางตะวันตกเฉียงเหนือ?",
    "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_en": "What are the highest point in latvia",
    "question_th": "จุดสูงสุดในลัตเวียคืออะไร",
    "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_en": "What is the maximum elevation in netherlands?",
    "question_th": "ระดับความสูงสูงสุดในเนเธอร์แลนด์คือเท่าใด",
    "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_en": "In what country is mont sokbaro a highest point",
    "question_th": "ภูเขาซกบาโรเป็นจุดที่สูงที่สุดในประเทศใด",
    "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_en": "how many times was third place held by drnovice?",
    "question_th": "drnovice คว้าอันดับที่ 3 กี่ครั้ง?",
    "context": "CREATE TABLE table_2429942_2 (club VARCHAR, third_place VARCHAR)"
  },
  {
    "answer": "SELECT top_goalscorer FROM table_2429942_2 WHERE season = \"2010-11\"",
    "question_en": "Who is the top goalscorer for the season 2010-11?",
    "question_th": "ใครคือผู้ทำประตูสูงสุดในฤดูกาล 2010-11?",
    "context": "CREATE TABLE table_2429942_2 (top_goalscorer VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT third_place FROM table_2429942_2 WHERE champions = \"Baník Ostrava (1)\"",
    "question_en": "Who had third place when the champions is baník ostrava (1)?",
    "question_th": "ใครได้อันดับที่สามเมื่อแชมป์คือ baník 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_en": "Who was the top goalscorer for season 2001-02?",
    "question_th": "ใครคือผู้ทำประตูสูงสุดในฤดูกาล 2544-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_en": "Who is the runner-up for the season 2008-09?",
    "question_th": "ใครคือรองชนะเลิศในฤดูกาล 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_en": "Who is the top goalscorer for season 1998-99?",
    "question_th": "ใครคือผู้ทำประตูสูงสุดในฤดูกาล 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_en": "Name the written by for john trefor",
    "question_th": "ตั้งชื่อผู้เขียนโดยสำหรับ 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_en": "How many directors worked on the episode with 2.27m (5) is the ratings?",
    "question_th": "มีผู้กำกับกี่คนที่ทำเรตติ้งในตอนนี้ด้วยเรตติ้ง 2.27m (5)",
    "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_en": "What is the title of episode 2?",
    "question_th": "ตอนที่ 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_en": "Who wrote the episode what had the rating 2.27m (5)?",
    "question_th": "ใครเป็นคนเขียนตอนที่มีเรตติ้ง 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_en": "Name the 2013 profit for assets being 11.2",
    "question_th": "ตั้งชื่อกำไรปี 2556 สำหรับสินทรัพย์เป็น 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_en": "Name the assets when the rank is 1435",
    "question_th": "ตั้งชื่อสินทรัพย์เมื่ออันดับคือ 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_en": "Name the number of rank for april 2013 for 2012 ran kbeing 225",
    "question_th": "ตั้งชื่อหมายเลขอันดับเดือนเมษายน 2556 ปี 2555 วิ่ง 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_en": "Name the number of assets for australia",
    "question_th": "ตั้งชื่อจำนวนสินทรัพย์สำหรับออสเตรเลีย",
    "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_en": "What is the position of the player who got 6 (4 in 34.49s) in the 6 atlas stones event?",
    "question_th": "ตำแหน่งของผู้เล่นที่ได้ 6 (4 ใน 34.49 วินาที) ในการแข่งขัน 6 Atlas Stone คืออะไร?",
    "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_en": "Who are all the players from the united states?",
    "question_th": "นักเตะจากอเมริกาคือใคร?",
    "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_en": "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?",
    "question_th": "คะแนนในเหตุการณ์ 6 Atlas Stone ของผู้เล่นที่ได้ 2 (6 ใน 30.89 วินาที) ในเหตุการณ์ 3 Dead Lift คืออะไร?",
    "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_en": "What is the position of the player with a 5 (4 in 32.66s) in the 6 atlas stones event?",
    "question_th": "ตำแหน่งผู้เล่นที่มี 5 (4 ใน 32.66 วินาที) ในการแข่งขัน 6 Atlas Stone คืออะไร?",
    "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_en": "What is the score in the 2 truck pull of the player who got  1 (5 in 33.84s) in the 4 fingals fingers?",
    "question_th": "คะแนนในการดึงรถบรรทุก 2 คันของผู้เล่นที่ได้ 1 (5 ใน 33.84 วินาที) ในนิ้วทั้ง 4 นิ้วเป็นเท่าใด",
    "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_en": "When 0 is the top 10's what is the highest amount of cuts made?",
    "question_th": "เมื่อ 0 อยู่ 10 อันดับแรก จำนวนการตัดสูงสุดคือเท่าใด?",
    "context": "CREATE TABLE table_24330912_1 (cuts_made INTEGER, top_10s VARCHAR)"
  },
  {
    "answer": "SELECT MIN(3 AS rd) FROM table_24330912_1",
    "question_en": "What is the lowest overall amount of times they've been in 3rd?",
    "question_th": "จำนวนครั้งโดยรวมต่ำสุดที่พวกเขาเคยอยู่ในอันดับที่ 3 คือเท่าใด?",
    "context": "CREATE TABLE table_24330912_1 (Id VARCHAR)"
  },
  {
    "answer": "SELECT MIN(money_list_rank) FROM table_24330912_1 WHERE year = 2011",
    "question_en": "When 2011 is the year what is the lowest money list rank?",
    "question_th": "เมื่อ พ.ศ. 2554 เป็นปีที่รายการเงินต่ำสุดอยู่ที่เท่าไร?",
    "context": "CREATE TABLE table_24330912_1 (money_list_rank INTEGER, year VARCHAR)"
  },
  {
    "answer": "SELECT MIN(money_list_rank) FROM table_24330912_1",
    "question_en": "What is the lowest overall money list rank?",
    "question_th": "อันดับรายการเงินโดยรวมต่ำสุดคืออะไร?",
    "context": "CREATE TABLE table_24330912_1 (money_list_rank INTEGER)"
  },
  {
    "answer": "SELECT MIN(tournaments_played) FROM table_24330912_1 WHERE best_finish = \"T3\"",
    "question_en": "When t3 is the best finish what is the lowest amount of tournaments played?",
    "question_th": "เมื่อ T3 จบการแข่งขันได้ดีที่สุด จำนวนทัวร์นาเมนท์ที่เล่นน้อยที่สุดคือเท่าใด?",
    "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 = \"£2,350\"",
    "question_en": "What is the latest amount of won legs in the payoffs when the prize money was £2,350?",
    "question_th": "จำนวนขาที่ชนะล่าสุดในการจ่ายเงินรางวัลคือ 2,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_en": "How many group legs were won with player Mark Dudbridge?",
    "question_th": "ผู้เล่น มาร์ค ดัดบริดจ์ ชนะรอบแบ่งกลุ่มได้กี่รอบ?",
    "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 = \"£21,850\"",
    "question_en": "What is the highest amount of group legs won when the prize money was £21,850?",
    "question_th": "จำนวนขากลุ่มสูงสุดที่ชนะเมื่อเงินรางวัลคือ 21,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 = \"£10,300\"",
    "question_en": "How many play-off legs were won when the prize money was £10,300?",
    "question_th": "ชนะเพลย์ออฟไปกี่นัดเมื่อมีเงินรางวัล 10,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_en": "What is the least amount of playoff legs won?",
    "question_th": "รอบรองชนะเลิศที่ชนะได้น้อยที่สุดคือเท่าไร?",
    "context": "CREATE TABLE table_24334163_1 (Winners INTEGER)"
  },
  {
    "answer": "SELECT directed_by FROM table_24319661_5 WHERE no_in_series = 53",
    "question_en": "Who directed episode 53 in the series?",
    "question_th": "ใครเป็นผู้กำกับตอนที่ 53 ในซีรีส์?",
    "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_en": "What as the production code for the episode directed by Robert Duncan McNeill?",
    "question_th": "รหัสการผลิตสำหรับตอนที่กำกับโดย 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_en": "What episode number of the season had BCW410 as a production code?",
    "question_th": "หมายเลขตอนใดของซีซันที่มี BCW410 เป็นรหัสการผลิต",
    "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_en": "What episode number in the series had 2.77 million U.S. viewers?",
    "question_th": "ซีรีส์เรื่องใดมีผู้ชม 2.77 ล้านคนในสหรัฐฯ",
    "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_en": "Name the most times contested for montgomeryshire",
    "question_th": "ตั้งชื่อเวลาที่มีการโต้แย้งมากที่สุดสำหรับมอนต์โกเมอรีเชียร์",
    "context": "CREATE TABLE table_24329520_4 (times_contested INTEGER, county VARCHAR)"
  },
  {
    "answer": "SELECT fate_in_1832 FROM table_24329520_4 WHERE county = \"Pembrokeshire\"",
    "question_en": "Name the fate in 1832 for pembrokeshire",
    "question_th": "ตั้งชื่อชะตากรรมในปี 1832 สำหรับเพมโบรคเชียร์",
    "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_en": "what is the least number of podiums for a formula BMW Americas series? ",
    "question_th": " จำนวนโพเดียมน้อยที่สุดสำหรับ 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_en": "What is the maximum number of wins in the formula 3 euro series? ",
    "question_th": " จำนวนชัยชนะสูงสุดในซีรีส์ Formula 3 ยูโรคือเท่าใด",
    "context": "CREATE TABLE table_24330803_1 (wins INTEGER, series VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(position) FROM table_24330803_1 WHERE points = \"30\"",
    "question_en": "How many positions were given when 30 points were won? ",
    "question_th": " เมื่อได้รับ 30 คะแนนจะได้รับกี่ตำแหน่ง?",
    "context": "CREATE TABLE table_24330803_1 (position VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT MAX(poles) FROM table_24330803_1 WHERE season = 2011",
    "question_en": "How many pole positions were there for the 2011 season? ",
    "question_th": " มีตำแหน่งโพลโพซิชั่นกี่ตำแหน่งในฤดูกาล 2011?",
    "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_en": "List the tournament that kent state won?",
    "question_th": "รายชื่อทัวร์นาเมนต์ที่รัฐเคนท์ชนะ?",
    "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_en": "What team won the regular season when georgia state won the tournament?",
    "question_th": "ทีมใดชนะในฤดูกาลปกติเมื่อรัฐจอร์เจียชนะการแข่งขัน?",
    "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_en": "In what city did oklahoma win the tournament.",
    "question_th": "โอคลาโฮมาชนะการแข่งขันในเมืองใด",
    "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_en": "List the number of tournament winners when iona , siena & niagara won in the regular season.",
    "question_th": "ระบุจำนวนผู้ชนะการแข่งขันเมื่อ iona , siena & niagara ชนะในฤดูกาลปกติ",
    "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¹_part_of = \"Amtrak\"",
    "question_en": "Name the real life for eventual outcome is amtrak",
    "question_th": "ตั้งชื่อชีวิตจริงสำหรับผลลัพธ์สุดท้ายคือแอมแทร็ก",
    "context": "CREATE TABLE table_243664_1 (real_life_eventual_outcome VARCHAR, currently¹_part_of VARCHAR)"
  },
  {
    "answer": "SELECT real_life_years_of_operation FROM table_243664_1 WHERE currently¹_part_of = \"Amtrak\"",
    "question_en": "Name the real life years of operation for amtrak",
    "question_th": "ตั้งชื่อปีในชีวิตจริงของการดำเนินงานของแอมแทร็ก",
    "context": "CREATE TABLE table_243664_1 (real_life_years_of_operation VARCHAR, currently¹_part_of VARCHAR)"
  },
  {
    "answer": "SELECT game_cost FROM table_243664_1 WHERE railroad = \"Chicago and North Western\"",
    "question_en": "Name the game coast for chicago and north western",
    "question_th": "ตั้งชื่อชายฝั่งของเกมสำหรับชิคาโกและตะวันตกเฉียงเหนือ",
    "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_en": "Name the game cost for  merged with new york central to form penn central",
    "question_th": "ตั้งชื่อต้นทุนเกมสำหรับการรวมกับ new york central เพื่อสร้าง 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_en": "What is the minimum 2007 USD in Kabardino-Balkaria?",
    "question_th": "ขั้นต่ำคือเท่าใด 2007 USD ใน 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_en": "What is every amount for weight lost if the starting weight is 97.4?",
    "question_th": "น้ำหนักที่หายไปทุกจำนวนคือเท่าใด หากน้ำหนักเริ่มต้นคือ 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_en": "What is the starting weight if weight lost is 54.6?",
    "question_th": "น้ำหนักเริ่มต้นคือเท่าไรหากน้ำหนักที่ลดลงคือ 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_en": "What is the final weight for contestant Chris?",
    "question_th": "น้ำหนักสุดท้ายของผู้แข่งขันคริสคือเท่าไร?",
    "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_en": "How many times did the sounddock series II aux in?",
    "question_th": "sounddock series II aux เข้ากี่ครั้ง?",
    "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_en": "Was the sounddock series I v2 iphone certified?",
    "question_th": "sounddock series I v2 iphone ได้รับการรับรองหรือไม่",
    "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_en": "How many connections aux in using FIrewire?",
    "question_th": "มีกี่การเชื่อมต่อ aux ในการใช้ 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_en": "how many video out connections does the sounddock portable have?",
    "question_th": "Sounddock Portable มีการเชื่อมต่อวิดีโอเอาท์จำนวนเท่าใด",
    "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_en": "Does the sounddock series I v2 have dual voltage?",
    "question_th": "sounddock series I v2 มีแรงดันไฟฟ้าคู่หรือไม่",
    "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_en": "What type of dock connection does the sounddock series III have? ",
    "question_th": " sounddock series III มีการเชื่อมต่อด็อกประเภทใด?",
    "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_en": "Where was the game played that started at 7:00 p.m.?",
    "question_th": "เกมที่เล่นเริ่มเวลา 19.00 น. อยู่ที่ไหน?",
    "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_en": "how many varsity teams are in west roxbury, ma?",
    "question_th": "มีทีมตัวแทนกี่ทีมในเวสต์ร็อกซ์เบอรี แม่?",
    "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_en": "what is the mascot of st. paul's school? ",
    "question_th": " ตัวนำโชคของเซนต์คืออะไร โรงเรียนของพอลเหรอ?",
    "context": "CREATE TABLE table_2439728_1 (mascot VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_2439728_1 WHERE mascot = \"Dragons\"",
    "question_en": "where are dragons used as mascots?",
    "question_th": "มังกรถูกใช้เป็นมาสคอตที่ไหน?",
    "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_en": "when was lawrence academy at groton established? ",
    "question_th": "Lawrence Academy ที่ Groton ก่อตั้งขึ้นเมื่อใด",
    "context": "CREATE TABLE table_2439728_1 (founded INTEGER, school VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_2439728_1 WHERE location = \"Milton, MA\"",
    "question_en": "name the school located at Milton, ma.",
    "question_th": "ตั้งชื่อโรงเรียนที่ตั้งอยู่ที่มิลตัน รัฐแมสซาชูเซตส์",
    "context": "CREATE TABLE table_2439728_1 (school VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(location) FROM table_2439728_1 WHERE varsity_teams = 17",
    "question_en": "how many places have 17 varsity teams?",
    "question_th": "มีทีมตัวแทน 17 ทีมกี่แห่ง?",
    "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_en": "Which episode had bbc ranking and canle ranking of n/a?",
    "question_th": "ตอนไหนมีอันดับ BBC และ Canle Rank 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_en": "List the number of bbc rankings with cable rankings of 6.",
    "question_th": "แสดงรายการจำนวนการจัดอันดับ BBC ด้วยอันดับเคเบิลที่ 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_en": "List the number of viewers when the cable rank for Russell Howard's Good New was 5.",
    "question_th": "ระบุจำนวนผู้ชมเมื่ออันดับเคเบิลสำหรับ Good New ของ Russell Howard คือ 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_en": "How many individuals watched the show that had a bbc ranking of 6?",
    "question_th": "มีกี่คนที่ดูรายการที่มีอันดับ BBC อยู่ที่ 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_en": "How many times did episode number 8 air?",
    "question_th": "ตอนที่ 8 ออกอากาศกี่ครั้ง?",
    "context": "CREATE TABLE table_24399615_5 (cable_rank VARCHAR, episode_no VARCHAR)"
  },
  {
    "answer": "SELECT airdate FROM table_24399615_5 WHERE episode_no = 6",
    "question_en": "When did episode number 6 air?",
    "question_th": "ตอนที่ 6 ออกอากาศเมื่อไหร่?",
    "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_en": "How many items are listed under viewers column when the bbd three weekly ranking was 1?",
    "question_th": "มีกี่รายการที่อยู่ในคอลัมน์ผู้ชมเมื่อการจัดอันดับ bbd three รายสัปดาห์อยู่ที่ 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_en": "What episode number had a cable ranking of 8?",
    "question_th": "หมายเลขตอนใดมีอันดับเคเบิลอยู่ที่ 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_en": "What date did the episode air that had n/a for it's bbc three weekly ranking?",
    "question_th": "ตอนที่ออกอากาศโดยไม่มีการจัดอันดับ BBC 3 สัปดาห์ออกอากาศเมื่อใด",
    "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_en": "What date did the episode air that had a ranking of 17 for cable?",
    "question_th": "ตอนที่ออกอากาศด้วยอันดับ 17 ของเคเบิลทีวีคือวันไหน?",
    "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_en": "When 3 is the bbc three weekly ranking what is the airdate?",
    "question_th": "เมื่อ 3 คือ BBC Three ประจำสัปดาห์ ออกอากาศวันไหน?",
    "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_en": "When 656000 is the amount of viewers and n/a is the cable rank what is the airdate?",
    "question_th": "เมื่อ 656000 คือจำนวนคนดู และ n/a คืออันดับของเคเบิลทีวี ออนแอร์คือวันไหน?",
    "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_en": "List the states that have entry times of 49years, 29days",
    "question_th": "รายชื่อรัฐที่มีเวลาเข้า 49 ปี 29 วัน",
    "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_en": "Of which part does congressman dick clark belong to?",
    "question_th": "สมาชิกสภาดิ๊ก คลาร์ก อยู่ในส่วนใด?",
    "context": "CREATE TABLE table_24415627_2 (party VARCHAR, senator VARCHAR)"
  },
  {
    "answer": "SELECT entered_senate FROM table_24415627_2 WHERE senator = \"Joseph Tydings\"",
    "question_en": "On what date did congressman joseph tydings enter take his seat?",
    "question_th": "สมาชิกสภาคองเกรส โจเซฟ ไทดิงส์ เข้ารับตำแหน่งวันไหน?",
    "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_en": "What are the lowest points when poles were 0 and races were 10?",
    "question_th": "อะไรคือจุดต่ำสุดเมื่อโพลเป็น 0 และการแข่งขันเป็น 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_en": "What was the highest number of points when flaps were 0?",
    "question_th": "จำนวนคะแนนสูงสุดเมื่อปีกนกเป็น 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_en": "Who played 20 questions during the issue in which Pamela Horton is on the cover?",
    "question_th": "ใครเล่น 20 คำถามในประเด็นที่พาเมล่า ฮอร์ตันขึ้นปก?",
    "context": "CREATE TABLE table_24425491_3 (cover_model VARCHAR)"
  },
  {
    "answer": "SELECT frequency FROM table_24418525_1 WHERE power_kw = \"5kW\"",
    "question_en": "When the power kw is 5kw, what is the frequency?",
    "question_th": "เมื่อกำลังไฟฟ้า kw อยู่ที่ 5kw ความถี่จะเป็นเท่าใด?",
    "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_en": "when coverage is dumaguete central visayas region, what is the callsign?",
    "question_th": "เมื่อครอบคลุมถึงภูมิภาค dumaguete central visayas สัญญาณเรียกคืออะไร?",
    "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_en": "How much power covers dumaguete central visayas region?",
    "question_th": "อำนาจครอบคลุมเท่าใดในภูมิภาคดูมาเกเตวิซายาสกลาง?",
    "context": "CREATE TABLE table_24418525_1 (power_kw VARCHAR, coverage VARCHAR)"
  },
  {
    "answer": "SELECT frequency FROM table_24418525_1 WHERE coverage = \"Mega Manila\"",
    "question_en": "What frequency is mega manila set to?",
    "question_th": "Mega Manila ตั้งความถี่ไว้ที่เท่าไร?",
    "context": "CREATE TABLE table_24418525_1 (frequency VARCHAR, coverage VARCHAR)"
  },
  {
    "answer": "SELECT original_air_date FROM table_24425976_2 WHERE production_code = \"108\"",
    "question_en": "What original air date was for the episode with production code of 108?",
    "question_th": "ตอนแรกออกอากาศตอนแรกรหัสการผลิต 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_en": "How many production codes are there for episode 10 in the season?",
    "question_th": "ตอนที่ 10 ซีซั่นนี้มีรหัสการผลิตกี่รหัส?",
    "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_en": "What date did the episode with code 110 originally air?",
    "question_th": "ตอนรหัส 110 เดิมออกอากาศวันไหนครับ?",
    "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_en": "What is the name of the episode with a production code of 107?",
    "question_th": "ตอนรหัสการผลิต 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_en": "How many episodes in the series has a production code of 111?",
    "question_th": "ซีรีส์มีทั้งหมดกี่ตอนรหัสการผลิต 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_en": "Name the total number of payout for december 28, 2009",
    "question_th": "ตั้งชื่อจำนวนการจ่ายเงินทั้งหมดสำหรับวันที่ 28 ธันวาคม 2552",
    "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_en": "Name the payout for espn for music city bowl",
    "question_th": "ตั้งชื่อการจ่ายเงินสำหรับ espn สำหรับ 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_en": "Name the date for raymond james stadium",
    "question_th": "ตั้งชื่อวันที่สนามเรย์มอนด์ เจมส์",
    "context": "CREATE TABLE table_24427210_1 (date VARCHAR, stadium VARCHAR)"
  },
  {
    "answer": "SELECT original_air_date FROM table_24425976_7 WHERE season = 4",
    "question_en": "What date did episode 4 in the season originally air?",
    "question_th": "ตอนที่ 4 ของซีซั่นเดิมออกอากาศวันไหนคะ?",
    "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_en": "What date did episode 115 in the series originally air?",
    "question_th": "ตอนที่ 115 ของซีรีส์เดิมออกอากาศวันไหน?",
    "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_en": "What was the 2nd leg for team #1 River Plate?",
    "question_th": "เลกที่ 2 ของทีม #1 ริเวอร์เพลท คืออะไร?",
    "context": "CREATE TABLE table_24426072_1 (team__number1 VARCHAR)"
  },
  {
    "answer": "SELECT 2 AS nd_leg FROM table_24426072_1 WHERE team__number2 = \"Fluminense\"",
    "question_en": "What was team number 2's Fluminense's 2nd leg?",
    "question_th": "เลกที่ 2 ของทีมหมายเลข 2 ฟลูมิเนนเซ่ คืออะไร?",
    "context": "CREATE TABLE table_24426072_1 (team__number2 VARCHAR)"
  },
  {
    "answer": "SELECT MAX(seed) FROM table_24431264_16 WHERE player = \"David Ferrer\"",
    "question_en": "What was david ferrer seeded?",
    "question_th": "เดวิด เฟอร์เรอร์ ปลูกฝังอะไร?",
    "context": "CREATE TABLE table_24431264_16 (seed INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_24431264_16 WHERE points = 1420",
    "question_en": "What player had 1420 points coming in?",
    "question_th": "ผู้เล่นคนไหนได้ 1420 แต้มเข้ามา?",
    "context": "CREATE TABLE table_24431264_16 (player VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(points) AS won FROM table_24431264_16 WHERE player = \"Victor Hănescu\"",
    "question_en": "How many players named victor hănescu played?",
    "question_th": "ผู้เล่นที่ชื่อ วิคเตอร์ ฮาเนสคู ลงเล่นกี่คน?",
    "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_en": "Name the kurdistan democratic party for kurdistan list being 10",
    "question_th": "ตั้งชื่อพรรคประชาธิปไตยเคอร์ดิสถานสำหรับรายชื่อเคอร์ดิสถานเป็น 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_en": "Name the most kirdistan list for diyala",
    "question_th": "ตั้งชื่อรายชื่อชาวเมืองที่มากที่สุดสำหรับ Diyala",
    "context": "CREATE TABLE table_24440361_1 (total_kurdistan_list INTEGER, governorate VARCHAR)"
  },
  {
    "answer": "SELECT MIN(total_kurdistan_list) FROM table_24440361_1",
    "question_en": "Name the least total kurdistan list",
    "question_th": "ตั้งชื่อรายการเคอร์ดิสถานรวมน้อยที่สุด",
    "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_en": "Who won 3rd place when the mutya ng pilipinas winner was  was rochelle romero ong?",
    "question_th": "ใครได้อันดับที่ 3 เมื่อผู้ชนะ มุตยา งพิลิปินัส คือ โรเชล โรเมโร ออง?",
    "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_en": "List the number of years where ritchie ocampo was the mutya ng pilipinas winner.",
    "question_th": "ระบุจำนวนปีที่ ritchie ocampo เป็นผู้ชนะ mutya ng pilipinas",
    "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_en": "Name the number of awardees for english and hindi",
    "question_th": "ตั้งชื่อจำนวนผู้ได้รับรางวัลสำหรับภาษาอังกฤษและภาษาฮินดี",
    "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_en": "Name the name of award for zubeen garg",
    "question_th": "ตั้งชื่อชื่อรางวัล 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_en": "Name the awardee for best editing",
    "question_th": "ตั้งชื่อผู้ได้รับรางวัลสาขาตัดต่อยอดเยี่ยม",
    "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_en": "Name the number of awardees for  best cinematography",
    "question_th": "ระบุจำนวนผู้ได้รับรางวัลสาขาภาพยนตร์ยอดเยี่ยม",
    "context": "CREATE TABLE table_24446718_7 (awardee_s_ VARCHAR, name_of_award VARCHAR)"
  },
  {
    "answer": "SELECT MIN(flaps) FROM table_24466191_1",
    "question_en": "Name the least flaps",
    "question_th": "ตั้งชื่ออวัยวะเพศหญิงน้อยที่สุด",
    "context": "CREATE TABLE table_24466191_1 (flaps INTEGER)"
  },
  {
    "answer": "SELECT MAX(poles) FROM table_24466191_1 WHERE series = \"Macau Grand Prix\"",
    "question_en": "Name th most poles for macau grand prix",
    "question_th": "ตั้งชื่อโพลมากที่สุดสำหรับมาเก๊ากรังด์ปรีซ์",
    "context": "CREATE TABLE table_24466191_1 (poles INTEGER, series VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(races) FROM table_24466191_1 WHERE position = \"15th\"",
    "question_en": "Name the total number of races for 15th position",
    "question_th": "ตั้งชื่อจำนวนการแข่งขันทั้งหมดสำหรับอันดับที่ 15",
    "context": "CREATE TABLE table_24466191_1 (races VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT MAX(races) FROM table_24466191_1 WHERE flaps > 2.0",
    "question_en": "Name the most races for flaps larger than 2.0",
    "question_th": "ตั้งชื่อเผ่าพันธุ์ส่วนใหญ่สำหรับปีกนกที่มีขนาดใหญ่กว่า 2.0",
    "context": "CREATE TABLE table_24466191_1 (races INTEGER, flaps INTEGER)"
  },
  {
    "answer": "SELECT COUNT(poles) FROM table_24466191_1 WHERE position = \"15th\"",
    "question_en": "Name the number of poles for 15th position",
    "question_th": "ตั้งชื่อจำนวนเสาตำแหน่งที่ 15",
    "context": "CREATE TABLE table_24466191_1 (poles VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_24466191_1 WHERE season = 2010",
    "question_en": "Name the team for season 2010",
    "question_th": "ตั้งชื่อทีมฤดูกาล 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_en": "Name the air date for  jay j. demopoulos",
    "question_th": "ตั้งชื่อวันออกอากาศให้เจย์เจ เดโมปูลอส",
    "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_en": "At which location did 29753 fans show up to watch the game?",
    "question_th": "แฟนบอล 29,753 คน เข้าชมเกม ณ สถานที่ใด?",
    "context": "CREATE TABLE table_24481478_1 (game_site VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT team_record FROM table_24481478_1 WHERE week = 7",
    "question_en": "What was the game record during week 7?",
    "question_th": "บันทึกเกมในช่วงสัปดาห์ที่ 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_en": "What time did the game start on saturday, april 20?",
    "question_th": "เกมเริ่มกี่โมงในวันเสาร์ที่ 20 เมษายน?",
    "context": "CREATE TABLE table_24481478_1 (kickoff VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MIN(week) FROM table_24481478_1 WHERE team_record = \"7–2\"",
    "question_en": "In which week was the team record 7–2?",
    "question_th": "บันทึกของทีม 7–2 ในสัปดาห์ใด",
    "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_en": "How man fans showed up to watch the game versus the raleigh-durham skyhawks?",
    "question_th": "แฟนๆ มาดูเกมกับทีมราลี-เดอแรม สกายฮอว์คได้อย่างไร?",
    "context": "CREATE TABLE table_24481478_1 (attendance INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT disposable_usd_growth FROM table_24486462_1 WHERE rank = 26",
    "question_en": "If the rank is 26, what is the disposable USD growth?",
    "question_th": "หากอันดับที่ 26 การเติบโตของ USD แบบใช้แล้วทิ้งจะเป็นเท่าใด",
    "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_en": "What country has a compulsory deduction of 29.3%?",
    "question_th": "ประเทศใดบังคับหักลดหย่อน 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_en": "What is Australia's Disposable USD growth?",
    "question_th": "การเติบโตของ USD แบบใช้แล้วทิ้งของออสเตรเลียเป็นอย่างไร",
    "context": "CREATE TABLE table_24486462_1 (disposable_usd_growth INTEGER, country VARCHAR)"
  },
  {
    "answer": "SELECT MIN(disposable_usd_2011) FROM table_24486462_1",
    "question_en": "What is the lowest disposable USD 2011?",
    "question_th": "USD ที่ใช้แล้วทิ้งต่ำสุดในปี 2554 คือเท่าใด",
    "context": "CREATE TABLE table_24486462_1 (disposable_usd_2011 INTEGER)"
  },
  {
    "answer": "SELECT MAX(minutes) FROM table_24477075_1 WHERE starts = 12",
    "question_en": "Name the most minutes and starts being 12",
    "question_th": "ตั้งชื่อนาทีที่มากที่สุดและเริ่มเป็น 12",
    "context": "CREATE TABLE table_24477075_1 (minutes INTEGER, starts VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_24477075_1 WHERE minutes = 132",
    "question_en": "Name the position for 132 minutes",
    "question_th": "ขึ้นชื่อตำแหน่ง 132 นาที",
    "context": "CREATE TABLE table_24477075_1 (position VARCHAR, minutes VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_24489942_10 WHERE name = \"Thomas Morgenstern\"",
    "question_en": "Name the rank for thomas morgenstern",
    "question_th": "ตั้งชื่อยศของโทมัส มอร์เกนสเติร์น",
    "context": "CREATE TABLE table_24489942_10 (rank VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(rank) FROM table_24489942_10 WHERE nationality = \"Switzerland\"",
    "question_en": "Name the rank for switzerland",
    "question_th": "ตั้งชื่ออันดับของสวิตเซอร์แลนด์",
    "context": "CREATE TABLE table_24489942_10 (rank VARCHAR, nationality VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_24489942_10 WHERE nationality = \"Switzerland\"",
    "question_en": "Name the points for switzerland",
    "question_th": "ตั้งชื่อคะแนนสำหรับสวิตเซอร์แลนด์",
    "context": "CREATE TABLE table_24489942_10 (points VARCHAR, nationality VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_24489942_10 WHERE name = \"Thomas Morgenstern\"",
    "question_en": "Name the points for thomas morgenstern",
    "question_th": "ตั้งชื่อประเด็นให้โทมัส มอร์เกนสเติร์น",
    "context": "CREATE TABLE table_24489942_10 (points VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT appointed FROM table_24490665_1 WHERE name = \"Jack Watson\"",
    "question_en": "When was jack watson appointed?",
    "question_th": "แจ็ค วัตสัน ได้รับการแต่งตั้งเมื่อใด?",
    "context": "CREATE TABLE table_24490665_1 (appointed VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT launched FROM table_24496403_1 WHERE ship = \"Carysfort\"",
    "question_en": "When was the Carysfort launched?",
    "question_th": "Carysfort เปิดตัวเมื่อใด?",
    "context": "CREATE TABLE table_24496403_1 (launched VARCHAR, ship VARCHAR)"
  },
  {
    "answer": "SELECT launched FROM table_24496403_1 WHERE disposition = \"Stokers' training ship\"",
    "question_en": "When was the stokers' training ship launched?",
    "question_th": "เรือฝึกของสโตกเกอร์เปิดตัวเมื่อใด?",
    "context": "CREATE TABLE table_24496403_1 (launched VARCHAR, disposition VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(completed) FROM table_24496403_1 WHERE ship = \"Carysfort\"",
    "question_en": "How many ships were named Carysfort?",
    "question_th": "มีเรือกี่ลำชื่อ 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_en": "What is the background of the person fired in week 5?",
    "question_th": "ภูมิหลังของบุคคลที่ถูกไล่ออกในสัปดาห์ที่ 5 คืออะไร?",
    "context": "CREATE TABLE table_24501530_1 (background VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_24501530_1 WHERE hometown = \"Maylands, Western Australia\"",
    "question_en": "What was the result of the player from Maylands, Western Australia?",
    "question_th": "ผลการแข่งขันของนักเตะจากเมืองเมย์แลนด์ รัฐเวสเทิร์นออสเตรเลีย เป็นอย่างไร?",
    "context": "CREATE TABLE table_24501530_1 (result VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(age) FROM table_24501530_1 WHERE candidate = \"Amy Cato\"",
    "question_en": "How many ages for player Amy Cato?",
    "question_th": "ผู้เล่น 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_en": "What is the name of the player from Maylands, Western Australia?",
    "question_th": "นักเตะจากเมืองเมย์แลนด์ รัฐเวสเทิร์นออสเตรเลียชื่ออะไร",
    "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_en": "How many age figures for the player fired in week 6?",
    "question_th": "ผู้เล่นถูกไล่ออกในสัปดาห์ที่ 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_en": "What was the latitude that had a UTC time of 18:19:36?",
    "question_th": "ละติจูดที่มีเวลา UTC คือ 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_en": "What is the depth of the aftershock at 18:00:22?",
    "question_th": "อาฟเตอร์ช็อก ณ เวลา 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_en": "Name the team for susan bates",
    "question_th": "ตั้งชื่อทีมให้ซูซาน เบตส์",
    "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_en": "Name the truck for eric phillips",
    "question_th": "ตั้งชื่อรถบรรทุกให้เอริค ฟิลลิปส์",
    "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_en": "Name the listed owner for mike garvey",
    "question_th": "ตั้งชื่อเจ้าของรายชื่อของไมค์ การ์วีย์",
    "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_en": "Name the least listed owner for pete raymer",
    "question_th": "ตั้งชื่อเจ้าของรายชื่อน้อยที่สุดของ 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_en": "Name the crew chief for rhonda thorson",
    "question_th": "ตั้งชื่อหัวหน้าลูกเรือของรอนดา ธอร์สัน",
    "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_en": "What is the production code for episode 3 in the season?",
    "question_th": "รหัสการผลิตตอนที่ 3 ของซีซั่นคืออะไร?",
    "context": "CREATE TABLE table_2453243_3 (production_code INTEGER, no_in_season VARCHAR)"
  },
  {
    "answer": "SELECT MIN(match2) FROM table_24538140_2",
    "question_en": "What is the lowest score of all games for match 2?",
    "question_th": "คะแนนต่ำสุดของเกมทั้งหมดสำหรับนัดที่ 2 คือเท่าไร?",
    "context": "CREATE TABLE table_24538140_2 (match2 INTEGER)"
  },
  {
    "answer": "SELECT MAX(match2) FROM table_24538140_2 WHERE match4 = 0 AND total = 5",
    "question_en": "What is the highest score for match 2 where the score for match 4 is 0 and the total score is 5?",
    "question_th": "อะไรคือคะแนนสูงสุดสำหรับคู่ที่ 2 โดยที่คะแนนสำหรับคู่ที่ 4 คือ 0 และคะแนนรวมคือ 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_en": "What is the score for match 1 for the team Eastern Tigers?",
    "question_th": "สกอร์นัดที่ 1 ของทีม อีสเทิร์น ไทเกอร์ส เป็นอย่างไร?",
    "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_en": "How many sockets are listed that have a brand name of \"Core i3-2xx7m\"?",
    "question_th": "มีกี่ซ็อกเก็ตที่มีชื่อแบรนด์ \"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_en": "What is the i/o bus for the brand name Core i3-21xx?",
    "question_th": "i/o bus สำหรับแบรนด์ 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_en": "What i/o buses are associated with the brand name Core i3-21xxt?",
    "question_th": "i/o บัสใดที่เกี่ยวข้องกับชื่อแบรนด์ 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_en": "What is the codename for the Core i3-32xxt?",
    "question_th": "ชื่อรหัสสำหรับ 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_en": "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?",
    "question_th": "บัส i/o ใดที่เกี่ยวข้องกับซ็อกเก็ต LGA 1155 ชื่อรหัสของ Sandy Bridge (เดสก์ท็อป) และชื่อแบรนด์ของ 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_en": "What is the sockets associated with a brand name of Core i3-3xx0m?",
    "question_th": "ซ็อกเก็ตที่เกี่ยวข้องกับชื่อแบรนด์ของ 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_en": "Who was drafted by the calgary stampeders?",
    "question_th": "ใครถูกร่างโดยผู้แตกตื่นที่คาลการี?",
    "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_en": "Where was the player from se missouri state drafted?",
    "question_th": "ผู้เล่นจากรัฐมิสซูรีถูกเกณฑ์ทหารที่ไหน?",
    "context": "CREATE TABLE table_24540893_6 (pick__number VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_24540893_6 WHERE school = \"Kent State\"",
    "question_en": "What position does the player from kent state play?",
    "question_th": "นักเตะเคนท์สเตทเล่นตำแหน่งไหนครับ?",
    "context": "CREATE TABLE table_24540893_6 (position VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_24540893_6 WHERE position = \"RB\"",
    "question_en": "What school did the rb drafted attend?",
    "question_th": "rb ร่างเข้าเรียนที่โรงเรียนใด",
    "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_en": "What numbered pick attended western ontario and is an OL?",
    "question_th": "ตัวเลือกหมายเลขใดที่เข้าร่วมออนแทรีโอตะวันตกและเป็น 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_en": "How many players attended SE missouri state?",
    "question_th": "มีผู้เล่นกี่คนที่เข้าร่วมรัฐมิสซูรีของ SE",
    "context": "CREATE TABLE table_24540893_6 (position VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT pole_position FROM table_24547593_1 WHERE circuit = \"Knockhill\"",
    "question_en": "Who was in the pole position for knockhill?",
    "question_th": "ใครอยู่ในตำแหน่งโพลโพซิชั่นของน็อกฮิลล์?",
    "context": "CREATE TABLE table_24547593_1 (pole_position VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(date) FROM table_24547593_1 WHERE circuit = \"Knockhill\"",
    "question_en": "How many dates was knockhill?",
    "question_th": "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_en": "Name the l3 cache for core i7-2xxxqe, i7-26xxqm, i7-27xxqm",
    "question_th": "ตั้งชื่อแคช l3 สำหรับ 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_en": "Who had most laps led at Chicagoland speedway? ",
    "question_th": " ใครมีรอบมากที่สุดที่สนามแข่งรถ Chicagoland?",
    "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_en": "In what race did Buddy Rice hav fastest lap? ",
    "question_th": " Buddy Rice มีรอบเร็วที่สุดในการแข่งขันใด?",
    "context": "CREATE TABLE table_2454550_1 (race_name VARCHAR, fastest_lap VARCHAR)"
  },
  {
    "answer": "SELECT track FROM table_2454550_1 WHERE date = \"March 19\"",
    "question_en": "On what tra k was the march 19 race held? ",
    "question_th": " การแข่งขันวันที่ 19 มีนาคมจัดขึ้นที่จุดใด?",
    "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_en": "On what track is the Argent mortgage Indy 300 held? ",
    "question_th": " การจำนอง Argent Indy 300 จัดขึ้นในเส้นทางใด?",
    "context": "CREATE TABLE table_2454550_1 (track VARCHAR, race_name VARCHAR)"
  },
  {
    "answer": "SELECT fastest_lap FROM table_2454550_1 WHERE location = \"Phoenix, Arizona\"",
    "question_en": "who held the fastes lap in Phoenix, Arizona? ",
    "question_th": " ใครเป็นคนถือรอบเร็วในฟีนิกซ์ รัฐแอริโซนา?",
    "context": "CREATE TABLE table_2454550_1 (fastest_lap VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(player) FROM table_24549777_1 WHERE high_checkout = 84",
    "question_en": "How man players checked out at 84?",
    "question_th": "ผู้เล่นชายเช็คเอาท์ที่ 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_en": "How man 3-dart averages did gary anderson have?",
    "question_th": "Gary Anderson มีค่าเฉลี่ยลูกดอก 3 ลูกเท่าไร?",
    "context": "CREATE TABLE table_24549777_1 (player VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_24561550_1 WHERE record = \"3-3\"",
    "question_en": "List all results from the 3-3 scoring game.",
    "question_th": "สรุปผลการแข่งขันสกอร์ 3-3 ทั้งหมด",
    "context": "CREATE TABLE table_24561550_1 (result VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_24561550_1 WHERE record = \"4-4\"",
    "question_en": "List all opponents from the 4-4 scoring game.",
    "question_th": "รายชื่อคู่ต่อสู้ทั้งหมดจากเกมสกอร์ 4-4",
    "context": "CREATE TABLE table_24561550_1 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_24561550_1 WHERE wildcats_points = 48",
    "question_en": "List the record from the game where Wildcats had 48 points.",
    "question_th": "รายชื่อบันทึกจากเกมที่ Wildcats มี 48 แต้ม",
    "context": "CREATE TABLE table_24561550_1 (record VARCHAR, wildcats_points VARCHAR)"
  },
  {
    "answer": "SELECT wildcats_points FROM table_24561550_1 WHERE opponent = \"Baylor\"",
    "question_en": "How many points did the Wildcats get when Baylor was an opponent?",
    "question_th": "Wildcats ได้คะแนนเท่าไรเมื่อ Baylor เป็นคู่ต่อสู้?",
    "context": "CREATE TABLE table_24561550_1 (wildcats_points VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_24560733_1 WHERE date = \"Oct. 4\"",
    "question_en": "Who was the opponent on Oct. 4?",
    "question_th": "คู่ต่อสู้ในวันที่ 4 ต.ค. คือใคร?",
    "context": "CREATE TABLE table_24560733_1 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MIN(opponents) FROM table_24560733_1",
    "question_en": "What was the minimum number for opponents?",
    "question_th": "จำนวนขั้นต่ำสำหรับฝ่ายตรงข้ามคือเท่าไร?",
    "context": "CREATE TABLE table_24560733_1 (opponents INTEGER)"
  },
  {
    "answer": "SELECT MIN(opponents) FROM table_24560733_1 WHERE opponent = \"at Michigan State\"",
    "question_en": "What is the minimum number of opponents' points for the game at Michigan State?",
    "question_th": "จำนวนคะแนนขั้นต่ำของฝ่ายตรงข้ามสำหรับเกมที่ Michigan State คือเท่าไร?",
    "context": "CREATE TABLE table_24560733_1 (opponents INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_24560733_1 WHERE record = \"5-2\"",
    "question_en": "Which opponent led to a 5-2 record?",
    "question_th": "คู่ต่อสู้คนไหนทำสถิติ 5-2?",
    "context": "CREATE TABLE table_24560733_1 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(opponents) FROM table_24560733_1 WHERE opponent = \"at Ole Miss\"",
    "question_en": "How many opponents' points numbers are associated with the game at Ole Miss?",
    "question_th": "หมายเลขคะแนนของฝ่ายตรงข้ามเกี่ยวข้องกับเกมที่ 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_en": "Name the total number of period for yvon le roux",
    "question_th": "ตั้งชื่อจำนวนงวดทั้งหมดสำหรับ 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_en": "Name the period for michel llodra",
    "question_th": "ตั้งชื่อช่วงเวลาของ Michel Llodra",
    "context": "CREATE TABLE table_24565004_13 (period VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(position) FROM table_24565004_13 WHERE nationality² = \"Democratic Republic of the Congo\"",
    "question_en": "Name the number of position for democratic republic of the congo",
    "question_th": "ตั้งชื่อหมายเลขตำแหน่งสาธารณรัฐประชาธิปไตยคองโก",
    "context": "CREATE TABLE table_24565004_13 (position VARCHAR, nationality² VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(name) FROM table_24565004_14 WHERE appearances¹ = 101",
    "question_en": "How many names correspond to the value 101 for appearances?",
    "question_th": "มีกี่ชื่อที่ตรงกับค่า 101 สำหรับการปรากฏตัว?",
    "context": "CREATE TABLE table_24565004_14 (name VARCHAR, appearances¹ VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_24565004_14 WHERE name = \"Thierry Morin\"",
    "question_en": "What positions correspond to the name Thierry Morin?",
    "question_th": "ตำแหน่งใดที่ตรงกับชื่อ Thierry Morin?",
    "context": "CREATE TABLE table_24565004_14 (position VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT period FROM table_24565004_11 WHERE appearances¹ = 219",
    "question_en": "What time period had appearances of 219?",
    "question_th": "ปรากฏ 219 นัดช่วงไหน?",
    "context": "CREATE TABLE table_24565004_11 (period VARCHAR, appearances¹ VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(period) FROM table_24565004_11 WHERE goals¹ = 15",
    "question_en": "How many periods had 15 goals?",
    "question_th": "15 ประตูมีกี่งวด?",
    "context": "CREATE TABLE table_24565004_11 (period VARCHAR, goals¹ VARCHAR)"
  },
  {
    "answer": "SELECT MIN(appearances¹) FROM table_24565004_22 WHERE name = \"Pierre Vermeulen\"",
    "question_en": "at least how many times was Pierre Vermeulen at a game?",
    "question_th": "ปิแอร์ แวร์เมอเลน อย่างน้อยกี่ครั้งในเกม?",
    "context": "CREATE TABLE table_24565004_22 (appearances¹ INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT nationality² FROM table_24565004_22 WHERE name = \"Richard Vanquelef\"",
    "question_en": "What country is Richard Vanquelef from?",
    "question_th": "ริชาร์ด แวนเคเลฟ มาจากประเทศใด",
    "context": "CREATE TABLE table_24565004_22 (nationality² VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT nationality² FROM table_24565004_22 WHERE name = \"Pierre Vermeulen\"",
    "question_en": "What country is Pierre Vermeulen from?",
    "question_th": "ปิแอร์ แวร์เมอเลน มาจากประเทศใด",
    "context": "CREATE TABLE table_24565004_22 (nationality² VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(appearances¹) FROM table_24565004_20 WHERE nationality² = \"Yugoslavia\"",
    "question_en": "Name the number of appearances for yugoslavia",
    "question_th": "ระบุจำนวนการลงเล่นของยูโกสลาเวีย",
    "context": "CREATE TABLE table_24565004_20 (appearances¹ VARCHAR, nationality² VARCHAR)"
  },
  {
    "answer": "SELECT nationality² FROM table_24565004_20 WHERE position = \"Defender\" AND appearances¹ = 201",
    "question_en": "Name the nationality for defender 201",
    "question_th": "ตั้งชื่อสัญชาติกองหลัง 201",
    "context": "CREATE TABLE table_24565004_20 (nationality² VARCHAR, position VARCHAR, appearances¹ VARCHAR)"
  },
  {
    "answer": "SELECT goals¹ FROM table_24565004_20 WHERE name = \"Daniel Sanchez\"",
    "question_en": "Name the goals for daniel sanchez",
    "question_th": "ทายชื่อประตูของดาเนียล ซานเชซ",
    "context": "CREATE TABLE table_24565004_20 (goals¹ VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT MIN(goals¹) FROM table_24565004_20 WHERE nationality² = \"Algeria\"",
    "question_en": "Name the most goals for algeria",
    "question_th": "ทายผลประตูให้แอลจีเรียมากที่สุด",
    "context": "CREATE TABLE table_24565004_20 (goals¹ INTEGER, nationality² VARCHAR)"
  },
  {
    "answer": "SELECT MIN(goals¹) FROM table_24565004_21",
    "question_en": "What was the lowest score.",
    "question_th": "คะแนนต่ำสุดเท่าไหร่.",
    "context": "CREATE TABLE table_24565004_21 (goals¹ INTEGER)"
  },
  {
    "answer": "SELECT MIN(appearances¹) FROM table_24565004_21 WHERE name = \"Sammy Traoré\"",
    "question_en": "List the minimum impressions for sammy traoré",
    "question_th": "แสดงรายการจำนวนการแสดงผลขั้นต่ำสำหรับ sammy traoré",
    "context": "CREATE TABLE table_24565004_21 (appearances¹ INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT period FROM table_24565004_21 WHERE name = \"Nabatingue Toko\"",
    "question_en": "During what years did nabatingue toko play. ",
    "question_th": " นาบาติงเก โทโกเล่นในช่วงปีไหน",
    "context": "CREATE TABLE table_24565004_21 (period VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(goals¹) FROM table_24565004_17 WHERE name = \"Mauricio Pochettino\"",
    "question_en": "Name the number of goals for mauricio pochettino",
    "question_th": "ทายจำนวนประตูของ เมาริซิโอ โปเช็ตติโน่",
    "context": "CREATE TABLE table_24565004_17 (goals¹ VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT period FROM table_24565004_17 WHERE name = \"Michel Prost\"",
    "question_en": "Name the period for michel prost",
    "question_th": "ตั้งชื่อช่วงเวลาสำหรับ Michel Prost",
    "context": "CREATE TABLE table_24565004_17 (period VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT goals¹ FROM table_24565004_17 WHERE name = \"Mauricio Pochettino\"",
    "question_en": "Name the goals for mauricio pochettino",
    "question_th": "ทายชื่อประตูของ เมาริซิโอ โปเช็ตติโน่",
    "context": "CREATE TABLE table_24565004_17 (goals¹ VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT period FROM table_24565004_2 WHERE appearances¹ = 380",
    "question_en": "Name the period for appearances being 380",
    "question_th": "ตั้งชื่อช่วงเวลาในการปรากฏตัวเป็น 380",
    "context": "CREATE TABLE table_24565004_2 (period VARCHAR, appearances¹ VARCHAR)"
  },
  {
    "answer": "SELECT appearances¹ FROM table_24565004_2 WHERE name = \"Bernard Allou\"",
    "question_en": "Name the appearances for bernard allou",
    "question_th": "ตั้งชื่อการปรากฏตัวของเบอร์นาร์ด อัลลู",
    "context": "CREATE TABLE table_24565004_2 (appearances¹ VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT MAX(appearances¹) FROM table_24565004_2 WHERE name = \"Bernard Allou\"",
    "question_en": "Name the most appearances for bernard allou",
    "question_th": "รายชื่อการลงเล่นมากที่สุดของเบอร์นาร์ด อัลลู",
    "context": "CREATE TABLE table_24565004_2 (appearances¹ INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT MAX(goals¹) FROM table_24565004_7",
    "question_en": "What is the highest number of goals scored",
    "question_th": "ยิงประตูได้มากที่สุดจำนวนเท่าใด",
    "context": "CREATE TABLE table_24565004_7 (goals¹ INTEGER)"
  },
  {
    "answer": "SELECT MIN(appearances¹) FROM table_24565004_7",
    "question_en": "What is the lowest number of appearances a player had",
    "question_th": "จำนวนการลงเล่นที่น้อยที่สุดของผู้เล่นคนหนึ่งคือเท่าใด",
    "context": "CREATE TABLE table_24565004_7 (appearances¹ INTEGER)"
  },
  {
    "answer": "SELECT nationality² FROM table_24565004_7 WHERE name = \"Louis Floch\"",
    "question_en": "What is the nationality of Louis floch",
    "question_th": "หลุยส์ ฟลอช มีสัญชาติอะไร",
    "context": "CREATE TABLE table_24565004_7 (nationality² VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_24565004_7 WHERE appearances¹ = 252",
    "question_en": "Which player had 252 appearances",
    "question_th": "นักเตะคนไหนลงเล่น 252 นัด",
    "context": "CREATE TABLE table_24565004_7 (name VARCHAR, appearances¹ VARCHAR)"
  },
  {
    "answer": "SELECT nationality² FROM table_24565004_7 WHERE goals¹ = 13",
    "question_en": "What is the nationality of the player who scored 13 goals",
    "question_th": "นักเตะสัญชาติอะไรที่ทำประตูได้ 13 ประตู",
    "context": "CREATE TABLE table_24565004_7 (nationality² VARCHAR, goals¹ VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(season) FROM table_245711_2 WHERE final_record = \"9–16–5\"",
    "question_en": "how many time is the final record is 9–16–5?",
    "question_th": "สถิติสุดท้ายคือ 9–16–5 กี่ครั้ง?",
    "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_en": "What station was sent on flight up and was launched on 23 July 1980 18:33:03?",
    "question_th": "มีการส่งสถานีใดขึ้นบินและเปิดตัวเมื่อ 23 กรกฎาคม พ.ศ. 2523 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_en": "Who were the crews on the flight up of Soyuz T-3?",
    "question_th": "ทีมงานบนเที่ยวบิน 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_en": "How many days were the station of Soyuz 35 in flight down were in orbit?",
    "question_th": "สถานี Soyuz 35 ที่กำลังบินอยู่ในวงโคจรมีกี่วัน?",
    "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_en": "Name the number of gn divisions for mannar",
    "question_th": "ตั้งชื่อจำนวนการแบ่ง gn สำหรับมานนาร์",
    "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_en": "Name the sinhalese for manthai west",
    "question_th": "ตั้งชื่อภาษาสิงหลสำหรับ 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_en": "Name the least indian tamil for population density being 240",
    "question_th": "ตั้งชื่อภาษาทมิฬอินเดียน้อยที่สุดสำหรับความหนาแน่นของประชากรคือ 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_en": "Name the popultion density being manthai west",
    "question_th": "ตั้งชื่อความหนาแน่นของประชากรเป็นมานไทยตะวันตก",
    "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_en": "Name the total number of sinhalese for indian tamil being 177",
    "question_th": "ตั้งชื่อจำนวนภาษาสิงหลทั้งหมดสำหรับภาษาทมิฬอินเดียเป็น 177",
    "context": "CREATE TABLE table_24574438_1 (sinhalese VARCHAR, indian_tamil VARCHAR)"
  },
  {
    "answer": "SELECT MIN(area__km_2__) FROM table_24574438_1",
    "question_en": "Name the least area ",
    "question_th": " ตั้งชื่อพื้นที่น้อยที่สุด",
    "context": "CREATE TABLE table_24574438_1 (area__km_2__ INTEGER)"
  },
  {
    "answer": "SELECT COUNT(division_five) FROM table_24575253_4 WHERE division_one = \"Westcott\"",
    "question_en": "When westcott is in division one how many leagues are in division 5?",
    "question_th": "เมื่อเวสต์คอตต์อยู่ดิวิชั่น 1 มีกี่ลีกในดิวิชั่น 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_en": "When godstone is in division five who is in division four?",
    "question_th": "เมื่อ godstone อยู่ดิวิชั่น 5 ใครอยู่ดิวิชั่น 4 บ้าง?",
    "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_en": "When the wallington new foresters are in division four what is the season?",
    "question_th": "เมื่อผู้พิทักษ์คนใหม่ของวอลลิงตันอยู่ในดิวิชั่น 4 ฤดูกาลจะเป็นอย่างไร?",
    "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_en": "When racing epsom is in division two how many seasons are there?",
    "question_th": "เมื่อ Epsom Racing อยู่ในดิวิชั่น 2 มีกี่ฤดูกาล?",
    "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_en": "When westcott 1935 is in division two how many leagues are in division three?",
    "question_th": "เมื่อ Westcott 1935 อยู่ในดิวิชั่น 2 มีกี่ลีกในดิวิชั่น 3?",
    "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_en": "When real holmesdale reserves is division four who is in division one?",
    "question_th": "เมื่อกองหนุนเรอัล โฮล์มสเดลอยู่ดิวิชั่น 4 ใครอยู่ดิวิชั่น 1 บ้าง?",
    "context": "CREATE TABLE table_24575253_4 (division_one VARCHAR, division_four VARCHAR)"
  },
  {
    "answer": "SELECT duration FROM table_245801_2 WHERE spacecraft = \"Salyut 7 – VE-4 – EVA 1\"",
    "question_en": "When salyut 7 – ve-4 – eva 1 is the spacecraft, what is the duration?",
    "question_th": "เมื่อยานอวกาศ 7 – ve-4 – eva 1 เป็นยานอวกาศ มีระยะเวลาเท่าใด",
    "context": "CREATE TABLE table_245801_2 (duration VARCHAR, spacecraft VARCHAR)"
  },
  {
    "answer": "SELECT end___utc FROM table_245801_2 WHERE comments = \"First woman EVA\"",
    "question_en": "When first woman eva is the comment what is the end -utc?",
    "question_th": "เมื่อผู้หญิงคนแรก eva คือความคิดเห็น จุดสิ้นสุด -utc คืออะไร?",
    "context": "CREATE TABLE table_245801_2 (end___utc VARCHAR, comments VARCHAR)"
  },
  {
    "answer": "SELECT series FROM table_24585157_1 WHERE points = \"68\"",
    "question_en": "What series did the racer earn 68 points in?",
    "question_th": "นักแข่งคนใดได้รับ 68 คะแนนในซีรีส์ใด",
    "context": "CREATE TABLE table_24585157_1 (series VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT duration__days_ FROM table_245801_1 WHERE crew = \"Georgi Grechko\"",
    "question_en": "Name the duration for georgi grechko",
    "question_th": "ตั้งชื่อระยะเวลาของ 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_en": "Name the flight up for 10 december 1982 19:02:36 utc",
    "question_th": "ตั้งชื่อเที่ยวบินวันที่ 10 ธันวาคม 2525 เวลา 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_en": "Name the launch date for  vladimir lyakhov , aleksandr pavlovich aleksandrov",
    "question_th": "ตั้งชื่อวันเปิดตัวสำหรับ 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_en": "Name the flight down for vladimir vasyutin , alexander volkov",
    "question_th": "ตั้งชื่อเที่ยวบินลงสำหรับ วลาดิมีร์ วาซูติน, อเล็กซานเดอร์ โวลคอฟ",
    "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_en": "Name the duration for  vladimir vasyutin , alexander volkov",
    "question_th": "ตั้งชื่อระยะเวลาสำหรับ 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_en": "What team was he on the year he had 38 points? ",
    "question_th": " เขาเป็นทีมอะไรในปีที่เขามี 38 คะแนน?",
    "context": "CREATE TABLE table_24584486_1 (team VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT MIN(wins) FROM table_24584486_1 WHERE poles = 10",
    "question_en": "What was the least amount of wins when he had 10 poles? ",
    "question_th": "เขามี 10 โพล ชนะน้อยที่สุดเท่าไหร่?",
    "context": "CREATE TABLE table_24584486_1 (wins INTEGER, poles VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_24587026_1 WHERE points = \"22\"",
    "question_en": "Name the team for 22 points",
    "question_th": "ตั้งชื่อทีมได้ 22 แต้ม",
    "context": "CREATE TABLE table_24587026_1 (team VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT f_laps FROM table_24587026_1 WHERE series = \"GP2 series\"",
    "question_en": "Name the f/laps for gp2 series",
    "question_th": "ตั้งชื่อ f/laps สำหรับซีรีส์ gp2",
    "context": "CREATE TABLE table_24587026_1 (f_laps VARCHAR, series VARCHAR)"
  },
  {
    "answer": "SELECT MIN(wins) FROM table_24587026_1",
    "question_en": "Name the most wins",
    "question_th": "ชื่อที่ชนะมากที่สุด",
    "context": "CREATE TABLE table_24587026_1 (wins INTEGER)"
  },
  {
    "answer": "SELECT MIN(races) FROM table_24587026_1 WHERE team = \"Carlin\"",
    "question_en": "Name the least races for carlin",
    "question_th": "ตั้งชื่อเผ่าพันธุ์ที่น้อยที่สุดสำหรับคาร์ลิน",
    "context": "CREATE TABLE table_24587026_1 (races INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_24587026_1 WHERE podiums = 0 AND team = \"Carlin\"",
    "question_en": "Name the position for 0 podiums and carlin team",
    "question_th": "ตั้งชื่อตำแหน่ง 0 โพเดียม และทีมคาร์ลิน",
    "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_en": "Name the name in syriac for 500 believers",
    "question_th": "ตั้งชื่อเป็นภาษาซีเรียกสำหรับผู้เชื่อ 500 คน",
    "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_en": "Name the least number of believers",
    "question_th": "ระบุจำนวนผู้เชื่อน้อยที่สุด",
    "context": "CREATE TABLE table_24613895_1 (number_of_believers INTEGER)"
  },
  {
    "answer": "SELECT MAX(number_of_believers) FROM table_24613895_1 WHERE name_in_syriac = \"ܓܘܝܠܢ\"",
    "question_en": "Name the most number of believers for ܓܘܝܠܢ",
    "question_th": "ระบุชื่อผู้ศรัทธาจำนวนมากที่สุดสำหรับ Quyọc Quốc",
    "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_en": "Name the number of believers for khosrowa",
    "question_th": "ตั้งชื่อจำนวนผู้ศรัทธาสำหรับโคโซรอวา",
    "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_en": "Name the number of believers for patavur",
    "question_th": "ตั้งชื่อจำนวนผู้ศรัทธาสำหรับปาตาวูร์",
    "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_en": "The local title \"Live to Dance\" was aired in which channel?",
    "question_th": "รายการท้องถิ่น \"Live to Dance\" ออกอากาศทางช่องใด?",
    "context": "CREATE TABLE table_24598274_20 (channel VARCHAR, local_title VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_24598274_20 WHERE presenter_s_ = \"Johanna Klum\"",
    "question_en": "Which country did Johanna Klum presented the show?",
    "question_th": "Johanna Klum นำเสนอรายการนี้ที่ประเทศใด",
    "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_en": "Name the most released for the in crowd",
    "question_th": "ตั้งชื่อรายการที่ปล่อยออกมามากที่สุดสำหรับฝูงชน",
    "context": "CREATE TABLE table_24600706_1 (released INTEGER, song VARCHAR)"
  },
  {
    "answer": "SELECT MAX(released) FROM table_24600706_1 WHERE song = \"Apologize\"",
    "question_en": "Name the most released for apologize",
    "question_th": "ตั้งชื่อที่ปล่อยออกมาเพื่อขอโทษมากที่สุด",
    "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_en": "Name the most released for right here, right now",
    "question_th": "ตั้งชื่อรายการที่ปล่อยออกมามากที่สุดที่นี่ตอนนี้",
    "context": "CREATE TABLE table_24600706_1 (released INTEGER, song VARCHAR)"
  },
  {
    "answer": "SELECT us_exclusive FROM table_24600706_1 WHERE artist_band = \"Miley Cyrus\"",
    "question_en": "Name the us exclusive for miley cyrus",
    "question_th": "ตั้งชื่อ us เฉพาะสำหรับไมลีย์ ไซรัส",
    "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_en": "When bmw activee is the vehicle type how many clean electric grid california (san francisco) measurements are there?",
    "question_th": "เมื่อ BMW Activee เป็นประเภทยานพาหนะ จะมีการตรวจวัดกริดไฟฟ้าแคลิฟอร์เนีย (ซานฟรานซิสโก) ที่สะอาดจำนวนเท่าใด",
    "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_en": "When 102 mpg-e (33kw-hrs/100mi) is the epa rated combined fuel economy what is the vehicle type? ",
    "question_th": "เมื่อ 102 mpg-e (33kw-hrs/100mi) เป็นไปตามอัตราประหยัดเชื้อเพลิงแบบรวมของ epa ประเภทของยานพาหนะคืออะไร",
    "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_en": "When 100 g/mi (62 g/km) is the clean electric grid california (san francisco) how many vehicles are there?",
    "question_th": "เมื่อ 100 กรัม/ไมล์ (62 กรัม/กม.) เป็นเครือข่ายไฟฟ้าสะอาดในแคลิฟอร์เนีย (ซานฟรานซิสโก) มีรถยนต์กี่คัน",
    "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_en": "When 380 g/mi (236 g/km) is the dirty electric grid rocky mountains (denver) what is the u.s national average electric mix?",
    "question_th": "เมื่อ 380 กรัม/ไมล์ (236 กรัม/กม.) คือกริดไฟฟ้าสกปรกบนภูเขาหิน (เดนเวอร์) ค่าผสมไฟฟ้าโดยเฉลี่ยของประเทศสหรัฐอเมริกาคือเท่าใด",
    "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_en": "When bmw activee is the vehicle type what is the u.s national average electric mix?",
    "question_th": "เมื่อ BMW Activee เป็นประเภทรถยนต์ ค่าเฉลี่ยผสมไฟฟ้าของประเทศสหรัฐอเมริกาคือเท่าใด?",
    "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_en": "When  87 mpg-e (39kw-hrs/100mi) is the  epa rated combined fuel economy how many operating modes are there?",
    "question_th": "เมื่อ 87 mpg-e (39kw-hrs/100mi) เป็นไปตามอัตราประหยัดเชื้อเพลิงของ epa ที่ epa มีโหมดการทำงานกี่โหมด",
    "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–2, 3–6, 6–3\"",
    "question_en": "Name the opponents for 6–2, 3–6, 6–3",
    "question_th": "ตั้งชื่อคู่ต่อสู้สำหรับ 6–2, 3–6, 6–3",
    "context": "CREATE TABLE table_24638867_6 (opponents VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT championship FROM table_24638867_6 WHERE outcome = \"Winner\" AND score = \"7–5, 4–6, 6–1\"",
    "question_en": "Name the championship for outcome being winner for  7–5, 4–6, 6–1",
    "question_th": "ตั้งชื่อแชมป์สำหรับผลการแข่งขันเป็นผู้ชนะ 7–5, 4–6, 6–1",
    "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_en": "Name the score for winner and  julie halard-decugis ai sugiyama",
    "question_th": "ตั้งชื่อคะแนนของผู้ชนะ และ จูลี่ ฮาลาร์ด-เดคูกิส ไอ ซูกิยามะ",
    "context": "CREATE TABLE table_24638867_6 (score VARCHAR, outcome VARCHAR, opponents VARCHAR)"
  },
  {
    "answer": "SELECT championship FROM table_24638867_6 WHERE score = \"7–5, 6–4\" AND surface = \"Hard\"",
    "question_en": "Name the championship for hard surface 7–5, 6–4 ",
    "question_th": " ตั้งชื่อแชมป์พื้นผิวแข็ง 7–5, 6–4",
    "context": "CREATE TABLE table_24638867_6 (championship VARCHAR, score VARCHAR, surface VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_24638867_6 WHERE partner = \"Nathalie Tauziat\"",
    "question_en": "Name the surface for nathalie tauziat",
    "question_th": "ตั้งชื่อพื้นผิวของ 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_en": "Name the most year for money list rank is 74",
    "question_th": "อันดับปีที่มีเงินมากที่สุดคือ 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_en": "Name the team for avg start being 20.5",
    "question_th": "ตั้งชื่อทีมเฉลี่ยเริ่มต้น 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_en": "Name the team for wins being 0 and top 5 is 0 and poles is 0 and avg start is 37.0",
    "question_th": "ตั้งชื่อทีมที่ชนะเป็น 0 และ 5 อันดับแรกคือ 0 และโพลคือ 0 และเริ่มต้นเฉลี่ยคือ 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_en": "Name the winnings for 23rd position",
    "question_th": "ตั้งชื่อชัยชนะสำหรับอันดับที่ 23",
    "context": "CREATE TABLE table_2463383_2 (winnings VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT winnings FROM table_2463383_2 WHERE year = 2004",
    "question_en": "Name the winnings for 2004",
    "question_th": "ตั้งชื่อชัยชนะสำหรับปี 2547",
    "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_en": "Name the total number of top 10 for avg start being 37.3",
    "question_th": "ตั้งชื่อจำนวนรวม 10 อันดับแรกสำหรับค่าเฉลี่ยเริ่มต้นที่ 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_en": "What was the method of elimination in the chamber with a time of 24:02? ",
    "question_th": " เวลา 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_en": "How many wrestlers are recorded for the chamber that's method of elimination was pinned after being hit by a lead pipe? ",
    "question_th": " มีนักมวยปล้ำกี่คนที่บันทึกไว้ในห้องที่มีวิธีกำจัดถูกตรึงไว้หลังจากโดนท่อตะกั่ว?",
    "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_en": "What was the method of elimination for Kofi Kingston/ ",
    "question_th": " โคฟี คิงส์ตัน มีวิธีการกำจัดอย่างไร/",
    "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árez\"",
    "question_en": "What championships were played on clay and the opponent was virginia ruano pascual paola suárez?",
    "question_th": "การแข่งขันชิงแชมป์ใดที่เล่นบนดินและคู่ต่อสู้คือ virginia ruano pascual paola suárez?",
    "context": "CREATE TABLE table_24638867_4 (championship VARCHAR, surface VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT championship FROM table_24638867_4 WHERE partner = \"Natasha Zvereva\"",
    "question_en": "What championships had a match where Natasha Zvereva played as partner?",
    "question_th": "การแข่งขันชิงแชมป์ใดบ้างที่ Natasha Zvereva เล่นเป็นคู่หู?",
    "context": "CREATE TABLE table_24638867_4 (championship VARCHAR, partner VARCHAR)"
  },
  {
    "answer": "SELECT original_air_date FROM table_24648983_1 WHERE № = 4",
    "question_en": "What day did episode number 4 air originally?",
    "question_th": "ตอนแรกตอนที่ 4 ออกอากาศวันไหนคะ?",
    "context": "CREATE TABLE table_24648983_1 (original_air_date VARCHAR, № VARCHAR)"
  },
  {
    "answer": "SELECT written_by FROM table_24648983_1 WHERE us_viewers__million_ = \"8.61\"",
    "question_en": "Who wrote the episode with 8.61 million U.S. viewers?",
    "question_th": "ใครเป็นคนเขียนตอนนี้โดยมีผู้ชม 8.61 ล้านคนในสหรัฐฯ?",
    "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_en": "What date did the episode with 8.61 million U.S. viewers originally air?",
    "question_th": "ตอนที่มีผู้ชม 8.61 ล้านคนในสหรัฐฯ ออกอากาศครั้งแรกเมื่อใด",
    "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_en": "What is the name of the episode that had 9.89 million U.S. viewers?",
    "question_th": "ตอนที่มีผู้ชม 9.89 ล้านคนในสหรัฐฯ ชื่ออะไร",
    "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_en": "What is the value for model if processor is Kentsfield and brand name is Xeon?",
    "question_th": "มูลค่าของรุ่นคือเท่าใด หากโปรเซสเซอร์คือ Kentsfield และชื่อแบรนด์คือ 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_en": "What is every value for TDP if model is x53xx?",
    "question_th": "ทุกค่าของ TDP คืออะไรหากรุ่นเป็น x53xx",
    "context": "CREATE TABLE table_2467150_2 (tdp VARCHAR, model__list_ VARCHAR)"
  },
  {
    "answer": "SELECT cores FROM table_2467150_2 WHERE tdp = \"17 W\"",
    "question_en": "What is every value for cores if TDP is 17 W?",
    "question_th": "ทุกค่าของคอร์จะเป็นเท่าใดหาก TDP คือ 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_en": "What is the production code for the episode written by  J. H. Wyman & Jeff Pinkner?",
    "question_th": "รหัสการผลิตสำหรับตอนที่เขียนโดย JH 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_en": "What is the title of the episode directed by Charles Beeson?",
    "question_th": "ตอนที่กำกับโดย 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_en": "How many original air dates for the episode written by David H. Goodman & Andrew Kreisberg?",
    "question_th": "วันที่ออกอากาศดั้งเดิมสำหรับตอนที่เขียนโดย 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_en": "What is the most recent episode number written by Matthew Pitts?",
    "question_th": "หมายเลขตอนล่าสุดที่เขียนโดย 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_en": "How many records for number of viewers is listed for episode number 8? ",
    "question_th": " มีบันทึกจำนวนผู้ชมกี่รายการสำหรับตอนที่ 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_en": "What was the 18 to 49 rating when 9.50 million watched?",
    "question_th": "เรตติ้ง 18 ถึง 49 เมื่อมีผู้ชม 9.50 ล้านคนคืออะไร",
    "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_en": "what episode number had 11.73 million viewers? ",
    "question_th": " หมายเลขตอนใดมีผู้ชม 11.73 ล้านคน?",
    "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_en": "How many episodes had 11.47 million viewers? ",
    "question_th": " มีผู้ชมทั้งหมด 11.47 ล้านคนกี่ตอน?",
    "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_en": "Who wrote the episode that originally aired April 29, 1994?",
    "question_th": "ใครเป็นคนเขียนตอนที่ออกอากาศครั้งแรกเมื่อวันที่ 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_en": "What was the production code for the episode that debuted October 1, 1993?",
    "question_th": "รหัสการผลิตสำหรับตอนที่เปิดตัวเมื่อวันที่ 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_en": "What was the title of series number 56?",
    "question_th": "ซีรีส์หมายเลข 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_en": "What was the title of the episode written by Julia Newton in series 48?",
    "question_th": "ตอนที่เขียนโดย Julia Newton ในซีรีส์ 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_en": "What is the callsign that has a station type of relay and a channel number of TV-2?",
    "question_th": "สัญญาณเรียกขานที่มีรีเลย์แบบสถานีและหมายเลขช่อง 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_en": "What is the station type of DWZM-TV?",
    "question_th": "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_en": "What is the power in kilowatts of TV-12?",
    "question_th": "กำลังไฟของ 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_en": "What is the power in KW of the transmitter situated in Borongan?",
    "question_th": "กำลังไฟฟ้าในหน่วย KW ของเครื่องส่งที่อยู่ใน 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_en": "What is the channel number that has a branding of PTV 4 Laoag?",
    "question_th": "หมายเลขช่องที่มีตราสินค้า 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_en": "What is the power in KW that has a station type of relay and a callsign of DXCL-TV?",
    "question_th": "กำลังใน KW ที่มีรีเลย์ประเภทสถานีและสัญญาณเรียกของ 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_en": "When 15 is the number in season what is the highest number in series?",
    "question_th": "เมื่อ 15 เป็นหมายเลขในฤดูกาล หมายเลขสูงสุดในซีรีส์คือหมายเลขใด",
    "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_en": "When 123 is the number in series who is the director?",
    "question_th": "เมื่อ 123 เป็นตัวเลขในซีรีส์ใครเป็นผู้กำกับ?",
    "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_en": "When 120 is the number in series who is the writer?",
    "question_th": "เมื่อ 120 เป็นตัวเลขในซีรีส์ใครเป็นคนเขียน?",
    "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_en": "When 137 is the number in series what is the production code?",
    "question_th": "เมื่อ 137 เป็นตัวเลขในซีรีย์ รหัสการผลิตคืออะไร?",
    "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–1736 , first stage\"",
    "question_en": "How many victors where there in the War of 1730–1736 , first stage?",
    "question_th": "มีผู้ชนะกี่คนในสงครามปี 1730–1736 ในระยะแรก?",
    "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_en": "Who was the Ottoman Sultan where the treaty at the end of the war was the Treaty of Constantinople (1590)?",
    "question_th": "สุลต่านออตโตมันคือใคร โดยที่สนธิสัญญาเมื่อสิ้นสุดสงครามคือสนธิสัญญาคอนสแตนติโนเปิล (ค.ศ. 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_en": "What is the name of the war where the Ottoman sultan was Selim I?",
    "question_th": "สงครามที่สุลต่านออตโตมันคือเซลิมที่ 1 ชื่อว่าอะไร?",
    "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_en": "When 102 is the number in series who is the director?",
    "question_th": "เมื่อ 102 เป็นตัวเลขในซีรีส์ใครเป็นผู้กำกับ?",
    "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_en": "Name who wrote the episode directed by patrick duffy airing on november 7, 1997",
    "question_th": "ชื่อผู้เขียนบทที่กำกับโดยแพทริค ดัฟฟี่ ออกอากาศวันที่ 7 พฤศจิกายน พ.ศ. 2540",
    "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_en": "What is the last year total for the team with a lowest of 23578?",
    "question_th": "ผลรวมปีที่แล้วของทีมที่มีคะแนนต่ำสุดคือ 23578 คือเท่าไร?",
    "context": "CREATE TABLE table_2472711_31 (last_year INTEGER, lowest VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(highest) FROM table_2472711_31 WHERE lowest = 16415",
    "question_en": "How many highest figures for the team with lowest of 16415?",
    "question_th": "ตัวเลขสูงสุดของทีมที่มีต่ำสุดที่ 16415 มีกี่ตัว?",
    "context": "CREATE TABLE table_2472711_31 (highest VARCHAR, lowest VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_2472711_31 WHERE up_down = \"+ 3479\"",
    "question_en": "Which team has an up/down of + 3479?",
    "question_th": "ทีมไหนมีขึ้น/ลงที่ +3479?",
    "context": "CREATE TABLE table_2472711_31 (team VARCHAR, up_down VARCHAR)"
  },
  {
    "answer": "SELECT average FROM table_2472711_31 WHERE total = 243017",
    "question_en": "What is the average of the team where the total is 243017?",
    "question_th": "ค่าเฉลี่ยของทีมที่มียอดรวม 243,017 คือเท่าไร?",
    "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_en": "How many episodes had celebrity guest stars Frank Skinner and Lee Mack?",
    "question_th": "Frank Skinner และ 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_en": "List episode directed and produced by Karen Selway?",
    "question_th": "รายชื่อตอนที่กำกับและอำนวยการสร้างโดย 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_en": "Which episode had celebrities Nick Hewer and Saira Khan in them?",
    "question_th": "ตอนไหนที่มีคนดังอย่าง Nick Hewer และ Saira Khan อยู่ในนั้น?",
    "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_en": "List the director and producer when Nick Hewer and Saira Khan were starring.",
    "question_th": "รายชื่อผู้กำกับและโปรดิวเซอร์เมื่อ Nick Hewer และ Saira Khan แสดงนำ",
    "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_en": "List directors and producers when the celebrities involved were Bill Turnbull and Louise Minchin.",
    "question_th": "รายชื่อผู้กำกับและโปรดิวเซอร์เมื่อคนดังที่เกี่ยวข้องคือ Bill Turnbull และ 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_en": "whe, co2 is 206g/km, what is the torque?",
    "question_th": "co2 อยู่ที่ 206 กรัม/กม. แรงบิดเท่าไหร่?",
    "context": "CREATE TABLE table_24729_2 (torque VARCHAR, co2 VARCHAR)"
  },
  {
    "answer": "SELECT power FROM table_24729_2 WHERE co2 = \"192g/km\"",
    "question_en": "when co2 is 192g/km, what is the power?",
    "question_th": "เมื่อ co2 อยู่ที่ 192 กรัม/กม. มีกำลังเท่าไหร่?",
    "context": "CREATE TABLE table_24729_2 (power VARCHAR, co2 VARCHAR)"
  },
  {
    "answer": "SELECT circuit FROM table_24732149_2 WHERE round = 5",
    "question_en": "What is the circuit of round 5?",
    "question_th": "รอบที่ 5 เป็นยังไงบ้าง?",
    "context": "CREATE TABLE table_24732149_2 (circuit VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_24732149_2 WHERE fastest_lap = \"Mike Rockenfeller\"",
    "question_en": "What date did Mike Rockenfeller have the fastest lap?",
    "question_th": "Mike Rockenfeller มีรอบเร็วที่สุดในวันที่เท่าไร?",
    "context": "CREATE TABLE table_24732149_2 (date VARCHAR, fastest_lap VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_24735155_1 WHERE seasons = \"2006 – 2007 , 2009\"",
    "question_en": "How many points for the driver who raced in seasons 2006 – 2007 , 2009?",
    "question_th": "นักแข่งที่ลงแข่งในฤดูกาล 2549 – 2550, 2552 ได้กี่คะแนน?",
    "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_en": "What's the name of the competition where the nationality is Brazil and the voting percentage is n/a?",
    "question_th": "การแข่งขันชื่ออะไร โดยสัญชาติคือบราซิล และเปอร์เซ็นต์การโหวตคือไม่มี",
    "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_en": "What's the player's name whose nationality and team are Netherlands?",
    "question_th": "นักเตะสัญชาติและทีมเนเธอร์แลนด์ชื่ออะไร?",
    "context": "CREATE TABLE table_24765815_2 (player VARCHAR, nationality VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_24765815_2 WHERE player = \"Samir Nasri\"",
    "question_en": "What was the score for the game in which Samir Nasri played?",
    "question_th": "เกมนี้ซามีร์ นาสรีเล่นได้สกอร์เท่าไหร่?",
    "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_en": "Who is the player that played in the UEFA Euro 2012 qualifying Group A competition?",
    "question_th": "ใครคือผู้เล่นที่เล่นในการแข่งขันยูฟ่ายูโร 2012 รอบคัดเลือกกลุ่มเอ?",
    "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_en": "What is the ranking of the UEFA Euro 2012 qualifying Group A competition?",
    "question_th": "อันดับการแข่งขันกลุ่ม A รอบคัดเลือกยูฟ่า ยูโร 2012 เป็นอย่างไร?",
    "context": "CREATE TABLE table_24765815_2 (rank VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT production FROM table_2477085_1 WHERE alpina_model = \"B10 4,6\"",
    "question_en": "Name the production for alpina model being b10 4,6",
    "question_th": "ตั้งชื่อการผลิตสำหรับรุ่น alpina เป็น 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_en": "How many final score datas are there on Sunday, May 12?",
    "question_th": "ข้อมูลคะแนนสุดท้ายวันอาทิตย์ที่ 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_en": "The game on Saturday, May 25 took place on which week?",
    "question_th": "เกมวันเสาร์ที่ 25 พฤษภาคม จัดขึ้นในสัปดาห์ไหน?",
    "context": "CREATE TABLE table_24776075_2 (week INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT final_score FROM table_24776075_2 WHERE date = \"Saturday, May 25\"",
    "question_en": "What was the final score on Saturday, May 25?",
    "question_th": "คะแนนสุดท้ายวันเสาร์ที่ 25 พ.ค. เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_24776075_2 (final_score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT writer_s_ FROM table_24781886_2 WHERE _number = 10",
    "question_en": "When 10 is the number who is the writer?",
    "question_th": "เมื่อ 10 คือเลขใครเป็นคนเขียน?",
    "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_en": "When 6.66 is the amount of viewers what is the lowest production code?",
    "question_th": "เมื่อ 6.66 คือจำนวนคนดู รหัสการผลิตต่ำสุดคือเท่าใด?",
    "context": "CREATE TABLE table_24781886_2 (production_code INTEGER, viewers VARCHAR)"
  },
  {
    "answer": "SELECT MIN(_number) FROM table_24781886_2 WHERE viewers = \"7.55\"",
    "question_en": "When 7.55 is the amount of viewers what is the lowest number?",
    "question_th": "เมื่อ 7.55 คือจำนวนคนดู ต่ำสุดคือเท่าใด?",
    "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–31, 2010\"",
    "question_en": "How many figures are given for the New Democratic for the polling range May 11–31, 2010?",
    "question_th": "มีการระบุตัวเลขจำนวนเท่าใดสำหรับ New Democratic สำหรับช่วงการเลือกตั้งระหว่างวันที่ 11–31 พฤษภาคม 2553",
    "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–28, 2011\"",
    "question_en": "What format is the link for the polling data for February 10–28, 2011?",
    "question_th": "ลิงก์ข้อมูลการเลือกตั้งระหว่างวันที่ 10-28 กุมภาพันธ์ 2554 อยู่ในรูปแบบใด",
    "context": "CREATE TABLE table_24778847_2 (link VARCHAR, date_of_polling VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_24781886_3 WHERE _number = 9",
    "question_en": "When 9 is the number what is the title?",
    "question_th": "เมื่อ 9 เป็นตัวเลข ชื่ออะไร?",
    "context": "CREATE TABLE table_24781886_3 (title VARCHAR, _number VARCHAR)"
  },
  {
    "answer": "SELECT MAX(total) FROM table_24781886_3 WHERE _number = 3",
    "question_en": "When 3 is the number what is the highest total?",
    "question_th": "เมื่อ 3 เป็นตัวเลข อะไรคือผลรวมสูงสุด?",
    "context": "CREATE TABLE table_24781886_3 (total INTEGER, _number VARCHAR)"
  },
  {
    "answer": "SELECT air_date FROM table_24781886_3 WHERE viewers = \"7.08\"",
    "question_en": "When 7.08 is the amount of viewers what is the air date?",
    "question_th": "เมื่อ 7.08 คือยอดคนดู ออนแอร์วันไหนคะ?",
    "context": "CREATE TABLE table_24781886_3 (air_date VARCHAR, viewers VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(director) FROM table_24781886_3 WHERE viewers = \"7.08\"",
    "question_en": "When 7.08 is the amount of viewers how many directors are there?",
    "question_th": "เมื่อ 7.08 คือจำนวนคนดู จะมีผู้กำกับกี่คน?",
    "context": "CREATE TABLE table_24781886_3 (director VARCHAR, viewers VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_24798489_2 WHERE original_airdate = \"August 26, 2009\"",
    "question_en": "What location did the episode that aired originally on August 26, 2009 take place at?",
    "question_th": "ตอนที่ออกอากาศครั้งแรกเมื่อวันที่ 26 สิงหาคม 2552 เกิดขึ้นที่ใด",
    "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_en": "How many dates originally aired episodes located in Philadelphia, pennsylvania?",
    "question_th": "เดิมออกอากาศกี่ตอนในฟิลาเดลเฟีย เพนซิลเวเนีย",
    "context": "CREATE TABLE table_24798489_2 (original_airdate VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT challenge FROM table_24798489_2 WHERE episode_number = 28",
    "question_en": "What was the challenge for episode 28?",
    "question_th": "ความท้าทายสำหรับตอนที่ 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_en": "How many original air dates were there for episode 22?",
    "question_th": "ตอนที่ 22 มีกำหนดออกอากาศดั้งเดิมกี่วัน?",
    "context": "CREATE TABLE table_24798489_2 (original_airdate VARCHAR, episode_number VARCHAR)"
  },
  {
    "answer": "SELECT MIN(goals) FROM table_24807406_3",
    "question_en": "What was the lowest goals ever achieved?",
    "question_th": "เป้าหมายที่ต่ำที่สุดที่เคยบรรลุคืออะไร?",
    "context": "CREATE TABLE table_24807406_3 (goals INTEGER)"
  },
  {
    "answer": "SELECT afghan FROM table_24807774_1 WHERE arabic = \"Scottish\"",
    "question_en": "how many arabic scottish is afghan",
    "question_th": "อัฟกันเป็นชาวสก็อตอารบิกกี่คน",
    "context": "CREATE TABLE table_24807774_1 (afghan VARCHAR, arabic VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(cook_islands) FROM table_24807774_1 WHERE bosnian = \"Macedonian\"",
    "question_en": "how many bosnian in  cook islands  is macedonian",
    "question_th": "มีชาวมาซิโดเนียกี่คนในหมู่เกาะคุก",
    "context": "CREATE TABLE table_24807774_1 (cook_islands VARCHAR, bosnian VARCHAR)"
  },
  {
    "answer": "SELECT colombian FROM table_24807774_1 WHERE bangladeshi = \"Serbian\"",
    "question_en": "how many colombia in bangladesh is serbian",
    "question_th": "โคลัมเบียในบังคลาเทศมีเซอร์เบียกี่คน",
    "context": "CREATE TABLE table_24807774_1 (colombian VARCHAR, bangladeshi VARCHAR)"
  },
  {
    "answer": "SELECT arabic FROM table_24807774_1 WHERE colombian = \"Finnish\"",
    "question_en": "how many arabic in colobians is finnish",
    "question_th": "ชาวโคลอมเบียเป็นภาษาฟินแลนด์กี่คน",
    "context": "CREATE TABLE table_24807774_1 (arabic VARCHAR, colombian VARCHAR)"
  },
  {
    "answer": "SELECT bosnian FROM table_24807774_1 WHERE cook_islands = \"Sri Lankan\"",
    "question_en": "how many bosnian in cook islands is sri lankan",
    "question_th": "หมู่เกาะคุกมีบอสเนียกี่ตัวในศรีลังกา",
    "context": "CREATE TABLE table_24807774_1 (bosnian VARCHAR, cook_islands VARCHAR)"
  },
  {
    "answer": "SELECT afghan FROM table_24807774_1 WHERE bangladeshi = \"Hungarian\"",
    "question_en": "how many afghan in banglash is hungarian",
    "question_th": "ฮังการีมีชาวอัฟกันกี่คนในบังแลช",
    "context": "CREATE TABLE table_24807774_1 (afghan VARCHAR, bangladeshi VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_24807406_1 WHERE position = \"FW\" AND appearances = 2",
    "question_en": "What is the name if the appearance is 2 and the position is FW?",
    "question_th": "ถ้ารูปลักษณ์เป็น 2 และตำแหน่งเป็น 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_en": "What is the assists total number if the minutes is 1?",
    "question_th": "จำนวนแอสซิสต์ทั้งหมดเป็นเท่าใดหากนาทีเป็น 1?",
    "context": "CREATE TABLE table_24807406_1 (assists VARCHAR, minutes VARCHAR)"
  },
  {
    "answer": "SELECT MAX(appearances) FROM table_24807406_1 WHERE starts = 18",
    "question_en": "What is the appearance maximum if the starts is 18?",
    "question_th": "ถ้าออกสตาร์ทเป็นตัวจริงได้ 18 นัดจะปรากฏตัวได้สูงสุดเป็นจำนวนเท่าใด?",
    "context": "CREATE TABLE table_24807406_1 (appearances INTEGER, starts VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_2482547_5 WHERE average = \"15.89\"",
    "question_en": "What are the names of all the players with an average of 15.89?",
    "question_th": "นักเตะที่มีคะแนนเฉลี่ย 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_en": "What's the maximum wickets taken by players named Bill Lockwood?",
    "question_th": "ผู้เล่นชื่อ 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_en": "What are all the teams with an average of 15.89?",
    "question_th": "คะแนนเฉลี่ย 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_en": "Who are all the players who've bowled more than 4969 balls?",
    "question_th": "ใครคือผู้เล่นทุกคนที่ขว้างลูกมากกว่า 4969 ลูก?",
    "context": "CREATE TABLE table_2482547_5 (name VARCHAR, balls_bowled VARCHAR)"
  },
  {
    "answer": "SELECT average FROM table_2482547_5 WHERE wickets_taken = 212",
    "question_en": "What are the averages for games with 212 wickets taken?",
    "question_th": "ค่าเฉลี่ยของเกมที่มี 212 ประตูเป็นเท่าใด?",
    "context": "CREATE TABLE table_2482547_5 (average VARCHAR, wickets_taken VARCHAR)"
  },
  {
    "answer": "SELECT turbine_manufacturer FROM table_24837750_1 WHERE county = \"Wheatland\"",
    "question_en": "Who was the turbine manufacturer for the Wheatland county?",
    "question_th": "ใครคือผู้ผลิตกังหันสำหรับเทศมณฑล Wheatland",
    "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_en": "How many turbine manufacturers installed a capacity of 189 MW?",
    "question_th": "มีผู้ผลิตกังหันกี่รายติดตั้งกำลังการผลิต 189 เมกะวัตต์?",
    "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_en": "How much capacity was installed in Wheatland?",
    "question_th": "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_en": "Who was the turbine manufacturer of the wind farm that started service on 2005?",
    "question_th": "ใครคือผู้ผลิตกังหันของฟาร์มกังหันลมที่เริ่มให้บริการในปี 2548",
    "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_en": "When did this wind farm started service with a capacity of 135 MW?",
    "question_th": "ฟาร์มกังหันลมแห่งนี้เริ่มให้บริการด้วยกำลังการผลิต 135 เมกะวัตต์เมื่อใด",
    "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_en": "When did the wind farm in Musselshell started service?",
    "question_th": "ฟาร์มกังหันลมในหอยแมลงภู่เริ่มให้บริการเมื่อใด",
    "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_en": "What was the largest attendance at the Rheinstadion?",
    "question_th": "ผู้เข้าร่วมที่ใหญ่ที่สุดที่ Rheinstadion คืออะไร?",
    "context": "CREATE TABLE table_24814477_2 (attendance INTEGER, game_site VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_24814477_2 WHERE opponent = \"Amsterdam Admirals\"",
    "question_en": "What week did the Galaxy play the Amsterdam Admirals?",
    "question_th": "Galaxy เล่น Amsterdam Admirals สัปดาห์ใด",
    "context": "CREATE TABLE table_24814477_2 (week VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_24814477_2 WHERE week = 8",
    "question_en": "Who was the opponent in Week 8?",
    "question_th": "คู่ต่อสู้ในสัปดาห์ที่ 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_en": "Who was the Class A winner when the Class C winner was David Haynes?",
    "question_th": "ใครคือผู้ชนะคลาส A เมื่อผู้ชนะคลาส C คือ 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_en": "Who was the Class C winner in round 8?",
    "question_th": "ใครคือผู้ชนะคลาส C ในรอบ 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_en": "Who was the Class D winner in round 6?",
    "question_th": "ใครคือผู้ชนะคลาส D ในรอบ 6?",
    "context": "CREATE TABLE table_24852622_1 (class_d_winner VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT circuit FROM table_24852622_1 WHERE round = \"2\"",
    "question_en": "What was the circuit in round 2?",
    "question_th": "รอบที่ 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_en": "In which round did Roy Salvadori won Class D and Alan Hutcheson won Class B?",
    "question_th": "รอย ซัลวาดอรีชนะคลาส D และอลัน ฮัตเชสันชนะคลาส 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_en": "When did Alan Hutcheson won Class B on round 1?",
    "question_th": "Alan Hutcheson ชนะคลาส B ในรอบที่ 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_en": "How many field goals did Stacey Thomas have? ",
    "question_th": " Stacey Thomas ยิงประตูได้กี่ประตู?",
    "context": "CREATE TABLE table_24850487_5 (field_goals VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(assists) FROM table_24850487_5 WHERE rebounds = 121",
    "question_en": "How many assists did the player who had 121 rebounds have? ",
    "question_th": " ผู้เล่นที่ทำ 121 รีบาวด์ได้กี่แอสซิสต์?",
    "context": "CREATE TABLE table_24850487_5 (assists INTEGER, rebounds VARCHAR)"
  },
  {
    "answer": "SELECT MIN(field_goals) FROM table_24850487_5 WHERE blocks = 8",
    "question_en": "How many field goals did the player who had 8 blocks have? ",
    "question_th": " ผู้เล่นที่มี 8 บล็อกมีเป้าหมายในสนามกี่ประตู?",
    "context": "CREATE TABLE table_24850487_5 (field_goals INTEGER, blocks VARCHAR)"
  },
  {
    "answer": "SELECT MIN(assists) FROM table_24850487_5 WHERE minutes = 863",
    "question_en": "How many assists did the player who had 863 minutes have? ",
    "question_th": " นักเตะที่ได้เวลา 863 นาทีทำได้กี่แอสซิสต์?",
    "context": "CREATE TABLE table_24850487_5 (assists INTEGER, minutes VARCHAR)"
  },
  {
    "answer": "SELECT blocks FROM table_24850487_5 WHERE rebounds = 59",
    "question_en": "How many blocks did the player who had 59 rebounds have? ",
    "question_th": " ผู้เล่นที่มี 59 รีบาวด์มีกี่บล็อก?",
    "context": "CREATE TABLE table_24850487_5 (blocks VARCHAR, rebounds VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_24852001_2 WHERE attendance = 16115",
    "question_en": "Who were the opponents that had an attendance of exactly 16115?",
    "question_th": "ใครคือคู่ต่อสู้ที่มีผู้เข้าร่วม 16,115 คนพอดี?",
    "context": "CREATE TABLE table_24852001_2 (opponent VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT team_record FROM table_24852001_2 WHERE opponent = \"Frankfurt Galaxy\"",
    "question_en": "What was the team record after the Frankfurt Galaxy matchup?",
    "question_th": "สถิติของทีมหลังเกมแฟรงค์เฟิร์ต กาแล็กซี่ เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_24852001_2 (team_record VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT game_site FROM table_24852001_2 WHERE opponent = \"Frankfurt Galaxy\"",
    "question_en": "What was the game site for the matchup against the Frankfurt Galaxy?",
    "question_th": "เว็บไซต์เกมสำหรับการจับคู่กับแฟรงก์เฟิร์ตกาแล็กซี่คืออะไร?",
    "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étition\"",
    "question_en": "How many results did the GT1 Winning Team No. 50 Larbre Compétition on the Algarve circuit?",
    "question_th": "ทีมผู้ชนะ GT1 หมายเลข 50 Larbre Compétition บนสนาม Algarve ทำได้กี่คะแนน?",
    "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_en": "How many winning teams are there on LMP2 if Gabriele Gardel Patrice Goueslard Fernando Rees was the GT1 Winning Team on the Algarve circuit?",
    "question_th": "มีทีมที่ชนะกี่ทีมใน LMP2 หาก Gabriele Gardel Patrice Goueslard Fernando Rees เป็นทีมที่ชนะ GT1 ในสนาม Algarve",
    "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_en": "Who was the GT2 Winning Team if Greg Mansell Leo Mansell was the LMP1 Winning Team?",
    "question_th": "ใครคือทีมผู้ชนะ GT2 หาก Greg Mansell Leo Mansell เป็นทีมผู้ชนะ LMP1",
    "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_en": "What was the maximum round where Marc Lieb Richard Lietz was on the GT2 Winning Team?",
    "question_th": "รอบสูงสุดที่ Marc Lieb Richard Lietz อยู่ในทีมผู้ชนะ GT2 คืออะไร?",
    "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_en": "How many won the LMP1 on round 4 if No. 42 Strakka Racing was the LMP2 Winning Team?",
    "question_th": "มีกี่คนที่ชนะ LMP1 ในรอบที่ 4 ถ้าหมายเลข 42 Strakka Racing เป็นทีมที่ชนะ LMP2",
    "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_en": "In what round did Mike Newton Thomas Erdos Ben Collins won the LMP2?",
    "question_th": "Mike Newton Thomas Erdos Ben Collins คว้าแชมป์ 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_en": "How many blocks did tye'sha fluker have?",
    "question_th": "ty'sha fluker มีบล็อกกี่บล็อก?",
    "context": "CREATE TABLE table_24856332_4 (blocks INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(steals) FROM table_24856332_4 WHERE minutes = 324",
    "question_en": "What is the highest number of steals for a player with 324 minutes?",
    "question_th": "จำนวนการขโมยมากที่สุดสำหรับผู้เล่นในเวลา 324 นาทีคือเท่าไร?",
    "context": "CREATE TABLE table_24856332_4 (steals INTEGER, minutes VARCHAR)"
  },
  {
    "answer": "SELECT MIN(minutes) FROM table_24856332_4 WHERE steals = 47",
    "question_en": "What is the lowest number of minutes for a player with 47 steals?",
    "question_th": "จำนวนนาทีต่ำสุดสำหรับผู้เล่นที่ขโมยได้ 47 ครั้งคือเท่าไร?",
    "context": "CREATE TABLE table_24856332_4 (minutes INTEGER, steals VARCHAR)"
  },
  {
    "answer": "SELECT mixed_doubles FROM table_2486023_1 WHERE year = 1991",
    "question_en": "Who played Mixed Doubles in 1991?",
    "question_th": "ใครเล่นคู่ผสมในปี 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_en": "Who was the home team who played plymouth argyle?",
    "question_th": "ทีมเจ้าบ้านที่เล่น พลีมัธ อาร์ไกล์ คือใคร?",
    "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_en": "What was the score when the away team was norwich city?",
    "question_th": "เมื่อทีมเยือนเป็นนอริช ซิตี้ สกอร์เท่าไหร่?",
    "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_en": "Who played as the away team when coventry city was the home team?",
    "question_th": "ใครเล่นเป็นทีมเยือนเมื่อโคเวนทรีซิตี้เป็นทีมเหย้า?",
    "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_en": "What is the final score when they played Frankfurt Galaxy?",
    "question_th": "สกอร์สุดท้ายเมื่อเล่นแฟรงค์เฟิร์ต กาแล็กซี่เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_24882796_2 (final_score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_24887326_6 WHERE tie_no = 11",
    "question_en": "Who is the away team for tie no 11?",
    "question_th": "ทีมเยือนนัดที่ 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_en": "Who is the away team for tie no 15?",
    "question_th": "ทีมเยือนนัดที่ 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_en": "What is the highest tie that had 19129 attendance?",
    "question_th": "เสมอกันสูงสุดที่มีผู้เข้าร่วม 19,129 คนคืออะไร?",
    "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_en": "What is the tie when the home team is Stoke City?",
    "question_th": "เสมอกันยังไงเมื่อเจ้าบ้านเจอสโต๊คซิตี้?",
    "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_en": "What tie has Orient as the home team?",
    "question_th": "โอเรียนท์เป็นเจ้าบ้านเสมอกันขนาดไหน?",
    "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_en": "How many dates are there for tie number 12?",
    "question_th": "ไทหมายเลข 12 มีกี่วัน?",
    "context": "CREATE TABLE table_24887326_6 (date VARCHAR, tie_no VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(equipment) FROM table_24898185_4 WHERE points = 556",
    "question_en": "When 556 is the amount of points how much equipment is there?",
    "question_th": "เมื่อ 556 คือจำนวนแต้มจะมีอุปกรณ์เท่าไร?",
    "context": "CREATE TABLE table_24898185_4 (equipment VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT championship FROM table_24901152_4 WHERE score = \"6–4, 5–7, 6–2\"",
    "question_en": "Which championship was the score 6–4, 5–7, 6–2?",
    "question_th": "แชมป์เปี้ยนชิพใดมีสกอร์ 6–4, 5–7, 6–2?",
    "context": "CREATE TABLE table_24901152_4 (championship VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT opponents FROM table_24901152_4 WHERE championship = \"Rome\"",
    "question_en": "Who were the opponents in the Rome championship?",
    "question_th": "ใครคือคู่ต่อสู้ในการแข่งขันชิงแชมป์โรม?",
    "context": "CREATE TABLE table_24901152_4 (opponents VARCHAR, championship VARCHAR)"
  },
  {
    "answer": "SELECT MAX(minutes) FROM table_24908692_5 WHERE field_goals = 70",
    "question_en": "What is the maximum number of minutes associated with exactly 70 field goals?",
    "question_th": "จำนวนนาทีสูงสุดที่เกี่ยวข้องกับการยิงประตู 70 ครั้งคือเท่าใด?",
    "context": "CREATE TABLE table_24908692_5 (minutes INTEGER, field_goals VARCHAR)"
  },
  {
    "answer": "SELECT MIN(field_goals) FROM table_24908692_5 WHERE assists = 84",
    "question_en": "What is the minimum number of field goals associated with exactly 84 assists?",
    "question_th": "จำนวนการยิงประตูขั้นต่ำที่เกี่ยวข้องกับ 84 แอสซิสต์คือเท่าใด?",
    "context": "CREATE TABLE table_24908692_5 (field_goals INTEGER, assists VARCHAR)"
  },
  {
    "answer": "SELECT steals FROM table_24908692_5 WHERE player = \"Tamika Williams\"",
    "question_en": "How many steals did Tamika Williams have?",
    "question_th": "Tamika Williams ขโมยได้กี่ครั้ง?",
    "context": "CREATE TABLE table_24908692_5 (steals VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(steals) FROM table_24906653_5 WHERE blocks = 1",
    "question_en": "List the number of takeaways with 1 rejection.",
    "question_th": "ระบุจำนวนประเด็นที่มีการปฏิเสธ 1 ครั้ง",
    "context": "CREATE TABLE table_24906653_5 (steals VARCHAR, blocks VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(field_goals) FROM table_24906653_5 WHERE player = \"Tonya Edwards\"",
    "question_en": "How many long range shots did tonya edwards make.",
    "question_th": "โทนี่ เอ็ดเวิร์ดส์ยิงระยะไกลได้กี่นัด",
    "context": "CREATE TABLE table_24906653_5 (field_goals VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(field_goals) FROM table_24906653_5 WHERE points = 171",
    "question_en": "List the number of long range shors where the score is 171.",
    "question_th": "ระบุจำนวนนักดำน้ำระยะไกลที่มีคะแนน 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_en": "Who won best amiga demo when tribes ( pulse & melon dezign) won best pc demo?",
    "question_th": "ใครชนะการสาธิต Amiga ที่ดีที่สุดเมื่อ Tribes (Pulse & Melon dezign) ชนะการสาธิตพีซีที่ดีที่สุด?",
    "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_en": "What won best amiga demo when alto knallo (free electric band) won best pc demo?",
    "question_th": "อะไรจะชนะการสาธิต Amiga ที่ดีที่สุดเมื่อ alto knallo (วงดนตรีไฟฟ้าฟรี) ชนะการสาธิตพีซีที่ดีที่สุด",
    "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_en": "What won best pc intro when my kingdom (haujobb & scoopex) won best amiga demo?",
    "question_th": "อะไรจะชนะอินโทรพีซีที่ดีที่สุดเมื่ออาณาจักรของฉัน (haujobb & Scoopex) ชนะการสาธิต Amiga ที่ดีที่สุด?",
    "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_en": "What won est pc intro when 4k0 (polka brothers) won best amiga intro?",
    "question_th": "อะไรจะชนะอินโทรพีซีเมื่อ 4k0 (polka Brothers) ชนะอินโทรเอมิกาที่ดีที่สุด?",
    "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_en": "What won best pc demo when tower power (camelot) won best c64 demo?",
    "question_th": "อะไรจะชนะการสาธิตพีซีที่ดีที่สุดเมื่อ Tower Power (Camelot) ชนะการสาธิต C64 ที่ดีที่สุด",
    "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_en": "What year did fr-08: the product ( farbrausch ) win best pc intro?",
    "question_th": "fr-08: ผลิตภัณฑ์ (farbrausch) ชนะรางวัลแนะนำพีซีที่ดีที่สุดในปีใด",
    "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_en": "What is the episode title that had a US viewership of 8.16?",
    "question_th": "ชื่อตอนที่มีผู้ชมในสหรัฐฯ 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_en": "Who wrote the episodes that had a viewership of 7.14?",
    "question_th": "ใครเป็นคนเขียนตอนที่มีผู้ชม 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_en": "How many episodes received rating of 8.2?",
    "question_th": "มีกี่ตอนที่ได้เรตติ้ง 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_en": "How many share figures are there for the episode that aired on October 17, 2007?",
    "question_th": "ตอนที่ออกอากาศวันที่ 17 ตุลาคม 2550 มีตัวเลขแชร์ทั้งหมดกี่ตัว",
    "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_en": "How many episodes aired on October 17, 2007?",
    "question_th": "ออกอากาศวันที่ 17 ตุลาคม 2550 กี่ตอน?",
    "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_en": "How many timeslots received a rating of 5.7?",
    "question_th": "มีกี่ครั้งที่ได้รับคะแนน 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_en": "How many writers are listed when the U.S viewers are 11.21 million?",
    "question_th": "มีนักเขียนกี่คนที่ระบุไว้เมื่อมีผู้ชมชาวอเมริกัน 11.21 ล้านคน?",
    "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_en": "Who is the director when there is 8.44 million viewers?",
    "question_th": "ผู้กำกับคนไหนในเมื่อมีผู้ชม 8.44 ล้านคน?",
    "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_en": "Who is the director when the writter is Andrea Newman?",
    "question_th": "ใครคือผู้กำกับในเมื่อผู้เขียนคือ 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_en": "What is the title when the writer is Emily Halpern?",
    "question_th": "ชื่อเรื่องเมื่อผู้เขียนคือ 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_en": "Who is the director when there is 11.21 million viewers?",
    "question_th": "ผู้กำกับคนไหนในเมื่อมีผู้ชม 11.21 ล้านคน?",
    "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_en": "How many titles are listed with 8.44 million viewers?",
    "question_th": "มีกี่รายการที่มีผู้ชม 8.44 ล้านคน?",
    "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_en": "How many field goals had 597 points?",
    "question_th": "ยิงประตูได้กี่แต้ม 597 แต้ม?",
    "context": "CREATE TABLE table_24915964_4 (field_goals VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT MIN(minutes) FROM table_24915964_4 WHERE player = \"Sue Bird\"",
    "question_en": "How many minutes were played by Sue Bird?",
    "question_th": "ซูเบิร์ดเล่นกี่นาที?",
    "context": "CREATE TABLE table_24915964_4 (minutes INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(rebounds) FROM table_24913533_4 WHERE steals = 35",
    "question_en": "What is the maximum number of rebounds for players having exactly 35 steals?",
    "question_th": "จำนวนรีบาวด์สูงสุดสำหรับผู้เล่นที่มีการขโมย 35 ครั้งคือเท่าใด?",
    "context": "CREATE TABLE table_24913533_4 (rebounds INTEGER, steals VARCHAR)"
  },
  {
    "answer": "SELECT steals FROM table_24913533_4 WHERE blocks = 3",
    "question_en": "What are the numbers of steals associated with players having exactly 3 blocks?",
    "question_th": "จำนวนการขโมยที่เกี่ยวข้องกับผู้เล่นที่มี 3 บล็อกพอดีคือเท่าใด",
    "context": "CREATE TABLE table_24913533_4 (steals VARCHAR, blocks VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(rebounds) FROM table_24913533_4 WHERE points = 18",
    "question_en": "How many numbers of rebounds are associated with exactly 18 points?",
    "question_th": "จำนวนการรีบาวน์ที่เกี่ยวข้องกับ 18 แต้มพอดี?",
    "context": "CREATE TABLE table_24913533_4 (rebounds VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT MAX(assists) FROM table_24913533_4 WHERE player = \"Anastasia Kostaki\"",
    "question_en": "What is the maximum number of assists for players named Anastasia Kostaki?",
    "question_th": "จำนวนแอสซิสต์สูงสุดสำหรับผู้เล่นที่ชื่ออนาสตาเซีย คอสตากีคือเท่าไร?",
    "context": "CREATE TABLE table_24913533_4 (assists INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(steals) FROM table_24912693_4 WHERE player = \"Tiffani Johnson\"",
    "question_en": "What is Tiffani Johnson's maximum steals?",
    "question_th": "การขโมยสูงสุดของ Tiffani Johnson คืออะไร?",
    "context": "CREATE TABLE table_24912693_4 (steals INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_24912693_4 WHERE blocks = 17",
    "question_en": "Which player has 17 blocks?",
    "question_th": "ผู้เล่นคนไหนมี 17 บล็อก?",
    "context": "CREATE TABLE table_24912693_4 (player VARCHAR, blocks VARCHAR)"
  },
  {
    "answer": "SELECT MIN(field_goals) FROM table_24912693_4 WHERE rebounds = 84",
    "question_en": "How many field goals does the player with 84 rebounds have?",
    "question_th": "ผู้เล่นที่มี 84 รีบาวด์มีการยิงประตูได้กี่ประตู?",
    "context": "CREATE TABLE table_24912693_4 (field_goals INTEGER, rebounds VARCHAR)"
  },
  {
    "answer": "SELECT blocks FROM table_24912693_4 WHERE minutes = 893",
    "question_en": "How many blocks does the player who played 893 minutes have?",
    "question_th": "ผู้เล่นที่เล่น 893 นาทีมีกี่บล็อค?",
    "context": "CREATE TABLE table_24912693_4 (blocks VARCHAR, minutes VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_24912693_4 WHERE steals = 2",
    "question_en": "How many points does the player with 2 steals have?",
    "question_th": "ผู้เล่นที่ขโมย 2 ครั้งได้กี่แต้ม?",
    "context": "CREATE TABLE table_24912693_4 (points VARCHAR, steals VARCHAR)"
  },
  {
    "answer": "SELECT MAX(number) FROM table_24924576_2",
    "question_en": "Name the most number",
    "question_th": "ตั้งชื่อหมายเลขมากที่สุด",
    "context": "CREATE TABLE table_24924576_2 (number INTEGER)"
  },
  {
    "answer": "SELECT titles FROM table_24924576_2 WHERE result = \"TKO 11/12\"",
    "question_en": "Name the titles for tko 11/12",
    "question_th": "ตั้งชื่อหัวข้อสำหรับ 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_en": "Where was the game played when the result/margin was won by 70?",
    "question_th": "เกมเล่นที่ไหนเมื่อผลลัพธ์/มาร์จิ้นชนะ 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_en": "What is the result/margin when fox sports 1 broadcast the game played at mcg?",
    "question_th": "ผลลัพธ์/ส่วนต่างเมื่อ Fox Sports 1 ออกอากาศเกมที่เล่นที่ 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_en": "Which network broadcast the game when the Western Bulldogs played melbourne?",
    "question_th": "เครือข่ายใดถ่ายทอดเกมเมื่อ Western Bulldogs เล่นกับเมลเบิร์น?",
    "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_en": "Where was the game played when the score was 14.16 (100)-12.12 (84)?",
    "question_th": "แข่งที่ไหนคะสกอร์ 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)–14.6 (90)\"",
    "question_en": "What was the ladder position when the score was 15.9 (99)–14.6 (90)?",
    "question_th": "ตำแหน่งบันไดเมื่อคะแนนคือ 15.9 (99)–14.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_en": "On what date was the game played when the Western Bulldogs were in 8th ladder position and hawthorn was the opposing team?",
    "question_th": "เกมนี้เล่นวันไหนเมื่อ Western Bulldogs อยู่อันดับที่ 8 และมี Hawthorn เป็นทีมตรงข้าม?",
    "context": "CREATE TABLE table_24919137_2 (date VARCHAR, ladder_position VARCHAR, opposition VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_24935743_2 WHERE nickname = \"Panthers\"",
    "question_en": "What school is nicknamed the panthers?",
    "question_th": "โรงเรียนอะไรมีชื่อเล่นว่าเสือดำ?",
    "context": "CREATE TABLE table_24935743_2 (school VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_24935743_2 WHERE school = \"Jeromesville\"",
    "question_en": "What school is in Jeromesville?",
    "question_th": "โรงเรียนอะไรในเจอโรมส์วิลล์?",
    "context": "CREATE TABLE table_24935743_2 (location VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT previous_school FROM table_24925945_3 WHERE height = \"ft7in (m)\"",
    "question_en": "What was the previous school of the ft7in (m) tall player?",
    "question_th": "นักเตะส่วนสูง 7 นิ้ว (ม.) ก่อนหน้านี้คือรุ่นไหน?",
    "context": "CREATE TABLE table_24925945_3 (previous_school VARCHAR, height VARCHAR)"
  },
  {
    "answer": "SELECT previous_school FROM table_24925945_3 WHERE _number = 22",
    "question_en": "What was the previous school of #22?",
    "question_th": "โรงเรียนเก่า #22 คืออะไร?",
    "context": "CREATE TABLE table_24925945_3 (previous_school VARCHAR, _number VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_24938621_2 WHERE production_code = \"3X5402\"",
    "question_en": "What is the title of the episode with production code 3x5402?",
    "question_th": "ชื่อเรื่องของตอนที่มีรหัสการผลิต 3x5402 คืออะไร?",
    "context": "CREATE TABLE table_24938621_2 (title VARCHAR, production_code VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_24938621_2 WHERE production_code = \"3X5405\"",
    "question_en": "What is the title of the episode with production code 3x5405?",
    "question_th": "ชื่อเรื่องของตอนที่มีรหัสการผลิต 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_en": "Who as the home team for game on 5 october 2011?",
    "question_th": "ใครเป็นเจ้าบ้านในเกมวันที่ 5 ตุลาคม 2554?",
    "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–0\"",
    "question_en": "What was the stadium for the home team of shamrock rovers and result of 3–0?",
    "question_th": "สนามใดของทีมเจ้าบ้านแชมร็อคโรเวอร์สและผลการแข่งขัน 3–0?",
    "context": "CREATE TABLE table_24949975_1 (stadium VARCHAR, home_team VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_24949975_1 WHERE result = \"2–1\" AND home_team = \"Bohemians\"",
    "question_en": "What was the away team when the result was 2–1 and home team was the bohemians?",
    "question_th": "ทีมเยือนเป็นทีมไหนเมื่อผลเป็น 2–1 และทีมเจ้าบ้านเป็นโบฮีเมียน?",
    "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–0\"",
    "question_en": "Who was the home team for the 2013 season and the result was 0–0?",
    "question_th": "ทีมเจ้าบ้านในฤดูกาล 2013 คือใคร และผลการแข่งขันคือ 0–0?",
    "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–1\"",
    "question_en": "What is the date for the game at the tallaght stadium and result was 0–1?",
    "question_th": "เกมที่สนามทัลลาจคือวันที่เท่าไหร่และผลการแข่งขันคือ 0–1?",
    "context": "CREATE TABLE table_24949975_1 (date VARCHAR, stadium VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_24951872_2 WHERE game_site = \"Waldstadion\"",
    "question_en": "What opponents played Waldstadion in a game?",
    "question_th": "คู่แข่งคนใดที่เล่น Waldstadion ในเกม?",
    "context": "CREATE TABLE table_24951872_2 (opponent VARCHAR, game_site VARCHAR)"
  },
  {
    "answer": "SELECT MAX(week) FROM table_24951872_2 WHERE attendance = 10738",
    "question_en": "What was the maximum week that had attendance of 10738?",
    "question_th": "สัปดาห์สูงสุดที่มีผู้เข้าร่วม 1,0738 คนคือเท่าใด",
    "context": "CREATE TABLE table_24951872_2 (week INTEGER, attendance VARCHAR)"
  },
  {
    "answer": "SELECT production_code FROM table_24938621_3 WHERE written_by = \"Cathryn Humphris\"",
    "question_en": "What is the production code of the episode written by Cathryn Humphris?",
    "question_th": "รหัสการผลิตของตอนที่เขียนโดย 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_en": "What is the production code of the episode that had 5.43 million viewers?",
    "question_th": "รหัสการผลิตของตอนที่มีผู้ชม 5.43 ล้านคนคืออะไร?",
    "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_en": "What was the title of the episode directed by Jesse Warn?",
    "question_th": "ตอนที่กำกับโดย 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_en": "What episode number was written by Gregg Hurwitz?",
    "question_th": "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_en": "If the dry density is 800, what is the drying shrinkage %?",
    "question_th": "ถ้าความหนาแน่นของแห้งคือ 800 เปอร์เซ็นต์การหดตัวของการทำให้แห้งเป็นเท่าใด",
    "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_en": "What number in the series was episode 7 in the season?",
    "question_th": "หมายเลขใดในซีรีส์คือตอนที่ 7 ของฤดูกาล",
    "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_en": "Who wrote the episode that had 12.15 million viewers?",
    "question_th": "ใครเป็นคนเขียนตอนที่มีผู้ชม 12.15 ล้านคน?",
    "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_en": "What number in the season was the episode with 12.23 million viewers?",
    "question_th": "ตอนที่มีผู้ชม 12.23 ล้านคนในฤดูกาลนี้มีจำนวนเท่าใด",
    "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_en": "What is the date of the game at Olympic Stadium?",
    "question_th": "การแข่งขันที่สนามกีฬาโอลิมปิกคือวันที่เท่าไร?",
    "context": "CREATE TABLE table_24989925_2 (date VARCHAR, game_site VARCHAR)"
  },
  {
    "answer": "SELECT MAX(week) FROM table_24989925_2",
    "question_en": "How many weeks total are there?",
    "question_th": "มีทั้งหมดกี่สัปดาห์?",
    "context": "CREATE TABLE table_24989925_2 (week INTEGER)"
  },
  {
    "answer": "SELECT team_record FROM table_24989925_2 WHERE game_site = \"RheinEnergieStadion\"",
    "question_en": "What was the team's record when they played at Rheinenergiestadion?",
    "question_th": "สถิติของทีมเมื่อเล่นที่ไรเนอเนอจิสตาดิโอนคืออะไร?",
    "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_en": "What is the lowest overall number of  09-10 oi 2nd?",
    "question_th": "เลขรวมต่ำสุด 09-10 oi อันดับ 2 คือเท่าไร?",
    "context": "CREATE TABLE table_24990183_6 (Id VARCHAR)"
  },
  {
    "answer": "SELECT MAX(09 AS _10_i_o_best) FROM table_24990183_4",
    "question_en": "What was the maximum 09-10 i/o best?",
    "question_th": "ค่าสูงสุดของ 09-10 i/o ที่ดีที่สุดคืออะไร?",
    "context": "CREATE TABLE table_24990183_4 (Id VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_24990183_7 WHERE rank = 17",
    "question_en": "If the rank is 17, what are the names?",
    "question_th": "ถ้าอันดับ 17 ชื่ออะไรคะ?",
    "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_en": "If the WS points is 947, what is the 08-09 gp/jgp 2nd ?",
    "question_th": "หากคะแนน WS คือ 947 แล้ว 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_en": "How many points did he have when he has in the 34th position? ",
    "question_th": " เขาได้กี่คะแนนเมื่ออยู่ในอันดับที่ 34?",
    "context": "CREATE TABLE table_24998088_1 (points VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT wins FROM table_24998088_1 WHERE points = \"112\"",
    "question_en": "How many wins were listed when he had 112 points? ",
    "question_th": " เขามีชัยชนะกี่ครั้งเมื่อเขามี 112 คะแนน?",
    "context": "CREATE TABLE table_24998088_1 (wins VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT series FROM table_24998088_1 WHERE position = \"7th\"",
    "question_en": "In what series did he have the 7th position? ",
    "question_th": " เขามีตำแหน่งที่ 7 ในซีรีส์ใด?",
    "context": "CREATE TABLE table_24998088_1 (series VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_24998088_1 WHERE position = \"8th\"",
    "question_en": "what were his points when he was in 8th position? ",
    "question_th": " เขาได้แต้มอะไรตอนที่เขาอยู่อันดับที่ 8?",
    "context": "CREATE TABLE table_24998088_1 (points VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT vote FROM table_25016824_2 WHERE air_date = \"4 October 1997\"",
    "question_en": "What was the vote when the air date is 4 october 1997?",
    "question_th": "โหวตอะไรคะเมื่อออนแอร์วันที่ 4 ตุลาคม 2540?",
    "context": "CREATE TABLE table_25016824_2 (vote VARCHAR, air_date VARCHAR)"
  },
  {
    "answer": "SELECT eliminated FROM table_25016824_2 WHERE immunity = \"Kent (Jürgen)\"",
    "question_en": "Who was eliminated when immunity went to kent (jürgen)?",
    "question_th": "ใครถูกกำจัดเมื่อภูมิคุ้มกันไปเคนท์ (เจอร์เก้น)?",
    "context": "CREATE TABLE table_25016824_2 (eliminated VARCHAR, immunity VARCHAR)"
  },
  {
    "answer": "SELECT eliminated FROM table_25016824_2 WHERE vote = \"8-1\"",
    "question_en": "Who was eliminated when the vote was 8-1?",
    "question_th": "ใครตกรอบเมื่อคะแนนเสียงเป็น 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_en": "How many entries are there for vote when the air date was 15 november 1997?",
    "question_th": "มีผู้เข้าลงคะแนนกี่คนเมื่อออกอากาศวันที่ 15 พฤศจิกายน 2540",
    "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_en": "What was the  reward  when immunity went to martin and finish is 13th voted out 8th jury member day 46?",
    "question_th": "รางวัลคืออะไรเมื่อภูมิคุ้มกันไปมาร์ตินและจบอันดับที่ 13 โหวตออกจากสมาชิกคณะลูกขุนที่ 8 วันที่ 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_en": "How many values for Macedonian correspond to Slovianski value of Veliki?",
    "question_th": "มีกี่ค่าสำหรับภาษามาซิโดเนียที่ตรงกับค่าภาษาสโลวีเนียของเวลิกี?",
    "context": "CREATE TABLE table_25008327_8 (macedonian VARCHAR, slovianski VARCHAR)"
  },
  {
    "answer": "SELECT slovak FROM table_25008327_8 WHERE ukrainian = \"пес, собака\"",
    "question_en": "What area all values for Slovak when value for Ukranian is пес, собака?",
    "question_th": "ค่าทั้งหมดสำหรับภาษาสโลวักครอบคลุมพื้นที่ใดเมื่อค่าสำหรับภาษายูเครนคือ пес, собака?",
    "context": "CREATE TABLE table_25008327_8 (slovak VARCHAR, ukrainian VARCHAR)"
  },
  {
    "answer": "SELECT croatian FROM table_25008327_8 WHERE english = \"dog\"",
    "question_en": "What is every value for Croatian when value for English is dog?",
    "question_th": "ค่าทั้งหมดสำหรับภาษาโครเอเชียคืออะไรเมื่อค่าสำหรับภาษาอังกฤษคือ dog?",
    "context": "CREATE TABLE table_25008327_8 (croatian VARCHAR, english VARCHAR)"
  },
  {
    "answer": "SELECT polish FROM table_25008327_8 WHERE belarusian = \"ноч\"",
    "question_en": "What is every value for Polish when Balarusian is ноч?",
    "question_th": "ค่าใดของภาษาโปแลนด์เมื่อภาษาบาลารุสเป็น ноч?",
    "context": "CREATE TABLE table_25008327_8 (polish VARCHAR, belarusian VARCHAR)"
  },
  {
    "answer": "SELECT russian FROM table_25008327_8 WHERE bulgarian = \"пес, куче\"",
    "question_en": "What is every value for Russian when value for Bulgarian is пес, куче?",
    "question_th": "ทุกค่าของรัสเซียจะเป็นเท่าใดเมื่อค่าของบัลแกเรียคือ пес, куче?",
    "context": "CREATE TABLE table_25008327_8 (russian VARCHAR, bulgarian VARCHAR)"
  },
  {
    "answer": "SELECT словјански FROM table_25008327_8 WHERE polish = \"książka\"",
    "question_en": "What is every value for словјански if polish is książka?",
    "question_th": "ทุกค่าของ словјански คืออะไร ถ้าภาษาโปแลนด์คือ księżka?",
    "context": "CREATE TABLE table_25008327_8 (словјански VARCHAR, polish VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_25017530_5 WHERE player = \"Christopher Smith\"",
    "question_en": "Name the position for christopher smith",
    "question_th": "ตั้งชื่อตำแหน่งคริสโตเฟอร์ สมิธ",
    "context": "CREATE TABLE table_25017530_5 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_25017530_5 WHERE player = \"Nate Binder\"",
    "question_en": "Name the college for nate binder",
    "question_th": "ตั้งชื่อวิทยาลัยสำหรับเนท ไบเดอร์",
    "context": "CREATE TABLE table_25017530_5 (college VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MIN(pick__number) FROM table_25017530_5 WHERE player = \"Steven Turner\"",
    "question_en": "Name the least pick number for steven turner",
    "question_th": "ตั้งชื่อหมายเลขเลือกน้อยที่สุดสำหรับสตีเว่น เทิร์นเนอร์",
    "context": "CREATE TABLE table_25017530_5 (pick__number INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT cfl_team FROM table_25017530_5 WHERE player = \"Steven Turner\"",
    "question_en": "Name the cfl team for steven turner",
    "question_th": "ตั้งชื่อทีม cfl ให้กับสตีเว่น เทิร์นเนอร์",
    "context": "CREATE TABLE table_25017530_5 (cfl_team VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT cfl_team FROM table_25017530_6 WHERE position = \"LB\"",
    "question_en": "Name the cfl team for lb position",
    "question_th": "ตั้งชื่อทีม cfl สำหรับตำแหน่ง lb",
    "context": "CREATE TABLE table_25017530_6 (cfl_team VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT cfl_team FROM table_25017530_6 WHERE college = \"Saskatchewan\"",
    "question_en": "Name the cfl team for saskatchewan",
    "question_th": "ตั้งชื่อทีม cfl สำหรับซัสแคตเชวัน",
    "context": "CREATE TABLE table_25017530_6 (cfl_team VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_25017530_6 WHERE player = \"Michael Warner\"",
    "question_en": "Name the position for michael warner",
    "question_th": "ตั้งชื่อตำแหน่งไมเคิล วอร์เนอร์",
    "context": "CREATE TABLE table_25017530_6 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(production_count) FROM table_2501754_2 WHERE episode__number = 5",
    "question_en": "How many episodes were numbered 5?",
    "question_th": "มีทั้งหมดกี่ตอนที่ 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_en": "What are the original air date(s) for episodes with production code ipea343l?",
    "question_th": "วันที่ออกอากาศดั้งเดิมสำหรับตอนที่มีรหัสการผลิต 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_en": "What are the original air date(s) for episodes with production code ipea345a?",
    "question_th": "วันที่ออกอากาศดั้งเดิมของตอนที่มีรหัสการผลิต 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_en": "What are the original air date(s) for episodes with 8.63 million viewers?",
    "question_th": "วันที่ออกอากาศดั้งเดิมสำหรับตอนที่มีผู้ชม 8.63 ล้านคนคือเมื่อใด",
    "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_en": "What is the power of the Type R?",
    "question_th": "พลังของ 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_en": "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?",
    "question_th": "เบรกแบบไหนสำหรับรุ่นประเภท rb 4at พร้อมล้อ 16x8.0jj (หน้า) 16x8.0jj (หลัง) และยาง 225/50r16 92v(หน้า) 225/50r16 92v(หลัง)",
    "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_en": "What brakes for the 4-speed automatic gearbox?",
    "question_th": "เกียร์อัตโนมัติ 4 สปีดมีเบรกอะไรบ้าง?",
    "context": "CREATE TABLE table_250230_2 (brakes VARCHAR, gearbox VARCHAR)"
  },
  {
    "answer": "SELECT power FROM table_250230_2 WHERE model = \"Spirit R (Type B)\"",
    "question_en": "What is the power for the Spirit R (Type B)?",
    "question_th": "พลังของ 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_en": "What is the gearbox when the torque is torque?",
    "question_th": "กระปุกเกียร์คืออะไรเมื่อแรงบิดคือแรงบิด?",
    "context": "CREATE TABLE table_250230_2 (gearbox VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(first_elected) FROM table_25030512_4 WHERE district = \"Alabama 3\"",
    "question_en": "Name the first elected for alabama 3",
    "question_th": "ตั้งชื่อคนแรกที่ได้รับเลือกสำหรับอลาบามา 3",
    "context": "CREATE TABLE table_25030512_4 (first_elected VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_25030512_4 WHERE incumbent = \"Spencer Bachus\"",
    "question_en": "Name the party for spencer bachus",
    "question_th": "ตั้งชื่อปาร์ตี้ให้สเปนเซอร์ บาคัส",
    "context": "CREATE TABLE table_25030512_4 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_25030512_4 WHERE incumbent = \"Mike Rogers\"",
    "question_en": "Name the district for mike rogers",
    "question_th": "ตั้งชื่อเขตตามไมค์ โรเจอร์ส",
    "context": "CREATE TABLE table_25030512_4 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_25030512_4 WHERE incumbent = \"Spencer Bachus\"",
    "question_en": "Name the district for spencer bachus",
    "question_th": "ตั้งชื่อเขตของสเปนเซอร์ บาคัส",
    "context": "CREATE TABLE table_25030512_4 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_25030512_26 WHERE incumbent = \"Keith Ellison\"",
    "question_en": "In what district was keith ellison the incumbent?",
    "question_th": "คีธ เอลลิสันดำรงตำแหน่งในเขตใด",
    "context": "CREATE TABLE table_25030512_26 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT day_power___w__ FROM table_25034983_2 WHERE city = \"Moline\"",
    "question_en": "List the kilo watt hoours per day for moline.",
    "question_th": "รายการกิโลวัตต์ชั่วโมงต่อวันสำหรับโมลีน",
    "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_en": "In which year did the voice of muscatine show start?",
    "question_th": "การแสดงเสียงมัสคาไทน์เริ่มในปีใด?",
    "context": "CREATE TABLE table_25034983_2 (start VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT MIN(start) FROM table_25034983_2 WHERE owner = \"Cumulus\"",
    "question_en": "In what year was cumulus founded?",
    "question_th": "คิวมูลัสก่อตั้งขึ้นเมื่อปีใด?",
    "context": "CREATE TABLE table_25034983_2 (start INTEGER, owner VARCHAR)"
  },
  {
    "answer": "SELECT stereo FROM table_25034983_2 WHERE city = \"Moline\"",
    "question_en": "Does the city of moline have stereo?",
    "question_th": "เมืองโมลีนมีเครื่องเสียงมั้ย?",
    "context": "CREATE TABLE table_25034983_2 (stereo VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT company FROM table_250309_1 WHERE parent_company = \"Wrightbus\"",
    "question_en": "what is the company with the parent company wrightbus?",
    "question_th": "บริษัทอะไรกับบริษัทแม่ไรท์บัส?",
    "context": "CREATE TABLE table_250309_1 (company VARCHAR, parent_company VARCHAR)"
  },
  {
    "answer": "SELECT company FROM table_250309_1 WHERE plant = \"Burnaston\"",
    "question_en": "what is the name ofhte company where the plant is in burnaston?",
    "question_th": "บริษัทของโรงงานตั้งอยู่ที่เบอร์นาสตันชื่ออะไร",
    "context": "CREATE TABLE table_250309_1 (company VARCHAR, plant VARCHAR)"
  },
  {
    "answer": "SELECT models_produced FROM table_250309_1 WHERE plant = \"Scarborough\"",
    "question_en": "what models are produced where the plant is scarborough?",
    "question_th": "มีการผลิตรุ่นใดบ้างที่โรงงานสการ์โบโรห์?",
    "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_en": "how many models produced where the plant is castle bromwich?",
    "question_th": "มีกี่รุ่นที่ผลิตที่โรงงานแห่งนี้คือ 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_en": "what is the production where the parent company is ariel?",
    "question_th": "บริษัทแม่คือแอเรียลผลิตอะไรคะ?",
    "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_en": "What kind of chassis on the angie's list sponsored car?",
    "question_th": "แชสซีแบบไหนในรายชื่อรถที่ได้รับการสนับสนุนของ Angie?",
    "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_en": "What team owns the car owned by chip ganassi?",
    "question_th": "ทีมใดเป็นเจ้าของรถของ 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_en": "What chassis is on the car repped by team rahal letterman lanigan racing?",
    "question_th": "แชสซีอะไรอยู่บนรถที่ทีม 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_en": "Who drives the abc supply sponsored cor?",
    "question_th": "ใครเป็นผู้ขับเคลื่อนคอร์ที่สนับสนุนอุปทาน abc?",
    "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_en": "Name the number of district for tom marino",
    "question_th": "ตั้งชื่อหมายเลขอำเภอสำหรับทอม มาริโน",
    "context": "CREATE TABLE table_25030512_41 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_25030512_41 WHERE first_elected = 1994",
    "question_en": "Name the district for 1994",
    "question_th": "ตั้งชื่ออำเภอ ปี 2537",
    "context": "CREATE TABLE table_25030512_41 (district VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_25030512_41 WHERE district = \"Pennsylvania 10\"",
    "question_en": "Name the party for pennsylvania 10",
    "question_th": "ตั้งชื่อพรรคสำหรับเพนซิลเวเนีย 10",
    "context": "CREATE TABLE table_25030512_41 (party VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_25030512_41 WHERE incumbent = \"Glenn Thompson\"",
    "question_en": "Name the result for glenn thompson",
    "question_th": "ตั้งชื่อผลลัพธ์สำหรับ 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_en": "Name the number of district for bill shuster",
    "question_th": "ตั้งชื่อหมายเลขเขตสำหรับบิล ชูสเตอร์",
    "context": "CREATE TABLE table_25030512_41 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT MAX(minutes) FROM table_25038931_1 WHERE starts = 11",
    "question_en": "List the total play time for 11 starts.",
    "question_th": "รายชื่อเวลาเล่นทั้งหมดสำหรับการเริ่ม 11 ครั้ง",
    "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_en": "In what region is the enrollment ratio in primary 94.40?",
    "question_th": "อัตราส่วนการลงทะเบียนเรียนในระดับประถมศึกษา 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_en": "What is the enrollment ratio for preschool in the region where enrollment ratio for tertiary is 29.55?",
    "question_th": "อัตราส่วนการลงทะเบียนสำหรับเด็กก่อนวัยเรียนในภูมิภาคที่อัตราส่วนการลงทะเบียนในระดับอุดมศึกษาคือ 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_en": "What is the enrollment ratio in primary in the region where the enrollment ratio in preschool is 38.14?",
    "question_th": "อัตราส่วนการลงทะเบียนในระดับประถมศึกษาในภูมิภาคที่อัตราส่วนการลงทะเบียนในโรงเรียนอนุบาลเท่ากับ 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_en": "What is the enrollment ratio in tertiary in the region where the enrollment ration in secondary is 71.43?",
    "question_th": "อัตราส่วนการลงทะเบียนในระดับอุดมศึกษาในภูมิภาคที่อัตราส่วนการลงทะเบียนในระดับมัธยมศึกษาคือ 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_en": "What is the  enrollment ratio in preschool in the region where the enrollment ratio in primary is 93.10?",
    "question_th": "อัตราส่วนการลงทะเบียนในโรงเรียนอนุบาลในภูมิภาคที่อัตราส่วนการลงทะเบียนในระดับประถมศึกษาคือ 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_en": "What is the enrollment ration in primary in the region where the enrollment ratio in preschool is 50.23? ",
    "question_th": " สัดส่วนการลงทะเบียนในระดับประถมศึกษาในภูมิภาคที่อัตราส่วนการลงทะเบียนในระดับอนุบาลเท่ากับ 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_en": "what is the number of registered female voters where the percentage is 108.6%",
    "question_th": "จำนวนผู้ลงคะแนนเสียงหญิงที่ลงทะเบียนคือเท่าใด โดยร้อยละ 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_en": "what is the percentage of male voters where the level of maturity is 123726",
    "question_th": "เปอร์เซ็นต์ของผู้มีสิทธิเลือกตั้งชายที่มีระดับวุฒิภาวะอยู่ที่ 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_en": "How many regions had 153 women prison inmates?",
    "question_th": "กี่ภูมิภาคที่มีผู้ต้องขังหญิง 153 คนในเรือนจำ?",
    "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_en": "How many regions had an incarceration rate for females of 63?",
    "question_th": "มีกี่ภูมิภาคที่มีอัตราการจำคุกสำหรับผู้หญิงอายุ 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_en": "What is the male incarceration rate of maule?",
    "question_th": "อัตราการคุมขังชายของขย้ำคือเท่าไร?",
    "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_en": "Name the region for automatic washing machine being 60.9%",
    "question_th": "ตั้งชื่อภูมิภาคสำหรับเครื่องซักผ้าอัตโนมัติเป็น 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_en": "Name the fixed telephone line for 25.6% vehicle",
    "question_th": "ตั้งชื่อสายโทรศัพท์พื้นฐานสำหรับรถยนต์ 25.6%",
    "context": "CREATE TABLE table_25042332_27 (fixed_telephone_line VARCHAR, vehicle VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_25042332_27 WHERE vehicle = \"39.2%\"",
    "question_en": "Name the region for 39.2% vehicle",
    "question_th": "ตั้งชื่อภูมิภาคสำหรับรถยนต์ 39.2%",
    "context": "CREATE TABLE table_25042332_27 (region VARCHAR, vehicle VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_25042332_26 WHERE solar_panel = \"0.3%\"",
    "question_en": "What region has 0.3% solar panel?",
    "question_th": "ภูมิภาคใดมีแผงโซลาร์เซลล์ 0.3%",
    "context": "CREATE TABLE table_25042332_26 (region VARCHAR, solar_panel VARCHAR)"
  },
  {
    "answer": "SELECT solar_panel FROM table_25042332_26 WHERE region = \"Atacama\"",
    "question_en": "What is atacama's percentage of solar panels?",
    "question_th": "แผงโซลาร์เซลล์ของอาตากามาคือกี่เปอร์เซ็นต์?",
    "context": "CREATE TABLE table_25042332_26 (solar_panel VARCHAR, region VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_25042332_26 WHERE none = \"0.6%\"",
    "question_en": "Which region has 0.6% none?",
    "question_th": "ภูมิภาคใดมี 0.6% ไม่มีเลย?",
    "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_en": "What is the percentage of public network in the region that has 0.1% other sources, 0.0% solar, and is named maule?",
    "question_th": "เปอร์เซ็นต์ของเครือข่ายสาธารณะในภูมิภาคที่มีแหล่งอื่น 0.1%, พลังงานแสงอาทิตย์ 0.0% และชื่อว่า 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_en": "How many regions have 0.5% solar panels?",
    "question_th": "กี่ภูมิภาคที่มีแผงโซลาร์เซลล์ 0.5%",
    "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_en": "What is the production number of 3-04?",
    "question_th": "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_en": "What was the title of the episode that aired on October 7, 1965?",
    "question_th": "ตอนที่ออกอากาศวันที่ 7 ตุลาคม 2508 ชื่ออะไร",
    "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_en": "When don inglis and ralph smart are the writers how many episode numbers are there?",
    "question_th": "เมื่อดอน อิงลิส และราล์ฟ สมาร์ท เป็นคนเขียนบท มีกี่ตอน?",
    "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_en": "Name the most 2012/13 for university of cambridge",
    "question_th": "ตั้งชื่อมหาวิทยาลัยเคมบริดจ์มากที่สุดประจำปี 2012/56",
    "context": "CREATE TABLE table_25057928_1 (institute VARCHAR)"
  },
  {
    "answer": "SELECT birth_date FROM table_25058562_2 WHERE player = \"Taavi Sadam\"",
    "question_en": "Name the birth date for taavi sadam",
    "question_th": "ตั้งชื่อวันเกิดของตาวิซาดัม",
    "context": "CREATE TABLE table_25058562_2 (birth_date VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT height FROM table_25058562_2 WHERE player = \"Asko Esna\"",
    "question_en": "Name the height for asko esna",
    "question_th": "ตั้งชื่อส่วนสูงของอาสโก เอสนา",
    "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_en": "Name the birth date for estonia for spiker and height of 189",
    "question_th": "ตั้งชื่อวันเกิดของเอสโตเนียสำหรับสไปเกอร์และส่วนสูง 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_en": "Name the player for 199 height",
    "question_th": "ตั้งชื่อผู้เล่นส่วนสูง 199",
    "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_en": "if the 2.09 million US viewers watched this episode, who was it written by",
    "question_th": "หากผู้ชมในสหรัฐฯ 2.09 ล้านคนดูตอนนี้ใครเป็นคนเขียน",
    "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_en": "If the episode was directed by Michael Offer, what was the episode number?",
    "question_th": "หากตอนนี้กำกับโดย Michael Offer หมายเลขตอนคือเท่าใด",
    "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_en": "If the episode was directed by Michael Offer, how many US Viewers watched it?",
    "question_th": "หากตอนนี้กำกับโดย Michael Offer มีผู้ชมในสหรัฐฯ จำนวนกี่คนที่ดูตอนนี้",
    "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_en": "What draft pick number was the player with the position DL?",
    "question_th": "ผู้เล่นในตำแหน่ง 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_en": "How many draft picks were for Winnipeg blue bombers?",
    "question_th": "ตัวเลือกร่างสำหรับเครื่องบินทิ้งระเบิดสีน้ำเงินของ Winnipeg มีกี่แบบ?",
    "context": "CREATE TABLE table_25085059_3 (pick__number VARCHAR, cfl_team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(college) FROM table_25085059_3 WHERE position = \"LB\"",
    "question_en": "How many colleges provided players with positions LB?",
    "question_th": "มีวิทยาลัยกี่แห่งที่จัดหาผู้เล่นที่มีตำแหน่ง LB?",
    "context": "CREATE TABLE table_25085059_3 (college VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_25085059_3 WHERE position = \"DL\"",
    "question_en": "What college did the player come from whose position is DL?",
    "question_th": "ผู้เล่นมาจากวิทยาลัยใดซึ่งมีตำแหน่ง DL?",
    "context": "CREATE TABLE table_25085059_3 (college VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT cfl_team FROM table_25085059_3 WHERE college = \"McGill\"",
    "question_en": "What team got a draft pick player from McGill?",
    "question_th": "ทีมไหนได้นักเตะดราฟต์จากแม็คกิลล์?",
    "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_en": "What number draft pick was Oklahoma State's Greg Hill in 1983?",
    "question_th": "Greg Hill จากโอคลาโฮมาสเตทเลือกร่างหมายเลขใดในปี 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_en": "What number pick was Danny Walters in the 1983 NFL draft?",
    "question_th": "แดนนี่ วอลเตอร์ส เลือกหมายเลขใดในการดราฟต์ NFL ปี 1983",
    "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_en": "What were the pick numbers of the defensive tackles chosen by the New Orleans Saints in the 1983 draft?",
    "question_th": "จำนวนการสกัดกั้นที่ทีมนิวออร์ลีนส์ เซนต์ส เลือกในการดราฟต์ปี 1983 คือหมายเลขใด",
    "context": "CREATE TABLE table_2508633_4 (position VARCHAR, nfl_team VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_2508633_4 WHERE player = \"Steve Maidlow\"",
    "question_en": "What number draft pick was linebacker Steve Maidlow in the 1983 NFL Draft?",
    "question_th": "Steve Maidlow ผู้เล่นแนวรับหมายเลขใดใน NFL Draft ปี 1983?",
    "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_en": "In which colleges is the NFL Team New York Giants and with the position defensive back?",
    "question_th": "ทีม NFL New York Giants ในวิทยาลัยใดบ้างและมีตำแหน่งกองหลัง?",
    "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_en": "What NFL Team has the player Danny Triplett with the position linebacker?",
    "question_th": "ทีม NFL ใดมีผู้เล่น Danny Triplett ที่มีตำแหน่งกองหลัง?",
    "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_en": "What are the NFL Teams in College North Texas State?",
    "question_th": "ทีม NFL ใน 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_en": "How many colleges have the NFL Team Buffalo Bills?",
    "question_th": "มีกี่วิทยาลัยที่มี 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_en": "Who are the all the players whose position is guard in college Clemson?",
    "question_th": "ใครคือผู้เล่นทั้งหมดที่มีตำแหน่งเป็นผู้พิทักษ์ในวิทยาลัยเคลมสัน?",
    "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_en": "What NFL Teams have the player Aaron Williams?",
    "question_th": "ทีม NFL ใดบ้างที่มีผู้เล่น 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_en": "Name the least pick number for the denver broncos",
    "question_th": "ตั้งชื่อหมายเลขเลือกน้อยที่สุดสำหรับเดนเวอร์บรองโกส์",
    "context": "CREATE TABLE table_2508633_2 (pick__number INTEGER, nfl_team VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_2508633_2 WHERE pick__number = 39",
    "question_en": "Name the position for pick number 39",
    "question_th": "ตั้งชื่อตำแหน่งสำหรับการเลือกหมายเลข 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_en": "Name the total number of pick number being henry ellard",
    "question_th": "ตั้งชื่อจำนวนรวมของหมายเลขเลือกเป็น 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_en": "Name the player for new orleans saints",
    "question_th": "ตั้งชื่อผู้เล่นตามนักบุญนิวออร์ลีนส์",
    "context": "CREATE TABLE table_2508633_2 (player VARCHAR, nfl_team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(player) FROM table_2508633_2 WHERE college = \"Georgia Tech\"",
    "question_en": "Name the number of players for georgia tech",
    "question_th": "ตั้งชื่อจำนวนผู้เล่นสำหรับเทคโนโลยีจอร์เจีย",
    "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_en": "Name the most pick number for guard and kansas city chiefs",
    "question_th": "ตั้งชื่อหมายเลขที่เลือกมากที่สุดสำหรับผู้พิทักษ์และหัวหน้าเมืองแคนซัส",
    "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_en": "Name the nfl team for pick number 151",
    "question_th": "ตั้งชื่อทีม NFL เพื่อเลือกหมายเลข 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_en": "Name the college for houston oilers",
    "question_th": "ตั้งชื่อวิทยาลัยสำหรับนักขุดน้ำมันฮูสตัน",
    "context": "CREATE TABLE table_2508633_6 (college VARCHAR, nfl_team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(pick__number) FROM table_2508633_6 WHERE college = \"Illinois\"",
    "question_en": "Name the most pick number for illinois",
    "question_th": "ตั้งชื่อหมายเลขที่เลือกมากที่สุดสำหรับรัฐอิลลินอยส์",
    "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_en": "Name the total number for nfl team for ellis gardner",
    "question_th": "ตั้งชื่อจำนวนรวมของทีม nfl สำหรับเอลลิส การ์ดเนอร์",
    "context": "CREATE TABLE table_2508633_6 (nfl_team VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_2508633_6 WHERE college = \"Delaware\"",
    "question_en": "Name the position for delaware",
    "question_th": "ตั้งชื่อตำแหน่งสำหรับเดแวร์",
    "context": "CREATE TABLE table_2508633_6 (position VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT nfl_team FROM table_2508633_6 WHERE player = \"Eric Williams\"",
    "question_en": "Name the nfl team for eric williams",
    "question_th": "ตั้งชื่อทีม NFL สำหรับเอริค วิลเลียมส์",
    "context": "CREATE TABLE table_2508633_6 (nfl_team VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT nfl_team FROM table_2508633_9 WHERE college = \"Jackson State\"",
    "question_en": "What NFL team picked a player from Jackson State?",
    "question_th": "ทีม NFL ใดเลือกผู้เล่นจาก Jackson State",
    "context": "CREATE TABLE table_2508633_9 (nfl_team VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_2508633_9 WHERE college = \"Langston\"",
    "question_en": "What position was the draft pick that came from Langston?",
    "question_th": "ดราฟต์เลือกที่มาจากแลงสตันอยู่ในตำแหน่งใด",
    "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_en": "How many players were the running back draft pick for the New England Patriots?",
    "question_th": "มีผู้เล่นกี่คนที่เป็นตัวเลือกรันนิ่งแบ็กให้กับทีมนิวอิงแลนด์ เพเทรียตส์?",
    "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_en": "Who was the draft pick for Kansas City Chiefs?",
    "question_th": "ใครคือร่างตัวเลือกของ 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_en": "What college did the tight end draft pick for New England Patriots come from?",
    "question_th": "การคัดเลือกผู้รักชาตินิวอิงแลนด์มาจากวิทยาลัยใด",
    "context": "CREATE TABLE table_2508633_9 (college VARCHAR, nfl_team VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT MIN(cuchumuela_municipality) FROM table_2509112_3",
    "question_en": "What is the Cuchumela Municipality minimum?",
    "question_th": "เทศบาลเมือง Cuchumela ขั้นต่ำคืออะไร?",
    "context": "CREATE TABLE table_2509112_3 (cuchumuela_municipality INTEGER)"
  },
  {
    "answer": "SELECT language FROM table_2509112_3 WHERE villa_rivero_municipality = 7",
    "question_en": "If Villa Rivero Municipality if 7, what is the language?",
    "question_th": "ถ้าเทศบาลวิลล่าริเวโร ถ้า 7 เป็นภาษาอะไร?",
    "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_en": "What is the language total number if the Tacachi Municipality is 3?",
    "question_th": "ถ้าเทศบาลทาคาชิคือ 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_en": "If the language is another native, what is the San Benito Municipality total number?",
    "question_th": "หากเป็นภาษาอื่นเป็นภาษาท้องถิ่น จำนวนรวมของเทศบาลซานเบนิโตเป็นเท่าใด",
    "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_en": "If the language is Spanish, what is the Vinto Municipality minimum?",
    "question_th": "หากเป็นภาษาสเปน ค่าขั้นต่ำของเทศบาล Vinto คือเท่าใด",
    "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_en": "If the Vinto Municipality is 18630, what is the Quillacollo Municipality?",
    "question_th": "ถ้าเทศบาลวินโตคือ 18630 เทศบาลกิลลาคอลโลคืออะไร",
    "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_en": "What is the Sipe Sipe Municipality minimum if the language is Quechua?",
    "question_th": "ค่าขั้นต่ำของเทศบาล Sipe Sipe คือเท่าใด หากเป็นภาษา 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_en": "If the language is Native and Spanish, what is the Vinto Municipality minimum?",
    "question_th": "หากเป็นภาษาพื้นเมืองและภาษาสเปน ข้อกำหนดขั้นต่ำของเทศบาล Vinto คือเท่าใด",
    "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_en": "If the Quillacollo Municipality is 93131, what is the Vinto Municipality minimum?",
    "question_th": "หากเทศบาล Quillacollo คือ 93131 ค่าขั้นต่ำของเทศบาล Vinto คือเท่าใด",
    "context": "CREATE TABLE table_2509113_2 (vinto_municipality INTEGER, quillacollo_municipality VARCHAR)"
  },
  {
    "answer": "SELECT language FROM table_2509350_3 WHERE villa_alcalá_municipality = 1167",
    "question_en": "Name the language for villa 1167",
    "question_th": "ตั้งชื่อภาษาสำหรับวิลล่า 1167",
    "context": "CREATE TABLE table_2509350_3 (language VARCHAR, villa_alcalá_municipality VARCHAR)"
  },
  {
    "answer": "SELECT MAX(padilla_municipality) FROM table_2509350_3 WHERE language = \"Quechua\"",
    "question_en": "Name the most padilla municipality for quechua",
    "question_th": "ตั้งชื่อเขตเทศบาลที่ใหญ่ที่สุดสำหรับ Quechua",
    "context": "CREATE TABLE table_2509350_3 (padilla_municipality INTEGER, language VARCHAR)"
  },
  {
    "answer": "SELECT language FROM table_2509350_3 WHERE sopachuy_municipality = 10",
    "question_en": "Name the language for sopachuy 10",
    "question_th": "ตั้งชื่อภาษาโสภชุย 10",
    "context": "CREATE TABLE table_2509350_3 (language VARCHAR, sopachuy_municipality VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(tomina_municipality) FROM table_2509350_3 WHERE villa_alcalá_municipality = 176",
    "question_en": "Name the number of tomina for villa alcala for 176",
    "question_th": "ตั้งชื่อหมายเลขโทมินาสำหรับวิลล่าอัลคาลาจำนวน 176",
    "context": "CREATE TABLE table_2509350_3 (tomina_municipality VARCHAR, villa_alcalá_municipality VARCHAR)"
  },
  {
    "answer": "SELECT MIN(tomina_municipality) FROM table_2509350_3 WHERE el_villar_municipality = 4",
    "question_en": "Name the least tomina for el villar being 4",
    "question_th": "ตั้งชื่อโทมินาที่น้อยที่สุดสำหรับเอลวิลลาร์คือ 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_en": "Name the language for el villar 1264",
    "question_th": "ตั้งชื่อภาษาสำหรับ 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_en": "Name the total number of games for goals against being 352",
    "question_th": "ตั้งชื่อจำนวนเกมทั้งหมดสำหรับเป้าหมายเทียบกับ 352",
    "context": "CREATE TABLE table_2509505_1 (games VARCHAR, goals_against VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(games) FROM table_2509505_1 WHERE lost = 41",
    "question_en": "Name the total number of games for lost being 41",
    "question_th": "ตั้งชื่อจำนวนเกมที่แพ้ทั้งหมดเป็น 41 เกม",
    "context": "CREATE TABLE table_2509505_1 (games VARCHAR, lost VARCHAR)"
  },
  {
    "answer": "SELECT MAX(goals_for) FROM table_2509505_1 WHERE points = 56",
    "question_en": "Name the most goals for 56 points",
    "question_th": "ทายผลประตูมากที่สุด 56 แต้ม",
    "context": "CREATE TABLE table_2509505_1 (goals_for INTEGER, points VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(won) FROM table_2509505_1 WHERE goals_for = 274",
    "question_en": "Name the number of won for goals for being 274",
    "question_th": "ตั้งชื่อจำนวนชนะสำหรับเป้าหมายเป็น 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_en": "When the quiabaya municipality is 2 what is the combaya municipality?",
    "question_th": "เมื่อเทศบาลเคียบายาอยู่ 2 เทศบาลคอมบายาคืออะไร?",
    "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_en": "What is the guanay municipality when the  tacacoma municipality is 4.321?",
    "question_th": "เทศบาลกัวไนคืออะไร เมื่อเทศบาลทาคาโคมาคือ 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_en": "How many people in the sorata municipality when the quiabaya municipality has 33?",
    "question_th": "จำนวนคนในเขตเทศบาลโซราตา ตอนที่เทศบาลเกียบายามี 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_en": "What is the number for combaya municipality when quiabaya municipality is 33?",
    "question_th": "หมายเลขโทรศัพท์ของ เทศบาลเมืองคอมบายา เมื่อ เทศบาลตำบลเกียบายา คือ 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_en": " tipuani municipality when tacacoma municipality is 6?",
    "question_th": " เทศบาลเมือง tipuani เมื่อเทศบาลเมือง tacacoma อายุ 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_en": "What is the number for the guanay municipality when combaya municipality is 0?",
    "question_th": "หมายเลขโทรศัพท์ของ เทศบาลเมืองกัวไน เมื่อ เทศบาลเมืองคอมบายา เป็น 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_en": "What is the first year where the assassination attempt was at Martyrs' Mausoleum, Rangoon, Burma?",
    "question_th": "ปีแรกที่ความพยายามลอบสังหารเกิดขึ้นที่สุสานผู้พลีชีพในกรุงย่างกุ้ง ประเทศพม่า คือปีใด",
    "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_en": "Where was the attempt on the Prime Minister of Sri Lanka's life made?",
    "question_th": "ความพยายามในชีวิตของนายกรัฐมนตรีศรีลังกาเกิดขึ้นที่ไหน?",
    "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_en": "What is every original language for book series Little House on the Prairie?",
    "question_th": "หนังสือชุด 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_en": "What are all approximate sales for the author Laura Ingalls Wilder?",
    "question_th": "ยอดขายโดยประมาณของผู้แต่ง ลอร่า อิงกัลส์ ไวล์เดอร์ เป็นเท่าใด",
    "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_en": "Name the most number for notre dame prep",
    "question_th": "ตั้งชื่อหมายเลขมากที่สุดสำหรับการเตรียม notre dame",
    "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_en": "Name the ends won for blank ends for 0",
    "question_th": "ตั้งชื่อส่วนท้ายที่ชนะสำหรับส่วนท้ายว่างสำหรับ 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_en": "Name the stolen ends for germany",
    "question_th": "ตั้งชื่อปลายที่ถูกขโมยสำหรับเยอรมนี",
    "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_en": "Name the least ends won for pf being 78",
    "question_th": "ตั้งชื่อแต้มที่ชนะน้อยที่สุดสำหรับ pf คือ 78",
    "context": "CREATE TABLE table_25107064_2 (Ends INTEGER, pf VARCHAR)"
  },
  {
    "answer": "SELECT stadium FROM table_25129482_1 WHERE location = \"Kuopio\"",
    "question_en": "What is the stadium in Kuopio?",
    "question_th": "สนามกีฬาในโกเปียวคืออะไร?",
    "context": "CREATE TABLE table_25129482_1 (stadium VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT kitmaker FROM table_25129482_1 WHERE club = \"TPS\"",
    "question_en": "Who is the kitmaker for TPS?",
    "question_th": "ใครคือผู้ผลิตชุดเครื่องมือสำหรับ TPS",
    "context": "CREATE TABLE table_25129482_1 (kitmaker VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT MAX(capacity) FROM table_25129482_1",
    "question_en": "What is the largest capacity for a stadium?",
    "question_th": "ความจุที่ใหญ่ที่สุดสำหรับสนามกีฬาคือเท่าใด?",
    "context": "CREATE TABLE table_25129482_1 (capacity INTEGER)"
  },
  {
    "answer": "SELECT stadium FROM table_25129482_1 WHERE manager = \"Kari Martonen\"",
    "question_en": "Which stadium is managed by Kari Martonen?",
    "question_th": "สนามใดที่ดูแลโดย คารี มาร์โตเนน?",
    "context": "CREATE TABLE table_25129482_1 (stadium VARCHAR, manager VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(capacity) FROM table_25129482_1 WHERE club = \"FF Jaro\"",
    "question_en": "How many capacities are given for FF Jaro club?",
    "question_th": "สโมสร FF จาโร จุได้กี่ความจุ?",
    "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_en": "How many managers for club in Turku where kitmaker is Puma?",
    "question_th": "มีผู้จัดการทีมกี่คนใน Turku ที่ 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_en": "How many times was episode 5 in the series aired on Fox int.?",
    "question_th": "ตอนที่ 5 ของซีรีส์ออกอากาศทาง 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_en": "What was the qualifying score of the competition whose final score was 12.200?",
    "question_th": "คะแนนรอบคัดเลือกของการแข่งขันที่มีคะแนนสุดท้ายคือ 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_en": "Where was the competition with a qualifying score of 58.425?",
    "question_th": "การแข่งขันที่ไหนด้วยคะแนนคัดเลือก 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_en": "How many competitions had a final score of 15.650?",
    "question_th": "มีกี่การแข่งขันที่มีคะแนนสุดท้าย 15.650?",
    "context": "CREATE TABLE table_25143284_1 (competition_description VARCHAR, score_final VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_2516282_3 WHERE score = \"7–5, 7–6 (7–5)\"",
    "question_en": "In what year was the score 7–5, 7–6 (7–5)?",
    "question_th": "คะแนน 7–5, 7–6 (7–5) อยู่ในปีใด?",
    "context": "CREATE TABLE table_2516282_3 (year VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_2516282_3 WHERE opponents = \"Yan Zi Jie Zheng\"",
    "question_en": "When the opponent was Yan Zi Jie Zheng, what was the outcome?",
    "question_th": "เมื่อคู่ต่อสู้คือ Yan Zi Jie Zheng ผลลัพธ์จะเป็นอย่างไร?",
    "context": "CREATE TABLE table_2516282_3 (outcome VARCHAR, opponents VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_2516282_3 WHERE year = 2013",
    "question_en": "In the year 2013, what was the outcome?",
    "question_th": "ในปี 2556 ผลลัพธ์เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_2516282_3 (outcome VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT partner FROM table_2516282_3 WHERE score = \"7–5, 7–6 (7–5)\"",
    "question_en": "Who was the partner when the score was 7–5, 7–6 (7–5)?",
    "question_th": "ใครคือคู่ครองเมื่อสกอร์คือ 7–5, 7–6 (7–5)",
    "context": "CREATE TABLE table_2516282_3 (partner VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_2516282_3 WHERE surface = \"Hard (i)\"",
    "question_en": "When the surface was Hard (i), what was the score?",
    "question_th": "เมื่อพื้นผิวแข็ง (i) คะแนนเป็นเท่าใด",
    "context": "CREATE TABLE table_2516282_3 (score VARCHAR, surface VARCHAR)"
  },
  {
    "answer": "SELECT championship FROM table_2516282_3 WHERE partner = \"Jie Zheng\"",
    "question_en": "In which championship was the partner Jie Zheng?",
    "question_th": "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_en": "What are the number of points for associated with exactly 3 stolen ends?",
    "question_th": "จำนวนคะแนนที่เกี่ยวข้องกับการถูกขโมย 3 ครั้งคือเท่าไร?",
    "context": "CREATE TABLE table_25176088_2 (pf VARCHAR, stolen_ends VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(position) FROM table_25177625_1 WHERE weight = 170",
    "question_en": "How many position did a player took while weighing 170?",
    "question_th": "ผู้เล่นได้กี่ตำแหน่งขณะชั่งน้ำหนัก 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_en": "What were the former schools of the player from East Brunswick, NJ?",
    "question_th": "โรงเรียนเก่าของผู้เล่นจาก 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_en": "What was the height of this Freshman with a forward position?",
    "question_th": "น้องใหม่คนนี้มีตำแหน่งกองหน้าสูงเท่าไร?",
    "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_en": "If the date of birth is 1961-08-09 9 august 1961, what is the start date of (first) term?",
    "question_th": "ถ้าวันเกิดคือ 1961-08-09 9 สิงหาคม 1961 เริ่มภาคเรียน (แรก) วันไหน?",
    "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_en": "If the prime minister is Palmer, Geoffrey Geoffrey Palmer, what is the end date of (final) term?",
    "question_th": "ถ้านายกรัฐมนตรีคือนายพาลเมอร์ เจฟฟรีย์ เจฟฟรี่ย์ พาลเมอร์ วาระสุดท้าย (วาระสุดท้าย) คือเมื่อใด?",
    "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_en": "What is the population if the city is Gilroy?",
    "question_th": "ถ้าเมืองนี้คือกิลรอย ประชากรจะเป็นเท่าไร?",
    "context": "CREATE TABLE table_25200461_9 (population VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_25200461_9 WHERE democratic = \"42.5%\"",
    "question_en": "If Democratic is 42.5%, what is the city?",
    "question_th": "ถ้าประชาธิปไตยเป็น 42.5% เมืองอะไร?",
    "context": "CREATE TABLE table_25200461_9 (city VARCHAR, democratic VARCHAR)"
  },
  {
    "answer": "SELECT MIN(population) FROM table_25200461_9 WHERE registered_voters = \"66.8%\"",
    "question_en": "If the registered voters is 66.8%, what is the minimum population?",
    "question_th": "หากผู้ลงคะแนนที่ลงทะเบียนคือ 66.8% จำนวนประชากรขั้นต่ำคือเท่าใด",
    "context": "CREATE TABLE table_25200461_9 (population INTEGER, registered_voters VARCHAR)"
  },
  {
    "answer": "SELECT other FROM table_25200461_9 WHERE city = \"Los Gatos\"",
    "question_en": "What is the other is the city is Los Gatos?",
    "question_th": "อีกเมืองคือลอสกาโตสคืออะไร?",
    "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_en": "What is the d-r spread if the no party preference is 31.8%?",
    "question_th": "dr สเปรดจะเป็นอย่างไรหากการไม่เลือกฝ่ายใดอยู่ที่ 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_en": "If the city is Santa Clara, what is the population total number?",
    "question_th": "ถ้าเมืองนี้คือซานตาคลารา จำนวนประชากรทั้งหมดคือเท่าใด",
    "context": "CREATE TABLE table_25200461_9 (population VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT prefecture FROM table_2518850_4 WHERE city_town = \"Susaki\"",
    "question_en": "In what prefecture is Susaki located?",
    "question_th": "ซูซากิตั้งอยู่ที่จังหวัดใด",
    "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_en": "How many previous years did Maebashi Ikuei high school have a total number of 1 participation?",
    "question_th": "โรงเรียนมัธยมปลายมาเอบาชิอิคุเออิมีทั้งหมด 1 ครั้งเมื่อกี่ปีก่อน?",
    "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_en": "In what prefecture is Nihon Bunri located?",
    "question_th": "นิฮอน บุนริ ตั้งอยู่ที่จังหวัดใด",
    "context": "CREATE TABLE table_2518850_4 (prefecture VARCHAR, high_school_name VARCHAR)"
  },
  {
    "answer": "SELECT prefecture FROM table_2518850_4 WHERE city_town = \"Daito\"",
    "question_en": "In what prefecture is Daito located?",
    "question_th": "ไดโตะตั้งอยู่ที่จังหวัดใด",
    "context": "CREATE TABLE table_2518850_4 (prefecture VARCHAR, city_town VARCHAR)"
  },
  {
    "answer": "SELECT high_school_name FROM table_2518850_4 WHERE prefecture = \"Kyoto\"",
    "question_en": "Which high school is located in Kyoto?",
    "question_th": "โรงเรียนมัธยมปลายใดตั้งอยู่ในเกียวโต",
    "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_en": "What was the year of previous participation for the school in the Kagoshima prefecture?",
    "question_th": "การมีส่วนร่วมของโรงเรียนในจังหวัดคาโกชิม่าก่อนหน้านี้คือปีใด",
    "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_en": "What was the data on January 15-16 if March 27-29 is March 29, 2006?",
    "question_th": "ข้อมูลในวันที่ 15-16 มกราคม เป็นข้อมูลอะไร หากวันที่ 27-29 มีนาคม เป็นวันที่ 29 มีนาคม 2549",
    "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_en": "What was the data on November 3, if the data on January 15-16 is January 15, 2010?",
    "question_th": "ข้อมูลวันที่ 3 พฤศจิกายน เป็นข้อมูลอะไร หากข้อมูลวันที่ 15-16 มกราคม คือวันที่ 15 มกราคม 2553",
    "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_en": "How many datas were recorded on January 15-16 if August 21-22 is 155?",
    "question_th": "วันที่ 15-16 มกราคม ถ้าวันที่ 21-22 สิงหาคม เท่ากับ 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_en": "What was the data on January 15-16 if the data recorded June 10-11 is June 10, 1964?",
    "question_th": "ข้อมูลวันที่ 15-16 ม.ค. จะเป็นเช่นไร ถ้าข้อมูลที่บันทึกวันที่ 10-11 มิ.ย. คือวันที่ 10 มิ.ย. 64",
    "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_en": "How many data are on points for if the percentage is 94.29?",
    "question_th": "มีข้อมูลกี่คะแนนหากเปอร์เซ็นต์คือ 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_en": "Who was the opponent with a points for of 177?",
    "question_th": "คู่ต่อสู้ที่มีแต้มถึง 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_en": "What was the minimum points against if the opponent is Port Adelaide?",
    "question_th": "อะไรคือคะแนนขั้นต่ำหากคู่ต่อสู้คือพอร์ตแอดิเลด?",
    "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_en": "If Thursday 3 June is 20' 27.93 110.615mph, what are the names of the riders?",
    "question_th": "หากวันพฤหัสบดีที่ 3 มิถุนายนคือ 20'27.93 110.615mph ผู้ขับขี่ชื่ออะไร?",
    "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_en": "What is the Tuesday 1 June total number if Monday 31 May is 20' 15.35 111.761mph?",
    "question_th": "จำนวนรวมวันอังคารที่ 1 มิถุนายนคือเท่าไร หากวันจันทร์ที่ 31 พฤษภาคม คือ 20' 15.35 111.761 ไมล์ต่อชั่วโมง",
    "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_en": "What is Friday 4 June if Wednesday 2 June is 20' 11.98 112.071mph?",
    "question_th": "วันศุกร์ที่ 4 มิถุนายนคืออะไร ถ้าวันพุธที่ 2 มิถุนายนคือ 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_en": "If Tuesday 1 June is 21' 05.27 107.351mph, what is the rider total number?",
    "question_th": "หากวันอังคารที่ 1 มิถุนายนคือ 21' 05.27 107.351mph จำนวนผู้ขับขี่ทั้งหมดคือเท่าใด",
    "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_en": "If Tuesday 1 June is 20' 59.60 107.834mph, what is the rank maximum?",
    "question_th": "หากวันอังคารที่ 1 มิถุนายนคือ 20'59.60 107.834mph อันดับสูงสุดคือเท่าใด",
    "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_en": "What is the Friday 4 June if the Wednesday 2 June is 20' 50.62 108.608mph?",
    "question_th": "วันศุกร์ที่ 4 มิถุนายนคือเท่าไร ถ้าวันพุธที่ 2 มิถุนายนคือ 20' 50.62 108.608 ไมล์ต่อชั่วโมง",
    "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_en": "What is the 2 June time for the rider with time of 17' 48.58 127.111mph on 3 June?",
    "question_th": "เวลา 2 มิถุนายนสำหรับผู้ขับขี่ด้วยเวลา 17' 48.58 127.111mph ของวันที่ 3 มิถุนายนคือเมื่อใด",
    "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_en": "How many times are listed for 31 May for the rider ranked 5?",
    "question_th": "มีการระบุกี่ครั้งในวันที่ 31 พฤษภาคมสำหรับนักบิดอันดับที่ 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_en": "What is the 3 June time for the rider with 2 June time of 17' 45.11 127.525mph?",
    "question_th": "เวลา 3 มิถุนายนสำหรับผู้ขับขี่โดยวันที่ 2 มิถุนายน เวลา 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_en": "Who is ranked 2?",
    "question_th": "อันดับ 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_en": "How many times does November 3rd occur when January 15, 1991 does?",
    "question_th": "วันที่ 3 พฤศจิกายน เกิดขึ้นกี่ครั้งเมื่อ 15 มกราคม 2534 เกิด?",
    "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_en": "When November is 153 what is the March number?",
    "question_th": "เมื่อเดือนพฤศจิกายนเป็น 153 เลขเดือนมีนาคมคืออะไร?",
    "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_en": "How many times does an occurance happen in June when it happens on NOvember 3, 1975?",
    "question_th": "เหตุเกิดในเดือนมิถุนายน เกิดขึ้นกี่ครั้ง เมื่อวันที่ 3 พฤศจิกายน พ.ศ. 2518?",
    "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_en": "When march is 129 what is the August number?",
    "question_th": "เมื่อเดือนมีนาคมเป็น 129 เลขเดือนสิงหาคมคืออะไร?",
    "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_en": "How many numbers are there for August when March is 139?",
    "question_th": "เดือนสิงหาคมถึงเดือนมีนาคมมีกี่หมายเลข?",
    "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_en": "How many teams have been in Topperserien for 8 seasons? ",
    "question_th": " มีทีมกี่ทีมที่อยู่ใน Topperserien มา 8 ฤดูกาล?",
    "context": "CREATE TABLE table_2522473_1 (team VARCHAR, seasons VARCHAR)"
  },
  {
    "answer": "SELECT MAX(seasons) FROM table_2522473_1",
    "question_en": "What is the maximum number of seasons for any team? ",
    "question_th": " จำนวนฤดูกาลสูงสุดสำหรับทีมใด ๆ คือเท่าใด?",
    "context": "CREATE TABLE table_2522473_1 (seasons INTEGER)"
  },
  {
    "answer": "SELECT team FROM table_2522473_1 WHERE home_ground = \"Stemmemyren\"",
    "question_en": "Which teams homeeground is Stemmemyren? ",
    "question_th": " 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_en": "What is the home ground for the team whose home city is Trondheim with 27 seasons? ",
    "question_th": " สนามเหย้าของทีมที่มีบ้านเกิดคือเมืองทรอนด์เฮม 27 ฤดูกาลคืออะไร?",
    "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_en": "What is the home city for the team whose home ground is dnb nor arena? ",
    "question_th": " เมืองบ้านเกิดของทีมที่มีสนามเหย้าคือ dnb หรือ 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_en": "What Home city has the home ground Klepp stadion? ",
    "question_th": " เมืองใดมีสนามเหย้าของ Klepp?",
    "context": "CREATE TABLE table_2522473_1 (home_city VARCHAR, home_ground VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(total_electricity__gw) AS ·h_ FROM table_25244412_2 WHERE renewable_electricity_w_o_hydro__gw·h_ = 3601",
    "question_en": "How many data was given the total electricity in GW-h if the renewable electricity w/o hydro (GW-h) is 3601?",
    "question_th": "มีข้อมูลกี่ข้อมูลที่ได้รับสำหรับไฟฟ้าทั้งหมดในหน่วย GW-h หากไฟฟ้าหมุนเวียนที่ไม่มีพลังน้ำ (GW-h) คือ 3601",
    "context": "CREATE TABLE table_25244412_2 (total_electricity__gw VARCHAR, renewable_electricity_w_o_hydro__gw·h_ VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(total_electricity__gw) AS ·h_ FROM table_25244412_2 WHERE _percentage_renewable = \"92.3%\"",
    "question_en": "How many data was given the total electricity in GW-h if % renewable is 92.3%?",
    "question_th": "มีข้อมูลกี่ข้อมูลที่ได้รับสำหรับไฟฟ้าทั้งหมดในหน่วย GW-h หาก % ของพลังงานทดแทนคือ 92.3%",
    "context": "CREATE TABLE table_25244412_2 (total_electricity__gw VARCHAR, _percentage_renewable VARCHAR)"
  },
  {
    "answer": "SELECT MIN(renewable_electricity__gw) AS ·h_ FROM table_25244412_2 WHERE rank = 36",
    "question_en": "How much was the minimum renewable electricity (GW-h) that is ranked 36?",
    "question_th": "ไฟฟ้าหมุนเวียนขั้นต่ำ (GW-h) ที่อยู่อันดับที่ 36 คือเท่าไร?",
    "context": "CREATE TABLE table_25244412_2 (renewable_electricity__gw INTEGER, rank VARCHAR)"
  },
  {
    "answer": "SELECT state FROM table_25244412_2 WHERE total_electricity__gw·h_ = 38380",
    "question_en": "What was the state with the total electricity generated is 38380 gw-h?",
    "question_th": "รัฐที่มีการผลิตไฟฟ้าทั้งหมดคือ 38380 gw-h?",
    "context": "CREATE TABLE table_25244412_2 (state VARCHAR, total_electricity__gw·h_ VARCHAR)"
  },
  {
    "answer": "SELECT no_in_series FROM table_25246990_2 WHERE prod_code = \"111\"",
    "question_en": "What number episode in the series had a production code of 111?",
    "question_th": "ซีรีส์ตอนใดมีรหัสการผลิต 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_en": "What number episode in the series had a production code of 110?",
    "question_th": "ซีรีส์เรื่องไหนมีรหัสการผลิต 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_en": "How many U.S. viewers in millions watched the number 7 episode in the series that was written by Jed Spingarn?",
    "question_th": "มีผู้ชมชาวอเมริกันกี่ล้านคนที่ดูตอนที่ 7 ในซีรีส์ที่เขียนโดย 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_en": "What was the original U.S. air date of the episode directed by Julian Petrillo?",
    "question_th": "วันที่ออกอากาศดั้งเดิมของสหรัฐอเมริกาสำหรับตอนที่กำกับโดย 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_en": "How many different original U.S. air dates appear where the U.S. viewers were 2.5 million?",
    "question_th": "มีวันที่ออกอากาศดั้งเดิมของสหรัฐอเมริกาที่แตกต่างกันกี่รายการที่ปรากฏโดยมีผู้ชมในสหรัฐฯ 2.5 ล้านคน",
    "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_en": "How many U.S. viewers were there for the episode written by Lazar Saric & Jed Spingarn?",
    "question_th": "มีผู้ชมในสหรัฐอเมริกากี่คนสำหรับตอนที่เขียนโดย 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_en": "How many U.S. viewers were there for the number 4 episode in season?",
    "question_th": "มีผู้ชมในสหรัฐฯ จำนวนกี่คนสำหรับตอนที่ 4 ของซีซันนี้",
    "context": "CREATE TABLE table_25246990_5 (us_viewers__millions_ VARCHAR, no_in_season VARCHAR)"
  },
  {
    "answer": "SELECT MIN(rank) FROM table_2527063_3",
    "question_en": "Name the least rank",
    "question_th": "ตั้งชื่ออันดับน้อยที่สุด",
    "context": "CREATE TABLE table_2527063_3 (rank INTEGER)"
  },
  {
    "answer": "SELECT growth_rate FROM table_2527063_3 WHERE district = \"Hooghly\"",
    "question_en": "Name the growth rate for hooghly",
    "question_th": "ตั้งชื่ออัตราการเติบโตของ Hoghly",
    "context": "CREATE TABLE table_2527063_3 (growth_rate VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(rank) FROM table_2527063_3 WHERE district = \"East Midnapore\"",
    "question_en": "Name the total number of rank for east midnapore",
    "question_th": "ตั้งชื่อจำนวนยศทั้งหมดสำหรับภาคกลางตะวันออก",
    "context": "CREATE TABLE table_2527063_3 (rank VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(rank) FROM table_2527063_3 WHERE growth_rate = \"14.47\"",
    "question_en": "Name the total number of rank for growth raate for 14.47",
    "question_th": "ตั้งชื่อจำนวนรวมอันดับอัตราการเติบโตสำหรับ 14.47",
    "context": "CREATE TABLE table_2527063_3 (rank VARCHAR, growth_rate VARCHAR)"
  },
  {
    "answer": "SELECT champion FROM table_2527617_1 WHERE season = 1994",
    "question_en": "Who is the champion of the 1994 season?",
    "question_th": "ใครคือแชมป์ของฤดูกาล 1994?",
    "context": "CREATE TABLE table_2527617_1 (champion VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT best_player FROM table_2527617_1 WHERE season = 1998",
    "question_en": "Who is the best player in the 1998 season?",
    "question_th": "ใครคือผู้เล่นที่ดีที่สุดในฤดูกาล 1998?",
    "context": "CREATE TABLE table_2527617_1 (best_player VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT MAX(index) FROM table_25271777_1 WHERE forcible_rape = 1084",
    "question_en": "What was the largest index the year/s forcible rapes numbered 1084? ",
    "question_th": " ดัชนีที่ใหญ่ที่สุดในรอบปีของการข่มขืนโดยบังคับคือ 1,084 คืออะไร?",
    "context": "CREATE TABLE table_25271777_1 (index INTEGER, forcible_rape VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(violent) FROM table_25271777_1 WHERE forcible_rape = 1156",
    "question_en": "How many violent catagories are listed for the year forcible rapes were 1156? ",
    "question_th": " มีกี่หมวดหมู่ความรุนแรงที่ระบุไว้สำหรับการข่มขืนในปี 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_en": "What was the largest number of aggravated assaults when there were 3811 robberies? ",
    "question_th": " จำนวนการทำร้ายร่างกายที่รุนแรงที่สุดเมื่อมีการปล้น 3811 ครั้งคือเท่าใด",
    "context": "CREATE TABLE table_25271777_1 (aggravated_assault INTEGER, robbery VARCHAR)"
  },
  {
    "answer": "SELECT murder FROM table_25271777_1 WHERE forcible_rape = 166",
    "question_en": "What was the number of murders the year forcible rapes were at 166? ",
    "question_th": " จำนวนการฆาตกรรมในปีที่ถูกข่มขืนกระทำชำเราอยู่ที่ 166 ครั้งเป็นเท่าใด?",
    "context": "CREATE TABLE table_25271777_1 (murder VARCHAR, forcible_rape VARCHAR)"
  },
  {
    "answer": "SELECT violent FROM table_25271777_1 WHERE index = 191037",
    "question_en": "How many violent crimes occurred the year that the index was 191037? ",
    "question_th": " อาชญากรรมรุนแรงเกิดขึ้นกี่ครั้งในปีที่ดัชนีอยู่ที่ 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_en": "Who wrote episode number 149 in the series?",
    "question_th": "ใครเป็นคนเขียนตอนที่ 149 ในซีรีส์นี้?",
    "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_en": "What title did Bill Foster direct ?",
    "question_th": "บิล ฟอสเตอร์ กำกับชื่อเรื่องอะไร",
    "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_en": "Kim Weiskopf and Jeff Franklin wrote all the no. in series.",
    "question_th": "Kim Weiskopf และ Jeff Franklin เขียนหมายเลขทั้งหมด ในซีรีส์.",
    "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_en": "Which co-stars did Kalyanji-anandji direct in 1963?",
    "question_th": "Kalyanji-anandji กำกับการแสดงร่วมกับดาราคนไหนในปี 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_en": "Which co-singers appear in the movie Pyaasa?",
    "question_th": "นักร้องร่วมคนไหนที่ปรากฏในภาพยนตร์เรื่อง 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_en": "What is the additional information in the song mera yaar bana hai dulha",
    "question_th": "ข้อมูลเพิ่มเติมในเพลง 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_en": "In which years are co-stars  mala sinha and amitabh bachchan?",
    "question_th": "Mala Sinha และ 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_en": "Which song has Drunkard Groom listed as additional information?",
    "question_th": "เพลงใดที่ Drunkard Groom ระบุไว้เป็นข้อมูลเพิ่มเติม",
    "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_en": "Who was the lyricist for the song  with music directed by madan mohan kohli?",
    "question_th": "ใครคือผู้แต่งเนื้อร้องของเพลงพร้อมดนตรีที่กำกับโดย 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_en": "Which song directed by datta naik had the ending stranza written by Johnny Walker?",
    "question_th": "เพลงใดที่กำกับโดย datta naik มีท่อนจบที่แต่งโดย 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_en": "In which album can Dil De De Nahin Nahin Dil Le Le be found?",
    "question_th": "Dil De De Nahin Nahin Dil Le Le พบได้ในอัลบั้มใดบ้าง?",
    "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_en": "What was the GDP for 2002-2005 for the construction center? ",
    "question_th": " GDP ปี 2545-2548 สำหรับศูนย์ก่อสร้างเป็นเท่าใด",
    "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_en": "What is the November 3 result when June 10-11 is 147?",
    "question_th": "ผลวันที่ 3 พฤศจิกายน วันที่ 10-11 มิถุนายน เป็น 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_en": "What is the November 3 result when the result for January 15-16 is 141?",
    "question_th": "ผลวันที่ 3 พฤศจิกายน คืออะไร เมื่อผลวันที่ 15-16 มกราคม เป็น 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_en": "What June 10-11 is is that corresponds to March 28, 1968?",
    "question_th": "10-11 มิถุนายน ตรงกับวันที่ 28 มีนาคม 2511 คืออะไร?",
    "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_en": "What January 15-16 is is that corresponds to November 3, 2013?",
    "question_th": "15-16 มกราคม คือวันที่ 3 พฤศจิกายน 2556 คืออะไร?",
    "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_en": "When 127 is on June 10th to 11th what is November 3rd?",
    "question_th": "เมื่อ 127 คือวันที่ 10 ถึง 11 มิถุนายน วันที่ 3 พฤศจิกายน คืออะไร?",
    "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_en": "When 129 is on March 27th to 29th what is June 10th to 11th?",
    "question_th": "เมื่อ 129 คือวันที่ 27-29 มีนาคม วันที่ 10-11 มิถุนายน คืออะไร?",
    "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_en": "When 139 is on March 27th to 29th what is August 21st to 22nd?",
    "question_th": "เมื่อ 139 ตรงกับวันที่ 27-29 มีนาคม 21-22 สิงหาคมคือวันที่เท่าไร",
    "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_en": "During November 3 where august 21-22 is august 21, 2017?",
    "question_th": "ในช่วงวันที่ 3 พฤศจิกายน ซึ่งวันที่ 21-22 สิงหาคม คือ 21 สิงหาคม 2560?",
    "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_en": "How many solar eclipse on June 10-11, while November 3 is 153?",
    "question_th": "10-11 มิถุนายน จะมีสุริยุปราคากี่ดวง ส่วนวันที่ 3 พฤศจิกายน 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_en": "How many solar eclipse during August 21-22 where June 10-11 on June 11, 1983?",
    "question_th": "สุริยุปราคาในช่วงวันที่ 21-22 สิงหาคม และวันที่ 10-11 มิถุนายน วันที่ 11 มิถุนายน 2526 มีกี่ดวง",
    "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_en": "How many solar eclipse during June 10-11 and march 27-29 is 149?",
    "question_th": "สุริยุปราคาในช่วงวันที่ 10-11 มิถุนายน และ 27-29 มีนาคม มีจำนวนเท่าใด 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_en": "How many solar eclipse during august 21-22 and January 15-16 is 141?",
    "question_th": "สุริยุปราคาในช่วงวันที่ 21-22 สิงหาคม และ 15-16 มกราคม มีจำนวนเท่าใด 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_en": "How many solar eclipse during  January 15-16 and august 21-22 on august 21, 2017?",
    "question_th": "สุริยุปราคาในช่วงวันที่ 15-16 มกราคม และวันที่ 21-22 สิงหาคม ในวันที่ 21 สิงหาคม 2560 มีกี่ดวง",
    "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_en": "Name the fastest lap for round 14",
    "question_th": "บอกชื่อรอบที่เร็วที่สุดรอบ 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_en": "Name the winning driver for 20 april",
    "question_th": "ตั้งชื่อนักแข่งที่ชนะ 20 เมษายน",
    "context": "CREATE TABLE table_25322130_3 (winning_driver VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT circuit FROM table_25322130_3 WHERE date = \"13 July\"",
    "question_en": "Name the circuit for 13 july",
    "question_th": "ตั้งชื่อวงจรวันที่ 13 ก.ค",
    "context": "CREATE TABLE table_25322130_3 (circuit VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT fastest_lap FROM table_25322130_3 WHERE round = \"3\"",
    "question_en": "Name the fastest lap for round 3",
    "question_th": "บอกชื่อรอบที่เร็วที่สุดรอบ 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_en": "Name the fastest lap for piquet sports and silverstone",
    "question_th": "ตั้งชื่อรอบที่เร็วที่สุดสำหรับกีฬาปิเกต์และซิลเวอร์สโตน",
    "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_en": "How many laps where the position is 10th and the races is smaller than 9.0?",
    "question_th": "กี่รอบที่ตำแหน่ง 10 และการแข่งขันน้อยกว่า 9.0?",
    "context": "CREATE TABLE table_25318033_1 (f_laps VARCHAR, position VARCHAR, races VARCHAR)"
  },
  {
    "answer": "SELECT MIN(races) FROM table_25318033_1",
    "question_en": "What is the lowest amount of races?",
    "question_th": "จำนวนการแข่งขันขั้นต่ำคือเท่าไร?",
    "context": "CREATE TABLE table_25318033_1 (races INTEGER)"
  },
  {
    "answer": "SELECT races FROM table_25318033_1 WHERE points = \"137\"",
    "question_en": "Which races have 137 points?",
    "question_th": "เรซไหนมี 137 แต้ม?",
    "context": "CREATE TABLE table_25318033_1 (races VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_25318033_1 WHERE points = \"137\"",
    "question_en": "What team has 137 points?",
    "question_th": "ทีมไหนมี 137 แต้ม?",
    "context": "CREATE TABLE table_25318033_1 (team VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_25318033_1 WHERE podiums = 0 AND position = \"10th\"",
    "question_en": "How many points were scored when the podiums is 0 and position is 10th?",
    "question_th": "เมื่อขึ้นโพเดี้ยมเป็น 0 และอันดับที่ 10 ได้กี่คะแนน?",
    "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_en": "What is the rate limit when the desired rate change (%) is +40.4?",
    "question_th": "ขีดจำกัดอัตราเมื่ออัตราการเปลี่ยนแปลงที่ต้องการ (%) คือ +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__£m_ = \"limit agreed\"",
    "question_en": "What is the rate limit when budget plans (£m) is limit agreed?",
    "question_th": "ขีดจำกัดอัตราเมื่อแผนงบประมาณ (ล้านปอนด์) ได้รับการตกลงร่วมกันคือเท่าใด",
    "context": "CREATE TABLE table_25316812_1 (rate_limit__p_ VARCHAR, budget_plans__£m_ VARCHAR)"
  },
  {
    "answer": "SELECT rate_limit__p_ FROM table_25316812_1 WHERE desired_rate__p_ = \"162\"",
    "question_en": "What is the rate limit when the desired rate (p) is 162?",
    "question_th": "ขีดจำกัดอัตราคือเท่าไรเมื่ออัตราที่ต้องการ (p) คือ 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_en": "What is the rate change % when the rate limit is 82.86?",
    "question_th": "อัตราการเปลี่ยนแปลง % เมื่อจำกัดอัตราเป็น 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_en": "What is the desired rate when the rate limit (p) is 50.33?",
    "question_th": "อัตราที่ต้องการเมื่อขีดจำกัดอัตรา (p) คือ 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__£m_ = \"900\"",
    "question_en": "What is the authority who set the budget limit (£m) at 900?",
    "question_th": "หน่วยงานใดเป็นผู้กำหนดวงเงินงบประมาณ (ล้านปอนด์) ที่ 900?",
    "context": "CREATE TABLE table_25316812_1 (authority VARCHAR, budget_limit__£m_ VARCHAR)"
  },
  {
    "answer": "SELECT MAX(share) FROM table_25304789_1",
    "question_en": "What was the highest share?",
    "question_th": "ส่วนแบ่งสูงสุดคืออะไร?",
    "context": "CREATE TABLE table_25304789_1 (share INTEGER)"
  },
  {
    "answer": "SELECT final_score FROM table_25331766_3 WHERE attendance = 7523",
    "question_en": "What was the final score of the game with 7523 in attendance?",
    "question_th": "คะแนนสุดท้ายของเกมที่มีผู้เข้าร่วม 7523 คนเป็นเท่าใด?",
    "context": "CREATE TABLE table_25331766_3 (final_score VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT MIN(attendance) FROM table_25331766_3",
    "question_en": "What is the lowest attendance?",
    "question_th": "ผู้เข้าร่วมต่ำสุดคืออะไร?",
    "context": "CREATE TABLE table_25331766_3 (attendance INTEGER)"
  },
  {
    "answer": "SELECT steals FROM table_25342713_5 WHERE rebounds = 87",
    "question_en": "If the rebounds are at 87, what are the amount of steals?",
    "question_th": "ถ้ารีบาวด์อยู่ที่ 87 สตีลได้เท่าไหร่?",
    "context": "CREATE TABLE table_25342713_5 (steals VARCHAR, rebounds VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(blocks) FROM table_25342713_5 WHERE points = 89",
    "question_en": "How many players 89 points?",
    "question_th": "มีผู้เล่นกี่คน 89 แต้ม?",
    "context": "CREATE TABLE table_25342713_5 (blocks VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT MAX(blocks) FROM table_25342713_5 WHERE steals = 20",
    "question_en": "If the Steals are 20, what are the blocks?",
    "question_th": "ถ้า Steals เท่ากับ 20 จะมีบล็อคอะไรบ้าง?",
    "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_en": "How many millions of viewers did the episode directed by Jeffrey Blitz have?",
    "question_th": "ตอนที่กำกับโดย Jeffrey Blitz มีผู้ชมกี่ล้านคน",
    "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_en": "Who directed the episode that had 5.92 million viewers?",
    "question_th": "ใครเป็นผู้กำกับตอนที่มีผู้ชม 5.92 ล้านคน?",
    "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_en": "What was the name of the episode Alan Yang wrote?",
    "question_th": "ตอนที่ Alan Yang เขียนชื่ออะไร?",
    "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_en": "How many episodes were directed by Michael McCullers?",
    "question_th": "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_en": "When 3rd is the position what is the lowest amount of points?",
    "question_th": "เมื่ออันดับที่ 3 มีคะแนนต่ำสุดคือเท่าใด?",
    "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_en": "When art grand prix is the team and 2010 is the season how many wins are there?",
    "question_th": "เมื่ออาร์ต กรังด์ปรีซ์เป็นทีม และฤดูกาล 2010 มีชัยชนะกี่ครั้ง?",
    "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_en": "When 7th is the position and  15 is the race who is the team?",
    "question_th": "เมื่ออันดับที่ 7 คืออันดับที่ 15 คือการแข่งขันทีมใคร?",
    "context": "CREATE TABLE table_25352318_1 (team VARCHAR, races VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT MIN(poles) FROM table_25352318_1",
    "question_en": "What is the lowest overall amount of poles?",
    "question_th": "จำนวนเสาโดยรวมต่ำสุดคือเท่าไร?",
    "context": "CREATE TABLE table_25352318_1 (poles INTEGER)"
  },
  {
    "answer": "SELECT position FROM table_25352318_1 WHERE season = 2012 AND team = \"Racing Engineering\"",
    "question_en": "When racing engineering is the team and 2012 is the team what is the position?",
    "question_th": "เมื่อวิศวกรแข่งเป็นทีม และปี 2012 เป็นทีม ตำแหน่งอะไร?",
    "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_en": "Is the facility opened in 1968 a major facility?",
    "question_th": "สถานที่นี้เปิดในปี 1968 เป็นสถานที่หลักหรือไม่?",
    "context": "CREATE TABLE table_25346763_1 (Major VARCHAR, year_opened VARCHAR)"
  },
  {
    "answer": "SELECT custody_level_s_ FROM table_25346763_1 WHERE location = \"Shelton\"",
    "question_en": "What is the custody level of the facility in Shelton?",
    "question_th": "ระดับการดูแลของสิ่งอำนวยความสะดวกในเชลตันคืออะไร?",
    "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_en": "Is the Washington Corrections Center for Women (WCCW) a major facility?",
    "question_th": "Washington Corrections Center for Women (WCCW) เป็นสถานที่หลักหรือไม่?",
    "context": "CREATE TABLE table_25346763_1 (Major VARCHAR, facility VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(capacity) FROM table_25346763_1 WHERE year_opened = \"1956\"",
    "question_en": "What is the capacity for a facility opened in 1956?",
    "question_th": "กำลังการผลิตของโรงงานที่เปิดในปี 1956 เป็นเท่าใด",
    "context": "CREATE TABLE table_25346763_1 (capacity VARCHAR, year_opened VARCHAR)"
  },
  {
    "answer": "SELECT facility FROM table_25346763_1 WHERE year_opened = \"1954\"",
    "question_en": "What facility opening in 1954?",
    "question_th": "สิ่งอำนวยความสะดวกใดที่เปิดในปี 1954?",
    "context": "CREATE TABLE table_25346763_1 (facility VARCHAR, year_opened VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_25353861_5 WHERE assists = 6",
    "question_en": "Which player had 6 assists? ",
    "question_th": " นักเตะคนไหนทำได้ 6 แอสซิสต์?",
    "context": "CREATE TABLE table_25353861_5 (player VARCHAR, assists VARCHAR)"
  },
  {
    "answer": "SELECT MIN(steals) FROM table_25353861_5",
    "question_en": "What is the fewest steals any player had?",
    "question_th": "ผู้เล่นคนใดขโมยได้น้อยที่สุดคือเท่าไร?",
    "context": "CREATE TABLE table_25353861_5 (steals INTEGER)"
  },
  {
    "answer": "SELECT MIN(steals) FROM table_25353861_5 WHERE player = \"Kelly Miller\"",
    "question_en": "How many steals did Kelly Miller have?",
    "question_th": "Kelly Miller ขโมยไปกี่ครั้ง?",
    "context": "CREATE TABLE table_25353861_5 (steals INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_25353861_5 WHERE blocks = 9",
    "question_en": "Which player had 9 blocks?",
    "question_th": "ผู้เล่นคนไหนมี 9 บล็อก?",
    "context": "CREATE TABLE table_25353861_5 (player VARCHAR, blocks VARCHAR)"
  },
  {
    "answer": "SELECT rebounds FROM table_25353861_5 WHERE player = \"Tammy Sutton-Brown\"",
    "question_en": "How many rebounds did Tammy Sutton-Brown have?",
    "question_th": "แทมมี่ ซัตตัน-บราวน์ ทำได้กี่รีบาวด์?",
    "context": "CREATE TABLE table_25353861_5 (rebounds VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT science FROM table_2534578_1 WHERE social_studies = \"93.56\"",
    "question_en": "What was the science score in the year there was a social studies score of 93.56?",
    "question_th": "คะแนนวิทยาศาสตร์ ปีที่มีคะแนนสังคมศึกษา 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_en": "How many years did the school have a mathetmatics score of 98.02?",
    "question_th": "โรงเรียนมีคะแนนคณิตศาสตร์ 98.02 กี่ปี?",
    "context": "CREATE TABLE table_2534578_1 (science VARCHAR, mathematics VARCHAR)"
  },
  {
    "answer": "SELECT reading FROM table_2534578_1 WHERE science = \"96.13\"",
    "question_en": "What was the reading score in the year the science score was 96.13?",
    "question_th": "คะแนนการอ่านในปีคะแนนวิทยาศาสตร์ 96.13 เป็นเท่าใด",
    "context": "CREATE TABLE table_2534578_1 (reading VARCHAR, science VARCHAR)"
  },
  {
    "answer": "SELECT language FROM table_2534578_1 WHERE reading = \"94.47\"",
    "question_en": "What was the language score when the reading score was 94.47?",
    "question_th": "คะแนนภาษาเมื่ออ่านได้ 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_en": "How many values for points have Sophia Witherspoon as the player?",
    "question_th": "โซเฟีย วิเธอร์สปูนเป็นผู้เล่นกี่แต้มสำหรับคะแนน?",
    "context": "CREATE TABLE table_25352324_5 (points VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(points) FROM table_25352324_5",
    "question_en": "What is the highest value for points?",
    "question_th": "คะแนนที่มีมูลค่าสูงสุดคือเท่าไร?",
    "context": "CREATE TABLE table_25352324_5 (points INTEGER)"
  },
  {
    "answer": "SELECT rebounds FROM table_25352324_5 WHERE steals = 19",
    "question_en": "What is every value for rebounds when steals is 19?",
    "question_th": "ทุกค่าของการรีบาวด์เมื่อขโมยเป็น 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_en": "What is every value for points if rebounds is 6 and blocks is 0?",
    "question_th": "ทุกค่าของคะแนนจะเป็นเท่าใดหากรีบาวด์เป็น 6 และบล็อกเป็น 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_en": "What is every entry for assists if the player is Lynn Pride?",
    "question_th": "ทุกรายการแอสซิสต์จะเป็นอย่างไรหากผู้เล่นคือลินน์ ไพรด์?",
    "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_en": "What is the air date of the episode written by Itamar Moses? ",
    "question_th": " วันที่ออกอากาศของตอนที่เขียนโดย 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_en": "What is the june 10-11 when august 21-22 is august 21, 2017?",
    "question_th": "10-11 มิถุนายน คือวันที่ 21-22 สิงหาคม คือ 21 สิงหาคม 2560",
    "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_en": "how many times is march 27-29 is 129?",
    "question_th": "27-29 มีนาคม กี่ครั้ง 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_en": "what is june 10-11 when march 27-29 is 149?",
    "question_th": "10-11 มิถุนายน คือวันที่ 27-29 มีนาคม 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_en": "what is november 3 when june 10-11 is june 10, 1964?",
    "question_th": "3 พฤศจิกายน คือวันที่ 10-11 มิถุนายน คือ 10 มิถุนายน 2507",
    "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_en": "what is march 27-29 when november 3 is 133?",
    "question_th": "27-29 มีนาคมคือวันที่ 3 พฤศจิกายน 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_en": "What is january 15-16 when november 3 is 153?",
    "question_th": "15-16 มกราคม คือวันที่ 3 พฤศจิกายน 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_en": " january 15-16 when august 21-22 is august 22, 1979?",
    "question_th": " 15-16 มกราคม เมื่อ 21-22 สิงหาคม เป็น 22 สิงหาคม 2522?",
    "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_en": "How many entries are shown for november 3 when january 15-16 is 141?",
    "question_th": "มีการแสดงกี่รายการสำหรับวันที่ 3 พฤศจิกายน เมื่อ 15-16 มกราคม คือ 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_en": "  march 27-29 where june 10-11 is 127?",
    "question_th": " 27-29 มีนาคม ที่ไหน 10-11 มิถุนายน 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_en": " june 10-11 when november 3 is 133?",
    "question_th": " 10-11 มิถุนายน เมื่อ 3 พฤศจิกายน 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_en": " june 10-11 when january 15-16 is january 15, 1991?",
    "question_th": " 10-11 มิถุนายน เมื่อ 15-16 มกราคม เป็น 15 มกราคม 2534?",
    "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_en": "What is shown for november 3 when august 21-22 is august 22, 1998?",
    "question_th": "สิ่งที่จะแสดงในวันที่ 3 พฤศจิกายนในวันที่ 21-22 สิงหาคมคือวันที่ 22 สิงหาคม 2541",
    "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_en": "Name the number of teams for 11th position september 10",
    "question_th": "รายชื่อทีมอันดับที่ 11 วันที่ 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_en": "Name the replaced by for august 9 ",
    "question_th": " ตั้งชื่อสิ่งที่แทนที่ด้วยสำหรับวันที่ 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_en": "Name the most number for charvez davis",
    "question_th": "ทายเบอร์ที่มากที่สุดของ ชาร์เวซ เดวิส",
    "context": "CREATE TABLE table_25360865_1 (_number INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT MAX(weight) FROM table_25360865_1",
    "question_en": "Name the most height",
    "question_th": "ตั้งชื่อส่วนสูงที่สุด",
    "context": "CREATE TABLE table_25360865_1 (weight INTEGER)"
  },
  {
    "answer": "SELECT COUNT(home_town) FROM table_25360865_1 WHERE _number = 32",
    "question_en": "Name the number of home town for number being 32",
    "question_th": "ตั้งชื่อหมายเลขบ้านเกิดเป็นหมายเลข 32",
    "context": "CREATE TABLE table_25360865_1 (home_town VARCHAR, _number VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(height) FROM table_25360865_1 WHERE _number = 32",
    "question_en": "Name the total number of height for number 32",
    "question_th": "ตั้งชื่อจำนวนความสูงรวมของหมายเลข 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_en": "Name the number for florida air academy",
    "question_th": "ตั้งชื่อหมายเลขสำหรับสถาบันการบินฟลอริดา",
    "context": "CREATE TABLE table_25360865_1 (_number VARCHAR, last_school VARCHAR)"
  },
  {
    "answer": "SELECT height FROM table_25360865_1 WHERE name = \"Demetrius Jemison\"",
    "question_en": "Name the height for demetrius jemison",
    "question_th": "ตั้งชื่อส่วนสูงของเดเมตริอุส เจมิสัน",
    "context": "CREATE TABLE table_25360865_1 (height VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT MAX(won) FROM table_25368177_1 WHERE team = \"Canterbury Wizards\"",
    "question_en": "How many wins did Canterbury Wizards have?",
    "question_th": "Canterbury Wizards ชนะได้กี่ครั้ง?",
    "context": "CREATE TABLE table_25368177_1 (won INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_25368177_1 WHERE net_run_rate = \"0.134\"",
    "question_en": "What team had a net run rate of 0.134?",
    "question_th": "ทีมใดมีอัตราการวิ่งสุทธิ 0.134?",
    "context": "CREATE TABLE table_25368177_1 (team VARCHAR, net_run_rate VARCHAR)"
  },
  {
    "answer": "SELECT MAX(abandoned) FROM table_25368177_1",
    "question_en": "What's the largest number of abandoned games by any of the teams?",
    "question_th": "จำนวนเกมที่ถูกละทิ้งมากที่สุดของทีมใดคือจำนวนเท่าใด?",
    "context": "CREATE TABLE table_25368177_1 (abandoned INTEGER)"
  },
  {
    "answer": "SELECT COUNT(net_run_rate) FROM table_25368177_1 WHERE total_points = 19",
    "question_en": "How many different net run rates did the team with 19 total points have?",
    "question_th": "ทีมที่มีคะแนนรวม 19 คะแนนมีอัตราการวิ่งสุทธิที่แตกต่างกันกี่ทีม?",
    "context": "CREATE TABLE table_25368177_1 (net_run_rate VARCHAR, total_points VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_25369796_1 WHERE points = \"56\"",
    "question_en": "What was the team that scored 56 points?Qh",
    "question_th": "ทีมใดที่ได้คะแนน 56 คะแนน?คห",
    "context": "CREATE TABLE table_25369796_1 (team VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT MIN(season) FROM table_25369796_1 WHERE position = \"29th\"",
    "question_en": "What was the earliest season where a team got a 29th position?",
    "question_th": "ฤดูกาลแรกสุดที่ทีมได้อันดับที่ 29 คืออะไร?",
    "context": "CREATE TABLE table_25369796_1 (season INTEGER, position VARCHAR)"
  },
  {
    "answer": "SELECT f_laps FROM table_25369796_1 WHERE team = \"HBR Motorsport\"",
    "question_en": "What was the recorded flaps of HBR Motorsport team?",
    "question_th": "แผ่นพับของทีม HBR Motorsport ที่บันทึกไว้คืออะไร?",
    "context": "CREATE TABLE table_25369796_1 (f_laps VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT series FROM table_25369796_1 WHERE points = \"56\"",
    "question_en": "What was the series where a team scored 56 points?",
    "question_th": "ซีรีส์ใดที่ทีมทำคะแนนได้ 56 คะแนน",
    "context": "CREATE TABLE table_25369796_1 (series VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(position) FROM table_25369796_1 WHERE points = \"56\"",
    "question_en": "How many team position scored 56 points?",
    "question_th": "กี่ตำแหน่งทีมได้ 56 คะแนน?",
    "context": "CREATE TABLE table_25369796_1 (position VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_25380472_2 WHERE final_score = \"L 14–24\"",
    "question_en": "On what dates was the final score of the game L 14–24?",
    "question_th": "คะแนนสุดท้ายของเกม L 14–24 คือวันที่ใด",
    "context": "CREATE TABLE table_25380472_2 (date VARCHAR, final_score VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(game_site) FROM table_25380472_2 WHERE team_record = \"1–7\"",
    "question_en": "How many game sites are there where the team record is 1–7?",
    "question_th": "มีไซต์เกมกี่แห่งที่สถิติของทีมอยู่ที่ 1–7",
    "context": "CREATE TABLE table_25380472_2 (game_site VARCHAR, team_record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_25380472_2 WHERE week = 7",
    "question_en": "On week 7, what were the opponents?",
    "question_th": "ในสัปดาห์ที่ 7 คู่แข่งคืออะไร?",
    "context": "CREATE TABLE table_25380472_2 (opponent VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT game_site FROM table_25380472_2 WHERE team_record = \"0–5\"",
    "question_en": "On what game sites are there where the team record is 0–5?",
    "question_th": "มีเว็บไซต์เกมใดบ้างที่สถิติของทีมอยู่ที่ 0–5",
    "context": "CREATE TABLE table_25380472_2 (game_site VARCHAR, team_record VARCHAR)"
  },
  {
    "answer": "SELECT game_site FROM table_25380472_2 WHERE team_record = \"1–6\"",
    "question_en": "What game sites are where the team record is 1–6?",
    "question_th": "เว็บไซต์เกมใดบ้างที่สถิติของทีมอยู่ที่ 1–6",
    "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_en": "In game site AOL Arena, who are all the opponents?",
    "question_th": "ในเว็บไซต์เกม AOL Arena ใครคือคู่ต่อสู้ทั้งหมด?",
    "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_en": "What organization had the founding date of 1998-11-08? ",
    "question_th": " องค์กรใดมีวันก่อตั้ง 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_en": "How many letters were given to the organization with a founding date of 1997-12-12? ",
    "question_th": " มีจดหมายกี่ฉบับที่มอบให้กับองค์กรที่มีวันก่อตั้ง 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_en": "What is the song choice where the original artist is Gino Paoli?",
    "question_th": "ตัวเลือกเพลงที่ศิลปินต้นฉบับคือ 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_en": "What is the theme where the original artist is Noemi feat. Fiorella Mannoia?",
    "question_th": "ธีมของศิลปินต้นฉบับคือ Noemi feat. ฟิออเรลล่า มานโนยา?",
    "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_en": "What is the song choice where the episode is Live Show 1?",
    "question_th": "เพลงที่เลือกตอนเป็น 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_en": "What is the result where the original artist is Prince and the Revolution?",
    "question_th": "ผลลัพธ์ที่ศิลปินต้นฉบับคือ 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_en": "What is the theme where the original artist is AC/DC?",
    "question_th": "ธีมของศิลปินต้นฉบับคือ 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_en": "what type of organization is sigma phi omega?",
    "question_th": "ซิกมา พี โอเมก้า เป็นองค์กรประเภทใด",
    "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_en": "how many types of organization were founded in san diego state university? ",
    "question_th": " มีองค์กรกี่ประเภทที่ก่อตั้งขึ้นในมหาวิทยาลัยแห่งรัฐซานดิเอโก",
    "context": "CREATE TABLE table_2538117_2 (type VARCHAR, founding_university VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(season) FROM table_25375093_1 WHERE position = \"4th\"",
    "question_en": "Name the season for position 4th",
    "question_th": "ตั้งชื่อฤดูกาลสำหรับตำแหน่งที่ 4",
    "context": "CREATE TABLE table_25375093_1 (season VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT MIN(f_laps) FROM table_25375093_1",
    "question_en": "Name the least f/laps",
    "question_th": "ตั้งชื่อ f/laps น้อยที่สุด",
    "context": "CREATE TABLE table_25375093_1 (f_laps INTEGER)"
  },
  {
    "answer": "SELECT MIN(podiums) FROM table_25375093_1 WHERE position = \"9th\"",
    "question_en": "Name the least podiums for 9th position",
    "question_th": "ตั้งชื่อโพเดียมน้อยที่สุดสำหรับอันดับที่ 9",
    "context": "CREATE TABLE table_25375093_1 (podiums INTEGER, position VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(shot_pct) FROM table_25381437_2 WHERE pa = 79",
    "question_en": "How many results are listed for shot PCT Where PA is 79?",
    "question_th": "มีผลลัพธ์กี่รายการที่แสดงสำหรับ shot PCT โดยที่ PA คือ 79",
    "context": "CREATE TABLE table_25381437_2 (shot_pct VARCHAR, pa VARCHAR)"
  },
  {
    "answer": "SELECT locale FROM table_25381437_2 WHERE stolen_ends = 15",
    "question_en": "Where were stolen ends recorded as 15?",
    "question_th": "ปลายที่ถูกขโมยถูกบันทึกเป็น 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_en": "What was the SlNo no of contact person SDE (P), Thiruppattur?",
    "question_th": "SlNo ของผู้ติดต่อ 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_en": "What was the production code of the episode written by Brendan Cowell?",
    "question_th": "รหัสการผลิตของตอนที่เขียนโดย 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_en": "How many f/laps did Pedro Nunes have when he was in 20th position?",
    "question_th": "Pedro Nunes ทำไปได้กี่รอบเมื่อเขาอยู่ในอันดับที่ 20",
    "context": "CREATE TABLE table_25386974_1 (f_laps VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT f_laps FROM table_25386974_1 WHERE series = \"GP3 series\"",
    "question_en": "How many f/laps did Pedro Nunes have when he was at the gp3 series?",
    "question_th": "Pedro Nunes ทำไปได้กี่รอบเมื่อเขาอยู่ที่ซีรีส์ gp3",
    "context": "CREATE TABLE table_25386974_1 (f_laps VARCHAR, series VARCHAR)"
  },
  {
    "answer": "SELECT MIN(races) FROM table_25386974_1",
    "question_en": "What is the fewest number of races Pedro Nunes completed in any series?",
    "question_th": "Pedro Nunes เข้าเส้นชัยในซีรีส์ใดได้น้อยที่สุดคือจำนวนเท่าใด",
    "context": "CREATE TABLE table_25386974_1 (races INTEGER)"
  },
  {
    "answer": "SELECT MAX(podiums) FROM table_25386974_1 WHERE position = \"17th\"",
    "question_en": "What is the most podiums Pedro Nunes had when in 17th position?",
    "question_th": "เปโดร นูเนสขึ้นโพเดี้ยมได้มากที่สุดเมื่ออยู่ในอันดับที่ 17 คืออะไร?",
    "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_en": "What was the founding university of the organization Tau Epsilon Phi 1?",
    "question_th": "มหาวิทยาลัยผู้ก่อตั้งขององค์กร Tau Epsilon Phi 1 คืออะไร?",
    "context": "CREATE TABLE table_2538117_5 (founding_university VARCHAR, organization VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_2538117_5 WHERE letters = \"ΣΑΕΠ\"",
    "question_en": "What type is σαεπ?",
    "question_th": "σαεπเป็นประเภทใด?",
    "context": "CREATE TABLE table_2538117_5 (type VARCHAR, letters VARCHAR)"
  },
  {
    "answer": "SELECT founding_university FROM table_2538117_5 WHERE letters = \"ΑΕΦ\"",
    "question_en": "What was the founding university of αεφ?",
    "question_th": "มหาวิทยาลัยผู้ก่อตั้ง αεφ คืออะไร?",
    "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_en": "What is the type if the organization name is Gamma RHO Lambda 1?",
    "question_th": "ประเภทใดหากชื่อองค์กรคือ Gamma RHO Lambda 1",
    "context": "CREATE TABLE table_2538117_7 (type VARCHAR, organization VARCHAR)"
  },
  {
    "answer": "SELECT founding_date FROM table_2538117_7 WHERE letters = \"ΦΑΝ\"",
    "question_en": "If the letters is φαν, what is the founding date?",
    "question_th": "ถ้าตัวอักษรคือ φαν ก่อตั้งเมื่อใด?",
    "context": "CREATE TABLE table_2538117_7 (founding_date VARCHAR, letters VARCHAR)"
  },
  {
    "answer": "SELECT nickname FROM table_2538117_7 WHERE founding_university = \"Charlotte, NC\"",
    "question_en": "If the founding university is in Charlotte, NC, what is the nickname?",
    "question_th": "ถ้ามหาวิทยาลัยก่อตั้งอยู่ที่เมืองชาร์ลอตต์ รัฐนอร์ทแคโรไลนา ชื่อเล่นว่าอะไร?",
    "context": "CREATE TABLE table_2538117_7 (nickname VARCHAR, founding_university VARCHAR)"
  },
  {
    "answer": "SELECT founding_date FROM table_2538117_7 WHERE letters = \"ΚΨΚ\"",
    "question_en": "What is the founding date if the letters are κψκ?",
    "question_th": "ถ้าตัวอักษรเป็น κψκ จะก่อตั้งเมื่อใด?",
    "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_en": "If the founding university is in Washington, D.C., what was the founding date?",
    "question_th": "หากมหาวิทยาลัยก่อตั้งอยู่ในวอชิงตัน ดี.ซี. ก่อตั้งเมื่อใด",
    "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_en": "What is the rank by average for the team who averaged 22.8?",
    "question_th": "อันดับเฉลี่ยของทีมที่ได้คะแนนเฉลี่ย 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_en": "What is the number of dances for the team that averages 20.6?",
    "question_th": "จำนวนท่าเต้นของทีมเฉลี่ย 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_en": "What couple averaged 15.5?",
    "question_th": "คู่ไหนได้เฉลี่ย 15.5?",
    "context": "CREATE TABLE table_25391981_3 (couple VARCHAR, average VARCHAR)"
  },
  {
    "answer": "SELECT italian FROM table_25401_15 WHERE english = \"part\"",
    "question_en": "What is every value for Italian when the part is English?",
    "question_th": "ค่าทั้งหมดสำหรับภาษาอิตาลีเมื่อส่วนหนึ่งเป็นภาษาอังกฤษคืออะไร?",
    "context": "CREATE TABLE table_25401_15 (italian VARCHAR, english VARCHAR)"
  },
  {
    "answer": "SELECT proto_italo_western_1 FROM table_25401_15 WHERE english = \"door\"",
    "question_en": "What is every entry for Proto-Italo-Western 1 when door is English?",
    "question_th": "ทุกรายการสำหรับ Proto-Italo-Western 1 คืออะไรเมื่อประตูเป็นภาษาอังกฤษ?",
    "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_en": "How many entries for Italian correspond to the Conservative Central Italian of Unu?",
    "question_th": "มีกี่รายการสำหรับภาษาอิตาลีที่สอดคล้องกับภาษาอิตาลีกลางแบบอนุรักษ์นิยมของ 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_en": "What is every entry for Latin when Catalan is Mar?",
    "question_th": "ทุกรายการสำหรับภาษาละตินเมื่อภาษาคาตาลันคือ Mar คืออะไร?",
    "context": "CREATE TABLE table_25401_15 (latin VARCHAR, catalan VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_25428629_1 WHERE stadium = \"Thuwunna stadium\"",
    "question_en": "If the stadium name is the Thuwunna Stadium, what is the date?",
    "question_th": "ถ้าชื่อสนามคือสนามทุวันนาวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_25428629_1 (date VARCHAR, stadium VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(opponent) FROM table_25428629_1 WHERE location = \"Yangon, Myanmar\"",
    "question_en": "If the location is Yangon, Myanmar, what is the opponent total number?",
    "question_th": "ถ้าสถานที่คือเมืองย่างกุ้ง ประเทศเมียนมาร์ จำนวนฝ่ายตรงข้ามทั้งหมดเป็นเท่าใด",
    "context": "CREATE TABLE table_25428629_1 (opponent VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(iso_) AS № FROM table_254234_1 WHERE chinese_name = \"青海省 Qīnghǎi Shěng\"",
    "question_en": "How many provinces are named 青海省 qīnghǎi shěng?",
    "question_th": "มีกี่จังหวัดที่ชื่อ 青海省 qīnghǎi shěng?",
    "context": "CREATE TABLE table_254234_1 (iso_ VARCHAR, chinese_name VARCHAR)"
  },
  {
    "answer": "SELECT MAX(area³) FROM table_254234_1 WHERE density² = \"533.59\"",
    "question_en": "What is the area of the province with a density of 533.59?",
    "question_th": "พื้นที่ของจังหวัดที่มีความหนาแน่น 533.59 คืออะไร?",
    "context": "CREATE TABLE table_254234_1 (area³ INTEGER, density² VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(iso_) AS № FROM table_254234_1 WHERE density² = \"165.81\"",
    "question_en": "How many provinces have a density of 165.81?",
    "question_th": "มีกี่จังหวัดที่มีความหนาแน่น 165.81?",
    "context": "CREATE TABLE table_254234_1 (iso_ VARCHAR, density² VARCHAR)"
  },
  {
    "answer": "SELECT abbreviation_symbol FROM table_254234_1 WHERE chinese_name = \"辽宁省 Liáoníng Shěng\"",
    "question_en": "What is the abbreviation/symbol of 辽宁省 liáoníng shěng?",
    "question_th": "辽宁省 liáoníng shěng อักษรย่อ/สัญลักษณ์ว่าอะไร?",
    "context": "CREATE TABLE table_254234_1 (abbreviation_symbol VARCHAR, chinese_name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(gb) FROM table_254234_1 WHERE iso_№ = \"CN-65\"",
    "question_en": "How many gb's have an iso number of cn-65?",
    "question_th": "กี่ gb มีจำนวน iso ของ cn-65?",
    "context": "CREATE TABLE table_254234_1 (gb VARCHAR, iso_№ VARCHAR)"
  },
  {
    "answer": "SELECT chinese_name FROM table_254234_1 WHERE capital = \"Hangzhou\"",
    "question_en": "What is the chinese name of the province whose capital is hangzhou?",
    "question_th": "ชื่อภาษาจีนของจังหวัดที่มีเมืองหลวงคือหางโจวชื่ออะไร",
    "context": "CREATE TABLE table_254234_1 (chinese_name VARCHAR, capital VARCHAR)"
  },
  {
    "answer": "SELECT MIN(races) FROM table_25421463_1",
    "question_en": "What is the fewest amount of races in any season? ",
    "question_th": " จำนวนการแข่งขันน้อยที่สุดในฤดูกาลใดคือเท่าไร?",
    "context": "CREATE TABLE table_25421463_1 (races INTEGER)"
  },
  {
    "answer": "SELECT MIN(races) FROM table_25421463_1 WHERE points = \"38\"",
    "question_en": "How many races were there when Sigachev had 38 points?",
    "question_th": "มีการแข่งขันทั้งหมดกี่รายการเมื่อ Sigachev มี 38 คะแนน?",
    "context": "CREATE TABLE table_25421463_1 (races INTEGER, points VARCHAR)"
  },
  {
    "answer": "SELECT team_name FROM table_25421463_1 WHERE points = \"38\"",
    "question_en": "What team was Sigachev on when he had 38 points? ",
    "question_th": " Sigachev อยู่ทีมใดเมื่อเขามี 38 คะแนน?",
    "context": "CREATE TABLE table_25421463_1 (team_name VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_25421463_1 WHERE final_placing = \"NC†\" AND team_name = \"SL Formula Racing\"",
    "question_en": "In what season was the final placing NC† and the team SL Formula Racing? ",
    "question_th": " NC† และทีม 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_en": "what is distance for the 7th position?",
    "question_th": "ตำแหน่งที่ 7 เป็นระยะทางเท่าไร?",
    "context": "CREATE TABLE table_25429986_1 (distance VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT jockey FROM table_25429986_1 WHERE position = \"10th\"",
    "question_en": "who isthe jockey in 10th position?",
    "question_th": "ใครคือจ๊อกกี้ในตำแหน่งที่ 10?",
    "context": "CREATE TABLE table_25429986_1 (jockey VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_25429986_1 WHERE number = 22",
    "question_en": "what position is number 22?",
    "question_th": "หมายเลข 22 คือตำแหน่งอะไร?",
    "context": "CREATE TABLE table_25429986_1 (position VARCHAR, number VARCHAR)"
  },
  {
    "answer": "SELECT horse FROM table_25429986_1 WHERE position = \"6th\"",
    "question_en": "what horse is in the 6th position?",
    "question_th": "ม้าอะไรอยู่ในตำแหน่งที่ 6?",
    "context": "CREATE TABLE table_25429986_1 (horse VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_25429986_1 WHERE handicap = \"10-2\"",
    "question_en": "what position has a handicap of 10-2?",
    "question_th": "ตำแหน่งใดมีแต้มต่อ 10-2?",
    "context": "CREATE TABLE table_25429986_1 (position VARCHAR, handicap VARCHAR)"
  },
  {
    "answer": "SELECT handicap FROM table_25429986_1 WHERE distance = \"9 lengths\"",
    "question_en": "what is the handicap where the distance is 9 lengths?",
    "question_th": "แฮนดิแคปที่ระยะ 9 ยาวเป็นเท่าใด?",
    "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_en": "Which series occurred when the 7800 was 5040.00?",
    "question_th": "ซีรีย์ใดเกิดขึ้นเมื่อ 7800 เป็น 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_en": "Which series occurred in which the semi-finalist was runner-up and the 7800.00 was 6420.00?",
    "question_th": "ซีรีส์ใดที่เกิดขึ้นซึ่งผู้เข้ารอบรองชนะเลิศได้รองชนะเลิศและ 7800.00 ได้ 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_en": "What road is associated with Carson Valley county?",
    "question_th": "ถนนสายใดที่เกี่ยวข้องกับเทศมณฑลคาร์สัน วัลเลย์",
    "context": "CREATE TABLE table_25438110_5 (road VARCHAR, county VARCHAR)"
  },
  {
    "answer": "SELECT county FROM table_25438110_5 WHERE casinos = 17",
    "question_en": "What county has exactly 17 casinos?",
    "question_th": "จังหวัดใดมีคาสิโนถึง 17 แห่ง?",
    "context": "CREATE TABLE table_25438110_5 (county VARCHAR, casinos VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(casinos) FROM table_25438110_5 WHERE fy09_$millions = \"$279\"",
    "question_en": "How many casinos are associated with a FY2009 $mil value of exactly $279?",
    "question_th": "มีคาสิโนกี่แห่งที่เกี่ยวข้องกับมูลค่าล้านดอลลาร์ในปีงบประมาณ 2009 ที่ 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_en": "What is the FY2008 $mil value associated with a FY2007 $mil value of exactly $120?",
    "question_th": "มูลค่าล้านดอลลาร์ในปีงบประมาณ 2551 ที่เกี่ยวข้องกับมูลค่าล้านดอลลาร์ในปีงบประมาณ 2550 ที่ 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_en": "What country was Danissa Zurek from?",
    "question_th": "Danissa Zurek มาจากประเทศใด",
    "context": "CREATE TABLE table_25461827_2 (country VARCHAR, contestant VARCHAR)"
  },
  {
    "answer": "SELECT MIN(height__cm_) FROM table_25461827_2 WHERE country = \"Honduras\"",
    "question_en": "What is the smallest height associated with Honduras?",
    "question_th": "ความสูงที่น้อยที่สุดที่เกี่ยวข้องกับฮอนดูรัสคือเท่าไร?",
    "context": "CREATE TABLE table_25461827_2 (height__cm_ INTEGER, country VARCHAR)"
  },
  {
    "answer": "SELECT height__ft_ FROM table_25461827_2 WHERE country = \"Paraguay\"",
    "question_en": "What is the height associated with Paraguay?",
    "question_th": "ความสูงที่เกี่ยวข้องกับปารากวัยคืออะไร?",
    "context": "CREATE TABLE table_25461827_2 (height__ft_ VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(contestant) FROM table_25461827_2 WHERE age = 18",
    "question_en": "What is the number of contestants who are aged exactly 18?",
    "question_th": "ผู้เข้าแข่งขันที่มีอายุ 18 ปี มีจำนวนเท่าใด",
    "context": "CREATE TABLE table_25461827_2 (contestant VARCHAR, age VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_25461946_5 WHERE date = \"November 17\"",
    "question_en": "Who scored the most points on November 17?",
    "question_th": "ใครทำคะแนนได้มากที่สุดในวันที่ 17 พฤศจิกายน?",
    "context": "CREATE TABLE table_25461946_5 (high_points VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_25461946_5 WHERE team = \"Virginia Tech\"",
    "question_en": "What was the final score when the Temple Owls beat Virginia Tech?",
    "question_th": "คะแนนสุดท้ายเมื่อ Temple Owls เอาชนะ 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_en": "How many games were played on november 27?",
    "question_th": "วันที่ 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_en": "Who got the pole position if the supporting is USAC National Midget Series?",
    "question_th": "ใครได้ตำแหน่งโพลโพซิชั่นหากตัวรองรับคือ 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_en": "Who won the fastest lap if Anders Krohn won the pole position?",
    "question_th": "ใครเป็นผู้ชนะรอบที่เร็วที่สุดหาก Anders Krohn คว้าตำแหน่งโพลโพสิชั่น?",
    "context": "CREATE TABLE table_25459168_2 (fastest_lap VARCHAR, pole_position VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(round) FROM table_25459168_2 WHERE fastest_lap = \"João Victor Horto\"",
    "question_en": "How many rounds did João Victor Horto achieved the fastest lap?",
    "question_th": "João Victor Horto ทำรอบเร็วที่สุดได้กี่รอบ",
    "context": "CREATE TABLE table_25459168_2 (round VARCHAR, fastest_lap VARCHAR)"
  },
  {
    "answer": "SELECT circuit FROM table_25459168_2 WHERE date = \"August 21\"",
    "question_en": "What circuit was used on August 21?",
    "question_th": "วันที่ 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_en": "How many rounds did Alex Ardoin achieved a fastest lap?",
    "question_th": "Alex Ardoin ทำรอบเร็วที่สุดได้กี่รอบ?",
    "context": "CREATE TABLE table_25459168_2 (round VARCHAR, fastest_lap VARCHAR)"
  },
  {
    "answer": "SELECT design FROM table_25468520_1 WHERE quantity = \"5,000,000\"",
    "question_en": "What is the design when quantity is 5,000,000?",
    "question_th": "การออกแบบเมื่อมีปริมาณ 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_en": "How many time is the theme rotary international : 100 years in canada?",
    "question_th": "ธีมโรตารีสากล: 100 ปีในแคนาดามีกี่ครั้ง?",
    "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_en": "What is the paper type for the date of issue July 8?",
    "question_th": "กระดาษสำหรับวันที่ออกวันที่ 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_en": "What is the theme when the printing process is litho in 3 cols and intaglio?",
    "question_th": "ธีมเมื่อกระบวนการพิมพ์เป็นแบบลิโธ 3 สีและแกะสลักคืออะไร",
    "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_en": "How many times is the theme roadside attractions: wawa goose?",
    "question_th": "สถานที่ท่องเที่ยวริมถนนมีธีมกี่ครั้ง: 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_en": "What is the theme when the date of issue is 11 january 2010?",
    "question_th": "หัวข้อเรื่องเมื่อวันที่ออกคือ 11 มกราคม 2010 คืออะไร?",
    "context": "CREATE TABLE table_25468520_1 (theme VARCHAR, date_of_issue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_25461946_8 WHERE team = \"Dayton\"",
    "question_en": "When did they play Dayton?",
    "question_th": "พวกเขาเล่นเดย์ตันเมื่อไหร่?",
    "context": "CREATE TABLE table_25461946_8 (date VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT platform FROM table_25474825_1 WHERE software = \"GeWorkbench\"",
    "question_en": "What is the platform of Geworkbench?",
    "question_th": "แพลตฟอร์มของ 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_en": "What is the description of the license for GNU GPL v2 or Ruby license?",
    "question_th": "คำอธิบายของใบอนุญาตสำหรับใบอนุญาต GNU GPL v2 หรือ Ruby คืออะไร",
    "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_en": "What is the license that is described as a tool for designing and executing workflows?",
    "question_th": "ใบอนุญาตที่อธิบายว่าเป็นเครื่องมือสำหรับการออกแบบและดำเนินการเวิร์กโฟลว์คืออะไร?",
    "context": "CREATE TABLE table_25474825_1 (license VARCHAR, description VARCHAR)"
  },
  {
    "answer": "SELECT description FROM table_25474825_1 WHERE software = \"IntAct\"",
    "question_en": "What is the description of the intact software?",
    "question_th": "คำอธิบายของซอฟต์แวร์ที่สมบูรณ์คืออะไร?",
    "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_en": "What user had a max demand charge of 1,100 and a unit/time range of h-2: off-peak (22:30-05:30)?",
    "question_th": "ผู้ใช้รายใดมีค่าบริการความต้องการสูงสุด 1,100 และหน่วย/ช่วงเวลา h-2: ช่วงที่มีการใช้งานน้อย (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_en": "What is the fixed charge for the user who had a tariff of 11.30?",
    "question_th": "ค่าบริการคงที่สำหรับผู้ใช้ที่มีอัตราภาษี 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_en": "What is the fixed charge for the user with a unit/time range of i-2: peak (18:30-22:30)?",
    "question_th": "ค่าบริการคงที่สำหรับผู้ใช้ที่มีหน่วย/ช่วงเวลา i-2: สูงสุด (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_en": "What was the max demand charge for the user with a tariff of 8.85?",
    "question_th": "ค่าธรรมเนียมความต้องการสูงสุดสำหรับผู้ใช้ด้วยอัตราภาษี 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_en": "How many picks are there with an affiliation is the University of California Norcal Lamorinda United?",
    "question_th": "มหาวิทยาลัยแห่งแคลิฟอร์เนีย 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_en": "What team does Seth Sinovic play for?",
    "question_th": "Seth Sinovic เล่นให้กับทีมใด?",
    "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_en": "How many players have an affiliation with University of Maryland?",
    "question_th": "มีผู้เล่นกี่คนที่มีส่วนเกี่ยวข้องกับ 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_en": "in what round types did the opponent come from south africa?",
    "question_th": "คู่ต่อสู้มาจากแอฟริกาใต้ในรอบใด?",
    "context": "CREATE TABLE table_25505246_8 (round VARCHAR, against VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_25505246_8 WHERE partner = \"Caroline Wozniacki\"",
    "question_en": "How did the match end when she played with caroline wozniacki?",
    "question_th": "การแข่งขันจบลงอย่างไรเมื่อเธอเล่นกับแคโรไลน์ วอซเนียคกี?",
    "context": "CREATE TABLE table_25505246_8 (outcome VARCHAR, partner VARCHAR)"
  },
  {
    "answer": "SELECT MAX(founded) FROM table_255188_1 WHERE joined = 1978",
    "question_en": "When was the University founded that joined in 1978?",
    "question_th": "มหาวิทยาลัยก่อตั้งขึ้นเมื่อใดและเข้าร่วมในปี 1978?",
    "context": "CREATE TABLE table_255188_1 (founded INTEGER, joined VARCHAR)"
  },
  {
    "answer": "SELECT MAX(founded) FROM table_255188_1 WHERE institution = \"Piedmont College\"",
    "question_en": "When was Piedmont College founded?",
    "question_th": "วิทยาลัยพีดมอนต์ก่อตั้งขึ้นเมื่อใด",
    "context": "CREATE TABLE table_255188_1 (founded INTEGER, institution VARCHAR)"
  },
  {
    "answer": "SELECT MAX(founded) FROM table_255188_1 WHERE nickname = \"Avenging Angels\"",
    "question_en": "When were the Avenging Angels founded?",
    "question_th": "Avenging Angels ก่อตั้งขึ้นเมื่อใด",
    "context": "CREATE TABLE table_255188_1 (founded INTEGER, nickname VARCHAR)"
  },
  {
    "answer": "SELECT institution FROM table_255188_1 WHERE joined = 1988",
    "question_en": "What institution joined in 1988?",
    "question_th": "สถาบันใดเข้าร่วมในปี 1988?",
    "context": "CREATE TABLE table_255188_1 (institution VARCHAR, joined VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_255188_3 WHERE nickname = \"49ers\"",
    "question_en": "What location is nicknamed the 49ers?",
    "question_th": "สถานที่ใดมีชื่อเล่นว่า 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_en": "Where is the University of North Carolina at Greensboro located?",
    "question_th": "มหาวิทยาลัยนอร์ทแคโรไลนา Greensboro อยู่ที่ไหน",
    "context": "CREATE TABLE table_255188_3 (location VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT hypotenuse_0_c FROM table_25519358_1 WHERE vertices = \"月山泛 ΔYMF\"",
    "question_en": "Name the hypotenuse for vertices 月山泛 δymf",
    "question_th": "ตั้งชื่อด้านตรงข้ามมุมฉากของจุดยอด 月yama泛 δymf",
    "context": "CREATE TABLE table_25519358_1 (hypotenuse_0_c VARCHAR, vertices VARCHAR)"
  },
  {
    "answer": "SELECT vertical_0_b FROM table_25519358_1 WHERE name = \"边 BIAN\"",
    "question_en": "Name the vertical  for 边 bian",
    "question_th": "ตั้งชื่อแนวตั้งสำหรับ 边 bian",
    "context": "CREATE TABLE table_25519358_1 (vertical_0_b VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT horizontal_0_a FROM table_25519358_1 WHERE name = \"通 TONG\"",
    "question_en": "Name the horizontal 0 for 通 tong",
    "question_th": "ตั้งชื่อแนวนอน 0 สำหรับ 通 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 = \"明弦（RY日月）\"",
    "question_en": "Name the horizontal 0 for  明弦（ry日月）",
    "question_th": "ตั้งชื่อแนวนอน 0 สำหรับ 明弦（ry日月）",
    "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 = \"明勾（YS月南）\"",
    "question_en": "Name the vertical for 明勾（ys月南）",
    "question_th": "ตั้งชื่อประเภทธุรกิจสำหรับ 明勾(ys月南)",
    "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_en": "Name the horizontal number for number 10",
    "question_th": "ตั้งชื่อตัวเลขแนวนอนสำหรับหมายเลข 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_en": "How many teams drafted players from the University of Maryland?",
    "question_th": "มีกี่ทีมที่ร่างผู้เล่นจากมหาวิทยาลัยแมรีแลนด์",
    "context": "CREATE TABLE table_25518547_3 (mls_team VARCHAR, affiliation VARCHAR)"
  },
  {
    "answer": "SELECT mls_team FROM table_25518547_3 WHERE player = \"Samuel Appiah\"",
    "question_en": "What MLS team drafted samuel appiah?",
    "question_th": "ทีม MLS คนใดร่างซามูเอล อัปเปียห์",
    "context": "CREATE TABLE table_25518547_3 (mls_team VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_25518547_3 WHERE mls_team = \"Philadelphia Union\"",
    "question_en": "What player was drafted by the philadelphia union?",
    "question_th": "ผู้เล่นคนใดที่ถูกร่างโดยสหภาพฟิลาเดลเฟีย?",
    "context": "CREATE TABLE table_25518547_3 (player VARCHAR, mls_team VARCHAR)"
  },
  {
    "answer": "SELECT founded FROM table_255205_1 WHERE nickname = \"Fightin' Engineers\"",
    "question_en": "This institution nicknamed Fightin' engineers was founded on what year?",
    "question_th": "สถาบันนี้มีชื่อเล่นว่า Fightin' Engineers ก่อตั้งในปีไหน?",
    "context": "CREATE TABLE table_255205_1 (founded VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(joined) FROM table_255205_1 WHERE location = \"Franklin, Indiana\"",
    "question_en": "How many inputs joined this institution located in Franklin, Indiana?",
    "question_th": "มีปัจจัยการผลิตจำนวนเท่าใดที่เข้าร่วมสถาบันแห่งนี้ ซึ่งตั้งอยู่ในเมืองแฟรงคลิน รัฐอินเดียนา",
    "context": "CREATE TABLE table_255205_1 (joined VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(founded) FROM table_255205_1 WHERE nickname = \"Beavers\"",
    "question_en": "How many times this institution was founded that was nicknamed Beavers?",
    "question_th": "กี่ครั้งแล้วที่สถาบันนี้มีชื่อเล่นว่าบีเว่อร์ก่อตั้งขึ้น?",
    "context": "CREATE TABLE table_255205_1 (founded VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT joined FROM table_255205_1 WHERE type = \"Private/Church of God\"",
    "question_en": "How many joined this Private/Church of God institution?",
    "question_th": "มีกี่คนที่เข้าร่วมสถาบันเอกชน/คริสตจักรของพระเจ้าแห่งนี้",
    "context": "CREATE TABLE table_255205_1 (joined VARCHAR, type VARCHAR)"
  },
  {
    "answer": "SELECT joined FROM table_255205_1 WHERE institution = \"Manchester University\"",
    "question_en": "How many joined Manchester University?",
    "question_th": "มีกี่คนที่เข้าร่วมมหาวิทยาลัยแมนเชสเตอร์?",
    "context": "CREATE TABLE table_255205_1 (joined VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT circuit FROM table_25531112_2 WHERE event = \"Clipsal 500\"",
    "question_en": "What circuit was the Clipsal 500 on?",
    "question_th": "Clipsal 500 อยู่ในวงจรอะไร?",
    "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_en": "Who made the challenge on the Albert Park Grand Prix Circuit?",
    "question_th": "ใครเป็นผู้ท้าชิงในรายการ 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_en": "In what round was the circuit Eastern Creek Raceway?",
    "question_th": "สนามแข่งรถ 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_en": "Who made the challenge in the Australian Grand Prix?",
    "question_th": "ใครเป็นผู้ท้าชิงในรายการ 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_en": "Who is the shirt sponsor of the team with an average squad age of 25.46?",
    "question_th": "ใครคือผู้สนับสนุนเสื้อของทีมอายุเฉลี่ย 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_en": "Who is the shirt sponsor for FC Bunyodkor?",
    "question_th": "ใครคือผู้สนับสนุนเสื้อเอฟซี บุญยอดกอร์?",
    "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_en": "What is the average squad age of the team whose shirt sponsor is Sho'rtan Gaz Mahsulot and whose kit manufacturer is Adidas? ",
    "question_th": " อายุเฉลี่ยของทีมที่มีผู้สนับสนุนเสื้อคือ Sho'rtan Gaz Mahsulot และผู้ผลิตชุดคือ 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_en": "Who is the captain of the team whose kit manufacturer is Nike? ",
    "question_th": " ใครคือกัปตันทีมของบริษัทผู้ผลิตชุดแข่งคือ Nike?",
    "context": "CREATE TABLE table_25527255_2 (captain VARCHAR, kit_manufacturer VARCHAR)"
  },
  {
    "answer": "SELECT manager FROM table_25527255_2 WHERE team = \"FK Andijan\"",
    "question_en": "Who is the manager of FK Andijan? ",
    "question_th": " ใครคือผู้จัดการทีมเอฟเค อันดิจาน?",
    "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_en": "Name the year for open cup did not qualify and national final",
    "question_th": "ตั้งชื่อปีสำหรับโอเพ่นคัพไม่ผ่านเข้ารอบและรอบชิงชนะเลิศระดับประเทศ",
    "context": "CREATE TABLE table_2553861_1 (year VARCHAR, open_cup VARCHAR, playoffs VARCHAR)"
  },
  {
    "answer": "SELECT league FROM table_2553861_1 WHERE year = 2000",
    "question_en": "Name the league for 2000",
    "question_th": "ตั้งชื่อลีกปี 2000",
    "context": "CREATE TABLE table_2553861_1 (league VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT league FROM table_2553861_1 WHERE playoffs = \"Conference Finals\"",
    "question_en": "Name the league for conference finals",
    "question_th": "ตั้งชื่อลีกรอบชิงชนะเลิศการประชุม",
    "context": "CREATE TABLE table_2553861_1 (league VARCHAR, playoffs VARCHAR)"
  },
  {
    "answer": "SELECT directed_by FROM table_25547943_1 WHERE written_by = \"Bill Lawrence\"",
    "question_en": "Who directed the episode that was written by Bill Lawrence? ",
    "question_th": "ใครเป็นผู้กำกับตอนที่เขียนโดย 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_en": "Name the series result for season being 1998",
    "question_th": "ตั้งชื่อผลซีรีส์สำหรับฤดูกาลปี 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_en": "Name the total number of tests won by australia for series 10",
    "question_th": "ตั้งชื่อจำนวนการทดสอบทั้งหมดที่ออสเตรเลียชนะสำหรับซีรีส์ 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_en": "How many winners were there when the mountains classification was not awarded? ",
    "question_th": " มีผู้ชนะกี่คนเมื่อไม่ได้รับรางวัลประเภทภูเขา?",
    "context": "CREATE TABLE table_25551880_2 (winner VARCHAR, mountains_classification VARCHAR)"
  },
  {
    "answer": "SELECT mountains_classification FROM table_25551880_2 WHERE winner = \"Mikel Nieve\"",
    "question_en": "Who was awarded mountains classifications when Mikel Nieve was the winner? ",
    "question_th": " ใครได้รับรางวัลประเภทภูเขาเมื่อ Mikel Nieve เป็นผู้ชนะ?",
    "context": "CREATE TABLE table_25551880_2 (mountains_classification VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT mountains_classification FROM table_25551880_2 WHERE winner = \"Alessandro Petacchi\"",
    "question_en": "Who was awarded mountains classification when Alessandro petacchi won? ",
    "question_th": " ใครได้รับรางวัลประเภทภูเขาเมื่อ Alessandro Petacchi ชนะ?",
    "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_en": "List the number of episodes directed by linda mendoza.",
    "question_th": "ระบุจำนวนตอนที่กำกับโดยลินดา เมนโดซา",
    "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_en": "How many million viewers watch the episode that kevin biegel & aseem batra wrote?",
    "question_th": "มีผู้ชมรับชมตอนที่ kevin biegel และ aseem batra เขียนไว้กี่ล้านคน",
    "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_en": "What is the series number that had 5.31 million viewers?",
    "question_th": "ซีรี่ส์ที่มีผู้ชม 5.31 ล้านคนคือหมายเลขอะไร",
    "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_en": "What was the name of the episode that bill lawrence directed?",
    "question_th": "ตอนที่บิล ลอว์เรนซ์กำกับชื่ออะไร",
    "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_en": "What was the name of the episode that had 4.65 million viewers?",
    "question_th": "ตอนที่มีผู้ชม 4.65 ล้านคนชื่ออะไร",
    "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_en": "What is the production code of the episode directed by Michael McDonald?",
    "question_th": "รหัสการผลิตของตอนที่กำกับโดย 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_en": "What was the original air date of the episode that had 5.30 million U.S. viewers? ",
    "question_th": " วันที่ออกอากาศดั้งเดิมของตอนที่มีผู้ชม 5.30 ล้านคนในสหรัฐฯ คือเมื่อใด",
    "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_en": "What is the title of the episode directed by Linda Mendoza?",
    "question_th": "ตอนที่กำกับโดยลินดา เมนโดซาชื่ออะไร",
    "context": "CREATE TABLE table_25548505_1 (title VARCHAR, directed_by VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_255602_1 WHERE area__km²_ = \"155.77\"",
    "question_en": "What are all the political types where area is 155.77?",
    "question_th": "การเมืองทุกประเภทที่พื้นที่ 155.77 มีอะไรบ้าง",
    "context": "CREATE TABLE table_255602_1 (type VARCHAR, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT MIN(no_of_barangays) FROM table_255602_1 WHERE type = \"Component City\"",
    "question_en": "What is the minimum number of barangays where the type is component city?",
    "question_th": "จำนวนขั้นต่ำของบารังไกที่ประเภทเป็นเมืองส่วนประกอบคือเท่าใด",
    "context": "CREATE TABLE table_255602_1 (no_of_barangays INTEGER, type VARCHAR)"
  },
  {
    "answer": "SELECT city__municipality FROM table_255602_1 WHERE area__km²_ = \"176.40\"",
    "question_en": "What city/municipality has area of 176.40?",
    "question_th": "เมือง/เทศบาลใดมีพื้นที่ 176.40?",
    "context": "CREATE TABLE table_255602_1 (city__municipality VARCHAR, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT area__km²_ FROM table_255602_1 WHERE population__2010_ = 38062",
    "question_en": "What is the area where population in 2010 is 38062?",
    "question_th": "พื้นที่ที่มีประชากรในปี 2010 คือ 38062 คือข้อใด",
    "context": "CREATE TABLE table_255602_1 (area__km²_ VARCHAR, population__2010_ VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(pop_density__per_km²_) FROM table_255602_1 WHERE area__km²_ = \"48.67\"",
    "question_en": "What is the population density where area is 48.67?",
    "question_th": "ความหนาแน่นของประชากรโดยที่พื้นที่คือ 48.67 เป็นเท่าใด",
    "context": "CREATE TABLE table_255602_1 (pop_density__per_km²_ VARCHAR, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT couple FROM table_25557556_5 WHERE average = \"21.0\"",
    "question_en": "What couple averaged 21.0?",
    "question_th": "คู่ไหนมีค่าเฉลี่ย 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_en": "What was the number of dances for the competition finish of 3?",
    "question_th": "จบการแข่งขัน 3 ท่าเต้นจำนวนเท่าไร?",
    "context": "CREATE TABLE table_25557556_5 (number_of_dances INTEGER, competition_finish VARCHAR)"
  },
  {
    "answer": "SELECT MIN(wins) FROM table_25557880_1",
    "question_en": "What was his minimum number wins in a single year?",
    "question_th": "จำนวนขั้นต่ำของเขาที่ชนะในปีเดียวคือเท่าไร?",
    "context": "CREATE TABLE table_25557880_1 (wins INTEGER)"
  },
  {
    "answer": "SELECT series FROM table_25557880_1 WHERE position = \"NC†\"",
    "question_en": "In which series was his position NC† ?",
    "question_th": "ตำแหน่งของเขาในซีรีส์ใด NC† ?",
    "context": "CREATE TABLE table_25557880_1 (series VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_25557880_1 WHERE points = \"38\"",
    "question_en": "What was his position when he garnered 38 points?",
    "question_th": "ตำแหน่งของเขาเมื่อได้รับ 38 คะแนนคืออะไร?",
    "context": "CREATE TABLE table_25557880_1 (position VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT sail_number FROM table_25561560_3 WHERE yacht = \"Two True\"",
    "question_en": "What was the sail number of Two True?",
    "question_th": "ใบเรือของทูทรูมีเลขอะไร?",
    "context": "CREATE TABLE table_25561560_3 (sail_number VARCHAR, yacht VARCHAR)"
  },
  {
    "answer": "SELECT yacht FROM table_25561560_3 WHERE skipper = \"Andrew Saies\"",
    "question_en": "What yacht did Andrew Saies sail on?",
    "question_th": "Andrew Saies แล่นเรือยอทช์อะไร",
    "context": "CREATE TABLE table_25561560_3 (yacht VARCHAR, skipper VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_25561560_2 WHERE skipper = \"Mark Richards\"",
    "question_en": "In what position did skipper Mark Richards place? ",
    "question_th": " มาร์ค ริชาร์ดส์ กัปตันทีมอยู่ในตำแหน่งใด?",
    "context": "CREATE TABLE table_25561560_2 (position VARCHAR, skipper VARCHAR)"
  },
  {
    "answer": "SELECT yacht AS type FROM table_25561560_2 WHERE yacht = \"ICAP Leopard\"",
    "question_en": "What is the yacht type of Icap Leopard? ",
    "question_th": " เรือยอทช์ของ Icap Leopard คืออะไร?",
    "context": "CREATE TABLE table_25561560_2 (yacht VARCHAR)"
  },
  {
    "answer": "SELECT skipper FROM table_25561560_2 WHERE sail_number = \"AUS60000\"",
    "question_en": "what skipper has the sail number aus60000? ",
    "question_th": " กัปตันคนไหนมีใบเรือหมายเลข aus60000?",
    "context": "CREATE TABLE table_25561560_2 (skipper VARCHAR, sail_number VARCHAR)"
  },
  {
    "answer": "SELECT aggressive_rider FROM table_25580292_13 WHERE winner = \"Luis León Sánchez\"",
    "question_en": "Who was the aggressive rider when the winner was luis león sánchez?",
    "question_th": "ใครคือนักแข่งที่ดุดันในสมัยที่ผู้ชนะคือ luis león sánchez?",
    "context": "CREATE TABLE table_25580292_13 (aggressive_rider VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT aggressive_rider FROM table_25580292_13 WHERE sprint_classification = \"André Greipel\" AND mountains_classification = \"Timothy Roe\"",
    "question_en": "Who was the aggressive rider when the sprint classification was  andré greipel and mountains classification was timothy roe?",
    "question_th": "ใครคือนักขี่ที่ดุดันเมื่อประเภทการวิ่งคือ André Greipel และประเภทภูเขาคือ 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ón Sánchez\"",
    "question_en": "What was the stage when the winner was luis león sánchez?",
    "question_th": "ผู้ชนะคือหลุยส์ เลออน ซานเชซตอนไหน?",
    "context": "CREATE TABLE table_25580292_13 (stage VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT young_rider_classification FROM table_25580292_13 WHERE winner = \"Manuel Cardoso\"",
    "question_en": "What was the young rider classification when manuel cardoso was the winner?",
    "question_th": "ประเภทนักบิดรุ่นเยาว์คืออะไรเมื่อมานูเอล คาร์โดโซเป็นผู้ชนะ",
    "context": "CREATE TABLE table_25580292_13 (young_rider_classification VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(winner) FROM table_25580292_13 WHERE stage = 5",
    "question_en": "How many winners were there for stage 5?",
    "question_th": "มีผู้ชนะกี่คนสำหรับด่านที่ 5?",
    "context": "CREATE TABLE table_25580292_13 (winner VARCHAR, stage VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(population__2007_) FROM table_255829_1 WHERE municipality = \"Gigmoto\"",
    "question_en": "What is the 2007 population of Gigmoto?",
    "question_th": "ประชากร Gigmoto ในปี 2550 เป็นเท่าใด",
    "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_en": "What is the 2010 population of the municipality with 31 barangays?",
    "question_th": "ประชากรในเขตเทศบาล 31 แห่งในปี 2010 เป็นเท่าใด",
    "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_en": "What is the population density of Caramoran?",
    "question_th": "ความหนาแน่นของประชากรคาราโมรันคือเท่าไร?",
    "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_en": "What municipality has a 130.6 pupulation density?",
    "question_th": "เทศบาลใดมีความหนาแน่นของจำนวนประชากร 130.6?",
    "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_en": "What is the number of S Barangay for Paracale?",
    "question_th": "เบอร์ S Barangay สำหรับ Paracale คืออะไร?",
    "context": "CREATE TABLE table_255885_1 (no_of_s_barangay VARCHAR, municipality VARCHAR)"
  },
  {
    "answer": "SELECT municipality FROM table_255885_1 WHERE area__km²_ = \"199.35\"",
    "question_en": "What is the municipality that has an area of exactly 199.35 sq. km?",
    "question_th": "เทศบาลใดมีพื้นที่ 199.35 ตร.กม. พอดี?",
    "context": "CREATE TABLE table_255885_1 (municipality VARCHAR, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT municipality FROM table_255885_1 WHERE area__km²_ = \"214.44\"",
    "question_en": "What is the municipality that has an area of exactly 214.44 sq. km?",
    "question_th": "เทศบาลใดที่มีพื้นที่ 214.44 ตร.กม. พอดี?",
    "context": "CREATE TABLE table_255885_1 (municipality VARCHAR, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT winning_team FROM table_25572118_1 WHERE series = \"FR2.0 9\"",
    "question_en": "When fr2.0 9 is the series who is the winning team?",
    "question_th": "เมื่อ fr2.09 เป็นซีรีส์ทีมไหนเป็นผู้ชนะ?",
    "context": "CREATE TABLE table_25572118_1 (winning_team VARCHAR, series VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_25572118_1 WHERE winning_driver = \"Fairuz Fauzy\"",
    "question_en": "When fairuz fauzy is the winning driver what is the date?",
    "question_th": "เมื่อ fairuz fauzy เป็นนักแข่งที่ชนะ วันที่เท่าไหร่?",
    "context": "CREATE TABLE table_25572118_1 (date VARCHAR, winning_driver VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_25572118_1 WHERE series = \"EMT 9\"",
    "question_en": "When emt 9 is the series what is the date?",
    "question_th": "emt9 ฉายเมื่อไหร่คะ?",
    "context": "CREATE TABLE table_25572118_1 (date VARCHAR, series VARCHAR)"
  },
  {
    "answer": "SELECT state_country FROM table_25594271_1 WHERE race_number = \"36\"",
    "question_en": "what are all the state/nation where the race number is 36",
    "question_th": "รัฐ/ประเทศทั้งหมดที่มีหมายเลขการแข่งขันคือ 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_en": "What State/Country is Sean Langman the skipper?",
    "question_th": "Sean Langman เป็นกัปตันของรัฐ/ประเทศใด",
    "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_en": "What yacht type is involved where Bob Oatley is the skipper?",
    "question_th": "เรือยอทช์ประเภทใดที่เกี่ยวข้องกับ Bob Oatley เป็นกัปตัน?",
    "context": "CREATE TABLE table_25594888_1 (yacht VARCHAR, skipper VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(race_number) FROM table_25594888_1 WHERE yacht = \"Loki\"",
    "question_en": "How many races was Loki in?",
    "question_th": "โลกิมีเผ่าพันธุ์ทั้งหมดกี่เผ่า?",
    "context": "CREATE TABLE table_25594888_1 (race_number VARCHAR, yacht VARCHAR)"
  },
  {
    "answer": "SELECT loa__metres_ FROM table_25595107_1 WHERE skipper = \"Jez Fanstone\"",
    "question_en": "What were the LOA (metres) for the yacht where the skipper was Jez Fanstone?",
    "question_th": "LOA (เมตร) สำหรับเรือยอทช์ที่กัปตันคือ 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_en": "What state/country was the yacht from that had 15.79 LOA (metres)? ",
    "question_th": " เรือยอชท์ลำดังกล่าวมีความสูง 15.79 LOA (เมตร) ของรัฐ/ประเทศใด",
    "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_en": "What is Matt Allen's sail number?",
    "question_th": "หมายเลขใบเรือของ Matt Allen คืออะไร",
    "context": "CREATE TABLE table_25595209_1 (sail_number VARCHAR, skipper VARCHAR)"
  },
  {
    "answer": "SELECT loa__metres_ FROM table_25595209_1 WHERE yacht = \"Brindabella\"",
    "question_en": "What is the LOA of Brindabella?",
    "question_th": "LOA ของ 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_en": "What the is the state that the boat is from with LOA of 19.50?",
    "question_th": "เรือลำนั้นมาจากสถานะอะไรโดยมี LOA อยู่ที่ 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_en": "How many states is Grant Wharington from?",
    "question_th": "Grant Wharington มาจากกี่รัฐ",
    "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_en": "The date first lit is 1853 total number of current status.",
    "question_th": "วันที่จุดแรกคือ 1853 จำนวนสถานะปัจจุบันทั้งหมด",
    "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_en": "Location for focal plane in ft (m) is naidi hills, basco.",
    "question_th": "ตำแหน่งสำหรับระนาบโฟกัสในหน่วยฟุต (ม.) คือเนินไนดี บาสโก",
    "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_en": "Focal plane in ft (m) is 43ft (13.1m) is the first date lit.",
    "question_th": "ระนาบโฟกัสในหน่วยฟุต (ม.) คือ 43 ฟุต (13.1 ม.) คือวันแรกที่สว่าง",
    "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_en": "The province/city corregidor island (2) is where the lighthouse is located. ",
    "question_th": " จังหวัด/เมือง เกาะคอร์เรจิดอร์ (2) เป็นที่ตั้งของประภาคาร",
    "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_en": "Where tower height in ft (m) is 46ft (14.0m) the focal plane is ft (m).",
    "question_th": "โดยที่ความสูงของหอคอยเป็นฟุต (ม.) คือ 46 ฟุต (14.0 ม.) ระนาบโฟกัสคือฟุต (ม.)",
    "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_en": "What are the number in series of the pieces directed by Win Phelps and which number in season is 11?",
    "question_th": "ตัวเลขในชุดผลงานที่กำกับโดย Win Phelps คืออะไร และหมายเลขใดในฤดูกาลคือ 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_en": "What are the titles of the pieces that are number 2 in season?",
    "question_th": "ผลงานชิ้นที่ 2 ในฤดูกาลนี้มีชื่อว่าอะไร?",
    "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_en": "What is the production code for the episode directed by Sam weisman?",
    "question_th": "รหัสการผลิตสำหรับตอนที่กำกับโดย 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_en": "Who wrote episode number 81 in the series?",
    "question_th": "ใครเป็นคนเขียนตอนที่ 81 ในซีรีส์นี้?",
    "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_en": "How many episodes directed by david carson?",
    "question_th": "เดวิด คาร์สัน กำกับกี่ตอน?",
    "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_en": "Who direcred the episode with production code 7d03?",
    "question_th": "ใครเป็นคนกำกับตอนที่มีรหัสการผลิต 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_en": "In what settlement is the population 1114?",
    "question_th": "ประชากร 1114 อยู่ในนิคมใด",
    "context": "CREATE TABLE table_2562572_19 (settlement VARCHAR, population__2011_ VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_2562572_19 WHERE settlement = \"Lok\"",
    "question_en": "What type is the settlement of Lok? ",
    "question_th": " การตั้งถิ่นฐานของ Lok เป็นประเภทใด?",
    "context": "CREATE TABLE table_2562572_19 (type VARCHAR, settlement VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(population__2011_) FROM table_2562572_12 WHERE settlement = \"Mladenovo\"",
    "question_en": "How many populations are listed for mladenovo? ",
    "question_th": " มีประชากรจำนวนเท่าใดที่อยู่ในรายการ 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_en": "What is the dominate religion in the location with a population of 4831? ",
    "question_th": " ศาสนาใดเป็นศาสนาหลักในพื้นที่ที่มีประชากร 4,831 คน?",
    "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_en": "What type of institution is San Diego Christian college? ",
    "question_th": " วิทยาลัย San Diego Christian เป็นสถาบันประเภทใด",
    "context": "CREATE TABLE table_2562113_1 (type VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT MAX(enrollment) FROM table_2562113_1 WHERE nickname = \"Hawks\"",
    "question_en": "What is the enrollment for the hawks? ",
    "question_th": " การลงทะเบียนสำหรับเหยี่ยวคืออะไร?",
    "context": "CREATE TABLE table_2562113_1 (enrollment INTEGER, nickname VARCHAR)"
  },
  {
    "answer": "SELECT MIN(enrollment) FROM table_2562113_1 WHERE joined = 1987",
    "question_en": "What is the enrollment for the institution that joined in 1987? ",
    "question_th": " สถาบันที่เข้าร่วมในปี 1987 มีการลงทะเบียนอะไรบ้าง?",
    "context": "CREATE TABLE table_2562113_1 (enrollment INTEGER, joined VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_2562113_1 WHERE nickname = \"Lions\"",
    "question_en": "What is the location of the institution nicknamed Lions? ",
    "question_th": " สถาบันชื่อไลออนส์มีที่ตั้งอยู่ที่ไหน?",
    "context": "CREATE TABLE table_2562113_1 (location VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(population__2011_) FROM table_2562572_2 WHERE cyrillic_name = \"Футог\"",
    "question_en": "How many 2011 populations have a Cyrillic name of футог?",
    "question_th": "ในปี 2554 มีประชากรกี่คนที่มีชื่อเป็นอักษรซีริลลิกเป็น футог",
    "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_en": "What is the number of 2002 populations having a 2011 population of exactly 5399?",
    "question_th": "จำนวนประชากรในปี 2545 ซึ่งมีประชากรในปี 2554 จำนวน 5,399 คนเป็นเท่าใด",
    "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čej\"",
    "question_en": "What is the number of 1991 populations named Bečej?",
    "question_th": "Bečej มีประชากรจำนวนเท่าใดในปี 1991",
    "context": "CREATE TABLE table_2562572_2 (population__1991_ VARCHAR, city___municipality VARCHAR)"
  },
  {
    "answer": "SELECT population__1991_ FROM table_2562572_2 WHERE urban_settlement = \"Bački Jarak\"",
    "question_en": "What is the 1991 population for the urban settlement named Bački Jarak?",
    "question_th": "ประชากรในปี 1991 สำหรับการตั้งถิ่นฐานในเมืองชื่อ Bački 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_en": "What is the number of 2011 populations having a 2002 population of 29449?",
    "question_th": "จำนวนประชากรในปี 2554 ซึ่งมีประชากรปี 2545 จำนวน 29,449 คนเป็นเท่าใด",
    "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_en": "What is the number of cities/municipalities having an urban settlement of Srbobran?",
    "question_th": "จำนวนเมือง/เทศบาลที่มีการตั้งถิ่นฐานในเมือง Srbobran คือเท่าใด",
    "context": "CREATE TABLE table_2562572_2 (city___municipality VARCHAR, urban_settlement VARCHAR)"
  },
  {
    "answer": "SELECT settlement FROM table_2562572_25 WHERE type = \"town\"",
    "question_en": "When town is the type what is the settlement?",
    "question_th": "เมื่อเมืองเป็นประเภทการตั้งถิ่นฐานคืออะไร?",
    "context": "CREATE TABLE table_2562572_25 (settlement VARCHAR, type VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_2562572_25 WHERE cyrillic_name_other_names = \"Оџаци\"",
    "question_en": "When оџаци is the cyrillic name other names what is the type?",
    "question_th": "เมื่อ оџаци เป็นชื่อซีริลลิก ชื่ออื่นเป็นชื่ออะไร?",
    "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_en": "When ratkovo is the settlement what is the cyrllic name other names?",
    "question_th": "เมื่อ ratkovo เป็นข้อตกลง cyrllic ชื่ออื่นคืออะไร?",
    "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 = \"Ратково\"",
    "question_en": "When  ратково is cyrillic name other names and village is the type and orthodox Christianity is the dominant religion of  2002 what is the settlement? ",
    "question_th": " เมื่อ ратково เป็นชื่อซีริลลิก ชื่ออื่น และหมู่บ้านเป็นประเภท และศาสนาคริสต์นิกายออร์โธดอกซ์เป็นศาสนาหลักในปี พ.ศ. 2545 การตั้งถิ่นฐานคืออะไร?",
    "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 = \"Дероње\"",
    "question_en": "When дероње is the cyrillic name other names what is the largest ethnic group of 2002?",
    "question_th": "เมื่อ дероње เป็นชื่อซีริลลิก ชื่ออื่นคือกลุ่มชาติพันธุ์ที่ใหญ่ที่สุดในปี 2545?",
    "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š\"",
    "question_en": "What are the largest ethnic groups in gunaroš?",
    "question_th": "กลุ่มชาติพันธุ์ที่ใหญ่ที่สุดใน gunaroš คืออะไร?",
    "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 = \"Пачир (Hungarian: Pacsér)\"",
    "question_en": "What are the largest ethnic groups where the cyrillic name and other names is пачир (hungarian: pacsér)?",
    "question_th": "กลุ่มชาติพันธุ์ใดที่ใหญ่ที่สุดที่มีชื่อซีริลลิกและชื่ออื่นๆ คือ пачир (ฮังการี: pacsér)",
    "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 = \"Његошево\"",
    "question_en": "How many places have as their cyrillic name and other names његошево?",
    "question_th": "มีกี่แห่งที่เป็นชื่อซีริลลิกและชื่ออื่น његошево?",
    "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_en": "What are the dominant religions in the place with a population of 83?",
    "question_th": "ศาสนาที่โดดเด่นในสถานที่ที่มีประชากร 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 = \"Панонија\"",
    "question_en": "How many settlements have as their cyrillic name and other names панонија?",
    "question_th": "ชื่อซีริลลิกและชื่ออื่น ๆ панонија มีกี่กลุ่ม?",
    "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š\"",
    "question_en": "What is the other name for martonoš?",
    "question_th": "มาร์โตโนชมีชื่ออื่นว่าอะไร?",
    "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 = \"Ором (Hungarian: Orom)\"",
    "question_en": "What type of settlement is ором (hungarian: orom)?",
    "question_th": "การตั้งถิ่นฐานประเภทใด ором (ฮังการี: 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 = \"Мартонош (Hungarian: Martonos)\"",
    "question_en": "What settlement is also called мартонош (hungarian: martonos)?",
    "question_th": "ข้อตกลงใดเรียกอีกอย่างว่า мартонош (ฮังการี: 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 = \"Мале Пијаце (Hungarian: Kispiac)\"",
    "question_en": "What is the largest ethnic group in мале пијаце (hungarian: kispiac)?",
    "question_th": "กลุ่มชาติพันธุ์ที่ใหญ่ที่สุดใน мале пијаце (ฮังการี: 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_en": "What is the largest ethnic group in doline?",
    "question_th": "กลุ่มชาติพันธุ์ที่ใหญ่ที่สุดในโดลีนคืออะไร?",
    "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_en": "Name the dominant religion of srpska crnja",
    "question_th": "ตั้งชื่อศาสนาที่โดดเด่นของ 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 = \"Александрово\"",
    "question_en": "Name the settlement for александрово",
    "question_th": "ตั้งชื่อข้อตกลงสำหรับ александрово",
    "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_en": "Name the cyrillic name for 518",
    "question_th": "ตั้งชื่อชื่อซีริลลิกสำหรับ 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 = \"Александрово\"",
    "question_en": "Name the population for александрово",
    "question_th": "ตั้งชื่อประชากรสำหรับ александрово",
    "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 = \"Српска Црња\"",
    "question_en": "Name the population for 2011 for српска црња",
    "question_th": "ตั้งชื่อประชากรปี 2011 ด้วยคำว่า српска црња",
    "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_en": "What is the largest ethnic group in 2002 when the population is 200?",
    "question_th": "กลุ่มชาติพันธุ์ใดที่ใหญ่ที่สุดในปี 2545 โดยมีประชากร 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 = \"Падина (Slovak: Padina)\"",
    "question_en": "How many entries are there for type for the cyrillic name other names is падина (slovak: padina)?",
    "question_th": "มีกี่รายการสำหรับประเภทของชื่อซีริลลิก ชื่ออื่นๆ คือ падина (สโลวัก: 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_en": "What is the type for the population in 2011 of 1004?",
    "question_th": "ประชากรในปี 2554 จำนวน 1,004 คน เป็นประเภทใด",
    "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_en": "What was the 2002 dominant religion when the largest ethnic group (2002) was slovaks and type is village?",
    "question_th": "ศาสนาที่โดดเด่นในปี 2545 คืออะไรเมื่อกลุ่มชาติพันธุ์ที่ใหญ่ที่สุด (2545) เป็นชาวสโลวาเกียและประเภทคือหมู่บ้าน",
    "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ča\"",
    "question_en": "What is the cyrillic name other names for the settlement of debeljača?",
    "question_th": "ชื่อซีริลลิกชื่ออื่นสำหรับการตั้งถิ่นฐานของdebeljačaคืออะไร?",
    "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_en": "How many entries are there for cyrillic name other names where settlement is idvor?",
    "question_th": "มีกี่รายการสำหรับชื่อซีริลลิก ชื่ออื่น ๆ ที่ข้อตกลงเป็น 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_en": "What was the dominant religion in 2002 in lokve?",
    "question_th": "ศาสนาที่โดดเด่นในปี 2002 ใน 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 = \"Банатски Карловац\"",
    "question_en": "What was the largest ethnic group in in the settlement with the cyrillic name банатски карловац?",
    "question_th": "กลุ่มชาติพันธุ์ใดที่ใหญ่ที่สุดในนิคมที่มีชื่อซีริลลิก банатски карловац?",
    "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_en": "What is the largest ethnic group in the settlement with a 2011 population of 5082?",
    "question_th": "กลุ่มชาติพันธุ์ใดที่ใหญ่ที่สุดในการตั้งถิ่นฐานโดยมีประชากร 5,082 คนในปี 2554",
    "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_en": "What was the population in 2011 of banatski karlovac?",
    "question_th": "Banatski karlovac ในปี 2554 มีประชากรเป็นเท่าใด",
    "context": "CREATE TABLE table_2562572_44 (population__2011_ VARCHAR, settlement VARCHAR)"
  },
  {
    "answer": "SELECT settlement FROM table_2562572_44 WHERE cyrillic_name_other_names = \"Локве (Romanian: Locve)\"",
    "question_en": "Which settlement has the cyrillic and other name of локве (romanian: locve)?",
    "question_th": "นิคมใดมีอักษรซีริลลิกและชื่ออื่นว่า локве (โรมาเนีย: 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 = \"Добрица\"",
    "question_en": "What is the population of the settlement with the cyrillic name of добрица?",
    "question_th": "ประชากรในนิคมที่มีชื่อซีริลลิก добрица เป็นจำนวนเท่าใด",
    "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 = \"Војводинци (Romanian: Voivodinţ)\"",
    "question_en": "Which settlement has a cyrillic and other name of војводинци (romanian: voivodinţ)?",
    "question_th": "นิคมใดมีอักษรซีริลลิกและชื่ออื่นว่า војводинци (โรมาเนีย: voivodinţ)",
    "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 = \"Војводинци (Romanian: Voivodinţ)\"",
    "question_en": "What was the dominant religion in 2002 of the settlement with the cyrillic and other name of војводинци (romanian: voivodinţ)?",
    "question_th": "ศาสนาใดที่โดดเด่นในปี 2002 ของการตั้งถิ่นฐานด้วยอักษรซีริลลิกและชื่ออื่นของ војводинци (โรมาเนีย: voivodinţ)",
    "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 = \"Ватин\"",
    "question_en": "What was the population in 2011 of the settlement with the cyrillic name of ватин?",
    "question_th": "ประชากรในปี 2554 ของการตั้งถิ่นฐานด้วยชื่อซีริลลิกคือ ватин เป็นจำนวนเท่าใด",
    "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čica\"",
    "question_en": "What was the largest ethnic group in sočica?",
    "question_th": "กลุ่มชาติพันธุ์ที่ใหญ่ที่สุดในSočicaคือกลุ่มใด",
    "context": "CREATE TABLE table_2562572_46 (largest_ethnic_group__2002_ VARCHAR, settlement VARCHAR)"
  },
  {
    "answer": "SELECT population__2011_ FROM table_2562572_46 WHERE settlement = \"Pavliš\"",
    "question_en": "What was the 2011 population of pavliš?",
    "question_th": "Pavliš ประชากรในปี 2011 เป็นเท่าใด",
    "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 = \"Ватин\"",
    "question_en": "What was the largest ethnic group in 2002 of the settlement with the cyrillic name of ватин?",
    "question_th": "กลุ่มชาติพันธุ์ใดที่ใหญ่ที่สุดในปี 2545 ของการตั้งถิ่นฐานโดยใช้ชื่อซีริลลิก ватин คือกลุ่มชาติพันธุ์ใด",
    "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_en": "What was the dominant religion (2002) of the Mala Remeta settlement?",
    "question_th": "ศาสนาที่โดดเด่น (2002) ของนิคม Mala Remeta คืออะไร?",
    "context": "CREATE TABLE table_2562572_50 (dominant_religion__2002_ VARCHAR, settlement VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_2562572_50 WHERE settlement = \"Krušedol Selo\"",
    "question_en": "What type of settlemen is Krušedol Selo?",
    "question_th": "Krušedol Selo เป็นผู้ตั้งถิ่นฐานประเภทใด",
    "context": "CREATE TABLE table_2562572_50 (type VARCHAR, settlement VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(type) FROM table_2562572_50 WHERE settlement = \"Neradin\"",
    "question_en": "How many types of settlement if Neradin?",
    "question_th": "การตั้งถิ่นฐานถ้าเนราดินมีกี่ประเภท?",
    "context": "CREATE TABLE table_2562572_50 (type VARCHAR, settlement VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_2562572_50 WHERE settlement = \"Jazak\"",
    "question_en": "What type of settlement is Jazak?",
    "question_th": "ญะซัคเป็นนิคมประเภทใด?",
    "context": "CREATE TABLE table_2562572_50 (type VARCHAR, settlement VARCHAR)"
  },
  {
    "answer": "SELECT settlement FROM table_2562572_53 WHERE population__2011_ = 9443",
    "question_en": "What is the name of the settlement that had a population of 9443 in 2011?",
    "question_th": "การตั้งถิ่นฐานที่มีประชากร 9443 คนในปี 2554 ชื่ออะไร",
    "context": "CREATE TABLE table_2562572_53 (settlement VARCHAR, population__2011_ VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(type) FROM table_2562572_53 WHERE settlement = \"Nova Pazova\"",
    "question_en": "How many different types of settlements does Nova Pazova fall into?",
    "question_th": "Nova Pazova มีการตั้งถิ่นฐานประเภทต่างๆ กี่ประเภท?",
    "context": "CREATE TABLE table_2562572_53 (type VARCHAR, settlement VARCHAR)"
  },
  {
    "answer": "SELECT largest_ethnic_group__2002_ FROM table_2562572_53 WHERE cyrillic_name = \"Сурдук\"",
    "question_en": "What ethnic group had the largest population in сурдук in 2002?",
    "question_th": "กลุ่มชาติพันธุ์ใดมีประชากรมากที่สุดใน сурдук ในปี 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_en": "How many dominant religions were in the settlement that had a population of 17105?",
    "question_th": "นิคมนี้มีศาสนาหลักกี่ศาสนาซึ่งมีประชากร 17,105 คน",
    "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 = \"Сурдук\"",
    "question_en": "What was the population of сурдук in 2011?",
    "question_th": "Сурдукในปี 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_en": "When extending eminent domain over roads and ways is the description what is the highest means number?",
    "question_th": "เมื่อขยายอาณาเขตอันโดดเด่นออกไปตามถนนและวิถีทาง คำอธิบายว่าเลขหมายสูงสุดคืออะไร?",
    "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_en": "When restoring capital punishment is the description how many types are there?",
    "question_th": "ในการคืนโทษประหารชีวิตคำอธิบายมีกี่ประเภท?",
    "context": "CREATE TABLE table_256286_13 (type VARCHAR, description VARCHAR)"
  },
  {
    "answer": "SELECT MIN(no_votes) FROM table_256286_13",
    "question_en": "What is the lowest overall amount of no votes?",
    "question_th": "จำนวนการโหวตโดยรวมต่ำสุดคือเท่าใด?",
    "context": "CREATE TABLE table_256286_13 (no_votes INTEGER)"
  },
  {
    "answer": "SELECT urban_settlement FROM table_2562572_7 WHERE city___municipality = \"Kovin\"",
    "question_en": "What was the urban settlement when the city / municipality was kovin?",
    "question_th": "การตั้งถิ่นฐานในเมืองเป็นอย่างไรเมื่อเมือง / เทศบาลเป็นโกวิน?",
    "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_en": "What is the population (1991) where population (2002) was  14250?",
    "question_th": "ประชากร (1991) คืออะไร โดยที่ประชากร (2002) อยู่ที่ 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 = \"Панчево\"",
    "question_en": "What is the population (1991) when cyrillic name is панчево?",
    "question_th": "ประชากร (1991) คืออะไรเมื่อชื่อซีริลลิกคือ панчево?",
    "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_en": "What is the settlement destiny in Aleksandrovo? ",
    "question_th": " ชะตากรรมของการตั้งถิ่นฐานใน Aleksandrovo คืออะไร?",
    "context": "CREATE TABLE table_2562572_56 (settlement VARCHAR)"
  },
  {
    "answer": "SELECT cyrillic_name_other_names FROM table_2562572_56 WHERE settlement = \"Novi Vladimirovac\"",
    "question_en": "What is the Cyrillic name for Novi Vladimirovac? ",
    "question_th": " ชื่อซีริลลิกของ 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čedin\"",
    "question_en": "How many items appear in the population 2011 column for the krčedin settlement?",
    "question_th": "มีกี่รายการที่ปรากฏในคอลัมน์ประชากรปี 2011 สำหรับการตั้งถิ่นฐานของkrčedin",
    "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_en": "What is the dominant religion in 2002 for the population of 2337 in 2011?",
    "question_th": "ศาสนาที่โดดเด่นในปี 2545 สำหรับประชากร 2,337 คนในปี 2554 คืออะไร?",
    "context": "CREATE TABLE table_2562572_54 (dominant_religion__2002_ VARCHAR, population__2011_ VARCHAR)"
  },
  {
    "answer": "SELECT MIN(population__2011_) FROM table_2562572_54 WHERE settlement = \"Čortanovci\"",
    "question_en": "What is the lowest population in 2011 for the settlement of čortanovci?",
    "question_th": "จำนวนประชากรต่ำสุดในปี 2011 สำหรับการตั้งถิ่นฐานของ čortanovci คืออะไร?",
    "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 = \"Бешка\"",
    "question_en": "What is the largest ethnic group in 2002 for the cyrillic name, other name of бешка?",
    "question_th": "ชื่อซีริลลิกหรือชื่ออื่นของ бешка คือกลุ่มชาติพันธุ์ใดที่ใหญ่ที่สุดในปี 2002?",
    "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_en": "What was the lowes population of 2002 when the 2011 population was 30076?",
    "question_th": "ประชากรระดับล่างของปี 2545 เป็นเท่าใดเมื่อประชากรปี 2554 มีจำนวน 3,0076 คน",
    "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 = \"Степановићево\"",
    "question_en": "What is the dominant religion in степановићево during 2002?",
    "question_th": "ศาสนาที่โดดเด่นใน степановићево ระหว่างปี 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_en": "What is the cyrillic name for the settlement with the population of 2125?",
    "question_th": "ชื่อซีริลลิกสำหรับการตั้งถิ่นฐานกับประชากร 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 = \"Футог\"",
    "question_en": "What type of settlement is футог?",
    "question_th": "การตั้งถิ่นฐานประเภทใดคือ футог?",
    "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_en": "What is the cyrillic name for the settlement with the population of 5414?",
    "question_th": "ชื่อซีริลลิกสำหรับการตั้งถิ่นฐานที่มีประชากร 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_en": "What is the cyrillic name for Budisava?",
    "question_th": "ชื่อซีริลลิกของ 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 = \"Нови Сад\"",
    "question_en": "What is the dominant religion for нови сад in 2002?",
    "question_th": "ศาสนาใดที่โดดเด่นสำหรับ нови сад ในปี 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_en": "What is the largest number of yest votes for the measure with 61307 no votes?",
    "question_th": "จำนวนคะแนนเสียงที่มากที่สุดสำหรับการวัดโดยที่ 61307 ไม่มีคะแนนคือเท่าใด",
    "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_en": "What numbered measure had a 58.29% yes%?",
    "question_th": "ตัวเลขใดที่วัดได้คือ 58.29% ใช่%?",
    "context": "CREATE TABLE table_256286_19 (meas_num VARCHAR, _percentage_yes VARCHAR)"
  },
  {
    "answer": "SELECT passed FROM table_256286_19 WHERE no_votes = 61307",
    "question_en": "What was the passing result for the measure with 61307 no votes?",
    "question_th": "ผลลัพธ์ที่ผ่านสำหรับการวัด 61307 ไม่มีการโหวตคืออะไร?",
    "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_en": "What is the lowest measure number for the measure with a 33.57% yes percentage?",
    "question_th": "อะไรคือตัวเลขการวัดต่ำสุดสำหรับการวัดที่มีเปอร์เซ็นต์ใช่ 33.57%?",
    "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_en": "What was the passing result for the measure with a description of  bus and truck operating license bill?",
    "question_th": "ผลการผ่านมาตรการพร้อมคำอธิบายร่างพระราชบัญญัติใบอนุญาตประกอบกิจการรถโดยสารและรถบรรทุกเป็นอย่างไร",
    "context": "CREATE TABLE table_256286_19 (passed VARCHAR, description VARCHAR)"
  },
  {
    "answer": "SELECT passed FROM table_256286_22 WHERE _percentage_yes = \"52.49%\"",
    "question_en": "What was the result of the ballot that had a 52.49% yes vote percentage?",
    "question_th": "ผลการลงคะแนนเสียงที่มีเปอร์เซ็นต์การลงคะแนนใช่ 52.49% เป็นอย่างไร",
    "context": "CREATE TABLE table_256286_22 (passed VARCHAR, _percentage_yes VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_256286_21 WHERE meas_num = 3",
    "question_en": "What type of proposal is measure number 3?",
    "question_th": "ข้อเสนอประเภทใดคือการวัดหมายเลข 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_en": "How many yes votes did the measure that got 60.39% yes votes get?",
    "question_th": "มาตรการที่ได้คะแนนโหวตใช่ 60.39% ได้รับจำนวนเท่าใด",
    "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_en": "What is the description of the measure that got 39.57% yes votes?",
    "question_th": "คำอธิบายของมาตรการที่ได้รับคะแนนโหวตใช่ 39.57% คืออะไร?",
    "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_en": "What is the number of the tax supervising and conservation bill?",
    "question_th": "ร่างพระราชบัญญัติกำกับและอนุรักษ์ภาษี เลขที่เท่าไร?",
    "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_en": "How many ballot measures had a percentage yes of 52.11%?",
    "question_th": "มาตรการลงคะแนนเสียงมีกี่เปอร์เซ็นต์ใช่ 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_en": "What is the measure where the yes% is 44.06%?",
    "question_th": "อะไรคือการวัดโดยที่ yes% คือ 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_en": "How many measures had a yes vote of 216545?",
    "question_th": "มีกี่มาตรการที่ได้รับการโหวตใช่ 216545?",
    "context": "CREATE TABLE table_256286_39 (passed VARCHAR, yes_votes VARCHAR)"
  },
  {
    "answer": "SELECT MAX(meas_num) FROM table_256286_39",
    "question_en": "What is the highest measure number?",
    "question_th": "ตัวเลขสูงสุดที่วัดได้คืออะไร?",
    "context": "CREATE TABLE table_256286_39 (meas_num INTEGER)"
  },
  {
    "answer": "SELECT _percentage_yes FROM table_256286_45 WHERE no_votes = 199174",
    "question_en": "What was the percentage of yes votes for the measure where the no votes number 199174?",
    "question_th": "เปอร์เซ็นต์ของการโหวตใช่สำหรับมาตรการที่ไม่มีคะแนนเสียงคือ 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_en": "How many types are there for the measure where there were 312680 yes votes?",
    "question_th": "มีกี่ประเภทสำหรับการวัดที่มีคะแนนโหวตใช่ 312680?",
    "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_en": "How many figures are there for No votes for the Forest Rehabilitation Debt Limit Amendment?",
    "question_th": "มีตัวเลขจำนวนเท่าใดที่ไม่มีการลงคะแนนเสียงสำหรับการแก้ไขขีดจำกัดหนี้เพื่อการฟื้นฟูป่าไม้",
    "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_en": "What is the type of measure that voted on the Power Development Debt Limit Amendment?",
    "question_th": "มาตรการที่ลงมติแก้ไขวงเงินหนี้การพัฒนาไฟฟ้ามีรูปแบบใดบ้าง?",
    "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_en": "What vote passed for the measure with the description, authorizing state acceptance of certain gifts? ",
    "question_th": " การลงคะแนนเสียงใดที่ผ่านสำหรับมาตรการพร้อมคำอธิบายซึ่งอนุญาตให้รัฐยอมรับของกำนัลบางอย่าง",
    "context": "CREATE TABLE table_256286_40 (passed VARCHAR, description VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(passed) FROM table_256286_40 WHERE yes_votes = 390338",
    "question_en": "How many votes passed are listed on the measure that had 390338 yes votes? ",
    "question_th": " มีกี่คะแนนเสียงที่ผ่านรายการอยู่ในหน่วยวัดที่มีคะแนนเสียงใช่ 390338 เสียง",
    "context": "CREATE TABLE table_256286_40 (passed VARCHAR, yes_votes VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_256286_40 WHERE yes_votes = 175932",
    "question_en": "What was the type when there were 175932 yes votes? ",
    "question_th": " ประเภทใดเมื่อมีผู้โหวตใช่ 175932 คน?",
    "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_en": "What is the aggregate number of yes votes where no votes is littler than 299939.1619948521 and % yes is 66.49%",
    "question_th": "คือจำนวนรวมของการโหวตใช่ โดยที่ไม่มีคะแนนเสียงน้อยกว่า 299939.1619948521 และ % ใช่ คือ 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_en": "What is the description of the measure that got 78.27% yes votes?",
    "question_th": "คำอธิบายของมาตรการที่ได้รับคะแนนโหวตใช่ 78.27% คืออะไร?",
    "context": "CREATE TABLE table_256286_55 (description VARCHAR, _percentage_yes VARCHAR)"
  },
  {
    "answer": "SELECT MAX(meas_num) FROM table_256286_55",
    "question_en": "What is the highest measure number?",
    "question_th": "ตัวเลขสูงสุดที่วัดได้คืออะไร?",
    "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_en": "How many type classifications are given to the measure with the description, calling convention to revise state constitution? ",
    "question_th": " มาตราวัดมีคำอธิบายเรียกประชุมแก้ไขรัฐธรรมนูญมีกี่ประเภท?",
    "context": "CREATE TABLE table_256286_5 (type VARCHAR, description VARCHAR)"
  },
  {
    "answer": "SELECT _percentage_yes FROM table_256286_5 WHERE yes_votes = 35270",
    "question_en": "What is the yes percentage in the measure that had 35270 yes votes? ",
    "question_th": "เปอร์เซ็นต์ใช่ในการวัดที่มีการโหวตใช่ 35270 เป็นเท่าใด",
    "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_en": "When the no votes was 322682, what was the max meas. number?",
    "question_th": "เมื่อไม่มีคะแนนเสียงคือ 322682 คะแนนสูงสุดคือเท่าใด ตัวเลข?",
    "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_en": "How yes votes were there for measure 4? ",
    "question_th": " มีคะแนนเสียงอย่างไรสำหรับมาตรการที่ 4?",
    "context": "CREATE TABLE table_256286_60 (yes_votes INTEGER, meas_num VARCHAR)"
  },
  {
    "answer": "SELECT MIN(meas_num) FROM table_256286_60",
    "question_en": "What was the lowest measure number? ",
    "question_th": " ตัวเลขการวัดต่ำสุดคืออะไร?",
    "context": "CREATE TABLE table_256286_60 (meas_num INTEGER)"
  },
  {
    "answer": "SELECT type FROM table_256286_8 WHERE _percentage_yes = \"32.47%\"",
    "question_en": "What was the type of ballot measures if the % of yes vote is 32.47%?",
    "question_th": "มาตรการลงคะแนนเสียงประเภทใดหาก % ของการลงคะแนนเสียงที่ใช่คือ 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_en": "What was the type of ballot measure with the description of Department of Industry and Public Works Amendment?",
    "question_th": "มาตรการลงคะแนนเสียงประเภทใดที่มีคำอธิบายของกรมอุตสาหกรรมและโยธาธิการแก้ไขเพิ่มเติม?",
    "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_en": "How many data are there under NO vote with a description of $1500 tax exemption amendment?",
    "question_th": "มีข้อมูลจำนวนเท่าใดที่อยู่ภายใต้การลงคะแนนเสียง NO พร้อมคำอธิบายการแก้ไขการยกเว้นภาษีมูลค่า 1,500 ดอลลาร์",
    "context": "CREATE TABLE table_256286_8 (no_votes VARCHAR, description VARCHAR)"
  },
  {
    "answer": "SELECT _percentage_yes FROM table_256286_61 WHERE yes_votes = 218846",
    "question_en": "What is the percentage of yes when there were 218846 yes votes",
    "question_th": "เปอร์เซ็นต์ของใช่เมื่อมีผู้โหวตใช่ 218846 คน",
    "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_en": "How many type catagories are listed when the percentage of yes is 68.91%?",
    "question_th": "มีกี่ประเภทที่ระบุไว้เมื่อเปอร์เซ็นต์ของใช่คือ 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_en": "What is the type when yes votes are 546255? ",
    "question_th": " ประเภทใดเมื่อใช่โหวตเป็น 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_en": "What is the measure number for the bill described as obscenity and sexual conduct bill? ",
    "question_th": " ร่างพระราชบัญญัติมีมาตราฐานอะไร เรียกว่า ร่างพระราชบัญญัติอนาจารและล่วงละเมิดทางเพศ?",
    "context": "CREATE TABLE table_256286_61 (meas_num VARCHAR, description VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(points) FROM table_25647137_2 WHERE player = \"Art Renner\"",
    "question_en": "How many points did art renner have?",
    "question_th": "อาร์ต เรนเนอร์ ได้กี่คะแนน?",
    "context": "CREATE TABLE table_25647137_2 (points VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(touchdowns) FROM table_25647137_2 WHERE player = \"Bill Culligan\"",
    "question_en": "How many touchdowns did bill culligan have?",
    "question_th": "บิล คัลลิแกนทำทัชดาวน์ได้กี่ครั้ง?",
    "context": "CREATE TABLE table_25647137_2 (touchdowns VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(touchdowns) FROM table_25647137_2",
    "question_en": "What was the highest number of touchdowns by a player?",
    "question_th": "จำนวนทัชดาวน์สูงสุดโดยผู้เล่นคือเท่าใด?",
    "context": "CREATE TABLE table_25647137_2 (touchdowns INTEGER)"
  },
  {
    "answer": "SELECT MIN(points) FROM table_25647137_2 WHERE player = \"Robert Stenberg\"",
    "question_en": "How many points did robert stenberg have?",
    "question_th": "Robert Stenberg มีกี่คะแนน?",
    "context": "CREATE TABLE table_25647137_2 (points INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_25643046_1 WHERE origin_time = \"14:07\"",
    "question_en": "Where was the quake that began at 14:07?",
    "question_th": "แผ่นดินไหวเมื่อเวลา 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_en": "What was the epicenter latitude for the quake that started at 17:09?",
    "question_th": "ละติจูดศูนย์กลางของแผ่นดินไหวซึ่งเริ่มต้นเมื่อเวลา 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_en": "When 12 is the season number how many series numbers are there?",
    "question_th": "เมื่อเลข 12 เป็นเลขซีซั่นจะมีเลขซีรีย์กี่ตัว?",
    "context": "CREATE TABLE table_25649467_2 (series__number VARCHAR, season__number VARCHAR)"
  },
  {
    "answer": "SELECT mountains_classification FROM table_25655781_17 WHERE winner = \"Borut Božič\"",
    "question_en": "Who had the mountains classification when borut božič was the winner?",
    "question_th": "ใครเป็นผู้จัดประเภทภูเขาเมื่อ Borut božič เป็นผู้ชนะ?",
    "context": "CREATE TABLE table_25655781_17 (mountains_classification VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT team_classification FROM table_25655781_17 WHERE winner = \"André Greipel\" AND points_classification = \"André Greipel\"",
    "question_en": "What was the team classification where andré greipel was the winner and had the points classification?",
    "question_th": "การแบ่งประเภททีมโดยที่ André Greipel เป็นผู้ชนะและมีการแบ่งคะแนนคืออะไร?",
    "context": "CREATE TABLE table_25655781_17 (team_classification VARCHAR, winner VARCHAR, points_classification VARCHAR)"
  },
  {
    "answer": "SELECT MAX(stage) FROM table_25655781_17",
    "question_en": "How many stages are there?",
    "question_th": "มีกี่ขั้นตอน?",
    "context": "CREATE TABLE table_25655781_17 (stage INTEGER)"
  },
  {
    "answer": "SELECT COUNT(sprint_classification) FROM table_25655781_17 WHERE winner = \"Marco Frapporti\"",
    "question_en": "How many sprint classifications are there where marco frapporti is the winner?",
    "question_th": "มีประเภทการวิ่งกี่ประเภทโดยที่ Marco Frapporti เป็นผู้ชนะ?",
    "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_en": "Who was the second couple for the episode having an ITV1 ranking of 29?",
    "question_th": "คู่ที่สองของตอนนี้ที่มีอันดับ ITV1 อยู่ที่ 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_en": "What is the maximum ITV1 weekly ranking?",
    "question_th": "อันดับสูงสุดของ ITV1 รายสัปดาห์คือเท่าไร?",
    "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_en": "What was the number of viewers for the episode having a fourth couple of Tony and Jamie?",
    "question_th": "จำนวนผู้ชมในตอนนี้ที่มีโทนี่และเจมี่คู่ที่สี่คือเท่าใด",
    "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_en": "Who was the first couple in the episode having a fourth couple of Sammy and Nat?",
    "question_th": "คู่แรกในตอนนี้ที่มีคู่ที่สี่คือแซมมี่และแนทคือใคร?",
    "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_en": "What is the minimum ITV1 ranking for the episode having viewership of 5.42 million?",
    "question_th": "อันดับขั้นต่ำของ ITV1 สำหรับตอนที่มีผู้ชม 5.42 ล้านคนคือเท่าไร?",
    "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_en": "What episode number in the series was viewed by 13.66 million people in the U.S.?",
    "question_th": "หมายเลขตอนใดในซีรีส์ที่มีผู้ชม 13.66 ล้านคนในสหรัฐอเมริกา",
    "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_en": "How many million U.S. viewers watched the epiode with a production code of 1arc12?",
    "question_th": "ผู้ชมในสหรัฐฯ จำนวนกี่ล้านคนดูตอนที่มีรหัสการผลิต 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_en": "How many million U.S. viewers watched the episode with a production code of 1arc03?",
    "question_th": "ผู้ชมในสหรัฐฯ จำนวนกี่ล้านคนดูตอนนี้ด้วยรหัสการผลิต 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_en": "How many million U.S. viewers watched episode number 6 in the series?",
    "question_th": "ผู้ชมในสหรัฐฯ ดูตอนที่ 6 ในซีรีส์นี้กี่ล้านคน",
    "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_en": "Who directed episode number 18 in the series?",
    "question_th": "ใครเป็นผู้กำกับตอนที่ 18 ในซีรีส์?",
    "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_en": "Who were the 3rd couple that were viewed by 4.89 million viewers? ",
    "question_th": " คู่ที่ 3 ที่มีผู้ชม 4.89 ล้านคน คือใคร?",
    "context": "CREATE TABLE table_25664518_4 (viewers__millions_ VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_25668203_2 WHERE most_laps_led = \"Patrick McKenna\"",
    "question_en": "What location(s) did patrick mckenna lead the most laps?",
    "question_th": "แพทริค แม็คเคนน่าขึ้นนำในตำแหน่งใดมากที่สุด?",
    "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_en": "How many races went for 10 rounds?",
    "question_th": "แข่งไปกี่รอบ 10 รอบ?",
    "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_en": "Who had the most laps led in monterey, california when scott rarick won the race?",
    "question_th": "ใครมีรอบนำมากที่สุดในมอนเทอเรย์ แคลิฟอร์เนีย เมื่อสก็อตต์ ราริคชนะการแข่งขัน",
    "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_en": "What was the winning team when mikhail goikhberg was the winning driver?",
    "question_th": "ทีมใดเป็นผู้ชนะในสมัยที่ มิคาอิล กุคเบิร์ก เป็นนักแข่งที่ชนะ?",
    "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_en": "Who directed the episode with the production code 10?",
    "question_th": "ใครกำกับตอนด้วยรหัสการผลิต 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_en": "Who wrote the episode with production code 2?",
    "question_th": "ใครเป็นคนเขียนตอนที่มีรหัสการผลิต 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_en": "Who wrote the episode with production code 5?",
    "question_th": "ใครเป็นคนเขียนตอนที่มีรหัสการผลิต 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_en": "Name the number of finishes for 15 entries 15 and  l'esprit d'equipe",
    "question_th": "ตั้งชื่อจำนวนการเสร็จสิ้นสำหรับ 15 รายการ 15 และ 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_en": "Name the most legs for steinlager 2",
    "question_th": "ตั้งชื่อขาที่มากที่สุดสำหรับ 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_en": "Name the wininng yacht for 14 entries",
    "question_th": "ตั้งชื่อเรือยอทช์ที่ชนะเลิศจำนวน 14 รายการ",
    "context": "CREATE TABLE table_256862_1 (winning_yacht VARCHAR, entries VARCHAR)"
  },
  {
    "answer": "SELECT the_wørd FROM table_25691838_2 WHERE original_airdate = \"February 11\"",
    "question_en": "What was the word for the episode that aired February 11? ",
    "question_th": "คำพูดของตอนที่ออกอากาศวันที่ 11 กุมภาพันธ์คืออะไร?",
    "context": "CREATE TABLE table_25691838_2 (the_wørd VARCHAR, original_airdate VARCHAR)"
  },
  {
    "answer": "SELECT introductory_phrase FROM table_25691838_2 WHERE production_code = 6026",
    "question_en": "What was the introductory phrase for the episode with the production bode 6026?",
    "question_th": "วลีเกริ่นนำของตอนที่มีลางบอกเหตุการผลิต 6026 คืออะไร?",
    "context": "CREATE TABLE table_25691838_2 (introductory_phrase VARCHAR, production_code VARCHAR)"
  },
  {
    "answer": "SELECT the_wørd FROM table_25691838_2 WHERE episode__number = 673",
    "question_en": "What was the word on episode number 673? ",
    "question_th": " คำว่าอะไรในตอนที่ 673?",
    "context": "CREATE TABLE table_25691838_2 (the_wørd VARCHAR, episode__number VARCHAR)"
  },
  {
    "answer": "SELECT guest FROM table_25691838_2 WHERE production_code = 6021",
    "question_en": "Who were the guests in the episode with production code 6021? ",
    "question_th": " ใครคือแขกรับเชิญในตอนที่มีรหัสการผลิต 6021?",
    "context": "CREATE TABLE table_25691838_2 (guest VARCHAR, production_code VARCHAR)"
  },
  {
    "answer": "SELECT guest FROM table_25691838_12 WHERE production_code = 6152",
    "question_en": "Who were the guests on a show where the production code is 6152?",
    "question_th": "ใครเป็นแขกรับเชิญในรายการที่มีรหัสการผลิตคือ 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_en": "Who were the guests for the episode with an original airdate of december 07?",
    "question_th": "ใครเป็นแขกรับเชิญของตอนนี้ซึ่งออกอากาศครั้งแรกในวันที่ 7 ธันวาคม 2010?",
    "context": "CREATE TABLE table_25691838_12 (guest VARCHAR, original_airdate VARCHAR)"
  },
  {
    "answer": "SELECT the_wørd FROM table_25691838_12 WHERE guest = \"Daniel Ellsberg , William Wegman , Julie Taymor\"",
    "question_en": "What is \"the wørd\" when guests were daniel ellsberg , william wegman , julie taymor?",
    "question_th": "\"คำพูด\" คืออะไรเมื่อแขกรับเชิญ ได้แก่ แดเนียล เอลส์เบิร์ก , วิลเลียม เว็กแมน , จูลี่ เทย์มอร์?",
    "context": "CREATE TABLE table_25691838_12 (the_wørd VARCHAR, guest VARCHAR)"
  },
  {
    "answer": "SELECT production_code FROM table_25691838_12 WHERE original_airdate = \"December 01\"",
    "question_en": "What is the production code of the episode with an original airdate of december 01?",
    "question_th": "รหัสการผลิตของตอนที่ออกอากาศครั้งแรกวันที่ 1 ธันวาคมคืออะไร?",
    "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_en": "What is the  episode # when the guests were julie nixon eisenhower and david eisenhower?",
    "question_th": "ตอนที่ # แขกรับเชิญคือ จูลี่ นิกสัน ไอเซนฮาวร์ และ เดวิด ไอเซนฮาวร์ คืออะไร?",
    "context": "CREATE TABLE table_25691838_12 (episode__number INTEGER, guest VARCHAR)"
  },
  {
    "answer": "SELECT guest FROM table_25691838_8 WHERE original_airdate = \"August 16\"",
    "question_en": "Who were the guests on the episode that first aired August 16?",
    "question_th": "ใครเป็นแขกรับเชิญในตอนที่ออกอากาศครั้งแรกเมื่อวันที่ 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_en": "What was the introductory phrase on the episode production code 6101?",
    "question_th": "วลีเกริ่นนำในรหัสการผลิตตอน 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_en": "What was the smallest production code for August 11's original episode?",
    "question_th": "รหัสการผลิตที่เล็กที่สุดสำหรับตอนดั้งเดิมของวันที่ 11 สิงหาคมคืออะไร",
    "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_en": "How many introductory phrases were there on David Finkel's guest episode?",
    "question_th": "มีวลีเกริ่นนำในตอนรับเชิญของ David Finkel กี่วลี",
    "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_en": "What was the minimum number of the episode that first aired August 11?",
    "question_th": "ตอนที่ออกอากาศครั้งแรกในวันที่ 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_en": "What was the introductory phrase for episode 794?",
    "question_th": "วลีเกริ่นนำของตอนที่ 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_en": "What date did the episode originally air on with salvatore giunta as a guest?",
    "question_th": "เดิมตอนนี้ออกอากาศวันไหนโดยมี Salvatore Giunta เป็นแขกรับเชิญ",
    "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_en": "How many production codes were there for the episode that aired on November 15?",
    "question_th": "ตอนที่ออกอากาศวันที่ 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_en": "What was the cylinder size of this engine that was made with only 88 pieces?",
    "question_th": "เครื่องยนต์นี้สร้างเพียง 88 ชิ้นมีกระบอกสูบขนาดเท่าไร?",
    "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_en": "What was the engine class that was built on 1906-08?",
    "question_th": "เครื่องยนต์ประเภทใดที่สร้างขึ้นในปี 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 ½” x 26”\" AND firebox = \"Belpaire\" AND valve_gear = \"Stephenson\"",
    "question_en": "How many engines were built with a cylinder size of 20 ½” x 26”, firebox is belpaire and valve gear is from Stephenson?",
    "question_th": "มีเครื่องยนต์กี่เครื่องที่สร้างขึ้นด้วยขนาดกระบอกสูบ 20 ½” x 26” กล่องไฟทำจากเบลแพร์ และชุดวาล์วมาจาก 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 ½” x 26”\" AND firebox = \"Radial-stay\"",
    "question_en": "This engine with a cylinder size of 20 ½” x 26” and a firebox of radial-stay was built when?",
    "question_th": "เครื่องยนต์ที่มีขนาดกระบอกสูบ 20 ½” x 26” และเรือนไฟแบบรัศมีสเตย์นี้ถูกสร้างขึ้นเมื่อใด?",
    "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_en": "How many types of valves were used on this engine that was built on 1902-05?",
    "question_th": "เครื่องยนต์นี้สร้างขึ้นในปี 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_en": "Name the agency for santa rosa avenue",
    "question_th": "ตั้งชื่อเอเจนซี่สำหรับถนนซานตา โรซา",
    "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_en": "Name the route number for rincon valley",
    "question_th": "ตั้งชื่อหมายเลขเส้นทางสำหรับหุบเขารินคอน",
    "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_en": "Name the route number for santa rosa avenue",
    "question_th": "ตั้งชื่อหมายเลขเส้นทางสำหรับถนนซานตา โรซา",
    "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_en": "What is the original air date of the episode \"Another Happy Day\"?",
    "question_th": "ตอนแรกของตอน \"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_en": "What is the title of the episode that aired on 13 august 1981?",
    "question_th": "ตอนที่ออกอากาศวันที่ 13 สิงหาคม 2524 ชื่อเรื่องว่าอะไร?",
    "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_en": "What is the original air date of episode 3-02?",
    "question_th": "ตอนที่ 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_en": "Who are the cast members of episode 3-04?",
    "question_th": "นักแสดงในตอนที่ 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_en": "What is the highest birth/2013 when the death/2012 is 14,1?",
    "question_th": "เกิดสูงสุด/2556 เมื่อเสียชีวิต/2555 คือ 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_en": "What is the highest death/2013 when the death/2012 is 12,7?",
    "question_th": "การเสียชีวิตสูงสุด/2556 คืออะไร เมื่อการเสียชีวิต/2555 คือ 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_en": "What are the death/2012 number when death/2013 is 140 and January–September 2013 is Moscow Oblast?",
    "question_th": "ผู้เสียชีวิต/ปี 2555 เป็นเท่าใด โดยผู้เสียชีวิต/ปี 2556 คือ 140 คน และเดือนมกราคม-กันยายน 2556 คือ แคว้นมอสโก?",
    "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_en": "How many figures for birth/2013 when January-September is Oryol Oblast?",
    "question_th": "ตัวเลขที่เกิด/2556 ในเดือนมกราคม-กันยายนเป็น 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_en": "How many touchdowns did the player took which gained 25 points?",
    "question_th": "ผู้เล่นทำทัชดาวน์ได้กี่ครั้งซึ่งได้รับ 25 คะแนน",
    "context": "CREATE TABLE table_25711913_2 (touchdowns VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT MAX(points) FROM table_25711913_2 WHERE player = \"Curtis\"",
    "question_en": "How many maximum points did Curtis scored?",
    "question_th": "เคอร์ติสทำคะแนนสูงสุดได้กี่คะแนน?",
    "context": "CREATE TABLE table_25711913_2 (points INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(touchdowns) FROM table_25711913_2 WHERE position = \"Left guard\"",
    "question_en": "How many touchdowns did the left guard took?",
    "question_th": "การ์ดซ้ายทำทัชดาวน์ได้กี่ครั้ง?",
    "context": "CREATE TABLE table_25711913_2 (touchdowns INTEGER, position VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(field_goals) FROM table_25711913_2 WHERE position = \"Left end\"",
    "question_en": "How many numbers were recorded on the fields goals of the Left End player?",
    "question_th": "มีการบันทึกตัวเลขจำนวนเท่าใดในการยิงประตูของผู้เล่นฝั่งซ้าย?",
    "context": "CREATE TABLE table_25711913_2 (field_goals VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT MIN(touchdowns) FROM table_25711913_2 WHERE position = \"Fullback\"",
    "question_en": "What was the minimum touchdowns of the Fullback player?",
    "question_th": "ทัชดาวน์ขั้นต่ำของผู้เล่นฟูลแบ็คคือเท่าไร?",
    "context": "CREATE TABLE table_25711913_2 (touchdowns INTEGER, position VARCHAR)"
  },
  {
    "answer": "SELECT MIN(touchdowns) FROM table_25711913_8 WHERE position = \"Fullback\"",
    "question_en": "How many touchdowns did the fullback score?",
    "question_th": "ฟูลแบ็คทำทัชดาวน์ได้กี่ทัชดาวน์?",
    "context": "CREATE TABLE table_25711913_8 (touchdowns INTEGER, position VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(field_goals) FROM table_25711913_8 WHERE player = \"Weeks\"",
    "question_en": "How many figures are provided for Weeks' field goals?",
    "question_th": "มีตัวเลขจำนวนเท่าใดสำหรับการยิงประตูของ Weeks?",
    "context": "CREATE TABLE table_25711913_8 (field_goals VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(points) FROM table_25711913_8 WHERE position = \"Right halfback\"",
    "question_en": "What is the most points recorded for a right halfback?",
    "question_th": "กองหลังฝั่งขวามีแต้มมากที่สุดเท่าไหร่?",
    "context": "CREATE TABLE table_25711913_8 (points INTEGER, position VARCHAR)"
  },
  {
    "answer": "SELECT starter FROM table_25711913_8 WHERE player = \"Magoffin\"",
    "question_en": "Was Magoffin a starting player?",
    "question_th": "Magoffin เป็นผู้เล่นเริ่มต้นหรือไม่?",
    "context": "CREATE TABLE table_25711913_8 (starter VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_25711913_8 WHERE position = \"Left tackle\"",
    "question_en": "Which player was at position left tackle?",
    "question_th": "นักเตะคนไหนอยู่ตำแหน่งแท็คเกิ้ลซ้าย?",
    "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_en": "What is the original air date for the episode written by daniel dratch?",
    "question_th": "ตอนที่เขียนโดย 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_en": "What season was an episode directed by wendey stanzler?",
    "question_th": "ตอนที่กำกับโดยเวนดี้ สแตนซ์เลอร์คือซีซั่นใด",
    "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_en": "What was the original air date where there were u.s. viewers (millions) is 5.60?",
    "question_th": "วันที่ออกอากาศเดิมที่มีพวกเราคนดู (ล้านคน) คือ 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_en": "Who was the writer for season 14?",
    "question_th": "ใครเป็นนักเขียนสำหรับซีซั่น 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_en": "Who wrote the episode where the original air date is july20,2007?",
    "question_th": "ใครเป็นคนเขียนตอนที่ออกอากาศตอนแรกคือ 20 กรกฎาคม 2550",
    "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_en": "what season was written by  jonathan collier?",
    "question_th": "โจนาธาน คอลลิเออร์เขียนฤดูกาลอะไร",
    "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_en": "How many episodes were written by Tom Scharpling and Daniel Dratch?",
    "question_th": "Tom Scharpling และ 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_en": "How many people directed the episode that Joe Toplyn wrote?",
    "question_th": "มีคนกำกับตอนที่ Joe Toplyn เขียนกี่คน?",
    "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_en": "How many titles does the episode written by Joe Toplyn have?",
    "question_th": "ตอนที่เขียนโดย Joe Toplyn มีกี่ชื่อ?",
    "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_en": "How many directors of episode 55?",
    "question_th": "ตอนที่ 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_en": "How many titles are there for the episode written by Tom Scharpling? ",
    "question_th": " ตอนที่เขียนโดย 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_en": "Which episode number aired on 18 october 2012?",
    "question_th": "ออกอากาศวันที่ 18 ตุลาคม 2555 หมายเลขตอนใด?",
    "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_en": "What is the lowest cable rank of an episode with 1464000 viewers?",
    "question_th": "อันดับเคเบิลต่ำสุดของตอนที่มีผู้ชม 1464000 คนคือเท่าไร",
    "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_en": "What is the highest number of dave viewers of an episode with 119000 dave ja vu viewers?",
    "question_th": "จำนวนผู้ชม dave สูงสุดของตอนที่มีผู้ชม dave ja vu 119,000 คนคือเท่าใด",
    "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_en": "How many episodes aired on 25 october 2012?",
    "question_th": "ออกอากาศวันที่ 25 ตุลาคม 2555 กี่ตอน?",
    "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_en": "What was the airdate of the episode with 106000 dave ja vu viewers?",
    "question_th": "Dave ja vu ออกอากาศตอนไหนที่มีผู้ชม 106,000 คน?",
    "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_en": "How many DVDs where were in the complete collection series 1-8 with extras?",
    "question_th": "มีดีวีดีกี่แผ่นในชุดคอลเลกชัน 1-8 พร้อมรายการพิเศษ?",
    "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_en": "Which release had 6 DVDs?",
    "question_th": "รุ่นไหนมีดีวีดี 6 แผ่น?",
    "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_en": "How many region 1's did back to earth have?",
    "question_th": "ภูมิภาคที่ 1 กลับมายังโลกมีกี่แห่ง?",
    "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_en": "How many field goals did Walter Rheinschild have? ",
    "question_th": " Walter Rheinschild ยิงประตูได้กี่ประตู?",
    "context": "CREATE TABLE table_25724294_2 (field_goals INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT extra_points FROM table_25724294_2 WHERE player = \"Jack Loell\"",
    "question_en": "Jack Loell had how many extra points? ",
    "question_th": " แจ็ค โลเอลล์ มีคะแนนพิเศษกี่แต้ม?",
    "context": "CREATE TABLE table_25724294_2 (extra_points VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(points) FROM table_25730209_2 WHERE player = \"Donald Green\"",
    "question_en": "How many points did Donald Green score?",
    "question_th": "โดนัลด์ กรีน ได้คะแนนเท่าไร?",
    "context": "CREATE TABLE table_25730209_2 (points VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(field_goals) FROM table_25730209_2 WHERE player = \"Donald Green\"",
    "question_en": "How many field goals did Donald Green score?",
    "question_th": "โดนัลด์ กรีน ยิงประตูได้กี่ประตู?",
    "context": "CREATE TABLE table_25730209_2 (field_goals VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MIN(extra_points) FROM table_25730209_2",
    "question_en": "What was the least amount of points scored?",
    "question_th": "ได้คะแนนน้อยที่สุดคือเท่าไร?",
    "context": "CREATE TABLE table_25730209_2 (extra_points INTEGER)"
  },
  {
    "answer": "SELECT COUNT(extra_points) FROM table_25730209_2 WHERE player = \"Stanfield Wells\"",
    "question_en": "How many extra points did Stanfield Wells make?",
    "question_th": "สแตนฟิลด์ เวลส์ ทำแต้มพิเศษได้กี่แต้ม?",
    "context": "CREATE TABLE table_25730209_2 (extra_points VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(points) FROM table_25730123_2",
    "question_en": "What are the most points listed?",
    "question_th": "ประเด็นไหนมากที่สุด?",
    "context": "CREATE TABLE table_25730123_2 (points INTEGER)"
  },
  {
    "answer": "SELECT touchdowns FROM table_25730123_2 WHERE extra_points > 1.0",
    "question_en": "How many touchdowns were the when there was more than 1.0 extra point?",
    "question_th": "มีทัชดาวน์กี่ครั้งเมื่อมีแต้มพิเศษมากกว่า 1.0?",
    "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_en": "Name the player/s when there were 20 points with less than 1.0 extra point .",
    "question_th": "ตั้งชื่อผู้เล่นเมื่อมี 20 คะแนนโดยมีคะแนนพิเศษน้อยกว่า 1.0",
    "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_en": "What were the least amount of field goals when Frederick L. Conklin played?",
    "question_th": "จำนวนการยิงประตูน้อยที่สุดเมื่อเฟรดเดอริก แอล. คอนคลินเล่นคือเท่าใด",
    "context": "CREATE TABLE table_25730123_2 (field_goals INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT MIN(extra_points) FROM table_25730326_2",
    "question_en": "What is the least number of extra points? ",
    "question_th": " คะแนนพิเศษขั้นต่ำคือเท่าไร?",
    "context": "CREATE TABLE table_25730326_2 (extra_points INTEGER)"
  },
  {
    "answer": "SELECT points FROM table_25730326_2 WHERE player = \"William Wasmund\"",
    "question_en": "How many points did William Wasmund have?",
    "question_th": "วิลเลียม วัสมุนด์มีกี่คะแนน?",
    "context": "CREATE TABLE table_25730326_2 (points VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MIN(touchdowns) FROM table_25730326_2 WHERE points = 10",
    "question_en": "How many touchdowns did the player with 10 points have?",
    "question_th": "ผู้เล่นที่มี 10 แต้มมีทัชดาวน์ได้กี่ครั้ง?",
    "context": "CREATE TABLE table_25730326_2 (touchdowns INTEGER, points VARCHAR)"
  },
  {
    "answer": "SELECT MAX(points) FROM table_25730326_2 WHERE player = \"George M. Lawton\"",
    "question_en": "How many points does George M. Lawton have?",
    "question_th": "George M. Lawton มีกี่คะแนน",
    "context": "CREATE TABLE table_25730326_2 (points INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_25730460_2 WHERE touchdowns = 1",
    "question_en": "Name the player for 1 touchdowns",
    "question_th": "ตั้งชื่อผู้เล่น 1 ทัชดาวน์",
    "context": "CREATE TABLE table_25730460_2 (player VARCHAR, touchdowns VARCHAR)"
  },
  {
    "answer": "SELECT MIN(extra_points) FROM table_25730460_2",
    "question_en": "Name the least extra points",
    "question_th": "ตั้งชื่อคะแนนพิเศษน้อยที่สุด",
    "context": "CREATE TABLE table_25730460_2 (extra_points INTEGER)"
  },
  {
    "answer": "SELECT director FROM table_25737761_3 WHERE no = 2",
    "question_en": "Who directed episode number 2?",
    "question_th": "ใครกำกับตอนที่ 2?",
    "context": "CREATE TABLE table_25737761_3 (director VARCHAR, no VARCHAR)"
  },
  {
    "answer": "SELECT no FROM table_25737761_3 WHERE viewing_figure = 797000",
    "question_en": "What was the episode number that had 797000 viewers?",
    "question_th": "หมายเลขตอนที่มีผู้ชม 797,000 คนคือหมายเลขอะไร",
    "context": "CREATE TABLE table_25737761_3 (no VARCHAR, viewing_figure VARCHAR)"
  },
  {
    "answer": "SELECT writer FROM table_25737761_3 WHERE director = \"Colin Teague\"",
    "question_en": "Who directed the episode directed by colin teague?",
    "question_th": "ใครเป็นผู้กำกับตอนที่กำกับโดย 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_en": "How many episodes with the production code CA106 are there?",
    "question_th": "รหัสการผลิต CA106 มีทั้งหมดกี่ตอน?",
    "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_en": "Who was the director for episodes that were written be Matthew Lau?",
    "question_th": "ใครเป็นผู้กำกับตอนที่เขียนเป็น 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_en": "How many episode were written by Brett Conrad?",
    "question_th": "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_en": "How many episodes were directed by Tim Matheson?",
    "question_th": "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_en": "How many episodes were directed by Rod Hardy?",
    "question_th": "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_en": "Who wrote the episode with 3.92 million US viewers?",
    "question_th": "ใครเป็นคนเขียนตอนที่มีผู้ชม 3.92 ล้านคนในสหรัฐฯ?",
    "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_en": "How many original air dates are there for the episode with code CA210?",
    "question_th": "ตอนที่มีรหัส 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_en": "How many episodes had rating/share (18-49) of 0.7/2 and a rating of 2.1?",
    "question_th": "มีกี่ตอนที่มีเรตติ้ง/แชร์ (18-49) 0.7/2 และเรตติ้ง 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_en": "What is the lowest episode number that had a ratings/share (18-49) of 1.1/3?",
    "question_th": "หมายเลขตอนต่ำสุดที่มีเรตติ้ง/แชร์ (18-49) อยู่ที่ 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_en": "What is the rating of the episode with a share of 4 and a rating/share (18-49) of 0.7/2?",
    "question_th": "เรตติ้งของตอนที่มีส่วนแบ่ง 4 และเรตติ้ง/แชร์ (18-49) ที่ 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_en": "What is the lowest rank of an episode with a rating/share (18-49) of 1.3/4?",
    "question_th": "อันดับต่ำสุดของตอนที่มีเรตติ้ง/แชร์ (18-49) ที่ 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_en": "What is the song released by Travis?",
    "question_th": "Travis ออกเพลงอะไรคะ?",
    "context": "CREATE TABLE table_25760427_2 (single VARCHAR, artist VARCHAR)"
  },
  {
    "answer": "SELECT MIN(weeks_at_number_1) FROM table_25760427_2",
    "question_en": "error (see notes)",
    "question_th": "ข้อผิดพลาด (ดูหมายเหตุ)",
    "context": "CREATE TABLE table_25760427_2 (weeks_at_number_1 INTEGER)"
  },
  {
    "answer": "SELECT single FROM table_25760427_2 WHERE artist = \"Panjabi MC\"",
    "question_en": "What is the song by the musician panjabi mc?",
    "question_th": "เพลงของนักดนตรี panjabi mc คือเพลงอะไร?",
    "context": "CREATE TABLE table_25760427_2 (single VARCHAR, artist VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_25773116_2 WHERE round = 1",
    "question_en": "Where was the round 1 race?",
    "question_th": "รอบ 1 แข่งที่ไหน?",
    "context": "CREATE TABLE table_25773116_2 (location VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT winning_driver FROM table_25773116_2 WHERE date = \"April 11\"",
    "question_en": "Who won the April 11 race?",
    "question_th": "ใครชนะการแข่งขันวันที่ 11 เมษายน?",
    "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_en": "Where was the race where Cole Morgan had the fastest lap and Daniel Erickson had pole position?",
    "question_th": "การแข่งขันที่ Cole Morgan มีรอบเร็วที่สุดและ Daniel Erickson มีตำแหน่งโพลโพซิชั่นอยู่ที่ไหน?",
    "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_en": "How many rounds were played on May 8?",
    "question_th": "วันที่ 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_en": "Who had pole position for the races in Braselton, Georgia where Victor Carbone had fastest lap?",
    "question_th": "ใครเป็นผู้ครองตำแหน่งโพลโพซิชั่นในการแข่งขันในเมืองเบรเซลตัน รัฐจอร์เจีย โดยที่วิกเตอร์ คาร์โบนทำรอบได้เร็วที่สุด?",
    "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_en": "Where did Audette Racing win?",
    "question_th": "Audette Racing ชนะที่ไหน?",
    "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_en": "Name the directors for peter gawler",
    "question_th": "ตั้งชื่อผู้กำกับให้ปีเตอร์ กอว์เลอร์",
    "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_en": "Name the least episode number for  anne brooksbank and vicki madden",
    "question_th": "ตั้งชื่อตอนน้อยที่สุดของแอนน์ บรูคส์แบงก์และวิคกี้ แมดเดน",
    "context": "CREATE TABLE table_25764073_3 (episode__number INTEGER, writer_s_ VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_25764073_3 WHERE season__number = 35",
    "question_en": "Name the title for season number 35",
    "question_th": "ตั้งชื่อชื่อเรื่องสำหรับฤดูกาลที่ 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_en": "What were the points per game in the selection where the rebounds per game were 15.0?",
    "question_th": "อะไรคือแต้มต่อเกมในตัวเลือกที่มีการรีบาวด์ต่อเกมเป็น 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_en": "What were the blocks per game in the selection where the field goal percentage was .594 (2nd)?",
    "question_th": "จำนวนบล็อกต่อเกมในตัวเลือกที่มีเปอร์เซ็นต์การยิงประตูคือ .594 (อันดับที่ 2) คืออะไร",
    "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_en": "Name the name for company d",
    "question_th": "ตั้งชื่อบริษัท ง",
    "context": "CREATE TABLE table_25794010_1 (name VARCHAR, company VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_25794010_1 WHERE organization_date = \"Unknown\"",
    "question_en": "Name the name for organization date being unknown",
    "question_th": "ไม่ทราบชื่อองค์กรวันที่",
    "context": "CREATE TABLE table_25794010_1 (name VARCHAR, organization_date VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_25794010_1 WHERE county = \"Desha\"",
    "question_en": "Name the name for desha",
    "question_th": "ตั้งชื่อเดชา",
    "context": "CREATE TABLE table_25794010_1 (name VARCHAR, county VARCHAR)"
  },
  {
    "answer": "SELECT company FROM table_25794010_1 WHERE county = \"Desha\"",
    "question_en": "Name the company for desha county",
    "question_th": "ตั้งชื่อบริษัทสำหรับเทศมณฑลเดชา",
    "context": "CREATE TABLE table_25794010_1 (company VARCHAR, county VARCHAR)"
  },
  {
    "answer": "SELECT writer_s_ FROM table_25800134_1 WHERE series__number = 56",
    "question_en": "Who wrote the episode with series number 56?",
    "question_th": "ใครเป็นคนเขียนตอนที่มีซีรีส์หมายเลข 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_en": "What is largest series number for the episode that aired February 16, 1957?",
    "question_th": "หมายเลขซีรีส์ที่ใหญ่ที่สุดสำหรับตอนที่ออกอากาศวันที่ 16 กุมภาพันธ์ พ.ศ. 2500 คือข้อใด",
    "context": "CREATE TABLE table_25800134_1 (series__number INTEGER, airdate VARCHAR)"
  },
  {
    "answer": "SELECT director FROM table_25800134_1 WHERE airdate = \"December 15, 1956\"",
    "question_en": "Who directed the episodes that aired December 15, 1956? ",
    "question_th": " ใครเป็นผู้กำกับตอนที่ออกอากาศเมื่อวันที่ 15 ธันวาคม พ.ศ. 2499?",
    "context": "CREATE TABLE table_25800134_1 (director VARCHAR, airdate VARCHAR)"
  },
  {
    "answer": "SELECT writer_s_ FROM table_25800134_1 WHERE airdate = \"December 1, 1956\"",
    "question_en": "Who wrote the episode that aired December 1, 1956? ",
    "question_th": " ใครเป็นคนเขียนตอนที่ออกอากาศวันที่ 1 ธันวาคม พ.ศ. 2499",
    "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_en": "Who was the writer of the episode that originally aired on October 14, 1968?",
    "question_th": "ใครคือผู้เขียนตอนที่ออกอากาศครั้งแรกเมื่อวันที่ 14 ตุลาคม พ.ศ. 2511",
    "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_en": "What is the season # for the episode with air date february 2, 1970?",
    "question_th": "ซีซั่น # ของตอนที่ออกอากาศวันที่ 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_en": "Who was the writer who wrote the episode that was aired on September 11, 1972?",
    "question_th": "ใครคือคนเขียนบทตอนที่ออกอากาศวันที่ 11 กันยายน 2515?",
    "context": "CREATE TABLE table_25800134_17 (writer_s_ VARCHAR, airdate VARCHAR)"
  },
  {
    "answer": "SELECT director FROM table_25800134_19 WHERE series__number = 626",
    "question_en": "Who directed episode number 626 in the series?",
    "question_th": "ใครเป็นผู้กำกับตอนที่ 626 ในซีรีส์?",
    "context": "CREATE TABLE table_25800134_19 (director VARCHAR, series__number VARCHAR)"
  },
  {
    "answer": "SELECT writer_s_ FROM table_25800134_2 WHERE season__number = 24",
    "question_en": "Who are all the writers of episodes in season 24?",
    "question_th": "ใครคือผู้เขียนตอนในซีซั่น 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_en": "What is the title of the episode that aired on May 10, 1958?",
    "question_th": "ตอนที่ออกอากาศวันที่ 10 พฤษภาคม 2501 ชื่ออะไร",
    "context": "CREATE TABLE table_25800134_2 (title VARCHAR, airdate VARCHAR)"
  },
  {
    "answer": "SELECT writer_s_ FROM table_25800134_4 WHERE season__number = 15",
    "question_en": "Who was the writer of episode 15?",
    "question_th": "ใครคือผู้เขียนตอนที่ 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_en": "What is the title of #33?",
    "question_th": "#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_en": "How many directors worked on #158?",
    "question_th": "มีผู้กำกับกี่คนที่ทำงานใน #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_en": "How many writers were for season #1?",
    "question_th": "มีนักเขียนกี่คนในซีซั่นที่ 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_en": "Who was the director for the episode on May 2, 1959?",
    "question_th": "ใครเป็นผู้กำกับตอนที่ 2 พฤษภาคม 2502?",
    "context": "CREATE TABLE table_25800134_3 (director VARCHAR, airdate VARCHAR)"
  },
  {
    "answer": "SELECT no_in_series FROM table_25810656_3 WHERE production_code = 204",
    "question_en": "Name the number in series for production code being 204",
    "question_th": "ตั้งชื่อหมายเลขในชุดรหัสการผลิตเป็น 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_en": "Name the number of title for number in series being 25",
    "question_th": "ตั้งชื่อหมายเลขชื่อเรื่องสำหรับหมายเลขในชุดคือ 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_en": "What was the latest stage won by Mikhail Ignatiev? ",
    "question_th": " 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_en": "In what race was the weight in kg 55 and the winner/2nd 1st - Jim and Tonic?",
    "question_th": "ในการแข่งขันรายการใดมีน้ำหนักเป็นกิโลกรัม 55 และผู้ชนะ/อันดับที่ 2 - จิมและโทนิค",
    "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_en": "What was the distance in the Manikato Stakes race?",
    "question_th": "ระยะทางในการแข่งขัน Manikato Stakes คืออะไร?",
    "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_en": "What was the distance in the race where the weight in kg was 56 and the winner/2nd was 2nd - Fritz?",
    "question_th": "ระยะทางในการแข่งขันคือเท่าใด โดยน้ำหนักเป็นกิโลกรัมคือ 56 และผู้ชนะ/ที่ 2 คือที่ 2 - ฟริตซ์",
    "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_en": "What date was the Doncaster race? ",
    "question_th": " การแข่งขัน Doncaster คือวันที่เท่าไร?",
    "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_en": "What was the air date when the team guest captain was john bishop?",
    "question_th": "กัปตันรับเชิญคือจอห์น บิชอปออกอากาศวันไหน?",
    "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_en": "Who was the team guest captain for episode 2?",
    "question_th": "ใครเป็นกัปตันรับเชิญของทีมในตอนที่ 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_en": "Who was the team swash when the team guest captain was gail porter?",
    "question_th": "ใครคือทีมซัดเมื่อกัปตันรับเชิญของทีมเป็นเกลพอร์ตเตอร์?",
    "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_en": "How many entries are there for team coxy for the air date of 24 january 2010 and team guest captain of gail porter?",
    "question_th": "มีกี่รายการสำหรับ Team Coxy ที่จะออกอากาศวันที่ 24 มกราคม 2010 และกัปตันทีมรับเชิญของ 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_en": "How many entries are shown for an air date when the team guest captain was stephen k amos?",
    "question_th": "มีการแสดงกี่รายการสำหรับวันที่ออกอากาศเมื่อกัปตันรับเชิญของทีมคือ 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_en": "What group was sunline in when he was at moonee valley?",
    "question_th": "ตอนที่เขาอยู่ที่หุบเขามูนีมีแสงแดดจัดในกลุ่มใด",
    "context": "CREATE TABLE table_2581397_2 (group VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT win_loss FROM table_25820786_2 WHERE nationality = \"Switzerland\"",
    "question_en": "What was the win-loss record for the player from Switzerland? ",
    "question_th": " สถิติแพ้ชนะของนักเตะจากสวิตเซอร์แลนด์คือเท่าไร?",
    "context": "CREATE TABLE table_25820786_2 (win_loss VARCHAR, nationality VARCHAR)"
  },
  {
    "answer": "SELECT win_loss FROM table_25820584_7 WHERE year_s_ = \"1969\"",
    "question_en": "What was the win loss record the lady who appeard in 1969?",
    "question_th": "บันทึกการแพ้ชนะของผู้หญิงที่ปรากฏตัวในปี 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_en": "What player(s) appeared in 1969?",
    "question_th": "ผู้เล่นคนใดที่ปรากฏในปี 1969?",
    "context": "CREATE TABLE table_25820584_7 (player VARCHAR, year_s_ VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_25826954_7 WHERE nationality = \"Norway\"",
    "question_en": "Name the name for norway nationality",
    "question_th": "ตั้งชื่อตามสัญชาตินอร์เวย์",
    "context": "CREATE TABLE table_25826954_7 (name VARCHAR, nationality VARCHAR)"
  },
  {
    "answer": "SELECT written_by FROM table_25830834_2 WHERE production_code = \"2J5153\"",
    "question_en": "Who wrote the episode with the production code 2j5153?",
    "question_th": "ใครเป็นคนเขียนตอนด้วยรหัสการผลิต 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_en": "what is the filter when the wavelength is 222mm (k-band)?",
    "question_th": "ตัวกรองคืออะไรเมื่อความยาวคลื่นเป็น 222 มม. (k-band)?",
    "context": "CREATE TABLE table_2583036_1 (filter VARCHAR, wavelength VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(camera) FROM table_2583036_1 WHERE exposures = 53",
    "question_en": "how many times was the exposures 53?",
    "question_th": "เปิดรับแสงกี่ครั้ง 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_en": "how many exposures where there when the total exposure time is 105,000s?",
    "question_th": "จะมีการเปิดรับแสงกี่ครั้งโดยที่ระยะเวลาเปิดรับแสงทั้งหมดคือ 105,000 วินาที",
    "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_en": "what is the camera used when the wavelength is 814nm (i-band)?",
    "question_th": "กล้องอะไรใช้เมื่อความยาวคลื่นเป็น 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_en": "What is the title of the show with director Paul Annett?",
    "question_th": "การแสดงร่วมกับผู้กำกับ 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_en": "What was the title for the Undercard of Stevenson/Bellew?",
    "question_th": "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_en": "What are the titles for the November 9 Super Bantamweight division?",
    "question_th": "รุ่นซูเปอร์แบนตัมเวตวันที่ 9 พฤศจิกายน มีชื่ออะไรบ้าง?",
    "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_en": "How many notes are there for the Devon Alexander vs. Shawn Porter fight?",
    "question_th": "มีโน้ตกี่ตัวสำหรับการต่อสู้ระหว่าง Devon Alexander กับ Shawn Porter",
    "context": "CREATE TABLE table_25840200_1 (notes VARCHAR, fight VARCHAR)"
  },
  {
    "answer": "SELECT division FROM table_25840200_1 WHERE tv = \"HBO PPV\"",
    "question_en": "What division was on HBO PPV?",
    "question_th": "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_en": "Where was the Undercard of Stevenson/Bellew?",
    "question_th": "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_en": "What was the division number for Verona, USA?",
    "question_th": "หมายเลขแผนกของเวโรนา สหรัฐอเมริกา คืออะไร",
    "context": "CREATE TABLE table_25840200_1 (division VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT cvt_hd FROM table_25839957_5 WHERE market = \"Mobile\"",
    "question_en": "What mobile markets have cvt hd?",
    "question_th": "ตลาดมือถือใดบ้างที่มี 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_en": "How many opengl have the ironlake ( clarkdale ) code name?",
    "question_th": "opengl มีชื่อรหัส ironlake (clarkdale) จำนวนเท่าใด",
    "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_en": "What core clocks ( mhz ) have a 21.3 memory bandwidth ( gb/s )?",
    "question_th": "นาฬิกาคอร์ใด ( mhz ) มีแบนด์วิธหน่วยความจำ 21.3 ( 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_en": "What's the minimum number of execution units?",
    "question_th": "จำนวนหน่วยการดำเนินการขั้นต่ำคือเท่าไร?",
    "context": "CREATE TABLE table_25839957_5 (execution_units INTEGER)"
  },
  {
    "answer": "SELECT COUNT(shader_model) FROM table_25839957_5 WHERE core_clock___mhz__ = \"900\"",
    "question_en": "How many shader models have a 900 core clock ( mhz )?",
    "question_th": "มีกี่รุ่นที่มีความเร็วสัญญาณนาฬิกา 900 คอร์ ( 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² = \"2.33\"",
    "question_en": "What is the population for the place with an area of 2.33 km2?",
    "question_th": "พื้นที่ 2.33 ตารางกิโลเมตร มีประชากรเท่าใด",
    "context": "CREATE TABLE table_2588674_1 (population__2000_census__ INTEGER, area_km² VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(region) FROM table_2588674_1 WHERE village = \"Asan-Maina\"",
    "question_en": "How many places named asan-maina?",
    "question_th": "มีกี่แห่งที่ชื่อ อาซัน-ไมนะ?",
    "context": "CREATE TABLE table_2588674_1 (region VARCHAR, village VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(region) FROM table_2588674_1 WHERE village = \"Mongmong-Toto-Maite\"",
    "question_en": "How many places named mongmong-toto-maite?",
    "question_th": "มีกี่แห่งที่ชื่อ มองมง-โตโต้-ไมเต?",
    "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_en": "What is the population density of mongmong-toto-maite?",
    "question_th": "ม้งโตโต้ไมเตมีความหนาแน่นของประชากรเป็นเท่าใด",
    "context": "CREATE TABLE table_2588674_1 (pop_density INTEGER, village VARCHAR)"
  },
  {
    "answer": "SELECT village FROM table_2588674_1 WHERE area_km² = \"27.19\"",
    "question_en": "What village has an area of 27.19 km2?",
    "question_th": "หมู่บ้านใดมีพื้นที่ 27.19 ตารางกิโลเมตร",
    "context": "CREATE TABLE table_2588674_1 (village VARCHAR, area_km² VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_2588674_1 WHERE village = \"Inarajan\"",
    "question_en": "What region is inarajan in?",
    "question_th": "อนาจันอยู่ภาคใด",
    "context": "CREATE TABLE table_2588674_1 (region VARCHAR, village VARCHAR)"
  },
  {
    "answer": "SELECT MAX(pos) FROM table_25887826_17 WHERE avg = \"1.8529\"",
    "question_en": "How many POS when the average is 1.8529?",
    "question_th": "มี POS กี่ตัวเมื่อค่าเฉลี่ยอยู่ที่ 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_en": "How many 07 A points for the team with 1.4902 average?",
    "question_th": "ทีม 07 A แต้มเฉลี่ย 1.4902 กี่แต้ม?",
    "context": "CREATE TABLE table_25887826_17 (avg VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(08 AS _a_pts) FROM table_25887826_17 WHERE avg = \"1.1863\"",
    "question_en": "How many figures for 08 A points for the team with 1.1863 average?",
    "question_th": "08A แต้มของทีมมีค่าเฉลี่ย 1.1863 กี่ตัว?",
    "context": "CREATE TABLE table_25887826_17 (avg VARCHAR)"
  },
  {
    "answer": "SELECT MAX(10 AS _c_pts) FROM table_25887826_17 WHERE total_pts = 39",
    "question_en": "What is the largest number of 10 C points for a team with 39 total points?",
    "question_th": "อะไรคือจำนวนคะแนน C ที่ใหญ่ที่สุดสำหรับทีมที่มีคะแนนรวม 39 คะแนน?",
    "context": "CREATE TABLE table_25887826_17 (total_pts VARCHAR)"
  },
  {
    "answer": "SELECT directed_by FROM table_25851971_1 WHERE us_viewers__million_ = \"4.82\"",
    "question_en": "Who directed the episode with 4.82 million U.S. viewers?",
    "question_th": "ใครเป็นผู้กำกับตอนนี้ด้วยผู้ชม 4.82 ล้านคนในสหรัฐฯ?",
    "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_en": "Who directed the episode that had a production code of 2j5457?",
    "question_th": "ใครกำกับตอนที่มีรหัสการผลิต 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_en": "What episode number was written by Anthony Sparks?",
    "question_th": "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_en": "What was the production code of the episode written by Anthony Sparks?",
    "question_th": "รหัสการผลิตของตอนที่เขียนโดย 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_en": "What episode number was written by Karin Gist?",
    "question_th": "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_en": "Name the leader battle for 4-3 vote",
    "question_th": "ตั้งชื่อศึกผู้นำด้วยคะแนนเสียง 4-3",
    "context": "CREATE TABLE table_25920798_2 (leader_battle VARCHAR, vote VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_25920798_2 WHERE vote = \"4-4\"",
    "question_en": "Name the finish for 4-4",
    "question_th": "ตั้งชื่อเส้นชัยให้ 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_en": "Name the left day 9 finish for eliminated",
    "question_th": "ตั้งชื่อซ้ายวันที่ 9 จบเพื่อตกรอบ",
    "context": "CREATE TABLE table_25920798_2 (eliminated VARCHAR, finish VARCHAR)"
  },
  {
    "answer": "SELECT leader_battle FROM table_25920798_2 WHERE eliminated = \"Plamen\"",
    "question_en": "Name the leader battle for plamen",
    "question_th": "ตั้งชื่อการต่อสู้ของผู้นำเพื่อเพลเมน",
    "context": "CREATE TABLE table_25920798_2 (leader_battle VARCHAR, eliminated VARCHAR)"
  },
  {
    "answer": "SELECT institution FROM table_2589963_1 WHERE women = \"Lady Saints\"",
    "question_en": "What institution is represented by the lady saints?",
    "question_th": "สตรีนักบุญเป็นตัวแทนของสถาบันใด?",
    "context": "CREATE TABLE table_2589963_1 (institution VARCHAR, women VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_2589963_1 WHERE juniors = \"Baby Olympians\"",
    "question_en": "What status of school is the school represented by the baby olympians?",
    "question_th": "โรงเรียนมีสถานภาพใดที่นักกีฬาโอลิมปิกทารกเป็นตัวแทน?",
    "context": "CREATE TABLE table_2589963_1 (status VARCHAR, juniors VARCHAR)"
  },
  {
    "answer": "SELECT MAX(founded) FROM table_2589963_1 WHERE color = \"Green and White\"",
    "question_en": "What year was the school with green and white colors founded?",
    "question_th": "โรงเรียนสีเขียวขาวก่อตั้งเมื่อปีใด",
    "context": "CREATE TABLE table_2589963_1 (founded INTEGER, color VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_2589963_1 WHERE institution = \"Informatics International College\"",
    "question_en": "What status of school is informatics international college?",
    "question_th": "วิทยาลัยนานาชาติสารสนเทศมีสถานะเป็นโรงเรียนอะไร?",
    "context": "CREATE TABLE table_2589963_1 (status VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(denominations__gold_weight_) FROM table_2592308_1 WHERE country = \"Austria\"",
    "question_en": "How many catagories for denominations does Austria have? ",
    "question_th": " ออสเตรียมีกี่หมวดหมู่สำหรับนิกาย?",
    "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_en": "What are all the denominations for China?",
    "question_th": "จีนมีนิกายอะไรบ้าง?",
    "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_en": "what is the name of award when the name of film is sana keithel?",
    "question_th": "รางวัลชื่ออะไรเมื่อชื่อภาพยนตร์คือซานะคีเทล?",
    "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_en": "what is the name of award when the awardee(s) is elangbam natasha?",
    "question_th": "ชื่อรางวัลเมื่อผู้ได้รับรางวัลคือ 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_en": "how many times is the name of film narmeen?",
    "question_th": "นาร์มีนชื่อฟิล์มกี่ครั้ง?",
    "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_en": "what is the language when the name of award is best editing?",
    "question_th": "ชื่อรางวัลตัดต่อได้ดีที่สุดเป็นภาษาอะไร?",
    "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_en": "who are the awardees when the name of award is best agricultural film?",
    "question_th": "ใครคือผู้ได้รับรางวัลเมื่อชื่อรางวัลเป็นภาพยนตร์เกษตรยอดเยี่ยม?",
    "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_en": "what is the language when the awardee is re-recordist : mateen ahmad?",
    "question_th": "ภาษาอะไรเมื่อผู้ได้รับรางวัลเป็นผู้บันทึกซ้ำ : 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_en": "What is the highest Jews and others 1?",
    "question_th": "ชาวยิวที่สูงที่สุดและคนอื่นๆ 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_en": "What is the lowest jews and others 1 for the localities 11?",
    "question_th": "ชาวยิวที่ต่ำที่สุดและคนอื่น ๆ 1 สำหรับท้องที่ 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_en": "What is the arabs when the annual population growth rate is 1.7%?",
    "question_th": "ชาวอาหรับคืออะไรเมื่ออัตราการเติบโตของประชากรต่อปีอยู่ที่ 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_en": "What is the lowest total when arabs is 4000?",
    "question_th": "ยอดรวมต่ำสุดเมื่ออาหรับคือ 4,000 คืออะไร?",
    "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_en": "Who won best actress?",
    "question_th": "ใครได้รับรางวัลนักแสดงนำหญิงยอดเยี่ยม?",
    "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_en": "How many cash prizes were given for the hindi language film jodhaa akbar?",
    "question_th": "ภาพยนตร์ภาษาฮินดีเรื่อง 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_en": "How many films were in hindi?",
    "question_th": "มีภาพยนตร์ภาษาฮินดีกี่เรื่อง?",
    "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_en": "How many films were in assamese?",
    "question_th": "มีภาพยนตร์กี่เรื่องในรัฐอัสสัม?",
    "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_en": "Who won best actor?",
    "question_th": "ใครได้รับรางวัลนักแสดงนำชายยอดเยี่ยม?",
    "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_en": "Name the winner for jan 24",
    "question_th": "ประกาศรายชื่อผู้โชคดีวันที่ 24 ม.ค",
    "context": "CREATE TABLE table_25938117_1 (winner VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(date) FROM table_25938117_1 WHERE tournament = \"Toshiba Classic\"",
    "question_en": "Name the total number of dates for toshiba classic",
    "question_th": "ตั้งชื่อจำนวนวันที่ทั้งหมดสำหรับ toshiba classic",
    "context": "CREATE TABLE table_25938117_1 (date VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_25938117_1 WHERE location = \"Dominican Republic\"",
    "question_en": "Name the tournament for dominican republic",
    "question_th": "ตั้งชื่อการแข่งขันสำหรับสาธารณรัฐโดมินิกัน",
    "context": "CREATE TABLE table_25938117_1 (tournament VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(winner) FROM table_25938117_1 WHERE tournament = \"Allianz Championship\"",
    "question_en": "Name the total number of winners for allianz championship",
    "question_th": "ตั้งชื่อจำนวนผู้ชนะทั้งหมดสำหรับการแข่งขันชิงแชมป์อลิอันซ์",
    "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_en": "Name the 1st prize for senior pga championship",
    "question_th": "ตั้งชื่อรางวัลที่ 1 แชมป์พีจีเออาวุโส",
    "context": "CREATE TABLE table_25938117_1 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_25931938_1 WHERE aggregate = 35",
    "question_en": "What was the place for the celebrity whose aggregate was 35? ",
    "question_th": " สถานที่สำหรับคนดังที่มีอายุรวม 35 ปีคือสถานที่ใด",
    "context": "CREATE TABLE table_25931938_1 (place VARCHAR, aggregate VARCHAR)"
  },
  {
    "answer": "SELECT MIN(dances) FROM table_25931938_1 WHERE celebrity = \"John Barnes\"",
    "question_en": "How many dances did John Barnes have? ",
    "question_th": " John Barnes มีการเต้นรำกี่ครั้ง?",
    "context": "CREATE TABLE table_25931938_1 (dances INTEGER, celebrity VARCHAR)"
  },
  {
    "answer": "SELECT MAX(age) FROM table_25931938_1 WHERE aggregate = 402",
    "question_en": "What is the age of the celebrity who had a 402 aggregate? ",
    "question_th": " ดาราที่มีคะแนนรวม 402 อายุเท่าไหร่?",
    "context": "CREATE TABLE table_25931938_1 (age INTEGER, aggregate VARCHAR)"
  },
  {
    "answer": "SELECT MAX(aggregate) FROM table_25931938_1 WHERE celebrity = \"Ricky Groves\"",
    "question_en": "What was the aggregate for Ricky Groves?",
    "question_th": "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_en": "What was the aggregate for the celebrity who was known for being a singer and had 7 dances?",
    "question_th": "อะไรคือผลรวมของคนดังที่ขึ้นชื่อว่าเป็นนักร้องและเต้นถึง 7 ครั้ง?",
    "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_en": "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?",
    "question_th": "เงื่อนไขในการเข้าถึงมีอะไรบ้าง โดยที่การเข้าถึงโดยใช้บัตรประจำตัวประชาชนของโครเอเชียคือใช่ และระยะเวลาการเข้าพักที่อนุญาตคือเสรีภาพในการเคลื่อนย้าย",
    "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_en": "Can one access the Jersey territory using a Croatian identity card?",
    "question_th": "เราสามารถเข้าถึงดินแดนเจอร์ซีย์โดยใช้บัตรประจำตัวประชาชนโครเอเชียได้หรือไม่",
    "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_en": "What is the fee (if applicable) for Norway?",
    "question_th": "ค่าธรรมเนียม (ถ้ามี) สำหรับนอร์เวย์คือเท่าไร?",
    "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_en": "What is the permitted length of stay in the Jersey territory?",
    "question_th": "ระยะเวลาที่อนุญาตให้อยู่ในดินแดนเจอร์ซีย์คือเท่าไร?",
    "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_en": "Can one access the Faroe Islands using a Croatian identity card?",
    "question_th": "เราสามารถเข้าถึงหมู่เกาะแฟโรโดยใช้บัตรประจำตัวประชาชนโครเอเชียได้หรือไม่",
    "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_en": "What length of stay is permitted in the European Union?",
    "question_th": "อนุญาตให้อยู่ในสหภาพยุโรปได้นานเท่าใด",
    "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_en": "What was the complement for the unit that had 3 off 37 men killed?",
    "question_th": "อะไรคือส่วนเสริมสำหรับหน่วยที่มีผู้เสียชีวิต 3 คนจาก 37 คน?",
    "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_en": "What is the number of wounded figures associated with a complement of 22 off 637 men?",
    "question_th": "จำนวนผู้บาดเจ็บที่เกี่ยวข้องกับชาย 22 คนจาก 637 คนเป็นเท่าใด",
    "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_en": "What is the number of commanders that had 0 off 63 men killed?",
    "question_th": "จำนวนผู้บังคับบัญชาที่มีผู้เสียชีวิต 0 คนจาก 63 คนเป็นเท่าใด",
    "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_en": "What was the complement associated with 0 off 3 men killed and 0 off 2 men wounded?",
    "question_th": "อะไรคือส่วนเสริมที่เกี่ยวข้องกับชาย 0 คนที่ถูกฆ่า 3 คนและชาย 0 คนได้รับบาดเจ็บ 2 คน?",
    "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_en": "How many regions had rainfall infiltration (km 3/year) of 9.3?",
    "question_th": "มีกี่ภูมิภาคที่มีปริมาณน้ำฝนแทรกซึม (กม. 3/ปี) เท่ากับ 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_en": "What was the rainfall by volume in Huetar Atlantico where the rainfall depth (mm/year) was 3527?",
    "question_th": "ปริมาณน้ำฝนโดยปริมาตรใน Huetar Atlantico คือเท่าใด โดยที่ความลึกของฝน (มม./ปี) อยู่ที่ 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_en": "In Pacifico Central where the rainfall by depth (mm/year) was 2801 what was the rainfall by volume?",
    "question_th": "ใน Pacifico Central ซึ่งมีปริมาณฝนโดยความลึก (มม./ปี) อยู่ที่ 2801 ปริมาณน้ำฝนโดยปริมาตรคือเท่าใด",
    "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_en": "In the region where the rainfall by volume (km 3 /year) was 13.2, what was the evapotranspiration (km 3 /year)?",
    "question_th": "ในภูมิภาคที่มีปริมาณฝนโดยปริมาตร (กม. 3 ต่อปี) เท่ากับ 13.2 ค่าคายระเหย (กม. 3 ต่อปี) เป็นเท่าใด",
    "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_en": "In the Central region, what was the infiltration (km 3 /year)?",
    "question_th": "ในภาคกลางมีการแทรกซึมเป็นอย่างไร (กม. 3 ต่อปี)",
    "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_en": "In the Central region, where the land area (km 2) is 8,543.2, what was the rainfall by depth (mm/year)?",
    "question_th": "ในภาคกลาง พื้นที่ (กม. 2) เท่ากับ 8,543.2 มีปริมาณน้ำฝนโดยความลึกเท่าใด (มม./ปี)",
    "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_en": "How many wins did Parsons have in the year where his winnings were $90,700? ",
    "question_th": " Parsons มีชัยชนะกี่ครั้งในปีที่เงินรางวัลของเขาอยู่ที่ 90,700 ดอลลาร์",
    "context": "CREATE TABLE table_2597876_1 (wins INTEGER, winnings VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_2597876_1 WHERE year = 1992",
    "question_en": "What position was Parsons in for 1992? ",
    "question_th": " พาร์สันส์ดำรงตำแหน่งอะไรในปี 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_en": "Who is every young rider classification when Jelle Vanendert is the winner?",
    "question_th": "ใครคือนักบิดรุ่นเยาว์ทุกคนเมื่อ Jelle Vanendert เป็นผู้ชนะ?",
    "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_en": "Who is every young rider classification if combativity award is Yannick Talabardon?",
    "question_th": "ใครคือนักบิดรุ่นเยาว์ทุกคน หากรางวัลด้านการต่อสู้คือ 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_en": "How many mountains classifications when Rui Costa is the winner?",
    "question_th": "รุย คอสต้า เป็นผู้ชนะกี่ลูก?",
    "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_en": "What is every team classification when points classification is Philippe Gilbert if mountains classification is Johnny Hoogerland and stage is less than 9.0?",
    "question_th": "การจัดประเภททีมทุกครั้งจะเป็นอย่างไรเมื่อการจัดประเภทคะแนนคือ Philippe Gilbert หากการจัดประเภทภูเขาคือ Johnny Hoogerland และระยะต่ำกว่า 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_en": "how many million u.s. viewers watched the episode directed by dan lerner?",
    "question_th": "พวกเราผู้ชมดูตอนที่กำกับโดยแดนเลิร์นเนอร์กี่ล้านคน?",
    "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_en": "what is the latest episode in the series that had 16.17 million u.s. viewers?",
    "question_th": "ซีรีย์ล่าสุดที่มีคนดูเรา 16.17 ล้านคนคือตอนไหนคะ?",
    "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_en": "What is the title of the episode with the production code 3x5362?",
    "question_th": "ชื่อเรื่องของตอนที่มีรหัสการผลิต 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_en": "What Nature reserve number was established on 19961220 20.12.1996",
    "question_th": "หมายเลขเขตอนุรักษ์ธรรมชาติใดก่อตั้งขึ้นเมื่อ 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_en": "How many reserves were established on 19740329 29.03.1974?",
    "question_th": "มีการจัดตั้งทุนสำรองจำนวนเท่าใดในวันที่ 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_en": "When was Stellbrookmoor established?",
    "question_th": "Stellbrookmoor ก่อตั้งขึ้นเมื่อใด",
    "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_en": "What town has the reserve with an area of 163,62?",
    "question_th": "เมืองใดมีเขตสงวนซึ่งมีพื้นที่ 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_en": "How many reserves are in Herzogtum Lauenburg with an area of 123,14?",
    "question_th": "แฮร์ซอกทัม เลาเอนบวร์ก มีสำรองกี่แห่ง มีพื้นที่ 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_en": "How many names does nature reserve 54 have?",
    "question_th": "เขตอนุรักษ์ธรรมชาติ 54 มีกี่ชื่อ?",
    "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_en": "Which episode did 18.74 million people tune in?",
    "question_th": "คนดูตอนไหน 18.74 ล้านคน?",
    "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_en": "Which prod code was series 11?",
    "question_th": "รหัสผลิตภัณฑ์ใดคือซีรีส์ 11",
    "context": "CREATE TABLE table_25996938_1 (production_code VARCHAR, no_in_series VARCHAR)"
  },
  {
    "answer": "SELECT MAX(localities) FROM table_26007767_1",
    "question_en": "What is the highest localities?",
    "question_th": "ท้องถิ่นที่สูงที่สุดคืออะไร?",
    "context": "CREATE TABLE table_26007767_1 (localities INTEGER)"
  },
  {
    "answer": "SELECT MIN(arabs) FROM table_26007767_1 WHERE metropolitan_ring = \"Inner Ring 3\"",
    "question_en": "What is the least arabs when the metropolitan ring is inner ring 3?",
    "question_th": "ชาวอาหรับน้อยที่สุดเมื่อวงแหวนเมืองเป็นวงแหวนด้านใน 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²_ = \"2.5\"",
    "question_en": "How many time is the population density (per km²) is 2.5?",
    "question_th": "ความหนาแน่นของประชากร (ต่อ กม.²) คือ 2.5 กี่ครั้ง?",
    "context": "CREATE TABLE table_26007767_1 (localities VARCHAR, population_density__per_km²_ VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(stage) FROM table_26010857_13 WHERE teams_classification = \"Cervélo TestTeam\"",
    "question_en": "What is the number of stages where the teams classification leader is Cervélo Testteam?",
    "question_th": "จำนวนสเตจที่ผู้นำการจัดประเภททีมคือ Cervélo 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_en": "How many stages did Team Sky lead the teams classification?",
    "question_th": "Team Sky เป็นผู้นำในการจัดประเภททีมกี่ขั้นตอน?",
    "context": "CREATE TABLE table_26010857_13 (stage INTEGER, teams_classification VARCHAR)"
  },
  {
    "answer": "SELECT general_classification FROM table_26010857_13 WHERE stage = 3",
    "question_en": "Who leads the general classification in stage 3?",
    "question_th": "ใครเป็นผู้นำการจัดประเภททั่วไปในระยะที่ 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_en": "How many production codes are there for episode number 45?",
    "question_th": "ตอนที่ 45 มีรหัสการผลิตทั้งหมดกี่รหัส?",
    "context": "CREATE TABLE table_2602958_4 (prod_code VARCHAR, no VARCHAR)"
  },
  {
    "answer": "SELECT writer_s_ FROM table_2602958_4 WHERE _number = 6",
    "question_en": "Who wrote episode 6 in season 3?",
    "question_th": "ใครเป็นคนเขียนตอนที่ 6 ในซีซั่น 3?",
    "context": "CREATE TABLE table_2602958_4 (writer_s_ VARCHAR, _number VARCHAR)"
  },
  {
    "answer": "SELECT _number FROM table_2602958_4 WHERE prod_code = 175020",
    "question_en": "Which episodein season 3 had 175020 for a production code?",
    "question_th": "ตอนใดในซีซั่น 3 มี 175020 สำหรับรหัสการผลิต",
    "context": "CREATE TABLE table_2602958_4 (_number VARCHAR, prod_code VARCHAR)"
  },
  {
    "answer": "SELECT writer_s_ FROM table_2602958_4 WHERE no = 45",
    "question_en": "Who wrote episode number 45?",
    "question_th": "ใครเป็นคนเขียนตอนที่ 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_en": "How many viewers in millions for episode number 38?",
    "question_th": "ตอนที่ 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_en": "Who directed the episode with production code 227451?",
    "question_th": "ใครกำกับตอนที่มีรหัสการผลิต 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_en": "What is the original air date for the episode directed by kevin dowling?",
    "question_th": "วันที่ออกอากาศดั้งเดิมของตอนที่กำกับโดยเควิน ดาวลิ่งคือเมื่อใด",
    "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_en": "what is ba - running bear where b - bishop is rn - running stag?",
    "question_th": "ba - หมีวิ่งคืออะไร โดยที่ b - บิชอปคือ rn - วิ่งยอง?",
    "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_en": "what is b - bishop where ab - angry boar is vw - vertical wolf?",
    "question_th": "b - บิชอปคืออะไร โดยที่ ab - หมูป่าโกรธ vw - หมาป่าแนวตั้ง?",
    "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_en": "what is ba - running bear where ab - angry boar is os - ox soldier?",
    "question_th": "ba - หมีวิ่งคืออะไร โดยที่ ab - หมูป่าโกรธคือ os - ทหารวัว?",
    "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_en": "what is b - bishop where bc - beast cadet is gr - great dove?",
    "question_th": "b - บิชอปคืออะไร โดยที่ bc - นักเรียนนายร้อยสัตว์ร้ายคือ gr - นกพิราบผู้ยิ่งใหญ่?",
    "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_en": "what is bb - blind bear where ba - running bear is mf - mountain falcon?",
    "question_th": "BB - หมีตาบอดคืออะไร โดยที่ Ba - หมีวิ่งอยู่ MF - เหยี่ยวภูเขา?",
    "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_en": "what is bb - blind bear where ba - running bear is tc - tile chariot?",
    "question_th": "BB - หมีตาบอดคืออะไร โดยที่ Ba - หมีวิ่งคือ TC - รถม้ากระเบื้อง?",
    "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_en": "What is the minimum die size for an SM count of exactly 2?",
    "question_th": "ขนาดแม่พิมพ์ขั้นต่ำสำหรับจำนวน SM เท่ากับ 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_en": "How many die sizes have a texture of exactly 34?",
    "question_th": "แม่พิมพ์มีกี่ขนาดที่มีพื้นผิวเท่ากับ 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_en": "What model has a launch of September 3, 2010?",
    "question_th": "รุ่นใดที่จะเปิดตัวในวันที่ 3 กันยายน 2553?",
    "context": "CREATE TABLE table_26040604_1 (model VARCHAR, launch VARCHAR)"
  },
  {
    "answer": "SELECT dram_type FROM table_26040604_1 WHERE sm_count = 6",
    "question_en": "What was the DRAM type of an SM Count of 6?",
    "question_th": "ประเภท DRAM ของ SM จำนวน 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_en": "Who wrote the movie positioned at 8 on the list?",
    "question_th": "ใครเป็นคนเขียนบทภาพยนตร์เรื่องนี้อยู่ในอันดับที่ 8 ของรายการ?",
    "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_en": "What district does the road with a MDR number of 47 pass through?",
    "question_th": "ถนนที่มีหมายเลข MDR 47 ผ่านเขตใด",
    "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_en": "What is the MDR number of Rait Charhi Dharamshala?",
    "question_th": "หมายเลข MDR ของ 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_en": "What is the Sr. number of Banikhet Dalhouse Khajiar?",
    "question_th": "พนิเขต ดาลเฮาส์ ขเจียร ซีเนียร์ เบอร์อะไรคะ?",
    "context": "CREATE TABLE table_26036389_1 (sr_no INTEGER, name_of_road VARCHAR)"
  },
  {
    "answer": "SELECT MIN(runs) FROM table_26041144_10",
    "question_en": "What is the smallest number of runs?",
    "question_th": "จำนวนการวิ่งน้อยที่สุดคือเท่าไร?",
    "context": "CREATE TABLE table_26041144_10 (runs INTEGER)"
  },
  {
    "answer": "SELECT MIN(innings) FROM table_26041144_10 WHERE average = \"32.3\"",
    "question_en": "How many innings are there when the average is 32.3?",
    "question_th": "มีกี่อินนิ่งเมื่อค่าเฉลี่ยคือ 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_en": "What was the average when the strike rate is 75.78?",
    "question_th": "ค่าเฉลี่ยเมื่ออัตราการหยุดงานอยู่ที่ 75.78 คืออะไร?",
    "context": "CREATE TABLE table_26041144_10 (average VARCHAR, strike_rate VARCHAR)"
  },
  {
    "answer": "SELECT MAX(catches) FROM table_26041144_16",
    "question_en": "What is the catches maximum number?",
    "question_th": "จำนวนการจับสูงสุดคือเท่าไร?",
    "context": "CREATE TABLE table_26041144_16 (catches INTEGER)"
  },
  {
    "answer": "SELECT MIN(catches) FROM table_26041144_16 WHERE player = \"Hashan Tillakaratne\"",
    "question_en": "If the player is Hashan Tillakaratne, what is the catches minimum?",
    "question_th": "หากผู้เล่นคือ Hashan Tillakaratne การจับขั้นต่ำคือเท่าไหร่?",
    "context": "CREATE TABLE table_26041144_16 (catches INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT period FROM table_26041144_16 WHERE player = \"Hashan Tillakaratne\"",
    "question_en": "what is the period if the player is Hashan Tillakaratne?",
    "question_th": "ถ้าผู้เล่นคือ ฮาชาน ติลลาคารัตเน่ จะเป็นช่วงเวลาไหน?",
    "context": "CREATE TABLE table_26041144_16 (period VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(rank) FROM table_26041144_16 WHERE player = \"Hashan Tillakaratne\"",
    "question_en": "What is the ranktotal number if the Hashan Tillakaratne?",
    "question_th": "ถ้าฮาซัน ติลลาคารัตเนมีอันดับทั้งหมดเท่าไร?",
    "context": "CREATE TABLE table_26041144_16 (rank VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(rank) FROM table_26041144_16 WHERE catches = 131",
    "question_en": "If the catches is 131, what is the rank total number?",
    "question_th": "ถ้าจับได้ 131 แต้มรวมอันดับเท่าไหร่?",
    "context": "CREATE TABLE table_26041144_16 (rank VARCHAR, catches VARCHAR)"
  },
  {
    "answer": "SELECT MAX(burglary) FROM table_26060884_2 WHERE property_crimes = 168630",
    "question_en": "What was the maximum burglary statistics if the property crimes is 168630?",
    "question_th": "สถิติการลักขโมยสูงสุดหากอาชญากรรมต่อทรัพย์สินคือ 168630 คือเท่าใด",
    "context": "CREATE TABLE table_26060884_2 (burglary INTEGER, property_crimes VARCHAR)"
  },
  {
    "answer": "SELECT burglary FROM table_26060884_2 WHERE forcible_rape = 1233",
    "question_en": "How many burglary crimes were committed if the forcible rapes were 1233?",
    "question_th": "มีอาชญากรรมลักทรัพย์เกิดขึ้นกี่ครั้งหากการข่มขืนกระทำชำเราในปี 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_en": "How many vehicle thefts data were recorded if forcible rape is 1232?",
    "question_th": "ข้อมูลการโจรกรรมรถยนต์ถูกบันทึกไว้จำนวนเท่าใด หากการข่มขืนกระทำชำเราคือ 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_en": "How many vehicle theft data were recorded for a year with a population of 4465430?",
    "question_th": "ข้อมูลการโจรกรรมรถยนต์ถูกบันทึกไว้ในหนึ่งปีโดยมีประชากร 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_en": "What was the minimum property crimes stats if the burglary committed was 45350?",
    "question_th": "สถิติอาชญากรรมต่อทรัพย์สินขั้นต่ำคือเท่าใด หากการลักทรัพย์กระทำการคือ 45350",
    "context": "CREATE TABLE table_26060884_2 (property_crimes INTEGER, burglary VARCHAR)"
  },
  {
    "answer": "SELECT average FROM table_26041144_11 WHERE player = \"Kumar Sangakkara\"",
    "question_en": "What was kumar sangakkara's average?",
    "question_th": "กุมาร์ สังกักการะมีค่าเฉลี่ยเท่าไร?",
    "context": "CREATE TABLE table_26041144_11 (average VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_26041144_11 WHERE average = \"36.74\"",
    "question_en": "Who was the player with a 36.74 average?",
    "question_th": "ใครคือผู้เล่นที่มีค่าเฉลี่ย 36.74?",
    "context": "CREATE TABLE table_26041144_11 (player VARCHAR, average VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_26041144_11 WHERE average = \"39.69\"",
    "question_en": "What is the rank of the player with the 39.69 average?",
    "question_th": "นักเตะที่มีค่าเฉลี่ย 39.69 อยู่ในอันดับที่เท่าไหร่?",
    "context": "CREATE TABLE table_26041144_11 (rank VARCHAR, average VARCHAR)"
  },
  {
    "answer": "SELECT MIN(matches) FROM table_26041144_11",
    "question_en": "What is the lowest number of matches for a record holder?",
    "question_th": "จำนวนการแข่งขันที่ต่ำที่สุดสำหรับเจ้าของสถิติคือเท่าใด?",
    "context": "CREATE TABLE table_26041144_11 (matches INTEGER)"
  },
  {
    "answer": "SELECT h264 FROM table_26099252_1 WHERE theora = \"2.3\"",
    "question_en": "When theora is 2.3, how much is the h.264?",
    "question_th": "เมื่อทฤษฎีเป็น 2.3 แล้ว 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_en": "When vp8 ( webm ) is 6.0, how much is the vp9 ( webm )?",
    "question_th": "เมื่อ vp8 ( webm ) เป็น 6.0 แล้ว 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_en": "When vp8 ( webm ) is 4.4, how much is vp9 ( webm )",
    "question_th": "เมื่อ vp8 ( webm ) เป็น 4.4 แล้ว 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_en": "What is the last stable version where the h.264 is 3.0 and vp9 (webm) is no.",
    "question_th": "เวอร์ชันเสถียรล่าสุดคืออะไร โดยที่ h.264 คือ 3.0 และ vp9 (webm) ไม่ใช่",
    "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_en": "When h.264 is 9.0, how much is vp9 ( webm )",
    "question_th": "เมื่อ h.264 เป็น 9.0 แล้ว 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_en": "Name the peletier for systematics being million 1",
    "question_th": "ตั้งชื่อ peletier สำหรับ systematics เป็นล้าน 1",
    "context": "CREATE TABLE table_260938_1 (peletier VARCHAR, systematics VARCHAR)"
  },
  {
    "answer": "SELECT si_prefix FROM table_260938_1 WHERE chuquet = \"thousand\"",
    "question_en": "Name the si prefix for thousand chuquet",
    "question_th": "ตั้งชื่อคำนำหน้า si สำหรับพัน 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_en": "Name the base 10 for peletier for bi llion",
    "question_th": "ตั้งชื่อฐาน 10 ของ peletier สำหรับพันล้าน",
    "context": "CREATE TABLE table_260938_1 (base_10 VARCHAR, peletier VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(peletier) FROM table_260938_1 WHERE shortscale_comparison = \"Billion\"",
    "question_en": "Name the total number of peletier for shortscale comparison billion",
    "question_th": "ตั้งชื่อจำนวนรวมของ peletier สำหรับการเปรียบเทียบขนาดสั้นพันล้าน",
    "context": "CREATE TABLE table_260938_1 (peletier VARCHAR, shortscale_comparison VARCHAR)"
  },
  {
    "answer": "SELECT base_10 FROM table_260938_1 WHERE shortscale_comparison = \"Billion\"",
    "question_en": "Name the base 10 for shortscale comparison for billion",
    "question_th": "ตั้งชื่อฐาน 10 สำหรับการเปรียบเทียบขนาดสั้นสำหรับพันล้าน",
    "context": "CREATE TABLE table_260938_1 (base_10 VARCHAR, shortscale_comparison VARCHAR)"
  },
  {
    "answer": "SELECT branding FROM table_2610582_3 WHERE callsign = \"DWBA-TV\"",
    "question_en": "What is the branding of the callsign DWBA-TV?",
    "question_th": "ตราสินค้าของสัญญาณเรียกขาน 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_en": "What is the station type of DWMC-TV?",
    "question_th": "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_en": "What is the location that has a power of 5kw (10kw ERP)?",
    "question_th": "สถานที่ใดที่มีกำลัง 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_en": "What is the power, in kW, of channel TV-23, callsign DYCG-TV?",
    "question_th": "กำลังของช่อง TV-23, สัญญาณเรียก 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_en": "What's the power for General Santos?",
    "question_th": "พลังของนายพลซานโตสคืออะไร?",
    "context": "CREATE TABLE table_2610582_7 (power__kw_ VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT branding FROM table_2610582_7 WHERE callsign = \"DYTC-FM\"",
    "question_en": "What bran is the callsign dytc-fm?",
    "question_th": "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_en": "What frequency is dxec-fm?",
    "question_th": "dxec-fm ความถี่อะไรครับ?",
    "context": "CREATE TABLE table_2610582_7 (frequency VARCHAR, callsign VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_26108103_2 WHERE rushing_yards = 117",
    "question_en": "Who was the opponent when there was 117 rushing yards?",
    "question_th": "คู่ต่อสู้เมื่อวิ่งได้ 117 หลาคือใคร?",
    "context": "CREATE TABLE table_26108103_2 (opponent VARCHAR, rushing_yards VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_26108103_2",
    "question_en": "What was the earliest year?",
    "question_th": "ปีแรกสุดคืออะไร?",
    "context": "CREATE TABLE table_26108103_2 (year INTEGER)"
  },
  {
    "answer": "SELECT opponent FROM table_26108103_2 WHERE rushing_yards = 81",
    "question_en": "Who was the opponent when there was 81 rushing yards?",
    "question_th": "คู่ต่อสู้เมื่อระยะวิ่ง 81 หลาคือใคร?",
    "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_en": "How many rushing yards where there when the opponent was Indiana and there was 503 passing yards?",
    "question_th": "มีระยะวิ่งกี่หลาเมื่อคู่ต่อสู้คืออินเดียนาและผ่านไปได้ 503 หลา?",
    "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_en": "Who was the opponent when Devin Gardner was the player?",
    "question_th": "คู่ต่อสู้เมื่อเดวิน การ์ดเนอร์เป็นผู้เล่นคือใคร?",
    "context": "CREATE TABLE table_26108103_2 (opponent VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_26124171_1 WHERE team = \"Pole Services\"",
    "question_en": "How many points were scored on pole services?",
    "question_th": "โพลเซอร์วิสได้คะแนนกี่คะแนน?",
    "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_en": "How many teams were in the series championnat de france formula renault 2.0?",
    "question_th": "มีทีมกี่ทีมในซีรีส์ 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_en": "What is the area (km2) for the place with a 2010 population of 153085?",
    "question_th": "พื้นที่ (km2) สำหรับสถานที่ที่มีประชากร 153,085 คนในปี 2010 เป็นเท่าใด",
    "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_en": "How many city/municipalties have an area (km2) of 506.64?",
    "question_th": "มีกี่เมือง/เทศบาลที่มีพื้นที่ (กม.2) เท่ากับ 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_en": "How many places have an area of 409.41 (km2)?",
    "question_th": "มีกี่แห่งที่มีพื้นที่ 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_en": "What day was kibawe created?",
    "question_th": "คิบาเวถูกสร้างขึ้นวันไหน?",
    "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_en": "How many places are named manolo fortich?",
    "question_th": "มีกี่แห่งที่ชื่อมาโนโล ฟอร์ติช?",
    "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_en": "Dallas Burn's draft pick was which position?",
    "question_th": "ดราฟต์ของ Dallas Burn อยู่ตำแหน่งไหน?",
    "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_en": "Who wrote the episode that had 1.08 million U.S. viewers?",
    "question_th": "ใครเป็นคนเขียนตอนที่มีผู้ชม 1.08 ล้านคนในสหรัฐฯ?",
    "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_en": "Who directed episode 11 in the series?",
    "question_th": "ใครเป็นผู้กำกับตอนที่ 11 ในซีรีส์?",
    "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_en": "What episode number in the season had 1.05 million U.S. viewers?",
    "question_th": "หมายเลขตอนใดในซีซันที่มีผู้ชม 1.05 ล้านคนในสหรัฐฯ",
    "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_en": "What is the name of the episode that had 8.51 million viewers?",
    "question_th": "ตอนที่มีผู้ชม 8.51 ล้านคนชื่ออะไร",
    "context": "CREATE TABLE table_26139405_1 (title VARCHAR, viewers__in_millions_ VARCHAR)"
  },
  {
    "answer": "SELECT writer FROM table_26139405_1 WHERE episode__number = 26",
    "question_en": "Who wrote episode 26 in the series?",
    "question_th": "ใครเป็นคนเขียนตอนที่ 26 ของซีรีส์นี้?",
    "context": "CREATE TABLE table_26139405_1 (writer VARCHAR, episode__number VARCHAR)"
  },
  {
    "answer": "SELECT g__μs_km_ FROM table_261642_3 WHERE frequency__hz_ = \"100k\"",
    "question_en": "What is the g (μs/km)when the frequency (hz) is 100k?",
    "question_th": "g (μs/km) คืออะไรเมื่อความถี่ (hz) คือ 100k",
    "context": "CREATE TABLE table_261642_3 (g__μs_km_ VARCHAR, frequency__hz_ VARCHAR)"
  },
  {
    "answer": "SELECT r__ω_km_ FROM table_261642_3 WHERE frequency__hz_ = \"10k\"",
    "question_en": "What is the r (ω/km) when the frequency is 10k?",
    "question_th": "r (ω/km) เป็นเท่าใดเมื่อความถี่เป็น 10k?",
    "context": "CREATE TABLE table_261642_3 (r__ω_km_ VARCHAR, frequency__hz_ VARCHAR)"
  },
  {
    "answer": "SELECT c__nf_km_ FROM table_261642_3 WHERE r__ω_km_ = \"463.59\"",
    "question_en": "What is the c (nf/km) when the r (ω/km) is 463.59?",
    "question_th": "c (nf/km) คืออะไร เมื่อ r (ω/km) เท่ากับ 463.59",
    "context": "CREATE TABLE table_261642_3 (c__nf_km_ VARCHAR, r__ω_km_ VARCHAR)"
  },
  {
    "answer": "SELECT c__nf_km_ FROM table_261642_3 WHERE l__mh_km_ = \"0.6099\"",
    "question_en": "what is the c (nf/km) when the l (mh/km) is 0.6099?",
    "question_th": "c (nf/km) เป็นเท่าใด เมื่อ l (mh/km) เท่ากับ 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__μs_km_ = \"53.205\"",
    "question_en": "what is the frequency (hz) when the g (μs/km) is 53.205?",
    "question_th": "ความถี่ (hz) เป็นเท่าใดเมื่อ g (μs/km) คือ 53.205",
    "context": "CREATE TABLE table_261642_3 (frequency__hz_ VARCHAR, g__μs_km_ VARCHAR)"
  },
  {
    "answer": "SELECT imports FROM table_26160007_1 WHERE country = \"United Arab Emirates\"",
    "question_en": "In the country United Arab Emirates, what is the number of imports?",
    "question_th": "ในประเทศสหรัฐอาหรับเอมิเรตส์ มีการนำเข้าจำนวนเท่าใด",
    "context": "CREATE TABLE table_26160007_1 (imports VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT total_trade FROM table_26160007_1 WHERE exports = \"6,099.06\"",
    "question_en": "Where the number of exports are 6,099.06, what is the total trade?",
    "question_th": "โดยที่ยอดส่งออกอยู่ที่ 6,099.06 ยอดการค้ารวมเท่าไร?",
    "context": "CREATE TABLE table_26160007_1 (total_trade VARCHAR, exports VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_26160007_1 WHERE exports = \"1,278.13\"",
    "question_en": "In which country are there 1,278.13 exports?",
    "question_th": "มีการส่งออกในประเทศใดบ้าง 1,278.13 รายการ?",
    "context": "CREATE TABLE table_26160007_1 (country VARCHAR, exports VARCHAR)"
  },
  {
    "answer": "SELECT exports FROM table_26160007_1 WHERE total_trade = \"14,954.86\"",
    "question_en": "Where the total trade is 14,954.86, what are the exports?",
    "question_th": "โดยที่การค้ารวมอยู่ที่ 14,954.86 ส่งออกอะไรบ้าง?",
    "context": "CREATE TABLE table_26160007_1 (exports VARCHAR, total_trade VARCHAR)"
  },
  {
    "answer": "SELECT total_trade FROM table_26160007_1 WHERE country = \"Switzerland\"",
    "question_en": "In the country Switzerland, what is the total trade?",
    "question_th": "ในประเทศสวิสเซอร์แลนด์มีการค้าทั้งหมดเท่าไร?",
    "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_en": "Where the exports is 13,608.65, what is the total trade?",
    "question_th": "โดยส่งออก 13,608.65 ยอดการค้ารวมเท่าไร?",
    "context": "CREATE TABLE table_26160007_1 (total_trade VARCHAR, exports VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_26144632_1 WHERE dates = \"Jul 8-11\"",
    "question_en": "What is the location for tournament on Jul 8-11?",
    "question_th": "วันที่ 8-11 ก.ค. สถานที่จัดการแข่งขันคือที่ไหน?",
    "context": "CREATE TABLE table_26144632_1 (location VARCHAR, dates VARCHAR)"
  },
  {
    "answer": "SELECT dates FROM table_26144632_1 WHERE location = \"Hokkaidō\" AND prize_fund___￥__ = 150000000",
    "question_en": "What is the date of the tournament at Hokkaidō with prize of ￥150000000?",
    "question_th": "การแข่งขันที่ฮอกไกโดวันที่เท่าไหร่พร้อมเงินรางวัล 150000000 เยน?",
    "context": "CREATE TABLE table_26144632_1 (dates VARCHAR, location VARCHAR, prize_fund___￥__ VARCHAR)"
  },
  {
    "answer": "SELECT prize_fund___￥__ FROM table_26144632_1 WHERE location = \"Ibaraki\"",
    "question_en": "What is the prize for the tournament at Ibaraki?",
    "question_th": "รางวัลสำหรับการแข่งขันที่อิบารากิคืออะไร?",
    "context": "CREATE TABLE table_26144632_1 (prize_fund___￥__ VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(title) FROM table_26150013_1 WHERE original_air_date = \"April 3, 2012\"",
    "question_en": "How many titles are there for the original air date April 3, 2012?",
    "question_th": "วันที่ออกอากาศครั้งแรก 3 เมษายน 2555 มีกี่เรื่อง?",
    "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_en": "What are all of the area where distance is marathon and month held is february",
    "question_th": "พื้นที่ทั้งหมดที่มีระยะทางคือมาราธอนและเดือนที่จัดขึ้นคือเดือนกุมภาพันธ์",
    "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_en": "What's the whole range of united states where road race is ottawa marathon",
    "question_th": "ทั่วทั้งสหรัฐอเมริกาที่การแข่งขันบนท้องถนนคือการวิ่งมาราธอนออตตาวา",
    "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_en": "What race is held in Germany in the month of May? ",
    "question_th": " การแข่งขันใดที่เยอรมนีจัดขึ้นในเดือนพฤษภาคม?",
    "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_en": "How many times a year is the Brighton Marathon held?",
    "question_th": "Brighton Marathon จัดขึ้นปีละกี่ครั้ง?",
    "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_en": "What month is the Paris 20k Road Race held?",
    "question_th": "Paris 20k Road Race จัดขึ้นในเดือนใด",
    "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_en": "How many times a year is the Paris 20k road race held?",
    "question_th": "การแข่งขันบนถนน Paris 20k จัดขึ้นปีละกี่ครั้ง?",
    "context": "CREATE TABLE table_26166836_3 (month_held VARCHAR, road_race VARCHAR)"
  },
  {
    "answer": "SELECT road_race FROM table_26166836_3 WHERE location = \"Omsk\"",
    "question_en": "What is the name of the road race held in Omsk, Russia?",
    "question_th": "การแข่งขันบนถนนที่จัดขึ้นในเมือง Omsk ประเทศรัสเซียมีชื่อว่าอะไร?",
    "context": "CREATE TABLE table_26166836_3 (road_race VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT amman FROM table_26173058_2 WHERE qadisiya = \"2-1\"",
    "question_en": "what is the place where the location is 2-1",
    "question_th": "สถานที่ไหนคือตำแหน่ง 2-1",
    "context": "CREATE TABLE table_26173058_2 (amman VARCHAR, qadisiya VARCHAR)"
  },
  {
    "answer": "SELECT qadisiya FROM table_26173058_2 WHERE × = \"ramtha\"",
    "question_en": "what is the capital where it is ramtha",
    "question_th": "เมืองหลวงอยู่ที่ไหนรามธา",
    "context": "CREATE TABLE table_26173058_2 (qadisiya VARCHAR, × VARCHAR)"
  },
  {
    "answer": "SELECT ahli FROM table_26173058_2 WHERE ramtha = \"1-0\"",
    "question_en": "what is the location where the record is 1-0",
    "question_th": "ตำแหน่งที่บันทึกเป็น 1-0 คืออะไร",
    "context": "CREATE TABLE table_26173058_2 (ahli VARCHAR, ramtha VARCHAR)"
  },
  {
    "answer": "SELECT ramtha FROM table_26173058_2 WHERE ahli = \"1-1\"",
    "question_en": "what is the score where the record is 1-1",
    "question_th": "สกอร์ไหนมีสถิติ 1-1 บ้าง",
    "context": "CREATE TABLE table_26173058_2 (ramtha VARCHAR, ahli VARCHAR)"
  },
  {
    "answer": "SELECT × FROM table_26173058_2 WHERE jeel = \"1-1\" AND ramtha = \"1-1\"",
    "question_en": "what the team where the record is 1-1 and the player is 1-1",
    "question_th": "สิ่งที่ทีมที่บันทึกเป็น 1-1 และผู้เล่นเป็น 1-1",
    "context": "CREATE TABLE table_26173058_2 (× VARCHAR, jeel VARCHAR, ramtha VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(amman) FROM table_26173058_2 WHERE wehdat = \"0-1\"",
    "question_en": "what is the number of teams where the record is 0-1",
    "question_th": "จำนวนทีมที่มีสถิติ 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_en": "Where was the istanbul marathon?",
    "question_th": "อิสตันบูลมาราธอนอยู่ที่ไหน?",
    "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_en": "How long was the great manchester run?",
    "question_th": "แมนเชสเตอร์ผู้ยิ่งใหญ่วิ่งมานานแค่ไหน?",
    "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_en": "In which country was the xiamen international marathon?",
    "question_th": "การแข่งขันวิ่งมาราธอนนานาชาติเซียะเหมินจัดขึ้นที่ประเทศใด",
    "context": "CREATE TABLE table_26166836_1 (country VARCHAR, road_race VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_26166836_1 WHERE road_race = \"Berlin Marathon\"",
    "question_en": "In which city was the berlin marathon?",
    "question_th": "เบอร์ลินมาราธอนจัดขึ้นที่เมืองใด",
    "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_en": "How many races were in fukuoka, japan?",
    "question_th": "มีการแข่งขันกี่ครั้งที่ฟุกุโอกะ ประเทศญี่ปุ่น",
    "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_en": "How many times is the vessel operator canadian coast guard?",
    "question_th": "เจ้าหน้าที่ควบคุมเรือของหน่วยยามฝั่งแคนาดากี่ครั้ง?",
    "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_en": "What is the vessel type for vessel operator Jumbo shipping?",
    "question_th": "เรือประเภทใดสำหรับผู้ควบคุมเรือขนส่งสินค้าขนาดจัมโบ้?",
    "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_en": "Who narrated when the vessel operator is de beers?",
    "question_th": "ใครเล่าเล่าว่าคนเดินเรือคือเดอเบียร์?",
    "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_en": "How many episodes had the production code 66210?",
    "question_th": "รหัสการผลิต 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_en": "How many episodes were directed by james quinn?",
    "question_th": "เจมส์ ควินน์ กำกับกี่ตอน?",
    "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_en": "What is the title of the episode written by daniel sackheim?",
    "question_th": "ตอนที่เขียนโดย 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_en": "What is the lowest brup when long is 94?",
    "question_th": "ค่า brup ต่ำสุดเมื่อค่า long คือ 94 คืออะไร?",
    "context": "CREATE TABLE table_26176081_29 (brup INTEGER, long VARCHAR)"
  },
  {
    "answer": "SELECT MIN(gp) FROM table_26176081_29",
    "question_en": "What is the lowest gp?",
    "question_th": "GP ต่ำสุดคืออะไร?",
    "context": "CREATE TABLE table_26176081_29 (gp INTEGER)"
  },
  {
    "answer": "SELECT MAX(ff) FROM table_26176081_29 WHERE solo = 56",
    "question_en": "What is the highest ff when solo is 56?",
    "question_th": "ff สูงสุดเมื่อโซโลคือ 56 คืออะไร?",
    "context": "CREATE TABLE table_26176081_29 (ff INTEGER, solo VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_26176081_29 WHERE tfl_yds = \"2-2\"",
    "question_en": "What is the name when tfl-yds is 2-2?",
    "question_th": "ชื่ออะไรเมื่อ tfl-yds เป็น 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_en": "What is no-yds when no.-yds is 1-13?",
    "question_th": "no-yds คืออะไร เมื่อ no.-yds คือ 1-13",
    "context": "CREATE TABLE table_26176081_29 (no_yds VARCHAR)"
  },
  {
    "answer": "SELECT MAX(f_laps) FROM table_26178824_1",
    "question_en": "what are the maximum f/laps?",
    "question_th": "f/รอบสูงสุดคือเท่าใด",
    "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_en": "how many wins had series formula renault 2.0 nec and the position is 18th?",
    "question_th": "มีกี่ชัยชนะที่มี series Formula renault 2.0 nec และอันดับที่ 18?",
    "context": "CREATE TABLE table_26178824_1 (wins VARCHAR, series VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT MIN(poles) FROM table_26178824_1",
    "question_en": "what are the minimum poles?",
    "question_th": "เสาขั้นต่ำคือเท่าไร?",
    "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_en": "When was the original air date written by michael s. chernuchin & joe morgenstern?",
    "question_th": "วันที่ออกอากาศเดิมเขียนโดย michael s. เชอร์นูชิน และ โจ มอร์เกนสเติร์น?",
    "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_en": "Who is the directed by when the production code is 67425?",
    "question_th": "ใครกำกับเมื่อรหัสการผลิตคือ 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_en": "How many titles have directors of matthew Penn and number in series of 143?",
    "question_th": "ผู้กำกับของแมทธิว เพนน์ มีทั้งหมดกี่เรื่อง และอยู่ในลำดับที่ 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_en": "How many numbers in series were for the number in season of 8?",
    "question_th": "ตัวเลขในฤดูกาลที่ 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_en": "Who directed k0122?",
    "question_th": "ใครกำกับ 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_en": "Which season had k0104?",
    "question_th": "ฤดูกาลไหนมี 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_en": "What was the airdate of k0120?",
    "question_th": "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_en": "What is the institution with the nickname seahawks?",
    "question_th": "สถาบันอะไรมีชื่อเล่นว่า ซีฮอว์ค?",
    "context": "CREATE TABLE table_261927_1 (institution VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT colors FROM table_261927_1 WHERE nickname = \"Engineers\"",
    "question_en": "What is the colors for the nickname engineers?",
    "question_th": "ชื่อเล่นวิศวกรมีสีอะไร?",
    "context": "CREATE TABLE table_261927_1 (colors VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(institution) FROM table_261927_1 WHERE colors = \"Blue & Gold\"",
    "question_en": "How many have the colors blue & gold?",
    "question_th": "ฟ้ากับทองมีกี่สีคะ?",
    "context": "CREATE TABLE table_261927_1 (institution VARCHAR, colors VARCHAR)"
  },
  {
    "answer": "SELECT institution FROM table_261927_1 WHERE nickname = \"Engineers\"",
    "question_en": "What is the institution with the nickname engineers?",
    "question_th": "สถาบันอะไรมีชื่อเล่นว่าวิศวกร?",
    "context": "CREATE TABLE table_261927_1 (institution VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT enrollment FROM table_261927_1 WHERE colors = \"Green & Black\"",
    "question_en": "What is the enrollment for the colors green & black?",
    "question_th": "สีเขียวและสีดำ การลงทะเบียนคืออะไร?",
    "context": "CREATE TABLE table_261927_1 (enrollment VARCHAR, colors VARCHAR)"
  },
  {
    "answer": "SELECT institution FROM table_261906_2 WHERE location = \"Wilkes-Barre, Pennsylvania\"",
    "question_en": "What institution(s) are located in wilkes-barre, pennsylvania?",
    "question_th": "สถาบันใดบ้างที่ตั้งอยู่ใน wikes-barre, เพนซิลเวเนีย?",
    "context": "CREATE TABLE table_261906_2 (institution VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT MAX(enrollment) FROM table_261906_2 WHERE joined_mac = 1997",
    "question_en": "What is the highest enrollment schools that joined the mac in 1997?",
    "question_th": "โรงเรียนที่มีการลงทะเบียนสูงสุดที่เข้าร่วม Mac ในปี 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_en": "What is the enrollment at delaware valley college?",
    "question_th": "การลงทะเบียนที่วิทยาลัย delaware Valley คืออะไร?",
    "context": "CREATE TABLE table_261906_2 (joined_mac INTEGER, institution VARCHAR)"
  },
  {
    "answer": "SELECT MIN(joined_mac) FROM table_261906_2 WHERE nickname = \"Eagles\"",
    "question_en": "What year did the the school with the nickname eagles join the mac?",
    "question_th": "โรงเรียนที่มีชื่อเล่นว่าอินทรีเข้าร่วมแม็คในปีใด",
    "context": "CREATE TABLE table_261906_2 (joined_mac INTEGER, nickname VARCHAR)"
  },
  {
    "answer": "SELECT institution FROM table_261931_2 WHERE nickname = \"Bobcats\"",
    "question_en": "Which institution's nickname is the Bobcats? ",
    "question_th": " ชื่อเล่นของสถาบันใดคือ Bobcats",
    "context": "CREATE TABLE table_261931_2 (institution VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT enrollment FROM table_261931_2 WHERE location = \"New London, Connecticut\"",
    "question_en": "What is the enrollment at the institution in New London, Connecticut? ",
    "question_th": " การลงทะเบียนที่สถาบันในนิวลอนดอน รัฐคอนเนตทิคัตเป็นอย่างไร",
    "context": "CREATE TABLE table_261931_2 (enrollment VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT joined FROM table_261931_2 WHERE location = \"Lewiston, Maine\"",
    "question_en": "When did the institution located in Lewiston, Maine join the conference? ",
    "question_th": " สถาบันที่ตั้งอยู่ในเมืองลูอิสตัน รัฐเมน เข้าร่วมการประชุมเมื่อใด",
    "context": "CREATE TABLE table_261931_2 (joined VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT institution FROM table_261931_2 WHERE nickname = \"Polar Bears\"",
    "question_en": "Which institution's nickname is the Polar Bears?",
    "question_th": "ชื่อเล่นของสถาบันใดคือหมีขั้วโลก",
    "context": "CREATE TABLE table_261931_2 (institution VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT nickname FROM table_261941_1 WHERE institution = \"Linfield College\"",
    "question_en": "What is the nickname of Linfield College?",
    "question_th": "ชื่อเล่นของวิทยาลัยลินฟิลด์คืออะไร?",
    "context": "CREATE TABLE table_261941_1 (nickname VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT founded FROM table_261941_1 WHERE type = \"Private/Baptist\"",
    "question_en": "When was the private/baptist school founded?",
    "question_th": "โรงเรียนเอกชน/แบ๊บติสก่อตั้งขึ้นเมื่อใด",
    "context": "CREATE TABLE table_261941_1 (founded VARCHAR, type VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(enrollment) FROM table_261941_1 WHERE joined = \"1931, 1949 1\"",
    "question_en": "How many different items appear in the enrollment column that joined in 1931, 1949 1?",
    "question_th": "มีรายการที่แตกต่างกันกี่รายการที่ปรากฏในคอลัมน์การลงทะเบียนที่เข้าร่วมในปี 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_en": "What is the location of the University that joined in 1926, 1996 2?",
    "question_th": "ที่ตั้งของมหาวิทยาลัยที่เข้าร่วมในปี พ.ศ. 2469, 2539 2 อยู่ที่ใด?",
    "context": "CREATE TABLE table_261941_1 (location VARCHAR, joined VARCHAR)"
  },
  {
    "answer": "SELECT MIN(founded) FROM table_261941_1",
    "question_en": "When was the earliest founded university?",
    "question_th": "มหาวิทยาลัยก่อตั้งเร็วที่สุดเมื่อใด",
    "context": "CREATE TABLE table_261941_1 (founded INTEGER)"
  },
  {
    "answer": "SELECT standing FROM table_2619469_1 WHERE goals_against = 130",
    "question_en": "What was the team standing if the won 130 goals against another team?",
    "question_th": "ทีมจะยืนอยู่อะไรหากชนะ 130 ประตูในการเจอกับทีมอื่น?",
    "context": "CREATE TABLE table_2619469_1 (standing VARCHAR, goals_against VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_261954_1 WHERE location = \"Roanoke, Virginia\"",
    "question_en": "What is every type for the location of Roanoke, Virginia?",
    "question_th": "ที่ตั้งของ 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_en": "How many values for joined occur at Guilford College?",
    "question_th": "Guilford College มีค่าเข้าร่วมกี่ค่า?",
    "context": "CREATE TABLE table_261954_1 (joined VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT institution FROM table_261954_1 WHERE nickname = \"Quakers\"",
    "question_en": "What is every institution with the nickname of Quakers?",
    "question_th": "ทุกสถาบันที่มีชื่อเล่นว่าเควกเกอร์คืออะไร?",
    "context": "CREATE TABLE table_261954_1 (institution VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT MIN(joined) FROM table_261954_1",
    "question_en": "What is the least value of joined?",
    "question_th": "ค่าเข้าร่วมน้อยที่สุดคือเท่าไร?",
    "context": "CREATE TABLE table_261954_1 (joined INTEGER)"
  },
  {
    "answer": "SELECT institution FROM table_261954_1 WHERE nickname = \"WildCats\"",
    "question_en": "What is every institution with the nickname of Wildcats?",
    "question_th": "ทุกสถาบันที่มีชื่อเล่นว่า Wildcats คืออะไร?",
    "context": "CREATE TABLE table_261954_1 (institution VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_26199130_1 WHERE production_code = \"2ALF03\"",
    "question_en": "What is the title of the episode with production code 2alf03?",
    "question_th": "ชื่อเรื่องของตอนที่มีรหัสการผลิต 2alf03 คืออะไร?",
    "context": "CREATE TABLE table_26199130_1 (title VARCHAR, production_code VARCHAR)"
  },
  {
    "answer": "SELECT rank__week_ FROM table_26199130_1 WHERE no = 34",
    "question_en": "What was the rank (week) for episode number 34?",
    "question_th": "ตอนที่ 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_en": "What numbered episode had 11.96 million US viewers?",
    "question_th": "ตอนที่มีหมายเลขใดมีผู้ชม 11.96 ล้านคนในสหรัฐฯ",
    "context": "CREATE TABLE table_26199130_1 (no INTEGER, us_viewers__million_ VARCHAR)"
  },
  {
    "answer": "SELECT rank__week_ FROM table_26200084_1 WHERE _number = 19",
    "question_en": "What was the ranking of episode #19?",
    "question_th": "ตอนที่ 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_en": "What was the production code of the episode ranked 28?",
    "question_th": "รหัสการผลิตของตอนที่ 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_en": "What was the title of the episode directed by David Mamet?",
    "question_th": "ตอนที่กำกับโดย 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_en": "What is the production code for the episode that had 18.07 million viewers? ",
    "question_th": " รหัสการผลิตสำหรับตอนที่มีผู้ชม 18.07 ล้านคนคืออะไร?",
    "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_en": "What is the weeks rank for the episode with the production code 1alf05? ",
    "question_th": " ลำดับสัปดาห์สำหรับตอนที่มีรหัสการผลิต 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_en": "How many air dates does the episode with 15.50 million viewers have? ",
    "question_th": " ตอนที่มีผู้ชม 15.50 ล้านคน มีกำหนดออกอากาศกี่วัน?",
    "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_en": "Who wrote the episode with 18.07 million viewers? ",
    "question_th": " ใครเป็นคนเขียนตอนที่มีผู้ชม 18.07 ล้านคน?",
    "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_en": "How many points were scored against the Toronto Rebels?",
    "question_th": "โตรอนโต เรเบลส์ ทำคะแนนได้กี่คะแนน?",
    "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_en": "How many points did the Toronto Downtown Dingos score?",
    "question_th": "Toronto Downtown Dingos ทำคะแนนได้กี่คะแนน?",
    "context": "CREATE TABLE table_26200568_16 (points_for INTEGER, club VARCHAR)"
  },
  {
    "answer": "SELECT losses FROM table_26200568_16 WHERE club = \"Toronto Downtown Dingos\"",
    "question_en": "How many losses does Toronto Downtown Dingos have?",
    "question_th": "Toronto Downtown Dingos มีการสูญเสียกี่ครั้ง?",
    "context": "CREATE TABLE table_26200568_16 (losses VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT percentage FROM table_26200568_16 WHERE points_for = 63",
    "question_en": "What is the percentage listed for the team who scored 63 points?",
    "question_th": "เปอร์เซ็นต์ของทีมที่ทำคะแนนได้ 63 คะแนนเป็นเท่าใด",
    "context": "CREATE TABLE table_26200568_16 (percentage VARCHAR, points_for VARCHAR)"
  },
  {
    "answer": "SELECT MAX(losses) FROM table_26200568_16 WHERE club = \"Central Blues\"",
    "question_en": "How many losses does Central Blues have?",
    "question_th": "เซ็นทรัล บลูส์ แพ้ไปกี่ครั้ง?",
    "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×10 −11\"",
    "question_en": "If the calculated activity (CI) is  4.96×10 −11, what is the specimen weight/size?",
    "question_th": "หากกิจกรรมที่คำนวณได้ (CI) คือ 4.96×10 −11 น้ำหนัก/ขนาดของชิ้นงานทดสอบคือเท่าใด",
    "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_en": "If the specimen weight/size is 1000 g / 8.79 cm, what is the calculated activity?",
    "question_th": "หากน้ำหนัก/ขนาดของชิ้นงานทดสอบคือ 1,000 กรัม / 8.79 ซม. กิจกรรมที่คำนวณได้คืออะไร",
    "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_en": "If the new points were 5760, what is the RK?",
    "question_th": "หากคะแนนใหม่คือ 5760 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_en": "How many times is player Stanislas Wawrinka on the list?",
    "question_th": "สตานิสลาส วาวรินกา มีผู้เล่นอยู่ในรายชื่อกี่ครั้ง?",
    "context": "CREATE TABLE table_26218783_6 (points VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(points) AS won FROM table_26218783_7 WHERE points = 6675",
    "question_en": "how many time was points 6675?",
    "question_th": "6675 กี่ครั้งแล้ว?",
    "context": "CREATE TABLE table_26218783_7 (points VARCHAR)"
  },
  {
    "answer": "SELECT MIN(points) AS won FROM table_26218783_7 WHERE player = \"Victoria Azarenka\"",
    "question_en": "What is the lowest points won from player victoria azarenka?",
    "question_th": "คะแนนต่ำสุดที่ได้รับจากผู้เล่น วิกตอเรีย อซาเรนกา คืออะไร?",
    "context": "CREATE TABLE table_26218783_7 (points INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_26218783_7 WHERE sd = 15",
    "question_en": "What is the status when sd is 15?",
    "question_th": "สถานะเมื่อ sd คือ 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šová\"",
    "question_en": "What is the highest sd when the status is second round lost to iveta benešová?",
    "question_th": "sd สูงสุดคืออะไรเมื่อสถานะเป็นรอบที่สองที่แพ้ให้กับ iveta benešová?",
    "context": "CREATE TABLE table_26218783_7 (sd INTEGER, status VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(founded) FROM table_26218124_1 WHERE stadium = \"Westfalenstadion\"",
    "question_en": "How many clubs were founded in the westfalenstadion stadium?",
    "question_th": "มีกี่สโมสรที่ก่อตั้งขึ้นในสนามกีฬาเวสต์ฟาเลนสตาดิโอน?",
    "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_en": "Which club was originally named hapoel katamon jerusalem f.c.?",
    "question_th": "สโมสรใดเดิมชื่อฮาโปเอล คาตามอน เยรูซาเลม เอฟซี",
    "context": "CREATE TABLE table_26218124_1 (original_club VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(founded) FROM table_26218124_1 WHERE city = \"Belo Horizonte\"",
    "question_en": "How many clubs were founded in belo horizonte?",
    "question_th": "มีกี่สโมสรที่ก่อตั้งขึ้นในเบโลฮอไรซอนเต?",
    "context": "CREATE TABLE table_26218124_1 (founded VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT original_club FROM table_26218124_1 WHERE name = \"Newcastle Falcons\"",
    "question_en": "Which club was originally named the newcastle falcons?",
    "question_th": "สโมสรใดแต่เดิมมีชื่อว่านิวคาสเซิ่ล ฟอลคอนส์",
    "context": "CREATE TABLE table_26218124_1 (original_club VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT MIN(f_laps) FROM table_26222468_1",
    "question_en": "What is the minimum number of f/laps?",
    "question_th": "จำนวน f/รอบขั้นต่ำคือเท่าใด?",
    "context": "CREATE TABLE table_26222468_1 (f_laps INTEGER)"
  },
  {
    "answer": "SELECT COUNT(season) FROM table_26222468_1 WHERE points = \"N/A\"",
    "question_en": "How many seasons have points totals of N/A?",
    "question_th": "มีกี่ฤดูกาลที่มีคะแนนรวม N/A?",
    "context": "CREATE TABLE table_26222468_1 (season VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT MAX(wins) FROM table_26222468_1",
    "question_en": "What is the maximum number of wins?",
    "question_th": "จำนวนชัยชนะสูงสุดคือเท่าใด?",
    "context": "CREATE TABLE table_26222468_1 (wins INTEGER)"
  },
  {
    "answer": "SELECT COUNT(starts) FROM table_2622469_1 WHERE avg_finish = \"17.9\"",
    "question_en": "How many different starts had an average finish of 17.9?",
    "question_th": "มีการออกสตาร์ทที่แตกต่างกันกี่ครั้งและมีค่าเฉลี่ยจบที่ 17.9?",
    "context": "CREATE TABLE table_2622469_1 (starts VARCHAR, avg_finish VARCHAR)"
  },
  {
    "answer": "SELECT wins FROM table_2622469_1 WHERE year = 1983",
    "question_en": "What were the wins of 1983?",
    "question_th": "ชัยชนะในปี 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_en": "Which episodes in season 3 were written by Mark Drop?",
    "question_th": "ตอนใดในซีซั่น 3 ที่เขียนโดย 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_en": "what is the number where the player was jimmy demaret",
    "question_th": "จิมมี่ เดมาเร็ต นักเตะหมายเลขอะไร",
    "context": "CREATE TABLE table_262383_1 (runner_s__up VARCHAR)"
  },
  {
    "answer": "SELECT margin FROM table_262383_1 WHERE runner_s__up = \"Mike Turnesa\"",
    "question_en": "what is the space where the next one was mike turnesa",
    "question_th": "ห้องไหนคนต่อไปคือไมค์ เทิร์นเนซา",
    "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_en": "what is the space where the next winner is skee riegel",
    "question_th": "พื้นที่ที่ผู้ชนะคนต่อไปคือ สกี รีเกล คืออะไร",
    "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_en": "what is the old English name of Saturday? ",
    "question_th": " ชื่อภาษาอังกฤษเก่าของวันเสาร์คืออะไร?",
    "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_en": "how mant different day names in old English were coined from the Latin day name \"dies iovis\"?",
    "question_th": "ชื่อวันที่แตกต่างกันในภาษาอังกฤษเก่าได้รับการประกาศเกียรติคุณจากชื่อวันภาษาละติน \"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_en": "how many different meanings does Wednesday have?",
    "question_th": "วันพุธ มีความหมายต่างกันกี่แบบ?",
    "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æturnesdæg\"",
    "question_en": "what is the English meaning of the old English name \"sæturnesdæg\"?",
    "question_th": "ชื่อภาษาอังกฤษเก่า \"sæturnesdæg\" ความหมายภาษาอังกฤษคืออะไร?",
    "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_en": "what is the meaning of the latin day name \"dies saturni\"?",
    "question_th": "ชื่อวันละติน \"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_en": "Which opponents conference has the result L, 62-10?",
    "question_th": "คอนเฟอเรนซ์คู่ต่อสู้ใดมีผล 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_en": "Who was the opponents head coach with the result L, 56-6?",
    "question_th": "เฮดโค้ชฝ่ายตรงข้ามคือใครที่ผลสกอร์ แอล 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_en": "Who is Charleston Southerns head coach where the result is L, 56-6?-",
    "question_th": "หัวหน้าโค้ชของ Charleston Southerns คือใคร โดยผลการแข่งขันคือ 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_en": "Who played FBS where the result was L, 62-3?",
    "question_th": "ใครเล่น FBS โดยที่ผลเป็น 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_en": "When was alfred university founded?",
    "question_th": "มหาวิทยาลัยอัลเฟรดก่อตั้งขึ้นเมื่อใด",
    "context": "CREATE TABLE table_262476_3 (founded INTEGER, institution VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_262476_1 WHERE institution = \"Bethany College\"",
    "question_en": "Name where bethany college is",
    "question_th": "ชื่อวิทยาลัยเบธานีอยู่ที่ไหน",
    "context": "CREATE TABLE table_262476_1 (location VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_262476_1 WHERE nickname = \"Golden Tornadoes\"",
    "question_en": "Name the location for golden tornadoes",
    "question_th": "ตั้งชื่อสถานที่ที่เกิดพายุทอร์นาโดสีทอง",
    "context": "CREATE TABLE table_262476_1 (location VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(location) FROM table_262476_1 WHERE institution = \"Geneva College\"",
    "question_en": "Name the number of locations for geneva college",
    "question_th": "ตั้งชื่อจำนวนสถานที่ตั้งของวิทยาลัยเจนีวา",
    "context": "CREATE TABLE table_262476_1 (location VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT enrollment FROM table_262476_1 WHERE nickname = \"Tomcats\"",
    "question_en": "Name the enrollment for tomcats",
    "question_th": "ตั้งชื่อการลงทะเบียนสำหรับแมวตัวผู้",
    "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_en": "How many season 4 appearances are there by Mrs. Jennifer Knight?",
    "question_th": "นางเจนนิเฟอร์ ไนท์ ปรากฏตัวในซีซั่น 4 กี่ครั้ง?",
    "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_en": "How many season 3 appearances by Morgan the Dog?",
    "question_th": "Morgan the Dog ปรากฏตัวในซีซั่น 3 กี่ครั้ง?",
    "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_en": "What episode was the first appearance of the character who appears 7 times in season 4?",
    "question_th": "ตอนใดเป็นการปรากฏตัวครั้งแรกของตัวละครที่ปรากฏ 7 ครั้งในซีซั่น 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_en": "How many season 3 appearances by the character played by Stefan Van Ray?",
    "question_th": "ตัวละครที่รับบทโดยสเตฟาน แวน เรย์ปรากฏตัวในซีซั่น 3 กี่ครั้ง?",
    "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_en": "What is the first appearance of the character played by Obdul Reid?",
    "question_th": "การปรากฏตัวครั้งแรกของตัวละครที่รับบทโดย 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_en": "What was the primary conference when joining the cslf for the institution that was founded in 1894",
    "question_th": "การประชุมใหญ่ครั้งแรกเมื่อเข้าร่วม cslf สำหรับสถาบันที่ก่อตั้งขึ้นในปี พ.ศ. 2437 คืออะไร",
    "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_en": "what was the primary conference when joining the csfl for the institution that joined in 2004-05? ",
    "question_th": " การประชุมหลักเมื่อเข้าร่วม csfl สำหรับสถาบันที่เข้าร่วมในปี 2547-2548 คืออะไร",
    "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_en": "How may results had the theme inspirational?",
    "question_th": "ผลลัพธ์อาจสร้างแรงบันดาลใจให้กับธีมได้อย่างไร",
    "context": "CREATE TABLE table_26250151_1 (result VARCHAR, theme VARCHAR)"
  },
  {
    "answer": "SELECT episode FROM table_26250151_1 WHERE original_recording_artist = \"LaVern Baker\"",
    "question_en": "Which episode had Lavern Baker?",
    "question_th": "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_en": "What was the order # or Erma Franklin?",
    "question_th": "คำสั่งซื้อ # หรือ 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_en": "What is the theme for the original artist Alicia Keys?",
    "question_th": "ธีมของศิลปินต้นฉบับ 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_en": "How many times is the original artist Alicia keys?",
    "question_th": "ศิลปินต้นฉบับ อลิเซียคีย์ กี่ครั้งแล้ว?",
    "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_en": "What is the order # for the original artist sarah mclachlan?",
    "question_th": "คำสั่งซื้อ # ของศิลปินต้นฉบับ 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_en": "WHat is the them for the order #2?",
    "question_th": "คำสั่งซื้อ #2 คืออะไร?",
    "context": "CREATE TABLE table_26250145_1 (theme VARCHAR, order__number VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_262495_1 WHERE nickname = \"Pointers\"",
    "question_en": "When pointers are the nickname what is the type?",
    "question_th": "พอยน์เตอร์เป็นชื่อเล่นประเภทไหน?",
    "context": "CREATE TABLE table_262495_1 (type VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_262495_1 WHERE nickname = \"Falcons\"",
    "question_en": "When falcons are the nickname what is the type?",
    "question_th": "เมื่อเหยี่ยวได้รับฉายาว่าเป็นเหยี่ยวชนิดใด?",
    "context": "CREATE TABLE table_262495_1 (type VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT nickname FROM table_262495_1 WHERE undergraduate_enrollment = 9386",
    "question_en": "When 9386 is the undergraduate enrollment what is the nickname?",
    "question_th": "เมื่อ 9386 เป็นการเปิดรับสมัครระดับปริญญาตรี ชื่อเล่นคืออะไร?",
    "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_en": "What was the choice of song where the original artist was Stevie Wonder?",
    "question_th": "อะไรคือตัวเลือกเพลงที่ศิลปินต้นฉบับคือ 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_en": "What was Katie's order number when the theme was The Rolling Stones?",
    "question_th": "หมายเลขคำสั่งซื้อของ Katie คืออะไรเมื่อธีมคือ 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_en": "Who was the original artist of the chosen song when the theme was The Rolling Stones?",
    "question_th": "ใครคือศิลปินต้นฉบับของเพลงที่เลือกเมื่อธีมคือ 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_en": "Who was the original artist of the First solo theme?",
    "question_th": "ใครคือศิลปินดั้งเดิมของเพลงเดี่ยวชุดแรก?",
    "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_en": "What is the number of song choices where the original artist was Bright Eyes?",
    "question_th": "ตัวเลือกเพลงที่ศิลปินต้นฉบับคือ 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_en": "Who was the original artist of the group performance theme?",
    "question_th": "ใครคือศิลปินดั้งเดิมของธีมการแสดงกลุ่ม?",
    "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_en": "What is the order number of the Billboard Hot 100 Hits theme and the original artist was Sixpence None the Richer?",
    "question_th": "หมายเลขคำสั่งซื้อของธีม Billboard Hot 100 Hits และศิลปินดั้งเดิมคือ 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_en": "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?",
    "question_th": "จำนวนสัปดาห์ที่มีเพลงใน Billboard Hot 100 Hits, หมายเลขลำดับ 3 และศิลปินต้นฉบับของ 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_en": "How many joined the Warriors?",
    "question_th": "มีกี่คนที่เข้าร่วม 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_en": "How many joined when the enrollment was 1150 in Sioux City, Iowa?",
    "question_th": "มีผู้เข้าร่วมกี่คนเมื่อลงทะเบียนในปี 1150 ในเมืองซูซิตี รัฐไอโอวา",
    "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_en": "What is Briar Cliff University's nickname?",
    "question_th": "ชื่อเล่นของมหาวิทยาลัย Briar Cliff คืออะไร?",
    "context": "CREATE TABLE table_262508_1 (nickname VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT nickname FROM table_262508_1 WHERE institution = \"Concordia University, Nebraska\"",
    "question_en": "What is the nickname of the institution from Concordia University, Nebraska?",
    "question_th": "ชื่อเล่นของสถาบันจาก 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_en": "Where the week # is Top 12, what is the result?",
    "question_th": "สัปดาห์ # อยู่อันดับ 12 ตรงไหน ผลเป็นอย่างไร?",
    "context": "CREATE TABLE table_26250253_1 (result VARCHAR, week__number VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(result) FROM table_26250253_1 WHERE theme = \"Group Round\"",
    "question_en": "How many results are there with the theme Group Round?",
    "question_th": "มีผลงานรอบแบ่งกลุ่มกี่รายการ?",
    "context": "CREATE TABLE table_26250253_1 (result VARCHAR, theme VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(theme) FROM table_26250253_1 WHERE order__number = \"9\"",
    "question_en": "How many themes are there where the order # is 9?",
    "question_th": "มีกี่ธีมครับ โดยที่ #9 เป็น 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_en": "The order # is what for the week # Top 10?",
    "question_th": "คำสั่งซื้อ # คืออะไรประจำสัปดาห์ # 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_en": "The original artist The Temptations has what week #?",
    "question_th": "ศิลปินต้นฉบับ The Temptations มีสัปดาห์ # อะไร?",
    "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_en": "Name the total number of founded for public and 780 enrollment",
    "question_th": "ระบุจำนวนการก่อตั้งทั้งหมดสำหรับประชาชนและการลงทะเบียน 780",
    "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_en": "Name the founded for school closed in 2005",
    "question_th": "ตั้งชื่อก่อตั้งโรงเรียนปิดทำการในปี พ.ศ. 2548",
    "context": "CREATE TABLE table_262505_1 (founded VARCHAR, current_conference VARCHAR)"
  },
  {
    "answer": "SELECT nickname FROM table_262527_1 WHERE joined = \"1902 1\"",
    "question_en": "what is the nickname that joined 1902 1?",
    "question_th": "ชื่อเล่นที่ร่วม 1902 1 คืออะไร?",
    "context": "CREATE TABLE table_262527_1 (nickname VARCHAR, joined VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_262527_1 WHERE institution = \"Ottawa University\"",
    "question_en": "what type of institution is ottawa university?",
    "question_th": "มหาวิทยาลัยออตตาวาเป็นสถาบันประเภทใด",
    "context": "CREATE TABLE table_262527_1 (type VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(nickname) FROM table_262527_1 WHERE institution = \"Southwestern College\"",
    "question_en": "what is the total number of nicknames for southwestern college?",
    "question_th": "วิทยาลัยตะวันตกเฉียงใต้มีชื่อเล่นทั้งหมดกี่ชื่อ?",
    "context": "CREATE TABLE table_262527_1 (nickname VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_262527_1 WHERE joined = \"1902 5\"",
    "question_en": "what type was joined in 1902 5?",
    "question_th": "ประเภทใดที่เข้าร่วมในปี 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_en": "what is the institution located in north newton, kansas?",
    "question_th": "สถาบันตั้งอยู่ที่นอร์ธนิวตัน รัฐแคนซัสคืออะไร?",
    "context": "CREATE TABLE table_262527_1 (institution VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT institution FROM table_262560_1 WHERE founded = 1920",
    "question_en": "Name the place that was founded in 1920",
    "question_th": "ตั้งชื่อสถานที่ซึ่งก่อตั้งในปี 1920",
    "context": "CREATE TABLE table_262560_1 (institution VARCHAR, founded VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_262560_1 WHERE joined = 2007",
    "question_en": "Name the type that joined 2007",
    "question_th": "ตั้งชื่อประเภทที่เข้าร่วมปี 2550",
    "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_en": "how many series had 6.55 u.s. viewers (million) and were directed by pete michels",
    "question_th": "มีซีรีส์กี่เรื่องที่มีผู้ชม 6.55 คน (ล้านคน) และกำกับโดย Pete Michaels",
    "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_en": "how many series have production code 8acx05",
    "question_th": "มีกี่ซีรีย์ที่มีรหัสการผลิต 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_en": "how many u.s. viewers (million) have seen a production written by chris sheridan & danny smith",
    "question_th": "มีผู้ชมกี่คน (ล้านคน) ที่ดูผลงานที่เขียนโดย 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_en": "which production codes were written by andrew goldberg",
    "question_th": "รหัสการผลิตที่เขียนโดยแอนดรูว์ โกลด์เบิร์ก",
    "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_en": "Which production code had original air dated february20,2011",
    "question_th": "รหัสการผลิตใดมีอากาศเดิมลงวันที่ 20 กุมภาพันธ์ 2554",
    "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_en": "What school joined the conference in 1996-97 and left it in 2011-12?",
    "question_th": "โรงเรียนใดเข้าร่วมการประชุมในปี 1996-97 และลาออกในปี 2011-2012",
    "context": "CREATE TABLE table_262560_2 (institution VARCHAR, joined VARCHAR, left VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_262560_2 WHERE enrollment = 850",
    "question_en": "What location has a school with enrollment of 850?",
    "question_th": "โรงเรียนมีสถานที่ใดที่มีการลงทะเบียน 850 คน?",
    "context": "CREATE TABLE table_262560_2 (location VARCHAR, enrollment VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(location) FROM table_262560_2 WHERE left = \"2002-03\"",
    "question_en": "How many schools left in 2002-03?",
    "question_th": "มีโรงเรียนเหลืออยู่กี่โรงเรียนในปี 2545-2546?",
    "context": "CREATE TABLE table_262560_2 (location VARCHAR, left VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_262560_2 WHERE nickname = \"Pioneers\"",
    "question_en": "Which city has a school where the nickname is Pioneers?",
    "question_th": "เมืองใดมีโรงเรียนที่มีชื่อเล่นว่า Pioneers?",
    "context": "CREATE TABLE table_262560_2 (location VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_262560_2 WHERE nickname = \"Oilers\"",
    "question_en": "What type of school has the nickname the Oilers?",
    "question_th": "โรงเรียนประเภทไหนมีชื่อเล่นว่า Oilers?",
    "context": "CREATE TABLE table_262560_2 (type VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(location) FROM table_262560_2 WHERE nickname = \"Panthers\"",
    "question_en": "How many locations have a school that is nicknamed the Panthers?",
    "question_th": "มีโรงเรียนชื่อเล่นว่า 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_en": "How many sprints classifications were associated with an overall winner of Joaquin Rodriguez?",
    "question_th": "มีกี่ประเภทการวิ่งที่เกี่ยวข้องกับผู้ชนะโดยรวมของ 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_en": "Who led team classification during the stage whose winner was Chris Horner?",
    "question_th": "ใครเป็นผู้นำการจัดประเภททีมในระหว่างรอบซึ่งผู้ชนะคือ 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_en": "Who led sprints classification when Chris Horner led general classification?",
    "question_th": "ใครเป็นผู้นำการจัดประเภทการวิ่งเมื่อ Chris Horner เป็นผู้นำการจัดประเภททั่วไป",
    "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_en": "What are all the report for the Belgian Grand Prix? ",
    "question_th": "รายงานทั้งหมดของ 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_en": "How many winning constructor catagories are there when Mark Webber had the fastest lap? ",
    "question_th": " มีประเภทคอนสตรัคเตอร์ที่ชนะกี่ประเภทเมื่อ Mark Webber มีรอบเร็วที่สุด?",
    "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_en": "Who had the pole position in the Canadian Grand Prix? ",
    "question_th": " ใครเป็นผู้ครองตำแหน่งโพลใน 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_en": "What year was the institution of St. Catharine College founded?",
    "question_th": "วิทยาลัยเซนต์แคทเธอรีนก่อตั้งเมื่อปีใด",
    "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_en": "What is the enrollment for the institution that is located in Lebanon, Tennessee (20,235)?",
    "question_th": "การลงทะเบียนสำหรับสถาบันที่ตั้งอยู่ในเลบานอน รัฐเทนเนสซี (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_en": "What is the location and population of the institution called Bluefield College?",
    "question_th": "ที่ตั้งและจำนวนประชากรของสถาบันที่เรียกว่า 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_en": "How many times was the result is hired by serepisos?",
    "question_th": "เซเรปิซอสจ้างผลลัพธ์กี่ครั้ง?",
    "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_en": "What is the age when the result is fired in week 8",
    "question_th": "อายุเท่าใดจึงจะประกาศผลในสัปดาห์ที่ 8",
    "context": "CREATE TABLE table_26263322_1 (age INTEGER, result VARCHAR)"
  },
  {
    "answer": "SELECT background FROM table_26263322_1 WHERE candidate = \"Daniel Phillips\"",
    "question_en": "What is the background of the candidate daniel phillips?",
    "question_th": "ภูมิหลังของผู้สมัคร แดเนียล ฟิลลิปส์ คืออะไร?",
    "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_en": "How many times was the background self-employed - media agency?",
    "question_th": "เคยมีอาชีพอิสระ-มีเดียเอเจนซี่มาแล้วกี่ครั้ง?",
    "context": "CREATE TABLE table_26263322_1 (candidate VARCHAR, background VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(result) FROM table_26263322_1 WHERE background = \"University Student\"",
    "question_en": "How many times was the background university student?",
    "question_th": "เคยเป็นนักศึกษามหาวิทยาลัยพื้นหลังกี่ครั้ง?",
    "context": "CREATE TABLE table_26263322_1 (result VARCHAR, background VARCHAR)"
  },
  {
    "answer": "SELECT candidate FROM table_26263322_1 WHERE age = 27",
    "question_en": "What is the candidate whose age is 27?",
    "question_th": "ผู้สมัครที่มีอายุ 27 ปีคือใคร?",
    "context": "CREATE TABLE table_26263322_1 (candidate VARCHAR, age VARCHAR)"
  },
  {
    "answer": "SELECT winning_team FROM table_26267607_2 WHERE round = \"6\"",
    "question_en": "In Round 6, who is the winning team?",
    "question_th": "ในรอบที่ 6 ทีมใดเป็นผู้ชนะ?",
    "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öm\" AND circuit = \"circuit Ricardo Tormo , Valencia\"",
    "question_en": "On what date is the winning team Abt Sportsline and pole position Mattias Ekström in the Circuit Ricardo Tormo , Valencia?",
    "question_th": "ทีมผู้ชนะ Abt Sportsline และตำแหน่งโพลโพซิชั่น Mattias Ekström ในสนาม Circuit Ricardo Tormo ที่บาเลนเซียคือวันไหน?",
    "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_en": "Round 1 is in what circuit?",
    "question_th": "รอบ 1 อยู่วงไหนครับ?",
    "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ünchen\"",
    "question_en": "In the circuit Showevent Olympiastadion München, where the winning driver is Bruno Spengler, what is the pole position?",
    "question_th": "ในเซอร์กิต Showevent Olympiastadion München ซึ่งนักแข่งที่ชนะคือ บรูโน สเปนเกลอร์ ตำแหน่งโพลโพซิชั่นอยู่ที่เท่าไร?",
    "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_en": "Where the fastest lap is Mike Rockenfeller, who is the winning driver?",
    "question_th": "Mike Rockenfeller ทำรอบเร็วที่สุดได้ที่ไหน ใครคือนักแข่งที่ชนะ?",
    "context": "CREATE TABLE table_26267607_2 (winning_driver VARCHAR, fastest_lap VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(date) FROM table_26267607_2 WHERE round = \"3\"",
    "question_en": "How many dates are there in round 3?",
    "question_th": "รอบ 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_en": "Name the least series number written by brenda hampton and directed by  burt brinckerhoff",
    "question_th": "ตั้งชื่อซีรี่ส์ที่น้อยที่สุดที่เขียนโดยเบรนดา แฮมป์ตัน และกำกับโดยเบิร์ต บริงเกอร์ฮอฟฟ์",
    "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_en": "Name the original air date for series number 15",
    "question_th": "ตั้งชื่อวันที่ออกอากาศเดิมสำหรับซีรีส์หมายเลข 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_en": "What team was Pearson on when his winnings were $5,200?",
    "question_th": "เพียร์สันอยู่ทีมใดเมื่อเงินรางวัลของเขาอยู่ที่ 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_en": "How many starts did Pearson have when his winnings were $101,438?",
    "question_th": "เพียร์สันออกสตาร์ทได้กี่ครั้งเมื่อเงินรางวัลของเขาอยู่ที่ 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_en": "How many top 10's did Pearson have the year he was in 8th position? ",
    "question_th": " เพียร์สันติดท็อป 10 กี่คนในปีที่เขาอยู่ในอันดับที่ 8",
    "context": "CREATE TABLE table_2626564_2 (top_10 INTEGER, position VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_2626495_1 WHERE written_by = \"Daphne Field\"",
    "question_en": "what is the title of the episode daphne field wrote?",
    "question_th": "ตอนที่ daphne field เขียนชื่ออะไร",
    "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_en": "who directed the episode james clavell wrote?",
    "question_th": "ใครเป็นผู้กำกับตอนที่ James Clavell เขียน?",
    "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_en": "how many times was the episode directed by maury geraghty originally aired? ",
    "question_th": " ตอนที่กำกับโดย Maury Geraghty ออกอากาศครั้งแรกกี่ครั้ง",
    "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_en": "What Film Festival had participants/recipients of Isao Tomita?",
    "question_th": "เทศกาลภาพยนตร์ใดมีผู้เข้าร่วม/ผู้รับ 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_en": "Who was the participant or recipient for the Best Female Actor?",
    "question_th": "ใครคือผู้เข้าร่วมหรือผู้รับรางวัลนักแสดงหญิงยอดเยี่ยม?",
    "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_en": "What date was the participant/recipient  takakazu watanabe?",
    "question_th": "ผู้เข้าร่วม/ผู้รับ ทาคาคาซึ วาตานาเบะ คือวันที่เท่าไหร่?",
    "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_en": "What film festival had the Best Male Actor?",
    "question_th": "เทศกาลภาพยนตร์ใดมีนักแสดงชายยอดเยี่ยม?",
    "context": "CREATE TABLE table_26282750_1 (film_festival VARCHAR, category VARCHAR)"
  },
  {
    "answer": "SELECT category FROM table_26282750_1 WHERE participants_recipients = \"Otōto\"",
    "question_en": "What category was the the participant/recipient  otōto?",
    "question_th": "ผู้เข้าร่วม/ผู้รับ otōto เป็นประเภทใด",
    "context": "CREATE TABLE table_26282750_1 (category VARCHAR, participants_recipients VARCHAR)"
  },
  {
    "answer": "SELECT performance_order FROM table_26267849_11 WHERE artist = \"Velasco Brothers\"",
    "question_en": "Name the performance order of the velasco brothers",
    "question_th": "ตั้งชื่อลำดับการแสดงของพี่น้องเวลัสโก",
    "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_en": "Name the number of semi final results for 12 performance order",
    "question_th": "ตั้งชื่อจำนวนผลการแข่งขันรอบรองชนะเลิศสำหรับลำดับผลงาน 12 รายการ",
    "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_en": "Name the performance order for 2.15%",
    "question_th": "ตั้งชื่อลำดับการปฏิบัติงาน 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_en": "Name the percentage of votes for 3rd finished",
    "question_th": "ระบุเปอร์เซ็นต์ของคะแนนเสียงที่เข้าเส้นชัยเป็นอันดับ 3",
    "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_en": "Name the percentage of votes for violinist",
    "question_th": "ระบุเปอร์เซ็นต์การโหวตของนักไวโอลิน",
    "context": "CREATE TABLE table_26267849_11 (percentage_of_votes VARCHAR, act VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_26267849_2 WHERE age_s_ = \"16\"",
    "question_en": "what are all the hometown where the average age is 16",
    "question_th": "บ้านเกิดทั้งหมดมีอายุเฉลี่ย 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_en": "What is the population in 2011 for the name Beaubassin East?",
    "question_th": "ประชากรในปี 2554 ชื่อ 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_en": "What is every population density if name is Beaubassin East?",
    "question_th": "ความหนาแน่นของประชากรทั้งหมดเป็นเท่าใดหากชื่อ Beaubassin East?",
    "context": "CREATE TABLE table_26321719_1 (population_density VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT area__km²_ FROM table_26321719_1 WHERE population_density = \"100.8\"",
    "question_en": "What is every value for area for population density of 100.8?",
    "question_th": "ทุกค่าของพื้นที่สำหรับความหนาแน่นของประชากร 100.8 คือเท่าใด",
    "context": "CREATE TABLE table_26321719_1 (area__km²_ VARCHAR, population_density VARCHAR)"
  },
  {
    "answer": "SELECT change___percentage_ FROM table_26321719_1 WHERE area__km²_ = \"1835.01\"",
    "question_en": "What is every value for change% for area of 1835.01?",
    "question_th": "ทุกค่าของการเปลี่ยนแปลง% สำหรับพื้นที่ 1835.01 คืออะไร",
    "context": "CREATE TABLE table_26321719_1 (change___percentage_ VARCHAR, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(name) FROM table_26321719_1 WHERE area__km²_ = \"8.12\"",
    "question_en": "How many names correspond to an area of 8.12?",
    "question_th": "พื้นที่ 8.12 มีกี่ชื่อ?",
    "context": "CREATE TABLE table_26321719_1 (name VARCHAR, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT area__km²_ FROM table_26321719_1 WHERE change___percentage_ = \"-3.6\"",
    "question_en": "What is every value for area if change% is -3.6?",
    "question_th": "ทุกค่าของพื้นที่คือเท่าใด หาก%การเปลี่ยนแปลงคือ -3.6",
    "context": "CREATE TABLE table_26321719_1 (area__km²_ VARCHAR, change___percentage_ VARCHAR)"
  },
  {
    "answer": "SELECT hdi_2012 FROM table_26313243_1 WHERE country = \"Dominica\"",
    "question_en": "Name the hdi 2012 for dominica",
    "question_th": "ตั้งชื่อ hdi 2012 สำหรับโดมินิกา",
    "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_en": "Name the fsi 2012 for 42.7 cpi",
    "question_th": "ตั้งชื่อ fsi 2012 เป็น 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_en": "Name the gdp per capita for haiti",
    "question_th": "ตั้งชื่อ GDP ต่อหัวสำหรับเฮติ",
    "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_en": "How many times was lakpa tashi sherpa ( bhu ) w pts 12-5 in round of 32?",
    "question_th": "ลักปา ทาชิ เชอร์ปา ( บู ) ชนะ 12-5 ในรอบ 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_en": "If the quarterfinals was nabil talal ( jor ) l pts 3-3, who was the athlete?",
    "question_th": "ถ้ารอบก่อนรองชนะเลิศคือ นาบิล ทาลาล (จอร์) l แต้ม 3-3 นักกีฬาคนไหนคือ?",
    "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_en": "If the event was bantamweight (-63kg), and the quarterfinals did not advance, then who was in round of 32?",
    "question_th": "หากรายการเป็นรุ่นแบนตั้มเวต (-63 กก.) และรอบก่อนรองชนะเลิศไม่ผ่านเข้ารอบ แล้วใครได้เข้ารอบ 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_en": "If the round of 16 was  yulius fernando ( ina ) l pts 5-6, what was the semifinals?",
    "question_th": "ถ้ารอบ 16 ทีมสุดท้ายคือ ยูลิอุส เฟอร์นันโด (อินา) l แต้ม 5-6 รอบรองชนะเลิศจะเป็นเท่าไหร่?",
    "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_en": "If round of 32 is sawatvilay phimmasone ( lao ) w pts 9-7, what was the event?",
    "question_th": "ถ้ารอบ 32 ทีม สวัทวิไล พิมมะโซน ( ลาว ) แต้ม 9-7 จะเป็นไงบ้าง?",
    "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_en": "What date was the district incumbent Saxby Chambliss elected? ",
    "question_th": " Saxby Chambliss ผู้ดำรงตำแหน่งเขตได้รับเลือกเมื่อใด",
    "context": "CREATE TABLE table_26336739_1 (elected INTEGER, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_26336739_1 WHERE incumbent = \"Bob Barr\"",
    "question_en": "What is the status in the district with the incumbent Bob Barr? ",
    "question_th": " สถานะในเขตอำเภอกับผู้ดำรงตำแหน่ง 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_en": "How many elected catagories are there for the district with Saxby Chambliss as the incumbent? ",
    "question_th": " มีหมวดหมู่ที่ได้รับการเลือกตั้งกี่ประเภทสำหรับเขตที่มี Saxby Chambliss เป็นผู้ดำรงตำแหน่ง",
    "context": "CREATE TABLE table_26336739_1 (elected VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_26336739_1 WHERE elected = 1986",
    "question_en": "What was the result for the district with an election in 1986",
    "question_th": "ผลการเลือกตั้งอำเภอเมื่อปี พ.ศ. 2529 เป็นอย่างไร",
    "context": "CREATE TABLE table_26336739_1 (result VARCHAR, elected VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(party) FROM table_26336739_1 WHERE incumbent = \"Mac Collins\"",
    "question_en": "how many party classifications are there for the incumbent Mac Collins? ",
    "question_th": " 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_en": "For the engine family MaxxForce 11, what is the years produced?",
    "question_th": "สำหรับเครื่องยนต์ตระกูล MaxxForce 11 ผลิตปีไหน?",
    "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_en": "The cylinder layout v8 is produced in what years?",
    "question_th": "โครงร่างกระบอกสูบ v8 ผลิตในปีไหน?",
    "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_en": "The engine family MaxxForce 5\t in the years produced 2007-current, have what cylinder layout?",
    "question_th": "เครื่องยนต์ตระกูล MaxxForce 5 ในปี 2550 ปัจจุบันมีรูปแบบกระบอกสูบอะไรบ้าง?",
    "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_en": "Where the displacement(s) is 10.5L is, what is the engine family?",
    "question_th": "ปริมาตรกระบอกสูบอยู่ที่ 10.5 ลิตร ตระกูลเครื่องยนต์คืออะไร?",
    "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_en": "The displacement(s) 466 cubic inches (7.6L), has what engine family?",
    "question_th": "ความจุกระบอกสูบ 466 ลูกบาศก์นิ้ว (7.6 ลิตร) มีเครื่องยนต์ตระกูลใดบ้าง",
    "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_en": "What is the coinage metal for a KM number of S75?",
    "question_th": "เหรียญกษาปณ์สำหรับหมายเลข KM ของ 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_en": "What is the maximum date for a mintage of 150 and a KM number of S66?",
    "question_th": "จำนวนผลิตสูงสุดที่ 150 และหมายเลข KM ที่ 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_en": "What is the mintage for a location of Sion and a denomination of 00500 500 Francs?",
    "question_th": "ที่ตั้งของ Sion และเหรียญกษาปณ์จำนวน 00500 500 ฟรังก์ ผลิตอยู่ที่เท่าไร?",
    "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_en": "What is the coinage metal for KM numbers of S45?",
    "question_th": "เหรียญกษาปณ์สำหรับเลข KM 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_en": "What is the coinage metal for a location of Fribourg and denomination of 00005 5 Francs?",
    "question_th": "โลหะเหรียญกษาปณ์สำหรับที่ตั้งของฟรีบูร์กและสกุลเงิน 00005 5 ฟรังก์คืออะไร",
    "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_en": "When the under-17 was Antonio Glez, who was the under-13?",
    "question_th": "เมื่อทีมอายุต่ำกว่า 17 ปีคืออันโตนิโอ เกลซ แล้วใครคือทีมอายุต่ำกว่า 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_en": "In the year 2009 who was the under-13?",
    "question_th": "ในปี 2552 ใครคือรุ่นอายุไม่เกิน 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_en": "When Julian Illingworth was the under-19, who was the under-15?",
    "question_th": "เมื่อ Julian Illingworth อายุต่ำกว่า 19 ปี ใครคืออายุต่ำกว่า 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_en": "Who was the under-15 when Moises Galvez\twas the under-17?",
    "question_th": "ใครคือรุ่นอายุต่ำกว่า 15 ปี ในสมัยที่ มอยเซส กัลเวซ อายุต่ำกว่า 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_en": "How many years are there where the the under-15 is Arturo Salazar Martinez and the under-19 is Moises Galvez?",
    "question_th": "กี่ปีแล้วที่นักเตะอายุต่ำกว่า 15 ปีคืออาร์ตูโร ซาลาซาร์ มาร์ติเนซ และอายุต่ำกว่า 19 ปีคือมอยเซส กัลเวซ?",
    "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_en": "When the under-11 was Aly Abou El Einen, who was the under-13?",
    "question_th": "เมื่อเด็กอายุต่ำกว่า 11 ปีคือ อาลี อาบู เอล ไอเนน แล้วใครคืออายุต่ำกว่า 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_en": "What is the election date for those politicians who left office on 1850-11-15?",
    "question_th": "วันเลือกตั้งของนักการเมืองที่ออกจากตำแหน่งในวันที่ 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_en": "What are the election date for elections held in the province of Albacete?",
    "question_th": "วันเลือกตั้งสำหรับการเลือกตั้งที่จัดขึ้นในจังหวัดอัลบาเซเตคือเมื่อใด",
    "context": "CREATE TABLE table_26362472_1 (election_date VARCHAR, province VARCHAR)"
  },
  {
    "answer": "SELECT left_office FROM table_26362472_1 WHERE election_number = 11",
    "question_en": "What is the date in which a politician who left office on 1840-10-11 for a politician whose election number was 11?",
    "question_th": "นักการเมืองที่ออกจากตำแหน่งในวันที่ 10-10-11 สำหรับนักการเมืองที่มีการเลือกตั้งคือวันที่ 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_en": "In how many district has a politician took office on 1844-10-14?",
    "question_th": "นักการเมืองคนหนึ่งเข้ารับตำแหน่งในวันที่ 1844-10-57 ในเขตจำนวนเท่าใด",
    "context": "CREATE TABLE table_26362472_1 (district VARCHAR, took_office VARCHAR)"
  },
  {
    "answer": "SELECT left_office FROM table_26362472_1 WHERE province = \"Seville\"",
    "question_en": "What are the dates of leaving office for politician from the province of Seville?",
    "question_th": "วันที่ออกจากตำแหน่งนักการเมืองจากจังหวัดเซบียาคือเมื่อใด",
    "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_en": "When united arab emirates is the country how many fastest qualifying are there?",
    "question_th": "เมื่อสหรัฐอาหรับเอมิเรตส์เป็นประเทศที่มีการคัดเลือกเร็วที่สุดกี่รายการ?",
    "context": "CREATE TABLE table_26358264_2 (fastest_qualifying VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_26358264_2 WHERE fastest_qualifying = \"Cancelled\"",
    "question_en": "When cancelled is the fastest qualifying where is the location?",
    "question_th": "เมื่อยกเลิกจะเข้าเกณฑ์เร็วที่สุด ที่ตั้งอยู่ที่ไหน?",
    "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_en": "When united arab emirates is the country what is the winning aircraft?",
    "question_th": "เมื่อสหรัฐอาหรับเอมิเรตส์เป็นประเทศใดเครื่องบินที่ชนะรางวัลคืออะไร?",
    "context": "CREATE TABLE table_26358264_2 (winning_aircraft VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT assists FROM table_26360571_2 WHERE opponent = \"Illinois-Chicago\"",
    "question_en": "List the number of assists against illinois-chicago.",
    "question_th": "รายชื่อจำนวนแอสซิสต์ในเกมกับอิลลินอยส์-ชิคาโก",
    "context": "CREATE TABLE table_26360571_2 (assists VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_26360571_2 WHERE date = \"February 15, 2003\"",
    "question_en": "List the opposing team on february 15, 2003.",
    "question_th": "รายชื่อทีมตรงข้ามเมื่อ 15 กุมภาพันธ์ พ.ศ. 2546",
    "context": "CREATE TABLE table_26360571_2 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT rebounds FROM table_26360571_2 WHERE _number = 2",
    "question_en": "List the number of recovers for player #2.",
    "question_th": "ระบุจำนวนการฟื้นตัวของผู้เล่น #2",
    "context": "CREATE TABLE table_26360571_2 (rebounds VARCHAR, _number VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_26360571_2 WHERE date = \"February 22, 1983\"",
    "question_en": "List the opposing team from february 22, 1983.",
    "question_th": "รายชื่อทีมตรงข้ามตั้งแต่วันที่ 22 กุมภาพันธ์ พ.ศ.2526",
    "context": "CREATE TABLE table_26360571_2 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MIN(assists) FROM table_26360571_2",
    "question_en": "List the lowest number of assists.",
    "question_th": "ระบุจำนวนแอสซิสต์ที่น้อยที่สุด",
    "context": "CREATE TABLE table_26360571_2 (assists INTEGER)"
  },
  {
    "answer": "SELECT under_11 FROM table_26368963_2 WHERE under_17 = \"Salma Nassar\"",
    "question_en": "What is every value for Under-11 when value of under-17 is Salma Nassar?",
    "question_th": "มูลค่าของเด็กอายุต่ำกว่า 11 ปีจะมีมูลค่าเท่าใด เมื่อมูลค่าของเด็กอายุต่ำกว่า 17 ปีคือ 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_en": "What is every value for Under-13 when value for Under-15 is Maria Elena Ubina?",
    "question_th": "ทุกค่าสำหรับอายุต่ำกว่า 13 ปีจะเท่ากับเท่าใด เมื่อค่าสำหรับอายุต่ำกว่า 15 ปีคือ 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_en": "What is every value for Under-17 if Under-15 is Maria Elena Ubina?",
    "question_th": "ทุกค่าสำหรับเด็กอายุต่ำกว่า 17 ปีจะเป็นอย่างไร หากอายุต่ำกว่า 15 ปีคือ 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_en": "What is every value for Under-11 if Under-19 is Leong Siu Lynn?",
    "question_th": "มูลค่าทั้งหมดสำหรับเด็กอายุต่ำกว่า 11 ปี จะเท่ากับเท่าใด หากอายุต่ำกว่า 19 ปีคือ เหลียง ซิว ลินน์",
    "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_en": "Who is every Under-15 if Under-11 is Reeham Sedky?",
    "question_th": "อายุต่ำกว่า 15 ปีทุกคนคือใคร ถ้าอายุต่ำกว่า 11 ปีคือ 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_en": "How many couples had a vote percentage of 9.5%?",
    "question_th": "มีคู่รักกี่คู่ที่มีคะแนนโหวต 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_en": "What was the lowest judge rank for danny and frankie?",
    "question_th": "ตำแหน่งผู้พิพากษาต่ำสุดสำหรับแดนนี่และแฟรงกี้คืออะไร?",
    "context": "CREATE TABLE table_26375386_16 (judges INTEGER, couple VARCHAR)"
  },
  {
    "answer": "SELECT couple FROM table_26375386_16 WHERE total = 8",
    "question_en": "What couple had a total of 8?",
    "question_th": "คู่ไหนมีทั้งหมด 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_en": "What is the change in population since 1993 in the region where the % of country's population was 4.2? ",
    "question_th": " การเปลี่ยนแปลงของประชากรตั้งแต่ปี 1993 ในภูมิภาคที่ % ของประชากรของประเทศคือ 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_en": "What is the broadcast are for channel 1?",
    "question_th": "ออกอากาศทางช่อง 1 อะไรบ้าง?",
    "context": "CREATE TABLE table_2638104_1 (broadcast_area VARCHAR, channel VARCHAR)"
  },
  {
    "answer": "SELECT callsign FROM table_2638104_1 WHERE channel = 6",
    "question_en": "What is the call sign for channel 6?",
    "question_th": "สัญญาณเรียกขานของช่อง 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_en": "How many channels are there in the Greater Tokyo area?",
    "question_th": "ในเขตมหานครโตเกียวมีกี่ช่อง",
    "context": "CREATE TABLE table_2638104_1 (channel VARCHAR, broadcast_area VARCHAR)"
  },
  {
    "answer": "SELECT signal_power FROM table_2638104_1 WHERE callsign = \"JOAB-DTV\"",
    "question_en": "What is the signal power for JOAB-DTV?",
    "question_th": "กำลังสัญญาณของ 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_en": "How many times is the voting percentage 10.7%",
    "question_th": "เปอร์เซ็นต์การลงคะแนนเสียงกี่ครั้ง 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_en": "What is the vote percentage for the couple gary and maria?",
    "question_th": "เปอร์เซ็นต์การโหวตของคู่รักแกรี่และมาเรียคือเท่าไร?",
    "context": "CREATE TABLE table_26375386_20 (vote_percentage VARCHAR, couple VARCHAR)"
  },
  {
    "answer": "SELECT couple FROM table_26375386_20 WHERE vote_percentage = \"5.8%\"",
    "question_en": "what couple had a vote percentage of 5.8%?",
    "question_th": "คู่รักคนไหนมีคะแนนโหวต 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_en": "What is the public when the vote percentage is 16.0%",
    "question_th": "สาธารณะคืออะไรเมื่อเปอร์เซ็นต์คะแนนเสียงเป็น 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_en": "How many judges were there when the result is safe with a vote percentage of 10.7%?",
    "question_th": "มีผู้พิพากษากี่คนเมื่อผลออกมาปลอดภัยด้วยคะแนนเสียง 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_en": "How many times was the vote percentage 15.0%?",
    "question_th": "เปอร์เซ็นต์คะแนนเสียง 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_en": "What is the least place when the couple is Keiron & Brianne?",
    "question_th": "สถานที่ใดที่น้อยที่สุดเมื่อคู่รักคือ 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_en": "How many numbers of dances for place 1?",
    "question_th": "อันดับ 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_en": "How many ranks by average when Keiron & Brianne are the couple?",
    "question_th": "โดยเฉลี่ยแล้ว Keiron และ Brianne เป็นคู่รักกันกี่อันดับ?",
    "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_en": "What is every average when number of dances is 1?",
    "question_th": "ค่าเฉลี่ยทุกอย่างเมื่อจำนวนการเต้นรำคือ 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_en": "How many ranks by average for the couple Tana and Stuart?",
    "question_th": "โดยเฉลี่ยแล้วคู่รัก Tana และ 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_en": "Name the rank for mikey and melanie",
    "question_th": "ตั้งชื่อยศสำหรับไมกี้และเมลานี",
    "context": "CREATE TABLE table_26375386_22 (rank VARCHAR, couple VARCHAR)"
  },
  {
    "answer": "SELECT public FROM table_26375386_22 WHERE couple = \"Mikey and Melanie\"",
    "question_en": "Name the public for mikey and melanie",
    "question_th": "ตั้งชื่อให้สาธารณชนเป็นชื่อไมกี้และเมลานี",
    "context": "CREATE TABLE table_26375386_22 (public VARCHAR, couple VARCHAR)"
  },
  {
    "answer": "SELECT judges FROM table_26375386_22 WHERE public = 4",
    "question_en": "Name the judges for 4 public",
    "question_th": "เสนอชื่อกรรมการทั้ง 4 คน",
    "context": "CREATE TABLE table_26375386_22 (judges VARCHAR, public VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(total) FROM table_26375386_22 WHERE public = 3",
    "question_en": "Name the total number for 3 public",
    "question_th": "ตั้งชื่อหมายเลขรวมสำหรับ 3 สาธารณะ",
    "context": "CREATE TABLE table_26375386_22 (total VARCHAR, public VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(director) FROM table_26385848_1 WHERE film_title = \"Eldra\"",
    "question_en": "What is the number of directors for the film title Eldra?",
    "question_th": "จำนวนผู้กำกับสำหรับภาพยนตร์เรื่อง 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_en": "What is the year (ceremony) for the film title Eldra?",
    "question_th": "ปี (พิธี) ของชื่อภาพยนตร์เรื่อง 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_en": "Who is the director for the  film title Eldra?",
    "question_th": "ใครเป็นผู้กำกับภาพยนตร์เรื่อง 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_en": "In the year (ceremony) 1998 (71st), what are all the main languages?",
    "question_th": "ในปี (พิธี) 2541 (71) ภาษาหลักทั้งหมดมีอะไรบ้าง?",
    "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_en": "In the year (ceremony) 2009 (82nd), who are all the directors?",
    "question_th": "ในปี (พิธี) 2552 (ครั้งที่ 82) กรรมการทั้งหมดมีใครบ้าง?",
    "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_en": "In the year (ceremony) 1995 (68th), what is the film title?",
    "question_th": "ในปี(พิธี) พ.ศ. 2538 (ครั้งที่ 68) หนังชื่ออะไร?",
    "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_en": "If the country of Origin is South Africa, who is the primary user?",
    "question_th": "หากประเทศต้นทางคือแอฟริกาใต้ ใครคือผู้ใช้หลัก",
    "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_en": "If the Country of Origin is Denmark and the year of introduction is 1962, what is the primary cartridge?",
    "question_th": "หากประเทศแหล่งกำเนิดสินค้าคือเดนมาร์กและปีที่ผลิตคือปี 1962 ตลับหมึกหลักคืออะไร?",
    "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_en": "How many different years was the name/designation cetme?",
    "question_th": "ชื่อ/ชื่อเรียกต่างกันกี่ปี?",
    "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_en": "If the country of origin is switzerland, what is the name/ designation?",
    "question_th": "หากประเทศต้นทางคือสวิตเซอร์แลนด์ ชื่อ/การกำหนดคืออะไร?",
    "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_en": "How many singles does Lisa Stansfield have?",
    "question_th": "Lisa Stansfield มีซิงเกิ้ลกี่อัน?",
    "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_en": "How many weeks in the top-10 did Beats International have?",
    "question_th": "Beats International อยู่ใน 10 อันดับแรกใช้เวลากี่สัปดาห์?",
    "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_en": "Name the final score for barcelona dragons",
    "question_th": "บอกชื่อคะแนนสุดท้ายของบาร์เซโลน่า ดราก้อนส์",
    "context": "CREATE TABLE table_26401898_2 (final_score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT MIN(week) FROM table_26401898_2 WHERE final_score = \"L 26–42\"",
    "question_en": "Name the least week for  l 26–42",
    "question_th": "ตั้งชื่อสัปดาห์ที่น้อยที่สุดสำหรับ l 26–42",
    "context": "CREATE TABLE table_26401898_2 (week INTEGER, final_score VARCHAR)"
  },
  {
    "answer": "SELECT game_site FROM table_26401898_2 WHERE final_score = \"L 26–42\"",
    "question_en": "Name the game site for  l 26–42",
    "question_th": "ตั้งชื่อไซต์เกมสำหรับ l 26–42",
    "context": "CREATE TABLE table_26401898_2 (game_site VARCHAR, final_score VARCHAR)"
  },
  {
    "answer": "SELECT MIN(attendance) FROM table_26401898_2",
    "question_en": "Name the most attendance",
    "question_th": "ตั้งชื่อผู้เข้าร่วมมากที่สุด",
    "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_en": "Who is the incumbent when the elected year is 2004, the status is re-elected and the party is republican?",
    "question_th": "ใครเป็นผู้ดำรงตำแหน่งเมื่อปีที่ได้รับการเลือกตั้งคือ พ.ศ. 2547 ได้รับการเลือกตั้งใหม่ และพรรครีพับลิกัน?",
    "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_en": "who wrote the episode having joe daniello as director with production code 6ajn05?",
    "question_th": "ใครเป็นคนเขียนตอนที่มี Joe Daniello เป็นผู้กำกับด้วยรหัสการผลิต 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_en": "what title was given to the episode with production code 6ajn08?",
    "question_th": "ตอนที่มีรหัสการผลิต 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_en": "what is the production code of the episode viewed by 5.36 million u.s. people? ",
    "question_th": " รหัสการผลิตของตอนที่มีคนดูอย่างพวกเรา 5.36 ล้านคนเป็นอย่างไรบ้าง?",
    "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_en": "How many cast members had sydney walker as their fresh meat partner?",
    "question_th": "มีนักแสดงกี่คนที่มีซิดนีย์ วอล์คเกอร์เป็นคู่หูเนื้อสดของพวกเขา?",
    "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_en": "What alumni had noor jehangir as their fresh meat partner?",
    "question_th": "ศิษย์เก่าคนไหนที่นูร์ เจอฮังกีร์เป็นคู่เนื้อสดของพวกเขา?",
    "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_en": "What alumni were in rw: cancun as their original season?",
    "question_th": "ศิษย์เก่าคนไหนที่อยู่ใน rw: cancun เป็นฤดูกาลดั้งเดิมของพวกเขา?",
    "context": "CREATE TABLE table_26419467_1 (alumni VARCHAR, original_season VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(age) FROM table_26419467_1 WHERE hometown = \"Portland, OR\"",
    "question_en": "How many people were from portland, or?",
    "question_th": "มีกี่คนที่มาจากพอร์ตแลนด์หรือ?",
    "context": "CREATE TABLE table_26419467_1 (age VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT conference FROM table_26423157_2 WHERE school = \"Tennessee\"",
    "question_en": "What conference is Tennessee?",
    "question_th": "การประชุมเทนเนสซีคืออะไร?",
    "context": "CREATE TABLE table_26423157_2 (conference VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT seed FROM table_26423157_2 WHERE school = \"California\"",
    "question_en": "What seed was California?",
    "question_th": "แคลิฟอร์เนียเป็นเมล็ดพันธุ์อะไร?",
    "context": "CREATE TABLE table_26423157_2 (seed VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT ε__m_−1_cm_−1__ FROM table_26428602_1 WHERE color = \"red\"",
    "question_en": "What is the ε (m −1 cm −1 )  of the red dye?",
    "question_th": "ε (m −1 cm −1 ) ของสีย้อมสีแดงคือเท่าไร?",
    "context": "CREATE TABLE table_26428602_1 (ε__m_−1_cm_−1__ VARCHAR, color VARCHAR)"
  },
  {
    "answer": "SELECT MIN(absorb__nm_) FROM table_26428602_1 WHERE color = \"orange\"",
    "question_en": "How much absorption in nm does the orange dye have?",
    "question_th": "สีย้อมสีส้มมีการดูดซึมได้กี่นาโนเมตร?",
    "context": "CREATE TABLE table_26428602_1 (absorb__nm_ INTEGER, color VARCHAR)"
  },
  {
    "answer": "SELECT ε__m_−1_cm_−1__ FROM table_26428602_1 WHERE color = \"orange\"",
    "question_en": "What is the ε (m −1 cm −1 ) of the orange flourescent dye?",
    "question_th": "ε (m −1 cm −1 ) ของสีย้อมเรืองแสงสีส้มคือเท่าใด",
    "context": "CREATE TABLE table_26428602_1 (ε__m_−1_cm_−1__ VARCHAR, color VARCHAR)"
  },
  {
    "answer": "SELECT MIN(absorb__nm_) FROM table_26428602_1",
    "question_en": "What is the lowest dye absoprtion in nm?",
    "question_th": "การดูดซึมสีย้อมต่ำสุดในหน่วยนาโนเมตรคืออะไร?",
    "context": "CREATE TABLE table_26428602_1 (absorb__nm_ INTEGER)"
  },
  {
    "answer": "SELECT title FROM table_26429771_1 WHERE no_in_season = 8",
    "question_en": "What is the name of chapter 8 of season 4?",
    "question_th": "บทที่ 8 ของซีซั่น 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_en": "How many different production codes are there for the episode with 4.69 million US viewers?",
    "question_th": "มีรหัสการผลิตที่แตกต่างกันกี่รหัสสำหรับตอนที่มีผู้ชม 4.69 ล้านคนในสหรัฐฯ",
    "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_en": "Who was in the 2005 film with the role mark cohen?",
    "question_th": "ใครอยู่ในภาพยนตร์เรื่องปี 2548 ที่มีบทบาทเป็นมาร์คโคเฮน?",
    "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_en": "who was in the 2005 role when the original broadway cast was played by jesse l. martin?",
    "question_th": "ซึ่งอยู่ในบทบาทปี 2005 เมื่อนักแสดงบรอดเวย์ดั้งเดิมรับบทโดยเจสซีแอล มาร์ติน?",
    "context": "CREATE TABLE table_26436_2 (original_broadway_cast VARCHAR)"
  },
  {
    "answer": "SELECT written_by FROM table_26448179_3 WHERE production_code = \"202\"",
    "question_en": "Who wrote the episode that is production code 202?",
    "question_th": "ใครเป็นคนเขียนตอนที่เป็นรหัสการผลิต 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_en": "What title was watched by 3.8 million US viewers?",
    "question_th": "ชื่อเรื่องอะไรที่มีผู้ชม 3.8 ล้านคนในสหรัฐฯ?",
    "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_en": "What season number in the season has production code 210?",
    "question_th": "ฤดูกาลใดในฤดูกาลใดมีรหัสการผลิต 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_en": " He wrote production number 102? ",
    "question_th": "เขาเขียนผลงานหมายเลข 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_en": "What is the title of the episode watched by 3.2 million viewers?",
    "question_th": "ชื่อเรื่องของตอนที่มีผู้ชม 3.2 ล้านคนคืออะไร?",
    "context": "CREATE TABLE table_26448179_4 (title VARCHAR, us_viewers__millions_ VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_26448179_4 WHERE production_code = 305",
    "question_en": "What is the title of the episode with production code 305?",
    "question_th": "ชื่อตอนที่มีรหัสการผลิต 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_en": "How many air dates had 3.2 million viewers?",
    "question_th": "ออกอากาศกี่วันมีผู้ชม 3.2 ล้านคน?",
    "context": "CREATE TABLE table_26448179_4 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR)"
  },
  {
    "answer": "SELECT MAX(production_code) FROM table_26448179_4",
    "question_en": "What is the highest production code?",
    "question_th": "รหัสการผลิตสูงสุดคืออะไร?",
    "context": "CREATE TABLE table_26448179_4 (production_code INTEGER)"
  },
  {
    "answer": "SELECT points FROM table_26454128_9 WHERE athlete = \"Barney Berlinger\"",
    "question_en": "What are the point value(s) for when the athlete was Barney Berlinger?",
    "question_th": "มูลค่าคะแนนเมื่อนักกีฬาคือ 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_en": "What is the total number of times points were listed when the distance was 41.05 metres?",
    "question_th": "จำนวนครั้งทั้งหมดที่ถูกระบุเมื่อระยะทาง 41.05 เมตร เป็นเท่าใด",
    "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_en": "What is the highest rank where the distance is 52.73?",
    "question_th": "อันดับสูงสุดที่ระยะ 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_en": "What is the country(s) where the points equal 723.075?",
    "question_th": "คือประเทศใดที่มีคะแนนเท่ากับ 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_en": "What is the most adjusted points for Great Britain?",
    "question_th": "จุดที่ปรับมากที่สุดสำหรับบริเตนใหญ่คืออะไร?",
    "context": "CREATE TABLE table_26454128_4 (Adjusted INTEGER, country VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_26454128_4 WHERE athlete = \"Paavo Yrjölä\"",
    "question_en": "What is the country of Paavo Yrjölä?",
    "question_th": "Paavo Yrjölä อยู่ที่ประเทศอะไร?",
    "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_en": "Which athlete has a height of 1.87 and is from Sweden?",
    "question_th": "นักกีฬาคนไหนมีส่วนสูง 1.87 และมาจากสวีเดน?",
    "context": "CREATE TABLE table_26454128_4 (athlete VARCHAR, height VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_26454128_7 WHERE athlete = \"Ken Doherty\"",
    "question_en": "Name the country that has ken doherty",
    "question_th": "ตั้งชื่อประเทศที่มีเคน โดเฮอร์ตี้",
    "context": "CREATE TABLE table_26454128_7 (country VARCHAR, athlete VARCHAR)"
  },
  {
    "answer": "SELECT athlete FROM table_26454128_7 WHERE rank = 7",
    "question_en": "Name the athlete for 7 rank",
    "question_th": "ตั้งชื่อนักกีฬาอันดับที่ 7",
    "context": "CREATE TABLE table_26454128_7 (athlete VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(rank) FROM table_26454128_7 WHERE athlete = \"Tom Churchill\"",
    "question_en": "Name the total number of rank for tom churchill",
    "question_th": "ตั้งชื่อจำนวนอันดับรวมของทอม เชอร์ชิลล์",
    "context": "CREATE TABLE table_26454128_7 (rank VARCHAR, athlete VARCHAR)"
  },
  {
    "answer": "SELECT heir FROM table_26460435_5 WHERE monarch = \"Wareru\"",
    "question_en": "Who was the heir when the monarch was Wareru?",
    "question_th": "ใครคือรัชทายาทในสมัยกษัตริย์วาเรรุ?",
    "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_en": "What is the number of monarchs that had Yan Maw la Mon as the heir?",
    "question_th": "พระมหากษัตริย์ที่มีญาณหมอละมอนเป็นรัชทายาทมีกี่พระองค์?",
    "context": "CREATE TABLE table_26460435_5 (monarch VARCHAR, heir VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_26460435_7 WHERE monarch = \"Mingyinyo\"",
    "question_en": "What is the status for the monarch Mingyinyo?",
    "question_th": "พระมหากษัตริย์มิงยินโยมีสถานะอะไร?",
    "context": "CREATE TABLE table_26460435_7 (status VARCHAR, monarch VARCHAR)"
  },
  {
    "answer": "SELECT monarch FROM table_26460435_8 WHERE heir = \"Thado Minsaw\"",
    "question_en": "Who is the monarch with the heir thado minsaw?",
    "question_th": "กษัตริย์กับรัชทายาทธาโด มินซอคือใคร?",
    "context": "CREATE TABLE table_26460435_8 (monarch VARCHAR, heir VARCHAR)"
  },
  {
    "answer": "SELECT written_by FROM table_26464364_1 WHERE directed_by = \"Justin Hartley\"",
    "question_en": "Who are the writers of the episodes directed by Justin Hartley?",
    "question_th": "ใครคือผู้เขียนบทที่กำกับโดย 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_en": "On which date did episode # 18 air in the U.S.?",
    "question_th": "ตอนที่ 18 ออกอากาศในอเมริกาวันไหน?",
    "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_en": "How many million U.S. viewers watched the episode with the production code 3x6004?",
    "question_th": "ผู้ชมในสหรัฐฯ จำนวนกี่ล้านคนดูตอนที่มีรหัสการผลิต 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_en": "List the titles of episodes written by Anne Cofell Saunders.",
    "question_th": "รายชื่อตอนที่เขียนโดย 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_en": "What is the title of the episode directed by Christopher Petry with the production cod 3x6006?",
    "question_th": "ตอนที่กำกับโดย Christopher Petry ชื่อตอนที่มีรหัสการผลิต 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_en": "Who was the incumbent in the Ohio 10 district?",
    "question_th": "ใครเป็นผู้ดำรงตำแหน่งในเขตโอไฮโอ 10",
    "context": "CREATE TABLE table_2646656_3 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_2646656_3 WHERE district = \"Ohio 5\"",
    "question_en": "Who was the incumbent in the Ohio 5 district?",
    "question_th": "ใครเป็นผู้ดำรงตำแหน่งในเขตโอไฮโอ 5?",
    "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_en": "Who were the candidates where the result was retired Republican hold and the incumbent was Philemon Bliss?",
    "question_th": "ใครคือผู้สมัครที่ผลการถือครองของพรรครีพับลิกันเกษียณและผู้ดำรงตำแหน่งคือ 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_en": "How many new conferences are in the NCLL deep south conference?",
    "question_th": "มีการประชุมใหม่กี่ครั้งในการประชุม NCLL ภาคใต้ตอนล่าง",
    "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_en": "What is the nickname at the University of Nebraska at Omaha?",
    "question_th": "ชื่อเล่นของ 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_en": "What location is listed from 2005-2010?",
    "question_th": "ระบุสถานที่ใดตั้งแต่ปี 2548-2553",
    "context": "CREATE TABLE table_26476336_2 (location VARCHAR, years VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_26476336_2 WHERE team_nickname = \"Red Raiders\"",
    "question_en": "Where is the nickname the Red Raiders?",
    "question_th": "ชื่อเล่นว่า 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_en": "What school has the new conference as SELC?",
    "question_th": "โรงเรียนใดมีการประชุมใหม่เป็น 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_en": "What are the years that the new classification was MCLA division i?",
    "question_th": "การจัดประเภทใหม่เป็น 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_en": "Name the colors for north canton",
    "question_th": "ตั้งชื่อสีสำหรับภาคเหนือ",
    "context": "CREATE TABLE table_26466528_1 (colors VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT MAX(join_date) FROM table_26466528_1",
    "question_en": "Name the most join date",
    "question_th": "ตั้งชื่อวันที่เข้าร่วมมากที่สุด",
    "context": "CREATE TABLE table_26466528_1 (join_date INTEGER)"
  },
  {
    "answer": "SELECT MIN(join_date) FROM table_26466528_1",
    "question_en": "Name the least join date",
    "question_th": "ตั้งชื่อวันที่เข้าร่วมน้อยที่สุด",
    "context": "CREATE TABLE table_26466528_1 (join_date INTEGER)"
  },
  {
    "answer": "SELECT location FROM table_26466528_1 WHERE colors = \"Black, Orange\"",
    "question_en": "Name the location for black, orange",
    "question_th": "ตั้งชื่อสถานที่ สีดำ สีส้ม",
    "context": "CREATE TABLE table_26466528_1 (location VARCHAR, colors VARCHAR)"
  },
  {
    "answer": "SELECT join_date FROM table_26466528_1 WHERE location = \"North Canton\"",
    "question_en": "Name when north canton joined",
    "question_th": "ชื่อเมื่อตำบลทางเหนือเข้าร่วม",
    "context": "CREATE TABLE table_26466528_1 (join_date VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(series) FROM table_26473176_1 WHERE position = \"12th\"",
    "question_en": "How many \"series\" were in the 12th \"position?",
    "question_th": "อันดับที่ 12 มี \"ซีรีส์\" กี่เรื่อง?",
    "context": "CREATE TABLE table_26473176_1 (series VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(team) FROM table_26473176_1 WHERE points = 10",
    "question_en": "How many teams were at 10 points?",
    "question_th": "มีกี่ทีมที่ได้ 10 แต้ม?",
    "context": "CREATE TABLE table_26473176_1 (team VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT podiums FROM table_26473176_1 WHERE position = \"12th\"",
    "question_en": "What was the number of podiums in 12th position?",
    "question_th": "จำนวนโพเดียมในตำแหน่งที่ 12 คือเท่าไร?",
    "context": "CREATE TABLE table_26473176_1 (podiums VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(finish) FROM table_2649597_1 WHERE start = \"21.6\"",
    "question_en": "Where did he finish when he started at 21.6?",
    "question_th": "เขาจบที่ไหนเมื่อเริ่มต้นที่ 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_en": "What teams started at 39.1?",
    "question_th": "ทีมไหนออกสตาร์ทที่ 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_en": "Where did they finish in the season when when they won $491,977?",
    "question_th": "พวกเขาจบที่ไหนในฤดูกาลนี้เมื่อพวกเขาได้รับรางวัล 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_en": "How many different genres appear for the Jimi Hendrix Experience?",
    "question_th": "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_en": "Name the title for total viewers on fx+ being 483,000",
    "question_th": "ตั้งชื่อหัวข้อสำหรับผู้ชมทั้งหมดใน fx+ เป็น 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_en": "Name the rank on channel for january 21, 2011",
    "question_th": "ตั้งชื่ออันดับช่องวันที่ 21 มกราคม 2554",
    "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_en": "How many episodes were written by Alexander Woo and directed by Scott Winant?",
    "question_th": "Alexander Woo เขียนบทและกำกับโดย 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_en": "Name the most round for jordan cameron",
    "question_th": "ตั้งชื่อตัวที่กลมที่สุดสำหรับ จอร์แดน คาเมรอน",
    "context": "CREATE TABLE table_26533354_8 (round INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_26533354_8 WHERE player = \"Jordan Cameron\"",
    "question_en": "Name the position for jordan cameron",
    "question_th": "ตั้งชื่อตำแหน่งจอร์แดน คาเมรอน",
    "context": "CREATE TABLE table_26533354_8 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_26533354_8 WHERE player = \"Stanley Havili\"",
    "question_en": "Name the position for stanley havili",
    "question_th": "ตั้งชื่อตำแหน่งสแตนลีย์ ฮาวีลี",
    "context": "CREATE TABLE table_26533354_8 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_26533354_8 WHERE player = \"David Carter\"",
    "question_en": "Name the college for david carter",
    "question_th": "ตั้งชื่อวิทยาลัยสำหรับเดวิด คาร์เตอร์",
    "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_en": "What is the democratic coalation when together we can do more is sergio castro ( pc )?",
    "question_th": "แนวร่วมประชาธิปไตยจะเป็นอย่างไรเมื่อเราร่วมกันทำได้มากกว่านั้นคือเซอร์จิโอ คาสโตร (พีซี)?",
    "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án Norambuena ( UDI )\"",
    "question_en": "What is the independent regional force when alliance is (r) iván norambuena ( udi )?",
    "question_th": "กองกำลังระดับภูมิภาคที่เป็นอิสระคืออะไรเมื่อพันธมิตรคือ (r) iván 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é Alinco ( PPD )\"",
    "question_en": "Who is the together we can do more when democratic coalition is rené alinco ( ppd )?",
    "question_th": "ใครคือผู้ร่วมกันเราจะทำได้มากกว่านี้เมื่อพันธมิตรประชาธิปไตยคือ rené 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_en": "Who is the independent regional force when democratic coalition is (r) jorge tarud ( ppd )?",
    "question_th": "ใครคือพลังระดับภูมิภาคที่เป็นอิสระเมื่อแนวร่วมประชาธิปไตยคือ (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_en": "where together we can do more is gloria mujica ( ph ) what are all the cons.",
    "question_th": "ที่ที่เราสามารถทำได้มากกว่านี้ร่วมกันคือ gloria mujica (ph) ข้อเสียทั้งหมดคืออะไร",
    "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_en": "where democratic coalition is eduardo frei ( pdc ) what are all the alliance",
    "question_th": "โดยที่แนวร่วมประชาธิปไตยคือ eduardo frei (pdc) พันธมิตรทั้งหมดคืออะไร",
    "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_en": " What's the name of the episode associated with Nick production number 342? ",
    "question_th": " ตอนที่เกี่ยวข้องกับนิคหมายเลข 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_en": " What date did season 12 premiere? ",
    "question_th": " ซีซั่น 12 เริ่มฉายวันไหน?",
    "context": "CREATE TABLE table_2655016_4 (original_air_date VARCHAR, season__number VARCHAR)"
  },
  {
    "answer": "SELECT MIN(nick_prod__number) FROM table_2655016_4",
    "question_en": " What is the lowest Nick production number? ",
    "question_th": " หมายเลขการผลิต Nick ต่ำสุดคือเท่าไร?",
    "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_en": "When did the episode originally air with a nick production number of 945?",
    "question_th": "ตอนแรกออกอากาศด้วยหมายเลขการผลิตของนิคที่ 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_en": "What was the latest season with a nick production number of 942?",
    "question_th": "ฤดูกาลล่าสุดที่มีหมายเลขการผลิตนิค 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_en": "Name the metrical equivalence for linha",
    "question_th": "ตั้งชื่อความเท่าเทียมกันทางเมตริกของ 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_en": "Name the equivalence for varas for geometrical pace",
    "question_th": "ตั้งชื่อความเท่าเทียมกันของ varas สำหรับก้าวทางเรขาคณิต",
    "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_en": "Name the subdivides in equivalence for varas 1/5",
    "question_th": "ตั้งชื่อเขตย่อยให้เทียบเท่ากับ วาราส 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 = \"موسم زيتون\"",
    "question_en": "When موسم زيتون is the arabic title when is the year (ceremony)?",
    "question_th": "เมื่อ موسم زيتون เป็นชื่อภาษาอาหรับ เมื่อใดคือปี (พิธี)?",
    "context": "CREATE TABLE table_26555737_1 (year__ceremony_ VARCHAR, arabic_title VARCHAR)"
  },
  {
    "answer": "SELECT english_title FROM table_26555737_1 WHERE arabic_title = \"ملح هذا البحر\"",
    "question_en": "When ملح هذا البحر is the arabic title what is the english title?",
    "question_th": "เมื่อ ملح هذا البحر เป็นชื่อภาษาอาหรับ ชื่อภาษาอังกฤษคืออะไร?",
    "context": "CREATE TABLE table_26555737_1 (english_title VARCHAR, arabic_title VARCHAR)"
  },
  {
    "answer": "SELECT director FROM table_26555737_1 WHERE result = \"Nominee\"",
    "question_en": "When nominee is the result who is the director?",
    "question_th": "เมื่อผู้ได้รับการเสนอชื่อเป็นผลใครเป็นกรรมการ?",
    "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_en": "When  hany abu-assad category:articles with hcards is the director what is the result?",
    "question_th": "เมื่อ hany abu-assad category:articles with hcards เป็นผู้กำกับ ผลลัพธ์จะเป็นอย่างไร?",
    "context": "CREATE TABLE table_26555737_1 (result VARCHAR, director VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(result) FROM table_26555737_1 WHERE year__ceremony_ = \"2012 (85th)\"",
    "question_en": "When 2012 (85th) is the year (ceremony) how many results?",
    "question_th": "เมื่อ พ.ศ. 2555 (ปีที่ 85) เป็นปี (พิธี) ผลมีกี่ผล?",
    "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_en": "When salt of this sea is the english title who is the director?",
    "question_th": "เมื่อเกลือแห่งท้องทะเลนี้มีชื่อภาษาอังกฤษว่าใครเป็นผู้กำกับ?",
    "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_en": "What was the record lowest temperature with a precipitation of 1.71 in.?",
    "question_th": "อุณหภูมิต่ำสุดเป็นประวัติการณ์ โดยมีปริมาณฝน 1.71 นิ้ว คืออะไร?",
    "context": "CREATE TABLE table_26558_1 (record_low VARCHAR, precip VARCHAR)"
  },
  {
    "answer": "SELECT directed_by FROM table_26561498_1 WHERE production_code = 176452",
    "question_en": "who directed and produced 176452?",
    "question_th": "ใครเป็นผู้กำกับและโปรดิวซ์ 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_en": "what is the original air date for julie warner?",
    "question_th": "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_en": "what was written by alex carter?",
    "question_th": "อเล็กซ์ คาร์เตอร์เขียนว่าอะไร?",
    "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_en": "Who is the patient portrayer of the episode with the production code 3T5004?",
    "question_th": "ใครคือผู้แสดงภาพผู้ป่วยในตอนที่มีรหัสการผลิต 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_en": "The episode with the no. 54, directed by Charles Haid, is written by who?",
    "question_th": "ตอนที่ไม่มี 54 กำกับโดย Charles Haid เขียนโดยใคร?",
    "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_en": "How many are directed by episodes with the production code 3T5009?",
    "question_th": "มีกี่ตอนที่มีรหัสการผลิต 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_en": "When was the first UK broadcast for episode 9?",
    "question_th": "ตอนที่ 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_en": "When was the first UK broadcast for the episode with an official TNS Gallup rating of 1575000?",
    "question_th": "การออกอากาศในสหราชอาณาจักรครั้งแรกสำหรับตอนนี้ด้วยเรตติ้งอย่างเป็นทางการของ TNS Gallup ที่ 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_en": "When was the first UK broadcast when the official Barb ratings was 1085000?",
    "question_th": "ออกอากาศในสหราชอาณาจักรครั้งแรกเมื่อไหร่เมื่อเรตติ้งของ Barb อย่างเป็นทางการอยู่ที่ 1085,000?",
    "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_en": "Who is the writer with the ratings 14.8?",
    "question_th": "ใครคือคนเขียนที่มีเรตติ้ง 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_en": "What is the original air date for the writer tanaka shinichi?",
    "question_th": "ผู้เขียน ทานากะ ชินิจิ ออกอากาศตอนแรกเมื่อใด",
    "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_en": "What is the ratings for the original air date may 25, 2010 22.00 - 22.54?",
    "question_th": "เรตติ้งเดิม ออกอากาศวันที่ 25 พฤษภาคม 2553 เวลา 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_en": "What was the ratings for episode 11?",
    "question_th": "เรตติ้งตอนที่ 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_en": "Who was the outgoing manager of the team whose incoming manager was Dougie Freedman?",
    "question_th": "ใครคือผู้จัดการทีมที่กำลังจะลาออกซึ่งมีผู้จัดการคนใหม่คือ 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_en": "What was the table position for the team whose outgoing manager was Brian Laws?",
    "question_th": "ตำแหน่งในตารางของทีมที่มีผู้จัดการทีมคือ 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_en": "How many incoming managers did Burnley have?",
    "question_th": "เบิร์นลีย์มีผู้จัดการทีมเข้ามากี่คน?",
    "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_en": "What was the manner of departure for the team whose incoming manager was George Burley?",
    "question_th": "ลักษณะการจากไปของทีมซึ่งมีผู้จัดการทีมคนใหม่คือจอร์จ เบอร์ลีย์เป็นอย่างไร?",
    "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ía / Bos días\"",
    "question_en": "What is the Galician (reintegrationist) word of the Galician (Official) is bo día / bos días?",
    "question_th": "คำว่า Galician (reintegrationist) ของคำว่า Galician (Official) คืออะไร bo día / bos días?",
    "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_en": "What is the Galician (reintegrationist) word of the Galician (Official) is adeus*?",
    "question_th": "คำว่ากาลิเซีย (ผู้กลับคืนสู่สังคม) ของกาลิเซีย (ทางการ) คืออะไร adeus*?",
    "context": "CREATE TABLE table_26614365_5 (galician___reintegrationist__ VARCHAR, galician___official__ VARCHAR)"
  },
  {
    "answer": "SELECT portuguese FROM table_26614365_5 WHERE english = \"Grandfather\"",
    "question_en": "What is the Portuguese word for the English word 'grandfather'?",
    "question_th": "คำภาษาโปรตุเกสสำหรับคำว่า 'ปู่' ในภาษาอังกฤษคืออะไร?",
    "context": "CREATE TABLE table_26614365_5 (portuguese VARCHAR, english VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(spanish) FROM table_26614365_5 WHERE portuguese = \"Bem-vindo\"",
    "question_en": "How many Spanish word is there for the Portuguese bem-vindo?",
    "question_th": "bem-vindo ภาษาโปรตุเกสมีกี่คำ?",
    "context": "CREATE TABLE table_26614365_5 (spanish VARCHAR, portuguese VARCHAR)"
  },
  {
    "answer": "SELECT portuguese FROM table_26614365_5 WHERE english = \"Welcome\"",
    "question_en": "What is the Portuguese word for the English word 'welcome'?",
    "question_th": "คำภาษาโปรตุเกสสำหรับคำว่า 'ยินดีต้อนรับ' ในภาษาอังกฤษคืออะไร?",
    "context": "CREATE TABLE table_26614365_5 (portuguese VARCHAR, english VARCHAR)"
  },
  {
    "answer": "SELECT gender FROM table_26615633_3 WHERE species = \"Asian black bear\"",
    "question_en": "what gender has an asian black bear?",
    "question_th": "หมีดำเอเชียมีเพศอะไร?",
    "context": "CREATE TABLE table_26615633_3 (gender VARCHAR, species VARCHAR)"
  },
  {
    "answer": "SELECT sweet FROM table_26615633_3 WHERE voice_actor = \"Saki Fujita\"",
    "question_en": "what is the sweet for voice actor saki fujita?",
    "question_th": "อะไรคือสิ่งที่น่ารักสำหรับนักพากย์ ซากิ ฟูจิตะ?",
    "context": "CREATE TABLE table_26615633_3 (sweet VARCHAR, voice_actor VARCHAR)"
  },
  {
    "answer": "SELECT gender FROM table_26615633_3 WHERE species = \"Holland Lop\"",
    "question_en": "whatis the gender wher ethe species is holland lop?",
    "question_th": "ฮอลแลนด์ลอปเป็นสายพันธุ์อะไร?",
    "context": "CREATE TABLE table_26615633_3 (gender VARCHAR, species VARCHAR)"
  },
  {
    "answer": "SELECT media_debut FROM table_26615633_3 WHERE species = \"Asian black bear\"",
    "question_en": "what is the media debut for the asian black bear?",
    "question_th": "สื่อเปิดตัวหมีดำเอเชียคืออะไร?",
    "context": "CREATE TABLE table_26615633_3 (media_debut VARCHAR, species VARCHAR)"
  },
  {
    "answer": "SELECT spanish FROM table_26614365_1 WHERE central = \"cas [ˈkas]\"",
    "question_en": "What is the Spanish word for cas [ˈkas]?",
    "question_th": "cas [ˈkas] เป็นคำภาษาสเปนว่าอะไร?",
    "context": "CREATE TABLE table_26614365_1 (spanish VARCHAR, central VARCHAR)"
  },
  {
    "answer": "SELECT eastern FROM table_26614365_1 WHERE english = \"light\"",
    "question_en": "What is the eastern word for \"light\"?",
    "question_th": "คำภาษาตะวันออกสำหรับ \"แสง\" คืออะไร?",
    "context": "CREATE TABLE table_26614365_1 (eastern VARCHAR, english VARCHAR)"
  },
  {
    "answer": "SELECT central FROM table_26614365_1 WHERE english = \"robbers\"",
    "question_en": "What is the central word for \"robbers\"?",
    "question_th": "คำสำคัญสำหรับ \"โจร\" คืออะไร?",
    "context": "CREATE TABLE table_26614365_1 (central VARCHAR, english VARCHAR)"
  },
  {
    "answer": "SELECT latin FROM table_26614365_1 WHERE english = \"you sang\"",
    "question_en": "What is the Latin for \"you sang\"?",
    "question_th": "ภาษาละตินสำหรับ \"คุณร้องเพลง\" คืออะไร?",
    "context": "CREATE TABLE table_26614365_1 (latin VARCHAR, english VARCHAR)"
  },
  {
    "answer": "SELECT western FROM table_26614365_1 WHERE latin = \"latrones\"",
    "question_en": "What is the western word for \"latrones\" in Latin?",
    "question_th": "คำตะวันตกสำหรับ \"latrones\" ในภาษาละตินคืออะไร?",
    "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_en": "What is the Old Galician for cantaste in Portuguese?",
    "question_th": "Old Galician สำหรับ cantaste ในภาษาโปรตุเกสคืออะไร?",
    "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_en": "What is the lowest overall amount of rainfall totals (million m 3)?",
    "question_th": "ปริมาณน้ำฝนโดยรวมต่ำสุด (ล้านลูกบาศก์เมตร) คือเท่าใด?",
    "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_en": "When cabarita river is the hydrographic basin what is the lowest groundwater discharge (million m 3)?",
    "question_th": "เมื่อแม่น้ำคาบาริตาเป็นแอ่งอุทกศาสตร์ ปริมาณน้ำบาดาลที่ปล่อยออกมาต่ำสุด (ล้านลูกบาศก์เมตร) คือเท่าใด?",
    "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_en": "When martha brae, river is the hydrographic basin what is the rainfall totals (million m 3)?",
    "question_th": "เมื่อมาร์ธา แบร แม่น้ำเป็นแอ่งอุทกศาสตร์ มีปริมาณน้ำฝนทั้งหมดเท่าใด (ล้านลูกบาศก์เมตร)?",
    "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_en": "Name the average for assists per game",
    "question_th": "ตั้งชื่อค่าเฉลี่ยของแอสซิสต์ต่อเกม",
    "context": "CREATE TABLE table_26611679_3 (average VARCHAR, category VARCHAR)"
  },
  {
    "answer": "SELECT average FROM table_26611679_3 WHERE games_played = 23",
    "question_en": "Name the average for 23 games played",
    "question_th": "ตั้งชื่อค่าเฉลี่ยสำหรับ 23 เกมที่เล่น",
    "context": "CREATE TABLE table_26611679_3 (average VARCHAR, games_played VARCHAR)"
  },
  {
    "answer": "SELECT category FROM table_26611679_3 WHERE totals = \"50\"",
    "question_en": "Name the category for 50 totals",
    "question_th": "ตั้งชื่อหมวดหมู่รวม 50 รายการ",
    "context": "CREATE TABLE table_26611679_3 (category VARCHAR, totals VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(average) FROM table_26611679_3 WHERE category = \"Steals per game\"",
    "question_en": "Name the number of average for steals per game",
    "question_th": "ตั้งชื่อจำนวนเฉลี่ยของการขโมยต่อเกม",
    "context": "CREATE TABLE table_26611679_3 (average VARCHAR, category VARCHAR)"
  },
  {
    "answer": "SELECT voice_actor FROM table_26615633_1 WHERE species = \"Hedgehog\"",
    "question_en": "who was the voice actor when the species is hedgehog?",
    "question_th": "ใครเป็นคนพากย์เสียงเมื่อสายพันธุ์เป็นเม่น?",
    "context": "CREATE TABLE table_26615633_1 (voice_actor VARCHAR, species VARCHAR)"
  },
  {
    "answer": "SELECT voice_actor FROM table_26615633_1 WHERE birthday = \"March 26\"",
    "question_en": "who is the voice actor with the birthday march 26?",
    "question_th": "นักพากย์ที่เกิดวันที่ 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_en": "what is the jewel power when the media debut is ep 17?",
    "question_th": "พลังอัญมณีเมื่อสื่อเปิดตัวคือตอนที่ 17 คืออะไร?",
    "context": "CREATE TABLE table_26615633_1 (jewel VARCHAR, media_debut VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(birthday) FROM table_26615633_1 WHERE jewel = \"Malachite\"",
    "question_en": "how many times is the jewel malachite?",
    "question_th": "อัญมณีมาลาไคต์มีกี่ครั้ง?",
    "context": "CREATE TABLE table_26615633_1 (birthday VARCHAR, jewel VARCHAR)"
  },
  {
    "answer": "SELECT species FROM table_26615633_1 WHERE jewel = \"Coal\"",
    "question_en": "What is the species when jewel is coal?",
    "question_th": "อัญมณีเป็นถ่านหินพันธุ์อะไร?",
    "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_en": "Who was the lights 2 race two winning team when the lites 1 race one winning team was #13 Inspire Motorsports?",
    "question_th": "ใครคือทีมที่ชนะสองเรซ 2 ในเมื่อทีมที่ชนะ 1 เรซ 1 คือ #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_en": "How many different circuits had Gary Gibson has the Lites 1 race two winning team?",
    "question_th": "Gary Gibson มีทีมที่ชนะสองทีมที่ชนะการแข่งขัน Lites 1 กี่สนาม?",
    "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_en": "Who is the lites 2 race two winning team when #11 Performance Tech is the lites 1 race two winning team?",
    "question_th": "ใครคือทีม Lite 2 Race สองทีมที่ชนะ ในเมื่อ #11 Performance Tech คือทีม Lite 1 Race สองทีมที่ชนะ?",
    "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_en": "On which circuit was the lites 1 race one winning team #66 Gunnar Racing?",
    "question_th": "ทีม #66 Gunnar Racing ที่ชนะการแข่งขันไลต์ 1 เรซ 1 อยู่ในสนามใด",
    "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_en": "On which circuit was the lites race two winning team #13 Inspire Motorsports?",
    "question_th": "สองทีมที่ชนะ #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_en": " What date did series number 32  premiere? ",
    "question_th": " ซีรีส์หมายเลข 32 ออกฉายวันไหน?",
    "context": "CREATE TABLE table_2667438_5 (original_air_date VARCHAR, no_in_series VARCHAR)"
  },
  {
    "answer": "SELECT MAX(difference) FROM table_26677836_1",
    "question_en": "WHat is the highest difference?",
    "question_th": "อะไรคือความแตกต่างสูงสุด?",
    "context": "CREATE TABLE table_26677836_1 (difference INTEGER)"
  },
  {
    "answer": "SELECT MAX(lost) FROM table_26677836_1",
    "question_en": "What is the highest lost?",
    "question_th": "ขาดทุนสูงสุดคืออะไร?",
    "context": "CREATE TABLE table_26677836_1 (lost INTEGER)"
  },
  {
    "answer": "SELECT nation FROM table_26677836_1 WHERE place = 2",
    "question_en": "What is the nation when the place is 2?",
    "question_th": "ชาติอะไรเมื่ออยู่อันดับ 2?",
    "context": "CREATE TABLE table_26677836_1 (nation VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(against) FROM table_26677836_1 WHERE nation = \"[[|]] (19)\"",
    "question_en": "How many times is the nation [[|]] (19)?",
    "question_th": "ชาติละกี่ครั้ง [[|]] (19)?",
    "context": "CREATE TABLE table_26677836_1 (against VARCHAR, nation VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_2668169_2 WHERE incumbent = \"Mathias Morris\"",
    "question_en": "Which party does the incumbent Mathias Morris belong to?",
    "question_th": "Mathias Morris ดำรงตำแหน่งอยู่ในพรรคใด",
    "context": "CREATE TABLE table_2668169_2 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_2668169_2 WHERE incumbent = \"Luther Reily\"",
    "question_en": "Which district does the incumbent Luther Reily represent?",
    "question_th": "ลูเธอร์ ไรลีย์ ผู้ดำรงตำแหน่งแทนเขตใด",
    "context": "CREATE TABLE table_2668169_2 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_2668169_2 WHERE district = \"Pennsylvania 11\"",
    "question_en": "Who are the candidates for the Pennsylvania 11 district?",
    "question_th": "ใครคือผู้สมัครชิงตำแหน่งเขตเพนซิลเวเนีย 11?",
    "context": "CREATE TABLE table_2668169_2 (candidates VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(candidates) FROM table_2668169_2 WHERE district = \"Pennsylvania 11\"",
    "question_en": "How many people won the election in the Pennsylvania 11 district?",
    "question_th": "มีกี่คนที่ชนะการเลือกตั้งในเขตเพนซิลเวเนีย 11",
    "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_en": "How many times did the incumbent was first elected and then lost re-election anti-masonic gain?",
    "question_th": "ผู้ดำรงตำแหน่งได้รับเลือกครั้งแรกกี่ครั้งแล้วแพ้การเลือกตั้งใหม่เพื่อต่อต้านเมสัน?",
    "context": "CREATE TABLE table_2668173_4 (first_elected VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_2668173_4 WHERE incumbent = \"Henry Logan\"",
    "question_en": "Who were the candidates if the incumbent was Henry Logan?",
    "question_th": "ใครคือผู้สมัครถ้าผู้ดำรงตำแหน่งคือ Henry Logan?",
    "context": "CREATE TABLE table_2668173_4 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_2668173_4 WHERE incumbent = \"Mathias Morris\"",
    "question_en": "What was the district of the incumbent Mathias Morris?",
    "question_th": "เขตของ 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_en": "How many incumbents was first elected in the Anti-Masonic party?",
    "question_th": "มีการเลือกตั้งครั้งแรกในพรรค Anti-Masonic กี่คน?",
    "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_en": "Name the incumbent for robert monell (j) 63.6% tilly lynde 36.4%",
    "question_th": "ระบุชื่อผู้ดำรงตำแหน่งโรเบิร์ต โมเนลล์ (เจ) 63.6% ทิลลี่ ลินเด้ 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_en": "Name the number of first elected for thomas maxwell (j) 60.1% david woodcock (aj) 39.9%",
    "question_th": "ระบุหมายเลขผู้ถูกเลือกคนแรก ได้แก่ โทมัส แมกซ์เวลล์ (เจ) 60.1% เดวิด วูดค็อก (เอเจ) 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_en": "Name the candidates for new york 21",
    "question_th": "ตั้งชื่อผู้สมัครสำหรับ 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_en": "Name the candidates for selah r. hobbie",
    "question_th": "ตั้งชื่อผู้สมัคร selah r. งานอดิเรก",
    "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_en": "Name the result for  james lent (j) 52.3% silas wood (aj) 47.7%",
    "question_th": "ทายผล เจมส์ เลนต์ (เจ) 52.3% สิลาส วู้ด (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_en": "Who were the candidates in districk Pennsylvania 12?",
    "question_th": "ใครคือผู้สมัครในเขตเพนซิลเวเนีย 12?",
    "context": "CREATE TABLE table_2668199_2 (candidates VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_2668199_2 WHERE district = \"Pennsylvania 6\"",
    "question_en": "What is the result for district pennsylvania 6?",
    "question_th": "เขตเพนซิลวาเนีย 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_en": "Who was the incumbent when the candidates were John banks (am) 52.2% samuel power (j) 47.8%?",
    "question_th": "ใครเป็นผู้ดำรงตำแหน่งเมื่อผู้สมัครคือธนาคารจอห์น (น) 52.2% ซามูเอลพาวเวอร์ (เจ) 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_en": "How many times was the result was re-elected and the party was anti-masonic in the district Pennsylvania 24?",
    "question_th": "มีกี่ครั้งที่มีการเลือกตั้งใหม่และพรรคต่อต้านอิฐในเขตเพนซิลเวเนีย 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_en": "Who were all the candidates when the results were re-elected, first elected was 1832 and the party was jacksonian?",
    "question_th": "ใครคือผู้สมัครทั้งหมดเมื่อผลการเลือกตั้งถูกเลือกอีกครั้ง การเลือกตั้งครั้งแรกคือปี 1832 และพรรคคือแจ็กสันเนียน?",
    "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_en": "In Ghent in 2011, what was the rank-qualifying value when the score-qualifying value was 14.850",
    "question_th": "ในเกนต์ในปี 2011 ค่าคุณสมบัติอันดับเป็นเท่าใด เมื่อค่าคุณสมบัติคะแนนคือ 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_en": "What was the maximum rank-final score on the floor exercise?",
    "question_th": "คะแนนสูงสุดของอันดับสุดท้ายในการฝึกบนพื้นคือเท่าใด",
    "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_en": "What was the maximum rank-final value for a score of 14.975?",
    "question_th": "มูลค่าสูงสุดของอันดับสุดท้ายสำหรับคะแนน 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_en": "Where did the event with a final score of 15.050 occur?",
    "question_th": "งานที่มีคะแนนสุดท้าย 15.050 เกิดขึ้นที่ไหน?",
    "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_en": "how many \"Party\" are in district south carolina 2?",
    "question_th": "มี \"ปาร์ตี้\" กี่คนในเขตเซาท์แคโรไลนา 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_en": "What \"party\" was re-elected in district South Carolina 7?",
    "question_th": "\"พรรค\" ใดที่ได้รับเลือกใหม่ในเขตเซาท์แคโรไลนา 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_en": "who were the \"candidate\" of South Carolina 6?",
    "question_th": "ใครคือ \"ผู้สมัคร\" ของ 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_en": "Who was the \"incumbent\" of district south carolina 7?",
    "question_th": "ใครคือ \"ผู้ดำรงตำแหน่ง\" ของเขตเซาท์แคโรไลนา 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_en": "How many people were first elected when john roane was the incumbent?",
    "question_th": "มีผู้ได้รับเลือกครั้งแรกกี่คนเมื่อจอห์น โรแอนดำรงตำแหน่ง",
    "context": "CREATE TABLE table_2668243_25 (first_elected VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_2668243_25 WHERE incumbent = \"John S. Barbour\"",
    "question_en": "What party did john s. barbour represent?",
    "question_th": "จอห์น s. พรรคอะไรทำ บาร์เบอร์เป็นตัวแทนของ?",
    "context": "CREATE TABLE table_2668243_25 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_2668243_25 WHERE candidates = \"Andrew Stevenson (J) 100%\"",
    "question_en": "What was the result of the election featuring andrew stevenson (j) 100%?",
    "question_th": "ผลการเลือกตั้งที่มีแอนดรูว์ สตีเวนสัน (เจ) 100% เป็นอย่างไร?",
    "context": "CREATE TABLE table_2668243_25 (result VARCHAR, candidates VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_2668243_25 WHERE incumbent = \"Nathaniel H. Claiborne\"",
    "question_en": "What candidate(s) ran for election when nathaniel h. claiborne was the incumbent?",
    "question_th": "ผู้สมัครคนใดลงสมัครรับการเลือกตั้งเมื่อนาธาเนียล เอช. ไคลบอร์นเป็นผู้ดำรงตำแหน่ง?",
    "context": "CREATE TABLE table_2668243_25 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_2668254_17 WHERE first_elected = \"1818\"",
    "question_en": "Who was the ran as an incumbent leader first in 1818?",
    "question_th": "ใครเป็นผู้ดำรงตำแหน่งผู้นำคนแรกในปี พ.ศ. 2361?",
    "context": "CREATE TABLE table_2668254_17 (incumbent VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_2668254_17 WHERE incumbent = \"Joshua Sands\"",
    "question_en": "Who were the running candidates when Joshua Sands was the incumbent?",
    "question_th": "ใครคือผู้สมัครชิงตำแหน่งเมื่อ Joshua Sands ดำรงตำแหน่ง?",
    "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_en": "What was the result of the election where stephen van rensselaer was the incumbent and the party represented was the adams-clay federalist party?",
    "question_th": "อะไรคือผลลัพธ์ของการเลือกตั้งที่มีสตีเฟน ฟาน เรนส์เซแลร์ ดำรงตำแหน่ง และพรรคที่เป็นตัวแทนคือพรรคสหพันธรัฐอดัมส์-เคลย์",
    "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_en": "How many district has a candidate that was first elected on 1811?",
    "question_th": "มีผู้สมัครที่ได้รับเลือกครั้งแรกเมื่อ พ.ศ. 2354 กี่เขต?",
    "context": "CREATE TABLE table_2668254_25 (district VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_2668254_8 WHERE incumbent = \"Charles A. Wickliffe\"",
    "question_en": "In what district was the incumbent Charles A. Wickliffe? ",
    "question_th": " ผู้ดำรงตำแหน่ง 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_en": "What party did the incumbent Thomas P. Moore belong to?",
    "question_th": "ผู้ดำรงตำแหน่งโธมัส พี. มัวร์อยู่ในพรรคใด",
    "context": "CREATE TABLE table_2668254_8 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_2668254_8 WHERE district = \"Kentucky 9\"",
    "question_en": "Who were the candidates in the Kentucky 9 district? ",
    "question_th": " ใครคือผู้สมัครในเขตเคนตักกี้ 9?",
    "context": "CREATE TABLE table_2668254_8 (candidates VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_2668254_8 WHERE district = \"Kentucky 5\"",
    "question_en": "Who were the candidates in the Kentucky 5 district? ",
    "question_th": " ใครคือผู้สมัครในเขตเคนตักกี้ 5?",
    "context": "CREATE TABLE table_2668254_8 (candidates VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_2668254_22 WHERE candidates = \"William Drayton (J)\"",
    "question_en": "Who was the incumbent when the candidate was william drayton (j)?",
    "question_th": "ใครเป็นผู้ดำรงตำแหน่งเมื่อผู้สมัครคือวิลเลียม เดรย์ตัน (เจ)",
    "context": "CREATE TABLE table_2668254_22 (incumbent VARCHAR, candidates VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_2668254_22 WHERE candidates = \"George McDuffie (J)\"",
    "question_en": "What party did candidate george mcduffie (j) represent?",
    "question_th": "ผู้สมัคร george mcduffie (j) เป็นตัวแทนของพรรคใด",
    "context": "CREATE TABLE table_2668254_22 (party VARCHAR, candidates VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_2668264_8 WHERE incumbent = \"Robert P. Letcher\"",
    "question_en": "What party did robert p. letcher represent?",
    "question_th": "โรเบิร์ต พี. พรรคอะไรทำ ตัวแทนจดหมายเหรอ?",
    "context": "CREATE TABLE table_2668264_8 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_2668264_8 WHERE incumbent = \"Henry Clay\"",
    "question_en": "What district(s) did henry clay represent?",
    "question_th": "เฮนรี เคลย์เป็นตัวแทนของเขตใด",
    "context": "CREATE TABLE table_2668264_8 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_2668264_8 WHERE result = \"Retired Jacksonian gain\"",
    "question_en": "Who were the candidates for election that had a result of a retired jacksonian gain?",
    "question_th": "ใครคือผู้สมัครรับการเลือกตั้งที่เป็นผลมาจากการได้รับแจ็กสันเนียนที่เกษียณอายุ?",
    "context": "CREATE TABLE table_2668264_8 (candidates VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_2668329_25 WHERE district = \"Virginia 22\"",
    "question_en": "What ended up happening in the district Virginia 22?",
    "question_th": "เกิดอะไรขึ้นในเขตเวอร์จิเนีย 22?",
    "context": "CREATE TABLE table_2668329_25 (result VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_2668329_25 WHERE district = \"Virginia 4\"",
    "question_en": "What party won the Virginia 4 district?",
    "question_th": "พรรคใดชนะเขตเวอร์จิเนีย 4?",
    "context": "CREATE TABLE table_2668329_25 (party VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(result) FROM table_2668329_25 WHERE district = \"Virginia 4\"",
    "question_en": "How many people won the election in the district of Virginia 4?",
    "question_th": "มีคนชนะการเลือกตั้งในเขตเวอร์จิเนีย 4 กี่คน?",
    "context": "CREATE TABLE table_2668329_25 (result VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_2668329_25 WHERE district = \"Virginia 6\"",
    "question_en": "Who is the incumbent in the Virginia 6 district?",
    "question_th": "ใครเป็นผู้ดำรงตำแหน่งในเขตเวอร์จิเนีย 6?",
    "context": "CREATE TABLE table_2668329_25 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_2668329_11 WHERE incumbent = \"Samuel Smith\"",
    "question_en": "What is Samuel Smith's party?",
    "question_th": "งานปาร์ตี้ของ Samuel Smith คืออะไร?",
    "context": "CREATE TABLE table_2668329_11 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_2668329_11 WHERE incumbent = \"Peter Little\"",
    "question_en": "what is Peter Little's party?",
    "question_th": "ปาร์ตี้ของ Peter Little คืออะไร?",
    "context": "CREATE TABLE table_2668329_11 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_2668329_11 WHERE incumbent = \"Samuel Smith\"",
    "question_en": "What was the result of Samuel Smith's race?",
    "question_th": "อะไรคือผลลัพธ์ของเชื้อชาติของซามูเอล สมิธ?",
    "context": "CREATE TABLE table_2668329_11 (result VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(result) FROM table_2668329_18 WHERE district = \"North Carolina 9\"",
    "question_en": "Name the result for north carolina 9",
    "question_th": "ตั้งชื่อผลลัพธ์สำหรับ 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_en": "Name the party for hutchins g. burton",
    "question_th": "ตั้งชื่อปาร์ตี้ให้ฮัทชินส์ ก. เบอร์ตัน",
    "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_en": "Name the result for thomas h. hall (dr) 53.0% william clarke (f) 47.0%",
    "question_th": "ตั้งชื่อผลลัพธ์สำหรับ thomas h. ฮอลล์ (ดร.) 53.0% วิลเลียม คลาร์ก (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_en": "Name the candidates for felix walker",
    "question_th": "เสนอชื่อผู้สมัครชิงตำแหน่งเฟลิกซ์ วอล์คเกอร์",
    "context": "CREATE TABLE table_2668329_18 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_2668336_24 WHERE incumbent = \"John Pegram\"",
    "question_en": "Who are the candidates when the incumbent is john pegram?",
    "question_th": "ใครคือผู้สมัครเมื่อผู้ดำรงตำแหน่งคือจอห์น เพแกรม?",
    "context": "CREATE TABLE table_2668336_24 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_2668336_24 WHERE district = \"Virginia 12\"",
    "question_en": "Who are the candidates for district virginia 12?",
    "question_th": "ผู้สมัครเขตเวอร์จิเนีย 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_en": "What is the result when the candidates are alexander smyth (dr) 100%",
    "question_th": "ผลเป็นอย่างไรเมื่อผู้สมัครคือ 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_en": "How many times is the candidates charles f. mercer (f) 100%?",
    "question_th": "ผู้สมัครชาร์ลส์ เอฟ. มีกี่ครั้ง เมอร์เซอร์ (ฉ) 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_en": "how many times was the incumbent is john b. yates?",
    "question_th": "กี่ครั้งแล้วที่ผู้ดำรงตำแหน่งคือจอห์น บี เยตส์?",
    "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_en": "when was the first elected when the  candidates is thomas lawyer (dr) 54.9% william beekman (f) 45.1%?",
    "question_th": "การเลือกตั้งครั้งแรกเมื่อใดเมื่อผู้สมัครเป็นทนายความโทมัส (ดร.) 54.9% วิลเลียมบีคแมน (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_en": "who are the candidates for district new york 10?",
    "question_th": "ใครคือผู้สมัครชิงเขตนิวยอร์ก 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_en": "how many times were the candidates thomas h. hubbard (dr) 51.5% simeon ford (f) 48.4%?",
    "question_th": "ผู้สมัครโทมัส เอช. มีกี่ครั้ง ฮับบาร์ด (ดร.) 51.5% ไซเมียน ฟอร์ด (เอฟ) 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_en": "what is the district when the party is federalist and first elected is 1814?",
    "question_th": "เขตใดคือเขตเมื่อพรรคเป็นสหพันธรัฐและได้รับการเลือกตั้งครั้งแรกคือปี 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_en": "Name the candidates for pennsylvania 14",
    "question_th": "ตั้งชื่อผู้สมัครสำหรับเพนซิลเวเนีย 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_en": "Name the incumbent for jacob spangler (dr) 67.1% jacob hay (f) 32.9%",
    "question_th": "ตั้งชื่อผู้ดำรงตำแหน่ง 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_en": "Name the most first elected",
    "question_th": "ตั้งชื่อผู้ที่ได้รับเลือกเป็นคนแรก",
    "context": "CREATE TABLE table_2668347_17 (first_elected INTEGER)"
  },
  {
    "answer": "SELECT COUNT(candidates) FROM table_2668347_17 WHERE incumbent = \"Samuel D. Ingham\"",
    "question_en": "Name the number of candidates for  samuel d. ingham",
    "question_th": "ตั้งชื่อจำนวนผู้สมัครของซามูเอล ดี. อิงแฮม",
    "context": "CREATE TABLE table_2668347_17 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_2668347_22 WHERE candidates = \"William A. Burwell (DR)\"",
    "question_en": "Which district did William A. Burwell (Dr) belong to? ",
    "question_th": " William A. Burwell (Dr) อยู่ในเขตใด",
    "context": "CREATE TABLE table_2668347_22 (district VARCHAR, candidates VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_2668367_13 WHERE incumbent = \"Thomas R. Gold\"",
    "question_en": "What was the result in the district represented by Thomas R. Gold?",
    "question_th": "ผลลัพธ์ในเขตที่ 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_en": "Who is every incumbent when Kentucky 2 is the district?",
    "question_th": "ใครเป็นผู้ดำรงตำแหน่งทุกคนเมื่อรัฐเคนตักกี้ 2 เป็นเขต?",
    "context": "CREATE TABLE table_2668352_5 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT first_elected FROM table_2668352_5 WHERE district = \"Kentucky 6\"",
    "question_en": "Who is first elected when Kentucky 6 is the district?",
    "question_th": "ใครได้รับเลือกเป็นคนแรกเมื่อรัฐเคนตักกี้ 6 เป็นเขต?",
    "context": "CREATE TABLE table_2668352_5 (first_elected VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_2668352_5 WHERE incumbent = \"Joseph Desha\"",
    "question_en": "What is every district for incumbent Joseph Desha?",
    "question_th": "ทุกเขตของผู้ดำรงตำแหน่ง 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_en": "Which party experienced a result of lost re-election democratic-republican hold?",
    "question_th": "พรรคใดประสบผลจากการแพ้การเลือกตั้งใหม่ตามระบอบประชาธิปไตย-รีพับลิกัน?",
    "context": "CREATE TABLE table_2668352_16 (party VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(district) FROM table_2668352_16 WHERE incumbent = \"John C. Calhoun\"",
    "question_en": "How many districts have John C. Calhoun as the incumbent?",
    "question_th": "จอห์น ซี. คาลฮูนดำรงตำแหน่งมีกี่เขต",
    "context": "CREATE TABLE table_2668352_16 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_2668367_7 WHERE district = \"Kentucky 8\"",
    "question_en": "Who was the incumbent in the Kentucky 8 district? ",
    "question_th": " ใครเป็นผู้ดำรงตำแหน่งในเขต Kentucky 8?",
    "context": "CREATE TABLE table_2668367_7 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_2668367_7 WHERE district = \"Kentucky 8\"",
    "question_en": "What was the result in the election in the Kentucky 8 district? ",
    "question_th": " ผลการเลือกตั้งในเขตเคนตักกี้ 8 เป็นอย่างไร?",
    "context": "CREATE TABLE table_2668367_7 (result VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_2668367_7 WHERE district = \"Kentucky 1\"",
    "question_en": "What was the result in the election in the Kentucky 1 district? ",
    "question_th": " ผลการเลือกตั้งในเขตเคนตักกี้ 1 เป็นอย่างไร?",
    "context": "CREATE TABLE table_2668367_7 (result VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_2668374_13 WHERE incumbent = \"John Smilie\"",
    "question_en": "What district had an election with incumbent john smilie?",
    "question_th": "เขตใดมีการเลือกตั้งกับผู้ดำรงตำแหน่ง 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_en": "How many districts first elected someone in 1808 and had george smith as the incumbent?",
    "question_th": "มีกี่เขตที่ได้รับเลือกคนแรกในปี 1808 และมีจอร์จ สมิธเป็นผู้ดำรงตำแหน่ง",
    "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_en": "Who was the incumbent in Virginia 3?",
    "question_th": "ใครคือผู้ดำรงตำแหน่งในเวอร์จิเนีย 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_en": "What incumbent was a federalist that was first elected in 1803?",
    "question_th": "ผู้ดำรงตำแหน่งสหพันธ์ที่ได้รับเลือกครั้งแรกในปี พ.ศ. 2346 คือผู้ดำรงตำแหน่งใด",
    "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_en": "How many parties were first elected in 1805?",
    "question_th": "มีการเลือกตั้งครั้งแรกกี่พรรคในปี พ.ศ. 2348?",
    "context": "CREATE TABLE table_2668374_18 (party VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_2668374_18 WHERE incumbent = \"John Dawson\"",
    "question_en": "What district was John Dawson from?",
    "question_th": "John Dawson มาจากเขตใด",
    "context": "CREATE TABLE table_2668374_18 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_2668374_10 WHERE incumbent = \"Samuel Riker\"",
    "question_en": "Who were the running candidates when Samuel Riker was the incumbent?",
    "question_th": "ใครคือผู้สมัครชิงตำแหน่งเมื่อ Samuel Riker ดำรงตำแหน่ง?",
    "context": "CREATE TABLE table_2668374_10 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_2668367_14 WHERE incumbent = \"Nathaniel Macon\"",
    "question_en": "Who were the candidates in the district where the incumbent was Nathaniel Macon?",
    "question_th": "ใครคือผู้สมัครในเขตที่ผู้ดำรงตำแหน่งคือนาธาเนียล เมคอน?",
    "context": "CREATE TABLE table_2668367_14 (candidates VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_2668367_14 WHERE incumbent = \"Joseph Pearson\"",
    "question_en": "What party did the incumbent Joseph Pearson belong to?",
    "question_th": "โจเซฟ เพียร์สันผู้ดำรงตำแหน่งอยู่ในพรรคใด",
    "context": "CREATE TABLE table_2668367_14 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(incumbent) FROM table_2668401_12 WHERE district = \"Pennsylvania 5\"",
    "question_en": "How many incumbents are there in Pennsylvania 5?",
    "question_th": "เพนซิลเวเนีย 5 มีผู้ดำรงตำแหน่งกี่คน?",
    "context": "CREATE TABLE table_2668401_12 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_2668401_12 WHERE district = \"Pennsylvania 8\"",
    "question_en": "What are the parties listed for Pennsylvania 8?",
    "question_th": "ฝ่ายใดบ้างที่อยู่ในรายการเพนซิลเวเนีย 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_en": "Name the incumbent for candidates Joseph Hiester (dr) 83.2% Roswell Wells (f) 16.8%.",
    "question_th": "ระบุชื่อผู้ดำรงตำแหน่งผู้สมัคร 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_en": "What was the result for Andrew Gregg?",
    "question_th": "ผลลัพธ์ของ Andrew Gregg คืออะไร?",
    "context": "CREATE TABLE table_2668401_12 (result VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_2668401_12 WHERE district = \"Pennsylvania 8\"",
    "question_en": "What was the result for Pennsylvania 8?",
    "question_th": "ผลลัพธ์ของเพนซิลเวเนีย 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_en": "What party did the incumbent from the Virginia 5 district who was re-elected and was first elected in 1797 belong to?",
    "question_th": "ผู้ดำรงตำแหน่งจากเขตเวอร์จิเนีย 5 ที่ได้รับเลือกอีกครั้งและได้รับการเลือกตั้งครั้งแรกในปี พ.ศ. 2340 อยู่ในพรรคใด",
    "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_en": "When was the incumbent first elected in the district where the result was a democratic-republican gain? ",
    "question_th": " เมื่อใดที่ผู้ดำรงตำแหน่งได้รับเลือกเป็นครั้งแรกในเขตซึ่งผลที่ได้คือได้รับประชาธิปไตยและรีพับลิกัน?",
    "context": "CREATE TABLE table_2668401_17 (first_elected VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_2668401_17 WHERE incumbent = \"Edwin Gray\"",
    "question_en": "In what district was the incumbent Edwin Gray? ",
    "question_th": " เอ็ดวิน เกรย์ ดำรงตำแหน่งในเขตใด",
    "context": "CREATE TABLE table_2668401_17 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT first_elected FROM table_2668401_17 WHERE district = \"Virginia 10\"",
    "question_en": "When was the incumbent from the Virginia 10 district first elected? ",
    "question_th": " ผู้ดำรงตำแหน่งจากเขตเวอร์จิเนีย 10 ได้รับการเลือกตั้งครั้งแรกเมื่อใด",
    "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_en": "Name the result for walter jones (dr) 99.0% henry lee (f) 1.0%",
    "question_th": "ทายผล วอลเตอร์ โจนส์ (dr) 99.0% เฮนรี่ ลี (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_en": "Name the district for matthew clay",
    "question_th": "ตั้งชื่ออำเภอสำหรับแมทธิว เคลย์",
    "context": "CREATE TABLE table_2668387_18 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(first_elected) FROM table_2668387_18 WHERE incumbent = \"John Smith\"",
    "question_en": "Name the number of first elected for john smith",
    "question_th": "ตั้งชื่อหมายเลขของผู้ที่ได้รับเลือกเป็นคนแรกสำหรับจอห์น สมิธ",
    "context": "CREATE TABLE table_2668387_18 (first_elected VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_2668387_18 WHERE district = \"Virginia 18\"",
    "question_en": "Name the incumbent for virginia 18",
    "question_th": "ตั้งชื่อผู้ดำรงตำแหน่งเวอร์จิเนีย 18",
    "context": "CREATE TABLE table_2668387_18 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_2668387_18 WHERE candidates = \"John Randolph (DR)\"",
    "question_en": "Name the district for  john randolph (dr)",
    "question_th": "ตั้งชื่อเขตสำหรับ 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_en": "Name the incumbent for virginia 4",
    "question_th": "ตั้งชื่อผู้ดำรงตำแหน่งเวอร์จิเนีย 4",
    "context": "CREATE TABLE table_2668387_18 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT MIN(first_elected) FROM table_2668420_17",
    "question_en": "When was the earliest person elected?",
    "question_th": "บุคคลแรกสุดได้รับเลือกเมื่อใด",
    "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_en": "What party was re-elected to Virginia 12?",
    "question_th": "พรรคใดได้รับเลือกให้เข้าสู่เวอร์จิเนีย 12 อีกครั้ง",
    "context": "CREATE TABLE table_2668420_17 (party VARCHAR, result VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT MAX(first_elected) FROM table_2668405_17",
    "question_en": "What is the latest first elected?",
    "question_th": "ล่าสุดได้รับเลือกครั้งแรกคืออะไร?",
    "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_en": "How many times were the candidates leven powell (f) 63.8% roger west (dr) 36.4%?",
    "question_th": "กี่ครั้งแล้วที่ผู้สมัครเลเวน พาวเวลล์ (f) 63.8% โรเจอร์ เวสต์ (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_en": "What is the district with the candidates leven powell (f) 63.8% roger west (dr) 36.4%?",
    "question_th": "เขตอะไรที่มีผู้สมัคร เลเวน พาวเวลล์ (f) 63.8% โรเจอร์เวสต์ (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_en": "What is the district with the incumbent john nicholas?",
    "question_th": "เขตที่มีผู้ดำรงตำแหน่งจอห์น นิโคลัสคือเขตอะไร?",
    "context": "CREATE TABLE table_2668405_17 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(candidates) FROM table_2668405_17 WHERE district = \"Virginia 6\"",
    "question_en": "How many were in district virginia 6?",
    "question_th": "ในเขตเวอร์จิเนีย 6 มีกี่คน?",
    "context": "CREATE TABLE table_2668405_17 (candidates VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_2668416_18 WHERE district = \"Virginia 8\"",
    "question_en": "If the district is Virginia 8, who is the Incumbent?",
    "question_th": "ถ้าเขตคือเวอร์จิเนีย 8 ใครคือผู้ดำรงตำแหน่ง?",
    "context": "CREATE TABLE table_2668416_18 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT candidates FROM table_2668416_18 WHERE district = \"Virginia 17\"",
    "question_en": "If the district is Virginia 17, who are the candidates?",
    "question_th": "ถ้าเขตคือเวอร์จิเนีย 17 ผู้สมัครคือใคร?",
    "context": "CREATE TABLE table_2668416_18 (candidates VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(party) FROM table_2668416_18 WHERE incumbent = \"Abraham B. Venable\"",
    "question_en": "In how many different parts was the incumbent Abraham B. Venable?",
    "question_th": "อับราฮัม บี. เวนาเบิล ผู้ดำรงตำแหน่งอยู่ในตำแหน่งที่แตกต่างกันกี่ส่วน?",
    "context": "CREATE TABLE table_2668416_18 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_26686908_2 WHERE circuit = \"Mount Panorama circuit\"",
    "question_en": "What is the date for the mount panorama circuit?",
    "question_th": "วันที่สำหรับวงจรเมานต์พาโนรามาคืออะไร?",
    "context": "CREATE TABLE table_26686908_2 (date VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT city___state FROM table_26686908_2 WHERE date = \"7–10 October\"",
    "question_en": "What was the location for the date 7–10 october?",
    "question_th": "วันที่ 7-10 ตุลาคม สถานที่ใด?",
    "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_en": "Who handled production for the race when the championship went to david wall and challenge was jordan ormsby?",
    "question_th": "ใครเป็นผู้ดูแลการผลิตสำหรับการแข่งขันเมื่อแชมป์ตกเป็นของ David Wall และความท้าทายคือ 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_en": "Which city and state hosted the adelaide street circuit?",
    "question_th": "เมืองและรัฐใดเป็นเจ้าภาพจัดการแข่งขันถนนแอดิเลด",
    "context": "CREATE TABLE table_26686908_2 (city___state VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT circuit FROM table_26686908_2 WHERE date = \"25–28 March\"",
    "question_en": "Which circuit was held on 25–28 march?",
    "question_th": "สนามใดจัดขึ้นในวันที่ 25–28 มีนาคม?",
    "context": "CREATE TABLE table_26686908_2 (circuit VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(production) FROM table_26686908_2 WHERE rd = \"Rd 2\"",
    "question_en": "How many productions are shown for rd 2?",
    "question_th": "มีการแสดงกี่รายการสำหรับ 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_en": "Name the writers for 46 in series",
    "question_th": "ตั้งชื่อผู้เขียนชุด 46 เรื่อง",
    "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_en": "Name the production code for 60 number in series",
    "question_th": "ตั้งชื่อรหัสการผลิตสำหรับหมายเลข 60 ตามลำดับ",
    "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_en": "what is the title of the episode with the director pamela fryman and the production code 2alh07?",
    "question_th": "ผู้กำกับพาเมล่า ฟรายแมนและรหัสการผลิต 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_en": "Which occurence has the matrix sim marked as 0.925?",
    "question_th": "เหตุการณ์ใดที่เมทริกซ์ซิมทำเครื่องหมายเป็น 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_en": "What is the detailed family information where the sequence is aagtact?",
    "question_th": "ข้อมูลครอบครัวโดยละเอียดที่ลำดับเป็น 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_en": "What occurence has 0.925 listed as the matrix sim?",
    "question_th": "เกิดอะไรขึ้นที่ 0.925 ระบุว่าเป็นซิมเมทริกซ์",
    "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_en": "What is the conserved in mus musculus listing for sequence aagtact?",
    "question_th": "อะไรคือสิ่งที่อนุรักษ์ไว้ในรายการ mus musculus สำหรับลำดับ 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_en": "What is the nt identity when the species is drosophilia melanogaster?",
    "question_th": "อะไรคือเอกลักษณ์เมื่อสายพันธุ์นี้คือ 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_en": "What is the protein name when aa length is 202 aa?",
    "question_th": "เมื่อความยาว aa เท่ากับ 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_en": "What is the protein name when the e-value is 2.50e-41?",
    "question_th": "โปรตีนชื่ออะไรเมื่อค่า e-value เท่ากับ 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_en": "What is the aa length when the protein name is c11orf73?",
    "question_th": "ชื่อโปรตีนคือ c11orf73 ความยาว aa เป็นเท่าใด",
    "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_en": "How many times is the accession number xp_001843282?",
    "question_th": "มีจำนวนภาคยานุวัติ 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_en": "How many titles have U.S. viewers 1.66 million.",
    "question_th": "มีกี่เรื่องที่มีผู้ชมในสหรัฐฯ 1.66 ล้านคน",
    "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_en": "What is every title when U.S. viewers is 1.04 million.",
    "question_th": "ชื่ออะไรเมื่อมีผู้ชมสหรัฐ 1.04 ล้านคน",
    "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_en": "What is the highest number in series with director as Phil Abraham?",
    "question_th": "หมายเลขสูงสุดในซีรีส์ที่มีผู้กำกับคือฟิล อับราฮัมคือหมายเลขใด",
    "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_en": "How many entries for number in series when director is Bryan Cranston?",
    "question_th": "มีกี่รายการสำหรับหมายเลขในซีรีส์เมื่อผู้กำกับคือไบรอัน แครนสตัน",
    "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_en": "What is the earliest episode that was watched by 1.32 million viewers?",
    "question_th": "เรื่องแรกสุดที่มีผู้ชม 1.32 ล้านคนคือเรื่องใด?",
    "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_en": "What is the latest episode written by  John Shiban & Thomas Schnauz?",
    "question_th": "ตอนล่าสุดเขียนโดย 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_en": "Who directed the eposide that was watched by 1.95 million US viewers?",
    "question_th": "ใครเป็นผู้กำกับตอนที่มีผู้ชมในสหรัฐอเมริกา 1.95 ล้านคน?",
    "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_en": "How many episodes are there for the three darts challenge with Sharon Osbourne?",
    "question_th": "การแข่งขันปาเป้าสามลูกกับชารอน ออสบอร์นมีทั้งหมดกี่ตอน",
    "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_en": "What musical performances aired on 5 April 2010?",
    "question_th": "การแสดงดนตรีอะไรที่ออกอากาศในวันที่ 5 เมษายน พ.ศ. 2553?",
    "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_en": "What were the guests that aired on 7 June 2010?",
    "question_th": "แขกรับเชิญที่ออกอากาศเมื่อวันที่ 7 มิถุนายน 2553 มีอะไรบ้าง?",
    "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_en": "Who was in the three darts challenge that aired on 10 may 2010?",
    "question_th": "ใครอยู่ในการแข่งขันปาเป้าสามลูกที่ออกอากาศเมื่อวันที่ 10 พฤษภาคม พ.ศ. 2553",
    "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_en": "Name the ends lost for canada",
    "question_th": "ตั้งชื่อจุดสิ้นสุดที่หายไปสำหรับแคนาดา",
    "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_en": "Name the number of ends lost for 6 stolen ends",
    "question_th": "ตั้งชื่อจำนวนปลายที่หายไปสำหรับปลายที่ถูกขโมย 6 อัน",
    "context": "CREATE TABLE table_26745426_2 (Ends VARCHAR, stolen_ends VARCHAR)"
  },
  {
    "answer": "SELECT proto_slavic FROM table_26757_4 WHERE polish = \"gniazdo\"",
    "question_en": "When gniazdo is polish what is proto-slavic?",
    "question_th": "เมื่อ gniazdo เป็นภาษาโปแลนด์ โปรโต-สลาวิกคืออะไร?",
    "context": "CREATE TABLE table_26757_4 (proto_slavic VARCHAR, polish VARCHAR)"
  },
  {
    "answer": "SELECT macedonian FROM table_26757_4 WHERE serbo_croatian = \"рука / ruka\"",
    "question_en": "When рука / ruka is the serbo-croatian what is the macedonian?",
    "question_th": "เมื่อ рука / ruka เป็นภาษาเซอร์โบ-โครเอเชีย ภาษามาซิโดเนียคืออะไร?",
    "context": "CREATE TABLE table_26757_4 (macedonian VARCHAR, serbo_croatian VARCHAR)"
  },
  {
    "answer": "SELECT proto_slavic FROM table_26757_4 WHERE macedonian = \"риба (ríba)\"",
    "question_en": "When риба (ríba) is the macedonian what is the proto-slavic?",
    "question_th": "เมื่อ риба (ríba) เป็นภาษามาซิโดเนีย โปรโต-สลาฟคืออะไร?",
    "context": "CREATE TABLE table_26757_4 (proto_slavic VARCHAR, macedonian VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(proto_slavic) FROM table_26757_4 WHERE serbo_croatian = \"гн(иј)ездо / gn(ij)ezdo\"",
    "question_en": "When  гн(иј)ездо / gn(ij)ezdo is the serbo-croatian how many proto-slavics are there?",
    "question_th": "เมื่อ гн(иј)ездо / gn(ij)ezdo เป็นภาษาเซอร์โบ-โครเอเชีย มีโปรโต-สลาฟกี่ตัว?",
    "context": "CREATE TABLE table_26757_4 (proto_slavic VARCHAR, serbo_croatian VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(slovene) FROM table_26757_4 WHERE belarusian = \"рыба (rýba)\"",
    "question_en": "When  рыба (rýba) is the belarusian how many slovenes are there?",
    "question_th": "เมื่อ рыба (rýba) เป็นภาษาเบลารุส มีกี่ภาษาสโลเวเนีย?",
    "context": "CREATE TABLE table_26757_4 (slovene VARCHAR, belarusian VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(slovak) FROM table_26757_4 WHERE belarusian = \"вуха (vúkha)\"",
    "question_en": "When вуха (vúkha) is the belarusian how many slovaks are there?",
    "question_th": "เมื่อ вуха (vúkha) เป็นภาษาเบลารุส มีสโลวักกี่อัน?",
    "context": "CREATE TABLE table_26757_4 (slovak VARCHAR, belarusian VARCHAR)"
  },
  {
    "answer": "SELECT vivek_express__15905_15906 FROM table_26745820_5 WHERE kanyakumari = \"Bhavnagar\"",
    "question_en": "What is the name of the only route that runs to bhavnagar?",
    "question_th": "เส้นทางเดียวที่วิ่งไปภาวนาการ์ชื่ออะไร?",
    "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_en": "What is every original air date for the number in season of 7?",
    "question_th": "ซีซั่น 7 ของซีซั่น 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_en": "What is the number of participating parties when registered voters totaled 643629?",
    "question_th": "จำนวนฝ่ายที่เข้าร่วมเมื่อผู้ลงคะแนนที่ลงทะเบียนแล้วมีจำนวนทั้งสิ้น 643,629 คนเป็นเท่าใด",
    "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_en": "What is the electoral district when total candidates were 35?",
    "question_th": "เขตเลือกตั้งคืออะไรเมื่อมีผู้สมัครทั้งหมด 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_en": "What is the number of seats in congress when the electoral district is Ucayali?",
    "question_th": "จำนวนที่นั่งในรัฐสภาเมื่อเขตการเลือกตั้งคือ 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_en": "What is the number of seats in congress when the candidates per party is 6?",
    "question_th": "จำนวนที่นั่งในรัฐสภาเมื่อผู้สมัครต่อพรรคมี 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_en": "What is the number of total candidates when registered voters is 47742?",
    "question_th": "จำนวนผู้สมัครทั้งหมดเมื่อผู้ลงคะแนนที่ลงทะเบียนคือ 47,742 คือเท่าใด",
    "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_en": "Where does the judge who serves Beacon Falls , Naugatuck , Middlebury , Prospect reside?",
    "question_th": "ผู้พิพากษาที่ทำหน้าที่ Beacon Falls , Naugatuck , Middlebury , Prospect อาศัยอยู่ที่ไหน",
    "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_en": "What district is the court located in Tolland?",
    "question_th": "ศาลแขวงโทลแลนด์ตั้งอยู่ในเขตใด?",
    "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_en": "Where does the judge whose court is in Groton reside?",
    "question_th": "ผู้พิพากษาของศาลใน Groton อาศัยอยู่ที่ไหน?",
    "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_en": "what is the nhl team for the player john maclean?",
    "question_th": "ทีม nhl สำหรับผู้เล่น จอห์น แมคคลีน คืออะไร?",
    "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_en": "who is the player for the position defence and the college/junior/club team is ottawa 67's (ohl)?",
    "question_th": "ใครคือผู้เล่นในการป้องกันตำแหน่งและทีมวิทยาลัย/จูเนียร์/สโมสรคือทีมออตตาวา 67 (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_en": "what is the college/junior/club team for the player alfie turcotte?",
    "question_th": "ทีมวิทยาลัย/จูเนียร์/สโมสรสำหรับผู้เล่น อัลฟี่ เทอร์คอตเต้ คืออะไร?",
    "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_en": "What is the name of the college/junior/club team of the Buffalo Sabres?",
    "question_th": "ทีมวิทยาลัย/รุ่นน้อง/สโมสรของ 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_en": "What is Reine Karlsson's nationality?",
    "question_th": "ไรน์ คาร์ลสสันมีสัญชาติอะไร?",
    "context": "CREATE TABLE table_2679061_10 (nationality VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(nationality) FROM table_2679061_11 WHERE nhl_team = \"Philadelphia Flyers\"",
    "question_en": "How many players were drafted by the Philadelphia Flyers?",
    "question_th": "มีผู้เล่นกี่คนที่ร่างโดย 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_en": "How many picks did the Chicago Black Hawks get?",
    "question_th": "Chicago Black Hawks โดนเลือกกี่คน?",
    "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_en": "What team had pick 203?",
    "question_th": "ทีมไหนเลือก 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_en": "Which school did harold duvall attend?",
    "question_th": "ฮาโรลด์ ดูวัลล์เข้าเรียนที่โรงเรียนไหน",
    "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_en": "List the position  for the boston bruins.",
    "question_th": "รายชื่อตำแหน่ง บอสตัน บรูอินส์",
    "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_en": "Who was drafted to litvinov (czechoslovakia)?",
    "question_th": "ใครถูกเกณฑ์ทหารไปที่ Litvinov (เชโกสโลวะเกีย)?",
    "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_en": "What position does peter mcgeough cover?",
    "question_th": "Peter Mcgeough ดำรงตำแหน่งอะไร?",
    "context": "CREATE TABLE table_2679061_12 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_2679061_4 WHERE nhl_team = \"Minnesota North Stars\"",
    "question_en": "Which player was drafted by the Minnesota North Stars? ",
    "question_th": " ผู้เล่นคนใดที่ถูกร่างโดย 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_en": "What is the nationality of Bob Essensa?",
    "question_th": "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_en": "What position is the player from the Regina Pats (WHL)?",
    "question_th": "ผู้เล่นจาก 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_en": "What number pick was the player from HIFK Helsinki (Finland)?",
    "question_th": "ผู้เล่นจาก HIFK เฮลซิงกิ (ฟินแลนด์) เลือกหมายเลขใด",
    "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_en": "Which team drafted Esa Tikkanen? ",
    "question_th": " ทีมไหนดราฟท์เอซ่า ติกคาเนน?",
    "context": "CREATE TABLE table_2679061_4 (nhl_team VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_2679061_9 WHERE pick__number = 168",
    "question_en": "What was the nationality of player picked no. 168?",
    "question_th": "ผู้เล่นเลือกหมายเลขสัญชาติอะไร 168?",
    "context": "CREATE TABLE table_2679061_9 (nationality VARCHAR, pick__number VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_2679061_9 WHERE pick__number = 179",
    "question_en": "What was the nationality of player picked no. 179?",
    "question_th": "ผู้เล่นเลือกหมายเลขสัญชาติอะไร 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_en": "Who was the player who played for Hartford Whalers NHL Team?",
    "question_th": "ใครคือผู้เล่นที่เล่นให้กับทีม Hartford Whalers NHL",
    "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_en": "What was the position of the player who played for New York Islanders NHL Team?",
    "question_th": "ตำแหน่งผู้เล่นที่เล่นให้กับทีม New York Islanders NHL คืออะไร?",
    "context": "CREATE TABLE table_2679061_9 (position VARCHAR, nhl_team VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_2679061_9 WHERE player = \"Cliff Abrecht\"",
    "question_en": "What was the nationality of player Cliff Abrecht?",
    "question_th": "นักเตะสัญชาติอะไร คลิฟ อับเบรทช์?",
    "context": "CREATE TABLE table_2679061_9 (nationality VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(poles) FROM table_26794530_1",
    "question_en": "What is the highest number of poles?",
    "question_th": "จำนวนเสาสูงสุดคือเท่าไร?",
    "context": "CREATE TABLE table_26794530_1 (poles INTEGER)"
  },
  {
    "answer": "SELECT COUNT(f_laps) FROM table_26794530_1 WHERE points = \"170\"",
    "question_en": "How many f/laps were there when he scored 170 points?",
    "question_th": "ตอนที่เขาทำคะแนนได้ 170 คะแนนมีกี่ f/lap?",
    "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_en": "When there were 30 races and the final placing was 13th, how many points were scored?",
    "question_th": "เมื่อมีการแข่งขันครบ 30 รอบ และเข้ารอบสุดท้ายอันดับที่ 13 ได้คะแนนเท่าไร?",
    "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_en": " What club is associated with draft number 155? ",
    "question_th": " สโมสรใดที่เกี่ยวข้องกับร่างหมายเลข 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_en": "What is the production code for the number 5 series ? ",
    "question_th": " รหัสการผลิตซีรีส์หมายเลข 5 คืออะไร?",
    "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_en": "What is the number  of the series written by Teresa Lin? ",
    "question_th": " ซีรีส์ที่เขียนโดยเทเรซา ลินมีจำนวนเท่าใด",
    "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_en": "Which series # had 0.852 U.S. viewers(millions)?",
    "question_th": "ซีรีส์ใด # มีผู้ชม 0.852 คนในสหรัฐฯ (ล้านคน)",
    "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_en": "Which original air date had 0.871 U.S. viewers (millions)?",
    "question_th": "วันออกอากาศเดิมเรื่องใดมีผู้ชม 0.871 คนในสหรัฐฯ (ล้านคน)",
    "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_en": "Which series # had 0.645 U.S. viewers(millions)?",
    "question_th": "ซีรีส์ใด # มีผู้ชม 0.645 คนในสหรัฐฯ (ล้านคน)",
    "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_en": "When 12th is the final placing what is the wins?",
    "question_th": "เมื่ออันดับที่ 12 คือการแข่งขันรอบสุดท้าย อะไรคือชัยชนะ?",
    "context": "CREATE TABLE table_26815674_1 (wins VARCHAR, final_placing VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(wins) FROM table_26815674_1 WHERE final_placing = \"24th\"",
    "question_en": "When 24th is the final placing how many wins are there?",
    "question_th": "เมื่ออันดับที่ 24 เป็นรอบชิงชนะเลิศ จะมีชัยชนะทั้งหมดกี่นัด?",
    "context": "CREATE TABLE table_26815674_1 (wins VARCHAR, final_placing VARCHAR)"
  },
  {
    "answer": "SELECT MIN(wins) FROM table_26815674_1",
    "question_en": "What is the lowest overall amount of wins?",
    "question_th": "จำนวนชัยชนะโดยรวมต่ำสุดคือเท่าใด?",
    "context": "CREATE TABLE table_26815674_1 (wins INTEGER)"
  },
  {
    "answer": "SELECT original_air_date FROM table_26824484_1 WHERE production_code = \"3AKY05\"",
    "question_en": "What date did the episode with production code 3aky05 air?",
    "question_th": "ตอนที่มีรหัสผลิต 3aky05 ออกอากาศวันไหน?",
    "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_en": "Which episode was directed by Jeff Woolnough and written by Christopher Ambrose?",
    "question_th": "ตอนใดกำกับโดย Jeff Woolnough และเขียนโดย 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_en": "What was the original air date of the episode that was directed by Jessica Landaw?",
    "question_th": "วันที่ออกอากาศดั้งเดิมของตอนที่กำกับโดย 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_en": "What is the episode number of the episode with a production code of 4aky14?",
    "question_th": "หมายเลขตอนของตอนที่มีรหัสการผลิต 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_en": "The episode that had 8.62 million US viewers originally aired on which date?",
    "question_th": "ตอนที่มีผู้ชม 8.62 ล้านคนในอเมริกา ออกอากาศตอนแรกวันไหน?",
    "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_en": "What was the result in the game broadcast on the Big East Network? ",
    "question_th": " ผลการถ่ายทอดสดเกมบน 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_en": "What was the result in the game where the visiting team was Louisiana-Monroe?",
    "question_th": "ผลการแข่งขันทีมเยือนคือ ลุยเซียนา-มอนโร เป็นอย่างไร?",
    "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_en": "Who was the home team in the game broadcast on the Big East Network? ",
    "question_th": " ทีมเจ้าบ้านในเกมที่ออกอากาศทาง 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_en": "What was the result in the game broadcast on the SEC Network? ",
    "question_th": " ผลการถ่ายทอดเกมบนเครือข่าย ก.ล.ต. เป็นอย่างไร?",
    "context": "CREATE TABLE table_26842217_12 (result VARCHAR, broadcast VARCHAR)"
  },
  {
    "answer": "SELECT E / vap FROM table_2683116_1 WHERE turnout = \"85.7%\"",
    "question_en": "What is the e/vap value for a turnout of exactly 85.7%?",
    "question_th": "ค่า e/vap ของผลิตภัณฑ์ที่ 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_en": "What communes have enrolled values of 174946?",
    "question_th": "คอมมูนิตี้ใดบ้างที่ลงทะเบียนค่าเป็น 174946",
    "context": "CREATE TABLE table_2683116_1 (communes VARCHAR, enrolled VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(vap) FROM table_2683116_1 WHERE valid_votes = 140469",
    "question_en": "How many vap values are associated with 140469 valid votes?",
    "question_th": "ค่า vap ที่เกี่ยวข้องกับคะแนนโหวตที่ถูกต้อง 140469 คะแนนมีกี่ค่า",
    "context": "CREATE TABLE table_2683116_1 (vap VARCHAR, valid_votes VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_26842217_10 WHERE visiting_team = \"Georgia\"",
    "question_en": "Name the time for georgia",
    "question_th": "ตั้งชื่อเวลาสำหรับจอร์เจีย",
    "context": "CREATE TABLE table_26842217_10 (time VARCHAR, visiting_team VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_26842217_10 WHERE visiting_team = \"#1 Alabama\"",
    "question_en": "Name the time for #1 alabama",
    "question_th": "ตั้งชื่อเวลาสำหรับ #1 อลาบามา",
    "context": "CREATE TABLE table_26842217_10 (time VARCHAR, visiting_team VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_26842217_18 WHERE result = \"MSST 29–24\"",
    "question_en": "Name the time for result  msst 29–24",
    "question_th": "ตั้งชื่อเวลาสำหรับผลลัพธ์ msst 29–24",
    "context": "CREATE TABLE table_26842217_18 (time VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(time) FROM table_26842217_18 WHERE visiting_team = \"UAB\"",
    "question_en": "Name the number of time for uab",
    "question_th": "ตั้งชื่อจำนวนเวลาสำหรับ uab",
    "context": "CREATE TABLE table_26842217_18 (time VARCHAR, visiting_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_26842217_18 WHERE broadcast = \"FSN\"",
    "question_en": "Name the date for broadcast fsn",
    "question_th": "ตั้งชื่อวันที่ออกอากาศ 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_en": "Name the broadcast for 7:00pm and mississippi state",
    "question_th": "ตั้งชื่อรายการออกอากาศเวลา 19.00 น. และรัฐมิสซิสซิปปี้",
    "context": "CREATE TABLE table_26842217_18 (broadcast VARCHAR, time VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_26842217_18 WHERE broadcast = \"ESPN\"",
    "question_en": "Name the date for espn",
    "question_th": "ตั้งชื่อวันที่สำหรับ espn",
    "context": "CREATE TABLE table_26842217_18 (date VARCHAR, broadcast VARCHAR)"
  },
  {
    "answer": "SELECT broadcast FROM table_26842217_18 WHERE site = \"Davis-Wade Stadium • Starkville MS\"",
    "question_en": "Name the broadcast for  davis-wade stadium • starkville ms",
    "question_th": "ตั้งชื่อรายการออกอากาศสำหรับ สนามกีฬาเดวิส-เวด • สตาร์ควิลล์ มิส",
    "context": "CREATE TABLE table_26842217_18 (broadcast VARCHAR, site VARCHAR)"
  },
  {
    "answer": "SELECT broadcast FROM table_26842217_16 WHERE home_team = \"Kentucky\"",
    "question_en": " On what network was the Kentucky game broadcast? ",
    "question_th": "เกม Kentucky ออกอากาศบนเครือข่ายใด",
    "context": "CREATE TABLE table_26842217_16 (broadcast VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT site FROM table_26842217_4 WHERE visiting_team = \"Louisiana-Lafayette\"",
    "question_en": "Where's the louisiana-lafayette as a visiting team?",
    "question_th": "หลุยส์เซียนา-ลาฟาแยตในฐานะทีมเยือนอยู่ไหน?",
    "context": "CREATE TABLE table_26842217_4 (site VARCHAR, visiting_team VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_26842217_4 WHERE visiting_team = \"Tennessee Tech\"",
    "question_en": "What were the results of the  tennessee tech as a visiting team?",
    "question_th": "อะไรคือผลลัพธ์ของเทคโนโลยีเทนเนสซีในฐานะทีมเยือน?",
    "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_en": "What is the home team where the San Jose state is the visiting team?",
    "question_th": "เจ้าบ้านคือทีมใดที่รัฐซานโฮเซ่เป็นทีมเยือน?",
    "context": "CREATE TABLE table_26842217_4 (home_team VARCHAR, visiting_team VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_26842217_4 WHERE site = \"Bryant-Denny Stadium • Tuscaloosa, AL\"",
    "question_en": "What were the results in the bryant-denny stadium • tuscaloosa, al?",
    "question_th": "ผลลัพธ์ในสนามไบรอันต์-เดนนี่ • ทัสคาลูซา อัล?",
    "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_en": "What home team is at  7:30pm in ESPN?",
    "question_th": "ทีมเหย้าทีมใดออกเวลา 19.30 น. ทาง 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_en": "If the visiting team is Clemson, when was the time?",
    "question_th": "ถ้าทีมเยือนคือเคล็มสันช่วงไหน?",
    "context": "CREATE TABLE table_26842217_8 (time VARCHAR, visiting_team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(attendance) FROM table_26842217_8 WHERE site = \"Wallace Wade Stadium • Durham, NC\"",
    "question_en": "How many times was the site wallace wade stadium • durham, nc?",
    "question_th": "กี่ครั้งแล้วที่สนามวอลเลซเวดสเตเดี้ยม • เดอร์แฮม นอร์ทแคโรไลนา?",
    "context": "CREATE TABLE table_26842217_8 (attendance VARCHAR, site VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_26842217_8 WHERE site = \"Wallace Wade Stadium • Durham, NC\"",
    "question_en": "If the site was wallace wade stadium • durham, nc, what was the result?",
    "question_th": "หากสถานที่นั้นเป็นสนามกีฬาวอลเลซ เวด • เดอร์แฮม นอร์ทแคโรไลนา ผลลัพธ์จะเป็นอย่างไร?",
    "context": "CREATE TABLE table_26842217_8 (result VARCHAR, site VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_26842217_8 WHERE site = \"Sanford Stadium • Athens, GA\"",
    "question_en": "If the site is sanford stadium • athens, ga, what is the date?",
    "question_th": "หากสถานที่นั้นเป็นสนามกีฬาแซนฟอร์ด • เอเธนส์ จอร์เจีย วันที่เท่าไหร่?",
    "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_en": "What is the production code for the movie with 4.32 million U.S. viewers?",
    "question_th": "รหัสการผลิตสำหรับภาพยนตร์ที่มีผู้ชม 4.32 ล้านคนในสหรัฐฯ คืออะไร?",
    "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_en": "How many times was Louisiana-Monroe a visiting team?",
    "question_th": "ลุยเซียนา-มอนโรเป็นทีมเยือนกี่ครั้ง?",
    "context": "CREATE TABLE table_26842217_6 (time VARCHAR, visiting_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_26842217_6 WHERE visiting_team = \"South Florida\"",
    "question_en": "List all dates where South Florida was a visiting team.",
    "question_th": "ระบุวันที่ทั้งหมดที่ South Florida เป็นทีมเยือน",
    "context": "CREATE TABLE table_26842217_6 (date VARCHAR, visiting_team VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_26842217_6 WHERE visiting_team = \"#7 Oregon\"",
    "question_en": "How many times was #7 Oregon a visiting team?",
    "question_th": "#7 Oregon เป็นทีมเยือนกี่ครั้ง?",
    "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_en": "List all home teams when Western Kentucky was the visiting team.",
    "question_th": "รายชื่อทีมเจ้าบ้านทั้งหมดเมื่อ Western Kentucky เป็นทีมเยือน",
    "context": "CREATE TABLE table_26842217_6 (home_team VARCHAR, visiting_team VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_26842217_6 WHERE home_team = \"Kentucky\"",
    "question_en": "List all times with Kentucky as the home team.",
    "question_th": "รายชื่อเวลาทั้งหมดโดยมีเคนตักกี้เป็นเจ้าบ้าน",
    "context": "CREATE TABLE table_26842217_6 (time VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_26847237_3 WHERE opposition = \"Mid Canterbury\"",
    "question_en": "What is the score when the opposition is mid canterbury?",
    "question_th": "เมื่อคู่แข่งอยู่กลางแคนเทอร์เบอรี่สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_26847237_3 (score VARCHAR, opposition VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_26847237_3 WHERE opposition = \"East Coast\"",
    "question_en": "what is the home team when the opposition is east coast?",
    "question_th": "เจ้าบ้านจะเป็นเช่นไรเมื่อฝ่ายตรงข้ามอยู่ฝั่งตะวันออก?",
    "context": "CREATE TABLE table_26847237_3 (home_team VARCHAR, opposition VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_26847237_3 WHERE opposition = \"Wairarapa Bush\"",
    "question_en": "What is the home team when the opposition is wairarapa bush?",
    "question_th": "เจ้าบ้านจะเป็นอย่างไรเมื่อฝ่ายตรงข้ามคือไวราปาบุช?",
    "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_en": "what is the home team when the round # is round 1?",
    "question_th": "ทีมเจ้าบ้านเมื่อรอบ # เป็นรอบ 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_en": "Who is the opposition when the score is 37 - 28?",
    "question_th": "ฝ่ายตรงข้ามเมื่อสกอร์ 37 – 28 คือใคร?",
    "context": "CREATE TABLE table_26847237_3 (opposition VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_26847237_3 WHERE opposition = \"Mid Canterbury\"",
    "question_en": "What is the location when the opposition is mid canterbury?",
    "question_th": "ตำแหน่งไหนที่ฝ่ายตรงข้ามอยู่กลางแคนเทอร์เบอรี?",
    "context": "CREATE TABLE table_26847237_3 (location VARCHAR, opposition VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_26847237_1 WHERE round__number = \"Round 7\"",
    "question_en": "What was the score in round 7?",
    "question_th": "คะแนนในรอบที่ 7 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_26847237_1 (score VARCHAR, round__number VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_26847237_1 WHERE opposition = \"Buller\"",
    "question_en": "Who was the home team when the opposition was Buller?",
    "question_th": "เจ้าบ้านใครเป็นเมื่อฝ่ายตรงข้ามเป็นบุลเลอร์?",
    "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_en": "Was it a win or loss for Wanganui in round 3?",
    "question_th": "วังกานุ้ยยก 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_en": "What was the location when the opposition was East Coast?",
    "question_th": "สถานที่ใดเมื่อฝ่ายค้านคือฝั่งตะวันออก?",
    "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_en": "What was the score when the opposition was West Coast in Wanganui?",
    "question_th": "เมื่อฝ่ายตรงข้ามเป็นเวสต์โคสต์ในวังกานุยสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_26847237_1 (score VARCHAR, opposition VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT win_loss FROM table_26847237_1 WHERE location = \"Paeroa\"",
    "question_en": "Was it a win or a loss for Wanganui in Paeroa?",
    "question_th": "มันเป็นชัยชนะหรือความพ่ายแพ้ของ Wanganui ใน 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_en": "What is every original air date for series# of 26?",
    "question_th": "ซีรีส์ # 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_en": "Who are the directors of the episode in series # 54?",
    "question_th": "ใครคือผู้กำกับตอนในซีรีส์ # 54?",
    "context": "CREATE TABLE table_26866233_1 (director VARCHAR, series__number VARCHAR)"
  },
  {
    "answer": "SELECT writer FROM table_26866233_1 WHERE director = \"Gene Reynolds\"",
    "question_en": "The episode where the director is Gene Reynolds has who as the writer?",
    "question_th": "ตอนที่ผู้กำกับคือ ยีน เรย์โนลด์ส ใครเป็นคนเขียนบท?",
    "context": "CREATE TABLE table_26866233_1 (writer VARCHAR, director VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_26866233_1 WHERE original_airdate = \"December22,1996\"",
    "question_en": "The episode with the original airdate December22,1996 has what title? ",
    "question_th": "ตอนที่ออกอากาศตอนแรก 22 ธันวาคม 2539 มีชื่อเรื่องว่าอะไร?",
    "context": "CREATE TABLE table_26866233_1 (title VARCHAR, original_airdate VARCHAR)"
  },
  {
    "answer": "SELECT original_airdate FROM table_26866299_1 WHERE writer = \"Michael Glassberg\"",
    "question_en": "What was the original air date of the episode written by michael glassberg?",
    "question_th": "วันที่ออกอากาศดั้งเดิมของตอนที่เขียนโดย 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_en": "What was the original air date for episode number 96 in the series?",
    "question_th": "ตอนที่ 96 ของซีรีส์นี้ออกอากาศตอนแรกเมื่อใด",
    "context": "CREATE TABLE table_26866299_1 (original_airdate VARCHAR, series__number VARCHAR)"
  },
  {
    "answer": "SELECT writer FROM table_26866434_1 WHERE series__number = 122",
    "question_en": "Who wrote episode 122 in the series?",
    "question_th": "ใครเป็นคนเขียนตอนที่ 122 ในซีรีส์นี้?",
    "context": "CREATE TABLE table_26866434_1 (writer VARCHAR, series__number VARCHAR)"
  },
  {
    "answer": "SELECT director FROM table_26866519_1 WHERE series__number = 201",
    "question_en": "Who directed series episode number 201?",
    "question_th": "ใครกำกับซีรีส์ตอนที่ 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_en": "What are the original air date(s) for season episode 20?",
    "question_th": "ซีซั่นตอนที่ 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_en": "How many episodes are directed by ricardo mendez matta?",
    "question_th": "ริคาร์โด้ เมนเดซ มัตตา กำกับกี่ตอน",
    "context": "CREATE TABLE table_26866519_1 (season__number VARCHAR, director VARCHAR)"
  },
  {
    "answer": "SELECT MIN(points) FROM table_26882866_1 WHERE standing = \"5th\"",
    "question_en": "Name the leaast points for standing 5th",
    "question_th": "ตั้งชื่อจุดต่ำสุดสำหรับการยืนอันดับที่ 5",
    "context": "CREATE TABLE table_26882866_1 (points INTEGER, standing VARCHAR)"
  },
  {
    "answer": "SELECT MIN(camper) FROM table_26894949_2 WHERE puma = \"12\"",
    "question_en": "If puma is 12, what is camper?",
    "question_th": "ถ้า Puma อายุ 12 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_en": "In how many events was Puma 20 and abu dhabi 30?",
    "question_th": "พูม่า 20 และ อาบูดาบี 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_en": "How many time was the distance Abu Dhabi?",
    "question_th": "ระยะทางอาบูดาบีคือกี่ชั่วโมง?",
    "context": "CREATE TABLE table_26894949_2 (sanya VARCHAR, distance VARCHAR)"
  },
  {
    "answer": "SELECT MAX(Ends) AS lost FROM table_26912584_2",
    "question_en": "What is the largest amount of ends lost?",
    "question_th": "จำนวนการสูญเสียที่มากที่สุดคือเท่าใด?",
    "context": "CREATE TABLE table_26912584_2 (Ends INTEGER)"
  },
  {
    "answer": "SELECT skip FROM table_26912584_2 WHERE country = Sweden",
    "question_en": "When sweden is the country who is the skip?",
    "question_th": "เมื่อสวีเดนเป็นประเทศที่ข้าม?",
    "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_en": "Who wrote the story viewed by 0.53 million viewers?",
    "question_th": "ใครเป็นคนเขียนเรื่องราวที่มีผู้ชม 0.53 ล้านคน?",
    "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_en": "How many viewers watched the episode with a story by david simon & mari kornhauser?",
    "question_th": "มีผู้ชมกี่คนที่รับชมตอนนี้ซึ่งมีเรื่องราวโดย 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_en": "How many entries are there for u.s. viewers (millions) for the episode directed by rob bailey?",
    "question_th": "มีรายการสำหรับผู้ชมของเรากี่รายการ (ล้าน) สำหรับตอนที่กำกับโดย 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_en": "What is the date the episode directed by rob bailey aired?",
    "question_th": "ตอนที่กำกับโดย rob bailey ออกอากาศวันที่เท่าไร?",
    "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_en": "WHich team had dave penney as an incoming manager",
    "question_th": "ทีมไหนมีเดฟ เพนนีย์เป็นผู้จัดการทีมคนใหม่",
    "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_en": "What was the manner of departure for notts county with an incoming manager of martin allen",
    "question_th": "อะไรคือลักษณะการจากไปของน็อตต์ส เคาน์ตี้ โดยมีผู้จัดการทีมคนใหม่ของมาร์ติน อัลเลน",
    "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_en": "How many teams had gary megson as an incoming manager",
    "question_th": "มีกี่ทีมที่มีแกรี่ เม็กสันเป็นผู้จัดการทีมคนใหม่",
    "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_en": "who was the incoming manager for the 12th position in the table",
    "question_th": "ซึ่งเป็นผู้จัดการทีมคนใหม่อันดับที่ 12 ของตาราง",
    "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_en": "How tall is the player from farmington, ky?",
    "question_th": "ผู้เล่นจากฟาร์มิงตันสูงเท่าไหร่ ไค?",
    "context": "CREATE TABLE table_26916717_1 (height VARCHAR, home_town VARCHAR)"
  },
  {
    "answer": "SELECT team_school FROM table_26916717_1 WHERE name = \"Adrian Smith\"",
    "question_en": "Where did adrian smith go to college?",
    "question_th": "Adrian Smith เข้าเรียนวิทยาลัยที่ไหน?",
    "context": "CREATE TABLE table_26916717_1 (team_school VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_26916717_1 WHERE team_school = \"California\"",
    "question_en": "What player attended california university?",
    "question_th": "ผู้เล่นคนใดเข้าเรียนที่มหาวิทยาลัยแคลิฟอร์เนีย?",
    "context": "CREATE TABLE table_26916717_1 (name VARCHAR, team_school VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_26916717_1 WHERE home_town = \"Purcell, OK\"",
    "question_en": "What is the name of the player from purcell, ok?",
    "question_th": "ผู้เล่นจากเพอร์เซลล์ชื่ออะไร โอเค?",
    "context": "CREATE TABLE table_26916717_1 (name VARCHAR, home_town VARCHAR)"
  },
  {
    "answer": "SELECT hebrew FROM table_26919_6 WHERE arabic = \"tisʕ-\"",
    "question_en": "Name the hebrew for  tisʕ-",
    "question_th": "ตั้งชื่อภาษาฮีบรูว่า tisʕ-",
    "context": "CREATE TABLE table_26919_6 (hebrew VARCHAR, arabic VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(tigrinya) FROM table_26919_6 WHERE arabic = \"χams-\"",
    "question_en": "Name the tigrinya for χams-",
    "question_th": "ตั้งชื่อทิกริญญาสำหรับ χams-",
    "context": "CREATE TABLE table_26919_6 (tigrinya VARCHAR, arabic VARCHAR)"
  },
  {
    "answer": "SELECT hebrew FROM table_26919_6 WHERE proto_semitic = \"*tišʻ-\"",
    "question_en": "Name the hebrew for *tišʻ-",
    "question_th": "ตั้งชื่อภาษาฮีบรูว่า *tišʻ-",
    "context": "CREATE TABLE table_26919_6 (hebrew VARCHAR, proto_semitic VARCHAR)"
  },
  {
    "answer": "SELECT arabic FROM table_26919_6 WHERE tigrinya = \"ħamuʃte\"",
    "question_en": "Name the arabic for  ħamuʃte",
    "question_th": "ตั้งชื่อภาษาอาหรับว่า ħamuʃte",
    "context": "CREATE TABLE table_26919_6 (arabic VARCHAR, tigrinya VARCHAR)"
  },
  {
    "answer": "SELECT sabaean FROM table_26919_6 WHERE arabic = \"sabʕ-\"",
    "question_en": "Name the sabaean for sabʕ-",
    "question_th": "ตั้งชื่อซะบะอันสำหรับ สะบะʕ-",
    "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_en": "Who is the incoming manager when the date of vacancy was 21 march 2011?",
    "question_th": "ผู้จัดการคนใหม่คือใครเมื่อตำแหน่งว่างคือวันที่ 21 มีนาคม 2554?",
    "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_en": "What is the position in table when the date of vacancy was 4 january 2011?",
    "question_th": "ตำแหน่งในตารางเมื่อตำแหน่งว่างคือวันที่ 4 มกราคม 2554 คืออะไร?",
    "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_en": "What is the team when the incoming manager is martin allen?",
    "question_th": "ทีมจะเป็นอย่างไรเมื่อผู้จัดการทีมคนใหม่คือ มาร์ติน อัลเลน?",
    "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_en": "Who is the incoming manager when the date of appointment is 9 march 2011?",
    "question_th": "ผู้จัดการคนใหม่คือใครเมื่อได้รับการแต่งตั้งคือวันที่ 9 มีนาคม 2554?",
    "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_en": "What is the team when the date of appointment is 23 march 2011?",
    "question_th": "ทีมงานอะไรเมื่อได้รับการแต่งตั้งคือวันที่ 23 มีนาคม 2554?",
    "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_en": "what is the date of appointment  11 june 2010?",
    "question_th": "นัดวันที่ 11 มิถุนายน 2553 คือวันที่เท่าไหร่?",
    "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_en": "What is the depth at the UTC time of 12:19:36?",
    "question_th": "ความลึก ณ เวลา UTC คือ 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_en": "What is the date for the UTC time of 03:15:46?",
    "question_th": "วันที่สำหรับเวลา UTC คือ 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_en": "What is the title for episode number 30?",
    "question_th": "ตอนที่ 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_en": "What is the % identity to C7orf38 of the animal whose genus & species is Mus Musculus?",
    "question_th": "% เอกลักษณ์ของ C7orf38 ของสัตว์ที่มีสกุลและสปีชีส์คือ 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_en": "What is the length (AA) of the animal whose NCBI accession number is CAM15594.1?",
    "question_th": "สัตว์ที่มีเลขทะเบียน NCBI คือ CAM15594.1 มีความยาว (AA) เท่ากับเท่าใด",
    "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_en": "What is the % similarity to C7orf38 of the animal whose % identity to C7orf38 is 81?",
    "question_th": "% ความคล้ายคลึงกับ C7orf38 ของสัตว์ที่มี % ความเป็นเอกลักษณ์ของ C7orf38 คือ 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_en": "What is the common name of the animal whose length (AA) is 1323?",
    "question_th": "สัตว์ที่มีความยาว (AA) เท่ากับ 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_en": "What is the % identity to C7orf38 of the animal whose common name is rat?",
    "question_th": "% ข้อมูลประจำตัวของ C7orf38 ของสัตว์ที่มีชื่อสามัญว่าหนูคืออะไร?",
    "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_en": "What is the genus & species of the animal whose accession number is XP_002439156.1?",
    "question_th": "สัตว์ที่มีหมายเลขภาคยานุวัติ 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_en": "How many episodes were written by Alison McDonald?",
    "question_th": "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_en": "How many viewers in millions did the Alison McDonald episode get?",
    "question_th": "ตอนของ Alison McDonald มีผู้ชมกี่ล้านคน?",
    "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_en": "What is the p max ( bar ) for the 6876 f bolt ( kgf )?",
    "question_th": "ค่า p max (bar) สำหรับโบลต์ 6876 f (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_en": "What is the  p1 diameter (mm) when .300 lapua magnum is the chambering?",
    "question_th": "เส้นผ่านศูนย์กลาง p1 (มม.) เป็นเท่าใดเมื่อบรรจุกระสุน .300 ลาปัว แมกนัม",
    "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_en": "What is the chambering for the 8339 f bolt ( kgf )?",
    "question_th": "แชมเบอร์สำหรับโบลต์ 8339 f ( 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_en": "What is the f bolt  for 11.35  p1 diameter (mm)?",
    "question_th": "f bolt สำหรับเส้นผ่านศูนย์กลาง 11.35 p1 (มม.) คืออะไร?",
    "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_en": "How many  external (cm 2 ) are there for the .338 lapua magnum chambering?",
    "question_th": "มีกระสุนภายนอกจำนวนเท่าใด (ซม. 2 ) สำหรับกระสุน .338 lapua magnum",
    "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_en": "With what type of chambering is the F bolt n (lbf) and the P max (bar) 3900?",
    "question_th": "F bolt n (lbf) และ 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_en": "What is the p max (bar) of the pistol with a P1 diameter of 9.70 mm?",
    "question_th": "ค่า p max (บาร์) ของปืนพกที่มีเส้นผ่านศูนย์กลาง P1 9.70 มม. คือเท่าใด",
    "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_en": "What is the p max (bar) in the pistol where the chambering is .45 ACP?",
    "question_th": "ค่า p max (บาร์) ในปืนพกที่กระสุนอยู่ที่ .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_en": "What is the P max (bar) of the pistol with a P1 diameter of 12.09 mm?",
    "question_th": "P max (แท่ง) ของปืนพกที่มีเส้นผ่านศูนย์กลาง P1 12.09 มม. คือเท่าไร?",
    "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_en": "Who was the  incoming manager for the date of appointment of 15 january 2011?",
    "question_th": "ใครคือผู้จัดการคนใหม่ในวันที่ได้รับการแต่งตั้งในวันที่ 15 มกราคม 2554?",
    "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_en": "What is the date of appointment for the date of vacancy of 22 august 2010?",
    "question_th": "วันที่ได้รับการแต่งตั้งคือวันที่ตำแหน่งว่าง 22 สิงหาคม 2553 คืออะไร?",
    "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ârgu Mureş\"",
    "question_en": "Who was the outgoing manager for the team of târgu mureş?",
    "question_th": "ใครคือผู้จัดการทีม târgu mureş ที่กำลังจะลาออก?",
    "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_en": "How many date of appointments are there when the date of vacancy was 2 october 2010?",
    "question_th": "ได้รับการแต่งตั้งกี่วัน โดยตำแหน่งว่างคือวันที่ 2 ตุลาคม 2553",
    "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ţiu Reghecampf\"",
    "question_en": "Who was the outgoing manager when the incoming manager was laurenţiu reghecampf?",
    "question_th": "ใครคือผู้จัดการทีมที่จะลาออก ตอนที่ผู้จัดการทีมคนใหม่คือ ลอเรนติอู เรเกแคมป์ฟ์?",
    "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_en": "What was the manner of departure when the outgoing manager was andrea mandorlini?",
    "question_th": "ลักษณะการจากไปเมื่อผู้จัดการทีมที่กำลังจะลาออกคืออันเดรีย แมนดอร์ลินี่เป็นอย่างไร?",
    "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_en": "What is the capacity for dundee united?",
    "question_th": "ดันดี ยูไนเต็ด มีความสามารถแค่ไหน?",
    "context": "CREATE TABLE table_26980923_2 (capacity VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT total FROM table_26980923_2 WHERE stadium = \"Rugby Park\"",
    "question_en": "What was the total attendance at rugby park?",
    "question_th": "ผู้เข้าร่วมรักบี้พาร์คทั้งหมดเป็นเท่าใด",
    "context": "CREATE TABLE table_26980923_2 (total VARCHAR, stadium VARCHAR)"
  },
  {
    "answer": "SELECT MIN(total) FROM table_26980923_2 WHERE team = \"Kilmarnock\"",
    "question_en": "What is the total attended for kilmarnock?",
    "question_th": "จำนวนผู้เข้าร่วมคิลมาร์น็อคทั้งหมดเป็นเท่าใด?",
    "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_en": "How many times was the time 19' 38.87 115.219mph on Fri Aug 27?",
    "question_th": "กี่ครั้งที่เวลาที่ 19' 38.87 115.219mph ของ ศุกร์ 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_en": "If the time on Tues Aug 24 is 20' 49.46 108.709mph, what is the time on Fri Aug 27?",
    "question_th": "หากเวลาใน วันอังคารที่ 24 ส.ค. คือ 20' 49.46 108.709mph วันศุกร์ที่ 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 = \"—— No Time\"",
    "question_en": "If Wed Aug 25 is —— no time, what is Sat aug 21?",
    "question_th": "ถ้าวันพุธที่ 25 ส.ค. คือ —— ไม่มีเวลา วันเสาร์ที่ 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_en": "If the Rank is 10, what was the time on Sat aug 28?",
    "question_th": "ถ้าอันดับเป็น 10 วันเสาร์ที่ 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_en": "How many times was the time 20' 05.19 112.703mph on Thurs Aug 26th?",
    "question_th": "กี่ครั้งที่เวลาที่ 20' 05.19 112.703mph ของวันพฤหัสบดีที่ 26 ส.ค.?",
    "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_en": "If the time on Wed aug 25 was 20' 09.25 112.324mph, what was the time on sat Aug 28?",
    "question_th": "หากเวลาใน พุธที่ 25 ส.ค. คือ 20' 09.25 112.324 ไมล์ต่อชั่วโมง วันเสาร์ที่ 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_en": "How many times was tues 24 aug 19' 19.83 117.110mph?",
    "question_th": "กี่ครั้งที่ อังคาร 24 ส.ค. 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_en": "how many time is fri 27 aug 19' 38.87 115.219mph?",
    "question_th": "กี่โมง ศุกร์ 27 ส.ค. 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_en": "what is wed 25 aug when mon 23 aug is 26' 57.82 89.957mph?",
    "question_th": "วันพุธที่ 25 ส.ค. คืออะไร เมื่อวันจันทร์ที่ 23 ส.ค. คือ 26' 57.82 89.957 ไมล์ต่อชั่วโมง",
    "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_en": "What is thurs 26 aug when wed 25 aug is 19' 59.98 113.192mph?",
    "question_th": "พฤหัสบดีที่ 26 ส.ค. คืออะไร เมื่อพุธที่ 25 ส.ค. คือ 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_en": "what is mon 23 aug when fri 27 aug is 18' 59.25 119.226mph?",
    "question_th": "วันจันทร์ที่ 23 ส.ค. คืออะไร เมื่อวันศุกร์ที่ 27 ส.ค. คือ 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_en": "When 8 is the rank what is the Saturday August 21st?",
    "question_th": "เมื่อ 8 อยู่อันดับอะไร วันเสาร์ที่ 21 สิงหาคม คือ?",
    "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_en": "When 20' 58.50 107.929mph is Friday August 27th What is Tuesday 24th August?",
    "question_th": "เมื่อ 20' 58.50 107.929mph คือวันศุกร์ที่ 27 สิงหาคม วันอังคารที่ 24 สิงหาคมคืออะไร",
    "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_en": "When 21' 18.87 106.209mph is Tuesday August 24th what is Monday August 23rd?",
    "question_th": "เมื่อ 21' 18.87 106.209mph คือวันอังคารที่ 24 สิงหาคม วันจันทร์ที่ 23 สิงหาคมคืออะไร",
    "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_en": "When 21' 10.25 106.930mph is Tuesday August 24th what is Saturday August 29th?",
    "question_th": "เมื่อ 21' 10.25 106.930mph คือวันอังคารที่ 24 สิงหาคม วันเสาร์ที่ 29 สิงหาคมคืออะไร",
    "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_en": "When  21' 05.83 107.304mph is Wednesday August 25th what is Friday August 27th?",
    "question_th": "เมื่อ 21' 05.83 107.304mph คือวันพุธที่ 25 สิงหาคม วันศุกร์ที่ 27 สิงหาคมคืออะไร",
    "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_en": "When tom snow 250cc honda is the rider what is Monday August 23rd?",
    "question_th": "เมื่อทอม สโนว์ 250cc ฮอนด้าเป็นผู้ขับขี่ วันจันทร์ที่ 23 สิงหาคมคืออะไร?",
    "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_en": "The episode with the original airdate October 8, 2010, is directed by who?",
    "question_th": "ตอนที่ออกอากาศตอนแรก 8 ตุลาคม 2553 กำกับโดยใคร?",
    "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_en": "Who directed the episode with production code 693-004?",
    "question_th": "ใครกำกับตอนที่มีรหัสการผลิต 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_en": "The episode with production code 693-002, has how many original airdates?",
    "question_th": "ตอนรหัสผลิต 693-002 เดิมออกอากาศกี่เรื่อง?",
    "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_en": "What is the title of the episode whose original airdate is April 23, 2010?",
    "question_th": "ตอนที่ออกอากาศครั้งแรกคือวันที่ 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_en": "Who had the time of 22' 09.44 93.840mph on Tuesday August 24th?",
    "question_th": "ใครมีเวลา 22' 09.44 93.840mph ในวันอังคารที่ 24 สิงหาคม?",
    "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_en": "What is the L3 cache for the processor having a speed of 2.93 GHz?",
    "question_th": "แคช L3 สำหรับโปรเซสเซอร์ที่มีความเร็ว 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_en": "How many entries have a speed of exactly 2.53 GHz?",
    "question_th": "มีกี่รายการที่มีความเร็ว 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_en": "What is the speed of the model whose number is W3540?",
    "question_th": "รุ่น 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_en": "What was the Weds 25 Aug time for the driver whose Aug 27 time was 22' 23.97 101.065mph?",
    "question_th": "เวลาวันพุธที่ 25 ส.ค. ของคนขับซึ่งเวลา 27 ส.ค. คือ 22' 23.97 101.065 ไมล์ต่อชั่วโมง คือเท่าไร",
    "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_en": "What was the Sat 21 Aug time for the driver whose Thurs 26 Aug time was 20' 56.01 108.143mph?",
    "question_th": "เวลาวันเสาร์ที่ 21 สิงหาคม ของผู้ขับซึ่งเวลาวันพฤหัสบดีที่ 26 สิงหาคมคือ 20' 56.01 108.143 ไมล์ต่อชั่วโมง คือเท่าไร",
    "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_en": "What was the Sat 21 Aug time for the rider whose Tues 24 Aug time was 20' 38.40 109.680mph?",
    "question_th": "เวลาวันเสาร์ที่ 21 สิงหาคม ของผู้ขับขี่ที่มีวันอังคารที่ 24 สิงหาคม เวลา 20' 38.40 109.680mph คืออะไร",
    "context": "CREATE TABLE table_26986076_6 (sat_21_aug VARCHAR, tues_24_aug VARCHAR)"
  },
  {
    "answer": "SELECT area__km²_ FROM table_269888_1 WHERE population__2010_ = 53542",
    "question_en": "Name the area for population of 53542",
    "question_th": "ตั้งชื่อพื้นที่สำหรับประชากรจำนวน 53542 คน",
    "context": "CREATE TABLE table_269888_1 (area__km²_ VARCHAR, population__2010_ VARCHAR)"
  },
  {
    "answer": "SELECT no_of_s_barangay FROM table_269888_1 WHERE pop_density__per_km²_ = \"205.4\"",
    "question_en": "Name the number of barangay for 205.4 density",
    "question_th": "ตั้งชื่อจำนวนบารังไกสำหรับความหนาแน่น 205.4",
    "context": "CREATE TABLE table_269888_1 (no_of_s_barangay VARCHAR, pop_density__per_km²_ VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(fsb__mhz_) FROM table_269920_3 WHERE model = \"7140N\"",
    "question_en": "How many different FSB are there for the 7140N model?",
    "question_th": "มี FSB ที่แตกต่างกันกี่แบบสำหรับรุ่น 7140N?",
    "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_en": "How many different L2 cache numbers are there for the 7130M model?",
    "question_th": "หมายเลขแคช L2 ที่แตกต่างกันสำหรับรุ่น 7130M มีกี่หมายเลข",
    "context": "CREATE TABLE table_269920_3 (l2_cache__mb_ VARCHAR, model VARCHAR)"
  },
  {
    "answer": "SELECT MAX(l2_cache__mb_) FROM table_269920_3",
    "question_en": "What's the maximal L3 cache for any of the models given?",
    "question_th": "แคช L3 สูงสุดสำหรับรุ่นใด ๆ ที่ให้มาคือเท่าใด",
    "context": "CREATE TABLE table_269920_3 (l2_cache__mb_ INTEGER)"
  },
  {
    "answer": "SELECT MIN(tdp__w_) FROM table_269920_3 WHERE model = \"7130N\"",
    "question_en": "What's the TDP for the 7130N model?",
    "question_th": "TDP สำหรับรุ่น 7130N คือเท่าใด",
    "context": "CREATE TABLE table_269920_3 (tdp__w_ INTEGER, model VARCHAR)"
  },
  {
    "answer": "SELECT l2_cache__mb_ FROM table_269920_3 WHERE model = \"7140N\"",
    "question_en": "What's the L2 cache for the 7140N model?",
    "question_th": "L2 cache สำหรับรุ่น 7140N คืออะไร",
    "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_en": "what is the cfl team where college is waterloo?",
    "question_th": "ทีม cfl อยู่ที่ไหนวิทยาลัยคือวอเตอร์ลู?",
    "context": "CREATE TABLE table_26996293_4 (cfl_team VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_26996293_1 WHERE player = \"Jim Bennett\"",
    "question_en": "What college did Jim Bennett attend?",
    "question_th": "Jim Bennett เข้าเรียนที่วิทยาลัยใด",
    "context": "CREATE TABLE table_26996293_1 (college VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT cfl_team FROM table_26996293_1 WHERE player = \"Barry Jamieson\"",
    "question_en": "What CFL Team was Barry Jamieson a part of?",
    "question_th": "Barry Jamieson เป็นส่วนหนึ่งของทีม CFL ใด",
    "context": "CREATE TABLE table_26996293_1 (cfl_team VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_26996293_1 WHERE position = \"DE\"",
    "question_en": "What college did the player who played DE go to?",
    "question_th": "ผู้เล่นที่เล่น DE เข้าเรียนที่วิทยาลัยใด",
    "context": "CREATE TABLE table_26996293_1 (college VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT MAX(pick__number) FROM table_26996293_1 WHERE player = \"Barry Jamieson\"",
    "question_en": "What was Barry Jamieson's pick number?",
    "question_th": "หมายเลขเลือกของ Barry Jamieson คืออะไร?",
    "context": "CREATE TABLE table_26996293_1 (pick__number INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_26996293_1 WHERE player = \"Bob LaRose\"",
    "question_en": "What college did Bob Larose attend?",
    "question_th": "Bob Larose เข้าเรียนที่วิทยาลัยใด",
    "context": "CREATE TABLE table_26996293_1 (college VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_26996293_2 WHERE college = \"British Columbia\"",
    "question_en": "where college is british columbia  what are all the player",
    "question_th": "ที่วิทยาลัยคือบริติชโคลัมเบีย ผู้เล่นทุกคนมีอะไรบ้าง",
    "context": "CREATE TABLE table_26996293_2 (player VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT pick__number FROM table_26996293_2 WHERE college = \"St. Francis Xavier\"",
    "question_en": " where college is st. francis xavier what are all the pick #",
    "question_th": " วิทยาลัยอยู่ที่ไหน ฟรานซิสซาเวียร์ ตัวเลือกทั้งหมดคืออะไร #",
    "context": "CREATE TABLE table_26996293_2 (pick__number VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_26996293_2 WHERE player = \"Jim Henshall\"",
    "question_en": "player is jim henshall what are all the position",
    "question_th": "ผู้เล่นคือ จิม เฮนแชล ทุกคนอยู่ในตำแหน่งอะไร",
    "context": "CREATE TABLE table_26996293_2 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_26996293_2 WHERE cfl_team = \"Edmonton (2)\"",
    "question_en": "where cfl team is edmonton (2) what are all the position",
    "question_th": "โดยที่ทีม cfl อยู่เอดมันตัน (2) ตำแหน่งทั้งหมดเป็นอย่างไร",
    "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_en": "where cfl team is winnipeg (3) via hamilton what are all the player",
    "question_th": "โดยที่ทีม cfl คือวินนิเพก (3) ผ่านแฮมิลตัน ผู้เล่นทั้งหมดคืออะไร",
    "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_en": "How many CFL teams drafted someone from mount allison college?",
    "question_th": "มีทีม CFL กี่ทีมที่ร่างคนจากวิทยาลัยเมาท์อัลลิสัน",
    "context": "CREATE TABLE table_26996293_3 (cfl_team VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_26996293_3 WHERE position = \"OG\"",
    "question_en": "What player drafted was an OG?",
    "question_th": "ผู้เล่นคนใดที่ถูกดราฟท์เป็น OG?",
    "context": "CREATE TABLE table_26996293_3 (player VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_26996293_7 WHERE player = \"Bill Simmons\"",
    "question_en": "What is the position of the player bill simmons?",
    "question_th": "บิล ซิมมอนส์ นักเตะอยู่ตำแหน่งอะไร?",
    "context": "CREATE TABLE table_26996293_7 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_26996293_7 WHERE cfl_team = \"Saskatchewan (7)\"",
    "question_en": "What is the position of cfl team saskatchewan (7)?",
    "question_th": "ตำแหน่งของทีม cfl ซัสแคตเชวัน (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_en": "How many times was player brian currie picked?",
    "question_th": "ผู้เล่น Brian Currie ถูกเลือกกี่ครั้ง?",
    "context": "CREATE TABLE table_26996293_7 (pick__number VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_26996293_7 WHERE pick__number = 54",
    "question_en": "What position was pick # 54?",
    "question_th": "ตำแหน่งใดที่ถูกเลือก # 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_en": "What is the pick # of cfl team bc lions (7)",
    "question_th": "อะไรคือตัวเลือก # ของทีม cfl 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_en": "What is the college where player terry moss attended?",
    "question_th": "วิทยาลัยที่ผู้เล่น เทอร์รี่ มอส เข้าเรียนคือวิทยาลัยอะไร?",
    "context": "CREATE TABLE table_26996293_7 (college VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT outgoing_manager FROM table_26998135_2 WHERE team = \"Kasımpaşa\"",
    "question_en": "What is the outgoing manager for the team kasımpaşa?",
    "question_th": "ผู้จัดการทีมที่จะออกจากทีม คาซิมปาชา คือใคร?",
    "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_en": "Who is the replaced by when the date of vacancy is 27 december 2010?",
    "question_th": "ใครจะเข้ามาแทนที่เมื่อตำแหน่งว่างคือวันที่ 27 ธันวาคม 2553?",
    "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_en": "What is the manner of departure for the date of appointment 24 may 2010?",
    "question_th": "วันที่นัดหมาย 24 พฤษภาคม 2553 จะออกเดินทางด้วยวิธีใด?",
    "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_en": "What is the date of appointment when the outgoing manager was mustafa denizli?",
    "question_th": "วันที่ได้รับการแต่งตั้งเมื่อผู้จัดการทีมที่กำลังจะหมดวาระคือมุสตาฟา เดนิซลี?",
    "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_en": "What is the date of appointment when the date of vacancy is 15 march 2011?",
    "question_th": "ได้รับการแต่งตั้งเมื่อใด โดยตำแหน่งว่างคือวันที่ 15 มีนาคม 2554?",
    "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_en": "What is the lowest population in which 28.0% are democrat?",
    "question_th": "ประชากรต่ำสุดที่ 28.0% เป็นพรรคเดโมแครตคืออะไร?",
    "context": "CREATE TABLE table_27003223_4 (population INTEGER, democratic VARCHAR)"
  },
  {
    "answer": "SELECT democratic FROM table_27003223_4 WHERE registered_voters = \"67.8%\"",
    "question_en": "what is the percentage of democratic voters in which the registered voters is 67.8%?",
    "question_th": "เปอร์เซ็นต์ของผู้มีสิทธิเลือกตั้งตามระบอบประชาธิปไตยซึ่งผู้ลงคะแนนที่ลงทะเบียนคือ 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_en": "What is the percentage of registered voters in which the d-r spread is +10.4%?",
    "question_th": "เปอร์เซ็นต์ของผู้ลงคะแนนที่ลงทะเบียนซึ่ง DR Spread คือ +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_en": "What is the percentage of registered voters in which the d-r spread is +14.3%?",
    "question_th": "เปอร์เซ็นต์ของผู้ลงคะแนนที่ลงทะเบียนซึ่ง DR Spread คือ +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_en": "What is the percentage of republican voters in which the d-r spread is -14.1%?",
    "question_th": "เปอร์เซ็นต์ของผู้มีสิทธิเลือกตั้งของพรรครีพับลิกันที่ DR Spread อยู่ที่ -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_en": "What is the percentage of \"no party preference\" where the democratic percentage is 24.8%?",
    "question_th": "เปอร์เซ็นต์ของการ \"ไม่เลือกพรรค\" โดยที่เปอร์เซ็นต์ประชาธิปไตยคือ 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_en": "How many trains depart at 17:30?",
    "question_th": "รถไฟออกเวลา 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_en": "How many trains arrive at 11:00?",
    "question_th": "รถไฟขบวนไหนมาถึงเวลา 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_en": "What is the no party preference when the city is murrieta?",
    "question_th": "อะไรคือสิ่งที่ไม่ชอบปาร์ตี้เมื่อเมืองนี้คือ 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_en": "What is the no party preference when other is 10.1%?",
    "question_th": "อะไรคือความชอบแบบไม่มีฝ่ายใดเมื่ออีกฝ่ายมี 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_en": "What is the no party preference when republican is 45.3%?",
    "question_th": "อะไรคือสิ่งที่ไม่มีการตั้งค่าพรรคเมื่อพรรครีพับลิกันอยู่ที่ 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_en": "What is other when no party preference is 19.1%?",
    "question_th": "จะเป็นอะไรอีกเมื่อไม่มีฝ่ายที่ชอบ 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_en": "What is other when registered voters is 50.7%?",
    "question_th": "มีอะไรอีกบ้างเมื่อผู้ลงคะแนนที่ลงทะเบียนคือ 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_en": "What is the district with the incumbent Charlie Norwood?",
    "question_th": "เขตที่มีผู้ดำรงตำแหน่งชาร์ลี นอร์วูดอยู่ที่เขตใด",
    "context": "CREATE TABLE table_27021001_1 (district VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT elected FROM table_27021001_1 WHERE incumbent = \"Cynthia McKinney\"",
    "question_en": "What is the year elected for incumbent Cynthia Mckinney?",
    "question_th": "ปีที่ได้รับเลือกให้ดำรงตำแหน่ง 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_en": "How many incumbents were the result of sanford bishop (d) 57% joseph mccormick (r) 43%?",
    "question_th": "แซนฟอร์ดบิชอป (ง) 57% โจเซฟ แมคคอร์มิก (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_en": "What is the status for district georgia's 10th?",
    "question_th": "สถานะของเขตจอร์เจียที่ 10 คืออะไร?",
    "context": "CREATE TABLE table_27021001_1 (status VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_27021001_1 WHERE district = \"Georgia's 1st\"",
    "question_en": "What is the result of districk georgia's 1st?",
    "question_th": "ผลการแข่งขันที่ 1 ของ districk georgia คืออะไร?",
    "context": "CREATE TABLE table_27021001_1 (result VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_27021001_1 WHERE result = \"Mac Collins (R) unopposed\"",
    "question_en": "What is the district with the result mac collins (r) unopposed?",
    "question_th": "เขตใดที่มีผลการแข่งขัน mac collins (r) ไม่มีการคัดค้าน?",
    "context": "CREATE TABLE table_27021001_1 (district VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(title) FROM table_2701851_3 WHERE production_code = \"201a\"",
    "question_en": "how many times is the production code is 201a?",
    "question_th": "รหัสการผลิตคือ 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_en": "Name the most overall rank for czech republic",
    "question_th": "บอกอันดับโดยรวมมากที่สุดของสาธารณรัฐเช็ก",
    "context": "CREATE TABLE table_2701625_1 (overall_rank INTEGER, country VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(male_rank) FROM table_2701625_1 WHERE country = \"Fiji\"",
    "question_en": "Name the total number of male rank for fiji",
    "question_th": "ตั้งชื่อจำนวนยศชายทั้งหมดสำหรับฟิจิ",
    "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_en": "Name the most female life expectancy for djibouti",
    "question_th": "ตั้งชื่ออายุขัยของผู้หญิงมากที่สุดสำหรับจิบูตี",
    "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_en": "Name the most female life expectancy for overall rank of 61",
    "question_th": "ตั้งชื่ออายุขัยของผู้หญิงมากที่สุดสำหรับอันดับโดยรวมที่ 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_en": "Name the most male life expectancy for pakistan",
    "question_th": "ตั้งชื่ออายุขัยของผู้ชายมากที่สุดในปากีสถาน",
    "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_en": "What is the name of episode # 10a?",
    "question_th": "ตอนที่ # 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_en": "What is the name of the episode written by Michael Price?",
    "question_th": "ตอนที่เขียนโดย 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_en": "What was the title for the episode with the production code 404a?",
    "question_th": "ชื่อเรื่องของตอนที่มีรหัสการผลิต 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_en": "What is the production code for the episode written by Kat Likkel & Denise Downer?",
    "question_th": "รหัสการผลิตสำหรับตอนที่เขียนโดย 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_en": "Who was the director for the Episode number in season 10a?",
    "question_th": "ใครเป็นผู้กำกับหมายเลขตอนในซีซั่น 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_en": "Who wrote the episode in the series 46b?",
    "question_th": "ใครเป็นคนเขียนตอนในซีรีส์ 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_en": "How many production codes did the episode number in series 46b have?",
    "question_th": "หมายเลขตอนในซีรีส์ 46b มีรหัสการผลิตทั้งหมดกี่รหัส",
    "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_en": "How many directors directed an episode that reached 2.48 million viewers?",
    "question_th": "มีผู้กำกับกี่คนที่กำกับตอนที่มีผู้ชม 2.48 ล้านคน?",
    "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_en": " Who represents district 41? ",
    "question_th": " ใครเป็นตัวแทนของเขต 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_en": "For delegate is mcdonough, patrick l. pat mcdonough, specify all the district.",
    "question_th": "สำหรับผู้รับมอบสิทธิ์คือ mcdonough, patrick l. แพท แมคดอนา ระบุทุกอำเภอ",
    "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_en": "where committee is environmental matters and district is 36 please specify all the delegate name",
    "question_th": "โดยคณะกรรมการเรื่องสิ่งแวดล้อม และเขต 36 โปรดระบุชื่อผู้รับมอบสิทธิ์ทั้งหมด",
    "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_en": "For democratic party, countries represented is montgomery and where committee is judiciary mention all the delegate name.",
    "question_th": "สำหรับพรรคประชาธิปไตย ประเทศที่เป็นตัวแทนคือมอนโกเมอรี และคณะกรรมการเป็นฝ่ายตุลาการระบุชื่อผู้แทนทั้งหมด",
    "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_en": "Where delegate is feldman, brian j. brian j. feldman, please specify all the party",
    "question_th": "โดยที่ผู้แทนคือเฟลด์แมน ไบรอัน เจ. ไบรอันเจ เฟลด์แมน โปรดระบุทุกฝ่าย",
    "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_en": "For delegate is gaines, tawanna p. tawanna gaines, please specify all the party.",
    "question_th": "สำหรับผู้รับมอบสิทธิ์จะได้รับ ตะวันนา ป. ตะวันนาได้รับ โปรดระบุทุกฝ่าย",
    "context": "CREATE TABLE table_27050336_7 (party VARCHAR, delegate VARCHAR)"
  },
  {
    "answer": "SELECT height FROM table_27067379_1 WHERE number_of_floors = 70",
    "question_en": "If the number of floors is 70, what is the height?",
    "question_th": "ถ้าจำนวนชั้นคือ 70 ความสูงคือเท่าไร?",
    "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_en": "if the completed is 2010, what is the number of floors?",
    "question_th": "ถ้าสร้างเสร็จปี 2553 กี่ชั้นครับ?",
    "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_en": "If the building is Costanera Center Torre 1, what is the height?",
    "question_th": "ถ้าอาคารเป็น Costanera Center Torre 1 มีความสูงเท่าไร?",
    "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_en": "How many positions does building Costanera Center Torre 1 have?",
    "question_th": "อาคาร Costanera Center Torre 1 มีกี่ตำแหน่ง?",
    "context": "CREATE TABLE table_27067379_1 (position VARCHAR, building VARCHAR)"
  },
  {
    "answer": "SELECT outgoing_manager FROM table_27057070_3 WHERE team = \"Simurq PFC\"",
    "question_en": "Who is the outgoing manager when the team is simurq pfc?",
    "question_th": "ใครคือผู้จัดการทีมที่จะลาออกเมื่อทีมซิมูร์คิว พีเอฟซี?",
    "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_en": "How many date of appointment entries are there when the team is khazar lankaran?",
    "question_th": "มีรายการนัดหมายกี่วันเมื่อทีมคาซาร์ลันคารัน?",
    "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_en": "What is the manner of departure when the replaced by is bahman hasanov?",
    "question_th": "ลักษณะของการเดินทางเมื่อถูกแทนที่โดยบาห์มาน ฮาซานอฟคืออะไร?",
    "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_en": "What was the overall record for the Pandas in the 2003-04 season? ",
    "question_th": " สถิติโดยรวมของแพนด้าในฤดูกาล 2003-04 คืออะไร?",
    "context": "CREATE TABLE table_27069503_2 (overall VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT conf_record FROM table_27069503_2 WHERE overall = \"33-4-1\"",
    "question_en": "What was the conference record in the season where the Pandas had an overall record of 33-4-1?",
    "question_th": "บันทึกการประชุมในฤดูกาลที่แพนด้ามีสถิติรวม 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_en": "Who was the coach of the Pandas when their overall record was 20-6-2?",
    "question_th": "ใครคือโค้ชของทีมแพนด้าเมื่อสถิติรวม 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_en": "What was the conference record for the Pandas when they were first in the standings in the 2003-04 season? ",
    "question_th": " อะไรคือสถิติการประชุมของทีมแพนด้าเมื่อพวกเขาอยู่ในอันดับแรกในฤดูกาล 2003-04?",
    "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_en": "What was the overall record for the Pandas when their conference record was 4-1-1? ",
    "question_th": " สถิติโดยรวมของแพนด้าเมื่อสถิติการประชุมคือ 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_en": "In what season was the conference record for the Pandas 15-1-1? ",
    "question_th": " บันทึกการประชุมแพนด้า 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_en": "how many times is the week # is audition?",
    "question_th": "สัปดาห์ที่ #ออดิชั่นมีกี่ครั้ง?",
    "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_en": "How many episodes are numbered 14 in the series?",
    "question_th": "ซีรี่ย์มีทั้งหมด 14 ตอน กี่ตอนคะ?",
    "context": "CREATE TABLE table_27081956_1 (episode VARCHAR, series_no VARCHAR)"
  },
  {
    "answer": "SELECT format FROM table_2709_4 WHERE frequency = \"105.5 FM\"",
    "question_en": "What is the format of 105.5 fm?",
    "question_th": "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_en": "What is the market for KLRJ?",
    "question_th": "ตลาดสำหรับ 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_en": "What is the format for the station owned by Dakota Broadcasting?",
    "question_th": "รูปแบบของสถานีที่เป็นของ Dakota Broadcasting คืออะไร?",
    "context": "CREATE TABLE table_2709_4 (format VARCHAR, owner VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_27091128_2 WHERE replaced_by = \"Ercan Ertemçöz\"",
    "question_en": "What team's manager was replaced by Ercan Ertemçöz?",
    "question_th": "ผู้จัดการทีมใดถูกแทนที่โดย Ercan Ertemçöz?",
    "context": "CREATE TABLE table_27091128_2 (team VARCHAR, replaced_by VARCHAR)"
  },
  {
    "answer": "SELECT date_of_appointment FROM table_27091128_2 WHERE outgoing_manager = \"Kadir Özcan\"",
    "question_en": "What was the date of appointment for the manager replacing Kadir Özcan?",
    "question_th": "วันที่ได้รับการแต่งตั้งให้เป็นผู้จัดการทีมแทนคาดีร์ เอิซคานคือเมื่อใด?",
    "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_en": "Which manager was appointed on 08.06.2010?",
    "question_th": "ผู้จัดการคนใดได้รับการแต่งตั้งเมื่อ 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_en": "Who replaced the previous manager of Altay?",
    "question_th": "ใครมาแทนที่ผู้จัดการทีมคนก่อนของอัลไต?",
    "context": "CREATE TABLE table_27091128_2 (replaced_by VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT date_of_appointment FROM table_27091128_2 WHERE replaced_by = \"Ergün Penbe\"",
    "question_en": "What was date of appointment for Ergün Penbe? ",
    "question_th": " แอร์กุน เปนเบ ได้รับการแต่งตั้งเมื่อใด?",
    "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_en": "What is the overall total for the Omaha Nighthawks?",
    "question_th": "ผลรวมโดยรวมของ 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_en": "Which team has the home average of 18125?",
    "question_th": "ทีมไหนมีค่าเฉลี่ยเจ้าบ้านอยู่ที่ 18125?",
    "context": "CREATE TABLE table_27094070_4 (team VARCHAR, home_avg VARCHAR)"
  },
  {
    "answer": "SELECT MAX(home_total) FROM table_27094070_4",
    "question_en": "What was the highest home total?",
    "question_th": "ยอดรวมบ้านสูงสุดคือเท่าไร?",
    "context": "CREATE TABLE table_27094070_4 (home_total INTEGER)"
  },
  {
    "answer": "SELECT COUNT(overall_gms) FROM table_27094070_4 WHERE overall_avg = 12796",
    "question_en": "How many games had an average of 12796?",
    "question_th": "มีกี่เกมที่มีค่าเฉลี่ย 12,796?",
    "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_en": "Who was the stage winner of the letua cycling team on stage 2? ",
    "question_th": " ใครคือผู้ชนะบนเวทีของทีมจักรยานเลทัวบนเวทีที่ 2?",
    "context": "CREATE TABLE table_27112708_2 (stage VARCHAR, team_classification VARCHAR)"
  },
  {
    "answer": "SELECT mountains_classification FROM table_27112708_2 WHERE stage = 3",
    "question_en": "Which mountains classification is listed under stage 3?",
    "question_th": "การจำแนกประเภทภูเขาใดบ้างที่อยู่ในระยะที่ 3",
    "context": "CREATE TABLE table_27112708_2 (mountains_classification VARCHAR, stage VARCHAR)"
  },
  {
    "answer": "SELECT general_classification FROM table_27112708_2 WHERE stage = 4",
    "question_en": "Who is listed under general classification on stage 4?",
    "question_th": "ใครบ้างที่อยู่ในการจัดประเภททั่วไปในระยะที่ 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_en": "Who wrote the episodes with 7.70 u.s. viewers (million) ?",
    "question_th": "ใครเขียนตอนที่มีผู้ชม 7.70 คน (ล้าน) ?",
    "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_en": "What original air date has 5.85 u.s. viewers (million)?",
    "question_th": "ออกอากาศตอนแรกวันไหนมีผู้ชม 5.85 คน (ล้านคน)?",
    "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_en": "What's the title in the number 10 in the season?",
    "question_th": "แชมป์หมายเลข 10 ของฤดูกาลนี้ชื่ออะไร?",
    "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_en": "If the position in table is 10th, and the manner of departure was resigned, what was the date of vacancy?",
    "question_th": "ถ้าตำแหน่งในตารางคืออันดับที่ 10 และลาออกจากตำแหน่ง จะว่างเมื่อใด",
    "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_en": "If the incoming head coach is Carlos Azenha, what is the date of vacancy?",
    "question_th": "ถ้าเฮดโค้ชที่เข้ามาคือ คาร์ลอส อาเซนญา จะว่างวันไหน?",
    "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ão de Leiria\"",
    "question_en": "If the team is união de leiria, what is the date of appointment?",
    "question_th": "ถ้าทีม união de leiria นัดวันที่เท่าไหร่คะ?",
    "context": "CREATE TABLE table_27133147_3 (date_of_appointment VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT 2003 FROM table_27146868_1 WHERE 1999 = \"2.1\"",
    "question_en": "What is 2003 when 1999 is 2.1?",
    "question_th": "2003 คืออะไรเมื่อ 1999 เป็น 2.1?",
    "context": "CREATE TABLE table_27146868_1 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2010 FROM table_27146868_1 WHERE 2003 = \"5.6\"",
    "question_en": "What is 2010 when 2003 is 5.6?",
    "question_th": "2010 คืออะไรเมื่อ 2003 เป็น 5.6",
    "context": "CREATE TABLE table_27146868_1 (Id VARCHAR)"
  },
  {
    "answer": "SELECT greek_national_account FROM table_27146868_1 WHERE 1997 = \"6.1\"",
    "question_en": "What is the greek national account when 1997 is 6.1?",
    "question_th": "บัญชีระดับชาติของกรีกคืออะไรในปี 1997 เป็น 6.1",
    "context": "CREATE TABLE table_27146868_1 (greek_national_account VARCHAR)"
  },
  {
    "answer": "SELECT 2006 FROM table_27146868_1 WHERE 1997 = \"6.8\"",
    "question_en": "What is 2006 when 1997 is 6.8?",
    "question_th": "2549 คืออะไรเมื่อ 1997 เป็น 6.8",
    "context": "CREATE TABLE table_27146868_1 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2002 FROM table_27146868_1 WHERE 2009 = \"54.0\"",
    "question_en": "What is 2002 when 2009 is 54.0?",
    "question_th": "2002 คืออะไรเมื่อ 2009 เป็น 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_en": "If the NFL team is the Houston Oilers and the position is DT, who is the Pro team?",
    "question_th": "ถ้าทีม NFL คือ Houston Oilers และตำแหน่งคือ DT แล้วใครคือทีม Pro?",
    "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_en": "How many different players does the Washington Redskins have?",
    "question_th": "Washington Redskins มีผู้เล่นที่แตกต่างกันกี่คน?",
    "context": "CREATE TABLE table_27132791_3 (player VARCHAR, nfl_team VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_27132791_3 WHERE college = \"Vanderbilt\"",
    "question_en": "If the college is Vanderbilt, what is the position?",
    "question_th": "ถ้าวิทยาลัยคือแวนเดอร์บิลต์ตำแหน่งอะไร?",
    "context": "CREATE TABLE table_27132791_3 (position VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_27132791_3 WHERE pro_team = \"Jacksonville Bulls\"",
    "question_en": "If the proteam is Jacksonville bulls, what is the position?",
    "question_th": "ถ้าโปรทีมคือแจ็กสันวิลล์บูลส์ตำแหน่งอะไร?",
    "context": "CREATE TABLE table_27132791_3 (position VARCHAR, pro_team VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_27132791_3 WHERE college = \"SMU\"",
    "question_en": "If the college is SMU, what is the position?",
    "question_th": "ถ้าวิทยาลัยเป็น มธ. ตำแหน่งอะไรคะ?",
    "context": "CREATE TABLE table_27132791_3 (position VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT written_by FROM table_27116696_1 WHERE production_code = \"3T7255\"",
    "question_en": "Who wrote the episode with the production code of 3t7255?",
    "question_th": "ใครเป็นคนเขียนตอนด้วยรหัสการผลิต 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_en": "How many U.S. viewers (million) watched the episode directed by Allison Liddi-Brown?",
    "question_th": "มีผู้ชมในสหรัฐฯ จำนวนกี่คน (ล้าน) ที่ดูตอนที่กำกับโดย 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_en": "What is the total number of production code listings of episodes written by Matthew Lau?",
    "question_th": "รายการรหัสการผลิตของตอนที่เขียนโดย 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_en": "What was the prize pool in New Orleans?",
    "question_th": "เงินรางวัลรวมในนิวออร์ลีนส์คืออะไร?",
    "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_en": "How many prizes were available in the competition where 696 people entered?",
    "question_th": "มีรางวัลกี่รางวัลในการแข่งขันที่มีผู้เข้าร่วม 696 คน?",
    "context": "CREATE TABLE table_2715355_1 (winners VARCHAR, entrants VARCHAR)"
  },
  {
    "answer": "SELECT accession_number FROM table_27155678_2 WHERE genus_species = \"Rhodopseudomonas palustris\"",
    "question_en": "Name the accession number for  rhodopseudomonas palustris",
    "question_th": "ตั้งชื่อหมายเลขภาคยานุวัติของ 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_en": "Name the genus/species of accession number bx897699.1",
    "question_th": "ตั้งชื่อสกุล/ชนิดหมายเลขภาคยานุวัติ 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_en": "Name the accession number for sequence similarity being 54",
    "question_th": "ตั้งชื่อหมายเลขภาคยานุวัติสำหรับความคล้ายคลึงกันของลำดับเป็น 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_en": "Name the gene name for methylobacterium nodulans",
    "question_th": "ตั้งชื่อยีนของ 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_en": "Name the gene name for accession number bx897700.1",
    "question_th": "ตั้งชื่อชื่อยีนสำหรับภาคยานุวัติหมายเลข 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_en": "What was the minimum % funded of the project that was closed on 2012-05-18?",
    "question_th": "% เงินทุนขั้นต่ำของโครงการที่ปิดในวันที่ 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_en": "What was the maximum total USD collected by Pebble Technology?",
    "question_th": "ยอดรวมสูงสุดที่ 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_en": "What was the category of the project name Mighty No. 9?",
    "question_th": "ชื่อโครงการ 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_en": "Project Name Pebble: E-Paper Watch for Iphone and Android was ranked how many times?",
    "question_th": "ชื่อโครงการ Pebble: E-Paper Watch สำหรับ Iphone และ Android ได้รับการจัดอันดับกี่ครั้ง?",
    "context": "CREATE TABLE table_27155990_1 (rank VARCHAR, project_name VARCHAR)"
  },
  {
    "answer": "SELECT league_apps FROM table_27170987_5 WHERE total_goals = 11",
    "question_en": "How many league apps did the player with 11 team goals have?",
    "question_th": "ผู้เล่นที่ทำประตูทีมได้ 11 ประตูมีแอปลีกกี่แอป?",
    "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_en": "What is the lowest number of total goals for a player with 6 league goals?",
    "question_th": "จำนวนประตูรวมต่ำสุดของผู้เล่นที่ทำ 6 ประตูในลีกคือเท่าไร?",
    "context": "CREATE TABLE table_27170987_5 (total_goals INTEGER, league_goals VARCHAR)"
  },
  {
    "answer": "SELECT MIN(fa_cup_goals) FROM table_27170987_5",
    "question_en": "What is the lowest number of fa cup goals by a player?",
    "question_th": "ผู้เล่นที่ยิงเอฟเอคัพได้น้อยที่สุดคือเท่าไร?",
    "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_en": "Who wrote the episode that aired on September 26, 2010?",
    "question_th": "ใครเป็นคนเขียนตอนที่ออกอากาศเมื่อวันที่ 26 กันยายน 2553",
    "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_en": "How many radio stations were built in Asia?",
    "question_th": "สถานีวิทยุในเอเชียถูกสร้างขึ้นกี่แห่ง?",
    "context": "CREATE TABLE table_27184837_1 (asia VARCHAR, programs VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(asia) FROM table_27184837_1 WHERE americas = 14",
    "question_en": "How many program data on Asia was written if the organization launched 14 programs iin the Americas?",
    "question_th": "มีการเขียนข้อมูลโปรแกรมจำนวนเท่าใดในเอเชียหากองค์กรเปิดตัวโปรแกรม 14 โปรแกรมในอเมริกา",
    "context": "CREATE TABLE table_27184837_1 (asia VARCHAR, americas VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(australasia) FROM table_27184837_1 WHERE americas = 115",
    "question_en": "How many times did Australasia received a program if the Americas received 115 program?",
    "question_th": "ออสตราเลเซียได้รับโครงการกี่ครั้งหากทวีปอเมริกาได้รับโครงการ 115 โครงการ",
    "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_en": "What is every episode number for the series number 3?",
    "question_th": "หมายเลขตอนของซีรีส์หมายเลข 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_en": "What is every episode with Barry Purchese as the writer?",
    "question_th": "ทุกตอนที่มี Barry Purchese เป็นผู้เขียนบทเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_27208311_1 (episode VARCHAR, writer VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(episode) FROM table_27208817_1 WHERE writer = \"Sam Snape\"",
    "question_en": "Name the number of episodes for sam snape",
    "question_th": "ตั้งชื่อจำนวนตอนของแซม สเนป",
    "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_en": "What was the aspect ratio if the vertical pixel is 480 and pixel aspect ratio is 1:1?",
    "question_th": "อัตราส่วนกว้างยาวจะเป็นอย่างไรหากพิกเซลแนวตั้งคือ 480 และอัตราส่วนพิกเซลคือ 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_en": "What was the minimum vertical measurement if the aspect ratio is 16:9 and scanning is interlaced?",
    "question_th": "การวัดแนวตั้งขั้นต่ำคือเท่าใด หากอัตราส่วนภาพคือ 16:9 และการสแกนเป็นแบบอินเทอร์เลซ",
    "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_en": "What was the maximum vertical measurement if the horizon measurement is 640?",
    "question_th": "การวัดแนวตั้งสูงสุดคือเท่าใดหากการวัดขอบฟ้าคือ 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_en": "Name the outgoing manager for mutual consent and position 16th",
    "question_th": "ตั้งชื่อผู้จัดการที่ลาออกเพื่อความยินยอมร่วมกันและตำแหน่งที่ 16",
    "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_en": "Name the replaced by for slaven belupo",
    "question_th": "ตั้งชื่อการแทนที่ด้วยสำหรับทาสเวน เบลูโป",
    "context": "CREATE TABLE table_27225944_3 (replaced_by VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(outgoing_manager) FROM table_27225944_3 WHERE team = \"Rijeka\"",
    "question_en": "Name the number of outgoing manager for rijeka",
    "question_th": "ตั้งชื่อหมายเลขผู้จัดการที่จะออกจากริเยกา",
    "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_en": "Name the least horizontal for smpte 259m three quarters",
    "question_th": "ตั้งชื่อแนวนอนน้อยที่สุดสำหรับ smpte 259m สามในสี่",
    "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_en": "Name the aspect ratio for smpte 259m and interlaced scanning",
    "question_th": "ตั้งชื่ออัตราส่วนกว้างยาวสำหรับ smte 259m และการสแกนแบบอินเทอร์เลซ",
    "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_en": "What date did the episode that was written by Fintan Ryan originally air?",
    "question_th": "ตอนที่เขียนโดย Fintan Ryan ออกอากาศครั้งแรกเมื่อใด",
    "context": "CREATE TABLE table_27218002_2 (originalairdate VARCHAR, written_by VARCHAR)"
  },
  {
    "answer": "SELECT originalairdate FROM table_27218002_2 WHERE ratings = \"1.37 Million\"",
    "question_en": "What date did the epiode that had 1.37 million as the rating originally air?",
    "question_th": "ตอนที่มีเรตติ้ง 1.37 ล้าน ออกอากาศตอนแรกวันไหน?",
    "context": "CREATE TABLE table_27218002_2 (originalairdate VARCHAR, ratings VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_27250813_1 WHERE no_in_season = 16",
    "question_en": "What is the title of the episode no. 16 by season?",
    "question_th": "หมายเลขตอนชื่ออะไรคะ.. 16 ตามฤดูกาล?",
    "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_en": "How many times did an episode with a production code of 12003 was aired?",
    "question_th": "ตอนที่มีรหัสการผลิต 12003 ออกอากาศกี่ครั้ง?",
    "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_en": "Name the color analyst for terry bowden and 17.2",
    "question_th": "ตั้งชื่อนักวิเคราะห์สีสำหรับ terry bowden และ 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_en": "Name the number of bowl for lee corso, gene chizik and chip kelly",
    "question_th": "ตั้งชื่อหมายเลขชามสำหรับ lee corso, gene chizik และ 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_en": "Name the studio analysts for espn with erin andrews and tom rinaldi",
    "question_th": "ตั้งชื่อนักวิเคราะห์สตูดิโอสำหรับ espn ด้วยเอริน แอนดรูว์ และทอม รินัลดี",
    "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_en": "What is the highest series number with 9.17 million US viewers?",
    "question_th": "หมายเลขซีรีส์สูงสุดที่มีผู้ชม 9.17 ล้านคนในสหรัฐฯ คืออะไร?",
    "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_en": "name the podiums for start of 22",
    "question_th": "ตั้งชื่อโพเดียมสำหรับการเริ่มต้นของ 22",
    "context": "CREATE TABLE table_2725949_6 (podiums VARCHAR, starts VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(poles) FROM table_2725949_6 WHERE fastest_laps = 6",
    "question_en": "Name the number of poles for fastest laps being 6",
    "question_th": "ตั้งชื่อจำนวนเสาสำหรับรอบที่เร็วที่สุดคือ 6",
    "context": "CREATE TABLE table_2725949_6 (poles VARCHAR, fastest_laps VARCHAR)"
  },
  {
    "answer": "SELECT MIN(podiums) FROM table_2725949_6 WHERE season = 2009",
    "question_en": "Name the least podiums for 2009",
    "question_th": "ตั้งชื่อโพเดียมน้อยที่สุดในปี 2009",
    "context": "CREATE TABLE table_2725949_6 (podiums INTEGER, season VARCHAR)"
  },
  {
    "answer": "SELECT starts FROM table_2725949_6 WHERE season = 2009",
    "question_en": "Name the starts for 2009",
    "question_th": "ตั้งชื่อการเริ่มต้นปี 2552",
    "context": "CREATE TABLE table_2725949_6 (starts VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT MAX(starts) FROM table_2725949_6 WHERE wins = 6",
    "question_en": "Name the most starts for 6 wins",
    "question_th": "ทายชื่อออกสตาร์ทมากที่สุด 6 แต้ม",
    "context": "CREATE TABLE table_2725949_6 (starts INTEGER, wins VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(matches) FROM table_27268238_5 WHERE wickets = 16",
    "question_en": "How many matches were wickets 16?",
    "question_th": "16 ประตูมีกี่นัด?",
    "context": "CREATE TABLE table_27268238_5 (matches VARCHAR, wickets VARCHAR)"
  },
  {
    "answer": "SELECT MIN(wickets) FROM table_27268238_5",
    "question_en": "What is the lowest wickets?",
    "question_th": "ประตูต่ำสุดคืออะไร?",
    "context": "CREATE TABLE table_27268238_5 (wickets INTEGER)"
  },
  {
    "answer": "SELECT 4 AS wi FROM table_27268238_5 WHERE economy = \"7.82\"",
    "question_en": "What is the 4wi when the economy is 7.82?",
    "question_th": "4wi เมื่อเศรษฐกิจเป็น 7.82 คืออะไร?",
    "context": "CREATE TABLE table_27268238_5 (economy VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_27268238_5 WHERE bbi = \"5/27\"",
    "question_en": "Who is the player when the bbi is 5/27?",
    "question_th": "นักเตะคนไหนเมื่อ bbi คือ 5/27?",
    "context": "CREATE TABLE table_27268238_5 (player VARCHAR, bbi VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_27268238_5 WHERE economy = \"5.73\"",
    "question_en": "What is the team when the economy is 5.73?",
    "question_th": "ทีมไหนเมื่อเศรษฐกิจเป็น 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_en": "When Denizli was the province, what was the total number of valid votes?",
    "question_th": "เมื่อเดนิซลีเป็นจังหวัด จำนวนคะแนนเสียงที่ถูกต้องทั้งหมดคือเท่าใด",
    "context": "CREATE TABLE table_27274222_2 (valid_votes VARCHAR, province VARCHAR)"
  },
  {
    "answer": "SELECT province FROM table_27274222_2 WHERE turnout___percentage_ = \"54.09\"",
    "question_en": "What province had a turnout of 54.09%?",
    "question_th": "จังหวัดใดมีผู้ออกมาใช้สิทธิ 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_en": "What is the model number for the order part numbered tmrm75dam22gg?",
    "question_th": "หมายเลขรุ่นของหมายเลขชิ้นส่วนคำสั่งซื้อ 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_en": "What is the oder part number for the model with 10x mult. 1?",
    "question_th": "หมายเลขชิ้นส่วนอื่นๆ สำหรับรุ่นที่มี 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_en": "How much ht does the model with 10x mult. 1 have?",
    "question_th": "โมเดลที่มี 10x mult มีราคาเท่าไหร่ 1 มี?",
    "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_en": "What's the ht for the model released on June 4, 2008?",
    "question_th": "ht สำหรับรุ่นที่วางจำหน่ายเมื่อวันที่ 4 มิถุนายน 2551 คืออะไร?",
    "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_en": "How many pole position achieved 0 points from Mexico?",
    "question_th": "ตำแหน่งโพลโพซิชั่นได้ 0 แต้มจากเม็กซิโกกี่แต้ม?",
    "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_en": "Name the vcore for multi 11x",
    "question_th": "ตั้งชื่อ vcore สำหรับ 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_en": "Name the number of v core for model number mobile athlon 64 3000+",
    "question_th": "ตั้งชื่อหมายเลข v core สำหรับหมายเลขรุ่น 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_en": "Name the total number of points for for played",
    "question_th": "ตั้งชื่อจำนวนคะแนนรวมสำหรับการเล่น",
    "context": "CREATE TABLE table_27293285_4 (points_for VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(points) FROM table_27293285_4 WHERE tries_for = \"46\"",
    "question_en": "Name the total number of points for 46 tries for",
    "question_th": "ตั้งชื่อจำนวนคะแนนรวม 46 ครั้ง",
    "context": "CREATE TABLE table_27293285_4 (points VARCHAR, tries_for VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(club) FROM table_27293285_4 WHERE lost = \"16\"",
    "question_en": "Name the total number of club for lost being 16",
    "question_th": "บอกจำนวนไม้กอล์ฟที่แพ้ทั้งหมดเป็น 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_en": "Name the drawn for lost being 5 and tries for 89",
    "question_th": "ตั้งชื่อผู้แพ้ว่าได้ 5 และลองได้ 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_en": "Name the won for played being 22 and points against 511 and lost being 15",
    "question_th": "ตั้งชื่อชัยชนะสำหรับการเล่นเป็น 22 และแต้มต่อ 511 และแพ้เป็น 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_en": "What aorist has bude in present tense?",
    "question_th": "นักทฤษฎีคนไหนมี bude ในปัจจุบันกาล?",
    "context": "CREATE TABLE table_27298240_26 (aorist VARCHAR, present VARCHAR)"
  },
  {
    "answer": "SELECT aorist FROM table_27298240_26 WHERE imperfect = \"bijasmo / bejasmo / besmo\"",
    "question_en": "Which aorist has imperfect form of bijasmo / bejasmo / besmo?",
    "question_th": "นักทฤษฎีคนใดมีรูปแบบที่ไม่สมบูรณ์ของ 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_en": "What is the pluperfect for the perfect si bio/la; bio/la si?",
    "question_th": "อะไรคือสิ่งที่สมบูรณ์แบบสำหรับ si bio/la ที่สมบูรณ์แบบ; ประวัติ/ลาซี่?",
    "context": "CREATE TABLE table_27298240_26 (pluperfect VARCHAR, perfect VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_27294107_11 WHERE round_of_32 = \"Suárez ( TRI ) W 16–6\"",
    "question_en": "What was the event when suárez ( tri ) w 16–6 was round of 32?",
    "question_th": "เหตุการณ์คืออะไรเมื่อซัวเรซ (ไตร) นำ 16–6 รอบ 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_en": "What is the semifinals for the light flyweight event?",
    "question_th": "รอบรองชนะเลิศสำหรับรุ่นไลต์ฟลายเวตคืออะไร?",
    "context": "CREATE TABLE table_27294107_11 (semifinals VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(semifinals) FROM table_27294107_11 WHERE athlete = \"Ferhat Pehlivan\"",
    "question_en": "How many semifinals did ferhat pehlivan attend?",
    "question_th": "Ferhat Pehlivan เข้าร่วมรอบรองชนะเลิศกี่รอบ?",
    "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–11\"",
    "question_en": "What is the round of 32 if the round of 16 is drenovak ( srb ) w 20–11?",
    "question_th": "รอบ 32 ทีมจะเป็นอย่างไรหากรอบ 16 ทีมคือ เดรโนวัค ( srb ) กับ 20–11?",
    "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 Şener\"",
    "question_en": "When yakup şener is the athlete what is the round of 32?",
    "question_th": "เมื่อ ยาคุป เซเนอร์ เป็นนักกีฬา รอบ 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ş\"",
    "question_en": "What is the round of 32 for fatih keleş?",
    "question_th": "ฟาติห์ เคเลช รอบ 32 ทีมสุดท้ายจะเป็นอย่างไร?",
    "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_en": "What is in 1st place when present is mogu?",
    "question_th": "โมกุอยู่อันดับ 1 อะไรคะ?",
    "context": "CREATE TABLE table_27298240_28 (present VARCHAR)"
  },
  {
    "answer": "SELECT 2 AS nd FROM table_27298240_28 WHERE pronoun = \"vi (you pl.)\"",
    "question_en": "what is 2nd when the pronoun is vi (you pl.)?",
    "question_th": "สิ่งที่ 2 เมื่อสรรพนามคือ vi (you pl.) คืออะไร?",
    "context": "CREATE TABLE table_27298240_28 (pronoun VARCHAR)"
  },
  {
    "answer": "SELECT r FROM table WHERE total = 1 AND position = \"FW\"",
    "question_en": "What is the R when the total is 1 and the position is fw?",
    "question_th": "R คืออะไรเมื่อผลรวมเป็น 1 และตำแหน่งเป็น fw?",
    "context": "CREATE TABLE table (r VARCHAR, total VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT MIN(league_cup) FROM table",
    "question_en": "What is the lowest league cup?",
    "question_th": "ลีกคัพต่ำสุดคืออะไร?",
    "context": "CREATE TABLE table (league_cup INTEGER)"
  },
  {
    "answer": "SELECT position FROM table WHERE player = Becchio",
    "question_en": "What is the position for the player becchio?",
    "question_th": "นักเตะเบ็คคิโออยู่ตำแหน่งไหน?",
    "context": "CREATE TABLE table (position VARCHAR, player VARCHAR, Becchio VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(league_cup) FROM table WHERE r = 4",
    "question_en": "How many times was the r 4?",
    "question_th": "r 4 กี่ครั้ง?",
    "context": "CREATE TABLE table (league_cup VARCHAR, r VARCHAR)"
  },
  {
    "answer": "SELECT parent FROM table_2731431_1 WHERE peak = \"Cima Tosa\"",
    "question_en": "What is the parent for peak cima tosa?",
    "question_th": "ผู้ปกครองของ 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_en": "What is the elevation for the peak wildspitze in Austria?",
    "question_th": "ระดับความสูงของยอดเขา wildspitze ในออสเตรียคือเท่าไร?",
    "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_en": "What is the elevation for number 39?",
    "question_th": "เลข 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_en": "What is the col location for the location of france / italy?",
    "question_th": "ที่ตั้ง Col สำหรับตำแหน่งของฝรั่งเศส / อิตาลีคืออะไร?",
    "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_en": "What is the col location with a col height (m) of 1107?",
    "question_th": "ตำแหน่งคอลที่มีความสูง (m) เท่ากับ 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_en": "Which location has an elevation of 3798?",
    "question_th": "ตำแหน่งใดมีระดับความสูง 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_en": "What is the title when the catalog number is cal01 / 0091037137319?",
    "question_th": "ชื่ออะไรเมื่อหมายเลขแค็ตตาล็อกคือ 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_en": "How many times is the title am/pm callanetics?",
    "question_th": "วิชา Callanetics เป็นชื่อ am/pm กี่ครั้ง?",
    "context": "CREATE TABLE table_27303975_3 (studio VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(title) FROM table_27303975_3 WHERE catalog_number = \"CAL04 / 0091037553546\"",
    "question_en": "How many times was the catalog number cal04 / 0091037553546?",
    "question_th": "แค็ตตาล็อกหมายเลข 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_en": "how many times was the catalog number cal04 / 0091037553546?",
    "question_th": "แค็ตตาล็อกหมายเลข 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_en": "how many times was the catalog number cal01 / 0091037137319?",
    "question_th": "แค็ตตาล็อกหมายเลข 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_en": "how many times was the catalog number cal05 / 0091037137357?",
    "question_th": "แค็ตตาล็อกหมายเลข 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_en": "who directed the episode that elaine ko wrote?",
    "question_th": "ใครเป็นผู้กำกับตอนที่เอเลนโก้เขียนคะ?",
    "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_en": "when was the episode with production code \"2arg01\" originally aired?",
    "question_th": "ตอนที่มีรหัสการผลิต \"2arg01\" ออกอากาศครั้งแรกเมื่อไหร่?",
    "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_en": "what is the title of the episode with production code \"2arg09\"?",
    "question_th": "ตอนที่มีรหัสการผลิต \"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_en": "when was the episode with production code \"2arg24\" originally aired?",
    "question_th": "ตอนที่มีรหัสการผลิต \"2arg24\" ออกอากาศครั้งแรกเมื่อไหร่?",
    "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_en": "What episode had a share percentage of 41.5%?",
    "question_th": "ตอนไหนมีส่วนแบ่ง 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_en": "What date was the show's weekly ranking 12?",
    "question_th": "อันดับ 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_en": "How many total itv viewers were there for the episode with official itv ratings of 10.24 million?",
    "question_th": "มีผู้ชม ITV ทั้งหมดกี่คนสำหรับตอนนี้ซึ่งมีเรตติ้งอย่างเป็นทางการถึง 10.24 ล้านคน",
    "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_en": "How many total itv viewers were there for the episode with official itv hd ratings of 1.12 million?",
    "question_th": "มีผู้ชม ITV ทั้งหมดกี่คนสำหรับตอนนี้ที่มีเรตติ้ง ITV HD อย่างเป็นทางการ 1.12 ล้านคน",
    "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_en": "What were the official itv ratings in millions for the episode with a total of 8.53 million itv viewers",
    "question_th": "เรตติ้งอย่างเป็นทางการของ ITV ในหน่วยล้านสำหรับตอนนี้มีผู้ชม ITV ทั้งหมด 8.53 ล้านคน",
    "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_en": "What were the official itv ratings in millions for semi-final 5?",
    "question_th": "เรตติ้งอย่างเป็นทางการของ ITV ในหน่วยล้านสำหรับรอบรองชนะเลิศ 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_en": "What is the club when the chairman is roger lambrecht?",
    "question_th": "สโมสรคืออะไรในเมื่อประธานคือ โรเจอร์ แลมเบรชต์?",
    "context": "CREATE TABLE table_27374004_2 (club VARCHAR, chairman VARCHAR)"
  },
  {
    "answer": "SELECT team_captain FROM table_27374004_2 WHERE shirt_sponsor = \"Quick\"",
    "question_en": "What is the team captain when the shirt sponser is quick?",
    "question_th": "กัปตันทีมจะเป็นอะไร ในเมื่อ สปอนเซอร์เสื้อด่วน?",
    "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_en": "Who is the chairman when the current manager is bob peeters?",
    "question_th": "ใครเป็นประธาน ในเมื่อผู้จัดการคนปัจจุบันคือ บ็อบ ปีเตอร์ส?",
    "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_en": "What is the club when the shirt sponsor is e-lotto.be?",
    "question_th": "สโมสรอะไรในเมื่อผู้สนับสนุนเสื้อคือ 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_en": "Who is the team captain when the club is k.f.c. germinal beerschot?",
    "question_th": "ใครคือกัปตันทีม ในเมื่อสโมสร เคเอฟซี เชื้อโรคเบียร์ชอต?",
    "context": "CREATE TABLE table_27374004_2 (team_captain VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT varsity_name FROM table_27369069_4 WHERE university = \"McGill university\"",
    "question_en": "What is the varsity name of the university of mcgill university?",
    "question_th": "ตัวแทนของมหาวิทยาลัย 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_en": "What is the soccer stadium with the varsity name is citadins?",
    "question_th": "สนามฟุตบอลชื่อตัวแทนคือซิทาดินส์คืออะไร?",
    "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_en": "What is the province where the soccer statium is terrain #2 of complexe sportif claude-robillard?",
    "question_th": "จังหวัดที่สนามฟุตบอลเป็นภูมิประเทศ #2 ของ 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_en": "What is the province for with the stadium capacity of 5100?",
    "question_th": "จังหวัดอะไรความจุสนามกีฬา 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_en": "What is the university where the soccer stadium is terrain #2 of complexe sportif claude-robillard?",
    "question_th": "มหาวิทยาลัยแห่งใดที่สนามฟุตบอลอยู่ในภูมิประเทศ #2 ของ complexe sportif claude-robilard?",
    "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_en": "When was the date of appointment by Hugo Broos?",
    "question_th": "วันที่ได้รับการแต่งตั้งจาก 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_en": "How many times did outgoing manager Bart de Roover vacated a position?",
    "question_th": "บาร์ต เดอ รูเวอร์ ผู้จัดการทีมที่กำลังจะพ้นตำแหน่งพ้นจากตำแหน่งไปกี่ครั้งแล้ว?",
    "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_en": "Who was the outgoing manager of the team in 15th position that was sacked?",
    "question_th": "ใครคือผู้จัดการทีมคนที่ 15 ที่ถูกไล่ออก?",
    "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_en": "What was the team's position in table when Danny OST was the outgoing manager?",
    "question_th": "ตำแหน่งของทีมในตารางเมื่อ Danny OST เป็นผู้จัดการที่ลาออกคืออะไร?",
    "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_en": "how many maximum # when viewers (m) is 8.01",
    "question_th": "สูงสุด # เมื่อผู้ชม (m) คือ 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_en": "How many outgoing managers were replaced by Bob Peeters?",
    "question_th": "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_en": "Who replaced Michel Preud'homme?",
    "question_th": "ใครมาแทนที่ มิเชล พราวด์ฮอมม์?",
    "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_en": "What was the manner of departure for the manager of Cercle Brugge?",
    "question_th": "ลักษณะการจากไปของผู้จัดการทีม 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_en": "Who was the outgoing manager of Charleroi?",
    "question_th": "ใครคือผู้จัดการทีมชาร์เลอรัวที่จะลาออก?",
    "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_en": "What sponsor has the head coach Samad Marfavi?",
    "question_th": "หัวหน้าโค้ช 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_en": "Which team has Ali Daei as head coach?",
    "question_th": "ทีมไหนมี อาลี ดาอี เป็นเฮดโค้ช?",
    "context": "CREATE TABLE table_27383390_2 (team VARCHAR, head_coach VARCHAR)"
  },
  {
    "answer": "SELECT kit_maker FROM table_27383390_2 WHERE team = \"Foolad\"",
    "question_en": "What is the kit maker for team foolad?",
    "question_th": "คนทำชุดสำหรับทีมโง่คืออะไร?",
    "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_en": "Who is the outgoing head coach when the incoming head coach is abdollah veysi?",
    "question_th": "เฮดโค้ชที่จะลาออกคือใคร ในเมื่อเฮดโค้ชที่เข้ามาคืออับดุลลาห์ เวย์ซี?",
    "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_en": "When is the date of appointment when the position in table is 16?",
    "question_th": "วันที่ได้รับการแต่งตั้งเมื่อตำแหน่งในตารางคือ 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_en": "How many times is the incoming head coach abdollah veysi?",
    "question_th": "อับดุลลาห์ เวย์ซี เฮดโค้ชคนใหม่จะมากี่ครั้ง?",
    "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_en": "What is the team with the date of vacancy 8 dec 2010?",
    "question_th": "ทีมงานตำแหน่งว่างวันที่ 8 ธันวาคม 2553 คือทีมอะไร?",
    "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_en": "What is the manner of departure when the incoming head coach is mohammad khakpour?",
    "question_th": "ลีลาการจากไปจะเป็นเช่นไรเมื่อเฮดโค้ชที่เข้ามาคือ โมฮัมหมัด คัคปูร์?",
    "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_en": "What is the original air date of the episode that was written by Rama Stagner? ",
    "question_th": " วันที่ออกอากาศดั้งเดิมของตอนที่เขียนโดย 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_en": "For the #19 car, what was their finish position?",
    "question_th": "สำหรับรถหมายเลข 19 ตำแหน่งเข้าเส้นชัยอยู่ที่เท่าไร?",
    "context": "CREATE TABLE table_27396005_2 (pos INTEGER, car VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(constructor) FROM table_27396005_2 WHERE grid = 13",
    "question_en": "How many constructors had a grid of 13?",
    "question_th": "มีตัวสร้างกี่ตัวที่มีตาราง 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_en": "What was the maximum finish position of the car whose constructor was Joe Gibbs Racing, driven by Denny Hamlin?",
    "question_th": "ตำแหน่งเข้าเส้นชัยสูงสุดของรถที่ผู้สร้างคือ Joe Gibbs Racing ซึ่งขับโดย 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_en": "List all titles with a 57 series number.",
    "question_th": "แสดงรายการชื่อเรื่องทั้งหมดด้วยหมายเลขซีรีส์ 57",
    "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_en": "What's the highest season number with a series number of 47?",
    "question_th": "หมายเลขซีซันสูงสุดที่มีหมายเลขซีรีส์ 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_en": "Who was the writer for season episode 7?",
    "question_th": "ใครคือผู้เขียนบทของซีซั่น 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_en": "Name who directed when the viewers is 5.86",
    "question_th": "ชื่อผู้กำกับเวลาคนดู 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õlva\"",
    "question_en": "Where is lootos põlva from?",
    "question_th": "lootos põlva มาจากไหน?",
    "context": "CREATE TABLE table_27409644_1 (location VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT manager FROM table_27409644_1 WHERE club = \"Lootos Põlva\"",
    "question_en": "Who is the manager for lootos põlva?",
    "question_th": "ใครคือผู้จัดการทีมลูโตส โปลวา?",
    "context": "CREATE TABLE table_27409644_1 (manager VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_27409644_1 WHERE ground = \"Lootospark\"",
    "question_en": "Where is  lootospark from?",
    "question_th": "lootospark มาจากไหน?",
    "context": "CREATE TABLE table_27409644_1 (location VARCHAR, ground VARCHAR)"
  },
  {
    "answer": "SELECT manager FROM table_27409644_1 WHERE club = \"Pärnu\"",
    "question_en": "Who is the  pärnu manager?",
    "question_th": "ใครคือผู้จัดการปาร์นู?",
    "context": "CREATE TABLE table_27409644_1 (manager VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_27409644_1 WHERE manager = \"Richard Barnwell\"",
    "question_en": "Where is the team that is managed by richard barnwell from?",
    "question_th": "ทีมที่คุมโดย ริชาร์ด บาร์นเวลล์ มาจากไหน?",
    "context": "CREATE TABLE table_27409644_1 (location VARCHAR, manager VARCHAR)"
  },
  {
    "answer": "SELECT ground FROM table_27409644_1 WHERE club = \"Flora Tallinn\"",
    "question_en": "What is the home location for team flora tallinn?",
    "question_th": "บ้านของทีมฟลอร่า ทาลลินน์ อยู่ที่ไหน?",
    "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_en": "How many viewers watched the episode written by shana goldberg-meehan & greg malins? ",
    "question_th": " มีผู้ชมกี่คนที่ดูตอนที่เขียนโดย 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_en": "which number lists the production code as 2j5809",
    "question_th": "หมายเลขใดระบุรหัสการผลิตเป็น 2j5809",
    "context": "CREATE TABLE table_27403436_1 (no VARCHAR, production_code VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_274117_5 WHERE player = \"Bob Lilly\"",
    "question_en": "What position was Bob Lilly?",
    "question_th": "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_en": "What are seasons by team for Pro Bowl appearances of the player who was an OL and had 11 appearances? ",
    "question_th": " ฤดูกาลโดยทีมสำหรับการปรากฏตัวของผู้เล่นที่เป็น OL และปรากฏตัว 11 ครั้งใน Pro Bowl คืออะไร?",
    "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_en": "What position was the player who was inducted into the Pro Football Hall of Fame in 1980? ",
    "question_th": " ผู้เล่นที่ได้รับการแต่งตั้งให้เข้าสู่หอเกียรติยศฟุตบอลอาชีพในปี 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_en": "When was Will Shields inducted into the Pro Football Hall of Fame?",
    "question_th": "Will Shields ได้รับการแต่งตั้งให้เข้าสู่ 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_en": "What is the fewest amount of Pro Bowl appearances any of the players had? ",
    "question_th": " ผู้เล่นคนใดที่ลงเล่น Pro Bowl น้อยที่สุดคือจำนวนเท่าใด?",
    "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_en": "How many live births per year do people with a life expectancy of 65.1 have?",
    "question_th": "คนที่มีอายุขัยเฉลี่ย 65.1 ปีมีการเกิดมีชีพได้กี่ครั้งต่อปี?",
    "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_en": "What period was the life expectancy at 62.4?",
    "question_th": "อายุขัยที่ 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_en": "In what year is australia/oceania listed? ",
    "question_th": " ออสเตรเลีย/โอเชียเนียอยู่ในรายการปีใด",
    "context": "CREATE TABLE table_27435931_1 (year VARCHAR, continent VARCHAR)"
  },
  {
    "answer": "SELECT elevation_m FROM table_27435931_1 WHERE year = \"September 2009\"",
    "question_en": "what was the elevation in september 2009?",
    "question_th": "ระดับความสูงในเดือนกันยายน 2009 อยู่ที่เท่าไร?",
    "context": "CREATE TABLE table_27435931_1 (elevation_m VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT continent FROM table_27435931_1 WHERE country = \"Russia\"",
    "question_en": "what is the continent in which the country russia is listed?",
    "question_th": "ทวีปใดที่มีประเทศรัสเซียอยู่ในรายการ?",
    "context": "CREATE TABLE table_27435931_1 (continent VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT MIN(elevation_ft) FROM table_27435931_1 WHERE year = \"April 2006\"",
    "question_en": "what was the lowest elevation in april 2006?",
    "question_th": "ระดับความสูงต่ำสุดในเดือนเมษายน 2549 คือเท่าใด",
    "context": "CREATE TABLE table_27435931_1 (elevation_ft INTEGER, year VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(elevation_ft) FROM table_27435931_1 WHERE country = \"Tanzania\"",
    "question_en": "what is elevation of tanzania?",
    "question_th": "ระดับความสูงของแทนซาเนียคืออะไร?",
    "context": "CREATE TABLE table_27435931_1 (elevation_ft VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT elevation_ft FROM table_27435931_1 WHERE continent = \"South America\"",
    "question_en": "what is the elevation of south america? ",
    "question_th": " อเมริกาใต้มีระดับความสูงเท่าไร?",
    "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_en": "List the season above 241.0 that was handled by brad tanenbaum.",
    "question_th": "ระบุฤดูกาลที่สูงกว่า 241.0 ซึ่งจัดการโดย 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_en": "List the 1st air date for season 12.",
    "question_th": "รายชื่อวันที่ออกอากาศครั้งแรกสำหรับซีซั่น 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_en": "List the series number for season 12.",
    "question_th": "แสดงรายการหมายเลขซีรีส์สำหรับซีซัน 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_en": "How many years was the country Belgium?",
    "question_th": "ประเทศเบลเยียมมีอายุกี่ปี?",
    "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_en": "What number-one single is performed by artist Pep's?",
    "question_th": "ซิงเกิลอันดับหนึ่งเพลงใดของศิลปิน 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_en": "Where were the auditions held in the episode that aired on january 27, 2011?",
    "question_th": "ออดิชั่นจัดขึ้นที่ไหนในตอนที่ออกอากาศวันที่ 27 มกราคม 2554?",
    "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_en": "In how many different audition cities were the Bridgestone arena auditions held?",
    "question_th": "บริดจสโตนอารีน่าออดิชั่นจัดขึ้นในเมืองออดิชั่นที่แตกต่างกันกี่เมือง",
    "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_en": "When was the callback audition date for the audition city from the episode aired on February 2, 2011?",
    "question_th": "วันที่ออดิชั่นโทรกลับสำหรับออดิชั่นซิตี้จากตอนที่ออกอากาศเมื่อวันที่ 2 กุมภาพันธ์ 2554 คือเมื่อใด",
    "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_en": "When were the callback auditions at Hilton Riverside Hotel held?",
    "question_th": "ออดิชั่นโทรกลับที่โรงแรมฮิลตันริเวอร์ไซด์จัดขึ้นเมื่อไหร่?",
    "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_en": "What was the callback venue for the audition city in the episode aired on January 20, 2011?",
    "question_th": "สถานที่โทรกลับสำหรับเมืองออดิชั่นในตอนที่ออกอากาศเมื่อวันที่ 20 มกราคม 2554 คืออะไร?",
    "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_en": "When were the callback auditions for the audition city in the episode aired on February 9, 2011?",
    "question_th": "ออดิชั่นโทรกลับสำหรับออดิชั่นซิตี้ในตอนนี้ออกอากาศเมื่อวันที่ 9 กุมภาพันธ์ 2554 เมื่อใด",
    "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_en": "How many episodes did Eve Weston write?",
    "question_th": "Eve Weston เขียนกี่ตอน?",
    "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_en": "How many millions of US viewers watched the episode written by Jack Sanderson?",
    "question_th": "มีผู้ชมในสหรัฐฯ กี่ล้านคนที่ดูตอนที่เขียนโดย 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_en": "Name who wrote the production code 322",
    "question_th": "ชื่อผู้เขียนรหัสการผลิต 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_en": "What is the television network with the television channel of Astro Pelangi & Astro Bintang?",
    "question_th": "เครือข่ายโทรทัศน์ที่มีช่องโทรทัศน์ของ 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_en": "What was the status of the series that was run by tv channel Mediacorp tv12 Suria?",
    "question_th": "สถานะของซีรีส์ที่ดำเนินการโดยช่องทีวี 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_en": "What was the world rank by QS in 2013 for the University of Otago?",
    "question_th": "อันดับโลกโดย QS ในปี 2013 สำหรับมหาวิทยาลัย 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übingen\"",
    "question_en": "What was the world rank by ARWU in 2013 of the University of Tübingen?",
    "question_th": "อันดับโลกของ ARWU ในปี 2013 ของ University of Tübingen คืออะไร",
    "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_en": "How many episodes have 18.73 million viewers?",
    "question_th": "มีผู้ชมทั้งหมดกี่ตอน 18.73 ล้านคน?",
    "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_en": "What was the result of the election for georgia's 3rd district?",
    "question_th": "ผลการเลือกตั้งเขตที่ 3 ของจอร์เจียเป็นอย่างไร?",
    "context": "CREATE TABLE table_27487712_1 (result VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_27487712_1 WHERE district = \"Georgia's 8th\"",
    "question_en": "Who was the incumbent from georgia's 8th district?",
    "question_th": "ใครเป็นผู้ดำรงตำแหน่งจากเขตที่ 8 ของจอร์เจีย",
    "context": "CREATE TABLE table_27487712_1 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_27487712_1 WHERE incumbent = \"Bob Barr\"",
    "question_en": "What was the result of the election with incumbent bob barr?",
    "question_th": "ผลการเลือกตั้งกับผู้ดำรงตำแหน่ง Bob Barr เป็นอย่างไร?",
    "context": "CREATE TABLE table_27487712_1 (result VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_27487712_1 WHERE incumbent = \"John Lewis\"",
    "question_en": "What was the result of the election with incumbent john lewis?",
    "question_th": "ผลการเลือกตั้งผู้ดำรงตำแหน่ง จอห์น ลูอิส เป็นอย่างไร?",
    "context": "CREATE TABLE table_27487712_1 (result VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_27487712_1 WHERE elected = 1978",
    "question_en": "Who was the incumbent for the election in 1978?",
    "question_th": "ใครเป็นผู้ดำรงตำแหน่งในการเลือกตั้งในปี 2521?",
    "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 – 24 December 2011\"",
    "question_en": "Who are the judges in the Netherlands for the season airing 28 November 2011 – 24 December 2011?",
    "question_th": "ใครคือกรรมการในประเทศเนเธอร์แลนด์สำหรับฤดูกาลที่ออกอากาศวันที่ 28 พฤศจิกายน พ.ศ. 2554 – 24 ธันวาคม พ.ศ. 2554?",
    "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_en": "What is the version aired on SBS 6 called?",
    "question_th": "เวอร์ชั่นที่ออกอากาศทาง SBS 6 ชื่ออะไรคะ?",
    "context": "CREATE TABLE table_27487310_5 (name VARCHAR, network VARCHAR)"
  },
  {
    "answer": "SELECT air_dates FROM table_27487310_5 WHERE network = \"ABS-CBN\"",
    "question_en": "What are the air dates of the show in ABS-CBN?",
    "question_th": "รายการ 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_en": "Who is the host on the series aired on 18 January 2012?",
    "question_th": "พิธีกรรายการออกอากาศวันที่ 18 มกราคม 2555 คือใคร?",
    "context": "CREATE TABLE table_27487310_5 (host_s_ VARCHAR, air_dates VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_27487310_5 WHERE host_s_ = \"unknown\"",
    "question_en": "What is the name of the series with the unknown host?",
    "question_th": "ซีรีส์ที่พิธีกรไม่รู้จักชื่ออะไร",
    "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_en": "What is every value for points per game if passing yards per game is 179.6?",
    "question_th": "มูลค่าของคะแนนต่อเกมคือเท่าใด หากระยะการส่งบอลต่อเกมคือ 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_en": "What is every value for sacks if interceptions is 19?",
    "question_th": "กระสอบมีค่าอะไรบ้างหากสกัดกั้นได้ 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_en": "What is every value for passing yards per game if rushing yards per game is 113.6?",
    "question_th": "มูลค่าของระยะการส่งบอลต่อเกมคือเท่าใด หากระยะวิ่งต่อเกมคือ 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_en": "What is every value for rushing yards per game if sacks if 25?",
    "question_th": "มูลค่าของระยะวิ่งต่อเกมคืออะไรหากกระสอบถ้า 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_en": "What is every value for rushing yards per game if the season is 1984?",
    "question_th": "ระยะวิ่งต่อเกมมีมูลค่าเท่าไรหากเป็นฤดูกาล 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_en": "How many seasons have a sacks of 39?",
    "question_th": "39 กระสอบมีกี่ฤดูกาล?",
    "context": "CREATE TABLE table_27487336_1 (season VARCHAR, sacks VARCHAR)"
  },
  {
    "answer": "SELECT average FROM table_27496841_3 WHERE rank_by_average = 3",
    "question_en": "Name the average for rank of 3",
    "question_th": "ตั้งชื่อค่าเฉลี่ยสำหรับอันดับ 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_en": "Name the total points for 2",
    "question_th": "ตั้งชื่อคะแนนรวมสำหรับ 2",
    "context": "CREATE TABLE table_27496841_3 (total_points VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT decision FROM table_27501030_7 WHERE opponent = \"Atlanta Thrashers\"",
    "question_en": "What is the decision when the opponents are atlanta thrashers?",
    "question_th": "อะไรคือการตัดสินใจเมื่อฝ่ายตรงข้ามเป็น Atlanta Thrashers?",
    "context": "CREATE TABLE table_27501030_7 (decision VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(game) FROM table_27501030_7 WHERE points = 57",
    "question_en": "How many game entries are there when the points are 57?",
    "question_th": "มีกี่เกมที่เข้าเกมได้เมื่อแต้มถึง 57?",
    "context": "CREATE TABLE table_27501030_7 (game VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT MIN(año) FROM table_27501971_2",
    "question_en": "What is the smallest año?",
    "question_th": "añoที่เล็กที่สุดคืออะไร?",
    "context": "CREATE TABLE table_27501971_2 (año INTEGER)"
  },
  {
    "answer": "SELECT COUNT(premio) FROM table_27501971_2 WHERE categoría = \"Artist of the Year\"",
    "question_en": "How many premio are there when \"Artist of the Year\" was the categoria?",
    "question_th": "มีพรีมิโอกี่รายการในหมวดหมู่ \"ศิลปินแห่งปี\"",
    "context": "CREATE TABLE table_27501971_2 (premio VARCHAR, categoría VARCHAR)"
  },
  {
    "answer": "SELECT resultado FROM table_27501971_2 WHERE country = \"E.E.U.U\"",
    "question_en": "What was the resultado when E.E.U.U was the country?",
    "question_th": "เมื่อ EEUU เป็นประเทศแล้วผลลัพธ์เป็นอย่างไร?",
    "context": "CREATE TABLE table_27501971_2 (resultado VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT categoría FROM table_27501971_2 WHERE country = \"E.E.U.U\"",
    "question_en": "What was the categoria when E.E.U.U was the country?",
    "question_th": "เมื่อ EEUU เป็นประเทศจัดอยู่ในหมวดหมู่ใด",
    "context": "CREATE TABLE table_27501971_2 (categoría VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_27501971_2 WHERE año = 2012",
    "question_en": "When the año was 2012, who was the county?",
    "question_th": "เมื่อañoคือปี 2012 ใครคือเทศมณฑล?",
    "context": "CREATE TABLE table_27501971_2 (country VARCHAR, año VARCHAR)"
  },
  {
    "answer": "SELECT written_by FROM table_27504682_1 WHERE directed_by = \"Lawrence Trilling\"",
    "question_en": "Name who wrote the episode by lawrence trilling",
    "question_th": "ชื่อผู้เขียนตอนโดย 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_en": "Name the air date for alex taub",
    "question_th": "ตั้งชื่อวันออกอากาศให้ alex toub",
    "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_en": "How many games were numbered 69?",
    "question_th": "มีกี่เกมที่มีหมายเลข 69?",
    "context": "CREATE TABLE table_27501030_8 (opponent VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(march) FROM table_27501030_8 WHERE opponent = \"Pittsburgh Penguins\"",
    "question_en": "How many times did they play the pittsburgh penguins?",
    "question_th": "พวกเขาเล่นเพนกวินพิตส์เบิร์กกี่ครั้ง?",
    "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_en": "What is the earliest quarterfinal week when the genre is dancing and the act is 32?",
    "question_th": "สัปดาห์ก่อนรองชนะเลิศเร็วที่สุดเมื่อแนวเพลงกำลังเต้นและการแสดงคือ 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_en": "What is the quarterfinal week for Austin Anderson?",
    "question_th": "สัปดาห์ก่อนรองชนะเลิศของ 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_en": "What is the genre for the group with ages 29-30?",
    "question_th": "ประเภทสำหรับกลุ่มอายุ 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_en": "What is the age of the act who is a rapper?",
    "question_th": "นักแสดงที่เป็นแร็ปเปอร์อายุเท่าไหร่?",
    "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_en": "What is the hometown of Plutonic?",
    "question_th": "บ้านเกิดของพลูโตนิกคืออะไร?",
    "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_en": "How many semi-final weeks are there for acts from Pittsburgh, Pennsylvania?",
    "question_th": "การแสดงจากพิตส์เบิร์ก รัฐเพนซิลวาเนียมีรอบรองชนะเลิศกี่สัปดาห์",
    "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_en": "What was the margin of victory for the event in lake forest, illinois?",
    "question_th": "ชัยชนะของงานนี้ในเลกฟอเรสต์ รัฐอิลลินอยส์เป็นเท่าใด",
    "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_en": "What was zach johnson's score to par?",
    "question_th": "ซัค จอห์นสันมีสกอร์พาร์เท่าไหร่?",
    "context": "CREATE TABLE table_275162_1 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_275162_1 WHERE course = \"Bellerive country Club\"",
    "question_en": "What was the winning score at bellerive country club?",
    "question_th": "คะแนนชนะที่ 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_en": "How many courses are located in carmel, indiana?",
    "question_th": "มีกี่หลักสูตรที่เมืองคาร์เมล รัฐอินเดียน่า",
    "context": "CREATE TABLE table_275162_1 (course VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(status) FROM table_27514362_7 WHERE entrant = \"James Finch\"",
    "question_en": "How many status figures does James Finch have?",
    "question_th": "James Finch มีสถานะกี่คน?",
    "context": "CREATE TABLE table_27514362_7 (status VARCHAR, entrant VARCHAR)"
  },
  {
    "answer": "SELECT car_make FROM table_27514362_7 WHERE driver = \"Sterling Marlin\"",
    "question_en": "What is the car make for Sterling Marlin?",
    "question_th": "รถยี่ห้อ 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_en": "What is the finish position for cars by Pontiac driven by Bobby Hamilton?",
    "question_th": "ตำแหน่งเข้าเส้นชัยสำหรับรถยนต์ของ Pontiac ขับโดย 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_en": "who are the participants that wear clothing in 33-23-36",
    "question_th": "ซึ่งเป็นผู้เข้าร่วมการแต่งกายในช่วง 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_en": "what is the oldest and lives in veraguas",
    "question_th": "สิ่งที่เก่าแก่ที่สุดและอาศัยอยู่ใน veraguas",
    "context": "CREATE TABLE table_27515452_3 (age INTEGER, hometown VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_27515452_3 WHERE contestant = \"Marelissa Him\"",
    "question_en": "where is the participant marelissa him from",
    "question_th": "ผู้เข้าร่วม marelissa เขามาจากไหน",
    "context": "CREATE TABLE table_27515452_3 (hometown VARCHAR, contestant VARCHAR)"
  },
  {
    "answer": "SELECT agency FROM table_27515452_3 WHERE sizes = \"33-23-36\"",
    "question_en": "which company has a person that can wear clothing in 33-23-36",
    "question_th": "บริษัทไหนมีคนใส่เสื้อผ้าได้ช่วง 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_en": "how tall is someone who is able to wear 33-24-35",
    "question_th": "คนสูงเท่าไหร่ใส่ได้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_en": "If the best winning average is 7.3-71, what are the total points?",
    "question_th": "หากค่าเฉลี่ยการชนะที่ดีที่สุดคือ 7.3-71 คะแนนรวมคือเท่าใด",
    "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_en": "if the best run was 138, what is the amount of games lost?",
    "question_th": "หากการวิ่งที่ดีที่สุดคือ 138 เกมที่แพ้คือจำนวนเท่าใด?",
    "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_en": "If the games won are 5, what is the best winning average?",
    "question_th": "ถ้าเกมที่ชนะคือ 5 ค่าเฉลี่ยการชนะที่ดีที่สุดคือเท่าไร?",
    "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_en": "If the player is William Jakes, what are the total points?",
    "question_th": "ถ้าผู้เล่นคือ วิลเลียม เจคส์ ได้แต้มรวมเท่าไหร่?",
    "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_en": "If the grand average is 12.76-202, who is the player?",
    "question_th": "ถ้าค่าเฉลี่ยรวมอยู่ที่ 12.76-202 ผู้เล่นคือใคร?",
    "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_en": "How many players had a best winning average of 20?",
    "question_th": "มีผู้เล่นกี่คนที่มีคะแนนเฉลี่ยชนะดีที่สุดที่ 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_en": "What was the October 22 record?",
    "question_th": "บันทึกวันที่ 22 ตุลาคม คืออะไร?",
    "context": "CREATE TABLE table_27537518_4 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(attendance) FROM table_27537518_4 WHERE score = \"6-4\"",
    "question_en": "What was the 6-4 score's maximum attendance?",
    "question_th": "ผู้เข้าร่วมสูงสุดของคะแนน 6-4 คือเท่าใด",
    "context": "CREATE TABLE table_27537518_4 (attendance INTEGER, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_27537518_4 WHERE game = 1",
    "question_en": "What was the score for game #1?",
    "question_th": "คะแนนของเกม #1 คืออะไร?",
    "context": "CREATE TABLE table_27537518_4 (score VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_27537518_4 WHERE date = \"October 16\"",
    "question_en": "What was the record for the October 16 game?",
    "question_th": "สถิติเกมวันที่ 16 ตุลาคม เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_27537518_4 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_27537518_6 WHERE first_star = \"J. Oduya\"",
    "question_en": "What was the record in the game whose first star was J. Oduya?",
    "question_th": "ในเกมที่ เจ.โอดูยะ สตาร์คนแรกมีสถิติอะไรบ้าง?",
    "context": "CREATE TABLE table_27537518_6 (record VARCHAR, first_star VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_27537518_6 WHERE first_star = \"O. Pavelec\"",
    "question_en": "What was the score of the game whose first star was O. Pavelec?",
    "question_th": "เกมที่สตาร์คนแรกคือ โอ. ปาเวเล็ค ได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_27537518_6 (score VARCHAR, first_star VARCHAR)"
  },
  {
    "answer": "SELECT decision FROM table_27537518_6 WHERE date = \"December 26\"",
    "question_en": "Who made the decision in the game played on December 26?",
    "question_th": "ใครเป็นคนตัดสินใจในเกมที่เล่นเมื่อวันที่ 26 ธันวาคม?",
    "context": "CREATE TABLE table_27537518_6 (decision VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_27537518_6 WHERE attendance = 10056",
    "question_en": "Where was the game seen by 10056 people played?",
    "question_th": "เกมนี้มีคนเล่นถึง 1,0056 คนที่ไหน?",
    "context": "CREATE TABLE table_27537518_6 (location VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT first_star FROM table_27537518_6 WHERE record = \"17-11-5\"",
    "question_en": "Who was the first star of the game with record of 17-11-5?",
    "question_th": "ใครคือสตาร์คนแรกของเกมที่มีสถิติ 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_en": "Who made the decisions in the game whose first star was V. Lecavalier?",
    "question_th": "ใครเป็นผู้ตัดสินใจในเกมที่มีดาวดวงแรกคือ 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_en": "What was the final score the game where the Thrashers over-all record went to 22-16-6?",
    "question_th": "คะแนนสุดท้ายของเกมที่ Thrashers ทำลายสถิติทั้งหมดอยู่ที่ 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_en": "Who got the decision in the game, when the final score was 1-7?",
    "question_th": "ใครเป็นผู้ตัดสินในเกมเมื่อสกอร์สุดท้ายเป็น 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_en": "What date was M. Grabovski the first start of the game?",
    "question_th": "M. Grabovski เริ่มเกมครั้งแรกวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_27537518_7 (date VARCHAR, first_star VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_27537518_9 WHERE opponent = \"Carolina Hurricanes\"",
    "question_en": "What was the record for the game where the opponent was the Carolina Hurricanes?",
    "question_th": "อะไรคือสถิติของเกมที่คู่ต่อสู้คือ 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_en": "On which date was the record of 27-28-11 set?",
    "question_th": "บันทึก 27-28-11 ตั้งวันไหน?",
    "context": "CREATE TABLE table_27537518_9 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT decision FROM table_27537518_9 WHERE record = \"29-28-12\"",
    "question_en": "Who made the decision on the game where the record was 29-28-12?",
    "question_th": "ใครเป็นคนตัดสินใจในเกมที่มีสถิติ 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_en": "Who made the decision on the game where the record was 27-28-11?",
    "question_th": "ใครเป็นคนตัดสินใจในเกมที่มีสถิติ 27-28-11?",
    "context": "CREATE TABLE table_27537518_9 (decision VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_27539272_4 WHERE game = 5",
    "question_en": "Name the score for game 5",
    "question_th": "ตั้งชื่อคะแนนของเกมที่ 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_en": "Name the most points for 1-3-1 record",
    "question_th": "ระบุแต้มสูงสุดเป็นสถิติ 1-3-1",
    "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_en": "Name the record for prudential center - 12,880",
    "question_th": "ตั้งชื่อบันทึกสำหรับศูนย์พรูเด็นเชียล - 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_en": "Name the number of record for  hp pavilion - 17,562",
    "question_th": "ตั้งชื่อหมายเลขบันทึกสำหรับ 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_en": "On how many days in October was the score 6-1?",
    "question_th": "เดือนตุลาคมสกอร์ 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_en": "What is the location and what was the attendance on those days when the score was 3-5-1?",
    "question_th": "สถานที่ไหน และผู้ชมในสมัยนั้นสกอร์ 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_en": "How many times was the sabres record 2-5-1?",
    "question_th": "กระบี่ทำสถิติ 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_en": "What was the location and attendance for game 41?",
    "question_th": "สถานที่และการเข้าร่วมในเกมที่ 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_en": "On what day of January was the record 10-29-2?",
    "question_th": "สถิติ 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_en": "What are the most points scored in a game where the score was 1-2?",
    "question_th": "คะแนนสูงสุดในเกมที่สกอร์ 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_en": "On what day in January was the record 15-29-3?",
    "question_th": "เดือนมกราคมเป็นสถิติ 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_en": "Against what team did the Islanders have a 5-18-5 record?",
    "question_th": "ชาวเกาะมีสถิติ 5-18-5 เทียบกับทีมใด?",
    "context": "CREATE TABLE table_27539535_5 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_27539535_5 WHERE score = \"5-4\"",
    "question_en": "Against what opponent did the game end 5-4?",
    "question_th": "จบเกมกับคู่ต่อสู้คนไหน 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_en": "How many games were played against a team with a 9-19-6 record against the Islanders?",
    "question_th": "มีการเล่นกับทีมที่มีสถิติ 9-19-6 กับชาวเกาะกี่เกม?",
    "context": "CREATE TABLE table_27539535_5 (december VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(opponent) FROM table_27539808_3 WHERE october = 9",
    "question_en": "How many games did they play on october 9?",
    "question_th": "พวกเขาเล่นไปกี่เกมในวันที่ 9 ตุลาคม?",
    "context": "CREATE TABLE table_27539808_3 (opponent VARCHAR, october VARCHAR)"
  },
  {
    "answer": "SELECT MIN(points) FROM table_27539808_5 WHERE game = 32",
    "question_en": "What is the lowest number of points for game 32?",
    "question_th": "คะแนนต่ำสุดในเกม 32 คือเท่าไร?",
    "context": "CREATE TABLE table_27539808_5 (points INTEGER, game VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_27539808_5 WHERE december = 1",
    "question_en": "What is the location and attendance total from the game on December 1?",
    "question_th": "สถานที่และผู้เข้าร่วมจากเกมในวันที่ 1 ธันวาคมเป็นเท่าใด",
    "context": "CREATE TABLE table_27539808_5 (location_attendance VARCHAR, december VARCHAR)"
  },
  {
    "answer": "SELECT directed_by FROM table_27547668_3 WHERE viewers = 899000",
    "question_en": "Who directed the episode with 899000 viewers?",
    "question_th": "ใครเป็นผู้กำกับตอนที่มีผู้ชม 899,000 คน?",
    "context": "CREATE TABLE table_27547668_3 (directed_by VARCHAR, viewers VARCHAR)"
  },
  {
    "answer": "SELECT MIN(_number) FROM table_27547668_3",
    "question_en": "What is the smallest numbered episode in the series listed?",
    "question_th": "ตอนที่น้อยที่สุดในซีรีส์นี้คืออะไร?",
    "context": "CREATE TABLE table_27547668_3 (_number INTEGER)"
  },
  {
    "answer": "SELECT viewers FROM table_27547668_3 WHERE _number = 13",
    "question_en": "How many people watched episode number 13?",
    "question_th": "ตอนที่ 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_en": "What episode number in the season was written by Greg nelson and directed by Keith samples?",
    "question_th": "หมายเลขตอนใดของซีซันที่เขียนโดย Greg nelson และกำกับโดย 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_en": "What is the title of the episode with production code 102?",
    "question_th": "ชื่อตอนที่มีรหัสการผลิต 102 คืออะไร?",
    "context": "CREATE TABLE table_27547668_2 (title VARCHAR, prod_code VARCHAR)"
  },
  {
    "answer": "SELECT original_airdate FROM table_27547668_2 WHERE _number = 6",
    "question_en": "What is the original air date of # 6?",
    "question_th": "ออนแอร์ตอนแรกของ #6 คือวันไหนคะ?",
    "context": "CREATE TABLE table_27547668_2 (original_airdate VARCHAR, _number VARCHAR)"
  },
  {
    "answer": "SELECT original_airdate FROM table_27547668_2 WHERE viewers = 908000",
    "question_en": "What is the original air date of the episode with 908000 viewers?",
    "question_th": "วันที่ออกอากาศดั้งเดิมของตอนที่มีผู้ชม 908,000 คนคือเมื่อใด",
    "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_en": "How many season premieres had 15.27 million viewers?",
    "question_th": "รอบปฐมทัศน์ซีซันมีผู้ชม 15.27 ล้านคนกี่คน?",
    "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_en": "When was the season finale that ranked 20th?",
    "question_th": "ตอนจบฤดูกาลที่อันดับ 20 คือเมื่อไหร่?",
    "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_en": "What tv season year had 14.54 million viewers?",
    "question_th": "ทีวีซีซั่นใดมีผู้ชม 14.54 ล้านคนในปีใด",
    "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_en": "What episode number had 14.41 million viewers?",
    "question_th": "หมายเลขตอนใดมีผู้ชม 14.41 ล้านคน?",
    "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_en": "What is the minimum rnd at Laguna Seca?",
    "question_th": "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_en": "Name the gt 2.0 winning team for sports 2.0 winning team for #16 trans ocean motors for castle rock",
    "question_th": "ตั้งชื่อทีมที่ชนะ gt 2.0 สำหรับทีมที่ชนะด้านกีฬา 2.0 สำหรับ #16 ทรานส์โอเชี่ยนมอเตอร์สสำหรับ 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_en": "Name the results for #23 lotus",
    "question_th": "ชื่อผลลัพธ์ #23 บัว",
    "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_en": "Name results for herb wetanson",
    "question_th": "ผลการค้นหา สมุนไพรเวแทนสัน",
    "context": "CREATE TABLE table_27561503_2 (results VARCHAR, gt_20_winning_team VARCHAR)"
  },
  {
    "answer": "SELECT province FROM table_27592654_2 WHERE electorate = \"Collingwood\"",
    "question_en": "What was the province if the electorate was Collingwood?",
    "question_th": "จังหวัดอะไรถ้าผู้มีสิทธิเลือกตั้งคือคอลลิงวูด?",
    "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_en": "What was the province with an election date of 5 cannot handle non-empty timestamp argument! 1861?",
    "question_th": "จังหวัดอะไรที่มีวันเลือกตั้ง 5 ไม่สามารถจัดการอาร์กิวเมนต์การประทับเวลาที่ไม่ว่างเปล่าได้! พ.ศ. 2404?",
    "context": "CREATE TABLE table_27592654_2 (province VARCHAR, election_date VARCHAR)"
  },
  {
    "answer": "SELECT races FROM table_27582888_1 WHERE final_placing = \"5th\"",
    "question_en": "Name the races for final placing being 5th",
    "question_th": "ตั้งชื่อการแข่งขันรอบสุดท้ายเป็นอันดับที่ 5",
    "context": "CREATE TABLE table_27582888_1 (races VARCHAR, final_placing VARCHAR)"
  },
  {
    "answer": "SELECT MAX(poles) FROM table_27582888_1 WHERE podiums = 4",
    "question_en": "Name the post poles for 4 podiums",
    "question_th": "ตั้งชื่อเสาเสา 4 แท่น",
    "context": "CREATE TABLE table_27582888_1 (poles INTEGER, podiums VARCHAR)"
  },
  {
    "answer": "SELECT song_choice FROM table_27614571_1 WHERE theme = \"Samba\"",
    "question_en": "What was Barreto's song choice when the theme was samba?",
    "question_th": "เพลงของ Barreto เลือกเพลงอะไรเมื่อธีมเป็นเพลง 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_en": "What was Barreto's song choice where the original artist was Patricia Marx?",
    "question_th": "อะไรคือตัวเลือกเพลงของ Barreto โดยที่ศิลปินต้นฉบับคือ 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_en": "In which week # was the original artist of Barreto's song choice was Leila Pinheiro?",
    "question_th": "ในสัปดาห์ที่ # ศิลปินต้นฉบับของเพลงที่ Barreto เลือกคือ Leila Pinheiro?",
    "context": "CREATE TABLE table_27614571_1 (week__number VARCHAR, original_artist VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_27611593_5",
    "question_en": "When did the earliest tournament happened?",
    "question_th": "การแข่งขันครั้งแรกสุดเกิดขึ้นเมื่อใด?",
    "context": "CREATE TABLE table_27611593_5 (year INTEGER)"
  },
  {
    "answer": "SELECT partner FROM table_27611593_5 WHERE score = \"6–2, 3–6, 6–7 (7-9)\"",
    "question_en": "Who was Petrova's partner where she scored 6–2, 3–6, 6–7 (7-9)?",
    "question_th": "ใครคือคู่หูของเปโตรวา โดยที่เธอทำคะแนนได้ 6–2, 3–6, 6–7 (7-9)?",
    "context": "CREATE TABLE table_27611593_5 (partner VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT opponents FROM table_27611593_5 WHERE partner = \"Vania King\"",
    "question_en": "Who were Petrova's opponents with Vania King?",
    "question_th": "ใครคือคู่ต่อสู้ของ Petrova กับ 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_en": "Who wrote the episode with the production code 211?",
    "question_th": "ใครเป็นคนเขียนตอนด้วยรหัสการผลิต 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_en": "What is the maximum production code of the episode directed by Sean McNamara?",
    "question_th": "รหัสการผลิตสูงสุดของตอนที่กำกับโดย 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_en": "How many audition city's are there with an episode air date of June 24, 2010?",
    "question_th": "มีออดิชั่นซิตี้กี่แห่งซึ่งออกอากาศตอนวันที่ 24 มิถุนายน 2553?",
    "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_en": "List all episode air dates that auditioned at Nego Quirido Sambadrome?",
    "question_th": "รายชื่อวันที่ออกอากาศตอนทั้งหมดที่คัดเลือกที่ 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_en": "List all episode air dates where Luiza Possi was the guest fourth judge?",
    "question_th": "รายชื่อวันที่ออกอากาศตอนทั้งหมดที่ Luiza Possi เป็นผู้ตัดสินคนที่สี่เป็นแขกรับเชิญ?",
    "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_en": "How many episode air dates are there for auditioning city Rio De Janeiro?",
    "question_th": "มีวันที่ออกอากาศกี่ตอนสำหรับการออดิชั่นเมืองริโอเดจาเนโร?",
    "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_en": "Where was the audition venue where Peninha was the guest fourth judge?",
    "question_th": "สถานที่ออดิชั่นที่เปนินญาเป็นผู้ตัดสินคนที่สี่รับเชิญอยู่ที่ไหน?",
    "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_en": "Which song was picked that was originally performed by Marisa Monte?",
    "question_th": "เพลงใดที่ถูกเลือกโดยมาริสา มอนเตแต่เดิม?",
    "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_en": "What was the result of the performance of the song by Caetano Veloso?",
    "question_th": "อะไรคือผลลัพธ์ของการแสดงเพลงของ 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_en": "What was the order # of the theme Male Singers?",
    "question_th": "ลำดับ # ของธีม 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_en": "What was the theme when original artist Rosana's song was performed?",
    "question_th": "ธีมของการแสดงเพลงของศิลปินต้นฉบับ Rosana คืออะไร?",
    "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_en": "How many different weeks are there in order number 4 that were judge's choice?",
    "question_th": "มีกี่สัปดาห์ที่แตกต่างกันในลำดับที่ 4 ที่ได้รับการตัดสินโดยกรรมการ?",
    "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_en": "What Marisa Monte song choice was song during top 5?",
    "question_th": "เพลงใดที่ Marisa Monte เลือกเป็นเพลงระหว่าง 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_en": "Who was the original artist of the Top 12 Men theme?",
    "question_th": "ใครคือศิลปินดั้งเดิมของธีม Top 12 Men?",
    "context": "CREATE TABLE table_27614707_1 (original_artist VARCHAR, theme VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_27614707_1 WHERE theme = \"Top 12 Men\"",
    "question_en": "What was the result of the Top 12 Men theme?",
    "question_th": "อะไรคือผลลัพธ์ของธีม Top 12 Men?",
    "context": "CREATE TABLE table_27614707_1 (result VARCHAR, theme VARCHAR)"
  },
  {
    "answer": "SELECT week__number FROM table_27614707_1 WHERE result = \"Bottom 3\"",
    "question_en": "What week number was the result bottom 3?",
    "question_th": "ผลลัพธ์ 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_en": "How many points per game did he have when he had 1.5 assists per game?",
    "question_th": "เขาได้กี่คะแนนต่อเกมเมื่อเขามี 1.5 แอสซิสต์ต่อเกม?",
    "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_en": "How many rebounds per game did he have at the 2006 fiba world championship?",
    "question_th": "เขามีกี่รีบาวน์ต่อเกมในการแข่งขันชิงแชมป์โลกฟีบาปี 2549?",
    "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_en": "How many rebounds per game did he have at the 2003 eurobasket?",
    "question_th": "เขามีกี่รีบาวน์ต่อเกมในยูโรบาสเก็ตปี 2003?",
    "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_en": "How many assists per game did he have when he had 6.8 points per game?",
    "question_th": "เขามีแอสซิสต์กี่แต้มต่อเกมเมื่อเขามี 6.8 แต้มต่อเกม?",
    "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_en": "which is the production code when the number of the episode in series is 87? ",
    "question_th": " รหัสการผลิตเมื่อจำนวนตอนในซีรีส์คือ 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_en": "what is the number of the episode in the series whose production code is 405?",
    "question_th": "ซีรีส์ที่มีรหัสการผลิตคือ 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_en": "when was the premiere of the episode whose production code is 415? ",
    "question_th": " ตอนที่รหัสการผลิตคือ 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_en": "who were the writers in the episode whose production code was 411? ",
    "question_th": " ใครคือคนเขียนบทในตอนที่รหัสการผลิตคือ 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_en": "who were the director of the episode whose number in the season is 17? ",
    "question_th": " ใครเป็นผู้กำกับตอนที่มีหมายเลขในซีซั่น 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_en": "Name the currency for negotiable debt being 1300",
    "question_th": "ตั้งชื่อสกุลเงินสำหรับหนี้ที่สามารถต่อรองได้คือ 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_en": "Name the country that has the yen",
    "question_th": "ตั้งชื่อประเทศที่มีเงินเยน",
    "context": "CREATE TABLE table_2764267_2 (country VARCHAR, currency VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(country) FROM table_2764267_2 WHERE currency = \"US dollar\"",
    "question_en": "Name the number of countries that have the us dollar",
    "question_th": "ตั้งชื่อจำนวนประเทศที่มีดอลลาร์สหรัฐ",
    "context": "CREATE TABLE table_2764267_2 (country VARCHAR, currency VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_2764267_2 WHERE currency = \"US dollar\"",
    "question_en": "Name the country for the us dollar",
    "question_th": "ตั้งชื่อประเทศสำหรับดอลลาร์สหรัฐ",
    "context": "CREATE TABLE table_2764267_2 (country VARCHAR, currency VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(team) FROM table_27631756_2 WHERE head_coach = \"Mahdi Ali\"",
    "question_en": "How many teams have a head coach named mahdi ali?",
    "question_th": "มีกี่ทีมที่มีเฮดโค้ชชื่อมาห์ดี อาลี?",
    "context": "CREATE TABLE table_27631756_2 (team VARCHAR, head_coach VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(captain) FROM table_27631756_2 WHERE kitmaker = \"N/A\"",
    "question_en": "How many captains have the kitmaker as n/a?",
    "question_th": "มีกัปตันกี่คนที่มีช่างทำอุปกรณ์ที่ไม่มีข้อมูล?",
    "context": "CREATE TABLE table_27631756_2 (captain VARCHAR, kitmaker VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(kitmaker) FROM table_27631756_2 WHERE team = \"Ittihad Kalba\"",
    "question_en": "How many kitmaker correspond to team ittihad kalba?",
    "question_th": "มีช่างทำอุปกรณ์กี่คนที่สอดคล้องกับทีม 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_en": "What is the name of the captain when teh shirt sponsor is n/a?",
    "question_th": "กัปตันเสื้อไม่มีชื่อผู้สนับสนุนว่าอะไร?",
    "context": "CREATE TABLE table_27631756_2 (captain VARCHAR, shirt_sponsor VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(captain) FROM table_27631756_2 WHERE shirt_sponsor = \"Toshiba\"",
    "question_en": "How many captains when the shirt sponsor is toshiba?",
    "question_th": "ตอนสปอนเซอร์เสื้อคือโตชิบากี่กัปตันครับ?",
    "context": "CREATE TABLE table_27631756_2 (captain VARCHAR, shirt_sponsor VARCHAR)"
  },
  {
    "answer": "SELECT chairman FROM table_27631756_2 WHERE captain = \"Fawzi Bashir\"",
    "question_en": "Who is the chairman when teh captain is fawzi bashir?",
    "question_th": "ใครเป็นประธาน ในเมื่อกัปตันคือ ฟะซี บาชีร์?",
    "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_en": "Which season had f/laps is 0 and races is 2?",
    "question_th": "ฤดูกาลใดที่ f/laps เป็น 0 และการแข่งขันคือ 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_en": "How many entries are there for points for the 6th position?",
    "question_th": "มีคะแนนเข้าอันดับที่ 6 กี่รายการ?",
    "context": "CREATE TABLE table_27631002_1 (points VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(season) FROM table_27631002_1 WHERE position = \"2nd\"",
    "question_en": "How many season are shown for the 2nd position?",
    "question_th": "อันดับ 2 มีการแสดงกี่ฤดูกาล?",
    "context": "CREATE TABLE table_27631002_1 (season VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT wins FROM table_27631002_1 WHERE position = \"7th\"",
    "question_en": "What are the wins for the 7th position?",
    "question_th": "ชัยชนะอันดับที่ 7 คืออะไร?",
    "context": "CREATE TABLE table_27631002_1 (wins VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_27631002_1 WHERE series = \"Austria Formel 3 Cup\"",
    "question_en": "What is the position for the austria formel 3 cup series?",
    "question_th": "ออสเตรีย ฟอร์เมล 3 คัพ ซีรีส์ 3 อยู่ตำแหน่งไหน?",
    "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_en": "How many different PPI does the model with ppcm of 87 have?",
    "question_th": "รุ่นที่มี ppcm 87 มี PPI ที่แตกต่างกันกี่แบบ",
    "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_en": "What's the resolution of the model with a PPD of 69?",
    "question_th": "ความละเอียดของรุ่น PPD 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_en": "What is the IHSA music class for the mascot that is the lancers?",
    "question_th": "คลาสดนตรี IHSA สำหรับมาสคอตที่เป็นแลนเซอร์คืออะไร?",
    "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_en": "What is the IHSA cheerleading class for the enrollment of 2600?",
    "question_th": "ชั้นเรียนเชียร์ลีดเดอร์ของ IHSA สำหรับการลงทะเบียน 2600 คืออะไร?",
    "context": "CREATE TABLE table_27653955_1 (ihsa_cheerleading_class VARCHAR, enrollment VARCHAR)"
  },
  {
    "answer": "SELECT colors FROM table_27653955_1 WHERE enrollment = 2020",
    "question_en": "What are the colors for the enrollment of 2020?",
    "question_th": "การลงทะเบียนเรียนปี 2563 มีสีอะไรบ้าง?",
    "context": "CREATE TABLE table_27653955_1 (colors VARCHAR, enrollment VARCHAR)"
  },
  {
    "answer": "SELECT MIN(old_membership_total) FROM table_27671835_3",
    "question_en": "What is the smallest number for old membership total?",
    "question_th": "จำนวนที่น้อยที่สุดสำหรับจำนวนสมาชิกเก่าทั้งหมดคือเท่าใด",
    "context": "CREATE TABLE table_27671835_3 (old_membership_total INTEGER)"
  },
  {
    "answer": "SELECT MIN(members_lost) FROM table_27671835_3 WHERE net_change = \"−1\"",
    "question_en": "What is the lowest number of members lost when the  net change is −1?",
    "question_th": "จำนวนสมาชิกที่สูญเสียน้อยที่สุดเมื่อการเปลี่ยนแปลงสุทธิคือ −1 คือเท่าใด",
    "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_en": "What is the new membership total if the members lost is bigger than 1.0?",
    "question_th": "จำนวนสมาชิกใหม่ทั้งหมดจะเป็นเท่าไรหากสมาชิกที่สูญเสียไปมากกว่า 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_en": "How many members were added at the nchc (men only) conference?",
    "question_th": "มีสมาชิกเพิ่มกี่คนในการประชุม nchc (ผู้ชายเท่านั้น)",
    "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_en": "What was the new membership total at the nchc (men only) conference?",
    "question_th": "จำนวนสมาชิกใหม่ในการประชุม nchc (ผู้ชายเท่านั้น) เป็นเท่าใด",
    "context": "CREATE TABLE table_27671835_3 (new_membership_total VARCHAR, conference VARCHAR)"
  },
  {
    "answer": "SELECT outgoing_manager FROM table_27683516_3 WHERE incoming_manager = \"Štefan Tarkovič\"",
    "question_en": "What is the outgoing manager when the incoming manager is štefan tarkovič?",
    "question_th": "ผู้จัดการทีมที่จะลาออกจะเป็นอย่างไรเมื่อผู้จัดการทีมที่เข้ามาคือ štefan tarkovič?",
    "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_en": "How many dates of vacancy were on 30 october 2010?",
    "question_th": "วันที่ 30 ตุลาคม 2553 มีตำแหน่งว่างกี่วัน?",
    "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_en": "What is the manner of departure when the date of vacancy is 28 september 2010?",
    "question_th": "ลักษณะการเดินทางเมื่อวันว่างคือ 28 กันยายน 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_en": "What is the date of appointment when the date of vacancy is 24 november 2010?",
    "question_th": "วันที่ได้รับการแต่งตั้งคือวันที่ตำแหน่งว่างคือวันที่ 24 พฤศจิกายน 2553?",
    "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_en": "What is the outgoing manager when the date of vacancy is 10 october 2010?",
    "question_th": "ผู้จัดการที่จะลาออกเมื่อตำแหน่งว่างคือวันที่ 10 ตุลาคม 2553 คืออะไร?",
    "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_en": "What is the table when the team is slovan bratislava?",
    "question_th": "ตารางคะแนนเมื่อทีม สโลวาน บราติสลาวา เป็นอย่างไร?",
    "context": "CREATE TABLE table_27683516_3 (table VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(visitors__total_) FROM table_27685921_1 WHERE exhibitors__total_ = 1654",
    "question_en": "how many people come to visit when the 1654 exhibitions",
    "question_th": "มีผู้มาเยี่ยมชมกี่คนเมื่อมีการจัดนิทรรศการปี 1654",
    "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_en": "what is the most time where exhibitions is 1701",
    "question_th": "นิทรรศการคือช่วงใดมากที่สุดคือ 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_en": "who had high points on march 14?",
    "question_th": "ใครมีคะแนนสูงในวันที่ 14 มีนาคม?",
    "context": "CREATE TABLE table_27700375_10 (high_points VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_27700375_10 WHERE game = 69",
    "question_en": "who had high rebounds at game 69?",
    "question_th": "ใครมีการรีบาวด์สูงในเกมที่ 69?",
    "context": "CREATE TABLE table_27700375_10 (high_rebounds VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_27698941_8 WHERE date = \"January 17\"",
    "question_en": "Who were the 76ers opponents on January 17?",
    "question_th": "คู่ต่อสู้ของ 76ers เมื่อวันที่ 17 มกราคมคือใคร?",
    "context": "CREATE TABLE table_27698941_8 (team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(high_points) FROM table_27698941_8 WHERE game = 34",
    "question_en": "How many players held the high point records for game 34?",
    "question_th": "มีผู้เล่นกี่คนที่ทำสถิติสูงสุดในเกมที่ 34?",
    "context": "CREATE TABLE table_27698941_8 (high_points VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_27698941_8 WHERE date = \"January 7\"",
    "question_en": "What the win - loss recored for January 7?",
    "question_th": "สรุปผลชนะ-แพ้ในวันที่ 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_en": "How many people led in points during the game on October 5?",
    "question_th": "มีกี่คนที่นำแต้มระหว่างเกมวันที่ 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_en": "Name the date for the palace of auburn hills 14,554",
    "question_th": "ตั้งชื่อวันที่พระราชวังออเบิร์นฮิลส์ 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–116 (OT)\"",
    "question_en": "Name the least game for  l 109–116 (ot)",
    "question_th": "ตั้งชื่อเกมน้อยที่สุดสำหรับ l 109–116 (ot)",
    "context": "CREATE TABLE table_27700375_11 (game INTEGER, score VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_27700375_11 WHERE team = \"Charlotte\"",
    "question_en": "Name the high rebounds for charlotte",
    "question_th": "ตั้งชื่อการรีบาวด์สูงให้กับชาร์ล็อตต์",
    "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_en": "Name the high rebounds for wells fargo center 16,695",
    "question_th": "ตั้งชื่อการรีบาวด์สูงของ เวลส์ ฟาร์โก เซ็นเตอร์ 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_en": "Who got the high rebounds if Brook Lopez (15) earned the high points?",
    "question_th": "ใครจะได้รับการรีบาวด์สูงหากบรูคโลเปซ (15) ได้รับคะแนนสูง?",
    "context": "CREATE TABLE table_27700375_8 (high_rebounds VARCHAR, high_points VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_27700375_8 WHERE team = \"@ Indiana\"",
    "question_en": "Who got high assists for team @ Indiana?",
    "question_th": "ใครทำแอสซิสต์ได้สูงให้กับทีม @ 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_en": "How many record data were written when Devin Harris (6) was High Assists?",
    "question_th": "มีการเขียนข้อมูลบันทึกจำนวนเท่าใดเมื่อ Devin Harris (6) เป็น 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_en": "How many games were held on January 5?",
    "question_th": "วันที่ 5 มกราคม มีการแข่งขันกี่เกม?",
    "context": "CREATE TABLE table_27700375_8 (game VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_27700530_11 WHERE team = \"Houston\"",
    "question_en": "Who had highest assists at the game against Houston?",
    "question_th": "ใครเป็นผู้แอสซิสต์สูงสุดในเกมกับฮุสตัน?",
    "context": "CREATE TABLE table_27700530_11 (high_assists VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_27700375_7 WHERE game = 23",
    "question_en": "what is the date of the game 23?",
    "question_th": "เกมวันที่ 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_en": "If the high points were by Anthony Morrow (24), what was the team?",
    "question_th": "ถ้าแต้มสูงเป็นของแอนโทนี่ มอร์โรว์ (24) ทีมไหนล่ะ?",
    "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_en": "In how many games were the high rebounds made by Derrick Favors (8)?",
    "question_th": "Derrick Favours (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_en": "If the location attendance was Quicken Loans Arena 20,562, who had the High Assists?",
    "question_th": "หากผู้เข้าร่วมสถานที่คือ Quicken Loans Arena 20,562 ใครมี 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_en": "Which game number was located in Prudential Center 15,086?",
    "question_th": "หมายเลขเกมใดอยู่ใน 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_en": "In how many games did Terrence Williams (9) have High assists?",
    "question_th": "เทอร์เรนซ์ วิลเลียมส์ (9) มีแอสซิสต์สูงในเกมกี่เกม?",
    "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_en": "What is the location and attendance of the game when gilbert arenas (9) had the high assists?",
    "question_th": "ตำแหน่งและผู้เข้าชมเกมเมื่อกิลเบิร์ตอารีนาส (9) ทำแอสซิสต์ได้สูงคือที่ไหน?",
    "context": "CREATE TABLE table_27700530_10 (location_attendance VARCHAR, high_assists VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_27700530_10 WHERE record = \"18–12\"",
    "question_en": "What is the date where the record was 18–12?",
    "question_th": "วันที่บันทึกคือ 18–12 คืออะไร?",
    "context": "CREATE TABLE table_27700530_10 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_27700530_10 WHERE high_assists = \"Jameer Nelson (10)\"",
    "question_en": "What is the date when  jameer nelson (10) had the high assists?",
    "question_th": "วันที่เท่าไหร่ที่จาเมียร์ เนลสัน (10) ทำแอสซิสต์สูงได้?",
    "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_en": "What is the record when jameer nelson (19) had the  high points?",
    "question_th": "เจมีร์ เนลสัน (19) มีสถิติสูงสุดเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_27700530_10 (record VARCHAR, high_points VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_27700530_13 WHERE date = \"March 9\"",
    "question_en": "What was the location and attendance on March 9?",
    "question_th": "สถานที่และการเข้าร่วมในวันที่ 9 มีนาคมคืออะไร?",
    "context": "CREATE TABLE table_27700530_13 (location_attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(team) FROM table_27700530_9 WHERE game = 13",
    "question_en": "How many games were numbered 13?",
    "question_th": "มีกี่เกมที่มีหมายเลข 13?",
    "context": "CREATE TABLE table_27700530_9 (team VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_27700530_9 WHERE team = \"Minnesota\"",
    "question_en": "What was the team's record when they played minnesota?",
    "question_th": "บันทึกของทีมเมื่อพวกเขาเล่นมินนิโซตาคืออะไร?",
    "context": "CREATE TABLE table_27700530_9 (record VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_27700530_9 WHERE date = \"November 10\"",
    "question_en": "What was the team's record on november 10?",
    "question_th": "บันทึกของทีมเมื่อวันที่ 10 พฤศจิกายนเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_27700530_9 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_27704187_10 WHERE date = \"March 26\"",
    "question_en": "Who had the high assists on March 26?",
    "question_th": "ใครทำแอสซิสต์ได้สูงที่สุดในวันที่ 26 มีนาคม?",
    "context": "CREATE TABLE table_27704187_10 (high_assists VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_27704187_10 WHERE team = \"Milwaukee\"",
    "question_en": "What was the season record when the team played against Milwaukee?",
    "question_th": "สถิติฤดูกาลที่ทีมเล่นกับมิลวอกีเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_27704187_10 (record VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_27703902_9 WHERE game = 81",
    "question_en": "Who had the high points in game is 81?",
    "question_th": "ใครมีคะแนนสูงสุดในเกมคือ 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_en": "What game number was played on april 8?",
    "question_th": "วันที่ 8 เมษายน เล่นเกมหมายเลขอะไร?",
    "context": "CREATE TABLE table_27704187_11 (game INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_27704187_11 WHERE date = \"April 8\"",
    "question_en": "Who had the high rebounds on april 8?",
    "question_th": "วันที่ 8 เมษายน ใครมีการรีบาวด์สูงที่สุด?",
    "context": "CREATE TABLE table_27704187_11 (high_rebounds VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_27704187_11 WHERE game = 75",
    "question_en": "Where did they play and how many attended game number 75?",
    "question_th": "พวกเขาเล่นที่ไหนและมีผู้เข้าร่วมเกมหมายเลข 75 กี่คน?",
    "context": "CREATE TABLE table_27704187_11 (location_attendance VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_27704187_7 WHERE team = \"Boston\"",
    "question_en": "Who did the high rebounds in the game against Boston?",
    "question_th": "ใครเป็นผู้รีบาวด์สูงในเกมกับบอสตัน?",
    "context": "CREATE TABLE table_27704187_7 (high_rebounds VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_27704187_7 WHERE team = \"Detroit\"",
    "question_en": "Where was the game against Detroit played?",
    "question_th": "เกมกับดีทรอยต์เล่นที่ไหน?",
    "context": "CREATE TABLE table_27704187_7 (location_attendance VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_27712180_13 WHERE game = 3",
    "question_en": "What was the date of game #3?",
    "question_th": "เกม #3 วันที่เท่าไหร่?",
    "context": "CREATE TABLE table_27712180_13 (date VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_27712180_13 WHERE date = \"May 6\"",
    "question_en": "What was the name of the opposing team on the May 6 game?",
    "question_th": "ทีมตรงข้ามในเกมวันที่ 6 พ.ค. ชื่ออะไร?",
    "context": "CREATE TABLE table_27712180_13 (team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(2010 AS _11) FROM table_27712_2 WHERE country = \"Brazil\"",
    "question_en": "How many data were given on 2010/2011 in Brazil?",
    "question_th": "มีข้อมูลจำนวนเท่าใดที่ได้รับในปี 2010/2011 ในบราซิล",
    "context": "CREATE TABLE table_27712_2 (country VARCHAR)"
  },
  {
    "answer": "SELECT MAX(overall_goals_scored) FROM table_27708484_3 WHERE stadium = \"Moses Mabhida stadium\"",
    "question_en": "how many overall goals were scored at moses mabhida stadium?",
    "question_th": "โมเสส มาบิดา สเตเดี้ยม ทำได้ทั้งหมดกี่ประตู?",
    "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_en": "how many matches were played that average goals scored 1.25?",
    "question_th": "มีการแข่งขันกี่นัดที่ประตูเฉลี่ยได้ 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_en": "what is the minimum overall attendance where the goals scored were 19?",
    "question_th": "จำนวนผู้เข้าร่วมขั้นต่ำโดยรวมโดยทำประตูได้ 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_en": "what is the elevation for port elizabeth?",
    "question_th": "พอร์ตอลิซาเบธอยู่ระดับความสูงเท่าไร?",
    "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_en": "what is the average attendance per match wheree the elevation is 1500 m?",
    "question_th": "ผู้ชมเฉลี่ยต่อนัดที่ระดับความสูง 1,500 ม. เป็นเท่าใด",
    "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_en": "What is the record for the date november 19?",
    "question_th": "บันทึกประจำวันที่ 19 พฤศจิกายน คืออะไร?",
    "context": "CREATE TABLE table_27712180_6 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_27712180_7 WHERE score = \"W 90–77 (OT)\"",
    "question_en": "Name the high points for w 90–77 (ot)",
    "question_th": "ตั้งชื่อคะแนนสูงสุดสำหรับ w 90–77 (ot)",
    "context": "CREATE TABLE table_27712180_7 (high_points VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_27712180_7 WHERE date = \"December 18\"",
    "question_en": "Name the team for december 18",
    "question_th": "ตั้งชื่อทีมวันที่ 18 ธันวาคม",
    "context": "CREATE TABLE table_27712180_7 (team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_27712702_11 WHERE team = \"Detroit\"",
    "question_en": "Who had the high assists against detroit?",
    "question_th": "ใครทำแอสซิสต์ในเกมเจอดีทรอยต์ได้สูง?",
    "context": "CREATE TABLE table_27712702_11 (high_assists VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_27712702_11 WHERE date = \"March 27\"",
    "question_en": "Who was the other team on march 27?",
    "question_th": "อีกทีมคือใครในวันที่ 27 มีนาคม?",
    "context": "CREATE TABLE table_27712702_11 (team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MIN(game) FROM table_27712702_11 WHERE record = \"46–24\"",
    "question_en": "what was the game number where the record was 46–24?",
    "question_th": "หมายเลขเกมที่มีสถิติ 46–24 คืออะไร?",
    "context": "CREATE TABLE table_27712702_11 (game INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT MIN(game) FROM table_27712702_11 WHERE date = \"March 27\"",
    "question_en": "What was the game number on march 27?",
    "question_th": "หมายเลขเกมเมื่อวันที่ 27 มีนาคมคืออะไร?",
    "context": "CREATE TABLE table_27712702_11 (game INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(game) FROM table_27712702_11",
    "question_en": "What is the largest game number?",
    "question_th": "หมายเลขเกมที่ใหญ่ที่สุดคืออะไร?",
    "context": "CREATE TABLE table_27712702_11 (game INTEGER)"
  },
  {
    "answer": "SELECT COUNT(high_rebounds) FROM table_27712451_6 WHERE date = \"December 8\"",
    "question_en": "How many high rebounds took place on December 8?",
    "question_th": "มีการรีบาวด์สูงกี่ครั้งในวันที่ 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_en": "What are December 10's high points?",
    "question_th": "จุดสูงสุดของวันที่ 10 ธันวาคม คืออะไร?",
    "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_en": "How many entries are shown for high rebounds for the philips arena 20,024 game?",
    "question_th": "มีการแสดงกี่รายการสำหรับการรีบาวด์สูงสำหรับเกม philips arena 20,024?",
    "context": "CREATE TABLE table_27713030_11 (high_rebounds VARCHAR, location_attendance VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_27713030_11 WHERE score = \"W 94–88 (OT)\"",
    "question_en": "Who was the opponent for the game with a score of w 94–88 (ot)?",
    "question_th": "ใครคือคู่ต่อสู้ในเกมด้วยคะแนน w 94–88 (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_en": "What was the record for the location and attendance of american airlines arena 19,825?",
    "question_th": "สถานที่และผู้เข้าร่วมสนามกีฬา American Airlines 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_en": "What were the high points on April 8?",
    "question_th": "จุดสูงสุดในวันที่ 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_en": "How many different items appear in the high rebounds column in game 80?",
    "question_th": "มีรายการที่แตกต่างกันกี่รายการที่ปรากฏในคอลัมน์รีบาวด์สูงในเกม 80",
    "context": "CREATE TABLE table_27713030_12 (high_rebounds VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_27713030_12 WHERE team = \"Boston\"",
    "question_en": "What was the date when Boston was the team?",
    "question_th": "วันที่บอสตันเป็นทีมคือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_27713030_12 (date VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(game) FROM table_27713030_3 WHERE date = \"October 13\"",
    "question_en": "Which game was played on October 13?",
    "question_th": "เกมใดที่เล่นในวันที่ 13 ตุลาคม?",
    "context": "CREATE TABLE table_27713030_3 (game INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_27713030_3 WHERE date = \"October 18\"",
    "question_en": "What is the location and attendance on October 18?",
    "question_th": "สถานที่และการเข้าร่วมในวันที่ 18 ตุลาคมคืออะไร?",
    "context": "CREATE TABLE table_27713030_3 (location_attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_27713030_3 WHERE game = 6",
    "question_en": "Who was the opposing team in game 6?",
    "question_th": "ใครคือทีมตรงข้ามในเกมที่ 6?",
    "context": "CREATE TABLE table_27713030_3 (team VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT MIN(game) FROM table_27713030_7",
    "question_en": "What game in the season does this list start?",
    "question_th": "รายการนี้เริ่มเกมอะไรในฤดูกาลนี้?",
    "context": "CREATE TABLE table_27713030_7 (game INTEGER)"
  },
  {
    "answer": "SELECT score FROM table_27713030_8 WHERE team = \"Detroit\"",
    "question_en": "What was the team's score against detroit?",
    "question_th": "คะแนนของทีมกับดีทรอยต์เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_27713030_8 (score VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(game) FROM table_27715173_10 WHERE date = \"March 12\"",
    "question_en": "How many games were held on March 12?",
    "question_th": "วันที่ 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_en": "What was the team score when Tim Duncan (12) got the high rebounds?",
    "question_th": "เมื่อทิม ดันแคน (12) รีบาวด์ได้คะแนนสูงสุดทีมเท่าไหร่?",
    "context": "CREATE TABLE table_27715173_10 (score VARCHAR, high_rebounds VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_27715173_12 WHERE game = 1",
    "question_en": "Who was the high rebounder on game 1?",
    "question_th": "ใครคือผู้ที่รีบาวด์สูงในเกมที่ 1?",
    "context": "CREATE TABLE table_27715173_12 (high_rebounds VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_27715173_12 WHERE series = \"2–3\"",
    "question_en": "What was the score for series 2–3?",
    "question_th": "คะแนนของซีรีส์ 2–3 เป็นเท่าใด",
    "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_en": "who are the directors of the episode that had 20.5 millions of north american viewers? ",
    "question_th": "ใครคือผู้กำกับของตอนนี้ที่มีผู้ชมในอเมริกาเหนือ 20.5 ล้านคน?",
    "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_en": "how many millions of north american viewers had the episode whose director was Michael Lembeck? ",
    "question_th": " ผู้ชมในอเมริกาเหนือจำนวนกี่ล้านคนดูตอนที่ผู้กำกับคือ 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_en": "who are the writers of the episode whose production code(s) is 225560? ",
    "question_th": " ใครคือคนเขียนตอนที่มีรหัสการผลิต 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_en": "What is the last episode in the series written by Gregory S. Malins?",
    "question_th": "ตอนสุดท้ายในซีรีส์ที่เขียนโดย 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_en": "What was the broadcast date of episodes that were watched by 23.2 million viewers?",
    "question_th": "วันที่ออกอากาศของตอนที่มีผู้ชม 23.2 ล้านคนดูคือวันที่เท่าไร?",
    "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_en": "What is the maximum production code of an episode written by Patty Lin?",
    "question_th": "รหัสการผลิตสูงสุดของตอนที่เขียนโดย 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_en": "What is the episode number of the episode whose production code is 226407?",
    "question_th": "หมายเลขตอนของตอนที่มีรหัสการผลิตคือ 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_en": "Wha episode number in the series had 24.8 million u.s. viewers?",
    "question_th": "หมายเลขตอนใดในซีรีส์ที่มีผู้ชม 24.8 ล้านคน?",
    "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_en": "What is the production code that had 24.8 million u.s. viewers?",
    "question_th": "รหัสการผลิตที่มีผู้ชม 24.8 ล้านคนของเราคืออะไร?",
    "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_en": "What is the production code for the episode that had 23.9 million u.s. viewers?",
    "question_th": "รหัสการผลิตสำหรับตอนที่มีผู้ชม 23.9 ล้านคนของเราคืออะไร?",
    "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_en": "Where was the game played where the record was 10-1?",
    "question_th": "เกมนี้เล่นที่ไหนโดยมีสถิติ 10-1?",
    "context": "CREATE TABLE table_27715173_6 (location_attendance VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_27715173_6 WHERE game = 3",
    "question_en": "What was the score for game 3?",
    "question_th": "คะแนนของเกมที่ 3 เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_27715173_6 (score VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(record) FROM table_27715173_6 WHERE date = \"November 24\"",
    "question_en": "How many records are there for the game on november 24?",
    "question_th": "เกมวันที่ 24 พฤศจิกายน มีกี่สถิติ?",
    "context": "CREATE TABLE table_27715173_6 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_27715173_6 WHERE score = \"W 116–93 (OT)\"",
    "question_en": "What date was the game with a score of w 116–93 (ot)?",
    "question_th": "เกมวันที่เท่าไหร่ด้วยคะแนน w 116–93 (ot)?",
    "context": "CREATE TABLE table_27715173_6 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_27715173_6 WHERE score = \"W 107–95 (OT)\"",
    "question_en": "Who had the high assists when the score was w 107–95 (ot)?",
    "question_th": "ใครเป็นผู้แอสซิสต์ได้สูงเมื่อสกอร์อยู่ที่ 107–95 (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_en": "who put on the show where the numbers were 227412",
    "question_th": "ที่ออกรายการเป็นเลข 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_en": "who put on the show where the numbers were 227424",
    "question_th": "ที่ออกรายการเป็นเลข 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_en": "Who was the high rebounds of team @ Detroit?",
    "question_th": "ใครคือทีมที่รีบาวด์สูงที่สุด @ ดีทรอยต์?",
    "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_en": "What was the location attendance when Andray Blatche (9) got high rebounds?",
    "question_th": "ผู้เข้าชมตำแหน่งเป็นอย่างไรเมื่อ Andray Blatche (9) รีบาวด์สูง?",
    "context": "CREATE TABLE table_27721131_10 (location_attendance VARCHAR, high_rebounds VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_27721131_10 WHERE date = \"March 6\"",
    "question_en": "What was the game record on March 6?",
    "question_th": "บันทึกเกมเมื่อวันที่ 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_en": "Who got high rebounds when Jordan Crawford (27) got high points?",
    "question_th": "ใครรีบาวด์ได้สูงเมื่อ Jordan Crawford (27) มีแต้มสูง?",
    "context": "CREATE TABLE table_27721131_10 (high_rebounds VARCHAR, high_points VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_27721131_2 WHERE score = \"W 97–94 (OT)\"",
    "question_en": "Who's in the high assists with a w 97–94 (ot) score?",
    "question_th": "ใครเป็นผู้แอสซิสต์สูงด้วยคะแนน aw 97–94 (ot)?",
    "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_en": "What's the maximum game in the  javale mcgee (5) high rebounds?",
    "question_th": "เกมสูงสุดใน javale mcgee (5) รีบาวด์สูงคือเกมอะไร?",
    "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_en": "What's the score in andray blatche (17) high points?",
    "question_th": "คะแนนสูงสุดของ andray blache (17) คืออะไร?",
    "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_en": "Who's in the high rebounds in the  verizon center 9,263 location attendance?",
    "question_th": "ใครอยู่ในการรีบาวด์ที่สูงในศูนย์ verizon 9,263 การเข้าร่วมสถานที่?",
    "context": "CREATE TABLE table_27721131_2 (high_rebounds VARCHAR, location_attendance VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_27721131_2 WHERE team = \"Milwaukee\"",
    "question_en": "What's the location attendance of the milwaukee team?",
    "question_th": "ตำแหน่งที่ทีมมิลวอกีเข้าร่วมงานคือที่ไหน?",
    "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–83 (OT)\"",
    "question_en": "What's the team number with John Wall (9) in high assists and a w 97–83 (ot) score?",
    "question_th": "จอห์น วอลล์ (9) แอสซิสต์สูง และคะแนน 97–83 (ot) ของทีมอยู่หมายเลขเท่าไร?",
    "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_en": "Who had the highest assists during game 78?",
    "question_th": "ใครแอสซิสต์สูงสุดในเกมที่ 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_en": "What is the date where  john wall (11) had the high assists?",
    "question_th": "จอห์น วอลล์ (11) ทำแอสซิสต์สูงได้เมื่อไหร่?",
    "context": "CREATE TABLE table_27721131_6 (date VARCHAR, high_assists VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_27721131_6 WHERE date = \"November 25\"",
    "question_en": "What is the team they played on november 25?",
    "question_th": "พวกเขาเล่นทีมอะไรในวันที่ 25 พฤศจิกายน?",
    "context": "CREATE TABLE table_27721131_6 (team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_27721131_6 WHERE date = \"November 25\"",
    "question_en": "What is the record for the game on november 25?",
    "question_th": "สถิติเกมวันที่ 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_en": "Which team played them when andray blatche , javale mcgee (20) had the high points?",
    "question_th": "ทีมไหนเคยเล่นกับพวกเขาเมื่อ อันเดรย์ แบล็ตช์, จาวาเล่ แมคจี (20) มีแต้มสูง?",
    "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_en": "What was the score when andray blatche , al thornton (20) had the high points?",
    "question_th": "เมื่ออันเดรย์ แบล็ตช์, อัล ธอร์นตัน (20) ทำคะแนนได้เท่าไหร่?",
    "context": "CREATE TABLE table_27721131_6 (score VARCHAR, high_points VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(game) FROM table_27721131_6 WHERE team = \"Houston\"",
    "question_en": "How many games are shown against Houston?",
    "question_th": "มีกี่เกมที่เล่นกับฮุสตัน?",
    "context": "CREATE TABLE table_27721131_6 (game VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(team) FROM table_27721131_8 WHERE game = 45",
    "question_en": "How many teams listed for game 45?",
    "question_th": "มีกี่ทีมที่อยู่ในรายชื่อเกม 45?",
    "context": "CREATE TABLE table_27721131_8 (team VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_27722408_11 WHERE team = \"Washington\"",
    "question_en": "What was the score when the Celtics played Washington at home?",
    "question_th": "เมื่อเซลติกส์เล่นวอชิงตันในบ้านได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_27722408_11 (score VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_27722408_11 WHERE date = \"April 8\"",
    "question_en": "Who had the most assists and how many did they have on April 8?",
    "question_th": "ใครแอสซิสต์ได้มากที่สุดและทำได้กี่คนในวันที่ 8 เมษายน?",
    "context": "CREATE TABLE table_27722408_11 (high_assists VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(record) FROM table_27722408_10 WHERE game = 61",
    "question_en": "Name the total number of record for 61",
    "question_th": "ตั้งชื่อจำนวนบันทึกทั้งหมดสำหรับ 61",
    "context": "CREATE TABLE table_27722408_10 (record VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_27722408_8 WHERE team = \"San Antonio\"",
    "question_en": "What was location and attendance for the game where the Celtics played San Antonio? ",
    "question_th": " สถานที่และการเข้าร่วมในเกมที่เซลติกส์พบกับซานอันโตนิโอคืออะไร?",
    "context": "CREATE TABLE table_27722408_8 (location_attendance VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_27722734_11 WHERE team = \"Denver\"",
    "question_en": "Name the score for denver",
    "question_th": "ตั้งชื่อคะแนนสำหรับเดนเวอร์",
    "context": "CREATE TABLE table_27722734_11 (score VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_27722734_11 WHERE date = \"April 8\"",
    "question_en": "Name the high points for april 8",
    "question_th": "ตั้งชื่อจุดสูงสุดของวันที่ 8 เมษายน",
    "context": "CREATE TABLE table_27722734_11 (high_points VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_27722734_10 WHERE team = \"Charlotte\"",
    "question_en": "what was the location for charlotte?",
    "question_th": "ชาร์ล็อตต์อยู่ที่ไหน?",
    "context": "CREATE TABLE table_27722734_10 (location_attendance VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_27722734_10 WHERE date = \"March 27\"",
    "question_en": "who had high points on march 27?",
    "question_th": "ใครมีคะแนนสูงในวันที่ 27 มีนาคม?",
    "context": "CREATE TABLE table_27722734_10 (high_points VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MIN(game) FROM table_27722734_12",
    "question_en": "What number was the first game?",
    "question_th": "เกมแรกเป็นหมายเลขอะไร?",
    "context": "CREATE TABLE table_27722734_12 (game INTEGER)"
  },
  {
    "answer": "SELECT record FROM table_27723228_12 WHERE score = \"W 101–93 (OT)\"",
    "question_en": "Name the record for w 101–93 (ot)",
    "question_th": "ตั้งชื่อบันทึกสำหรับ w 101–93 (ot)",
    "context": "CREATE TABLE table_27723228_12 (record VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_27723228_12 WHERE game = 81",
    "question_en": "Name the high rebounds for 81 game",
    "question_th": "ตั้งชื่อรีบาวด์สูงสำหรับเกมที่ 81",
    "context": "CREATE TABLE table_27723228_12 (high_rebounds VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_27723228_12 WHERE team = \"Indiana\"",
    "question_en": "Name the score for indiana",
    "question_th": "ตั้งชื่อคะแนนสำหรับอินเดียน่า",
    "context": "CREATE TABLE table_27723228_12 (score VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_27723228_11 WHERE team = \"Dallas\"",
    "question_en": "What was the location and attendance of the game against Dallas?",
    "question_th": "สถานที่และผู้เข้าชมเกมกับดัลลัสคือที่ไหน?",
    "context": "CREATE TABLE table_27723228_11 (location_attendance VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_27723228_8 WHERE record = \"14–7\"",
    "question_en": "Who had the high rebounds when the record was 14–7?",
    "question_th": "ใครมีการรีบาวด์สูงเมื่อทำสถิติ 14–7?",
    "context": "CREATE TABLE table_27723228_8 (high_rebounds VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(high_rebounds) FROM table_27723228_8 WHERE game = 30",
    "question_en": "How many people are listed for high rebounds on game 30?",
    "question_th": "มีกี่คนที่อยู่ในรายชื่อที่มีการรีบาวด์สูงในเกมที่ 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_en": "What was the record when chris paul (16) had the high points?",
    "question_th": "อะไรคือสถิติเมื่อคริส พอล (16) มีคะแนนสูงสุด?",
    "context": "CREATE TABLE table_27723228_8 (record VARCHAR, high_points VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_27723228_8 WHERE score = \"L 84–96 (OT)\"",
    "question_en": "What is the record when the score was l 84–96 (ot)?",
    "question_th": "บันทึกเมื่อคะแนนอยู่ที่ l 84–96 (ot) คืออะไร?",
    "context": "CREATE TABLE table_27723228_8 (record VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_27723228_8 WHERE record = \"16–11\"",
    "question_en": "Where was the game played when the record was 16–11?",
    "question_th": "เกมนี้เล่นที่ไหนเมื่อมีสถิติ 16–11?",
    "context": "CREATE TABLE table_27723228_8 (location_attendance VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_27723228_7 WHERE team = \"Miami\"",
    "question_en": "Name the score for miami",
    "question_th": "ตั้งชื่อคะแนนให้ไมอามี่",
    "context": "CREATE TABLE table_27723228_7 (score VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_27723228_7 WHERE score = \"W 107–99 (OT)\"",
    "question_en": "Name the high assists for w 107–99 (ot)",
    "question_th": "ตั้งชื่อแอสซิสต์สูงสำหรับ w 107–99 (ot)",
    "context": "CREATE TABLE table_27723228_7 (high_assists VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT predecessor FROM table_27730_9 WHERE ekavian = \"vreme\"",
    "question_en": "What's the predecessor of the Ekavian word vreme?",
    "question_th": "vreme มีต้นกำเนิดมาจากคำว่า Ekavian vreme คืออะไร?",
    "context": "CREATE TABLE table_27730_9 (predecessor VARCHAR, ekavian VARCHAR)"
  },
  {
    "answer": "SELECT ikavian FROM table_27730_9 WHERE ijekavian = \"lijep\"",
    "question_en": "What's the Ikavian translation of the Ijekavian word lijep?",
    "question_th": "คำแปลของ Ikavian ของคำว่า Ijekavian lijep คืออะไร?",
    "context": "CREATE TABLE table_27730_9 (ikavian VARCHAR, ijekavian VARCHAR)"
  },
  {
    "answer": "SELECT ijekavian FROM table_27730_9 WHERE ikavian = \"grijati\"",
    "question_en": "What's the ijekavian translation of the ikavian word grijati?",
    "question_th": "คำว่า 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_en": "Who had highest assists at game on December 21?",
    "question_th": "ใครมีแอสซิสต์สูงสุดในเกมเมื่อวันที่ 21 ธันวาคม?",
    "context": "CREATE TABLE table_27723526_9 (high_assists VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_27723526_9 WHERE team = \"Milwaukee\"",
    "question_en": "What location did the Mavericks play against Milwaukee?",
    "question_th": "Mavericks เล่นกับ 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_en": "What is the high rebound for June 9?",
    "question_th": "การรีบาวด์สูงสุดในวันที่ 9 มิถุนายน เป็นเท่าใด?",
    "context": "CREATE TABLE table_27723526_17 (high_rebounds VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_27723526_17 WHERE game = 5",
    "question_en": "Who is the high rebound where game is 5?",
    "question_th": "ใครคือรีบาวด์สูงที่เกมคือ 5?",
    "context": "CREATE TABLE table_27723526_17 (high_rebounds VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_27733258_11 WHERE date = \"April 1\"",
    "question_en": "What company plays on april 1?",
    "question_th": "บริษัทอะไรเล่นในวันที่ 1 เมษายน?",
    "context": "CREATE TABLE table_27733258_11 (team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_27733258_6 WHERE score = \"L 110–112 (OT)\"",
    "question_en": "Name the high points for l 110–112 (ot)",
    "question_th": "ตั้งชื่อจุดสูงสุดสำหรับ l 110–112 (ot)",
    "context": "CREATE TABLE table_27733258_6 (high_points VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_27733258_6 WHERE score = \"L 105–123 (OT)\"",
    "question_en": "Name the location attendance for  l 105–123 (ot)",
    "question_th": "ตั้งชื่อสถานที่เข้าร่วมสำหรับ l 105–123 (ot)",
    "context": "CREATE TABLE table_27733258_6 (location_attendance VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_27733258_7 WHERE game = 29",
    "question_en": "what date was game 29?",
    "question_th": "เกมที่ 29 คือวันไหน?",
    "context": "CREATE TABLE table_27733258_7 (date VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_27733258_8 WHERE date = \"January 9\"",
    "question_en": "Who did the team play on january 9?",
    "question_th": "ทีมใครเล่นในวันที่ 9 มกราคม?",
    "context": "CREATE TABLE table_27733258_8 (team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_27733909_10 WHERE game = 75",
    "question_en": "Who had the highest assists in game 75?",
    "question_th": "ใครมีแอสซิสต์สูงสุดในเกม 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_en": "How many locations did the game that was on April 8 take place at?",
    "question_th": "เกมในวันที่ 8 เมษายนจัดขึ้นที่สถานที่กี่แห่ง",
    "context": "CREATE TABLE table_27733909_10 (location_attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(record) FROM table_27733909_1 WHERE date = \"October 6\"",
    "question_en": "what is the overall number of times when the calendar showed october 6",
    "question_th": "จำนวนครั้งโดยรวมที่ปฏิทินแสดงวันที่ 6 ตุลาคมเป็นเท่าใด",
    "context": "CREATE TABLE table_27733909_1 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_27733909_1 WHERE date = \"October 20\"",
    "question_en": "what is the most number where the calendar shows october 20",
    "question_th": "วันที่ 20 ตุลาคม ปฏิทินแสดงตัวเลขใดมากที่สุด",
    "context": "CREATE TABLE table_27733909_1 (high_points VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_27733909_1 WHERE game = 5",
    "question_en": "what are the times where the play is 5",
    "question_th": "ละครคือกี่โมง 5",
    "context": "CREATE TABLE table_27733909_1 (date VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_27733909_5 WHERE date = \"November 21\"",
    "question_en": "What was the score in the game on November 21? ",
    "question_th": " สกอร์ในเกมวันที่ 21 พฤศจิกายน เป็นอย่างไร?",
    "context": "CREATE TABLE table_27733909_5 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_27733909_5 WHERE game = 11",
    "question_en": "Who had the most points and how many did they have in game 11?",
    "question_th": "ใครมีแต้มมากที่สุดและมีกี่แต้มในเกมที่ 11",
    "context": "CREATE TABLE table_27733909_5 (high_points VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_27734286_6 WHERE game = 29",
    "question_en": "List records for game 29.",
    "question_th": "รายชื่อบันทึกของเกมที่ 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_en": "What record has  c. j. miles (20) in the high points?",
    "question_th": "สถิติใดที่มีไมล์ cj (20) อยู่ในจุดสูงสุด?",
    "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_en": "Who in the high rebounds is in the honda center 15,625  location attendance?",
    "question_th": "ฮอนด้าเซ็นเตอร์คนไหนที่รีบาวด์สูง มีผู้เข้าชมสถานที่ 15,625 คน?",
    "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_en": "Who is in the high points in the  @ l.a. clippers team?",
    "question_th": "ใครคือแต้มสูงสุดในทีม @la clippers?",
    "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_en": "What's the score in  al jefferson (24) high points?",
    "question_th": "อัล เจฟเฟอร์สัน (24) คะแนนสูงสุดเท่าไหร่?",
    "context": "CREATE TABLE table_27734286_1 (score VARCHAR, high_points VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_27734286_1 WHERE date = \"October 7\"",
    "question_en": "What`s the score in October 7.",
    "question_th": "คะแนนในวันที่ 7 ตุลาคมเป็นเท่าใด",
    "context": "CREATE TABLE table_27734286_1 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_27734286_1 WHERE team = \"@ Portland\"",
    "question_en": "What's the location attendance of the  @ portland team?",
    "question_th": "สถานที่เข้าร่วมของทีม@พอร์ตแลนด์มีอะไรบ้าง?",
    "context": "CREATE TABLE table_27734286_1 (location_attendance VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_27734286_7 WHERE date = \"January 8\"",
    "question_en": "Who had the high assist total on january 8?",
    "question_th": "ใครมีแอสซิสต์สูงที่สุดในวันที่ 8 มกราคม?",
    "context": "CREATE TABLE table_27734286_7 (high_assists VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_27734286_7 WHERE game = 38",
    "question_en": "Who had the high assists for game number 38?",
    "question_th": "ใครทำแอสซิสต์ได้สูงในเกมหมายเลข 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_en": "How many games did they play on january 7?",
    "question_th": "พวกเขาเล่นกี่เกมในวันที่ 7 มกราคม?",
    "context": "CREATE TABLE table_27734286_7 (high_points VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_27734577_11 WHERE team = \"Boston\"",
    "question_en": "What date did the Hawks play against Boston?",
    "question_th": "Hawks เล่นกับบอสตันวันไหน?",
    "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_en": "List the highest number of assists when zaza pachulia (6) had the most rebounds. ",
    "question_th": " ระบุจำนวนแอสซิสต์สูงสุดเมื่อซาซ่า ปาชูเลีย (6) รีบาวด์มากที่สุด",
    "context": "CREATE TABLE table_27734577_2 (high_assists VARCHAR, high_rebounds VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_27734577_2 WHERE date = \"October 21\"",
    "question_en": "Which team was the opponent on october 21?",
    "question_th": "ทีมใดเป็นคู่ต่อสู้ในวันที่ 21 ตุลาคม?",
    "context": "CREATE TABLE table_27734577_2 (team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_27734577_2 WHERE score = \"L 85–94 (OT)\"",
    "question_en": "Who corned the most points for the game that ended with a score of l 85–94 (ot)?",
    "question_th": "ใครทำคะแนนได้มากที่สุดสำหรับเกมที่จบลงด้วยคะแนน l 85–94 (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_en": "what was the final score of the game where josh powell (13) scored the most points?",
    "question_th": "คะแนนสุดท้ายของเกมที่จอช พาวเวลล์ (13) ทำคะแนนได้มากที่สุดคือเท่าใด",
    "context": "CREATE TABLE table_27734577_2 (score VARCHAR, high_points VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_27734577_8 WHERE team = \"@ Miami\"",
    "question_en": "What's the record of the @ miami team?",
    "question_th": "บันทึกของทีม @ไมอามี่ เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_27734577_8 (record VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(record) FROM table_27734577_8 WHERE date = \"January 2\"",
    "question_en": "How many records where in January 2?",
    "question_th": "มีกี่บันทึกที่ในวันที่ 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_en": "What are the high rebounds in the  jamal crawford (20) high points?",
    "question_th": "จามาล ครอว์ฟอร์ด (20) รีบาวด์สูงแค่ไหน?",
    "context": "CREATE TABLE table_27734577_8 (high_rebounds VARCHAR, high_points VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_27734577_8 WHERE game = 45",
    "question_en": "What are the high rebounds in the 45 game?",
    "question_th": "การรีบาวด์สูงสุดในเกม 45 คืออะไร?",
    "context": "CREATE TABLE table_27734577_8 (high_rebounds VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_27734577_8 WHERE team = \"New Orleans\"",
    "question_en": "What's the date of the new orleans team ?",
    "question_th": "วันที่ทีมนิวออร์ลีนส์คือวันที่เท่าไร?",
    "context": "CREATE TABLE table_27734577_8 (date VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_27734577_8 WHERE score = \"W 110–87 (OT)\"",
    "question_en": "What team has a score of  w 110–87 (ot)?",
    "question_th": "ทีมใดมีคะแนน w 110–87 (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_en": "What was the game record if Marcus Camby (13) got the high rebounds?",
    "question_th": "ถ้ามาร์คัส แคมบี้ (13) รีบาวด์สูงจะทำสถิติเกมเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_27734769_9 (record VARCHAR, high_rebounds VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_27734769_9 WHERE team = \"Minnesota\"",
    "question_en": "Who did the high rebounds for the team Minnesota?",
    "question_th": "ใครทำรีบาวด์สูงให้กับทีมมินนิโซตา?",
    "context": "CREATE TABLE table_27734769_9 (high_rebounds VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(score) FROM table_27734769_9 WHERE date = \"January 19\"",
    "question_en": "How many scores where achieved on January 19?",
    "question_th": "เมื่อวันที่ 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_en": "Who was the LMP2 winner when the LMP1 winning team was No. 20 Oryx Dyson Racing?",
    "question_th": "ใครคือผู้ชนะ LMP2 เมื่อทีมที่ชนะ LMP1 คืออันดับที่ 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_en": "Who were the GT winning team when the GTC winning team was No. 54 Black Swan Racing?",
    "question_th": "ใครคือทีมที่ชนะ GT เมื่อทีมที่ชนะ GTC คือทีมหมายเลข 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_en": "Who were the GT winning team when the results were \"report\"?",
    "question_th": "ใครคือทีมที่ชนะ GT เมื่อผลลัพธ์ถูก \"รายงาน\"?",
    "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_en": "what is the date the high assists was andre miller (7)?",
    "question_th": "อังเดร มิลเลอร์ (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_en": "What is the date the high points was lamarcus aldridge (36)?",
    "question_th": "ลามาร์คัส อัลดริดจ์ (36) คะแนนสูงสุดคือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_27734769_8 (date VARCHAR, high_points VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_27734769_8 WHERE team = \"Milwaukee\"",
    "question_en": "What is the score when the team is milwaukee?",
    "question_th": "เมื่อทีมเป็นมิลวอกี้สกอร์เท่าไหร่?",
    "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_en": "How many times was the high assists andre miller (7)?",
    "question_th": "อังเดร มิลเลอร์ (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_en": "How many times was the high rebounds by marcus camby (18)?",
    "question_th": "มาร์คัส แคมบี้ (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_en": "What is the date the high rebounds were by lamarcus aldridge (6)?",
    "question_th": "ลามาร์คัส อัลดริดจ์ (6) รีบาวด์สูงเมื่อใด?",
    "context": "CREATE TABLE table_27734769_8 (date VARCHAR, high_rebounds VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_27744844_7 WHERE game = 35",
    "question_en": "Who had the most assists and how many did they have in game 35?",
    "question_th": "ใครแอสซิสต์ได้มากที่สุด และพวกเขามีกี่แอสซิสต์ในเกมที่ 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_en": "Who had the most rebounds and how many did they have on January 19? ",
    "question_th": " ใครรีบาวด์ได้เยอะที่สุดและได้กี่ตัวในวันที่ 19 ม.ค.?",
    "context": "CREATE TABLE table_27744844_7 (high_rebounds VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_27744976_11 WHERE date = \"April 9\"",
    "question_en": "Which team played on April 9?",
    "question_th": "ทีมใดเล่นในวันที่ 9 เมษายน?",
    "context": "CREATE TABLE table_27744976_11 (team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_27744844_5 WHERE date = \"November 6\"",
    "question_en": "Which player scored the most points and how many were scored on November 6?",
    "question_th": "ผู้เล่นคนใดทำแต้มได้มากที่สุดและได้กี่แต้มในวันที่ 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_en": "Who had the high assists on November 17?",
    "question_th": "ใครทำแอสซิสต์ได้สูงที่สุดในวันที่ 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_en": "Who had highest rebounds during game on March 12?",
    "question_th": "ใครมีการรีบาวด์สูงสุดระหว่างเกมวันที่ 12 มีนาคม?",
    "context": "CREATE TABLE table_27744976_10 (high_rebounds VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_27744976_10 WHERE team = \"Indiana\"",
    "question_en": "What was the rocket's record when they played against Indiana?",
    "question_th": "บันทึกของจรวดเมื่อพวกเขาเล่นกับอินเดียนาคืออะไร?",
    "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_en": "How many episodes in the season had production code of 175255?",
    "question_th": "มีกี่ตอนในซีซั่นที่มีรหัสการผลิต 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_en": "What were the high points on March 25?",
    "question_th": "จุดสูงสุดในวันที่ 25 มีนาคมมีอะไรบ้าง?",
    "context": "CREATE TABLE table_27755603_10 (high_points VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_27755603_10 WHERE date = \"March 18\"",
    "question_en": "Who was the team on March 18?",
    "question_th": "วันที่ 18 มีนาคม ใครคือทีม?",
    "context": "CREATE TABLE table_27755603_10 (team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_27755603_10 WHERE team = \"Washington\"",
    "question_en": "What was the high points when the team was Washington?",
    "question_th": "จุดสูงสุดเมื่อทีมคือวอชิงตันคืออะไร?",
    "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_en": "What was the game number when the location attendance was the Palace of Auburn Hills 15,166?",
    "question_th": "หมายเลขเกมคืออะไรเมื่อผู้เข้าร่วมสถานที่คือ 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_en": "What team did they play on april 6?",
    "question_th": "พวกเขาเล่นทีมอะไรในวันที่ 6 เมษายน?",
    "context": "CREATE TABLE table_27755603_11 (team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(game) FROM table_27755603_11 WHERE date = \"April 5\"",
    "question_en": "What numbered game did they play on april 5?",
    "question_th": "พวกเขาเล่นเกมหมายเลขอะไรในวันที่ 5 เมษายน?",
    "context": "CREATE TABLE table_27755603_11 (game INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_27755603_11 WHERE team = \"Chicago\"",
    "question_en": "What numbered game did they play chicago?",
    "question_th": "พวกเขาเล่นเกมหมายเลขอะไรในชิคาโก?",
    "context": "CREATE TABLE table_27755603_11 (game VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_27755603_7 WHERE team = \"New Orleans\"",
    "question_en": "Who had the most assists agains New Orleans?",
    "question_th": "ใครแอสซิสต์กับนิวออร์ลีนส์ได้มากที่สุด?",
    "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_en": "For how many games on December 19 is there information on who scored the most rebounds?",
    "question_th": "วันที่ 19 ธ.ค. มีข้อมูลกี่เกมว่าใครรีบาวด์มากที่สุด?",
    "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_en": "What's the record in the game where Greg Monroe (8) did the high rebounds?",
    "question_th": "สถิติในเกมที่ เกร็ก มอนโร (8) รีบาวด์สูงเป็นอย่างไรบ้าง?",
    "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_en": "Who did the high rebounds in the game in which Rodney Stuckey (16) did the high points?",
    "question_th": "ใครเป็นผู้รีบาวด์สูงในเกมที่ ร็อดนีย์ สตั๊คกี้ (16) ทำแต้มได้สูง?",
    "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_en": "Who was the opponent in the game in which Austin Daye (16) did the most high points?",
    "question_th": "คู่ต่อสู้ในเกมที่ Austin Daye (16) ทำแต้มได้มากที่สุดคือใคร?",
    "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_en": "Where was the game in which Will Bynum (5) did the high assists played?",
    "question_th": "เกมที่วิล บายนัม (5) ทำแอสซิสต์สูงคือเกมไหน?",
    "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_en": "What is the team when the high assists was stephen curry (7) and the high points was monta ellis (27)?",
    "question_th": "เมื่อแอสซิสต์สูงคือ สตีเฟ่น เคอร์รี่ (7) และแต้มสูงสุดคือ มอนต้า เอลลิส (27)?",
    "context": "CREATE TABLE table_27755784_10 (team VARCHAR, high_assists VARCHAR, high_points VARCHAR)"
  },
  {
    "answer": "SELECT MAX(game) FROM table_27755784_10",
    "question_en": "What is the highest game number?",
    "question_th": "หมายเลขเกมสูงสุดคืออะไร?",
    "context": "CREATE TABLE table_27755784_10 (game INTEGER)"
  },
  {
    "answer": "SELECT score FROM table_27755784_10 WHERE team = \"@ Dallas\"",
    "question_en": "What is the score when the team is @ dallas?",
    "question_th": "เมื่อทีมเป็น@ดัลลัสได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_27755784_10 (score VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_27755603_8 WHERE date = \"January 14\"",
    "question_en": "Name the high rebounds for january 14",
    "question_th": "ตั้งชื่อการรีบาวด์สูงสุดสำหรับวันที่ 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_en": "Name the number of score for january 12",
    "question_th": "แจ้งเลขคะแนนประจำวันที่ 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_en": "Name the location attendance for  austin daye , tracy mcgrady , tayshaun prince (20)",
    "question_th": "ตั้งชื่อสถานที่ผู้เข้าร่วมของ 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_en": "Name the number of date for stephen curry , dorell wright (27)",
    "question_th": "ตั้งชื่อหมายเลขวันที่ของ Stephen Curry , โดเรลล์ ไรท์ (27)",
    "context": "CREATE TABLE table_27755784_11 (date VARCHAR, high_points VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_27755784_11 WHERE game = 77",
    "question_en": "Name the high rebounds for 77 game",
    "question_th": "ตั้งชื่อรีบาวด์สูงสำหรับเกม 77",
    "context": "CREATE TABLE table_27755784_11 (high_rebounds VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_27755784_6 WHERE date = \"November 10\"",
    "question_en": "What was the record after the game on November 10?",
    "question_th": "สถิติหลังเกมวันที่ 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_en": "What is the score when the hight points is  Monta Ellis (29)?",
    "question_th": "คะแนนสูงสุดคือ มอนต้า เอลลิส (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_en": "How many teams have hight points listed as David Lee (31)?",
    "question_th": "มีกี่ทีมที่มีคะแนนสูงระบุว่าเป็น 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_en": "What is the record when the high points is listed as Stephen Curry (32)?",
    "question_th": "สถิติสูงสุดคือ 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_en": "What is the record when the date is January 7?",
    "question_th": "บันทึกคือวันที่ 7 มกราคม คืออะไร?",
    "context": "CREATE TABLE table_27755784_8 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_27755784_8 WHERE team = \"New Orleans\"",
    "question_en": "What is the date when the team is listed as New Orleans?",
    "question_th": "วันที่ทีมถูกระบุว่าเป็นนิวออร์ลีนส์คือเมื่อใด",
    "context": "CREATE TABLE table_27755784_8 (date VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_27756164_11 WHERE high_assists = \"Darren Collison (7)\"",
    "question_en": "What was the team where Darren Collison (7) scored high assists?",
    "question_th": "ทีมไหนที่ดาร์เรน คอลลิสัน (7) ทำแอสซิสต์ได้สูง?",
    "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_en": "When did the Roy Hibbert (27) did the high points?",
    "question_th": "Roy Hibbert (27) ทำคะแนนสูงสุดเมื่อใด?",
    "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_en": "In how many different games did Roy Hibbert (16) did the most high rebounds?",
    "question_th": "รอย ฮิบเบิร์ต (16) รีบาวด์ได้สูงที่สุดในเกมที่แตกต่างกันกี่เกม?",
    "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_en": "What was the score of the game in which Danny Granger (30) did the high points?",
    "question_th": "ในเกมที่แดนนี่ เกรนเจอร์ (30) ทำคะแนนสูงสุดได้เท่าไร?",
    "context": "CREATE TABLE table_27756164_2 (score VARCHAR, high_points VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_27756014_6 WHERE team = \"Houston\"",
    "question_en": "Who scored the most points when the Bucks played against Houston?",
    "question_th": "ใครทำคะแนนได้มากที่สุดเมื่อ Bucks เล่นกับ Houston?",
    "context": "CREATE TABLE table_27756014_6 (high_points VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_27756014_6 WHERE game = 22",
    "question_en": "What date was game number 22 on?",
    "question_th": "เกมหมายเลข 22 จัดขึ้นวันไหน?",
    "context": "CREATE TABLE table_27756014_6 (date VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(high_points) FROM table_27756014_6 WHERE date = \"December 10\"",
    "question_en": "How many people scored the most points during the game on December 10?",
    "question_th": "มีกี่คนที่ทำแต้มได้มากที่สุดระหว่างเกมวันที่ 10 ธันวาคม?",
    "context": "CREATE TABLE table_27756014_6 (high_points VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_27756164_8 WHERE team = \"Chicago\"",
    "question_en": "When the team is chicago what is the location attendence?",
    "question_th": "เมื่อทีมไปชิคาโก ผู้เข้าร่วมสถานที่คืออะไร?",
    "context": "CREATE TABLE table_27756164_8 (location_attendance VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(score) FROM table_27756164_8 WHERE team = \"Orlando\"",
    "question_en": "What is the score when the team is Orlando?",
    "question_th": "เมื่อทีมออร์แลนโด้มีสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_27756164_8 (score VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_27756572_10 WHERE date = \"March 26\"",
    "question_en": "What was the score in the game on March 26?",
    "question_th": "สกอร์ในเกมวันที่ 26 มีนาคม เป็นอย่างไร?",
    "context": "CREATE TABLE table_27756572_10 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_27756572_10 WHERE team = \"Philadelphia\"",
    "question_en": "What was the record when the Clippers played Philadelphia? ",
    "question_th": " บันทึกเมื่อ Clippers เล่นกับฟิลาเดลเฟียคืออะไร?",
    "context": "CREATE TABLE table_27756572_10 (record VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_27756474_2 WHERE game = 5",
    "question_en": "What location and attendance were there for game 5?",
    "question_th": "มีสถานที่และผู้เข้าร่วมในเกมที่ 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_en": "Which game did rudy gay (12) have the highest points?",
    "question_th": "Rudy Gay (12) เกมไหนมีคะแนนสูงสุด?",
    "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_en": "How many high assists where there for the team of caja laboral?",
    "question_th": "มีกี่แอสซิสต์สูงสำหรับทีม 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_en": "Which game did marc gasol (10) have the high rebounds?",
    "question_th": "เกมไหนที่มาร์ค กาซอล (10) รีบาวด์สูง?",
    "context": "CREATE TABLE table_27756474_2 (game VARCHAR, high_rebounds VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_27756474_2 WHERE date = \"October 6\"",
    "question_en": "Who had the high assists on october 6?",
    "question_th": "ใครทำแอสซิสต์ได้มากที่สุดในวันที่ 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_en": "Name the total number of high assists for  fedexforum 11,283",
    "question_th": "ระบุจำนวนการช่วยเหลือสูงทั้งหมดสำหรับ 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_en": "Name the most game for  us airways center 16,470",
    "question_th": "ตั้งชื่อเกมมากที่สุดสำหรับเราแอร์เวย์เซ็นเตอร์ 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_en": "Who and what were the high points player for the game against Detroit?",
    "question_th": "ใครและอะไรคือผู้เล่นที่มีคะแนนสูงสุดในเกมกับดีทรอยต์?",
    "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_en": "How many times did the Centurions play the Rhein Fire?",
    "question_th": "Centurions เล่น 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_en": "Where did the Centurions play the Hamburg Sea Devils?",
    "question_th": "Centurions เล่นกับ 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_en": "What time was the kickoff against the Frankfurt Galaxy?",
    "question_th": "คิกออฟกับแฟรงก์เฟิร์ตกาแล็กซี่คือกี่โมง?",
    "context": "CREATE TABLE table_27764201_2 (kickoff VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(catches) FROM table_27770426_1 WHERE no = 46",
    "question_en": "How many total catches did the player with no. 46 have?",
    "question_th": "ผู้เล่นที่จับได้ทั้งหมดจำนวนเท่าใด 46 มี?",
    "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_en": "How did the manager who was replaced by Jakob Michelsen depart?",
    "question_th": "ผู้จัดการที่ถูกแทนที่โดย Jakob Michelsen จากไปอย่างไร?",
    "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_en": "What was the AB team's position in table?",
    "question_th": "ตำแหน่งของทีม AB ในตารางคืออะไร?",
    "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_en": "On what date did Kim Fogh replace the previous manager?",
    "question_th": "Kim Fogh เข้ามาแทนที่ผู้จัดการคนก่อนเมื่อใด",
    "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_en": "What was the vacancy date for Thomas Thomasberg?",
    "question_th": "วันที่ว่างของ 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_en": "Which manager was replaced by Thomas Thomasberg?",
    "question_th": "ผู้จัดการทีมคนใดที่ถูกแทนที่โดยโธมัส โธมัสเบิร์ก?",
    "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_en": "How many total dismissals did the player for Guyana have?",
    "question_th": "ผู้เล่นของกายอานาถูกไล่ออกทั้งหมดกี่ครั้ง?",
    "context": "CREATE TABLE table_27771406_1 (total_dismissals INTEGER, club VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_27771406_1 WHERE tests = 2",
    "question_en": "The player for what club had 2 tests?",
    "question_th": "ผู้เล่นของสโมสรใดมีการทดสอบ 2 ครั้ง?",
    "context": "CREATE TABLE table_27771406_1 (club VARCHAR, tests VARCHAR)"
  },
  {
    "answer": "SELECT MAX(stumpings) FROM table_27771406_1",
    "question_en": "What is the most amount of stumpings any player had? ",
    "question_th": " ผู้เล่นคนใดมี stumping มากที่สุดคือเท่าใด?",
    "context": "CREATE TABLE table_27771406_1 (stumpings INTEGER)"
  },
  {
    "answer": "SELECT club FROM table_27771406_1 WHERE player = \"Cyril Christiani\"",
    "question_en": "What club did Cyril Christiani play for? ",
    "question_th": " ไซริล คริสเตียนีเล่นให้กับสโมสรใด?",
    "context": "CREATE TABLE table_27771406_1 (club VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MIN(catches) FROM table_27771406_1 WHERE player = \"Clifford McWatt\"",
    "question_en": "How many catches did Clifford McWatt have? ",
    "question_th": " Clifford McWatt จับได้กี่ครั้ง?",
    "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_en": "Name the points for top tens being 24 and ownder david pearson",
    "question_th": "ตั้งชื่อคะแนนสำหรับสิบอันดับแรกคือ 24 และเจ้าของ เดวิด เพียร์สัน",
    "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_en": "Name the starts for bobby labonte",
    "question_th": "ตั้งชื่อคำขึ้นต้นของ Bobby Labonte",
    "context": "CREATE TABLE table_27786562_1 (starts VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT poles FROM table_27786562_1 WHERE season = 2006",
    "question_en": "Name the poles for season 2006",
    "question_th": "ตั้งชื่อเสาสำหรับฤดูกาล 2549",
    "context": "CREATE TABLE table_27786562_1 (poles VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT production_code FROM table_27776266_1 WHERE no_in_series = 55",
    "question_en": "What was the production code of the episode no. 55 in the series?",
    "question_th": "รหัสการผลิตของตอนที่ 1 คืออะไร 55 ในซีรีย์เหรอ?",
    "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_en": "What was the production code of the episode with an audience of 14.79 million in the US?",
    "question_th": "รหัสการผลิตของตอนที่มีผู้ชม 14.79 ล้านคนในสหรัฐอเมริกาคืออะไร",
    "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_en": "Who directed the episode with an audience of 14.11 million?",
    "question_th": "ใครเป็นผู้กำกับตอนที่มีผู้ชม 14.11 ล้านคน?",
    "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_en": "What was the title of the episode with a production code of 3x6404?",
    "question_th": "ชื่อเรื่องของตอนที่มีรหัสการผลิต 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_en": "Which school players have a number of 255",
    "question_th": "ซึ่งผู้เล่นโรงเรียนมีจำนวน 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_en": "what educational institute does wes swinson attend",
    "question_th": "เวส สวินสันเข้าเรียนที่สถาบันการศึกษาแห่งใด",
    "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_en": "which part on the team does rick schuhwerk play",
    "question_th": "Rick Schuhwerk เล่นส่วนไหนในทีม",
    "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_en": "For college/junior/club team is brandon wheat kings (whl) mention all the player name",
    "question_th": "สำหรับทีมวิทยาลัย/จูเนียร์/สโมสรคือ แบรนดอน วีท คิงส์ (whl) ระบุชื่อผู้เล่นทั้งหมด",
    "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_en": "For player is jamal mayers mention the minimum pick",
    "question_th": "สำหรับผู้เล่น จามาล เมเยอร์ส พูดถึงตัวเลือกขั้นต่ำ",
    "context": "CREATE TABLE table_2781227_4 (pick INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(position) FROM table_2781227_4 WHERE player = \"John Jakopin\"",
    "question_en": "For player is john jakopin mention the total number of position ",
    "question_th": " สำหรับผู้เล่นคือ จอห์น จาโคปิน กล่าวถึงจำนวนตำแหน่งทั้งหมด",
    "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_en": "For nhl team is san jose sharks mention all the college/junior/club team ",
    "question_th": " สำหรับทีม nhl คือ san jose sharks กล่าวถึงทีมวิทยาลัย/รุ่นน้อง/สโมสรทั้งหมด",
    "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_en": "For player is adam wiesel mention all the college/junior/club team ",
    "question_th": " สำหรับผู้เล่น อดัม วีเซล พูดถึงทีมวิทยาลัย/จูเนียร์/สโมสรทั้งหมด",
    "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_en": "How many values are displayed under pick for Vlastimil Kroupa?",
    "question_th": "มีการแสดงค่าจำนวนเท่าใดภายใต้การเลือกสำหรับ 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_en": "How many positions does Janne Niinimaa play?",
    "question_th": "จันน์ นีนิมา เล่นกี่ตำแหน่ง?",
    "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_en": "How many teams does Lee Sorochan play for?",
    "question_th": "ลี โซโรชานเล่นกี่ทีม?",
    "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_en": "What player belongs to the Chicago Blackhawks?",
    "question_th": "ผู้เล่นคนใดที่อยู่ในทีม 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_en": "How many teams does Maxim Bets play for?",
    "question_th": "Maxim Bets เล่นให้กับทีมจำนวนกี่ทีม?",
    "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_en": "What was the minimum pick by the Florida Panthers?",
    "question_th": "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_en": "What NHL team picked Ryan Meade for the draft?",
    "question_th": "ทีม NHL ใดเลือก Ryan Meade เป็นร่าง",
    "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_en": "What college team did Ryan Golden come from?",
    "question_th": "Ryan Golden มาจากทีมวิทยาลัยใด",
    "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_en": "How many different nationalities is pick number 179?",
    "question_th": "เลือกหมายเลข 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_en": "What college  team did the pick for Pittsburgh Penguins come from?",
    "question_th": "ทีมวิทยาลัยใดที่เลือกทีม Pittsburgh Penguins มาจากทีมใด",
    "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_en": "What NHL team picked Tom White?",
    "question_th": "ทีม NHL ใดเลือก 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_en": "How many weeks in the top 10 was spent by a song performed by Peter Kay?",
    "question_th": "เพลงที่ดำเนินการโดย Peter Kay ใช้เวลากี่สัปดาห์ใน 10 อันดับแรก",
    "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_en": "How long has the longest song spent in the top 10?",
    "question_th": "เพลงที่อยู่ใน 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_en": "What college/junior/club team did dmitri gorenko play for?",
    "question_th": "ดมิตรี โกเรนโกเล่นให้กับทีมวิทยาลัย/จูเนียร์/สโมสรใด",
    "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_en": "What position does krylja sovetov (russia) play?",
    "question_th": "ครีลยา โซเวตอฟ (รัสเซีย) เล่นตำแหน่งอะไร?",
    "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_en": "What position(s) does barrie moore play?",
    "question_th": "แบร์รี่ มัวร์เล่นตำแหน่งอะไร?",
    "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_en": "How many pac-12 sports are shown for california polytechnic state university?",
    "question_th": "มีการแสดงกีฬา pac-12 จำนวนเท่าใดสำหรับมหาวิทยาลัยรัฐโพลีเทคนิคแคลิฟอร์เนีย",
    "context": "CREATE TABLE table_27816698_2 (pac_12_sports VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT founded FROM table_27816698_2 WHERE location = \"Boise, Idaho\"",
    "question_en": "When was the institution in boise, idaho founded?",
    "question_th": "สถาบันในบอยซี ไอดาโฮก่อตั้งขึ้นเมื่อใด",
    "context": "CREATE TABLE table_27816698_2 (founded VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT current_conference FROM table_27816698_2 WHERE institution = \"Boise State University\"",
    "question_en": "Which conference did  boise state university play at?",
    "question_th": "มหาวิทยาลัยรัฐบอยซีเล่นในการประชุมใด",
    "context": "CREATE TABLE table_27816698_2 (current_conference VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT MAX(founded) FROM table_27816698_2 WHERE nickname = \"Titans\"",
    "question_en": "When was the Titans founded?",
    "question_th": "Titans ก่อตั้งขึ้นเมื่อใด?",
    "context": "CREATE TABLE table_27816698_2 (founded INTEGER, nickname VARCHAR)"
  },
  {
    "answer": "SELECT institution FROM table_27816698_2 WHERE founded = 1932",
    "question_en": "Which institution was founded in 1932?",
    "question_th": "สถาบันใดก่อตั้งในปี พ.ศ. 2475?",
    "context": "CREATE TABLE table_27816698_2 (institution VARCHAR, founded VARCHAR)"
  },
  {
    "answer": "SELECT institution FROM table_27816698_2 WHERE location = \"Bakersfield, California\"",
    "question_en": "Which  institution was located in bakersfield, california?",
    "question_th": "สถาบันใดตั้งอยู่ใน Bakersfield รัฐแคลิฟอร์เนีย",
    "context": "CREATE TABLE table_27816698_2 (institution VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT MIN(games_played) FROM table_27816332_2 WHERE total_points = 6",
    "question_en": "Name the least games played for 6 points",
    "question_th": "รายชื่อเกมที่เล่นน้อยที่สุดได้ 6 แต้ม",
    "context": "CREATE TABLE table_27816332_2 (games_played INTEGER, total_points VARCHAR)"
  },
  {
    "answer": "SELECT manufacturer FROM table_27821519_1 WHERE no = 50",
    "question_en": "who is the manufacturer is no.50?",
    "question_th": "ใครคือผู้ผลิตหมายเลข 50?",
    "context": "CREATE TABLE table_27821519_1 (manufacturer VARCHAR, no VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_27823058_1 WHERE written_by = \"Katie Palmer\"",
    "question_en": "Which episodes did Katie Palmer write? ",
    "question_th": " Katie Palmer เขียนตอนไหน?",
    "context": "CREATE TABLE table_27823058_1 (title VARCHAR, written_by VARCHAR)"
  },
  {
    "answer": "SELECT MAX(series__number) FROM table_27823058_1",
    "question_en": "What's the highest series number ? ",
    "question_th": " หมายเลขซีรีย์สูงสุดคืออะไร?",
    "context": "CREATE TABLE table_27823058_1 (series__number INTEGER)"
  },
  {
    "answer": "SELECT commandery AS capital FROM table_278229_1 WHERE commandery = \"Changsha 長沙\"",
    "question_en": "when changsha 長沙 is the commandery what is the commandery capital?",
    "question_th": "เมื่อฉางซา 長沙 เป็นผู้บังคับบัญชา เมืองหลวงของผู้บัญชาการคืออะไร?",
    "context": "CREATE TABLE table_278229_1 (commandery VARCHAR)"
  },
  {
    "answer": "SELECT MIN(no_of_counties) FROM table_278229_1 WHERE commandery = \"Yidu 宜都\"",
    "question_en": "When yidu 宜都 is the commandery what is the lowest number of countries?",
    "question_th": "เมื่อ yidu 宜都 เป็นผู้บังคับบัญชา ประเทศใดมีจำนวนประเทศต่ำที่สุด?",
    "context": "CREATE TABLE table_278229_1 (no_of_counties INTEGER, commandery VARCHAR)"
  },
  {
    "answer": "SELECT commandery AS capital FROM table_278229_1 WHERE commandery = \"Nanhai 南海\"",
    "question_en": "When nanhai 南海 is the commandery what is the commandery capital?",
    "question_th": "เมื่อ nanhai 南海 เป็นผู้บังคับบัญชา เมืองหลวงของผู้บัญชาการคืออะไร?",
    "context": "CREATE TABLE table_278229_1 (commandery VARCHAR)"
  },
  {
    "answer": "SELECT commandery AS capital FROM table_278229_1 WHERE commandery = \"Gaoliang 高涼\"",
    "question_en": "When gaoliang 高涼 is the commandery what is the commandery capital?",
    "question_th": "เมื่อเกาเหลียง 高涼 เป็นผู้บังคับบัญชา เมืองหลวงของผู้บัญชาการคืออะไร?",
    "context": "CREATE TABLE table_278229_1 (commandery VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_27832075_2 WHERE episode__number = \"9-10\"",
    "question_en": "What is the title of episode number 9-10?",
    "question_th": "ตอนที่ 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_en": "How many million U.S. viewers wtched episode 69 of the series?",
    "question_th": "มีผู้ชมในสหรัฐฯ กี่ล้านคนที่รับชมตอนที่ 69 ของซีรีส์นี้",
    "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_en": "Who directed episode number 23 in the season?",
    "question_th": "ใครเป็นผู้กำกับตอนที่ 23 ของซีซั่นนี้?",
    "context": "CREATE TABLE table_27832075_2 (directed_by VARCHAR, episode__number VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_27832075_2 WHERE episode__number = \"12\"",
    "question_en": "What is the name of episode number 12 of the season?",
    "question_th": "ตอนที่ 12 ของซีซั่นชื่ออะไรคะ?",
    "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_en": "What are all the Riders whose best-conditioned horse is Basia?",
    "question_th": "อะไรคือเหล่านักขี่ที่มีม้าที่มีสภาพดีที่สุดคือบาเซีย?",
    "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_en": "What was the distance (in miles) of the championship were the winning horse was Koona?",
    "question_th": "ระยะทาง (เป็นไมล์) ของแชมป์คือม้าที่ชนะคือคูน่า?",
    "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_en": "Who were the winning riders of the championship in Euer Valley, CA and whose horse was Magic Sirocco?",
    "question_th": "ใครคือนักแข่งที่ชนะการแข่งขันชิงแชมป์ที่ Euer Valley รัฐแคลิฟอร์เนีย และม้าของใครคือ 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_en": "How many different riders are there that won riding Omr Tsunami?",
    "question_th": "มีนักแข่งกี่คนที่ชนะการขี่ 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_en": "What was the total distance (in miles) of the championship where the best conditioned horse was Freedom?",
    "question_th": "ระยะทางรวม (เป็นไมล์) ของการแข่งขันชิงแชมป์ที่ม้าที่มีสภาพดีที่สุดคือ 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_en": "How many series numbers are there when there were 15.8 u.s. viewers (millions)?",
    "question_th": "ตอนที่มีคนดูเรา 15.8 คน (ล้าน) มีเลขซีรีย์กี่ตอน?",
    "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_en": "What is the title of the episode number 11 of the season?",
    "question_th": "ตอนที่ 11 ของซีซั่นชื่ออะไรคะ?",
    "context": "CREATE TABLE table_27833469_1 (title VARCHAR, season__number VARCHAR)"
  },
  {
    "answer": "SELECT series__number FROM table_27833469_1 WHERE season__number = \"10\"",
    "question_en": "What is the series number for the episode number 10 of the season?",
    "question_th": "หมายเลขซีรีส์ของตอนที่ 10 ของซีซั่นคืออะไร?",
    "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_en": "What are the the approximate translations when the Morphological Category is 1st. plur. perfect?",
    "question_th": "คำแปลโดยประมาณเมื่อหมวดหมู่ทางสัณฐานวิทยาอยู่ที่ 1 คืออะไร พหูพจน์ สมบูรณ์แบบ?",
    "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_en": "What are the approximate translations when the morphological category is masc. sing. active participle?",
    "question_th": "คำแปลโดยประมาณคืออะไรเมื่อหมวดหมู่ทางสัณฐานวิทยาเป็น masc ร้องเพลง. กริยาที่ใช้งานอยู่?",
    "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 يكتب\"",
    "question_en": "How many hebrew forms are there for the arabic form  yuktibu يكتب?",
    "question_th": "รูปแบบภาษาอาหรับมีกี่รูปแบบ yuktibu يكتب?",
    "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_en": "How many Arabic forms are there for the 1st. plur. perfect category?",
    "question_th": "เลขอารบิคมีกี่รูปสำหรับตัวที่ 1 พหูพจน์ หมวดหมู่ที่สมบูรณ์แบบใช่ไหม?",
    "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_en": "How many were the viewers (in millions) of the series no. 45?",
    "question_th": "มีผู้ชมซีรีส์เรื่องนี้กี่คน (เป็นล้าน) 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_en": "How many games did UCLA's baseball team win with a score 7-6 during May of 2010?",
    "question_th": "ทีมเบสบอลของ UCLA ชนะไปกี่เกมด้วยคะแนน 7-6 ในช่วงเดือนพฤษภาคม 2010",
    "context": "CREATE TABLE table_27862483_4 (opponent VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT total_wins FROM table_27864661_6 WHERE first_title = 2004",
    "question_en": "How many wins are listed when the first title is 2004?",
    "question_th": "มีผู้ชนะกี่รายการในรายการแรกคือปี 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_en": "Which network was located in Illinois?",
    "question_th": "เครือข่ายใดตั้งอยู่ในอิลลินอยส์",
    "context": "CREATE TABLE table_27871460_2 (network VARCHAR, state_or_territory VARCHAR)"
  },
  {
    "answer": "SELECT MAX(channel_number) FROM table_27871460_2",
    "question_en": "What is the highest channel number?",
    "question_th": "หมายเลขช่องสูงสุดคืออะไร?",
    "context": "CREATE TABLE table_27871460_2 (channel_number INTEGER)"
  },
  {
    "answer": "SELECT state_or_territory FROM table_27871460_2 WHERE channel_number = 7",
    "question_en": "Which state or territory had a channel number of exactly 7?",
    "question_th": "รัฐหรือดินแดนใดมีหมายเลขช่อง 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_en": "Name the date for omni coliseum 10,330",
    "question_th": "ตั้งชื่อวันที่โคลีเซียม omni 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_en": "Name the location attendance for 3 game",
    "question_th": "ตั้งชื่อสถานที่เข้าร่วมสำหรับ 3 เกม",
    "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_en": "Name the location attendance for l 93-105",
    "question_th": "ตั้งชื่อสถานที่การเข้างานสำหรับ 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_en": "Name the record for  oakland-alameda county coliseum arena 15,025",
    "question_th": "ตั้งชื่อสถิติสำหรับสนามกีฬาโอ๊คแลนด์-อาลาเมดาเคาน์ตี้โคลิเซียม 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_en": "Name the total number of games for w 112-94",
    "question_th": "บอกชื่อจำนวนเกมทั้งหมดสำหรับ 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_en": "what is the club in the sixth round proper",
    "question_th": "สโมสรในรอบที่หกคืออะไรกันแน่",
    "context": "CREATE TABLE table_27876486_2 (clubs VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_27877656_7 WHERE score = \"6–4, 6–1\" AND edition = \"2011 Europe/Africa Group IIIB\"",
    "question_en": "For edition is 2011 europe/africa group iiib and surface where score is 6–4, 6–1 please specify all the surface",
    "question_th": "สำหรับฉบับคือ 2011 กลุ่มยุโรป/แอฟริกา iiib และพื้นผิวที่มีคะแนน 6–4, 6–1 โปรดระบุพื้นผิวทั้งหมด",
    "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ánsdóttir\"",
    "question_en": "For opponent is sandra kristjánsdóttir, outcome is winner and edition is 2009 europe/africa group iiib mention all the opponent team.",
    "question_th": "สำหรับคู่ต่อสู้คือ sandra kristjánsdóttir ผลลัพธ์คือผู้ชนะ และฉบับปี 2009 กลุ่มยุโรป/แอฟริกา iiib กล่าวถึงทีมฝ่ายตรงข้ามทั้งหมด",
    "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–6 (7–3) , 6–4\"",
    "question_en": "For score 7–6 (7–3) , 6–4 please mention total number of outcome",
    "question_th": "สำหรับคะแนน 7–6 (7–3) , 6–4 โปรดระบุจำนวนผลลัพธ์ทั้งหมด",
    "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_en": "For armenia as opponent team and edition is 2009 europe/africa group iiib mention all the opponent",
    "question_th": "สำหรับอาร์เมเนียในฐานะทีมคู่ต่อสู้และรุ่นคือกลุ่มยุโรป/แอฟริกาปี 2009 iiib กล่าวถึงคู่ต่อสู้ทั้งหมด",
    "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–2, 6–3\"",
    "question_en": "For score 6–2, 6–3 and outcome is loser mention all the edition.",
    "question_th": "สำหรับคะแนน 6–2, 6–3 และผลลัพธ์คือผู้แพ้กล่าวถึงฉบับทั้งหมด",
    "context": "CREATE TABLE table_27877656_7 (edition VARCHAR, outcome VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_27887723_1 WHERE uci_rating = \"CN\"",
    "question_en": "who was the winner of uci rating cn?",
    "question_th": "ใครคือผู้ชนะการจัดอันดับ uci 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_en": "what race name had a uci rating of cn?",
    "question_th": "ชื่อการแข่งขันใดมีคะแนน uci อยู่ที่ 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_en": "what location has team trek-livestrong?",
    "question_th": "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_en": "who was the winner for souderton, pa?",
    "question_th": "ใครคือผู้ชนะของเซาเดอร์ตัน พ่อ?",
    "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_en": "What is the name of episode 120 in the series that Mike Rohl directed?",
    "question_th": "ตอนที่ 120 ในซีรีส์ที่ ไมค์ โรห์ล กำกับชื่ออะไร",
    "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_en": "Who wrote episode that had 1.97 million u.s. viewers?",
    "question_th": "ใครเป็นคนเขียนตอนที่มีผู้ชมถึง 1.97 ล้านคน?",
    "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_en": "What is the name of the episode that had 2.02 million u.s. viewers?",
    "question_th": "ตอนที่มีผู้ชม 2.02 ล้านคนชื่ออะไร?",
    "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_en": "How many games did they play on january 11?",
    "question_th": "พวกเขาเล่นไปกี่เกมในวันที่ 11 มกราคม?",
    "context": "CREATE TABLE table_27882867_6 (location_attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_27902171_5 WHERE record = \"9-7\"",
    "question_en": "What is every team with a record of 9-7?",
    "question_th": "ทุกทีมที่มีสถิติ 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_en": "How many people are high assists when location attendance is Seattle Center Coliseum 14,180?",
    "question_th": "มีกี่คนที่ให้ความช่วยเหลือได้สูงเมื่อมีการเข้าร่วมสถานที่คือ 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_en": "What is every date with game 23?",
    "question_th": "ทุกวันกับเกม 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_en": "What is every team with location attendance of Seattle Center Coliseum 14,180?",
    "question_th": "ทุกทีมที่มีผู้เข้าชมสถานที่ของ 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_en": "What is every team with location attendance of Arco Arena 17,014?",
    "question_th": "ทุกทีมที่มีสถานที่เข้าร่วม 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_en": "what was the opposition where the field is waldstadion during time 6",
    "question_th": "ฝ่ายค้านที่สนามวาลด์สตาดิโอนช่วงนาทีที่ 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_en": "what is the location for saturday, april 21",
    "question_th": "สถานที่สำหรับวันเสาร์ที่ 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_en": "what was the participation for saturday, may 12",
    "question_th": "การเข้าร่วมของวันเสาร์ที่ 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_en": "what was the achievement for the rival at scottish claymores",
    "question_th": "อะไรคือความสำเร็จของคู่แข่งที่สก็อตแลนด์เคลย์มอร์ส",
    "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_en": "How many legs were lost when the high checkout was 101?",
    "question_th": "กี่ขาที่เสียไปเมื่อเช็คเอาต์สูงคือ 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_en": "How many legs were own by alan tabern?",
    "question_th": "อลัน ทาเบิร์นมีขากี่ขา?",
    "context": "CREATE TABLE table_27906667_2 (legs_won INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_27902171_8 WHERE record = \"36-29\"",
    "question_en": "name the team for 36-29 record",
    "question_th": "ตั้งชื่อทีมด้วยสถิติ 36-29",
    "context": "CREATE TABLE table_27902171_8 (team VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(high_assists) FROM table_27902171_8 WHERE record = \"34-27\"",
    "question_en": "Name the total number of high asists for 34-27",
    "question_th": "บอกจำนวนแอสซิสต์สูงทั้งหมดสำหรับ 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_en": "Name the date for score of w 112-91",
    "question_th": "ตั้งชื่อวันที่คะแนน 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_en": "Name the number of location attendance for 36-29 record",
    "question_th": "ตั้งชื่อจำนวนการเข้าสถานที่สำหรับบันทึก 36-29",
    "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_en": "Who wrote the episode having a US viewership of 3.74 million?",
    "question_th": "ใครเป็นคนเขียนตอนนี้โดยมีผู้ชมในสหรัฐฯ 3.74 ล้านคน?",
    "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_en": "Who directed production code 3x6116?",
    "question_th": "ใครกำกับรหัสการผลิต 3x6116?",
    "context": "CREATE TABLE table_27905664_1 (directed_by VARCHAR, production_code VARCHAR)"
  },
  {
    "answer": "SELECT COUNT AS № FROM table_27905664_1 WHERE us_viewers__million_ = \"4.26\"",
    "question_en": "How many episode numbers had US viewership of 4.26 million?",
    "question_th": "มีกี่ตอนที่มีผู้ชมในสหรัฐฯ 4.26 ล้านคน?",
    "context": "CREATE TABLE table_27905664_1 (COUNT VARCHAR, us_viewers__million_ VARCHAR)"
  },
  {
    "answer": "SELECT № FROM table_27905664_1 WHERE us_viewers__million_ = \"4.87\"",
    "question_en": "What episode number had US viewership of 4.87 million?",
    "question_th": "หมายเลขตอนใดที่มีผู้ชมในสหรัฐฯ 4.87 ล้านคน?",
    "context": "CREATE TABLE table_27905664_1 (№ VARCHAR, us_viewers__million_ VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(_number) FROM table_27905664_1 WHERE directed_by = \"Ken Fink\"",
    "question_en": "How many episodes were directed by Ken Fink?",
    "question_th": "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_en": "What date did the episode with 8.28 million u.s. viewers originally air?",
    "question_th": "ตอนที่มีผู้ชม 8.28 ล้านคนของเราออกอากาศครั้งแรกเมื่อใด",
    "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_en": "How many items are listed for U.S. viewers for episode number 5 in the series?",
    "question_th": "มีรายการกี่รายการสำหรับผู้ชมชาวอเมริกันสำหรับตอนที่ 5 ในซีรีส์นี้",
    "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_en": "What date did episode 10 in the series originally air?",
    "question_th": "ตอนที่ 10 ของซีรีส์เดิมออกอากาศวันไหน?",
    "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_en": "What is the season number of the show written by both Kari Lizer and Jeff Astrof?",
    "question_th": "หมายเลขซีซันของรายการที่เขียนโดยทั้ง Kari Lizer และ 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_en": "What is the title of the Series 40 Season 5 show?",
    "question_th": "รายการซีรีส์ 40 ซีซั่น 5 มีชื่อว่าอะไร?",
    "context": "CREATE TABLE table_27911342_1 (title VARCHAR, season__number VARCHAR)"
  },
  {
    "answer": "SELECT callsign FROM table_27914076_1 WHERE coverage = \"Davao Mindanao Region\"",
    "question_en": "Name the callsign for davao mindanao region",
    "question_th": "ตั้งชื่อสัญญาณเรียกสำหรับภูมิภาคดาเวามินดาเนา",
    "context": "CREATE TABLE table_27914076_1 (callsign VARCHAR, coverage VARCHAR)"
  },
  {
    "answer": "SELECT power_kw FROM table_27914076_1 WHERE callsign = \"DYMD-FM\"",
    "question_en": "Name the power for dymd-fm",
    "question_th": "ตั้งชื่อพาวเวอร์สำหรับ 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_en": "Name the frequency for 103.7 energy fm dipolog*",
    "question_th": "ตั้งชื่อความถี่สำหรับไดโพล็อก fm พลังงาน 103.7*",
    "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_en": "Name the number of coverage for  106.7 energy fm",
    "question_th": "บอกชื่อจำนวนครอบคลุม 106.7 เอฟเอ็มพลังงาน",
    "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_en": "what is the number of the episode in the season that had 7.19 millions of north american viewers? ",
    "question_th": " ซีซั่นที่มีผู้ชมอเมริกาเหนือ 7.19 ล้านคนมีจำนวนตอนกี่ตอน?",
    "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_en": "what is the name of the episode whose writers were jeff astrof & matt goldman? ",
    "question_th": " ตอนที่คนเขียนคือ 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_en": "who were the writers of the episode that had 5.56 millions of north american viewers? ",
    "question_th": " ใครคือผู้เขียนตอนที่มีผู้ชมในอเมริกาเหนือ 5.56 ล้านคน?",
    "context": "CREATE TABLE table_27914606_1 (written_by VARCHAR, us_viewers__millions_ VARCHAR)"
  },
  {
    "answer": "SELECT average FROM table_27922491_11 WHERE runs = 313",
    "question_en": "What is the average for the player with 313 runs?",
    "question_th": "ค่าเฉลี่ยสำหรับผู้เล่นที่วิ่งได้ 313 ครั้งคือเท่าไร?",
    "context": "CREATE TABLE table_27922491_11 (average VARCHAR, runs VARCHAR)"
  },
  {
    "answer": "SELECT MIN(runs) FROM table_27922491_11 WHERE average = \"97.00\"",
    "question_en": "How few runs does the 97.00 average have?",
    "question_th": "ค่าเฉลี่ย 97.00 มีรันกี่รอบ?",
    "context": "CREATE TABLE table_27922491_11 (runs INTEGER, average VARCHAR)"
  },
  {
    "answer": "SELECT MIN(50 AS s) FROM table_27922491_24",
    "question_en": "What is the minimum number of 50s scored?",
    "question_th": "คะแนนขั้นต่ำ 50 คะแนนคือเท่าไร?",
    "context": "CREATE TABLE table_27922491_24 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 4 AS wi FROM table_27922491_20 WHERE economy = \"4.17\"",
    "question_en": "How many 4wi were recorded by the player with an economy of 4.17?",
    "question_th": "ผู้เล่นบันทึก 4wi ด้วยอัตราประหยัด 4.17 ได้กี่คน?",
    "context": "CREATE TABLE table_27922491_20 (economy VARCHAR)"
  },
  {
    "answer": "SELECT MIN(wickets) FROM table_27922491_20",
    "question_en": "What is the fewest number of wickets recorded?",
    "question_th": "จำนวนประตูน้อยที่สุดที่บันทึกไว้คือเท่าใด?",
    "context": "CREATE TABLE table_27922491_20 (wickets INTEGER)"
  },
  {
    "answer": "SELECT bbi FROM table_27922491_20 WHERE average = \"24.50\"",
    "question_en": "What was the BBI for the bowler whose average is 24.50?",
    "question_th": "BBI ของนักขว้างลูกที่มีค่าเฉลี่ย 24.50 เป็นเท่าใด",
    "context": "CREATE TABLE table_27922491_20 (bbi VARCHAR, average VARCHAR)"
  },
  {
    "answer": "SELECT MIN(wickets) FROM table_27922491_8",
    "question_en": "What is the least amount of wickets?",
    "question_th": "วิคเก็ตน้อยที่สุดคือเท่าไหร่?",
    "context": "CREATE TABLE table_27922491_8 (wickets INTEGER)"
  },
  {
    "answer": "SELECT MIN(matches) FROM table_27922491_8",
    "question_en": "What is the least amount of matches?",
    "question_th": "จำนวนการแข่งขันน้อยที่สุดคือเท่าใด?",
    "context": "CREATE TABLE table_27922491_8 (matches INTEGER)"
  },
  {
    "answer": "SELECT COUNT(player) FROM table_27922491_8 WHERE wickets = 12",
    "question_en": "How many players had 12 wickets?",
    "question_th": "มีผู้เล่นกี่คนที่มี 12 ประตู?",
    "context": "CREATE TABLE table_27922491_8 (player VARCHAR, wickets VARCHAR)"
  },
  {
    "answer": "SELECT MIN(innings) FROM table_27922491_8 WHERE average = \"30.03\"",
    "question_en": "How many innings for the player with an average of 30.03?",
    "question_th": "ผู้เล่นที่มีค่าเฉลี่ย 30.03 มีโอกาสเล่นกี่ครั้ง?",
    "context": "CREATE TABLE table_27922491_8 (innings INTEGER, average VARCHAR)"
  },
  {
    "answer": "SELECT average FROM table_27922491_8 WHERE bbm = \"5/85\"",
    "question_en": "What is the average for the player with BBM 5/85?",
    "question_th": "ค่าเฉลี่ยสำหรับผู้เล่นที่มี 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_en": "What is the lowest episode number that had 4.03 million viewers?",
    "question_th": "หมายเลขตอนต่ำสุดที่มีผู้ชม 4.03 ล้านคนคือข้อใด",
    "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_en": "How many million viewers watched episodes prior to episode 2.0?",
    "question_th": "มีผู้ชมกี่ล้านคนที่ดูตอนก่อนตอนที่ 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_en": "What was the original air-date that had 4.77 million viewers?",
    "question_th": "ออกอากาศครั้งแรกเมื่อใดที่มีผู้ชม 4.77 ล้านคน?",
    "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_en": "Who directed the episode with 6.37 million viewers?",
    "question_th": "ใครเป็นผู้กำกับตอนที่มีผู้ชม 6.37 ล้านคน?",
    "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_en": "What is the release date of catalogue number DW023?",
    "question_th": "แค็ตตาล็อกหมายเลข 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_en": "What is the release date of \"New Worlds for Old\"?",
    "question_th": "\"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_en": "What is the catalogue number for \"Waves in the Air\"?",
    "question_th": "หมายเลขแค็ตตาล็อกของ \"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_en": "What is the catalogue number for release dates of exactly 2005 and released by The Clear Spots?",
    "question_th": "หมายเลขแค็ตตาล็อกสำหรับวันที่วางจำหน่ายในปี 2548 และออกโดย 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_en": "Which artist had a release title of HH?",
    "question_th": "ศิลปินคนไหนมีชื่อเพลงว่า 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_en": "What was the name of the album released by Heavy Winged?",
    "question_th": "อัลบั้มที่ออกโดย 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_en": "Who was the dual television commentator in 1990?",
    "question_th": "ใครคือผู้วิจารณ์โทรทัศน์คู่ในปี 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_en": "Who made the comments for radio broadcast when Jan Gabrielsson made them for television broadcast?",
    "question_th": "ใครเป็นผู้แสดงความคิดเห็นเกี่ยวกับการออกอากาศทางวิทยุเมื่อ Jan Gabrielsson แสดงความคิดเห็นในการออกอากาศทางโทรทัศน์?",
    "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_en": "Name the total number of moto2 winners for laguna seca",
    "question_th": "ตั้งชื่อจำนวนผู้ชนะ moto2 ทั้งหมดสำหรับ 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_en": "Name the circuit for hertz british grand prix",
    "question_th": "ตั้งชื่อวงจรสำหรับเฮิรตซ์บริติชกรังด์ปรีซ์",
    "context": "CREATE TABLE table_27948565_1 (circuit VARCHAR, grand_prix VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(round) FROM table_27948565_1 WHERE circuit = \"Brno\"",
    "question_en": "Name the number of rounds for brno",
    "question_th": "ตั้งชื่อจำนวนรอบสำหรับเบอร์โน",
    "context": "CREATE TABLE table_27948565_1 (round VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT motogp_winner FROM table_27948565_1 WHERE date = \"6 May\"",
    "question_en": "Name the motogp winner for 6 may",
    "question_th": "ประกาศชื่อผู้ชนะโมโตจีพี 6 พ.ค",
    "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_en": "Name the b winning car for  #88 team mitsubishi 88 mitsubishi starion",
    "question_th": "ตั้งชื่อรถบีชนะเลิศให้กับ #88 ทีม มิตซูบิชิ 88 มิตซูบิชิ สตาเรียน",
    "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_en": "Name the gt winning car for  #88 team mitsubishi 88 mitsubishi starion",
    "question_th": "ตั้งชื่อรถที่ชนะรางวัล GT ให้กับทีม #88 มิตซูบิชิ 88 มิตซูบิชิ สตาเรียน",
    "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_en": "Name the ss winning car for road atlanta and #35 quantum engineering #35 honda crx-si",
    "question_th": "ตั้งชื่อรถที่ชนะรางวัล SS สำหรับถนนแอตแลนตาและ #35 วิศวกรรมควอนตัม #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_en": "Name the total number of rnd for kim baker, bobby archer, tommy archer",
    "question_th": "ตั้งชื่อจำนวนรวมของ rnd สำหรับ 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_en": "Name the total number of b winning car and bobby archer, tommy archer",
    "question_th": "ตั้งชื่อจำนวนรวมของรถที่ชนะ b และนักธนูบ๊อบบี้ นักธนูทอมมี่",
    "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_en": "How many institutes have the team name Spartans?",
    "question_th": "มีกี่สถาบันที่ชื่อทีม Spartans?",
    "context": "CREATE TABLE table_27961684_1 (institution VARCHAR, team_name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(state) FROM table_27961684_1 WHERE enrollment = 2789",
    "question_en": "How many states were there when there was an enrollment of 2789?",
    "question_th": "มีกี่รัฐที่มีการลงทะเบียน 2789?",
    "context": "CREATE TABLE table_27961684_1 (state VARCHAR, enrollment VARCHAR)"
  },
  {
    "answer": "SELECT affiliation FROM table_27961684_1 WHERE state = \"Indiana\"",
    "question_en": "What kind of institute is in Indiana?",
    "question_th": "สถาบันประเภทใดในรัฐอินเดียน่า?",
    "context": "CREATE TABLE table_27961684_1 (affiliation VARCHAR, state VARCHAR)"
  },
  {
    "answer": "SELECT MIN(enrollment) FROM table_27961684_1 WHERE team_name = \"Pioneers\"",
    "question_en": "How many people enrolled for the institute with the Pioneers?",
    "question_th": "มีกี่คนที่ลงทะเบียนสถาบันกับผู้บุกเบิก?",
    "context": "CREATE TABLE table_27961684_1 (enrollment INTEGER, team_name VARCHAR)"
  },
  {
    "answer": "SELECT team_name FROM table_27961684_1 WHERE city = \"Rock Island\"",
    "question_en": "What team is in the city of Rock Island?",
    "question_th": "ทีมอะไรอยู่ในเมืองร็อคไอส์แลนด์?",
    "context": "CREATE TABLE table_27961684_1 (team_name VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_27969432_2 WHERE written_by = \"Alison Cross\"",
    "question_en": "What is the name of the episode written by alison cross?",
    "question_th": "ตอนที่เขียนโดย 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_en": "Who directed the episode written by karina csolty",
    "question_th": "ผู้กำกับตอนที่เขียนโดย 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_en": "What is the name of the episode written by karina csolty?",
    "question_th": "ตอนที่เขียนโดย 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_en": "Who directed the episode whose production code is 2m5901?",
    "question_th": "ใครกำกับตอนที่มีรหัสการผลิตคือ 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_en": "How many viewers in millions were there for episode 4 of this season?",
    "question_th": "ตอนที่ 4 ของซีซั่นนี้มีผู้ชมกี่ล้านคน?",
    "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_en": "Name the total number of rank for percentage change yoy 13.1%",
    "question_th": "ระบุจำนวนอันดับทั้งหมดสำหรับเปอร์เซ็นต์การเปลี่ยนแปลง 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_en": "Name the percentage change yoy for presbyterian college",
    "question_th": "ตั้งชื่อเปอร์เซ็นต์การเปลี่ยนแปลง yoy สำหรับวิทยาลัยเพรสไบทีเรียน",
    "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_en": "Name the national rank for medical university of south carolina",
    "question_th": "ตั้งชื่ออันดับระดับชาติสำหรับมหาวิทยาลัยการแพทย์แห่งเซาท์แคโรไลนา",
    "context": "CREATE TABLE table_27956_3 (national_rank VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT MIN(no_in_series) FROM table_27969432_3",
    "question_en": "What is the lowest numbered episode in the series?",
    "question_th": "ตอนที่มีเลขน้อยที่สุดในซีรีย์คือเรื่องใด?",
    "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_en": "How many episodes were written by david j. north & janet tamaro?",
    "question_th": "เดวิด เจ. เขียนไว้กี่ตอน นอร์ธ & เจเน็ต ทามาโร?",
    "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_en": "What are the original air dates for episodes directed by fred toye?",
    "question_th": "วันที่ออกอากาศดั้งเดิมสำหรับตอนที่กำกับโดย 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_en": "What was the aggregate score for Montauban?",
    "question_th": "คะแนนรวมของ มงโตบ็อง เป็นเท่าไหร่?",
    "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_en": "Who proceeded to the quarter finals with a points margin of 21?",
    "question_th": "ใครได้เข้าสู่รอบก่อนรองชนะเลิศด้วยคะแนน 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ègles\"",
    "question_en": "What were the match points when Bordeaux-Bègles was eliminated from competition? ",
    "question_th": " อะไรคือแต้มการแข่งขันเมื่อบอร์กโดซ์-เบเกิลส์ตกรอบจากการแข่งขัน?",
    "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_en": "How many viewers saw the episode written by kevin biegel & bill lawrence?",
    "question_th": "มีผู้ชมกี่คนที่เห็นตอนที่เขียนโดย 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_en": "What was the episode number veiwed by 7.43 million viewers?",
    "question_th": "จำนวนตอนที่มีผู้ชม 7.43 ล้านคนรับชมคือเท่าใด",
    "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_en": "What was the title of the episode viewed by 5.03 million viewers?",
    "question_th": "ชื่อตอนที่มีผู้ชม 5.03 ล้านคนดูคืออะไร",
    "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_en": "What was the episode number for the episode viewed by 5.68 million viewers?",
    "question_th": "หมายเลขตอนของตอนนี้ที่มีผู้ชม 5.68 ล้านคนคือเท่าใด",
    "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_en": "How many times is the new entries this round is none?",
    "question_th": "กี่ครั้งแล้วที่เข้าใหม่รอบนี้ไม่มีเลย?",
    "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 → 276\"",
    "question_en": "What is the prize money when the clubs is 392 → 276?",
    "question_th": "เงินรางวัลเมื่อไม้กอล์ฟคือ 392 → 276 คืออะไร?",
    "context": "CREATE TABLE table_27973624_1 (prize_money VARCHAR, clubs VARCHAR)"
  },
  {
    "answer": "SELECT MIN(number_of_fixtures) FROM table_27973624_1",
    "question_en": "What is the lowest number of fixtures?",
    "question_th": "จำนวนการแข่งขันขั้นต่ำคือเท่าใด?",
    "context": "CREATE TABLE table_27973624_1 (number_of_fixtures INTEGER)"
  },
  {
    "answer": "SELECT main_date FROM table_27973624_1 WHERE round = \"Third round Qualifying\"",
    "question_en": "What is the main date when the round is third round qualifying?",
    "question_th": "รอบคัดเลือกรอบสามจะมีวันหลักคือเมื่อใด",
    "context": "CREATE TABLE table_27973624_1 (main_date VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_27973624_1 WHERE prize_money = \"£7,500\"",
    "question_en": "What is the round when the prize money is £7,500?",
    "question_th": "เงินรางวัลคือ 7,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_en": "What number in series was the episode written by Eric Gilliland?",
    "question_th": "ตอนที่เขียนโดย 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_en": "how many total number of points margin when brive is the winners",
    "question_th": "เมื่อ brive เป็นผู้ชนะจะมีแต้มสะสมทั้งหมดกี่แต้ม",
    "context": "CREATE TABLE table_27987767_2 (points_margin VARCHAR, winners VARCHAR)"
  },
  {
    "answer": "SELECT match_points FROM table_27987767_2 WHERE losers = \"Gran Parma\"",
    "question_en": "how many match points did gran parma lost",
    "question_th": "กราน ปาร์ม่า แพ้ไปกี่แต้ม",
    "context": "CREATE TABLE table_27987767_2 (match_points VARCHAR, losers VARCHAR)"
  },
  {
    "answer": "SELECT match_points FROM table_27987767_2 WHERE losers = \"Rotherham\"",
    "question_en": "how many match points rotherham lose",
    "question_th": "ร็อตเธอร์แฮมแพ้ไปกี่แต้ม",
    "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_en": "When brive is the proceed to quarter final how many were eliminated from competition? ",
    "question_th": " เมื่อ brive เข้าสู่รอบก่อนรองชนะเลิศ มีกี่คนที่ตกรอบจากการแข่งขัน?",
    "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_en": "When london irish was eliminated from competition who proceeded to quarter final?",
    "question_th": "เมื่อลอนดอนไอริชตกรอบจากการแข่งขัน ใครได้ผ่านเข้ารอบก่อนรองชนะเลิศ?",
    "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_en": "When brive proceeded to quarter final what were the match points?",
    "question_th": "เมื่อบริฟเข้าสู่รอบก่อนรองชนะเลิศ แต้มการแข่งขันคืออะไร?",
    "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_en": "What is the production code of the episode written by Jeff Filgo?",
    "question_th": "รหัสการผลิตของตอนที่เขียนโดย 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_en": "Name the original air date for bryan moore & chris peterson",
    "question_th": "ตั้งชื่อวันออกอากาศเดิมของไบรอัน มัวร์ และคริส ปีเตอร์สัน",
    "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_en": "Name the least production code for  bryan moore & chris peterson",
    "question_th": "ตั้งชื่อรหัสการผลิตที่น้อยที่สุดสำหรับ 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_en": "How many dates did the episode with a production code of 804 originally air on?",
    "question_th": "ตอนที่มีรหัสการผลิต 804 เดิมออกอากาศกี่วัน?",
    "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_en": "Who directed episode 2 of the season?",
    "question_th": "ใครเป็นผู้กำกับตอนที่ 2 ของซีซั่น?",
    "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_en": "What dat did episode 195 in the series originally air?",
    "question_th": "ตอนที่ 195 ในซีรีส์นี้ออกอากาศครั้งแรกคือเรื่องใด?",
    "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_en": "What is the name of episode 5 in the season?",
    "question_th": "ตอนที่ 5 ของซีซั่นชื่ออะไรคะ?",
    "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_en": "What is the title of episode 155 in the series?",
    "question_th": "ตอนที่ 155 ในซีรีส์ชื่ออะไรคะ?",
    "context": "CREATE TABLE table_27988540_1 (title VARCHAR, no_in_series VARCHAR)"
  },
  {
    "answer": "SELECT MAX(sponsorship) AS Ended FROM table_28005160_2",
    "question_en": "What is the last year a sponsorship ended?",
    "question_th": "ปีที่แล้วการสนับสนุนสิ้นสุดลงคืออะไร?",
    "context": "CREATE TABLE table_28005160_2 (sponsorship INTEGER)"
  },
  {
    "answer": "SELECT COUNT(country) FROM table_28005160_2 WHERE city = \"Ljungskile\"",
    "question_en": "How many countries played in the city of ljungskile?",
    "question_th": "มีกี่ประเทศที่เล่นในเมืองลุงสคิเล?",
    "context": "CREATE TABLE table_28005160_2 (country VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_28005160_2 WHERE country = \"Sweden\"",
    "question_en": "What cities are in sweden on this list?",
    "question_th": "เมืองใดบ้างในสวีเดนในรายการนี้?",
    "context": "CREATE TABLE table_28005160_2 (city VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_28005160_2 WHERE city = \"New Orleans\"",
    "question_en": "What country is new orleans in?",
    "question_th": "นิวออร์ลีนส์อยู่ประเทศอะไร?",
    "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_en": "What country are the new orleans shell shockers from?",
    "question_th": "New Orleans Shell Shockers มาจากประเทศอะไร?",
    "context": "CREATE TABLE table_28005160_2 (country VARCHAR, sponsored_name VARCHAR)"
  },
  {
    "answer": "SELECT arrangement FROM table_28005100_1 WHERE title = \"Bets3ab 3alia Nafsy\"",
    "question_en": "What is the arrangement for bets3ab 3alia nafsy?",
    "question_th": "การจัดการสำหรับ 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_en": "Who was the composer of ain shams?",
    "question_th": "ใครคือผู้แต่งเพลง 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_en": "How many numbers are there for kam wa7ed fina?",
    "question_th": "kam wa7ed fina มีกี่หมายเลข?",
    "context": "CREATE TABLE table_28005100_1 (no VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT composer FROM table_28005100_1 WHERE title = \"Te3rafy\"",
    "question_en": "Who was the composer of te3rafy?",
    "question_th": "ใครคือผู้แต่งเพลงของ 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_en": "How many sound engineers were there for law hakon '3er leek?",
    "question_th": "มีวิศวกรเสียงกี่คนสำหรับ 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_en": "Which number was the lyricist  ahmed metwally?",
    "question_th": "อาเหม็ด เมตวอลลี ผู้แต่งบทเพลงหมายเลขใด",
    "context": "CREATE TABLE table_28005100_1 (no VARCHAR, lyricist VARCHAR)"
  },
  {
    "answer": "SELECT site_stadium FROM table_28001186_8 WHERE score = \"11-4\"",
    "question_en": "What was the site of the game that had an 11-4 score?",
    "question_th": "เว็บไซต์ของเกมที่มีคะแนน 11-4 คืออะไร?",
    "context": "CREATE TABLE table_28001186_8 (site_stadium VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT ncaat_record FROM table_28001186_8 WHERE date = \"June 26\"",
    "question_en": "What was the NCAA Tournament record after the June 26 game?",
    "question_th": "บันทึกการแข่งขัน NCAA Tournament หลังเกมวันที่ 26 มิถุนายนเป็นอย่างไร?",
    "context": "CREATE TABLE table_28001186_8 (ncaat_record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT save FROM table_28001186_8 WHERE loss = \"Duke (3-2)\"",
    "question_en": "Who had the save in the game in which Duke (3-2) took the loss?",
    "question_th": "ใครเป็นผู้เซฟในเกมที่ Duke (3-2) พ่ายแพ้?",
    "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_en": "How many event dates occurred when event details were women's sabre?",
    "question_th": "มีเหตุการณ์กี่วันที่รายละเอียดกิจกรรมเป็นกระบี่ของผู้หญิง?",
    "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_en": "What is every value for approximate duration when event details is women's foil?",
    "question_th": "ทุกค่าของระยะเวลาโดยประมาณเมื่อรายละเอียดเหตุการณ์เป็นฟอยล์หญิงคือเท่าใด",
    "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_en": "What is every event date on Sunday with a starting time of 9:30 am?",
    "question_th": "ทุกวันอาทิตย์คือวันที่เท่าไร โดยเริ่มเวลา 9.30 น.",
    "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_en": "How many items appear in the viewers column when the draw is 2?",
    "question_th": "เมื่องวดที่ 2 มีกี่รายการที่ปรากฏในคอลัมน์ผู้ชม",
    "context": "CREATE TABLE table_27994983_8 (viewers VARCHAR, draw VARCHAR)"
  },
  {
    "answer": "SELECT MAX(viewers) FROM table_27994983_8 WHERE draw = 3",
    "question_en": "How many viewers are the when the draw is 3?",
    "question_th": "เมื่องวดที่ 3 มีผู้ชมกี่คน?",
    "context": "CREATE TABLE table_27994983_8 (viewers INTEGER, draw VARCHAR)"
  },
  {
    "answer": "SELECT MAX(juries) FROM table_27994983_8 WHERE draw = 3",
    "question_en": "How many juries are there when the draw is 3?",
    "question_th": "เมื่องวดที่ 3 มีคณะลูกขุนกี่คน?",
    "context": "CREATE TABLE table_27994983_8 (juries INTEGER, draw VARCHAR)"
  },
  {
    "answer": "SELECT MAX(juries) FROM table_27994983_8 WHERE artist = \"Brolle\"",
    "question_en": "How many juries are there for Brolle?",
    "question_th": "Brolle มีคณะลูกขุนกี่คน?",
    "context": "CREATE TABLE table_27994983_8 (juries INTEGER, artist VARCHAR)"
  },
  {
    "answer": "SELECT former_county FROM table_2801185_2 WHERE district = \"Great Grimsby\"",
    "question_en": "What are the former counties of the Great Grimsby district?",
    "question_th": "อดีตมณฑลของเขต Great Grimsby คืออะไร?",
    "context": "CREATE TABLE table_2801185_2 (former_county VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(status) FROM table_2801185_2 WHERE district = \"Durham\"",
    "question_en": "How many statuses are there for the Durham district?",
    "question_th": "เขตเดอรัมมีสถานะกี่สถานะ",
    "context": "CREATE TABLE table_2801185_2 (status VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_2801185_2 WHERE successor = \"Wiltshire\"",
    "question_en": "What are the statuses of the districts whose successor is Wiltshire?",
    "question_th": "สถานะของเขตที่ผู้สืบทอดคือวิลต์เชียร์มีสถานะอะไรบ้าง?",
    "context": "CREATE TABLE table_2801185_2 (status VARCHAR, successor VARCHAR)"
  },
  {
    "answer": "SELECT MAX(sdlp) FROM table_28005809_2 WHERE council = \"Belfast\"",
    "question_en": "What is the SDLP of Belfast?",
    "question_th": "SDLP ของเบลฟัสต์คืออะไร?",
    "context": "CREATE TABLE table_28005809_2 (sdlp INTEGER, council VARCHAR)"
  },
  {
    "answer": "SELECT MIN(alliance) FROM table_28005809_2 WHERE total = 25",
    "question_en": "What is the smallest Alliance where the total is 25?",
    "question_th": "พันธมิตรที่เล็กที่สุดที่มีทั้งหมด 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_en": "Who wrote the episode that 2.93 million viewers?",
    "question_th": "ใครเป็นคนเขียนตอนที่มีผู้ชม 2.93 ล้านคน?",
    "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_en": "What series number is the episode with production code bdf101?",
    "question_th": "ตอนรหัสการผลิต 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_en": "What is the series number for the episode with production code bdf109?",
    "question_th": "หมายเลขซีรีส์ตอนที่มีรหัสการผลิต 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_en": "Who directed the episode with the production code of 6AKY11?",
    "question_th": "ใครกำกับตอนด้วยรหัสการผลิต 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_en": "How many millions of U.S. viewers watched the episode with the production code of 6AKY07?",
    "question_th": "ผู้ชมในสหรัฐฯ จำนวนกี่ล้านคนที่ดูตอนนี้ด้วยรหัสการผลิต 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_en": "What number episode in the series was watched by 10.96 million U.S. viewers? ",
    "question_th": " มีผู้ชมชาวอเมริกันจำนวน 10.96 ล้านคนรับชมตอนใดในซีรีส์นี้",
    "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_en": "What dance had a score total of 31?",
    "question_th": "การเต้นรำใดมีคะแนนรวม 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_en": "What was the result for the dance that tonioli's scored an 8 and horwood scored a 6?",
    "question_th": "อะไรคือผลลัพธ์ของการเต้นรำที่โทนิโอลีได้คะแนน 8 และฮอร์วูดได้คะแนน 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_en": "How many times did tonioli score a 9 when horwood scored a 6?",
    "question_th": "โทนิโอลี่ทำคะแนนได้ 9 กี่ครั้งเมื่อฮอร์วู้ดได้ 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_en": "On week 11 when Dixon scored an 8, what was tonioli's score?",
    "question_th": "ในสัปดาห์ที่ 11 เมื่อดิกสันยิงได้ 8 คะแนน โทนิโอลี่ได้คะแนนเท่าไหร่?",
    "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_en": "How many winners from previous round were there in the semi finals?",
    "question_th": "มีผู้ชนะจากรอบที่แล้วกี่คนในรอบรองชนะเลิศ?",
    "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_en": "What was the round that had 32 winners from previous round?",
    "question_th": "รอบที่แล้วมีผู้ชนะ 32 คนจากรอบที่แล้วคือรอบไหน?",
    "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_en": "How many clubs were remaining in the preliminary round?",
    "question_th": "รอบเบื้องต้นเหลือกี่สโมสร?",
    "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_en": "What was the round when there were 16 winners from the previous round?",
    "question_th": "รอบที่แล้วมีผู้ชนะ 16 คนจากรอบที่แล้วคือรอบไหน?",
    "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_en": "How many clubs were involved in the second round?",
    "question_th": "มีกี่สโมสรที่เข้าร่วมในรอบที่สอง?",
    "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_en": "When  grand prix de sar la princesse lalla meryem is the tournament what is the town?",
    "question_th": "เมื่อกรังปรีซ์เดอซาร์ลาเจ้าหญิงลัลลาเมอเรมเป็นทัวร์นาเมนต์ เมืองคืออะไร?",
    "context": "CREATE TABLE table_2803662_3 (town VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_2803662_3 WHERE town = \"Stuttgart\"",
    "question_en": "When stuttgart is the town what is the type?",
    "question_th": "เมื่อสตุ๊ตการ์ทเป็นเมืองประเภทไหน?",
    "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édéric Miclotte\"",
    "question_en": "who is the person that is part of the belgian vw club that works with frédéric miclotte",
    "question_th": "ซึ่งเป็นบุคคลที่เป็นส่วนหนึ่งของสโมสร vw เบลเยียมที่ทำงานร่วมกับเฟรเดริก มิโคลตต์",
    "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_en": "what is the type of vehicle driven by mark higgins",
    "question_th": "รถประเภทไหนที่มาร์ค ฮิกกินส์ขับ",
    "context": "CREATE TABLE table_28046929_2 (car VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT entrant FROM table_28046929_2 WHERE co_driver = \"Zdeněk Hrůza\"",
    "question_en": "what is the entry where the other person is zdeněk hrůza",
    "question_th": "รายการที่บุคคลอื่นคือ zdeněk hrůza คืออะไร",
    "context": "CREATE TABLE table_28046929_2 (entrant VARCHAR, co_driver VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_28046929_2 WHERE co_driver = \"Paulo Babo\"",
    "question_en": "who is the other person where the assistant is paulo babo",
    "question_th": "ซึ่งเป็นอีกคนหนึ่งที่ผู้ช่วยคือ เปาโล บาโบ",
    "context": "CREATE TABLE table_28046929_2 (driver VARCHAR, co_driver VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_28046929_2 WHERE entrant = \"Peugeot Sport Polska\"",
    "question_en": "what are all the people where the entries is peugeot sport polska",
    "question_th": "ทุกคนที่เข้าแข่งขันคือ 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_en": "Who wrote the episode that had 6.05 million U.s. viewers?",
    "question_th": "ใครเป็นคนเขียนตอนที่มีผู้ชม Us 6.05 ล้านคน?",
    "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_en": "How many production codes are there for the episode that had 4.36 million u.s. viewers?",
    "question_th": "มีรหัสการผลิตกี่รหัสสำหรับตอนที่มีผู้ชม 4.36 ล้านคน?",
    "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_en": "How many people wrote the episode that had 7.26 million u.s. viewers?",
    "question_th": "มีกี่คนที่เขียนตอนที่มีผู้ชมถึง 7.26 ล้านคน?",
    "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_en": "How many million u.s. viewers saw the episode that was directed by roger young and written by debra j. fisher?",
    "question_th": "มีผู้ชมกี่ล้านคนที่เห็นตอนที่กำกับโดย roger young และเขียนโดย debra j. ชาวประมง?",
    "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_en": "What is the name of the episode written by David Matthews?",
    "question_th": "ตอนที่เขียนโดย David Matthews ชื่ออะไร?",
    "context": "CREATE TABLE table_28037619_2 (title VARCHAR, written_by VARCHAR)"
  },
  {
    "answer": "SELECT colors FROM table_28051859_3 WHERE school = \"Hudson\"",
    "question_en": "What are the colors of the Hudson school?",
    "question_th": "โรงเรียนฮัดสันมีสีอะไรบ้าง?",
    "context": "CREATE TABLE table_28051859_3 (colors VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT tenure FROM table_28051859_3 WHERE school = \"Field\"",
    "question_en": "When were the members tenured in the Field school?",
    "question_th": "สมาชิกดำรงตำแหน่งในโรงเรียนภาคสนามเมื่อใด",
    "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_en": "How many pick# for CFL team of Toronto Argonauts?",
    "question_th": "มีกี่ตัวเลือกสำหรับทีม CFL ของ 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_en": "What is every CFL team from the Calgary college?",
    "question_th": "ทีม CFL ทุกคนจากวิทยาลัย Calgary คืออะไร?",
    "context": "CREATE TABLE table_28059992_1 (cfl_team VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_28059992_1 WHERE cfl_team = \"Edmonton\"",
    "question_en": "What is every position for the CFL Edmonton?",
    "question_th": "ทุกตำแหน่งสำหรับ 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_en": "What is every CFL team with pick#1?",
    "question_th": "ทีม CFL ทุกทีมที่ได้รับเลือก #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_en": "What is every CFL team with the player Mark Farraway?",
    "question_th": "ทีม CFL ทุกทีมที่มีผู้เล่น มาร์ค ฟาร์ราเวย์ คืออะไร?",
    "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_en": "What draft pick number was Andy Brereton?",
    "question_th": "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_en": "What pick number was the player that was picked by Edmonton?",
    "question_th": "ผู้เล่นหมายเลขใดที่ถูกเลือกโดยเอดมันตัน?",
    "context": "CREATE TABLE table_28059992_5 (pick__number VARCHAR, cfl_team VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_28059992_5 WHERE cfl_team = \"Saskatchewan\"",
    "question_en": "What position did the draft pick going to saskatchewan play?",
    "question_th": "ดราฟท์เลือกไปเล่นซัสแคตเชวันตำแหน่งไหน?",
    "context": "CREATE TABLE table_28059992_5 (position VARCHAR, cfl_team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(pick__number) FROM table_28059992_5",
    "question_en": "What is the highest numbered draft pick?",
    "question_th": "ตัวเลือกดราฟต์ที่มีหมายเลขสูงสุดคืออะไร?",
    "context": "CREATE TABLE table_28059992_5 (pick__number INTEGER)"
  },
  {
    "answer": "SELECT cfl_team FROM table_28059992_5 WHERE college = \"York\"",
    "question_en": "What CFL team got the player from york?",
    "question_th": "ทีม CFL ใดได้นักเตะจากยอร์ก?",
    "context": "CREATE TABLE table_28059992_5 (cfl_team VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(position) FROM table_28059992_5 WHERE player = \"Trent Bagnail\"",
    "question_en": "How many positions does Trent Bagnail play?",
    "question_th": "เทรนต์ แบ็กเนล เล่นได้กี่ตำแหน่ง?",
    "context": "CREATE TABLE table_28059992_5 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_28059992_6 WHERE cfl_team = \"Edmonton\"",
    "question_en": "What position was the player who was drafted by Edmonton?",
    "question_th": "ผู้เล่นที่ถูกร่างโดยเอดมันตันคือตำแหน่งใด",
    "context": "CREATE TABLE table_28059992_6 (position VARCHAR, cfl_team VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_28059992_6 WHERE position = \"RB\"",
    "question_en": "What college did the player whose position was RB go to? ",
    "question_th": " ผู้เล่นที่มีตำแหน่ง RB เข้าเรียนที่วิทยาลัยใด",
    "context": "CREATE TABLE table_28059992_6 (college VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_28059992_6 WHERE player = \"Francis Bellefroid\"",
    "question_en": "What college did Francis Bellefroid go to? ",
    "question_th": " ฟรานซิส เบลฟรอยด์เข้าเรียนที่วิทยาลัยใด",
    "context": "CREATE TABLE table_28059992_6 (college VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_28059992_6 WHERE cfl_team = \"Winnipeg\"",
    "question_en": "Which player was drafted by Winnipeg? ",
    "question_th": " ผู้เล่นคนไหนถูกดราฟต์โดย Winnipeg?",
    "context": "CREATE TABLE table_28059992_6 (player VARCHAR, cfl_team VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_28059992_6 WHERE cfl_team = \"Calgary\"",
    "question_en": "What college did the player who was drafted by Calgary go to?",
    "question_th": "ผู้เล่นที่ถูกดราฟต์โดยคาลการีไปเรียนที่วิทยาลัยใด",
    "context": "CREATE TABLE table_28059992_6 (college VARCHAR, cfl_team VARCHAR)"
  },
  {
    "answer": "SELECT height FROM table_28062822_3 WHERE represent = 1",
    "question_en": "What was the height of representative #1?",
    "question_th": "ตัวแทนหมายเลข 1 มีความสูงเท่าใด",
    "context": "CREATE TABLE table_28062822_3 (height VARCHAR, represent VARCHAR)"
  },
  {
    "answer": "SELECT contestant FROM table_28062822_3 WHERE sponsor = \"Yogurt Vita Slim\"",
    "question_en": "Which contestant was sponsored by Yogurt Vita Slim?",
    "question_th": "ผู้เข้าแข่งขันคนไหนที่ได้รับการสนับสนุนจาก Yogurt Vita Slim?",
    "context": "CREATE TABLE table_28062822_3 (contestant VARCHAR, sponsor VARCHAR)"
  },
  {
    "answer": "SELECT height FROM table_28062822_3 WHERE represent = 6",
    "question_en": "What was the height of representative #6?",
    "question_th": "ตัวแทนหมายเลข 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_en": "how many people wrote the episode directed by rob schrab?",
    "question_th": "มีกี่คนที่เขียนบทตอนนี้ที่กำกับโดย 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_en": "name the title of the episode with production code 201",
    "question_th": "ตั้งชื่อตอนด้วยรหัสการผลิต 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_en": "Who were the authors of the episode first broadcast on August 10, 2012?",
    "question_th": "ใครคือผู้เขียนตอนที่ออกอากาศครั้งแรกเมื่อวันที่ 10 สิงหาคม 2555",
    "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_en": "When was originally aired the episode with an audience of 1.57 million us viewers?",
    "question_th": "ตอนแรกออกอากาศด้วยผู้ชม 1.57 ล้านคนอย่างพวกเรา?",
    "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_en": "What season number was assigned to the episode identified with the production code 401? ",
    "question_th": " หมายเลขซีซันใดที่กำหนดให้กับตอนที่ระบุด้วยรหัสการผลิต 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_en": "List the number of assists for the DF.",
    "question_th": "ระบุจำนวนแอสซิสต์ของ 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_en": "List the lowest super league for a 0 champion league.",
    "question_th": "รายชื่อซูเปอร์ลีกที่ต่ำที่สุดสำหรับ 0 แชมเปี้ยนลีก",
    "context": "CREATE TABLE table_28068645_8 (super_league INTEGER, champions_league VARCHAR)"
  },
  {
    "answer": "SELECT MIN(total) FROM table_28068645_8",
    "question_en": "What is the minimum sum?",
    "question_th": "จำนวนเงินขั้นต่ำคือเท่าไร?",
    "context": "CREATE TABLE table_28068645_8 (total INTEGER)"
  },
  {
    "answer": "SELECT intermediate_sprints_classification_klasyfikacja_najaktywniejszych FROM table_28092844_16 WHERE winner = \"Daniel Martin\"",
    "question_en": "What was the intermediate sprint classification for the race whose winner was Daniel Martin?",
    "question_th": "ประเภทการวิ่งระดับกลางสำหรับการแข่งขันที่ผู้ชนะคือ 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_żółta_koszulka = \"Allan Davis\"",
    "question_en": "Which teams classification winners had a general classification winner of Allan Davis?",
    "question_th": "ผู้ชนะประเภททีมใดมีผู้ชนะประเภททั่วไปคือ Allan Davis",
    "context": "CREATE TABLE table_28092844_16 (teams_classification VARCHAR, general_classification_żółta_koszulka VARCHAR)"
  },
  {
    "answer": "SELECT points_classification_klasyfikacja_punktowa FROM table_28092844_16 WHERE teams_classification = \"Lampre-Farnese\"",
    "question_en": "Who won the points classification when the teams classification winner was Lampre-Farnese?",
    "question_th": "ใครเป็นผู้ชนะการจัดประเภทคะแนนเมื่อผู้ชนะประเภททีมคือแลมเพร-ฟาร์เนเซ?",
    "context": "CREATE TABLE table_28092844_16 (points_classification_klasyfikacja_punktowa VARCHAR, teams_classification VARCHAR)"
  },
  {
    "answer": "SELECT english_word FROM table_28136_15 WHERE ukrainian = \"Дякую (diakuju)\"",
    "question_en": "How do you say the ukrainian word дякую (diakuju) in English?",
    "question_th": "คุณจะพูดภาษายูเครนคำว่า дякую (diakuju) เป็นภาษาอังกฤษได้อย่างไร?",
    "context": "CREATE TABLE table_28136_15 (english_word VARCHAR, ukrainian VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(rusyn) FROM table_28136_15 WHERE bulgarian = \"купува (kupuva)\"",
    "question_en": "How many words are there in rusyn for the bulgarian word купува (kupuva)?",
    "question_th": "ภาษารูซินมีกี่คำสำหรับคำภาษาบัลแกเรีย купува (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_en": "Name the new adherents per year for buddhism",
    "question_th": "ตั้งชื่อผู้นับถือใหม่ต่อปีเพื่อพระพุทธศาสนา",
    "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_en": "Name the  number of new adherents per year for confucianism",
    "question_th": "ตั้งชื่อจำนวนผู้นับถือลัทธิขงจื๊อใหม่ต่อปี",
    "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_en": "Name the least births for conversion being 26,333",
    "question_th": "ตั้งชื่อการเกิดน้อยที่สุดสำหรับการแปลงเป็น 26,333",
    "context": "CREATE TABLE table_28137918_5 (births INTEGER, conversions VARCHAR)"
  },
  {
    "answer": "SELECT MIN(new_adherents_per_year) FROM table_28137918_5",
    "question_en": "Name the least amount of new adherents per year",
    "question_th": "ตั้งชื่อผู้สมัครใหม่ให้น้อยที่สุดต่อปี",
    "context": "CREATE TABLE table_28137918_5 (new_adherents_per_year INTEGER)"
  },
  {
    "answer": "SELECT religion FROM table_28137918_5 WHERE growth_rate = \"1.56%\"",
    "question_en": "Name the religion that has a growth rate of 1.56%",
    "question_th": "ตั้งชื่อศาสนาที่มีอัตราการเติบโต 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_en": "What is the length when the propulsion is controllable pitch propeller?",
    "question_th": "ความยาวเมื่อขับเคลื่อนเป็นใบพัดพิทช์ที่ควบคุมได้คือเท่าใด",
    "context": "CREATE TABLE table_28132970_5 (length VARCHAR, propulsion VARCHAR)"
  },
  {
    "answer": "SELECT max_speed FROM table_28132970_5 WHERE vessel = \"Gallion\"",
    "question_en": "What is the max speed when the vessel is gallion?",
    "question_th": "ความเร็วสูงสุดเมื่อเรือมีแกลเลียนคือเท่าใด?",
    "context": "CREATE TABLE table_28132970_5 (max_speed VARCHAR, vessel VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(breadth) FROM table_28132970_5 WHERE vessel = \"Marianarray\"",
    "question_en": "How many breadth entries are there when the vessel is marianarray?",
    "question_th": "มีรายการความกว้างกี่รายการเมื่อเรือเป็นมาเรียนาเรย์?",
    "context": "CREATE TABLE table_28132970_5 (breadth VARCHAR, vessel VARCHAR)"
  },
  {
    "answer": "SELECT propulsion FROM table_28132970_5 WHERE vessel = \"Marianarray\"",
    "question_en": "What is the propulsion when the vessel is marianarray?",
    "question_th": "แรงขับเมื่อเรือเป็น marianarray คืออะไร?",
    "context": "CREATE TABLE table_28132970_5 (propulsion VARCHAR, vessel VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(breadth) FROM table_28132970_5 WHERE propulsion = \"Jet\"",
    "question_en": "How many breadth entries are there when propulsion is jet?",
    "question_th": "มีรายการความกว้างกี่รายการเมื่อแรงขับพุ่งออกมา?",
    "context": "CREATE TABLE table_28132970_5 (breadth VARCHAR, propulsion VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_28116528_1 WHERE production_code = \"3X6306\"",
    "question_en": "What episode title had a production code of 3x6306?",
    "question_th": "ชื่อตอนใดมีรหัสการผลิต 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_en": "What date did the episode with a production code of 3x6316 originally air?",
    "question_th": "ตอนที่มีรหัสการผลิต 3x6316 เดิมออกอากาศวันไหน?",
    "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_en": "Who won the mens doubles when wu yang won the womens singles?",
    "question_th": "ใครชนะประเภทคู่ชายเมื่อหวู่หยางชนะประเภทหญิงเดี่ยว?",
    "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_en": "What year and where was the tournament when fan ying won the womens singles?",
    "question_th": "ฟานหญิงชนะประเภทหญิงเดี่ยวมีรายการปีไหนและที่ไหน?",
    "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_en": "Who won the mens singles when lau sui fei won the womens singles?",
    "question_th": "ใครชนะประเภทชายเดี่ยวเมื่อ lau sui fei ชนะประเภทหญิงเดี่ยว?",
    "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_en": "Who won the mens doubles when wang hao won the mens singles?",
    "question_th": "ใครชนะประเภทชายคู่ ในเมื่อหวัง ห่าวชนะประเภทชายเดี่ยว?",
    "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_en": "Who won in the men singles group in the year when Yoshie Takada won in the women singles?",
    "question_th": "ใครชนะในกลุ่มชายเดี่ยวในปีที่โยชิเอะ ทาคาดะ ชนะประเภทหญิงเดี่ยว?",
    "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_en": "When and where did Chen Qi win in men singles?",
    "question_th": "Chen Qi ชนะประเภทชายเดี่ยวเมื่อใดและที่ไหน?",
    "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_en": "Who is listed under mens singles when womens has wang nan zhang yining?",
    "question_th": "ใครอยู่ในรายชื่อชายเดี่ยวเมื่อผู้หญิงมี 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_en": "How many womens singles entries are there when womens doubles is li xiaodan wen jia?",
    "question_th": "ในประเภทหญิงคู่มีกี่รายการคือ 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_en": "Who is listed under womens singles when year location is 1998 doha?",
    "question_th": "ใครอยู่ในรายชื่อประเภทหญิงเดี่ยวเมื่อปีที่ตั้งคือ 1998 โดฮา?",
    "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_en": "Who is listed under mens singles when the year location is 2009 doha?",
    "question_th": "ใครอยู่ในรายการชายเดี่ยวเมื่อสถานที่ปี 2009 โดฮา?",
    "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_en": "How many  year locations are there for the womens doubles in jing junhong li jiawei?",
    "question_th": "ประเภทคู่หญิงในจิง จุนหง ลี เจียเว่ย มีกี่ปี?",
    "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_en": "How many players are there for mens singles when chen qi ma lin played mens doubles?",
    "question_th": "ตอนที่ Chen Qi Ma Lin เล่นประเภทชายคู่มีผู้เล่นกี่คน?",
    "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_en": "Who played mens doubles for the 1999 kobe tour?",
    "question_th": "ใครเคยเล่นประเภทคู่ชายในทัวร์โกเบปี 1999?",
    "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_en": "Where was the tour when  jing junhong li jiawei played womens doubles?",
    "question_th": "ทัวร์ไหนที่จิง จุนหง ลี เจียเว่ย เล่นประเภทหญิงคู่?",
    "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_en": "How many years did lin gaoyuan wu jiaji play  mens doubles?",
    "question_th": "หลิน เกาหยวน อู๋ เจียจี เล่นประเภทชายคู่กี่ปี?",
    "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_en": "How many people are shown for mens doubles when guo yue played womens singles?",
    "question_th": "มีกี่คนที่แสดงประเภทคู่ชายเมื่อ guo yue เล่นประเภทหญิงเดี่ยว?",
    "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_en": "Who won the Womens Singles in the year the Jean-Michel Saive won the Mens Singles?",
    "question_th": "ใครเป็นผู้ชนะการแข่งขัน Womens Singles ในปีที่ Jean-Michel Saive ได้รับรางวัล 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_en": "In what year and location did Liu Guozheng win the Mens Singles?",
    "question_th": "Liu Guozheng ชนะการแข่งขัน 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_en": "In what year and location did Wang Liqin win the Mens Singles?",
    "question_th": "Wang Liqin ชนะการแข่งขัน 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_en": "Who won the mens doubles at the 2006 guangzhou event?",
    "question_th": "ใครชนะประเภทคู่ชายในงานกวางโจวปี 2549?",
    "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_en": "How many times was the womens doubles in china?",
    "question_th": "หญิงคู่ที่จีนกี่ครั้ง?",
    "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_en": "How many times did  li ju win the womens singles and wang liqin win the mens singles?",
    "question_th": "กี่ครั้งแล้วที่ li ju ชนะประเภทหญิงเดี่ยว และ Wang liqin ชนะประเภทชายเดี่ยว?",
    "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_en": "Name the mens singles for lee eun-sil moon hyun-jung",
    "question_th": "ตั้งชื่อชายเดี่ยวสำหรับ ลี อึนซิล มุน ฮยอนจุง",
    "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_en": "Name the number of womens doubles for 2011 rio de janeiro",
    "question_th": "ตั้งชื่อจำนวนหญิงคู่ประจำปี 2011 ที่ริโอ เด จาเนโร",
    "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_en": "Name the year location for  haruna fukuoka",
    "question_th": "ตั้งชื่อปีที่ตั้งของฮารุนะ ฟุกุโอกะ",
    "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_en": "Name the mens doubles for dimitrij ovtcharov",
    "question_th": "ตั้งชื่อประเภทชายคู่สำหรับดิมิทริจ ออฟชารอฟ",
    "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_en": "Name the number of womens singles for 1999 rio de janeiro",
    "question_th": "ตั้งชื่อจำนวนหญิงเดี่ยวในปี 1999 ริโอเดจาเนโร",
    "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_en": "Name the womens doubles for werner schlager",
    "question_th": "ตั้งชื่อประเภทหญิงคู่สำหรับแวร์เนอร์ ชลาเกอร์",
    "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_en": "Who was the womens double winner when the womens singles winner was Ding Ning?",
    "question_th": "ใครคือผู้ชนะประเภทหญิงเดี่ยวในสมัยที่ผู้ชนะประเภทหญิงเดี่ยวคือ 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_en": "Who wrote episode number 19 in the series?",
    "question_th": "ใครเป็นคนเขียนตอนที่ 19 ของซีรีส์นี้?",
    "context": "CREATE TABLE table_28140578_1 (written_by VARCHAR, no_in_series VARCHAR)"
  },
  {
    "answer": "SELECT marks FROM table_2814720_1 WHERE tackles = 3",
    "question_en": "How many marks are there when tackles are 3?",
    "question_th": "เมื่อแท็คเกิลได้ 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_en": "What was the goal accuracy % when the total disposals are 481?",
    "question_th": "เปอร์เซ็นต์ความแม่นยำของประตูคือเท่าใดเมื่อจำหน่ายทั้งหมดคือ 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_en": "What date did the episode with a production code of 60072 originally air?",
    "question_th": "ตอนที่มีรหัสการผลิต 60072 เดิมออกอากาศวันไหน?",
    "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_en": "What's the title of the episode with series number 36?",
    "question_th": "ตอนที่ 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_en": "when was the next coach appointed after niger tornadoes fired their coach?",
    "question_th": "โค้ชคนต่อไปได้รับการแต่งตั้งเมื่อใดหลังจากพายุทอร์นาโดไนเจอร์ยิงโค้ชของพวกเขา?",
    "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_en": "how many managers left sunshine stars?",
    "question_th": "มีผู้จัดการกี่คนที่ทิ้งแสงแดดไว้?",
    "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_en": "how many new managers replaced  manager(s) who resigned? ",
    "question_th": " มีผู้จัดการคนใหม่เข้ามาแทนที่ผู้จัดการที่ลาออกกี่คน?",
    "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_en": "how many times did tunde abdulrahman leave the team?",
    "question_th": "ตุนเด อับดุลราห์มาน ออกจากทีมกี่ครั้ง?",
    "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_en": "How many platforms have celsius calibur as mystic arte?",
    "question_th": "มีกี่แพลตฟอร์มที่มีเซลเซียสคาลิเบอร์เป็นมิสติกอาร์ต?",
    "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_en": "How many mystic arte have hisui (jadeite) hearts 1 as the character?",
    "question_th": "ตัวละครลึกลับมีหัวใจฮิซุย (หยก) 1 กี่ดวง?",
    "context": "CREATE TABLE table_28178595_2 (mystic_arte VARCHAR, character VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(platform) FROM table_28178595_2 WHERE character = \"Nanaly Fletch\"",
    "question_en": "How many platforms have nanaly fletch as the character?",
    "question_th": "มีกี่แพลตฟอร์มที่มี nanaly fletch เป็นตัวละคร?",
    "context": "CREATE TABLE table_28178595_2 (platform VARCHAR, character VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_28178595_2 WHERE character = \"Keel (Keele) Zeibel\"",
    "question_en": "What is the status of the character keel (keele) zeibel?",
    "question_th": "สถานะของตัวละครกระดูกงู (keele) zeibel คืออะไร?",
    "context": "CREATE TABLE table_28178595_2 (status VARCHAR, character VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_2817196_1 WHERE goals_against = 254",
    "question_en": "What sesaon(s) did they have 254 goals against?",
    "question_th": "ในฤดูกาลใดที่พวกเขาทำได้ 254 ประตู?",
    "context": "CREATE TABLE table_2817196_1 (season VARCHAR, goals_against VARCHAR)"
  },
  {
    "answer": "SELECT MAX(points) FROM table_2817196_1",
    "question_en": "What is the largest number of points in a season?",
    "question_th": "คะแนนมากที่สุดในหนึ่งฤดูกาลคือเท่าใด?",
    "context": "CREATE TABLE table_2817196_1 (points INTEGER)"
  },
  {
    "answer": "SELECT late_middle_english FROM table_28177800_5 WHERE late_old_english__anglian_ = \"æg, ǣg\"",
    "question_en": "What is the Late Middle English equivalent of the Anglian æg, ǣg?",
    "question_th": "ภาษาอังกฤษยุคกลางตอนปลายเทียบเท่ากับ Anglian æg, ǣg คืออะไร?",
    "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] → /f/) /ɔf/\"",
    "question_en": "What is the example of the Early Modern English ( [x] → /f/) /ɔf/?",
    "question_th": "อะไรคือตัวอย่างของภาษาอังกฤษสมัยใหม่ยุคแรก ( [x] → /f/) /ɔf/?",
    "context": "CREATE TABLE table_28177800_5 (example VARCHAR, early_modern_english VARCHAR)"
  },
  {
    "answer": "SELECT miles__km_ FROM table_28178756_1 WHERE year = 2010",
    "question_en": "List the numer of miles for 2010.",
    "question_th": "รายการจำนวนไมล์สำหรับปี 2010",
    "context": "CREATE TABLE table_28178756_1 (miles__km_ VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_28178756_1 WHERE driver = \"Tommy Ellis\"",
    "question_en": "On what day did tommy ellis drive?",
    "question_th": "ทอมมี่ เอลลิสขับรถวันไหน?",
    "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_en": "On what day did joe gibbs racing record a time of 1:53:26?",
    "question_th": "Joe Gibbs Racing ทำสถิติเวลา 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_en": "What is the average speed for filmar racing?",
    "question_th": "ความเร็วเฉลี่ยในการแข่ง Filmar คือเท่าไร?",
    "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_en": "List the race time for may 11.",
    "question_th": "รายชื่อเวลาการแข่งขันวันที่ 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_en": "What is the total number of modern grannies performed?",
    "question_th": "คุณยายยุคใหม่แสดงทั้งหมดกี่คน?",
    "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_en": "What is the name of the performance zhu xiaoming performed?",
    "question_th": "การแสดงที่จู เสี่ยวหมิงแสดงชื่ออะไร?",
    "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_en": "How many performers are 29 that made it to the semi finals?",
    "question_th": "มีนักแสดง 29 คนที่เข้ารอบรองชนะเลิศกี่คน?",
    "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_en": "What is the name of the zhou jinsong's hometown?",
    "question_th": "บ้านเกิดของโจวจินซงชื่ออะไร",
    "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_en": "How many different production codes does the episode originally aired on October 18, 1984 have?",
    "question_th": "ตอนที่ออกอากาศครั้งแรกเมื่อวันที่ 18 ตุลาคม พ.ศ. 2527 มีรหัสการผลิตที่แตกต่างกันกี่รหัส",
    "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_en": "What's the title of the episode with production code 104?",
    "question_th": "ตอนที่มีรหัสการผลิต 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_en": "How many different titles does the episode originally aired on September 27, 1984 have?",
    "question_th": "ตอนที่ออกอากาศครั้งแรกเมื่อวันที่ 27 กันยายน พ.ศ. 2527 มีชื่อเรื่องที่แตกต่างกันกี่เรื่อง",
    "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_en": "What's the production code of the episode originally aired on February 21, 1985?",
    "question_th": "รหัสการผลิตของตอนที่ออกอากาศครั้งแรกเมื่อวันที่ 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_en": "when roberts 86' is the scorer what is the round?",
    "question_th": "เมื่อโรเบิร์ตส์ 86' เป็นผู้ทำประตู จะได้รอบไหน?",
    "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_en": "When semi final (2nd leg) is the round what is the highest attendance?",
    "question_th": "เมื่อถึงรอบรองชนะเลิศ (เลกที่ 2) เป็นรอบที่มีผู้เข้าชมสูงสุดคือเท่าใด?",
    "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_en": "When Mark Stimson started his job in 2007-08 what posiiton was the team on the table",
    "question_th": "เมื่อมาร์ค สติมสันเริ่มงานในปี 2007-08 ทีมบนโต๊ะมีตำแหน่งอะไร",
    "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_en": "In football league one, what coach was hired as a replacement on 8 October 2007",
    "question_th": "ในฟุตบอลลีกวัน มีการจ้างโค้ชคนไหนมาทดแทนเมื่อวันที่ 8 ตุลาคม พ.ศ. 2550",
    "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_en": "One 6 November 2007 what was the manner of departure for the coach release in football league one?",
    "question_th": "หนึ่ง 6 พฤศจิกายน 2550 แนวทางการลาออกของโค้ชในฟุตบอลลีกวันเป็นอย่างไร?",
    "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_en": "What is the series number for the episode written by janet leahy?",
    "question_th": "หมายเลขซีรีส์ของตอนที่เขียนโดย Janet Lehy คืออะไร",
    "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_en": "What was the air date of the episode with the production code of 322?",
    "question_th": "ออกอากาศวันไหนครับ รหัสการผลิต 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_en": "What is the series number for the episode directed by  jay sandrich that aired October 23, 1986?",
    "question_th": "หมายเลขซีรีส์ของตอนที่กำกับโดยเจย์ แซนดริช ซึ่งออกอากาศเมื่อวันที่ 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_en": "What are the title(s) of episodes directed by david solomon and written by marti noxon?",
    "question_th": "ชื่อเรื่องของตอนที่กำกับโดย David Solomon และเขียนโดย 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_en": "What was the number of episodes whose production code is 7ABB21?",
    "question_th": "รหัสการผลิตคือ 7ABB21 มีทั้งหมดกี่ตอน?",
    "context": "CREATE TABLE table_28196105_1 (_number VARCHAR, production_code VARCHAR)"
  },
  {
    "answer": "SELECT written_by FROM table_28196105_1 WHERE _number = 18",
    "question_en": "Who wrote episode number 18?",
    "question_th": "ใครเป็นคนเขียนตอนที่ 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_en": "Name the tries for when L is less than 2.0",
    "question_th": "ตั้งชื่อความพยายามเมื่อ L น้อยกว่า 2.0",
    "context": "CREATE TABLE table_28204447_3 (tries_for VARCHAR, l INTEGER)"
  },
  {
    "answer": "SELECT MAX(year) FROM table_2820584_2",
    "question_en": "What is the most recent year shown for Betty Stove?",
    "question_th": "ปีล่าสุดที่แสดงสำหรับ Betty Stove คือปีใด?",
    "context": "CREATE TABLE table_2820584_2 (year INTEGER)"
  },
  {
    "answer": "SELECT partner FROM table_2820584_2 WHERE surface = \"Hard\"",
    "question_en": "Who was Betty's partner when the surface is hard?",
    "question_th": "ใครคือคู่หูของเบ็ตตี้เมื่อพื้นผิวแข็ง?",
    "context": "CREATE TABLE table_2820584_2 (partner VARCHAR, surface VARCHAR)"
  },
  {
    "answer": "SELECT MIN(drawn) FROM table_28201906_1",
    "question_en": "What is the lowest number of drawn games by a team?",
    "question_th": "จำนวนเกมที่เสมอกันของทีมน้อยที่สุดคือเท่าใด?",
    "context": "CREATE TABLE table_28201906_1 (drawn INTEGER)"
  },
  {
    "answer": "SELECT pts_for FROM table_28201906_1 WHERE won = 5",
    "question_en": "How many points did the team that won 5 games make?",
    "question_th": "ทีมที่ชนะ 5 เกมได้กี่แต้ม?",
    "context": "CREATE TABLE table_28201906_1 (pts_for VARCHAR, won VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_28201906_1 WHERE pts_agst = 45",
    "question_en": "How many points does the club that had 45 points against it have?",
    "question_th": "สโมสรที่มี 45 แต้มมีกี่แต้ม?",
    "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_en": "When gray wolves is the team nickname how many institutions are there?",
    "question_th": "เมื่อหมาป่าสีเทาเป็นชื่อเล่นของทีมมีกี่สถาบัน?",
    "context": "CREATE TABLE table_28211213_2 (institution VARCHAR, team_nickname VARCHAR)"
  },
  {
    "answer": "SELECT team_nickname FROM table_28211213_2 WHERE location = \"Sylvania, OH\"",
    "question_en": "When sylvania, oh is the location what is the team nickname?",
    "question_th": "เมื่อ ซิลเวเนีย โอ้ สถานที่ ชื่อเล่นของทีมคืออะไร?",
    "context": "CREATE TABLE table_28211213_2 (team_nickname VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT institution FROM table_28211213_2 WHERE location = \"Indianapolis, Indiana\"",
    "question_en": "When indianapolis, indiana is the location what is the institution?",
    "question_th": "เมื่ออินเดียแนโพลิส รัฐอินเดียนาเป็นสถานที่ สถาบันอะไร?",
    "context": "CREATE TABLE table_28211213_2 (institution VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT team_nickname FROM table_28211213_2 WHERE affiliation = \"Private/ Nonsectarian\"",
    "question_en": "When private/ nonsectarian is the the affiliation what is the team nickname?",
    "question_th": "เมื่อเอกชน/ไม่แบ่งแยกเป็นสังกัด ชื่อเล่นของทีมคืออะไร?",
    "context": "CREATE TABLE table_28211213_2 (team_nickname VARCHAR, affiliation VARCHAR)"
  },
  {
    "answer": "SELECT team_nickname FROM table_28211213_2 WHERE enrollment = 4512",
    "question_en": "4512 is the enrollment what is the team nickname?",
    "question_th": "4512 คือการลงทะเบียน ชื่อเล่นของทีมคืออะไร?",
    "context": "CREATE TABLE table_28211213_2 (team_nickname VARCHAR, enrollment VARCHAR)"
  },
  {
    "answer": "SELECT championship FROM table_2820584_3 WHERE partner = \"Allan Stone\"",
    "question_en": "What championship was played with Allan Stone as a partner?",
    "question_th": "แชมป์อะไรที่เล่นโดย Allan Stone ในฐานะหุ้นส่วน?",
    "context": "CREATE TABLE table_2820584_3 (championship VARCHAR, partner VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(partner) FROM table_2820584_3 WHERE year = 1973",
    "question_en": "How many different partners played in the finale in 1973?",
    "question_th": "มีคู่หูที่แตกต่างกันกี่คนที่เล่นในตอนจบในปี 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_en": "What was the score in the final played with Fred McNair as partner?",
    "question_th": "คะแนนในรอบชิงชนะเลิศที่เล่นกับเฟร็ด แม็คแนร์เป็นคู่หูเป็นเท่าใด",
    "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_en": "What was the orginal air date for episodes with production code 2acx12?",
    "question_th": "ตอนที่มีรหัสการผลิต 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_en": "Who wrote the episode with production code 2acx12?",
    "question_th": "ใครเป็นคนเขียนตอนที่มีรหัสการผลิต 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_en": "What numbered episode was directed by greg colton and written by patrick meighan?",
    "question_th": "ตอนใดกำกับโดย Gregor Colton และเขียนโดย Patrick Meighhan",
    "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_en": "Who directed # (season #) is 1 ( 2 )?",
    "question_th": "ใครกำกับ # (ซีซั่น #) คือ 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_en": "Who is everyone on the men's doubles when men's singles is Ma Wenge?",
    "question_th": "ทุกคนในประเภทชายคู่คือใครเมื่อชายเดี่ยวคือ 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_en": "Who are all men's doubles when men's singles is Jean-Michel Saive?",
    "question_th": "ชายคู่คือใครในเมื่อชายเดี่ยวคือ 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_en": "Who are all hosts when men's singles is Ma Wenge?",
    "question_th": "ใครคือพิธีกรเมื่อชายเดี่ยวคือ 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_en": "How many people are women's singles in the season of 2000/01?",
    "question_th": "หญิงโสดในฤดูกาล 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_en": "Name the winners of the mens doubles in the season of 1963/64.",
    "question_th": "รายชื่อผู้ชนะชายคู่ ฤดูกาล 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_en": "Who was the director of the episode with series number 116?",
    "question_th": "ใครเป็นผู้กำกับตอนของซีรีส์หมายเลข 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_en": "What's the title of the episode seen by 12.85 millions of people in the US?",
    "question_th": "ตอนที่คน 12.85 ล้านคนในอเมริกาเห็นชื่ออะไร",
    "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_en": "How many episodes had 11.86 million US viewers?",
    "question_th": "มีกี่ตอนที่มีผู้ชม 11.86 ล้านคนในสหรัฐฯ?",
    "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_en": "What is the title(s) of episodes written by aron eli coleite?",
    "question_th": "ตอนที่เขียนโดย 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_en": "What are the original air date(s) for episodes written by aron eli coleite?",
    "question_th": "วันที่ออกอากาศดั้งเดิมสำหรับตอนที่เขียนโดย 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_en": "how many producers are responsible for the song 'calling out to marlboro?",
    "question_th": "มีโปรดิวเซอร์กี่คนที่รับผิดชอบเพลง '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_en": "what was the first year that kid creole and the coconuts recorded with I Too Have Seen The Woods / Sire Records?",
    "question_th": "ปีแรกที่เด็กครีโอลและมะพร้าวบันทึกด้วย 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_en": "How many seasons are there with Formula Holden?",
    "question_th": "Formula Holden มีกี่ฤดูกาล?",
    "context": "CREATE TABLE table_2822193_1 (seasons VARCHAR, series VARCHAR)"
  },
  {
    "answer": "SELECT MAX(poles) FROM table_2822193_1 WHERE races = 2",
    "question_en": "How many poles are there with 2 races?",
    "question_th": "2 เชื้อชาติมีกี่เสา?",
    "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_en": "What's the most amount of point finishes for v8supercar?",
    "question_th": "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_en": "How many people had high rebounds in game 14?",
    "question_th": "มีกี่คนที่รีบาวด์สูงในเกมที่ 14?",
    "context": "CREATE TABLE table_28220778_21 (high_rebounds VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_28220778_21 WHERE date = \"January 2\"",
    "question_en": "What is every score when the date is January 2?",
    "question_th": "ทุกคะแนนวันที่ 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_en": "What was the highest number of students in attendance for the university of north texas?",
    "question_th": "จำนวนนักศึกษาที่เข้าเรียนในมหาวิทยาลัย 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_en": "What is the mascot for texas tech university?",
    "question_th": "มาสคอตของมหาวิทยาลัยเทคโนโลยีเท็กซัสคืออะไร?",
    "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_en": "What is the total enrollment for private/ disciples of christ?",
    "question_th": "การลงทะเบียนส่วนตัว/สาวกของพระคริสต์รวมเป็นเท่าใด?",
    "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_en": "How many mascotts are there for college station, texas",
    "question_th": "มีมาสคอตกี่ตัวสำหรับคอลเลจสเตชั่น รัฐเท็กซัส",
    "context": "CREATE TABLE table_28243691_1 (team_nickname VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT MAX(enrollment) FROM table_28243691_1 WHERE founded = 1923",
    "question_en": "List the highest number of students in attendance for the institution that started in 1923.",
    "question_th": "รายชื่อนักศึกษาที่เข้าเรียนมากที่สุดสำหรับสถาบันที่เริ่มในปี 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_en": "How many next in lines had heirs of Archduke Karl?",
    "question_th": "ทายาทของอาร์คดยุคคาร์ลมีกี่บรรทัดต่อไป?",
    "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_en": "Name the team that has a song writer named larry spokes.",
    "question_th": "ตั้งชื่อทีมที่มีคนแต่งเพลงชื่อ แลร์รี่ ซี่",
    "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_en": "How man teams have a writer named harry angus?",
    "question_th": "ทีมมนุษย์มีนักเขียนชื่อแฮรี่ แองกัสได้ยังไง?",
    "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_en": "Name the team anthem that was written by quentin eyers and les kaczmarek.",
    "question_th": "ตั้งชื่อเพลงประจำทีมที่เขียนโดย Quentin Eyers และ 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_en": "How many team songs does fremantle have?",
    "question_th": "ฟรีแมนเทิลมีเพลงของทีมกี่เพลง?",
    "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_en": "What is the name of the team song written by ken walther?",
    "question_th": "เพลงประจำทีมที่แต่งโดยเคน วอลเธอร์ชื่อเพลงอะไร",
    "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_en": "In how many different years was the team nicknamed Comets founded?",
    "question_th": "ทีมนี้มีชื่อเล่นว่า Comets ก่อตั้งขึ้นในเวลากี่ปี?",
    "context": "CREATE TABLE table_28243691_2 (founded VARCHAR, team_nickname VARCHAR)"
  },
  {
    "answer": "SELECT team_nickname FROM table_28243691_2 WHERE enrollment = 40747",
    "question_en": "What's the nickname of the team with enrollment of 40747?",
    "question_th": "ชื่อเล่นของทีมที่ลงทะเบียนคือ 40747 คืออะไร?",
    "context": "CREATE TABLE table_28243691_2 (team_nickname VARCHAR, enrollment VARCHAR)"
  },
  {
    "answer": "SELECT institution FROM table_28243691_2 WHERE location = \"Huntsville, Texas\"",
    "question_en": "What school is located in Huntsville, Texas?",
    "question_th": "โรงเรียนใดตั้งอยู่ใน Huntsville, Texas?",
    "context": "CREATE TABLE table_28243691_2 (institution VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT enrollment FROM table_28243691_2 WHERE team_nickname = \"Comets\"",
    "question_en": "How many students are enrolled in the team nicknamed Comets?",
    "question_th": "มีนักเรียนกี่คนที่ลงทะเบียนในทีมชื่อเล่น 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_en": "Name the number of tenants for russia at the saransk stadium",
    "question_th": "ระบุจำนวนผู้เช่าของรัสเซียที่สนามกีฬาซารานสค์",
    "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_en": "Name the country for lusail national stadium",
    "question_th": "ตั้งชื่อประเทศสำหรับสนามกีฬาแห่งชาติลูเซล",
    "context": "CREATE TABLE table_28281704_1 (country VARCHAR, stadium VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_28281704_1 WHERE stadium = \"Los Angeles stadium\"",
    "question_en": "Name the city for los angeles stadium",
    "question_th": "ตั้งชื่อเมืองสำหรับสนามกีฬาลอสแอนเจลิส",
    "context": "CREATE TABLE table_28281704_1 (city VARCHAR, stadium VARCHAR)"
  },
  {
    "answer": "SELECT stadium FROM table_28281704_1 WHERE city = \"Nizhny Novgorod\"",
    "question_en": "Name the stadium for nizhny novgorod",
    "question_th": "ตั้งชื่อสนามกีฬาสำหรับ Nizhny Novgorod",
    "context": "CREATE TABLE table_28281704_1 (stadium VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(country) FROM table_28281704_1 WHERE city = \"Athens\"",
    "question_en": "Name the country for athens",
    "question_th": "ตั้งชื่อประเทศสำหรับเอเธนส์",
    "context": "CREATE TABLE table_28281704_1 (country VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT date_aired FROM table_28283535_4 WHERE episode = \"1.13\"",
    "question_en": "When did the episode 1.13 air for the first time?",
    "question_th": "ตอนที่ 1.13 ออกอากาศครั้งแรกเมื่อไหร่?",
    "context": "CREATE TABLE table_28283535_4 (date_aired VARCHAR, episode VARCHAR)"
  },
  {
    "answer": "SELECT weekly_rank FROM table_28283535_4 WHERE episode = \"1.03\"",
    "question_en": "What's the weekly rank of episode 1.03?",
    "question_th": "ตอนที่ 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_en": "What is the rating of episode 1.04?",
    "question_th": "เรตติ้งของตอนที่ 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_en": "How many items are listed under caps when burnley is the club team?",
    "question_th": "มีกี่รายการที่อยู่ภายใต้แคปเมื่อเบิร์นลีย์เป็นทีมสโมสร?",
    "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_en": "What club did the championship player come from who had 10 goals?",
    "question_th": "นักเตะแชมป์มาจากสโมสรไหนที่ยิงได้ 10 ประตู?",
    "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_en": "How many goals did the player from Ipswich town score?",
    "question_th": "นักเตะจากอิปสวิชทาวน์ทำประตูได้กี่ประตู?",
    "context": "CREATE TABLE table_28286776_12 (goal_s_ INTEGER, club_s_ VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_28286776_50 WHERE cap_s_ = 16",
    "question_en": "When 16 is the cap who is the player?",
    "question_th": "เมื่ออายุ 16 แคปใครคือผู้เล่น?",
    "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_en": "When 2010 v australia is the interantional debut what is the club?",
    "question_th": "เมื่อเกมปะทะออสเตรเลียปี 2010 เป็นนัดประเดิมสนามระหว่างทีมชาติ สโมสรคืออะไร?",
    "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_en": "When winston reid category:articles with hcards is the player what is the club?",
    "question_th": "เมื่อ winston reid category:articles with hcards คือผู้เล่น สโมสรคืออะไร?",
    "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_en": "When tommy smith category:articles with hcards is the player and 1 is the goal how many cap(s) are there?",
    "question_th": "เมื่อ Tommy Smith category:articles with hcards เป็นผู้เล่น และ 1 คือเป้าหมาย มีกี่ cap(s)?",
    "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_en": "When  rory fallon category:articles with hcards is the player when is the international debut?",
    "question_th": "เมื่อ Rory Fallon Category:บทความที่มี hcards เป็นผู้เล่น จะเปิดตัวในระดับนานาชาติเมื่อใด",
    "context": "CREATE TABLE table_28286776_50 (international_debut VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_2828803_1 WHERE written_by = \"Nick Thiel\"",
    "question_en": "What is th title of the episode written by Nick Thiel?",
    "question_th": "ตอนที่เขียนโดย 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_en": "How many million u.s. viewers watched the episode with a production code of 2t7004?",
    "question_th": "ผู้ชมของเราดูตอนนี้ด้วยรหัสการผลิต 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_en": "What is the name of the episode that was directed by Dennis Smith?",
    "question_th": "ตอนที่กำกับโดยเดนนิส สมิธชื่ออะไร",
    "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_en": "How many site entries are there at 3:30pm and the visiting team is coastal carolina?",
    "question_th": "เวลา 15.30 น. มีผู้เข้าไซต์ได้กี่รายการ และทีมเยือนคือโคสต์แคโรไลนา",
    "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_en": "What is the result when the visiting team is syracuse?",
    "question_th": "ผลเป็นอย่างไรเมื่อทีมเยือนเป็นซีราคิวส์?",
    "context": "CREATE TABLE table_28298589_2 (result VARCHAR, visiting_team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(stage) FROM table_28298471_14 WHERE winner = \"Svein Tuft\"",
    "question_en": "When svein tuft is the winner what is the highest stage?",
    "question_th": "เมื่อสวีนทัฟท์เป็นผู้ชนะ สเตจสูงสุดคืออะไร?",
    "context": "CREATE TABLE table_28298471_14 (stage INTEGER, winner VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(stage) FROM table_28298471_14 WHERE winner = \"Svein Tuft\"",
    "question_en": "when svein tuft is the winner how many stages are there?",
    "question_th": "เมื่อสเวนทัฟต์เป็นผู้ชนะ มีกี่ด่าน?",
    "context": "CREATE TABLE table_28298471_14 (stage VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT team_classification FROM table_28298471_14 WHERE winner = \"Hayden Roulston\"",
    "question_en": "when hayden roulston is the winner what is the team classification?",
    "question_th": "เมื่อเฮย์เดน โรล์สตันเป็นผู้ชนะ การแบ่งประเภททีมเป็นอย่างไร?",
    "context": "CREATE TABLE table_28298471_14 (team_classification VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT stage FROM table_28298471_14 WHERE mountains_classification = \"Michael Reihs\"",
    "question_en": "When michael reihs is the mountains classification what is the stage?",
    "question_th": "เมื่อ michael reihs เป็นประเภทภูเขา เวทีคืออะไร?",
    "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_en": "When michael van stayen is the points classification what is the team classification?",
    "question_th": "เมื่อไมเคิล ฟาน สเตย์นอยู่ในอันดับคะแนน การแบ่งประเภททีมคืออะไร?",
    "context": "CREATE TABLE table_28298471_14 (team_classification VARCHAR, points_classification VARCHAR)"
  },
  {
    "answer": "SELECT stage FROM table_28298471_14 WHERE winner = \"Hayden Roulston\"",
    "question_en": "When hayden roulston is the winner what is the stage?",
    "question_th": "เมื่อเฮย์เดน โรล์สตันเป็นผู้ชนะ เวทีจะเป็นอย่างไร?",
    "context": "CREATE TABLE table_28298471_14 (stage VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_28298589_4 WHERE visiting_team = \"Texas Southern\"",
    "question_en": "What date was the game where Texas Southern was the visiting team?",
    "question_th": "เกมที่ Texas Southern เป็นทีมเยือนคือวันไหน?",
    "context": "CREATE TABLE table_28298589_4 (date VARCHAR, visiting_team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(broadcast) FROM table_28298589_4 WHERE home_team = \"Connecticut\"",
    "question_en": "How many Connecticut home games were broadcast?",
    "question_th": "มีการถ่ายทอดเกมในบ้านของคอนเนตทิคัตกี่เกม?",
    "context": "CREATE TABLE table_28298589_4 (broadcast VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT site FROM table_28298589_4 WHERE home_team = \"Pittsburgh\"",
    "question_en": "In what facility was Pittsburgh's home game played?",
    "question_th": "เกมเหย้าของพิตต์สเบิร์กเล่นในสถานที่ใด",
    "context": "CREATE TABLE table_28298589_4 (site VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_28298589_4 WHERE home_team = \"Washington\"",
    "question_en": "What was the final score of Washington's home game?",
    "question_th": "คะแนนสุดท้ายของเกมเหย้าของวอชิงตันคือเท่าไร?",
    "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_en": "Where is the team that has a stadium capable of a capacity of 10,517 5,006 located?",
    "question_th": "ทีมที่มีสนามจุได้ 10,517 5,006 ตั้งอยู่ที่ไหน?",
    "context": "CREATE TABLE table_283203_1 (location VARCHAR, capacity VARCHAR)"
  },
  {
    "answer": "SELECT home_venue FROM table_283203_1 WHERE founded = 1993",
    "question_en": "Where is the home venue of the team founded in 1993?",
    "question_th": "สนามเหย้าของทีมก่อตั้งในปี 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_en": "How long has the team who owns North Shore Events Centre Vector Arena been active?",
    "question_th": "ทีมที่เป็นเจ้าของ North Shore Events Center Vector Arena ใช้งานมานานแค่ไหนแล้ว?",
    "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_en": "What is the capacity for the Home Venue of the New Zealand Breakers club?",
    "question_th": "Home Venue ของ 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_en": "How many episodes were directed by Jeff Melman and 1.21million viewers?",
    "question_th": "Jeff Melman กำกับกี่ตอนและมีผู้ชม 1.21 ล้านคน",
    "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_en": "What air date had 1.01 million U.S. viewers?",
    "question_th": "วันไหนที่ออกอากาศมีผู้ชม 1.01 ล้านคนในสหรัฐฯ?",
    "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_en": "Name the aircraft type for  furstenau/vorden",
    "question_th": "ตั้งชื่อประเภทเครื่องบินสำหรับ 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_en": "Name the parent unit for ludwig franzisket",
    "question_th": "ตั้งชื่อหน่วยหลักสำหรับ 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_en": "Name the aircraft type for jagdgeschwader 6",
    "question_th": "ตั้งชื่อประเภทเครื่องบินสำหรับ 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_en": "Name the aircraft type for  jagdgeschwader 26",
    "question_th": "ตั้งชื่อประเภทเครื่องบินสำหรับ 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_en": "Name the parent unit for josef priller",
    "question_th": "ตั้งชื่อหน่วยหลักสำหรับ 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_en": "Name the production code for number 8",
    "question_th": "ตั้งชื่อรหัสการผลิตหมายเลข 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_en": "Name the least number for xle02007",
    "question_th": "ตั้งชื่อหมายเลขที่น้อยที่สุดสำหรับ 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_en": "Who wrote the episode with the code xle05012?",
    "question_th": "ใครเป็นคนเขียนตอนด้วยรหัส 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_en": "what are the numbers of episodes that had 0.79 million US views?",
    "question_th": "ยอดวิว 0.79 ล้าน US มีตอนกี่ตอนครับ?",
    "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_en": "What female fenced with a saber on the team that had an average fencer rank of 3.5?",
    "question_th": "ผู้หญิงคนไหนที่ถือดาบในทีมที่มีอันดับนักฟันดาบเฉลี่ย 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_en": "What team had an average fencer rank of 1.33?",
    "question_th": "ทีมใดมีอันดับนักฟันดาบเฉลี่ย 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_en": "What is the name of the corporation that incorporated on october 15, 1955?",
    "question_th": "บริษัทที่จัดตั้งขึ้นเมื่อวันที่ 15 ตุลาคม พ.ศ.2498 ชื่ออะไร",
    "context": "CREATE TABLE table_28367242_1 (corporate_name VARCHAR, incorporation_date__city_ VARCHAR)"
  },
  {
    "answer": "SELECT area__km²_ FROM table_28367242_1 WHERE corporate_name = \"Powell River, The Corporation of the City of\"",
    "question_en": "What is the area of the corporation named the powell river, the corporation of the city of?",
    "question_th": "พื้นที่ของบริษัทชื่อแม่น้ำพาวเวลล์ ซึ่งเป็นบริษัทของเมืองนั้นอยู่ที่ใด",
    "context": "CREATE TABLE table_28367242_1 (area__km²_ VARCHAR, corporate_name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(area__km²_) FROM table_28367242_1 WHERE name = \"Armstrong\"",
    "question_en": "How many Area's are there for Armstrong?",
    "question_th": "อาร์มสตรองมีกี่แอเรีย?",
    "context": "CREATE TABLE table_28367242_1 (area__km²_ VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_28367242_1 WHERE incorporation_date__city_ = \"July 16, 1860\"",
    "question_en": "What is the name of the city which incorporated on july 16, 1860?",
    "question_th": "เมืองที่ก่อตั้งเมื่อวันที่ 16 กรกฎาคม พ.ศ. 2403 ชื่อเมืองอะไร",
    "context": "CREATE TABLE table_28367242_1 (name VARCHAR, incorporation_date__city_ VARCHAR)"
  },
  {
    "answer": "SELECT corporate_name FROM table_28367242_1 WHERE area__km²_ = \"15.63\"",
    "question_en": "What is the name of the corporation with an area of 15.63 km?",
    "question_th": "ห้างหุ้นส่วนจำกัด พื้นที่ 15.63 กม. ชื่อว่าอะไร?",
    "context": "CREATE TABLE table_28367242_1 (corporate_name VARCHAR, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(area__km²_) FROM table_28367242_1 WHERE corporate_name = \"Fort St. John, City of\"",
    "question_en": "How many areas are there for the corporation named fort st. john, city of?",
    "question_th": "บริษัทชื่อป้อมเซนต์มีพื้นที่กี่แห่ง จอห์น เมืองแห่ง?",
    "context": "CREATE TABLE table_28367242_1 (area__km²_ VARCHAR, corporate_name VARCHAR)"
  },
  {
    "answer": "SELECT emma_bunton FROM table_28352386_1 WHERE total = \"22\"",
    "question_en": "What was Emma Bunton's score for the performance with a total score of 22?",
    "question_th": "คะแนนของเอ็มม่า บันตันในการแสดงเป็นเท่าใด โดยมีคะแนนรวม 22 คะแนน",
    "context": "CREATE TABLE table_28352386_1 (emma_bunton VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT total FROM table_28352386_1 WHERE guest_judge = \"10\"",
    "question_en": "What was the total score when the guest judge gave a score of 10?",
    "question_th": "คะแนนรวมเมื่อกรรมการรับเชิญให้คะแนน 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_en": "what is the number of  the episode in the season whose production code is 101? ",
    "question_th": " รหัสการผลิต 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_en": "During what conference is North Carolina listed as the tournament winner?",
    "question_th": "ในระหว่างการประชุมใดที่นอร์ธแคโรไลนาได้รับเลือกให้เป็นผู้ชนะการแข่งขัน",
    "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_en": "During the Big Seven Conference which team was the regular season winner?",
    "question_th": "ในระหว่างการประชุม Big Seven ทีมใดเป็นผู้ชนะในฤดูกาลปกติ?",
    "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_en": "What tournament venue is listed during the Missouri Valley Conference?",
    "question_th": "สถานที่จัดการแข่งขันใดที่ระบุไว้ในระหว่างการประชุม Missouri Valley?",
    "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_en": "During the Mid-American Conference who is listed as the tournament winner?",
    "question_th": "ในระหว่างการประชุม Mid-American Conference ใครคือผู้ชนะการแข่งขัน?",
    "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_en": "When Yale is listed as the regular season winner, what tournament venue is given?",
    "question_th": "เมื่อเยลถูกระบุให้เป็นผู้ชนะในฤดูกาลปกติ จะมีการจัดสถานที่จัดการแข่งขันที่ใด",
    "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_en": "How many entries for conference tournament are listed when Texas Western is the regular season winner?",
    "question_th": "มีรายการเข้าร่วมการแข่งขันการประชุมกี่รายการเมื่อ Texas Western เป็นผู้ชนะในฤดูกาลปกติ",
    "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_en": "Which team drafted the player from the HC Lada Togliatti (Russia)?",
    "question_th": "ทีมไหนดราฟท์นักเตะจาก HC Lada Togliatti (รัสเซีย)?",
    "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_en": "who is the person that plays left wing and is from canada that plays on the st. louis blues",
    "question_th": "ผู้ที่เล่นปีกซ้ายและมาจากแคนาดาที่เล่นในตำแหน่งปีกซ้าย หลุยส์ บลูส์",
    "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_en": "what is the overall number of chosen ideas where the person is scott parker",
    "question_th": "จำนวนแนวคิดที่เลือกโดยรวมคือเท่าใด โดยที่บุคคลนั้นคือสก็อตต์ ปาร์กเกอร์",
    "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čín (Slovakia)\"",
    "question_en": "what is the number of the chosen club where the hc dukla trenčín (slovakia) is from",
    "question_th": "หมายเลขของสโมสรที่เลือกซึ่ง hc dukla trenčín (สโลวาเกีย) มาจากหมายเลขใด",
    "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_en": "How many players were drafted by the Edmonton Oilers?",
    "question_th": "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_en": "Who was drafted by the Washington Capitals?",
    "question_th": "ใครถูกร่างโดย 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_en": "Which team drafted Travis Brigley?",
    "question_th": "ทีมไหนดราฟท์ 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_en": "What is the minimum pick of a centre from the Czech Republic?",
    "question_th": "การเลือกศูนย์ขั้นต่ำจากสาธารณรัฐเช็กคือเท่าไร?",
    "context": "CREATE TABLE table_2840500_2 (pick INTEGER, position VARCHAR, nationality VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_28461589_2 WHERE passes = 223",
    "question_en": "Which player made exactly 223 passes?",
    "question_th": "ผู้เล่นคนไหนจ่ายบอลได้ 223 ครั้งพอดี?",
    "context": "CREATE TABLE table_28461589_2 (player VARCHAR, passes VARCHAR)"
  },
  {
    "answer": "SELECT MIN(mins_played) FROM table_28461589_2 WHERE good_passes = 638",
    "question_en": "What is the fewest minutes played for the player with exactly 638 good passes?",
    "question_th": "นาทีที่น้อยที่สุดที่เล่นสำหรับผู้เล่นที่มีการจ่ายบอลดี 638 ครั้งคือเท่าไร?",
    "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_en": "What is the most number of assists for players with exactly 25 games played?",
    "question_th": "จำนวนแอสซิสต์มากที่สุดสำหรับผู้เล่นโดยลงเล่น 25 เกมคือเท่าใด?",
    "context": "CREATE TABLE table_28461589_2 (assists INTEGER, games_played VARCHAR)"
  },
  {
    "answer": "SELECT MAX(passes) FROM table_28461589_2 WHERE starting = 34",
    "question_en": "What is the largest number of passes for players starting exactly 34 games?",
    "question_th": "จำนวนการส่งบอลที่ใหญ่ที่สุดสำหรับผู้เล่นที่เริ่มเกม 34 เกมคือเท่าใด?",
    "context": "CREATE TABLE table_28461589_2 (passes INTEGER, starting VARCHAR)"
  },
  {
    "answer": "SELECT nickname FROM table_28436909_4 WHERE letters = \"ΚΑΘ\"",
    "question_en": "When καθ are the letters what is the nickname?",
    "question_th": "เมื่อ καθ เป็นตัวอักษร ชื่อเล่นคืออะไร?",
    "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_en": "When 1873-12-25 is the founding date how many organizations are there?",
    "question_th": "เมื่อ พ.ศ. 2416-2568 เป็นวันก่อตั้ง มีกี่องค์กร?",
    "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_en": "When 1872-10-10 is the founding date what are the canadian chapters?",
    "question_th": "เมื่อปี 1872-10-10 เป็นวันสถาปนา บทของแคนาดาคืออะไร?",
    "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_en": "When 1 active, 1 inactive is the canadian chapters how many founding dates are there?",
    "question_th": "เมื่อ 1 ใช้งานอยู่ 1 ไม่ทำงานคือบทของแคนาดา มีวันที่ก่อตั้งกี่วัน?",
    "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_en": "when was the ending time where the enemy met in the iron bowl",
    "question_th": "เมื่อใดคือวาระสุดท้ายที่ศัตรูมาพบกันในชามเหล็ก",
    "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_en": "what was the lowest number that auburn triumphed where the activities took part was 92",
    "question_th": "จำนวนต่ำสุดที่ออเบิร์นได้รับชัยชนะเมื่อเข้าร่วมกิจกรรมคือ 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_en": "what are all the adversary where the beginning is 1899",
    "question_th": "ศัตรูทั้งหมดคืออะไรที่จุดเริ่มต้นคือปี 1899",
    "context": "CREATE TABLE table_2846320_4 (rival VARCHAR, first_meeting VARCHAR)"
  },
  {
    "answer": "SELECT streak FROM table_2846320_4 WHERE last_meeting = 2009",
    "question_en": "what is the length where the time is 2009",
    "question_th": "นานแค่ไหนซึ่งเวลาคือปี 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_en": "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?",
    "question_th": "ระยะทางในรอบที่ผู้สนับสนุนคือแชมป์เปี้ยนคาร์เวิลด์ซีรีส์ (กรังด์ปรีซ์ของคลีฟแลนด์) และรถที่ชนะ tc คือ ปิแอร์ ไคลนูบิง คือเท่าใด",
    "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_en": "What is the earliest round where the gt winning car is max angelelli?",
    "question_th": "รอบแรกสุดที่รถที่ชนะ GT คือแม็กซ์ แองเจลลีคือรอบใด",
    "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_en": "Who was supporting in round 1 where the gt winning car was dodge viper?",
    "question_th": "ใครเชียร์ในรอบที่ 1 ซึ่งรถที่ชนะ gt หลบไวเปอร์อยู่?",
    "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_en": "Who was supporting in the round when the gt winning car was dino crescentini?",
    "question_th": "ใครเป็นผู้เชียร์ในรอบนั้นเมื่อรถที่ชนะ gt คือ ไดโน เครสเซนตินี?",
    "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_en": "Who wrote the episode with production code 2j5568?",
    "question_th": "ใครเป็นคนเขียนตอนที่มีรหัสการผลิต 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_en": "Who directed the episode watched by 2.01 million US viewers?",
    "question_th": "ใครเป็นผู้กำกับตอนนี้ที่มีผู้ชม 2.01 ล้านคนในสหรัฐฯ",
    "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_en": "How many divisions in bowling ? ",
    "question_th": " โบว์ลิ่งมีกี่แผนก?",
    "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_en": "How many first tournaments were winter sports with exactly 1 division?",
    "question_th": "กีฬาฤดูหนาวมีทัวร์นาเมนต์แรกกี่รายการที่มี 1 ดิวิชั่นพอดี?",
    "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_en": "Where was the 2011-2012 soccer state tournament held?",
    "question_th": "การแข่งขันฟุตบอลรัฐประจำปี 2554-2555 จัดขึ้นที่ไหน?",
    "context": "CREATE TABLE table_2849652_2 (sport VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(1 AS st_tournament) FROM table_2849652_2 WHERE sport = \"Bowling\"",
    "question_en": "How many first tournaments are associated with bowling?",
    "question_th": "มีทัวร์นาเมนท์แรกที่เกี่ยวข้องกับโบว์ลิ่งกี่รายการ?",
    "context": "CREATE TABLE table_2849652_2 (sport VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(before) FROM table_28498999_3 WHERE player = \"Vaughn Taylor\"",
    "question_en": "How many times is the player vaughn taylor listed?",
    "question_th": "มีรายชื่อผู้เล่น vaughn taylor กี่ครั้ง?",
    "context": "CREATE TABLE table_28498999_3 (before VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MIN(after) FROM table_28498999_3 WHERE player = \"Adam Scott\"",
    "question_en": "What is the lowest after when the player is adam scott?",
    "question_th": "ต่ำสุดหลังจากเมื่อนักเตะคือ อดัม สก็อตต์ คืออะไร?",
    "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_en": "What is the country for the score 72-63-71-68=274?",
    "question_th": "คะแนน 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_en": "What is the after for the player kevin streelman?",
    "question_th": "อะไรคือสิ่งที่ตามมาสำหรับนักเตะเควิน สตรีลแมน?",
    "context": "CREATE TABLE table_28498999_3 (after VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_28498999_3 WHERE after = 33",
    "question_en": "What is the to par when the after is 33?",
    "question_th": "พาร์เมื่อหลังอายุ 33 คืออะไร?",
    "context": "CREATE TABLE table_28498999_3 (to_par VARCHAR, after VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_28498999_4 WHERE player = \"Charley Hoffman\"",
    "question_en": "What country is charley hoffman from?",
    "question_th": "ชาร์ลี ฮอฟฟ์แมน มาจากประเทศใด",
    "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_en": "What is the before for the score of 63-67-66-71=267?",
    "question_th": "คะแนน 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_en": "What is the to par for the winnings of 232500?",
    "question_th": "ค่าพาร์สำหรับการชนะรางวัล 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_en": "What were the winnings for the score of 66-64-67-71=268?",
    "question_th": "คะแนน 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_en": "What is the after for geoff ogilvy?",
    "question_th": "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_en": "what is the most number where the person is luke donald",
    "question_th": "หมายเลขใดมากที่สุดที่บุคคลนั้นคือลุค โดนัลด์",
    "context": "CREATE TABLE table_28498999_6 (reset_points INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_28498999_6 WHERE player = \"Luke Donald\"",
    "question_en": "what is the place where the person is luke donald",
    "question_th": "ลุค โดนัลด์ อยู่ที่ไหน",
    "context": "CREATE TABLE table_28498999_6 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_28498999_6 WHERE points = 2343",
    "question_en": "what is the person there the numbers is 2343",
    "question_th": "คนที่นั่นคืออะไร ตัวเลข 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_en": "what is the number of pieces where the person is charley hoffman",
    "question_th": "จำนวนชิ้นที่คนคนนั้นคือชาร์ลี ฮอฟแมนเป็นจำนวนเท่าใด",
    "context": "CREATE TABLE table_28498999_6 (reset_points VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(player) FROM table_28498999_6 WHERE points = 3015",
    "question_en": "what is the number of people where the pieces is 3015",
    "question_th": "3015ชิ้นมีคนอยู่กี่ชิ้นคะ",
    "context": "CREATE TABLE table_28498999_6 (player VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT nhl_team FROM table_2850912_10 WHERE player = \"Ron Annear\"",
    "question_en": "Which team drafted Ron Annear? ",
    "question_th": " ทีมไหนดราฟต์รอน แอนเนียร์?",
    "context": "CREATE TABLE table_2850912_10 (nhl_team VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT nhl_team FROM table_2850912_10 WHERE player = \"Joakim Persson\"",
    "question_en": "Which team drafted Joakim Persson?",
    "question_th": "ทีมไหนดราฟท์ 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_en": "Which team drafted a player from HC Slavia Praha (Czechoslovakia)? ",
    "question_th": " ทีมใดได้ดราฟท์นักเตะจาก HC Slavia Praha (เชโกสโลวาเกีย)?",
    "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_en": "Which player was drafted by the New York Rangers? ",
    "question_th": " นักเตะคนไหนถูกดราฟต์โดย 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_en": "Which team drafted Michael Orn?",
    "question_th": "ทีมไหนดราฟท์ ไมเคิล อร?",
    "context": "CREATE TABLE table_2850912_10 (nhl_team VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_2850912_10 WHERE nhl_team = \"Washington Capitals\"",
    "question_en": "What position was the player who was drafted by the Washington Capitals? ",
    "question_th": " ผู้เล่นที่ถูกร่างโดย 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_en": "What is Timo Lehkonen's highest pick number?",
    "question_th": "หมายเลขเลือกสูงสุดของ Timo Lehkonen คืออะไร?",
    "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_en": "What college/junior/club team played right wing position with NHL team Chicago Black Hawks?",
    "question_th": "ทีมวิทยาลัย/จูเนียร์/สโมสรใดเล่นตำแหน่งปีกขวากับทีม NHL 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_en": "How many college/junior/club teams are from Sweden?",
    "question_th": "ทีมวิทยาลัย/จูเนียร์/สโมสรจากสวีเดนมีกี่ทีม?",
    "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_en": "What is Robert Dirk's nationality?",
    "question_th": "โรเบิร์ต เดิร์กมีสัญชาติอะไร",
    "context": "CREATE TABLE table_2850912_3 (nationality VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_2850912_3 WHERE player = \"Trent Yawney\"",
    "question_en": "What country is Trent Yawney from?",
    "question_th": "เทรนต์ ยอว์นีย์ มาจากประเทศอะไร",
    "context": "CREATE TABLE table_2850912_3 (nationality VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(pick__number) FROM table_2850912_3 WHERE player = \"Michal Pivonka\"",
    "question_en": "What is Michal Pivonka's pick number?",
    "question_th": "หมายเลขเลือกของ Michal Pivonka คืออะไร?",
    "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_en": "Which team did David McLay play for?",
    "question_th": "เดวิด แม็คเลย์ เล่นให้ทีมไหน?",
    "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_en": "What is Robert Dirk's team?",
    "question_th": "ทีมของโรเบิร์ต เดิร์ก คืออะไร?",
    "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_en": "What is Graeme Bonar's lowest pick number?",
    "question_th": "หมายเลขเลือกต่ำสุดของ Graeme Bonar คืออะไร?",
    "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_en": "where did glenn greenough come from",
    "question_th": "เกล็นน์ กรีนาฟมาจากไหน",
    "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_en": "how many parts does detroit red wings person urban nordin play",
    "question_th": "ดีทรอยต์ เรด วิงส์ คนเมืองนอร์ดินเล่นได้กี่ส่วน",
    "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_en": "What is the gender of the Roman Catholic school is AL4?",
    "question_th": "โรงเรียนนิกายโรมันคาทอลิก 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_en": "What is the website of the school affiliated with the Church of England?",
    "question_th": "เว็บไซต์ของโรงเรียนในเครือ 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_en": "What nationality is listed when the college/junior/club team is oshawa generals (ohl)?",
    "question_th": "สัญชาติใดจะถูกระบุไว้เมื่อทีมวิทยาลัย/จูเนียร์/สโมสรเป็นนายพลโอชาวา (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_en": "What is the name of the player when the college/junior/club team is new westminster bruins (whl)?",
    "question_th": "ชื่อของผู้เล่นเมื่อทีมวิทยาลัย/จูเนียร์/สโมสรคือทีมนิวเวสต์มินสเตอร์บรูอินส์ (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_en": "How many college/junior/club teams are ther when nhl team is edmonton oilers?",
    "question_th": "มีทีมวิทยาลัย/จูเนียร์/คลับกี่ทีมเมื่อทีม nhl เป็นทีม oilers ของ Edmonton",
    "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_en": "What is the postion when the nhl team is los angeles kings?",
    "question_th": "ตำแหน่งอะไรเมื่อทีม nhl คือ 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_en": "How many nhl teams are listed when college/junior/club team is listed as newton north high school (ushs-ma)?",
    "question_th": "มีทีม nhl จำนวนกี่ทีมที่ถูกระบุเมื่อทีมวิทยาลัย/จูเนียร์/สโมสรถูกระบุว่าเป็น 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_en": "What date did the episode directed by Victor Cook and Written by Brat Jennett air in the U.S.?",
    "question_th": "ตอนที่กำกับโดย Victor Cook และเขียนโดย Brat Jennett ออกอากาศในสหรัฐอเมริกาวันที่เท่าไร",
    "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_en": "What date did the episode written by Mitch Watson and directed by Curt Geda originally air in the U.S.?",
    "question_th": "ตอนที่เขียนโดย Mitch Watson และกำกับโดย Curt Geda ออกอากาศครั้งแรกในสหรัฐอเมริกาเมื่อใด",
    "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_en": "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?",
    "question_th": "เมื่อ อัลเบร์โต้ คอนทาดอร์ คันสตานซิน ซิฟต์ซอฟ เป็นประเภททั่วไป และ อเลสซานโดร เปตาคกี้ เป็นประเภทคะแนนในเวลาเดียวกัน ขณะที่ มาร์ค คาเวนดิช เป็นผู้ชนะ ใครเป็นประเภทภูเขา?",
    "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_en": "Who was the young rider classification when Alessandro Petacchi won?",
    "question_th": "ใครคือนักแข่งรุ่นเยาว์เมื่อ Alessandro Petacchi ชนะ?",
    "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_en": "Who was the young rider classification when Diego Ulissi won? ",
    "question_th": " ใครคือนักบิดรุ่นเยาว์เมื่อดิเอโก อูลิสซีชนะ?",
    "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_en": "What is the name of the young rider classification when Paolo Tiralongo won?",
    "question_th": "ประเภทนักแข่งรุ่นเยาว์ชื่ออะไรเมื่อเปาโล ติราลองโก ชนะ?",
    "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_en": "What's the version in the 1.0.4 release?",
    "question_th": "เวอร์ชัน 1.0.4 คืออะไร?",
    "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_en": "What's the release date in the 1.1.10 release?",
    "question_th": "วันที่วางจำหน่ายในรุ่น 1.1.10 คือวันที่เท่าไร?",
    "context": "CREATE TABLE table_28540539_2 (release VARCHAR)"
  },
  {
    "answer": "SELECT version FROM table_28540539_2 WHERE release = \"1.0.12\"",
    "question_en": "What's the version of the 1.0.12 release?",
    "question_th": "เวอร์ชัน 1.0.12 เวอร์ชันคืออะไร?",
    "context": "CREATE TABLE table_28540539_2 (version VARCHAR, release VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(version) FROM table_28540539_2 WHERE release = \"1.0.9\"",
    "question_en": "What's the number of the 1.0.9 release version?",
    "question_th": "เวอร์ชันวางจำหน่าย 1.0.9 มีจำนวนเท่าใด?",
    "context": "CREATE TABLE table_28540539_2 (version VARCHAR, release VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(version) FROM table_28540539_2 WHERE release = \"1.0.12\"",
    "question_en": "What's the number of the 1.0.12 release version?",
    "question_th": "เวอร์ชันวางจำหน่าย 1.0.12 มีจำนวนเท่าใด?",
    "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_en": "For how many series were there 11.84 million watchers?",
    "question_th": "มีผู้ชมรับชมถึง 11.84 ล้านคนกี่ซีรีส์?",
    "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_en": "What's the smallest season number?",
    "question_th": "หมายเลขฤดูกาลที่เล็กที่สุดคืออะไร?",
    "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_en": "Who wrote the episodes that were directed by Peter O'Fallon?",
    "question_th": "ใครเป็นผู้เขียนตอนที่กำกับโดย 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_en": "What was the latest episode number that Meredith Averill wrote?",
    "question_th": "หมายเลขตอนล่าสุดที่ Meredith Averill เขียนคือหมายเลขอะไร",
    "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_en": "What is the latest episode number that was directed by Tom Dicillo?",
    "question_th": "หมายเลขตอนล่าสุดที่กำกับโดย 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_en": "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?",
    "question_th": "เยอรมนีเข้าร่วมกี่ปี เมื่อทีมจากอิตาลีคือ Naples LL Naples และทีมจากอังกฤษคือ 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_en": "What was the team from Austria when the Netherlands sent Brunssum/Schinnen LL Brunssum and Belgium sent Shape and Waterloo LL Brussels?",
    "question_th": "ทีมจากออสเตรียทีมอะไรเมื่อเนเธอร์แลนด์ส่ง Brunssum/Schinnen LL Brunssum และเบลเยียมส่ง Shape และ Waterloo LL Brussel?",
    "context": "CREATE TABLE table_28562675_3 (austria VARCHAR, netherlands VARCHAR, belgium VARCHAR)"
  },
  {
    "answer": "SELECT MAX(matches) FROM table_28547332_4",
    "question_en": "What is the maximum number of matches in a game?",
    "question_th": "จำนวนการแข่งขันสูงสุดในเกมคือเท่าใด?",
    "context": "CREATE TABLE table_28547332_4 (matches INTEGER)"
  },
  {
    "answer": "SELECT MIN(highest_score) FROM table_28547332_4 WHERE average = \"9.88\"",
    "question_en": "What is the highest score in those games where the average is 9.88?",
    "question_th": "คะแนนสูงสุดในเกมเหล่านั้นที่ค่าเฉลี่ยคือ 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_en": "What digital channel corresponds to virtual channel 23.2?",
    "question_th": "ช่องดิจิทัลใดที่สอดคล้องกับช่องเสมือน 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_en": "What digital channel corresponds to virtual channel 5.2?",
    "question_th": "ช่องดิจิทัลใดที่สอดคล้องกับช่องเสมือน 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_en": "What network airs on virtual channel 23.1?",
    "question_th": "เครือข่ายใดออกอากาศทางช่องเสมือน 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_en": "How many networks run on virtual channel 23.4?",
    "question_th": "มีกี่เครือข่ายที่ทำงานบนช่องสัญญาณเสมือน 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_en": "What city licensed the broadcast on virtual channel 8.2?",
    "question_th": "เมืองใดที่ได้รับอนุญาตให้ออกอากาศทางช่องเสมือน 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_en": "What was the title of the episode with production code 2J5515?",
    "question_th": "ชื่อเรื่องของตอนที่มีรหัสการผลิต 2J5515 คืออะไร?",
    "context": "CREATE TABLE table_28582091_2 (title VARCHAR, production_code VARCHAR)"
  },
  {
    "answer": "SELECT chassis FROM table_28578594_1 WHERE driver = \"Ludwig Fischer\"",
    "question_en": "Name the chassis for ludwig fischer",
    "question_th": "ตั้งชื่อแชสซีสำหรับ ludwig fischer",
    "context": "CREATE TABLE table_28578594_1 (chassis VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT entrant FROM table_28578594_1 WHERE driver = \"Bruno Sterzi\"",
    "question_en": "Name the entrant for bruno sterzi",
    "question_th": "ตั้งชื่อผู้เข้าประกวดบรูโน สเตอร์ซี",
    "context": "CREATE TABLE table_28578594_1 (entrant VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT MIN(no) FROM table_28578594_1 WHERE driver = \"Nello Pagani\"",
    "question_en": "Name the least number for nello pagani",
    "question_th": "ตั้งชื่อตัวเลขที่น้อยที่สุดสำหรับเนลโล ปากานี",
    "context": "CREATE TABLE table_28578594_1 (no INTEGER, driver VARCHAR)"
  },
  {
    "answer": "SELECT MAX(consecutive_starts) FROM table_28606933_7 WHERE player = \"Jason Gildon\"",
    "question_en": "What is the largest number of consecutive starts for jason gildon?",
    "question_th": "จำนวนการออกสตาร์ทติดต่อกันมากที่สุดของเจสัน กิลดอนคือเท่าใด?",
    "context": "CREATE TABLE table_28606933_7 (consecutive_starts INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT teams FROM table_28606933_7 WHERE consecutive_starts = 120",
    "question_en": "What team(s) had 120 consecutive starts?",
    "question_th": "ทีมใดออกสตาร์ท 120 นัดติดต่อกัน?",
    "context": "CREATE TABLE table_28606933_7 (teams VARCHAR, consecutive_starts VARCHAR)"
  },
  {
    "answer": "SELECT period FROM table_28606933_7 WHERE position = \"Left inside linebacker\"",
    "question_en": "What period(s) featured a left inside linebacker?",
    "question_th": "ช่วงใดที่มีไลน์แบ็คเกอร์ฝั่งซ้ายอยู่ในทีม?",
    "context": "CREATE TABLE table_28606933_7 (period VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT MAX(total) FROM table_28606933_7 WHERE period = \"9/21/1975 – 12/16/1984\"",
    "question_en": "How many consecutive starts for the linebacker who played from 9/21/1975 – 12/16/1984?",
    "question_th": "ไลน์แบ็คเกอร์ที่ลงเล่นตั้งแต่ 9/21/1975 – 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_en": "What is the title of the episode written by Frank Military?",
    "question_th": "ตอนที่เขียนโดย 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_en": "How many seasons had 16.15 million viewers?",
    "question_th": "มีกี่ซีซั่นที่มีผู้ชม 16.15 ล้านคน?",
    "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_en": "What is air date of the episode directed by John P. Kousakis?",
    "question_th": "วันที่ออกอากาศของตอนที่กำกับโดย 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_en": "Who was the player when totals were 105-161?",
    "question_th": "นักเตะคนไหนเมื่อรวม 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_en": "How many items appear in the average column when the totals were 105-161?",
    "question_th": "มีกี่รายการปรากฏในคอลัมน์เฉลี่ยเมื่อผลรวมเป็น 105-161",
    "context": "CREATE TABLE table_28628309_6 (average VARCHAR, totals VARCHAR)"
  },
  {
    "answer": "SELECT totals FROM table_28628309_6 WHERE average = \"6.25\"",
    "question_en": "What were the totals when the average is 6.25?",
    "question_th": "เมื่อเฉลี่ยอยู่ที่ 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_en": "Who was the team when the category is field goal percentage?",
    "question_th": "เมื่อประเภทเป็นเปอร์เซ็นต์การยิงประตูคือทีมใด?",
    "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_en": "Name the election for the percent of popular vote being 4.48%",
    "question_th": "ระบุชื่อการเลือกตั้งด้วยคะแนนนิยมร้อยละ 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_en": "How many times was taiwan 3rd runner-up?",
    "question_th": "ไต้หวันรองอันดับ 3 กี่ครั้งแล้ว?",
    "context": "CREATE TABLE table_28634206_1 (country VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(miss_universe) FROM table_28634206_1 WHERE country = \"South Africa\"",
    "question_en": "How many miss universes did south africa have?",
    "question_th": "แอฟริกาใต้มีมิสยูนิเวิร์สกี่คน?",
    "context": "CREATE TABLE table_28634206_1 (miss_universe VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT MAX(total) FROM table_28634206_1 WHERE country = \"Russia\"",
    "question_en": "How many placements in total does russia have?",
    "question_th": "รัสเซียมีทั้งหมดกี่ตำแหน่ง?",
    "context": "CREATE TABLE table_28634206_1 (total INTEGER, country VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_28634206_1 WHERE miss_universe = \"6\"",
    "question_en": "Which country has had 6 miss universe's?",
    "question_th": "ประเทศไหนมี 6 นางงามจักรวาล?",
    "context": "CREATE TABLE table_28634206_1 (country VARCHAR, miss_universe VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_28634206_1 WHERE miss_universe = \"8\"",
    "question_en": "Which country has had 8 miss universes?",
    "question_th": "ประเทศใดมีมิสยูนิเวิร์สถึง 8 แห่ง?",
    "context": "CREATE TABLE table_28634206_1 (country VARCHAR, miss_universe VARCHAR)"
  },
  {
    "answer": "SELECT MIN(points) FROM table_2865020_5 WHERE average = \"1.412\"",
    "question_en": "What is the minimum number of points for teams averaging 1.412?",
    "question_th": "จำนวนคะแนนขั้นต่ำสำหรับทีมที่มีคะแนนเฉลี่ย 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_en": "What 2003-2004 values are associated with an average of 1.377?",
    "question_th": "ค่าใดในปี 2546-2547 ที่เกี่ยวข้องกับค่าเฉลี่ย 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_en": "How many millions of viewers are listed where the writer is Matthew Okumura?",
    "question_th": "มีผู้ชมกี่ล้านคนที่อยู่ในรายชื่อผู้เขียนคือ 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_en": "What is the U.S. air date when the U.S. viewers are 7.5 million?",
    "question_th": "ออกอากาศวันไหนที่คนดูอเมริกา 7.5 ล้านคน?",
    "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_en": "How many u.s. viewers  (million) have 6 as the #?",
    "question_th": "พวกเราผู้ชม (ล้านคน) มี 6 เป็น # กี่คน?",
    "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_en": "Who is the directed by when 2t6404 is the production code?",
    "question_th": "ใครกำกับเมื่อ 2t6404 เป็นรหัสการผลิต?",
    "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_en": "what is the number of the episode in the season that had 5.60 millions of north american spectors?",
    "question_th": "ซีซั่นที่มีผู้ชมอเมริกาเหนือ 5.60 ล้านคนมีตอนกี่ตอน?",
    "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_en": "who are the writers of the episode whose production code is 176206? ",
    "question_th": " ใครคือคนเขียนตอนที่มีรหัสการผลิตคือ 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_en": "What stadium does FK Rudar play in?",
    "question_th": "FK Rudar เล่นในสนามใด?",
    "context": "CREATE TABLE table_28668784_1 (stadium VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT city___town FROM table_28668784_1 WHERE stadium = \"Stadion Zlatica\"",
    "question_en": "What town holds Stadion Zlatica?",
    "question_th": "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_en": "What stadium does FK Jedinstvo play in?",
    "question_th": "FK Jedinstvo ลงเล่นในสนามใด?",
    "context": "CREATE TABLE table_28668784_1 (stadium VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT MIN(tor_fløysvik) FROM table_28677723_10 WHERE karianne_gulliksen = 6",
    "question_en": "What is listed in tor floysvik when karianne gulliksen is 6?",
    "question_th": "มีอะไรอยู่ใน tor floysvik เมื่อ Karianne Gulliksen อายุ 6 ขวบ",
    "context": "CREATE TABLE table_28677723_10 (tor_fløysvik INTEGER, karianne_gulliksen VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(music) FROM table_28677723_10 WHERE tor_fløysvik = 3",
    "question_en": "How many music entries are there when tor floysvik is 3?",
    "question_th": "มีเพลงกี่รายการเมื่อ tor floysvik อายุ 3 ขวบ",
    "context": "CREATE TABLE table_28677723_10 (music VARCHAR, tor_fløysvik VARCHAR)"
  },
  {
    "answer": "SELECT MIN(christer_tornell) FROM table_28677723_10 WHERE karianne_gulliksen = 7",
    "question_en": "What is listed under chister tornell when karianne gulliksen is 7?",
    "question_th": "รายการอะไรอยู่ภายใต้ Chister Tornell เมื่อ Karianne Gulliksen อายุ 7 ขวบ",
    "context": "CREATE TABLE table_28677723_10 (christer_tornell INTEGER, karianne_gulliksen VARCHAR)"
  },
  {
    "answer": "SELECT MIN(tor_fløysvik) FROM table_28677723_10 WHERE couple = \"Maria & Asmund\"",
    "question_en": "What is listed under tor floysvik when couple is maria & asmund?",
    "question_th": "มีอะไรอยู่ในรายการ tor floysvik เมื่อคู่รักคือ maria และ asmund?",
    "context": "CREATE TABLE table_28677723_10 (tor_fløysvik INTEGER, couple VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(date_of_commissioning) FROM table_28672269_1 WHERE unit_number = 2",
    "question_en": "What are Unit 2's dates of commissioning?",
    "question_th": "วันที่เริ่มดำเนินการของหน่วยที่ 2 คือเมื่อใด",
    "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_en": "What is the boiler provider for Bhel, India's TG Set provider?",
    "question_th": "ผู้ให้บริการหม้อไอน้ำสำหรับ Bhel ซึ่งเป็นผู้ให้บริการ TG Set ของอินเดียคืออะไร",
    "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_en": "Name the trine dehli cleve for english waltz",
    "question_th": "ตั้งชื่อเพลง Trine dehli cleve สำหรับเพลงวอลทซ์ในภาษาอังกฤษ",
    "context": "CREATE TABLE table_28677723_14 (trine_dehli_cleve INTEGER, style VARCHAR)"
  },
  {
    "answer": "SELECT style FROM table_28677723_14 WHERE total = 39",
    "question_en": "Name the style for 39 ",
    "question_th": " ตั้งชื่อสไตล์สำหรับ 39",
    "context": "CREATE TABLE table_28677723_14 (style VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT style FROM table_28677723_14 WHERE total = 27",
    "question_en": "Name the style for 27",
    "question_th": "ตั้งชื่อสไตล์สำหรับ 27",
    "context": "CREATE TABLE table_28677723_14 (style VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT MAX(tor_fløysvik) FROM table_28677723_14 WHERE karianne_gulliksen = 8",
    "question_en": "Name the most for fløysvik for 8",
    "question_th": "ตั้งชื่อ fløysvik มากที่สุดสำหรับ 8",
    "context": "CREATE TABLE table_28677723_14 (tor_fløysvik INTEGER, karianne_gulliksen VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(tor_fløysvik) FROM table_28677723_11 WHERE christer_tornell = 7",
    "question_en": "how many for floysvik and christer tornell is 7?",
    "question_th": "ฟลอยส์วิคและคริสเตอร์ ทอร์เนลคือ 7 เท่าไหร่",
    "context": "CREATE TABLE table_28677723_11 (tor_fløysvik VARCHAR, christer_tornell VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(christer_tornell) FROM table_28677723_11 WHERE total = 30",
    "question_en": "how many for christer tornell where the total is 30?",
    "question_th": "คริสเตอร์ ทอร์เนลมีกี่อันคะ รวม 30 อันคะ?",
    "context": "CREATE TABLE table_28677723_11 (christer_tornell VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT couple FROM table_28677723_16 WHERE total = 38",
    "question_en": "What is the couple that received a total score of 38?",
    "question_th": "คู่ไหนได้คะแนนรวม 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_en": "What is the greatest total score received by aylar & egor when karianne Gulliksen gave an 8?",
    "question_th": "คะแนนรวมสูงสุดที่ Aylar & Egor ได้รับเมื่อ Karianne Gulliksen ให้ 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_en": "What is the largest number for trine dehli cleve?",
    "question_th": "ทริเน เดห์ลี เคลฟ เลขที่ใหญ่ที่สุดคือข้อใด?",
    "context": "CREATE TABLE table_28677723_5 (trine_dehli_cleve INTEGER)"
  },
  {
    "answer": "SELECT MAX(karianne_gulliksen) FROM table_28677723_5",
    "question_en": "What is the largest number for karianne gulliksen?",
    "question_th": "คาเรียนน์ กุลลิกเซ่น เลขที่ใหญ่ที่สุดคือข้อใด",
    "context": "CREATE TABLE table_28677723_5 (karianne_gulliksen INTEGER)"
  },
  {
    "answer": "SELECT COUNT(style) FROM table_28677723_9 WHERE total = 33",
    "question_en": "How many styles had a total score of exactly 33?",
    "question_th": "มีกี่สไตล์ที่มีคะแนนรวม 33 พอดี?",
    "context": "CREATE TABLE table_28677723_9 (style VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT style FROM table_28677723_9 WHERE tor_fløysvik = 8",
    "question_en": "Which style led to a score given by Tor Floysvik of 8?",
    "question_th": "สไตล์ใดที่ทำให้ Tor Floysvik ให้คะแนน 8 คะแนน",
    "context": "CREATE TABLE table_28677723_9 (style VARCHAR, tor_fløysvik VARCHAR)"
  },
  {
    "answer": "SELECT MIN(total) FROM table_28677723_9 WHERE style = \"Pasodoble\"",
    "question_en": "What is the smallest total score for the Pasodoble style?",
    "question_th": "คะแนนรวมที่น้อยที่สุดสำหรับสไตล์ Pasodoble คือเท่าใด",
    "context": "CREATE TABLE table_28677723_9 (total INTEGER, style VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_28680377_2 WHERE us_viewers__million_ = \"0.88\"",
    "question_en": "What is the title of the episode watched by 0.88 million U.S. viewers?",
    "question_th": "ชื่อเรื่องของตอนที่รับชมโดยผู้ชม 0.88 ล้านคนในสหรัฐอเมริกาคืออะไร?",
    "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_en": "What is the original air date of the episode that was watched by 0.88 million U.S. viewers? ",
    "question_th": " วันที่ออกอากาศดั้งเดิมของตอนที่มีผู้ชม 0.88 ล้านคนในสหรัฐฯ คือเมื่อใด",
    "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_en": "How may players have a passing yard score of 208?",
    "question_th": "ผู้เล่นจะมีคะแนนส่งบอล 208 ได้อย่างไร?",
    "context": "CREATE TABLE table_28697228_4 (player VARCHAR, passing_yards VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_28697228_4 WHERE total_offense = 454",
    "question_en": "What is the name of the player with total offense of 454?",
    "question_th": "ผู้เล่นที่มีความผิดรวม 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_en": "What is the number of rushing yards when the opponentis Indiana and the player is Denard Robinson?",
    "question_th": "จำนวนระยะการวิ่งเมื่อฝ่ายตรงข้ามคืออินเดียน่าและผู้เล่นคือเดนาร์ด โรบินสันคือเท่าใด?",
    "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_en": "What is the number of total offense when the opponentis Penn State?",
    "question_th": "จำนวนความผิดทั้งหมดเมื่อฝ่ายตรงข้ามเป็น 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_en": "How many rushing yards are listed when the passing yards are 244?",
    "question_th": "มีกี่หลาในการวิ่งที่แสดงไว้เมื่อระยะที่ส่งผ่านคือ 244?",
    "context": "CREATE TABLE table_28697228_4 (rushing_yards VARCHAR, passing_yards VARCHAR)"
  },
  {
    "answer": "SELECT volume__hm³_ FROM table_28702208_1 WHERE reservoir = \"Tanes\"",
    "question_en": "What is the volume when the resrvoir is Tanes?",
    "question_th": "เมื่ออ่างเก็บน้ำเป็น Tanes จะมีปริมาตรเท่าใด",
    "context": "CREATE TABLE table_28702208_1 (volume__hm³_ VARCHAR, reservoir VARCHAR)"
  },
  {
    "answer": "SELECT bi_tone FROM table_2869843_1 WHERE olive_drab = \"No\" AND caliber = \"9×19mm Parabellum\" AND model = \"XDM 5.25 Competition\"",
    "question_en": "are there bi-tone is there's no olive drab and the caliber is 9×19mm parabellum and model is xdm 5.25 competition",
    "question_th": "มีไบโทนไหม ไม่มีสีอมมะกอก และลำกล้องเป็นพาราเบลลัม 9×19 มม. และรุ่นเป็น xdm 5.25 การแข่งขัน",
    "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 /ˈlɪnsɨs/\"",
    "question_en": "What is the family of the constellation that has lyncis /ˈlɪnsɨs/ as genitive?",
    "question_th": "กลุ่มดาวในกลุ่มดาวใดที่มี lyncis /ˈlɪnsɨs/ เป็นสัมพันธการก?",
    "context": "CREATE TABLE table_287159_1 (family VARCHAR, genitive VARCHAR)"
  },
  {
    "answer": "SELECT origin FROM table_287159_1 WHERE other_abbreviation = \"Tele\"",
    "question_en": "What is the origin of the constellation that can be abbreviated to tele?",
    "question_th": "ต้นกำเนิดของกลุ่มดาวที่สามารถเรียกโดยย่อว่าเทเลคืออะไร?",
    "context": "CREATE TABLE table_287159_1 (origin VARCHAR, other_abbreviation VARCHAR)"
  },
  {
    "answer": "SELECT other_abbreviation FROM table_287159_1 WHERE brightest_star = \"β Trianguli\"",
    "question_en": "What is the other abbreviation of the constellation that has β trianguli as its brightest star?",
    "question_th": "อักษรย่ออื่นๆ ของกลุ่มดาวที่มี β trianguli เป็นดาวที่สว่างที่สุดคืออะไร",
    "context": "CREATE TABLE table_287159_1 (other_abbreviation VARCHAR, brightest_star VARCHAR)"
  },
  {
    "answer": "SELECT brightest_star FROM table_287159_1 WHERE meaning = \"archer\"",
    "question_en": "What is the brightest star of the constellation that means archer?",
    "question_th": "ดาวที่สว่างที่สุดในกลุ่มดาวที่หมายถึงนักธนูคืออะไร?",
    "context": "CREATE TABLE table_287159_1 (brightest_star VARCHAR, meaning VARCHAR)"
  },
  {
    "answer": "SELECT other_abbreviation FROM table_287159_1 WHERE genitive = \"Hydrae /ˈhaɪdriː/\"",
    "question_en": "What is the other abbreviation of the constellation that has hydrae /ˈhaɪdriː/ as genitive?",
    "question_th": "อักษรย่ออื่นๆ ของกลุ่มดาวที่มี hydrae /ˈhaɪdriː/ เป็นสัมพันธการกคืออะไร?",
    "context": "CREATE TABLE table_287159_1 (other_abbreviation VARCHAR, genitive VARCHAR)"
  },
  {
    "answer": "SELECT meaning FROM table_287159_1 WHERE genitive = \"Puppis /ˈpʌpɨs/\"",
    "question_en": "What is the meaning of the constellation that has puppis /ˈpʌpɨs/ as genitive?",
    "question_th": "กลุ่มดาวที่มี puppis /ˈpʌpɨs/ เป็นสัมพันธการกหมายถึงอะไร?",
    "context": "CREATE TABLE table_287159_1 (meaning VARCHAR, genitive VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(track_no) FROM table_28715942_3 WHERE track = \"Song 2\"",
    "question_en": "How many track numbers were called song 2?",
    "question_th": "เพลงที่ 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_en": "Who was the vocal percussionist when stevie wonder was the original artist?",
    "question_th": "ใครคือนักเคาะจังหวะร้องเมื่อสตีวี่ วันเดอร์เป็นศิลปินดั้งเดิม",
    "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_en": "What track name had Terry Tamm as the soloist?",
    "question_th": "ชื่อเพลงอะไรที่ทำให้ Terry Tamm เป็นศิลปินเดี่ยว?",
    "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_en": "What was the date of the game that had a result of Army 16, SMU 14?",
    "question_th": "เกมที่มีผลการแข่งขัน 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_en": "What was the city whose stadium is Gerald J. Ford Stadium?",
    "question_th": "เมืองที่มีสนามกีฬาคือ 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_en": "What is every category wise when the multi lane is 677?",
    "question_th": "ทุกประเภทจะฉลาดแค่ไหนเมื่อหลายเลนคือ 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_en": "What is the highest value for multi lane if category wise is major district roads?",
    "question_th": "ค่าสูงสุดสำหรับหลายเลนคือเท่าใด หากพิจารณาหมวดหมู่คือถนนสายหลักในเขต",
    "context": "CREATE TABLE table_28723146_2 (multi_lane INTEGER, category_wise VARCHAR)"
  },
  {
    "answer": "SELECT MIN(total) FROM table_28723146_2",
    "question_en": "What is the least total?",
    "question_th": "รวมน้อยที่สุดคือเท่าไร?",
    "context": "CREATE TABLE table_28723146_2 (total INTEGER)"
  },
  {
    "answer": "SELECT tebe_career FROM table_28730459_3 WHERE league_matches = 163",
    "question_en": "What are the years of TeBe career for the players whose league matches are exactly 163?",
    "question_th": "อาชีพของ TeBe สำหรับผู้เล่นที่มีการแข่งขันในลีก 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_en": "What is the number of league goals for players with 10 league matches and a TeBe career of 2003?",
    "question_th": "จำนวนประตูในลีกสำหรับผู้เล่นที่ลงเล่นในลีก 10 นัดและอาชีพของ TeBe ในปี 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_en": "What is listed in eliminated when the finish is 15th voted out 9th jury Member Day 46?",
    "question_th": "รายการใดถูกคัดออกเมื่อเข้าเส้นชัยเป็นวันที่ 15 โหวตออกวันที่ 9 ของคณะลูกขุนวันที่ 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_en": "What is listed in reward when the finish is listed at 13th voted out 6th jury Member Day 43?",
    "question_th": "มีอะไรระบุไว้ในรางวัลเมื่อเข้าเส้นชัยในวันที่ 13 โหวตออกวันที่ 6 ของคณะลูกขุนวันที่ 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_en": "What is the name of immunity when the finish is 3rd voted out day 9?",
    "question_th": "ภูมิคุ้มกันชื่ออะไรเมื่อเข้าเส้นชัยเป็นครั้งที่ 3 โหวตออกวันที่ 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_en": "What is the vote number when immunity listed as David and reward is listed as none?",
    "question_th": "หมายเลขโหวตคืออะไรเมื่อภูมิคุ้มกันระบุว่าเป็น David และรางวัลระบุว่าไม่มี?",
    "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_en": "what is the united fc wehre pifa colaba is maratha united?",
    "question_th": "เอฟซียูไนเต็ดคืออะไร ปิฟาโคลาบาคือมารัทธายูไนเต็ด?",
    "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_en": "what is the united fc where pifa colaba is sporting options?",
    "question_th": "เอฟซียูไนเต็ดคืออะไรที่ปิฟา โคลาบาเป็นตัวเลือกด้านกีฬา?",
    "context": "CREATE TABLE table_28759261_5 (united_fc VARCHAR, pifa_colaba_fc_u_17 VARCHAR)"
  },
  {
    "answer": "SELECT dadar_xi_‘b’ FROM table_28759261_5 WHERE pifa_colaba_fc_u_17 = \"Sporting Options\"",
    "question_en": "what is the dadar xi b where pifa colaba is sporting options?",
    "question_th": "dadar xi b คืออะไร โดยที่ pifa colaba เป็นตัวเลือกด้านกีฬา?",
    "context": "CREATE TABLE table_28759261_5 (dadar_xi_‘b’ VARCHAR, pifa_colaba_fc_u_17 VARCHAR)"
  },
  {
    "answer": "SELECT athens_xi FROM table_28759261_5 WHERE dadar_xi_‘b’ = \"Strikers FC\"",
    "question_en": "what is the athens xi where dada xi b is strikers fc?",
    "question_th": "เอเธนส์คืออะไร ซี่ โดยที่ดาดา ซี บีเป็นกองหน้า เอฟซี?",
    "context": "CREATE TABLE table_28759261_5 (athens_xi VARCHAR, dadar_xi_‘b’ VARCHAR)"
  },
  {
    "answer": "SELECT dadar_xi_‘b’ FROM table_28759261_5 WHERE good_shepherd = \"Sea Liner FC\"",
    "question_en": "what is the dadar xi b where the good shepherd is sea liner fc?",
    "question_th": "dadar xi b คืออะไร โดยที่คนเลี้ยงแกะที่ดีคือ sea liner fc?",
    "context": "CREATE TABLE table_28759261_5 (dadar_xi_‘b’ VARCHAR, good_shepherd VARCHAR)"
  },
  {
    "answer": "SELECT record_at_school FROM table_28744929_2 WHERE head_coach = \"Tom O'Brien\"",
    "question_en": "What is the Record at School of Tom O'Brien's team?",
    "question_th": "บันทึกของทีม School of Tom O'Brien คืออะไร?",
    "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_en": "How many values were used to express the years at school of the Maryland team?",
    "question_th": "มีกี่ค่าที่ใช้เพื่อแสดงจำนวนปีในโรงเรียนของทีมแมรีแลนด์",
    "context": "CREATE TABLE table_28744929_2 (years_at_school VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT acc_record FROM table_28744929_2 WHERE team = \"Miami\"",
    "question_en": "What is the record in the atlantic coast conference for the Miami team?",
    "question_th": "บันทึกในการประชุมชายฝั่งมหาสมุทรแอตแลนติกสำหรับทีมไมอามีคืออะไร?",
    "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_en": "How many values reflect the overall record of the team coached by Frank Beamer?",
    "question_th": "มีกี่ค่าที่สะท้อนถึงบันทึกโดยรวมของทีมที่แฟรงก์ บีเมอร์เป็นโค้ช",
    "context": "CREATE TABLE table_28744929_2 (overall_record VARCHAR, head_coach VARCHAR)"
  },
  {
    "answer": "SELECT school_type FROM table_28744929_1 WHERE institution = \"Clemson\"",
    "question_en": "what type over school is Clemson?",
    "question_th": "เคลมสันเป็นประเภทไหนมากกว่าโรงเรียน?",
    "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_en": "what year did north carolina institution join the acc?",
    "question_th": "สถาบันนอร์ธแคโรไลนาเข้าร่วมบัญชีในปีใด",
    "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_en": "how many acc football titles have been won by the institution nicknamed tar heels?",
    "question_th": "สถาบันชื่อเล่นทาร์ฮิลส์คว้าแชมป์ฟุตบอล ACC ได้กี่รายการ?",
    "context": "CREATE TABLE table_28744929_1 (acc_football_titles VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT school_type FROM table_28744929_1 WHERE nickname = \"Seminoles\"",
    "question_en": "what type of school is the institution nicknamed seminoles?",
    "question_th": "สถาบันที่มีชื่อเล่นว่าเซมิโนลเป็นโรงเรียนประเภทใด",
    "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_en": "when did the institution at chapel hill, North carolina join acc?",
    "question_th": "สถาบันที่แชเปิลฮิลล์ รัฐนอร์ทแคโรไลนา เข้าร่วมกับสถาบันเมื่อใด",
    "context": "CREATE TABLE table_28744929_1 (joined_acc VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_28768469_5 WHERE game = 2",
    "question_en": "What were the supersonics record at game 2?",
    "question_th": "บันทึกความเร็วเหนือเสียงในเกมที่ 2 คืออะไร?",
    "context": "CREATE TABLE table_28768469_5 (record VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT MAX(game) FROM table_28768469_5",
    "question_en": "What is the most amount of games played this season?",
    "question_th": "ฤดูกาลนี้เล่นมากที่สุดกี่เกม?",
    "context": "CREATE TABLE table_28768469_5 (game INTEGER)"
  },
  {
    "answer": "SELECT high_assists FROM table_28768469_5 WHERE team = \"Utah\"",
    "question_en": "Who had highest assists in game against Utah?",
    "question_th": "ใครมีแอสซิสต์สูงสุดในเกมกับยูทาห์?",
    "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_en": "In the North Central region, what are the regional page #'s?",
    "question_th": "ในภาคกลางตอนเหนือ เลขหน้าภาค #ของอะไร?",
    "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_en": "What states have a regional page # of 1, 5-7, 9-11, 13-15?",
    "question_th": "รัฐใดมีหน้าภูมิภาค # 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_en": "Which region has a regional page # of 1-3, 5-7, 9-11, 13-15?",
    "question_th": "ภูมิภาคใดมีหน้าภูมิภาค # 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_en": "In Ca/Nv, what are all of the regional page #s?",
    "question_th": "ใน Ca/Nv หมายเลขหน้าภูมิภาคทั้งหมดคืออะไร",
    "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_en": "What is the maximum number of 2nd places for Tajikistan?",
    "question_th": "อันดับที่ 2 ของทาจิกิสถานมีจำนวนสูงสุดคือเท่าใด",
    "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_en": "What is the maximum number of 1st places for the country with exactly 1 third place?",
    "question_th": "จำนวนอันดับที่ 1 สูงสุดของประเทศที่มีอันดับที่ 1 ใน 3 พอดีคือเท่าใด",
    "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_en": "How many values of total top 3 placements does Taiwan have?",
    "question_th": "ไต้หวันมีค่าเท่าใดของตำแหน่งสูงสุด 3 อันดับแรกทั้งหมด",
    "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_en": "What is the name of the country when the ioc code is mas?",
    "question_th": "ชื่อประเทศอะไร รหัส ioc คือ mas?",
    "context": "CREATE TABLE table_2879165_1 (country VARCHAR, ioc_code VARCHAR)"
  },
  {
    "answer": "SELECT ioc_code FROM table_2879165_1 WHERE country = \"Singapore\"",
    "question_en": "What is the ioc code when the country is listed as Singapore?",
    "question_th": "รหัส ioc คืออะไรเมื่อระบุประเทศเป็นสิงคโปร์",
    "context": "CREATE TABLE table_2879165_1 (ioc_code VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(network_station) FROM table_2879165_1 WHERE country = \"Brunei\"",
    "question_en": "What is listed in Network station when the country is Brunei?",
    "question_th": "รายการอะไรอยู่ในสถานีเครือข่ายเมื่อประเทศคือบรูไน?",
    "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_en": "How many television station listing have a radio station as lao national radio?",
    "question_th": "มีสถานีวิทยุกี่แห่งที่มีสถานีวิทยุเป็นวิทยุประจำชาติลาว",
    "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_en": "How many television station listings have a ioc code as mas?",
    "question_th": "มีรายชื่อสถานีโทรทัศน์กี่รายการที่มีรหัส ioc เป็น 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_en": "Who wrote episode 27 in the series that was directed by Wendey Stanzler?",
    "question_th": "ใครเป็นคนเขียนตอนที่ 27 ในซีรีส์ที่กำกับโดยเวนดี้ สแตนซ์เลอร์",
    "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_en": "What is the name of episode 43 in the series?",
    "question_th": "ซีรีย์ตอนที่ 43 ชื่ออะไรคะ?",
    "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_en": "What date did the episode that had 8.84 million u.s. viewers originally air?",
    "question_th": "ตอนที่มีผู้ชม 8.84 ล้านคนของเราออกอากาศครั้งแรกเมื่อใด?",
    "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_en": "How many games have high assists as earl watson (11) and location attendance as Keyarena 16,841?",
    "question_th": "มีกี่เกมที่มีแอสซิสต์ได้สูงในฐานะเอิร์ล วัตสัน (11) และผู้เข้าชมในตำแหน่งคีย์อาเรน่า 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_en": "What is the record listed when the high assists is earl watson (6)?",
    "question_th": "บันทึกที่มีแอสซิสต์สูงคือ เอิร์ล วัตสัน (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_en": "Where is the location  attendance when the date is January 9?",
    "question_th": "สถานที่เข้าร่วมคือวันที่ 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_en": "What is listed in hight points when the high rebounds is listed as Nick Collison (10)?",
    "question_th": "สิ่งที่ระบุไว้ในจุดสูงสุดเมื่อการรีบาวด์สูงแสดงเป็น 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_en": "What is listed in game when the location attendance is listed as Keyarena 16,841?",
    "question_th": "มีอะไรระบุไว้ในเกมเมื่อการเข้าร่วมสถานที่แสดงเป็น 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_en": "What was the airdate of the episode of production code 214?",
    "question_th": "รหัสการผลิต 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_en": "How many numbers in the season have an air date of June 3, 2012?",
    "question_th": "มีกี่หมายเลขในฤดูกาลที่ออกอากาศวันที่ 3 มิถุนายน 2555?",
    "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_en": "What is the highest production code of the episodes having a US viewership of exactly 2.3?",
    "question_th": "รหัสการผลิตสูงสุดของตอนที่มีผู้ชมในสหรัฐฯ 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_en": "When the number of wickets is 29, what was the economy?",
    "question_th": "เมื่อจำนวนวิคเก็ตเป็น 29 เศรษฐกิจเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_28797906_3 (economy VARCHAR, wickets VARCHAR)"
  },
  {
    "answer": "SELECT wickets FROM table_28797906_3 WHERE economy = \"3.64\"",
    "question_en": "How many wickets was there when the economy was 3.64?",
    "question_th": "ตอนที่เศรษฐกิจอยู่ที่ 3.64 มีกี่ประตู?",
    "context": "CREATE TABLE table_28797906_3 (wickets VARCHAR, economy VARCHAR)"
  },
  {
    "answer": "SELECT average FROM table_28797906_3 WHERE wickets = 27",
    "question_en": "What is the average of all the wickets that were 27?",
    "question_th": "ค่าเฉลี่ยของประตูทั้งหมดที่มี 27 ประตูคือเท่าไร?",
    "context": "CREATE TABLE table_28797906_3 (average VARCHAR, wickets VARCHAR)"
  },
  {
    "answer": "SELECT branding FROM table_28794440_1 WHERE callsign = \"DXGH\"",
    "question_en": "Which branding has the callsign of DXGH?",
    "question_th": "แบรนด์ใดมีสัญลักษณ์เรียกขานของ DXGH?",
    "context": "CREATE TABLE table_28794440_1 (branding VARCHAR, callsign VARCHAR)"
  },
  {
    "answer": "SELECT station_type FROM table_28794440_1 WHERE frequency = \"972kHz\"",
    "question_en": "What type of station is within the 972khz frequency?",
    "question_th": "คลื่นความถี่ 972khz เป็นสถานีประเภทใด",
    "context": "CREATE TABLE table_28794440_1 (station_type VARCHAR, frequency VARCHAR)"
  },
  {
    "answer": "SELECT station_type FROM table_28794440_1 WHERE location = \"Cebu\"",
    "question_en": "What types of stations are located in Cebu?",
    "question_th": "มีสถานีประเภทใดบ้างใน เซบู?",
    "context": "CREATE TABLE table_28794440_1 (station_type VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_28794440_1 WHERE frequency = \"1485kHz\"",
    "question_en": "Where are all the 1485khz frequency located?",
    "question_th": "ความถี่ 1485khz ทั้งหมดอยู่ที่ไหน?",
    "context": "CREATE TABLE table_28794440_1 (location VARCHAR, frequency VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(location) FROM table_28794440_1 WHERE callsign = \"DXGH\"",
    "question_en": "How many locations have the callsign DXGH?",
    "question_th": "มีสัญญาณเรียกขาน DXGH กี่แห่ง?",
    "context": "CREATE TABLE table_28794440_1 (location VARCHAR, callsign VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_28794440_1 WHERE callsign = \"DWRH\"",
    "question_en": "Where are the broadcasting companys with the callsign DWRH located?",
    "question_th": "บริษัทกระจายเสียงที่มีสัญลักษณ์เรียก DWRH อยู่ที่ไหน?",
    "context": "CREATE TABLE table_28794440_1 (location VARCHAR, callsign VARCHAR)"
  },
  {
    "answer": "SELECT audition_city FROM table_28793672_1 WHERE venue = \"UPI Convention Center\"",
    "question_en": "Where is the audition city when the venue is upi convention center?",
    "question_th": "เมืองออดิชั่นอยู่ที่ไหน ในเมื่อสถานที่เป็นศูนย์การประชุม UPI?",
    "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_en": "How many times is there a golden tickets entry when the callback venue is rcti studio, jakarta?",
    "question_th": "จะมีการเข้าตั๋วทองคำกี่ครั้งเมื่อสถานที่โทรกลับคือ 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_en": "In what year was 1.35% the average vote per candidate?",
    "question_th": "ในปีใดที่คะแนนเสียงเฉลี่ย 1.35% ต่อผู้สมัครคนหนึ่ง?",
    "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_en": "When 3.29% was the average per candidate, what was the number of average votes per candidate?",
    "question_th": "เมื่อได้คะแนนเฉลี่ยต่อผู้สมัคร 3.29% แล้วคะแนนเฉลี่ยต่อผู้สมัครคือเท่าใด",
    "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_en": "What was the percentage of total votes in 1997?",
    "question_th": "เปอร์เซ็นต์ของคะแนนเสียงทั้งหมดในปี 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_en": "How many shows were launched on CBS (2002)?",
    "question_th": "มีกี่รายการที่เปิดตัวใน 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_en": "How many IRST figures for the show that premiered on Canale 5 (2006)?",
    "question_th": "มี IRST จำนวนเท่าใดสำหรับรายการที่ฉายรอบปฐมทัศน์ทางช่อง Canale 5 (2549)",
    "context": "CREATE TABLE table_28803803_1 (irst VARCHAR, original_channel VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_28803803_1 WHERE name = \"Falling Angel\"",
    "question_en": "What are the dates that Falling Angel aired?",
    "question_th": "Falling Angel ออกอากาศวันไหน?",
    "context": "CREATE TABLE table_28803803_1 (date VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(economy) FROM table_28846752_13 WHERE bbi = \"2/19\"",
    "question_en": "How many economy stats for the player with 2/19 BBI?",
    "question_th": "สถิติความประหยัดของผู้เล่นที่มี 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_en": "Who is the player with an average of 35.42?",
    "question_th": "นักเตะที่มีค่าเฉลี่ย 35.42 คือใคร?",
    "context": "CREATE TABLE table_28846752_13 (player VARCHAR, average VARCHAR)"
  },
  {
    "answer": "SELECT economy FROM table_28846752_13 WHERE bbi = \"3/33\"",
    "question_en": "What is the economy of the player with BBI of 3/33?",
    "question_th": "เศรษฐกิจของผู้เล่นที่มี BBI เท่ากับ 3/33 เป็นเท่าใด?",
    "context": "CREATE TABLE table_28846752_13 (economy VARCHAR, bbi VARCHAR)"
  },
  {
    "answer": "SELECT average FROM table_28846752_4 WHERE highest_score = \"151\"",
    "question_en": "What is the average when the highest score is 151?",
    "question_th": "ค่าเฉลี่ยเมื่อคะแนนสูงสุดคือ 151 คืออะไร?",
    "context": "CREATE TABLE table_28846752_4 (average VARCHAR, highest_score VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_28846752_4 WHERE highest_score = \"84\"",
    "question_en": "Who is the player when the highest score is 84?",
    "question_th": "ใครคือผู้เล่นเมื่อคะแนนสูงสุดคือ 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_en": "How many runs are there when the highest score is 228*?",
    "question_th": "มีวิ่งกี่ครั้งเมื่อคะแนนสูงสุดคือ 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_en": "What is the innings when the highest score is 72?",
    "question_th": "โอกาสที่คะแนนสูงสุดคือ 72 คืออะไร?",
    "context": "CREATE TABLE table_28846752_4 (innings INTEGER, highest_score VARCHAR)"
  },
  {
    "answer": "SELECT MAX(matches) FROM table_28846752_8",
    "question_en": "What is the highest number listed for matches?",
    "question_th": "หมายเลขสูงสุดที่ระบุไว้สำหรับการแข่งขันคืออะไร?",
    "context": "CREATE TABLE table_28846752_8 (matches INTEGER)"
  },
  {
    "answer": "SELECT 50 AS s FROM table_28846752_8 WHERE average = \"39.60\"",
    "question_en": "How many entries is under 50s column when the average is 39.60?",
    "question_th": "มีกี่รายการที่มีอายุต่ำกว่า 50 คอลัมน์เมื่อค่าเฉลี่ยคือ 39.60",
    "context": "CREATE TABLE table_28846752_8 (average VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_28846752_8 WHERE average = \"69.66\"",
    "question_en": "Who is the player when the average is 69.66?",
    "question_th": "นักเตะคนไหนเมื่อเฉลี่ยอยู่ที่ 69.66?",
    "context": "CREATE TABLE table_28846752_8 (player VARCHAR, average VARCHAR)"
  },
  {
    "answer": "SELECT MIN(5 AS wi) FROM table_28846752_5",
    "question_en": "what is the minimumfor 5wi?",
    "question_th": "ขั้นต่ำสำหรับ 5wi คือเท่าไร?",
    "context": "CREATE TABLE table_28846752_5 (Id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(10 AS wi) FROM table_28846752_5 WHERE bbi = \"6/101\"",
    "question_en": "how many 10wi and bbi is 6/101",
    "question_th": "10wi และ bbi เท่ากับ 6/101 เท่าไหร่",
    "context": "CREATE TABLE table_28846752_5 (bbi VARCHAR)"
  },
  {
    "answer": "SELECT innings FROM table_28846752_5 WHERE bbi = \"4/26\"",
    "question_en": "how many innings had bbi 4/26?",
    "question_th": "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_en": "how many 5wi with an average of 33.13?",
    "question_th": "5wi กี่อันโดยเฉลี่ย 33.13?",
    "context": "CREATE TABLE table_28846752_5 (average VARCHAR)"
  },
  {
    "answer": "SELECT innings FROM table_28846752_5 WHERE average = \"19.60\"",
    "question_en": "how many innings have an average of 19.60?",
    "question_th": "มีกี่อินนิ่งมีค่าเฉลี่ย 19.60?",
    "context": "CREATE TABLE table_28846752_5 (innings VARCHAR, average VARCHAR)"
  },
  {
    "answer": "SELECT average FROM table_28846752_9 WHERE bbi = \"3/27\"",
    "question_en": "What is the average when the BBI is 3/27?",
    "question_th": "ค่าเฉลี่ยเมื่อ BBI อยู่ที่ 3/27 คือเท่าไร?",
    "context": "CREATE TABLE table_28846752_9 (average VARCHAR, bbi VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_28846752_9 WHERE economy = \"6.14\"",
    "question_en": "Who is the player when the economy is 6.14?",
    "question_th": "ผู้เล่นคนไหนเมื่อเศรษฐกิจเป็น 6.14?",
    "context": "CREATE TABLE table_28846752_9 (player VARCHAR, economy VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_28846752_9 WHERE economy = \"5.29\"",
    "question_en": "Who is the player when the economy is 5.29?",
    "question_th": "ใครคือผู้เล่นเมื่อเศรษฐกิจอยู่ที่ 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_en": "What the number of matches when the BBI is 3/27?",
    "question_th": "BBI คือ 3/27 แมตช์จำนวนเท่าไร?",
    "context": "CREATE TABLE table_28846752_9 (matches INTEGER, bbi VARCHAR)"
  },
  {
    "answer": "SELECT bbi FROM table_28846752_9 WHERE economy = \"5.68\"",
    "question_en": "What is the BBI whent the economy is 5.68?",
    "question_th": "BBI คือเท่าไรเมื่อเศรษฐกิจอยู่ที่ 5.68?",
    "context": "CREATE TABLE table_28846752_9 (bbi VARCHAR, economy VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_28848697_4 WHERE tied = 11",
    "question_en": "What is the year listed when tied is listed as 11?",
    "question_th": "ปีใดที่ระบุเมื่อผูกเป็น 11?",
    "context": "CREATE TABLE table_28848697_4 (year VARCHAR, tied VARCHAR)"
  },
  {
    "answer": "SELECT goals_against FROM table_28848697_4 WHERE goals_scored = 30",
    "question_en": "What is the goals against listed when the goals scored is 30?",
    "question_th": "อะไรคือประตูเทียบกับรายการเมื่อประตูที่ทำได้คือ 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_en": "How many goals scored entries are listed when the year is verano 2001?",
    "question_th": "มีรายการทำประตูได้กี่รายการในรายการ 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_en": "What are goals scored when postition is 17 and tied is 5?",
    "question_th": "อะไรคือประตูที่ทำได้เมื่ออันดับ 17 และเสมอกันที่ 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é De Colombia 472\"",
    "question_en": "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é De Colombia 472?",
    "question_th": "ใครคือผู้ชนะหาก Jaime Vergara มอบรางวัล Mountains Classification และ Col es Pasion Café De Colombia 472 มอบรางวัล Team Classification",
    "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_en": "Who was the General Classification awardee if Sergio Luis Henao was the winner and the Points Classification award was given to Sergio Luis Henao?",
    "question_th": "ใครคือผู้ได้รับรางวัลประเภททั่วไป หากแซร์คิโอ หลุยส์ เอเนาเป็นผู้ชนะ และรางวัลการจัดประเภทคะแนนตกเป็นของแซร์คิโอ หลุยส์ เอเนา?",
    "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_en": "Who were the winners if the Mountain Classification award was given to Oscar Solis and Team Classification was given to EPM-Une?",
    "question_th": "ใครคือผู้ชนะหากรางวัล Mountain Classification มอบให้กับ Oscar Solis และรางวัล Team Classification ให้กับ 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_en": "In what stage did Jaime Vergara won, Team Classification was given to EPM-Une and Mountain Classification winner was Oscar Solis?",
    "question_th": "Jaime Vergara ชนะในระยะใด การจัดประเภททีมมอบให้กับ EPM-Une และผู้ชนะการจัดประเภทภูเขาคือ 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_en": "Who directed the episode that aired November 21, 2003?",
    "question_th": "ใครเป็นผู้กำกับตอนที่ออกอากาศเมื่อวันที่ 21 พฤศจิกายน พ.ศ. 2546?",
    "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_en": "How many episode titles have series number 4?",
    "question_th": "มีกี่ตอนที่มีซีรี่ส์หมายเลข 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_en": "How may college/junior/club team has a the nhl team listed as Colorado Avalanche?",
    "question_th": "ทีมวิทยาลัย/รุ่นน้อง/สโมสรจะมีทีม nhl ที่ระบุว่าเป็น 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_en": "What player was picked by the New York Rangers?",
    "question_th": "นักเตะคนไหนที่ถูกเลือกโดย 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_en": "What position did the draft pick for Toronto Maple Leafs play?",
    "question_th": "ดราฟต์เลือกตำแหน่งใดให้โตรอนโต เมเปิล ลีฟส์เล่น?",
    "context": "CREATE TABLE table_2886617_8 (position VARCHAR, nhl_team VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_2886617_8 WHERE nhl_team = \"Edmonton Oilers\"",
    "question_en": "Who did Edmonton Oilers get for their draft pick?",
    "question_th": "Edmonton Oilers ได้ใครจากการคัดเลือกร่าง?",
    "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_en": "What college team did Milan Kostolny play for?",
    "question_th": "Milan Kostolny เล่นให้กับทีมวิทยาลัยใด?",
    "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_en": "What player was picked for Buffalo Sabres?",
    "question_th": "ผู้เล่นคนใดที่ถูกเลือกให้บัฟฟาโล่ เซเบอร์?",
    "context": "CREATE TABLE table_2886617_8 (player VARCHAR, nhl_team VARCHAR)"
  },
  {
    "answer": "SELECT nhl_team FROM table_2886617_8 WHERE player = \"Sergei Luchinkin\"",
    "question_en": "What NHL team picked Sergei Luchinkin?",
    "question_th": "ทีม NHL ใดเลือก Sergei Luchinkin",
    "context": "CREATE TABLE table_2886617_8 (nhl_team VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MIN(motogp_500cc) FROM table_2889810_1",
    "question_en": "What is the minimum MotoGP/500cc ranking?",
    "question_th": "อันดับ MotoGP/500cc ขั้นต่ำคือเท่าไร?",
    "context": "CREATE TABLE table_2889810_1 (motogp_500cc INTEGER)"
  },
  {
    "answer": "SELECT tournament_winner FROM table_28884880_4 WHERE conference = \"Southwestern Athletic conference\"",
    "question_en": "Who was the tournament winner in the Southwestern Athletic Conference?",
    "question_th": "ใครคือผู้ชนะการแข่งขันใน 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_en": "what is the crashandride cymbalpads for the drumset name td-9k2",
    "question_th": "แผ่นฉาบ Crashandride สำหรับกลองชุดชื่อ 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_en": "how many drumsets of drumstand (oftenoptional) with hd-1/3stand and tom-tom pads is 3xcloth-head are",
    "question_th": "ขาตั้งกลองจำนวนกี่ชุด (มักเป็นทางเลือก) ที่มีขาตั้ง hd-1/3 และแผ่นรองทอมทอมคือ 3xcloth-head",
    "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_en": "in which year was available the  rubber as kickdrum pad",
    "question_th": "ในปีใดที่มียางเป็นแผ่นรองเตะ",
    "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_en": "in the drum module td-5 what are the tom-tom pads",
    "question_th": "ในโมดูลดรัม td-5 แผ่นทอมทอมคืออะไร",
    "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_en": "for the drumset name td-15k how many snare pads are",
    "question_th": "ชื่อกลองชุด td-15k มีสแนร์แพดกี่อันครับ",
    "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_en": "Who won the race on June 26?",
    "question_th": "ใครชนะการแข่งขันในวันที่ 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_en": "Who won the race on August 15?",
    "question_th": "ใครชนะการแข่งขันในวันที่ 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_en": "What is the date of the Italian Grand Prix?",
    "question_th": "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_en": "How many dates did Daniel Ruiz win the Spanish Grand Prix?",
    "question_th": "Daniel Ruiz ชนะ 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_en": "Who won the race on May 1?",
    "question_th": "ใครชนะการแข่งขันในวันที่ 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_en": "When james rutherford is the incumbent how many dates are there?",
    "question_th": "เมื่อเจมส์ รัทเทอร์ฟอร์ดดำรงตำแหน่ง มีกี่วัน?",
    "context": "CREATE TABLE table_28898974_3 (date VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_28898974_3 WHERE winner = \"Edward Shaw\"",
    "question_en": "When edward shaw is the winner what is the date?",
    "question_th": "เมื่อ Edward Shaw เป็นผู้ชนะคือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_28898974_3 (date VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT reason FROM table_28898974_3 WHERE electorate = \"Peninsula\"",
    "question_en": "When peninsula is the electorate what is the reason?",
    "question_th": "เมื่อคาบสมุทรเป็นผู้มีสิทธิเลือกตั้ง มีเหตุผลอะไร?",
    "context": "CREATE TABLE table_28898974_3 (reason VARCHAR, electorate VARCHAR)"
  },
  {
    "answer": "SELECT reason FROM table_28898974_3 WHERE incumbent = \"James Seaton\"",
    "question_en": "When james seaton is the incumbent what is the reason?",
    "question_th": "เมื่อ เจมส์ ซีตัน ดำรงตำแหน่ง มีเหตุผลอะไร?",
    "context": "CREATE TABLE table_28898974_3 (reason VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT handicap FROM table_2896329_1 WHERE prize_money = \"120s\"",
    "question_en": "What was the handicap when the prize money was 120s?",
    "question_th": "แต้มต่อคืออะไรเมื่อเงินรางวัลคือ 120?",
    "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_en": "On what date was the handicap 8 st 12 lb?",
    "question_th": "แฮนดิแคป 8 12 ปอนด์ ตรงกับวันไหน?",
    "context": "CREATE TABLE table_2896329_1 (date VARCHAR, handicap VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_2896329_1 WHERE track = \"Ballarat\"",
    "question_en": "On what date was the track Ballarat? ",
    "question_th": "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_en": "How many literate males are there in the taluka name nevasa?",
    "question_th": "ชื่อตะลุกา เนะวะสะ มีผู้ชายที่รู้หนังสือกี่คน?",
    "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_en": "how many literate males are there that has a district population of 6.65?",
    "question_th": "มีผู้ชายที่รู้หนังสือกี่คน และมีจำนวนประชากรเขต 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_en": "How many males are in the group that has an amount of 139361",
    "question_th": "ในกลุ่มมีชายกี่คน มีจำนวน 139,361 คน",
    "context": "CREATE TABLE table_28939145_2 (male VARCHAR, female VARCHAR)"
  },
  {
    "answer": "SELECT runners_up FROM table_28962227_1 WHERE finale = \"16 October 2012\"",
    "question_en": "List all the runners-up on 16 October 2012?",
    "question_th": "รายชื่อรองชนะเลิศทั้งหมดในวันที่ 16 ตุลาคม 2555?",
    "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_en": "What is the date when Miranda Gore Browne was runner-up?",
    "question_th": "Miranda Gore Browne รองชนะเลิศคือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_28962227_1 (finale VARCHAR, runners_up VARCHAR)"
  },
  {
    "answer": "SELECT finale FROM table_28962227_1 WHERE runners_up = \"Holly Bell\"",
    "question_en": "What is the date of the finale where Holly Bell was runner-up?",
    "question_th": "ตอนจบของตอนจบที่ Holly Bell คว้ารองชนะเลิศคือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_28962227_1 (finale VARCHAR, runners_up VARCHAR)"
  },
  {
    "answer": "SELECT premiere FROM table_28962227_1 WHERE runners_up = \"Holly Bell\"",
    "question_en": "What is the premiere of the season where Holly Bell was the runner-up?",
    "question_th": "รอบปฐมทัศน์ของฤดูกาลที่ Holly Bell เป็นรองชนะเลิศคืออะไร?",
    "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_en": "How many runners-up were there when Joanne Wheatley won?",
    "question_th": "ตอนที่ Joanne Wheatley ชนะมีรองชนะเลิศกี่คน",
    "context": "CREATE TABLE table_28962227_1 (runners_up VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_28962227_1 WHERE runners_up = \"Brendan Lynch\"",
    "question_en": "Who won the season for which Brendan Lynch is the runner-up?",
    "question_th": "ใครเป็นผู้ชนะในฤดูกาลที่เบรนแดน ลินช์เป็นรองแชมป์?",
    "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_en": "What is the pick # when the new jersey devils is the nhl team?",
    "question_th": "ตัวเลือก # คืออะไรเมื่อ New Jersey Devils เป็นทีม NHL?",
    "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_en": "Which college/junior/team has defence as the position with canada as the nationality and the pick # is less than 61.0?",
    "question_th": "วิทยาลัย/รุ่นน้อง/ทีมใดที่มีการป้องกันในตำแหน่งโดยมีแคนาดาเป็นสัญชาติและเลือก # น้อยกว่า 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_en": "Which nhl team has kris draper as the player?",
    "question_th": "ทีม nhl ใดที่มีคริส เดรเปอร์เป็นผู้เล่น?",
    "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_en": "Which position has new Jersey Devils as the nhl team?",
    "question_th": "ตำแหน่งใดที่มี Jersey Devils ใหม่เป็นทีม nhl?",
    "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_en": "Which college/junior/club team has jim mathieson as the player?",
    "question_th": "ทีมวิทยาลัย/จูเนียร์/สโมสรใดที่มี จิม มาธีสัน เป็นผู้เล่น?",
    "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_en": "What is the production code of the episode with series #8?",
    "question_th": "รหัสการผลิตของตอนที่มีซีรีส์ #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_en": "What is the title of the episode with series number 14?",
    "question_th": "ตอนที่ 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_en": "What is the original airdate of episode #31?",
    "question_th": "ตอนที่ 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_en": "Who was drafted to the Vancouver Canucks?",
    "question_th": "ใครถูกดราฟท์ไปทีม 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_en": "How many figures are provided for the team when the position drafted is center?",
    "question_th": "เมื่อตำแหน่งร่างอยู่ตรงกลางทีมจะระบุตัวเลขจำนวนเท่าใด",
    "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_en": "What was the pick number when Paul Krake was selected?",
    "question_th": "หมายเลขตัวเลือกเมื่อ Paul Krake ถูกเลือกคืออะไร?",
    "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_en": "What pick number did the New York Rangers have?",
    "question_th": "New York Rangers มีหมายเลขเลือกอะไร?",
    "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_en": "What pick number was the Boston Bruins selection for defence?",
    "question_th": "บอสตัน บรูอินส์ เลือกหมายเลขใดในการป้องกัน?",
    "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_en": "Which player is pick 64?",
    "question_th": "ผู้เล่นคนไหนคือตัวเลือก 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_en": "Which player is the centre for the Detroit Red Wings?",
    "question_th": "นักเตะคนไหนคือเซ็นเตอร์ของทีม 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_en": "How many positions drafted for the Minnesota North Stars?",
    "question_th": "มีกี่ตำแหน่งที่ร่างไว้สำหรับ 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_en": "What position did Roseau High School (USHS-MN) play?",
    "question_th": "โรงเรียนมัธยมโรโซ (USHS-MN) เล่นตำแหน่งอะไร",
    "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_en": "What are Scott Zygulski's pick numbers?",
    "question_th": "หมายเลขเลือกของ Scott Zygulski คืออะไร?",
    "context": "CREATE TABLE table_2897457_7 (pick__number VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_2897457_7 WHERE pick__number = 136",
    "question_en": "Which country is pick# 136 from?",
    "question_th": "เลือก #136 จากประเทศไหน?",
    "context": "CREATE TABLE table_2897457_7 (nationality VARCHAR, pick__number VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(nationality) FROM table_2897457_7 WHERE player = \"Alex Nikolic\"",
    "question_en": "How many nationalities does Alex Nikolic come from?",
    "question_th": "อเล็กซ์ นิโคลิช มาจากกี่สัญชาติ?",
    "context": "CREATE TABLE table_2897457_7 (nationality VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(nhl_team) FROM table_2897457_7 WHERE pick__number = 128",
    "question_en": "How many NHL teams have a pick number of 128?",
    "question_th": "มีทีม NHL กี่ทีมที่มีหมายเลขเลือก 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_en": "Name the opponents for  anabel medina garrigues",
    "question_th": "ตั้งชื่อฝ่ายตรงข้ามสำหรับกลุ่มอานาเบล เมดินา",
    "context": "CREATE TABLE table_28979895_4 (opponents VARCHAR, partner VARCHAR)"
  },
  {
    "answer": "SELECT partner FROM table_28979895_4 WHERE score = \"w/o\"",
    "question_en": "Name the parter for w/o",
    "question_th": "ตั้งชื่อพาร์เตอร์ว่าไม่มี",
    "context": "CREATE TABLE table_28979895_4 (partner VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT network FROM table_2899987_2 WHERE origin = \"Xalapa\"",
    "question_en": "Which of the networks originate in Xalapa?",
    "question_th": "เครือข่ายใดมีต้นกำเนิดใน Xalapa?",
    "context": "CREATE TABLE table_2899987_2 (network VARCHAR, origin VARCHAR)"
  },
  {
    "answer": "SELECT programming FROM table_2899987_2 WHERE network = \"Soy Guerrero\"",
    "question_en": "What are all the programs on the Soy Guerrero network?",
    "question_th": "โปรแกรมทั้งหมดในเครือข่าย Soy Guerrero คืออะไร?",
    "context": "CREATE TABLE table_2899987_2 (programming VARCHAR, network VARCHAR)"
  },
  {
    "answer": "SELECT owner FROM table_2899987_2 WHERE origin = \"Mexico City\"",
    "question_en": "Which owners originate in Mexico City?",
    "question_th": "เจ้าของรายใดมีต้นกำเนิดในเม็กซิโกซิตี้",
    "context": "CREATE TABLE table_2899987_2 (owner VARCHAR, origin VARCHAR)"
  },
  {
    "answer": "SELECT network FROM table_2899987_2 WHERE region = \"Guerrero\"",
    "question_en": "Which network serves the Guerrero region",
    "question_th": "เครือข่ายใดให้บริการในภูมิภาคเกร์เรโร",
    "context": "CREATE TABLE table_2899987_2 (network VARCHAR, region VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_2899987_2 WHERE owner = \"Estado de Tabasco\"",
    "question_en": "Which regions are owned by estado de tabasco?",
    "question_th": "ภูมิภาคใดบ้างที่ 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_en": "What subdivision names (RU) have a code of by-hr?",
    "question_th": "ชื่อเขตการปกครองใด (RU) มีรหัสเป็นรายชั่วโมง?",
    "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_en": "What cods have a subdivision name (RU) of Grodnenskaya Oblast'?",
    "question_th": "รหัสใดมีชื่อเขตการปกครอง (RU) ของ 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_en": "What are the subdivision names (RU) where the subdivision name (BE) is Hrodzenskaya Voblasts'?",
    "question_th": "ชื่อเขตการปกครอง (RU) คืออะไร โดยที่ชื่อเขตการปกครอง (BE) คือ 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_en": "What is the subdivision name (BE) where subdivision name (RU) (BGN) is Grodnenskaya Oblast'?",
    "question_th": "ชื่อเขตการปกครอง (BE) คืออะไร โดยที่ชื่อเขตการปกครอง (RU) (BGN) คือ 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_en": "Which codes have subdivision names (BE) (BGN) of Homyel'skaya Voblasts'?",
    "question_th": "รหัสใดมีชื่อเขตการปกครอง (BE) (BGN) ของ 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_en": "Name the into service for dh1",
    "question_th": "ตั้งชื่อบริการสำหรับ dh1",
    "context": "CREATE TABLE table_29002641_1 (into_service VARCHAR, number VARCHAR)"
  },
  {
    "answer": "SELECT into_service FROM table_29002641_1 WHERE number = \"DH2\"",
    "question_en": "Name the into service for dh2",
    "question_th": "ตั้งชื่อบริการสำหรับ 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_en": "Name the most serial number for feb 1994",
    "question_th": "ตั้งชื่อซีเรียลนัมเบอร์มากที่สุดของเดือนกุมภาพันธ์ 1994",
    "context": "CREATE TABLE table_29002641_1 (Serial INTEGER, scrapped VARCHAR)"
  },
  {
    "answer": "SELECT number FROM table_29002641_1 WHERE scrapped = \"2004\"",
    "question_en": "Name the number for 2004 scapped",
    "question_th": "ตั้งชื่อหมายเลขสำหรับปี 2547 ที่ถูกไล่ออก",
    "context": "CREATE TABLE table_29002641_1 (number VARCHAR, scrapped VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(month_name) FROM table_28985631_1 WHERE numbered_month = \"Tenth\"",
    "question_en": "How many month names are there for the tenth numbered month?",
    "question_th": "เดือนที่สิบมีชื่อกี่เดือน?",
    "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_en": "What is the defective year for the eighth numbered month?",
    "question_th": "ปีที่แปดมีข้อบกพร่องคือเดือนใด",
    "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_en": "What is the month sequence for the month name of av?",
    "question_th": "ลำดับเดือนสำหรับชื่อเดือนของ 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_en": "What is the defective year for the regular year of 29 days and month sequence of 2?",
    "question_th": "ปีที่บกพร่องสำหรับปีปกติที่มี 29 วัน และลำดับเดือนที่ 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_en": "When 4.5 is the rating (18-49) what is the air date?",
    "question_th": "เมื่อเรตติ้ง 4.5 (18-49) ออกอากาศวันไหน?",
    "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_en": "When 13 is the share (18-49) what is the rank (timeslot)?",
    "question_th": "เมื่อ 13 คือส่วนแบ่ง (18-49) อันดับ (ช่วงเวลา) คืออะไร?",
    "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_en": "When 11 is the episode what is the air date?",
    "question_th": "11 ตอนคือวันไหนคะ?",
    "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_en": "When there are  10.02 million viewers what is the rating (18-49)?",
    "question_th": "เมื่อมีผู้ชม 10.02 ล้านคน เรตติ้ง (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_en": "When there are 9.28 million viewers what is the share (18-49)?",
    "question_th": "เมื่อมีผู้ชม 9.28 ล้านคน ส่วนแบ่ง (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_en": "When 4 is the episode what is the air date?",
    "question_th": "ตอนที่ 4 คือตอนไหน ออนแอร์วันไหนคะ?",
    "context": "CREATE TABLE table_28980706_4 (first_air_date VARCHAR, episode VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(result) FROM table_29026564_9 WHERE score = \"6–7 (2–7) , 6–2, 7–6 (7–3)\"",
    "question_en": "How many different results were there for the scores 6–7 (2–7) , 6–2, 7–6 (7–3)?",
    "question_th": "มีผลลัพธ์ที่แตกต่างกันกี่แบบสำหรับคะแนน 6–7 (2–7) , 6–2, 7–6 (7–3)",
    "context": "CREATE TABLE table_29026564_9 (result VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT writer FROM table_29039942_1 WHERE episode = 3",
    "question_en": "Who was the writer for episode 3?",
    "question_th": "ใครเป็นคนเขียนบทตอนที่ 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_en": "What was the original airdate for the episode written by daisuke habara and directed by akimitsu sasaki",
    "question_th": "ตอนที่ออกอากาศครั้งแรกคือวันที่ใด ซึ่งเขียนโดย daisuke habara และกำกับโดย 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_en": "What episode did tomoyuki furumaya",
    "question_th": "โทโมยูกิ ฟุรุมายะทำตอนไหน",
    "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_en": "What is the earliest round where collingswood lost by 36 points?",
    "question_th": "รอบแรกสุดที่คอลลิงส์วูดแพ้ 36 แต้มคือรอบไหน?",
    "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_en": "What was the score on saturday, 26 june 7:10pm?",
    "question_th": "คะแนนในวันเสาร์ที่ 26 มิถุนายน 19:10 น. เป็นเท่าไหร่?",
    "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_en": "What is the round number of the round against melbourne on saturday, 4 april 2:10pm?",
    "question_th": "วันเสาร์ที่ 4 เมษายน เวลา 14.10 น. เลขรอบคือเท่าไร?",
    "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_en": "Which venue did collingsworth play essendon in when they had the 3rd position on the ladder?",
    "question_th": "คอลลิงส์เวิร์ธเล่นเอสเซนดอนในสถานที่ใดเมื่อพวกเขาได้อันดับที่ 3 บนบันได?",
    "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_en": "Was the round where they were in 6th at home or away?",
    "question_th": "รอบที่พวกเขาอยู่อันดับ 6 ในบ้านหรือนอกบ้าน?",
    "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_en": "What was the previous school for the forward with a height of  ft5in (m)?",
    "question_th": "โรงเรียนก่อนหน้าสำหรับกองหน้าที่มีความสูง 5 นิ้ว (ม.) คืออะไร?",
    "context": "CREATE TABLE table_29050051_3 (previous_school VARCHAR, height VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT MIN(_number) FROM table_29050051_3",
    "question_en": "What is the lowest listed number for a player?",
    "question_th": "หมายเลขต่ำสุดสำหรับผู้เล่นคืออะไร?",
    "context": "CREATE TABLE table_29050051_3 (_number INTEGER)"
  },
  {
    "answer": "SELECT name FROM table_29050051_3 WHERE previous_school = \"South Kent School / Brentwood HS\"",
    "question_en": "Who previously attended south kent school / brentwood hs?",
    "question_th": "ใครเคยเข้าเรียนที่ 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_en": "What is the highest number a guard from brophy college prep wore?",
    "question_th": "ยามจากโรงเรียนเตรียมอุดมศึกษา Brophy สวมชุดหมายเลขสูงสุดคือเท่าไร?",
    "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_en": "How many directed by entries have UK viewership over 6.16 million?",
    "question_th": "มีกี่รายการที่กำกับโดยรายการที่มีผู้ชมในสหราชอาณาจักรมากกว่า 6.16 ล้านคน?",
    "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_en": "Who directed the episode with a UK viewership of exactly 5.77 million?",
    "question_th": "ใครเป็นผู้กำกับตอนนี้โดยมีผู้ชมในสหราชอาณาจักร 5.77 ล้านคนกันแน่?",
    "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_en": "What was the airdate of the episode with a UK viewership of 6.02 million?",
    "question_th": "ออกอากาศเมื่อใดโดยมีผู้ชมในสหราชอาณาจักร 6.02 ล้านคน",
    "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_en": "Who directed the episode with UK viewership of 6.09 million?",
    "question_th": "ใครเป็นผู้กำกับตอนที่มีผู้ชมในสหราชอาณาจักร 6.09 ล้านคน?",
    "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_en": "Name the general classification for mauricio soler",
    "question_th": "ตั้งชื่อการจำแนกประเภททั่วไปสำหรับ 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_en": "Name the general classification for steven kruijswijk",
    "question_th": "ตั้งชื่อการจำแนกประเภททั่วไปสำหรับ 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_en": "Name the points classification for levi leipheimer",
    "question_th": "ตั้งชื่อการจำแนกคะแนนสำหรับลีวายส์ ไลป์ไฮเมอร์",
    "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_en": "Name the mountains classification for rabobank and damiano cunego",
    "question_th": "ตั้งชื่อการจำแนกประเภทภูเขาสำหรับ rabobank และ 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_en": "Name the team classification for thomas de gendt",
    "question_th": "ตั้งชื่อการแบ่งประเภททีมสำหรับ 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_en": "What is listed in built for when the original number is 24d?",
    "question_th": "รายการที่สร้างขึ้นเมื่อหมายเลขเดิมคือ 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_en": "What is the season # when ther are 5.3 million U.S viewers?",
    "question_th": "ซีซั่น # คืออะไรเมื่อมีผู้ชม 5.3 ล้านคนในสหรัฐฯ?",
    "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_en": "What are the titles of episodes written by Eric Trueheart?",
    "question_th": "ตอนที่เขียนโดย 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_en": "Who were the writers of episode/s first aired in the US on June 9, 2012?",
    "question_th": "ใครคือผู้เขียนบทที่ออกอากาศครั้งแรกในสหรัฐอเมริกาเมื่อวันที่ 9 มิถุนายน 2555",
    "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_en": "Who were the writers of the episodes directed by Greg Sullivan and which first aired on July 21, 2012?",
    "question_th": "ใครคือผู้เขียนตอนที่กำกับโดย Greg Sullivan และออกอากาศครั้งแรกเมื่อวันที่ 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_en": "Which episode/s were written by Evan Gore?",
    "question_th": "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_en": "Which team was the away team when home team was essendon?",
    "question_th": "ทีมไหนเป็นทีมเยือนตอนเจ้าบ้านเป็นเอสเซนดอน?",
    "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_en": "How many scores were there for the home team when the  away team was fitzroy?",
    "question_th": "เจ้าบ้านมีกี่แต้มเมื่อทีมเยือนฟิตซ์รอย?",
    "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_en": "Which team was the away team when the home team was north melbourne?",
    "question_th": "ทีมไหนเป็นทีมเยือนตอนเจ้าบ้านอยู่เมลเบิร์นเหนือ?",
    "context": "CREATE TABLE table_29090919_1 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_29090919_1 WHERE home_team = \"Melbourne\"",
    "question_en": "What is the date of the game when the home team is melbourne?",
    "question_th": "เกมเจ้าบ้านเจอเมลเบิร์นวันไหน?",
    "context": "CREATE TABLE table_29090919_1 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT singer_s_ FROM table_29135051_2 WHERE ratings = \"1.45m\"",
    "question_en": "Name the singer for 1.45m",
    "question_th": "ตั้งชื่อนักร้อง 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_en": "Name the singer for joe wilkinson",
    "question_th": "ตั้งชื่อนักร้องให้ 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_en": "Name the singer for bruce forsyth",
    "question_th": "ตั้งชื่อนักร้องให้กับ 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_en": "Name the number of ratings for bruce forsyth",
    "question_th": "ตั้งชื่อจำนวนการให้คะแนนสำหรับ 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_en": "Name the guest for 1.64m ratings",
    "question_th": "ตั้งชื่อแขกสำหรับการให้คะแนน 1.64m",
    "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_en": "What was the constructor in the Belgian Grand Prix round?",
    "question_th": "อะไรคือตัวสร้างในรอบ Belgian Grand Prix?",
    "context": "CREATE TABLE table_2911781_3 (constructor VARCHAR, grand_prix VARCHAR)"
  },
  {
    "answer": "SELECT fastest_lap FROM table_2911781_3 WHERE rd = 15",
    "question_en": "Who had the fastest lap in round 15?",
    "question_th": "ใครมีรอบเร็วที่สุดในรอบ 15?",
    "context": "CREATE TABLE table_2911781_3 (fastest_lap VARCHAR, rd VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_29126507_1 WHERE home_team = \"Essendon\"",
    "question_en": "When was the home team Essendon? ",
    "question_th": " เอสเซนดอนเจ้าบ้านมาเมื่อไหร่?",
    "context": "CREATE TABLE table_29126507_1 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT ground FROM table_29126507_1 WHERE away_team = \"Richmond\"",
    "question_en": "When Richmond played as the away team, what was the ground?",
    "question_th": "เมื่อริชมอนด์เล่นเป็นทีมเยือนสนามอะไร?",
    "context": "CREATE TABLE table_29126507_1 (ground VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_29126507_1 WHERE home_team = \"Fitzroy\"",
    "question_en": "When did Fitzroy play as the home team?",
    "question_th": "ฟิตซ์รอยเล่นเป็นเจ้าบ้านเมื่อไหร่?",
    "context": "CREATE TABLE table_29126507_1 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT scores FROM table_29141354_1 WHERE episode = \"01x06\"",
    "question_en": "what was the result on 01x06",
    "question_th": "ผลลัพธ์ในวันที่ 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_en": "what was the size when tom daley appeared",
    "question_th": "ตอนที่ทอม เดลีย์ปรากฏตัวมีขนาดเท่าไหร่",
    "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_en": "How many scores had an episode of 03x06?",
    "question_th": "ตอนที่ 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_en": "When id the episode broadcast with Mark Webber as Jamie and John's guest?",
    "question_th": "ตอนที่ฉันออกอากาศโดยมี Mark Webber เป็นแขกรับเชิญของ Jamie และ John?",
    "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_en": "What date did the episode with Andy Murray as Jamie and John's guest first broadcast?",
    "question_th": "ตอนที่ Andy Murray เป็นแขกรับเชิญของ Jamie และ John ออกอากาศครั้งแรกเมื่อใด",
    "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_en": "How many items are listed under 'andrew and georgies guest lee mack replaced andrew flint as team captain for one week' for episode 04x04?",
    "question_th": "มีรายการกี่รายการที่อยู่ใน 'แอนดรูว์และจอร์จีส์ แขกรับเชิญลี แม็ค แทนที่แอนดรูว์ ฟลินท์เป็นกัปตันทีมเป็นเวลาหนึ่งสัปดาห์' สำหรับตอนที่ 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_en": "who guest starred on the episode with a 1.44m rating",
    "question_th": "ที่เป็นแขกรับเชิญในตอนนี้ด้วยเรตติ้ง 1.44m",
    "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_en": "when was the episode on which barbara windsor and heston blumenthal guest starred broadcasted",
    "question_th": "ตอนที่เป็นตอนที่บาร์บาราวินด์เซอร์และแขกรับเชิญเฮสตันบลูเมนธาลออกอากาศคือเมื่อไหร่",
    "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_en": "how many broadcaste dates features the overtones",
    "question_th": "จำนวนวันที่ออกอากาศมีเสียงหวือหวา",
    "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_en": "how many guest stars did the episode that was broadcasted 11september2012 have",
    "question_th": "ตอนที่ออกอากาศ 11 กันยายน 2555 มีดารารับเชิญกี่คน",
    "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_en": "when was the episode guest starring michael mcintyre and alex james broadcasted",
    "question_th": "แขกรับเชิญตอนที่นำแสดงโดย michael mcintyre และ alex james ออกอากาศเมื่อใด",
    "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_en": "which episode did sarah millican and grayson perry appear in",
    "question_th": "Sarah Millican และ Grayson Perry ปรากฏตัวในตอนไหน",
    "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_en": "When were episodes first broadcast with jessica ennis as andrew and jacks guest?",
    "question_th": "ออกอากาศตอนแรกโดยมีเจสสิก้า เอนนิสเป็นแขกรับเชิญของแอนดรูว์และแจ็คส์ออกอากาศครั้งแรกเมื่อใด",
    "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_en": "Who directed the episode that is written by Eli Attie and production code is 2t5018?",
    "question_th": "ใครกำกับตอนที่เขียนโดย Eli Attie และรหัสการผลิตคือ 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_en": "How many episodes are 122 in the series?",
    "question_th": "ซีรีย์ 122 มีกี่ตอนคะ?",
    "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_en": "What was the score for the episode with Matt Smith as Andrew and Jack's guest?",
    "question_th": "คะแนนสำหรับตอนที่มีแมตต์ สมิธเป็นแขกรับเชิญของแอนดรูว์และแจ็คเป็นอย่างไรบ้าง",
    "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_en": "When was the episode with Amy Williams as Andrew and Jack's guest broadcast?",
    "question_th": "ตอนไหนที่ Amy Williams เป็นแขกรับเชิญของ Andrew และ Jack?",
    "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_en": "What is the last episode in the season that had 3.91 million viewers in the US?",
    "question_th": "ตอนสุดท้ายของซีซันที่มีผู้ชม 3.91 ล้านคนในสหรัฐอเมริกาคือตอนใด",
    "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_en": "How many episodes were written by Warren Leight?",
    "question_th": "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–6, 7–6 (7–5) , [5–10]\"",
    "question_en": "How many championships were there where the score was  4–6, 7–6 (7–5) , [5–10]?",
    "question_th": "มีการแข่งขันชิงแชมป์กี่รายการโดยมีคะแนน 4–6, 7–6 (7–5) , [5–10]?",
    "context": "CREATE TABLE table_29163303_4 (championship VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_29163303_4 WHERE score = \"6–1, 4–6, [12–10]\"",
    "question_en": "On what surface was it the year when the score was 6–1, 4–6, [12–10]?",
    "question_th": "ปีที่คะแนนเป็น 6–1, 4–6, [12–10] บนพื้นผิวใด",
    "context": "CREATE TABLE table_29163303_4 (surface VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(opponent) FROM table_29163303_4 WHERE score = \"6–4, 3–6, [11–13]\"",
    "question_en": "How many times has the score been 6–4, 3–6, [11–13]?",
    "question_th": "กี่ครั้งแล้วที่คะแนนเป็น 6–4, 3–6, [11–13]?",
    "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_en": "Who are the outgoing head coaches whose manner of departure is Gardening Leave 1?",
    "question_th": "ใครคือเฮดโค้ชที่ลาออกซึ่งมีรูปแบบการออกเดินทางแบบ 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_en": "Who was the incoming head coach after Wan Jamak Wan Hassan quit the coaching job?",
    "question_th": "ใครคือหัวหน้าโค้ชคนใหม่ หลังจากที่ วัน จามัก วัน ฮัสซัน ลาออกจากงานโค้ช?",
    "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_en": "Who had the fastest lap in round 1?",
    "question_th": "ใครมีรอบเร็วที่สุดในรอบที่ 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_en": "Who had the pole position when matt davies had the fastest lap?",
    "question_th": "ใครได้ตำแหน่งโพลโพสิชั่นเมื่อแมตต์ เดวีส์ทำเวลาต่อรอบได้เร็วที่สุด?",
    "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_en": "Who had the pole position(s) when rob guiver won and kyle ryde had the fastest lap?",
    "question_th": "ใครได้ตำแหน่งโพลโพสิชั่นเมื่อ ร็อบ กีเวอร์ ชนะ และไคล์ ไรด์ทำรอบได้เร็วที่สุด?",
    "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_en": "What is the earliest year in which the result is championship US Open (2)?",
    "question_th": "ปีแรกสุดที่ผลการแข่งขันคือแชมป์ 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_en": "Who was Bob Bryan's partner in the Championship where the result is US Open (2)?",
    "question_th": "ใครคือหุ้นส่วนของ Bob Bryan ในการแข่งขัน Championship โดยผลการแข่งขันคือ 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_en": "What are the results of those matches where the championship is French Open?",
    "question_th": "ผลการแข่งขันที่ได้แชมป์เฟรนช์โอเพ่นเป็นอย่างไรบ้าง?",
    "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_en": "on how many days did the episode written by harold hayes jr. & craig s. phillips originally air",
    "question_th": "ตอนนี้เขียนโดย harold hayes jr. กี่วัน และเครกเอส ฟิลลิปส์แต่เดิมเป็นแอร์",
    "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_en": "how many episodes originally aired january19,2013",
    "question_th": "เดิมออกอากาศกี่ตอน 19 มกราคม 2556",
    "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_en": "which episode of the season aired on october20,2012",
    "question_th": "ซึ่งตอนของซีซั่นนี้ออกอากาศวันที่ 20 ตุลาคม 2555",
    "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_en": "Which team was the opponent in game 5?",
    "question_th": "ทีมใดเป็นคู่ต่อสู้ในเกมที่ 5?",
    "context": "CREATE TABLE table_29181479_3 (team VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT series FROM table_29181479_5 WHERE game = 5",
    "question_en": "Lis the series for game 5.",
    "question_th": "รายการซีรีส์สำหรับเกมที่ 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_en": "What was the final in the game that boris diaw (34) scored the most points?",
    "question_th": "รอบชิงชนะเลิศในเกมที่ บอริส ดิยอว์ (34) ทำแต้มได้มากที่สุดคือเกมไหน?",
    "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_en": "What is the figure for December 28 for ang tanging ina mo (last na 'to!)?",
    "question_th": "ตัวเลขของวันที่ 28 ธันวาคมสำหรับ 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_en": "What is the figure for December 27 for ang tanging ina mo (last na 'to!)?",
    "question_th": "ตัวเลขของวันที่ 27 ธันวาคมสำหรับ 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_en": "How many figures are provided for December 28 for Rosario?",
    "question_th": "วันที่ 28 ธันวาคม โรซาริโอมีตัวเลขกี่ตัวเลข",
    "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_en": "What film earmed p3.2 million on December 25?",
    "question_th": "ภาพยนตร์เรื่องใดทำรายได้ 3.2 ล้านปอนด์ในวันที่ 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_en": "What was the Friday June 3 practice time of the rider who did 20' 50.45 108.623mph on Thursday, June 2?",
    "question_th": "เวลาฝึกซ้อมในวันศุกร์ที่ 3 มิถุนายนของนักบิดที่ทำได้ 20' 50.45 108.623 ไมล์ต่อชั่วโมงในวันพฤหัสบดีที่ 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_en": "What's the Wednesday, June 1 practice time for the rider that did 21' 05.87 107.300mph on Thursday, June 2?",
    "question_th": "เวลาฝึกซ้อมวันพุธที่ 1 มิถุนายนสำหรับนักบิดที่ทำความเร็วได้ 21' 05.87 107.300 ไมล์ต่อชั่วโมงในวันพฤหัสบดีที่ 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_en": "How many people wrote episode 9 in the season that was directed by Ernest Dickerson?",
    "question_th": "มีกี่คนที่เขียนตอนที่ 9 ในซีซั่นที่กำกับโดย 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_en": "Who wrote the episode that was directed by Milan Cheylov?",
    "question_th": "ใครเป็นคนเขียนตอนที่กำกับโดย 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_en": "Who was the EP winning team when the CP winning team was Dave Clark and the GM winning team was Stuart Northrup?",
    "question_th": "ใครคือทีมที่ชนะ EP เมื่อทีมที่ชนะ CP คือ Dave Clark และทีมที่ชนะ GM คือ 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_en": "Who was the CM winning team when the FM winning team was #17 Elva - Ford?",
    "question_th": "ทีมที่ชนะ CM คือใครเมื่อทีมที่ชนะ FM คือ #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_en": "Who the GM winning team when the EP winning team was #37 Porsche? ",
    "question_th": " ใครคือทีมที่ชนะของ GM เมื่อทีมที่ชนะ EP คือ #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_en": "Who was the EP winning team when the FM winning team was Brabham - Ford and the HM winning team was Osca?",
    "question_th": "ทีมที่ชนะ EP คือใครเมื่อทีมที่ชนะ FM คือ Brabham - Ford และทีมที่ชนะ HM คือ 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_en": "Who was the HP winning team when the EP winning team was Hans Zereis and the GM winning team was Charles Gibson? ",
    "question_th": "ใครคือทีมที่ชนะ HP เมื่อทีมที่ชนะ EP คือ Hans Zereis และทีมที่ชนะ GM คือ 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_en": "what was the name of the team opponent to elfsborg",
    "question_th": "คู่ต่อสู้ของทีมเอลฟ์สบอร์กชื่ออะไร",
    "context": "CREATE TABLE table_29261823_10 (team VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_29261823_10 WHERE aggregate_score = \"L 1–2\"",
    "question_en": "what is the name of the team which aggregate score is l 1–2",
    "question_th": "ชื่อทีมซึ่งคะแนนรวมคือ l 1–2 คืออะไร",
    "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_en": "what is the aggregate score for the europa league play off round contest and round",
    "question_th": "คะแนนรวมสำหรับการแข่งขันยูโรปาลีกรอบเพลย์ออฟและรอบคือเท่าใด",
    "context": "CREATE TABLE table_29261823_10 (aggregate_score VARCHAR, contest_and_round VARCHAR)"
  },
  {
    "answer": "SELECT sydney FROM table_2923917_4 WHERE distance = \"10km\"",
    "question_en": "How many dollars is listed under Sydney when the distance is 10km?",
    "question_th": "ซิดนีย์มีสกุลเงินกี่ดอลลาร์เมื่อระยะทาง 10 กม.",
    "context": "CREATE TABLE table_2923917_4 (sydney VARCHAR, distance VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(distance) FROM table_2923917_4 WHERE brisbane = \"$3.80\"",
    "question_en": "How many distance places have brisbane at $3.80?",
    "question_th": "ระยะทางบริสเบนมีกี่แห่งที่ $3.80",
    "context": "CREATE TABLE table_2923917_4 (distance VARCHAR, brisbane VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(melbourne) FROM table_2923917_4 WHERE distance = \"15km\"",
    "question_en": "How many listings under Melbourne has a distance at 15km?",
    "question_th": "มีกี่รายการในเมลเบิร์นที่มีระยะทาง 15 กม.",
    "context": "CREATE TABLE table_2923917_4 (melbourne VARCHAR, distance VARCHAR)"
  },
  {
    "answer": "SELECT distance FROM table_2923917_4 WHERE brisbane = \"$4.80\"",
    "question_en": "What is the distance when brisbane is $4.80?",
    "question_th": "ระยะทางที่บริสเบนอยู่ที่ $4.80 คืออะไร?",
    "context": "CREATE TABLE table_2923917_4 (distance VARCHAR, brisbane VARCHAR)"
  },
  {
    "answer": "SELECT distance FROM table_2923917_4 WHERE brisbane = \"$5.20\"",
    "question_en": "What is the distance when brisbane is $5.20?",
    "question_th": "ระยะทางบริสเบนอยู่ที่ $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_en": "How many scores did Helen Sildna give when Iiris Vesik gave a 3?",
    "question_th": "เฮเลน ซิลดา ให้คะแนนเท่าไร เมื่อ อิริส เวสิก ให้ 3 คะแนน",
    "context": "CREATE TABLE table_29261215_4 (helen_sildna VARCHAR, iiris_vesik VARCHAR)"
  },
  {
    "answer": "SELECT MIN(points) FROM table_29261215_4 WHERE peeter_vähi = 9",
    "question_en": "What is the maximum points received when Peeter Vähl gave a 9?",
    "question_th": "คะแนนสูงสุดที่ได้รับเมื่อ Peeter Vähl ให้ 9 คือเท่าใด",
    "context": "CREATE TABLE table_29261215_4 (points INTEGER, peeter_vähi VARCHAR)"
  },
  {
    "answer": "SELECT manager FROM table_29250534_1 WHERE club = \"FC Inter\"",
    "question_en": "Who is the manager for the fc inter club?",
    "question_th": "ใครคือผู้จัดการทีม fc inter club?",
    "context": "CREATE TABLE table_29250534_1 (manager VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_29250534_1 WHERE location = \"Kuopio\"",
    "question_en": "Which club is at the location of kuopio?",
    "question_th": "สโมสรไหนอยู่โกปิโอ?",
    "context": "CREATE TABLE table_29250534_1 (club VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(stadium) FROM table_29250534_1 WHERE club = \"Haka\"",
    "question_en": "How many stadiums have haka as the club?",
    "question_th": "มีฮากะเป็นสโมสรกี่สนาม?",
    "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_en": "Who is the artist 2 on the setlist where the artist 1 is Sparfunk & D-Code?",
    "question_th": "ศิลปินคนที่ 2 ใน setlist คือใคร โดยศิลปินคนที่ 1 คือ 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_en": "Who is the mix artist for the closing party setlist where artist 1 is Dillinja and Skibadee?",
    "question_th": "ศิลปินมิกซ์สำหรับปาร์ตี้ปิดคือใคร โดยศิลปินที่ 1 คือ ดิลลินจา และสกิบาดี?",
    "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_en": "On how many different dates was the episode written by Charlie Day aired for the first time?",
    "question_th": "ตอนที่เขียนโดย Charlie Day ออกอากาศครั้งแรกกี่วัน?",
    "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_en": "Who are the writers of the episode with production code IP02009?",
    "question_th": "ใครคือผู้เขียนตอนที่มีรหัสการผลิต 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_en": "How many different titles does the episode with production code IP02003 have?",
    "question_th": "ตอนที่มีรหัสการผลิต IP02003 มีชื่อเรื่องที่แตกต่างกันกี่เรื่อง",
    "context": "CREATE TABLE table_29273115_1 (title VARCHAR, production_code VARCHAR)"
  },
  {
    "answer": "SELECT written_by FROM table_29273182_1 WHERE production_code = \"IP03007\"",
    "question_en": "Who wrote the episode with a production code of ip03007?",
    "question_th": "ใครเป็นคนเขียนตอนด้วยรหัสการผลิต 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_en": "What is the name of episode number 29 in the series?",
    "question_th": "ตอนที่ 29 ของซีรีส์ชื่ออะไรคะ?",
    "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_en": "Who wrote the episode with ip03012 as the production code?",
    "question_th": "ใครเป็นคนเขียนตอนที่มี ip03012 เป็นรหัสการผลิต?",
    "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_en": "Who directed the episode with production code ip03010?",
    "question_th": "ใครกำกับตอนด้วยรหัสการผลิต ip03010?",
    "context": "CREATE TABLE table_29273182_1 (directed_by VARCHAR, production_code VARCHAR)"
  },
  {
    "answer": "SELECT MIN(no_in_season) FROM table_29273390_1",
    "question_en": "What is the least amount in each season? ",
    "question_th": " ในแต่ละฤดูกาลมีจำนวนเงินน้อยที่สุดคือเท่าใด?",
    "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_en": "Who directed an episode with 1.19 million? ",
    "question_th": " ใครกำกับตอนได้เงิน 1.19 ล้าน?",
    "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_en": "At what location was the March 17 race held?",
    "question_th": "การแข่งขันวันที่ 17 มีนาคมจัดขึ้นที่สถานที่ใด",
    "context": "CREATE TABLE table_29285076_2 (location VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_29285076_2 WHERE fastest_lap = \"Zach Veach\"",
    "question_en": "What location did Zach Veach have the fastest lap?",
    "question_th": "Zach Veach ทำรอบได้เร็วที่สุดที่ตำแหน่งใด",
    "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_en": "Where was the race with Luke Ellery as fastest lap and Wayne Boyd as winning driver?",
    "question_th": "การแข่งขันที่ไหนโดยที่ Luke Ellery เป็นรอบที่เร็วที่สุดและ Wayne Boyd เป็นนักแข่งที่ชนะ",
    "context": "CREATE TABLE table_29285076_2 (location VARCHAR, fastest_lap VARCHAR, winning_driver VARCHAR)"
  },
  {
    "answer": "SELECT area__km²_ FROM table_29289372_1 WHERE income_classification = \"1st Class\" AND population__2010_ = 318676",
    "question_en": "When 318676 is the population of 2010 and 1st class is the income classification what is the area in kilometers squared?",
    "question_th": "เมื่อ 318676 คือประชากรของปี 2010 และชั้น 1 เป็นการจำแนกรายได้ พื้นที่เป็นกิโลเมตรยกกำลังสองคือเท่าใด",
    "context": "CREATE TABLE table_29289372_1 (area__km²_ 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_en": "When itogon, benguet is the city/municipality and 1st class is the income classification how many measurements of population in 2010?",
    "question_th": "เมื่อ itogon, benguet คือเมือง/เทศบาล และชั้น 1 คือ การจำแนกรายได้ ปี 2553 วัดจำนวนประชากรได้กี่ครั้ง",
    "context": "CREATE TABLE table_29289372_1 (population__2010_ VARCHAR, income_classification VARCHAR, city_municipality VARCHAR)"
  },
  {
    "answer": "SELECT pop_density__per_km²_ FROM table_29289372_1 WHERE area__km²_ = \"82.74\"",
    "question_en": "When 82.74 is the area in kilometers squared what is the pop.density (per km2)?",
    "question_th": "เมื่อ 82.74 คือพื้นที่เป็นกิโลเมตรยกกำลัง 2 ค่าความหนาแน่นของป๊อป (ต่อ km2) เป็นเท่าใด",
    "context": "CREATE TABLE table_29289372_1 (pop_density__per_km²_ VARCHAR, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT city_municipality FROM table_29289372_1 WHERE area__km²_ = \"106\"",
    "question_en": "When 106 is the area in kilometers squared what is the city/municipality?",
    "question_th": "เมื่อ 106 คือพื้นที่เป็นกิโลเมตรยกกำลังสองของเมือง/เทศบาลเป็นเท่าใด",
    "context": "CREATE TABLE table_29289372_1 (city_municipality VARCHAR, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(title) FROM table_29273243_1 WHERE production_code = \"IP04004\"",
    "question_en": "How many episodes have the production code ip04004?",
    "question_th": "รหัสการผลิต 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_en": "Who wrote episode number 11?",
    "question_th": "ใครเป็นคนเขียนตอนที่ 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_en": "Who was the challenger when guillaume brahimi was the iron chef?",
    "question_th": "ใครคือผู้ท้าชิงเมื่อกิโยม บราฮิมีเป็นเชฟกระทะเหล็ก",
    "context": "CREATE TABLE table_29281529_2 (challenger VARCHAR, iron_chef VARCHAR)"
  },
  {
    "answer": "SELECT iron_chef FROM table_29281529_2 WHERE challenger = \"Herb Faust\"",
    "question_en": "Who was the iron chef when herb Faust was the challenger?",
    "question_th": "ใครคือเชฟเหล็กเมื่อสมุนไพร เฟาสท์เป็นผู้ท้าชิง?",
    "context": "CREATE TABLE table_29281529_2 (iron_chef VARCHAR, challenger VARCHAR)"
  },
  {
    "answer": "SELECT airdate FROM table_29281529_2 WHERE winner = \"Guy Grossi\"",
    "question_en": "What date did the episode air when guy grossi won?",
    "question_th": "ตอนที่ Guy Grossi ชนะออกอากาศวันไหน?",
    "context": "CREATE TABLE table_29281529_2 (airdate VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT australian_cast, _2012 FROM table_29289213_1 WHERE character = \"Lily Cahill\"",
    "question_en": "Who played Lily Cahill in the Australian 2012 production?",
    "question_th": "ใครรับบทลิลี่ เคฮิลล์ในการผลิตภาพยนตร์ออสเตรเลียนปี 2012",
    "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ărceanu 6–3, 6–4\"",
    "question_en": "which tournament was the champion nick saviano florin segărceanu 6–3, 6–4?",
    "question_th": "ทัวร์นาเมนต์ใดคือแชมป์ Nick Saviiano Florin Segărceanu 6–3, 6–4?",
    "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_en": "Which tournament was runner-up  paul annacone eric korita?",
    "question_th": "รองชนะเลิศคือ พอล อันนาโคเน่ เอริค โคริต้า ในทัวร์นาเมนท์ใด",
    "context": "CREATE TABLE table_29296103_10 (tournament VARCHAR, runner_up VARCHAR)"
  },
  {
    "answer": "SELECT semifinalists FROM table_29296103_10 WHERE runner_up = \"Sammy Giammalva\"",
    "question_en": "Who were the semifinalists when sammy giammalva was  runner-up?",
    "question_th": "ใครคือผู้เข้ารอบรองชนะเลิศเมื่อแซมมี่ เกียมมัลวา รองชนะเลิศ?",
    "context": "CREATE TABLE table_29296103_10 (semifinalists VARCHAR, runner_up VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_29296103_10 WHERE champion = \"Pat Cash 4–6, 6–4, 6–3\"",
    "question_en": "which tournament was the champion pat cash 4–6, 6–4, 6–3?",
    "question_th": "ทัวร์นาเมนต์ใดที่เป็นแชมป์เปี้ยนตบเงินสด 4–6, 6–4, 6–3?",
    "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–6, 6–1, 6–2\"",
    "question_en": "Which tournament was on the week of  24 october and champion is matt doyle 1–6, 6–1, 6–2?",
    "question_th": "ทัวร์นาเมนต์ใดในสัปดาห์ที่ 24 ตุลาคมและแชมป์คือแมตต์ดอยล์ 1–6, 6–1, 6–2?",
    "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 – $75,000 – S32/D16\" AND champion = \"Matt Doyle 1–6, 6–1, 6–2\"",
    "question_en": "How many runner ups were there for the cologne , germany carpet – $75,000 – s32/d16 when the champion was matt doyle 1–6, 6–1, 6–2?",
    "question_th": "มีรองชนะเลิศกี่คนสำหรับพรมโคโลญจน์เยอรมนี - 75,000 ดอลลาร์ - 32/d16 เมื่อแชมป์คือแมตต์ ดอยล์ 1–6, 6–1, 6–2",
    "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_en": "which train number departs pune at 13:00",
    "question_th": "รถไฟขบวนไหนออกจากปูเน่เวลา 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_en": "which train number arrives in lonavla at 17:45",
    "question_th": "รถไฟขบวนไหนถึงโลนาฟลาเวลา 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_en": "which train name arrives in lonavla at 17:45",
    "question_th": "รถไฟชื่อไหนมาถึงโลนาฟลาเวลา 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_en": "how many trains run daily to lonavla and arrive at 12:25",
    "question_th": "เส้นทางรถไฟไปยัง โลนาฟลา มีให้บริการกี่สายต่อวัน และมาถึงเวลา 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_en": "how many trains have the number 99808",
    "question_th": "มีรถไฟกี่ขบวนที่มีหมายเลข 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_en": "what time does the train that arrives in lonavla at 22:22 depart pune",
    "question_th": "รถไฟที่มาถึงโลนาฟลาเวลา 22:22 น. ออกเดินทางเวลาใด",
    "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_en": "Who became the champion for the 1984 Grand Prix where Marty Davis was the runner-up?",
    "question_th": "ใครเป็นแชมป์กรังด์ปรีซ์ปี 1984 โดยที่ Marty Davis เป็นรองแชมป์",
    "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_en": "Who were the quarter-finalists in the event where the champion was Terry Moor 3-6, 7-6, 6-2?",
    "question_th": "ใครคือผู้เข้ารอบก่อนรองชนะเลิศในกรณีที่แชมป์คือเทอร์รี่ มัวร์ 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_en": "Who was the champion in the tournament where Scott Davis Chris Dunk was the runner up?",
    "question_th": "ใครคือแชมป์ในทัวร์นาเมนต์ที่ Scott Davis Chris Dunk เป็นรองแชมป์?",
    "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_en": "Who were the semifinalists in the tournament where Mats Wilander 7-6, 6-3 was declared the champion?",
    "question_th": "ใครคือผู้เข้ารอบรองชนะเลิศในทัวร์นาเมนต์ที่ Mats Wilander 7-6, 6-3 ได้รับการประกาศให้เป็นแชมป์",
    "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_en": "How many years saw 3 hurricanes wherein the strongest storm was level three?",
    "question_th": "กี่ปีมาแล้วที่พายุเฮอริเคน 3 ครั้ง โดยพายุที่รุนแรงที่สุดคือระดับ 3?",
    "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_en": "What is the largest overall number of major hurricanes?",
    "question_th": "พายุเฮอริเคนใหญ่โดยรวมมีจำนวนมากที่สุดคือเท่าใด",
    "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_en": "When the death is none what is the number of major hurricanes?",
    "question_th": "เมื่อความตายไม่มี พายุเฮอริเคนใหญ่จำนวนเท่าใด?",
    "context": "CREATE TABLE table_2930244_3 (number_of_major_hurricanes VARCHAR, deaths VARCHAR)"
  },
  {
    "answer": "SELECT MIN(number_of_hurricanes) FROM table_2930244_3",
    "question_en": "What is the lowest overall number of hurricanes?",
    "question_th": "จำนวนพายุเฮอริเคนโดยรวมต่ำสุดคือเท่าใด",
    "context": "CREATE TABLE table_2930244_3 (number_of_hurricanes INTEGER)"
  },
  {
    "answer": "SELECT country FROM table_29302711_13 WHERE prize_money__usd_ = 66400",
    "question_en": "What country offered a prize of 66400 US dollars?",
    "question_th": "ประเทศใดเสนอเงินรางวัล 66,400 ดอลลาร์สหรัฐ?",
    "context": "CREATE TABLE table_29302711_13 (country VARCHAR, prize_money__usd_ VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_29302711_13 WHERE name = \"Mark Cox\"",
    "question_en": "What country does the player named Mark Cox play for?",
    "question_th": "นักเตะชื่อมาร์ค ค็อกซ์ ลงเล่นให้กับประเทศอะไร?",
    "context": "CREATE TABLE table_29302711_13 (country VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(deaths) FROM table_2930244_4 WHERE number_of_hurricanes = 6",
    "question_en": "How many deaths did the eyar with exactly 6 hurricanes have?",
    "question_th": "eyar ที่มีพายุเฮอริเคน 6 ลูกมีผู้เสียชีวิตกี่ราย?",
    "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_en": "What is the maximum number of tropical storms in the year that had exactly 34 deaths?",
    "question_th": "พายุโซนร้อนมีผู้เสียชีวิตสูงสุด 34 รายในปีนั้นคือเท่าใด",
    "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_en": "How many deaths did the year with 10 hurricanes and exactly 1 major hurricane have?",
    "question_th": "ปีที่มีพายุเฮอริเคน 10 ลูกและมีพายุเฮอริเคนใหญ่ 1 ลูกมีผู้เสียชีวิตกี่ราย?",
    "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_en": "Name the number of episodes that jim barnes wrote for 1.82 million viewers",
    "question_th": "ตั้งชื่อจำนวนตอนที่จิม บาร์นส์ เขียนเพื่อผู้ชม 1.82 ล้านคน",
    "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_en": "Name the least number for production code 3x6266",
    "question_th": "ตั้งชื่อตัวเลขที่น้อยที่สุดสำหรับรหัสการผลิต 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_en": "How many characters does Maurice Dean Wint play in the movie Cube?",
    "question_th": "Maurice Dean Wint เล่นตัวละครกี่ตัวในภาพยนตร์ Cube?",
    "context": "CREATE TABLE table_2933761_1 (status VARCHAR, played_by VARCHAR)"
  },
  {
    "answer": "SELECT occupation FROM table_2933761_1 WHERE name = \"Joan Leaven\"",
    "question_en": "What is Joan Leaven's occupation?",
    "question_th": "อาชีพของ Joan Leaven คืออะไร?",
    "context": "CREATE TABLE table_2933761_1 (occupation VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT gender FROM table_2933761_1 WHERE name = \"Quentin\"",
    "question_en": "What gender is Quentin?",
    "question_th": "เควนตินเป็นเพศอะไร?",
    "context": "CREATE TABLE table_2933761_1 (gender VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT played_by FROM table_2933761_1 WHERE occupation = \"Mathematics Student\"",
    "question_en": "Who played the mathematics student?",
    "question_th": "ใครเล่นเป็นนักเรียนคณิตศาสตร์?",
    "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_en": "How many prisons is Joan Leaven connected with?",
    "question_th": "Joan Leaven เกี่ยวข้องกับเรือนจำกี่แห่ง?",
    "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_en": "What is aggressive rider Richie Porte's team classifaction?",
    "question_th": "การแบ่งประเภททีมของ Richie Porte นักบิดผู้ดุดันคืออะไร?",
    "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_en": "Thomas de Gendt performed on what stage as aggressive rider?",
    "question_th": "Thomas de Gendt ขึ้นแสดงบนเวทีใดในฐานะนักบิดผู้ดุดัน?",
    "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_en": "Where Luke Durbridge is the aggressive rider who is listed as the young rider classification?",
    "question_th": "โดยที่ Luke Durbridge เป็นนักแข่งที่ดุดันซึ่งอยู่ในประเภทนักแข่งรุ่นเยาว์?",
    "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_en": "Who is listed under the general classifcation where Ben Swift won and Cameron Meyer was listed under the young rider?",
    "question_th": "ใครอยู่ในรายชื่อภายใต้การจัดประเภททั่วไปที่ Ben Swift ชนะ และ Cameron Meyer มีรายชื่ออยู่ภายใต้นักบิดรุ่นเยาว์",
    "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_en": "Who is the sprint classification where Francisco Ventoso wins?",
    "question_th": "ใครคือประเภทวิ่งที่ Francisco Ventoso ชนะ?",
    "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é\"",
    "question_en": "In the week of what was the runner-up Pat Du Pré?",
    "question_th": "ในสัปดาห์ที่รองแชมป์ แพท ดู เพร คือ?",
    "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_en": "Who were the semifinalists when the runner-up was Peter Feigl?",
    "question_th": "ใครคือผู้เข้ารอบรองชนะเลิศเมื่อรองชนะเลิศคือ 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é\"",
    "question_en": "Who were the semifinalists when the runner-up was Pat Du Pré?",
    "question_th": "ใครคือผู้เข้ารอบรองชนะเลิศเมื่อรองชนะเลิศคือ แพท ดู เพร?",
    "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é\"",
    "question_en": "Who were the semifinalists in the week of 13 November when the runner-up was Pat Du Pré?",
    "question_th": "ใครคือผู้เข้ารอบรองชนะเลิศในสัปดาห์วันที่ 13 พฤศจิกายน ที่รองชนะเลิศคือ แพท ดู เพร?",
    "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_en": "What are the quarterfinalists when the runner up is andrew pattison?",
    "question_th": "เมื่อรองชนะเลิศคือแอนดรูว์ แพตติสันเข้ารอบก่อนรองชนะเลิศมีอะไรบ้าง?",
    "context": "CREATE TABLE table_29302816_8 (quarterfinalists VARCHAR, runner_up VARCHAR)"
  },
  {
    "answer": "SELECT rank_2010 FROM table_293465_1 WHERE country = \"Indonesia\"",
    "question_en": "When indonesia is the country what is the rank of  2010?",
    "question_th": "เมื่ออินโดนีเซียอยู่อันดับไหนในปี 2010?",
    "context": "CREATE TABLE table_293465_1 (rank_2010 VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_293465_1 WHERE rank_2011 = 5",
    "question_en": "When 5 is the rank of 2011 what is the country?",
    "question_th": "เมื่อ 5 คืออันดับของปี 2554 อยู่ประเทศอะไร?",
    "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_en": "When sweden is the country what is the highest production in 2010 (1,000 ton)?",
    "question_th": "เมื่อสวีเดนเป็นประเทศที่ผลิตสูงสุดในปี 2010 (1,000 ตัน) คืออะไร?",
    "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_en": "Valmir Benavides won pole position at which circuit?",
    "question_th": "วัลเมียร์ เบนาวีเดส คว้าตำแหน่งโพลโพซิชั่นในสนามใด?",
    "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_en": "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?",
    "question_th": "ใครคือผู้ชนะในสนามที่ Roberval Andrade คว้าตำแหน่งโพล, Felipe Giaffone ทำรอบได้เร็วที่สุด และ RVR Corinthians Motorsport เป็นทีมที่ชนะ",
    "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_en": "What is the fewest number of 2005 subscribers for Vodafone?",
    "question_th": "จำนวนสมาชิก Vodafone ปี 2548 น้อยที่สุดคือเท่าใด",
    "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_en": "What is the maximum number of 2006 subscribers for Glo Mobile?",
    "question_th": "จำนวนสมาชิกสูงสุดของ Glo Mobile ในปี 2549 คือเท่าใด",
    "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_en": "What is the maximum number of 2006 subscribers for Mobilis?",
    "question_th": "จำนวนสมาชิก Mobilis สูงสุดในปี 2549 คือเท่าใด",
    "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_en": "How many subscribers, in 2006, does Glo Mobile have?",
    "question_th": "Glo Mobile มีสมาชิกกี่คนในปี 2549",
    "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_en": "How many 2006 subscribers are named Vodafone?",
    "question_th": "มีสมาชิกในปี 2549 จำนวนกี่รายที่ชื่อ 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_en": "Name the number of captains for barcelona",
    "question_th": "ระบุจำนวนกัปตันทีมบาร์เซโลนา",
    "context": "CREATE TABLE table_29398373_2 (captain VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT chairman FROM table_29398373_2 WHERE captain = \"Iker Casillas\"",
    "question_en": "Name the chairman for iker casillas",
    "question_th": "ตั้งชื่อประธานของอิเคร์ กาซิยาส",
    "context": "CREATE TABLE table_29398373_2 (chairman VARCHAR, captain VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_29398373_2 WHERE head_coach = \"Javier Clemente\"",
    "question_en": "Name the team for javier clemente",
    "question_th": "ตั้งชื่อทีมให้ฮาเวียร์ คลีเมนเต",
    "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_en": "What is the season # for the production code 3.89?",
    "question_th": "รหัสการผลิต 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_en": "Who wrote the episode that was directed by Kevin Inch?",
    "question_th": "ใครเป็นคนเขียนตอนที่กำกับโดย 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_en": "What is the original air date for the season# 2?",
    "question_th": "ซีซั่น # 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_en": "What is the production code for the episode whose original air date was May15,2000?",
    "question_th": "รหัสการผลิตสำหรับตอนที่ออกอากาศตอนแรกคือ 15 พฤษภาคม 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_en": "What is the former school of the player from Detroit, MI?",
    "question_th": "อดีตโรงเรียนของผู้เล่นจากดีทรอยต์ มิชิแกนคืออะไร?",
    "context": "CREATE TABLE table_29418619_1 (former_school VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_29418619_1 WHERE name = \"Jarrid Famous\"",
    "question_en": "What is the hometown of Jarrid Famous?",
    "question_th": "บ้านเกิดของ Jarrid Famous คืออะไร?",
    "context": "CREATE TABLE table_29418619_1 (hometown VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT _number FROM table_29418619_1 WHERE hometown = \"Tampa, FL\"",
    "question_en": "What number is the player whose hometown is Tampa, FL?",
    "question_th": "ผู้เล่นหมายเลขใดที่มีบ้านเกิดคือแทมปา ฟลอริดา?",
    "context": "CREATE TABLE table_29418619_1 (_number VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_29418619_1 WHERE _number = 31",
    "question_en": "What year is the player whose number is 31?",
    "question_th": "นักเตะหมายเลข 31 ปีไหนครับ?",
    "context": "CREATE TABLE table_29418619_1 (year VARCHAR, _number VARCHAR)"
  },
  {
    "answer": "SELECT height FROM table_29418619_1 WHERE name = \"Anthony Crater\"",
    "question_en": "What is the height of Anthony Crater? ",
    "question_th": " 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_en": "What is the former school of the player from North Port, FL? ",
    "question_th": " อดีตโรงเรียนของผู้เล่นจาก 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_en": "how many countries have remittances in 2008 of 9.07?",
    "question_th": "มีกี่ประเทศที่มีการโอนเงินในปี 2551 ของ 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_en": "how many remittances in 2010 where the remittances is 19.73?",
    "question_th": "มีการส่งเงินกี่ครั้งในปี 2010 โดยที่เงินส่งคือ 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_en": "how many remittances in 2010 for nigeria?",
    "question_th": "มีการส่งเงินไปไนจีเรียกี่ครั้งในปี 2010?",
    "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_en": "how many countiers had 2009 remittances of 6.02?",
    "question_th": "มีกี่ประเทศที่มีการโอนเงินในปี 2552 เป็นจำนวน 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_en": "What is the highest year with field reporter Steve Lyons?",
    "question_th": "ปีสูงสุดกับนักข่าวภาคสนาม สตีฟ ลีออนส์ คือปีไหน?",
    "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_en": "What is every pregame analyst with Chris Rose as trophy presenter?",
    "question_th": "นักวิเคราะห์ก่อนเกมทุกคนที่มี Chris Rose เป็นผู้นำเสนอถ้วยรางวัลคืออะไร?",
    "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_en": "Who is every play-by-play announcer when Chris Rose is the trophy presenter?",
    "question_th": "ใครคือผู้ประกาศแบบทีละนัดเมื่อคริส โรสเป็นผู้นำเสนอถ้วยรางวัล?",
    "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_en": "How many teams came in fourth when Otsuka Pharmaceuticals won?",
    "question_th": "มีกี่ทีมที่เข้ามาเป็นอันดับสี่เมื่อ Otsuka Pharmaceuticals ชนะ",
    "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_en": "Who was the runner up the season that Sagawa Express came in fourth?",
    "question_th": "ใครคือรองชนะเลิศในฤดูกาลที่ Sagawa Express เข้ามาเป็นอันดับสี่?",
    "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_en": "How many seasons did Otsuka Pharmaceuticals come in third?",
    "question_th": "Otsuka Pharmaceuticals เข้ามาอยู่ในอันดับสามกี่ฤดูกาล?",
    "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_en": "How many episodes were written by Gregg Mettler?",
    "question_th": "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_en": "What date did episode 4 in the season originally air?",
    "question_th": "ตอนที่ 4 ของซีซั่นเดิมออกอากาศวันไหนคะ?",
    "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_en": "Who are all the major users of the Gordon Close-Support Weapon System?",
    "question_th": "ใครคือผู้ใช้หลักทั้งหมดของ 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_en": "What country made the Flieger-Doppelpistole 1919?",
    "question_th": "ประเทศใดสร้าง 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_en": "How many years of introduction does the Neal Submachine Gun have?",
    "question_th": "ปืนกลมือนีลมีอายุการใช้งานกี่ปี?",
    "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_en": "Who are the major users from Australia?",
    "question_th": "ใครคือผู้ใช้หลักจากออสเตรเลีย?",
    "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_en": "Who are all the major users of the Saturn Machine Pistol?",
    "question_th": "ใครคือผู้ใช้หลักของ 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_en": "in how many of the arkansas colomel the county was pope",
    "question_th": "เคาน์ตีเป็นพระสันตะปาปาในอาร์คันซอจำนวนกี่คน",
    "context": "CREATE TABLE table_29458735_5 (colonel VARCHAR, county VARCHAR)"
  },
  {
    "answer": "SELECT colonel FROM table_29458735_5 WHERE regiment = \"35th regiment\"",
    "question_en": "what is the name of the coloneo of the 35th regiment ",
    "question_th": " อาณานิคมของกรมทหารที่ 35 ชื่ออะไร",
    "context": "CREATE TABLE table_29458735_5 (colonel VARCHAR, regiment VARCHAR)"
  },
  {
    "answer": "SELECT regiment FROM table_29458735_5 WHERE county = \"Fulton\"",
    "question_en": "which regiment was in the Fulton County",
    "question_th": "ซึ่งกองทหารอยู่ในเขตฟุลตัน",
    "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_en": "what is he name of the county where the 2nd division and the 41st regiment was",
    "question_th": "เขาชื่ออะไรในจังหวัดที่เป็นกองพลที่ 2 และกรมที่ 41",
    "context": "CREATE TABLE table_29458735_5 (county VARCHAR, division VARCHAR, regiment VARCHAR)"
  },
  {
    "answer": "SELECT regiment FROM table_29458735_5 WHERE county = \"Arkansas\"",
    "question_en": "which regimen was in the arkansas county",
    "question_th": "ระบบการปกครองใดอยู่ในเขตอาร์คันซอ",
    "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_en": "When nicole dubuc duane capizzi is the writer who is the director?",
    "question_th": "เมื่อนิโคล ดูบัค ดวน คาปิซซี่เป็นคนเขียนบท ใครเป็นผู้กำกับ?",
    "context": "CREATE TABLE table_29475589_3 (director VARCHAR, writer_s_ VARCHAR)"
  },
  {
    "answer": "SELECT episode_title FROM table_29475589_3 WHERE no = 22",
    "question_en": "When 22 is the number what is the episode title?",
    "question_th": "เมื่อ 22 เป็นเลขอะไร ชื่อตอนคืออะไร?",
    "context": "CREATE TABLE table_29475589_3 (episode_title VARCHAR, no VARCHAR)"
  },
  {
    "answer": "SELECT us_original_airdate FROM table_29475589_5 WHERE _number = 9",
    "question_en": "When the # is 9 what is the U.S original airdate?",
    "question_th": "เมื่อ # คือ 9 ออกอากาศดั้งเดิมของสหรัฐอเมริกาคืออะไร?",
    "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_en": "how many representatives from hanover twp were first elected in 2008",
    "question_th": "มีตัวแทนจากฮันโนเวอร์ twp กี่คนที่ได้รับเลือกครั้งแรกในปี 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_en": "when was al landis first elected",
    "question_th": "อัลแลนดิสได้รับเลือกครั้งแรกเมื่อใด",
    "context": "CREATE TABLE table_29486189_4 (first_elected VARCHAR, representative VARCHAR)"
  },
  {
    "answer": "SELECT representative FROM table_29486189_4 WHERE residence = \"Willowick\"",
    "question_en": "which representative is from willowick",
    "question_th": "ซึ่งตัวแทนมาจากวิลโลวิค",
    "context": "CREATE TABLE table_29486189_4 (representative VARCHAR, residence VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(district) FROM table_29486189_4 WHERE representative = \"Andy Thompson\"",
    "question_en": "which district does andy thompson represent",
    "question_th": "แอนดี ทอมป์สันเป็นตัวแทนเขตใด",
    "context": "CREATE TABLE table_29486189_4 (district VARCHAR, representative VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_29486189_4 WHERE residence = \"Newark\"",
    "question_en": "which party is the newark representative from",
    "question_th": "ฝ่ายใดเป็นตัวแทนของนวร์ก",
    "context": "CREATE TABLE table_29486189_4 (party VARCHAR, residence VARCHAR)"
  },
  {
    "answer": "SELECT representative FROM table_29486189_4 WHERE residence = \"Beavercreek\"",
    "question_en": "who is beavercreek's representative",
    "question_th": "ซึ่งเป็นตัวแทนของบีเวอร์ครีก",
    "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_en": "What was Reid's rolex ranking in the year that her money list rank was 3?",
    "question_th": "อันดับ Rolex ของ Reid ในปีที่อันดับเงินของเธออยู่ที่ 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_en": "What was the money list rank for Reid in the year that she had 0 top 10s?",
    "question_th": "อันดับรายการเงินของ Reid ในปีที่เธอมี 0 อันดับแรกอยู่ที่เท่าไร",
    "context": "CREATE TABLE table_29506171_2 (money_list_rank VARCHAR, top_10s VARCHAR)"
  },
  {
    "answer": "SELECT MAX(cuts_made) FROM table_29506171_2 WHERE earnings___€__ = \"n/a\"",
    "question_en": "How many cuts did Reid make in the year when her earnings were n/a?",
    "question_th": "Reid ลดจำนวนลงกี่ครั้งในปีที่รายได้ของเธอไม่มีข้อมูล",
    "context": "CREATE TABLE table_29506171_2 (cuts_made INTEGER, earnings___€__ VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_29506171_2 WHERE earnings___€__ = \"4,050 1\"",
    "question_en": "In what year were Reid's earnings €4,050 1?",
    "question_th": "รายได้ของเรดอยู่ที่ 4,050 ยูโร 1 ในปีใด",
    "context": "CREATE TABLE table_29506171_2 (year INTEGER, earnings___€__ VARCHAR)"
  },
  {
    "answer": "SELECT best_finish FROM table_29504351_2 WHERE earnings__$_ = 421050",
    "question_en": "What is the best finish for the player whose earnings was $421050?",
    "question_th": "การจบสกอร์ที่ดีที่สุดสำหรับผู้เล่นที่มีรายได้ $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_en": "What is the maximum start record for player of Jeff Brehaut?",
    "question_th": "สถิติการออกสตาร์ทสูงสุดสำหรับผู้เล่นของ 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_en": "What is the best finish record for Carl Paulson?",
    "question_th": "สถิติการจบสกอร์ที่ดีที่สุดของ 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_en": "What is the best finish record for Sean O'hair?",
    "question_th": "สถิติการจบสกอร์ที่ดีที่สุดสำหรับ 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_en": "What is the money list rank for player Doug Barron?",
    "question_th": "อันดับรายการเงินสำหรับผู้เล่น 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_en": "How many athletes were named federico muller?",
    "question_th": "เฟเดริโก มุลเลอร์ มีนักกีฬากี่คน?",
    "context": "CREATE TABLE table_29521180_35 (quarterfinals VARCHAR, athlete VARCHAR)"
  },
  {
    "answer": "SELECT round_of_16 FROM table_29521180_35 WHERE athlete = \"Felipe Saucedo\"",
    "question_en": "What was the round of 16 result for felipe saucedo?",
    "question_th": "เฟลิเป้ ซอสโด ผลรอบ 16 ทีมเป็นอย่างไรบ้าง?",
    "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_en": "The Ring of Steel possesses what ISBN?",
    "question_th": "แหวนเหล็กมี 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_en": "THe audio book with ISBN 978-1-4084-6879-1 is read by whom?",
    "question_th": "หนังสือเสียงที่มี ISBN 978-1-4084-6879-1 นั้นอ่านโดยใคร?",
    "context": "CREATE TABLE table_2950964_5 (read_by VARCHAR, isbn VARCHAR)"
  },
  {
    "answer": "SELECT _number FROM table_2950964_5 WHERE title = \"The Empty House\"",
    "question_en": "The Empty House audiobook has what #?",
    "question_th": "หนังสือเสียง The Empty House มี #อะไร?",
    "context": "CREATE TABLE table_2950964_5 (_number VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(directed_by) FROM table_29545336_2 WHERE no = 2",
    "question_en": "How many people directed episode 2?",
    "question_th": "มีคนกำกับตอนที่ 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_en": "What is the title of the episode that featured Abbud Siddiqui?",
    "question_th": "ตอนที่มี 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_en": "How many million U.S. viewers was written by Matt Pelfrey?",
    "question_th": "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_en": "When 8.9% is the electricity reduction percentage how many sets of tonnes of co2 saved is there?",
    "question_th": "เมื่อลดค่าไฟฟ้าได้ 8.9% จะประหยัด CO2 ได้กี่ตัน?",
    "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_en": "When 1522 is the tonnes of co2 saved what is the year?",
    "question_th": "เมื่อ 1,522 ตันของ CO2 ที่สามารถประหยัดได้คือปีอะไร?",
    "context": "CREATE TABLE table_29538735_1 (year VARCHAR, tonnes_of_co2_saved VARCHAR)"
  },
  {
    "answer": "SELECT _percentage_electricity_reduction FROM table_29538735_1 WHERE £_saved = \"£337,000\"",
    "question_en": "When £337,000 is £ saved what is the percentage of electricity reduction?",
    "question_th": "เมื่อประหยัดเงินได้ 337,000 ปอนด์ การลดค่าไฟฟ้าจะคิดเป็นเปอร์เซ็นต์เท่าใด",
    "context": "CREATE TABLE table_29538735_1 (_percentage_electricity_reduction VARCHAR, £_saved VARCHAR)"
  },
  {
    "answer": "SELECT £_saved FROM table_29538735_1 WHERE _percentage_electricity_reduction = \"8.9%\"",
    "question_en": "When 8.9% is the electricity reduction percentage what is the £ saved?",
    "question_th": "เมื่อ 8.9% เป็นเปอร์เซ็นต์การลดค่าไฟ เงินที่ประหยัดได้คือเท่าไร?",
    "context": "CREATE TABLE table_29538735_1 (£_saved VARCHAR, _percentage_electricity_reduction VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(universities) FROM table_29538735_1 WHERE _percentage_electricity_reduction = \"10%\"",
    "question_en": "When 10% is the percentage of electricity reduction how many sets of universities are there?",
    "question_th": "เมื่อ 10% คือเปอร์เซ็นต์การลดค่าไฟ จะมีมหาวิทยาลัยกี่ชุด?",
    "context": "CREATE TABLE table_29538735_1 (universities VARCHAR, _percentage_electricity_reduction VARCHAR)"
  },
  {
    "answer": "SELECT MAX(l) FROM table_29545993_3 WHERE pa = 47",
    "question_en": "What is maximum loss record when the pa record is 47?",
    "question_th": "บันทึกการสูญเสียสูงสุดเมื่อบันทึก pa คือ 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_en": "What is the minimum ends lost record when the stolen ends records is 6 and the loss record is bigger than 5.0?",
    "question_th": "บันทึกการสิ้นสุดการสูญหายขั้นต่ำคือเท่าใด เมื่อบันทึกการสิ้นสุดที่ถูกขโมยคือ 6 และบันทึกการสูญหายมากกว่า 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_en": "What is the minimum stolen ends record where the pa record is 40?",
    "question_th": "บันทึกการสิ้นสุดขั้นต่ำที่ถูกขโมยโดยที่บันทึก pa คือ 40 คืออะไร?",
    "context": "CREATE TABLE table_29545993_3 (stolen_ends INTEGER, pa VARCHAR)"
  },
  {
    "answer": "SELECT MIN(w) FROM table_29542269_2",
    "question_en": "What is the lowest overall amount of w's?",
    "question_th": "จำนวน w ทั้งหมดต่ำสุดคือเท่าใด?",
    "context": "CREATE TABLE table_29542269_2 (w INTEGER)"
  },
  {
    "answer": "SELECT MAX(l) FROM table_29542147_2",
    "question_en": "What is the highest L of the tournament?",
    "question_th": "L สูงสุดของทัวร์นาเมนต์คือตัวใด?",
    "context": "CREATE TABLE table_29542147_2 (l INTEGER)"
  },
  {
    "answer": "SELECT MAX(w) FROM table_29542147_2 WHERE l = 0",
    "question_en": "What is the highest W of the 0 L?",
    "question_th": "W สูงสุดของ 0 L คืออะไร?",
    "context": "CREATE TABLE table_29542147_2 (w INTEGER, l VARCHAR)"
  },
  {
    "answer": "SELECT MIN(pa) FROM table_29546142_2 WHERE w = 2",
    "question_en": "Name the least pa for w being 2",
    "question_th": "ตั้งชื่อ pa ที่น้อยที่สุดสำหรับ w เป็น 2",
    "context": "CREATE TABLE table_29546142_2 (pa INTEGER, w VARCHAR)"
  },
  {
    "answer": "SELECT skip__club_ FROM table_29546030_2 WHERE pa = 28",
    "question_en": "Which skip (club) had 28 PA?",
    "question_th": "ข้าม (สโมสร) ใดมี 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_en": "What is the most amount of stolen ends for a skip with 1 W?",
    "question_th": "จำนวนปลายที่ถูกขโมยมากที่สุดสำหรับการข้ามด้วย 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_en": "Which skip (club) had 31 PA and 9 blank ends?",
    "question_th": "การข้าม (ไม้กอล์ฟ) ใดมี 31 PA และ 9 ปลายว่าง?",
    "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_en": "What is the least amount of blank ends for a skip who has 44 PF? ",
    "question_th": " จำนวนช่องว่างที่น้อยที่สุดสำหรับการข้ามที่มี 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_en": "How many high points occur with the team Umass?",
    "question_th": "มีแต้มสูงเกิดขึ้นกับทีม ยูมัส กี่แต้ม?",
    "context": "CREATE TABLE table_29556461_9 (high_points VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_29556461_8 WHERE team = \"La Salle\"",
    "question_en": "When la salle is the team who has the highest amount of points?",
    "question_th": "เมื่อลาซาลเป็นทีมที่มีคะแนนสูงสุด?",
    "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 – 4\"",
    "question_en": "When allen/moore/wyatt – 4 have the highest amount of assists what is the highest game?",
    "question_th": "เมื่อ allen/moore/wyatt – 4 มีแอสซิสต์สูงที่สุด เกมไหนสูงสุด?",
    "context": "CREATE TABLE table_29556461_8 (game INTEGER, high_assists VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_29556461_8 WHERE team = \"Dayton\"",
    "question_en": "When dayton is the team what is the record?",
    "question_th": "เมื่อเดย์ตันอยู่ในทีม มีสถิติอะไรบ้าง?",
    "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_en": "What the title of the song when the result is to the live shows?",
    "question_th": "ชื่อเพลงอะไรครับเมื่อผลออกมาเป็นรายการสด?",
    "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_en": "What is the episode when the original performaer is diana ross?",
    "question_th": "ตอนไหนที่นักแสดงดั้งเดิมคือไดอาน่า รอสส์?",
    "context": "CREATE TABLE table_29547777_1 (episode VARCHAR, original_performer VARCHAR)"
  },
  {
    "answer": "SELECT original_performer FROM table_29547777_1 WHERE episode = \"Casting\"",
    "question_en": "Who is the original performer when the episode is casting?",
    "question_th": "ใครคือนักแสดงดั้งเดิมเมื่อตอนกำลังคัดเลือกนักแสดง?",
    "context": "CREATE TABLE table_29547777_1 (original_performer VARCHAR, episode VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(skip__club_) FROM table_29546218_3 WHERE pf = 40",
    "question_en": "What is the total mumber of skip (club) entries when the pf is 40?",
    "question_th": "จำนวนรายการข้าม (คลับ) ทั้งหมดเมื่อ pf คือ 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_en": "What horse had a starting price of 66/1?",
    "question_th": "ม้าตัวไหนมีราคาเริ่มต้นที่ 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_en": "What is the L when the W is 4?",
    "question_th": "L คืออะไรเมื่อ W คือ 4?",
    "context": "CREATE TABLE table_29565120_2 (l INTEGER, w VARCHAR)"
  },
  {
    "answer": "SELECT MAX(l) FROM table_29565601_2",
    "question_en": "What is the largest number in L?",
    "question_th": "จำนวนที่ใหญ่ที่สุดใน L คืออะไร?",
    "context": "CREATE TABLE table_29565601_2 (l INTEGER)"
  },
  {
    "answer": "SELECT MIN(pa) FROM table_29565601_2 WHERE pf = 73",
    "question_en": "What is the PA when the PF is 73?",
    "question_th": "PA คืออะไรเมื่อ PF คือ 73?",
    "context": "CREATE TABLE table_29565601_2 (pa INTEGER, pf VARCHAR)"
  },
  {
    "answer": "SELECT blank_ends FROM table_29565673_2 WHERE w > 6.0",
    "question_en": "What is the blank ends record when the win record is higher than 6.0?",
    "question_th": "บันทึกการสิ้นสุดที่ว่างเปล่าคืออะไรเมื่อบันทึกการชนะสูงกว่า 6.0?",
    "context": "CREATE TABLE table_29565673_2 (blank_ends VARCHAR, w INTEGER)"
  },
  {
    "answer": "SELECT w FROM table_29565673_2 WHERE pa = 62",
    "question_en": "What is the win record where the pa record is 62?",
    "question_th": "บันทึกการชนะโดยที่บันทึก pa คือ 62 คืออะไร?",
    "context": "CREATE TABLE table_29565673_2 (w VARCHAR, pa VARCHAR)"
  },
  {
    "answer": "SELECT l FROM table_29565858_2 WHERE stolen_ends = 1",
    "question_en": "What is listed under L when the stolen ends is 1?",
    "question_th": "รายการอะไรอยู่ใต้ L เมื่อจุดสิ้นสุดที่ถูกขโมยคือ 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_en": "How many rank entries are there when new points are 1155?",
    "question_th": "มีรายการอันดับกี่รายการเมื่อมีคะแนนใหม่เป็น 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_en": "What is listed in new points when status is second round lost to xavier malisse?",
    "question_th": "มีอะไรระบุไว้ในประเด็นใหม่เมื่อสถานะแพ้ซาเวียร์ มาลิส รอบสอง?",
    "context": "CREATE TABLE table_29572583_19 (new_points INTEGER, status VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_29572583_19 WHERE points = 4595",
    "question_en": "What is the status when points is 4595?",
    "question_th": "สถานะเมื่อคะแนนเป็น 4595 คืออะไร?",
    "context": "CREATE TABLE table_29572583_19 (status VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_29572583_19 WHERE rank = 2",
    "question_en": "What is the status when the rank is 2?",
    "question_th": "สถานะเมื่อยศเป็น 2 คืออะไร?",
    "context": "CREATE TABLE table_29572583_19 (status VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT MAX(points) FROM table_29572583_19 WHERE rank = 17",
    "question_en": "How many points are listed when the rank is 17?",
    "question_th": "มีกี่คะแนนที่ระบุไว้เมื่ออันดับที่ 17?",
    "context": "CREATE TABLE table_29572583_19 (points INTEGER, rank VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(seed) FROM table_29572583_19 WHERE points = 2175",
    "question_en": "How many seed entries are there when points are 2175?",
    "question_th": "มีรายการเมล็ดพันธุ์กี่รายการเมื่อคะแนนถึง 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_en": "How many clubs remained when there were 4 winners from the previous round?",
    "question_th": "เหลือกี่สโมสรเมื่อมีผู้ชนะ 4 คนจากรอบที่แล้ว?",
    "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_en": "What is the maximum number of clubs remaining when the league entering at this round was allsvenskan?",
    "question_th": "จำนวนสโมสรสูงสุดที่เหลืออยู่เมื่อลีกเข้าสู่รอบนี้คือเท่าใดคือออลสเวนสคาน?",
    "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_en": "How many different values of clubs involved were there when the league entering at this round was allsvenskan?",
    "question_th": "มีค่านิยมที่แตกต่างกันกี่สโมสรที่เกี่ยวข้องเมื่อลีกที่เข้าสู่รอบนี้คือ ออลสเวนสคาน?",
    "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_en": "Which programs were originally broadcast on CITV?",
    "question_th": "รายการใดบ้างที่เดิมออกอากาศทาง 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_en": "What is the date of return for the program for the program \"Big Brother\"?",
    "question_th": "รายการ \"พี่ใหญ่\" คืนวันที่เท่าไหร่คะ?",
    "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_en": "How many episodes are directed by Jamie Payne?",
    "question_th": "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_en": "How many millions of viewers are listed when the share is 10.8?",
    "question_th": "มีผู้ชมกี่ล้านคนในรายการเมื่อส่วนแบ่งคือ 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_en": "Who is the director when there are 2.70 million viewers?",
    "question_th": "ผู้กำกับคนไหนในเมื่อมีผู้ชม 2.70 ล้านคน?",
    "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_en": "How many episodes hve 4.50 million viewers?",
    "question_th": "มีกี่ตอนที่มีผู้ชม 4.50 ล้านคน?",
    "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_en": "Who is the director when the share is 11.8?",
    "question_th": "กรรมการคือใครเมื่อหุ้นเป็น 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_en": "Who wrote the episode with production code 57376?",
    "question_th": "ใครเป็นคนเขียนตอนด้วยรหัสการผลิต 57376?",
    "context": "CREATE TABLE table_29583441_1 (written_by VARCHAR, production_code VARCHAR)"
  },
  {
    "answer": "SELECT MIN(production_code) FROM table_29583441_1",
    "question_en": "What is the smallest numbered production code listed?",
    "question_th": "รหัสการผลิตที่มีหมายเลขน้อยที่สุดคืออะไร?",
    "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_en": "What date did the episode that was directed by Christian i. nyby ii originally air on?",
    "question_th": "ตอนที่กำกับโดย Christian i. วันที่เท่าไหร่ nyby ii ตอนแรกออนแอร์เหรอ?",
    "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_en": "What is the original air date of the episode that was number 31 in the series? ",
    "question_th": " ตอนที่ 31 ของซีรีส์ออกอากาศตอนแรกเมื่อใด",
    "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_en": "What is the original air date of the episode that was directed by Bruce Seth Green?",
    "question_th": "วันที่ออกอากาศดั้งเดิมของตอนที่กำกับโดย 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_en": "How many times is the couple kerry & daniel?",
    "question_th": "คู่รักเคอรี่&แดเนียล กี่ครั้งแล้ว?",
    "context": "CREATE TABLE table_29583818_3 (place VARCHAR, couple VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(couple) FROM table_29583818_3 WHERE total_points = \"128.0\"",
    "question_en": "how many times is the total points 128.0?",
    "question_th": "คะแนนรวม 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_en": "How many times is the couple laura and colin?",
    "question_th": "ลอร่ากับโคลินมีกี่ครั้ง?",
    "context": "CREATE TABLE table_29583818_3 (place VARCHAR, couple VARCHAR)"
  },
  {
    "answer": "SELECT average FROM table_29583818_3 WHERE place = 16",
    "question_en": "what is the average when the place is 16?",
    "question_th": "ค่าเฉลี่ยเมื่อสถานที่อายุ 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_en": "How many times is the rank by average 4?",
    "question_th": "อันดับโดยเฉลี่ย 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_en": "How many different pairs of writers wrote the episode with series number 56?",
    "question_th": "มีนักเขียนกี่คู่ที่เขียนตอนที่มีซีรีส์หมายเลข 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_en": "what is the school for chris mcnamara?",
    "question_th": "คริส แม็กนามารา โรงเรียนอะไร?",
    "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_en": "how many hometowns for faisal aden?",
    "question_th": "ไฟซาล เอเดน มีบ้านเกิดกี่แห่ง?",
    "context": "CREATE TABLE table_29598261_1 (hometown VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_29598261_1 WHERE name = \"Chris McNamara\"",
    "question_en": "what year is chris mcnamara?",
    "question_th": "คริส แม็กนามาราอยู่ปีไหน?",
    "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_en": "what is the height of columbia river hs?",
    "question_th": "แม่น้ำโคลัมเบียสูงเท่าไร?",
    "context": "CREATE TABLE table_29598261_1 (height VARCHAR, last_school_college VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_29598261_1 WHERE name = \"Mike Ladd\"",
    "question_en": "what is the hometown for mike ladd?",
    "question_th": "ไมค์ แลดด์ บ้านเกิดคือที่ไหน?",
    "context": "CREATE TABLE table_29598261_1 (hometown VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(season) FROM table_29619494_2 WHERE apocalypstix = \"2nd\"",
    "question_en": "How many seasons did Apocalypstix place 2nd?",
    "question_th": "Apocalypstix ได้ที่ 2 กี่ฤดูกาล?",
    "context": "CREATE TABLE table_29619494_2 (season VARCHAR, apocalypstix VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_29619494_2 WHERE sake_tuyas = \"1st\"",
    "question_en": "What season did the Sake Tuyas come in 1st place?",
    "question_th": "Sake Tuyas มาที่ 1 ในฤดูกาลใด",
    "context": "CREATE TABLE table_29619494_2 (season VARCHAR, sake_tuyas VARCHAR)"
  },
  {
    "answer": "SELECT MAX(season) FROM table_29619494_2 WHERE denim_demons = \"3rd\"",
    "question_en": "What is the most recent season where the Denim Demons placed 3rd?",
    "question_th": "ฤดูกาลล่าสุดที่ Denim Demons ได้อันดับที่ 3 คืออะไร?",
    "context": "CREATE TABLE table_29619494_2 (season INTEGER, denim_demons VARCHAR)"
  },
  {
    "answer": "SELECT sake_tuyas FROM table_29619494_2 WHERE denim_demons = \"4th\"",
    "question_en": "What place did the Sake Tuyas come in when the Denim Demons were 4th?",
    "question_th": "Sake Tuyas เกิดขึ้นที่ไหนเมื่อ Denim Demons อยู่อันดับที่ 4?",
    "context": "CREATE TABLE table_29619494_2 (sake_tuyas VARCHAR, denim_demons VARCHAR)"
  },
  {
    "answer": "SELECT apocalypstix FROM table_29619494_2 WHERE denim_demons = \"2nd\"",
    "question_en": "List all the places that the Apocalypstix occupied when the Denim Demons were 2nd.",
    "question_th": "รายชื่อสถานที่ทั้งหมดที่ Apocalypstix ครอบครองเมื่อ Denim Demons อยู่อันดับที่ 2",
    "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_en": "Which team has a midfielder of konrad warzycha?",
    "question_th": "ทีมไหนมีกองกลางคอนราด วาร์ซีชา?",
    "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_en": "What is the pick number for the team toronto fc and affiliation is ldu quito?",
    "question_th": "หมายเลขเลือกของทีมโตรอนโต เอฟซี และสังกัดคือ 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_en": "Which MLS team picked player Jason Herrick?",
    "question_th": "ทีม MLS ใดเลือกผู้เล่น 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_en": "What position did the team new york red bulls pick?",
    "question_th": "นิวยอร์ก เร้ด บูลล์ส เลือกตำแหน่งไหน?",
    "context": "CREATE TABLE table_29626583_3 (position VARCHAR, mls_team VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_29626583_3 WHERE affiliation = \"LDU Quito\"",
    "question_en": "What was the position when the affiliation is ldu quito?",
    "question_th": "อะไรคือตำแหน่งเมื่อสังกัด ldu Quito?",
    "context": "CREATE TABLE table_29626583_3 (position VARCHAR, affiliation VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(peak) FROM table_29633639_1 WHERE chinese_title = \"萬凰之王\"",
    "question_en": "how many peaks where for the chinese episode named 萬凰之王",
    "question_th": "กี่พีคที่ตอนจีนชื่อ萬凰之王",
    "context": "CREATE TABLE table_29633639_1 (peak VARCHAR, chinese_title VARCHAR)"
  },
  {
    "answer": "SELECT MAX(average) FROM table_29633639_1 WHERE chinese_title = \"魚躍在花見\"",
    "question_en": "what is the number of the average of the drama titled  魚躍在花見",
    "question_th": "ละครเรื่อง 魚躍在ดอกไม้見 มีค่าเฉลี่ยเท่าไหร่",
    "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_en": "how many milion of viewers where in the episode called in english \"is a great way to care\"",
    "question_th": "คนดูกี่ล้านคน โดยที่ตอนเรียกเป็นภาษาอังกฤษว่า \"เป็นวิธีดูแลที่ดี\"",
    "context": "CREATE TABLE table_29633639_1 (hk_viewers VARCHAR, english_title VARCHAR)"
  },
  {
    "answer": "SELECT premiere FROM table_29633639_1 WHERE peak = 34",
    "question_en": "what is the number of the premiere for the 34 peak",
    "question_th": "รอบปฐมทัศน์ 34 พีค เบอร์เท่าไหร่คะ",
    "context": "CREATE TABLE table_29633639_1 (premiere VARCHAR, peak VARCHAR)"
  },
  {
    "answer": "SELECT MIN(week) FROM table_29679510_2",
    "question_en": "In what week was the first game played?",
    "question_th": "เกมแรกเล่นสัปดาห์ไหน?",
    "context": "CREATE TABLE table_29679510_2 (week INTEGER)"
  },
  {
    "answer": "SELECT COUNT(object_date) FROM table_29635868_1 WHERE origin = \"Samoa\"",
    "question_en": "How many object dates have origin in Samoa?",
    "question_th": "วันวัตถุมีต้นกำเนิดในซามัวกี่วัน?",
    "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_en": "How many origins have titles of Samoan cricket bats?",
    "question_th": "ค้างคาวคริกเก็ตซามัวมีต้นกำเนิดกี่ชื่อ?",
    "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_en": "How many object dates does episode #16 have?",
    "question_th": "ตอนที่ 16 มีวัตถุกี่วัน?",
    "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_en": "Which films participated in the 61st Berlin international film festival?",
    "question_th": "ภาพยนตร์เรื่องใดบ้างที่เข้าร่วมในเทศกาลภาพยนตร์นานาชาติเบอร์ลินครั้งที่ 61",
    "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_en": "What was the result when competing in the Opening NIght Film category?",
    "question_th": "ผลการแข่งขันประเภท Opening NIght Film เป็นอย่างไร?",
    "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_en": "Which films participated in the 30th Hawaii International Film Festival?",
    "question_th": "ภาพยนตร์เรื่องใดบ้างที่เข้าร่วมในเทศกาลภาพยนตร์นานาชาติฮาวายครั้งที่ 30",
    "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_en": "Which films participated when the category was Best Newcomer?",
    "question_th": "ภาพยนตร์เรื่องใดเข้าร่วมเมื่อหมวดหมู่เป็นผู้มาใหม่ยอดเยี่ยม?",
    "context": "CREATE TABLE table_29644931_1 (participants_recipients VARCHAR, category VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_29697744_1 WHERE position = \"5th\"",
    "question_en": "in which year the season was in 5th position",
    "question_th": "ปีไหนที่ฤดูกาลอยู่ในอันดับที่ 5",
    "context": "CREATE TABLE table_29697744_1 (season VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT movements FROM table_29697744_1 WHERE position = \"7th\"",
    "question_en": "what is the name of the movement in the 7th position",
    "question_th": "การเคลื่อนไหวในตำแหน่งที่ 7 ชื่ออะไร",
    "context": "CREATE TABLE table_29697744_1 (movements VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT level FROM table_29697744_1 WHERE position = \"7th\"",
    "question_en": "what is the name of the level for the 7th position",
    "question_th": "ระดับตำแหน่งที่ 7 ชื่ออะไร",
    "context": "CREATE TABLE table_29697744_1 (level VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(section) FROM table_29697744_1 WHERE season = \"2008\"",
    "question_en": "how many sections are for the season of 2008",
    "question_th": "ฤดูกาลปี 2551 มีกี่ส่วน",
    "context": "CREATE TABLE table_29697744_1 (section VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_29697744_1 WHERE position = \"9th\"",
    "question_en": "in what year the position was the 9th",
    "question_th": "ตำแหน่งอยู่อันดับที่ 9 ในปีใด",
    "context": "CREATE TABLE table_29697744_1 (season VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT eliminated AS by FROM table_29692554_2 WHERE time = \"18:48\"",
    "question_en": "Who was eliminated a person at 18:48?",
    "question_th": "เวลา 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_en": "How many entries are shown for entered at 21:09?",
    "question_th": "มีกี่รายการที่แสดงสำหรับการป้อนในเวลา 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_en": "Who was eliminated by being pinned after a spear at  22:50?",
    "question_th": "เวลา 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_en": "What number was the person eliminated at 22:50?",
    "question_th": "เวลา 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_en": "what is the circuit where the fastest lap is sam lowes and the winning rider is luca scassa?",
    "question_th": "สนามไหนคือรอบที่เร็วที่สุดคือ Sam Lowes และนักแข่งที่ชนะคือ Luca Scasa?",
    "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_en": "what is the round wher the fabien foret had the fastest lap and david salom was the pole position?",
    "question_th": "รอบใดที่ฟาเบียน ฟอเรต์ทำรอบได้เร็วที่สุด และเดวิด ซาลอมอยู่ในตำแหน่งโพลโพซิชั่นในรอบใด",
    "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_en": "who had the fastest lap for round 1?",
    "question_th": "ใครมีรอบเร็วที่สุดในรอบ 1?",
    "context": "CREATE TABLE table_29686983_1 (fastest_lap VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT pole_position FROM table_29686983_1 WHERE country = \"France\"",
    "question_en": "what is the pole position for france?",
    "question_th": "ตำแหน่งโพลของฝรั่งเศสคืออะไร?",
    "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_en": "what is the maximum round and fabien foret had the pole position?",
    "question_th": "รอบสูงสุดคือเท่าไร และฟาเบียน ฟอเรต์ ได้ตำแหน่งโพลโพสิชัน?",
    "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_en": "How many values of attendance occur when ave. on previous season is +645?",
    "question_th": "ค่าการเข้างานเกิดขึ้นเมื่อ ave มีกี่ค่า ฤดูกาลที่แล้วคือ +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_en": "What is the lowest value of average attendance when average on previous season is -459?",
    "question_th": "ค่าเข้าชมเฉลี่ยต่ำสุดเมื่อค่าเฉลี่ยของฤดูกาลที่แล้วคือ -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_en": "What is the least value for average attendance when average on previous season is +644?",
    "question_th": "ค่าน้อยที่สุดสำหรับการเข้าร่วมโดยเฉลี่ยเมื่อค่าเฉลี่ยของฤดูกาลที่แล้วคือ +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_en": "What is every value for average on previous season if the competition is league two?",
    "question_th": "ทุกมูลค่าโดยเฉลี่ยในฤดูกาลที่แล้วหากการแข่งขันคือลีก 2 เป็นเท่าใด?",
    "context": "CREATE TABLE table_2970978_1 (___ave_on_prev_season VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT MIN(w) FROM table_29704430_1",
    "question_en": "What is the least w?",
    "question_th": "w น้อยที่สุดคืออะไร?",
    "context": "CREATE TABLE table_29704430_1 (w INTEGER)"
  },
  {
    "answer": "SELECT MAX(stolen_ends) FROM table_29704430_1",
    "question_en": "What is the most stolen ends?",
    "question_th": "ปลายที่ถูกขโมยมากที่สุดคืออะไร?",
    "context": "CREATE TABLE table_29704430_1 (stolen_ends INTEGER)"
  },
  {
    "answer": "SELECT MIN(total_appearances) FROM table_29701419_2 WHERE total_goals = 289",
    "question_en": "What is the total appearances when the total goals is 289?",
    "question_th": "ลงเล่นทั้งหมดเมื่อทำได้ 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_en": "What is the league goals when the total goals is 179?",
    "question_th": "ประตูลีกเมื่อรวม 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_en": "How many  total appearances are there when the league appearances is 192?",
    "question_th": "เมื่อลงเล่นในลีกครบ 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_en": "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?",
    "question_th": "ใครคือทีมเยือนเมื่อการแข่งขันคือ ``วันฟุตบอลสาธารณรัฐซีอาร์พีสกา'' ครั้งที่ 1 และทีมเจ้าบ้านคือ 14 สาธารณรัฐซีอาร์พีสก้า?",
    "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_en": "What were the competitions when the away team was fk kozara gradiska?",
    "question_th": "มีการแข่งขันอะไรบ้างเมื่อทีมเยือนคือ เอฟเค โคซาร่า กราดิสกา?",
    "context": "CREATE TABLE table_29728596_2 (competition VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_29743928_3 WHERE country = \"DR Congo\"",
    "question_en": "What are the names of players from the dr congo?",
    "question_th": "นักเตะจากดีอาร์คองโกชื่ออะไร?",
    "context": "CREATE TABLE table_29743928_3 (name VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT MAX(assists) FROM table_29743928_3 WHERE country = \"Panama\"",
    "question_en": "How many is the high assist total for players from panama?",
    "question_th": "นักเตะปานามามีแอสซิสต์สูงทั้งหมดกี่คน?",
    "context": "CREATE TABLE table_29743928_3 (assists INTEGER, country VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_29728596_1 WHERE away_team = \"FK Rudar Ugljevik\"",
    "question_en": "What was the result of the home match against FK Rudar Ugljevik?",
    "question_th": "ผลการแข่งขันในบ้านกับ 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_en": "Where was the home match against FK Rudar Ugljevik played?",
    "question_th": "นัดเหย้ากับ FK Rudar Ugljevik แข่งขันที่ไหน?",
    "context": "CREATE TABLE table_29728596_1 (location VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT la_roche FROM table_29728787_1 WHERE year = \"1971\"",
    "question_en": "When 1971 is the year what is the la roche?",
    "question_th": "เมื่อถึงปี 1971 ลา โรช คืออะไร?",
    "context": "CREATE TABLE table_29728787_1 (la_roche VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(clairon) FROM table_29728787_1 WHERE label = \"Deutsche Grammophon\"",
    "question_en": "When deutsche grammophon is the label how many clairons are there?",
    "question_th": "เมื่อ Deutsche Grammophon เป็นฉลาก มีกี่แคลรอน?",
    "context": "CREATE TABLE table_29728787_1 (clairon VARCHAR, label VARCHAR)"
  },
  {
    "answer": "SELECT conductor FROM table_29728787_1 WHERE count = \"Hermann Uhde\"",
    "question_en": "When hermann uhde is the count who is the conductor?",
    "question_th": "เมื่อแฮร์มันน์ uhde เป็นผู้นับ ใครคือวาทยากร?",
    "context": "CREATE TABLE table_29728787_1 (conductor VARCHAR, count VARCHAR)"
  },
  {
    "answer": "SELECT conductor FROM table_29728787_1 WHERE olivier = \"Dietrich Fischer-Dieskau\"",
    "question_en": "When dietrich fischer-dieskau is the olivier who is the conductor?",
    "question_th": "เมื่อ Dietrich Fischer-dieskau เป็น Olivier ใครคือวาทยากร?",
    "context": "CREATE TABLE table_29728787_1 (conductor VARCHAR, olivier VARCHAR)"
  },
  {
    "answer": "SELECT olivier FROM table_29728787_1 WHERE la_roche = \"Karl Ridderbusch\"",
    "question_en": "When karl ridderbusch is the la roche who is the olivier?",
    "question_th": "เมื่อคาร์ล ริดเดอร์บุชคือเดอะลาโรช ใครคือโอลิเวียร์?",
    "context": "CREATE TABLE table_29728787_1 (olivier VARCHAR, la_roche VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_29753553_1 WHERE sar_no = 874",
    "question_en": "For what year is the SAR no. 874?",
    "question_th": "หมายเลข SAR คือปีใด 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_en": "Who is the writer when the director is bob berlinger?",
    "question_th": "ใครคือคนเขียนบท ในเมื่อผู้กำกับคือ บ็อบ เบอร์ลินเจอร์?",
    "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_en": "How many millions of U.S viewers are there when the director is andy wolk?",
    "question_th": "มีผู้ชมในสหรัฐฯ กี่ล้านคนเมื่อผู้กำกับคือ 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_en": "What is the series # when the director is john showalter?",
    "question_th": "ซีรีส์เรื่อง #เมื่อผู้กำกับคือ จอห์น โชว์เตอร์ คืออะไร?",
    "context": "CREATE TABLE table_29747178_2 (series__number VARCHAR, directed_by VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_29747178_2 WHERE series__number = 7",
    "question_en": "What is the title when the series # is 7?",
    "question_th": "ชื่อเรื่องเมื่อ series # คือ 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_en": "Which episode had a share 16-19 of 23,22%?",
    "question_th": "ตอนไหนมีส่วนแบ่ง 16-19 จาก 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_en": "What was the official rating 16-39 of episode 9?",
    "question_th": "ตอนที่ 9 เรตติ้งอย่างเป็นทางการ 16-39 อยู่ที่เท่าไร?",
    "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_en": "What is the intro date for the interface that equals pci?",
    "question_th": "วันที่แนะนำสำหรับอินเทอร์เฟซที่เท่ากับ 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_en": "What is the intro date for the throughput of 16 mbit/s?",
    "question_th": "วันที่แนะนำสำหรับปริมาณงาน 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€\"",
    "question_en": "How many intro dates have the price of 686€?",
    "question_th": "มีช่วงแนะนำกี่วันที่มีราคา 686€?",
    "context": "CREATE TABLE table_29778616_1 (intro_date VARCHAR, price VARCHAR)"
  },
  {
    "answer": "SELECT price FROM table_29778616_1 WHERE manufacturer = \"LETech\"",
    "question_en": "What is the price for the manufacturer LETech?",
    "question_th": "ราคาของผู้ผลิต LETech คืออะไร?",
    "context": "CREATE TABLE table_29778616_1 (price VARCHAR, manufacturer VARCHAR)"
  },
  {
    "answer": "SELECT MIN(price__usd_) FROM table_29778616_1 WHERE model = \"PQ32MU\"",
    "question_en": "What is the price (usd) for the model pq32mu?",
    "question_th": "ราคา (usd) สำหรับรุ่น 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_en": "Who is the manufacturer whose intro date is 2006 and their throughput is 4 mbit/s?",
    "question_th": "ใครคือผู้ผลิตที่มีวันเปิดตัวคือปี 2006 และปริมาณงานคือ 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_en": "What was the Lok Sabha in Karakat (Vidhan Sabha Constituency)?",
    "question_th": "โลกสภาในการากัต (เขตเลือกตั้งวิธานสภา) คืออะไร?",
    "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_en": "How many were in the Kargahar (vidhan sabha constituency)?",
    "question_th": "Kargahar (เขตเลือกตั้งวิธานสภา) มีกี่คน?",
    "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_en": "What district has 213 constituents?",
    "question_th": "อำเภอใดมี 213 เขต?",
    "context": "CREATE TABLE table_29785324_5 (district VARCHAR, constituency_no VARCHAR)"
  },
  {
    "answer": "SELECT lok_sabha FROM table_29785324_5 WHERE constituency_no = 216",
    "question_en": "How many Lok Sabha are in the one with 216 constituents?",
    "question_th": "โลกสภามีทั้งหมด 216 ตัว มีกี่โลก?",
    "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_en": "How many countries spent at least $51.0 billion in international tourism in 2012?",
    "question_th": "มีกี่ประเทศที่ใช้เงินอย่างน้อย 51.0 พันล้านดอลลาร์ในการท่องเที่ยวระหว่างประเทศในปี 2555",
    "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_en": "How many countries spent $83.7 billion on international tourism in 2012?",
    "question_th": "มีกี่ประเทศที่ใช้เงิน 83.7 พันล้านดอลลาร์เพื่อการท่องเที่ยวระหว่างประเทศในปี 2555",
    "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_en": "What was the percentage increase in spending on international tourism from 2011 to 2012 of the country that spent $85.9 billion in 2011?",
    "question_th": "เปอร์เซ็นต์การใช้จ่ายด้านการท่องเที่ยวระหว่างประเทศเพิ่มขึ้นระหว่างปี 2554 ถึง 2555 ของประเทศที่ใช้เงิน 85.9 พันล้านดอลลาร์ในปี 2554 เป็นเท่าใด",
    "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_en": "Which country saw a 5.7% increase in spending on international tourism between 2011 and 2012?",
    "question_th": "ประเทศใดที่มีการใช้จ่ายด้านการท่องเที่ยวระหว่างประเทศเพิ่มขึ้น 5.7% ระหว่างปี 2554 ถึง 2555",
    "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_en": "Name the most other apps for league goals being 1",
    "question_th": "ตั้งชื่อแอปอื่นๆ มากที่สุดสำหรับเป้าหมายในลีกคือ 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_en": "Name the most fa cup apps for league apps being 27",
    "question_th": "ตั้งชื่อแอป fa cup มากที่สุดสำหรับแอปลีกคือ 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_en": "Name the total number of division for fa cups being 9",
    "question_th": "ตั้งชื่อจำนวนการแบ่งเอฟเอคัพทั้งหมดเป็น 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_en": "How many international tourists visited Russia in 2012?",
    "question_th": "ในปี 2555 มีนักท่องเที่ยวต่างชาติเดินทางมาเยือนรัสเซียกี่คน?",
    "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łość i przeznaczenie\"",
    "question_en": "What was the premiere date for the episode whose alternate title was miłość i przeznaczenie?",
    "question_th": "วันที่ฉายรอบปฐมทัศน์ของตอนที่ชื่อสำรองคือ miłošć 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_en": "Which TV network had its series finale on May 7, 2012?",
    "question_th": "เครือข่ายโทรทัศน์ใดที่มีตอนจบของซีรีส์ในวันที่ 7 พฤษภาคม 2555",
    "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_en": "What was the date of the series premiere whose TV network was TV3?",
    "question_th": "วันที่ซีรีส์ออกอากาศตอนแรกซึ่งมีเครือข่ายทีวีเป็น 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_en": "Which TV network has a country of origin of Iran?",
    "question_th": "เครือข่ายทีวีใดมีประเทศต้นทางเป็นอิหร่าน",
    "context": "CREATE TABLE table_29799700_2 (tv_network_s_ VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT series_finale FROM table_29799700_2 WHERE country = \"Peru\"",
    "question_en": "What was the date of the series finale for Peru?",
    "question_th": "ซีรีส์ตอนจบของเปรูคือวันที่เท่าไหร่?",
    "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_en": "What is every original air date with U.S. viewers of 0.23 million?",
    "question_th": "ออกอากาศต้นฉบับทุกวันที่มีผู้ชม 0.23 ล้านคนในสหรัฐฯ คืออะไร?",
    "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_en": "What is the lowest number in series when U.S. viewers is 0.23 million?",
    "question_th": "หมายเลขต่ำสุดในซีรีส์เมื่อผู้ชมในสหรัฐฯ คือ 0.23 ล้านคนคือเท่าใด",
    "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_en": "What were the total apps for Dunne in season where he had 0 league goals? ",
    "question_th": " อะไรคือแอปทั้งหมดของ Dunne ในฤดูกาลที่เขาทำได้ 0 ประตูในลีก?",
    "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_en": "How many league goals did Dunne have in the season where he had 2 league apps?",
    "question_th": "ดันน์ยิงได้กี่ประตูในลีกในฤดูกาลที่เขาลงเล่นในลีก 2 นัด?",
    "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_en": "How many other goals did Dunne have in the season where he had 1 league goal?",
    "question_th": "ดันน์ทำได้อีกกี่ประตูในฤดูกาลที่เขาทำได้ 1 ประตูในลีก?",
    "context": "CREATE TABLE table_2980024_1 (other_goals VARCHAR, league_goals VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_29846807_5 WHERE team = \"Boston University\"",
    "question_en": "When boston university is the team what is the record?",
    "question_th": "เมื่อมหาวิทยาลัยบอสตันเป็นทีม มีสถิติอะไรบ้าง?",
    "context": "CREATE TABLE table_29846807_5 (record VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT subject FROM table_29842201_1 WHERE highest_mark = 79",
    "question_en": "What is the subject when the highest mark is 79?",
    "question_th": "วิชาอะไรเมื่อคะแนนสูงสุดคือ 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_en": "How many lowest mark entries are there when % passed is 76?",
    "question_th": "มีเครื่องหมายต่ำสุดกี่รายการเมื่อ % ที่ผ่านคือ 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_en": "if the flm winning team is no. 99 jmb racing what is the name of the  lmp2 winning team ",
    "question_th": " ถ้าทีมที่ชนะ flm ไม่ใช่ 99 jmb racing ทีมที่ชนะ lmp2 ชื่ออะไร",
    "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_en": "Who is every high rebound when the team is Mount St. Mary's?",
    "question_th": "ทุกรีบาวด์สูงใครเมื่อทีมเมาท์ เซนต์ แมรีส์?",
    "context": "CREATE TABLE table_29846807_4 (high_rebounds VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_29857115_4 WHERE singer = \"Serena Abrami\"",
    "question_en": "What position was serena abrami in?",
    "question_th": "เซเรน่า อับรามี อยู่ในตำแหน่งใด?",
    "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_en": "What was gabriella ferrone's result on the 5th evening?",
    "question_th": "ผลการแข่งขันของ gabriella ferrone ในเย็นวันที่ 5 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_29857115_4 (singer VARCHAR)"
  },
  {
    "answer": "SELECT MAX(_number) FROM table_2985714_2",
    "question_en": "What is the maximum overall number?",
    "question_th": "จำนวนรวมสูงสุดคือเท่าไร?",
    "context": "CREATE TABLE table_2985714_2 (_number INTEGER)"
  },
  {
    "answer": "SELECT MIN(al_wehdat_wins) FROM table_2985714_2 WHERE _number = 2",
    "question_en": "When the number is 2 what is the lowest amount of al-wedhat wins?",
    "question_th": "เมื่อเลขเป็น 2 อัลวันพุธชนะได้น้อยที่สุดคือเท่าไร?",
    "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_en": "When jordan fa cup is the tournament how many draws?",
    "question_th": "จอร์แดน เอฟเอ คัพ แข่งขันกันเมื่อไร เสมอกันกี่ทีม?",
    "context": "CREATE TABLE table_2985714_2 (draws VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT MAX(area__km²_) FROM table_298550_1 WHERE capital = \"San Juan\"",
    "question_en": "What is the highest value of area when capital is San Juan?",
    "question_th": "มูลค่าสูงสุดของพื้นที่เมื่อเมืองหลวงคือซานฮวนคือเท่าใด",
    "context": "CREATE TABLE table_298550_1 (area__km²_ INTEGER, capital VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(area__km²_) FROM table_298550_1 WHERE population_density__per_km²_ = \"207.9\"",
    "question_en": "How many entries for area correspond to a population density of 207.9?",
    "question_th": "มีกี่รายการสำหรับพื้นที่ที่สอดคล้องกับความหนาแน่นของประชากร 207.9",
    "context": "CREATE TABLE table_298550_1 (area__km²_ VARCHAR, population_density__per_km²_ VARCHAR)"
  },
  {
    "answer": "SELECT area__km²_ FROM table_298550_1 WHERE capital = \"Port-au-Prince\"",
    "question_en": "What is every entry for area if capital is Port-au-Prince?",
    "question_th": "ทุกรายการสำหรับพื้นที่จะเป็นอย่างไรหากเมืองหลวงคือปอร์โตแปรงซ์?",
    "context": "CREATE TABLE table_298550_1 (area__km²_ VARCHAR, capital VARCHAR)"
  },
  {
    "answer": "SELECT country_with_flag FROM table_298550_1 WHERE population__1_july_2005_est_ = 11346670",
    "question_en": "What is every country with a flag with population of 11346670?",
    "question_th": "ทุกประเทศมีธงจำนวนประชากร 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²_ = 9104",
    "question_en": "What is the highest value for population when area is 9104?",
    "question_th": "ค่าประชากรสูงสุดเมื่อพื้นที่คือ 9104 คือเท่าใด",
    "context": "CREATE TABLE table_298550_1 (population__1_july_2005_est_ INTEGER, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(date) FROM table_2985987_2 WHERE race = \"Victoria Derby\"",
    "question_en": "What many times was the victoria derby raced?",
    "question_th": "วิคตอเรียดาร์บี้แข่งกี่ครั้ง?",
    "context": "CREATE TABLE table_2985987_2 (date VARCHAR, race VARCHAR)"
  },
  {
    "answer": "SELECT weight__kg_ FROM table_2985987_2 WHERE race = \"Autumn Classic\"",
    "question_en": "What is the autumn classic weight?",
    "question_th": "น้ำหนักคลาสสิกในฤดูใบไม้ร่วงคืออะไร?",
    "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_en": "Who directed the episode that had 3.55 million viewers?",
    "question_th": "ใครเป็นผู้กำกับตอนที่มีผู้ชม 3.55 ล้านคน?",
    "context": "CREATE TABLE table_29897962_1 (directed_by VARCHAR, us_viewers__million_ VARCHAR)"
  },
  {
    "answer": "SELECT dimensions FROM table_298883_5 WHERE value = \"₩200\"",
    "question_en": "What are the dimensions of the coin worth ₩200?",
    "question_th": "เหรียญมูลค่า ₩200 มีขนาดเท่าไร?",
    "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_en": "How many different dates of issue are the for the coin with kumsusan memorial palace on the obverse?",
    "question_th": "เหรียญกษาปณ์ด้านหลังออกมีกี่วันต่างกันครับ",
    "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_en": "What are the dimensions of the coin issued in 1992 with kim il-sung on the obverse?",
    "question_th": "เหรียญที่ออกในปี 1992 มีคิม อิลซุงอยู่ด้านหน้ามีขนาดเท่าไร?",
    "context": "CREATE TABLE table_298883_5 (dimensions VARCHAR, obverse VARCHAR, date_of_issue VARCHAR)"
  },
  {
    "answer": "SELECT reverse FROM table_298883_5 WHERE value = \"₩500\"",
    "question_en": "What is on the reverse side of the ₩500 coin?",
    "question_th": "ด้านหลังของเหรียญ ₩500 คืออะไร?",
    "context": "CREATE TABLE table_298883_5 (reverse VARCHAR, value VARCHAR)"
  },
  {
    "answer": "SELECT reverse FROM table_298883_5 WHERE value = \"₩100\"",
    "question_en": "What is on the reverse side of the ₩100 coin?",
    "question_th": "ด้านหลังของเหรียญ ₩100 คืออะไร?",
    "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_en": "What are the dimensions of the coin with western sea barrage and locks at taedong gang on the reverse side?",
    "question_th": "เหรียญมีเขื่อนกั้นทะเลตะวันตกและมีล็อคที่แทดงแกงค์ด้านหลังขนาดเท่าไหร่ครับ?",
    "context": "CREATE TABLE table_298883_5 (dimensions VARCHAR, reverse VARCHAR)"
  },
  {
    "answer": "SELECT name__namesake_ FROM table_29860752_11",
    "question_en": "What are all the name(namesakes) for the entire chart?",
    "question_th": "ชื่อทั้งหมด (ชื่อซ้ำ) สำหรับแผนภูมิทั้งหมดคืออะไร?",
    "context": "CREATE TABLE table_29860752_11 (name__namesake_ VARCHAR)"
  },
  {
    "answer": "SELECT tv_season FROM table_299121_2 WHERE season = \"1st\"",
    "question_en": "What TV season was the 1st season?",
    "question_th": "ซีซั่นแรกของทีวีคือซีซั่นใด?",
    "context": "CREATE TABLE table_299121_2 (tv_season VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT season AS premiere FROM table_299121_2 WHERE season = \"3rd\"",
    "question_en": "When was the 3rd season premiere originally aired?",
    "question_th": "ซีซั่นที่ 3 ออกอากาศตอนแรกเมื่อไร?",
    "context": "CREATE TABLE table_299121_2 (season VARCHAR)"
  },
  {
    "answer": "SELECT ranking FROM table_299121_2 WHERE season = \"2nd\"",
    "question_en": "What was the 2nd's season's ranking?",
    "question_th": "อันดับของฤดูกาลที่ 2 คืออะไร?",
    "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_en": "When did the season premiere that saw 8.4 million viewers first air?",
    "question_th": "ซีซั่นนี้มีผู้ชม 8.4 ล้านคนออกอากาศครั้งแรกเมื่อใด",
    "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_en": "Who directed the episode that was watched by 2.97 million U.S. viewers? ",
    "question_th": " ใครเป็นผู้กำกับตอนที่ผู้ชม 2.97 ล้านคนในสหรัฐฯ ดู?",
    "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_en": "What is the original air date of the episode written by Liz Feldman?",
    "question_th": "วันที่ออกอากาศดั้งเดิมของตอนที่เขียนโดย 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_en": "Who wrote the episode that was watched by 2.97 million U.S. viewers? ",
    "question_th": " ใครเป็นคนเขียนตอนที่มีผู้ชม 2.97 ล้านคนในสหรัฐฯ?",
    "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_en": "How many millions of U.S viewers watched the episode written by Liz Feldman? ",
    "question_th": " ผู้ชมในสหรัฐฯ กี่ล้านคนดูตอนที่เขียนโดย 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_en": "How many people attended the uefa champions league competition?",
    "question_th": "มีผู้เข้าร่วมการแข่งขันยูฟ่าแชมเปียนส์ลีกกี่คน?",
    "context": "CREATE TABLE table_299271_2 (attendance VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT MIN(miss_international) FROM table_29942205_1 WHERE rank = 1",
    "question_en": "How many women has reached the title of Miss International representing the country ranked as number 1?",
    "question_th": "มีผู้หญิงกี่คนที่ได้ตำแหน่ง Miss International ตัวแทนประเทศอันดับ 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_en": "How many women has got the first runner-up position in representation of Philippines?",
    "question_th": "มีผู้หญิงกี่คนที่ได้ตำแหน่งรองชนะเลิศในการเป็นตัวแทนของฟิลิปปินส์?",
    "context": "CREATE TABLE table_29942205_1 (country_territory VARCHAR)"
  },
  {
    "answer": "SELECT MIN(miss_international) FROM table_29942205_1",
    "question_en": "What is the lowest value in the miss international column?",
    "question_th": "ค่าต่ำสุดในคอลัมน์ miss international คืออะไร?",
    "context": "CREATE TABLE table_29942205_1 (miss_international INTEGER)"
  },
  {
    "answer": "SELECT MIN(1 AS st_runner_up) FROM table_29942205_1",
    "question_en": "What is the smallest quantity displayed under the title \"first runner-up\"?",
    "question_th": "จำนวนที่น้อยที่สุดที่แสดงภายใต้ชื่อ \"รองชนะเลิศอันดับ 1\" คืออะไร?",
    "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_en": "How many women from Uruguay has become third runner-up in this pageant?",
    "question_th": "มีผู้หญิงจากอุรุกวัยกี่คนที่ได้รองอันดับสามในการประกวดครั้งนี้",
    "context": "CREATE TABLE table_29942205_1 (country_territory VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_29970488_2 WHERE _number = 10",
    "question_en": "What year was player number 10?",
    "question_th": "นักเตะหมายเลข 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_en": "How many hometowns are there when Charis Prep was the previous school?",
    "question_th": "เมื่อชาริสเตรียมอยู่โรงเรียนเดิมมีกี่บ้านเกิด?",
    "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_en": "How many different items appear in the weight column when Pittsburgh, PA is the hometown?",
    "question_th": "มีรายการที่แตกต่างกันกี่รายการปรากฏในคอลัมน์น้ำหนักเมื่อเมืองพิตส์เบิร์ก รัฐเพนซิลเวเนีย เป็นบ้านเกิด",
    "context": "CREATE TABLE table_29970488_2 (weight___lb__ VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT episode FROM table_29960651_5 WHERE no_for_season = 3",
    "question_en": "Which episode is number 3 in the season?",
    "question_th": "ตอนไหนคืออันดับที่ 3 ของซีซั่น?",
    "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_en": "What is the episode name for series number 45?",
    "question_th": "ซีรีส์หมายเลข 45 ชื่อตอนอะไรคะ?",
    "context": "CREATE TABLE table_29960651_5 (episode VARCHAR, no_for_series VARCHAR)"
  },
  {
    "answer": "SELECT MAX(total) FROM table_30008638_1",
    "question_en": "What is the highest total for any country/territory? ",
    "question_th": " ยอดรวมสูงสุดของประเทศ/เขตแดนใดๆ คือเท่าใด",
    "context": "CREATE TABLE table_30008638_1 (total INTEGER)"
  },
  {
    "answer": "SELECT semifinalists FROM table_30008638_1 WHERE country_territory = \"Romania\"",
    "question_en": "How many semifinalists has Romania had? ",
    "question_th": " โรมาเนียมีผู้เข้ารอบรองชนะเลิศกี่คน?",
    "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_en": "How many Miss Waters has Canada had?",
    "question_th": "แคนาดามี Miss Waters กี่คน?",
    "context": "CREATE TABLE table_30008638_1 (miss_water INTEGER, country_territory VARCHAR)"
  },
  {
    "answer": "SELECT MAX(miss_fire) FROM table_30008638_1",
    "question_en": "What is the most Miss Fires any country has had?",
    "question_th": "Miss Fires ของประเทศใดมีมากที่สุด?",
    "context": "CREATE TABLE table_30008638_1 (miss_fire INTEGER)"
  },
  {
    "answer": "SELECT MIN(miss_air) FROM table_30008638_1",
    "question_en": "What is the least amount of Miss Airs any country has had?",
    "question_th": "Miss Airs มีจำนวนน้อยที่สุดเท่าที่ประเทศใดมี?",
    "context": "CREATE TABLE table_30008638_1 (miss_air INTEGER)"
  },
  {
    "answer": "SELECT high_assists FROM table_29982187_4 WHERE date = \"January 29\"",
    "question_en": "what re the high assists for january 29?",
    "question_th": "แอสซิสต์สูงสุดในวันที่ 29 มกราคมมีอะไรบ้าง?",
    "context": "CREATE TABLE table_29982187_4 (high_assists VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_29997127_4 WHERE date = \"April 21\"",
    "question_en": "What team did the suns play on April 21? ",
    "question_th": " ซันส์เล่นทีมอะไรเมื่อวันที่ 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_en": "In what game was the attendance at the America West Arena 18,756?",
    "question_th": "ผู้ชมที่ 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_en": "What is the official name of the municipality whose name in Basque is Bilar?",
    "question_th": "ชื่ออย่างเป็นทางการของเทศบาลที่มีชื่อในภาษาบาสก์คือบิลาร์คืออะไร?",
    "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án\"",
    "question_en": "What is the official name of the municipality whose name in Spanish is Cripán?",
    "question_th": "ชื่ออย่างเป็นทางการของเทศบาลที่มีชื่อในภาษาสเปนว่า Cripán คืออะไร?",
    "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_en": "What is the official name of the municipality whose name in Spanish is Vitoria? ",
    "question_th": "ชื่อทางการของเทศบาลที่มีชื่อเป็นภาษาสเปนว่า วิโตเรีย คืออะไร?",
    "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_en": "What is the name in Basque of the municipality whose official name is Kuartango? ",
    "question_th": " ชื่อในภาษาบาสก์ของเทศบาลซึ่งมีชื่ออย่างเป็นทางการว่า 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_en": "What is the INE code of the municipality whose official name is Berantevilla? ",
    "question_th": " รหัส INE ของเทศบาลที่มีชื่ออย่างเป็นทางการว่า 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_en": "What is every reference for type and usage of Germanium small-signal RF transistor?",
    "question_th": "การอ้างอิงสำหรับประเภทและการใช้งานของทรานซิสเตอร์ RF สัญญาณขนาดเล็กเจอร์เมเนียมคืออะไร?",
    "context": "CREATE TABLE table_30011_2 (reference VARCHAR, type_and_usage VARCHAR)"
  },
  {
    "answer": "SELECT equivalent FROM table_30011_2 WHERE example = \"ASY28\"",
    "question_en": "What is every equivalent for the example of asy28?",
    "question_th": "อะไรคือสิ่งที่เทียบเท่าสำหรับตัวอย่างของ asy28?",
    "context": "CREATE TABLE table_30011_2 (equivalent VARCHAR, example VARCHAR)"
  },
  {
    "answer": "SELECT reference FROM table_30011_2 WHERE example = \"AF117\"",
    "question_en": "What is every reference for the example of AF117?",
    "question_th": "อะไรคือข้อมูลอ้างอิงสำหรับตัวอย่างของ AF117?",
    "context": "CREATE TABLE table_30011_2 (reference VARCHAR, example VARCHAR)"
  },
  {
    "answer": "SELECT prefix_class FROM table_30011_2 WHERE equivalent = \"NTE160\"",
    "question_en": "What is every prefix class for the equivalent of NTE160?",
    "question_th": "ทุกคลาสคำนำหน้าเทียบเท่ากับ NTE160 คืออะไร",
    "context": "CREATE TABLE table_30011_2 (prefix_class VARCHAR, equivalent VARCHAR)"
  },
  {
    "answer": "SELECT prefix_class FROM table_30011_2 WHERE equivalent = \"NTE101\"",
    "question_en": "What is every prefix class for the equivalent of NTE101?",
    "question_th": "ทุกคลาสคำนำหน้าเทียบเท่ากับ NTE101 คืออะไร",
    "context": "CREATE TABLE table_30011_2 (prefix_class VARCHAR, equivalent VARCHAR)"
  },
  {
    "answer": "SELECT example FROM table_30011_2 WHERE equivalent = \"NTE160\"",
    "question_en": "What is every example for the equivalent of NTE160?",
    "question_th": "ทุกตัวอย่างที่เทียบเท่ากับ NTE160 คืออะไร",
    "context": "CREATE TABLE table_30011_2 (example VARCHAR, equivalent VARCHAR)"
  },
  {
    "answer": "SELECT manhunt_international FROM table_30018460_1 WHERE country_territory = \"France\"",
    "question_en": "How many manhunt beauty contets have been held in france?",
    "question_th": "มีการจัดประกวดความงามตามล่าในฝรั่งเศสกี่ครั้ง?",
    "context": "CREATE TABLE table_30018460_1 (manhunt_international VARCHAR, country_territory VARCHAR)"
  },
  {
    "answer": "SELECT semifinalists FROM table_30018460_1 WHERE country_territory = \"Peru\"",
    "question_en": "How many semifinalists where from peru?",
    "question_th": "เข้ารอบรองชนะเลิศกี่คนจากเปรู?",
    "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_en": "How many first place participants where from croatia?",
    "question_th": "มีผู้เข้าร่วมอันดับที่ 1 จากประเทศโครเอเชียกี่คน?",
    "context": "CREATE TABLE table_30018460_1 (country_territory VARCHAR)"
  },
  {
    "answer": "SELECT MIN(total) FROM table_30018460_1",
    "question_en": "What is the minimum sum?",
    "question_th": "จำนวนเงินขั้นต่ำคือเท่าไร?",
    "context": "CREATE TABLE table_30018460_1 (total INTEGER)"
  },
  {
    "answer": "SELECT MIN(manhunt_international) FROM table_30018460_1",
    "question_en": "What is the minimum manhunt beauty  contest?",
    "question_th": "การประกวดความงามตามล่าขั้นต่ำคืออะไร?",
    "context": "CREATE TABLE table_30018460_1 (manhunt_international INTEGER)"
  },
  {
    "answer": "SELECT COUNT(written_by) FROM table_30030227_1 WHERE directed_by = \"Arvin Brown\"",
    "question_en": "How many people wrote the episode directed by Arvin Brown?",
    "question_th": "มีกี่คนที่เขียนบทตอนที่กำกับโดย 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_en": "When included ram (mib) is the model what is the sonnet?",
    "question_th": "เมื่อรวม ram (mib) เป็นรุ่น โคลงคืออะไร?",
    "context": "CREATE TABLE table_3002894_4 (sonnet VARCHAR, model VARCHAR)"
  },
  {
    "answer": "SELECT apple FROM table_3002894_4 WHERE sonnet = \"4 MB\"",
    "question_en": "When 4 mb is the sonnet what is the apple?",
    "question_th": "เมื่อโคลง 4 mb คือแอปเปิ้ลอะไร?",
    "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_en": "When 0,4, or 8 mb is the nupowr 117 what is the sonnet?",
    "question_th": "เมื่อ 0,4 หรือ 8 mb คือ nupowr 117 โคลงคืออะไร?",
    "context": "CREATE TABLE table_3002894_4 (sonnet VARCHAR, nupowr_117 VARCHAR)"
  },
  {
    "answer": "SELECT nupowr_167 FROM table_3002894_4 WHERE model = \"Maker\"",
    "question_en": "When maker is the model what is the nupowr 167?",
    "question_th": "เมื่อ Maker เป็นรุ่นอะไร nuprowr 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_en": "When 0,4, or 8 mb is the nupowr 117 what is the nupowr 183?",
    "question_th": "เมื่อ 0,4 หรือ 8 mb คือ nupowr 117 ค่า 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_en": "What is the name of the episode written by glen mazzara?",
    "question_th": "ตอนที่เขียนโดย 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_en": "How many titles are there with the original air date of august3,2010?",
    "question_th": "วันที่ออกอากาศครั้งแรกวันที่ 3 สิงหาคม 2553 มีกี่เรื่อง?",
    "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_en": "Who directed the episdoe veiwed by 3.24  million viewers?",
    "question_th": "ใครเป็นผู้กำกับตอนที่มีผู้ชม 3.24 ล้านคน?",
    "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_en": "What dated the episode written by is adam e. fierro & glen mazzara air?",
    "question_th": "วันที่เขียนโดยอดัมอี ฟิเอโร แอนด์ เกลน มาซซารา แอร์?",
    "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_en": "in which date the strea was w 2",
    "question_th": "ซึ่งวันที่ strea เป็น w 2",
    "context": "CREATE TABLE table_30047613_12 (date VARCHAR, streak VARCHAR)"
  },
  {
    "answer": "SELECT streak FROM table_30047613_12 WHERE date = \"April 13\"",
    "question_en": "in april 13 what was the streak",
    "question_th": "ในวันที่ 13 เมษายน สตรีคเป็นอย่างไรบ้าง",
    "context": "CREATE TABLE table_30047613_12 (streak VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_30047613_12 WHERE date = \"April 13\"",
    "question_en": "in april 13 who made the high rebounds",
    "question_th": "เมื่อวันที่ 13 เมษายน ที่ทำรีบาวด์สูง",
    "context": "CREATE TABLE table_30047613_12 (high_rebounds VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_30049462_8 WHERE score = \"L 111–126\"",
    "question_en": "Name the game for  l 111–126",
    "question_th": "ตั้งชื่อเกมสำหรับ l 111–126",
    "context": "CREATE TABLE table_30049462_8 (game VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_30049462_8 WHERE date = \"March 8\"",
    "question_en": "Name the score for march 8",
    "question_th": "ตั้งชื่อคะแนนสำหรับวันที่ 8 มีนาคม",
    "context": "CREATE TABLE table_30049462_8 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_30049462_5 WHERE team = \"Detroit\"",
    "question_en": "in the detroit team who made the high points",
    "question_th": "ในทีมดีทรอยต์ที่ทำแต้มสูงได้",
    "context": "CREATE TABLE table_30049462_5 (high_points VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(score) FROM table_30049462_5 WHERE team = \"Philadelphia\"",
    "question_en": "what is the score in the philadelphia team ",
    "question_th": " คะแนนในทีมฟิลาเดลเฟียเป็นเท่าไหร่",
    "context": "CREATE TABLE table_30049462_5 (score VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_30049462_5 WHERE date = \"December 7\"",
    "question_en": "in december 7 who made the high points",
    "question_th": "เมื่อวันที่ 7 ธันวาคม ที่ทำคะแนนสูงสุด",
    "context": "CREATE TABLE table_30049462_5 (high_points VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(date) FROM table_30049462_3 WHERE game = 2",
    "question_en": "in how many dates the game was 2",
    "question_th": "เกมคือวันที่ 2 กี่วัน",
    "context": "CREATE TABLE table_30049462_3 (date VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_30049462_3 WHERE team = \"Milwaukee\"",
    "question_en": "in the milwaukee team who made the high points",
    "question_th": "ในทีมมิลวอกีที่ทำแต้มสูงได้",
    "context": "CREATE TABLE table_30049462_3 (high_points VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_30049462_4 WHERE team = \"Los Angeles\"",
    "question_en": "What was the location and it's corresponding attendance during the game against Los Angeles?",
    "question_th": "สถานที่คืออะไรและผู้เข้าชมตรงกันระหว่างเกมกับลอสแองเจลิสหรือไม่?",
    "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_en": "what is the km from wellington where the metlink code is mast?",
    "question_th": "ระยะทางจากเวลลิงตันคือเท่าไร โดยที่รหัส metlink เป็นเสากระโดง",
    "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_en": "what is the name of the station where the metlink code is mata?",
    "question_th": "สถานีที่มีรหัส metlink คือ mata ชื่ออะไร?",
    "context": "CREATE TABLE table_3005450_1 (station VARCHAR, metlink_code VARCHAR)"
  },
  {
    "answer": "SELECT metlink_code FROM table_3005450_1 WHERE opened = \"1908\"",
    "question_en": "what is the metlink code that opened in 1908?",
    "question_th": "รหัส metlink ที่เปิดในปี 1908 คืออะไร",
    "context": "CREATE TABLE table_3005450_1 (metlink_code VARCHAR, opened VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(team) FROM table_30054758_3 WHERE high_assists = \"Inge – 6\"",
    "question_en": "How many teams did inge – 6 have the high assists with?",
    "question_th": "มีกี่ทีมที่ทำได้ – 6 แอสซิสต์สูงด้วย?",
    "context": "CREATE TABLE table_30054758_3 (team VARCHAR, high_assists VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_30054758_3 WHERE date = \"December 3\"",
    "question_en": "What is the record for december 3?",
    "question_th": "บันทึกของวันที่ 3 ธันวาคม คืออะไร?",
    "context": "CREATE TABLE table_30054758_3 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(high_rebounds) FROM table_30054758_3 WHERE high_points = \"Inge – 19\"",
    "question_en": "How many entries are there for  high rebounds when high points is inge – 19?",
    "question_th": "มีกี่รายการสำหรับการรีบาวด์สูงเมื่อมีคะแนนสูงเข้ามา – 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_en": "How many games are shown when the is  location attendance is phog allen fieldhouse , lawrence, ks (16,300)?",
    "question_th": "มีกี่เกมที่แสดงเมื่อมีการเข้าร่วมสถานที่คือ 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_en": "how many high assits have a date of february 5?",
    "question_th": "วันที่ 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 = \"—— No Time\"",
    "question_en": "What is shown for fri 26 aug when mon 22 aug is —— no time?",
    "question_th": "สิ่งที่แสดงสำหรับวันศุกร์ที่ 26 ส.ค. เมื่อวันจันทร์ที่ 22 ส.ค. คือ —— ไม่มีเวลา?",
    "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_en": "What shows for sat 20 aug when fri 26 aug is 19' 30.70 116.023mph?",
    "question_th": "รายการอะไรในวันเสาร์ที่ 20 ส.ค. เมื่อวันศุกร์ที่ 26 ส.ค. คือ 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_en": "What shows for mon 22 aug whenwed 24 aug is 19' 56.16 113.553mph?",
    "question_th": "รายการอะไรในวันจันทร์ที่ 22 ส.ค. เมื่อวันพุธที่ 24 ส.ค. คือ 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_en": "What is the thurs 25 aug when wed 24 aug is 19' 59.73 113.216mph?",
    "question_th": "พฤหัสบดีที่ 25 ส.ค. เมื่อพุธที่ 24 ส.ค. คือ 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_en": "What shows for thurs 25 aug when fri 26 aug is 19' 30.70 116.023mph?",
    "question_th": "อะไรจะแสดงในวันพฤหัสบดีที่ 25 ส.ค. เมื่อวันศุกร์ที่ 26 ส.ค. คือ 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_en": "What's the best rank possible?",
    "question_th": "อันดับที่ดีที่สุดคืออะไร?",
    "context": "CREATE TABLE table_30058355_5 (rank INTEGER)"
  },
  {
    "answer": "SELECT gt4_cup_winner FROM table_30060356_3 WHERE circuit = \"Spa-Francorchamps Report\"",
    "question_en": "List all GT4 Cup winners played on the Spa-Francorchamps Report.",
    "question_th": "รายชื่อผู้ชนะ GT4 Cup ทั้งหมดที่เล่นในรายงาน Spa-Francorchamps",
    "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_en": "Who are the gt3 pro / am cup winners when the gt3 pro cup winner was no. 1 vita4one?",
    "question_th": "ใครคือผู้ชนะถ้วย gt3 pro / am เมื่อผู้ชนะถ้วย gt3 pro ไม่ใช่ 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_en": "What is the highest numbered event?",
    "question_th": "เหตุการณ์ที่มีหมายเลขสูงสุดคืออะไร?",
    "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_en": "What is every entry for Tuesday August 23 if the entry for Wednesday August 24 is 22' 23.29 101.116mph?",
    "question_th": "ทุกรายการสำหรับวันอังคารที่ 23 สิงหาคมจะเป็นอย่างไร หากรายการสำหรับวันพุธที่ 24 สิงหาคมคือ 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_en": "What is every entry for Saturday August 27 when the entry for Thursday August 25 is 23' 56.90 94.528mph?",
    "question_th": "ทุกรายการสำหรับวันเสาร์ที่ 27 สิงหาคมจะเป็นอย่างไรเมื่อรายการสำหรับวันพฤหัสบดีที่ 25 สิงหาคมคือ 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_en": "What is every entry for Friday August 26 when the entry for Wednesday August 24 is 23' 52.67 94.807mph?",
    "question_th": "ทุกรายการสำหรับวันศุกร์ที่ 26 สิงหาคมจะเป็นอย่างไร เมื่อรายการวันพุธที่ 24 สิงหาคมคือ 23' 52.67 94.807 ไมล์ต่อชั่วโมง",
    "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_en": "When  david ashburn richard westbrook is the gt3 winner and 1 is the round what is the length?",
    "question_th": "เมื่อเดวิด แอชเบิร์น ริชาร์ด เวสต์บรูกเป็นผู้ชนะ GT3 และ 1 คือรอบ ความยาวเท่าไร?",
    "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_en": "When charles bateman michael lyons is the gt3 winner and donington park is the circuit who is the gt4 winner?",
    "question_th": "เมื่อ charles bateman michael lyons เป็นผู้ชนะ gt3 และ Donington park คือวงจร ใครคือผู้ชนะ gt4",
    "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_en": "When charles bateman michael lyons is the gt3 winner and 9 is the round who is the gt4 winner?",
    "question_th": "เมื่อ charles bateman michael lyons เป็นผู้ชนะ gt3 และ 9 คือรอบ ใครคือผู้ชนะ gt4?",
    "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_en": "When  tim bridgman gregor fisken is the pole position who is the gt3 winner?",
    "question_th": "เมื่อ tim bridgman gregor fisken ขึ้นโพลโพซิชั่น ใครเป็นผู้ชนะ gt3?",
    "context": "CREATE TABLE table_30062172_3 (gt3_winner VARCHAR, pole_position VARCHAR)"
  },
  {
    "answer": "SELECT jockey FROM table_30098144_2 WHERE race = \"Doncaster Handicap\"",
    "question_en": "List the rider for the doncaster handicap compeition.",
    "question_th": "รายชื่อนักแข่งสำหรับการแข่งขันแฮนดิแคปของดอนคาสเตอร์",
    "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_en": "Name the number of troops for troops per $1 billion being 2.45",
    "question_th": "ตั้งชื่อจำนวนทหารต่อ 1 พันล้านดอลลาร์เป็น 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_en": "Name the total number of troops per one million being 2.76",
    "question_th": "ตั้งชื่อจำนวนทหารทั้งหมดต่อหนึ่งล้านคนเป็น 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_en": "Name the country for troops per one million being 54.9",
    "question_th": "ตั้งชื่อประเทศสำหรับกำลังทหารต่อหนึ่งล้านคนเป็น 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_en": "Which player(s) played at Howard college?",
    "question_th": "ผู้เล่นคนไหนเคยเล่นที่ 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_en": "Which CFL team was pick #35?",
    "question_th": "ทีม CFL ใดที่ถูกเลือก #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_en": "Which CFL team got pick 34?",
    "question_th": "ทีม CFL ใดที่ได้รับเลือก 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_en": "What is Tyrell Francisco's player position?",
    "question_th": "ตำแหน่งผู้เล่นของ Tyrell Francisco คืออะไร?",
    "context": "CREATE TABLE table_30108930_6 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT barony FROM table_30120547_1 WHERE townland = \"Gurraghy\"",
    "question_en": "What is the barony of the Gurraghy townland?",
    "question_th": "บารอนของทาวน์แลนด์ Gurraghy คืออะไร?",
    "context": "CREATE TABLE table_30120547_1 (barony VARCHAR, townland VARCHAR)"
  },
  {
    "answer": "SELECT civil_parish FROM table_30120547_1 WHERE townland = \"Cappanaboul\"",
    "question_en": "What is the civil parish of the cappanaboul townland?",
    "question_th": "ตำบลพลเรือนของตำบลแคปปานาบูลคืออะไร?",
    "context": "CREATE TABLE table_30120547_1 (civil_parish VARCHAR, townland VARCHAR)"
  },
  {
    "answer": "SELECT civil_parish FROM table_30120547_1 WHERE area__acres__ = 119",
    "question_en": "What are the civil parishes of the townlands with an area of 119 acres?",
    "question_th": "ตำบลประชาราษฎร์มีเนื้อที่ 119 ไร่ อะไรบ้าง?",
    "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_en": "What civil paris appears when Ballynamona is the townland with 126 acres?",
    "question_th": "ปารีสพลเรือนใดปรากฏขึ้นเมื่อ Ballynamona เป็นเมืองที่มีพื้นที่ 126 เอเคอร์",
    "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_en": "What is the area of the civil parish kilworth and townland monadrishane?",
    "question_th": "เทศบาลตำบลคิลเวิร์ธและทาวน์แลนด์ มอนาดริสเชน มีพื้นที่เท่าใด?",
    "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_en": "How many barony's appear when Ballyvadona is the townland.",
    "question_th": "มีบาโรนี่กี่คนปรากฏขึ้นเมื่อบัลลีวาโดนาเป็นเขตเมือง",
    "context": "CREATE TABLE table_30120556_1 (barony VARCHAR, townland VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(area__acres__) FROM table_30120556_1 WHERE townland = \"Glasvaunta\"",
    "question_en": "How many items appear in the area column when Glasvaunta is the townland?",
    "question_th": "มีรายการกี่รายการที่ปรากฏในคอลัมน์พื้นที่เมื่อ Glasvaunta เป็นเขตเมือง?",
    "context": "CREATE TABLE table_30120556_1 (area__acres__ VARCHAR, townland VARCHAR)"
  },
  {
    "answer": "SELECT MIN(area__acres__) FROM table_30120556_1 WHERE townland = \"Derrynanool\"",
    "question_en": "What is the fewest area in Derrynanool townland?",
    "question_th": "พื้นที่ใดน้อยที่สุดในทาวน์แลนด์ Derrynanool?",
    "context": "CREATE TABLE table_30120556_1 (area__acres__ INTEGER, townland VARCHAR)"
  },
  {
    "answer": "SELECT poor_law_union FROM table_30120566_1 WHERE townland = \"Lisladeen\"",
    "question_en": "What is Lisladeen poor law union?",
    "question_th": "สหภาพกฎหมายที่ยากจน Lisladeen คืออะไร?",
    "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_en": "In what barony are both the townland Dawstown and the civil parish Matehy located?",
    "question_th": "ในเขตเมืองใดที่ทั้งเมืองดอว์สทาวน์และตำบลเมธีตั้งอยู่?",
    "context": "CREATE TABLE table_30120566_1 (barony VARCHAR, townland VARCHAR, civil_parish VARCHAR)"
  },
  {
    "answer": "SELECT barony FROM table_30120566_1 WHERE townland = \"Ballycunningham\"",
    "question_en": "What barony is Ballycunningham in?",
    "question_th": "Ballycunningham อยู่ในบารอนใด?",
    "context": "CREATE TABLE table_30120566_1 (barony VARCHAR, townland VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(area__acres__) FROM table_30120566_1 WHERE townland = \"Rathcoola East\"",
    "question_en": "How many different sizes (in acres) are noted for Rathcoola East?",
    "question_th": "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_en": "how many areas have townland as kilgilky north?",
    "question_th": "ทาวน์แลนด์ทางเหนือมีกี่พื้นที่?",
    "context": "CREATE TABLE table_30120560_1 (area__acres__ VARCHAR, townland VARCHAR)"
  },
  {
    "answer": "SELECT civil_parish FROM table_30120560_1 WHERE area__acres__ = 405",
    "question_en": "which cilvil parishes have areas of 405?",
    "question_th": "ตำบล cilvil ใดมีพื้นที่ 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_en": "what is the barony and an area of 560?",
    "question_th": "บาโรนีและพื้นที่ 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_en": "what is the number of areas where the townland is brittas?",
    "question_th": "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_en": "What is the Poor Law Union for Coolkirky?",
    "question_th": "สหภาพกฎหมายผู้น่าสงสารสำหรับ 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_en": "How few acres is the area of Clashroe?",
    "question_th": "Clashroe มีพื้นที่กี่เอเคอร์?",
    "context": "CREATE TABLE table_30120633_1 (area__acres__ INTEGER, townland VARCHAR)"
  },
  {
    "answer": "SELECT townland FROM table_30120633_1 WHERE area__acres__ = 213",
    "question_en": "Which townland has a 213 acre area?",
    "question_th": "ทาวน์แลนด์ใดมีพื้นที่ 213 เอเคอร์",
    "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_en": "How many acres does the area of Lissagroom with Bandon as its poor law union cover?",
    "question_th": "พื้นที่ของ Lissagroom ที่มีบ้านดอนเป็นสหภาพกฎหมายที่ยากจนครอบคลุมพื้นที่กี่เอเคอร์?",
    "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_en": "What is Ballymurphy North's civil parish?",
    "question_th": "ตำบลพลเรือนของ Ballymurphy North คืออะไร?",
    "context": "CREATE TABLE table_30120633_1 (civil_parish VARCHAR, townland VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(area__acres__) FROM table_30120761_1 WHERE townland = \"Coomroe\"",
    "question_en": "How many acres in the townland of Coomroe?",
    "question_th": "ทาวน์แลนด์ของ 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_en": "What are all the acreages of the townlands in the Macroom poor law union and Macroom civil parish?",
    "question_th": "พื้นที่เมืองทั้งหมดในสหภาพกฎหมายยากจนของ Macroom และเขตแพ่งของ Macroom มีเนื้อที่เท่าใด",
    "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_en": "How many baronies is Maulnagrough a part of?",
    "question_th": "Maulnagrough เป็นส่วนหนึ่งของบารอนกี่คน?",
    "context": "CREATE TABLE table_30120761_1 (barony VARCHAR, townland VARCHAR)"
  },
  {
    "answer": "SELECT townland FROM table_30120761_1 WHERE area__acres__ = 131",
    "question_en": "What are all of the townlands that have exactly 131 acres.",
    "question_th": "ทาวน์แลนด์ทั้งหมดที่มีพื้นที่ 131 เอเคอร์พอดีคืออะไรบ้าง",
    "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_en": "What is the acreage of the Maghereen in the civil parish of Macroom?",
    "question_th": "พื้นที่ของ Maghereen ในเขตแพ่งของ 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_en": "What is the poor law union when the townland is bohonagh?",
    "question_th": "สหภาพกฎหมายที่น่าสงสารคืออะไรเมื่อที่ดินเป็น 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_en": "How many entries are in barony when the townland is derrigra?",
    "question_th": "มีกี่รายการในบาโรนี่เมื่อทาวน์แลนด์เป็นเดอร์ริกรา?",
    "context": "CREATE TABLE table_30121075_1 (barony VARCHAR, townland VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(poor_law_union) FROM table_30121075_1 WHERE townland = \"Dromidiclogh\"",
    "question_en": "How many entries are listed in poor law union when townland is dromidiclogh?",
    "question_th": "มีกี่รายการที่อยู่ใน Poor Law Union เมื่อ Townland เป็น dromidilogh?",
    "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_en": "What is the area when the poor law union is skibbereen and the townland is knockmore?",
    "question_th": "พื้นที่ใดที่สหภาพกฎหมายที่ยากจนคือ Skibbereen และ Townland คือ 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_en": "What is the circuit located in baltimore , maryland?",
    "question_th": "วงจรนี้ตั้งอยู่ในเมืองบัลติมอร์ รัฐแมริแลนด์คืออะไร?",
    "context": "CREATE TABLE table_30134667_2 (circuit VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT circuit FROM table_30134667_2 WHERE location = \"St. Petersburg, Florida\"",
    "question_en": "Which circuit was located in st. petersburg, florida?",
    "question_th": "วงจรใดที่ตั้งอยู่ในเซนต์ ปีเตอร์สเบิร์ก ฟลอริดา?",
    "context": "CREATE TABLE table_30134667_2 (circuit VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT fastest_lap FROM table_30134667_2 WHERE location = \"Bowmanville, Ontario\"",
    "question_en": "Who had the fastest lap in bowmanville, ontario?",
    "question_th": "ใครทำรอบได้เร็วที่สุดใน 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_en": "Who had the fastest lap on september 4?",
    "question_th": "ใครทำรอบได้เร็วที่สุดในวันที่ 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_en": "What is the 1985 value for the year when GDP as of 2012 after PPP was 369.38?",
    "question_th": "มูลค่าปี 1985 สำหรับปีที่ GDP ณ ปี 2555 หลัง PPP อยู่ที่ 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_en": "What was the gap from Thailand as of 2012 for China?",
    "question_th": "อะไรคือช่องว่างจากประเทศไทยในปี 2555 สำหรับประเทศจีน?",
    "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_en": "What is the maximum 2010 value for China?",
    "question_th": "มูลค่าสูงสุดของจีนในปี 2010 คือเท่าใด",
    "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_en": "What is the gap from Thailand as of 2012 for the country whose 1980 gap was 0.29?",
    "question_th": "Gap จากประเทศไทยในปี 2555 ของประเทศที่มี Gap ในปี 2523 อยู่ที่ 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_en": "How many GDPs as of 2012 after PPP values are associated with a 2012 value of 23113?",
    "question_th": "จำนวน GDP ในปี 2555 หลังจากค่า PPP เชื่อมโยงกับมูลค่าปี 2555 ที่ 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_en": "What is the max 2010 value for a 1980 gap value is 2.43?",
    "question_th": "ค่าสูงสุดปี 2010 สำหรับค่าช่องว่างปี 1980 คือ 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_en": "How many viewers in the UK did episode 50 have?",
    "question_th": "ตอนที่ 50 มีผู้ชมในสหราชอาณาจักรกี่คน?",
    "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_en": "Tell me the doubles W-L for player of laurynas grigelis",
    "question_th": "บอก WL สองเท่าของผู้เล่นลอรีนาส กริเจลลิสมาหน่อย",
    "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_en": "What is the newest Cap with a Goals stat larger than 17 and which was done by Brian Turner?",
    "question_th": "อะไรคือแคปใหม่ล่าสุดที่มีสถิติประตูมากกว่า 17 และอันไหนที่ 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_en": "What is the nationality of school/club team of barton cc (ks)?",
    "question_th": "ทีมโรงเรียน/สโมสรของ 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_en": "Shawn Respert play for what school/club team?",
    "question_th": "Shawn Respert เล่นให้กับทีมโรงเรียน/สโมสรใด?",
    "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_en": "Who has position in year 1996-97 in Toronto?",
    "question_th": "ใครมีตำแหน่งในปี 1996-97 ในโตรอนโต?",
    "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_en": "Roy Rogers play for what school/club team?",
    "question_th": "Roy Rogers เล่นให้กับทีมโรงเรียน/สโมสรใด",
    "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_en": "What year is United States school/club team from Arkansas play in Toronto",
    "question_th": "ทีมโรงเรียน/สโมสรของสหรัฐอเมริกาจากอาร์คันซอเล่นที่โตรอนโตในปีใด",
    "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_en": "Who is the player from United States who play in year 2003-06 in Toronto?",
    "question_th": "ใครคือผู้เล่นจากสหรัฐอเมริกาที่เล่นในปี 2546-06 ที่โตรอนโต?",
    "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_en": "Tell me the average units sold for square enix",
    "question_th": "บอกจำนวนหน่วยเฉลี่ยที่ขายของ 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_en": "Tell me the date for nicolas pereira",
    "question_th": "บอกวันที่ของนิโคลัส เปเรร่าหน่อยสิ",
    "context": "CREATE TABLE table_name_60 (date VARCHAR, partnering VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_14 WHERE year = 1986",
    "question_en": "what is the date in 1986?",
    "question_th": "ปี 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_en": "What is the average year for Ponce, Puerto Rico events?",
    "question_th": "ปีเฉลี่ยที่จัดงาน Ponce, เปอร์โตริโก คืออะไร?",
    "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_en": "What year did she place 8th in the junior race?",
    "question_th": "เธอได้อันดับที่ 8 ในการแข่งขันรุ่นจูเนียร์ในปีใด",
    "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_en": "Tell me the NHL team for ryan johnson",
    "question_th": "บอกทีม NHL ของไรอัน จอห์นสันหน่อยสิ",
    "context": "CREATE TABLE table_name_69 (nhl_team VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_68 WHERE pick = \"47\"",
    "question_en": "Tell me the position for pick of 47",
    "question_th": "บอกตำแหน่งการเลือก 47 หน่อยครับ",
    "context": "CREATE TABLE table_name_68 (position VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT pick FROM table_name_12 WHERE nhl_team = \"pittsburgh penguins\"",
    "question_en": "Tell me the pick for pittsburgh penguins",
    "question_th": "บอกตัวเลือกสำหรับเพนกวินพิตส์เบิร์กหน่อยสิ",
    "context": "CREATE TABLE table_name_12 (pick VARCHAR, nhl_team VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_51 WHERE player = \"rudolf vercik\"",
    "question_en": "Tell me the nationality for rudolf vercik",
    "question_th": "บอกสัญชาติของรูดอล์ฟ เวอร์ซิกมาหน่อย",
    "context": "CREATE TABLE table_name_51 (nationality VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_85 WHERE nationality = \"canada\" AND pick = \"43\"",
    "question_en": "Tell me the player for nationality of canada for pick of 43",
    "question_th": "บอกผู้เล่นสัญชาติแคนาดาที่เลือก 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_en": "Tell me the college for jason holland",
    "question_th": "บอกมหาลัยของเจสัน ฮอลแลนด์หน่อยสิ",
    "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_en": "Tell me the date for rudolf caracciola for avusrennen",
    "question_th": "บอกวันที่ของ rudolf caracciola สำหรับ 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_en": "Tell me the circuit for 10 may for targa florio",
    "question_th": "บอกวงจรวันที่ 10 พ.ค. ของ 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_en": "What was the score of the Washington tournament?",
    "question_th": "คะแนนของการแข่งขัน Washington คืออะไร?",
    "context": "CREATE TABLE table_name_20 (score VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_95 WHERE opponent = \"patty fendick\"",
    "question_en": "On what date was Patty Fendick an opponent?",
    "question_th": "Patty Fendick เป็นคู่ต่อสู้ในวันที่เท่าไร?",
    "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_en": "What score does Vasil Levski National Stadium, Sofia earn?",
    "question_th": "สนามกีฬาแห่งชาติ Vasil Levski, โซเฟีย ได้คะแนนเท่าไหร่?",
    "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_en": "What score did vasil levski national stadium, sofia, which was friendly during competition, earn?",
    "question_th": "สนามกีฬาแห่งชาติ วาซิล เลฟสกี้ โซเฟีย ซึ่งเล่นกระชับมิตรระหว่างการแข่งขัน ได้คะแนนเท่าไหร่?",
    "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_en": "What is the nationality of the Washington Capitals?",
    "question_th": "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_en": "On what NHL team does Roman Vopat play for?",
    "question_th": "Roman Vopat เล่นให้กับทีมใดของ NHL",
    "context": "CREATE TABLE table_name_57 (nhl_team VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_1 WHERE nationality = \"ukraine\"",
    "question_en": "What is the position of the player from the Ukraine?",
    "question_th": "นักเตะยูเครนอยู่ตำแหน่งไหน?",
    "context": "CREATE TABLE table_name_1 (position VARCHAR, nationality VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_58 WHERE result = \"12th\"",
    "question_en": "What Tournament did he place 12th in?",
    "question_th": "เขาอยู่ในอันดับที่ 12 ในการแข่งขันรายการใด",
    "context": "CREATE TABLE table_name_58 (tournament VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_name_9 WHERE result = \"12th\"",
    "question_en": "What was the first year he placed 12th",
    "question_th": "ปีแรกที่เขาได้อันดับที่ 12 คือปีใด",
    "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_en": "Tell me the circuit for alfa romeo swedish ice race",
    "question_th": "บอกวงจรการแข่งขันน้ำแข็งสวีเดนของ alfa romeo หน่อยสิ",
    "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_en": "Tell me the date for bugatti fpr stanislas czaykowski",
    "question_th": "บอกวันที่สำหรับ 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_en": "Tell me the circuit for 20 august",
    "question_th": "บอกวงจรวันที่ 20 ส.ค",
    "context": "CREATE TABLE table_name_99 (circuit VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT winning_driver FROM table_name_70 WHERE name = \"avusrennen\"",
    "question_en": "Tell me the winning driver for avusrennen",
    "question_th": "บอกคนขับที่ชนะสำหรับ 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_en": "Tell me the report for bugatti and brooklands",
    "question_th": "บอกรายงานของบูกัตติและบรูคแลนด์ให้ฉันหน่อย",
    "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_en": "How many years has there been a competition in Helsinki?",
    "question_th": "มีการแข่งขันที่เฮลซิงกิมากี่ปีแล้ว?",
    "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_en": "Which competition before 1982 had a score of 2:3?",
    "question_th": "รายการไหนก่อนปี 1982 มีสกอร์ 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_en": "Which competition occurred after 1980 with a score of 0:5 in Jerusalem?",
    "question_th": "การแข่งขันใดเกิดขึ้นหลังปี 1980 ด้วยคะแนน 0:5 ในกรุงเยรูซาเลม?",
    "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_en": "When was there an attendance of 51,342?",
    "question_th": "มีผู้เข้าร่วมประชุม 51,342 คนเมื่อใด?",
    "context": "CREATE TABLE table_name_6 (date VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_88 WHERE week = 7",
    "question_en": "What was the attendance during week 7?",
    "question_th": "การเข้าร่วมในช่วงสัปดาห์ที่ 7 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_88 (attendance VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_12 WHERE week = 16",
    "question_en": "What was the score during week 16?",
    "question_th": "คะแนนในช่วงสัปดาห์ที่ 16 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_12 (result VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT minister FROM table_name_58 WHERE left_office = \"1960\"",
    "question_en": "Who is the mInister who left office during 1960?",
    "question_th": "รัฐมนตรีที่ลาออกจากตำแหน่งในช่วงปี 2503 คือใคร?",
    "context": "CREATE TABLE table_name_58 (minister VARCHAR, left_office VARCHAR)"
  },
  {
    "answer": "SELECT government FROM table_name_63 WHERE number = 6",
    "question_en": "Which government is number 6?",
    "question_th": "รัฐบาลไหนอยู่ลำดับที่ 6?",
    "context": "CREATE TABLE table_name_63 (government VARCHAR, number VARCHAR)"
  },
  {
    "answer": "SELECT rider FROM table_name_59 WHERE speed = \"90.57mph\"",
    "question_en": "Which rider had a speed of 90.57mph?",
    "question_th": "นักบิดคนไหนมีความเร็ว 90.57 ไมล์ต่อชั่วโมง?",
    "context": "CREATE TABLE table_name_59 (rider VARCHAR, speed VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_63 WHERE place < 8 AND points < 5",
    "question_en": "Which country has a place smaller than 8 and points smaller than 5?",
    "question_th": "ประเทศใดมีสถานที่น้อยกว่า 8 และคะแนนน้อยกว่า 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_en": "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?",
    "question_th": "อะไรคือจำนวนการสูญเสียต่ำสุดเมื่อจำนวนชัยชนะน้อยกว่า 4 จำนวนเสมอคือ 2 และอันดับคือ 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_en": "Tell me the post-season record for kansas city",
    "question_th": "บอกบันทึกหลังฤดูกาลของแคนซัสซิตี้หน่อยสิ",
    "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_en": "Tell me the venue of 29 april 2007",
    "question_th": "แจ้งสถานที่จัดงานวันที่ 29 เมษายน 2550 ครับ",
    "context": "CREATE TABLE table_name_14 (venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_87 WHERE date = \"20 august 2008\"",
    "question_en": "Tell me the competition of 20 august 2008",
    "question_th": "แจ้งการแข่งขันวันที่ 20 สิงหาคม 2551 ครับ",
    "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_en": "Tell me the date of stade des martyrs, dr congo",
    "question_th": "บอกวันที่ของ stade des martyrs ดร.คองโกหน่อยสิ",
    "context": "CREATE TABLE table_name_89 (date VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT amount__millions_ FROM table_name_92 WHERE payee = \"infotalent\"",
    "question_en": "How much money, in millions, is paid to Infotalent?",
    "question_th": "Infotalent จ่ายเงินให้กับ Infotalent เป็นจำนวนเท่าใด",
    "context": "CREATE TABLE table_name_92 (amount__millions_ VARCHAR, payee VARCHAR)"
  },
  {
    "answer": "SELECT purpose FROM table_name_52 WHERE payee = \"euromarine\"",
    "question_en": "What is the purpose of Euromarine?",
    "question_th": "จุดประสงค์ของ 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_en": "What signatory has a purpose of police security and Infotalent payee?",
    "question_th": "ผู้ลงนามใดมีวัตถุประสงค์ในการรักษาความปลอดภัยของตำรวจและผู้รับเงินที่มีความรู้ความสามารถ?",
    "context": "CREATE TABLE table_name_71 (signatories VARCHAR, purpose VARCHAR, payee VARCHAR)"
  },
  {
    "answer": "SELECT MAX(launched) FROM table_name_1 WHERE name = \"trn\"",
    "question_en": "Tell me the highest launced for trn",
    "question_th": "บอกฉันว่าเปิดตัวสูงสุดสำหรับ trn",
    "context": "CREATE TABLE table_name_1 (launched INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT period FROM table_name_25 WHERE place = \"red rock\"",
    "question_en": "Tell me the period for red rock",
    "question_th": "แจ้งช่วงหินแดงครับ",
    "context": "CREATE TABLE table_name_25 (period VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT province FROM table_name_15 WHERE location = \"260km ese of calgary\"",
    "question_en": "Tell me the province for 260km ese of calgary",
    "question_th": "บอกจังหวัดมา 260 กม. จากคาลการีหน่อย",
    "context": "CREATE TABLE table_name_15 (province VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT province FROM table_name_49 WHERE period = \"1941-1946\"",
    "question_en": "Tell me the province of 1941-1946",
    "question_th": "บอกจังหวัด พ.ศ. 2484-2489 หน่อยครับ",
    "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_en": "Tell me the degree for chemistry 1965",
    "question_th": "บอกวุฒิเคมี ปี 65 หน่อยค่ะ",
    "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_en": "What is the Election date for Member william richmond category:articles with hcards?",
    "question_th": "วันที่เลือกสมาชิก william richmond หมวดหมู่:บทความที่มี 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_en": "What is the election date for the city of auckland category:articles with hcards?",
    "question_th": "วันที่เลือกเมืองโอ๊คแลนด์หมวดหมู่:บทความที่มี 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_en": "What electorate does Member dingley brittin category:articles with hcards represent?",
    "question_th": "Member dingley brittin หมวดหมู่:บทความที่มี hcard เป็นตัวแทนเขตการเลือกตั้งใด",
    "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_en": "What is the election date for the electorate of member charles brown category:articles with hcards?",
    "question_th": "วันเลือกตั้งผู้มีสิทธิเลือกตั้งสมาชิกชาร์ลส์ บราวน์ หมวดหมู่:บทความที่มี 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_en": "Tell me the date for acts of 6 bands and year larger than 1981 for monsters of rock",
    "question_th": "บอกวันที่แสดงของ 6 วงดนตรีและปีที่มากกว่าปี 1981 สำหรับ 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_en": "Tell me the stages for 1981",
    "question_th": "บอกฉันขั้นตอนสำหรับปี 1981",
    "context": "CREATE TABLE table_name_42 (stages VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_74 WHERE acts = \"6 bands\"",
    "question_en": "Tell me the event for 6 bands",
    "question_th": "เล่างาน 6 วงครับ",
    "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_en": "What is the lightweight value with no information model and the flexible value is unknown?",
    "question_th": "ค่าน้ำหนักเบาที่ไม่มีแบบจำลองข้อมูลและไม่ทราบค่ายืดหยุ่นคืออะไร",
    "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_en": "What is the bore for a 9-cyl radial on a 9 AD?",
    "question_th": "กระบอกสูบเรเดียล 9 สูบของ 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_en": "What bore goes with an 18 AB?",
    "question_th": "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_en": "Tell me the venue for notes of 10.93 secs",
    "question_th": "บอกสถานที่สำหรับโน้ต 10.93 วินาที",
    "context": "CREATE TABLE table_name_45 (venue VARCHAR, notes VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_81 WHERE year < 2003",
    "question_en": "Tell me the venue for year less than 2003",
    "question_th": "บอกสถานที่จัดงานปีน้อยกว่า 2546 หน่อยครับ",
    "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_en": "What is the total number of points team Alfa Romeo 184T won?",
    "question_th": "คะแนนรวมที่ทีม Alfa Romeo 184T ชนะคือเท่าไร?",
    "context": "CREATE TABLE table_name_56 (points INTEGER, team_chassis VARCHAR)"
  },
  {
    "answer": "SELECT engine FROM table_name_87 WHERE year > 1984",
    "question_en": "What engine was used after 1984?",
    "question_th": "เครื่องยนต์อะไรที่ใช้หลังจากปี 1984?",
    "context": "CREATE TABLE table_name_87 (engine VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT year FROM table_name_72 WHERE points > 0",
    "question_en": "In which year were the points more than 0?",
    "question_th": "คะแนนในปีใดมากกว่า 0?",
    "context": "CREATE TABLE table_name_72 (year VARCHAR, points INTEGER)"
  },
  {
    "answer": "SELECT tyres FROM table_name_22 WHERE year > 1984",
    "question_en": "What were the Tyres after 1984?",
    "question_th": "ยางหลังปี 1984 คืออะไร?",
    "context": "CREATE TABLE table_name_22 (tyres VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT bp_comp_2__˚c_ FROM table_name_32 WHERE _percentage_wt_comp_1 = 76",
    "question_en": "Tell me the bp comp 2 for % wt comp 1 of 76",
    "question_th": "บอก bp comp 2 สำหรับ % wt comp 1 จาก 76 ให้ฉันหน่อย",
    "context": "CREATE TABLE table_name_32 (bp_comp_2__˚c_ VARCHAR, _percentage_wt_comp_1 VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(_percentage_wt_comp_1) FROM table_name_1 WHERE _percentage_wt_comp_2 = 27",
    "question_en": "Tell me the total number of % wt comp 1 foR % wt comp 2 or 27",
    "question_th": "บอกจำนวนรวมของ % wt comp 1 สำหรับ % wt comp 2 หรือ 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_en": "What is the percentage of the popular vote when there were 90 seats available?",
    "question_th": "เปอร์เซนต์ของคะแนนเสียงยอดนิยมเมื่อมีที่นั่งว่าง 90 ที่นั่งคือเท่าไร?",
    "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_en": "Name the gold for silver of 39",
    "question_th": "ตั้งชื่อทองคำสำหรับเงิน 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_en": "What is the compression ratio for the 302-2v Windsor v8 engine?",
    "question_th": "อัตรากำลังอัดของเครื่องยนต์ 302-2v Windsor v8 เป็นเท่าใด?",
    "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_en": "How many games had 41 rushes and were than 197 yards?",
    "question_th": "มีกี่เกมที่มีการวิ่ง 41 ครั้งและระยะมากกว่า 197 หลา?",
    "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_en": "What was the highest number of yards in years where there were fewer than 51 rushes and more than 12 games?",
    "question_th": "จำนวนหลาสูงสุดในรอบหลายปีที่มีการวิ่งน้อยกว่า 51 ครั้งและมากกว่า 12 เกมคือเท่าใด",
    "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_en": "What is the pick # for Dimelon Westfield?",
    "question_th": "ตัวเลือก # ของ 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_en": "What was the final score of the November 8, 2001 game?",
    "question_th": "คะแนนสุดท้ายของเกมวันที่ 8 พฤศจิกายน พ.ศ. 2544 คืออะไร?",
    "context": "CREATE TABLE table_name_64 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT bullet_tip_color FROM table_name_54 WHERE headstamp_id = \"h1z\"",
    "question_en": "Tell me the bullet tip color of headstamp id of h1z",
    "question_th": "บอกสีปลายหัวข้อย่อยของ headstamp id ของ 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_en": "Tell me the total number of gold for bronze more than 0 and total more than 100",
    "question_th": "บอกจำนวนทองรวมสำหรับทองแดงที่มากกว่า 0 และรวมมากกว่า 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_en": "Tell me the least silver for total less than 6 and rank of 8",
    "question_th": "บอกฉันว่าเงินน้อยที่สุดสำหรับผลรวมน้อยกว่า 6 และอันดับ 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_en": "What is the first leg score in that match where Marseille was the first team?",
    "question_th": "สกอร์เลกแรกในนัดนั้นที่มาร์กเซยเป็นทีมชุดใหญ่คือเท่าไหร่?",
    "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_en": "Tell me the discovery/publication for still living",
    "question_th": "บอกการค้นพบ/สิ่งพิมพ์ของการยังมีชีวิตอยู่",
    "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_en": "Tell me the discovery/publication for red deer cave people",
    "question_th": "บอกการค้นพบ/สิ่งพิมพ์ของชาวถ้ำกวางแดงให้ฉันหน่อยสิ",
    "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_en": "Tell me the discovery/publicatio of name for h.heidelbergensis",
    "question_th": "บอกฉันเกี่ยวกับการค้นพบ/การตีพิมพ์ชื่อของ 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_en": "Tell me the fossil record for name of 1994/2003",
    "question_th": "บอกบันทึกฟอสซิลชื่อปี 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_en": "Tell me lived for name of 1994/2003",
    "question_th": "บอกฉันอยู่ชื่อปี 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_en": "When was the Monza circuit?",
    "question_th": "วงจร Monza เกิดขึ้นเมื่อไหร่?",
    "context": "CREATE TABLE table_name_68 (date VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT win__percentage FROM table_name_4 WHERE conference = \"metro\"",
    "question_en": "What is Metro's win percentage?",
    "question_th": "เปอร์เซ็นต์การชนะของ Metro คืออะไร?",
    "context": "CREATE TABLE table_name_4 (win__percentage VARCHAR, conference VARCHAR)"
  },
  {
    "answer": "SELECT elite_eight FROM table_name_67 WHERE conference = \"atlantic 10\"",
    "question_en": "How many elite eight teams came from the Atlantic 10?",
    "question_th": "มีแปดทีมชั้นนำกี่ทีมที่มาจาก 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_en": "Tell me the opponent for attendance of 55,527",
    "question_th": "บอกฝ่ายตรงข้ามว่ามีผู้เข้าร่วม 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_en": "Which version B-58 aircraft model originated in the United States has 2 in service?",
    "question_th": "เครื่องบิน B-58 รุ่นใดที่มีต้นกำเนิดในประเทศสหรัฐอเมริกามีประจำการอยู่ 2 ลำ?",
    "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_en": "What aircraft type is the Casa C-212 Aviocar?",
    "question_th": "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_en": "How many T-260 EU aircrafts are currently in service?",
    "question_th": "มีเครื่องบิน T-260 EU ประจำการอยู่กี่ลำ?",
    "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_en": "How many C-95 aircrafts originating in Brazil are currently in service?",
    "question_th": "ปัจจุบันมีเครื่องบิน C-95 ที่มีต้นกำเนิดในบราซิลจำนวนกี่ลำที่ประจำการอยู่?",
    "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_en": "Tell me the lowest other for albanians more than 8793 and Roma less than 1030",
    "question_th": "บอกฉันว่าราคาต่ำสุดสำหรับชาวอัลเบเนียมากกว่า 8793 และ Roma น้อยกว่า 1,030",
    "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_en": "Tell me the highest bosniaks for year more than 2002",
    "question_th": "บอกบอสเนียสูงสุดประจำปีมากกว่าปี 2545 หน่อยสิ",
    "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_en": "Name the lowest ERP W with a frequency mhz less than 103.1",
    "question_th": "ตั้งชื่อ ERP W ต่ำสุดที่มีความถี่ mhz น้อยกว่า 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_en": "Name the city with 103.1 frequency and ERP W less than 80",
    "question_th": "ตั้งชื่อเมืองด้วยความถี่ 103.1 และ ERP W น้อยกว่า 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_en": "Tell me the affiliation for pick number less than 59 and position of gk",
    "question_th": "บอกสังกัดเบอร์เลือกน้อยกว่า 59 และตำแหน่ง 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_en": "What Tournament of canada happened in 1998?",
    "question_th": "การแข่งขันของแคนาดาครั้งใดเกิดขึ้นในปี 1998?",
    "context": "CREATE TABLE table_name_97 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 1993 FROM table_name_67 WHERE 1990 = \"2–2\"",
    "question_en": "Who had 1990 of 2–2 in 1993?",
    "question_th": "ใครมีปี 1990 จาก 2–2 ในปี 1993?",
    "context": "CREATE TABLE table_name_67 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1996 FROM table_name_45 WHERE 1987 = \"nme\" AND tournament = \"monte carlo\"",
    "question_en": "What Tournament of monte carlo had 1996 and a 1987 of nme?",
    "question_th": "การแข่งขันของมอนติคาร์โลมีรายการใดในปี 1996 และ 1987 ของ nme?",
    "context": "CREATE TABLE table_name_45 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2004 FROM table_name_58 WHERE 1998 = \"2r\" AND tournament = \"french open\"",
    "question_en": "What Tournament of the french open had 2004 that has a 1998 of 2r?",
    "question_th": "การแข่งขันเฟรนช์โอเพ่นรายการใดที่มีปี 2004 และมี 2r ในปี 1998?",
    "context": "CREATE TABLE table_name_58 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT margin FROM table_name_18 WHERE championship = \"nabisco championship\"",
    "question_en": "What is the margin at the Nabisco Championship?",
    "question_th": "มาร์จิ้นของ 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_en": "What was the margin in 2001 at the McDonald's LPGA Championship?",
    "question_th": "อัตรากำไรขั้นต้นในปี 2544 ในการแข่งขัน LPGA Championship ของ McDonald คืออะไร?",
    "context": "CREATE TABLE table_name_88 (margin VARCHAR, year VARCHAR, championship VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_5 WHERE goal = 5",
    "question_en": "Tell me the date of goal 5",
    "question_th": "บอกวันที่เป้าหมายที่ 5 หน่อยสิ",
    "context": "CREATE TABLE table_name_5 (date VARCHAR, goal VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_17 WHERE goal = 5",
    "question_en": "Tell me the date for goal of 5",
    "question_th": "บอกวันที่เป้าหมายที่ 5 หน่อยสิ",
    "context": "CREATE TABLE table_name_17 (date VARCHAR, goal VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_33 WHERE location = \"sopot (pol)\"",
    "question_en": "What was the result of Sopot (pol)?",
    "question_th": "ผลของโซพอต (pol) คืออะไร?",
    "context": "CREATE TABLE table_name_33 (result VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT division FROM table_name_39 WHERE open_cup = \"2nd round\"",
    "question_en": "Which division was the Rampage in when they were in the 2nd round in the Open Cup?",
    "question_th": "Rampage อยู่ในดิวิชั่นใดเมื่อพวกเขาอยู่ในรอบที่ 2 ของ 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_en": "What was the Rampage's regular season in 1997?",
    "question_th": "ฤดูกาลปกติของ Rampage ในปี 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_en": "What was the Rampage's status in the Open Cup in the year that they made it to the 2nd round of the playoffs?",
    "question_th": "สถานะของ Rampage ใน Open Cup ในปีที่พวกเขาผ่านเข้าสู่รอบตัดเชือกรอบที่ 2 เป็นอย่างไร",
    "context": "CREATE TABLE table_name_98 (open_cup VARCHAR, playoffs VARCHAR)"
  },
  {
    "answer": "SELECT playoffs FROM table_name_38 WHERE reg_season = \"4th, central\"",
    "question_en": "What was the Rampage's result in the playoffs in the year that their regular season resulted in 4th, central?",
    "question_th": "อะไรคือผลการแข่งขันของ Rampage ในรอบตัดเชือกในปีที่ฤดูกาลปกติของพวกเขาส่งผลให้ได้ที่ 4 ส่วนกลาง?",
    "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_en": "Which method resulting in a win against Ed Mahone?",
    "question_th": "วิธีใดที่ส่งผลให้เอาชนะ 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_en": "When did  the technical knockout against Fatu Tuimanono happen?",
    "question_th": "การแพ้ทางเทคนิคกับฟาตู ตุยมาโนโน่ เกิดขึ้นเมื่อใด?",
    "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_en": "When did the opponent knockout Barry Prior in more than 2 rounds?",
    "question_th": "เมื่อใดที่คู่ต่อสู้น็อก Barry Prior มากกว่า 2 รอบ?",
    "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_en": "What resulted after 4 rounds with Ed Mahone?",
    "question_th": "ผลลัพธ์หลังจาก 4 รอบกับ 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_en": "Tell me the region for georgia",
    "question_th": "บอกภูมิภาคสำหรับจอร์เจียหน่อยสิ",
    "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_en": "Tell me the host for midwest thomas assembly center",
    "question_th": "บอกเจ้าภาพศูนย์รวมพลโทมัสมิดเวสต์หน่อยสิ",
    "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_en": "Tell me the region for frank erwin center",
    "question_th": "บอกภูมิภาคของแฟรงค์ เออร์วิน เซ็นเตอร์หน่อยสิ",
    "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_en": "In 1971 at MCG, what was the score of the VFL Reserves?",
    "question_th": "ในปี 1971 ที่ MCG 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_en": "What was the score when Richmond was the opponent?",
    "question_th": "เมื่อริชมอนด์เป็นคู่ต่อสู้ได้สกอร์เท่าไหร่?",
    "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_en": "Where was the match with a score of 18.6 (114) - 21.14 (140)?",
    "question_th": "แมตช์ไหนด้วยสกอร์ 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_en": "At the VFL Reserves, who was the opponent when the score was 18.6 (114) - 21.14 (140)?",
    "question_th": "ที่กองหนุนวีเอฟแอลใครคือคู่ต่อสู้เมื่อสกอร์ 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_en": "Where was the match with a score of 4.10 (34) - 8.12 (60)?",
    "question_th": "แมทช์ไหนด้วยสกอร์ 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_en": "How much is the total BBC 2 viewing in 1999?",
    "question_th": "ยอดรับชม BBC 2 ทั้งหมดในปี 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_en": "What was the rank of BBC 2 in 2005?",
    "question_th": "BBC 2 อยู่อันดับไหนในปี 2548",
    "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_en": "What is the BBC 2 rank when BBC 1 is 1st rank and the total viewing is 9,840,000?",
    "question_th": "BBC 2 อันดับไหนเมื่อ BBC 1 ขึ้นอันดับ 1 ยอดดูรวม 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_en": "In what year was BBC 2 13th in rank?",
    "question_th": "BBC 2 อยู่ในอันดับที่ 13 ในปีใด",
    "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_en": "How many goals occurred for Stein Huysegems when the caps value is more than 8?",
    "question_th": "Stein Huysegems เกิดขึ้นกี่ประตูเมื่อค่าตัวพิมพ์ใหญ่มากกว่า 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_en": "What is the largest caps value for Glen Moss?",
    "question_th": "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_en": "What is the oldest year that the Royal Philharmonic Orchestra released a record with Decca Records?",
    "question_th": "ปีที่เก่าแก่ที่สุดที่ Royal Philharmonic Orchestra ออกอัลบั้มกับ 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_en": "What format was conductor Erich Leinsdorf's album released on?",
    "question_th": "อัลบั้มของวาทยากร Erich Leinsdorf ออกในรูปแบบใด",
    "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_en": "What record company released a CD in 1964?",
    "question_th": "บริษัทแผ่นเสียงใดออกซีดีในปี 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_en": "What division has finalist playoffs and was 3rd round Open Cup?",
    "question_th": "ดิวิชั่นใดเข้ารอบตัดเชือกและเป็นโอเพ่นคัพรอบ 3?",
    "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_en": "What year was the team 8th in the season and made it to the 3rd round in Open Cup?",
    "question_th": "ปีไหนที่ทีมอยู่อันดับ 8 ของฤดูกาลและผ่านเข้ารอบ 3 ในรายการโอเพ่นคัพ?",
    "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_en": "Tell me the launch date/time for payload of gsat-4",
    "question_th": "บอกวัน/เวลาเปิดตัวสำหรับเพย์โหลด 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_en": "Tell me the launch pad for 25 december 2010 10:34",
    "question_th": "บอกจุดปล่อยจรวดของวันที่ 25 ธันวาคม 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_en": "Who had a rank more than 48, and a last in 2005?",
    "question_th": "ใครมีอันดับมากกว่า 48 และอันดับสุดท้ายในปี 2548?",
    "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_en": "Which UEFA confederation member had a rank more than 17 and caps of 114?",
    "question_th": "สมาชิกสมาพันธ์ยูฟ่าคนใดที่มีอันดับมากกว่า 17 และแคป 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_en": "Tell me the result of july 16, 2000",
    "question_th": "แจ้งผลวันที่ 16 กรกฎาคม 2543 ครับ",
    "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_en": "What is the maximum cap number where 0 goals were scored with a rank of 15?",
    "question_th": "จำนวนสูงสุดสูงสุดที่ทำได้ 0 ประตูด้วยอันดับ 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_en": "What were the fewest amount of guns possessed by a frigate that served in 1815?",
    "question_th": "ปืนเรือรบจำนวนน้อยที่สุดที่ครอบครองโดยเรือรบที่ประจำการในปี 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_en": "Of the games that sold 321,000 units in the UK, what is their average place?",
    "question_th": "จากเกมที่ขายได้ 321,000 หน่วยในสหราชอาณาจักร อันดับเฉลี่ยของเกมคือเท่าไร?",
    "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_en": "How many units were sold in the US of the game that sold 346,000 units in japan?",
    "question_th": "เกมที่ขายได้ 346,000 หน่วยในญี่ปุ่นในสหรัฐอเมริกามีกี่หน่วย?",
    "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_en": "Tell me the player from dallas burn",
    "question_th": "บอกผู้เล่นจากดัลลัสเบิร์นหน่อยสิ",
    "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_en": "Tell me the sum of pick number for kenny arena",
    "question_th": "บอกผลรวมของหมายเลขเลือกสำหรับเคนนี่อารีน่า",
    "context": "CREATE TABLE table_name_40 (pick__number INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_7 WHERE host = \"northeast louisiana university\"",
    "question_en": "What city is the Northeast Louisiana University located in?",
    "question_th": "มหาวิทยาลัย Northeast Louisiana ตั้งอยู่ในเมืองใด",
    "context": "CREATE TABLE table_name_7 (city VARCHAR, host VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_name_16 WHERE city = \"philadelphia\"",
    "question_en": "What region is the city of Philadelphia located in?",
    "question_th": "เมืองฟิลาเดลเฟียตั้งอยู่ในภูมิภาคใด",
    "context": "CREATE TABLE table_name_16 (region VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_73 WHERE city = \"long beach\"",
    "question_en": "What venue is in Long Beach?",
    "question_th": "ลองบีชเป็นสถานที่จัดงานที่ไหน?",
    "context": "CREATE TABLE table_name_73 (venue VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT state FROM table_name_76 WHERE region = \"mideast\" AND city = \"knoxville\"",
    "question_en": "What state is Knoxville and the mideast region located in?",
    "question_th": "น็อกซ์วิลล์และภูมิภาคตะวันออกกลางตั้งอยู่ในรัฐใด",
    "context": "CREATE TABLE table_name_76 (state VARCHAR, region VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT host FROM table_name_51 WHERE state = \"georgia\"",
    "question_en": "What is the host in Georgia?",
    "question_th": "เจ้าภาพในจอร์เจียคืออะไร?",
    "context": "CREATE TABLE table_name_51 (host VARCHAR, state VARCHAR)"
  },
  {
    "answer": "SELECT state FROM table_name_91 WHERE host = \"university of tennessee\"",
    "question_en": "What state is the University of Tennessee located in?",
    "question_th": "มหาวิทยาลัยเทนเนสซีตั้งอยู่ในรัฐใด",
    "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_en": "Tell me the date that has a week larger than 3 and a result of w 28-27",
    "question_th": "บอกวันที่ที่มีสัปดาห์มากกว่า 3 และผลลัพธ์เป็น 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_en": "Tell me the sum of attendane for a result of w 12-3 and week more than 12",
    "question_th": "บอกจำนวนผู้เข้าร่วมสำหรับผลลัพธ์ของ w 12-3 และสัปดาห์ที่มากกว่า 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_en": "Tell me the total number of attendance for result of l 18-6",
    "question_th": "บอกจำนวนผู้เข้าร่วมทั้งหมดสำหรับผลการแข่งขัน 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_en": "Tell me the total number of attendance for week of 16",
    "question_th": "บอกจำนวนผู้เข้าร่วมทั้งหมดสำหรับสัปดาห์ที่ 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_en": "How many bronzes were held by those with a total of 4 and less than 3 silvers.",
    "question_th": "ผู้ที่มีเหรียญทองแดงทั้งหมด 4 เหรียญและน้อยกว่า 3 เหรียญถือไว้กี่เหรียญ",
    "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_en": "How many rounds did the IFL: Oakland event have?",
    "question_th": "งาน IFL: Oakland มีทั้งหมดกี่รอบ?",
    "context": "CREATE TABLE table_name_4 (round INTEGER, event VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_83 WHERE record = \"3-0\"",
    "question_en": "Which opponent has a record of 3-0?",
    "question_th": "คู่ต่อสู้คนไหนมีสถิติ 3-0?",
    "context": "CREATE TABLE table_name_83 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_10 WHERE driver = \"david coulthard\"",
    "question_en": "Tell me the constructor for david coulthard",
    "question_th": "บอกคอนสตรัคเตอร์ของเดวิด โคลฮาร์ดหน่อยสิ",
    "context": "CREATE TABLE table_name_10 (constructor VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT pos FROM table_name_75 WHERE driver = \"adrian sutil\"",
    "question_en": "Tell me the pos for adrian sutil",
    "question_th": "บอกตำแหน่งเอเดรียน ซูติลมาหน่อยสิ",
    "context": "CREATE TABLE table_name_75 (pos VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT part_1 FROM table_name_60 WHERE grid = \"1\"",
    "question_en": "Tell me the part 1 of grid of 1",
    "question_th": "บอกส่วนที่ 1 ของตาราง 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_en": "Name the city of license for call sign of k215es",
    "question_th": "ตั้งชื่อเมืองที่ได้รับอนุญาตสำหรับสัญญาณเรียกของ 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_en": "Name the FCC info for call sign of k208eq",
    "question_th": "ตั้งชื่อข้อมูล FCC สำหรับสัญญาณเรียกของ 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_en": "Tell me the total number of date for carpet",
    "question_th": "บอกจำนวนวันที่พรมทั้งหมด",
    "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–2, 3–6, 4–6\"",
    "question_en": "Tell me the opponent for 6–2, 3–6, 4–6",
    "question_th": "บอกคู่ต่อสู้ 6–2, 3–6, 4–6 ให้ฉันหน่อย",
    "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_en": "What is the nationality of Martin Lewis?",
    "question_th": "Martin Lewis สัญชาติอะไร?",
    "context": "CREATE TABLE table_name_62 (nationality VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_59 WHERE week = 14",
    "question_en": "Tell me the opponent of week 14",
    "question_th": "บอกฉันฝ่ายตรงข้ามของสัปดาห์ที่ 14",
    "context": "CREATE TABLE table_name_59 (opponent VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT AVG(attendance) FROM table_name_58 WHERE week = 11",
    "question_en": "Tell me the average attendance for week of 11",
    "question_th": "บอกจำนวนการเข้าร่วมโดยเฉลี่ยสำหรับสัปดาห์ที่ 11 ให้ฉันหน่อย",
    "context": "CREATE TABLE table_name_58 (attendance INTEGER, week VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_96 WHERE result = \"w 33-31\"",
    "question_en": "Tell me opponent for result of w 33-31",
    "question_th": "บอกฉันฝ่ายตรงข้ามสำหรับผล 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_en": "What Name is administered by oral or iv, and is being investigated for thyroid imaging thyroid metastases imaging?",
    "question_th": "ชื่ออะไรบริหารงานโดยช่องปากหรือ iv และกำลังได้รับการตรวจสอบการถ่ายภาพต่อมไทรอยด์ การถ่ายภาพมะเร็งต่อมไทรอยด์",
    "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_en": "Who is the owner with a call sign of cjgx?",
    "question_th": "เจ้าของที่มีสัญญาณเรียกขานว่า cjgx คือใคร?",
    "context": "CREATE TABLE table_name_5 (owner VARCHAR, call_sign VARCHAR)"
  },
  {
    "answer": "SELECT owner FROM table_name_78 WHERE branding = \"gx94\"",
    "question_en": "Who is the owner of the branding gx94?",
    "question_th": "เจ้าของแบรนด์ gx94 คือใคร?",
    "context": "CREATE TABLE table_name_78 (owner VARCHAR, branding VARCHAR)"
  },
  {
    "answer": "SELECT frequency FROM table_name_28 WHERE call_sign = \"cjjc-fm\"",
    "question_en": "What is the call frequency sign of cjjc-fm?",
    "question_th": "สัญญาณความถี่การโทรของ 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_en": "Who is the owner with the branding fox fm?",
    "question_th": "เจ้าของแบรนด์ 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_en": "What is the branding frequency of cbc radio 2?",
    "question_th": "ความถี่ในการสร้างแบรนด์ของวิทยุ cbc 2 คืออะไร?",
    "context": "CREATE TABLE table_name_74 (frequency VARCHAR, branding VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_31 WHERE altitude__metres_ < 6102",
    "question_en": "Tell me the location for altitude being less thaan 6102",
    "question_th": "บอกตำแหน่งของระดับความสูงน้อยกว่า 6102",
    "context": "CREATE TABLE table_name_31 (location VARCHAR, altitude__metres_ INTEGER)"
  },
  {
    "answer": "SELECT region FROM table_name_97 WHERE altitude__metres_ = 6854",
    "question_en": "Say the region for 6854 altitudes",
    "question_th": "พูดภูมิภาคสำหรับระดับความสูง 6854",
    "context": "CREATE TABLE table_name_97 (region VARCHAR, altitude__metres_ VARCHAR)"
  },
  {
    "answer": "SELECT frequency FROM table_name_59 WHERE number = 161",
    "question_en": "What is the frequency of number 161?",
    "question_th": "ความถี่ของหมายเลข 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_en": "What is the frequency of number 3 with a bus station origin?",
    "question_th": "ความถี่ของเลข 3 กับต้นทางสถานีขนส่งคือเท่าไร?",
    "context": "CREATE TABLE table_name_33 (frequency VARCHAR, origin VARCHAR, number VARCHAR)"
  },
  {
    "answer": "SELECT origin FROM table_name_66 WHERE number > 161",
    "question_en": "What is the origin of the one with a number larger than 161?",
    "question_th": "ที่มาของตัวเลขที่มีค่ามากกว่า 161 คืออะไร?",
    "context": "CREATE TABLE table_name_66 (origin VARCHAR, number INTEGER)"
  },
  {
    "answer": "SELECT origin FROM table_name_15 WHERE final_destination = \"brandholmen\"",
    "question_en": "What is the origin of the one whose final destination is Brandholmen?",
    "question_th": "ต้นกำเนิดของผู้ที่มีจุดหมายปลายทางสุดท้ายคือ 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_en": "What is the highest rank of a rider whose time was 1:19.02.8?",
    "question_th": "อันดับสูงสุดของนักแข่งที่ทำเวลาได้คือ 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ŏn (s) ryŏn (n)\"",
    "question_en": "Tell me the revised of mccune reischauer of yŏn (s) ryŏn (n)",
    "question_th": "บอกฉันถึงการแก้ไขของ mccune reischauer ของ yŏn (s) ryŏn (n)",
    "context": "CREATE TABLE table_name_48 (revised VARCHAR, mccune_reischauer VARCHAR)"
  },
  {
    "answer": "SELECT hanja FROM table_name_77 WHERE hangul = \"주\"",
    "question_en": "Name the hanja for hangul of 주",
    "question_th": "ตั้งชื่อฮันจาเป็นอังกูลของ จุน",
    "context": "CREATE TABLE table_name_77 (hanja VARCHAR, hangul VARCHAR)"
  },
  {
    "answer": "SELECT hanja FROM table_name_85 WHERE revised = \"eum\"",
    "question_en": "Tell me the hanja of eum",
    "question_th": "บอกฮันจาของอึมมาสิ",
    "context": "CREATE TABLE table_name_85 (hanja VARCHAR, revised VARCHAR)"
  },
  {
    "answer": "SELECT model FROM table_name_89 WHERE released = 2005",
    "question_en": "What model was released in 2005?",
    "question_th": "รุ่นอะไรเปิดตัวในปี 2548?",
    "context": "CREATE TABLE table_name_89 (model VARCHAR, released VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_15 WHERE date = \"9 may 2001\"",
    "question_en": "Tell me the score for 9 may 2001",
    "question_th": "บอกคะแนนวันที่ 9 พฤษภาคม 2544 หน่อยสิ",
    "context": "CREATE TABLE table_name_15 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_43 WHERE date = \"25 march 2001\"",
    "question_en": "Tell me the competition for 25 march 2001",
    "question_th": "แจ้งการแข่งขันวันที่ 25 มีนาคม 2544 ครับ",
    "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_en": "Who was the Race Winner of the Southern Illinois 100?",
    "question_th": "ใครคือผู้ชนะการแข่งขันของ 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_en": "At which track did the event Daytona Arca 200 take place?",
    "question_th": "งาน Daytona Arca 200 จัดขึ้นที่สนามใด",
    "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_en": "At which event was Ken Schrader the Race Winner at the Toledo Speedway?",
    "question_th": "Ken Schrader เป็นผู้ชนะการแข่งขันที่ 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_en": "At which track was Frank Kimmel the Pole Winner of the Pennsylvania 200?",
    "question_th": "Frank Kimmel เป็นผู้ชนะโพลของ 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_en": "Steve Wallace was a Race Winner at the Kentucky Speedway on what date?",
    "question_th": "Steve Wallace เป็นผู้ชนะการแข่งขันที่ Kentucky Speedway ในวันที่เท่าไร",
    "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_en": "What is the lowest number of silver owned by a nation that is not ranked number 1?",
    "question_th": "จำนวนเงินต่ำสุดของประเทศที่ไม่ได้อยู่ในอันดับที่ 1 คือเท่าไร?",
    "context": "CREATE TABLE table_name_41 (silver INTEGER, rank INTEGER)"
  },
  {
    "answer": "SELECT grid FROM table_name_83 WHERE driver = \"kimi räikkönen\"",
    "question_en": "What is Driver Kimi Räikkönen's number on the grid?",
    "question_th": "หมายเลขของนักแข่ง Kimi Räikkönen บนตารางคืออะไร?",
    "context": "CREATE TABLE table_name_83 (grid VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_56 WHERE part_1 = \"1:13.306\"",
    "question_en": "Which driver had a Part 1 time of 1:13.306?",
    "question_th": "นักแข่งคนไหนมีพาร์ท 1 ในเวลา 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_en": "What ride opened after 2011?",
    "question_th": "รถอะไรเปิดหลังจากปี 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_en": "Which stadium can hold 63,443 people?",
    "question_th": "สนามไหนจุคนได้ 63,443 คน?",
    "context": "CREATE TABLE table_name_97 (result VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(week) FROM table_name_5 WHERE date = \"bye\"",
    "question_en": "Tell me the number of weeks for bye",
    "question_th": "บอกจำนวนสัปดาห์สำหรับการลาก่อน",
    "context": "CREATE TABLE table_name_5 (week VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(week) FROM table_name_83 WHERE date = \"december 5, 2005\"",
    "question_en": "Tell me the number of weeks for december 5, 2005",
    "question_th": "ขอทราบจำนวนสัปดาห์ของวันที่ 5 ธันวาคม 2548",
    "context": "CREATE TABLE table_name_83 (week VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT start_time FROM table_name_48 WHERE date = \"december 24, 2005\"",
    "question_en": "Tell me the start time for december 24, 2005",
    "question_th": "บอกเวลาเริ่มต้นของวันที่ 24 ธันวาคม 2548 ให้ฉันหน่อย",
    "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_en": "Tell me the result for lincoln financial field december 11, 2005",
    "question_th": "บอกผลลัพธ์ของสาขาการเงินลินคอล์นวันที่ 11 ธันวาคม 2548 ให้ฉันหน่อย",
    "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_en": "Tell me the total number of years for wins less than 2 and class of 50cc with points of 15",
    "question_th": "บอกจำนวนปีทั้งหมดที่ชนะน้อยกว่า 2 และคลาส 50cc ด้วยคะแนน 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_en": "Tell me the year for class of 125cc",
    "question_th": "บอกปีคลาส 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_en": "Tell me the average wins for class of 50cc and rank of 8th",
    "question_th": "บอกชัยชนะโดยเฉลี่ยสำหรับคลาส 50cc และอันดับที่ 8 หน่อยสิ",
    "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_en": "Tell me the lowest wins for class of 50cc and team of tomos for year less than 1969",
    "question_th": "บอกฉันหน่อยว่าชัยชนะต่ำสุดสำหรับคลาส 50cc และทีม tomos สำหรับปีที่น้อยกว่า 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_en": "Which country has the highest bronze amount and a silver amount bigger than 41?",
    "question_th": "ประเทศใดมีปริมาณทองแดงมากที่สุดและมีปริมาณเงินมากกว่า 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_en": "What is the lowest amount of medals Russia has if they have more than 2 silver medals and less than 4 gold medals?",
    "question_th": "รัสเซียจะมีเหรียญรางวัลน้อยที่สุดเท่าใดหากพวกเขามีเหรียญเงินมากกว่า 2 เหรียญและน้อยกว่า 4 เหรียญทอง?",
    "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_en": "How many points did the 2005 1st place team receive?",
    "question_th": "ทีมอันดับ 1 ปี 2548 ได้รับคะแนนเท่าไร",
    "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_en": "What engine was used by the teams that used a Lola b02/00 chassis and ranked 1st?",
    "question_th": "ทีมที่ใช้เครื่องยนต์ใดที่ใช้แชสซี Lola b02/00 และอันดับที่ 1",
    "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_en": "How many years did Team Newman/Haas Racing receive a 1st place ranking?",
    "question_th": "Team Newman/Haas Racing ครองอันดับ 1 นานกี่ปี?",
    "context": "CREATE TABLE table_name_86 (year VARCHAR, team VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT SUM(place) FROM table_name_52 WHERE points = 35",
    "question_en": "What is the aggregate of place for points being 35?",
    "question_th": "คะแนนรวมของตำแหน่งคือ 35 คืออะไร?",
    "context": "CREATE TABLE table_name_52 (place INTEGER, points VARCHAR)"
  },
  {
    "answer": "SELECT MIN(points) FROM table_name_86 WHERE place = 5",
    "question_en": "Name the fewest points of 5 place",
    "question_th": "บอกชื่อคะแนนน้อยที่สุดของ 5 ตำแหน่ง",
    "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_en": "Name the total number of places for vicky gordon and points more than 23",
    "question_th": "บอกจำนวนสถานที่ทั้งหมดสำหรับวิกกี้ กอร์ดอน และคะแนนมากกว่า 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_en": "Tell me the opponent for attendance of 68,264",
    "question_th": "บอกฝ่ายตรงข้ามว่าเข้าร่วม 68,264 คน",
    "context": "CREATE TABLE table_name_74 (opponent VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT SUM(week) FROM table_name_15 WHERE result = \"l 24–21\"",
    "question_en": "Tell me the sum of week for result of l 24–21",
    "question_th": "บอกผลรวมของสัปดาห์สำหรับผลลัพธ์ของ l 24–21 ให้ฉันทราบ",
    "context": "CREATE TABLE table_name_15 (week INTEGER, result VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_32 WHERE attendance = \"54,462\"",
    "question_en": "Tell me the result for attendance of 54,462",
    "question_th": "แจ้งผลการเข้าร่วมงาน 54,462 ราย",
    "context": "CREATE TABLE table_name_32 (result VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_49 WHERE attendance = \"53,899\"",
    "question_en": "Tell me the opponent for attendance of 53,899",
    "question_th": "บอกฝ่ายตรงข้ามว่ามาร่วมงาน 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_en": "What is the points that is more than 636 and has a value of 50?",
    "question_th": "แต้มที่มากกว่า 636 และมีค่าเท่ากับ 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_en": "Which rebound was 8 and has and ast that was less than 57?",
    "question_th": "รีบาวด์ตัวไหนเป็น 8 และได้และแอสต้าที่น้อยกว่า 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_en": "Tell me the country for ICAO of tjig",
    "question_th": "บอกประเทศสำหรับ ICAO ของ tjig หน่อยสิ",
    "context": "CREATE TABLE table_name_84 (country VARCHAR, icao VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_62 WHERE city = \"san juan\"",
    "question_en": "Tell me the country for san juan",
    "question_th": "บอกประเทศสำหรับซานฮวนหน่อยสิ",
    "context": "CREATE TABLE table_name_62 (country VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_14 WHERE icao = \"tjvq\"",
    "question_en": "Tell me the country for ICAO tjvq",
    "question_th": "บอกประเทศสำหรับ ICAO tjvq หน่อยสิ",
    "context": "CREATE TABLE table_name_14 (country VARCHAR, icao VARCHAR)"
  },
  {
    "answer": "SELECT iata FROM table_name_2 WHERE icao = \"tjrv\"",
    "question_en": "Tell me the iata for icao of tjrv",
    "question_th": "บอก iata สำหรับ icao ของ tjrv ให้ฉันหน่อย",
    "context": "CREATE TABLE table_name_2 (iata VARCHAR, icao VARCHAR)"
  },
  {
    "answer": "SELECT icao FROM table_name_76 WHERE city = \"isla grande\"",
    "question_en": "Tell me the icao of isla grande",
    "question_th": "บอกไอเคาแห่งอิสลาแกรนด์หน่อยสิ",
    "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_en": "What position does the Colorado Rapids pick after 15 play?",
    "question_th": "โคโลราโด ราปิดส์ เลือกตำแหน่งใดหลังจากเล่นไป 15 นัด?",
    "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_en": "I want to know the events for 106 bands",
    "question_th": "อยากทราบเหตุการณ์ของ 106 วงครับ",
    "context": "CREATE TABLE table_name_16 (event VARCHAR, acts VARCHAR)"
  },
  {
    "answer": "SELECT nomination FROM table_name_17 WHERE country = \"ukraine\"",
    "question_en": "Tell me the nomination for ukraine",
    "question_th": "บอกฉันเกี่ยวกับการเสนอชื่อสำหรับยูเครน",
    "context": "CREATE TABLE table_name_17 (nomination VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT nomination FROM table_name_12 WHERE director = \"goran paskaljevic\"",
    "question_en": "Tell me the nomination for goran paskaljevic",
    "question_th": "บอกฉันเกี่ยวกับการเสนอชื่อ 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_en": "Which FA Cup apps has league goals of 1 with total goals less than 1?",
    "question_th": "แอพ FA Cup ใดที่มีประตูในลีก 1 ประตูรวมน้อยกว่า 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_en": "What is the highest apps total with FA cup apps of 26 with total number of goals larger than 9?",
    "question_th": "แอพที่สูงที่สุดกับแอพ FA Cup 26 โดยมีจำนวนประตูรวมมากกว่า 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_en": "Which league goals has FA cup apps of 2?",
    "question_th": "ประตูลีกไหนมีเอฟเอคัพ 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_en": "What FA cup apps has a total larger than 12 and league apps larger than 38, and FA Cup goals larger than 1?",
    "question_th": "แอพ FA Cup ใดที่มีมากกว่า 12 แอพและลีกมากกว่า 38 และประตู FA Cup มากกว่า 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_en": "What was the total attendance on December 14, 1975 after week 13?",
    "question_th": "ผู้เข้าร่วมทั้งหมดในวันที่ 14 ธันวาคม พ.ศ. 2518 หลังจากสัปดาห์ที่ 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_en": "What is the sum of all totals with a rank greater than 6, gold greater than 0, and silver greater than 2?",
    "question_th": "ผลรวมของผลรวมทั้งหมดที่มีอันดับมากกว่า 6, ทองมากกว่า 0 และเงินมากกว่า 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_en": "How many values for silver occur when gold is less than 1, the rank is 13, and bronze is greater than 2?",
    "question_th": "เงินมีค่าเท่าใดเกิดขึ้นเมื่อทองน้อยกว่า 1 อันดับคือ 13 และทองแดงมากกว่า 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_en": "What is the average value of Bronze when silver is 0 and the total is less than 1?",
    "question_th": "มูลค่าเฉลี่ยของเหรียญทองแดงเมื่อเงินเป็น 0 และผลรวมน้อยกว่า 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_en": "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?",
    "question_th": "อะไรคือค่าต่ำสุดสำหรับทองแดงที่มีทั้งหมด 3 และค่าเงินมากกว่า 1 ในขณะที่มูลค่าของทองคำน้อยกว่า 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_en": "How man values for bronze occur when gold is less than 1, rank is greater than 15, and total is greater than 1?",
    "question_th": "ค่าของมนุษย์สำหรับทองแดงเกิดขึ้นได้อย่างไรเมื่อทองคำน้อยกว่า 1 อันดับมากกว่า 15 และผลรวมมากกว่า 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_en": "Name the position of pick 234",
    "question_th": "ตั้งชื่อตำแหน่งของการเลือก 234",
    "context": "CREATE TABLE table_name_67 (position VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT nhl_team FROM table_name_97 WHERE player = \"vitali yeremeyev\"",
    "question_en": "Name the team of vitali yeremeyev",
    "question_th": "ตั้งชื่อทีม 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_en": "Tell me the result for 2007-09-29",
    "question_th": "แจ้งผลการแข่งขันวันที่ 29-09-2550 ให้ฉันทราบด้วย",
    "context": "CREATE TABLE table_name_98 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(week) FROM table_name_40 WHERE attendance = \"64,116\"",
    "question_en": "How many weeks have an attendance of 64,116?",
    "question_th": "กี่สัปดาห์มีผู้เข้าร่วม 64,116 คน?",
    "context": "CREATE TABLE table_name_40 (week VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_42 WHERE week > 14",
    "question_en": "Which date has a week larger than 14?",
    "question_th": "วันใดที่มีสัปดาห์มากกว่า 14?",
    "context": "CREATE TABLE table_name_42 (date VARCHAR, week INTEGER)"
  },
  {
    "answer": "SELECT venue FROM table_name_29 WHERE week < 2",
    "question_en": "Which venue has a week smaller than 2?",
    "question_th": "สถานที่ใดที่มีหนึ่งสัปดาห์น้อยกว่า 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_en": "When was the Metallica: Escape from the Studio show?",
    "question_th": "การแสดงของ Metallica: Escape from the Studio คือเมื่อไหร่?",
    "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_en": "When is the Monsters of Rock show with 12 bands?",
    "question_th": "Monsters of Rock จะมีการแสดง 12 วงดนตรีเมื่อไหร่?",
    "context": "CREATE TABLE table_name_74 (date VARCHAR, event VARCHAR, acts VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_22 WHERE date = \"15 july\"",
    "question_en": "Tell me the result for 15 july",
    "question_th": "บอกผลวันที่ 15 ก.ค",
    "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_en": "Tell me the number range for 1965-66",
    "question_th": "บอกช่วงเลขปี 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_en": "Tell me the year built for withdrawn of 1983",
    "question_th": "บอกปีที่สร้างเพื่อถอนออกปี 2526",
    "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_en": "Tell me the year built for number built of 10",
    "question_th": "บอกปีที่สร้างจำนวน 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_en": "Tell me the result for 2008-12-23",
    "question_th": "แจ้งผลการแข่งขันวันที่ 23-12-2551 หน่อยครับ",
    "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_en": "Tell me the director nominated for best actor in a leading role",
    "question_th": "บอกฉันหน่อยว่าผู้กำกับได้รับการเสนอชื่อเข้าชิงนักแสดงนำชายยอดเยี่ยม",
    "context": "CREATE TABLE table_name_73 (director VARCHAR, nomination VARCHAR)"
  },
  {
    "answer": "SELECT nomination FROM table_name_41 WHERE film_name = \"peresohla zemlia\"",
    "question_en": "Tell me the nomination for peresohla zemlia",
    "question_th": "บอกฉันหน่อยว่าการเสนอชื่อ เปเรโซลา เซมเลีย",
    "context": "CREATE TABLE table_name_41 (nomination VARCHAR, film_name VARCHAR)"
  },
  {
    "answer": "SELECT AVG(laps) FROM table_name_45 WHERE class = \"gt\"",
    "question_en": "What are the average laps driven in the GT class?",
    "question_th": "รอบเฉลี่ยที่ขับในคลาส GT เป็นเท่าใด",
    "context": "CREATE TABLE table_name_45 (laps INTEGER, class VARCHAR)"
  },
  {
    "answer": "SELECT tsongas__d_ FROM table_name_45 WHERE date = \"may 22, 2007\"",
    "question_en": "I want the tsongas of may 22, 2007",
    "question_th": "ฉันต้องการซองกาของวันที่ 22 พฤษภาคม 2550",
    "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_en": "Tell me the venue for winner of nevada and year more than 2004",
    "question_th": "บอกสถานที่สำหรับผู้ชนะเนวาดาและปีมากกว่า 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_en": "What date is the 1:00 pm game at arrowhead stadium?",
    "question_th": "13.00 น. นัดที่สนามแอร์โรว์เฮด จะเป็นวันไหน?",
    "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_en": "Where will the game at (ET) of 7:00 pm be at?",
    "question_th": "เกมเวลา (ET) เวลา 19.00 น. จะเป็นที่ไหน?",
    "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_en": "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?",
    "question_th": "ใครคือนักแข่งที่มีรอบสนามน้อยกว่า 498 น้อยกว่า 58 แต้ม มีหมายเลขรถมากกว่า 22 และใครชนะรางวัล 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_en": "At what location was there a loss on 20 jan?",
    "question_th": "วันที่ 20 ม.ค. ขาดทุนที่จุดไหน?",
    "context": "CREATE TABLE table_name_98 (location VARCHAR, result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_39 WHERE record = \"2-7\"",
    "question_en": "Tell me the venue for record of 2-7",
    "question_th": "บอกสถานที่สำหรับบันทึก 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_en": "Tell me the result for green bay packers",
    "question_th": "บอกฉันผลลัพธ์สำหรับกรีนเบย์แพ็คเกอร์",
    "context": "CREATE TABLE table_name_77 (result VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_52 WHERE result = \"w 31-21\"",
    "question_en": "Tell mem the opponent for result of w 31-21",
    "question_th": "บอกฉันฝ่ายตรงข้ามสำหรับผลลัพธ์ของ 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_en": "What is the average speed of rider Peter Williams?",
    "question_th": "ความเร็วเฉลี่ยของผู้ขับขี่ 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_en": "What is the time/s of team Triumph in those races in which Triumph ranked higher than 4?",
    "question_th": "เวลาของทีม Triumph ในการแข่งขันที่ Triumph มีอันดับสูงกว่า 4 คือเท่าไร?",
    "context": "CREATE TABLE table_name_44 (time VARCHAR, team VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_9 WHERE year = \"1969\"",
    "question_en": "What was the score in 1969?",
    "question_th": "คะแนนในปี 1969 คืออะไร?",
    "context": "CREATE TABLE table_name_9 (score VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT final_round FROM table_name_1 WHERE year = \"1975\"",
    "question_en": "In 1975, what was the final round?",
    "question_th": "ปี 1975 รอบสุดท้ายคือรอบไหนคะ?",
    "context": "CREATE TABLE table_name_1 (final_round VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT event_place FROM table_name_61 WHERE time = \"61:32\"",
    "question_en": "Where did someone run a 61:32",
    "question_th": "มีคนวิ่งที่ไหน 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_en": "What was Derek Graham's time?",
    "question_th": "เวลาของ Derek Graham คืออะไร?",
    "context": "CREATE TABLE table_name_95 (time VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT event_place FROM table_name_25 WHERE time = \"58:33\"",
    "question_en": "Where did someone run a 58:33?",
    "question_th": "มีคนวิ่ง 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_en": "Tell me the player for pick number less than 29 and mls team of chicago fire",
    "question_th": "บอกผู้เล่นที่เลือกหมายเลขน้อยกว่า 29 และทีม mls ของชิคาโกไฟร์หน่อย",
    "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_en": "Tell me the opponents for partner of yvonne meusburger",
    "question_th": "บอกคู่ต่อสู้ของอีวอนน์ มูสเบอร์เกอร์หน่อยสิ",
    "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_en": "Tell me the date for opponents of raffaella bindi biljana pawlowa-dimitrova",
    "question_th": "บอกวันที่ของฝ่ายตรงข้ามของ 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_en": "Tell me the highest time for heat rank of 8 and lane more than 2",
    "question_th": "บอกเวลาสูงสุดสำหรับอันดับฮีต 8 และเลนมากกว่า 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_en": "Tell me the least time for apostolos tsagkarakis for lane less than 6",
    "question_th": "บอกฉันว่าเวลาน้อยที่สุดสำหรับ apostolos tsagkarakis สำหรับเลนน้อยกว่า 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_en": "Tell me the method for pride 33",
    "question_th": "บอกวิธีภูมิใจ 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_en": "Tell me the lowest round for total combat 15",
    "question_th": "บอกฉันหน่อยว่ารอบต่ำสุดสำหรับการต่อสู้ทั้งหมด 15",
    "context": "CREATE TABLE table_name_97 (round INTEGER, event VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_34 WHERE opponent = \"pittsburgh steelers\"",
    "question_en": "Tell me the week for pittsburgh steelers opponent",
    "question_th": "บอกฉันสัปดาห์สำหรับคู่ต่อสู้ของพิตส์เบิร์กสตีลเลอร์ส",
    "context": "CREATE TABLE table_name_34 (week VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_19 WHERE record = \"0-1\"",
    "question_en": "Tell me the week for record of 0-1",
    "question_th": "บอกฉันสัปดาห์สำหรับบันทึก 0-1",
    "context": "CREATE TABLE table_name_19 (week VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_9 WHERE opponent = \"buffalo bills\"",
    "question_en": "Tell me the time for buffalo bills",
    "question_th": "แจ้งเวลาบิลควายครับ",
    "context": "CREATE TABLE table_name_9 (time VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_87 WHERE week = \"hf\"",
    "question_en": "Tell me thee record for week of hf",
    "question_th": "บอกฉันทีบันทึกสำหรับสัปดาห์ของ hf",
    "context": "CREATE TABLE table_name_87 (record VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT game_site FROM table_name_98 WHERE week = \"1\"",
    "question_en": "Tell me the game site for week of 1",
    "question_th": "บอกเว็บไซต์เกมสำหรับสัปดาห์ที่ 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_en": "What was the result of the 1990 world cup qualifying competition?",
    "question_th": "การแข่งขันฟุตบอลโลกรอบคัดเลือกปี 1990 มีผลอย่างไร?",
    "context": "CREATE TABLE table_name_55 (result VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_92 WHERE venue = \"torrance, california\"",
    "question_en": "What was the Score of the match in Torrance, California?",
    "question_th": "คะแนนของการแข่งขันที่เมืองทอร์รันซ์ รัฐแคลิฟอร์เนีย เป็นเท่าใด",
    "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_en": "Tell me the score for international friendly 17 august 2013",
    "question_th": "แจ้งผลคะแนนกระชับมิตรทีมชาติ 17 สิงหาคม 2556 ครับ",
    "context": "CREATE TABLE table_name_70 (score VARCHAR, type VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_84 WHERE mls_team = \"metrostars\"",
    "question_en": "What position did the MLS team metrostars pick?",
    "question_th": "เมโทรสตาร์ของทีม MLS เลือกตำแหน่งใด",
    "context": "CREATE TABLE table_name_84 (position VARCHAR, mls_team VARCHAR)"
  },
  {
    "answer": "SELECT mls_team FROM table_name_97 WHERE affiliation = \"yale university\"",
    "question_en": "What MLS team is affiliated with yale university?",
    "question_th": "ทีม MLS ใดที่อยู่ในเครือของมหาวิทยาลัยเยล",
    "context": "CREATE TABLE table_name_97 (mls_team VARCHAR, affiliation VARCHAR)"
  },
  {
    "answer": "SELECT affiliation FROM table_name_28 WHERE pick__number < 32",
    "question_en": "What affiliations have Pick #s under 32?",
    "question_th": "บริษัทในเครือใดบ้างที่ Pick #s อายุต่ำกว่า 32 ปี",
    "context": "CREATE TABLE table_name_28 (affiliation VARCHAR, pick__number INTEGER)"
  },
  {
    "answer": "SELECT player FROM table_name_2 WHERE position = \"f\"",
    "question_en": "What players have a position of F?",
    "question_th": "นักเตะคนไหนมีตำแหน่ง F?",
    "context": "CREATE TABLE table_name_2 (player VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT goals FROM table_name_63 WHERE caps = \"73\"",
    "question_en": "How many goals were scored when there were 73 caps?",
    "question_th": "ยิงได้กี่ประตูเมื่อลงเล่น 73 นัด?",
    "context": "CREATE TABLE table_name_63 (goals VARCHAR, caps VARCHAR)"
  },
  {
    "answer": "SELECT build_year FROM table_name_44 WHERE total_production = 150",
    "question_en": "Tell me the build year for total production of 150",
    "question_th": "ขอทราบปีที่สร้างจำนวนการผลิตทั้งหมด 150 องค์",
    "context": "CREATE TABLE table_name_44 (build_year VARCHAR, total_production VARCHAR)"
  },
  {
    "answer": "SELECT power_output_（kw） FROM table_name_38 WHERE total_production = 100",
    "question_en": "Tell me the power output for total production of 100",
    "question_th": "บอกกำลังไฟฟ้าที่ผลิตได้ทั้งหมด 100 หน่อย",
    "context": "CREATE TABLE table_name_38 (power_output_（kw） VARCHAR, total_production VARCHAR)"
  },
  {
    "answer": "SELECT total_production FROM table_name_72 WHERE model = \"nd5\"",
    "question_en": "Name the total production for model nd5",
    "question_th": "ตั้งชื่อการผลิตรวมสำหรับรุ่น 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_en": "What is the nationality of the player who played guard in 2006?",
    "question_th": "นักเตะที่เล่นเป็นกองหลังเมื่อปี 2549 มีสัญชาติอะไร?",
    "context": "CREATE TABLE table_name_85 (nationality VARCHAR, position_s_ VARCHAR, season_s_ VARCHAR)"
  },
  {
    "answer": "SELECT SUM(bp_2nd_comp__) AS ˚c_ FROM table_name_33 WHERE bp_azeo__˚c_ = 57.5",
    "question_en": "Tell me the sum of bp 2nd comp with bp azeo of 57.5",
    "question_th": "บอกผลรวมของ bp คอมพ์ที่ 2 กับ bp azeo ของ 57.5 หน่อยสิ",
    "context": "CREATE TABLE table_name_33 (bp_2nd_comp__ INTEGER, bp_azeo__˚c_ VARCHAR)"
  },
  {
    "answer": "SELECT rider FROM table_name_24 WHERE laps = 18 AND time = \"+25.165\"",
    "question_en": "Which rider went 18 laps ending +25.165 behind the leader?",
    "question_th": "นักบิดคนไหนไปได้ 18 รอบ จบ +25.165 ตามหลังผู้นำ?",
    "context": "CREATE TABLE table_name_24 (rider VARCHAR, laps VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_1 WHERE year > 2002",
    "question_en": "What is the result for a year later than 2002?",
    "question_th": "ผลลัพธ์ในหนึ่งปีหลังจากปี 2545 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_1 (result VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT result FROM table_name_56 WHERE year = 1999",
    "question_en": "What is the result for the year 1999?",
    "question_th": "ผลลัพธ์ของปี 2542 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_56 (result VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT engine FROM table_name_88 WHERE team = \"dhg tom's racing\"",
    "question_en": "Tell me the engine for dhg tom's racing",
    "question_th": "บอกเครื่องยนต์สำหรับ 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_en": "Name the team for toshihiro kaneishi",
    "question_th": "ตั้งชื่อทีมให้โทชิฮิโระ คาเนอิชิ",
    "context": "CREATE TABLE table_name_21 (team VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT AVG(year) FROM table_name_14 WHERE chinese_title = \"敗犬女王\"",
    "question_en": "I want the average year of 敗犬女王",
    "question_th": "ฉันต้องการปีเฉลี่ยของ 敗犬女王",
    "context": "CREATE TABLE table_name_14 (year INTEGER, chinese_title VARCHAR)"
  },
  {
    "answer": "SELECT role FROM table_name_38 WHERE year = 2005",
    "question_en": "Tell me the role for 2005",
    "question_th": "บอกบทบาทปี 2548 ให้ฉันหน่อย",
    "context": "CREATE TABLE table_name_38 (role VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT AVG(year) FROM table_name_65 WHERE english_title = \"my queen\"",
    "question_en": "Tell me the average year for my queen",
    "question_th": "บอกปีเฉลี่ยของราชินีของฉันหน่อยสิ",
    "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_en": "Tell me singles W-L that has years larger than 1 and highest singles ranking of 1346",
    "question_th": "บอกคนโสด WL ที่มีปีมากกว่า 1 และอันดับคนโสดสูงสุดที่ 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_en": "When the Top 10s is larger than 0 and the scoring average 73.04, what is the best finish?",
    "question_th": "เมื่อ 10 อันดับแรกมากกว่า 0 และคะแนนเฉลี่ย 73.04 อะไรคือการจบสกอร์ที่ดีที่สุด?",
    "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_en": "Tell me the score of praterstadion, vienna, and competition of euro 1980 qualifier",
    "question_th": "บอกคะแนนของปราเตอร์สตาดิโอน, เวียนนา และการแข่งขันยูโร 1980 รอบคัดเลือกหน่อยสิ",
    "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_en": "I want the score for 28 march 1979",
    "question_th": "ฉันต้องการคะแนนของวันที่ 28 มีนาคม 2522",
    "context": "CREATE TABLE table_name_37 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_72 WHERE date = \"30 april 1977\"",
    "question_en": "I want the score for 30 april 1977",
    "question_th": "ฉันต้องการคะแนนประจำวันที่ 30 เมษายน 2520",
    "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_en": "What competition was the World Championships before 2011?",
    "question_th": "การแข่งขันชิงแชมป์โลกก่อนปี 2554 มีการแข่งขันอะไรบ้าง?",
    "context": "CREATE TABLE table_name_38 (event VARCHAR, competition VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_56 WHERE venue = \"erfurt, germany\"",
    "question_en": "What event took place in Erfurt, Germany?",
    "question_th": "เหตุการณ์ใดเกิดขึ้นที่เมืองเออร์เฟิร์ต ประเทศเยอรมนี",
    "context": "CREATE TABLE table_name_56 (event VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT team_nickname FROM table_name_21 WHERE enrollment > 42 OFFSET 326",
    "question_en": "Name the team nickname for enrollment more than 42,326",
    "question_th": "ตั้งชื่อเล่นให้ทีมสมัครมากกว่า 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_en": "With the lost of 3, how many points?",
    "question_th": "แพ้ 3 ได้กี่แต้ม?",
    "context": "CREATE TABLE table_name_9 (points_against VARCHAR, lost VARCHAR)"
  },
  {
    "answer": "SELECT points_against FROM table_name_38 WHERE matches = \"16\"",
    "question_en": "How many against points for 16 matches?",
    "question_th": "16 นัดมีกี่คะแนน?",
    "context": "CREATE TABLE table_name_38 (points_against VARCHAR, matches VARCHAR)"
  },
  {
    "answer": "SELECT points_for FROM table_name_36 WHERE points_against = \"51\"",
    "question_en": "The 51 points against, how many are for?",
    "question_th": "51แต้มต่อได้กี่แต้ม?",
    "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_en": "For the played in, what are the total points?",
    "question_th": "สำหรับการลงเล่นมีแต้มรวมเท่าไหร่?",
    "context": "CREATE TABLE table_name_36 (points_for VARCHAR, played_in VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_69 WHERE team = \"eurasia astana\"",
    "question_en": "What country is the Eurasia Astana team from?",
    "question_th": "ทีม Eurasia Astana มาจากประเทศใด?",
    "context": "CREATE TABLE table_name_69 (country VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT 2008 FROM table_name_38 WHERE 2012 = \"4r\" AND 2009 = \"a\"",
    "question_en": "Tell me the 2008 for 2012 of 4r and 2009 of a",
    "question_th": "บอกฉันปี 2008 สำหรับ 2012 ของ 4r และ 2009 ของ a",
    "context": "CREATE TABLE table_name_38 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2008 FROM table_name_69 WHERE 2011 = \"olympic games\"",
    "question_en": "Tell me the 2008 of 2001 olympic games",
    "question_th": "บอกฉันเกี่ยวกับกีฬาโอลิมปิกปี 2008 ปี 2001",
    "context": "CREATE TABLE table_name_69 (Id VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_26 WHERE 2009 = \"atp masters series\"",
    "question_en": "Tell me the tournament of 2009 of atp masters series",
    "question_th": "บอกฉันเกี่ยวกับการแข่งขันปี 2009 ของซีรีส์ atp masters",
    "context": "CREATE TABLE table_name_26 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_73 WHERE tournament = \"monte carlo masters\"",
    "question_en": "Tell me the 2011 tournament of monte carlo masters",
    "question_th": "เล่าการแข่งขัน 2011 ของ 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_en": "Tell me the 2011 with 2012 of 2r",
    "question_th": "บอกฉันปี 2011 กับ 2012 จาก 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_en": "What was the latest round with a running back from a California college?",
    "question_th": "รอบล่าสุดที่วิ่งกลับจากวิทยาลัยแคลิฟอร์เนียคืออะไร?",
    "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_en": "What were the results for november 25, 1973?",
    "question_th": "ผลลัพธ์ของวันที่ 25 พฤศจิกายน 2516 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_36 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_60 WHERE week = 14",
    "question_en": "Which Opponent had a week of 14?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีสัปดาห์ที่ 14?",
    "context": "CREATE TABLE table_name_60 (opponent VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_22 WHERE opponent = \"new orleans saints\"",
    "question_en": "Tell me the date for new orleans saints",
    "question_th": "บอกวันที่สำหรับนักบุญนิวออร์ลีนส์ให้ฉันหน่อย",
    "context": "CREATE TABLE table_name_22 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_46 WHERE week = 4",
    "question_en": "Tell me the result for week of 4",
    "question_th": "แจ้งผลสัปดาห์ที่ 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_en": "Tell me the lowest week for w 10-3",
    "question_th": "บอกสัปดาห์ต่ำสุดสำหรับ 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_en": "Tell me the average heat rank with a lane of 2 and time less than 27.66",
    "question_th": "บอกอันดับความร้อนเฉลี่ยด้วยเลน 2 และเวลาน้อยกว่า 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_en": "Tell me the highest overall rank for lane less than 8 and time less than 27.16",
    "question_th": "บอกอันดับโดยรวมสูงสุดสำหรับเลนที่น้อยกว่า 8 และเวลาน้อยกว่า 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_en": "Tell me the total number of time for luke hall overall rank being larger than 105",
    "question_th": "บอกจำนวนเวลาทั้งหมดสำหรับอันดับโดยรวมของลุค ฮอลล์ที่มากกว่า 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_en": "Tell me the left team for josh vanlandingham",
    "question_th": "บอกผมหน่อยว่าทีมซ้ายของจอช แวนแลนดิงแฮม",
    "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_en": "Who had less than 7 goals, was ranked under 7, and had more than 8 appearances?",
    "question_th": "ใครยิงได้น้อยกว่า 7 ประตู อันดับต่ำกว่า 7 และลงสนามมากกว่า 8 นัด?",
    "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_en": "What was the sum of ranks of those called Fernando Cavenaghi who appeared less than 7.",
    "question_th": "ผลรวมอันดับของคนที่ถูกเรียกว่า เฟอร์นันโด คาเวนนากี ซึ่งปรากฏน้อยกว่า 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_en": "How many appearances were made by people that had 5 goals and less than 7 rank?",
    "question_th": "คนที่ทำได้ 5 ประตูและอันดับต่ำกว่า 7 ลงเล่นไปกี่ครั้ง?",
    "context": "CREATE TABLE table_name_95 (appearances VARCHAR, goals VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_85 WHERE partner = \"vania king\"",
    "question_en": "What was the surface for the game that had a partner of vania king?",
    "question_th": "พื้นผิวของเกมที่มีคู่หูของ 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_en": "Who was the partner for the game on October 20, 2013?",
    "question_th": "ใครคือหุ้นส่วนของเกมในวันที่ 20 ตุลาคม 2556?",
    "context": "CREATE TABLE table_name_80 (partner VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_29 WHERE round = \"e\"",
    "question_en": "Tell me the name for round of e",
    "question_th": "บอกชื่อรอบอีด้วย",
    "context": "CREATE TABLE table_name_29 (name VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT team_1 FROM table_name_74 WHERE name = \"preliminary final\"",
    "question_en": "Name the team one for preliminary final",
    "question_th": "ตั้งชื่อทีมหนึ่งสำหรับรอบชิงชนะเลิศเบื้องต้น",
    "context": "CREATE TABLE table_name_74 (team_1 VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT team_1 FROM table_name_64 WHERE round = \"3\"",
    "question_en": "Name the team 1 for round 3",
    "question_th": "ตั้งชื่อทีม 1 สำหรับรอบ 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_en": "Name the round for 2nd elimination final",
    "question_th": "ตั้งชื่อรอบคัดออกครั้งที่ 2 รอบชิงชนะเลิศ",
    "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_en": "In less than 58 laps, what is the highest grid for Alexander Wurz?",
    "question_th": "ในรอบน้อยกว่า 58 รอบ อเล็กซานเดอร์ เวิร์ซ มีกริดสูงสุดที่เท่าไร?",
    "context": "CREATE TABLE table_name_32 (grid INTEGER, driver VARCHAR, laps VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(laps) FROM table_name_24 WHERE grid = 19",
    "question_en": "What is the total laps for grid 19?",
    "question_th": "ตารางที่ 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_en": "Name the winning driver for mobilecast impul and twin ring motegi",
    "question_th": "ตั้งชื่อไดรเวอร์ที่ชนะสำหรับ mobilecast impul และ 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_en": "Name the winning driver for round 7",
    "question_th": "ตั้งชื่อนักแข่งที่ชนะรอบที่ 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_en": "Name the number of total for 3 gold and rank less than 3",
    "question_th": "ตั้งชื่อจำนวนรวม 3 ทองและอันดับน้อยกว่า 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_en": "Tell me the naame of Investigation of thrombus imaging",
    "question_th": "บอกชื่อการสืบสวนภาพลิ่มเลือดอุดตันมาหน่อย",
    "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_en": "Tell me the name for Investigation of thrombus imaging and Route of administration of iv",
    "question_th": "บอกชื่อการตรวจวินิจฉัยการถ่ายภาพลิ่มเลือดและเส้นทางการให้ยา 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_en": "Tell me the in-vitro for Route of administration of iv and Investigation of somatostatin receptor imaging",
    "question_th": "บอกฉันในหลอดทดลองสำหรับเส้นทางการให้ยา iv และการตรวจสอบการถ่ายภาพตัวรับโซมาโตสแตติน",
    "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_en": "The player is Tim Regan and the pick # is position of d, what's the sum?",
    "question_th": "ผู้เล่นคือ Tim Regan และผู้เลือก # คือตำแหน่ง d ผลรวมเป็นเท่าใด",
    "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_en": "The position that has a pick # of 16 is what?",
    "question_th": "ตำแหน่งที่มีให้เลือก #16 คืออะไร?",
    "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_en": "Damani Ralph is associated with which lowest pick #?",
    "question_th": "Damani Ralph มีความเกี่ยวข้องกับตัวเลือก # ที่ต่ำที่สุดตัวใด?",
    "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_en": "Chicago fire has a total of a total of how many #s?",
    "question_th": "ชิคาโกไฟมีทั้งหมดกี่ #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_en": "Tell me the score for score in legs and year less than 2012",
    "question_th": "บอกคะแนนสกอร์ขาและปีน้อยกว่า 2555 ครับ",
    "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_en": "Tell me the championship for runner-up outcome of 2010",
    "question_th": "บอกผลการแข่งขันชิงแชมป์รองชนะเลิศประจำปี 2553 หน่อยครับ",
    "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_en": "Tell me the outcome for premier league darts",
    "question_th": "แจ้งผลปาเป้าพรีเมียร์ลีกครับ",
    "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_en": "Tell me the sum of Year for outcome of runner-up for world darts championship",
    "question_th": "บอกผลรวมของปีสำหรับผลรองชนะเลิศปาเป้าชิงแชมป์โลก",
    "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_en": "In 2007, how many points were won when more than 5 matches were played?",
    "question_th": "ในปี 2550 มีการแข่งขันมากกว่า 5 นัดที่ได้คะแนนเท่าไร",
    "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_en": "In 2007, what is the average total matches with points % larger than 33.3?",
    "question_th": "ในปี 2550 การแข่งขันทั้งหมดโดยเฉลี่ยที่มีคะแนน % มากกว่า 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_en": "Which player attended school at Georgia Tech?",
    "question_th": "ผู้เล่นคนไหนที่เข้าเรียนที่โรงเรียนที่ 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_en": "What position does Ed Stokes hold?",
    "question_th": "เอ็ด สโตกส์ ดำรงตำแหน่งอะไร?",
    "context": "CREATE TABLE table_name_87 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT school_club_team FROM table_name_93 WHERE player = \"michael stewart\"",
    "question_en": "What is Michael Stewart's school or club team?",
    "question_th": "โรงเรียนหรือทีมสโมสรของ Michael Stewart คืออะไร",
    "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_en": "What tournament was played on May 29, 2010?",
    "question_th": "ทัวร์นาเมนต์ใดที่เล่นในวันที่ 29 พฤษภาคม 2553?",
    "context": "CREATE TABLE table_name_8 (tournament VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_50 WHERE partner = \"paula ormaechea\"",
    "question_en": "What was the surface made of in the contest where Paula Ormaechea was the partner?",
    "question_th": "พื้นผิวทำจากอะไรในการแข่งขันที่มี Paula Ormaechea เป็นคู่หู?",
    "context": "CREATE TABLE table_name_50 (surface VARCHAR, partner VARCHAR)"
  },
  {
    "answer": "SELECT method FROM table_name_1 WHERE record = \"4-2\"",
    "question_en": "Tell me the method with a record of 4-2",
    "question_th": "บอกวิธีด้วยสถิติ 4-2",
    "context": "CREATE TABLE table_name_1 (method VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_78 WHERE opponent = \"yukiya naito\"",
    "question_en": "Tell me the record for yukiya naito",
    "question_th": "บอกฉันเกี่ยวกับบันทึกของยูกิยะไนโตะ",
    "context": "CREATE TABLE table_name_78 (record VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_25 WHERE opponent = \"kazuhiro nakamura\"",
    "question_en": "Tell me the record for kazuhiro nakamura",
    "question_th": "บอกฉันเกี่ยวกับบันทึกของ kazuhiro nakamura",
    "context": "CREATE TABLE table_name_25 (record VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT method FROM table_name_60 WHERE opponent = \"stanislav nuschik\"",
    "question_en": "Tell me the method for stanislav nuschik",
    "question_th": "บอกวิธีการสำหรับ 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_en": "What was the Result of IFL: Los Angeles?",
    "question_th": "ผลลัพธ์ของ 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_en": "Which Event resulted in a Win for Opponent, Shane Ott?",
    "question_th": "เหตุการณ์ใดส่งผลให้ฝ่ายตรงข้ามชนะ 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_en": "Which crystal structures has a Tc(K) of 110 and the number of Cu-O planes in the unit cell is 3?",
    "question_th": "โครงสร้างผลึกใดมีค่า Tc(K) เท่ากับ 110 และจำนวนระนาบ Cu-O ในเซลล์หน่วยคือ 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_en": "Name the gold with total larger than 33",
    "question_th": "ตั้งชื่อทองคำด้วยจำนวนรวมมากกว่า 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_en": "Name the fewest gold for tanzania with bronze less than 0",
    "question_th": "ตั้งชื่อทองคำที่น้อยที่สุดสำหรับแทนซาเนียโดยมีค่าทองแดงน้อยกว่า 0",
    "context": "CREATE TABLE table_name_54 (gold INTEGER, nation VARCHAR, bronze VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_17 WHERE week = 10",
    "question_en": "Who is the opponent for week 10?",
    "question_th": "คู่ต่อสู้ในสัปดาห์ที่ 10 คือใคร?",
    "context": "CREATE TABLE table_name_17 (opponent VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT MAX(gold) FROM table_name_81 WHERE total > 32",
    "question_en": "For countries that won more than 32 gold medals, what was the highest number of golds?",
    "question_th": "สำหรับประเทศที่คว้าเหรียญทองได้มากกว่า 32 เหรียญ จำนวนเหรียญทองสูงสุดคือเท่าใด",
    "context": "CREATE TABLE table_name_81 (gold INTEGER, total INTEGER)"
  },
  {
    "answer": "SELECT fourth_place FROM table_name_36 WHERE year = 2010",
    "question_en": "Tell me fourth place for year of 2010",
    "question_th": "บอกฉันว่าอันดับที่สี่ของปี 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_en": "Tell me the result for 2010 fifa world cup qualification",
    "question_th": "แจ้งผลบอลโลก 2010 รอบคัดเลือกครับ",
    "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_en": "Tell me the date for 2010 fifa world cup qualification",
    "question_th": "บอกวันที่ฟุตบอลโลก 2010 รอบคัดเลือกมาหน่อย",
    "context": "CREATE TABLE table_name_85 (date VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_34 WHERE date = \"november 28, 2010\"",
    "question_en": "Tell me the surface for november 28, 2010",
    "question_th": "บอกฉันพื้นผิวสำหรับวันที่ 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–1, 6–2\"",
    "question_en": "Tell me the tournament with a hard surface for 6–1, 6–2",
    "question_th": "บอกทัวร์นาเมนต์ที่มีพื้นผิวแข็งสำหรับ 6–1, 6–2 หน่อยสิ",
    "context": "CREATE TABLE table_name_99 (tournament VARCHAR, surface VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_87 WHERE score = \"6–3, 6–2\"",
    "question_en": "Tell me the date for 6–3, 6–2",
    "question_th": "บอกวันที่ 6–3, 6–2 ให้ฉันหน่อย",
    "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_en": "Tell me the date for johanna konta",
    "question_th": "บอกวันที่ของ 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_en": "What is the time value for the rider Brian Finch and a rank greater than 3?",
    "question_th": "ค่าเวลาของนักบิด Brian Finch และอันดับที่มากกว่า 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_en": "What result does the project Once Upon A Time In The West, directed by Sergio Leone have?",
    "question_th": "โปรเจ็กต์ Once Upon A Time In The West ที่กำกับโดยเซอร์จิโอ ลีโอนให้ผลลัพธ์เป็นอย่างไร",
    "context": "CREATE TABLE table_name_40 (result VARCHAR, director VARCHAR, project VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_92 WHERE project = \"bulworth\"",
    "question_en": "What year was Bulworth nominated?",
    "question_th": "Bulworth ได้รับการเสนอชื่อเข้าชิงในปีใด",
    "context": "CREATE TABLE table_name_92 (year VARCHAR, project VARCHAR)"
  },
  {
    "answer": "SELECT AVG(year) FROM table_name_16 WHERE project = \"the untouchables\"",
    "question_en": "What is the average Year for the project The Untouchables?",
    "question_th": "ปีเฉลี่ยของโครงการ 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_en": "Tell me the section for position of 8th and season of 2003",
    "question_th": "บอกส่วนตำแหน่งที่ 8 และฤดูกาลปี 2546 ให้ฉันหน่อย",
    "context": "CREATE TABLE table_name_29 (section VARCHAR, position VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_35 WHERE week = 17",
    "question_en": "What is the date of week 17?",
    "question_th": "สัปดาห์ที่ 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_en": "What was the latest week that the Tampa Bay Buccaneers were an opponent?",
    "question_th": "สัปดาห์ล่าสุดที่ Tampa Bay Buccaneers เป็นคู่ต่อสู้คืออะไร?",
    "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_en": "Name the fewest tries for leicester tigers with points less than 207",
    "question_th": "ระบุความพยายามน้อยที่สุดของเสือเลสเตอร์ที่มีคะแนนน้อยกว่า 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_en": "Name the date of st albans city for result of drew 0-0",
    "question_th": "ทายวันที่ เซนต์ อัลบันส์ ซิตี้ ผลเสมอ 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_en": "Name the venue for 15 august 2006",
    "question_th": "ตั้งชื่อสถานที่จัดงานวันที่ 15 สิงหาคม 2549",
    "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_en": "Name the most attendance for tamworth with home venue",
    "question_th": "ตั้งชื่อผู้เข้าร่วมมากที่สุดสำหรับแทมเวิร์ธด้วยสถานที่จัดงานในบ้าน",
    "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_en": "Name the least attendance for 10 october 2006",
    "question_th": "รายชื่อผู้เข้าร่วมน้อยที่สุดในวันที่ 10 ตุลาคม 2549",
    "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_en": "I want the average bronze for total of 19 and silver of 8 with rank of 31",
    "question_th": "ฉันต้องการทองแดงเฉลี่ยรวม 19 และเงิน 8 ด้วยอันดับ 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_en": "Tell me the average bronze for rank of 43 and total less than 11",
    "question_th": "บอกค่าเฉลี่ยทองแดงสำหรับอันดับ 43 และรวมน้อยกว่า 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_en": "Say the frequency of 1290 khz",
    "question_th": "พูดความถี่ 1290 กิโลเฮิร์ตซ์",
    "context": "CREATE TABLE table_name_31 (format VARCHAR, frequency VARCHAR)"
  },
  {
    "answer": "SELECT timeslot FROM table_name_21 WHERE calls = \"wrko\"",
    "question_en": "Tell me the timeslot of calls of wrko",
    "question_th": "บอกช่วงเวลาการโทรของ wrko ให้ฉันหน่อย",
    "context": "CREATE TABLE table_name_21 (timeslot VARCHAR, calls VARCHAR)"
  },
  {
    "answer": "SELECT format FROM table_name_56 WHERE calls = \"wrko\"",
    "question_en": "Tell me the format for calls of wrko",
    "question_th": "บอกรูปแบบการโทรของ wrko ให้ฉันหน่อย",
    "context": "CREATE TABLE table_name_56 (format VARCHAR, calls VARCHAR)"
  },
  {
    "answer": "SELECT calls FROM table_name_88 WHERE frequency = \"1290 khz\"",
    "question_en": "Tell me the calls for frequency of 1290 khz",
    "question_th": "บอกสายเรียกเข้าด้วยความถี่ 1290 กิโลเฮิร์ตซ์",
    "context": "CREATE TABLE table_name_88 (calls VARCHAR, frequency VARCHAR)"
  },
  {
    "answer": "SELECT branding FROM table_name_88 WHERE frequency = \"680 khz\"",
    "question_en": "Tell me the branding for frequency of 680 khz",
    "question_th": "บอกยี่ห้อสำหรับความถี่ 680 khz หน่อยสิ",
    "context": "CREATE TABLE table_name_88 (branding VARCHAR, frequency VARCHAR)"
  },
  {
    "answer": "SELECT timeslot FROM table_name_74 WHERE calls = \"whyn\"",
    "question_en": "Tell me the timeslot for calls of whyn",
    "question_th": "บอกช่วงเวลาการโทรว่าทำไม",
    "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_en": "For how long did Bolivia have a lane greater than 6?",
    "question_th": "โบลิเวียมีเลนมากกว่า 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_en": "In heat rank 7, what is the sum of lanes?",
    "question_th": "ในฮีตอันดับ 7 ผลรวมของเลนเป็นเท่าใด",
    "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_en": "Which country is ranked 56 overall and has a heat rank smaller than 8?",
    "question_th": "ประเทศใดอยู่ในอันดับที่ 56 โดยรวมและมีอันดับความร้อนน้อยกว่า 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_en": "What is the greatest lane with an overall rank of 79 and a time larger than 26.1?",
    "question_th": "เลนใดที่ยิ่งใหญ่ที่สุดที่มีอันดับโดยรวม 79 และเวลาที่มากกว่า 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_en": "Tell me the highest week for metropolitan stadium for attendance more than 47,644",
    "question_th": "บอกสัปดาห์สูงสุดสนามมหานครยอดผู้เข้าชมเกิน 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_en": "Name the sum of played for serik berdalin and drawn more than 4",
    "question_th": "ตั้งชื่อผลรวมของการเล่นให้กับเซริก เบอร์ดาลินและเสมอกันมากกว่า 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_en": "Who had the highest total PR seats of 48 with a District seat larger than than 73?",
    "question_th": "ใครมีที่นั่งประชาสัมพันธ์รวมสูงสุดที่ 48 ที่นั่งโดยที่นั่งระดับเขตมากกว่า 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_en": "In 1955 which party did Thomas Mitchell belong to?",
    "question_th": "ในปี 1955 Thomas Mitchell สังกัดพรรคใด",
    "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_en": "What are the number of days did the ulster unionist Party have the constituate fermanagh and south tyrone?",
    "question_th": "พรรคสหภาพเสื้อคลุมคลุมมีรัฐธรรมนูญเป็นเฟอร์มานาห์และไทโรนใต้กี่วัน?",
    "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_en": "What are the number of days in 1945 where the constituent was heywood and radcliffe?",
    "question_th": "กี่วันในปี 1945 ที่เฮย์วูดและแรดคลิฟฟ์มีองค์ประกอบคือกี่วัน?",
    "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_en": "What year was Hazel Grove the constituent for the liberal party?",
    "question_th": "Hazel Grove เป็นสมาชิกของพรรคเสรีนิยมในปีใด",
    "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_en": "Tell me the average Laps for grid larger than 12 and bikes of ducati 999rs for dean ellison",
    "question_th": "บอกจำนวนรอบโดยเฉลี่ยสำหรับกริดที่มากกว่า 12 และรถมอเตอร์ไซค์ของ ducati 999rs สำหรับ 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_en": "Tell me the highest Laps for grid less than 22 and riderS of ruben xaus",
    "question_th": "บอกจำนวนรอบสูงสุดสำหรับกริดที่น้อยกว่า 22 และผู้ขับขี่ S ของ 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_en": "Tell me the total number of grid for rider of james toseland",
    "question_th": "บอกจำนวนตารางรวมของนักบิด 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_en": "Tell me the least Laps for grid larger than 2 with 35:26.734",
    "question_th": "บอกรอบที่น้อยที่สุดสำหรับตารางที่ใหญ่กว่า 2 ด้วย 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_en": "Tell me the date with week of 13",
    "question_th": "บอกวันที่สัปดาห์ที่ 13 ให้ฉันหน่อย",
    "context": "CREATE TABLE table_name_21 (date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT AVG(week) FROM table_name_74 WHERE attendance = \"48,113\"",
    "question_en": "Tell me the average week for attendance of 48,113",
    "question_th": "บอกฉันสัปดาห์เฉลี่ยสำหรับการเข้าร่วม 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_en": "Which Album had a year less than 2005 with a Label by Ministry of Sound?",
    "question_th": "อัลบั้มใดมีปีที่น้อยกว่าปี 2548 โดยมีป้ายกำกับโดย 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_en": "Which Album had a bigger year than 2005 and whose country was Australia?",
    "question_th": "อัลบั้มใดมีปีที่ยิ่งใหญ่กว่าปี 2548 และประเทศของใครคือออสเตรเลีย",
    "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_en": "Which song had Central Station as a label and whose album was Various - Wild Nights 4?",
    "question_th": "เพลงใดมี Central Station เป็นค่ายเพลง และอัลบั้มของใครคือ Variety - 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_en": "Where did Zimbabwe play?",
    "question_th": "ซิมบับเวเล่นที่ไหน?",
    "context": "CREATE TABLE table_name_63 (venue VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_68 WHERE opponent = \"canada\"",
    "question_en": "What is the date when Canada played?",
    "question_th": "แคนาดาเล่นวันที่เท่าไหร่?",
    "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_en": "Tell me the lowest silver for rank of 9 and bronze less than 2",
    "question_th": "บอกเงินต่ำสุดสำหรับอันดับ 9 และทองแดงน้อยกว่า 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_en": "Name the report for raymond sommer",
    "question_th": "ตั้งชื่อรายงานสำหรับ 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_en": "Name the winning driver for monaco grand prix",
    "question_th": "ตั้งชื่อนักแข่งที่ชนะโมนาโกกรังด์ปรีซ์",
    "context": "CREATE TABLE table_name_41 (winning_driver VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT circuit FROM table_name_95 WHERE winning_driver = \"marcel lehoux\"",
    "question_en": "Name the circuit for marcel lehoux",
    "question_th": "ตั้งชื่อวงจรให้กับ 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_en": "Name the report for per-viktor widengren and alfa romeo",
    "question_th": "ตั้งชื่อรายงานสำหรับ per-viktor widengren และ 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_en": "Tell me the date for warsaw 1929",
    "question_th": "บอกวันที่วอร์ซอปี 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_en": "Tell me the result for warsaw 1929",
    "question_th": "บอกฉันผลลัพธ์สำหรับวอร์ซอ 1929",
    "context": "CREATE TABLE table_name_8 (result VARCHAR, location VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_34 WHERE location = \"harrogate\"",
    "question_en": "Tell me the result for harrogate",
    "question_th": "บอกฉันผลลัพธ์สำหรับฮาร์โรเกต",
    "context": "CREATE TABLE table_name_34 (result VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT overall_rank FROM table_name_50 WHERE swimmer = \"roland schoeman\"",
    "question_en": "Tell me the overall rank for roland schoeman",
    "question_th": "บอกอันดับโดยรวมของ 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_en": "How many Silver medals did nation who is ranked greater than 1 and has 4 Gold medals have?",
    "question_th": "ประเทศที่ติดอันดับมากกว่า 1 และมีเหรียญทอง 4 เหรียญมีเหรียญเงินกี่เหรียญ?",
    "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_en": "Which nation has more than 6 Silver medals and fewer than 8 Gold medals?",
    "question_th": "ประเทศใดมีเหรียญเงินมากกว่า 6 เหรียญและน้อยกว่า 8 เหรียญทอง?",
    "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_en": "What is the rank of the Nation that has fewer than 24 total medals are more than 7 Gold medals?",
    "question_th": "อันดับประเทศที่มีน้อยกว่า 24 เหรียญมีมากกว่า 7 เหรียญทองคืออะไร?",
    "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_en": "What is the rank of the nation that has more than 1 Bronze medals and fewer than 4 Gold medals?",
    "question_th": "อันดับประเทศที่มีมากกว่า 1 เหรียญทองแดง และน้อยกว่า 4 เหรียญทอง คืออันดับอะไร?",
    "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_en": "How many silver medals does Belarus (blr) along with 4 gold and 4 bronze?",
    "question_th": "เบลารุส (blr) มีเหรียญเงิน 4 เหรียญทอง และ 4 เหรียญทองแดงมีกี่เหรียญ?",
    "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_en": "What rank is Belarus (BLR), which earned 15 medals total?",
    "question_th": "เบลารุส (BLR) อยู่อันดับไหน ได้ทั้งหมด 15 เหรียญ?",
    "context": "CREATE TABLE table_name_44 (rank INTEGER, nation VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_37 WHERE date = \"24 september\"",
    "question_en": "What was the name of the race on 24 September?",
    "question_th": "แข่งวันที่ 24 กันยายน ชื่ออะไรครับ?",
    "context": "CREATE TABLE table_name_37 (name VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_72 WHERE date = \"9 july\"",
    "question_en": "What is the name of the race on 9 July?",
    "question_th": "แข่งวันที่ 9 ก.ค. ชื่ออะไรครับ?",
    "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_en": "What was the race that was won by a Maserati being driven by Giuseppe Campari?",
    "question_th": "การแข่งขันที่ Maserati ชนะซึ่งขับเคลื่อนโดย 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_en": "What date was the race won by Louis Chiron?",
    "question_th": "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_en": "What brand of vehicle won a race driven by Tazio Nuvolari?",
    "question_th": "รถยี่ห้อใดชนะการแข่งขันที่ขับโดย 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_en": "What race was won by Tazio Nuvolari?",
    "question_th": "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_en": "Tell me the result for week less than 4 and september 7, 1986",
    "question_th": "บอกผลลัพธ์สำหรับสัปดาห์ที่น้อยกว่า 4 และ 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_en": "Tell me the result for week of 3",
    "question_th": "แจ้งผลสัปดาห์ที่ 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_en": "Tell me the lowest week for attedance less thaan 32,738",
    "question_th": "บอกฉันว่าสัปดาห์ต่ำสุดสำหรับการเข้าร่วมน้อยกว่า 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_en": "Tell me the ship for lieutenant montagu verling",
    "question_th": "บอกเรือของร้อยโทมอนตากู เวอร์ลิงมาหน่อยสิ",
    "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_en": "Tell me the class for admiral and hms frobisher",
    "question_th": "บอกชั้นเรียนของพลเรือเอกและเอชเอ็มเอส โฟรบิเชอร์หน่อยสิ",
    "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_en": "Tell me the guns for third-rate ship of the line and rank of vice-admiral with year of 1802",
    "question_th": "บอกปืนสำหรับเรือชั้นสามของแนวและยศรองพลเรือตรีปี พ.ศ. 2345",
    "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_en": "Tell me the captain for 1774 and guns of 14",
    "question_th": "บอกกัปตันปี 1774 และปืน 14 หน่อยสิ",
    "context": "CREATE TABLE table_name_23 (captain VARCHAR, year VARCHAR, guns VARCHAR)"
  },
  {
    "answer": "SELECT captain FROM table_name_15 WHERE guns = \"28\"",
    "question_en": "Tell me the captain for guns of 28",
    "question_th": "บอกกัปตันปืน 28 หน่อยสิ",
    "context": "CREATE TABLE table_name_15 (captain VARCHAR, guns VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_15 WHERE eliminated = \"anton dela paz\"",
    "question_en": "Tell me the status of eliminated of anton dela paz",
    "question_th": "แจ้งสถานะการตกรอบ อันตอน เดลา ปาซ หน่อยครับ",
    "context": "CREATE TABLE table_name_15 (status VARCHAR, eliminated VARCHAR)"
  },
  {
    "answer": "SELECT finalists FROM table_name_40 WHERE week__number < 2",
    "question_en": "Tell me the finalists for week # less than 2",
    "question_th": "บอกฉันผู้เข้ารอบสุดท้ายสำหรับสัปดาห์ที่ # น้อยกว่า 2",
    "context": "CREATE TABLE table_name_40 (finalists VARCHAR, week__number INTEGER)"
  },
  {
    "answer": "SELECT eliminated FROM table_name_83 WHERE week__number > 4",
    "question_en": "Tell me the eliminated for week # larger than 4",
    "question_th": "บอกฉันว่าตกรอบสำหรับสัปดาห์ # มากกว่า 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_en": "At the UFC 78, what is the average round when the time is 5:00?",
    "question_th": "UFC 78 เวลา 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_en": "When there was a draw, what was the time?",
    "question_th": "หวยออกตอนกี่โมงคะ?",
    "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_en": "What is the sum of points in 2010 when the driver had more than 14 races and an F.L. of less than 0?",
    "question_th": "ผลรวมของคะแนนในปี 2010 เมื่อนักแข่งมีการแข่งขันมากกว่า 14 รายการและ FL น้อยกว่า 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_en": "What was the outcome of the game that had a week number of less than 2?",
    "question_th": "ผลลัพธ์ของเกมที่มีจำนวนสัปดาห์น้อยกว่า 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_en": "What heat and what lane is thi hue pham in?",
    "question_th": "Thi Hue Pham อากาศร้อนขนาดไหนและอยู่ในเลนไหน?",
    "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_en": "What Heat & Lane is the person who has a time of 1:01.12?",
    "question_th": "Heat & Lane คือคนที่มีเวลา 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_en": "How many laps did Fernando Alonso do?",
    "question_th": "Fernando Alonso ทำได้กี่รอบ?",
    "context": "CREATE TABLE table_name_3 (laps VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_13 WHERE driver = \"jenson button\"",
    "question_en": "What was Jenson Button's constructor?",
    "question_th": "คอนสตรัคเตอร์ของ Jenson Button คืออะไร",
    "context": "CREATE TABLE table_name_13 (constructor VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT package FROM table_name_17 WHERE eeprom < 128",
    "question_en": "Tell me the package for EEPROM less than 128",
    "question_th": "บอกแพ็คเกจสำหรับ EEPROM น้อยกว่า 128 ให้ฉันทราบ",
    "context": "CREATE TABLE table_name_17 (package VARCHAR, eeprom INTEGER)"
  },
  {
    "answer": "SELECT chip FROM table_name_63 WHERE frequency_[mhz] > 10",
    "question_en": "Tell me the chip with frequency larger than 10",
    "question_th": "บอกชิปที่มีความถี่มากกว่า 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_en": "I want the highest Grid for Toyota and jarno trulli",
    "question_th": "ฉันต้องการกริดสูงสุดสำหรับ Toyota และ 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_en": "Tell me the average Laps for grid larger than 22",
    "question_th": "บอกจำนวนรอบเฉลี่ยสำหรับตารางที่ใหญ่กว่า 22 หน่อย",
    "context": "CREATE TABLE table_name_39 (laps INTEGER, grid INTEGER)"
  },
  {
    "answer": "SELECT constructor FROM table_name_9 WHERE grid = 17",
    "question_en": "Tell me the constructor for grid of 17",
    "question_th": "บอกตัวสร้างตาราง 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_en": "What years had a manager who lost more than 1 and drawn more than 11?",
    "question_th": "ผู้จัดการทีมที่แพ้มากกว่า 1 และเสมอมากกว่า 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_en": "what is the total win % of manager viktor prokopenko, when he lost fewer than 2?",
    "question_th": "% ชัยชนะทั้งหมดของผู้จัดการทีม Viktor Prokopenko คือเท่าไร เมื่อเขาแพ้น้อยกว่า 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_en": "When 4 clubs are involved, what is the average number of fixtures?",
    "question_th": "เมื่อมี 4 สโมสรเข้าร่วม จำนวนการแข่งขันโดยเฉลี่ยคือเท่าใด?",
    "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_en": "In the sixth round, what is the sum of fixtures when there were more than 15 clubs involved?",
    "question_th": "ในรอบที่ 6 ผลรวมของการแข่งขันเมื่อมีสโมสรที่เกี่ยวข้องมากกว่า 15 สโมสรเป็นเท่าใด?",
    "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_en": "Tell me the league for year of 1915/16",
    "question_th": "บอกลีกปี 1915/59 หน่อยครับ",
    "context": "CREATE TABLE table_name_3 (league VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_26 WHERE laps = 54",
    "question_en": "What is the make of the car that drove 54 laps?",
    "question_th": "รถที่วิ่งได้ 54 รอบ ยี่ห้ออะไร?",
    "context": "CREATE TABLE table_name_26 (constructor VARCHAR, laps VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_9 WHERE caps = 59",
    "question_en": "Who has a 59 cap?",
    "question_th": "ใครมี 59 แคปบ้าง?",
    "context": "CREATE TABLE table_name_9 (name VARCHAR, caps VARCHAR)"
  },
  {
    "answer": "SELECT SUM(frequency_mhz) FROM table_name_43 WHERE erp_w < 1",
    "question_en": "Tell me the sum of frequency for ERP W less than 1",
    "question_th": "บอกผลรวมความถี่ของ ERP W น้อยกว่า 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_en": "Tell me the lowest ties played with a debut of 1936",
    "question_th": "บอกฉันหน่อยว่าความสัมพันธ์ต่ำสุดที่เล่นเมื่อเปิดตัวในปี 1936",
    "context": "CREATE TABLE table_name_15 (ties_played INTEGER, debut VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_47 WHERE competition = \"paris marathon\"",
    "question_en": "Where did the Paris Marathon occur?",
    "question_th": "ปารีสมาราธอนเกิดขึ้นที่ไหน?",
    "context": "CREATE TABLE table_name_47 (venue VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT capacity FROM table_name_15 WHERE stadium = \"city park stadium\"",
    "question_en": "Tell me the capacity for city park stadium",
    "question_th": "แจ้งความจุสนามซิตี้พาร์คครับ",
    "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_en": "Tell me the tournament for opponents of andrei pavel rogier wassen",
    "question_th": "บอกการแข่งขันของคู่ต่อสู้ของ 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–6, 3–6\"",
    "question_en": "Tell me the tournament for score in the final of 1–6, 3–6",
    "question_th": "บอกผลการแข่งขันรอบชิงชนะเลิศ 1–6, 3–6 หน่อยสิ",
    "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–6, 2–6\"",
    "question_en": "Tell me the opponents for score in the final of 1–6, 2–6",
    "question_th": "บอกคะแนนคู่ต่อสู้ในรอบ 1–6, 2–6 รอบชิงชนะเลิศ",
    "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_en": "Tell me the surface for 16 april 2007",
    "question_th": "บอกพื้นผิววันที่ 16 เมษายน 2550",
    "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_en": "I want the average pages for  ISBN of 978-0-9766580-5-4",
    "question_th": "ฉันต้องการหน้าเฉลี่ยสำหรับ ISBN ที่ 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_en": "Tell me the sum of year for 244 pages",
    "question_th": "บอกผลรวมของปี 244 หน้า",
    "context": "CREATE TABLE table_name_84 (year INTEGER, pages VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_99 WHERE pages = 96",
    "question_en": "Tell me the title for pages of 96",
    "question_th": "บอกชื่อหน้า 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_en": "What was the date of birth of a republican member of the United States House of Representatives who held the term of 1863-1865?",
    "question_th": "วันเกิดของสมาชิกสภาผู้แทนราษฎรแห่งสหรัฐอเมริกาซึ่งเป็นพรรครีพับลิกันซึ่งดำรงตำแหน่งระหว่างปี พ.ศ. 2406-2408 คือวันที่เท่าไร",
    "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_en": "What was the age of the member of the United States House of Representatives that began their term on May 7, 1886?",
    "question_th": "สมาชิกสภาผู้แทนราษฎรแห่งสหรัฐอเมริกาซึ่งเริ่มดำรงตำแหน่งในวันที่ 7 พฤษภาคม พ.ศ. 2429 อายุเท่าใด",
    "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_en": "What was the date of birth of the member of the United States House of Representatives that began their term on April 24, 1902?",
    "question_th": "วันเกิดของสมาชิกสภาผู้แทนราษฎรแห่งสหรัฐอเมริกาซึ่งเริ่มดำรงตำแหน่งในวันที่ 24 เมษายน พ.ศ. 2445 คือวันที่เท่าไร",
    "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_en": "Which member of the United States House of Representatives began their term on January 4, 1997?",
    "question_th": "สมาชิกสภาผู้แทนราษฎรแห่งสหรัฐอเมริกาคนใดเริ่มดำรงตำแหน่งเมื่อวันที่ 4 มกราคม พ.ศ. 2540",
    "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_en": "Which state did Samuel Thatcher of the Federalist party represent?",
    "question_th": "Samuel Thatcher จากพรรค Federalist เป็นตัวแทนรัฐใด",
    "context": "CREATE TABLE table_name_27 (state_served VARCHAR, party VARCHAR, representative VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_93 WHERE player = \"hedo türkoğlu\"",
    "question_en": "What position does Hedo Türkoğlu play?",
    "question_th": "Hedo Türkoğluเล่นตำแหน่งใด?",
    "context": "CREATE TABLE table_name_93 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT years_in_toronto FROM table_name_83 WHERE player = \"sebastian telfair\"",
    "question_en": "How long has Sebastian Telfair played for Toronto?",
    "question_th": "Sebastian Telfair เล่นให้กับโตรอนโตนานแค่ไหน?",
    "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_en": "Tell me the title for japan august 23, 2012",
    "question_th": "บอกชื่อเรื่องของญี่ปุ่น 23 สิงหาคม 2555 หน่อยสิ",
    "context": "CREATE TABLE table_name_30 (title VARCHAR, japan VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_57 WHERE japan = \"august 23, 2012\"",
    "question_en": "Tell me the title for japan august 23, 2012",
    "question_th": "บอกชื่อเรื่องของญี่ปุ่น 23 สิงหาคม 2555 หน่อยสิ",
    "context": "CREATE TABLE table_name_57 (title VARCHAR, japan VARCHAR)"
  },
  {
    "answer": "SELECT australia FROM table_name_84 WHERE japan = \"march 17, 2005\"",
    "question_en": "Tell me the Australia march 17, 2005",
    "question_th": "บอกฉันทีออสเตรเลีย 17 มีนาคม 2548",
    "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_en": "Tell me the Europe for z.h.p. unlosing ranger vs darkdeath evilman",
    "question_th": "บอกยุโรปสำหรับ zhp 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_en": "Name the total losses for 4 place and ties less than 0",
    "question_th": "ตั้งชื่อผลแพ้รวมสำหรับอันดับ 4 และเสมอกันน้อยกว่า 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_en": "Name the average place for ties less than 1 and losess more than 3 with points of 6 qc",
    "question_th": "ตั้งชื่ออันดับเฉลี่ยสำหรับเสมอกันน้อยกว่า 1 และแพ้มากกว่า 3 ด้วยคะแนน 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_en": "Name the most wins for losses more than 2 and points of two with place larger than 7",
    "question_th": "ตั้งชื่อชัยชนะมากที่สุดสำหรับการแพ้มากกว่า 2 และแต้มของสองที่มีอันดับที่มากกว่า 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_en": "Name the sum of place with ties larger than 0 and point sof 7 qc and losses more than 2",
    "question_th": "ตั้งชื่อผลรวมของตำแหน่งที่เสมอกันมากกว่า 0 และจุด so 7 qc และขาดทุนมากกว่า 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_en": "Tell me the number range for 4vip",
    "question_th": "บอกช่วงหมายเลขสำหรับ 4vip หน่อยสิ",
    "context": "CREATE TABLE table_name_36 (no_range VARCHAR, type VARCHAR)"
  },
  {
    "answer": "SELECT heat_rank FROM table_name_22 WHERE country = \"senegal\"",
    "question_en": "Name the heat rank for senegal",
    "question_th": "ตั้งชื่ออันดับความร้อนสำหรับเซเนกัล",
    "context": "CREATE TABLE table_name_22 (heat_rank VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT 2010 FROM table_name_95 WHERE 2012 = \"q2\"",
    "question_en": "What is the value for 2010 when the 2012 value is Q2?",
    "question_th": "ค่าสำหรับปี 2010 เมื่อค่าปี 2012 คือ Q2 จะเป็นเท่าใด",
    "context": "CREATE TABLE table_name_95 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2010 FROM table_name_59 WHERE 2006 = \"a\" AND 2009 = \"1r\"",
    "question_en": "What is the value for 2010 when the value for 2006 is A and the value for 2009 is 1R?",
    "question_th": "ค่าสำหรับปี 2010 เป็นเท่าใดเมื่อค่าสำหรับปี 2549 เป็น A และค่าสำหรับปี 2552 คือ 1R",
    "context": "CREATE TABLE table_name_59 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2012 FROM table_name_51 WHERE 2009 = \"1r\" AND 2007 = \"2r\"",
    "question_en": "What is the value for 2012 when the value for 2009 is 1R and the vale for 2007 is 2R?",
    "question_th": "ค่าสำหรับปี 2555 จะเป็นเท่าใดเมื่อค่าสำหรับปี 2552 คือ 1R และค่าเวลสำหรับปี 2550 คือ 2R",
    "context": "CREATE TABLE table_name_51 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2008 FROM table_name_84 WHERE tournament = \"us open\"",
    "question_en": "What is the value for 2008 for the US Open Tournament?",
    "question_th": "มูลค่าปี 2008 สำหรับ US Open Tournament เป็นเท่าใด",
    "context": "CREATE TABLE table_name_84 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2009 FROM table_name_87 WHERE 2011 = \"138\"",
    "question_en": "What is the value for 2009 when the value for 2011 is 138?",
    "question_th": "ค่าสำหรับปี 2552 เป็นเท่าใดเมื่อค่าสำหรับปี 2554 คือ 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_en": "Tell me the highest series # for september 22, 1976",
    "question_th": "บอกซีรีส์สูงสุด #ประจำวันที่ 22 กันยายน 2519",
    "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×h×d__mm_ = \"115.5×83.7×102.5\"",
    "question_en": "What is the screen size and pixel value when the dimensions are 115.5×83.7×102.5?",
    "question_th": "ขนาดหน้าจอและค่าพิกเซลเป็นเท่าใดเมื่อมีขนาด 115.5×83.7×102.5?",
    "context": "CREATE TABLE table_name_7 (screen_size VARCHAR, pixels VARCHAR, dimensions_w×h×d__mm_ VARCHAR)"
  },
  {
    "answer": "SELECT screen_size, pixels FROM table_name_28 WHERE dimensions_w×h×d__mm_ = \"98×64.5×41\" AND model = \"p5000\"",
    "question_en": "What is the screen size and pixel amount of model p5000 when the dimensions are 98×64.5×41?",
    "question_th": "ขนาดหน้าจอและจำนวนพิกเซลของรุ่น p5000 เมื่อมีขนาด 98×64.5×41 คือเท่าไร?",
    "context": "CREATE TABLE table_name_28 (screen_size VARCHAR, pixels VARCHAR, dimensions_w×h×d__mm_ VARCHAR, model VARCHAR)"
  },
  {
    "answer": "SELECT championship_game FROM table_name_29 WHERE conference = \"big eight\"",
    "question_en": "Tell me the championship game for big eight",
    "question_th": "บอกฉันเกี่ยวกับเกมชิงแชมป์บิ๊กแปด",
    "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_en": "Name the lowest total for rank of 13 with bronze less than 1",
    "question_th": "ตั้งชื่อผลรวมต่ำสุดสำหรับอันดับ 13 โดยมีทองแดงน้อยกว่า 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_en": "Tell me the sum of original week for september 16, 1982",
    "question_th": "บอกผลรวมของสัปดาห์เดิมของวันที่ 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_en": "Tell me the average original week for soldier field",
    "question_th": "บอกฉันสัปดาห์เดิมโดยเฉลี่ยสำหรับสนามทหาร",
    "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–22\"",
    "question_en": "Tell me the date for original week less than 16 and result of l 23–22",
    "question_th": "บอกวันที่ของสัปดาห์เดิมที่น้อยกว่า 16 และผลลัพธ์ของ l 23–22 ให้ฉันหน่อย",
    "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_en": "Tell me the call sign for frequency of 0 97.3 fm",
    "question_th": "บอกสัญญาณเรียกขานความถี่ 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_en": "Tell me the owner for classical",
    "question_th": "บอกเจ้าของคลาสสิคครับ",
    "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_en": "Tell me the city of license for 0 106.9 fm",
    "question_th": "บอกเมืองที่อนุญาต 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_en": "What year(s) did Hakeem Olajuwon play Center for Toronto?",
    "question_th": "Hakeem Olajuwon เล่นเซ็นเตอร์ให้กับโตรอนโตในปีใด",
    "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_en": "What position did Jimmy Oliver of the United States play?",
    "question_th": "Jimmy Oliver จากสหรัฐอเมริกาเล่นตำแหน่งใด",
    "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_en": "Tell me the total number of crest length for year construction larger than 1957 for mattmark",
    "question_th": "บอกจำนวนความยาวหงอนทั้งหมดสำหรับการก่อสร้างปีที่มากกว่าปี 1957 สำหรับ 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__˚c_ = \"98.4\"",
    "question_en": "Tell me the % of wt 2nd for bp 3rd comp of 98.4",
    "question_th": "บอก % ของน้ำหนักตัวที่ 2 สำหรับคอมพ์ตัวที่ 3 ของ bp ของ 98.4 ให้ฉันหน่อย",
    "context": "CREATE TABLE table_name_77 (_percentage_wt_2nd VARCHAR, bp_3rd_comp__˚c_ VARCHAR)"
  },
  {
    "answer": "SELECT 3 AS rd_component FROM table_name_49 WHERE bp_azeo__˚c_ = \"62.1\"",
    "question_en": "Tell me the 3rd component for bp azeo of 62.1",
    "question_th": "บอกองค์ประกอบที่ 3 ของ bp azeo ของ 62.1 หน่อยสิ",
    "context": "CREATE TABLE table_name_49 (bp_azeo__˚c_ VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_64 WHERE county = \"sør-trøndelag\"",
    "question_en": "Tell me the name with sør-trøndelag",
    "question_th": "บอกชื่อด้วย sør-trøndelag",
    "context": "CREATE TABLE table_name_64 (name VARCHAR, county VARCHAR)"
  },
  {
    "answer": "SELECT elevation FROM table_name_20 WHERE county = \"oslo\"",
    "question_en": "Tell me the elevation for oslo",
    "question_th": "บอกระดับความสูงของออสโลมาหน่อยสิ",
    "context": "CREATE TABLE table_name_20 (elevation VARCHAR, county VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_46 WHERE opponent = \"pat lawlor\"",
    "question_en": "What was the result of the match against Pat Lawlor?",
    "question_th": "ผลการแข่งขันกับ แพท ลอว์เลอร์ เป็นอย่างไร?",
    "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_en": "Tell me the sum of cars per set for operator of london midland",
    "question_th": "บอกผลรวมของรถยนต์ต่อชุดสำหรับผู้ให้บริการลอนดอนมิดแลนด์",
    "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_en": "Tell me the title of japan january 31, 2008",
    "question_th": "บอกชื่อเรื่องของญี่ปุ่น 31 มกราคม 2551 หน่อยสิ",
    "context": "CREATE TABLE table_name_74 (title VARCHAR, japan VARCHAR)"
  },
  {
    "answer": "SELECT japan FROM table_name_14 WHERE title = \"jigsaw land: japan graffiti\"",
    "question_en": "Tell me japan for jigsaw land: japan graffiti",
    "question_th": "บอกฉันหน่อยว่าดินแดนแห่งจิ๊กซอว์ของญี่ปุ่น: กราฟฟิตี้ญี่ปุ่น",
    "context": "CREATE TABLE table_name_14 (japan VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT north_america FROM table_name_83 WHERE japan = \"january 23, 2013\"",
    "question_en": "Tell me north america for january 23, 2013",
    "question_th": "บอกฉันอเมริกาเหนือสำหรับวันที่ 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_en": "Tell me the north america for september 18, 2009",
    "question_th": "บอกอเมริกาเหนือวันที่ 18 กันยายน 2552 หน่อยสิ",
    "context": "CREATE TABLE table_name_64 (north_america VARCHAR, europe VARCHAR)"
  },
  {
    "answer": "SELECT europe FROM table_name_72 WHERE japan = \"january 28, 2010\"",
    "question_en": "Tell me europe for japan of january 28, 2010",
    "question_th": "บอกฉันยุโรปสำหรับญี่ปุ่นวันที่ 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_en": "Tell me the north america for phantom brave",
    "question_th": "บอกฉันเกี่ยวกับอเมริกาเหนือสำหรับ 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_en": "What is the average played value in Belgrade with attendance greater than 26,222?",
    "question_th": "มูลค่าการเล่นโดยเฉลี่ยในเบลเกรดที่มีผู้เข้าชมมากกว่า 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_en": "Tell me the role of festival theatre",
    "question_th": "บอกบทบาทของละครเทศกาล",
    "context": "CREATE TABLE table_name_35 (role VARCHAR, theatre VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_name_72 WHERE theatre = \"shubert theatre\"",
    "question_en": "Tell me the lowest year for shubert theatre",
    "question_th": "บอกฉันว่าปีต่ำสุดสำหรับโรงละครชูเบิร์ต",
    "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_en": "Tell me the total number of years for lady cecily waynflete and opera house, kennedy center",
    "question_th": "ขอทราบจำนวนปีของเลดี้เซซิลี เวย์นฟลีต และโรงละครโอเปร่า เคนเนดี เซ็นเตอร์หน่อย",
    "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_en": "Tell me the role for tea and sympathy",
    "question_th": "บอกบทบาทชาและความเห็นอกเห็นใจ",
    "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_en": "When was the first beatification in Korea that was canonised before 1984?",
    "question_th": "เมื่อใดที่การแต่งตั้งเป็นบุญราศีครั้งแรกในเกาหลีที่ได้รับการยกย่องก่อนปี 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_en": "When was Laurent-Marie-Joseph Imbert / St. Imbert, who was beatified after 1909 and canonised after 1984, martyred?",
    "question_th": "เมื่อใดคือ Laurent-Marie-Joseph Imbert / St. Imbert ผู้ซึ่งได้รับแต่งตั้งเป็นบุญราศีหลังปี 1909 และได้รับแต่งตั้งเป็นนักบุญหลังปี 1984 เป็นมรณสักขี?",
    "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_en": "When was the person(s) who were canonised before 1988 beatified?",
    "question_th": "เมื่อใดที่บุคคลที่ได้รับการแต่งตั้งเป็นนักบุญก่อนปี 1988 เป็นบุญราศี?",
    "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_en": "When was John Hoan Trinh Doan / St. John Hoan, who was beatified in 1909 and canonised after 1988, martyred?",
    "question_th": "เมื่อใดคือ John Hoan Trinh Doan / St. John Hoan ผู้ซึ่งได้รับแต่งตั้งเป็นบุญราศีในปี 1909 และได้รับแต่งตั้งเป็นนักบุญหลังปี 1988 เป็นมรณสักขี?",
    "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_en": "What is the sum of year with the local host Sai?",
    "question_th": "ผลรวมของปีกับเจ้าถิ่นไทรคือเท่าไร?",
    "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_en": "Who are the local hosts for the United States in years earlier than 2007?",
    "question_th": "ใครคือเจ้าภาพท้องถิ่นของสหรัฐอเมริกาในปีก่อนหน้าปี 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_en": "Which city has a conference of LCC2 and a year earlier than 2009?",
    "question_th": "เมืองใดมีการประชุม LCC2 และหนึ่งปีก่อนหน้าปี 2552",
    "context": "CREATE TABLE table_name_70 (city VARCHAR, year VARCHAR, conference VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_name_12 WHERE rank = \"89th\"",
    "question_en": "Tell me the class with rank of 89th",
    "question_th": "บอกคลาสที่มีอันดับ 89 หน่อยสิ",
    "context": "CREATE TABLE table_name_12 (class VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT MAX(year) FROM table_name_30 WHERE points = 3",
    "question_en": "Tell me the most year for 3 points",
    "question_th": "บอกปีมากที่สุดให้ 3 คะแนน",
    "context": "CREATE TABLE table_name_30 (year INTEGER, points VARCHAR)"
  },
  {
    "answer": "SELECT lane FROM table_name_37 WHERE swimmer = \"goksu bicer\"",
    "question_en": "Which lane is Goksu Bicer in?",
    "question_th": "Goksu Bicer อยู่ในเลนไหน?",
    "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_en": "Which Driver that has a Grid less than 9 and a Time/Retired of 2:06:26.358?",
    "question_th": "ไดรเวอร์ใดที่มีตารางน้อยกว่า 9 และเวลา/เกษียณอายุ 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_en": "Which driver drove a Ferrari in the 2007 European Grand Prix with a grid less than 3?",
    "question_th": "นักแข่งคนไหนขับรถเฟอร์รารี่ในการแข่งขัน European Grand Prix ปี 2007 โดยมีกริดน้อยกว่า 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_en": "Name the location of ufc 98",
    "question_th": "ตั้งชื่อที่ตั้งของ 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_en": "What is the smallest number of wins for the Totals Tournament with a Top-25 value greater than 3?",
    "question_th": "จำนวนชัยชนะที่น้อยที่สุดสำหรับ Totals Tournament ที่มีมูลค่า 25 อันดับแรกมากกว่า 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_en": "What is the sum of Top-5 values with events values less than 2?",
    "question_th": "ผลรวมของค่า 5 อันดับแรกที่มีค่าเหตุการณ์น้อยกว่า 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_en": "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?",
    "question_th": "ค่าที่น้อยที่สุดสำหรับการชนะเมื่อจำนวนการตัดมากกว่า 4 และค่า Top-5 น้อยกว่า 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_en": "Tell me the competition for 2nd position with year more than 2005",
    "question_th": "แจ้งการแข่งขันชิงตำแหน่งที่ 2 ประจำปี 2548 ขึ้นไปครับ",
    "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_en": "Name the sum of year for 2nd position for junior race",
    "question_th": "ตั้งชื่อผลรวมของปีสำหรับอันดับที่ 2 สำหรับการแข่งขันระดับจูเนียร์",
    "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_en": "Name the venue for 2nd position of year before 2008",
    "question_th": "ตั้งชื่อสถานที่เป็นตำแหน่งที่ 2 ของปีก่อนปี 2551",
    "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_en": "Which circuit did Raymond Mays win?",
    "question_th": "Raymond Mays ชนะการแข่งขันรอบใด",
    "context": "CREATE TABLE table_name_17 (circuit VARCHAR, winning_driver VARCHAR)"
  },
  {
    "answer": "SELECT circuit FROM table_name_3 WHERE winning_driver = \"johnny wakefield\"",
    "question_en": "Which Circuit did Johnny Wakefield win?",
    "question_th": "Johnny Wakefield ชนะสนามไหน?",
    "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_en": "Tell me the lowest bronze for panama and total larger than 8",
    "question_th": "บอกทองแดงต่ำสุดสำหรับปานามาและรวมกันมากกว่า 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_en": "Tell me the average total for guatemala and bronze less than 2",
    "question_th": "บอกผลรวมเฉลี่ยของกัวเตมาลาและทองแดงที่น้อยกว่า 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_en": "Tell me the number of bronze for silver of 0 and total less than 1",
    "question_th": "บอกจำนวนทองแดงสำหรับเงิน 0 และรวมน้อยกว่า 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_en": "Tell me the sum of total for rank of 1",
    "question_th": "บอกผลรวมของอันดับ 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_en": "Tell me the total number for costa rica and rank more than 8",
    "question_th": "บอกจำนวนรวมของคอสตาริกาและอันดับมากกว่า 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_en": "What years did Tymerlan Huseynov, whose average is larger than 0.361, play?",
    "question_th": "Tymerlan Huseynov ซึ่งมีค่าเฉลี่ยมากกว่า 0.361 เล่นกี่ปี?",
    "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_en": "Who scored more than 8 goals, had more than 75 caps, and averaged 0.432?",
    "question_th": "ใครยิงได้มากกว่า 8 ประตู เกิน 75 แคป เฉลี่ย 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_en": "What is the sum of the averages when there are 68 caps and less than 9 goals?",
    "question_th": "ผลรวมของค่าเฉลี่ยเมื่อมี 68 แคปแต่น้อยกว่า 9 ประตูเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_16 (average INTEGER, caps VARCHAR, goals VARCHAR)"
  },
  {
    "answer": "SELECT 1968 FROM table_name_76 WHERE 1967 = \"1r\"",
    "question_en": "Tell me the 1968 for 1r",
    "question_th": "บอกฉันปี 1968 สำหรับ 1r",
    "context": "CREATE TABLE table_name_76 (Id VARCHAR)"
  },
  {
    "answer": "SELECT round_of_32 FROM table_name_62 WHERE conference = \"southland\"",
    "question_en": "Tell me the round of 32 for conference of southland",
    "question_th": "แจ้งรอบ 32 รอบ 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_en": "Tell me the lowest # of bids for win percent of .667",
    "question_th": "บอกจำนวนการเสนอราคาต่ำสุดสำหรับเปอร์เซ็นต์การชนะที่ .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_en": "Tell me the sum of cap/hor for double chair and vertical less than 479",
    "question_th": "บอกผลรวมฝา/ฮอสำหรับเก้าอี้คู่และแนวตั้งน้อยกว่า 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_en": "What's the compression ratio when the vin code is c?",
    "question_th": "อัตราส่วนการบีบอัดเมื่อรหัส vin เป็น c คืออะไร?",
    "context": "CREATE TABLE table_name_38 (vin_code VARCHAR)"
  },
  {
    "answer": "SELECT SUM(year) FROM table_name_31 WHERE extra = \"junior team competition\"",
    "question_en": "Tell me the sum of year for extra of junior team competition",
    "question_th": "บอกผลรวมของปีสำหรับการแข่งขันทีมจูเนียร์เพิ่มเติม",
    "context": "CREATE TABLE table_name_31 (year INTEGER, extra VARCHAR)"
  },
  {
    "answer": "SELECT lens_35mmequiv__zoom, _aperture FROM table_name_39 WHERE model = \"s2600\"",
    "question_en": "Tell me the lens zoom for aperture of model s2600",
    "question_th": "ช่วยบอกเลนส์ซูมรูรับแสงของรุ่น 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_en": "Tell me the screen size for pixels of model s6400",
    "question_th": "บอกขนาดหน้าจอสำหรับพิกเซลของรุ่น 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_en": "Name the sensor res for model of s9200",
    "question_th": "ตั้งชื่อความละเอียดเซ็นเซอร์สำหรับรุ่น 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_en": "Tell me the nation for bronze more than 0 and total more than 8 with gold of 4",
    "question_th": "บอกชาติให้ทองแดงมากกว่า 0 และรวมมากกว่า 8 ด้วยทองคำ 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_en": "Who is Team Suzuki's rider and ranks higher than 6?",
    "question_th": "ใครคือนักแข่งของทีม Suzuki และอันดับสูงกว่า 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_en": "Who was the lowest division in the 7th season?",
    "question_th": "ใครคือดิวิชั่นต่ำสุดในฤดูกาลที่ 7?",
    "context": "CREATE TABLE table_name_11 (division INTEGER, reg_season VARCHAR)"
  },
  {
    "answer": "SELECT playoffs FROM table_name_27 WHERE year = \"1924/25\"",
    "question_en": "In 1924/25, who was in the playoffs?",
    "question_th": "ฤดูกาล 1924/25 ใครเข้ารอบตัดเชือก?",
    "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_en": "Which division has no playoff but has a 12th game in their season?",
    "question_th": "ดิวิชั่นใดไม่มีเพลย์ออฟแต่มีเกมที่ 12 ในฤดูกาลนี้?",
    "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_en": "What was the venue of the competition that held the 1st position in 2011?",
    "question_th": "สถานที่จัดการแข่งขันซึ่งครองตำแหน่งที่ 1 ในปี 2554 คือสถานที่ใด",
    "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_en": "What was the position of the Olympic Games in the year 2008?",
    "question_th": "การแข่งขันกีฬาโอลิมปิกปี 2551 อยู่ในตำแหน่งใด",
    "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_en": "Which competition held the 1st position in 2009?",
    "question_th": "การแข่งขันใดครองตำแหน่งที่ 1 ในปี 2552",
    "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_en": "Which venue did the African Championships have after 2006 with a position of 2nd and 3000 m s'chase in notes?",
    "question_th": "การแข่งขันชิงแชมป์แอฟริกันมีสถานที่ใดหลังจากปี 2549 โดยมีตำแหน่งที่ 2 และ 3,000 ม. ในบันทึก?",
    "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_en": "Tell me the label for US region and catalog of 10008-2",
    "question_th": "บอกฉลากสำหรับภูมิภาคสหรัฐอเมริกาและแค็ตตาล็อก 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_en": "Tell me the date for format of cd/dvd",
    "question_th": "แจ้งวันที่สำหรับรูปแบบซีดี/ดีวีดี",
    "context": "CREATE TABLE table_name_88 (date VARCHAR, format VARCHAR)"
  },
  {
    "answer": "SELECT format FROM table_name_99 WHERE region = \"european union\"",
    "question_en": "Tell me the format for european union",
    "question_th": "บอกรูปแบบของสหภาพยุโรป",
    "context": "CREATE TABLE table_name_99 (format VARCHAR, region VARCHAR)"
  },
  {
    "answer": "SELECT catalog FROM table_name_72 WHERE date > 2004",
    "question_en": "Tell me the catalog for date larger than 2004",
    "question_th": "บอกแคตตาล็อกสำหรับวันที่ที่ใหญ่กว่าปี 2004 ให้ฉันหน่อย",
    "context": "CREATE TABLE table_name_72 (catalog VARCHAR, date INTEGER)"
  },
  {
    "answer": "SELECT MIN(date) FROM table_name_87 WHERE catalog = \"6561910008-1\"",
    "question_en": "I want the lowest date for catalog of 6561910008-1",
    "question_th": "ฉันต้องการวันที่ต่ำสุดสำหรับแค็ตตาล็อก 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_en": "What date was there a crowd larger than 30,343?",
    "question_th": "มีฝูงชนมากกว่า 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_en": "What was the lowest Crowd total from a game in which Essendon was the Away team?",
    "question_th": "จำนวนฝูงชนรวมที่ต่ำที่สุดจากเกมที่เอสเซนดอนเป็นทีมเยือนคือเท่าใด",
    "context": "CREATE TABLE table_name_35 (crowd INTEGER, away_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_47 WHERE home_team = \"geelong\"",
    "question_en": "Which Venue was used when the Home team was geelong?",
    "question_th": "สถานที่ใดถูกใช้เมื่อทีมเหย้าอยู่ในจีลอง?",
    "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_en": "What is the highest scored in the 2010 east asian football championship?",
    "question_th": "คะแนนสูงสุดในการแข่งขันฟุตบอลชิงแชมป์เอเชียตะวันออก 2010 คืออะไร?",
    "context": "CREATE TABLE table_name_66 (scored INTEGER, competition VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_48 WHERE city = \"wellington\"",
    "question_en": "Which country is Wellington located in?",
    "question_th": "เวลลิงตันตั้งอยู่ในประเทศใด",
    "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_en": "What label is in download format in the United States?",
    "question_th": "ป้ายกำกับใดอยู่ในรูปแบบการดาวน์โหลดในสหรัฐอเมริกา",
    "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_en": "What label is in download format in the United States?",
    "question_th": "ป้ายกำกับใดอยู่ในรูปแบบการดาวน์โหลดในสหรัฐอเมริกา",
    "context": "CREATE TABLE table_name_88 (label VARCHAR, region VARCHAR, format VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_90 WHERE catalogue = \"rtradlp 346\"",
    "question_en": "What label has RTRADLP 346 as catalogue?",
    "question_th": "ป้ายใดมี RTRADLP 346 เป็นแค็ตตาล็อก",
    "context": "CREATE TABLE table_name_90 (label VARCHAR, catalogue VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_8 WHERE date = \"22 january 2008\"",
    "question_en": "What label has 22 January 2008 date?",
    "question_th": "ป้ายกำกับใดมีวันที่ 22 มกราคม 2551",
    "context": "CREATE TABLE table_name_8 (label VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_93 WHERE catalogue = \"rt-346-5\"",
    "question_en": "What is the label for catalogue of RT-346-5?",
    "question_th": "ฉลากแค็ตตาล็อกของ 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_en": "What position is mentioned for Rice school?",
    "question_th": "โรงเรียนไรซ์กล่าวถึงตำแหน่งใด",
    "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_en": "What is the average round for Wisconsin when the overall is larger than 238 and there is a defensive end?",
    "question_th": "รอบเฉลี่ยของวิสคอนซินคือเท่าไรเมื่อผลรวมมากกว่า 238 และมีแนวรับ?",
    "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_en": "What is the average round when there is a defensive back and an overall smaller than 199?",
    "question_th": "รอบเฉลี่ยคือเท่าไรเมื่อมีกองหลังและรวมน้อยกว่า 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_en": "What was the date of game with a score of 42-6?",
    "question_th": "เกมวันที่เท่าไหร่ด้วยสกอร์ 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_en": "What stadium was the game played at when the result was hunter mariners def. sheffield eagles?",
    "question_th": "เกมที่เล่นในสนามใดเมื่อผลการแข่งขันคือฮันเตอร์กะลาสี เชฟฟิลด์ อีเกิลส์?",
    "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_en": "What city has a Result of brisbane broncos def. halifax blue sox?",
    "question_th": "เมืองใดมีผลการแข่งขัน brisbane broncos def. ฮาลิแฟกซ์ บลูซ็อกซ์?",
    "context": "CREATE TABLE table_name_22 (city VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_83 WHERE round > 9 AND overall = 464",
    "question_en": "Which player was drafted after round 9 and number 464 overall?",
    "question_th": "ผู้เล่นคนไหนที่ถูกดราฟต์หลังจากรอบที่ 9 และหมายเลข 464 โดยรวม?",
    "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_en": "What was James Reed's draft round number?",
    "question_th": "หมายเลขดราฟต์ของ James Reed คืออะไร",
    "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_en": "What was the overall draft number of Tom Fleming, a wide receiver?",
    "question_th": "หมายเลขร่างโดยรวมของ Tom Fleming ซึ่งเป็นตัวรับกว้างคือเท่าไร?",
    "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_en": "Which player is from Dartmouth?",
    "question_th": "นักเตะคนไหนมาจากดาร์ทเมาท์?",
    "context": "CREATE TABLE table_name_41 (player VARCHAR, school_club_team VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_17 WHERE school_country = \"tulsa\"",
    "question_en": "What position does the player from tulsa play?",
    "question_th": "นักเตะจากทัลซ่าเล่นตำแหน่งอะไร?",
    "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_en": "What is the sum of Magnitude on february 12, 1953?",
    "question_th": "ผลรวมของขนาดในวันที่ 12 กุมภาพันธ์ พ.ศ. 2496 เป็นเท่าใด",
    "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_en": "What was the final score of a baseball game that happened before 2005?",
    "question_th": "คะแนนสุดท้ายของเกมเบสบอลที่เกิดขึ้นก่อนปี 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_en": "What venue did Richmond play as the away team?",
    "question_th": "ริชมอนด์เล่นเป็นทีมเยือนที่สนามใด?",
    "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_en": "What is the team of Essendon's score in the game where they were the home team?",
    "question_th": "ทีมเอสเซนดอนมีสกอร์ในเกมไหนเป็นเจ้าบ้าน?",
    "context": "CREATE TABLE table_name_92 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_59 WHERE home_team = \"st kilda\"",
    "question_en": "Who is the away side when st kilda is the home side?",
    "question_th": "ใครเป็นทีมเยือน เมื่อเซนต์คิลดาเป็นเจ้าบ้าน?",
    "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_en": "What is the away side score when footscray is the home side?",
    "question_th": "สกอร์ฝั่งทีมเยือนเมื่อฟุตสเครย์เป็นเจ้าบ้านเป็นเท่าไหร่?",
    "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_en": "What is the home team's score at kardinia park?",
    "question_th": "สกอร์ของเจ้าบ้านที่คาร์ดิเนีย พาร์ค คืออะไร?",
    "context": "CREATE TABLE table_name_85 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT MIN(crowd) FROM table_name_57 WHERE away_team = \"richmond\"",
    "question_en": "What was the lowest crowd seen at a game that Richmond was the Away team in?",
    "question_th": "จำนวนผู้ชมที่น้อยที่สุดในเกมที่ริชมอนด์เป็นทีมเยือนคือเท่าใด",
    "context": "CREATE TABLE table_name_57 (crowd INTEGER, away_team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(crowd) FROM table_name_48 WHERE venue = \"windy hill\"",
    "question_en": "What was the highest crowd count seen in the Windy Hill venue?",
    "question_th": "จำนวนฝูงชนสูงสุดที่เห็นในสถานที่ Windy Hill คืออะไร?",
    "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_en": "What was the score of the Away team that played against the Home team of Fitzroy?",
    "question_th": "ทีมเยือนที่เจอกับทีมเหย้าฟิตซ์รอยได้สกอร์เท่าไหร่?",
    "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_en": "Which was the lowest overall that Wisconsin's team managed?",
    "question_th": "ทีมวิสคอนซินทำได้โดยรวมต่ำที่สุด?",
    "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_en": "Which team was Roy de Walt a player on?",
    "question_th": "รอย เดอ วอลต์เป็นผู้เล่นทีมใด",
    "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_en": "In which round did Paul McDonald have an overall greater than 109?",
    "question_th": "Paul McDonald มีคะแนนรวมมากกว่า 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_en": "What is the total overall in round 1, in which Charles White was a player?",
    "question_th": "ผลรวมในรอบที่ 1 ที่ชาร์ลส ไวท์เป็นผู้เล่นเป็นเท่าใด",
    "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_en": "What is the name of a running back in a round before round 3?",
    "question_th": "การวิ่งกลับในรอบก่อนรอบ 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_en": "What is the win/loss percentage with wins of 63 and losses smaller than 76?",
    "question_th": "เปอร์เซ็นต์การชนะ/แพ้ที่ชนะ 63 และแพ้น้อยกว่า 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_en": "What is the away team score when the home team is Geelong?",
    "question_th": "สกอร์ทีมเยือนเมื่อเจ้าบ้านคือจีลองเป็นเท่าไหร่?",
    "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_en": "What was the highest order amount in weeks prier to 15 and a major less than 1?",
    "question_th": "จำนวนคำสั่งซื้อสูงสุดในสัปดาห์ก่อนถึง 15 สัปดาห์และรายการหลักน้อยกว่า 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_en": "What is the position of the player from Temple?",
    "question_th": "ตำแหน่งผู้เล่นจาก Temple คืออะไร?",
    "context": "CREATE TABLE table_name_7 (position VARCHAR, school_country VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_22 WHERE school_country = \"temple\"",
    "question_en": "Which player is associated with Temple?",
    "question_th": "ผู้เล่นคนไหนที่เกี่ยวข้องกับ Temple?",
    "context": "CREATE TABLE table_name_22 (player VARCHAR, school_country VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_72 WHERE school_country = \"temple\"",
    "question_en": "Which nationality is associated with Temple?",
    "question_th": "เชื้อชาติใดเกี่ยวข้องกับวัด?",
    "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_en": "How many goals were achieved when Chievo was the club and the debut year was before 2002?",
    "question_th": "คิเอโว่เป็นสโมสรทำได้กี่ประตูและเปิดตัวก่อนปี 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_en": "How many goals occurred with Diego Milito in a debut year later than 2008?",
    "question_th": "มีกี่ประตูที่เกิดขึ้นกับดิเอโก มิลิโต้ในปีเปิดตัวหลังปี 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_en": "Who is the home team at the Punt Road Oval?",
    "question_th": "ทีมเหย้าที่พันท์ โร้ด โอวัลคือใคร?",
    "context": "CREATE TABLE table_name_99 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_69 WHERE venue = \"windy hill\"",
    "question_en": "Who is the away team at Windy Hill?",
    "question_th": "ทีมเยือนวินดี้ฮิลล์คือใคร?",
    "context": "CREATE TABLE table_name_69 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_3 WHERE crowd > 25 OFFSET 000",
    "question_en": "What is the date of the game that had a crowd larger than 25,000?",
    "question_th": "เกมที่มีคนดูเกิน 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_en": "What was South Melbourne's score as the home team?",
    "question_th": "เซาธ์ เมลเบิร์น ของเจ้าบ้านมีสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_19 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(crowd) FROM table_name_52 WHERE away_team = \"collingwood\"",
    "question_en": "What was the largest crowd of a game where Collingwood was the away team?",
    "question_th": "อะไรคือกลุ่มผู้ชมที่ใหญ่ที่สุดในเกมที่คอลลิงวูดเป็นทีมเยือน?",
    "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_en": "What's the lowest round with the opponent John Howard that had a method of Decision (unanimous)?",
    "question_th": "รอบต่ำสุดของคู่ต่อสู้ จอห์น ฮาวเวิร์ด ที่มีวิธีการตัดสิน (เป็นเอกฉันท์) คืออะไร?",
    "context": "CREATE TABLE table_name_21 (round INTEGER, method VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_74 WHERE record = \"2-0\"",
    "question_en": "What's the time for the match with a record of 2-0?",
    "question_th": "แมตช์ด้วยสกอร์ 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_en": "Where was the match with a method of submission (standing guillotine choke)?",
    "question_th": "นัดไหนมีวิธีซับมิชชั่น (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_en": "What language is the moviein that is on UMP movies network through Sky service?",
    "question_th": "ภาพยนตร์ที่อยู่ในเครือข่ายภาพยนตร์ UMP ผ่านบริการ Sky คือภาษาใด",
    "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_en": "What language is the movie in that is on SAB network through Sky service?",
    "question_th": "ภาพยนตร์ในภาษาใดที่อยู่ในเครือข่าย SAB ผ่านบริการ Sky?",
    "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_en": "What was the overall pick for the player who was a guard and had a round less than 9?",
    "question_th": "อะไรคือตัวเลือกโดยรวมสำหรับผู้เล่นที่เป็นการ์ดและมีรอบน้อยกว่า 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_en": "What was the lowest round number that had an overall pick up 92?",
    "question_th": "หมายเลขรอบต่ำสุดที่มีแต้มรวม 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_en": "What open source movie has a CC License of by-nc-sa 1.0?",
    "question_th": "ภาพยนตร์โอเพ่นซอร์สเรื่องใดที่มีใบอนุญาต CC ของ 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_en": "Which venue had the result 7-1?",
    "question_th": "สนามไหนผลสกอร์ 7-1?",
    "context": "CREATE TABLE table_name_50 (venue VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_67 WHERE competition = \"rothmans cup\"",
    "question_en": "What date was the Competition of rothmans cup?",
    "question_th": "การแข่งขัน Rothmans Cup จัดขึ้นวันไหน?",
    "context": "CREATE TABLE table_name_67 (date VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_61 WHERE competition = \"friendly\"",
    "question_en": "What was the result of the Competition of friendly?",
    "question_th": "ผลการแข่งขันกระชับมิตรเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_61 (result VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_90 WHERE date = \"8 june 2005\"",
    "question_en": "Which competition was played on 8 June 2005?",
    "question_th": "การแข่งขันใดที่เล่นในวันที่ 8 มิถุนายน พ.ศ. 2548?",
    "context": "CREATE TABLE table_name_90 (competition VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_4 WHERE score = \"1-0\"",
    "question_en": "Which competition had the score 1-0?",
    "question_th": "การแข่งขันใดมีสกอร์ 1-0?",
    "context": "CREATE TABLE table_name_4 (competition VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_32 WHERE stadium = \"timsah arena\"",
    "question_en": "Timsah arena is in what country?",
    "question_th": "สนาม Timsah อยู่ประเทศอะไรครับ?",
    "context": "CREATE TABLE table_name_32 (country VARCHAR, stadium VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_83 WHERE team = \"relax-gam\"",
    "question_en": "What country is Relax-Gam from?",
    "question_th": "Relax-Gam มาจากประเทศอะไร?",
    "context": "CREATE TABLE table_name_83 (country VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT cyclist FROM table_name_89 WHERE team = \"gerolsteiner\"",
    "question_en": "Who is Gerolsteiner's cyclist?",
    "question_th": "ใครคือนักปั่นจักรยานของ Gerolsteiner",
    "context": "CREATE TABLE table_name_89 (cyclist VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT uci_protour_points FROM table_name_33 WHERE cyclist = \"davide rebellin\"",
    "question_en": "What is Davide Rebellin' UCI ProTour Points?",
    "question_th": "คะแนน Davide Rebellin' UCI ProTour คืออะไร",
    "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_en": "What was North Melbourne's score when they were the home team?",
    "question_th": "นอร์ท เมลเบิร์น สกอร์เมื่อก่อนเป็นเจ้าบ้านเท่าไหร่?",
    "context": "CREATE TABLE table_name_22 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_76 WHERE away_team = \"footscray\"",
    "question_en": "Where did Footscray play as the away team?",
    "question_th": "ฟุตสเครย์ลงเล่นทีมเยือนที่ไหน?",
    "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_en": "What was the away team's score in the match at Lake Oval?",
    "question_th": "คะแนนของทีมเยือนในแมตช์ที่เลคโอวัลคือเท่าไร?",
    "context": "CREATE TABLE table_name_77 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT SUM(crowd) FROM table_name_81 WHERE away_team = \"fitzroy\"",
    "question_en": "What was the sum of the crowds that watched Fitzroy play as the away team?",
    "question_th": "จำนวนผู้ชมที่ดูฟิตซ์รอยเล่นเป็นทีมเยือนเป็นจำนวนเท่าใด?",
    "context": "CREATE TABLE table_name_81 (crowd INTEGER, away_team VARCHAR)"
  },
  {
    "answer": "SELECT SUM(rank) FROM table_name_15 WHERE years = \"1996–2012\" AND apps > 340",
    "question_en": "What is the sum of rank with years  1996–2012 and apps greater than 340?",
    "question_th": "ผลรวมของอันดับในปี 1996–2012 และแอปที่มากกว่า 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_en": "What was the away team that faced Carlton?",
    "question_th": "ทีมเยือนเจอคาร์ลตันคือทีมไหน?",
    "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_en": "What is the total crowd size that saw Geelong play as the away team?",
    "question_th": "ขนาดฝูงชนทั้งหมดที่เห็นจีลองเล่นเป็นทีมเยือนคือเท่าใด?",
    "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_en": "How many wins did Hobbs had a 15th finish at poles 0?",
    "question_th": "ฮอบส์จบอันดับที่ 15 ที่โพล 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_en": "What are the points for the GP3 series with 2 podiums?",
    "question_th": "ซีรีส์ GP3 ที่มี 2 โพเดี้ยมมีคะแนนอะไรบ้าง?",
    "context": "CREATE TABLE table_name_92 (points VARCHAR, series VARCHAR, podiums VARCHAR)"
  },
  {
    "answer": "SELECT races FROM table_name_6 WHERE podiums = \"2\"",
    "question_en": "Which races have #2 podiums?",
    "question_th": "เผ่าพันธุ์ใดมีอันดับ 2 โพเดียม?",
    "context": "CREATE TABLE table_name_6 (races VARCHAR, podiums VARCHAR)"
  },
  {
    "answer": "SELECT final_placing FROM table_name_17 WHERE season = 2009",
    "question_en": "What was the 2009 final placing?",
    "question_th": "ตำแหน่งสุดท้ายในปี 2009 คืออะไร?",
    "context": "CREATE TABLE table_name_17 (final_placing VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_name_34 WHERE races = \"7\"",
    "question_en": "What was the points with 7 races?",
    "question_th": "คะแนนจากการแข่งขัน 7 รายการคืออะไร?",
    "context": "CREATE TABLE table_name_34 (points VARCHAR, races VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_90 WHERE home_team = \"south melbourne\"",
    "question_en": "What venue had south melbourne as the home team?",
    "question_th": "สนามใดมีเซาท์เมลเบิร์นเป็นเจ้าบ้าน?",
    "context": "CREATE TABLE table_name_90 (venue VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_14 WHERE away_team = \"collingwood\"",
    "question_en": "What venue had collingwood as the away team?",
    "question_th": "สนามใดที่มีคอลลิงวูดเป็นทีมเยือน?",
    "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_en": "What was the home team score when south melbourne was the home team?",
    "question_th": "เมื่อเซาธ์เมลเบิร์นเป็นเจ้าบ้านสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_49 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_70 WHERE away_team = \"melbourne\"",
    "question_en": "What day was south melbourne the away squad?",
    "question_th": "เซาธ์ เมลเบิร์น เป็นทีมเยือนวันไหน?",
    "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_en": "What position did he finish after 1998 and a note time of 2:31:40?",
    "question_th": "เขาจบตำแหน่งอะไรหลังจากปี 1998 และทำเวลาได้ 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_en": "What venue featured a notes of 2:38:44?",
    "question_th": "สถานที่ใดมีโน้ต 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–24\"",
    "question_en": "Who did they play against in a week after 6 and the result was l 30–24?",
    "question_th": "พวกเขาเล่นกับใครในหนึ่งสัปดาห์หลังจาก 6 โมงเย็นและผลการแข่งขันคือ 30–24",
    "context": "CREATE TABLE table_name_32 (opponent VARCHAR, week VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_25 WHERE result = \"w 31–0\"",
    "question_en": "What opponent has a Result of w 31–0?",
    "question_th": "คู่ต่อสู้คนใดมีผลการแข่งขัน w 31–0?",
    "context": "CREATE TABLE table_name_25 (opponent VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT MAX(round) FROM table_name_7 WHERE position = \"cornerback\"",
    "question_en": "During which round was the final cornerback drafted for the New England Patriots in 2005?",
    "question_th": "Cornerback สุดท้ายถูกร่างสำหรับ New England Patriots ในปี 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_en": "What dance was Leeza Gibbons the worst dancer for, receiving a score lower than 15?",
    "question_th": "Leeza Gibbons เต้นแบบไหนได้แย่ที่สุดด้วยคะแนนต่ำกว่า 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_en": "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?",
    "question_th": "คะแนนที่แย่ที่สุดสำหรับการเต้นที่มี Apolo Anton Ohno เป็นนักเต้นที่ดีที่สุดคืออะไร และคะแนนที่ดีที่สุดของเขามากกว่า 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_en": "What is the biggest crowd when carlton is the away squad?",
    "question_th": "อะไรคือฝูงชนที่ใหญ่ที่สุดเมื่อคาร์ลตันเป็นทีมเยือน?",
    "context": "CREATE TABLE table_name_48 (crowd INTEGER, away_team VARCHAR)"
  },
  {
    "answer": "SELECT SUM(crowd) FROM table_name_44 WHERE away_team = \"richmond\"",
    "question_en": "What is the sum of crowd(s) when richmond is the away squad?",
    "question_th": "จำนวนผู้ชมเมื่อริชมอนด์เป็นทีมเยือนเป็นเท่าใด?",
    "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_en": "What is the home team's score in the game played at glenferrie oval?",
    "question_th": "คะแนนของเจ้าบ้านในเกมที่เล่นที่ 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_en": "What was the result of the event against Nate Mohr?",
    "question_th": "ผลของเหตุการณ์กับ 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_en": "When the VFL played Junction Oval what was the home team score?",
    "question_th": "ตอนที่ VFL แข่งกับ Junction Oval สกอร์ของเจ้าบ้านเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_45 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT crowd FROM table_name_6 WHERE away_team = \"geelong\"",
    "question_en": "What was away team Geelong's crowd numbers?",
    "question_th": "จำนวนฝูงชนของทีมเยือนจีลองคืออะไร?",
    "context": "CREATE TABLE table_name_6 (crowd VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_10 WHERE away_team = \"fitzroy\"",
    "question_en": "What is the date they played against fitzroy?",
    "question_th": "พวกเขาจะเล่นกับฟิตซ์รอยวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_10 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT SUM(crowd) FROM table_name_56 WHERE venue = \"princes park\"",
    "question_en": "How large was the crowd when they played at princes park?",
    "question_th": "ฝูงชนเล่นที่ 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_en": "Who is the away team at junction oval?",
    "question_th": "ทีมเยือนที่จังก์ชั่นโอวัลคือใคร?",
    "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_en": "What is the away team's score at princes park?",
    "question_th": "สกอร์ทีมเยือนที่ปริ้นซ์ ปาร์คเป็นไงบ้าง?",
    "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_en": "What was the highest percentage of internet users a nation with a 1622% growth in 2000-2008 had?",
    "question_th": "เปอร์เซ็นต์ของผู้ใช้อินเทอร์เน็ตสูงสุดในประเทศที่มีการเติบโต 1622% ในปี 2543-2551 คือเท่าใด",
    "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_en": "Who was the home team when Footscray was the away team?",
    "question_th": "เมื่อฟุตสเครย์เป็นทีมเหย้าคือใคร?",
    "context": "CREATE TABLE table_name_50 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_28 WHERE opponent = \"buffalo bills\"",
    "question_en": "What day did the team play the buffalo bills?",
    "question_th": "ทีมงานเล่นบิลควายวันไหน?",
    "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_en": "What is the BB Pop for the song with RIAA of G that was in a year earlier than 1961?",
    "question_th": "BB Pop สำหรับเพลงที่มี RIAA ของ G เมื่อปี 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_en": "Which player has an Other of 3 (15)?",
    "question_th": "ผู้เล่นคนไหนมีคะแนนอื่นๆ ใน 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_en": "What Name has a Time of 01:17:01?",
    "question_th": "ชื่ออะไรมีเวลา 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_en": "What is the Magnitude on the Date May 28, 2004?",
    "question_th": "วันที่ 28 พฤษภาคม 2547 มีขนาดเท่าใด",
    "context": "CREATE TABLE table_name_49 (magnitude VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_46 WHERE time = \"01:56:52\"",
    "question_en": "What Name has a Time of 01:56:52?",
    "question_th": "ชื่ออะไรมีเวลา 01:56:52?",
    "context": "CREATE TABLE table_name_46 (name VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT fatalities FROM table_name_79 WHERE epicenter = \"māzandarān\"",
    "question_en": "What number of Fatalities did the Epicenter Māzandarān have?",
    "question_th": "จุดศูนย์กลางมาซันดารันมีผู้เสียชีวิตจำนวนเท่าใด",
    "context": "CREATE TABLE table_name_79 (fatalities VARCHAR, epicenter VARCHAR)"
  },
  {
    "answer": "SELECT fatalities FROM table_name_78 WHERE time = \"12:38:46\"",
    "question_en": "What number of Fatalties is associated with the Time of 12:38:46?",
    "question_th": "จำนวนผู้เสียชีวิตที่เกี่ยวข้องกับเวลา 12:38:46 คือเท่าใด",
    "context": "CREATE TABLE table_name_78 (fatalities VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_94 WHERE epicenter = \"bam\"",
    "question_en": "What is the Time when the Epicenter was Bam?",
    "question_th": "เมื่อไหร่ที่ Epiccenter คือ Bam?",
    "context": "CREATE TABLE table_name_94 (time VARCHAR, epicenter VARCHAR)"
  },
  {
    "answer": "SELECT chief_judge FROM table_name_2 WHERE appointed_by = \"clinton\"",
    "question_en": "Who did Clinton appoint as a Chief Judge?",
    "question_th": "คลินตันแต่งตั้งใครเป็นหัวหน้าผู้พิพากษา?",
    "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_en": "What was the smallest crowd for a Carlton away game?",
    "question_th": "จำนวนผู้ชมที่น้อยที่สุดในเกมเยือนคาร์ลตันคือเท่าใด?",
    "context": "CREATE TABLE table_name_14 (crowd INTEGER, away_team VARCHAR)"
  },
  {
    "answer": "SELECT res FROM table_name_11 WHERE time = \"1:13\"",
    "question_en": "What is the result when the time is 1:13?",
    "question_th": "ผลลัพธ์เมื่อเวลาคือ 1:13 คืออะไร?",
    "context": "CREATE TABLE table_name_11 (res VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_45 WHERE time = \"1:47\"",
    "question_en": "Who was the opponent when the time was 1:47?",
    "question_th": "คู่ต่อสู้เมื่อเวลา 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_en": "What venue did South Melbourne play as the away team?",
    "question_th": "เซาธ์ เมลเบิร์น เล่นเป็นทีมเยือนที่สนามใด?",
    "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_en": "What was the away team's score in the match at Victoria Park?",
    "question_th": "คะแนนของทีมเยือนในแมตช์ที่ วิคตอเรีย พาร์ค เป็นเท่าไหร่?",
    "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_en": "Which position has a Round of 7, and a College of kansas state?",
    "question_th": "ตำแหน่งใดมีรอบ 7 ทีม และวิทยาลัยรัฐแคนซัส",
    "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_en": "How many rounds have an Overall larger than 17, and a Position of quarterback?",
    "question_th": "มีกี่รอบที่มีคะแนนรวมมากกว่า 17 และมีตำแหน่งกองหลัง?",
    "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_en": "Which average overall has a Round of 1, and a Position of center?",
    "question_th": "ค่าเฉลี่ยโดยรวมใดที่มีรอบ 1 และตำแหน่งกึ่งกลาง?",
    "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_en": "Where did North Melbourne play as the home team?",
    "question_th": "นอร์ธ เมลเบิร์น เล่นเป็นเจ้าบ้านที่ไหน?",
    "context": "CREATE TABLE table_name_37 (venue VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(crowd) FROM table_name_11 WHERE venue = \"mcg\"",
    "question_en": "What was the attendance when VFL played MCG?",
    "question_th": "การเข้าร่วมเมื่อ VFL เล่น 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_en": "What was the score of the away team when they played at Windy Hill?",
    "question_th": "ทีมเยือนเล่นที่วินดี้ ฮิลล์ สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_98 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT crowd FROM table_name_77 WHERE away_team = \"melbourne\"",
    "question_en": "How large was the crowd when the away team was melbourne?",
    "question_th": "ฝูงชนจะเยอะแค่ไหนตอนทีมเยือนเมลเบิร์น?",
    "context": "CREATE TABLE table_name_77 (crowd VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(crowd) FROM table_name_58 WHERE venue = \"glenferrie oval\"",
    "question_en": "How many people watched a Glenferrie Oval?",
    "question_th": "มีกี่คนที่ดู 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_en": "How faced Geelong at home?",
    "question_th": "ที่บ้านเจอจีหลงแค่ไหน?",
    "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_en": "How many people watch Essendon as an away team?",
    "question_th": "มีคนดูเอสเซนดอนเป็นทีมเยือนกี่คน?",
    "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_en": "Where did South Melbourne go to play a team at home?",
    "question_th": "เซาท์ เมลเบิร์น ไปเล่นทีมไหนในบ้าน?",
    "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_en": "What is essendon's away team score?",
    "question_th": "คะแนนทีมเยือนของ เอสเซนดอน เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_1 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_63 WHERE away_team = \"geelong\"",
    "question_en": "What is the date with geelong as Away team?",
    "question_th": "จีลองเป็นทีมเยือนวันที่เท่าไหร่?",
    "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_en": "What is the highest crowd at arden street oval?",
    "question_th": "คนไหนที่ 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_en": "What is geelong's aberage crowd as Away Team?",
    "question_th": "ฝูงชนที่น่ารำคาญของจีลองในฐานะทีมเยือนคืออะไร?",
    "context": "CREATE TABLE table_name_13 (crowd INTEGER, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_10 WHERE away_team = \"north melbourne\"",
    "question_en": "What was the date of the game when North Melbourne was the away team?",
    "question_th": "แมตช์วันที่ นอร์ท เมลเบิร์น เป็นทีมเยือนคือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_10 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_10 WHERE grid = 9",
    "question_en": "What is the team with grid 9?",
    "question_th": "ทีมกริด 9 คืออะไร?",
    "context": "CREATE TABLE table_name_10 (team VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_14 WHERE name = \"garth tander\"",
    "question_en": "What team features garth tander?",
    "question_th": "ทีมใดมีการ์ธ แทนเดอร์?",
    "context": "CREATE TABLE table_name_14 (team VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT stages FROM table_name_11 WHERE distance = \"2,192 km\"",
    "question_en": "How many stages are in a distance of 2,192 km?",
    "question_th": "ระยะทาง 2,192 กม. มีกี่ระยะ?",
    "context": "CREATE TABLE table_name_11 (stages VARCHAR, distance VARCHAR)"
  },
  {
    "answer": "SELECT distance FROM table_name_38 WHERE stages = \"16\" AND year = \"1997\"",
    "question_en": "How long was the 16 staged event in 1997?",
    "question_th": "16 เวทีในปี 1997 ใช้เวลานานเท่าใด?",
    "context": "CREATE TABLE table_name_38 (distance VARCHAR, stages VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_99 WHERE year = \"1984\"",
    "question_en": "What was the winning time in 1984?",
    "question_th": "เวลาที่ชนะในปี 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_en": "Who won the 17 staged event in 1987?",
    "question_th": "ใครชนะ 17 เวทีในปี 1987?",
    "context": "CREATE TABLE table_name_83 (winner VARCHAR, stages VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_91 WHERE year = \"1988\"",
    "question_en": "Which event happened in 1988?",
    "question_th": "เหตุการณ์ใดเกิดขึ้นในปี 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_en": "Where did Rick Mears win, after starting in Pole Position?",
    "question_th": "Rick Mears ชนะที่ไหนหลังจากออกสตาร์ทในตำแหน่งโพล",
    "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_en": "Where is the budweiser/g. i. joe's 200?",
    "question_th": "Budweiser/gi 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_en": "Where is Emerson Fittipaldi starting in Pole position?",
    "question_th": "Emerson Fittipaldi ออกสตาร์ทในตำแหน่ง โพล อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_60 (city_location VARCHAR, pole_position VARCHAR)"
  },
  {
    "answer": "SELECT circuit FROM table_name_56 WHERE date = \"july 24\"",
    "question_en": "Which Circuit is on July 24?",
    "question_th": "สนามไหนคือวันที่ 24 กรกฎาคม?",
    "context": "CREATE TABLE table_name_56 (circuit VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_34 WHERE winning_constructor = \"delage\"",
    "question_en": "What date did Delage win?",
    "question_th": "Delage ชนะวันที่เท่าไหร่?",
    "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_en": "What circuit did Luigi Villoresi win the Lausanne Grand Prix?",
    "question_th": "Luigi Villoresi ชนะการแข่งขัน 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_en": "Which Grand Prix did Nello Pagani win?",
    "question_th": "Nello Pagani คว้าแชมป์กรังด์ปรีซ์รายการใด",
    "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_en": "What did the home team score when playing Fitzroy as the away team?",
    "question_th": "เจ้าบ้านได้คะแนนเท่าไหร่เมื่อเล่นฟิตซ์รอยเป็นทีมเยือน?",
    "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_en": "What did the home team score when playing at Western Oval?",
    "question_th": "เจ้าบ้านได้คะแนนเท่าไหร่เมื่อเล่นที่เวสเทิร์นโอวัล?",
    "context": "CREATE TABLE table_name_41 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_20 WHERE home_team = \"collingwood\"",
    "question_en": "What away team played Collingwood?",
    "question_th": "ทีมเยือนทีมใดที่เล่นคอลลิงวูด?",
    "context": "CREATE TABLE table_name_20 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_20 WHERE home_team = \"collingwood\"",
    "question_en": "On what date did Collingwood play at home?",
    "question_th": "คอลลิงวูดเล่นในบ้านวันไหน?",
    "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_en": "Name the average round where Dave Stachelski was picked smaller than 187.",
    "question_th": "ตั้งชื่อรอบเฉลี่ยที่ Dave Stachelski เลือกน้อยกว่า 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_en": "Which position did David Nugent play with an overall small than 187?",
    "question_th": "เดวิด นูเจนท์ เล่นตำแหน่งไหนโดยสกอร์รวมน้อยกว่า 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_en": "Name the college that has an overall larger than 187 and a round smaller than 7 for the defensive end position.",
    "question_th": "ตั้งชื่อวิทยาลัยที่มีคะแนนรวมมากกว่า 187 และรอบที่น้อยกว่า 7 สำหรับตำแหน่งฝ่ายรับ",
    "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_en": "Which player has less than 201 games, is ranked 2, and played between 2007-2012?",
    "question_th": "ผู้เล่นคนไหนที่ลงเล่นน้อยกว่า 201 เกม อยู่อันดับ 2 และเล่นระหว่างปี 2550-2555?",
    "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_en": "How many average games did Nick Rimando have?",
    "question_th": "Nick Rimando มีเกมโดยเฉลี่ยกี่เกม?",
    "context": "CREATE TABLE table_name_99 (games INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_name_47 WHERE left_office = \"january 12, 1857\"",
    "question_en": "What is the party of the politician who left office on January 12, 1857",
    "question_th": "พรรคการเมืองของนักการเมืองที่ลาออกจากตำแหน่งเมื่อวันที่ 12 มกราคม พ.ศ. 2400 คืออะไร",
    "context": "CREATE TABLE table_name_47 (party VARCHAR, left_office VARCHAR)"
  },
  {
    "answer": "SELECT governor FROM table_name_4 WHERE name = \"hugh thomas miller\"",
    "question_en": "What is the party of the governor under Hugh Thomas Miller.",
    "question_th": "พรรคของผู้ว่าการรัฐภายใต้การนำของฮิวจ์ โธมัส มิลเลอร์",
    "context": "CREATE TABLE table_name_4 (governor VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_32 WHERE left_office = \"january 9, 1893\"",
    "question_en": "Who left office on January 9, 1893",
    "question_th": "ซึ่งลาออกจากตำแหน่งเมื่อวันที่ 9 มกราคม พ.ศ. 2436",
    "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_en": "Who took office under the government of Matthew E. Welsh?",
    "question_th": "ใครเข้ารับตำแหน่งภายใต้รัฐบาลของ 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_en": "Which governor took office on January 13, 1877",
    "question_th": "ผู้ว่าราชการคนใดเข้ารับตำแหน่งเมื่อวันที่ 13 มกราคม พ.ศ. 2420",
    "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_en": "What is the score of the Geelong away team?",
    "question_th": "ทีมเยือนจีลองมีสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_18 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team AS score FROM table_name_85 WHERE venue = \"lake oval\"",
    "question_en": "What is the score of the team that plays in lake oval?",
    "question_th": "ทีมที่เล่นในเลกโอวัลมีสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_85 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_25 WHERE venue = \"princes park\"",
    "question_en": "What the date of the game of the team that plays in princes park?",
    "question_th": "เกมของทีมที่เล่นใน 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_en": "What was the score of the home team of carlton?",
    "question_th": "เจ้าบ้านคาร์ลตันสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_60 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT crowd FROM table_name_63 WHERE away_team = \"geelong\"",
    "question_en": "How many people watched the away team of Geelong?",
    "question_th": "มีคนดูทีมเยือนจีลองกี่คน?",
    "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_en": "Which home team has the Brunswick Street Oval venue?",
    "question_th": "ทีมเจ้าบ้านใดมีสนาม Brunswick Street Oval?",
    "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_en": "Which home team has the Brunswick Street Oval venue?",
    "question_th": "ทีมเจ้าบ้านใดมีสนาม Brunswick Street Oval?",
    "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_en": "Which is the lowest crop total with New South Wales at 42 kilotonnes and Victorian at less than 68 kilotonnes?",
    "question_th": "พืชผลรวมใดต่ำสุดกับนิวเซาธ์เวลส์ที่ 42 กิโลตันและวิคตอเรียนที่น้อยกว่า 68 กิโลตัน",
    "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_en": "Who had a qual 1 best of 1:01.704?",
    "question_th": "ใครได้คะแนน 1 ดีที่สุดด้วยเวลา 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_en": "What team had a qual 1 of 1:02.755?",
    "question_th": "ทีมใดได้เข้ารอบ 1 ด้วยเวลา 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_en": "What is the qual 1 for rusport and had a best of 58.665?",
    "question_th": "อะไรคือคุณสมบัติ 1 สำหรับรัสพอร์ตและมีคะแนนดีที่สุดที่ 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_en": "What team had a qual 1 of 59.895?",
    "question_th": "ทีมใดได้เข้ารอบ 1 จาก 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_en": "Who had a qual 1 of 1:01.461?",
    "question_th": "ใครได้เข้ารอบ 1 ด้วยเวลา 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_en": "What is the LFN support with 32-bit architecture on Windows Home Server?",
    "question_th": "LFN รองรับสถาปัตยกรรม 32 บิตบน 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_en": "What is the LFN support on Windows NT 3.1?",
    "question_th": "LFN รองรับ 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_en": "What venue features hawthorn as the away team?",
    "question_th": "สนามใดที่มีฮอว์ธอร์นเป็นทีมเยือน?",
    "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_en": "How many cop apps in the season with fewer than 12 league apps?",
    "question_th": "มีแอปตำรวจกี่แอปในฤดูกาลที่มีแอปลีกน้อยกว่า 12 แอป",
    "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_en": "What season saw 6 cup apps and 5 cup goals?",
    "question_th": "ฤดูกาลใดที่ทำได้ 6 ถ้วยและ 5 ประตู?",
    "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_en": "How many league apps in the season with more than 2 cup goals and more than 6 cup apps?",
    "question_th": "มีแอปลีกกี่แอปในฤดูกาลที่มีประตูมากกว่า 2 ถ้วยและมากกว่า 6 ถ้วย?",
    "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_en": "How many cup goals for the season with more than 34 league apps?",
    "question_th": "กี่ประตูในถ้วยสำหรับฤดูกาลด้วยแอปลีกมากกว่า 34 รายการ?",
    "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_en": "How many cup goals in the season with more than 5 league apps, 1 cup apps and fewer than 4 league goals?",
    "question_th": "กี่ประตูในบอลถ้วยในฤดูกาลที่มีมากกว่า 5 แอพลีก, 1 แอพบอลถ้วย และน้อยกว่า 4 ประตูในลีก?",
    "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_en": "How many cup apps for the season where there are more than 10 league goals and 23 league apps?",
    "question_th": "มีบอลถ้วยกี่แอปในฤดูกาลที่มีมากกว่า 10 ประตูในลีก และ 23 แอปในลีก?",
    "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_en": "Which route has a Date of 2 july?",
    "question_th": "เส้นทางใดมีวันที่ 2 กรกฎาคม?",
    "context": "CREATE TABLE table_name_12 (route VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT length FROM table_name_37 WHERE stage = \"9\"",
    "question_en": "Which length has a Stage of 9?",
    "question_th": "ความยาวใดมีระยะ 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_en": "Which date has a Terrain of plain stage, and a Stage of 4?",
    "question_th": "วันที่ใดมีภูมิประเทศเป็นเวทีธรรมดาและด่านที่ 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_en": "What is the score for Fitzroy when they are the home team?",
    "question_th": "ฟิตซ์รอยเป็นเจ้าบ้านได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_53 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT MIN(crowd) FROM table_name_38 WHERE home_team = \"melbourne\"",
    "question_en": "What is the smallest crowd for a game when Melbourne is the home team?",
    "question_th": "ฝูงชนที่น้อยที่สุดสำหรับเกมเมื่อเมลเบิร์นเป็นเจ้าบ้านคือเท่าไร?",
    "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_en": "Who drafted the player from Michigan after 2010?",
    "question_th": "ใครเป็นผู้ร่างผู้เล่นจากมิชิแกนหลังปี 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_en": "Where was the player from who graduated from Michigan after 2010?",
    "question_th": "นักเตะที่สำเร็จการศึกษาจากมิชิแกนหลังปี 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_en": "From what town was Steve Zakuani?",
    "question_th": "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_en": "What year did Omar Gonzalez graduate?",
    "question_th": "Omar Gonzalez สำเร็จการศึกษาในปีใด",
    "context": "CREATE TABLE table_name_94 (graduated INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT host FROM table_name_12 WHERE city = \"long beach\"",
    "question_en": "Which university hosted in Long Beach?",
    "question_th": "มหาวิทยาลัยใดจัดขึ้นที่ลองบีช?",
    "context": "CREATE TABLE table_name_12 (host VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_38 WHERE host = \"saint joseph's university\"",
    "question_en": "What is the venue that Saint Joseph's University hosted at?",
    "question_th": "มหาวิทยาลัยเซนต์โจเซฟ จัดขึ้นที่ใด?",
    "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_en": "In which city is Hayman Hall (Tom Gola Arena) located?",
    "question_th": "Hayman Hall (Tom Gola Arena) ตั้งอยู่เมืองใด?",
    "context": "CREATE TABLE table_name_84 (city VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_3 WHERE city = \"villanova\"",
    "question_en": "Which venue is in the city of Villanova?",
    "question_th": "สถานที่ใดในเมืองวิลลาโนวา?",
    "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_en": "On which date did Ger Loughnane from Team Clare have a match?",
    "question_th": "Ger Loughnane จากทีม Clare ลงแข่งขันวันไหน?",
    "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_en": "What team opposed Tipperary in the Munster Final game?",
    "question_th": "ทีมใดที่ต่อต้าน Tipperary ในเกม Munster Final?",
    "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_en": "On what date did Limerick play in the All-Ireland Final game?",
    "question_th": "Limerick ลงเล่นในเกม All-Ireland Final วันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_38 (date VARCHAR, opposition VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT opposition FROM table_name_22 WHERE date = \"july 29\"",
    "question_en": "Who was the opposition in the game on July 29?",
    "question_th": "ฝ่ายตรงข้ามในเกมวันที่ 29 กรกฎาคมคือใคร?",
    "context": "CREATE TABLE table_name_22 (opposition VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_87 WHERE week = 13",
    "question_en": "What day did the team play week 13?",
    "question_th": "ทีมเล่นสัปดาห์ที่ 13 วันไหน?",
    "context": "CREATE TABLE table_name_87 (date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_85 WHERE opponent = \"bye\"",
    "question_en": "What was Bye's opponent's attendance?",
    "question_th": "การเข้าร่วมของฝ่ายตรงข้ามของ Bye คืออะไร?",
    "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_en": "Which opponent, before Week 10, had an attendance of 63,672?",
    "question_th": "คู่ต่อสู้คนใดก่อนสัปดาห์ที่ 10 มีผู้เข้าร่วม 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_en": "Which week had an attendance of 70,225",
    "question_th": "สัปดาห์ไหนมีผู้เข้าร่วม 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_en": "What was the highest number of people injured at incidents located at Rohtas, Bihar where fewer than 13 were killed?",
    "question_th": "จำนวนผู้ได้รับบาดเจ็บสูงสุดจากเหตุการณ์ที่ Rohtas, Bihar ซึ่งมีผู้เสียชีวิตน้อยกว่า 13 คนคือเท่าใด",
    "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_en": "What was the highest number of people injured in incidents in Vaishali, Bihar?",
    "question_th": "จำนวนผู้ได้รับบาดเจ็บจากเหตุการณ์ในเมืองเวสาลี รัฐพิหาร มีผู้ได้รับบาดเจ็บมากที่สุดคือเท่าใด",
    "context": "CREATE TABLE table_name_14 (injured INTEGER, place VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(crowd) FROM table_name_97 WHERE venue = \"victoria park\"",
    "question_en": "How many people were in the crowd at Victoria Park?",
    "question_th": "มีกี่คนที่อยู่ในฝูงชนที่ 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_en": "How many points did the away team from Melbourne score?",
    "question_th": "ทีมเยือนเมลเบิร์นทำคะแนนได้กี่แต้ม?",
    "context": "CREATE TABLE table_name_40 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_11 WHERE home_team = \"carlton\"",
    "question_en": "What date did the home team from Carlton play on?",
    "question_th": "เจ้าบ้านจากคาร์ลตันลงเล่นวันไหน?",
    "context": "CREATE TABLE table_name_11 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT manager FROM table_name_53 WHERE club = \"st. johnstone\"",
    "question_en": "Who is the manager of the St. Johnstone club?",
    "question_th": "ใครคือผู้จัดการทีมสโมสรเซนต์ จอห์นสโตน?",
    "context": "CREATE TABLE table_name_53 (manager VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT manager FROM table_name_16 WHERE club = \"stenhousemuir\"",
    "question_en": "Who is the manager of the Stenhousemuir club?",
    "question_th": "ใครคือผู้จัดการทีมสเตนเฮาส์มัวร์?",
    "context": "CREATE TABLE table_name_16 (manager VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_88 WHERE away_team = \"south melbourne\"",
    "question_en": "What team was home team when south Melbourne was the away team?",
    "question_th": "ทีมใดเป็นทีมเหย้า เมื่อเมลเบิร์นใต้เป็นทีมเยือน?",
    "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_en": "What was the away team score when the home team was Carlton?",
    "question_th": "สกอร์ทีมเยือนเมื่อเจ้าบ้านเป็นคาร์ลตันเป็นเท่าไหร่?",
    "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_en": "What was date of the bye week 11?",
    "question_th": "ลาก่อนสัปดาห์ที่ 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_en": "Where did Essendon play as the away team?",
    "question_th": "เอสเซนดอนเล่นทีมเยือนที่ไหน?",
    "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_en": "What is the most recent season when Fernando Alonso had more than 13 podiums in a car with a Ferrari engine?",
    "question_th": "ฤดูกาลล่าสุดคืออะไรที่เฟอร์นันโด อลอนโซ่ขึ้นโพเดี้ยมมากกว่า 13 ครั้งในรถที่ใช้เครื่องยนต์เฟอร์รารี",
    "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_en": "What is the engine for the Bettenhausen Motorsports team?",
    "question_th": "เครื่องยนต์สำหรับทีม Bettenhausen Motorsports คืออะไร?",
    "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_en": "What engine does Steve Chassey drive with a march chassis?",
    "question_th": "Steve Chassey ขับเคลื่อนด้วยเครื่องยนต์อะไรพร้อมแชสซีแบบ March?",
    "context": "CREATE TABLE table_name_49 (engine VARCHAR, chassis VARCHAR, drivers VARCHAR)"
  },
  {
    "answer": "SELECT engine FROM table_name_49 WHERE team = \"arciero racing\"",
    "question_en": "What is the engine for the Arciero Racing team?",
    "question_th": "เครื่องยนต์ของทีม Arciero Racing คืออะไร?",
    "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_en": "What chassis belongs with the Cosworth Engine driven by Scott Pruett on the Dick Simon Racing team?",
    "question_th": "แชสซีใดที่เป็นของ Cosworth Engine ซึ่งขับเคลื่อนโดย Scott Pruett ในทีม Dick Simon Racing",
    "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_en": "What is the engine for the team of Alex Morales Motorsports?",
    "question_th": "เครื่องยนต์ของทีม 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_en": "What is the engine for the Machinists Union Racing team?",
    "question_th": "เครื่องยนต์ของทีม Machinists Union Racing คืออะไร?",
    "context": "CREATE TABLE table_name_79 (engine VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_48 WHERE week = 1",
    "question_en": "What was the attendance for Week 1?",
    "question_th": "สัปดาห์ที่ 1 มีผู้เข้าร่วมเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_48 (attendance VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_48 WHERE attendance = \"73,369\"",
    "question_en": "Which team did the Patriots play when there was a game attendance of 73,369?",
    "question_th": "แพทริออตส์เล่นทีมใดเมื่อมีผู้เข้าชมเกม 73,369 คน",
    "context": "CREATE TABLE table_name_48 (opponent VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_18 WHERE week = 3",
    "question_en": "What date was the Week 3 game played?",
    "question_th": "เกมสัปดาห์ที่ 3 เล่นวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_18 (date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT MAX(crowd) FROM table_name_38 WHERE venue = \"windy hill\"",
    "question_en": "What was the highest attendance of the matches that took place at Windy Hill?",
    "question_th": "การแข่งขันที่ 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_en": "Which team has a home field at Glenferrie Oval?",
    "question_th": "ทีมไหนมีสนามเหย้าที่ 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_en": "On what date is Footscray the away team?",
    "question_th": "ฟุตสเครย์ ทีมเยือนจัดวันไหน?",
    "context": "CREATE TABLE table_name_59 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(crowd) FROM table_name_64 WHERE away_team = \"footscray\"",
    "question_en": "What was the crowd population for Footscray as an away team?",
    "question_th": "จำนวนฝูงชนของ Footscray ในฐานะทีมเยือนคือเท่าใด?",
    "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_en": "How many bids were there for the .500 win percentage in the Ohio Valley conference?",
    "question_th": "มีผู้เสนอราคาจำนวนเท่าใดสำหรับเปอร์เซ็นต์การชนะ .500 ในการประชุม Ohio Valley",
    "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_en": "What is the Championship Game when the Final Four is 1 and the conference is American South?",
    "question_th": "เกมชิงแชมป์จะเป็นอย่างไรเมื่อ Final Four เป็น 1 และการประชุมคือ 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_en": "What is the Final Four with a win percentage of .750?",
    "question_th": "Final Four ที่มีเปอร์เซ็นต์การชนะที่ .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_en": "What is the date of the game at the Arden Street Oval?",
    "question_th": "เกมที่ 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_en": "What is the date of the game when the venue is Kardinia Park?",
    "question_th": "สนามคาร์ดิเนีย พาร์ค จะเป็นเกมวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_13 (date VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_66 WHERE home_team = \"st kilda\"",
    "question_en": "Which away team played against the home team of St Kilda?",
    "question_th": "ทีมเยือนทีมไหนเจอกับทีมเจ้าบ้าน เซนต์คิลดา?",
    "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_en": "Which home team competed against the away team of Melbourne?",
    "question_th": "เจ้าบ้านทีมไหนแข่งกับทีมเยือนเมลเบิร์น?",
    "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_en": "What was the result of week 1 and the opponent was bye?",
    "question_th": "สัปดาห์ที่ 1 ผลของสัปดาห์ที่ 1 เป็นอย่างไร และคู่ต่อสู้ก็บายแล้ว?",
    "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_en": "What is the site of the game with a Record of 6-2?",
    "question_th": "เว็บไซต์ของเกมที่มีสถิติ 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_en": "What week has a Record of 12-2?",
    "question_th": "สัปดาห์ใดมีสถิติ 12-2?",
    "context": "CREATE TABLE table_name_99 (week VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_35 WHERE name = \"sky tower\"",
    "question_en": "What city has Sky Tower?",
    "question_th": "สกายทาวเวอร์อยู่ที่เมืองใด",
    "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_en": "What is the name of a building in Courbevoie built before 1973?",
    "question_th": "อาคารในกูร์เบอวัวที่สร้างขึ้นก่อนปี 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_en": "Who was the away team at Lake Oval?",
    "question_th": "ทีมเยือนเลคโอวัลคือใคร?",
    "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_en": "What was the home team score for the game where Hawthorn is the home team?",
    "question_th": "สกอร์เจ้าบ้านในเกมที่ฮอว์ธอร์นเป็นเจ้าบ้านเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_83 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_36 WHERE away_team = \"essendon\"",
    "question_en": "What is the date of the game where Essendon is the away team?",
    "question_th": "เกมที่เอสเซนดอนเป็นทีมเยือนคือวันไหน?",
    "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_en": "What is the home team's score when the away team is south melbourne?",
    "question_th": "เมื่อทีมเยือนเซาธ์เมลเบิร์นสกอร์ของเจ้าบ้านเป็นเท่าไหร่?",
    "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_en": "What venue featured the home side of st kilda?",
    "question_th": "สนามใดเป็นสนามเหย้าของเซนต์คิลดา?",
    "context": "CREATE TABLE table_name_67 (venue VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT metres FROM table_name_21 WHERE feet > 850",
    "question_en": "How many metres tall is the building that is larger than 850 feet tall?",
    "question_th": "อาคารที่มีขนาดใหญ่กว่า 850 ฟุตมีความสูงกี่เมตร?",
    "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_en": "What was Geelong's score when they were the home team?",
    "question_th": "จีลองเมื่อเป็นเจ้าบ้านได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_9 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_19 WHERE away_team = \"collingwood\"",
    "question_en": "Where was the game when Collingwood was the home team?",
    "question_th": "เกมไหนที่คอลลิงวูดเป็นเจ้าบ้าน?",
    "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_en": "What was Peter Woolfolk's Total Rebound average?",
    "question_th": "ค่าเฉลี่ยการฟื้นตัวโดยรวมของ Peter Woolfolk คือเท่าใด",
    "context": "CREATE TABLE table_name_59 (total_rebounds INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_79 WHERE week = 3",
    "question_en": "What was week 3 score?",
    "question_th": "คะแนนสัปดาห์ที่ 3 คืออะไร?",
    "context": "CREATE TABLE table_name_79 (result VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_41 WHERE stadium = \"odsal stadium\"",
    "question_en": "What is the result of the game at Odsal Stadium?",
    "question_th": "ผลการแข่งขันที่โอดซัล สเตเดี้ยม เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_41 (result VARCHAR, stadium VARCHAR)"
  },
  {
    "answer": "SELECT championship FROM table_name_43 WHERE margin = \"10 strokes\"",
    "question_en": "Which championship had a margin of 10 strokes?",
    "question_th": "แชมป์ไหนมีมาร์จิ้น 10 สโตรค?",
    "context": "CREATE TABLE table_name_43 (championship VARCHAR, margin VARCHAR)"
  },
  {
    "answer": "SELECT runner_s__up FROM table_name_48 WHERE margin = \"10 strokes\"",
    "question_en": "Which runner-up player(s) had a margin of 10 strokes?",
    "question_th": "ผู้เล่นรองชนะเลิศคนใดมีมาร์จิ้น 10 สโตรค?",
    "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_en": "What was the most recent year that Kathy Ahern was a runner-up?",
    "question_th": "ปีล่าสุดที่ Kathy Ahern ได้รับรางวัลรองชนะเลิศคืออะไร?",
    "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_en": "What is the RTM build of the Windows Home Server 2011?",
    "question_th": "RTM build ของ 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_en": "What is the current version of windows 8 with an RTM build of 9200?",
    "question_th": "Windows 8 รุ่นปัจจุบันที่มี RTM build 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_en": "What was the home team's score that played Geelong?",
    "question_th": "เจ้าบ้านเล่นจีลองมีสกอร์เท่าไหร่?",
    "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_en": "How many rounds were fought with opponent Kevin Roddy?",
    "question_th": "มีการต่อสู้กับคู่ต่อสู้ Kevin Roddy กี่รอบ?",
    "context": "CREATE TABLE table_name_54 (round VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_2 WHERE attendance = \"19,887\"",
    "question_en": "What was the score when attendance was 19,887?",
    "question_th": "เมื่อเข้าร่วม 19,887 คะแนนเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_2 (record VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_20 WHERE attendance = \"bye\"",
    "question_en": "What week was the Bye attendance week?",
    "question_th": "สัปดาห์การเข้างาน Bye เป็นสัปดาห์ใด",
    "context": "CREATE TABLE table_name_20 (week VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_38 WHERE opponent = \"denver broncos\"",
    "question_en": "Who won when the Patriots played the Denver Broncos?",
    "question_th": "ใครชนะเมื่อผู้รักชาติเล่นเดนเวอร์บรองโกส์?",
    "context": "CREATE TABLE table_name_38 (record VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_52 WHERE attendance = \"8,000\"",
    "question_en": "Who won when the attendance was 8,000?",
    "question_th": "ใครชนะเมื่อมีผู้เข้าร่วม 8,000 คน?",
    "context": "CREATE TABLE table_name_52 (record VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT programming FROM table_name_1 WHERE operator = \"ivptc\"",
    "question_en": "What channel has an operator of ivptc?",
    "question_th": "ช่องทางใดบ้างที่มีโอเปอเรเตอร์ของ 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_en": "What was the score when Richmond payed as the home team?",
    "question_th": "เมื่อริชมอนด์จ่ายเป็นเจ้าบ้านสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_83 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_62 WHERE away_team = \"carlton\"",
    "question_en": "Who played against Carlton as the home team?",
    "question_th": "ใครเล่นกับคาร์ลตันในฐานะเจ้าบ้าน?",
    "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_en": "What was the attendance when South Melbourne was the away team?",
    "question_th": "เซาท์ เมลเบิร์น เป็นทีมเยือนมีผู้ชมเข้าร่วมเท่าไร?",
    "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_en": "Who was the home team when the VFL played Kardinia Park?",
    "question_th": "ทีมเจ้าบ้านคือใครเมื่อ VFL เล่นกับคาร์ดิเนียพาร์ค?",
    "context": "CREATE TABLE table_name_27 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT silver FROM table_name_61 WHERE bronze = 32",
    "question_en": "How many silver medals did the nation who received 32 bronze medals receive?",
    "question_th": "ประเทศที่ได้รับ 32 เหรียญทองแดง ได้เหรียญเงินกี่เหรียญ?",
    "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_en": "What is the highest numbered grid with a time or retired time of 52:52.1881?",
    "question_th": "ตารางที่มีหมายเลขสูงสุดโดยมีเวลาหรือเวลาที่เลิกใช้คือ 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_en": "Who recorded a time or retired time of 52:56.4653?",
    "question_th": "ใครเป็นผู้บันทึกเวลาหรือเวลาเกษียณ 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_en": "What is the average grid number for paul cruickshank racing with less than 27 laps?",
    "question_th": "หมายเลขกริดเฉลี่ยสำหรับการแข่งของ Paul Cruickshank ที่มีรอบน้อยกว่า 27 รอบคือเท่าใด",
    "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_en": "What is the lowest total metals of a team with more than 6 silver, 6 bronze, and fewer than 16 gold medals?",
    "question_th": "โลหะรวมต่ำสุดของทีมที่มีมากกว่า 6 เหรียญเงิน 6 เหรียญทองแดง และน้อยกว่า 16 เหรียญทองคือเท่าใด",
    "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_en": "What is the crowd size of the game at Brunswick Street Oval?",
    "question_th": "ขนาดฝูงชนของเกมที่ 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_en": "Who was the home team of the game where Footscray is the away team?",
    "question_th": "ใครคือเจ้าบ้านในเกมที่ฟุตสเครย์เป็นทีมเยือน?",
    "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_en": "What week has a date of September 3, 2000?",
    "question_th": "สัปดาห์ใดมีวันที่ 3 กันยายน พ.ศ. 2543",
    "context": "CREATE TABLE table_name_98 (week INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_61 WHERE away_team = \"hawthorn\"",
    "question_en": "Who was the home team when Hawthorn was the away team?",
    "question_th": "เมื่อฮอว์ธอร์นเป็นทีมเยือนคือใคร?",
    "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_en": "What was Fitzroy's score when they were the away team?",
    "question_th": "ฟิตซ์รอยเป็นทีมเยือนได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_18 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT speed FROM table_name_27 WHERE team = \"bmw\" AND rank = 7",
    "question_en": "What was #7 BMW's speed?",
    "question_th": "ความเร็วของ #7 BMW คืออะไร?",
    "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_en": "What was the crowd size in the match South Melbourne played at home?",
    "question_th": "จำนวนฝูงชนในแมตช์ที่เซาท์ เมลเบิร์น เล่นในบ้านคือเท่าใด?",
    "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_en": "What was the away team's score at Western Oval?",
    "question_th": "ทีมเยือนเวสเทิร์น โอวัล ทำได้เท่าไหร่?",
    "context": "CREATE TABLE table_name_75 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(crowd) FROM table_name_79 WHERE away_team = \"essendon\"",
    "question_en": "What was the crowd size when Essendon was the away team?",
    "question_th": "ขนาดฝูงชนเมื่อเอสเซนดอนเป็นทีมเยือนคือเท่าใด?",
    "context": "CREATE TABLE table_name_79 (crowd VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_36 WHERE time = \"16:24.12\"",
    "question_en": "On what date was the time of 16:24.12 achieved?",
    "question_th": "เวลา 16:24.12 น. บรรลุถึงวันใด?",
    "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_en": "What year did the Capital City Giants have a game with the final score of 8-0?",
    "question_th": "แคปปิตอล ซิตี้ ไจแอนต์ส แข่งเกมด้วยสกอร์สุดท้าย 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_en": "What team lost a game by a score of 6-0?",
    "question_th": "ทีมใดแพ้เกมด้วยสกอร์ 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_en": "What teams played in Capital Bowl IV?",
    "question_th": "ทีมใดเล่นใน 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_en": "What team defeated the Capital City Giants?",
    "question_th": "ทีมใดปราบยักษ์นครหลวงได้?",
    "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_en": "What is the total tenure rank of the person with an uninterrupted time of 49 years, 349 days?",
    "question_th": "บุคคลที่มีอายุต่อเนื่อง 49 ปี 349 วัน อยู่ในตำแหน่งเท่าใด",
    "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_en": "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?",
    "question_th": "ระยะเวลาการดำรงตำแหน่งทั้งหมดของ Warren Magnuson ซึ่งมีตำแหน่งต่อเนื่องมากกว่า 4 และตำแหน่งการดำรงตำแหน่งรวมมากกว่า 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_en": "What round was the overall 63 drafted?",
    "question_th": "สรุป 63 ดราฟท์รอบไหนคะ?",
    "context": "CREATE TABLE table_name_94 (round VARCHAR, overall VARCHAR)"
  },
  {
    "answer": "SELECT in_swedish FROM table_name_77 WHERE in_english = \"south karelia\"",
    "question_en": "What is the Swedish name for South Karelia?",
    "question_th": "ชื่อภาษาสวีเดนของ 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_en": "What home team plays at Arden Street Oval?",
    "question_th": "ทีมเหย้าทีมใดเล่นที่ 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_en": "Who has a Jump 2 of 7.06, and what is this person's Jump 3?",
    "question_th": "ใครมี Jump 2 ของ 7.06 และ 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_en": "Who has an x under Jump 1, a Jump 2 of 7.28, and what is this person's Best Jump?",
    "question_th": "ใครมี x ต่ำกว่า Jump 1, Jump 2 จาก 7.28 และอะไรคือ 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_en": "What is the Jump 2 of the person that has a Jump 3 of 7.77?",
    "question_th": "Jump 2 ของคนที่มี Jump 3 เป็น 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_en": "What is the Jump 2 of the person that has a Jump 1 of 7.14",
    "question_th": "Jump 2 ของคนที่มี Jump 1 จาก 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_en": "Which player from Tucson, Arizona won the Championship?",
    "question_th": "ผู้เล่นคนไหนจากทูซอน รัฐแอริโซนา ที่ได้แชมป์?",
    "context": "CREATE TABLE table_name_58 (champion VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_14 WHERE city = \"inglewood, california\"",
    "question_en": "What was the final score of the player from Inglewood, California?",
    "question_th": "คะแนนสุดท้ายของผู้เล่นจากอิงเกิลวูด แคลิฟอร์เนียคือเท่าใด",
    "context": "CREATE TABLE table_name_14 (score VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_14 WHERE date = \"cancelled\"",
    "question_en": "What tour was cancelled?",
    "question_th": "ทัวร์อะไรถูกยกเลิก?",
    "context": "CREATE TABLE table_name_14 (name VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_76 WHERE name = \"fedex tour of calabarzon\"",
    "question_en": "Who won the Fedex tour of Calabarzon?",
    "question_th": "ใครเป็นผู้ชนะ 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_en": "What year has the time of 55:29:20?",
    "question_th": "ปีใดมีเวลา 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_en": "What was the score when Mark parterned with lorenzo manta?",
    "question_th": "คะแนนเมื่อมาร์คออกเดทกับลอเรนโซ มันต้าเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_19 (score VARCHAR, partner VARCHAR)"
  },
  {
    "answer": "SELECT partner FROM table_name_22 WHERE surface = \"carpet\"",
    "question_en": "Who was his partner when he played on carpet?",
    "question_th": "ใครคือคู่หูของเขาเมื่อเขาเล่นบนพรม?",
    "context": "CREATE TABLE table_name_22 (partner VARCHAR, surface VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_76 WHERE partner = \"peter nyborg\"",
    "question_en": "When did he play with peter nyborg?",
    "question_th": "เขาเล่นกับปีเตอร์ นีบอร์กเมื่อไหร่?",
    "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_en": "What day did he play on hard with tom mercer?",
    "question_th": "วันไหนที่เขาเล่นหนักกับทอม เมอร์เซอร์?",
    "context": "CREATE TABLE table_name_69 (date VARCHAR, surface VARCHAR, partner VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_92 WHERE week = \"2\"",
    "question_en": "What was the week 2's record?",
    "question_th": "บันทึกของสัปดาห์ที่ 2 คืออะไร?",
    "context": "CREATE TABLE table_name_92 (record VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_57 WHERE week = \"12\"",
    "question_en": "What was week 12's record?",
    "question_th": "บันทึกของสัปดาห์ที่ 12 คืออะไร?",
    "context": "CREATE TABLE table_name_57 (record VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_25 WHERE record = \"bye\"",
    "question_en": "What was the Bye week attendance?",
    "question_th": "การเข้าร่วม Bye Week คืออะไร?",
    "context": "CREATE TABLE table_name_25 (attendance VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT kickoff FROM table_name_93 WHERE week = \"sb xxxvi\"",
    "question_en": "When was the kickoff time of the SB XXXVI?",
    "question_th": "เวลาคิกออฟของ 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_en": "What was the home team score for the game played at Princes Park?",
    "question_th": "คะแนนเจ้าบ้านในเกมที่เล่นที่พรินเซส พาร์คเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_3 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_42 WHERE time = \"6:37.73\"",
    "question_en": "What event had a time of 6:37.73?",
    "question_th": "เหตุการณ์ใดมีเวลา 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_en": "What is the time for the 50m breaststroke?",
    "question_th": "ว่ายท่ากบ 50 เมตร กี่โมง?",
    "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_en": "What age group has a time of 6:37.73 at the 200m breaststroke?",
    "question_th": "กลุ่มอายุใดที่มีเวลา 6:37.73 ในการว่ายกบ 200 เมตร?",
    "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_en": "What date did the 90-94 year old have a tie of 1:25.91 at the LC pool?",
    "question_th": "อายุ 90-94 เสมอกันที่ 1:25.91 ที่ LC พูลวันที่เท่าไหร่?",
    "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_en": "How many point totals are there that rank higher than 9 and have a PPG avg higher than 13.4?",
    "question_th": "มีคะแนนรวมที่สูงกว่า 9 และมี PPG เฉลี่ยสูงกว่า 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_en": "How many players played over 125 games and were named david gonzalvez?",
    "question_th": "มีผู้เล่นกี่คนที่เล่นเกมมากกว่า 125 เกมและมีชื่อว่า ดาวิด กอนซาลเวซ?",
    "context": "CREATE TABLE table_name_16 (rank VARCHAR, games VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT host FROM table_name_40 WHERE city = \"missoula\"",
    "question_en": "Which host university is based in Missoula?",
    "question_th": "มหาวิทยาลัยเจ้าภาพแห่งใดตั้งอยู่ใน Missoula",
    "context": "CREATE TABLE table_name_40 (host VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT state FROM table_name_13 WHERE city = \"ruston\"",
    "question_en": "What state is the city of Ruston in?",
    "question_th": "เมืองรัสตันอยู่ในรัฐใด",
    "context": "CREATE TABLE table_name_13 (state VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT state FROM table_name_53 WHERE region = \"mideast\" AND city = \"seattle\"",
    "question_en": "Which mideast regional state contains the city of Seattle?",
    "question_th": "รัฐในภูมิภาคตะวันออกกลางใดที่มีเมืองซีแอตเทิล",
    "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_en": "Which region does Old Dominion University represent?",
    "question_th": "Old Dominion University เป็นตัวแทนของภูมิภาคใด",
    "context": "CREATE TABLE table_name_33 (region VARCHAR, host VARCHAR)"
  },
  {
    "answer": "SELECT state FROM table_name_27 WHERE host = \"university of tennessee\"",
    "question_en": "Which state is University of Tennessee based in?",
    "question_th": "มหาวิทยาลัยเทนเนสซีตั้งอยู่ในรัฐใด",
    "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_en": "What was the grid for Bruno Junqueira for Dale Coyne Racing?",
    "question_th": "ตารางของ Bruno Junqueira สำหรับ 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_en": "What were the highest points for less than 78 laps and on grid 5?",
    "question_th": "จุดสูงสุดในรอบน้อยกว่า 78 รอบและบนตารางที่ 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_en": "How many were in the crowd at the Junction Oval venue?",
    "question_th": "มีกี่คนที่อยู่ในฝูงชนที่สถานที่จัดงาน Junction Oval?",
    "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_en": "What was the away team score in the game at Arden Street Oval?",
    "question_th": "คะแนนทีมเยือนในเกมที่อาร์เดน สตรีท โอวัลเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_31 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_59 WHERE venue = \"arden street oval\"",
    "question_en": "What was the date of the Arden Street Oval game?",
    "question_th": "เกม Arden Street Oval จัดขึ้นวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_59 (date VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_13 WHERE crowd > 29 OFFSET 840",
    "question_en": "What venue saw a crowd larger than 29,840?",
    "question_th": "สถานที่ใดที่มีฝูงชนมากกว่า 29,840 คน?",
    "context": "CREATE TABLE table_name_13 (venue VARCHAR, crowd INTEGER)"
  },
  {
    "answer": "SELECT date FROM table_name_25 WHERE week = \"11\"",
    "question_en": "When does week 11 start?",
    "question_th": "สัปดาห์ที่ 11 เริ่มต้นเมื่อไหร่?",
    "context": "CREATE TABLE table_name_25 (date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_1 WHERE date = \"december 28, 1997\"",
    "question_en": "Which week starts on December 28, 1997?",
    "question_th": "สัปดาห์ใดที่เริ่มในวันที่ 28 ธันวาคม 1997?",
    "context": "CREATE TABLE table_name_1 (week VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_54 WHERE week = \"1\"",
    "question_en": "When does week 1 start?",
    "question_th": "สัปดาห์ที่ 1 เริ่มต้นเมื่อไหร่?",
    "context": "CREATE TABLE table_name_54 (date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_59 WHERE opponent = \"tampa bay buccaneers\"",
    "question_en": "Who one in the Tampa Bay Buccaneers?",
    "question_th": "ใครอยู่ในแทมปาเบย์บัคคาเนียร์ส?",
    "context": "CREATE TABLE table_name_59 (result VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_55 WHERE date = \"november 23, 1997\"",
    "question_en": "Which week starts on November 23, 1997?",
    "question_th": "สัปดาห์ใดที่เริ่มในวันที่ 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_en": "Who is the away team when the home team was Fitzroy?",
    "question_th": "ทีมเยือนเมื่อก่อนเจ้าบ้านคือฟิตซ์รอยคือใคร?",
    "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_en": "What was Melbourne's score when they were the home team?",
    "question_th": "เมลเบิร์นสกอร์เมื่อก่อนเป็นเจ้าบ้านเท่าไหร่?",
    "context": "CREATE TABLE table_name_37 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_31 WHERE home_team = \"collingwood\"",
    "question_en": "What is the date of the game where Collingwood was the home team?",
    "question_th": "เกมที่คอลลิงวูดเป็นเจ้าบ้านคือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_31 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT crowd FROM table_name_14 WHERE away_team = \"north melbourne\"",
    "question_en": "Who watches North Melbourne when they are away?",
    "question_th": "ใครเฝ้าดู North Melbourne เมื่อพวกเขาออกไป?",
    "context": "CREATE TABLE table_name_14 (crowd VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_27 WHERE home_team = \"carlton\"",
    "question_en": "What Away team is visiting Carlton?",
    "question_th": "ทีมเยือนทีมไหนไปเยือนคาร์ลตัน?",
    "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_en": "What team has Windy Hill as their home venue",
    "question_th": "ทีมไหนมีวินดี้ฮิลล์เป็นสนามเหย้า",
    "context": "CREATE TABLE table_name_47 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT MAX(crowd) FROM table_name_8 WHERE away_team = \"richmond\"",
    "question_en": "When richmond played away, what was the largest number of people who watched?",
    "question_th": "ตอนที่ริชมอนด์เล่นนอกบ้าน คนดูมากที่สุดคือเท่าไหร่?",
    "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_en": "Which country is ranked higher than 68, with a city named Santa Fe and a stadium that has a capacity of 32,000?",
    "question_th": "ประเทศไหนติดอันดับสูงกว่า 68 โดยมีเมืองชื่อซานตาเฟ่และสนามกีฬาจุคนได้ 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ém\"",
    "question_en": "What is the capacity of the stadium with a rank lower than 31 located in the city of Belém ?",
    "question_th": "ความจุของสนามอันดับต่ำกว่า 31 ที่ตั้งอยู่ในเมืองเบเลมคือเท่าไร?",
    "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_en": "What is the sum of week(s) with an attendance of 30,751?",
    "question_th": "ผลรวมของสัปดาห์ที่มีผู้เข้าร่วม 30,751 คนเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_77 (week INTEGER, attendance VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_50 WHERE home_team = \"essendon\"",
    "question_en": "On what date did the home team Essendon play?",
    "question_th": "เอสเซนดอนเจ้าบ้านลงเล่นวันไหน?",
    "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_en": "What was South Melbourne's home team score?",
    "question_th": "คะแนนทีมเหย้าของ เซาธ์ เมลเบิร์น เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_90 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_12 WHERE venue = \"glenferrie oval\"",
    "question_en": "On what date was the venue of Glenferrie Oval?",
    "question_th": "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_en": "What was the score for the away team when they played collingwood?",
    "question_th": "ทีมเยือนได้สกอร์เท่าไหร่เมื่อเจอกับคอลลิงวูด?",
    "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_en": "What was the score when essendon was the home team?",
    "question_th": "เมื่อเอสเซนดอนเป็นเจ้าบ้านสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_75 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_70 WHERE away_team = \"richmond\"",
    "question_en": "What is the date of the game where Richmond was the away team?",
    "question_th": "เกมที่ริชมอนด์เป็นทีมเยือนคือวันไหน?",
    "context": "CREATE TABLE table_name_70 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_97 WHERE away_team = \"carlton\"",
    "question_en": "Who was the home team when Carlton was the away team?",
    "question_th": "เจ้าบ้านคือใครเมื่อคาร์ลตันเป็นทีมเยือน?",
    "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_en": "Which home team played against Hawthorn?",
    "question_th": "เจ้าบ้านทีมไหนเล่นกับฮอว์ธอร์น?",
    "context": "CREATE TABLE table_name_49 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_12 WHERE home_team = \"geelong\"",
    "question_en": "What date did the Geelong team play on as a home team?",
    "question_th": "ทีมจีลองลงเล่นเป็นทีมเหย้าวันที่เท่าไหร่?",
    "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_en": "What school/club team did the player who was drafted after round 13 with an overall rank of 384 play for?",
    "question_th": "ผู้เล่นที่ถูกดราฟท์หลังรอบ 13 ด้วยคะแนนรวม 384 เล่นให้กับทีมโรงเรียน/สโมสรใด",
    "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_en": "What is the largest overall rank for a center drafted before round 10?",
    "question_th": "อันดับโดยรวมที่ใหญ่ที่สุดสำหรับเซ็นเตอร์ที่ดราฟท์ก่อนรอบ 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_en": "What position does the player from Texas State who was drafted before round 11 with an overall rank lower than 306 play?",
    "question_th": "ผู้เล่นจากรัฐเท็กซัสที่ถูกดราฟท์ก่อนรอบ 11 ด้วยอันดับรวมต่ำกว่า 306 ลงเล่นในตำแหน่งใด",
    "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_en": "What is the average overall rank of all players drafted from Duke after round 9?",
    "question_th": "อันดับเฉลี่ยโดยรวมของผู้เล่นทุกคนที่ดราฟท์จาก Duke หลังรอบ 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_en": "What is the sum of all rounds where a Tennessee State player with an overall rank less than 261 was drafted?",
    "question_th": "ผลรวมของรอบทั้งหมดที่มีการดราฟผู้เล่นรัฐเทนเนสซีที่มีอันดับโดยรวมน้อยกว่า 261 เป็นเท่าใด",
    "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_en": "What is the highest overall rank of any Tennessee State player drafted before round 10?",
    "question_th": "อันดับโดยรวมสูงสุดของผู้เล่นรัฐเทนเนสซีที่ร่างก่อนรอบ 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_en": "How many rounds did Blane Smith play linebacker?",
    "question_th": "เบลน สมิธ เล่นไลน์แบ็คเกอร์ไปกี่รอบ?",
    "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_en": "How many times was Arizona the team and the round was bigger than 11?",
    "question_th": "แอริโซนาเป็นทีมกี่ครั้งและรอบนั้นใหญ่กว่า 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_en": "What is the result of the game after week 5 against the st. louis rams?",
    "question_th": "ผลลัพธ์ของเกมหลังจากสัปดาห์ที่ 5 กับเซนต์ปีเตอร์สเบิร์กเป็นอย่างไร หลุยส์ แรมส์?",
    "context": "CREATE TABLE table_name_52 (result VARCHAR, week VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_56 WHERE week = 4",
    "question_en": "What day did they play on week 4?",
    "question_th": "สัปดาห์ที่ 4 พวกเขาเล่นวันไหน?",
    "context": "CREATE TABLE table_name_56 (date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT MAX(crowd) FROM table_name_88 WHERE venue = \"princes park\"",
    "question_en": "What is the largest crowd at princes park?",
    "question_th": "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_en": "What day is north melbourne the away side?",
    "question_th": "เมลเบิร์นเหนือเป็นฝั่งทีมเยือนวันไหน?",
    "context": "CREATE TABLE table_name_51 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_69 WHERE home_team = \"essendon\"",
    "question_en": "What day is essendon the home team?",
    "question_th": "เอสเซนดอนเจ้าบ้านวันไหน?",
    "context": "CREATE TABLE table_name_69 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT SUM(games) FROM table_name_54 WHERE assist > 54",
    "question_en": "How many games had an assist number greater than 54?",
    "question_th": "มีกี่เกมที่มีจำนวนแอสซิสต์มากกว่า 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_en": "Which years did the USA have a rank lower than 6 and an assist number less than 26?",
    "question_th": "สหรัฐอเมริกามีอันดับต่ำกว่า 6 และอันดับแอสซิสต์น้อยกว่า 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_en": "Which year or years did a team win 174 games and had an assist number less than 17?",
    "question_th": "ปีไหนที่ทีมชนะ 174 เกมและมีแอสซิสต์น้อยกว่า 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_en": "Which party does Claudette Tardif belong to?",
    "question_th": "Claudette Tardif เป็นสมาชิกพรรคใด?",
    "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_en": "Who appointed the conservative from Ontario on June 18, 1993?",
    "question_th": "ใครเป็นผู้แต่งตั้งพรรคอนุรักษ์นิยมจากออนแทรีโอเมื่อวันที่ 18 มิถุนายน 2536",
    "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_en": "What competition, federation, or league are the Tennessee Titans a member of?",
    "question_th": "Tennessee Titans เป็นสมาชิกของการแข่งขัน สหพันธ์ หรือลีกใด",
    "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_en": "What day is south melbourne at home?",
    "question_th": "เซาท์เมลเบิร์นที่บ้านวันไหน?",
    "context": "CREATE TABLE table_name_71 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT MIN(crowd) FROM table_name_20 WHERE venue = \"corio oval\"",
    "question_en": "What is the lowest crowd at corio oval?",
    "question_th": "Corio Oval มีฝูงชนน้อยที่สุดคือเท่าไร?",
    "context": "CREATE TABLE table_name_20 (crowd INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_34 WHERE away_team = \"carlton\"",
    "question_en": "What venue features carlton as an away team?",
    "question_th": "สนามใดที่มีคาร์ลตันเป็นทีมเยือน?",
    "context": "CREATE TABLE table_name_34 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_59 WHERE venue = \"western oval\"",
    "question_en": "What day does the team play at western oval?",
    "question_th": "ทีมเล่นที่เวสเทิร์นโอวัลวันไหน?",
    "context": "CREATE TABLE table_name_59 (date VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_4 WHERE home_team = \"collingwood\"",
    "question_en": "What venue features collingwood as the home side?",
    "question_th": "สนามใดที่มีคอลลิงวูดเป็นเจ้าบ้าน?",
    "context": "CREATE TABLE table_name_4 (venue VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_92 WHERE week = 1",
    "question_en": "What is the attendance of week 1",
    "question_th": "สัปดาห์ที่ 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_en": "What is the Result for Couple Kelly & Alec when they have a Score of 22 (8, 7, 7)?",
    "question_th": "ผลลัพท์ของคู่รัก Kelly & Alec เมื่อพวกเขาได้คะแนน 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_en": "What is the Music for the Dance that Scored 25 (9, 8, 8) and a Result of bottom 2?",
    "question_th": "เพลงประกอบการเต้นรำที่ได้คะแนน 25 (9, 8, 8) และผลลัพธ์ของ 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_en": "How many totals are there for players with an average under 8 and less than 4 matches?",
    "question_th": "มีผู้เล่นที่มีค่าเฉลี่ยต่ำกว่า 8 นัดและน้อยกว่า 4 นัดมีทั้งหมดกี่นัด?",
    "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_en": "What is the highest rank for championships with christy heffernan with over 4 matches?",
    "question_th": "อันดับสูงสุดในการประชันกับคริสตี้ เฮฟเฟอร์แนน เกิน 4 นัดคืออันดับไหน?",
    "context": "CREATE TABLE table_name_44 (rank INTEGER, player VARCHAR, matches VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_55 WHERE venue = \"junction oval\"",
    "question_en": "What is the date of the game at Junction Oval?",
    "question_th": "เกมที่ 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_en": "What was the away team score at Windy Hill?",
    "question_th": "สกอร์ทีมเยือนวินดี้ ฮิลล์เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_25 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_50 WHERE away_team = \"st kilda\"",
    "question_en": "Where did St Kilda play as the away team?",
    "question_th": "เซนต์คิลดาเล่นทีมเยือนที่ไหน?",
    "context": "CREATE TABLE table_name_50 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_34 WHERE venue = \"glenferrie oval\"",
    "question_en": "What away team played at Glenferrie Oval?",
    "question_th": "ทีมเยือนทีมใดเล่นที่ 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_en": "How many people attended the game at Lake Oval?",
    "question_th": "มีผู้เข้าร่วมการแข่งขันที่ 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_en": "What home team played at Lake Oval?",
    "question_th": "ทีมเหย้าทีมใดเล่นที่เลคโอวัล?",
    "context": "CREATE TABLE table_name_1 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT terrain FROM table_name_69 WHERE stage = \"10\"",
    "question_en": "What was the terrain for stage 10 of the tour?",
    "question_th": "ภูมิประเทศสำหรับสเตจที่ 10 ของทัวร์เป็นอย่างไร",
    "context": "CREATE TABLE table_name_69 (terrain VARCHAR, stage VARCHAR)"
  },
  {
    "answer": "SELECT stage FROM table_name_90 WHERE route = \"boulogne-billancourt\"",
    "question_en": "Which stage took the tour through Boulogne-Billancourt?",
    "question_th": "เวทีใดที่ทัวร์ผ่าน Boulogne-Billancourt?",
    "context": "CREATE TABLE table_name_90 (stage VARCHAR, route VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_85 WHERE stage = \"22\"",
    "question_en": "Who won at stage 22?",
    "question_th": "ใครชนะในสเตจที่ 22?",
    "context": "CREATE TABLE table_name_85 (winner VARCHAR, stage VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_76 WHERE stage = \"12\"",
    "question_en": "Who was the winner of stage 12?",
    "question_th": "ใครคือผู้ชนะของด่านที่ 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_en": "When was the Hon Ian Causley first elected?",
    "question_th": "Hon Ian Causley ได้รับเลือกครั้งแรกเมื่อใด",
    "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_en": "When was Jill Hall of the Labor Party first elected?",
    "question_th": "Jill Hall จากพรรคแรงงานได้รับเลือกครั้งแรกเมื่อใด",
    "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_en": "What state is Tanya Plibersek from?",
    "question_th": "Tanya Plibersek มาจากรัฐใด",
    "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_en": "What is the smallest number of goals for the player from 2008-present named tony beltran, ranked lower than 7?",
    "question_th": "จำนวนประตูที่น้อยที่สุดสำหรับผู้เล่นตั้งแต่ปี 2008-ปัจจุบันที่ชื่อโทนี่ เบลทราน ซึ่งอยู่ในอันดับที่ต่ำกว่า 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_en": "What is the smallest number of goals for andy williams?",
    "question_th": "จำนวนประตูที่น้อยที่สุดของแอนดี้ วิลเลียมส์คือเท่าไร?",
    "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_en": "What is the highest number of goals for robbie findley ranked above 10?",
    "question_th": "ร็อบบี้ ฟินด์ลีย์ทำประตูได้มากกว่า 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_en": "Which NTFS has a yes for FAT32 and a no for ReFS?",
    "question_th": "NTFS ใดมีใช่สำหรับ FAT32 และไม่ใช่สำหรับ ReFS",
    "context": "CREATE TABLE table_name_20 (ntfs VARCHAR, fat32 VARCHAR, refs VARCHAR)"
  },
  {
    "answer": "SELECT hpfs FROM table_name_51 WHERE refs = \"no\"",
    "question_en": "Which HPFS has a no for ReFS?",
    "question_th": "HPFS ใดที่ไม่มีสำหรับ 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_en": "Which FAT32 has yes v1.0/v1.1 for NTFS?",
    "question_th": "FAT32 ตัวใดมี v1.0/v1.1 สำหรับ 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_en": "Which FAT32 has a no for HPFS, a no for ReFS, and a yes v3.0 fir NTFS?",
    "question_th": "FAT32 ใดที่ไม่มีสำหรับ HPFS, ไม่มีสำหรับ ReFS และใช่ 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_en": "Which ReFS has yes v3.0 for NTFS?",
    "question_th": "ReFS ใดที่มีใช่ v3.0 สำหรับ 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_en": "Which NTFS has a no for ReFS and a yes for HPFS?",
    "question_th": "NTFS ใดที่ไม่มีสำหรับ ReFS และใช่สำหรับ 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_en": "What home team plays at glenferrie oval?",
    "question_th": "ทีมเหย้าทีมใดเล่นที่ 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_en": "What is the away side that playes at lake oval?",
    "question_th": "ทีมเยือนเล่นที่ทะเลสาบโอวัลคืออะไร?",
    "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_en": "Who is the away team at western oval?",
    "question_th": "ทีมเยือนเวสเทิร์นโอวัลคือใคร?",
    "context": "CREATE TABLE table_name_84 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT icelandic_title FROM table_name_28 WHERE norwegian_title = \"galgeblomsten\"",
    "question_en": "What is the Icelandic title for the Norweigan titled galgeblomsten?",
    "question_th": "ชื่อภาษาไอซ์แลนด์สำหรับภาษานอร์เวย์ชื่อ 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_en": "When is the event at lake oval?",
    "question_th": "งานที่ 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_en": "What is the away team's score at western oval?",
    "question_th": "คะแนนของทีมเยือนที่เวสเทิร์นรีคือเท่าไร?",
    "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_en": "What's the home team's score at lake oval?",
    "question_th": "เจ้าบ้านที่เลคโอวัลสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_89 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_87 WHERE venue = \"mcg\"",
    "question_en": "What date did VFL play MCG?",
    "question_th": "VFL เล่น 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_en": "How many times is st kilda the away team?",
    "question_th": "เซนต์คิลดาเป็นทีมเยือนกี่ครั้ง?",
    "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_en": "When the crowd was larger than 20,915 what did the Away team score?",
    "question_th": "เมื่อคนดูเยอะกว่า 20,915 ทีมเยือนได้คะแนนเท่าไหร่?",
    "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_en": "What did the Away team score in their game at Victoria Park?",
    "question_th": "ทีมเยือนได้คะแนนอะไรในเกมที่วิคตอเรีย พาร์ค?",
    "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_en": "What did the Home team score when they were in MCG?",
    "question_th": "ทีมเหย้าทำคะแนนได้เท่าไหร่เมื่ออยู่ในเอ็มซีจี?",
    "context": "CREATE TABLE table_name_25 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_48 WHERE game_site = \"foxboro stadium\"",
    "question_en": "What was the attendance for each game held at Foxboro Stadium?",
    "question_th": "ผู้เข้าร่วมในแต่ละเกมที่จัดขึ้นที่ 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_en": "When was the game against the Indianapolis Colts?",
    "question_th": "เกมกับ 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_en": "How many weeks total did the New York Jets face the Pittsburgh Steelers?",
    "question_th": "New York Jets เผชิญหน้ากับ 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_en": "What week did the Jets play in the meadowlands with and attendance of 78,161?",
    "question_th": "ทีมเจ็ตส์เล่นในทุ่งหญ้าด้วยจำนวนผู้เข้าร่วม 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_en": "Who did the Jets play in the Meadowlands on week 14?",
    "question_th": "Jets เล่นกับใครใน Meadowlands ในสัปดาห์ที่ 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_en": "What was the Jets week 17 attendance?",
    "question_th": "การเข้าร่วม Jets สัปดาห์ที่ 17 คืออะไร?",
    "context": "CREATE TABLE table_name_21 (attendance VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT opening_date FROM table_name_80 WHERE hotel_rooms = 727",
    "question_en": "When did the hotel with 727 rooms open?",
    "question_th": "โรงแรมที่มีห้องพัก 727 ห้อง เปิดเมื่อไหร่?",
    "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_en": "Which school(s) had a wide receiver drafted in round 4?",
    "question_th": "โรงเรียนใดมี Wide Receiver ในรอบที่ 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_en": "Who was the opponent before week 6 at cleveland municipal stadium?",
    "question_th": "คู่ต่อสู้ก่อนสัปดาห์ที่ 6 ที่สนามกีฬาเทศบาลคลีฟแลนด์คือใคร",
    "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_en": "What date was Richmond the away team?",
    "question_th": "ริชมอนด์ทีมเยือนจัดวันไหน?",
    "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_en": "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?",
    "question_th": "มณฑลใดมี % (2040) มากกว่า 1.8, % (2000) น้อยกว่า 4.1, % (1960) น้อยกว่า 3.2 และอยู่ในอันดับที่ 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_en": "What is the % (1960) of Troms, which has a % (2040) smaller than 100 and a % (2000) smaller than 4.7?",
    "question_th": "% (1960) ของ Troms คืออะไร ซึ่งมี % (2040) น้อยกว่า 100 และ % (2000) น้อยกว่า 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_en": "What is the % (1960) of the county with a % (2040) of 3.4?",
    "question_th": "% (1960) ของเคาน์ตีที่มี % (2040) เท่ากับ 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_en": "What record company has robert craft conducting?",
    "question_th": "บริษัทแผ่นเสียงใดมีโรเบิร์ต คราฟต์ เป็นผู้ดำเนินการ?",
    "context": "CREATE TABLE table_name_32 (record_company VARCHAR, conductor VARCHAR)"
  },
  {
    "answer": "SELECT conductor FROM table_name_3 WHERE orchestra = \"chicago symphony orchestra\"",
    "question_en": "Who is the conductor when the chicago symphony orchestra is featured?",
    "question_th": "ใครคือวาทยากรในวงชิคาโกซิมโฟนีออร์เคสตรา?",
    "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_en": "How many people attended the Cleveland Browns game on November 11, 1979?",
    "question_th": "มีกี่คนที่เข้าร่วมเกม Cleveland Browns เมื่อวันที่ 11 พฤศจิกายน พ.ศ. 2522",
    "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_en": "The game on September 2, 1979 was during which week of the season?",
    "question_th": "เกมเมื่อวันที่ 2 กันยายน พ.ศ. 2522 เป็นสัปดาห์ใดของฤดูกาล?",
    "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_en": "What was the home team's score at the game where Richmond was the away team?",
    "question_th": "เจ้าบ้านได้สกอร์เท่าไหร่ในเกมที่ ริชมอนด์ เป็นทีมเยือน?",
    "context": "CREATE TABLE table_name_19 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT crowd FROM table_name_40 WHERE away_team = \"essendon\"",
    "question_en": "What was the size of the crowd when Essendon was the away team?",
    "question_th": "เมื่อเอสเซนดอนเป็นทีมเยือนจะมีฝูงชนขนาดไหน?",
    "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_en": "What is the whenbuilt of the Brighton built Blandford Forum with a withdrawn of september 1964?",
    "question_th": "แบลนด์ฟอร์ด ฟอรั่ม สร้างขึ้นเมื่อใด ไบรตันถูกถอนออกเมื่อเดือนกันยายน 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_en": "What was the listed attendance when north melbourne was the home team?",
    "question_th": "การเข้าร่วมงานในรายการเมื่อเมลเบิร์นเหนือเป็นเจ้าบ้านเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_71 (crowd VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_81 WHERE home_team = \"geelong\"",
    "question_en": "What day was geelong the home team?",
    "question_th": "จีลองเข้าทีมเหย้าวันไหน?",
    "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_en": "Who played as the home team when the attendance was more than 30,080?",
    "question_th": "ใครเล่นเป็นเจ้าบ้านตอนมีคนเข้าชมเกิน 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_en": "What was the highest attendance at Junction Oval?",
    "question_th": "ผู้เข้าร่วมที่ 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_en": "What was the away teams score when Hawthorn played as the home team?",
    "question_th": "เมื่อฮอว์ธอร์นเล่นเป็นเจ้าบ้านสกอร์ทีมเยือนเป็นเท่าไหร่?",
    "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_en": "How many bids does Atlantic 10 have?",
    "question_th": "Atlantic 10 มีการประมูลกี่รายการ?",
    "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_en": "What was the away team's score in the game against North Melbourne?",
    "question_th": "คะแนนของทีมเยือนในเกมกับ นอร์ท เมลเบิร์น เป็นเท่าไหร่?",
    "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_en": "What was the average crowd size when the away team was South Melbourne?",
    "question_th": "ขนาดฝูงชนโดยเฉลี่ยเมื่อทีมเยือนคือเซาธ์ เมลเบิร์น คือเท่าใด?",
    "context": "CREATE TABLE table_name_63 (crowd INTEGER, away_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_19 WHERE away_team = \"fitzroy\"",
    "question_en": "At what venue was the away team Fitzroy?",
    "question_th": "ทีมเยือน ฟิตซ์รอย จัดขึ้นที่สนามใด?",
    "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_en": "In what year saw a total distance of 1,870.23 km?",
    "question_th": "ระยะทางรวม 1,870.23 กม. ในปีใด",
    "context": "CREATE TABLE table_name_52 (year VARCHAR, distance VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_42 WHERE year = \"1965\"",
    "question_en": "Who won in 1965?",
    "question_th": "ใครชนะในปี 1965?",
    "context": "CREATE TABLE table_name_42 (winner VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT stages FROM table_name_59 WHERE distance = \"1,648 km\"",
    "question_en": "What stage was 1,648 km achieved?",
    "question_th": "ระยะทาง 1,648 กม. บรรลุระยะใด?",
    "context": "CREATE TABLE table_name_59 (stages VARCHAR, distance VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_54 WHERE stages = \"8\"",
    "question_en": "What year was stage 8 reached?",
    "question_th": "ขั้นที่ 8 มาถึงปีไหน?",
    "context": "CREATE TABLE table_name_54 (year VARCHAR, stages VARCHAR)"
  },
  {
    "answer": "SELECT MIN(bronze) FROM table_name_91 WHERE rank > 13",
    "question_en": "What is the lowest number of bronze medals for teams ranked below 13?",
    "question_th": "จำนวนเหรียญทองแดงต่ำสุดสำหรับทีมอันดับต่ำกว่า 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_en": "How many golds for teams ranking below 7 with 3 bronze and less than 5 total medals?",
    "question_th": "จำนวนเหรียญทองสำหรับทีมอันดับต่ำกว่า 7 โดยมี 3 เหรียญทองแดงและเหรียญรวมน้อยกว่า 5 เหรียญ",
    "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_en": "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?",
    "question_th": "คะแนนต่ำสุดในคอลัมน์คะแนนสูงสุดเมื่อ Master P เป็นนักเต้นที่แย่ที่สุด Drew Lachey เป็นนักเต้นที่ดีที่สุด และคะแนนต่ำสุดคือต่ำกว่า 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_en": "Which of the Worst dancer(s) has the Lowest score of 14?",
    "question_th": "นักเต้นคนไหนที่แย่ที่สุดมีคะแนนต่ำสุดคือ 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_en": "What is the Dance with the Highest score under 30 and Stacy Keibler as the Best dancer(s)?",
    "question_th": "การเต้นรำที่มีคะแนนสูงสุดต่ำกว่า 30 และ Stacy Keibler เป็นนักเต้นที่ดีที่สุดคืออะไร?",
    "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_en": "What is the lowest of the Highest score for the Quickstep Dance and the Lowest score under 16?",
    "question_th": "คะแนนต่ำสุดของคะแนนสูงสุดสำหรับ Quickstep Dance และคะแนนต่ำสุดต่ำกว่า 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_en": "What is his record at ufc 67?",
    "question_th": "บันทึกของเขาที่ ufc 67 คืออะไร?",
    "context": "CREATE TABLE table_name_20 (record VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_14 WHERE event = \"ufc 115\"",
    "question_en": "What is his record at ufc 115?",
    "question_th": "ประวัติของเขาใน ufc 115 คืออะไร?",
    "context": "CREATE TABLE table_name_14 (record VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_48 WHERE attendance = \"40,070\"",
    "question_en": "Which opponent had an attendance of 40,070?",
    "question_th": "คู่ต่อสู้คนไหนมีผู้ชม 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_en": "What's the result for the game held on December 27, 2004 with a week greater than 2?",
    "question_th": "ผลการแข่งขันที่จัดขึ้นในวันที่ 27 ธันวาคม พ.ศ. 2547 โดยมีสัปดาห์มากกว่า 2 สัปดาห์เป็นอย่างไร",
    "context": "CREATE TABLE table_name_4 (result VARCHAR, week VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_40 WHERE week = 6",
    "question_en": "Who was the opponent for week 6?",
    "question_th": "คู่ต่อสู้ในสัปดาห์ที่ 6 คือใคร?",
    "context": "CREATE TABLE table_name_40 (opponent VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_64 WHERE result = \"w 24-14\"",
    "question_en": "Which opponent had the result of W 24-14?",
    "question_th": "คู่ต่อสู้คนใดมีผลการแข่งขัน 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_en": "What's the attendance for the game held on January 2, 2005?",
    "question_th": "ผู้เข้าชมเกมดังกล่าวในวันที่ 2 มกราคม พ.ศ. 2548 มีผู้เข้าชมเป็นจำนวนเท่าใด",
    "context": "CREATE TABLE table_name_28 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_26 WHERE attendance > 33 OFFSET 435",
    "question_en": "Which had an attendance of larger than 33,435?",
    "question_th": "ซึ่งมีผู้เข้าร่วมมากกว่า 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_en": "Which team lost under interim head coach, Dewayne Walker?",
    "question_th": "ทีมใดแพ้ภายใต้เฮดโค้ชชั่วคราว ดิเวย์น วอล์คเกอร์?",
    "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_en": "What was the result under interim head coach, Gary Darnell?",
    "question_th": "ผลลัพธ์ภายใต้หัวหน้าโค้ชชั่วคราว แกรี่ ดาร์เนลล์ คืออะไร?",
    "context": "CREATE TABLE table_name_62 (result VARCHAR, interim_head_coach VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_21 WHERE bowl = \"humanitarian\"",
    "question_en": "What team has a bowl of humanitarian?",
    "question_th": "ทีมไหนมีชามแห่งมนุษยธรรม?",
    "context": "CREATE TABLE table_name_21 (team VARCHAR, bowl VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_29 WHERE season_coach = \"rich rodriguez\"",
    "question_en": "What is the result under the season coach Rich Rodriguez?",
    "question_th": "ผลการแข่งขันในฤดูกาลนี้ โค้ชริช โรดริเกซ เป็นอย่างไร?",
    "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_en": "Who is the 2008 head coach of UCLA?",
    "question_th": "ใครคือหัวหน้าโค้ชของ UCLA ปี 2008?",
    "context": "CREATE TABLE table_name_7 (team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_43 WHERE opponent_in_the_final = \"marcos daniel\"",
    "question_en": "In what score did the match against Marcos Daniel end?",
    "question_th": "แมตช์กับมาร์กอส ดาเนียล จบลงที่คะแนนเท่าไหร่?",
    "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_en": "What was the score of the game played on a clay surface on June 6, 2005?",
    "question_th": "คะแนนของเกมที่เล่นบนพื้นดินเมื่อวันที่ 6 มิถุนายน พ.ศ. 2548 เป็นเท่าใด",
    "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_en": "On what date did the match against Flavio Cipolla, played on a clay surface, occur?",
    "question_th": "การแข่งขันกับ Flavio Cipolla ซึ่งเล่นบนพื้นดินเกิดขึ้นวันไหน?",
    "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_en": "What was Fitzroy's score when they were the home team?",
    "question_th": "ฟิตซ์รอยเมื่อเป็นเจ้าบ้านได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_16 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_43 WHERE away_team = \"hawthorn\"",
    "question_en": "Where was the Hawthorn game played?",
    "question_th": "เกม Hawthorn เล่นที่ไหน?",
    "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_en": "What was the away teams score at Princes Park?",
    "question_th": "คะแนนทีมเยือนที่พรินซ์ พาร์คเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_27 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT rider FROM table_name_39 WHERE speed = \"81.91mph\"",
    "question_en": "Which Rider finished with a speed of 81.91mph?",
    "question_th": "ไรเดอร์คนไหนเข้าเส้นชัยด้วยความเร็ว 81.91 ไมล์ต่อชั่วโมง?",
    "context": "CREATE TABLE table_name_39 (rider VARCHAR, speed VARCHAR)"
  },
  {
    "answer": "SELECT rider FROM table_name_61 WHERE speed = \"80.18mph\"",
    "question_en": "Which Rider finished with a speed of 80.18mph?",
    "question_th": "ไรเดอร์คนไหนเข้าเส้นชัยด้วยความเร็ว 80.18 ไมล์ต่อชั่วโมง?",
    "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_en": "What is the home team's score at princes park?",
    "question_th": "สกอร์เจ้าบ้านที่ปริ้นซ์ ปาร์คเป็นไงบ้าง?",
    "context": "CREATE TABLE table_name_85 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_66 WHERE home_team = \"footscray\"",
    "question_en": "What is the venue for the Footscray home team?",
    "question_th": "สนามของทีมเจ้าบ้าน ฟุตสเครย์ อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_66 (venue VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_86 WHERE venue = \"windy hill\"",
    "question_en": "Which home team's venue is Windy Hill?",
    "question_th": "วินดี้ ฮิลล์ สนามของเจ้าบ้านทีมไหน?",
    "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_en": "What is the score for Hawthorn as an away team?",
    "question_th": "ฮอว์ธอร์นในฐานะทีมเยือนได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_7 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team AS score FROM table_name_12 WHERE home_team = \"essendon\"",
    "question_en": "What is the score of the away team when the home team is Essendon?",
    "question_th": "ทีมเยือนเมื่อเจ้าบ้านเป็นเอสเซนดอนมีสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_12 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_18 WHERE home_team = \"fitzroy\"",
    "question_en": "What date was the Home team fitzroy?",
    "question_th": "ฟิตซ์รอยทีมเหย้าจัดวันไหน?",
    "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_en": "What is the largest crowd when st kilda was the away team?",
    "question_th": "ฝูงชนที่ใหญ่ที่สุดคือทีมใดเมื่อเซนต์คิลดาเป็นทีมเยือน?",
    "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_en": "What was the score of essendon when they were the away team?",
    "question_th": "เอสเซนดอนเมื่อเป็นทีมเยือนได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_15 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_93 WHERE venue = \"western oval\"",
    "question_en": "What home team played at the western oval?",
    "question_th": "ทีมเหย้าทีมใดเล่นที่วงรีตะวันตก?",
    "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_en": "Which mid-hill zone has a slightly warm temperature?",
    "question_th": "โซนกลางเนินเขาใดมีอุณหภูมิอุ่นเล็กน้อย?",
    "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_en": "Which one took place on December 3, 1995?",
    "question_th": "เหตุการณ์ใดเกิดขึ้นในวันที่ 3 ธันวาคม พ.ศ. 2538",
    "context": "CREATE TABLE table_name_60 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_79 WHERE opponent = \"new orleans saints\"",
    "question_en": "Who was the opponent of the New Orleans Saints?",
    "question_th": "ใครคือคู่ต่อสู้ของ 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_en": "What grid has 23 laps done by Josh Brookes?",
    "question_th": "Josh Brookes ทำกริดใดได้ 23 รอบ?",
    "context": "CREATE TABLE table_name_1 (grid VARCHAR, laps VARCHAR, rider VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_69 WHERE rider = \"noriyuki haga\"",
    "question_en": "What is noriyuki haga's time?",
    "question_th": "โนริยูกิ ฮากะ กี่โมง?",
    "context": "CREATE TABLE table_name_69 (time VARCHAR, rider VARCHAR)"
  },
  {
    "answer": "SELECT laps FROM table_name_37 WHERE time = \"+28.778\"",
    "question_en": "What laps have a Time of +28.778?",
    "question_th": "รอบใดมีเวลา +28.778?",
    "context": "CREATE TABLE table_name_37 (laps VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_46 WHERE away_team = \"hawthorn\"",
    "question_en": "Where was the game held where Hawthorn was the away team?",
    "question_th": "เกมนี้จัดขึ้นที่ไหนโดยฮอว์ธอร์นเป็นทีมเยือน?",
    "context": "CREATE TABLE table_name_46 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_42 WHERE home_team = \"richmond\"",
    "question_en": "What was the date of the game when Richmond was the home team?",
    "question_th": "เกมวันที่ริชมอนด์เป็นเจ้าบ้านคือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_42 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_44 WHERE venue = \"kardinia park\"",
    "question_en": "Who was the home team at the game played at Kardinia Park?",
    "question_th": "ทีมเจ้าบ้านในเกมที่เล่นที่คาร์ดิเนียพาร์คคือใคร?",
    "context": "CREATE TABLE table_name_44 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_31 WHERE venue = \"mcg\"",
    "question_en": "What is the date of the game when the venue is MCG?",
    "question_th": "วันที่จัดการแข่งขันคือวันที่ใดที่สนาม 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_en": "What is the home team score when the away team is Essendon?",
    "question_th": "เมื่อเจ้าบ้านเป็นเอสเซนดอนสกอร์เท่าไหร่?",
    "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_en": "What is the name of the away team whose venue is Kardinia Park?",
    "question_th": "ทีมเยือนชื่ออะไร สนามคาร์ดิเนีย ปาร์ค?",
    "context": "CREATE TABLE table_name_73 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_33 WHERE stadium = \"bye week\"",
    "question_en": "What was the result when they were on a bye week?",
    "question_th": "ผลลัพธ์เป็นอย่างไรเมื่อพวกเขาลาก่อนสัปดาห์?",
    "context": "CREATE TABLE table_name_33 (result VARCHAR, stadium VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_99 WHERE attendance = \"25,418\"",
    "question_en": "What was the result when the attendance was 25,418?",
    "question_th": "ผลเป็นอย่างไรเมื่อมีผู้เข้าร่วม 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_en": "Which of the Latest version was released on Release date 1987-12-09?",
    "question_th": "เวอร์ชันล่าสุดใดที่เผยแพร่ในวันที่วางจำหน่าย 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_en": "Which Source model has a 16-bit* Architecture?",
    "question_th": "โมเดล Source ใดมีสถาปัตยกรรม 16 บิต*",
    "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_en": "Which of the Latest version had a 16-bit Architecture and was released on Release date 1985-11-20?",
    "question_th": "เวอร์ชันล่าสุดใดมีสถาปัตยกรรม 16 บิตและเผยแพร่ในวันที่วางจำหน่าย 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_en": "Which Architecture was released on Release date 1988-05-27?",
    "question_th": "สถาปัตยกรรมใดที่เผยแพร่ในวันที่วางจำหน่าย 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_en": "Which Source model has a Release date of 1992-04-06?",
    "question_th": "รุ่น Source ใดมีวันวางจำหน่ายวันที่ 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_en": "Who is the away side when collingwood is at home?",
    "question_th": "ใครคือทีมเยือนเมื่อคอลลิงวูดอยู่ที่บ้าน?",
    "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_en": "Who is the home team at arden street oval?",
    "question_th": "ทีมเจ้าบ้านที่อาร์เดน สตรีท โอวัลคือใคร?",
    "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_en": "What is the WPW freq with a day power of 250?",
    "question_th": "ความถี่ WPW ที่มีกำลังวัน 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_en": "Is WPEO in stereo?",
    "question_th": "WPEO อยู่ในระบบสเตอริโอหรือไม่?",
    "context": "CREATE TABLE table_name_37 (stereo VARCHAR, call VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_3 WHERE name = \"park tae-hwan\"",
    "question_en": "What is Park Tae-Hwan's final time?",
    "question_th": "ครั้งสุดท้ายของ Park Tae-Hwan คืออะไร?",
    "context": "CREATE TABLE table_name_3 (time VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT MAX(crowd) FROM table_name_54 WHERE away_team = \"carlton\"",
    "question_en": "What was the largest crowd for an away Carlton game?",
    "question_th": "แฟนบอลมากที่สุดในเกมเยือนคาร์ลตันคือกลุ่มใด?",
    "context": "CREATE TABLE table_name_54 (crowd INTEGER, away_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_20 WHERE venue = \"corio oval\"",
    "question_en": "Who was the home team for the game played at Corio Oval?",
    "question_th": "ใครคือเจ้าบ้านในเกมที่เล่นที่โคริโอโอวัล?",
    "context": "CREATE TABLE table_name_20 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_62 WHERE position = \"safety\"",
    "question_en": "The safety position is represented in the draft by which colleges?",
    "question_th": "ตำแหน่งด้านความปลอดภัยอยู่ในร่างของวิทยาลัยใด",
    "context": "CREATE TABLE table_name_62 (college VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(round) FROM table_name_94 WHERE college = \"georgia\"",
    "question_en": "In how many rounds of the draft was there a college from Georgia involved?",
    "question_th": "มีวิทยาลัยจากจอร์เจียเข้ามาเกี่ยวข้องในการร่างกี่รอบ?",
    "context": "CREATE TABLE table_name_94 (round VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT time_retired FROM table_name_44 WHERE driver = \"jan heylen (r)\"",
    "question_en": "What is the Time of Driver Jan Heylen (r)?",
    "question_th": "คนขับรถ แจน เฮย์เลน (ขวา) เวลาเท่าไหร่?",
    "context": "CREATE TABLE table_name_44 (time_retired VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT grid FROM table_name_10 WHERE driver = \"cristiano da matta\"",
    "question_en": "What Grid has Driver Cristiano da Matta?",
    "question_th": "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_en": "Which Driver has less than 84 laps, more than 9 points and is on Rocketsports Racing Team?",
    "question_th": "นักแข่งคนไหนมีรอบน้อยกว่า 84 รอบ มากกว่า 9 แต้ม และอยู่ในทีม Rocketsports Racing?",
    "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_en": "Which team has less than 73 laps and a gearbox time?",
    "question_th": "ทีมใดมีรอบน้อยกว่า 73 รอบและมีเวลาเกียร์?",
    "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_en": "What is the car with the lowest extinct year that has a NBR class of 32?",
    "question_th": "รถที่สูญพันธุ์น้อยที่สุดที่มีคลาส NBR 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_en": "What is the home team that played at Corio Oval?",
    "question_th": "เจ้าบ้านเคยเล่นที่โคริโอโอวัลคือทีมอะไร?",
    "context": "CREATE TABLE table_name_54 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_2 WHERE home_team = \"st kilda\"",
    "question_en": "On which date was St Kilda the home team?",
    "question_th": "เซนต์คิลดาเป็นเจ้าบ้านวันไหน?",
    "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_en": "What is the Austin record of Kansas State?",
    "question_th": "บันทึกออสตินของรัฐแคนซัสคืออะไร?",
    "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_en": "What was the result of the last 5 meetings for a team with an L 1 streak?",
    "question_th": "ผลการพบกัน 5 นัดหลังสุดของทีมนำ แอล 1 เป็นอย่างไร?",
    "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–6, 3–6\"",
    "question_en": "Who is the partner on a date later than 1971 who is the runner-up with a score of 3–6, 3–6?",
    "question_th": "ใครคือคู่ครองที่ออกเดทช้ากว่าปี 1971 ใครคือรองชนะเลิศด้วยคะแนน 3–6, 3–6?",
    "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_en": "What is the first year that Mario Lemieux from Canada won playing center?",
    "question_th": "ปีแรกที่ Mario Lemieux จากแคนาดาได้เล่นเซ็นเตอร์คือปีไหน?",
    "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_en": "What country did mario lemieux play for in 1994?",
    "question_th": "มาริโอ เลมิเออซ์เล่นให้กับประเทศใดในปี 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_en": "What player played center in 2010?",
    "question_th": "นักเตะคนไหนเล่นเซนเตอร์ในปี 2010?",
    "context": "CREATE TABLE table_name_9 (player VARCHAR, position VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_63 WHERE venue = \"esher\"",
    "question_en": "Who is the player associated with the Esher venue?",
    "question_th": "ใครคือผู้เล่นที่เกี่ยวข้องกับสนาม Esher?",
    "context": "CREATE TABLE table_name_63 (player VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_70 WHERE pens = \"0\" AND tries = \"1\"",
    "question_en": "In which venue did 0 pens and 1 try occur?",
    "question_th": "0 ปากกาและ 1 ลองเกิดขึ้นที่สนามใด?",
    "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_en": "What was the score of the game against the St. Louis Cardinals?",
    "question_th": "ในเกมกับเซนต์หลุยส์ คาร์ดินัลส์มีสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_82 (result VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT model FROM table_name_52 WHERE cpu_speed = \"133mhz\"",
    "question_en": "Which model has a CPU speed of 133mhz?",
    "question_th": "รุ่นใดมีความเร็ว CPU 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_en": "Which model has a maximum memory of 512 mb?",
    "question_th": "รุ่นไหนมีหน่วยความจำสูงสุด 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_en": "What is the maximum memory of the model that has a standard memory of 16 mb?",
    "question_th": "หน่วยความจำสูงสุดของรุ่นที่มีหน่วยความจำมาตรฐาน 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_en": "What is the largest crowd for a Melbourne away team?",
    "question_th": "ทีมเยือนเมลเบิร์นมีผู้ชมมากที่สุดคือกลุ่มใด?",
    "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_en": "What is the home team score when the home team is Essendon?",
    "question_th": "เมื่อเจ้าบ้านเป็นเอสเซนดอนสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_80 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_63 WHERE date = \"december 20, 1998\"",
    "question_en": "Which opponent was playing on December 20, 1998?",
    "question_th": "คู่ต่อสู้คนใดกำลังเล่นในวันที่ 20 ธันวาคม พ.ศ. 2541?",
    "context": "CREATE TABLE table_name_63 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_85 WHERE venue = \"princes park\"",
    "question_en": "When was the game that was held at the Princes Park?",
    "question_th": "เกมที่จัดขึ้นที่ 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_en": "What was the smallest crowd size at a home game for Footscray?",
    "question_th": "จำนวนผู้ชมที่น้อยที่สุดในเกมเหย้าของ 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_en": "What was Melbourne's score as the home team?",
    "question_th": "เมลเบิร์นทำสกอร์เป็นเจ้าบ้านเท่าไหร่?",
    "context": "CREATE TABLE table_name_91 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_96 WHERE home_team = \"fitzroy\"",
    "question_en": "What was the away team that played Fitzroy?",
    "question_th": "ทีมเยือนที่เล่นฟิตซ์รอยคือทีมอะไร?",
    "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_en": "What was the sum of the crowds at Western Oval?",
    "question_th": "จำนวนฝูงชนที่ Western Oval เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_65 (crowd INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_55 WHERE year = 1907",
    "question_en": "What country had a winner in 1907?",
    "question_th": "ประเทศใดมีผู้ชนะในปี 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_en": "What velodrome took place earlier than 1950 with a winner from France in tandem paced over a distance of 951.750 km?",
    "question_th": "สนามแม่เหล็กใดเกิดขึ้นก่อนปี 1950 โดยมีผู้ชนะจากฝรั่งเศสวิ่งตามกันในระยะทาง 951.750 กม.",
    "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_en": "Where was the game played when they kickoff was 12:00 p.m., and a Record of 8-5?",
    "question_th": "เกมนี้เล่นที่ไหนตอนคิกออฟเวลา 12.00 น. และสถิติ 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_en": "What date has a Game site of bye?",
    "question_th": "เว็บไซต์เกมบายมีวันไหน?",
    "context": "CREATE TABLE table_name_77 (date VARCHAR, game_site VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_75 WHERE \"kickoff\" = \"kickoff\"",
    "question_en": "What is the record which shows Kickoff as kickoff?",
    "question_th": "บันทึกที่แสดงว่า Kickoff เป็น Kickoff คืออะไร?",
    "context": "CREATE TABLE table_name_75 (record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_46 WHERE game_site = \"raymond james stadium\"",
    "question_en": "What is the record when the game was played at raymond james stadium?",
    "question_th": "เกมนี้เล่นที่ เรย์มอนด์ เจมส์ สเตเดี้ยม มีสถิติเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_46 (record VARCHAR, game_site VARCHAR)"
  },
  {
    "answer": "SELECT kickoff FROM table_name_30 WHERE date = \"october 22, 2000\"",
    "question_en": "What is the kickoff for the game on october 22, 2000?",
    "question_th": "กำหนดการสำหรับเกมในวันที่ 22 ตุลาคม พ.ศ. 2543 คืออะไร?",
    "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_en": "Which Hindi network is based in India and uses dish service and shows general programming?",
    "question_th": "เครือข่ายภาษาฮินดีใดที่อยู่ในอินเดียและใช้บริการจานและแสดงรายการทั่วไป",
    "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_en": "Which language is used by the optimum TV service that shows cricket and is based in the United States?",
    "question_th": "ภาษาใดที่ใช้โดยบริการทีวีที่เหมาะสมที่สุดซึ่งแสดงคริกเก็ตและตั้งอยู่ในสหรัฐอเมริกา",
    "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_en": "What is the origin of the Malayalam Dish Service that shows general programming on the Asianet Plus network?",
    "question_th": "ต้นกำเนิดของ Malayalam Dish Service ที่แสดงโปรแกรมทั่วไปบนเครือข่าย Asianet Plus คืออะไร?",
    "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_en": "What is the average grid number with a ferrari and a time or retired time of 1:32:35.101?",
    "question_th": "หมายเลขกริดเฉลี่ยของเฟอร์รารีและเวลาหรือเวลาที่เกษียณคือ 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_en": "What week of the season was November 24, 1957?",
    "question_th": "สัปดาห์ใดของฤดูกาลคือวันที่ 24 พฤศจิกายน พ.ศ. 2500",
    "context": "CREATE TABLE table_name_74 (week VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_41 WHERE opponent = \"san diego chargers\"",
    "question_en": "What was the score of the game against the San Diego Chargers?",
    "question_th": "ในเกมกับซานดิเอโก ชาร์จเจอร์สมีสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_41 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT MAX(week) FROM table_name_40 WHERE date = \"november 5, 1995\"",
    "question_en": "What is the latest week with the date of november 5, 1995?",
    "question_th": "สัปดาห์ล่าสุดคือวันที่ 5 พฤศจิกายน 1995 คืออะไร?",
    "context": "CREATE TABLE table_name_40 (week INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_30 WHERE tournament = \"buenos aires\"",
    "question_en": "What was the outcome of the Tournament in Buenos Aires?",
    "question_th": "ผลการแข่งขันที่บัวโนสไอเรสเป็นอย่างไร?",
    "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_en": "In the match played with partner Andres Molteni, with the outcome of winner, who was the opponent?",
    "question_th": "แมตช์นี้เล่นกับคู่หู อันเดรส โมลเทนี่ โดยผลผู้ชนะคือคู่ต่อสู้คือใคร?",
    "context": "CREATE TABLE table_name_45 (opponent VARCHAR, outcome VARCHAR, partner VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_8 WHERE span = \"1998-2009\"",
    "question_en": "What is the player with a Span of 1998-2009?",
    "question_th": "นักเตะที่มีสแปนระหว่างปี 1998-2009 คืออะไร?",
    "context": "CREATE TABLE table_name_8 (player VARCHAR, span VARCHAR)"
  },
  {
    "answer": "SELECT draw FROM table_name_85 WHERE span = \"1987-1999\"",
    "question_en": "What draw has a Span of 1987-1999?",
    "question_th": "งวดใดมีช่วงปี 1987-1999?",
    "context": "CREATE TABLE table_name_85 (draw VARCHAR, span VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_54 WHERE span = \"1997-2009\"",
    "question_en": "What player has a span of 1997-2009?",
    "question_th": "นักเตะคนไหนมีช่วงปี 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_en": "What round did Takayo Hashi face Yoko Hattori?",
    "question_th": "ทาคาโยะ ฮาชิ ปะทะ โยโกะ ฮัตโตริ ยกที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_14 (round INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_51 WHERE venue = \"princes park\"",
    "question_en": "What was the away team that played at Princes Park?",
    "question_th": "ทีมเยือนที่เล่นที่พรินซ์ พาร์ค คือทีมอะไร?",
    "context": "CREATE TABLE table_name_51 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_5 WHERE away_team = \"footscray\"",
    "question_en": "What was the date when Footscray was the away team?",
    "question_th": "ฟุตสเครย์เป็นทีมเยือนวันที่เท่าไหร่?",
    "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_en": "What was the home team's score in the match at Victoria Park?",
    "question_th": "สกอร์ของเจ้าบ้านในแมตช์ที่ วิคตอเรีย พาร์ค เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_6 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_61 WHERE away_team = \"south melbourne\"",
    "question_en": "On what date was South Melbourne the away team?",
    "question_th": "เซาท์ เมลเบิร์น เป็นทีมเยือนวันไหน?",
    "context": "CREATE TABLE table_name_61 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_77 WHERE home_team = \"carlton\"",
    "question_en": "What away team did Carlton play?",
    "question_th": "คาร์ลตันเล่นทีมเยือนทีมใด?",
    "context": "CREATE TABLE table_name_77 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT SUM(bronze) FROM table_name_45 WHERE silver > 3",
    "question_en": "What is the sum of bronze when silver is greater than 3?",
    "question_th": "ผลรวมของทองแดงเมื่อเงินมากกว่า 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_en": "What is the average total when gold is 0, bronze is 0, and silver is smaller than 1?",
    "question_th": "ผลรวมเฉลี่ยเมื่อทองคำเป็น 0 ทองแดงเป็น 0 และเงินน้อยกว่า 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_en": "What was the total attendance in week 8?",
    "question_th": "ผู้เข้าร่วมทั้งหมดในสัปดาห์ที่ 8 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_96 (attendance VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_49 WHERE date = 2007",
    "question_en": "Who was the winner in 2007?",
    "question_th": "ใครคือผู้ชนะในปี 2550?",
    "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_en": "What sport was played before 2006 with a loser of france b?",
    "question_th": "ก่อนปี 2549 มีการเล่นกีฬาอะไรกับผู้แพ้ฝรั่งเศสข?",
    "context": "CREATE TABLE table_name_93 (sport VARCHAR, date VARCHAR, loser VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_66 WHERE loser = \"russia-2\"",
    "question_en": "Who was the winner with the loser being russia-2?",
    "question_th": "ใครเป็นผู้ชนะ โดยผู้แพ้คือ รัสเซีย-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_en": "Who was the loser playing football with england b as a winner after 1992?",
    "question_th": "ใครคือผู้แพ้ที่เล่นฟุตบอลกับอังกฤษในฐานะผู้ชนะหลังปี 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_en": "What was the name of the race that occurred in Brooklyn, Michigan with a sanctioning of cart?",
    "question_th": "การแข่งขันที่เกิดขึ้นในบรูคลิน รัฐมิชิแกน โดยมีการคว่ำบาตรรถเข็นชื่ออะไร",
    "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_en": "Where did the Gould Rex Mays Classic 150 occur?",
    "question_th": "Gould Rex Mays Classic 150 เกิดขึ้นที่ไหน?",
    "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_en": "What is the date for the race that has a circuit of Milwaukee Mile and the sanctioning of cart?",
    "question_th": "การแข่งขันที่มีวงจร Milwaukee Mile และการลงโทษรถเข็นคือวันที่ใด",
    "context": "CREATE TABLE table_name_10 (date VARCHAR, circuit VARCHAR, sanctioning VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_25 WHERE uk_albums = \"15\"",
    "question_en": "15 albums were released in the UK during which year?",
    "question_th": "15 อัลบั้มออกจำหน่ายในสหราชอาณาจักรในช่วงปีใด",
    "context": "CREATE TABLE table_name_25 (year VARCHAR, uk_albums VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_60 WHERE home_team = \"collingwood\"",
    "question_en": "What is the venue where Collingwood played as the home team?",
    "question_th": "สนามที่คอลลิงวูดเล่นเป็นทีมเจ้าบ้านคือที่ไหน?",
    "context": "CREATE TABLE table_name_60 (venue VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT AVG(crowd) FROM table_name_59 WHERE home_team = \"footscray\"",
    "question_en": "What is the size of the crowd for the game with Footscray as the home team?",
    "question_th": "เกมนี้จะมีฟุตสเครย์เป็นเจ้าบ้านขนาดไหน?",
    "context": "CREATE TABLE table_name_59 (crowd INTEGER, home_team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(crowd) FROM table_name_9 WHERE home_team = \"footscray\"",
    "question_en": "What is the largest crowd for any game where Footscray is the home team?",
    "question_th": "อะไรคือฝูงชนที่ใหญ่ที่สุดสำหรับเกมใดๆ ที่ Footscray เป็นเจ้าบ้าน?",
    "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_en": "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?",
    "question_th": "จำนวนเสมอสูงสุดเมื่อผลต่างน้อยกว่า 186 แต้มน้อยกว่า 12 แต้ม และเกมที่เล่นน้อยกว่า 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_en": "What is the average diff when games played are more than 6?",
    "question_th": "ความแตกต่างโดยเฉลี่ยเมื่อเล่นเกมมากกว่า 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_en": "What is the highest draws when more than 6 are played and the points against are 54?",
    "question_th": "อะไรคือสิ่งที่เสมอกันสูงสุดเมื่อมีการเล่นมากกว่า 6 และแต้มต่อคือ 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_en": "What is the maximum number of points against when the team has more than 0 losses and plays fewer than 6 games?",
    "question_th": "จำนวนแต้มสูงสุดเมื่อทีมแพ้มากกว่า 0 และเล่นน้อยกว่า 6 เกมคือเท่าไร?",
    "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_en": "What is the number of games played for the team with 12 points and an against smaller than 52?",
    "question_th": "จำนวนเกมที่เล่นให้กับทีมที่มี 12 แต้มและน้อยกว่า 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_en": "What is the lowest average parish size with 47.2% of adherents and 4,936 regular attendees?",
    "question_th": "ขนาดวัดเฉลี่ยต่ำสุดที่มีผู้นับถือ 47.2% และผู้เข้าร่วมประจำ 4,936 คนคือเท่าใด",
    "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_en": "What is the average regular number of attendees that has 79 parishes?",
    "question_th": "จำนวนผู้เข้าร่วมปกติโดยเฉลี่ยที่มี 79 วัดคือเท่าไร?",
    "context": "CREATE TABLE table_name_36 (regular_attendees INTEGER, parishes VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_20 WHERE circuit = \"lille\"",
    "question_en": "Which Grand Prix has the Circuit of Lille?",
    "question_th": "กรังด์ปรีซ์ใดที่มี 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_en": "Which winning driver of the Roussillon Grand Prix had an Alfa Romeo?",
    "question_th": "นักแข่งที่ชนะการแข่งขัน Roussillon Grand Prix คนใดมี 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_en": "Which Constructor won the Roussillon Grand Prix?",
    "question_th": "คอนสตรัคเตอร์คนไหนที่ชนะ 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_en": "Which Driver won the Circuit of Rio de Janeiro?",
    "question_th": "นักแข่งคนไหนชนะการแข่งขัน 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_en": "What day did the VFL pay MCG?",
    "question_th": "VFL จ่ายเงิน MCG วันไหน?",
    "context": "CREATE TABLE table_name_90 (date VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_64 WHERE date = \"november 4, 1973\"",
    "question_en": "What was November 4, 1973 attendance?",
    "question_th": "ผู้เข้าร่วมวันที่ 4 พฤศจิกายน 2516 คืออะไร?",
    "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_en": "What is the number of laps with a Constructor of renault, and a driver of jacques villeneuve?",
    "question_th": "จำนวนรอบกับ Constructor ของ renault และคนขับของ 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_en": "What is the time/retired for grid 3?",
    "question_th": "เวลา/เกษียณสำหรับตารางที่ 3 คืออะไร?",
    "context": "CREATE TABLE table_name_19 (time_retired VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT time_retired FROM table_name_95 WHERE grid = 8",
    "question_en": "What is the time/retired for grid 8?",
    "question_th": "เวลา/เกษียณสำหรับกริด 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_en": "What is the time/retired for a grid larger than 11, laps larger than 41, and nick heidfeld?",
    "question_th": "เวลา/เลิกใช้สำหรับกริดที่มากกว่า 11 รอบที่มากกว่า 41 และนิค ไฮด์เฟลด์คือเท่าไร?",
    "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_en": "Who was the driver with less than 53 laps, Grid larger than 17, and a Time/Retired of spin?",
    "question_th": "ใครคือนักแข่งที่ทำเวลาได้น้อยกว่า 53 รอบ, กริดที่มากกว่า 17 รอบ, และเวลา/เลิกการหมุน?",
    "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_en": "Who has won $98,860?",
    "question_th": "ใครถูกรางวัล $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_en": "What team is travelling to play Hawthorn?",
    "question_th": "ทีมไหนจะเดินทางไปเล่นฮอว์ธอร์น?",
    "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_en": "What is the smallest crowd at the Victoria Park Venue?",
    "question_th": "ฝูงชนที่เล็กที่สุดในสถานที่จัดงาน Victoria Park คือเท่าไร?",
    "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_en": "What is the score given by the Home team Geelong?",
    "question_th": "ทีมเจ้าบ้านจีลองได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_37 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(crowd) FROM table_name_87 WHERE venue = \"arden street oval\"",
    "question_en": "What is the largest crowd at arden street oval?",
    "question_th": "ฝูงชนที่ใหญ่ที่สุดใน 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_en": "What is the home side's score at western oval?",
    "question_th": "สกอร์ของเจ้าบ้านที่เวสเทิร์นรีคือเท่าไร?",
    "context": "CREATE TABLE table_name_23 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_90 WHERE state = \"connecticut\"",
    "question_en": "What venue is in the state of Connecticut?",
    "question_th": "สถานที่ใดอยู่ในรัฐคอนเนตทิคัต",
    "context": "CREATE TABLE table_name_90 (venue VARCHAR, state VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_95 WHERE city = \"durham\"",
    "question_en": "What venue is in the city of Durham?",
    "question_th": "สถานที่ใดในเมืองเดอรัม",
    "context": "CREATE TABLE table_name_95 (venue VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT state FROM table_name_5 WHERE venue = \"thomas assembly center\"",
    "question_en": "In what state is the Thomas Assembly Center located?",
    "question_th": "Thomas Assembly Center ตั้งอยู่ในรัฐใด",
    "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_en": "What venue is located in Indiana and hosted at Purdue University?",
    "question_th": "สถานที่ใดตั้งอยู่ในรัฐอินเดียนาและเป็นเจ้าภาพที่มหาวิทยาลัย Purdue",
    "context": "CREATE TABLE table_name_54 (venue VARCHAR, state VARCHAR, host VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_67 WHERE state = \"oklahoma\"",
    "question_en": "What city is located in Oklahoma?",
    "question_th": "เมืองใดตั้งอยู่ในโอคลาโฮมา?",
    "context": "CREATE TABLE table_name_67 (city VARCHAR, state VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_20 WHERE venue = \"united spirit arena\"",
    "question_en": "In what city is the United Spirit Arena located?",
    "question_th": "United Spirit Arena ตั้งอยู่ในเมืองใด?",
    "context": "CREATE TABLE table_name_20 (city VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_84 WHERE date = \"bye\"",
    "question_en": "What was the result when they had their bye week?",
    "question_th": "ผลลัพธ์เป็นอย่างไรเมื่อพวกเขามีสัปดาห์ก่อน?",
    "context": "CREATE TABLE table_name_84 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_78 WHERE date = \"september 7, 1953\"",
    "question_en": "What was the attendance of the Browns' September 7, 1953 game?",
    "question_th": "การเข้าร่วมเกมวันที่ 7 กันยายน พ.ศ. 2496 ของทีมบราวน์ส์เป็นอย่างไรบ้าง",
    "context": "CREATE TABLE table_name_78 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_74 WHERE attendance > 36 OFFSET 796",
    "question_en": "When was the Browns' game that over 36,796 attended?",
    "question_th": "เกมของ Browns มีผู้เข้าร่วมมากกว่า 36,796 คนเมื่อใด",
    "context": "CREATE TABLE table_name_74 (date VARCHAR, attendance INTEGER)"
  },
  {
    "answer": "SELECT young_rider_classification FROM table_name_3 WHERE stage = \"18\"",
    "question_en": "What Young rider classification has a Stage of 18?",
    "question_th": "ประเภท Young Rider ใดมีสเตจที่ 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_en": "Who has a Team classification of la vie claire, a stage of 20, a General classification of greg lemond?",
    "question_th": "ใครมีการจัดประเภททีม la vie claire ระยะ 20 การจัดประเภททั่วไปของ 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_en": "What is the classification with a Team classification of la vie claire and a Stage of 12?",
    "question_th": "การจัดประเภทประเภททีมของ la vie claire และรอบ 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_en": "What is guido bontempi's general classification when he has a stage of 6?",
    "question_th": "การจัดประเภททั่วไปของ Guido Bontempi คืออะไรเมื่อเขามีระดับ 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_en": "What is Ludo Peeters' team classification?",
    "question_th": "การจัดประเภททีมของ Ludo Peeters คืออะไร?",
    "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_en": "Which date had less than 3 goals and a result of (w) 2-0?",
    "question_th": "วันไหนเสียน้อยกว่า 3 ประตู และผล(ญ) 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_en": "On what date was a match held at MCG?",
    "question_th": "แมตช์ที่ MCG จัดขึ้นวันไหน?",
    "context": "CREATE TABLE table_name_50 (date VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT AVG(crowd) FROM table_name_65 WHERE away_team = \"fitzroy\"",
    "question_en": "When Fitzroy are the away team, what is the average crowd size?",
    "question_th": "เมื่อฟิตซ์รอยเป็นทีมเยือน จำนวนคนดูโดยเฉลี่ยคือเท่าไร?",
    "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_en": "What is footscray's away team score?",
    "question_th": "คะแนนทีมเยือนของฟุตสเครย์เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_66 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_37 WHERE opponent = \"jeremija sanders\"",
    "question_en": "What is the record of Jeremija Sanders' opponent?",
    "question_th": "สถิติของคู่ต่อสู้ของ เจเรมีจา แซนเดอร์ส เป็นอย่างไร?",
    "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_en": "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?",
    "question_th": "จำนวนความพยายามโดยเฉลี่ยที่ออกสตาร์ทมากกว่า 32 ครั้งคือผู้เล่นของเซเรเมีย ไบที่มีคะแนนคอนเวอร์ชันมากกว่า 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_en": "For the player fero lasagavibau who has the lowest start?",
    "question_th": "สำหรับนักเตะ เฟโร ลาซากาวิเบา ใครออกสตาร์ทน้อยที่สุด?",
    "context": "CREATE TABLE table_name_71 (start INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_11 WHERE record = \"4-0\"",
    "question_en": "Who was the opponent when Raphael was 4-0?",
    "question_th": "คู่ต่อสู้เมื่อราฟาเอลเป็น 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_en": "What was the average round when he had a 3-0 record?",
    "question_th": "รอบเฉลี่ยของเขาเป็นเท่าไหร่เมื่อเขามีสถิติ 3-0?",
    "context": "CREATE TABLE table_name_18 (round INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_41 WHERE record = \"2-0\"",
    "question_en": "What was the location when he had a 2-0 record?",
    "question_th": "ตำแหน่งใดเมื่อเขามีสถิติ 2-0?",
    "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_en": "What was the result when he went 1 round against jeremy beck?",
    "question_th": "ผลเป็นอย่างไรเมื่อเขาตกรอบ 1 กับ เจเรมี เบ็ค?",
    "context": "CREATE TABLE table_name_4 (res VARCHAR, round VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_34 WHERE city = \"halifax\"",
    "question_en": "What was the result of the game in halifax?",
    "question_th": "ผลการแข่งขันในแฮลิแฟกซ์เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_34 (result VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT stadium FROM table_name_48 WHERE city = \"halifax\"",
    "question_en": "What stadium is located in Halifax?",
    "question_th": "สนามกีฬาใดตั้งอยู่ในแฮลิแฟกซ์",
    "context": "CREATE TABLE table_name_48 (stadium VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_56 WHERE city = \"salford\"",
    "question_en": "What day did they play in salford?",
    "question_th": "พวกเขาเล่นที่ซัลฟอร์ดวันไหน?",
    "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_en": "What was the earliest week the team played the chicago cardinals in front of less than 25,312?",
    "question_th": "สัปดาห์แรกสุดที่ทีมเล่นกับชิคาโกคาร์ดินัลส์ต่อหน้าน้อยกว่า 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_en": "What day did they play on week 4?",
    "question_th": "สัปดาห์ที่ 4 พวกเขาเล่นวันไหน?",
    "context": "CREATE TABLE table_name_25 (date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_2 WHERE week = 1",
    "question_en": "What was the attendance during the week 1 match?",
    "question_th": "ผู้เข้าร่วมระหว่างการแข่งขันสัปดาห์ที่ 1 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_2 (attendance VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT AVG(week) FROM table_name_37 WHERE date = \"november 10, 1963\"",
    "question_en": "During what week was the match on November 10, 1963?",
    "question_th": "แมตช์วันที่ 10 พฤศจิกายน 2506 จัดขึ้นในช่วงสัปดาห์ใด?",
    "context": "CREATE TABLE table_name_37 (week INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_43 WHERE date = \"december 1, 1963\"",
    "question_en": "What was the result of the match on December 1, 1963?",
    "question_th": "ผลการแข่งขันวันที่ 1 ธันวาคม 2506 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_43 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_23 WHERE away_team = \"hawthorn\"",
    "question_en": "What day is hawthorn the away side?",
    "question_th": "ฮอว์ธอร์นฝั่งทีมเยือนออกวันไหน?",
    "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_en": "What is the average crowd size for games with north melbourne as the away side?",
    "question_th": "จำนวนผู้ชมโดยเฉลี่ยสำหรับเกมที่มีเมลเบิร์นเหนือเป็นทีมเยือนคือเท่าใด",
    "context": "CREATE TABLE table_name_22 (crowd INTEGER, away_team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(form) FROM table_name_72 WHERE pages < 18",
    "question_en": "How many forms have less than 18 pages?",
    "question_th": "มีกี่แบบฟอร์มที่มีหน้าน้อยกว่า 18 หน้า?",
    "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_en": "What is the sum of forms with greater than 17 pages and a total of $1,801,154?",
    "question_th": "ผลรวมของแบบฟอร์มที่มีมากกว่า 17 หน้าและยอดรวม 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_en": "Which venue hosted South Melbourne?",
    "question_th": "สนามใดเป็นเจ้าภาพเซาท์เมลเบิร์น?",
    "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_en": "What was the scored of the Away team that played against Richmond?",
    "question_th": "ทีมเยือนที่เจอกับริชมอนด์มีสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_83 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_44 WHERE week = 6",
    "question_en": "What is the result week 6?",
    "question_th": "สัปดาห์ที่ 6 ผลลัพธ์เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_44 (result VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT goals FROM table_name_98 WHERE name = \"sture mårtensson\"",
    "question_en": "How many goals did sture mårtensson score?",
    "question_th": "สตัวร์ มาร์เทนสัน ยิงได้กี่ประตู?",
    "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_en": "How many goals for the player with 2 caps at degerfors if?",
    "question_th": "นักเตะที่ติด 2 แคปที่เดเกอร์ฟอร์สมีกี่ประตู?",
    "context": "CREATE TABLE table_name_47 (goals VARCHAR, caps VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT catalog FROM table_name_23 WHERE year > 2000",
    "question_en": "What catalog came out after 2000?",
    "question_th": "แคตตาล็อกใดที่ออกมาหลังจากปี 2000?",
    "context": "CREATE TABLE table_name_23 (catalog VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT attendance FROM table_name_26 WHERE week = 7",
    "question_en": "What was the attendance on week 7?",
    "question_th": "การเข้าร่วมในสัปดาห์ที่ 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_en": "What opponent did they have a bye result against before week 14?",
    "question_th": "พวกเขาแพ้คู่แข่งคนไหนก่อนสัปดาห์ที่ 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_en": "Which home team has an Away team of fitzroy?",
    "question_th": "เจ้าบ้านไหนมีทีมเยือนฟิตซ์รอย?",
    "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_en": "What was North Melbourne's score when they were the home team?",
    "question_th": "นอร์ท เมลเบิร์น สกอร์เมื่อก่อนเป็นเจ้าบ้านเท่าไหร่?",
    "context": "CREATE TABLE table_name_82 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team AS score FROM table_name_38 WHERE home_team = \"richmond\"",
    "question_en": "What was Richmond's score as the home team?",
    "question_th": "ริชมอนด์สกอร์ของเจ้าบ้านเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_38 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_56 WHERE home_team = \"richmond\"",
    "question_en": "Who was the opponent when Richmond played as the home team?",
    "question_th": "คู่ต่อสู้เมื่อริชมอนด์เล่นเป็นเจ้าบ้านคือใคร?",
    "context": "CREATE TABLE table_name_56 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT crowd FROM table_name_25 WHERE venue = \"kardinia park\"",
    "question_en": "What was the attendance at the Kardinia Park game?",
    "question_th": "การเข้าร่วมในเกมคาร์ดิเนีย พาร์กเป็นอย่างไรบ้าง?",
    "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_en": "What was the score of the team North Melbourne played at Arden Street Oval?",
    "question_th": "ทีมนอร์ธ เมลเบิร์น เล่นกับ อาร์เดน สตรีท โอวัล คะแนนเท่าไหร่?",
    "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_en": "What date did the game at Arden Street Oval take place?",
    "question_th": "เกมที่ Arden Street Oval จัดขึ้นวันไหน?",
    "context": "CREATE TABLE table_name_12 (date VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_98 WHERE crowd > 36 OFFSET 766",
    "question_en": "What is the date of the game with 36,766 fans?",
    "question_th": "ตรงกับวันไหนที่มีแฟนบอล 36,766 คน?",
    "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_en": "Which higher secondary school listing has the lowest total and an Aided amount larger than 14?",
    "question_th": "รายชื่อโรงเรียนมัธยมศึกษาตอนปลายใดที่มียอดรวมต่ำสุดและจำนวนเงินที่ได้รับความช่วยเหลือมากกว่า 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_en": "Which Institution has a Total smaller than 13, a Government amount of 1, and an Aided amount of 0?",
    "question_th": "สถาบันใดมีคะแนนรวมน้อยกว่า 13, จำนวนรัฐบาลเท่ากับ 1 และจำนวนที่ได้รับความช่วยเหลือเป็น 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_en": "Which IATA is associated with China and an ICAO of ZSPD?",
    "question_th": "IATA ใดที่เกี่ยวข้องกับจีนและ ICAO ของ ZSPD",
    "context": "CREATE TABLE table_name_59 (iata VARCHAR, country VARCHAR, icao VARCHAR)"
  },
  {
    "answer": "SELECT airport FROM table_name_71 WHERE city = \"macau\"",
    "question_en": "Which airport is associated with Macau?",
    "question_th": "สนามบินใดที่เกี่ยวข้องกับมาเก๊า?",
    "context": "CREATE TABLE table_name_71 (airport VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT iata FROM table_name_85 WHERE city = \"nanjing\"",
    "question_en": "What is the IATA for Nanjing?",
    "question_th": "IATA สำหรับหนานจิงคืออะไร",
    "context": "CREATE TABLE table_name_85 (iata VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT airport FROM table_name_81 WHERE icao = \"rckh\"",
    "question_en": "Which airport has an ICAO of RCKH?",
    "question_th": "สนามบินใดมี ICAO ของ RCKH?",
    "context": "CREATE TABLE table_name_81 (airport VARCHAR, icao VARCHAR)"
  },
  {
    "answer": "SELECT airport FROM table_name_52 WHERE iata = \"tyn\"",
    "question_en": "Which airport has an IATA of TYN?",
    "question_th": "สนามบินใดมี IATA เป็น 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_en": "Which country contains the Shanghai Pudong International airport?",
    "question_th": "ประเทศใดมีสนามบินนานาชาติเซี่ยงไฮ้ผู่ตง",
    "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_en": "What was Footscray's score when it played as the home team?",
    "question_th": "ฟุตสเครย์ทำสกอร์เท่าไหร่เมื่อเล่นเป็นเจ้าบ้าน?",
    "context": "CREATE TABLE table_name_2 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team AS score FROM table_name_83 WHERE away_team = \"hawthorn\"",
    "question_en": "hat was Hawthorn's score as the away team?",
    "question_th": "แฮทคือคะแนนของฮอว์ธอร์นในฐานะทีมเยือน?",
    "context": "CREATE TABLE table_name_83 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_41 WHERE opponent_in_the_final = \"carlos kirmayr\"",
    "question_en": "What was the Outcome against Opponent in the Final Carlos Kirmayr?",
    "question_th": "ผลลัพธ์ของฝ่ายตรงข้ามในรอบสุดท้าย 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_en": "What was the Score in the Final against Opponent in the Final Manuel Orantes, prior to 1978?",
    "question_th": "คะแนนในรอบชิงชนะเลิศกับคู่แข่งในรอบชิงชนะเลิศมานูเอล โอรันเตส ก่อนปี 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_en": "Against Opponent in the Final Ivan Lendl, on a Surface of clay, with an Outcome of runner-up, where was the Championship?",
    "question_th": "พบกับคู่ต่อสู้ในรอบชิงชนะเลิศ Ivan Lendl บนพื้นดินเหนียว และได้รองแชมป์ การแข่งขันชิงแชมป์อยู่ที่ไหน",
    "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_en": "What is the earliest Date on a Surface of clay in a Championship in Linz, Austria?",
    "question_th": "วันที่เร็วที่สุดบนพื้นผิวดินเหนียวในการแข่งขันชิงแชมป์ที่เมืองลินซ์ ประเทศออสเตรีย คือวันที่ใด",
    "context": "CREATE TABLE table_name_15 (date INTEGER, surface VARCHAR, championship VARCHAR)"
  },
  {
    "answer": "SELECT sportsperson FROM table_name_36 WHERE sport = \"athletics\"",
    "question_en": "Who playes the sport of athletics?",
    "question_th": "ใครเล่นกีฬากรีฑา?",
    "context": "CREATE TABLE table_name_36 (sportsperson VARCHAR, sport VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_75 WHERE year = 2008",
    "question_en": "What team has a year listed of 2008?",
    "question_th": "ทีมใดมีรายการปี 2551?",
    "context": "CREATE TABLE table_name_75 (team VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_42 WHERE away_team = \"fitzroy\"",
    "question_en": "What venue was the game played in when the away team was fitzroy?",
    "question_th": "เกมนี้เล่นที่สนามใดเมื่อทีมเยือนคือฟิตซ์รอย?",
    "context": "CREATE TABLE table_name_42 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_35 WHERE name = \"sanctuary\"",
    "question_en": "What is the film type for the movie Sanctuary?",
    "question_th": "หนังเรื่อง 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_en": "What different types are there with a CC License of by-nc-sa 2.5?",
    "question_th": "CC License ของ 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_en": "What are the open source movies with planned releases in 2013?",
    "question_th": "ภาพยนตร์โอเพ่นซอร์สใดบ้างที่มีกำหนดออกฉายในปี 2556",
    "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_en": "What was the lowest rank by average of a couple who had an average of 23 and a total of 115?",
    "question_th": "อะไรคืออันดับต่ำสุดโดยเฉลี่ยของคู่รักที่มีคะแนนเฉลี่ย 23 คะแนนและคะแนนรวม 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_en": "What is the colonized date for Michigan?",
    "question_th": "วันที่ตกเป็นอาณานิคมของมิชิแกนคือเมื่อใด",
    "context": "CREATE TABLE table_name_92 (colonized VARCHAR, state VARCHAR)"
  },
  {
    "answer": "SELECT colonized FROM table_name_83 WHERE chartered = \"1958\"",
    "question_en": "What is the colonized year for the chartered year 1958?",
    "question_th": "ปีอาณานิคมสำหรับปีเช่าเหมาลำ พ.ศ. 2501 คืออะไร?",
    "context": "CREATE TABLE table_name_83 (colonized VARCHAR, chartered VARCHAR)"
  },
  {
    "answer": "SELECT colonized FROM table_name_56 WHERE school = \"shippensburg university\"",
    "question_en": "When was shippensburg university Colonized?",
    "question_th": "มหาวิทยาลัย Shippensburg ตกเป็นอาณานิคมเมื่อใด",
    "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_en": "What is the colonized date for the n/a charter range for appalachian state?",
    "question_th": "วันที่อาณานิคมสำหรับช่วงกฎบัตรสำหรับรัฐแอปพาเลเชียนคือเมื่อใด",
    "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_en": "What state has colony as a status and shippensburg university as the school?",
    "question_th": "รัฐใดมีอาณานิคมเป็นสถานะและมีมหาวิทยาลัย Shippensburg เป็นโรงเรียน",
    "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_en": "What was the Home Team Score for the Windy Hill Venue?",
    "question_th": "คะแนนทีมเหย้าสำหรับสนามวินดี้ฮิลล์เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_63 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_61 WHERE home_team = \"essendon\"",
    "question_en": "What is the Essendon Home Team's venue?",
    "question_th": "สนามของทีมเหย้าเอสเซนดอนอยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_61 (venue VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT SUM(crowd) FROM table_name_15 WHERE away_team = \"fitzroy\"",
    "question_en": "How large a crowd did the Fitzroy Away team draw?",
    "question_th": "ทีม Fitzroy Away ดึงดูดฝูงชนได้มากขนาดไหน?",
    "context": "CREATE TABLE table_name_15 (crowd INTEGER, away_team VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_84 WHERE player = \"van waiters\"",
    "question_en": "What is Van Waiters position?",
    "question_th": "ตำแหน่ง Van Waiters คืออะไร?",
    "context": "CREATE TABLE table_name_84 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT capacity FROM table_name_95 WHERE country = \"usa\" AND city = \"tucson\"",
    "question_en": "What is the capacity of the team in tucson, USA?",
    "question_th": "ความสามารถของทีมในทูซอน สหรัฐอเมริกา คืออะไร?",
    "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_en": "What is the date for the podcast episode number 103?",
    "question_th": "Podcast ตอนที่ 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_en": "What is the name of the podcast on November 21, 2004?",
    "question_th": "พอดแคสต์เมื่อวันที่ 21 พฤศจิกายน 2547 ชื่ออะไร",
    "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_en": "What was the tonnage of the Great Britain ship Batna?",
    "question_th": "น้ำหนักของเรือ 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_en": "How many silver medals were won when there were 4 gold and 22 in total?",
    "question_th": "ได้มากี่เหรียญเงินเมื่อมี 4 เหรียญทอง รวม 22 เหรียญ?",
    "context": "CREATE TABLE table_name_26 (silver INTEGER, gold VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT car__number FROM table_name_58 WHERE points = 130",
    "question_en": "What car number has 130 points?",
    "question_th": "รถหมายเลขอะไรมี 130 คะแนน?",
    "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_en": "What is the lowest number of laps for ryan newman with over 96 points, a cur number under 24,",
    "question_th": "จำนวนรอบต่ำสุดของไรอัน นิวแมน คือจำนวนมากกว่า 96 แต้ม หมายเลขโค้งต่ำกว่า 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_en": "What is the sum of car numbers with less than 126 points and 147 laps?",
    "question_th": "ผลรวมเลขรถต่ำกว่า 126 แต้ม 147 รอบเป็นเท่าไหร่?",
    "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_en": "How many total laps for the driver with Winnings of $116,033, and a Car # smaller than 18?",
    "question_th": "จำนวนรอบรวมของผู้ขับขี่ที่ชนะรางวัล 116,033 ดอลลาร์ และรถยนต์ # เล็กกว่า 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_en": "What was the home team's score at kardinia park?",
    "question_th": "สกอร์ของเจ้าบ้านที่คาร์ดิเนีย พาร์ค อยู่ที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_7 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_25 WHERE away_team = \"melbourne\"",
    "question_en": "What is the venue when melbourne is the away team?",
    "question_th": "สนามไหนที่เมลเบิร์นเป็นทีมเยือน?",
    "context": "CREATE TABLE table_name_25 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT MIN(crowd) FROM table_name_49 WHERE away_team = \"footscray\"",
    "question_en": "What is the smallest crowd that Footscray had as the away team?",
    "question_th": "ทีมเยือนที่ Footscray มีฝูงชนน้อยที่สุดคือทีมใด?",
    "context": "CREATE TABLE table_name_49 (crowd INTEGER, away_team VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_87 WHERE venue = \"mackey arena\"",
    "question_en": "Where is the Mackey Arena located?",
    "question_th": "สนามแม็กกี้อารีน่า อยู่ที่ไหน",
    "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_en": "What state has the University of California, Los Angeles?",
    "question_th": "มหาวิทยาลัยแคลิฟอร์เนีย ลอสแอนเจลิสมีรัฐใดบ้าง",
    "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_en": "What region does the University of California, Los Angeles play in?",
    "question_th": "University of California, Los Angeles เล่นในภูมิภาคใด",
    "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_en": "What venue is in Santa Barbara, California?",
    "question_th": "สถานที่ใดในซานตาบาร์บารา แคลิฟอร์เนีย",
    "context": "CREATE TABLE table_name_58 (venue VARCHAR, state VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_19 WHERE state = \"colorado\"",
    "question_en": "What Venue is in Colorado?",
    "question_th": "สถานที่ใดในโคโลราโด?",
    "context": "CREATE TABLE table_name_19 (venue VARCHAR, state VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_46 WHERE venue = \"mackey arena\"",
    "question_en": "What city is Mackey Arena in?",
    "question_th": "Mackey Arena ตั้งอยู่ในเมืองใด",
    "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_en": "What lane is David Carry in heat 1?",
    "question_th": "David Carry ในฮีต 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_en": "Who is the opponent after week 9 at rich stadium?",
    "question_th": "คู่ต่อสู้หลังจากสัปดาห์ที่ 9 ที่ริชสเตเดียมคือใคร?",
    "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_en": "What was the attendance on 1997-12-14?",
    "question_th": "ผู้เข้าร่วมในวันที่ 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_en": "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?",
    "question_th": "สำหรับฤดูกาล คลีฟแลนด์ บราวน์ส ปี 1967 จำนวนครั้งทั้งหมดที่พวกเขาเล่นกับมินนิโซตา ไวกิ้งส์ และมีผู้เข้าชมน้อยกว่า 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_en": "What is the lowest attendance for a game before 10 weeks on November 12, 1967",
    "question_th": "คือจำนวนผู้เข้าชมเกมต่ำสุดก่อน 10 สัปดาห์ในวันที่ 12 พฤศจิกายน พ.ศ. 2510",
    "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_en": "What is the smallest number of injured in mayurbhanj, odisha and less than 1 killed?",
    "question_th": "จำนวนผู้บาดเจ็บที่น้อยที่สุดใน Mayurbhanj, Odisha และผู้เสียชีวิตน้อยกว่า 1 คนคือเท่าใด?",
    "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_en": "Which Away team has Carlton for it's Home team?",
    "question_th": "ทีมเยือนทีมไหนมีคาร์ลตันเป็นทีมเหย้า?",
    "context": "CREATE TABLE table_name_96 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_3 WHERE home_team = \"footscray\"",
    "question_en": "Which Venue has Footscray as it's Home team?",
    "question_th": "สนามไหนมี Footscray เป็นทีมเหย้า?",
    "context": "CREATE TABLE table_name_3 (venue VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_69 WHERE away_team = \"richmond\"",
    "question_en": "What home team has Richmond listed as their Away team?",
    "question_th": "ทีมเจ้าบ้านใดที่ริชมอนด์ระบุว่าเป็นทีมเยือน?",
    "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_en": "What is the number of the crowd for the home team of South Melbourne?",
    "question_th": "เจ้าบ้านเซาธ์ เมลเบิร์น มีจำนวนผู้ชมเท่าไร?",
    "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_en": "What is the away team score for the home team listed as Footscray?",
    "question_th": "คะแนนทีมเยือนของเจ้าบ้านที่ระบุชื่อฟุตสเครย์คือเท่าไร?",
    "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_en": "Which venue exceeded a crowd size of 33,642?",
    "question_th": "สถานที่ใดมีผู้เข้าชมเกิน 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_en": "What was the attendance at the Meadowlands against the New England Patriots?",
    "question_th": "การเข้าร่วมที่ Meadowlands กับ 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_en": "What game did Jets have an attendance of 78,722?",
    "question_th": "เจ็ตส์มีผู้ชมเกมใดถึง 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_en": "Who played the Rams on October 2, 2005?",
    "question_th": "ใครเล่นเดอะแรมส์เมื่อวันที่ 2 ตุลาคม พ.ศ. 2548",
    "context": "CREATE TABLE table_name_22 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_82 WHERE date = \"december 11, 2005\"",
    "question_en": "What was the attendance of the game on December 11, 2005?",
    "question_th": "ผู้เข้าร่วมการแข่งขันในวันที่ 11 ธันวาคม พ.ศ. 2548 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_82 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_19 WHERE attendance = \"65,473\"",
    "question_en": "What was the result of the game played in front of 65,473?",
    "question_th": "เกมนี้เล่นต่อหน้า 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_en": "How large was the crowd at Carlton's home game?",
    "question_th": "ฝูงชนในเกมเหย้าของคาร์ลตันมีฝูงชนมากขนาดไหน?",
    "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_en": "What was the score when St Kilda played as the home team?",
    "question_th": "เมื่อเซนต์คิลดาเล่นเป็นเจ้าบ้านสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_59 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT SUM(crowd) FROM table_name_49 WHERE venue = \"windy hill\"",
    "question_en": "What was the crowd when the VFL played Windy Hill?",
    "question_th": "ฝูงชนเป็นอย่างไรบ้างเมื่อ VFL เล่น 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_en": "What was Carlton's score when they were the away team?",
    "question_th": "คาร์ลตันเมื่อเป็นทีมเยือนได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_86 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_9 WHERE venue = \"corio oval\"",
    "question_en": "What was the away team that played at Corio Oval?",
    "question_th": "ทีมเยือนเล่นที่โคริโอโอวัลคือทีมอะไร?",
    "context": "CREATE TABLE table_name_9 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_9 WHERE away_team = \"hawthorn\"",
    "question_en": "Which Home team faced the Away team, Hawthorn?",
    "question_th": "เจ้าบ้านทีมไหนเจอกับทีมเยือนฮอว์ธอร์น?",
    "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_en": "What was the Home team's score when the Venue was mcg?",
    "question_th": "คะแนนของทีมเจ้าบ้านเมื่อสนามเป็น 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_en": "What is the division in the season more recent than 2012 when the round of 16 was reached in the FA Cup?",
    "question_th": "ฤดูกาลดิวิชั่นใดที่ใหม่กว่าปี 2012 เมื่อผ่านเข้ารอบ 16 ทีมสุดท้ายในเอฟเอ คัพ?",
    "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_en": "What is the division in the season with 13 tms and pos smaller than 8?",
    "question_th": "ดิวิชั่นในฤดูกาลที่มี 13 tms และตำแหน่งน้อยกว่า 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_en": "Of the games before week 3 which had attendance great than 65,904?",
    "question_th": "จากเกมก่อนสัปดาห์ที่ 3 ซึ่งมีผู้เข้าชมมากกว่า 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_en": "What was the first week to have attendance of 65,866?",
    "question_th": "สัปดาห์แรกที่มีผู้เข้าร่วม 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_en": "Where is the Belhaven College SSAC conference location?",
    "question_th": "สถานที่จัดการประชุม SSAC ของวิทยาลัย Belhaven อยู่ที่ไหน",
    "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_en": "What American Southwest Conference school was founded in 1883?",
    "question_th": "โรงเรียน American Southwest Conference แห่งใดก่อตั้งขึ้นเมื่อปี 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_en": "Which League showed 7,975 for an average attendance?",
    "question_th": "ลีกใดที่มีผู้ชมเฉลี่ย 7,975 คน?",
    "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_en": "What is the average attendance of the team that had a regular season result of 2nd aisa, 24-16?",
    "question_th": "จำนวนผู้เข้าร่วมโดยเฉลี่ยของทีมที่มีผลการแข่งขันฤดูกาลปกติที่ 2 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_en": "Who won Group VI, when Group 1 was won by deportivo, group IV by sevilla, and group III by Valencia?",
    "question_th": "ใครเป็นผู้ชนะกลุ่ม VI เมื่อกลุ่ม 1 ชนะโดยเดปอร์ติโบ, กลุ่ม 4 ชนะเซบีญ่า และกลุ่ม 3 ชนะบาเลนเซีย?",
    "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_en": "Who won group III when group 1 was of the racing club?",
    "question_th": "ใครชนะกลุ่ม III เมื่อกลุ่ม 1 มาจากชมรมแข่งรถ?",
    "context": "CREATE TABLE table_name_99 (group_iII VARCHAR, group_i VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_7 WHERE rider = \"john williams\"",
    "question_en": "Which team is John Williams a rider for?",
    "question_th": "John Williams เป็นนักบิดของทีมไหน?",
    "context": "CREATE TABLE table_name_7 (team VARCHAR, rider VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(crowd) FROM table_name_96 WHERE home_team = \"geelong\"",
    "question_en": "How big was the crowd when Geelong was the home team?",
    "question_th": "ฝูงชนจะเยอะแค่ไหนเมื่อจีลองเป็นเจ้าบ้าน?",
    "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_en": "Who was the away team when Hawthorn was the home team?",
    "question_th": "เมื่อฮอว์ธอร์นเป็นเจ้าบ้านใครเป็นทีมเยือน?",
    "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_en": "What is the total in the case where theere are 6 lecturers and fewer than 48 professors?",
    "question_th": "กรณีมีอาจารย์ 6 คน และอาจารย์น้อยกว่า 48 คน เป็นเท่าใด",
    "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_en": "What is the total in the case when there are more than 4 associate professors, 5 lecturers and fewer professors than 40?",
    "question_th": "กรณีมีรองศาสตราจารย์มากกว่า 4 คน อาจารย์ 5 คน และอาจารย์น้อยกว่า 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_en": "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?",
    "question_th": "อาจารย์จะมีได้อย่างไร ในเมื่อมีผู้ช่วยศาสตราจารย์มากกว่า 8 คน รองศาสตราจารย์น้อยกว่า 35 คน อาจารย์มากกว่า 14 คน รวมทั้งหมดมากกว่า 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_en": "What is the maximum number of associate professors when there are more than 5 assistant professors and fewer than 14 professors?",
    "question_th": "จำนวนรองศาสตราจารย์สูงสุดเมื่อมีผู้ช่วยศาสตราจารย์มากกว่า 5 คนและอาจารย์น้อยกว่า 14 คนคือเท่าใด",
    "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_en": "Which country has the banglavision Network?",
    "question_th": "ประเทศใดมีเครือข่าย Banglavision?",
    "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_en": "Which general service in India is a part of the zee variasi network?",
    "question_th": "บริการทั่วไปใดในอินเดียที่เป็นส่วนหนึ่งของเครือข่าย zee variasi",
    "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_en": "Which sliding tackle has no dump tackle and a restricted shoulder charge?",
    "question_th": "อุปกรณ์เลื่อนแบบใดที่ไม่มีอุปกรณ์เทขยะและมีข้อจำกัดในการชาร์จไหล่?",
    "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_en": "Which bumping/blocking has a yes for both the ankle tap and steal/intercept ball?",
    "question_th": "การกระแทก/การสกัดกั้นข้อใดมีทั้งการแตะข้อเท้าและการแย่งบอล/สกัดกั้นลูกบอล",
    "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_en": "Which body tackle has yes for the diving tackle and the sliding tackle classified as a trip?",
    "question_th": "อุปกรณ์แท็คเกิลตัวไหนมีสำหรับอุปกรณ์ดำน้ำและอุปกรณ์เลื่อนที่จัดว่าเป็นทริป?",
    "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_en": "Which Chicken wing has no steal/intercept ball?",
    "question_th": "ปีกไก่ตัวไหนไม่มีลูกขโมย/สกัดกั้น?",
    "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_en": "Which steal/intercept ball has no for both the sliding tackle and dump tackle?",
    "question_th": "ลูกขโมย/สกัดบอลตัวไหนไม่มีทั้งตัวเข้าปะทะแบบเลื่อนและตัวเข้าสกัด?",
    "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_en": "Which shoulder charge has restricted as the body tackle?",
    "question_th": "ท่าไหล่ใดที่จำกัดการเข้าปะทะร่างกาย?",
    "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_en": "Which player has West Virginia listed as their school/country?",
    "question_th": "ผู้เล่นคนใดที่มีรายชื่อเวสต์เวอร์จิเนียเป็นโรงเรียน/ประเทศของตน",
    "context": "CREATE TABLE table_name_11 (player VARCHAR, school_country VARCHAR)"
  },
  {
    "answer": "SELECT AVG(crowd) FROM table_name_41 WHERE home_team = \"fitzroy\"",
    "question_en": "What is the average crowd size when fitzroy plays at home?",
    "question_th": "ขนาดฝูงชนโดยเฉลี่ยเมื่อฟิตซ์รอยเล่นในบ้านคือเท่าใด?",
    "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_en": "What is the result of the election with 3,871 total votes?",
    "question_th": "ผลการเลือกตั้งด้วยคะแนนเสียงทั้งหมด 3,871 เสียง เป็นอย่างไร?",
    "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_en": "What is the lowest number of bids in the Missouri Valley conference?",
    "question_th": "จำนวนการเสนอราคาต่ำสุดในการประชุม Missouri Valley คือเท่าใด",
    "context": "CREATE TABLE table_name_47 (_number_of_bids INTEGER, conference VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_3 WHERE date = \"bye\"",
    "question_en": "What was the attendance on the bye week?",
    "question_th": "การเข้าร่วมในสัปดาห์ลาก่อนเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_3 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(week) FROM table_name_58 WHERE result = \"bye\"",
    "question_en": "What was the last week when the team had a bye week?",
    "question_th": "สัปดาห์สุดท้ายที่ทีมมีสัปดาห์ลาก่อนคืออะไร?",
    "context": "CREATE TABLE table_name_58 (week INTEGER, result VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_89 WHERE away_team = \"north melbourne\"",
    "question_en": "Where was the game held where North Melbourne was the away team?",
    "question_th": "เกมนี้จัดขึ้นที่ไหนโดยที่ นอร์ท เมลเบิร์น เป็นทีมเยือน?",
    "context": "CREATE TABLE table_name_89 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT MIN(crowd) FROM table_name_47 WHERE home_team = \"richmond\"",
    "question_en": "What was the smallest crowd size for a home game for Richmond?",
    "question_th": "ขนาดฝูงชนที่เล็กที่สุดสำหรับเกมเหย้าของริชมอนด์คือเท่าไร?",
    "context": "CREATE TABLE table_name_47 (crowd INTEGER, home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_98 WHERE opponent = \"green bay packers\"",
    "question_en": "When did the 1966 Cleveland Browns play the Green Bay Packers?",
    "question_th": "คลีฟแลนด์ บราวน์ส ปี 1966 เล่นกับทีมกรีนเบย์แพ็กเกอร์สเมื่อใด",
    "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_en": "How many points did South Melbourne score as the home team?",
    "question_th": "เซาธ์ เมลเบิร์น ทำประตูเจ้าบ้านได้กี่แต้ม?",
    "context": "CREATE TABLE table_name_26 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_49 WHERE home_team = \"footscray\"",
    "question_en": "On what date was the home team Footscray?",
    "question_th": "ฟุตสเครย์ เจ้าบ้านจัดวันไหน?",
    "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_en": "What is the average amount of goals that have a goal difference or 8 and the losses are smaller than 12?",
    "question_th": "จำนวนประตูโดยเฉลี่ยที่มีผลต่างประตูหรือ 8 และแพ้น้อยกว่า 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_en": "How many goals have a Lokomotiv Plovdiv club and goals against larger than 58?",
    "question_th": "มีกี่ประตูที่มีสโมสรโลโคโมทีฟ พลอฟดิฟ และประตูที่มากกว่า 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_en": "What is the average goal difference using slavia sofia club?",
    "question_th": "ผลต่างประตูโดยเฉลี่ยเมื่อใช้ สลาเวีย โซเฟีย คลับ คือเท่าไร?",
    "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_en": "What is the played average that has botev plovdiv as the club and wins larger than 11?",
    "question_th": "ค่าเฉลี่ยการเล่นที่มี botev plovdiv เป็นสโมสรและชนะมากกว่า 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_en": "Where did they play on their bye week?",
    "question_th": "พวกเขาเล่นที่ไหนในสัปดาห์ก่อน?",
    "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_en": "What is the kickoff that has a NFL.com recap, is played before week 17, and is played at arrowhead stadium?",
    "question_th": "กำหนดการที่มีการสรุป NFL.com คืออะไร ซึ่งจะเล่นก่อนสัปดาห์ที่ 17 และเล่นที่สนามแอร์โรว์เฮด",
    "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_en": "Who is the home team at brunswick street oval?",
    "question_th": "ทีมเหย้าที่บรันสวิก สตรีท โอวัลคือใคร?",
    "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_en": "What is the home team's score at brunswick street oval?",
    "question_th": "สกอร์ของเจ้าบ้านที่บรันสวิก สตรีท โอวัลเป็นเท่าไหร่?",
    "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_en": "Which match had the largest crowd size where the away team was North Melbourne?",
    "question_th": "นัดไหนที่มีผู้เข้าชมมากที่สุด โดยทีมเยือนคือ นอร์ท เมลเบิร์น?",
    "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_en": "What was North Melbourne's score as an away team?",
    "question_th": "นอร์ท เมลเบิร์น ทำได้เท่าไหร่ในเกมเยือน?",
    "context": "CREATE TABLE table_name_66 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team AS score FROM table_name_9 WHERE home_team = \"hawthorn\"",
    "question_en": "What was the away team's score against Hawthorn?",
    "question_th": "ฮอว์ธอร์นทีมเยือนได้สกอร์เท่าไหร่?",
    "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_en": "What was the away team that played the home team of Geelong?",
    "question_th": "ทีมเยือนเจอทีมเหย้าจีลองคือทีมอะไร?",
    "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_en": "Which week with Green Bay Packers as an opponent is the highest?",
    "question_th": "สัปดาห์ไหนที่กรีนเบย์ แพ็คเกอร์สเป็นคู่ต่อสู้สูงสุด?",
    "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_en": "What is the number of starts for the player who lost fewer than 22 and has more than 4 tries?",
    "question_th": "จำนวนการออกสตาร์ทสำหรับผู้เล่นที่แพ้น้อยกว่า 22 ครั้งและพยายามมากกว่า 4 ครั้งคือเท่าใด",
    "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_en": "What is the total losses for the player with fewer than 51 pens, 3 tries and 45 starts?",
    "question_th": "อะไรคือความสูญเสียทั้งหมดสำหรับผู้เล่นที่มีปากกาน้อยกว่า 51 ปากกา, 3 ครั้ง และ 45 ครั้ง?",
    "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_en": "What is the average crowd size at glenferrie oval?",
    "question_th": "ขนาดฝูงชนโดยเฉลี่ยที่ 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_en": "What is the away team's score when the away team is geelong?",
    "question_th": "ทีมเยือนได้คะแนนเท่าไหร่เมื่อทีมเยือนจีลอง?",
    "context": "CREATE TABLE table_name_16 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(crowd) FROM table_name_98 WHERE home_team = \"melbourne\"",
    "question_en": "What is the largest crowd when melbourne plays at home?",
    "question_th": "เมลเบิร์นเล่นในบ้านคนไหนเยอะที่สุด?",
    "context": "CREATE TABLE table_name_98 (crowd INTEGER, home_team VARCHAR)"
  },
  {
    "answer": "SELECT championship_game FROM table_name_63 WHERE conference = \"southwest\"",
    "question_en": "What was the championship game for the Southwest conference?",
    "question_th": "เกมชิงแชมป์สำหรับการประชุมภาคตะวันตกเฉียงใต้คืออะไร?",
    "context": "CREATE TABLE table_name_63 (championship_game VARCHAR, conference VARCHAR)"
  },
  {
    "answer": "SELECT manager FROM table_name_29 WHERE captain = \"sol campbell\"",
    "question_en": "Which manager has Sol Campbell as captain?",
    "question_th": "ผู้จัดการทีมคนไหนมีโซล แคมป์เบลล์เป็นกัปตันทีม?",
    "context": "CREATE TABLE table_name_29 (manager VARCHAR, captain VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_52 WHERE shirt_sponsor = \"carlsberg\"",
    "question_en": "What team does Carlsberg sponsor?",
    "question_th": "Carlsberg สนับสนุนทีมใด",
    "context": "CREATE TABLE table_name_52 (team VARCHAR, shirt_sponsor VARCHAR)"
  },
  {
    "answer": "SELECT shirt_sponsor FROM table_name_74 WHERE team = \"middlesbrough\"",
    "question_en": "Who sponsors Middlesbrough?",
    "question_th": "ใครเป็นสปอนเซอร์มิดเดิ้ลสโบรช์?",
    "context": "CREATE TABLE table_name_74 (shirt_sponsor VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT shirt_sponsor FROM table_name_23 WHERE manager = \"mark hughes\"",
    "question_en": "Which sponsor has Mark Hughes as manager?",
    "question_th": "สปอนเซอร์คนไหนมี มาร์ค ฮิวจ์ส เป็นผู้จัดการทีม?",
    "context": "CREATE TABLE table_name_23 (shirt_sponsor VARCHAR, manager VARCHAR)"
  },
  {
    "answer": "SELECT kit_maker FROM table_name_42 WHERE team = \"aston villa\"",
    "question_en": "Which kit maker does Aston Villa use?",
    "question_th": "แอสตัน วิลล่าใช้ผู้ผลิตชุดแข่งคนไหน?",
    "context": "CREATE TABLE table_name_42 (kit_maker VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT captain FROM table_name_9 WHERE team = \"portsmouth\"",
    "question_en": "Who captains Portsmouth?",
    "question_th": "ใครเป็นกัปตันทีมพอร์ทสมัธ?",
    "context": "CREATE TABLE table_name_9 (captain VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_98 WHERE location = \"brighton, uk\"",
    "question_en": "What bombing happened in Brighton, UK?",
    "question_th": "เหตุระเบิดเกิดขึ้นที่เมืองไบรตัน สหราชอาณาจักร",
    "context": "CREATE TABLE table_name_98 (event VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_50 WHERE score = \"3–0\"",
    "question_en": "What result had a score of 3–0?",
    "question_th": "ผลลัพธ์อะไรมีคะแนน 3–0?",
    "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–0\"",
    "question_en": "For the venue of suwon world cup stadium , suwon , south korea and a Score of 3–0 what is the result?",
    "question_th": "สำหรับสนามซูวอน เวิลด์คัพ สเตเดี้ยม ซูวอน ประเทศเกาหลีใต้ และสกอร์ 3-0 ผลการแข่งขันเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_74 (result VARCHAR, venue VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT MAX(goal) FROM table_name_39 WHERE result = \"2–3\"",
    "question_en": "What is the top goal for the result of 2–3?",
    "question_th": "เป้าหมายสูงสุดสำหรับผลการแข่งขัน 2–3 คืออะไร?",
    "context": "CREATE TABLE table_name_39 (goal INTEGER, result VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_name_7 WHERE time = \"12:49:08\"",
    "question_en": "When was the time of 12:49:08 first set?",
    "question_th": "เวลา 12:49:08 เซ็ตแรกคือเมื่อไหร่?",
    "context": "CREATE TABLE table_name_7 (year INTEGER, time VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_90 WHERE attendance = \"77,918\"",
    "question_en": "What was the date when the attendance was 77,918?",
    "question_th": "มีผู้เข้าร่วม 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_en": "What was the attendance of the game played in the Georgia Dome?",
    "question_th": "แมตช์ที่เล่นในจอร์เจียโดมมีผู้ชมเข้าร่วมเป็นจำนวนเท่าใด?",
    "context": "CREATE TABLE table_name_6 (attendance VARCHAR, game_site VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_89 WHERE attendance = \"73,529\"",
    "question_en": "What was the date when the attendance was 73,529?",
    "question_th": "มีผู้เข้าร่วม 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_en": "What away team played at Western Oval?",
    "question_th": "ทีมเยือนทีมใดเล่นที่เวสเทิร์นโอวัล?",
    "context": "CREATE TABLE table_name_75 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT MIN(crowd) FROM table_name_95 WHERE home_team = \"footscray\"",
    "question_en": "What was the smallest crowd when Footscray played at home?",
    "question_th": "ฝูงชนที่เล็กที่สุดเมื่อ Footscray เล่นในบ้านคือกลุ่มใด?",
    "context": "CREATE TABLE table_name_95 (crowd INTEGER, home_team VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_39 WHERE partner = \"mashona washington\"",
    "question_en": "What was the outcome when she partnered with mashona washington?",
    "question_th": "ผลลัพธ์คืออะไรเมื่อเธอร่วมมือกับมาโชนา วอชิงตัน?",
    "context": "CREATE TABLE table_name_39 (outcome VARCHAR, partner VARCHAR)"
  },
  {
    "answer": "SELECT crowd FROM table_name_54 WHERE venue = \"junction oval\"",
    "question_en": "What is the listed crowd at junction oval?",
    "question_th": "รายชื่อฝูงชนที่วงรีทางแยกคือเท่าไร?",
    "context": "CREATE TABLE table_name_54 (crowd VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT SUM(crowd) FROM table_name_92 WHERE away_team = \"north melbourne\"",
    "question_en": "What is the sum of crowd(s) when north melbourne is away?",
    "question_th": "จำนวนฝูงชนเมื่อเมลเบิร์นตอนเหนือไม่อยู่เป็นจำนวนเท่าใด?",
    "context": "CREATE TABLE table_name_92 (crowd INTEGER, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_19 WHERE away_team = \"south melbourne\"",
    "question_en": "What day is south melbourne away?",
    "question_th": "เซาท์เมลเบิร์นไปวันไหน?",
    "context": "CREATE TABLE table_name_19 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_64 WHERE date = \"23 november 2003\"",
    "question_en": "What was the score of the competition on 23 November 2003?",
    "question_th": "คะแนนการแข่งขันเมื่อวันที่ 23 พฤศจิกายน พ.ศ. 2546 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_64 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_70 WHERE away_team = \"richmond\"",
    "question_en": "Where did Richmond play as an away team?",
    "question_th": "ริชมอนด์เล่นทีมเยือนที่ไหน?",
    "context": "CREATE TABLE table_name_70 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_3 WHERE home_team = \"south melbourne\"",
    "question_en": "When did South Melbourne play at home?",
    "question_th": "เซ้าท์ เมลเบิร์น เล่นในบ้านเมื่อไหร่?",
    "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_en": "What is the average election for vicenza province with the liga veneta party?",
    "question_th": "การเลือกตั้งโดยเฉลี่ยสำหรับจังหวัดวิเชนซากับพรรคลิกาเวเนตาคือเท่าไร?",
    "context": "CREATE TABLE table_name_31 (election INTEGER, party VARCHAR, province VARCHAR)"
  },
  {
    "answer": "SELECT SUM(election) FROM table_name_1 WHERE province = \"vicenza\"",
    "question_en": "What is the sum of elections in vicenza?",
    "question_th": "ผลรวมของการเลือกตั้งในวิเชนซาเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_1 (election INTEGER, province VARCHAR)"
  },
  {
    "answer": "SELECT province FROM table_name_55 WHERE election > 2009",
    "question_en": "What province has an election after 2009?",
    "question_th": "จังหวัดใดมีการเลือกตั้งหลังปี 2552?",
    "context": "CREATE TABLE table_name_55 (province VARCHAR, election INTEGER)"
  },
  {
    "answer": "SELECT format FROM table_name_34 WHERE country = \"japan\"",
    "question_en": "What format does Japan use?",
    "question_th": "ญี่ปุ่นใช้รูปแบบอะไร?",
    "context": "CREATE TABLE table_name_34 (format VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_82 WHERE catalogue = \"540 3622\"",
    "question_en": "What date has a catalogue of 540 3622?",
    "question_th": "แค็ตตาล็อก 540 3622 มีวันไหน?",
    "context": "CREATE TABLE table_name_82 (date VARCHAR, catalogue VARCHAR)"
  },
  {
    "answer": "SELECT format FROM table_name_81 WHERE catalogue = \"asw 40362\"",
    "question_en": "What format has a catalogue of asw 40362?",
    "question_th": "รูปแบบใดมีแคตตาล็อก asw 40362",
    "context": "CREATE TABLE table_name_81 (format VARCHAR, catalogue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_90 WHERE catalogue = \"asw 40362\"",
    "question_en": "What date has a catalogue of asw 40362?",
    "question_th": "แค็ตตาล็อก 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_en": "On what Date is the Crowd larger than 17,000?",
    "question_th": "ฝูงชนจะมีจำนวนมากกว่า 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_en": "Which Away team has the Home team of Carlton?",
    "question_th": "ทีมเยือนทีมไหนมีทีมเหย้าของคาร์ลตัน?",
    "context": "CREATE TABLE table_name_2 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_12 WHERE partner = \"jeff tarango\"",
    "question_en": "What was the score of the Jeff Tarango game?",
    "question_th": "เกมของ Jeff Tarango ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_12 (score VARCHAR, partner VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_57 WHERE away_team = \"collingwood\"",
    "question_en": "Where did Collingwood play ae the away team?",
    "question_th": "คอลลิงวูดเล่นให้กับทีมเยือนที่ไหน?",
    "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_en": "What was the score when there was more than 27,000 in attendance?",
    "question_th": "คะแนนเมื่อมีผู้เข้าร่วมมากกว่า 27,000 คนเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_73 (home_team VARCHAR, crowd INTEGER)"
  },
  {
    "answer": "SELECT venue FROM table_name_41 WHERE home_team = \"hawthorn\"",
    "question_en": "Where did Hawthorn play as the home team?",
    "question_th": "ฮอว์ธอร์นเล่นเป็นเจ้าบ้านที่ไหน?",
    "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_en": "In 1990-2005 what is the lowest Start with Convs smaller than 2?",
    "question_th": "ในปี 1990-2005 ค่าต่ำสุดเริ่มต้นด้วย Convs น้อยกว่า 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_en": "What is the total of the crowd when the home team is footscray?",
    "question_th": "ฝูงชนทั้งหมดเมื่อเจ้าบ้านเป็นฟุตสเครย์เป็นเท่าใด?",
    "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_en": "What is the away team score when the away team is Essendon?",
    "question_th": "สกอร์ทีมเยือนเมื่อทีมเยือนคือเอสเซนดอนเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_16 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(week) FROM table_name_85 WHERE result = \"l 20-10\"",
    "question_en": "How many weeks ended in a result of L 20-10?",
    "question_th": "กี่สัปดาห์สิ้นสุดด้วยผลลัพธ์ของ L 20-10?",
    "context": "CREATE TABLE table_name_85 (week VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_13 WHERE week = 6",
    "question_en": "What was the attendance in week 6?",
    "question_th": "การเข้าร่วมในสัปดาห์ที่ 6 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_13 (attendance VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_30 WHERE attendance = \"60,066\"",
    "question_en": "Who was the opponent in the game that had an attendance of 60,066?",
    "question_th": "คู่ต่อสู้ในเกมที่มีผู้ชม 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_en": "What is the designation of material or non-material for either positional or automatic with no rectified count and either opponent?",
    "question_th": "อะไรคือการกำหนดวัสดุหรือวัสดุที่ไม่ใช่วัสดุสำหรับตำแหน่งหรืออัตโนมัติโดยไม่มีการนับจำนวนและคู่ต่อสู้ฝ่ายใดฝ่ายหนึ่ง?",
    "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_en": "What is the value for positional opponents with no material or non-material, and 3 suits?",
    "question_th": "มูลค่าของคู่ต่อสู้ที่มีตำแหน่งโดยไม่มีวัตถุหรือวัตถุและ 3 ชุดคืออะไร?",
    "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_en": "Is it material or non-material when there are 2 suits for either opponent?",
    "question_th": "มันเป็นวัตถุหรือไม่เป็นรูปธรรมเมื่อมี 2 ชุดสำหรับคู่ต่อสู้ฝ่ายใดฝ่ายหนึ่ง?",
    "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_en": "Is the count rectified for single opponents, either positional or automatic, and no material or non-material?",
    "question_th": "การนับได้รับการแก้ไขสำหรับฝ่ายตรงข้ามเดี่ยว ทั้งแบบวางตำแหน่งหรือแบบอัตโนมัติ และไม่มีวัตถุหรือวัตถุหรือไม่?",
    "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_en": "How many points did Happy Valley score before game 14?",
    "question_th": "Happy Valley ทำคะแนนได้กี่คะแนนก่อนเกมที่ 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_en": "How many draws did the game after game 14 with goal gain 17 have?",
    "question_th": "เสมอกันกี่เกมหลังเกมที่ 14 โดยได้ประตูเพิ่ม 17 ประตู?",
    "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_en": "How many total draws were there with a less than 8 loss, more than 30 points, and a goal diff larger than 26?",
    "question_th": "มีการเสมอกันทั้งหมดกี่ครั้งโดยแพ้น้อยกว่า 8 นัด มากกว่า 30 แต้ม และประตูต่างกันมากกว่า 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_en": "What is the highest loss before game 14?",
    "question_th": "แพ้สูงสุดก่อนเกม 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_en": "How many average points did the player with a time/retired of +16.789 and have more laps than 68 have?",
    "question_th": "ผู้เล่นที่มีเวลา/เกษียณที่ +16.789 และมีรอบมากกว่า 68 มีคะแนนเฉลี่ยกี่คะแนน?",
    "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_en": "How many average points did the team Minardi Team USA have when there was a grid 3 and more laps than 68?",
    "question_th": "ทีม Minardi Team USA มีคะแนนเฉลี่ยกี่คะแนนเมื่อมีกริด 3 และมากกว่า 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_en": "Which was the highest crowd drawn by an Away team in Richmond?",
    "question_th": "ทีมเยือนในริชมอนด์จับจ่าฝูงได้มากที่สุดคือทีมใด",
    "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_en": "Which home team has a venue of Arden Street Oval?",
    "question_th": "ทีมเจ้าบ้านใดมีสนาม 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_en": "Which away team has a venue of Arden Street Oval?",
    "question_th": "ทีมเยือนทีมใดมีสนาม 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_en": "What is the value for 2011 corresponding to a 2007 value of 1r?",
    "question_th": "ค่าสำหรับปี 2554 ที่สอดคล้องกับค่าปี 2550 ที่ 1r คืออะไร?",
    "context": "CREATE TABLE table_name_32 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2013 FROM table_name_38 WHERE 2012 = \"grand slam tournaments\"",
    "question_en": "What value in 2013 corresponds to Grand Slam Tournaments in 2012?",
    "question_th": "มูลค่าใดในปี 2013 ที่สอดคล้องกับการแข่งขัน Grand Slam ในปี 2012",
    "context": "CREATE TABLE table_name_38 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2012 FROM table_name_28 WHERE 2011 = \"1r\" AND 2007 = \"1r\"",
    "question_en": "What is the 2012 value when the 2011 and 2007 values are 1R?",
    "question_th": "ค่า 2012 คืออะไรเมื่อค่า 2011 และ 2007 เป็น 1R",
    "context": "CREATE TABLE table_name_28 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2013 FROM table_name_55 WHERE tournament = \"us open\"",
    "question_en": "What value for 2013 corresponds to the US Open Tournament?",
    "question_th": "ค่าอะไรสำหรับปี 2013 ที่สอดคล้องกับ US Open Tournament?",
    "context": "CREATE TABLE table_name_55 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT SUM(enrollment) FROM table_name_5 WHERE team_nickname = \"wildcats\"",
    "question_en": "The school nicknamed the wildcats has what sum of enrollment?",
    "question_th": "โรงเรียนชื่อเล่นแมวป่ามีทุนจดทะเบียนเท่าไร?",
    "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_en": "What is the Founded year of the school located in Paul Smiths, New York?",
    "question_th": "โรงเรียนที่ก่อตั้งในเมือง Paul Smiths รัฐนิวยอร์ก ก่อตั้งเมื่อปีใด",
    "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_en": "What was fitzroy's away side score?",
    "question_th": "คะแนนทีมเยือนของฟิตซ์รอยคืออะไร?",
    "context": "CREATE TABLE table_name_59 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_53 WHERE college = \"uab\"",
    "question_en": "What player attended UAB college?",
    "question_th": "ผู้เล่นคนไหนที่เข้าเรียนวิทยาลัย UAB?",
    "context": "CREATE TABLE table_name_53 (player VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_14 WHERE stadium = \"rich stadium\"",
    "question_en": "What was the score of the game at RIch Stadium?",
    "question_th": "เกมนี้ที่ ริช สเตเดี้ยม ทำได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_14 (result VARCHAR, stadium VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_21 WHERE best = \"1:32.269\"",
    "question_en": "Who had the best time of 1:32.269?",
    "question_th": "ใครทำเวลาได้ดีที่สุดที่ 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_en": "Who from Conquest Racing had the best time of 1:34.748 in Qual 1?",
    "question_th": "ใครจาก Conquest Racing ที่มีเวลาดีที่สุดที่ 1:34.748 ในรอบ 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_en": "Who in Qual 2 had the best time of 1:31.327?",
    "question_th": "ใครในรอบที่ 2 ทำเวลาได้ดีที่สุดที่ 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_en": "What was Dan Selznick best time?",
    "question_th": "Dan Selznick ช่วงไหนดีที่สุด?",
    "context": "CREATE TABLE table_name_63 (best VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_55 WHERE qual_2 = \"1:34.578\"",
    "question_en": "What team had 1:34.578 in Qual 2?",
    "question_th": "ทีมใดมี 1:34.578 ในรอบ 2?",
    "context": "CREATE TABLE table_name_55 (team VARCHAR, qual_2 VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_87 WHERE name = \"jiang tengyi\"",
    "question_en": "Jiang Tengyi is on which team?",
    "question_th": "เจียง เต็งยี่ อยู่ทีมไหน?",
    "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_en": "What is the away team's score when footscray is the away team?",
    "question_th": "ทีมเยือนได้คะแนนเท่าไหร่ เมื่อฟุตสเครย์เป็นทีมเยือน?",
    "context": "CREATE TABLE table_name_74 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_42 WHERE bronze = 1 AND nation = \"czechoslovakia\"",
    "question_en": "What was the rank for czechoslovakia with 1 bronze?",
    "question_th": "เชโกสโลวาเกียได้ 1 เหรียญทองแดงอยู่อันดับไหน?",
    "context": "CREATE TABLE table_name_42 (rank VARCHAR, bronze VARCHAR, nation VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(bronze) FROM table_name_8 WHERE gold > 9",
    "question_en": "How many bronze medals for the nation with over 9 golds?",
    "question_th": "9 เหรียญทองให้ประเทศชาติได้กี่เหรียญ?",
    "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_en": "What is the average number of goals that occurred in Hong Kong Stadium, Hong Kong?",
    "question_th": "จำนวนประตูเฉลี่ยที่เกิดขึ้นในฮ่องกงสเตเดี้ยม, ฮ่องกงคือเท่าใด?",
    "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_en": "Which country uses pound sterling with a value higher than 1.33 USD?",
    "question_th": "ประเทศใดใช้เงินปอนด์สเตอร์ลิงที่มีมูลค่าสูงกว่า 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_en": "What venue features carlton at home?",
    "question_th": "สถานที่ใดที่มีคาร์ลตันอยู่ที่บ้าน?",
    "context": "CREATE TABLE table_name_88 (venue VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_66 WHERE away_team = \"fitzroy\"",
    "question_en": "What venue features fitzroy as the away side?",
    "question_th": "สนามใดที่มีฟิตซ์รอยเป็นทีมเยือน?",
    "context": "CREATE TABLE table_name_66 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT MIN(crowd) FROM table_name_18 WHERE home_team = \"melbourne\"",
    "question_en": "What was the smallest crowd that Melbourne played for at home?",
    "question_th": "แฟนบอลกลุ่มเล็กที่สุดที่เมลเบิร์นเล่นให้ในบ้านคือกลุ่มใด",
    "context": "CREATE TABLE table_name_18 (crowd INTEGER, home_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_75 WHERE away_team = \"richmond\"",
    "question_en": "What home team played the away team of Richmond?",
    "question_th": "เจ้าบ้านทีมไหนเล่นทีมเยือนริชมอนด์?",
    "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_en": "What is the high score for the player with 0 stumps, 4 catches, more than 14 inns and an average smaller than 56.1?",
    "question_th": "คะแนนสูงสุดสำหรับผู้เล่นที่มี 0 ตอไม้ 4 จับ โรงแรมมากกว่า 14 แห่ง และค่าเฉลี่ยน้อยกว่า 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_en": "What is the total number of runs for the player with fewer than 9 Inns?",
    "question_th": "จำนวนการวิ่งทั้งหมดสำหรับผู้เล่นที่มีโรงแรมขนาดเล็กน้อยกว่า 9 แห่งเป็นเท่าใด?",
    "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_en": "What is the smallest average for the player with 13 matches and fewer than 7 catches?",
    "question_th": "ค่าเฉลี่ยที่น้อยที่สุดสำหรับผู้เล่นที่มี 13 นัดและจับได้น้อยกว่า 7 ครั้งคือเท่าไร?",
    "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_en": "Which city is the host of the University of Texas?",
    "question_th": "เมืองใดเป็นเจ้าภาพของมหาวิทยาลัยเท็กซัส",
    "context": "CREATE TABLE table_name_1 (city VARCHAR, host VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_name_16 WHERE venue = \"thompson-boling arena\"",
    "question_en": "In which region is the Thompson-Boling arena located?",
    "question_th": "สนามกีฬา Thompson-Boling ตั้งอยู่ในภูมิภาคใด",
    "context": "CREATE TABLE table_name_16 (region VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT host FROM table_name_61 WHERE city = \"philadelphia\"",
    "question_en": "Who is the host in the city of Philadelphia?",
    "question_th": "ใครเป็นเจ้าภาพในเมืองฟิลาเดลเฟีย?",
    "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_en": "Which city in the mideast region is the hot of Temple University?",
    "question_th": "เมืองไหนในภาคตะวันออกกลางที่กำลังมาแรงของ 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_en": "Which city is the University of Montana located in?",
    "question_th": "มหาวิทยาลัยมอนทานาตั้งอยู่ในเมืองใด",
    "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_en": "What was the away team score at Hawthorn?",
    "question_th": "คะแนนทีมเยือนที่ฮอว์ธอร์นเป็นเท่าไหร่?",
    "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_en": "Who went to Geelong to play?",
    "question_th": "ใครไปจีลองเล่นบ้างคะ?",
    "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_en": "Who did Collingwood play at home?",
    "question_th": "คอลลิงวูดเล่นในบ้านใคร?",
    "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²_ > 50 OFFSET 350",
    "question_en": "Which population is the greatest, has a density of 20.3, and an area (km²) larger than 50,350?",
    "question_th": "ประชากรใดมากที่สุด มีความหนาแน่น 20.3 และพื้นที่ (กม. ²) มากกว่า 50,350",
    "context": "CREATE TABLE table_name_1 (population INTEGER, density VARCHAR, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_73 WHERE venue = \"junction oval\"",
    "question_en": "Who was the home team at the game held at the Junction Oval?",
    "question_th": "ทีมเจ้าบ้านในเกมที่จัดขึ้นที่จังก์ชันโอวัลคือใคร?",
    "context": "CREATE TABLE table_name_73 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_24 WHERE away_team = \"fitzroy\"",
    "question_en": "Where was the game held when Fitzroy was the away team?",
    "question_th": "เกมนี้จัดขึ้นที่ไหนเมื่อฟิตซ์รอยเป็นทีมเยือน?",
    "context": "CREATE TABLE table_name_24 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_86 WHERE opponent = \"kansas city chiefs\"",
    "question_en": "How many people attended the Rams game against the Kansas City Chiefs?",
    "question_th": "มีกี่คนที่เข้าร่วมเกม Rams กับ Kansas City Chiefs?",
    "context": "CREATE TABLE table_name_86 (attendance VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT iata FROM table_name_58 WHERE country = \"china\"",
    "question_en": "What is China's IATA?",
    "question_th": "IATA ของจีนคืออะไร?",
    "context": "CREATE TABLE table_name_58 (iata VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_59 WHERE city = \"douala\"",
    "question_en": "Where is the City of Douala?",
    "question_th": "เมืองดูอาลาอยู่ที่ไหน?",
    "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_en": "Which airport is in South Africa and has a ICAO fajs?",
    "question_th": "สนามบินใดอยู่ในแอฟริกาใต้และมี 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_en": "What is Cuba's ICAO?",
    "question_th": "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_en": "What is Angola's airport and ICAO of fnsa?",
    "question_th": "สนามบินของแองโกลาและ ICAO ของ 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_en": "What team plays at home at Windy Hill?",
    "question_th": "ทีมไหนเล่นในบ้านที่ 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_en": "What was Footscray's score as an away team?",
    "question_th": "ฟุตสเครย์ทำได้เท่าไหร่ในเกมเยือน?",
    "context": "CREATE TABLE table_name_45 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_71 WHERE away_team = \"richmond\"",
    "question_en": "What day is richmond the away side?",
    "question_th": "ริชมอนด์ฝั่งทีมเยือนวันไหน?",
    "context": "CREATE TABLE table_name_71 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_95 WHERE away_team = \"hawthorn\"",
    "question_en": "Who is the home team when hawthorn is the away team?",
    "question_th": "เจ้าบ้านคือใคร เมื่อ ฮอว์ธอร์น เป็นทีมเยือน?",
    "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_en": "What is the name of the game with odds of winning 1 in 4.23 with a top prize of $15,000?",
    "question_th": "ชื่อของเกมที่มีอัตราการชนะ 1 ใน 4.23 โดยมีเงินรางวัลสูงสุด 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_en": "What is the launch date odds of winning 1 in 4.23 with a top prize of $15,000?",
    "question_th": "โอกาสที่จะชนะ 1 ใน 4.23 ด้วยเงินรางวัลสูงสุด 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_en": "What is the launch date odds of winning 1 in 4.54?",
    "question_th": "โอกาสที่จะชนะ 1 ใน 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_en": "What is the launch date odds of winning 1 in 4.44?",
    "question_th": "โอกาสที่จะชนะ 1 ใน 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_en": "What is the name of the game with a top prize of $888?",
    "question_th": "เกมที่มีรางวัลสูงสุด $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_en": "What is the top price of $1 with a launch date on February 12, 2008?",
    "question_th": "ราคาสูงสุดของ 1 ดอลลาร์ซึ่งมีกำหนดเปิดตัวในวันที่ 12 กุมภาพันธ์ พ.ศ. 2551 คือเท่าใด",
    "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_en": "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?",
    "question_th": "จำนวนรอบสูงสุดเมื่อมีน้อยกว่า 5 แต้มสำหรับทีมแกร์รี โรเจอร์ส มอเตอร์สปอร์ต และหมายเลขกริดต่ำกว่า 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_en": "What is the name of the driver who went 46 laps had less than 9 points and had a grid number under 12?",
    "question_th": "นักแข่งที่วิ่งไป 46 รอบมีคะแนนไม่ถึง 9 แต้ม มีเลขกริดต่ำกว่า 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_en": "Where was the 1966 final played?",
    "question_th": "รอบชิงชนะเลิศปี 1966 เล่นที่ไหน?",
    "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_en": "What is the average Worst score for Mario Lopez as the Best dancer and Tango as the Dance?",
    "question_th": "คะแนนเฉลี่ยที่แย่ที่สุดสำหรับ Mario Lopez ในฐานะนักเต้นที่ดีที่สุดและ Tango ในฐานะการเต้นรำคืออะไร?",
    "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_en": "What is the highest Best score for the Dance Mambo?",
    "question_th": "คะแนนที่ดีที่สุดสูงสุดสำหรับ 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_en": "Who is the Best dancer with the Worst dancer of Jerry Springer, a Best score of 29, and the Dance was the Quickstep?",
    "question_th": "ใครคือนักเต้นที่ดีที่สุดกับนักเต้นที่แย่ที่สุดของ Jerry Springer คะแนนดีที่สุด 29 และการเต้นรำคือ 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_en": "How many dances placed below 1 with a point total of 40?",
    "question_th": "มีกี่ท่าเต้นที่ต่ำกว่า 1 โดยมีคะแนนรวม 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_en": "What is the lowest number of dances with a rank larger than 4 and a place of 8?",
    "question_th": "จำนวนการเต้นรำต่ำสุดที่มีอันดับมากกว่า 4 และอันดับที่ 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_en": "What is the lowest number of dances with a less than 2 place and an average smaller than 27.5?",
    "question_th": "จำนวนการเต้นรำต่ำสุดที่น้อยกว่า 2 อันดับและค่าเฉลี่ยน้อยกว่า 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_en": "What is the total difference for teams that played less than 6 games?",
    "question_th": "อะไรคือความแตกต่างโดยรวมสำหรับทีมที่เล่นน้อยกว่า 6 เกม?",
    "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_en": "What is the highest number of games played for teams that lost over 5 games and had an against total of 228?",
    "question_th": "จำนวนเกมที่เล่นมากที่สุดสำหรับทีมที่แพ้เกิน 5 เกมและแพ้ทั้งหมด 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_en": "How many games lost for team(s) with less than 4 paints and against total of over 340?",
    "question_th": "มีกี่เกมที่แพ้สำหรับทีมที่มีสีน้อยกว่า 4 สีและรวมมากกว่า 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_en": "What week was the game that had an attendance of 24,242?",
    "question_th": "สัปดาห์ใดคือเกมที่มีผู้เข้าร่วม 24,242 คน?",
    "context": "CREATE TABLE table_name_34 (week VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_8 WHERE result = \"l 35–14\"",
    "question_en": "What was the attendance of the game that had a score of l 35–14?",
    "question_th": "ผู้เข้าร่วมเกมที่มีคะแนน l 35–14 เป็นเท่าใด",
    "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_en": "When was the pre-Week 10 game that had an attendance of over 38,865?",
    "question_th": "เกมก่อนสัปดาห์ที่ 10 ที่มีผู้เข้าชมมากกว่า 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_en": "Which Location has a PPV Buyrate of 775,000?",
    "question_th": "สถานที่ใดมีอัตราซื้อ PPV 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_en": "Where did Geelong play as the away team?",
    "question_th": "จีลองเล่นเป็นทีมเยือนที่ไหน?",
    "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_en": "What was the away team's score against Hawthorn?",
    "question_th": "ฮอว์ธอร์นทีมเยือนได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_23 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team AS score FROM table_name_33 WHERE home_team = \"fitzroy\"",
    "question_en": "When Fitzroy was the home team, what was the away team's score?",
    "question_th": "เมื่อฟิตซ์รอยเป็นเจ้าบ้านสกอร์ทีมเยือนเท่าไหร่?",
    "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_en": "How big was the largest crowd recorded at the Arden Street Oval venue?",
    "question_th": "ฝูงชนที่ใหญ่ที่สุดที่บันทึกไว้ในสถานที่จัดงาน Arden Street Oval มีมากเพียงใด",
    "context": "CREATE TABLE table_name_73 (crowd INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT MIN(attendance) FROM table_name_76 WHERE week = 1",
    "question_en": "What is the smallest attendance in week 1?",
    "question_th": "ผู้เข้าร่วมน้อยที่สุดในสัปดาห์ที่ 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_en": "What is the larges week for the date  august 9, 1968 and less than 64,020 in attendance?",
    "question_th": "สัปดาห์ใหญ่สำหรับวันที่ 9 สิงหาคม 1968 คือสัปดาห์ใดและมีผู้เข้าร่วมน้อยกว่า 64,020 คน?",
    "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_en": "What is the smallest attendance number for august 9, 1968?",
    "question_th": "จำนวนผู้เข้าร่วมที่น้อยที่สุดสำหรับวันที่ 9 สิงหาคม 2511 คือเท่าใด",
    "context": "CREATE TABLE table_name_45 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_69 WHERE date = \"august 30, 1968\"",
    "question_en": "What was the result of the game on august 30, 1968?",
    "question_th": "ผลการแข่งขันวันที่ 30 สิงหาคม 2511 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_69 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_name_13 WHERE call_sign = \"w267an\"",
    "question_en": "What is the class of the w267an call sign?",
    "question_th": "สัญญาณเรียกขาน w267an คลาสอะไร?",
    "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_en": "What is the lowest ERP W of the 67829 Facility ID?",
    "question_th": "ERP W ต่ำสุดของ ID สิ่งอำนวยความสะดวก 67829 คือเท่าใด",
    "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_en": "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?",
    "question_th": "ข้อมูล FCC สำหรับสัญญาณเรียกขานที่มีความถี่ MHz 101.3, ERP W มากกว่า 10 และ ID สิ่งอำนวยความสะดวกเล็กกว่า 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_en": "What was the average of the Off Reb with steals less than 8 and FTM-FTA of 16-17?",
    "question_th": "ค่าเฉลี่ยของ Off Reb ที่ขโมยน้อยกว่า 8 และ FTM-FTA ที่ 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_en": "Which song released on heavenly (hvn152)?",
    "question_th": "เพลงไหนที่ออกบนสวรรค์ (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_en": "Which album had a release of heavenly (hvn95)?",
    "question_th": "อัลบั้มไหนมีเพลง 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_en": "What is the sum of all the rounds when a Florida State player was drafted?",
    "question_th": "ผลรวมของรอบทั้งหมดเมื่อผู้เล่นรัฐฟลอริดาถูกร่างเป็นเท่าใด",
    "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_en": "What is the average round in which a Safety with an overall rank higher than 89 was drafted?",
    "question_th": "รอบเฉลี่ยที่มีการร่างความปลอดภัยที่มีอันดับโดยรวมสูงกว่า 89 คือเท่าใด",
    "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_en": "Where was 2010 tournament where the United States received the silver?",
    "question_th": "การแข่งขันปี 2010 ที่สหรัฐอเมริกาได้รับเหรียญเงินอยู่ที่ไหน",
    "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_en": "Where was the tournament where Finland received the bronze and the United States received the silver?",
    "question_th": "การแข่งขันที่ไหนที่ฟินแลนด์ได้เหรียญทองแดง และสหรัฐอเมริกาได้เหรียญเงิน?",
    "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_en": "Who received the gold at the tournament at bratislava where the Czech Republic received the silver?",
    "question_th": "ใครเป็นผู้ได้รับเหรียญทองในการแข่งขันที่บราติสลาวา ซึ่งสาธารณรัฐเช็กได้รับเหรียญเงิน?",
    "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_en": "Where was the post 1991 tournament where the Czech Republic received the bronze and Russia received the silver?",
    "question_th": "การแข่งขันหลังปี 1991 อยู่ที่ไหนที่สาธารณรัฐเช็กได้เหรียญทองแดง และรัสเซียได้เหรียญเงิน?",
    "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_en": "Who was the away team at the game at Kardinia Park?",
    "question_th": "ทีมเยือนในเกมที่คาร์ดิเนีย พาร์คคือใคร?",
    "context": "CREATE TABLE table_name_99 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT MIN(crowd) FROM table_name_83 WHERE away_team = \"melbourne\"",
    "question_en": "What was the smallest crowd for a Melbourne away game?",
    "question_th": "จำนวนผู้ชมที่น้อยที่สุดในเกมเยือนเมลเบิร์นคือเท่าใด?",
    "context": "CREATE TABLE table_name_83 (crowd INTEGER, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_55 WHERE week = 8",
    "question_en": "What day did the team play on week 8?",
    "question_th": "สัปดาห์ที่ 8 ทีมเล่นวันไหน?",
    "context": "CREATE TABLE table_name_55 (date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT AVG(crowd) FROM table_name_28 WHERE venue = \"corio oval\"",
    "question_en": "What was the average size of the crowd for matches held at Corio Oval?",
    "question_th": "ขนาดฝูงชนโดยเฉลี่ยสำหรับการแข่งขันที่จัดขึ้นที่ 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_en": "What home team played against St Kilda?",
    "question_th": "ทีมเหย้าทีมใดเล่นกับเซนต์คิลดา?",
    "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_en": "At what venue was South Melbourne the home team?",
    "question_th": "เซาธ์ เมลเบิร์น เป็นเจ้าบ้านที่สนามใด?",
    "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_en": "What was Hawthorn's score when they were the home team?",
    "question_th": "ฮอว์ธอร์นเมื่อเจ้าบ้านได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_24 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team AS score FROM table_name_96 WHERE venue = \"lake oval\"",
    "question_en": "What was the home team's score when they played at Lake Oval?",
    "question_th": "เมื่อเล่นที่เลคโอวัลเจ้าบ้านได้คะแนนเท่าไหร่?",
    "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_en": "What is the latest available income inequality for the country with a population of 21,315,135?",
    "question_th": "ความไม่เท่าเทียมกันของรายได้ที่มีอยู่ล่าสุดของประเทศที่มีประชากร 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_en": "What is the IEF 2011 of the country with an FSI 2012 of 99.2?",
    "question_th": "IEF 2011 ของประเทศที่มี FSI 2012 เท่ากับ 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_en": "What is the current income inequality for the country of Seychelles?",
    "question_th": "ความไม่เท่าเทียมกันของรายได้ในปัจจุบันของประเทศเซเชลส์คืออะไร?",
    "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_en": "What is the HDI 2011 of the country with a DI 2011 of 7.63?",
    "question_th": "HDI 2011 ของประเทศที่มี DI 2011 เท่ากับ 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_en": "What country has an IEF 2011 of 45.3?",
    "question_th": "ประเทศใดมี IEF 2011 เป็น 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_en": "What date did South Melbourne play as the Away team?",
    "question_th": "เซาธ์ เมลเบิร์น ลงเล่นเป็นทีมเยือนวันไหน?",
    "context": "CREATE TABLE table_name_79 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_95 WHERE home_team = \"essendon\"",
    "question_en": "Where did Essendon play as the home team?",
    "question_th": "เอสเซนดอนเล่นเป็นเจ้าบ้านที่ไหน?",
    "context": "CREATE TABLE table_name_95 (venue VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_54 WHERE school_country = \"arkansas\"",
    "question_en": "What position does the player from arkansas play?",
    "question_th": "นักเตะจากอาร์คันซอเล่นตำแหน่งอะไร?",
    "context": "CREATE TABLE table_name_54 (position VARCHAR, school_country VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_90 WHERE venue = \"glenferrie oval\"",
    "question_en": "Who is the away side at glenferrie oval?",
    "question_th": "เกลนเฟอร์รี่โอวัลคือทีมเยือนใคร?",
    "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_en": "What is the away side's score when richmond is at home?",
    "question_th": "ฝั่งทีมเยือนตอนริชมอนด์อยู่เจ้าบ้านเท่าไหร่?",
    "context": "CREATE TABLE table_name_3 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT crowd FROM table_name_43 WHERE home_team = \"collingwood\"",
    "question_en": "What was the crowd size at Collingwood's match?",
    "question_th": "ขนาดฝูงชนในการแข่งขันของ Collingwood คืออะไร?",
    "context": "CREATE TABLE table_name_43 (crowd VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT crowd FROM table_name_51 WHERE venue = \"arden street oval\"",
    "question_en": "What was the crowd size at Arden Street Oval?",
    "question_th": "ขนาดฝูงชนที่ 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_en": "What is the status of the match between Scotland v Northern Ireland?",
    "question_th": "สถานะการแข่งขันระหว่างสกอตแลนด์ vs ไอร์แลนด์เหนือเป็นอย่างไร?",
    "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_en": "In what week was the game on August 10, 1956 played?",
    "question_th": "เกมในวันที่ 10 สิงหาคม พ.ศ. 2499 เล่นในสัปดาห์ใด",
    "context": "CREATE TABLE table_name_54 (week INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_9 WHERE week = 6",
    "question_en": "What was the attendance of the game in week 6?",
    "question_th": "การเข้าร่วมเกมในสัปดาห์ที่ 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_en": "In what week was the game on August 24, 1956 played in front of 40,175 fans?",
    "question_th": "เกมในวันที่ 24 สิงหาคม พ.ศ. 2499 เล่นต่อหน้าแฟนบอล 40,175 คนในสัปดาห์ใด",
    "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_en": "What signal quality does the KCAL-DT channel have?",
    "question_th": "ช่อง KCAL-DT มีคุณภาพสัญญาณอะไรบ้าง?",
    "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_en": "What original channel is associated with B Mountain Channel 9?",
    "question_th": "ช่องเดิมใดที่เชื่อมโยงกับช่องบีเมาน์เท่น 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_en": "What B Mountain Channel has station call letters of k41go?",
    "question_th": "ช่อง B Mountain Channel ใดมีอักษรเรียกสถานีของ 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_en": "What Laurel Mountain Channel is associated with B Mountain Channel of 7?",
    "question_th": "ช่อง Laurel Mountain Channel ใดที่เกี่ยวข้องกับช่อง B Mountain ช่อง 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_en": "What are the translator call letters for station call letters of KCOP-DT?",
    "question_th": "อักษรเรียกผู้แปลสำหรับอักษรเรียกสถานีของ 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_en": "What date was fitzroy the home team?",
    "question_th": "ฟิตซ์รอยเจ้าบ้านนัดวันไหน?",
    "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_en": "What was the score for the away team when the home team was richmond?",
    "question_th": "ทีมเยือนเมื่อเจ้าบ้านเป็นริชมอนด์ได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_75 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_57 WHERE home_team = \"footscray\"",
    "question_en": "What is the venue where the home team is Footscray?",
    "question_th": "ฟุตสเครย์ เจ้าบ้านสนามไหน?",
    "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_en": "What is the venue for the game on 1 June 1929 where Richmond was the away team?",
    "question_th": "สนามแข่งขันวันที่ 1 มิถุนายน พ.ศ. 2472 ซึ่งริชมอนด์เป็นทีมเยือนคือที่ไหน?",
    "context": "CREATE TABLE table_name_96 (venue VARCHAR, date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT speed FROM table_name_24 WHERE points = 1",
    "question_en": "What was the speed of the rider that earned 1 point?",
    "question_th": "นักบิดที่ได้ 1 แต้มมีความเร็วเท่าไหร่?",
    "context": "CREATE TABLE table_name_24 (speed VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_22 WHERE venue = \"brunswick street oval\"",
    "question_en": "What away team is playing at the Brunswick Street Oval Venue?",
    "question_th": "ทีมเยือนทีมใดกำลังเล่นที่สนามบรันสวิกสตรีทโอวัล?",
    "context": "CREATE TABLE table_name_22 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_32 WHERE home_team = \"richmond\"",
    "question_en": "What date does the Home team of Richmond have?",
    "question_th": "ทีมเหย้าของริชมอนด์มีวันไหน?",
    "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_en": "Who is the home team at Victoria Park on 20 April 1957?",
    "question_th": "ทีมเหย้าที่วิคตอเรีย พาร์ค คือใคร เมื่อวันที่ 20 เมษายน พ.ศ. 2500?",
    "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_en": "What municipality is the Harmon Cove station located in?",
    "question_th": "สถานี Harmon Cove ตั้งอยู่ในเขตเทศบาลใด",
    "context": "CREATE TABLE table_name_58 (municipality VARCHAR, station VARCHAR)"
  },
  {
    "answer": "SELECT municipality FROM table_name_53 WHERE station = \"benson street\"",
    "question_en": "What municipality is the Benson Street station located in?",
    "question_th": "สถานี Benson Street ตั้งอยู่ในเขตเทศบาลใด",
    "context": "CREATE TABLE table_name_53 (municipality VARCHAR, station VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_99 WHERE partner = \"corrado barazzutti\"",
    "question_en": "What date shows corrado barazzutti's partner?",
    "question_th": "คู่หูของคอร์ราโด บารัซซูตติแสดงวันไหน?",
    "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_en": "Which date has the tom gullikson butch walts final, and who was the runner-up?",
    "question_th": "ทอม กุลลิกสัน บุทช์ เข้าชิงชนะเลิศวันไหน และใครคือรองชนะเลิศ?",
    "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_en": "Who is the home team of the game against Essendon?",
    "question_th": "เจ้าบ้านในเกมเจอเอสเซนดอนคือใคร?",
    "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_en": "Who is the color commentator for ESPN from 1990 to 1992?",
    "question_th": "ใครคือผู้บรรยายสีของ ESPN ตั้งแต่ปี 1990 ถึง 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_en": "Who was the sideline reporter prior to 1993?",
    "question_th": "ใครคือนักข่าวข้างสนามก่อนปี 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_en": "Who was the play by play commentator for ABC after 1998?",
    "question_th": "ใครคือผู้วิจารณ์ละครโดยการเล่นของ ABC หลังปี 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_en": "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?",
    "question_th": "ปีแรกสุดที่ Al Michaels เป็นผู้วิจารณ์แบบเล่นต่อเกม โดยที่ Lesley Visser และ Dan Fouts เป็นนักข่าวข้างสนามด้วยคือปีใด",
    "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_en": "For how many years combined were Frank Gifford and Dan Dierdorf color commentators?",
    "question_th": "ผู้วิจารณ์สีของ Frank Gifford และ Dan Dierdorf รวมกันเป็นเวลากี่ปี?",
    "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_en": "Which sideline reporters worked alongside Frank Gifford and Dan Dierdorf?",
    "question_th": "นักข่าวข้างสนามคนไหนที่ทำงานร่วมกับแฟรงก์ กิฟฟอร์ด และแดน เดียร์ดอร์ฟ?",
    "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_en": "When was the Lundy withdrawn?",
    "question_th": "ลันดี้ถูกถอนออกเมื่อใด?",
    "context": "CREATE TABLE table_name_49 (withdrawn VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT whenbuilt FROM table_name_28 WHERE name = \"fighter command\"",
    "question_en": "When was the locomotive named fighter command built?",
    "question_th": "หัวรถจักรชื่อ Fighter Command ถูกสร้างขึ้นเมื่อใด?",
    "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_en": "Which country has a rand of 2 and a silver less than 6?",
    "question_th": "ประเทศใดมีแรนด์ 2 และเงินน้อยกว่า 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_en": "What is the lowest total of medals that has a gold of 3 and a silver less than 3?",
    "question_th": "เหรียญรวมต่ำสุดที่มี 3 เหรียญทองและเหรียญเงินน้อยกว่า 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_en": "What was the home team score for the game played at MCG?",
    "question_th": "คะแนนเจ้าบ้านในเกมที่เล่นที่เอ็มซีจีเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_61 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_4 WHERE venue = \"windy hill\"",
    "question_en": "For the game played at Windy Hill, who was the away team?",
    "question_th": "สำหรับเกมที่เล่นที่ วินดี้ ฮิลล์ ทีมเยือนคือทีมไหน?",
    "context": "CREATE TABLE table_name_4 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_7 WHERE away_team = \"north melbourne\"",
    "question_en": "For the game where the away team was North Melbourne, what was the venue?",
    "question_th": "เกมที่ทีมเยือนคือ นอร์ท เมลเบิร์น สนามที่เท่าไหร่?",
    "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_en": "What is the Weight for the Name Billy Miller Category:Articles with hcards?",
    "question_th": "น้ำหนักของชื่อ Billy Miller คืออะไร หมวดหมู่:บทความที่มี 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_en": "What is the 2012 club for the Billy Miller Category:Articles with hcards (Name)?",
    "question_th": "สโมสรปี 2012 สำหรับหมวดหมู่ Billy Miller คืออะไร: บทความที่มี hcards (ชื่อ)",
    "context": "CREATE TABLE table_name_55 (name VARCHAR)"
  },
  {
    "answer": "SELECT MIN(total) FROM table_name_87 WHERE nation = \"china\"",
    "question_en": "How many medals did China receive?",
    "question_th": "จีนได้รับเหรียญรางวัลกี่เหรียญ?",
    "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_en": "What is the # of candidates that have a popular vote of 41.37%?",
    "question_th": "#ผู้สมัครที่ได้รับคะแนนนิยม 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_en": "What is the # of candidates of liberal majority with 51 wins and larger number of 2008 in general elections?",
    "question_th": "# ของผู้สมัครที่มีเสียงข้างมากแบบเสรีนิยมซึ่งชนะ 51 ครั้งและจำนวนที่มากกว่าในปี 2551 ในการเลือกตั้งทั่วไปคือเท่าใด",
    "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_en": "How many general elections that have won smaller than 23 with candidates larger than 108?",
    "question_th": "มีการเลือกตั้งทั่วไปกี่ครั้งที่ชนะคะแนนน้อยกว่า 23 คนและมีผู้สมัครมากกว่า 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_en": "What venue did melbourne play at as the away team?",
    "question_th": "เมลเบิร์นเล่นที่สนามไหนในฐานะทีมเยือน?",
    "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_en": "What was the essendon score when they were at home?",
    "question_th": "เอสเซนดอนคะแนนเมื่ออยู่ที่บ้านเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_25 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_60 WHERE away_team = \"melbourne\"",
    "question_en": "What venue did melbourne play at as the away team?",
    "question_th": "เมลเบิร์นเล่นที่สนามไหนในฐานะทีมเยือน?",
    "context": "CREATE TABLE table_name_60 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT years FROM table_name_24 WHERE goals = 82",
    "question_en": "What Years have a Goal of 82?",
    "question_th": "ปีใดมีเป้าหมายที่ 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_en": "What is the total of overall values with a safety position in a round greater than 1?",
    "question_th": "ค่ารวมที่มีตำแหน่งปลอดภัยในรอบที่มากกว่า 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_en": "What is the average overall value for a round less than 4 associated with the College of Georgia?",
    "question_th": "มูลค่ารวมเฉลี่ยสำหรับรอบที่น้อยกว่า 4 ที่เกี่ยวข้องกับวิทยาลัยจอร์เจียคือเท่าใด",
    "context": "CREATE TABLE table_name_32 (overall INTEGER, round VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT AVG(attendance) FROM table_name_58 WHERE week > 16",
    "question_en": "What was the average attendance in weeks after 16?",
    "question_th": "การเข้าร่วมโดยเฉลี่ยในสัปดาห์หลังจาก 16 ปีเป็นเท่าใด",
    "context": "CREATE TABLE table_name_58 (attendance INTEGER, week INTEGER)"
  },
  {
    "answer": "SELECT MAX(killed) FROM table_name_48 WHERE incident_no = \"14\"",
    "question_en": "What is the highest number killed in incident #14?",
    "question_th": "จำนวนผู้เสียชีวิตสูงสุดในเหตุการณ์ #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_en": "What was the largest crowd at Arden Street Oval?",
    "question_th": "ฝูงชนที่ใหญ่ที่สุดใน 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_en": "What was the home teams score at Arden Street Oval?",
    "question_th": "คะแนนของเจ้าบ้านที่อาร์เดน สตรีท โอวัลเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_50 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT MIN(gold) FROM table_name_13 WHERE total > 44",
    "question_en": "What was the gold medal total for a total of 44 medals?",
    "question_th": "รวม 44 เหรียญ ได้เหรียญทองเท่าไหร่?",
    "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_en": "How many silver medals were won with a total medal of 3 and a rank above 9?",
    "question_th": "มีเหรียญเงินทั้งหมด 3 เหรียญและอันดับสูงกว่า 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_en": "How many weeks had an attendance of over 68,000?",
    "question_th": "มีผู้เข้าร่วมมากกว่า 68,000 คนกี่สัปดาห์?",
    "context": "CREATE TABLE table_name_74 (week VARCHAR, attendance INTEGER)"
  },
  {
    "answer": "SELECT engine FROM table_name_82 WHERE finish = \"2nd\"",
    "question_en": "What engine was used by the team the finished 2nd?",
    "question_th": "ทีมใช้เครื่องยนต์อะไรในอันดับที่ 2?",
    "context": "CREATE TABLE table_name_82 (engine VARCHAR, finish VARCHAR)"
  },
  {
    "answer": "SELECT chassis FROM table_name_70 WHERE engine = \"chevrolet\" AND year = 1991",
    "question_en": "What chassis was used with the Chevrolet engine in 1991?",
    "question_th": "แชสซีใดที่ใช้กับเครื่องยนต์เชฟโรเลตในปี 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_en": "What was the most recent year when a g-force chassis started in 1st?",
    "question_th": "ปีล่าสุดที่แชสซี g-force เริ่มต้นในวันที่ 1 คืออะไร?",
    "context": "CREATE TABLE table_name_35 (year INTEGER, start VARCHAR, chassis VARCHAR)"
  },
  {
    "answer": "SELECT start FROM table_name_33 WHERE year < 1986",
    "question_en": "What was the starting position in the year before 1986?",
    "question_th": "ตำแหน่งเริ่มต้นในปีก่อนปี 2529 คืออะไร?",
    "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_en": "What is the name of the Malta vessel built after 2010 that is a GL class Panamax vessel?",
    "question_th": "เรือมอลตาที่สร้างขึ้นหลังปี 2010 เป็นเรือปานามาคลาส GL ชื่ออะไร",
    "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_en": "Which year was the vessel Deva built as a Panamax DNV class ship?",
    "question_th": "เรือ Deva สร้างขึ้นในปีใดเป็นเรือชั้น Panamax DNV",
    "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_en": "What is the class of vessel of the ship Hyundai Smart?",
    "question_th": "เรือของเรือ 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_en": "In which class would the vessel Hyundai Tenacity be placed?",
    "question_th": "เรือ Hyundai Tenacity จะจัดอยู่ในคลาสใด?",
    "context": "CREATE TABLE table_name_77 (class VARCHAR, vessel_name VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_29 WHERE week = 14",
    "question_en": "What was the result for week 14?",
    "question_th": "สัปดาห์ที่ 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_en": "Which lowest rank(player) has a rebound average larger than 9, out of 920 rebounds, and who played more than 79 games?",
    "question_th": "อันดับต่ำสุด (ผู้เล่น) ใดที่มีค่าเฉลี่ยการรีบาวด์มากกว่า 9 จาก 920 รีบาวด์ และใครที่เล่นเกมมากกว่า 79 เกม?",
    "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_en": "How many ranks have a rebound average smaller than 6.1?",
    "question_th": "มีกี่อันดับที่มีค่าเฉลี่ยการเด้งกลับน้อยกว่า 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_en": "Which player was drafted higher than 374 and went to the school Stephen F. Austin?",
    "question_th": "ผู้เล่นคนไหนที่ถูกเกณฑ์ทหารสูงกว่า 374 และไปโรงเรียน 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_en": "What is the lowest round Trinity school was drafted with an overall higher than 21?",
    "question_th": "โรงเรียนทรินิตี้รอบต่ำสุดที่ถูกร่างด้วยคะแนนรวมสูงกว่า 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_en": "Who got the time of 7:52.04?",
    "question_th": "ใครทันเวลา 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_en": "Which of the opponents has bye as their box score?",
    "question_th": "ฝ่ายตรงข้ามคนใดได้บายเป็นคะแนนกล่องของพวกเขา?",
    "context": "CREATE TABLE table_name_32 (opponent VARCHAR, box_scores VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_21 WHERE opponent = \"pittsburgh steelers\"",
    "question_en": "How many people attended the game against the pittsburgh steelers?",
    "question_th": "มีกี่คนที่เข้าร่วมเกมกับพิตต์สเบิร์ก สตีลเลอร์ส?",
    "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_en": "What was the result of the game on September 25 with a box score of box?",
    "question_th": "ผลการแข่งขันวันที่ 25 กันยายน 2560 มีบ็อกซ์สกอร์เป็นอย่างไรบ้าง?",
    "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_en": "What is the date of the game later than week 13 and 41,862 people attended?",
    "question_th": "เกมหลังสัปดาห์ที่ 13 คือวันที่ใด และมีผู้เข้าร่วม 41,862 คน?",
    "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_en": "What is the sum of caps for players with less than 9 goals ranked below 8?",
    "question_th": "จำนวนแคปสำหรับผู้เล่นที่มีน้อยกว่า 9 ประตูในอันดับที่ต่ำกว่า 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–1995\"",
    "question_en": "What were the years of senior status for active service in 1972–1995?",
    "question_th": "สถานะอาวุโสสำหรับการรับราชการประจำการในปี พ.ศ. 2515-2538 คือกี่ปี?",
    "context": "CREATE TABLE table_name_53 (senior_status VARCHAR, active_service VARCHAR)"
  },
  {
    "answer": "SELECT born_died FROM table_name_54 WHERE active_service = \"1972–1995\"",
    "question_en": "What were the birth and death years when active service was 1972–1995?",
    "question_th": "ปีเกิดและตายเมื่อเข้าประจำการในปี พ.ศ. 2515-2538 คือปีใด",
    "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–2005\"",
    "question_en": "Which active services years ended in death and had senior status in 1972–2005?",
    "question_th": "ปีรับราชการใดสิ้นสุดลงด้วยการเสียชีวิตและมีสถานะอาวุโสในปี พ.ศ. 2515-2548",
    "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_en": "Which date featured the Boston Patriots as the opponent?",
    "question_th": "วันไหนที่ Boston Patriots เป็นคู่ต่อสู้?",
    "context": "CREATE TABLE table_name_96 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_67 WHERE week = 8",
    "question_en": "Who was the opponent during week 8?",
    "question_th": "คู่ต่อสู้ในช่วงสัปดาห์ที่ 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_en": "What opponent had an attendance of 12,508 during weeks 1 through 8?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีผู้เข้าร่วม 12,508 คนในช่วงสัปดาห์ที่ 1 ถึง 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_en": "What week had an attendance of 14,381?",
    "question_th": "สัปดาห์ใดมีผู้เข้าร่วม 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_en": "Which round was Dave Yovanovits picked?",
    "question_th": "เดฟ โยวาโนวิช เลือกรอบไหน?",
    "context": "CREATE TABLE table_name_43 (round INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_6 WHERE position = \"linebacker\"",
    "question_en": "Where did the player picked for the linebacker position play in college?",
    "question_th": "ผู้เล่นเลือกตำแหน่งทีมบร็องโกที่ไหนในวิทยาลัย?",
    "context": "CREATE TABLE table_name_6 (college VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_91 WHERE week = 12",
    "question_en": "Who did the Browns play week 12?",
    "question_th": "Browns เล่นใครในสัปดาห์ที่ 12?",
    "context": "CREATE TABLE table_name_91 (opponent VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_15 WHERE opponent = \"detroit lions\"",
    "question_en": "What was the attendance in the game against the Detroit Lions?",
    "question_th": "ผู้เข้าชมในเกมกับดีทรอยต์ไลออนส์เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_15 (attendance VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_73 WHERE venue = \"brunswick street oval\"",
    "question_en": "Who played as the away team when they played at Brunswick Street Oval?",
    "question_th": "ใครเคยเล่นเป็นทีมเยือนตอนเล่นที่สนามบรันสวิกสตรีทโอวัล?",
    "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_en": "Who was the home team when the VFL played Arden Street Oval?",
    "question_th": "ทีมเหย้าคือใครเมื่อ VFL เล่น 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_en": "Who is the away side at junction oval?",
    "question_th": "ฝั่งทีมเยือนที่วงรีทางแยกคือใคร?",
    "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_en": "Who was the winning driver of the Kraco Car Stereo 150?",
    "question_th": "ใครคือผู้ชนะการแข่งขัน 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_en": "What time was the fastest lap during Stoh's 200 in 1982?",
    "question_th": "เวลาใดคือรอบที่เร็วที่สุดระหว่าง Stoh's 200 ในปี 1982?",
    "context": "CREATE TABLE table_name_74 (fastest_lap VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_32 WHERE début > 1972 AND opposition = \"limerick\"",
    "question_en": "What is the date for the player who debuted later than 1972 against Limerick?",
    "question_th": "นักเตะที่ประเดิมสนามในเกมกับลิเมอริคหลังปี 1972 คือวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_32 (date VARCHAR, début VARCHAR, opposition VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_18 WHERE opposition = \"limerick\" AND last_game = \"munster semi-final\" AND début = 1973",
    "question_en": "Which player debuted in 1973 against Limerick and played his last game at the Munster semi-final?",
    "question_th": "นักเตะคนไหนที่ลงเดบิวต์ในเกมกับลิเมอริคในปี 1973 และเล่นเกมสุดท้ายของเขาในรอบรองชนะเลิศมุนสเตอร์?",
    "context": "CREATE TABLE table_name_18 (player VARCHAR, début VARCHAR, opposition VARCHAR, last_game VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_78 WHERE week > 7 AND result = \"l 23–17\"",
    "question_en": "What date had a Result of l 23–17 in a week later than 7?",
    "question_th": "วันที่ใดที่มีผล l 23–17 ในหนึ่งสัปดาห์หลังจาก 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_en": "How many people attended the game against the cincinnati bengals?",
    "question_th": "มีกี่คนที่เข้าร่วมเกมกับเบงกอลซินซินเนติ?",
    "context": "CREATE TABLE table_name_15 (attendance VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_76 WHERE time = \"3:31\"",
    "question_en": "What was the attendance for the game played at 3:31?",
    "question_th": "ผู้เข้าชมเกมเวลา 3:31 น. เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_76 (attendance VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_56 WHERE game = 4",
    "question_en": "What was the time for game 4?",
    "question_th": "เกมที่ 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_en": "What was the away team's score at western oval?",
    "question_th": "ทีมเยือนที่เวสเทิร์นโอวัลได้คะแนนเท่าไหร่?",
    "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_en": "Before 2007, how many wins were there when the point total was 48?",
    "question_th": "ก่อนปี 2550 มีชัยชนะกี่ครั้งเมื่อคะแนนรวมเป็น 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_en": "In 2011, how many wins did Michael Meadows have?",
    "question_th": "ในปี 2011 Michael Meadows คว้าชัยชนะได้กี่ครั้ง",
    "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_en": "What is the service of the network Set Max from India?",
    "question_th": "เครือข่าย Set Max จากอินเดียมีบริการอะไรบ้าง?",
    "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_en": "Which network's genre is music?",
    "question_th": "แนวเพลงของเครือข่ายใดคือ?",
    "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_en": "What genre is Star Plus from India?",
    "question_th": "Star Plus จากอินเดียเป็นประเภทใด",
    "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_en": "Where does the network Star Cricket originate?",
    "question_th": "เครือข่าย Star Cricket มีต้นกำเนิดมาจากที่ใด",
    "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_en": "What genre is Set Max's Hindi programming?",
    "question_th": "การเขียนโปรแกรมภาษาฮินดีของ Set Max เป็นประเภทใด",
    "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_en": "What is fitzroy's score as the home team?",
    "question_th": "ฟิตซ์รอยสกอร์เจ้าบ้านเท่าไหร่?",
    "context": "CREATE TABLE table_name_49 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team AS score FROM table_name_93 WHERE home_team = \"richmond\"",
    "question_en": "What is richmond's score as the home team?",
    "question_th": "ริชมอนด์สกอร์เจ้าบ้านเท่าไหร่?",
    "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_en": "Who was the color commentator for Eric Dickerson and Melissa Stark in 2001?",
    "question_th": "ใครคือผู้วิจารณ์สีของ Eric Dickerson และ Melissa Stark ในปี 2544",
    "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_en": "What network hosted Al Michaels, Dan Fouts and Dennis Miller in 2002?",
    "question_th": "เครือข่ายใดเป็นเจ้าภาพ Al Michaels, Dan Fouts และ Dennis Miller ในปี 2545",
    "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_en": "Who was the 2004 color commentator?",
    "question_th": "ใครคือผู้วิจารณ์สีปี 2004?",
    "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_en": "Who was the color commentator for Andrea Kremer and Tiki Barber?",
    "question_th": "ใครคือผู้วิจารณ์สีของ Andrea Kremer และ 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_en": "Who was Al Michaels' color commentator in 2003?",
    "question_th": "ใครคือผู้วิจารณ์สีของ Al Michaels ในปี 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_en": "Who was the home team when Geelong was the away team?",
    "question_th": "เจ้าบ้านคือใคร เมื่อกีลองเป็นทีมเยือน?",
    "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_en": "What is the highest overall pick from the College of Southern Mississippi that was selected before round 6?",
    "question_th": "ตัวเลือกโดยรวมสูงสุดจาก College of Southern Mississippi ที่ถูกเลือกก่อนรอบ 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–19\"",
    "question_en": "Who, was the coach with an actual adjusted record of 0–19?",
    "question_th": "ใครคือโค้ชที่มีสถิติที่ปรับจริงเป็น 0–19?",
    "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–11\"",
    "question_en": "What is the average Season for coach Fisher, and an actual adjusted record of 0–11?",
    "question_th": "ฤดูกาลเฉลี่ยของโค้ชฟิชเชอร์คือเท่าใด และบันทึกที่ปรับตามจริงอยู่ที่ 0–11",
    "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–19\"",
    "question_en": "What is the regular season vacated for the Record as played of 12–19?",
    "question_th": "ฤดูกาลปกติที่ว่างสำหรับสถิติเมื่อเล่น 12–19 คืออะไร?",
    "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_en": "How many seasons did coach steve fisher have?",
    "question_th": "โค้ชสตีฟ ฟิชเชอร์มีกี่ฤดูกาล?",
    "context": "CREATE TABLE table_name_5 (season VARCHAR, coach VARCHAR)"
  },
  {
    "answer": "SELECT record_as_played FROM table_name_19 WHERE regular_season_vacated = \"24–0\" AND season > 1997",
    "question_en": "What is shown for Record as played with a Regular season Vacated of 24–0 later than 1997?",
    "question_th": "สิ่งที่แสดงสำหรับบันทึกเมื่อเล่นในฤดูกาลปกติ ว่างจาก 24–0 หลังปี 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–19\"",
    "question_en": "How many seasons have an Actual adjusted record of 0–19?",
    "question_th": "มีกี่ฤดูกาลที่มีบันทึกที่ปรับปรุงจริงเป็น 0–19",
    "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_en": "How many gold(s) for teams with a total of 14, and over 6 bronze medals?",
    "question_th": "จำนวนเหรียญทองสำหรับทีมที่มีทั้งหมด 14 เหรียญ และมากกว่า 6 เหรียญทองแดง",
    "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_en": "What is the highest number of gold medals for the team ranked 7 with less than 3 bronze?",
    "question_th": "จำนวนเหรียญทองสูงสุดของทีมอันดับที่ 7 และน้อยกว่า 3 เหรียญทองแดงคือเท่าใด",
    "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_en": "What is the average number of golds for nations with less than 2 silver, named uzbekistan, and less than 4 bronze?",
    "question_th": "จำนวนทองคำโดยเฉลี่ยสำหรับประเทศที่มีน้อยกว่า 2 เหรียญเงิน ชื่ออุซเบกิสถาน และน้อยกว่า 4 เหรียญทองแดง คือเท่าใด",
    "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_en": "What was the away team for the match at Punt Road Oval?",
    "question_th": "ทีมเยือนนัดที่พันท์ โร้ด โอวัลเป็นทีมไหน?",
    "context": "CREATE TABLE table_name_39 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT MIN(crowd) FROM table_name_84 WHERE venue = \"junction oval\"",
    "question_en": "What was the smallest crowd size for the match played at Junction Oval?",
    "question_th": "จำนวนผู้ชมที่เล็กที่สุดสำหรับแมตช์ที่เล่นที่ 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_en": "What was the home team that played Collingwood?",
    "question_th": "ทีมเหย้าที่เล่นคอลลิงวูดคืออะไร?",
    "context": "CREATE TABLE table_name_73 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT province FROM table_name_39 WHERE name = \"michael kirby\"",
    "question_en": "Which province has Michael Kirby?",
    "question_th": "จังหวัดไหนมี Michael Kirby?",
    "context": "CREATE TABLE table_name_39 (province VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_name_94 WHERE name = \"madeleine plamondon\"",
    "question_en": "Which party is Madeleine Plamondon a member of?",
    "question_th": "Madeleine Plamondon เป็นสมาชิกพรรคใด?",
    "context": "CREATE TABLE table_name_94 (party VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT details FROM table_name_55 WHERE name = \"marisa ferretti barth\"",
    "question_en": "What are the details for Marisa Ferretti Barth?",
    "question_th": "รายละเอียดของ 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_en": "Which party had a member on August 26, 2008?",
    "question_th": "พรรคใดมีสมาชิกเมื่อวันที่ 26 สิงหาคม พ.ศ. 2551",
    "context": "CREATE TABLE table_name_95 (party VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT details FROM table_name_71 WHERE name = \"john buchanan\"",
    "question_en": "What are the details for John Buchanan?",
    "question_th": "รายละเอียดของ 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_en": "Which province had a liberal party member on December 31, 2006?",
    "question_th": "จังหวัดใดมีสมาชิกพรรคเสรีนิยมเมื่อวันที่ 31 ธันวาคม 2549",
    "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_en": "Which dance style had a draw smaller than 15 and 18 points?",
    "question_th": "ท่าเต้นใดมีแต้มน้อยกว่า 15 และ 18 คะแนน?",
    "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_en": "What was the away team's score for the match played at Victoria Park?",
    "question_th": "เกมนี้ทีมเยือนได้สกอร์ที่ วิคตอเรีย พาร์ค เท่าไหร่?",
    "context": "CREATE TABLE table_name_89 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_45 WHERE home_team = \"collingwood\"",
    "question_en": "What is Collingwood's home venue?",
    "question_th": "สนามเหย้าของ Collingwood คืออะไร?",
    "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_en": "What was the away teams score when they played Carlton?",
    "question_th": "ทีมเยือนได้คะแนนเท่าไหร่เมื่อเล่นกับคาร์ลตัน?",
    "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_en": "What is the latest year featuring candace parker?",
    "question_th": "ปีล่าสุดที่มีแคนเดซ ปาร์คเกอร์คือปีอะไร?",
    "context": "CREATE TABLE table_name_47 (year INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(crowd) FROM table_name_94 WHERE home_team = \"north melbourne\"",
    "question_en": "What is the largest crowd when north melbourne is the home side?",
    "question_th": "แฟนบอลเยอะที่สุดเมื่อเมลเบิร์นเหนือเป็นเจ้าบ้าน?",
    "context": "CREATE TABLE table_name_94 (crowd INTEGER, home_team VARCHAR)"
  },
  {
    "answer": "SELECT MIN(crowd) FROM table_name_22 WHERE venue = \"victoria park\"",
    "question_en": "What is the smallest crowd at victoria park?",
    "question_th": "victoria park คนไหนเล็กที่สุด?",
    "context": "CREATE TABLE table_name_22 (crowd INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_96 WHERE away_team = \"geelong\"",
    "question_en": "What day was geelong the away side?",
    "question_th": "จีลองเป็นทีมเยือนวันไหน?",
    "context": "CREATE TABLE table_name_96 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT stadium FROM table_name_17 WHERE city = \"brisbane\"",
    "question_en": "What is the name of the stadium in Brisbane?",
    "question_th": "สนามกีฬาในบริสเบนชื่ออะไร",
    "context": "CREATE TABLE table_name_17 (stadium VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_92 WHERE score = \"58-6\"",
    "question_en": "What was the result of the match that had a score of 58-6?",
    "question_th": "ผลการแข่งขันที่ได้สกอร์ 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_en": "What was the score for the match that had the result of Hunter Mariners def. Castleford Tigers?",
    "question_th": "แมตช์ที่ผลการแข่งขัน ฮันเตอร์ มาริเนอร์ส def. เป็นอย่างไร คาสเซิลฟอร์ด ไทเกอร์ส?",
    "context": "CREATE TABLE table_name_12 (score VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT stadium FROM table_name_92 WHERE score = \"66-20\"",
    "question_en": "For the match ending in a score of 66-20, what was the stadium?",
    "question_th": "จบเกมด้วยสกอร์ 66-20 สนามไหน?",
    "context": "CREATE TABLE table_name_92 (stadium VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_61 WHERE stadium = \"don valley stadium\"",
    "question_en": "In what city is the Don Valley Stadium located?",
    "question_th": "สนามกีฬา Don Valley ตั้งอยู่ในเมืองใด?",
    "context": "CREATE TABLE table_name_61 (city VARCHAR, stadium VARCHAR)"
  },
  {
    "answer": "SELECT meet FROM table_name_22 WHERE event = \"100m backstroke\"",
    "question_en": "Which championship was the 100m backstroke performed?",
    "question_th": "กรรเชียง 100 ม. ชิงแชมป์รายการใด?",
    "context": "CREATE TABLE table_name_22 (meet VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_62 WHERE time = \"7:45.67\"",
    "question_en": "What event has a time of 7:45.67?",
    "question_th": "เหตุการณ์ใดมีเวลา 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_en": "What nationality has a year larger than 2009 with a position of power forward?",
    "question_th": "สัญชาติใดมีปีที่ใหญ่กว่าปี 2552 และมีตำแหน่งผู้นำข้างหน้า?",
    "context": "CREATE TABLE table_name_32 (nationality VARCHAR, year VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_92 WHERE team = \"chicago bulls\"",
    "question_en": "Who plays for the chicago bulls?",
    "question_th": "ใครเล่นให้ชิคาโกบูลส์?",
    "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_en": "What are the main places for the streymoy region with an area of larger than 6.1?",
    "question_th": "สถานที่หลักสำหรับภูมิภาคสเตรย์มอยที่มีพื้นที่มากกว่า 6.1 คือสถานที่ใด",
    "context": "CREATE TABLE table_name_91 (main_places VARCHAR, regions VARCHAR, area VARCHAR)"
  },
  {
    "answer": "SELECT SUM(people_per_km²) FROM table_name_41 WHERE regions = \"sandoy\" AND area = 112.1",
    "question_en": "What is the sum of people per km2 for the sandoy region with an area of 112.1?",
    "question_th": "ผลรวมของผู้คนต่อตารางกิโลเมตรสำหรับพื้นที่ทรายที่มีพื้นที่ 112.1 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_41 (people_per_km² INTEGER, regions VARCHAR, area VARCHAR)"
  },
  {
    "answer": "SELECT AVG(week) FROM table_name_62 WHERE attendance = 41 OFFSET 604",
    "question_en": "what is the week there were 41,604 people in attendance?",
    "question_th": "มีผู้เข้าร่วม 41,604 คนในสัปดาห์ใด?",
    "context": "CREATE TABLE table_name_62 (week INTEGER, attendance VARCHAR)"
  },
  {
    "answer": "SELECT AVG(crowd) FROM table_name_8 WHERE home_team = \"hawthorn\"",
    "question_en": "What is the average crowd size for games with hawthorn as the home side?",
    "question_th": "ขนาดฝูงชนโดยเฉลี่ยสำหรับเกมที่มี Hawthorn เป็นเจ้าบ้านคือเท่าใด?",
    "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_en": "What is the home team's score at glenferrie oval?",
    "question_th": "สกอร์ของเจ้าบ้านที่ 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_en": "Who had the lowest Best time that also had a Qual 2 of 49.887?",
    "question_th": "ใครมีเวลาดีที่สุดน้อยที่สุดและมีรอบคัดเลือก 2 ที่ 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_en": "What was CTE Racing-hvm's Best with a Qual 2 of 50.312?",
    "question_th": "CTE Racing-hvm ดีที่สุดด้วย Qual 2 จาก 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_en": "What was the home team score when essendon was the away team?",
    "question_th": "เมื่อเอสเซนดอนเป็นทีมเยือนสกอร์เท่าไหร่?",
    "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_en": "When richmond was the Away team what was the score of the home team?",
    "question_th": "เมื่อริชมอนด์เป็นทีมเยือนสกอร์ของเจ้าบ้านได้เท่าไหร่?",
    "context": "CREATE TABLE table_name_37 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT service FROM table_name_74 WHERE network = \"atn urdu\"",
    "question_en": "Which service does the network of atn urdu offer?",
    "question_th": "เครือข่ายของ atn ภาษาอูรดูเสนอบริการใดบ้าง",
    "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_en": "Whose origin of Programming offers a general genre, a network of ntv bangla and a service of cogeco cable?",
    "question_th": "ต้นกำเนิดของการเขียนโปรแกรมเสนอประเภททั่วไป เครือข่าย ntv บางลา และบริการเคเบิล cogeco ของใคร",
    "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_en": "Which service has a hindi language, general genre and zee tv network?",
    "question_th": "บริการใดบ้างที่มีภาษาฮินดี ประเภททั่วไป และเครือข่าย zee tv?",
    "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_en": "Which network has an origina of Programming in India, a general genre, a service of bell fibe tv, and tamil as its language?",
    "question_th": "เครือข่ายใดมีต้นกำเนิดของการเขียนโปรแกรมในอินเดีย ประเภททั่วไป บริการของ bell fibe tv และมีภาษาทมิฬเป็นภาษา",
    "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_en": "Which language has Programming from India, general genre, a network of ptc punjabi and bell fibe tv service?",
    "question_th": "ภาษาใดบ้างที่มีการเขียนโปรแกรมจากอินเดีย ประเภททั่วไป เครือข่าย ptc punjabi และบริการ bell fibe tv",
    "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_en": "What is the average number of bronzes when the rank is below 11 for trinidad and tobago with less than 1 total medal?",
    "question_th": "จำนวนเหรียญทองแดงโดยเฉลี่ยเมื่ออันดับต่ำกว่า 11 สำหรับตรินิแดดและโตเบโกที่มีเหรียญรวมน้อยกว่า 1 เหรียญคือเท่าใด",
    "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_en": "What is the sum of gold medal totals for nations with 1 silver, less than 2 bronze, and ranked below 10?",
    "question_th": "ผลรวมเหรียญทองสำหรับประเทศที่ได้ 1 เหรียญเงิน น้อยกว่า 2 เหรียญทองแดง และอันดับที่ต่ำกว่า 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_en": "Who did Winfield Scott have an allegiance with?",
    "question_th": "Winfield Scott มีความจงรักภักดีกับใคร?",
    "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_en": "What was the July 2013 population estimate of the location which had a population density larger than 14.1?",
    "question_th": "การประมาณจำนวนประชากรในเดือนกรกฎาคม 2013 ของสถานที่ซึ่งมีความหนาแน่นของประชากรมากกว่า 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_en": "What was the highest rank of an area with a population density larger than 5.7 and a 2006–2011 percentage growth of 5.7%?",
    "question_th": "อันดับสูงสุดของพื้นที่ที่มีความหนาแน่นของประชากรมากกว่า 5.7 และอัตราการเติบโตร้อยละ 5.7 ในปี 2549-2554 คือข้อใด",
    "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²_ > 908 OFFSET 607.67",
    "question_en": "What was the lowest 2011 Census population of an area with a land area larger than 908,607.67 km²?",
    "question_th": "การสำรวจสำมะโนประชากรปี 2011 ต่ำสุดของพื้นที่ที่มีพื้นที่มากกว่า 908,607.67 ตารางกิโลเมตร คือเท่าใด",
    "context": "CREATE TABLE table_name_38 (population___2011_census__ INTEGER, land_area__km²_ INTEGER)"
  },
  {
    "answer": "SELECT rider FROM table_name_78 WHERE speed = \"86.15mph\"",
    "question_en": "Which rider from the 1971 Isle of Man Junior TT 250cc final standings had a speed equal to 86.15mph?",
    "question_th": "นักบิดคนไหนจากการแข่งขันรอบสุดท้าย Isle of Man Junior TT 250cc ปี 1971 ที่มีความเร็วเท่ากับ 86.15 ไมล์ต่อชั่วโมง?",
    "context": "CREATE TABLE table_name_78 (rider VARCHAR, speed VARCHAR)"
  },
  {
    "answer": "SELECT rider FROM table_name_60 WHERE points = 10",
    "question_en": "Which rider had a points score equal to 10?",
    "question_th": "นักบิดคนไหนมีคะแนนเท่ากับ 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_en": "Which Start has a 0 Conv, 0 Pens and 8 Tries?",
    "question_th": "การเริ่มต้นใดมี 0 Conv, 0 Pens และ 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_en": "Which Player has 0 Pens and 12 Starts?",
    "question_th": "ผู้เล่นคนไหนมี 0 ปากกาและ 12 เริ่ม?",
    "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_en": "Which Start has 8 Tries and 0 Convs?",
    "question_th": "การเริ่มต้นใดมี 8 ครั้งและ 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_en": "Who was the away team for the game at Victoria Park?",
    "question_th": "ใครคือทีมเยือนในเกมที่วิคตอเรีย พาร์ค?",
    "context": "CREATE TABLE table_name_47 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT MIN(overall) FROM table_name_72 WHERE round = 7",
    "question_en": "What was round 7's lowest overall?",
    "question_th": "โดยรวมต่ำสุดของรอบ 7 คืออะไร?",
    "context": "CREATE TABLE table_name_72 (overall INTEGER, round VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_51 WHERE overall < 22",
    "question_en": "Who had the smallest overall under 22?",
    "question_th": "ใครมีคะแนนรวมอายุต่ำกว่า 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_en": "What was Cal State-Los Angeles' position with an Overall above 22?",
    "question_th": "ตำแหน่งระหว่างรัฐแคลิฟอร์เนีย-ลอสแองเจลีสที่มีคะแนนรวมมากกว่า 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_en": "Who played for Memphis State?",
    "question_th": "ใครเล่นให้กับเมมฟิสสเตท?",
    "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_en": "What is the largest crowd for the St Kilda as the away team?",
    "question_th": "ฝูงชนที่ใหญ่ที่สุดสำหรับเซนต์คิลดาในฐานะทีมเยือนคือกลุ่มใด?",
    "context": "CREATE TABLE table_name_26 (crowd INTEGER, away_team VARCHAR)"
  },
  {
    "answer": "SELECT crowd FROM table_name_98 WHERE home_team = \"essendon\"",
    "question_en": "What was the crowd size when Essendon was the home team?",
    "question_th": "ขนาดฝูงชนเมื่อเอสเซนดอนเป็นเจ้าบ้านคือเท่าไร?",
    "context": "CREATE TABLE table_name_98 (crowd VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_68 WHERE crowd > 20 OFFSET 000",
    "question_en": "Which venue had a crowd larger than 20,000?",
    "question_th": "สถานที่ใดมีฝูงชนมากกว่า 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_en": "Which away team played at Lake Oval?",
    "question_th": "ทีมเยือนทีมใดเล่นที่เลคโอวัล?",
    "context": "CREATE TABLE table_name_50 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(crowd) FROM table_name_28 WHERE venue = \"glenferrie oval\"",
    "question_en": "What is the total number of the crowd at Glenferrie Oval?",
    "question_th": "Glenferrie Oval มีผู้เข้าชมทั้งหมดกี่คน?",
    "context": "CREATE TABLE table_name_28 (crowd VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_37 WHERE venue = \"western oval\"",
    "question_en": "The Western Oval venue has what date?",
    "question_th": "สนาม Western Oval มีวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_37 (date VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT kickoff FROM table_name_81 WHERE opponent = \"miami dolphins\"",
    "question_en": "What is the kickoff time for the Miami Dolphins?",
    "question_th": "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_en": "What was the final of the New England Patriots game?",
    "question_th": "เกมรอบชิงชนะเลิศของเกม New England Patriots คืออะไร?",
    "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_en": "What is the largest attendance on august 10, 1963, and a week larger than 1?",
    "question_th": "ผู้เข้าร่วมที่ใหญ่ที่สุดในวันที่ 10 สิงหาคม 2506 และหนึ่งสัปดาห์มากกว่า 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_en": "What was the score of the away team when the home team was south melbourne?",
    "question_th": "ทีมเยือนเมื่อเจ้าบ้านเจอเซาธ์ เมลเบิร์น สกอร์เท่าไหร่?",
    "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_en": "What is the smallest crowd at princes park?",
    "question_th": "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_en": "What is the highest ranked nation with 15 silver medals and no more than 47 total?",
    "question_th": "ประเทศใดมีอันดับสูงสุดที่ได้ 15 เหรียญเงิน และรวมไม่เกิน 47 เหรียญ?",
    "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_en": "What was the highest rank by average of a couple who had an average of 25.3 and had more than 10 dances?",
    "question_th": "อะไรคืออันดับสูงสุดโดยเฉลี่ยของคู่รักที่มีคะแนนเฉลี่ย 25.3 และเต้นมากกว่า 10 ครั้ง?",
    "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_en": "What is the example with the associative type?",
    "question_th": "ตัวอย่างที่มีประเภทการเชื่อมโยงคืออะไร?",
    "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_en": "What is the Suffix of the intensive and valency change of 0?",
    "question_th": "คำต่อท้ายของการเปลี่ยนแปลงแบบเข้มข้นและความจุของ 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_en": "WHat is the Valency change of associative type?",
    "question_th": "การเปลี่ยนแปลง Valency ของประเภทการเชื่อมโยงคืออะไร?",
    "context": "CREATE TABLE table_name_1 (valency_change VARCHAR, type VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_66 WHERE away_team = \"hawthorn\"",
    "question_en": "Who is the home team when hawthorn is the away side?",
    "question_th": "เจ้าบ้านใครอยู่ตอนฮอว์ธอร์นเป็นทีมเยือน?",
    "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_en": "What was the away team that played at Windy Hill?",
    "question_th": "ทีมเยือนที่เล่นที่วินดี้ฮิลล์คือทีมอะไร?",
    "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_en": "What was the away team at the match where the crowd was larger than 30,000?",
    "question_th": "ทีมเยือนในแมตช์ที่มีผู้ชมมากกว่า 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_en": "What is the smallest crowd when richmond is away?",
    "question_th": "ฝูงชนที่เล็กที่สุดเมื่อริชมอนด์ไม่อยู่คือกลุ่มใด?",
    "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_en": "What is melbourne's home team score?",
    "question_th": "คะแนนทีมเหย้าของเมลเบิร์นเท่าไหร่?",
    "context": "CREATE TABLE table_name_48 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT color_commentator_s_ FROM table_name_16 WHERE year = 2008",
    "question_en": "Who is the color commentator in 2008?",
    "question_th": "ใครคือผู้วิจารณ์สีในปี 2551?",
    "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_en": "Which member of the National Party is from the Hinkler electorate?",
    "question_th": "สมาชิกคนใดของพรรค National Party ที่มาจากเขตเลือกตั้ง Hinkler",
    "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_en": "Which member is from the state of SA and the grey electorate?",
    "question_th": "สมาชิกคนไหนที่มาจากรัฐ SA และผู้มีสิทธิเลือกตั้งสีเทา?",
    "context": "CREATE TABLE table_name_74 (member VARCHAR, state VARCHAR, electorate VARCHAR)"
  },
  {
    "answer": "SELECT state FROM table_name_39 WHERE electorate = \"petrie\"",
    "question_en": "In which state is the Petrie electorate?",
    "question_th": "ผู้มีสิทธิเลือกตั้งของ Petrie อยู่ในรัฐใด",
    "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_en": "What round was the draft pick of tight end with an Overall larger than 21?",
    "question_th": "ดราฟต์คัดท้ายแน่นด้วยคะแนนรวมมากกว่า 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_en": "Which player is a wide receiver picked in round 7?",
    "question_th": "ผู้เล่นคนไหนคือตัวรับฝั่งกว้างที่ถูกเลือกในรอบ 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_en": "What is the name of the running back pick?",
    "question_th": "รันนิ่งแบ็คชื่ออะไรครับ?",
    "context": "CREATE TABLE table_name_3 (player VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_17 WHERE venue = \"victoria park\"",
    "question_en": "When did the VFL pay at Victoria Park?",
    "question_th": "VFL จ่ายเงินที่ 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_en": "When did South Melbourne play as the away team?",
    "question_th": "เซาธ์ เมลเบิร์น ลงเล่นเป็นทีมเยือนเมื่อใด?",
    "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_en": "What was home team Essendon's opponents score?",
    "question_th": "คะแนนของฝ่ายตรงข้ามของทีมเหย้าเอสเซนดอนคือเท่าไร?",
    "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_en": "When was The Love Eterne released?",
    "question_th": "The Love Eterne เปิดตัวเมื่อใด",
    "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_en": "How many heats had 5 lanes and a rank less than 110 for the nationality of Honduras?",
    "question_th": "มีกี่ฮีตที่มี 5 เลนและอันดับต่ำกว่า 110 สำหรับสัญชาติฮอนดูรัส",
    "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_en": "How many heats had 2 lanes, a rank above 75, and nationality of Madagascar?",
    "question_th": "มีกี่ฮีตที่มี 2 เลน ซึ่งสูงกว่า 75 และมีสัญชาติมาดากัสการ์",
    "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_en": "What is the sum of every heat for the nationality of Macedonia with a rank less than 114?",
    "question_th": "ผลรวมของทุกๆ ฮีตสำหรับสัญชาติมาซิโดเนียที่มีอันดับต่ำกว่า 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_en": "What was the least number of heats with more than 8 lanes for the Nationality of Germany?",
    "question_th": "จำนวนฮีตน้อยที่สุดที่มีมากกว่า 8 เลนสำหรับสัญชาติเยอรมนีคือเท่าใด",
    "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_en": "When the VFL played Victoria Park what was the home team score?",
    "question_th": "เมื่อ VFL พบกับ Victoria Park คะแนนทีมเหย้าเป็นเท่าใด?",
    "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_en": "What driver has over 19 points and a grid of over 2?",
    "question_th": "นักแข่งคนไหนมีคะแนนมากกว่า 19 คะแนนและมีตารางมากกว่า 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_en": "What was the score for the away team when geelong was the home team?",
    "question_th": "ทีมเยือนเมื่อจีลองเป็นเจ้าบ้านได้สกอร์เท่าไหร่?",
    "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_en": "What was the score of the home team when they played footscray?",
    "question_th": "เจ้าบ้านได้สกอร์เท่าไรเมื่อเล่นฟุตสเครย์?",
    "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_en": "What was the score for the home team of essendon?",
    "question_th": "เจ้าบ้านเอสเซนดอนสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_45 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team AS score FROM table_name_31 WHERE home_team = \"essendon\"",
    "question_en": "What was the score for the Essendon home team?",
    "question_th": "เจ้าบ้านเอสเซนดอนทำสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_31 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT MIN(crowd) FROM table_name_56 WHERE home_team = \"richmond\"",
    "question_en": "What was the smallest crowd for the Richmond home team?",
    "question_th": "ฝูงชนที่เล็กที่สุดสำหรับทีมเหย้าริชมอนด์คือเท่าไร?",
    "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_en": "What was the largest crowd at the Brunswick Street Oval?",
    "question_th": "ฝูงชนที่ใหญ่ที่สุดที่ 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_en": "Who was the home team when VFL played at Windy Hill?",
    "question_th": "ใครคือทีมเหย้าเมื่อ VFL เล่นที่ 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_en": "What was the attendance when the VFL played Glenferrie Oval?",
    "question_th": "การเข้าร่วมงานเมื่อ VFL เล่น 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_en": "What was the attendance when North Melbourne was the away team?",
    "question_th": "นอร์ท เมลเบิร์น เป็นทีมเยือนมีผู้ชมเข้าร่วมเท่าไร?",
    "context": "CREATE TABLE table_name_77 (crowd INTEGER, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_70 WHERE home_team = \"essendon\"",
    "question_en": "When did Essendon play as the home team?",
    "question_th": "เอสเซนดอนลงเล่นเป็นเจ้าบ้านเมื่อไหร่?",
    "context": "CREATE TABLE table_name_70 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT approximate_age FROM table_name_47 WHERE virtues = \"wisdom\"",
    "question_en": "Can you give me the age of the Virtues of Wisdom?",
    "question_th": "คุณช่วยบอกอายุคุณธรรมแห่งปัญญาให้ฉันหน่อยได้ไหม?",
    "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_en": "What Virtue looks at the intimacy vs. isolation crisis?",
    "question_th": "คุณธรรมพิจารณาอะไรเกี่ยวกับความใกล้ชิดกับวิกฤตการแยกตัวออกจากกัน?",
    "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_en": "Can you give me the age of the Significant Relationship of Family?",
    "question_th": "คุณช่วยบอกอายุของความสัมพันธ์ที่สำคัญของครอบครัวให้ฉันหน่อยได้ไหม?",
    "context": "CREATE TABLE table_name_41 (approximate_age VARCHAR, significant_relationship VARCHAR)"
  },
  {
    "answer": "SELECT virtues FROM table_name_84 WHERE significant_relationship = \"parents\"",
    "question_en": "The Significant Relationship of Parents belongs with what Virtue?",
    "question_th": "ความสัมพันธ์อันสำคัญระหว่างบิดามารดานั้นอยู่ในคุณธรรมข้อใด?",
    "context": "CREATE TABLE table_name_84 (virtues VARCHAR, significant_relationship VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_35 WHERE venue = \"windy hill\"",
    "question_en": "Who is the away side at windy hill?",
    "question_th": "ฝั่งเยือนวินดี้ฮิลล์คือใคร?",
    "context": "CREATE TABLE table_name_35 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(overall) FROM table_name_42 WHERE player = \"fred hoaglin\"",
    "question_en": "How many drafts featured fred hoaglin?",
    "question_th": "มีเฟรด โฮกลินนำเสนอร่างกี่ฉบับ?",
    "context": "CREATE TABLE table_name_42 (overall VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_84 WHERE school_club_team = \"delta st.\"",
    "question_en": "What round did the player from delta st. get picked?",
    "question_th": "ผู้เล่นจากเดลต้าเซนต์ ได้รับเลือก?",
    "context": "CREATE TABLE table_name_84 (round VARCHAR, school_club_team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(overall) FROM table_name_51 WHERE round = 16",
    "question_en": "What is the highest overall number for someone from round 16?",
    "question_th": "ตัวเลขรวมสูงสุดของคนจากรอบ 16 คือเท่าไร?",
    "context": "CREATE TABLE table_name_51 (overall INTEGER, round VARCHAR)"
  },
  {
    "answer": "SELECT AVG(crowd) FROM table_name_9 WHERE home_team = \"melbourne\"",
    "question_en": "What was the average crowd size when Melbourne was the home team?",
    "question_th": "ขนาดฝูงชนโดยเฉลี่ยเมื่อเมลเบิร์นเป็นเจ้าบ้านคือเท่าใด?",
    "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_en": "What was North Melbourne's score when they were the home team?",
    "question_th": "นอร์ท เมลเบิร์น สกอร์เมื่อก่อนเป็นเจ้าบ้านเท่าไหร่?",
    "context": "CREATE TABLE table_name_52 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team AS score FROM table_name_96 WHERE away_team = \"hawthorn\"",
    "question_en": "What was Hawthorn's score as the away team?",
    "question_th": "ฮอว์ธอร์นทีมเยือนได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_96 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team AS score FROM table_name_57 WHERE venue = \"lake oval\"",
    "question_en": "Who was the away team at the game at Lake Oval?",
    "question_th": "ทีมเยือนในเกมที่เลคโอวัลคือใคร?",
    "context": "CREATE TABLE table_name_57 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT stadium FROM table_name_21 WHERE attendance = \"65,677\"",
    "question_en": "Which stadium held the game that 65,677 people attended?",
    "question_th": "สนามกีฬาใดจัดการแข่งขันที่มีผู้เข้าร่วม 65,677 คน?",
    "context": "CREATE TABLE table_name_21 (stadium VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_41 WHERE date = \"october 17, 2004\"",
    "question_en": "What was the attendance of the game on October 17, 2004?",
    "question_th": "ผู้เข้าร่วมการแข่งขันในวันที่ 17 ตุลาคม พ.ศ. 2547 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_41 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_76 WHERE date = \"october 17, 2004\"",
    "question_en": "Which week was the October 17, 2004 game played?",
    "question_th": "เกมวันที่ 17 ตุลาคม พ.ศ. 2547 เล่นในสัปดาห์ใด",
    "context": "CREATE TABLE table_name_76 (week VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_41 WHERE stadium = \"paul brown stadium\"",
    "question_en": "What was the Browns record after they played the game at the Paul Brown stadium?",
    "question_th": "สถิติของ Browns คืออะไรหลังจากที่พวกเขาเล่นเกมที่สนามกีฬา Paul Brown?",
    "context": "CREATE TABLE table_name_41 (record VARCHAR, stadium VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_80 WHERE school_country = \"gonzaga\"",
    "question_en": "Which player went to Gonzaga?",
    "question_th": "นักเตะคนไหนไปกอนซาก้า?",
    "context": "CREATE TABLE table_name_80 (player VARCHAR, school_country VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_87 WHERE record = \"2-3\"",
    "question_en": "Which Rams opponent had a record of 2-3?",
    "question_th": "คู่ต่อสู้แรมส์คนไหนมีสถิติ 2-3?",
    "context": "CREATE TABLE table_name_87 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT podiums FROM table_name_97 WHERE races_† = \"13/15\"",
    "question_en": "What is the number of podiums for the races of 13/15?",
    "question_th": "จำนวนโพเดียมสำหรับการแข่งขันวันที่ 13/15 คือเท่าไร?",
    "context": "CREATE TABLE table_name_97 (podiums VARCHAR, races_† VARCHAR)"
  },
  {
    "answer": "SELECT wins FROM table_name_36 WHERE races_† = \"12/12\"",
    "question_en": "How many wins are there for the Races of 12/12?",
    "question_th": "มีชัยชนะกี่ครั้งในการแข่งขัน 12/12?",
    "context": "CREATE TABLE table_name_36 (wins VARCHAR, races_† VARCHAR)"
  },
  {
    "answer": "SELECT fastest_laps FROM table_name_99 WHERE season < 1979",
    "question_en": "What is the fastest lap for a season smaller than 1979?",
    "question_th": "รอบที่เร็วที่สุดสำหรับฤดูกาลที่เล็กกว่าปี 1979 คืออะไร?",
    "context": "CREATE TABLE table_name_99 (fastest_laps VARCHAR, season INTEGER)"
  },
  {
    "answer": "SELECT fastest_laps FROM table_name_95 WHERE races_† = \"12/12\"",
    "question_en": "For the 12/12 races, what is the fastest lap?",
    "question_th": "สำหรับการแข่ง 12/12 รอบที่เร็วที่สุดคือเท่าไร?",
    "context": "CREATE TABLE table_name_95 (fastest_laps VARCHAR, races_† VARCHAR)"
  },
  {
    "answer": "SELECT MAX(crowd) FROM table_name_64 WHERE away_team = \"carlton\"",
    "question_en": "What was the largest crowd where Carlton was the away team?",
    "question_th": "คนกลุ่มไหนมากที่สุดที่คาร์ลตันเป็นทีมเยือน?",
    "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_en": "Which team's home is the Arden Street Oval?",
    "question_th": "อาร์เดน สตรีท โอวัล เจ้าบ้านของทีมไหน?",
    "context": "CREATE TABLE table_name_56 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT MIN(crowd) FROM table_name_68 WHERE home_team = \"fitzroy\"",
    "question_en": "What was the lowest attendance at a Fitzroy match?",
    "question_th": "ผู้เข้าร่วมการแข่งขัน Fitzroy น้อยที่สุดคือเท่าใด",
    "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_en": "What is the current club with more than 368 apps and a debut year earlier than 1994?",
    "question_th": "สโมสรปัจจุบันที่มีแอปมากกว่า 368 แอปและปีเปิดตัวก่อนปี 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_en": "What is the all-time rank associated with a rank less than 9 and a debut in 1994?",
    "question_th": "อันดับตลอดกาลที่เกี่ยวข้องกับอันดับต่ำกว่า 9 และการเปิดตัวครั้งแรกในปี 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–6, 6–1, 6–4\"",
    "question_en": "Which tournament was played on clay and there was a score of 4–6, 6–1, 6–4?",
    "question_th": "ทัวร์นาเมนต์ใดที่เล่นบนดินและมีคะแนน 4–6, 6–1, 6–4?",
    "context": "CREATE TABLE table_name_52 (tournament VARCHAR, surface VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_60 WHERE partner = \"albert montañés\"",
    "question_en": "What is the score for the match where albert montañés was the partner?",
    "question_th": "แมตช์ที่อัลเบิร์ต มอนตาเญสเป็นคู่หูได้คะแนนเท่าไหร่?",
    "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_en": "What is the score for the match where the opponent in the final was james cerretani todd perry?",
    "question_th": "แมตช์นี้คู่ต่อสู้ในรอบชิงชนะเลิศคือ เจมส์ เซอร์เรตานี่ ท็อดด์ เพอร์รี่ ที่ได้คะแนนเท่าไหร่?",
    "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ón etlis martín rodríguez\"",
    "question_en": "What is the date when the opponent in the final is gastón etlis martín rodríguez?",
    "question_th": "วันที่คู่ต่อสู้ในรอบชิงชนะเลิศคือกัสตอน เอตลิส มาร์ติน โรดริเกซคือวันที่เท่าไหร่?",
    "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_en": "What was the score for the match were the opponent in the final was james cerretani todd perry?",
    "question_th": "เกมนี้คู่ต่อสู้ในรอบชิงชนะเลิศคือ เจมส์ เซอร์เรตานี่ ท็อดด์ เพอร์รี่ ที่ได้คะแนนเท่าไหร่?",
    "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_en": "Who is Birmingham City's outgoing manager?",
    "question_th": "ผู้จัดการทีมเบอร์มิงแฮม ซิตี้ที่จะลาออกคือใคร?",
    "context": "CREATE TABLE table_name_12 (outgoing_manager VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT replaced_by FROM table_name_2 WHERE team = \"bolton wanderers\"",
    "question_en": "What is the name of the replacement manager for the Bolton Wanderers?",
    "question_th": "ผู้จัดการทีมแทนโบลตัน วันเดอร์เรอร์สชื่ออะไร?",
    "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_en": "How was Sammy Lee's team doing on the table before being replaced?",
    "question_th": "ทีมของแซมมี่ ลี เป็นยังไงบ้างบนโต๊ะก่อนถูกเปลี่ยนตัว?",
    "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_en": "Which team hired Gary Megson as the replacement manager?",
    "question_th": "ทีมไหนจ้างแกรี่ เม็กสันเป็นผู้จัดการทีมแทน?",
    "context": "CREATE TABLE table_name_63 (team VARCHAR, replaced_by VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_86 WHERE venue = \"mcg\"",
    "question_en": "What was the date of the match played at MCG?",
    "question_th": "แมตช์ที่ 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_en": "What was Carlton's score as the home team?",
    "question_th": "คาร์ลตันทำสกอร์ของเจ้าบ้านได้เท่าไหร่?",
    "context": "CREATE TABLE table_name_65 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_62 WHERE venue = \"princes park\"",
    "question_en": "What home team plays at Princes Park?",
    "question_th": "ทีมเหย้าทีมใดเล่นที่ 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_en": "WHAT WAS COLLINGWOOD'S LOWEST CROWD NUMBER WHEN PLAYING AS THE AWAY TEAM?",
    "question_th": "จำนวนฝูงชนที่ต่ำที่สุดของ Collingwood คืออะไรเมื่อเล่นเป็นทีมเยือน?",
    "context": "CREATE TABLE table_name_21 (crowd INTEGER, away_team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(crowd) FROM table_name_85 WHERE away_team = \"essendon\"",
    "question_en": "WHAT WAS ESSENDON'S HIGHEST CROWD NUMBER WHEN PLAYING AS THE AWAY TEAM?",
    "question_th": "จำนวนฝูงชนสูงสุดของเอสเซนดอนคืออะไรเมื่อเล่นเป็นทีมเยือน?",
    "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_en": "WHAT DID HAWTHORN SCORE AT ITS AWAY GAME?",
    "question_th": "ฮอว์ธอร์นทำคะแนนอะไรในเกมเยือน?",
    "context": "CREATE TABLE table_name_50 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_86 WHERE date = \"november 26, 1989\"",
    "question_en": "Who was the opponent on November 26, 1989?",
    "question_th": "คู่ต่อสู้เมื่อวันที่ 26 พฤศจิกายน 2532 คือใคร?",
    "context": "CREATE TABLE table_name_86 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_41 WHERE date = \"october 29, 1989\"",
    "question_en": "What was the result on October 29, 1989?",
    "question_th": "ผลลัพธ์เมื่อวันที่ 29 ตุลาคม 2532 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_41 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_15 WHERE date = \"october 1, 1989\"",
    "question_en": "What was the result on October 1, 1989?",
    "question_th": "วันที่ 1 ตุลาคม 2532 มีผลเป็นอย่างไร?",
    "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_en": "What is the highest number of losses that a team who had an away record of 1-6 and more than 4 wins had?",
    "question_th": "จำนวนการแพ้สูงสุดที่ทีมที่มีสถิติทีมเยือน 1-6 และชนะมากกว่า 4 ครั้งคือเท่าไร?",
    "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_en": "What is the home team's score at corio oval?",
    "question_th": "สกอร์เจ้าบ้านที่โคริโอ โอวัล เท่าไหร่?",
    "context": "CREATE TABLE table_name_66 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT service FROM table_name_88 WHERE language = \"bengali\"",
    "question_en": "What network is in the language of Bengali?",
    "question_th": "เครือข่ายใดเป็นภาษาเบงกาลี?",
    "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_en": "What network has an origin in India, a genre of general, and broadcasts in Bengali?",
    "question_th": "เครือข่ายใดมีต้นกำเนิดในอินเดีย ประเภททั่วไป และออกอากาศเป็นภาษาเบงกาลี",
    "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_en": "What language does the Ary Digital network broadcast in?",
    "question_th": "เครือข่าย Ary Digital ออกอากาศในภาษาใด?",
    "context": "CREATE TABLE table_name_98 (language VARCHAR, network VARCHAR)"
  },
  {
    "answer": "SELECT AVG(crowd) FROM table_name_59 WHERE away_team = \"carlton\"",
    "question_en": "What is the average crowd for Carlton?",
    "question_th": "ฝูงชนโดยเฉลี่ยของ 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_en": "How many points did Carlton score?",
    "question_th": "คาร์ลตันทำคะแนนได้กี่คะแนน?",
    "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_en": "What was the largest crowd for North Melbourne",
    "question_th": "ฝูงชนที่ใหญ่ที่สุดสำหรับเมลเบิร์นตอนเหนือคือกลุ่มใด",
    "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_en": "What is the score for Footscray?",
    "question_th": "ฟุตสเครย์ ให้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_6 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_33 WHERE week = 5",
    "question_en": "What is the result of week 5?",
    "question_th": "ผลลัพธ์ของสัปดาห์ที่ 5 คืออะไร?",
    "context": "CREATE TABLE table_name_33 (result VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_45 WHERE shoulder = \"10.688 (.420)\"",
    "question_en": "What is the name of the gun with a shoulder that measures 10.688 (.420)?",
    "question_th": "ปืนที่มีไหล่ขนาด 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_en": "What is the shoulder measurement of the gun with a length of 57.85 (2.278)?",
    "question_th": "ความยาวปืน 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_en": "What is the neck measurement of the gun with a shoulder measurement of 10.688 (.420)?",
    "question_th": "วัดคอปืนกับวัดไหล่ 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_en": "What is the length of the gun that has a shoulder measurement of 12.18 (.480)?",
    "question_th": "ปืนยาววัดไหล่ได้ 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_en": "What bullet does the gun with a shoulder measurement of 12.5 (.491)?",
    "question_th": "ปืนที่มีขนาดไหล่ 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_en": "What was the attendance for the game held on September 18, 1994, with a week less than 5?",
    "question_th": "ผู้เข้าชมเกมที่จัดขึ้นเมื่อวันที่ 18 กันยายน พ.ศ. 2537 โดยมีเวลาน้อยกว่า 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_en": "What was the average attendance when the opponent was at Philadelphia Eagles and the week was later than week 6?",
    "question_th": "ผู้เข้าร่วมโดยเฉลี่ยเมื่อคู่ต่อสู้อยู่ที่ Philadelphia Eagles และสัปดาห์นั้นช้ากว่าสัปดาห์ที่ 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_en": "What was the attendance for the game on October 30, 1994 for a week after week 2?",
    "question_th": "ผู้เข้าชมเกมในวันที่ 30 ตุลาคม พ.ศ. 2537 เป็นเวลาหนึ่งสัปดาห์หลังจากสัปดาห์ที่ 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_en": "What is the title of the episode that aired on September 25, 2005?",
    "question_th": "ตอนที่ออกอากาศวันที่ 25 กันยายน 2548 ชื่ออะไร",
    "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_en": "What is the run time of the episode that aired on September 4, 2005?",
    "question_th": "ตอนที่ออกอากาศวันที่ 4 กันยายน พ.ศ. 2548 ออกอากาศเมื่อใด?",
    "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_en": "What is the historical reference of the episode that aired on October 23, 2005?",
    "question_th": "การอ้างอิงทางประวัติศาสตร์ของตอนที่ออกอากาศเมื่อวันที่ 23 ตุลาคม พ.ศ. 2548 คืออะไร?",
    "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_en": "What is the date of the episode that is before 307, run time equals 5:48 and has P.T. Barnum as the topic?",
    "question_th": "วันที่ของตอนคือก่อน 307 รันไทม์เท่ากับ 5:48 และมี PT Barnum เป็นหัวข้อ?",
    "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_en": "What is the topic of the episode that runs 6:07?",
    "question_th": "หัวข้อตอนนาทีที่ 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_en": "What is the episode number of the episode that aired on August 8, 2005?",
    "question_th": "ตอนที่ออกอากาศวันที่ 8 สิงหาคม 2548 มีจำนวนตอนเท่าใด",
    "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_en": "What day is south melbourne the away side?",
    "question_th": "เซาธ์ เมลเบิร์น ฝั่งทีมเยือนเป็นวันไหน?",
    "context": "CREATE TABLE table_name_21 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT res FROM table_name_62 WHERE opponent = \"ryo takigawa\"",
    "question_en": "Did the fighter beat Ryo Takigawa?",
    "question_th": "นักสู้เอาชนะ 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_en": "What is the incident number of the incident that occurred in Dantewada, Chattisgarh?",
    "question_th": "เหตุที่เกิดขึ้นที่เมืองดันเทวาดา จังหวัดฉัตติสครห์ มีจำนวนเหตุการณ์เท่าใด",
    "context": "CREATE TABLE table_name_8 (incident_no VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT province FROM table_name_12 WHERE iata = \"uyn\"",
    "question_en": "WHich province has an IATA of UYN?",
    "question_th": "จังหวัดใดมี IATA ของ UYN",
    "context": "CREATE TABLE table_name_12 (province VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_61 WHERE icao = \"zsxz\"",
    "question_en": "Which city has an ICAO of ZSXZ?",
    "question_th": "เมืองใดมี ICAO ของ ZSXZ",
    "context": "CREATE TABLE table_name_61 (city VARCHAR, icao VARCHAR)"
  },
  {
    "answer": "SELECT province FROM table_name_63 WHERE airport = \"luogang international airport\"",
    "question_en": "Which province is Luogang International Airport located in?",
    "question_th": "ท่าอากาศยานนานาชาติหลัวกังตั้งอยู่ในจังหวัดใด",
    "context": "CREATE TABLE table_name_63 (province VARCHAR, airport VARCHAR)"
  },
  {
    "answer": "SELECT province FROM table_name_7 WHERE iata = \"wnz\"",
    "question_en": "WHich province has an IATA of WNZ?",
    "question_th": "จังหวัดใดมี IATA ของ WNZ",
    "context": "CREATE TABLE table_name_7 (province VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT iata FROM table_name_33 WHERE airport = \"korla airport\"",
    "question_en": "What is the IATA for Korla Airport.",
    "question_th": "IATA สำหรับสนามบินคอร์ลาคืออะไร",
    "context": "CREATE TABLE table_name_33 (iata VARCHAR, airport VARCHAR)"
  },
  {
    "answer": "SELECT division FROM table_name_27 WHERE position = \"4th\"",
    "question_en": "In what division did they place 4th?",
    "question_th": "พวกเขาอยู่อันดับที่ 4 ในดิวิชั่นใด?",
    "context": "CREATE TABLE table_name_27 (division VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT top_scorer FROM table_name_31 WHERE season = \"1890-91\"",
    "question_en": "What was the top scorer in the 1890-91 season?",
    "question_th": "ผู้ทำประตูสูงสุดในฤดูกาล 1890-91 คืออะไร?",
    "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_en": "Which position has a player at Arizona state?",
    "question_th": "ตำแหน่งใดที่มีผู้เล่นในรัฐแอริโซนา?",
    "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_en": "Which school/club has a pick smaller than 196, a round higher than 5 and has Blake Miller?",
    "question_th": "โรงเรียน/สโมสรใดที่มีตัวเลือกน้อยกว่า 196 รอบที่สูงกว่า 5 และมีเบลค มิลเลอร์?",
    "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_en": "What is the average round at which is the position of Tight End and Randy Bethel?",
    "question_th": "รอบเฉลี่ยที่ตำแหน่ง Tight End และ 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_en": "What day did they play the New Orleans Saints?",
    "question_th": "พวกเขาเล่น 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_en": "What was coach Dick Bennett's overall win percentage?",
    "question_th": "เปอร์เซ็นต์ชัยชนะโดยรวมของโค้ช Dick Bennett คือเท่าใด",
    "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_en": "What are the notes for the shirt that said Pavv before 2005?",
    "question_th": "อะไรคือหมายเหตุของเสื้อที่เขียนว่า Pavv ก่อนปี 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_en": "What are the notes for the shirt that said Pavv after 2007?",
    "question_th": "อะไรคือหมายเหตุของเสื้อที่พูดว่า Pavv หลังปี 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_en": "What is the average of all the years when the notes are “electronics brand?”",
    "question_th": "ค่าเฉลี่ยของปีที่ธนบัตรเป็น “แบรนด์อิเล็กทรอนิกส์” คือเท่าใด",
    "context": "CREATE TABLE table_name_36 (year INTEGER, notes VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_name_85 WHERE kit_supplier = \"rapido\" AND shirt_printing = \"名品+1\"",
    "question_en": "What are the notes for the shirt that says 名品+1 in the kit supplied by Rapido?",
    "question_th": "หมายเหตุสำหรับเสื้อที่เขียนว่า 名品+1 ในชุดอุปกรณ์ที่ 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_en": "What is the largest crowd at Lake Oval?",
    "question_th": "ฝูงชนที่ใหญ่ที่สุดใน 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_en": "What was the home team for the game with more than 25,000 crowd?",
    "question_th": "เจ้าบ้านสำหรับเกมที่มีผู้ชมมากกว่า 25,000 คนเป็นทีมอะไร?",
    "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_en": "What was the score for Footscray when they were the away team?",
    "question_th": "ฟุตสเครย์เป็นทีมเยือนได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_66 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_26 WHERE date = \"march 14, 2007\"",
    "question_en": "What is the result from March 14, 2007?",
    "question_th": "ผลลัพธ์ตั้งแต่วันที่ 14 มีนาคม 2550 เป็นอย่างไร",
    "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_en": "How many goals have a result of 0-1 on march 28, 2007?",
    "question_th": "มีผลสกอร์ 0-1 กี่ประตู เมื่อวันที่ 28 มีนาคม 2550?",
    "context": "CREATE TABLE table_name_48 (goals VARCHAR, result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_73 WHERE result = \"3-0\"",
    "question_en": "What venue has a Result of 3-0?",
    "question_th": "สนามไหนมีผลสกอร์ 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_en": "What was Collingwood's score as the home team?",
    "question_th": "สกอร์ของคอลลิงวูดในฐานะเจ้าบ้านเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_54 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_40 WHERE home_team = \"carlton\"",
    "question_en": "What venue features carlton as the home side?",
    "question_th": "สนามใดที่มีคาร์ลตันเป็นเจ้าบ้าน?",
    "context": "CREATE TABLE table_name_40 (venue VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_79 WHERE home_team = \"collingwood\"",
    "question_en": "What day is collingwood the home side?",
    "question_th": "คอลลิงวูดเป็นเจ้าบ้านวันไหน?",
    "context": "CREATE TABLE table_name_79 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_71 WHERE record = \"1-0\"",
    "question_en": "The event that has a record of 1-0 is none of the above.",
    "question_th": "เหตุการณ์ที่มีสถิติ 1-0 ไม่ใช่สิ่งที่กล่าวมาข้างต้น",
    "context": "CREATE TABLE table_name_71 (event VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT SUM(year) FROM table_name_81 WHERE name = \"leon blevins\"",
    "question_en": "What year was Leon Blevins picked?",
    "question_th": "Leon Blevins ถูกเลือกในปีใด",
    "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_en": "What year was Jordan Hill picked overall number 8?",
    "question_th": "Jordan Hill เลือกหมายเลข 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_en": "In 1981 which team picked overall 148?",
    "question_th": "ในปี 1981 ทีมใดเลือกคะแนนรวม 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_en": "How many people attended the game on December 2, 1951?",
    "question_th": "มีกี่คนที่เข้าร่วมการแข่งขันในวันที่ 2 ธันวาคม พ.ศ. 2494",
    "context": "CREATE TABLE table_name_69 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_30 WHERE away_team = \"st kilda\"",
    "question_en": "What venue does st kilda play at as the away team?",
    "question_th": "เซนต์คิลดาเล่นที่สนามใดในฐานะทีมเยือน?",
    "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_en": "What is melbourne's home team score?",
    "question_th": "คะแนนทีมเหย้าของเมลเบิร์นเท่าไหร่?",
    "context": "CREATE TABLE table_name_97 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(crowd) FROM table_name_4 WHERE home_team = \"collingwood\"",
    "question_en": "How many games is collingwood the home side?",
    "question_th": "คอลลิงวูดเป็นเจ้าบ้านกี่เกม?",
    "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_en": "Who was the opponent on the date of November 29, 1970 and the attendance was less than 31,427?",
    "question_th": "คู่ต่อสู้คือใคร เมื่อวันที่ 29 พฤศจิกายน 2513 มีผู้ชมไม่ถึง 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_en": "On what date was the game where is was later than Week 4 of the season and the opponent was the New York Giants?",
    "question_th": "เกมคือวันที่ใดซึ่งช้ากว่าสัปดาห์ที่ 4 ของฤดูกาลและคู่ต่อสู้คือนิวยอร์กไจแอนต์?",
    "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_en": "What was the attendance of the game on December 13, 1970?",
    "question_th": "ผู้เข้าร่วมการแข่งขันในวันที่ 13 ธันวาคม พ.ศ. 2513 เป็นอย่างไรบ้าง?",
    "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_en": "What is the date before week 13 and Miami Dolphins as an opponent?",
    "question_th": "วันก่อนสัปดาห์ที่ 13 และ Miami Dolphins เป็นคู่ต่อสู้คือเมื่อใด",
    "context": "CREATE TABLE table_name_48 (date VARCHAR, week VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_59 WHERE week = 11",
    "question_en": "What is the attendance for week 11?",
    "question_th": "การเข้าร่วมในสัปดาห์ที่ 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_en": "What is the home team's score for north melbourne?",
    "question_th": "นอร์ท เมลเบิร์น สกอร์ของเจ้าบ้านเท่าไหร่?",
    "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_en": "Who sponsors Josele Garza in all rounds?",
    "question_th": "ใครเป็นผู้สนับสนุน Josele Garza ในทุกรอบ?",
    "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_en": "Which rounds did the team Walther participate in?",
    "question_th": "ทีม Walther เข้าร่วมในรอบใด?",
    "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_en": "What team was Tom Sneva on in rounds 1-9?",
    "question_th": "ทอม สเนวา อยู่ทีมใดในรอบ 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_en": "Which rounds do Arciero Wines sponsor a March 85c chassis?",
    "question_th": "Arciero Wines สนับสนุนแชสซี 85c ของเดือนมีนาคมในรอบใด",
    "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_en": "What years were the inactive North Carolina chapter active?",
    "question_th": "บทที่ North Carolina ที่ไม่ได้ใช้งานมีการใช้งานกี่ปี?",
    "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_en": "What years were the inactive Idaho chapter active?",
    "question_th": "บทที่ไอดาโฮที่ไม่ได้ใช้งานใช้งานอยู่กี่ปี?",
    "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_en": "Which chapter was active from 1906-1991?",
    "question_th": "บทใดที่ใช้งานตั้งแต่ปี 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_en": "What are the active dates for the Montana State University chapter?",
    "question_th": "วันที่ใช้งานสำหรับบทของ Montana State University คือเมื่อใด",
    "context": "CREATE TABLE table_name_85 (charter_range VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT state FROM table_name_36 WHERE charter_range = \"1906-1991\"",
    "question_en": "What state had an active chapter from 1906-1991?",
    "question_th": "รัฐใดมีบทที่ใช้งานอยู่ตั้งแต่ปี 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_en": "How many people were at the game with a record of 6-1?",
    "question_th": "มีกี่คนที่อยู่ในเกมด้วยสถิติ 6-1?",
    "context": "CREATE TABLE table_name_50 (attendance VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_72 WHERE opponent = \"indianapolis colts\"",
    "question_en": "When was there a game against the Indianapolis colts?",
    "question_th": "มีเกมกับ Indianapolis Colts เมื่อไหร่?",
    "context": "CREATE TABLE table_name_72 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT MIN(crowd) FROM table_name_91 WHERE venue = \"mcg\"",
    "question_en": "What is the lowest crowd size at MCG?",
    "question_th": "ขนาดฝูงชนต่ำสุดที่ 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_en": "What is the average crowd size when the home team is North Melbourne?",
    "question_th": "ขนาดฝูงชนโดยเฉลี่ยเมื่อเจ้าบ้านคือ นอร์ท เมลเบิร์น คือเท่าใด?",
    "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_en": "What is the away team score when the home team is North Melbourne?",
    "question_th": "สกอร์ทีมเยือนเมื่อเจ้าบ้านคือ นอร์ท เมลเบิร์น เป็นเท่าไหร่?",
    "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_en": "What is the pole position for marlboro challenge?",
    "question_th": "ตำแหน่งโพลโพซิชั่นสำหรับการท้าทายมาร์ลโบโรคืออะไร?",
    "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_en": "What circut has an unknown fastest lap on July 19?",
    "question_th": "วงใดมีรอบเร็วที่สุดในวันที่ 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_en": "What circuit did marlboro team penske win with an unknown fastest lap?",
    "question_th": "เพนก์ของทีมมาร์ลโบโรชนะวงจรใดด้วยรอบที่เร็วที่สุดที่ไม่รู้จัก?",
    "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_en": "What team does mario andretti play pole position for?",
    "question_th": "mario andretti เล่นตำแหน่งโพลโพซิชั่นให้ทีมใด?",
    "context": "CREATE TABLE table_name_9 (winning_team VARCHAR, pole_position VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_3 WHERE away_team = \"carlton\"",
    "question_en": "What was the venue where Carlton was the away team?",
    "question_th": "สนามที่คาร์ลตันเป็นทีมเยือนคือสนามใด?",
    "context": "CREATE TABLE table_name_3 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_28 WHERE away_team = \"carlton\"",
    "question_en": "What was the venue when Carlton was the away team?",
    "question_th": "สนามที่คาร์ลตันเป็นทีมเยือนคือสนามไหน?",
    "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_en": "What was the highest heat with a time slower than 48.87 from sweden?",
    "question_th": "ความร้อนสูงสุดโดยมีเวลาช้ากว่า 48.87 จากสวีเดนคือข้อใด",
    "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_en": "How many lanes featured a swimmer ranked above 4, in a heat later than 1, from australia, named ashley callus?",
    "question_th": "มีกี่เลนที่มีนักว่ายน้ำที่มีอันดับสูงกว่า 4 ในสภาพอากาศร้อนช้ากว่า 1 จากออสเตรเลียชื่อ 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_en": "What is the Eurozone result for Population M (LUZ) of 3.08?",
    "question_th": "ผลลัพธ์ยูโรโซนสำหรับประชากร M (LUZ) 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_en": "What is the GDP $IDB in Istanbul?",
    "question_th": "GDP $IDB ในอิสตันบูลคืออะไร?",
    "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_en": "What is the most recently founded school that joined in 2011?",
    "question_th": "โรงเรียนใดที่ก่อตั้งล่าสุดซึ่งเข้าร่วมในปี 2554 คือโรงเรียนใด",
    "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_en": "What was the home team that played Geelong?",
    "question_th": "เจ้าบ้านที่เล่นจีลองคือทีมอะไร?",
    "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_en": "What was the home team's score when they played Richmond?",
    "question_th": "เจ้าบ้านได้สกอร์เท่าไหร่ตอนเล่นริชมอนด์?",
    "context": "CREATE TABLE table_name_13 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_74 WHERE home_team = \"melbourne\"",
    "question_en": "What is Melbourne's home venue?",
    "question_th": "สนามเหย้าของเมลเบิร์นคืออะไร?",
    "context": "CREATE TABLE table_name_74 (venue VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT overall FROM table_name_72 WHERE position = \"tight end\"",
    "question_en": "What was the overall draft pick for the player selected for the tight end position?",
    "question_th": "ดราฟท์โดยรวมสำหรับผู้เล่นที่ถูกเลือกสำหรับตำแหน่งท้ายสุดคืออะไร?",
    "context": "CREATE TABLE table_name_72 (overall VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_10 WHERE home_team = \"hawthorn\"",
    "question_en": "On what date is Hawthorn the home team?",
    "question_th": "ฮอว์ธอร์นเจ้าบ้านวันไหน?",
    "context": "CREATE TABLE table_name_10 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_31 WHERE away_team = \"st kilda\"",
    "question_en": "On what date is St Kilda the away team?",
    "question_th": "เซนต์คิลดาเยือนวันไหน?",
    "context": "CREATE TABLE table_name_31 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_7 WHERE date = \"october 13, 1968\"",
    "question_en": "Who did the Browns play on October 13, 1968?",
    "question_th": "บราวน์สเล่นกับใครในวันที่ 13 ตุลาคม พ.ศ. 2511",
    "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_en": "Which game is named tsegay kebede category:articles with hcards?",
    "question_th": "เกมใดชื่อ tsegay kebede หมวดหมู่:บทความที่มี 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_en": "Which event in the 2000 Sydney games was in the category gete wami category:articles with hcards?",
    "question_th": "เหตุการณ์ใดในเกมที่ซิดนีย์ปี 2000 อยู่ในหมวดหมู่ gete wami หมวดหมู่:บทความที่มี 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_en": "Which event in the 2008 Beijing Games had a bronze medal?",
    "question_th": "การแข่งขันกีฬาปักกิ่งปี 2008 รายการใดที่ได้เหรียญทองแดง",
    "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_en": "What is the medal named fatuma roba category:articles with hcards for?",
    "question_th": "เหรียญชื่อ fatuma roba หมวด:บทความที่มี hcards มีไว้เพื่ออะไร",
    "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_en": "What is the game named derartu tulu category:articles with hcards?",
    "question_th": "เกมชื่อ derartu tulu หมวดหมู่: บทความที่มี hcards คืออะไร?",
    "context": "CREATE TABLE table_name_15 (games VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_40 WHERE race = \"kentucky derby\"",
    "question_en": "What is the fastest time for the Kentucky Derby race?",
    "question_th": "เวลาที่เร็วที่สุดสำหรับการแข่งขัน Kentucky Derby คืออะไร?",
    "context": "CREATE TABLE table_name_40 (time VARCHAR, race VARCHAR)"
  },
  {
    "answer": "SELECT track FROM table_name_72 WHERE race = \"woodward stakes\"",
    "question_en": "Which track does the Woodward Stakes race take place on?",
    "question_th": "การแข่งขัน Woodward Stakes จัดขึ้นที่สนามใด",
    "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_en": "What grade did jockey Robby Albarado get when racing with Ravens Pass?",
    "question_th": "จ๊อกกี้ Robby Albarado ได้เกรดเท่าไหร่เมื่อแข่งกับ 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_en": "In which Age Category is Marco Manenti?",
    "question_th": "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_en": "Which year has a Time of 13:23:43?",
    "question_th": "ปีใดมีเวลา 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_en": "What score has 3-7 as the record?",
    "question_th": "มีสกอร์ 3-7 เป็นสถิติไหน?",
    "context": "CREATE TABLE table_name_46 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_82 WHERE att = \"16,458\"",
    "question_en": "What loss has 16,458 as an Att.?",
    "question_th": "ขาดทุนอะไร 16,458 เป็น 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_en": "What date has 5-3 as the score, and holt (1-1) as a loss?",
    "question_th": "วันไหนที่สกอร์เป็น 5-3 และโฮลท์ (1-1) แพ้?",
    "context": "CREATE TABLE table_name_95 (date VARCHAR, score VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT sector FROM table_name_64 WHERE incorporated < 1983",
    "question_en": "What is the sector of the company with an incorporated date before 1983?",
    "question_th": "ภาคส่วนใดของบริษัทที่จดทะเบียนก่อนปี 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_en": "What is the average incorporataed year of the Air India Charters company?",
    "question_th": "ปีที่จดทะเบียนโดยเฉลี่ยของบริษัท Air India Charters คือเท่าใด",
    "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_en": "How many votes were tallied in 1956 with a % of national vote larger than 11.47?",
    "question_th": "มีการนับคะแนนเสียงทั้งหมดกี่คะแนนในปี 1956 โดยมี % ของคะแนนเสียงระดับชาติมากกว่า 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_en": "How many candidates were nominated in 1952 with under 305,133 votes?",
    "question_th": "มีผู้สมัครที่ได้รับการเสนอชื่อเข้าชิงกี่คนในปี พ.ศ. 2495 ด้วยคะแนนเสียงต่ำกว่า 305,133 เสียง",
    "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_en": "How many votes were tallied with a % of national vote of 13.11, and over 39 candidates nominated?",
    "question_th": "มีการนับคะแนนทั้งหมดกี่คะแนน โดยมี % ของคะแนนเสียงระดับชาติที่ 13.11 และมีการเสนอชื่อผู้สมัครมากกว่า 39 คน",
    "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–17–5\"",
    "question_en": "Who is the visitor with a record of 14–17–5?",
    "question_th": "ใครคือผู้มาเยือนที่มีสถิติ 14–17–5",
    "context": "CREATE TABLE table_name_54 (visitor VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(attendance) FROM table_name_98 WHERE home = \"penguins\" AND record = \"14–19–6\" AND points < 34",
    "question_en": "How many in attendance when Penguins were home with a record of 14–19–6 with less than 34 points?",
    "question_th": "มีผู้เข้าร่วมกี่คนเมื่อ Penguins กลับบ้านด้วยสถิติ 14–19–6 โดยมีคะแนนน้อยกว่า 34 คะแนน",
    "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_en": "Which Format has a Catalog of 561 445-1?",
    "question_th": "รูปแบบใดมีแคตตาล็อก 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_en": "Which Region has a Date of early september 1999?",
    "question_th": "ภูมิภาคใดมีวันที่ต้นเดือนกันยายน 2542",
    "context": "CREATE TABLE table_name_67 (region VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_name_15 WHERE date = \"early september 1999\"",
    "question_en": "Which Region has a Date of early september 1999?",
    "question_th": "ภูมิภาคใดมีวันที่ต้นเดือนกันยายน 2542",
    "context": "CREATE TABLE table_name_15 (region VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_34 WHERE loss = \"white (4-5)\"",
    "question_en": "What was the date of the game with a loss of White (4-5)?",
    "question_th": "แพ้ไวท์ (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_en": "what score has a location and attendance of montreal forum and the date of may 10?",
    "question_th": "คะแนนใดบ้างที่มีสถานที่และการเข้าร่วมฟอรัมมอนทรีออลและวันที่ 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_en": "Which Interview has a Province of monte cristi and a Swimsuit larger than 7.27",
    "question_th": "บทสัมภาษณ์ใดมีจังหวัดมอนเตคริสตีและชุดว่ายน้ำที่มีขนาดใหญ่กว่า 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_en": "WHich Evening Gown has a Swimsuit smaller than 7.99 and a Interview larger than 7.98?",
    "question_th": "ชุดราตรีชุดไหนที่มีชุดว่ายน้ำเล็กกว่า 7.99 และบทสัมภาษณ์ใหญ่กว่า 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_en": "Which Interview has a Swimsuit larger than 7.6, and a Province of la vega, and an Average smaller than 8.38?",
    "question_th": "การสัมภาษณ์ใดมีชุดว่ายน้ำที่มีขนาดใหญ่กว่า 7.6 และมีจังหวัด la vega และมีค่าเฉลี่ยน้อยกว่า 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_en": "Which items in segment A have a segment D of marble sculptures?",
    "question_th": "รายการใดในส่วน A ที่มีส่วน D ของประติมากรรมหินอ่อน",
    "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_en": "Which segment A also has a segment D of kitchen shears?",
    "question_th": "ส่วน A ใดที่มีส่วน D ของกรรไกรทำครัวด้วย",
    "context": "CREATE TABLE table_name_57 (segment_a VARCHAR, segment_d VARCHAR)"
  },
  {
    "answer": "SELECT segment_c FROM table_name_30 WHERE episode = 160",
    "question_en": "Which items in segment C is episode 160?",
    "question_th": "รายการไหนในภาค C คือตอนที่ 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_en": "Which season last aired on May 6, 1987?",
    "question_th": "ฤดูกาลใดออกอากาศครั้งสุดท้ายเมื่อวันที่ 6 พฤษภาคม พ.ศ. 2530?",
    "context": "CREATE TABLE table_name_77 (season VARCHAR, last_airdate VARCHAR)"
  },
  {
    "answer": "SELECT nielsen_ranking FROM table_name_99 WHERE season = \"season 8\"",
    "question_en": "What is the Nielsen ranking for Season 8?",
    "question_th": "การจัดอันดับของ Nielsen สำหรับซีซั่น 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_en": "What was the first airdate or the season that had less than 24 episodes and a Nielsen ranking of #38?",
    "question_th": "วันที่ออกอากาศครั้งแรกหรือซีซันที่มีน้อยกว่า 24 ตอนคือวันที่ออกอากาศครั้งแรกและอันดับที่ 38 ของ Nielsen คืออะไร",
    "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_en": "How many episodes were in the season that first aired on September 22, 1989?",
    "question_th": "ซีซั่นที่ออกอากาศครั้งแรกเมื่อวันที่ 22 กันยายน พ.ศ. 2532 มีกี่ตอน",
    "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_en": "How many episodes were in the season that ended on April 29, 1986?",
    "question_th": "ซีซั่นที่สิ้นสุดในวันที่ 29 เมษายน พ.ศ. 2529 มีกี่ตอน",
    "context": "CREATE TABLE table_name_65 (episodes INTEGER, last_airdate VARCHAR)"
  },
  {
    "answer": "SELECT built_as FROM table_name_28 WHERE ship = \"dahlgren\"",
    "question_en": "Where the ship is Dahlgren what is the build as?",
    "question_th": "เรืออยู่ที่ไหน Dahlgren โครงสร้างเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_28 (built_as VARCHAR, ship VARCHAR)"
  },
  {
    "answer": "SELECT reclassified_as FROM table_name_35 WHERE nvr_link = \"cgn38\"",
    "question_en": "Where the NRV link is CGN38, what is the reclassified as?",
    "question_th": "โดยที่ลิงค์ NRV คือ CGN38 แล้วจัดประเภทใหม่เป็นข้อใด",
    "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_en": "Where the built as is DLG-23, what is the class?",
    "question_th": "สร้างที่ไหนเหมือน DLG-23 คลาสอะไรครับ?",
    "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_en": "What is the Total medals won by the nation in Rank 6 with less than 2 Bronze medals?",
    "question_th": "เหรียญรวมที่ประเทศได้รับในอันดับ 6 โดยมีเหรียญทองแดงน้อยกว่า 2 เหรียญคือเท่าใด",
    "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_en": "How many Gold medals were won by the Nation that had more than 12 Bronze medals and less than 124 Total medals?",
    "question_th": "ประเทศชาติได้เหรียญทองกี่เหรียญซึ่งมีมากกว่า 12 เหรียญทองแดง และรวมน้อยกว่า 124 เหรียญ?",
    "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_en": "December smaller than 21, and a Opponent of buffalo sabres had what score?",
    "question_th": "ธันวาคม เล็กกว่า 21 แล้วฝ่ายตรงข้ามกระบี่กระบือได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_68 (score VARCHAR, december VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT december FROM table_name_27 WHERE score = \"8 - 1\"",
    "question_en": "Score of 8 - 1 happened on what day in December?",
    "question_th": "คะแนน 8 - 1 เกิดขึ้นวันไหนในเดือนธันวาคม?",
    "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_en": "December larger than 21, and a Opponent of Pittsburgh penguins had what average game?",
    "question_th": "ธันวาคมมากกว่า 21 และฝ่ายตรงข้ามของนกเพนกวินพิตส์เบิร์กมีเกมเฉลี่ยเท่าใด",
    "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_en": "December smaller than 14, and a Game smaller than 28, and a Score of 6 - 6 involved what opponent?",
    "question_th": "ธันวาคมน้อยกว่า 14 และเกมที่น้อยกว่า 28 และคะแนน 6 - 6 เกี่ยวข้องกับคู่ต่อสู้คนใด",
    "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_en": "What is the date that the item was laid down if it was launched on 1899-04-25?",
    "question_th": "ถ้าวางขายในวันที่ 1899-04-25 คือวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_95 (laid_down VARCHAR, launched VARCHAR)"
  },
  {
    "answer": "SELECT builder FROM table_name_98 WHERE kanji = \"曙\"",
    "question_en": "Which builder has the the kanji of 曙?",
    "question_th": "ช่างก่อสร้างคนไหนมีตัวอักษรคันจิของ 曙",
    "context": "CREATE TABLE table_name_98 (builder VARCHAR, kanji VARCHAR)"
  },
  {
    "answer": "SELECT MIN(density_per_km²) FROM table_name_21 WHERE number__map_ < 13 AND area_in_km² = 11.1",
    "question_en": "Which Density per km² is the lowest one that has a Number (map) smaller than 13, and an Area in km² of 11.1?",
    "question_th": "ความหนาแน่นต่อตารางกิโลเมตรใดเป็นค่าต่ำสุดที่มีตัวเลข (แผนที่) น้อยกว่า 13 และพื้นที่ในหน่วยกิโลเมตร²เท่ากับ 11.1",
    "context": "CREATE TABLE table_name_21 (density_per_km² INTEGER, number__map_ VARCHAR, area_in_km² VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(number__map_) FROM table_name_3 WHERE area_in_km² > 13.5 AND population_canada_2011_census = 134 OFFSET 038",
    "question_en": "How much #s have an Area in km² larger than 13.5, and a Population Canada 2011 Census of 134,038?",
    "question_th": "#s มีพื้นที่ในหน่วย km² มากกว่า 13.5 เท่าใด และการสำรวจสำมะโนประชากรของแคนาดาปี 2011 จำนวน 134,038 คน",
    "context": "CREATE TABLE table_name_3 (number__map_ VARCHAR, area_in_km² VARCHAR, population_canada_2011_census VARCHAR)"
  },
  {
    "answer": "SELECT MIN(number__map_) FROM table_name_71 WHERE area_in_km² = 9.7 AND population_canada_2011_census > 66 OFFSET 158",
    "question_en": "Which Number (map) is the lowest one that has a Area in km² of 9.7, and a Population Canada 2011 Census larger than 66,158?",
    "question_th": "หมายเลขใด (แผนที่) คือหมายเลขต่ำสุดที่มีพื้นที่เป็นกิโลเมตร²ที่ 9.7 และการสำรวจสำมะโนประชากรของแคนาดาปี 2011 มากกว่า 66,158",
    "context": "CREATE TABLE table_name_71 (number__map_ INTEGER, area_in_km² VARCHAR, population_canada_2011_census VARCHAR)"
  },
  {
    "answer": "SELECT AVG(week) FROM table_name_80 WHERE attendance = \"19,741\"",
    "question_en": "Attendance of 19,741 had what average week?",
    "question_th": "ผู้เข้าร่วม 19,741 คนมีสัปดาห์เฉลี่ยเท่าใด?",
    "context": "CREATE TABLE table_name_80 (week INTEGER, attendance VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_80 WHERE attendance = \"29,000\"",
    "question_en": "Attendance of 29,000 occurred on what date?",
    "question_th": "มีผู้เข้าร่วม 29,000 คน เกิดขึ้นวันไหน?",
    "context": "CREATE TABLE table_name_80 (date VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_38 WHERE opponent = \"philadelphia eagles\"",
    "question_en": "Opponent of Philadelphia eagles had what attendance?",
    "question_th": "ฝ่ายตรงข้ามของ Philadelphia Eagles เข้าร่วมอะไร?",
    "context": "CREATE TABLE table_name_38 (attendance VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT exited FROM table_name_26 WHERE celebrity = \"alex best\"",
    "question_en": "What day did Alex Best exit?",
    "question_th": "Alex Best ออกวันไหน?",
    "context": "CREATE TABLE table_name_26 (exited VARCHAR, celebrity VARCHAR)"
  },
  {
    "answer": "SELECT finished FROM table_name_39 WHERE famous_for = \"athlete\"",
    "question_en": "What place did the celebrity who is famous for being an athlete finish?",
    "question_th": "ดาราดังที่โด่งดังจากการเป็นนักกีฬาจบที่ใด?",
    "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_en": "What place did the singer in atomic kitten finish?",
    "question_th": "นักร้องในเรื่อง Atomic Kitty จบที่อันดับไหน?",
    "context": "CREATE TABLE table_name_91 (finished VARCHAR, famous_for VARCHAR)"
  },
  {
    "answer": "SELECT celebrity FROM table_name_35 WHERE exited = \"day 13\"",
    "question_en": "Who was the celebrity who exited on day 13?",
    "question_th": "คนดังที่ออกวันที่ 13 คือใคร?",
    "context": "CREATE TABLE table_name_35 (celebrity VARCHAR, exited VARCHAR)"
  },
  {
    "answer": "SELECT celebrity FROM table_name_91 WHERE finished = \"7th\"",
    "question_en": "Who was the celebrity who finished in 7th place?",
    "question_th": "ใครคือคนดังที่จบอันดับที่ 7?",
    "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_en": "Name of gilmar, and a Caps smaller than 94 had how many highest goals?",
    "question_th": "ชื่อของกิลมาร์ และแคปที่น้อยกว่า 94 มีเป้าหมายสูงสุดกี่ข้อ?",
    "context": "CREATE TABLE table_name_18 (goals INTEGER, name VARCHAR, caps VARCHAR)"
  },
  {
    "answer": "SELECT goals FROM table_name_94 WHERE caps = 93",
    "question_en": "Caps of 93 had how many goals?",
    "question_th": "แคป 93 ทำได้กี่ประตู?",
    "context": "CREATE TABLE table_name_94 (goals VARCHAR, caps VARCHAR)"
  },
  {
    "answer": "SELECT goals FROM table_name_39 WHERE latest_cap = \"september 5, 2011\"",
    "question_en": "Latest cap of september 5, 2011 had how many goals?",
    "question_th": "แคปล่าสุดเมื่อ 5 กันยายน 2554 ทำได้กี่ประตู?",
    "context": "CREATE TABLE table_name_39 (goals VARCHAR, latest_cap VARCHAR)"
  },
  {
    "answer": "SELECT MAX(caps) FROM table_name_65 WHERE name = \"rivelino\"",
    "question_en": "Name of rivelino had how many highest caps?",
    "question_th": "ชื่อของ rivelino มีแคปสูงสุดกี่อัน?",
    "context": "CREATE TABLE table_name_65 (caps INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT athlete FROM table_name_32 WHERE venue = \"birmingham\"",
    "question_en": "Which athlete played at the Birmingham venue?",
    "question_th": "นักกีฬาคนไหนเล่นที่สนามเบอร์มิงแฮม?",
    "context": "CREATE TABLE table_name_32 (athlete VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT AVG(frequency) FROM table_name_31 WHERE webcast = \"•\" AND callsign = \"xemr\"",
    "question_en": "Which Frequency has a Webcast of •, and a Callsign of xemr?",
    "question_th": "ความถี่ใดที่มี Webcast ของ • และ Callsign ของ 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_en": "Which Website has a Frequency smaller than 760 and a Callsign of kkyx?",
    "question_th": "เว็บไซต์ใดมีความถี่น้อยกว่า 760 และมีสัญญาณเรียกขานเป็น kkyx",
    "context": "CREATE TABLE table_name_85 (website VARCHAR, frequency VARCHAR, callsign VARCHAR)"
  },
  {
    "answer": "SELECT webcast FROM table_name_91 WHERE callsign = \"kgbt\"",
    "question_en": "Which Webcast has a Callsign of kgbt?",
    "question_th": "Webcast ไหนมี Callsign เป็น kgbt?",
    "context": "CREATE TABLE table_name_91 (webcast VARCHAR, callsign VARCHAR)"
  },
  {
    "answer": "SELECT AVG(frequency) FROM table_name_44 WHERE website = \"•\" AND webcast = \"•\" AND city_of_license = \"san antonio\"",
    "question_en": "Which Frequency has a Website of •, and a Webcast of •in san antonio?",
    "question_th": "ความถี่ใดที่มีเว็บไซต์ของ • และเว็บคาสต์ของ • ในซานอันโตนิโอ",
    "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_en": "What years did the player play when he scored 78 points and 22 goals?",
    "question_th": "ผู้เล่นเล่นกี่ปีเมื่อเขาทำคะแนนได้ 78 แต้มและ 22 ประตู?",
    "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_en": "How many goals did Joey Worthen have when he had 15 assists?",
    "question_th": "โจอี้ เวิร์ทเธน ทำได้กี่ประตูเมื่อเขาทำได้ 15 แอสซิสต์?",
    "context": "CREATE TABLE table_name_78 (goals VARCHAR, assists VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT goals FROM table_name_45 WHERE points = \"158\"",
    "question_en": "How many goals were scored when 158 points were collected?",
    "question_th": "เมื่อเก็บได้ 158 แต้ม ทำได้กี่ประตู?",
    "context": "CREATE TABLE table_name_45 (goals VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT years FROM table_name_51 WHERE goals = \"36\"",
    "question_en": "What years had players who scored 36 goals?",
    "question_th": "ผู้เล่นที่ยิงได้ 36 ประตูมีกี่ปี?",
    "context": "CREATE TABLE table_name_51 (years VARCHAR, goals VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_14 WHERE assists = \"13\"",
    "question_en": "What was the rank of the player who had 13 assists?",
    "question_th": "นักเตะที่ทำ 13 แอสซิสต์ได้อันดับเท่าไหร่?",
    "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_en": "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?",
    "question_th": "ผลรวมของสัปดาห์ที่อินเดียนแดงเล่นกับฮุสตัน ออยเลอร์ส และมีแฟนบอลเข้าชมมากกว่า 54,582 คนคือเท่าใด",
    "context": "CREATE TABLE table_name_97 (week INTEGER, opponent VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT MAX(attendance) FROM table_name_63 WHERE week < 1",
    "question_en": "What is the highest attendance for week 1?",
    "question_th": "สัปดาห์ที่ 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_en": "What is the total number in attendance for the game after week 8 that was on November 25, 1979?",
    "question_th": "จำนวนผู้เข้าร่วมเกมทั้งหมดหลังสัปดาห์ที่ 8 ซึ่งก็คือวันที่ 25 พฤศจิกายน พ.ศ. 2522 เป็นเท่าใด",
    "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_en": "Which Surface has a Score of 2009 wta tour?",
    "question_th": "Surface รุ่นใดมีคะแนน WTA Tour ปี 2009",
    "context": "CREATE TABLE table_name_13 (surface VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_31 WHERE ranking = \"2008 wta tour\"",
    "question_en": "Which Round has a Ranking of 2008 wta tour?",
    "question_th": "รอบใดมีอันดับ WTA Tour ปี 2008?",
    "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_en": "Which Surface has a Round of 4th round, and a Player of maria sharapova?",
    "question_th": "Surface ใดได้เข้ารอบรอบที่ 4 และเป็นผู้เล่นของ Maria Sharapova",
    "context": "CREATE TABLE table_name_57 (surface VARCHAR, round VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_97 WHERE score = \"6–4, 7–6 (7–5)\"",
    "question_en": "Which Player has a Score of 6–4, 7–6 (7–5)?",
    "question_th": "ผู้เล่นคนใดมีคะแนน 6–4, 7–6 (7–5)",
    "context": "CREATE TABLE table_name_97 (player VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_23 WHERE player = \"anna chakvetadze\"",
    "question_en": "Which Round has a Player of anna chakvetadze?",
    "question_th": "รอบไหนมีผู้เล่น แอนนา ชัคเวทัดเซ?",
    "context": "CREATE TABLE table_name_23 (round VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_16 WHERE record = \"89-67\"",
    "question_en": "Record of 89-67 had what loss?",
    "question_th": "สถิติ 89-67 ขาดทุนอะไรบ้าง?",
    "context": "CREATE TABLE table_name_16 (loss VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_93 WHERE score = \"3 - 2\"",
    "question_en": "Score of 3 - 2 had what record?",
    "question_th": "คะแนน 3 - 2 มีสถิติอะไรบ้าง?",
    "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_en": "Opponent of @ blue jays, and a Loss of lyon (5-4) had what opponent?",
    "question_th": "ฝ่ายตรงข้ามของ @ blue jays และ Loss of lyon (5-4) มีคู่ต่อสู้คนไหน?",
    "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_en": "Loss of lyon (5-4) had what score?",
    "question_th": "แพ้ ลียง (5-4) ได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_17 (score VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_99 WHERE loss = \"finley (8-7)\"",
    "question_en": "Loss of finley (8-7) had what record?",
    "question_th": "การสูญเสียฟินลีย์ (8-7) มีสถิติอะไรบ้าง?",
    "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_en": "Opponent of @ blue jays, and a Date of october 6 had what score?",
    "question_th": "ฝ่ายตรงข้าม @บลูเจย์ และ วันที่ 6 ตุลาคม ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_19 (score VARCHAR, opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_82 WHERE game = 5",
    "question_en": "What is the score for game 5?",
    "question_th": "คะแนนของเกมที่ 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_en": "What is the score that has a game greater than 3, with buffalo sabres as the opponent?",
    "question_th": "คะแนนที่มีเกมมากกว่า 3 โดยมีกระบี่กระบองเป็นคู่ต่อสู้คืออะไร?",
    "context": "CREATE TABLE table_name_77 (score VARCHAR, game VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_26 WHERE date = \"may 9\"",
    "question_en": "What score has may 9 as the date?",
    "question_th": "9 พฤษภาคมมีคะแนนอะไรเป็นวันที่?",
    "context": "CREATE TABLE table_name_26 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_37 WHERE date = \"october 16, 1983\"",
    "question_en": "What was the score on October 16, 1983?",
    "question_th": "คะแนนเมื่อวันที่ 16 ตุลาคม 2526 เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_37 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_38 WHERE outcome = \"runner-up\"",
    "question_en": "What was the score when she was a runner-up?",
    "question_th": "ตอนที่เธอได้รองแชมป์เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_38 (score VARCHAR, outcome VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_86 WHERE date = \"august 11, 1984\"",
    "question_en": "What tournament was being played on August 11, 1984?",
    "question_th": "มีการแข่งขันทัวร์นาเมนต์ใดในวันที่ 11 สิงหาคม พ.ศ. 2527?",
    "context": "CREATE TABLE table_name_86 (tournament VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_9 WHERE date = \"june 8, 2005\"",
    "question_en": "What was the Venue on June 8, 2005?",
    "question_th": "สถานที่จัดงานในวันที่ 8 มิถุนายน พ.ศ. 2548 คืออะไร?",
    "context": "CREATE TABLE table_name_9 (venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_90 WHERE venue = \"los angeles\"",
    "question_en": "On what Date was the Venue Los Angeles?",
    "question_th": "สถานที่จัดงานลอสแอนเจลีสคือวันไหน?",
    "context": "CREATE TABLE table_name_90 (date VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_64 WHERE date = \"september 29, 2003\"",
    "question_en": "What was the Score on September 29, 2003?",
    "question_th": "คะแนนเมื่อวันที่ 29 กันยายน พ.ศ. 2546 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_64 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_10 WHERE venue = \"carson\"",
    "question_en": "On what Date was the Venue in Carson?",
    "question_th": "สถานที่จัดงานในคาร์สันคือวันไหน?",
    "context": "CREATE TABLE table_name_10 (date VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_83 WHERE date = \"october 21, 2003\"",
    "question_en": "What was the competition on October 21, 2003?",
    "question_th": "วันที่ 21 ตุลาคม 2546 มีการแข่งขันอะไรบ้าง?",
    "context": "CREATE TABLE table_name_83 (competition VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_15 WHERE date = \"september 29, 2003\"",
    "question_en": "What was the Competition on September 29, 2003?",
    "question_th": "การแข่งขันในวันที่ 29 กันยายน พ.ศ. 2546 คืออะไร?",
    "context": "CREATE TABLE table_name_15 (competition VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_88 WHERE name = \"chunkath, mohan verghese\"",
    "question_en": "What country has chunkath, mohan verghese as the name?",
    "question_th": "ประเทศใดมีชื่อ chunkath, mohan verghese?",
    "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_en": "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?",
    "question_th": "ตำแหน่งใดมีสเปรดมากกว่า -319 และสหรัฐอเมริกาเป็นประเทศ ชนะแพ้ 11-13 และกาเบรียล มาร์ตี้เป็นชื่อ?",
    "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_en": "What name has a spread of 69?",
    "question_th": "ชื่ออะไรมีสเปรด 69?",
    "context": "CREATE TABLE table_name_96 (name VARCHAR, spread VARCHAR)"
  },
  {
    "answer": "SELECT performer_2 FROM table_name_26 WHERE episode = 5",
    "question_en": "Which Performer 2 has an Episode of 5?",
    "question_th": "นักแสดงคนไหน 2 มีตอนที่ 5?",
    "context": "CREATE TABLE table_name_26 (performer_2 VARCHAR, episode VARCHAR)"
  },
  {
    "answer": "SELECT weight FROM table_name_88 WHERE denomination = \"one rupee\"",
    "question_en": "What weight has one rupee as the denomination?",
    "question_th": "หนึ่งรูปีเป็นนิกายที่มีน้ำหนักเท่าใด",
    "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_en": "What is the size that has nickel as the metal, and one rupee as the denomination?",
    "question_th": "ขนาดเท่าไหร่ที่มีนิกเกิลเป็นโลหะและมีหนึ่งรูปีเป็นนิกาย?",
    "context": "CREATE TABLE table_name_46 (size VARCHAR, metal VARCHAR, denomination VARCHAR)"
  },
  {
    "answer": "SELECT metal FROM table_name_83 WHERE denomination = \"one rupee\"",
    "question_en": "What metal has one rupee as the denomination?",
    "question_th": "โลหะชนิดใดมีสกุลเงินหนึ่งรูปี?",
    "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_en": "What shape has nickel as the metal, and one rupee as the denomination?",
    "question_th": "นิกเกิลเป็นโลหะรูปร่างอะไร และมีหนึ่งรูปีเป็นนิกาย",
    "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_en": "Which 2007 has a 2010 of A, and a 2006 of lq?",
    "question_th": "ปี 2550 ใดมีปี 2553 เป็น A และปี 2549 เป็น lq",
    "context": "CREATE TABLE table_name_18 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2012 FROM table_name_51 WHERE 2007 = \"1r\"",
    "question_en": "Which 2012 has a 2007 of 1r?",
    "question_th": "ปี 2012 ใดที่มีปี 2007 เป็น 1r",
    "context": "CREATE TABLE table_name_51 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2002 FROM table_name_37 WHERE 2013 = \"2–4\"",
    "question_en": "Which 2002 has a 2013 of 2–4?",
    "question_th": "ปี 2545 ใดมีปี 2556 เป็น 2–4",
    "context": "CREATE TABLE table_name_37 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2013 FROM table_name_98 WHERE 2010 = \"1r\"",
    "question_en": "Which 2013 has a 2010 of 1r?",
    "question_th": "ปี 2013 ใดที่มีปี 2010 เป็น 1r",
    "context": "CREATE TABLE table_name_98 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2005 FROM table_name_52 WHERE tournament = \"grand slam tournaments\"",
    "question_en": "Which 2005 has a Tournament of grand slam tournaments?",
    "question_th": "ปี 2005 ใดที่มีการแข่งขันรายการแกรนด์สแลม?",
    "context": "CREATE TABLE table_name_52 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2007 FROM table_name_53 WHERE 2008 = \"1r\" AND tournament = \"wimbledon\"",
    "question_en": "Which 2007 has a 2008 of 1r, and a Tournament of wimbledon?",
    "question_th": "ปี 2007 ใดที่มีอันดับ 1 ปี 2008 และทัวร์นาเมนต์วิมเบิลดัน",
    "context": "CREATE TABLE table_name_53 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_25 WHERE home = \"minnesota\"",
    "question_en": "Which Date has a Home of minnesota?",
    "question_th": "วันที่ใดมีบ้านของมินนิโซตา?",
    "context": "CREATE TABLE table_name_25 (date VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_32 WHERE decision = \"myre\" AND record = \"44–7–15\"",
    "question_en": "Which Visitor has a Decision of myre, and a Record of 44–7–15?",
    "question_th": "ผู้เยี่ยมชมรายใดที่มีการตัดสินใจของ myre และมีประวัติ 44–7–15",
    "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_en": "What Championship had a Winning score of 6 & 5?",
    "question_th": "การแข่งขันชิงแชมป์รายการใดมีคะแนนชนะ 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_en": "What was the Winning Score when Betsy Rawls was the Runner(s)-up?",
    "question_th": "คะแนนชนะเมื่อ Betsy Rawls เป็นรองชนะเลิศคืออะไร?",
    "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_en": "In 1946, what is the Runner(s)-up of the Women's Western Open Championship?",
    "question_th": "ในปีพ.ศ. 2489 รองแชมป์ 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_en": "What is the Margin in 1953 when Patty Berg was Runner(s)-up?",
    "question_th": "Margin ในปี 1953 คืออะไรเมื่อ Patty Berg ขึ้นเป็นรองชนะเลิศ?",
    "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_en": "What is the name of the primary with a DCSF number larger than 2337 and an Ofsted number smaller than 135339?",
    "question_th": "ชื่อหลักที่มีหมายเลข DCSF มากกว่า 2337 และหมายเลข Ofsted น้อยกว่า 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_en": "What name that has a DCSF number bigger than 2448 and an Ofsted number of 131319?",
    "question_th": "ชื่ออะไรที่มีหมายเลข DCSF มากกว่า 2448 และหมายเลข Ofsted เป็น 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_en": "What faith has a DCSF number bigger than 2448 in Holtsmere End?",
    "question_th": "ศรัทธาใดที่มีหมายเลข DCSF มากกว่า 2448 ใน 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_en": "What's the lowest DCSF number in Aycliffe Drive but an Ofsted number smaller than 117335?",
    "question_th": "หมายเลข DCSF ต่ำสุดใน Aycliffe Drive คืออะไร แต่หมายเลข Ofsted น้อยกว่า 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_en": "what city is the toamasina airport in?",
    "question_th": "สนามบินโทอามาซินาตั้งอยู่ในเมืองใด",
    "context": "CREATE TABLE table_name_42 (city VARCHAR, airport VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_99 WHERE city = \"sydney\"",
    "question_en": "What country has the city, Sydney?",
    "question_th": "เมืองซิดนีย์มีประเทศอะไร?",
    "context": "CREATE TABLE table_name_99 (country VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_63 WHERE country = \"mayotte\"",
    "question_en": "What city is in the country of Mayotte?",
    "question_th": "เมืองใดอยู่ในประเทศมายอต?",
    "context": "CREATE TABLE table_name_63 (city VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT iata FROM table_name_96 WHERE airport = \"chennai international airport\"",
    "question_en": "What is the IATA for the chennai international airport?",
    "question_th": "IATA สำหรับสนามบินนานาชาติเจนไนคืออะไร",
    "context": "CREATE TABLE table_name_96 (iata VARCHAR, airport VARCHAR)"
  },
  {
    "answer": "SELECT airport FROM table_name_78 WHERE iata = \"nos\"",
    "question_en": "What is the airport name that has nos listed as the IATA?",
    "question_th": "สนามบินที่มีหมายเลขอยู่ในรายการของ 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_en": "What is the part number of athlon x2 4850e?",
    "question_th": "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×\"",
    "question_en": "What's the frequency of the device that has a Multi 1 of 7.5×?",
    "question_th": "ความถี่ของอุปกรณ์ที่มี Multi 1 เป็น 7.5× คือเท่าไร?",
    "context": "CREATE TABLE table_name_28 (frequency VARCHAR, multi_1 VARCHAR)"
  },
  {
    "answer": "SELECT l2_cache FROM table_name_78 WHERE frequency = \"1500mhz\"",
    "question_en": "What's amount of L2 Cache on a device that has a Frequency of 1500mhz?",
    "question_th": "L2 Cache บนอุปกรณ์ที่มีความถี่ 1500mhz เป็นเท่าใด",
    "context": "CREATE TABLE table_name_78 (l2_cache VARCHAR, frequency VARCHAR)"
  },
  {
    "answer": "SELECT release_date FROM table_name_88 WHERE frequency = \"2300mhz\"",
    "question_en": "When is the release date for a chip that has a Frequency of 2300mhz?",
    "question_th": "ชิปที่มีความถี่ 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×\"",
    "question_en": "When was the release date for technology that has a Multi 1 of 10.5×?",
    "question_th": "เทคโนโลยีที่มี Multi 1 เป็น 10.5× จะวางจำหน่ายเมื่อใด?",
    "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_en": "What's the stepping amount for adh4450iaa5do?",
    "question_th": "จำนวนเงินก้าวสำหรับ 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_en": "Which Wins is the highest one that has a Year larger than 1996, and a Championship Finish of 1st, and Points smaller than 168?",
    "question_th": "ชัยชนะครั้งใดคือชัยชนะสูงสุดที่มีปีมากกว่าปี 1996 และจบการแข่งขันชิงแชมป์ที่ 1 และมีคะแนนน้อยกว่า 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_en": "Which Year is the highest that has a Team of walker racing, and Wins larger than 1?",
    "question_th": "ปีใดที่สูงที่สุดที่มีทีมวอล์คเกอร์เรซซิ่ง และชนะมากกว่า 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_en": "Which Points have a Year larger than 1998, and Wins of 1?",
    "question_th": "คะแนนใดที่มีหนึ่งปีมากกว่าปี 1998 และชนะ 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_en": "What is the lowest bronze number when silver shows 2, and the total is 8?",
    "question_th": "หมายเลขทองแดงต่ำสุดเมื่อเงินแสดง 2 และผลรวมคือ 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_en": "What is the silver number when gold is more than 4, and the total is less than 24?",
    "question_th": "เลขเงินเมื่อทองมากกว่า 4 และผลรวมน้อยกว่า 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_en": "What is the gold number when the total is 8 and bronze is more than 4?",
    "question_th": "เลขทองเมื่อผลรวมเป็น 8 และทองแดงมากกว่า 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_en": "What is the sum of Total for 0 gold and less than 2, silver with a rank of 6?",
    "question_th": "ผลรวมของ 0 เหรียญทองและน้อยกว่า 2 เหรียญเงินที่มีอันดับ 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_en": "What is the average Gold when silver is more than 2, and bronze is more than 1",
    "question_th": "ทองคำเฉลี่ยจะเป็นเท่าใดเมื่อเงินมากกว่า 2 และทองแดงมากกว่า 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_en": "What is the average Bronze when silver is more than 2, and rank is 2, and gold more than 2",
    "question_th": "อะไรคือค่าเฉลี่ยของสีบรอนซ์เมื่อเงินมากกว่า 2 และอันดับคือ 2 และทองมากกว่า 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°39′e\"",
    "question_en": "What city in Svalbard has a longitude of 15°39′e?",
    "question_th": "เมืองใดในสวาลบาร์ดที่มีลองจิจูด 15°39′e",
    "context": "CREATE TABLE table_name_77 (city VARCHAR, state VARCHAR, longitude VARCHAR)"
  },
  {
    "answer": "SELECT longitude FROM table_name_27 WHERE latitude = \"77°28′n\"",
    "question_en": "If the latitude is 77°28′n, what is the longitude?",
    "question_th": "ถ้าละติจูด 77°28′n ลองจิจูดคือเท่าใด",
    "context": "CREATE TABLE table_name_27 (longitude VARCHAR, latitude VARCHAR)"
  },
  {
    "answer": "SELECT longitude FROM table_name_52 WHERE latitude = \"76°25′n\"",
    "question_en": "If the latitude is 76°25′n, what is the longitude?",
    "question_th": "ถ้าละติจูด 76°25′n ลองจิจูดคือเท่าใด",
    "context": "CREATE TABLE table_name_52 (longitude VARCHAR, latitude VARCHAR)"
  },
  {
    "answer": "SELECT longitude FROM table_name_98 WHERE latitude = \"71°18′n\"",
    "question_en": "If the latitude is 71°18′n, what is the longitude?",
    "question_th": "ถ้าละติจูด 71°18′n ลองจิจูดคือเท่าใด",
    "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_en": "Who is the partner facing the opponents florian Mayer & alexander waske in the final?",
    "question_th": "คู่ต่อสู้ที่เผชิญหน้ากับฟลอเรียน เมเยอร์ และอเล็กซานเดอร์ วาสเก้คือใครในรอบชิงชนะเลิศ?",
    "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_en": "Which tournament has a hard surface and final opponents rohan bopanna & mustafa ghouse?",
    "question_th": "ทัวร์นาเมนต์ใดที่มีพื้นผิวแข็งและคู่ต่อสู้คนสุดท้ายคือ 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_en": "On which date did the tournament final with the clay surface take place?",
    "question_th": "การแข่งขันรอบชิงชนะเลิศด้วยพื้นผิวดินเกิดขึ้นวันไหน?",
    "context": "CREATE TABLE table_name_94 (date VARCHAR, surface VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_93 WHERE partner = \"julian knowle\"",
    "question_en": "Which tournament features the partner julian knowle?",
    "question_th": "ทัวร์นาเมนต์ใดที่มีคู่หู 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_en": "On which date is the tournament final with the opponents michael berrer & kenneth carlsen?",
    "question_th": "การแข่งขันรอบชิงชนะเลิศระหว่างคู่ต่อสู้ ไมเคิล เบอร์เรอร์ และเคนเนธ คาร์ลเซ่น คือวันไหน?",
    "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_en": "What was the score after february 4 in the game 61?",
    "question_th": "คะแนนหลังจากวันที่ 4 กุมภาพันธ์ในเกม 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_en": "What is Arkansas State's total pick number with an overal lower than 242?",
    "question_th": "หมายเลขเลือกทั้งหมดของรัฐอาร์คันซอที่มีคะแนนรวมต่ำกว่า 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_en": "Who is from the College of Cincinnati?",
    "question_th": "ใครมาจากวิทยาลัยซินซินแนติ?",
    "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_en": "What is the overall number for a kicker with a pick of less than 6?",
    "question_th": "จำนวนรวมของนักเตะที่เลือกได้น้อยกว่า 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_en": "Which college has a defensive end with a round less than 6?",
    "question_th": "วิทยาลัยใดมีการป้องกันด้วยรอบน้อยกว่า 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_en": "What record has a score of 111-96?",
    "question_th": "สถิติไหนมีคะแนน 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_en": "What is the score for a game after 34 with a record of 31-11?",
    "question_th": "คะแนนของเกมหลัง 34 ด้วยสถิติ 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_en": "What was the date with a resulted score of 130-100?",
    "question_th": "ผลคะแนน 130-100 คือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_16 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT water FROM table_name_72 WHERE metal = \"contracting\"",
    "question_en": "Which Water has a Metal of contracting?",
    "question_th": "น้ำชนิดใดที่มีโลหะในการทำสัญญา?",
    "context": "CREATE TABLE table_name_72 (water VARCHAR, metal VARCHAR)"
  },
  {
    "answer": "SELECT metal FROM table_name_84 WHERE element = \"heavenly stems\"",
    "question_en": "Which Metal has an Element of heavenly stems?",
    "question_th": "โลหะใดมีธาตุเป็นลำต้นสวรรค์?",
    "context": "CREATE TABLE table_name_84 (metal VARCHAR, element VARCHAR)"
  },
  {
    "answer": "SELECT water FROM table_name_50 WHERE wood = \"green\"",
    "question_en": "Which water has green wood?",
    "question_th": "น้ำใดมีไม้สีเขียว?",
    "context": "CREATE TABLE table_name_50 (water VARCHAR, wood VARCHAR)"
  },
  {
    "answer": "SELECT earth FROM table_name_10 WHERE metal = \"west\"",
    "question_en": "Which earth has west metal?",
    "question_th": "โลกใดมีโลหะตะวันตก",
    "context": "CREATE TABLE table_name_10 (earth VARCHAR, metal VARCHAR)"
  },
  {
    "answer": "SELECT wood FROM table_name_50 WHERE earth = \"stabilizing\"",
    "question_en": "Which wood has stabilizing earth?",
    "question_th": "ไม้ใดมีดินที่มั่นคง?",
    "context": "CREATE TABLE table_name_50 (wood VARCHAR, earth VARCHAR)"
  },
  {
    "answer": "SELECT fire FROM table_name_24 WHERE metal = \"dry\"",
    "question_en": "Which fire has dry metal?",
    "question_th": "ไฟใดมีโลหะแห้ง?",
    "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_en": "what name has a Rank of lieutenant colonel, and a Begin Date of 1904-02-22 22 february 1904?",
    "question_th": "ชื่ออะไรมียศพันโท และวันที่เริ่มต้นของ 1904-02-22 22 กุมภาพันธ์ 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_en": "Oklahoma State produced a player in which position in the draft?",
    "question_th": "รัฐโอคลาโฮมาเลือกผู้เล่นตำแหน่งใดในร่าง?",
    "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_en": "What is the highest round where a back named Ed Cody can be found?",
    "question_th": "รอบสูงสุดที่สามารถเจอกองหลังชื่อ เอ็ด โคดี้ ได้คือรอบไหน?",
    "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_en": "Which Losses is the lowest one that has a Season smaller than 1920, and Draws larger than 0?",
    "question_th": "การแพ้ใดคือการสูญเสียที่ต่ำที่สุดที่มีฤดูกาลน้อยกว่าปี 1920 และเสมอมากกว่า 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_en": "Which Draws have Losses larger than 16, and a Season larger than 1966?",
    "question_th": "งวดใดที่มีการแพ้มากกว่า 16 ครั้งและฤดูกาลที่มากกว่าปี 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_en": "Which Draws have a Team of annandale, and Losses smaller than 13?",
    "question_th": "เสมอไหนมีทีม Annandale และแพ้น้อยกว่า 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_en": "Which Draws have Losses smaller than 16, and a Team of university, and Wins larger than 0?",
    "question_th": "งวดใดที่มีการแพ้น้อยกว่า 16 และทีมมหาวิทยาลัยและชนะมากกว่า 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_en": "Which Wins is the lowest one that has a Season smaller than 1920, and Losses smaller than 14?",
    "question_th": "ชัยชนะใดคือชัยชนะที่ต่ำที่สุดที่มีฤดูกาลน้อยกว่าปี 1920 และแพ้น้อยกว่า 14 ครั้ง?",
    "context": "CREATE TABLE table_name_99 (wins INTEGER, season VARCHAR, losses VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_70 WHERE sport = \"academics\"",
    "question_en": "Which date had a sport of Academics?",
    "question_th": "มีกีฬาวิชาการวันไหน?",
    "context": "CREATE TABLE table_name_70 (date VARCHAR, sport VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_9 WHERE site = \"n/a\"",
    "question_en": "Which date had a site of N/A?",
    "question_th": "วันที่ใดมีไซต์ N/A",
    "context": "CREATE TABLE table_name_9 (date VARCHAR, site VARCHAR)"
  },
  {
    "answer": "SELECT builder FROM table_name_22 WHERE year_built = \"1929\"",
    "question_en": "what was the builder in 1929",
    "question_th": "ผู้สร้างคืออะไรในปี 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_en": "What was the attendance for the March 6 game, where one of the teams had 53 points.",
    "question_th": "ผู้เข้าชมเกมวันที่ 6 มี.ค. โดยทีมใดทีมหนึ่งมี 53 แต้ม",
    "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_en": "For the game with 6,126 in attendance, how many points did both teams have in the standings?",
    "question_th": "ในเกมที่มีผู้ชม 6,126 คน ทั้งสองทีมมีแต้มในตารางคะแนนเท่าไร?",
    "context": "CREATE TABLE table_name_16 (points VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_18 WHERE home = \"st. louis\"",
    "question_en": "What is the record of the team with a St. Louis home?",
    "question_th": "สถิติของทีมกับเจ้าบ้านเซนต์หลุยส์เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_18 (record VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_28 WHERE territory = \"french guiana\"",
    "question_en": "What country has a territory of French Guiana?",
    "question_th": "ประเทศใดมีอาณาเขตของเฟรนช์เกียนา",
    "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_en": "Which 2008-12 has a 2013 of A, and a Tournament of wimbledon?",
    "question_th": "ฤดูกาล 2008-12 ใดมี A 2013 และทัวร์นาเมนต์วิมเบิลดัน",
    "context": "CREATE TABLE table_name_77 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2013 FROM table_name_49 WHERE 2007 = \"a\" AND tournament = \"french open\"",
    "question_en": "Which 2013 has a 2007 of A, and a Tournament of french open?",
    "question_th": "ปี 2013 ใดที่มีปี 2550 ของ A และทัวร์นาเมนต์เฟรนช์โอเพ่น?",
    "context": "CREATE TABLE table_name_49 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2013 FROM table_name_64 WHERE 2006 = \"grand slam tournaments\"",
    "question_en": "Which 2013 has a 2006 of grand slam tournaments?",
    "question_th": "ปี 2013 ใดที่มีการแข่งขันแกรนด์สแลมปี 2006",
    "context": "CREATE TABLE table_name_64 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2006 FROM table_name_98 WHERE 2007 = \"a\"",
    "question_en": "Which 2006 has a 2007 of A?",
    "question_th": "ปี 2549 ใดมีปี 2550 ของ 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_en": "Which 2008-12 has a 2007 of A, and a Tournament of us open?",
    "question_th": "ปี 2551-55 ใดที่มีปี 2550 ของ A และทัวร์นาเมนต์ของเราเปิดอยู่",
    "context": "CREATE TABLE table_name_80 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_57 WHERE date = \"april 1\"",
    "question_en": "What was the record on April 1?",
    "question_th": "บันทึกเมื่อวันที่ 1 เมษายนคืออะไร?",
    "context": "CREATE TABLE table_name_57 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_62 WHERE date = \"april 9\"",
    "question_en": "What's the score on April 9?",
    "question_th": "คะแนนวันที่ 9 เมษายนเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_62 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_71 WHERE date = \"april 3\"",
    "question_en": "Where was home on April 3?",
    "question_th": "วันที่ 3 เมษายน บ้านอยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_71 (home VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_12 WHERE date = \"april 9\"",
    "question_en": "What's the score on April 9?",
    "question_th": "คะแนนวันที่ 9 เมษายนเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_12 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT AVG(points) FROM table_name_72 WHERE played > 18",
    "question_en": "What is the average number of points of the team with more than 18 played?",
    "question_th": "จำนวนคะแนนเฉลี่ยของทีมที่เล่นมากกว่า 18 คะแนนคือเท่าไร?",
    "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_en": "What is the lowest score of the team with 19 points and less than 18 played?",
    "question_th": "คะแนนต่ำสุดของทีมที่มี 19 แต้มและเล่นน้อยกว่า 18 คือข้อใด?",
    "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_en": "What is the average number of draws of the team with less than 17 points and less than 4 wins?",
    "question_th": "ค่าเฉลี่ยเสมอของทีมที่น้อยกว่า 17 แต้มและชนะน้อยกว่า 4 คือเท่าไหร่?",
    "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_en": "What is the title of the record with an artist of Tangorodrim, category number FSR006?",
    "question_th": "ชื่อบันทึกของศิลปิน Tangorodrim หมายเลขหมวดหมู่ 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_en": "What was the format of the release by Triumfall?",
    "question_th": "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_en": "What is the category number that was released in November 2007?",
    "question_th": "หมายเลขหมวดหมู่ที่ออกในเดือนพฤศจิกายน พ.ศ. 2550 คืออะไร?",
    "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_en": "Which is the lowest round to have a pick of 12 and position of linebacker?",
    "question_th": "รอบไหนเลือกได้ 12 และตำแหน่งไลน์แบ็คเกอร์ต่ำที่สุด?",
    "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_en": "Which player was picked in round 15 with a pick smaller than 13?",
    "question_th": "ผู้เล่นคนใดที่ถูกเลือกในรอบ 15 โดยมีตัวเลือกน้อยกว่า 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_en": "How many picks were from Lamar College?",
    "question_th": "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_en": "How many overall values have a college of Notre Dame and rounds over 2?",
    "question_th": "วิทยาลัยน็อทร์-ดามมีวิทยาลัยน็อทร์-ดามทั้งหมดกี่ค่าและเกิน 2 รอบ?",
    "context": "CREATE TABLE table_name_97 (overall VARCHAR, college VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_90 WHERE venue = \"albion\"",
    "question_en": "What player was at Albion?",
    "question_th": "นักเตะคนไหนที่อัลเบียน?",
    "context": "CREATE TABLE table_name_90 (player VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_29 WHERE runs = \"274\"",
    "question_en": "Where was the venue that had 274 runs?",
    "question_th": "สถานที่จัดงานที่มีการวิ่ง 274 ครั้งอยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_29 (venue VARCHAR, runs VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_17 WHERE opponent = \"queensland\"",
    "question_en": "which athlete played against Queensland?",
    "question_th": "นักกีฬาคนไหนเล่นกับควีนส์แลนด์?",
    "context": "CREATE TABLE table_name_17 (player VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_71 WHERE runs = \"245\"",
    "question_en": "Where is the venue with more than 245 runs?",
    "question_th": "สถานที่จัดงานที่มีการวิ่งมากกว่า 245 ครั้งอยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_71 (venue VARCHAR, runs VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_22 WHERE player = \"jack badcock\"",
    "question_en": "Where did Jack Badcock play?",
    "question_th": "Jack Badcock เล่นที่ไหน?",
    "context": "CREATE TABLE table_name_22 (venue VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_73 WHERE date = \"16 november 2007\"",
    "question_en": "Which Surface has a Date of 16 november 2007?",
    "question_th": "Surface รุ่นใดมีวันที่ 16 พฤศจิกายน 2550",
    "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_en": "Name the date for 2004 afc asian cup qualifier",
    "question_th": "ตั้งชื่อวันที่สำหรับรอบคัดเลือกเอเชียนคัพ 2004",
    "context": "CREATE TABLE table_name_23 (date VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_88 WHERE date = \"23 january 2009\"",
    "question_en": "Name the venue for 23 january 2009",
    "question_th": "ตั้งชื่อสถานที่จัดงานวันที่ 23 มกราคม 2552",
    "context": "CREATE TABLE table_name_88 (venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_54 WHERE venue = \"khartoum\"",
    "question_en": "Name the competition for khartoum",
    "question_th": "ตั้งชื่อการแข่งขันคาร์ทูม",
    "context": "CREATE TABLE table_name_54 (competition VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT MIN(drawn) FROM table_name_25 WHERE games < 7",
    "question_en": "What is the fewest ties the team had with fewer than 7 games?",
    "question_th": "อะไรคือความสัมพันธ์ที่น้อยที่สุดที่ทีมมีน้อยกว่า 7 เกม?",
    "context": "CREATE TABLE table_name_25 (drawn INTEGER, games INTEGER)"
  },
  {
    "answer": "SELECT population FROM table_name_25 WHERE median_household_income = \"$69,760\"",
    "question_en": "What is the population for a county that has a median income of $69,760?",
    "question_th": "เทศมณฑลที่มีรายได้เฉลี่ย $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_en": "What county has $51,456 income per capita?",
    "question_th": "มณฑลใดมีรายได้ $51,456 ต่อหัว?",
    "context": "CREATE TABLE table_name_37 (county VARCHAR, per_capita_income VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_87 WHERE attendance = \"60,355\"",
    "question_en": "Who was the opponent when attendance was 60,355?",
    "question_th": "คู่ต่อสู้คือใครเมื่อมีผู้เข้าร่วม 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_en": "Which Net profit/loss (SEK) has a Basic eps (SEK) of -6.58, and Employees (Average/Year) larger than 31,035?",
    "question_th": "กำไร/ขาดทุนสุทธิ (SEK) ใดที่มีกำไรต่อหุ้นพื้นฐาน (SEK) ที่ -6.58 และพนักงาน (เฉลี่ย/ปี) มากกว่า 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_en": "What is the result when 13 is the week?",
    "question_th": "ผลลัพธ์เมื่อ 13 คือสัปดาห์คืออะไร?",
    "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_en": "What average week has shea stadium as the game site, and 1979-12-09 as the date?",
    "question_th": "สัปดาห์ใดโดยเฉลี่ยที่มีสนามกีฬาเชียเป็นสถานที่จัดการแข่งขัน และวันที่ 1979-12-09 เป็นวันที่?",
    "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_en": "Name the most rank for the United States with wins less than 1",
    "question_th": "ตั้งชื่ออันดับสูงสุดสำหรับสหรัฐอเมริกาโดยชนะน้อยกว่า 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_en": "Name the most rank for wins more than 0 and events of 26",
    "question_th": "ตั้งชื่ออันดับสูงสุดสำหรับการชนะมากกว่า 0 และเหตุการณ์ 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_en": "Name the average earnings for rank of 3 and wins less than 3",
    "question_th": "ตั้งชื่อรายได้เฉลี่ยสำหรับอันดับ 3 และชนะน้อยกว่า 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_en": "What is the average area of the city that has a density less than than 206.2 and an altitude of less than 85?",
    "question_th": "พื้นที่เฉลี่ยของเมืองที่มีความหนาแน่นน้อยกว่า 206.2 และระดับความสูงน้อยกว่า 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_en": "What is the lowest density of alessandria where the area is bigger than 16.02 and altitude is less than 116?",
    "question_th": "ความหนาแน่นต่ำสุดของอะเลสซานเดรียโดยมีพื้นที่มากกว่า 16.02 และระดับความสูงน้อยกว่า 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_en": "What is the lowest density of serravalle scrivia?",
    "question_th": "ความหนาแน่นต่ำสุดของ 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_en": "What is the lowest population of alessandria where the altitude is less than 197 and density is less than 461.8?",
    "question_th": "ประชากรต่ำสุดของอะเลสซานเดรียซึ่งมีความสูงน้อยกว่า 197 และความหนาแน่นน้อยกว่า 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_en": "What myspace has linkedin as the site, with an orkit greater than 3?",
    "question_th": "myspace ใดที่มีการเชื่อมโยงเป็นไซต์ โดยมี orkit มากกว่า 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_en": "How many linkedin have Facebook as the site, with a myspace less than 64?",
    "question_th": "มีลิงค์อินกี่ไซต์ที่มี Facebook เป็นไซต์ โดยมี myspace น้อยกว่า 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_en": "What is the highest Ning that has a bebo less than 4, an orkut less than 100, with a plaxo greater than 0?",
    "question_th": "หนิงที่สูงที่สุดที่มี bebo น้อยกว่า 4, orkut น้อยกว่า 100 และมี plaxo มากกว่า 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_en": "What is the average plaxo that has a myspace greater than 64, a bebo greater than 3, with 4 as the friendster?",
    "question_th": "พลัโซเฉลี่ยที่มี myspace มากกว่า 64, bebo มากกว่า 3 โดยมี 4 เป็นเพื่อนเป็นเท่าใด",
    "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_en": "What album has the title I Need A Life with the label of warp records / paper bag records?",
    "question_th": "อัลบั้มใดมีชื่อว่า I Need A Life ที่มีป้ายวาร์ปเรคคอร์ด/แผ่นเสียงถุงกระดาษ?",
    "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_en": "What title has a Label of warp records / paper bag records?",
    "question_th": "ชื่ออะไรมี 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ín de tucumán\" AND played < 38",
    "question_en": "What's the lowest Points for the Team of San Martín De Tucumán, and a Played that's smaller than 38?",
    "question_th": "อะไรคือคะแนนต่ำสุดสำหรับทีม San Martín De Tucumán และผู้เล่นที่น้อยกว่า 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_en": "What nation has a total more than 3, with more than 5 for bronze, and less than 4 for the silver?",
    "question_th": "ประเทศใดมียอดรวมมากกว่า 3 โดยที่มีมากกว่า 5 สำหรับเหรียญทองแดง และน้อยกว่า 4 สำหรับเหรียญเงิน?",
    "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_en": "What is the largest number for bronze with a rank of 19?",
    "question_th": "หมายเลขทองแดงที่ใหญ่ที่สุดในอันดับที่ 19 คือหมายเลขใด",
    "context": "CREATE TABLE table_name_61 (bronze INTEGER, rank VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_4 WHERE score = \"1:0\"",
    "question_en": "what season had a score of 1:0",
    "question_th": "ฤดูกาลไหนมีสกอร์ 1:0",
    "context": "CREATE TABLE table_name_4 (season VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_70 WHERE indoor_year = \"1978\"",
    "question_en": "indoor year is 1978, what is the record?",
    "question_th": "ปีในร่มคือปี 1978 มีสถิติอะไรบ้าง?",
    "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_en": "Record of 11-10-3 is what sum of game #?",
    "question_th": "สถิติ 11-10-3 คือผลรวมของเกม#?",
    "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_en": "Points of 31, and a Score of 1 - 5 is what home?",
    "question_th": "คะแนน 31 และคะแนน 1 - 5 คือบ้านอะไร?",
    "context": "CREATE TABLE table_name_51 (home VARCHAR, points VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_30 WHERE visitor = \"calgary\"",
    "question_en": "Visitor of calgary has what record?",
    "question_th": "ผู้มาเยือนคาลการีมีประวัติอะไรบ้าง?",
    "context": "CREATE TABLE table_name_30 (record VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_name_47 WHERE score = \"2 - 2\"",
    "question_en": "Score of 2 - 2 had what points?",
    "question_th": "คะแนน 2 - 2 ได้คะแนนเท่าไหร่?",
    "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_en": "What was the Attendance when Lincoln City was the Opponents with H/A of A?",
    "question_th": "ผู้เข้าร่วมเมื่อ Lincoln City เป็นฝ่ายตรงข้ามกับ H/A ของ 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_en": "what Area has the frequency of 100.3 and an On-air ID of yass fm?",
    "question_th": "พื้นที่ใดมีความถี่ 100.3 และ ID ออนแอร์ของ 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_en": "What is the Callsign with an Area of tamworth and frequency of 0 88.9?",
    "question_th": "Callsign ที่มีพื้นที่แทมเวิร์ธและความถี่ 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_en": "What is the Purpose of the Area Braidwood?",
    "question_th": "จุดประสงค์ของพื้นที่ 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_en": "What Band has a Frequency of 0 99.7 in the Area of Newcastle?",
    "question_th": "วงใดมีความถี่ 0 99.7 ในพื้นที่นิวคาสเซิล",
    "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_en": "What is the Frequency of Gosford when the Callsign of 2cfm?",
    "question_th": "ความถี่ของ Gosford คืออะไรเมื่อสัญญาณเรียกขานของ 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_en": "What is the On-air ID with the frequency of 105.9, and purpose of commercial?",
    "question_th": "ID ออนแอร์ที่มีความถี่ 105.9 คืออะไร และมีวัตถุประสงค์เพื่อการค้าหรือไม่?",
    "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_en": "What Time/Retired has a Points that's smaller than 11 and has a Laps of 74?",
    "question_th": "เวลาใด/เกษียณแล้วมีคะแนนที่น้อยกว่า 11 และมีรอบ 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_en": "What Time/Retired has a Laps of 86 and the Team of HVM Racing?",
    "question_th": "เวลาใด/เกษียณมีรอบ 86 และทีม 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_en": "What is the Catalog number in France?",
    "question_th": "หมายเลขแคตตาล็อกในฝรั่งเศสคืออะไร",
    "context": "CREATE TABLE table_name_19 (catalog VARCHAR, region VARCHAR)"
  },
  {
    "answer": "SELECT format FROM table_name_99 WHERE catalog = \"f4 87199\"",
    "question_en": "What is the Format o Catalog F4 87199?",
    "question_th": "รูปแบบ o แคตตาล็อก 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_en": "What is the Region of Catalog 885 973-4?",
    "question_th": "ภูมิภาคของแคตตาล็อก 885 973-4 คืออะไร",
    "context": "CREATE TABLE table_name_74 (region VARCHAR, catalog VARCHAR)"
  },
  {
    "answer": "SELECT catalog FROM table_name_42 WHERE region = \"france\"",
    "question_en": "What is the Catalog number in the Region of France?",
    "question_th": "หมายเลขแคตตาล็อกในภูมิภาคฝรั่งเศสคืออะไร?",
    "context": "CREATE TABLE table_name_42 (catalog VARCHAR, region VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(attendance) FROM table_name_37 WHERE date = \"1 november 1997\"",
    "question_en": "How many people in total attended the game on 1 november 1997?",
    "question_th": "มีผู้เข้าร่วมการแข่งขันทั้งหมดกี่คนในวันที่ 1 พฤศจิกายน พ.ศ. 2540",
    "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_en": "Wins of 3, and a Pos. larger than 3 is what average loses?",
    "question_th": "ชนะ 3 และอันดับ มากกว่า 3 คือเท่าใดค่าเฉลี่ยที่สูญเสีย?",
    "context": "CREATE TABLE table_name_75 (loses INTEGER, wins VARCHAR, pos VARCHAR)"
  },
  {
    "answer": "SELECT SUM(pos) FROM table_name_67 WHERE matches > 5",
    "question_en": "Matches larger than 5 is the sum of what position?",
    "question_th": "แมตช์ที่มากกว่า 5 คือผลรวมของตำแหน่งใด",
    "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_en": "What years did Dwane Morrison had a pct less than 0.389 and losses less than 12?",
    "question_th": "Dwane Morrison มีเปอร์เซ็นต์น้อยกว่า 0.389 และขาดทุนน้อยกว่า 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_en": "How many seasons did Charles C. Farrell coach?",
    "question_th": "Charles C. Farrell เป็นโค้ชกี่ฤดูกาล",
    "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_en": "What's the average pct for George Felton when he had losses greater than 7?",
    "question_th": "เปอร์เซ็นต์เฉลี่ยของ George Felton เมื่อเขาขาดทุนมากกว่า 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é maria cañizares\"",
    "question_en": "Which Margin of victory has a Runner(s)-up of josé maria cañizares?",
    "question_th": "Margin of Victory ใดที่มี José maria cañizares รองชนะเลิศ?",
    "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_en": "Which Tournament has a Runner(s)-up of bob charles?",
    "question_th": "ทัวร์นาเมนต์ใดที่มีรองชนะเลิศจาก 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_en": "What was the winning score on 7 jun 1976?",
    "question_th": "คะแนนชนะเมื่อวันที่ 7 มิ.ย. 2519 เป็นเท่าไหร่?",
    "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_en": "Which Winning score has a Margin of victory of 1 stroke, and a Date of 21 jun 1981?",
    "question_th": "คะแนนชนะใดมี Margin ของชัยชนะ 1 จังหวะ และวันที่ 21 มิถุนายน 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 = –5(70 - 65 - 69 - 75 = 279)",
    "question_en": "On which date was the Winning score –5 (70-65-69-75=279)?",
    "question_th": "คะแนนชนะ –5 (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 = –9(71 - 68 - 72 - 68 = 279)",
    "question_en": "Which Runner(s)-up has a Winning score of –9 (71-68-72-68=279)?",
    "question_th": "รองชนะเลิศคนใดมีคะแนนชนะ –9 (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_en": "What is the leading scorer of the game with an attendance of 14,096?",
    "question_th": "ผู้ทำประตูสูงสุดของเกมด้วยจำนวนผู้เข้าร่วม 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_en": "What is the leading scorer of the game with the Celtics as the visiting team?",
    "question_th": "ใครคือผู้ทำประตูสูงสุดในเกมโดยมีเซลติกส์เป็นทีมเยือน?",
    "context": "CREATE TABLE table_name_59 (leading_scorer VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_7 WHERE attendance = \"19,183\"",
    "question_en": "What is the date of the game with an attendance of 19,183?",
    "question_th": "มีผู้เข้าร่วมแข่งขัน 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_en": "Name the time with track number less than 4 for you're my everything",
    "question_th": "ตั้งชื่อเวลาด้วยหมายเลขเพลงน้อยกว่า 4 เพื่อ 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_en": "Name the orchestra for ted varnick",
    "question_th": "ตั้งชื่อวงออเคสตราให้เท็ด วาร์นิค",
    "context": "CREATE TABLE table_name_41 (orchestra VARCHAR, songwriter_s_ VARCHAR)"
  },
  {
    "answer": "SELECT songwriter_s_ FROM table_name_60 WHERE track_number = 12",
    "question_en": "Name the songwriter for track number 12",
    "question_th": "ตั้งชื่อผู้แต่งเพลงหมายเลข 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_en": "Player of dan federman, and a Pick larger than 114 involves which highest round?",
    "question_th": "ผู้เล่นของ Dan Federman และตัวเลือกที่มากกว่า 114 เกี่ยวข้องกับรอบสูงสุดใด",
    "context": "CREATE TABLE table_name_59 (round INTEGER, player VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_65 WHERE college = \"villanova\"",
    "question_en": "College of villanova has what round?",
    "question_th": "วิทยาลัยวิลลาโนวามีรอบอะไร?",
    "context": "CREATE TABLE table_name_65 (round VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT pick FROM table_name_61 WHERE college = \"boston college\"",
    "question_en": "College of boston college has what pick?",
    "question_th": "วิทยาลัยบอสตันมีทางเลือกอะไร?",
    "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_en": "How many finalists were there when the years won was 2008 and the won % was greater than 33?",
    "question_th": "มีผู้เข้ารอบสุดท้ายกี่คนในปีที่ชนะคือปี 2008 และ % ที่ชนะมากกว่า 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_en": "Where was the game site for the game that had a packers record of 2-2?",
    "question_th": "เว็บไซต์เกมสำหรับเกมที่มีสถิติแพ็คเกอร์ส 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_en": "What is the final score of the game that was at raymond james stadium?",
    "question_th": "สกอร์สุดท้ายของเกมที่เรย์มอนด์ เจมส์ สเตเดี้ยมเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_42 (final_score VARCHAR, game_site VARCHAR)"
  },
  {
    "answer": "SELECT match_report FROM table_name_12 WHERE opponent = \"houston\"",
    "question_en": "What is the match report for the game that was against Houston?",
    "question_th": "รายงานการแข่งขันของเกมที่พบกับฮูสตันเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_12 (match_report VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT game_site FROM table_name_29 WHERE record = \"2-3\"",
    "question_en": "Where is the game site for the game that had a packers record of 2-3?",
    "question_th": "เว็บไซต์เกมสำหรับเกมที่มีสถิติแพ็คเกอร์ส 2-3 อยู่ที่ไหน",
    "context": "CREATE TABLE table_name_29 (game_site VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_10 WHERE score = \"118–105\"",
    "question_en": "What was the Record of the game with a Score of 118–105?",
    "question_th": "บันทึกของเกมด้วยคะแนน 118–105 คืออะไร?",
    "context": "CREATE TABLE table_name_10 (record VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_85 WHERE score = \"107–108\"",
    "question_en": "What is the Record of the game with a Score of 107–108?",
    "question_th": "บันทึกของเกมด้วยคะแนน 107–108 คืออะไร?",
    "context": "CREATE TABLE table_name_85 (record VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_16 WHERE score = \"113–103\"",
    "question_en": "What was the Record during the game with a Score of 113–103?",
    "question_th": "อะไรคือสถิติระหว่างเกมด้วยคะแนน 113–103?",
    "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_en": "How many points have a percentage of possible points of 67.22%?",
    "question_th": "มีกี่คะแนนที่มีเปอร์เซ็นต์ของคะแนนที่เป็นไปได้ 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_en": "Which races have points greater than 123, fernando alonso as the driver and a percentage of possible points of 74.44%?",
    "question_th": "เผ่าพันธุ์ใดมีคะแนนมากกว่า 123 เฟอร์นันโด อลอนโซ เป็นนักแข่ง และเปอร์เซ็นต์ของคะแนนที่เป็นไปได้คือ 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_en": "How many seasons have fernando alonso as the driver, and a percentage of possible points of 64.12% and points less than 109?",
    "question_th": "มีกี่ฤดูกาลที่มีเฟอร์นันโด อลอนโซ เป็นนักขับ และมีเปอร์เซ็นต์ของคะแนนที่เป็นไปได้ที่ 64.12% และคะแนนน้อยกว่า 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_en": "Who remixed the version after 1999?",
    "question_th": "ใครรีมิกซ์เวอร์ชันหลังปี 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_en": "Who remixed the version with a length of 3:58?",
    "question_th": "ใครรีมิกซ์เวอร์ชันที่มีความยาว 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_en": "Which album is the royal g's club mix version, which is remixed by royal garden sound, from?",
    "question_th": "อัลบั้มใดเป็นเวอร์ชันมิกซ์ของ Royal G's Club ที่รีมิกซ์ด้วยเสียง Royal Garden?",
    "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–1\"",
    "question_en": "How many were in attendance in a week less than 4 with a record of 2–1?",
    "question_th": "มีผู้เข้าร่วมประชุมกี่คนในหนึ่งสัปดาห์ซึ่งน้อยกว่า 4 คน โดยมีสถิติ 2–1 คน",
    "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_en": "How many were in attendance at Griffith Stadium with Philadelphia Eagles as an opponent?",
    "question_th": "มีผู้เข้าร่วมที่สนามกริฟฟิธ สเตเดียม โดยมีฟิลาเดลเฟีย อีเกิลส์เป็นคู่ต่อสู้กี่คน?",
    "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_en": "In what week was the attendance 25,000?",
    "question_th": "มีผู้เข้าร่วม 25,000 คนในสัปดาห์ใด?",
    "context": "CREATE TABLE table_name_92 (week VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT game_site FROM table_name_27 WHERE result = \"l 21–13\"",
    "question_en": "What game site had a result at l 21–13?",
    "question_th": "เว็บไซต์เกมใดมีผลการแข่งขันที่ l 21–13?",
    "context": "CREATE TABLE table_name_27 (game_site VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_18 WHERE record = \"34-19-6\"",
    "question_en": "What score has 34-19-6 as the record?",
    "question_th": "มีสกอร์ 34-19-6 เป็นสถิติไหน?",
    "context": "CREATE TABLE table_name_18 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT AVG(february) FROM table_name_77 WHERE game = 56",
    "question_en": "What is the average February that has 56 as the game?",
    "question_th": "ค่าเฉลี่ยเดือนกุมภาพันธ์ที่มี 56 เป็นเกมคือเท่าไร?",
    "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_en": "What is the sum of team impul with the date of 8 july",
    "question_th": "ผลรวมแรงกระตุ้นของทีมกับวันที่ 8 ก.ค. คือเท่าไร",
    "context": "CREATE TABLE table_name_64 (round INTEGER, team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT pole_position FROM table_name_4 WHERE round = 9",
    "question_en": "what is the pole position of Round 9",
    "question_th": "ตำแหน่งโพลโพสิชันของรอบ 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_en": "what is the lowest round pole position of satoshi motoyama",
    "question_th": "ตำแหน่งเสากลมต่ำสุดของ 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_en": "What was the home team with the away team of rushden & diamonds?",
    "question_th": "เจ้าบ้าน กับ ทีมเยือน รัชเดน แอนด์ ไดมอนด์ เป็นยังไงบ้าง?",
    "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_en": "For the attendance of 2 january 1999 with a home team of plymouth argyle what is the tie no. ?",
    "question_th": "สำหรับการพบกันวันที่ 2 มกราคม 1999 กับเจ้าบ้าน พลีมัธ อาร์ไกล์ เสมอกันที่เท่าไร -",
    "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_en": "Which Lost has a Drawn larger than 1, and Games smaller than 7?",
    "question_th": "ผู้แพ้คนไหนที่มีการเสมอมากกว่า 1 และเกมที่น้อยกว่า 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_en": "Which Drawn has Games smaller than 7?",
    "question_th": "Drawn ตัวไหนมีเกมที่เล็กกว่า 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_en": "How many Games have a Drawn smaller than 1, and a Lost larger than 4?",
    "question_th": "มีกี่เกมที่มีการเสมอน้อยกว่า 1 และแพ้มากกว่า 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_en": "what is the winning driver in taunus",
    "question_th": "ไดรเวอร์ที่ชนะในเทานัสคืออะไร",
    "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_en": "Which Record has a Home of Montreal Canadiens and a Date of April 22?",
    "question_th": "บันทึกใดมีบ้านของชาวแคนาดามอนทรีออลและมีวันที่ 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_en": "What Score has a Home of Montreal Canadiens and a Date of April 22?",
    "question_th": "บ้านของชาวมอนทรีออลชาวแคนาดามีคะแนนเท่าใดและมีวันที่ 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_en": "What is the lowest number of bronze medals received by a nation with fewer than 0 gold medals?",
    "question_th": "ประเทศที่ได้เหรียญทองน้อยกว่า 0 เหรียญได้รับเหรียญทองแดงน้อยที่สุดคือเท่าใด",
    "context": "CREATE TABLE table_name_68 (bronze INTEGER, gold INTEGER)"
  },
  {
    "answer": "SELECT MIN(silver) FROM table_name_1 WHERE total < 1",
    "question_en": "What is the lowest number of silver medals for a nation with fewer than 1 total medals?",
    "question_th": "จำนวนเหรียญเงินต่ำสุดของประเทศที่มีเหรียญทั้งหมดน้อยกว่า 1 เหรียญคือเท่าใด",
    "context": "CREATE TABLE table_name_1 (silver INTEGER, total INTEGER)"
  },
  {
    "answer": "SELECT rank FROM table_name_94 WHERE total > 17 AND silver < 13",
    "question_en": "Which Rank has a Total larger than 17, and a Silver smaller than 13?",
    "question_th": "อันดับใดมีคะแนนรวมมากกว่า 17 และเงินน้อยกว่า 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_en": "Which Total is the highest one that has a Gold of 1, and a Nation of czechoslovakia?",
    "question_th": "คะแนนรวมใดคือคะแนนสูงสุดที่มีเหรียญทอง 1 และชาติเชโกสโลวาเกีย",
    "context": "CREATE TABLE table_name_29 (total INTEGER, gold VARCHAR, nation VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(total) FROM table_name_38 WHERE silver < 0",
    "question_en": "How much Total has a Silver smaller than 0?",
    "question_th": "เงินทั้งหมดมีน้อยกว่า 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_en": "Which Total has a Rank of 4, and a Silver smaller than 4?",
    "question_th": "คะแนนรวมใดมีอันดับ 4 และเงินน้อยกว่า 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_en": "Which Silver is the lowest one that has a Bronze smaller than 1, and a Gold larger than 0?",
    "question_th": "เงินใดมีค่าต่ำสุดที่มีทองแดงน้อยกว่า 1 และทองมีค่ามากกว่า 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_en": "WHich Year has a Music director(s) of anu malik?",
    "question_th": "ปีไหนมีผู้กำกับเพลงของอนุมาลิก?",
    "context": "CREATE TABLE table_name_5 (year INTEGER, music_director_s_ VARCHAR)"
  },
  {
    "answer": "SELECT MAX(year) FROM table_name_32 WHERE film = \"baazigar\"",
    "question_en": "Which Year has a Film of baazigar?",
    "question_th": "ปีไหนมีหนังเรื่องบาซิการ์?",
    "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_en": "Which Opponent has a Streak of lost 1, and a Date of april 30?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีแต้มต่อ 1 และวันที่ 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_en": "What is the number of sequences for the name Alifoldz?",
    "question_th": "จำนวนลำดับของชื่อ 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_en": "What is the alignment that predicts an alignment of the linuxbinary link?",
    "question_th": "การจัดตำแหน่งที่ทำนายการจัดตำแหน่งของลิงค์ linuxbinary คืออะไร?",
    "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_en": "Which Playoffs have a Year smaller than 2012, and an Open Cup of did not enter?",
    "question_th": "รอบตัดเชือกใดที่มีหนึ่งปีน้อยกว่าปี 2012 และ Open Cup ของไม่ได้เข้าร่วม?",
    "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_en": "Which Year is the lowest one that has a Regular Season of 5th, atlantic, and a Division larger than 4?",
    "question_th": "ปีใดเป็นปีต่ำสุดที่มีฤดูกาลปกติที่ 5 แอตแลนติก และมีดิวิชั่นมากกว่า 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_en": "Which Year has Playoffs which did not qualify?",
    "question_th": "ปีใดมีรอบตัดเชือกที่ไม่ผ่านเข้ารอบ?",
    "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_en": "Can you tell me the Gold that has the Silver of south korea, and the Year of 1986?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าทองคำที่มีเงินของเกาหลีใต้และปี 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_en": "When was Lee Phillips the director?",
    "question_th": "Lee Phillips เป็นผู้กำกับเมื่อไหร่?",
    "context": "CREATE TABLE table_name_35 (year VARCHAR, director VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_97 WHERE director = \"paul schneider\"",
    "question_en": "What is the movie that Paul Schneider directed?",
    "question_th": "ภาพยนตร์ที่พอล ชไนเดอร์กำกับคือเรื่องใด",
    "context": "CREATE TABLE table_name_97 (title VARCHAR, director VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_18 WHERE box_office = \"$961,147\"",
    "question_en": "The box office was $961,147 in what year?",
    "question_th": "บ็อกซ์ออฟฟิศอยู่ที่ 961,147 ดอลลาร์ในปีใด",
    "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_en": "Three Men and a Little Lady from Touchstone Pictures was from what year?",
    "question_th": "Three Men and a Little Lady จาก Touchstone Pictures มาจากปีไหน?",
    "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_en": "What is the name of the movie from 1997 distributed from HBO Pictures?",
    "question_th": "ภาพยนตร์จากปี 1997 ที่จัดจำหน่ายโดย 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_en": "What movie earned $1,659,542 at the box office?",
    "question_th": "ภาพยนตร์เรื่องใดที่ทำรายได้ 1,659,542 ดอลลาร์ในบ็อกซ์ออฟฟิศ?",
    "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_en": "Which accession number has a protein name of ccdc165, and a divergence from human lineage (MYA) smaller than 296?",
    "question_th": "หมายเลขภาคยานุวัติใดมีชื่อโปรตีน ccdc165 และความแตกต่างจากเชื้อสายมนุษย์ (MYA) น้อยกว่า 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_en": "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?",
    "question_th": "ความเป็นเอกลักษณ์ของลำดับของโปรตีนของมนุษย์มีความแตกต่างจากเชื้อสายของมนุษย์ (MYA) มากกว่า 8.8 และความยาวของลำดับ (aa) มากกว่า 1587 และชื่อโปรตีนของ 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_en": "What's the record of the team who played the Cleveland Browns?",
    "question_th": "ประวัติของทีมที่เล่นคลีฟแลนด์ บราวน์สเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_56 (record VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_name_17 WHERE position = \"pr\"",
    "question_en": "What is the hometown of the player who plays pr?",
    "question_th": "บ้านเกิดของผู้เล่นที่เล่น 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_en": "Which college's overall number is more than 158 when Travian Robertson is the name?",
    "question_th": "เลขรวมของวิทยาลัยใดมากกว่า 158 ในชื่อ Travian Robertson?",
    "context": "CREATE TABLE table_name_87 (college VARCHAR, overall VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_40 WHERE name = \"jonathan massaquoi\"",
    "question_en": "Which round's name is Jonathan Massaquoi?",
    "question_th": "โจนาธาน แมสซาควอย รอบไหนชื่อ?",
    "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_en": "What is the mean round number for center position when the pick number is less than 23?",
    "question_th": "หมายเลขกลมเฉลี่ยสำหรับตำแหน่งกึ่งกลางเมื่อหมายเลขเลือกน้อยกว่า 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_en": "Which Altitude (mslm) has a Density (inhabitants/km 2) smaller than 1233, and a Rank of 9th?",
    "question_th": "ระดับความสูงใด (mslm) มีความหนาแน่น (ประชากร/กม. 2) น้อยกว่า 1233 และอยู่ในอันดับที่ 9",
    "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_en": "Which Altitude (mslm) has a Density (inhabitants/km 2) smaller than 1467.5, and a Common of moncalieri?",
    "question_th": "ระดับความสูงใด (mslm) มีความหนาแน่น (ประชากร/กม. 2) น้อยกว่า 1,467.5 และค่า 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_en": "How much Area (km 2) has a Common of collegno, and a Population smaller than 50137?",
    "question_th": "เท่าใดพื้นที่ (กม. 2) มีจำนวนร่วมกันของ collegno และมีประชากรน้อยกว่า 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_en": "How many people have an Altitude (mslm) larger than 302, and an Area (km 2) of 29.2?",
    "question_th": "มีกี่คนที่มีระดับความสูง (mslm) มากกว่า 302 และพื้นที่ (กม. 2) เท่ากับ 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_en": "Which Population is the highest one that has an Altitude (mslm) smaller than 229, and an Area (km 2) larger than 32.7?",
    "question_th": "ประชากรใดมีจำนวนสูงสุดที่มีระดับความสูง (mslm) น้อยกว่า 229 และพื้นที่ (กม. 2) ใหญ่กว่า 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_en": "what builder launched 20 jun 1953?",
    "question_th": "ผู้สร้างรายใดเปิดตัวเมื่อวันที่ 20 มิถุนายน พ.ศ. 2496",
    "context": "CREATE TABLE table_name_75 (builder VARCHAR, launched VARCHAR)"
  },
  {
    "answer": "SELECT commissioned FROM table_name_8 WHERE laid_down = \"17 dec 1951\"",
    "question_en": "what is the commissioned date with laid down of 17 dec 1951?",
    "question_th": "วันที่รับหน้าที่ซึ่งวางลงวันที่ 17 ธันวาคม 1951 คือเมื่อใด",
    "context": "CREATE TABLE table_name_8 (commissioned VARCHAR, laid_down VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_51 WHERE player = \"matt brait\"",
    "question_en": "What round was matt brait?",
    "question_th": "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_en": "Which player is in position center for round 2?",
    "question_th": "ผู้เล่นคนไหนอยู่ในตำแหน่งเซ็นเตอร์รอบ 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_en": "What position is Sweden in round 2?",
    "question_th": "สวีเดนอยู่ตำแหน่งไหนในรอบ 2?",
    "context": "CREATE TABLE table_name_55 (position VARCHAR, nationality VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT height FROM table_name_80 WHERE number = 52",
    "question_en": "What is the height of number 52?",
    "question_th": "ตัวเลข 52 สูงเท่าไร?",
    "context": "CREATE TABLE table_name_80 (height VARCHAR, number VARCHAR)"
  },
  {
    "answer": "SELECT number FROM table_name_22 WHERE name = \"tony dixon\"",
    "question_en": "What number is Tony Dixon?",
    "question_th": "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_en": "What is the average Draw for the artist(s), whose language is Swedish, and scored less than 10 points?",
    "question_th": "ค่าเฉลี่ยของการจับรางวัลสำหรับศิลปินที่มีภาษาสวีเดนและได้คะแนนน้อยกว่า 10 คะแนนคือเท่าใด",
    "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_en": "Which Economic Class has a Barangay of imelda bliss village?",
    "question_th": "ชั้นประหยัดใดมี Barangay ของหมู่บ้าน imelda bliss?",
    "context": "CREATE TABLE table_name_77 (economic_class VARCHAR, barangay VARCHAR)"
  },
  {
    "answer": "SELECT 1997 FROM table_name_23 WHERE 1999 = \"grand slams\"",
    "question_en": "What 1997 has grand slams for the 1999?",
    "question_th": "ปี 1997 อะไรมีแกรนด์สแลมในปี 1999?",
    "context": "CREATE TABLE table_name_23 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1992 FROM table_name_50 WHERE 1995 = \"atp masters series\"",
    "question_en": "What 1992 has atp masters series for the 1995?",
    "question_th": "ปี 1992 มีซีรีส์ atp masters สำหรับปี 1995 อะไรบ้าง?",
    "context": "CREATE TABLE table_name_50 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1995 FROM table_name_48 WHERE 1999 = \"1r\" AND 1998 = \"4r\"",
    "question_en": "What 1995 has 1r as the 1999, and a 1998 of 4r?",
    "question_th": "ปี 1995 อะไรที่มี 1r เป็นปี 1999 และปี 1998 เป็น 4r",
    "context": "CREATE TABLE table_name_48 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1998 FROM table_name_46 WHERE 1993 = \"2r\" AND 1990 = \"1r\"",
    "question_en": "What 1998 has 2r as a 1993, and 1r as a 1990?",
    "question_th": "ปี 1998 อะไรที่มี 2r เป็นปี 1993 และ 1r เป็นปี 1990",
    "context": "CREATE TABLE table_name_46 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1997 FROM table_name_6 WHERE 1994 = \"qf\" AND 1999 = \"1r\"",
    "question_en": "What 1997, has qf as a 1994, and 1r as a 1999?",
    "question_th": "อะไรคือปี 1997 มี qf เป็นปี 1994 และ 1r เป็นปี 1999",
    "context": "CREATE TABLE table_name_6 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1993 FROM table_name_18 WHERE 1994 = \"2r\" AND 1995 = \"1r\"",
    "question_en": "What 1993 has 2r as a 1994, and 1r as a 1995?",
    "question_th": "ปี 1993 อะไรที่มี 2r เป็นปี 1994 และ 1r เป็นปี 1995",
    "context": "CREATE TABLE table_name_18 (Id VARCHAR)"
  },
  {
    "answer": "SELECT driver_s_ FROM table_name_26 WHERE sponsor_s_ = \"pdvsa\"",
    "question_en": "Which Driver has a Sponsor of pdvsa?",
    "question_th": "ไดร์เวอร์คนไหนมีสปอนเซอร์ของ 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ðmundsson\"",
    "question_en": "What are the colours of the team with benedikt guðmundsson as head coach?",
    "question_th": "ทีมสีอะไรที่มีเบเนดิกต์ กุดมุนด์สสันเป็นเฮดโค้ช?",
    "context": "CREATE TABLE table_name_26 (colours VARCHAR, head_coach VARCHAR)"
  },
  {
    "answer": "SELECT city, _region FROM table_name_35 WHERE arena = \"dalhús\"",
    "question_en": "What is the city and region of the team in the dalhús arena?",
    "question_th": "เมืองและภูมิภาคของทีมในสนามดาลฮูสคือเมืองอะไร?",
    "context": "CREATE TABLE table_name_35 (city VARCHAR, _region VARCHAR, arena VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_42 WHERE arena = \"toyota höllin\"",
    "question_en": "What team is in the toyota höllin arena?",
    "question_th": "ทีมใดอยู่ในสนามโตโยต้า เฮลลิน?",
    "context": "CREATE TABLE table_name_42 (team VARCHAR, arena VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_5 WHERE arena = \"dhl-höllin\"",
    "question_en": "What team is in the dhl-höllin arena?",
    "question_th": "ทีมใดอยู่ในเวทีดีเอชแอล-โฮลลิน?",
    "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_en": "What is the number of points for the team with 49 tries against and 14 lost?",
    "question_th": "จำนวนแต้มของทีมที่พยายามเจอ 49 ครั้งและแพ้ 14 ครั้งคือเท่าไร?",
    "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_en": "What is the losing bonus for the team that has 33 tries against and 5 lost?",
    "question_th": "โบนัสการแพ้สำหรับทีมที่มีการลองเล่น 33 ครั้งและแพ้ 5 ครั้งคืออะไร?",
    "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_en": "What is the tries against for the team that has a losing bonus?",
    "question_th": "อะไรคือความพยายามของทีมที่เสียโบนัส?",
    "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_en": "What is the number of tries for the team that has 22 plays with 33 tries against and 60 points?",
    "question_th": "จำนวนครั้งในการลองของทีมที่เล่นได้ 22 ครั้ง โดยลองเล่น 33 ครั้ง และได้ 60 แต้มเป็นเท่าใด",
    "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_en": "What is the losing bonus of the team with 22 pays and 428 points against?",
    "question_th": "โบนัสที่แพ้ของทีมด้วยการจ่าย 22 แต้มและ 428 แต้มต่อคืออะไร?",
    "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_en": "Name the years for spain with 215 goals",
    "question_th": "ตั้งชื่อปีของประเทศสเปนด้วย 215 ประตู",
    "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_en": "Name the most goals for josep samitier",
    "question_th": "ทายผลประตูสูงสุดของ โจเซป ซามิเทียร์",
    "context": "CREATE TABLE table_name_8 (goals INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_58 WHERE december < 22 AND score = \"4–3\"",
    "question_en": "Which Record has a December smaller than 22 and a Score of 4–3?",
    "question_th": "บันทึกใดที่มีเดือนธันวาคมน้อยกว่า 22 และคะแนน 4–3",
    "context": "CREATE TABLE table_name_58 (record VARCHAR, december VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_28 WHERE record = \"15–12–2\"",
    "question_en": "Which Score has a Record of 15–12–2?",
    "question_th": "คะแนนใดมีสถิติ 15–12–2",
    "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_en": "Which December has a Game of 37 and Points smaller than 47?",
    "question_th": "เดือนธันวาคมใดที่มีเกม 37 และแต้มน้อยกว่า 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–1 ot\" AND game < 28",
    "question_en": "Which Points have a December smaller than 6, and a Score of 1–1 ot, and a Game smaller than 28?",
    "question_th": "คะแนนใดที่มีเดือนธันวาคมน้อยกว่า 6 และคะแนน 1–1 ot และเกมน้อยกว่า 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–0\" AND points = 44",
    "question_en": "Which Game has a Score of 4–0 and Points of 44?",
    "question_th": "เกมใดมีคะแนน 4–0 และคะแนน 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_en": "Which Previous conference has a Year joined smaller than 1976, and an IHSAA Class of A?",
    "question_th": "การประชุมครั้งก่อนครั้งใดที่มี a Year เข้าร่วมน้อยกว่าปี 1976 และ 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_en": "Which Enrollment has a Mascot of norsemen?",
    "question_th": "การลงทะเบียนใดมีมาสคอตของนอรมอน?",
    "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_en": "Which Mascot has a Previous conference of independents, and a Location of akron?",
    "question_th": "มาสคอตตัวใดที่มีการประชุมอิสระก่อนหน้านี้ และที่ตั้งของแอครอน",
    "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_en": "Which IHSAA Class has a Mascot of wildcats?",
    "question_th": "IHSAA Class ใดที่มีตัวนำโชคเป็นรูปแมวป่า",
    "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_en": "Which School in Wabash has a Mascot of knights?",
    "question_th": "โรงเรียนใดในวอแบชมีตัวนำโชคของอัศวิน?",
    "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_en": "Which Win percentage has a Name of red kelly?",
    "question_th": "เปอร์เซ็นต์การชนะใดที่มีชื่อเรดเคลลี่?",
    "context": "CREATE TABLE table_name_55 (win_percentage INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_53 WHERE games = 105",
    "question_en": "Which Name has Games of 105?",
    "question_th": "ชื่อใดมีเกม 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–220–40\"",
    "question_en": "Which Win percentage has Points smaller than 472, and a Record (W–L–T/OTL) of 140–220–40?",
    "question_th": "เปอร์เซ็นต์การชนะใดที่มีคะแนนน้อยกว่า 472 และบันทึก (W–L–T/OTL) ที่ 140–220–40?",
    "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_en": "Which round has an H/A of A with Notts County as opponents?",
    "question_th": "รอบใดมี H/A ของ A โดยมีน็อตต์สเคาน์ตี้เป็นคู่ต่อสู้?",
    "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_en": "What was the Premiership Years that had in the Competition of 1983-1992?",
    "question_th": "ปีพรีเมียร์ชิพที่มีในการแข่งขันปี 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_en": "What was the Years in competition that had a Premiership of 1982, 1984, 1999, 2002-03, 2008-09-10?",
    "question_th": "ปีในการแข่งขันที่มีพรีเมียร์ชิพคือ 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_en": "What is the Nickname in the Competition of 1982-1994?",
    "question_th": "ชื่อเล่นในการแข่งขันปี 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_en": "What was the Nickname that had a No. 0, and Years in Competition of 1982-2003?",
    "question_th": "ชื่อเล่นที่มีหมายเลข 0 และปีในการแข่งขันปี 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–1 ot\"",
    "question_en": "Which highest Points has a Score of 1–1 ot?",
    "question_th": "คะแนนสูงสุดใดมีคะแนน 1–1 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_en": "Which College/Junior/Club team has a Round of 6?",
    "question_th": "ทีมวิทยาลัย/จูเนียร์/คลับใดมีรอบ 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_en": "What was the record on April 16?",
    "question_th": "บันทึกเมื่อวันที่ 16 เมษายนคืออะไร?",
    "context": "CREATE TABLE table_name_41 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_53 WHERE date = \"april 8\"",
    "question_en": "What was the record on April 8?",
    "question_th": "บันทึกเมื่อวันที่ 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_en": "What date was the visitor chicago black hawks, and a Record of 1-1?",
    "question_th": "ผู้เยี่ยมชมชิคาโกแบล็กฮอว์กส์คือวันที่ใดและบันทึก 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_en": "Studio host of jimmy myers had what play by play?",
    "question_th": "พิธีกรในสตูดิโอของจิมมี่ ไมเยอร์มีอะไรเล่นบ้าง?",
    "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_en": "Play-by-play of sean grande, and a Year of 2004-05 had what studio host?",
    "question_th": "การเล่นทีละเกมของฌอน แกรนด์ และปี 2547-2548 มีสตูดิโอคนไหนเป็นพิธีกร?",
    "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_en": "Year of 2006-07 had what studio host?",
    "question_th": "ปี 2549-50 มีสตูดิโอคนไหนเป็นพิธีกร?",
    "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_en": "Play-by-play of sean grande, and a Flagship Station of wrko, and a Year of 2005-06 had what studio host?",
    "question_th": "การเล่นทีละเกมของ Sean Grande และ Flagship Station ของ Wrko และปี 2548-2549 มีสตูดิโอคนไหนเป็นพิธีกร?",
    "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_en": "Studio host of john ryder, and a Year of 2007-08 had what play by play?",
    "question_th": "พิธีกรในสตูดิโอของจอห์น ไรเดอร์ และปี 2550-51 มีบทบาทอะไรบ้าง?",
    "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_en": "Play-by-play of sean grande, and a Flagship Station of wrko involved what color commentator?",
    "question_th": "การเล่นทีละเกมของ Sean Grande และ Flagship Station ของ Wrko เกี่ยวข้องกับผู้วิจารณ์สีอะไร",
    "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_en": "What was the value in 2011 for United States?",
    "question_th": "มูลค่าในปี 2554 สำหรับประเทศสหรัฐอเมริกาเป็นเท่าใด",
    "context": "CREATE TABLE table_name_95 (country VARCHAR)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_45 WHERE 2009 = \"82,003\"",
    "question_en": "What was the value in 2011 when value in 2009 was 82,003?",
    "question_th": "มูลค่าในปี 2554 เป็นเท่าใดเมื่อมูลค่าในปี 2552 เท่ากับ 82,003",
    "context": "CREATE TABLE table_name_45 (Id VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_68 WHERE rank = \"1\"",
    "question_en": "What country was rank 1?",
    "question_th": "ประเทศใดได้อันดับที่ 1?",
    "context": "CREATE TABLE table_name_68 (country VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_43 WHERE rank = \"4\"",
    "question_en": "What country was rank 4?",
    "question_th": "ประเทศอะไรอยู่อันดับที่ 4?",
    "context": "CREATE TABLE table_name_43 (country VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_name_79 WHERE games_started = \"4\"",
    "question_en": "Games started of 4 is in what hometown?",
    "question_th": "เกมเริ่ม 4 อยู่บ้านเกิดอะไร?",
    "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_en": "Weight larger than 180, and a Player of charles b. carter is what previous experience?",
    "question_th": "น้ำหนักมากกว่า 180 และผู้เล่นของชาร์ลส์บี คาร์เตอร์เป็นประสบการณ์อะไรก่อนหน้านี้?",
    "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_en": "Player of herbert s. graver has what position?",
    "question_th": "ผู้เล่นของเฮอร์เบิร์ต เอส. กราเวอร์มีตำแหน่งอะไร?",
    "context": "CREATE TABLE table_name_24 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(weight) FROM table_name_33 WHERE position = \"fullback\"",
    "question_en": "Position of fullback has what highest weight?",
    "question_th": "ตำแหน่งฟูลแบ็คมีน้ำหนักตัวใดมากที่สุด?",
    "context": "CREATE TABLE table_name_33 (weight INTEGER, position VARCHAR)"
  },
  {
    "answer": "SELECT callsign FROM table_name_9 WHERE on_air_id = \"7bu\"",
    "question_en": "what is the callsign whtat uses 7bu?",
    "question_th": "Callsign คืออะไรที่ใช้ 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_en": "What is the highest rank for ben crenshaw after winning more than 14 times?",
    "question_th": "เบ็น เครนชอว์ มีอันดับสูงสุดหลังจากชนะมากกว่า 14 ครั้งคืออะไร?",
    "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_en": "What is the lowest number of wins for ben crenshaw?",
    "question_th": "Ben Crenshaw ชนะได้น้อยที่สุดคือเท่าไร?",
    "context": "CREATE TABLE table_name_87 (wins INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_83 WHERE wins = 14",
    "question_en": "What player has 14 wins?",
    "question_th": "ผู้เล่นคนไหนชนะ 14 ครั้ง?",
    "context": "CREATE TABLE table_name_83 (player VARCHAR, wins VARCHAR)"
  },
  {
    "answer": "SELECT 1995 FROM table_name_15 WHERE 1993 = \"atp masters series\"",
    "question_en": "What is the 1995 value with of the 1993 ATP Masters Series?",
    "question_th": "มูลค่าปี 1995 ของ ATP Masters Series ปี 1993 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_15 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1993 FROM table_name_49 WHERE 1997 = \"grand slams\"",
    "question_en": "What is the 1993 value of the 1997 Grand Slams?",
    "question_th": "มูลค่าของแกรนด์สแลมปี 1993 ปี 1997 เป็นเท่าใด",
    "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_en": "What is the 1998 value with A in 1995, A in 1993, and 1r in 1996?",
    "question_th": "ค่าปี 1998 โดยมี A ในปี 1995, A ในปี 1993 และ 1r ในปี 1996 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_4 (Id VARCHAR)"
  },
  {
    "answer": "SELECT MAX(games) FROM table_name_18 WHERE team = \"czechoslovakia\" AND drawn > 0",
    "question_en": "How many games does team Czechoslovakia have that had a drawn greater than 0?",
    "question_th": "ทีมเชโกสโลวะเกียมีกี่เกมที่เสมอมากกว่า 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_en": "Which Prime Minister's served a term of 344 days?",
    "question_th": "นายกรัฐมนตรีคนไหนอยู่ในวาระ 344 วัน?",
    "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_en": "Who was the Minister that served for 307 days?",
    "question_th": "ใครคือรัฐมนตรีที่ดำรงตำแหน่ง 307 วัน?",
    "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_en": "what ceremony did big titty milfs work in",
    "question_th": "สาวใหญ่หัวนมใหญ่ทำงานในพิธีอะไร",
    "context": "CREATE TABLE table_name_35 (ceremony VARCHAR, work VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_52 WHERE date = \"28 february 2001\"",
    "question_en": "What was the end result for 28 February 2001?",
    "question_th": "ผลลัพธ์สุดท้ายของวันที่ 28 กุมภาพันธ์ พ.ศ. 2544 เป็นอย่างไร?",
    "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_en": "How many yards did Davin Meggett have with more than 9 Rec.?",
    "question_th": "Davin Meggett มีระยะทางมากกว่า 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_en": "What is Darrius Heyward-Bey's average with more than 20 yards and less than 80 long?",
    "question_th": "ค่าเฉลี่ยของ Darrius Heyward-Bey ที่ระยะมากกว่า 20 หลาและยาวน้อยกว่า 80 คืออะไร?",
    "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_en": "How many points are associated with a Time/Retired of +10.131 secs?",
    "question_th": "มีกี่คะแนนที่เกี่ยวข้องกับเวลา/เกษียณของ +10.131 วินาที?",
    "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_en": "What is the grid associated witha Time/Retired of +8.180 secs, and under 47 laps?",
    "question_th": "ตารางที่เกี่ยวข้องกับเวลา/เกษียณ +8.180 วินาที และต่ำกว่า 47 รอบเป็นอย่างไร",
    "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_en": "What is the highest drawn for points over 545?",
    "question_th": "แต้มสูงสุดที่ได้มาเกิน 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_en": "What's the average loss when the points were 545?",
    "question_th": "ขาดทุนเฉลี่ยเมื่อแต้มอยู่ที่ 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_en": "How many games were lost when the order was 2nd and the play was more than 13",
    "question_th": "กี่เกมที่แพ้เมื่ออันดับ 2 และการเล่นเกิน 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ôn/anglesey\" AND total > 8",
    "question_en": "Name the least rank with bronze of 2, gold more than 0 and nation of ynys môn/anglesey with total more than 8",
    "question_th": "ตั้งชื่ออันดับน้อยที่สุดด้วยทองแดง 2 ทองมากกว่า 0 และชาติ ynys môn/anglesey รวมมากกว่า 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_en": "Name the least total with rank less than 7, gold more than 16 and bronze less than 29",
    "question_th": "ตั้งชื่อผลรวมน้อยที่สุดด้วยอันดับน้อยกว่า 7 ทองมากกว่า 16 และทองแดงน้อยกว่า 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_en": "Name the total number of total with silver of 6, bronze more than 5 and gold less than 4",
    "question_th": "ตั้งชื่อจำนวนรวมด้วยเงิน 6 เหรียญทองแดงมากกว่า 5 และทองคำน้อยกว่า 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_en": "What score has a game greater than 11 on October 30?",
    "question_th": "คะแนนใดที่มีเกมมากกว่า 11 ในวันที่ 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_en": "What October has 0-2-2 as the record?",
    "question_th": "เดือนตุลาคมอะไรมีสถิติ 0-2-2 บ้าง?",
    "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_en": "What average game has @ florida panthers as the opponent, 0-1-2 as the record, with an october greater than 8?",
    "question_th": "เกมเฉลี่ยไหนที่ @florida panthers เป็นคู่ต่อสู้ 0-1-2 เป็นสถิติ โดยเดือนตุลาคมมากกว่า 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_en": "Which Lost has Games of 64, and Champs smaller than 0?",
    "question_th": "Lost ใดที่มีเกม 64 และ Champs น้อยกว่า 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_en": "Which Draw is the lowest one that has Champs smaller than 0?",
    "question_th": "งวดใดคือตัวต่ำสุดที่มีแชมเปี้ยนน้อยกว่า 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_en": "Which Win/Lose Percentage has Champs larger than 0, and a Draw larger than 3?",
    "question_th": "เปอร์เซ็นต์ชนะ/แพ้ใดที่มีแชมป์มากกว่า 0 และเสมอมากกว่า 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_en": "Which Champs is the average one that has a Draw larger than 2, and Games smaller than 60?",
    "question_th": "แชมเปี้ยนตัวใดคือตัวเฉลี่ยที่มีเสมอมากกว่า 2 และเกมน้อยกว่า 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_en": "What is the launch date for the Ushio dd-54?",
    "question_th": "Ushio dd-54 เปิดตัวเมื่อใด",
    "context": "CREATE TABLE table_name_55 (launched VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_77 WHERE kanji = \"朧\"",
    "question_en": "Which name has a Kanji of 朧?",
    "question_th": "ชื่อใดมีคันจิของ 朧?",
    "context": "CREATE TABLE table_name_77 (name VARCHAR, kanji VARCHAR)"
  },
  {
    "answer": "SELECT kanji FROM table_name_84 WHERE name = \"ayanami dd-45\"",
    "question_en": "What is the Kanji for the Ayanami dd-45?",
    "question_th": "คันจิของ 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_en": "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?",
    "question_th": "ขนาด (ขั้น) ที่มีขนาด (เซนต์) 58.54 และอัตราส่วนเพียง 28:27 และเพียง (เซนต์) ที่มากกว่า 62.96 คือจำนวนทั้งหมดเท่าใด",
    "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_en": "size (steps) of 15, and a just (cents) larger than 435.08 is what highest size (cents)?",
    "question_th": "ขนาด (ขั้น) ของ 15 และเพียง (เซนต์) ที่มากกว่า 435.08 คือขนาดสูงสุด (เซนต์) คือเท่าใด",
    "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_en": "ratio of 16:13 has how many highest size (steps)?",
    "question_th": "อัตราส่วน 16:13 มีขนาดสูงสุดกี่ขั้น (ขั้น)?",
    "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_en": "ratio of 15:14, and a just (cents) larger than 119.44 is what average size (cents)?",
    "question_th": "อัตราส่วน 15:14 และเพียง (เซนต์) ที่มากกว่า 119.44 คือขนาดเฉลี่ย (เซนต์) คือเท่าใด",
    "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_en": "Who was the home team for the match at Stadion pod Vrmcem?",
    "question_th": "ใครคือทีมเจ้าบ้านสำหรับนัดที่สตาดิโอน พอด วอร์มเซ็ม?",
    "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_en": "Who were the guest team wehn the match score was 3:0 (0:2)?",
    "question_th": "ทีมรับเชิญคือใครที่คะแนนการแข่งขันคือ 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_en": "What Picture Coding Types have Chroma Format of 4:2:2 or 4:2:0 and the Name of 4:2:2 profile?",
    "question_th": "Picture Coding ประเภทใดมีรูปแบบ Chroma 4:2:2 หรือ 4:2:0 และชื่อโปรไฟล์ 4:2:2",
    "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_en": "Name the Intra DC Precision that has the Name main profile?",
    "question_th": "ตั้งชื่อ Intra DC Precision ที่มีโปรไฟล์หลัก Name หรือไม่",
    "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_en": "What Chroma Format that has both Picture Coding Types of i, p, b, and the Name of main profile?",
    "question_th": "Chroma Format ใดที่มีทั้ง Picture Coding ประเภท i, p, b และ Name ของโปรไฟล์หลัก",
    "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_en": "What Player is from the west Division and the Team of special teams and is from the School Toledo Western Michigan?",
    "question_th": "ผู้เล่นคนไหนมาจากดิวิชั่นตะวันตกและทีมพิเศษและมาจากโรงเรียนโทเลโดเวสเทิร์นมิชิแกน?",
    "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_en": "What are the lowest wins for Australia?",
    "question_th": "อะไรคือชัยชนะที่ต่ำที่สุดสำหรับออสเตรเลีย?",
    "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_en": "How many winners did Minas, which has 0 third places, have?",
    "question_th": "Minas ซึ่งมีอันดับ 3 เป็น 0 มีผู้ชนะกี่คน?",
    "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_en": "How many winners did Halcones uv xalapa have?",
    "question_th": "Halcones uv xalapa มีผู้ชนะกี่คน?",
    "context": "CREATE TABLE table_name_83 (winners VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT runners_up FROM table_name_84 WHERE team = \"espartanos de margarita\"",
    "question_en": "How many runners-up did Espartanos de Margarita have?",
    "question_th": "Espartanos de Margarita ได้รองแชมป์กี่คน?",
    "context": "CREATE TABLE table_name_84 (runners_up VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_34 WHERE attendance = \"60,594\"",
    "question_en": "Which Opponent has Attendances of 60,594?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีผู้เข้าร่วม 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_en": "When has a Result of l 27-7 and an Opponent of at minnesota vikings?",
    "question_th": "เมื่อผลการแข่งขันของ l 27-7 และฝ่ายตรงข้ามของ 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_en": "When has  a Week of 9?",
    "question_th": "เมื่อไรจะมีสัปดาห์ที่ 9?",
    "context": "CREATE TABLE table_name_60 (date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_39 WHERE opponent = \"new york jets\"",
    "question_en": "What date did the Steelers play against the New York Jets?",
    "question_th": "Steelers เล่นกับ 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_en": "What time did the game start during week 1?",
    "question_th": "เกมเริ่มกี่โมงในสัปดาห์ที่ 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_en": "How many laps for mi-jack conquest racing when they went off course?",
    "question_th": "กี่รอบสำหรับการแข่ง mi-jack conquest เมื่อพวกเขาออกนอกเส้นทาง?",
    "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_en": "How many laps are associated with a grid greater than 8, under 11 points, and will power?",
    "question_th": "มีกี่รอบที่สัมพันธ์กับกริดที่มากกว่า 8 ต่ำกว่า 11 แต้ม และจะมีพลังอะไรบ้าง?",
    "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_en": "Name the average Bronze when silver is more than 3, gold is more than 1 and the total is 14",
    "question_th": "ตั้งชื่อบรอนซ์โดยเฉลี่ยเมื่อเงินมากกว่า 3 ทองมากกว่า 1 และผลรวมคือ 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_en": "Name the total number of total for rank of 7 and bronze less than 1",
    "question_th": "ตั้งชื่อจำนวนรวมสำหรับอันดับที่ 7 และเหรียญทองแดงน้อยกว่า 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_en": "Name the most silver with bronze more than 1 and gold more than 1 with total less than 7",
    "question_th": "ชื่อเงินมากที่สุดมีทองแดงมากกว่า 1 และทองมากกว่า 1 รวมน้อยกว่า 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_en": "Name the sum of total for gold less than 1 and bronze of 3",
    "question_th": "ตั้งชื่อผลรวมของทองคำที่น้อยกว่า 1 และทองแดงที่ 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_en": "Name the total number of bronze with rank of 5 and silver more than 1",
    "question_th": "ตั้งชื่อจำนวนทองแดงทั้งหมดด้วยอันดับ 5 และเงินมากกว่า 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²_ = 464.5 AND population_density_2010___km²_ > 1840",
    "question_en": "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?",
    "question_th": "จำนวนประชากรทั้งหมดจากการสำรวจสำมะโนประชากร พ.ศ. 2543 สำหรับเทศบาลที่มีพื้นที่ 464.5 ตารางกิโลเมตร และความหนาแน่นของประชากรในปี พ.ศ. 2553 มากกว่า พ.ศ. 2383 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_58 (population_2000_census VARCHAR, area__km²_ VARCHAR, population_density_2010___km²_ VARCHAR)"
  },
  {
    "answer": "SELECT SUM(population__2010_census_) FROM table_name_16 WHERE administrative_division = \"japeri\" AND area__km²_ < 82.9",
    "question_en": "What was the sum of the population in 2010 for the division of japeri with an area of 82.9 squared km?",
    "question_th": "ผลรวมของประชากรในปี 2010 เมื่อแบ่งจาเปริกับพื้นที่ 82.9 ตารางกิโลเมตร เป็นเท่าใด",
    "context": "CREATE TABLE table_name_16 (population__2010_census_ INTEGER, administrative_division VARCHAR, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_6 WHERE visitor = \"atlanta\"",
    "question_en": "What was the score for the game against Atlanta?",
    "question_th": "ในเกมกับแอตแลนต้ามีสกอร์เท่าไหร่?",
    "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_en": "In the 1936 summer Olympics what was the date of a match that ended with a score of 6-1?",
    "question_th": "ในโอลิมปิกฤดูร้อนปี 1936 การแข่งขันที่จบลงด้วยสกอร์ 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_en": "What was the score for the game that had an end result of 5-2?",
    "question_th": "จบเกมด้วยสกอร์ 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_en": "What is the total number of losses that have 1 draw and games over 7?",
    "question_th": "จำนวนการแพ้ทั้งหมดที่เสมอ 1 ครั้งและเกมมากกว่า 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_en": "How many rounds had a pick number of more than 10 and Appalachian State as a college?",
    "question_th": "มีกี่รอบที่มีจำนวนเลือกมากกว่า 10 และ Appalachian State เป็นวิทยาลัย?",
    "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_en": "What is the largest overall where the position was linebacker and the pick number was more than 9?",
    "question_th": "โดยรวมที่ใหญ่ที่สุดคือตำแหน่งใดคือไลน์แบ็คเกอร์และหมายเลขเลือกมากกว่า 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–56\"",
    "question_en": "What is the Score of the game earlier than 69 with a record of 4–56?",
    "question_th": "คะแนนของเกมที่เร็วกว่า 69 ด้วยสถิติ 4–56 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_41 (score VARCHAR, game VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(game) FROM table_name_31 WHERE score = \"116–138\"",
    "question_en": "What is the game number with a score of 116–138?",
    "question_th": "หมายเลขเกมที่มีคะแนน 116–138 คืออะไร?",
    "context": "CREATE TABLE table_name_31 (game VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_58 WHERE opponent = \"boston celtics\"",
    "question_en": "What is the Score of the game against the boston celtics?",
    "question_th": "สกอร์ของเกมกับบอสตัน เซลติกส์เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_58 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_name_17 WHERE date = \"february 9\"",
    "question_en": "What is the Game held on february 9?",
    "question_th": "เกมจะจัดขึ้นในวันที่ 9 กุมภาพันธ์คืออะไร?",
    "context": "CREATE TABLE table_name_17 (game VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_15 WHERE game > 57 AND record = \"4–55\"",
    "question_en": "What is the Score of the game larger than 57 with a Record of 4–55?",
    "question_th": "คะแนนของเกมที่มากกว่า 57 โดยมีสถิติ 4–55 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_15 (score VARCHAR, game VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_name_82 WHERE village = \"chassagne-montrachet\"",
    "question_en": "Which Reigon has a Village of Chassagne-Montrachet?",
    "question_th": "แคว้นใดมีหมู่บ้าน Chassagne-Montrachet",
    "context": "CREATE TABLE table_name_82 (region VARCHAR, village VARCHAR)"
  },
  {
    "answer": "SELECT village FROM table_name_57 WHERE region = \"côte de nuits\" AND wine_style = \"red wine\" AND grand_cru = \"latricières-chambertin\"",
    "question_en": "Which Village has a Region of Côte De Nuits, Wine Styles of Red Wine, and a Grand Cru of Latricières-Chambertin?",
    "question_th": "หมู่บ้านใดที่มีแคว้นโกต เดอ นุยต์ รูปแบบไวน์ของไวน์แดง และไวน์ Grand Cru ของ Latricières-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ères-chambertin\"",
    "question_en": "What is the Vineyeard surface (2010) with a Village of Gevrey-Chambertin, and Grand Cru of Latricières-Chambertin?",
    "question_th": "พื้นผิว Vineyeard (2010) กับหมู่บ้าน Gevrey-Chambertin และ Grand Cru ของ Latricières-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_en": "What is the Grand Cru with a Wine Style of Red Wine and Village of Gevrey-Chambertin?",
    "question_th": "Grand Cru พร้อมสไตล์ไวน์ของไวน์แดงและหมู่บ้าน 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_en": "What is the average pick number of Pennsylvania?",
    "question_th": "หมายเลขเลือกเฉลี่ยของเพนซิลเวเนียคือเท่าไร?",
    "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_en": "What is the school/club team of the player with a pick larger than 83?",
    "question_th": "ทีมโรงเรียน/สโมสรของผู้เล่นที่มีตัวเลือกมากกว่า 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_en": "What is the schoo/club team of the player in round 3?",
    "question_th": "ทีมโรงเรียน/สโมสรของผู้เล่นในรอบที่ 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_en": "What is the lowest round of the player from UCLA?",
    "question_th": "ผู้เล่นจาก UCLA รอบต่ำสุดคือเท่าไร?",
    "context": "CREATE TABLE table_name_87 (round INTEGER, school_club_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_20 WHERE winning_score = –16(62 - 71 - 71 - 68 = 272)",
    "question_en": "When was –16 (62-71-71-68=272) the winning score?",
    "question_th": "–16 (62-71-71-68=272) เป็นคะแนนชนะเมื่อใด?",
    "context": "CREATE TABLE table_name_20 (date VARCHAR, winning_score VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_3 WHERE date = \"jun 17, 1973\"",
    "question_en": "What was the name of the tournament played on Jun 17, 1973?",
    "question_th": "ทัวร์นาเมนต์ที่เล่นเมื่อวันที่ 17 มิถุนายน พ.ศ. 2516 มีชื่อว่าอะไร?",
    "context": "CREATE TABLE table_name_3 (tournament VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_14 WHERE runner_s__up = \"howard twitty\"",
    "question_en": "Howard Twitty was the runner-up of what tournament?",
    "question_th": "Howard Twitty เป็นรองแชมป์ทัวร์นาเมนต์ใด",
    "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_en": "Can you tell me the College/Junior/Club Team that has the Position of defence, and the Nationality of czechoslovakia?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าทีมวิทยาลัย/จูเนียร์/คลับที่มีตำแหน่งป้องกันและมีสัญชาติเชโกสโลวาเกีย?",
    "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_en": "Can you tell me the Position that has the College/Junior/Club Team of hull olympiques (qmjhl)?",
    "question_th": "คุณช่วยบอกตำแหน่งที่มีทีมวิทยาลัย/จูเนียร์/คลับของฮัลล์โอลิมปิก (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_en": "Can you tell me the Player that has the Round smaller than 6, and the College/Junior/Club Team of hull olympiques (qmjhl)?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมถึงผู้เล่นที่มีรอบน้อยกว่า 6 และทีมวิทยาลัย/จูเนียร์/คลับของการแข่งขันกีฬาโอลิมปิก (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_en": "What is the Name of the Center?",
    "question_th": "ชื่อของศูนย์คืออะไร?",
    "context": "CREATE TABLE table_name_84 (name VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_48 WHERE college_hall_of_fame = \"no\"",
    "question_en": "What Position has no College Hall of Fame?",
    "question_th": "ตำแหน่งใดไม่มีหอเกียรติยศของวิทยาลัย?",
    "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_en": "What School has no no no Unanimously?",
    "question_th": "โรงเรียนอะไรไม่มีไม่มีไม่มีเอกฉันท์?",
    "context": "CREATE TABLE table_name_96 (school VARCHAR, unanimous VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_43 WHERE position = \"quarterback\"",
    "question_en": "What is the School of the quarterback?",
    "question_th": "โรงเรียนกองหลังคืออะไร?",
    "context": "CREATE TABLE table_name_43 (school VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_97 WHERE position = \"center\"",
    "question_en": "What School is the Center from?",
    "question_th": "ศูนย์นี้มาจากโรงเรียนอะไร?",
    "context": "CREATE TABLE table_name_97 (school VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT unanimous FROM table_name_93 WHERE school = \"minnesota southern california\"",
    "question_en": "What is the Unanimous of the Minnesota Southern California School?",
    "question_th": "อะไรคือเอกฉันท์ของโรงเรียน Minnesota Southern California?",
    "context": "CREATE TABLE table_name_93 (unanimous VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT cache FROM table_name_59 WHERE capacity = \"600 gb\"",
    "question_en": "What is the Cache with a Capacity that is 600 gb?",
    "question_th": "แคชที่มีความจุ 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_en": "Which Position has a College/Junior/Club Team (League) of estevan bruins (wchl), and a Round of 3?",
    "question_th": "ตำแหน่งใดที่มีทีมระดับวิทยาลัย/รุ่นจูเนียร์/สโมสร (ลีก) ของ estevan bruins (wchl) และรอบ 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_en": "Which Nationality has a Player of larry wright?",
    "question_th": "นักเตะสัญชาติใดของแลร์รี่ ไรท์",
    "context": "CREATE TABLE table_name_86 (nationality VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_49 WHERE date = \"august 25\"",
    "question_en": "What score has august 25 as the date?",
    "question_th": "คะแนนวันที่ 25 สิงหาคม เป็นวันที่เท่าไหร่?",
    "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_en": "What is the total number of episodes where jim sweeney was the 1st performer and steve steen was the 2nd performer?",
    "question_th": "จำนวนตอนทั้งหมดคือเท่าไรที่จิม สวีนีย์เป็นนักแสดงคนแรก และสตีฟ สตีนเป็นนักแสดงคนที่ 2",
    "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_en": "What is the sum of the episode numbers where chip esten is the 4th performer and christopher smith was the 2nd performer?",
    "question_th": "ผลรวมของหมายเลขตอนที่ชิป เอสเทนเป็นนักแสดงคนที่ 4 และคริสโตเฟอร์ สมิธเป็นนักแสดงคนที่ 2 เป็นเท่าใด",
    "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_en": "What is the sum of the episodes where chip esten was the 4th performer and jim meskimen was the 1st performer?",
    "question_th": "ผลรวมของตอนที่ Chip Esten เป็นนักแสดงคนที่ 4 และ Jim Meskimen เป็นนักแสดงคนที่ 1 เป็นเท่าใด",
    "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_en": "Who was the 3rd performer when christopher smith was the 2nd performer?",
    "question_th": "ใครคือนักแสดงคนที่ 3 เมื่อคริสโตเฟอร์ สมิธเป็นนักแสดงคนที่ 2",
    "context": "CREATE TABLE table_name_19 (performer_3 VARCHAR, performer_2 VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_58 WHERE time = \"4:50\"",
    "question_en": "Which Record has a Time of 4:50?",
    "question_th": "บันทึกใดมีเวลา 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–2\"",
    "question_en": "Which Event has a Resolution of loss, and a Record of 12–2?",
    "question_th": "เหตุการณ์ใดมีมติแพ้ และมีสถิติ 12–2",
    "context": "CREATE TABLE table_name_56 (event VARCHAR, res VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT AVG(drawn) FROM table_name_58 WHERE difference = \"14\"",
    "question_en": "Which Drawn has a Difference of 14?",
    "question_th": "ไพ่ใบไหนมีผลต่าง 14?",
    "context": "CREATE TABLE table_name_58 (drawn INTEGER, difference VARCHAR)"
  },
  {
    "answer": "SELECT played FROM table_name_4 WHERE lost > 2 AND team = \"américa\"",
    "question_en": "Which Played has a Lost larger than 2, and a Team of américa?",
    "question_th": "ผู้เล่นคนไหนที่แพ้มากกว่า 2 และทีมของอเมริกา?",
    "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_en": "What's the number of touchdowns that there are 0 field goals, less than 5 points, and had Joe Maddock playing?",
    "question_th": "จำนวนทัชดาวน์ที่มี 0 ฟิลด์โกล น้อยกว่า 5 แต้ม และมี โจ แมดด็อก ลงสนามเป็นเท่าใด",
    "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_en": "what is the class of w269ax",
    "question_th": "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_en": "What is the match report of the match on 20 August?",
    "question_th": "รายงานผลการแข่งขันวันที่ 20 ส.ค. เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_12 (match_report VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT origin FROM table_name_71 WHERE launch = 2010",
    "question_en": "What is the origin for the launch taking place in 2010?",
    "question_th": "ที่มาของการเปิดตัวในปี 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_en": "What is the origin for the item with an owner of Hunan Broadcasting System (HBS)?",
    "question_th": "ต้นกำเนิดของรายการที่มีเจ้าของ 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_en": "If the college is Trinity, what position is listed?",
    "question_th": "ถ้าวิทยาลัยเป็นทรินิตี้มีตำแหน่งอะไรคะ?",
    "context": "CREATE TABLE table_name_40 (position VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(pick__number) FROM table_name_67 WHERE college = \"usc\"",
    "question_en": "How many picks did the College of USC wind up getting?",
    "question_th": "College of USC ได้รับเลือกกี่คน?",
    "context": "CREATE TABLE table_name_67 (pick__number VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_41 WHERE pick__number = 323",
    "question_en": "For Pick #323, which round is it?",
    "question_th": "สำหรับ Pick #323 รอบไหนครับ?",
    "context": "CREATE TABLE table_name_41 (round VARCHAR, pick__number VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_97 WHERE venue = \"amblecote\"",
    "question_en": "What score has amblecote as the venue?",
    "question_th": "คะแนนใดที่ amblecote เป็นสถานที่จัดงาน?",
    "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_en": "What city has riverside ground as the venue, with a year prior to 1998?",
    "question_th": "เมืองใดที่มีพื้นที่ริมแม่น้ำเป็นสถานที่จัดงาน โดยหนึ่งปีก่อนปี 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_en": "What is the lowest year that has chester-le-street as the city, with 345 runs as the score?",
    "question_th": "ปีต่ำสุดที่มีเมืองเชสเตอร์เลอสตรีทเป็นเมืองไหน โดยมีคะแนน 345 รันเป็นปีใด",
    "context": "CREATE TABLE table_name_49 (year INTEGER, city VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_38 WHERE score = \"385 runs\"",
    "question_en": "What year has 385 runs as the score?",
    "question_th": "385รันเป็นคะแนนปีไหนครับ?",
    "context": "CREATE TABLE table_name_38 (year VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_82 WHERE year = 1998",
    "question_en": "What score has 1998 as the year?",
    "question_th": "ปี 2541 มีคะแนนเท่าใด",
    "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_en": "What is the 2nd (m) value for Gregor Schlierenzauer?",
    "question_th": "ค่าที่ 2 (m) ของ Gregor Schlierenzauer คืออะไร?",
    "context": "CREATE TABLE table_name_5 (name VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_58 WHERE score = \"199 (–17)\"",
    "question_en": "What is the Date of the tournament with a score of 199 (–17)?",
    "question_th": "การแข่งขันวันที่เท่าไหร่ด้วยคะแนน 199 (–17)?",
    "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_en": "What was the amount of the 1st prize when paul azinger (9) was the winner?",
    "question_th": "รางวัลที่ 1 เมื่อ พอล อาซิงเกอร์ (9) ถูกรางวัลเป็นเงินเท่าไหร่?",
    "context": "CREATE TABLE table_name_95 (winner VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_73 WHERE tournament = \"the tour championship\"",
    "question_en": "What is the name of the winner of the tour championship tournament?",
    "question_th": "ผู้ชนะการแข่งขัน Tour Championship ชื่ออะไร?",
    "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_en": "What is the Date of the at&t pebble beach national pro-am Tournament?",
    "question_th": "วันที่ของการแข่งขัน at&t pebble beach national pro-am คือเมื่อใด",
    "context": "CREATE TABLE table_name_91 (date VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT site FROM table_name_38 WHERE sport = \"w swimming\"",
    "question_en": "Which Site has a Sport of w swimming?",
    "question_th": "เว็บไซต์ใดที่มีกีฬาว่ายน้ำ?",
    "context": "CREATE TABLE table_name_38 (site VARCHAR, sport VARCHAR)"
  },
  {
    "answer": "SELECT series FROM table_name_53 WHERE date = \"september 15, 2007\"",
    "question_en": "Which Series are on september 15, 2007?",
    "question_th": "ซีรีส์ใดบ้างในวันที่ 15 กันยายน 2550",
    "context": "CREATE TABLE table_name_53 (series VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_5 WHERE nationality = \"usa\" AND team = \"ír\" AND season = \"2010-11\"",
    "question_en": "What position did the 2010-11 USA ír player have?",
    "question_th": "ผู้เล่นของสหรัฐอเมริกาในฤดูกาล 2010-11 มีตำแหน่งอะไร?",
    "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_en": "What position did the kr team player play?",
    "question_th": "นักเตะทีม KR เล่นตำแหน่งไหนครับ?",
    "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_en": "What team has Steinar Kaldal, a guard / forward?",
    "question_th": "ทีมไหนมี ชไตนาร์ คัลดาล กองหลัง/กองหน้า ?",
    "context": "CREATE TABLE table_name_57 (team VARCHAR, position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_68 WHERE season = \"2003-04\"",
    "question_en": "What team did the 2003-04 winner play for?",
    "question_th": "ผู้ชนะในฤดูกาล 2003-04 เล่นให้กับทีมใด?",
    "context": "CREATE TABLE table_name_68 (team VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_name_23 WHERE label = \"eyeball\" AND catalogue = \"7200222\"",
    "question_en": "Which region has and eyeball label and catalogue 7200222?",
    "question_th": "ภูมิภาคใดมีและฉลากลูกตาและแค็ตตาล็อก 7200222?",
    "context": "CREATE TABLE table_name_23 (region VARCHAR, label VARCHAR, catalogue VARCHAR)"
  },
  {
    "answer": "SELECT catalogue FROM table_name_31 WHERE region = \"japan\"",
    "question_en": "Which catalogue is from Japan?",
    "question_th": "แค็ตตาล็อกใดที่มาจากประเทศญี่ปุ่น",
    "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_en": "What is the format for the United States dated July 23, 2002?",
    "question_th": "รูปแบบของสหรัฐอเมริกาลงวันที่ 23 กรกฎาคม พ.ศ. 2545 เป็นอย่างไร",
    "context": "CREATE TABLE table_name_84 (format VARCHAR, region VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_77 WHERE catalogue = \"7200222\"",
    "question_en": "What is the label for catalogue 7200222?",
    "question_th": "ป้ายชื่อแค็ตตาล็อก 7200222 คืออะไร",
    "context": "CREATE TABLE table_name_77 (label VARCHAR, catalogue VARCHAR)"
  },
  {
    "answer": "SELECT surname FROM table_name_38 WHERE first = \"marc\"",
    "question_en": "What is Marc's Surname?",
    "question_th": "นามสกุลของมาร์คคืออะไร?",
    "context": "CREATE TABLE table_name_38 (surname VARCHAR, first VARCHAR)"
  },
  {
    "answer": "SELECT MAX(uni_number) FROM table_name_32 WHERE first = \"todd\"",
    "question_en": "What is the highest uni# of the person with the first name Todd?",
    "question_th": "คนที่มีชื่อ Todd สูงสุดคือมหาวิทยาลัยอะไร?",
    "context": "CREATE TABLE table_name_32 (uni_number INTEGER, first VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_2 WHERE uni_number = 14",
    "question_en": "Which position does #14 play?",
    "question_th": "#14เล่นตำแหน่งไหน?",
    "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_en": "Which does the lhp player with the first name lachlan bat?",
    "question_th": "ผู้เล่น lhp คนไหนที่ชื่อ 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_en": "How many were in Attendance on December 11, 1954?",
    "question_th": "มีผู้เข้าร่วมประชุมกี่คนในวันที่ 11 ธันวาคม 1954?",
    "context": "CREATE TABLE table_name_14 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_62 WHERE week = 3",
    "question_en": "What was the Result on Week 3?",
    "question_th": "ผลลัพธ์ในสัปดาห์ที่ 3 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_62 (result VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_66 WHERE opponent = \"detroit lions\"",
    "question_en": "On what Week was the Detroit Lions the Opponent?",
    "question_th": "Detroit Lions เป็นฝ่ายตรงข้ามในสัปดาห์ใด",
    "context": "CREATE TABLE table_name_66 (week VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_44 WHERE game = 14",
    "question_en": "What was the rangers' record on Game 14?",
    "question_th": "บันทึกของเรนเจอร์ในเกมที่ 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_en": "What is the highest game number when the rangers had a record of 11-11-1 and the date was after November 29?",
    "question_th": "เรนเจอร์สมีสถิติ 11-11-1 ในเกมที่สูงสุดคือหมายเลขใดคือหลังวันที่ 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_en": "What's Francis Harris' position?",
    "question_th": "ตำแหน่งของฟรานซิส แฮร์ริสคืออะไร?",
    "context": "CREATE TABLE table_name_83 (position VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_99 WHERE area__km_2__ > 34.42",
    "question_en": "Which place has more area (km 2) than 34.42?",
    "question_th": "สถานที่ใดมีพื้นที่มากกว่า (กม.2) มากกว่า 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_en": "What is the lowest 4 hoops, 2 clubs of the nation with a total of 38.25?",
    "question_th": "4 ห่วงต่ำสุด 2 สโมสรของประเทศคืออะไร รวม 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_en": "What is the total of Greece, which is placed below 8?",
    "question_th": "ผลรวมของกรีซซึ่งต่ำกว่า 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_en": "What is the highest 4 hoops, 2 clubs of Belarus, which has a total less than 38.25?",
    "question_th": "4 ห่วงที่สูงที่สุด 2 สโมสรของเบลารุสซึ่งมีคะแนนรวมน้อยกว่า 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_en": "Which Nationality has a Name of janne happonen?",
    "question_th": "เจนนี่ ฮัปโปเนน เป็นคนสัญชาติไหน?",
    "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_en": "Which Nationality has a Rank larger than 3, and a Name of tom hilde?",
    "question_th": "สัญชาติใดมีอันดับมากกว่า 3 และมีชื่อทอม ฮิลด์",
    "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_en": "Which Name has a Nationality of nor, and Points of 136?",
    "question_th": "ชื่อใดมีสัญชาติและคะแนน 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_en": "What was the average rank of Wolfgang Schwarz with greater than 13 places?",
    "question_th": "อันดับเฉลี่ยของ Wolfgang Schwarz ที่มากกว่า 13 อันดับคือเท่าไร",
    "context": "CREATE TABLE table_name_56 (rank INTEGER, name VARCHAR, places VARCHAR)"
  },
  {
    "answer": "SELECT nation FROM table_name_35 WHERE points = 1399.3",
    "question_en": "What nation had 1399.3 points?",
    "question_th": "ชาติไหนได้ 1,399.3 คะแนน?",
    "context": "CREATE TABLE table_name_35 (nation VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT MIN(round) FROM table_name_12 WHERE time = \"1:09\"",
    "question_en": "What is the lowest round number for the fight that had a time of 1:09?",
    "question_th": "ไฟต์ชกเวลา 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_en": "How much Overall has a Pick # smaller than 20, and a Round smaller than 6?",
    "question_th": "โดยรวมแล้วมี Pick # น้อยกว่า 20 และรอบที่เล็กกว่า 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_en": "Which average Round has a Pick # larger than 20, and a College of virginia, and an Overall larger than 127?",
    "question_th": "รอบเฉลี่ยใดที่มี Pick # มากกว่า 20 และ College of virginia และ Overall มากกว่า 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_en": "How many picks does chad owens have?",
    "question_th": "Chad Owens มีให้เลือกทั้งหมดกี่ตัว?",
    "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_en": "What is the lowest value in April with New York Rangers as opponent for a game less than 82?",
    "question_th": "ค่าตัวต่ำสุดในเดือนเมษายนที่นิวยอร์ก เรนเจอร์สเป็นคู่ต่อสู้สำหรับเกมที่น้อยกว่า 82 คืออะไร?",
    "context": "CREATE TABLE table_name_90 (april INTEGER, opponent VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT MAX(april) FROM table_name_99 WHERE record = \"35–37–11\" AND points > 81",
    "question_en": "What is the highest value in April with a record of 35–37–11 and more than 81 points?",
    "question_th": "มูลค่าสูงสุดเดือนเมษายนด้วยสถิติ 35–37–11 และมากกว่า 81 แต้มอยู่ที่เท่าไร?",
    "context": "CREATE TABLE table_name_99 (april INTEGER, record VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_40 WHERE score = \"274 (–14)\" AND location = \"tennessee\"",
    "question_en": "What is the name of the winner when the Score was 274 (–14) in tennessee?",
    "question_th": "ผู้ชนะชื่ออะไรเมื่อคะแนนอยู่ที่ 274 (–14) ในรัฐเทนเนสซี",
    "context": "CREATE TABLE table_name_40 (winner VARCHAR, score VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_23 WHERE tournament = \"western open\"",
    "question_en": "What is the winners name at the western open?",
    "question_th": "ผู้ชนะในรายการ 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_en": "What is the score of the Tournament named danny thomas memphis classic?",
    "question_th": "คะแนนการแข่งขันชื่อ แดนนี่ โธมัส เมมฟิส คลาสสิก อยู่ที่เท่าไร?",
    "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_en": "What is the name of the Winner in north carolina at the greater greensboro open?",
    "question_th": "ผู้ชนะในนอร์ธแคโรไลนาที่กรีนสโบโรเปิดชื่ออะไร",
    "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_en": "What is the Location of the byron nelson golf classic?",
    "question_th": "ที่ตั้งของ ไบรอน เนลสัน กอล์ฟ คลาสสิก อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_94 (location VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_59 WHERE player = \"tiffany garofano (2)\"",
    "question_en": "What is the position of player Tiffany Garofano (2)?",
    "question_th": "ตำแหน่งผู้เล่น ทิฟฟานี่ กาโรฟาโน (2) คืออะไร?",
    "context": "CREATE TABLE table_name_59 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_19 WHERE school = \"ball state\"",
    "question_en": "What is the week with a school that is ball state?",
    "question_th": "สัปดาห์ไหนที่โรงเรียนที่เป็น 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_en": "What number last Runners-up where there when the Last win was 1999 and the Runners-up was bigger than 1?",
    "question_th": "รองชนะเลิศอันดับสุดท้ายมีจำนวนเท่าใดเมื่อชนะครั้งล่าสุดคือปี 1999 และรองชนะเลิศมากกว่า 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_en": "What is the number of Last Runners-up that has the club name of dempo sc?",
    "question_th": "รองชนะเลิศอันดับสุดท้ายที่มีชื่อสโมสรว่า demo 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_en": "Which Position has a Round larger than 6, and a Player of neil pilon?",
    "question_th": "ตำแหน่งใดที่มีรอบมากกว่า 6 และเป็นผู้เล่นของ 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_en": "Which Nationality has a Player of rudy poeschek?",
    "question_th": "นักเตะสัญชาติไหนของ rudy poeschek?",
    "context": "CREATE TABLE table_name_51 (nationality VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_94 WHERE player = \"steve nemeth\"",
    "question_en": "Which Position has a Player of steve nemeth?",
    "question_th": "ตำแหน่งใดที่มีผู้เล่นของสตีฟ เนเมธ?",
    "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_en": "Which Position has a Nationality of canada, and a Player of pat janostin?",
    "question_th": "ตำแหน่งใดที่มีสัญชาติแคนาดา และเป็นผู้เล่นของ 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_en": "What was the score of the match on April 23, 2007?",
    "question_th": "คะแนนของการแข่งขันเมื่อวันที่ 23 เมษายน พ.ศ. 2550 เป็นเท่าใด",
    "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_en": "Which Date has a Game site of shea stadium, and a Week of 5?",
    "question_th": "วันที่ใดมีเว็บไซต์เกมของ Shea Stadium และสัปดาห์ที่ 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–23\"",
    "question_en": "Which Attendance is the highest one that has a Week smaller than 9, and a Result of l 24–23?",
    "question_th": "ผู้เข้าร่วมใดคือผู้เข้าร่วมสูงสุดที่มีหนึ่งสัปดาห์น้อยกว่า 9 และผลลัพธ์เป็น l 24–23",
    "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_en": "Which Week has an Opponent of baltimore colts, and an Attendance smaller than 55,137?",
    "question_th": "สัปดาห์ใดที่มีฝ่ายตรงข้ามของบัลติมอร์ โคลท์และมีผู้เข้าร่วมน้อยกว่า 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_en": "Which Game has Points of 53, and an Opponent of @ minnesota north stars, and a December larger than 30?",
    "question_th": "เกมใดมีคะแนน 53 และฝ่ายตรงข้ามของ @ minnesota north stars และเดือนธันวาคมมากกว่า 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–6–5\"",
    "question_en": "Which December has a Record of 21–6–5?",
    "question_th": "เดือนธันวาคมใดที่มีสถิติ 21–6–5",
    "context": "CREATE TABLE table_name_59 (december INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT MAX(points) FROM table_name_86 WHERE opponent = \"@ pittsburgh penguins\"",
    "question_en": "Which Points have an Opponent of @ pittsburgh penguins?",
    "question_th": "คะแนนใดมีฝ่ายตรงข้ามของ @ 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_en": "What year was the startup for the Project Named of taq taq ph 2?",
    "question_th": "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_en": "What is the operator for peak 90, in startup year 2010 for the project named Aosp expansion 1 (jackpine ph 1a)?",
    "question_th": "โอเปอเรเตอร์สำหรับจุดสูงสุด 90 ในปีเริ่มต้น 2010 สำหรับโครงการชื่อ 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_en": "What country has peak 20 and a project named jarn yabhour; ramhan?",
    "question_th": "ประเทศใดมีจุดสูงสุด 20 และโครงการชื่อ jarn yabhour; รามฮัน?",
    "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_en": "How much Attendance has an Opponent of swindon wildcats?",
    "question_th": "ฝ่ายตรงข้ามของ 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_en": "Which Attendance is the lowest one that has a Venue of away, and a Date of 19?",
    "question_th": "ผู้เข้าร่วมคนใดน้อยที่สุดที่มีสนามเยือนและวันที่ 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_en": "Which Venue has a Result of won 5-4?",
    "question_th": "สนามไหนมีผลการแข่งขันชนะ 5-4?",
    "context": "CREATE TABLE table_name_65 (venue VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_89 WHERE town = \"dubai\"",
    "question_en": "what country has dubai",
    "question_th": "ดูไบมีประเทศอะไร",
    "context": "CREATE TABLE table_name_89 (country VARCHAR, town VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_50 WHERE town = \"dubai\"",
    "question_en": "what country is dubai in",
    "question_th": "ดูไบอยู่ประเทศอะไร",
    "context": "CREATE TABLE table_name_50 (country VARCHAR, town VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_87 WHERE date = \"june 22\"",
    "question_en": "What home team has june 22 as the date?",
    "question_th": "เจ้าบ้านทีมไหนมีวันที่ 22 มิถุนายน เป็นวันที่?",
    "context": "CREATE TABLE table_name_87 (home_team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT road_team FROM table_name_67 WHERE result = \"86-84\"",
    "question_en": "What road team has 86-84 as the result?",
    "question_th": "ทีมโรดไหนมี 86-84 บ้าง?",
    "context": "CREATE TABLE table_name_67 (road_team VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT road_team FROM table_name_86 WHERE result = \"91-82\"",
    "question_en": "What road team has 91-82 as the result?",
    "question_th": "ทีมโรดไหนมี 91-82 บ้าง?",
    "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_en": "Which game has houston as the road team, and june 15 as the date?",
    "question_th": "เกมใดที่มีฮูสตันเป็นทีมโรด และวันที่ 15 มิถุนายนเป็นวันที่?",
    "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_en": "What is listed under occupation for someone from Santa Monica, California?",
    "question_th": "รายการอาชีพสำหรับคนจากซานตาโมนิกา แคลิฟอร์เนีย คืออะไร?",
    "context": "CREATE TABLE table_name_71 (occupation VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT education FROM table_name_47 WHERE hometown = \"st. louis, missouri\"",
    "question_en": "For natives of St. Louis, Missouri, what was listed under education?",
    "question_th": "สำหรับคนพื้นเมืองในเมืองเซนต์หลุยส์ รัฐมิสซูรี มีรายการใดบ้างที่อยู่ภายใต้การศึกษา",
    "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_en": "When the occupation was utility worker on-air talent, what was the game status?",
    "question_th": "เมื่ออาชีพนี้เป็นพนักงานสาธารณูปโภคที่มีความสามารถออนแอร์ สถานะของเกมคืออะไร?",
    "context": "CREATE TABLE table_name_21 (game_status VARCHAR, occupation VARCHAR)"
  },
  {
    "answer": "SELECT 2005 FROM table_name_3 WHERE 2004 = \"3–2\"",
    "question_en": "Which 2005 has a 2004 of 3–2?",
    "question_th": "ปี 2548 ใดที่มีปี 2547 เป็น 3–2",
    "context": "CREATE TABLE table_name_3 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_66 WHERE 2009 = \"15–2\"",
    "question_en": "Which 2011 has a 2009 of 15–2?",
    "question_th": "ปี 2554 ใดมีปี 2552 จาก 15–2",
    "context": "CREATE TABLE table_name_66 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2010 FROM table_name_51 WHERE 2006 = \"w\"",
    "question_en": "Which 2010 has a 2006 of w?",
    "question_th": "ปี 2010 ใดมีปี 2006 เป็น w?",
    "context": "CREATE TABLE table_name_51 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2008 FROM table_name_48 WHERE 2005 = \"13–3\"",
    "question_en": "Which 2008 has a 2005 of 13–3?",
    "question_th": "ปี 2551 ใดมีปี 2548 จาก 13–3",
    "context": "CREATE TABLE table_name_48 (Id VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_4 WHERE ground = \"ghantoot racing and polo club\"",
    "question_en": "What is the time of the Ghantoot Racing and Polo Club?",
    "question_th": "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_en": "What is the home team score of the game with Adelaide as the away team?",
    "question_th": "สกอร์ของเจ้าบ้านในเกมกับอเดเลดเป็นทีมเยือนเท่าไหร่?",
    "context": "CREATE TABLE table_name_90 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_81 WHERE home_team = \"essendon\"",
    "question_en": "What is the time of the Essendon home team game?",
    "question_th": "เกมเหย้าเจ้าบ้านเอสเซนดอนกี่โมง?",
    "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_en": "What is the home team score of the Ghantoot Racing and Polo Club Ground?",
    "question_th": "คะแนนเจ้าบ้านของ Ghantoot Racing และ 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_en": "What shows for region when the date is february 2006?",
    "question_th": "สิ่งที่แสดงสำหรับภูมิภาคเมื่อวันที่คือเดือนกุมภาพันธ์ 2549?",
    "context": "CREATE TABLE table_name_29 (region VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT format FROM table_name_61 WHERE catalog = \"11 135\"",
    "question_en": "What shows as the format for catalog 11 135?",
    "question_th": "สิ่งที่แสดงเป็นรูปแบบสำหรับแคตตาล็อก 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_en": "In what Region is Catalog number 885 380-1?",
    "question_th": "แค็ตตาล็อกหมายเลข 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_en": "Which Sampling Memory/Upgrade-able has a rate of 16-bit 44.1khz?",
    "question_th": "Sampling Memory/Upgrade-able ใดที่มีอัตรา 16 บิต 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_en": "Around what time frame release a Sampling Rate of 12-bit 40khz?",
    "question_th": "ประมาณกรอบเวลาใดที่ปล่อยอัตราการสุ่มตัวอย่าง 12 บิต 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_en": "How much is a product with a Sampling Rate of 12-bit 40khz?",
    "question_th": "ผลิตภัณฑ์ที่มีอัตราการสุ่มตัวอย่าง 12 บิต 40khz มีราคาเท่าใด",
    "context": "CREATE TABLE table_name_65 (price VARCHAR, sampling_rate VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_65 WHERE date = \"december 19\"",
    "question_en": "what team scored on december 19",
    "question_th": "ทีมใดทำประตูได้ในวันที่ 19 ธันวาคม",
    "context": "CREATE TABLE table_name_65 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_71 WHERE record = \"5–5–1–1\"",
    "question_en": "what team scored 5–5–1–1?",
    "question_th": "ทีมใดทำคะแนนได้ 5–5–1–1?",
    "context": "CREATE TABLE table_name_71 (home VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_65 WHERE date = \"november 7\"",
    "question_en": "what team scored on november 7",
    "question_th": "ทีมใดทำประตูได้ในวันที่ 7 พฤศจิกายน",
    "context": "CREATE TABLE table_name_65 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_24 WHERE rank = 1",
    "question_en": "Which player has rank 1?",
    "question_th": "ผู้เล่นคนไหนมีอันดับ 1?",
    "context": "CREATE TABLE table_name_24 (player VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT AVG(wins) FROM table_name_91 WHERE rank > 5",
    "question_en": "What's the mean number of wins with a rank that's more than 5?",
    "question_th": "จำนวนชัยชนะเฉลี่ยที่มีอันดับมากกว่า 5 คือเท่าใด",
    "context": "CREATE TABLE table_name_91 (wins INTEGER, rank INTEGER)"
  },
  {
    "answer": "SELECT earnings___$__ FROM table_name_40 WHERE player = \"tiger woods\"",
    "question_en": "What amount of earnings does Tiger Woods have?",
    "question_th": "Tiger Woods มีรายได้เท่าไหร่?",
    "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_en": "What is the position number of the club with more than 24 points and a w-l-d of 8-5-3?",
    "question_th": "สโมสรที่มีคะแนนมากกว่า 24 แต้ม และคะแนน 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_en": "What is the goals for/against of the club with 17 points?",
    "question_th": "เป้าหมายสำหรับ/ต่อสโมสรที่มี 17 แต้มคืออะไร?",
    "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_en": "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?",
    "question_th": "จำนวนเกมที่เล่นสูงสุดของสโมสรโดยมีจำนวนตำแหน่งน้อยกว่า 4 และทำได้ 29-24 ประตูต่อ/ต่อ?",
    "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_en": "Which date's attendance was more than 35,540?",
    "question_th": "มีผู้เข้าร่วมงานวันไหนมากกว่า 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_en": "What is the smallest attendance number for December 3, 1944?",
    "question_th": "จำนวนผู้เข้าร่วมที่น้อยที่สุดสำหรับวันที่ 3 ธันวาคม พ.ศ. 2487 คือเท่าใด",
    "context": "CREATE TABLE table_name_39 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT treaty_of_cession FROM table_name_60 WHERE colony = \"karikal\"",
    "question_en": "When was the Treaty of Cession for Karikal Colony?",
    "question_th": "สนธิสัญญาสัมปทานสำหรับอาณานิคมคาริกัลเกิดขึ้นเมื่อใด",
    "context": "CREATE TABLE table_name_60 (treaty_of_cession VARCHAR, colony VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_92 WHERE opponent = \"argentina\"",
    "question_en": "what day was the game in argentina",
    "question_th": "เกมที่อาร์เจนตินาเป็นวันอะไร",
    "context": "CREATE TABLE table_name_92 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_78 WHERE results¹ = \"0:0\"",
    "question_en": "what city scored 0:0",
    "question_th": "เมืองไหนทำสกอร์ 0:0",
    "context": "CREATE TABLE table_name_78 (city VARCHAR, results¹ VARCHAR)"
  },
  {
    "answer": "SELECT type_of_game FROM table_name_27 WHERE date = \"june 14\"",
    "question_en": "what game was played on june 14",
    "question_th": "เกมที่เล่นในวันที่ 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_en": "What score has april 28 as the date?",
    "question_th": "วันที่ 28 เมษายน มีคะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_5 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_96 WHERE leading_scorer = \"tim duncan (27)\"",
    "question_en": "What score has tim duncan (27) as the leading scorer?",
    "question_th": "ทิม ดันแคน (27) เป็นผู้ทำประตูนำคะแนนเท่าไหร่?",
    "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_en": "What visitor has tim duncan (16) as the leading scorer?",
    "question_th": "ผู้มาเยือนคนใดที่มีทิม ดันแคน (16) เป็นผู้ทำประตูสูงสุด?",
    "context": "CREATE TABLE table_name_18 (visitor VARCHAR, leading_scorer VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(round) FROM table_name_89 WHERE name = \"will rackley\"",
    "question_en": "What were Will Rackley's total rounds?",
    "question_th": "รอบทั้งหมดของ Will Rackley คืออะไร?",
    "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_en": "Which cornerback has the lowest overall and a pick number smaller than 16?",
    "question_th": "Cornerback ใดมีแต้มโดยรวมต่ำที่สุดและจำนวนการเลือกน้อยกว่า 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_en": "Which cornerback has the highest round?",
    "question_th": "กองหลังตัวไหนมีรอบสูงสุด?",
    "context": "CREATE TABLE table_name_97 (round INTEGER, position VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_99 WHERE date = \"25 october 2004\"",
    "question_en": "What was the outcome on 25 october 2004?",
    "question_th": "ผลลัพธ์เมื่อวันที่ 25 ตุลาคม 2547 เป็นอย่างไร?",
    "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_en": "Which opponent was a runner-up on 2 march 1998?",
    "question_th": "คู่ต่อสู้คนใดได้รองแชมป์เมื่อวันที่ 2 มีนาคม พ.ศ. 2541?",
    "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čić\"",
    "question_en": "Which championship had an oppenent of mario ančić in the final?",
    "question_th": "แชมป์รายการไหนมีคู่แข่งกับมาริโอ อันชิชในรอบชิงชนะเลิศ?",
    "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_en": "Name the change with share of 2.9%",
    "question_th": "ตั้งชื่อการเปลี่ยนแปลงด้วยส่วนแบ่ง 2.9%",
    "context": "CREATE TABLE table_name_71 (change VARCHAR, share VARCHAR)"
  },
  {
    "answer": "SELECT change FROM table_name_78 WHERE party = \"english democrats\"",
    "question_en": "Name the change for english democrats",
    "question_th": "ตั้งชื่อการเปลี่ยนแปลงสำหรับพรรคเดโมแครตในอังกฤษ",
    "context": "CREATE TABLE table_name_78 (change VARCHAR, party VARCHAR)"
  },
  {
    "answer": "SELECT AVG(votes) FROM table_name_22 WHERE party = \"one london\"",
    "question_en": "Name the average votes for one london",
    "question_th": "ตั้งชื่อคะแนนโหวตเฉลี่ยสำหรับหนึ่งลอนดอน",
    "context": "CREATE TABLE table_name_22 (votes INTEGER, party VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_77 WHERE rank = 5",
    "question_en": "Which Country has a Rank of 5?",
    "question_th": "ประเทศใดมีอันดับ 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_en": "Which Earnings ($) is the lowest one that has a Rank of 1, and Events smaller than 22?",
    "question_th": "รายได้ ($) ใดที่ต่ำที่สุดที่มีอันดับ 1 และกิจกรรมที่เล็กกว่า 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_en": "How many earnings have Wins larger than 3?",
    "question_th": "รายได้จำนวนเท่าใดที่มีชัยชนะมากกว่า 3?",
    "context": "CREATE TABLE table_name_70 (earnings___ INTEGER, wins INTEGER)"
  },
  {
    "answer": "SELECT player FROM table_name_49 WHERE wins = 4",
    "question_en": "Which Player has 4 Wins?",
    "question_th": "ผู้เล่นคนไหนชนะ 4 ครั้ง?",
    "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_en": "How many Poles have a Bike of honda rc212v, and Podiums smaller than 0?",
    "question_th": "จักรยานฮอนด้า rc212v หนึ่งคันมีเสากี่ตัว และโพเดียมเล็กกว่า 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_en": "Which Wins is the highest one that has a Pos of 2nd, and Poles larger than 2?",
    "question_th": "ชัยชนะใดคือชัยชนะสูงสุดที่มีอันดับ 2 และโพลที่ใหญ่กว่า 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_en": "What is the average of points for 8th place with draw more than 8?",
    "question_th": "คะแนนเฉลี่ยของอันดับที่ 8 ที่เสมอมากกว่า 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–0–0\"",
    "question_en": "Which Points have a Game smaller than 8, and a Record of 1–0–0?",
    "question_th": "แต้มใดที่มีเกมน้อยกว่า 8 และมีสถิติ 1–0–0",
    "context": "CREATE TABLE table_name_73 (points INTEGER, game VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT SUM(game) FROM table_name_80 WHERE record = \"5–3–1\" AND october < 29",
    "question_en": "Which Game has a Record of 5–3–1, and an October smaller than 29?",
    "question_th": "เกมใดมีสถิติ 5–3–1 และเดือนตุลาคมน้อยกว่า 29",
    "context": "CREATE TABLE table_name_80 (game INTEGER, record VARCHAR, october VARCHAR)"
  },
  {
    "answer": "SELECT MIN(game) FROM table_name_76 WHERE score = \"3–4\"",
    "question_en": "Which Game has a Score of 3–4?",
    "question_th": "เกมใดมีคะแนน 3–4?",
    "context": "CREATE TABLE table_name_76 (game INTEGER, score VARCHAR)"
  },
  {
    "answer": "SELECT SUM(game) FROM table_name_19 WHERE record = \"4–2–1\" AND points > 9",
    "question_en": "Which Game has a Record of 4–2–1, and Points larger than 9?",
    "question_th": "เกมใดมีสถิติ 4–2–1 และแต้มมากกว่า 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_en": "Which Nationality has a Position of defense, and a Player of nikita korovkin?",
    "question_th": "สัญชาติใดมีตำแหน่งป้องกัน และเป็นผู้เล่นของ 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_en": "Which Nationality has a Position of left wing?",
    "question_th": "สัญชาติใดมีตำแหน่งปีกซ้าย?",
    "context": "CREATE TABLE table_name_99 (nationality VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_18 WHERE position = \"forward\"",
    "question_en": "Which Player has a Position of forward?",
    "question_th": "ผู้เล่นคนไหนมีตำแหน่งกองหน้า?",
    "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_en": "Which Week 3 Sept 14 has a Week 6 Oct 5 of kansas (4-1)?",
    "question_th": "สัปดาห์ที่ 3 กันยายน 57 มีสัปดาห์ที่ 6 วันที่ 5 ตุลาคมของแคนซัส (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_en": "Which Week 2 Sept 7 has a Week 6 Oct 5 of wake forest (3-1)?",
    "question_th": "สัปดาห์ที่ 2 7 กันยายนมีสัปดาห์ที่ 6 วันที่ 5 ตุลาคมของ 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_en": "Which Week 1 Sept 2 has a Week 3 Sept 14 of south florida (3-0)?",
    "question_th": "สัปดาห์ที่ 1 2 กันยายนมีสัปดาห์ที่ 3 14 กันยายนของฟลอริดาตอนใต้ (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_en": "Which Week 7 Oct 12 has a Week 6 Oct 5 of boise state (4-0)?",
    "question_th": "สัปดาห์ที่ 7 ต.ค. 55 มีสัปดาห์ที่ 6 วันที่ 5 ต.ค. ของรัฐบอยซี (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_en": "Which Week 2 Sept 7 has a Week 7 Oct 12 of ball state (7-0)?",
    "question_th": "สัปดาห์ที่ 2 วันที่ 7 กันยายนมีสัปดาห์ที่ 7 วันที่ 12 ตุลาคมของสถานะบอล (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_en": "Which Week 6 Oct 5 has a Week 14 Nov 30 of texas (11-1)?",
    "question_th": "สัปดาห์ที่ 6 5 ต.ค. มีสัปดาห์ที่ 14 พ.ย. 30 ของเท็กซัส (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_en": "What is the highest round of Tommy Allman, who had a pick less than 40?",
    "question_th": "Tommy Allman รอบที่สูงที่สุดที่มีให้เลือกน้อยกว่า 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_en": "Who was the back player with a pick less than 183 from the round greater than 12?",
    "question_th": "ใครคือผู้เล่นสำรองที่มีให้เลือกน้อยกว่า 183 จากรอบที่มากกว่า 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_en": "What is the total number of rounds of the end player with a pick number greater than 303?",
    "question_th": "จำนวนรอบทั้งหมดของผู้เล่นปลายทางที่มีหมายเลขเลือกมากกว่า 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_en": "What is the highest pick of the back player from round 28?",
    "question_th": "ผู้เล่นกองหลังที่เลือกมากที่สุดจากรอบ 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_en": "What is position of the player with a pick number greater than 315 and a round of 30?",
    "question_th": "ตำแหน่งผู้เล่นที่มีหมายเลขเลือกมากกว่า 315 และรอบ 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_en": "On what Week was the Result W 17-14?",
    "question_th": "ผลลัพธ์ 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_en": "What was the Result after the Week 4 on November 3, 1968?",
    "question_th": "ผลลัพธ์หลังจากสัปดาห์ที่ 4 ในวันที่ 3 พฤศจิกายน พ.ศ. 2511 เป็นอย่างไร",
    "context": "CREATE TABLE table_name_27 (result VARCHAR, week VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT AVG(attendance) FROM table_name_57 WHERE week = 4",
    "question_en": "What is the attendance in week 4?",
    "question_th": "ผู้เข้าร่วมในสัปดาห์ที่ 4 คืออะไร?",
    "context": "CREATE TABLE table_name_57 (attendance INTEGER, week VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_16 WHERE record = \"17–25\"",
    "question_en": "What was the date of the game with a record of 17–25?",
    "question_th": "วันที่ของเกมด้วยสถิติ 17–25 คืออะไร?",
    "context": "CREATE TABLE table_name_16 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_47 WHERE score = \"6–5 (10)\"",
    "question_en": "Who was the opponent at the game with a score of 6–5 (10)?",
    "question_th": "คู่ต่อสู้ในเกมคือใครด้วยคะแนน 6–5 (10)",
    "context": "CREATE TABLE table_name_47 (opponent VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT res FROM table_name_1 WHERE record = \"4-4\"",
    "question_en": "What was the result of the bout that led to a 4-4 record?",
    "question_th": "ผลการแข่งขันที่นำสถิติ 4-4 มาเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_1 (res VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_19 WHERE record = \"4-3\"",
    "question_en": "Which location held the bout that led to a 4-3 record?",
    "question_th": "สนามไหนจัดการแข่งขันจนทำสถิติ 4-3?",
    "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_en": "What discs has a region 1 release date of January 22, 2008?",
    "question_th": "แผ่นใดบ้างที่มีวันที่วางจำหน่ายภูมิภาค 1 ในวันที่ 22 มกราคม พ.ศ. 2551",
    "context": "CREATE TABLE table_name_90 (discs VARCHAR, region_1_release VARCHAR)"
  },
  {
    "answer": "SELECT MIN(rank) FROM table_name_67 WHERE name = \"citigroup\"",
    "question_en": "What is the lowest rank of Citigroup?",
    "question_th": "อันดับต่ำสุดของซิตี้กรุ๊ปคืออะไร?",
    "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_en": "What is the market value of the automotive industry?",
    "question_th": "มูลค่าตลาดของอุตสาหกรรมยานยนต์เป็นเท่าใด?",
    "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_en": "Name the attendance with result of t 14-14",
    "question_th": "ตั้งชื่อผู้เข้าร่วมด้วยผลลัพธ์ของ 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_en": "Name the total number of attendance for october 20, 1946 with week less than 4",
    "question_th": "ตั้งชื่อจำนวนผู้เข้าร่วมทั้งหมดสำหรับวันที่ 20 ตุลาคม 1946 โดยน้อยกว่าสัปดาห์ที่ 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_en": "Name the most attendance for november 17, 1946 and week more than 8",
    "question_th": "ระบุผู้เข้าร่วมมากที่สุดสำหรับวันที่ 17 พฤศจิกายน พ.ศ. 2489 และสัปดาห์ที่มากกว่า 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_en": "What is the sum of the points for the player who was a rank of 61t?",
    "question_th": "คะแนนรวมของผู้เล่นที่อยู่ในอันดับ 61t คืออะไร?",
    "context": "CREATE TABLE table_name_92 (points INTEGER, rank VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_87 WHERE points > 1 OFFSET 052",
    "question_en": "Who is the player who had more than 1,052 points?",
    "question_th": "ใครคือผู้เล่นที่ได้แต้มเกิน 1,052 แต้ม?",
    "context": "CREATE TABLE table_name_87 (player VARCHAR, points INTEGER)"
  },
  {
    "answer": "SELECT MAX(points) FROM table_name_96 WHERE player = \"emmitt smith\"",
    "question_en": "What are the highest points that Emmitt Smith had?",
    "question_th": "Emmitt Smith มีคะแนนสูงสุดคืออะไร?",
    "context": "CREATE TABLE table_name_96 (points INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_33 WHERE record = \"6–8\"",
    "question_en": "Record of 6–8 had what attendance?",
    "question_th": "บันทึก 6–8 เข้าร่วมอะไร",
    "context": "CREATE TABLE table_name_33 (attendance VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_31 WHERE result = \"l 17–20\"",
    "question_en": "Result of l 17–20 had what attendance?",
    "question_th": "ผลการแข่งขัน l 17–20 มีผู้เข้าร่วมเท่าใด",
    "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–31\"",
    "question_en": "Game Site of hoosier dome, and a Result of l 7–31 involved what attendance?",
    "question_th": "เว็บไซต์เกมของ Hoosier Dome และผลลัพธ์ของ l 7–31 เกี่ยวข้องกับผู้เข้าร่วมจำนวนเท่าใด",
    "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_en": "Which Year is the highest one that has a Venue of blackwolf run, composite course, and a Score of 281?",
    "question_th": "ปีไหนที่มีสนามวิ่งแบล็ควูล์ฟ คอร์สคอมโพสิต และคะแนนสูงสุดคือปีไหน?",
    "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_en": "Which Champion has a Venue of old waverly golf club?",
    "question_th": "Champion คนไหนมีสนามของสโมสรกอล์ฟเวฟเวอร์ลี่เก่า?",
    "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_en": "How many world rankings are after Aug 5, 1980 ?",
    "question_th": "อันดับโลกหลังวันที่ 5 ส.ค. 2523 มีกี่อันดับ ?",
    "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_en": "On which date is there a performance of more than 8.22.72?",
    "question_th": "มีผลการดำเนินงานเกิน 8.22.72 วันไหน?",
    "context": "CREATE TABLE table_name_9 (date VARCHAR, performance VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_84 WHERE venue = \"rome\"",
    "question_en": "The venue of Rome has which date?",
    "question_th": "สถานที่โรมมีวันไหน?",
    "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_en": "What was the 1st leg of the match that had an aggregate of 4-3?",
    "question_th": "เลกแรกของแมตช์ที่สกอร์รวม 4-3 คืออะไร?",
    "context": "CREATE TABLE table_name_11 (agg VARCHAR)"
  },
  {
    "answer": "SELECT last_final_lost FROM table_name_49 WHERE wins = \"7\"",
    "question_en": "When was the last final lost of the club with 7 wins?",
    "question_th": "สุดท้ายแพ้สโมสรด้วยการชนะ 7 นัดคือเมื่อไหร่?",
    "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_en": "How many runners-up did the club with the last final lost in 1985 have?",
    "question_th": "สโมสรที่แพ้รอบชิงชนะเลิศครั้งสุดท้ายในปี 1985 มีรองแชมป์กี่คน?",
    "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_en": "When was the last final lost of the club with a last win in 1959?",
    "question_th": "ครั้งสุดท้ายที่สโมสรแพ้ครั้งสุดท้ายในปี 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_en": "When was the last win of Celtic?",
    "question_th": "เซลติกชนะครั้งสุดท้ายเมื่อใด?",
    "context": "CREATE TABLE table_name_89 (last_win VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_name_27 WHERE runners_up = \"13\"",
    "question_en": "Which club had 13 runners-up?",
    "question_th": "สโมสรใดมีรองแชมป์ 13 คน?",
    "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_en": "Who is the visitor in Philadelphia on March 6?",
    "question_th": "ใครคือผู้มาเยือนฟิลาเดลเฟียในวันที่ 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_en": "what date were they playing in hawthorn",
    "question_th": "พวกเขาเล่น Hawthorn วันไหน",
    "context": "CREATE TABLE table_name_17 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT report FROM table_name_48 WHERE home_team = \"geelong\"",
    "question_en": "what report was in geelong",
    "question_th": "รายงานอะไรอยู่ที่จีลอง",
    "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_en": "In what Town/City is Nana Museum of The Arctic located?",
    "question_th": "พิพิธภัณฑ์นานาแห่งอาร์กติกตั้งอยู่ในเมืองใด?",
    "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_en": "What is the Name of the Multiple Type museum in Anchorage?",
    "question_th": "พิพิธภัณฑ์หลายประเภทในแองเคอเรจชื่ออะไร",
    "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_en": "In what Borough is the Anchorage museum of Natural History?",
    "question_th": "พิพิธภัณฑ์ประวัติศาสตร์ธรรมชาติ Anchorage ตั้งอยู่ในเมืองใด",
    "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_en": "In what Region is the Native American museum in Anchorage?",
    "question_th": "พิพิธภัณฑ์ชนพื้นเมืองอเมริกันในแองเคอเรจตั้งอยู่ในภูมิภาคใด",
    "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_en": "What Type of museum is the Valdez museum?",
    "question_th": "พิพิธภัณฑ์วาลเดซเป็นพิพิธภัณฑ์ประเภทใด",
    "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_en": "In what Borough is the History Type Fairbanks Community Museum?",
    "question_th": "พิพิธภัณฑ์ชุมชนประเภทประวัติศาสตร์ Fairbanks ในเขตเทศบาลใด",
    "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_en": "what is the zip code of boonville",
    "question_th": "รหัสไปรษณีย์ของ บูนวิลล์ คืออะไร",
    "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_en": "Which tournament was held on 9 Jun 2002?",
    "question_th": "การแข่งขันใดจัดขึ้นในวันที่ 9 มิถุนายน พ.ศ. 2545?",
    "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_en": "What is the winning score with a margin of victory of 4 strokes for the NEC Invitational tournament?",
    "question_th": "คะแนนชนะโดยมีส่วนต่างของชัยชนะ 4 จังหวะสำหรับทัวร์นาเมนต์ NEC Invitational คืออะไร?",
    "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 = –8(71 - 69 - 67 - 73 = 280)",
    "question_en": "Who is the runner-up where the winning score is –8 (71-69-67-73=280)?",
    "question_th": "ใครคือรองชนะเลิศโดยคะแนนชนะคือ –8 (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_en": "What is the winning score for Tournament of linde german masters with a margin of victory of 1 stroke?",
    "question_th": "คะแนนชนะสำหรับ Tournament of linde german masters พร้อมด้วยชัยชนะ 1 จังหวะคือเท่าไร?",
    "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 = –6(65 - 70 - 70 - 69 = 274)",
    "question_en": "Who is runner-up where the winning score is –6 (65-70-70-69=274) and the margin of victory is 3 strokes?",
    "question_th": "ใครคือรองชนะเลิศ โดยที่คะแนนชนะคือ –6 (65-70-70-69=274) และส่วนต่างของชัยชนะคือ 3 จังหวะ?",
    "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_en": "What is the winning score where the runner-up is Robert-Jan Derksen and the margin of victory is 1 stroke?",
    "question_th": "สกอร์ชนะคือเท่าไร รองชนะเลิศ คือ โรเบิร์ต-แยน เดอร์กเซ่น และระยะขอบชัยชนะ 1 สโตรค?",
    "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_en": "What are the high rebounds of team @ Charlotte?",
    "question_th": "ทีม@ชาร์ลอตต์รีบาวด์สูงขนาดไหน?",
    "context": "CREATE TABLE table_name_17 (high_rebounds VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_name_46 WHERE game = 68",
    "question_en": "What is the high rebounds of game 68?",
    "question_th": "เกม 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_en": "What is the score of New York team before game 61?",
    "question_th": "ทีมนิวยอร์คก่อนเกม 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_en": "When David McNamara was the opponent in the final, what was the tier?",
    "question_th": "เมื่อ เดวิด แม็คนามารา เป็นคู่ต่อสู้ในรอบชิงชนะเลิศ ระดับไหน?",
    "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_en": "In 2011, how many tourists visited the country that had 23.4 million tourists in 2012?",
    "question_th": "ในปี พ.ศ. 2554 มีนักท่องเที่ยวเดินทางมาเยือนประเทศจำนวนเท่าใด โดยมีนักท่องเที่ยวจำนวน 23.4 ล้านคนในปี พ.ศ. 2555",
    "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_en": "How many tourists visited the country that had 2.5 million tourists in 2011?",
    "question_th": "มีนักท่องเที่ยวเดินทางเข้าประเทศจำนวนเท่าใดซึ่งมีนักท่องเที่ยว 2.5 ล้านคนในปี 2554",
    "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_en": "How far Venue of seoul, south korea is?",
    "question_th": "สถานที่จัดงานโซล เกาหลีใต้ ไกลแค่ไหน?",
    "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_en": "Which Venue has a Tournament of olympic games with a Result of 4th?",
    "question_th": "สถานที่ใดที่มีการแข่งขันกีฬาโอลิมปิกด้วยผลการแข่งขันที่ 4?",
    "context": "CREATE TABLE table_name_33 (venue VARCHAR, tournament VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_54 WHERE venue = \"edmonton, canada\"",
    "question_en": "What is the Result of Venue of edmonton, canada?",
    "question_th": "ผลลัพธ์ของสถานที่ในเมืองเอดมันตัน ประเทศแคนาดา คืออะไร?",
    "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_en": "What is the 1st leg of Team 2 PSV Eindhoven?",
    "question_th": "เลกแรกของทีม 2 พีเอสวี ไอนด์โฮเฟ่น คืออะไร?",
    "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_en": "Which opponent was played at Forbes Field after week 4?",
    "question_th": "คู่ต่อสู้คนใดเล่นที่ Forbes Field หลังจากสัปดาห์ที่ 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_en": "Which opponent was played on week 9?",
    "question_th": "ฝ่ายตรงข้ามคนใดที่เล่นในสัปดาห์ที่ 9?",
    "context": "CREATE TABLE table_name_46 (opponent VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_28 WHERE game_site = \"fenway park\"",
    "question_en": "What was the date of the game played at Fenway Park?",
    "question_th": "เกมที่เล่นที่เฟนเวย์ พาร์กคือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_28 (date VARCHAR, game_site VARCHAR)"
  },
  {
    "answer": "SELECT opponents FROM table_name_23 WHERE year = \"1998–99\" AND team = \"aston villa\"",
    "question_en": "Which Opponents have a Year of 1998–99, and a Team of aston villa?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีปี 1998–99 และทีมแอสตัน วิลล่า?",
    "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–12\"",
    "question_en": "Which Score has Opponents of valencia, and a Year of 2011–12?",
    "question_th": "สกอร์ใดที่มีฝ่ายตรงข้ามของบาเลนเซีย และปี 2554–55?",
    "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–64\"",
    "question_en": "Which Opponents have a Team of arsenal, and a Year of 1963–64?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีทีมคลังแสง และปี 1963–64?",
    "context": "CREATE TABLE table_name_49 (opponents VARCHAR, team VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT opponents FROM table_name_78 WHERE year = \"1999–2000\" AND team = \"leeds united\"",
    "question_en": "Which Opponents have a Year of 1999–2000, and a Team of leeds united?",
    "question_th": "ฝ่ายตรงข้ามคนใดที่มีปี 1999–2000 และทีมลีดส์เป็นหนึ่งเดียวกัน?",
    "context": "CREATE TABLE table_name_78 (opponents VARCHAR, year VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT opponents FROM table_name_82 WHERE score = \"1–2\" AND team = \"arsenal\" AND progress = \"first round\"",
    "question_en": "Which Opponents have a Score of 1–2, and a Team of arsenal, and Progress of first round?",
    "question_th": "ฝ่ายตรงข้ามคนใดที่มีคะแนน 1–2 และทีมคลังแสง และความก้าวหน้าของรอบแรก?",
    "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_en": "How much Rank has Points larger than 282.5?",
    "question_th": "อันดับมีคะแนนมากกว่า 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_en": "Which Rank is the highest one that has Points smaller than 256.6?",
    "question_th": "อันดับไหนสูงสุดที่มีคะแนนน้อยกว่า 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_en": "Which 2nd (m) is the highest one that has a Nationality of sui, and a Rank smaller than 3?",
    "question_th": "อันที่ 2 (m) อันไหนสูงที่สุดที่มีสัญชาติ sui และอันดับน้อยกว่า 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_en": "What is the UK broadcast date of the episode where Chris Bonington was the presenter?",
    "question_th": "วันที่ออกอากาศในสหราชอาณาจักรของตอนที่ Chris Bonington เป็นผู้นำเสนอคือเมื่อใด",
    "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_en": "What is the episode title of the episode with Ben Okri as the presenter?",
    "question_th": "ชื่อตอนของตอนที่มี Ben Okri เป็นผู้นำเสนอคืออะไร?",
    "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_en": "Who is the presenter of the episode broadcast in the UK on 1996-09-25?",
    "question_th": "ใครคือผู้นำเสนอตอนที่ออกอากาศในสหราชอาณาจักรวันที่ 25-09-2539?",
    "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_en": "What is the UK broadcast date of the episode with Ben Okri as the presenter?",
    "question_th": "วันที่ออกอากาศในสหราชอาณาจักรของตอนที่มี Ben Okri เป็นผู้นำเสนอคือวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_87 (uk_broadcast_date VARCHAR, presenter VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_92 WHERE home = \"bobcats\"",
    "question_en": "What was the score when the team played at the bobcats?",
    "question_th": "คะแนนเมื่อทีมเล่นที่รอกคืออะไร?",
    "context": "CREATE TABLE table_name_92 (score VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_72 WHERE record = \"43-13\"",
    "question_en": "What was the score when the Spurs' record was 43-13?",
    "question_th": "เมื่อสถิติของสเปอร์สคือ 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_en": "What is the country's name with a numeric code less than 246 and a Latin 3-letter code of slv?",
    "question_th": "ชื่อประเทศที่มีรหัสตัวเลขน้อยกว่า 246 และรหัส slv ละติน 3 ตัวอักษรคืออะไร",
    "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_en": "What is the Russian name with lbr as the Latin 3-letter code?",
    "question_th": "ชื่อภาษารัสเซียที่มี lbr เป็นรหัสตัวอักษรละติน 3 ตัวคืออะไร?",
    "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_en": "What is the country name with a numeric code less than 580 and a dk Latin 2-letter code?",
    "question_th": "ชื่อประเทศที่มีรหัสตัวเลขน้อยกว่า 580 และรหัส dk Latin 2 ตัวอักษรคืออะไร",
    "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_en": "What is the Cyrillic code with a cu Latin 2-letter code?",
    "question_th": "รหัสซีริลลิกที่มีรหัส cu Latin 2 ตัวอักษรคืออะไร?",
    "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_en": "Name the least place for draw more than 3 and points of 8",
    "question_th": "ตั้งชื่อที่น้อยที่สุดสำหรับเสมอมากกว่า 3 และแต้ม 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_en": "Name the song for points less than 16 and draw less than 3",
    "question_th": "ตั้งชื่อเพลงให้แต้มน้อยกว่า 16 และวาดน้อยกว่า 3",
    "context": "CREATE TABLE table_name_99 (song VARCHAR, points VARCHAR, draw VARCHAR)"
  },
  {
    "answer": "SELECT single FROM table_name_67 WHERE artist = \"queen\"",
    "question_en": "what is the single of the queen",
    "question_th": "ซิงเกิลของราชินีคืออะไร",
    "context": "CREATE TABLE table_name_67 (single VARCHAR, artist VARCHAR)"
  },
  {
    "answer": "SELECT artist FROM table_name_41 WHERE year = \"1953\"",
    "question_en": "what artist won in 1953",
    "question_th": "ศิลปินคนไหนชนะในปี 1953",
    "context": "CREATE TABLE table_name_41 (artist VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_14 WHERE artist = \"david whitfield\"",
    "question_en": "what year did david whitfield win",
    "question_th": "เดวิด วิทฟิลด์ ชนะในปีไหน",
    "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_en": "What is the average rank of Roman Koudelka, who has less than 274.4 points?",
    "question_th": "โรมัน คูเดลก้า เฉลี่ยอันดับไหนต่ำกว่า 274.4 แต้ม?",
    "context": "CREATE TABLE table_name_41 (rank INTEGER, points VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT SUM(points) FROM table_name_82 WHERE game < 14",
    "question_en": "How many points was before game 14?",
    "question_th": "ก่อนเกมที่ 14 ได้กี่แต้ม?",
    "context": "CREATE TABLE table_name_82 (points INTEGER, game INTEGER)"
  },
  {
    "answer": "SELECT AVG(points) FROM table_name_8 WHERE november = 6",
    "question_en": "What is the average points on November 6?",
    "question_th": "คะแนนเฉลี่ยของวันที่ 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_en": "Which average's against score has 2 as a difference and a lost of 5?",
    "question_th": "ค่าเฉลี่ยใดต่อคะแนนมีความแตกต่าง 2 และแพ้ 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_en": "How many positions had a difference of - 4 and an against of less than 24?",
    "question_th": "มีกี่ตำแหน่งที่มีผลต่าง - 4 และต่อน้อยกว่า 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_en": "What is the smallest lost when position is larger than 6, drawn is 7, and the points stat is less than 15?",
    "question_th": "อะไรคือการสูญเสียที่น้อยที่สุดเมื่อตำแหน่งมากกว่า 6 เสมอคือ 7 และสถิติคะแนนน้อยกว่า 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_en": "What is the largest played number when the difference is - 8 and position is more than 8?",
    "question_th": "หมายเลขที่เล่นมากที่สุดคืออะไรเมื่อผลต่างคือ - 8 และตำแหน่งมากกว่า 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_en": "What is the mean drawn when the difference is 0 and the against stat is more than 31?",
    "question_th": "ค่าเฉลี่ยที่ดึงออกมาเมื่อผลต่างเป็น 0 และสถิติเทียบกับมากกว่า 31 คืออะไร",
    "context": "CREATE TABLE table_name_34 (drawn INTEGER, difference VARCHAR, against VARCHAR)"
  },
  {
    "answer": "SELECT owner FROM table_name_35 WHERE winner = \"meridiana\"",
    "question_en": "what is the winner of meridiana",
    "question_th": "ผู้ชนะของ meridiana คืออะไร",
    "context": "CREATE TABLE table_name_35 (owner VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT MAX(weight) FROM table_name_44 WHERE number = 13",
    "question_en": "Number of 13 that has what highest weight?",
    "question_th": "หมายเลข 13 ที่มีน้ำหนักมากที่สุดคือข้อใด?",
    "context": "CREATE TABLE table_name_44 (weight INTEGER, number VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_name_5 WHERE weight = 220",
    "question_en": "Weight of 220 has what class?",
    "question_th": "น้ำหนัก 220 อยู่คลาสไหนครับ?",
    "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_en": "Name of byron geis, and a Weight smaller than 195 involves what average number?",
    "question_th": "ชื่อของไบรอน ไกส์ และน้ำหนักน้อยกว่า 195 เกี่ยวข้องกับตัวเลขเฉลี่ยจำนวนเท่าใด",
    "context": "CREATE TABLE table_name_63 (number INTEGER, name VARCHAR, weight VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_58 WHERE date = \"march 22\"",
    "question_en": "What was the record on March 22?",
    "question_th": "บันทึกเมื่อวันที่ 22 มีนาคมคืออะไร?",
    "context": "CREATE TABLE table_name_58 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT AVG(february) FROM table_name_96 WHERE game = 53",
    "question_en": "What day in february was game 53?",
    "question_th": "เกม 53 คือวันไหนในเดือนกุมภาพันธ์?",
    "context": "CREATE TABLE table_name_96 (february INTEGER, game VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_29 WHERE february = 23",
    "question_en": "What is the team's record on februrary 23?",
    "question_th": "บันทึกของทีมเมื่อวันที่ 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_en": "Which Place is the lowest one that has a Total smaller than 24, and a Draw larger than 7?",
    "question_th": "ตำแหน่งใดคือตำแหน่งต่ำสุดที่มีคะแนนรวมน้อยกว่า 24 และเสมอมากกว่า 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_en": "with lola t86/50 chassis and less than 7 points what is the entrant?",
    "question_th": "ด้วยแชสซีของ lola t86/50 และน้อยกว่า 7 คะแนน ผู้เข้าแข่งขันคือใคร?",
    "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_en": "after 1987 and entrant of first racing what is the highest points?",
    "question_th": "หลังจากปี 1987 และผู้เข้าร่วมการแข่งขันครั้งแรกคะแนนสูงสุดคืออะไร?",
    "context": "CREATE TABLE table_name_69 (points INTEGER, entrant VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(points) FROM table_name_62 WHERE year > 1988",
    "question_en": "with year greater than 1988 what is the total number of points?",
    "question_th": "โดยปีมากกว่าปี 2531 มีคะแนนรวมเป็นเท่าใด",
    "context": "CREATE TABLE table_name_62 (points VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT SUM(points) FROM table_name_49 WHERE entrant = \"forti corse\"",
    "question_en": "what is the points total for forti corse?",
    "question_th": "คะแนนรวมของ 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×10 −6\"",
    "question_en": "What is the Parts-per example of 2×10 −6?",
    "question_th": "Parts-per ตัวอย่างของ 2×10 −6 คืออะไร?",
    "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_en": "What is the Coefficient of 2 ppt?",
    "question_th": "ค่าสัมประสิทธิ์ของ 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_en": "what is the format of catalog 865 821-1?",
    "question_th": "แคตตาล็อก 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_en": "What season had Kanto Gakuin University as the winner, with an attendance of n/a, and a title of 37th?",
    "question_th": "Kanto Gakuin University เป็นผู้ชนะในฤดูกาลใด โดยมีการเข้าร่วม n/a และอันดับที่ 37",
    "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_en": "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?",
    "question_th": "เกมนี้ชื่อว่าอะไรโดยมีผู้เข้าชม n/a โดยรองชนะเลิศคือ Waseda และรายละเอียดฤดูกาล 1995–6",
    "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_en": "What season has a runner-up of waseda, and a title of 47th?",
    "question_th": "ฤดูกาลใดมีวาเซดะรองชนะเลิศและอันดับที่ 47",
    "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_en": "Who was the winner in the game that had Teikyo as the runner-up?",
    "question_th": "ใครคือผู้ชนะในเกมที่มีเทย์เคียวเป็นรองแชมป์?",
    "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_en": "Who was the winner in the game that had a title of 32nd, and Waseda as the runner-up?",
    "question_th": "ใครเป็นผู้ชนะในเกมที่มีตำแหน่งที่ 32 และวาเซดะเป็นรองชนะเลิศ?",
    "context": "CREATE TABLE table_name_56 (winner VARCHAR, runner_up VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_97 WHERE week = 6",
    "question_en": "what is the date on week 6",
    "question_th": "สัปดาห์ที่ 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_en": "Which City has 600kw 500kw ERP (Analog/ Digital)?",
    "question_th": "เมืองใดมี ERP ขนาด 600kw 500kw (อนาล็อก/ดิจิตอล)",
    "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_en": "Which Region served has  of 1176 m 1190 m HAAT (Analog/ Digital) 1?",
    "question_th": "ภูมิภาคใดที่ให้บริการมี 1176 ม. 1190 ม. HAAT (อนาล็อก/ดิจิตอล) 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_en": "Which City has 600kw 500kw ERP ?",
    "question_th": "เมืองใดมี ERP 600kw 500kw?",
    "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_en": "Which City has a 360kw 90kw ERP?",
    "question_th": "เมืองใดมี ERP ขนาด 360kw 90kw?",
    "context": "CREATE TABLE table_name_32 (city VARCHAR, erp__analog__digital_ VARCHAR)"
  },
  {
    "answer": "SELECT series FROM table_name_2 WHERE game > 4",
    "question_en": "What was the series standing for games over 4?",
    "question_th": "ซีรีส์นี้มีจุดยืนสำหรับเกมที่มีมากกว่า 4 เกมอย่างไร",
    "context": "CREATE TABLE table_name_2 (series VARCHAR, game INTEGER)"
  },
  {
    "answer": "SELECT AVG(game) FROM table_name_52 WHERE date = \"may 20\"",
    "question_en": "What is the game number held on May 20?",
    "question_th": "หมายเลขเกมที่จัดขึ้นในวันที่ 20 พฤษภาคมคืออะไร?",
    "context": "CREATE TABLE table_name_52 (game INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_33 WHERE record = \"55-51\"",
    "question_en": "What was the score of the game when the Indians ended up with a record of 55-51?",
    "question_th": "เมื่ออินเดียนแดงจบด้วยสถิติ 55-51 ในเกมนั้นสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_33 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_92 WHERE record = \"67-58\"",
    "question_en": "On which date did the Indians have a record of 67-58",
    "question_th": "ชาวอินเดียมีสถิติ 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_en": "Which Work has a Result of nominated, and an Award of contigo award, and a Year smaller than 2002?",
    "question_th": "งานใดมีผลการเสนอชื่อเข้าชิงและได้รับรางวัล Contigo และหนึ่งปีที่เล็กกว่าปี 2545?",
    "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_en": "How many years have an Award of press award?",
    "question_th": "รางวัลสื่อมวลชนมีกี่ปี?",
    "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_en": "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?",
    "question_th": "รางวัลใดที่มีปีที่น้อยกว่าปี 2004 และมีผลงานของโคลนและผลการชนะ และหมวดหมู่ของนักแสดงหญิงคนโปรด?",
    "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_en": "Which Year is the highest one that has a Work of the clone, and an Award of contigo award?",
    "question_th": "ปีใดที่สูงที่สุดที่มีผลงานของโคลนและรางวัล Contigo?",
    "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_en": "With the Destination of Jupiter and the Closest approach of 4 February 2004, what is the Time elapsed?",
    "question_th": "ด้วยจุดหมายปลายทางของดาวพฤหัสบดีและการเข้าใกล้ที่ใกล้ที่สุดในวันที่ 4 กุมภาพันธ์ พ.ศ. 2547 เวลาที่ผ่านไปคืออะไร?",
    "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_en": "What Time elapsed has both the Launched of 15 October 1997 and the Closest approach of 24 June 1999?",
    "question_th": "เวลาที่ผ่านไปมีทั้งการเปิดตัวเมื่อวันที่ 15 ตุลาคม พ.ศ. 2540 และแนวทางที่ใกล้ที่สุดในวันที่ 24 มิถุนายน พ.ศ. 2542",
    "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_en": "What Time elapsed has 14 February 2011 as the Closest approach?",
    "question_th": "เวลาที่ผ่านไปคือวันที่ 14 กุมภาพันธ์ 2554 เป็นแนวทางที่ใกล้ที่สุด",
    "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_en": "What Launched has Time elapsed of 1991 days (5 yr, 5 mo, 12 d)?",
    "question_th": "สิ่งที่เปิดตัวมีเวลาที่ผ่านไปในปี 1991 (5 ปี 5 เดือน 12 วัน)?",
    "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_en": "With a Launched of 3 July 1998 what is the Closest approach?",
    "question_th": "ด้วยการเปิดตัวเมื่อวันที่ 3 กรกฎาคม พ.ศ. 2541 แนวทางที่ใกล้ที่สุดคืออะไร",
    "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_en": "What Launched has both a Spacecraft of Ulysses and 491 days (1 yr, 4 mo, 3 d) as Time elapsed?",
    "question_th": "สิ่งที่เปิดตัวมีทั้งยานอวกาศของ Ulysses และ 491 วัน (1 ปี 4 เดือน 3 วัน) ตามเวลาที่ผ่านไป?",
    "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_en": "What percentage is Karen Handel at in the poll in which Eric Johnson is 13% and undecided is 22%?",
    "question_th": "Karen Handel อยู่ที่กี่เปอร์เซ็นต์ในการสำรวจความคิดเห็น โดย Eric Johnson อยู่ที่ 13% และไม่แน่ใจคือ 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_en": "In what poll is Nathan Deal at 13% and John Oxendine at 28%?",
    "question_th": "Nathan Deal อยู่ที่ 13% และ John Oxendine อยู่ที่ 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_en": "What is Eric Johnson at in the poll where Karen Handel is at 12%?",
    "question_th": "Eric Johnson อยู่ในการสำรวจความคิดเห็นโดยที่ Karen Handel อยู่ที่ 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_en": "In what poll is John Oxendine at 32%?",
    "question_th": "John Oxendine อยู่ที่ 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_en": "What is John Oxendine at in the poll where Karen Handel is at 38%?",
    "question_th": "John Oxendine ทำอะไรในแบบสำรวจความคิดเห็น โดยที่ Karen Handel อยู่ที่ 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_en": "What is Karen Handel polling at in the Insideradvantage poll where John Oxendine is at 15%?",
    "question_th": "Karen Handel ทำการสำรวจอะไรในการสำรวจความคิดเห็น Insideradvantage โดยที่ John Oxendine อยู่ที่ 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_en": "What was the 1991 score?",
    "question_th": "คะแนนปี 1991 คืออะไร?",
    "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_en": "Where was the 1966 competition with a winner of Gary Cowan held?",
    "question_th": "การแข่งขันปี 1966 กับผู้ชนะของ Gary Cowan จัดขึ้นที่ไหน?",
    "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_en": "Who was the runner-up of the competition played at Minikahda Club?",
    "question_th": "ใครคือรองชนะเลิศการแข่งขันที่เล่นที่ 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_en": "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?",
    "question_th": "ปีใดเป็นปีสูงสุดที่มีการใช้จ่ายสูงสุดถัดไปของ aarp และการใช้จ่าย Cham ของสหรัฐฯ อยู่ที่ 39,805,000 ดอลลาร์ และอันดับ Cham ของสหรัฐฯ มากกว่า 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_en": "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?",
    "question_th": "อันดับ Cham ของสหรัฐฯ ใดที่ต่ำที่สุดที่มีผู้ใช้จ่ายสูงสุดรายถัดไปของนายหน้าตัวแทนระดับประเทศ และน้อยกว่าปี 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_en": "Which Year is the lowest one that has a US Cham Rank smaller than 1?",
    "question_th": "ปีไหนต่ำที่สุดที่มี US Cham Rank น้อยกว่า 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_en": "What was the Score in Final of the Eckerd Open Tournament?",
    "question_th": "คะแนนในรอบสุดท้ายของ 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_en": "Who was the Partner in the United Airlines Tournament (1)?",
    "question_th": "ใครคือหุ้นส่วนในการแข่งขัน United Airlines (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_en": "What was the Score in Final on February 19, 1989?",
    "question_th": "คะแนนในรอบชิงชนะเลิศเมื่อวันที่ 19 กุมภาพันธ์ พ.ศ. 2532 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_59 (score_in_final VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_name_91 WHERE place = 9",
    "question_en": "What are the Points when the Place is 9?",
    "question_th": "คะแนนเมื่อสถานที่คือ 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_en": "What is the total for the place when the singer is Mariza Ikonomi when points are larger than 20?",
    "question_th": "คะแนนรวมของสถานที่ที่นักร้องคือ มาริสะ อิโคโนมิ เมื่อคะแนนมากกว่า 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_en": "With a Suited Match of 13:1, what is the Double Non-Suited Match?",
    "question_th": "ด้วย Suited Match 13:1 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_en": "What's the Suited Match with a 2.99% House Edge?",
    "question_th": "อะไรคือคู่ที่เหมาะสมกับ House Edge 2.99%?",
    "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_en": "With a house edge of 3.53% and a Non-Suited Matched of 3:1, name the Double Non-Suited Match.",
    "question_th": "ด้วยอัตราเสียเปรียบเจ้ามือ 3.53% และการจับคู่ที่ไม่พอดีที่ 3:1 ตั้งชื่อ 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_en": "Name the Non-Suited Match that has greater than 6 Number of Decks.",
    "question_th": "ตั้งชื่อแมตช์ที่ไม่เหมาะซึ่งมีจำนวนสำรับมากกว่า 6 สำรับ",
    "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_en": "Name the Suited & Non-Suited Match with a 2.99% for House Edge.",
    "question_th": "ตั้งชื่อแมตช์ Suited และ Non-Suited ด้วย 2.99% สำหรับ 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_en": "With a House Edge of 3.63% and a Non-Suited Match of 4:1, what is the Double Non-Suited Match?",
    "question_th": "ด้วยเฮ้าส์เอจที่ 3.63% และแมตช์ที่ไม่เหมาะกับแมตช์ที่ 4:1 แล้วแมตช์ที่ไม่เหมาะกับแมตช์คู่คืออะไร?",
    "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_en": "Wins smaller than 0 had what sum of year?",
    "question_th": "การชนะที่น้อยกว่า 0 มีผลรวมของปีเท่าใด?",
    "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_en": "Class of 125cc, and a Year smaller than 1966 had what lowest wins?",
    "question_th": "รถคลาส 125cc และปีที่เล็กกว่าปี 1966 ชนะอะไรน้อยที่สุด?",
    "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_en": "Class of 500cc, and a Wins smaller than 0 had what average year?",
    "question_th": "คลาส 500cc และชัยชนะที่น้อยกว่า 0 มีปีเฉลี่ยเท่าใด",
    "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_en": "What are the highest laps Kazuki Nakajima did with a Grid larger than 19?",
    "question_th": "Kazuki Nakajima ทำรอบสูงสุดได้เท่าไรกับกริดที่มากกว่า 19 รอบ?",
    "context": "CREATE TABLE table_name_58 (laps INTEGER, driver VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_87 WHERE grid = 17",
    "question_en": "Which Constructor has a Grid of 17?",
    "question_th": "Constructor ใดมีตาราง 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_en": "Who drives a BMW Sauber with a Grid larger than 2 and a Time/Retired of +15.037?",
    "question_th": "ใครเป็นผู้ขับ BMW Sauber ด้วยกริดที่ใหญ่กว่า 2 และเวลา/เกษียณที่ +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_en": "Participation as of actor, film editor has what average year?",
    "question_th": "การมีส่วนร่วมในฐานะนักแสดง, บรรณาธิการภาพยนตร์มีปีเฉลี่ยเท่าไร?",
    "context": "CREATE TABLE table_name_11 (year INTEGER, participation_as VARCHAR)"
  },
  {
    "answer": "SELECT odds FROM table_name_14 WHERE finish = \"1/4h\"",
    "question_en": "What were the odds for the finish of 1/4h?",
    "question_th": "โอกาสที่จะจบ 1/4 ชั่วโมงเป็นเท่าไหร่?",
    "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_en": "What is the lowest last quarter with a time of 1:53.2 and odds of *1.30?",
    "question_th": "ควอเตอร์สุดท้ายต่ำสุดด้วยเวลา 1:53.2 และอัตราต่อรอง *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_en": "What is the average number of Gold when the total is 11 with more than 2 silver?",
    "question_th": "จำนวนทองคำโดยเฉลี่ยเมื่อรวมเป็น 11 และมีเงินมากกว่า 2 เป็นเท่าใด?",
    "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_en": "What is the total rank with more than 0 silver and less than 2 medals total?",
    "question_th": "อันดับรวมที่มีมากกว่า 0 เหรียญเงินและมีทั้งหมดน้อยกว่า 2 เหรียญคือเท่าไร?",
    "context": "CREATE TABLE table_name_88 (rank VARCHAR, total VARCHAR, silver VARCHAR)"
  },
  {
    "answer": "SELECT bronze FROM table_name_91 WHERE total < 2",
    "question_en": "What is the value of bronze with less than 2 in total?",
    "question_th": "ทองแดงที่มียอดรวมน้อยกว่า 2 มีมูลค่าเท่าใด",
    "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_en": "What number of rank has more than 2 medals in total with less than 4 bronze?",
    "question_th": "อันดับใดที่มีมากกว่า 2 เหรียญ รวมน้อยกว่า 4 เหรียญทองแดง?",
    "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_en": "what is a building that is proposed and will have 32 floors?",
    "question_th": "ตึกที่เสนอคืออะไรและจะมี 32 ชั้น?",
    "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_en": "What is the best time for marcus marshall?",
    "question_th": "เวลาไหนดีที่สุดสำหรับมาร์คัส มาร์แชล?",
    "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_en": "What is the best time for a rusport driver with a qual 2 time of 1:10.166?",
    "question_th": "เวลาใดที่ดีที่สุดสำหรับนักแข่ง rusport ที่มีคะแนน 2 เท่ากับ 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_en": "What team had a qual 2 time of 58.385?",
    "question_th": "ทีมใดได้เข้ารอบ 2 ครั้งที่ 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_en": "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?",
    "question_th": "ผลรวมของมหาวิทยาลัยดับลิน ซึ่งมีคณะกรรมการ 0 คะแนนสำหรับสาขาเกษตรกรรม ได้รับการเสนอชื่อโดย Taoiseach มากกว่า 0 และคณะกรรมการอุตสาหกรรมและการพาณิชย์น้อยกว่า 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_en": "What is the average for the agricultural panel that has a National University of Ireland less than 0?",
    "question_th": "ค่าเฉลี่ยสำหรับคณะเกษตรกรรมที่มีมหาวิทยาลัยแห่งชาติไอร์แลนด์น้อยกว่า 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_en": "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?",
    "question_th": "จำนวนต่ำสุดของมหาวิทยาลัยดับลิน โดยมีคณะกรรมการบริหาร 3 คน และคณะกรรมการวัฒนธรรมและการศึกษาน้อยกว่า 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_en": "What was the record at Memorial Stadium on September 19, 1965?",
    "question_th": "บันทึกที่สนามเมโมเรียล สเตเดี้ยม เมื่อวันที่ 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_en": "What is the largest attendance at Memorial Stadium on December 12, 1965?",
    "question_th": "ผู้ชมมากที่สุดที่ Memorial Stadium ในวันที่ 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_en": "Which Extra points is the highest one that has a Player of herman everhardus, and a Field goals larger than 0?",
    "question_th": "คะแนนพิเศษใดคือคะแนนสูงสุดที่มีผู้เล่นของ Herman Everhardus และประตูในสนามมากกว่า 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_en": "Which Extra points has Points smaller than 12, and a Player of chuck bernard, and Touchdowns larger than 1?",
    "question_th": "แต้มพิเศษใดที่มีแต้มน้อยกว่า 12 และผู้เล่นของชัค เบอร์นาร์ด และทัชดาวน์ที่มากกว่า 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_en": "How many Field goals have Touchdowns smaller than 3, and a Player of willis ward, and an Extra points smaller than 0?",
    "question_th": "มีกี่ประตูที่มีทัชดาวน์น้อยกว่า 3 และผู้เล่นของวิลลิสวอร์ด และแต้มพิเศษน้อยกว่า 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_en": "Whicih Extra points are the average ones that have Points smaller than 6?",
    "question_th": "คะแนนพิเศษใดคือคะแนนเฉลี่ยที่มีคะแนนน้อยกว่า 6",
    "context": "CREATE TABLE table_name_35 (extra_points INTEGER, points INTEGER)"
  },
  {
    "answer": "SELECT position FROM table_name_27 WHERE round = 7",
    "question_en": "Which position is round 7?",
    "question_th": "รอบ 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_en": "Which college has a position of goaltender?",
    "question_th": "วิทยาลัยใดมีตำแหน่งผู้รักษาประตู?",
    "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_en": "What is Darryl Fedorak's highest round?",
    "question_th": "รอบสูงสุดของ Darryl Fedorak คืออะไร?",
    "context": "CREATE TABLE table_name_91 (round INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_86 WHERE round > 8",
    "question_en": "What nationality has a higher round than 8?",
    "question_th": "สัญชาติใดมีรอบสูงกว่า 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_en": "What is the connection with Australia when the connection with America shows born in the u.s.; mother is u.s. citizen?",
    "question_th": "ความเชื่อมโยงกับออสเตรเลียคืออะไรเมื่อการเชื่อมต่อกับอเมริกาแสดงให้เห็นว่าเกิดในสหรัฐอเมริกา แม่เป็นพลเมืองของเราเหรอ?",
    "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_en": "What is the person born in Australia, rick springfield notable for?",
    "question_th": "ริค สปริงฟิลด์ คนเกิดในออสเตรเลีย มีชื่อเสียงในด้านอะไร?",
    "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_en": "What is the Born–Died for the person whose family moved to Australia at age 6?",
    "question_th": "ผู้ที่เกิดมา-ตายคืออะไรสำหรับผู้ที่ครอบครัวย้ายมาอยู่ออสเตรเลียเมื่ออายุ 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_en": "What is the latest date with Cores per die / Dies per module of 2 / 1, and a Clock of 1.4-1.6ghz?",
    "question_th": "วันที่ล่าสุดที่มี Cores ต่อ die / Dies ต่อโมดูล 2 / 1 และนาฬิกา 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_en": "Which process has a date later than 2000 and a Clock of 1.4-1.6ghz?",
    "question_th": "กระบวนการใดมีวันที่ช้ากว่าปี 2000 และนาฬิกา 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_en": "Which date has a Clock of 0.8-1.6ghz?",
    "question_th": "วันที่ใดมีนาฬิกา 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_en": "What was the record on May 21?",
    "question_th": "บันทึกเมื่อวันที่ 21 พฤษภาคมคืออะไร?",
    "context": "CREATE TABLE table_name_15 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_98 WHERE attendance = \"24,976\"",
    "question_en": "On what date was the attendance 24,976?",
    "question_th": "เข้าร่วมประชุมวันไหน 24,976?",
    "context": "CREATE TABLE table_name_98 (date VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_79 WHERE record = \"21-26\"",
    "question_en": "On what date was the record 21-26?",
    "question_th": "บันทึกวันที่ 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_en": "How many were in attendance with a loss of Prokopec (2-7)?",
    "question_th": "มีผู้เข้าร่วมกี่คนที่แพ้ 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_en": "Who was the opponent on May 20?",
    "question_th": "คู่ต่อสู้ในวันที่ 20 พฤษภาคมคือใคร?",
    "context": "CREATE TABLE table_name_74 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_13 WHERE date = \"apr 6\"",
    "question_en": "What is the tournament on Apr 6?",
    "question_th": "การแข่งขันในวันที่ 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_en": "What is the 1st prize of the tournament in Scotland?",
    "question_th": "รางวัลที่ 1 ของการแข่งขันที่สกอตแลนด์คืออะไร?",
    "context": "CREATE TABLE table_name_95 (location VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_68 WHERE tournament = \"sea pines heritage classic\"",
    "question_en": "What is the location of the Sea Pines Heritage Classic tournament?",
    "question_th": "สถานที่จัดการแข่งขัน Sea Pines Heritage Classic อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_68 (location VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_16 WHERE tournament = \"tournament players championship\"",
    "question_en": "What is the score of the Tournament Players Championship?",
    "question_th": "คะแนนของ 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_en": "What is the 1st prize at the U.S. Open?",
    "question_th": "รางวัลที่ 1 ของ US Open คืออะไร?",
    "context": "CREATE TABLE table_name_69 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT AVG(1 AS st_prize___) AS $__ FROM table_name_47 WHERE score = \"279 (–9)\"",
    "question_en": "What is the average first prize of the tournament with a score of 279 (–9)?",
    "question_th": "รางวัลที่หนึ่งโดยเฉลี่ยของทัวร์นาเมนต์ด้วยคะแนน 279 (–9) คืออะไร?",
    "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_en": "What is the lowest first prize of the Mercedes Championships tournament in California?",
    "question_th": "รางวัลที่หนึ่งต่ำที่สุดของการแข่งขัน Mercedes Championships ในแคลิฟอร์เนียคืออะไร?",
    "context": "CREATE TABLE table_name_18 (location VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT AVG(capacity) FROM table_name_29 WHERE team = \"kommunalnik\"",
    "question_en": "What is the average capacity for the venue where the team kommunalnik played?",
    "question_th": "ความจุเฉลี่ยของสนามที่ทีมคอมมูนัลนิคลงเล่นคือเท่าไร?",
    "context": "CREATE TABLE table_name_29 (capacity INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT position_in_1999 FROM table_name_71 WHERE venue = \"central, gomel\"",
    "question_en": "What is the position of the team that played at the venue, Central, Gomel?",
    "question_th": "ทีมที่เล่นที่สนาม เซ็นทรัล โกเมล อยู่ตำแหน่งไหน?",
    "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_en": "What is the position of the team that played at the venue with more than 6,500 capacity?",
    "question_th": "ทีมที่เล่นในสนามความจุมากกว่า 6,500 คนอยู่ตำแหน่งไหน?",
    "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_en": "What is the smallest number of assists with 70 Pims and less than 19 goals?",
    "question_th": "จำนวนแอสซิสต์น้อยที่สุดโดยทำได้ 70 พิม และทำได้น้อยกว่า 19 ประตูคือเท่าไร?",
    "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_en": "What is the smallest number of assists for Ben Duggan with less than 7 points?",
    "question_th": "จำนวนแอสซิสต์ที่น้อยที่สุดของ เบน ดักแกน ที่มีคะแนนน้อยกว่า 7 แต้มคือเท่าใด?",
    "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_en": "In what Year was Rhode Island the National Champion?",
    "question_th": "โรดไอส์แลนด์เป็นแชมป์แห่งชาติในปีใด",
    "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_en": "What was the Runner-up in the Monroe County Sports Commission?",
    "question_th": "รองชนะเลิศในคณะกรรมาธิการกีฬามอนโรเคาน์ตี้คืออะไร?",
    "context": "CREATE TABLE table_name_59 (runner_up VARCHAR, host VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_3 WHERE runner_up = \"tbd\"",
    "question_en": "At what Location was the Runner-up TBD?",
    "question_th": "รองชนะเลิศ 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_en": "At what Location did Robert Morris University (Illinois) Host the Lindenwood National Chamption?",
    "question_th": "มหาวิทยาลัย Robert Morris (อิลลินอยส์) เป็นเจ้าภาพจัดการแข่งขันชิงแชมป์แห่งชาติ Lindenwood ที่สถานที่ใด",
    "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_en": "What was the Runner-up with Ohio as the National Champion in Tucson, AZ?",
    "question_th": "รองชนะเลิศกับโอไฮโอในฐานะแชมป์แห่งชาติในทูซอน รัฐแอริโซนา คืออะไร",
    "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_en": "Which graphics spec has a VRAM spec of 512MB?",
    "question_th": "ข้อมูลจำเพาะกราฟิกใดที่มีข้อมูลจำเพาะ VRAM ที่ 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_en": "What is the MSRP for the laptop with storage of 128-512 GB SSD?",
    "question_th": "MSRP สำหรับแล็ปท็อปที่มีพื้นที่เก็บข้อมูล 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_en": "Name the opponent for game 5",
    "question_th": "ตั้งชื่อคู่ต่อสู้ในเกมที่ 5",
    "context": "CREATE TABLE table_name_25 (opponent VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_17 WHERE name = \"cadeby\"",
    "question_en": "What status is shown for Cadeby?",
    "question_th": "Cadeby แสดงสถานะอะไรบ้าง?",
    "context": "CREATE TABLE table_name_17 (status VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT former_local_authority FROM table_name_96 WHERE name = \"ecclesfield\"",
    "question_en": "What is the Former local authority for Ecclesfield?",
    "question_th": "อดีตหน่วยงานท้องถิ่นของ Ecclesfield คืออะไร?",
    "context": "CREATE TABLE table_name_96 (former_local_authority VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_83 WHERE name = \"mexborough\"",
    "question_en": "What is the Status of Mexborough?",
    "question_th": "สถานะของ Mexborough คืออะไร?",
    "context": "CREATE TABLE table_name_83 (status VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_36 WHERE date = \"december 1\"",
    "question_en": "What is the score on December 1?",
    "question_th": "คะแนนวันที่ 1 ธันวาคมเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_36 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT skip FROM table_name_63 WHERE second = \"oliver dupont\"",
    "question_en": "Which skip has Oliver Dupont as a second?",
    "question_th": "การข้ามครั้งใดที่มี Oliver Dupont เป็นวินาที?",
    "context": "CREATE TABLE table_name_63 (skip VARCHAR, second VARCHAR)"
  },
  {
    "answer": "SELECT second FROM table_name_91 WHERE third = \"jean-michel arsenault\"",
    "question_en": "Which second's third is Jean-Michel Arsenault?",
    "question_th": "วินาทีที่สามคือ 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_en": "Which skip's third is Steffen Walstad?",
    "question_th": "สเตฟเฟน วอลสตัด มือที่สามของลูกครอสคนไหน",
    "context": "CREATE TABLE table_name_1 (skip VARCHAR, third VARCHAR)"
  },
  {
    "answer": "SELECT skip FROM table_name_51 WHERE second = \"martin hejhal\"",
    "question_en": "Which skip's second is Martin Hejhal?",
    "question_th": "Martin Hejhal ผู้กระโดดข้ามคนที่สองคือใคร?",
    "context": "CREATE TABLE table_name_51 (skip VARCHAR, second VARCHAR)"
  },
  {
    "answer": "SELECT skip FROM table_name_17 WHERE lead = \"gordon mcdougall\"",
    "question_en": "Which skip's lead is Gordon McDougall?",
    "question_th": "Gordon McDougall เป็นผู้นำในการข้ามคนใด",
    "context": "CREATE TABLE table_name_17 (skip VARCHAR, lead VARCHAR)"
  },
  {
    "answer": "SELECT second FROM table_name_10 WHERE skip = \"chris plys\"",
    "question_en": "Which second's skip is Chris Plys?",
    "question_th": "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_en": "How many Poles have a Class of 125cc, and a Team of matteoni racing team, and Points larger than 3?",
    "question_th": "มีกี่โปแลนด์ที่มีคลาส 125cc และทีมแข่งรถ Matteoni และมีคะแนนมากกว่า 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_en": "How many Podiums have a Class of 250cc, and an F laps of 0?",
    "question_th": "มีกี่โพเดียมที่มีคลาส 250cc และ F รอบเป็น 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_en": "Team of elgin city, and a Highest smaller than 537 had what total number of average?",
    "question_th": "ทีมเอลจินซิตี้และสูงสุดที่น้อยกว่า 537 มีจำนวนเฉลี่ยทั้งหมดเท่าไร?",
    "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_en": "Lowest larger than 288, and a Team of east stirlingshire has what lowest average?",
    "question_th": "ใหญ่กว่า 288 น้อยที่สุด และทีม East Stirlingshire มีค่าเฉลี่ยต่ำสุดเท่าไร?",
    "context": "CREATE TABLE table_name_61 (average INTEGER, lowest VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT owner FROM table_name_2 WHERE locomotive = \"c501\"",
    "question_en": "what is the owner of the c501",
    "question_th": "เจ้าของ 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_en": "Which Record has a Game larger than 32, and a December smaller than 21?",
    "question_th": "บันทึกใดที่มีเกมใหญ่กว่า 32 และเดือนธันวาคมเล็กกว่า 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_en": "Which Score has Points larger than 46, and a Game smaller than 35, and a December of 21?",
    "question_th": "คะแนนใดมีคะแนนมากกว่า 46 และเกมน้อยกว่า 35 และวันที่ 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_en": "Which December is the lowest one that has Points of 52?",
    "question_th": "ธันวาคมไหนต่ำสุดที่มีคะแนน 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_en": "Which December has Points of 48, and a Game larger than 33?",
    "question_th": "เดือนธันวาคมใดที่มีคะแนน 48 และเกมที่ใหญ่กว่า 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–44\"",
    "question_en": "WHich Regular Season Champions has a Year of 1943–44?",
    "question_th": "แชมป์ประจำฤดูกาลคนไหนที่มีปี 1943–44?",
    "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–1\"",
    "question_en": "WHich Tournament venue has a Tournament Champion of duke and a Record of 15–1?",
    "question_th": "สถานที่จัดทัวร์นาเมนต์ใดมีแชมป์ทัวร์นาเมนต์ดยุคและมีสถิติ 15–1",
    "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–1\" AND regular_season_champion_s_ = \"virginia tech\"",
    "question_en": "When has a Tournament venue of richmond arena, and a Record of 12–1, and a Regular Season Champion(s) of virginia tech?",
    "question_th": "เมื่อใดจะมีสถานที่จัดการแข่งขันในสนามริชมอนด์ และมีสถิติ 12–1 และแชมป์ประจำฤดูกาลของเวอร์จิเนียเทค?",
    "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–1\" AND tournament_champion = \"duke\"",
    "question_en": "When has a Record of 9–1, and a Tournament Champion of duke?",
    "question_th": "เมื่อไหร่จะมีสถิติ 9–1 และเป็นแชมป์ทัวร์นาเมนต์ของดยุค?",
    "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–56\"",
    "question_en": "Which Regular Season Champion(s) has a Tournament Champion of west virginia in 1955–56?",
    "question_th": "แชมป์ประจำฤดูกาลคนใดที่มีแชมป์ทัวร์นาเมนต์ของเวสต์เวอร์จิเนียในปี 1955–56",
    "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–0\" AND tournament_champion = \"north carolina\"",
    "question_en": "Which Regular Season Champion(s) has a Record of 9–0, and a Tournament Champion of north carolina?",
    "question_th": "แชมป์ประจำฤดูกาลคนใดที่มีสถิติ 9–0 และเป็นแชมป์ทัวร์นาเมนท์แห่งนอร์ทแคโรไลนา",
    "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_en": "What is the lowest round for a player selected from a college of New Hampshire?",
    "question_th": "รอบต่ำสุดสำหรับผู้เล่นที่ได้รับเลือกจากวิทยาลัยแห่งนิวแฮมป์เชียร์คือเท่าไร?",
    "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_en": "What nationality is Rod Langway?",
    "question_th": "ร็อด แลงเวย์มีสัญชาติอะไร",
    "context": "CREATE TABLE table_name_79 (nationality VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_81 WHERE round > 3",
    "question_en": "What position is the player selected that has a round value over 3?",
    "question_th": "ผู้เล่นเลือกตำแหน่งใดที่มีค่ารอบมากกว่า 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_en": "What college did the player selected in rounds over 3 play for?",
    "question_th": "ผู้เล่นเลือกวิทยาลัยใดในรอบ 3 ขึ้นไปเพื่อเล่น",
    "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_en": "What is the highest round that has a player selected from Clarkson University?",
    "question_th": "รอบสูงสุดที่มีผู้เล่นเลือกจากมหาวิทยาลัยคลาร์กสันคืออะไร?",
    "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_en": "What is the lowest rank of Deutsche Telekom with a market value over 209,628?",
    "question_th": "อันดับต่ำสุดของ Deutsche Telekom ที่มีมูลค่าตลาดมากกว่า 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_en": "What is the total market value of all corporations headquartered in Germany?",
    "question_th": "มูลค่าตลาดรวมของบริษัททั้งหมดที่มีสำนักงานใหญ่ในเยอรมนีคือเท่าใด",
    "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_en": "What is the lowest earnings of Vijay Singh who had more than 24 wins?",
    "question_th": "วีเจย์ ซิงห์ ที่ชนะมากกว่า 24 ครั้งมีรายได้ต่ำสุดเท่าไหร่?",
    "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_en": "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?",
    "question_th": "อันดับใดคืออันดับสูงสุดที่มีการเปลี่ยนแปลงน้อยกว่า 44 และศูนย์กลางของบัวโนสไอเรส และอันดับมากกว่า 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_en": "Which Centre has a Rank of 42?",
    "question_th": "เซ็นเตอร์คนไหนมีอันดับ 42?",
    "context": "CREATE TABLE table_name_34 (centre VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT SUM(rating) FROM table_name_88 WHERE centre = \"helsinki\"",
    "question_en": "Which Rating has a Centre of helsinki?",
    "question_th": "เรตติ้งใดมีศูนย์กลางของเฮลซิงกิ",
    "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_en": "Which Change is the average one that has a Centre of buenos aires, and a Rank smaller than 46?",
    "question_th": "Change ใดคือค่าเฉลี่ยที่มีศูนย์กลางของบัวโนสไอเรส และอันดับน้อยกว่า 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_en": "Operation of find-min has what Fibonacci?",
    "question_th": "การดำเนินการของ find-min มี Fibonacci คืออะไร?",
    "context": "CREATE TABLE table_name_18 (fibonacci VARCHAR, operation VARCHAR)"
  },
  {
    "answer": "SELECT pairing FROM table_name_68 WHERE binomial = \"θ(1)\"",
    "question_en": "Binomial of θ(1) has what pairing?",
    "question_th": "ทวินามของ θ(1) มีการจับคู่อะไร?",
    "context": "CREATE TABLE table_name_68 (pairing VARCHAR, binomial VARCHAR)"
  },
  {
    "answer": "SELECT binary FROM table_name_82 WHERE pairing = \"θ(1)\" AND binomial = \"θ(1)\"",
    "question_en": "Pairing of θ(1), and a Binomial of θ(1) is what binary?",
    "question_th": "การจับคู่ θ(1) และทวินามของ θ(1) เป็นเลขฐานสองอะไร",
    "context": "CREATE TABLE table_name_82 (binary VARCHAR, pairing VARCHAR, binomial VARCHAR)"
  },
  {
    "answer": "SELECT binary FROM table_name_98 WHERE operation = \"find-min\"",
    "question_en": "Operation of find-min has what binary?",
    "question_th": "การทำงานของ find-min มีไบนารี่อะไร?",
    "context": "CREATE TABLE table_name_98 (binary VARCHAR, operation VARCHAR)"
  },
  {
    "answer": "SELECT binomial FROM table_name_7 WHERE binary = \"θ(log n)\" AND fibonacci = \"θ(1)\"",
    "question_en": "Binary of θ(log n), and a Fibonacci of θ(1) has what binomial?",
    "question_th": "ไบนารีของ θ(log n) และฟีโบนัชชีของ θ(1) มีทวินามอะไร",
    "context": "CREATE TABLE table_name_7 (binomial VARCHAR, binary VARCHAR, fibonacci VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_81 WHERE duration = \"4:57\"",
    "question_en": "Which of the titles have a duration time of 4:57?",
    "question_th": "เรื่องใดที่มีระยะเวลา 4:57?",
    "context": "CREATE TABLE table_name_81 (title VARCHAR, duration VARCHAR)"
  },
  {
    "answer": "SELECT composer FROM table_name_8 WHERE duration = \"3:31\"",
    "question_en": "What composer has a duration time of 3:31?",
    "question_th": "นักแต่งเพลงคนใดมีระยะเวลา 3:31?",
    "context": "CREATE TABLE table_name_8 (composer VARCHAR, duration VARCHAR)"
  },
  {
    "answer": "SELECT duration FROM table_name_73 WHERE translation = \"1000 lies\"",
    "question_en": "Which one of the duration has a translation of 1000 lies?",
    "question_th": "ช่วงใดมีการแปลเป็น 1,000 เรื่องโกหก?",
    "context": "CREATE TABLE table_name_73 (duration VARCHAR, translation VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_76 WHERE translation = \"i know\"",
    "question_en": "Which title has a translation of I know in it?",
    "question_th": "ชื่อใดมีคำแปลว่า I know อยู่ในนั้น",
    "context": "CREATE TABLE table_name_76 (title VARCHAR, translation VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_32 WHERE translation = \"1000 lies\"",
    "question_en": "Which title has a translation in it of 1000 lies?",
    "question_th": "ชื่อใดที่มีการแปลเป็น 1,000 เรื่องโกหก?",
    "context": "CREATE TABLE table_name_32 (title VARCHAR, translation VARCHAR)"
  },
  {
    "answer": "SELECT gold FROM table_name_48 WHERE silver = \"bertil ahlin sweden\"",
    "question_en": "Who won the gold when Bertil Ahlin Sweden won the silver?",
    "question_th": "ใครได้รับรางวัลเหรียญทองเมื่อ Bertil Ahlin สวีเดนได้รับรางวัลเหรียญเงิน?",
    "context": "CREATE TABLE table_name_48 (gold VARCHAR, silver VARCHAR)"
  },
  {
    "answer": "SELECT gold FROM table_name_13 WHERE bronze = \"jules van dyk belgium\"",
    "question_en": "Who won the gold when Jules van Dyk Belgium won bronze?",
    "question_th": "ใครคว้าเหรียญทองเมื่อจูลส์ ฟาน ไดค์ เบลเยียมคว้าเหรียญทองแดง?",
    "context": "CREATE TABLE table_name_13 (gold VARCHAR, bronze VARCHAR)"
  },
  {
    "answer": "SELECT second FROM table_name_48 WHERE alternate = \"margarita fomina\"",
    "question_en": "Who is the second for the curling team which has alternate Margarita Fomina?",
    "question_th": "ใครคือคนที่สองของทีมเคอร์ลิงที่มีมาร์การิต้า โฟมินาสำรอง?",
    "context": "CREATE TABLE table_name_48 (second VARCHAR, alternate VARCHAR)"
  },
  {
    "answer": "SELECT second FROM table_name_12 WHERE alternate = \"margarita fomina\"",
    "question_en": "Who is the second for the team with alternate Margarita Fomina?",
    "question_th": "ใครคือคนที่สองของทีมที่มีมาร์การิต้า โฟมินาสำรอง?",
    "context": "CREATE TABLE table_name_12 (second VARCHAR, alternate VARCHAR)"
  },
  {
    "answer": "SELECT alternate FROM table_name_60 WHERE third = \"monika wagner\"",
    "question_en": "Who is the alternate for the team for which Monika Wagner is the third?",
    "question_th": "ใครคือตัวสำรองของทีมที่ โมนิก้า วากเนอร์ เป็นคนที่สาม?",
    "context": "CREATE TABLE table_name_60 (alternate VARCHAR, third VARCHAR)"
  },
  {
    "answer": "SELECT lead FROM table_name_59 WHERE second = \"nkeiruka ezekh\"",
    "question_en": "Who is the lead for the team with Nkeiruka Ezekh as second?",
    "question_th": "ใครเป็นผู้นำทีม โดยมี เอ็นเครุกะ เอเซค เป็นอันดับสอง?",
    "context": "CREATE TABLE table_name_59 (lead VARCHAR, second VARCHAR)"
  },
  {
    "answer": "SELECT lead FROM table_name_86 WHERE alternate = \"christina haller\"",
    "question_en": "Who is the lead for the team with Christina Haller as alternate?",
    "question_th": "ใครเป็นผู้นำทีม โดยมี คริสติน่า ฮอลเลอร์ เป็นตัวสำรอง?",
    "context": "CREATE TABLE table_name_86 (lead VARCHAR, alternate VARCHAR)"
  },
  {
    "answer": "SELECT latitude FROM table_name_83 WHERE year_built = 1901",
    "question_en": "What is the Latitude of the monument built in 1901?",
    "question_th": "ละติจูดของอนุสาวรีย์ที่สร้างขึ้นในปี 1901 คืออะไร?",
    "context": "CREATE TABLE table_name_83 (latitude VARCHAR, year_built VARCHAR)"
  },
  {
    "answer": "SELECT city_or_town FROM table_name_71 WHERE longitude = \"89°11′w\"",
    "question_en": "What is the City or Town of the monument with a Longitude of 89°11′w?",
    "question_th": "เมืองของอนุสาวรีย์ที่มีลองจิจูด 89°11′w คือเมืองใด",
    "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_en": "What Monument was built after 1887 in Warren County?",
    "question_th": "อนุสาวรีย์ใดที่ถูกสร้างขึ้นหลังปี 1887 ในวอร์เรนเคาน์ตี้",
    "context": "CREATE TABLE table_name_95 (monument_name VARCHAR, year_built VARCHAR, county VARCHAR)"
  },
  {
    "answer": "SELECT county FROM table_name_47 WHERE longitude = \"85°45′43″w\"",
    "question_en": "What County has a Longitude of 85°45′43″w?",
    "question_th": "มณฑลใดมีลองจิจูด 85°45′43″w",
    "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_en": "What is the Opponent from the final with a Partner named jorgelina cravero?",
    "question_th": "คู่ต่อสู้จากรอบชิงชนะเลิศกับคู่หูชื่อ จอร์จลิน่า คราเบโร คืออะไร?",
    "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_en": "What was the outcome for the match at the leipzig tournament with a score w/o?",
    "question_th": "ผลลัพธ์ของการแข่งขันในทัวร์นาเมนต์ไลป์ซิกที่ไม่มีสกอร์เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_45 (outcome VARCHAR, tournament VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_53 WHERE tournament = \"leipzig\"",
    "question_en": "Who was the opponent that anke huber played against in the leipzig tournament?",
    "question_th": "คู่ต่อสู้ที่อังเค ฮูเบอร์เผชิญหน้าในทัวร์นาเมนต์ไลป์ซิกคือใคร?",
    "context": "CREATE TABLE table_name_53 (opponent VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_73 WHERE opponent = \"magdalena maleeva\"",
    "question_en": "What was the outcome of the match against Magdalena Maleeva?",
    "question_th": "ผลการแข่งขันกับ มักดาเลนา มาเลวา เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_73 (outcome VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_8 WHERE pick__number = \"15\"",
    "question_en": "What is the name of the player that was Pick 15?",
    "question_th": "ผู้เล่นที่ถูกเลือก 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_en": "To which college/junior/club team did the player that was Pick 12 belong?",
    "question_th": "ผู้เล่นที่ได้รับเลือก 12 เป็นสมาชิกของทีมวิทยาลัย/จูเนียร์/สโมสรใด",
    "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_en": "What NHL team has a player in the position of Left Wing that came from the Toronto Marlboros (omjhl)?",
    "question_th": "ทีม NHL ใดมีผู้เล่นในตำแหน่งปีกซ้ายที่มาจาก 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_en": "To which college/junior/club team did the player that was Pick 16 belong?",
    "question_th": "ผู้เล่น Pick 16 สังกัดทีมวิทยาลัย/จูเนียร์/สโมสรใด",
    "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_en": "What company does Simon Stone direct earlier than 2011?",
    "question_th": "Simon Stone กำกับบริษัทใดก่อนปี 2554",
    "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_en": "Which Result has a Competition of world cup qualifying, and a Date of march 21, 1954?",
    "question_th": "ผลการแข่งขันใดมีการแข่งขันฟุตบอลโลกรอบคัดเลือก และวันที่ 21 มีนาคม พ.ศ. 2497",
    "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_en": "Which Competition has a Result of w, and a Score of 2-0, and a Date of may 9, 1954?",
    "question_th": "การแข่งขันใดมีผลการแข่งขัน w และสกอร์ 2-0 และวันที่ 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_en": "Which Result has a Score of 4-1, and a Competition of world cup qualifying?",
    "question_th": "ผลการแข่งขันใดมีสกอร์ 4-1 และการแข่งขันฟุตบอลโลกรอบคัดเลือก?",
    "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_en": "Which Score has a Competition of world cup qualifying, and a Brazil scorers of baltazar, and a Date of march 14, 1954?",
    "question_th": "สกอร์ใดที่มีการแข่งขันฟุตบอลโลกรอบคัดเลือก และบัลตาซาร์ของบราซิล และวันที่ 14 มีนาคม พ.ศ. 2497",
    "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_en": "Which Brazil scorers have a Result of w, and a Competition of world cup qualifying, and a Date of february 28, 1954?",
    "question_th": "ผู้ทำประตูชาวบราซิลคนใดมีผลการแข่งขัน w และการแข่งขันฟุตบอลโลกรอบคัดเลือก และวันที่ 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_en": "when first elected was 1900 what was the district?",
    "question_th": "เมื่อได้รับการเลือกตั้งครั้งแรกคือ พ.ศ. 2443 อำเภอคืออะไร?",
    "context": "CREATE TABLE table_name_4 (district VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_name_9 WHERE first_elected = \"1898\"",
    "question_en": "when first elected was 1898 what was the party?",
    "question_th": "เมื่อได้รับการเลือกตั้งครั้งแรกคือ พ.ศ. 2441 พรรคอะไร?",
    "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_en": "How many Games have a Lost of 6, and Points smaller than 7?",
    "question_th": "มีกี่เกมที่แพ้ 6 และคะแนนน้อยกว่า 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_en": "What is Larry Centers' average number when there were less than 600 yards?",
    "question_th": "จำนวนเฉลี่ยของ Larry Centers เมื่อมีระยะน้อยกว่า 600 หลาเป็นเท่าใด",
    "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_en": "What is the highest number when there were more than 50 long and less than 762 yards?",
    "question_th": "ตัวเลขสูงสุดเมื่อมีความยาวมากกว่า 50 หลาและน้อยกว่า 762 หลาคืออะไร?",
    "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_en": "What is the highest amount of yards when the average is 9.5?",
    "question_th": "จำนวนหลาสูงสุดเมื่อค่าเฉลี่ยคือ 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_en": "Who was the runner-up on 5 aug 1990?",
    "question_th": "ใครคือรองชนะเลิศในวันที่ 5 สิงหาคม พ.ศ. 2533?",
    "context": "CREATE TABLE table_name_67 (runner_up VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_18 WHERE winning_score = −14(65 - 69 - 72 - 68 = 274)",
    "question_en": "Which Tournament has a Winning score of −14 (65-69-72-68=274)?",
    "question_th": "ทัวร์นาเมนต์ใดมีคะแนนชนะ −14 (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 = −20(70 - 69 - 64 - 65 = 268)",
    "question_en": "Which Runner-up has a Winning score of −20 (70-69-64-65=268)?",
    "question_th": "รองชนะเลิศคนใดมีคะแนนชนะ −20 (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 = −15(71 - 69 - 68 - 65 = 273)",
    "question_en": "Which Date has a Winning score of −15 (71-69-68-65=273)?",
    "question_th": "วันใดมีคะแนนชนะที่ −15 (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_en": "In which tournament was vijay singh a runner-up?",
    "question_th": "วีเจย์ ซิงห์ ได้รองแชมป์ในรายการใด?",
    "context": "CREATE TABLE table_name_15 (tournament VARCHAR, runner_up VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_20 WHERE runner_up = \"vijay singh\"",
    "question_en": "In which tournament was vijay singh a runner-up?",
    "question_th": "วีเจย์ ซิงห์ ได้รองแชมป์ในรายการใด?",
    "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_en": "Which Description has a Year of Issue of 1983, and a Weight of 3.50grams?",
    "question_th": "คำอธิบายใดมีปีที่ออกปี 1983 และมีน้ำหนัก 3.50 กรัม",
    "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_en": "Which Thickness has a Year of Issue smaller than 1983?",
    "question_th": "ความหนาใดมีปีที่ออกน้อยกว่าปี 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_en": "Which Description has a Year of Issue of 1983, and a Thickness of 1.7mm, and a Weight of 3.50grams?",
    "question_th": "คำอธิบายใดมีปีที่ออกปี 1983 และความหนา 1.7 มม. และน้ำหนัก 3.50 กรัม",
    "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_en": "Which Thickness has a Weight of 3.50grams?",
    "question_th": "ความหนาใดมีน้ำหนัก 3.50 กรัม",
    "context": "CREATE TABLE table_name_3 (thickness VARCHAR, weight VARCHAR)"
  },
  {
    "answer": "SELECT thickness FROM table_name_56 WHERE diameter = \"21.9mm\"",
    "question_en": "Which Thickness has a Diameter of 21.9mm?",
    "question_th": "ความหนาใดมีเส้นผ่านศูนย์กลาง 21.9 มม.",
    "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_en": "Who was on the Socialist Labor ticket in the race against W. Averell Harriman?",
    "question_th": "ใครอยู่ในตั๋วแรงงานสังคมนิยมในการแข่งขันกับ 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_en": "Who was the Republican candidate against the Democratic candidate Arthur Levitt?",
    "question_th": "ใครคือผู้สมัครพรรครีพับลิกันกับผู้สมัครจากพรรคเดโมแครต 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_en": "Who was the Independent Socialist candidate for the office of comptroller?",
    "question_th": "ใครคือผู้สมัครพรรคสังคมนิยมอิสระสำหรับสำนักงานบัญชีกลาง?",
    "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_en": "Who was the Independent Socialist candidate who ran against the Liberal candidate Edward Goodell?",
    "question_th": "ใครคือผู้สมัครพรรคสังคมนิยมอิสระที่ลงแข่งขันกับผู้สมัครเสรีนิยม 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_en": "Which Att has a Time of 2:14?",
    "question_th": "Att ใดมีเวลา 2:14?",
    "context": "CREATE TABLE table_name_75 (att VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_31 WHERE record = \"66-95\"",
    "question_en": "when is Record of 66-95?",
    "question_th": "สถิติ 66-95 เมื่อไร?",
    "context": "CREATE TABLE table_name_31 (time VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_12 WHERE record = \"65-95\"",
    "question_en": "Which Opponent has a Record of 65-95?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีสถิติ 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_en": "What is the to par that has ernie els as the player?",
    "question_th": "พาร์ที่มีเออร์นี่ เอลส์เป็นผู้เล่นคืออะไร?",
    "context": "CREATE TABLE table_name_43 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_99 WHERE money___£__ = \"159,500\" AND country = \"france\"",
    "question_en": "What player has money of (£) 159,500, and france is the country?",
    "question_th": "นักเตะคนไหนมีเงิน 159,500 ปอนด์ และฝรั่งเศสเป็นประเทศอะไร?",
    "context": "CREATE TABLE table_name_99 (player VARCHAR, money___£__ VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_52 WHERE score = 69 - 70 - 68 - 73 = 280",
    "question_en": "What player has 69-70-68-73=280 as the score?",
    "question_th": "ผู้เล่นคนไหนมีคะแนน 69-70-68-73=280 เป็นคะแนน?",
    "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_en": "What is the average year that has a win less than 1, yamaha as the team, with points greater than 2?",
    "question_th": "ปีเฉลี่ยที่ชนะน้อยกว่า 1 ยามาฮ่าเป็นทีมที่มีคะแนนมากกว่า 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_en": "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?",
    "question_th": "อะไรคือชัยชนะสูงสุดที่มี 350cc ในคลาส Yamaha สำหรับทีมโดยมีคะแนนน้อยกว่า 37 และหนึ่งปีหลังจากปี 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_en": "How many points have 500cc for the class, a win greater than 0, with a year after 1974?",
    "question_th": "มีกี่คะแนนสำหรับคลาส 500cc ชนะมากกว่า 0 กับหนึ่งปีหลังจากปี 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_en": "How many wins have a year after 1976, and 350cc as the class?",
    "question_th": "หนึ่งปีหลังจากปี 1976 ชนะได้กี่ครั้ง และมี 350cc ในรุ่นเดียวกัน?",
    "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_en": "How many San Jose wins have an LA goals larger than 6, and an LA wins smaller than 21?",
    "question_th": "ซานโฮเซชนะกี่ครั้งโดยมีเป้าหมายในแอลเอมากกว่า 6 และแอลเอชนะน้อยกว่า 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_en": "Which San Jose goals have a San Jose wins smaller than 0?",
    "question_th": "ประตูใดของซานโฮเซ่ที่ซานโฮเซ่ชนะน้อยกว่า 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_en": "Name the most april with record of 38-33-10",
    "question_th": "ตั้งชื่อเดือนเมษายนมากที่สุดด้วยสถิติ 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_en": "Name the opponent with record of 38-34-10",
    "question_th": "ตั้งชื่อคู่ต่อสู้ด้วยสถิติ 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_en": "Name the total number of April for game more than 81 and reord of 38-33-10",
    "question_th": "ตั้งชื่อจำนวนรวมของเดือนเมษายนสำหรับเกมมากกว่า 81 และลำดับที่ 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_en": "what series was on may 14",
    "question_th": "ซีรีส์เรื่องไหนออกวันที่ 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_en": "What is the to par that has england as the country, with 66 as a score?",
    "question_th": "อะไรคือพาร์ที่อังกฤษเป็นประเทศ โดยมีสกอร์ 66?",
    "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_en": "What country has a score less than 68, and paul casey as the player?",
    "question_th": "ประเทศใดมีคะแนนน้อยกว่า 68 และมีพอล เคซีย์เป็นผู้เล่น?",
    "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_en": "What is the lowest score that has alastair forsyth as the player?",
    "question_th": "คะแนนต่ำสุดที่มี alastair forsyth เป็นผู้เล่นคือเท่าไร?",
    "context": "CREATE TABLE table_name_28 (score INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(score) FROM table_name_87 WHERE player = \"paul casey\"",
    "question_en": "How many scores have paul casey as a player?",
    "question_th": "พอล เคซีย์ เป็นนักเตะได้กี่คะแนน?",
    "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_en": "Who owns the item that was a T326 before conversion and re-entered service on 11 September 1985?",
    "question_th": "ใครเป็นเจ้าของสิ่งของที่เป็น T326 ก่อนการแปลงสภาพและกลับเข้าประจำการในวันที่ 11 กันยายน พ.ศ.2528",
    "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_en": "What date did the T328 that entered service on 18 June 1956 re-enter service?",
    "question_th": "T328 ที่เข้าประจำการในวันที่ 18 มิถุนายน พ.ศ. 2499 กลับเข้าประจำการอีกครั้งเมื่อใด",
    "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_en": "Which of V/Line Passenger's pre-conversions re-entered service on 23 November 1984?",
    "question_th": "การแปลงล่วงหน้าของ V/Line ใดที่กลับเข้าสู่บริการอีกครั้งในวันที่ 23 พฤศจิกายน พ.ศ. 2527",
    "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_en": "Who owns the locomotive that entered service on 30 October 1956?",
    "question_th": "ใครเป็นเจ้าของรถจักรที่เข้าประจำการเมื่อวันที่ 30 ตุลาคม พ.ศ. 2499?",
    "context": "CREATE TABLE table_name_80 (owner VARCHAR, entered_service__t_ VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_73 WHERE record = \"50-85\"",
    "question_en": "What was the score of the game when the record was 50-85?",
    "question_th": "สกอร์ของเกมเมื่อตอนที่สถิติอยู่ที่ 50-85 เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_73 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_65 WHERE record = \"46-84\"",
    "question_en": "What was the loss of the game when the record was 46-84?",
    "question_th": "ความพ่ายแพ้ของเกมเมื่อสถิติอยู่ที่ 46-84 คืออะไร?",
    "context": "CREATE TABLE table_name_65 (loss VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_61 WHERE loss = \"cook (14–7)\"",
    "question_en": "What was the record at the game with a loss of Cook (14–7)?",
    "question_th": "อะไรคือสถิติในเกมที่แพ้คุก (14–7)?",
    "context": "CREATE TABLE table_name_61 (record VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT album FROM table_name_74 WHERE length = \"4:53\"",
    "question_en": "What album is 4:53 long?",
    "question_th": "อัลบั้มอะไรยาว4:53ครับ?",
    "context": "CREATE TABLE table_name_74 (album VARCHAR, length VARCHAR)"
  },
  {
    "answer": "SELECT 1989 FROM table_name_42 WHERE 1986 = \"99\"",
    "question_en": "Which 1989 has a 1986 of 99?",
    "question_th": "ปี 1989 ใดมี 1986 จาก 99",
    "context": "CREATE TABLE table_name_42 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1983 FROM table_name_2 WHERE tournament = \"wimbledon\"",
    "question_en": "Which 1983 has a Tournament of wimbledon?",
    "question_th": "ปี 1983 ใดมีทัวร์นาเมนต์วิมเบิลดัน?",
    "context": "CREATE TABLE table_name_2 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_11 WHERE 1987 = \"a\"",
    "question_en": "Which Tournament has A in 1987?",
    "question_th": "การแข่งขันใดมี A ในปี 1987?",
    "context": "CREATE TABLE table_name_11 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 1988 FROM table_name_54 WHERE 1985 = \"2r\"",
    "question_en": "Which 1988 has a 1985 of 2r?",
    "question_th": "ปี 1988 ใดมี 1985 เป็น 2r?",
    "context": "CREATE TABLE table_name_54 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1988 FROM table_name_46 WHERE 1982 = \"104\"",
    "question_en": "Which 1988 has a 1982 of 104?",
    "question_th": "ซึ่งปี 1988 มี 1982 จาก 104?",
    "context": "CREATE TABLE table_name_46 (Id VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_26 WHERE 1984 = \"1r\"",
    "question_en": "Which Tournament has a 1984 of 1r?",
    "question_th": "ทัวร์นาเมนต์ใดมี 1984 จาก 1r?",
    "context": "CREATE TABLE table_name_26 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT release_price___usd__ FROM table_name_69 WHERE release_date = \"2008 q3\"",
    "question_en": "Release date of 2008 q3 has what release price?",
    "question_th": "วันที่วางจำหน่ายไตรมาสที่ 3 ปี 2551 มีราคาวางจำหน่ายเท่าไร?",
    "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_en": "Frequency of 1.2 ghz, and a Release price ( USD ) of $70 is what socket?",
    "question_th": "ความถี่ 1.2 ghz และราคาวางจำหน่าย (USD) ที่ 70 ดอลลาร์ คือซ็อกเก็ตอะไร",
    "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_en": "Socket of fcbga1088, and a Voltage of 1v, and a Part number(s) of nu80579ez600cnu80579ez600ct is what mult?",
    "question_th": "ช่องเสียบของ fcbga1088 และแรงดันไฟฟ้า 1v และหมายเลขชิ้นส่วนของ nu80579ez600cnu80579ez600ct คืออะไร",
    "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_en": "Spec number of slj6d(b1)slj6f(b1) has what mult.?",
    "question_th": "เลขสเปคของ slj6d(b1)slj6f(b1) มีมัลติอะไรบ้าง?",
    "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_en": "Socket of without quickassist has what release price?",
    "question_th": "ซ็อกเก็ตที่ไม่มี Quickassist มีวางจำหน่ายราคาเท่าไรครับ?",
    "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_en": "Release date of 2008 q3, and a Part number(s) of nu80579ez009c has what Release price ( USD )?",
    "question_th": "วันที่วางจำหน่ายของไตรมาส 3 ปี 2008 และหมายเลขชิ้นส่วนของ nu80579ez009c มีราคาวางจำหน่าย (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_en": "What is the lowest Hong Kong value with a 0 Brisbane value and a greater than 0 Kuala Lumpur value?",
    "question_th": "ค่าฮ่องกงต่ำสุดที่มีค่าบริสเบน 0 และค่ากัวลาลัมเปอร์มากกว่า 0 คืออะไร",
    "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_en": "What is the highest Kuala Lumpur value with a Durban value less than 1 and a Mar Del Plata value greater than 0?",
    "question_th": "ค่าสูงสุดในกัวลาลัมเปอร์โดยมีค่า Durban น้อยกว่า 1 และค่า Mar Del Plata มากกว่า 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_en": "What is the highest New Zealand value with a Hong Kong value less than 0?",
    "question_th": "ค่านิวซีแลนด์สูงสุดโดยมีค่าฮ่องกงน้อยกว่า 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_en": "What is the average Singapore value with a London value less than 0?",
    "question_th": "ค่าสิงคโปร์โดยเฉลี่ยที่ค่าลอนดอนน้อยกว่า 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_en": "What position was picked for Canada on Pick 8?",
    "question_th": "ตำแหน่งใดที่ถูกเลือกสำหรับแคนาดาใน 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_en": "What is the position that is shown for 2011?",
    "question_th": "ตำแหน่งที่แสดงในปี 2554 คืออะไร?",
    "context": "CREATE TABLE table_name_41 (position VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT language FROM table_name_27 WHERE film_name = \"seethaiah\"",
    "question_en": "what language is seethaiah in",
    "question_th": "สีไทอาเป็นภาษาอะไร",
    "context": "CREATE TABLE table_name_27 (language VARCHAR, film_name VARCHAR)"
  },
  {
    "answer": "SELECT producer FROM table_name_74 WHERE role = \"rizzette\"",
    "question_en": "Which Producer has a Role of rizzette?",
    "question_th": "โปรดิวเซอร์คนไหนที่มีบทบาทเป็นริซเซตต์?",
    "context": "CREATE TABLE table_name_74 (producer VARCHAR, role VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_39 WHERE director = \"rowell santiago\"",
    "question_en": "Which Title has a Director of rowell santiago?",
    "question_th": "ตำแหน่งใดมีผู้อำนวยการของ 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_en": "Which Year has a Producer of viva films, and a Title of magkapatid?",
    "question_th": "ปีใดที่มีผู้ผลิตภาพยนตร์วีว่าและมีตำแหน่งแม็กกะปะติ๊ด?",
    "context": "CREATE TABLE table_name_41 (year VARCHAR, producer VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT director FROM table_name_80 WHERE role = \"melissa\"",
    "question_en": "Which Director has a Role of melissa?",
    "question_th": "ผู้กำกับคนไหนที่มีบทบาทเป็นเมลิสสา?",
    "context": "CREATE TABLE table_name_80 (director VARCHAR, role VARCHAR)"
  },
  {
    "answer": "SELECT 1990 AS _91 FROM table_name_34 WHERE average = 1.035",
    "question_en": "Which 1990-91 has an average number of 1.035?",
    "question_th": "ซึ่งปี 1990-91 มีจำนวนเฉลี่ย 1.035?",
    "context": "CREATE TABLE table_name_34 (average VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_90 WHERE week > 13",
    "question_en": "What results has a week larger than 13?",
    "question_th": "ผลลัพธ์ใดมีสัปดาห์มากกว่า 13?",
    "context": "CREATE TABLE table_name_90 (result VARCHAR, week INTEGER)"
  },
  {
    "answer": "SELECT result FROM table_name_79 WHERE week < 2",
    "question_en": "What results has a week smaller than 2?",
    "question_th": "ผลลัพธ์ใดที่มีหนึ่งสัปดาห์น้อยกว่า 2",
    "context": "CREATE TABLE table_name_79 (result VARCHAR, week INTEGER)"
  },
  {
    "answer": "SELECT score FROM table_name_71 WHERE game = 30",
    "question_en": "What was the score for game number 30?",
    "question_th": "คะแนนของเกมหมายเลข 30 คืออะไร?",
    "context": "CREATE TABLE table_name_71 (score VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT SUM(game) FROM table_name_91 WHERE score = \"103–126\"",
    "question_en": "What is the sum for the game with a score of 103–126?",
    "question_th": "ผลรวมของเกมที่มีคะแนน 103–126 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_91 (game INTEGER, score VARCHAR)"
  },
  {
    "answer": "SELECT MIN(game) FROM table_name_93 WHERE record = \"3–33\"",
    "question_en": "What is the lowest game number that has a Record of 3–33?",
    "question_th": "หมายเลขเกมต่ำสุดที่มีสถิติ 3–33 คืออะไร?",
    "context": "CREATE TABLE table_name_93 (game INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_18 WHERE february = 21",
    "question_en": "what score was on february 21",
    "question_th": "คะแนนเมื่อวันที่ 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_en": "What is the nationality of the player from the Ohio State University (NCAA) Team?",
    "question_th": "ผู้เล่นจากทีมมหาวิทยาลัยแห่งรัฐโอไฮโอ (NCAA) มีสัญชาติอะไร",
    "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_en": "What is the lowest round of the Kitchener Rangers (OHA)?",
    "question_th": "คิทเชนเนอร์ เรนเจอร์ส (โอเอชเอ) รอบต่ำสุดคือเท่าไร?",
    "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_en": "What is the position of Pierre Daigneault?",
    "question_th": "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_en": "What is the average 2006 value with a 2010 value of 417.9 and a 2011 value greater than 426.7?",
    "question_th": "ค่าเฉลี่ยปี 2549 ที่มีมูลค่าปี 2553 เท่ากับ 417.9 และค่าปี 2554 มากกว่า 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_en": "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?",
    "question_th": "ค่ารวมปี 2554 ที่มีมูลค่าปี 2551 มากกว่า 346.5 ค่าปี 2552 เท่ากับ 392 และค่าปี 2553 มากกว่า 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_en": "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?",
    "question_th": "มูลค่ารวมของปี 2551 โดยมีมูลค่าปี 2549 มากกว่า 322.7, 353.9 ในปี 2554 และปี 2552 น้อยกว่า 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_en": "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?",
    "question_th": "ค่าสูงสุดในปี 2552 โดยมีค่าปี 2549 น้อยกว่า 280.4 ปี 2550 น้อยกว่า 2.2 และปี 2554 น้อยกว่า 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_en": "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?",
    "question_th": "ค่าเฉลี่ยปี 2550 โดยค่าปี 2552 มากกว่า 2.8, 4.9 ในปี 2553 และปี 2549 น้อยกว่า 2.5 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_19 (Id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(2006) FROM table_name_95 WHERE 2010 > 417.9",
    "question_en": "What is the 2006 total with a 2010 value greater than 417.9?",
    "question_th": "ผลรวมปี 2549 ที่มีมูลค่าปี 2553 มากกว่า 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_en": "when has an Opponent of @ philadelphia phillies and an Attendance of 20,072?",
    "question_th": "เมื่อไรจะมีฝ่ายตรงข้ามของ @ philadelphia phillies และมีผู้เข้าร่วม 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_en": "Which Opponent is on april 28?",
    "question_th": "ฝ่ายตรงข้ามคนไหนคือวันที่ 28 เมษายน?",
    "context": "CREATE TABLE table_name_19 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_62 WHERE attendance = \"24,597\"",
    "question_en": "Which Record has an Attendance of 24,597?",
    "question_th": "บันทึกใดมีผู้เข้าร่วม 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_en": "Which Record has a Loss of o'connor (0-1)?",
    "question_th": "สถิติไหนแพ้โอคอนเนอร์ (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_en": "which attendance has a Loss of drese (0-2)?",
    "question_th": "ผู้เข้าร่วมคนไหนมีการสูญเสียเดรส (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_en": "What is the highest 2nd in (m) that has a Rank more than 2 and Points more than 249.3",
    "question_th": "อันดับ 2 สูงสุดใน (m) คืออะไรที่มีอันดับมากกว่า 2 และคะแนนมากกว่า 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_en": "What is the first date of election for the incumbent that was re-elected in the South Carolina 1 district?",
    "question_th": "วันแรกของการเลือกตั้งสำหรับผู้ดำรงตำแหน่งที่ได้รับการเลือกตั้งใหม่ในเขตเซาท์แคโรไลนา 1 คืออะไร?",
    "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_en": "Who was the incumbent who was first elected in 1876?",
    "question_th": "ใครเป็นผู้ดำรงตำแหน่งที่ได้รับเลือกครั้งแรกในปี พ.ศ. 2419?",
    "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_en": "Who was the Democratic incumbent in the South Carolina 5 District?",
    "question_th": "ใครคือผู้ดำรงตำแหน่งพรรคเดโมแครตในเขตเซาท์แคโรไลนา 5?",
    "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_en": "What is the first elected date for the incumbent in the South Carolina 4 district?",
    "question_th": "วันที่ได้รับเลือกครั้งแรกสำหรับผู้ดำรงตำแหน่งในเขต South Carolina 4 คืออะไร?",
    "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_en": "Which area has a telephone of (052) of 3862279?",
    "question_th": "พื้นที่ไหนมีโทรศัพท์หมายเลข (052) 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_en": "Which driver had points over 252 in the season of 2012 with a percentage of possible points at 55.60%?",
    "question_th": "นักแข่งคนไหนมีคะแนนมากกว่า 252 ในฤดูกาล 2555 โดยมีเปอร์เซ็นต์ของคะแนนที่เป็นไปได้ที่ 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_en": "What is the number of races that took place with points of 257?",
    "question_th": "จำนวนการแข่งขันที่เกิดขึ้นด้วยคะแนน 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_en": "What is the number of points that driver fernando alonso has in the season he had 20 races?",
    "question_th": "จำนวนคะแนนที่นักแข่งเฟอร์นันโด อลอนโซ มีในฤดูกาลที่เขาลงแข่ง 20 รายการเป็นเท่าใด",
    "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_en": "What was the average Points of the season driver Fernando Alonso had a percentage of possible points of 53.05%?",
    "question_th": "คะแนนเฉลี่ยของนักแข่งประจำฤดูกาลอย่าง Fernando Alonso มีเปอร์เซ็นต์ของคะแนนที่เป็นไปได้ที่ 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_en": "What position has 217 as the pick?",
    "question_th": "ตำแหน่งใดที่มี 217 เป็นตัวเลือก?",
    "context": "CREATE TABLE table_name_93 (position VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_36 WHERE record = \"18-21-7\"",
    "question_en": "Which score has a record of 18-21-7?",
    "question_th": "สกอร์ไหนมีสถิติ 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_en": "What is the lowest value for apps in 2009 season in a division less than 1?",
    "question_th": "ค่าต่ำสุดสำหรับแอปในฤดูกาล 2009 ในดิวิชั่นที่น้อยกว่า 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_en": "What is the sum of goals for Torpedo Moscow in division 1 with an apps value less than 29?",
    "question_th": "ผลรวมประตูของตอร์ปิโด มอสโกในดิวิชั่น 1 ที่มีมูลค่าแอปน้อยกว่า 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_en": "Which Remixed by has a Version of album version, and an Album of les mots?",
    "question_th": "Remixed by ใดมีเวอร์ชันของอัลบั้มและอัลบั้มของ 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_en": "How long was the instrumental version in 1986?",
    "question_th": "เวอร์ชันบรรเลงในปี 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_en": "Which long version was remixed in 1986?",
    "question_th": "เวอร์ชันยาวใดที่ได้รับการรีมิกซ์ในปี 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_en": "Who was Canada's lead?",
    "question_th": "ใครเป็นผู้นำของแคนาดา?",
    "context": "CREATE TABLE table_name_76 (lead VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT skip FROM table_name_68 WHERE country = \"canada\"",
    "question_en": "What was Canada's skip?",
    "question_th": "การข้ามของแคนาดาคืออะไร?",
    "context": "CREATE TABLE table_name_68 (skip VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_50 WHERE lead = \"sarah wazney\"",
    "question_en": "Which country has a Lead of sarah wazney?",
    "question_th": "Sarah Wazney มีลีดเดอร์ประเทศไหน?",
    "context": "CREATE TABLE table_name_50 (country VARCHAR, lead VARCHAR)"
  },
  {
    "answer": "SELECT lead FROM table_name_56 WHERE third = \"jeanne ellegaard\"",
    "question_en": "Which Lead has a Third of jeanne ellegaard?",
    "question_th": "Lead คนไหนมีหนึ่งในสามของ Jeanne ellegaard?",
    "context": "CREATE TABLE table_name_56 (lead VARCHAR, third VARCHAR)"
  },
  {
    "answer": "SELECT skip FROM table_name_39 WHERE third = \"sara carlsson\"",
    "question_en": "Which Skip has a Third of sara carlsson?",
    "question_th": "Skip คนไหนมีหนึ่งในสามของ sara Carlsson?",
    "context": "CREATE TABLE table_name_39 (skip VARCHAR, third VARCHAR)"
  },
  {
    "answer": "SELECT skip FROM table_name_21 WHERE second = \"vicki adams\"",
    "question_en": "Which Skip has a Second of vicki adams?",
    "question_th": "Skip คนไหนมีวินาทีของ 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_en": "Enrollment that has a School of south central (union mills) has what sum?",
    "question_th": "การลงทะเบียนที่มีโรงเรียนภาคใต้กลาง (โรงงานสหพันธ์) มีจำนวนเงินเท่าไร?",
    "context": "CREATE TABLE table_name_72 (enrollment INTEGER, school VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_17 WHERE mascot = \"blazers\"",
    "question_en": "Mascot of blazers involves what city?",
    "question_th": "มาสคอตของเบลเซอร์เกี่ยวข้องกับเมืองอะไร?",
    "context": "CREATE TABLE table_name_17 (city VARCHAR, mascot VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_83 WHERE county = \"46 laporte\"",
    "question_en": "County of 46 laporte is what school?",
    "question_th": "เขต 46 ลาปอร์ต โรงเรียนอะไร?",
    "context": "CREATE TABLE table_name_83 (school VARCHAR, county VARCHAR)"
  },
  {
    "answer": "SELECT AVG(laps) FROM table_name_56 WHERE time = \"spun off\"",
    "question_en": "What is the average Laps that shows spun off for time?",
    "question_th": "รอบเฉลี่ยที่แสดงแบบหมุนตามเวลาคือเท่าไร?",
    "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_en": "What is the average Laps for the Mexico team with a grid number of more than 1?",
    "question_th": "จำนวนรอบเฉลี่ยของทีมเม็กซิโกที่มีจำนวนกริดมากกว่า 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_en": "What is name of the drive with a Time of +13.315?",
    "question_th": "ชื่อของไดรฟ์ที่มีเวลา +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_en": "What is the total grid number that has 14 laps and a time of +29.483?",
    "question_th": "หมายเลขกริดรวมที่มี 14 รอบและเวลา +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_en": "What is the total number of Laps when collision shows for time for Switzerland and less than 11 for grid?",
    "question_th": "จำนวนรอบรวมของการชนแสดงเวลาสำหรับสวิตเซอร์แลนด์ และน้อยกว่า 11 รอบสำหรับกริดคือเท่าใด",
    "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_en": "What is the time of the game after week 4 against the Baltimore Ravens?",
    "question_th": "เวลาของเกมหลังจากสัปดาห์ที่ 4 กับบัลติมอร์ เรเวนส์คือเมื่อใด?",
    "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_en": "What nominated work has seattle international film festival as the award?",
    "question_th": "ผลงานที่ได้รับการเสนอชื่อเข้าชิงรางวัลอะไรมีเทศกาลภาพยนตร์นานาชาติซีแอตเทิลเป็นรางวัล?",
    "context": "CREATE TABLE table_name_24 (nominated_work VARCHAR, award VARCHAR)"
  },
  {
    "answer": "SELECT award FROM table_name_52 WHERE category = \"breakthrough performance\"",
    "question_en": "What award has breakthrough performance as the category?",
    "question_th": "รางวัลใดที่มีผลงานโดดเด่นเป็นหมวดหมู่?",
    "context": "CREATE TABLE table_name_52 (award VARCHAR, category VARCHAR)"
  },
  {
    "answer": "SELECT category FROM table_name_9 WHERE award = \"showest award\"",
    "question_en": "What category has showest award for the category awards?",
    "question_th": "หมวดหมู่ใดมีรางวัลแสดงมากที่สุดสำหรับรางวัลประเภทนั้น?",
    "context": "CREATE TABLE table_name_9 (category VARCHAR, award VARCHAR)"
  },
  {
    "answer": "SELECT category FROM table_name_33 WHERE year > 2004",
    "question_en": "What category has a year after 2004?",
    "question_th": "หมวดหมู่ใดมีหนึ่งปีหลังจากปี 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_en": "Which Opponent had a Score of 6-3, 6-2?",
    "question_th": "ฝ่ายตรงข้ามคนไหนมีสกอร์ 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_en": "Which Score had an Opponent of chris evert-lloyd?",
    "question_th": "คะแนนใดมีฝ่ายตรงข้ามของคริสเอเวิร์ต-ลอยด์?",
    "context": "CREATE TABLE table_name_53 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_45 WHERE opponent = \"chris evert-lloyd\"",
    "question_en": "Which Surface had an Opponent of chris evert-lloyd?",
    "question_th": "Surface คนไหนมีฝ่ายตรงข้ามกับ 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_en": "Which Surface had a Date of june 13, 1983?",
    "question_th": "Surface ใดมีวันที่ 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_en": "What was the highest attendance for a game where Geelong was the home team?",
    "question_th": "อะไรคือผู้เข้าร่วมสูงสุดในเกมที่จีลองเป็นเจ้าบ้าน?",
    "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_en": "What was the away team score when the home team was the Brisbane Lions?",
    "question_th": "สกอร์ทีมเยือนเมื่อเจ้าบ้านเป็นบริสเบนไลออนส์เป็นเท่าไหร่?",
    "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_en": "What was the largest attendance at the Telstra Dome, when the home team was the Western Bulldogs?",
    "question_th": "ผู้เข้าร่วมที่ Telstra Dome มากที่สุดคือเมื่อทีมเหย้าคือ 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_en": "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?",
    "question_th": "จำนวนสินค้าทั้งหมด (ในหน่วยเมตริกตัน) คือเท่าใด โดยที่รหัส (IATA/ICAO) คือ pvg/zspd และอันดับน้อยกว่า 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 • minneapolis, mn\" AND attendance = \"20,000\" AND result = \"w52-0\"",
    "question_en": "What is the Date at memorial stadium • minneapolis, mn with an Attendance of 20,000, and a Result of w52-0?",
    "question_th": "วันที่เท่าไหร่ที่สนามกีฬาอนุสรณ์ • มินนิอาโปลิส มินนิโซตา มีผู้เข้าร่วม 20,000 คน และผลการแข่งขันของ 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 • minneapolis, mn\" AND date = \"10/20/1928\"",
    "question_en": "What is the Opponent name at memorial stadium • minneapolis, mn on 10/20/1928?",
    "question_th": "ชื่อฝ่ายตรงข้ามที่สนามเมมโมเรียลสเตเดียม • มินนีแอโพลิส, มินนิโซตา เมื่อวันที่ 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_en": "What is the Attendance number when the Opponent was purdue?",
    "question_th": "หมายเลขผู้เข้าร่วมเมื่อฝ่ายตรงข้ามถูกไล่ออกคืออะไร?",
    "context": "CREATE TABLE table_name_15 (attendance VARCHAR, opponent_number VARCHAR)"
  },
  {
    "answer": "SELECT site FROM table_name_92 WHERE result = \"w52-0\"",
    "question_en": "What is the Site when the Result was w52-0?",
    "question_th": "ไซต์คืออะไรเมื่อผลลัพธ์คือ 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_en": "What is the Attendance on 11/10/1928?",
    "question_th": "การเข้าร่วมในวันที่ 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_en": "Who was the Winner at Campbelltown Sports Stadium?",
    "question_th": "ใครคือผู้ชนะที่สนามกีฬาแคมป์เบลล์ทาวน์?",
    "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_en": "When Sydney Roosters won with a Crown of more than 7,426, what was the Venue?",
    "question_th": "เมื่อ Sydney Roosters ชนะด้วยมงกุฎมากกว่า 7,426 มงกุฎ สถานที่จัดคือที่ไหน?",
    "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_en": "What was the second leg score from the group stage on matchday 5?",
    "question_th": "คะแนนเลกที่สองจากรอบแบ่งกลุ่มในนัดที่ 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_en": "what year did enrique alciati make a statue",
    "question_th": "เอ็นริเก อัลเซียติ สร้างรูปปั้นในปีใด",
    "context": "CREATE TABLE table_name_51 (year_erected VARCHAR, artist VARCHAR)"
  },
  {
    "answer": "SELECT artist FROM table_name_81 WHERE country = \"uruguay\"",
    "question_en": "what artist cam from uruguay",
    "question_th": "ศิลปินคนไหนมาจากอุรุกวัย",
    "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_en": "When did mika heinonen susanna dahlberg win mixed doubles?",
    "question_th": "มิกา ไฮโนเนน ซูซานนา ดาห์ลเบิร์ก ชนะประเภทคู่ผสมเมื่อใด",
    "context": "CREATE TABLE table_name_55 (year INTEGER, mixed_doubles VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_32 WHERE score = \"0–3 (11–21, 14–21)\"",
    "question_en": "Score of 0–3 (11–21, 14–21) had what outcome?",
    "question_th": "คะแนน 0–3 (11–21, 14–21) มีผลอย่างไร?",
    "context": "CREATE TABLE table_name_32 (outcome VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_99 WHERE venue = \"thessaloniki (without participation)\"",
    "question_en": "Venue of thessaloniki (without participation) had what score?",
    "question_th": "สถานที่เทสซาโลนิกิ (ไม่เข้าร่วม) ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_99 (score VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_51 WHERE outcome = \"13\" AND year = \"2007\"",
    "question_en": "Outcome of 13, and a Year of 2007 happened in what venue?",
    "question_th": "ผลลัพธ์ของ 13 และปี 2550 เกิดขึ้นที่ใด?",
    "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_en": "Which Eruptions have a Location of pacific ring of fire, and a Volcanic Explosivity Index of 6, and a Country of peru?",
    "question_th": "การปะทุใดมีที่ตั้งของวงแหวนไฟแปซิฟิก และดัชนีการระเบิดของภูเขาไฟที่ 6 และประเทศเปรู",
    "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_en": "How many fatalities does Italy have?",
    "question_th": "อิตาลีมีผู้เสียชีวิตกี่ราย?",
    "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_en": "How many years have a Location of pacific ring of fire, and Eruptions of pinatubo?",
    "question_th": "ที่ตั้งของวงแหวนแห่งไฟแปซิฟิกและการปะทุของปินาตูโบมีกี่ปี?",
    "context": "CREATE TABLE table_name_22 (year INTEGER, location VARCHAR, eruptions VARCHAR)"
  },
  {
    "answer": "SELECT standings FROM table_name_28 WHERE champions = \"eintracht braunschweig\"",
    "question_en": "What is the Standings of Eintracht Braunschweig?",
    "question_th": "อันดับของ Eintracht Braunschweig คืออะไร?",
    "context": "CREATE TABLE table_name_28 (standings VARCHAR, champions VARCHAR)"
  },
  {
    "answer": "SELECT AVG(points) FROM table_name_92 WHERE year > 2001",
    "question_en": "Year larger than 2001 has what average points?",
    "question_th": "ปีที่มากกว่าปี 2544 มีคะแนนเฉลี่ยเท่าใด",
    "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_en": "Team of Honda and a point total of 238 is what highest year?",
    "question_th": "ทีมฮอนด้าและคะแนนรวม 238 คือปีสูงสุดที่ใด?",
    "context": "CREATE TABLE table_name_69 (year INTEGER, team VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_96 WHERE wins = 0",
    "question_en": "Wins of 0 involves what team?",
    "question_th": "ชนะ 0 เกี่ยวข้องกับทีมใด",
    "context": "CREATE TABLE table_name_96 (team VARCHAR, wins VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_75 WHERE pick = 5",
    "question_en": "what player has a pick of 5",
    "question_th": "ผู้เล่นคนไหนเลือกได้ 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_en": "Which District has a First elected of 1858, and a Result of retired republican gain, and an Incumbent of william millward?",
    "question_th": "เขตใดได้รับการเลือกตั้งครั้งแรกในปี พ.ศ. 2401 และผลของการได้รับเลือกจากพรรครีพับลิกันที่เกษียณอายุ และดำรงตำแหน่งของวิลเลียม มิลวอร์ด",
    "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_en": "Which Result has a District of pennsylvania 13?",
    "question_th": "ผลลัพธ์ใดมีเขตเพนซิลเวเนีย 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_en": "Which First elected is the lowest one that has an Incumbent of william stewart?",
    "question_th": "ผู้ที่ได้รับเลือกเป็นอันดับแรกคนใดคือผู้ดำรงตำแหน่งต่ำสุดที่มีผู้ดำรงตำแหน่งวิลเลียม สจ๊วต?",
    "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_en": "Who was the Player when College/Junior/Club Team (League) was regina pats (whl)?",
    "question_th": "ใครคือผู้เล่นเมื่อทีมวิทยาลัย/จูเนียร์/คลับ (ลีก) เป็นเรจิน่าตบ (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_en": "What is the date of the game with an attendance larger than 62,491?",
    "question_th": "วันที่ของเกมที่มีผู้เข้าชมมากกว่า 62,491 คนคือวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_55 (date VARCHAR, attendance INTEGER)"
  },
  {
    "answer": "SELECT attendance FROM table_name_10 WHERE week = 4",
    "question_en": "What is the attendance of the game on week 4?",
    "question_th": "ผู้เข้าร่วมเกมในสัปดาห์ที่ 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_en": "How many extra points are there that Herrnstein had with less than 2 touchdowns and less than 0 field goals?",
    "question_th": "มีกี่แต้มพิเศษที่เฮิร์นสไตน์มีน้อยกว่า 2 ทัชดาวน์และน้อยกว่า 0 ฟิลด์โกล?",
    "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_en": "How many touchdowns are there that has field goals less than 0 and 0 extra points?",
    "question_th": "มีกี่ทัชดาวน์ที่มีการยิงประตูน้อยกว่า 0 และมีแต้มพิเศษ 0 แต้ม?",
    "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_en": "How many field goals are there that have 8 touchdowns and more than 49 points?",
    "question_th": "มีกี่ประตูที่มี 8 ทัชดาวน์และมากกว่า 49 แต้ม?",
    "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_en": "What's the number of touchdowns that Snow made that had 0 field goals, more than 5 points, and more than 0 extra points?",
    "question_th": "สโนว์ทำทัชดาวน์โดยเสียฟิลด์โกล 0 ครั้ง มากกว่า 5 แต้ม และแต้มพิเศษมากกว่า 0 แต้มเป็นจำนวนเท่าใด",
    "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_en": "For an IATA of MLE, what is the ICAO?",
    "question_th": "สำหรับ IATA ของ MLE ICAO คืออะไร",
    "context": "CREATE TABLE table_name_21 (icao VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT iata FROM table_name_66 WHERE icao = \"vcct\"",
    "question_en": "For an ICAO of VCCT, what is the IATA?",
    "question_th": "ICAO ของ VCCT IATA คืออะไร",
    "context": "CREATE TABLE table_name_66 (iata VARCHAR, icao VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_96 WHERE icao = \"vccj\"",
    "question_en": "Which city has an ICAO of VCCJ?",
    "question_th": "เมืองใดมี ICAO ของ VCCJ",
    "context": "CREATE TABLE table_name_96 (city VARCHAR, icao VARCHAR)"
  },
  {
    "answer": "SELECT icao FROM table_name_97 WHERE city = \"vavuniya\"",
    "question_en": "Which ICAO is found in Vavuniya?",
    "question_th": "ICAO ใดที่พบในวาวูนิยา?",
    "context": "CREATE TABLE table_name_97 (icao VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_76 WHERE airport = \"weerawila airport\"",
    "question_en": "Which country has Weerawila Airport?",
    "question_th": "ประเทศใดมีสนามบินวีรวิลา?",
    "context": "CREATE TABLE table_name_76 (country VARCHAR, airport VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_39 WHERE date = \"april 1\"",
    "question_en": "Which opponent has april 1 as the date?",
    "question_th": "ฝ่ายตรงข้ามคนไหนที่มีวันที่ 1 เมษายนเป็นวันที่?",
    "context": "CREATE TABLE table_name_39 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_24 WHERE loss = \"tomko (1-1)\"",
    "question_en": "What opponent has tomko (1-1) as a loss?",
    "question_th": "คู่ต่อสู้คนไหนที่ทอมโกะ (1-1) แพ้?",
    "context": "CREATE TABLE table_name_24 (opponent VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_76 WHERE record = \"8-10\"",
    "question_en": "What opponent has 8-10 as the record?",
    "question_th": "ฝ่ายตรงข้ามคนไหนมี 8-10 เป็นสถิติ?",
    "context": "CREATE TABLE table_name_76 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT class_aAA FROM table_name_85 WHERE school_year = \"2006-07\"",
    "question_en": "Whcih was the Class AAA in school year 2006-07?",
    "question_th": "Class AAA อยู่ที่ไหนในปีการศึกษา 2549-50",
    "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_en": "What team was class AA in years 1994-95?",
    "question_th": "ทีมใดเป็นคลาส AA ในปี 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_en": "Who was Class AA in School Year 1994-95?",
    "question_th": "ใครคือคลาส AA ในโรงเรียนปี 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_en": "What's the date of the game that has the Bulls as a visiting team?",
    "question_th": "เกมที่มีบูลส์เป็นทีมเยือนคือวันไหน?",
    "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_en": "What is the average game number that took place after February 13 against the Toronto Maple Leafs and more than 47 points were scored?",
    "question_th": "หมายเลขเกมเฉลี่ยที่เกิดขึ้นหลังวันที่ 13 กุมภาพันธ์กับโตรอนโต เมเปิล ลีฟส์ และทำคะแนนได้มากกว่า 47 แต้มคือเท่าใด",
    "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_en": "Who was the opponent at the game at Sullivan Stadium before week 11?",
    "question_th": "คู่ต่อสู้ในเกมที่ซัลลิแวน สเตเดี้ยม ก่อนสัปดาห์ที่ 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_en": "What is the years coached by the person with a win percentage of 0.667 and 380 losses?",
    "question_th": "ปีที่ได้รับการฝึกสอนโดยบุคคลที่มีเปอร์เซ็นต์การชนะ 0.667 และ 380 แพ้คือเท่าใด",
    "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_en": "What is the average percent for the coach from 1905 and more than 7 losses?",
    "question_th": "เปอร์เซ็นต์เฉลี่ยของโค้ชตั้งแต่ปี 1905 และการแพ้มากกว่า 7 ครั้งคือเท่าไร?",
    "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_en": "How many percentages have 20 losses and more than 1 season?",
    "question_th": "กี่เปอร์เซ็นต์ที่มีการแพ้ 20 ครั้งและมากกว่า 1 ฤดูกาล?",
    "context": "CREATE TABLE table_name_17 (pct VARCHAR, lost VARCHAR, seasons VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_67 WHERE date = \"february 10\"",
    "question_en": "What home has February 10 as the date?",
    "question_th": "บ้านไหนมีวันที่ 10 กุมภาพันธ์ เป็นวันที่?",
    "context": "CREATE TABLE table_name_67 (home VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_66 WHERE visitor = \"ny islanders\"",
    "question_en": "What date has ny islanders as the visitor?",
    "question_th": "มีชาวเกาะมาเยี่ยมเยียนวันไหน?",
    "context": "CREATE TABLE table_name_66 (date VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_57 WHERE date = \"february 10\"",
    "question_en": "What score has February 10 as the date?",
    "question_th": "วันที่ 10 กุมภาพันธ์ มีคะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_57 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT course FROM table_name_29 WHERE date = \"24 july\"",
    "question_en": "Name the course for 24 july",
    "question_th": "ตั้งชื่อคอร์สวันที่ 24 ก.ค",
    "context": "CREATE TABLE table_name_29 (course VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT course FROM table_name_58 WHERE type = \"team time trial\"",
    "question_en": "Name the course for team time trial",
    "question_th": "ตั้งชื่อหลักสูตรสำหรับการทดลองใช้เวลาแบบทีม",
    "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_en": "Name the winner for rest day for 13 july",
    "question_th": "ประกาศรายชื่อผู้โชคดีวันพัก 13 ก.ค",
    "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_en": "Shawn Michaels entered the elimination chamber in what position?",
    "question_th": "Shawn Michaels เข้าห้องคัดออกในตำแหน่งไหน?",
    "context": "CREATE TABLE table_name_86 (entered INTEGER, wrestler VARCHAR)"
  },
  {
    "answer": "SELECT eliminated_by FROM table_name_49 WHERE wrestler = \"kurt angle\"",
    "question_en": "Who Eliminated Kurt Angle?",
    "question_th": "ใครเป็นผู้กำจัดเคิร์ต แองเกิล?",
    "context": "CREATE TABLE table_name_49 (eliminated_by VARCHAR, wrestler VARCHAR)"
  },
  {
    "answer": "SELECT eliminated_by FROM table_name_63 WHERE wrestler = \"kane\"",
    "question_en": "Who Eliminated Kane?",
    "question_th": "ใครเป็นคนกำจัดเคน?",
    "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_en": "What is the sum of all gold medals for Algeria when total medals is less than 3?",
    "question_th": "ผลรวมของเหรียญทองทั้งหมดของแอลจีเรียเมื่อรวมเหรียญน้อยกว่า 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_en": "what is the population of Valencia, Spain?",
    "question_th": "ประชากรของบาเลนเซีย ประเทศสเปน คือเท่าไร?",
    "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_en": "which year holds rank 2?",
    "question_th": "ปีไหนครองอันดับ 2?",
    "context": "CREATE TABLE table_name_89 (year INTEGER, rank VARCHAR)"
  },
  {
    "answer": "SELECT AVG(floors) FROM table_name_19 WHERE name = \"meridian condominiums\"",
    "question_en": "with name meridian condominiums what is number of floors?",
    "question_th": "ชื่อ เมอริเดียน คอนโดมิเนียม กี่ชั้น?",
    "context": "CREATE TABLE table_name_19 (floors INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_name_48 WHERE rank = \"31\"",
    "question_en": "with rank of 31 what is the year?",
    "question_th": "ด้วยอันดับที่ 31 ตรงกับปีอะไร?",
    "context": "CREATE TABLE table_name_48 (year VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_78 WHERE visitor = \"toronto\"",
    "question_en": "What was the date of the match against the visiting team, Toronto?",
    "question_th": "แมตช์กับทีมเยือนโตรอนโต้คือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_78 (date VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_56 WHERE date = \"january 6\"",
    "question_en": "Who played the home team during the game on January 6?",
    "question_th": "ใครเล่นเป็นเจ้าบ้านระหว่างเกมวันที่ 6 มกราคม?",
    "context": "CREATE TABLE table_name_56 (home VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_88 WHERE visitor = \"boston\"",
    "question_en": "What was the cougars record during the game where Boston were the visitors?",
    "question_th": "คูการ์บันทึกระหว่างเกมที่บอสตันเป็นผู้มาเยือนคืออะไร?",
    "context": "CREATE TABLE table_name_88 (record VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT MIN(drawn) FROM table_name_1 WHERE lost < 0",
    "question_en": "What's the lowest Drawn that has a Lost that's less than 0?",
    "question_th": "จำนวนเงินที่สุ่มได้ต่ำสุดที่แพ้น้อยกว่า 0 คือเท่าไร?",
    "context": "CREATE TABLE table_name_1 (drawn INTEGER, lost INTEGER)"
  },
  {
    "answer": "SELECT SUM(lost) FROM table_name_23 WHERE games < 4",
    "question_en": "What's the total Lost with Games that's less than 4?",
    "question_th": "จำนวนเกมที่แพ้ทั้งหมดที่มีเกมน้อยกว่า 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_en": "What's the total of Games with a Lost that's larger than 2, and has Points that's smaller than 0?",
    "question_th": "เกมที่แพ้มากกว่า 2 และมีแต้มน้อยกว่า 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_en": "What's the Lost average that has a Drawn less than 0?",
    "question_th": "ค่าเฉลี่ยที่เสียไปที่มีการเสมอน้อยกว่า 0 คืออะไร?",
    "context": "CREATE TABLE table_name_19 (lost INTEGER, drawn INTEGER)"
  },
  {
    "answer": "SELECT record FROM table_name_93 WHERE opponent = \"@ ottawa senators\"",
    "question_en": "What record has @ ottawa senators as the opponent?",
    "question_th": "บันทึกอะไรที่มี @ วุฒิสมาชิกออตตาวาเป็นคู่ต่อสู้?",
    "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_en": "What game has 28 points, and tampa bay lightning as the opponent?",
    "question_th": "เกมอะไรมี 28 แต้ม และมี แทมปา เบย์ ไลท์นิ่ง เป็นคู่ต่อสู้?",
    "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_en": "What is the average points that have a December less than 6, with a game greater than 26?",
    "question_th": "คะแนนเฉลี่ยที่มีเดือนธันวาคมน้อยกว่า 6 โดยมีเกมมากกว่า 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_en": "Who was the opponent at the game with a loss of Sele (0-1)?",
    "question_th": "คู่ต่อสู้ในเกมที่แพ้เซเล (0-1) คือใคร?",
    "context": "CREATE TABLE table_name_36 (opponent VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT AVG(points) FROM table_name_95 WHERE record = \"42–16–8\" AND march > 5",
    "question_en": "Record of 42–16–8, and a March larger than 5 has what average points?",
    "question_th": "บันทึกที่ 42–16–8 และเดือนมีนาคมที่มากกว่า 5 มีคะแนนเฉลี่ยเท่าใด",
    "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–16–8\"",
    "question_en": "Points smaller than 96, and a Record of 43–16–8 belongs to what game?",
    "question_th": "คะแนนน้อยกว่า 96 และสถิติ 43–16–8 เป็นของเกมใด",
    "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–16–8\"",
    "question_en": "Game smaller than 70, and a Record of 43–16–8 is what opponent?",
    "question_th": "เกมที่เล็กกว่า 70 และสถิติ 43–16–8 คือคู่ต่อสู้คนไหน?",
    "context": "CREATE TABLE table_name_39 (opponent VARCHAR, game VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_95 WHERE record = \"44–18–8\"",
    "question_en": "Record of 44–18–8 involves which score?",
    "question_th": "บันทึก 44–18–8 เกี่ยวข้องกับคะแนนใด",
    "context": "CREATE TABLE table_name_95 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_44 WHERE player = \"kellen davis\"",
    "question_en": "Which college is Kellen Davis from?",
    "question_th": "Kellen Davis มาจากวิทยาลัยไหน",
    "context": "CREATE TABLE table_name_44 (college VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_30 WHERE position = \"according to official website\"",
    "question_en": "Which round's position is according to official website?",
    "question_th": "ตำแหน่งรอบไหนเป็นไปตามเว็บไซต์ทางการ?",
    "context": "CREATE TABLE table_name_30 (round VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_29 WHERE round = \"3\" AND pick = \"70\"",
    "question_en": "Which position's round was 3 when pick was 70?",
    "question_th": "รอบของตำแหน่งใดคือ 3 เมื่อตัวเลือกคือ 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_en": "Which pick's round was 5 when Kellen Davis was a player?",
    "question_th": "การเลือกรอบใดคือ 5 เมื่อ Kellen Davis ยังเป็นผู้เล่น?",
    "context": "CREATE TABLE table_name_40 (pick VARCHAR, round VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_86 WHERE pick = \"14\"",
    "question_en": "Which college's pick was 14?",
    "question_th": "วิทยาลัยใดที่เลือกคือ 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_en": "Which Rec has an Average smaller than 32, and a Touchdown smaller than 3, and an Opponent of oregon state?",
    "question_th": "Rec ใดมีค่าเฉลี่ยน้อยกว่า 32 และทัชดาวน์น้อยกว่า 3 และเป็นฝ่ายตรงข้ามของรัฐออริกอน",
    "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_en": "Which rec has Yards of 192, and a Touchdown smaller than 1?",
    "question_th": "รอบใดมีระยะ 192 หลา และทัชดาวน์เล็กกว่า 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_en": "Which Opponent has Yards smaller than 197, and an Average smaller than 32, and a Year of 1966?",
    "question_th": "ฝ่ายตรงข้ามคนใดที่มีหลาน้อยกว่า 197 และมีค่าเฉลี่ยน้อยกว่า 32 และปี 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_en": "How many Touchdowns have a rec of 10, and an Opponent of oregon state, and an Average smaller than 19.7?",
    "question_th": "มีกี่ทัชดาวน์ที่มีคะแนน 10 และมีฝ่ายตรงข้ามของรัฐโอเรกอนหนึ่งคนและมีค่าเฉลี่ยน้อยกว่า 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_en": "Which Points have an Opponent of @ atlanta thrashers, and a Game smaller than 28?",
    "question_th": "คะแนนใดที่มีฝ่ายตรงข้ามของ @ Atlanta thrashers และเกมที่เล็กกว่า 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–3\" AND december = 13",
    "question_en": "How many Points have a Game smaller than 37, and a Score of 2–3, and a December of 13?",
    "question_th": "มีกี่คะแนนที่มีเกมที่น้อยกว่า 37 และคะแนน 2–3 และ 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–2\"",
    "question_en": "Which Game is the highest one that has a Score of 3–2?",
    "question_th": "เกมใดเป็นเกมที่สูงที่สุดที่มีคะแนน 3–2?",
    "context": "CREATE TABLE table_name_92 (game INTEGER, score VARCHAR)"
  },
  {
    "answer": "SELECT spans FROM table_name_73 WHERE built = \"1896\"",
    "question_en": "What spans were built in 1896?",
    "question_th": "ช่วงใดที่ถูกสร้างขึ้นในปี พ.ศ. 2439?",
    "context": "CREATE TABLE table_name_73 (spans VARCHAR, built VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_21 WHERE length__ft_ = 71",
    "question_en": "Who has a length of 71 ft?",
    "question_th": "ใครมีความยาว 71 ฟุต?",
    "context": "CREATE TABLE table_name_21 (name VARCHAR, length__ft_ VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_98 WHERE county = \"rockingham\"",
    "question_en": "Where was the county of rockingham?",
    "question_th": "เคาน์ตีร็อคกิงแฮมอยู่ที่ไหน?",
    "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_en": "What is the propulsion for the RB 04 earlier than 1962?",
    "question_th": "แรงขับของ RB 04 ก่อนปี 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_en": "What is the name of the anti-ship missile that had a turbojet propulsion that was launched by a surface, sub after 1985?",
    "question_th": "ขีปนาวุธต่อต้านเรือที่มีระบบขับเคลื่อนเทอร์โบเจ็ทชื่ออะไร ซึ่งถูกยิงจากพื้นน้ำ ใต้ท้องทะเลหลังปี 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_en": "What country had an anti-ship missile that had a solid rocket propulsion?",
    "question_th": "ประเทศใดมีขีปนาวุธต่อต้านเรือที่มีแรงขับจรวดที่แข็งแกร่ง",
    "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_en": "How many seats in 2001 with a quantity greater than 4?",
    "question_th": "มีกี่ที่นั่งในปี 2544 ที่มีปริมาณมากกว่า 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† < 3 AND quantity = 4",
    "question_en": "What make and model of the diesel vehicle with a high floor type, bike capacity less than 3, and a quantity of 4?",
    "question_th": "รถยนต์ดีเซลยี่ห้อและรุ่นอะไรที่มีพื้นสูง ความจุจักรยานน้อยกว่า 3 และปริมาณ 4",
    "context": "CREATE TABLE table_name_67 (make_and_model VARCHAR, quantity VARCHAR, bicycle_capacity† VARCHAR, fuel_propulsion VARCHAR, floor_type VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_91 WHERE opponent = \"nashville predators\"",
    "question_en": "What score has nashville predators as the opponent?",
    "question_th": "นักล่าแนชวิลล์เป็นคู่ต่อสู้ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_91 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT AVG(points) FROM table_name_36 WHERE december = 27",
    "question_en": "What are the average points that have december 27?",
    "question_th": "คะแนนเฉลี่ยของวันที่ 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_en": "What record has points greater than 39, with 38 as the game?",
    "question_th": "สถิติใดมีแต้มมากกว่า 39 โดยมี 38 เป็นเกม?",
    "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_en": "What is the Stuffit ability that has a gzip of yes, ISO/CD images of no and LHA/LZH of no?",
    "question_th": "ความสามารถของ Stuffit ที่มี gzip เป็น yes, อิมเมจ ISO/CD เป็น no และ LHA/LZH เป็น 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_en": "What is the gzip value associated with a stuffit of no, bzip2 of no, and LHA.LZH of no?",
    "question_th": "ค่า gzip ที่เกี่ยวข้องกับ stuffit ของ no, bzip2 ของ no และ LHA.LZH ของ 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_en": "What is the StuffitX value that has a Stuffit of unknown, LHA/LZH of yes, and unknown ISO/CD image?",
    "question_th": "ค่า StuffitX ที่มี Stuffit ที่ไม่รู้จัก, LHA/LZH ใช่ และอิมเมจ ISO/CD ที่ไม่รู้จัก คืออะไร",
    "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_en": "What is the stuffit that has bzip and LHA/LZH of no?",
    "question_th": "stuffit ที่มี bzip และ LHA/LZH ไม่มีคืออะไร?",
    "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_en": "Which round was Robert Deciantis taken in?",
    "question_th": "Robert Deciantis เข้ารอบไหน?",
    "context": "CREATE TABLE table_name_43 (round VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MIN(round) FROM table_name_15 WHERE player = \"brian elder\"",
    "question_en": "Which round was Brian Elder taken in?",
    "question_th": "Brian Elder เข้ารอบไหน?",
    "context": "CREATE TABLE table_name_15 (round INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_74 WHERE tournament = \"michalovce\"",
    "question_en": "what is the date of the tournament in michalovce",
    "question_th": "การแข่งขันวันที่มิชาลอฟเซคือวันที่เท่าไร",
    "context": "CREATE TABLE table_name_74 (date VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT winning_score FROM table_name_99 WHERE tournament = \"valero texas open\"",
    "question_en": "What was the winning score of the Valero Texas Open?",
    "question_th": "คะแนนชนะของ Valero Texas Open คืออะไร?",
    "context": "CREATE TABLE table_name_99 (winning_score VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_72 WHERE winning_score = –12(69 - 66 - 72 - 65 = 272)",
    "question_en": "When was the winning score –12 (69-66-72-65=272)?",
    "question_th": "คะแนนชนะคือเมื่อใด –12 (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 = –28(66 - 67 - 68 - 64 - 67 = 332)",
    "question_en": "Who was the runner-up when the winning score was –28 (66-67-68-64-67=332)?",
    "question_th": "ใครคือรองชนะเลิศเมื่อคะแนนชนะคือ –28 (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_en": "Which party had a Retired Democratic hold?",
    "question_th": "พรรคใดถือครองพรรคเดโมแครตที่เกษียณแล้ว?",
    "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_en": "What's the average year Charles N. Felton was re-elected?",
    "question_th": "ปีโดยเฉลี่ยที่ Charles N. Felton ได้รับเลือกอีกครั้งคือเท่าใด",
    "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_en": "What year was Barclay Henley first elected?",
    "question_th": "Barclay Henley ได้รับเลือกครั้งแรกในปีใด",
    "context": "CREATE TABLE table_name_77 (first_elected VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_12 WHERE sponsor = \"motorola\"",
    "question_en": "what is the sponsor of motorola",
    "question_th": "สปอนเซอร์ของโมโตโรล่าคืออะไร",
    "context": "CREATE TABLE table_name_12 (team VARCHAR, sponsor VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_94 WHERE event = \"sengoku 1\"",
    "question_en": "Which Opponent has the Event of Sengoku 1?",
    "question_th": "ฝ่ายตรงข้ามคนไหนมีเหตุการณ์ของ 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_en": "What Record has an Event of Pride Shockwave 2004?",
    "question_th": "บันทึกใดที่มีเหตุการณ์ 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_en": "What's the average pole position for the driver that has a percentage of 44.81%?",
    "question_th": "ตำแหน่งโพลโพสิชันเฉลี่ยของผู้ขับขี่ที่มีเปอร์เซ็นต์ 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_en": "What's the average front row starts for drivers with less than 68 pole positions and entries lower than 52?",
    "question_th": "ค่าเฉลี่ยแถวหน้าเริ่มต้นสำหรับผู้ขับขี่ที่มีตำแหน่งโพลน้อยกว่า 68 ตำแหน่งและรายการต่ำกว่า 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_en": "Attendance of 60,671 had what average week?",
    "question_th": "ผู้เข้าร่วม 60,671 คนมีสัปดาห์เฉลี่ยเท่าใด",
    "context": "CREATE TABLE table_name_9 (week INTEGER, attendance VARCHAR)"
  },
  {
    "answer": "SELECT AVG(attendance) FROM table_name_57 WHERE week = 7",
    "question_en": "Week of 7 had what average attendance?",
    "question_th": "สัปดาห์ที่ 7 มีผู้เข้าร่วมโดยเฉลี่ยเท่าใด",
    "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_en": "How many legs were lost for Trina Gulliver with more than 3 played?",
    "question_th": "ทรินา กัลลิเวอร์ เสียขาไปกี่ขาโดยเล่นมากกว่า 3 ขา?",
    "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_en": "What is the most sets won with less than 1 legs won?",
    "question_th": "ชนะน้อยกว่า 1 ขาได้เซตไหนมากที่สุด?",
    "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_en": "Yards of 45, and a Date of november 8, 1971 is what kicker?",
    "question_th": "ระยะ 45 หลาและวันที่ 8 พฤศจิกายน พ.ศ. 2514 เป็นนักเตะอะไร?",
    "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_en": "Game time of 2nd quarter (0:00), and a Date of november 8, 1971 has how many average yards?",
    "question_th": "เวลาแข่งขันของควอเตอร์ที่ 2 (0:00) และวันที่ 8 พฤศจิกายน 1971 มีระยะเฉลี่ยกี่หลา?",
    "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_en": "Opponent of new york giants, and a Yards smaller than 68 is what kicker?",
    "question_th": "ฝ่ายตรงข้ามของยักษ์ใหญ่ในนิวยอร์กและมีหลาที่เล็กกว่า 68 เป็นตัวเตะอะไร?",
    "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_en": "Yards larger than 52, and a Opponent of san francisco 49ers is what kicker?",
    "question_th": "หลาใหญ่กว่า 52 และฝ่ายตรงข้ามของซานฟรานซิสโก 49ERS คือนักเตะคนไหน?",
    "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_en": "Result of missed*, and a Game time of 2nd quarter (0:00), and a Kicker of mason crosby involves what date?",
    "question_th": "ผลการพลาด* และเวลาเล่นเกมของควอเตอร์ที่ 2 (0:00) และคิกเกอร์ของเมสัน ครอสบีเกี่ยวข้องกับวันที่ใด",
    "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_en": "Opponent of houston texans had what result?",
    "question_th": "ฝ่ายตรงข้ามของ houston texans มีผลอะไร?",
    "context": "CREATE TABLE table_name_2 (result VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_30 WHERE position = \"left wing\"",
    "question_en": "Which Nationality of the person has a Position on left wing?",
    "question_th": "บุคคลสัญชาติใดมีตำแหน่งปีกซ้าย?",
    "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_en": "Which College/Junior/Club Team (League) are from sweden?",
    "question_th": "ทีมวิทยาลัย/จูเนียร์/คลับ (ลีก) คนไหนมาจากสวีเดน?",
    "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_en": "WHich Position is from russia?",
    "question_th": "ตำแหน่งใดมาจากรัสเซีย?",
    "context": "CREATE TABLE table_name_39 (position VARCHAR, nationality VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_12 WHERE nationality = \"ukraine\"",
    "question_en": "Which venue is with Ukraine?",
    "question_th": "สนามไหนอยู่กับยูเครน?",
    "context": "CREATE TABLE table_name_12 (venue VARCHAR, nationality VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_44 WHERE nationality = \"belgium\"",
    "question_en": "Which venue had a nationality of Belgium?",
    "question_th": "สถานที่ใดมีสัญชาติเบลเยียม",
    "context": "CREATE TABLE table_name_44 (venue VARCHAR, nationality VARCHAR)"
  },
  {
    "answer": "SELECT best_actor FROM table_name_93 WHERE best_film = \"mystery\"",
    "question_en": "Which Best Actor has a Best Film of mystery?",
    "question_th": "นักแสดงนำชายยอดเยี่ยมคนไหนมีภาพยนตร์แนวลึกลับที่ดีที่สุด?",
    "context": "CREATE TABLE table_name_93 (best_actor VARCHAR, best_film VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_80 WHERE best_film = \"mystery\"",
    "question_en": "Which Year has a Best Film of mystery?",
    "question_th": "ปีใดที่มีภาพยนตร์ลึกลับที่ดีที่สุด?",
    "context": "CREATE TABLE table_name_80 (year VARCHAR, best_film VARCHAR)"
  },
  {
    "answer": "SELECT best_actress FROM table_name_12 WHERE year = \"2012 6th\"",
    "question_en": "Which Best Actress has a Year of 2012 6th?",
    "question_th": "นักแสดงหญิงคนไหนยอดเยี่ยมประจำปี 2555 อันดับที่ 6?",
    "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_en": "Which Best Actor has a Best Director of takeshi kitano for outrage beyond?",
    "question_th": "นักแสดงนำชายยอดเยี่ยมคนใดที่มีผู้กำกับยอดเยี่ยมของ Takeshi Kitano ในเรื่องความชั่วร้ายมากกว่านั้น?",
    "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ño\"",
    "question_en": "Which Best Film has a Best Supporting Actress of shamaine buencamino for niño?",
    "question_th": "ภาพยนตร์ที่ดีที่สุดเรื่องใดที่มีนักแสดงสมทบหญิงยอดเยี่ยมคือ shamaine buencamino สำหรับ niño",
    "context": "CREATE TABLE table_name_42 (best_film VARCHAR, best_supporting_actress VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_11 WHERE score = \"0–0\" AND date = \"02-jan-64\"",
    "question_en": "Score of 0–0, and a Date of 02-jan-64 had what result?",
    "question_th": "คะแนน 0–0 และวันที่ 02 ม.ค. 64 มีผลอย่างไร?",
    "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–1\"",
    "question_en": "Result of l, and a Competition of 1966 asian games, and a Score of 0–1 had what date?",
    "question_th": "ผลการแข่งขันแอล และการแข่งขันเอเชี่ยนเกมส์ 1966 และสกอร์ 0–1 มีขึ้นเมื่อใด?",
    "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_en": "Competition of friendly, and a Date of 03-jun-62 had what score?",
    "question_th": "การแข่งขันกระชับมิตร และวันที่ 03 มิ.ย. 62 ได้คะแนนเท่าไหร่?",
    "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_en": "Result of w, and a Competition of 1968 asian cup happened on what date?",
    "question_th": "ผลการแข่งขัน w และการแข่งขันเอเชียนคัพ 1968 เกิดขึ้นวันที่เท่าไร?",
    "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_en": "Result of l, and a Date of 15-oct-64 had what score?",
    "question_th": "ผลสอบ l และวันที่ 15 ต.ค. 64 ได้คะแนนเท่าไหร่?",
    "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_en": "What incumbent was re-elected in the district in california 3?",
    "question_th": "ผู้ดำรงตำแหน่งคนใดที่ได้รับเลือกอีกครั้งในเขตในแคลิฟอร์เนีย 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_en": "What is the district of the incumbent Thomas Larkin Thompson?",
    "question_th": "เขตของผู้ดำรงตำแหน่ง 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_en": "What incumbent has a re-elected result and first elected larger than 1884?",
    "question_th": "ผู้ดำรงตำแหน่งคนใดที่มีผลการเลือกตั้งซ้ำและได้รับการเลือกตั้งครั้งแรกมากกว่าปี พ.ศ. 2427?",
    "context": "CREATE TABLE table_name_15 (incumbent VARCHAR, result VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT telugu_తెలుగు FROM table_name_87 WHERE kannada_ಕನ್ನಡ = \"chitra ಚಿತ್ತ\"",
    "question_en": "Which Telugu తెలుగు has a Kannada ಕನ್ನಡ of chitra ಚಿತ್ತ?",
    "question_th": "ภาษาเตลูกู తెలుగు ใดมีภาษากันนาดา ಕನ್ನಡ ของ chitra ಚಿತ್ತ?",
    "context": "CREATE TABLE table_name_87 (telugu_తెలుగు VARCHAR, kannada_ಕನ್ನಡ VARCHAR)"
  },
  {
    "answer": "SELECT telugu_తెలుగు FROM table_name_68 WHERE tamil_தமிழ் = \"pūrāṭam பூராடம்\"",
    "question_en": "Which Telugu తెలుగు has a Tamil தமிழ் of pūrāṭam பூராடம்?",
    "question_th": "ภาษาเตลูกู తెలుగు ใดมีภาษาทมิฬ தமிழा ของ pūrāṭam பூராடமàñ?",
    "context": "CREATE TABLE table_name_68 (telugu_తెలుగు VARCHAR, tamil_தமிழ் VARCHAR)"
  },
  {
    "answer": "SELECT telugu_తెలుగు FROM table_name_52 WHERE tamil_தமிழ் = \"pūsam பூசம்\"",
    "question_en": "Which Telugu తెలుగు has a Tamil தமிழ் of pūsam பூசம்?",
    "question_th": "ภาษาเตลูกู తెలుగు ใดมีภาษาทมิฬ தமிழा ของ pūsam பூசமार?",
    "context": "CREATE TABLE table_name_52 (telugu_తెలుగు VARCHAR, tamil_தமிழ் VARCHAR)"
  },
  {
    "answer": "SELECT mongolian FROM table_name_78 WHERE tamil_தமிழ் = \"pūrāṭam பூராடம்\"",
    "question_en": "Which Mongolian has a Tamil தமிழ் of pūrāṭam பூராடம்?",
    "question_th": "ภาษามองโกเลียภาษาใดมีภาษาทมิฬ தமிழּ ของ pūrāṭam பூராடமàñ?",
    "context": "CREATE TABLE table_name_78 (mongolian VARCHAR, tamil_தமிழ் VARCHAR)"
  },
  {
    "answer": "SELECT sanskrit_संस्कृतम् FROM table_name_95 WHERE kannada_ಕನ್ನಡ = \"uttara ಉತ್ತರಾ\"",
    "question_en": "What kind of Sanskrit संस्कृतम् has a Kannada ಕನ್ನಡ of uttara ಉತ್ತರಾ?",
    "question_th": "ภาษาสันสกฤตประเภทใด संस्कृतम् มีภาษากันนาดา ಕನ್ನಡ ของ uttara ಉತ್ತರಾ?",
    "context": "CREATE TABLE table_name_95 (sanskrit_संस्कृतम् VARCHAR, kannada_ಕನ್ನಡ VARCHAR)"
  },
  {
    "answer": "SELECT sanskrit_संस्कृतम् FROM table_name_23 WHERE tamil_தமிழ் = \"rōkiṇi ரோகிணி\"",
    "question_en": "What kind of Sanskrit संस्कृतम् has a Tamil தமிழ் of rōkiṇi ரோகிணி?",
    "question_th": "ภาษาสันสกฤตประเภทใด संस्कृतम् มีภาษาทมิฬ தமிழâ ของ rōkiṇi ரோகிணி?",
    "context": "CREATE TABLE table_name_23 (sanskrit_संस्कृतम् VARCHAR, tamil_தமிழ் VARCHAR)"
  },
  {
    "answer": "SELECT frequency FROM table_name_99 WHERE area_served = \"katherine\"",
    "question_en": "What is the frequency for katherine?",
    "question_th": "ความถี่ของแคทเธอรีนคือเท่าไร?",
    "context": "CREATE TABLE table_name_99 (frequency VARCHAR, area_served VARCHAR)"
  },
  {
    "answer": "SELECT band FROM table_name_80 WHERE freq_currently = \"8tab (hpon)\"",
    "question_en": "Which band has a current freq of 8tab (hpon)?",
    "question_th": "แบนด์ใดมีความถี่ปัจจุบัน 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_en": "Which freq currently has 0 657?",
    "question_th": "ความถี่ใดในปัจจุบันมี 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_en": "What is the purpose for the katherine freq of 8rn?",
    "question_th": "จุดประสงค์ของความถี่แคทเธอรีน 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_en": "Which freq currently has 0 684?",
    "question_th": "ความถี่ใดในปัจจุบันมี 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_en": "Which band serves darwin for commercial purpose?",
    "question_th": "วงดนตรีใดที่ให้บริการดาร์วินเพื่อจุดประสงค์ทางการค้า?",
    "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_en": "What is the points difference for a loss less than 6, and points less than 11?",
    "question_th": "อะไรคือความแตกต่างของคะแนนสำหรับการสูญเสียที่น้อยกว่า 6 และคะแนนที่น้อยกว่า 11?",
    "context": "CREATE TABLE table_name_30 (points_difference VARCHAR, lost VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_17 WHERE loss = \"báez (5-5)\"",
    "question_en": "Which Opponent has a Loss of báez (5-5)?",
    "question_th": "ฝ่ายตรงข้ามคนใดที่เสียบาเอซ (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_en": "Which Score has an Opponent of @ rockies, and a Record of 33-35?",
    "question_th": "คะแนนใดมีฝ่ายตรงข้ามของ @ rockies และมีสถิติ 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_en": "Which Attendance has an Opponent of phillies, and a Record of 30-33?",
    "question_th": "ผู้เข้าร่วมคนใดที่มีฝ่ายตรงข้ามของอีเกิลส์และมีสถิติ 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_en": "Which Attendance is the highest one that has a Loss of batista (4-5)?",
    "question_th": "ผู้เข้าร่วมคนใดที่มีการสูญเสียบาติสต้ามากที่สุด (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_en": "What is the frequency MHz of the ERP W's greater than 250?",
    "question_th": "ความถี่ MHz ของ ERP W มากกว่า 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_en": "What is the call sign of the MHz Frequency less than 94.9 and an ERP W of 170?",
    "question_th": "สัญญาณเรียกขานของความถี่ MHz น้อยกว่า 94.9 และ ERP W เท่ากับ 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_en": "What is the FCC info for the city of Tribune, Kansas?",
    "question_th": "ข้อมูล FCC สำหรับเมือง Tribune รัฐแคนซัสคืออะไร",
    "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_en": "What is the city of license with an ERP W less than 170?",
    "question_th": "เมืองที่ได้รับอนุญาตซึ่งมี ERP W น้อยกว่า 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_en": "What is the smallest ERP W with a frequency MHz of 94.9?",
    "question_th": "ERP W ที่เล็กที่สุดที่มีความถี่ MHz 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_en": "What is the ERP W of a Frequency MHz greater than 89.5 in the city of Washburn, Texas?",
    "question_th": "ERP W ของความถี่ MHz มากกว่า 89.5 ในเมือง Washburn รัฐเท็กซัส คืออะไร",
    "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_en": "What is the total number of bronze medals the U.S. Virgin Islands, which has less than 0 golds, has?",
    "question_th": "เหรียญทองแดงที่หมู่เกาะเวอร์จินของสหรัฐอเมริกาซึ่งมีไม่ถึง 0 เหรียญทองมีทั้งหมดเท่าไหร่?",
    "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_en": "What is the rank of the team with 11 total medals and more than 4 silver medals has?",
    "question_th": "ทีมที่ได้ทั้งหมด 11 เหรียญ และมากกว่า 4 เหรียญเงิน มีอันดับเท่าไหร่?",
    "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_en": "What is the lowest total medals the team with more than 0 bronze, 6 silver, and a rank higher than 3 has?",
    "question_th": "เหรียญรวมต่ำสุดที่ทีมมีมากกว่า 0 เหรียญทองแดง, 6 เหรียญเงิน และอันดับสูงกว่า 3 มีคืออะไร?",
    "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_en": "What is the highest rank of Venezuela, which has more than 9 bronze medals?",
    "question_th": "อันดับสูงสุดของเวเนซุเอลาที่ได้เหรียญทองแดงมากกว่า 9 เหรียญคืออะไร?",
    "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_en": "What is the lowest rank of the team with 0 bronze, 1 silver, and more than 0 gold?",
    "question_th": "อันดับต่ำสุดของทีมคือ 0 เหรียญทองแดง 1 เหรียญเงิน และมากกว่า 0 เหรียญทอง?",
    "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_en": "What round has mathieu garon as the player?",
    "question_th": "Mathieu Garon มีผู้เล่นรอบไหน?",
    "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_en": "What nationality has a position of left wing, and a round greater than 4, with mattia baldi as the player?",
    "question_th": "สัญชาติใดมีตำแหน่งปีกซ้ายและรอบมากกว่า 4 โดยมีมัตเทีย บัลดีเป็นผู้เล่น?",
    "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_en": "How many rounds have goalie as the position?",
    "question_th": "มีผู้รักษาประตูดำรงตำแหน่งกี่รอบ?",
    "context": "CREATE TABLE table_name_26 (round INTEGER, position VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_12 WHERE date = \"may 2, 1993\"",
    "question_en": "Which Competition has a Date of may 2, 1993?",
    "question_th": "การแข่งขันใดมีวันที่ 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–0\" AND competition = \"friendly\" AND date = \"may 31, 1998\"",
    "question_en": "Which Result has a Goal larger than 6, and a Score of 1–0, and a Competition of friendly, and a Date of may 31, 1998?",
    "question_th": "ผลลัพธ์ใดมีเป้าหมายมากกว่า 6 และคะแนน 1–0 และการแข่งขันกระชับมิตร และวันที่ 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_en": "What was the score on april 4, 1993?",
    "question_th": "คะแนนเมื่อวันที่ 4 เมษายน 2536 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_33 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT 1 AS _credit FROM table_name_86 WHERE hand = \"theoretical return\"",
    "question_en": "What's the 1 credit with a Hand of Theoretical Return?",
    "question_th": "เครดิต 1 ที่มาพร้อมกับ Hand of Theoretical Return คืออะไร?",
    "context": "CREATE TABLE table_name_86 (hand VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(games) AS ↑ FROM table_name_58 WHERE position = \"wr\" AND number > 17",
    "question_en": "What is the games number when the Position was wr, and a Number larger than 17?",
    "question_th": "หมายเลขเกมเมื่อตำแหน่งคือ wr และหมายเลขที่มากกว่า 17 คืออะไร?",
    "context": "CREATE TABLE table_name_58 (games VARCHAR, position VARCHAR, number VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_name_4 WHERE position = \"lg\"",
    "question_en": "What is the class for the position of lg?",
    "question_th": "ตำแหน่ง 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_en": "What is the highest weight for the Farnley Stakes race?",
    "question_th": "น้ำหนักสูงสุดสำหรับการแข่งขัน Farnley Stakes คืออะไร?",
    "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_en": "What time is associated with the event that happened in Tokyo, Japan, ending in a draw, with 3 rounds?",
    "question_th": "เกี่ยวอะไรกับเหตุการณ์ที่เกิดขึ้นที่กรุงโตเกียว ประเทศญี่ปุ่น จบแบบเสมอกัน 3 รอบ?",
    "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_en": "Which 2012 has a 2007 of 0 / 4?",
    "question_th": "ปี 2555 ใดมีปี 2550 เท่ากับ 0 / 4",
    "context": "CREATE TABLE table_name_8 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_65 WHERE career_win_loss = \"7–10\"",
    "question_en": "Which 2011 has a Career Win-Loss of 7–10?",
    "question_th": "ปี 2011 ใดที่มีการชนะ-แพ้ในอาชีพที่ 7–10",
    "context": "CREATE TABLE table_name_65 (career_win_loss VARCHAR)"
  },
  {
    "answer": "SELECT 1998 FROM table_name_65 WHERE 2002 = \"2–4\"",
    "question_en": "Which 1998 has a 2002 of 2–4?",
    "question_th": "ปี 1998 ใดมีปี 2002 จาก 2–4",
    "context": "CREATE TABLE table_name_65 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2002 FROM table_name_79 WHERE 2008 = \"3–3\"",
    "question_en": "Which 2002 has a 2008 of 3–3?",
    "question_th": "ปี 2545 ใดที่มีปี 2551 เป็น 3–3",
    "context": "CREATE TABLE table_name_79 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2003 FROM table_name_42 WHERE 2012 = \"1r\" AND 2008 = \"1r\"",
    "question_en": "Which 2003 has a 2012 of 1r, and a 2008 of 1r?",
    "question_th": "ปี 2003 ใดมีปี 2012 เป็น 1r และปี 2008 เป็น 1r",
    "context": "CREATE TABLE table_name_42 (Id VARCHAR)"
  },
  {
    "answer": "SELECT nfl_club FROM table_name_51 WHERE player = \"robert gallery\"",
    "question_en": "What club is robert gallery a part of",
    "question_th": "โรเบิร์ต แกลเลอรี เป็นส่วนหนึ่งของสโมสรใด",
    "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_en": "How many attendance numbers had more than 15 games, and sellouts of more than 8 in the 2011-12 season?",
    "question_th": "จำนวนผู้เข้าร่วมที่มีมากกว่า 15 เกมและการขายหมดมากกว่า 8 เกมในฤดูกาล 2554-55",
    "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_en": "What's the mean attendance number when the record is 12-4 and the average is less than 10,027?",
    "question_th": "จำนวนการเข้างานเฉลี่ยเมื่อบันทึกคือ 12-4 และค่าเฉลี่ยน้อยกว่า 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_en": "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?",
    "question_th": "จำนวนเฉลี่ยเต็มจำนวนเมื่อมียอดขายน้อยกว่า 14 รายการ ฤดูกาล 2554-2555 และผู้เข้าร่วมน้อยกว่า 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_en": "What medal was awarded in the men's freestyle 52 kg?",
    "question_th": "ฟรีสไตล์ชาย รุ่น 52 กก. ได้เหรียญอะไร",
    "context": "CREATE TABLE table_name_69 (medal VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT MAX(cuts_made) FROM table_name_65 WHERE events < 1",
    "question_en": "Events smaller than 1 had what highest cuts made?",
    "question_th": "กิจกรรมที่เล็กกว่า 1 มีการตัดราคาสูงสุดเท่าใด",
    "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_en": "What position was played with a Difference of - 5, and a Played larger than 14?",
    "question_th": "ตำแหน่งใดที่เล่นโดยมีผลต่าง - 5 และเล่นมากกว่า 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_en": "How many games lost associated with under 14 played?",
    "question_th": "มีกี่เกมที่แพ้ที่เกี่ยวข้องกับผู้เล่นอายุต่ำกว่า 14 ปี?",
    "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_en": "How many games against for team guarani with under 3 draws?",
    "question_th": "ทีมกัวรานี่ที่เสมอต่ำกว่า 3 นัดแข่งกี่เกม?",
    "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_en": "What Congress had less than 23 cosponsors and had June 30, 2005 as the date of introduction of the bill?",
    "question_th": "รัฐสภาใดมีผู้ร่วมสนับสนุนน้อยกว่า 23 คน และมีวันที่ 30 มิถุนายน พ.ศ. 2548 เป็นวันที่ร่างพระราชบัญญัตินี้",
    "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_en": "Who sponsored the bill introduced on June 9, 2011?",
    "question_th": "ใครเป็นผู้สนับสนุนร่างกฎหมายที่ประกาศใช้เมื่อวันที่ 9 มิถุนายน พ.ศ. 2554",
    "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_en": "Who sponsored the bill that was introduced on June 2, 2009?",
    "question_th": "ใครเป็นผู้สนับสนุนร่างกฎหมายที่ประกาศใช้เมื่อวันที่ 2 มิถุนายน พ.ศ. 2552",
    "context": "CREATE TABLE table_name_55 (sponsor_s_ VARCHAR, date_introduced VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_48 WHERE tournament = \"melbourne\"",
    "question_en": "What is the Outcome of the Melbourne Tournament?",
    "question_th": "ผลลัพธ์ของการแข่งขันเมลเบิร์นทัวร์นาเมนท์คืออะไร?",
    "context": "CREATE TABLE table_name_48 (outcome VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_18 WHERE partner = \"janet young\"",
    "question_en": "In what Tournament was Janet Young a Partner?",
    "question_th": "Janet Young เป็นหุ้นส่วนในการแข่งขันรายการใด",
    "context": "CREATE TABLE table_name_18 (tournament VARCHAR, partner VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_57 WHERE score = \"w/o\"",
    "question_en": "What was the Outcome of the match with a Score of w/o?",
    "question_th": "ผลลัพธ์ของแมตช์ที่ไม่มีคะแนนเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_57 (outcome VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT school_club_team FROM table_name_60 WHERE pick = 139",
    "question_en": "Which school or club team has a pick of 139?",
    "question_th": "ทีมโรงเรียนหรือสโมสรไหนมีให้เลือก 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_en": "What is the pick number for the player playing tackle position, and a round less than 15?",
    "question_th": "หมายเลขเลือกสำหรับผู้เล่นที่เล่นตำแหน่งแท็คเกิล และรอบที่น้อยกว่า 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_en": "Which school of club team has a pick of 46?",
    "question_th": "ทีมสโมสรโรงเรียนไหนมีให้เลือกถึง 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_en": "Who got 59.486 for Qual 2?",
    "question_th": "ใครได้ 59.486 สำหรับรอบ 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_en": "Who got 59.578 for Qual 1?",
    "question_th": "ใครได้ 59.578 สำหรับรอบ 1",
    "context": "CREATE TABLE table_name_79 (name VARCHAR, qual_1 VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_78 WHERE name = \"andrew ranger\"",
    "question_en": "What team was Andrew Ranger in?",
    "question_th": "แอนดรูว์ เรนเจอร์ อยู่ทีมไหน?",
    "context": "CREATE TABLE table_name_78 (team VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_37 WHERE qual_1 = \"59.372\"",
    "question_en": "What team has 59.372 for qual 1?",
    "question_th": "ทีมใดมี 59.372 สำหรับรอบ 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_en": "What did Alex Tagliani get for Qual 1?",
    "question_th": "Alex Tagliani ได้อะไรจากรอบคัดเลือก 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_en": "What was the result of the game on November 7, 1999?",
    "question_th": "ผลการแข่งขันเมื่อวันที่ 7 พฤศจิกายน 2542 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_9 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_26 WHERE week < 15 AND result = \"bye\"",
    "question_en": "When was the game before week 15 with the result of bye?",
    "question_th": "เกมก่อนสัปดาห์ที่ 15 กับผลลาก่อนคือเมื่อไหร่?",
    "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_en": "Who is the writer of Wallace & Gromit: A Close Shave, a short film from before 2008?",
    "question_th": "ใครคือผู้เขียน Wallace & Gromit: A Close Shave หนังสั้นก่อนปี 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_en": "What notes did the creature comforts film have?",
    "question_th": "ภาพยนตร์เรื่อง Creature Comforts มีข้อสังเกตอะไรบ้าง?",
    "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_en": "Who is the director of Wallace & Gromit: The Curse of the Were-Rabbit?",
    "question_th": "ใครเป็นผู้กำกับของ 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_en": "What is the earliest year of Wallace & Gromit: The Curse of the Were-Rabbit?",
    "question_th": "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_en": "what was the length of the game on may 19",
    "question_th": "เกมในวันที่ 19 พฤษภาคมจะมีความยาวเท่าใด",
    "context": "CREATE TABLE table_name_10 (length VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MIN(game) FROM table_name_24 WHERE march = 26",
    "question_en": "March of 26 has what lowest game?",
    "question_th": "26 มีนาคม มีเกมไหนต่ำสุด?",
    "context": "CREATE TABLE table_name_24 (game INTEGER, march VARCHAR)"
  },
  {
    "answer": "SELECT MAX(game) FROM table_name_40 WHERE march = 29",
    "question_en": "March of 29 involves what highest scoring game?",
    "question_th": "วันที่ 29 มีนาคม มีเกมใดที่มีคะแนนสูงสุด?",
    "context": "CREATE TABLE table_name_40 (game INTEGER, march VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_60 WHERE game > 76 AND march > 26",
    "question_en": "Game larger than 76, and a March larger than 26 involves what score?",
    "question_th": "เกมที่มากกว่า 76 และเดือนมีนาคมที่มากกว่า 26 เกี่ยวข้องกับคะแนนเท่าใด",
    "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_en": "What was the time when the laps were smaller than 66 and the grid was 15?",
    "question_th": "ช่วงเวลาใดที่รอบน้อยกว่า 66 และกริดอยู่ที่ 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_en": "What was the grid for anthony davidson when the laps were less than 8?",
    "question_th": "ตารางของ Anthony davidson เมื่อรอบน้อยกว่า 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_en": "What team did carlos cardus drive for in 1983 when he got less than 21 points?",
    "question_th": "คาร์ลอส การ์ดัส ขับรถให้ทีมใดในปี 1983 โดยที่เขามีคะแนนน้อยกว่า 21 แต้ม",
    "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_en": "What is the sum of the points when Carlos drove for repsol honda in 8th place?",
    "question_th": "ผลรวมคะแนนเมื่อคาร์ลอสขับเรปโซลฮอนด้าอันดับที่ 8 เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_93 (points INTEGER, team VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT AVG(points) FROM table_name_5 WHERE wins < 0",
    "question_en": "What is the average points won when Carlos had 0 wins?",
    "question_th": "คะแนนเฉลี่ยที่ได้รับเมื่อคาร์ลอสชนะ 0 เป็นเท่าใด?",
    "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_en": "What is the highest year that Carlos drove for repsol honda and had less than 4 wins and less than 162 points?",
    "question_th": "ปีสูงสุดที่คาร์ลอสขับให้กับเรปโซลฮอนด้าและชนะน้อยกว่า 4 ครั้งและน้อยกว่า 162 แต้มคือปีใด",
    "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_en": "What is the total number of goals from 24 tries and 96 or greater points?",
    "question_th": "จำนวนประตูทั้งหมดจากการพยายาม 24 ครั้งและ 96 คะแนนขึ้นไปคือเท่าใด",
    "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_en": "What year has tries less than 24 and 0 points?",
    "question_th": "ปีไหนได้ลองน้อยกว่า 24 และ 0 คะแนน?",
    "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_en": "What Game has a Location of Philadelphia Spectrum and an Opponent of New York Knicks?",
    "question_th": "เกมใดมีที่ตั้งของ Philadelphia Spectrum และเป็นฝ่ายตรงข้ามของ 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_en": "What Game has a Location of Philadelphia Spectrum and a Date of April 1?",
    "question_th": "เกมใดมีที่ตั้งของ Philadelphia Spectrum และมีวันที่ 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_en": "What is the segment for Netflix episode S08E04?",
    "question_th": "ส่วนของ Netflix ตอนที่ 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_en": "What is the Netflix episode for series episode 15-01?",
    "question_th": "Netflix ของซีรีส์ตอนที่ 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_en": "What is the segment A for the episode with Children's Ride-on Cars for segment D?",
    "question_th": "ช่วง A ของตอนที่มี Children's Ride-on Cars สำหรับช่วง 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_en": "What is the earliest year with fewer than 5 wins and 89 points?",
    "question_th": "ปีแรกสุดที่ชนะน้อยกว่า 5 ครั้งและ 89 แต้มคือปีใด?",
    "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_en": "When is the most recent year with more than 27 points and more than 5 wins?",
    "question_th": "ปีที่แล้วมีมากกว่า 27 แต้มและชนะมากกว่า 5 ครั้งคือเมื่อไหร่?",
    "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_en": "What are the sum of points in 1989 with 0 wins?",
    "question_th": "ผลรวมคะแนนในปี 1989 ที่ชนะ 0 เป็นเท่าไหร่?",
    "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_en": "Which class has fewer than 89 points and the Honda team later than 1987?",
    "question_th": "คลาสไหนมีคะแนนน้อยกว่า 89 คะแนน และทีมฮอนด้าช้ากว่าปี 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_en": "How many points are there later than 1992?",
    "question_th": "หลังปี 2535 มีกี่คะแนน?",
    "context": "CREATE TABLE table_name_12 (points VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT location FROM table_name_12 WHERE date = \"june 10\"",
    "question_en": "Where was the event on June 10?",
    "question_th": "งานวันที่ 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_en": "What event was in New Orleans, Louisiana, USA?",
    "question_th": "งานอีเว้นท์ที่เมืองนิวออร์ลีนส์ รัฐลุยเซียนา สหรัฐอเมริกา คืออะไร",
    "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_en": "On September 10 during Strikeforce: Heavyweight Grand Prix Semifinals, what was the PPV buyrate?",
    "question_th": "ในวันที่ 10 กันยายนระหว่าง Strikeforce: Heavyweight Grand Prix Semifinals การซื้อ PPV เป็นเท่าใด",
    "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_en": "How many points are there on november 7?",
    "question_th": "วันที่ 7 พฤศจิกายน มีกี่คะแนน?",
    "context": "CREATE TABLE table_name_94 (points INTEGER, november VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_95 WHERE home = \"blazers\"",
    "question_en": "What was the score in the game where the Blazers were the home team?",
    "question_th": "ในเกมที่เบลเซอร์สเป็นเจ้าบ้านได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_95 (score VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_47 WHERE visitor = \"clippers\"",
    "question_en": "How many people attended the game that had the Clippers as visiting team?",
    "question_th": "มีกี่คนที่เข้าร่วมเกมที่มีทีม Clippers เป็นทีมเยือน?",
    "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_en": "Which team has a car # before 99, a Toyota, and is driven by Mike Skinner?",
    "question_th": "ทีมไหนมีรถ # ก่อนปี 99 เป็น Toyota และขับโดย 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_en": "What is the lowest position for driver Kyle Busch?",
    "question_th": "ตำแหน่งต่ำสุดสำหรับนักแข่ง 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_en": "Who is the team of the Chevrolet, and has a position less than 7, for car # 88?",
    "question_th": "ทีมเชฟโรเลตคือใครและมีตำแหน่งต่ำกว่า 7 สำหรับรถหมายเลข 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_en": "Which Film has a Result of nominated, and a Year of 2001?",
    "question_th": "ภาพยนตร์เรื่องใดมีผลการเสนอชื่อเข้าชิง และปี พ.ศ. 2544?",
    "context": "CREATE TABLE table_name_67 (film VARCHAR, result VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT award FROM table_name_39 WHERE group = \"césar awards\" AND result = \"nominated\" AND year > 2001 AND film = \"8 women (8 femmes)\"",
    "question_en": "Which Award has a Group of césar awards, and a Result of nominated, and a Year larger than 2001, and a Film of 8 women (8 femmes)?",
    "question_th": "รางวัลใดที่มีรางวัล Group of césar และผลการเสนอชื่อเข้าชิง และหนึ่งปีที่มากกว่าปี 2001 และภาพยนตร์ผู้หญิง 8 คน (หญิง 8 คน)",
    "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ésar awards\" AND result = \"nominated\" AND award = \"best actress\" AND film = \"8 women (8 femmes)\"",
    "question_en": "Which Year has a Group of césar awards, and a Result of nominated, and an Award of the best actress, and a Film of 8 women (8 femmes)?",
    "question_th": "ปีใดมีรางวัล Group of césar และผลการเสนอชื่อเข้าชิง และรางวัลนักแสดงนำหญิงยอดเยี่ยม และภาพยนตร์ผู้หญิง 8 คน (หญิง 8 คน)",
    "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_en": "Which Award has a Result of nominated, and a Year of 2003?",
    "question_th": "รางวัลใดมีผลการเสนอชื่อเข้าชิง และปี พ.ศ. 2546?",
    "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_en": "Which Result has a Year larger than 2003, and an Award of best supporting actress?",
    "question_th": "ผลลัพธ์ใดมีหนึ่งปีมากกว่าปี 2003 และรางวัลนักแสดงสมทบหญิงยอดเยี่ยม?",
    "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_en": "Name the total number of valid poll with seats more than 4 and candidates more than 9",
    "question_th": "ตั้งชื่อจำนวนรวมของการสำรวจที่ถูกต้อง โดยมีที่นั่งมากกว่า 4 ที่นั่ง และผู้สมัครมากกว่า 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_en": "Name the least valid poll for munster",
    "question_th": "ตั้งชื่อการสำรวจความคิดเห็นที่ถูกต้องน้อยที่สุดสำหรับมุนสเตอร์",
    "context": "CREATE TABLE table_name_50 (valid_poll INTEGER, constituency VARCHAR)"
  },
  {
    "answer": "SELECT AVG(valid_poll) FROM table_name_45 WHERE seats < 3",
    "question_en": "Name the average valid poll for seats less than 3",
    "question_th": "ตั้งชื่อแบบสำรวจที่ถูกต้องโดยเฉลี่ยสำหรับที่นั่งที่น้อยกว่า 3",
    "context": "CREATE TABLE table_name_45 (valid_poll INTEGER, seats INTEGER)"
  },
  {
    "answer": "SELECT label FROM table_name_12 WHERE region = \"canada\"",
    "question_en": "Which Label has a Region of canada?",
    "question_th": "ป้ายใดมีภูมิภาคของแคนาดา",
    "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_en": "Which Date has a Catalog of 887 195-2, and a Format of cd maxi?",
    "question_th": "วันที่ใดมีแคตตาล็อก 887 195-2 และรูปแบบของ 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_en": "Which Date has a Region of france?",
    "question_th": "วันที่ใดมีภูมิภาคของฝรั่งเศส",
    "context": "CREATE TABLE table_name_90 (date VARCHAR, region VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_39 WHERE opponent = \"shamil abdurahimov\"",
    "question_en": "Which Time has an Opponent of shamil abdurahimov?",
    "question_th": "ฝ่ายตรงข้ามของ 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_en": "Which Record has an Event of cage rage 23?",
    "question_th": "บันทึกใดมีเหตุการณ์ของ 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_en": "What was the average date with a record of 30-31-9 in a game over 70?",
    "question_th": "วันที่เฉลี่ยที่มีสถิติ 30-31-9 ในเกมมากกว่า 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_en": "What is the latest date at Los Angeles with a game less than 62?",
    "question_th": "วันที่ล่าสุดที่ลอสแองเจลิสกับเกมน้อยกว่า 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_en": "What is the latest date for a game over 69 with a St. Louis Blues opponent?",
    "question_th": "เกมล่าสุดวันที่ 69 กับคู่ต่อสู้ เซนต์หลุยส์ บลูส์ คือวันที่เท่าไหร่?",
    "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_en": "What is the highest game with Oakland Seals opponent and a record of 27-30-6 on a date more than 7?",
    "question_th": "เกมใดสูงสุดกับคู่ต่อสู้ของ Oakland Seals และสถิติ 27-30-6 ในวันที่มากกว่า 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_en": "What is the total attendance for the date of october 5?",
    "question_th": "วันที่ 5 ตุลาคม มีผู้เข้าร่วมทั้งหมดเป็นเท่าใด",
    "context": "CREATE TABLE table_name_3 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_59 WHERE date = \"september 21\"",
    "question_en": "What record has September 21 as the date?",
    "question_th": "บันทึกใดมีวันที่ 21 กันยายนเป็นวันที่?",
    "context": "CREATE TABLE table_name_59 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_63 WHERE date = \"december 19, 2009\"",
    "question_en": "What was the score of the match on December 19, 2009?",
    "question_th": "ผลการแข่งขันวันที่ 19 ธันวาคม 2552 เป็นอย่างไรบ้าง?",
    "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_en": "What's the highest game against the New York Rangers with more than 55 points?",
    "question_th": "เกมไหนเจอนิวยอร์ก เรนเจอร์ส มากกว่า 55 แต้มสูงสุดคือเกมไหน?",
    "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_en": "What's the record for a game past 44 against the Dallas Stars with more than 54 points?",
    "question_th": "สถิติเกมหลัง 44 เจอกับ ดัลลัส สตาร์ส ที่มีมากกว่า 54 แต้มเป็นอย่างไรบ้าง?",
    "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_en": "What is the latest Fiscal Year with Revenues of $4.3 billion, and more than 85,335 employees?",
    "question_th": "ปีงบประมาณล่าสุดที่มีรายได้ 4.3 พันล้านดอลลาร์ และมีพนักงานมากกว่า 85,335 คนคือปีใด",
    "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_en": "What is the average Fiscal Year of the firm Headquartered in noida, with less than 85,335 employees?",
    "question_th": "ปีงบประมาณเฉลี่ยของ บริษัท ที่มีสำนักงานใหญ่ใน noida คือเท่าไร โดยมีพนักงานน้อยกว่า 85,335 คน?",
    "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_en": "What are the Points after 1991?",
    "question_th": "อะไรคือคะแนนหลังจากปี 1991?",
    "context": "CREATE TABLE table_name_49 (points VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT class FROM table_name_68 WHERE points = 36",
    "question_en": "What Class has 36 Points?",
    "question_th": "คลาสไหนมี 36 แต้ม?",
    "context": "CREATE TABLE table_name_68 (class VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_name_13 WHERE year > 1986",
    "question_en": "What is the Class after 1986?",
    "question_th": "คลาสหลังปี 1986 คืออะไร?",
    "context": "CREATE TABLE table_name_13 (class VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT SUM(attendance) FROM table_name_11 WHERE opponent = \"detroit lions\"",
    "question_en": "How many attendances had the Detroit Lions as opponents?",
    "question_th": "Detroit Lions เป็นฝ่ายตรงข้ามเข้าชมกี่ครั้ง?",
    "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_en": "Which nationality's distance was 500m before 2012, when the record was 1:37.071s?",
    "question_th": "ระยะทางของชาติใดคือ 500 เมตร ก่อนปี 2012 โดยทำสถิติได้ 1:37.071 วินาที",
    "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_en": "Which location's year was 2001 when the record was 3:52.983s?",
    "question_th": "ปี 2544 ของสถานที่ใดมีสถิติอยู่ที่ 3:52.983 วินาที",
    "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_en": "Which nationality's distance was 200m and had a year more recent than 1994 when the record was 33.778s?",
    "question_th": "ระยะทางของสัญชาติใดคือ 200 เมตร และหนึ่งปีล่าสุดมากกว่าปี 1994 ที่สถิติอยู่ที่ 33.778 วินาที",
    "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_en": "How many Total medals for the team with a Rank of 8, 1 Bronze and more than 1 Silver?",
    "question_th": "จำนวนเหรียญรางวัลทั้งหมดสำหรับทีมที่มีอันดับ 8, 1 เหรียญทองแดง และมากกว่า 1 เหรียญเงิน",
    "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_en": "How many Gold does the Nation in Rank 12 with less than 2 Total medals have?",
    "question_th": "ประเทศในอันดับ 12 ที่มีเหรียญทั้งหมดน้อยกว่า 2 เหรียญมีกี่เหรียญทอง",
    "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_en": "Which NHL team got pick 89?",
    "question_th": "ทีม NHL ใดที่ได้รับเลือก 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_en": "Who plays goaltender for the Vancouver Canucks?",
    "question_th": "ใครเป็นผู้รักษาประตูให้กับทีม 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_en": "What is the % Change at London Heathrow airport?",
    "question_th": "% การเปลี่ยนแปลงที่สนามบินลอนดอนฮีทโธรว์คือเท่าไร?",
    "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_en": "What 2003 rank does the airport IATA code SIN have?",
    "question_th": "รหัส IATA ของสนามบิน SIN ประจำปี 2546 มีอันดับเท่าใด",
    "context": "CREATE TABLE table_name_60 (code__iata_ VARCHAR)"
  },
  {
    "answer": "SELECT airport FROM table_name_73 WHERE code__iata_ = \"ams\"",
    "question_en": "Which airport has an IATA code of AMS?",
    "question_th": "สนามบินใดมีรหัส IATA ของ 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_en": "What is the IATA code of the airport that has a Total Cargo of 1,838,894 Metric Tonnes?",
    "question_th": "รหัส IATA ของสนามบินที่มีน้ำหนักสินค้ารวม 1,838,894 ตันคืออะไร",
    "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_en": "What is the 2003 rank for Los Angeles International airport?",
    "question_th": "ท่าอากาศยานนานาชาติลอสแอนเจลีส ประจำปี 2546 อยู่ในอันดับที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_17 (airport VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_name_19 WHERE incumbent = \"wyatt aiken\"",
    "question_en": "What district is Wyatt Aiken in?",
    "question_th": "Wyatt Aiken อยู่ในเขตใด",
    "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_en": "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?",
    "question_th": "เงินที่มีค่ามากกว่า 0 และผลรวมน้อยกว่า 3 และประเทศบัลแกเรีย และทองแดงที่น้อยกว่า 0 มีผลรวมของทองคำเท่าไร",
    "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_en": "Nation of total has what sum of gold?",
    "question_th": "ชาติทั้งหมดมีทองจำนวนเท่าใด?",
    "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_en": "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?",
    "question_th": "ผลรวมของ 3 และทองคำที่มากกว่า 0 และประเทศเบลารุส และเงินที่มากกว่า 2 จะมีผลรวมของทองแดงเป็นเท่าใด",
    "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_en": "Bronze of 22 has what average silver?",
    "question_th": "Bronze of 22 มีเงินเฉลี่ยเท่าไร?",
    "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_en": "Which position had 5 games played and a record of 1-2-2?",
    "question_th": "ตำแหน่งใดที่เล่นไป 5 เกมและสถิติ 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_en": "What was the name of the leader whose term ended in 2013?",
    "question_th": "ผู้นำที่หมดวาระในปี 2556 ชื่ออะไร",
    "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_en": "When was the start of the leader's term who was born on January 8, 1859 and whose term ended in 1919?",
    "question_th": "วาระของผู้นำซึ่งเกิดเมื่อวันที่ 8 มกราคม พ.ศ. 2402 เริ่มดำรงตำแหน่งเมื่อใด และสิ้นสุดวาระในปี พ.ศ. 2462 เมื่อใด",
    "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_en": "Which leader born on December 17, 1874 started their term before 1984?",
    "question_th": "ผู้นำคนใดที่เกิดเมื่อวันที่ 17 ธันวาคม พ.ศ. 2417 เริ่มดำรงตำแหน่งก่อนปี พ.ศ. 2527",
    "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ňková carmen klaschka\"",
    "question_en": "What date shows the Outcome of winner against nikola fraňková carmen klaschka?",
    "question_th": "ผลการแข่งขันของผู้ชนะพบกับ nikola fraňková 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_en": "What is the Outcome of the jounieh tournament?",
    "question_th": "ผลลัพธ์ของการแข่งขัน jounieh คืออะไร?",
    "context": "CREATE TABLE table_name_73 (outcome VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_53 WHERE score = \"6–3 6–4\"",
    "question_en": "What date was the score of 6–3 6–4?",
    "question_th": "คะแนน 6–3 6–4 คือวันไหน?",
    "context": "CREATE TABLE table_name_53 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_89 WHERE opponent = \"indiana pacers\"",
    "question_en": "when indiana pacers were the opponent what was the date?",
    "question_th": "เมื่ออินเดียนา เพเซอร์สเป็นคู่ต่อสู้ วันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_89 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT try_bonus FROM table_name_80 WHERE tries_against = \"55\"",
    "question_en": "tries against is 55, what is the try bonus?",
    "question_th": "พยายามต่อต้านคือ 55 โบนัสลองคืออะไร?",
    "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_en": "tries against is 29, what is the points against?",
    "question_th": "พยายามต่อคือ 29 แต้มต่ออะไร?",
    "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_en": "tries against correct as of 2007-10-15 has what tries for?",
    "question_th": "พยายามต่อต้านการแก้ไข ณ วันที่ 10-10-2550 มีความพยายามอะไรบ้าง?",
    "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_en": "tries against correct as of 2007-10-15 has what tries for?",
    "question_th": "พยายามต่อต้านการแก้ไข ณ วันที่ 10-10-2550 มีความพยายามอะไรบ้าง?",
    "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_en": "tries against is 88, played is 22, what is the lost?",
    "question_th": "ลองเล่นได้ 88 เล่นได้ 22 แพ้อะไร?",
    "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_en": "Who won silver in the year before 2010, the year Chan Ming Shu won gold?",
    "question_th": "ใครได้รับรางวัลเหรียญเงินในปีก่อนปี 2010 ปีที่ Chan Ming Shu ได้รับรางวัลเหรียญทอง?",
    "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_en": "What is the location for the year under 2010 and the year Hei Zhi Hong won silver?",
    "question_th": "ตำแหน่งสำหรับปี 2010 และปีที่ Hei Zhi Hong ได้รับรางวัลเหรียญเงินคือที่ไหน?",
    "context": "CREATE TABLE table_name_67 (location VARCHAR, year VARCHAR, silver VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_68 WHERE year > 2006",
    "question_en": "Which location had a year over 2006?",
    "question_th": "สถานที่ใดมีมากกว่าปี 2549?",
    "context": "CREATE TABLE table_name_68 (location VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT date FROM table_name_49 WHERE score_f_a = \"2–0\" AND opponents = \"walsall\"",
    "question_en": "Score F–A of 2–0, and a Opponents of walsall has what date?",
    "question_th": "คะแนน F–A เป็น 2–0 และฝ่ายตรงข้ามของวอลซอลล์จะมีวันใด",
    "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–0\" AND date = \"31 july 2007\"",
    "question_en": "Score F–A of 3–0, and a Date of 31 july 2007 had what opponents?",
    "question_th": "คะแนน F–A 3–0 และวันที่ 31 กรกฎาคม พ.ศ. 2550 มีคู่ต่อสู้คนใด",
    "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_en": "Opponents of sheffield wednesday had what date?",
    "question_th": "คู่แข่งเชฟฟิลด์เว้นส์เดย์มีนัดวันไหน?",
    "context": "CREATE TABLE table_name_81 (date VARCHAR, opponents VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_63 WHERE opponents = \"sheffield wednesday\"",
    "question_en": "Opponents of sheffield wednesday had what date?",
    "question_th": "คู่แข่งเชฟฟิลด์เว้นส์เดย์มีนัดวันไหน?",
    "context": "CREATE TABLE table_name_63 (date VARCHAR, opponents VARCHAR)"
  },
  {
    "answer": "SELECT opponents FROM table_name_17 WHERE date = \"4 august 2007\"",
    "question_en": "Date of 4 august 2007 had what opponents?",
    "question_th": "วันที่ 4 สิงหาคม 2550 มีคู่ต่อสู้อะไรบ้าง?",
    "context": "CREATE TABLE table_name_17 (opponents VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_50 WHERE player = \"david laliberte\"",
    "question_en": "WHich Position has a Player of david laliberte?",
    "question_th": "ตำแหน่งใดมีผู้เล่นของ David Laliberte?",
    "context": "CREATE TABLE table_name_50 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_13 WHERE player = \"gino pisellini\"",
    "question_en": "Which Position has a Player of gino pisellini?",
    "question_th": "ตำแหน่งไหนมีนักเตะจีโน่ ปิเซลลินี่?",
    "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_en": "What is the winning score of standard register ping tournament, which has Kelly Robbins as the runner-up?",
    "question_th": "คะแนนชนะของทัวร์นาเมนต์ ping รีจิสเตอร์มาตรฐาน ซึ่งมี Kelly Robbins เป็นรองแชมป์คือเท่าไร?",
    "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_en": "What is the winning score of the tournament on 16 May 1993?",
    "question_th": "คะแนนชนะของทัวร์นาเมนท์เมื่อวันที่ 16 พฤษภาคม 2536 เป็นเท่าไหร่?",
    "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_en": "What is the margin of victory of the tournament on 5 Jun 1988?",
    "question_th": "ชัยชนะของทัวร์นาเมนต์ในวันที่ 5 มิถุนายน 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_en": "What is the winning scor of the tournament with Robin Walton as the runner-up?",
    "question_th": "คะแนนชนะของทัวร์นาเมนต์โดยมี Robin Walton เป็นรองแชมป์คืออะไร?",
    "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_en": "which NHL team has a College/Junior/Club Team (League) of shattuck-saint mary's school (midget major aaa)?",
    "question_th": "ทีม NHL ใดที่มีทีมวิทยาลัย/จูเนียร์/คลับ (ลีก) ของโรงเรียน shattuck-saint mary (คนแคระคนสำคัญ 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_en": "How many Rounds have a Nationality of canada, and a College/Junior/Club Team (League) of fort mcmurray oil barons (ajhl)?",
    "question_th": "มีกี่รอบที่มีสัญชาติแคนาดา และทีมวิทยาลัย/จูเนียร์/คลับ (ลีก) ของ 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_en": "Which Round has a NHL team of edmonton oilers and a Player of vyacheslav trukhno?",
    "question_th": "รอบใดมีทีม Edmonton oilers ของ NHL และผู้เล่นของ 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_en": "Which Round has a Nationality of united states, and a College/Junior/Club Team (League) of breck school (ushs)?",
    "question_th": "รอบใดมีสัญชาติสหรัฐอเมริกา และมีทีมวิทยาลัย/จูเนียร์/คลับ (ลีก) ของ 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_en": "What is the max 1-min wind mph when the minimum press is 997?",
    "question_th": "ลมสูงสุด 1 นาทีต่อชั่วโมงเมื่อกดขั้นต่ำคือ 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_en": "How many deaths occurred during Darby?",
    "question_th": "มีผู้เสียชีวิตกี่รายในช่วงดาร์บี้?",
    "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_en": "What is the distance from Jaffa of Jerusalem station?",
    "question_th": "ระยะทางจากสถานี Jaffa of Jerusalem คือเท่าไร?",
    "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_en": "What visitor has February 11 as the date?",
    "question_th": "แขกคนไหนมีวันที่ 11 กุมภาพันธ์เป็นวันที่?",
    "context": "CREATE TABLE table_name_37 (visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_7 WHERE competition = \"friendly match\"",
    "question_en": "Which venue is the friendly match in?",
    "question_th": "นัดกระชับมิตรจัดขึ้นที่สนามใด?",
    "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_en": "What is the result of the friendly match in Seoul?",
    "question_th": "นัดกระชับมิตรที่โซลผลเป็นอย่างไร?",
    "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_en": "What is the result of the 2007 AFC asian cup?",
    "question_th": "ผลการแข่งขันเอเอฟซีเอเชียนคัพ 2007 เป็นอย่างไร?",
    "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_en": "Which Runner(s)-up has a Margin of victory of 1 stroke, and a Tournament of world seniors invitational?",
    "question_th": "รองชนะเลิศคนใดที่มีส่วนต่างของชัยชนะ 1 จังหวะ และทัวร์นาเมนต์ของผู้อาวุโสระดับโลกที่ได้รับเชิญ?",
    "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_en": "Which Runner(s)-up has a Tournament of general foods pga seniors' championship?",
    "question_th": "รองชนะเลิศคนไหนมีรายการ 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 = −14(68 - 66 - 68 = 202)",
    "question_en": "Which Tournament has a Margin of victory of 2 strokes, and a Winning score of −14 (68-66-68=202)?",
    "question_th": "ทัวร์นาเมนต์ใดที่มีส่วนต่างของชัยชนะ 2 จังหวะ และคะแนนชนะที่ −14 (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 = −9(70 - 64 - 70 = 203)",
    "question_en": "Which Date has a Winning score of −9 (70-64-70=203)?",
    "question_th": "วันใดมีคะแนนชนะที่ −9 (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_en": "What was the High points when date was February 11?",
    "question_th": "จุดสูงสุดคือวันที่ 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_en": "What was the team that has a High rebounds of popeye jones (14), and when the Record was 16-28?",
    "question_th": "ทีมใดที่มีการรีบาวด์สูงของป๊อปอายโจนส์ (14) และเมื่อบันทึกอยู่ที่ 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_en": "What is the Location Attendance when the Date was February 27?",
    "question_th": "การเข้าร่วมสถานที่เมื่อวันที่ 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_en": "What is the score of the scores when Game had a Record of 17-29?",
    "question_th": "คะแนนเมื่อเกมมีสถิติ 17-29 คืออะไร?",
    "context": "CREATE TABLE table_name_27 (game INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT skip FROM table_name_80 WHERE lead = \"lisa weagle\"",
    "question_en": "Who has the lead on Lisa Weagle?",
    "question_th": "ใครเป็นผู้นำในเรื่อง 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_en": "Which event shows Matt St. Louis in second and a skip of John Morris?",
    "question_th": "เหตุการณ์ใดแสดงให้ Matt St. Louis เป็นที่สองและข้าม 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_en": "What are the highest attempts that have net yards less than 631, and 2 for the touchdowns?",
    "question_th": "อะไรคือความพยายามสูงสุดที่มีระยะตาข่ายน้อยกว่า 631 และ 2 สำหรับทัชดาวน์?",
    "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_en": "What are the average net yards that have 9 as the touchdowns, 145 as the attempts, and yards per attempt greater than 4.8?",
    "question_th": "อะไรคือระยะสุทธิเฉลี่ยที่มี 9 เป็นทัชดาวน์, 145 เป็นความพยายาม และหลาต่อการพยายามมากกว่า 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_en": "How many yards per attempt have net yards greater than 631?",
    "question_th": "กี่หลาต่อครั้งมีระยะสุทธิมากกว่า 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_en": "What are the highest touchdowns that have net yards greater than 631, with attempts less than 145?",
    "question_th": "อะไรคือทัชดาวน์สูงสุดที่มีระยะตาข่ายมากกว่า 631 โดยมีความพยายามน้อยกว่า 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_en": "What is the value for Slalom in seasons later than 1994 and overall value greater than 22?",
    "question_th": "มูลค่าของสลาลมในฤดูกาลหลังปี 1994 และมูลค่ารวมที่มากกว่า 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_en": "How many seasons had a Super G of 2 and overall of 3?",
    "question_th": "กี่ฤดูกาลที่มี Super G เป็น 2 และรวมเป็น 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_en": "Who was the Opponent in the Auckland, New Zealand Tournament?",
    "question_th": "ใครคือคู่ต่อสู้ในการแข่งขันโอ๊คแลนด์ นิวซีแลนด์?",
    "context": "CREATE TABLE table_name_50 (opponent VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_37 WHERE opponent = \"rafael nadal\"",
    "question_en": "On what Date was Rafael Nadal the Opponent?",
    "question_th": "ราฟาเอล นาดาล เป็นฝ่ายตรงข้ามวันไหน?",
    "context": "CREATE TABLE table_name_37 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_5 WHERE surface = \"hard (i)\"",
    "question_en": "Who was the Opponent on a Hard (i) Surface?",
    "question_th": "ใครคือฝ่ายตรงข้ามบนพื้นผิวแข็ง (i)?",
    "context": "CREATE TABLE table_name_5 (opponent VARCHAR, surface VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_7 WHERE tournament = \"auckland, new zealand\"",
    "question_en": "What was the Score at the Auckland, New Zealand Tournament?",
    "question_th": "คะแนนในการแข่งขันโอ๊คแลนด์ นิวซีแลนด์เป็นเท่าใด",
    "context": "CREATE TABLE table_name_7 (score VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_97 WHERE venue = \"dinamo, brest\"",
    "question_en": "What team plays in Dinamo, Brest?",
    "question_th": "ทีมใดเล่นในดินาโม, เบรสต์?",
    "context": "CREATE TABLE table_name_97 (team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_26 WHERE venue = \"spartak, mogilev\"",
    "question_en": "What team plays at Spartak, Mogilev?",
    "question_th": "ทีมใดเล่นที่ 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_en": "Who was the Producer/Director of Fear Beneath?",
    "question_th": "ใครคือผู้อำนวยการสร้าง/ผู้อำนวยการสร้าง Fear Beneath?",
    "context": "CREATE TABLE table_name_40 (producer_director VARCHAR, film VARCHAR)"
  },
  {
    "answer": "SELECT film FROM table_name_76 WHERE year = 1996",
    "question_en": "What film was released in 1996?",
    "question_th": "ภาพยนตร์เรื่องใดออกฉายในปี 1996?",
    "context": "CREATE TABLE table_name_76 (film VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT producer_director FROM table_name_67 WHERE film = \"political engagement\"",
    "question_en": "Who is the Producer/Director of Political Engagement?",
    "question_th": "ใครคือผู้ผลิต/ผู้อำนวยการฝ่ายการมีส่วนร่วมทางการเมือง",
    "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_en": "What is the original airdate for episode 7-17 (195) from writer Sidney Slon?",
    "question_th": "ออกอากาศดั้งเดิมของตอนที่ 7-17 (195) จากนักเขียน 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_en": "What is the date of the tournament played in Madrid, Spain?",
    "question_th": "การแข่งขันจัดขึ้นที่กรุงมาดริด ประเทศสเปน วันที่เท่าไร?",
    "context": "CREATE TABLE table_name_90 (date VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_34 WHERE round = \"final\"",
    "question_en": "What opponent has final as the round?",
    "question_th": "ฝ่ายตรงข้ามคนไหนเข้ารอบสุดท้าย?",
    "context": "CREATE TABLE table_name_34 (opponent VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_50 WHERE opponent = \"hereford united\"",
    "question_en": "What round has hereford united as the opponent?",
    "question_th": "เฮริฟอร์ดรวมตัวเป็นคู่ต่อสู้รอบไหน?",
    "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–31 may\"",
    "question_en": "Which Location /State has a Winner of craig lowndes, and a Date of 29–31 may?",
    "question_th": "สถานที่ / รัฐใดที่มีผู้ชนะจาก Craig Lowndes และวันที่ 29–31 พฤษภาคม",
    "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_en": "Which Team has a Winner of craig lowndes, and a Circuit of phillip island grand prix circuit?",
    "question_th": "ทีมใดมีผู้ชนะจาก Craig Lowndes และ 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–31 may\"",
    "question_en": "Which Location/ State has a Date of 29–31 may?",
    "question_th": "สถานที่/รัฐใดมีวันที่ 29–31 พฤษภาคม",
    "context": "CREATE TABLE table_name_36 (location___state VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_89 WHERE circuit = \"lakeside international raceway\"",
    "question_en": "Who won at the Circuit of lakeside international raceway?",
    "question_th": "ใครชนะในสนามแข่งรถนานาชาติริมทะเลสาบ?",
    "context": "CREATE TABLE table_name_89 (winner VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT service_charge FROM table_name_38 WHERE number_made = 456",
    "question_en": "What is the service charge of the boat howitzers with 456 made?",
    "question_th": "ค่าบริการปืนครกเรือ 456 ทำที่เท่าไหร่ครับ?",
    "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_en": "What is the service chage of the boat howitzers with a 12-pdr light destination?",
    "question_th": "ค่าบริการของปืนครกเรือที่มีปลายทางแสง 12-pdr คืออะไร?",
    "context": "CREATE TABLE table_name_42 (service_charge VARCHAR, designation VARCHAR)"
  },
  {
    "answer": "SELECT service_charge FROM table_name_9 WHERE number_made = 1009",
    "question_en": "What is the service charge of the boat howitzers with 1009 made?",
    "question_th": "ค่าบริการปืนครกเรือ 1009 ทำราคาเท่าไหร่ครับ?",
    "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_en": "What is the bore of the boat howitzers with a 12-pdr heavy designation?",
    "question_th": "รูของปืนครกเรือที่มีชื่อหนัก 12-pdr คืออะไร?",
    "context": "CREATE TABLE table_name_8 (bore VARCHAR, designation VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_43 WHERE tie_no = 9",
    "question_en": "Which attendance has 9 as the tie no.?",
    "question_th": "การเข้าร่วมใดมี 9 เสมอกัน?",
    "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_en": "How many Picks have a Position of defensive end, and an Overall smaller than 33?",
    "question_th": "มีกี่ตัวเลือกที่มีตำแหน่งเป็นฝ่ายรับ และคะแนนโดยรวมน้อยกว่า 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_en": "Which Overall is the highest one that has a Name of gregory spann, and a Pick # larger than 19?",
    "question_th": "โดยรวมแล้วอันใดที่สูงที่สุดที่มีชื่อ gregory spann และเลือก # ที่มากกว่า 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_en": "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?",
    "question_th": "ตัวเลือก # ใดที่มีรอบที่ใหญ่กว่า 5 และตำแหน่งตัวรับแบบกว้าง และชื่อของ gregory spann และโดยรวมที่ใหญ่กว่า 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_en": "What is the score from the 21-27 Record?",
    "question_th": "คะแนนจากสถิติ 21-27 เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_96 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_99 WHERE date = \"may 28\"",
    "question_en": "How many people attended the May 28 game?",
    "question_th": "มีคนเข้าร่วมเกมวันที่ 28 พฤษภาคมกี่คน?",
    "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_en": "What is the average drawn number of the team with less than 70 points and less than 46 played?",
    "question_th": "ค่าเฉลี่ยของทีมที่เสมอกันน้อยกว่า 70 แต้ม และเล่นน้อยกว่า 46 แต้มคือเท่าไร?",
    "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_en": "What is the highest position of the team with 24 lost and a drawn greater than 9?",
    "question_th": "ตำแหน่งสูงสุดของทีมที่แพ้ 24 และเสมอมากกว่า 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_en": "How many Points has a Game of 82 and a April larger than 10?",
    "question_th": "เกม 82 แต้มมีกี่แต้มและเดือนเมษายนมากกว่า 10 แต้ม?",
    "context": "CREATE TABLE table_name_11 (points INTEGER, game VARCHAR, april VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(game) FROM table_name_98 WHERE score = \"3–3 ot\"",
    "question_en": "How many Games have a Score of 3–3 ot?",
    "question_th": "มีกี่เกมที่มีคะแนน 3–3 ot?",
    "context": "CREATE TABLE table_name_98 (game VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT MAX(april) FROM table_name_54 WHERE game = 84",
    "question_en": "Which April has a Game of 84",
    "question_th": "ซึ่งเดือนเมษายนมีเกม 84",
    "context": "CREATE TABLE table_name_54 (april INTEGER, game VARCHAR)"
  },
  {
    "answer": "SELECT played FROM table_name_88 WHERE club = \"banwen rfc\"",
    "question_en": "what's the played status when the club was banwen rfc?",
    "question_th": "สถานะการเล่นเมื่อสโมสรเป็น 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_en": "what's the points total when points against was points against?",
    "question_th": "แต้มรวมเป็นเท่าไหร่เมื่อแต้มต่อคือแต้มต่อ?",
    "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_en": "when points were 36 and points against 489 what is the lost?",
    "question_th": "เมื่อแต้มเป็น 36 และแต้มต่อ 489 แต้มที่เสียไปคืออะไร?",
    "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_en": "when points against was 387 what was the lost?",
    "question_th": "เมื่อแต้มต่อคือ 387 เสียอะไรไป?",
    "context": "CREATE TABLE table_name_8 (lost VARCHAR, points_against VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_name_86 WHERE points_for = \"points for\"",
    "question_en": "when points for was points for what was the points?",
    "question_th": "เมื่อคะแนนเป็นคะแนนสำหรับคะแนนคืออะไร?",
    "context": "CREATE TABLE table_name_86 (points VARCHAR, points_for VARCHAR)"
  },
  {
    "answer": "SELECT pick FROM table_name_72 WHERE year = 1948",
    "question_en": "What was 1948's pick?",
    "question_th": "ตัวเลือกของปี 1948 คืออะไร?",
    "context": "CREATE TABLE table_name_72 (pick VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT pick FROM table_name_24 WHERE year = 2004",
    "question_en": "What was the pick in 2004?",
    "question_th": "สิ่งที่เลือกในปี 2547 คืออะไร?",
    "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_en": "How many years have a Pick of 12, and a Position of dt, and a College of penn state?",
    "question_th": "กี่ปีมีการเลือก 12 ตำแหน่งและตำแหน่ง dt และ 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_en": "What is the scoring average where the wins are 0?",
    "question_th": "ค่าเฉลี่ยคะแนนที่ชนะเป็น 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_en": "What year has earnings of $557,158?",
    "question_th": "ปีใดที่มีรายได้ $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_en": "Which Points have an Opponent of @ florida panthers, and a Game larger than 58?",
    "question_th": "คะแนนใดที่มีฝ่ายตรงข้ามของ @ florida panthers และเกมที่ใหญ่กว่า 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_en": "Which February has a Game of 64?",
    "question_th": "เดือนกุมภาพันธ์ไหนมีเกม 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–0\" AND february > 1",
    "question_en": "Which Points have a Game smaller than 60, and a Score of 2–0, and a February larger than 1?",
    "question_th": "แต้มใดที่มีเกมน้อยกว่า 60 และคะแนน 2–0 และเดือนกุมภาพันธ์มากกว่า 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_en": "Which Game is the highest one that has a February of 25?",
    "question_th": "เกมใดคือเกมสูงสุดที่มีวันที่ 25 กุมภาพันธ์?",
    "context": "CREATE TABLE table_name_96 (game INTEGER, february VARCHAR)"
  },
  {
    "answer": "SELECT MAX(game) FROM table_name_96 WHERE score = \"3–4 ot\" AND points > 75",
    "question_en": "Which Game is the highest one that has a Score of 3–4 ot, and Points larger than 75?",
    "question_th": "เกมใดเป็นเกมสูงสุดที่มีคะแนน 3–4 ot และคะแนนมากกว่า 75",
    "context": "CREATE TABLE table_name_96 (game INTEGER, score VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(february) FROM table_name_44 WHERE score = \"5–2\" AND points = 70",
    "question_en": "How much February has a Score of 5–2, and Points of 70?",
    "question_th": "เดือนกุมภาพันธ์มีคะแนน 5–2 และคะแนน 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_en": "Which result happened more recently than week 2, and had a date of November 30, 1958?",
    "question_th": "ผลลัพธ์ใดเกิดขึ้นช้ากว่าสัปดาห์ที่ 2 และมีวันที่ 30 พฤศจิกายน 2501",
    "context": "CREATE TABLE table_name_98 (result VARCHAR, week VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT album FROM table_name_95 WHERE length = \"4:30\"",
    "question_en": "what album is 4:30 long",
    "question_th": "อัลบั้มอะไรยาว4:30",
    "context": "CREATE TABLE table_name_95 (album VARCHAR, length VARCHAR)"
  },
  {
    "answer": "SELECT head_coach FROM table_name_43 WHERE town = \"novy urengoy\"",
    "question_en": "What is the Head Coach of Novy Urengoy?",
    "question_th": "หัวหน้าโค้ชของ 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_en": "What is the Arena o Kazan?",
    "question_th": "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_en": "What is the Website of Head Coach Yuriy Korotkevich?",
    "question_th": "เว็บไซต์ของหัวหน้าโค้ช ยูริ โครอตเควิช คืออะไร?",
    "context": "CREATE TABLE table_name_49 (website VARCHAR, head_coach VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_71 WHERE opponents = \"sebastián decoud santiago giraldo\"",
    "question_en": "Opponents of sebastián decoud santiago giraldo had what surface?",
    "question_th": "ฝ่ายตรงข้ามของ sebastián decoud santiago giraldo มีประเด็นอะไร?",
    "context": "CREATE TABLE table_name_71 (surface VARCHAR, opponents VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_20 WHERE partnering = \"franco ferreiro\"",
    "question_en": "Partnering of franco ferreiro had what tournament?",
    "question_th": "การเป็นหุ้นส่วนของ Franco Ferreiro มีทัวร์นาเมนท์อะไรบ้าง?",
    "context": "CREATE TABLE table_name_20 (tournament VARCHAR, partnering VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_51 WHERE date = \"april 10, 2006\"",
    "question_en": "Date of april 10, 2006 had what surface?",
    "question_th": "วันที่ 10 เมษายน 2549 มีพื้นผิวอะไร?",
    "context": "CREATE TABLE table_name_51 (surface VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_69 WHERE surface = \"clay\" AND partnering = \"júlio silva\"",
    "question_en": "Surface of clay, and a Partnering of júlio silva had what score?",
    "question_th": "พื้นผิวดินเหนียว และ Partnering ของ júlio silva ได้คะแนนเท่าไหร่?",
    "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_en": "Date of november 3, 2008 had what score?",
    "question_th": "วันที่ 3 พฤศจิกายน 2551 ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_15 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT AVG(points) FROM table_name_69 WHERE name = \"denis kornilov\"",
    "question_en": "Which Points have a Name of denis kornilov?",
    "question_th": "คะแนนใดมีชื่อของเดนิส คอร์นิลอฟ",
    "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_en": "Which Rank that a Name of thomas morgenstern, and Points larger than 288.7?",
    "question_th": "อันดับใดที่เป็นชื่อของโทมัส มอร์เกนสเติร์น และคะแนนมากกว่า 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_en": "What is the overall number for Louisiana Tech college, and a pick more than 10?",
    "question_th": "หมายเลขโดยรวมของวิทยาลัย Louisiana Tech คืออะไร และเลือกมากกว่า 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_en": "What was the pick number for Deji Karim, in a round lower than 6?",
    "question_th": "หมายเลขที่เลือกของ Deji Karim ในรอบที่ต่ำกว่า 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_en": "Which college had an overall number more than 180?",
    "question_th": "วิทยาลัยใดมีจำนวนรวมมากกว่า 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_en": "What is the overall number for a pick of #10, from Louisiana Tech, and a round bigger than 3?",
    "question_th": "ตัวเลขโดยรวมสำหรับการเลือกหมายเลข 10 จาก Louisiana Tech และรอบที่มากกว่า 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_en": "What's the Pick average that has a School/Club Team of Alabama, with a Round that's smaller than 9?",
    "question_th": "ค่าเฉลี่ยการเลือกที่มีทีมโรงเรียน/สโมสรของอลาบามา โดยมีรอบที่น้อยกว่า 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_en": "What's the sum of the Pick that has the Player of Robert Ingalls?",
    "question_th": "ผลรวมของ Pick ที่มีผู้เล่นของ 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_en": "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?",
    "question_th": "ผลรวมของตัวเลือกที่มีตำแหน่งแย่งชิง ผู้เล่น วู้ดดี้ อดัมส์ และรอบที่มากกว่า 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_en": "What Position has a Round that's larger than 21?",
    "question_th": "ตำแหน่งใดมีรอบที่ใหญ่กว่า 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_en": "What is the sum of the Europe totals for players with other appearances of 0, league appearances under 328, and a position of MF?",
    "question_th": "ผลรวมของผลรวมของยุโรปสำหรับผู้เล่นที่ลงเล่นอื่นๆ เป็น 0, ลงเล่นในลีกต่ำกว่า 328 นัด และตำแหน่ง 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_en": "Occupational pensions of 7%, and a Working tax credit of 2%, and a Other social security benefits of 6% has what investment income?",
    "question_th": "เงินบำนาญจากการทำงาน 7% และเครดิตภาษีการทำงาน 2% และสิทธิประโยชน์ประกันสังคมอื่นๆ 6% มีรายได้จากการลงทุนเท่าใด",
    "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_en": "Region of eastern england has what investment income?",
    "question_th": "ภูมิภาคตะวันออกของอังกฤษมีรายได้จากการลงทุนเท่าไร?",
    "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_en": "State pensions of 7%, and a Self employed of 7%, and a Other income sources of 2% has what investment income?",
    "question_th": "เงินบำนาญของรัฐ 7% และอาชีพอิสระ 7% และแหล่งรายได้อื่น 2% มีรายได้จากการลงทุนเท่าใด",
    "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_en": "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?",
    "question_th": "แหล่งรายได้อื่นๆ 2% และเงินบำนาญของรัฐ 7% และเครดิตภาษีการทำงาน 2% และการจ้างงาน (เงินเดือนและค่าจ้าง) 66% มีเงินบำนาญจากการประกอบอาชีพอะไรบ้าง",
    "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_en": "Investment income of 2%, and an other income sources of 3%, and an employment (salaries & wages) of 71% involves which self employed?",
    "question_th": "รายได้จากการลงทุน 2% และแหล่งรายได้อื่น 3% และการจ้างงาน (เงินเดือนและค่าจ้าง) 71% เกี่ยวข้องกับอาชีพอิสระใดบ้าง",
    "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_en": "Employment ( salaries & wages) of 64%, and a Occupational pensions of 6% has what working tax credit?",
    "question_th": "การจ้างงาน (เงินเดือนและค่าจ้าง) 64% และเงินบำนาญ 6% มีเครดิตภาษีการทำงานอะไรบ้าง",
    "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_en": "How many Drawn is which has a Games smaller than 6?",
    "question_th": "เกมที่เสมอน้อยกว่า 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_en": "What is the Points that has  61 - 15 Point difference and a Drawn larger than 1?",
    "question_th": "แต้มที่มีความแตกต่าง 61 - 15 แต้มและแต้มมากกว่า 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_en": "How many Drawn has a Games larger than 6?",
    "question_th": "Drawn มีเกมที่ใหญ่กว่า 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_en": "What is the smallest electorate with 78,076 quota and less than 13 candidates?",
    "question_th": "เขตเลือกตั้งที่เล็กที่สุดที่มีโควต้า 78,076 คนและมีผู้สมัครน้อยกว่า 13 คนคือเขตใด",
    "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_en": "What is the turnout with 15 candidates and more than 377,591 valid poll?",
    "question_th": "ผู้ออกมาใช้สิทธิ์ที่มีผู้สมัคร 15 คนและแบบสำรวจที่ถูกต้องมากกว่า 377,591 คนคืออะไร?",
    "context": "CREATE TABLE table_name_81 (turnout VARCHAR, candidates VARCHAR, valid_poll VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_19 WHERE rank = 79",
    "question_en": "What country is ranked 79?",
    "question_th": "ประเทศใดอยู่ในอันดับที่ 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_en": "What is the lowest rank for an album after 1999 and an Accolade of the 100 greatest indie rock albums of all time?",
    "question_th": "อะไรคืออันดับต่ำสุดของอัลบั้มหลังปี 1999 และรางวัลจาก 100 อัลบั้มอินดี้ร็อคที่ยิ่งใหญ่ที่สุดตลอดกาล?",
    "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_en": "Which Week is on sunday november 28?",
    "question_th": "สัปดาห์ใดคือวันอาทิตย์ที่ 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_en": "How many weeks have an Opponent of at new york giants?",
    "question_th": "ฝ่ายตรงข้ามของนิวยอร์กไจแอนต์มีกี่สัปดาห์?",
    "context": "CREATE TABLE table_name_81 (week VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT time___et__ FROM table_name_3 WHERE opponent = \"new england patriots\"",
    "question_en": "When is the Opponent of new england patriots?",
    "question_th": "เมื่อไรฝ่ายตรงข้ามของผู้รักชาติอังกฤษคนใหม่?",
    "context": "CREATE TABLE table_name_3 (time___et__ VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_79 WHERE result = \"w 23–6\"",
    "question_en": "Which week has a Result of w 23–6?",
    "question_th": "สัปดาห์ใดมีผลลัพธ์เป็น w 23–6?",
    "context": "CREATE TABLE table_name_79 (week VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT AVG(innhabitants) FROM table_name_87 WHERE mayor = \"olav martin vik\"",
    "question_en": "How many people did Mayor Olav Martin Vik preside over?",
    "question_th": "นายกเทศมนตรี Olav Martin Vik เป็นประธานจำนวนกี่คน",
    "context": "CREATE TABLE table_name_87 (innhabitants INTEGER, mayor VARCHAR)"
  },
  {
    "answer": "SELECT SUM(area) FROM table_name_34 WHERE name = \"askøy\" AND municipal_code < 1247",
    "question_en": "What's the area of askøy, with a Municipal code less than 1247?",
    "question_th": "Askøy ซึ่งมีรหัสเทศบาลน้อยกว่า 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_en": "What Mayor is from the KRF Party?",
    "question_th": "นายกเทศมนตรีคนใดมาจากพรรค KRF?",
    "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_en": "What's the Municipal code of the FRP Party with an area of 100?",
    "question_th": "รหัสเทศบาลของพรรค FRP ซึ่งมีพื้นที่ 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_en": "How many people does the KRF Party preside over?",
    "question_th": "พรรค KRF มีกี่คน?",
    "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_en": "What is the total number of overall draft picks for player whose position is C and was picked after round 9?",
    "question_th": "จำนวนดราฟต์โดยรวมสำหรับผู้เล่นที่มีตำแหน่ง C และได้รับเลือกหลังจากรอบที่ 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_en": "What position was Jafus White who was picked after round 1?",
    "question_th": "Jafus White ที่ถูกเลือกหลังยกที่ 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_en": "What is the total number of overall draft picks for Fred Nixon?",
    "question_th": "จำนวนดราฟท์โดยรวมของ 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_en": "Who is the athlete who was picked before round 9, had an overall draft pick after number 143 and plays the position of db?",
    "question_th": "นักกีฬาคนไหนที่ถูกเลือกก่อนรอบ 9 ได้ดราฟท์รวมหลังหมายเลข 143 และเล่นตำแหน่ง ดีบี คือใคร?",
    "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_en": "What is the highest round of the player with an overall of 152?",
    "question_th": "ผู้เล่นรอบสูงสุดด้วยคะแนนรวม 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_en": "What is the average round of the defensive back player with a pick # greater than 5 and an overall less than 152?",
    "question_th": "รอบเฉลี่ยของผู้เล่นแบ็คฝ่ายรับที่มีตัวเลือก # มากกว่า 5 และคะแนนรวมน้อยกว่า 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_en": "What is the average overall of John Ayres, who had a pick # greater than 4?",
    "question_th": "ค่าเฉลี่ยโดยรวมของ John Ayres ที่มีตัวเลือก # มากกว่า 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_en": "What is the name of the player with a pick # less than 5 and an overall of 284?",
    "question_th": "ผู้เล่นที่มีให้เลือก # น้อยกว่า 5 และคะแนนรวม 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_en": "What is the average overall of Ken Whisenhunt, who has a pick # of 5?",
    "question_th": "ค่าเฉลี่ยโดยรวมของ Ken Whisenhunt ที่มีตัวเลือก # จาก 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_en": "What is the lowest pick # of John Ayres?",
    "question_th": "ตัวเลือกต่ำสุด # ของ 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_en": "What is the name of team with Palmeiras 4-2 portuguesa as the last match?",
    "question_th": "นัดล่าสุดทีม พัลไมรัส 4-2 โปรตุเกส ชื่ออะไร?",
    "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_en": "What was the manner of departure replaced by tita?",
    "question_th": "ลักษณะการจากไปถูกแทนที่ด้วย 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_en": "What is the name of the last match that had a sacked manner of departure and a geninho outgoing manner?",
    "question_th": "นัดล่าสุดที่มีลักษณะการจากไปแบบไล่ออกและลักษณะการออกนอกบ้านของเกนินโญ่ชื่ออะไร?",
    "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_en": "What is the last match with a vacancy date of round 2 and Ney Franco as outgoing manager?",
    "question_th": "นัดสุดท้ายที่มีตำแหน่งว่างรอบ 2 และมีเนย์ ฟรังโกเป็นผู้จัดการทีมจะออกไปคือนัดไหน?",
    "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_en": "What is the last match with a resigned manner of departure and a round 1 date of vacancy?",
    "question_th": "นัดสุดท้ายกับลักษณะการลาออกและตำแหน่งว่างรอบ 1 คืออะไร?",
    "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_en": "What is the highest effic with an avg/g of 91.9?",
    "question_th": "ประสิทธิภาพสูงสุดที่มีค่าเฉลี่ย/g เท่ากับ 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_en": "What is the att-cmp-int with an effic smaller than 117.88 and a gp-gs of 10-0?",
    "question_th": "att-cmp-int ที่มีประสิทธิภาพน้อยกว่า 117.88 และ gp-gs เป็น 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_en": "What is the sum avg/g with an effic of 858.4?",
    "question_th": "ผลรวมเฉลี่ย/g ที่มีประสิทธิภาพเท่ากับ 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_en": "What is the mascot for the school in 32 Hendricks County?",
    "question_th": "มาสคอตของโรงเรียนใน 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_en": "Where is Lafayette T. Jefferson School in 79 Tippecanoe county?",
    "question_th": "โรงเรียนลาฟาแยต ที. เจฟเฟอร์สัน ใน 79 ทิปเปคานู เคาน์ตี อยู่ที่ไหน",
    "context": "CREATE TABLE table_name_26 (location VARCHAR, county VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_15 WHERE mascot = \"royals\"",
    "question_en": "Where is the school with Royals as their mascot?",
    "question_th": "โรงเรียนไหนที่มีราชวงศ์เป็นตัวนำโชค?",
    "context": "CREATE TABLE table_name_15 (location VARCHAR, mascot VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_79 WHERE date = \"february 12\"",
    "question_en": "What was the score for the game on February 12?",
    "question_th": "สกอร์เกมวันที่ 12 กุมภาพันธ์เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_79 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_10 WHERE date = \"february 29\"",
    "question_en": "What was the score for the game on February 29?",
    "question_th": "สกอร์เกมวันที่ 29 กุมภาพันธ์ เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_10 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_64 WHERE visitor = \"chicago\"",
    "question_en": "Where was the home team in the game played against Chicago?",
    "question_th": "เจ้าบ้านในเกมเจอกับชิคาโก้อยู่ที่ไหน?",
    "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_en": "Which Season has a Game of fcs midwest region, and a Score of 40-33?",
    "question_th": "ฤดูกาลใดที่มีเกมของ fcs ภูมิภาคมิดเวสต์ และคะแนน 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_en": "Which Game has a Result of win, and an Opponent of new hampshire, and a Season smaller than 2008?",
    "question_th": "เกมใดมีผลลัพธ์เป็นชัยชนะ และเป็นฝ่ายตรงข้ามกับนิวแฮมป์เชียร์ และมีฤดูกาลที่เล็กกว่าปี 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_en": "Which Season has a Score of 39-27?",
    "question_th": "ฤดูกาลใดมีคะแนน 39-27?",
    "context": "CREATE TABLE table_name_26 (season INTEGER, score VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_80 WHERE goal = 5",
    "question_en": "What result has a goal of 5?",
    "question_th": "ผลลัพธ์อะไรมีเป้าหมายที่ 5?",
    "context": "CREATE TABLE table_name_80 (result VARCHAR, goal VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_42 WHERE date = \"may 25\"",
    "question_en": "What's the record on May 25?",
    "question_th": "บันทึกเมื่อวันที่ 25 พฤษภาคมเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_42 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(attendance) FROM table_name_89 WHERE date = \"may 7\"",
    "question_en": "What's greatest attendance on May 7?",
    "question_th": "ผู้เข้าร่วมที่ยิ่งใหญ่ที่สุดในวันที่ 7 พฤษภาคมคืออะไร?",
    "context": "CREATE TABLE table_name_89 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT january FROM table_name_17 WHERE record = \"28–14–8\"",
    "question_en": "Which January has a Record of 28–14–8?",
    "question_th": "เดือนมกราคมใดที่มีสถิติ 28–14–8",
    "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_en": "Which Points is the highest one that has a Game smaller than 43, and a January larger than 8?",
    "question_th": "คะแนนใดคือคะแนนสูงสุดที่มีเกมน้อยกว่า 43 และเดือนมกราคมมากกว่า 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_en": "What is the mean number of wins for the norton team in 1966, when there are 8 points?",
    "question_th": "จำนวนชัยชนะเฉลี่ยของทีมนอร์ตันในปี 1966 โดยมี 8 แต้มเป็นเท่าใด",
    "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_en": "What is the most recent year for the ajs team when there are fewer than 0 wins?",
    "question_th": "ปีล่าสุดของทีม ajs ที่ชนะน้อยกว่า 0 ครั้งคือปีใด?",
    "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_en": "What is the smallest point amount for years prior to 1958 when the class is 350cc?",
    "question_th": "จำนวนแต้มที่น้อยที่สุดสำหรับปีก่อนปี 1958 เมื่อคลาสคือ 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_en": "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?",
    "question_th": "ถ้ามีน้อยกว่า 5 แต้ม คลาสคือ 500cc ทีมนอร์ตัน และปีล่าสุดกว่าปี 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_en": "When was the game that had a first prize of $161,480?",
    "question_th": "เกมที่มีรางวัลที่หนึ่งมูลค่า 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_en": "Who won on May 2011?",
    "question_th": "ใครชนะเมื่อเดือนพฤษภาคม 2554?",
    "context": "CREATE TABLE table_name_76 (winner VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT general_classification FROM table_name_63 WHERE stage = \"13\"",
    "question_en": "What is the general classification with a 13 stage?",
    "question_th": "การจำแนกประเภททั่วไปที่มี 13 ขั้นคืออะไร?",
    "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_en": "What is teh stage with Daniele Bennati as the points classification and Giovanni VIsconti as the general classification?",
    "question_th": "อะไรคือระยะที่ Daniele Bennati อยู่ในอันดับคะแนน และ Giovanni VIsconti อยู่ในอันดับทั่วไป?",
    "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_en": "What is the general classification of the stage 3 with Daniele Bennati as the points classification and Morris Possoni as the young rider classification.",
    "question_th": "การจัดประเภททั่วไปของสเตจที่ 3 คืออะไร โดย Daniele Bennati เป็นการจัดประเภทคะแนน และ Morris Possoni เป็นประเภทนักบิดรุ่นเยาว์",
    "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ò\"",
    "question_en": "What is the general classification with riccardo riccò as the young rider classification?",
    "question_th": "การจำแนกประเภททั่วไปของ riccardo riccò เป็นการจัดประเภทนักบิดรุ่นเยาว์คืออะไร",
    "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ørensen\" AND general_classification = \"christian vande velde\"",
    "question_en": "What is the point classification with chris anker sørensen as the young rider classification and Christian vande velde as the general classification?",
    "question_th": "การจำแนกประเภทคะแนนโดย chris anker sorensen เป็นประเภทนักบิดรุ่นเยาว์ และ Christian vande velde เป็นประเภททั่วไปคืออะไร",
    "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_en": "What is the point classification of stage 15?",
    "question_th": "การจำแนกคะแนนของระยะที่ 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_en": "what week number was at memorial stadium?",
    "question_th": "ที่สนามเมมโมเรียลสเตเดียมเป็นสัปดาห์ที่เท่าไหร่?",
    "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_en": "before week 12 what was the attendance on 1983-11-21?",
    "question_th": "ก่อนสัปดาห์ที่ 12 มีผู้เข้าร่วมในวันที่ 21-11-2526 เป็นจำนวนเท่าใด",
    "context": "CREATE TABLE table_name_22 (attendance INTEGER, date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT MIN(attendance) FROM table_name_34 WHERE week = 16",
    "question_en": "on week 16, what was the lowest attendance?",
    "question_th": "ในสัปดาห์ที่ 16 มีผู้เข้าร่วมน้อยที่สุดคือเท่าใด",
    "context": "CREATE TABLE table_name_34 (attendance INTEGER, week VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_82 WHERE margin_of_victory = \"7 strokes\"",
    "question_en": "At what venue is the margin of victory 7 strokes?",
    "question_th": "ระยะขอบของชัยชนะ 7 จังหวะอยู่ที่สถานที่ใด?",
    "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_en": "What was the purse when Sherri Steinhauer was champion at Woburn Golf and Country Club?",
    "question_th": "กระเป๋าเงินเมื่อ Sherri Steinhauer เป็นแชมป์ที่ 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_en": "What is the exit date of the player who transferred to Cardiff City?",
    "question_th": "นักเตะที่ย้ายไปคาร์ดิฟฟ์ซิตี้จะออกจากทีมเมื่อใด?",
    "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_en": "What is the exit date of the player who transferred to Portsmouth?",
    "question_th": "นักเตะที่ย้ายไปพอร์ทสมัธจะออกจากทีมเมื่อใด?",
    "context": "CREATE TABLE table_name_58 (exit_date VARCHAR, to_club VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_25 WHERE pos = \"fw\"",
    "question_en": "Which player has a position of FW?",
    "question_th": "นักเตะคนไหนมีตำแหน่ง 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_en": "Which Frequency MHz has an ERP W larger than 4, and a Call sign of w218ap?",
    "question_th": "ความถี่ MHz ใดที่มี ERP W ใหญ่กว่า 4 และสัญญาณเรียกขานของ 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_en": "Which City of license has a Frequency MHz of 91.5 fm?",
    "question_th": "เมืองที่ได้รับใบอนุญาตใดมีความถี่ MHz 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_en": "Which City of license has a Call sign of w220ba?",
    "question_th": "เมืองใบอนุญาตใดมีสัญญาณเรียก 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_en": "Which ERP W has a Frequency MHz of 89.3 fm?",
    "question_th": "ERP W ใดมีความถี่ MHz 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_en": "How many wins does Greg Norman have?",
    "question_th": "Greg Norman มีชัยชนะกี่ครั้ง?",
    "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_en": "What is the lowest number played with a position of 6 and less than 1 draw?",
    "question_th": "เลขต่ำสุดที่เล่นได้อันดับ 6 และเสมอน้อยกว่า 1 คือเลขอะไร?",
    "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_en": "What is the highest against value for Palmeiras and position less than 4?",
    "question_th": "อะไรคือค่าสูงสุดเมื่อเทียบกับค่าตัวของพัลไมรัสและตำแหน่งที่น้อยกว่า 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_en": "What is the highest number played with more than 2 lost for Palmeiras and less than 1 draw?",
    "question_th": "หมายเลขสูงสุดที่เล่นโดยพัลไมรัสมากกว่า 2 แพ้และเสมอน้อยกว่า 1 คือหมายเลขใด?",
    "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_en": "What is the average number lost when the against value is less than 5?",
    "question_th": "จำนวนเฉลี่ยที่หายไปเมื่อค่าต่อน้อยกว่า 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_en": "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?",
    "question_th": "จำนวนค่าสำหรับการชนะด้วย 2 ประตูขึ้นไปสอดคล้องกับผลต่าง 2 มากกว่า 9 แต้ม และทีม America-RJ เมื่อเล่นมากกว่า 7 คะแนน",
    "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_en": "What is the average total of the census after 1971 with 10,412 (32.88%) Serbs?",
    "question_th": "จำนวนรวมเฉลี่ยของการสำรวจสำมะโนประชากรหลังปี 1971 โดยมีชาวเซิร์บ 10,412 (32.88%) เป็นเท่าใด",
    "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_en": "what is the school that hosts jim goodman",
    "question_th": "โรงเรียนไหนเป็นเจ้าภาพจิม กู๊ดแมน",
    "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_en": "Which Surface has a Date of january 2, 2006?",
    "question_th": "Surface ใดมีวันที่ 2 มกราคม 2549",
    "context": "CREATE TABLE table_name_68 (surface VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_78 WHERE date = \"september 25, 2006\"",
    "question_en": "Which tournament happened on september 25, 2006?",
    "question_th": "การแข่งขันใดเกิดขึ้นในวันที่ 25 กันยายน พ.ศ. 2549",
    "context": "CREATE TABLE table_name_78 (tournament VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_11 WHERE opponen = \"joão souza\"",
    "question_en": "When did joão souza play?",
    "question_th": "เจา ซูซ่าเล่นเมื่อไร?",
    "context": "CREATE TABLE table_name_11 (date VARCHAR, opponen VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_17 WHERE score = \"7–5, 6–4\"",
    "question_en": "Which Surface has a Score of 7–5, 6–4?",
    "question_th": "Surface ใดมีคะแนน 7–5, 6–4",
    "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_en": "What is the highest NFL Draft that has jeff robinson as the player, with an overall pick less than 98?",
    "question_th": "NFL Draft สูงสุดที่มีเจฟฟ์ โรบินสันเป็นผู้เล่น โดยตัวเลือกโดยรวมน้อยกว่า 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_en": "What position has 1958 as the NFL Draft, and jerry kramer as the player?",
    "question_th": "ตำแหน่งใดในปี 1958 ในฐานะ NFL Draft และมี jerry kramer เป็นผู้เล่น",
    "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_en": "What is the highest overall pick that has c as the position, with an NFL Draft greater than 1977?",
    "question_th": "อะไรคือตัวเลือกโดยรวมสูงสุดที่มี c อยู่ในตำแหน่ง โดยมี NFL Draft มากกว่าปี 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_en": "What was the score at Spartan Stadium when San Jose was the Home team?",
    "question_th": "ที่สปาร์ตัน สเตเดี้ยม ตอนที่ซานโฮเซ่เป็นเจ้าบ้านได้คะแนนเท่าไหร่?",
    "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_en": "Where was the game on September 11, 2004?",
    "question_th": "เกมเมื่อวันที่ 11 กันยายน พ.ศ. 2547 อยู่ที่ไหน?",
    "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_en": "Who was the home team on September 20, 1998 at Spartan Stadium?",
    "question_th": "ทีมเจ้าบ้านคือใครเมื่อวันที่ 20 กันยายน พ.ศ. 2541 ที่สปาร์ตันสเตเดี้ยม?",
    "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_en": "What method has a round less than 3, and 3:36 as the time?",
    "question_th": "วิธีไหนมีรอบน้อยกว่า 3 และ 3:36 ตามเวลา?",
    "context": "CREATE TABLE table_name_5 (method VARCHAR, round VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT method FROM table_name_15 WHERE opponent = \"randy couture\"",
    "question_en": "What method has randy couture as the opponent?",
    "question_th": "วิธีไหนมีแรนดี้กูตูร์เป็นคู่ต่อสู้?",
    "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_en": "What is the median household income where the per capita is $28,789?",
    "question_th": "รายได้เฉลี่ยของครัวเรือนโดยที่รายได้ต่อหัวอยู่ที่ 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_en": "What is the median income for a family whose per capita income is $18,296?",
    "question_th": "รายได้เฉลี่ยของครอบครัวที่มีรายได้ต่อหัวเท่ากับ 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_en": "What is the resolution of the network Canal de las Estrellas?",
    "question_th": "ความละเอียดของโครงข่าย 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_en": "What is the resolution of the network Carismatv?",
    "question_th": "ความละเอียดของเครือข่าย Carismatv คืออะไร?",
    "context": "CREATE TABLE table_name_47 (resolution VARCHAR, network VARCHAR)"
  },
  {
    "answer": "SELECT dish FROM table_name_46 WHERE official_website = \"ksat.com\"",
    "question_en": "Which dish belongs to the network that has the official website of ksat.com?",
    "question_th": "จานใดที่อยู่ในเครือข่ายที่มีเว็บไซต์อย่างเป็นทางการของ 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_en": "In which city is the network latv licensed?",
    "question_th": "เครือข่าย latv ได้รับใบอนุญาตในเมืองใด",
    "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_en": "In which city is the network with the callsign kgns-dt3 licensed?",
    "question_th": "เครือข่ายที่ได้รับใบอนุญาตสัญญาณเรียกเข้า kgns-dt3 ในเมืองใด",
    "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_en": "How many in the introduced section had Fokker as a manufacturer, a quantity of 5, and retired later than 1999?",
    "question_th": "ในส่วนที่แนะนำมี Fokker เป็นผู้ผลิตกี่ราย จำนวน 5 ราย และเลิกผลิตหลังปี 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_en": "What is the total number of quantity when the introductory year was 1984?",
    "question_th": "เมื่อปีเบื้องต้นคือ พ.ศ. 2527 มีปริมาณทั้งหมดเท่าใด",
    "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_en": "How many in the introduced segment retired later than 1994 and had Fokker as a manufacturer?",
    "question_th": "มีกี่กลุ่มในกลุ่มที่แนะนำซึ่งเลิกผลิตหลังปี 1994 และมี Fokker เป็นผู้ผลิต",
    "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_en": "How many in the quantity section had Fokker as a manufacturer and retired later than 1999?",
    "question_th": "ในส่วนปริมาณมี Fokker เป็นผู้ผลิตกี่รายและเลิกผลิตหลังปี 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_en": "Which Championship has a Scoreboard that is 22-14?",
    "question_th": "แชมเปี้ยนชิพใดมีกระดานคะแนน 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_en": "What year was the building with a top 3 rank and a height of 274 (84) ft (m) completed?",
    "question_th": "อาคารที่มีอันดับ 3 อันดับแรกและมีความสูง 274 (84) ฟุต (ม.) สร้างเสร็จในปีใด",
    "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_en": "How many floors are in the 274 (84) ft (m) building that is ranked number 1?",
    "question_th": "อาคารสูง 274 (84) ฟุต (ม.) ที่ติดอันดับ 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_en": "Which is the highest ranked building with more than 15 floors?",
    "question_th": "อาคารใดที่มีอันดับสูงสุดที่มีมากกว่า 15 ชั้นคืออาคารใด",
    "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_en": "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?",
    "question_th": "คะแนนสูงสุดสำหรับทีมที่มีตำแหน่งมากกว่า 5 ซึ่งชนะน้อยกว่า 4 ครั้งและเสมอมากกว่า 8 คืออะไร?",
    "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_en": "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?",
    "question_th": "ค่าเฉลี่ยที่เสียให้กับทีมที่มีคะแนนน้อยกว่า 19 แต้ม ลงเล่นมากกว่า 18 เกม และมีตำแหน่งน้อยกว่า 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_en": "What was the sum of the draws for the team that had 11 wins, less than 38 points, and a position smaller than 4?",
    "question_th": "ผลรวมเสมอของทีมที่ชนะ 11 แต้ม น้อยกว่า 38 แต้ม และอันดับน้อยกว่า 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_en": "What was the lowest number of wins for the team that scored more than 14 points and had a position of 7?",
    "question_th": "จำนวนชัยชนะต่ำสุดสำหรับทีมที่ทำคะแนนมากกว่า 14 คะแนนและได้อันดับ 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_en": "What is the total number scored for the team that had 19 points and a position larger than 4?",
    "question_th": "คะแนนรวมของทีมที่มี 19 คะแนนและตำแหน่งมากกว่า 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_en": "What is the lowest number conceded for the team that had less than 8 wins, scored 21, and had less than 23 points?",
    "question_th": "หมายเลขที่น้อยที่สุดที่ยอมรับสำหรับทีมที่ชนะน้อยกว่า 8 คะแนน 21 คะแนน และมีคะแนนน้อยกว่า 23 คะแนนคือเท่าใด",
    "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–13\"",
    "question_en": "Which Date has a Result of l 14–13?",
    "question_th": "วันที่ใดมีผลลัพธ์เป็น l 14–13",
    "context": "CREATE TABLE table_name_88 (date VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_84 WHERE result = \"w 13–6\"",
    "question_en": "Which Date has a Result of w 13–6?",
    "question_th": "วันที่ใดมีผลลัพธ์ของ w 13–6",
    "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_en": "What is the Result of Week larger than 3 on 1971-11-07?",
    "question_th": "ผลลัพธ์ของสัปดาห์ที่มากกว่า 3 ในวันที่ 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_en": "What is the pos with more than 1 tier during Pokal Slovenije 1. round?",
    "question_th": "ตำแหน่งที่มีมากกว่า 1 ระดับระหว่าง Pokal Slovenije 1. รอบคืออะไร?",
    "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_en": "What are the exact Cubic inches of the Metric value of 104.955 L?",
    "question_th": "ค่าเมตริกของ 104.955 ลิตรมีลูกบาศก์นิ้วที่แน่นอนเป็นเท่าใด",
    "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_en": "What is the Translation of the US Customary value 0.263 pt?",
    "question_th": "คำแปลของค่าจารีตประเพณีของสหรัฐอเมริกา 0.263 pt คืออะไร",
    "context": "CREATE TABLE table_name_47 (translation VARCHAR, us_customary VARCHAR)"
  },
  {
    "answer": "SELECT metric_value FROM table_name_19 WHERE russian = \"че́тверть\"",
    "question_en": "What is the Metric value of Russian че́тверть?",
    "question_th": "ค่าเมตริกของ че́тверть รัสเซีย คืออะไร?",
    "context": "CREATE TABLE table_name_19 (metric_value VARCHAR, russian VARCHAR)"
  },
  {
    "answer": "SELECT cubic_inches__exact_ FROM table_name_86 WHERE unit = \"kruzhka\"",
    "question_en": "What are the exact Cubic inches of the Unit of kruzhka?",
    "question_th": "ครูซกามีหน่วยเป็นลูกบาศก์นิ้วกี่ลูกบาศก์นิ้ว?",
    "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_en": "Which Zero Fighter has a count of 10?",
    "question_th": "Zero Fighter ตัวไหนมีจำนวน 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_en": "On which day were the subtotal hours 9:30?",
    "question_th": "ยอดรวมชั่วโมง 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_en": "What is the count for the Zero Fighter with hours of 2:00?",
    "question_th": "Zero Fighter เวลา 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_en": "Which record has Katsuomi Inagaki as an opponent?",
    "question_th": "สถิติไหนที่คัตสึโอมิ อินากากิเป็นคู่ต่อสู้?",
    "context": "CREATE TABLE table_name_51 (record VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT method FROM table_name_63 WHERE time = \"1:46\"",
    "question_en": "Which method has a 1:46 time?",
    "question_th": "วิธีใดมีเวลา 1:46?",
    "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_en": "What is Henri Crockett's highest overall with more than 3 picks?",
    "question_th": "อะไรคือสิ่งที่ Henri Crockett โดยรวมสูงสุดโดยเลือกมากกว่า 3 ครั้ง?",
    "context": "CREATE TABLE table_name_65 (overall INTEGER, pick__number VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_7 WHERE round < 2",
    "question_en": "Which college has fewer than 2 rounds?",
    "question_th": "วิทยาลัยใดมีน้อยกว่า 2 รอบ?",
    "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_en": "What are the total number of picks for a guard with fewer than 6 rounds?",
    "question_th": "จำนวนการหยิบของการ์ดที่น้อยกว่า 6 รอบเป็นจำนวนเท่าใด?",
    "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_en": "What is the lowest overall for a quarterback with fewer than 7 rounds?",
    "question_th": "โดยรวมต่ำสุดสำหรับกองหลังที่มีน้อยกว่า 7 รอบคืออะไร?",
    "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_en": "What Playoffs had an Open Cup of 3rd round?",
    "question_th": "รอบตัดเชือกใดบ้างที่มี Open Cup รอบ 3?",
    "context": "CREATE TABLE table_name_83 (playoffs VARCHAR, open_cup VARCHAR)"
  },
  {
    "answer": "SELECT segment_d FROM table_name_25 WHERE episode = 60",
    "question_en": "What was the D segment for episode 60?",
    "question_th": "ส่วน D สำหรับตอนที่ 60 คืออะไร?",
    "context": "CREATE TABLE table_name_25 (segment_d VARCHAR, episode VARCHAR)"
  },
  {
    "answer": "SELECT segment_b FROM table_name_54 WHERE netflix = \"s03e01\"",
    "question_en": "What was the B segmint for Netlix S03E01?",
    "question_th": "ส่วน B สำหรับ 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_en": "What was the D segment for episode 60?",
    "question_th": "ส่วน D สำหรับตอนที่ 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_en": "What racing club team made supercopa 1996?",
    "question_th": "ทีมเรซซิ่งคลับทีมใดสร้างซูเปอร์โคปาในปี 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_en": "Name the # country for new palestine",
    "question_th": "ตั้งชื่อ # ประเทศสำหรับปาเลสไตน์ใหม่",
    "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_en": "Name the number of enrollment for county of 48 madison",
    "question_th": "ตั้งชื่อหมายเลขการลงทะเบียนสำหรับเคาน์ตี 48 เมดิสัน",
    "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_en": "Name the IHSAA class with county 18 delaware and tigers mascot",
    "question_th": "ตั้งชื่อชั้นเรียน IHSAA ด้วยตัวนำโชคเดลาแวร์ของเคาน์ตี 18 และเสือ",
    "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_en": "Name the mascot for shelbyville",
    "question_th": "ตั้งชื่อตัวนำโชคสำหรับเชลบีวิลล์",
    "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_en": "What's the capacity that has the highest greater than 1,763 and is at Hampden Park?",
    "question_th": "ที่ความจุสูงสุดมากกว่า 1,763 และอยู่ที่แฮมป์เดน พาร์คคือเท่าไหร่?",
    "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_en": "What's the highest with a capacity of greater than 4,000 and an average of 615?",
    "question_th": "ความจุสูงสุดคือมากกว่า 4,000 และเฉลี่ย 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_en": "At Balmoor Stadium, what's the total average having a greater than 400 lowest?",
    "question_th": "ที่สนามกีฬาบัลมัวร์ ค่าเฉลี่ยรวมที่มีคะแนนต่ำสุดมากกว่า 400 คือเท่าใด",
    "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_en": "What was the score of Tommy Aaron (2) when the tournament was in georgia?",
    "question_th": "คะแนนของ Tommy Aaron (2) เมื่อทัวร์นาเมนต์อยู่ที่จอร์เจียเป็นเท่าใด",
    "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_en": "What was the score of Ken Still (3) when he won first place?",
    "question_th": "เคน สติล (3) คว้าอันดับ 1 ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_14 (score VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT beat_by FROM table_name_9 WHERE distance = \"8fm\"",
    "question_en": "Who beat Chic by 8fm?",
    "question_th": "ใครเอาชนะ Chic ทาง 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_en": "What was the placing of the race in which Chic won by 8gf?",
    "question_th": "ตำแหน่งการแข่งขันที่ Chic ชนะ 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_en": "What was the date in which Chic won at CHS?",
    "question_th": "Chic ชนะ 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_en": "Who is the opponent of game 54, which was in Los Angeles and was before day 18?",
    "question_th": "ใครคือคู่ต่อสู้ของเกมที่ 54 ซึ่งอยู่ในลอสแองเจลิสและอยู่ก่อนวันที่ 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_en": "What is the earliest date of the game with a score of 2-2?",
    "question_th": "สกอร์ 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_en": "What is the average date of the game with the Detroit Red Wings as the opponent?",
    "question_th": "วันที่เฉลี่ยของเกมคือวันที่ดีทรอยต์เรดวิงส์เป็นคู่ต่อสู้?",
    "context": "CREATE TABLE table_name_19 (date INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_51 WHERE score = \"4-2\"",
    "question_en": "What is the date of the game with a score of 4-2?",
    "question_th": "เกมนี้สกอร์ 4-2 ตรงกับวันไหน?",
    "context": "CREATE TABLE table_name_51 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_41 WHERE record = \"3-3\"",
    "question_en": "What was the loss of the game that had a record of 3-3?",
    "question_th": "แพ้เกมที่มีสถิติ 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_en": "What was the score of the game with a loss of Mercedes (0-1)?",
    "question_th": "เกมนี้แพ้เมอร์เซเดส(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_en": "Who was the opponent at the game with a loss of Weaver (1-2)?",
    "question_th": "คู่ต่อสู้ในเกมคือใครที่แพ้วีเวอร์ (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_en": "What's the Remixed by with a Version of Strings for Soul's Mix?",
    "question_th": "Remixed by กับเวอร์ชันของ Strings สำหรับ 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_en": "What the highest Year with a Remixed by Laurent Boutonnat?",
    "question_th": "ปีไหนที่ยิ่งใหญ่ที่สุดกับการรีมิกซ์โดย 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_en": "What's the total Year with a Length of 4:45 an has an Album of Les Mots?",
    "question_th": "ปีที่มีความยาว 4:45 และมีอัลบั้มของ 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_en": "What's the Length with the Version of Album Version?",
    "question_th": "ความยาวของเวอร์ชั่นของเวอร์ชั่นอัลบั้มคือเท่าไร?",
    "context": "CREATE TABLE table_name_60 (length VARCHAR, version VARCHAR)"
  },
  {
    "answer": "SELECT album FROM table_name_39 WHERE year > 2001",
    "question_en": "What Album has a Year that's larger than 2001?",
    "question_th": "อัลบั้มใดมีปีที่ใหญ่กว่าปี 2544?",
    "context": "CREATE TABLE table_name_39 (album VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT MIN(position) FROM table_name_6 WHERE pilot = \"bruce taylor\"",
    "question_en": "What is the lowest position for bruce taylor?",
    "question_th": "ตำแหน่งต่ำสุดของบรูซ เทย์เลอร์ คืออะไร?",
    "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_en": "Which pilot has a position above 5 and a speed of 118.8km/h?",
    "question_th": "นักบินคนไหนที่มีตำแหน่งสูงกว่า 5 และมีความเร็ว 118.8 กม./ชม.",
    "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_en": "What is Erwin Sommer's average position?",
    "question_th": "ตำแหน่งเฉลี่ยของ Erwin Sommer คืออะไร?",
    "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_en": "What is the highest rank of the day with a gross of $38,916 and more than 6 screens?",
    "question_th": "อันดับสูงสุดของวันด้วยรายได้รวม 38,916 ดอลลาร์ และมากกว่า 6 หน้าจอคืออันดับไหน?",
    "context": "CREATE TABLE table_name_27 (rank INTEGER, gross VARCHAR, screens VARCHAR)"
  },
  {
    "answer": "SELECT gross FROM table_name_33 WHERE territory = \"united kingdom\"",
    "question_en": "What is the gross in the United Kingdom?",
    "question_th": "ยอดรวมในสหราชอาณาจักรคืออะไร?",
    "context": "CREATE TABLE table_name_33 (gross VARCHAR, territory VARCHAR)"
  },
  {
    "answer": "SELECT territory FROM table_name_91 WHERE screens = 17",
    "question_en": "What is the territory with 17 screens?",
    "question_th": "อาณาเขตที่มี 17 หน้าจอคืออะไร?",
    "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_en": "What is the lowest number of Golds that has Participants smaller than 14, and Rank of 1, and Total larger than 1?",
    "question_th": "จำนวนเหรียญทองต่ำสุดที่มีผู้เข้าร่วมน้อยกว่า 14 คน และอันดับ 1 และผลรวมมากกว่า 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–54\"",
    "question_en": "On what date was the record 39–54?",
    "question_th": "บันทึก 39–54 คือวันที่ใด",
    "context": "CREATE TABLE table_name_69 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_58 WHERE date = \"july 1\"",
    "question_en": "What was the record on July 1?",
    "question_th": "บันทึกเมื่อวันที่ 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_en": "How many total matches with less than 1 win and a position higher than 8?",
    "question_th": "มีการแข่งขันทั้งหมดกี่นัดที่ชนะน้อยกว่า 1 ครั้งและตำแหน่งสูงกว่า 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_en": "Which Liberal leader has Seats won smaller than 100, and Seats in House of 215, and a % of popular vote of 43.1%?",
    "question_th": "ผู้นำเสรีนิยมคนใดที่มีที่นั่งได้น้อยกว่า 100 ที่นั่ง และที่นั่งในสภา 215 ที่นั่ง และ % ของคะแนนโหวตยอดนิยม 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_en": "Which Popular vote has a Liberal leader of king, and Seats won larger than 116, and a Year of 1921?",
    "question_th": "คะแนนนิยมใดที่มีผู้นำเสรีนิยมเป็นกษัตริย์และที่นั่งได้รับมากกว่า 116 และปี 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_en": "How many Liberal candidates have a Liberal leader of pearson, and a % of popular vote of 40.2%, and Seats won smaller than 131?",
    "question_th": "มีผู้สมัครเสรีนิยมกี่คนที่มีผู้นำเสรีนิยมอย่างเพียร์สัน และมี % ของการโหวตยอดนิยมที่ 40.2% และที่นั่งได้คะแนนน้อยกว่า 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_en": "What is the score during the 2006-2007 year?",
    "question_th": "คะแนนระหว่างปี 2549-2550 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_81 (score VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT winners FROM table_name_4 WHERE year = \"2010-2011\"",
    "question_en": "Who were the winners in 2010-2011?",
    "question_th": "ใครคือผู้ชนะในปี 2553-2554?",
    "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_en": "What is the score of the match with UTC as the runner-up and Saint-Gaudens Bears as the winners?",
    "question_th": "คะแนนของการแข่งขันโดย UTC เป็นรองชนะเลิศและ Saint-Gaudens Bears เป็นผู้ชนะคือเท่าใด",
    "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_en": "Which year had UTC as the runner-up and Saint-Gaudens Bears as the winners?",
    "question_th": "ปีใดที่ UTC เป็นรองแชมป์และ Saint-Gaudens Bears เป็นผู้ชนะ",
    "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_en": "What is the venue of the match with a score of 33-22?",
    "question_th": "สนามไหนมีสกอร์ 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_en": "Who had the highest assists during the game on February 22?",
    "question_th": "ใครแอสซิสต์สูงสุดระหว่างเกมเมื่อวันที่ 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_en": "What team did the Heat play against at the TD Waterhouse Centre?",
    "question_th": "ฮีตเล่นกับทีมใดที่ทีดี วอเตอร์เฮาส์ เซ็นเตอร์?",
    "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_en": "What date was the game against Toronto which had a game number higher than 53?",
    "question_th": "เกมกับโตรอนโตซึ่งหมายเลขเกมสูงกว่า 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_en": "What is the date of the that was played with the Baltimore Colts at home?",
    "question_th": "วันที่เล่นกับบัลติมอร์ โคลท์สในบ้านคือวันที่เท่าไหร่?",
    "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_en": "How long did the game go that was played with the Houston Oilers at home?",
    "question_th": "เกมที่เล่นกับ ฮุสตัน ออยเลอร์ส ในบ้านใช้เวลานานเท่าไหร่?",
    "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_en": "What was the date of the game that lasted 75:43?",
    "question_th": "เกมที่กินเวลา 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_en": "Who is the away team for the game played on December 24, 1977?",
    "question_th": "ทีมเยือนสำหรับเกมที่เล่นเมื่อวันที่ 24 ธันวาคม พ.ศ. 2520 คือใคร?",
    "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_en": "What was the length of the game where the Baltimore Colts were at home?",
    "question_th": "เกมที่บัลติมอร์ โคลท์สอยู่ที่บ้านนานแค่ไหน?",
    "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_en": "What's the number of laps for 16 grids?",
    "question_th": "16กริดวิ่งได้กี่รอบครับ?",
    "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_en": "Who was the rider for laps less than 23 with grid greater than 21 that had a time of +1 lap?",
    "question_th": "ใครคือนักบิดในรอบที่น้อยกว่า 23 โดยมีกริดมากกว่า 21 ที่มีเวลารอบ +1?",
    "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_en": "What's the total grid for someone with a time/retire of +44.831",
    "question_th": "ตารางรวมสำหรับคนที่มีเวลา/เกษียณอายุ +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_en": "What's the smallest grid for Time/Retired of +22.687?",
    "question_th": "ตารางที่เล็กที่สุดสำหรับเวลา/เกษียณที่ +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_en": "What is the recoupa sudaamericana 1996 result of team flamengo, which did not qualify for the copa conmebol 1996?",
    "question_th": "อะไรคือผลการแข่งขัน recoupa sudaamericana 1996 ของทีมฟลาเมงโก ที่ไม่ผ่านเข้ารอบโคปา คอนเมบอล 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_en": "What is the copa libertadores 1996 result of the team with a copa conmebol 1996 result of quarterfinals?",
    "question_th": "ผลการแข่งขันโคปา ลิเบอร์ตาโดเรส 1996 ของทีมกับผลโคปา คอนเมบอล 1996 ในรอบก่อนรองชนะเลิศเป็นอย่างไรบ้าง?",
    "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_en": "What is the copa libertadores 1996 of team corinthians?",
    "question_th": "โคปา ลิเบอร์ตาดอเรส 1996 ของทีมโครินเธียนส์ คืออะไร?",
    "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_en": "What is the copa conmebol 1996 result of the team with a recopa sudamericana 1996 result of champions?",
    "question_th": "ผลการแข่งขันโคปา คอนเมโบล 1996 ของทีมกับแชมป์รีโคปา ซูดาเมริกาน่า 1996 คืออะไร?",
    "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_en": "What is the recoupa sudamericana 1996 of the team with a copa libertadores 1996 result of the round of 16?",
    "question_th": "Recoupa sudamericana 1996 ของทีมกับ Copa Libertadores 1996 ผลการแข่งขันรอบ 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_en": "What is the recoupa sudamericana 1996 result of team corinthians?",
    "question_th": "ผลการแข่งขันรีเคาปา ซูดาเมริกาน่า 1996 ของทีมโครินเธียนส์เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_7 (recopa_sudamericana_1996 VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_90 WHERE margin = \"195 runs\"",
    "question_en": "What season has 195 runs as a margin?",
    "question_th": "ฤดูกาลใดที่มี 195 รันเป็นมาร์จิ้น?",
    "context": "CREATE TABLE table_name_90 (season VARCHAR, margin VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_18 WHERE rank = \"2\"",
    "question_en": "What season has 2 as a rank?",
    "question_th": "ฤดูกาลใดมี 2 อันดับ?",
    "context": "CREATE TABLE table_name_18 (season VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_75 WHERE rank = \"2\"",
    "question_en": "What venue has 2 as the rank?",
    "question_th": "สถานที่ใดมี 2 อันดับ?",
    "context": "CREATE TABLE table_name_75 (venue VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_79 WHERE season = \"2011/12\"",
    "question_en": "What opponent has 2011/12 as the season?",
    "question_th": "คู่แข่งคนใดที่ฤดูกาล 2011/12 เป็นฤดูกาล?",
    "context": "CREATE TABLE table_name_79 (opponent VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT length FROM table_name_3 WHERE year = 2003",
    "question_en": "What is the length of the version from 2003?",
    "question_th": "เวอร์ชันตั้งแต่ปี 2003 มีความยาวเท่าใด",
    "context": "CREATE TABLE table_name_3 (length VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT remixed_by FROM table_name_67 WHERE length = \"4:22\"",
    "question_en": "Who remixed the version with a length of 4:22?",
    "question_th": "ใครรีมิกซ์เวอร์ชั่นความยาว 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_en": "What is the length of the UK remix version?",
    "question_th": "เวอร์ชันรีมิกซ์ของสหราชอาณาจักรมีความยาวเท่าใด",
    "context": "CREATE TABLE table_name_68 (length VARCHAR, version VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_76 WHERE album = \"remixes\"",
    "question_en": "What year was the version with a remixes album?",
    "question_th": "เวอร์ชันที่มีอัลบั้มรีมิกซ์คือเวอร์ชันปีไหน?",
    "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_en": "How many losses did the team, Sturt, have when they had more than 0 wins?",
    "question_th": "ทีมเติร์ตแพ้ไปกี่ครั้งแล้วเมื่อพวกเขาชนะมากกว่า 0 ครั้ง?",
    "context": "CREATE TABLE table_name_85 (losses VARCHAR, team VARCHAR, wins VARCHAR)"
  },
  {
    "answer": "SELECT AVG(draws) FROM table_name_13 WHERE wins > 0",
    "question_en": "What is the average number of draws for the team that had more than 0 wins?",
    "question_th": "จำนวนเสมอเฉลี่ยของทีมที่ชนะมากกว่า 0 คือเท่าไร?",
    "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_en": "What is the least amount of losses for the team that had more than 0 draws during the seasons earlier than 1926?",
    "question_th": "จำนวนการแพ้น้อยที่สุดสำหรับทีมที่เสมอมากกว่า 0 ในช่วงฤดูกาลก่อนปี 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_en": "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?",
    "question_th": "จำนวนชัยชนะสูงสุดของทีม เซ็นทรัล ดิสตริค ที่เสมอน้อยกว่า 0 และเกิดขึ้นในหนึ่งฤดูกาลก่อนปี 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_en": "What is the average number of wins before the season in 1906 where there were 0 draws?",
    "question_th": "ค่าเฉลี่ยของชัยชนะก่อนฤดูกาล 1906 โดยเสมอ 0 ครั้งคือเท่าไหร่?",
    "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_en": "Who is the Opposing Pitcher when Team is phillies, Location is pittsburgh, and Inning is 8th?",
    "question_th": "เหยือกของฝ่ายตรงข้ามคือใครเมื่อทีมคือฟิลลีส์ ตำแหน่งคือพิตส์เบิร์ก และอินนิงอยู่ที่อันดับ 8",
    "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_en": "What is the lowest Game where Inning is 6th, and the Opposing Pitcher is cliff curtis?",
    "question_th": "เกมใดต่ำสุดที่ Inning อยู่อันดับที่ 6 และเหยือกฝ่ายตรงข้ามคือ 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_en": "What is was Date that where Triple was smaller than 26, and Game was 25?",
    "question_th": "อะไรคือวันที่ที่ Triple มีขนาดเล็กกว่า 26 และ Game มีอายุ 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_en": "Which Gold is the lowest one that has a Bronze of 14, and a Total larger than 42?",
    "question_th": "ทองคำใดเป็นทองที่ต่ำที่สุดที่มีทองแดง 14 และผลรวมมากกว่า 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_en": "Which Bronze is the lowest one that has a Nation of total, and a Gold smaller than 14?",
    "question_th": "บรอนซ์ใดเป็นอันที่ต่ำที่สุดที่มีจำนวน Nation ทั้งหมด และ Gold น้อยกว่า 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_en": "How much Total has a Nation of kazakhstan (kaz), and a Gold larger than 0?",
    "question_th": "จำนวน Total มีประเทศคาซัคสถาน (kaz) และทองคำมากกว่า 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_en": "Which Total is the highest one that has a Rank of 1, and a Gold larger than 11?",
    "question_th": "ผลรวมใดคือผลรวมสูงสุดที่มีอันดับ 1 และทองมากกว่า 11",
    "context": "CREATE TABLE table_name_24 (total INTEGER, rank VARCHAR, gold VARCHAR)"
  },
  {
    "answer": "SELECT third FROM table_name_74 WHERE venue = \"oslo\"",
    "question_en": "Who finished 3rd in Oslo?",
    "question_th": "ใครจบอันดับ 3 ในออสโล?",
    "context": "CREATE TABLE table_name_74 (third VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT results¹ FROM table_name_99 WHERE type_of_game = \"friendly\" AND date = \"november 22\"",
    "question_en": "On November 22, what were the results of the friendly type game?",
    "question_th": "วันที่ 22 พ.ย. ผลเกมประเภทกระชับมิตรเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_99 (results¹ VARCHAR, type_of_game VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_82 WHERE date = \"october 8\"",
    "question_en": "On October 8, what city was the game played?",
    "question_th": "วันที่ 8 ต.ค. แข่งที่เมืองอะไร?",
    "context": "CREATE TABLE table_name_82 (city VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_96 WHERE date = \"june 29\"",
    "question_en": "On June 29, who was the opponent?",
    "question_th": "วันที่ 29 มิ.ย. คู่ต่อสู้คือใคร?",
    "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_en": "What date had an opponent of Sweden and a friendly type game?",
    "question_th": "คู่ต่อสู้ของสวีเดนและเกมกระชับมิตรคือวันไหน?",
    "context": "CREATE TABLE table_name_44 (date VARCHAR, type_of_game VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT results¹ FROM table_name_31 WHERE date = \"september 7\"",
    "question_en": "What were the results on September 7?",
    "question_th": "ผลลัพธ์ในวันที่ 7 กันยายนเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_31 (results¹ VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT winning_team FROM table_name_35 WHERE date = \"january 28, 2006\"",
    "question_en": "What is the Winning team on january 28, 2006?",
    "question_th": "ทีมผู้ชนะในวันที่ 28 มกราคม 2549 คืออะไร?",
    "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_en": "Which Series has a Winning team of iowa state and a Sport of w basketball?",
    "question_th": "ซีรีส์ใดมีทีมผู้ชนะจากรัฐไอโอวาและทีม 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_en": "Which Series has a Site of ames on september 10, 2005?",
    "question_th": "ซีรีส์ใดที่มีไซต์ของเอมส์ในวันที่ 10 กันยายน พ.ศ. 2548",
    "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_en": "Which Series has a Site of ames and a Sport of w gymnastics?",
    "question_th": "ซีรีส์ใดที่มีไซต์ของเอมส์และกีฬาของยิมนาสติก?",
    "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_en": "WHich port is on march 17, 2006 and has a Winning team of iowa state?",
    "question_th": "พอร์ตใดอยู่ที่ 17 มีนาคม 2549 และมีทีมที่ชนะของรัฐไอโอวา?",
    "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_en": "Which Site has a Date of march 17, 2006 and an iowa state Winning team?",
    "question_th": "ไซต์ใดมีวันที่ 17 มีนาคม พ.ศ. 2549 และทีมที่ชนะในรัฐไอโอวา",
    "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_en": "Who was the opponent of the game before week 11 on October 31, 1976?",
    "question_th": "คู่ต่อสู้ของเกมก่อนสัปดาห์ที่ 11 วันที่ 31 ตุลาคม พ.ศ. 2519 คือใคร?",
    "context": "CREATE TABLE table_name_97 (opponent VARCHAR, week VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(attendance) FROM table_name_68 WHERE week = 9",
    "question_en": "What is the highest attendance of the game on week 9?",
    "question_th": "ผู้เข้าร่วมเกมสูงสุดในสัปดาห์ที่ 9 คืออะไร?",
    "context": "CREATE TABLE table_name_68 (attendance INTEGER, week VARCHAR)"
  },
  {
    "answer": "SELECT last_air_date FROM table_name_2 WHERE season = 3",
    "question_en": "When is the last episode air date for season 3?",
    "question_th": "ซีซั่น 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_en": "Which season had its last episode air on March 11, 2001?",
    "question_th": "ซีซั่นใดมีตอนสุดท้ายออกอากาศในวันที่ 11 มีนาคม พ.ศ. 2544?",
    "context": "CREATE TABLE table_name_43 (season VARCHAR, last_air_date VARCHAR)"
  },
  {
    "answer": "SELECT AVG(games) FROM table_name_22 WHERE drawn > 1",
    "question_en": "What games have more than 1 draw?",
    "question_th": "เกมใดบ้างที่มีการเสมอกันมากกว่า 1 ครั้ง?",
    "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_en": "What game is the lowest with 1 draw and less than 7 points?",
    "question_th": "เกมไหนต่ำสุดเสมอ 1 นัด น้อยกว่า 7 แต้ม?",
    "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_en": "Manager of art griggs had what lowest year?",
    "question_th": "ผู้จัดการฝ่ายศิลป์ Griggs มีปีต่ำสุดเท่าไร?",
    "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_en": "Manager of spencer abbott, and a Year of 1919 involves what playoffs?",
    "question_th": "ผู้จัดการทีมสเปนเซอร์ แอบบอตต์ และปี 1919 เกี่ยวข้องกับรอบตัดเชือกอะไรบ้าง?",
    "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_en": "Manager of marty berghammer / nick allen is what year?",
    "question_th": "ผู้จัดการทีม มาร์ตี้ เบิร์กแฮมเมอร์ / นิค อัลเลน ปีอะไร?",
    "context": "CREATE TABLE table_name_91 (year VARCHAR, manager VARCHAR)"
  },
  {
    "answer": "SELECT league FROM table_name_59 WHERE manager = \"lyman lamb / marty berghammer\"",
    "question_en": "Manager of lyman lamb / marty berghammer is in what league?",
    "question_th": "ผู้จัดการทีมไลแมน แลมบ์ / มาร์ตี้ เบิร์กแฮมเมอร์ อยู่ลีกไหนครับ?",
    "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_en": "Manager of marty berghammer, and a Finish of 1st involved what lowest year?",
    "question_th": "ผู้จัดการของ marty berghammer และการจบอันดับที่ 1 เกี่ยวข้องกับปีต่ำสุดปีใด",
    "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_en": "Playoffs of league champs, and a Record of 77-63 is in what league?",
    "question_th": "รอบเพลย์ออฟแชมป์ลีก และสถิติ 77-63 อยู่ลีกไหน?",
    "context": "CREATE TABLE table_name_63 (league VARCHAR, playoffs VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT 2005 FROM table_name_16 WHERE 2007 = \"sf\"",
    "question_en": "Name the 2005 with 2007 of sf",
    "question_th": "ตั้งชื่อปี 2005 ด้วย 2007 ของ sf",
    "context": "CREATE TABLE table_name_16 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2006 FROM table_name_22 WHERE 2008 = \"1r\" AND 2004 = \"1r\"",
    "question_en": "Name the 2006 with 2008 of 1r and 2004 of 1r",
    "question_th": "ตั้งชื่อปี 2549 ด้วยปี 2551 ของ 1r และ 2004 ของ 1r",
    "context": "CREATE TABLE table_name_22 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_9 WHERE 2002 = \"1r\" AND 2009 = \"a\"",
    "question_en": "Name the 2011 with 2002 of 1r and 2009 of a",
    "question_th": "ตั้งชื่อปี 2011 ด้วย 2002 ของ 1r และ 2009 ของ a",
    "context": "CREATE TABLE table_name_9 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1999 FROM table_name_3 WHERE 2011 = \"2r\"",
    "question_en": "Name the 1999 with 2011 of 2r",
    "question_th": "ตั้งชื่อปี 1999 ด้วย 2011 จาก 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_en": "Name the 2008 with 1998 of a and 2002 of 1r with 2004 of 2r",
    "question_th": "ตั้งชื่อปี 2008 ด้วย 1998 ของ a และ 2002 ของ 1r ด้วย 2004 ของ 2r",
    "context": "CREATE TABLE table_name_88 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2001 FROM table_name_2 WHERE 2007 = \"sf\"",
    "question_en": "Name the 2001 with 2007 of sf",
    "question_th": "ตั้งชื่อปี 2544 ด้วยปี 2550 เป็น 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_en": "Which school year was the Class AAA dalhart and the class AAAAA edinburg?",
    "question_th": "Class AAA Dalhart และ 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_en": "For what Class A is the school year 1987-88?",
    "question_th": "ปีการศึกษา 1987-88 เป็นคลาส A ใด?",
    "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_en": "What is the Class AAAAA when the Class AAA is Gonzales?",
    "question_th": "Class AAAAA คืออะไรเมื่อ Class AAA คือ 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_en": "Which team scored less than 35 points?",
    "question_th": "ทีมใดทำคะแนนได้น้อยกว่า 35 คะแนน?",
    "context": "CREATE TABLE table_name_78 (team VARCHAR, points INTEGER)"
  },
  {
    "answer": "SELECT AVG(position) FROM table_name_80 WHERE team = \"criciúma\" AND drawn > 8",
    "question_en": "Which Position has a Team of criciúma, and a Drawn larger than 8?",
    "question_th": "ตำแหน่งใดที่มีทีมcriciúma และจั่วได้มากกว่า 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_en": "Which Drawn has Points smaller than 46, and a Position smaller than 20, and a Lost smaller than 19, and an Against of 56?",
    "question_th": "การเสมอใดมีแต้มน้อยกว่า 46 และตำแหน่งน้อยกว่า 20 และแพ้น้อยกว่า 19 และต่อ 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_en": "Which Played has a Lost larger than 14, and a Drawn of 10, and Points larger than 46?",
    "question_th": "การเล่นใดที่แพ้มากกว่า 14 และเสมอ 10 และแต้มมากกว่า 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_en": "What score has devin brown (24) as the leading scorer?",
    "question_th": "เดวิน บราวน์ (24) เป็นผู้ทำประตูนำได้คะแนนเท่าใด",
    "context": "CREATE TABLE table_name_36 (score VARCHAR, leading_scorer VARCHAR)"
  },
  {
    "answer": "SELECT height_ft___m__ FROM table_name_93 WHERE floors = 36",
    "question_en": "Which height, in meters, has 36 floors?",
    "question_th": "สูงกี่เมตรมี 36 ชั้น?",
    "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_en": "Which Floors is the highest one that has a Name of one indiana square?",
    "question_th": "ชั้นไหนสูงที่สุดที่มีชื่อเดียวกับจัตุรัสอินเดียน่าหนึ่งแห่ง?",
    "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_en": "How tall is the Street address of 07.0 200 east washington street?",
    "question_th": "ที่อยู่ของถนน 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_en": "What was the date of the game where the indians record was 37-44?",
    "question_th": "วันที่ของเกมที่อินเดียนแดงบันทึกคือ 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_en": "What city is Garfield County Museum located in?",
    "question_th": "พิพิธภัณฑ์การ์ฟิลด์เคาน์ตีตั้งอยู่ในเมืองใด",
    "context": "CREATE TABLE table_name_39 (town_city VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_52 WHERE town_city = \"rudyard\"",
    "question_en": "What is the museum name located in Rudyard?",
    "question_th": "พิพิธภัณฑ์ที่ตั้งอยู่ในรัดยาร์ดชื่ออะไร",
    "context": "CREATE TABLE table_name_52 (name VARCHAR, town_city VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_name_43 WHERE name = \"blaine county museum\"",
    "question_en": "What is the region that the Blaine County Museum is located in?",
    "question_th": "พิพิธภัณฑ์ Blaine County ตั้งอยู่ในภูมิภาคใด",
    "context": "CREATE TABLE table_name_43 (region VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_13 WHERE score = \"6–3, 2–6, 6–3\"",
    "question_en": "What Tournament had a Score of 6–3, 2–6, 6–3?",
    "question_th": "ทัวร์นาเมนต์ใดมีคะแนน 6–3, 2–6, 6–3",
    "context": "CREATE TABLE table_name_13 (tournament VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT partner FROM table_name_31 WHERE score = \"6–3, 2–6, 6–3\"",
    "question_en": "What Partner had a Score of 6–3, 2–6, 6–3?",
    "question_th": "พันธมิตรคนใดมีคะแนน 6–3, 2–6, 6–3",
    "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_en": "Who were the Opponents in the match on a Hard Surface with Catherine Suire as Partner and Outcome of runner-up?",
    "question_th": "ใครคือฝ่ายตรงข้ามในการแข่งขันบนพื้นแข็งที่มี Catherine Suire เป็นคู่หูและผลลัพธ์ของรองชนะเลิศ?",
    "context": "CREATE TABLE table_name_6 (opponents VARCHAR, partner VARCHAR, outcome VARCHAR, surface VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_4 WHERE record = \"6–12–5–1\"",
    "question_en": "Who was the visiting team when the record was 6–12–5–1?",
    "question_th": "ใครคือทีมเยือนเมื่อทำสถิติ 6–12–5–1?",
    "context": "CREATE TABLE table_name_4 (visitor VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_56 WHERE record = \"21–45–8–5\"",
    "question_en": "Who was the home team when the record was 21–45–8–5?",
    "question_th": "เจ้าบ้านคือใครเมื่อทำสถิติ 21–45–8–5?",
    "context": "CREATE TABLE table_name_56 (home VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT attribute FROM table_name_15 WHERE cancelable = \"yes\" AND bubbles = \"yes\"",
    "question_en": "Which of the attributes has is cancelable and an answer of yes for bubbles?",
    "question_th": "คุณลักษณะใดที่ยกเลิกได้ และคำตอบว่าใช่สำหรับบับเบิล",
    "context": "CREATE TABLE table_name_15 (attribute VARCHAR, cancelable VARCHAR, bubbles VARCHAR)"
  },
  {
    "answer": "SELECT bubbles FROM table_name_87 WHERE attribute = \"onlostpointercapture\"",
    "question_en": "Which bubbles has an atribute of onlostpointercapture?",
    "question_th": "ฟองใดมีคุณสมบัติของ onlostpointercapture",
    "context": "CREATE TABLE table_name_87 (bubbles VARCHAR, attribute VARCHAR)"
  },
  {
    "answer": "SELECT cancelable FROM table_name_75 WHERE attribute = \"onpointerout\"",
    "question_en": "For the attribute of onpointerout, what is the cancelable?",
    "question_th": "สำหรับคุณสมบัติของ onpointerout สิ่งที่ยกเลิกได้คืออะไร?",
    "context": "CREATE TABLE table_name_75 (cancelable VARCHAR, attribute VARCHAR)"
  },
  {
    "answer": "SELECT bubbles FROM table_name_58 WHERE cancelable = \"yes\" AND attribute = \"onpointerdown\"",
    "question_en": "Which bubble have a cancelable of yes and an attribute of onpointerdown?",
    "question_th": "ฟองใดที่สามารถยกเลิกได้ใช่และมีแอตทริบิวต์ 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_en": "What's the highest grid of Ronnie Bremer, who had more than 18 points?",
    "question_th": "รอนนี่ เบรเมอร์ ตารางคะแนนสูงสุดที่มากกว่า 18 แต้มอยู่ไหน?",
    "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_en": "What are the most points Lap 70 had with a grid larger than 16?",
    "question_th": "อะไรคือคะแนนมากที่สุดในรอบ 70 โดยมีกริดมากกว่า 16?",
    "context": "CREATE TABLE table_name_71 (points INTEGER, laps VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT track FROM table_name_2 WHERE city = \"holland\"",
    "question_en": "What is the name of the track in Holland?",
    "question_th": "เพลงที่ฮอลแลนด์ชื่ออะไรคะ?",
    "context": "CREATE TABLE table_name_2 (track VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT track FROM table_name_83 WHERE state = \"washington\"",
    "question_en": "What is the track in Washington state?",
    "question_th": "เส้นทางในรัฐวอชิงตันคืออะไร?",
    "context": "CREATE TABLE table_name_83 (track VARCHAR, state VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_89 WHERE track = \"manzanita speedway\"",
    "question_en": "What is the city the track of manzanita speedway is in?",
    "question_th": "สนามแข่งรถ Manzanita Speedway ตั้งอยู่ในเมืองใด?",
    "context": "CREATE TABLE table_name_89 (city VARCHAR, track VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_2 WHERE track = \"indianapolis speedrome\"",
    "question_en": "What is the surface of the track at the indianapolis speedrome?",
    "question_th": "พื้นผิวของสนามแข่งที่ Indianapolis Speedrome เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_2 (surface VARCHAR, track VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_84 WHERE track = \"riverhead raceway\"",
    "question_en": "What is the surface for the riverhead raceway?",
    "question_th": "พื้นผิวของสนามแข่งริเวอร์เฮดเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_84 (surface VARCHAR, track VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_21 WHERE track = \"indianapolis speedrome\"",
    "question_en": "What city is the indianapolis speedrome in?",
    "question_th": "Indianapolis Speedrome ตั้งอยู่ในเมืองใด",
    "context": "CREATE TABLE table_name_21 (city VARCHAR, track VARCHAR)"
  },
  {
    "answer": "SELECT iupac_name FROM table_name_44 WHERE common_name = \"chloroform\"",
    "question_en": "What is the IUPAC name for chloroform?",
    "question_th": "ชื่อ IUPAC ของคลอโรฟอร์มคืออะไร?",
    "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_en": "What is the SZDSZ percentage with an MSZP of 25% on 25/2/2009?",
    "question_th": "เปอร์เซ็นต์ SZDSZ ที่มี MSZP 25% เมื่อวันที่ 25/2/2552 เป็นเท่าใด",
    "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_en": "What percentage of others have an SZDSZ of 4% and a Fidesz of 60%?",
    "question_th": "เปอร์เซ็นต์ของคนอื่นมี SZDSZ 4% และ Fidesz 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_en": "What is the percentage of others with a Fidesz of 62% and a Jobbik of 4%?",
    "question_th": "เปอร์เซ็นต์ของคนอื่นที่มี Fidesz 62% และ Jobbik 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_en": "On what date do others have 5% with an SZDSZ of 5%?",
    "question_th": "คนอื่นมี 5% โดยมี SZDSZ 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_en": "What is the SZDSZ percentage with a Jobbik of 5% and a Fidesz of 68%?",
    "question_th": "เปอร์เซ็นต์ SZDSZ โดยมี Jobbik 5% และ Fidesz 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_en": "What is the Jobbik percentage with a Fidesz of 61% and others of 2%?",
    "question_th": "เปอร์เซ็นต์ Jobbik ที่มี Fidesz 61% และอื่นๆ 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_en": "What's listed for the Turnout % with a Ngilu of 3,429?",
    "question_th": "สิ่งที่ระบุไว้สำหรับ % ผลิตภัณฑ์ที่มี Ngilu เท่ากับ 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_en": "What's listed for the Turnout % with a Raila of 519,180?",
    "question_th": "สิ่งที่ระบุไว้สำหรับ % ผลิตภัณฑ์ที่มี Raila 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_en": "What's listed for the Turnout % with a Ngilu of 30,535?",
    "question_th": "สิ่งที่ระบุไว้สำหรับ % ผลิตภัณฑ์ที่มี Ngilu อยู่ที่ 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_en": "What's listed for the Registered Voters with a Ngilu of 3,429?",
    "question_th": "มีอะไรอยู่ในรายการสำหรับผู้ลงคะแนนที่ลงทะเบียนด้วย Ngilu จำนวน 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_en": "What is listed for the Province with a Wamalwa of 4,431?",
    "question_th": "จังหวัดใดที่มีวามัลวา 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_en": "What's listed for the Wamalwa that has a Turnout % of 55.9%?",
    "question_th": "รายการ Wamalwa ที่มี % ผลิตภัณฑ์ 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_en": "What were the average partial failures when the rocket was Ariane 5?",
    "question_th": "ความล้มเหลวบางส่วนโดยเฉลี่ยเมื่อจรวดคือ 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_en": "What are average launches with 0 failures, rocket of Soyuz, and less than 12 successes?",
    "question_th": "การปล่อยจรวดโดยเฉลี่ยโดยมีความล้มเหลว 0 ครั้ง จรวดของโซยุซ และความสำเร็จน้อยกว่า 12 ครั้งคืออะไร",
    "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_en": "What is the sum of launches with Long March 3 and 0 failures?",
    "question_th": "ผลรวมของการเปิดตัวที่ล้มเหลวใน Long March 3 และ 0 เป็นเท่าใด",
    "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_en": "What is the least amount of failures with 1 launch and 0 partial failures?",
    "question_th": "จำนวนความล้มเหลวน้อยที่สุดด้วยการเปิดตัว 1 ครั้งและความล้มเหลวบางส่วน 0 ครั้งคือเท่าใด",
    "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_en": "What were the average launches for Ariane 5 and 0 partial failures?",
    "question_th": "การเปิดตัวโดยเฉลี่ยสำหรับความล้มเหลวบางส่วน Ariane 5 และ 0 เป็นเท่าใด",
    "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_en": "What was the race of the jockey in na group in 4th place?",
    "question_th": "จ๊อกกี้ในกลุ่มนาอันดับที่ 4 แข่งเป็นอย่างไรบ้าง?",
    "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_en": "How far did p. carbery run to get 2nd?",
    "question_th": "พี.ไปไกลแค่ไหน.. คาร์เบอรี่วิ่งเพื่อได้ที่ 2?",
    "context": "CREATE TABLE table_name_67 (distance VARCHAR, jockey VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT transmission FROM table_name_32 WHERE trim = \"xe (2009)\"",
    "question_en": "What is the Removal that has a Trim of xe (2009)?",
    "question_th": "การลบที่มี 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_en": "What is the Torque that has a Power of hp (kw), and a Trim of xr (2009)? Question 6",
    "question_th": "แรงบิดที่มีกำลังเป็น hp (kw) และ Trim เป็น xr (2009) คืออะไร? คำถามที่ 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_en": "Which Round is the lowest one that has a College/Junior/Club Team (League) of oshawa generals (oha), and a Player of bob kelly?",
    "question_th": "รอบใดคือรอบที่ต่ำที่สุดที่มีทีมวิทยาลัย/จูเนียร์/คลับ (ลีก) ของ oshawa Generals (oha) และผู้เล่นของ 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_en": "What surface was used when she played with Remi Tezuka?",
    "question_th": "เธอใช้พื้นผิวอะไรเมื่อเธอเล่นกับเรมิ เทะซึกะ?",
    "context": "CREATE TABLE table_name_76 (surface VARCHAR, partner VARCHAR)"
  },
  {
    "answer": "SELECT results FROM table_name_94 WHERE record = \"28-12\"",
    "question_en": "What Results has the Record of 28-12?",
    "question_th": "ผลลัพธ์ใดมีสถิติ 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_en": "What Results has a Seed #12 and a Year that's smaller than 1996",
    "question_th": "ผลลัพธ์อะไรมี Seed #12 และปีที่น้อยกว่าปี 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_en": "What's the highest Year with the Record of 18-12?",
    "question_th": "ปีสูงสุดที่มีสถิติ 18-12 คือปีไหน?",
    "context": "CREATE TABLE table_name_23 (year INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT MAX(year) FROM table_name_11 WHERE region = \"southeast\"",
    "question_en": "What's the highest Year with the Region of Southeast?",
    "question_th": "ปีใดสูงสุดในภูมิภาคตะวันออกเฉียงใต้?",
    "context": "CREATE TABLE table_name_11 (year INTEGER, region VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_11 WHERE year > 2012",
    "question_en": "What Record has a Year that's larger than 2012?",
    "question_th": "บันทึกใดมีปีที่ใหญ่กว่าปี 2012?",
    "context": "CREATE TABLE table_name_11 (record VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT record FROM table_name_84 WHERE opponent = \"kansas city kings\"",
    "question_en": "What is the Laker's record when they played against Kansas City Kings?",
    "question_th": "สถิติของ Laker เมื่อพวกเขาเล่นกับ Kansas City Kings คืออะไร?",
    "context": "CREATE TABLE table_name_84 (record VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT pronunciation_a FROM table_name_83 WHERE word = \"傳\"",
    "question_en": "Name the pronunciation for 傳",
    "question_th": "ตั้งชื่อการออกเสียงของ 傳",
    "context": "CREATE TABLE table_name_83 (pronunciation_a VARCHAR, word VARCHAR)"
  },
  {
    "answer": "SELECT pronunciation_a FROM table_name_85 WHERE meaning_a = \"king\"",
    "question_en": "Name the pronunciation for meaning of king",
    "question_th": "ตั้งชื่อการออกเสียงตามความหมายของกษัตริย์",
    "context": "CREATE TABLE table_name_85 (pronunciation_a VARCHAR, meaning_a VARCHAR)"
  },
  {
    "answer": "SELECT word FROM table_name_55 WHERE pronunciation_b = \"*sɨks\"",
    "question_en": "Name the word with pronunciation b of *sɨks",
    "question_th": "ตั้งชื่อคำที่มีการออกเสียง b ของ *sɨks",
    "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_en": "Name the pronunciation for meaning b of border, frontier",
    "question_th": "ตั้งชื่อการออกเสียงตามความหมาย b ของ 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_en": "Name the pronunciation b for meaning of grind",
    "question_th": "ตั้งชื่อการออกเสียง b เพื่อความหมายของคำว่า grind",
    "context": "CREATE TABLE table_name_56 (pronunciation_b VARCHAR, meaning_a VARCHAR)"
  },
  {
    "answer": "SELECT 2008 FROM table_name_87 WHERE 2006 = \"2nd\"",
    "question_en": "What is the 2008 value that was 2nd in 2006?",
    "question_th": "มูลค่าปี 2551 ที่เป็นอันดับที่ 2 ในปี 2549 คืออะไร?",
    "context": "CREATE TABLE table_name_87 (Id VARCHAR)"
  },
  {
    "answer": "SELECT AVG(total) FROM table_name_8 WHERE 2010 = \"1st\"",
    "question_en": "What is the average total that is 1st in 2010?",
    "question_th": "ยอดรวมเฉลี่ยที่ 1 ในปี 2010 คือเท่าใด",
    "context": "CREATE TABLE table_name_8 (total INTEGER)"
  },
  {
    "answer": "SELECT 2008 FROM table_name_94 WHERE 2010 = \"7\"",
    "question_en": "What is the 2008 value with a 7 in 2010?",
    "question_th": "ค่า 2008 กับ 7 ในปี 2010 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_94 (Id VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_12 WHERE name = \"woodburn dragstrip\"",
    "question_en": "What is the Location for the woodburn dragstrip?",
    "question_th": "ที่ตั้งของทางลากไม้คือที่ไหน?",
    "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_en": "What State has an Opened (closing date if defunct) that shows 1960?",
    "question_th": "รัฐใดมีวันเปิด (วันปิดหากหมดอายุ) ที่แสดงปี 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_en": "What is the Location for the route 66 raceway?",
    "question_th": "ที่ตั้งของสนามแข่งรถรูท 66 อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_70 (location VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_6 WHERE name = \"newington international airport\"",
    "question_en": "What is the Location for the newington international airport?",
    "question_th": "ที่ตั้งของสนามบินนานาชาตินิววิงตันอยู่ที่ไหน?",
    "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_en": "What is the Name with an Opened (closing date if defunct) of 1995 and has a Length of miles (m), in Illinois?",
    "question_th": "ชื่อที่มีวันเปิด (วันปิดหากหมดอายุ) ปี 1995 และมีความยาวไมล์ (ม.) ในรัฐอิลลินอยส์คืออะไร",
    "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_en": "What is the Score with an Opponent that is amanda brown brenda remilton?",
    "question_th": "คะแนนของฝ่ายตรงข้ามคือ อแมนดา บราวน์ เบรนด้า เรมิลตัน เป็นเท่าใด",
    "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_en": "What is the Score with an Outcome of runner-up, and a Partner that is elizabeth little?",
    "question_th": "คะแนนที่มีผลงานรองชนะเลิศและพันธมิตรที่อลิซาเบธน้อยคืออะไร?",
    "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_en": "Who was the pitcher on June 8, 1961?",
    "question_th": "ใครคือเหยือกเมื่อวันที่ 8 มิถุนายน พ.ศ. 2504?",
    "context": "CREATE TABLE table_name_88 (pitcher VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_54 WHERE inn = \"9th\"",
    "question_en": "What team had the record asscoiated with the 9th inning?",
    "question_th": "ทีมใดมีสถิติเชื่อมโยงกับอินนิงที่ 9?",
    "context": "CREATE TABLE table_name_54 (team VARCHAR, inn VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_49 WHERE team = \"boston red sox\"",
    "question_en": "In what venue did the Boston Red Sox play in?",
    "question_th": "Boston Red Sox เล่นในสถานที่ใด?",
    "context": "CREATE TABLE table_name_49 (venue VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT pitcher FROM table_name_55 WHERE inn = \"7th\"",
    "question_en": "Who was the pitcher with the record recorded in the 7th inning?",
    "question_th": "ใครคือผู้ขว้างที่มีสถิติบันทึกไว้ในโอกาสที่ 7?",
    "context": "CREATE TABLE table_name_55 (pitcher VARCHAR, inn VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_8 WHERE incumbent = \"david e. finley\"",
    "question_en": "When David E. Finley was the incumbent what was the result?",
    "question_th": "เมื่อเดวิด อี. ฟินลีย์ดำรงตำแหน่งหน้าที่ ผลลัพธ์เป็นอย่างไร",
    "context": "CREATE TABLE table_name_8 (result VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_53 WHERE first_elected = \"1898\"",
    "question_en": "When someone was first elected in 1898 what was the result?",
    "question_th": "เมื่อมีคนได้รับเลือกครั้งแรกในปี พ.ศ. 2441 ผลลัพธ์เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_53 (result VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_name_86 WHERE incumbent = \"stanyarne wilson\"",
    "question_en": "What party has an incumbent of Stanyarne Wilson?",
    "question_th": "ฝ่ายใดเป็นผู้ดำรงตำแหน่งของ Stanyarne Wilson",
    "context": "CREATE TABLE table_name_86 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_75 WHERE incumbent = \"william elliott\"",
    "question_en": "When the incumbent was William Elliott, what was the result?",
    "question_th": "เมื่อผู้ดำรงตำแหน่งคือ วิลเลียม เอลเลียต ผลลัพธ์เป็นอย่างไร?",
    "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_en": "Score of 2-1, and a Competition of pl, and a Date of december 22, 2006 had what opponents?",
    "question_th": "คะแนน 2-1 และการแข่งขัน pl และวันที่ 22 ธันวาคม 2549 มีคู่แข่งคนไหน?",
    "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_en": "Date of april 3, 2007 had what score?",
    "question_th": "วันที่ 3 เมษายน 2550 ได้คะแนนเท่าไร?",
    "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_en": "Competition of pl, and a Score of 1-1, and a Opponents of kelantan had what date?",
    "question_th": "การแข่งขันของ pl และสกอร์ 1-1 และฝ่ายตรงข้ามของกลันตันมีนัดวันไหน?",
    "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_en": "Venue of klfa stadium, cheras, and a Score of 3-3 had what competition?",
    "question_th": "สนาม KLFA Stadium, Cheras และสกอร์ 3-3 มีการแข่งขันอะไร?",
    "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_en": "Opponents of police, and a Venue of selayang municipal council stadium had what date?",
    "question_th": "ฝ่ายตรงข้ามตำรวจ และสถานที่สนามกีฬาเทศบาลเสลายัง มีกำหนดวันใด?",
    "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_en": "Competition of fa cup rd 1 had what venue?",
    "question_th": "การแข่งขันเอฟเอคัพ ครั้งที่ 1 จัดขึ้นที่ใด?",
    "context": "CREATE TABLE table_name_69 (venue VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_24 WHERE date = \"january 27\"",
    "question_en": "Who was the visiting team on January 27?",
    "question_th": "ทีมเยือนวันที่ 27 มกราคม คือใคร?",
    "context": "CREATE TABLE table_name_24 (visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_43 WHERE date = \"february 25\"",
    "question_en": "What is the home team that played on February 25?",
    "question_th": "เจ้าบ้านที่เล่นวันที่ 25 กุมภาพันธ์คือทีมอะไร?",
    "context": "CREATE TABLE table_name_43 (home VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_64 WHERE visitor = \"chicago\"",
    "question_en": "Name the date with chicago visiting",
    "question_th": "ตั้งชื่อวันที่ไปเยือนชิคาโก",
    "context": "CREATE TABLE table_name_64 (date VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_76 WHERE visitor = \"chicago\"",
    "question_en": "Name the home with chicago visiting",
    "question_th": "ตั้งชื่อบ้านที่มีการมาเยือนชิคาโก",
    "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_en": "What is the highest number of apps of the player with more than 63 goals and an avge of 0.45?",
    "question_th": "จำนวนแอปสูงสุดของผู้เล่นที่ทำได้มากกว่า 63 ประตูและเฉลี่ย 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_en": "What is the total avge of John Hall, who has less than 63 goals?",
    "question_th": "ค่าเฉลี่ยรวมของ จอห์น ฮอลล์ ที่ทำได้น้อยกว่า 63 ประตูคือเท่าไร?",
    "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_en": "When did Kim Thompson win with 278 score?",
    "question_th": "คิม ทอมป์สัน ชนะด้วยสกอร์ 278 เมื่อใด",
    "context": "CREATE TABLE table_name_87 (year INTEGER, score VARCHAR, champion VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_26 WHERE champion = \"steve gotsche\"",
    "question_en": "Where did Steve Gotsche win?",
    "question_th": "Steve Gotsche ชนะที่ไหน?",
    "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_en": "What is the sum of Rank with a build year earlier than 2007 for the howard johnson hotel bucharest?",
    "question_th": "ผลรวมของอันดับกับปีที่สร้างก่อนหน้าปี 2550 สำหรับโรงแรมฮาวเวิร์ด จอห์นสัน บูคาเรสต์เป็นเท่าใด",
    "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_en": "What is the Height (m/ft) for bucharest Built in 2009, and a Rank of 13?",
    "question_th": "ความสูง (ม./ฟุต) สำหรับบูคาเรสต์ที่สร้างขึ้นในปี 2009 คืออะไร และอันดับ 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_en": "What city is the bucharest tower center (btc) located in?",
    "question_th": "บูคาเรสต์ทาวเวอร์เซ็นเตอร์ (btc) ตั้งอยู่ในเมืองใด",
    "context": "CREATE TABLE table_name_47 (city VARCHAR, building VARCHAR)"
  },
  {
    "answer": "SELECT building FROM table_name_90 WHERE city = \"bucharest\" AND rank < 12",
    "question_en": "What is the name of the building in Bucharest with a rank of less than 12?",
    "question_th": "อาคารในบูคาเรสต์ที่มีอันดับต่ำกว่า 12 ชื่ออะไร?",
    "context": "CREATE TABLE table_name_90 (building VARCHAR, city VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_93 WHERE built = 1988",
    "question_en": "What city was the building built in 1988?",
    "question_th": "อาคารนี้สร้างขึ้นในปี 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_en": "What is the score of the Boston Bruins game from April 11?",
    "question_th": "สกอร์เกม บอสตัน บรูอินส์ วันที่ 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_en": "What is the record of the Hartford Whalers home team with the April 13 game date?",
    "question_th": "สถิติของเจ้าบ้าน ฮาร์ทฟอร์ด เวลเลอร์ส กับเกมวันที่ 13 เมษายน เป็นอย่างไรบ้าง?",
    "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_en": "What is the score of the visiting Hartford Whalers game from April 11?",
    "question_th": "เกมเยือน ฮาร์ทฟอร์ด เวลเลอร์ส ตั้งแต่วันที่ 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_en": "Which Passengers have Carriers of air canada?",
    "question_th": "ผู้โดยสารรายใดบ้างที่มีสายการบินของแคนาดา",
    "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_en": "Which Metropolitan area has an Airport of toronto pearson international airport?",
    "question_th": "พื้นที่มหานครใดมีสนามบินของสนามบินนานาชาติโตรอนโตเพียร์สัน",
    "context": "CREATE TABLE table_name_94 (metropolitan_area VARCHAR, airport VARCHAR)"
  },
  {
    "answer": "SELECT link FROM table_name_64 WHERE date_of_polling = \"january 31 – february 3, 2011\"",
    "question_en": "What is the link for january 31 – february 3, 2011?",
    "question_th": "ลิงค์สำหรับวันที่ 31 มกราคม – 3 กุมภาพันธ์ 2554 คืออะไร?",
    "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_en": "On what date of polling was the Polling Firm forum research with 7 green and less than 30 liberals?",
    "question_th": "การสำรวจในฟอรัม Polling Firm มีผู้ลงคะแนนเสียงสีเขียว 7 คนและพรรคเสรีนิยมน้อยกว่า 30 คนในวันใด",
    "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–28, 2011\"",
    "question_en": "Which september 26–28, 2011 polling firm had a Link of html, less than 36 liberals,  and less than 8 green?",
    "question_th": "สำนักงานสำรวจความคิดเห็นแห่งใดในวันที่ 26-28 กันยายน 2554 มีลิงก์เป็น html มีพรรคเสรีนิยมน้อยกว่า 36 แห่ง และสีเขียวน้อยกว่า 8 แห่ง",
    "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–22, 2011\"",
    "question_en": "What june 21–22, 2011 polling has green smaller than 13?",
    "question_th": "การเลือกตั้งในวันที่ 21–22 มิถุนายน 2554 มีสีเขียวน้อยกว่า 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_en": "What is listed under the Years as tallest, that has Floors of 31?",
    "question_th": "สิ่งใดที่ระบุไว้ภายใต้ปีที่สูงที่สุดและมีชั้น 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_en": "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?",
    "question_th": "อะไรคือพื้นต่ำสุดที่มีเท้าซึ่งใหญ่กว่า htan 262 มีชื่ออาคารธนาคารมาตรฐาน และเมตรที่ใหญ่กว่า 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_en": "What is the sum of Metres wiht a Feet that's smaller than 196?",
    "question_th": "ผลรวมของเมตรที่มีฟุตที่เล็กกว่า 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_en": "What is the highest weight of the position scrum half?",
    "question_th": "Position Scrum Half มีน้ำหนักสูงสุดเท่าไร?",
    "context": "CREATE TABLE table_name_24 (weight__kg_ INTEGER, position VARCHAR)"
  },
  {
    "answer": "SELECT power FROM table_name_15 WHERE torque = \"n·m (lb·ft) at1,500rpm\"",
    "question_en": "What is the power of the engine with a torque of n·m (lb·ft) at1,500rpm?",
    "question_th": "กำลังของเครื่องยนต์ที่มีแรงบิด n·m (lb·ft) ที่ 1,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_en": "Which torque value is associated with the 1.3 16V multijet engine?",
    "question_th": "ค่าแรงบิดใดที่เกี่ยวข้องกับเครื่องยนต์มัลติเจ็ท 1.3 16V",
    "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_en": "What is the lowest against value with less than 2 draws, 10 points, and less than 4 lost?",
    "question_th": "ค่าต่ำสุดเทียบกับแต้มน้อยกว่า 2 เสมอ 10 แต้ม และแพ้น้อยกว่า 4 คืออะไร?",
    "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_en": "What is the average position with an against value less than 11?",
    "question_th": "ตำแหน่งเฉลี่ยที่มีค่าต่อน้อยกว่า 11 คืออะไร?",
    "context": "CREATE TABLE table_name_76 (position INTEGER, against INTEGER)"
  },
  {
    "answer": "SELECT MAX(lost) FROM table_name_89 WHERE position > 10",
    "question_en": "What is the largest value for lost with a position greater than 10?",
    "question_th": "มูลค่าที่ใหญ่ที่สุดของการขาดทุนโดยมีสถานะมากกว่า 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_en": "What is the total of all against values for the Corinthians with less than 3 lost?",
    "question_th": "ผลรวมทั้งหมดเทียบกับค่านิยมของชาวโครินเธียนส์ที่เสียไปน้อยกว่า 3 เป็นเท่าใด",
    "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_en": "What is the lowest against value with less than 9 points and more than 6 lost?",
    "question_th": "ค่าต่ำสุดเทียบกับค่าที่น้อยกว่า 9 แต้มและเสียมากกว่า 6 คืออะไร?",
    "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_en": "What tournament located is mississippi was nov 5",
    "question_th": "ทัวร์นาเมนต์ใดที่มิสซิสซิปปี้คือวันที่ 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_en": "what is the 1st prize for may 21",
    "question_th": "รางวัลที่ 1 ประจำวันที่ 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_en": "Who is the director of the game with HIroshi Sato as the producer on the GBA platform?",
    "question_th": "ใครคือผู้กำกับเกมโดยมี HIroshi Sato เป็นโปรดิวเซอร์บนแพลตฟอร์ม GBA",
    "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_en": "Who is the director of Last Window: The Secret of Cape West 3?",
    "question_th": "ใครเป็นผู้กำกับ 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_en": "What is the platform of the 2010 game with Shuichiro Nishiya as director?",
    "question_th": "แพลตฟอร์มของเกมปี 2010 ที่มี Shuichiro Nishiya เป็นผู้กำกับคืออะไร?",
    "context": "CREATE TABLE table_name_5 (platform_s_ VARCHAR, year VARCHAR, director VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_66 WHERE october = 29",
    "question_en": "Which Opponent is on October of 29?",
    "question_th": "ฝ่ายตรงข้ามคนไหนคือวันที่ 29 ตุลาคม?",
    "context": "CREATE TABLE table_name_66 (opponent VARCHAR, october VARCHAR)"
  },
  {
    "answer": "SELECT MIN(october) FROM table_name_50 WHERE record = \"1–0–0\"",
    "question_en": "WHich October has a Record of 1–0–0?",
    "question_th": "เดือนตุลาคมใดที่มีสถิติ 1–0–0?",
    "context": "CREATE TABLE table_name_50 (october INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_42 WHERE october > 20 AND score = \"2–2\"",
    "question_en": "Which Opponent has a October larger than 20 with a Score of 2–2?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีแต้มมากกว่า 20 เดือนตุลาคมด้วยคะแนน 2–2",
    "context": "CREATE TABLE table_name_42 (opponent VARCHAR, october VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_name_34 WHERE score = 269",
    "question_en": "What year was the score 269?",
    "question_th": "คะแนน 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_en": "What is the average number of points for a team in the 250cc class with fewer than 0 wins?",
    "question_th": "จำนวนคะแนนเฉลี่ยสำหรับทีมในคลาส 250cc ที่ชนะน้อยกว่า 0 คือเท่าใด",
    "context": "CREATE TABLE table_name_96 (points INTEGER, class VARCHAR, wins VARCHAR)"
  },
  {
    "answer": "SELECT MIN(points) FROM table_name_15 WHERE year = 1981",
    "question_en": "What is the smallest number of points for a 1981 team?",
    "question_th": "จำนวนคะแนนที่น้อยที่สุดสำหรับทีมในปี 1981 คือเท่าไร?",
    "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_en": "What is the fewest number of wins for a team ranked 8th with fewer than 32 points in the 350cc class?",
    "question_th": "จำนวนชัยชนะน้อยที่สุดสำหรับทีมอันดับที่ 8 โดยมีคะแนนน้อยกว่า 32 คะแนนในคลาส 350cc คือเท่าใด",
    "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_en": "What was the rank of the 1983 team in the 250cc class?",
    "question_th": "ทีมปี 1983 ในคลาส 250cc อยู่อันดับไหน?",
    "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_en": "Which district has joseph t. johnson as an incumbent?",
    "question_th": "เขตไหนมีโจเซฟที. จอห์นสันเป็นผู้ดำรงตำแหน่ง?",
    "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_en": "What was the result for james o'h. patterson when first elected in 1904?",
    "question_th": "ผลลัพธ์ของเจมส์โอคืออะไร แพตเตอร์สันเมื่อได้รับการเลือกตั้งครั้งแรกในปี 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_en": "Which party was re-elected in south carolina 5 district?",
    "question_th": "พรรคใดได้รับเลือกอีกครั้งในเขต 5 เซาท์แคโรไลนา",
    "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_en": "Which party was joseph t. johnson in?",
    "question_th": "ฝ่ายไหนคือโจเซฟ ที. จอห์นสันเข้ามาเหรอ?",
    "context": "CREATE TABLE table_name_86 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_name_19 WHERE first_elected = \"1898\"",
    "question_en": "Which party was first elected in 1898?",
    "question_th": "พรรคใดได้รับการเลือกตั้งครั้งแรกในปี พ.ศ. 2441",
    "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_en": "What is the average earnings made by Greg Norman?",
    "question_th": "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_en": "what city has a game of friendly and an opponent of tunisia?",
    "question_th": "เมืองใดมีเกมกระชับมิตรและคู่ต่อสู้ของตูนิเซีย?",
    "context": "CREATE TABLE table_name_42 (city VARCHAR, type_of_game VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT results¹ FROM table_name_78 WHERE opponent = \"spain\"",
    "question_en": "what are the results of the opponent of spain?",
    "question_th": "คู่ต่อสู้ของสเปนมีผลเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_78 (results¹ VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT results¹ FROM table_name_49 WHERE date = \"december 19\"",
    "question_en": "what results are dated december 19?",
    "question_th": "ประกาศผลวันที่ 19 ธันวาคม อะไรคะ?",
    "context": "CREATE TABLE table_name_49 (results¹ VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_41 WHERE results¹ = \"4:2\"",
    "question_en": "what city has the results of 4:2?",
    "question_th": "เมืองใดมีผลลัพธ์เป็น 4:2?",
    "context": "CREATE TABLE table_name_41 (city VARCHAR, results¹ VARCHAR)"
  },
  {
    "answer": "SELECT type_of_game FROM table_name_78 WHERE results¹ = \"1:0\"",
    "question_en": "what type of game has the resuts of 1:0?",
    "question_th": "เกมประเภทไหนมีผล 1:0?",
    "context": "CREATE TABLE table_name_78 (type_of_game VARCHAR, results¹ VARCHAR)"
  },
  {
    "answer": "SELECT AVG(games) FROM table_name_52 WHERE years = \"1965–1981\" AND ranking > 4",
    "question_en": "What is the average Games for 1965–1981, and a Ranking larger than 4?",
    "question_th": "เกมเฉลี่ยสำหรับปี 1965–1981 คืออะไร และอันดับมากกว่า 4 คืออะไร",
    "context": "CREATE TABLE table_name_52 (games INTEGER, years VARCHAR, ranking VARCHAR)"
  },
  {
    "answer": "SELECT years FROM table_name_93 WHERE games = 550",
    "question_en": "What is the Years when games shows 550?",
    "question_th": "ปีที่เกมแสดง 550 คืออะไร?",
    "context": "CREATE TABLE table_name_93 (years VARCHAR, games VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_57 WHERE ranking = 4",
    "question_en": "What is the Nationality that shows 4 as the ranking?",
    "question_th": "สัญชาติใดที่แสดงอันดับ 4 เป็นอันดับแรก?",
    "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_en": "Which location has a copies per particle of 0 and a protein of nsp3?",
    "question_th": "ตำแหน่งใดมีสำเนาต่ออนุภาค 0 และโปรตีน 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_en": "How many copies per particle does the protein nsp2 have?",
    "question_th": "โปรตีน nsp2 มีกี่สำเนาต่ออนุภาค",
    "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_en": "What is the highest RNA segment having a protein of vp2 and a base pair size over 2690?",
    "question_th": "ส่วน RNA สูงสุดที่มีโปรตีน vp2 และขนาดคู่เบสมากกว่า 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_en": "What is the number of copies per particle having a nonstructural location, an RNA segment over 5 and a base pair size under 751?",
    "question_th": "จำนวนสำเนาต่ออนุภาคที่มีตำแหน่งที่ไม่ใช่โครงสร้าง, ส่วน RNA มากกว่า 5 และขนาดคู่เบสต่ำกว่า 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_en": "Who won the bronze medal in Hiroshima?",
    "question_th": "ใครได้รับรางวัลเหรียญทองแดงที่ฮิโรชิมา?",
    "context": "CREATE TABLE table_name_90 (bronze VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT silver FROM table_name_5 WHERE bronze = \"hong chia-yuh\"",
    "question_en": "Who won the silver medal in the games where Hong Chia-yuh took home bronze?",
    "question_th": "ใครได้รับรางวัลเหรียญเงินในเกมที่ Hong Chia-yuh คว้าเหรียญทองแดงกลับบ้าน?",
    "context": "CREATE TABLE table_name_5 (silver VARCHAR, bronze VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_29 WHERE bronze = \"michael eric bibat\"",
    "question_en": "Where did Michael Eric Bibat win bronze?",
    "question_th": "Michael Eric Bibat คว้าเหรียญทองแดงที่ไหน?",
    "context": "CREATE TABLE table_name_29 (location VARCHAR, bronze VARCHAR)"
  },
  {
    "answer": "SELECT gold FROM table_name_76 WHERE silver = \"pan cheng-tsung\"",
    "question_en": "Who won gold in the games where Pan Cheng-Tsung won silver?",
    "question_th": "ใครได้เหรียญทองในเกมที่ Pan Cheng-Tsung ได้รับรางวัลเหรียญเงิน?",
    "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_en": "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?",
    "question_th": "มีกี่เหรียญทองแดงที่มีเหรียญเงิน 0 เหรียญทอง 0 และประเทศเดนมาร์ก และผลรวมมากกว่า 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_en": "How many Bronzes that has a Nation of italy?",
    "question_th": "มีกี่เหรียญทองแดงที่มีชาติอิตาลี?",
    "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_en": "How many Silvers that has a Gold smaller than 1, and a Rank of 9, and a Total smaller than 1?",
    "question_th": "มีเหรียญเงินจำนวนเท่าใดที่มีทองคำน้อยกว่า 1 และอันดับ 9 และผลรวมน้อยกว่า 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_en": "Which Bronze has a Nation of spain?",
    "question_th": "บรอนซ์ใดมีสัญชาติสเปน?",
    "context": "CREATE TABLE table_name_99 (bronze INTEGER, nation VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_20 WHERE venue = \"jeonju\"",
    "question_en": "Who was the opponent at the competition held at Jeonju?",
    "question_th": "คู่ต่อสู้คือใครในการแข่งขันที่จอนจู?",
    "context": "CREATE TABLE table_name_20 (opponent VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(january) FROM table_name_14 WHERE record = \"22-15-6\"",
    "question_en": "How many Januarys had records of 22-15-6?",
    "question_th": "กี่มกราคมมีบันทึก 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_en": "what is the date of barbagallo raceway?",
    "question_th": "สนามแข่งรถ barbagallo คือวันที่เท่าไหร่?",
    "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_en": "What city is the hidden valley raceway in?",
    "question_th": "สนามแข่งรถ Hidden Valley ตั้งอยู่ในเมืองใด?",
    "context": "CREATE TABLE table_name_79 (city___state VARCHAR, event_circuit VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_60 WHERE game__number = 81",
    "question_en": "What was the score in game 81?",
    "question_th": "คะแนนในเกมที่ 81 คืออะไร?",
    "context": "CREATE TABLE table_name_60 (score VARCHAR, game__number VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_27 WHERE game__number = 79",
    "question_en": "What was the record after game 79?",
    "question_th": "สถิติหลังเกม 79 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_27 (record VARCHAR, game__number VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_91 WHERE date = \"april 15\"",
    "question_en": "Who was the home team on April 15?",
    "question_th": "เจ้าบ้านวันที่ 15 เมษายนคือใคร?",
    "context": "CREATE TABLE table_name_91 (home VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT hanyu_pinyin FROM table_name_53 WHERE hanzi = \"依兰县\"",
    "question_en": "What is the Pinyin for 依兰县?",
    "question_th": "พินอินสำหรับ 依兰县 คืออะไร?",
    "context": "CREATE TABLE table_name_53 (hanyu_pinyin VARCHAR, hanzi VARCHAR)"
  },
  {
    "answer": "SELECT hanyu_pinyin FROM table_name_65 WHERE density___km²_ = \"77\"",
    "question_en": "What is the Pinyin for the item that has a density of 77?",
    "question_th": "พินอินสำหรับสินค้าที่มีความหนาแน่น 77 คืออะไร?",
    "context": "CREATE TABLE table_name_65 (hanyu_pinyin VARCHAR, density___km²_ VARCHAR)"
  },
  {
    "answer": "SELECT population__2010_11_01_ FROM table_name_30 WHERE hanzi = \"延寿县\"",
    "question_en": "What is the population for the area that has a Hanzi of 延寿县?",
    "question_th": "ประชากรในพื้นที่ที่มีอักษรฮั่นจือคือ 延寿县 มีประชากรเท่าใด",
    "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_en": "What is the population as of 11-01-2010 for Bayan County?",
    "question_th": "จำนวนประชากร ณ วันที่ 11-01-2010 สำหรับเขตบายันคือเท่าใด",
    "context": "CREATE TABLE table_name_50 (population__2010_11_01_ VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT hanzi FROM table_name_4 WHERE hanyu_pinyin = \"píngfáng qū\"",
    "question_en": "What is the Hanzi for píngfáng qū?",
    "question_th": "Hanzi สำหรับ Píngfáng qū คืออะไร?",
    "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_en": "Which Slalom has an overall of 25 in the 2009 season?",
    "question_th": "สลาลมคนใดมีคะแนนรวม 25 คะแนนในฤดูกาล 2009",
    "context": "CREATE TABLE table_name_32 (slalom VARCHAR, overall VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT combined FROM table_name_80 WHERE overall = \"8\"",
    "question_en": "Which combined score has an overall of 8?",
    "question_th": "คะแนนรวมข้อใดมีคะแนนรวม 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_en": "Which Super Ghas a missed season due to injury?",
    "question_th": "Super Ghas คนไหนที่พลาดฤดูกาลเนื่องจากอาการบาดเจ็บ?",
    "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_en": "Name the most events with cuts made more than 6 and top 25 more than 30",
    "question_th": "ตั้งชื่อเหตุการณ์ส่วนใหญ่ที่มีการตัดมากกว่า 6 รายการและ 25 อันดับแรกมากกว่า 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_en": "Name the top-10 with top-5 less than 1",
    "question_th": "ตั้งชื่อ 10 อันดับแรกโดยให้ 5 อันดับแรกน้อยกว่า 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_en": "Name the averae top 25 with events less than 0",
    "question_th": "ตั้งชื่อ 25 อันดับแรกของ averae ด้วยเหตุการณ์น้อยกว่า 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_en": "Name the total number of top 10 with top 25 less than 2 and top 5 more than 0",
    "question_th": "ตั้งชื่อจำนวนรวมของ 10 อันดับแรก โดย 25 อันดับแรกน้อยกว่า 2 และ 5 อันดับแรกมากกว่า 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_en": "In what Year is the Gauge 2 ft 6 in?",
    "question_th": "เกจ 2 ฟุต 6 อยู่ในปีใด",
    "context": "CREATE TABLE table_name_22 (year VARCHAR, gauge VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_80 WHERE works_no = \"2040-2049\"",
    "question_en": "In what Year is the Works No. 2040-2049?",
    "question_th": "ผลงานหมายเลข 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_en": "In what Year is the Works no. 2040-2049?",
    "question_th": "ผลงานลำดับที่ พ.ศ.ใด 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_en": "What is the Gauge of Builder Beyer, Peacock?",
    "question_th": "มาตรวัดของ 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_en": "Which round has the record of 5-0?",
    "question_th": "รอบไหนมีสถิติ 5-0?",
    "context": "CREATE TABLE table_name_18 (round VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT method FROM table_name_4 WHERE record = \"11-1\"",
    "question_en": "Which method has the record of 11-1?",
    "question_th": "วิธีไหนมีสถิติ 11-1?",
    "context": "CREATE TABLE table_name_4 (method VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT method FROM table_name_98 WHERE event = \"ufc 44\"",
    "question_en": "The UFC 44 event has what method?",
    "question_th": "งาน UFC 44 มีวิธีการอะไรบ้าง?",
    "context": "CREATE TABLE table_name_98 (method VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_43 WHERE record = \"12-1\"",
    "question_en": "Which event has 12-1 as a record?",
    "question_th": "เหตุการณ์ใดมี 12-1 เป็นสถิติ?",
    "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_en": "What round was a loss with a record of 12-3?",
    "question_th": "รอบไหนแพ้ด้วยสถิติ 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_en": "The record of 11-1 used what method?",
    "question_th": "บันทึก 11-1 ใช้วิธีอะไร?",
    "context": "CREATE TABLE table_name_35 (method VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_82 WHERE date = \"november 6, 1982\"",
    "question_en": "What surface was the match on November 6, 1982 played on?",
    "question_th": "การแข่งขันวันที่ 6 พฤศจิกายน พ.ศ. 2525 ลงเล่นบนพื้นผิวใด?",
    "context": "CREATE TABLE table_name_82 (surface VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(placing) FROM table_name_26 WHERE team = \"russia\"",
    "question_en": "What place did russia finish in?",
    "question_th": "รัสเซียจบที่อันดับไหน?",
    "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_en": "What's the WChmp of the race greater than 42 and pole greater than 11?",
    "question_th": "WChmp ของการแข่งขันที่มากกว่า 42 และโพลที่มากกว่า 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_en": "If podiums are 26, what's the lowest WChmp?",
    "question_th": "ถ้าโพเดียมคือ 26 WChmp ต่ำสุดคือเท่าไร?",
    "context": "CREATE TABLE table_name_49 (wchmp INTEGER, podiums VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(podiums) FROM table_name_93 WHERE class = \"total\"",
    "question_en": "If the class is total, what is the total number of podiums?",
    "question_th": "ถ้าชั้นเรียนมีทั้งหมด จำนวนโพเดียมทั้งหมดคือเท่าไร?",
    "context": "CREATE TABLE table_name_93 (podiums VARCHAR, class VARCHAR)"
  },
  {
    "answer": "SELECT MAX(podiums) FROM table_name_78 WHERE race = 14",
    "question_en": "During race 14, what's the podiums?",
    "question_th": "ระหว่างการแข่งขันรอบที่ 14 โพเดี้ยมอยู่ที่เท่าไร?",
    "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_en": "What Call sign has a City of license of higgston, ga?",
    "question_th": "สัญญาณเรียกขานอะไรมีเมืองที่มีใบอนุญาตของ 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_en": "What City of license has a ERP W of 2,000?",
    "question_th": "เมืองที่ได้รับใบอนุญาตใดมี ERP W อยู่ที่ 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_en": "What is the Class where City of license is lake oconee, ga?",
    "question_th": "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_en": "What chassis has 2012 as the year?",
    "question_th": "แชสซีใดที่มีปี 2012 เป็นปี?",
    "context": "CREATE TABLE table_name_3 (chassis VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT engine FROM table_name_19 WHERE start < 7 AND finish = 23",
    "question_en": "What engine has a start less than 7, and 23 as a finish?",
    "question_th": "เครื่องยนต์ใดที่สตาร์ทได้น้อยกว่า 7 และ 23 เป็นที่สิ้นสุด?",
    "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_en": "What is the average finish that has a start greater than 3, with honda as the engine, and 2011 as the year?",
    "question_th": "การจบสกอร์โดยเฉลี่ยที่มีการออกสตาร์ทมากกว่า 3 โดยมีฮอนด้าเป็นเครื่องยนต์ และปี 2554 เป็นเท่าใด",
    "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_en": "How many starts have a year prior to 2012, and team penske as the team, with a finish greater than 27?",
    "question_th": "มีกี่คนที่ออกสตาร์ทในปีก่อนปี 2012 และมีทีมเพนเก้เป็นทีม โดยจบสกอร์มากกว่า 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_en": "What start has a year later than 2010, and chip ganassi racing as the team?",
    "question_th": "หนึ่งปีหลังจากปี 2010 เริ่มต้นอะไร และ Chip Ganassi แข่งกันเป็นทีม?",
    "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_en": "Who was the opponent at the Football League Trophy competition?",
    "question_th": "คู่ต่อสู้ในการแข่งขันฟุตบอลลีกโทรฟีคือใคร?",
    "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_en": "What was the opponent at the League Play Offs at home?",
    "question_th": "คู่ต่อสู้ในลีกเพลย์ออฟในบ้านคือใคร?",
    "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_en": "What venue held that game against the Queens Park Rangers?",
    "question_th": "สนามใดจัดเกมนั้นกับควีนส์ปาร์ค เรนเจอร์ส?",
    "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_en": "Who was the opponent at the away game with a score of 5-4?",
    "question_th": "คู่ต่อสู้ในเกมเยือนด้วยสกอร์ 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_en": "Who was the opponent at the League Cup competition with a score of 3-1?",
    "question_th": "คู่ต่อสู้ในการแข่งขันลีกคัพคือใครด้วยสกอร์ 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_en": "Name the team classification for stage of 20",
    "question_th": "ตั้งชื่อประเภททีมสำหรับรอบ 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_en": "Name the winner with mountains classification of franco pellizotti and combativity award of martijn maaskant",
    "question_th": "ตั้งชื่อผู้ชนะด้วยประเภทภูเขาของ Franco Pellizotti และรางวัลการต่อสู้ของ 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_en": "Name the general classification with roman kreuziger and points classification of fabian cancellara",
    "question_th": "ตั้งชื่อการจำแนกประเภททั่วไปด้วยอักษรโรมัน ครูซิเกอร์ และการจำแนกคะแนนของการยกเลิกแบบฟาเบียน",
    "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ón sánchez\"",
    "question_en": "Name the combativity award with winner of luis león sánchez",
    "question_th": "ตั้งชื่อรางวัลการต่อสู้ด้วยผู้ชนะ luis león sánchez",
    "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_en": "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?",
    "question_th": "ผลรวมของตัวเลขใน 18-49 สำหรับตอนที่ออกอากาศวันที่ 25 มิถุนายน 2552 โดยมีลำดับมากกว่า 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_en": "What is the total 18-49 for the episode that aired on July 2, 2009 with more than 3.5 viewers?",
    "question_th": "ตอนที่ออกอากาศวันที่ 2 กรกฎาคม 2552 มีผู้ชมมากกว่า 3.5 คน ยอดรวม 18-49 เป็นเท่าใด",
    "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_en": "What is the average 18-49 for the episode that had an order number higher than 35 and less than 3.5 viewers?",
    "question_th": "ค่าเฉลี่ย 18-49 สำหรับตอนที่มีหมายเลขคำสั่งซื้อสูงกว่า 35 และมีผู้ชมน้อยกว่า 3.5 คือเท่าใด",
    "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_en": "What is the episode name that aired on July 23, 2009 with more than 3.31 viewers?",
    "question_th": "ออกอากาศวันที่ 23 กรกฎาคม 2552 มีผู้ชมมากกว่า 3.31 คน ชื่อตอนที่ชื่อว่าอะไร",
    "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_en": "What year sold 1,695,900+ copies with an Oricon position larger than 1?",
    "question_th": "ในปีใดที่ขายได้ 1,695,900+ ชุด โดยมีอันดับ Oricon มากกว่า 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_en": "How many copies were sold where the position is lager than 1 in 1988?",
    "question_th": "มียอดขายกี่เล่มโดยที่ตำแหน่งเกิน 1 ในปี 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_en": "What was the Winning Score on May 29, 1977?",
    "question_th": "คะแนนชนะเมื่อวันที่ 29 พฤษภาคม พ.ศ. 2520 เป็นเท่าใด",
    "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_en": "On what Date was Patty Sheehan Runner(s)-up?",
    "question_th": "Patty Sheehan Runner ขึ้นวันที่เท่าไหร่?",
    "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_en": "On what Date was Judy Rankin Runner(s)-up?",
    "question_th": "Judy Rankin Runner ขึ้นในวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_64 (date VARCHAR, runner_s__up VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_95 WHERE winning_score = –8(69 - 72 - 70 - 69 = 280)",
    "question_en": "On what Date was the Winning score –8 (69-72-70-69=280)?",
    "question_th": "คะแนนชนะ –8 (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_en": "On what Date was Carole Charbonnier a Runner(s)-up with a 1 stroke Margin of victory?",
    "question_th": "Carole Charbonnier เป็นนักวิ่งที่มีมาร์จิ้นแห่งชัยชนะ 1 จังหวะในวันที่เท่าไหร่?",
    "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_en": "What date did the team play home in Toronto?",
    "question_th": "ทีมเล่นในบ้านที่โตรอนโตวันไหน?",
    "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_en": "How many people attended the game when Larry Hughes(33) was the leading scorer and cleveland was visiting?",
    "question_th": "มีกี่คนที่เข้าร่วมเกมเมื่อแลร์รี ฮิวจ์ส(33) เป็นผู้ทำประตูสูงสุดและมีคลีฟแลนด์มาเยือน",
    "context": "CREATE TABLE table_name_6 (attendance INTEGER, visitor VARCHAR, leading_scorer VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_38 WHERE home = \"utah\"",
    "question_en": "When did they play Utah at home?",
    "question_th": "พวกเขาเล่นยูทาห์ที่บ้านเมื่อไหร่?",
    "context": "CREATE TABLE table_name_38 (date VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_4 WHERE stadium = \"balboa stadium\"",
    "question_en": "What opponent has balboa stadium as the opponent?",
    "question_th": "คู่ต่อสู้คนไหนมีสนามบัลโบอาเป็นคู่ต่อสู้?",
    "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_en": "What is the highest attendance that has oakland raiders as the opponent, with a week greater than 9?",
    "question_th": "อะไรคือการเข้าร่วมสูงสุดที่มี Oakland Raiders เป็นคู่ต่อสู้ โดยหนึ่งสัปดาห์มากกว่า 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_en": "Where is the headquarter of the conglomerate industry?",
    "question_th": "สำนักงานใหญ่ของกลุ่มอุตสาหกรรมตั้งอยู่ที่ใด?",
    "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_en": "What date was the game played at the venue of Hrazdan Stadium, Yerevan, Armenia?",
    "question_th": "เกมนี้เล่นที่สนาม 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_en": "Who was the bronze medal when the Asian Games were held in Busan?",
    "question_th": "ใครคือเหรียญทองแดงในการแข่งขันเอเชียนเกมส์ที่ปูซาน?",
    "context": "CREATE TABLE table_name_81 (bronze VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT gold FROM table_name_97 WHERE bronze = \"kim hyang-mi\"",
    "question_en": "Who won the gold when Kim Hyang-Mi won the bronze?",
    "question_th": "ใครได้รับรางวัลเหรียญทองเมื่อ Kim Hyang-Mi ได้รับรางวัลเหรียญทองแดง?",
    "context": "CREATE TABLE table_name_97 (gold VARCHAR, bronze VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_name_16 WHERE gold = \"park jung-ah\"",
    "question_en": "What was the earliest year that Park Jung-Ah won the gold?",
    "question_th": "ปาร์คจองอาได้รับรางวัลเหรียญทองในปีแรกสุดคือปีใด?",
    "context": "CREATE TABLE table_name_16 (year INTEGER, gold VARCHAR)"
  },
  {
    "answer": "SELECT bronze FROM table_name_70 WHERE location = \"doha\"",
    "question_en": "Who won the bronze when the Asian Games were in Doha?",
    "question_th": "ใครได้รับรางวัลเหรียญทองแดงเมื่อเอเชียนเกมส์ที่โดฮา?",
    "context": "CREATE TABLE table_name_70 (bronze VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT SUM(attendance) FROM table_name_56 WHERE date = \"november 29, 1953\"",
    "question_en": "What was the Attendance on November 29, 1953?",
    "question_th": "ผู้เข้าร่วมในวันที่ 29 พฤศจิกายน พ.ศ. 2496 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_56 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT nfl_team FROM table_name_30 WHERE player = \"patrick collins\"",
    "question_en": "Which NFL team picked Patrick Collins?",
    "question_th": "ทีม NFL ทีมใดเลือก 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_en": "Which NFL team picked a player for the Wide Receiver position?",
    "question_th": "ทีม NFL ทีมใดเลือกผู้เล่นในตำแหน่ง Wide Receiver?",
    "context": "CREATE TABLE table_name_19 (nfl_team VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_35 WHERE year > 2002",
    "question_en": "What result has a year after 2002?",
    "question_th": "หนึ่งปีหลังจากปี 2545 จะเกิดผลลัพธ์อะไร?",
    "context": "CREATE TABLE table_name_35 (result VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT tournament FROM table_name_26 WHERE year < 2001",
    "question_en": "What tournament has a year prior to 2001?",
    "question_th": "การแข่งขันใดมีหนึ่งปีก่อนปี 2544?",
    "context": "CREATE TABLE table_name_26 (tournament VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT date FROM table_name_34 WHERE points > 47 AND visitor = \"minnesota\"",
    "question_en": "On what date does visiting team Minnesota score higher than 47 points?",
    "question_th": "ทีมเยือนมินนิโซตาทำคะแนนได้มากกว่า 47 แต้มในวันใด",
    "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_en": "What date does visitor team Toronto score less than 49 points and has record of 18-17-7?",
    "question_th": "ทีมเยือนโตรอนโตทำคะแนนน้อยกว่า 49 คะแนนและมีสถิติ 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_en": "What is the fleet number for the model of Gillig Phantom 3096TB?",
    "question_th": "หมายเลขฝูงบินของรุ่น 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_en": "What is the width for the year of the 1970?",
    "question_th": "ความกว้างของปี 1970 เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_38 (width VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_22 WHERE fleet_number = \"603\"",
    "question_en": "Which year has a fleet number of 603?",
    "question_th": "ปีใดมีกองเรือจำนวน 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_en": "What is the length of fleet number 501-506?",
    "question_th": "กองเรือหมายเลข 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_en": "What is fleet number for the year of 19xx?",
    "question_th": "หมายเลขกองเรือสำหรับปี 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_en": "What is the fleet number of Model Orion 01.507?",
    "question_th": "หมายเลขฝูงบินของรุ่น 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_en": "What is the highest round of Ed Smith, who had a pick higher than 261 and played halfback?",
    "question_th": "รอบสูงสุดของเอ็ด สมิธที่มีสิทธิเลือกสูงกว่า 261 และเล่นฮาล์ฟแบ็คคือรอบไหน?",
    "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_en": "What is the lowest round of Ed Smith, who had a pick lower than 19?",
    "question_th": "Ed Smith รอบต่ำสุดที่มีสิทธิเลือกต่ำกว่า 19 คืออะไร?",
    "context": "CREATE TABLE table_name_29 (round INTEGER, player VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_4 WHERE round = 27",
    "question_en": "Which player had a round of 27?",
    "question_th": "ผู้เล่นคนไหนได้รอบ 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_en": "What is the position of the player with a round less than 20 from the school/club Washington?",
    "question_th": "ตำแหน่งผู้เล่นที่มีรอบน้อยกว่า 20 จากโรงเรียน/สโมสรวอชิงตันคือตำแหน่งใด",
    "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_en": "Location of hemisfair arena had what record?",
    "question_th": "ที่ตั้งของสนามกีฬาเฮมิสแฟร์มีประวัติอะไรบ้าง?",
    "context": "CREATE TABLE table_name_43 (record VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT MAX(game) FROM table_name_44 WHERE record = \"20–4\"",
    "question_en": "Record of 20–4 involved what highest game?",
    "question_th": "สถิติ 20–4 เกี่ยวข้องกับเกมสูงสุดเกมใด",
    "context": "CREATE TABLE table_name_44 (game INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT SUM(game) FROM table_name_52 WHERE opponent = \"@ phoenix suns\"",
    "question_en": "Opponent of @ phoenix suns had what sum of game?",
    "question_th": "ฝ่ายตรงข้ามของ @phoenix suns มีผลรวมของเกมเท่าไร?",
    "context": "CREATE TABLE table_name_52 (game INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_68 WHERE score = \"122–105\"",
    "question_en": "Score of 122–105 had what record?",
    "question_th": "คะแนน 122–105 มีสถิติอะไรบ้าง?",
    "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_en": "In the final, who are the opponents of partner Simon Aspelin?",
    "question_th": "รอบชิงชนะเลิศ ใครคือคู่ต่อสู้ของไซมอน แอสเปลิน?",
    "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_en": "For the tournament played on 26 February 2006, what surface was used?",
    "question_th": "ในการแข่งขันวันที่ 26 กุมภาพันธ์ พ.ศ. 2549 ใช้พื้นผิวอะไร?",
    "context": "CREATE TABLE table_name_35 (surface VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_78 WHERE record = \"58–10\"",
    "question_en": "Which Date has a Record of 58–10?",
    "question_th": "วันที่ใดมีสถิติ 58–10",
    "context": "CREATE TABLE table_name_78 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_58 WHERE score = \"106–112\"",
    "question_en": "Which Date has a Score of 106–112?",
    "question_th": "วันไหนมีคะแนน 106–112?",
    "context": "CREATE TABLE table_name_58 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT second FROM table_name_86 WHERE skip = \"martynas norkus\"",
    "question_en": "Who was second when Martynas Norkus was the skip?",
    "question_th": "ใครเป็นอันดับสองเมื่อ Martynas Norkus เป็นคนข้าม?",
    "context": "CREATE TABLE table_name_86 (second VARCHAR, skip VARCHAR)"
  },
  {
    "answer": "SELECT second FROM table_name_2 WHERE lead = \"ilian kirilov\"",
    "question_en": "Who was the second when Ilian Kirilov was the lead?",
    "question_th": "ใครคือคนที่สองเมื่อ Ilian Kirilov เป็นผู้นำ?",
    "context": "CREATE TABLE table_name_2 (second VARCHAR, lead VARCHAR)"
  },
  {
    "answer": "SELECT lead FROM table_name_11 WHERE skip = \"jamie meikle\"",
    "question_en": "Who was the lead when Jamie Meikle was the skip?",
    "question_th": "ใครเป็นผู้นำเมื่อ Jamie Meikle เป็นคนข้าม?",
    "context": "CREATE TABLE table_name_11 (lead VARCHAR, skip VARCHAR)"
  },
  {
    "answer": "SELECT lead FROM table_name_10 WHERE skip = \"ritvars gulbis\"",
    "question_en": "Who was the lead when Ritvars Gulbis was the skip?",
    "question_th": "ใครเป็นผู้นำเมื่อ Ritvars Gulbis เป็นตัวข้าม?",
    "context": "CREATE TABLE table_name_10 (lead VARCHAR, skip VARCHAR)"
  },
  {
    "answer": "SELECT third FROM table_name_60 WHERE nation = \"england\"",
    "question_en": "Who came in third in England?",
    "question_th": "ใครมาเป็นอันดับสามในอังกฤษ?",
    "context": "CREATE TABLE table_name_60 (third VARCHAR, nation VARCHAR)"
  },
  {
    "answer": "SELECT nation FROM table_name_19 WHERE third = \"darko sovran\"",
    "question_en": "In what nation did Darko Sovran place third?",
    "question_th": "Darko Sovran ได้อันดับที่สามในประเทศใด",
    "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_en": "What is the tournament with a w/o score on November 5, 2007?",
    "question_th": "การแข่งขันที่มีคะแนน aw/o ในวันที่ 5 พฤศจิกายน พ.ศ. 2550 คืออะไร?",
    "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_en": "What is the surface of eckental tournament with a w/o score?",
    "question_th": "พื้นผิวของทัวร์นาเมนต์ eckental ที่มีคะแนน aw/o เป็นอย่างไร?",
    "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_en": "What is the tournament with a hard surface and Ruben de Kleijn as the opponent?",
    "question_th": "ทัวร์นาเมนต์ที่มีพื้นผิวแข็งและมี Ruben de Kleijn เป็นคู่ต่อสู้คืออะไร?",
    "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_en": "What is the score of the tournament on November 5, 2007 with a carpet surface?",
    "question_th": "คะแนนการแข่งขันวันที่ 5 พฤศจิกายน 2550 แบบปูพรมเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_90 (score VARCHAR, surface VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_37 WHERE opponent = \"sascha kloer\"",
    "question_en": "What is the surface of the tournament with Sascha Kloer as the opponent?",
    "question_th": "พื้นผิวของทัวร์นาเมนต์ที่มี Sascha Kloer เป็นคู่ต่อสู้เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_37 (surface VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_10 WHERE location = \"gomel\"",
    "question_en": "what team scored in gomel",
    "question_th": "ทีมไหนทำประตูได้ในโกเมล",
    "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_en": "What is the average conceded number of the team with a position lower than 8 and more than 2 wins?",
    "question_th": "ค่าเฉลี่ยที่ยอมรับของทีมที่มีอันดับต่ำกว่า 8 และมากกว่า 2 ชนะคือเท่าไร?",
    "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í\" AND losses < 5",
    "question_en": "What is the averaged scored number of team guaraní, which has less than 6 draws and less than 5 losses?",
    "question_th": "จำนวนคะแนนเฉลี่ยของทีมรับประกัน ซึ่งเสมอน้อยกว่า 6 และแพ้น้อยกว่า 5 คือเท่าใด",
    "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_en": "What is the total number scored of the team positioned lower than 10?",
    "question_th": "คะแนนรวมของทีมที่อยู่ในตำแหน่งต่ำกว่า 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_en": "What is the lowest number of wins of the team with less than 24 scored, 27 conceded, and more than 18 played?",
    "question_th": "จำนวนชัยชนะต่ำสุดของทีมโดยทำได้น้อยกว่า 24 คะแนน เสีย 27 ครั้ง และเล่นมากกว่า 18 ครั้งคือเท่าใด",
    "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_en": "What is the lowest number of points of the team with 2 losses and a lower than 1 position?",
    "question_th": "จำนวนแต้มต่ำสุดของทีมที่แพ้ 2 ครั้งและต่ำกว่า 1 ตำแหน่งคือเท่าใด?",
    "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_en": "What is the Intercontinental Cup 1993 result for a Supercopa Sudamericana 1993 result of round of 16?",
    "question_th": "ผลการแข่งขัน Intercontinental Cup 1993 สำหรับ Supercopa Sudamericana 1993 รอบ 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_en": "What is the earliest game in November with more than 22 Games and Toronto Maple Leafs as the Opponent?",
    "question_th": "เกมใดเร็วที่สุดในเดือนพฤศจิกายนที่มีมากกว่า 22 เกมและมี Toronto Maple Leafs เป็นฝ่ายตรงข้าม?",
    "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_en": "What is the family friendly status of the punk genre song from the 1970s?",
    "question_th": "สถานะที่เป็นมิตรกับครอบครัวของเพลงแนวพังก์จากปี 1970 คืออะไร?",
    "context": "CREATE TABLE table_name_8 (family_friendly VARCHAR, decade VARCHAR, genre VARCHAR)"
  },
  {
    "answer": "SELECT artist FROM table_name_7 WHERE genre = \"rock\"",
    "question_en": "Who is the artist of the rock song?",
    "question_th": "ศิลปินเพลงร็อคคือใคร?",
    "context": "CREATE TABLE table_name_7 (artist VARCHAR, genre VARCHAR)"
  },
  {
    "answer": "SELECT MAX(bronze) FROM table_name_46 WHERE gold < 0",
    "question_en": "What is the highest number of bronze medals for nations with under 0 golds?",
    "question_th": "จำนวนเหรียญทองแดงสูงสุดสำหรับประเทศที่มีน้อยกว่า 0 เหรียญทองคือเท่าใด",
    "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_en": "How many points did Stuart have when he had 0 extra points?",
    "question_th": "สจวร์ตมีคะแนนพิเศษ 0 แต้มกี่แต้ม?",
    "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_en": "Who had the lowest field goals but had 10 points and more than 2 touchdowns?",
    "question_th": "ใครเสียประตูน้อยที่สุดแต่มี 10 แต้มและทำทัชดาวน์มากกว่า 2 ครั้ง?",
    "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_en": "How many points did Stuart have when he had less than 1 touchdown?",
    "question_th": "สจวร์ตมีคะแนนน้อยกว่า 1 ทัชดาวน์ได้กี่แต้ม?",
    "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_en": "Who had a points average with 0 extra points and 0 field goals?",
    "question_th": "ใครมีคะแนนเฉลี่ยโดยมี 0 คะแนนพิเศษ และ 0 ฟิลด์โกล?",
    "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_en": "What was the result in the Golden Reel Awards?",
    "question_th": "ผลลัพธ์ของรางวัล Golden Reel Awards เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_38 (result VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_32 WHERE record = \"16–29\"",
    "question_en": "Record of 16–29 is how many attendance?",
    "question_th": "บันทึก 16–29 มีผู้เข้าร่วมกี่คน",
    "context": "CREATE TABLE table_name_32 (attendance VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_5 WHERE loss = \"peavy (4–3)\"",
    "question_en": "Loss of peavy (4–3) is what score?",
    "question_th": "แพ้พีวี่ (4–3) คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_5 (score VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT SUM(attendance) FROM table_name_21 WHERE score = \"3–2\" AND opponent = \"reds\"",
    "question_en": "Score of 3–2, and a Opponent of reds had what sum of attendance?",
    "question_th": "คะแนน 3–2 และฝ่ายตรงข้ามที่เป็นสีแดงมีผู้เข้าร่วมรวมเท่าใด",
    "context": "CREATE TABLE table_name_21 (attendance INTEGER, score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_96 WHERE score = \"6–4\" AND opponent = \"@ marlins\"",
    "question_en": "Score of 6–4, and a Opponent of @ marlins had what record?",
    "question_th": "คะแนน 6–4 และฝ่ายตรงข้ามของ @ marlins มีสถิติอะไร?",
    "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_en": "Which Cuts made has a Tournament of totals, and Wins smaller than 11?",
    "question_th": "การคัทครั้งใดที่มีทัวร์นาเมนต์รวมและชนะน้อยกว่า 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_en": "Which Top-25 has a Top-5 smaller than 0?",
    "question_th": "Top-25 ใดที่มี Top-5 น้อยกว่า 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_en": "Which Top-25 has a Top-5 larger than 9, and Wins smaller than 11?",
    "question_th": "Top-25 ใดที่มี Top-5 มากกว่า 9 และชนะน้อยกว่า 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_en": "Which Top-5 is the highest one that has Wins of 0, and Events larger than 6?",
    "question_th": "5 อันดับแรกใดที่มีชัยชนะสูงสุดคือ 0 และเหตุการณ์ที่มากกว่า 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_en": "Which Top-5 is the lowest one that has Cuts made of 10, and Events larger than 10?",
    "question_th": "Top-5 ใดคืออันดับต่ำสุดที่มี Cuts มาจาก 10 และเหตุการณ์ที่มากกว่า 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_en": "Which Events is the highest one that has a Top-10 larger than 7, and Wins smaller than 2?",
    "question_th": "กิจกรรมใดคือกิจกรรมสูงสุดที่มี 10 อันดับแรกมากกว่า 7 และชนะน้อยกว่า 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_en": "When the surface is clay, and the tournament of barcelona what is the score?",
    "question_th": "เมื่อพื้นผิวเป็นดินเหนียว และทัวร์นาเมนต์ของ บาร์เซโลน่า สกอร์เท่าไหร่?",
    "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_en": "What was the surface when the opponent was judith wiesner, and the outcome was winner?",
    "question_th": "พื้นผิวเป็นอย่างไรเมื่อคู่ต่อสู้คือจูดิธ วิสเนอร์ และผลลัพธ์เป็นผู้ชนะ?",
    "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_en": "What is the opponent for the tournament of rio de janeiro?",
    "question_th": "คู่ต่อสู้ในทัวร์นาเมนต์ของริโอ เด จาเนโรคืออะไร?",
    "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_en": "What is the opponent with the outcome of runner-up with a date of 19 september 1994?",
    "question_th": "คู่ต่อสู้ที่มีผลงานรองชนะเลิศวันที่ 19 กันยายน พ.ศ. 2537 คืออะไร?",
    "context": "CREATE TABLE table_name_25 (opponent VARCHAR, outcome VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_97 WHERE tournament = \"taranto\"",
    "question_en": "What was the opponent for the tournament of taranto?",
    "question_th": "คู่ต่อสู้ในการแข่งขันทารันโตคืออะไร?",
    "context": "CREATE TABLE table_name_97 (opponent VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT fastest_lap FROM table_name_45 WHERE race_winner = \"joan lascorz\"",
    "question_en": "Who had the fastest lap where Joan Lascorz was the winner?",
    "question_th": "ใครมีรอบเร็วที่สุดโดยที่ Joan Lascorz เป็นผู้ชนะ",
    "context": "CREATE TABLE table_name_45 (fastest_lap VARCHAR, race_winner VARCHAR)"
  },
  {
    "answer": "SELECT race_winner FROM table_name_1 WHERE round = \"europe\"",
    "question_en": "Who won the round in Europe?",
    "question_th": "ใครชนะรอบนี้ในยุโรป?",
    "context": "CREATE TABLE table_name_1 (race_winner VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(game) FROM table_name_16 WHERE score = \"3–0\" AND january > 12",
    "question_en": "How many games have a Score of 3–0, and a January larger than 12?",
    "question_th": "มีกี่เกมที่มีคะแนน 3–0 และเดือนมกราคมมากกว่า 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–3\"",
    "question_en": "Which Opponent has a January larger than 8, and a Game smaller than 48, and a Score of 5–3?",
    "question_th": "ฝ่ายตรงข้ามคนใดที่มีคะแนนมากกว่า 8 มกราคม และเกมที่น้อยกว่า 48 และมีคะแนน 5–3",
    "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_en": "Which Game is the highest that has a January of 28?",
    "question_th": "เกมใดสูงที่สุดที่มีวันที่ 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_en": "Which Score has a Game larger than 47, and a January smaller than 25?",
    "question_th": "คะแนนใดที่มีเกมมากกว่า 47 และเดือนมกราคมน้อยกว่า 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_en": "What stroke has a max power of 109 ps(80kw)@4000 rpm?",
    "question_th": "จังหวะใดมีกำลังสูงสุด 109 แรงม้า (80kw)@4,000 รอบต่อนาที?",
    "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_en": "The nissan primera p12 nissan almera n16 has what C.R.?",
    "question_th": "nissan primera p12 nissan almera n16 มี CR อะไรบ้าง?",
    "context": "CREATE TABLE table_name_60 (cr VARCHAR, vehicle VARCHAR)"
  },
  {
    "answer": "SELECT displacement FROM table_name_22 WHERE code = \"yd22ddt\"",
    "question_en": "What displacement has the code yd22ddt?",
    "question_th": "การกระจัดใดมีรหัส yd22ddt?",
    "context": "CREATE TABLE table_name_22 (displacement VARCHAR, code VARCHAR)"
  },
  {
    "answer": "SELECT code FROM table_name_97 WHERE cr = \"16.7:1\"",
    "question_en": "What code has a C.R of 16.7:1?",
    "question_th": "รหัสใดมี CR เท่ากับ 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_en": "What Outcome happened on a Date that was 20 november 2011?",
    "question_th": "ผลลัพธ์อะไรเกิดขึ้นในวันที่ 20 พฤศจิกายน 2554?",
    "context": "CREATE TABLE table_name_61 (outcome VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_4 WHERE score = \"0–3\"",
    "question_en": "Which Away team has a Score of 0–3?",
    "question_th": "ทีมเยือนทีมใดมีสกอร์ 0–3?",
    "context": "CREATE TABLE table_name_4 (away_team VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_63 WHERE tie_no = \"5\"",
    "question_en": "Which Attendance has a Tie number of 5?",
    "question_th": "ผู้เข้าร่วมคนใดมีหมายเลขเสมอกันที่ 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_en": "Which Score has an Attendance of 23 january 1999, and a Tie # of 6?",
    "question_th": "สกอร์ใดที่มีการเข้าร่วมในวันที่ 23 มกราคม 1999 และเสมอ # 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_en": "Which Tie #has an Attendance of 54,591?",
    "question_th": "เสมอ #มีผู้เข้าร่วม 54,591 คน?",
    "context": "CREATE TABLE table_name_16 (tie_no VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_68 WHERE score = \"1–1\" AND away_team = \"tottenham hotspur\"",
    "question_en": "Which Home team has a Score of 1–1, and an Away team of tottenham hotspur?",
    "question_th": "ทีมเหย้าทีมใดมีสกอร์ 1–1 และทีมเยือนของท็อตแน่ม ฮ็อทสเปอร์?",
    "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_en": "Which Attendance has a Tie # of 15?",
    "question_th": "ผู้เข้าร่วมคนใดมีคะแนนเสมอกันที่ 15?",
    "context": "CREATE TABLE table_name_25 (attendance VARCHAR, tie_no VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_name_80 WHERE position = \"11th\"",
    "question_en": "In what Year was the Position 11th?",
    "question_th": "ตำแหน่งที่ 11 เมื่อปีใด?",
    "context": "CREATE TABLE table_name_80 (year VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_46 WHERE venue = \"rome, italy\"",
    "question_en": "What was the name of the Competition in Rome, Italy?",
    "question_th": "การแข่งขันที่กรุงโรม ประเทศอิตาลี มีชื่อว่าอะไร",
    "context": "CREATE TABLE table_name_46 (competition VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_name_64 WHERE year > 1983 AND position = \"18th\"",
    "question_en": "What Notes after 1983 have a Position of 18th?",
    "question_th": "Notes อะไรหลังจากปี 1983 มีตำแหน่งที่ 18?",
    "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_en": "After 1983, what was the Position in Seoul, South Korea?",
    "question_th": "หลังจากปี 1983 ตำแหน่งในกรุงโซล ประเทศเกาหลีใต้ เป็นอย่างไร?",
    "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_en": "How many Gold medals for the country with a Rank of 1 and less than 2 Total medals?",
    "question_th": "ประเทศที่มีอันดับ 1 และน้อยกว่า 2 เหรียญได้เหรียญทองทั้งหมดกี่เหรียญ?",
    "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_en": "How many Gold medals does the country with 2 Silver and more than 2 Bronze have?",
    "question_th": "ประเทศที่มี 2 เหรียญเงินและมากกว่า 2 เหรียญทองแดงมีกี่เหรียญทอง?",
    "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_en": "What is the Age of dorothy Peel as of 1 February 2014 ?",
    "question_th": "อายุของ dorothy Peel ณ วันที่ 1 กุมภาพันธ์ 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_en": "Who is 111years, 358days Age as of 1 February 2014?",
    "question_th": "ใครคืออายุ 111 ปี 358 วัน ณ วันที่ 1 กุมภาพันธ์ 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_en": "Which Capacity has a City of london, and a Stadium of queen's club?",
    "question_th": "ความจุใดที่มีเมืองลอนดอน และสนามกีฬาของสโมสรควีนส์?",
    "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_en": "Which Rank has a Name of thomas morgenstern, and Points larger than 368.9?",
    "question_th": "อันดับใดที่มีชื่อของโทมัส มอร์เกนสเติร์น และมีคะแนนมากกว่า 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_en": "What is the lowest total for bronzes over 1, golds over 8, and fewer than 10 silvers?",
    "question_th": "ผลรวมต่ำสุดสำหรับเหรียญทองแดงมากกว่า 1 เหรียญทองมากกว่า 8 และน้อยกว่า 10 เหรียญเงินคือเท่าใด",
    "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_en": "What is the highest number of silvers for ranks over 7?",
    "question_th": "จำนวนเหรียญเงินสูงสุดสำหรับอันดับมากกว่า 7 คือเท่าใด?",
    "context": "CREATE TABLE table_name_88 (silver INTEGER, rank INTEGER)"
  },
  {
    "answer": "SELECT opponent FROM table_name_51 WHERE record = \"64-78\"",
    "question_en": "Who was the opponent when the record recorded was 64-78?",
    "question_th": "คู่ต่อสู้คือใครเมื่อสถิติบันทึกไว้คือ 64-78?",
    "context": "CREATE TABLE table_name_51 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_55 WHERE record = \"67-82\"",
    "question_en": "When the record was 67-82, what was the final score recorded?",
    "question_th": "เมื่อสถิติอยู่ที่ 67-82 คะแนนสุดท้ายบันทึกไว้เท่าไหร่?",
    "context": "CREATE TABLE table_name_55 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_38 WHERE attendance = \"54,136\"",
    "question_en": "Who was the opponent for the game played with 54,136 people in attendance?",
    "question_th": "ใครคือคู่ต่อสู้ในเกมที่เล่นโดยมีผู้เข้าร่วม 54,136 คน?",
    "context": "CREATE TABLE table_name_38 (opponent VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_19 WHERE player = \"bert coan\"",
    "question_en": "Which position does bert coan play?",
    "question_th": "เบิร์ต โคแคน เล่นตำแหน่งไหน?",
    "context": "CREATE TABLE table_name_19 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_13 WHERE round = 1",
    "question_en": "What is round 1's position?",
    "question_th": "ตำแหน่งรอบ 1 คืออะไร?",
    "context": "CREATE TABLE table_name_13 (position VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT MAX(round) FROM table_name_14 WHERE position = \"running back\"",
    "question_en": "Which Round is the highest one that has a Position of running back?",
    "question_th": "รอบไหนสูงที่สุดที่มีตำแหน่งวิ่งกลับ?",
    "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_en": "Which Position has a Pick smaller than 29, and a School/Club Team of arizona?",
    "question_th": "ตำแหน่งใดที่มีตัวเลือกน้อยกว่า 29 และทีมโรงเรียน/สโมสรของรัฐแอริโซนา",
    "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_en": "Which Round is the lowest one that has a School/Club Team of alabama, and a Pick larger than 43?",
    "question_th": "รอบใดคือรอบที่ต่ำที่สุดที่มีทีมโรงเรียน/สโมสรของอลาบามา และตัวเลือกที่มากกว่า 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_en": "what is the venue of belshina",
    "question_th": "เบลชิน่าเป็นสถานที่จัดงานที่ไหน",
    "context": "CREATE TABLE table_name_94 (venue VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_23 WHERE team = \"neman\"",
    "question_en": "what is the venue of neman",
    "question_th": "สถานที่ของเนมานคือที่ไหน",
    "context": "CREATE TABLE table_name_23 (venue VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_47 WHERE team = \"neman\"",
    "question_en": "what is the venue of neman",
    "question_th": "สถานที่ของเนมานคือที่ไหน",
    "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_en": "Name the total number of pick with round less than 6 and overall of 102",
    "question_th": "ตั้งชื่อจำนวนเลือกทั้งหมดด้วยรอบที่น้อยกว่า 6 และรวมทั้งหมด 102",
    "context": "CREATE TABLE table_name_46 (pick__number VARCHAR, round VARCHAR, overall VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_30 WHERE score = \"4–6 3–6\"",
    "question_en": "Which Outcome has a Score of 4–6 3–6?",
    "question_th": "ผลลัพธ์ใดมีคะแนน 4–6 3–6",
    "context": "CREATE TABLE table_name_30 (outcome VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_43 WHERE score = \"3–6 6–4 4–6\"",
    "question_en": "Which Tournament has a Score of 3–6 6–4 4–6?",
    "question_th": "ทัวร์นาเมนต์ใดมีคะแนน 3–6 6–4 4–6?",
    "context": "CREATE TABLE table_name_43 (tournament VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_11 WHERE score = \"6–1 7–6 (8–6)\"",
    "question_en": "Which Date has a Score of 6–1 7–6 (8–6)?",
    "question_th": "วันไหนมีคะแนน 6–1 7–6 (8–6)?",
    "context": "CREATE TABLE table_name_11 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_71 WHERE date = \"26 september 2004\"",
    "question_en": "Which Score has a Date of 26 september 2004?",
    "question_th": "คะแนนใดมีวันที่ 26 กันยายน พ.ศ. 2547",
    "context": "CREATE TABLE table_name_71 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_90 WHERE score = \"3–6 2–6\"",
    "question_en": "Which Outcome has a Score of 3–6 2–6?",
    "question_th": "ผลลัพธ์ใดมีคะแนน 3–6 2–6",
    "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_en": "Which Surface has an Opponent in the final of daniella dominikovic?",
    "question_th": "Surface คนใดมีคู่ต่อสู้ในรอบสุดท้ายของ Daniella Domininikovic",
    "context": "CREATE TABLE table_name_5 (surface VARCHAR, opponent_in_the_final VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(time_to_ft__m__at_40) AS °__seconds_ FROM table_name_80 WHERE shell__lb_ = 16 AND max_height__ft_ < 22 OFFSET 000",
    "question_en": "What is the amount of time (sum) at 40° that it takes a 16 lb shell to reach a maximum of no more than 22,000 ft?",
    "question_th": "ระยะเวลา (ผลรวม) ที่ 40° ที่ใช้กระสุนขนาด 16 ปอนด์เพื่อไปถึงระดับสูงสุดไม่เกิน 22,000 ฟุตเป็นเท่าใด",
    "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°__seconds_ > 16.3 AND m_v_ft_s = 2200",
    "question_en": "What is the average maximum height of a shell that travels for more than 16.3 seconds at 55° and has a maximum velocity of 2200 ft/s?",
    "question_th": "ความสูงสูงสุดเฉลี่ยของกระสุนปืนที่เดินทางนานกว่า 16.3 วินาทีที่ 55° และมีความเร็วสูงสุด 2,200 ฟุต/วินาที เป็นเท่าใด",
    "context": "CREATE TABLE table_name_19 (max_height__ft_ INTEGER, time_to_ft__m__at_55°__seconds_ VARCHAR, m_v_ft_s VARCHAR)"
  },
  {
    "answer": "SELECT MAX(time_to_ft__m__at_55) AS °__seconds_ FROM table_name_47 WHERE time_to_ft__m__at_40°__seconds_ < 9.6",
    "question_en": "What is the maximum amount of time a shell travels at 55° when it traveled less than 9.6 seconds at 40°?",
    "question_th": "ระยะเวลาสูงสุดที่กระสุนเดินทางที่ 55° เมื่อเดินทางน้อยกว่า 9.6 วินาทีที่ 40° คือเท่าใด?",
    "context": "CREATE TABLE table_name_47 (time_to_ft__m__at_55 INTEGER, time_to_ft__m__at_40°__seconds_ INTEGER)"
  },
  {
    "answer": "SELECT shell__lb_ FROM table_name_6 WHERE time_to_ft__m__at_40°__seconds_ = 12.6",
    "question_en": "What is the weight of the shell that reached its maximum height at 40° in 12.6 seconds?",
    "question_th": "น้ำหนักของเปลือกหอยที่ทำความสูงสูงสุดที่ 40° ใน 12.6 วินาทีเป็นเท่าใด",
    "context": "CREATE TABLE table_name_6 (shell__lb_ VARCHAR, time_to_ft__m__at_40°__seconds_ VARCHAR)"
  },
  {
    "answer": "SELECT AVG(max_height__ft_) FROM table_name_24 WHERE time_to_ft__m__at_25°__seconds_ = \"10.1\" AND shell__lb_ < 12.5",
    "question_en": "What is the average maximum height of the shell smaller than 12.5 lb that reached its maximum height at 25° in 10.1 seconds?",
    "question_th": "ความสูงสูงสุดเฉลี่ยของเปลือกหอยที่เล็กกว่า 12.5 ปอนด์ซึ่งไปถึงความสูงสูงสุดที่ 25° ใน 10.1 วินาทีคือเท่าใด",
    "context": "CREATE TABLE table_name_24 (max_height__ft_ INTEGER, time_to_ft__m__at_25°__seconds_ VARCHAR, shell__lb_ VARCHAR)"
  },
  {
    "answer": "SELECT MAX(attendance) FROM table_name_74 WHERE date = \"october 22, 1967\" AND week < 6",
    "question_en": "What is the highest attendance for the game that was before week 6 on October 22, 1967?",
    "question_th": "ผู้เข้าชมเกมสูงสุดก่อนสัปดาห์ที่ 6 ในวันที่ 22 ตุลาคม พ.ศ. 2510 คือเท่าใด",
    "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_en": "What is the state having a contestant with a talent of classical piano and a hometown from Lancaster, NY?",
    "question_th": "รัฐมีผู้เข้าแข่งขันที่มีความสามารถด้านเปียโนคลาสสิกและมีบ้านเกิดจากเมืองแลงคาสเตอร์ รัฐนิวยอร์ก รัฐอะไร?",
    "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_en": "Whose talent was ballet en pointe?",
    "question_th": "พรสวรรค์ของใครคือบัลเล่ต์ en pointe?",
    "context": "CREATE TABLE table_name_56 (name VARCHAR, talent VARCHAR)"
  },
  {
    "answer": "SELECT state FROM table_name_43 WHERE hometown = \"mesa, az\"",
    "question_en": "What is the state represented by the contestant from Mesa, AZ?",
    "question_th": "ผู้เข้าแข่งขันจากเมซา รัฐแอริโซนาเป็นตัวแทนรัฐใด",
    "context": "CREATE TABLE table_name_43 (state VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT talent FROM table_name_82 WHERE hometown = \"lexington, sc\"",
    "question_en": "What is the talent of the contestant from Lexington, SC?",
    "question_th": "พรสวรรค์ของผู้เข้าแข่งขันจากเล็กซิงตัน เซาท์แคโรไลนา คืออะไร?",
    "context": "CREATE TABLE table_name_82 (talent VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT age_1 FROM table_name_55 WHERE hometown = \"reno, nv\"",
    "question_en": "What is the age of the contestant from Reno, NV?",
    "question_th": "ผู้เข้าแข่งขันจาก 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_en": "Which writer wrote episode 18-09 (652)?",
    "question_th": "นักเขียนคนไหนเขียนตอนที่ 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_en": "What episode was written by jonathan lewis?",
    "question_th": "โจนาธาน ลูอิสเขียนตอนใด",
    "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_en": "What position does Maryland have a player for Round 3?",
    "question_th": "แมริแลนด์มีผู้เล่นในรอบที่ 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_en": "How many picks are there for defensive back for rounds larger than 11?",
    "question_th": "มีกี่ตัวเลือกสำหรับแบ็คป้องกันสำหรับรอบที่มากกว่า 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_en": "What is the highest game that has april 21 as the date?",
    "question_th": "เกมสูงสุดที่มีวันที่ 21 เมษายนเป็นวันที่คืออะไร?",
    "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_en": "What score has a game less than 4, and april 19 as the date?",
    "question_th": "สกอร์ใดที่มีเกมน้อยกว่า 4 และวันที่ 19 เมษายนเป็นวันที่?",
    "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_en": "What opponent has a game less than 6, and april 17 as the date?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีเกมน้อยกว่า 6 และวันที่ 17 เมษายนเป็นวันที่?",
    "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_en": "What is the home team that played Derby County as the away team?",
    "question_th": "เจ้าบ้านที่เจอดาร์บี้ เคาน์ตี้เป็นทีมเยือนคือทีมอะไร?",
    "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_en": "Which home team is ranked no. 7 by tie no.?",
    "question_th": "ทีมเจ้าบ้านใดอยู่ในอันดับที่ 1 7 โดยเสมอกัน?",
    "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_en": "What is the score for the game in which Manchester United was the home team?",
    "question_th": "เกมที่แมนยูเป็นเจ้าบ้านได้สกอร์เท่าไหร่?",
    "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_en": "How many golds does the nation having a rank of 8, fewer than 5 bronzes and more than 1 silver have?",
    "question_th": "ประเทศที่มีอันดับ 8 น้อยกว่า 5 เหรียญทองแดง และมากกว่า 1 เหรียญเงินมีกี่เหรียญทอง",
    "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_en": "What nation was the film from that was in english and had a Literary tradition of canadian literature?",
    "question_th": "ภาพยนตร์จากประเทศใดที่เป็นภาษาอังกฤษและมีประเพณีวรรณกรรมของวรรณคดีแคนาดา",
    "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_en": "What is the literary traidtion for the film in english in 2011?",
    "question_th": "ประเพณีทางวรรณกรรมสำหรับภาพยนตร์ภาษาอังกฤษในปี 2554 คืออะไร?",
    "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_en": "What country was the film made in that was made after 2011?",
    "question_th": "ภาพยนตร์เรื่องนี้สร้างในประเทศใดและสร้างขึ้นหลังปี 2011",
    "context": "CREATE TABLE table_name_10 (country VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT team FROM table_name_62 WHERE rebounds = 48",
    "question_en": "Which team has 48 rebounds?",
    "question_th": "ทีมไหนมี 48 รีบาวด์?",
    "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_en": "What's the lowest amount of 12 games and less than 48 rebounds?",
    "question_th": "12 เกม น้อยกว่า 48 รีบาวด์ ต่ำสุดคือเท่าไร?",
    "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_en": "How many rebounds does Fedor likholitov have with a rank greater than 8?",
    "question_th": "Fedor likholitov มีอันดับมากกว่า 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_en": "Which game has more than 112 rebounds and a rank greater than 3?",
    "question_th": "เกมใดมีรีบาวด์มากกว่า 112 รีบาวด์และมีอันดับมากกว่า 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_en": "What was the score in a place of t5 in the United States?",
    "question_th": "คะแนนของ T5 ในสหรัฐอเมริกาเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_25 (score VARCHAR, place VARCHAR, nation VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_44 WHERE player = \"sophie gustafson\"",
    "question_en": "What was the score for a match where Sophie Gustafson played?",
    "question_th": "แมตช์ที่ โซฟี กุสตาฟสัน เล่นได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_44 (score VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT SUM(rebounds) FROM table_name_12 WHERE games > 22",
    "question_en": "with games more than 22 what is the rebound total?",
    "question_th": "กับเกมที่มากกว่า 22 ผลรวมการเด้งกลับเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_12 (rebounds INTEGER, games INTEGER)"
  },
  {
    "answer": "SELECT location FROM table_name_81 WHERE tournament = \"b.c. open\"",
    "question_en": "What is the location of the b.c. open?",
    "question_th": "BC เปิดที่ตั้งอยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_81 (location VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_83 WHERE score = \"269 (–19)\" AND tournament = \"tallahassee open\"",
    "question_en": "What is the location of the tallahassee open, with a Score of 269 (–19)?",
    "question_th": "ที่ตั้งของแทลลาแฮสซีเปิดอยู่ที่ไหน ด้วยคะแนน 269 (–19)",
    "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_en": "What date did Lanny Wadkins (6) win?",
    "question_th": "Lanny Wadkins (6) ชนะวันที่เท่าไร",
    "context": "CREATE TABLE table_name_12 (date VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_40 WHERE tournament = \"buick-goodwrench open\"",
    "question_en": "What is the Location for the buick-goodwrench open?",
    "question_th": "ที่ตั้งของ buick-goodwrench เปิดอยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_40 (location VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT netflix FROM table_name_98 WHERE series_ep = \"6-02\"",
    "question_en": "What is the Netflix episode that has a series episode of 6-02?",
    "question_th": "Netflix ตอนไหนที่มีซีรีส์ตอน 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_en": "Which segment A item that has a Segment D of wigs?",
    "question_th": "สินค้าเซ็กเมนต์ A รายการใดที่มีวิกเซ็กเมนต์ D",
    "context": "CREATE TABLE table_name_80 (segment_a VARCHAR, segment_d VARCHAR)"
  },
  {
    "answer": "SELECT series_ep FROM table_name_55 WHERE netflix = \"s03e16\"",
    "question_en": "Which series episode has a Netflix episode of S03E16?",
    "question_th": "ซีรีส์ตอนใดมีตอน Netflix ของ 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_en": "Which Netflix episode has an overall episode number under 69 and a Segment D of S Trombone?",
    "question_th": "ตอนใดของ Netflix ที่มีหมายเลขตอนโดยรวมต่ำกว่า 69 และส่วน D ของ 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_en": "Which Species Specific has a Comparative of no, and an Intra-molecular structure of no, and a Link of sourcecode?",
    "question_th": "เฉพาะสายพันธุ์ใดที่มีการเปรียบเทียบของ no และโครงสร้างภายในโมเลกุลของ no และลิงก์ของซอร์สโค้ด",
    "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_en": "Which Intra-molecular structure has a Comparative of no, and a Name of mitarget?",
    "question_th": "โครงสร้างภายในโมเลกุลใดที่มีการเปรียบเทียบเป็นไม่ใช่ และมีชื่อของไมเป้าหมาย",
    "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_en": "Which Comparative has a Name of pictar?",
    "question_th": "การเปรียบเทียบใดมีชื่อ 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_en": "Which Name has an Intra-molecular structure of no, and a Link of webserver, and a Comparative of no?",
    "question_th": "ชื่อใดมีโครงสร้างภายในโมเลกุลเป็น no และมีลิงก์ของเว็บเซิร์ฟเวอร์ และมีค่าเปรียบเทียบเป็น 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_en": "Which Comparative has a Link of sourcecode webserver?",
    "question_th": "การเปรียบเทียบใดมีลิงค์ของเว็บเซิร์ฟเวอร์ซอร์สโค้ด",
    "context": "CREATE TABLE table_name_43 (comparative VARCHAR, link VARCHAR)"
  },
  {
    "answer": "SELECT species_specific FROM table_name_53 WHERE link = \"server/sourcecode\"",
    "question_en": "Which Species Specific has a Link of server/sourcecode?",
    "question_th": "เฉพาะสายพันธุ์ใดมีลิงก์ของเซิร์ฟเวอร์/ซอร์สโค้ด",
    "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_en": "What is the 1st leg for Instituto?",
    "question_th": "ขาที่ 1 ของ 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_en": "What is the home of aggregate's 3-4?",
    "question_th": "บ้านของสกอร์รวม 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_en": "What round did the fight against Sofia Bagherdai go to?",
    "question_th": "การชกกับ Sofia Bagherdai ในรอบใด?",
    "context": "CREATE TABLE table_name_74 (round VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT method FROM table_name_4 WHERE event = \"mars: attack 1\"",
    "question_en": "What was the method of fight completion for the Mars: Attack 1 event?",
    "question_th": "อะไรคือวิธีทำให้การต่อสู้เสร็จสิ้นสำหรับกิจกรรม Mars: Attack 1?",
    "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_en": "what had a score of 70-71-68-72=281?",
    "question_th": "ได้คะแนน 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_en": "what had a score like roberto devicenzo",
    "question_th": "มีคะแนนเท่ากับโรแบร์โต เดวิสเชนโซไหม",
    "context": "CREATE TABLE table_name_97 (score VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(attendance) FROM table_name_98 WHERE week = 11",
    "question_en": "What was the total number who attended during week 11?",
    "question_th": "จำนวนผู้ที่เข้าร่วมในช่วงสัปดาห์ที่ 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_en": "What was the total number of weeks with a result of l 31-21?",
    "question_th": "จำนวนสัปดาห์ทั้งหมดโดยผล l 31-21 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_33 (week VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT 2003 FROM table_name_24 WHERE 2012 = \"1–4\"",
    "question_en": "Which 2003 has a 2012 of 1–4?",
    "question_th": "ปี 2546 ใดมีปี 2555 จาก 1–4",
    "context": "CREATE TABLE table_name_24 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2007 FROM table_name_90 WHERE 2008 = \"0 / 4\"",
    "question_en": "Which 2007 has a 2008 of 0 / 4?",
    "question_th": "ปี 2550 ใดมีปี 2551 เท่ากับ 0 / 4",
    "context": "CREATE TABLE table_name_90 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2007 FROM table_name_7 WHERE 2003 = \"2r\" AND 2004 = \"1r\"",
    "question_en": "Which 2007 has a 2003 of 2r, and a 2004 of 1r?",
    "question_th": "ปี 2550 ใดมีปี 2546 เป็น 2r และปี 2547 เป็น 1r",
    "context": "CREATE TABLE table_name_7 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2010 FROM table_name_86 WHERE 2009 = \"0 / 4\"",
    "question_en": "Which 2010 has a 2009 of 0 / 4?",
    "question_th": "ปี 2010 ใดที่มีปี 2009 เป็น 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_en": "Which 2011 has a 1999 of A, and a 2004 of 2r, and a Career SR of 0 / 10?",
    "question_th": "ปี 2011 ใดที่มีปี 1999 ของ A และปี 2004 ของ 2r และ Career SR เท่ากับ 0/10",
    "context": "CREATE TABLE table_name_96 (career_sr VARCHAR)"
  },
  {
    "answer": "SELECT 2005 FROM table_name_37 WHERE 1999 = \"0–0\"",
    "question_en": "Which 2005 has a 1999 of 0–0?",
    "question_th": "ปี 2548 ใดที่มีปี 1999 เป็น 0–0",
    "context": "CREATE TABLE table_name_37 (Id VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_92 WHERE week = 7",
    "question_en": "what is the date of week 7",
    "question_th": "สัปดาห์ที่ 7 คือวันที่เท่าไร",
    "context": "CREATE TABLE table_name_92 (date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_96 WHERE record = \"39-20-6\"",
    "question_en": "Who was the visitor in the game that led to a 39-20-6 record?",
    "question_th": "ใครคือผู้มาเยือนในเกมที่นำสถิติ 39-20-6?",
    "context": "CREATE TABLE table_name_96 (visitor VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_33 WHERE record = \"48-21-6\"",
    "question_en": "What was the date of the game that led to a 48-21-6 record?",
    "question_th": "วันที่ของเกมที่นำไปสู่สถิติ 48-21-6 คืออะไร?",
    "context": "CREATE TABLE table_name_33 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT AVG(attendance) FROM table_name_50 WHERE date = \"june 11\"",
    "question_en": "Name the average attendance from june 11",
    "question_th": "ตั้งชื่อผู้เข้าร่วมโดยเฉลี่ยตั้งแต่วันที่ 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_en": "What is south africa's margin of victory?",
    "question_th": "ชัยชนะของแอฟริกาใต้คืออะไร?",
    "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_en": "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?",
    "question_th": "คะแนนใดที่มีหนึ่งปีมากกว่าปี 1980 และส่วนต่างของชัยชนะ 2 จังหวะ และประเทศของสหรัฐอเมริกา และผู้เล่นของ 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_en": "What year was the Beaudesert suburb club founded",
    "question_th": "สโมสรชานเมือง Beaudesert ก่อตั้งในปีใด",
    "context": "CREATE TABLE table_name_95 (founded VARCHAR, suburb VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(founded) FROM table_name_96 WHERE suburb = \"nerang\"",
    "question_en": "What year did the Nerang Suburb get founded?",
    "question_th": "ชานเมือง Nerang ก่อตั้งในปีใด",
    "context": "CREATE TABLE table_name_96 (founded VARCHAR, suburb VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_77 WHERE date = \"april 28\"",
    "question_en": "Who was the opponent when the Phillies played on April 28?",
    "question_th": "คู่ต่อสู้เมื่ออีเกิลส์เล่นเมื่อวันที่ 28 เมษายนคือใคร?",
    "context": "CREATE TABLE table_name_77 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(run_rate) FROM table_name_61 WHERE rank = 4",
    "question_en": "What is the run rate for rank 4?",
    "question_th": "อัตราการวิ่งของอันดับ 4 คืออะไร?",
    "context": "CREATE TABLE table_name_61 (run_rate INTEGER, rank VARCHAR)"
  },
  {
    "answer": "SELECT released FROM table_name_44 WHERE chinese_title = \"反正 卓文萱\"",
    "question_en": "Chinese title of 反正 卓文萱 had what released?",
    "question_th": "ชื่อภาษาจีนของ 反正 卓文萱 มีอะไรปล่อยออกมาบ้าง?",
    "context": "CREATE TABLE table_name_44 (released VARCHAR, chinese_title VARCHAR)"
  },
  {
    "answer": "SELECT chinese_title FROM table_name_94 WHERE album_number = \"5th\"",
    "question_en": "Album # of 5th is what chinese title?",
    "question_th": "อัลบั้มที่ 5 ชื่อภาษาจีนชื่ออะไรคะ?",
    "context": "CREATE TABLE table_name_94 (chinese_title VARCHAR, album_number VARCHAR)"
  },
  {
    "answer": "SELECT released FROM table_name_6 WHERE album_number = \"1st\"",
    "question_en": "Album # of 1st was released on what date?",
    "question_th": "อัลบั้ม #1st ออกเมื่อวันไหน?",
    "context": "CREATE TABLE table_name_6 (released VARCHAR, album_number VARCHAR)"
  },
  {
    "answer": "SELECT chinese_title FROM table_name_57 WHERE album_number = \"3rd\"",
    "question_en": "Album # of 3rd is what chinese title?",
    "question_th": "อัลบั้มที่ 3 ชื่อภาษาจีนชื่ออะไรคะ?",
    "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_en": "English title of oxygenie of happiness has what release date?",
    "question_th": "ชื่อภาษาอังกฤษ Oxygenie of Happiness มีกำหนดวางจำหน่ายวันไหน?",
    "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_en": "Which Score has a Home of quebec nordiques on april 16?",
    "question_th": "คะแนนใดมีบ้านของควิเบกนอร์ดิกในวันที่ 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–5\"",
    "question_en": "WHich Record has a Visitor of quebec nordiques with a Score of 7–5?",
    "question_th": "บันทึกใดมีผู้เข้าชมชาวควิเบกนอร์ดิกด้วยคะแนน 7–5",
    "context": "CREATE TABLE table_name_37 (record VARCHAR, visitor VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_94 WHERE date = \"april 8\"",
    "question_en": "Who is the Visitor on april 8?",
    "question_th": "ใครคือผู้มาเยือนในวันที่ 8 เมษายน?",
    "context": "CREATE TABLE table_name_94 (visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_92 WHERE score = \"4–5\" AND visitor = \"quebec nordiques\"",
    "question_en": "When has Score of 4–5 and quebec nordiques as Visitor?",
    "question_th": "เมื่อใดจะมีคะแนน 4–5 และควิเบกนอร์ดิคเป็นผู้มาเยือน",
    "context": "CREATE TABLE table_name_92 (date VARCHAR, score VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_78 WHERE date = \"april 14\"",
    "question_en": "WHo is the Visitor on april 14?",
    "question_th": "ใครคือผู้มาเยือนในวันที่ 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–5\"",
    "question_en": "Which Record has a Visitor of quebec nordiques with a Score of 4–5?",
    "question_th": "บันทึกใดมีผู้เข้าชมชาวควิเบกนอร์ดิกด้วยคะแนน 4–5",
    "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_en": "What's the highest December against the Pittsburgh Penguins in a game larger than 27, with less than 41 points?",
    "question_th": "เดือนธันวาคมสูงสุดกับ Pittsburgh Penguins ในเกมที่ใหญ่กว่า 27 คะแนนโดยมีคะแนนน้อยกว่า 41 แต้มคือเท่าใด",
    "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_en": "What's the score for December of 30?",
    "question_th": "คะแนนวันที่ 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_en": "What is the average number of games associated with 6 points and under 2 losses?",
    "question_th": "จำนวนเกมโดยเฉลี่ยที่เกี่ยวข้องกับ 6 แต้มและการแพ้ต่ำกว่า 2 ครั้งเป็นจำนวนเท่าใด?",
    "context": "CREATE TABLE table_name_80 (games INTEGER, points VARCHAR, lost VARCHAR)"
  },
  {
    "answer": "SELECT MIN(points) FROM table_name_56 WHERE games > 5",
    "question_en": "What is the low point total when there are over 5 games?",
    "question_th": "คะแนนรวมต่ำสุดเมื่อมีมากกว่า 5 เกมเป็นเท่าไหร่?",
    "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_en": "What was the share of votes when there were more than 56 electors and the year was more recent than 1950?",
    "question_th": "ส่วนแบ่งการลงคะแนนเสียงเมื่อมีผู้มีสิทธิเลือกตั้งมากกว่า 56 คนและปีล่าสุดมากกว่าปี 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_en": "What is the total of electors when the share of votes was 11,0%?",
    "question_th": "จำนวนผู้มีสิทธิเลือกตั้งทั้งหมดเมื่อส่วนแบ่งคะแนนเสียงคือ 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_en": "Which Lost has Games larger than 7?",
    "question_th": "Lost ใดมีเกมที่ใหญ่กว่า 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_en": "Which Points have a Lost smaller than 1, and Games larger than 7?",
    "question_th": "คะแนนใดที่แพ้น้อยกว่า 1 และเกมที่ใหญ่กว่า 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_en": "Which Lost has Points larger than 13?",
    "question_th": "แพ้ไหนมีคะแนนมากกว่า 13?",
    "context": "CREATE TABLE table_name_91 (lost INTEGER, points INTEGER)"
  },
  {
    "answer": "SELECT AVG(points) FROM table_name_98 WHERE drawn > 1",
    "question_en": "Which Points have a Drawn larger than 1?",
    "question_th": "คะแนนใดที่มีการจั่วมากกว่า 1?",
    "context": "CREATE TABLE table_name_98 (points INTEGER, drawn INTEGER)"
  },
  {
    "answer": "SELECT diameter FROM table_name_28 WHERE year_of_issue = 1977",
    "question_en": "Which Diameter has a Year of Issue of 1977?",
    "question_th": "เส้นผ่านศูนย์กลางใดมีปีที่ออก พ.ศ. 2520?",
    "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_en": "Which Year of Issue has a Thickness of 1.42mm?",
    "question_th": "ปีที่ผลิตใดมีความหนา 1.42 มม.",
    "context": "CREATE TABLE table_name_52 (year_of_issue INTEGER, thickness VARCHAR)"
  },
  {
    "answer": "SELECT diameter FROM table_name_93 WHERE thickness = \"1.3mm\"",
    "question_en": "Which Diameter has a Thickness of 1.3mm?",
    "question_th": "เส้นผ่านศูนย์กลางใดมีความหนา 1.3 มม.",
    "context": "CREATE TABLE table_name_93 (diameter VARCHAR, thickness VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_name_36 WHERE candidate = \"grech louis grech\"",
    "question_en": "Which party's candidate is Grech Louis Grech?",
    "question_th": "ผู้สมัครของพรรคใดคือ เกรช หลุยส์ เกรช",
    "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_en": "What is the sport played in Iowa City on February 14, 2009?",
    "question_th": "กีฬาที่เล่นในไอโอวาซิตีเมื่อวันที่ 14 กุมภาพันธ์ พ.ศ. 2552 คืออะไร?",
    "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_en": "What is the series of the winning team in Iowa, for softball?",
    "question_th": "ทีมที่ชนะในไอโอวาสำหรับซอฟท์บอลคือซีรีส์อะไร?",
    "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_en": "What is the score of the match that was against alberto berasategui?",
    "question_th": "แมตช์ที่เจอกับอัลแบร์โต เบราซาเตกีสกอร์เท่าไหร่?",
    "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_en": "How many rebounds does Ann Wauters have?",
    "question_th": "Ann Wauters มีกี่รีบาวด์?",
    "context": "CREATE TABLE table_name_89 (rebounds VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_56 WHERE games = 10",
    "question_en": "Who played 10 games?",
    "question_th": "ใครเล่น 10 เกมบ้าง?",
    "context": "CREATE TABLE table_name_56 (name VARCHAR, games VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(rebounds) FROM table_name_56 WHERE name = \"ann wauters\"",
    "question_en": "What is the total number of rebounds values for Ann Wauters?",
    "question_th": "จำนวนการรีบาวด์ทั้งหมดของ 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_en": "Who did the Colts play against on September 25, 1966?",
    "question_th": "โคลท์เล่นกับใครในวันที่ 25 กันยายน พ.ศ. 2509",
    "context": "CREATE TABLE table_name_8 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_61 WHERE attendance = \"40,005\"",
    "question_en": "What is the date of the game with 40,005 in attendance?",
    "question_th": "วันที่ของเกมที่มีผู้เข้าร่วม 40,005 คน?",
    "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_en": "What is the lowest week number for the game that was at milwaukee county stadium?",
    "question_th": "หมายเลขสัปดาห์ต่ำสุดของเกมที่สนามมิลวอกีเคาน์ตีคือเท่าใด?",
    "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_en": "After week 11, what was the Result on December 13, 1964?",
    "question_th": "หลังจากสัปดาห์ที่ 11 ผลลัพธ์ในวันที่ 13 ธันวาคม 2507 เป็นอย่างไรบ้าง",
    "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_en": "After week 8, what was the Attendance on November 1, 1964?",
    "question_th": "หลังจากสัปดาห์ที่ 8 ผู้เข้าร่วมในวันที่ 1 พฤศจิกายน พ.ศ. 2507 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_43 (attendance INTEGER, date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT alternate FROM table_name_19 WHERE second = \"piotras gerasimovici\"",
    "question_en": "What is the alternate of the nation with Piotras Gerasimovici as the second?",
    "question_th": "ตัวสำรองของประเทศที่มี ปิโอทรัส เกราซิโมวิซี่ เป็นรองคืออะไร?",
    "context": "CREATE TABLE table_name_19 (alternate VARCHAR, second VARCHAR)"
  },
  {
    "answer": "SELECT alternate FROM table_name_97 WHERE second = \"hubert gründhammer\"",
    "question_en": "What is the alternate of the nation with hubert gründhammer as the second?",
    "question_th": "อะไรคือทางเลือกของประเทศที่มีฮูเบิร์ต กรุนด์แฮมเมอร์เป็นรอง?",
    "context": "CREATE TABLE table_name_97 (alternate VARCHAR, second VARCHAR)"
  },
  {
    "answer": "SELECT alternate FROM table_name_55 WHERE skip = \"erkki lill\"",
    "question_en": "What is the alternate of the nation with Erkki Lill as the skip?",
    "question_th": "ทางเลือกของประเทศที่มี Erkki Lill เป็นตัวข้ามคืออะไร?",
    "context": "CREATE TABLE table_name_55 (alternate VARCHAR, skip VARCHAR)"
  },
  {
    "answer": "SELECT skip FROM table_name_74 WHERE alternate = \"laurens van der windt\"",
    "question_en": "Who is the skip of the nation with Laurens van der Windt as the alternate?",
    "question_th": "ใครคือตัวเต็งทีมชาติโดยมี ลอเรนส์ ฟาน เดอร์ วินด์ต์ เป็นตัวสำรอง?",
    "context": "CREATE TABLE table_name_74 (skip VARCHAR, alternate VARCHAR)"
  },
  {
    "answer": "SELECT lead FROM table_name_46 WHERE alternate = \"juha pekaristo\"",
    "question_en": "Who is the lead of the nation with Juha Pekaristo as the alternate?",
    "question_th": "ใครคือผู้นำของประเทศ โดยมี จูฮา เปคาริสโต เป็นตัวสำรอง?",
    "context": "CREATE TABLE table_name_46 (lead VARCHAR, alternate VARCHAR)"
  },
  {
    "answer": "SELECT MAX(round) FROM table_name_24 WHERE position = \"center\"",
    "question_en": "What is the highest round in which a player was picked for the Center position?",
    "question_th": "รอบสูงสุดที่ผู้เล่นได้รับเลือกให้ดำรงตำแหน่งเซ็นเตอร์คือรอบใด",
    "context": "CREATE TABLE table_name_24 (round INTEGER, position VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_10 WHERE player = \"john flatters\"",
    "question_en": "What is John Flatters' nationality?",
    "question_th": "สัญชาติของ John Flatters คืออะไร?",
    "context": "CREATE TABLE table_name_10 (nationality VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_67 WHERE player = \"jeremy duchesne\"",
    "question_en": "What is Jeremy Duchesne's position?",
    "question_th": "ตำแหน่งของ Jeremy Duchesne คืออะไร?",
    "context": "CREATE TABLE table_name_67 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MIN(date) FROM table_name_51 WHERE attendance = \"1,034\"",
    "question_en": "When was the attendance 1,034?",
    "question_th": "มีผู้เข้าร่วม 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_en": "what was the opponent on 26 october 1889?",
    "question_th": "คู่ต่อสู้ในวันที่ 26 ตุลาคม พ.ศ. 2432 คืออะไร?",
    "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_en": "1950 larger than 80, and a 1960 of 196, and a 1990 larger than 131 what is the lowest 1996[2]?",
    "question_th": "1950 ใหญ่กว่า 80 และ 1960 จาก 196 และ 1990 ใหญ่กว่า 131 ค่าต่ำสุดของปี 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_en": "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?",
    "question_th": "1960 ใหญ่กว่า 196 และ 1996[2] เล็กกว่า 726 และ 1980 ใหญ่กว่า 125 และ 1990 ใหญ่กว่า 848 ค่าสูงสุดในปี 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_en": "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?",
    "question_th": "1980 เล็กกว่า 719 และ 1960 เล็กกว่า 205 และ 1996[2] เล็กกว่า 364 และ 1970 ใหญ่กว่า 251 คือค่าสูงสุดในปี 1990",
    "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_en": "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?",
    "question_th": "1996[2] มากกว่า 68 และ 1990 เล็กกว่า 352 และ 1970 ใหญ่กว่า 105 และ 1950 จาก 119 คือผลรวมของ 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_en": "1996[2] of 127, and a 1990 smaller than 120 is the sum of 1990?",
    "question_th": "1996[2] ของ 127 และ 1990 ที่น้อยกว่า 120 คือผลรวมของ 1990?",
    "context": "CREATE TABLE table_name_89 (Id VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_60 WHERE result = \"w 14–6\"",
    "question_en": "Who was the opponent at the game with a result of w 14–6?",
    "question_th": "คู่ต่อสู้ในเกมคือใครโดยผลสกอร์ 14–6?",
    "context": "CREATE TABLE table_name_60 (opponent VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_38 WHERE week < 8 AND record = \"2–3–2\"",
    "question_en": "What was the result of the game with a record of 2–3–2 before week 8?",
    "question_th": "อะไรคือผลลัพธ์ของเกมที่มีสถิติ 2–3–2 ก่อนสัปดาห์ที่ 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_en": "What was the earliest week with a game at the Braves Field on October 2, 1932?",
    "question_th": "สัปดาห์แรกสุดของเกมที่ Braves Field เมื่อวันที่ 2 ตุลาคม พ.ศ. 2475 คือสัปดาห์ใด",
    "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_en": "What was the record at the game on November 13, 1932?",
    "question_th": "สถิติในเกมเมื่อวันที่ 13 พฤศจิกายน พ.ศ. 2475 คืออะไร?",
    "context": "CREATE TABLE table_name_38 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT role FROM table_name_18 WHERE actor = \"kevin bishop\"",
    "question_en": "What role is Kevin Bishop the actor?",
    "question_th": "เควิน บิชอป เป็นนักแสดงบทบาทอะไร?",
    "context": "CREATE TABLE table_name_18 (role VARCHAR, actor VARCHAR)"
  },
  {
    "answer": "SELECT duration FROM table_name_47 WHERE actor = \"mike walling\"",
    "question_en": "What is the duration for mike walling as the actor?",
    "question_th": "ไมค์ วอลลิ่ง ในฐานะนักแสดงมีระยะเวลานานแค่ไหน?",
    "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_en": "What is the duration that has 3 for appearances, and james garret as the character?",
    "question_th": "ระยะเวลาในการปรากฏตัว 3 ครั้งและมีเจมส์ การ์เร็ตเป็นตัวละครคืออะไร?",
    "context": "CREATE TABLE table_name_20 (duration VARCHAR, appearances VARCHAR, character VARCHAR)"
  },
  {
    "answer": "SELECT duration FROM table_name_36 WHERE actor = \"nickolas grace\"",
    "question_en": "What is the duration for nickolas grace as the actor?",
    "question_th": "นิโคลัส เกรซ ในฐานะนักแสดงใช้เวลานานแค่ไหน?",
    "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–14\"",
    "question_en": "Time ( ET ) of 1:00pm, and a Result of w 34–14 has what record?",
    "question_th": "เวลา ( ET ) เวลา 13.00 น. และผลลัพธ์ของ ส. 34–14 มีบันทึกอะไรบ้าง?",
    "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_en": "Date of sun. oct. 1 has what location?",
    "question_th": "วันที่พระอาทิตย์. ต.ค. 1 มีสถานที่ใดบ้าง?",
    "context": "CREATE TABLE table_name_29 (location VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_83 WHERE record = \"3–3\"",
    "question_en": "Record of 3–3 has what result?",
    "question_th": "สถิติ 3–3 ส่งผลอย่างไร?",
    "context": "CREATE TABLE table_name_83 (result VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT time___et__ FROM table_name_65 WHERE date = \"sun. oct. 29\"",
    "question_en": "Date of sun. oct. 29 has what time (et)?",
    "question_th": "วันที่พระอาทิตย์. ต.ค. 29 กี่โมง (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_en": "How many games have more than 10 points and more than 2 draws?",
    "question_th": "มีกี่เกมที่ได้เกิน 10 แต้ม และเสมอกันมากกว่า 2 นัด?",
    "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_en": "What is the sum of losses that have points of 11 and more than 1 draw?",
    "question_th": "ผลรวมขาดทุนที่มี 11 แต้มและเสมอมากกว่า 1 แต้มเป็นเท่าใด?",
    "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_en": "What is the greatest points value that have draws under 2 and 2 losses?",
    "question_th": "ค่าคะแนนสูงสุดที่เสมอต่ำกว่า 2 และ 2 แพ้คืออะไร?",
    "context": "CREATE TABLE table_name_67 (points INTEGER, drawn VARCHAR, lost VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(lost) FROM table_name_36 WHERE drawn < 1",
    "question_en": "How many losses have draw values under 1?",
    "question_th": "มีการสูญเสียกี่ครั้งที่ค่าเสมอต่ำกว่า 1?",
    "context": "CREATE TABLE table_name_36 (lost VARCHAR, drawn INTEGER)"
  },
  {
    "answer": "SELECT MIN(february) FROM table_name_32 WHERE points < 57",
    "question_en": "What's the lowest February for less than 57 points?",
    "question_th": "กุมภาพันธ์ต่ำสุดต่ำกว่า 57 จุดคือเท่าไร?",
    "context": "CREATE TABLE table_name_32 (february INTEGER, points INTEGER)"
  },
  {
    "answer": "SELECT SUM(february) FROM table_name_88 WHERE opponent = \"montreal canadiens\"",
    "question_en": "What's the February for the game against the Montreal Canadiens?",
    "question_th": "เกมกับมอนทรีออล คานาเดียนส์ในเดือนกุมภาพันธ์คือช่วงไหน?",
    "context": "CREATE TABLE table_name_88 (february INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_22 WHERE game = 58",
    "question_en": "What's the record for Game 58?",
    "question_th": "บันทึกของเกม 58 คืออะไร?",
    "context": "CREATE TABLE table_name_22 (record VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_15 WHERE season = \"2005–06\"",
    "question_en": "Which Winner has a Season of 2005–06?",
    "question_th": "ผู้ชนะคนใดมีฤดูกาล 2548–06?",
    "context": "CREATE TABLE table_name_15 (winner VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT runner_up FROM table_name_72 WHERE season = \"2000–01\"",
    "question_en": "Which Runner-up played in the Season of 2000–01?",
    "question_th": "รองชนะเลิศคนใดที่เล่นในฤดูกาล 2000–01?",
    "context": "CREATE TABLE table_name_72 (runner_up VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_88 WHERE season = \"2010–11\"",
    "question_en": "What was the venue during the Season of 2010–11?",
    "question_th": "สถานที่จัดงานในช่วงฤดูกาล 2010–11 คืออะไร?",
    "context": "CREATE TABLE table_name_88 (venue VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_13 WHERE runner_up = \"larne\" AND season = \"2003–04\"",
    "question_en": "Which Winner has a Runner-up of larne, and a Season of 2003–04?",
    "question_th": "ผู้ชนะคนใดมีรองแชมป์ลาร์น และฤดูกาลปี 2546–04",
    "context": "CREATE TABLE table_name_13 (winner VARCHAR, runner_up VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_30 WHERE score = \"1 – 0\" AND season = \"2011–12\"",
    "question_en": "Which Winner has a Score of 1 – 0, and a Season of 2011–12?",
    "question_th": "ผู้ชนะคนใดมีคะแนน 1 – 0 และฤดูกาล 2011–12",
    "context": "CREATE TABLE table_name_30 (winner VARCHAR, score VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_78 WHERE name = \"martin rucker\"",
    "question_en": "What position does Martin Rucker play?",
    "question_th": "Martin Rucker เล่นตำแหน่งอะไร?",
    "context": "CREATE TABLE table_name_78 (position VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT MIN(round) FROM table_name_21 WHERE name = \"paul hubbard\"",
    "question_en": "What was the lowest round for Paul Hubbard?",
    "question_th": "รอบต่ำสุดของ 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_en": "What was the lowest round for a tight end position?",
    "question_th": "รอบต่ำสุดสำหรับตำแหน่งท้ายสุดคืออะไร?",
    "context": "CREATE TABLE table_name_94 (round INTEGER, position VARCHAR)"
  },
  {
    "answer": "SELECT years FROM table_name_5 WHERE ties > 31",
    "question_en": "What years did the person coach who had more than 31 ties?",
    "question_th": "โค้ชคนใดที่มีความสัมพันธ์มากกว่า 31 ครั้งในปีใด",
    "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_en": "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?",
    "question_th": "จำนวนชัยชนะโดยเฉลี่ยของผู้ที่เป็นโค้ชตั้งแต่ปี 1951 ถึง 1956 และแพ้น้อยกว่า 174 ครั้งและเสมอกันน้อยกว่า 6 ครั้งเป็นเท่าใด",
    "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_en": "Who was the coach who had 215 losses?",
    "question_th": "ใครคือโค้ชที่แพ้ถึง 215 นัด?",
    "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_en": "What years did the person coach who had more than 1 tie, mess than 311 wins and 174 losses?",
    "question_th": "โค้ชคนไหนที่เสมอมากกว่า 1 ครั้ง เลอะเทอะมากกว่าชนะ 311 ครั้ง แพ้ 174 ครั้ง?",
    "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_en": "What years did the person coach who had less than 82 wins and more than 24 losses?",
    "question_th": "โค้ชคนไหนที่ชนะน้อยกว่า 82 ครั้งและแพ้มากกว่า 24 ครั้งในปีใด",
    "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_en": "Which Points have a Game larger than 25, and an Opponent of dallas stars?",
    "question_th": "แต้มใดที่มีเกมมากกว่า 25 และฝ่ายตรงข้ามของดัลลัสสตาร์?",
    "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–1 ot\"",
    "question_en": "Which Record has a December smaller than 28, and Points smaller than 38, and a Game smaller than 26, and a Score of 0–1 ot?",
    "question_th": "สถิติใดที่มีเดือนธันวาคมน้อยกว่า 28 และแต้มน้อยกว่า 38 และเกมน้อยกว่า 26 และคะแนน 0–1 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_en": "Which Opponent has a Game of 31?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีเกม 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–0\"",
    "question_en": "Which Record has Points smaller than 40, and a Game larger than 25, and a Score of 2–0?",
    "question_th": "สถิติใดมีคะแนนน้อยกว่า 40 และเกมที่มากกว่า 25 และคะแนน 2–0",
    "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_en": "Episode of 9 in which performer 3 had?",
    "question_th": "ตอนที่ 9 นักแสดง 3 คนไหนมี?",
    "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_en": "Date of 8 july 1994 involves which performer 1?",
    "question_th": "วันที่ 8 กรกฎาคม 1994 มีนักแสดงคนไหน 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_en": "Date of 15 july 1994 involves which performer 3?",
    "question_th": "วันที่ 15 กรกฎาคม 1994 มีนักแสดงคนไหน 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_en": "Performer 2 of chip esten has what performer 3?",
    "question_th": "นักแสดงที่ 2 ของชิปเอสเตนมีนักแสดงคนที่ 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_en": "Which Name has a Pennant number of f82?",
    "question_th": "ชื่อใดมีชายธงเป็น 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_en": "What is the Launched which is on 3 may 2001?",
    "question_th": "เปิดตัวในวันที่ 3 พฤษภาคม พ.ศ. 2544 คืออะไร?",
    "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_en": "What is the Homeport that has a Laid down on 14 december 1985?",
    "question_th": "โฮมพอร์ตที่ได้วางลงเมื่อวันที่ 14 ธันวาคม พ.ศ. 2528 คืออะไร?",
    "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_en": "What kind of Launched has a Homeport (as of July 2013) of sold to chile, and a Pennant number of f80?",
    "question_th": "Launched ประเภทใดที่มี Homeport (ณ เดือนกรกฎาคม 2013) ขายให้กับชิลีและมีชายธงจำนวน 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_en": "Which player had more than 25 events?",
    "question_th": "ผู้เล่นคนไหนมีกิจกรรมมากกว่า 25 รายการ?",
    "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_en": "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?",
    "question_th": "ตอนที่อันดับต่ำกว่า 7 มีเงินรางวัลเท่าไหร่ มีมากกว่า 6 รายการ และประเทศคือฟิจิ",
    "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_en": "What is the least amount of prize money when there are 21 events?",
    "question_th": "เงินรางวัลน้อยที่สุดเมื่อมี 21 รายการคือเท่าไร?",
    "context": "CREATE TABLE table_name_96 (prize_money___ INTEGER, events VARCHAR)"
  },
  {
    "answer": "SELECT series_ep FROM table_name_45 WHERE netflix = \"s04e21\"",
    "question_en": "Which series episode has a netflix figure of s04e21?",
    "question_th": "ซีรีย์ตอนไหนมีฟิกเกอร์ netflix s04e21 บ้างคะ?",
    "context": "CREATE TABLE table_name_45 (series_ep VARCHAR, netflix VARCHAR)"
  },
  {
    "answer": "SELECT segment_a FROM table_name_77 WHERE netflix = \"s04e24\"",
    "question_en": "Which segment a's netflix figure is s04e24?",
    "question_th": "ฟิกเกอร์ Netflix ของเซกเมนต์ A คือ 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_en": "How many episodes have a segment d that is goalie masks (part 2)?",
    "question_th": "มีทั้งหมดกี่ตอนครับที่เป็นหน้ากากผู้รักษาประตู (ภาค 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_en": "Which episode's segment b is s hacksaw?",
    "question_th": "ภาค b ของตอนไหนเป็นเลือยตัดโลหะ?",
    "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_en": "When was Lachlan Dale born?",
    "question_th": "Lachlan Dale เกิดเมื่อไหร่?",
    "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_en": "Which batter played P and was born 18 April 1984?",
    "question_th": "แป้งคนไหนที่เล่นเป็น พี และเกิดวันที่ 18 เมษายน พ.ศ. 2527",
    "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_en": "Which Surname has Bats of r, and a Position of p, and a DOB of 20 may 1989?",
    "question_th": "นามสกุลใดมี Bats เป็น r และตำแหน่ง p และ DOB เท่ากับ 20 พฤษภาคม 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_en": "Which Position has Throws of r, and a DOB of 12 february 1983?",
    "question_th": "ตำแหน่งใดที่มีการโยน r และวันเกิดของวันที่ 12 กุมภาพันธ์ 1983",
    "context": "CREATE TABLE table_name_59 (position VARCHAR, throws VARCHAR, dob VARCHAR)"
  },
  {
    "answer": "SELECT throws FROM table_name_10 WHERE surname = \"needle\"",
    "question_en": "How many throws did Needle have?",
    "question_th": "นีดเดิ้ลขว้างได้กี่ครั้ง?",
    "context": "CREATE TABLE table_name_10 (throws VARCHAR, surname VARCHAR)"
  },
  {
    "answer": "SELECT dob FROM table_name_8 WHERE bats = \"s\" AND position = \"inf\"",
    "question_en": "Which DOB has Bats of s, and a Position of inf?",
    "question_th": "DOB ใดมี Bats เป็น s และตำแหน่งของ 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_en": "What is the Lap Length of the race with a Grand Prix Fia Category?",
    "question_th": "ความยาวรอบของการแข่งขันในประเภท Grand Prix Fia คืออะไร?",
    "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_en": "What is the Race on July 30, 1950 with a Formula 2 Fia, non-championship?",
    "question_th": "การแข่งขันคืออะไรในวันที่ 30 กรกฎาคม พ.ศ. 2493 ด้วย Formula 2 Fia ไม่ใช่แชมป์?",
    "context": "CREATE TABLE table_name_47 (race VARCHAR, category VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_62 WHERE time = \"3:05\"",
    "question_en": "What was his record when the match went for 3:05?",
    "question_th": "บันทึกของเขาเมื่อการแข่งขันดำเนินไปในเวลา 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_en": "How many rounds did the match go for the Bellator 72 event?",
    "question_th": "แข่งไปกี่รอบแล้วสำหรับรุ่น Bellator 72?",
    "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_en": "What is the sum of the live viewers for episodes with share over 5?",
    "question_th": "ยอดรวมผู้ชมสดตอนที่มีการแชร์มากกว่า 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_en": "Which Callsign includes a frequency under 1210, Newsradio 740 KTRH, and webcasts with listen live?",
    "question_th": "Callsign ใดที่มีความถี่ต่ำกว่า 1210, Newsradio 740 KTRH และเว็บคาสต์พร้อมฟังสด",
    "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_en": "Which website includes a webcast of listen live, a frequency under 1050, and is licensed in the city of Monterrey?",
    "question_th": "เว็บไซต์ใดมีเว็บแคสต์ฟังสด ความถี่ต่ำกว่า 1,050 และได้รับอนุญาตในเมืองมอนเตร์เรย์",
    "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_en": "The KTRH.com website includes which type of webcast?",
    "question_th": "เว็บไซต์ KTRH.com มีเว็บคาสท์ประเภทใดบ้าง?",
    "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_en": "Which website includes a webcast of listen live, a frequency under 680, and was licensed in the city of San Antonio.",
    "question_th": "เว็บไซต์ใดที่มีเว็บแคสต์ฟังสด ความถี่ต่ำกว่า 680 และได้รับอนุญาตจากเมืองซานอันโตนิโอ",
    "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_en": "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?",
    "question_th": "สถานี AM ระยะไกลใดที่มีความถี่ต่ำที่สุดและรวมเว็บคาสต์ของการฟังสด ได้รับใบอนุญาตในเมืองมอนเตร์เรย์ และใช้สัญญาณเรียกขานของ 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_en": "Which Games is the highest one that has a Drawn smaller than 0?",
    "question_th": "เกมใดคือเกมที่สูงที่สุดที่มีการเสมอน้อยกว่า 0?",
    "context": "CREATE TABLE table_name_26 (games INTEGER, drawn INTEGER)"
  },
  {
    "answer": "SELECT score FROM table_name_11 WHERE game = 6",
    "question_en": "What is the score for game 6?",
    "question_th": "เกมที่ 6 คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_11 (score VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT SUM(capacity) FROM table_name_38 WHERE location = \"mogilev\"",
    "question_en": "Which Capacity has a Location of mogilev?",
    "question_th": "ความจุใดมีที่ตั้งของ mogilev?",
    "context": "CREATE TABLE table_name_38 (capacity INTEGER, location VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_93 WHERE district = \"california 2\"",
    "question_en": "What was the District of California 2 result?",
    "question_th": "ผลลัพธ์ของ District of California 2 คืออะไร?",
    "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_en": "What was the district Incumbent Julius Kahn was in that was smaller than 1906?",
    "question_th": "เขตที่ดำรงตำแหน่งของ Julius Kahn อยู่ในเขตใดที่เล็กกว่าปี 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_en": "What was the lowest re-elected result for Sylvester C. Smith?",
    "question_th": "ผลการเลือกตั้งใหม่ต่ำสุดของ 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_en": "What was the result for Julius Kahn's first election of 1898?",
    "question_th": "ผลลัพธ์ของการเลือกตั้งครั้งแรกของ Julius Kahn ในปี พ.ศ. 2441 คืออะไร?",
    "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_en": "Which party had a result of retired democratic hold and a first elected earlier than 1884 with an incumbent of samuel dibble?",
    "question_th": "พรรคใดที่เป็นผลมาจากการยึดครองระบอบประชาธิปไตยที่เกษียณแล้วและได้รับการเลือกตั้งครั้งแรกก่อนปี พ.ศ. 2427 โดยมีผู้ดำรงตำแหน่งเป็นซามูเอล",
    "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_en": "Which district had a first elected in 1882 with a result of re-elected?",
    "question_th": "เขตใดได้รับการเลือกตั้งครั้งแรกในปี พ.ศ. 2425 โดยมีผลการเลือกตั้งใหม่",
    "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_en": "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?",
    "question_th": "ค่าเฉลี่ยใดคือค่าต่ำสุดที่มีคะแนนรวมน้อยกว่า 134 และจำนวนการเต้นรำน้อยกว่า 3 และอันดับโดยเฉลี่ยน้อยกว่า 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_en": "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?",
    "question_th": "คู่ใดมีอันดับโดยเฉลี่ยมากกว่า 3 และมีค่าเฉลี่ยมากกว่า 16.5 และมีคะแนนรวมน้อยกว่า 195 และจำนวนการเต้นรำมากกว่า 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_en": "Which Rank by average is the lowest one that has a Total of 425, and a Place larger than 1?",
    "question_th": "อันดับโดยเฉลี่ยใดคืออันดับต่ำสุดที่มีคะแนนรวม 425 และอันดับที่มากกว่า 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_en": "What nation are carolina hermann / daniel hermann from?",
    "question_th": "แคโรไลนา เฮอร์มันน์ / แดเนียล เฮอร์มันน์ มาจากประเทศใด",
    "context": "CREATE TABLE table_name_64 (nation VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_71 WHERE points = 141.48",
    "question_en": "What is the rank associated with 141.48 points?",
    "question_th": "อันดับที่เกี่ยวข้องกับ 141.48 คะแนนคืออะไร?",
    "context": "CREATE TABLE table_name_71 (rank VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_88 WHERE points = 124.51",
    "question_en": "What competitors are scored 124.51 points?",
    "question_th": "คู่แข่งคนไหนได้คะแนน 124.51 คะแนน?",
    "context": "CREATE TABLE table_name_88 (name VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT pat_robertson FROM table_name_64 WHERE george_hw_bush = \"76%\"",
    "question_en": "At what percent was Pat Robertson when George H.W. Bush had 76%?",
    "question_th": "Pat Robertson มีเปอร์เซ็นต์เท่าใดเมื่อ George HW Bush มี 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_en": "When George H.W. Bush had 81%, and Pat Robertson had 9%, what did Bob Dole have?",
    "question_th": "เมื่อ George HW Bush มี 81% และ Pat Robertson มี 9% Bob Dole ได้อะไร",
    "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_en": "When Pat Robertson was at 16%, what did Pete du Pont have?",
    "question_th": "เมื่อ Pat Robertson อยู่ที่ 16% Pete du Pont มีอะไรบ้าง",
    "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_en": "When Bob Dole had 26%, and George H.W. Bush had 47%, what did Pat Robertson have?",
    "question_th": "เมื่อ Bob Dole มี 26% และ George HW Bush มี 47% Pat Robertson ได้อะไร",
    "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_en": "When Bob Dole had 26%, and Pete du Pont had 0%, what did Pat Robertson have?",
    "question_th": "เมื่อ Bob Dole มี 26% และ Pete du Pont มี 0% Pat Robertson ได้อะไร",
    "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_en": "When Pat Robertson had 19%, and Bob Dole had 26%, what did George H.W. Bush have?",
    "question_th": "เมื่อ Pat Robertson มี 19% และ Bob Dole มี 26% George HW Bush ได้อะไร",
    "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_en": "Date of october 10, 1965 had what lowest attendance?",
    "question_th": "วันที่ 10 ตุลาคม 2508 มีผู้เข้าร่วมน้อยที่สุดที่ใด",
    "context": "CREATE TABLE table_name_59 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_95 WHERE opponent = \"chicago bears\"",
    "question_en": "Opponent of chicago bears involved what date?",
    "question_th": "ฝ่ายตรงข้ามชิคาโกหมีเกี่ยววันไหน?",
    "context": "CREATE TABLE table_name_95 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT performer_1 FROM table_name_91 WHERE performer_2 = \"compilation 2\"",
    "question_en": "Performer 2 of compilation 2 is what performer 1?",
    "question_th": "นักแสดง 2 ของการรวบรวม 2 คือนักแสดง 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_en": "Performer 1 of greg proops, and a Date of 25 august 1995 is what performer 4?",
    "question_th": "นักแสดงคนที่ 1 ของ greg proops และวันที่ 25 สิงหาคม 1995 คือนักแสดงคนที่ 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_en": "Performer 1 of greg proops, and a Performer 3 of ryan stiles, and a Date of 25 august 1995 is which average episode?",
    "question_th": "นักแสดงคนที่ 1 จาก greg proops และนักแสดงคนที่ 3 จาก ryan stiles และวันที่ 25 สิงหาคม 1995 เป็นตอนโดยเฉลี่ยตอนไหน",
    "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_en": "Performer 1 of Stephen Frost, and a Performer 2 of Josie Lawrence, and a Date of 15 September 1995 is what performer 3?",
    "question_th": "นักแสดงคนที่ 1 ของ Stephen Frost และนักแสดงคนที่ 2 ของ Josie Lawrence และวันที่ 15 กันยายน 1995 คือนักแสดงคนไหน",
    "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_en": "WHich Mountains classification has an Asian team classification of seoul cycling team, and a Winner of alexandre usov?",
    "question_th": "การจัดประเภท Mountains ใดมีการจัดประเภททีมเอเชียของทีมจักรยานโซลและเป็นผู้ชนะของ 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_en": "WHo is the Asian rider classification that has ruslan ivanov on the Stage of 9?",
    "question_th": "ใครคือนักบิดเอเชียที่มี ruslan ivanov อยู่ในสเตจ 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_en": "WHich General classification has an Asian rider classification of shinichi fukushima, and a Winner of jeremy hunt?",
    "question_th": "การจัดประเภททั่วไปใดมีการจัดประเภทนักแข่งชาวเอเชียคือ shinichi fukushima และผู้ชนะจาก 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_en": "Which Stage has a Mountains classification of filippo savini?",
    "question_th": "ระยะใดจัดเป็น 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_en": "Which Stage has a Winner of jeremy hunt?",
    "question_th": "สเตจไหนมีผู้ชนะจากการล่าเจเรมี?",
    "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_en": "Which winning team has Iowa city as the site, and december 3, 2006 as the date?",
    "question_th": "ทีมใดที่ชนะจะมีไอโอวาซิตี้เป็นสนามแข่งขัน และวันที่ 3 ธันวาคม พ.ศ. 2549 เป็นสนาม?",
    "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_en": "What site has november 30, 2006 as the date?",
    "question_th": "ไซต์ใดที่มีวันที่ 30 พฤศจิกายน 2549 เป็นวันที่",
    "context": "CREATE TABLE table_name_25 (site VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT winning_team FROM table_name_91 WHERE sport = \"volleyball\"",
    "question_en": "What winning team has volleyball as the sport?",
    "question_th": "ทีมใดที่ชนะมีวอลเลย์บอลเป็นกีฬา?",
    "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_en": "What is the total number in January when the St. Louis Blues had a game smaller than 42?",
    "question_th": "เดือนมกราคมที่เซนต์หลุยส์ บลูส์มีเกมน้อยกว่า 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_en": "What is the January sum with the record of 17-20-2 with a game smaller than 39?",
    "question_th": "ผลรวมเดือนมกราคมด้วยสถิติ 17-20-2 กับเกมที่น้อยกว่า 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_en": "What was the record when the New York Knicks played at the Boston Garden?",
    "question_th": "นิวยอร์ก นิกส์ เล่นที่บอสตัน การ์เดน มีสถิติเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_51 (record VARCHAR, location VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_94 WHERE record = \"7-2\"",
    "question_en": "When the record was 7-2, what was the score for the game?",
    "question_th": "เมื่อสถิติเป็น 7-2 สกอร์ของเกมเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_94 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_66 WHERE record = \"4-2\"",
    "question_en": "On what date was the record 4-2?",
    "question_th": "สถิติ 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_en": "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?",
    "question_th": "อันดับหญิงใดคืออันดับสูงสุดที่มีผู้หญิง (%) มากกว่า 53 ปี และการรับรู้เรื่องเอชไอวี (ชาย%) น้อยกว่า 89 ปี และรัฐโอริสสา",
    "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_en": "How many Females (%) have Females Rank smaller than 21, and a State of kerala, and Males Rank larger than 1?",
    "question_th": "มีผู้หญิงกี่คน (%) ที่มีอันดับเพศหญิงน้อยกว่า 21 และมีรัฐ Kerala และเพศชายมากกว่า 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_en": "How many Females (%) have a State of karnataka, and Males Rank larger than 16?",
    "question_th": "มีผู้หญิงกี่คน (%) ที่มีรัฐกรณาฏกะ และเพศชายมีอันดับมากกว่า 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_en": "Which Males Rank is the highest one that has Females (%) smaller than 40, and Females Rank smaller than 22?",
    "question_th": "อันดับเพศชายใดคืออันดับสูงสุดที่มีเพศหญิง (%) น้อยกว่า 40 และเพศหญิงอันดับที่น้อยกว่า 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_en": "Which Females (%) has an HIV awareness (males%) larger than 92, and Females Rank larger than 2, and Males Rank smaller than 3?",
    "question_th": "ผู้หญิงคนไหน (%) ที่มีความตระหนักเรื่องเอชไอวี (ผู้ชาย%) มากกว่า 92 คน และผู้หญิงมีอันดับมากกว่า 2 และผู้ชายมีอันดับน้อยกว่า 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_en": "League Cup smaller than 0 is what sum of the total?",
    "question_th": "ลีกคัพน้อยกว่า 0 มีผลรวมเท่าไร?",
    "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_en": "Championship larger than 3, and a FA Cup smaller than 3, and a Total smaller than 6 involves what highest league cup?",
    "question_th": "แชมเปี้ยนชิพที่ใหญ่กว่า 3 และเอฟเอคัพน้อยกว่า 3 และผลรวมน้อยกว่า 6 เกี่ยวข้องกับลีกคัพสูงสุดอะไร",
    "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_en": "Which Opponent has a Surface of hard on 28 august 1993?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีพื้นผิวแข็งในวันที่ 28 สิงหาคม 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_en": "WHICH Outcome IS ON 18 july 1993?",
    "question_th": "ผลลัพธ์คืออะไรในวันที่ 18 กรกฎาคม 1993?",
    "context": "CREATE TABLE table_name_70 (outcome VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_68 WHERE opponent = \"pascale paradis-mangon\"",
    "question_en": "WHICH Outcome has aN Opponent of pascale paradis-mangon?",
    "question_th": "ผลลัพธ์ใดที่มีฝ่ายตรงข้ามของ 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_en": "Which Score has aN Outcome of winner on 4 november 1990?",
    "question_th": "คะแนนใดมีผลลัพธ์เป็นผู้ชนะในวันที่ 4 พฤศจิกายน 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_en": "Which Tournament has an Opponent of susan sloane?",
    "question_th": "การแข่งขันใดมีคู่ต่อสู้ของซูซาน สโลน?",
    "context": "CREATE TABLE table_name_18 (tournament VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_92 WHERE opponent = \"meike babel\"",
    "question_en": "Which Tournament has an Opponent of meike babel?",
    "question_th": "ทัวร์นาเมนต์ใดมีคู่ต่อสู้ของ เมย์เก บาเบล?",
    "context": "CREATE TABLE table_name_92 (tournament VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT SUM(game) FROM table_name_63 WHERE november = 29",
    "question_en": "Which Game has a November of 29?",
    "question_th": "เกมใดมีวันที่ 29 พฤศจิกายน?",
    "context": "CREATE TABLE table_name_63 (game INTEGER, november VARCHAR)"
  },
  {
    "answer": "SELECT AVG(points) FROM table_name_40 WHERE record = \"12–2–4–1\" AND november > 22",
    "question_en": "Which Points have a Record of 12–2–4–1, and a November larger than 22?",
    "question_th": "แต้มใดมีสถิติ 12–2–4–1 และเดือนพฤศจิกายนมากกว่า 22",
    "context": "CREATE TABLE table_name_40 (points INTEGER, record VARCHAR, november VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_78 WHERE game = 19",
    "question_en": "Which Record has a Game of 19?",
    "question_th": "สถิติใดมีเกม 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_en": "How many Novembers have a Game larger than 14, and an Opponent of minnesota wild?",
    "question_th": "มีกี่เดือนพฤศจิกายนที่มีเกมที่ใหญ่กว่า 14 และมีฝ่ายตรงข้ามของ 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–2–4–1\"",
    "question_en": "Which November is the lowest one that has a Record of 12–2–4–1?",
    "question_th": "พฤศจิกายนใดคือสถิติต่ำสุดที่มีสถิติ 12–2–4–1",
    "context": "CREATE TABLE table_name_56 (november INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT AVG(march) FROM table_name_70 WHERE record = \"25–30–13\" AND points < 63",
    "question_en": "What day has a record of 25–30–13 and less than 63 points?",
    "question_th": "วันไหนมีสถิติ 25–30–13 และน้อยกว่า 63 คะแนน?",
    "context": "CREATE TABLE table_name_70 (march INTEGER, record VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_98 WHERE points = 63",
    "question_en": "Which opponent has 63 points?",
    "question_th": "คู่ต่อสู้คนไหนมี 63 แต้ม?",
    "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_en": "Which Alpha contains ia64 with discontinued 3.5-3.8 4.1-4.7?",
    "question_th": "Alpha ตัวใดมี ia64 ที่เลิกใช้ 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_en": "Which s390x contains a yes ia64 and a no for alpha?",
    "question_th": "s390x ใดมี yes ia64 และ no สำหรับ 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_en": "Which hppa contains a ppc64 of yes 3+, no for mips and no for alpha?",
    "question_th": "hppa ใดที่มี ppc64 ที่ใช่ 3+ ไม่ใช่สำหรับ mips และไม่ใช่สำหรับอัลฟ่า",
    "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_en": "Which 1991 has an A 1993 ?",
    "question_th": "ปี 1991 ตัวไหนมี A 1993 ครับ?",
    "context": "CREATE TABLE table_name_77 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1992 FROM table_name_13 WHERE 1989 = \"1–2\"",
    "question_en": "Which 992 has a  1–2 of 1989 ?",
    "question_th": "992 ตัวไหนมี 1–2 ของปี 1989",
    "context": "CREATE TABLE table_name_13 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1990 FROM table_name_3 WHERE 1993 = \"1r\"",
    "question_en": "WHICH 1990 has a 1993 of 1r?",
    "question_th": "ปี 1990 ไหนที่มีปี 1993 เป็น 1r?",
    "context": "CREATE TABLE table_name_3 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1994 FROM table_name_35 WHERE 1998 = \"0–1\"",
    "question_en": "Which 1994 has a 1998 of 0–1?",
    "question_th": "ปี 1994 ใดมีปี 1998 เป็น 0–1",
    "context": "CREATE TABLE table_name_35 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1995 FROM table_name_86 WHERE 1993 = \"3r\"",
    "question_en": "Which 1995 has a 1993 of 3r?",
    "question_th": "ปี 1995 ใดมีปี 1993 เป็น 3r",
    "context": "CREATE TABLE table_name_86 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1992 FROM table_name_59 WHERE 1996 = \"sf\" AND 1993 = \"a\"",
    "question_en": "Which 1992 has a 1996 of sf and a 1993 of a?",
    "question_th": "ปี 1992 ใดมี sf ปี 1996 และปี 1993 เป็น 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_en": "Which school picked a back in round 16, after pick 89?",
    "question_th": "โรงเรียนไหนเลือกแบ็คในรอบ 16 หลังเลือก 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_en": "Who was the visitor in the game that had Ottawa as the home team?",
    "question_th": "ใครคือผู้มาเยือนในเกมที่มีออตตาวาเป็นเจ้าบ้าน?",
    "context": "CREATE TABLE table_name_29 (visitor VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_90 WHERE decision = \"niittymaki\" AND home = \"carolina\"",
    "question_en": "What was the score in the game where Carolina was the home team and Niittymaki received the decision?",
    "question_th": "ในเกมที่แคโรไลนาเป็นเจ้าบ้านและนิตติมากิได้คะแนนเท่าไหร่?",
    "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_en": "What was the date of the game that had a loss of Johnson (9-8)?",
    "question_th": "เกมที่แพ้จอห์นสัน (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_en": "Who had a Run 1 smaller than 51.96, a Run 2 larger than 51.13, and a Run 3 of 52.53?",
    "question_th": "ใครบ้างที่มีรัน 1 น้อยกว่า 51.96, รัน 2 ใหญ่กว่า 51.13 และรัน 3 เป็น 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_en": "Who had a run 2 of 50.67?",
    "question_th": "ใครได้รัน 2 จาก 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_en": "What was john farrow's run 2 associated with a run 1 of greater than 52.25?",
    "question_th": "รัน 2 ของจอห์น ฟาร์โรว์สัมพันธ์กับรัน 1 ที่มากกว่า 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_en": "What was the Score in the game against the Buffalo Sabres?",
    "question_th": "คะแนนในเกมกับบัฟฟาโล เซเบอร์เป็นเท่าไหร่?",
    "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ányi\"",
    "question_en": "Rank smaller than 4, and a Name of dalma iványi involved which lowest game?",
    "question_th": "อันดับน้อยกว่า 4 และชื่อของ dalma iványi เกี่ยวข้องกับเกมที่ต่ำที่สุดเกมใด",
    "context": "CREATE TABLE table_name_9 (games INTEGER, rank VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_27 WHERE name = \"sue bird\"",
    "question_en": "Name of sue bird that involves what team?",
    "question_th": "ชื่อนกฟ้องที่เกี่ยวข้องกับทีมอะไร?",
    "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_en": "Which episode was directed by Bob Anderson with a production code of KABF16 and a season before than 25?",
    "question_th": "ตอนใดกำกับโดย Bob Anderson โดยมีรหัสการผลิต KABF16 และซีซันก่อน 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_en": "Who was the director of the episode with a season after 8 and an episode of XVI?",
    "question_th": "ใครเป็นผู้กำกับตอนที่มีซีซั่นหลัง 8 และตอนของ 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_en": "Date of 7 september 1996 includes which highest rank athlete?",
    "question_th": "วันที่ 7 กันยายน 2539 รวมนักกีฬาอันดับสูงสุดคนใด?",
    "context": "CREATE TABLE table_name_68 (rank INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_84 WHERE time = 10.82",
    "question_en": "Time of 10.82 has what location?",
    "question_th": "เวลา 10.82 น. อยู่ที่ใด?",
    "context": "CREATE TABLE table_name_84 (location VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT athlete FROM table_name_92 WHERE date = \"10 july 2009\"",
    "question_en": "Date of 10 july 2009 includes what athlete?",
    "question_th": "วันที่ 10 กรกฎาคม 2552 มีนักกีฬาคนใดบ้าง?",
    "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_en": "Rank smaller than 5, and a Time larger than 10.7, and a Date of 10 july 2009 has what location?",
    "question_th": "อันดับน้อยกว่า 5 และเวลาที่ใหญ่กว่า 10.7 และวันที่ 10 กรกฎาคม 2552 มีตำแหน่งใด?",
    "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_en": "Faith of rc, and a Opened larger than 1966 which has the highest DCSF number?",
    "question_th": "Faith of rc และ Opened ใหญ่กว่าปี 1966 ซึ่งมีจำนวน DCSF สูงสุด?",
    "context": "CREATE TABLE table_name_22 (dcsf_number INTEGER, faith VARCHAR, opened VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_79 WHERE faith = \"–\" AND name = \"greenway\"",
    "question_en": "Faith of –, and a Name of greenway has what type?",
    "question_th": "ศรัทธาของ – และชื่อกรีนเวย์มีประเภทใด?",
    "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_en": "Who was the opponent that played at Launceston Cricket Club Ground, launceston during the season of 1853/54?",
    "question_th": "คู่ต่อสู้ที่เล่นที่ Launceston Cricket Club Ground, Launceston ในช่วงฤดูกาล 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_en": "What was the rank of the team during season 2006/07?",
    "question_th": "อันดับของทีมในฤดูกาล 2006/07 คืออะไร?",
    "context": "CREATE TABLE table_name_92 (rank VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_12 WHERE runs = \"55\"",
    "question_en": "What was the venue where there were 55 runs?",
    "question_th": "สถานที่ที่มีการวิ่ง 55 ครั้งคือที่ไหน?",
    "context": "CREATE TABLE table_name_12 (venue VARCHAR, runs VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_97 WHERE runs = \"62\"",
    "question_en": "What was the venue where there were 62 runs?",
    "question_th": "สนามไหนที่มีการวิ่ง 62 รอบ?",
    "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_en": "Which driver had an accident and laps smaller than 53?",
    "question_th": "คนขับคนไหนเกิดอุบัติเหตุและรอบน้อยกว่า 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–1999\"",
    "question_en": "What language has a publication range from 1955–1999?",
    "question_th": "สิ่งพิมพ์มีภาษาใดบ้างตั้งแต่ปี 1955–1999",
    "context": "CREATE TABLE table_name_85 (language VARCHAR, publication_range VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_62 WHERE issn = \"0149-1830\"",
    "question_en": "What is the status for a journal with the ISSN of 0149-1830?",
    "question_th": "สถานะของวารสารที่มี ISSN 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–2003\"",
    "question_en": "What is the language with a France publication range of 1992–2003?",
    "question_th": "ภาษาใดบ้างที่มีช่วงการตีพิมพ์ในประเทศฝรั่งเศสระหว่างปี 1992–2003",
    "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_en": "What is the ISSN number of a publication range of 1984-?",
    "question_th": "หมายเลข ISSN ของช่วงสิ่งพิมพ์ของปี 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_en": "What is the language for a journal that has a frequency of 3 times per year and has an ISSN number of 1136-7385?",
    "question_th": "วารสารที่มีความถี่ 3 ครั้งต่อปี และหมายเลข ISSN 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_en": "What is the region 4 release that has july 20, 2009 as the region 2?",
    "question_th": "การเปิดตัวภูมิภาค 4 ที่มีวันที่ 20 กรกฎาคม 2552 เป็นภูมิภาค 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_en": "What is the region 1 release that has july 20, 2009 as the region 2?",
    "question_th": "รุ่นภูมิภาค 1 ที่มีวันที่ 20 กรกฎาคม 2552 เป็นภูมิภาค 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_en": "What is the average episode that has September 11, 2007 as a region 1?",
    "question_th": "ตอนเฉลี่ยที่มีวันที่ 11 กันยายน 2550 เป็นภูมิภาค 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_en": "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?",
    "question_th": "มูลค่าที่กำหนดสำหรับฟาร์มที่มีกำลังการผลิตต่ำกว่า 32.5MW ประเภท Nordex n90 2.5MW และฟาร์ม 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_en": "What is the type of turbine having fewer than 17 units and located in County Laois?",
    "question_th": "กังหันที่มีจำนวนน้อยกว่า 17 ยูนิต และตั้งอยู่ในอำเภอลาวคือแบบใด",
    "context": "CREATE TABLE table_name_65 (type VARCHAR, turbines VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT scheduled FROM table_name_96 WHERE turbines = 17",
    "question_en": "When is the scheduled date for the farm having 17 turbines?",
    "question_th": "กำหนดวันที่ฟาร์มจะมีกังหัน 17 ตัวคือเมื่อใด",
    "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_en": "What is the average capacity for the farm at Gortahile having more than 8 turbines?",
    "question_th": "กำลังการผลิตเฉลี่ยของฟาร์มที่ Gortahile ที่มีกังหันมากกว่า 8 ตัวคือเท่าใด",
    "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_en": "What is the title of the king who left office in 982 and entered office in 949?",
    "question_th": "พระมหากษัตริย์ที่ลาออกจากตำแหน่งในปี พ.ศ. 982 และเข้ารับตำแหน่งในปี พ.ศ. 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_en": "When did the king who entered office in 1012 leave office?",
    "question_th": "กษัตริย์ที่เข้ารับตำแหน่งในปี พ.ศ. 1555 ทรงพ้นจากตำแหน่งเมื่อใด",
    "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_en": "What are the family relations of the king with the throne name 303?",
    "question_th": "กษัตริย์มีพระนามว่า 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_en": "What is teh born-died dates of the king with a throne name 315 and left office in 1021?",
    "question_th": "พระบาทสมเด็จพระปรมินทรมหาภูมิพลอดุลยเดชบรมนาถบพิตร เสด็จพระราชสมภพและสวรรคตเมื่อใด ทรงพระนามว่า 315 และพ้นจากตำแหน่งในปี 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_en": "Which Opponents have a Partner of irina-camelia begu, and a Surface of hard?",
    "question_th": "ฝ่ายตรงข้ามคนไหนที่มีหุ้นส่วนของ irina-camelia begu และมีพื้นผิวแข็ง?",
    "context": "CREATE TABLE table_name_15 (opponents VARCHAR, partner VARCHAR, surface VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_45 WHERE partner = \"galina voskoboeva\"",
    "question_en": "Which Surface has a Partner of galina voskoboeva?",
    "question_th": "Surface ใดมีพันธมิตรของ 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šová\"",
    "question_en": "Which Opponents have a Surface of hard, and an Outcome of runner-up, and a Partner of jarmila gajdošová?",
    "question_th": "ฝ่ายตรงข้ามคนใดที่มีพื้นผิวแข็ง และผลลัพธ์เป็นรองแชมป์ และเป็นหุ้นส่วนของ jarmila gajdošová?",
    "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_en": "Which Partner has a Date of 12 july 2009?",
    "question_th": "พันธมิตรรายใดมีวันที่ 12 กรกฎาคม 2552",
    "context": "CREATE TABLE table_name_18 (partner VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_93 WHERE partner = \"sorana cîrstea\"",
    "question_en": "Which Surface has a Partner of sorana cîrstea?",
    "question_th": "Surface ใดมีพันธมิตรของ sorana cîrstea",
    "context": "CREATE TABLE table_name_93 (surface VARCHAR, partner VARCHAR)"
  },
  {
    "answer": "SELECT MIN(overall) FROM table_name_56 WHERE pick__number > 27",
    "question_en": "Name the least overall with pick number more than 27",
    "question_th": "ตั้งชื่อโดยรวมน้อยที่สุดโดยเลือกหมายเลขมากกว่า 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_en": "what's the first leg with gran canaria as team #2?",
    "question_th": "เลกแรกที่มีกราน คานาเรียเป็นทีม #2 คืออะไร?",
    "context": "CREATE TABLE table_name_56 (team__number2 VARCHAR)"
  },
  {
    "answer": "SELECT team__number2 FROM table_name_67 WHERE team__number1 = \"lukoil academic\"",
    "question_en": "with team #1 as lukoil academic what is team #2?",
    "question_th": "กับทีม #1 ในฐานะนักวิชาการ lukoil ทีม #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_en": "with team #2 as akasvayu girona what is team #1?",
    "question_th": "กับทีม #2 เป็น akasvayu girona ทีม #1 คืออะไร?",
    "context": "CREATE TABLE table_name_12 (team__number1 VARCHAR, team__number2 VARCHAR)"
  },
  {
    "answer": "SELECT virtue FROM table_name_13 WHERE (latin) = acedia",
    "question_en": "Which virtue is acedia(Latin)?",
    "question_th": "คุณธรรมใดคือ acedia (ละติน)?",
    "context": "CREATE TABLE table_name_13 (virtue VARCHAR, acedia VARCHAR, latin VARCHAR)"
  },
  {
    "answer": "SELECT virtue FROM table_name_31 WHERE _vice_ = \"lust\"",
    "question_en": "Which Virtue has a (vice) of lust?",
    "question_th": "ศีลข้อไหนมีราคะ?",
    "context": "CREATE TABLE table_name_31 (virtue VARCHAR, _vice_ VARCHAR)"
  },
  {
    "answer": "SELECT virtue FROM table_name_20 WHERE (latin) = invidia",
    "question_en": "Which virtue is Invidia(Latin)?",
    "question_th": "อินวิเดีย (ละติน) มีคุณธรรมข้อใด?",
    "context": "CREATE TABLE table_name_20 (virtue VARCHAR, invidia VARCHAR, latin VARCHAR)"
  },
  {
    "answer": "SELECT gloss FROM table_name_79 WHERE latin = \"castitas\"",
    "question_en": "What's the gloss with Castitas(Latin)?",
    "question_th": "Castitas(ละติน) มีความแวววาวแค่ไหน?",
    "context": "CREATE TABLE table_name_79 (gloss VARCHAR, latin VARCHAR)"
  },
  {
    "answer": "SELECT gloss FROM table_name_22 WHERE virtue = \"diligence\"",
    "question_en": "What is the Diligence Virtues Gloss?",
    "question_th": "Diligence Virtues Gloss คืออะไร?",
    "context": "CREATE TABLE table_name_22 (gloss VARCHAR, virtue VARCHAR)"
  },
  {
    "answer": "SELECT latin FROM table_name_64 WHERE virtue = \"temperance\"",
    "question_en": "What is the Virtue of Temperance in Latin?",
    "question_th": "คุณธรรมของ Temperance ในภาษาละตินคืออะไร?",
    "context": "CREATE TABLE table_name_64 (latin VARCHAR, virtue VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_14 WHERE silver = \"south korea\"",
    "question_en": "In what year(s) did South Korea win silver?",
    "question_th": "เกาหลีใต้ได้เหรียญเงินในปีไหน?",
    "context": "CREATE TABLE table_name_14 (year VARCHAR, silver VARCHAR)"
  },
  {
    "answer": "SELECT silver FROM table_name_51 WHERE location = \"doha\"",
    "question_en": "Which nation(s) won silver in Doha?",
    "question_th": "ประเทศใดได้รับรางวัลเหรียญเงินในโดฮา?",
    "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_en": "What was the first year that South Korea won gold and Malaysia won bronze?",
    "question_th": "ปีแรกที่เกาหลีใต้ได้เหรียญทองและมาเลเซียได้เหรียญทองแดงคือปีใด",
    "context": "CREATE TABLE table_name_74 (year INTEGER, gold VARCHAR, bronze VARCHAR)"
  },
  {
    "answer": "SELECT gold FROM table_name_50 WHERE bronze = \"chinese taipei\"",
    "question_en": "What country won gold in the year(s) that Chinese Taipei won bronze?",
    "question_th": "ประเทศใดได้เหรียญทองในปีที่จีนไทเปได้เหรียญทองแดง?",
    "context": "CREATE TABLE table_name_50 (gold VARCHAR, bronze VARCHAR)"
  },
  {
    "answer": "SELECT european_competitions FROM table_name_85 WHERE pos = 6",
    "question_en": "Which European competitions have a Pos of 6?",
    "question_th": "การแข่งขันระดับยุโรปรายการใดที่มีคะแนนรวม 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_en": "Which Pos has a Dutch Cup of winner, and a Tier larger than 1?",
    "question_th": "ตำแหน่งใดที่มีผู้ชนะ Dutch Cup และระดับที่มากกว่า 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_en": "What is the average Frequency MHz that is on farwell, texas?",
    "question_th": "ความถี่ MHz เฉลี่ยที่อยู่บนฟาร์เวลล์เท็กซัสคือเท่าใด",
    "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_en": "WHich City of license has a FCC info of fcc, and 10,000 horizontal 3,000 vertical ERP W",
    "question_th": "เมืองที่ได้รับอนุญาตมีข้อมูล FCC ของ fcc และ 10,000 แนวนอน 3,000 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_en": "WHich FCC info has 3,000 ERP W?",
    "question_th": "ข้อมูล FCC ใดมี 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_en": "What's the average game against the New Jersey Devils with 19 points?",
    "question_th": "ค่าเฉลี่ยเกมกับนิวเจอร์ซีย์ เดวิลส์มี 19 แต้มเป็นอย่างไรบ้าง?",
    "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_en": "Opponent of at boston patriots, and a Week larger than 3 had what average attendance?",
    "question_th": "ฝ่ายตรงข้ามของ at boston patriots และหนึ่งสัปดาห์ที่มากกว่า 3 มีผู้เข้าร่วมโดยเฉลี่ยเท่าใด",
    "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_en": "Name the average fall 07 for fall 07 more than 219",
    "question_th": "ตั้งชื่อค่าเฉลี่ยฤดูใบไม้ร่วง 07 สำหรับฤดูใบไม้ร่วง 07 มากกว่า 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_en": "Name the player for fc dallas pick number less than 3",
    "question_th": "ตั้งชื่อผู้เล่นสำหรับ fc dallas เลือกหมายเลขน้อยกว่า 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_en": "Name the most pick number for real salt lake and affiliation of ucla los angeles storm",
    "question_th": "ตั้งชื่อหมายเลขที่ถูกเลือกมากที่สุดสำหรับทะเลสาบน้ำเค็มจริงและความเกี่ยวข้องกับพายุ ucla los angeles",
    "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_en": "Name the player with pick number of 7",
    "question_th": "ตั้งชื่อผู้เล่นด้วยหมายเลขเลือก 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–1\"",
    "question_en": "Which Game has a March smaller than 12, and a Score of 10–1?",
    "question_th": "เกมใดที่มีเดือนมีนาคมน้อยกว่า 12 และคะแนน 10–1",
    "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–22–12\"",
    "question_en": "Which Score has Points of 88, and a Record of 38–22–12?",
    "question_th": "คะแนนใดมีคะแนน 88 และสถิติ 38–22–12",
    "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_en": "Which Game has an Opponent of detroit red wings, and a March smaller than 12?",
    "question_th": "เกมใดมีฝ่ายตรงข้ามของปีกสีแดงดีทรอยต์และเดือนมีนาคมน้อยกว่า 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–8\"",
    "question_en": "Which Points have a Game smaller than 70, and a Score of 4–8?",
    "question_th": "คะแนนใดที่มีเกมน้อยกว่า 70 และคะแนน 4–8",
    "context": "CREATE TABLE table_name_85 (points INTEGER, game VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT segment_a FROM table_name_86 WHERE netflix = \"s05e22\"",
    "question_en": "Which segment a's Netflix is S05E22?",
    "question_th": "Netflix ของเซ็กเมนต์ใดคือ 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_en": "Which series episode has a segment c that is Electric pole s transformer?",
    "question_th": "ซีรีย์เรื่องไหนมีภาค c ที่เป็นหม้อแปลงไฟฟ้าของเสาไฟฟ้าครับ?",
    "context": "CREATE TABLE table_name_59 (series_ep VARCHAR, segment_c VARCHAR)"
  },
  {
    "answer": "SELECT MAX(episode) FROM table_name_23 WHERE netflix = \"s05e23\"",
    "question_en": "What largest episode number's Netflix is S05E23?",
    "question_th": "Netflix หมายเลขตอนที่ใหญ่ที่สุดคือ S05E23 หมายเลขใด",
    "context": "CREATE TABLE table_name_23 (episode INTEGER, netflix VARCHAR)"
  },
  {
    "answer": "SELECT segment_c FROM table_name_58 WHERE segment_b = \"refrigerators\"",
    "question_en": "Which segment c's segment b is refrigerators?",
    "question_th": "ตู้เย็นส่วนไหนของ c ส่วน b คือตู้เย็น?",
    "context": "CREATE TABLE table_name_58 (segment_c VARCHAR, segment_b VARCHAR)"
  },
  {
    "answer": "SELECT races FROM table_name_38 WHERE points = \"125\"",
    "question_en": "Which races did they accumulate at least 125 points?",
    "question_th": "เผ่าพันธุ์ใดที่พวกเขาสะสมอย่างน้อย 125 คะแนน?",
    "context": "CREATE TABLE table_name_38 (races VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT series FROM table_name_63 WHERE score = \"3 – 8\"",
    "question_en": "Which Series has a Score of 3 – 8?",
    "question_th": "ซีรีย์ไหนมีคะแนน 3 – 8?",
    "context": "CREATE TABLE table_name_63 (series VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_48 WHERE decision = \"myre\"",
    "question_en": "Which Date has a Decision of myre?",
    "question_th": "วันไหนที่มีการตัดสินใจของไมร์?",
    "context": "CREATE TABLE table_name_48 (date VARCHAR, decision VARCHAR)"
  },
  {
    "answer": "SELECT MIN(attendance) FROM table_name_75 WHERE date = \"may 24\"",
    "question_en": "How many Attendances on may 24?",
    "question_th": "วันที่ 24 พฤษภาคม มีผู้เข้าร่วมกี่คน?",
    "context": "CREATE TABLE table_name_75 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT series FROM table_name_86 WHERE date = \"may 18\"",
    "question_en": "Which Series are on may 18?",
    "question_th": "ซีรีย์ไหนที่จะเข้าฉายวันที่ 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_en": "How many Attendances that has a Visitor of philadelphia on may 20?",
    "question_th": "มีผู้มาเยี่ยมชมฟิลาเดลเฟียจำนวนเท่าใดในวันที่ 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–2\"",
    "question_en": "who is the Visitor that has a Series of series tied 2–2?",
    "question_th": "ใครคือผู้เยี่ยมชมที่มีซีรีส์ซีรีส์เสมอกัน 2–2?",
    "context": "CREATE TABLE table_name_33 (visitor VARCHAR, series VARCHAR)"
  },
  {
    "answer": "SELECT MAX(attendance) FROM table_name_88 WHERE score = \"4 – 5\"",
    "question_en": "How many Attendances have a Score of 4 – 5? Question 4",
    "question_th": "ผู้เข้าร่วมมีคะแนน 4 – 5 กี่คน? คำถามที่ 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–0\"",
    "question_en": "WHo has a Home of philadelphia and a Series of flyers lead 1–0?",
    "question_th": "ใครมีบ้านแห่งฟิลาเดลเฟียและซีรีส์ใบปลิวนำ 1–0?",
    "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_en": "What is the class of the Charlotte Camel gt 500 race?",
    "question_th": "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_en": "What is the race 12 hours in length?",
    "question_th": "การแข่งขัน 12 ชั่วโมงคืออะไร?",
    "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_en": "What is the class of the Coca-cola classic 12 hours of sebring race?",
    "question_th": "การแข่งขัน Sebring 12 ชั่วโมงคลาสสิกของ Coca-Cola อยู่ในระดับใด?",
    "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_en": "What is the class of the Budweiser Grand Prix of Miami race with a length of 3 hours?",
    "question_th": "การแข่งขัน Budweiser Grand Prix of Miami ความยาว 3 ชั่วโมง คลาสอะไร?",
    "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_en": "What is the date of the Paul Revere 250 race in the Daytona International Speedway circuit?",
    "question_th": "การแข่งขัน Paul Revere 250 ในสนาม Daytona International Speedway วันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_66 (date VARCHAR, circuit VARCHAR, race VARCHAR)"
  },
  {
    "answer": "SELECT race FROM table_name_52 WHERE length = \"12 hours\"",
    "question_en": "What race is 12 hours in length?",
    "question_th": "การแข่งขันใดมีความยาว 12 ชั่วโมง?",
    "context": "CREATE TABLE table_name_52 (race VARCHAR, length VARCHAR)"
  },
  {
    "answer": "SELECT MAX(round) FROM table_name_55 WHERE nationality = \"finland\"",
    "question_en": "What is the highest round for the pick from Finland?",
    "question_th": "รอบสูงสุดสำหรับการคัดเลือกจากฟินแลนด์คืออะไร?",
    "context": "CREATE TABLE table_name_55 (round INTEGER, nationality VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(round) FROM table_name_34 WHERE player = \"joe barnes\"",
    "question_en": "What is the total number of rounds that Joe Barnes was picked?",
    "question_th": "โจ บาร์นส์ ถูกเลือกทั้งหมดกี่ยก?",
    "context": "CREATE TABLE table_name_34 (round VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT order FROM table_name_9 WHERE olympic_games = \"tokyo\"",
    "question_en": "What was the order of the Tokyo olympic games?",
    "question_th": "การแข่งขันกีฬาโอลิมปิกที่โตเกียวมีลำดับอย่างไร",
    "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_en": "What was the 15th club in 2012?",
    "question_th": "สโมสรอันดับที่ 15 ในปี 2555 คืออะไร?",
    "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_en": "What medal did Michael Conlon, with a weight of fly, win?",
    "question_th": "Michael Conlon ที่มีน้ำหนักบินได้เหรียญอะไรชนะ?",
    "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_en": "How many losses have more than 45,036 attendance?",
    "question_th": "มีการสูญเสียกี่ครั้งมากกว่า 45,036 คน?",
    "context": "CREATE TABLE table_name_50 (loss VARCHAR, attendance INTEGER)"
  },
  {
    "answer": "SELECT SUM(attendance) FROM table_name_68 WHERE date = \"april 29\"",
    "question_en": "on april 29, what was the attendance?",
    "question_th": "วันที่ 29 เมษายน ผู้เข้าร่วมเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_68 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT AVG(attendance) FROM table_name_40 WHERE date = \"april 9\"",
    "question_en": "on april 9 what was the attendance?",
    "question_th": "วันที่ 9 เมษายน ผู้เข้าร่วมมีอะไรบ้าง?",
    "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_en": "What date has postponed (rain) rescheduled for august 7 as the score?",
    "question_th": "เลื่อนวันไหน (ฝน) เลื่อนเป็น 7 ส.ค. เป็นคะแนน?",
    "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_en": "Failures larger than 0, and a Successes of 1 has what lowest partial failures?",
    "question_th": "ความล้มเหลวที่มากกว่า 0 และความสำเร็จที่ 1 มีความล้มเหลวบางส่วนต่ำที่สุด",
    "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_en": "Successes smaller than 6, and Launches larger than 1, and a Failures of 2 is what sum of the partial failures?",
    "question_th": "ความสำเร็จน้อยกว่า 6 และเปิดตัวมากกว่า 1 และความล้มเหลวเป็น 2 คือผลรวมของความล้มเหลวบางส่วนเป็นเท่าใด",
    "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_en": "Who was the opposing team during a game in the Pontiac Silverdome?",
    "question_th": "ใครคือทีมฝ่ายตรงข้ามระหว่างเกมใน Pontiac Silverdome?",
    "context": "CREATE TABLE table_name_89 (opponent VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_23 WHERE date = \"january 23\"",
    "question_en": "What was the final score for the January 23 game?",
    "question_th": "คะแนนสุดท้ายของเกมวันที่ 23 มกราคมเป็นเท่าไหร่?",
    "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_en": "What is the highest Feb value having an opponent of the Philadelphia Flyers and is after game 63?",
    "question_th": "ค่าเดือนกุมภาพันธ์สูงสุดในการเจอกับคู่ต่อสู้ของ Philadelphia Flyers และหลังเกมที่ 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_en": "Who was the opponent in games over 58, after Feb 16, and having a record of 40-20-4?",
    "question_th": "ใครคือคู่ต่อสู้ในเกมที่อายุมากกว่า 58 ปี หลังจากวันที่ 16 กุมภาพันธ์ และมีสถิติ 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_en": "Which Year has a Genre of rock (track)?",
    "question_th": "ปีใดที่มีแนวเพลงร็อค (แทร็ก)?",
    "context": "CREATE TABLE table_name_3 (year INTEGER, genre VARCHAR)"
  },
  {
    "answer": "SELECT MAX(year) AS Inducted FROM table_name_28 WHERE year < 1965",
    "question_en": "Which Year Inducted is the highest one that has a Year smaller than 1965?",
    "question_th": "แต่งตั้งปีใดเป็นปีสูงสุดที่มีปีที่น้อยกว่าปี 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_en": "Which Overall is the highest one that has a Pick # smaller than 9, and a Name of mike pearson?",
    "question_th": "โดยรวมแล้วอันไหนคืออันที่สูงที่สุดที่มี Pick # น้อยกว่า 9 และชื่อของ 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_en": "Which Round is the lowest one that has a Position of wide receiver, and an Overall smaller than 222?",
    "question_th": "รอบไหนต่ำที่สุดที่มีตำแหน่งตัวรับกว้าง และ Overall น้อยกว่า 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_en": "What was the Record on September 21?",
    "question_th": "บันทึกเมื่อวันที่ 21 กันยายนคืออะไร?",
    "context": "CREATE TABLE table_name_78 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_10 WHERE save = \"david weathers (15)\"",
    "question_en": "What was the record the day David Weathers (15) had a save?",
    "question_th": "อะไรคือสถิติในวันที่ David Weathers (15) เซฟได้?",
    "context": "CREATE TABLE table_name_10 (record VARCHAR, save VARCHAR)"
  },
  {
    "answer": "SELECT save FROM table_name_49 WHERE date = \"september 2\"",
    "question_en": "Who had a save on September 2?",
    "question_th": "ใครเซฟวันที่ 2 กันยายนบ้าง?",
    "context": "CREATE TABLE table_name_49 (save VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_16 WHERE date = \"september 2\"",
    "question_en": "What was the loss on September 2?",
    "question_th": "การสูญเสียในวันที่ 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_en": "What is the total number of byes that are associated with 1 draw, 5 wins, and fewer than 12 losses?",
    "question_th": "จำนวนบายทั้งหมดที่เกี่ยวข้องกับการเสมอ 1 ครั้ง ชนะ 5 ครั้ง และแพ้น้อยกว่า 12 ครั้งเป็นเท่าใด",
    "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_en": "What is the total number of byes associated with fewer than 8 wins and fewer than 1 draw?",
    "question_th": "จำนวนบายทั้งหมดที่เกี่ยวข้องกับการชนะน้อยกว่า 8 ครั้งและเสมอน้อยกว่า 1 ครั้งเป็นเท่าใด?",
    "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_en": "What is the NTFA Div 1 team that has 15 wins and less than 1 draw?",
    "question_th": "NTFA Div 1 ทีมไหนที่ชนะ 15 เสมอน้อยกว่า 1 นัด?",
    "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_en": "What is the average number of losses for teams with 0 draws and 0 byes?",
    "question_th": "จำนวนการแพ้โดยเฉลี่ยสำหรับทีมที่เสมอ 0 และบาย 0 คือเท่าใด?",
    "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_en": "What is the most number of losses for teams with 5 wins and an against value under 1607?",
    "question_th": "จำนวนการแพ้มากที่สุดสำหรับทีมที่ชนะ 5 ครั้งและมูลค่าต่อต่ำกว่า 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_en": "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?",
    "question_th": "การแข่งขันที่มีโพเดียมใหญ่กว่า 1 และฤดูกาลปี 1982 และมีพนังเล็กกว่า 1 มีกี่การแข่งขัน?",
    "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_en": "Pole smaller than 0 had what lowest podium?",
    "question_th": "เสาที่เล็กกว่า 0 มีโพเดียมต่ำสุดเท่าใด",
    "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_en": "Flap of 0, and a Race smaller than 2, and a Season of 1989, and a Pole smaller than 0 had what average podium?",
    "question_th": "แผ่นพับเป็น 0 และการแข่งขันที่เล็กกว่า 2 และฤดูกาลปี 1989 และเสาที่เล็กกว่า 0 มีโพเดียมเฉลี่ยเท่าใด",
    "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_en": "What was the record on august 24?",
    "question_th": "บันทึกเมื่อวันที่ 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_en": "Elevation of 11,158 feet 3401 m had what route?",
    "question_th": "ระดับความสูง 11,158 ฟุต 3,401 ม. มีเส้นทางอะไร?",
    "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_en": "Route larger than 24, and a Highway of trail ridge road had what elevation?",
    "question_th": "เส้นทางที่มีขนาดใหญ่กว่า 24 และทางหลวงสายสันเขามีระดับความสูงเท่าใด",
    "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_en": "Elevation of 12,183 feet 3713 m is what average route?",
    "question_th": "ระดับความสูง 12,183 ฟุต 3,713 ม. คือเส้นทางเฉลี่ยเท่าใด",
    "context": "CREATE TABLE table_name_12 (route INTEGER, elevation VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_28 WHERE results¹ = \"1:3\"",
    "question_en": "What Opponent has a Results¹ of 1:3?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีผลลัพธ์1:3?",
    "context": "CREATE TABLE table_name_28 (opponent VARCHAR, results¹ VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_76 WHERE results¹ = \"1:2\"",
    "question_en": "On what Date was the Results¹ 1:2?",
    "question_th": "ผลลัพธ์คือวันที่ใด¹ 1:2",
    "context": "CREATE TABLE table_name_76 (date VARCHAR, results¹ VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_39 WHERE results¹ = \"1:2\"",
    "question_en": "What City had Results¹ of 1:2?",
    "question_th": "เมืองใดมีผลลัพธ์1:2?",
    "context": "CREATE TABLE table_name_39 (city VARCHAR, results¹ VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_76 WHERE opponent = \"wales\"",
    "question_en": "On what Date was Wales the Opponent?",
    "question_th": "เวลส์เป็นฝ่ายตรงข้ามวันไหน?",
    "context": "CREATE TABLE table_name_76 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_6 WHERE results¹ = \"1:0\" AND opponent = \"bulgaria\"",
    "question_en": "In what City was Bulgaria the Opponent with Results¹ of 1:0?",
    "question_th": "บัลแกเรียเป็นฝ่ายตรงข้ามในเมืองใดด้วยผลการแข่งขัน1:0?",
    "context": "CREATE TABLE table_name_6 (city VARCHAR, results¹ VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT MAX(game) FROM table_name_60 WHERE opponent = \"vancouver canucks\" AND november < 4",
    "question_en": "What Vancouver canucks game was on a date closest to November 4?",
    "question_th": "เกม canucks ของแวนคูเวอร์เกมใดที่ตรงกับวันที่ 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_en": "Name the year for jerry sichting",
    "question_th": "ตั้งชื่อปีสำหรับ 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_en": "Name the studio host for glenn ordway and jerry sichting with year of 1993-94",
    "question_th": "ตั้งชื่อพิธีกรสตูดิโอให้กับ Glenn Ordway และ Jerry Sichting ในปี 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_en": "Name the flagship station for cedric maxwell and year of 1995-96",
    "question_th": "ตั้งชื่อสถานีเรือธงของเซดริก แมกซ์เวลล์ และปี 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_en": "Who was the architect of the 10 floor building with a height of 42 M?",
    "question_th": "ใครคือสถาปนิกอาคาร 10 ชั้นสูง 42 เมตร?",
    "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_en": "What is the height of the building built by architects Ross and Macfarlane?",
    "question_th": "อาคารที่สร้างโดยสถาปนิก Ross และ 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_en": "Who was the architect that built the Electric Railway Chambers before 1915?",
    "question_th": "ใครคือสถาปนิกที่สร้างห้องรถไฟฟ้าก่อนปี 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_en": "What is the Time on july 18 that has a Loss of lilly (3-3)?",
    "question_th": "วันที่ 18 ก.ค. ที่จะแพ้ลิลลี่ (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_en": "Which Opponent has a Record of 43-56?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีสถิติ 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_en": "What is the Score on July 18 that has Record of 41-51?",
    "question_th": "คะแนนวันที่ 18 ก.ค. ที่มีสถิติ 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_en": "Which Record is on july 31?",
    "question_th": "บันทึกใดคือวันที่ 31 กรกฎาคม?",
    "context": "CREATE TABLE table_name_23 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_18 WHERE loss = \"weaver (9-9)\"",
    "question_en": "Which Opponent has a Loss of weaver (9-9)?",
    "question_th": "ฝ่ายตรงข้ามคนไหนที่เสียช่างทอผ้า (9-9)?",
    "context": "CREATE TABLE table_name_18 (opponent VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_27 WHERE poles > 14",
    "question_en": "Which Season was the Poles greater than 14?",
    "question_th": "ฤดูกาลใดที่ชาวโปแลนด์มากกว่า 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_en": "Which is the highest Season with a Percentage of 67% and Alberto Ascari as a Driver?",
    "question_th": "ฤดูกาลใดสูงสุดโดยมีเปอร์เซ็นต์ 67% และมี Alberto Ascari เป็นนักแข่ง?",
    "context": "CREATE TABLE table_name_7 (season INTEGER, percentage VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_16 WHERE races > 16",
    "question_en": "Name the Driver that has Races greater than 16?",
    "question_th": "ตั้งชื่อนักแข่งที่มีจำนวนเชื้อชาติมากกว่า 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_en": "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?",
    "question_th": "อะไรคือค่าเฉลี่ยของ Long ที่มี GP-GS น้อยกว่า 14, AVg/G น้อยกว่า 0.8 และ Gain น้อยกว่า 3 และ Loss มากกว่า 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_en": "What is the lowest Avg/G with a Long less than 0?",
    "question_th": "Avg/G ต่ำสุดที่ Long น้อยกว่า 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_en": "What is the amount of Avg/G with a Name of blaine gabbert and a Long greater than 30?",
    "question_th": "จำนวน Avg/G ที่มีชื่อ Blaine Gabbert และ Long มากกว่า 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_en": "What is the total number of Long with a Av/g of 124.9 but Loss greater than 0?",
    "question_th": "จำนวนลองทั้งหมดที่มี Av/g เท่ากับ 124.9 แต่ขาดทุนมากกว่า 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_en": "What date has parlophone as the label, and lp as a format?",
    "question_th": "วันที่ใดที่มีพาร์โลโฟนเป็นป้ายกำกับ และ lp เป็นรูปแบบ",
    "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_en": "What school has oregon as the state, and ashland as the city?",
    "question_th": "โรงเรียนใดมีโอเรกอนเป็นรัฐ และแอชแลนด์เป็นเมือง?",
    "context": "CREATE TABLE table_name_37 (school VARCHAR, state VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT conference FROM table_name_71 WHERE school = \"mayville state\"",
    "question_en": "What conference has mayville state as the school?",
    "question_th": "การประชุมใดที่เมย์วิลล์ระบุว่าเป็นโรงเรียน?",
    "context": "CREATE TABLE table_name_71 (conference VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_37 WHERE city = \"belleville\"",
    "question_en": "What school has belleville as the city?",
    "question_th": "โรงเรียนไหนมีเบลล์วิลล์เป็นเมือง?",
    "context": "CREATE TABLE table_name_37 (school VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_43 WHERE team = \"trojans\" AND school = \"taylor\"",
    "question_en": "What city has trojans as the team, and taylor as the school?",
    "question_th": "เมืองใดมีโทรจันเป็นทีม และเทย์เลอร์เป็นโรงเรียน?",
    "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_en": "What team has great plains as the conference, and concordia (ne) as the school?",
    "question_th": "ทีมใดมีที่ราบกว้างใหญ่เป็นที่ประชุม และมีคอนคอร์เดีย (NE) เป็นโรงเรียน?",
    "context": "CREATE TABLE table_name_58 (team VARCHAR, conference VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_53 WHERE city = \"hillsboro\"",
    "question_en": "What school is in hillsboro city?",
    "question_th": "โรงเรียนอะไรในเมืองฮิลส์โบโร?",
    "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_en": "How many games have a February larger than 11, and a Record of 23-7-8?",
    "question_th": "มีกี่เกมในเดือนกุมภาพันธ์มากกว่า 11 และมีสถิติ 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_en": "How much February has a Game larger than 37, and an Opponent of chicago black hawks?",
    "question_th": "เดือนกุมภาพันธ์มีเกมที่ใหญ่กว่า 37 เกมและเป็นฝ่ายตรงข้ามของชิคาโกแบล็กฮอว์กส์เท่าไร?",
    "context": "CREATE TABLE table_name_95 (february VARCHAR, game VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT february FROM table_name_91 WHERE game = 40",
    "question_en": "Which February has a Game of 40?",
    "question_th": "เดือนกุมภาพันธ์ใดที่มีเกม 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_en": "Which Record has a February smaller than 8, and an Opponent of montreal canadiens?",
    "question_th": "บันทึกใดที่มีเดือนกุมภาพันธ์น้อยกว่า 8 และเป็นฝ่ายตรงข้ามของชาวแคนาดาในมอนทรีออล?",
    "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_en": "Which Score has a Game larger than 40, and a Record of 25-10-8?",
    "question_th": "คะแนนใดที่มีเกมมากกว่า 40 และมีสถิติ 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_en": "What was the team performance in 1977?",
    "question_th": "ผลงานของทีมในปี 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_en": "What was the position of the player whose team lost super bowl xxv before 1992, with a team defense rank larger than 3?",
    "question_th": "ตำแหน่งใดของผู้เล่นที่ทีมแพ้ซูเปอร์โบวล์ xxv ก่อนปี 1992 โดยมีอันดับการป้องกันทีมมากกว่า 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_en": "What round was Joe Patton selected with a pick over 68?",
    "question_th": "Joe Patton ถูกเลือกรอบใดด้วยตัวเลือกมากกว่า 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_en": "Which Sail number has a Position smaller than 2?",
    "question_th": "หมายเลขใบใดที่มีตำแหน่งน้อยกว่า 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_en": "WHICH State/country that has ray roberts?",
    "question_th": "รัฐ/ประเทศใดที่มีเรย์โรเบิร์ตส์",
    "context": "CREATE TABLE table_name_43 (state_country VARCHAR, skipper VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_30 WHERE tournament = \"kuwait\"",
    "question_en": "What surface did Smeets play on during the Kuwait tournament?",
    "question_th": "Smeets เล่นบนพื้นผิวใดในระหว่างทัวร์นาเมนต์คูเวต?",
    "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_en": "What tournament did Smeets play against Mark nielsen?",
    "question_th": "Smeets เล่นกับ 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_en": "Who was the opponent during the tournament in Kuwait?",
    "question_th": "คู่ต่อสู้ระหว่างทัวร์นาเมนต์ที่คูเวตคือใคร?",
    "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_en": "What is the weight of the player from the vk primorac kotor club?",
    "question_th": "น้ำหนักของผู้เล่นจาก 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_en": "What is the weight of the player from pvk jadran club?",
    "question_th": "น้ำหนักของผู้เล่นจาก 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_en": "What is the name of the player from club pro recco?",
    "question_th": "นักเตะ 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_en": "What is the height of the player from club vk primorac kotor who plays gk?",
    "question_th": "ความสูงของผู้เล่นจาก club vk primorac kotor ที่เล่น 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_en": "What is Team 1 where Team 2 is gombe united f.c.?",
    "question_th": "ทีม 1 คืออะไร โดยที่ทีม 2 คือ กอมเบ ยูไนเต็ด เอฟซี?",
    "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_en": "What is Team 1 where Team 2 is al tahrir?",
    "question_th": "ทีม 1 คืออะไร โดยที่ทีม 2 คือ อัล ตาห์รีร์?",
    "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_en": "What is the 2nd leg where Team 2 is fc 105 libreville?",
    "question_th": "เลกที่ 2 ซึ่งทีม 2 คือ fc 105 ลีเบรอวิลล์ คืออะไร?",
    "context": "CREATE TABLE table_name_9 (team_2 VARCHAR)"
  },
  {
    "answer": "SELECT course FROM table_name_68 WHERE edition = \"117th\"",
    "question_en": "What was the course called that had an Edition of 117th?",
    "question_th": "หลักสูตรที่เรียกว่าอะไรที่มีฉบับที่ 117?",
    "context": "CREATE TABLE table_name_68 (course VARCHAR, edition VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_name_78 WHERE location = \"brookline, massachusetts\"",
    "question_en": "What was the earliest year that had a location of Brookline, Massachusetts?",
    "question_th": "ปีแรกสุดที่มีที่ตั้งคือเมืองบรูคไลน์ รัฐแมสซาชูเซตส์ คือปีใด",
    "context": "CREATE TABLE table_name_78 (year INTEGER, location VARCHAR)"
  },
  {
    "answer": "SELECT AVG(year) FROM table_name_21 WHERE edition = \"115th\"",
    "question_en": "What year had an edition of 115th?",
    "question_th": "ปีใดมีฉบับที่ 115?",
    "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_en": "How many points did ginger have when she was ranked 5th on a 350cc class bike?",
    "question_th": "Ginger ได้กี่แต้มเมื่อเธออยู่ในอันดับที่ 5 ในคลาสไบค์ 350cc?",
    "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_en": "What year was she ranked 16th with over 12 points?",
    "question_th": "เธออยู่อันดับที่ 16 ในปีใดด้วยคะแนนมากกว่า 12 คะแนน?",
    "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_en": "What year was she on a 350cc class bike, ranked 16th, with over 0 wins?",
    "question_th": "เธอขี่รถคลาส 350cc อันดับที่ 16 ในปีใด โดยชนะมากกว่า 0 ครั้ง",
    "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_en": "How many points did she have with team bultaco, ranked 6th?",
    "question_th": "เธอได้กี่คะแนนกับทีมบุลตาโกอันดับ 6?",
    "context": "CREATE TABLE table_name_40 (points INTEGER, team VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT kashmiri FROM table_name_90 WHERE indonesian = \"senin\"",
    "question_en": "What is the Kashmiri word for the Indonesian word senin?",
    "question_th": "คำแคชเมียร์จากคำว่า Senin ในภาษาอินโดนีเซียคืออะไร?",
    "context": "CREATE TABLE table_name_90 (kashmiri VARCHAR, indonesian VARCHAR)"
  },
  {
    "answer": "SELECT turkish FROM table_name_51 WHERE bangla = \"shombar সোমবার\"",
    "question_en": "What is the Turkish word for the Bangla word shombar সোমবার?",
    "question_th": "คำภาษาตุรกีสำหรับคำบางลา shombar সোমবারคืออะไร?",
    "context": "CREATE TABLE table_name_51 (turkish VARCHAR, bangla VARCHAR)"
  },
  {
    "answer": "SELECT pashto FROM table_name_24 WHERE somali = \"talaado\"",
    "question_en": "What is the Pashto word for the Somali word talaado?",
    "question_th": "คำ Pashto สำหรับคำโซมาเลีย talaado คืออะไร?",
    "context": "CREATE TABLE table_name_24 (pashto VARCHAR, somali VARCHAR)"
  },
  {
    "answer": "SELECT punjabi__pakistan_ FROM table_name_58 WHERE kurdish = \"یـــەک شـەمـمـە yak sham\"",
    "question_en": "What is the Punjabi (Pakistan) word for the Kurdish word یـــەک شـەمـمـە yak sham?",
    "question_th": "ภาษาปัญจาบ (ปากีสถาน) คืออะไร",
    "context": "CREATE TABLE table_name_58 (punjabi__pakistan_ VARCHAR, kurdish VARCHAR)"
  },
  {
    "answer": "SELECT maltese FROM table_name_6 WHERE malay = \"rabu\"",
    "question_en": "What is the Maltese word for the Malay word rabu?",
    "question_th": "คำภาษามอลตาที่มาจากคำภาษามาเลย์ rabu คืออะไร?",
    "context": "CREATE TABLE table_name_6 (maltese VARCHAR, malay VARCHAR)"
  },
  {
    "answer": "SELECT pashto FROM table_name_76 WHERE malayalam = \"വ്യാഴം vyazham\"",
    "question_en": "What is the Pashto word for the Malayalam word വ്യാഴം vyazham?",
    "question_th": "คำว่า Pashto ในภาษามาลายาลัม വ്യാഴം vyazham คืออะไร",
    "context": "CREATE TABLE table_name_76 (pashto VARCHAR, malayalam VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_80 WHERE date = \"june 22\"",
    "question_en": "Which Score has a Date of june 22?",
    "question_th": "สกอร์ไหนมีวันที่ 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_en": "How much Attendance has an Opponent of rockies, and a Record of 32-30?",
    "question_th": "ฝ่ายตรงข้ามของร็อคกี้มีผู้เข้าร่วมมากเพียงใดและมีสถิติ 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_en": "Who was the opponent in which the bout ended in round 2?",
    "question_th": "คู่ต่อสู้ที่การแข่งขันจบลงยกที่ 2 คือใคร?",
    "context": "CREATE TABLE table_name_71 (opponent VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT method FROM table_name_82 WHERE time = \"4:15\"",
    "question_en": "What was the method of the bout lasting 4:15?",
    "question_th": "การแข่งขันเวลา 4:15 มีวิธีการต่อสู้อย่างไร?",
    "context": "CREATE TABLE table_name_82 (method VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_57 WHERE time = \"4:15\"",
    "question_en": "What was the record after the bout lasting 4:15?",
    "question_th": "บันทึกหลังไฟต์ที่ 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_en": "How many Pick has a Round smaller than 13, and a Position of fullback?",
    "question_th": "มีกี่พิคที่มีรอบที่น้อยกว่า 13 และมีตำแหน่งฟูลแบ็ก?",
    "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_en": "WHo has a Position of end and a School/Club Team of oregon state?",
    "question_th": "ใครมีตำแหน่งสุดท้ายและทีมโรงเรียน/สโมสรของรัฐออริกอน?",
    "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_en": "Which Round has a Player of brunel christensen and a Pick smaller than 293?",
    "question_th": "รอบใดที่มีผู้เล่นของบรูเนล คริสเตนเซ่นและตัวเลือกที่น้อยกว่า 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_en": "What score was on July 25?",
    "question_th": "วันที่ 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_en": "Which rule has The Event of n/a, The Result of loss, and The Location of winsford england?",
    "question_th": "กฎข้อใดมีเหตุการณ์ไม่มี ผลการสูญเสีย และตำแหน่งของวินส์ฟอร์ด อิงแลนด์",
    "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_en": "Which Opponent has a Round of 4, and a Rules of thai boxing?",
    "question_th": "คู่ต่อสู้คนไหนมียก 4 และกติกามวยไทย?",
    "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_en": "Which Opponent has a Round of 3, a Time of n/a, and a Rules of n/a?",
    "question_th": "ฝ่ายตรงข้ามคนใดที่มีรอบ 3, เวลาไม่มี และกฎไม่มี",
    "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_en": "Where has a Rules of thai boxing, and a Round of n/a, and an Opponent of everton crawford?",
    "question_th": "กติกามวยไทย มีรอบไม่มี และคู่ต่อสู้ของเอฟเวอร์ตัน ครอว์ฟอร์ด มีที่ไหน?",
    "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_en": "WHich Rules has a Method of ko (punch)?",
    "question_th": "กฎข้อไหนมีวิธี ko (หมัด)?",
    "context": "CREATE TABLE table_name_26 (rules VARCHAR, method VARCHAR)"
  },
  {
    "answer": "SELECT torque FROM table_name_63 WHERE capacity = \"1905 cc\"",
    "question_en": "What torque does a 1905 cc capacity have?",
    "question_th": "ความจุ 1905 ซีซี มีแรงบิดเท่าไหร่?",
    "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_en": "What torque does 1.9 diesel with 1905 cc have?",
    "question_th": "1.9 ดีเซล 1905 ซีซี มีแรงบิดเท่าไหร่?",
    "context": "CREATE TABLE table_name_30 (torque VARCHAR, name VARCHAR, capacity VARCHAR)"
  },
  {
    "answer": "SELECT torque FROM table_name_18 WHERE type = \"daewoo\"",
    "question_en": "What torque does daewoo have?",
    "question_th": "แดวูมีแรงบิดเท่าใด?",
    "context": "CREATE TABLE table_name_18 (torque VARCHAR, type VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_39 WHERE score = \"3–4\" AND attendance > 34 OFFSET 609",
    "question_en": "Score of 3–4, and a Attendance larger than 34,609 happened on what date?",
    "question_th": "คะแนน 3–4 และมีผู้เข้าร่วมมากกว่า 34,609 คน เกิดขึ้นในวันที่ใด",
    "context": "CREATE TABLE table_name_39 (date VARCHAR, score VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_85 WHERE record = \"12–15\"",
    "question_en": "Record of 12–15 happened on what date?",
    "question_th": "บันทึก 12–15 เกิดขึ้นวันไหน?",
    "context": "CREATE TABLE table_name_85 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_11 WHERE date = \"april 9\"",
    "question_en": "Date of april 9 had what score?",
    "question_th": "วันที่ 9 เมษายน ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_11 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT AVG(attendance) FROM table_name_10 WHERE record = \"11–12\"",
    "question_en": "Record of 11–12 involved what average attendance figures?",
    "question_th": "บันทึก 11–12 คนเกี่ยวข้องกับตัวเลขผู้เข้าร่วมโดยเฉลี่ยเท่าใด",
    "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_en": "What predecessor has a district less than 11, 68th as the Congress, and may 1, 1923 as the date?",
    "question_th": "บรรพบุรุษคนใดมีเขตน้อยกว่า 11, 68 เป็นสภาคองเกรส, และ 1 พฤษภาคม 1923 เป็นวันที่?",
    "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_en": "What Hyper Transport version has 22.4 gb/s of Max. Aggregate bandwidth?",
    "question_th": "Hyper Transport เวอร์ชันใดที่มีความเร็วสูงสุด 22.4 gb/s แบนด์วิธรวม?",
    "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_en": "What is the Max Aggregate bandwidth with a HyperTransport of 2?",
    "question_th": "แบนด์วิดท์ Max Aggregate ที่มี HyperTransport เท่ากับ 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_en": "Who was the opposing team during the game in Zagreb?",
    "question_th": "ใครคือทีมตรงข้ามระหว่างเกมที่ซาเกร็บ?",
    "context": "CREATE TABLE table_name_80 (opponent VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_52 WHERE record = \"35-31\"",
    "question_en": "The record of 35-31 has what score?",
    "question_th": "สถิติ 35-31 มีสกอร์เท่าไหร่?",
    "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_en": "Which Manufacturer has 1 lap and had an accident?",
    "question_th": "ผู้ผลิตรายใดวิ่ง 1 รอบแล้วประสบอุบัติเหตุ?",
    "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_en": "Which rider has a Manufacturer of honda with a time of +44.814?",
    "question_th": "ผู้ขับขี่คนใดมีผู้ผลิตฮอนด้าด้วยเวลา +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_en": "How many grids have a time of +1:21.239 and more than 25 laps?",
    "question_th": "กี่กริดที่มีเวลา +1:21.239 และมากกว่า 25 รอบ?",
    "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_en": "What is the average episode number on 19 March 1993 with Jim Sweeney as performer 1?",
    "question_th": "หมายเลขตอนเฉลี่ยของวันที่ 19 มีนาคม พ.ศ. 2536 โดยมีจิม สวีนีย์เป็นนักแสดงคนที่ 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_en": "Who is performer 2 of the episode on 9 April 1993 with Josie Lawrence as performer 4?",
    "question_th": "ใครคือนักแสดงคนที่ 2 ของตอนที่ 9 เมษายน พ.ศ. 2536 โดยมีโจซี่ ลอว์เรนซ์เป็นนักแสดงคนที่ 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_en": "What is the date of the episode with Ryan Stiles as performer 2, Colin Mochrie as performer 3, and Tony Slattery as performer 4?",
    "question_th": "วันที่ของตอนคือ Ryan Stiles ในฐานะนักแสดงคนที่ 2, Colin Mochrie ในฐานะนักแสดงคนที่ 3 และ Tony Slattery ในฐานะนักแสดงคนที่ 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_en": "Who is performer 4 on episode 3, where Jim Sweeney was performer 1?",
    "question_th": "ใครคือนักแสดงคนที่ 4 ในตอนที่ 3 โดยที่ Jim Sweeney เป็นนักแสดงคนที่ 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_en": "What is the episode number where Jim Sweeney was performer 1 and Mike Mcshane was performer 4?",
    "question_th": "หมายเลขตอนที่ Jim Sweeney เป็นนักแสดงคนที่ 1 และ Mike Mcshane เป็นนักแสดงคนที่ 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_en": "Which Wrestler has an Entered of 5, and a Pinned of mvp?",
    "question_th": "นักมวยปล้ำคนไหนได้เข้า 5 คน และได้ปักหมุดเป็น 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_en": "What route with the line color brown has the lowest number of stations served?",
    "question_th": "เส้นทางใดที่มีสายสี สีน้ำตาล จำนวนสถานีที่ให้บริการน้อยที่สุด?",
    "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_en": "Which Round is the highest one that has a College/Junior/Club Team (League) of torpedo yaroslavl (rus)?",
    "question_th": "รอบใดคือรอบสูงสุดที่มีทีมวิทยาลัย/จูเนียร์/คลับ (ลีก) เป็นตอร์ปิโด ยาโรสลาฟล์ (รัส)?",
    "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_en": "Which Round has a Player of todd fedoruk?",
    "question_th": "รอบไหนมีผู้เล่น ท็อดด์ เฟโดรุก?",
    "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ébastien bourdais\" AND laps > 70",
    "question_en": "How much Grid has a Time/Retired of +1 lap, and a Driver of sébastien bourdais, and Laps larger than 70?",
    "question_th": "กริดมีเวลา/เกษียณเป็น +1 รอบ และนักแข่งของ sébastien bourdais และรอบที่มากกว่า 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_en": "How many Laps have a Driver of david coulthard, and a Grid smaller than 14?",
    "question_th": "เดวิด คูลฮาร์ดมีไดรเวอร์หนึ่งรอบกี่รอบ และมีกริดที่เล็กกว่า 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_en": "How many Laps have a Grid of 15?",
    "question_th": "กี่รอบมีตาราง 15?",
    "context": "CREATE TABLE table_name_52 (laps VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT catalogno FROM table_name_31 WHERE remark = \"#160 us\"",
    "question_en": "Which Catalogno was #160 us?",
    "question_th": "Catalogno ใดคือ #160 เรา?",
    "context": "CREATE TABLE table_name_31 (catalogno VARCHAR, remark VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_54 WHERE year = 1971",
    "question_en": "What title was released in 1971?",
    "question_th": "ชื่ออะไรเปิดตัวในปี 1971?",
    "context": "CREATE TABLE table_name_54 (title VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT format FROM table_name_26 WHERE catalogno = \"st 491\"",
    "question_en": "Whati s the format for the catalogno of st 491?",
    "question_th": "แคตตาล็อกของ st 491 อยู่ในรูปแบบใด",
    "context": "CREATE TABLE table_name_26 (format VARCHAR, catalogno VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_58 WHERE remark = \"#104 us\"",
    "question_en": "What year was remark #104 us?",
    "question_th": "ข้อสังเกต #104 เราปีไหน?",
    "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_en": "What title had a remark of #21 us [riaa certified gold january 3, 1990]?",
    "question_th": "ชื่ออะไรมีความคิดเห็นถึง #21 us [riaa certified gold มกราคม 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_en": "What catalogno was in 1971 and had a remark of #27 us?",
    "question_th": "แค็ตตาล็อกอะไรคือในปี 1971 และมีความคิดเห็นถึง #27 เรา?",
    "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_en": "what AAAAA class has the school year of 1990-91?",
    "question_th": "ชั้นเรียน AAAAA ใดมีปีการศึกษา 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_en": "what AAA class has a school year of 1989-90?",
    "question_th": "ชั้นเรียน AAA ใดที่มีปีการศึกษา 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_en": "what AA class has a AAA class of commerce?",
    "question_th": "AA คลาสใดที่มีคลาสการค้า AAA",
    "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_en": "What is the average week for the game against baltimore colts with less than 41,062 in attendance?",
    "question_th": "สัปดาห์เฉลี่ยของเกมกับบัลติมอร์ โคลท์ที่มีผู้เข้าชมน้อยกว่า 41,062 คนคือเท่าใด",
    "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_en": "What was the average week for the gaime against the philadelphia eagles with less than 31,066 in attendance?",
    "question_th": "สัปดาห์เฉลี่ยสำหรับเกมกับฟิลาเดลเฟียอีเกิลส์ที่มีผู้เข้าร่วมน้อยกว่า 31,066 คนคือเท่าใด",
    "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_en": "What is the highest attendance for the game after week 1 on November 12, 1961?",
    "question_th": "ผู้เข้าชมเกมสูงสุดหลังสัปดาห์ที่ 1 ในวันที่ 12 พฤศจิกายน พ.ศ. 2504 คือเท่าใด",
    "context": "CREATE TABLE table_name_27 (attendance INTEGER, week VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_37 WHERE week = 4",
    "question_en": "What was the result of the game on week 4?",
    "question_th": "ผลการแข่งขันในสัปดาห์ที่ 4 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_37 (result VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT MIN(round) FROM table_name_79 WHERE player = \"joe patterson\"",
    "question_en": "What is the lowest Round of joe patterson?",
    "question_th": "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_en": "Which School/Club Team has a Round larger than 16?",
    "question_th": "ทีมโรงเรียน/สโมสรใดที่มีรอบมากกว่า 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_en": "What is listed as the highest Points that's got a Position that's smaller than 1?",
    "question_th": "อะไรคือจุดสูงสุดที่มีตำแหน่งที่น้อยกว่า 1?",
    "context": "CREATE TABLE table_name_64 (points INTEGER, position INTEGER)"
  },
  {
    "answer": "SELECT AVG(draws) FROM table_name_46 WHERE played < 18",
    "question_en": "What is the Draws average that has a Played that's smaller than 18?",
    "question_th": "ค่าเฉลี่ยเสมอที่มีการเล่นที่น้อยกว่า 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_en": "What is the lowest Wins that has the Team of Olimpia and Draws that's smaller than 4?",
    "question_th": "อะไรคือชัยชนะต่ำสุดที่มีทีม Olimpia และเสมอที่น้อยกว่า 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ño\" AND position > 1",
    "question_en": "What is the highest Played that's for the Team of Cerro Porteño, with a Position that's larger than 1?",
    "question_th": "ตำแหน่งที่เล่นสูงสุดของทีม Cerro Porteño โดยมีตำแหน่งที่มากกว่า 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_en": "Which tournament included an opponent of Marinko Matosevic?",
    "question_th": "ทัวร์นาเมนต์ใดที่มีคู่ต่อสู้ของ 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_en": "Who was the opponent when the score was 6-3, 6-3?",
    "question_th": "คู่ต่อสู้เมื่อสกอร์เป็น 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_en": "Can you tell me the Record that has the Home of ny islanders?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าบันทึกที่มีบ้านของชาวเกาะใด ๆ ?",
    "context": "CREATE TABLE table_name_26 (record VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_42 WHERE date = \"december 15\"",
    "question_en": "Can you tell me the Record that has the Date of december 15?",
    "question_th": "คุณช่วยบอกบันทึกที่มีวันที่ 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_en": "Can you tell me the Record that has the Home of detroit, and the Visitor of phoenix?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมถึงบันทึกที่มีบ้านของดีทรอยต์และผู้มาเยือนฟีนิกซ์?",
    "context": "CREATE TABLE table_name_59 (record VARCHAR, home VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_84 WHERE visitor = \"florida\"",
    "question_en": "Can you tell me the Date that has the Visitor of florida?",
    "question_th": "คุณช่วยบอกวันที่ที่มีผู้มาเยือนฟลอริดาหน่อยได้ไหม?",
    "context": "CREATE TABLE table_name_84 (date VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_39 WHERE f_laps = \"test driver\"",
    "question_en": "Which position had f/laps that was test driver?",
    "question_th": "ตำแหน่งใดมี f/lap ที่เป็นนักขับทดสอบ",
    "context": "CREATE TABLE table_name_39 (position VARCHAR, f_laps VARCHAR)"
  },
  {
    "answer": "SELECT poles FROM table_name_47 WHERE position = \"8th\"",
    "question_en": "Which poles were there for the 8th position?",
    "question_th": "มีเสาไหนอยู่ตำแหน่งที่ 8?",
    "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_en": "What race was there in the formula one series when there was a test driver?",
    "question_th": "มีการแข่งขันอะไรบ้างในซีรีส์ Formula One เมื่อมีนักแข่งทดสอบ?",
    "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_en": "Which Extra points 1 point has a Total Points smaller than 30, and Touchdowns (5 points) of 5?",
    "question_th": "แต้มพิเศษ 1 แต้มใดที่มีแต้มรวมน้อยกว่า 30 และทัชดาวน์ (5 แต้ม) เท่ากับ 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_en": "How many Touchdowns (5 points) have an Extra points 1 point of 0, and a Field goals (5 points) larger than 0?",
    "question_th": "จำนวนทัชดาวน์ (5 คะแนน) มีคะแนนพิเศษ 1 คะแนนจาก 0 และประตูในสนาม (5 คะแนน) มากกว่า 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_en": "Which Extra points 1 point is the highest one that has a Total Points smaller than 8?",
    "question_th": "แต้มพิเศษ 1 แต้มใดคือแต้มสูงสุดที่มีแต้มรวมน้อยกว่า 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_en": "Which Extra points 1 point is the lowest one that has a Player of walter shaw?",
    "question_th": "แต้มพิเศษ 1 แต้มใดต่ำสุดที่มีผู้เล่นของ วอลเตอร์ ชอว์?",
    "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_en": "How many Field goals (5 points) have a Total Points of 123, and Touchdowns (5 points) larger than 13?",
    "question_th": "จำนวนประตูในสนาม (5 คะแนน) ที่มีคะแนนรวม 123 และทัชดาวน์ (5 คะแนน) มากกว่า 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–18–10\"",
    "question_en": "How many people attended the game with parent recording the decision and a Record of 42–18–10?",
    "question_th": "มีกี่คนที่เข้าร่วมเกมโดยผู้ปกครองบันทึกการตัดสินใจและมีสถิติ 42–18–10 คน",
    "context": "CREATE TABLE table_name_52 (attendance INTEGER, decision VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_8 WHERE home = \"vancouver\"",
    "question_en": "What is the team's record when vancouver was at home?",
    "question_th": "บันทึกของทีมเมื่อแวนคูเวอร์อยู่ที่บ้านเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_8 (record VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_6 WHERE date = \"november 22, 1942\"",
    "question_en": "Name the opponent on november 22, 1942",
    "question_th": "ตั้งชื่อคู่ต่อสู้เมื่อวันที่ 22 พฤศจิกายน พ.ศ. 2485",
    "context": "CREATE TABLE table_name_6 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_8 WHERE visitor = \"green bay packers\"",
    "question_en": "What score did the Green Bay Packers get as visitor?",
    "question_th": "กรีนเบย์ แพ็คเกอร์ส ได้คะแนนเท่าไหร่ในฐานะผู้มาเยือน?",
    "context": "CREATE TABLE table_name_8 (score VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_56 WHERE date = \"october 31\"",
    "question_en": "On October 31 what team played at home?",
    "question_th": "วันที่ 31 ตุลาคม ทีมไหนเล่นในบ้าน?",
    "context": "CREATE TABLE table_name_56 (home VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_20 WHERE date = \"december 5\"",
    "question_en": "On December 5 what team played their home game?",
    "question_th": "วันที่ 5 ธันวาคม ทีมใดเล่นเกมเหย้า?",
    "context": "CREATE TABLE table_name_20 (home VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_40 WHERE date = \"october 31\"",
    "question_en": "How many people attended the game on October 31?",
    "question_th": "มีผู้เข้าร่วมเกมในวันที่ 31 ตุลาคมกี่คน?",
    "context": "CREATE TABLE table_name_40 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_19 WHERE player = \"rob nicholson\"",
    "question_en": "What nationality is Rob Nicholson?",
    "question_th": "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_en": "What college or club team did Steve Jones play for?",
    "question_th": "Steve Jones เล่นให้กับทีมวิทยาลัยหรือสโมสรใด",
    "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_en": "What nationality is Barry Duench?",
    "question_th": "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_en": "What was Saskatoon Accelerators score on January 6, 2008?",
    "question_th": "คะแนน Saskatoon Accelerators เมื่อวันที่ 6 มกราคม 2551 เป็นเท่าใด",
    "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_en": "What was the score on April 6, 2008?",
    "question_th": "คะแนนเมื่อวันที่ 6 เมษายน 2551 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_12 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_61 WHERE date = \"april 5, 2008\"",
    "question_en": "Which home team played on April 5, 2008?",
    "question_th": "ทีมเจ้าบ้านใดเล่นในวันที่ 5 เมษายน พ.ศ. 2551?",
    "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_en": "Which home team played on January 5, 2008?",
    "question_th": "ทีมเจ้าบ้านใดเล่นในวันที่ 5 มกราคม พ.ศ. 2551?",
    "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_en": "What was the score at CN Centre on April 5, 2008?",
    "question_th": "คะแนนของ CN Center เมื่อวันที่ 5 เมษายน 2551 เป็นเท่าใด",
    "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_en": "What was the score for Edmonton Drillers on January 6, 2008?",
    "question_th": "คะแนนของ Edmonton Drillers เมื่อวันที่ 6 มกราคม 2551 เป็นเท่าใด",
    "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_en": "How much Silver has a Nation of mexico, and a Total larger than 1?",
    "question_th": "ชาติของเม็กซิโกมีเงินเท่าใด และผลรวมมากกว่า 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_en": "How much Bronze has a Gold larger than 0, and a Total smaller than 1?",
    "question_th": "ทองแดงจำนวนเท่าใดที่มีทองคำมากกว่า 0 และผลรวมน้อยกว่า 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_en": "How much Bronze has a Nation of mexico, and a Total larger than 1?",
    "question_th": "ประเทศของเม็กซิโกมีระดับ Bronze เท่าใด และผลรวมมากกว่า 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_en": "In which District(s) has a Democrat held office since 1998?",
    "question_th": "เขตใดมีพรรคเดโมแครตดำรงตำแหน่งตั้งแต่ปี 2541",
    "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_en": "Which Rank is the Country of soviet union with a Total smaller than 19?",
    "question_th": "ประเทศในสหภาพโซเวียตที่มีคะแนนรวมน้อยกว่า 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_en": "What is the lowest Rank of Denmark County with a Total smaller than 1?",
    "question_th": "อันดับต่ำสุดของเดนมาร์กเคาน์ตี้ที่มีคะแนนรวมน้อยกว่า 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_en": "Who was the loser of the heavyweight division fight that lasted a time of 2:24?",
    "question_th": "ใครคือผู้แพ้ในการชกรุ่นเฮฟวี่เวทที่กินเวลา 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_en": "What was the weight division for the fight that ended in a TKO (strikes)?",
    "question_th": "การแบ่งน้ำหนักสำหรับการชกที่จบลงด้วย TKO (นัดหยุดงาน) คืออะไร?",
    "context": "CREATE TABLE table_name_55 (weight_division VARCHAR, method VARCHAR)"
  },
  {
    "answer": "SELECT loser FROM table_name_87 WHERE winner = \"antonio silva\"",
    "question_en": "Who was the loser of the fight against antonio silva?",
    "question_th": "ใครคือผู้แพ้ในการต่อสู้กับอันโตนิโอ ซิลวา?",
    "context": "CREATE TABLE table_name_87 (loser VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT AVG(round) FROM table_name_66 WHERE loser = \"tank abbott\"",
    "question_en": "What was the average number of rounds in the fight where Tank Abbott lost?",
    "question_th": "จำนวนรอบโดยเฉลี่ยในการต่อสู้ที่ Tank Abbott แพ้คือเท่าใด",
    "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_en": "In what Round was a Defensive Tackle Pick # less than 19?",
    "question_th": "Defensive Tackle Pick # น้อยกว่า 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_en": "What is the Pick # with an Overall of 19?",
    "question_th": "Pick # ที่มีคะแนนรวม 19 คืออะไร?",
    "context": "CREATE TABLE table_name_22 (pick__number INTEGER, overall VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_71 WHERE athlete = \"ali ekranpour\"",
    "question_en": "What is the event result for athlete Ali Ekranpour?",
    "question_th": "ผลการแข่งขันของนักกีฬา อาลี เอกรานปูร์ เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_71 (event VARCHAR, athlete VARCHAR)"
  },
  {
    "answer": "SELECT final FROM table_name_73 WHERE event = \"63.5 kg\"",
    "question_en": "What is the final result for the 63.5 kg?",
    "question_th": "ผลลัพธ์สุดท้ายของรุ่น 63.5 กก. คืออะไร",
    "context": "CREATE TABLE table_name_73 (final VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_71 WHERE score = \"270 (–18)\" AND location = \"scotland\"",
    "question_en": "What was the date of the tournament in Scotland with a score of 270 (–18)?",
    "question_th": "วันที่จัดการแข่งขันในสกอตแลนด์ด้วยคะแนน 270 (–18) คือวันที่เท่าไร?",
    "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_en": "Where was the tournament won by Hale Irwin (19)?",
    "question_th": "การแข่งขันชนะโดย 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_en": "How much is vinculum when the parentheses are 0.(81)?",
    "question_th": "วินคิวลัมมีค่าเท่าไหร่เมื่อวงเล็บเป็น 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_en": "What fraction has a value for dots of 0.\\dot{3}?",
    "question_th": "เศษส่วนใดมีค่าสำหรับจุด 0.\\dot{3}?",
    "context": "CREATE TABLE table_name_85 (fraction VARCHAR, dots VARCHAR)"
  },
  {
    "answer": "SELECT dots FROM table_name_29 WHERE ellipsis = \"0.012345679…\"",
    "question_en": "What is the dot value when the ellipsis is 0.012345679…?",
    "question_th": "ค่าจุดเมื่อจุดไข่ปลาคือ 0.012345679… คืออะไร",
    "context": "CREATE TABLE table_name_29 (dots VARCHAR, ellipsis VARCHAR)"
  },
  {
    "answer": "SELECT fraction FROM table_name_58 WHERE parentheses = \"0.(3)\"",
    "question_en": "What fraction has parentheses of 0.(3)?",
    "question_th": "เศษส่วนใดมีวงเล็บ 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_en": "What is the value for parentheses with a dots value of 0.\\dot{6}?",
    "question_th": "ค่าของวงเล็บที่มีค่าจุด 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_en": "What is the value of vinculum for parentheses of 0.(6)?",
    "question_th": "ค่าวินคิวลัมสำหรับวงเล็บ 0.(6) เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_13 (vinculum VARCHAR, parentheses VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_73 WHERE score = \"7-1\"",
    "question_en": "When was the score 7-1?",
    "question_th": "สกอร์ 7-1 เมื่อไหร่?",
    "context": "CREATE TABLE table_name_73 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_26 WHERE score = \"7-1\"",
    "question_en": "What was the loss when the score was 7-1?",
    "question_th": "แพ้อะไรเมื่อสกอร์เป็น 7-1?",
    "context": "CREATE TABLE table_name_26 (loss VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_71 WHERE record = \"46-59\"",
    "question_en": "What was the loss when the record was 46-59?",
    "question_th": "การสูญเสียเมื่อบันทึกเป็น 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–12\"",
    "question_en": "Opponent of @ giants, and a Record of 8–12 had what score?",
    "question_th": "ฝ่ายตรงข้ามของ @ ยักษ์ใหญ่ และสถิติ 8–12 ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_48 (score VARCHAR, opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(attendance) FROM table_name_71 WHERE score = \"4–0\"",
    "question_en": "Score of 4–0 had what attendance number?",
    "question_th": "คะแนน 4-0 มีผู้เข้าร่วมจำนวนเท่าใด",
    "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_en": "What was the losing bonus for the team with a try bonus of 3 and 47 tries for?",
    "question_th": "โบนัสการแพ้ของทีมที่มีโบนัสการลอง 3 และ 47 ครั้งคืออะไร?",
    "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_en": "How many tries for does the team with 263 points against have?",
    "question_th": "ทีมที่มีคะแนน 263 แต้มพยายามพยายามกี่ครั้ง?",
    "context": "CREATE TABLE table_name_13 (tries_for VARCHAR, points_against VARCHAR)"
  },
  {
    "answer": "SELECT drawn FROM table_name_98 WHERE points_for = \"385\"",
    "question_en": "How many draws does the team with 385 points for have?",
    "question_th": "ทีมที่ได้ 385 แต้มเสมอกันกี่แต้ม?",
    "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_en": "What is the number of losses for the team with 1 draw and 34 tries against?",
    "question_th": "จำนวนการแพ้ของทีมที่เสมอ 1 ครั้งและพยายามต่อ 34 ครั้งคือเท่าไร?",
    "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_en": "How many tries for does the team with a try bonus of 1 and 35 points earned?",
    "question_th": "ทีมที่มีโบนัสการลอง 1 และ 35 คะแนนได้รับกี่ครั้ง",
    "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_en": "How many points does the team with 3 losses have?",
    "question_th": "ทีมที่แพ้ 3 นัดมีกี่แต้ม?",
    "context": "CREATE TABLE table_name_52 (points VARCHAR, lost VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_94 WHERE record = \"10-9-7\"",
    "question_en": "What was the score in the game where the record was 10-9-7?",
    "question_th": "คะแนนในเกมที่มีสถิติ 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_en": "What was the first time in December they played the Colorado Avalanche?",
    "question_th": "ครั้งแรกในเดือนธันวาคมที่พวกเขาเล่น 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–28\"",
    "question_en": "What date was the winner the new york jets and a Result of 30–28?",
    "question_th": "ผู้ชนะในนิวยอร์กเจ็ตส์และผลการแข่งขัน 30–28 คือวันที่ใด",
    "context": "CREATE TABLE table_name_67 (date VARCHAR, winner VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_26 WHERE result = \"21–16\"",
    "question_en": "What is the name of the location of the game with a Result of 21–16?",
    "question_th": "สถานที่ของเกมที่มีผลการแข่งขัน 21–16 ชื่ออะไร",
    "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_en": "What is the earliest year the new york jets won at harvard stadium?",
    "question_th": "ปีแรกสุดที่เครื่องบินเจ็ตส์นิวยอร์กชนะที่สนามกีฬาฮาร์วาร์ดคือปีใด",
    "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_en": "Who lost at schaefer stadium when the Winner was new england patriots, and a Date of october 18?",
    "question_th": "ใครแพ้ที่สนามแชเฟอร์เมื่อผู้ชนะคือผู้รักชาติชาวอังกฤษคนใหม่ และวันที่ 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_en": "How many points did the club with a losing bonus of 2 and 300 points against have?",
    "question_th": "สโมสรที่เสียโบนัส 2 และ 300 แต้มมีกี่แต้ม?",
    "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_en": "How many tries for did the club with a 3 losing bonus and 45 points have?",
    "question_th": "สโมสรที่เสียโบนัส 3 ครั้งและ 45 แต้มได้พยายามกี่ครั้ง?",
    "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_en": "What is the try bonus of the club with played?",
    "question_th": "โบนัสลองของสโมสรที่เล่นคืออะไร?",
    "context": "CREATE TABLE table_name_87 (try_bonus VARCHAR)"
  },
  {
    "answer": "SELECT \"points\" AS _against FROM table_name_21 WHERE \"points\" = \"points\"",
    "question_en": "How many points against did the club with points have?",
    "question_th": "สโมสรที่มีคะแนนมีกี่คะแนน?",
    "context": "CREATE TABLE table_name_21 (Id VARCHAR)"
  },
  {
    "answer": "SELECT drawn FROM table_name_79 WHERE points_against = \"542\"",
    "question_en": "What is the drawn by the club with 542 points against?",
    "question_th": "สโมสรเสมอกับ 542 แต้มกับอะไร?",
    "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_en": "How many losses did the club with 22 played and 334 points against have?",
    "question_th": "สโมสรที่เล่นไป 22 นัดและมีแต้มต่อ 334 แต้มแพ้ไปกี่ครั้ง?",
    "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_en": "What attendance does 1-6 record have?",
    "question_th": "บันทึก 1-6 มีผู้เข้าร่วมเท่าใด?",
    "context": "CREATE TABLE table_name_46 (attendance INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_69 WHERE opponent = \"tampa bay buccaneers\"",
    "question_en": "What is the record of Tampa Bay Buccaneers?",
    "question_th": "สถิติของแทมปา เบย์ บัคคาเนียร์สเป็นอย่างไร?",
    "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_en": "What Nationality has a Position of right wing, with a #20 pick?",
    "question_th": "สัญชาติใดมีตำแหน่งปีกขวา โดยเลือก #20",
    "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_en": "What College/junior/club team has a Position of centre, and pick is #22?",
    "question_th": "ทีมวิทยาลัย/จูเนียร์/สโมสรใดมีตำแหน่งศูนย์กลาง และเลือกหมายเลข #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_en": "What is the NHL team that had pick number 32?",
    "question_th": "ทีม NHL ที่เลือกหมายเลข 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_en": "What is the Pick # for the College/junior/club team of edmonton oil kings (wchl), and the position if defence?",
    "question_th": "Pick # สำหรับทีมวิทยาลัย/จูเนียร์/สโมสรของ edmonton oil kings (wchl) คืออะไร และตำแหน่งในการป้องกันคืออะไร",
    "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_en": "What is the name of the Player that shows the NHL team of new york rangers, and a Pick # of 31?",
    "question_th": "ผู้เล่นชื่ออะไรที่แสดงทีม NHL ของ new york rangers และ Pick # จาก 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_en": "Which sum of Seasons in league has a Best Position of 5th (2007)?",
    "question_th": "ผลรวมของฤดูกาลใดในลีกที่มีตำแหน่งดีที่สุดในอันดับที่ 5 (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_en": "Which City has Seasons in league of 17, and a Club of shakhter?",
    "question_th": "เมืองใดมีฤดูกาลในลีก 17 และ 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_en": "What team won after 2008?",
    "question_th": "ทีมใดชนะหลังจากปี 2008?",
    "context": "CREATE TABLE table_name_9 (team VARCHAR, season INTEGER)"
  },
  {
    "answer": "SELECT team FROM table_name_66 WHERE points < 203",
    "question_en": "What team has fewer than 203 points?",
    "question_th": "ทีมใดมีคะแนนน้อยกว่า 203 แต้ม?",
    "context": "CREATE TABLE table_name_66 (team VARCHAR, points INTEGER)"
  },
  {
    "answer": "SELECT SUM(points) FROM table_name_69 WHERE season = 2007",
    "question_en": "What is total amount of points for the 2007 season?",
    "question_th": "คะแนนรวมสำหรับฤดูกาล 2550 เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_69 (points INTEGER, season VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_66 WHERE team = \"collé racing\" AND points > 206",
    "question_en": "Who is the driver for team Collé Racing with more than 206 points?",
    "question_th": "ใครคือนักแข่งของทีม Collé Racing ที่มีคะแนนมากกว่า 206 แต้ม?",
    "context": "CREATE TABLE table_name_66 (driver VARCHAR, team VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_97 WHERE couple = \"steve & anna\"",
    "question_en": "What was the result when the couple was steve & anna?",
    "question_th": "เมื่อคู่รักเป็น สตีฟ & แอนนา ผลเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_97 (result VARCHAR, couple VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_72 WHERE couple = \"shannon & derek\"",
    "question_en": "What was the score when the couple was shannon & derek?",
    "question_th": "ตอนที่ทั้งคู่เป็นแชนนอนและเดเร็กคะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_72 (score VARCHAR, couple VARCHAR)"
  },
  {
    "answer": "SELECT music FROM table_name_30 WHERE couple = \"mario & karina\"",
    "question_en": "What music did Mario & Karina perform?",
    "question_th": "Mario & Karina แสดงดนตรีอะไร?",
    "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_en": "What was the result for Steve & Anna when the score was 21 (7, 7, 7)?",
    "question_th": "สตีฟ&อันนา ผลคะแนนเป็น 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_en": "What was the result when the score was 21 (7, 6, 8)?",
    "question_th": "เมื่อสกอร์เป็น 21 (7, 6, 8) ผลเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_28 (result VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_name_4 WHERE score = \"3–3\" AND date = \"november 11\"",
    "question_en": "Which Points have a Score of 3–3, and a Date of november 11?",
    "question_th": "คะแนนใดมีคะแนน 3–3 และวันที่ 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–6–5\"",
    "question_en": "Which Date has a Home of pittsburgh, and a Record of 3–6–5?",
    "question_th": "วันที่ใดมีบ้านของพิตต์สเบิร์กและมีสถิติ 3–6–5",
    "context": "CREATE TABLE table_name_22 (date VARCHAR, home VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_91 WHERE score = \"4–4\" AND points = 17",
    "question_en": "Which Record has a Score of 4–4, and Points of 17?",
    "question_th": "สถิติใดมีคะแนน 4–4 และคะแนน 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_en": "What's the highest Loses, with Wins that's larger than 3 and a Pos. Larger than 3?",
    "question_th": "อะไรคือการแพ้สูงสุด โดยชัยชนะที่มากกว่า 3 และอันดับ ใหญ่กว่า 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_en": "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?",
    "question_th": "อันดับใดที่มีเหรียญทองแดงมากกว่า 1 และเหรียญเงินมากกว่า 0 และประเทศนอร์เวย์ (ประเทศเจ้าภาพ) และผลรวมมากกว่า 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_en": "Which Bronze has a Total of 11, and a Silver smaller than 6?",
    "question_th": "ทองแดงใดมีคะแนนรวม 11 และเงินน้อยกว่า 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_en": "Which Bronze has a Nation of canada, and a Rank smaller than 6?",
    "question_th": "บรอนซ์ใดมีประเทศแคนาดาและมีอันดับน้อยกว่า 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_en": "Which Gold has a Bronze larger than 6?",
    "question_th": "ทองคำใดมีทองแดงมากกว่า 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_en": "Which Gold has a Rank larger than 6, and a Nation of netherlands, and a Bronze smaller than 0?",
    "question_th": "ทองคำใดที่มีอันดับมากกว่า 6 และมีประเทศเนเธอร์แลนด์ และเหรียญทองแดงที่เล็กกว่า 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_en": "What is the torque of the 1.6 petrol with daewoo power?",
    "question_th": "แรงบิดของเครื่องยนต์เบนซิน 1.6 พร้อมกำลังแดวูอยู่ที่เท่าไร?",
    "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_en": "What is the torque of 1.2 petrol?",
    "question_th": "1.2 เบนซินมีแรงบิดเท่าไหร่?",
    "context": "CREATE TABLE table_name_49 (torque VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT power FROM table_name_66 WHERE name = \"1.9 diesel\"",
    "question_en": "What is the power of 1.9 diesel?",
    "question_th": "เครื่อง 1.9 ดีเซล มีกำลังเท่าไหร่?",
    "context": "CREATE TABLE table_name_66 (power VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT current_map FROM table_name_25 WHERE namesake = \"derain crater\"",
    "question_en": "What is the current map designation of the feature for which derain crater was the namesake?",
    "question_th": "การกำหนดแผนที่ปัจจุบันของสถานที่ซึ่งมีชื่อเดียวกับหลุมอุกกาบาต Derain คืออะไร?",
    "context": "CREATE TABLE table_name_25 (current_map VARCHAR, namesake VARCHAR)"
  },
  {
    "answer": "SELECT albedo_feature_name FROM table_name_65 WHERE name = \"neruda\"",
    "question_en": "What is the Albedo name for Neruda?",
    "question_th": "ชื่ออัลเบโดของเนรูดาคืออะไร?",
    "context": "CREATE TABLE table_name_65 (albedo_feature_name VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT number FROM table_name_28 WHERE name = \"kuiper\"",
    "question_en": "What number is Kuiper?",
    "question_th": "ไคเปอร์คือหมายเลขอะไร",
    "context": "CREATE TABLE table_name_28 (number VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT current_map FROM table_name_63 WHERE namesake = \"discovery rupes\"",
    "question_en": "What is the current map designation of the feature which was named for discovery rupes?",
    "question_th": "การกำหนดแผนที่ปัจจุบันของสถานที่ซึ่งตั้งชื่อตามการค้นพบรูปีคืออะไร?",
    "context": "CREATE TABLE table_name_63 (current_map VARCHAR, namesake VARCHAR)"
  },
  {
    "answer": "SELECT current_map FROM table_name_24 WHERE name = \"debussy\"",
    "question_en": "What is the current map designation for Debussy?",
    "question_th": "การกำหนดแผนที่ปัจจุบันของ Debussy คืออะไร?",
    "context": "CREATE TABLE table_name_24 (current_map VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT current_map FROM table_name_72 WHERE name = \"beethoven\"",
    "question_en": "What is the current map designation for Beethoven?",
    "question_th": "การกำหนดแผนที่ปัจจุบันของ 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_en": "What is the overall FHT points for Denis Kornilov?",
    "question_th": "คะแนน FHT โดยรวมของ 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_en": "What is the lowest 2nd (m) when the points were larger than 251.6?",
    "question_th": "ต่ำสุดอันดับ 2 (m) เมื่อคะแนนมากกว่า 251.6 คืออะไร?",
    "context": "CREATE TABLE table_name_99 (points INTEGER)"
  },
  {
    "answer": "SELECT city FROM table_name_20 WHERE rank = 7",
    "question_en": "What city ranked 7?",
    "question_th": "เมืองใดอันดับที่ 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_en": "How many floors were there with a building rank of less than 3 and a height of 300 / 985 m (ft)?",
    "question_th": "มีกี่ชั้นที่มีอันดับอาคารน้อยกว่า 3 และสูง 300/985 ม. (ฟุต)",
    "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_en": "What is the rank of Etihad Tower 5, with less than 62 floors?",
    "question_th": "เอทิฮัดทาวเวอร์ 5 ที่มีชั้นน้อยกว่า 62 ชั้นอยู่ที่เท่าไร?",
    "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_en": "What city has a building ranked greater than 15 with floors greater than 43?",
    "question_th": "เมืองใดมีอาคารอันดับที่มากกว่า 15 และมีชั้นมากกว่า 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_en": "Which league is for baseball with Laredo Apaches?",
    "question_th": "ลีกใดที่เหมาะกับกีฬาเบสบอลกับ 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_en": "Which league has arena football in the club Laredo Lobos?",
    "question_th": "ลีกใดมีสนามฟุตบอลในสโมสร ลาเรโด โลบอส?",
    "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_en": "Which was the home team for game 3?",
    "question_th": "เจ้าบ้านคนไหนในเกมที่ 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_en": "What was the TV time for Chicago's road game against Phoenix on June 18?",
    "question_th": "เวลาทีวีสำหรับเกมโรดของชิคาโกกับฟีนิกซ์ในวันที่ 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_en": "What was the TV time for the road game against Phoenix where the score was 98-99?",
    "question_th": "เวลาออกอากาศทางทีวีสำหรับเกมโรดแมตช์กับฟีนิกซ์ที่สกอร์ 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_en": "Who was the home team on June 9?",
    "question_th": "วันที่ 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_en": "What was the TV time for the game on June 9?",
    "question_th": "วันที่ 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_en": "At which Conference was the Division in the East, and the Home Stadium named fedexfield?",
    "question_th": "การประชุมครั้งใดที่เป็นดิวิชั่นทางตะวันออก และโฮมสเตเดี้ยมชื่อเฟเด็กซ์ฟิลด์",
    "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_en": "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?",
    "question_th": "โฮมสเตเดี้ยมซึ่งดิวิชั่นอยู่ทางใต้ชื่ออะไร และคอนเฟอเรนซ์เป็นระดับชาติ รวมถึงอยู่ในเมืองที่ชื่อชาร์ล็อตต์ นอร์ธแคโรไลนาด้วย",
    "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_en": "Which Home Stadium has American as its Conference as well as nashville, tennessee as the city?",
    "question_th": "โฮมสเตเดียมแห่งใดที่มีอเมริกันเป็นการประชุมและมีแนชวิลล์เทนเนสซีเป็นเมือง?",
    "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_en": "What is the name of the Conference which Division is south, and the Home Stadium is georgia dome?",
    "question_th": "คอนเฟอเรนซ์ดิวิชั่นอยู่ทางใต้ชื่ออะไร และโฮมสเตเดี้ยมเป็นโดมจอร์เจีย",
    "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_en": "Which Division does the City being jacksonville, florida belong to?",
    "question_th": "เมืองแจ็กสันวิลล์ ฟลอริดา อยู่ในแผนกใด",
    "context": "CREATE TABLE table_name_14 (division VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_11 WHERE date = \"1/22\"",
    "question_en": "What score has 1/22 as the date?",
    "question_th": "คะแนน 1/22 เป็นวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_11 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_86 WHERE date = \"12/1\"",
    "question_en": "What score has 12/1 as the date?",
    "question_th": "วันที่มีคะแนน 12/1 คืออะไร?",
    "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_en": "Which source has a Cost free, and an Activity of some, and an Editor of markitup?",
    "question_th": "แหล่งที่มาใดที่ไม่มีค่าใช้จ่าย และกิจกรรมของบางส่วน และบรรณาธิการของมาร์กอัป",
    "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_en": "Which site has a Cost free and a Editor of jsvi?",
    "question_th": "ไซต์ใดมีค่าใช้จ่ายฟรีและมีโปรแกรมแก้ไข 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_en": "What is the cost of an Open Source that is no?",
    "question_th": "ค่าใช้จ่ายของ Open Source ที่ไม่มีคืออะไร?",
    "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_en": "What venue has a weight (kg) greater than 55, and won as the result?",
    "question_th": "สนามใดมีน้ำหนัก (กก.) มากกว่า 55 และผลการแข่งขันชนะ?",
    "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_en": "Which group has a weight (kg) less than 55?",
    "question_th": "กลุ่มใดมีน้ำหนัก (กก.) น้อยกว่า 55?",
    "context": "CREATE TABLE table_name_18 (group VARCHAR, weight__kg_ INTEGER)"
  },
  {
    "answer": "SELECT position FROM table_name_54 WHERE pick__number = 45",
    "question_en": "Which position has 45 picks?",
    "question_th": "ตำแหน่งใดมี 45 ตัวเลือก?",
    "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_en": "What is the record of the game before week 5 and a bye game site?",
    "question_th": "บันทึกของเกมก่อนสัปดาห์ที่ 5 และเว็บไซต์เกมบายเป็นอย่างไร?",
    "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_en": "Which Seasons have Entries larger than 52, and Poles of 33?",
    "question_th": "ฤดูกาลใดที่มีรายการมากกว่า 52 รายการและมีเสา 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_en": "Which Seasons have a Poles larger than 29, and Entries larger than 191?",
    "question_th": "ฤดูกาลใดมีเสาที่ใหญ่กว่า 29 และรายการที่มีขนาดใหญ่กว่า 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_en": "What ist the Away Leg with an Opposition that is aarhus gymnastik forening?",
    "question_th": "อะไรคือขาเยือนกับฝ่ายค้านที่เป็นนักกายกรรม aarhus?",
    "context": "CREATE TABLE table_name_60 (away_leg VARCHAR, opposition VARCHAR)"
  },
  {
    "answer": "SELECT 2007 FROM table_name_70 WHERE 2006 = \"236\"",
    "question_en": "What 2007 has 236 for 2006?",
    "question_th": "อะไรในปี 2550 มี 236 สำหรับปี 2549",
    "context": "CREATE TABLE table_name_70 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_72 WHERE 2010 = \"2r\" AND 2008 = \"a\"",
    "question_en": "What 2011 has 2r as 2010, and a 2008 of A?",
    "question_th": "ปี 2554 มี 2r เท่ากับปี 2553 และปี 2551 ของ A คืออะไร",
    "context": "CREATE TABLE table_name_72 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2012 FROM table_name_4 WHERE tournament = \"tournament played\"",
    "question_en": "What is the 2012 that has tournament played as the tournament?",
    "question_th": "ปี 2012 ที่ทัวร์นาเมนต์เล่นเป็นทัวร์นาเมนต์คืออะไร?",
    "context": "CREATE TABLE table_name_4 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT artist FROM table_name_51 WHERE place > 1 AND points = 229",
    "question_en": "Which artist had a place larger than 1 with 229 points?",
    "question_th": "ศิลปินคนไหนมีคะแนนมากกว่า 1 ด้วยคะแนน 229 คะแนน?",
    "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_en": "Which January is the lowest one that has an Opponent of florida panthers, and Points smaller than 59?",
    "question_th": "เดือนมกราคมใดที่ต่ำที่สุดที่มีคู่ต่อสู้ของแพนเทอร์ฟลอริดาและแต้มน้อยกว่า 59",
    "context": "CREATE TABLE table_name_13 (january INTEGER, opponent VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_97 WHERE game = 41",
    "question_en": "Which Record has a Game of 41?",
    "question_th": "สถิติใดมีเกม 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_en": "Which Score has a January larger than 21, and Points of 63?",
    "question_th": "คะแนนใดที่มีเดือนมกราคมมากกว่า 21 และคะแนน 63",
    "context": "CREATE TABLE table_name_18 (score VARCHAR, january VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(points) FROM table_name_21 WHERE record = \"25–10–11\" AND january > 28",
    "question_en": "How many Points have a Record of 25–10–11, and a January larger than 28?",
    "question_th": "มีกี่คะแนนที่มีสถิติ 25–10–11 และเดือนมกราคมมากกว่า 28",
    "context": "CREATE TABLE table_name_21 (points VARCHAR, record VARCHAR, january VARCHAR)"
  },
  {
    "answer": "SELECT province FROM table_name_72 WHERE established = 1870",
    "question_en": "what province was established in 1870",
    "question_th": "จังหวัดใดก่อตั้งเมื่อปี พ.ศ. 2413",
    "context": "CREATE TABLE table_name_72 (province VARCHAR, established VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_name_3 WHERE district = \"ohio 13\"",
    "question_en": "Who is the Incumbent that has a District of ohio 13 in Democratic Party?",
    "question_th": "ใครคือผู้ดำรงตำแหน่งที่มีเขตโอไฮโอ 13 ในพรรคเดโมแครต?",
    "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_en": "What is the score of champion Ken Rosewall in 1957?",
    "question_th": "คะแนนของแชมป์ Ken Rosewall ในปี 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_en": "What is the surface of the match with Brian Gottfried as the runner-up?",
    "question_th": "พื้นผิวของแมตช์ที่มี Brian Gottfried เป็นรองแชมป์เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_47 (surface VARCHAR, runner_up VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_93 WHERE runner_up = \"anders järryd\"",
    "question_en": "What is the score of the match with anders järryd as the runner-up?",
    "question_th": "แมตช์นี้ แอนเดอร์ส เยร์ริด เป็นรองแชมป์ด้วยสกอร์เท่าไหร่?",
    "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_en": "What is the low bronze total for the team with 4 total and under 1 gold?",
    "question_th": "ผลรวมทองแดงต่ำสำหรับทีมที่มีทั้งหมด 4 รายการและต่ำกว่า 1 เหรียญทองคือเท่าใด",
    "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_en": "What is the average total for teams with over 3 bronzes and over 8 golds?",
    "question_th": "ผลรวมเฉลี่ยสำหรับทีมที่มีมากกว่า 3 เหรียญทองแดงและมากกว่า 8 เหรียญทองคือเท่าใด?",
    "context": "CREATE TABLE table_name_33 (total INTEGER, bronze VARCHAR, gold VARCHAR)"
  },
  {
    "answer": "SELECT MIN(silver) FROM table_name_99 WHERE total < 1",
    "question_en": "What is the low silver total associated with under 1 total?",
    "question_th": "ผลรวมเงินต่ำที่เกี่ยวข้องกับผลรวมต่ำกว่า 1 คืออะไร?",
    "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_en": "What is the number of points associated with the highest position under 9 and a current position of 22?",
    "question_th": "จำนวนคะแนนที่เกี่ยวข้องกับตำแหน่งสูงสุดต่ำกว่า 9 และตำแหน่งปัจจุบันที่ 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_en": "Performer 3 of paul merton, and a Performer 4 of sandi toksvig is which performer 1?",
    "question_th": "นักแสดงคนที่ 3 ของ paul merton และผู้แสดงคนที่ 4 ของ Sandi Toksvig คือนักแสดงคนไหน",
    "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_en": "Episode of 16 involves which performer 1?",
    "question_th": "ตอนที่ 16 มีนักแสดงคนไหน 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_en": "Performer 2 of compilation 1 had what performer 1?",
    "question_th": "นักแสดง 2 ของการรวบรวม 1 มีนักแสดง 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_en": "Which Schwaben has an Oberbayern of fc ingolstadt 04 and a Mittelfranken of sv seligenporten",
    "question_th": "ซึ่งชวาเบนมีโอเบอร์บาเยิร์นของเอฟซี อิงโกลสตัดท์ 04 และมิทเทลแฟรงเก้นของสวี เซลิเกนปอร์เทน",
    "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_en": "Which Schwaben has a Oberbayern of fc bayern munich ii and a Mittelfranken of 1. fc nuremberg ii?",
    "question_th": "Schwaben คนไหนมี Oberbayern ของ fc bayern munich ii และ Mittelfranken ของ 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_en": "Who was the incumbent for south carolina 3 district?",
    "question_th": "ใครเป็นผู้ดำรงตำแหน่งในเขตเซาท์แคโรไลนา 3?",
    "context": "CREATE TABLE table_name_64 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT first_elected FROM table_name_56 WHERE district = \"south carolina 1\"",
    "question_en": "When was the incumbent from the south carolina 1 district first elected?",
    "question_th": "ผู้ดำรงตำแหน่งจากเขตเซาท์แคโรไลนา 1 ได้รับการเลือกตั้งครั้งแรกเมื่อใด",
    "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_en": "Who was the incumbent that was first elected in 1892 and retired to run for the senate democratic hold?",
    "question_th": "ใครคือผู้ดำรงตำแหน่งที่ได้รับเลือกครั้งแรกในปี พ.ศ. 2435 และเกษียณอายุเพื่อลงสมัครชิงตำแหน่งตามระบอบประชาธิปไตยของวุฒิสภา",
    "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_en": "Who was the incumbent that retired to run for the senate democratic hold?",
    "question_th": "ใครคือผู้ดำรงตำแหน่งที่เกษียณอายุลงสมัครรับตำแหน่งตามระบอบประชาธิปไตยของวุฒิสภา?",
    "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_en": "What was the result of W. Jasper Talbert who was first elected in 1892?",
    "question_th": "อะไรคือผลลัพธ์ของ W. Jasper Talbert ที่ได้รับเลือกครั้งแรกในปี พ.ศ. 2435?",
    "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_en": "Which Nationality has a 2.24 of xo, and a 2.20 of xo?",
    "question_th": "สัญชาติใดมี xo 2.24 และ xo 2.20",
    "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_en": "Which Athlete has a 2.24 of xo, and a 2.20 of o, and a 2.15 of o?",
    "question_th": "นักกีฬาคนใดมี xo 2.24 และ 2.20 ของ o และ 2.15 ของ 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_en": "What is the earliest election with more than 7 candidates nominated, a percentage of the popular vote of 2.75%, and 0 seats won?",
    "question_th": "การเลือกตั้งครั้งแรกสุดที่มีผู้สมัครเสนอชื่อเกิน 7 คน มีคะแนนนิยม 2.75% ได้ 0 ที่นั่ง คือการเลือกตั้งครั้งแรกสุดคือข้อใด",
    "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_en": "How much Played has a Lost larger than 14, and Drawn of 8, and a Team of ipatinga?",
    "question_th": "เล่นไปเท่าไหร่แล้วที่แพ้มากกว่า 14 และเสมอ 8 และทีม 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_en": "How many Drawn have a Difference of 3, and Points smaller than 52?",
    "question_th": "สุ่มได้กี่ตัวมีผลต่าง 3 และแต้มน้อยกว่า 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ão paulo\" AND drawn > 12",
    "question_en": "Which Points is the highest one that has a Position smaller than 4, and a Team of são paulo, and Drawn larger than 12?",
    "question_th": "คะแนนใดคือคะแนนสูงสุดที่มีตำแหน่งน้อยกว่า 4 และมีทีมเซาเปาโลและเสมอกันมากกว่า 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_en": "How many Lost have Points larger than 40, and a Position of 11, and a Played smaller than 38?",
    "question_th": "แพ้กี่แต้มที่มีแต้มมากกว่า 40 และมีตำแหน่ง 11 และแต้มที่เล่นน้อยกว่า 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_en": "What is the lowest number of games loss with a Points difference of 40 - 17, and over 6 games?",
    "question_th": "จำนวนการแพ้เกมต่ำสุดที่มีคะแนนต่างกัน 40 - 17 และมากกว่า 6 เกมคือเท่าไร?",
    "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_en": "How many games lost for teams with over 6 games?",
    "question_th": "ทีมที่เกิน 6 เกมแพ้ไปกี่เกม?",
    "context": "CREATE TABLE table_name_46 (lost INTEGER, games INTEGER)"
  },
  {
    "answer": "SELECT MAX(drawn) FROM table_name_80 WHERE games < 6",
    "question_en": "What are the highest number of games drawn for games numbered under 6?",
    "question_th": "จำนวนเกมสูงสุดที่จับสลากสำหรับเกมที่มีหมายเลขต่ำกว่า 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_en": "How many games drawn with a Points difference of 31 - 33, and under 4 games lost?",
    "question_th": "มีกี่เกมที่เสมอกันโดยมีคะแนนต่างกัน 31 - 33 และแพ้น้อยกว่า 4 เกม?",
    "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_en": "Which Outcome has a Surface of hard (i), and a Date of 28 january 2003?",
    "question_th": "ผลลัพธ์ใดที่มีพื้นผิวแข็ง (i) และวันที่ 28 มกราคม พ.ศ. 2546",
    "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_en": "Which Tournament has an Outcome of winner, and a Surface of hard (i)?",
    "question_th": "ทัวร์นาเมนต์ใดมีผลลัพธ์เป็นผู้ชนะ และมีพื้นผิวแข็ง (i)?",
    "context": "CREATE TABLE table_name_4 (tournament VARCHAR, outcome VARCHAR, surface VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_76 WHERE score = \"6–1, 6–2\"",
    "question_en": "Which Date has a Score of 6–1, 6–2?",
    "question_th": "วันไหนมีคะแนน 6–1, 6–2?",
    "context": "CREATE TABLE table_name_76 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_99 WHERE opponent = \"oleksandra kravets\"",
    "question_en": "Which Surface has an Opponent of oleksandra kravets?",
    "question_th": "Surface ใดมีฝ่ายตรงข้ามของ 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_en": "Which Surface has a Date of 3 october 2003?",
    "question_th": "Surface ใดมีวันที่ 3 ตุลาคม 2546",
    "context": "CREATE TABLE table_name_60 (surface VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_65 WHERE score = \"6–4, 6–2\"",
    "question_en": "Which Surface has a Score of 6–4, 6–2?",
    "question_th": "Surface ใดมีคะแนน 6–4, 6–2",
    "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_en": "How many ranks have a Code (IATA/ICAO) of ord/kord?",
    "question_th": "มีกี่อันดับที่มีรหัส (IATA/ICAO) ของ 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_en": "Which Total Cargo (Metric Tonnes) is the highest one that has a Rank smaller than 4, and an Airport of shanghai pudong international airport?",
    "question_th": "Total Cargo (Metric Tonnes) ใดที่มีอันดับสูงสุดที่มีอันดับต่ำกว่า 4 และสนามบินของสนามบินนานาชาติเซี่ยงไฮ้ผู่ตง",
    "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_en": "What is the Per capita income where Median family income is $72,288?",
    "question_th": "รายได้ต่อหัวคือเท่าไร โดยที่รายได้เฉลี่ยของครอบครัวอยู่ที่ 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_en": "What is the average grid for the +2.2 secs time/retired?",
    "question_th": "ตารางเฉลี่ยสำหรับเวลา +2.2 วินาที/เกษียณคือเท่าใด",
    "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_en": "Which Facility ID has a City of license of springfield, ma, and a ERP / Power W smaller than 230?",
    "question_th": "ID สิ่งอำนวยความสะดวกใดมีเมืองที่มีใบอนุญาตของ Springfield, Ma และ ERP / Power W น้อยกว่า 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_en": "Which Frequency has a Facility ID of 13598?",
    "question_th": "ความถี่ใดมีรหัสสิ่งอำนวยความสะดวก 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_en": "WHich Facility ID has a Call sign of wnpr?",
    "question_th": "ID สิ่งอำนวยความสะดวกใดมีสัญญาณเรียก 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_en": "Which Frequency has a Facility ID of 13598?",
    "question_th": "ความถี่ใดมีรหัสสิ่งอำนวยความสะดวก 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_en": "What is the total number of 1sts that Martin Schmitt had where he less than 235.7 points?",
    "question_th": "Martin Schmitt มีคะแนนรวมเป็นที่ 1 ซึ่งเขาน้อยกว่า 235.7 คะแนนเป็นจำนวนเท่าใด",
    "context": "CREATE TABLE table_name_81 (name VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(attendance) FROM table_name_83 WHERE home = \"buffalo\"",
    "question_en": "What is the total number of attendance for games where buffalo was the home team?",
    "question_th": "จำนวนการเข้าร่วมเกมที่มีควายเป็นเจ้าบ้านคือเท่าไร?",
    "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_en": "What was the score of the game on April 28 where Buffalo were the visiting team?",
    "question_th": "เกมวันที่ 28 เม.ย. มีบัฟฟาโล่เป็นทีมเยือนเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_64 (score VARCHAR, visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_10 WHERE visitor = \"philadelphia\"",
    "question_en": "What date was the game where the visiting team was philadelphia?",
    "question_th": "นัดที่ทีมเยือนพบกับฟิลาเดลเฟียคือเกมวันไหน?",
    "context": "CREATE TABLE table_name_10 (date VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT gold FROM table_name_53 WHERE year < 2002 AND location = \"seoul\"",
    "question_en": "Who got the gold in seoul before 2002?",
    "question_th": "ใครได้เหรียญทองในกรุงโซลก่อนปี 2545?",
    "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_en": "Where did sohn bong-gak win silver?",
    "question_th": "ซอน บงกัก ได้เหรียญเงินที่ไหน?",
    "context": "CREATE TABLE table_name_14 (location VARCHAR, silver VARCHAR)"
  },
  {
    "answer": "SELECT bronze FROM table_name_99 WHERE gold = \"jin kanno\"",
    "question_en": "Who won the bronze when jin kanno won the gold?",
    "question_th": "ใครได้เหรียญทองแดงในตอนที่จิน คันโนะได้เหรียญทอง?",
    "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_en": "Which Score has an Outcome of runner-up, and a Tournament of johannesburg?",
    "question_th": "คะแนนใดมีผลลัพธ์เป็นรองชนะเลิศ และทัวร์นาเมนต์ของโจฮันเนสเบิร์ก?",
    "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–3, 2–6, 3–6\"",
    "question_en": "Which Surface has an Opponent of kerry melville reid, and a Score of 6–3, 2–6, 3–6?",
    "question_th": "Surface ใดมีฝ่ายตรงข้ามของ Kerry Melville Reid และคะแนน 6–3, 2–6, 3–6",
    "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_en": "Which Outcome has an Opponent of wendy turnbull, and a Surface of grass?",
    "question_th": "ผลลัพธ์ใดที่มีคู่ต่อสู้ของเวนดี้ เทิร์นบูล และพื้นหญ้า?",
    "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_en": "Which Tournament has a Date of 22 january 1979?",
    "question_th": "การแข่งขันใดมีวันที่ 22 มกราคม พ.ศ. 2522",
    "context": "CREATE TABLE table_name_6 (tournament VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_86 WHERE score = \"6–4, 2–6, 6–3\"",
    "question_en": "Which Outcome has a Score of 6–4, 2–6, 6–3?",
    "question_th": "ผลลัพธ์ใดมีคะแนน 6–4, 2–6, 6–3",
    "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_en": "Which nation has total medals under 63, less than 2 silver, more than 2 bronze, and a rank of 8?",
    "question_th": "ประเทศใดมีเหรียญรางวัลรวมต่ำกว่า 63 เหรียญ, น้อยกว่า 2 เหรียญเงิน, มากกว่า 2 เหรียญทองแดง และอันดับ 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_en": "How many golds have bronze values of 4 and silver values over 2?",
    "question_th": "มีทองคำกี่ตัวที่มีค่าทองแดงเท่ากับ 4 และค่าเงินมากกว่า 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_en": "What is the sum of silver values that have bronze values under 4, golds over 2, and a rank of 3?",
    "question_th": "ผลรวมของมูลค่าเงินที่มีมูลค่าทองแดงต่ำกว่า 4 ทองคำมากกว่า 2 และอันดับ 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_en": "What is the sum of gold values that have bronze values over 0 and totals under 2?",
    "question_th": "ผลรวมของมูลค่าทองคำที่มีค่าทองแดงมากกว่า 0 และผลรวมต่ำกว่า 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_en": "What is the smallest gold value that has a total over 15 and bronze values under 31?",
    "question_th": "มูลค่าทองคำที่น้อยที่สุดที่มียอดรวมมากกว่า 15 และมูลค่าทองแดงต่ำกว่า 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_en": "What is the Equatorial diameter of the Body: Mars?",
    "question_th": "เส้นผ่านศูนย์กลางของเส้นศูนย์สูตรของร่างกายคือเท่าใด: ดาวอังคาร",
    "context": "CREATE TABLE table_name_24 (equatorial_diameter VARCHAR, body VARCHAR)"
  },
  {
    "answer": "SELECT equatorial_diameter FROM table_name_33 WHERE body = \"ceres\"",
    "question_en": "What is the Equatorial diameter of the Body: ceres?",
    "question_th": "เส้นศูนย์สูตรของร่างกายคืออะไร: เซเรส?",
    "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_en": "What is the Flattening ratio associated with the Equatorial diameter of 49,528km?",
    "question_th": "อัตราส่วนการราบเรียบที่เกี่ยวข้องกับเส้นผ่านศูนย์กลางเส้นศูนย์สูตรที่ 49,528 กม. เป็นเท่าใด",
    "context": "CREATE TABLE table_name_79 (flattening_ratio VARCHAR, equatorial_diameter VARCHAR)"
  },
  {
    "answer": "SELECT equatorial_bulge FROM table_name_74 WHERE body = \"earth\"",
    "question_en": "What is the Equatorial bulge of the Body: Earth?",
    "question_th": "เส้นศูนย์สูตรกระพุ้งของร่างกายคืออะไร: โลก?",
    "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_en": "What is the Flattening ratio associated with the Equatorial diameter of 120,536km?",
    "question_th": "อัตราส่วนการราบเรียบที่เกี่ยวข้องกับเส้นผ่านศูนย์กลางเส้นศูนย์สูตร 120,536 กม. เป็นเท่าใด",
    "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_en": "What is the Flattening ratio associated with the Equatorial diameter of 12,756.28km?",
    "question_th": "อัตราส่วนการราบเรียบที่เกี่ยวข้องกับเส้นผ่านศูนย์กลางเส้นศูนย์สูตรที่ 12,756.28 กม. เป็นเท่าใด",
    "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_en": "What is the average Yards with an average of less than 4 and the long is 12 with less than 29 attempts?",
    "question_th": "หลาเฉลี่ยที่มีค่าเฉลี่ยน้อยกว่า 4 และความยาวคือ 12 หลาโดยพยายามน้อยกว่า 29 ครั้งเป็นเท่าใด",
    "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_en": "What is the least amount of yards when the average is less than 2.6?",
    "question_th": "จำนวนหลาน้อยที่สุดเมื่อค่าเฉลี่ยน้อยกว่า 2.6 คือเท่าใด",
    "context": "CREATE TABLE table_name_65 (yards INTEGER, average INTEGER)"
  },
  {
    "answer": "SELECT MIN(touchdowns) FROM table_name_41 WHERE yards = 1318",
    "question_en": "What is the lease amount of touchdowns with 1318 yards?",
    "question_th": "จำนวนสัญญาเช่าทัชดาวน์ 1,318 หลาคือเท่าไร?",
    "context": "CREATE TABLE table_name_41 (touchdowns INTEGER, yards VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(touchdowns) FROM table_name_80 WHERE average < 2.6",
    "question_en": "What is the number of touchdowns with the average is less than 2.6?",
    "question_th": "จำนวนทัชดาวน์เฉลี่ยน้อยกว่า 2.6 คือเท่าไร?",
    "context": "CREATE TABLE table_name_80 (touchdowns VARCHAR, average INTEGER)"
  },
  {
    "answer": "SELECT COUNT(long) FROM table_name_52 WHERE attempts = 19",
    "question_en": "What is the total number for long when there are 19 attempts?",
    "question_th": "จำนวนรวมระยะยาวเมื่อมี 19 ครั้งเป็นเท่าใด",
    "context": "CREATE TABLE table_name_52 (long VARCHAR, attempts VARCHAR)"
  },
  {
    "answer": "SELECT margin_of_victory FROM table_name_78 WHERE tournament = \"german masters\"",
    "question_en": "What was the margin of victory for Olazabal in the German Masters?",
    "question_th": "อะไรคือส่วนต่างของชัยชนะของ Olazabal ใน 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_en": "What was Olazabal's winning score in the event in which Phillip Price finished 2nd?",
    "question_th": "คะแนนชนะของ Olazabal คืออะไรในกรณีที่ Phillip Price จบอันดับที่ 2?",
    "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_en": "What was Olazabal's winning score in the German Masters?",
    "question_th": "คะแนนชนะของ Olazabal ใน 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_en": "What was Olazabal's margin of victory int he Ebel European Masters Swiss Open?",
    "question_th": "อะไรคือชัยชนะของ Olazabal ในการแข่งขัน 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_en": "Which Series Ep has a Netflix of s08e18?",
    "question_th": "ซีรีส์ Ep ไหนที่มี Netflix 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_en": "Which Segment B has a Segment D of stone wool insulation?",
    "question_th": "ส่วน B ใดมีส่วน D ของฉนวนใยหิน",
    "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_en": "Which Segment A has a Segment C of poster restoration?",
    "question_th": "ส่วน A ใดที่มีส่วน C ของการบูรณะโปสเตอร์",
    "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_en": "Which Segment C has a Segment B of fish food?",
    "question_th": "ส่วน C ใดที่มีส่วน B ของอาหารปลา",
    "context": "CREATE TABLE table_name_54 (segment_c VARCHAR, segment_b VARCHAR)"
  },
  {
    "answer": "SELECT segment_c FROM table_name_43 WHERE netflix = \"s08e16\"",
    "question_en": "Which Segment C has a Netflix of s08e16?",
    "question_th": "ส่วน C ใดมี Netflix ของ 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_en": "What was the name of the competition that had Peterborough Phantoms as an opponent and a date of 2?",
    "question_th": "การแข่งขันที่มี ปีเตอร์โบโร่ แฟนทอมส์ เป็นคู่ต่อสู้ชื่ออะไร และนัดที่ 2 คืออะไร?",
    "context": "CREATE TABLE table_name_26 (competition VARCHAR, opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT tally FROM table_name_36 WHERE county = \"kerry\"",
    "question_en": "What is the Tally in Kerry County?",
    "question_th": "Tally ใน 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_en": "With a Total of less than 29, what is Ian Ryan's most Matches?",
    "question_th": "ด้วยผลรวมน้อยกว่า 29 นัดมากที่สุดของเอียน ไรอันคือเกมใด",
    "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_en": "Which LEMA/SUBLEMA that has Votes smaller than 218656, and a Ch of Deputies of 0?",
    "question_th": "LEMA/SUBLEMA ใดที่มีการโหวตน้อยกว่า 218656 และ Ch ของ Deputies เป็น 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_en": "Which LEMA/SUBLEMA has a Ch of Senators of 2?",
    "question_th": "LEMA/SUBLEMA ใดมี Ch วุฒิสมาชิก 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–7, 6–2, 6–4\"",
    "question_en": "what tornament had the scores 6–7, 6–2, 6–4?",
    "question_th": "ทอร์นาเมนต์ใดมีคะแนน 6–7, 6–2, 6–4?",
    "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–4, 6–1\"",
    "question_en": "what partner made the scores 6–4, 6–1?",
    "question_th": "คู่ไหนทำคะแนนได้ 6–4, 6–1?",
    "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_en": "What year had 6.62 m in the notes?",
    "question_th": "ปีใดมีธนบัตร 6.62 เมตร?",
    "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_en": "Which competition in Budapest, Hungary gave a result of 8th?",
    "question_th": "รายการไหนที่เมืองบูดาเปสต์ ประเทศฮังการี ผลการแข่งขันอันดับที่ 8?",
    "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_en": "Which year did the World indoor championships gave a position of 3rd?",
    "question_th": "การแข่งขันชิงแชมป์โลกในร่มในปีใดได้อันดับที่ 3?",
    "context": "CREATE TABLE table_name_12 (year INTEGER, competition VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_name_32 WHERE venue = \"toronto, canada\"",
    "question_en": "What were the notes in Toronto, Canada?",
    "question_th": "โน้ตในโตรอนโต แคนาดามีอะไรบ้าง",
    "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_en": "Name the most points for class of 125cc and team of mv agusta with year more than 1957",
    "question_th": "ระบุคะแนนสูงสุดสำหรับคลาส 125cc และทีม mv agusta ปีมากกว่า 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_en": "Which ZX Spectrum has a Year larger than 1984, and a Genre of arcade/strategy?",
    "question_th": "ZX Spectrum ใดที่มีหนึ่งปีมากกว่าปี 1984 และมีประเภทของอาร์เคด/กลยุทธ์?",
    "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_en": "How many years have a Title of kriegspiel?",
    "question_th": "กี่ปีมีฉายาของ 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_en": "Which ZX Spectrum has a C=64 of c64, and a Title of ankh?",
    "question_th": "ZX Spectrum ใดมี C=64 ของ c64 และชื่อ 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_en": "Which Title has Others of amstrad cpc, and a Genre of arcade?",
    "question_th": "ชื่อใดที่มีชื่ออื่นของ amstrad cpc และประเภทอาร์เคด?",
    "context": "CREATE TABLE table_name_22 (title VARCHAR, others VARCHAR, genre VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_77 WHERE attendance = \"12,000\"",
    "question_en": "What was the result when the attendance was 12,000?",
    "question_th": "ผลลัพธ์เป็นอย่างไรเมื่อมีผู้เข้าร่วม 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_en": "What was the attendance for weeks prior to 5 when there was no game scheduled?",
    "question_th": "ผู้เข้าร่วมในสัปดาห์ก่อน 5 โมงเช้าเมื่อไม่มีกำหนดการแข่งขันเป็นเท่าใด",
    "context": "CREATE TABLE table_name_21 (attendance VARCHAR, week VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_37 WHERE venue = \"lakeside park\"",
    "question_en": "What was the attendance number for the venue of Lakeside Park?",
    "question_th": "จำนวนผู้เข้าร่วมสถานที่จัดงาน 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_en": "What is the largest week number for the venue of League Park for the date of November 25, 1920?",
    "question_th": "หมายเลขสัปดาห์ที่ใหญ่ที่สุดสำหรับสนามลีก พาร์ก ในวันที่ 25 พฤศจิกายน พ.ศ. 2463 คือเท่าใด?",
    "context": "CREATE TABLE table_name_63 (week INTEGER, venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT surname FROM table_name_16 WHERE first = \"michael\"",
    "question_en": "What is Michael's surname?",
    "question_th": "ไมเคิลนามสกุลอะไร?",
    "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_en": "Which First has Bats of r, and Throws of l, and a DOB of 12 october 1977?",
    "question_th": "อันไหนก่อนมี Bats ที่ r และ Throws of l และ DOB วันที่ 12 ตุลาคม 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_en": "When was Maat born?",
    "question_th": "มัทเกิดเมื่อไหร่?",
    "context": "CREATE TABLE table_name_44 (dob VARCHAR, surname VARCHAR)"
  },
  {
    "answer": "SELECT bats FROM table_name_88 WHERE first = \"todd\"",
    "question_en": "How many bats does Todd have?",
    "question_th": "ท็อดด์มีค้างคาวกี่ตัว?",
    "context": "CREATE TABLE table_name_88 (bats VARCHAR, first VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_21 WHERE dob = \"13 may 1987\"",
    "question_en": "Which Position has a DOB of 13 may 1987?",
    "question_th": "ตำแหน่งใดมีวันเกิดวันที่ 13 พฤษภาคม 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_en": "Which Bats have Throws of r, and a DOB of 22 may 1973?",
    "question_th": "ค้างคาวตัวใดที่มีการขว้าง r และ DOB ที่ 22 พฤษภาคม 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_en": "Which Croatia has a Friendly of world cup 2006 qualifier, and a 149 of 152?",
    "question_th": "โครเอเชียคนไหนได้ไปเล่นกระชับมิตรฟุตบอลโลก 2006 รอบคัดเลือก และ 149 จาก 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_en": "For which production company did Sam Mccarthy produce?",
    "question_th": "Sam McCarthy ผลิตให้กับบริษัทผู้ผลิตใด",
    "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_en": "Who was the director that worked with Dana Dorian as the writer?",
    "question_th": "ใครคือผู้กำกับที่ร่วมงานกับ Dana Dorian ในฐานะผู้เขียน?",
    "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_en": "Which film, directed by Dana Dorian, was nominated?",
    "question_th": "ภาพยนตร์เรื่องใดที่กำกับโดย Dana Dorian ได้รับการเสนอชื่อเข้าชิง?",
    "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_en": "What is the sum for December against the vancouver canucks earlier than game 33?",
    "question_th": "ผลรวมของเดือนธันวาคมกับแวนคูเวอร์แคนัคส์ก่อนเกมที่ 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_en": "What is the sum for December when the record was 22-12-5?",
    "question_th": "ผลรวมของเดือนธันวาคมเมื่อสถิติอยู่ที่ 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_en": "When is the earliest year associated with team norton and 0 wins?",
    "question_th": "ปีแรกสุดที่เกี่ยวข้องกับทีม Norton และ 0 ชนะคือเมื่อใด",
    "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_en": "What is the year that there were 0 wins, team AJS, and under 12 points?",
    "question_th": "ปีไหนที่ชนะ 0 ทีม AJS และต่ำกว่า 12 แต้ม คือปีไหน?",
    "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_en": "What year is associated with a drama desk award ceremony and a Category of outstanding featured actress in a musical?",
    "question_th": "ปีใดที่เกี่ยวข้องกับพิธีมอบรางวัลโต๊ะละครและประเภทของนักแสดงที่โดดเด่นในละครเพลง?",
    "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_en": "What is the average Loss for the long of more than 12 with a name of opponents with a Gain larger than 1751?",
    "question_th": "การสูญเสียโดยเฉลี่ยในระยะยาวมากกว่า 12 โดยมีชื่อของคู่ต่อสู้ที่มีกำไรมากกว่า 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_en": "Who was the winner/2nd place finisher in the Caulfield Guineas?",
    "question_th": "ใครคือผู้ชนะ/ผู้เข้าเส้นชัยอันดับที่ 2 ในทีม Caulfield Guineas",
    "context": "CREATE TABLE table_name_18 (winner_2nd VARCHAR, race VARCHAR)"
  },
  {
    "answer": "SELECT jockey FROM table_name_76 WHERE group = \"g3\"",
    "question_en": "Which jockey had a group of G3?",
    "question_th": "จ๊อกกี้คนไหนมีกลุ่ม 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_en": "What was the time for the G2 group at the Hobartville Stakes?",
    "question_th": "กลุ่ม G2 ที่เดิมพันโฮบาร์ตวิลล์กี่โมง",
    "context": "CREATE TABLE table_name_62 (time VARCHAR, group VARCHAR, race VARCHAR)"
  },
  {
    "answer": "SELECT airport FROM table_name_39 WHERE city = \"perth\"",
    "question_en": "Which airport has perth as the city?",
    "question_th": "สนามบินไหนมีเพิร์ธเป็นเมือง?",
    "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_en": "Which city has tasmania as the state/territory and a ICAO of ymhb?",
    "question_th": "เมืองใดมีแทสเมเนียเป็นรัฐ/ดินแดนและมี ICAO ของ 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_en": "Which airport has an ICAO of ybcg?",
    "question_th": "สนามบินไหนมี ICAO ของ 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_en": "What is the IATA that has new south wales as the state/territory beginning on july 2009?",
    "question_th": "IATA คืออะไรที่มีรัฐ/ดินแดนใหม่เป็นรัฐ/ดินแดนที่เริ่มตั้งแต่เดือนกรกฎาคม 2552 เป็นต้นไป",
    "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_en": "What IATA has queensland as the state/territory and an ICAO of ybrk?",
    "question_th": "IATA ใดมีควีนส์แลนด์เป็นรัฐ/ดินแดน และ ICAO ของ 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_en": "What begin has victoria as the state/territory and a ICA0 of ymml?",
    "question_th": "อะไรเริ่มต้นที่วิกตอเรียเป็นรัฐ/ดินแดนและ ICA0 ของ 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_en": "Who was the visitor on March 27?",
    "question_th": "ใครคือผู้เยี่ยมชมในวันที่ 27 มีนาคม?",
    "context": "CREATE TABLE table_name_59 (visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_30 WHERE date = \"march 14\"",
    "question_en": "What was the record on March 14?",
    "question_th": "บันทึกเมื่อวันที่ 14 มีนาคมคืออะไร?",
    "context": "CREATE TABLE table_name_30 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT format FROM table_name_14 WHERE frequency = \"99.5 fm\"",
    "question_en": "What format is at frequency 99.5 FM?",
    "question_th": "ที่ความถี่ 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_en": "What format has the call sign DZFE?",
    "question_th": "เครื่องหมายเรียก 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_en": "What covered location has a frequency of 90.7 FM",
    "question_th": "สถานที่ที่ครอบคลุมมีความถี่ 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_en": "What is the frequency of 104.3 business radio?",
    "question_th": "ความถี่ของวิทยุธุรกิจ 104.3 คืออะไร?",
    "context": "CREATE TABLE table_name_95 (frequency VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_40 WHERE call_sign = \"dwys\"",
    "question_en": "What name has the call sign DWYS?",
    "question_th": "เครื่องหมายเรียก DWYS มีชื่ออะไร?",
    "context": "CREATE TABLE table_name_40 (name VARCHAR, call_sign VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_19 WHERE dcsf_number = 3373",
    "question_en": "Who has a DCSF number of 3373?",
    "question_th": "ใครมีหมายเลข DCSF 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_en": "What is the average primary intake with an Ofsted number of 117433 and a DCSF number greater than 3335?",
    "question_th": "ปริมาณการบริโภคหลักโดยเฉลี่ยที่มีหมายเลข Ofsted เท่ากับ 117433 และหมายเลข DCSF มากกว่า 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_en": "What is the lowest Ofsted number for a primary with a CE faith, intake of 30 and a DCSF number lower than 3349?",
    "question_th": "หมายเลข Ofsted ที่ต่ำที่สุดสำหรับประถมศึกษาที่มีศรัทธา CE, รับ 30 และหมายเลข DCSF ต่ำกว่า 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_en": "Can you tell me the Opponent that has the Result of w 37-14?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าฝ่ายตรงข้ามที่มีผลการแข่งขันเป็น 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_en": "Can you tell me the Opponent that has the Date of october 11, 1953?",
    "question_th": "คุณช่วยบอกฝ่ายตรงข้ามที่มีวันที่ 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_en": "What year was the West Coast League established than the championships are greater than 0?",
    "question_th": "West Coast League ก่อตั้งขึ้นเมื่อปีใดที่แชมป์มากกว่า 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_en": "During the Apple Bowl having 0 championships, what was the established year?",
    "question_th": "ระหว่างที่ Apple Bowl มี 0 แชมป์ ก่อตั้งปีอะไร?",
    "context": "CREATE TABLE table_name_65 (established INTEGER, championships VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT sport FROM table_name_3 WHERE venue = \"wildcat stadium\"",
    "question_en": "What sport happened at Wildcat Stadium?",
    "question_th": "กีฬาอะไรเกิดขึ้นที่ 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_en": "How many championships does Evergreen Premier League have?",
    "question_th": "เอเวอร์กรีน พรีเมียร์ลีก มีแชมป์กี่สมัย?",
    "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_en": "Which Position has a Round larger than 10, and a Name of shawn mccarthy?",
    "question_th": "ตำแหน่งใดที่มีรอบมากกว่า 10 และชื่อของ 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_en": "How many Pick #s have a Name of tory epps, and a Round larger than 8?",
    "question_th": "มีกี่ Pick #s ที่มีชื่อของ tory epps และรอบที่ใหญ่กว่า 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_en": "Which team was the visitor with a record of 5-2-0?",
    "question_th": "ทีมไหนเป็นผู้มาเยือนด้วยสถิติ 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_en": "What is the score for the November 3 game?",
    "question_th": "สกอร์เกมวันที่ 3 พฤศจิกายน เป็นอย่างไร?",
    "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_en": "What percent of others did ogm/news count when MARTIN had 9%?",
    "question_th": "ogm/news นับกี่เปอร์เซ็นต์เมื่อ MARTIN มี 9%",
    "context": "CREATE TABLE table_name_33 (others VARCHAR, martin VARCHAR, source VARCHAR)"
  },
  {
    "answer": "SELECT undecided FROM table_name_70 WHERE others = \"4%\"",
    "question_en": "What is the Undecided the others was 4%?",
    "question_th": "อะไรคือสิ่งที่ยังไม่ตัดสินใจ ส่วนคนอื่นๆ คิดเป็น 4%?",
    "context": "CREATE TABLE table_name_70 (undecided VARCHAR, others VARCHAR)"
  },
  {
    "answer": "SELECT undecided FROM table_name_66 WHERE date = \"2009-05-24\"",
    "question_en": "What is the Undecided on 2009-05-24?",
    "question_th": "Undecided ใน 2009-05-24 คืออะไร?",
    "context": "CREATE TABLE table_name_66 (undecided VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_93 WHERE undecided = \"–\" AND martin = \"7–9%\"",
    "question_en": "What is the Date that has MARTIN of 7–9% and no Undecided?",
    "question_th": "วันที่ใดที่มี MARTIN 7–9% และไม่มีการตัดสินใจ",
    "context": "CREATE TABLE table_name_93 (date VARCHAR, undecided VARCHAR, martin VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_21 WHERE martin = \"8%\"",
    "question_en": "What is the Date when MARTIN had 8%?",
    "question_th": "วันที่เท่าไหร่ที่ MARTIN มี 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_en": "Which Attendance has a Game smaller than 3, and a Date of october 31?",
    "question_th": "ผู้เข้าร่วมคนใดที่มีเกมน้อยกว่า 3 และวันที่ 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_en": "What is rank of player Charles Eady and a Bowling of 12/63?",
    "question_th": "ผู้เล่นชาร์ลส์ อีดี้ และโบว์ลิ่ง 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_en": "Who was the Opponent partnering with Jordan Kerr, on a hard surface that was the winner?",
    "question_th": "ใครคือฝ่ายตรงข้ามที่ร่วมมือกับจอร์แดน เคอร์ บนพื้นแข็งที่เป็นผู้ชนะ?",
    "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_en": "What's the Year Average that has a Power of BHP (KW) and Trim of LS/2LT?",
    "question_th": "ค่าเฉลี่ยปีที่มีพลัง BHP (KW) และ Trim ของ 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_en": "Which Engine has a Year that's Larger than 2006 and Power of BHP (KW)?",
    "question_th": "เครื่องยนต์ใดมีปีที่ใหญ่กว่าปี 2549 และกำลังของ 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_en": "What Torque has a Power of HP (KW)?",
    "question_th": "แรงบิดใดมีกำลัง 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_en": "What's the Year average that's got Trim of LS/LT and Power of HP (KW)?",
    "question_th": "ค่าเฉลี่ยรายปีที่มี Trim LS/LT และ 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_en": "Name the college with overall of 17",
    "question_th": "ตั้งชื่อวิทยาลัยที่มีคะแนนรวม 17 คะแนน",
    "context": "CREATE TABLE table_name_65 (college VARCHAR, overall VARCHAR)"
  },
  {
    "answer": "SELECT MIN(overall) FROM table_name_15 WHERE name = \"tony baker\"",
    "question_en": "Name the least overall for tony baker",
    "question_th": "ตั้งชื่อโดยรวมน้อยที่สุดสำหรับ Tony Baker",
    "context": "CREATE TABLE table_name_15 (overall INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_33 WHERE home = \"winnipeg\"",
    "question_en": "Who was the visiting team when Winnipeg was the home team?",
    "question_th": "ทีมเยือนเมื่อวินนิเพกเป็นเจ้าบ้านคือใคร?",
    "context": "CREATE TABLE table_name_33 (visitor VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_25 WHERE decision = \"peeters\" AND record = \"29–3–11\"",
    "question_en": "What was the score of the game with a decision of Peeters and a record of 29–3–11?",
    "question_th": "เกมนี้คะแนนเท่าไหร่จากการตัดสินของพีเทอร์สและสถิติ 29–3–11?",
    "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_en": "What is the Label of Catalogue # HVNLP26CD from United Kingdom?",
    "question_th": "ฉลากแคตตาล็อก # HVNLP26CD จากสหราชอาณาจักรคืออะไร",
    "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_en": "What Country is Catalogue # ASW 50248 (724385024825) from?",
    "question_th": "Catalog # ASW 50248 (724385024825) มาจากประเทศใด?",
    "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_en": "Who is the winning team of the South Pacific Trophy?",
    "question_th": "ทีมใดเป็นผู้ชนะการแข่งขัน South Pacific Trophy?",
    "context": "CREATE TABLE table_name_22 (winning_team VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_32 WHERE loss = \"gonzález (0–3)\"",
    "question_en": "Loss of gonzález (0–3) had what attendance?",
    "question_th": "การแพ้กอนซาเลซ (0–3) มีผู้เข้าร่วมอะไรบ้าง?",
    "context": "CREATE TABLE table_name_32 (attendance VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_70 WHERE record = \"92–70\"",
    "question_en": "Record of 92–70 had what date?",
    "question_th": "บันทึก 92–70 มีวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_70 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_54 WHERE loss = \"kendrick (11–8)\"",
    "question_en": "Loss of kendrick (11–8) had what record?",
    "question_th": "การสูญเสียเคนดริก (11–8) มีสถิติอะไรบ้าง?",
    "context": "CREATE TABLE table_name_54 (record VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_12 WHERE date = \"september 28\"",
    "question_en": "Date of september 28 had what record?",
    "question_th": "วันที่ 28 กันยายน มีบันทึกอะไรบ้าง?",
    "context": "CREATE TABLE table_name_12 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_49 WHERE attendance = \"23,150\"",
    "question_en": "Attendance of 23,150 had what opponent?",
    "question_th": "ผู้เข้าร่วม 23,150 คนมีฝ่ายตรงข้ามคนไหน?",
    "context": "CREATE TABLE table_name_49 (opponent VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_46 WHERE attendance = \"36,796\"",
    "question_en": "Attendance of 36,796 had what score?",
    "question_th": "ผู้เข้าร่วม 36,796 คน ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_46 (score VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT SUM(long) FROM table_name_30 WHERE name = \"derrick locke\"",
    "question_en": "What is the sum of Long for derrick locke?",
    "question_th": "ผลรวมของ Long สำหรับปั้นจั่นล็อคเป็นเท่าใด?",
    "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_en": "What is the lowest Loss with Gain larger than 319 for derrick locke?",
    "question_th": "อะไรคือการสูญเสียต่ำสุดที่มีกำไรมากกว่า 319 สำหรับปั้นจั่นล็อค?",
    "context": "CREATE TABLE table_name_10 (loss INTEGER, name VARCHAR, gain VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_name_96 WHERE head_coach = \"wojciech kamiński\"",
    "question_en": "Head Coach of wojciech kamiński is what club?",
    "question_th": "หัวหน้าโค้ช wojciech kamiński อยู่สโมสรอะไร?",
    "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_en": "Sport of football, and a Venue of stadion polonii is what league?",
    "question_th": "กีฬาฟุตบอล และสถานที่ของ Stadion Polonii คือลีกอะไร?",
    "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_en": "Sport of gaelic football and hurling is what league?",
    "question_th": "กีฬาเกลิคและเฮอร์ลิ่งเป็นลีกอะไรคะ?",
    "context": "CREATE TABLE table_name_8 (league VARCHAR, sport VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_name_34 WHERE venue = \"pepsi arena\"",
    "question_en": "Venue of Pepsi arena involved what club?",
    "question_th": "สนามเป๊ปซี่เกี่ยวข้องกับสโมสรอะไร?",
    "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_en": "What is the highest earnings for Tom watson who had a ranking larger than 2?",
    "question_th": "ทอม วัตสันที่มีอันดับมากกว่า 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_en": "What is the highest earnings for curtis strange?",
    "question_th": "เคอร์ติส สเตรนจ์ มีรายได้สูงสุดเท่าไหร่?",
    "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_en": "What is the average year with an average start smaller than 6.3 and fewer than 0 wins?",
    "question_th": "ปีเฉลี่ยที่มีการเริ่มต้นเฉลี่ยน้อยกว่า 6.3 และน้อยกว่า 0 ชนะคือเท่าใด",
    "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_en": "Which Second has a Skip of barbora vojtusova?",
    "question_th": "วินาทีใดมีการข้ามของ barbora vojtusova?",
    "context": "CREATE TABLE table_name_27 (second VARCHAR, skip VARCHAR)"
  },
  {
    "answer": "SELECT skip FROM table_name_22 WHERE lead = \"marju velga\"",
    "question_en": "Which Skip did marju velga lead?",
    "question_th": "Marju Velga เป็นผู้นำคนไหนใน Skip?",
    "context": "CREATE TABLE table_name_22 (skip VARCHAR, lead VARCHAR)"
  },
  {
    "answer": "SELECT lead FROM table_name_23 WHERE second = \"katrin kuusk\"",
    "question_en": "Which Lead has a Second of katrin kuusk?",
    "question_th": "Lead คนไหนมีวินาทีของ katrin kuusk?",
    "context": "CREATE TABLE table_name_23 (lead VARCHAR, second VARCHAR)"
  },
  {
    "answer": "SELECT third FROM table_name_58 WHERE skip = \"ellen vogt\"",
    "question_en": "Which Third has a Skip of ellen vogt?",
    "question_th": "คนที่สามคนไหนที่มีการข้ามของ ellen vogt?",
    "context": "CREATE TABLE table_name_58 (third VARCHAR, skip VARCHAR)"
  },
  {
    "answer": "SELECT third FROM table_name_11 WHERE second = \"agnieszka ogrodniczek\"",
    "question_en": "Which Third has a Second of agnieszka ogrodniczek?",
    "question_th": "คนที่สามคนไหนมีวินาทีของ agnieszka ogrodniczek?",
    "context": "CREATE TABLE table_name_11 (third VARCHAR, second VARCHAR)"
  },
  {
    "answer": "SELECT skip FROM table_name_92 WHERE nation = \"spain\"",
    "question_en": "What is Spain's skip?",
    "question_th": "การข้ามของสเปนคืออะไร?",
    "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_en": "What is the Per capita income associated with a Median household income of $55,800?",
    "question_th": "รายได้ต่อหัวที่เกี่ยวข้องกับรายได้เฉลี่ยของครัวเรือนที่ 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_en": "What was the margin of victory at the Texas International Open?",
    "question_th": "อะไรคือชัยชนะที่ 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 = −3(74 - 68 - 72 - 71 = 285)",
    "question_en": "What was the margin of victory in the tournament with a winning score of −3 (74-68-72-71=285)?",
    "question_th": "อะไรคือส่วนต่างของชัยชนะในการแข่งขันด้วยคะแนนชนะที่ −3 (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_en": "Which Avg/G has an Effic larger than 129.73, and a Cmp-Att-Int of 333-500-13?",
    "question_th": "Avg/G ใดมี Effic มากกว่า 129.73 และ Cmp-Att-Int เป็น 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_en": "Which Effic is the highest one that has an Avg/G smaller than 305.6, and a GP-GS of 13-13?",
    "question_th": "ประสิทธิภาพใดคือประสิทธิภาพสูงสุดที่มี Avg/G น้อยกว่า 305.6 และ GP-GS เท่ากับ 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_en": "Which Avg/G that has a Name of opponents, and an Effic smaller than 129.73?",
    "question_th": "Avg/G ใดที่มีชื่อของคู่ต่อสู้ และ Effic น้อยกว่า 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_en": "Which Cmp-Att-Int has a GP-GS of 3-0?",
    "question_th": "Cmp-Att-Int ตัวไหนมี GP-GS เท่ากับ 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_en": "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?",
    "question_th": "ประสิทธิภาพใดคือค่าเฉลี่ยที่มี Avg/G มากกว่า 3.7 และ GP-GS เท่ากับ 13 และ Cmp-Att-Int เท่ากับ 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_en": "Which home team was playing on January 13?",
    "question_th": "เจ้าบ้านทีมไหนเล่นวันที่ 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_en": "How many runs were there when the high score was 55 and there were more than 12 innings?",
    "question_th": "มีวิ่งกี่ครั้งเมื่อคะแนนสูงสุดคือ 55 และมีมากกว่า 12 อินนิง?",
    "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_en": "How many runs were there when there was 1 match and les than 86 average?",
    "question_th": "มีการวิ่งกี่ครั้งเมื่อมี 1 นัดและเฉลี่ยน้อยกว่า 86?",
    "context": "CREATE TABLE table_name_1 (runs INTEGER, matches VARCHAR, average VARCHAR)"
  },
  {
    "answer": "SELECT station FROM table_name_78 WHERE programming = \"me-tv\"",
    "question_en": "Which station has programming of Me-TV?",
    "question_th": "สถานีใดที่มีรายการ Me-TV?",
    "context": "CREATE TABLE table_name_78 (station VARCHAR, programming VARCHAR)"
  },
  {
    "answer": "SELECT station FROM table_name_33 WHERE programming = \"me-tv\"",
    "question_en": "Which station has programming of Me-TV?",
    "question_th": "สถานีใดที่มีรายการ 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_en": "What is the short name having video of 720p and programming of Main KSTC-TV programming?",
    "question_th": "ชื่อย่อที่มีวิดีโอ 720p และรายการหลักของรายการ KSTC-TV คืออะไร",
    "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_en": "What is the video associated with a short name of KSTCDT2?",
    "question_th": "วิดีโอที่เกี่ยวข้องกับชื่อย่อของ 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_en": "What is the short name of channel 5.5, KSTC-TV?",
    "question_th": "ช่อง 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_en": "What is the short name of the channel under 5.2?",
    "question_th": "ชื่อย่อของช่องภายใต้ 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_en": "Which prefecture is in Hubei province and Enshi county?",
    "question_th": "จังหวัดใดอยู่ในมณฑลหูเป่ยและมณฑลเอินซี",
    "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_en": "What is the sum of Tujia population with the Zhangjiajie prefecture in Sangzhi county?",
    "question_th": "จำนวนประชากรถู่เจียกับจังหวัดจางเจียเจี้ยในเทศมณฑลซางซีเป็นเท่าใด",
    "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_en": "What is the total number of attendence has points greater than 40, and detroit as the home?",
    "question_th": "จำนวนผู้เข้าร่วมทั้งหมดมีคะแนนมากกว่า 40 และดีทรอยต์เป็นเจ้าบ้านคือเท่าไร?",
    "context": "CREATE TABLE table_name_99 (attendance VARCHAR, points VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT MAX(tropical_lows) FROM table_name_13 WHERE season = \"1990–91\" AND tropical_cyclones > 10",
    "question_en": "What is the largest number for tropical Lows for the 1990–91 season with more than 10 tropical cyclones?",
    "question_th": "ค่าต่ำสุดของเขตร้อนมากที่สุดในฤดูกาล พ.ศ. 2533-2534 ที่มีพายุหมุนเขตร้อนมากกว่า 10 ลูกคือเท่าใด",
    "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_en": "What is the least number of tropical cyclones when the strongest storm was Tiffany and less than 10 tropical lows.",
    "question_th": "พายุหมุนเขตร้อนมีจำนวนน้อยที่สุดเมื่อพายุที่รุนแรงที่สุดคือทิฟฟานีและมีอุณหภูมิต่ำสุดในเขตร้อนน้อยกว่า 10 องศา",
    "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–93\" AND tropical_lows < 6",
    "question_en": "What is the least amount of severe tropical cyclones for the 1992–93 season and the tropical Lows smaller than 6?",
    "question_th": "พายุหมุนเขตร้อนกำลังแรงน้อยที่สุดในฤดูกาล พ.ศ. 2535-2536 และอุณหภูมิต่ำสุดเขตร้อนน้อยกว่า 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–94\" AND tropical_cyclones < 11",
    "question_en": "What is the least amount of tropical lows for the 1993–94 season with less than 11 tropical cyclones",
    "question_th": "จำนวนต่ำสุดของเขตร้อนในฤดูกาล พ.ศ. 2536-2537 โดยมีพายุหมุนเขตร้อนน้อยกว่า 11 ลูกคือเท่าใด",
    "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_en": "How many Weeks are on september 8, 1980 and Attendances larger than 55,045? Question 4",
    "question_th": "วันที่ 8 กันยายน 1980 มีกี่สัปดาห์และมีผู้เข้าร่วมมากกว่า 55,045 คน คำถามที่ 4",
    "context": "CREATE TABLE table_name_22 (week VARCHAR, date VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_31 WHERE college = \"stanford\"",
    "question_en": "Which Round has a College of stanford?",
    "question_th": "รอบไหนมีวิทยาลัยสแตนฟอร์ด?",
    "context": "CREATE TABLE table_name_31 (round VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_47 WHERE pick = 174",
    "question_en": "Which Round has a Pick of 174?",
    "question_th": "รอบใดมีการเลือก 174?",
    "context": "CREATE TABLE table_name_47 (round VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_66 WHERE pick = 174",
    "question_en": "Which Position has a Pick of 174?",
    "question_th": "ตำแหน่งใดมีการเลือก 174?",
    "context": "CREATE TABLE table_name_66 (position VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_39 WHERE year = 1964",
    "question_en": "that was held in 1964?",
    "question_th": "ที่จัดขึ้นในปี 1964?",
    "context": "CREATE TABLE table_name_39 (event VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_62 WHERE venue = \"toronto, canada\"",
    "question_en": "What is the name of the Event with a venue that was in toronto, canada?",
    "question_th": "งานที่มีสถานที่จัดงานในเมืองโตรอนโต ประเทศแคนาดา ชื่ออะไร",
    "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_en": "What is the Year the competition the british empire and commonwealth games were held?",
    "question_th": "การแข่งขันจักรวรรดิอังกฤษและเครือจักรภพจัดขึ้นในปีใด",
    "context": "CREATE TABLE table_name_98 (year INTEGER, competition VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_98 WHERE competition = \"commonwealth games\"",
    "question_en": "What is the position of the commonwealth games?",
    "question_th": "เกมเครือจักรภพมีจุดยืนอย่างไร?",
    "context": "CREATE TABLE table_name_98 (position VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_15 WHERE year = 1964",
    "question_en": "What is the venue with a competition in 1964?",
    "question_th": "สถานที่จัดการแข่งขันในปี 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_en": "Name the date for clay surface and location of santos, brazil",
    "question_th": "ตั้งชื่อวันที่สำหรับพื้นผิวดินเหนียวและที่ตั้งของซานโตส ประเทศบราซิล",
    "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–6 6–2 7–6 (7–4)\"",
    "question_en": "Name the date with outcome of winner and score of 4–6 6–2 7–6 (7–4)",
    "question_th": "ตั้งชื่อวันที่มีผลผู้ชนะและคะแนน 4–6 6–2 7–6 (7–4)",
    "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_en": "What's the highest capacity for a position of 5 in 2004?",
    "question_th": "ความจุสูงสุดสำหรับตำแหน่งที่ 5 ในปี 2547 คือเท่าใด",
    "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_en": "Which venue was number 9 for 2004?",
    "question_th": "สถานที่ใดคือหมายเลข 9 ในปี 2004?",
    "context": "CREATE TABLE table_name_45 (venue VARCHAR, position_in_2004 VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_99 WHERE founded = 1857",
    "question_en": "What city was founded in 1857?",
    "question_th": "เมืองใดก่อตั้งในปี พ.ศ. 2400?",
    "context": "CREATE TABLE table_name_99 (city VARCHAR, founded VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_42 WHERE time = \"2:31\"",
    "question_en": "Which Opponent has a Time of 2:31?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีเวลา 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_en": "Which Method has a Round of 1, and a Time of 0:28?",
    "question_th": "วิธีใดมีรอบที่ 1 และเวลา 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_en": "Which Time has an Event of call to arms i?",
    "question_th": "เวลาใดที่มีเหตุการณ์เรียกเข้ากองทัพ?",
    "context": "CREATE TABLE table_name_15 (time VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_58 WHERE date = \"april 9\"",
    "question_en": "what team played on april 9",
    "question_th": "ทีมใดเล่นในวันที่ 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_en": "What is the smallest frequency (kHz) that is in the location of Longview?",
    "question_th": "ความถี่ที่เล็กที่สุด (kHz) ที่อยู่ในตำแหน่งของ 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_en": "What is the location with a frequency (kHz) greater than 1370?",
    "question_th": "ตำแหน่งที่มีความถี่ (kHz) มากกว่า 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_en": "What is the capacity number for Yunost?",
    "question_th": "หมายเลขความจุของ 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_en": "What is the total number of first prizes in USD for the Canadian Open?",
    "question_th": "จำนวนรางวัลที่หนึ่งทั้งหมดในสกุลเงิน USD สำหรับ Canadian Open คือเท่าใด",
    "context": "CREATE TABLE table_name_68 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT drawn FROM table_name_61 WHERE lost = \"19\"",
    "question_en": "Which Drawn has a Lost of 19?",
    "question_th": "งวดไหนเสีย 19 แต้ม?",
    "context": "CREATE TABLE table_name_61 (drawn VARCHAR, lost VARCHAR)"
  },
  {
    "answer": "SELECT played FROM table_name_94 WHERE \"club\" = \"club\"",
    "question_en": "Which Played has a Club of club?",
    "question_th": "ซึ่งเล่นมีคลับของสโมสร?",
    "context": "CREATE TABLE table_name_94 (played VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_name_18 WHERE losing_bonus = \"1\"",
    "question_en": "Which Club has 1 Losing bonus?",
    "question_th": "สโมสรไหนมีโบนัสแพ้ 1 ครั้ง?",
    "context": "CREATE TABLE table_name_18 (club VARCHAR, losing_bonus VARCHAR)"
  },
  {
    "answer": "SELECT losing_bonus FROM table_name_65 WHERE points_for = \"571\"",
    "question_en": "What is the Losing bonus of 571 Points ?",
    "question_th": "โบนัสการสูญเสีย 571 คะแนนคืออะไร?",
    "context": "CREATE TABLE table_name_65 (losing_bonus VARCHAR, points_for VARCHAR)"
  },
  {
    "answer": "SELECT lost FROM table_name_78 WHERE tries_for = \"75\"",
    "question_en": "Which Lost has a Tries for of 75?",
    "question_th": "แพ้คนไหนมีความพยายามถึง 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_en": "Who is the opponent in the final of the match on 19 February 2006?",
    "question_th": "คู่ต่อสู้ในนัดชิงชนะเลิศวันที่ 19 กุมภาพันธ์ พ.ศ. 2549 คือใคร?",
    "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_en": "Who is the opponent in the final of the match on 26 March 2006?",
    "question_th": "คู่ต่อสู้ในนัดชิงชนะเลิศวันที่ 26 มีนาคม พ.ศ. 2549 คือใคร?",
    "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_en": "What is the overall number of the player from Utah with a pick # higher than 7?",
    "question_th": "จำนวนผู้เล่นโดยรวมจากยูทาห์ที่เลือก # สูงกว่า 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_en": "What is the highest round of the player with a pick number lower than 34?",
    "question_th": "รอบสูงสุดของผู้เล่นที่มีหมายเลขเลือกต่ำกว่า 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_en": "What round did Mitch Davis, with an overall higher than 118, have?",
    "question_th": "มิทช์ เดวิส ซึ่งคะแนนรวมสูงกว่า 118 มีรอบไหน?",
    "context": "CREATE TABLE table_name_50 (round INTEGER, name VARCHAR, overall VARCHAR)"
  },
  {
    "answer": "SELECT MAX(overall) FROM table_name_54 WHERE college = \"georgia\"",
    "question_en": "What is the highest overall of the player from Georgia?",
    "question_th": "ผู้เล่นจากจอร์เจียโดยรวมสูงสุดคือเท่าไร?",
    "context": "CREATE TABLE table_name_54 (overall INTEGER, college VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_70 WHERE overall = 45",
    "question_en": "What is the position of the player with an overall of 45?",
    "question_th": "ตำแหน่งผู้เล่นที่มีคะแนนรวม 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_en": "How many wins for team nsu and over 2 points?",
    "question_th": "ทีม nsu ชนะกี่แต้มและเกิน 2 แต้ม?",
    "context": "CREATE TABLE table_name_54 (wins INTEGER, team VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_name_55 WHERE wins < 0",
    "question_en": "What is the earliest year associated with under 0 wins?",
    "question_th": "ปีแรกสุดที่เกี่ยวข้องกับการชนะต่ำกว่า 0 คืออะไร?",
    "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_en": "How many wins for team mv agusta, over 10 points, and after 1957?",
    "question_th": "ชนะกี่ทีม MV Agusta มากกว่า 10 แต้ม และหลังปี 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_en": "What College/Junior/Club Team (League) has a round of 3?",
    "question_th": "ทีมวิทยาลัย/จูเนียร์/คลับ (ลีก) ใดมีรอบ 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_en": "What player has a round larger than 1 in Austria?",
    "question_th": "ผู้เล่นคนใดมีรอบที่ใหญ่กว่า 1 ในออสเตรีย?",
    "context": "CREATE TABLE table_name_6 (player VARCHAR, round VARCHAR, nationality VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_83 WHERE nationality = \"sweden\"",
    "question_en": "Which player's nationality is from Sweden?",
    "question_th": "นักเตะสัญชาติใดมาจากสวีเดน?",
    "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_en": "What College/Junior/Club Team (League) from Canada has a round smaller than 3?",
    "question_th": "ทีมวิทยาลัย/จูเนียร์/คลับ (ลีก) ใดจากแคนาดาที่มีรอบน้อยกว่า 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_en": "What was the distance in 1997?",
    "question_th": "ระยะทางในปี 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_en": "Who was the opponents in the final on January 5, 2003, on a hard surface?",
    "question_th": "ใครคือคู่ต่อสู้ในรอบชิงชนะเลิศเมื่อวันที่ 5 มกราคม พ.ศ. 2546 บนพื้นแข็ง?",
    "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_en": "What was the final score on the February 19, 2012 final?",
    "question_th": "คะแนนสุดท้ายในรอบชิงชนะเลิศวันที่ 19 กุมภาพันธ์ 2555 คืออะไร?",
    "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_en": "Name the least attendance with venue of away on 24 august 2007",
    "question_th": "รายชื่อผู้เข้าร่วมน้อยที่สุดกับสถานที่เยือนในวันที่ 24 สิงหาคม พ.ศ. 2550",
    "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_en": "Name the average attendance with result of won 2-0 on 2 november 2007",
    "question_th": "ตั้งชื่อผู้เข้าชมโดยเฉลี่ยด้วยผลชนะ 2-0 เมื่อวันที่ 2 พฤศจิกายน พ.ศ. 2550",
    "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_en": "What is the uniform number of the player whose last name is Wiltshire?",
    "question_th": "หมายเลขชุดของผู้เล่นที่มีนามสกุลคือวิลต์เชียร์คือหมายเลขใด",
    "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_en": "When the rank is larger than 3 with a second quarter of johnson & johnson 156,515.9, what is the fourth quarter?",
    "question_th": "เมื่ออันดับมากกว่า 3 โดยมีไตรมาสที่สองของ johnson & johnson 156,515.9 ไตรมาสที่สี่คือเท่าใด",
    "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_en": "With a rank of 2 what is the second quarter?",
    "question_th": "ด้วยอันดับที่ 2 ไตรมาสที่ 2 คืออะไร?",
    "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_en": "When the third quarter is China Mobile 195,680.4, what is the rank?",
    "question_th": "เมื่อไตรมาสที่ 3 มี China Mobile 195,680.4 อยู่อันดับที่เท่าไหร่?",
    "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_en": "When the first quarter is procter & gamble 138,013, what is the rank?",
    "question_th": "เมื่อควอเตอร์แรก procter & gamble 138,013 อยู่อันดับไหน?",
    "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_en": "When the rank is less than 4, and has a second quarter of exxon mobil 341,140.3, what is the fourth quarter?",
    "question_th": "เมื่ออันดับต่ำกว่า 4 และมีไตรมาสที่ 2 ของ exxon mobil 341,140.3 แล้วไตรมาสที่ 4 จะเป็นเท่าใด?",
    "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_en": "What is the Term end that has a Party of united australia and 184 days in office?",
    "question_th": "การสิ้นสุดวาระที่มีพรรคของสหออสเตรเลียและอยู่ในตำแหน่ง 184 วันคืออะไร?",
    "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_en": "What is the sum of average values for 23 yards?",
    "question_th": "ผลรวมของค่าเฉลี่ยระยะ 23 หลาเป็นเท่าใด",
    "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_en": "What are the most yards for 2 sacks and an average greater than 0?",
    "question_th": "2 กระสอบมีระยะมากที่สุดและค่าเฉลี่ยมากกว่า 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_en": "What is listed for the Bronze, with the Location of Bangkok, and the Year of 1978?",
    "question_th": "รายชื่อเหรียญทองแดง ที่ตั้งกรุงเทพมหานคร และปี พ.ศ. 2521 มีอะไรบ้าง?",
    "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_en": "What's listed for the lowest Year that a Silver of Kim Kyung-Ho?",
    "question_th": "ปีที่ต่ำที่สุดที่ได้เหรียญเงินของคิมคยองโฮมีอะไรบ้าง?",
    "context": "CREATE TABLE table_name_51 (year INTEGER, silver VARCHAR)"
  },
  {
    "answer": "SELECT gold FROM table_name_61 WHERE bronze = \"kim sun-bin\"",
    "question_en": "What's the Gold that also has Bronze of Kim Sun-Bin?",
    "question_th": "ทองอะไรที่มีทองแดงของคิมซุนบินด้วยล่ะ?",
    "context": "CREATE TABLE table_name_61 (gold VARCHAR, bronze VARCHAR)"
  },
  {
    "answer": "SELECT bronze FROM table_name_75 WHERE gold = \"kim woo-jin\"",
    "question_en": "What's the Bronze that's also got a Godl of Kim Woo-Jin?",
    "question_th": "อะไรคือทองแดงที่มีเทพเจ้าของคิมอูจินด้วย?",
    "context": "CREATE TABLE table_name_75 (bronze VARCHAR, gold VARCHAR)"
  },
  {
    "answer": "SELECT MAX(year) FROM table_name_1 WHERE bronze = \"wataru haraguchi\"",
    "question_en": "What is listed as the highest Year that's also got a Bronze of Wataru Haraguchi?",
    "question_th": "ปีไหนที่ได้รับเหรียญทองแดงของ Wataru Haraguchi มากที่สุด?",
    "context": "CREATE TABLE table_name_1 (year INTEGER, bronze VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_58 WHERE record = \"35–23–15\"",
    "question_en": "What was the score when their record was 35–23–15?",
    "question_th": "คะแนนเมื่อบันทึกของพวกเขาคือ 35–23–15 คืออะไร",
    "context": "CREATE TABLE table_name_58 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_90 WHERE score = \"5 – 6\"",
    "question_en": "Which home team has a score of 5 – 6?",
    "question_th": "เจ้าบ้านทีมไหนมีสกอร์ 5 – 6?",
    "context": "CREATE TABLE table_name_90 (home VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT county FROM table_name_17 WHERE school = \"merrillville\"",
    "question_en": "In what county is the school of Merrillville?",
    "question_th": "โรงเรียนของเมอร์ริลวิลล์อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_17 (county VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT previous_conference FROM table_name_41 WHERE school = \"portage\"",
    "question_en": "The school of Portage was in what conference previous?",
    "question_th": "โรงเรียน Portage อยู่ในการประชุมใหญ่ครั้งใดก่อนหน้านี้",
    "context": "CREATE TABLE table_name_41 (previous_conference VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_37 WHERE location = \"valparaiso\"",
    "question_en": "What is the name of the school that is in Valparaiso?",
    "question_th": "โรงเรียนที่อยู่ในบัลปาราอีโซชื่ออะไร?",
    "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_en": "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?",
    "question_th": "เอฟเอ คัพ ใดคือรายการสูงสุดที่มีมาเลเซีย คัพ 0 และผู้เล่นของอาหมัด ฟูซี มาซูรี และผลรวมมากกว่า 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_en": "How many totals have a Player of ahmad fouzee masuri, and an FA Cup larger than 0?",
    "question_th": "จำนวนผู้เล่นของอาหมัด ฟูซี มาซูรี และเอฟเอ คัพ มากกว่า 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_en": "Which FA Cup has a Player of khairan ezuan razali, and a Total smaller than 0?",
    "question_th": "FA Cup ใดที่มีผู้เล่นของไคราน เอซวน ราซาลี และผลรวมน้อยกว่า 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_en": "How many Malaysia Cups have a Total larger than 3, and a Player of ivan yusoff, and a League smaller than 2?",
    "question_th": "มาเลเซียคัพมีกี่ถ้วยที่มีคะแนนรวมมากกว่า 3 และมีผู้เล่นของ ivan yusoff และลีกที่เล็กกว่า 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_en": "Which FA Cup has a Malaysia Cup larger than 0, and a Total of 8?",
    "question_th": "FA Cup ใดที่มี Malaysia Cup มากกว่า 0 และรวมเป็น 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_en": "Which Year is the highest one that has a Venue of edmonton, canada?",
    "question_th": "ปีใดที่สูงที่สุดที่มีสถานที่จัดงานในเมืองเอดมันตัน ประเทศแคนาดา?",
    "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_en": "Which Position has a Competition of world championships, and a Year larger than 1997?",
    "question_th": "ตำแหน่งใดที่มีการแข่งขันชิงแชมป์โลก และหนึ่งปีที่ใหญ่กว่าปี 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_en": "Which Venue has a Notes of heptathlon, and a Year of 1991?",
    "question_th": "สถานที่ใดมีบันทึกของ heptathlon และปี 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_en": "What days held has noiz as the wrestler?",
    "question_th": "วันไหนที่นอยซ์เป็นนักมวยปล้ำ?",
    "context": "CREATE TABLE table_name_95 (days_held VARCHAR, wrestler VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_14 WHERE wrestler = \"tatsuhito takaiwa\"",
    "question_en": "What location has tatsuhito takaiwa as the wrestler?",
    "question_th": "ทัตสึฮิโตะ ทาคาอิวะ เป็นนักมวยปล้ำตำแหน่งไหน?",
    "context": "CREATE TABLE table_name_14 (location VARCHAR, wrestler VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_33 WHERE days_held = \"8\"",
    "question_en": "What event has 8 as the days held?",
    "question_th": "เหตุการณ์ใดมี 8 วันเป็นวันจัดขึ้น?",
    "context": "CREATE TABLE table_name_33 (event VARCHAR, days_held VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_98 WHERE days_held = \"unknown\"",
    "question_en": "What event has unknown as the days held.?",
    "question_th": "เหตุการณ์อะไรไม่ทราบวันที่จัดขึ้น.?",
    "context": "CREATE TABLE table_name_98 (event VARCHAR, days_held VARCHAR)"
  },
  {
    "answer": "SELECT displacement FROM table_name_87 WHERE engine = \"iveco f1ce3481e\"",
    "question_en": "What is the Displacement of the Iveco F1CE3481E Engine?",
    "question_th": "การกระจัดของเครื่องยนต์ Iveco F1CE3481E คืออะไร?",
    "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_en": "What is the Displacement of the 180 Multijet Power/3.0 HDI Model?",
    "question_th": "การกำจัดของรุ่น 180 Multijet Power/3.0 HDI คืออะไร?",
    "context": "CREATE TABLE table_name_68 (displacement VARCHAR, model VARCHAR)"
  },
  {
    "answer": "SELECT valvetrain FROM table_name_12 WHERE model = \"diesel engines\"",
    "question_en": "What is the Valvetrain of the Diesel Engines Model?",
    "question_th": "Valvetrain ของเครื่องยนต์ดีเซลรุ่นคืออะไร?",
    "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_en": "Year(s) won of 1994 , 1997 has what average total?",
    "question_th": "ปีที่ชนะ 1994 , 1997 มียอดรวมเฉลี่ยเท่าไร?",
    "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_en": "Player of corey pavin, and a To par larger than 5 has what average total?",
    "question_th": "ผู้เล่นของ Corey Pavin และ To Par มากกว่า 5 มีค่าเฉลี่ยทั้งหมดเท่าใด",
    "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_en": "Total smaller than 285, and a To par larger than 1 belongs to what player?",
    "question_th": "ผลรวมน้อยกว่า 285 และ To par มากกว่า 1 เป็นของผู้เล่นคนใด",
    "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_en": "Total larger than 285, and a Finish of t30 belongs to what player?",
    "question_th": "ผลรวมมากกว่า 285 และการเข้าเส้นชัย t30 เป็นของผู้เล่นคนใด",
    "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_en": "Which player for a team with an 18-20 record had the most rebounds in a game?",
    "question_th": "ผู้เล่นคนใดของทีมที่มีสถิติ 18-20 รีบาวน์มากที่สุดในเกม?",
    "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_en": "Name the total number of frequency Mhz with class of d and call sign of k201bm and ERP W less than 74",
    "question_th": "ตั้งชื่อจำนวนความถี่ทั้งหมด Mhz ด้วยคลาส d และสัญญาณเรียกขาน k201bm และ ERP W น้อยกว่า 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_en": "Name the least frequency Mhz with call sign of k202ag",
    "question_th": "ตั้งชื่อความถี่น้อยที่สุด Mhz ด้วยสัญญาณเรียก 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_en": "Name the class with call sign of k220cp",
    "question_th": "ตั้งชื่อชั้นเรียนด้วยสัญญาณเรียก k220cp",
    "context": "CREATE TABLE table_name_2 (class VARCHAR, call_sign VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_51 WHERE opponent = \"winnipeg jets\"",
    "question_en": "What is the Winnipeg Jets record?",
    "question_th": "บันทึกของ Winnipeg Jets คืออะไร?",
    "context": "CREATE TABLE table_name_51 (record VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_26 WHERE date = \"november 8\"",
    "question_en": "What's the stadium on November 8?",
    "question_th": "วันที่ 8 พฤศจิกายน สนามอะไร?",
    "context": "CREATE TABLE table_name_26 (home VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_53 WHERE date = \"march 17\"",
    "question_en": "Who was the visitor on March 17?",
    "question_th": "ใครคือผู้เยี่ยมชมในวันที่ 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_en": "What's the score for Toronto Maple Leafs on November 10?",
    "question_th": "โตรอนโต เมเปิล ลีฟส์ วันที่ 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_en": "Who was the visitor on October 31?",
    "question_th": "ใครคือผู้มาเยือนในวันที่ 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_en": "What is the rank associated with 0 wins and a 350cc class?",
    "question_th": "อันดับที่เกี่ยวข้องกับชัยชนะ 0 ครั้งและคลาส 350cc คืออะไร?",
    "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_en": "What is the run 2 of the athlete from Australia with a run 1 less than 53.75?",
    "question_th": "วิ่ง 2 ของนักกีฬาจากออสเตรเลีย วิ่ง 1 น้อยกว่า 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_en": "What is the run 2 of athlete Maria Orlova from Russia?",
    "question_th": "นักกีฬาหมายเลข 2 มาเรีย ออร์โลวา จากรัสเซีย คือใคร?",
    "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_en": "What is the run 3 of the athlete with a run 1 more than 53.75 and a run 2 less than 52.91?",
    "question_th": "ระยะที่ 3 ของนักกีฬาที่วิ่ง 1 มากกว่า 53.75 และวิ่ง 2 น้อยกว่า 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_en": "What is the lowest run 3 an athlete with a run 2 less than 53.72 and a run 1 of 53.1 has?",
    "question_th": "นักกีฬาที่มีรัน 2 น้อยกว่า 53.72 และรัน 1 จาก 53.1 มีรันต่ำสุดเท่าไหร่?",
    "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_en": "What is the lowest run 2 of the athlete with a run 1 of 52.44 and a run 3 less than 52.35?",
    "question_th": "นักกีฬาคนที่ 2 วิ่งต่ำสุด โดยวิ่ง 1 จาก 52.44 และวิ่ง 3 น้อยกว่า 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_en": "How many points are associated with 0 poles?",
    "question_th": "0 ขั้วมีกี่คะแนน?",
    "context": "CREATE TABLE table_name_39 (points VARCHAR, poles INTEGER)"
  },
  {
    "answer": "SELECT MIN(game__number) FROM table_name_93 WHERE home = \"detroit\"",
    "question_en": "What is the first game that has a home team of Detroit?",
    "question_th": "เกมแรกที่มีทีมเหย้าของดีทรอยต์คือเกมอะไร?",
    "context": "CREATE TABLE table_name_93 (game__number INTEGER, home VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_14 WHERE points > 92",
    "question_en": "Which home team has higher than 92 points?",
    "question_th": "เจ้าบ้านทีมไหนมีแต้มมากกว่า 92 แต้ม?",
    "context": "CREATE TABLE table_name_14 (home VARCHAR, points INTEGER)"
  },
  {
    "answer": "SELECT team FROM table_name_42 WHERE score = \"101\"",
    "question_en": "what team's score is 101?",
    "question_th": "คะแนนของทีมไหนคือ 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_en": "what team played against zimbabwe in 1999?",
    "question_th": "ทีมใดเล่นกับซิมบับเวในปี 1999?",
    "context": "CREATE TABLE table_name_11 (team VARCHAR, year VARCHAR, versus VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_70 WHERE year = 2006",
    "question_en": "what is the team that played in 2006?",
    "question_th": "ปี 2549 คือทีมอะไรครับ?",
    "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_en": "What is the lowest amount of points driver Romain Grosjean, who has an average pre-2010 less than 0, has?",
    "question_th": "Romain Grosjean นักแข่งที่มีคะแนนเฉลี่ยก่อนปี 2010 น้อยกว่า 0 มีจำนวนคะแนนต่ำสุดเท่าใด",
    "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_en": "What is the average number of entries driver Mark Webber, who has more than 1014.5 points, has?",
    "question_th": "มาร์ค เว็บเบอร์ นักแข่งที่มีคะแนนมากกว่า 1,014.5 คะแนนโดยเฉลี่ยมีคะแนนเท่าไหร่?",
    "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_en": "What is the highest average points per race of the driver with less than 969 points and an average pre-2010 less than 0?",
    "question_th": "คะแนนเฉลี่ยสูงสุดต่อการแข่งขันของนักแข่งที่มีคะแนนน้อยกว่า 969 คะแนน และค่าเฉลี่ยก่อนปี 2010 น้อยกว่า 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äikkönen\" AND entries > 194",
    "question_en": "What is the lowest average points per race entered of driver kimi räikkönen, who has more than 194 entries?",
    "question_th": "คะแนนเฉลี่ยต่ำสุดต่อการแข่งขันที่เข้าร่วมของนักแข่ง kimi räikkönen ที่มีมากกว่า 194 รายการคือเท่าใด",
    "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_en": "What is the first game played against the Chicago Black Hawks?",
    "question_th": "เกมแรกที่เล่นกับชิคาโก้ แบล็ก ฮอว์กส์คือเกมใด?",
    "context": "CREATE TABLE table_name_92 (game INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_19 WHERE date = \"9 november 1991\"",
    "question_en": "Name the opponent for 9 november 1991",
    "question_th": "ทายชื่อคู่ต่อสู้วันที่ 9 พฤศจิกายน พ.ศ. 2534",
    "context": "CREATE TABLE table_name_19 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MIN(losses) FROM table_name_92 WHERE wins < 0",
    "question_en": "Which Losses is the lowest one that has Wins smaller than 0?",
    "question_th": "การแพ้ใดคือค่าต่ำสุดที่ชนะน้อยกว่า 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_en": "Which Losses have a Season larger than 1941, and a Team of hamilton wildcats, and Ties of 0?",
    "question_th": "การแพ้ครั้งใดที่มีฤดูกาลใหญ่กว่าปี 1941 และทีมแฮมิลตัน ไวลด์แคท และเสมอกันเป็น 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_en": "Which Season has Ties smaller than 1, and a Team of vancouver grizzlies, and Wins smaller than 1?",
    "question_th": "ฤดูกาลใดที่เสมอกันน้อยกว่า 1 และทีมแวนคูเวอร์ กริซลี่ย์ และชนะน้อยกว่า 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_en": "How many Ties have Wins smaller than 1, and Games of 6, and Losses of 6, and a Season larger than 1941?",
    "question_th": "มีกี่แต้มที่ชนะน้อยกว่า 1 และเกม 6 เกมและแพ้ 6 และหนึ่งฤดูกาลที่มากกว่าปี 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_en": "Which Wins have a Team of winnipeg blue bombers, and a Season larger than 1964?",
    "question_th": "ชัยชนะใดที่มีทีมทิ้งระเบิดสีน้ำเงินวินนิเพก และฤดูกาลที่ใหญ่กว่าปี 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_en": "What engine class is associated with a year after 1985 and over 0 wins?",
    "question_th": "คลาสเครื่องยนต์ใดที่เกี่ยวข้องกับหนึ่งปีหลังจากปี 1985 และชนะมากกว่า 0 ครั้ง",
    "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_en": "Which opponent has a loss of trout (7-4)?",
    "question_th": "คู่ต่อสู้คนไหนที่สูญเสียปลาเทราท์ (7-4)?",
    "context": "CREATE TABLE table_name_53 (opponent VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_65 WHERE save = \"smith (22)\"",
    "question_en": "Which opponent has a save of smith (22)?",
    "question_th": "คู่ต่อสู้คนไหนมีเซฟของสมิธ (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_en": "How much Gold has a Bronze larger than 1, and a Silver larger than 2?",
    "question_th": "ทองคำจำนวนเท่าใดที่มีทองแดงมากกว่า 1 และเงินมากกว่า 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_en": "Which Total has a Nation of japan (jpn), and a Silver smaller than 1?",
    "question_th": "Total ใดที่มีสัญชาติญี่ปุ่น (jpn) และ Silver น้อยกว่า 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_en": "What is the margin of victory in WGC-Accenture Match Play Championship?",
    "question_th": "ชัยชนะใน 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_en": "On what date was Nick Price the runner-up?",
    "question_th": "Nick Price รองแชมป์วันที่เท่าไหร่?",
    "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_en": "What is the margin of victory for Nick Price as a runner-up?",
    "question_th": "อะไรคือชัยชนะของ Nick Price ในฐานะรองแชมป์?",
    "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_en": "What is the margin of victory for PGA Championship?",
    "question_th": "ชัยชนะของ PGA Championship คืออะไร?",
    "context": "CREATE TABLE table_name_25 (margin_of_victory VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_46 WHERE winning_score = –20(68 - 67 - 65 - 64 = 264)",
    "question_en": "On what date was the winning score –20 (68-67-65-64=264)?",
    "question_th": "คะแนนชนะ –20 คือวันไหน (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_en": "Which player was D past Round 3?",
    "question_th": "ผู้เล่นคนไหนคือ D ผ่านรอบที่ 3?",
    "context": "CREATE TABLE table_name_88 (player VARCHAR, position VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_5 WHERE position = \"f\"",
    "question_en": "Which Round was F picked?",
    "question_th": "F เลือกรอบไหน?",
    "context": "CREATE TABLE table_name_5 (round VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_6 WHERE player = \"ryan russell\"",
    "question_en": "What Position is Ryan Russell?",
    "question_th": "Ryan Russell ดำรงตำแหน่งอะไร?",
    "context": "CREATE TABLE table_name_6 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_12 WHERE round = 4",
    "question_en": "What country does Round 4 come from?",
    "question_th": "รอบที่ 4 มาจากประเทศอะไร?",
    "context": "CREATE TABLE table_name_12 (nationality VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_17 WHERE date = \"april 14\"",
    "question_en": "Which opponent was present on April 14?",
    "question_th": "คู่ต่อสู้คนใดที่ปรากฏในวันที่ 14 เมษายน?",
    "context": "CREATE TABLE table_name_17 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_60 WHERE date = \"april 15\"",
    "question_en": "what team lost on april 15",
    "question_th": "ทีมไหนแพ้เมื่อวันที่ 15 เมษายน",
    "context": "CREATE TABLE table_name_60 (loss VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_93 WHERE date = \"april 21\"",
    "question_en": "what team played on april 21",
    "question_th": "ทีมใดเล่นในวันที่ 21 เมษายน",
    "context": "CREATE TABLE table_name_93 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_81 WHERE date = \"april 10\"",
    "question_en": "what team scored on april 10",
    "question_th": "ทีมใดทำประตูได้ในวันที่ 10 เมษายน",
    "context": "CREATE TABLE table_name_81 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT loser FROM table_name_44 WHERE time = \"0:58\"",
    "question_en": "Who lost with a time of 0:58?",
    "question_th": "ใครแพ้ด้วยเวลา 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_en": "What is the average number of rounds for winner Rafael Cavalcante?",
    "question_th": "จำนวนรอบเฉลี่ยของผู้ชนะ Rafael Cavalcante คือเท่าไร?",
    "context": "CREATE TABLE table_name_37 (round INTEGER, winner VARCHAR)"
  },
  {
    "answer": "SELECT method FROM table_name_71 WHERE time = \"2:32\"",
    "question_en": "What win method has a time of 2:32?",
    "question_th": "วิธีชนะแบบใดที่มีเวลา 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_en": "What is the sum of points values that are associated with 0 losses and more than 8 games?",
    "question_th": "ผลรวมของคะแนนที่เกี่ยวข้องกับการแพ้ 0 และมากกว่า 8 เกมเป็นเท่าใด",
    "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_en": "What is the fewest losses associated with more than 13 points and fewer than 8 games?",
    "question_th": "อะไรคือการสูญเสียน้อยที่สุดที่เกี่ยวข้องกับมากกว่า 13 แต้มและน้อยกว่า 8 เกม?",
    "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_en": "What is the difference associated with more than 2 points, fewer than 3 losses, and fewer than 1 draw?",
    "question_th": "อะไรคือความแตกต่างที่เกี่ยวข้องกับมากกว่า 2 แต้ม แพ้น้อยกว่า 3 ครั้ง และเสมอน้อยกว่า 1 ครั้ง?",
    "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_en": "What is the fewest number of points associated with more than 8 games?",
    "question_th": "จำนวนคะแนนน้อยที่สุดที่เกี่ยวข้องกับเกมมากกว่า 8 เกมคือเท่าใด",
    "context": "CREATE TABLE table_name_95 (points INTEGER, games INTEGER)"
  },
  {
    "answer": "SELECT title FROM table_name_33 WHERE role = \"richard kolner\"",
    "question_en": "Which title did richard kolner play?",
    "question_th": "Richard Kolner เล่นตำแหน่งใด",
    "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_en": "Which Title has a Dance Partner of adele astaire, and Lyrics of ira gershwin, and a Director of felix edwardes?",
    "question_th": "ชื่อใดมีคู่เต้นรำของ adele astaire และเนื้อเพลงของ ira gershwin และผู้อำนวยการของ 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_en": "Which Role has a Theatre of globe, and a Music of jerome kern?",
    "question_th": "บทบาทใดมีโรงละครแห่งโลกและดนตรีของเจอโรมเคิร์น?",
    "context": "CREATE TABLE table_name_61 (role VARCHAR, theatre VARCHAR, music VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_22 WHERE year * __est_ = \"2012\"",
    "question_en": "what name was on the year 2012",
    "question_th": "ชื่ออะไรในปี 2555",
    "context": "CREATE TABLE table_name_22 (name VARCHAR, year VARCHAR, __est_ VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_40 WHERE spouse = \"charles ii\"",
    "question_en": "Which member of house of Habsburg-Lorraine had the spouse Charles II?",
    "question_th": "สมาชิกคนใดในราชวงศ์ฮับส์บูร์ก-ลอร์เรนมีคู่สมรสชาร์ลส์ที่ 2?",
    "context": "CREATE TABLE table_name_40 (name VARCHAR, spouse VARCHAR)"
  },
  {
    "answer": "SELECT marriage FROM table_name_67 WHERE death = \"29 december 1829\"",
    "question_en": "What is the marriage date for the Habsburg-Lorraine house member who died 29 December 1829?",
    "question_th": "วันแต่งงานของสมาชิกบ้าน Habsburg-Lorraine ที่เสียชีวิตในวันที่ 29 ธันวาคม พ.ศ. 2372 คือเมื่อใด",
    "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_en": "When did the duchess who became duchess on 7/8 April 1766 cease to be duchess?",
    "question_th": "ดัชเชสที่ขึ้นเป็นดัชเชสในวันที่ 7/8 เมษายน พ.ศ. 2309 พ้นจากการเป็นดัชเชสเมื่อใด",
    "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_en": "What is the date of death of the duchess born on 30 October 1797?",
    "question_th": "ดัชเชสประสูติวันที่ 30 ตุลาคม พ.ศ. 2340 สิ้นพระชนม์เมื่อใด",
    "context": "CREATE TABLE table_name_2 (death VARCHAR, birth VARCHAR)"
  },
  {
    "answer": "SELECT birth FROM table_name_16 WHERE marriage = \"1 may 1844\"",
    "question_en": "What is the birth date of the duchess who married on 1 May 1844?",
    "question_th": "ดัชเชสที่อภิเษกสมรสเมื่อวันที่ 1 พฤษภาคม พ.ศ. 2387 วันเกิดเมื่อใด",
    "context": "CREATE TABLE table_name_16 (birth VARCHAR, marriage VARCHAR)"
  },
  {
    "answer": "SELECT MAX(pick) FROM table_name_67 WHERE round = 7",
    "question_en": "What is the highest numbered pick from round 7?",
    "question_th": "ตัวเลือกหมายเลขสูงสุดจากรอบ 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_en": "How much Played has an Against larger than 11, and a Team of botafogo, and a Position smaller than 2?",
    "question_th": "จำนวนการเล่นที่มีจำนวนการต่อต้านมากกว่า 11 และทีม botafogo และตำแหน่งที่น้อยกว่า 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_en": "Which average Drawn has Points smaller than 14, and a Lost smaller than 4, and a Played larger than 9?",
    "question_th": "ค่าเฉลี่ยใดที่สุ่มออกมามีแต้มน้อยกว่า 14 และแพ้น้อยกว่า 4 และเล่นมากกว่า 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_en": "Which Played is the lowest one that has a Team of vasco da gama, and an Against smaller than 11?",
    "question_th": "ผู้เล่นคนไหนคือทีมที่ต่ำที่สุดที่มีทีมวาสโก ดา กามา และทีมต่อที่น้อยกว่า 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érica\" AND points < 5",
    "question_en": "Which Played has a Lost larger than 4, and a Team of américa, and Points smaller than 5?",
    "question_th": "ผู้เล่นคนไหนที่แพ้มากกว่า 4 และทีมของอเมริกาและแต้มน้อยกว่า 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_en": "Which Lost has a Position of 3, and a Drawn larger than 3?",
    "question_th": "ผู้แพ้คนไหนมีตำแหน่ง 3 และจั่วได้มากกว่า 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_en": "How much Lost has a Drawn larger than 1, and Points smaller than 14, and an Against larger than 10?",
    "question_th": "แพ้ไปมากเพียงใดที่มีการเสมอมากกว่า 1 และแต้มน้อยกว่า 14 และแต้มต่อมากกว่า 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_en": "What tournament has yvonne vermaak as the opponent?",
    "question_th": "Yvonne Vermaak เป็นคู่ต่อสู้ในทัวร์นาเมนต์ใด",
    "context": "CREATE TABLE table_name_5 (tournament VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_79 WHERE opponent = \"yvonne vermaak\"",
    "question_en": "What outcome has yvonne vermaak as the opponent?",
    "question_th": "อีวอนน์ เวอร์มาอัค เป็นคู่ต่อสู้ได้ผลลัพธ์อย่างไร?",
    "context": "CREATE TABLE table_name_79 (outcome VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_1 WHERE tournament = \"hershey\"",
    "question_en": "What is the outcome for the Hershey tournament?",
    "question_th": "ผลลัพธ์ของการแข่งขัน Hershey คืออะไร?",
    "context": "CREATE TABLE table_name_1 (outcome VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_4 WHERE save = \"ni fu-deh\"",
    "question_en": "Who played against Save Of Ni Fu-Deh?",
    "question_th": "ใครเคยเจอกับ 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_en": "What's the loss of who has a Save of Miguel Saladin and played against Chinatrust Whales?",
    "question_th": "อะไรคือการสูญเสียใครที่มี Save of Miguel Saladin และเล่นกับ 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_en": "Who's the opponent when Diegomar Markwell is the loss?",
    "question_th": "คู่ต่อสู้คือใครเมื่อดิเอโก้มาร์ มาร์คเวลล์เป็นฝ่ายแพ้?",
    "context": "CREATE TABLE table_name_80 (opponent VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_8 WHERE record = \"86-71\"",
    "question_en": "what game had a score of 86-71",
    "question_th": "เกมไหนมีสกอร์ 86-71",
    "context": "CREATE TABLE table_name_8 (attendance VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_34 WHERE date = \"september 14\"",
    "question_en": "what game took place on september 14",
    "question_th": "เกมอะไรเกิดขึ้นในวันที่ 14 กันยายน",
    "context": "CREATE TABLE table_name_34 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_70 WHERE attendance = \"21,629\"",
    "question_en": "what game had an attendance of 21,629",
    "question_th": "เกมใดที่มีผู้ชม 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_en": "what is the number of people in sri lanka",
    "question_th": "ศรีลังกามีคนอยู่กี่คน",
    "context": "CREATE TABLE table_name_10 (s_no INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT position_in_1998 FROM table_name_10 WHERE team = \"slavia\"",
    "question_en": "What was the position of the Slavia team in 1998?",
    "question_th": "ตำแหน่งของทีมสลาเวียในปี 1998 คืออะไร?",
    "context": "CREATE TABLE table_name_10 (position_in_1998 VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_91 WHERE location = \"lida\"",
    "question_en": "Which team is located in Lida?",
    "question_th": "ทีมไหนอยู่ลิด้า?",
    "context": "CREATE TABLE table_name_91 (team VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT episode_no FROM table_name_56 WHERE countries_visited = \"india\"",
    "question_en": "Which episode number visited India?",
    "question_th": "หมายเลขตอนไหนไปอินเดีย?",
    "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_en": "Which episode title featured a visit to the country of Cuba?",
    "question_th": "ชื่อตอนใดเป็นการกล่าวถึงการเยือนประเทศคิวบา",
    "context": "CREATE TABLE table_name_26 (episode_title VARCHAR, countries_visited VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_83 WHERE player = \"jesse boulerice\"",
    "question_en": "Which position does Jesse Boulerice play?",
    "question_th": "เจสซี่ บูเลอริซเล่นตำแหน่งไหน?",
    "context": "CREATE TABLE table_name_83 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MIN(wins) FROM table_name_1 WHERE driver = \"ayrton senna\"",
    "question_en": "What is the fewest number of wins in the chart for Ayrton Senna?",
    "question_th": "จำนวนชัยชนะน้อยที่สุดในชาร์ตของไอร์ตัน เซนน่าคือเท่าใด?",
    "context": "CREATE TABLE table_name_1 (wins INTEGER, driver VARCHAR)"
  },
  {
    "answer": "SELECT entries FROM table_name_51 WHERE wins > 11",
    "question_en": "What is the number of entries associated with more than 11 wins?",
    "question_th": "จำนวนรายการที่เกี่ยวข้องกับการชนะมากกว่า 11 ครั้งเป็นเท่าใด",
    "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_en": "Name the most points with lost more than 1 and games less than 5",
    "question_th": "ระบุคะแนนมากที่สุดโดยแพ้มากกว่า 1 เกมและเกมน้อยกว่า 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_en": "Name the sum of drawn with lost more than 1 and games less than 5",
    "question_th": "ตั้งชื่อผลรวมเสมอว่าแพ้มากกว่า 1 และเกมน้อยกว่า 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_en": "Name the least lost with points more than 6 and games less than 5",
    "question_th": "ระบุชื่อแพ้น้อยที่สุดด้วยคะแนนมากกว่า 6 และเกมน้อยกว่า 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_en": "Name the sum of points with games less than 5",
    "question_th": "ตั้งชื่อผลรวมของแต้มที่มีเกมน้อยกว่า 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_en": "What was the location of the bout that lasted 5:00 and led to a 6-2-1 record?",
    "question_th": "ตำแหน่งของการแข่งขันที่กินเวลา 5:00 น. และนำไปสู่สถิติ 6-2-1 คืออะไร?",
    "context": "CREATE TABLE table_name_17 (location VARCHAR, time VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_79 WHERE opponent = \"alexis vila\"",
    "question_en": "What was the record after the bout with Alexis Vila?",
    "question_th": "บันทึกหลังชกกับอเล็กซิส วิลาเป็นอย่างไรบ้าง?",
    "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_en": "Who was a defensive end at California?",
    "question_th": "ใครคือฝ่ายรับที่แคลิฟอร์เนีย?",
    "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_en": "Which players were selected after 2011?",
    "question_th": "ผู้เล่นคนไหนที่ได้รับเลือกหลังปี 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_en": "Who was a linebacker at Tennessee?",
    "question_th": "ใครคือทีมบร็องโกที่เทนเนสซี?",
    "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_en": "Which Wins is the lowest one that has Events larger than 30?",
    "question_th": "การชนะใดคือรางวัลต่ำสุดที่มีเหตุการณ์มากกว่า 30",
    "context": "CREATE TABLE table_name_70 (wins INTEGER, events INTEGER)"
  },
  {
    "answer": "SELECT date FROM table_name_67 WHERE results¹ = \"3:0\"",
    "question_en": "What day were the results 3:0?",
    "question_th": "ผล 3:0 ออกวันไหน?",
    "context": "CREATE TABLE table_name_67 (date VARCHAR, results¹ VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_32 WHERE date = \"april 29\"",
    "question_en": "What city played on april 29?",
    "question_th": "เมืองใดเล่นในวันที่ 29 เมษายน?",
    "context": "CREATE TABLE table_name_32 (city VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_99 WHERE opponent = \"england\"",
    "question_en": "Which city has an opponent of England?",
    "question_th": "เมืองใดมีคู่แข่งของอังกฤษ?",
    "context": "CREATE TABLE table_name_99 (city VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_8 WHERE opponent = \"austria\"",
    "question_en": "What day was the opponent Austria?",
    "question_th": "คู่ต่อสู้ออสเตรียคือวันไหน?",
    "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_en": "Name the most population for seychelles and rank less than 13",
    "question_th": "ตั้งชื่อประชากรมากที่สุดสำหรับเซเชลส์และอันดับน้อยกว่า 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_en": "What is the frequency of the station owned by the Canadian Broadcasting Corporation and branded as CBC Radio One?",
    "question_th": "ความถี่ของสถานีที่ Canadian Broadcasting Corporation เป็นเจ้าของและมีตราสินค้าว่า 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_en": "What is the frequency of the soft adult contemporary stations?",
    "question_th": "ความถี่ของสถานีร่วมสมัยสำหรับผู้ใหญ่แบบอ่อนคือเท่าใด?",
    "context": "CREATE TABLE table_name_14 (frequency VARCHAR, format VARCHAR)"
  },
  {
    "answer": "SELECT owner FROM table_name_65 WHERE frequency = \"fm 92.1\"",
    "question_en": "Who owns the station with the frequency FM 92.1?",
    "question_th": "ใครเป็นเจ้าของสถานีที่มีความถี่ 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_en": "What is the branding of the FM 97.7 station owned by the Canadian Broadcasting Corporation?",
    "question_th": "แบรนด์ของสถานี FM 97.7 ที่เป็นของ 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_en": "Which F/Laps has Podiums of 1, and a Season of 2000, and a Final Placing of nc?",
    "question_th": "F/Laps ใดมีโพเดียมที่ 1 และฤดูกาลปี 2000 และอันดับสุดท้ายของ 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_en": "Which Series has Poles of 0, and Races of 17?",
    "question_th": "ซีรีส์ใดที่มีโพลเป็น 0 และมีเรซ 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_en": "Which Team Name has Poles of 0, and a Final Placing of 29th?",
    "question_th": "ชื่อทีมใดมีโพลเป็น 0 และได้อันดับที่ 29",
    "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_en": "Which Series has a Final Placing of 9th, and Podiums of 2?",
    "question_th": "ซีรีส์ใดได้อันดับที่ 9 สุดท้ายและได้ขึ้นโพเดียมที่ 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_en": "Which Series has a Team Name of sunred engineering?",
    "question_th": "ซีรีส์ใดมีชื่อทีม 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_en": "Which Points have Wins of 0, and a Final Placing of 21st?",
    "question_th": "แต้มใดมีชัยชนะเป็น 0 และได้อันดับที่ 21?",
    "context": "CREATE TABLE table_name_38 (points VARCHAR, wins VARCHAR, final_placing VARCHAR)"
  },
  {
    "answer": "SELECT bronze FROM table_name_46 WHERE place = \"lahti\"",
    "question_en": "Name the bronze for lahti",
    "question_th": "ตั้งชื่อทองสัมฤทธิ์สำหรับลาตี",
    "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_en": "Which Rank has Goals larger than 10, and a Scorer of choi sang-kuk?",
    "question_th": "อันดับใดที่มีประตูมากกว่า 10 และผู้ทำประตูของชอย ซังกุก?",
    "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_en": "Which Rank has a Scorer of lee sang-cheol?",
    "question_th": "อันดับใดที่มีผู้ทำประตูของลีซังชอล?",
    "context": "CREATE TABLE table_name_69 (rank VARCHAR, scorer VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_name_40 WHERE rank = \"5\"",
    "question_en": "Which Club has a Rank of 5?",
    "question_th": "สโมสรใดมีอันดับ 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_en": "How many original bills amendments cosponsored lower than 64,with the bill support withdrawn lower than 0?",
    "question_th": "มีการแก้ไขร่างกฎหมายเดิมจำนวนเท่าใดที่สนับสนุนต่ำกว่า 64 โดยที่การสนับสนุนการเรียกเก็บเงินถอนออกต่ำกว่า 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_en": "Who is the democratic incumbent that was re-elected?",
    "question_th": "ใครคือผู้ดำรงตำแหน่งในระบอบประชาธิปไตยที่ได้รับเลือกใหม่?",
    "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_en": "What year was republican, re-elected incumbent John all barham elected?",
    "question_th": "จอห์น บาร์แฮมทุกคนได้รับเลือกให้เป็นพรรครีพับลิกัน ได้รับเลือกใหม่อีกครั้ง?",
    "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_en": "What day in october was game number 4 with under 3 points?",
    "question_th": "วันไหนในเดือนตุลาคมเป็นเกมที่ 4 ที่มีคะแนนต่ำกว่า 3 แต้ม?",
    "context": "CREATE TABLE table_name_18 (october VARCHAR, game VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_27 WHERE pick > 181",
    "question_en": "Which school was the drafted player from in a pick larger than 181?",
    "question_th": "โรงเรียนใดเป็นผู้เล่นที่ถูกเกณฑ์ทหารจากตัวเลือกที่มีขนาดใหญ่กว่า 181",
    "context": "CREATE TABLE table_name_27 (school VARCHAR, pick INTEGER)"
  },
  {
    "answer": "SELECT points_against FROM table_name_61 WHERE lost = \"17\"",
    "question_en": "Which points against has 17 as the lost?",
    "question_th": "แต้มไหนมี 17 ถือว่าแพ้?",
    "context": "CREATE TABLE table_name_61 (points_against VARCHAR, lost VARCHAR)"
  },
  {
    "answer": "SELECT lost FROM table_name_78 WHERE points_for = \"528\"",
    "question_en": "What lost has 528 as the points?",
    "question_th": "แพ้อะไรมี 528 แต้ม?",
    "context": "CREATE TABLE table_name_78 (lost VARCHAR, points_for VARCHAR)"
  },
  {
    "answer": "SELECT drawn FROM table_name_31 WHERE try_bonus = \"16\"",
    "question_en": "What is the drawn that has 16 as the trys bonus?",
    "question_th": "การจับรางวัลที่มี 16 เป็นโบนัสลองคืออะไร?",
    "context": "CREATE TABLE table_name_31 (drawn VARCHAR, try_bonus VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_name_64 WHERE tries_for = \"tries for\"",
    "question_en": "What club has tries for in the category tries for?",
    "question_th": "สโมสรใดพยายามทำในประเภทพยายามเพื่อ?",
    "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_en": "What is the drawn that has 22 for played, and 96 for points?",
    "question_th": "การจับสลากที่มี 22 สำหรับการเล่น และ 96 สำหรับแต้มคืออะไร?",
    "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_en": "What points have 1 for drawn, and 16 as a try bonus?",
    "question_th": "แต้มใดมี 1 แต้มสำหรับการจับ และ 16 แต้มเป็นโบนัสลอง?",
    "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_en": "What is team 1 in group h?",
    "question_th": "ทีม 1 ในกลุ่ม 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_en": "What was the score on 15 march 2006?",
    "question_th": "คะแนนเมื่อวันที่ 15 มีนาคม 2549 เป็นเท่าใด",
    "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_en": "Which winning team has a winning pitcher of Chris Young and was played in Arlington?",
    "question_th": "ทีมใดที่ชนะมีเหยือกที่ชนะของ Chris Young และเล่นที่ 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_en": "What winning team has a losing pitcher of Juan Dominguez?",
    "question_th": "ทีมใดที่ชนะมีเหยือกที่แพ้ของ 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_en": "Who was the opponent on August 14?",
    "question_th": "คู่ต่อสู้ในวันที่ 14 สิงหาคมคือใคร?",
    "context": "CREATE TABLE table_name_91 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_7 WHERE record = \"79-49\"",
    "question_en": "Which loss had a record of 79-49?",
    "question_th": "แพ้รายการไหนมีสถิติ 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_en": "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?",
    "question_th": "สถานะผู้วิจารณ์รายการโทรทัศน์คู่รอบรองชนะเลิศของปีคืออะไร โดยที่ Pierre Tchernia เป็นผู้วิจารณ์รายการโทรทัศน์คนสุดท้ายและโฆษกที่ไม่รู้จัก",
    "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_en": "What is the semi-final television commentator status in 1962 with an unknown spokesperson?",
    "question_th": "สถานะผู้ประกาศข่าวโทรทัศน์รอบรองชนะเลิศในปี 2505 โดยไม่ทราบชื่อโฆษกเป็นอย่างไร",
    "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_en": "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?",
    "question_th": "สถานะผู้บรรยายโทรทัศน์คนสุดท้ายคนสุดท้ายหลังปี 1959 คืออะไร เมื่อ Dave เป็นผู้บรรยายโทรทัศน์คู่คนสุดท้ายคนสุดท้าย และ Marie Myriam เป็นโฆษก",
    "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_en": "What is the grand final dual television commentator status of the year when Amaury Vassili was the spokesperson?",
    "question_th": "สถานะผู้วิจารณ์รายการโทรทัศน์คู่สุดท้ายที่ยิ่งใหญ่แห่งปีเมื่อ Amaury Vassili เป็นโฆษกคืออะไร?",
    "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_en": "What state has lincoln, de as the hometown?",
    "question_th": "รัฐใดมีลินคอล์นเป็นบ้านเกิด?",
    "context": "CREATE TABLE table_name_73 (state VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT ship FROM table_name_89 WHERE hull_no = \"aor-6\"",
    "question_en": "Name the ship with hull number of aor-6",
    "question_th": "ตั้งชื่อเรือด้วยหมายเลขลำเรือ 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–1996\"",
    "question_en": "Name the hull number of Commissioned– Decommissioned of 1973–1996",
    "question_th": "ตั้งชื่อหมายเลขลำเรือของชั้นสัญญาบัตร-ปลดประจำการ พ.ศ.2516-2539",
    "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_en": "Name the commissioned-decommissioned for oakland and NVR page of aor-1",
    "question_th": "ตั้งชื่อเพจที่รับหน้าที่-เลิกใช้งานแล้วสำหรับโอ๊คแลนด์และ NVR ของ 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_en": "Name the home port for kansas city",
    "question_th": "ตั้งชื่อท่าเรือหลักสำหรับเมืองแคนซัส",
    "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_en": "Name the commissioned-decommissioned for NVR page of aor-7",
    "question_th": "ตั้งชื่อเพจรับหน้าที่-ปลดประจำการสำหรับ NVR ของ อ.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_en": "Name the ship for oakland home port and NVR page of aor-3",
    "question_th": "ตั้งชื่อเรือสำหรับท่าเรือบ้านโอ๊คแลนด์และหน้า NVR ของ 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_en": "What is the name of the location and ship type in the Gulf of Mexico that entered service in 1999?",
    "question_th": "ชื่อสถานที่และประเภทเรือในอ่าวเม็กซิโกที่เข้าประจำการในปี พ.ศ. 2542 คืออะไร?",
    "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_en": "What was the water depth that entered service in 2001 named Cajun Express?",
    "question_th": "ระดับความลึกของน้ำที่เข้าใช้บริการในปี 2544 ชื่อ 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_en": "What was the water depth in the Gulf of Mexico named Discoverer Clear Leader?",
    "question_th": "ระดับความลึกของน้ำในอ่าวเม็กซิโกชื่อ 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_en": "What is the name of a location in Nigeria?",
    "question_th": "สถานที่ในไนจีเรียชื่ออะไร?",
    "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_en": "What location entered service in 1999 and had a customer of Anadarko?",
    "question_th": "สถานที่ใดที่เข้าให้บริการในปี 1999 และมีลูกค้าของ 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_en": "What was the Score on January 30?",
    "question_th": "คะแนนในวันที่ 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_en": "Who were the Visitor of the Toronto Maple Leafs Home game on December 22?",
    "question_th": "ใครคือผู้มาเยือนเกม Toronto Maple Leafs Home ในวันที่ 22 ธันวาคม?",
    "context": "CREATE TABLE table_name_11 (visitor VARCHAR, home VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_62 WHERE record = \"9–6–4\"",
    "question_en": "On what Date was the Record 9–6–4?",
    "question_th": "บันทึก 9–6–4 เป็นวันที่ใด",
    "context": "CREATE TABLE table_name_62 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_18 WHERE date = \"march 1\"",
    "question_en": "What was the Score on March 1?",
    "question_th": "คะแนนในวันที่ 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_en": "What is the primary conference that was founded before 1866 and has an affiliation of private/catholic?",
    "question_th": "การประชุมใหญ่ครั้งแรกที่ก่อตั้งขึ้นก่อนปี พ.ศ. 2409 และมีความเกี่ยวข้องกับเอกชน/คาทอลิกคืออะไร?",
    "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_en": "What is the total enrollment for an affiliation of public, and was founded before 1866?",
    "question_th": "จำนวนการลงทะเบียนทั้งหมดสำหรับสังกัดสาธารณะและก่อตั้งขึ้นก่อนปี พ.ศ. 2409 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_43 (enrollment VARCHAR, affiliation VARCHAR, founded VARCHAR)"
  },
  {
    "answer": "SELECT affiliation FROM table_name_37 WHERE location = \"towson, md\"",
    "question_en": "What is the affiliation for towson, md?",
    "question_th": "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_en": "What is the total enrollment for a private/catholic affiliation and founded after 1842?",
    "question_th": "จำนวนการลงทะเบียนทั้งหมดสำหรับสังกัดเอกชน/คาทอลิกและก่อตั้งหลังปี 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_en": "What is the number founded for the nickname mountain hawks?",
    "question_th": "ตัวเลขที่ตั้งขึ้นสำหรับชื่อเล่นว่าเหยี่ยวภูเขาคืออะไร?",
    "context": "CREATE TABLE table_name_68 (founded VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_59 WHERE host_city = \"kėdainiai\"",
    "question_en": "What is the score of the season in the host city kėdainiai?",
    "question_th": "คะแนนของฤดูกาลในเมืองเจ้าภาพ kėdainiai คืออะไร?",
    "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_en": "Who was the winner of the season before 2010 with Lietuvos Rytas as a finalist?",
    "question_th": "ใครคือผู้ชนะในฤดูกาลก่อนปี 2010 โดยมีลิตูโวส ไรตัสเข้ารอบสุดท้าย?",
    "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_en": "Who was the finalist in the 2010 season in the host city tartu?",
    "question_th": "ใครคือผู้เข้ารอบสุดท้ายในฤดูกาล 2010 ในเมืองเจ้าภาพตาร์ตู?",
    "context": "CREATE TABLE table_name_57 (finalist VARCHAR, host_city VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_42 WHERE season = 2009",
    "question_en": "Who was the winner during the 2009 season?",
    "question_th": "ใครคือผู้ชนะในช่วงฤดูกาล 2009?",
    "context": "CREATE TABLE table_name_42 (winner VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT host_city FROM table_name_47 WHERE season = 2012",
    "question_en": "What is the host city during the 2012 season?",
    "question_th": "เมืองเจ้าภาพในฤดูกาล 2012 คืออะไร?",
    "context": "CREATE TABLE table_name_47 (host_city VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_54 WHERE score = \"4–6, 6–3, 7–6(10)\"",
    "question_en": "what game had a score of 4–6, 6–3, 7–6(10)?",
    "question_th": "เกมใดมีคะแนน 4–6, 6–3, 7–6(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_en": "When did eleonor magdalene of the palatinate-neuburg become duchess?",
    "question_th": "เอเลเนอร์ แม็กดาเลนแห่งพาลาทิเนต-นอยบูร์ก กลายเป็นดัชเชสเมื่อใด",
    "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_en": "Which Marriage has a Became Duchess of 12 december 1666?",
    "question_th": "การแต่งงานใดที่ได้เป็นดัชเชสในวันที่ 12 ธันวาคม ค.ศ. 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_en": "When did the person die who was born on 18 november 1630?",
    "question_th": "ผู้ที่เกิดเมื่อวันที่ 18 พฤศจิกายน พ.ศ. 2173 เสียชีวิตเมื่อใด",
    "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_en": "Which Birth has a Became Duchess of 17 april 1711 husband's ascension?",
    "question_th": "ประสูติใดได้เป็นดัชเชสแห่ง 17 เมษายน พ.ศ. 2254 สามีขึ้นครองราชย์?",
    "context": "CREATE TABLE table_name_65 (birth VARCHAR, became_duchess VARCHAR)"
  },
  {
    "answer": "SELECT spouse FROM table_name_38 WHERE birth = \"30 may 1653\"",
    "question_en": "Which Spouse has a Birth of 30 may 1653?",
    "question_th": "คู่สมรสคนไหนเกิดวันที่ 30 พฤษภาคม 1653?",
    "context": "CREATE TABLE table_name_38 (spouse VARCHAR, birth VARCHAR)"
  },
  {
    "answer": "SELECT death FROM table_name_34 WHERE birth = \"6 january 1655\"",
    "question_en": "When did the person born on 6 january 1655 die?",
    "question_th": "ผู้ที่เกิดวันที่ 6 มกราคม พ.ศ. 2198 เสียชีวิตเมื่อใด",
    "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_en": "Which Club or province has a caps larger than 15 and has Chris Cusiter playing for them?",
    "question_th": "สโมสรหรือจังหวัดใดที่มีแคปมากกว่า 15 และมีคริส คูซิเตอร์ลงเล่นให้กับพวกเขา?",
    "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_en": "What is the date of birth for the player from Ulster and plays at Centre position?",
    "question_th": "วันเกิดของผู้เล่นจาก Ulster และเล่นในตำแหน่งเซ็นเตอร์คือวันที่เท่าไร?",
    "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_en": "What type of disaster is rms atlantic categorized in that was located in Nova Scotia?",
    "question_th": "ภัยพิบัติประเภทใดที่ rms แอตแลนติกจัดอยู่ในประเภทที่ตั้งอยู่ในโนวาสโกเชีย",
    "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_en": "What is the type of disaster that the Arrow Air Flight 1285 categorized in?",
    "question_th": "ภัยพิบัติประเภทใดที่แอร์โรว์แอร์ เที่ยวบิน 1285 จัดอยู่ในประเภทใด",
    "context": "CREATE TABLE table_name_55 (type VARCHAR, disaster VARCHAR)"
  },
  {
    "answer": "SELECT disaster FROM table_name_39 WHERE location = \"ontario\" AND deaths = \"223\"",
    "question_en": "What is the disaster that was located in Ontario with 223 deaths?",
    "question_th": "ภัยพิบัติที่เกิดขึ้นในออนแทรีโอมีผู้เสียชีวิต 223 รายคืออะไร?",
    "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_en": "How many deaths were there during the shipwreck in 1873?",
    "question_th": "มีผู้เสียชีวิตกี่รายระหว่างเหตุเรืออับปางในปี พ.ศ. 2416?",
    "context": "CREATE TABLE table_name_56 (deaths VARCHAR, type VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_49 WHERE date = \"1916\"",
    "question_en": "Where was the disaster located that took place on 1916?",
    "question_th": "ภัยพิบัติที่เกิดขึ้นเมื่อปี พ.ศ. 2459 อยู่ที่ไหน?",
    "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_en": "Which Laps is the highest one that has a Time/Retired of +3.370 secs?",
    "question_th": "รอบใดคือรอบสูงสุดที่มี Time/Retire อยู่ที่ +3.370 วินาที?",
    "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_en": "Which Grid has a Team of rusport, and Laps larger than 221?",
    "question_th": "กริดคนไหนมีทีมที่เก่งกาจและมีรอบมากกว่า 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_en": "What title has a producer of MAQ and Anna as a role?",
    "question_th": "โปรดิวเซอร์ของ MAQ และแอนนามีบทบาทในเรื่องใด",
    "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_en": "How many years was Kay Tagal Kang Hinintay directed by Rory Quintos and produced by Star Cinema?",
    "question_th": "Kay Tagal Kang Hinintay กำกับโดย Rory Quintos และอำนวยการสร้างโดย 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_en": "Which title was directed by Joyce Bernal?",
    "question_th": "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_en": "What song is it that artist morena camilleri does and has more than 38 points",
    "question_th": "เพลงที่ศิลปิน morena camilleri ร้องคือเพลงอะไร และมีคะแนนมากกว่า 38 คะแนน",
    "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_en": "What is the total number of points for ray agius",
    "question_th": "รังสีอาจิอุสมีคะแนนรวมเท่าไร",
    "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_en": "What play did henry s. uber / betty uber (eng) finish in?",
    "question_th": "เฮนรี่เอสเล่นอะไร uber / Betty uber (อังกฤษ) จบใน?",
    "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_en": "When Baltimore County, Howard are represented, what's the first elected when the committee is environmental matters (vice-chair)?",
    "question_th": "เมื่อโฮเวิร์ดเป็นตัวแทนของเทศมณฑลบัลติมอร์ อะไรคือสิ่งที่ได้รับเลือกเป็นคนแรกเมื่อคณะกรรมการดูแลเรื่องสิ่งแวดล้อม (รองประธาน)",
    "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_en": "What party is the delegate of Turner, Frank S. Frank S. Turner of Howard County?",
    "question_th": "แฟรงก์ เอส. แฟรงก์ เอส. เทิร์นเนอร์ ผู้แทนของเทิร์นเนอร์จากโฮเวิร์ดเคาน์ตี้คือพรรคใด",
    "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_en": "What is the damage of storm three?",
    "question_th": "ความเสียหายของพายุสามคืออะไร?",
    "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_en": "Which Round is the lowest one that has a Circuit of donington?",
    "question_th": "รอบไหนต่ำที่สุดที่มี 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_en": "Which 250cc winner has a Round larger than 6, and a Date of 26 july?",
    "question_th": "ผู้ชนะ 250cc คนใดที่มีรอบมากกว่า 6 และวันที่ 26 กรกฎาคม",
    "context": "CREATE TABLE table_name_5 (round VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(week) FROM table_name_30 WHERE attendance = 48 OFFSET 510",
    "question_en": "Attendance of 48,510 had what highest week?",
    "question_th": "ผู้เข้าร่วม 48,510 คนมีสัปดาห์สูงสุดอะไร?",
    "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_en": "Opponent of at san francisco 49ers had what lowest week?",
    "question_th": "ฝ่ายตรงข้ามที่ซานฟรานซิสโก 49ERS มีสัปดาห์ต่ำสุดเท่าใด?",
    "context": "CREATE TABLE table_name_43 (week INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_71 WHERE opponent = \"minnesota vikings\"",
    "question_en": "On what Date is the Minnesota Vikings the Opponent?",
    "question_th": "Minnesota Vikings เป็นฝ่ายตรงข้ามในวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_71 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_3 WHERE week = 5",
    "question_en": "What is the Date of Week 5?",
    "question_th": "สัปดาห์ที่ 5 คือวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_3 (date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_47 WHERE week = 2",
    "question_en": "What is the Date of Week 2?",
    "question_th": "สัปดาห์ที่ 2 คือวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_47 (date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_18 WHERE loss = \"lary (10-12)\"",
    "question_en": "What was the score when the game has a loss of Lary (10-12)?",
    "question_th": "เมื่อเกมแพ้ ลารี่ (10-12) สกอร์เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_18 (score VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_37 WHERE competition = \"friendly\"",
    "question_en": "What is the result of the friendly match?",
    "question_th": "ผลการแข่งขันนัดกระชับมิตรเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_37 (result VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_76 WHERE date = \"june 4, 2008\"",
    "question_en": "What is the score of the match on June 4, 2008?",
    "question_th": "ผลการแข่งขันวันที่ 4 มิถุนายน 2551 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_76 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_name_17 WHERE length = \"3:50\"",
    "question_en": "Which Year is the lowest one that has a Length of 3:50?",
    "question_th": "ปีใดต่ำสุดที่มีความยาว 3:50?",
    "context": "CREATE TABLE table_name_17 (year INTEGER, length VARCHAR)"
  },
  {
    "answer": "SELECT length FROM table_name_13 WHERE year = 2000",
    "question_en": "Which Length has a Year of 2000?",
    "question_th": "ความยาวใดมีปี 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_en": "In what place is the artist Midnight Band with a draw larger than 2 and less than 139 points.",
    "question_th": "ศิลปิน Midnight Band อยู่ตำแหน่งไหนมากกว่า 2 และน้อยกว่า 139 คะแนน",
    "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_en": "what player matched up with 9",
    "question_th": "ผู้เล่นคนไหนตรงกับเลข 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_en": "What is the 2nd leg of the Internacional Team 1?",
    "question_th": "เลกที่ 2 ของทีมอินเตอร์ 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_en": "Which City has a Country of spain, and a Stadium of palacio de deportes de santander?",
    "question_th": "เมืองใดมีประเทศสเปนและมีสนามกีฬา 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_en": "Which Capacity is the lowest one that has a Rank smaller than 15, and a City of belgrade?",
    "question_th": "ความจุใดคือความจุต่ำสุดที่มีอันดับน้อยกว่า 15 และเมืองเบลเกรด?",
    "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_en": "Which Capacity is the lowest one that has a City of brisbane, and a Rank smaller than 1?",
    "question_th": "ความจุใดคือความจุต่ำสุดที่มีเมืองบริสเบน และมีอันดับน้อยกว่า 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_en": "What are the total points that had 68 match points, 9 bonus points and 30 games?",
    "question_th": "แต้มรวมที่มี 68 แต้มโบนัส 9 แต้มโบนัสและ 30 เกมคือเท่าไร?",
    "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_en": "What's the shortest length from north klondike highway that has a length less than 326?",
    "question_th": "ความยาวที่สั้นที่สุดจากทางหลวงนอร์ธโคลนไดค์ที่มีความยาวน้อยกว่า 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_en": "what team had a score of 2-1",
    "question_th": "ทีมไหนมีสกอร์ 2-1",
    "context": "CREATE TABLE table_name_92 (opponent VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_1 WHERE date = \"may 11\"",
    "question_en": "what team played on may 11",
    "question_th": "ทีมใดเล่นในวันที่ 11 พฤษภาคม",
    "context": "CREATE TABLE table_name_1 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT away FROM table_name_76 WHERE club = \"sevilla\"",
    "question_en": "what place has the club of sevilla",
    "question_th": "สโมสรเซบีญ่ามีที่ไหน",
    "context": "CREATE TABLE table_name_76 (away VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT new_conference FROM table_name_64 WHERE location = \"greentown\"",
    "question_en": "Which new conference is located in Greentown?",
    "question_th": "การประชุมใหม่ใดที่ตั้งอยู่ในกรีนทาวน์",
    "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_en": "What is the most current year with a previous conference of Mid-Indiana in Converse?",
    "question_th": "ปีล่าสุดที่มีการประชุม Mid-Indiana ใน 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_en": "What year did Culver leave?",
    "question_th": "คัลเวอร์จากไปปีไหน?",
    "context": "CREATE TABLE table_name_71 (year_left INTEGER, location VARCHAR)"
  },
  {
    "answer": "SELECT mascot FROM table_name_41 WHERE _number___county = \"34 howard\"",
    "question_en": "What is the mascot with a #/County of 34 Howard?",
    "question_th": "ตัวนำโชคที่มี #/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¹ = \"2:3\"",
    "question_en": "What day was a friendly game held that had a score of 2:3?",
    "question_th": "เกมกระชับมิตรที่จัดขึ้นวันไหนด้วยสกอร์ 2:3?",
    "context": "CREATE TABLE table_name_87 (date VARCHAR, type_of_game VARCHAR, results¹ VARCHAR)"
  },
  {
    "answer": "SELECT type_of_game FROM table_name_57 WHERE date = \"december 22\"",
    "question_en": "What type of game was held on December 22?",
    "question_th": "เกมประเภทใดที่จัดขึ้นในวันที่ 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_en": "what game had a doubles round in 1979",
    "question_th": "เกมใดที่มีรอบคู่ในปี 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_en": "Where were less than 72 goals made and more than 40 assists made?",
    "question_th": "ตรงไหนที่ทำได้น้อยกว่า 72 ประตูและแอสซิสต์มากกว่า 40 ครั้ง?",
    "context": "CREATE TABLE table_name_74 (venue VARCHAR, goals VARCHAR, assists VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_58 WHERE opponent = \"pohang steelers\"",
    "question_en": "Which opponent plays against the Pohang Steelers?",
    "question_th": "คู่ต่อสู้คนไหนที่จะเจอกับ โปฮัง สตีลเลอร์ส?",
    "context": "CREATE TABLE table_name_58 (name VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_19 WHERE assists > 40",
    "question_en": "What competition had more than 40 assists?",
    "question_th": "รายการไหนมีมากกว่า 40 แอสซิสต์?",
    "context": "CREATE TABLE table_name_19 (competition VARCHAR, assists INTEGER)"
  },
  {
    "answer": "SELECT nation FROM table_name_22 WHERE places = 122.5",
    "question_en": "What Nation Placed 122.5?",
    "question_th": "ประเทศใดวาง 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_en": "What is the Places amount of the United States Ranking 8?",
    "question_th": "จำนวนสถานที่ของอันดับ 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_en": "What is the average episode number where jimmy mulville was the 4th performer?",
    "question_th": "หมายเลขตอนเฉลี่ยที่จิมมี่ มัลวิลล์เป็นนักแสดงคนที่ 4 คือเท่าใด",
    "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_en": "What is the total number of episodes where hugh laurie was the 3rd performer?",
    "question_th": "จำนวนตอนทั้งหมดที่มีฮิวจ์ ลอรีเป็นนักแสดงคนที่ 3 เป็นจำนวนเท่าใด",
    "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_en": "What is the lowest episode number where john bird was the 4th performer?",
    "question_th": "หมายเลขตอนต่ำสุดที่ john bird เป็นนักแสดงคนที่ 4 คือข้อใด",
    "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_en": "Who was the 3rd performer when Rory Bremner was the 4th performer?",
    "question_th": "ใครคือนักแสดงคนที่ 3 เมื่อ Rory Bremner เป็นนักแสดงคนที่ 4",
    "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_en": "What time did the game featuring the Detroit Lions at Three Rivers Stadium occur?",
    "question_th": "เกมที่มีทีม Detroit Lions ที่สนามกีฬา Three Rivers เกิดขึ้นกี่โมง?",
    "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_en": "What is the highest number of successful launches associated with over 1 launch and under 0 fails?",
    "question_th": "จำนวนการเปิดตัวที่ประสบความสำเร็จสูงสุดที่เกี่ยวข้องกับการเปิดตัวมากกว่า 1 ครั้งและความล้มเหลวต่ำกว่า 0 ครั้งคือเท่าใด",
    "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_en": "What kind of locomotive is Winston Churchill?",
    "question_th": "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_en": "How many draws were there when there were points less than 23, 6 losses, and more than 21 against?",
    "question_th": "เสมอกันกี่แต้มเมื่อมีแต้มน้อยกว่า 23 แพ้ 6 และเสียมากกว่า 21 แต้ม?",
    "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_en": "What is the smallest amount of draws when the position is less than 7 and the against is 19?",
    "question_th": "จำนวนการเสมอที่น้อยที่สุดคือเท่าใดเมื่อตำแหน่งน้อยกว่า 7 และฝ่ายตรงข้ามคือ 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_en": "What is the highest amount of plays for fluminense?",
    "question_th": "จำนวนการเล่นสูงสุดสำหรับฟลูมิเนนเซคือเท่าไร?",
    "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_en": "What is the least amount of points when there were less than 4 losses and less than 16 against?",
    "question_th": "คือจำนวนคะแนนที่น้อยที่สุดเมื่อมีการสูญเสียน้อยกว่า 4 ครั้งและน้อยกว่า 16 ต่อคืออะไร?",
    "context": "CREATE TABLE table_name_43 (points INTEGER, lost VARCHAR, against VARCHAR)"
  },
  {
    "answer": "SELECT developer FROM table_name_97 WHERE publisher = \"rockstar games\"",
    "question_en": "Who does Rockstar Games use as a developer?",
    "question_th": "Rockstar Games ใช้ใครเป็นผู้พัฒนา?",
    "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_en": "When Did Microsoft Game Studios release Amped: Freestyle Snowboarding?",
    "question_th": "Microsoft Game Studios เปิดตัว 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_en": "Which Score has a Home of quebec nordiques, and a Visitor of vancouver blazers on february 28?",
    "question_th": "Score ใดมีบ้านของชาวควิเบกนอร์ดิกและผู้มาเยือนเสื้อเบลเซอร์แวนคูเวอร์ในวันที่ 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–9–1\"",
    "question_en": "When has a Visitor of new england whalers, and a Record of 9–9–1? Question 2",
    "question_th": "เมื่อใดจะมีผู้มาเยือนปลาวาฬนิวอิงแลนด์และมีสถิติ 9–9–1 คำถามที่ 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–4\" AND record = \"8–8–1\"",
    "question_en": "Which Home has a Visitor of quebec nordiques, and a Score of 3–4, and a Record of 8–8–1?",
    "question_th": "บ้านไหนมีผู้มาเยือนชาวควิเบกนอร์ดิก และคะแนน 3–4 และสถิติ 8–8–1",
    "context": "CREATE TABLE table_name_62 (home VARCHAR, record VARCHAR, visitor VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_16 WHERE record = \"31–28–3\"",
    "question_en": "WHich Score has a Record of 31–28–3?",
    "question_th": "คะแนนใดมีสถิติ 31–28–3",
    "context": "CREATE TABLE table_name_16 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_94 WHERE score = \"4–5\" AND record = \"21–21–3\"",
    "question_en": "When has Score of 4–5, and a Record of 21–21–3?",
    "question_th": "เมื่อใดที่มีคะแนน 4–5 และสถิติ 21–21–3",
    "context": "CREATE TABLE table_name_94 (date VARCHAR, score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_69 WHERE record = \"24–23–3\"",
    "question_en": "What is the Score of a Record 24–23–3?",
    "question_th": "คะแนนของสถิติ 24–23–3 คืออะไร?",
    "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_en": "During which games did Tunisia win gold in the men's 5000 m?",
    "question_th": "ตูนิเซียคว้าเหรียญทองในการแข่งขันวิ่ง 5,000 ม. ชายในเกมใดบ้างในระหว่างเกมใด",
    "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_en": "What medal was won in the men's light welterweight event at the 1996 Atlanta games?",
    "question_th": "เหรียญอะไรที่ได้รับจากการแข่งขันรุ่นไลต์เวลเตอร์เวตชายในเกมที่แอตแลนตาปี 1996",
    "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_en": "At which games did Tunisia win a bronze in the men's 1500 m freestyle?",
    "question_th": "ตูนิเซียคว้าเหรียญทองแดงในการแข่งขันฟรีสไตล์ชาย 1,500 ม. ในเกมใดบ้าง",
    "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_en": "What medal was won in the men's 5000 m event?",
    "question_th": "วิ่ง 5,000 ม. ชาย ได้เหรียญอะไร",
    "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_en": "What is the draw with less than 107 points by the artist Jan Johansen?",
    "question_th": "แจน โยฮันเซ่น ศิลปิน เสมอน้อยกว่า 107 แต้ม คืออะไร?",
    "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_en": "In what Year did the Norton Team have 0 Points and 350cc Class?",
    "question_th": "ทีม Norton มี 0 คะแนนและคลาส 350cc ในปีใด",
    "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_en": "What is the Wins before 1960 with less than 2 Points?",
    "question_th": "ชัยชนะก่อนปี 1960 โดยมีคะแนนน้อยกว่า 2 แต้มคืออะไร?",
    "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_en": "What was the earliest Year the Linto Team had less than 15 Points with more than 0 Wins?",
    "question_th": "ปีแรกสุดที่ทีม Linto มีคะแนนน้อยกว่า 15 คะแนนและชนะมากกว่า 0 ครั้งคือปีใด",
    "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_en": "What were the points for a team that 414 points against?",
    "question_th": "อะไรคือแต้มของทีมที่มี 414 แต้ม?",
    "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_en": "Who was the player that had drawn 1 and tried for 20?",
    "question_th": "ใครคือผู้เล่นที่เสมอ 1 และพยายาม 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_en": "What were the points for that had a game where there was 678 against?",
    "question_th": "อะไรคือแต้มสำหรับเกมที่มี 678 ต่อ?",
    "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_en": "What were the points against in a game that was played correct as of 2009-05-16?",
    "question_th": "อะไรคือแต้มต่อในเกมที่เล่นได้ถูกต้องเมื่อ 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_en": "What was the tries again llanishen rfc?",
    "question_th": "ความพยายามอีกครั้งคืออะไร 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_en": "What was drawn for llanishen rfc?",
    "question_th": "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_en": "Which District has a Republican of dan mansell?",
    "question_th": "เขตใดมีพรรครีพับลิกันของแดนแมนเซลล์?",
    "context": "CREATE TABLE table_name_25 (district INTEGER, republican VARCHAR)"
  },
  {
    "answer": "SELECT republican FROM table_name_26 WHERE district = 10",
    "question_en": "Which Republican has a District of 10?",
    "question_th": "พรรครีพับลิกันคนใดมีเขต 10",
    "context": "CREATE TABLE table_name_26 (republican VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_name_73 WHERE republican = \"dan mansell\"",
    "question_en": "Which Incumbent has a Republican of dan mansell?",
    "question_th": "ผู้ดำรงตำแหน่งคนใดมีพรรครีพับลิกันของ 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_en": "Which Democratic has a District smaller than 7, and a Republican of dan mansell?",
    "question_th": "พรรคเดโมแครตคนใดมีเขตที่เล็กกว่า 7 และพรรครีพับลิกันของ Dan Mansell",
    "context": "CREATE TABLE table_name_99 (democratic VARCHAR, district VARCHAR, republican VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_7 WHERE score = \"135–134\"",
    "question_en": "Which record has a score of 135–134?",
    "question_th": "บันทึกใดมีคะแนน 135–134",
    "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_en": "Name the position for the player born 2 november 1987",
    "question_th": "ระบุตำแหน่งผู้เล่นที่เกิดวันที่ 2 พฤศจิกายน พ.ศ. 2530",
    "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_en": "Name the club/province for steve borthwick",
    "question_th": "ตั้งชื่อสโมสร/จังหวัดสำหรับ สตีฟ บอร์ธวิค",
    "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_en": "What is the largest ration with an ordinary value of 84 zolotnik?",
    "question_th": "ปันส่วนที่ใหญ่ที่สุดโดยมีมูลค่าปกติ 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_en": "What unit has an Avoirdupois value of 57.602 gr.?",
    "question_th": "หน่วยใดมีค่าอาวัวร์ดูปัวส์ 57.602 กรัม?",
    "context": "CREATE TABLE table_name_9 (unit VARCHAR, avoirdupois_value VARCHAR)"
  },
  {
    "answer": "SELECT translation FROM table_name_10 WHERE unit = \"uncia\"",
    "question_en": "Which translation had a unit of Uncia?",
    "question_th": "คำแปลใดมีหน่วยของ 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_en": "What ordinary value has a metric value of 29.861 g?",
    "question_th": "ค่าสามัญใดมีค่าเมตริกเท่ากับ 29.861 กรัม",
    "context": "CREATE TABLE table_name_56 (ordinary_value VARCHAR, metric_value VARCHAR)"
  },
  {
    "answer": "SELECT ordinary_value FROM table_name_64 WHERE russian = \"унция\"",
    "question_en": "Which ordinary value has a Russian value of унция?",
    "question_th": "ค่าสามัญใดมีค่ารัสเซียเป็น унция?",
    "context": "CREATE TABLE table_name_64 (ordinary_value VARCHAR, russian VARCHAR)"
  },
  {
    "answer": "SELECT avoirdupois_value FROM table_name_76 WHERE translation = \"grain\"",
    "question_en": "Which Avoirdupois value is translated to grain?",
    "question_th": "ค่า Avoirdupois ใดที่แปลเป็นเกรน?",
    "context": "CREATE TABLE table_name_76 (avoirdupois_value VARCHAR, translation VARCHAR)"
  },
  {
    "answer": "SELECT turns FROM table_name_35 WHERE city = \"san antonio\"",
    "question_en": "What is the number of turns for the City of san antonio?",
    "question_th": "เมืองซานอันโตนิโอมีจำนวนรอบกี่รอบ?",
    "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_en": "What is the State with the imsa gt as the Major Series and a track in new orleans?",
    "question_th": "รัฐที่มี imsa gt เป็น Major Series และสนามใน 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_en": "Where is the track located with 18 turns?",
    "question_th": "ลู่วิ่งมี 18 รอบอยู่ที่ไหน?",
    "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_en": "What is the State with the trans-am Major Series in Grand Rapids?",
    "question_th": "รัฐที่มี Trans-am Major Series ใน 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_en": "Where is the track located that opened in 1992?",
    "question_th": "แทร็กที่เปิดในปี 1992 อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_34 (track VARCHAR, opened VARCHAR)"
  },
  {
    "answer": "SELECT opened FROM table_name_84 WHERE major_series = \"nascar\"",
    "question_en": "What shows for opened for the Nascar Major Series?",
    "question_th": "รายการใดบ้างที่เปิดให้เข้าร่วม 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_en": "What is the lowest number of FA cups associated with 0 malaysia cups?",
    "question_th": "FA Cups จำนวนน้อยที่สุดที่เกี่ยวข้องกับ 0 Malaysia Cup คือเท่าไร?",
    "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_en": "How many league cups for m patrick maria with 0 total?",
    "question_th": "เอ็ม แพทริค มาเรีย ได้กี่ลีกคัพ โดยทั้งหมด 0 นัด?",
    "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_en": "What is the highest number of Malaysia Cups for a player with over 0 leagues and under 0 FA cups?",
    "question_th": "จำนวนถ้วยมาเลเซียสูงสุดสำหรับผู้เล่นที่มีลีกมากกว่า 0 ลีกและต่ำกว่า 0 เอฟเอคัพคือเท่าใด",
    "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_en": "What is the tournament on July 29 hosted by SK Brann?",
    "question_th": "การแข่งขันวันที่ 29 กรกฎาคมจัดโดย 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_en": "Who is the visitor of the match on July 29?",
    "question_th": "ใครคือผู้มาเยือนในเกมวันที่ 29 ก.ค.?",
    "context": "CREATE TABLE table_name_13 (visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_72 WHERE opponent = \"phoenix suns\"",
    "question_en": "What is the game that has the phoenix suns as the opponent played against?",
    "question_th": "เกมที่มีดวงอาทิตย์ฟีนิกซ์เป็นคู่ต่อสู้เล่นคืออะไร?",
    "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_en": "What is the attendance of the game on 2007-04-07 with the Warriors as the visitor team?",
    "question_th": "การเข้าร่วมงานของเกมในวันที่ 2007-04-07 โดยมี Warriors เป็นทีมเยือนเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_4 (attendance VARCHAR, visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_14 WHERE record = \"13-15\"",
    "question_en": "What day is their record 13-15?",
    "question_th": "บันทึกของพวกเขาคือวันที่ 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_en": "Who did they play when dickey (0-1) recorded the loss?",
    "question_th": "พวกเขาเล่นเป็นใครเมื่อดิกกี้ (0-1) บันทึกการแพ้?",
    "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_en": "What is the result of the game of heinz field with a record of 2-5?",
    "question_th": "ผลการแข่งขันของไฮนซ์ฟิลด์ด้วยสถิติ 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_en": "What opponent has a record of 6-9?",
    "question_th": "คู่ต่อสู้คนไหนมีสถิติ 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_en": "What is the week with a record of 2-1?",
    "question_th": "สัปดาห์ไหนที่มีสถิติ 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_en": "What City of license has a Frequency MHz smaller than 95.9 with w223au as the call sign?",
    "question_th": "เมืองที่ได้รับใบอนุญาตใดมีความถี่ MHz น้อยกว่า 95.9 โดยมี w223au เป็นสัญญาณเรียกขาน",
    "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_en": "What is the Call sign for the ERP W 19?",
    "question_th": "สัญญาณเรียกขานสำหรับ 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_en": "What FCC info is listed for the ERP W of 2?",
    "question_th": "ข้อมูล FCC ใดบ้างที่แสดงอยู่ใน ERP W ของ 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_en": "What Call sign shows an ERP W of 80?",
    "question_th": "สัญญาณเรียกขานใดที่แสดง ERP W เท่ากับ 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_en": "What is the Class for the ERP W of more than 2 and the call sign of w223au?",
    "question_th": "Class สำหรับ ERP W มากกว่า 2 และสัญญาณเรียกของ 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_en": "what team lost on july 30",
    "question_th": "ทีมไหนแพ้เมื่อวันที่ 30 กรกฎาคม",
    "context": "CREATE TABLE table_name_23 (loss VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT sport FROM table_name_21 WHERE date = \"february 25, 2011\"",
    "question_en": "What sport was played on February 25, 2011?",
    "question_th": "เล่นกีฬาอะไรในวันที่ 25 กุมภาพันธ์ 2554?",
    "context": "CREATE TABLE table_name_21 (sport VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT site FROM table_name_55 WHERE date = \"september 10, 2010\"",
    "question_en": "Where was the sport played on September 10, 2010?",
    "question_th": "เล่นกีฬาวันที่ 10 กันยายน 2553 ที่ไหน?",
    "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_en": "What type of surface was played on when julie halard-decugis was the partner on October 8, 2000?",
    "question_th": "จูลี ฮาลาร์ด-เดคูกิสเล่นบนพื้นผิวประเภทใดเมื่อวันที่ 8 ตุลาคม พ.ศ. 2543",
    "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_en": "How many Played has a % Win of 50.00%, and Losses of 1, and Wins smaller than 1?",
    "question_th": "มีกี่คนที่เล่นแล้วมี % ชนะ 50.00% และแพ้ 1 และชนะน้อยกว่า 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_en": "WHAT kind of No Result has Wins smaller than 2, and Losses larger than 1?",
    "question_th": "ไม่มีผลลัพธ์ประเภทใดที่ชนะน้อยกว่า 2 และแพ้มากกว่า 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_en": "How many Played that has Losses of 6, and Wins larger than 33?",
    "question_th": "มีผู้เล่นกี่คนที่แพ้ 6 และชนะมากกว่า 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_en": "What  kind of No Result  has a % Win of 100.00% and a Played larger than 4 in 2012?",
    "question_th": "ไม่มีผลลัพธ์ประเภทใดที่มี % ชนะ 100.00% และเล่นมากกว่า 4 ในปี 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–5\"",
    "question_en": "Which Loss has a Score of 6–5?",
    "question_th": "แพ้ใดมีคะแนน 6–5?",
    "context": "CREATE TABLE table_name_20 (loss VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(game) FROM table_name_1 WHERE date = \"wed. nov. 13\"",
    "question_en": "Date of wed. nov. 13 had how many number of games?",
    "question_th": "วันที่ พ. พ.ย. 13 มีกี่เกม?",
    "context": "CREATE TABLE table_name_1 (game VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_16 WHERE record = \"6–1\"",
    "question_en": "Record of 6–1 had what score?",
    "question_th": "สถิติสกอร์ 6–1 ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_16 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT MIN(game) FROM table_name_64 WHERE score = \"118–114\" AND record = \"8–1\"",
    "question_en": "Score of 118–114, and a Record of 8–1 is what lowest game?",
    "question_th": "คะแนน 118–114 และสถิติ 8–1 คือเกมที่ต่ำที่สุดเกมใด",
    "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_en": "Which circuit was in Great Britain with Ireland as the winner?",
    "question_th": "สนามใดอยู่ในบริเตนใหญ่โดยมีไอร์แลนด์เป็นผู้ชนะ",
    "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–3\"",
    "question_en": "How many were in attendance when the league position was 16th and the score was F–A of 0–3?",
    "question_th": "มีผู้เข้าร่วมกี่คนเมื่อตำแหน่งลีกอยู่ที่ 16 และคะแนนเป็น F–A 0–3",
    "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_en": "How many were in attendance for a result of D, at H venue, and Arsenal as an opponent?",
    "question_th": "มีผู้เข้าร่วมกี่คนสำหรับผลการแข่งขัน D ที่สนาม H และอาร์เซนอลในฐานะคู่ต่อสู้?",
    "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_en": "What is the largest number in attendance at H venue opposing Liverpool with a result of D?",
    "question_th": "จำนวนผู้เข้าชมมากที่สุดในสถานที่ H ของฝ่ายตรงข้ามลิเวอร์พูลด้วยผล 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_en": "What is the number of Justin Jeffries?",
    "question_th": "จัสติน เจฟฟรีส์ เบอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_31 (number VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT MIN(games) AS ↑ FROM table_name_29 WHERE number = 61",
    "question_en": "How many games has number 61 played in?",
    "question_th": "หมายเลข 61 เล่นไปกี่เกม?",
    "context": "CREATE TABLE table_name_29 (games INTEGER, number VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_83 WHERE position = \"wr\" AND weight = 197",
    "question_en": "What is the name of the player who is a wr and has a weight of 197?",
    "question_th": "นักเตะ WR น้ำหนัก 197 ชื่ออะไรครับ?",
    "context": "CREATE TABLE table_name_83 (name VARCHAR, position VARCHAR, weight VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_name_44 WHERE number = 40",
    "question_en": "What is the hometown of number 40?",
    "question_th": "บ้านเกิดของหมายเลข 40 คืออะไร?",
    "context": "CREATE TABLE table_name_44 (hometown VARCHAR, number VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_91 WHERE visitor = \"ottawa\"",
    "question_en": "What date is the visitor Ottawa?",
    "question_th": "ผู้มาเยือนออตตาวาคือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_91 (date VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT SUM(year) FROM table_name_99 WHERE state = \"rhode island\"",
    "question_en": "what is the sum of the year in rhode island",
    "question_th": "ผลรวมของปีในโรดไอแลนด์เป็นเท่าใด",
    "context": "CREATE TABLE table_name_99 (year INTEGER, state VARCHAR)"
  },
  {
    "answer": "SELECT senator FROM table_name_72 WHERE state = \"kentucky\"",
    "question_en": "what is the senator in kentucky",
    "question_th": "วุฒิสมาชิกในรัฐเคนตักกี้คืออะไร",
    "context": "CREATE TABLE table_name_72 (senator VARCHAR, state VARCHAR)"
  },
  {
    "answer": "SELECT destination FROM table_name_76 WHERE origin = \"dhanbad\"",
    "question_en": "What is the destination of the rail with Dhanbad as the origin?",
    "question_th": "ปลายทางของรถไฟที่มีดันแบดเป็นจุดเริ่มต้นคืออะไร?",
    "context": "CREATE TABLE table_name_76 (destination VARCHAR, origin VARCHAR)"
  },
  {
    "answer": "SELECT destination FROM table_name_87 WHERE train_name = \"garib nwaz exp\"",
    "question_en": "What is the destination of the Garib nwaz exp train?",
    "question_th": "จุดหมายปลายทางของรถไฟ Garib nwaz exp คืออะไร?",
    "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_en": "What is the train name of the rail with a daily frequency and a destination of Rajgir?",
    "question_th": "รถไฟสายใดที่มีความถี่รายวันและจุดหมายปลายทางของราชคฤห์?",
    "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_en": "What is the train name of the rail with a daily frequency and Jammutawi as the destination?",
    "question_th": "รถไฟสายใดที่มีความถี่รายวันและมีชัมมูตาวีเป็นจุดหมายปลายทาง?",
    "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_en": "What is the frequency of the rail with an origin of Ranchi?",
    "question_th": "ความถี่ของรางที่มีต้นกำเนิดของรันจีคือเท่าไร?",
    "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_en": "What is the frequency of the train named Garib nwaz exp?",
    "question_th": "รถไฟชื่อ 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_en": "Name the segment c with episode less than 179 and segment b of s sticker",
    "question_th": "ตั้งชื่อส่วน c ด้วยตอนที่น้อยกว่า 179 และสติ๊กเกอร์ส่วน b ของ s",
    "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_en": "Name the segment c for ski goggles",
    "question_th": "ตั้งชื่อส่วน c สำหรับแว่นตาสกี",
    "context": "CREATE TABLE table_name_78 (segment_c VARCHAR, segment_a VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_26 WHERE first = \"steve\"",
    "question_en": "In which position did Steve play first?",
    "question_th": "สตีฟเล่นตำแหน่งไหนก่อน?",
    "context": "CREATE TABLE table_name_26 (position VARCHAR, first VARCHAR)"
  },
  {
    "answer": "SELECT bats FROM table_name_23 WHERE first = \"mitchell\"",
    "question_en": "Which bats did mitchell play first?",
    "question_th": "มิทเชลเล่นค้างคาวตัวไหนก่อน?",
    "context": "CREATE TABLE table_name_23 (bats VARCHAR, first VARCHAR)"
  },
  {
    "answer": "SELECT dob FROM table_name_19 WHERE surname = \"ryan\"",
    "question_en": "When is mr. ryan's DOB?",
    "question_th": "นายเมื่อไหร่.. วันเกิดของไรอัน?",
    "context": "CREATE TABLE table_name_19 (dob VARCHAR, surname VARCHAR)"
  },
  {
    "answer": "SELECT throws FROM table_name_1 WHERE position = \"3b/rhp\"",
    "question_en": "Which Throws have a Position of 3b/rhp?",
    "question_th": "การทุ่มใดมีตำแหน่ง 3b/rhp?",
    "context": "CREATE TABLE table_name_1 (throws VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT dob FROM table_name_22 WHERE surname = \"collins\"",
    "question_en": "When is Collins' DOB?",
    "question_th": "วันเกิดของ Collins คือเมื่อไหร่?",
    "context": "CREATE TABLE table_name_22 (dob VARCHAR, surname VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_78 WHERE dob = \"3 june 1989\"",
    "question_en": "Which Position has a D.O.B. of 3 june 1989?",
    "question_th": "ตำแหน่งใดมีวันเกิดวันที่ 3 มิถุนายน 1989",
    "context": "CREATE TABLE table_name_78 (position VARCHAR, dob VARCHAR)"
  },
  {
    "answer": "SELECT architecture FROM table_name_15 WHERE vehicle_name = \"saturn vue\"",
    "question_en": "What type of architecture does the Saturn Vue have?",
    "question_th": "Saturn Vue มีสถาปัตยกรรมประเภทใด",
    "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_en": "What architecture type does the Ford Escort Wagon have?",
    "question_th": "Ford Escort Wagon มีสถาปัตยกรรมประเภทใด",
    "context": "CREATE TABLE table_name_73 (architecture VARCHAR, original_vehicle VARCHAR)"
  },
  {
    "answer": "SELECT original_vehicle FROM table_name_76 WHERE architecture = \"uwhvt homepage\"",
    "question_en": "What original vehicle has uwhvt homepage architecture?",
    "question_th": "ยานพาหนะดั้งเดิมคันใดมีสถาปัตยกรรมหน้าแรกแบบ uwhvt?",
    "context": "CREATE TABLE table_name_76 (original_vehicle VARCHAR, architecture VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_4 WHERE last_16 = \"£400\"",
    "question_en": "Which Winner has a Last 16 of £400?",
    "question_th": "ผู้ชนะคนไหนมี 16 คนสุดท้ายจาก 400 ปอนด์?",
    "context": "CREATE TABLE table_name_4 (winner VARCHAR, last_16 VARCHAR)"
  },
  {
    "answer": "SELECT runner_up FROM table_name_44 WHERE total = \"£31,200\"",
    "question_en": "Which Runner-Up has a Total of £31,200?",
    "question_th": "รองชนะเลิศคนไหนมียอดรวม 31,200 ปอนด์?",
    "context": "CREATE TABLE table_name_44 (runner_up VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT runner_up FROM table_name_52 WHERE last_16 = \"£300\"",
    "question_en": "Which Runner-Up has a Last 16 of £300?",
    "question_th": "รองชนะเลิศคนไหนมี 16 คนสุดท้ายจาก 300 ปอนด์?",
    "context": "CREATE TABLE table_name_52 (runner_up VARCHAR, last_16 VARCHAR)"
  },
  {
    "answer": "SELECT last_64 FROM table_name_65 WHERE total = \"£34,600\"",
    "question_en": "Which Last 64 has a Total of £34,600?",
    "question_th": "64 คนสุดท้ายคนไหนมียอดรวม 34,600 ปอนด์?",
    "context": "CREATE TABLE table_name_65 (last_64 VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_71 WHERE semi_finalists = \"£2,000\"",
    "question_en": "Which Winner has Semi-Finalists of £2,000?",
    "question_th": "ผู้ชนะคนใดมีผู้เข้ารอบรองชนะเลิศมูลค่า 2,000 ปอนด์",
    "context": "CREATE TABLE table_name_71 (winner VARCHAR, semi_finalists VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_16 WHERE quarter_finalists = \"£1,000\" AND semi_finalists = \"£1,500\"",
    "question_en": "Which Year has a Quarter-Finalists of £1,000, and Semi-Finalists of £1,500?",
    "question_th": "ปีใดที่มีผู้เข้ารอบก่อนรองชนะเลิศมูลค่า 1,000 ปอนด์ และผู้เข้ารอบรองชนะเลิศมูลค่า 1,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_en": "How tall is Dylan Postl?",
    "question_th": "Dylan Postl สูงเท่าไหร่?",
    "context": "CREATE TABLE table_name_69 (height VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT MAX(goals) FROM table_name_3 WHERE points < 0",
    "question_en": "What is the largest amount of goals when the points are less than 0?",
    "question_th": "จำนวนประตูที่มากที่สุดเมื่อคะแนนน้อยกว่า 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_en": "Which player has more than 0 goals and less than 12 tries?",
    "question_th": "ผู้เล่นคนไหนที่ยิงได้มากกว่า 0 ประตูและพยายามน้อยกว่า 12 ครั้ง?",
    "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_en": "What is the smallest number of tries when Matt Diskin is the player and there are more than 16 points?",
    "question_th": "จำนวนครั้งในการลองน้อยที่สุดเมื่อ Matt Diskin เป็นผู้เล่นและมีคะแนนมากกว่า 16 คะแนนคือเท่าใด",
    "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_en": "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?",
    "question_th": "ตำแหน่งไหนมีมากกว่า 4 แต้ม น้อยกว่า 12 ครั้ง จำนวนทีมมากกว่า 1 และอาลี เลาอิติติเป็นนักเตะคนไหน?",
    "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_en": "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?",
    "question_th": "จำนวนทีมทั้งหมดไม่มีเมื่อมีมากกว่า 8 แต้ม, แดนนี่ แม็คไกวร์ เป็นผู้เล่น และ มีมากกว่า 0 ประตูเป็นเท่าใด?",
    "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_en": "What is the lowest lost from drawn of 1 or greater?",
    "question_th": "ค่าต่ำสุดที่เสียไปจากการเสมอ 1 หรือมากกว่าคือเท่าไร?",
    "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_en": "What is the highest games from a game with points less than 4, drawn of 1 and a lost less than 6?",
    "question_th": "เกมสูงสุดจากเกมที่มีแต้มน้อยกว่า 4 เสมอ 1 และแพ้น้อยกว่า 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_en": "What is the score of the game on January 18?",
    "question_th": "สกอร์เกมวันที่ 18 มกราคม เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_85 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_82 WHERE date = \"january 10\"",
    "question_en": "What is the score of the game on January 10?",
    "question_th": "สกอร์เกมวันที่ 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_en": "What is the score of the game on November 12 with the Chicago Black Hawks as the visitor team?",
    "question_th": "สกอร์เกมวันที่ 12 พ.ย. มี ชิคาโก้ แบล็ค ฮอว์กส์ เป็นทีมเยือนเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_24 (score VARCHAR, visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT series FROM table_name_55 WHERE date = \"may 6\"",
    "question_en": "What is the series score of the game on May 6?",
    "question_th": "คะแนนซีรีส์ของเกมวันที่ 6 พฤษภาคมเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_55 (series VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT builder FROM table_name_49 WHERE ship = \"zeehond\"",
    "question_en": "The Zeehond was built by whom?",
    "question_th": "Zeehond ถูกสร้างขึ้นโดยใคร?",
    "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_en": "What college, junior, or club team did Victor Ignatjev play for?",
    "question_th": "Victor Ignatjev เล่นให้กับทีมระดับวิทยาลัย รุ่นน้อง หรือสโมสรใด",
    "context": "CREATE TABLE table_name_90 (college_junior_club_team VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_47 WHERE nationality = \"sweden\"",
    "question_en": "Which player is from Sweden?",
    "question_th": "นักเตะคนไหนมาจากสวีเดน?",
    "context": "CREATE TABLE table_name_47 (player VARCHAR, nationality VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_17 WHERE date = \"april 22\"",
    "question_en": "What was the score on April 22?",
    "question_th": "คะแนนวันที่ 22 เมษายน เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_17 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_70 WHERE score = \"1-3\"",
    "question_en": "What opponent has a score of 1-3?",
    "question_th": "คู่ต่อสู้คนใดมีคะแนน 1-3?",
    "context": "CREATE TABLE table_name_70 (opponent VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_42 WHERE date = \"april 21\"",
    "question_en": "What is the record for April 21?",
    "question_th": "บันทึกประจำวันที่ 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_en": "Which Player has a Round larger than 5, and a School/Club Team of bethune-cookman?",
    "question_th": "ผู้เล่นคนใดที่มีรอบมากกว่า 5 และมีทีมโรงเรียน/คลับของ 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_en": "Which Position has a Pick smaller than 152, and a Round smaller than 3?",
    "question_th": "ตำแหน่งใดที่มีการเลือกน้อยกว่า 152 และรอบที่เล็กกว่า 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_en": "How many Picks have a Position of defensive back?",
    "question_th": "มีกี่ตัวเลือกที่มีตำแหน่งเป็นแนวรับ?",
    "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_en": "Which Player has a Round smaller than 11, and a Pick smaller than 152, and a Position of guard?",
    "question_th": "ผู้เล่นคนใดที่มีรอบที่เล็กกว่า 11 และพิคน้อยกว่า 152 และมีตำแหน่งป้องกัน?",
    "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_en": "Which participants won the silver medal for the Men's Doubles?",
    "question_th": "ผู้เข้าร่วมคนใดได้รับรางวัลเหรียญเงินประเภทชายคู่?",
    "context": "CREATE TABLE table_name_57 (name VARCHAR, medal VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_8 WHERE name = \"rashid sidek\"",
    "question_en": "What event did Rashid Sidek participate in?",
    "question_th": "Rashid Sidek เข้าร่วมงานอะไร",
    "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_en": "Which Olympic Games had a silver medal for the Men's Singles?",
    "question_th": "โอลิมปิกเกมส์ใดที่ได้เหรียญเงินประเภทชายเดี่ยว",
    "context": "CREATE TABLE table_name_33 (games VARCHAR, event VARCHAR, medal VARCHAR)"
  },
  {
    "answer": "SELECT sport FROM table_name_92 WHERE games = \"1992 barcelona\"",
    "question_en": "Which sport was in the 1992 Barcelona games?",
    "question_th": "กีฬาใดอยู่ในเกมบาร์เซโลนาปี 1992?",
    "context": "CREATE TABLE table_name_92 (sport VARCHAR, games VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_81 WHERE games = \"2008 beijing\"",
    "question_en": "What event was in the 2008 Beijing games?",
    "question_th": "เหตุการณ์ใดในเกมที่ปักกิ่งปี 2008?",
    "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_en": "What is the round of the defense player from the United States?",
    "question_th": "กองหลังจากสหรัฐอเมริการอบไหน?",
    "context": "CREATE TABLE table_name_32 (round VARCHAR, position VARCHAR, nationality VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_67 WHERE player = \"dale craigwell\"",
    "question_en": "What is the position of Dale Craigwell?",
    "question_th": "เดล เครกเวลล์ ดำรงตำแหน่งอะไร?",
    "context": "CREATE TABLE table_name_67 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_93 WHERE nationality = \"sweden\"",
    "question_en": "What is the position of the player from Sweden?",
    "question_th": "นักเตะจากสวีเดนอยู่ตำแหน่งไหน?",
    "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_en": "Who is the player from a round larger than 5 and the college/junior/club team of Leningrad SKA (russia)?",
    "question_th": "ใครคือผู้เล่นจากรอบที่มากกว่า 5 และทีมวิทยาลัย/รุ่นน้อง/สโมสรของ Leningrad SKA (รัสเซีย)",
    "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_en": "What position does Mikhail Kravets play?",
    "question_th": "มิคาอิล คราเวตส์ เล่นตำแหน่งอะไร?",
    "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_en": "Which date was held at Laguna Seca Raceway, in class GTX/GTO?",
    "question_th": "จัดขึ้นวันที่ใดที่ Laguna Seca Raceway ในคลาส 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_en": "Which circuit was held on May 7 for 1 hour?",
    "question_th": "วงจรไหนจัดวันที่ 7 พ.ค. นาน 1 ชั่วโมง?",
    "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_en": "Which circuit has a length of 45 minutes and is held on August 6?",
    "question_th": "เซอร์กิตใดมีความยาว 45 นาที และจะมีขึ้นในวันที่ 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_en": "What is the length of the 6 Hours of Talladega?",
    "question_th": "6 ชั่วโมงแห่งแทลลาดีกามีความยาวเท่าไร?",
    "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_en": "Name the class AA with class A of rule and school year of 1995-96",
    "question_th": "ตั้งชื่อคลาส AA ด้วยคลาส A ของกฎและปีการศึกษา 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_en": "Name the class A with school year of 2004-05",
    "question_th": "ตั้งชื่อคลาส A ด้วยปีการศึกษา 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_en": "Name the clas AAAA of school year 2000-01",
    "question_th": "ตั้งชื่อคลาส AAAA ของปีการศึกษา 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_en": "What school is from 45 Lake county and is located in Merrillville?",
    "question_th": "โรงเรียนอะไรมาจาก 45 Lake county และตั้งอยู่ใน 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_en": "What school is located in Michigan City?",
    "question_th": "โรงเรียนอะไรตั้งอยู่ในมิชิแกนซิตี้?",
    "context": "CREATE TABLE table_name_37 (school VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT ihsaa_class FROM table_name_49 WHERE school = \"chesterton\"",
    "question_en": "What is the IHSAA class for Chesterton?",
    "question_th": "ชั้นเรียน IHSAA สำหรับเชสเตอร์ตันคืออะไร",
    "context": "CREATE TABLE table_name_49 (ihsaa_class VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT ihsaa_class FROM table_name_69 WHERE school = \"portage\"",
    "question_en": "What is the IHSAA class for Portage?",
    "question_th": "IHSAA class สำหรับการขนส่งคืออะไร",
    "context": "CREATE TABLE table_name_69 (ihsaa_class VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT ihsaa_class FROM table_name_98 WHERE school = \"crown point\"",
    "question_en": "What is the IHSAA class for Crown Point?",
    "question_th": "IHSAA คลาสสำหรับ 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_en": "What is the average grid of driver Christian Vietoris who has less than 12 laps?",
    "question_th": "ตารางเฉลี่ยของนักแข่ง Christian Vietoris ที่วิ่งน้อยกว่า 12 รอบคือเท่าไร?",
    "context": "CREATE TABLE table_name_79 (grid INTEGER, driver VARCHAR, laps VARCHAR)"
  },
  {
    "answer": "SELECT SUM(grid) FROM table_name_75 WHERE driver = \"joão urbano\"",
    "question_en": "What is the grid of driver joão urbano?",
    "question_th": "ตารางของไดรเวอร์ joão 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_en": "What is the lowest laps a grid less than 22 with a time of +35.268 has?",
    "question_th": "รอบต่ำสุดที่กริดน้อยกว่า 22 ด้วยเวลา +35.268 คือเท่าไร?",
    "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_en": "What is the lowest laps driver Christian Vietoris with a grid smaller than 6 has?",
    "question_th": "Christian Vietoris นักแข่งที่มีรอบต่ำสุดซึ่งมีกริดน้อยกว่า 6 คือเท่าไร?",
    "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_en": "What is the primary sponsor of driver Mark Martin?",
    "question_th": "ผู้สนับสนุนหลักของนักแข่ง 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_en": "Who is the crew chief of team Joe Gibbs Racing, which has a Chevrolet Monte Carlo and Fedex as the primary sponsor?",
    "question_th": "ใครคือหัวหน้าทีมของทีม Joe Gibbs Racing ซึ่งมี Chevrolet Monte Carlo และ Fedex เป็นผู้สนับสนุนหลัก",
    "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_en": "Who is the driver of the team with the crew chief Derrick Finley?",
    "question_th": "ใครเป็นคนขับรถทีมร่วมกับหัวหน้าลูกเรือ 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_en": "Who is the crew chief of team Chip Ganassi Racing with Felix Sabates, which has Casey Mears as the driver?",
    "question_th": "ใครเป็นหัวหน้าทีมของทีม Chip Ganassi Racing โดยมี Felix Sabates ซึ่งมี Casey Mears เป็นคนขับ?",
    "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_en": "Which team has Peak Fitness as the primary sponsor?",
    "question_th": "ทีมไหนมี พีค ฟิตเนส เป็นผู้สนับสนุนหลัก?",
    "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_en": "What date has w 20-17 as the result, and 1-0 as the record?",
    "question_th": "วันที่ใดที่มีผลลัพธ์เป็น w 20-17 และ 1-0 เป็นสถิติ?",
    "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_en": "What game site has december 24, 2000 as a date?",
    "question_th": "เว็บไซต์เกมใดที่มีวันที่ 24 ธันวาคม พ.ศ. 2543 เป็นวันที่?",
    "context": "CREATE TABLE table_name_58 (game_site VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_91 WHERE opponent = \"dallas cowboys\"",
    "question_en": "What date has dallas cowboys as the opponent?",
    "question_th": "ดัลลัส คาวบอยส์ เป็นคู่ต่อสู้วันไหน?",
    "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_en": "What is the attendance that has fedex field as the game site with 3 as the week?",
    "question_th": "ผู้เข้าร่วมที่มีฟิลด์ fedex เป็นไซต์เกมโดยมี 3 เป็นรายสัปดาห์คืออะไร?",
    "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_en": "What is the record for April 22?",
    "question_th": "บันทึกประจำวันที่ 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_en": "What is the record when the visiting team was the Quebec Nordiques on April 22?",
    "question_th": "สถิติเมื่อทีมเยือนคือควิเบก นอร์ดิกส์ เมื่อวันที่ 22 เมษายนเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_26 (record VARCHAR, visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT longitude_အင်္သာ FROM table_name_98 WHERE latin = \"taurus\"",
    "question_en": "What is the longitude of Taurus?",
    "question_th": "ลองจิจูดของราศีพฤษภคืออะไร?",
    "context": "CREATE TABLE table_name_98 (longitude_အင်္သာ VARCHAR, latin VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_99 WHERE team = \"belshina\"",
    "question_en": "What is the Location for Belshina?",
    "question_th": "เบลชิน่า อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_99 (location VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(capacity) FROM table_name_28 WHERE venue = \"city stadium, borisov\"",
    "question_en": "What is the total number for Capacity at city stadium, borisov?",
    "question_th": "จำนวนความจุรวมของสนามกีฬาเมือง โบริซอฟ คือเท่าไร?",
    "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_en": "Which rating larger than 5 have the lowest amount of views in #3 rank with a share of 9?",
    "question_th": "คะแนนใดที่มากกว่า 5 มีจำนวนการดูต่ำสุดในอันดับ 3 โดยมีส่วนแบ่ง 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_en": "What is the highest played that has a drawn less than 9, 36 as the difference, with a lost greater than 7?",
    "question_th": "การเล่นสูงสุดที่เสมอน้อยกว่า 9, 36 เป็นความแตกต่างโดยแพ้มากกว่า 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_en": "How many positions have figueirense as the team, with a played greater than 38?",
    "question_th": "มีกี่ตำแหน่งที่เล่นได้เกิน 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_en": "What is the largest drawn that has a played less than 38?",
    "question_th": "การจับรางวัลที่ใหญ่ที่สุดที่เล่นน้อยกว่า 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_en": "How many positions have 9 as a drawn, 5 as a difference, with a lost less than 14?",
    "question_th": "มีกี่ตำแหน่งที่เสมอกัน 9 ตำแหน่ง ต่างกัน 5 ตำแหน่ง และแพ้น้อยกว่า 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_en": "What date did Episode 2-01 (42) air?",
    "question_th": "ตอนที่ 2-01 (42) ออกอากาศวันไหน?",
    "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_en": "Who wrote Episode 2-15 (56)?",
    "question_th": "ใครเป็นคนเขียน ตอนที่ 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_en": "What is the highest number of games with 1 loss and points less than 18?",
    "question_th": "จำนวนเกมสูงสุดที่แพ้ 1 ครั้งและแต้มน้อยกว่า 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_en": "Which City has a Result of w, and a Competition of international friendly (unofficial match), and a Score of 1-0?",
    "question_th": "เมืองใดมีผลการแข่งขัน w และการแข่งขันกระชับมิตรระหว่างประเทศ (นัดที่ไม่เป็นทางการ) และสกอร์ 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_en": "Which Date has a Result of w, and a Score of 3-0?",
    "question_th": "วันที่ใดมีผลการแข่งขัน w และสกอร์ 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_en": "Which City has a Date of june 9, 1976?",
    "question_th": "เมืองใดมีวันที่ 9 มิถุนายน พ.ศ. 2519",
    "context": "CREATE TABLE table_name_39 (city VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_23 WHERE date = \"may 19, 1976\"",
    "question_en": "Which City has a Date of may 19, 1976?",
    "question_th": "เมืองใดมีวันที่ 19 พฤษภาคม 2519",
    "context": "CREATE TABLE table_name_23 (city VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(laps) FROM table_name_63 WHERE driver = \"tom bridger\"",
    "question_en": "What are the total number of laps for Tom Bridger?",
    "question_th": "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_en": "What are the lowest laps of Graham Hill?",
    "question_th": "Graham Hill รอบต่ำสุดคือเท่าไหร่?",
    "context": "CREATE TABLE table_name_68 (laps INTEGER, driver VARCHAR)"
  },
  {
    "answer": "SELECT MIN(laps) FROM table_name_69 WHERE grid = 17",
    "question_en": "What are the lowest laps of grid 17?",
    "question_th": "รอบต่ำสุดของกริด 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_en": "Which Avg/G has a Gain of 16, and a Name of barnes, freddie, and a Loss smaller than 2?",
    "question_th": "Avg/G ใดที่มีกำไรเป็น 16 และชื่อของบาร์นส์ เฟรดดี้ และขาดทุนน้อยกว่า 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_en": "Which average Long has a Gain smaller than 16, and a Loss smaller than 6?",
    "question_th": "Long เฉลี่ยใดที่มีกำไรน้อยกว่า 16 และขาดทุนน้อยกว่า 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_en": "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?",
    "question_th": "กำไรใดคือค่าต่ำสุดที่มี Loss มากกว่า 2 และ Avg/G มากกว่า -6 และชื่อของชีแฮน ไทเลอร์ และ Long มากกว่า 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_en": "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?",
    "question_th": "Avg/G ใดคือค่าต่ำสุดที่มี Long มากกว่า 8 และ Loss น้อยกว่า 34 และ Gain มากกว่า 16 และชื่อ bullock คริส?",
    "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_en": "Which Loss has a Name of bullock, chris, and a Long smaller than 36?",
    "question_th": "Loss ตัวไหนมีชื่อ bullock, chris และ long น้อยกว่า 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_en": "How much Long has a Loss larger than 2, and a Gain of 157, and an Avg/G smaller than 129?",
    "question_th": "Long เท่าใดมีการสูญเสียมากกว่า 2 และกำไร 157 และ Avg/G น้อยกว่า 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_en": "What is the fewest number of places for a skater from Norway with fewer than 1524.9 points?",
    "question_th": "จำนวนสถานที่น้อยที่สุดสำหรับนักเล่นสเก็ตจากนอร์เวย์ที่มีคะแนนน้อยกว่า 1,524.9 คือข้อใด",
    "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_en": "What home has Philadelphia as the visitor, and december 4 as the date?",
    "question_th": "บ้านไหนมีฟิลาเดลเฟียเป็นผู้มาเยือน และวันที่ 4 ธันวาคมเป็นวันที่?",
    "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_en": "What record has a decision of parent, Philadelphia as the home, with december 12 as the date?",
    "question_th": "บันทึกใดมีการตัดสินใจของผู้ปกครอง ฟิลาเดลเฟีย เป็นบ้าน โดยมีวันที่ 12 ธันวาคม เป็นวันที่?",
    "context": "CREATE TABLE table_name_81 (record VARCHAR, date VARCHAR, decision VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_62 WHERE score = \"6–4, 6–2\"",
    "question_en": "Which Tournament has a Score of 6–4, 6–2?",
    "question_th": "ทัวร์นาเมนต์ใดมีคะแนน 6–4, 6–2?",
    "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_en": "Which Score has an Opponent in the final of mehdi tahiri?",
    "question_th": "คะแนนใดมีคู่ต่อสู้ในรอบชิงชนะเลิศของเมห์ดีทาฮิรี?",
    "context": "CREATE TABLE table_name_96 (score VARCHAR, opponent_in_the_final VARCHAR)"
  },
  {
    "answer": "SELECT SUM(date) FROM table_name_3 WHERE score = \"6–3, 7–6\"",
    "question_en": "Which Date has a Score of 6–3, 7–6?",
    "question_th": "วันไหนมีคะแนน 6–3, 7–6?",
    "context": "CREATE TABLE table_name_3 (date INTEGER, score VARCHAR)"
  },
  {
    "answer": "SELECT SUM(date) FROM table_name_68 WHERE score = \"7–6(3), 4–6, 6–2\"",
    "question_en": "Which Date has a Score of 7–6(3), 4–6, 6–2?",
    "question_th": "วันไหนมีคะแนน 7–6(3), 4–6, 6–2?",
    "context": "CREATE TABLE table_name_68 (date INTEGER, score VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_62 WHERE tournament = \"olbia\"",
    "question_en": "Which Surface has a Tournament of olbia?",
    "question_th": "Surface ใดมี Tournament of olbia?",
    "context": "CREATE TABLE table_name_62 (surface VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_43 WHERE week = 7",
    "question_en": "What was the attendance at the week 7 game?",
    "question_th": "ผู้เข้าร่วมในเกมสัปดาห์ที่ 7 เป็นอย่างไรบ้าง?",
    "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_en": "What was the result of the game after week 3 against the New York Giants?",
    "question_th": "ผลลัพธ์ของเกมหลังสัปดาห์ที่ 3 กับนิวยอร์ก ไจแอนต์สเป็นอย่างไร",
    "context": "CREATE TABLE table_name_94 (result VARCHAR, week VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_52 WHERE week = 6",
    "question_en": "Who was the opponent at the week 6 game?",
    "question_th": "คู่ต่อสู้ในเกมสัปดาห์ที่ 6 คือใคร?",
    "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_en": "What is the lowest loss that Jarius Wright has had where he also has had a gain bigger than 1.",
    "question_th": "อะไรคือการสูญเสียที่ต่ำที่สุดที่ Jarius Wright มี โดยที่เขาได้กำไรมากกว่า 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_en": "How much was the first place prize for the American golf classic located in Ohio?",
    "question_th": "รางวัลที่หนึ่งสำหรับ American Golf Classic ที่โอไฮโอคือเท่าไร",
    "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_en": "What date was the Monsanto open located in Florida?",
    "question_th": "Monsanto เปิดที่ฟลอริดาวันไหน",
    "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_en": "What was the score of Johnny Miller (7)?",
    "question_th": "จอห์นนี่ มิลเลอร์ (7) ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_80 (score VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_name_62 WHERE division > 4",
    "question_en": "What is the total number of years that have divisions greater than 4?",
    "question_th": "จำนวนปีที่มีการแบ่งส่วนมากกว่า 4 คือเท่าใด",
    "context": "CREATE TABLE table_name_62 (year VARCHAR, division INTEGER)"
  },
  {
    "answer": "SELECT MAX(division) FROM table_name_27 WHERE year < 2011",
    "question_en": "What is the highest division for years earlier than 2011?",
    "question_th": "ดิวิชั่นสูงสุดในช่วงหลายปีก่อนปี 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_en": "What is the Week number on November 30, 1958 with more than 33,240 in Attendance?",
    "question_th": "สัปดาห์ที่ 30 พฤศจิกายน 2501 มีผู้เข้าร่วมมากกว่า 33,240 คนคือหมายเลขอะไร",
    "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_en": "What was the Result on November 9, 1958?",
    "question_th": "ผลลัพธ์เมื่อวันที่ 9 พฤศจิกายน 2501 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_77 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT AVG(attendance) FROM table_name_70 WHERE week = 8",
    "question_en": "What was the Attendance on Week 8?",
    "question_th": "การเข้าร่วมในสัปดาห์ที่ 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_en": "Which season did not qualify for UEFA competitions?",
    "question_th": "ฤดูกาลใดไม่ผ่านเข้ารอบการแข่งขันยูฟ่า?",
    "context": "CREATE TABLE table_name_70 (season VARCHAR, against VARCHAR)"
  },
  {
    "answer": "SELECT lost FROM table_name_15 WHERE goals_against = \"5\"",
    "question_en": "How many games were lost that had goals against of 5?",
    "question_th": "มีกี่เกมที่แพ้โดยเสียประตู 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_en": "How many draws were there with goals against that did not qualify for UEFA competitions?",
    "question_th": "มีกี่ครั้งที่เสมอกับประตูที่ไม่ผ่านเข้ารอบการแข่งขันยูฟ่า?",
    "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_en": "Which competition did not qualify for UEFA competitions in the 1970-71 season?",
    "question_th": "การแข่งขันใดที่ไม่ผ่านเข้ารอบการแข่งขันยูฟ่าในฤดูกาล 1970-71?",
    "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_en": "What is the attendance in texas stadium?",
    "question_th": "การเข้าร่วมในสนามกีฬาเท็กซัสคืออะไร?",
    "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_en": "What is the home team score for the team that has a home field of the Telstra Dome?",
    "question_th": "คะแนนทีมเหย้าของทีมที่มีสนามเหย้าของเทลสตราโดมคือเท่าไร?",
    "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_en": "Which home team had an away team of the Brisbane Lions?",
    "question_th": "เจ้าบ้านไหนมีทีมเยือน บริสเบน ไลออนส์?",
    "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_en": "What was the sensor with a resolution of 355x288 for a Naturalpoint Trackir 3?",
    "question_th": "เซ็นเซอร์ที่มีความละเอียด 355x288 สำหรับ 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_en": "What was the sensor resolution with a minimal CPU usage for a naturalpoint trackir 3 pro?",
    "question_th": "ความละเอียดของเซ็นเซอร์ที่มีการใช้งาน CPU น้อยที่สุดสำหรับ 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_en": "What was the output with no IR LEDs?",
    "question_th": "ผลลัพธ์ที่ไม่มี IR LED คืออะไร",
    "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_en": "What sensor has a resolution of 640x480 with small CPU usage, jpeg compressed output and a camera of sony playstation eyetoy?",
    "question_th": "เซ็นเซอร์ตัวใดที่มีความละเอียด 640x480 พร้อมการใช้งาน CPU ขนาดเล็ก, เอาต์พุตที่บีบอัด jpeg และกล้องของ 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_en": "What is the max speed of the unit with an 8+4 quantity built before 1971?",
    "question_th": "ความเร็วสูงสุดของยูนิตที่มีปริมาณ 8+4 ที่สร้างก่อนปี 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_en": "What is the numbers of the thn unit with a power greater than 220?",
    "question_th": "ตัวเลขของหน่วย th ที่มีกำลังมากกว่า 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_en": "What is the power of the unit built after 1995?",
    "question_th": "พลังของยูนิตที่สร้างขึ้นหลังปี 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_en": "Week larger than 6, and a Date of november 22, 1959 had what result?",
    "question_th": "สัปดาห์ที่มากกว่า 6 และวันที่ 22 พฤศจิกายน 2502 มีผลอย่างไร",
    "context": "CREATE TABLE table_name_5 (result VARCHAR, week VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT AVG(week) FROM table_name_96 WHERE result = \"w 21–7\"",
    "question_en": "Result of w 21–7 had what average week?",
    "question_th": "ผลลัพธ์ของ w 21–7 มีสัปดาห์เฉลี่ยเท่าใด",
    "context": "CREATE TABLE table_name_96 (week INTEGER, result VARCHAR)"
  },
  {
    "answer": "SELECT MIN(attendance) FROM table_name_7 WHERE date = \"november 29, 1959\"",
    "question_en": "Date of november 29, 1959 had what lowest attendance?",
    "question_th": "วันที่ 29 พฤศจิกายน 2502 มีผู้เข้าร่วมน้อยที่สุดคือข้อใด",
    "context": "CREATE TABLE table_name_7 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_4 WHERE date = \"december 5, 1959\"",
    "question_en": "Week that has a Date of december 5, 1959 had what week?",
    "question_th": "สัปดาห์ที่มีวันที่ 5 ธันวาคม 2502 มีสัปดาห์ใด",
    "context": "CREATE TABLE table_name_4 (week VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT SUM(game) FROM table_name_94 WHERE opponent = \"@ carolina hurricanes\"",
    "question_en": "Which Game has an Opponent of @ carolina hurricanes?",
    "question_th": "เกมใดมีฝ่ายตรงข้ามของ @carolina hurricanes?",
    "context": "CREATE TABLE table_name_94 (game INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(game) FROM table_name_10 WHERE november = 10",
    "question_en": "How many games have a November of 10?",
    "question_th": "วันที่ 10 พฤศจิกายนมีเกมกี่เกม?",
    "context": "CREATE TABLE table_name_10 (game VARCHAR, november VARCHAR)"
  },
  {
    "answer": "SELECT SUM(game) FROM table_name_32 WHERE november = 22",
    "question_en": "Which Game has a November of 22?",
    "question_th": "เกมใดมีวันที่ 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_en": "What is the mean year of marriage when her age was more than 19 and his age was 30?",
    "question_th": "ปีเฉลี่ยของการแต่งงานเมื่อเธออายุมากกว่า 19 ปีและอายุของเขาคือ 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_en": "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?",
    "question_th": "ตัวเลขอายุต่ำสุดของเธอคือเท่าไรเมื่อแต่งงานก่อนปี 1853 จำนวนลูกน้อยกว่า 8 คน และเจ้าสาวคือ 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_en": "What is the total number of her age figures where his age is less than 33, the bride was diontha walker, and the number of children was less than 0?",
    "question_th": "ตัวเลขอายุของเธอทั้งหมดโดยอายุของเขาน้อยกว่า 33 ปี เจ้าสาวคือดิออนธา วอล์คเกอร์ และจำนวนเด็กน้อยกว่า 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_en": "How much Lost has an Against larger than 19, and a Drawn smaller than 1?",
    "question_th": "แพ้มีแต้มต่อมากกว่า 19 และเสมอน้อยกว่า 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_en": "Which Played has a Lost of 3, and an Against of 23?",
    "question_th": "ผู้เล่นคนไหนที่แพ้ 3 และต่อ 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_en": "Which Played is the highest one that has an Against smaller than 18, and Points smaller than 10?",
    "question_th": "ผู้เล่นคนไหนที่เล่นสูงสุดที่มีแต้มต่อน้อยกว่า 18 และแต้มน้อยกว่า 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_en": "Which Against is the highest one that has a Drawn larger than 1, and a Team of corinthians, and a Played smaller than 7?",
    "question_th": "ฝ่ายตรงข้ามใดคือทีมสูงสุดที่มีการเสมอมากกว่า 1 และทีมโครินเธียน และเล่นน้อยกว่า 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_en": "What opponent has october less than 20, and 8 for points?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีคะแนนน้อยกว่า 20 ตุลาคม และ 8 คะแนน?",
    "context": "CREATE TABLE table_name_13 (opponent VARCHAR, october VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_1 WHERE player = \"drew callander\"",
    "question_en": "What position does Drew Callander play?",
    "question_th": "ดรูว์ คัลลันเดอร์ เล่นตำแหน่งอะไร?",
    "context": "CREATE TABLE table_name_1 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_2 WHERE player = \"ray kurpis\"",
    "question_en": "What round did Ray Kurpis play?",
    "question_th": "Ray Kurpis เล่นรอบไหน?",
    "context": "CREATE TABLE table_name_2 (round VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT built_by FROM table_name_44 WHERE name = \"northern jaeger\"",
    "question_en": "Which Built by has a Name of northern jaeger?",
    "question_th": "ซึ่งสร้างโดยมีชื่อของเยเกอร์ภาคเหนือ?",
    "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_en": "How many Horsepowers have a Year smaller than 1974, and a Tonnage of 4437?",
    "question_th": "หนึ่งปีมีแรงม้าน้อยกว่าปี 1974 และมีน้ำหนัก 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_en": "When was the 2014 fifa world cup qualification?",
    "question_th": "ฟุตบอลโลก 2014 รอบคัดเลือก จัดขึ้นเมื่อใด?",
    "context": "CREATE TABLE table_name_96 (date VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_86 WHERE venue = \"tokyo\"",
    "question_en": "When was the date of an event at Tokyo venue?",
    "question_th": "งานอีเว้นท์ที่โตเกียวจัดขึ้นวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_86 (date VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_58 WHERE opponent = \"poland\"",
    "question_en": "What city did Yugoslavia play against Poland in?",
    "question_th": "ยูโกสลาเวียเล่นกับโปแลนด์ที่เมืองใด?",
    "context": "CREATE TABLE table_name_58 (city VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_56 WHERE opponent = \"luxembourg\"",
    "question_en": "What day did Yugoslavia play Luxembourg?",
    "question_th": "ยูโกสลาเวียเล่นกับลักเซมเบิร์กวันไหน?",
    "context": "CREATE TABLE table_name_56 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT type_of_game FROM table_name_97 WHERE city = \"ljubljana\"",
    "question_en": "What type of game was played in Ljubljana?",
    "question_th": "ลูบลิยานาเล่นเกมประเภทใด?",
    "context": "CREATE TABLE table_name_97 (type_of_game VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT results¹ FROM table_name_70 WHERE city = \"belgrade\"",
    "question_en": "What's the result of the game played in Belgrade?",
    "question_th": "ผลการแข่งขันที่เบลเกรดเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_70 (results¹ VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_2 WHERE date = \"march 23\"",
    "question_en": "What was the score on March 23?",
    "question_th": "คะแนนวันที่ 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_en": "When the Vancouver Canucks were visiting, what was the record when the score was 4-2?",
    "question_th": "ตอนที่แวนคูเวอร์ คานัคส์มาเยือน สถิติสกอร์ 4-2 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_6 (record VARCHAR, score VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT partner FROM table_name_79 WHERE score = \"6–7, 7–6, 6–7\"",
    "question_en": "Which Partner has a Score of 6–7, 7–6, 6–7?",
    "question_th": "พันธมิตรคนไหนมีคะแนน 6–7, 7–6, 6–7?",
    "context": "CREATE TABLE table_name_79 (partner VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_50 WHERE date = \"13 april 1997\"",
    "question_en": "Which Score has a Date of 13 april 1997?",
    "question_th": "คะแนนใดมีวันที่ 13 เมษายน 2540",
    "context": "CREATE TABLE table_name_50 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT partner FROM table_name_38 WHERE score = \"7–6, 6–3\"",
    "question_en": "Which Partner has a Score of 7–6, 6–3?",
    "question_th": "พันธมิตรคนไหนมีคะแนน 7–6, 6–3?",
    "context": "CREATE TABLE table_name_38 (partner VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_63 WHERE tournament = \"bmw open\"",
    "question_en": "Which Date has a Tournament of bmw open?",
    "question_th": "BMW เปิดแข่งขันวันไหน?",
    "context": "CREATE TABLE table_name_63 (date VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT partner FROM table_name_13 WHERE tournament = \"catella swedish open\"",
    "question_en": "Which Partner has a Tournament of catella swedish open?",
    "question_th": "พันธมิตรคนไหนมีทัวร์นาเมนต์ของ catella swedish เปิดอยู่?",
    "context": "CREATE TABLE table_name_13 (partner VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_89 WHERE surface = \"clay\" AND score = \"6–3, 5–7, 2–6\"",
    "question_en": "Which Date has a Surface of clay, and a Score of 6–3, 5–7, 2–6?",
    "question_th": "วันที่ใดมีพื้นผิวเป็นดินเหนียว และคะแนน 6–3, 5–7, 2–6",
    "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_en": "Who was the winner of the tre valli varesine race?",
    "question_th": "ใครคือผู้ชนะการแข่งขัน Tre Valli Varesine?",
    "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_en": "What is the date of the omloop van de vlaamse scheldeboorden race with a UCI rating of 1.1?",
    "question_th": "วันที่ของการแข่งขัน omloop van de vlaamse scheldeboorden ด้วยคะแนน UCI 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à di camaiore\"",
    "question_en": "What is the date of the gp città di camaiore race?",
    "question_th": "การแข่งขัน gp città di camaiore วันที่เท่าไหร่?",
    "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_en": "What is the UCI rating of the race in Italy with the progetto ciclismo alplast team?",
    "question_th": "เรตติ้ง UCI ของการแข่งขันในอิตาลีกับทีม progetto ciclismo alplast เป็นเท่าใด",
    "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_en": "What is the date of the game being played at Schaeffer Stadium?",
    "question_th": "เกมที่ลงเล่นที่แชฟเฟอร์ สเตเดี้ยมคือวันที่เท่าไหร่?",
    "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_en": "Which Points have a Year larger than 1966, and Wins larger than 1?",
    "question_th": "คะแนนใดที่มีหนึ่งปีมากกว่าปี 1966 และชนะมากกว่า 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_en": "Which Year is the lowest one that has Wins smaller than 0?",
    "question_th": "ปีใดเป็นปีต่ำสุดที่มีชัยชนะน้อยกว่า 0?",
    "context": "CREATE TABLE table_name_47 (year INTEGER, wins INTEGER)"
  },
  {
    "answer": "SELECT AVG(points) FROM table_name_15 WHERE wins > 1",
    "question_en": "Which Points have Wins larger than 1?",
    "question_th": "แต้มใดที่มีชัยชนะมากกว่า 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_en": "Which Wins have a Year of 1963, and a Class of 50cc?",
    "question_th": "ชัยชนะครั้งใดที่มีปี 1963 และคลาส 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_en": "What is the player from Australia's rank with more than 16 wins?",
    "question_th": "นักเตะอันดับออสเตรเลียคนไหนชนะเกิน 16 นัด?",
    "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_en": "What is the highest earnings of a player with more than 19 wins?",
    "question_th": "รายได้สูงสุดของผู้เล่นที่ชนะมากกว่า 19 ครั้งคืออะไร?",
    "context": "CREATE TABLE table_name_16 (earnings___ INTEGER, wins INTEGER)"
  },
  {
    "answer": "SELECT AVG(opened) FROM table_name_19 WHERE manufacturer = \"vekoma\"",
    "question_en": "Which average Opened has a Manufacturer of vekoma?",
    "question_th": "Opened โดยเฉลี่ยใดที่มีผู้ผลิต 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_en": "Which Opened is the highest one that has a Themed Area of aerial park, and a Manufacturer of zamperla?",
    "question_th": "ที่เปิดใดที่สูงที่สุดที่มีธีมของสวนสนุกทางอากาศ และผู้ผลิต 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_en": "Which Themed Area has a Name of troublesome trucks runaway coaster?",
    "question_th": "พื้นที่ธีมใดมีชื่อรถไฟเหาะตีลังกาบรรทุกลำบาก?",
    "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_en": "Which Manufacturer has a Style of steel sit down, and an Opened larger than 2008?",
    "question_th": "ผู้ผลิตรายใดมี Style of steel นั่งลงและ Opened ใหญ่กว่าปี 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_en": "What position has a pick less than 25 for the university of california?",
    "question_th": "ตำแหน่งใดที่มีตัวเลือกน้อยกว่า 25 สำหรับมหาวิทยาลัยแคลิฟอร์เนีย",
    "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_en": "What is the pick number for tulane university?",
    "question_th": "หมายเลขเลือกสำหรับมหาวิทยาลัยทูเลนคืออะไร?",
    "context": "CREATE TABLE table_name_23 (pick INTEGER, school VARCHAR)"
  },
  {
    "answer": "SELECT SUM(pick) FROM table_name_12 WHERE team = \"kansas city royals\"",
    "question_en": "What is the pick number for the kansas city royals?",
    "question_th": "หมายเลขเลือกสำหรับ 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_en": "What is the average Pick for the Pasco, Wa school?",
    "question_th": "ค่าเฉลี่ยที่เลือกสำหรับโรงเรียน Pasco, Wa คือเท่าไร?",
    "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_en": "What Label released a CD single in 1993?",
    "question_th": "What Label เปิดตัวซีดีซิงเกิลในปี 1993?",
    "context": "CREATE TABLE table_name_5 (label VARCHAR, format VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_77 WHERE record = \"7–5–2\"",
    "question_en": "Where was home with a record of 7–5–2?",
    "question_th": "บ้านอยู่ที่ไหนด้วยสถิติ 7–5–2?",
    "context": "CREATE TABLE table_name_77 (home VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_14 WHERE record = \"8–6–3\"",
    "question_en": "On what date was the record 8–6–3?",
    "question_th": "บันทึก 8–6–3 คือวันที่ใด",
    "context": "CREATE TABLE table_name_14 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_42 WHERE visitor = \"pittsburgh\"",
    "question_en": "What was the score when Pittsburgh was the visitor?",
    "question_th": "เมื่อพิตส์เบิร์กเป็นแขกได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_42 (score VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_98 WHERE home = \"ny rangers\"",
    "question_en": "On what date were the NY Rangers home?",
    "question_th": "NY Rangers กลับบ้านวันไหน?",
    "context": "CREATE TABLE table_name_98 (date VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_49 WHERE record = \"7–5–3\"",
    "question_en": "Which visitor had a record of 7–5–3?",
    "question_th": "ผู้เยี่ยมชมคนใดมีสถิติ 7–5–3",
    "context": "CREATE TABLE table_name_49 (visitor VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_89 WHERE visitor = \"detroit\" AND score = \"4 – 1\"",
    "question_en": "Who was home when Detroit was visiting with a score of 4 – 1?",
    "question_th": "ใครอยู่บ้านเมื่อดีทรอยต์มาเยือนด้วยสกอร์ 4 – 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_en": "What is the earliest date with Great Expectations label with LP format?",
    "question_th": "วันที่เร็วที่สุดที่มีป้ายกำกับ Great Expectations พร้อมรูปแบบ LP คือวันที่เท่าไร",
    "context": "CREATE TABLE table_name_92 (date INTEGER, label VARCHAR, format VARCHAR)"
  },
  {
    "answer": "SELECT format FROM table_name_21 WHERE catalog = \"mobil 1\"",
    "question_en": "What format was used for Mobil 1?",
    "question_th": "โมบิล 1 ใช้รูปแบบใด",
    "context": "CREATE TABLE table_name_21 (format VARCHAR, catalog VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_98 WHERE competition = \"friendly match\"",
    "question_en": "what team won the friendly match",
    "question_th": "ทีมใดชนะนัดกระชับมิตร",
    "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_en": "Which Runner-up has a Last win smaller than 1998, and Wins of 1, and a Rank larger than 13?",
    "question_th": "รองชนะเลิศคนใดมีชัยชนะครั้งสุดท้ายน้อยกว่าปี 1998 และชนะ 1 และอันดับมากกว่า 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_en": "How many Last wins have a Club of mansfield town, and Wins smaller than 1?",
    "question_th": "สโมสรของแมนส์ฟิลด์ทาวน์ชนะครั้งสุดท้ายกี่ครั้ง และชนะน้อยกว่า 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_en": "Which Driver has a Date of 16th september 1951, and a Race of dns?",
    "question_th": "นักแข่งคนไหนมีวันที่ 16 กันยายน 1951 และ 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_en": "At which race did reg parnell win the goodwood trophy?",
    "question_th": "Reg Parnell ชนะรางวัล Goodwood ในการแข่งขันรายการใด",
    "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_en": "Which Race has a Date of 31st may 1953, and an Event of grand prix de l'albigeois final?",
    "question_th": "การแข่งขันใดมีวันที่ 31 พฤษภาคม 1953 และการแข่งขันกรังด์ปรีซ์ เดอ ลัลบีเจัวส์ รอบชิงชนะเลิศ",
    "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_en": "What's the average total cargo in metric tonnes that has an 11.8% Change?",
    "question_th": "สินค้าโดยเฉลี่ยในหน่วยเมตริกตันที่มีการเปลี่ยนแปลง 11.8% คือเท่าใด",
    "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_en": "What is the highest rank of Tokyo International Airport?",
    "question_th": "ท่าอากาศยานนานาชาติโตเกียวอยู่อันดับสูงสุดคือข้อใด",
    "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_en": "Where the games are smaller than 5 and the points are 6, what is the average lost?",
    "question_th": "โดยที่เกมน้อยกว่า 5 และแต้มคือ 6 ค่าเฉลี่ยที่แพ้คือเท่าไร?",
    "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_en": "with build 5/69-6/69 what's the order?",
    "question_th": "กับบิลด์ 5/69-6/69 สั่งอะไรครับ?",
    "context": "CREATE TABLE table_name_89 (order INTEGER, built VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_20 WHERE score = \"6–2, 6–2\"",
    "question_en": "Which Outcome has a Score of 6–2, 6–2?",
    "question_th": "ผลลัพธ์ใดมีคะแนน 6–2, 6–2",
    "context": "CREATE TABLE table_name_20 (outcome VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_69 WHERE outcome = \"winner\" AND score = \"7–5, 6–4\"",
    "question_en": "Which Date has an Outcome of winner, and a Score of 7–5, 6–4?",
    "question_th": "วันที่ใดมีผลลัพธ์เป็นผู้ชนะ และคะแนน 7–5, 6–4",
    "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–4, 6–1\"",
    "question_en": "Which Tournament has an Outcome of winner, and a Surface of clay, and a Score of 6–4, 6–1?",
    "question_th": "การแข่งขันใดมีผลลัพธ์เป็นผู้ชนะ และมีพื้นผิวเป็นดินเหนียว และมีคะแนน 6–4, 6–1",
    "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_en": "What was the outcome in mari andersson's tournament?",
    "question_th": "ผลลัพธ์ในการแข่งขันของ mari andersson คืออะไร?",
    "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_en": "What's the loss of the game with the opponent of the Nationals with a score of 7-1?",
    "question_th": "ในเกมที่ฝ่ายตรงข้ามของทีมชาติแพ้ไปด้วยสกอร์ 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_en": "Which opponent has a record of 70-52?",
    "question_th": "คู่ต่อสู้คนไหนมีสถิติ 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_en": "What is the attendance of the game that has the opponent of The Nationals with a record of 68-51?",
    "question_th": "การพบกันของเกมที่คู่ต่อสู้ของเดอะ เนชันส์ มีสถิติ 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_en": "What's the attendance of the game with a score of 5-4?",
    "question_th": "ผู้เข้าชมเกมด้วยสกอร์ 5-4 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_52 (attendance VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_60 WHERE record = \"64-51\"",
    "question_en": "Who's the opponent of the game with the record 64-51?",
    "question_th": "คู่ต่อสู้ของเกมนี้คือใครด้วยสถิติ 64-51?",
    "context": "CREATE TABLE table_name_60 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_41 WHERE game < 54",
    "question_en": "Who were the opponents in games before number 54?",
    "question_th": "ใครคือคู่ต่อสู้ในเกมก่อนหมายเลข 54?",
    "context": "CREATE TABLE table_name_41 (opponent VARCHAR, game INTEGER)"
  },
  {
    "answer": "SELECT score FROM table_name_83 WHERE player = \"bert yancey\"",
    "question_en": "what was the score of bert yancey",
    "question_th": "เบิร์ต แยนซีย์ได้คะแนนเท่าไหร่",
    "context": "CREATE TABLE table_name_83 (score VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT length_fuel FROM table_name_22 WHERE quantity = 30",
    "question_en": "What is the Length/Fuel of the bus with a Quantity of 30?",
    "question_th": "ความยาว/เชื้อเพลิงของรถบัสที่มีปริมาณ 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_en": "What is the Length/Fuel of the bus built between 2000-2003 with a high Floor Styling?",
    "question_th": "รถบัสที่สร้างขึ้นระหว่างปี 2000-2003 มีรูปลักษณ์แบบพื้นสูงมีความยาว/เชื้อเพลิงเป็นเท่าใด",
    "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_en": "In what Venue was the game with a Friendly Competition and 1 Goal played?",
    "question_th": "เกมที่มีการแข่งขันนัดกระชับมิตรและได้ 1 ประตูเกิดขึ้นที่สนามใด?",
    "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_en": "What is the amount of money that a +5 to par with a score of 76-69-70-70=285?",
    "question_th": "จำนวนเงินที่ +5 พาร์ด้วยคะแนน 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_en": "What is the name of the player with a 71-69-71-69=280 score?",
    "question_th": "นักเตะที่มีคะแนน 71-69-71-69=280 ชื่ออะไรครับ?",
    "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_en": "Which average Game # has a Home of san jose, and Points smaller than 71?",
    "question_th": "เกม # โดยเฉลี่ยใดที่มีเจ้าบ้านซานโฮเซ่ และแต้มน้อยกว่า 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_en": "Which Home has a Game # of 59?",
    "question_th": "บ้านไหนมีเกม # 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_en": "Which Visitor has a Game # larger than 62, and a Date of february 25?",
    "question_th": "ผู้เยี่ยมชมรายใดที่มีเกม # ใหญ่กว่า 62 และวันที่ 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_en": "with delivery date of 2001 2001 what is the owns?",
    "question_th": "มีกำหนดส่งมอบปี 2544 2544 ของอะไรเป็นของตัวเอง?",
    "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_en": "with delivery date of 2001 2001 what is gross tonnage?",
    "question_th": "โดยมีกำหนดส่งมอบในปี 2544 2544 น้ำหนักรวมคืออะไร?",
    "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_en": "with delivery date 1997 1997 what is the owns?",
    "question_th": "มีกำหนดส่งของ 2540 2540 ของมีอะไรบ้าง?",
    "context": "CREATE TABLE table_name_65 (owns VARCHAR, delivery_date VARCHAR)"
  },
  {
    "answer": "SELECT present_conference FROM table_name_5 WHERE location = \"gainesville, florida\"",
    "question_en": "Which conference does the school from Gainesville, Florida, play in?",
    "question_th": "โรงเรียนจากเมืองเกนส์วิลล์ รัฐฟลอริดา เข้าร่วมการประชุมใดบ้าง",
    "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_en": "What is the number of enrollments for teams named the Buccaneers founded before 1911?",
    "question_th": "จำนวนการลงทะเบียนสำหรับทีมชื่อ Buccaneers ที่ก่อตั้งก่อนปี 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_en": "What is the highest chart number for the song Yardbirds aka Roger the Engineer?",
    "question_th": "หมายเลขชาร์ตสูงสุดสำหรับเพลง Yardbirds หรือที่รู้จักในชื่อ 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_en": "What is the average chart number for 11/1965?",
    "question_th": "เลขกราฟเฉลี่ยวันที่ 11/65 คือเท่าไร?",
    "context": "CREATE TABLE table_name_97 (chart_no INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT origin FROM table_name_84 WHERE chart_no = 52",
    "question_en": "What is origin country for a title that charted at 52?",
    "question_th": "ประเทศต้นทางสำหรับชื่อที่ติดอันดับ 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_en": "What is the Record of the Game after 40 with New York Rangers as Opponent?",
    "question_th": "บันทึกของเกมหลัง 40 ปี กับนิวยอร์ก เรนเจอร์ส เป็นคู่ต่อสู้เป็นอย่างไร?",
    "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_en": "When did Adam Thompson play in the final?",
    "question_th": "อดัม ทอมป์สันเล่นในรอบชิงชนะเลิศเมื่อไหร่?",
    "context": "CREATE TABLE table_name_47 (date VARCHAR, opponent_in_the_final VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_84 WHERE tournament = \"lagos\"",
    "question_en": "When was the Lagos tournament?",
    "question_th": "การแข่งขันลากอสจัดขึ้นเมื่อไหร่?",
    "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_en": "What was the score against the phillies on may 24?",
    "question_th": "สกอร์กับอีเกิลส์เมื่อวันที่ 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_en": "Opponent of new england patriots had what attendance?",
    "question_th": "ฝ่ายตรงข้ามของผู้รักชาตินิวอิงแลนด์เข้าร่วมอะไรบ้าง?",
    "context": "CREATE TABLE table_name_13 (attendance VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_58 WHERE attendance = \"55,340\"",
    "question_en": "Attendance of 55,340 had what opponent?",
    "question_th": "ผู้เข้าร่วม 55,340 คนมีฝ่ายตรงข้ามคนไหน?",
    "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_en": "Week smaller than 4, and a Game Site of rca dome, and a Opponent of new england patriots involves what date?",
    "question_th": "สัปดาห์ที่น้อยกว่า 4 และเว็บไซต์เกมของโดม rca และฝ่ายตรงข้ามของผู้รักชาติอังกฤษคนใหม่เกี่ยวข้องกับวันที่เท่าไร?",
    "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–8\"",
    "question_en": "Record of 0–8 had what result?",
    "question_th": "สถิติ 0–8 ส่งผลอย่างไร?",
    "context": "CREATE TABLE table_name_33 (result VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT MIN(week) FROM table_name_25 WHERE record = \"0–8\"",
    "question_en": "Record of 0–8 had what lowest week?",
    "question_th": "บันทึก 0–8 มีสัปดาห์ต่ำสุดเท่าใด",
    "context": "CREATE TABLE table_name_25 (week INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_51 WHERE visitor = \"pittsburgh\"",
    "question_en": "What was the score when the visitor was pittsburgh?",
    "question_th": "คะแนนเมื่อผู้มาเยือนคือพิตส์เบิร์กเป็นเท่าใด",
    "context": "CREATE TABLE table_name_51 (score VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT decision FROM table_name_18 WHERE date = \"november 26\"",
    "question_en": "What was the decision on November 26?",
    "question_th": "การตัดสินใจในวันที่ 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_en": "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?",
    "question_th": "การจัดอันดับ USN 2013 โดยที่ BW 2013 อยู่ในอันดับที่น้อยกว่า 1,000 อันดับ Forbes 2011 มีอันดับที่มากกว่า 17 และ CNN 2011 อยู่ในอันดับที่น้อยกว่า 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_en": "What is the average AE 2011 ranking with a Forbes 2011 ranking of 24 and a FT 2011 ranking less than 44?",
    "question_th": "อันดับเฉลี่ยของ AE 2011 โดย Forbes 2011 อันดับ 24 และ FT 2011 อันดับน้อยกว่า 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_en": "Who did they play at lincoln financial field at 8:30 (ET) after week 14?",
    "question_th": "พวกเขาเล่นใครที่สนามการเงินลินคอล์นเวลา 8:30 น. (ET) หลังจากสัปดาห์ที่ 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_en": "What is the average rank for nations with fewer than 0 gold medals?",
    "question_th": "อันดับเฉลี่ยของประเทศที่มีเหรียญทองน้อยกว่า 0 เหรียญคือเท่าไร?",
    "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_en": "What is the total number of bronze medals with more than 1 medal total and fewer than 1 silver medal?",
    "question_th": "จำนวนเหรียญทองแดงที่มีมากกว่า 1 เหรียญแต่น้อยกว่า 1 เหรียญเงินคือเท่าใด",
    "context": "CREATE TABLE table_name_8 (bronze VARCHAR, total VARCHAR, silver VARCHAR)"
  },
  {
    "answer": "SELECT MAX(rank) FROM table_name_43 WHERE silver < 0",
    "question_en": "What is the highest rank of a nation with fewer than 0 silver medals?",
    "question_th": "อันดับสูงสุดของประเทศที่มีเหรียญเงินน้อยกว่า 0 เหรียญคืออะไร?",
    "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_en": "Which Bats have a First of josh, and Throws of r, and a Surname of cakebread?",
    "question_th": "ค้างคาวตัวไหนมีอักษรตัวแรกของจอช และอักษร r และมีนามสกุลของขนมปังเค้ก",
    "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_en": "Which DOB has Throws of r, and a Position of c, and a First of torey?",
    "question_th": "DOB ใดที่มีการโยน r และตำแหน่ง c และอันดับแรกของ 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_en": "Which DOB has a Surname of cresswell?",
    "question_th": "DOB ใดมีนามสกุล 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_en": "Which DOB has Bats of r, and Throws of r, and a Position of rhp, and a First of john?",
    "question_th": "DOB ใดมี Bats ของ r และ Throws ของ r และตำแหน่ง rhp และอันดับหนึ่งของ 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_en": "Which Position did Ruzic play?",
    "question_th": "รูซิชเล่นตำแหน่งไหน?",
    "context": "CREATE TABLE table_name_30 (position VARCHAR, surname VARCHAR)"
  },
  {
    "answer": "SELECT throws FROM table_name_77 WHERE first = \"torey\"",
    "question_en": "How many throws did Torey have?",
    "question_th": "โทเรย์ขว้างกี่ครั้ง?",
    "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_en": "Which Ties is the highest one that has Losses smaller than 9, and Starts of 26, and Wins smaller than 21?",
    "question_th": "เสมอกันสูงสุดที่มีการแพ้น้อยกว่า 9 และเริ่มต้นที่ 26 และชนะน้อยกว่า 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_en": "Which Win % has a Name of tony rice, and Wins smaller than 28?",
    "question_th": "% วินใดที่มีชื่อโทนี่ ไรซ์ และวินน้อยกว่า 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_en": "Which Wins have a Win % smaller than 0.8270000000000001, and a Name of rick mirer, and Ties smaller than 1?",
    "question_th": "การชนะใดที่มีการชนะ % น้อยกว่า 0.8270000000000001 และชื่อของ rick mirer และเสมอน้อยกว่า 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_en": "How many Losses have a Name of blair kiel?",
    "question_th": "แบลร์คีลมีผู้สูญเสียกี่คน?",
    "context": "CREATE TABLE table_name_45 (losses VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT AVG(losses) FROM table_name_39 WHERE name = \"jimmy clausen\"",
    "question_en": "Which Losses have a Name of jimmy clausen?",
    "question_th": "การสูญเสียใดมีชื่อของ 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_en": "what is the number of attendance on june 24",
    "question_th": "วันที่ 24 มิถุนายน มีผู้เข้าร่วมจำนวนเท่าใด",
    "context": "CREATE TABLE table_name_8 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_95 WHERE home = \"dallas\"",
    "question_en": "Home of dallas happened on what date?",
    "question_th": "Home of Dallas เกิดขึ้นวันไหน?",
    "context": "CREATE TABLE table_name_95 (date VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_39 WHERE home = \"buffalo\"",
    "question_en": "Home of buffalo happened on what date?",
    "question_th": "บ้านควาย เกิดขึ้นวันไหน?",
    "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_en": "Visitor of dallas, and a Date of june 12 had what highest attendance?",
    "question_th": "ผู้มาเยือนดัลลัส และวันที่ 12 มิถุนายน มีผู้เข้าชมสูงสุดที่ใด",
    "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_en": "On which date was the position less than 4 at Piraeus?",
    "question_th": "ตำแหน่งน้อยกว่า 4 ที่ 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_en": "Which team had 64 laps and 13 points?",
    "question_th": "ทีมไหนได้ 64 รอบ 13 แต้ม?",
    "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_en": "How many laps did the team with a time/retired of +1.906 have?",
    "question_th": "ทีมที่มีเวลา/เกษียณ +1.906 มีกี่รอบ?",
    "context": "CREATE TABLE table_name_90 (laps VARCHAR, time_retired VARCHAR)"
  },
  {
    "answer": "SELECT time_retired FROM table_name_62 WHERE grid = 14",
    "question_en": "What is the time/retired of the team with a grid of 14?",
    "question_th": "เวลา/เกษียณของทีมที่มีตาราง 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_en": "What is the lowest grid of pkv racing, which had 13 points and less than 64 laps?",
    "question_th": "ตารางต่ำสุดของการแข่ง pkv ซึ่งมี 13 แต้มและน้อยกว่า 64 รอบคืออะไร?",
    "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_en": "What is the total grid of the team with a time/retired of +7.346?",
    "question_th": "ตารางรวมของทีมที่มีเวลา/เกษียณอยู่ที่ +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à\"",
    "question_en": "What is the grid of pkv racing with the driver oriol servià?",
    "question_th": "ตารางการแข่งขัน pkv กับคนขับ oriol servià คืออะไร?",
    "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_en": "When Cancelable of yes, bubble of yes and a Category of keyboard, what was the Attribute?",
    "question_th": "เมื่อ Cancelable ของ yes ฟองของ yes และ Category ของคีย์บอร์ด 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_en": "When Bubbles of no, and a Category of miscellaneous, and a Type of propertychange, what was the Cancelable?",
    "question_th": "เมื่อ Bubbles of no และหมวดหมู่เบ็ดเตล็ด และประเภทของการเปลี่ยนแปลงคุณสมบัติ 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_en": "When Type was rowexit what was the Category?",
    "question_th": "เมื่อ Type เป็น rowexit หมวดหมู่คืออะไร",
    "context": "CREATE TABLE table_name_88 (category VARCHAR, type VARCHAR)"
  },
  {
    "answer": "SELECT category FROM table_name_72 WHERE cancelable = \"yes\" AND type = \"drag\"",
    "question_en": "When Cancelable of yes, and a Type of drag, what was the Category?",
    "question_th": "เมื่อยกเลิกได้ และประเภทการลาก หมวดหมู่คืออะไร",
    "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_en": "When Event has Bubbles of yes, Cancelable of yes, Category of mouse, and a Type of contextmenu what is the Attribute?",
    "question_th": "เมื่อเหตุการณ์มีบับเบิ้ลเป็นใช่ ยกเลิกได้ ประเภทเมาส์ และประเภทของเมนูบริบท คุณสมบัติคืออะไร",
    "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_en": "Let's say Type is of datasetcomplete, what is the Attribute?",
    "question_th": "สมมติว่า Type เป็น datasetcomplete แล้ว 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_en": "What is the name of the parish that has a former local authority of St Neots urban district?",
    "question_th": "ตำบลที่มีอดีตเจ้าพนักงานท้องถิ่นของเขตเมืองเซนต์นีออตส์ชื่ออะไร?",
    "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_en": "What district is the parish who had the South Cambridgeshire rural district as the former local authority?",
    "question_th": "เขตใดเป็นตำบลที่มีเขตชนบททางใต้ของเคมบริดจ์เชียร์เป็นอดีตหน่วยงานท้องถิ่น?",
    "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_en": "What district is St Martin's Without parish in with a population less than 75?",
    "question_th": "เขต St Martin's Without Parish อยู่ในเขตใดที่มีประชากรน้อยกว่า 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_en": "Who was the home team when FK kom were the guests?",
    "question_th": "เมื่อเอฟเค คมเป็นแขกรับเชิญเจ้าบ้านใคร?",
    "context": "CREATE TABLE table_name_84 (home VARCHAR, guest VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_65 WHERE guest = \"fk ibar\"",
    "question_en": "What venue was the match against the guest team, FK ibar, played at?",
    "question_th": "การแข่งขันกับทีมรับเชิญ FK ibar จัดขึ้นที่สนามใด?",
    "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_en": "What's the Score with a Home of Scotland and Date of 24 February?",
    "question_th": "คะแนนของทีมเหย้าแห่งสกอตแลนด์และวันที่ 24 กุมภาพันธ์เป็นเท่าไหร่?",
    "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_en": "What round was john sutro, tackle, drafter with a pick lower than 79?",
    "question_th": "จอห์น ซูโตร, แท็คเกิ้ล, ดราฟเตอร์ ที่ปิ๊กต่ำกว่า 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_en": "What pick was roger holdinsky?",
    "question_th": "โรเจอร์ โฮลดินสกี้ เลือกอะไร?",
    "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_en": "When was chuck morris, back, drafted?",
    "question_th": "ชัค มอร์ริส กลับมาถูกเกณฑ์ทหารเมื่อไหร่?",
    "context": "CREATE TABLE table_name_51 (pick INTEGER, position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT AVG(round) FROM table_name_5 WHERE school = \"xavier\"",
    "question_en": "What wss the average round drafted for xavier players?",
    "question_th": "รอบเฉลี่ยที่ร่างไว้สำหรับผู้เล่น xavier คืออะไร?",
    "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_en": "What is the urban sub-area with an East Dunbartonshire council area and a population of 19,020?",
    "question_th": "พื้นที่ย่อยในเมืองที่มีพื้นที่สภา East Dunbartonshire และมีประชากร 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_en": "What is the council area for the Larkhall urban sub-area?",
    "question_th": "พื้นที่สภาสำหรับพื้นที่ย่อยเมือง Larkhall คืออะไร?",
    "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_en": "What is the population of the East Kilbride urban sub-area?",
    "question_th": "ประชากรในพื้นที่ย่อยเมือง East Kilbride เป็นจำนวนเท่าใด",
    "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_en": "Which urban sub-area has a population of 16,140?",
    "question_th": "เขตอนุเมืองใดมีประชากร 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_en": "What is the record of the cubs on July 19?",
    "question_th": "บันทึกของลูกหมีในวันที่ 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_en": "What nationality is Northwood School (N.Y.)?",
    "question_th": "Northwood School (NY) มีสัญชาติอะไร",
    "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_en": "What are incumbent William Vandever's results?",
    "question_th": "ผลลัพธ์ของ William Vandever ผู้ดำรงตำแหน่งคืออะไร?",
    "context": "CREATE TABLE table_name_81 (result VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT first_elected FROM table_name_73 WHERE result = \"democratic gain\"",
    "question_en": "Who was the first person elected from Democratic GAIN?",
    "question_th": "ใครคือบุคคลแรกที่ได้รับเลือกจาก 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_en": "What was the result for incumbent Joseph McKenna who was first elected in 1884?",
    "question_th": "อะไรคือผลลัพธ์ของผู้ดำรงตำแหน่งโจเซฟ แมคเคนนาที่ได้รับเลือกครั้งแรกในปี พ.ศ. 2427",
    "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_en": "When was republican incumbent Joseph McKenna first elected?",
    "question_th": "โจเซฟ แมคเคนนา ผู้ดำรงตำแหน่งพรรครีพับลิกันได้รับเลือกครั้งแรกเมื่อใด",
    "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_en": "what is the lowest capacity in grodno",
    "question_th": "ความจุต่ำสุดใน grodno คือเท่าไร",
    "context": "CREATE TABLE table_name_79 (capacity INTEGER, location VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_79 WHERE january > 18 AND record = \"35–15–1\"",
    "question_en": "Which Score has January larger than 18 and a Record of 35–15–1?",
    "question_th": "คะแนนใดที่มีเดือนมกราคมมากกว่า 18 และสถิติ 35–15–1",
    "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_en": "How many starts are associated with an oldsmobile engine, 21 finishes and before 2001?",
    "question_th": "มีการสตาร์ทที่เกี่ยวข้องกับเครื่องยนต์ oldsmobile กี่ครั้ง 21 ครั้งเสร็จสิ้นและก่อนปี 2544",
    "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_en": "What was the finish associated with under 11 starts, a honda engine, before 2003?",
    "question_th": "เครื่องยนต์ฮอนด้าที่ออกสตาร์ทได้ต่ำกว่า 11 ครั้งต้องเสร็จสิ้นก่อนปี 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_en": "what is the director of la ronde",
    "question_th": "ผู้กำกับของ 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_en": "What is the lowest number of people attending the game on May 30 with Colorado as the visitors?",
    "question_th": "จำนวนผู้เข้าร่วมเกมในวันที่ 30 พฤษภาคมโดยมีโคโลราโดเป็นผู้มาเยือนน้อยที่สุดคือเท่าใด",
    "context": "CREATE TABLE table_name_27 (attendance INTEGER, visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MIN(attendance) FROM table_name_67 WHERE home = \"colorado\"",
    "question_en": "What is the lowest number of people attending the game where Colorado was the home team?",
    "question_th": "จำนวนผู้เข้าร่วมเกมที่โคโลราโดเป็นเจ้าบ้านน้อยที่สุดคือเท่าใด?",
    "context": "CREATE TABLE table_name_67 (attendance INTEGER, home VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_24 WHERE date = \"may 26\"",
    "question_en": "What was the score of the game on May 26?",
    "question_th": "สกอร์เกมวันที่ 26 พ.ค. เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_24 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MIN(round) FROM table_name_9 WHERE player = \"adam wiesel\"",
    "question_en": "What is the lowest round that Adam Wiesel was picked?",
    "question_th": "อดัม วีเซล เลือกรอบต่ำสุดเท่าไหร่?",
    "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_en": "What college, junior, or club team did defence player Rory Fitzpatrick play for?",
    "question_th": "Rory Fitzpatrick ผู้เล่นแนวรับคนใดที่วิทยาลัย รุ่นน้อง หรือสโมสรเล่นให้",
    "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_en": "What was the score for 1911?",
    "question_th": "คะแนนในปี 1911 คืออะไร?",
    "context": "CREATE TABLE table_name_10 (score VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_47 WHERE player = \"tiger woods\"",
    "question_en": "what country has tiger woods",
    "question_th": "ประเทศไหนมีไม้เสือ",
    "context": "CREATE TABLE table_name_47 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_63 WHERE score = 69 - 70 - 72 = 211",
    "question_en": "what country has a score of 69-70-72=211?",
    "question_th": "ประเทศใดมีคะแนน 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_en": "what player scored 69-72-68=209?",
    "question_th": "นักเตะคนไหนทำคะแนนได้ 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_en": "What is the largest number for earnings for tom watson when ranked more than 2?",
    "question_th": "อะไรคือตัวเลขที่ใหญ่ที่สุดสำหรับรายได้ของทอม วัตสัน เมื่ออยู่ในอันดับที่มากกว่า 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_en": "Which 1st (m) is the lowest one that has a Nationality of aut, and Points larger than 273.5?",
    "question_th": "อันดับ 1 (m) ใดต่ำสุดที่มีสัญชาติออโต และคะแนนมากกว่า 273.5",
    "context": "CREATE TABLE table_name_28 (nationality VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT MAX(wins) FROM table_name_36 WHERE poles < 0",
    "question_en": "What is the highest number of wins associated with under 0 poles?",
    "question_th": "จำนวนชัยชนะสูงสุดที่เกี่ยวข้องกับโพลต่ำกว่า 0 คือเท่าใด",
    "context": "CREATE TABLE table_name_36 (wins INTEGER, poles INTEGER)"
  },
  {
    "answer": "SELECT poles FROM table_name_57 WHERE season = \"2006\" AND wins < 2",
    "question_en": "How many poles did he have in 2006 with under 2 wins?",
    "question_th": "เขามีกี่โพลในปี 2549 โดยชนะต่ำกว่า 2 ครั้ง?",
    "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_en": "What is the fewest number of wins when he has 3 poles in 2010?",
    "question_th": "จำนวนชัยชนะน้อยที่สุดเมื่อเขามี 3 โพลในปี 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_en": "What's listed for the 2012 that has a 2011 of 7.7% with a 2008 of 7.9%?",
    "question_th": "มีอะไรระบุไว้สำหรับปี 2555 ที่มีอัตราปี 2554 ที่ 7.7% และปี 2551 ที่ 7.9%",
    "context": "CREATE TABLE table_name_88 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_8 WHERE 2005 = \"4.2%\"",
    "question_en": "What is listed for the 2011 that has a 2005 of 4.2%?",
    "question_th": "รายการอะไรสำหรับปี 2554 ที่มีปี 2548 อยู่ที่ 4.2%?",
    "context": "CREATE TABLE table_name_8 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2012 FROM table_name_86 WHERE 2011 = \"28.9%\"",
    "question_en": "What is listed for the 2012 that has a 2011 of 28.9%?",
    "question_th": "รายการอะไรสำหรับปี 2012 ที่มีปี 2011 ที่ 28.9%?",
    "context": "CREATE TABLE table_name_86 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2005 FROM table_name_35 WHERE 2012 = \"4.2%\"",
    "question_en": "What is listed for the 2005 that has a 2012 of 4.2%?",
    "question_th": "รายการอะไรในปี 2548 ที่มีปี 2555 อยู่ที่ 4.2%?",
    "context": "CREATE TABLE table_name_35 (Id VARCHAR)"
  },
  {
    "answer": "SELECT favorite_professional_sport FROM table_name_91 WHERE 2005 = \"17.1%\"",
    "question_en": "What is listed the Favorite Professional Sport that's got a 2005 of 17.1%?",
    "question_th": "อะไรคือรายการกีฬาอาชีพยอดนิยมที่มีคะแนน 17.1% ในปี 2548?",
    "context": "CREATE TABLE table_name_91 (favorite_professional_sport VARCHAR)"
  },
  {
    "answer": "SELECT favorite_professional_sport FROM table_name_87 WHERE 2008 = \"8.9%\"",
    "question_en": "What is listed as the Favorite Professional Sport that has a 2008 of 8.9%?",
    "question_th": "กีฬาอาชีพยอดนิยมที่มีคะแนน 8.9% ในปี 2551 คืออะไร?",
    "context": "CREATE TABLE table_name_87 (favorite_professional_sport VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_64 WHERE record = \"79-77\"",
    "question_en": "What was the score of the game that led to a 79-77 record?",
    "question_th": "คะแนนของเกมที่นำไปสู่สถิติ 79-77 คืออะไร?",
    "context": "CREATE TABLE table_name_64 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_95 WHERE loss = \"rosales (1-1)\"",
    "question_en": "What was the record after the game in which Rosales (1-1) took the loss?",
    "question_th": "อะไรคือสถิติหลังเกมที่โรซาเลส (1-1) พ่ายแพ้?",
    "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_en": "Which supercentenarians were born in Manitoba?",
    "question_th": "Supercentenarians คนใดที่เกิดในแมนิโทบา",
    "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_en": "What is the average age as of February 1, 2014 for the supercentenarians born in the United States?",
    "question_th": "อายุเฉลี่ย ณ วันที่ 1 กุมภาพันธ์ 2014 สำหรับผู้ที่มีอายุเกินร้อยปีที่เกิดในสหรัฐอเมริกาคือเท่าใด",
    "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_en": "Which 2010 Tournament has a 2001 of grand slam tournaments?",
    "question_th": "การแข่งขันปี 2010 รายการใดที่มีการแข่งขันแกรนด์สแลมในปี 2544",
    "context": "CREATE TABLE table_name_36 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2006 FROM table_name_15 WHERE 2004 = \"a\" AND 2002 = \"not tier i\"",
    "question_en": "Which 2006 Tournament has a 2004, and a 2002 of not tier i?",
    "question_th": "ทัวร์นาเมนต์ปี 2006 ใดที่มีปี 2004 และปี 2002 ไม่ใช่ระดับ i",
    "context": "CREATE TABLE table_name_15 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2008 FROM table_name_46 WHERE 2007 = \"a\" AND 2010 = \"qf\"",
    "question_en": "Which 2008 Tournament has a 2007 of a and a 2010 of qf?",
    "question_th": "การแข่งขันปี 2008 ใดที่มี qf ปี 2007 และ 2010",
    "context": "CREATE TABLE table_name_46 (Id VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_82 WHERE 2002 = \"grand slam tournaments\"",
    "question_en": "Which Tournament has a 2002 of grand slam tournaments?",
    "question_th": "ทัวร์นาเมนต์ใดที่มีการแข่งขันแกรนด์สแลมในปี 2545",
    "context": "CREATE TABLE table_name_82 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2000 FROM table_name_57 WHERE 2002 = \"not tier i\" AND 2006 = \"2r\"",
    "question_en": "Which 2000 Tournament has a 2002 of not tier i, and a 2006 of 2r?",
    "question_th": "2000 Tournament ใดที่มีปี 2002 ไม่ใช่เทียร์ i และปี 2006 เป็น 2r",
    "context": "CREATE TABLE table_name_57 (Id VARCHAR)"
  },
  {
    "answer": "SELECT language FROM table_name_7 WHERE launch = 2006 AND hanzi = \"青海电视台藏语综合频道\"",
    "question_en": "Which language's launch was in 2006 when then hanzi was 青海电视台藏语综合频道?",
    "question_th": "ภาษาใดเปิดตัวในปี 2549 เมื่อฮันซีเป็น 青海电视台藏语综合频道?",
    "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_en": "Which hanzi's name is nmtv mongolian satellite television?",
    "question_th": "ฮันซีชื่ออะไรคือโทรทัศน์ดาวเทียมมองโกเลีย nmtv?",
    "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_en": "Which hanzi's launch is before 2009, when the language was tibetan, and the name was qinghai tibetian general channel?",
    "question_th": "การเปิดตัวของ Hanzi ใดคือก่อนปี 2009 เมื่อภาษาเป็นภาษาทิเบตและชื่อช่องทั่วไปของทิเบตชิงไห่?",
    "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_en": "What Team had a 1:24.365 Qual 2?",
    "question_th": "ทีมใดทำเวลาได้ 1:24.365 รอบคัดเลือก 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_en": "What Team had a 1:24.152 Best?",
    "question_th": "ทีมใดทำเวลาได้ดีที่สุด 1:24.152?",
    "context": "CREATE TABLE table_name_51 (team VARCHAR, best VARCHAR)"
  },
  {
    "answer": "SELECT best FROM table_name_47 WHERE name = \"robert doornbos\"",
    "question_en": "What was Robert Doornbos' Best?",
    "question_th": "อะไรคือผลงานที่ดีที่สุดของ Robert Doornbos?",
    "context": "CREATE TABLE table_name_47 (best VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT best FROM table_name_47 WHERE name = \"alex figge\"",
    "question_en": "What was Alex Figge's Best?",
    "question_th": "อะไรคือผลงานที่ดีที่สุดของ Alex Figge?",
    "context": "CREATE TABLE table_name_47 (best VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_41 WHERE best = \"1:25.602\"",
    "question_en": "What Team had a 1:25.602 Best?",
    "question_th": "ทีมใดทำเวลาได้ดีที่สุด 1:25.602?",
    "context": "CREATE TABLE table_name_41 (team VARCHAR, best VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_59 WHERE qual_1 = \"1:26.056\"",
    "question_en": "What was the Name of the person with a Qual 1 of 1:26.056?",
    "question_th": "คนที่มีคะแนน 1 ใน 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_en": "How many picks were there for the Bentley team?",
    "question_th": "มีกี่ตัวเลือกสำหรับทีมเบนท์ลีย์?",
    "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_en": "What is the largest round number for Dan Connor, the player?",
    "question_th": "แดน คอนเนอร์ ผู้เล่นคือหมายเลขรอบใดมากที่สุด?",
    "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_en": "What is the largest round number for the dt position when the pick number is bigger than 181?",
    "question_th": "หมายเลขกลมที่ใหญ่ที่สุดสำหรับตำแหน่ง dt เมื่อหมายเลขเลือกมากกว่า 181 คืออะไร",
    "context": "CREATE TABLE table_name_54 (round INTEGER, position VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT circuit FROM table_name_25 WHERE round = \"italy\"",
    "question_en": "what circuit is in italy",
    "question_th": "วงจรอะไรในอิตาลี",
    "context": "CREATE TABLE table_name_25 (circuit VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT AVG(pick) FROM table_name_59 WHERE player = \"clarence mason\"",
    "question_en": "What is the average pick for clarence mason?",
    "question_th": "ค่าเฉลี่ยของคลาเรนซ์ เมสันที่เลือกคือเท่าไร?",
    "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_en": "What is the frequency for the city of Lamar, Colorado?",
    "question_th": "ความถี่ของเมืองลามาร์ รัฐโคโลราโด คืออะไร?",
    "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_en": "What is the average ERP W for callsign K207BK?",
    "question_th": "ERP W เฉลี่ยสำหรับ 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_en": "Which callsign has ERP W of 99 and a frequency of greater than 88.7MHz?",
    "question_th": "สัญญาณเรียกใดมี ERP W 99 และความถี่มากกว่า 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_en": "Which city has ERP W under 14 and a frequency over 93.7MHz?",
    "question_th": "เมืองใดมี ERP W ต่ำกว่า 14 และความถี่มากกว่า 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_en": "What were the total number of field goals when there were 0 touchdowns and 2 extra points?",
    "question_th": "จำนวนการยิงประตูทั้งหมดเมื่อมี 0 ทัชดาวน์ และ 2 คะแนนพิเศษคือเท่าใด?",
    "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_en": "How many field goals did Carter get when he had 0 extra points?",
    "question_th": "คาร์เตอร์ได้คะแนนพิเศษ 0 แต้มจากการยิงประตูได้กี่ประตู?",
    "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_en": "What is the highest amount of extra points someone got when they scored 28 points but had 0 field goals?",
    "question_th": "คะแนนพิเศษสูงสุดที่บางคนได้รับเมื่อพวกเขาทำคะแนนได้ 28 คะแนนแต่เสียประตู 0 ครั้งคือเท่าใด",
    "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_en": "What is the average field goal someone has when they have 0 extra points but more than 5 touch downs?",
    "question_th": "อะไรคือค่าเฉลี่ยการยิงประตูที่ใครบางคนมีเมื่อพวกเขามีแต้มพิเศษ 0 แต้มแต่ทำทัชดาวน์มากกว่า 5 ครั้ง?",
    "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_en": "What is the lowest number of wins with more than 113 points in 4th rank?",
    "question_th": "จำนวนชัยชนะต่ำสุดที่มีมากกว่า 113 แต้มในอันดับที่ 4 คืออะไร?",
    "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_en": "How many wins had less than 91 points in 25th rank?",
    "question_th": "ชัยชนะกี่ครั้งที่มีคะแนนน้อยกว่า 91 ในอันดับที่ 25?",
    "context": "CREATE TABLE table_name_44 (wins VARCHAR, points VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT wins FROM table_name_52 WHERE year = 1992",
    "question_en": "How many wins in 1992?",
    "question_th": "ชนะกี่ครั้งในปี 1992?",
    "context": "CREATE TABLE table_name_52 (wins VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(wins) FROM table_name_31 WHERE rank = \"6th\"",
    "question_en": "How many wins occurred for 6th rank?",
    "question_th": "มีชัยชนะกี่ครั้งสำหรับอันดับที่ 6?",
    "context": "CREATE TABLE table_name_31 (wins VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_39 WHERE driver = \"heikki kovalainen\"",
    "question_en": "Who was the constructor of the car driven by Heikki Kovalainen?",
    "question_th": "ใครคือผู้สร้างรถยนต์ที่ขับเคลื่อนโดย Heikki Kovalainen?",
    "context": "CREATE TABLE table_name_39 (constructor VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT reg_season FROM table_name_31 WHERE division = 2",
    "question_en": "Which Reg Season has a Division of 2?",
    "question_th": "Reg Season ใดที่มีดิวิชั่น 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_en": "Which Year is the highest one that has a Reg Season of 3rd, western, and a Division larger than 2?",
    "question_th": "ปีใดคือปีที่สูงที่สุดที่มีฤดูกาล Reg ที่ 3 ตะวันตก และมีดิวิชั่นมากกว่า 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_en": "Which year is the lowest one when the playoffs did not qualify?",
    "question_th": "ปีไหนต่ำที่สุดเมื่อไม่ผ่านเข้ารอบตัดเชือก?",
    "context": "CREATE TABLE table_name_93 (year INTEGER, playoffs VARCHAR)"
  },
  {
    "answer": "SELECT AVG(year) FROM table_name_9 WHERE reg_season = \"3rd, western\"",
    "question_en": "Which Year has a Reg Season of 3rd, western?",
    "question_th": "ปีใดมีฤดูกาล Reg ที่ 3 ตะวันตก",
    "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_en": "Which Division that has a Reg Season of 1st, western, and Playoffs of champions, and a Year smaller than 2013?",
    "question_th": "ดิวิชั่นใดที่มีฤดูกาล Reg เป็นที่ 1, ตะวันตก และรอบตัดเชือกของแชมเปี้ยน และหนึ่งปีที่น้อยกว่าปี 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_en": "Who was the opponent during the game that had more than 31,891 people in attendance?",
    "question_th": "คู่ต่อสู้ระหว่างเกมที่มีผู้เข้าร่วมมากกว่า 31,891 คนคือใคร?",
    "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_en": "What is the average attendance for the game before week 4 that was on october 16, 1955?",
    "question_th": "ผู้เข้าชมเกมโดยเฉลี่ยก่อนสัปดาห์ที่ 4 ของวันที่ 16 ตุลาคม พ.ศ. 2498 เป็นเท่าใด",
    "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_en": "Who was the opponent for the game on November 20, 1955?",
    "question_th": "คู่ต่อสู้ของเกมเมื่อวันที่ 20 พฤศจิกายน พ.ศ. 2498 คือใคร?",
    "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_en": "What is the highest number of successful defenses in brandon, florida and a reign less than 1?",
    "question_th": "การป้องกันที่ประสบความสำเร็จสูงสุดในแบรนดอน ฟลอริดา และการครองราชย์น้อยกว่า 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¹ = \"1:1\"",
    "question_en": "What was the date of the game against Norway with a 1:1 result?",
    "question_th": "วันที่เกมกับนอร์เวย์ด้วยผล 1:1 คือเมื่อใด?",
    "context": "CREATE TABLE table_name_31 (date VARCHAR, opponent VARCHAR, results¹ VARCHAR)"
  },
  {
    "answer": "SELECT type_of_game FROM table_name_17 WHERE results¹ = \"0:0\"",
    "question_en": "What type of game had a 0:0 result?",
    "question_th": "เกมประเภทใดที่มีผลการแข่งขัน 0:0?",
    "context": "CREATE TABLE table_name_17 (type_of_game VARCHAR, results¹ VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_5 WHERE results¹ = \"5:2\"",
    "question_en": "What city held that game with a 5:2 result?",
    "question_th": "เมืองใดจัดเกมนั้นด้วยผลการแข่งขัน 5:2?",
    "context": "CREATE TABLE table_name_5 (city VARCHAR, results¹ VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_29 WHERE record = \"1-2-1\"",
    "question_en": "What is the score of the game that has a record of 1-2-1?",
    "question_th": "สกอร์ของเกมที่มีสถิติ 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_en": "What is the team's record in games against the Hartford Whalers?",
    "question_th": "สถิติของทีมในเกมกับ 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_en": "What was the Record on Week 13 at the Hoosier Dome?",
    "question_th": "บันทึกในสัปดาห์ที่ 13 ที่ 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_en": "What was the Week on October 18, 1992?",
    "question_th": "สัปดาห์ที่ 18 ตุลาคม 2535 คืออะไร?",
    "context": "CREATE TABLE table_name_3 (week INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_25 WHERE record = \"16-6\"",
    "question_en": "What loss has 16-6 as the record?",
    "question_th": "แพ้อะไร 16-6 เป็นสถิติ?",
    "context": "CREATE TABLE table_name_25 (loss VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_73 WHERE record = \"4-2\"",
    "question_en": "What loss has 4-2 as the record?",
    "question_th": "แพ้อะไร 4-2 เป็นสถิติ?",
    "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_en": "What attendance has astros as the opponent, and april 29 as the date?",
    "question_th": "ผู้เข้าร่วมคนไหนที่มีแอสโทรสเป็นคู่ต่อสู้ และวันที่ 29 เมษายนเป็นวันที่?",
    "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_en": "Which Operator has a Width of 2.65 m, and a Type designation of m5000?",
    "question_th": "โอเปอเรเตอร์ใดที่มีความกว้าง 2.65 ม. และการกำหนดประเภทเป็น 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_en": "Which Width has a Number of vehicles larger than 15, and a Type designation of k5000?",
    "question_th": "ความกว้างใดมีจำนวนยานพาหนะมากกว่า 15 คัน และมีการกำหนดประเภทเป็น 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_en": "Which Number of vehicles has a Type designation of u5-25 (bi-directional)?",
    "question_th": "ยานพาหนะจำนวนใดที่มีการกำหนดประเภท u5-25 (สองทิศทาง)",
    "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_en": "Province of leinster, and a County of fingal has which irish name?",
    "question_th": "Province of Leinster และ County of Fingal มีชื่อเป็นภาษาไอริชว่าอะไร",
    "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ún (contae an dúin)\"",
    "question_en": "Irish name of an dún (contae an dúin) has what county town?",
    "question_th": "ชื่อภาษาไอริชของ dún (contae an dúin) มีเมืองใดบ้าง?",
    "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 árann (contae thiobraid árann)\"",
    "question_en": "Most populous city/town of clonmel, and a Irish name of tiobraid árann (contae thiobraid árann) is which region?",
    "question_th": "เมือง/เมืองของคลอนเมลที่มีประชากรมากที่สุด และชื่อภาษาไอริชของ tiobraid árann (contae thiobraid árann) คือภูมิภาคใด",
    "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ún na ngall (contae dhún na ngall)\"",
    "question_en": "Irish name of dún na ngall (contae dhún na ngall) has the most populous city/town?",
    "question_th": "ชื่อภาษาไอริชของ dún na ngall (contae dhún na ngall) มีเมือง/เมืองที่มีประชากรมากที่สุด?",
    "context": "CREATE TABLE table_name_46 (most_populous_city_town VARCHAR, irish_name VARCHAR)"
  },
  {
    "answer": "SELECT games FROM table_name_66 WHERE name = \"rubén limardo\"",
    "question_en": "Name the games for rubén limardo",
    "question_th": "ตั้งชื่อเกมให้ rubén 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_en": "Name the sport for men's light flyweight with medal of gold",
    "question_th": "ตั้งชื่อกีฬารุ่นไลท์ฟลายเวทชายด้วยเหรียญทอง",
    "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_en": "Tell me the name for men's featherweight and sport of weightlifting",
    "question_th": "บอกชื่อกีฬาเฟเธอร์เวทชายและกีฬายกน้ำหนักหน่อยสิ",
    "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_en": "Which details of journey had simon hoggart as a narrator?",
    "question_th": "รายละเอียดการเดินทางใดที่มีไซมอน ฮอกการ์ตเป็นผู้บรรยาย",
    "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_en": "Which countries visited had an episode number of less than 7 when Ray Gosling was the writer?",
    "question_th": "ประเทศใดที่ไปเยือนมีหมายเลขตอนน้อยกว่า 7 ตอนตอนที่เรย์ กอสลิ่งเป็นผู้เขียน?",
    "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_en": "How tall is Zipp Duncan?",
    "question_th": "Zipp Duncan สูงเท่าไหร่?",
    "context": "CREATE TABLE table_name_30 (height VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT AVG(games) AS ↑ FROM table_name_51 WHERE name = \"tony dixon\"",
    "question_en": "What is the average games of Tony Dixon?",
    "question_th": "เกมโดยเฉลี่ยของ 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_en": "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?",
    "question_th": "ผลรวมของการชนะโดยที่ 25 อันดับแรกคือ 6, 10 อันดับแรกมากกว่า 2 และหมายเลขการแข่งขันน้อยกว่า 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_en": "What is the total of cuts made where the top 25 is less than 6 and the top-5 is more than 0?",
    "question_th": "จำนวนการตัดทั้งหมดที่เกิดขึ้นโดยที่ 25 อันดับแรกน้อยกว่า 6 และ 5 อันดับแรกมากกว่า 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_en": "How many top-10 numbers had a top 25 of more than 6 with less than 2 wins?",
    "question_th": "มีหมายเลข 10 อันดับแรกกี่หมายเลขที่มี 25 อันดับแรกมากกว่า 6 โดยชนะน้อยกว่า 2 ครั้ง",
    "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_en": "Name the 2011 with 2010 of 1r and 2012 of sf",
    "question_th": "ตั้งชื่อปี 2011 ด้วย 2010 ของ 1r และ 2012 ของ sf",
    "context": "CREATE TABLE table_name_35 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2008 FROM table_name_39 WHERE 2012 = \"2r\" AND 2006 = \"2r\"",
    "question_en": "Name the 2008 with 2012 of 2r and 2006 of 2r",
    "question_th": "ตั้งชื่อปี 2008 ด้วย 2012 ของ 2r และ 2006 ของ 2r",
    "context": "CREATE TABLE table_name_39 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2008 FROM table_name_41 WHERE 2012 = \"sf\"",
    "question_en": "Name the 2008 for 2012 of sf",
    "question_th": "ตั้งชื่อปี 2008 สำหรับปี 2012 ของ sf",
    "context": "CREATE TABLE table_name_41 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2013 FROM table_name_9 WHERE 2011 = \"1r\"",
    "question_en": "Name the 2013 for 2011 of 1r",
    "question_th": "ตั้งชื่อปี 2013 สำหรับปี 2011 จาก 1r",
    "context": "CREATE TABLE table_name_9 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_22 WHERE 2006 = \"2r\" AND 2008 = \"2r\"",
    "question_en": "Name the 2011 with 2006 of 2r and 2008 of 2r",
    "question_th": "ตั้งชื่อปี 2011 ด้วย 2006 ของ 2r และ 2008 ของ 2r",
    "context": "CREATE TABLE table_name_22 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2012 FROM table_name_69 WHERE 2013 = \"2r\" AND 2009 = \"3r\"",
    "question_en": "Name the 2012 with 2013 of 2r and 2009 of 3r",
    "question_th": "ตั้งชื่อปี 2012 ด้วย 2013 ของ 2r และ 2009 ของ 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_en": "How many Field goals have Points larger than 5, and Touchdowns larger than 2, and an Extra points smaller than 0?",
    "question_th": "มีกี่ประตูที่มีแต้มมากกว่า 5 และทัชดาวน์มากกว่า 2 และมีแต้มพิเศษน้อยกว่า 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_en": "How many Touchdowns have Extra points larger than 0, and Points of 48?",
    "question_th": "ทัชดาวน์มีแต้มพิเศษมากกว่า 0 และแต้ม 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_en": "Which Touchdowns have an Extra points smaller than 5, and a Player of clark, and Field goals larger than 0?",
    "question_th": "ทัชดาวน์ใดที่มีแต้มพิเศษน้อยกว่า 5 และผู้เล่นของคลาร์ก และประตูในสนามมากกว่า 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_en": "Which Points have Touchdowns larger than 0, and an Extra points smaller than 0?",
    "question_th": "แต้มใดที่มีทัชดาวน์มากกว่า 0 และแต้มพิเศษน้อยกว่า 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_en": "Which Semifinalists has a Champions of michael chang 6-0 6-4?",
    "question_th": "รอบรองชนะเลิศคนไหนได้แชมป์ ไมเคิล ช้าง 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érez-roldán andrea gaudenzi\"",
    "question_en": "Whose Runner-up has a Semifinalist of guillermo pérez-roldán andrea gaudenzi?",
    "question_th": "รองชนะเลิศของใครได้เข้ารอบรองชนะเลิศคือ guillermo pérez-roldán 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_en": "Tell me the least season with level less than 1",
    "question_th": "บอกฉันฤดูกาลน้อยที่สุดที่มีระดับน้อยกว่า 1",
    "context": "CREATE TABLE table_name_5 (season INTEGER, level INTEGER)"
  },
  {
    "answer": "SELECT attendance FROM table_name_49 WHERE date = \"september 11, 1983\"",
    "question_en": "What was the Attendance on September 11, 1983?",
    "question_th": "การเข้าร่วมในวันที่ 11 กันยายน พ.ศ. 2526 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_49 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_73 WHERE result = \"w 37-21\"",
    "question_en": "What was the Opponent during the game with a Result of W 37-21?",
    "question_th": "ฝ่ายตรงข้ามคืออะไรในระหว่างเกมที่มีผลการแข่งขัน W 37-21?",
    "context": "CREATE TABLE table_name_73 (opponent VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_50 WHERE week = 8",
    "question_en": "What was the Result on Week 8?",
    "question_th": "ผลลัพธ์ในสัปดาห์ที่ 8 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_50 (result VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT MIN(games) FROM table_name_12 WHERE lost < 1",
    "question_en": "What is the lowest number of games with less than 1 loss?",
    "question_th": "จำนวนเกมต่ำสุดที่แพ้น้อยกว่า 1 เกมคือเท่าไร?",
    "context": "CREATE TABLE table_name_12 (games INTEGER, lost INTEGER)"
  },
  {
    "answer": "SELECT nation FROM table_name_52 WHERE points = 108.8",
    "question_en": "What was the nationality of the skater with 108.8 points?",
    "question_th": "นักสเก็ตสัญชาติอะไรได้ 108.8 แต้ม?",
    "context": "CREATE TABLE table_name_52 (nation VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(points) FROM table_name_43 WHERE club = \"btsc\"",
    "question_en": "How many points for the skater from club btsc?",
    "question_th": "นักสเก็ตจาก 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_en": "Which Original title has a Year of 1983, and a Country of italy?",
    "question_th": "ชื่อดั้งเดิมใดมีปี 1983 และประเทศอิตาลี",
    "context": "CREATE TABLE table_name_78 (original_title VARCHAR, year VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_name_87 WHERE original_title = \"иваново детство\"",
    "question_en": "How many years have an Original title of иваново детство?",
    "question_th": "กี่ปีมีชื่อดั้งเดิมของ иваново детство?",
    "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_en": "Which Length has a Country of soviet union, and a Year larger than 1975?",
    "question_th": "ความยาวใดมีประเทศในสหภาพโซเวียตและมีปีที่ใหญ่กว่าปี 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_en": "What is listed as the lowest Year with a Wins that's smaller than 0?",
    "question_th": "ปีใดที่ระบุว่าเป็นปีต่ำสุดที่มีการชนะน้อยกว่า 0",
    "context": "CREATE TABLE table_name_25 (year INTEGER, wins INTEGER)"
  },
  {
    "answer": "SELECT wins FROM table_name_84 WHERE year = 1989",
    "question_en": "What is listed for the Wins with a Year of 1989?",
    "question_th": "รายการชัยชนะประจำปี 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_en": "What is listed for the Class that's got a Team of Cagiva and Points of 4?",
    "question_th": "คลาสที่มีทีม Cagiva และคะแนน 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_en": "What is the number of Population 2001 Census that has 476,815 in Population 1991 Census?",
    "question_th": "จำนวนการสำรวจสำมะโนประชากร พ.ศ. 2544 ที่มี 476,815 ในการสำรวจสำมะโนประชากร พ.ศ. 2534 เป็นเท่าใด",
    "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_en": "What played has 3 as the losing bonus?",
    "question_th": "สิ่งที่เล่นมี 3 เป็นโบนัสที่แพ้?",
    "context": "CREATE TABLE table_name_91 (played VARCHAR, losing_bonus VARCHAR)"
  },
  {
    "answer": "SELECT try_bonus FROM table_name_22 WHERE club = \"llangefni rfc\"",
    "question_en": "What is the try bonus that has llangefni rfc as the club?",
    "question_th": "โบนัสลองที่มี llangefni rfc เป็นสโมสรคืออะไร?",
    "context": "CREATE TABLE table_name_22 (try_bonus VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT played FROM table_name_63 WHERE points_for = \"247\"",
    "question_en": "What played has 247 as the points?",
    "question_th": "สิ่งที่เล่นมี 247 เป็นแต้ม?",
    "context": "CREATE TABLE table_name_63 (played VARCHAR, points_for VARCHAR)"
  },
  {
    "answer": "SELECT try_bonus FROM table_name_17 WHERE tries_against = \"19\"",
    "question_en": "What try bonus has 19 as the tries against?",
    "question_th": "โบนัสการลองอะไรมี 19 เมื่อพยายามต่อต้าน?",
    "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_en": "What points has 18 for the played and bala rfc as the club?",
    "question_th": "แต้มที่ได้ 18 แต้มสำหรับผู้เล่นและบาลา rfc ในฐานะสโมสร?",
    "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_en": "What try bonus has 18 as the played of and 204 as the points?",
    "question_th": "โบนัสลองอะไรมี 18 แต้มสำหรับการเล่นและมี 204 แต้ม?",
    "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_en": "What record has montreal as the visitor, and february 2 as the date?",
    "question_th": "บันทึกใดที่มีมอนทรีออลเป็นผู้มาเยือน และวันที่ 2 กุมภาพันธ์เป็นวันที่?",
    "context": "CREATE TABLE table_name_4 (record VARCHAR, visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_7 WHERE date = \"february 25\"",
    "question_en": "What record has February 25 as the date?",
    "question_th": "บันทึกอะไรที่มีวันที่ 25 กุมภาพันธ์เป็นวันที่?",
    "context": "CREATE TABLE table_name_7 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_21 WHERE visitor = \"boston\"",
    "question_en": "What date has boston as the visitor?",
    "question_th": "บอสตันเป็นผู้มาเยือนวันไหน?",
    "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_en": "What score has vancouver as the home, and february 16 as the date?",
    "question_th": "คะแนนใดที่แวนคูเวอร์เป็นเจ้าบ้าน และวันที่ 16 กุมภาพันธ์เป็นวันที่?",
    "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_en": "Team of corinthians, and a Lost larger than 15 has which highest drawn?",
    "question_th": "ทีมโครินเธียนส์ และทีมแพ้มากกว่า 15 ทีมใดเสมอกันมากที่สุด?",
    "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_en": "Difference of - 20, and a Position smaller than 17 is the highest against?",
    "question_th": "ผลต่าง - 20 และตำแหน่งที่น้อยกว่า 17 ถือว่าสูงที่สุดเมื่อเทียบกับ?",
    "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_en": "Against smaller than 53, and a Drawn smaller than 10, and a Played smaller than 38 has what average points?",
    "question_th": "เทียบกับแต้มที่น้อยกว่า 53 และเสมอน้อยกว่า 10 และแต้มที่เล่นน้อยกว่า 38 มีแต้มเฉลี่ยเท่าใด",
    "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_en": "Which score was for Toronto Maple Leafs at home on November 12?",
    "question_th": "คะแนนใดของโตรอนโต เมเปิล ลีฟส์ ในบ้านเมื่อวันที่ 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–3\"",
    "question_en": "Which home team had a visitor of Chicago Black Hawks with a score of 2–3?",
    "question_th": "เจ้าบ้านทีมไหนมีทีมเยือน ชิคาโก แบล็ก ฮอว์กส์ ด้วยสกอร์ 2–3?",
    "context": "CREATE TABLE table_name_87 (home VARCHAR, visitor VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_73 WHERE date = \"november 26\"",
    "question_en": "Who was home on November 26?",
    "question_th": "วันที่ 26 พฤศจิกายน ใครอยู่บ้านบ้าง?",
    "context": "CREATE TABLE table_name_73 (home VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_10 WHERE record = \"5–8–4\"",
    "question_en": "What was the visitor with a record of 5–8–4?",
    "question_th": "ผู้มาเยือนที่มีสถิติ 5–8–4 คืออะไร",
    "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_en": "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?",
    "question_th": "อันดับเฉลี่ยของผู้เล่นที่มีมากกว่า 52 แต้ม เสมอน้อยกว่า 10 เสียประตูต่ำกว่า 44 และแพ้ต่ำกว่า 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_en": "What was the highest number of lose for a player named Santos with more than 45 points?",
    "question_th": "ผู้เล่นชื่อซานโตสที่เสียมากกว่า 45 แต้มมากที่สุดคือจำนวนเท่าใด",
    "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_en": "What report has a score of 0-0 with Sydney FC?",
    "question_th": "รายงานอะไรมีสกอร์ 0-0 กับ ซิดนีย์ เอฟซี ?",
    "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_en": "On what date was the score 0-0?",
    "question_th": "สกอร์ 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_en": "Which home team had the score 1-3?",
    "question_th": "เจ้าบ้านทีมไหนมีสกอร์ 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_en": "Where did the away team have round 2?",
    "question_th": "ทีมเยือนมีรอบ 2 ที่ไหน?",
    "context": "CREATE TABLE table_name_71 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_23 WHERE venue = \"round 3\"",
    "question_en": "When did the venue of round 3 happen?",
    "question_th": "สถานที่จัดรอบ 3 เกิดขึ้นเมื่อใด?",
    "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_en": "What is the lowest density of a town with a 13,708 2011 population census ?",
    "question_th": "ความหนาแน่นต่ำสุดของเมืองที่มีการสำรวจสำมะโนประชากร 13,708 คนในปี 2554 คือเท่าใด",
    "context": "CREATE TABLE table_name_74 (density INTEGER, population_2011_census VARCHAR)"
  },
  {
    "answer": "SELECT orbit FROM table_name_14 WHERE specific_orbital_energy = \"−29.8 mj/kg\"",
    "question_en": "specific orbital energy of −29.8 mj/kg has what orbit?",
    "question_th": "พลังงานจำเพาะของการโคจรที่ −29.8 mj/kg มีวงโคจรแบบใด",
    "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_en": "Orbital period of 89 to 128 min has what specific orbital energy?",
    "question_th": "คาบการโคจร 89 ถึง 128 นาที มีพลังงานจำเพาะในการโคจรเป็นข้อใด",
    "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_en": "center-to-center distance of 6,900 to 46,300 km involves which orbital period?",
    "question_th": "ระยะทางจากศูนย์กลางถึงศูนย์กลาง 6,900 ถึง 46,300 กม. เกี่ยวข้องกับคาบการโคจรใด",
    "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_en": "What was the lowest FA Cup for a Malaysia Cup of 0?",
    "question_th": "เอฟเอ คัพ ต่ำสุดสำหรับ มาเลเซีย คัพ เสีย 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_en": "What is Zamri Hassan's lowest Malaysia Cup when there were an FA Cup of 0?",
    "question_th": "มาเลเซีย คัพ ต่ำสุดของ ซัมรี ฮัสซัน เมื่อมี FA Cup เป็น 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_en": "What is the lowest league for the Malaysia Cup when it was larger than 0?",
    "question_th": "ลีกต่ำสุดสำหรับมาเลเซียคัพเมื่อมีค่ามากกว่า 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_en": "How many Bronze medals did Switzerland with less than 3 Silver medals receive?",
    "question_th": "สวิตเซอร์แลนด์ที่น้อยกว่า 3 เหรียญเงินได้รับเหรียญทองแดงกี่เหรียญ",
    "context": "CREATE TABLE table_name_75 (bronze INTEGER, nation VARCHAR, silver VARCHAR)"
  },
  {
    "answer": "SELECT MIN(silver) FROM table_name_39 WHERE bronze > 3",
    "question_en": "What is the least amount of Silver medals that have more than 3 Bronze?",
    "question_th": "เหรียญเงินที่มีมากกว่า 3 เหรียญทองแดงมีจำนวนน้อยที่สุดคือเท่าใด",
    "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_en": "What is the average game for March 8 with less than 84 points?",
    "question_th": "ค่าเฉลี่ยเกมวันที่ 8 มี.ค. ที่น้อยกว่า 84 แต้มเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_23 (game INTEGER, points VARCHAR, march VARCHAR)"
  },
  {
    "answer": "SELECT MAX(march) FROM table_name_34 WHERE record = \"35–16–6–3\"",
    "question_en": "What is the latest in March when the record of 35–16–6–3?",
    "question_th": "ล่าสุดในเดือนมีนาคมที่ทำสถิติ 35–16–6–3 คืออะไร?",
    "context": "CREATE TABLE table_name_34 (march INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_42 WHERE score = \"3-0\"",
    "question_en": "Name the competition for score of 3-0",
    "question_th": "ตั้งชื่อการแข่งขันด้วยสกอร์ 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_en": "Name the competition for september 10, 2008",
    "question_th": "ตั้งชื่อการแข่งขันวันที่ 10 กันยายน 2551",
    "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_en": "Name the sscore for world cup qualifying october 15, 2008",
    "question_th": "ตั้งชื่อสกอร์ฟุตบอลโลกรอบคัดเลือก 15 ตุลาคม 2551",
    "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_en": "Name the competition for november 19, 2008",
    "question_th": "ตั้งชื่อการแข่งขันวันที่ 19 พฤศจิกายน 2551",
    "context": "CREATE TABLE table_name_82 (competition VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_55 WHERE city = \"rio de janeiro\"",
    "question_en": "Name the date for rio de janeiro",
    "question_th": "ตั้งชื่อวันที่สำหรับริโอเดอจาเนโร",
    "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_en": "What number is Fall 08 from the state with 57 in Fall 06 and 74 or less in Fall 05?",
    "question_th": "ฤดูใบไม้ร่วง 08 หมายเลขใดจากรัฐ โดยมี 57 ในฤดูใบไม้ร่วง 06 และ 74 หรือน้อยกว่าในฤดูใบไม้ร่วง 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_en": "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?",
    "question_th": "ฤดูใบไม้ร่วง 06 หมายเลขใดจากรัฐที่มี 79 หรือน้อยกว่าในฤดูใบไม้ร่วง 08, 36 หรือมากกว่าในฤดูใบไม้ร่วง 07 และมากกว่า 74 ในฤดูใบไม้ร่วง 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_en": "What number is Fall 06 from the state with 34 for Fall 09?",
    "question_th": "ฤดูใบไม้ร่วง 06 หมายเลขใดจากรัฐที่มี 34 สำหรับฤดูใบไม้ร่วง 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–10\"",
    "question_en": "What was the record when the visitor was toronto maple leafs and the score was 3–10?",
    "question_th": "อะไรคือบันทึกเมื่อผู้มาเยือนคือใบเมเปิ้ลโตรอนโตและคะแนนคือ 3–10",
    "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_en": "What was the score when the visitor was toronto maple leafs on march 22?",
    "question_th": "คะแนนเมื่อผู้มาเยือนคือใบเมเปิ้ลโตรอนโตเมื่อวันที่ 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–1\"",
    "question_en": "What was the Visitor when the home was toronto maple leafs and the score was 4–1?",
    "question_th": "ผู้มาเยือนคืออะไรเมื่อบ้านเป็นใบเมเปิ้ลโตรอนโตและคะแนนคือ 4–1",
    "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_en": "How many total episodes aired over all seasons with 7.79 million viewers?",
    "question_th": "ออกอากาศทั้งหมดกี่ตอนและมีผู้ชม 7.79 ล้านคน?",
    "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_en": "Was the semi-final round held at home or away?",
    "question_th": "รอบรองชนะเลิศจัดในบ้านหรือนอกบ้าน?",
    "context": "CREATE TABLE table_name_53 (h___a VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT opponents FROM table_name_33 WHERE round = \"final\"",
    "question_en": "Which opponent made it to the final round?",
    "question_th": "คู่ต่อสู้คนไหนที่ผ่านเข้าสู่รอบสุดท้าย?",
    "context": "CREATE TABLE table_name_33 (opponents VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT result_f___a FROM table_name_39 WHERE h___a = \"hurst\"",
    "question_en": "What was the result of the game played in hurst?",
    "question_th": "ผลของการเล่นแบบ Hust เป็นอย่างไร?",
    "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_en": "When did the game in whalley range take place?",
    "question_th": "เกมใน Whalley Range เกิดขึ้นเมื่อใด?",
    "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_en": "Which ERP W is the lowest one that has a Frequency MHz of 91.3?",
    "question_th": "ERP W ตัวใดต่ำสุดที่มีความถี่ MHz อยู่ที่ 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_en": "Which Class has a Frequency MHz of 107.5?",
    "question_th": "คลาสใดมีความถี่ MHz เท่ากับ 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_en": "Which Frequency MHz is the highest one that has a City of license of byron, ga?",
    "question_th": "ความถี่ MHz ใดคือความถี่สูงสุดที่มีใบอนุญาตเมือง 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_en": "Which FCC info has a Call sign of wsja?",
    "question_th": "ข้อมูล FCC ใดมีสัญญาณเรียกของ 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_en": "Which District has a Party of republican and a Result of lost re-election democratic gain?",
    "question_th": "เขตใดมีพรรครีพับลิกันและส่งผลให้ได้รับการเลือกตั้งใหม่ตามระบอบประชาธิปไตย?",
    "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_en": "What is First elected that has republican Party and a Result of retired democratic gain?",
    "question_th": "อะไรคือการเลือกตั้งครั้งแรกที่มีพรรครีพับลิกันและเป็นผลมาจากการได้รับประชาธิปไตยที่เกษียณแล้ว?",
    "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_en": "What is the First elected of california 3?",
    "question_th": "ผู้ที่มาจากการเลือกตั้งคนแรกของแคลิฟอร์เนีย 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_en": "Which Incumbent has a Result of retired democratic gain?",
    "question_th": "ผู้ดำรงตำแหน่งคนใดมีผลมาจากการได้รับผลประโยชน์ตามระบอบประชาธิปไตยที่เกษียณแล้ว?",
    "context": "CREATE TABLE table_name_35 (incumbent VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT first_elected FROM table_name_15 WHERE incumbent = \"none (new seat)\"",
    "question_en": "Which First elected has a Incumbent of none (new seat)?",
    "question_th": "ผู้ที่ได้รับเลือกเป็นคนแรกไม่มีผู้ดำรงตำแหน่งใด (ที่นั่งใหม่)",
    "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_en": "What is the First elected that has a republican party and california 4?",
    "question_th": "คนแรกที่ได้รับเลือกซึ่งมีพรรครีพับลิกันและแคลิฟอร์เนีย 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_en": "What was the result when Dundee was the opponent?",
    "question_th": "ผลลัพธ์คืออะไรเมื่อดันดีเป็นคู่ต่อสู้?",
    "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_en": "Who entered on day 1 and exited on day 20?",
    "question_th": "ใครเข้าวันที่ 1 และออกวันที่ 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_en": "When did lucy benjamin exit?",
    "question_th": "ลูซี่ เบนจามินออกเมื่อไหร่?",
    "context": "CREATE TABLE table_name_18 (exited VARCHAR, celebrity VARCHAR)"
  },
  {
    "answer": "SELECT finished FROM table_name_84 WHERE celebrity = \"camilla dallerup\"",
    "question_en": "When did camilla dallerup finish?",
    "question_th": "Camilla Dallerup จบเมื่อไหร่?",
    "context": "CREATE TABLE table_name_84 (finished VARCHAR, celebrity VARCHAR)"
  },
  {
    "answer": "SELECT entered FROM table_name_92 WHERE celebrity = \"kim woodburn\"",
    "question_en": "When did kim woodburn enter?",
    "question_th": "คิม วูดเบิร์น เข้ามาเมื่อไหร่?",
    "context": "CREATE TABLE table_name_92 (entered VARCHAR, celebrity VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_5 WHERE record = \"37–26–9\"",
    "question_en": "What was the score of the game with a record of 37–26–9?",
    "question_th": "คะแนนของเกมด้วยสถิติ 37–26–9 คืออะไร?",
    "context": "CREATE TABLE table_name_5 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_13 WHERE record = \"33–25–9\"",
    "question_en": "What was the score of the game with a record of 33–25–9?",
    "question_th": "คะแนนของเกมด้วยสถิติ 33–25–9 คืออะไร?",
    "context": "CREATE TABLE table_name_13 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT MAX(attendance) FROM table_name_45 WHERE loss = \"francis (4–9)\"",
    "question_en": "Loss of francis (4–9) has what highest attendance figure?",
    "question_th": "การสูญเสียฟรานซิส (4–9) มีผู้เข้าชมสูงสุดที่ใด",
    "context": "CREATE TABLE table_name_45 (attendance INTEGER, loss VARCHAR)"
  },
  {
    "answer": "SELECT AVG(attendance) FROM table_name_97 WHERE loss = \"de la rosa (8–8)\"",
    "question_en": "Loss of de la rosa (8–8) has what average attendance?",
    "question_th": "การสูญเสียเดลาโรซา (8–8) มีผู้เข้าร่วมโดยเฉลี่ยเท่าใด",
    "context": "CREATE TABLE table_name_97 (attendance INTEGER, loss VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_71 WHERE loss = \"francis (4–10)\"",
    "question_en": "Loss of francis (4–10) happened on what date?",
    "question_th": "การสูญเสียฟรานซิส (4–10) เกิดขึ้นในวันที่ใด?",
    "context": "CREATE TABLE table_name_71 (date VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_93 WHERE date = \"8 september 1999\"",
    "question_en": "What was the score on 8 September 1999?",
    "question_th": "คะแนนเมื่อวันที่ 8 กันยายน พ.ศ. 2542 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_93 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_34 WHERE date = \"16 november 2003\"",
    "question_en": "What was the result on 16 November 2003?",
    "question_th": "เมื่อวันที่ 16 พฤศจิกายน พ.ศ. 2546 มีผลเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_34 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT set_1 FROM table_name_77 WHERE set_2 = \"26–24\"",
    "question_en": "Which Set 1 has a Set 2 of 26–24?",
    "question_th": "ชุดที่ 1 ใดมีชุดที่ 2 จาก 26–24",
    "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–25\"",
    "question_en": "Which Set 2 has a Date of 25 may, and a Set 3 of 21–25?",
    "question_th": "ชุดที่ 2 ใดมีวันที่ 25 พฤษภาคม และชุดที่ 3 จาก 21–25",
    "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–25\"",
    "question_en": "Which Date has a Set 3 of 21–25?",
    "question_th": "วันไหนมีชุด 3 จาก 21–25?",
    "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–75\"",
    "question_en": "Which Set 1 has a Date of 24 may, and a Total of 57–75?",
    "question_th": "ชุดที่ 1 ใดมีวันที่ 24 พฤษภาคม และผลรวม 57–75",
    "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–15\" AND score = \"3–0\"",
    "question_en": "Which Set 2 has a Set 1 of 25–15, and a Score of 3–0?",
    "question_th": "ชุดที่ 2 ใดมีชุดที่ 1 จาก 25–15 และคะแนน 3–0",
    "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–22\"",
    "question_en": "Which Total has a Set 1 of 25–22?",
    "question_th": "ผลรวมใดมีชุดที่ 1 จาก 25–22",
    "context": "CREATE TABLE table_name_12 (total VARCHAR, set_1 VARCHAR)"
  },
  {
    "answer": "SELECT segment_b FROM table_name_34 WHERE netflix = \"s01e21\"",
    "question_en": "What was the segment b for Netflix s01e21?",
    "question_th": "เซ็กเมนต์ b สำหรับ 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_en": "What segment d is associated with an episode number above 16 and a segment c of laser eye surgery?",
    "question_th": "ส่วน d ใดที่เกี่ยวข้องกับหมายเลขตอนที่สูงกว่า 16 และส่วน c ของการผ่าตัดตาด้วยเลเซอร์",
    "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_en": "What team had less than 291 total points whole having 76 bronze and over 21 gold?",
    "question_th": "ทีมใดมีคะแนนรวมน้อยกว่า 291 คะแนน โดยได้ 76 เหรียญทองแดง และมากกว่า 21 เหรียญทอง",
    "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_en": "What was the average rank for team with more than 44 gold, more and 76 bronze and a higher total than 73?",
    "question_th": "อันดับเฉลี่ยของทีมที่มีมากกว่า 44 เหรียญทอง มากกว่า และ 76 เหรียญทองแดง และคะแนนรวมสูงกว่า 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_en": "On what date was the team's record 61-66?",
    "question_th": "สถิติทีม 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_en": "At what time was the game when they played the White Sox and had a record of 63-70?",
    "question_th": "เกมคือตอนไหนที่พวกเขาเล่นทีมไวท์ซ็อกซ์และมีสถิติ 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_en": "What shows for gold when bronze is 1?",
    "question_th": "อะไรจะแสดงให้เห็นทองคำเมื่อทองแดงเป็น 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_en": "What is the gold number when the total is less than 8, silver less than 1 and the rank is more than 7?",
    "question_th": "เลขทองเมื่อผลรวมน้อยกว่า 8 เงินน้อยกว่า 1 และอันดับมากกว่า 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_en": "What is the average Total for the Rank of 6, when Silver is smaller than 0?",
    "question_th": "ผลรวมเฉลี่ยสำหรับอันดับ 6 คือเท่าใด เมื่อ Silver น้อยกว่า 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_en": "Which Team wins has an Individual winner smaller than 1 and Total win larger than 1?",
    "question_th": "ทีมใดชนะโดยมีผู้ชนะรายบุคคลน้อยกว่า 1 และชัยชนะรวมมากกว่า 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_en": "Which Team Win is from sweden and has a Individual win smaller than 1",
    "question_th": "ทีมใดที่ชนะมาจากสวีเดนและมีการชนะแบบบุคคลน้อยกว่า 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_en": "Which channel did Going for Gold air on?",
    "question_th": "Going for Gold ออกอากาศช่องไหน?",
    "context": "CREATE TABLE table_name_19 (original_channel VARCHAR, programme VARCHAR)"
  },
  {
    "answer": "SELECT new_channel_s_ FROM table_name_19 WHERE programme = \"gladiators\"",
    "question_en": "What channel is Gladiators on?",
    "question_th": "Gladiators ออกอากาศช่องไหน?",
    "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_en": "When did Going for Gold return in BBC One?",
    "question_th": "Going for Gold กลับมาใน 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_en": "Which faith has a name of Belswains?",
    "question_th": "ศรัทธาใดมีชื่อ 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_en": "Which school is a primary school with DCSF number 2045?",
    "question_th": "โรงเรียนใดเป็นโรงเรียนประถมศึกษาที่มี DCSF หมายเลข 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_en": "Which position had fewer rounds than 3, and an overall of less than 48?",
    "question_th": "ตำแหน่งใดมีรอบน้อยกว่า 3 และรวมน้อยกว่า 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_en": "Which highest pick number's name was Adam Podlesh, when the overall was less than 101?",
    "question_th": "อดัม พ็อดเลช ผู้ที่เลือกหมายเลขสูงสุดคนใด เมื่อคะแนนรวมน้อยกว่า 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_en": "What is the IHSAA class in Batesville?",
    "question_th": "ชั้นเรียน IHSAA ในเบตส์วิลล์คืออะไร",
    "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_en": "Which city is Lawrenceburg school, with an IHSAA football class of aaa and less than 676 enrollments, located in?",
    "question_th": "โรงเรียน Lawrenceburg ตั้งอยู่ในเมืองใด โดยมีชั้นเรียนฟุตบอล IHSAA aaa และมีผู้ลงทะเบียนน้อยกว่า 676 คน ตั้งอยู่ในเมืองใด",
    "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_en": "What school is in Brookville?",
    "question_th": "โรงเรียนอะไรในบรูควิลล์?",
    "context": "CREATE TABLE table_name_34 (school VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_29 WHERE record = \"36–61\"",
    "question_en": "Which Score has a Record of 36–61?",
    "question_th": "คะแนนใดมีสถิติ 36–61",
    "context": "CREATE TABLE table_name_29 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT MIN(attendance) FROM table_name_63 WHERE record = \"34–51\"",
    "question_en": "Which Attendance has a Record of 34–51?",
    "question_th": "ผู้เข้าร่วมคนใดมีสถิติ 34–51",
    "context": "CREATE TABLE table_name_63 (attendance INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_71 WHERE date = \"july 2\"",
    "question_en": "Which Loss has a Date of july 2?",
    "question_th": "การสูญเสียใดมีวันที่ 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_en": "Which tournament's 2001 and 2008 were a when 2010 was qf?",
    "question_th": "ทัวร์นาเมนต์ใดในปี 2544 และ 2551 เป็นช่วงที่ปี 2553 เป็น qf?",
    "context": "CREATE TABLE table_name_4 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_25 WHERE 2001 = \"a\" AND 2006 = \"a\"",
    "question_en": "Which tournament's 2001 and 2006s were a?",
    "question_th": "ทัวร์นาเมนต์ใดในปี 2544 และ 2549 เป็นทัวร์นาเมนต์ใด",
    "context": "CREATE TABLE table_name_25 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2007 FROM table_name_60 WHERE 2009 = \"qf\" AND 2000 = \"a\"",
    "question_en": "Which 2007 had a 2009 taht was qf when its 2000 was a?",
    "question_th": "ปี 2550 ใดที่มีปี 2552 เป็น qf เมื่อปี 2543 เป็น 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_en": "Which 2008 had a 1998 and 2006 that were a when 2009 was sf?",
    "question_th": "ปี 2008 ใดที่มีปี 1998 และ 2006 ซึ่งเป็นปี 2009 เป็น SF",
    "context": "CREATE TABLE table_name_16 (Id VARCHAR)"
  },
  {
    "answer": "SELECT AVG(floors) FROM table_name_10 WHERE name = \"citic square\"",
    "question_en": "What is the number of floors for the Citic Square?",
    "question_th": "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_en": "What is the height for the Shanghai World Plaza?",
    "question_th": "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_en": "What week had a lower attendance than 51,423 but was still higher than the other weeks?",
    "question_th": "สัปดาห์ใดที่มีผู้เข้าร่วมต่ำกว่า 51,423 คน แต่ยังสูงกว่าสัปดาห์อื่นๆ",
    "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_en": "Which Vertices have a Dual Archimedean solid of truncated dodecahedron?",
    "question_th": "จุดยอดใดมีของแข็ง Dual Archimedean ของรูปทรงสิบสองหน้าที่ถูกตัดทอน",
    "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_en": "Which Edges have a Dual Archimedean solid of truncated icosidodecahedron, and Vertices larger than 62?",
    "question_th": "ขอบใดมีของแข็ง Dual Archimedean ของ icosidodecahedron ที่ถูกตัดทอน และจุดยอดมีขนาดใหญ่กว่า 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_en": "Which Faces have a Dual Archimedean solid of truncated icosahedron, and Vertices larger than 32?",
    "question_th": "ใบหน้าใดมีรูปทรงแบบ Dual Archimedean ที่เป็นรูปทรงไอโคซาฮีดรอนที่ถูกตัดทอน และมีจุดยอดที่ใหญ่กว่า 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–25\"",
    "question_en": "Which Set 2 has a Set 3 of 20–25?",
    "question_th": "ชุดที่ 2 ใดมีชุดที่ 3 จาก 20–25",
    "context": "CREATE TABLE table_name_70 (set_2 VARCHAR, set_3 VARCHAR)"
  },
  {
    "answer": "SELECT total FROM table_name_26 WHERE set_2 = \"20–25\" AND score = \"1–3\"",
    "question_en": "Which Total has a Set 2 of 20–25, and a Score of 1–3?",
    "question_th": "ผลรวมใดมีเซ็ต 2 จาก 20–25 และคะแนน 1–3",
    "context": "CREATE TABLE table_name_26 (total VARCHAR, set_2 VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT set_3 FROM table_name_86 WHERE score = \"3–2\" AND set_2 = \"25–23\" AND time = \"19:00\"",
    "question_en": "Which Set 3 has a Score of 3–2, and a Set 2 of 25–23, and a Time of 19:00?",
    "question_th": "เซ็ต 3 ใดมีคะแนน 3–2 และเซ็ต 2 จาก 25–23 และเวลา 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–3\" AND set_1 = \"29–31\"",
    "question_en": "Which Total has a Score of 1–3, and a Set 1 of 29–31?",
    "question_th": "คะแนนรวมใดมีคะแนน 1–3 และเซ็ต 1 จาก 29–31",
    "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–18\"",
    "question_en": "Which Date has a Time of 11:00, and a Set 3 of 25–18?",
    "question_th": "วันที่ใดมีเวลา 11:00 น. และชุดที่ 3 จาก 25–18",
    "context": "CREATE TABLE table_name_62 (date VARCHAR, time VARCHAR, set_3 VARCHAR)"
  },
  {
    "answer": "SELECT total FROM table_name_53 WHERE set_3 = \"13–25\"",
    "question_en": "Which Total has a Set 3 of 13–25?",
    "question_th": "ผลรวมใดมีชุด 3 จาก 13–25",
    "context": "CREATE TABLE table_name_53 (total VARCHAR, set_3 VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_98 WHERE category = \"best musical revival\"",
    "question_en": "What was the result for the best musical revival category?",
    "question_th": "ผลการแข่งขันประเภทดนตรีฟื้นฟูที่ดีที่สุดคืออะไร?",
    "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_en": "Name the area served for on-air ID of abc canberra",
    "question_th": "ตั้งชื่อพื้นที่ที่ให้บริการสำหรับ ID ออนแอร์ของ 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_en": "Name the frequency with on-air ID of 1way fm",
    "question_th": "ตั้งชื่อความถี่ด้วย ID ออนแอร์ของ 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_en": "Name the purpose for on-air ID of 2xx",
    "question_th": "ตั้งชื่อวัตถุประสงค์สำหรับ ID ออนแอร์ 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_en": "Name the frequency for community purpose and callsign of 1vfm",
    "question_th": "ตั้งชื่อความถี่เพื่อจุดประสงค์ของชุมชนและสัญญาณเรียกขานของ 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_en": "Name the band with frequency of 102.3",
    "question_th": "ตั้งชื่อวงดนตรีด้วยความถี่ 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_en": "What was the loss of the game against with LA New Bears with a save of Mac Suzuki?",
    "question_th": "อะไรคือความพ่ายแพ้ของเกมกับแอลเอ นิว แบร์ส จากการเซฟของแม็ค ซูซูกิ?",
    "context": "CREATE TABLE table_name_4 (loss VARCHAR, opponent VARCHAR, save VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_74 WHERE save = \"||3,073\"",
    "question_en": "What was the date of the game with a save of ||3,073?",
    "question_th": "วันที่ของเกมที่บันทึกได้ ||3,073 คือเมื่อใด",
    "context": "CREATE TABLE table_name_74 (date VARCHAR, save VARCHAR)"
  },
  {
    "answer": "SELECT 2004 FROM table_name_41 WHERE tournament = \"french open\"",
    "question_en": "Which 2004 has a Tournament of french open?",
    "question_th": "ปี 2004 ใดที่มีการแข่งขันเฟรนช์โอเพ่น?",
    "context": "CREATE TABLE table_name_41 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2003 FROM table_name_99 WHERE 2013 = \"1r\" AND 2007 = \"2r\"",
    "question_en": "Which 2003 has a 2013 of 1r, and a 2007 of 2r?",
    "question_th": "ปี 2003 ใดมีปี 2013 เป็น 1r และปี 2007 เป็น 2r",
    "context": "CREATE TABLE table_name_99 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2007 FROM table_name_32 WHERE tournament = \"grand slam sr\"",
    "question_en": "Which 2007 has a Tournament of grand slam sr?",
    "question_th": "ปี 2007 ใดที่มีการแข่งขันแกรนด์สแลม sr?",
    "context": "CREATE TABLE table_name_32 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2008 FROM table_name_54 WHERE career_win_loss = \"25–40\"",
    "question_en": "Which 2008 has a Career Win-Loss of 25–40?",
    "question_th": "ปี 2008 ใดที่มีการชนะ-แพ้ในอาชีพที่ 25–40",
    "context": "CREATE TABLE table_name_54 (career_win_loss VARCHAR)"
  },
  {
    "answer": "SELECT career_win_loss FROM table_name_76 WHERE 2001 = \"1–1\"",
    "question_en": "Which Career Win-Loss has a 2001 of 1–1?",
    "question_th": "อาชีพไหนชนะ-แพ้มีสกอร์ 1–1 ในปี 2544",
    "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_en": "Which 2012 has a 2007 of 1r, and a 2008 of 1r, and a 2013 of 2r?",
    "question_th": "ปี 2012 ใดที่มีปี 2007 เป็น 1r และปี 2008 เป็น 1r และปี 2013 เป็น 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_en": "What college or club did the round 9 draft pick from Canada come from?",
    "question_th": "ร่างคัดเลือกรอบ 9 จากแคนาดามาจากวิทยาลัยหรือสโมสรใด",
    "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_en": "Who is the player who was from Dynamo-2 moscow (rus) and was picked after round 5?",
    "question_th": "ใครคือผู้เล่นที่มาจากไดนาโม-2 มอสโก (มาตุภูมิ) และได้รับเลือกหลังรอบที่ 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_en": "What position does the draft pick from Finland play?",
    "question_th": "ดราฟต์เลือกจากฟินแลนด์เล่นตำแหน่งไหน?",
    "context": "CREATE TABLE table_name_72 (position VARCHAR, nationality VARCHAR)"
  },
  {
    "answer": "SELECT MIN(round) FROM table_name_43 WHERE player = \"ian forbes\"",
    "question_en": "What is the lowest round number that Ian Forbes was picked in the draft?",
    "question_th": "หมายเลขรอบต่ำสุดที่เอียน ฟอร์บส์ถูกเลือกในดราฟท์คือเท่าไร?",
    "context": "CREATE TABLE table_name_43 (round INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT coach FROM table_name_19 WHERE year = \"1953\"",
    "question_en": "Who was the coach in 1953?",
    "question_th": "ใครคือโค้ชในปี 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_en": "What is the Time of the game at Arrowhead Stadium with an NFL Recap of recap?",
    "question_th": "เวลาของเกมที่ Arrowhead Stadium พร้อมการสรุป NFL คือเมื่อใด",
    "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_en": "What was the Opponent at Arrowhead Stadium?",
    "question_th": "ฝ่ายตรงข้ามที่ 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–7\"",
    "question_en": "What was the Result of the game after Week 4 with a Time of 5:15 p.m. and a Record of 4–7?",
    "question_th": "ผลลัพธ์ของเกมหลังสัปดาห์ที่ 4 ด้วยเวลา 17:15 น. และสถิติ 4–7 คืออะไร",
    "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_en": "When in November were they 11-7-3 with over 21 games?",
    "question_th": "เมื่อเดือนพฤศจิกายนพวกเขาทำได้ 11-7-3 และมากกว่า 21 เกม?",
    "context": "CREATE TABLE table_name_80 (november INTEGER, record VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_54 WHERE team_name = \"trojans\"",
    "question_en": "What school had a team name of the Trojans?",
    "question_th": "โรงเรียนใดมีชื่อทีมเป็นโทรจัน?",
    "context": "CREATE TABLE table_name_54 (school VARCHAR, team_name VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_50 WHERE site = \"michigan stadium • ann arbor, mi\"",
    "question_en": "What date was the Site michigan stadium • ann arbor, mi?",
    "question_th": "สนามกีฬาไซต์มิชิแกน • แอนอาร์เบอร์ ไมล์ เป็นวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_50 (date VARCHAR, site VARCHAR)"
  },
  {
    "answer": "SELECT site FROM table_name_34 WHERE result = \"l7-33\"",
    "question_en": "What is the site of the game with a Result of l7-33?",
    "question_th": "เว็บไซต์ของเกมที่มีผลลัพธ์เป็น l7-33 คืออะไร?",
    "context": "CREATE TABLE table_name_34 (site VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_6 WHERE result = \"w48-0\"",
    "question_en": "What is the name of the Opponent when the Result was w48-0?",
    "question_th": "ฝ่ายตรงข้ามชื่ออะไรเมื่อผลการแข่งขันคือ w48-0?",
    "context": "CREATE TABLE table_name_6 (opponent VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_45 WHERE site = \"memorial stadium • minneapolis, mn\" AND opponent = \"northwestern\"",
    "question_en": "What is the Date at memorial stadium • minneapolis, mn, and an Opponent of northwestern?",
    "question_th": "วันที่ที่สนามกีฬาอนุสรณ์คืออะไร • มินนิอาโปลิส มินนิโซตา และฝ่ายตรงข้ามของตะวันตกเฉียงเหนือ?",
    "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_en": "What is the Result of the game on 10/11/1930?",
    "question_th": "ผลการแข่งขันวันที่ 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_en": "What is the total number of games played against the Buffalo Sabres?",
    "question_th": "จำนวนเกมทั้งหมดที่เล่นกับบัฟฟาโล เซเบอร์คือเท่าไร?",
    "context": "CREATE TABLE table_name_65 (game VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT SUM(april) FROM table_name_50 WHERE points = 95 AND record = \"41–25–10–3\" AND game < 79",
    "question_en": "Which April has Points of 95, and a Record of 41–25–10–3, and a Game smaller than 79?",
    "question_th": "เดือนเมษายนใดที่มีคะแนน 95 และสถิติ 41–25–10–3 และเกมที่เล็กกว่า 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–3\" AND game > 82",
    "question_en": "How many Points have a Score of 1–3, and a Game larger than 82?",
    "question_th": "มีกี่คะแนนที่มีคะแนน 1–3 และเกมที่มากกว่า 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_en": "Which Game is the lowest one that has Points smaller than 92?",
    "question_th": "เกมใดเป็นเกมที่ต่ำที่สุดที่มีแต้มน้อยกว่า 92?",
    "context": "CREATE TABLE table_name_14 (game INTEGER, points INTEGER)"
  },
  {
    "answer": "SELECT MAX(april) FROM table_name_4 WHERE score = \"2–4\" AND game < 76",
    "question_en": "Which April is the smallest one that has a Score of 2–4, and a Game smaller than 76?",
    "question_th": "เมษายนใดที่เล็กที่สุดที่มีคะแนน 2–4 และเกมที่น้อยกว่า 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_en": "What is the high point total associated with a difference of 1 and 0 draws?",
    "question_th": "คะแนนรวมสูงสุดที่เกี่ยวข้องกับผลต่างของการเสมอ 1 และ 0 คืออะไร?",
    "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_en": "What position did the team finish in with a Difference of - 6, 3 losses, and over 4 draws?",
    "question_th": "ทีมจบอันดับใดด้วยผลต่าง 6, แพ้ 3 และเสมอมากกว่า 4?",
    "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_en": "Which round has the scorer of Di Matteo?",
    "question_th": "รอบไหนมีผู้ทำประตูของดิ มัตเตโอ?",
    "context": "CREATE TABLE table_name_56 (round VARCHAR, scorers VARCHAR)"
  },
  {
    "answer": "SELECT MIN(attendance) FROM table_name_59 WHERE result = \"2-0\"",
    "question_en": "What is the lowest attendance of a game that has the result of 2-0?",
    "question_th": "จำนวนผู้ชมน้อยที่สุดในเกมที่ผลสกอร์ 2-0 คืออะไร?",
    "context": "CREATE TABLE table_name_59 (attendance INTEGER, result VARCHAR)"
  },
  {
    "answer": "SELECT metric_value FROM table_name_4 WHERE unit = \"dolia\"",
    "question_en": "What Metric value has a Unit of dolia?",
    "question_th": "ค่าเมตริกใดมีหน่วยเป็นโดเลีย",
    "context": "CREATE TABLE table_name_4 (metric_value VARCHAR, unit VARCHAR)"
  },
  {
    "answer": "SELECT russian FROM table_name_60 WHERE ratio = \"40\"",
    "question_en": "What Russian has a Ratio of 40?",
    "question_th": "รัสเซียคนไหนมีอัตราส่วน 40?",
    "context": "CREATE TABLE table_name_60 (russian VARCHAR, ratio VARCHAR)"
  },
  {
    "answer": "SELECT avoirdupois_value FROM table_name_37 WHERE russian = \"берковец\"",
    "question_en": "What Avoirdupois value has a Russian of берковец?",
    "question_th": "ค่า Avoirdupois มีค่าเท่าใดในภาษารัสเซียของ берковец?",
    "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_en": "What Russian has an Avoirdupois value of 0.686 gr?",
    "question_th": "รัสเซียมีค่า Avoirdupois อยู่ที่ 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_en": "What Unit has a Ratio of 1/32?",
    "question_th": "หน่วยใดมีอัตราส่วน 1/32?",
    "context": "CREATE TABLE table_name_55 (unit VARCHAR, ratio VARCHAR)"
  },
  {
    "answer": "SELECT ratio FROM table_name_57 WHERE unit = \"zolotnik\"",
    "question_en": "What Ratio has a Unit of zolotnik?",
    "question_th": "อัตราส่วนมีหน่วยเป็น 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_en": "What player from New Mexico plays the WR position?",
    "question_th": "ผู้เล่นคนไหนจากนิวเม็กซิโกที่เล่นตำแหน่ง WR?",
    "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_en": "What's the Uni# of Timms, who has bats of R?",
    "question_th": "Uni# ของ Timms คืออะไร ใครมีค้างคาวเป็น 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_en": "What team were the Opponent in Game 29?",
    "question_th": "ทีมใดเป็นฝ่ายตรงข้ามในเกมที่ 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_en": "When did the woman who died at 31 first contact Hitlers?",
    "question_th": "ผู้หญิงที่เสียชีวิตเมื่ออายุ 31 ปีติดต่อกับฮิตเลอร์เป็นครั้งแรกเมื่อใด",
    "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_en": "What is the relationship of the woman who died at 96?",
    "question_th": "ความสัมพันธ์ของผู้หญิงที่เสียชีวิตเมื่ออายุ 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_en": "What is the lifespan of Stefanie Rabatsch?",
    "question_th": "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_en": "What is Brendan Gaughan's Car #?",
    "question_th": "#รถของ Brendan Gaughan คืออะไร?",
    "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_en": "What is Mike Skinner's Chevrolet's Car #?",
    "question_th": "รถเชฟโรเลตของ Mike Skinner คืออะไร #?",
    "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_en": "What is Driver Brendan Gaughan's Pos?",
    "question_th": "ตำแหน่งไดร์เวอร์ Brendan Gaughan คืออะไร",
    "context": "CREATE TABLE table_name_29 (pos VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT 2009 FROM table_name_36 WHERE total > 1 AND 2010 = \"4th\"",
    "question_en": "What was the 2009 value for a total over 1 and 4th on 2010?",
    "question_th": "มูลค่ารวมปี 2009 สำหรับผลรวมมากกว่า 1 และ 4 ในปี 2010 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_36 (total VARCHAR)"
  },
  {
    "answer": "SELECT laps FROM table_name_76 WHERE time_retired = \"+16.445\"",
    "question_en": "What is the number of laps for the Time/Retired of +16.445?",
    "question_th": "จำนวนรอบสำหรับเวลา/เกษียณที่ +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_en": "What is the number of laps for the honda vehicle, with a grid of 13?",
    "question_th": "รถยนต์ฮอนด้าที่มีตาราง 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_en": "What is the name of the company that constructed the vehicle for Timo Glock?",
    "question_th": "บริษัทที่สร้างรถยนต์ให้ทิโม กล็อคชื่ออะไร",
    "context": "CREATE TABLE table_name_15 (constructor VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT grid FROM table_name_99 WHERE driver = \"rubens barrichello\"",
    "question_en": "What is the Grid for Rubens Barrichello?",
    "question_th": "ตารางสำหรับ 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_en": "What is the Time/Retired for the BMW Sauber, and Nick Heidfeld?",
    "question_th": "เวลา / เกษียณสำหรับ BMW Sauber และ 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_en": "What were the total number of games in April greater than 83?",
    "question_th": "จำนวนเกมทั้งหมดในเดือนเมษายนมากกว่า 83 คือเท่าใด",
    "context": "CREATE TABLE table_name_61 (april VARCHAR, game INTEGER)"
  },
  {
    "answer": "SELECT MIN(games) AS ↑ FROM table_name_88 WHERE position = \"wlb\"",
    "question_en": "Which Games↑ is the lowest one that has a Position of wlb?",
    "question_th": "เกมไหน↑เป็นเกมที่ต่ำที่สุดที่มีตำแหน่ง wlb?",
    "context": "CREATE TABLE table_name_88 (games INTEGER, position VARCHAR)"
  },
  {
    "answer": "SELECT MIN(games) AS ↑ FROM table_name_88 WHERE number = 98",
    "question_en": "Which Games↑ is the lowest one that has a Number of 98?",
    "question_th": "เกมใด↑เป็นเกมที่ต่ำที่สุดที่มีหมายเลข 98",
    "context": "CREATE TABLE table_name_88 (games INTEGER, number VARCHAR)"
  },
  {
    "answer": "SELECT height FROM table_name_28 WHERE name = \"josh tabb\"",
    "question_en": "What is the height of Josh Tabb?",
    "question_th": "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_en": "What series episode has stetson hats (part 1) under segment C?",
    "question_th": "ซีรีส์ตอนใดมีหมวกสเต็ตสัน (ตอนที่ 1) อยู่ในกลุ่ม 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_en": "What is under segment C when s cuckoo clock is under segment B?",
    "question_th": "อะไรคือสิ่งที่อยู่ภายใต้ส่วน C เมื่อนาฬิกานกกาเหว่าอยู่ภายใต้ส่วน 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_en": "When segment B is s pineapple, what is the segment C?",
    "question_th": "เมื่อส่วน B คือสับปะรด ส่วน 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_en": "What series episode has jukeboxes as segment B?",
    "question_th": "ซีรีย์ตอนไหนมีตู้เพลงเป็นส่วน 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_en": "What week ended in a result of w 30-3, and had an attendance less than 62,795?",
    "question_th": "สัปดาห์ใดสิ้นสุดด้วยผล w 30-3 และมีผู้เข้าร่วมน้อยกว่า 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_en": "Which Format has a Catalog of 61298, and a Date of september 1984?",
    "question_th": "รูปแบบใดมีแคตตาล็อก 61298 และวันที่กันยายน 1984",
    "context": "CREATE TABLE table_name_51 (format VARCHAR, catalog VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT format FROM table_name_11 WHERE catalog < 61298",
    "question_en": "Which Format has a Catalog smaller than 61298?",
    "question_th": "รูปแบบใดมีแคตตาล็อกที่เล็กกว่า 61298",
    "context": "CREATE TABLE table_name_11 (format VARCHAR, catalog INTEGER)"
  },
  {
    "answer": "SELECT score FROM table_name_85 WHERE points = 96",
    "question_en": "What was the score of the game with 96 points?",
    "question_th": "เกมนี้ทำคะแนนได้ 96 แต้ม?",
    "context": "CREATE TABLE table_name_85 (score VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_1 WHERE record = \"34–17–11–2\"",
    "question_en": "What was the score of the game with a record of 34–17–11–2?",
    "question_th": "คะแนนของเกมด้วยสถิติ 34–17–11–2 คืออะไร?",
    "context": "CREATE TABLE table_name_1 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_72 WHERE game_site = \"rich stadium\"",
    "question_en": "What was the record after the game at Rich Stadium?",
    "question_th": "สถิติหลังเกมที่ริช สเตเดี้ยมเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_72 (record VARCHAR, game_site VARCHAR)"
  },
  {
    "answer": "SELECT first_cap FROM table_name_27 WHERE caps = 74",
    "question_en": "When was the first cap associated with 74 caps?",
    "question_th": "แคปแรกเกี่ยวข้องกับ 74 แคปเมื่อไหร่?",
    "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_en": "How many goals are associated with over 97 caps and a Latest cap of april 24, 2013?",
    "question_th": "มีกี่เป้าหมายที่เกี่ยวข้องกับการแคปมากกว่า 97 ครั้งและแคปล่าสุดเมื่อวันที่ 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_en": "When was the first cap associated with 39 caps and under 33 goals?",
    "question_th": "เมื่อใดที่แคปแรกสัมพันธ์กับ 39 แคปและต่ำกว่า 33 ประตู?",
    "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_en": "What is the highest number of goals associated with 39 caps?",
    "question_th": "จำนวนประตูสูงสุดที่เกี่ยวข้องกับ 39 แคปคือเท่าใด?",
    "context": "CREATE TABLE table_name_33 (goals INTEGER, caps VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(april) FROM table_name_98 WHERE record = \"42–22–12–3\" AND points < 99",
    "question_en": "How many days in April has a record of 42–22–12–3, and less than 99 points?",
    "question_th": "เดือนเมษายนมีสถิติ 42–22–12–3 กี่วัน น้อยกว่า 99 คะแนน?",
    "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_en": "Name the total number of points for 44 game and january more than 15",
    "question_th": "ระบุจำนวนแต้มรวม 44 เกม และ 15 มกราคม มากกว่า",
    "context": "CREATE TABLE table_name_78 (points VARCHAR, game VARCHAR, january VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_37 WHERE result = \"7–20\"",
    "question_en": "Which Date had a Result of 7–20?",
    "question_th": "วันที่ใดมีผลลัพธ์เป็น 7–20",
    "context": "CREATE TABLE table_name_37 (date VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_50 WHERE opponent = \"buffalo bills\"",
    "question_en": "Which Date had an Opponent of buffalo bills?",
    "question_th": "วันไหนมีคู่ต่อสู้บิลควาย?",
    "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_en": "Which Kickoff had a Game Site of bank of america stadium?",
    "question_th": "Kickoff ใดที่มีเว็บไซต์เกมของ 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_en": "Which Kickoff had a Game Site of fawcett stadium?",
    "question_th": "Kickoff ใดที่มีไซต์เกมของ 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_en": "Which NFL Recap had a Kickoff of 7:00pm edt?",
    "question_th": "NFL Recap รายการใดที่มีการแข่งขันเวลา 19.00 น. แก้ไข",
    "context": "CREATE TABLE table_name_16 (nfl_recap VARCHAR, kickoff VARCHAR)"
  },
  {
    "answer": "SELECT nfl_recap FROM table_name_1 WHERE record = \"1–3\"",
    "question_en": "Which NFL Recap had a Record of 1–3?",
    "question_th": "NFL Recap ใดที่มีสถิติ 1–3",
    "context": "CREATE TABLE table_name_1 (nfl_recap VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_68 WHERE game = 50",
    "question_en": "What was the Record on Game 50?",
    "question_th": "บันทึกในเกมที่ 50 คืออะไร?",
    "context": "CREATE TABLE table_name_68 (record VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_78 WHERE round = 17",
    "question_en": "what player score is higher than 17",
    "question_th": "คะแนนผู้เล่นคนใดสูงกว่า 17",
    "context": "CREATE TABLE table_name_78 (player VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_33 WHERE attendance = \"17,015\"",
    "question_en": "Which opponent has an attendance of 17,015?",
    "question_th": "คู่ต่อสู้คนไหนมีผู้ชม 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_en": "Which Frequency MHz is the highest one that has a Call sign of k241an?",
    "question_th": "ความถี่ MHz ใดที่มีสัญญาณเรียกขานเป็น 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_en": "Which ERP W is the highest one that has a Frequency MHz larger than 88.3, and a City of license of lewis, kansas?",
    "question_th": "ERP W ใดคือเครื่องสูงสุดที่มีความถี่ MHz มากกว่า 88.3 และเมืองที่ได้รับใบอนุญาตของลูอิส รัฐแคนซัส",
    "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_en": "Which FCC info has a ERP W smaller than 222, and a Call sign of k297ai?",
    "question_th": "ข้อมูล FCC ใดที่มี ERP W เล็กกว่า 222 และสัญญาณเรียกขานเป็น 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_en": "Which City of license has a Call sign of k241an?",
    "question_th": "เมืองใบอนุญาตใดมีสัญญาณเรียกขานเป็น 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_en": "Which Class has an ERP W of 222?",
    "question_th": "คลาสใดมี ERP W เท่ากับ 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_en": "What was the score on a clay surface in a year later than 2006 with David Ferrer as an opponent?",
    "question_th": "คะแนนบนพื้นดินเหนียวในหนึ่งปีหลังจากปี 2549 โดยมีเดวิด เฟอร์เรอร์เป็นคู่ต่อสู้เป็นเท่าใด",
    "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_en": "Which championship is in a year later than 2010 on a grass surface?",
    "question_th": "การแข่งขันชิงแชมป์ใดที่จะเกิดขึ้นในหนึ่งปีหลังจากปี 2010 บนพื้นหญ้า?",
    "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_en": "Which championship has Roger Federer as an opponent on a clay surface in a year earlier than 2007?",
    "question_th": "การแข่งขันชิงแชมป์รายการใดที่มี Roger Federer เป็นคู่ต่อสู้บนพื้นดินเหนียวในหนึ่งปีก่อนหน้าปี 2550",
    "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_en": "What is the largest attendance that has December 16, 1962 as the date?",
    "question_th": "ผู้เข้าร่วมมากที่สุดคือวันที่ 16 ธันวาคม 2505 เป็นวันที่ใด",
    "context": "CREATE TABLE table_name_84 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(week) FROM table_name_69 WHERE result = \"t 35-35\"",
    "question_en": "What is the largest week that has t 35-35 as the result?",
    "question_th": "สัปดาห์ที่ใหญ่ที่สุดที่มีผลลัพธ์ t 35-35 คืออะไร?",
    "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_en": "Name the total number of no result for losses more than 1 and played of 38 and wins less than 19",
    "question_th": "ตั้งชื่อจำนวนรวมของการไม่เป็นผลสำหรับการแพ้มากกว่า 1 และเล่นไป 38 และชนะน้อยกว่า 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_en": "Name the sum of played with wins more than 19",
    "question_th": "ตั้งชื่อผลรวมของการเล่นที่ชนะมากกว่า 19",
    "context": "CREATE TABLE table_name_14 (played INTEGER, wins INTEGER)"
  },
  {
    "answer": "SELECT COUNT(losses) FROM table_name_5 WHERE no_result < 0",
    "question_en": "Name the total number of losses with number result less than 0",
    "question_th": "ตั้งชื่อจำนวนการสูญเสียทั้งหมดโดยให้ผลลัพธ์น้อยกว่า 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_en": "Which Rank has Goals larger than 4, and a Scorer of oh seok-jae?",
    "question_th": "อันดับไหนที่มีประตูมากกว่า 4 และผู้ทำประตูของโอ ซอก-แจ?",
    "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_en": "Which Goals is the lowest one that has Matches of 16, and a Scorer of park sang-in?",
    "question_th": "ประตูใดคือประตูที่ต่ำที่สุดที่มีจำนวนการแข่งขัน 16 นัด และผู้ทำประตูของปาร์คซังอิน?",
    "context": "CREATE TABLE table_name_92 (goals INTEGER, matches VARCHAR, scorer VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_name_69 WHERE rank = \"1\"",
    "question_en": "Which Club has a Rank of 1?",
    "question_th": "สโมสรใดมีอันดับ 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_en": "Which Goals have a Club of hallelujah fc, and a Rank of 7?",
    "question_th": "ประตูใดมีสโมสรของฮาเลลูจาห์ เอฟซี และอันดับ 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_en": "How many Extra points have Touchdowns larger than 2, and Field goals larger than 0?",
    "question_th": "มีแต้มพิเศษกี่แต้มที่มีทัชดาวน์มากกว่า 2 และประตูในสนามมากกว่า 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_en": "Which Field goals is the highest one that has Touchdowns of 0, and Points larger than 4?",
    "question_th": "ประตูใดในสนามสูงสุดที่มีทัชดาวน์เป็น 0 และแต้มมากกว่า 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_en": "What is the grid number of Sandro Cortese, who has Aprilia as the manufacturer and less than 19 laps?",
    "question_th": "หมายเลขกริดของ Sandro Cortese ซึ่งมี Aprilia เป็นผู้ผลิตและน้อยกว่า 19 รอบเป็นเท่าใด",
    "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_en": "Which Rank has a Lost smaller than 12, and a Played larger than 20, and an Avg Points larger than 1.73?",
    "question_th": "อันดับใดที่มีการแพ้น้อยกว่า 12 และเล่นมากกว่า 20 และคะแนนเฉลี่ยมากกว่า 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_en": "Which Drew has a Rank of 5, and a Played larger than 30?",
    "question_th": "Drew คนไหนมีอันดับ 5 และเล่นได้มากกว่า 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_en": "Which Rank has a Club of zulte waregem, and Points larger than 22?",
    "question_th": "อันดับใดมี Club of zulte waregem และคะแนนมากกว่า 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_en": "Which Lost has Seasons of 2, and Goals against larger than 43?",
    "question_th": "Lost ใดที่มีฤดูกาลที่ 2 และเป้าหมายที่มากกว่า 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_en": "Which Drew has a Lost larger than 14?",
    "question_th": "Drew คนไหนที่สูญเสียมากกว่า 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_en": "Which Record has a Week smaller than 15, and an Opponent of at new york jets?",
    "question_th": "บันทึกใดที่มีสัปดาห์ที่น้อยกว่า 15 และเป็นฝ่ายตรงข้ามของเครื่องบินเจ็ตนิวยอร์ก",
    "context": "CREATE TABLE table_name_48 (record VARCHAR, week VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_14 WHERE record = \"5–4\"",
    "question_en": "Which Result has a Record of 5–4?",
    "question_th": "ผลลัพธ์ใดมีสถิติ 5–4",
    "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_en": "Which Record has a Time (ET) of 1:00pm, and an Opponent of kansas city chiefs?",
    "question_th": "บันทึกใดมีเวลา (ET) 13.00 น. และเป็นฝ่ายตรงข้ามของหัวหน้าเมืองแคนซัส",
    "context": "CREATE TABLE table_name_25 (record VARCHAR, time___et__ VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT hindi FROM table_name_78 WHERE domari = \"tærən\"",
    "question_en": "What is the Hindi associated with a Domari of tærən?",
    "question_th": "ภาษาฮินดีเกี่ยวข้องกับ Domari of tærən คืออะไร?",
    "context": "CREATE TABLE table_name_78 (hindi VARCHAR, domari VARCHAR)"
  },
  {
    "answer": "SELECT lomavren FROM table_name_32 WHERE persian = \"se\"",
    "question_en": "What is the Lomavren associated with a Persian of se?",
    "question_th": "Lomavren เกี่ยวข้องกับเปอร์เซียของ se คืออะไร?",
    "context": "CREATE TABLE table_name_32 (lomavren VARCHAR, persian VARCHAR)"
  },
  {
    "answer": "SELECT romani FROM table_name_44 WHERE domari = \"na\"",
    "question_en": "What is the Romani associated with a Domari of na?",
    "question_th": "Romani เกี่ยวข้องกับ Domari ของ na คืออะไร?",
    "context": "CREATE TABLE table_name_44 (romani VARCHAR, domari VARCHAR)"
  },
  {
    "answer": "SELECT domari FROM table_name_19 WHERE persian = \"yak, yek\"",
    "question_en": "What is the Domari associated with a Persian of yak, yek?",
    "question_th": "Domari เกี่ยวข้องกับเปอร์เซียจามรีอย่างไร?",
    "context": "CREATE TABLE table_name_19 (domari VARCHAR, persian VARCHAR)"
  },
  {
    "answer": "SELECT lomavren FROM table_name_68 WHERE hindi = \"sāt\"",
    "question_en": "What is the Lomavren associated with a Hindi of sāt?",
    "question_th": "Lomavren เกี่ยวข้องกับภาษาฮินดีของ sāt คืออะไร?",
    "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_en": "What is the Version before 2001 with a Length of 7:42?",
    "question_th": "เวอร์ชันก่อนปี 2544 ที่มีความยาว 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_en": "In what Year is the length of the Song 7:42?",
    "question_th": "เพลง 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_en": "Which College/Junior/Club Team (League) has a Position of right wing, and a Round smaller than 3?",
    "question_th": "ทีมวิทยาลัย/จูเนียร์/คลับ (ลีก) ใดที่มีตำแหน่งปีกขวา และรอบที่เล็กกว่า 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_en": "What is the orbital regime of launches greater than 4 and failures less than 2?",
    "question_th": "ระบบการโคจรของการปล่อยมากกว่า 4 และความล้มเหลวน้อยกว่า 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_en": "What is the total of medium earth orbital regime, accidentally achieved and successes greater than 3?",
    "question_th": "ระบอบการโคจรของโลกขนาดกลางทั้งหมด สำเร็จโดยบังเอิญและประสบความสำเร็จมากกว่า 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_en": "What is the greatest successes that have failures greater than 1 and launches less than 28?",
    "question_th": "ความสำเร็จที่ยิ่งใหญ่ที่สุดที่มีความล้มเหลวมากกว่า 1 และเปิดตัวน้อยกว่า 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_en": "What is the total failures of heliocentric orbit orbital regimes and launches less than 1?",
    "question_th": "อะไรคือความล้มเหลวทั้งหมดของระบบการโคจรของวงโคจรเฮลิโอเซนทริคและการปล่อยตัวน้อยกว่า 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_en": "What was the rank of tris speaker when BB/SO was 7?",
    "question_th": "วิทยากรทริสมียศเมื่อ BB/SO อายุ 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_en": "What is the average rank for team cle when the BB/SO is 10.89?",
    "question_th": "อันดับเฉลี่ยของทีมเคลเมื่อ BB/SO คือ 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_en": "What is the name of a partner that played on a hard surface on 18 April 2011?",
    "question_th": "คู่หูที่เล่นบนพื้นแข็งเมื่อวันที่ 18 เมษายน พ.ศ. 2554 ชื่ออะไร?",
    "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_en": "What was the score for the final played on 2 July 2012?",
    "question_th": "คะแนนสำหรับรอบชิงชนะเลิศในวันที่ 2 กรกฎาคม พ.ศ. 2555 เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_5 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_32 WHERE date = \"february 18, 2008\"",
    "question_en": "What was the Score on February 18, 2008?",
    "question_th": "คะแนนเมื่อวันที่ 18 กุมภาพันธ์ 2551 เป็นเท่าใด",
    "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–6, 6–3, [7–10]\"",
    "question_en": "What was the Opponent on the game played on a Hard Surface with a Score of 3–6, 6–3, [7–10]?",
    "question_th": "ฝ่ายตรงข้ามในเกมที่เล่นบนพื้นผิวแข็งด้วยคะแนน 3–6, 6–3, [7–10] คืออะไร",
    "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–6, 6–7 (4-7)\"",
    "question_en": "On what Surface was the game with Partner David Martin played Scoring 4–6, 6–7 (4-7)?",
    "question_th": "เกมที่ Surface มีคู่หู David Martin เล่นด้วยคะแนน 4–6, 6–7 (4-7)",
    "context": "CREATE TABLE table_name_24 (surface VARCHAR, partner VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_67 WHERE score = \"3–6, 4–6\"",
    "question_en": "What was the Outcome of the game with a Score of 3–6, 4–6?",
    "question_th": "ผลลัพธ์ของเกมด้วยคะแนน 3–6, 4–6 คืออะไร?",
    "context": "CREATE TABLE table_name_67 (outcome VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT partner FROM table_name_69 WHERE date = \"june 17, 2012\"",
    "question_en": "What was the Partner on June 17, 2012?",
    "question_th": "พันธมิตรคืออะไรเมื่อวันที่ 17 มิถุนายน 2555?",
    "context": "CREATE TABLE table_name_69 (partner VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_83 WHERE leading_scorer = \"glenn robinson (16)\"",
    "question_en": "What record has Glenn Robinson (16) as the leading scorer?",
    "question_th": "Glenn Robinson (16) เป็นผู้ทำประตูสูงสุดมีสถิติอะไรบ้าง?",
    "context": "CREATE TABLE table_name_83 (record VARCHAR, leading_scorer VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_83 WHERE score = \"136-134\"",
    "question_en": "What date has 136-134 as the score?",
    "question_th": "คะแนน 136-134 เป็นวันไหน?",
    "context": "CREATE TABLE table_name_83 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_6 WHERE score = \"136-134\"",
    "question_en": "What home has 136-134 as the score?",
    "question_th": "บ้านไหนมีสกอร์ 136-134 บ้าง?",
    "context": "CREATE TABLE table_name_6 (home VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT MAX(year) FROM table_name_77 WHERE bronze = \"china\"",
    "question_en": "What is the most recent year that China won a bronze?",
    "question_th": "ล่าสุดปีไหนที่จีนได้เหรียญทองแดง?",
    "context": "CREATE TABLE table_name_77 (year INTEGER, bronze VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_name_1 WHERE location = \"guangzhou\"",
    "question_en": "What is the oldest year that the location was at Guangzhou?",
    "question_th": "สถานที่นั้นอยู่ที่กวางโจวปีไหนที่เก่าแก่ที่สุด?",
    "context": "CREATE TABLE table_name_1 (year INTEGER, location VARCHAR)"
  },
  {
    "answer": "SELECT SUM(year) FROM table_name_7 WHERE location = \"beijing\"",
    "question_en": "For how many years was the location at Beijing?",
    "question_th": "อยู่ที่ปักกิ่งกี่ปี?",
    "context": "CREATE TABLE table_name_7 (year INTEGER, location VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_56 WHERE year < 1994",
    "question_en": "What location is previous to 1994?",
    "question_th": "สถานที่ใดก่อนปี 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_en": "What college(s) did the player(s) picked in round 4 with a pick number less than 98 play for?",
    "question_th": "ผู้เล่นเลือกวิทยาลัยใดในรอบที่ 4 โดยมีจำนวนตัวเลือกน้อยกว่า 98 ลงเล่นให้",
    "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_en": "What is the pick number for the player(s) drafted in round 8?",
    "question_th": "หมายเลขเลือกสำหรับผู้เล่นที่ดราฟต์ในรอบ 8 คืออะไร?",
    "context": "CREATE TABLE table_name_31 (pick__number VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_38 WHERE pick__number = 125",
    "question_en": "What position(s) did the player(s) with a pick number of 125 play?",
    "question_th": "ผู้เล่นที่มีหมายเลขเลือก 125 เล่นตำแหน่งใด?",
    "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_en": "What mean number of extra points was there when James Lawrence was a player and the touchdown number was less than 1?",
    "question_th": "เจมส์ ลอว์เรนซ์เป็นผู้เล่นมีคะแนนพิเศษเฉลี่ยจำนวนเท่าใดและจำนวนทัชดาวน์น้อยกว่า 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_en": "What is the smallest amount of touchdowns when there is a total player and a number of field goals of more than 0?",
    "question_th": "จำนวนทัชดาวน์ที่น้อยที่สุดเมื่อมีผู้เล่นทั้งหมดและจำนวนการยิงประตูมากกว่า 0 คือเท่าใด",
    "context": "CREATE TABLE table_name_88 (touchdowns INTEGER, player VARCHAR, field_goals VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_56 WHERE results¹ = \"4:0\"",
    "question_en": "On what Date were the Results¹ 4:0?",
    "question_th": "ผลลัพธ์คือวันที่ใด¹ 4:0",
    "context": "CREATE TABLE table_name_56 (date VARCHAR, results¹ VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_72 WHERE results¹ = \"5:1\"",
    "question_en": "On what Date were the Results¹ 5:1?",
    "question_th": "ผลลัพธ์คือวันที่ใด¹ 5:1",
    "context": "CREATE TABLE table_name_72 (date VARCHAR, results¹ VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_47 WHERE results¹ = \"4:0\"",
    "question_en": "On what Date were the Results¹ 4:0?",
    "question_th": "ผลลัพธ์คือวันที่ใด¹ 4:0",
    "context": "CREATE TABLE table_name_47 (date VARCHAR, results¹ VARCHAR)"
  },
  {
    "answer": "SELECT knots_knots AS :_pseudoknot_prediction, _ FROM table_name_65 WHERE name = \"tfold\"",
    "question_en": "What is the pseudoknot prediction of the software named tfold?",
    "question_th": "การทำนายหลอกของซอฟต์แวร์ชื่อ tfold คืออะไร?",
    "context": "CREATE TABLE table_name_65 (_ VARCHAR, knots_knots VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT chilean FROM table_name_78 WHERE castilian = \"ordenador\"",
    "question_en": "What Chilean word is used for the Castilian word ordenador?",
    "question_th": "คำภาษาชิลีคำใดที่ใช้สำหรับคำว่า ordenador ของ Castilian",
    "context": "CREATE TABLE table_name_78 (chilean VARCHAR, castilian VARCHAR)"
  },
  {
    "answer": "SELECT italian FROM table_name_59 WHERE mexican = \"frijol\"",
    "question_en": "What is the Italian word for the Mexican word frijol?",
    "question_th": "คำภาษาอิตาลีสำหรับคำภาษาเม็กซิกัน frijol คืออะไร?",
    "context": "CREATE TABLE table_name_59 (italian VARCHAR, mexican VARCHAR)"
  },
  {
    "answer": "SELECT castilian FROM table_name_95 WHERE italian = \"auto(mobile)\"",
    "question_en": "What word would a Castilian speaker use for the Italian word auto(mobile)?",
    "question_th": "ผู้พูดชาว Castilian จะใช้คำใดกับคำภาษาอิตาลีว่า auto(mobile)",
    "context": "CREATE TABLE table_name_95 (castilian VARCHAR, italian VARCHAR)"
  },
  {
    "answer": "SELECT castilian FROM table_name_17 WHERE italian = \"auto(mobile)\"",
    "question_en": "What word would a Castilian speaker use for the Italian word auto(mobile)?",
    "question_th": "ผู้พูดชาว Castilian จะใช้คำใดกับคำภาษาอิตาลีว่า auto(mobile)",
    "context": "CREATE TABLE table_name_17 (castilian VARCHAR, italian VARCHAR)"
  },
  {
    "answer": "SELECT italian FROM table_name_78 WHERE andalusian = \"coche\"",
    "question_en": "How would an Italian say the Andalusian word coche?",
    "question_th": "ชาวอิตาลีจะพูดคำว่า 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–3\"",
    "question_en": "Which Home has a Visitor of ny rangers, and a Series of flyers win 4–3?",
    "question_th": "บ้านไหนมีผู้มาเยือนจากเรนเจอร์ และซีรีส์ใบปลิวชนะ 4–3",
    "context": "CREATE TABLE table_name_42 (home VARCHAR, visitor VARCHAR, series VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_17 WHERE series = \"flyers lead 3–2\"",
    "question_en": "Which Score has a Series of flyers lead 3–2?",
    "question_th": "คะแนนใดที่มีชุดนักบินขึ้นนำ 3–2",
    "context": "CREATE TABLE table_name_17 (score VARCHAR, series VARCHAR)"
  },
  {
    "answer": "SELECT decision FROM table_name_85 WHERE date = \"april 25\"",
    "question_en": "Which Decision has a Date of april 25?",
    "question_th": "การตัดสินใจใดมีวันที่ 25 เมษายน?",
    "context": "CREATE TABLE table_name_85 (decision VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT decision FROM table_name_95 WHERE date = \"april 30\"",
    "question_en": "Which Decision has a Date of april 30?",
    "question_th": "การตัดสินใจใดมีวันที่ 30 เมษายน",
    "context": "CREATE TABLE table_name_95 (decision VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_92 WHERE series = \"series tied 3–3\"",
    "question_en": "Which Home has a Series of series tied 3–3?",
    "question_th": "บ้านใดมีซีรีส์ซีรีส์เสมอกัน 3–3?",
    "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_en": "Events of 22, and a Rank smaller than 4 involved which of the lowest earnings ($)?",
    "question_th": "เหตุการณ์ที่ 22 และอันดับที่น้อยกว่า 4 เกี่ยวข้องกับรายรับที่ต่ำที่สุด ($)?",
    "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_en": "Player of corey pavin, and a Rank larger than 4 involved which highest earnings ($)?",
    "question_th": "ผู้เล่นของ Corey Pavin และอันดับมากกว่า 4 เกี่ยวข้องกับรายรับสูงสุด ($) ใด",
    "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_en": "What is the mascot with an enrollment (2010) less than 980, and heritage as the school?",
    "question_th": "อะไรเป็นมิ่งขวัญที่มีการลงทะเบียน (2010) น้อยกว่า 980 และมรดกเป็นโรงเรียน?",
    "context": "CREATE TABLE table_name_20 (mascot VARCHAR, enrollment__2010_ VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_name_9 WHERE weight = 242",
    "question_en": "What is the class of the player with a weight of 242 pounds?",
    "question_th": "ผู้เล่นน้ำหนัก 242 ปอนด์ อยู่ในคลาสอะไร?",
    "context": "CREATE TABLE table_name_9 (class VARCHAR, weight VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(games) AS ↑ FROM table_name_18 WHERE position = \"fb\"",
    "question_en": "How many games were played by the player at FB?",
    "question_th": "ผู้เล่นที่ 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_en": "Which Name has a Round smaller than 5, and a Pick # larger than 13?",
    "question_th": "ชื่อใดมีรอบที่เล็กกว่า 5 และเลือก # ที่ใหญ่กว่า 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_en": "Which Pick # has a Round smaller than 6, and an Overall larger than 13, and a College of penn state?",
    "question_th": "ตัวเลือก # ใดที่มีรอบที่เล็กกว่า 6 และโดยรวมมากกว่า 13 และ 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_en": "Which Name has an Overall of 235?",
    "question_th": "ชื่อใดมีคะแนนรวม 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_en": "How many cosponsors have a Date introduced of may 22, 2008?",
    "question_th": "มีผู้สนับสนุนกี่รายที่มีวันที่แนะนำในวันที่ 22 พฤษภาคม 2551",
    "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_en": "Which Congress has a # of cosponsors of 19?",
    "question_th": "สภาใดมีผู้ร่วมสนับสนุนจำนวน 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_en": "On what date was a friendly match held at Auckland?",
    "question_th": "การแข่งขันกระชับมิตรที่โอ๊คแลนด์จัดขึ้นวันไหน?",
    "context": "CREATE TABLE table_name_32 (date VARCHAR, competition VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT goals FROM table_name_16 WHERE venue = \"sydney\"",
    "question_en": "What were the goals at Sydney?",
    "question_th": "เป้าหมายที่ซิดนีย์คืออะไร?",
    "context": "CREATE TABLE table_name_16 (goals VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(sets_lost) FROM table_name_15 WHERE sets_won < 0",
    "question_en": "How many sets lost have a sets won less than 0?",
    "question_th": "มีเซ็ตที่แพ้ไปกี่เซ็ตที่ชนะน้อยกว่า 0?",
    "context": "CREATE TABLE table_name_15 (sets_lost VARCHAR, sets_won INTEGER)"
  },
  {
    "answer": "SELECT iata FROM table_name_89 WHERE city = \"sapporo\"",
    "question_en": "What shows for IATA for the City of sapporo?",
    "question_th": "IATA แสดงให้เห็นอะไรบ้างสำหรับเมืองซัปโปโร",
    "context": "CREATE TABLE table_name_89 (iata VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT icao FROM table_name_72 WHERE iata = \"cts\"",
    "question_en": "What is the ICAO when the IATA shows cts?",
    "question_th": "ICAO คืออะไรเมื่อ IATA แสดง cts?",
    "context": "CREATE TABLE table_name_72 (icao VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_98 WHERE iata = \"cju\"",
    "question_en": "What is the Country when the IATA shows cju?",
    "question_th": "ประเทศใดที่ IATA แสดง cju?",
    "context": "CREATE TABLE table_name_98 (country VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT icao FROM table_name_2 WHERE iata = \"mfm\"",
    "question_en": "What is the ICAO when the IATA shows mfm?",
    "question_th": "ICAO คืออะไรเมื่อ IATA แสดง mfm",
    "context": "CREATE TABLE table_name_2 (icao VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT icao FROM table_name_73 WHERE country = \"hong kong\"",
    "question_en": "What is the ICAO for Hong Kong?",
    "question_th": "ICAO สำหรับฮ่องกงคืออะไร?",
    "context": "CREATE TABLE table_name_73 (icao VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT airport FROM table_name_56 WHERE icao = \"rpvm\"",
    "question_en": "What is the Airport when the ICAO shows rpvm?",
    "question_th": "สนามบินคืออะไรเมื่อ ICAO แสดง 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_en": "What is the lowest goals for value with fewer than 5 draws and under 70 points?",
    "question_th": "ประตูมูลค่าต่ำสุดโดยเสมอน้อยกว่า 5 นัดและต่ำกว่า 70 แต้มคืออะไร?",
    "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_en": "What is the lowest goals against value for a team with 83 points and a difference over 50?",
    "question_th": "ประตูต่ำสุดเทียบกับมูลค่าสำหรับทีมที่มี 83 แต้มและผลต่างมากกว่า 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_en": "What is the earliest season that has a position over 12?",
    "question_th": "ฤดูกาลแรกสุดที่มีตำแหน่งมากกว่า 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_en": "What is the average goals for with a position under 12, draws over 1, and goals against under 28?",
    "question_th": "ประตูเฉลี่ยสำหรับอันดับต่ำกว่า 12 ปี เสมอมากกว่า 1 และประตูต่ออายุต่ำกว่า 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–24\"",
    "question_en": "Who was the Opponent with a Result of l 17–24?",
    "question_th": "ใครคือฝ่ายตรงข้ามที่มีผลการแข่งขัน l 17–24?",
    "context": "CREATE TABLE table_name_78 (opponent VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_31 WHERE result = \"l 21–34\"",
    "question_en": "What Date has a Result of l 21–34?",
    "question_th": "วันที่มีผล l 21–34 คืออะไร?",
    "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_en": "What Game Site has a Week smaller than 11, and a Date of october 21, 1973?",
    "question_th": "เว็บไซต์เกมใดที่มีสัปดาห์ที่น้อยกว่า 11 และมีวันที่ 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–9\"",
    "question_en": "What is the value of the lowest Week with a Record of 2–9?",
    "question_th": "ค่าของสัปดาห์ต่ำสุดที่มีสถิติ 2–9 คือเท่าใด?",
    "context": "CREATE TABLE table_name_46 (week INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_12 WHERE week > 13",
    "question_en": "Who is the opponent for the game that occurred after week 13?",
    "question_th": "คู่ต่อสู้ของเกมที่เกิดขึ้นหลังสัปดาห์ที่ 13 คือใคร?",
    "context": "CREATE TABLE table_name_12 (opponent VARCHAR, week INTEGER)"
  },
  {
    "answer": "SELECT date FROM table_name_3 WHERE week = 6",
    "question_en": "What day did the play on week 6?",
    "question_th": "สัปดาห์ที่ 6 เล่นวันไหนคะ?",
    "context": "CREATE TABLE table_name_3 (date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_77 WHERE 2009 = \"1r\"",
    "question_en": "Which tournament had a 2009 result of 1R?",
    "question_th": "ทัวร์นาเมนต์ใดที่มีผลการแข่งขัน 1R ในปี 2009",
    "context": "CREATE TABLE table_name_77 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_64 WHERE 2012 = \"sf\" AND 2010 = \"qf\"",
    "question_en": "Which tournament had a 2010 result of QF and a 2012 result of SF?",
    "question_th": "ทัวร์นาเมนต์ใดที่มีผลการแข่งขัน QF ปี 2010 และผลการแข่งขัน SF ปี 2012",
    "context": "CREATE TABLE table_name_64 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_49 WHERE 2012 = \"a\" AND 2010 = \"a\"",
    "question_en": "Which tournament had a result in 2010 and 2012 of a?",
    "question_th": "การแข่งขันใดที่มีผลการแข่งขันในปี 2010 และ 2012 ของ a?",
    "context": "CREATE TABLE table_name_49 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT third FROM table_name_73 WHERE venue = \"rybinsk\" AND round = \"6\"",
    "question_en": "Who was third during round 6 in Rybinsk?",
    "question_th": "ใครคือคนที่สามในรอบที่ 6 ที่ไรบินสค์?",
    "context": "CREATE TABLE table_name_73 (third VARCHAR, venue VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT third FROM table_name_43 WHERE round = \"14\"",
    "question_en": "Who was third in round 14?",
    "question_th": "ใครคือคนที่สามในรอบ 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_en": "What was the venue with a 3.3km c prologue discipline?",
    "question_th": "สถานที่ที่มีวินัยอารัมภบท 3.3 กม. C คืออะไร?",
    "context": "CREATE TABLE table_name_95 (venue VARCHAR, discipline VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_59 WHERE date = \"28 december 2007\"",
    "question_en": "Who was the winner on 28 December 2007?",
    "question_th": "ใครคือผู้ชนะในวันที่ 28 ธันวาคม พ.ศ. 2550?",
    "context": "CREATE TABLE table_name_59 (winner VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT third FROM table_name_32 WHERE discipline = \"0.8km f sprint\"",
    "question_en": "Who was third at the 0.8km f sprint discipline?",
    "question_th": "ใครคือคนที่สามในการแข่งขันวิ่งระยะ 0.8 กม. f",
    "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_en": "What is the highest total cargo of an airport ranked larger than 19 with a code of BKK/VTBS?",
    "question_th": "สินค้ารวมสูงสุดของสนามบินที่มีอันดับมากกว่า 19 ด้วยรหัส 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_en": "What is the rank of the airport with the BKK/VTBS code?",
    "question_th": "สนามบินที่มีรหัส BKK/VTBS อยู่อันดับไหน?",
    "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_en": "Which Matches has champion Rank of 5?",
    "question_th": "นัดไหนมีแชมป์อันดับ 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_en": "Which Matches is on 24 march 1963 with a Rank larger than 44?",
    "question_th": "นัดใดคือวันที่ 24 มีนาคม 2506 โดยมีอันดับมากกว่า 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_en": "what game was on may 24",
    "question_th": "วันที่ 24 พฤษภาคมเป็นเกมอะไร",
    "context": "CREATE TABLE table_name_27 (game VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_5 WHERE date = \"may 29\"",
    "question_en": "what game was on may 29",
    "question_th": "วันที่ 29 พฤษภาคมเป็นเกมอะไร",
    "context": "CREATE TABLE table_name_5 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_50 WHERE date = \"may 20\"",
    "question_en": "what team played on may 20 on the home side",
    "question_th": "ทีมใดเล่นในวันที่ 20 พฤษภาคมทางฝั่งเจ้าบ้าน",
    "context": "CREATE TABLE table_name_50 (home_team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT road_team FROM table_name_24 WHERE game = \"game 2\"",
    "question_en": "what team played in game 2",
    "question_th": "ทีมอะไรเล่นในเกมที่ 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_en": "Which Raison Blue has the highest nicotine?",
    "question_th": "Raison Blue ใดมีนิโคตินสูงที่สุด?",
    "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_en": "For Raison Blue with a nicotine larger than 0.30000000000000004, what's the lowest quantity?",
    "question_th": "Raison Blue ที่มีนิโคตินมากกว่า 0.30000000000000004 ปริมาณต่ำสุดคือเท่าใด",
    "context": "CREATE TABLE table_name_60 (quantity INTEGER, name VARCHAR, nicotine VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_1 WHERE film_title = \"paljas\"",
    "question_en": "What was the result for the fil Paljas?",
    "question_th": "ผลลัพธ์ของฟิล ปาลยาสเป็นอย่างไร?",
    "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_en": "In what year was the rank less than 6 for Damac Heights?",
    "question_th": "อันดับ Damac Heights น้อยกว่า 6 ในปีใด",
    "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_en": "What is the height for rank greater than 10 in Tameer Tower?",
    "question_th": "ความสูงสำหรับอันดับที่มากกว่า 10 ในหอคอย Tameer คือเท่าไร?",
    "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_en": "What was the earliest year with rank 20 and less than 60 floors?",
    "question_th": "ปีแรกสุดที่มีอันดับ 20 และน้อยกว่า 60 ชั้นคือปีใด",
    "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_en": "What is the highest floors with rank greater than 1 in Conrad Dubai?",
    "question_th": "ชั้นสูงสุดที่มีอันดับมากกว่า 1 ในคอนราดดูไบคือชั้นใด",
    "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_en": "How many Laps have a Driver of satrio hermanto?",
    "question_th": "มีคนขับ satrio hermanto กี่รอบ?",
    "context": "CREATE TABLE table_name_76 (laps INTEGER, driver VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_59 WHERE grid = 19",
    "question_en": "Which Time has a Grid of 19?",
    "question_th": "เวลาใดมีตารางเป็น 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_en": "Which Grid is the lowest one that has a Team of germany, and Laps smaller than 45?",
    "question_th": "กริดไหนคือตัวต่ำสุดที่มีทีมจากเยอรมนี และรอบสนามเล็กกว่า 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_en": "WHich team draft the player who went to college in Washington?",
    "question_th": "ทีมใดร่างผู้เล่นที่ไปเรียนวิทยาลัยในวอชิงตัน?",
    "context": "CREATE TABLE table_name_19 (nfl_team VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_34 WHERE college = \"washington\"",
    "question_en": "What position did the palyer drafted out of Washington play?",
    "question_th": "ผู้เล่นถูกร่างจากการเล่นในวอชิงตันในตำแหน่งใด",
    "context": "CREATE TABLE table_name_34 (position VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT AVG(gold) FROM table_name_82 WHERE bronze = 5",
    "question_en": "What is the average number of Gold medals when there are 5 bronze medals?",
    "question_th": "จำนวนเหรียญทองโดยเฉลี่ยเมื่อมี 5 เหรียญทองแดงคือเท่าใด",
    "context": "CREATE TABLE table_name_82 (gold INTEGER, bronze VARCHAR)"
  },
  {
    "answer": "SELECT MAX(bronze) FROM table_name_46 WHERE rank > 9",
    "question_en": "What is the highest amount of bronze medals when the rank was larger than 9?",
    "question_th": "เหรียญทองแดงสูงสุดเมื่ออันดับมากกว่า 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_en": "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?",
    "question_th": "จำนวนเหรียญทองแดงน้อยที่สุดของจาเมกาที่ได้อันดับที่ต่ำกว่า 4 และมีเหรียญเงินมากกว่า 0 เหรียญและรวมน้อยกว่า 22 เหรียญคือเท่าใด",
    "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_en": "Nation of bulgaria, and a Place larger than 1 had what highest 3 Balls, 2 Ribbons?",
    "question_th": "ประเทศบัลแกเรีย และสถานที่ที่ใหญ่กว่า 1 จะมีลูกบอล 3 ลูก ริบบิ้น 2 อันสูงสุดอะไร?",
    "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_en": "5 Hoops that has a Place larger than 7, and a Total larger than 38.525 had what sum?",
    "question_th": "5 ห่วงที่มีตำแหน่งมากกว่า 7 และผลรวมมากกว่า 38.525 จะมีผลรวมเป็นเท่าใด",
    "context": "CREATE TABLE table_name_83 (place VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT voice_actor__japanese_ FROM table_name_59 WHERE character_name = \"tien\"",
    "question_en": "what voice acter played tien",
    "question_th": "นักพากย์คนไหนที่เล่นเป็นเถียน",
    "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_en": "what character did Laara sadiq play",
    "question_th": "Laara sadiq เล่นเป็นตัวละครตัวไหน",
    "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_en": "what character did Masaharu satou play",
    "question_th": "มาซาฮารุ ซาโต้เล่นเป็นตัวละครตัวไหน",
    "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_en": "what character did dave ward play",
    "question_th": "เดฟ วอร์ดเล่นเป็นตัวละครตัวไหน",
    "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_en": "what character did naoko watanabe play",
    "question_th": "นาโอโกะ วาตานาเบ้เล่นเป็นตัวละครตัวไหน",
    "context": "CREATE TABLE table_name_82 (character_name VARCHAR, voice_actor__japanese_ VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_51 WHERE year = 2009",
    "question_en": "At what Location was Miss World 2009?",
    "question_th": "มิสเวิลด์ 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_en": "What is the score of the 1996 Emarate cup on March 25, 1996?",
    "question_th": "เอ็มมาเรต คัพ 1996 เมื่อวันที่ 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_en": "Which competition was on August 11, 1996?",
    "question_th": "แข่งขันรายการใดในวันที่ 11 สิงหาคม พ.ศ. 2539?",
    "context": "CREATE TABLE table_name_42 (competition VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_80 WHERE venue = \"dubai\"",
    "question_en": "Which competition was in Dubai?",
    "question_th": "การแข่งขันครั้งใดที่ดูไบ?",
    "context": "CREATE TABLE table_name_80 (competition VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_75 WHERE venue = \"bangkok\"",
    "question_en": "What is the result of the match in Bangkok?",
    "question_th": "ผลการแข่งขันที่กรุงเทพเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_75 (result VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_44 WHERE result = \"4-0\"",
    "question_en": "What is the date of the match with a result of 4-0?",
    "question_th": "แมตช์วันที่เท่าไหร่ด้วยผล 4-0?",
    "context": "CREATE TABLE table_name_44 (date VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_39 WHERE result = \"4-0\"",
    "question_en": "What is the score of the match with a 4-0 result?",
    "question_th": "แมตช์นี้สกอร์ 4-0 เป็นอย่างไรบ้าง?",
    "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_en": "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?",
    "question_th": "ชื่อไหนมีจำนวนรวมเกิน 164 เมื่อเลขเลือกเกิน 2 ตำแหน่งวิ่งกลับรอบคือ 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_en": "Which college's round is more than 4, when the overall is less than 237 and Ted Cottrell was the name?",
    "question_th": "รอบวิทยาลัยใดที่มากกว่า 4 เมื่อคะแนนรวมน้อยกว่า 237 และ Ted Cottrell เป็นชื่อ?",
    "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_en": "What is the smallest overall for Oregon State?",
    "question_th": "โดยรวมที่เล็กที่สุดสำหรับ 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_en": "What is the class of the qb, Josh Riddell?",
    "question_th": "Josh Riddell qb อยู่ในคลาสอะไร",
    "context": "CREATE TABLE table_name_45 (class VARCHAR, position VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_45 WHERE name = \"jamar chaney\"",
    "question_en": "What position does Jamar Chaney play?",
    "question_th": "จามาร์ ชานีย์ เล่นตำแหน่งอะไร?",
    "context": "CREATE TABLE table_name_45 (position VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_name_47 WHERE name = \"kyle love\"",
    "question_en": "What hometown is Kyle love from?",
    "question_th": "ไคล์รักมาจากบ้านเกิดที่ใด?",
    "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_en": "Which Attendance has a Home of philadelphia, and Points smaller than 23?",
    "question_th": "ผู้เข้าร่วมคนใดมีบ้านของฟิลาเดลเฟียและคะแนนน้อยกว่า 23",
    "context": "CREATE TABLE table_name_59 (attendance INTEGER, home VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_71 WHERE record = \"9–12–5\"",
    "question_en": "Which Visitor has a Record of 9–12–5?",
    "question_th": "ผู้เยี่ยมชมรายใดมีบันทึก 9–12–5",
    "context": "CREATE TABLE table_name_71 (visitor VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_76 WHERE visitor = \"boston\"",
    "question_en": "Which Date has a Visitor of boston?",
    "question_th": "วันไหนที่มีผู้มาเยือนบอสตัน?",
    "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_en": "What is the date for the grass surface final against Nathan Healey?",
    "question_th": "พื้นหญ้ารอบชิงชนะเลิศกับนาธาน ฮีลีย์คือวันที่เท่าไร?",
    "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_en": "What was the score of the final against Dane Propoggia?",
    "question_th": "รอบชิงชนะเลิศกับ 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_en": "What was the total score when the E score was larger than 9.6 and the A score was 6?",
    "question_th": "คะแนนรวมเมื่อคะแนน E มากกว่า 9.6 และคะแนน A คือ 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_en": "What was the average E score when the T score was less than 4?",
    "question_th": "คะแนน E เฉลี่ยเมื่อคะแนน T น้อยกว่า 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_en": "What was the average T score when the E score was larger than 9.6 and the team was from Spain?",
    "question_th": "คะแนน T เฉลี่ยเป็นเท่าใดเมื่อคะแนน E มากกว่า 9.6 และทีมมาจากสเปน?",
    "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_en": "What was the total number of A scores for Japan when the T score was more than 4?",
    "question_th": "คะแนน A ของญี่ปุ่นทั้งหมดเมื่อคะแนน T มากกว่า 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_en": "What was the sum of the E scores when the total score was 19.466?",
    "question_th": "ผลรวมของคะแนน E เมื่อคะแนนรวมคือ 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_en": "What is the total number of E scores when the total score was 19.7 and the A score was more than 6?",
    "question_th": "จำนวนคะแนน E ทั้งหมดเมื่อคะแนนรวมเป็น 19.7 และคะแนน A มากกว่า 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_en": "What is the highest number of draws with 14 points and less than 7 games?",
    "question_th": "เสมอกันสูงสุด 14 แต้ม น้อยกว่า 7 นัด คือเลขไหน?",
    "context": "CREATE TABLE table_name_39 (drawn INTEGER, points VARCHAR, games VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_92 WHERE record = \"4-5\"",
    "question_en": "What was the attendance at the game with a record of 4-5?",
    "question_th": "ผู้เข้าชมเกมด้วยสถิติ 4-5 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_92 (attendance VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_79 WHERE week = 16",
    "question_en": "What was the date of the week 16 game?",
    "question_th": "เกมสัปดาห์ที่ 16 ตรงกับวันที่เท่าไร?",
    "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_en": "What was the record at the game with a result of W 13-12 after week 4?",
    "question_th": "อะไรคือสถิติในเกมกับผล W 13-12 หลังจากสัปดาห์ที่ 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_en": "Who was the opponent at the game attended by 62,019 before week 17?",
    "question_th": "คู่ต่อสู้ในเกมที่มีผู้เข้าร่วม 62,019 คนคือใครก่อนสัปดาห์ที่ 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_en": "Name the surface for january 8, 2001",
    "question_th": "ตั้งชื่อพื้นผิวสำหรับวันที่ 8 มกราคม พ.ศ. 2544",
    "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_en": "Name the outcome for jordan kerr july 19, 2004",
    "question_th": "ทายผลการแข่งขันของจอร์แดน เคอร์ วันที่ 19 กรกฎาคม พ.ศ. 2547",
    "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_en": "Name the score for opponents of nathan healey igor kunitsyn",
    "question_th": "ทายผลสกอร์ของฝ่ายตรงข้ามของ นาธาน เฮลีย์ อิกอร์ คูนิทซิน",
    "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örkman john mcenroe\"",
    "question_en": "Name the outcome for opponents of jonas björkman john mcenroe",
    "question_th": "ตั้งชื่อผลลัพธ์สำหรับคู่ต่อสู้ของ jonas björkman 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_en": "Name the surface for paul goldstein and date of october 2, 2006",
    "question_th": "ตั้งชื่อพื้นผิวของ paul goldstein และวันที่ 2 ตุลาคม 2549",
    "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_en": "Which Games have a Drawn smaller than 1, and a Lost smaller than 1?",
    "question_th": "เกมใดที่มีการเสมอน้อยกว่า 1 และแพ้น้อยกว่า 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_en": "Which Drawn is the lowest one that has a Lost of 5, and Points larger than 4?",
    "question_th": "จั่วอันไหนน้อยที่สุดที่แพ้ 5 และแต้มมากกว่า 4?",
    "context": "CREATE TABLE table_name_32 (drawn INTEGER, lost VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT government FROM table_name_56 WHERE seats = 57",
    "question_en": "Which Government has 57 seats?",
    "question_th": "รัฐบาลใดมี 57 ที่นั่ง?",
    "context": "CREATE TABLE table_name_56 (government VARCHAR, seats VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(seats) FROM table_name_72 WHERE dáil = \"6th\"",
    "question_en": "How many seats does the 6th Dail have?",
    "question_th": "รัชกาลที่ 6 มีกี่ที่นั่ง?",
    "context": "CREATE TABLE table_name_72 (seats VARCHAR, dáil VARCHAR)"
  },
  {
    "answer": "SELECT dáil FROM table_name_55 WHERE seats = 61",
    "question_en": "What is the number of the dail with 61 seats?",
    "question_th": "เบาะนั่งมี 61 ที่นั่ง เบอร์อะไรครับ?",
    "context": "CREATE TABLE table_name_55 (dáil VARCHAR, seats VARCHAR)"
  },
  {
    "answer": "SELECT MIN(seats) FROM table_name_55 WHERE share_of_votes = \"27.0%\"",
    "question_en": "What is the lowest number of seats from the election with 27.0% of votes?",
    "question_th": "จำนวนที่นั่งต่ำสุดจากการเลือกตั้งด้วยคะแนนเสียง 27.0% คือเท่าใด?",
    "context": "CREATE TABLE table_name_55 (seats INTEGER, share_of_votes VARCHAR)"
  },
  {
    "answer": "SELECT share_of_votes FROM table_name_67 WHERE dáil = \"6th\"",
    "question_en": "What is the 6th dail share of votes?",
    "question_th": "ส่วนแบ่งการลงคะแนนวันที่ 6 คืออะไร?",
    "context": "CREATE TABLE table_name_67 (share_of_votes VARCHAR, dáil VARCHAR)"
  },
  {
    "answer": "SELECT MAX(week) FROM table_name_48 WHERE record = \"1-3\"",
    "question_en": "What was the highest week when the record was 1-3?",
    "question_th": "สัปดาห์ไหนที่ทำสถิติสูงสุดคือ 1-3?",
    "context": "CREATE TABLE table_name_48 (week INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_34 WHERE attendance = \"62,657\"",
    "question_en": "Who was the opponent at the game attended by 62,657?",
    "question_th": "คู่ต่อสู้ในเกมที่มีผู้เข้าร่วม 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_en": "What is the year built for the Fay No. 4?",
    "question_th": "นางฟ้าหมายเลข 4 สร้างปีไหนคะ?",
    "context": "CREATE TABLE table_name_47 (year_built INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT year_built FROM table_name_38 WHERE length = \"91'\"",
    "question_en": "Where the length is 91', what is the year built?",
    "question_th": "ยาว 91' สร้างปีไหนครับ?",
    "context": "CREATE TABLE table_name_38 (year_built VARCHAR, length VARCHAR)"
  },
  {
    "answer": "SELECT address FROM table_name_80 WHERE mascot = \"scorpions\"",
    "question_en": "What is the address for the Scorpions' mascot?",
    "question_th": "ที่อยู่ของมาสค็อตของแมงป่องคืออะไร?",
    "context": "CREATE TABLE table_name_80 (address VARCHAR, mascot VARCHAR)"
  },
  {
    "answer": "SELECT mascot FROM table_name_7 WHERE principal__2013_2014_ = \"frank hendricsen\"",
    "question_en": "What was the mascot for the 2013-2014 principal named Frank Hendricsen?",
    "question_th": "แฟรงก์ เฮนดริกเซ่น มาสคอตของอาจารย์ใหญ่ประจำปี 2013-2014 คืออะไร",
    "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_en": "Who were the assistant and main principals of Kat Hughes?",
    "question_th": "ใครคือผู้ช่วยและอาจารย์ใหญ่ของ 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_en": "What is the address for the school that has the coyotes mascot?",
    "question_th": "ที่อยู่ของโรงเรียนที่มีมาสคอตหมาป่าคือที่ไหน?",
    "context": "CREATE TABLE table_name_44 (address VARCHAR, mascot VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_26 WHERE venue = \"jinan\"",
    "question_en": "What is the result of the game played at Jinan?",
    "question_th": "ผลการแข่งขันที่จี่หนานเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_26 (result VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_17 WHERE date = \"november 10, 2006\"",
    "question_en": "What is the score of the game on November 10, 2006?",
    "question_th": "คะแนนของเกมวันที่ 10 พฤศจิกายน 2549 เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_17 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_87 WHERE venue = \"lahore\"",
    "question_en": "What is the date of the game held at Lahore?",
    "question_th": "เกมที่จัดขึ้นที่ลาฮอร์คือวันที่เท่าไหร่?",
    "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_en": "What were the total number of entries in 2001 that had a front row smaller than 13?",
    "question_th": "จำนวนรายการทั้งหมดในปี 2544 ที่มีแถวหน้าน้อยกว่า 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_en": "What are the lowest entries for a front row smaller than 15 where Michael Schumacher was driving?",
    "question_th": "รายการต่ำสุดสำหรับแถวหน้าที่มีขนาดเล็กกว่า 15 ที่ Michael Schumacher ขับรถคืออะไร",
    "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_en": "What was the highest front row starts for Alain Prost?",
    "question_th": "แถวหน้าสูงสุดออกสตาร์ทของ 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_en": "Which Against has Losses larger than 2, and Wins of 8, and Byes smaller than 0?",
    "question_th": "ซึ่ง Against มีการสูญเสียมากกว่า 2 และชนะ 8 และ Byes น้อยกว่า 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_en": "Which Draws have Wins larger than 14?",
    "question_th": "งวดใดที่มีการชนะมากกว่า 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_en": "How many Losses have an NTFA Div 2 of perth, and Wins smaller than 10?",
    "question_th": "มีการสูญเสียกี่ครั้งที่มี NTFA Div 2 ของเพิร์ธ และชนะน้อยกว่า 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_en": "Which Byes have an Against smaller than 1647, and an NTFA Div 2 of fingal valley, and Wins smaller than 14?",
    "question_th": "Byes ใดที่มี Against น้อยกว่า 1647 และ NTFA Div 2 ของ fingal Valley และชนะน้อยกว่า 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_en": "How many grids were there races with more than 10 laps and a time of +34.121?",
    "question_th": "มีการแข่งขันกี่กริดที่มีมากกว่า 10 รอบและเวลา +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_en": "What is the smallest grid number that had 10 laps listed with Jonathan Summerton as the driver?",
    "question_th": "หมายเลขกริดที่เล็กที่สุดที่มี 10 รอบที่ระบุโดย Jonathan Summerton เป็นนักแข่งคือข้อใด",
    "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_en": "What is the average grid number that had Team China with less than 10 laps?",
    "question_th": "หมายเลขกริดเฉลี่ยที่ทีม China มีรอบน้อยกว่า 10 รอบคือเท่าไร?",
    "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_en": "Which Creator has the Latest stable release of unknown, and a Name of myeclipse?",
    "question_th": "ผู้สร้างรายใดที่มีเวอร์ชันเสถียรล่าสุดที่ไม่รู้จัก และมีชื่อของ 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_en": "Which Platform / OS has a Name of altova umodel?",
    "question_th": "แพลตฟอร์ม / ระบบปฏิบัติการใดมีชื่อ 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_en": "Which Programming language used has a First public release of 1997?",
    "question_th": "ภาษาโปรแกรมใดที่ใช้ซึ่งมีการเผยแพร่สู่สาธารณะครั้งแรกในปี 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_en": "Which First public release has a Name of rational software modeler?",
    "question_th": "การเผยแพร่สู่สาธารณะครั้งแรกใดที่มีชื่อของผู้สร้างแบบจำลองซอฟต์แวร์ที่มีเหตุผล",
    "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_en": "What is the College of Rice's highest overall for the guard position?",
    "question_th": "ตำแหน่งผู้พิทักษ์รวมสูงสุดของวิทยาลัยไรซ์คืออะไร?",
    "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_en": "What is Tommy Nobis' position that has fewer than 16 picks?",
    "question_th": "ตำแหน่งใดของทอมมี่ โนบิสที่มีการหยิบน้อยกว่า 16 ครั้ง?",
    "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_en": "What was the score when the Rangers were playing against the Vancouver Canucks?",
    "question_th": "คะแนนเมื่อเรนเจอร์สเล่นกับแวนคูเวอร์ คานัคส์เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_99 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_34 WHERE january = 27",
    "question_en": "Who were the opponents on January 27?",
    "question_th": "คู่ต่อสู้ในวันที่ 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_en": "Who was the opponent for game number less than 47 and a record of 24-13-4?",
    "question_th": "ใครคือคู่ต่อสู้ในเกมหมายเลขน้อยกว่า 47 และสถิติ 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_en": "What is the average january number when the game number was higher than 39 and the opponent was the Vancouver Canucks?",
    "question_th": "เลขเฉลี่ยเดือนมกราคมเป็นเท่าไรเมื่อเลขเกมสูงกว่า 39 และคู่ต่อสู้คือแวนคูเวอร์ คานัคส์?",
    "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_en": "What is the Drawn number with a Points against of correct as of 08:50 10 may 2009?",
    "question_th": "หมายเลขที่จับฉลากและมีแต้มต่อที่ถูกต้อง ณ เวลา 08:50 10 พฤษภาคม 2552 คืออะไร?",
    "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_en": "What is the Tries against when lost shows 12 for pontycymmer rfc?",
    "question_th": "อะไรคือความพยายามเมื่อแพ้แสดง 12 สำหรับ 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_en": "What is the Points against for the ystradgynlais rfc club?",
    "question_th": "แต้มต่อสโมสร ystradgynlais rfc คืออะไร?",
    "context": "CREATE TABLE table_name_58 (points_against VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_name_11 WHERE points_against = \"405\"",
    "question_en": "What is the Club name what shows 405 for the Points against?",
    "question_th": "ชื่อคลับคืออะไรซึ่งแสดง 405 สำหรับแต้มต่อ?",
    "context": "CREATE TABLE table_name_11 (club VARCHAR, points_against VARCHAR)"
  },
  {
    "answer": "SELECT try_bonus FROM table_name_37 WHERE points_against = \"451\"",
    "question_en": "What shows for Try bonus when the points against are 451?",
    "question_th": "อะไรจะแสดงให้ลองโบนัสเมื่อแต้มต่อคือ 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_en": "Which Pos has a Make of chevrolet, and a Driver of jack sprague, and a Car # smaller than 2?",
    "question_th": "ตำแหน่งใดที่มียี่ห้อของเชฟโรเลต และคนขับของ jack sprague และรถ # ที่เล็กกว่า 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_en": "How many Car numbers have a Driver of erik darnell, and a Pos smaller than 2?",
    "question_th": "หมายเลขรถยนต์กี่คันมีคนขับของ erik darnell และ Pos น้อยกว่า 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_en": "Which Pos has a Car # of 33?",
    "question_th": "ตำแหน่งใดมีรถยนต์ # 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_en": "Which Pos has a Team of circle bar racing, and a Car # smaller than 14?",
    "question_th": "ตำแหน่งใดมีทีมแข่งรถเซอร์เคิลบาร์และมีรถ # เล็กกว่า 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_en": "Which Pos has a Car # larger than 2, and a Team of billy ballew motorsports?",
    "question_th": "ตำแหน่งใดที่มีรถยนต์ # ใหญ่กว่า 2 และทีมมอเตอร์สปอร์ตของ Billy Ballew",
    "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_en": "What Rank is the Director(s) of satoko okita?",
    "question_th": "ผู้อำนวยการของ 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_en": "What country is the film hi no tsugi ha rekishi from?",
    "question_th": "หนังเรื่อง hi no tsugi ha rekishi มาจากประเทศอะไรครับ?",
    "context": "CREATE TABLE table_name_21 (country VARCHAR, film VARCHAR)"
  },
  {
    "answer": "SELECT director_s_ FROM table_name_21 WHERE prize = \"¥300,000\" AND film = \"hanzubon no ojisan\"",
    "question_en": "Which Director(s) made the film hanzubon no ojisan and received a prize of ¥300,000?",
    "question_th": "ผู้กำกับคนไหนที่สร้างภาพยนตร์เรื่อง hanzubon no ojisan และได้รับรางวัล 300,000 เยน",
    "context": "CREATE TABLE table_name_21 (director_s_ VARCHAR, prize VARCHAR, film VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_59 WHERE prize = \"¥300,000\" AND director_s_ = \"kota nagaoka\"",
    "question_en": "Which country did the Director(s) of kota nagaoka come from and win ¥300,000?",
    "question_th": "ผู้อำนวยการของ kota nagaoka มาจากประเทศใดและได้รับรางวัล 300,000 เยน",
    "context": "CREATE TABLE table_name_59 (country VARCHAR, prize VARCHAR, director_s_ VARCHAR)"
  },
  {
    "answer": "SELECT director_s_ FROM table_name_42 WHERE prize = \"¥2,000,000\"",
    "question_en": "What Director won a prize of ¥2,000,000?",
    "question_th": "ผู้กำกับคนไหนได้รับรางวัล 2,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_en": "What Rank is the director of maximilian jezo-parovsky?",
    "question_th": "ผู้กำกับของ 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_en": "Who had the most high assists from Milwaukee?",
    "question_th": "ใครเป็นผู้ทำแอสซิสต์สูงที่สุดจากมิลวอกี?",
    "context": "CREATE TABLE table_name_73 (high_assists VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_name_28 WHERE date = \"december 13\"",
    "question_en": "Who scored the most point on December 13?",
    "question_th": "ใครทำแต้มได้มากที่สุดในวันที่ 13 ธันวาคม?",
    "context": "CREATE TABLE table_name_28 (high_points VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_24 WHERE record = \"22-24\"",
    "question_en": "What's the Loss for the game that had a 22-24 record?",
    "question_th": "การสูญเสียของเกมที่มีสถิติ 22-24 คืออะไร?",
    "context": "CREATE TABLE table_name_24 (loss VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_78 WHERE athlete = \"elvir krehmic\"",
    "question_en": "What was the date that Elvir Krehmic made a high jump record?",
    "question_th": "วันที่เท่าไหร่ที่ Elvir Krehmic ทำสถิติกระโดดสูง?",
    "context": "CREATE TABLE table_name_78 (date VARCHAR, athlete VARCHAR)"
  },
  {
    "answer": "SELECT spine FROM table_name_99 WHERE number_of_issues = 12",
    "question_en": "Which spine has 12 issues?",
    "question_th": "กระดูกสันหลังไหนมี 12 ประเด็น?",
    "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–72\"",
    "question_en": "How many issues end on jan–72?",
    "question_th": "มีกี่ประเด็นที่สิ้นสุดในวันที่ 72 ม.ค. ?",
    "context": "CREATE TABLE table_name_82 (number_of_issues INTEGER, end_month VARCHAR)"
  },
  {
    "answer": "SELECT masthead FROM table_name_15 WHERE end_month = \"oct–69\"",
    "question_en": "Which masthead ends on oct–69?",
    "question_th": "โฆษณาด้านบนใดสิ้นสุดในวันที่ ต.ค. 69",
    "context": "CREATE TABLE table_name_15 (masthead VARCHAR, end_month VARCHAR)"
  },
  {
    "answer": "SELECT AVG(game) FROM table_name_51 WHERE date = \"may 2\"",
    "question_en": "What is the game number held on May 2?",
    "question_th": "หมายเลขเกมที่จัดขึ้นในวันที่ 2 พฤษภาคมคืออะไร?",
    "context": "CREATE TABLE table_name_51 (game INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_33 WHERE postseason = \"promoted runner-up\"",
    "question_en": "Which Season has a Postseason of promoted runner-up?",
    "question_th": "ฤดูกาลใดมีช่วงหลังฤดูกาลของการเลื่อนตำแหน่งรองชนะเลิศ?",
    "context": "CREATE TABLE table_name_33 (season VARCHAR, postseason VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_97 WHERE record = \"20-11\"",
    "question_en": "What is the attendance of the match with a record 20-11?",
    "question_th": "แมตช์นี้มีสถิติผู้ชมร่วม 20-11 แค่ไหน?",
    "context": "CREATE TABLE table_name_97 (attendance VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_24 WHERE record = \"28-15\"",
    "question_en": "What is the date of the match with a 28-15 record?",
    "question_th": "แมตช์วันที่เท่าไหร่ด้วยสถิติ 28-15?",
    "context": "CREATE TABLE table_name_24 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_79 WHERE date = \"april 16\"",
    "question_en": "Which opponent did they play against on April 16?",
    "question_th": "พวกเขาเล่นกับคู่แข่งคนไหนในวันที่ 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_en": "What circuit was after round 2 in Victoria?",
    "question_th": "หลังจากรอบ 2 ที่วิกตอเรียเป็นอย่างไร",
    "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_en": "What is the state the winning driver Jamie Whincup from in round 2?",
    "question_th": "Jamie Whincup นักแข่งที่ชนะจากรอบ 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_en": "What date in October did the Flyers play against the Toronto Maple Leafs?",
    "question_th": "Flyers เล่นกับ Toronto Maple Leafs วันที่เท่าไหร่ในเดือนตุลาคม",
    "context": "CREATE TABLE table_name_11 (october VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_17 WHERE points > 8",
    "question_en": "What was the score of the game that had more than 8 points?",
    "question_th": "คะแนนของเกมที่มีมากกว่า 8 คะแนนเป็นเท่าใด",
    "context": "CREATE TABLE table_name_17 (score VARCHAR, points INTEGER)"
  },
  {
    "answer": "SELECT result FROM table_name_11 WHERE round = \"final\"",
    "question_en": "The round that had the final, what was the result?",
    "question_th": "รอบที่ได้รอบชิงชนะเลิศผลเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_11 (result VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_7 WHERE opponent = \"andry laffita\"",
    "question_en": "Opponent of andry laffita had what score?",
    "question_th": "ฝ่ายตรงข้ามของ อันดรี้ ลาฟฟิตา ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_7 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_11 WHERE opponent = \"igor samoilenco\"",
    "question_en": "Opponent of igor samoilenco had what result?",
    "question_th": "ฝ่ายตรงข้ามของ Igor Samoilenco มีผลอะไร?",
    "context": "CREATE TABLE table_name_11 (result VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_14 WHERE score = \"33-22\"",
    "question_en": "Score of 33-22 had what round?",
    "question_th": "คะแนน 33-22 ได้รอบไหน?",
    "context": "CREATE TABLE table_name_14 (round VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_75 WHERE round = \"first\"",
    "question_en": "Round of first had what opponent?",
    "question_th": "รอบแรกมีคู่ต่อสู้คนไหน?",
    "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_en": "Result of win, and a Score of 33-22 involved what event?",
    "question_th": "ผลการชนะและสกอร์ 33-22 เกี่ยวข้องกับเหตุการณ์อะไร?",
    "context": "CREATE TABLE table_name_4 (event VARCHAR, result VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT MIN(points) FROM table_name_99 WHERE game = 60",
    "question_en": "What were the lowest points of game 60?",
    "question_th": "แต้มต่ำสุดของเกม 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_en": "What championship had Francesca Schiavone in the finals?",
    "question_th": "Francesca Schiavone มีแชมป์อะไรในรอบชิงชนะเลิศ?",
    "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_en": "What is the total number of national titles for the team with doane tigers as the mascot?",
    "question_th": "รวมแชมป์ทีมชาติโดยมีเสือโดเน่เป็นมาสคอตมีจำนวนเท่าไร?",
    "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_en": "Which year's crew is varsity 8+ when the record is 7-3?",
    "question_th": "ทีมงานปีไหน varity 8+ เมื่อสถิติ 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_en": "What is the total number of win % when John Gartin is coach, the crew is varsity 8+, and the year is 2005?",
    "question_th": "จำนวนชนะทั้งหมด % เมื่อจอห์น การ์ตินเป็นโค้ช ทีมงานคือตัวแทน 8+ และปีคือปี 2548 เป็นเท่าใด",
    "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_en": "What is the largest win percentage when John Gartin is coach, the record is 11-0, and the year is 2009?",
    "question_th": "เปอร์เซ็นต์การชนะที่ใหญ่ที่สุดเมื่อจอห์น การ์ตินเป็นโค้ช คือสถิติ 11-0 และปีคือปี 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_en": "What is the total of win percentages when the year is 2008 and the crew is varsity 8+?",
    "question_th": "เปอร์เซ็นต์การชนะทั้งหมดในปี 2008 และลูกเรืออยู่ที่ 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_en": "What is the pick number for the tight end who was picked after round 6?",
    "question_th": "หมายเลขเลือกของท้ายแน่นที่ถูกเลือกหลังยกที่ 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_en": "What is the lowest round for the player whose position is guard and had a pick number smaller than 144?",
    "question_th": "รอบต่ำสุดสำหรับผู้เล่นที่มีตำแหน่งป้องกันและมีจำนวนการเลือกน้อยกว่า 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_en": "What was the position of terry jones whose pick number was after 256?",
    "question_th": "เทอร์รี่ โจนส์ ที่หมายเลขเลือกหลัง 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_en": "Which Loss has a Record of 30-32?",
    "question_th": "การสูญเสียใดมีบันทึก 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_en": "Which Attendance is the highest one that has a Record of 37-38?",
    "question_th": "ผู้เข้าร่วมคนใดที่มีสถิติสูงสุดคือ 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_en": "Which Score has a Loss of buehrle (7-2)?",
    "question_th": "สกอร์ไหนเสียบูร์เล่ (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_en": "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?",
    "question_th": "โดยรวมใดคือค่าเฉลี่ยที่มี Pick # มากกว่า 7 และรอบที่ใหญ่กว่า 4 และชื่อของ 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_en": "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?",
    "question_th": "รอบใดคือรอบที่ต่ำที่สุดที่มี Pick # มากกว่า 10 และตำแหน่งท้ายแน่น และคะแนนรวมน้อยกว่า 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_en": "Which Round is the highest one that has an Overall of 32, and a Pick # smaller than 4?",
    "question_th": "รอบใดคือรอบสูงสุดที่มีคะแนนรวม 32 และเลือก # น้อยกว่า 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_en": "How many Picks have a Round larger than 8, and a College of fresno state?",
    "question_th": "มีกี่ตัวเลือกที่มีรอบที่ใหญ่กว่า 8 และวิทยาลัยแห่งรัฐเฟรสโน",
    "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_en": "Which Overall is the highest one that has a College of oklahoma, and a Pick # smaller than 4?",
    "question_th": "โดยรวมแล้วอันไหนสูงที่สุดที่มี College of oklahoma และ Pick # เล็กกว่า 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_en": "What is the result of the match on 30 July 2004?",
    "question_th": "ผลการแข่งขันวันที่ 30 กรกฎาคม 2547 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_78 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_60 WHERE date = \"3 march 2004\"",
    "question_en": "What is the result of the match on 3 March 2004?",
    "question_th": "ผลการแข่งขันวันที่ 3 มีนาคม พ.ศ. 2547 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_60 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_63 WHERE competition = \"friendly match\"",
    "question_en": "What is the score of the friendly match?",
    "question_th": "นัดกระชับมิตรสกอร์เท่าไหร่คะ?",
    "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_en": "Which Week had a Result of w 10-0, and an Attendance smaller than 58,571?",
    "question_th": "สัปดาห์ใดมีผลลัพธ์เป็น w 10-0 และผู้เข้าร่วมน้อยกว่า 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_en": "Which Week had a Result of w 23-17?",
    "question_th": "สัปดาห์ใดมีผลลัพธ์ของ 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_en": "What was the Attendance on october 2, 1977?",
    "question_th": "การเข้าร่วมในวันที่ 2 ตุลาคม พ.ศ. 2520 เป็นอย่างไรบ้าง?",
    "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_en": "Bronze of 2, and a Silver smaller than 0 then what is the sum of the gold?",
    "question_th": "บรอนซ์ 2 และเงินน้อยกว่า 0 แล้วผลรวมของทองคำเป็นเท่าใด",
    "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_en": "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?",
    "question_th": "เล็กกว่า 4 และเงินมากกว่า 0 และอันดับ 3 และทองแดงน้อยกว่า 6 แล้วผลรวมของทองคำคือเท่าไร?",
    "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_en": "Total larger than 3, and a Rank of 4, and a Silver larger than 0 has what average gold?",
    "question_th": "ผลรวมมากกว่า 3 และอันดับ 4 และเงินที่มากกว่า 0 จะมีทองคำเฉลี่ยเท่าใด",
    "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_en": "Total smaller than 10, and a Gold larger than 1 then what is the lowest silver?",
    "question_th": "ผลรวมน้อยกว่า 10 และทองคำที่มากกว่า 1 แล้วเงินที่ต่ำที่สุดคืออะไร?",
    "context": "CREATE TABLE table_name_86 (silver INTEGER, total VARCHAR, gold VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_76 WHERE week = 9",
    "question_en": "What was the date of the week 9 game?",
    "question_th": "เกมสัปดาห์ที่ 9 วันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_76 (date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_name_13 WHERE wins > 0 AND points = 42",
    "question_en": "What class has over 0 wins and 42 points?",
    "question_th": "คลาสใดมีชัยชนะมากกว่า 0 และ 42 แต้ม?",
    "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_en": "What team was the bike with a 350cc class, over 2 points, and 1 win?",
    "question_th": "รถมอเตอร์ไซค์คลาส 350cc เกิน 2 แต้ม ชนะ 1 สมัย คือทีมใด?",
    "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_en": "What is the earliest year associated with 0 wins and 42 points?",
    "question_th": "ปีแรกสุดที่เกี่ยวข้องกับการชนะ 0 และ 42 แต้มคือปีใด?",
    "context": "CREATE TABLE table_name_22 (year INTEGER, wins VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_19 WHERE player = \"marcus walker\"",
    "question_en": "What Nationality has the Player of Marcus Walker?",
    "question_th": "นักเตะของมาร์คัส วอล์คเกอร์ เป็นคนสัญชาติอะไร",
    "context": "CREATE TABLE table_name_19 (nationality VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_82 WHERE player = \"jon stefansson\"",
    "question_en": "What Season is listed for the Player of Jon Stefansson?",
    "question_th": "ฤดูกาลใดที่ระบุไว้สำหรับผู้เล่นของ 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_en": "Which Team has the Player of A.J. Moye?",
    "question_th": "ทีมใดมีผู้เล่นของ AJ 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_en": "What Position does the Team of KR and the Player of Marcus Walker have listed?",
    "question_th": "ตำแหน่งใดที่ทีมของ KR และผู้เล่นของ Marcus Walker ระบุไว้?",
    "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_en": "What building is in ljubljana, proposed in 2010, and has 15 floors?",
    "question_th": "อาคารใดในลูบลิยานา เสนอในปี 2010 และมี 15 ชั้น",
    "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_en": "What is the Revenue per capita for Vermont?",
    "question_th": "รายได้ต่อหัวสำหรับรัฐเวอร์มอนต์คือเท่าใด",
    "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_en": "What state has a Net contribution per capita of $-171?",
    "question_th": "รัฐใดมีส่วนสนับสนุนสุทธิต่อหัวที่ $-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_en": "Who is the PBA team with Mlqu college?",
    "question_th": "ทีม PBA ของวิทยาลัย Mlqu คือใคร?",
    "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_en": "Who is the player with the PBA team of Barangay Ginebra Kings?",
    "question_th": "ใครคือผู้เล่นในทีม PBA ของ 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_en": "Who was the opponent on April 28?",
    "question_th": "คู่ต่อสู้ในวันที่ 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_en": "What is the highest position the album Where we belong, which had an issue date higher than 9, had?",
    "question_th": "ตำแหน่งสูงสุดของอัลบั้ม Where weอยู่ ซึ่งมีวันที่ออกมากกว่า 9 มีคืออะไร?",
    "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_en": "What is the highest position Talk on Corners, which had an issue date greater than 1, had?",
    "question_th": "ตำแหน่งสูงสุด Talk on Corners ซึ่งมีวันที่ออกมากกว่า 1 คืออะไร?",
    "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_en": "What is the highest sales All Saints had?",
    "question_th": "ยอดขายสูงสุดของ All Saints คืออะไร?",
    "context": "CREATE TABLE table_name_51 (sales INTEGER, album_title VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_26 WHERE car_model = \"commodore vs\"",
    "question_en": "Who is the Driver that has Car Model Commodore VS?",
    "question_th": "ผู้ขับที่มีรถยนต์รุ่น 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_en": "What Car Model has the Manufacturer of Saab, and Driver Dean Randle?",
    "question_th": "รถรุ่นใดที่มีผู้ผลิต Saab และ 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_en": "Who is the Driver with the Team of P & L Mechanical Services?",
    "question_th": "ใครคือคนขับรถพร้อมทีมงาน 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_en": "What Car Model has the Engine of Ford 6.0 V8?",
    "question_th": "รถรุ่นไหนมีเครื่องยนต์ 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_en": "What Team has the Engine of Chevrolet 6.0 V8, the Manufacturer of Opel, and the Driver Chris Jackson?",
    "question_th": "ทีมใดมีเครื่องยนต์ Chevrolet 6.0 V8 ผู้ผลิต Opel และคนขับ 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_en": "What is the Segment A entry for the episode that has an entry of Diesel filters for Segment D?",
    "question_th": "รายการ Segment A สำหรับตอนที่มีรายการตัวกรอง Diesel สำหรับ 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_en": "What is the series episode number that is larger than 262 and has a Segment A entry of Aluminium s canoe?",
    "question_th": "หมายเลขตอนของซีรีส์ที่ใหญ่กว่า 262 และมีเรือแคนูอะลูมิเนียมเข้า Segment A คือข้อใด",
    "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_en": "Which First elected has a District of south carolina 2?",
    "question_th": "ผู้ที่ได้รับการเลือกตั้งคนแรกคนใดมีเขตเซาท์แคโรไลนา 2",
    "context": "CREATE TABLE table_name_53 (first_elected INTEGER, district VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_name_58 WHERE first_elected > 1884",
    "question_en": "Which Incumbent has a First elected larger than 1884?",
    "question_th": "ผู้ดำรงตำแหน่งคนใดได้รับการเลือกตั้งครั้งแรกมากกว่าปี 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_en": "What is the English title with a Director named ang lee?",
    "question_th": "ชื่อภาษาอังกฤษที่มีผู้กำกับชื่ออังลีคืออะไร?",
    "context": "CREATE TABLE table_name_30 (english_title VARCHAR, director VARCHAR)"
  },
  {
    "answer": "SELECT original_title FROM table_name_55 WHERE country = \"canada\"",
    "question_en": "What is the Original title with a Country that is canada?",
    "question_th": "ชื่อดั้งเดิมของประเทศที่เป็นแคนาดาคืออะไร?",
    "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_en": "Which Architecture and modelling has a Unit test of no, and a Projects templates of limited?",
    "question_th": "สถาปัตยกรรมและการสร้างแบบจำลองใดที่มีการทดสอบหน่วยว่าไม่ และเทมเพลตโครงการมีจำนวนจำกัด",
    "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_en": "which MSDN integration has a Load testing of no, and a Test impact analysis of no?",
    "question_th": "การรวม MSDN ใดที่มีการทดสอบโหลดว่าไม่ และการวิเคราะห์ผลกระทบการทดสอบว่าไม่",
    "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_en": "Which Unit test has a MSDN integration of full, and a Projects templates of yes?",
    "question_th": "การทดสอบหน่วยใดที่มีการบูรณาการ MSDN แบบเต็มและเทมเพลตโครงการใช่",
    "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_en": "Which Intelli Trace has a No Extension and Windows Phone development of no?",
    "question_th": "Intelli Trace ใดที่ไม่มีส่วนขยายและการพัฒนา Windows Phone ไม่",
    "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_en": "Which Projects template has an IntelliTrace of no, and a Windows Phone development of yes, and a Test impact analysis of no?",
    "question_th": "เทมเพลต Projects ใดที่มี IntelliTrace เป็นไม่ใช่ และการพัฒนา Windows Phone เป็นใช่ และการทดสอบการวิเคราะห์ผลกระทบเป็นไม่ใช่",
    "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_en": "Which MSDN integration has a IntelliTrace of yes?",
    "question_th": "การรวม MSDN ใดที่มี IntelliTrace ใช่",
    "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_en": "During what Years of Operation was the location prospect 33 prospect ave?",
    "question_th": "ที่ตั้งของโครงการ 33 โอกาส 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_en": "What is the location of the ivy club?",
    "question_th": "สโมสรไอวี่อยู่ที่ไหน?",
    "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_en": "What is the Sign-in/Bicker at wash50 on washington rd?",
    "question_th": "การลงชื่อเข้าใช้/Bicker ที่ 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_en": "When was the Clubhouse built with a Sign-in/Bicker of bicker, and Named cannon club?",
    "question_th": "คลับเฮาส์ถูกสร้างขึ้นโดยมีการลงชื่อเข้าใช้/Bicker of bicker และ 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_en": "Which Sign-in/Bicker is at of wash50 on washington rd?",
    "question_th": "การลงชื่อเข้าใช้/Bicker ใดที่ Wash50 บนถนน Washington",
    "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_en": "Which Historical Photos were taken at prospect 43 prospect ave?",
    "question_th": "ภาพถ่ายประวัติศาสตร์ใดที่ถ่ายที่โอกาสที่ 43 ถนนโอกาส?",
    "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_en": "What is the 1st leg of team 1 Lyon?",
    "question_th": "เลก 1 ของทีม 1 ลียง คืออะไร?",
    "context": "CREATE TABLE table_name_26 (team_1 VARCHAR)"
  },
  {
    "answer": "SELECT 1 AS st_leg FROM table_name_24 WHERE team_1 = \"liverpool\"",
    "question_en": "What is the 1st leg of team 1 Liverpool?",
    "question_th": "เลกแรกของทีม 1 ลิเวอร์พูล คืออะไร?",
    "context": "CREATE TABLE table_name_24 (team_1 VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(events) FROM table_name_13 WHERE top_25 < 2",
    "question_en": "How many events resulted in a top-25 less than 2?",
    "question_th": "มีกี่เหตุการณ์ที่ทำให้ 25 อันดับแรกน้อยกว่า 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_en": "What is the smallest number of wins for a top-25 value greater than 5 and more than 38 cuts?",
    "question_th": "จำนวนชัยชนะที่น้อยที่สุดสำหรับค่า 25 อันดับแรกที่มากกว่า 5 และการตัดมากกว่า 38 ครั้งคือเท่าใด",
    "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_en": "How many bronze medals did Chinese Taipei win with less than 0 gold?",
    "question_th": "จีนไทเปได้เหรียญทองแดงได้กี่เหรียญแต่น้อยกว่า 0 เหรียญทอง?",
    "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_en": "How many silver medals had a rank of 3 with bronze larger than 0?",
    "question_th": "มีเหรียญเงินกี่เหรียญที่มีอันดับ 3 และมีเหรียญทองแดงมากกว่า 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_en": "How many silver medals does China have?",
    "question_th": "ประเทศจีนมีเหรียญเงินกี่เหรียญ?",
    "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_en": "Which Position has Losses of 11, and a Played larger than 22?",
    "question_th": "ตำแหน่งใดที่มีการแพ้ 11 และตำแหน่งที่เล่นมากกว่า 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_en": "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?",
    "question_th": "มีกี่ชัยชนะที่มีคะแนนน้อยกว่า 24 และยอมรับมากกว่า 25 และเสมอมากกว่า 5 และมีตำแหน่งน้อยกว่า 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_en": "How many Points has a Position of 8?",
    "question_th": "ตำแหน่งที่ 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_en": "How many Wins has a Scored of 27 and Draws smaller than 5?",
    "question_th": "ชนะกี่ครั้งมีคะแนน 27 และเสมอน้อยกว่า 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_en": "Which Position has  Draws smaller than 7 and a Played larger than 22?",
    "question_th": "ตำแหน่งใดที่มีการเสมอน้อยกว่า 7 และเล่นมากกว่า 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_en": "Which Played has a Scored larger than 25 and a Position of 1, and Draws smaller than 5?",
    "question_th": "การเล่นใดที่มีคะแนนมากกว่า 25 และตำแหน่งที่ 1 และเสมอน้อยกว่า 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_en": "When was the player with 51 caps from a Club/province of clermont born?",
    "question_th": "ผู้เล่นที่ติดทีมชาติ 51 นัดจากสโมสร/จังหวัดเคลร์มงต์เกิดเมื่อใด?",
    "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_en": "How many Episode Counts have an Actor of liz carr?",
    "question_th": "นักแสดงของลิซ คาร์มีกี่ตอน?",
    "context": "CREATE TABLE table_name_13 (episode_count VARCHAR, actor VARCHAR)"
  },
  {
    "answer": "SELECT years FROM table_name_54 WHERE character = \"dr trevor stewart\"",
    "question_en": "Which Years have a Character of dr trevor stewart?",
    "question_th": "ปีใดบ้างที่มีตัวละครของดร. เทรเวอร์ สจ๊วต?",
    "context": "CREATE TABLE table_name_54 (years VARCHAR, character VARCHAR)"
  },
  {
    "answer": "SELECT series FROM table_name_92 WHERE actor = \"tom ward\"",
    "question_en": "Which Series has an Actor of tom ward?",
    "question_th": "ซีรีย์ไหนมีนักแสดงของทอม วอร์ดบ้าง?",
    "context": "CREATE TABLE table_name_92 (series VARCHAR, actor VARCHAR)"
  },
  {
    "answer": "SELECT SUM(pick__number) FROM table_name_59 WHERE player = \"joe germanese\"",
    "question_en": "How many picks involved the player Joe Germanese?",
    "question_th": "ผู้เล่น 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_en": "Which player's pick number was 25?",
    "question_th": "หมายเลขเลือกของผู้เล่นคนไหนคือ 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_en": "What team did the Montreal Canadiens visit when the record was 0-3?",
    "question_th": "มอนทรีออล แคนาดา ไปเยือนทีมใดเมื่อสถิติเสมอกัน 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_en": "What was the score on April 23?",
    "question_th": "คะแนนวันที่ 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_en": "What team did the Chicago Black Hawks visit on April 20?",
    "question_th": "Chicago Black Hawks ไปเยือนทีมใดเมื่อวันที่ 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_en": "How many Games have a Drawn larger than 0, and a Lost of 1?",
    "question_th": "มีกี่เกมที่มีการเสมอกันมากกว่า 0 และแพ้ 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_en": "Which Points have a Drawn larger than 0, and a Lost larger than 1?",
    "question_th": "แต้มใดที่มีการสุ่มมากกว่า 0 และแพ้มากกว่า 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_en": "Which Drawn has a Lost larger than 0, and Points smaller than 11, and Games smaller than 7?",
    "question_th": "การจับฉลากใดที่แพ้มากกว่า 0 และแต้มน้อยกว่า 11 และเกมที่น้อยกว่า 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_en": "What is the percentage of the liberal party with less than 25 percent of seats?",
    "question_th": "พรรคเสรีนิยมที่มีที่นั่งน้อยกว่า 25 เปอร์เซ็นต์มีกี่เปอร์เซ็นต์?",
    "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_en": "Which party won less than 21 seats, has 0 percent of seats, and 69757 votes cast?",
    "question_th": "พรรคใดได้ที่นั่งน้อยกว่า 21 ที่นั่ง ได้ที่นั่ง 0 เปอร์เซ็นต์ และได้คะแนนเสียง 69,757 เสียง",
    "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_en": "Can you tell me the Date that has the Game of 2?",
    "question_th": "คุณช่วยบอกวันที่ที่มี 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_en": "When the date is July 8, and the score is 8-12, who is the opponent?",
    "question_th": "เมื่อถึงวันที่ 8 ก.ค. สกอร์ 8-12 คู่แข่งคือใคร?",
    "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_en": "When the Loss is Johnson (4-12), what is the date?",
    "question_th": "เมื่อแพ้คือจอห์นสัน (4-12) วันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_9 (date VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_20 WHERE loss = \"farrell (6-13)\"",
    "question_en": "What date is associated with the Loss of Farrell (6-13)?",
    "question_th": "วันใดที่เกี่ยวข้องกับการสูญเสียฟาร์เรลล์ (6-13)?",
    "context": "CREATE TABLE table_name_20 (date VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_55 WHERE score = \"0-3\"",
    "question_en": "Which opponent has the score of 0-3?",
    "question_th": "คู่ต่อสู้คนไหนมีสกอร์ 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_en": "What is the Total of kyrgyzstan with a Silver smaller than 0?",
    "question_th": "ผลรวมของคีร์กีซสถานที่มีค่าเงินน้อยกว่า 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_en": "What is the Total that has a number of Nation and a Gold smaller than 16?",
    "question_th": "ผลรวมที่มีจำนวนประเทศและทองน้อยกว่า 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_en": "Which Rank has a Silver larger than 1 and a Total larger than 13?",
    "question_th": "อันดับใดที่มีเงินมากกว่า 1 และผลรวมมากกว่า 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_en": "How many Silvers that have a Rank of 2?",
    "question_th": "มีเหรียญเงินกี่เหรียญที่มีอันดับ 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_en": "What was the previous conference for the school that joined in 2000 with a millers mascot?",
    "question_th": "การประชุมครั้งก่อนๆ ของโรงเรียนที่เข้าร่วมในปี 2000 โดยมีมิลเลอร์มาสคอตคืออะไร",
    "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_en": "What is the name of the college that is from a round greater than 3 with Gillis Wilson playing?",
    "question_th": "วิทยาลัยที่มาจากรอบที่มากกว่า 3 ที่กิลลิส วิลสันเล่นชื่ออะไร",
    "context": "CREATE TABLE table_name_85 (college VARCHAR, round VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT AVG(round) FROM table_name_46 WHERE college = \"auburn\"",
    "question_en": "What is average round of Auburn College?",
    "question_th": "รอบเฉลี่ยของ 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_en": "Which Top 10 is the lowest one that has Winnings of $405,300, and an Avg Start smaller than 30?",
    "question_th": "10 อันดับแรกใดคืออันดับต่ำสุดที่มีเงินรางวัลอยู่ที่ 405,300 ดอลลาร์ และค่าเฉลี่ยเริ่มต้นน้อยกว่า 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_en": "How many Wins have a Top 5 smaller than 0?",
    "question_th": "มีผู้ชนะจำนวนเท่าใดที่มี 5 อันดับแรกน้อยกว่า 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_en": "Which Top 10 has a Top 5 larger than 1, and a Year of 2003, and Poles larger than 0?",
    "question_th": "10 อันดับแรกใดที่มี 5 อันดับแรกมากกว่า 1 และปี 2546 และโปแลนด์มากกว่า 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_en": "How many Top 10s have Wins larger than 0, and Poles larger than 0?",
    "question_th": "มีกี่อันดับสูงสุด 10 อันดับที่มีชัยชนะมากกว่า 0 และโปแลนด์มากกว่า 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_en": "What is the Established date of the Ontario Provincial Junior A Hockey League with more than 1 Championship?",
    "question_th": "วันที่ก่อตั้งของลีกฮอกกี้จูเนียร์ A ประจำจังหวัดออนทาริโอที่มีการแข่งขันมากกว่า 1 รายการคือวันที่ใด",
    "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_en": "What Venue has more than 1 Championship and was Established after 1957?",
    "question_th": "สถานที่ใดมีมากกว่า 1 แชมป์และก่อตั้งหลังปี 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_en": "With less than 1 Championship, what es the Established date of the Niagara Rugby Union League?",
    "question_th": "หากมีแชมป์น้อยกว่า 1 รายการ 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_en": "What is the Established date of the Brian Timmis Stadium?",
    "question_th": "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_en": "What is the junior type with an intake of 60 and a DCSF number less than 3386 with the smallest Ofsted number?",
    "question_th": "ประเภทจูเนียร์ที่มีค่าไอดี 60 และหมายเลข DCSF น้อยกว่า 3386 และหมายเลข Ofsted น้อยที่สุดคืออะไร",
    "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–6\"",
    "question_en": "Which Record has a Game smaller than 19, and Points smaller than 19, and a Score of 4–6?",
    "question_th": "สถิติใดมีเกมที่เล็กกว่า 19 และคะแนนน้อยกว่า 19 และคะแนน 4–6",
    "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–6–3\" AND points < 17",
    "question_en": "How many games have a Record of 7–6–3, and Points smaller than 17?",
    "question_th": "มีกี่เกมที่มีสถิติ 7–6–3 และแต้มน้อยกว่า 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_en": "Which Points have an Opponent of vancouver canucks, and a November smaller than 11?",
    "question_th": "แต้มใดที่มีฝ่ายตรงข้ามของแวนคูเวอร์ canucks และพฤศจิกายนน้อยกว่า 11?",
    "context": "CREATE TABLE table_name_42 (points INTEGER, opponent VARCHAR, november VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_53 WHERE march = 12",
    "question_en": "which Record is on March of 12",
    "question_th": "ซึ่งบันทึกเมื่อวันที่ 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_en": "What is the number of March that has 25-10-9 record and a Game more than 44?",
    "question_th": "หมายเลขเดือนมีนาคมที่มีสถิติ 25-10-9 และเกมมากกว่า 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_en": "Which Game has a Record of 27-11-10?",
    "question_th": "เกมใดมีสถิติ 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_en": "What is the Speed when Construction begun in 2010, and an Expected start of revenue services of 2015?",
    "question_th": "ความเร็วเมื่อการก่อสร้างเริ่มในปี 2553 และการบริการรายได้ที่คาดว่าจะเริ่มในปี 2558 คืออะไร",
    "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_en": "What is the length when the expected start of revenue is more than 2017?",
    "question_th": "ระยะเวลาที่คาดว่าจะเริ่มสร้างรายได้มากกว่าปี 2560 คือเท่าใด",
    "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_en": "What was the undecided with Roy Barnes at 47%?",
    "question_th": "รอย บาร์นส์ ยังไม่ตัดสินใจอยู่ที่ 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_en": "What is the DuBose Porter with Roy Barnes at 54%?",
    "question_th": "DuBose Porter กับ Roy Barnes คืออะไรที่ 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_en": "What series episode has deli meats under segment B?",
    "question_th": "ซีรีส์เรื่องไหนมีเนื้อเดลี่อยู่ในเซ็ก 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_en": "Which After 1 year has an After 3 years of 80%?",
    "question_th": "หลัง 1 ปี อันไหนมี After 3 ปี 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_en": "What position does Alexei Lazarenko have?",
    "question_th": "Alexei Lazarenko มีตำแหน่งอะไร?",
    "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_en": "What college did Jamie Butt go to?",
    "question_th": "Jamie Butt ไปเรียนที่วิทยาลัยอะไร",
    "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_en": "What school did Alexander Korobolin go to?",
    "question_th": "Alexander Korobolin ไปโรงเรียนอะไร?",
    "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_en": "Who has a round less than 9 and a position of G?",
    "question_th": "ใครมีรอบน้อยกว่า 9 และตำแหน่ง 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_en": "Name the sum of cuts with wins less than 2, top-25 more than 7 and top-10 less than 2",
    "question_th": "ตั้งชื่อผลรวมของการตัดด้วยการชนะน้อยกว่า 2, 25 อันดับแรกมากกว่า 7 และ 10 อันดับแรกน้อยกว่า 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_en": "What was the score that led to an 11-16 record?",
    "question_th": "คะแนนที่นำไปสู่สถิติ 11-16 คืออะไร?",
    "context": "CREATE TABLE table_name_77 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_52 WHERE date = \"may 20\"",
    "question_en": "Who took the loss on May 20?",
    "question_th": "ใครเป็นผู้ขาดทุนในวันที่ 20 พฤษภาคม?",
    "context": "CREATE TABLE table_name_52 (loss VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT att FROM table_name_1 WHERE time = \"3:55\"",
    "question_en": "What was the attendance of the game that lasted 3:55?",
    "question_th": "ผู้เข้าชมเกมที่กินเวลา 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_en": "What was the date of the game in which Holt (4-4) took the loss?",
    "question_th": "ในเกมที่โฮลท์ (4-4) แพ้คือวันที่เท่าไหร่?",
    "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_en": "What was the date when the pitcher was Jason Marquis and the length was 410'?",
    "question_th": "วันที่เหยือกคือ Jason Marquis และมีความยาว 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_en": "What number home run was in the 8th inning and went 410'?",
    "question_th": "โฮมรันหมายเลขใดในโอกาสที่ 8 และไปได้ 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– september28\"",
    "question_en": "Which Max 1-min wind mph (km/h) that has Dates active on september22– september28?",
    "question_th": "ลมสูงสุด 1 นาที ไมล์ต่อชั่วโมง (กม./ชม.) ใดที่มีวันที่ใช้งานในวันที่ 22 กันยายน - 28 กันยายน",
    "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_en": "Which Min press has none Death and seven Storm names?",
    "question_th": "สำนักพิมพ์มินไหนไม่มี Death และชื่อ Storm เจ็ดชื่อ?",
    "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_en": "What is the cost of 972 Min Press caused 52 death?",
    "question_th": "ต้นทุนการกด 972 นาที ทำให้มีผู้เสียชีวิต 52 รายเป็นเท่าไร?",
    "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_en": "What is the active Date that has a 65 (100) Max 1-min wind?",
    "question_th": "วันที่ใช้งานอยู่ซึ่งมีความเร็วลมสูงสุด 65 (100) สูงสุด 1 นาทีคืออะไร?",
    "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_en": "What is the Class AA in the 2010-11 school year with a class AAA of Giddings?",
    "question_th": "Class AA ในปีการศึกษา 2010-11 กับคลาส AAA ของ 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_en": "What is the Class AA of the school year 2009-10 with a class AAA of Giddings?",
    "question_th": "Class AA ของปีการศึกษา 2009-10 กับคลาส AAA ของ 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_en": "What is the class AAA of the 1993-94 school year with a class AAAAA of Duncanville?",
    "question_th": "คลาส AAA ของปีการศึกษา 1993-94 กับคลาส AAAAA ของ 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_en": "Who was the visiting team on May 7?",
    "question_th": "ทีมเยือนวันที่ 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_en": "Who had a Qualifying 2 time over 58.669 for Team Australia?",
    "question_th": "ใครเป็นผู้ผ่านเข้ารอบ 2 ครั้งที่มากกว่า 58.669 สำหรับทีมออสเตรเลีย?",
    "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_en": "Which qualifying 1 time has a best under 58.669 and a qualifying 2 time under 57.897?",
    "question_th": "รอบคัดเลือก 1 ครั้งไหนดีที่สุดต่ำกว่า 58.669 และรอบคัดเลือก 2 ครั้งต่ำกว่า 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_en": "Which team has a qualifying 2 time under 59.612 and a best of 59.14?",
    "question_th": "ทีมไหนเข้ารอบ 2 ครั้งต่ำกว่า 59.612 และดีที่สุดที่ 59.14?",
    "context": "CREATE TABLE table_name_58 (team VARCHAR, qual_2 VARCHAR, best VARCHAR)"
  },
  {
    "answer": "SELECT lungchang FROM table_name_85 WHERE halang = \"ʒɯ²\" AND rera = \"ʒo²\"",
    "question_en": "Which Lungchang has a Halang of ʒɯ², and a Rera of ʒo²?",
    "question_th": "ลุงชางคนไหนมีฮาลางเป็น ʒɯ² และเรราเป็น ʒo²?",
    "context": "CREATE TABLE table_name_85 (lungchang VARCHAR, halang VARCHAR, rera VARCHAR)"
  },
  {
    "answer": "SELECT tikhak FROM table_name_77 WHERE yonguk = \"wu¹ti¹\"",
    "question_en": "Which Tikhak has a Yonguk of wu¹ti¹?",
    "question_th": "Tikhak ตัวไหนมี Yonguk ของ wu¹ti¹?",
    "context": "CREATE TABLE table_name_77 (tikhak VARCHAR, yonguk VARCHAR)"
  },
  {
    "answer": "SELECT yonguk FROM table_name_35 WHERE halang = \"ran¹\"",
    "question_en": "Which Yonguk has a Halang of ran¹?",
    "question_th": "ยงกุกคนไหนมีฮาลางเป็นรัน¹?",
    "context": "CREATE TABLE table_name_35 (yonguk VARCHAR, halang VARCHAR)"
  },
  {
    "answer": "SELECT halang FROM table_name_6 WHERE rera = \"ʒo²\"",
    "question_en": "Which Halang has a Rera of ʒo²?",
    "question_th": "ฮาลางใดมีเรราเป็น ʒo²?",
    "context": "CREATE TABLE table_name_6 (halang VARCHAR, rera VARCHAR)"
  },
  {
    "answer": "SELECT muklom FROM table_name_23 WHERE halang = \"wɯ¹cʰi¹\"",
    "question_en": "Which Muklom has a Halang of wɯ¹cʰi¹?",
    "question_th": "มุกลมใดมีฮาลางของwɯ¹cʰi¹?",
    "context": "CREATE TABLE table_name_23 (muklom VARCHAR, halang VARCHAR)"
  },
  {
    "answer": "SELECT hakhun FROM table_name_11 WHERE tikhak = \"ʒu²\"",
    "question_en": "Which Hakhun has a Tikhak of ʒu²?",
    "question_th": "ฮาคุนคนไหนมีทิกฮัก ʒu²?",
    "context": "CREATE TABLE table_name_11 (hakhun VARCHAR, tikhak VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_14 WHERE stop = \"l\" AND station = \"tamagaki\"",
    "question_en": "What is the location of Tamagaki station with an l stop?",
    "question_th": "สถานีทามากากิกับป้าย l อยู่ที่ไหน?",
    "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_en": "What is the station with a number greater than 9 and a distance of 16.4 km?",
    "question_th": "สถานีใดที่มีเลขมากกว่า 9 และระยะทาง 16.4 กม. คือสถานีใด",
    "context": "CREATE TABLE table_name_10 (station VARCHAR, number VARCHAR, distance__km_ VARCHAR)"
  },
  {
    "answer": "SELECT japanese FROM table_name_98 WHERE number = 3",
    "question_en": "What is the Japanese name of the station with a number 3?",
    "question_th": "สถานีที่มีเลข 3 ชื่อภาษาญี่ปุ่นว่าอะไร?",
    "context": "CREATE TABLE table_name_98 (japanese VARCHAR, number VARCHAR)"
  },
  {
    "answer": "SELECT SUM(distance__km_) FROM table_name_19 WHERE station = \"kawage\"",
    "question_en": "What is the distance of Kawage station?",
    "question_th": "ระยะทางจากสถานีคะวะเกะคือเท่าไร?",
    "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_en": "Which station has a number less than 5 and an l stop?",
    "question_th": "สถานีใดมีหมายเลขน้อยกว่า 5 และป้าย l?",
    "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_en": "Name the visitor for detroit on february 24",
    "question_th": "ตั้งชื่อผู้เยี่ยมชมดีทรอยต์ในวันที่ 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_en": "What is the highest listed year for the partner of Marcel Granollers and a hard surface?",
    "question_th": "ปีที่จดทะเบียนสูงสุดสำหรับพันธมิตรของ Marcel Granollers และพื้นผิวแข็งคือปีใด?",
    "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_en": "What is the listed surface for the Championship of Toronto that had a runner-up outcome?",
    "question_th": "พื้นผิวที่ระบุไว้สำหรับ Championship of Toronto ที่มีผลการแข่งขันรองชนะเลิศคืออะไร",
    "context": "CREATE TABLE table_name_56 (surface VARCHAR, outcome VARCHAR, championship VARCHAR)"
  },
  {
    "answer": "SELECT time___et__ FROM table_name_14 WHERE week = 5",
    "question_en": "What time was the game during week 5?",
    "question_th": "เกมในช่วงสัปดาห์ที่ 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_en": "Which City has a Series of Tamra's oc wedding?",
    "question_th": "เมืองไหนมีงานวิวาห์ oc ของ Tamra บ้าง?",
    "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_en": "What is the average number of points for a difference of 55 and an against less than 47?",
    "question_th": "จำนวนคะแนนเฉลี่ยสำหรับส่วนต่าง 55 และต่อน้อยกว่า 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_en": "What is the highest lost that has an against greater than 60, points less than 61 and an 18 drawn?",
    "question_th": "อะไรคือการแพ้สูงสุดที่มีมากกว่า 60 แต้มน้อยกว่า 61 และเสมอ 18?",
    "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_en": "What is the Name of the Historic House of the 18th Century?",
    "question_th": "บ้านประวัติศาสตร์แห่งศตวรรษที่ 18 ชื่อว่าอะไร?",
    "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_en": "What is the Type of castle from the 14th Century which Condition is preserved?",
    "question_th": "ปราสาทสมัยศตวรรษที่ 14 ที่รักษาสภาพไว้เป็นประเภทใด",
    "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_en": "What is the Name of the private Castle of the 16th century which is occupied?",
    "question_th": "ปราสาทส่วนตัวแห่งศตวรรษที่ 16 ที่ถูกยึดครองมีชื่อว่าอะไร?",
    "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_en": "What is the Date of the castle with a Historic Scotland Ownership?",
    "question_th": "วันที่ของปราสาทที่มีการเป็นเจ้าของประวัติศาสตร์สกอตแลนด์คือเมื่อใด",
    "context": "CREATE TABLE table_name_38 (date VARCHAR, ownership VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_39 WHERE type = \"fortified house\"",
    "question_en": "What is the Date of the Fortified House?",
    "question_th": "วันที่ของบ้านป้อมปราการคืออะไร?",
    "context": "CREATE TABLE table_name_39 (date VARCHAR, type VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_16 WHERE type = \"courtyard castle\"",
    "question_en": "What is the Date of the Courtyard Castle?",
    "question_th": "ปราสาทคอร์ทยาร์ดคือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_16 (date VARCHAR, type VARCHAR)"
  },
  {
    "answer": "SELECT MAX(lost) FROM table_name_63 WHERE points = 6",
    "question_en": "What is the highest lost that has 6 for points?",
    "question_th": "แพ้สูงสุดที่มี 6 คะแนนคืออะไร?",
    "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_en": "How many losses have points less than 3, with a drawn greater than 0?",
    "question_th": "แพ้กี่ครั้งมีคะแนนน้อยกว่า 3 โดยเสมอมากกว่า 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_en": "Which Margin of victory has a Runner(s)-up of buddy gardner?",
    "question_th": "Margin of Victory ใดที่มี 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 = –14(66 - 64 - 68 - 68 = 266)",
    "question_en": "Which Date has a Winning score of –14 (66-64-68-68=266)?",
    "question_th": "วันไหนมีคะแนนชนะ –14 (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_en": "Which Tournament has a Winning score of e (72-69-71-68=280)?",
    "question_th": "ทัวร์นาเมนต์ใดมีคะแนนชนะ 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_en": "Which Margin of victory has a Runner(s)-up of dave barr?",
    "question_th": "Margin of Victory ใดที่มีรองชนะเลิศจาก 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_en": "Which Margin of victory has a Runner(s)-up of mark o'meara?",
    "question_th": "Margin of Victory ใดที่มีคะแนนรองชนะเลิศของ 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_en": "In round 9 what was the nationality?",
    "question_th": "รอบที่ 9 สัญชาติอะไร?",
    "context": "CREATE TABLE table_name_98 (nationality VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_83 WHERE round = \"3\"",
    "question_en": "In round 3 what was the position?",
    "question_th": "รอบที่ 3 ได้ตำแหน่งอะไร?",
    "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_en": "Who has a nationality of Czech Republic and a position of right wing?",
    "question_th": "ใครมีสัญชาติเช็กและตำแหน่งปีกขวา?",
    "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_en": "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?",
    "question_th": "เปอร์เซ็นต์การชนะสูงสุดจากทีมที่ชนะน้อยกว่า 22 แพ้มากกว่า 4 เสมอน้อยกว่า 2 และเกมที่เริ่มมากกว่า 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_en": "Gold that has a Rank of 6, and a Bronze larger than 0 had what total number of gold?",
    "question_th": "ทองคำที่มีอันดับ 6 และทองแดงที่มากกว่า 0 มีจำนวนทองคำทั้งหมดเท่าใด",
    "context": "CREATE TABLE table_name_46 (gold VARCHAR, rank VARCHAR, bronze VARCHAR)"
  },
  {
    "answer": "SELECT bronze FROM table_name_21 WHERE total = 5",
    "question_en": "Total of 5 had what bronze?",
    "question_th": "ทั้งหมด 5 คนได้เหรียญทองแดงอะไร?",
    "context": "CREATE TABLE table_name_21 (bronze VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_55 WHERE result = \"20th\"",
    "question_en": "In which tournament did he place 20th?",
    "question_th": "เขาวางอันดับที่ 20 ในทัวร์นาเมนต์ใด?",
    "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_en": "What the result for the hypo-meeting tournament in 1994?",
    "question_th": "ผลลัพธ์ของการแข่งขันไฮโปมีตติ้งในปี 1994 คืออะไร?",
    "context": "CREATE TABLE table_name_81 (result VARCHAR, year VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_79 WHERE year = 1995",
    "question_en": "What was the result in 1995?",
    "question_th": "ผลลัพธ์ในปี 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_en": "After March 19, what's the score of game 67?",
    "question_th": "หลัง 19 มี.ค. เกม 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_en": "Who is the head linesman of the game on 1 February 2009?",
    "question_th": "ใครคือหัวหน้าไลน์แมนของเกมเมื่อวันที่ 1 กุมภาพันธ์ พ.ศ. 2552?",
    "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_en": "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?",
    "question_th": "วันที่ของเกมคือ Bob Beeks ผู้ตัดสินไลน์ เจอร์รี เบิร์กแมน หัวหน้าไลน์แมน และพอล เบตซ์ เป็นผู้ตัดสินด้านหลัง",
    "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_en": "Which game was on 14 January 1973?",
    "question_th": "เกมใดคือวันที่ 14 มกราคม พ.ศ. 2516?",
    "context": "CREATE TABLE table_name_31 (game VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT line_judge FROM table_name_48 WHERE referee = \"scott green\"",
    "question_en": "Who was the line judge at the game where Scott Green was referee?",
    "question_th": "ใครเป็นผู้ตัดสินเส้นในเกมที่สก็อตต์ กรีน เป็นผู้ตัดสิน?",
    "context": "CREATE TABLE table_name_48 (line_judge VARCHAR, referee VARCHAR)"
  },
  {
    "answer": "SELECT head_linesman FROM table_name_66 WHERE game = \"xxxv\"",
    "question_en": "Who is the head linesman at game xxxv?",
    "question_th": "ใครคือหัวหน้าไลน์แมนในเกม 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_en": "What game had Al Jury as field judge?",
    "question_th": "เกมใดที่ Al Jury เป็นผู้ตัดสินภาคสนาม?",
    "context": "CREATE TABLE table_name_8 (game VARCHAR, field_judge VARCHAR)"
  },
  {
    "answer": "SELECT departure FROM table_name_88 WHERE kilometers = 1676",
    "question_en": "What's listed for Departure that has 1676 listed for the Kilometers?",
    "question_th": "มีอะไรระบุไว้สำหรับการออกเดินทางที่มี 1676 ระบุไว้สำหรับหน่วยกิโลเมตร",
    "context": "CREATE TABLE table_name_88 (departure VARCHAR, kilometers VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(kilometers) FROM table_name_43 WHERE station_code = \"kgq\"",
    "question_en": "What is the sum of Kilometers that has a Station Code of KGQ?",
    "question_th": "ผลรวมของกิโลเมตรที่มีรหัสสถานีเป็น KGQ เป็นเท่าใด",
    "context": "CREATE TABLE table_name_43 (kilometers VARCHAR, station_code VARCHAR)"
  },
  {
    "answer": "SELECT kilometers FROM table_name_87 WHERE station_code = \"kuda\"",
    "question_en": "What's the Kilometers listed that also has the Station Code of Kuda?",
    "question_th": "กิโลเมตรที่ระบุว่ามีรหัสสถานีของ 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_en": "What's listed for the Station Code that has the Arrival of 02:20?",
    "question_th": "มีอะไรระบุไว้สำหรับรหัสสถานีที่มีการมาถึงเวลา 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_en": "What is listede for Departure that also has a Station Code of CLT?",
    "question_th": "รายการสำหรับการออกเดินทางที่มีรหัสสถานีของ 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_en": "What is the smallest area with 45 population?",
    "question_th": "พื้นที่ใดมีประชากร 45 คนน้อยที่สุด?",
    "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_en": "What is the area located in Rhode Island with more than 38 sq mi area?",
    "question_th": "พื้นที่ที่ตั้งอยู่ในโรดไอแลนด์ซึ่งมีพื้นที่มากกว่า 38 ตารางไมล์คืออะไร",
    "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_en": "What is the average area in New York that is larger than 55 sq mi?",
    "question_th": "พื้นที่เฉลี่ยในนิวยอร์กที่มีขนาดใหญ่กว่า 55 ตารางไมล์คือข้อใด",
    "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_en": "Which event was in Tokyo, Japan and had an opponent of rumina sato?",
    "question_th": "งานไหนจัดขึ้นที่โตเกียว ประเทศญี่ปุ่น และมีคู่ต่อสู้ของรูมินา ซาโตะ?",
    "context": "CREATE TABLE table_name_38 (event VARCHAR, location VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_45 WHERE time = \"2:30\"",
    "question_en": "Which round was 2:30?",
    "question_th": "รอบไหน 02.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_en": "Which event had the opponent of shinya aoki and was at 4:56?",
    "question_th": "เหตุการณ์ใดที่มีคู่ต่อสู้ของ Shinya Aoki และคือเวลา 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_en": "Which method did pride bushido 10 have ?",
    "question_th": "Pride Bushido 10 มีวิธีการใดบ้าง?",
    "context": "CREATE TABLE table_name_56 (method VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT 2008 AS _09 FROM table_name_13 WHERE event = \"autumn gold\"",
    "question_en": "Which 2008–09 has an Event of autumn gold?",
    "question_th": "ปี 2551–52 ใดมีกิจกรรมทองคำในฤดูใบไม้ร่วง",
    "context": "CREATE TABLE table_name_13 (event VARCHAR)"
  },
  {
    "answer": "SELECT SUM(drawn) FROM table_name_77 WHERE team = \"internacional-sp\"",
    "question_en": "Which Drawn has a Team of internacional-sp?",
    "question_th": "ซึ่ง Drawn มีทีมของ 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_en": "How much Lost has a Drawn larger than 5, and a Played larger than 18?",
    "question_th": "แพ้มากเพียงใดที่มีการเสมอมากกว่า 5 และการเล่นที่มากกว่า 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_en": "Which Drawn is the highest one that has a Played smaller than 18?",
    "question_th": "จั่วตัวไหนสูงที่สุดที่เล่นได้น้อยกว่า 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_en": "Which Drawn is the highest one that has an Against larger than 15, and Points smaller than 15, and a Lost smaller than 9?",
    "question_th": "จั่วใดคือแต้มที่สูงที่สุดที่มีแต้มต่อมากกว่า 15 และแต้มน้อยกว่า 15 และแพ้น้อยกว่า 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_en": "What's the least amount of floors at 921 sw sixth avenue?",
    "question_th": "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_en": "What's the address of the union bank of California tower?",
    "question_th": "ที่อยู่ของอาคาร 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_en": "What were the years that the building at 200 sw harrison was considered to be the tallest building?",
    "question_th": "กี่ปีมาแล้วที่อาคารที่มีความสูง 200 sw harrison ถือเป็นอาคารที่สูงที่สุด?",
    "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_en": "What is the smallest position with less than 7 points piloted by Didier Hauss?",
    "question_th": "ตำแหน่งที่เล็กที่สุดที่มีคะแนนน้อยกว่า 7 แต้มที่ขับโดย 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_en": "During what Season was the Final Venue at Sandy Lane with Kiveton Park as the Winner?",
    "question_th": "สถานที่จัดงานสุดท้ายที่ Sandy Lane ในช่วงฤดูกาลใดคือ Kiveton Park เป็นผู้ชนะ",
    "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_en": "What was the Runner-up during the 2005-06 Season with Kiveton Park as the Winner?",
    "question_th": "รองชนะเลิศคืออะไรในช่วงฤดูกาล 2548-06 โดยมี Kiveton Park เป็นผู้ชนะ",
    "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_en": "What was the Result in Green Lane with Kirkburton as the Runner-up?",
    "question_th": "ผลลัพธ์ใน Green Lane ที่มี Kirkburton เป็นรองแชมป์คืออะไร?",
    "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_en": "What was the Result in the 2005-06 Season?",
    "question_th": "ผลลัพธ์ในฤดูกาล 2548-06 คืออะไร?",
    "context": "CREATE TABLE table_name_9 (result VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT final_venue FROM table_name_17 WHERE winner = \"sheffield reserves\"",
    "question_en": "What was the Final Venue having Sheffield Reserves as the Winner?",
    "question_th": "สถานที่สุดท้ายที่มีทีมสำรองเชฟฟิลด์เป็นผู้ชนะคืออะไร?",
    "context": "CREATE TABLE table_name_17 (final_venue VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT SUM(round) FROM table_name_85 WHERE time = \"6:04\"",
    "question_en": "What is the total number of Round that has a Time of 6:04?",
    "question_th": "จำนวนรอบทั้งหมดที่มีเวลา 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_en": "What Round has the Method of Submission (Single Wing Choke)?",
    "question_th": "รอบไหนมีวิธีซับมิชชั่น (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_en": "Which Class has a Frequency MHz larger than 91.5, and a City of license of hyannis, nebraska?",
    "question_th": "คลาสใดมีความถี่ MHz มากกว่า 91.5 และเมืองที่ได้รับใบอนุญาตของไฮยานนิส เนแบรสกา",
    "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_en": "Which Class has a ERP W larger than 205, and a Frequency MHz smaller than 93.9, and a Call sign of k210cb?",
    "question_th": "คลาสใดที่มี ERP W ใหญ่กว่า 205 และความถี่ MHz น้อยกว่า 93.9 และมีสัญญาณเรียกขานเป็น 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_en": "Which Frequency MHz that has a ERP W larger than 205, and a Call sign of k230ap?",
    "question_th": "ความถี่ MHz ใดที่มี ERP W ใหญ่กว่า 205 และสัญญาณเรียกขานเป็น 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_en": "Which Frequency MHz has a ERP W of 250?",
    "question_th": "ความถี่ MHz ใดมี ERP W เท่ากับ 250",
    "context": "CREATE TABLE table_name_36 (frequency_mhz INTEGER, erp_w VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_40 WHERE game = 81",
    "question_en": "What was the date of game 81?",
    "question_th": "เกมที่ 81 ตรงกับวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_40 (date VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_13 WHERE opponent = \"gustavo kuerten\"",
    "question_en": "WHich Surface has an Opponent of gustavo kuerten?",
    "question_th": "Surface ใดมีฝ่ายตรงข้ามของ 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_en": "Which Surface has a Tournament of st. petersburg , russia?",
    "question_th": "Surface ใดมีทัวร์นาเมนต์ของเซนต์ ปีเตอร์สเบิร์ก, รัสเซีย?",
    "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_en": "When is the Surface of hard (i), and a Tournament of brighton , united kingdom taken?",
    "question_th": "เมื่อใดที่ Surface of hard (i) และ Tournament of Brighton สหราชอาณาจักร จะเกิดขึ้น?",
    "context": "CREATE TABLE table_name_11 (date VARCHAR, surface VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_52 WHERE score = \"3–6, 5–7\"",
    "question_en": "Which Opponent  has a Score of 3–6, 5–7?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีคะแนน 3–6, 5–7?",
    "context": "CREATE TABLE table_name_52 (opponent VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_17 WHERE tournament = \"palermo , italy\"",
    "question_en": "When has a Tournament of palermo , italy?",
    "question_th": "ทัวร์นาเมนต์ของปาแลร์โม่, อิตาลีจะมีเมื่อไหร่?",
    "context": "CREATE TABLE table_name_17 (date VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_70 WHERE date = \"29 september 1997\"",
    "question_en": "Which Opponent is on 29 september 1997?",
    "question_th": "ฝ่ายตรงข้ามคนใดคือวันที่ 29 กันยายน 1997?",
    "context": "CREATE TABLE table_name_70 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT constellation FROM table_name_38 WHERE designation_hd = \"hd 75732\"",
    "question_en": "Which constellation has hd 75732 as a destignation HD?",
    "question_th": "กลุ่มดาวใดที่มี hd 75732 เป็น 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_en": "What message has hd 186408 as a designation HD?",
    "question_th": "ข้อความใดที่มี hd 186408 เป็นชื่อ 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_en": "What date sent has cygnus as a constellation, and hd 190360 as a designation HD?",
    "question_th": "วันที่ส่งไปมีซิกนัสเป็นกลุ่มดาว และ hd 190360 เป็นกลุ่มดาว 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_en": "What date sent has orion as the constellation?",
    "question_th": "วันที่ส่งไปมีกลุ่มดาวนายพรานเป็นกลุ่มดาวหรือไม่?",
    "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_en": "Which constellation has cosmic call 1 as the message, and an arrival date of october 2067?",
    "question_th": "กลุ่มดาวใดมี cosmic call 1 เป็นข้อความ และมีวันที่มาถึงในเดือนตุลาคม พ.ศ. 2510",
    "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_en": "What date sent has cancer as the constellation?",
    "question_th": "ส่งวันไหนมีมะเร็งเป็นรูปนักษัตร?",
    "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í\" AND losses < 6",
    "question_en": "Which Conceded is the highest one that has Points larger than 17, and a Team of guaraní, and Losses smaller than 6?",
    "question_th": "ยอมรับใดคือแต้มสูงสุดที่มีคะแนนมากกว่า 17 และทีมกวารานี และแพ้น้อยกว่า 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_en": "Which Conceded has Draws smaller than 5, and a Position larger than 6?",
    "question_th": "การยอมรับใดที่มีการเสมอน้อยกว่า 5 และตำแหน่งที่มากกว่า 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_en": "How many Points have a Played larger than 18?",
    "question_th": "มีแต้มที่เล่นมากกว่า 18 แต้มกี่แต้ม?",
    "context": "CREATE TABLE table_name_65 (points VARCHAR, played INTEGER)"
  },
  {
    "answer": "SELECT SUM(scored) FROM table_name_81 WHERE team = \"recoleta\"",
    "question_en": "Which Scored has a Team of recoleta?",
    "question_th": "ซึ่ง Scored มีทีม Recoleta?",
    "context": "CREATE TABLE table_name_81 (scored INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_name_21 WHERE date = \"2008-01-27\"",
    "question_en": "Which Notes have a Date of 2008-01-27?",
    "question_th": "บันทึกย่อใดมีวันที่ 27-01-2008",
    "context": "CREATE TABLE table_name_21 (notes VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_63 WHERE distance = \"3,000 m\"",
    "question_en": "Which Date has a Distance of 3,000 m?",
    "question_th": "วันไหนมีระยะทาง 3,000 เมตร?",
    "context": "CREATE TABLE table_name_63 (date VARCHAR, distance VARCHAR)"
  },
  {
    "answer": "SELECT distance FROM table_name_46 WHERE time = \"men's speed skating\"",
    "question_en": "Which Distance has a Time of men's speed skating?",
    "question_th": "ระยะทางใดมีเวลาของการเล่นสเก็ตเร็วชาย?",
    "context": "CREATE TABLE table_name_46 (distance VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_89 WHERE \"time\" = \"time\"",
    "question_en": "Which Location has a Time of time?",
    "question_th": "สถานที่ใดมีช่วงเวลา?",
    "context": "CREATE TABLE table_name_89 (location VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_59 WHERE distance = \"10,000 m\"",
    "question_en": "Which Location has a Distance of 10,000 m?",
    "question_th": "ตำแหน่งใดมีระยะทาง 10,000 เมตร",
    "context": "CREATE TABLE table_name_59 (location VARCHAR, distance VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_3 WHERE distance = \"500 m\"",
    "question_en": "Which Date has a Distance of 500 m?",
    "question_th": "วันไหนมีระยะทาง 500 เมตร?",
    "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_en": "What was the score for the June 22 game with attendance 0?",
    "question_th": "สกอร์เกมวันที่ 22 มิ.ย. ผู้เข้าชม 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_en": "What type of surface was used for the carthage tournament on august 14, 1994?",
    "question_th": "พื้นผิวประเภทใดที่ใช้สำหรับการแข่งขันคาร์เธจเมื่อวันที่ 14 สิงหาคม 2537",
    "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_en": "Which tournament has marielle bruens for the opponent in the final?",
    "question_th": "ทัวร์นาเมนต์ใดที่มี มาริแอล บรูเอนส์ มาเป็นคู่ต่อสู้ในรอบชิงชนะเลิศ?",
    "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_en": "What surface was used on may 13, 2007?",
    "question_th": "พื้นผิวใดที่ใช้ในวันที่ 13 พฤษภาคม 2550",
    "context": "CREATE TABLE table_name_19 (surface VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_name_4 WHERE frequency_mhz = 93.7",
    "question_en": "Frequency MHz of 93.7 has what class?",
    "question_th": "ความถี่ MHz 93.7 มีคลาสอะไร",
    "context": "CREATE TABLE table_name_4 (class VARCHAR, frequency_mhz VARCHAR)"
  },
  {
    "answer": "SELECT AVG(entre_ríos_municipality) FROM table_name_99 WHERE pojo_municipality < 9",
    "question_en": "What is the average Entre Ríos Municipality with less than 9 Pojo Municipalities?",
    "question_th": "เทศบาล Entre Ríos โดยเฉลี่ยที่มีเทศบาล Pojo น้อยกว่า 9 แห่งคือเท่าใด",
    "context": "CREATE TABLE table_name_99 (entre_ríos_municipality INTEGER, pojo_municipality INTEGER)"
  },
  {
    "answer": "SELECT COUNT(pocona_municipality) FROM table_name_98 WHERE totora_municipality = 72 AND pojo_municipality > 74",
    "question_en": "What is Pocona Municipalities with 72 Totora municipalities and more than 74 pojo municipalities?",
    "question_th": "เทศบาลโพโคนาคืออะไรซึ่งมีเทศบาลโตโตรา 72 แห่งและเทศบาลโปโจมากกว่า 74 แห่ง",
    "context": "CREATE TABLE table_name_98 (pocona_municipality VARCHAR, totora_municipality VARCHAR, pojo_municipality VARCHAR)"
  },
  {
    "answer": "SELECT MAX(chimoré_municipality) FROM table_name_76 WHERE pojo_municipality = 9 AND totora_municipality < 7",
    "question_en": "What is the highest chimore municipalities with 9 pojo municipalities and less than 7 totora municipalities?",
    "question_th": "เทศบาล Chimore ที่สูงที่สุดซึ่งมีเทศบาล Pojo 9 แห่งและเทศบาล Totora น้อยกว่า 7 แห่งคืออะไร?",
    "context": "CREATE TABLE table_name_76 (chimoré_municipality INTEGER, pojo_municipality VARCHAR, totora_municipality VARCHAR)"
  },
  {
    "answer": "SELECT copa_libertadores_1996 FROM table_name_10 WHERE team = \"estudiantes\"",
    "question_en": "Which Copa Libertadores 1996 has a Team of estudiantes?",
    "question_th": "Copa Libertadores 1996 ใดมีทีมนักเรียนอยู่?",
    "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_en": "which CONMEBOL 1995 has a Supercopa 1995 of sf?",
    "question_th": "CONMEBOL 1995 ใดมี Supercopa 1995 ของ 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_en": "which Copa Libertadores 1996 has round 1 Supercopa 1995 and argentinos juniors team ?",
    "question_th": "Copa Libertadores 1996 ใดมีรอบ 1 Supercopa 1995 และทีมรุ่นเยาว์ของอาร์เจนติน่า ?",
    "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_en": "Which CONMEBOL 1995 has river plate team?",
    "question_th": "CONMEBOL 1995 ใดมีทีมริเวอร์เพลท?",
    "context": "CREATE TABLE table_name_61 (conmebol_1995 VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_28 WHERE conmebol_1995 = \"round 1\"",
    "question_en": "Which Team  has a round 1  CONMEBOL 1995?",
    "question_th": "ทีมใดได้เข้ารอบ 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_en": "Which Date has an Attendance of 57,013?",
    "question_th": "วันไหนมีผู้เข้าร่วม 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_en": "Which Date has a TV Time of cbs 1:00pm, and a Game Site of rca dome, and an Opponent of cincinnati bengals?",
    "question_th": "วันที่ใดมีเวลาทีวี cbs 13.00 น. และเว็บไซต์เกม rca Dome และฝ่ายตรงข้ามของ 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_en": "Which TV Time has a Date of december 26, 1999?",
    "question_th": "เวลาทีวีใดมีวันที่ 26 ธันวาคม 2542",
    "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_en": "Which Game Site has a Date of october 17, 1999?",
    "question_th": "เว็บไซต์เกมใดมีวันที่ 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_en": "what's the result with streak of won 6?",
    "question_th": "ผลการชนะต่อเนื่อง 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_en": "What was the 2nd leg score having an aggregate score of 4-2?",
    "question_th": "สกอร์รวม 4-2 เลกที่ 2 เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_88 (aggregate VARCHAR)"
  },
  {
    "answer": "SELECT home__2nd_leg_ FROM table_name_59 WHERE aggregate = \"2-3\"",
    "question_en": "What was the home team for the 2nd leg of the match having an aggregate of 2-3?",
    "question_th": "นัดที่ 2 เจ้าบ้านมีสกอร์รวม 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_en": "What is the lowest number of played games of the team with less than 12 drawns, 41 against, and less than 69 points?",
    "question_th": "อะไรคือจำนวนเกมที่เล่นน้อยที่สุดของทีมโดยเสมอน้อยกว่า 12 นัด เสมอ 41 แต้ม และน้อยกว่า 69 แต้ม?",
    "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_en": "What is the highest number of played of the team with less than 11 losses and less than 12 drawns?",
    "question_th": "จำนวนการเล่นสูงสุดของทีมที่แพ้น้อยกว่า 11 ครั้งและเสมอน้อยกว่า 12 ครั้งคือเท่าใด?",
    "context": "CREATE TABLE table_name_9 (played INTEGER, lost VARCHAR, drawn VARCHAR)"
  },
  {
    "answer": "SELECT SUM(against) FROM table_name_86 WHERE played < 38",
    "question_en": "What is the sum of againsts the team with less than 38 played had?",
    "question_th": "ผลรวมของทีมที่เล่นน้อยกว่า 38 นัดมีผลรวมเป็นเท่าใด?",
    "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_en": "What is the average drawn of the team with a difference of 4 and more than 13 losses?",
    "question_th": "ค่าเฉลี่ยของทีมเสมอโดยมีผลต่าง 4 และแพ้มากกว่า 13 เป็นเท่าใด?",
    "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_en": "What is the position of the team with more than 16 losses and an against greater than 74?",
    "question_th": "ตำแหน่งของทีมที่แพ้มากกว่า 16 นัดและแพ้มากกว่า 74 นัดคือตำแหน่งใด?",
    "context": "CREATE TABLE table_name_43 (position INTEGER, lost VARCHAR, against VARCHAR)"
  },
  {
    "answer": "SELECT MAX(points) FROM table_name_92 WHERE team = \"vitória\" AND played > 38",
    "question_en": "What is the highest number of points team vitória, which had more than 38 played, had?",
    "question_th": "ทีมวิตอเรียซึ่งเล่นมากกว่า 38 แต้มมีคะแนนสูงสุดคือเท่าไร?",
    "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_en": "When the A Score was larger than 5.933 with a total of 19.833, what nation was this?",
    "question_th": "เมื่อคะแนน A มากกว่า 5.933 รวมเป็น 19.833 นี่คือประเทศอะไร",
    "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_en": "How large was the total when the E Score was greater than 9.35 and T Score was less than 4?",
    "question_th": "เมื่อคะแนน E มากกว่า 9.35 และคะแนน T น้อยกว่า 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_en": "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?",
    "question_th": "ปริมาณของคะแนน A เมื่อคะแนน E มากกว่า 9.566 ในกรีซและคะแนน T มากกว่า 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_en": "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?",
    "question_th": "คะแนน A Score ทั้งหมดเมื่อคะแนน E มากกว่า 9.383 คะแนนรวมน้อยกว่า 19.716 และคะแนน T มากกว่า 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_en": "Which city has a frequency of 104.5 fm?",
    "question_th": "เมืองใดมีความถี่ 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_en": "What is the frequency of Walterboro, SC?",
    "question_th": "ความถี่ของ 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_en": "What is the FCC information of 104.5 fm frequency?",
    "question_th": "ข้อมูล FCC ของความถี่ 104.5 fm คืออะไร?",
    "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_en": "What is Charleston, SC ERP W?",
    "question_th": "ชาร์ลสตัน, 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_en": "What does the ERP W sum equal for 105.1 fm frequency?",
    "question_th": "ผลรวม ERP W เท่ากับเท่าใดสำหรับความถี่ 105.1 fm",
    "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_en": "What is surfside beach, SC frequency?",
    "question_th": "ชายหาดเซิร์ฟไซด์ ความถี่ SC คืออะไร?",
    "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_en": "What is the player from Japan's To Par?",
    "question_th": "ผู้เล่นจาก 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_en": "What is the player from England's To Par?",
    "question_th": "นักเตะจากทูพาร์ของอังกฤษคือใคร?",
    "context": "CREATE TABLE table_name_68 (to_par VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_98 WHERE country = \"england\"",
    "question_en": "What is the player from England's score?",
    "question_th": "นักเตะจากสกอร์ของอังกฤษคือทีมไหน?",
    "context": "CREATE TABLE table_name_98 (score VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_39 WHERE player = \"adam scott\"",
    "question_en": "Which country does Adam Scott play for?",
    "question_th": "Adam Scott เล่นให้กับประเทศใด?",
    "context": "CREATE TABLE table_name_39 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT icao FROM table_name_43 WHERE airport = \"lilongwe international airport\"",
    "question_en": "Name the ICAO for lilongwe international airport",
    "question_th": "ตั้งชื่อ ICAO สำหรับสนามบินนานาชาติลิลองเว",
    "context": "CREATE TABLE table_name_43 (icao VARCHAR, airport VARCHAR)"
  },
  {
    "answer": "SELECT airport FROM table_name_6 WHERE icao = \"flls\"",
    "question_en": "Name the airport for ICAO of flls",
    "question_th": "ตั้งชื่อสนามบินสำหรับ ICAO ของชั้น",
    "context": "CREATE TABLE table_name_6 (airport VARCHAR, icao VARCHAR)"
  },
  {
    "answer": "SELECT icao FROM table_name_74 WHERE airport = \"lilongwe international airport\"",
    "question_en": "Name the ICAO for lilongwe international airport",
    "question_th": "ตั้งชื่อ ICAO สำหรับสนามบินนานาชาติลิลองเว",
    "context": "CREATE TABLE table_name_74 (icao VARCHAR, airport VARCHAR)"
  },
  {
    "answer": "SELECT icao FROM table_name_79 WHERE airport = \"julius nyerere international airport\"",
    "question_en": "Name the ICAO for julius nyerere international airport",
    "question_th": "ตั้งชื่อ ICAO สำหรับสนามบินนานาชาติ Julius Nyerere",
    "context": "CREATE TABLE table_name_79 (icao VARCHAR, airport VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_35 WHERE city = \"johannesburg\"",
    "question_en": "Name the country for johannesburg",
    "question_th": "ตั้งชื่อประเทศสำหรับโจฮันเนสเบิร์ก",
    "context": "CREATE TABLE table_name_35 (country VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_32 WHERE iata = \"llw\"",
    "question_en": "Name the city for IATA of llw",
    "question_th": "ตั้งชื่อเมืองสำหรับ IATA ของ llw",
    "context": "CREATE TABLE table_name_32 (city VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_5 WHERE tie_no = \"10\"",
    "question_en": "What is the name of the home time with a 10 tie no?",
    "question_th": "เลข 10 เสมอกันเวลาบ้านชื่ออะไร?",
    "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_en": "What was the date of the game that was played against the away team of York City?",
    "question_th": "เกมที่เล่นกับทีมเยือนยอร์ค ซิตี้ คือวันที่เท่าไหร่?",
    "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_en": "What group of juventus had an attendance larger than 47,786?",
    "question_th": "ยูเวนตุสกลุ่มใดที่มีผู้เข้าชมมากกว่า 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–17\"",
    "question_en": "Name the average week for result of l 28–17",
    "question_th": "ตั้งชื่อสัปดาห์เฉลี่ยสำหรับผลลัพธ์ของ l 28–17",
    "context": "CREATE TABLE table_name_56 (week INTEGER, result VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_48 WHERE date = \"april 12\"",
    "question_en": "What was the score on April 12?",
    "question_th": "คะแนนวันที่ 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_en": "Which 2009 has a 2008 of A, and a 2010 of 4r?",
    "question_th": "ปี 2009 ใดมีปี 2008 เป็น A และปี 2010 เป็น 4r",
    "context": "CREATE TABLE table_name_84 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2009 FROM table_name_64 WHERE 2008 = \"wta premier mandatory tournaments\"",
    "question_en": "Which 2009 has a 2008 of wta premier mandatory tournaments?",
    "question_th": "ปี 2009 รายการใดที่มีทัวร์นาเมนต์บังคับ wta premier ปี 2008?",
    "context": "CREATE TABLE table_name_64 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2010 FROM table_name_80 WHERE tournament = \"australian open\"",
    "question_en": "Which 2010 has a Tournament of australian open?",
    "question_th": "ปี 2010 รายการใดที่มีการแข่งขันของออสเตรเลียนโอเพ่น?",
    "context": "CREATE TABLE table_name_80 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2007 FROM table_name_8 WHERE 2006 = \"a\" AND tournament = \"canada\"",
    "question_en": "Which 2007 has a 2006 of A, and a Tournament of canada?",
    "question_th": "ปี 2550 ใดมี A ปี 2549 และทัวร์นาเมนต์ของแคนาดา",
    "context": "CREATE TABLE table_name_8 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2009 FROM table_name_83 WHERE 2006 = \"a\" AND 2011 = \"sf\"",
    "question_en": "Which 2009 has a 2006 of A, and a 2011 of sf?",
    "question_th": "ปี 2009 ใดมีปี 2549 เป็น A และปี 2554 เป็น sf",
    "context": "CREATE TABLE table_name_83 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2007 FROM table_name_92 WHERE 2010 = \"a\"",
    "question_en": "Which 2007 has a 2010 of A?",
    "question_th": "ปี 2550 ใดมีปี 2553 ของ A",
    "context": "CREATE TABLE table_name_92 (Id VARCHAR)"
  },
  {
    "answer": "SELECT AVG(adam) FROM table_name_40 WHERE jade > 5 AND peter < 0",
    "question_en": "What's Adam's score when Jade's score is greater than 5 and Peter's score is less than 0?",
    "question_th": "คะแนนของอดัมเป็นเท่าใด เมื่อคะแนนของหยกมากกว่า 5 และคะแนนของปีเตอร์น้อยกว่า 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_en": "Old Scotch had less than 9 losses and how much against?",
    "question_th": "Old Scotch แพ้น้อยกว่า 9 นัด และต้านได้เท่าไหร่?",
    "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_en": "Of the teams that had more than 0 byes, what was the total number of losses?",
    "question_th": "จากทีมที่เสียบอลเกิน 0 ผลรวมแพ้ทั้งหมดเท่าไหร่?",
    "context": "CREATE TABLE table_name_54 (losses VARCHAR, byes INTEGER)"
  },
  {
    "answer": "SELECT incumbent FROM table_name_16 WHERE district = \"20th\"",
    "question_en": "Who was the incumbent in the 20th district?",
    "question_th": "ใครเป็นผู้ดำรงตำแหน่งในเขตที่ 20?",
    "context": "CREATE TABLE table_name_16 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_name_49 WHERE district = \"6th\"",
    "question_en": "Which party has the 6th district?",
    "question_th": "พรรคไหนมีเขตที่ 6?",
    "context": "CREATE TABLE table_name_49 (party VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_name_34 WHERE incumbent = \"ken cuccinelli\"",
    "question_en": "Which party has Ken Cuccinelli as an incumbent?",
    "question_th": "ฝ่ายใดมี Ken Cuccinelli ดำรงตำแหน่ง?",
    "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_en": "Which party was elected in 2003 with incumbent Mark Obenshain?",
    "question_th": "พรรคใดได้รับเลือกในปี 2546 โดยมีมาร์ค โอเบนเชน ผู้ดำรงตำแหน่ง",
    "context": "CREATE TABLE table_name_47 (party VARCHAR, elected VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_name_60 WHERE district = \"24th\"",
    "question_en": "Which incumbent was in the 24th district?",
    "question_th": "ซึ่งดำรงตำแหน่งในเขตที่ 24?",
    "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_en": "Name the sum of laps for mi-jack conquest racing and points less than 11",
    "question_th": "ตั้งชื่อผลรวมของรอบสำหรับการแข่ง mi-jack conquest และคะแนนน้อยกว่า 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_en": "Name the points with grid more than 8 and time/retired of +47.487 secs",
    "question_th": "ตั้งชื่อคะแนนด้วยตารางมากกว่า 8 และเวลา/เกษียณอายุ +47.487 วินาที",
    "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_en": "Name the team with laps of 97 and grid of 3",
    "question_th": "ตั้งชื่อทีมด้วยรอบ 97 และตารางที่ 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_en": "Name the sum of grid with laps more than 97",
    "question_th": "ตั้งชื่อผลรวมของตารางที่มีรอบมากกว่า 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_en": "What are the most wins in 1971 in 250cc class?",
    "question_th": "อะไรคือชัยชนะมากที่สุดในปี 1971 ในคลาส 250cc?",
    "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_en": "What is the earliest year with less than 45 points for Yamaha team in 21st rank?",
    "question_th": "ปีแรกสุดที่มีคะแนนน้อยกว่า 45 แต้มสำหรับทีม Yamaha ในอันดับที่ 21 คืออะไร?",
    "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_en": "How many Ends Won have Blank Ends smaller than 14, and a Locale of manitoba, and Stolen Ends larger than 13?",
    "question_th": "จำนวน Ends ที่ชนะมี Blank Ends น้อยกว่า 14 และ Locale of manitoba และ Stolen Ends ที่มีขนาดใหญ่กว่า 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_en": "Which Skip has Ends Lost larger than 44, and Blank Ends of 10?",
    "question_th": "Skip ใดที่มี Ends Lost มากกว่า 44 และ Blank Ends ของ 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_en": "How many Stolen Ends have Ends Lost smaller than 44, and Blank Ends smaller than 7?",
    "question_th": "มี Stolen Ends กี่อันที่มี Ends Lost น้อยกว่า 44 และ Blank Ends เล็กกว่า 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_en": "What is the current status for GM Advanced Design with more than 41 seats?",
    "question_th": "สถานะปัจจุบันของ GM Advanced Design ที่มีที่นั่งมากกว่า 41 ที่นั่งเป็นอย่างไร?",
    "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_en": "What is the quantity with more than 45 seats and MCI make?",
    "question_th": "มากกว่า 45 ที่นั่ง และ MCI ผลิตได้จำนวนเท่าใด?",
    "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_en": "What is the largest number of seats with more than 32 of a MCI make?",
    "question_th": "จำนวนที่นั่งที่ใหญ่ที่สุดที่มี MCI มากกว่า 32 ที่นั่งคือเท่าใด",
    "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_en": "What is the smallest number of seats in a vehicle currently retired and in quantities less than 8?",
    "question_th": "จำนวนที่นั่งที่น้อยที่สุดในยานพาหนะที่เลิกใช้ในปัจจุบันและในปริมาณที่น้อยกว่า 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_en": "What is the smallest number of seats in a retired vehicle that was started in service in 1981?",
    "question_th": "จำนวนที่นั่งที่น้อยที่สุดในรถยนต์ที่เลิกใช้แล้วซึ่งเริ่มให้บริการในปี 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_en": "What is Trevard Lindley's height?",
    "question_th": "ความสูงของ Trevard Lindley คืออะไร?",
    "context": "CREATE TABLE table_name_42 (height VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_name_87 WHERE games↑ = 2 AND name = \"ashton cobb\"",
    "question_en": "What is Ashton Cobb's class in Game 2?",
    "question_th": "คลาสของ Ashton Cobb ในเกมที่ 2 คืออะไร?",
    "context": "CREATE TABLE table_name_87 (class VARCHAR, games↑ VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT MIN(games) AS ↑ FROM table_name_2 WHERE position = \"re\" AND number < 95",
    "question_en": "What is the earliest game with a position of Re and a smaller number than 95?",
    "question_th": "เกมแรกสุดที่มีตำแหน่ง Re และตัวเลขน้อยกว่า 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_en": "Which Seattle quarterback has more than 81 career wins and less than 70 team wins?",
    "question_th": "กองหลังซีแอตเทิลคนใดที่ชนะมากกว่า 81 อาชีพและชนะน้อยกว่า 70 ทีม?",
    "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_en": "What is Mike Harris' lowest overall?",
    "question_th": "โดยรวมต่ำสุดของ Mike Harris คืออะไร?",
    "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_en": "What is the highest pick # that has a 228 overall and a round less than 7?",
    "question_th": "ตัวเลือกสูงสุด # ที่มีคะแนนรวม 228 และรอบน้อยกว่า 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_en": "What value has negative infinity?",
    "question_th": "ค่าใดมีค่าเป็นลบอนันต์?",
    "context": "CREATE TABLE table_name_82 (value VARCHAR, type VARCHAR)"
  },
  {
    "answer": "SELECT exponent_field FROM table_name_93 WHERE exp__biased_ = \"255\" AND value = \"+∞\"",
    "question_en": "What's the exponent field that has 255 exp and value of +∞?",
    "question_th": "เขตข้อมูลเลขชี้กำลังที่มีค่า 255 exp และค่า +∞ คืออะไร",
    "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_en": "What's the type of 0.0 value?",
    "question_th": "ค่า 0.0 เป็นประเภทใด",
    "context": "CREATE TABLE table_name_29 (type VARCHAR, value VARCHAR)"
  },
  {
    "answer": "SELECT significand__fraction_field_ FROM table_name_2 WHERE value = \"1.0\"",
    "question_en": "What's the Significant of a value 1.0?",
    "question_th": "นัยสำคัญของค่า 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_en": "What is the lowest round of the pick #8 player with an overall greater than 72 from the college of temple?",
    "question_th": "ผู้เล่นหมายเลข 8 ที่ได้รับคัดเลือกรอบต่ำสุดที่มีคะแนนรวมมากกว่า 72 จากวิทยาลัยวัดคือรอบใด",
    "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_en": "What is the lowest overall of the wide receiver player from a round higher than 5 and a pick lower than 7?",
    "question_th": "ผู้เล่นตัวรับสายกว้างโดยรวมต่ำสุดจากรอบที่สูงกว่า 5 และตัวเลือกที่ต่ำกว่า 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_en": "What is the overall of the running back player?",
    "question_th": "นักเตะรันนิ่งแบ็กโดยรวมเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_91 (overall VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT general_classification FROM table_name_18 WHERE team_classification = \"japan\"",
    "question_en": "What is the general classification when the team classification is japan?",
    "question_th": "การจัดประเภททั่วไปเมื่อจัดประเภททีมคือญี่ปุ่นเป็นอย่างไร?",
    "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_en": "Which stage had tabriz petrochemical team in the team classification?",
    "question_th": "ทีมปิโตรเคมีทาบริซอยู่ในประเภททีมระยะใด",
    "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_en": "Which stage had suhardi hassan in the Malaysian rider classification?",
    "question_th": "Suhardi Hassan มีระดับใดในประเภทนักแข่งชาวมาเลเซีย?",
    "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_en": "How many drawn have points of 6 and lost by fewer than 4?",
    "question_th": "เสมอกันกี่แต้มมี 6 แต้มและแพ้น้อยกว่า 4 แต้ม?",
    "context": "CREATE TABLE table_name_53 (drawn VARCHAR, points VARCHAR, lost VARCHAR)"
  },
  {
    "answer": "SELECT MIN(game) FROM table_name_48 WHERE record = \"23–6–4\"",
    "question_en": "What was the earliest game with a record of 23–6–4?",
    "question_th": "เกมแรกสุดที่มีสถิติ 23–6–4 คืออะไร?",
    "context": "CREATE TABLE table_name_48 (game INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT MIN(game) FROM table_name_96 WHERE record = \"16–4–3\"",
    "question_en": "What was the earliest game with a record of 16–4–3?",
    "question_th": "เกมแรกสุดที่มีสถิติ 16–4–3 คืออะไร?",
    "context": "CREATE TABLE table_name_96 (game INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT MAX(erp_w) FROM table_name_3 WHERE call_sign = \"w255bi\"",
    "question_en": "Which ERP W is the highest one that has a Call sign of w255bi?",
    "question_th": "ERP W ตัวไหนสูงที่สุดที่มีสัญญาณ Call ของ 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_en": "Which FCC info has a Frequency MHz of 100.7?",
    "question_th": "ข้อมูล FCC ใดมีความถี่ MHz 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_en": "How much Frequency MHz has a Call sign of w264bg?",
    "question_th": "ความถี่ MHz มีสัญญาณเรียก 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_en": "Which ERP W is the lowest one that has a Call sign of w233be?",
    "question_th": "ERP W ตัวไหนต่ำที่สุดที่มีสัญญาณ Call ของ 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_en": "Which FCC info has a Frequency MHz larger than 102.3?",
    "question_th": "ข้อมูล FCC ใดที่มีความถี่ MHz มากกว่า 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_en": "What date was Rica head of household?",
    "question_th": "ริก้าเป็นหัวหน้าครอบครัววันไหน?",
    "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_en": "What is the latest task number for which Cathy is head of household?",
    "question_th": "หมายเลขงานล่าสุดที่ Cathy เป็นหัวหน้าครัวเรือนคือหมายเลขใด",
    "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_en": "Who is the head of household for task number 7?",
    "question_th": "ใครเป็นหัวหน้าครัวเรือนสำหรับงานหมายเลข 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_en": "Which task had Cathy as the hand grenade user?",
    "question_th": "ภารกิจใดที่มี Cathy เป็นผู้ใช้ระเบิดมือ?",
    "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_en": "What is the task number on January 22, 2010 (day 111)?",
    "question_th": "หมายเลขงานในวันที่ 22 มกราคม 2553 (วันที่ 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_en": "What was the record in the win 7 streak?",
    "question_th": "สถิติในวิน 7 สตรีคเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_86 (record VARCHAR, streak VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_46 WHERE opponent = \"detroit pistons\"",
    "question_en": "What was the score when the opponent was Detroit Pistons?",
    "question_th": "เมื่อคู่ต่อสู้คือดีทรอยต์ พิสตันส์สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_46 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_50 WHERE streak = \"won 8\"",
    "question_en": "What is the date when streak was won 8?",
    "question_th": "ชนะ 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_en": "What trips are operated by Atlantic coast charters?",
    "question_th": "การเดินทางใดบ้างที่ดำเนินการโดยบริการเช่าเหมาลำชายฝั่งแอตแลนติก?",
    "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_en": "What was the average week of a game with a result of l 10-7 attended by 37,500?",
    "question_th": "สัปดาห์เฉลี่ยของเกมคือเท่าไรที่ผลการแข่งขัน l 10-7 มีผู้เข้าร่วม 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_en": "What was the average attendance on October 30, 1938?",
    "question_th": "ผู้เข้าร่วมโดยเฉลี่ยในวันที่ 30 ตุลาคม พ.ศ. 2481 เป็นเท่าใด",
    "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_en": "When did Yugoslavia play a friendly game in Belgrade?",
    "question_th": "ยูโกสลาเวียเล่นเกมกระชับมิตรที่เบลเกรดเมื่อไหร่?",
    "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_en": "When was the WC 1974 Qualifying game?",
    "question_th": "เกมรอบคัดเลือก WC 1974 จัดขึ้นเมื่อไหร่?",
    "context": "CREATE TABLE table_name_94 (date VARCHAR, type_of_game VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_2 WHERE opponent = \"norway\"",
    "question_en": "What city did Yugoslavia play Norway in?",
    "question_th": "ยูโกสลาเวียเล่นกับนอร์เวย์ที่เมืองใด",
    "context": "CREATE TABLE table_name_2 (city VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_90 WHERE results¹ = \"2:3\"",
    "question_en": "Who did Yugoslavia play against that led to a result of 2:3?",
    "question_th": "ยูโกสลาเวียเล่นกับใครจนส่งผลให้สกอร์ 2:3?",
    "context": "CREATE TABLE table_name_90 (opponent VARCHAR, results¹ VARCHAR)"
  },
  {
    "answer": "SELECT score_in_final FROM table_name_75 WHERE outcome = \"runner-up\" AND date = \"9 february 1992\"",
    "question_en": "What is the final score of the runner-up on 9 February 1992?",
    "question_th": "คะแนนสุดท้ายของรองชนะเลิศวันที่ 9 กุมภาพันธ์ พ.ศ. 2535 คือเท่าไร?",
    "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_en": "Which opponent has a time of 1:50?",
    "question_th": "คู่ต่อสู้คนไหนมีเวลา 1:50?",
    "context": "CREATE TABLE table_name_79 (opponent VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_85 WHERE time = \"2:35\"",
    "question_en": "Which opponent has a time of 2:35?",
    "question_th": "ฝ่ายตรงข้ามคนไหนมีเวลา 2:35?",
    "context": "CREATE TABLE table_name_85 (opponent VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_27 WHERE opponent = \"stephanie palmer\"",
    "question_en": "What is the time when the opponent is stephanie palmer?",
    "question_th": "เมื่อไหร่ที่คู่ต่อสู้คือสเตฟานีพาลเมอร์?",
    "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_en": "What tournament has Samantha Stosur as the opponent in the final?",
    "question_th": "Samantha Stosur เป็นคู่ต่อสู้ในทัวร์นาเมนต์ใดในรอบชิงชนะเลิศ",
    "context": "CREATE TABLE table_name_99 (tournament VARCHAR, opponent_in_the_final VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_36 WHERE tournament = \"zürich, switzerland\"",
    "question_en": "What date is the zürich, switzerland tournament?",
    "question_th": "การแข่งขันซูริค สวิตเซอร์แลนด์คือวันที่เท่าไหร่?",
    "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_en": "What is the date of the Sydney, Australia tournament with a hard surface?",
    "question_th": "การแข่งขันแบบฮาร์ดคอร์ที่ซิดนีย์ ประเทศออสเตรเลีย คือวันที่เท่าไหร่?",
    "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_en": "Which Result has a Date of 4 april 1993?",
    "question_th": "ผลลัพธ์ใดมีวันที่ 4 เมษายน 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_en": "Which Venue has a Result of 5-1, and a Score of 3-0?",
    "question_th": "สนามใดมีผลสกอร์ 5-1 และสกอร์ 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_en": "Which Score has a Result of 5-1?",
    "question_th": "สกอร์ไหนมีผล 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_en": "Which Venue has a Result of 5-1, and a Score of 1-0?",
    "question_th": "สนามใดมีผลสกอร์ 5-1 และสกอร์ 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_en": "Which Venue has a Result of 5-0?",
    "question_th": "สนามไหนมีผลสกอร์ 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_en": "What did winner Gary Player par?",
    "question_th": "ผู้ชนะ Gary Player ได้พาร์อะไร?",
    "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_en": "How many PATAs does an nForce Professional 3400 MCP have?",
    "question_th": "nForce Professional 3400 MCP มี PATA กี่ตัว",
    "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_en": "Which PCI-Express has a DDR 266/333/400 Registered/ECC memory and Enhanced AC'97 2.3 sound?",
    "question_th": "PCI-Express ตัวใดมีหน่วยความจำ DDR 266/333/400 Registered/ECC และเสียง AC'97 2.3 ที่ได้รับการปรับปรุง",
    "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_en": "Which FSB/HT frequency (MHz) has a SATA larger than 6 and DDR 266/333/400 Registered/ECC memory?",
    "question_th": "ความถี่ FSB/HT (MHz) ใดที่มี SATA ใหญ่กว่า 6 และหน่วยความจำ DDR 266/333/400 Registered/ECC",
    "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_en": "Which network has model nForce Professional 3400 MCP?",
    "question_th": "เครือข่ายใดมีรุ่น 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_en": "What model has an engine of 1,868 cc?",
    "question_th": "รุ่นไหนมีเครื่องยนต์ 1,868 ซีซี?",
    "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_en": "What College team has 8 rounds?",
    "question_th": "ทีมวิทยาลัยใดมี 8 รอบ?",
    "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_en": "What nationality is Daryn Fersovich?",
    "question_th": "ดาริน เฟอร์โซวิช เป็นคนสัญชาติอะไร",
    "context": "CREATE TABLE table_name_47 (nationality VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_8 WHERE ground = \"subiaco\"",
    "question_en": "What day was the ground subiaco?",
    "question_th": "Subiaco ดินคือวันไหน?",
    "context": "CREATE TABLE table_name_8 (date VARCHAR, ground VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(crowd) FROM table_name_54 WHERE home_team = \"melbourne\"",
    "question_en": "What was the crowd size for the Home team of melbourne?",
    "question_th": "จำนวนผู้ชมของทีมเหย้าเมลเบิร์นคือเท่าไร?",
    "context": "CREATE TABLE table_name_54 (crowd VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_7 WHERE couple = \"cristián & cheryl\" AND style = \"cha-cha-cha\"",
    "question_en": "Which Score has a Couple of cristián & cheryl, and a Style of cha-cha-cha?",
    "question_th": "คะแนนใดมีคู่ของ cristián & cheryl และสไตล์ของ 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_en": "Which Score has a Couple comprised of jason & edyta, and a Style of freestyle?",
    "question_th": "คู่รักคนไหนที่ประกอบด้วย jason & edyta และสไตล์ฟรีสไตล์?",
    "context": "CREATE TABLE table_name_2 (score VARCHAR, couple VARCHAR, style VARCHAR)"
  },
  {
    "answer": "SELECT music FROM table_name_20 WHERE style = \"jive\"",
    "question_en": "Which music is jive?",
    "question_th": "เพลงไหนเป็นเพลงจิง?",
    "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_en": "Which Couple has a Result of third place, and a Style of cha-cha-cha?",
    "question_th": "คู่รักคนไหนได้อันดับที่ 3 และลีลาการช่าช่า?",
    "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_en": "Which Score has a Result of third place, and a Style of cha-cha-cha?",
    "question_th": "คะแนนไหนมีผลอันดับสาม และลีลา 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_en": "Which Music has a Score of 30 (10, 10, 10), and a Style of cha-cha-cha?",
    "question_th": "เพลงใดมีคะแนน 30 (10, 10, 10) และลีลาการชะอำ?",
    "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_en": "What is the Australian National Kennel Council Toy Dogs Group with papillon as the Kennel Club breed?",
    "question_th": "กลุ่มสุนัขของเล่นของสภาสุนัขแห่งชาติออสเตรเลียที่มีปาปิลอนเป็นพันธุ์สุนัขพันธุ์เคนเนลคลับคืออะไร?",
    "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_en": "What is the New Zealand Kennel Club Toy Group with papillon as the Australian National Kennel Council Toy Dogs Group breed?",
    "question_th": "กลุ่มของเล่นสุนัขพันธุ์นิวซีแลนด์ Kennel Club คืออะไรกับปาปิยองในฐานะกลุ่มสุนัขของเล่นสุนัขแห่งชาติของออสเตรเลีย?",
    "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_en": "What is the Canadian Kennel Club Toy Dogs Group with the australian silky terrier as the Australian National Kennel Council Toy Dogs Group breed?",
    "question_th": "กลุ่มสุนัขของเล่นของ Canadian Kennel Club คืออะไรกับเทอร์เรียไหมออสเตรเลียในฐานะกลุ่มสุนัขของเล่นของสภาสุนัขแห่งชาติออสเตรเลีย",
    "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_en": "What is the Kennel Club (UK) Toy Group with the shih-tzu as the American Kennel Club Toy Group breed?",
    "question_th": "กลุ่มของเล่น Kennel Club (UK) กับชิสุเป็นสายพันธุ์ American Kennel Club Toy Group คืออะไร",
    "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_en": "What prize amount was awarded at the event with 453 entrants?",
    "question_th": "ในงานมีผู้เข้าร่วม 453 คนได้รับรางวัลมูลค่าเท่าไร?",
    "context": "CREATE TABLE table_name_31 (prize VARCHAR, entrants VARCHAR)"
  },
  {
    "answer": "SELECT results FROM table_name_78 WHERE runner_up = \"michael demichele\"",
    "question_en": "What were the overall event results when Michael Demichele was runner-up?",
    "question_th": "ผลการแข่งขันโดยรวมเมื่อ Michael Demichele คว้ารองชนะเลิศเป็นอย่างไรบ้าง",
    "context": "CREATE TABLE table_name_78 (results VARCHAR, runner_up VARCHAR)"
  },
  {
    "answer": "SELECT MIN(entrants) FROM table_name_90 WHERE winner = \"grant hinkle\"",
    "question_en": "What was the fewest entrants in an event won by Grant Hinkle?",
    "question_th": "ผู้เข้าแข่งขันน้อยที่สุดในงานที่ 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_en": "How many entrants did the events won by Frank Gary average?",
    "question_th": "Frank Gary ชนะการแข่งขันโดยมีผู้เข้าแข่งขันกี่คนโดยเฉลี่ย",
    "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_en": "What medal was won in the 1996 Atlanta games in wrestling?",
    "question_th": "เหรียญอะไรที่ได้รับในเกมมวยปล้ำแอตแลนตาปี 1996?",
    "context": "CREATE TABLE table_name_60 (medal VARCHAR, games VARCHAR, sport VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_33 WHERE games = \"2008 beijing\"",
    "question_en": "Who won a medal at the 2008 Beijing Olympics?",
    "question_th": "ใครได้รับเหรียญรางวัลในการแข่งขันกีฬาโอลิมปิกที่ปักกิ่งปี 2008",
    "context": "CREATE TABLE table_name_33 (name VARCHAR, games VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_1 WHERE name = \"cristina iovu\"",
    "question_en": "What event did Cristina Iovu participate in?",
    "question_th": "Cristina Iovu เข้าร่วมงานอะไร",
    "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_en": "At which games was a bronze medal won in the 94kg men's weightlifting event?",
    "question_th": "ในเกมใดที่ได้รับรางวัลเหรียญทองแดงในการแข่งขันยกน้ำหนักชายรุ่น 94 กก.",
    "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_en": "Which sport has 94kg men's weightlifting as one of its events?",
    "question_th": "กีฬาใดที่มีการยกน้ำหนักชาย 94 กก. เป็นหนึ่งในกิจกรรม?",
    "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_en": "What is the Name of the Quarterback with a Pick # less than 11?",
    "question_th": "ชื่อของกองหลังที่มีตัวเลือก # น้อยกว่า 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_en": "What is donovan's surname?",
    "question_th": "โดโนแวนมีนามสกุลอะไร?",
    "context": "CREATE TABLE table_name_12 (surname VARCHAR, first VARCHAR)"
  },
  {
    "answer": "SELECT throws FROM table_name_39 WHERE first = \"james\"",
    "question_en": "How many throws did james get?",
    "question_th": "เจมส์ยิงได้กี่ครั้ง?",
    "context": "CREATE TABLE table_name_39 (throws VARCHAR, first VARCHAR)"
  },
  {
    "answer": "SELECT dob FROM table_name_5 WHERE surname = \"biddle\"",
    "question_en": "When is Biddle's DOB?",
    "question_th": "วันเกิดของ Biddle คือเมื่อไหร่?",
    "context": "CREATE TABLE table_name_5 (dob VARCHAR, surname VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_27 WHERE attendance = \"33,628\"",
    "question_en": "Who is the opponent of the game with 33,628 folks in attendance?",
    "question_th": "ใครคือคู่ต่อสู้ของเกมที่มีผู้เข้าร่วม 33,628 คน?",
    "context": "CREATE TABLE table_name_27 (opponent VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_12 WHERE attendance = \"38,062\"",
    "question_en": "What is the loss of the game with 38,062 folks in attendance?",
    "question_th": "อะไรคือความพ่ายแพ้ของเกมที่มีผู้เข้าร่วม 38,062 คน?",
    "context": "CREATE TABLE table_name_12 (loss VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_19 WHERE attendance = \"33,531\"",
    "question_en": "What is the score of the game that 33,531 people went too?",
    "question_th": "คะแนนของเกมที่ 33,531 คนไปด้วยเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_19 (score VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_80 WHERE attendance = \"38,062\"",
    "question_en": "What is the date of the game with 38,062 people in attendance?",
    "question_th": "มีผู้เข้าร่วมแข่งขัน 38,062 คน วันที่เท่าไร?",
    "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_en": "What is Brendan Locke's College/Junior/Club Team (League)?",
    "question_th": "ทีมวิทยาลัย/จูเนียร์/คลับ (ลีก) ของ Brendan Locke คืออะไร?",
    "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_en": "What League's Round is Sup and Position is Right Wing?",
    "question_th": "รอบใดของลีกคือ Sup และตำแหน่งคือ 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_en": "In what Round is the Position Goaltender?",
    "question_th": "ตำแหน่งผู้รักษาประตูในรอบใด?",
    "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_en": "In what League is Left Wing Yanick Dupre?",
    "question_th": "ยานิค ดูเปร ปีกซ้ายอยู่ในลีกใด?",
    "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_en": "In what League in Round 6 is the Position Right Wing?",
    "question_th": "ตำแหน่งปีกขวาอยู่ในลีกใดในรอบที่ 6?",
    "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_en": "In what Round is John Parco a Center?",
    "question_th": "John Parco เป็นเซ็นเตอร์ในรอบใด",
    "context": "CREATE TABLE table_name_70 (round VARCHAR, position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_21 WHERE draws = \"15\"",
    "question_en": "Which team had 15 draws?",
    "question_th": "ทีมไหนเสมอ 15 นัด?",
    "context": "CREATE TABLE table_name_21 (team VARCHAR, draws VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_79 WHERE losses = \"16\" AND team = \"hampshire\"",
    "question_en": "Which season had 16 losses for the Hampshire team?",
    "question_th": "ฤดูกาลใดที่ทีมแฮมป์เชียร์แพ้ 16 นัด?",
    "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_en": "Which season had 0 wins and 5 losses for the Surrey team?",
    "question_th": "ฤดูกาลใดที่ทีมเซอร์เรย์ชนะ 0 แพ้ 5?",
    "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_en": "Which season had 10 draws?",
    "question_th": "ฤดูกาลไหนมีเสมอ 10 นัด?",
    "context": "CREATE TABLE table_name_48 (season VARCHAR, draws VARCHAR)"
  },
  {
    "answer": "SELECT draws FROM table_name_72 WHERE team = \"durham\"",
    "question_en": "How many draws did Durham have?",
    "question_th": "เดอร์แฮมเสมอกันกี่ครั้ง?",
    "context": "CREATE TABLE table_name_72 (draws VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT wins FROM table_name_72 WHERE draws = \"8\"",
    "question_en": "How many wins happened with 8 draws?",
    "question_th": "เสมอ 8 ชนะกี่ครั้ง?",
    "context": "CREATE TABLE table_name_72 (wins VARCHAR, draws VARCHAR)"
  },
  {
    "answer": "SELECT grid FROM table_name_79 WHERE driver = \"jenson button\"",
    "question_en": "What was the grid of Jenson Button?",
    "question_th": "ตารางของ 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_en": "Who was the constructor of the car that went 56 laps and had a grid of 15?",
    "question_th": "ใครคือผู้สร้างรถที่วิ่งได้ 56 รอบและมีตาราง 15 รอบ?",
    "context": "CREATE TABLE table_name_31 (constructor VARCHAR, laps VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_66 WHERE grid = \"20\"",
    "question_en": "Who was the contstructor of the car having a grid of 20?",
    "question_th": "ใครคือผู้สร้างรถที่มีตาราง 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_en": "What was the time of the car having a constructor of Renault, which went 40 laps?",
    "question_th": "ช่วงเวลาใดที่รถมีคอนสตรัคเตอร์ของ Renault ซึ่งวิ่งได้ 40 รอบ?",
    "context": "CREATE TABLE table_name_96 (time_retired VARCHAR, constructor VARCHAR, laps VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_29 WHERE grid = \"6\"",
    "question_en": "Who constructed the car that had a grid of 6?",
    "question_th": "ใครเป็นคนสร้างรถที่มีตาราง 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_en": "Can you tell me the sum of Podiums that has the Season of 2006, and the Races larger than 16?",
    "question_th": "คุณช่วยบอกผลรวมของโพเดียมที่มีฤดูกาลปี 2006 และการแข่งขันที่มากกว่า 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_en": "Can you tell me the sum of FLap that has the Pole larger than 0, and the Podiums of 6?",
    "question_th": "คุณช่วยบอกผลรวมของ FLap ที่มีเสามากกว่า 0 และโพเดียมเป็น 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_en": "Name the home with record of 33-18-9",
    "question_th": "ตั้งชื่อบ้านด้วยบันทึก 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_en": "Name the score for detroit home and record of 33-18-9",
    "question_th": "ทายผลสกอร์ ดีทรอยต์ โฮม และสถิติ 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_en": "Name the score for toronto visitor and record of 29-17-8",
    "question_th": "ตั้งชื่อคะแนนผู้เข้าชมโตรอนโตและบันทึก 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_en": "Name the home for detroit visitor and date of february 29",
    "question_th": "ตั้งชื่อบ้านสำหรับผู้มาเยือนดีทรอยต์และวันที่ 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_en": "Which Music has a Record label of moviebox/ speed records / music waves?",
    "question_th": "เพลงไหนมีค่ายเพลงของ moviebox/ บันทึกความเร็ว / คลื่นเพลง?",
    "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_en": "Which Year is the highest one that has a Record label of supertone melodies?",
    "question_th": "ปีไหนสูงสุดที่มีค่ายเพลงซุปเปอร์โทน?",
    "context": "CREATE TABLE table_name_69 (year INTEGER, record_label VARCHAR)"
  },
  {
    "answer": "SELECT record_label FROM table_name_84 WHERE album = \"tera roop\"",
    "question_en": "Which Record label has an Album of tera roop?",
    "question_th": "ค่ายเพลงใดมีอัลบั้มของ 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_en": "Which Record label has an Album of rambo?",
    "question_th": "ค่ายเพลงใดมีอัลบั้มของแรมโบ้?",
    "context": "CREATE TABLE table_name_63 (record_label VARCHAR, album VARCHAR)"
  },
  {
    "answer": "SELECT info FROM table_name_95 WHERE album = \"romeo\"",
    "question_en": "Which Info has an Album of romeo?",
    "question_th": "ข้อมูลใดมีอัลบั้มของ romeo",
    "context": "CREATE TABLE table_name_95 (info VARCHAR, album VARCHAR)"
  },
  {
    "answer": "SELECT AVG(attendance) FROM table_name_63 WHERE record = \"58–49\"",
    "question_en": "What was the average attendance when the record was 58–49?",
    "question_th": "ผู้เข้าร่วมโดยเฉลี่ยเมื่อสถิติอยู่ที่ 58–49 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_63 (attendance INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT SUM(attendance) FROM table_name_16 WHERE score = \"8–7\"",
    "question_en": "What was the attendance when the score was 8–7?",
    "question_th": "ผู้เข้าร่วมเมื่อคะแนนอยู่ที่ 8–7 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_16 (attendance INTEGER, score VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(attendance) FROM table_name_84 WHERE date = \"july 18\"",
    "question_en": "What was the attendance for july 18?",
    "question_th": "ผู้เข้าร่วมในวันที่ 18 กรกฎาคมมีอะไรบ้าง?",
    "context": "CREATE TABLE table_name_84 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_13 WHERE score = \"1 up\"",
    "question_en": "How many strokes to par when the score is 1 up?",
    "question_th": "เมื่อสกอร์ขึ้น 1 จะต้องพาร์กี่สโตรก?",
    "context": "CREATE TABLE table_name_13 (to_par VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT series FROM table_name_12 WHERE game = \"game 5\"",
    "question_en": "Name the series for game 5",
    "question_th": "ตั้งชื่อซีรีส์สำหรับเกม 5",
    "context": "CREATE TABLE table_name_12 (series VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT site FROM table_name_26 WHERE game = \"game 2\"",
    "question_en": "Name the site for game of game 2",
    "question_th": "ตั้งชื่อเว็บไซต์สำหรับเกมของเกม 2",
    "context": "CREATE TABLE table_name_26 (site VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT site FROM table_name_49 WHERE game = \"game 6\"",
    "question_en": "Name the site with game of game 6",
    "question_th": "ตั้งชื่อไซต์ด้วย 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_en": "Name the series with game of game 6",
    "question_th": "ตั้งชื่อซีรีส์ด้วย 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_en": "What is the location attendance from Dwyane Wade (27) high points?",
    "question_th": "คะแนนการเข้าร่วมสถานที่จาก Dwyane Wade (27) คะแนนสูงสุดเป็นเท่าใด",
    "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_en": "What was the high assists from a high points of dorell wright (20)?",
    "question_th": "โดเรลล์ ไรท์ (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_en": "What was the high rebounds from the date of April 14?",
    "question_th": "รีบาวด์สูงจากวันที่ 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_en": "For the year 1975, what is Propulsion, with a Number (quantity ordered) of 4756-4788 (33 buses)?",
    "question_th": "สำหรับปี 2518 รถขับเคลื่อน มีหมายเลข (ปริมาณสั่ง) 4756-4788 (รถโดยสาร 33 คัน) คืออะไร?",
    "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_en": "What year was the diesel fuel propulsion, with a length of 40', and numbers (quanity ordered) of 3701-3729 (29 buses), retired?",
    "question_th": "เครื่องยนต์ขับเคลื่อนด้วยเชื้อเพลิงดีเซล ความยาว 40' และหมายเลข (สั่งปริมาณ) 3701-3729 (รถโดยสาร 29 คัน) เลิกใช้ในปีใด?",
    "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_en": "What is the location attendance of the game with a 27-22 record?",
    "question_th": "ตำแหน่งการเข้าร่วมเกมด้วยสถิติ 27-22 คืออะไร?",
    "context": "CREATE TABLE table_name_27 (location_attendance VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_name_52 WHERE date = \"february 25\"",
    "question_en": "What is the location attendance of the game on February 25?",
    "question_th": "สถานที่ที่เข้าร่วมการแข่งขันในวันที่ 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_en": "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?",
    "question_th": "หมายเลขฤดูใบไม้ร่วง 08 ที่ใหญ่ที่สุดเมื่อฤดูใบไม้ร่วง 09 น้อยกว่า 82 ฤดูใบไม้ร่วง 06 คือ 5 และฤดูใบไม้ร่วง 05 น้อยกว่า 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_en": "What is the mean Fall 09 number where fall 05 is less than 3?",
    "question_th": "หมายเลขเฉลี่ยของฤดูใบไม้ร่วง 09 โดยที่ฤดูใบไม้ร่วง 05 น้อยกว่า 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_en": "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?",
    "question_th": "จำนวนผลรวมของฤดูใบไม้ร่วง 05 เป็นเท่าใดเมื่อฤดูใบไม้ร่วง 08 มากกว่า 5, ฤดูใบไม้ร่วง 06 มากกว่า 7, รัฐคือแมริแลนด์ และฤดูใบไม้ร่วง 09 มากกว่า 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_en": "What's the smallest fall 05 number when fall 09 is less than 14 and fall 08 is more than 5?",
    "question_th": "อะไรคือตัวเลขฤดูใบไม้ร่วง 05 ที่เล็กที่สุดเมื่อฤดูใบไม้ร่วง 09 น้อยกว่า 14 และฤดูใบไม้ร่วง 08 มากกว่า 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_en": "What is in the notes for men's speed skating?",
    "question_th": "มีอะไรอยู่ในหมายเหตุสำหรับการเล่นสเก็ตความเร็วของผู้ชาย?",
    "context": "CREATE TABLE table_name_17 (notes VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_76 WHERE location = \"berlin\"",
    "question_en": "What's the date when the location is Berlin?",
    "question_th": "สถานที่คือเบอร์ลินวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_76 (date VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_70 WHERE distance = \"men's speed skating\"",
    "question_en": "What's the location for men's speed skating?",
    "question_th": "ลานสเก็ตเร็วชายมีที่ไหน?",
    "context": "CREATE TABLE table_name_70 (location VARCHAR, distance VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_27 WHERE \"notes\" = \"notes\"",
    "question_en": "What's the location when the notes area is notes?",
    "question_th": "ตำแหน่งใดที่พื้นที่บันทึกย่อเป็นบันทึกย่อ?",
    "context": "CREATE TABLE table_name_27 (location VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_name_96 WHERE location = \"berlin\"",
    "question_en": "What is the notes left for Berlin?",
    "question_th": "บันทึกที่เหลือสำหรับเบอร์ลินคืออะไร?",
    "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_en": "Which is located in Angola and entered service in 1988?",
    "question_th": "ซึ่งตั้งอยู่ในแองโกลาและเข้าประจำการในปี พ.ศ. 2531?",
    "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_en": "What type entered service in 2000?",
    "question_th": "ประเภทใดที่เข้ามาให้บริการในปี 2543?",
    "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_en": "What is the water depth of Sedco 702, located in Nigeria?",
    "question_th": "ระดับความลึกของน้ำของ Sedco 702 ที่ตั้งอยู่ในไนจีเรียคือเท่าใด?",
    "context": "CREATE TABLE table_name_59 (water_depth VARCHAR, location VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_72 WHERE location = \"nigeria\"",
    "question_en": "Which is located in Nigeria?",
    "question_th": "ซึ่งตั้งอยู่ในไนจีเรีย?",
    "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_en": "Which type entered service in 1976/1997 and is located in Brazil?",
    "question_th": "ประเภทใดที่เข้ามาให้บริการในปี 1976/1997 และตั้งอยู่ในบราซิล",
    "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_en": "Where is Transocean Richardson, a semi entered into service in 1988?",
    "question_th": "Transocean Richardson กึ่งเข้าประจำการในปี 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_en": "What is the total number of Yds/Att where Net Yds was 1818, and Rank was larger than 1?",
    "question_th": "จำนวน Yds/Att ทั้งหมดโดยที่ Net Yds คือ 1818 และอันดับมากกว่า 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_en": "What is the lowest Rank when Attempts was 319, and the Year was larger than 2000?",
    "question_th": "อันดับต่ำสุดเมื่อพยายามคือ 319 และปีมีขนาดใหญ่กว่า 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_en": "What is the total number of Attempts when Rank was larger than 4, and Net Yds was smaller than 1674?",
    "question_th": "จำนวนความพยายามทั้งหมดเมื่ออันดับมากกว่า 4 และ Yds สุทธิน้อยกว่า 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_en": "What is the new conference for the Gauchos team?",
    "question_th": "การประชุมใหม่สำหรับทีม Gauchos คืออะไร?",
    "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_en": "What is the new classification for La Mirada, California?",
    "question_th": "การจัดหมวดหมู่ใหม่สำหรับลามิราดา แคลิฟอร์เนีย คืออะไร",
    "context": "CREATE TABLE table_name_69 (new_classification VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT tenure FROM table_name_28 WHERE team_nickname = \"tritons\"",
    "question_en": "What is the tenure for the Tritons team?",
    "question_th": "ทีม Tritons ดำรงตำแหน่งอย่างไร?",
    "context": "CREATE TABLE table_name_28 (tenure VARCHAR, team_nickname VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_40 WHERE march = 28",
    "question_en": "Which opponent was present on March 28?",
    "question_th": "คู่ต่อสู้คนใดที่ปรากฏในวันที่ 28 มีนาคม?",
    "context": "CREATE TABLE table_name_40 (opponent VARCHAR, march VARCHAR)"
  },
  {
    "answer": "SELECT AVG(game) FROM table_name_73 WHERE points > 99",
    "question_en": "What is the mean game number when the points scored were more than 99?",
    "question_th": "หมายเลขเกมเฉลี่ยเมื่อคะแนนมากกว่า 99 คืออะไร?",
    "context": "CREATE TABLE table_name_73 (game INTEGER, points INTEGER)"
  },
  {
    "answer": "SELECT opponent FROM table_name_21 WHERE game = 7",
    "question_en": "Who is the opponent in game 7?",
    "question_th": "คู่ต่อสู้ในเกมที่ 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_en": "What day in December was the game before game 11 with a record of 7-2-2?",
    "question_th": "วันไหนในเดือนธันวาคมเป็นเกมก่อนเกม 11 ด้วยสถิติ 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_en": "What is the day in December of the game against the Boston Bruins?",
    "question_th": "วันใดในเดือนธันวาคมของเกมกับบอสตัน บรูอินส์?",
    "context": "CREATE TABLE table_name_11 (december VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT AVG(december) FROM table_name_25 WHERE record = \"8-2-3\"",
    "question_en": "What is the average day in December of the game with a 8-2-3 record?",
    "question_th": "วันเฉลี่ยในเดือนธันวาคมของเกมที่มีสถิติ 8-2-3 คืออะไร?",
    "context": "CREATE TABLE table_name_25 (december INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT SUM(seats) FROM table_name_53 WHERE quantity > 45",
    "question_en": "How many seats have a quantity over 45?",
    "question_th": "จำนวนที่นั่งเกิน 45 มีกี่ที่นั่ง?",
    "context": "CREATE TABLE table_name_53 (seats INTEGER, quantity INTEGER)"
  },
  {
    "answer": "SELECT owner FROM table_name_60 WHERE seats = 84",
    "question_en": "Which owner has 84 seats?",
    "question_th": "เจ้าของคนไหนมี 84 ที่นั่ง?",
    "context": "CREATE TABLE table_name_60 (owner VARCHAR, seats VARCHAR)"
  },
  {
    "answer": "SELECT delivery FROM table_name_93 WHERE quantity = 16 AND standing > 128",
    "question_en": "Which deliver has 16 and a standing more than 128?",
    "question_th": "การส่งมอบใดมี 16 และจุดยืนมากกว่า 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_en": "What is the host city that has Alicia Keys listed as a host?",
    "question_th": "เมืองเจ้าภาพที่มี Alicia Keys เป็นเจ้าภาพคืออะไร?",
    "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_en": "What is the host city of the Singapore Indoor Stadium venue and a Valentine's Day theme?",
    "question_th": "เมืองเจ้าภาพของสนามกีฬาในร่มสิงคโปร์และธีมวันวาเลนไทน์คือเมืองใด",
    "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_en": "What year will Bangkok be the host city and Alicia Keys host?",
    "question_th": "กรุงเทพฯ จะเป็นเจ้าภาพในปีใด และอลิเซีย คีย์ส จะเป็นเจ้าภาพในปีใด",
    "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_en": "Who are the hosts from the event with a theme of codehunters and the host city of Bangkok?",
    "question_th": "ใครคือเจ้าภาพจากงานธีม Codehunters และเมืองเจ้าภาพอย่างกรุงเทพฯ?",
    "context": "CREATE TABLE table_name_88 (hosts VARCHAR, host_city VARCHAR, theme VARCHAR)"
  },
  {
    "answer": "SELECT hosts FROM table_name_2 WHERE year = \"2004\"",
    "question_en": "Who are the hosts for the 2004 event?",
    "question_th": "ใครคือเจ้าภาพสำหรับงานปี 2547?",
    "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_en": "What date has a margin of victory of 1 stroke over Greg Kraft?",
    "question_th": "วันไหนที่มีชัยชนะเหนือ เกร็ก คราฟท์ 1 จังหวะ?",
    "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_en": "What was the margin of victory over Steve Rintoul?",
    "question_th": "อะไรคือส่วนต่างของชัยชนะเหนือ 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_en": "What was the margin of victory over Brad Faxon?",
    "question_th": "อะไรคือชัยชนะเหนือ 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_en": "What years show Model of 2.0 tdi (cr) dpf?",
    "question_th": "แสดงรุ่น 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–2011\"",
    "question_en": "What is the power for model  2.0 tdi (cr) dpf, and a Years of 2010–2011?",
    "question_th": "ขุมพลังสำหรับรุ่น 2.0 tdi (cr) dpf คืออะไร และปี 2010–2011",
    "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–\"",
    "question_en": "What is the torque for Model of 2.0 bitdi (cr) dpf, in 2010–?",
    "question_th": "แรงบิดสำหรับรุ่น 2.0 bitdi (cr) dpf ในปี 2010 เป็นเท่าใด",
    "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·m (lb·ft) @ 1500–2000 rpm\"",
    "question_en": "What is the engine for model 2.0 bitdi (cr) dpf, with a Torque of n·m (lb·ft) @ 1500–2000 rpm?",
    "question_th": "เครื่องยนต์สำหรับรุ่น 2.0 bitdi (cr) dpf คืออะไร โดยมีแรงบิด n·m (lb·ft) @ 1500–2000 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_en": "What is the Court Rank of Son of Norihiro's Lineage?",
    "question_th": "ตำแหน่งศาลของบุตรชายของเชื้อสายของโนริฮิโระคืออะไร?",
    "context": "CREATE TABLE table_name_6 (court_rank VARCHAR, lineage VARCHAR)"
  },
  {
    "answer": "SELECT 1811 FROM table_name_47 WHERE \"1801\" = \"1801\"",
    "question_en": "Name the 1811 for 1801 of 1801",
    "question_th": "ตั้งชื่อ 1811 สำหรับ 1801 จาก 1801",
    "context": "CREATE TABLE table_name_47 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1861 FROM table_name_97 WHERE 1851 = \"5291\"",
    "question_en": "Name the 1861 with 1851 of 5291",
    "question_th": "ตั้งชื่อ 1861 ด้วย 1851 จาก 5291",
    "context": "CREATE TABLE table_name_97 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1901 FROM table_name_12 WHERE 1851 = \"1961\"",
    "question_en": "Name the 1901 with 1851 of 1961",
    "question_th": "ตั้งชื่อปี 1901 ด้วย 1851 ของ 1961",
    "context": "CREATE TABLE table_name_12 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1821 FROM table_name_1 WHERE 1811 = \"1921\"",
    "question_en": "Name the 1821 with 1811 of 1921",
    "question_th": "ตั้งชื่อ 1821 ด้วย 1811 ของ 1921",
    "context": "CREATE TABLE table_name_1 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1821 FROM table_name_30 WHERE 1861 = \"3733\"",
    "question_en": "Name the 1821 with 1861 of 3733",
    "question_th": "ตั้งชื่อ 1821 ด้วย 1861 จาก 3733",
    "context": "CREATE TABLE table_name_30 (Id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(area__km_2__) FROM table_name_20 WHERE population < 90",
    "question_en": "What's the sum of the Area (KM 2) that's got a Population that's smaller than 90?",
    "question_th": "ผลรวมของพื้นที่ (KM 2) ที่มีประชากรน้อยกว่า 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_en": "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?",
    "question_th": "รหัสต่ำสุดที่มีภาษาพูดมากที่สุดของประเทศโซซา สถานที่ของอุทยานแห่งชาติช้างอัดโด และพื้นที่ (กม. 2) ที่เล็กกว่า 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_en": "What is the score at game 31?",
    "question_th": "คะแนนในเกมที่ 31 คืออะไร?",
    "context": "CREATE TABLE table_name_19 (score VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT MIN(grid) FROM table_name_22 WHERE rider = \"ruben xaus\"",
    "question_en": "What is the Grid for Rider Ruben Xaus?",
    "question_th": "ตารางสำหรับ 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_en": "What was the number of Laps with a Grid of more than 3 and Time of 39:24.967?",
    "question_th": "จำนวนรอบที่มีตารางมากกว่า 3 และเวลา 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_en": "What Rider had a Time of +1:08.291?",
    "question_th": "ไรเดอร์คนไหนมีเวลา +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_en": "Using a Ducati 999 F06 Bike, how many Laps with a Grid greater than 11 and Time of +53.488?",
    "question_th": "การใช้จักรยานยนต์ Ducati 999 F06 มีกี่รอบที่มีเส้นตารางมากกว่า 11 และเวลา +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–17–3\"",
    "question_en": "When was there a record of 13–17–3?",
    "question_th": "มีบันทึก 13–17–3 เมื่อใด",
    "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_en": "What record was made in vancouver on December 8?",
    "question_th": "มีการบันทึกอะไรในแวนคูเวอร์เมื่อวันที่ 8 ธันวาคม?",
    "context": "CREATE TABLE table_name_31 (record VARCHAR, home VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_94 WHERE visitor = \"california\"",
    "question_en": "What was the home who had California visiting?",
    "question_th": "บ้านที่แคลิฟอร์เนียไปเยี่ยมคือบ้านอะไร",
    "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_en": "What's the score on December 1 when Philadelphia visited?",
    "question_th": "วันที่ 1 ธันวาคม ที่ฟิลาเดลเฟียไปเยือนคือคะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_41 (score VARCHAR, visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT type_of_game FROM table_name_5 WHERE results¹ = \"1:6\"",
    "question_en": "What was the type of game with a 1:6 result?",
    "question_th": "เกมประเภทใดที่มีผล 1:6?",
    "context": "CREATE TABLE table_name_5 (type_of_game VARCHAR, results¹ VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_28 WHERE city = \"belgrade\" AND results¹ = \"0:2\"",
    "question_en": "Who was the opponent at the game in Belgrade with a 0:2 result?",
    "question_th": "คู่ต่อสู้ในเกมที่เบลเกรดคือใครด้วยสกอร์ 0:2?",
    "context": "CREATE TABLE table_name_28 (opponent VARCHAR, city VARCHAR, results¹ VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_69 WHERE results¹ = \"1:0\"",
    "question_en": "What city held the game with a result of 1:0?",
    "question_th": "เมืองใดจัดการแข่งขันด้วยสกอร์ 1:0?",
    "context": "CREATE TABLE table_name_69 (city VARCHAR, results¹ VARCHAR)"
  },
  {
    "answer": "SELECT type_of_game FROM table_name_7 WHERE results¹ = \"1:2\"",
    "question_en": "What type of game had a result of 1:2?",
    "question_th": "เกมประเภทใดที่มีผล 1:2?",
    "context": "CREATE TABLE table_name_7 (type_of_game VARCHAR, results¹ VARCHAR)"
  },
  {
    "answer": "SELECT results¹ FROM table_name_54 WHERE opponent = \"hungary\"",
    "question_en": "What was the result of the game against Hungary?",
    "question_th": "ผลการแข่งขันกับฮังการีเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_54 (results¹ VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT remixed_by FROM table_name_70 WHERE version = \"radio edit\"",
    "question_en": "Who was the Radio Edit Version remixed by?",
    "question_th": "Radio Edit Version รีมิกซ์โดยใคร",
    "context": "CREATE TABLE table_name_70 (remixed_by VARCHAR, version VARCHAR)"
  },
  {
    "answer": "SELECT version FROM table_name_45 WHERE year < 1996",
    "question_en": "What was the Version prior to 1996?",
    "question_th": "เวอร์ชันก่อนปี 1996 คืออะไร?",
    "context": "CREATE TABLE table_name_45 (version VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT date FROM table_name_76 WHERE catalog = \"573 194-2\"",
    "question_en": "What is the Date of Catalog 573 194-2?",
    "question_th": "วันที่ของแคตตาล็อก 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_en": "What is the Label of the release in CD Maxi Format?",
    "question_th": "ฉลากของการวางจำหน่ายในรูปแบบ CD Maxi คืออะไร?",
    "context": "CREATE TABLE table_name_65 (label VARCHAR, format VARCHAR)"
  },
  {
    "answer": "SELECT catalog FROM table_name_13 WHERE format = \"cd single\"",
    "question_en": "What is the Catalog number of the CD Single?",
    "question_th": "หมายเลขแคตตาล็อกของ CD Single คืออะไร?",
    "context": "CREATE TABLE table_name_13 (catalog VARCHAR, format VARCHAR)"
  },
  {
    "answer": "SELECT make FROM table_name_33 WHERE pos > 9",
    "question_en": "Which Make has a Pos larger than 9?",
    "question_th": "ยี่ห้อใดมี Pos มากกว่า 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_en": "Which Pos has a Driver of brian scott (r)?",
    "question_th": "ตำแหน่งใดมีไดร์เวอร์ของ 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_en": "How many Pos have a Driver of todd bodine, and a Car # larger than 30?",
    "question_th": "มีพนักงานขับรถของ todd bodine กี่คน และรถ # มากกว่า 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_en": "Which Car # has a Make of toyota, and a Pos of 7?",
    "question_th": "รถ # คันไหนมียี่ห้อของ toyota และ Pos เท่ากับ 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_en": "How many track numbers were recorded on November 16, 1959 for the title of I Couldn't Hear Nobody Pray?",
    "question_th": "มีการบันทึกหมายเลขเพลงทั้งหมดเมื่อวันที่ 16 พฤศจิกายน พ.ศ. 2502 สำหรับชื่อเพลง I Can't Hear Nothing 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_en": "On what date was My Lord What a Mornin' recorded?",
    "question_th": "My Lord What a Mornin' บันทึกวันที่เท่าไหร่?",
    "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_en": "What is the average track number 3:25 long and a title of Great Getting up Mornin'?",
    "question_th": "อะไรคือเพลงเฉลี่ยที่มีความยาว 3:25 และชื่อเพลงว่า 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–7–0–1\"",
    "question_en": "WHich Date has a Record of 2–7–0–1?",
    "question_th": "วันไหนมีสถิติ 2–7–0–1",
    "context": "CREATE TABLE table_name_73 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_59 WHERE date = \"march 16\"",
    "question_en": "Who is the Visitor on march 16?",
    "question_th": "ใครคือผู้มาเยือนในวันที่ 16 มีนาคม?",
    "context": "CREATE TABLE table_name_59 (visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_51 WHERE date = \"november 16\"",
    "question_en": "Which Record is on november 16?",
    "question_th": "บันทึกใดคือวันที่ 16 พฤศจิกายน?",
    "context": "CREATE TABLE table_name_51 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_33 WHERE date = \"december 10\"",
    "question_en": "What is the Home on december 10?",
    "question_th": "บ้านในวันที่ 10 ธันวาคมคืออะไร?",
    "context": "CREATE TABLE table_name_33 (home VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_30 WHERE date = \"november 11\"",
    "question_en": "WHich Score has a Date on november 11?",
    "question_th": "คะแนนใดมีวันที่ 11 พฤศจิกายน?",
    "context": "CREATE TABLE table_name_30 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_55 WHERE date = \"december 18\"",
    "question_en": "Which Record has a Date on december 18?",
    "question_th": "บันทึกใดมีวันที่ 18 ธันวาคม?",
    "context": "CREATE TABLE table_name_55 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_17 WHERE date = \"march 26\"",
    "question_en": "What visitor has march 26 as the date?",
    "question_th": "แขกคนไหนที่มีวันที่ 26 มีนาคมเป็นวันที่?",
    "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_en": "What visitor has detroit red wings as the home, and march 30 as the date?",
    "question_th": "ผู้มาเยือนคนใดมีปีกสีแดงดีทรอยต์เป็นบ้าน และวันที่ 30 มีนาคมเป็นวันที่",
    "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_en": "What record has chicago black hawks as the visitor and march 23 as the date?",
    "question_th": "สถิติใดที่มีชิคาโก้ แบล็กฮอว์กส์เป็นผู้มาเยือน และวันที่ 23 มีนาคมเป็นวันที่?",
    "context": "CREATE TABLE table_name_15 (record VARCHAR, visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_1 WHERE date = \"march 30\"",
    "question_en": "What record has march 30 as the date?",
    "question_th": "บันทึกอะไรที่มีวันที่ 30 มีนาคมเป็นวันที่?",
    "context": "CREATE TABLE table_name_1 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT unanimous FROM table_name_78 WHERE school = \"michigan dartmouth\"",
    "question_en": "What is the unanimous result of the player from Michigan Dartmouth?",
    "question_th": "ผลการแข่งขันของนักเตะมิชิแกน ดาร์ทเมาท์เป็นเอกฉันท์เป็นอย่างไรบ้าง?",
    "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_en": "What is the position of the player with a unanimous no result without a college hall of fame?",
    "question_th": "ตำแหน่งใดของผู้เล่นที่มีคะแนนเสียงเป็นเอกฉันท์โดยไม่มีหอเกียรติยศของวิทยาลัย?",
    "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_en": "What is the school of the player with a college hall of fame nevers hof profile?",
    "question_th": "โรงเรียนของผู้เล่นที่มีหอเกียรติยศของวิทยาลัยไม่เคยมีประวัติอะไร?",
    "context": "CREATE TABLE table_name_50 (school VARCHAR, college_hall_of_fame VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_31 WHERE position = \"ends\"",
    "question_en": "What is the school of the player who plays ends?",
    "question_th": "โรงเรียนของผู้เล่นที่เล่นจบคืออะไร?",
    "context": "CREATE TABLE table_name_31 (school VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT college_hall_of_fame FROM table_name_83 WHERE position = \"fullback\"",
    "question_en": "What is the college hall of fame of the player who plays fullback?",
    "question_th": "หอเกียรติยศของผู้เล่นที่เล่นกองหลังคืออะไร?",
    "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_en": "What is the position of the player from Dartmouth Ohio State?",
    "question_th": "นักเตะดาร์ทเมาท์ โอไฮโอ สเตท อยู่ตำแหน่งไหน?",
    "context": "CREATE TABLE table_name_55 (position VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT english_title FROM table_name_21 WHERE director = \"jayme monjardim\"",
    "question_en": "What is the English title of the film Directed by Jayme Monjardim?",
    "question_th": "ชื่อภาษาอังกฤษของภาพยนตร์ที่กำกับโดย 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_en": "What was the Director with a Ceremony of 2001?",
    "question_th": "ผู้อำนวยการมีพิธีอะไรในปี 2544?",
    "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_en": "When have a Save of ||20,599||32-37?",
    "question_th": "เมื่อไรจะมีเงินออม ||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_en": "Which Save is on June 15?",
    "question_th": "บันทึกใดคือวันที่ 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_en": "Which Score has a Opponent of Boston red sox and a Save of sager?",
    "question_th": "คะแนนใดที่มีฝ่ายตรงข้ามของบอสตันเรดซอกซ์และเซฟของเซเกอร์?",
    "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_en": "When has an Opponent of at Seattle mariners?",
    "question_th": "ฝ่ายตรงข้ามของซีแอตเทิลกะลาสีเรือจะมีเมื่อใด?",
    "context": "CREATE TABLE table_name_75 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_70 WHERE save = \"ayala\" AND loss = \"olivares\"",
    "question_en": "When is the Save of Ayala and a Loss of Olivares",
    "question_th": "เมื่อใดคือการช่วยเหลือของ Ayala และการสูญเสีย Olivares",
    "context": "CREATE TABLE table_name_70 (date VARCHAR, save VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_19 WHERE partner = \"martín rodríguez\"",
    "question_en": "Which Tournament has a Partner of martín rodríguez?",
    "question_th": "ทัวร์นาเมนท์ใดมีคู่หูของ มาร์ติน โรดริเกซ?",
    "context": "CREATE TABLE table_name_19 (tournament VARCHAR, partner VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(touchdowns) FROM table_name_73 WHERE field_goals > 0",
    "question_en": "How many Touchdowns have Field goals larger than 0?",
    "question_th": "มีทัชดาวน์กี่ทัชดาวน์ที่มีประตูในสนามมากกว่า 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_en": "Which Extra points is the highest one that has a Player of herrnstein, and Points smaller than 30?",
    "question_th": "คะแนนพิเศษใดที่สูงที่สุดที่มีผู้เล่นของ Herrnstein และคะแนนน้อยกว่า 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_en": "Which Touchdowns is the lowest one that has Extra points smaller than 14, and a Player of white, and Points smaller than 5?",
    "question_th": "ทัชดาวน์ใดคือแต้มต่ำสุดที่มีแต้มพิเศษน้อยกว่า 14 และผู้เล่นแต้มขาวและมีแต้มน้อยกว่า 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_en": "Which Touchdowns is the lowest one that has Points of 5, and a Field goals larger than 0?",
    "question_th": "ทัชดาวน์ใดเป็นทัชดาวน์ต่ำสุดที่มีคะแนน 5 และประตูในสนามมากกว่า 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_en": "Which Points is the lowest one that has Touchdowns smaller than 1?",
    "question_th": "แต้มใดคือแต้มต่ำสุดที่มีทัชดาวน์น้อยกว่า 1?",
    "context": "CREATE TABLE table_name_51 (points INTEGER, touchdowns INTEGER)"
  },
  {
    "answer": "SELECT location FROM table_name_50 WHERE season = 2006",
    "question_en": "What is the Location of the Bowl in 2006?",
    "question_th": "ที่ตั้งของชามในปี 2549 คืออะไร?",
    "context": "CREATE TABLE table_name_50 (location VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_48 WHERE attendance = \"70,283\"",
    "question_en": "At what Location was the Attendance 70,283?",
    "question_th": "ผู้เข้าร่วม 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_en": "What was the Bowl game in San Francisco, CA after 1968?",
    "question_th": "เกม Bowl ในซานฟรานซิสโก รัฐแคลิฟอร์เนียหลังปี 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_en": "What team has a yamaha constructor with all rounds?",
    "question_th": "ทีมไหนมีคอนสตรัคเตอร์ Yamaha ครบทุกรอบบ้าง?",
    "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_en": "What rounds did rider Mika Kallio with a Ducati constructor have?",
    "question_th": "Mika Kallio นักแข่งกับคอนสตรัคเตอร์ของ Ducati ลงแข่งได้กี่รอบ?",
    "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_en": "Who is the rider of Scot Racing team with a Honda constructor and rounds 6-17?",
    "question_th": "ใครคือนักบิดของทีม Scot Racing กับผู้สร้าง Honda และรอบ 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_en": "What is the rounds of rider Mika Kallio 1 of the Ducati Marlboro team?",
    "question_th": "นักบิด Mika Kallio 1 ของทีม Ducati Marlboro ในรอบที่เท่าไหร่?",
    "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_en": "Who was the opponent for the game taht was before week 5 on October 10, 1954?",
    "question_th": "ใครคือคู่ต่อสู้ของเกมนี้ก่อนสัปดาห์ที่ 5 ในวันที่ 10 ตุลาคม พ.ศ. 2497",
    "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_en": "What is the average attendance for the game that was after week 4 and on November 14, 1954?",
    "question_th": "ผู้เข้าชมเกมโดยเฉลี่ยหลังจากสัปดาห์ที่ 4 และวันที่ 14 พฤศจิกายน พ.ศ. 2497 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_30 (attendance INTEGER, week VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(game) FROM table_name_17 WHERE record = \"21–4–7\" AND december > 19",
    "question_en": "After December 19, what is the Game number with a Record of 21–4–7?",
    "question_th": "หลังจากวันที่ 19 ธันวาคม หมายเลขเกมที่มีสถิติ 21–4–7 คือหมายเลขใด",
    "context": "CREATE TABLE table_name_17 (game VARCHAR, record VARCHAR, december VARCHAR)"
  },
  {
    "answer": "SELECT SUM(points) FROM table_name_67 WHERE score = \"2–7\"",
    "question_en": "What were the Points in the game with a Score of 2–7?",
    "question_th": "แต้มในเกมที่มีคะแนน 2–7 คืออะไร",
    "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_en": "What's the lowest bronze with a 6 rank, smaller than 5 gold, and a total of more than 1?",
    "question_th": "เหรียญทองแดงต่ำสุดอันดับที่ 6 น้อยกว่า 5 ทอง และรวมมากกว่า 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_en": "What's the Bronze cumulative number for less than 0 gold?",
    "question_th": "เลขทองแดงสะสมน้อยกว่า 0 ทองคือเท่าไร?",
    "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_en": "Which average Lost has an Against larger than 19, and a Drawn smaller than 1?",
    "question_th": "แพ้โดยเฉลี่ยใดที่มีแต้มต่อมากกว่า 19 และเสมอน้อยกว่า 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_en": "Which average Against has Drawn of 3, and Points larger than 9, and a Team of portuguesa?",
    "question_th": "ค่าเฉลี่ยใดที่เสมอกับ 3 และแต้มมากกว่า 9 และทีมโปรตุเกส?",
    "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_en": "Which average Against has Points of 6, and a Played smaller than 9?",
    "question_th": "ค่าเฉลี่ยใดต่อมีแต้ม 6 และเล่นน้อยกว่า 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_en": "Which average Points have a Position of 7, and a Lost smaller than 4?",
    "question_th": "คะแนนเฉลี่ยใดที่มีตำแหน่ง 7 และแพ้น้อยกว่า 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_en": "Which average Points have a Lost larger than 2, and Drawn larger than 2, and a Difference of 0?",
    "question_th": "คะแนนเฉลี่ยใดที่เสียมากกว่า 2 และจั่วได้มากกว่า 2 และผลต่างเป็น 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_en": "Which Touchdowns have an Extra points of 0, and Points larger than 5, and a Player of curtis redden?",
    "question_th": "ทัชดาวน์ใดที่มีคะแนนพิเศษเป็น 0 และคะแนนมากกว่า 5 และผู้เล่นของเคอร์ติสทำให้แดง?",
    "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_en": "How many Extra points have Touchdowns of 1, and a Player of ross kidston, and Points smaller than 5?",
    "question_th": "มีแต้มพิเศษกี่แต้มที่มีทัชดาวน์เป็น 1 และผู้เล่นของ Ross Kidston และแต้มน้อยกว่า 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_en": "Which Points is the lowest one that has an Extra points of 0, and a Player of curtis redden, and Touchdowns smaller than 2?",
    "question_th": "แต้มใดคือแต้มต่ำสุดที่มีแต้มพิเศษเป็น 0 และผู้เล่นเคอร์ติสเป็นสีแดง และทัชดาวน์น้อยกว่า 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_en": "Which Extra points is the lowest one that has a Player of ross kidston, and Points smaller than 5?",
    "question_th": "คะแนนพิเศษใดที่ต่ำที่สุดที่มีผู้เล่นของ Ross Kidston และคะแนนน้อยกว่า 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_en": "Which Points have Touchdowns of 1, and a Field goals smaller than 0?",
    "question_th": "แต้มใดมีทัชดาวน์เท่ากับ 1 และฟิลด์โกลน้อยกว่า 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_en": "Which poll had a week 10 larger than 2, a week 2 of exactly 12, and a week 13 of 8?",
    "question_th": "แบบสำรวจใดที่มีสัปดาห์ที่ 10 มากกว่า 2 สัปดาห์ สัปดาห์ที่ 2 จากทั้งหมด 12 สัปดาห์ และสัปดาห์ที่ 13 จาก 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_en": "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?",
    "question_th": "สัปดาห์ที่ 9 สูงสุดที่มีสัปดาห์ที่ 6 จาก 7 สัปดาห์ที่ 10 มากกว่า 2 สัปดาห์ที่ 7 จาก 5 และสัปดาห์ที่ 11 น้อยกว่า 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_en": "What was the week 5 opponent for the year with a week 10 opponent of Maryland (6-2)?",
    "question_th": "คู่ต่อสู้สัปดาห์ที่ 5 ของปีกับคู่ต่อสู้สัปดาห์ที่ 10 ของแมริแลนด์ (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_en": "What was the week 14 opponent for the year with a week 10 opponent of Michigan State (8-2)?",
    "question_th": "คู่ต่อสู้สัปดาห์ที่ 14 ของปีกับคู่ต่อสู้สัปดาห์ที่ 10 ของรัฐมิชิแกน (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_en": "What is the week 4 opponent for the year with a week 10 opponent of Michigan State (8-2)?",
    "question_th": "คู่ต่อสู้สัปดาห์ที่ 4 ของปีกับคู่ต่อสู้สัปดาห์ที่ 10 ของรัฐมิชิแกน (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_en": "What is the week 12 opponent for the year that had a week 3 opponent of South Florida (3-0)?",
    "question_th": "คู่ต่อสู้สัปดาห์ที่ 12 สำหรับปีที่มีคู่ต่อสู้สัปดาห์ที่ 3 ของเซาท์ฟลอริดา (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_en": "What was the week 7 opponent for the year that had a week 12 opponent of Oregon State (7-3)?",
    "question_th": "คู่ต่อสู้สัปดาห์ที่ 7 สำหรับปีที่มีคู่ต่อสู้สัปดาห์ที่ 12 ของรัฐโอเรกอน (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_en": "What was the week 3 opponent for the year that had a week 7 opponent of Georgia (5-1)?",
    "question_th": "คู่ต่อสู้สัปดาห์ที่ 3 ของปีที่มีคู่ต่อสู้สัปดาห์ที่ 7 ของจอร์เจีย (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_en": "What is Week 14 Nov 24, that has Week 11 Nov 3 of USC (6-2)?",
    "question_th": "สัปดาห์ที่ 14 พ.ย. 24 คืออะไรซึ่งมีสัปดาห์ที่ 11 พ.ย. 3 ของ 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_en": "What is listed for the Week 9 Oct 20 that has a Week 17 (Final) Jan 4 of Michigan (10-3)?",
    "question_th": "รายการใดบ้างสำหรับสัปดาห์ที่ 9 วันที่ 20 ตุลาคมที่มีสัปดาห์ที่ 17 (สุดท้าย) วันที่ 4 มกราคมของมิชิแกน (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_en": "What is listed for the Week 1 Aug 26 that has a Week 7 Oct 6 of USC (3-2)?",
    "question_th": "สิ่งที่ระบุไว้สำหรับสัปดาห์ที่ 1 วันที่ 26 สิงหาคมที่มีสัปดาห์ที่ 7 วันที่ 6 ตุลาคมของ 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_en": "What is listed for the Week 3 Sept 8 that has a Week 2 Sept 2 of Florida State (2-0) (4)?",
    "question_th": "รายการใดบ้างสำหรับสัปดาห์ที่ 3 วันที่ 8 กันยายนที่มีสัปดาห์ที่ 2 วันที่ 2 กันยายนของรัฐฟลอริดา (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–2\" AND game < 27",
    "question_en": "How much December has a Score of 5–2, and a Game smaller than 27?",
    "question_th": "เดือนธันวาคมมีคะแนน 5–2 เท่าใด และเกมที่มีคะแนนน้อยกว่า 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_en": "Which Game has an Opponent of @ pittsburgh penguins?",
    "question_th": "เกมใดมีคู่ต่อสู้ของ @pittsburgh Penguins?",
    "context": "CREATE TABLE table_name_14 (game INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT MAX(december) FROM table_name_59 WHERE record = \"21–7–2\" AND game > 30",
    "question_en": "Which December has a Record of 21–7–2, and a Game larger than 30?",
    "question_th": "เดือนธันวาคมใดที่มีสถิติ 21–7–2 และเกมที่ใหญ่กว่า 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–6–2\"",
    "question_en": "Which December has Points of 38, and a Record of 18–6–2?",
    "question_th": "เดือนธันวาคมใดที่มีคะแนน 38 และสถิติ 18–6–2",
    "context": "CREATE TABLE table_name_49 (december INTEGER, points VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_47 WHERE result = \"2–1\" AND date = \"5 july 2007\"",
    "question_en": "What is the Score that has a Result of 2–1 on 5 july 2007?",
    "question_th": "คะแนนที่มีผล 2–1 ในวันที่ 5 กรกฎาคม 2550 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_47 (score VARCHAR, result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_53 WHERE venue = \"hong kong\"",
    "question_en": "Which Competition has a Venue of hong kong?",
    "question_th": "การแข่งขันใดมีสถานที่ของฮ่องกง?",
    "context": "CREATE TABLE table_name_53 (competition VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_47 WHERE competition = \"friendly match\" AND result = \"2–1\"",
    "question_en": "When is the Competition of friendly match with a Result of 2–1?",
    "question_th": "การแข่งขันนัดกระชับมิตรด้วยผล 2–1 จัดขึ้นเมื่อใด?",
    "context": "CREATE TABLE table_name_47 (date VARCHAR, competition VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_2 WHERE result = \"2–0\"",
    "question_en": "Which Venue has a Result of 2–0?",
    "question_th": "สนามใดมีผล 2–0?",
    "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–0\"",
    "question_en": "What is the Score of 2007 afc asian cup qualification with a Result of 8–0?",
    "question_th": "คะแนนของฟุตบอลเอเชียนคัพ 2007 รอบคัดเลือก โดยผลการแข่งขัน 8–0 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_81 (score VARCHAR, competition VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_54 WHERE result = \"3–1\"",
    "question_en": "Which Competition has a Result of 3–1?",
    "question_th": "การแข่งขันใดมีผล 3–1?",
    "context": "CREATE TABLE table_name_54 (competition VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_82 WHERE attendance = \"31,467\"",
    "question_en": "What was the Indians' record during the game that had 31,467 in attendance?",
    "question_th": "อะไรคือสถิติของชาวอินเดียนแดงในระหว่างเกมที่มีผู้เข้าร่วม 31,467 คน?",
    "context": "CREATE TABLE table_name_82 (record VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_name_16 WHERE length = \"4:00\"",
    "question_en": "what year is 4:00 long",
    "question_th": "ปีอะไรยาว 4:00",
    "context": "CREATE TABLE table_name_16 (year VARCHAR, length VARCHAR)"
  },
  {
    "answer": "SELECT AVG(round) FROM table_name_87 WHERE position = \"defensive tackle\"",
    "question_en": "What round on average was a defensive tackle selected?",
    "question_th": "โดยเฉลี่ยแล้วเลือกแท็คเกิ้ลป้องกันรอบใด",
    "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_en": "What is the lowest total for the silver less than 1, and a rank more than 5, more than 1 bronze?",
    "question_th": "ผลรวมต่ำสุดสำหรับเงินน้อยกว่า 1 และอันดับมากกว่า 5 มากกว่า 1 ทองแดงคืออะไร?",
    "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_en": "Who ha the gold and 1 bronze, and more than 0 silver?",
    "question_th": "ใครมีทองคำ 1 ทองสัมฤทธิ์ และเงินมากกว่า 0 เหรียญ?",
    "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_en": "Who has a total of the Bronze less than 4, gold more than 0, and no silver?",
    "question_th": "ใครมีทองแดงรวมน้อยกว่า 4 ทองคำมากกว่า 0 และไม่มีเงิน?",
    "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_en": "What's the Points average with a Lost of 21, and Position of 22?",
    "question_th": "ค่าเฉลี่ยคะแนนที่แพ้ 21 และอันดับ 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_en": "What's the total Lost that has a Played that's larger than 42?",
    "question_th": "จำนวนแพ้ทั้งหมดที่มีการเล่นมากกว่า 42 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_35 (lost INTEGER, played INTEGER)"
  },
  {
    "answer": "SELECT relative_value FROM table_name_72 WHERE jyutping = \"daam3\"",
    "question_en": "what's the relative value that contains a jyutping of daam3?",
    "question_th": "ค่าสัมพัทธ์ที่มี jyutping ของ daam3 คืออะไร?",
    "context": "CREATE TABLE table_name_72 (relative_value VARCHAR, jyutping VARCHAR)"
  },
  {
    "answer": "SELECT metric_value FROM table_name_11 WHERE jyutping = \"lei4\"",
    "question_en": "What metric value has a jyutping of lei4?",
    "question_th": "ค่าเมตริกใดที่มียฺหวืดเพ็งเป็น lei4",
    "context": "CREATE TABLE table_name_11 (metric_value VARCHAR, jyutping VARCHAR)"
  },
  {
    "answer": "SELECT imperial_value FROM table_name_51 WHERE jyutping = \"cin4\"",
    "question_en": "what's the imperial that contains a jyutping of cin4?",
    "question_th": "อิมพีเรียลที่มียฺหวืดเพ็งของ 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_en": "What was the location that led to a record of 9-0-0?",
    "question_th": "ตำแหน่งใดที่นำไปสู่สถิติ 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_en": "What is the lowest number of bronze medals with less than 2 silver medals and more than 1 medal in total for Uzbekistan?",
    "question_th": "อุซเบกิสถานได้เหรียญทองแดงน้อยที่สุด โดยได้น้อยกว่า 2 เหรียญเงิน และมากกว่า 1 เหรียญรวมคือเท่าไร?",
    "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_en": "What is the highest round with a pick# of 11, a position of offensive tackle, and overall less than 414?",
    "question_th": "รอบสูงสุดโดยเลือก #11 ตำแหน่งสกัดกั้น และโดยรวมน้อยกว่า 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_en": "What is the highest round with a pick# of 9, overll less than 468, and position of defensive back?",
    "question_th": "รอบสูงสุดโดยเลือก # 9 คะแนนรวมน้อยกว่า 468 และตำแหน่งกองหลังคืออะไร?",
    "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_en": "What is the highest round with a guard position and an overall greater than 71?",
    "question_th": "รอบสูงสุดที่มีตำแหน่งการ์ดและคะแนนรวมมากกว่า 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_en": "Who has an overall greater than 414 with a pick# bigger than 9?",
    "question_th": "ใครมีคะแนนรวมมากกว่า 414 โดยมีตัวเลือก # มากกว่า 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_en": "What is the Gaelic name for an area less than 127 in Kintyre?",
    "question_th": "ชื่อภาษาเกลิคสำหรับพื้นที่น้อยกว่า 127 ใน 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_en": "What was the score on 7 february 2008?",
    "question_th": "คะแนนเมื่อวันที่ 7 กุมภาพันธ์ 2551 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_42 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_80 WHERE date = \"13 may 2007\"",
    "question_en": "What was the outcome on 13 may 2007?",
    "question_th": "ผลลัพธ์เมื่อวันที่ 13 พฤษภาคม 2550 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_80 (outcome VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_82 WHERE date = \"3 may 2009\"",
    "question_en": "What was the score on 3 may 2009?",
    "question_th": "คะแนนเมื่อวันที่ 3 พฤษภาคม 2552 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_82 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_81 WHERE venue = \"jalan besar, singapore\"",
    "question_en": "Name the score for venue of jalan besar, singapore",
    "question_th": "ตั้งชื่อคะแนนสถานที่จัดงานจาลัน เบซาร์ ประเทศสิงคโปร์",
    "context": "CREATE TABLE table_name_81 (score VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_97 WHERE date = \"2 june 2008\"",
    "question_en": "Name the score for 2 june 2008",
    "question_th": "ตั้งชื่อคะแนนสำหรับวันที่ 2 มิถุนายน พ.ศ. 2551",
    "context": "CREATE TABLE table_name_97 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_33 WHERE game = 63",
    "question_en": "Which Opponent has a Game of 63?",
    "question_th": "ฝ่ายตรงข้ามคนไหนมีเกม 63?",
    "context": "CREATE TABLE table_name_33 (opponent VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_30 WHERE score = \"1–4\"",
    "question_en": "which Record has a Score of 1–4?",
    "question_th": "บันทึกใดมีคะแนน 1–4",
    "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–7\"",
    "question_en": "Which Record has a Points smaller than 62 and a February larger than 16, and a Score of 8–7?",
    "question_th": "บันทึกใดมีคะแนนน้อยกว่า 62 และเดือนกุมภาพันธ์มากกว่า 16 และมีคะแนน 8–7",
    "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_en": "What is the total number of Issues has a End month of oct-80?",
    "question_th": "จำนวนฉบับทั้งหมดที่มีเดือนสิ้นสุดที่ 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_en": "Which Indicia has anEnd month in feb-75?",
    "question_th": "อินเดียใดมีเดือนสิ้นสุดในเดือนกุมภาพันธ์ 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_en": "Which HAAT has a Channels TV / RF of 31 (psip) 44 (uhf)",
    "question_th": "ซึ่ง HAAT มีช่อง TV/RF อยู่ที่ 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_en": "Which City of license has a Channels TV / RF of 67 ( psip ) 29 ( uhf )",
    "question_th": "เมืองที่ได้รับใบอนุญาตใดมีช่องทีวี / RF 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_en": "Which Station has hagerstown?",
    "question_th": "สถานีใดมีเฮเกอร์สทาวน์",
    "context": "CREATE TABLE table_name_28 (station VARCHAR, city_of_license VARCHAR)"
  },
  {
    "answer": "SELECT haat FROM table_name_34 WHERE facility_id = 65944",
    "question_en": "Which HAAT has 65944?",
    "question_th": "HAAT ใดมี 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_en": "Which City of license has a Channels TV / RF of 36 (psip) 36 (uhf)? Question 5",
    "question_th": "เมืองใบอนุญาตใดที่มีช่อง TV / RF 36 (psip) 36 (uhf) คำถามที่ 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_en": "What format is dated October 29, 2004?",
    "question_th": "เป็นรูปแบบใดวันที่ 29 ตุลาคม 2547",
    "context": "CREATE TABLE table_name_8 (format VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_59 WHERE catalogue__number = \"ptcd-1015-6\"",
    "question_en": "What is the date with the catalogue number ptcd-1015-6?",
    "question_th": "หมายเลขแค็ตตาล็อก 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_en": "What is the label for December 2004?",
    "question_th": "ป้ายกำกับสำหรับเดือนธันวาคม 2547 คืออะไร?",
    "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_en": "What is the date for Hydra Head Records with a CD format?",
    "question_th": "วันที่สำหรับ Hydra Head Records พร้อมรูปแบบซีดีคือเมื่อใด",
    "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_en": "Which country has Hydra Head Records on February 2005?",
    "question_th": "ประเทศใดมี Hydra Head Records ในเดือนกุมภาพันธ์ พ.ศ. 2548",
    "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_en": "Which country has Hydra Head Records with a 2lp format?",
    "question_th": "ประเทศใดมี Hydra Head Records รูปแบบ 2lp?",
    "context": "CREATE TABLE table_name_97 (country VARCHAR, format VARCHAR, label VARCHAR)"
  },
  {
    "answer": "SELECT jockey FROM table_name_44 WHERE horse = \"mad rush\"",
    "question_en": "Who rode mad rush?",
    "question_th": "ใครขี่ 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_en": "What place was the horse with a barrier of 20 and weighing less than 54 kg",
    "question_th": "สถานที่ใดคือม้าที่มีแผงกั้น 20 และหนักไม่ถึง 54 กก",
    "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_en": "What place was the viewed horse?",
    "question_th": "ม้าที่ถูกมองนั้นอยู่ที่ไหน?",
    "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_en": "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?",
    "question_th": "จำนวนชัยชนะโดยเฉลี่ยของปีที่มีอันดับท็อป 10 น้อยกว่า 5 อันดับ เงินรางวัล $39,190 และการออกสตาร์ทน้อยกว่า 2 ครั้งเป็นเท่าใด",
    "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_en": "What is the highest number of poles of the year before 1992 with more than 18 starts and winnings of $125,102?",
    "question_th": "จำนวนโพลที่สูงที่สุดของปีก่อนปี 1992 โดยออกสตาร์ทมากกว่า 18 ครั้งและเงินรางวัล 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ław wyspiański\" AND year = 1969",
    "question_en": "Author of stanisław wyspiański, and a Year of 1969 happened in what theatre?",
    "question_th": "ผู้เขียนstanisław wyspiański และปี 1969 เกิดขึ้นในโรงละครอะไร?",
    "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_en": "Which game did New Jersey Devils played in?",
    "question_th": "นิวเจอร์ซีย์ เดวิลส์ ลงเล่นในเกมใด?",
    "context": "CREATE TABLE table_name_54 (game VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_92 WHERE record = \"21-25-7-4\"",
    "question_en": "What score has a record of 21-25-7-4?",
    "question_th": "มีสถิติสกอร์ไหน 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_en": "What score has a record of 22-28-7-4?",
    "question_th": "มีสถิติสกอร์ไหน 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_en": "What group has 1200 m as the distance?",
    "question_th": "กลุ่มใดมีระยะทาง 1,200 เมตร?",
    "context": "CREATE TABLE table_name_82 (group VARCHAR, distance VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_45 WHERE group = \"g1\"",
    "question_en": "What venue has g1 as the group?",
    "question_th": "สถานที่ใดมี g1 เป็นกลุ่ม?",
    "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_en": "What's the highest Points with the Team of Tacuary, and has Losses that's smaller than 4?",
    "question_th": "อะไรคือคะแนนสูงสุดของทีม Tacuary และมีการแพ้ที่น้อยกว่า 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_en": "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?",
    "question_th": "ผลรวมของการแพ้ที่ได้คะแนนมากกว่า 15 มีแต้มมากกว่า 16 และเล่นมากกว่า 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_en": "What's the highest Played with a Scored of 15, and Draws that's less than 1?",
    "question_th": "แต้มสูงสุดที่เล่นด้วยคะแนน 15 และเสมอที่น้อยกว่า 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_en": "What's the sum of WIns with Draws that's larger than 1, Losses that's smaller than 4, and Conceded of 20?",
    "question_th": "ผลรวมของ WIns ที่เสมอมากกว่า 1, แพ้น้อยกว่า 4 และเสีย 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_en": "What's the lowest Position with a Conceded that's larger than 16, Draws of 3, and Losses that's larger than 3?",
    "question_th": "ตำแหน่งต่ำสุดที่มีการเสียมากกว่า 16 เสมอ 3 และแพ้มากกว่า 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_en": "Which processors are supported with a PCI-express of x16: 1 slot x1: 4 slots and the nforce 550 model?",
    "question_th": "โปรเซสเซอร์ใดบ้างที่รองรับ PCI-express x16: 1 slot x1: 4 slot และรุ่น nforce 550",
    "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_en": "What are the processors supported by a ddr2 memory and the nforce 550 model?",
    "question_th": "หน่วยความจำ ddr2 และรุ่น nforce 550 รองรับโปรเซสเซอร์ใดบ้าง",
    "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_en": "What is the PCI-express with a ddr2 memory and a nforce 520 model?",
    "question_th": "PCI-express พร้อมหน่วยความจำ ddr2 และรุ่น nforce 520 คืออะไร",
    "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_en": "What is the Russian word for wine glass that contains 4.16 fl. oz.?",
    "question_th": "แก้วไวน์ที่บรรจุแก้วไวน์ขนาด 4.16 ชั้นในภาษารัสเซียคืออะไร ออนซ์.?",
    "context": "CREATE TABLE table_name_14 (russian VARCHAR, us_customary VARCHAR)"
  },
  {
    "answer": "SELECT imperial FROM table_name_11 WHERE ratio = \"1/20\"",
    "question_en": "What are the imperial size for the unit that has a ratio of 1/20?",
    "question_th": "ขนาดอิมพีเรียลสำหรับหน่วยที่มีอัตราส่วน 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_en": "How big in metric terms is the unit that has a ratio of 1/20?",
    "question_th": "หน่วยที่มีอัตราส่วน 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_en": "How large in US customary terms is the unit called butylka (vodochnaya)?",
    "question_th": "หน่วยที่เรียกว่า butylka (vodochnaya) มีขนาดใหญ่เพียงใดตามธรรมเนียมของสหรัฐอเมริกา",
    "context": "CREATE TABLE table_name_33 (us_customary VARCHAR, unit VARCHAR)"
  },
  {
    "answer": "SELECT translation FROM table_name_81 WHERE unit = \"chetvert\"",
    "question_en": "What is the translation of chetvert?",
    "question_th": "เช็ตเวิร์ตแปลว่าอะไร?",
    "context": "CREATE TABLE table_name_81 (translation VARCHAR, unit VARCHAR)"
  },
  {
    "answer": "SELECT russian FROM table_name_34 WHERE translation = \"bucket\"",
    "question_en": "What Russian word translates to bucket?",
    "question_th": "คำภาษารัสเซียแปลว่าถังอะไร?",
    "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_en": "Points larger than 6, and a Results of 522:443 had what lowest matches?",
    "question_th": "คะแนนที่มากกว่า 6 และผลลัพธ์ 522:443 มีการแข่งขันที่ต่ำที่สุด?",
    "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_en": "Loses of 2, and a Pos. smaller than 2 had how many highest matches?",
    "question_th": "แพ้ 2 และอันดับ น้อยกว่า 2 มีการแข่งขันสูงสุดกี่นัด?",
    "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_en": "What was the outcome when the game was played on clay and on 2 May 2009?",
    "question_th": "เมื่อเล่นเกมบนดินและวันที่ 2 พฤษภาคม พ.ศ. 2552 ผลเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_49 (outcome VARCHAR, surface VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_42 WHERE surface = \"hard\"",
    "question_en": "What person was played against when the playing surface was hard?",
    "question_th": "บุคคลใดถูกเล่นกับเมื่อพื้นผิวการเล่นแข็ง?",
    "context": "CREATE TABLE table_name_42 (opponent VARCHAR, surface VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_69 WHERE surface = \"clay\" AND score = \"6–3, 2–6, [10–8]\"",
    "question_en": "With the score of 6–3, 2–6, [10–8] and played on clay who was the opponent?",
    "question_th": "ด้วยสกอร์ 6–3, 2–6, [10–8] และเล่นบนดินเหนียว คู่ต่อสู้คือใคร?",
    "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_en": "What is the rank of the park in pigeon forge, tennessee in the best food category?",
    "question_th": "อุทยานในพีเจียนฟอร์จ รัฐเทนเนสซี อยู่ในประเภทอาหารที่ดีที่สุดอันดับที่เท่าไร?",
    "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_en": "What building is in Shenzhen, have less than 115 floors, and was completed before 2017?",
    "question_th": "อาคารใดในเซินเจิ้น มีความสูงไม่ถึง 115 ชั้น และก่อสร้างแล้วเสร็จก่อนปี 2560",
    "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_en": "What is the earliest year having a length of 11:25?",
    "question_th": "ปีแรกสุดคือปีใดที่มีความยาว 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_en": "What year had a version called Wolf Mix?",
    "question_th": "รุ่นปีใดที่เรียกว่า 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_en": "In 1978 what is the NFL team?",
    "question_th": "ในปี 1978 ทีม NFL คืออะไร?",
    "context": "CREATE TABLE table_name_30 (nfl_team VARCHAR, draft_year VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_87 WHERE attendance = \"64,002\"",
    "question_en": "Who was the opponent with attendance at 64,002?",
    "question_th": "คู่ต่อสู้คือใครที่มีผู้เข้าร่วม 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_en": "What was the highest week with 84,856 in attendance?",
    "question_th": "สัปดาห์ใดที่มีผู้เข้าร่วมสูงสุด 84,856 คน?",
    "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_en": "What was the record in a week less than 13 on November 9, 2003?",
    "question_th": "สถิติในหนึ่งสัปดาห์น้อยกว่า 13 เมื่อวันที่ 9 พฤศจิกายน พ.ศ. 2546 คืออะไร?",
    "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_en": "On what date was the result w 20-17?",
    "question_th": "ผลวันที่ 20-17 คือวันไหน?",
    "context": "CREATE TABLE table_name_43 (date VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_52 WHERE record = \"2-0\"",
    "question_en": "What was the attendance for record 2-0?",
    "question_th": "ผู้เข้าชมเป็นสถิติ 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_en": "On what date was the game at Lincoln Financial Field?",
    "question_th": "เกมที่ลินคอล์น ไฟแนนเชียล ฟิลด์ จัดขึ้นวันไหน?",
    "context": "CREATE TABLE table_name_40 (date VARCHAR, game_site VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_58 WHERE pick = 175",
    "question_en": "Which player has a pick of 175?",
    "question_th": "ผู้เล่นคนไหนมีสิทธิ์เลือก 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_en": "Zack Jordan has the lowest pick and a round of less than 28?",
    "question_th": "Zack Jordan เป็นตัวเลือกต่ำสุดและรอบน้อยกว่า 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_en": "What is the sum of the pick for player roger zatkoff?",
    "question_th": "ผลรวมของการเลือกผู้เล่น โรเจอร์ แซตคอฟฟ์ คือเท่าไร?",
    "context": "CREATE TABLE table_name_24 (pick INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT metal FROM table_name_56 WHERE size = \"26mm (across scallops)\"",
    "question_en": "Which metal has a size that is 26mm (across scallops)?",
    "question_th": "โลหะชนิดใดที่มีขนาด 26 มม. (ข้ามหอยเชลล์)",
    "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_en": "What is the weight with the shape of scalloped, and that is a size of 20mm (across scallops)?",
    "question_th": "รูปร่างสแกลลอปมีน้ำหนักเท่าไหร่ และมีขนาด 20 มม. (ตามขวางหอยเชลล์)",
    "context": "CREATE TABLE table_name_92 (weight VARCHAR, shape VARCHAR, size VARCHAR)"
  },
  {
    "answer": "SELECT weight FROM table_name_41 WHERE denomination = \"three paise\"",
    "question_en": "What is the weight with a denomination that is three paise?",
    "question_th": "น้ำหนักเป็นสามสตางค์?",
    "context": "CREATE TABLE table_name_41 (weight VARCHAR, denomination VARCHAR)"
  },
  {
    "answer": "SELECT weight FROM table_name_53 WHERE denomination = \"ten paise\"",
    "question_en": "What is the weight with a denomination that is ten paise?",
    "question_th": "น้ำหนักเป็นสิบสตางค์?",
    "context": "CREATE TABLE table_name_53 (weight VARCHAR, denomination VARCHAR)"
  },
  {
    "answer": "SELECT MAX(drawn) FROM table_name_86 WHERE games < 7",
    "question_en": "What is the highest number of games drawn, where the games played was less than 7?",
    "question_th": "จำนวนเกมสูงสุดที่จับสลาก โดยเกมที่เล่นน้อยกว่า 7 คือเท่าใด",
    "context": "CREATE TABLE table_name_86 (drawn INTEGER, games INTEGER)"
  },
  {
    "answer": "SELECT MIN(october) FROM table_name_38 WHERE opponent = \"washington capitals\"",
    "question_en": "Which October is the lowest one that has an Opponent of washington capitals?",
    "question_th": "ตุลาคมใดที่ต่ำที่สุดที่มีฝ่ายตรงข้ามของเมืองหลวงวอชิงตัน?",
    "context": "CREATE TABLE table_name_38 (october INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_17 WHERE game > 7 AND points < 14",
    "question_en": "Which Score has a Game larger than 7, and Points smaller than 14?",
    "question_th": "คะแนนใดที่มีเกมมากกว่า 7 และคะแนนน้อยกว่า 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_en": "How many Points have an Opponent of @ calgary flames?",
    "question_th": "ฝ่ายตรงข้ามของ @ 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_en": "What is the mean number of events where the rank is 1 and there are more than 3 wins?",
    "question_th": "จำนวนเหตุการณ์เฉลี่ยที่อันดับเป็น 1 และมีการชนะมากกว่า 3 ครั้งเป็นเท่าใด",
    "context": "CREATE TABLE table_name_50 (events INTEGER, rank VARCHAR, wins VARCHAR)"
  },
  {
    "answer": "SELECT supercopa_1994 FROM table_name_10 WHERE team = \"estudiantes\"",
    "question_en": "Which Supercopa 1994 has a Team of estudiantes?",
    "question_th": "Supercopa 1994 ใดมีทีมนักเรียน?",
    "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_en": "Which CONMEBOL 1994 has a Supercopa 1994 of n/a, and a Recopa 1994 of n/a, and a Team of san lorenzo?",
    "question_th": "CONMEBOL 1994 ใดที่มี Supercopa 1994 ที่ n/a และ Recopa 1994 ที่ n/a และทีมของ 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_en": "Which Recopa 1994 has a Supercopa 1994 of 1st round, and a Team of argentinos juniors?",
    "question_th": "Recopa 1994 ใดมี Supercopa 1994 ในรอบแรก และมีทีมรุ่นน้องจากอาร์เจนตินา?",
    "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_en": "Which Team has a Recopa 1994 of n/a and a CONMEBOL 1994 of 1st round?",
    "question_th": "ทีมใดมี Recopa 1994 ไม่มี และ CONMEBOL 1994 จากรอบแรก",
    "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_en": "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?",
    "question_th": "อื่นๆ ใดที่มีสีเขียวเป็น 0 และเป็นอิสระจาก 1 และแรงงานมีค่าน้อยกว่า 45 และการควบคุมแรงงานสูญเสียการควบคุมโดยรวมไปไม่ได้",
    "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_en": "Which Social Democratic Party has a Green smaller than 0?",
    "question_th": "พรรคสังคมประชาธิปไตยใดมีสีเขียวน้อยกว่า 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_en": "When the try bonus was 10 what was the losing bonus?",
    "question_th": "เมื่อโบนัสลองเป็น 10 โบนัสที่แพ้คืออะไร?",
    "context": "CREATE TABLE table_name_78 (losing_bonus VARCHAR, try_bonus VARCHAR)"
  },
  {
    "answer": "SELECT drawn FROM table_name_97 WHERE losing_bonus = \"2\"",
    "question_en": "When the losing bonus was 2 what was drawn score?",
    "question_th": "เมื่อโบนัสที่เสียเป็น 2 ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_97 (drawn VARCHAR, losing_bonus VARCHAR)"
  },
  {
    "answer": "SELECT tries_against FROM table_name_99 WHERE try_bonus = \"5\"",
    "question_en": "If the try bonus was 5 what was the try against score?",
    "question_th": "หากโบนัสการลองเป็น 5 อะไรคือการลองเทียบกับคะแนน?",
    "context": "CREATE TABLE table_name_99 (tries_against VARCHAR, try_bonus VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_name_92 WHERE tries_against = \"90\"",
    "question_en": "When the tries against is 90 how many points are there?",
    "question_th": "เมื่อทดลองได้ 90 คะแนน มีกี่คะแนน?",
    "context": "CREATE TABLE table_name_92 (points VARCHAR, tries_against VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_name_58 WHERE tries_against = \"75\"",
    "question_en": "What club has tries against of 75?",
    "question_th": "สโมสรใดพยายามเอาชนะถึง 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_en": "What is the total number of overall figures when duke was the college and the round was higher than 7?",
    "question_th": "เมื่อดยุคเป็นวิทยาลัยและรอบสูงกว่า 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_en": "Which of the highest pick numbers had a round of less than 2?",
    "question_th": "หมายเลขที่เลือกสูงสุดตัวใดมีรอบน้อยกว่า 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_en": "Which pick number had a round of less than 7, an overall of less than 127, and where the name was Robert Alford?",
    "question_th": "หมายเลขเลือกใดที่มีรอบน้อยกว่า 7 รวมน้อยกว่า 127 และชื่อ 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_en": "Which highest overall figure had Robert Alford as a name and a round of more than 2?",
    "question_th": "ตัวเลขโดยรวมสูงสุดคนใดที่มี โรเบิร์ต อัลฟอร์ด เป็นชื่อและเข้ารอบมากกว่า 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_en": "What Game site has an Opponent of Miami Dolphins?",
    "question_th": "เว็บไซต์เกมใดที่มีฝ่ายตรงข้ามของ 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_en": "What's the Lowest Attendance with a Game site of Riverfront Stadium?",
    "question_th": "ผู้เข้าชมที่ต่ำที่สุดกับไซต์เกมของ 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_en": "What's the lowest Attendance for a Week of 2?",
    "question_th": "ผู้เข้าร่วมต่ำสุดในสัปดาห์ที่ 2 คือเท่าใด",
    "context": "CREATE TABLE table_name_3 (attendance INTEGER, week VARCHAR)"
  },
  {
    "answer": "SELECT bronze FROM table_name_20 WHERE nation = \"south korea\"",
    "question_en": "How many bronze medals does South Korea have?",
    "question_th": "เกาหลีใต้มีเหรียญทองแดงกี่เหรียญ?",
    "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_en": "What is the smallest number of total medals for Georgia with 0 silver and 1 bronze?",
    "question_th": "จำนวนเหรียญทั้งหมดน้อยที่สุดสำหรับจอร์เจียด้วย 0 เหรียญเงินและ 1 เหรียญทองแดงคือเท่าใด",
    "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_en": "What is the lowest year that had foil team as the event at Melbourne?",
    "question_th": "ปีต่ำสุดที่มีทีมฟอยล์ในงานที่เมลเบิร์นคือปีใด?",
    "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_en": "What is the number of years that the event was foil team and took place in Los Angeles?",
    "question_th": "งานฟอยล์ทีมจัดขึ้นที่ลอสแองเจลิสกี่ปี?",
    "context": "CREATE TABLE table_name_77 (year VARCHAR, venue VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_71 WHERE venue = \"lyon\"",
    "question_en": "What was the position at the venue of lyon?",
    "question_th": "สถานที่จัดงานลียงมีตำแหน่งอะไร?",
    "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_en": "What was the position for mauro at the world championships in 1985 during the foil individual event?",
    "question_th": "เมาโรอยู่ในตำแหน่งใดในการแข่งขันชิงแชมป์โลกปี 1985 ระหว่างการแข่งขันฟอยล์รายบุคคล?",
    "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_en": "What was the playoff status when the head coach was Brent Sutter, the finish was 4th central, and the points were 82?",
    "question_th": "สถานะเพลย์ออฟเมื่อเฮดโค้ชคือเบรนท์ ซัตเตอร์ จบที่อันดับ 4 มีแต้มอยู่ที่ 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–4\"",
    "question_en": "2001 of 2–4 was in which tournament?",
    "question_th": "2001 จาก 2–4 อยู่ในทัวร์นาเมนต์ใด",
    "context": "CREATE TABLE table_name_2 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2006 FROM table_name_59 WHERE 2013 = \"4–4\"",
    "question_en": "2013 of 4–4 is involved in what 2006?",
    "question_th": "2013 จาก 4–4 เกี่ยวข้องกับอะไรในปี 2006",
    "context": "CREATE TABLE table_name_59 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2001 FROM table_name_31 WHERE 2007 = \"1r\"",
    "question_en": "2007 of 1r is involved in what 2001?",
    "question_th": "2007 จาก 1r เกี่ยวข้องกับอะไรในปี 2001?",
    "context": "CREATE TABLE table_name_31 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2002 FROM table_name_69 WHERE 2007 = \"8–4\"",
    "question_en": "2007 of 8–4 is involved in what 2002?",
    "question_th": "2550 จาก 8–4 เกี่ยวข้องกับอะไรในปี 2545",
    "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_en": "2005 of 3r, and a 2000 of lq, and a 2002 of 3r is in what 2004?",
    "question_th": "2005 ของ 3r และ 2000 ของ lq และ 2002 ของ 3r อยู่ในปี 2004 อะไร",
    "context": "CREATE TABLE table_name_7 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2000 FROM table_name_85 WHERE 2006 = \"10–4\"",
    "question_en": "2006 of 10–4 is in which 2000?",
    "question_th": "2549 จาก 10–4 อยู่ในปี 2000 ใด",
    "context": "CREATE TABLE table_name_85 (Id VARCHAR)"
  },
  {
    "answer": "SELECT MIN(drawn) FROM table_name_52 WHERE points < 4 AND lost > 4",
    "question_en": "What is the smallest number of drawn games when there are fewer than 4 points and more than 4 lost games?",
    "question_th": "จำนวนเกมที่เสมอกันน้อยที่สุดเมื่อมีน้อยกว่า 4 แต้มและแพ้มากกว่า 4 เกมคือเท่าไร?",
    "context": "CREATE TABLE table_name_52 (drawn INTEGER, points VARCHAR, lost VARCHAR)"
  },
  {
    "answer": "SELECT SUM(points) FROM table_name_87 WHERE games < 4",
    "question_en": "What is the sum of the points when there are fewer than 4 games?",
    "question_th": "ผลรวมแต้มเมื่อมีน้อยกว่า 4 เกมเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_87 (points INTEGER, games INTEGER)"
  },
  {
    "answer": "SELECT lead FROM table_name_97 WHERE third = \"aanders brorson\"",
    "question_en": "Who holds the lead role when Aanders Brorson is third?",
    "question_th": "ใครเป็นผู้มีบทบาทนำเมื่อ Aanders Brorson เป็นอันดับสาม?",
    "context": "CREATE TABLE table_name_97 (lead VARCHAR, third VARCHAR)"
  },
  {
    "answer": "SELECT skip FROM table_name_69 WHERE lead = \"dominik greindl\"",
    "question_en": "Who has the role of skip when the lead is Dominik Greindl?",
    "question_th": "ใครมีบทบาทในการข้ามเมื่อผู้นำคือ Dominik Greindl?",
    "context": "CREATE TABLE table_name_69 (skip VARCHAR, lead VARCHAR)"
  },
  {
    "answer": "SELECT second FROM table_name_18 WHERE third = \"mikkel krause\"",
    "question_en": "Who is the second when Mikkel Krause is the third?",
    "question_th": "ใครคือคนที่สองเมื่อ Mikkel Krause เป็นคนที่สาม?",
    "context": "CREATE TABLE table_name_18 (second VARCHAR, third VARCHAR)"
  },
  {
    "answer": "SELECT skip FROM table_name_83 WHERE third = \"alasdair guthrie\"",
    "question_en": "Who is the Skip when Alasdair Guthrie is the third?",
    "question_th": "ใครคือ Skip ในตอนที่ Alasdair Guthrie เป็นคนที่สาม?",
    "context": "CREATE TABLE table_name_83 (skip VARCHAR, third VARCHAR)"
  },
  {
    "answer": "SELECT second FROM table_name_90 WHERE lead = \"michel gribi\"",
    "question_en": "Who is the Second when Michel Gribi is the lead?",
    "question_th": "ใครคือคนที่สองเมื่อ Michel Gribi เป็นผู้นำ?",
    "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_en": "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?",
    "question_th": "ตำแหน่งสูงสุดของทีมคือแต้มต่อ 12 แต้มน้อยกว่า 11 แต้ม เสมอมากกว่า 2 แต้มและเล่นมากกว่า 9 แต้มคือตำแหน่งไหน?",
    "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_en": "What is the difference of the team with 12 points?",
    "question_th": "ความแตกต่างของทีม 12 แต้มคืออะไร?",
    "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_en": "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?",
    "question_th": "จำนวนการเล่นโดยเฉลี่ยของทีมที่แพ้ 3 ครั้ง มากกว่า 9 แต้ม อันดับ 5 และน้อยกว่า 12 แต้มคือเท่าไร?",
    "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_en": "Name the rating % for channel of anhui satellite tv",
    "question_th": "ตั้งชื่อ % เรตติ้งของช่องทีวีดาวเทียมมณฑลอานฮุย",
    "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_en": "Name the most share for anhui satellite tv",
    "question_th": "ชื่อที่มีส่วนแบ่งมากที่สุดสำหรับทีวีดาวเทียมมณฑลอานฮุย",
    "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_en": "Name the sum of rating % for cctv and position more than 7",
    "question_th": "ตั้งชื่อผลรวมเรตติ้ง % สำหรับกล้องวงจรปิดและตำแหน่งมากกว่า 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_en": "Name the average rating % for shandong satellite tv and share % less than 1.74",
    "question_th": "ตั้งชื่อ % คะแนนเฉลี่ยสำหรับทีวีดาวเทียมมณฑลซานตง และแชร์ % น้อยกว่า 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_en": "What date was Montreal the visitor?",
    "question_th": "มอนทรีออลเป็นผู้มาเยือนวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_50 (date VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_92 WHERE home = \"ny rangers\"",
    "question_en": "What is the record for the NY Rangers?",
    "question_th": "บันทึกของ NY Rangers คืออะไร?",
    "context": "CREATE TABLE table_name_92 (record VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT SUM(round) FROM table_name_41 WHERE pick = 169",
    "question_en": "Name the sum of round for pick of 169",
    "question_th": "ตั้งชื่อผลรวมของรอบสำหรับการเลือก 169",
    "context": "CREATE TABLE table_name_41 (round INTEGER, pick VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_12 WHERE pick = 16",
    "question_en": "Name the nationality for pick of 16",
    "question_th": "ตั้งชื่อสัญชาติสำหรับการเลือก 16 คน",
    "context": "CREATE TABLE table_name_12 (nationality VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT lead FROM table_name_94 WHERE skip = \"pavol pitonak\"",
    "question_en": "Which Lead has a Skip of pavol pitonak?",
    "question_th": "ลีดคนไหนมี Skip ของพาโวล ปิโตนัก?",
    "context": "CREATE TABLE table_name_94 (lead VARCHAR, skip VARCHAR)"
  },
  {
    "answer": "SELECT skip FROM table_name_31 WHERE nation = \"wales\"",
    "question_en": "What is the skip in Wales?",
    "question_th": "การข้ามในเวลส์คืออะไร?",
    "context": "CREATE TABLE table_name_31 (skip VARCHAR, nation VARCHAR)"
  },
  {
    "answer": "SELECT nation FROM table_name_72 WHERE second = \"tomas pitonak\"",
    "question_en": "Which Nation has a Second of tomas pitonak?",
    "question_th": "ประเทศใดมีวินาทีของโทมัส pitonak?",
    "context": "CREATE TABLE table_name_72 (nation VARCHAR, second VARCHAR)"
  },
  {
    "answer": "SELECT second FROM table_name_56 WHERE third = \"athanassios pantios\"",
    "question_en": "Which Second has a Third of athanassios pantios?",
    "question_th": "วินาทีไหนมีหนึ่งในสามของกางเกง Athanassios?",
    "context": "CREATE TABLE table_name_56 (second VARCHAR, third VARCHAR)"
  },
  {
    "answer": "SELECT lead FROM table_name_1 WHERE nation = \"croatia\"",
    "question_en": "Where did Croatia lead?",
    "question_th": "โครเอเชียนำอยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_1 (lead VARCHAR, nation VARCHAR)"
  },
  {
    "answer": "SELECT skip FROM table_name_34 WHERE third = \"carlo alessandro zisa\"",
    "question_en": "Which Skip has a Third of carlo alessandro zisa?",
    "question_th": "Skip คนไหนได้หนึ่งในสามของคาร์โล อเลสซานโดร ซิซ่า?",
    "context": "CREATE TABLE table_name_34 (skip VARCHAR, third VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_94 WHERE player = \"shaun sabol\"",
    "question_en": "What is the nationality of Shaun Sabol?",
    "question_th": "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_en": "What is the position of United States' player Brett Lawrence?",
    "question_th": "ตำแหน่งผู้เล่นของสหรัฐอเมริกา 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_en": "Which Compression ratio has a (none) DX 10 Name and a FOURCC of dxt4?",
    "question_th": "อัตราการบีบอัดใดมี (ไม่มี) ชื่อ DX 10 และ FOURCC เป็น 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_en": "What is the venue of the napa auto parts 200 race with a mrn radio?",
    "question_th": "นภาอะไหล่200เรซมีวิทยุmrnจัดที่ไหนคะ?",
    "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_en": "What is the race on 10/10/2008?",
    "question_th": "การแข่งขันวันที่ 10/10/2551 คืออะไร?",
    "context": "CREATE TABLE table_name_3 (race VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT race FROM table_name_71 WHERE distance = \"201.44 miles\"",
    "question_en": "Which race has a distance of 201.44 miles?",
    "question_th": "การแข่งขันรายการใดมีระยะทาง 201.44 ไมล์?",
    "context": "CREATE TABLE table_name_71 (race VARCHAR, distance VARCHAR)"
  },
  {
    "answer": "SELECT distance FROM table_name_48 WHERE venue = \"atlanta motor speedway\"",
    "question_en": "What is the distance of the race at the Atlanta Motor Speedway?",
    "question_th": "การแข่งขันที่ 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_en": "What is the distance of the Sam's town 250 race?",
    "question_th": "แข่ง Sam's town 250 ระยะทางเท่าไหร่ครับ?",
    "context": "CREATE TABLE table_name_24 (distance VARCHAR, race VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_62 WHERE race = \"carfax 250\"",
    "question_en": "What is the venue of teh carfax 250 race?",
    "question_th": "สนาม 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_en": "What is the name of the event where Cornell-Penn played?",
    "question_th": "งานที่ Cornell-Penn เล่นชื่ออะไร?",
    "context": "CREATE TABLE table_name_33 (name VARCHAR, teams VARCHAR)"
  },
  {
    "answer": "SELECT games_played FROM table_name_77 WHERE trophy = \"sawhorse dollar\"",
    "question_en": "Who many games were played for the series with the Sawhorse Dollar trophy?",
    "question_th": "มีการเล่นเกมใดบ้างสำหรับซีรีส์นี้ที่ได้รับรางวัล Sawhorse Dollar",
    "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_en": "How many games have Points smaller than 4, and an October smaller than 5?",
    "question_th": "มีกี่เกมที่มีคะแนนน้อยกว่า 4 และเดือนตุลาคมน้อยกว่า 5",
    "context": "CREATE TABLE table_name_51 (game VARCHAR, points VARCHAR, october VARCHAR)"
  },
  {
    "answer": "SELECT SUM(game) FROM table_name_43 WHERE record = \"8–2–0\" AND points > 16",
    "question_en": "Which Game has a Record of 8–2–0, and Points larger than 16?",
    "question_th": "เกมใดมีสถิติ 8–2–0 และแต้มมากกว่า 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–0–0\"",
    "question_en": "Which Score has an October smaller than 15, and a Record of 2–0–0?",
    "question_th": "คะแนนใดที่มีเดือนตุลาคมน้อยกว่า 15 และบันทึก 2–0–0",
    "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_en": "How many games have November 7 as the date, and points greater than 17?",
    "question_th": "มีกี่เกมที่มีวันที่ 7 พฤศจิกายน และคะแนนมากกว่า 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_en": "How many points have November of 15?",
    "question_th": "วันที่ 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_en": "Name the winning score for jim barnes and year of 1924",
    "question_th": "ตั้งชื่อคะแนนชนะของจิม บาร์นส์ และปี 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’ 22.80\"",
    "question_en": "What was the Rider of the LCR Honda 600CC Team with a Time of 59’ 22.80?",
    "question_th": "นักบิดของทีม LCR Honda 600CC คือใครด้วยเวลา 59' 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_en": "What Rider had a Speed of 108.347mph and Time of 1:02.40.93?",
    "question_th": "ไรเดอร์คนไหนที่มีความเร็ว 108.347 ไมล์ต่อชั่วโมง และเวลา 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_en": "What Rider had a Time of 1:01.50.57?",
    "question_th": "ไรเดอร์คนไหนที่มีเวลา 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_en": "What is the average attendance that has june 24 as the date?",
    "question_th": "ผู้เข้าร่วมโดยเฉลี่ยที่มีวันที่ 24 มิถุนายนเป็นวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_14 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_95 WHERE time = \"2:59\"",
    "question_en": "What date has 2:59 as the time?",
    "question_th": "เวลา 2:59 น. เป็นวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_95 (date VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_95 WHERE tournament = \"manta, ecuador\"",
    "question_en": "What is the surface when the tournament is manta, ecuador?",
    "question_th": "พื้นผิวเมื่อการแข่งขันคือราหูเอกวาดอร์คืออะไร?",
    "context": "CREATE TABLE table_name_95 (surface VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_22 WHERE tournament = \"manta, ecuador\"",
    "question_en": "What is the surface for the tournament of manta, ecuador?",
    "question_th": "พื้นผิวสำหรับการแข่งขัน Manta, เอกวาดอร์คืออะไร?",
    "context": "CREATE TABLE table_name_22 (surface VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_11 WHERE opponent = \"lesley joseph\"",
    "question_en": "What tournament is lesley joseph the opponent?",
    "question_th": "เลสลีย์โจเซฟเป็นคู่ต่อสู้ในทัวร์นาเมนต์ใด?",
    "context": "CREATE TABLE table_name_11 (tournament VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_16 WHERE opponent = \"marcos daniel\"",
    "question_en": "What date was marcos daniel the opponent?",
    "question_th": "มาร์กอส แดเนียล เป็นฝ่ายตรงข้ามวันไหน?",
    "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êmio\"",
    "question_en": "What is the Copa Libertadores 1999 result for team grêmio, who did not qualify for Copa Conmebol 1999?",
    "question_th": "ผลการแข่งขันโคปาลิเบอร์ตาโดเรส 1999 ของทีมเกรมิโอที่ไม่ผ่านเข้ารอบโคปา คอนเมบอล 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êmio\"",
    "question_en": "What is the copa mercosur 1999 result for team grêmio, who did not qualify for the Copa Libertadores 1999 and Copa Conmebol 1999?",
    "question_th": "ผลการแข่งขันโกปาเมอร์โคซูร์ 1999 ของทีมเกรมิโอที่ไม่ผ่านเข้ารอบโคปาลิเบอร์ตาโดเรส 1999 และโกปา คอนเมโบล 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_en": "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?",
    "question_th": "อะไรคือผลการแข่งขันอินเตอร์คอนติเนนตัลคัพ 1999 ของทีมที่ไม่ผ่านเข้ารอบโคปาลิเบอร์ตาโดเรส 1999 และผ่านเข้ารอบก่อนรองชนะเลิศในโคปาเมอร์โคซูร์ 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_en": "What is the Copa Libertadores 1999 result for team vasco, which made the group stage in the Copa Mercosur 1999?",
    "question_th": "ผลการแข่งขันโคปาลิเบอร์ตาโดเรส 1999 ของทีมวาสโก ที่ได้ผ่านเข้ารอบแบ่งกลุ่มในโคปา เมอร์โคซูร์ 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_en": "What is the Intercontinental Cup 1999 result for the team with a Copa Conmebol 1999 result of runner-up?",
    "question_th": "ผลการแข่งขันอินเตอร์คอนติเนนตัล คัพ 1999 ของทีมที่รองแชมป์โคปา คอนเมบอล 1999 คืออะไร?",
    "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_en": "What is the Copa Conmebol 1999 result of team cruzeiro, which did not qualify for the Copa Libertadores 1999?",
    "question_th": "ผลการแข่งขันโคปา คอนเมโบล 1999 ของทีมครูไซโร่ ที่ไม่ผ่านเข้ารอบโคปา ลิเบอร์ตาโดเรส 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_en": "How many people attended the game that lost 2-4 and the date was higher than 15?",
    "question_th": "มีกี่คนที่เข้าร่วมเกมที่แพ้ 2-4 และวันที่สูงกว่า 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_en": "What kind of competition had an attendance of more than 914 people and the Wightlink Raiders as an opponent?",
    "question_th": "การแข่งขันประเภทใดที่มีผู้เข้าร่วมมากกว่า 914 คน และมี Wightlink Raiders เป็นคู่ต่อสู้?",
    "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_en": "How many people attended the away league competition with a date of 22?",
    "question_th": "มีคนเข้าร่วมการแข่งขันลีกเยือนด้วยวันที่ 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_en": "Which Series has a Date of may 2?",
    "question_th": "ซีรีย์ใดมีวันที่ 2 พฤษภาคม?",
    "context": "CREATE TABLE table_name_7 (series VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT SUM(game) FROM table_name_30 WHERE series = \"bruins lead 3–1\"",
    "question_en": "Which Game has a Series of bruins lead 3–1?",
    "question_th": "เกมใดที่มีซีรีส์บรูอินนำ 3–1?",
    "context": "CREATE TABLE table_name_30 (game INTEGER, series VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_91 WHERE series = \"bruins lead 2–1\"",
    "question_en": "Which Opponent has a Series of bruins lead 2–1?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีซีรีส์ของบรูอินส์นำ 2–1?",
    "context": "CREATE TABLE table_name_91 (opponent VARCHAR, series VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_33 WHERE game = 4",
    "question_en": "Which Date has a Game of 4?",
    "question_th": "วันไหนที่มีเกม 4?",
    "context": "CREATE TABLE table_name_33 (date VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT SUM(game) FROM table_name_19 WHERE score = \"3–6\"",
    "question_en": "Which Game has a Score of 3–6?",
    "question_th": "เกมใดมีคะแนน 3–6?",
    "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_en": "What is the Rank of industrial and commercial bank of china 277,236?",
    "question_th": "อันดับของธนาคารอุตสาหกรรมและพาณิชย์ของจีน 277,236 คืออะไร?",
    "context": "CREATE TABLE table_name_1 (rank VARCHAR, first_quarter VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_11 WHERE goal = 4",
    "question_en": "What was result of goal 4?",
    "question_th": "ผลลัพธ์ของเป้าหมายที่ 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_en": "Who is the player that is part of the team Shawinigan Dynamos (Qmjhl)?",
    "question_th": "นักเตะคนใดของทีม 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_en": "What is the highest round for the Minnesota Junior Stars (Mjhl)?",
    "question_th": "รอบที่สูงที่สุดสำหรับ 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_en": "When did woking compete?",
    "question_th": "Woking แข่งขันเมื่อไหร่?",
    "context": "CREATE TABLE table_name_92 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_65 WHERE attendance = 375",
    "question_en": "Which Opponent has an Attendance of 375?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีผู้เข้าร่วม 375 คน?",
    "context": "CREATE TABLE table_name_65 (opponent VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT SUM(attendance) FROM table_name_58 WHERE opponent = \"oxford united\"",
    "question_en": "How much Attendance has an Opponent of oxford united?",
    "question_th": "ฝ่ายตรงข้ามของอ็อกซ์ฟอร์ดยูไนเต็ดมีผู้เข้าร่วมงานมากเพียงใด?",
    "context": "CREATE TABLE table_name_58 (attendance INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_78 WHERE opponent = \"crawley town\"",
    "question_en": "Which Attendance has an Opponent of crawley town?",
    "question_th": "ผู้เข้าร่วมคนใดมีฝ่ายตรงข้ามของเมืองครอว์ลีย์?",
    "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_en": "How many Podiums where their total for the Series of Macau grand prix, as well as being a season before 2008?",
    "question_th": "มีกี่โพเดียมที่มียอดรวมสำหรับ Series of Macau grand prix รวมถึงเป็นฤดูกาลก่อนปี 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_en": "How many wins where there total for Series named formula 3 euro series as well as having more than 2 Podiums?",
    "question_th": "ซีรีส์ชื่อสูตร 3 ยูโรมีชัยชนะทั้งหมดกี่รายการและมีโพเดียมมากกว่า 2 โพเดียม",
    "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_en": "What is the largest amount of wins that was before the 2007 season, as well as the Team being silverstone motorsport academy?",
    "question_th": "อะไรคือชัยชนะที่มากที่สุดก่อนฤดูกาล 2007 และทีมที่เป็นสถาบันกีฬามอเตอร์สปอร์ตซิลเวอร์สโตนคือเท่าใด",
    "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_en": "What is the newest Season in which had 0 Podiums, and having 1 total of Races, as well as total wins larger than 0?",
    "question_th": "ฤดูกาลใหม่ล่าสุดคืออะไรที่มี 0 โพเดียม และมีการแข่งขันทั้งหมด 1 รายการ และชัยชนะรวมมากกว่า 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_en": "Name the week for december 4, 2009",
    "question_th": "ตั้งชื่อสัปดาห์สำหรับวันที่ 4 ธันวาคม 2009",
    "context": "CREATE TABLE table_name_80 (week VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_19 WHERE record = \"6-2\"",
    "question_en": "Name the opponent with record of 6-2",
    "question_th": "ตั้งชื่อคู่ต่อสู้ด้วยสถิติ 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_en": "Name the opponent with result of w 35-21",
    "question_th": "ตั้งชื่อคู่ต่อสู้ด้วยผล 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_en": "Name the date with resultof w 35-7",
    "question_th": "ตั้งชื่อวันที่ด้วยผลลัพธ์ของ 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_en": "Name the date with record of 3-1",
    "question_th": "ตั้งชื่อวันที่ด้วยบันทึก 3-1",
    "context": "CREATE TABLE table_name_33 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_29 WHERE date = \"bye\"",
    "question_en": "Name the week for date of bye",
    "question_th": "ตั้งชื่อสัปดาห์สำหรับวันที่ลาก่อน",
    "context": "CREATE TABLE table_name_29 (week VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT friendly FROM table_name_58 WHERE germany = \"france\"",
    "question_en": "What is the friendly game for Germany of France?",
    "question_th": "เกมกระชับมิตรของเยอรมนี ฝรั่งเศส คืออะไร?",
    "context": "CREATE TABLE table_name_58 (friendly VARCHAR, germany VARCHAR)"
  },
  {
    "answer": "SELECT company FROM table_name_84 WHERE number > 5 AND price = \"$389m\"",
    "question_en": "What company is numbered larger than 5 and priced at $389M?",
    "question_th": "บริษัทใดที่มีหมายเลขมากกว่า 5 และมีราคาอยู่ที่ 389 ล้านเหรียญสหรัฐ",
    "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_en": "Which category was william ivey long a nominee and nominated in?",
    "question_th": "วิลเลียม ไอวีย์ ลอง ได้รับการเสนอชื่อเข้าชิงและได้รับการเสนอชื่อเข้าชิงในประเภทใด",
    "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_en": "What is the half-life discovered in 2003?",
    "question_th": "ครึ่งชีวิตที่ค้นพบในปี 2546 คืออะไร?",
    "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_en": "What is the decay mode of the 265m hs isotope discovered in 1984?",
    "question_th": "โหมดการสลายตัวของไอโซโทป 265m hs ที่ค้นพบในปี 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_en": "What is the Frequency MHz of Trinidad, Colorado?",
    "question_th": "ความถี่ MHz ของตรินิแดด โคโลราโด คืออะไร?",
    "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_en": "What city of license has an ERP W smaller than 500, Class A, and Frequency MHz larger than 89.7?",
    "question_th": "เมืองที่ได้รับใบอนุญาตใดที่มี ERP W น้อยกว่า 500, Class A และความถี่ MHz มากกว่า 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_en": "What is the smallest capacity for Fandok?",
    "question_th": "ความจุที่เล็กที่สุดสำหรับ 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_en": "What is the highest pick number of a defensive back with less than 136 overall points?",
    "question_th": "กองหลังฝ่ายรับที่มีคะแนนรวมน้อยกว่า 136 แต้มเลือกสูงสุดคือข้อใด?",
    "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_en": "What is the lowest pick number of John Scully?",
    "question_th": "หมายเลขเลือกต่ำสุดของ 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_en": "What is the total points with less than 5 games?",
    "question_th": "คะแนนรวมน้อยกว่า 5 เกมเป็นเท่าใด",
    "context": "CREATE TABLE table_name_28 (points VARCHAR, games INTEGER)"
  },
  {
    "answer": "SELECT outcome FROM table_name_34 WHERE venue = \"india open\"",
    "question_en": "What was the outcome for the India Open?",
    "question_th": "ผลการแข่งขันอินเดียโอเพ่นเป็นอย่างไรบ้าง?",
    "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_en": "What was the Outcome at the 1985 India Open?",
    "question_th": "ผลลัพธ์ในการแข่งขันอินเดียโอเพ่นปี 1985 คืออะไร?",
    "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_en": "What was the outcome in 1982 with Kang Haeng-Suk as partner?",
    "question_th": "ผลลัพธ์ในปี 1982 กับคังแฮงซอกเป็นคู่หูเป็นอย่างไรบ้าง?",
    "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_en": "Which Party has a First elected smaller than 1878, and a District of south carolina 3?",
    "question_th": "พรรคใดมีการเลือกตั้งครั้งแรกน้อยกว่าปี 1878 และเขตเซาท์แคโรไลนา 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_en": "Which Result has a First elected of 1876, and a District of south carolina 3?",
    "question_th": "ผลลัพธ์ใดมีการเลือกตั้งครั้งแรกในปี พ.ศ. 2419 และเขตเซาท์แคโรไลนา 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_en": "Which Result has a First elected larger than 1876, and an Incumbent of john s. richardson?",
    "question_th": "ผลลัพธ์ใดมีการเลือกตั้งครั้งแรกมากกว่าปี 1876 และผู้ดำรงตำแหน่งของ john s. ริชาร์ดสัน?",
    "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_en": "Who is the incumbent that is a republican and first elected before 1864?",
    "question_th": "ใครคือผู้ดำรงตำแหน่งที่เป็นพรรครีพับลิกันและได้รับเลือกครั้งแรกก่อนปี พ.ศ. 2407?",
    "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_en": "What district is the democratic Francis C. Le Blond from?",
    "question_th": "ฟรานซิส ซี. เลอ บล็องด์ ผู้เป็นประชาธิปไตยมาจากเขตใด",
    "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_en": "In the Ohio 4 district, that is the first elected date that has a result of re-elected?",
    "question_th": "ในเขตโอไฮโอ 4 นั่นคือวันเลือกตั้งครั้งแรกที่มีผลการเลือกตั้งใหม่หรือไม่?",
    "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_en": "What is the party in Ohio 6 District?",
    "question_th": "งานปาร์ตี้ในเขตโอไฮโอ 6 คืออะไร?",
    "context": "CREATE TABLE table_name_68 (party VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_24 WHERE year = 1994",
    "question_en": "Which To par has a Year of 1994?",
    "question_th": "พาร์ใดมีปี 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_en": "Which Country has a Margin of victory of 2 strokes?",
    "question_th": "ประเทศใดมี Margin ของชัยชนะ 2 จังหวะ?",
    "context": "CREATE TABLE table_name_91 (country VARCHAR, margin_of_victory VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_name_93 WHERE to_par = \"–1\"",
    "question_en": "Which Year is the lowest one that has a To par of –1?",
    "question_th": "ปีไหนเป็นปีต่ำสุดที่มีพาร์ถึง –1?",
    "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 = \"–14\" AND score = 69 - 67 - 69 - 69 = 274",
    "question_en": "Which Margin of victory has a Year larger than 1994, and a To par of –14, and a Score of 69-67-69-69=274?",
    "question_th": "Margin of Victory ใดที่มีปีที่มากกว่าปี 1994 และถึงพาร์ที่ –14 และคะแนน 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_en": "What was the record after the game at the Astrodome?",
    "question_th": "บันทึกหลังจบเกมที่แอสโตรโดมเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_37 (record VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_98 WHERE opponent = \"houston oilers\"",
    "question_en": "What was the record after the game against the Houston Oilers?",
    "question_th": "บันทึกหลังเกมกับฮุสตัน ออยเลอร์สเป็นอย่างไรบ้าง?",
    "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_en": "What is the average total score of Belarus, which had an E score less than 8.2?",
    "question_th": "คะแนนรวมเฉลี่ยของเบลารุสซึ่งมีคะแนน E น้อยกว่า 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_en": "What is the total of the team with a T score greater than 8 and an E score less than 8.4?",
    "question_th": "ผลรวมของทีมที่มีคะแนน T มากกว่า 8 และคะแนน E น้อยกว่า 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_en": "What is the T score of the team with an E score of 6.625?",
    "question_th": "คะแนน T ของทีมที่มีคะแนน E 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_en": "What is the total of Poland, which has an E score greater than 7.725?",
    "question_th": "ผลรวมของโปแลนด์ซึ่งมีคะแนน E มากกว่า 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_en": "What is the total of the team with a T score less than 6.8?",
    "question_th": "ทีมที่มีคะแนน T น้อยกว่า 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_en": "What date has a competition of 2012 afc challenge cup, and dasarath rangasala stadium, kathmandu as the venue?",
    "question_th": "การแข่งขัน AFC Challenge Cup 2012 มีการแข่งขันวันที่ใด โดยมีสนามกีฬา dasarath rangasala เมืองกาฐมา ณ ฑุ เป็นสถานที่จัดการแข่งขัน",
    "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_en": "What opposition do 31.1% of Social Democrats have?",
    "question_th": "31.1% ของพรรคโซเชียลเดโมแครตมีฝ่ายค้านอะไรบ้าง?",
    "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_en": "Which Position has a Round larger than 14, and a School/Club Team of north texas?",
    "question_th": "ตำแหน่งใดที่มีรอบมากกว่า 14 และทีมโรงเรียน/สโมสรของเท็กซัสตอนเหนือ",
    "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_en": "Which Round has a Player of anthony christnovich?",
    "question_th": "รอบไหนมีผู้เล่นของ แอนโทนี่ คริสโนวิช?",
    "context": "CREATE TABLE table_name_72 (round VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MIN(round) FROM table_name_20 WHERE school_club_team = \"virginia\"",
    "question_en": "Which Round is the lowest one that has a School/Club Team of virginia?",
    "question_th": "รอบไหนต่ำที่สุดที่มีทีมโรงเรียน/สโมสรเวอร์จิเนีย?",
    "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_en": "What is the name of the leading scorer on 2006-11-22?",
    "question_th": "ผู้ทำประตูสูงสุดในฤดูกาล 2549-11-22 ชื่ออะไร?",
    "context": "CREATE TABLE table_name_5 (leading_scorer VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT leading_scorer FROM table_name_18 WHERE record = \"9–6\"",
    "question_en": "What is the name of the leading scorer when the record was 9–6?",
    "question_th": "ผู้ทำประตูนำเมื่อทำสถิติ 9–6 ชื่ออะไร",
    "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_en": "What is the number of people in Attendance when Visitor was the warriors on 2006-11-04?",
    "question_th": "จำนวนคนที่เข้าร่วมเมื่อผู้มาเยือนเป็นนักรบในวันที่ 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_en": "What is the name of the visitor on 2006-11-04?",
    "question_th": "ผู้เข้าชมในวันที่ 2006-11-04 ชื่ออะไร?",
    "context": "CREATE TABLE table_name_46 (visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT leading_scorer FROM table_name_59 WHERE score = \"89–102\"",
    "question_en": "What is the name of the Leading scorer when the Score was 89–102?",
    "question_th": "ผู้ทำประตูสูงสุดชื่ออะไรเมื่อคะแนนอยู่ที่ 89–102?",
    "context": "CREATE TABLE table_name_59 (leading_scorer VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT SUM(population) FROM table_name_1 WHERE town = \"norton\"",
    "question_en": "How many people live in Norton?",
    "question_th": "มีกี่คนที่อาศัยอยู่ในนอร์ตัน?",
    "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_en": "Which Year has a Borough of harrogate, and a Rank smaller than 6, and a Definition of civil parish?",
    "question_th": "ปีใดที่มีเขตเลือกตั้งของฮาร์โรเกต และอันดับน้อยกว่า 6 และคำจำกัดความของเขตแพ่ง",
    "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_en": "Which Definition has a Rank smaller than 12, and a Town of tadcaster?",
    "question_th": "คำจำกัดความใดมีอันดับน้อยกว่า 12 และเมืองแทดคาสเตอร์?",
    "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_en": "Which Rank is the lowest one that has a Borough of richmondshire, and a Population larger than 8,178?",
    "question_th": "อันดับใดคืออันดับต่ำสุดที่มีเขตเลือกตั้งริชมอนด์เชียร์ และมีประชากรมากกว่า 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_en": "How many bronze medals did Bulgaria receive?",
    "question_th": "บัลแกเรียได้รับเหรียญทองแดงกี่เหรียญ?",
    "context": "CREATE TABLE table_name_1 (bronze VARCHAR, nation VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_28 WHERE player = \"phil mickelson\"",
    "question_en": "What was Phil Mickelson's score to par?",
    "question_th": "ฟิล มิคเคลสันทำสกอร์ได้เท่าไหร่?",
    "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_en": "What name has an overall less than 268, and 1 as the round?",
    "question_th": "ชื่ออะไรมีคะแนนรวมน้อยกว่า 268 และมี 1 เป็นรอบ?",
    "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_en": "How many pick #'s have james britt as the name, with a round greater than 2?",
    "question_th": "มีกี่ตัวเลือก # ที่มีชื่อ james britt โดยมีรอบมากกว่า 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_en": "what is the score on november 15",
    "question_th": "คะแนนวันที่ 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_en": "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?",
    "question_th": "ชัยชนะใดคือชัยชนะสูงสุดที่มีประเทศสหรัฐอเมริกา และผู้เล่นของ andy bean และอันดับน้อยกว่า 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_en": "Which Country has a Rank of 5?",
    "question_th": "ประเทศใดมีอันดับ 5",
    "context": "CREATE TABLE table_name_23 (country VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT MIN(earnings___) AS $__ FROM table_name_12 WHERE rank < 1",
    "question_en": "Which Earnings ($) is the lowest one that has a Rank smaller than 1?",
    "question_th": "รายได้ ($) ใดคือรายได้ต่ำสุดที่มีอันดับน้อยกว่า 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_en": "What is the score of the game on September 13 when the Expos were the opponent?",
    "question_th": "เกมวันที่ 13 ก.ย. เจอกับเอ็กซ์โปเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_49 (score VARCHAR, opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_38 WHERE date = \"september 3\"",
    "question_en": "Who was the opponent on the September 3 game?",
    "question_th": "คู่ต่อสู้ในเกมวันที่ 3 กันยายนคือใคร?",
    "context": "CREATE TABLE table_name_38 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT save FROM table_name_92 WHERE date = \"september 15\"",
    "question_en": "What is the save of the game on September 15?",
    "question_th": "เซฟเกมวันที่ 15 กันยายน คืออะไร?",
    "context": "CREATE TABLE table_name_92 (save VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT game_site FROM table_name_44 WHERE week > 14",
    "question_en": "Which Game site has a Week larger than 14?",
    "question_th": "เว็บไซต์เกมใดที่มีหนึ่งสัปดาห์มากกว่า 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_en": "Which Date has a Game site of jeppesen stadium?",
    "question_th": "วันที่ใดมีเว็บไซต์เกมของสนามกีฬาเจพเพอเซ่น?",
    "context": "CREATE TABLE table_name_27 (date VARCHAR, game_site VARCHAR)"
  },
  {
    "answer": "SELECT game_site FROM table_name_99 WHERE attendance = \"27,189\"",
    "question_en": "Which Game site  has 27,189 Attendances ?",
    "question_th": "เว็บไซต์เกมใดที่มีผู้เข้าร่วม 27,189 คน?",
    "context": "CREATE TABLE table_name_99 (game_site VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_35 WHERE attendance = \"15,557\"",
    "question_en": "When is it has 15,557 Attendances?",
    "question_th": "เมื่อมีผู้เข้าร่วม 15,557 คน?",
    "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_en": "With an Overall less than 171, what is the Round pick of Lance Moon?",
    "question_th": "ด้วยคะแนนรวมน้อยกว่า 171 Lance Moon ตัวเลือก Round คืออะไร?",
    "context": "CREATE TABLE table_name_36 (round INTEGER, name VARCHAR, overall VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_19 WHERE pick__number = 10",
    "question_en": "What is the Name of draft Pick #10?",
    "question_th": "ชื่อของร่างเลือก #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_en": "How many Rounds have a Defensive End Pick?",
    "question_th": "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_en": "What was the time when Shinya Aoki was the opponent?",
    "question_th": "ชินยะ อาโอกิเป็นคู่ต่อสู้ตอนไหน?",
    "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_en": "Which method was used in round 1 with a record of 1-0?",
    "question_th": "ใช้วิธีไหนในรอบ 1 ด้วยสกอร์ 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_en": "Which rank has a team of Suzuki with under 16 points?",
    "question_th": "อันดับไหนมีทีมซูซูกิมีคะแนนต่ำกว่า 16 แต้ม?",
    "context": "CREATE TABLE table_name_96 (rank VARCHAR, team VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_name_79 WHERE rank = \"5th\"",
    "question_en": "Which class has a rank of 5th?",
    "question_th": "คลาสไหนได้อันดับที่ 5",
    "context": "CREATE TABLE table_name_79 (class VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_88 WHERE class = \"500cc\" AND rank = \"16th\"",
    "question_en": "Which team has a class of 500cc and rank of 16th?",
    "question_th": "ทีมไหนมีคลาส 500cc และอันดับที่ 16?",
    "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_en": "Which team has 16 points and ranks 14th?",
    "question_th": "ทีมใดมี 16 คะแนนและอันดับที่ 14?",
    "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_en": "What is the dance that has priscilla presley is the worst dancer(s), and the worst score of 21?",
    "question_th": "การเต้นรำใดที่พริสซิลลา เพรสลีย์เป็นนักเต้นที่แย่ที่สุด และได้คะแนนแย่ที่สุดที่ 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_en": "What is the best score of the dance freestyle?",
    "question_th": "ท่าฟรีสไตล์เต้นได้คะแนนสูงสุดเท่าไร?",
    "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_en": "Which dance has the worst dancer(s) as marissa jaret winokur?",
    "question_th": "การเต้นรำใดที่มีนักเต้นที่แย่ที่สุดอย่างมาริสสา จาเรต วิโนคูร์?",
    "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_en": "Which Points have an Opponent of vancouver canucks?",
    "question_th": "แต้มใดที่มีคู่ต่อสู้ของแวนคูเวอร์คานัค?",
    "context": "CREATE TABLE table_name_91 (points INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(points) FROM table_name_80 WHERE score = \"3–0\"",
    "question_en": "How many Points have a Score of 3–0?",
    "question_th": "มีกี่คะแนนที่มีคะแนน 3–0",
    "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_en": "Which Game has Points smaller than 10, and an October larger than 12, and an Opponent of @ washington capitals?",
    "question_th": "เกมใดมีแต้มน้อยกว่า 10 และเดือนตุลาคมมากกว่า 12 และเป็นฝ่ายตรงข้ามของ @ 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–3\"",
    "question_en": "Which Record has Points larger than 0, and a Score of 7–3?",
    "question_th": "บันทึกใดมีคะแนนมากกว่า 0 และคะแนน 7–3",
    "context": "CREATE TABLE table_name_96 (record VARCHAR, points VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_23 WHERE game > 5",
    "question_en": "On what date was the game more than 5?",
    "question_th": "เกมเกิน 5 วันไหน?",
    "context": "CREATE TABLE table_name_23 (date VARCHAR, game INTEGER)"
  },
  {
    "answer": "SELECT series FROM table_name_4 WHERE date = \"may 16\"",
    "question_en": "Which series was on May 16?",
    "question_th": "ซีรีส์เรื่องไหนในวันที่ 16 พฤษภาคม?",
    "context": "CREATE TABLE table_name_4 (series VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_92 WHERE jurisdiction = \"oregon\"",
    "question_en": "Name the date for oregon jurisdiction",
    "question_th": "ตั้งชื่อวันที่สำหรับเขตอำนาจศาลของรัฐออริกอน",
    "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_en": "Name the john b. anderson for ronald reagan of 43% and phil crane of 0%",
    "question_th": "ตั้งชื่อจอห์น บี. แอนเดอร์สันสำหรับโรนัลด์ เรแกน 43% และฟิล เครน 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_en": "Name the howard bake when bush had 66%",
    "question_th": "ตั้งชื่อฮาวเวิร์ดเบคเมื่อบุชมี 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_en": "Name the george bush for ronald reagan of 43%",
    "question_th": "ตั้งชื่อจอร์จ บุช ให้โรนัลด์ เรแกน 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_en": "Name the howard baker for ronald reagan of 72%",
    "question_th": "ตั้งชื่อฮาวเวิร์ด เบเกอร์ ให้กับโรนัลด์ เรแกน 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_en": "What is the sum of goals for the 2004/05 Season?",
    "question_th": "ผลรวมของประตูในฤดูกาล 2004/05 เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_48 (goals INTEGER, season VARCHAR)"
  },
  {
    "answer": "SELECT MIN(caps) FROM table_name_86 WHERE club = \"sbv excelsior\"",
    "question_en": "What is the lowest caps for the Club of SBV Excelsior?",
    "question_th": "แคปต่ำสุดสำหรับ 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_en": "Which season has Caps lower than 36 for the Club of NAC Breda?",
    "question_th": "ฤดูกาลใดมีแคปต่ำกว่า 36 สำหรับสโมสร 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_en": "Which Opponents in the final have a Partner of daniella dominikovic?",
    "question_th": "คู่ต่อสู้คนไหนในรอบชิงชนะเลิศมีคู่หูของ ดาเนียลลา โดมินิโควิช?",
    "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_en": "Which Date has a Partner of daniella dominikovic?",
    "question_th": "วันไหนมีคู่หูของ Daniella Domininikovic?",
    "context": "CREATE TABLE table_name_33 (date VARCHAR, partner VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_89 WHERE partner = \"pemra özgen\"",
    "question_en": "Which Surface has a Partner of pemra özgen?",
    "question_th": "Surface รุ่นใดมีพันธมิตรของ pemra özgen",
    "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_en": "Which Date has Opponents in the final of valeria casillo lilly raffa?",
    "question_th": "วันไหนที่มีคู่ต่อสู้ในรอบสุดท้ายของ วาเลเรีย กาซิโย ลิลลี ราฟฟา?",
    "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_en": "Which Date has a Partner of daniella dominikovic?",
    "question_th": "วันไหนมีคู่หูของ Daniella Domininikovic?",
    "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_en": "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?",
    "question_th": "สัญชาติอังกฤษ และแมตช์ที่น้อยกว่า 510 และแพ้ 4 และเปอร์เซ็นต์การชนะที่น้อยกว่า 28.6 มีค่าต่ำสุดเท่าไร?",
    "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_en": "Win % larger than 47.1, and a Matches smaller than 145 had what lowest lost?",
    "question_th": "ชนะ % มากกว่า 47.1 และแมตช์ที่น้อยกว่า 145 แพ้น้อยที่สุด?",
    "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_en": "Matches of 15, and a Win % smaller than 20 had what highest lost?",
    "question_th": "การแข่งขัน 15 นัดและ % ชนะน้อยกว่า 20 แพ้สูงสุดอะไร?",
    "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_en": "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?",
    "question_th": "สัญชาติอังกฤษ และแพ้มากกว่า 39 และเปอร์เซ็นต์การชนะที่ 28.7 และเสมอน้อยกว่า 37 มีผลรวมของการแข่งขันเป็นเท่าใด",
    "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_en": "Drawn smaller than 24, and a Lost smaller than 17, and a Win % smaller than 31.25 had how many total number of matches?",
    "question_th": "เสมอน้อยกว่า 24 และแพ้น้อยกว่า 17 และเปอร์เซ็นต์การชนะน้อยกว่า 31.25 มีจำนวนการแข่งขันทั้งหมดกี่นัด?",
    "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_en": "Lost of 18 had what sum of win %?",
    "question_th": "แพ้ 18 มีผลรวมชนะกี่ %?",
    "context": "CREATE TABLE table_name_52 (win__percentage INTEGER, lost VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_20 WHERE record = \"5-31\"",
    "question_en": "When was the score 5-31?",
    "question_th": "คะแนน 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_en": "What is the second leg that has kk bosna?",
    "question_th": "ขาที่สองที่มี 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_en": "What is the 1st leg that has  hapoel jerusalem?",
    "question_th": "ขาแรกที่มีฮาโปเอล เยรูซาเล็ม คืออะไร?",
    "context": "CREATE TABLE table_name_75 (team__number1 VARCHAR)"
  },
  {
    "answer": "SELECT 1 AS st_leg FROM table_name_12 WHERE team__number1 = \"hemofarm\"",
    "question_en": "Which 1st leg that has hemofarm?",
    "question_th": "ขาข้างไหนมีฮีโมฟาร์ม?",
    "context": "CREATE TABLE table_name_12 (team__number1 VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_6 WHERE avg_g = 201.3",
    "question_en": "Who averaged 201.3 yards passing per game?",
    "question_th": "ใครส่งบอลเฉลี่ย 201.3 หลาต่อเกม?",
    "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–269–16\" AND effic < 116.9",
    "question_en": "How many players had an Att-Cmp-Int of 143–269–16, and an efficiency of less than 116.9?",
    "question_th": "มีผู้เล่นกี่คนที่มี Att-Cmp-Int ที่ 143–269–16 และมีประสิทธิภาพน้อยกว่า 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_en": "What is the Att-Cmp-Int for the player with a efficiency of 117.4?",
    "question_th": "Att-Cmp-Int สำหรับผู้เล่นที่มีประสิทธิภาพ 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_en": "What is the total number of legs lost of the player with a high checkout less than 76 and less than 3 played?",
    "question_th": "จำนวนขาทั้งหมดที่เสียไปของผู้เล่นที่มีการจ่ายแต้มสูงน้อยกว่า 76 และเล่นน้อยกว่า 3 ครั้งเป็นเท่าใด?",
    "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_en": "What is the Ch1 in the region served by Central Tablelands?",
    "question_th": "Ch1 ในภูมิภาคที่ให้บริการโดย 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_en": "What transmitter location has digital power of 570kw?",
    "question_th": "ตำแหน่งเครื่องส่งสัญญาณใดที่มีกำลังดิจิตอล 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_en": "What year did team Yamaha have 0 wins, a rank of 8th, and more than 22 points?",
    "question_th": "ปีไหนที่ทีมยามาฮ่าชนะ 0 อันดับ 8 และมากกว่า 22 แต้ม?",
    "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_en": "Name the total number of rounds for gina carano",
    "question_th": "ตั้งชื่อจำนวนรอบทั้งหมดสำหรับ 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_en": "What is the difference related to 2 losses and fewer than 10 points?",
    "question_th": "อะไรคือความแตกต่างที่เกี่ยวข้องกับการสูญเสีย 2 ครั้งและน้อยกว่า 10 แต้ม?",
    "context": "CREATE TABLE table_name_51 (points_difference VARCHAR, lost VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT site FROM table_name_94 WHERE opponent = \"iowa\"",
    "question_en": "Where did the game(s) against Iowa take place?",
    "question_th": "เกมกับไอโอวาเกิดขึ้นที่ไหน?",
    "context": "CREATE TABLE table_name_94 (site VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_35 WHERE surface = \"carpet\"",
    "question_en": "What is the Outcome of the Doubles played on Carpet?",
    "question_th": "ผลลัพธ์ของ Doubles ที่เล่นบน Carpet คืออะไร?",
    "context": "CREATE TABLE table_name_35 (outcome VARCHAR, surface VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_26 WHERE partner = \"debbie graham\"",
    "question_en": "What was the Surface during the match with Partner Debbie Graham?",
    "question_th": "Surface คืออะไรระหว่างการแข่งขันกับคู่หู 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_en": "What was the Partner on February 23, 1997?",
    "question_th": "พันธมิตรคืออะไรเมื่อวันที่ 23 กุมภาพันธ์ พ.ศ. 2540",
    "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_en": "What was the Tournament on May 24, 1992 played on a Clay Surface?",
    "question_th": "การแข่งขันเมื่อวันที่ 24 พฤษภาคม 1992 จัดขึ้นบนดินเหนียวคืออะไร?",
    "context": "CREATE TABLE table_name_64 (tournament VARCHAR, surface VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_40 WHERE score = \"7–5, 6–7, 4–6\"",
    "question_en": "What was the Surface in the match with a Score of 7–5, 6–7, 4–6?",
    "question_th": "Surface ในการแข่งขันด้วยคะแนน 7–5, 6–7, 4–6 คืออะไร?",
    "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_en": "What is the frequency MHz in tremonton, utah with a ERP W larger than 30?",
    "question_th": "ความถี่ MHz ในเทรมอนตัน ยูทาห์ ที่มี ERP W ใหญ่กว่า 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_en": "What is k275av call sign's highest erp w?",
    "question_th": "erp w สูงสุดของ k275av คืออะไร?",
    "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_en": "Name the year for american conference semifinals",
    "question_th": "ตั้งชื่อปีสำหรับการประชุมรอบรองชนะเลิศของการประชุมอเมริกัน",
    "context": "CREATE TABLE table_name_96 (year VARCHAR, playoffs VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_name_35 WHERE playoffs = \"quarterfinals\"",
    "question_en": "Name the total number of years for quarterfinals",
    "question_th": "ตั้งชื่อจำนวนปีทั้งหมดสำหรับรอบรองชนะเลิศ",
    "context": "CREATE TABLE table_name_35 (year VARCHAR, playoffs VARCHAR)"
  },
  {
    "answer": "SELECT runner_up FROM table_name_54 WHERE season < 2005",
    "question_en": "Who is the Runner-up that has a Season less than 2005?",
    "question_th": "ใครคือรองชนะเลิศที่มีฤดูกาลน้อยกว่าปี 2005?",
    "context": "CREATE TABLE table_name_54 (runner_up VARCHAR, season INTEGER)"
  },
  {
    "answer": "SELECT MAX(season) FROM table_name_52 WHERE score = \"3 – 3 aet , 4–3 pen\"",
    "question_en": "Which Seasonhas a Score of 3 – 3 aet , 4–3 pen?",
    "question_th": "ฤดูกาลใดมีคะแนน 3 – 3 และ 4–3 ปากกา?",
    "context": "CREATE TABLE table_name_52 (season INTEGER, score VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_31 WHERE score = \"3 – 3 aet , 4–3 pen\"",
    "question_en": "Which Season has a Score of 3 – 3 aet , 4–3 pen",
    "question_th": "ฤดูกาลใดมีคะแนน 3 – 3 และ 4–3 ปากกา",
    "context": "CREATE TABLE table_name_31 (season VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(round) FROM table_name_24 WHERE overall = 211",
    "question_en": "How many rounds had an overall of 211?",
    "question_th": "กี่รอบมีทั้งหมด 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_en": "What is the mean pick number for the cornerback position when the overall is less than 134?",
    "question_th": "หมายเลขเลือกเฉลี่ยสำหรับตำแหน่งกองหลังเมื่อคะแนนรวมน้อยกว่า 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âlcea\" AND 2011 < 371714",
    "question_en": "Which 1956 has a County of vâlcea, and a 2011 smaller than 371714?",
    "question_th": "ปี 1956 ใดมี County of vâlcea และปี 2011 เล็กกว่า 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_en": "Which 2011 is the lowest one that has a 1948 smaller than 15872624, and a 1966 of 263103, and a 1992 larger than 266308?",
    "question_th": "ปี 2011 ใดคือค่าต่ำสุดที่มีปี 1948 เล็กกว่า 15872624 และปี 1966 เป็น 263103 และปี 1992 ใหญ่กว่า 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_en": "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?",
    "question_th": "ปี 1992 ใดเป็นค่าต่ำสุดที่มีปี 1977 เล็กกว่า 385577 และปี 2011 ใหญ่กว่า 340310 และปี 2002 ใหญ่กว่า 300123 และปี 1948 ใหญ่กว่า 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_en": "Which 1977 is the lowest one that has a County of zzz bucharest, and a 2011 smaller than 1883425?",
    "question_th": "ปี 1977 อันไหนต่ำที่สุดที่มีเคาน์ตี zzz บูคาเรสต์ และปี 2011 เล็กกว่า 1883425",
    "context": "CREATE TABLE table_name_23 (county VARCHAR)"
  },
  {
    "answer": "SELECT game_site FROM table_name_23 WHERE attendance = \"54,040\"",
    "question_en": "What is the site of the game that had an attendance of 54,040?",
    "question_th": "เว็บไซต์ของเกมที่มีผู้เข้าชม 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_en": "What is the attendance of the game against the houston oilers?",
    "question_th": "แมตช์กับฮูสตันออยเลอร์สมีผู้ชมเข้าร่วมเท่าไร?",
    "context": "CREATE TABLE table_name_6 (attendance VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_49 WHERE week = 7",
    "question_en": "What was the date of the game on week 7?",
    "question_th": "วันที่ของเกมในสัปดาห์ที่ 7 คืออะไร?",
    "context": "CREATE TABLE table_name_49 (date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_53 WHERE game_site = \"bye\"",
    "question_en": "How many fans attended the game at Bye?",
    "question_th": "มีแฟนบอลมาชมเกมที่ Bye กี่คน?",
    "context": "CREATE TABLE table_name_53 (attendance VARCHAR, game_site VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_12 WHERE location = \"iowa\"",
    "question_en": "Which winner had a location of Iowa?",
    "question_th": "ผู้ชนะคนใดมีที่ตั้งของรัฐไอโอวา",
    "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_en": "Which opponent in the final had a partner of Katarina Srebotnik and a championship of wimbledon (4)?",
    "question_th": "คู่ต่อสู้คนใดในรอบชิงชนะเลิศที่มีคู่ครองของ Katarina Srebotnik และแชมป์วิมเบิลดัน (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_en": "Who was the partner when the championship was us open on a hard surface?",
    "question_th": "ใครคือคู่หูเมื่อเราเปิดการแข่งขันบนพื้นแข็ง?",
    "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–3, 6–2\"",
    "question_en": "What was the surface for Julie Halard when the final score was 6–3, 6–2?",
    "question_th": "พื้นผิวของ Julie Halard เป็นอย่างไรเมื่อคะแนนสุดท้ายคือ 6–3, 6–2",
    "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_en": "What was the outcome when the oppenent was serena williams venus williams and had a hard surface?",
    "question_th": "ผลเป็นอย่างไรเมื่อคู่ต่อสู้คือ เซเรน่า วิลเลียมส์ วีนัส วิลเลียมส์ และมีพื้นผิวแข็ง?",
    "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_en": "How much Played has Drawn of 2, and a Position larger than 3, and Points smaller than 10?",
    "question_th": "จำนวนการเล่นที่เสมอกันคือ 2 และตำแหน่งที่มากกว่า 3 และแต้มน้อยกว่า 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_en": "Which average Against has a Difference of 10, and a Lost smaller than 2?",
    "question_th": "ค่าเฉลี่ยใดต่อที่มีผลต่าง 10 และแพ้น้อยกว่า 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 – 2\" AND date = \"31 january 1903\"",
    "question_en": "How many Attendances have a Result F – A of 0 – 2, and a Date of 31 january 1903?",
    "question_th": "มีผู้เข้าร่วมกี่คนที่มีผล F – A เท่ากับ 0 – 2 และวันที่ 31 มกราคม พ.ศ. 2446",
    "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_en": "How many Attendances on 13 april 1903?",
    "question_th": "มีผู้เข้าร่วมประชุมจำนวนเท่าใดในวันที่ 13 เมษายน พ.ศ. 2446?",
    "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_en": "How many Attendances have a H / A of h on 7 march 1903?",
    "question_th": "มีผู้เข้าร่วมประชุมกี่คนมี H / A ของ h ในวันที่ 7 มีนาคม พ.ศ. 2446",
    "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 – 0\" AND attendance > 30 OFFSET 000",
    "question_en": "Which Opponent has a H / A of a, and a Result F – A of 2 – 0, and a Attendance larger than 30,000?",
    "question_th": "ฝ่ายตรงข้ามคนใดมี H / A เท่ากับ a และผลลัพธ์ F – A เท่ากับ 2 – 0 และมีผู้เข้าร่วมมากกว่า 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_en": "When is The Opponents of lincoln city and a H / A of a?",
    "question_th": "เมื่อใดที่ฝ่ายตรงข้ามของเมืองลินคอล์นและ H / A ของ 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_en": "What is the score for the Dec 11 game?",
    "question_th": "สกอร์เกมวันที่ 11 ธ.ค. เป็นอย่างไร?",
    "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_en": "Which game has an opponent of Phoenix Coyotes and was before Dec 9?",
    "question_th": "เกมไหนมีคู่แข่งอย่าง ฟีนิกซ์ โคโยตี้ และเคยเป็นก่อนวันที่ 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_en": "What is the December game that led to an 11-13-5 record?",
    "question_th": "เกมเดือนธันวาคมที่นำสถิติ 11-13-5 คืออะไร?",
    "context": "CREATE TABLE table_name_9 (december INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_1 WHERE game = 41",
    "question_en": "What was the record after game 41?",
    "question_th": "สถิติหลังเกมที่ 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_en": "Which Overall has a College of florida state, and a Round larger than 2?",
    "question_th": "Overall ใดที่มีวิทยาลัยแห่งรัฐฟลอริดาและรอบที่ใหญ่กว่า 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_en": "How many Picks have a Position of kicker, and an Overall smaller than 137?",
    "question_th": "มีกี่ตัวเลือกที่มีตำแหน่งนักเตะ และคะแนนโดยรวมน้อยกว่า 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_en": "Which Position has a Pick # of 18?",
    "question_th": "ตำแหน่งใดมีการเลือก # จาก 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_en": "Which College has a Round smaller than 7, and a Pick # smaller than 27, and a Name of anthony maddox?",
    "question_th": "วิทยาลัยใดมีรอบที่เล็กกว่า 7 และตัวเลือก # เล็กกว่า 27 และชื่อของ 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_en": "How much Overall has a Pick # larger than 9, and a Round larger than 5?",
    "question_th": "โดยรวมแล้วมี Pick # มากกว่า 9 และรอบที่ใหญ่กว่า 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–16\"",
    "question_en": "Which score was for the Spurs as visitors with record of 35–16?",
    "question_th": "คะแนนใดของสเปอร์สในฐานะผู้มาเยือนด้วยสถิติ 35–16",
    "context": "CREATE TABLE table_name_60 (score VARCHAR, visitor VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_67 WHERE home = \"warriors\"",
    "question_en": "Which record was for Warriors at home?",
    "question_th": "สถิติไหนของ Warriors ในบ้าน?",
    "context": "CREATE TABLE table_name_67 (record VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT original_title FROM table_name_9 WHERE english_title = \"malèna\"",
    "question_en": "English title of malèna had what original title?",
    "question_th": "ชื่อภาษาอังกฤษของ malèna มีชื่อดั้งเดิมว่าอะไร?",
    "context": "CREATE TABLE table_name_9 (original_title VARCHAR, english_title VARCHAR)"
  },
  {
    "answer": "SELECT english_title FROM table_name_79 WHERE original_title = \"возвращение / vozvrashcheniye\"",
    "question_en": "Original title of возвращение / vozvrashcheniye had what English title?",
    "question_th": "ชื่อดั้งเดิมของ возвращение / vozvrashcheniye มีชื่อภาษาอังกฤษว่าอะไร?",
    "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_en": "Director of christophe barratier had what highest year?",
    "question_th": "ผู้อำนวยการของคริสตอฟ บาร์ราเทียร์มีปีสูงสุดอะไร?",
    "context": "CREATE TABLE table_name_3 (year INTEGER, director VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_87 WHERE english_title = \"amélie\"",
    "question_en": "English title of amélie had what year?",
    "question_th": "ชื่อภาษาอังกฤษของ amélie มีปีอะไร?",
    "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_en": "Original title of das leben der anderen had what director?",
    "question_th": "ชื่อดั้งเดิมของ das leben der anderen มีผู้กำกับคนไหน",
    "context": "CREATE TABLE table_name_28 (director VARCHAR, original_title VARCHAR)"
  },
  {
    "answer": "SELECT director FROM table_name_13 WHERE role = \"fred ayres\"",
    "question_en": "Who was the director where the role was Fred Ayres?",
    "question_th": "ใครคือผู้กำกับที่รับบทคือ 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_en": "What was the theatre where Peter P. Peters is the role?",
    "question_th": "โรงละครที่ Peter P. Peters รับบทคือที่ไหน?",
    "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_en": "Who are the Runner(s)-up with a Margin of 1 stroke?",
    "question_th": "ใครคือนักวิ่งที่มีมาร์จิ้น 1 สโตรก?",
    "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_en": "Who are the Runner(s)-up with a Margin of 3 strokes?",
    "question_th": "ใครคือรองชนะเลิศที่มีมาร์จิ้น 3 สโตรก?",
    "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_en": "What is the highest Year with of the open championship?",
    "question_th": "ปีสูงสุดของ Open Championship คืออะไร?",
    "context": "CREATE TABLE table_name_14 (year INTEGER, championship VARCHAR)"
  },
  {
    "answer": "SELECT winning_score FROM table_name_57 WHERE year = 1956",
    "question_en": "What is the Winning score in 1956?",
    "question_th": "คะแนนที่ชนะในปี 1956 คืออะไร?",
    "context": "CREATE TABLE table_name_57 (winning_score VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT winning_score FROM table_name_90 WHERE year = 1965",
    "question_en": "What is the Winning score in 1965?",
    "question_th": "คะแนนที่ชนะในปี 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_en": "What Year had a Runner(s)-up of flory van donck?",
    "question_th": "ฟลอรี่ ฟาน ดอนค์ มีผู้เข้าชิงตำแหน่งรองชนะเลิศในปีใด?",
    "context": "CREATE TABLE table_name_64 (year VARCHAR, runner_s__up VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_72 WHERE region = \"new zealand\"",
    "question_en": "What is the release Date for the Region in New Zealand ?",
    "question_th": "วันที่วางจำหน่ายสำหรับภูมิภาคในนิวซีแลนด์คือเมื่อใด",
    "context": "CREATE TABLE table_name_72 (date VARCHAR, region VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_16 WHERE region = \"new zealand\"",
    "question_en": "What is the release Date for the New Zealand Region?",
    "question_th": "วันที่วางจำหน่ายสำหรับภูมิภาคนิวซีแลนด์คือเมื่อใด",
    "context": "CREATE TABLE table_name_16 (date VARCHAR, region VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_90 WHERE catalogue = \"602517739468\"",
    "question_en": "What is the Date of Catalogue number 602517739468?",
    "question_th": "หมายเลขแคตตาล็อก 602517739468 คือวันที่ใด",
    "context": "CREATE TABLE table_name_90 (date VARCHAR, catalogue VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_name_16 WHERE catalogue = \"1785089\"",
    "question_en": "In what Region was the Catalogue number 1785089 released?",
    "question_th": "แค็ตตาล็อกหมายเลข 1785089 เปิดตัวในภูมิภาคใด",
    "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_en": "Which city of license has a frequency less than 100.1?",
    "question_th": "เมืองใบอนุญาตใดมีความถี่น้อยกว่า 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_en": "What is the ERP W with a call sign at w261cq?",
    "question_th": "ERP W ที่มีสัญญาณเรียกขานที่ 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_en": "What is the average value for ERP W when frequency is more than 100.1?",
    "question_th": "ค่าเฉลี่ยของ ERP W เมื่อความถี่มากกว่า 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_en": "What frequency has call sign w228bg?",
    "question_th": "สัญญาณเรียกขาน 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_en": "What is the average value of ERP W in Beardstown, Illinois for a frequency greater than 93.5?",
    "question_th": "ค่าเฉลี่ยของ ERP W ในเมืองเบียร์ดสทาวน์ รัฐอิลลินอยส์ สำหรับความถี่ที่มากกว่า 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_en": "What was the winning score in 2000?",
    "question_th": "คะแนนที่ชนะในปี 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_en": "Name the weekly rank for sunday, june 14, 2009",
    "question_th": "อันดับรายสัปดาห์ประจำวันอาทิตย์ที่ 14 มิถุนายน 2552",
    "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_en": "Which Pick # is the highest one that has an Overall of 184, and a Round larger than 6?",
    "question_th": "ตัวเลือก # ตัวใดคือตัวสูงสุดที่มีคะแนนรวม 184 และรอบที่มากกว่า 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_en": "How many picks have an Overall of 114?",
    "question_th": "มีกี่ตัวเลือกที่มีคะแนนรวม 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_en": "Which Overall is the highest one that has a Name of daimon shelton, and a Round larger than 6?",
    "question_th": "โดยรวมแล้วอันไหนคืออันที่สูงที่สุดที่มีชื่อ daimon shelton และรอบที่ใหญ่กว่า 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_en": "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?",
    "question_th": "ตัวเลือกใด # คือตัวที่สูงที่สุดที่มีคะแนนรวมมากกว่า 21 และวิทยาลัยนอร์ธแคโรไลนา และรอบที่เล็กกว่า 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_en": "Which Position has an Overall larger than 147, and a Pick # of 21?",
    "question_th": "ตำแหน่งใดมีคะแนนรวมมากกว่า 147 และเลือก # จาก 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_en": "What is cornell's lowest pick number?",
    "question_th": "หมายเลขเลือกต่ำสุดของ Cornell คืออะไร?",
    "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_en": "Which Eviction result has a Net vote of 31.86%?",
    "question_th": "ผลการขับไล่ข้อใดมีคะแนนเสียงสุทธิ 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_en": "Which Nominee has a Vote to Save of 1.98%?",
    "question_th": "ผู้ท้าชิงคนใดมีคะแนนโหวตเพื่อประหยัด 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_en": "Which Vote to Evict has a Vote to Save of 21.22%?",
    "question_th": "การโหวตเพื่อขับไล่ใดที่มีการโหวตเพื่อประหยัด 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_en": "Which Vote to Save has an Eviction # smaller than 14, and a Vote to Evict of 5.42%?",
    "question_th": "Vote to Save ใดที่มี Eviction # น้อยกว่า 14 และ Vote to Evict อยู่ที่ 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_en": "What is the average rank of a nation that had 219,721 in 2012?",
    "question_th": "อันดับเฉลี่ยของประเทศที่มี 219,721 ในปี 2555 คือเท่าไร",
    "context": "CREATE TABLE table_name_6 (rank INTEGER)"
  },
  {
    "answer": "SELECT SUM(round) FROM table_name_93 WHERE pick = 138",
    "question_en": "In what Round was Pick 138?",
    "question_th": "Pick 138 ในรอบใด?",
    "context": "CREATE TABLE table_name_93 (round INTEGER, pick VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_47 WHERE player = \"john crawford\"",
    "question_en": "What is John Crawford's Nationality?",
    "question_th": "สัญชาติของ John Crawford คืออะไร?",
    "context": "CREATE TABLE table_name_47 (nationality VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT erp_w FROM table_name_22 WHERE call_sign = \"k236am\"",
    "question_en": "What is the ERP W for K236AM?",
    "question_th": "ERP W สำหรับ 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_en": "What is the average frequency in MHz for stations with an ERP W of 170?",
    "question_th": "ความถี่เฉลี่ยเป็น MHz สำหรับสถานีที่มี ERP W เท่ากับ 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_en": "What is K236AM's lowest frequency in MHz?",
    "question_th": "ความถี่ต่ำสุดของ K236AM ในหน่วย 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_en": "What class is assigned to frequencies lower than 90.5?",
    "question_th": "คลาสใดถูกกำหนดให้กับความถี่ที่ต่ำกว่า 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_en": "What class is assigned to frequencies larger than 89.3 with an ERP W of 250?",
    "question_th": "คลาสใดถูกกำหนดให้กับความถี่ที่ใหญ่กว่า 89.3 โดยมี ERP W เท่ากับ 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_en": "What did st. louis score at home?",
    "question_th": "เซนต์ทำอะไร หลุยส์สกอร์ในบ้านเหรอ?",
    "context": "CREATE TABLE table_name_11 (score VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_4 WHERE week = 1",
    "question_en": "What was the result of the game on week 1?",
    "question_th": "ผลการแข่งขันในสัปดาห์ที่ 1 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_4 (result VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_34 WHERE week = 13",
    "question_en": "What is the record of the game on week 13?",
    "question_th": "สถิติเกมสัปดาห์ที่ 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_en": "Texas Rate smaller than 32.9, and a U.S. Rate larger than 5.6 is what highest killeen rate?",
    "question_th": "อัตราเท็กซัสน้อยกว่า 32.9 และอัตราของสหรัฐอเมริกาที่มากกว่า 5.6 คืออัตราคิลลีนที่สูงที่สุด",
    "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_en": "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?",
    "question_th": "ความผิดที่รายงานมีขนาดใหญ่กว่า 216 และอัตราของสหรัฐอเมริกาน้อยกว่า 3274 และอัตราเท็กซัสน้อยกว่า 2,688.9 และอาชญากรรมที่เกิดจากอาชญากรรมรุนแรงมีอัตราการฆ่าคนอย่างไร",
    "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_en": "Killeen Rate of 511.6, and a Texas Rate smaller than 314.4 is the lowest reported offenses?",
    "question_th": "อัตราคิลลีนที่ 511.6 และอัตราเท็กซัสที่น้อยกว่า 314.4 เป็นความผิดที่รายงานต่ำที่สุด",
    "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_en": "Tell me the type for category of mouse and attribute of ondblclick",
    "question_th": "บอกประเภทประเภทของเมาส์และคุณลักษณะของ 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_en": "Name the type with cancelable of no and attribute of ondragend",
    "question_th": "ตั้งชื่อประเภทด้วย cancelable ของ no และคุณลักษณะของ ondragend",
    "context": "CREATE TABLE table_name_79 (type VARCHAR, cancelable VARCHAR, attribute VARCHAR)"
  },
  {
    "answer": "SELECT cancelable FROM table_name_25 WHERE attribute = \"onmouseover\"",
    "question_en": "Name the cancelable for onmouseover",
    "question_th": "ตั้งชื่อการยกเลิกสำหรับ onmouseover",
    "context": "CREATE TABLE table_name_25 (cancelable VARCHAR, attribute VARCHAR)"
  },
  {
    "answer": "SELECT bubbles FROM table_name_12 WHERE attribute = \"onscroll\"",
    "question_en": "Name the bubbles for onscroll",
    "question_th": "ตั้งชื่อฟองอากาศสำหรับการเลื่อน",
    "context": "CREATE TABLE table_name_12 (bubbles VARCHAR, attribute VARCHAR)"
  },
  {
    "answer": "SELECT attribute FROM table_name_81 WHERE category = \"mutation\" AND type = \"domcharacterdatamodified\"",
    "question_en": "Name the attribute for mutation and domcharacterdatamodified",
    "question_th": "ตั้งชื่อแอตทริบิวต์สำหรับการกลายพันธุ์และ 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_en": "Who had high rebounds on May 1?",
    "question_th": "วันที่ 1 พ.ค. ใครมีการรีบาวด์สูง?",
    "context": "CREATE TABLE table_name_15 (high_rebounds VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_name_30 WHERE score = \"l 92–116\"",
    "question_en": "What location attendance had a score of l 92–116?",
    "question_th": "การเข้าร่วมสถานที่ใดมีคะแนน l 92–116",
    "context": "CREATE TABLE table_name_30 (location_attendance VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT MAX(gold) FROM table_name_64 WHERE silver < 0",
    "question_en": "What is the gold medal count that has a silver medal count less than 0?",
    "question_th": "เหรียญทองที่นับเหรียญเงินน้อยกว่า 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_en": "What is the average number of students for schools with a pupil to teacher ratio of 25.1?",
    "question_th": "จำนวนนักเรียนโดยเฉลี่ยสำหรับโรงเรียนที่มีอัตราส่วนนักเรียนต่อครูเท่ากับ 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_en": "What is the lowest pupil to teacher ratio for Saratoga schools with smaller than 1213 students?",
    "question_th": "อัตราส่วนนักเรียนต่อครูต่ำสุดสำหรับโรงเรียน Saratoga ที่มีนักเรียนน้อยกว่า 1,213 คนคือเท่าใด",
    "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_en": "What is the highest number of students for schools in Campbell with pupil to teacher ratios over 25?",
    "question_th": "จำนวนนักเรียนสูงสุดสำหรับโรงเรียนในแคมป์เบลล์ที่มีอัตราส่วนนักเรียนต่อครูมากกว่า 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_en": "Name the most rank for wins outdoor larger than 1 and wins indoor less than 0",
    "question_th": "ตั้งชื่ออันดับสูงสุดสำหรับการชนะกลางแจ้งที่มากกว่า 1 และชนะในร่มน้อยกว่า 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_en": "Name the most rank for uk and wins more than 5",
    "question_th": "ตั้งชื่ออันดับสูงสุดสำหรับสหราชอาณาจักรและชนะมากกว่า 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_en": "Name the average wins outdoor with rank more than 4 and wins less than 3 with outdoor wins more than 0",
    "question_th": "ตั้งชื่อค่าเฉลี่ยการชนะกลางแจ้งด้วยอันดับมากกว่า 4 และชนะน้อยกว่า 3 โดยชนะกลางแจ้งมากกว่า 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_en": "Name the most wins total with wins indoor of 0 and wins outdoor of 1 with rank less than 7",
    "question_th": "ตั้งชื่อผลรวมที่ชนะมากที่สุดโดยชนะในร่มที่ 0 และชนะกลางแจ้งที่ 1 โดยมีอันดับน้อยกว่า 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_en": "What was the frame size in 08/87?",
    "question_th": "ขนาดเฟรมในปี 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_en": "What was the print name in 07/87?",
    "question_th": "ชื่อพิมพ์เมื่อ 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_en": "What is the frame size that was nicknamed Grand Central?",
    "question_th": "ขนาดเฟรมที่ได้รับฉายาว่า 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_en": "When was the Little Tavern completed?",
    "question_th": "โรงเตี๊ยมเล็ก ๆ เสร็จสมบูรณ์เมื่อใด?",
    "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_en": "Which 1990-1991 is the average one that has Played of 38, and Points of 40?",
    "question_th": "ปี 1990-1991 ปีไหนคือค่าเฉลี่ยที่เล่นได้ 38 คะแนนและคะแนน 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_en": "Which College/Junior/Club Team  has a Nationality of Canada and Jeff brown?",
    "question_th": "ทีมวิทยาลัย/จูเนียร์/คลับใดมีสัญชาติแคนาดาและเจฟฟ์ บราวน์",
    "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_en": "Which Player has a Hc Cska Moscow (Russia)?",
    "question_th": "ผู้เล่นคนไหนมี Hc Cska Moscow (รัสเซีย)?",
    "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_en": "What is Nationality of daniel goneau?",
    "question_th": "แดเนียล โกโนว์ สัญชาติอะไร",
    "context": "CREATE TABLE table_name_11 (nationality VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_name_12 WHERE class = \"500cc\" AND machine = \"nsr500\"",
    "question_en": "What points have 500cc as a class, and nsr500 as a machine?",
    "question_th": "คะแนนอะไรที่มี 500cc เป็นคลาส และ nsr500 เป็นเครื่องจักร?",
    "context": "CREATE TABLE table_name_12 (points VARCHAR, class VARCHAR, machine VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_name_24 WHERE points = 78",
    "question_en": "How many years have 78 for points?",
    "question_th": "กี่ปีมี 78 คะแนน?",
    "context": "CREATE TABLE table_name_24 (year VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_name_45 WHERE machine = \"nsr250\" AND points > 97",
    "question_en": "What class has nsr250 as the machine, with points greater than 97?",
    "question_th": "รถคลาสไหนมี nsr250 เป็นเครื่อง มีคะแนนเกิน 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_en": "What is the lowest year that have wins greater than 0?",
    "question_th": "ปีต่ำสุดที่ชนะมากกว่า 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_en": "What are the highest points that have a year less than 1992, with wins less than 0?",
    "question_th": "แต้มสูงสุดที่มีปีน้อยกว่า 1992 ชนะน้อยกว่า 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_en": "What was the lowest attendance at a game against the St. Louis Cardinals?",
    "question_th": "ผู้เข้าชมน้อยที่สุดในเกมกับเซนต์หลุยส์ คาร์ดินัลส์คือเท่าใด",
    "context": "CREATE TABLE table_name_91 (attendance INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_name_85 WHERE name = \"milburn\"",
    "question_en": "What district is the parish Milburn in?",
    "question_th": "ตำบลมิลเบิร์น อยู่ในเขตใด?",
    "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_en": "What is the population of the Parish, Plumbland, that had a former local authority of Cockermouth Rural District?",
    "question_th": "จำนวนประชากรของ Parish, Plumbland ซึ่งเคยเป็นหน่วยงานท้องถิ่นของ 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_en": "What is the district for the parish, Brough?",
    "question_th": "ตำบลสำหรับตำบลคืออะไร 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_en": "What year featured lola motorsport as an entrant with over 0 points?",
    "question_th": "ปีใดที่มีโลล่ามอเตอร์สปอร์ตเป็นผู้เข้าแข่งขันด้วยคะแนนมากกว่า 0 คะแนน",
    "context": "CREATE TABLE table_name_44 (year INTEGER, entrant VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_name_40 WHERE engine = \"judd\"",
    "question_en": "When is the earliest year that there's a judd engine?",
    "question_th": "ปีแรกสุดที่มีเครื่องยนต์ judd คือเมื่อไหร่?",
    "context": "CREATE TABLE table_name_40 (year INTEGER, engine VARCHAR)"
  },
  {
    "answer": "SELECT chassis FROM table_name_2 WHERE year = 1989 AND engine = \"cosworth\"",
    "question_en": "What chassis is used in 1989 with a cosworth engine?",
    "question_th": "แชสซีใดที่ใช้ในปี 1989 กับเครื่องยนต์ cosworth?",
    "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_en": "Where was something built earlier than 1858?",
    "question_th": "ของบางอย่างสร้างขึ้นก่อนปี 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_en": "What was built in 1857?",
    "question_th": "สร้างขึ้นในปี 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_en": "Who were the initial owners of Wasco in 1858?",
    "question_th": "ใครคือเจ้าของ Wasco คนแรกในปี พ.ศ. 2401?",
    "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_en": "What was the type of boat built in Port Blakeley",
    "question_th": "เรือที่สร้างขึ้นในพอร์ตเบลคลีย์เป็นประเภทใด",
    "context": "CREATE TABLE table_name_31 (type VARCHAR, where_built VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_33 WHERE location = \"arrowhead stadium\"",
    "question_en": "What is the date of the game at Arrowhead Stadium?",
    "question_th": "เกมที่แอร์โรว์เฮด สเตเดี้ยม ตรงกับวันไหน?",
    "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_en": "Who is the opponent of the game after week 4 on Sun. Nov. 17?",
    "question_th": "ใครคือคู่ต่อสู้ของเกมหลังสัปดาห์ที่ 4 ในวันอาทิตย์ 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_en": "What's the median family income with a household income of $25,583?",
    "question_th": "รายได้เฉลี่ยของครอบครัวที่มีรายได้ครัวเรือนอยู่ที่ 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_en": "What's the $51,914 median household income per capita?",
    "question_th": "รายได้เฉลี่ยของครัวเรือนต่อหัวอยู่ที่ 51,914 ดอลลาร์คือเท่าไร",
    "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_en": "What was the winning score when Steve Stricker was runner-up?",
    "question_th": "สกอร์ชนะเมื่อสตีฟ สตริกเกอร์ได้รองแชมป์คือเท่าไร?",
    "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 = −14(63 - 67 - 73 - 67 = 270)",
    "question_en": "What was the margin of victory when the winning score was −14 (63-67-73-67=270)?",
    "question_th": "อะไรคือส่วนต่างของชัยชนะเมื่อคะแนนชนะคือ −14 (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_en": "Who was the runnerup when the margin of victory was 1 stroke on jan 30, 2000?",
    "question_th": "ใครคือรองชนะเลิศเมื่อได้รับชัยชนะ 1 จังหวะในวันที่ 30 มกราคม พ.ศ. 2543?",
    "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 = −12(66 - 67 - 64 - 71 = 268)",
    "question_en": "What was the margin of victory when the winning score was −12 (66-67-64-71=268)?",
    "question_th": "อะไรคือส่วนต่างของชัยชนะเมื่อคะแนนชนะคือ −12 (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_en": "What day was the margin of victory 1 stroke when the tournament was colonial national invitation?",
    "question_th": "วันไหนที่ขอบแห่งชัยชนะ 1 จังหวะเมื่อทัวร์นาเมนต์ได้รับคำเชิญจากชาติอาณานิคม?",
    "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_en": "What was the winning score for runnerup Greg Norman",
    "question_th": "คะแนนชนะของรองแชมป์ 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_en": "Which Builder has a Pennant number of Q149?",
    "question_th": "ช่างก่อสร้างคนไหนมีชายธงจำนวน Q149?",
    "context": "CREATE TABLE table_name_63 (builder VARCHAR, pennant_number VARCHAR)"
  },
  {
    "answer": "SELECT commissioned FROM table_name_8 WHERE pennant_number = \"q144\"",
    "question_en": "On what date was the ship with a Pennant number of Q144 commissioned?",
    "question_th": "เรือหมายเลขชายธง Q144 เข้าประจำการเมื่อใด",
    "context": "CREATE TABLE table_name_8 (commissioned VARCHAR, pennant_number VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(ordered) FROM table_name_10 WHERE name = \"monge\"",
    "question_en": "How many ships are named Monge?",
    "question_th": "มีเรือกี่ลำที่ชื่อ Monge?",
    "context": "CREATE TABLE table_name_10 (ordered VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT launched FROM table_name_17 WHERE spacecraft = \"mariner 4\"",
    "question_en": "What launched has mariner 4 as the spacecraft?",
    "question_th": "สิ่งที่เปิดตัวมี Mariner 4 เป็นยานอวกาศ?",
    "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_en": "What launched has 158 days (5 months, 8 days) as the time elapsed?",
    "question_th": "อะไรเปิดตัวมี 158 วัน (5 เดือน 8 วัน) ตามเวลาที่ผ่านไป?",
    "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_en": "When was the song by Andy Gibb issued?",
    "question_th": "เพลงของ Andy Gibb ออกเมื่อไหร่?",
    "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_en": "Which Round has a College of stanford, and an Overall smaller than 8?",
    "question_th": "รอบใดมีวิทยาลัยสแตนฟอร์ด และคะแนนรวมน้อยกว่า 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_en": "How many Picks have a College of tennessee, and an Overall smaller than 270?",
    "question_th": "มีวิทยาลัยแห่งรัฐเทนเนสซีให้เลือกกี่แห่งและโดยรวมแล้วน้อยกว่า 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_en": "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?",
    "question_th": "ตัวเลือก # ใดที่ต่ำที่สุดที่มี College of troy state และชื่อของ reggie dwight และคะแนนรวมที่เล็กกว่า 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_en": "What's the smallest amount of earnings when the wins are less than 72 and the rank is more than 3?",
    "question_th": "รายได้ที่น้อยที่สุดเมื่อชนะน้อยกว่า 72 และอันดับมากกว่า 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_en": "What's the smallest amount of earnings when there are more than 18 wins and the rank is 2?",
    "question_th": "รายได้ที่น้อยที่สุดเมื่อชนะมากกว่า 18 ครั้งและอันดับคือ 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_en": "What is the lowest number of losses for a team with more than 0 wins?",
    "question_th": "จำนวนการแพ้ต่ำสุดสำหรับทีมที่ชนะมากกว่า 0 คือเท่าใด?",
    "context": "CREATE TABLE table_name_53 (losses INTEGER, wins INTEGER)"
  },
  {
    "answer": "SELECT AVG(losses) FROM table_name_23 WHERE wins < 0",
    "question_en": "What is the average number of losses for teams with fewer than 0 wins?",
    "question_th": "จำนวนการแพ้โดยเฉลี่ยสำหรับทีมที่ชนะน้อยกว่า 0 เป็นเท่าใด?",
    "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_en": "What is the average number of wins for Runcorn Highfield with more than 0 draws?",
    "question_th": "จำนวนชัยชนะโดยเฉลี่ยของ Runcorn Highfield ที่เสมอมากกว่า 0 คือเท่าใด?",
    "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_en": "What is the lowest number of losses for Nottingham City with fewer than 0 wins?",
    "question_th": "จำนวนการแพ้ต่ำสุดของน็อตติ้งแฮม ซิตี้ โดยชนะน้อยกว่า 0 คือเท่าไร?",
    "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_en": "What is the weight of the player from the Philadelphia 76ers?",
    "question_th": "ผู้เล่นทีม Philadelphia 76ers มีน้ำหนักเท่าไหร่?",
    "context": "CREATE TABLE table_name_53 (weight VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT height FROM table_name_71 WHERE player = \"larry hughes\"",
    "question_en": "What is the height of the player, Larry Hughes?",
    "question_th": "แลร์รี่ ฮิวจ์ส นักเตะส่วนสูงเท่าไหร่?",
    "context": "CREATE TABLE table_name_71 (height VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_41 WHERE to_club = \"blackpool\"",
    "question_en": "What player was moved to Blackpool?",
    "question_th": "นักเตะคนไหนถูกย้ายไปแบล็คพูล?",
    "context": "CREATE TABLE table_name_41 (player VARCHAR, to_club VARCHAR)"
  },
  {
    "answer": "SELECT end_date FROM table_name_99 WHERE to_club = \"celtic\"",
    "question_en": "A player was moved to celtic had an end of what date?",
    "question_th": "นักเตะถูกย้ายไปเซลติก สิ้นสุดวันไหน?",
    "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–17–4\" AND points < 86",
    "question_en": "Which Game is the average one that has a February larger than 20, and a Record of 41–17–4, and Points smaller than 86?",
    "question_th": "เกมใดเป็นเกมเฉลี่ยที่มีเดือนกุมภาพันธ์มากกว่า 20 และมีสถิติ 41–17–4 และมีแต้มน้อยกว่า 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_en": "what country hosted david toms",
    "question_th": "ประเทศไหนเป็นเจ้าภาพเดวิด ทอมส์",
    "context": "CREATE TABLE table_name_94 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_87 WHERE game = 18",
    "question_en": "What was the score for game 18?",
    "question_th": "คะแนนในเกมที่ 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_en": "What is the kickoff time for the game that was at Ralph Wilson Stadium?",
    "question_th": "เวลาคิกออฟของเกมที่สนามราล์ฟ วิลสัน คือเมื่อใด?",
    "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_en": "What is the record for the game against the New England Patriots with a recap?",
    "question_th": "สรุปเกมกับนิว อิงแลนด์ แพทริออตส์ มีสถิติเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_90 (record VARCHAR, nfl_recap VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_52 WHERE week = 11",
    "question_en": "What is the result of the game on week 11?",
    "question_th": "ผลการแข่งขันสัปดาห์ที่ 11 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_52 (result VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_15 WHERE record = \"3-0-2\"",
    "question_en": "Who was the visitor that led to a 3-0-2 record?",
    "question_th": "ใครคือผู้มาเยือนที่นำไปสู่สถิติ 3-0-2?",
    "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_en": "What is the original title of the Gypsy Magic film title used in nomination?",
    "question_th": "ชื่อดั้งเดิมของชื่อภาพยนตร์ Gypsy Magic ที่ใช้ในการเสนอชื่อคืออะไร?",
    "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_en": "Name the builder for number 3",
    "question_th": "ตั้งชื่อผู้สร้างหมายเลข 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_en": "Name the date with works number less than 1673 and number less than 3",
    "question_th": "ตั้งชื่อวันที่ด้วยหมายเลขผลงานน้อยกว่า 1673 และหมายเลขน้อยกว่า 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_en": "Name the builder for 4/1906 and works number more than 199",
    "question_th": "ตั้งชื่อผู้สร้างสำหรับ 4/1906 และผลงานมากกว่า 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_en": "What was the largest number of people in attendance of the game with a W 14-3 result after week 10?",
    "question_th": "จำนวนผู้เข้าร่วมเกมมากที่สุดโดยผลการแข่งขัน W 14-3 หลังจากสัปดาห์ที่ 10 คือเท่าใด",
    "context": "CREATE TABLE table_name_10 (attendance INTEGER, result VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT zares FROM table_name_87 WHERE date = \"may 21–22\"",
    "question_en": "What is the percentage for Zares on May 21–22?",
    "question_th": "เปอร์เซ็นต์ของซาเรสในวันที่ 21–22 พฤษภาคมคือเท่าใด",
    "context": "CREATE TABLE table_name_87 (zares VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT source FROM table_name_37 WHERE desus = \"7%\"",
    "question_en": "What is the source for 7% DeSUS?",
    "question_th": "DeSUS 7% มีแหล่งที่มาจากอะไร",
    "context": "CREATE TABLE table_name_37 (source VARCHAR, desus VARCHAR)"
  },
  {
    "answer": "SELECT source FROM table_name_12 WHERE zares = \"8.6%\"",
    "question_en": "What is the source for Zares at 8.6%?",
    "question_th": "แหล่งที่มาของ Zares ที่ 8.6% คืออะไร?",
    "context": "CREATE TABLE table_name_12 (source VARCHAR, zares VARCHAR)"
  },
  {
    "answer": "SELECT source FROM table_name_7 WHERE date = \"may 25–27\"",
    "question_en": "What is the source corresponding to a date of May 25–27?",
    "question_th": "แหล่งที่มาตรงกับวันที่ 25–27 พฤษภาคมคืออะไร",
    "context": "CREATE TABLE table_name_7 (source VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT song FROM table_name_24 WHERE artist = \"terence trent d'arby\"",
    "question_en": "What song is done by Terence Trent D'Arby?",
    "question_th": "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_en": "What was the Result on October 27, 2002?",
    "question_th": "ผลลัพธ์เมื่อวันที่ 27 ตุลาคม 2545 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_66 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_12 WHERE venue = \"riyadh, saudi arabia\"",
    "question_en": "in riyadh, saudi arabia, what is the score?",
    "question_th": "ที่ริยาด ซาอุดีอาระเบีย คะแนนเป็นเท่าไหร่?",
    "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é_municipality___percentage_ = 5.1 AND entre_ríos_municipality___percentage_ < 0.9",
    "question_en": "Which Pocona Municipality (%) is the lowest one that has a Puerto Villarroel Municipality (%) smaller than 14.6, and a Chimoré Municipality (%) of 5.1, and an Entre Ríos Municipality (%) smaller than 0.9?",
    "question_th": "เทศบาลโปโคนา (%) ใดที่ต่ำที่สุดที่มีเทศบาลปวยร์โตวิลลาร์โรเอล (%) น้อยกว่า 14.6 และเทศบาลชิโมเร (%) 5.1 และเทศบาลเอนเตรริโอส (%) น้อยกว่า 0.9",
    "context": "CREATE TABLE table_name_61 (pocona_municipality___percentage_ INTEGER, entre_ríos_municipality___percentage_ VARCHAR, puerto_villarroel_municipality___percentage_ VARCHAR, chimoré_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_en": "Which Puerto Villarroel Municipality (%) is the lowest one that has an Ethnic group of not indigenous, and a Totora Municipality (%) smaller than 4.4?",
    "question_th": "เทศบาลเปอร์โตวิลลาร์โรเอล (%) ใดที่ต่ำที่สุดที่มีกลุ่มชาติพันธุ์ที่ไม่ใช่ชนพื้นเมือง และเทศบาล Totora (%) น้อยกว่า 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_en": "Which Pocona Municipality (%) has a Puerto Villarroel Municipality (%) larger than 14.6, and a Pojo Municipality (%) smaller than 88.5?",
    "question_th": "เมือง Pocona ใด (%) มีเทศบาล Puerto Villarroel (%) มากกว่า 14.6 และเทศบาล Pojo (%) เล็กกว่า 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é_municipality___percentage_ = 5.1 AND pocona_municipality___percentage_ < 0.2",
    "question_en": "Which Totora Municipality (%) is the highest one that has a Chimoré Municipality (%) of 5.1, and a Pocona Municipality (%) smaller than 0.2?",
    "question_th": "เทศบาล Totora (%) ใดที่สูงที่สุดที่มีเทศบาล Chimoré (%) 5.1 และเทศบาล Pocona (%) น้อยกว่า 0.2",
    "context": "CREATE TABLE table_name_72 (totora_municipality___percentage_ INTEGER, chimoré_municipality___percentage_ VARCHAR, pocona_municipality___percentage_ VARCHAR)"
  },
  {
    "answer": "SELECT AVG(pos) FROM table_name_91 WHERE car__number < 18 AND driver = \"mike skinner\"",
    "question_en": "Which Pos has a Car # smaller than 18, and a Driver of mike skinner?",
    "question_th": "Pos ใดมีรถยนต์ # เล็กกว่า 18 และคนขับของ 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_en": "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?",
    "question_th": "ทีมใดมี Pos ที่มากกว่า 3 และยี่ห้อของ toyota และหมายเลขรถที่เล็กกว่า 59 และคนขับของ 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_en": "Which Pos has a Team of roush fenway racing, and a Car # of 99?",
    "question_th": "ตำแหน่งใดที่มีทีม Roush Fenway Racing และมีรถยนต์หมายเลข 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_en": "Which Car # has a Make of toyota, and a Pos of 7?",
    "question_th": "รถ # คันไหนมียี่ห้อของ toyota และ Pos เท่ากับ 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_en": "Which Pos has a Team of germian racing?",
    "question_th": "ตำแหน่งไหนมีทีมแข่งเจอร์เมียนบ้าง?",
    "context": "CREATE TABLE table_name_68 (pos VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_64 WHERE score = \"2–6\"",
    "question_en": "Which Opponent has a Score of 2–6?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีคะแนน 2–6?",
    "context": "CREATE TABLE table_name_64 (opponent VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT MAX(game) FROM table_name_8 WHERE series = \"flyers win 3–0\"",
    "question_en": "Which Game has a Series of flyers win 3–0? Question 3",
    "question_th": "เกมใดที่มี Series of Flyers ชนะ 3–0 คำถามที่ 3",
    "context": "CREATE TABLE table_name_8 (game INTEGER, series VARCHAR)"
  },
  {
    "answer": "SELECT series FROM table_name_84 WHERE date = \"april 18\"",
    "question_en": "Which Series is on april 18?",
    "question_th": "ซีรีย์ไหนวันที่ 18 เมษายน?",
    "context": "CREATE TABLE table_name_84 (series VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_49 WHERE score = \"9-2\"",
    "question_en": "Name the date with score of 9-2",
    "question_th": "ตั้งชื่อวันที่ด้วยสกอร์ 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_en": "Which Points is the highest one that has a Nationality of aut, and a Name of thomas morgenstern?",
    "question_th": "คะแนนใดมีสัญชาติออโตมากที่สุดและมีชื่อโทมัส มอร์เกนสเติร์น คะแนนใดสูงที่สุด",
    "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_en": "What is the sum of the capacities for Carrigh wind warm that has a size of 0.85 MW and more than 3 turbines?",
    "question_th": "กำลังการผลิตลมอุ่นของคาร์ริห์ที่มีขนาด 0.85 เมกะวัตต์ และกังหันมากกว่า 3 เครื่องรวมกันเป็นเท่าใด",
    "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_en": "What is the size of the windfarm in wexford that has more than 19 turbines and a vendor of Enercon?",
    "question_th": "กังหันลมในเว็กซ์ฟอร์ดที่มีกังหันมากกว่า 19 ตัวและผู้จำหน่าย 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_en": "Who is the turbine vendor for Meenadreen in Donegal county with less than 6 turbines with a size of 0.85 MW?",
    "question_th": "ใครคือผู้จำหน่ายกังหันของ Meenadreen ในเขต Donegal ที่มีกังหันน้อยกว่า 6 ตัวและขนาด 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_en": "What is the population where the rank is higher than 51 and the Median House-hold income is $25,250?",
    "question_th": "ประชากรที่มีอันดับสูงกว่า 51 และรายได้ House Hold เฉลี่ยอยู่ที่ 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_en": "What is the Population where the Median House-hold Income is $25,016?",
    "question_th": "ประชากรที่มีรายได้เฉลี่ยของครัวเรือนอยู่ที่ 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_en": "What is the Number of Households that have a Per Capita Income of $21,345?",
    "question_th": "จำนวนครัวเรือนที่มีรายได้ต่อหัวเท่ากับ 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_en": "What County has a Median Family Income of $79,331?",
    "question_th": "มณฑลใดมีรายได้เฉลี่ยของครอบครัวอยู่ที่ 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_en": "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?",
    "question_th": "สหรัฐอเมริกา ซึ่งมีจำนวนเหรียญรวมน้อยกว่า 171 เหรียญ และเหรียญทองแดงมีจำนวนน้อยกว่า 9 เหรียญ มีเหรียญทองทั้งหมดกี่เหรียญ?",
    "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_en": "How many total gold medals did Australia receive?",
    "question_th": "ออสเตรเลียได้เหรียญทองทั้งหมดกี่เหรียญ?",
    "context": "CREATE TABLE table_name_80 (gold VARCHAR, nation VARCHAR)"
  },
  {
    "answer": "SELECT MAX(bronze) FROM table_name_58 WHERE nation = \"canada\"",
    "question_en": "How many total bronze medals did Canada receive?",
    "question_th": "แคนาดาได้เหรียญทองแดงทั้งหมดกี่เหรียญ?",
    "context": "CREATE TABLE table_name_58 (bronze INTEGER, nation VARCHAR)"
  },
  {
    "answer": "SELECT gold FROM table_name_10 WHERE nation = \"india\"",
    "question_en": "How many total gold medals did India receive?",
    "question_th": "อินเดียได้เหรียญทองทั้งหมดกี่เหรียญ?",
    "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_en": "Which 1997's accompanying 1991 was a when the tournament was the australian open?",
    "question_th": "ปี 1997 ที่เกิดขึ้นในปี 1991 เป็นช่วงที่การแข่งขันออสเตรเลียนโอเพ่น?",
    "context": "CREATE TABLE table_name_57 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 1997 FROM table_name_77 WHERE 1992 = \"1r\" AND 1994 = \"a\"",
    "question_en": "Which 1997's 1992 was 1r when 1994 was a?",
    "question_th": "ปี 1997 ปี 1992 ใดเป็น 1r เมื่อปี 1994 เป็น a?",
    "context": "CREATE TABLE table_name_77 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1995 FROM table_name_61 WHERE tournament = \"french open\"",
    "question_en": "Which 1995's tournament was the French Open?",
    "question_th": "การแข่งขันใดในปี 1995 คือ French Open",
    "context": "CREATE TABLE table_name_61 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 1989 FROM table_name_81 WHERE 1991 = \"1r\" AND 1994 = \"1r\"",
    "question_en": "Which 1989's 1991 and 1994 stats were 1r?",
    "question_th": "สถิติของปี 1989 ในปี 1991 และ 1994 ใดอยู่ที่ 1r",
    "context": "CREATE TABLE table_name_81 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1990 FROM table_name_78 WHERE 1992 = \"3r\"",
    "question_en": "Which 1990s 1992 was 3r?",
    "question_th": "ปี 1990 ปี 1992 ใดคือ 3r?",
    "context": "CREATE TABLE table_name_78 (Id VARCHAR)"
  },
  {
    "answer": "SELECT linda_mccartney FROM table_name_80 WHERE stuart = \"electric guitar\"",
    "question_en": "Which Linda McCartney has a Stuart of electric guitar?",
    "question_th": "Linda McCartney คนไหนที่มีกีตาร์ไฟฟ้า Stuart?",
    "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_en": "Which Whitten has a Stuart of bass, and a Paul McCartney of electric guitar?",
    "question_th": "Whitten คนไหนมีเบสแบบ Stuart และกีตาร์ไฟฟ้าแบบ Paul McCartney",
    "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_en": "Which McIntosh has a Whitten of drums, and a Stuart of bass, and a Paul McCartney of electric guitar?",
    "question_th": "McIntosh คนไหนมีกลอง Whitten และเบส Stuart และกีตาร์ไฟฟ้า Paul McCartney",
    "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_en": "Which Paul McCartney has a Linda McCartney of keyboards?",
    "question_th": "Paul McCartney คนไหนมีคีย์บอร์ดของ Linda McCartney?",
    "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_en": "Which McIntosh has a Stuart of bass, and a Linda McCartney of keyboards or drum?",
    "question_th": "McIntosh ตัวไหนมีเบส Stuart และ Linda McCartney เป็นคีย์บอร์ดหรือกลอง?",
    "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_en": "Which Paul McCartney has a Linda McCartney of keyboards or drum?",
    "question_th": "Paul McCartney คนไหนมีคีย์บอร์ดหรือกลองของ Linda McCartney?",
    "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_en": "What is the largest Grid that has a Bike of honda cbr1000rr, and a Time of +20.848, and a Lap greater than 24?",
    "question_th": "ตารางที่ใหญ่ที่สุดที่มีจักรยานของ honda cbr1000rr และเวลา +20.848 และรอบมากกว่า 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_en": "The nation of denmark has what average total nad more than 0 gold?",
    "question_th": "ประเทศเดนมาร์กมีทองคำรวมมากกว่า 0 โดยเฉลี่ยเท่าใด",
    "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_en": "Switzerland has how many gold and less than 0 silver?",
    "question_th": "สวิตเซอร์แลนด์มีทองคำกี่เหรียญและน้อยกว่า 0 เหรียญเงิน?",
    "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_en": "How many years had a score of 734-5d?",
    "question_th": "กี่ปีมีคะแนน 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_en": "Which venue had a city of Manchester before 2003?",
    "question_th": "สถานที่ใดมีเมืองแมนเชสเตอร์ก่อนปี 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_en": "Which venue had a city of Manchester in 2003?",
    "question_th": "สถานที่ใดมีเมืองแมนเชสเตอร์ในปี 2546",
    "context": "CREATE TABLE table_name_85 (venue VARCHAR, city VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_8 WHERE score = \"734-5d\"",
    "question_en": "Which venue had a score of 734-5d?",
    "question_th": "สนามไหนมีคะแนน 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_en": "What is the average number of top-5s for the major with 5 top-10s and fewer than 12 cuts made?",
    "question_th": "จำนวนเฉลี่ยของ 5 อันดับแรกสำหรับวิชาเอกที่มี 5 อันดับแรกและตัดน้อยกว่า 12 ครั้งเป็นเท่าใด",
    "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_en": "What is the average number of top-10s for the major with 2 top-25s and fewer than 10 cuts made?",
    "question_th": "จำนวนเฉลี่ยของ 10 อันดับแรกสำหรับสาขาวิชาหลักที่มี 25 อันดับแรกและตัดน้อยกว่า 10 ครั้งเป็นเท่าใด",
    "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_en": "What is the total number of top-25s for the major that has 11 top-10s?",
    "question_th": "จำนวนผู้เข้า 25 อันดับแรกสำหรับสาขาวิชาเอกที่มี 11 อันดับแรกทั้งหมดเป็นจำนวนเท่าใด",
    "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_en": "How many total events have cuts made over 12, more than 2 top-5s, and more than 11 top-10s?",
    "question_th": "มีกี่เหตุการณ์ที่ถูกตัดสิทธิ์ใน 12 รายการ, 5 อันดับแรกมากกว่า 2 รายการ และ 10 อันดับแรกมากกว่า 11 รายการ",
    "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_en": "How many total wins are associated with events with 1 top-10?",
    "question_th": "มีชัยชนะทั้งหมดกี่รายการที่เกี่ยวข้องกับกิจกรรมที่มี 1 อันดับแรก 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_en": "What is the average number of cuts made in events with fewer than 1 win and exactly 11 top-10s?",
    "question_th": "จำนวนการตัดเฉือนโดยเฉลี่ยในอีเวนต์ที่ชนะน้อยกว่า 1 ครั้งและติด 10 อันดับแรก 11 ครั้งพอดีคือเท่าใด",
    "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_en": "What week did they have a bye?",
    "question_th": "พวกเขาลาก่อนสัปดาห์ไหน?",
    "context": "CREATE TABLE table_name_52 (week VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_5 WHERE 2006 = \"0-0\"",
    "question_en": "What tournament in 2006 had a score of 0-0?",
    "question_th": "การแข่งขันใดในปี 2549 มีสกอร์ 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_en": "What was the highest number of extra points scored by Albert Herrnstein, when he scored more than 15 points total?",
    "question_th": "จำนวนคะแนนพิเศษสูงสุดที่ Albert Herrnstein ทำได้เมื่อเขาทำคะแนนรวมมากกว่า 15 คะแนนคือเท่าใด",
    "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_en": "How many touchdowns were scored by William Cole?",
    "question_th": "วิลเลียม โคล ทำทัชดาวน์ได้กี่แต้ม?",
    "context": "CREATE TABLE table_name_88 (touchdowns VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_81 WHERE attendance = \"26,236\"",
    "question_en": "For the game with 26,236 attendance, what was the record?",
    "question_th": "เกมที่มีผู้เข้าชม 26,236 คน ทำสถิติเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_81 (record VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_28 WHERE attendance = \"49,222\"",
    "question_en": "What's the record for the game with an attendance of 49,222?",
    "question_th": "สถิติของเกมนี้ด้วยผู้เข้าชม 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_en": "Who had the most rebounds and how many did he have during the game on June 11?",
    "question_th": "ใครรีบาวด์ได้เยอะที่สุดและทำได้กี่คนในเกมวันที่ 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_en": "Who was the leading scorer and how many did he score for the game on June 13?",
    "question_th": "ใครคือผู้ทำประตูสูงสุด และเขาทำประตูได้กี่ประตูในเกมวันที่ 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_en": "What College/Junior/Club Team has Pick 50 before Round 8?",
    "question_th": "ทีมวิทยาลัย/จูเนียร์/คลับใดเลือก 50 ก่อนรอบ 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_en": "What is the highest overall prior to 1996 with a slalom of 39?",
    "question_th": "สถิติโดยรวมสูงสุดก่อนปี 1996 โดยมีสลาลม 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_en": "What is the lowest overall score prior to 1992 with a downhill score of 1?",
    "question_th": "คะแนนรวมต่ำสุดก่อนปี 1992 โดยมีคะแนนดาวน์ฮิลล์ 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_en": "What was her Giant Slalom score when her Overall was greater than 3 and her Super G score was 12?",
    "question_th": "คะแนน Giant Slalom ของเธอเป็นเท่าใดเมื่อคะแนนรวมของเธอมากกว่า 3 และคะแนน Super G ของเธอคือ 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_en": "What was her highest Super G score with a Slalom score of 58 and an Overall larger than 2?",
    "question_th": "คะแนน Super G สูงสุดของเธอคืออะไร โดยมีคะแนนสลาลม 58 และคะแนนรวมมากกว่า 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_en": "What location has the name of Sakakita BS?",
    "question_th": "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_en": "Which location includes Sakakita BS?",
    "question_th": "สถานที่ใดรวมถึง 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_en": "What is the distance from origin in Azumino including Toyoshina IC?",
    "question_th": "ระยะทางจากแหล่งกำเนิดใน Azumino รวมถึง 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_en": "Which district had first elected earlier than 2006 for representation of Broken Arrow, Tulsa?",
    "question_th": "เขตใดที่ได้รับเลือกเป็นครั้งแรกก่อนปี 2549 เพื่อเป็นตัวแทนของ 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_en": "How many values of first elected are for district 16?",
    "question_th": "เขต 16 ที่ได้รับเลือกครั้งแรกมีค่าเท่าใด",
    "context": "CREATE TABLE table_name_91 (first_elected VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT towns_represented FROM table_name_65 WHERE district = \"31\"",
    "question_en": "Which towns are represented in district 31?",
    "question_th": "เมืองใดบ้างที่อยู่ในเขต 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_en": "How many deposits had a Non-Interest Income of 0.9500000000000001 and number of branch/offices less than 17?",
    "question_th": "เงินฝากจำนวนเท่าใดที่มีรายได้ที่ไม่ใช่ดอกเบี้ย 0.9500000000000001 และจำนวนสาขา/สำนักงานน้อยกว่า 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_en": "Which NPL net's bank was citibank?",
    "question_th": "ธนาคาร NPL net ใดที่เป็นธนาคารซิตี้แบงก์",
    "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_en": "Which championship has a winning score of (77-76-74-73=300)?",
    "question_th": "แชมป์รายการไหนมีคะแนนชนะ (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_en": "Which championship has a margin of 8 strokes?",
    "question_th": "แชมป์ไหนมีระยะเผื่อ 8 จังหวะ?",
    "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_en": "What is the 54 holes for The Open Championship (4)?",
    "question_th": "54 หลุมสำหรับ 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_en": "Which Tournament has a 2007 of wta premier 5 tournaments?",
    "question_th": "ทัวร์นาเมนต์ใดที่มีการแข่งขัน wta premier 5 ในปี 2550?",
    "context": "CREATE TABLE table_name_28 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_38 WHERE 2011 = \"nh\"",
    "question_en": "Which Tournament was played in NH in 2011?",
    "question_th": "การแข่งขันใดที่เล่นใน NH ในปี 2554",
    "context": "CREATE TABLE table_name_38 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_21 WHERE 2010 = \"2r\" AND 2011 = \"1r\"",
    "question_en": "Which Tournament has a 2010 of 2r, and a 2011 of 1r?",
    "question_th": "การแข่งขันใดมี 2010 ของ 2r และ 2011 ของ 1r",
    "context": "CREATE TABLE table_name_21 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT MIN(first_issued) FROM table_name_51 WHERE color = \"green\"",
    "question_en": "When was Color of green first issued?",
    "question_th": "Color of green เปิดตัวครั้งแรกเมื่อใด?",
    "context": "CREATE TABLE table_name_51 (first_issued INTEGER, color VARCHAR)"
  },
  {
    "answer": "SELECT MAX(first_issued) FROM table_name_26 WHERE color = \"green\"",
    "question_en": "When was Color of green last issued?",
    "question_th": "Color of green ออกครั้งสุดท้ายเมื่อใด?",
    "context": "CREATE TABLE table_name_26 (first_issued INTEGER, color VARCHAR)"
  },
  {
    "answer": "SELECT reverse FROM table_name_33 WHERE color = \"green\"",
    "question_en": "What reverse has a color of green?",
    "question_th": "ด้านหลังมีสีเขียวอะไรบ้าง?",
    "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ín pío barrios\"",
    "question_en": "How much was a Reverse of guitar of agustín pío barrios before 1998?",
    "question_th": "การย้อนกลับของกีตาร์ของ agustín pío barrios ก่อนปี 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_en": "What is BYU's lowest pick?",
    "question_th": "ตัวเลือกต่ำสุดของ BYU คืออะไร?",
    "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_en": "Which cornerback round has a pick number lower than 26 and an overall higher than 41?",
    "question_th": "Cornerback รอบใดที่มีหมายเลขเลือกต่ำกว่า 26 และคะแนนรวมสูงกว่า 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_en": "What is the overall number for the College of Wyoming?",
    "question_th": "จำนวนโดยรวมของ 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_en": "What is the total round for a wide receiver with an overall of more than 145?",
    "question_th": "รอบรวมสำหรับตัวรับสายกว้างที่มีคะแนนรวมมากกว่า 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_en": "What is College of Ohio State's pick number with an overall lower than 145?",
    "question_th": "หมายเลขเลือกของ College of Ohio State ที่มีคะแนนรวมต่ำกว่า 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_en": "How many are enrolled at 49 Marion with the Warriors as their mascot?",
    "question_th": "มีผู้ลงทะเบียนที่ 49 Marion โดยมี Warriors เป็นตัวนำโชคกี่คน?",
    "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_en": "Where is Terre Haute North located?",
    "question_th": "แตร์โอต นอร์ธ ตั้งอยู่ที่ไหน",
    "context": "CREATE TABLE table_name_35 (location VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT AVG(enrollment) FROM table_name_24 WHERE _number___county = \"41 johnson\"",
    "question_en": "What's the enrollment at 41 Johnson?",
    "question_th": "การลงทะเบียนที่ 41 Johnson เป็นอย่างไรบ้าง",
    "context": "CREATE TABLE table_name_24 (enrollment INTEGER, _number___county VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_56 WHERE mascot = \"greyhounds\"",
    "question_en": "What school has the greyhounds as mascots?",
    "question_th": "โรงเรียนไหนมีสุนัขเกรย์ฮาวด์เป็นมาสคอต?",
    "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_en": "for type diesel-mechanical and configuration b-b, what is the status?",
    "question_th": "สำหรับรุ่นดีเซล-เครื่องกล และรุ่น bb สถานะเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_4 (status VARCHAR, configuration VARCHAR, type VARCHAR)"
  },
  {
    "answer": "SELECT origin FROM table_name_37 WHERE versions = \"tth\"",
    "question_en": "Where is the origin of the tth version?",
    "question_th": "ต้นกำเนิดของเวอร์ชัน tth อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_37 (origin VARCHAR, versions VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_4 WHERE game = 7",
    "question_en": "What is the record of game 7?",
    "question_th": "บันทึกของเกมที่ 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_en": "What is the lowest number of points of the game before game 2 before October 10?",
    "question_th": "แต้มต่ำสุดของเกมก่อนเกม 2 ก่อนวันที่ 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_en": "what team played on july 9",
    "question_th": "ทีมใดเล่นในวันที่ 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_en": "What is the party of re-elected, incumbent Charles H. Grosvenor, who was first elected before 1894?",
    "question_th": "พรรคของชาร์ลส์ เอช. กรอสเวเนอร์ ผู้ดำรงตำแหน่งที่ได้รับเลือกใหม่ ซึ่งได้รับการเลือกตั้งครั้งแรกก่อนปี พ.ศ. 2437 คืออะไร?",
    "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_en": "Who was the incumbent from the Ohio 13 district?",
    "question_th": "ใครเป็นผู้ดำรงตำแหน่งจากเขตโอไฮโอ 13?",
    "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_en": "What is the party of the representative first elected in 1894 from the Ohio 16 district?",
    "question_th": "พรรคของผู้แทนได้รับเลือกครั้งแรกในปี พ.ศ. 2437 จากเขตโอไฮโอ 16 คืออะไร",
    "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_en": "What score has Leicestershire as the opponent after 1906?",
    "question_th": "เลสเตอร์เชียร์เป็นคู่ต่อสู้หลังปี 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_en": "Where in Buxton has 3 runs?",
    "question_th": "ที่ไหนใน Buxton มี 3 วิ่ง?",
    "context": "CREATE TABLE table_name_50 (venue VARCHAR, score VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_97 WHERE year = 1889",
    "question_en": "What city was in 1889?",
    "question_th": "เมืองอะไรในปี 1889?",
    "context": "CREATE TABLE table_name_97 (city VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_42 WHERE city = \"leicester\"",
    "question_en": "What is the score in Leicester?",
    "question_th": "เลสเตอร์สกอร์เท่าไหร่ครับ?",
    "context": "CREATE TABLE table_name_42 (score VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_name_53 WHERE score = \"1 run\"",
    "question_en": "How many years has 1 run?",
    "question_th": "1 วิ่งได้กี่ปีครับ?",
    "context": "CREATE TABLE table_name_53 (year VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT MAX(year) FROM table_name_26 WHERE venue = \"aigburth\"",
    "question_en": "What year was in Aigburth?",
    "question_th": "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_en": "Which season has q145 as its format?",
    "question_th": "ฤดูกาลใดที่มีรูปแบบ q145?",
    "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_en": "What is the average episode number with q146 format?",
    "question_th": "หมายเลขตอนเฉลี่ยในรูปแบบ q146 คือเท่าใด",
    "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_en": "Who is the opponent of Game 1 with a 3-2-0 record?",
    "question_th": "คู่ต่อสู้ของเกมที่ 1 ด้วยสกอร์ 3-2-0 คือใคร?",
    "context": "CREATE TABLE table_name_21 (opponent VARCHAR, game VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_36 WHERE game = 9",
    "question_en": "What is game 9's record?",
    "question_th": "สถิติของเกม 9 คืออะไร?",
    "context": "CREATE TABLE table_name_36 (record VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_53 WHERE record = \"1-1-0\"",
    "question_en": "Who is the opponent of the team with a 1-1-0 record?",
    "question_th": "คู่ต่อสู้ของทีมที่มีสถิติ 1-1-0 คือใคร?",
    "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_en": "What is the 3rd Liga from 2010-11?",
    "question_th": "ลีกาที่ 3 ตั้งแต่ปี 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_en": "What is the 3rd Liga from Game 1 of 0-1 between the years 2008-09?",
    "question_th": "ลีกาที่ 3 จากเกม 1 0-1 ระหว่างปี 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_en": "Which Score in the final has an Outcome of winner, and a Surface of hard (i)?",
    "question_th": "คะแนนใดในรอบชิงชนะเลิศมีผลลัพธ์เป็นผู้ชนะและมีพื้นผิวแข็ง (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_en": "Which Surface has a Partner of jim thomas, and a Date of 2007?",
    "question_th": "Surface ใดมีพันธมิตรของ jim thomas และวันที่ปี 2550",
    "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_en": "What was the Attendance in the game with a Result of won 5-2?",
    "question_th": "ผู้เข้าร่วมในเกมเป็นอย่างไรและผลการแข่งขันชนะ 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_en": "What was the home Competition with Attendance of 1,268?",
    "question_th": "การแข่งขันในบ้านคืออะไรโดยมีผู้เข้าร่วม 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_en": "What school or club team did the player chosen for the Sacramento Monarchs play for?",
    "question_th": "ผู้เล่นเลือกโรงเรียนหรือสโมสรใดให้ราชวงศ์แซคราเมนโตเล่นให้",
    "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_en": "What player was chosen for the Chicago Sky?",
    "question_th": "ผู้เล่นคนใดได้รับเลือกให้เข้าร่วมทีม 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_en": "Which player was picked for the Chicago Sky?",
    "question_th": "ผู้เล่นคนไหนที่ได้รับเลือกให้เข้าร่วมทีม 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_en": "What is the position of the player with a height of 205 and shirt no 8?",
    "question_th": "นักเตะส่วนสูง 205 และเสื้อหมายเลข 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_en": "What is the name of the player who is a height of 182?",
    "question_th": "นักเตะส่วนสูง 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_en": "What is the sum of Gold with Participants that are 4 and a Silver that is smaller than 0?",
    "question_th": "ผลรวมของทองกับผู้เข้าร่วมที่ 4 และเงินที่น้อยกว่า 0 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_81 (gold INTEGER, participants VARCHAR, silver VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_97 WHERE score = \"141–102\"",
    "question_en": "Who was the opponent with a score of 141–102?",
    "question_th": "คู่ต่อสู้ด้วยคะแนน 141–102 คือใคร?",
    "context": "CREATE TABLE table_name_97 (opponent VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_7 WHERE score = \"109–108\"",
    "question_en": "Who was the opponent with a score of 109–108?",
    "question_th": "คู่ต่อสู้ที่มีคะแนน 109–108 คือใคร?",
    "context": "CREATE TABLE table_name_7 (opponent VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_75 WHERE record = \"62–12\"",
    "question_en": "What was the result when the record was 62–12?",
    "question_th": "ผลลัพธ์คืออะไรเมื่อสถิติอยู่ที่ 62–12?",
    "context": "CREATE TABLE table_name_75 (result VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_49 WHERE record = \"58–11\"",
    "question_en": "What was the result with a record of 58–11?",
    "question_th": "ผลลัพธ์ของสถิติ 58–11 คืออะไร?",
    "context": "CREATE TABLE table_name_49 (result VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT MIN(number) FROM table_name_10 WHERE date = \"january 2, 1936\"",
    "question_en": "What's the number of the game played on January 2, 1936?",
    "question_th": "เกมที่เล่นในวันที่ 2 มกราคม พ.ศ. 2479 เป็นจำนวนเท่าใด",
    "context": "CREATE TABLE table_name_10 (number INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_50 WHERE number = 23",
    "question_en": "What's the record of game number 23?",
    "question_th": "เกมหมายเลข 23 มีสถิติเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_50 (record VARCHAR, number VARCHAR)"
  },
  {
    "answer": "SELECT MIN(points) FROM table_name_5 WHERE february < 1",
    "question_en": "How many Points a February smaller than 1 have?",
    "question_th": "เดือนกุมภาพันธ์ที่น้อยกว่า 1 มีกี่คะแนน?",
    "context": "CREATE TABLE table_name_5 (points INTEGER, february INTEGER)"
  },
  {
    "answer": "SELECT COUNT(february) FROM table_name_40 WHERE points = 63 AND score = \"1–2\"",
    "question_en": "How many February days have Points of 63 and a Score of 1–2?",
    "question_th": "กี่วันในเดือนกุมภาพันธ์ที่มีคะแนน 63 และคะแนน 1–2",
    "context": "CREATE TABLE table_name_40 (february VARCHAR, points VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_24 WHERE wins < 2",
    "question_en": "What is the name of the player with less than 2 wins?",
    "question_th": "ผู้เล่นที่ชนะน้อยกว่า 2 ครั้งชื่ออะไร?",
    "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_en": "What is the number of earning for more than 2 wins and less than 25 events?",
    "question_th": "จำนวนรายได้สำหรับการชนะมากกว่า 2 ครั้งและน้อยกว่า 25 รายการเป็นเท่าใด",
    "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_en": "What is the largest events number for more than 2 wins and less than $446,893 in earnings?",
    "question_th": "หมายเลขเหตุการณ์ที่ใหญ่ที่สุดสำหรับการชนะมากกว่า 2 ครั้งและรายได้น้อยกว่า $446,893 คืออะไร?",
    "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_en": "Who was the visitor at 5:00 pm?",
    "question_th": "ใครคือแขกที่มาเยี่ยมเวลา 17.00 น.?",
    "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_en": "Who was the visitor at the pittsburgh penguins at 7:00 pm that had a record of 0-2-2?",
    "question_th": "ใครคือผู้มาเยือนพิตต์สเบิร์ก เพนกวินส์ เวลา 19.00 น. ที่มีสถิติ 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_en": "What is the home in mellon arena at 7:30 pm with a record o 2-5-2?",
    "question_th": "บ้านอะไรในเมลลอน อารีน่า เวลา 19.30 น. ด้วยสถิติ 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_en": "Which average Drawn has Games larger than 7?",
    "question_th": "Drawn โดยเฉลี่ยใดที่มีเกมมากกว่า 7?",
    "context": "CREATE TABLE table_name_29 (drawn INTEGER, games INTEGER)"
  },
  {
    "answer": "SELECT make FROM table_name_58 WHERE pos = 3",
    "question_en": "Which Make has a Pos of 3?",
    "question_th": "ยี่ห้อไหนมี Pos เท่ากับ 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_en": "Which Car # has a Make of toyota, and a Driver of mike skinner, and a Pos larger than 3?",
    "question_th": "รถ # คันไหนมียี่ห้อของ toyota และคนขับของ mike skinner และ Pos ที่ใหญ่กว่า 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_en": "Which Make has a Car # larger than 59?",
    "question_th": "ยี่ห้อไหนมีรถ # ใหญ่กว่า 59?",
    "context": "CREATE TABLE table_name_48 (make VARCHAR, car__number INTEGER)"
  },
  {
    "answer": "SELECT results¹ FROM table_name_65 WHERE type_of_game = \"euro '64 qualifying\"",
    "question_en": "What was the result of the Euro '64 qualifying game?",
    "question_th": "ผลการแข่งขันยูโร 64 รอบคัดเลือก เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_65 (results¹ VARCHAR, type_of_game VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_64 WHERE type_of_game = \"euro '64 qualifying\"",
    "question_en": "What is the date of the Euro '64 qualifying game?",
    "question_th": "เกมคัดเลือกยูโร 64 วันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_64 (date VARCHAR, type_of_game VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_26 WHERE year = \"1996\"",
    "question_en": "What was the title in 1996?",
    "question_th": "ชื่อเรื่องอะไรในปี 1996?",
    "context": "CREATE TABLE table_name_26 (title VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT role FROM table_name_91 WHERE year = \"2001\"",
    "question_en": "What was the role in 2001?",
    "question_th": "บทบาทในปี 2544 คืออะไร?",
    "context": "CREATE TABLE table_name_91 (role VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT language FROM table_name_68 WHERE title = \"taken\"",
    "question_en": "What language was Taken in?",
    "question_th": "ถ่ายเป็นภาษาอะไร?",
    "context": "CREATE TABLE table_name_68 (language VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_90 WHERE notes = \"8 episodes\"",
    "question_en": "Which title had Notes of 8 episodes?",
    "question_th": "ชื่อเรื่องใดมี Notes จำนวน 8 ตอน",
    "context": "CREATE TABLE table_name_90 (title VARCHAR, notes VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_28 WHERE language = \"portuguese\"",
    "question_en": "Which title is in Portuguese?",
    "question_th": "ชื่อใดเป็นภาษาโปรตุเกส",
    "context": "CREATE TABLE table_name_28 (title VARCHAR, language VARCHAR)"
  },
  {
    "answer": "SELECT role FROM table_name_80 WHERE year = \"1996\"",
    "question_en": "What was the role in 1996?",
    "question_th": "บทบาทในปี 1996 คืออะไร?",
    "context": "CREATE TABLE table_name_80 (role VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT dates_active FROM table_name_78 WHERE storm_name = \"irwin\"",
    "question_en": "what date did the irwin storm take place",
    "question_th": "พายุเออร์วินเกิดขึ้นวันที่เท่าไร",
    "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_en": "what is the minimum force of storm Adrian",
    "question_th": "แรงขั้นต่ำของพายุเอเดรียนคือเท่าใด",
    "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_en": "How many households are in highlands county?",
    "question_th": "เขตไฮแลนด์มีกี่ครัวเรือน?",
    "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_en": "What is the Median household income associated with a median family income of $46,616?",
    "question_th": "รายได้เฉลี่ยของครัวเรือนที่เกี่ยวข้องกับรายได้เฉลี่ยของครอบครัวที่ 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_en": "What time did the game at memorial stadium take place?",
    "question_th": "เกมที่สนามเมมโมเรียล สเตเดี้ยม จัดขึ้นกี่โมง?",
    "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_en": "What is the number of Bronze medals of the Nation with 64 total and silver greater than 16?",
    "question_th": "จำนวนเหรียญทองแดงของประเทศที่มีทั้งหมด 64 เหรียญและเหรียญเงินมากกว่า 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_en": "What is the bronze for Kyrgyzstan nation with a silver record of greater than 0?",
    "question_th": "เหรียญทองแดงสำหรับทีมชาติคีร์กีซสถานที่มีสถิติเงินมากกว่า 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_en": "What is the gold for the nation with a record of bronze 1, Syria nation with a grand total less than 1?",
    "question_th": "เหรียญทองของประเทศที่มีสถิติ 1 เหรียญทองแดง ชาติซีเรียที่มียอดรวมน้อยกว่า 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_en": "When was the game with a result of w 27-24 (ot)?",
    "question_th": "เกมที่ผลสกอร์ 27-24 (โอที) เกิดขึ้นเมื่อใด?",
    "context": "CREATE TABLE table_name_26 (date VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_65 WHERE record = \"9-3\"",
    "question_en": "When was the game with a record of 9-3?",
    "question_th": "เกมที่มีสถิติ 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_en": "What time was the game with a record of 7-3?",
    "question_th": "เกมนี้ด้วยสกอร์ 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_en": "What is the number of weeks where the venue was memorial stadium and the attendance was less than 41,252?",
    "question_th": "จำนวนสัปดาห์ที่สถานที่จัดงานเป็นสนามกีฬาอนุสรณ์และมีผู้เข้าชมน้อยกว่า 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_en": "What is the sum of the weeks that games occured on october 21, 1974 and less than 50,623 fans attended?",
    "question_th": "ผลรวมของสัปดาห์ที่การแข่งขันเกิดขึ้นในวันที่ 21 ตุลาคม พ.ศ. 2517 และมีแฟนบอลเข้าร่วมน้อยกว่า 50,623 คนเป็นเท่าใด",
    "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_en": "What is the frequency of the station that was launched on 21 August 1994?",
    "question_th": "ความถี่ของสถานีที่เปิดเมื่อวันที่ 21 สิงหาคม 2537 คือเท่าใด",
    "context": "CREATE TABLE table_name_97 (frequency VARCHAR, launched VARCHAR)"
  },
  {
    "answer": "SELECT launched FROM table_name_1 WHERE languages = \"cora huichol tepehuano nahuatl\"",
    "question_en": "What is the launched date of the station in cora huichol tepehuano nahuatl language?",
    "question_th": "วันที่เปิดตัวของสถานีในภาษา cora huichol tepehuano nahuatl คือเมื่อใด?",
    "context": "CREATE TABLE table_name_1 (launched VARCHAR, languages VARCHAR)"
  },
  {
    "answer": "SELECT transmitting_from FROM table_name_15 WHERE coverage = \"yucatán quintana roo campeche\"",
    "question_en": "Where is the station with a coverage of yucatán quintana roo campeche transmitting from?",
    "question_th": "สถานีที่มีความครอบคลุมของ yucatán quintana roo campeche ส่งสัญญาณจากที่ไหน?",
    "context": "CREATE TABLE table_name_15 (transmitting_from VARCHAR, coverage VARCHAR)"
  },
  {
    "answer": "SELECT frequency FROM table_name_24 WHERE coverage = \"oaxaca guerrero puebla\"",
    "question_en": "What is the frequency of the station with a coverage of oaxaca guerrero puebla?",
    "question_th": "ความถี่ของสถานีที่มีความครอบคลุม 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_en": "Where is the station that was launched on 17 July 1997 transmitting from?",
    "question_th": "สถานีที่เปิดตัวเมื่อวันที่ 17 กรกฎาคม 2540 ส่งสัญญาณมาจากไหน?",
    "context": "CREATE TABLE table_name_18 (transmitting_from VARCHAR, launched VARCHAR)"
  },
  {
    "answer": "SELECT coverage FROM table_name_83 WHERE launched = \"22 january 1996\"",
    "question_en": "What is the coverage of the station that was launched on 22 January 1996?",
    "question_th": "สถานีที่เปิดให้บริการเมื่อวันที่ 22 มกราคม พ.ศ. 2539 มีความครอบคลุมอย่างไรบ้าง?",
    "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_en": "How many bronzes for the nation ranked 14th, with over 14 golds and over 25 silvers?",
    "question_th": "มีกี่เหรียญทองแดงของประเทศในอันดับที่ 14 โดยมีมากกว่า 14 เหรียญทอง และมากกว่า 25 เหรียญเงิน",
    "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_en": "How many total medals for germany with under 56 bronzes?",
    "question_th": "เยอรมนีได้เหรียญทองแดงต่ำกว่า 56 เหรียญรวมทั้งหมดกี่เหรียญ?",
    "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_en": "How many total medals for the nation with 1 gold and 6 bronzes?",
    "question_th": "ได้ทั้งหมดกี่เหรียญสำหรับชาติ 1 เหรียญทอง 6 เหรียญทองแดง?",
    "context": "CREATE TABLE table_name_52 (total VARCHAR, gold VARCHAR, bronze VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_52 WHERE record = \"32–34\"",
    "question_en": "What was the loss of the game when the record was 32–34?",
    "question_th": "อะไรคือความพ่ายแพ้ของเกมเมื่อสถิติอยู่ที่ 32–34?",
    "context": "CREATE TABLE table_name_52 (loss VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_15 WHERE score = \"15–6\"",
    "question_en": "What was the date of the game with a score of 15–6?",
    "question_th": "แข่งขันวันที่เท่าไหร่ด้วยสกอร์ 15–6?",
    "context": "CREATE TABLE table_name_15 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT frequency FROM table_name_65 WHERE website = \"elmanana.com.mx\"",
    "question_en": "what is the frequency of visits to elmanana.com.mx",
    "question_th": "ความถี่ในการเยี่ยมชม 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_en": "What was the game result against the minnesota vikings?",
    "question_th": "ผลการแข่งขันกับมินนิโซตา ไวกิ้งส์เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_3 (result VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(week) FROM table_name_25 WHERE date = \"december 31, 1993\"",
    "question_en": "What week shows for december 31, 1993?",
    "question_th": "สัปดาห์ใดของวันที่ 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_en": "What was the result on October 4, 1993?",
    "question_th": "ผลลัพธ์เมื่อวันที่ 4 ตุลาคม 2536 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_48 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT SUM(week) FROM table_name_52 WHERE result = \"l 17-14\"",
    "question_en": "What Week has a Result of l 17-14?",
    "question_th": "สัปดาห์ใดมีผล 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_en": "How many years have a position of 2nd?",
    "question_th": "ครองตำแหน่งที่ 2 กี่ปี?",
    "context": "CREATE TABLE table_name_86 (year VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_72 WHERE year = 2000",
    "question_en": "Which event has a year of 2000?",
    "question_th": "เหตุการณ์ใดมีปี พ.ศ. 2543",
    "context": "CREATE TABLE table_name_72 (event VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_7 WHERE notes = \"2:12:53\"",
    "question_en": "What position has notes of 2:12:53?",
    "question_th": "ตำแหน่งใดมีโน้ต 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_en": "What is the average round for draft pick #49 from Notre Dame?",
    "question_th": "รอบเฉลี่ยสำหรับดราฟท์หมายเลข #49 จากนอเทรอดามคือเท่าไร?",
    "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_en": "What college is draft pick #327 from?",
    "question_th": "Draft Pick #327 มาจากวิทยาลัยใด",
    "context": "CREATE TABLE table_name_80 (college VARCHAR, pick__number VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_44 WHERE pick__number = \"268\"",
    "question_en": "What college is pick number 268 from?",
    "question_th": "เลือกหมายเลข 268 มาจากวิทยาลัยใด",
    "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_en": "What round pick was pick number 101 who plays defensive back?",
    "question_th": "การเลือกรอบใดคือการเลือกหมายเลข 101 ที่เล่นเป็นฝ่ายรับ?",
    "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_en": "What pick number was from the college of maryland and was picked in a round larger than 7?",
    "question_th": "หมายเลขตัวเลือกใดที่มาจากวิทยาลัยแมริแลนด์และถูกเลือกในรอบที่ใหญ่กว่า 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_en": "How much Overall has a Pick # of 26?",
    "question_th": "เท่าไหร่โดยรวมมีการเลือก # จาก 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_en": "Which Position has a Round smaller than 14, and a College of illinois?",
    "question_th": "ตำแหน่งใดที่มีรอบน้อยกว่า 14 และวิทยาลัยอิลลินอยส์",
    "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_en": "How much Overall has a Round smaller than 6, and a Pick # of 26?",
    "question_th": "โดยรวมแล้วมีรอบที่เล็กกว่า 6 และเลือก # จาก 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_en": "What is Roy Hall's highest round?",
    "question_th": "รอบสูงสุดของ Roy Hall คืออะไร?",
    "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_en": "How much Overall has a Pick # larger than 2, and a Name of claude humphrey?",
    "question_th": "โดยรวมมีจำนวน Pick # มากกว่า 2 และชื่อของ 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–0\"",
    "question_en": "What is the oppenent when the score was 5–0?",
    "question_th": "ฝ่ายตรงข้ามเมื่อสกอร์เป็น 5–0 คืออะไร?",
    "context": "CREATE TABLE table_name_70 (opponent VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_61 WHERE game < 57 AND score = \"4–5\"",
    "question_en": "What is the opponent before game 57 when the score was 4–5?",
    "question_th": "คู่ต่อสู้คืออะไรก่อนเกม 57 เมื่อสกอร์ 4–5?",
    "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_en": "What is the score when the points are larger than 74 and the game is 57?",
    "question_th": "คะแนนเมื่อแต้มมากกว่า 74 และเกมคือ 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_en": "When is the latest year that an entrant has toro rosso str1 chassis and under 1 point?",
    "question_th": "ปีล่าสุดที่ผู้เข้าร่วมมีแชสซี Toro Rosso str1 และต่ำกว่า 1 คะแนนคือเมื่อใด",
    "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_en": "How many entrants have a mercedes fo 108w 2.4l v8 engine and over 0 points?",
    "question_th": "มีผู้เข้าแข่งขันกี่คนมีเครื่องยนต์ Mercedes fo 108w 2.4l v8 และมากกว่า 0 คะแนน?",
    "context": "CREATE TABLE table_name_4 (year VARCHAR, engine VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT engine FROM table_name_6 WHERE points = 3",
    "question_en": "What is the engine for the car with 3 points?",
    "question_th": "เครื่องยนต์ของรถ 3 จุดมีอะไรบ้าง?",
    "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_en": "Which International tourism expenditure (2012) has an International tourism expenditure (2011) of $33.3 billion?",
    "question_th": "รายจ่ายด้านการท่องเที่ยวระหว่างประเทศใด (2555) มีรายจ่ายด้านการท่องเที่ยวระหว่างประเทศ (2554) อยู่ที่ 33.3 พันล้านดอลลาร์",
    "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_en": "What is Italy's UNWTO region?",
    "question_th": "ภูมิภาค UNWTO ของอิตาลีคืออะไร",
    "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_en": "What is China's  International tourism expenditure (2011)?",
    "question_th": "ค่าใช้จ่ายการท่องเที่ยวระหว่างประเทศของจีน (2554) คืออะไร?",
    "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_en": "What was the format for the 4 disc season that had less than 22 episodes and n/a for region 4?",
    "question_th": "รูปแบบของดิสก์ซีซัน 4 ที่มีน้อยกว่า 22 ตอนและไม่มีสำหรับภูมิภาค 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_en": "What is the lowest Top-25 for the open championship, with a Top-10 larger than 3?",
    "question_th": "อะไรคือ 25 อันดับแรกที่ต่ำที่สุดสำหรับการแข่งขันชิงแชมป์แบบเปิด โดย 10 อันดับแรกมากกว่า 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_en": "What is the highest Top-5 when the Tournament is the open championship, with a Top-25 less than 9?",
    "question_th": "อะไรคือ 5 อันดับแรกสูงสุดเมื่อทัวร์นาเมนต์เป็นการแข่งขันชิงแชมป์แบบเปิด โดยมี 25 อันดับแรกน้อยกว่า 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_en": "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?",
    "question_th": "อะไรคือค่าเฉลี่ยของ 25 อันดับแรกที่มี 10 อันดับแรกน้อยกว่า 7 และทัวร์นาเมนต์คือการแข่งขันชิงแชมป์แบบเปิด โดยมี 5 อันดับแรกมากกว่า 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_en": "What is the total number of Top-5 when the Top-25 is 6, and a Cuts made are less than 12?",
    "question_th": "จำนวนรวมของ 5 อันดับแรกเมื่อ 25 อันดับแรกคือ 6 และการตัดที่ทำได้น้อยกว่า 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_en": "Which date had a home team of the Wizards?",
    "question_th": "นัดเหย้าทีมพ่อมดนัดไหน?",
    "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_en": "What was the latest week with a date of November 12, 1967 and less than 34,761 in attendance?",
    "question_th": "สัปดาห์ล่าสุดคือวันที่ 12 พฤศจิกายน พ.ศ. 2510 และมีผู้เข้าร่วมน้อยกว่า 34,761 คน?",
    "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_en": "What is the date for the game with an opponent of the Houston Oilers from before week 3?",
    "question_th": "เกมกับคู่ต่อสู้ของ Houston Oilers ก่อนสัปดาห์ที่ 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_en": "What is the total for New York's game?",
    "question_th": "ผลรวมของเกมของนิวยอร์กคือเท่าไร?",
    "context": "CREATE TABLE table_name_39 (game INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_71 WHERE college = \"indiana\"",
    "question_en": "What round was a player from Indiana picked?",
    "question_th": "ผู้เล่นจากอินเดียนาเลือกรอบใด",
    "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_en": "How many losses had a total of 17 and more than 10 wins?",
    "question_th": "มีการสูญเสียทั้งหมด 17 ครั้งและชนะมากกว่า 10 ครั้ง?",
    "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_en": "What is the win percentage when there's more than 16 totals and less than 7 losses?",
    "question_th": "เปอร์เซ็นต์การชนะเมื่อมีผลรวมมากกว่า 16 ครั้งและแพ้น้อยกว่า 7 ครั้งเป็นเท่าใด",
    "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_en": "What is the smallest no result when the year was 2012 and there were more than 10 wins?",
    "question_th": "ไม่มีผลลัพธ์ที่น้อยที่สุดในปี 2555 และมีการชนะมากกว่า 10 ครั้งคืออะไร?",
    "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_en": "What is the name on the Socialist ticket when the Democratic ticket is george k. shuler?",
    "question_th": "ชื่อบนตั๋วสังคมนิยมคืออะไร ในเมื่อตั๋วประชาธิปไตยคือจอร์จ เค. ชูเลอร์?",
    "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_en": "What is the name on the Democratic ticket when the Workers ticket is franklin p. brill?",
    "question_th": "ชื่อบนตั๋วประชาธิปไตยคืออะไรเมื่อตั๋วคนงานคือแฟรงคลินพี. เก่งเหรอ?",
    "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_en": "What is the name on the Democratic ticket when the Workers ticket is james p. cannon?",
    "question_th": "ชื่อบนตั๋วประชาธิปไตยคืออะไรเมื่อตั๋วคนงานคือเจมส์พี. ปืนใหญ่?",
    "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_en": "What is the Office when the Republican ticket shows seymour lowman?",
    "question_th": "สำนักงานคืออะไรเมื่อตั๋วของพรรครีพับลิกันแสดงซีมัวร์โลว์แมน?",
    "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_en": "What is the name on the Republican ticket when the Socialist ticket was louis waldman?",
    "question_th": "ชื่อบนตั๋วพรรครีพับลิกันเมื่อตั๋วสังคมนิยมคือ 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_en": "What is the name on the Republican ticket when the Workers ticket is edward lindgren?",
    "question_th": "ชื่อบนตั๋วของพรรครีพับลิกันเมื่อตั๋วคนงานคือ 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_en": "Who's the Democratic ticket with a Socialist Labor ticket of belle j. rosen?",
    "question_th": "ตั๋ว Who's the Democratic กับตั๋ว Socialist Labour ของ belle j. โรเซ่น?",
    "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_en": "Who's the Socialist Labor ticket with a Republican ticket of cuthbert w. pound?",
    "question_th": "ตั๋ว Who's the Socialist Labour กับตั๋วของพรรครีพับลิกันของ Cuthbert W. ปอนด์?",
    "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_en": "Which Office has a Republican ticket of daniel h. conway?",
    "question_th": "สำนักไหนมีตั๋วรีพับลิกันของแดเนียล เอช. คอนเวย์?",
    "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_en": "Who's the Socialist ticket with a Law Preservation ticket of (none), and a Socialist Labor ticket of belle j. rosen?",
    "question_th": "ตั๋ว Who's the Socialist ที่มีตั๋วอนุรักษ์กฎหมายของ (ไม่มี) และตั๋ว Socialist Labour ของ belle j. โรเซ่น?",
    "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_en": "Which Office has a Democratic ticket of herbert h. lehman?",
    "question_th": "สำนักไหนมีตั๋วประชาธิปไตยของเฮอร์เบิร์ต เอช. เลห์แมน?",
    "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_en": "Who's the Socialist ticket with a Socialist Labor ticket of charles m. carlson?",
    "question_th": "ตั๋ว Who's the Socialist กับตั๋ว Socialist Labour ของ Charles M. คาร์ลสัน?",
    "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_en": "Which bowl game has a season greater than 2008, with new orleans, Louisiana as the location?",
    "question_th": "เกมโบว์ลิ่งใดมีฤดูกาลมากกว่าปี 2008 โดยมีเมืองนิวออร์ลีนส์ รัฐลุยเซียนาเป็นสถานที่",
    "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_en": "What result has 1947 sun bowl as the bowl game?",
    "question_th": "ผลลัพธ์อะไรที่ทำให้ 1947 sun bowl เป็นเกมชาม?",
    "context": "CREATE TABLE table_name_81 (result VARCHAR, bowl_game VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_47 WHERE opponent = \"texas longhorns\"",
    "question_en": "What result has texas longhorns as the opponent?",
    "question_th": "ผลที่ได้คือเท็กซัสลองฮอร์นเป็นคู่ต่อสู้?",
    "context": "CREATE TABLE table_name_47 (result VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_60 WHERE attendance = \"51,212\"",
    "question_en": "What location has 51,212 as the attendance?",
    "question_th": "มีผู้เข้าร่วม 51,212 คน ณ สถานที่ใด?",
    "context": "CREATE TABLE table_name_60 (location VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT pictorials FROM table_name_40 WHERE date = \"5-01\"",
    "question_en": "Which Pictorials is on 5-01?",
    "question_th": "ภาพไหนคือวันที่ 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_en": "Which Cover model has a Pictorials of brande roderick-pmoy, naked news?",
    "question_th": "Cover รุ่นไหนมีรูปของ brande roderick-pmoy ข่าวโป๊ บ้างคะ?",
    "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_en": "which Cover model has a Centerfold model of jennifer walcott?",
    "question_th": "Cover รุ่นไหนมีโมเดล Centerfold ของเจนนิเฟอร์ วัลคอตต์?",
    "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_en": "Which Centerfold model has a Cover model of irina voronina?",
    "question_th": "รุ่น Centerfold รุ่นไหนมีรุ่น Cover ของ 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_en": "Which Centerfold model has a Date of 3-01?",
    "question_th": "Centerfold รุ่นใดมีวันที่ 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_en": "What is the score on 15 Aug with a 17:30 time?",
    "question_th": "สกอร์วันที่ 15 ส.ค. เวลา 17.30 น. เป็นเท่าไหร่?",
    "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_en": "What is the total number of round values that had opponents named Paul Sutherland?",
    "question_th": "จำนวนรอบทั้งหมดที่มีคู่ต่อสู้ชื่อ พอล ซัทเธอร์แลนด์ คือเท่าใด",
    "context": "CREATE TABLE table_name_93 (round VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_94 WHERE record = \"10-6\"",
    "question_en": "Which opponent led to a record of 10-6?",
    "question_th": "คู่ต่อสู้คนไหนทำสถิติ 10-6?",
    "context": "CREATE TABLE table_name_94 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT method FROM table_name_61 WHERE record = \"9-4\"",
    "question_en": "Which method led to a record of 9-4?",
    "question_th": "วิธีใดนำไปสู่สถิติ 9-4?",
    "context": "CREATE TABLE table_name_61 (method VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT song FROM table_name_68 WHERE index = \"m6\"",
    "question_en": "What song had an index of m6?",
    "question_th": "เพลงอะไรมีดัชนี 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_en": "For which song was the score 6.5 + 6.0 + 6.0 + 5.5 = 24.0?",
    "question_th": "เพลงไหนได้คะแนน 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_en": "When the played number is less than 8 and against is 23, what is the least amount of points?",
    "question_th": "เมื่อหมายเลขที่เล่นน้อยกว่า 8 และต่อคือ 23 แต้มน้อยที่สุดคือเท่าใด",
    "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_en": "When the corinthians have a position of less than 5, what is the average against?",
    "question_th": "เมื่อโครินเธียนมีตำแหน่งน้อยกว่า 5 ค่าเฉลี่ยเทียบกับอะไร?",
    "context": "CREATE TABLE table_name_58 (against INTEGER, position VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(position) FROM table_name_63 WHERE points < 6",
    "question_en": "What position has less than 6 Points?",
    "question_th": "ตำแหน่งใดมีน้อยกว่า 6 แต้ม?",
    "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_en": "What is the number of against when the difference is 10 and played is greater than 8?",
    "question_th": "อะไรคือจำนวนต่อเมื่อผลต่างคือ 10 และเล่นมากกว่า 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_en": "What was the stake president when the organized date is April 18, 1965?",
    "question_th": "ประธานสเตคคืออะไรเมื่อจัดวันที่ 18 เมษายน ค.ศ. 1965",
    "context": "CREATE TABLE table_name_77 (stake VARCHAR, organized VARCHAR)"
  },
  {
    "answer": "SELECT award FROM table_name_58 WHERE category = \"mercury prize\"",
    "question_en": "What is the name of the award given for the category Mercury Prize?",
    "question_th": "รางวัลที่มอบให้ในประเภท 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_en": "How many years has the Mercury Prize award been given?",
    "question_th": "รางวัล Mercury Prize มอบให้มากี่ปีแล้ว?",
    "context": "CREATE TABLE table_name_47 (year VARCHAR, award VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_name_71 WHERE award = \"mercury prize\"",
    "question_en": "For how many years has the Mercury Prize been awarded?",
    "question_th": "Mercury Prize ได้รับรางวัลมากี่ปีแล้ว?",
    "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_en": "In what year, prior to 2009, was the Mercury Prize awarded?",
    "question_th": "ก่อนปี 2009 มีการมอบรางวัล Mercury Prize ในปีใด",
    "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_en": "What is the lowest Points when against is 50, and there are less than 20 played?",
    "question_th": "อะไรคือคะแนนต่ำสุดเมื่อเทียบกับ 50 และมีการเล่นน้อยกว่า 20?",
    "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_en": "What is the average Position with less than 57 against and the team is Juventus?",
    "question_th": "ตำแหน่งเฉลี่ยที่น้อยกว่า 57 ต่อและทีมคือยูเวนตุสคือเท่าไร?",
    "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_en": "What is the highest Position when the against is less than 41, and lost is more than 7?",
    "question_th": "ตำแหน่งสูงสุดเมื่อฝ่ายตรงข้ามน้อยกว่า 41 และแพ้มากกว่า 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_en": "What is the average Lost when there are 57 against?",
    "question_th": "ค่าเฉลี่ยที่แพ้เมื่อมี 57 ต่อคืออะไร?",
    "context": "CREATE TABLE table_name_42 (lost INTEGER, against VARCHAR)"
  },
  {
    "answer": "SELECT MIN(lost) FROM table_name_46 WHERE team = \"são paulo railway\" AND points > 21",
    "question_en": "What is the lowest Lost for são paulo railway, Points more than 21?",
    "question_th": "อะไรคือสิ่งที่หายไปต่ำสุดสำหรับรถไฟเซาเปาโล คะแนนมากกว่า 21?",
    "context": "CREATE TABLE table_name_46 (lost INTEGER, team VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT unit FROM table_name_29 WHERE location = \"mongolia\"",
    "question_en": "What unit is in Mongolia?",
    "question_th": "ประเทศมองโกเลียมีหน่วยอะไร",
    "context": "CREATE TABLE table_name_29 (unit VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT unit FROM table_name_94 WHERE location = \"argentina\"",
    "question_en": "What unit is in Argentina?",
    "question_th": "อาร์เจนติน่ามีหน่วยอะไร",
    "context": "CREATE TABLE table_name_94 (unit VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_8 WHERE location = \"china\"",
    "question_en": "What name is located in China?",
    "question_th": "ชื่ออะไรในประเทศจีน?",
    "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_en": "What unit is located in China and has Zhou Zhang as an author?",
    "question_th": "หน่วยใดตั้งอยู่ในจีนและมีโจว จางเป็นผู้เขียน",
    "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_en": "What kind of  Manufacturer has a Laps smaller than 20 and a Grid of 21",
    "question_th": "ผู้ผลิตประเภทใดที่มีรอบสนามน้อยกว่า 20 และมีตารางเป็น 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_en": "Which Airline has a Fleet size larger than 17, and a IATA of pr?",
    "question_th": "สายการบินใดที่มีฝูงบินใหญ่กว่า 17 และ IATA เท่ากับ 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_en": "Which ICAO has a Fleet size of 2?",
    "question_th": "ICAO ใดที่มีกองเรือขนาด 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_en": "What is the of Fleet size with a IATA of pr, and a Commenced operations smaller than 1941?",
    "question_th": "ขนาดกองเรือที่มี IATA เป็น pr และเริ่มดำเนินการน้อยกว่าปี 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_en": "Which ICAO has a Commenced operations larger than 2011?",
    "question_th": "ICAO ใดที่มีการเริ่มดำเนินการมากกว่าปี 2554?",
    "context": "CREATE TABLE table_name_72 (icao VARCHAR, commenced_operations INTEGER)"
  },
  {
    "answer": "SELECT status FROM table_name_31 WHERE authors = \"woodruff\"",
    "question_en": "What is the Status with an Author that is woodruff?",
    "question_th": "สถานะของผู้แต่งที่เป็นดุจดังคืออะไร?",
    "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_en": "What is the highest Pick # when the CFL Team is the Toronto Argonauts?",
    "question_th": "ตัวเลือกสูงสุด # คืออะไรเมื่อทีม CFL คือ 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_en": "What is the CFL Team with #48 as the pick number?",
    "question_th": "ทีม CFL ที่มี #48 เป็นหมายเลขเลือกคืออะไร?",
    "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_en": "What is the College with a Position of db, and the CFL Team was Winnipeg Blue Bombers?",
    "question_th": "วิทยาลัยที่มีตำแหน่ง db คืออะไร และทีม CFL คือ 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_en": "What is the CFL Team with Will Grant?",
    "question_th": "ทีม CFL กับ 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_en": "What is the latest year of a gratitude type mission with 99 in the entourage?",
    "question_th": "ปีล่าสุดของภารกิจประเภทกตัญญูโดยมีผู้ติดตาม 99 คนคืออะไร?",
    "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ūkyūan_king = \"shō eki\"",
    "question_en": "Who was the lead envoy of the mission with the Ryūkyūan King shō eki?",
    "question_th": "ใครเป็นทูตนำในภารกิจร่วมกับกษัตริย์ริวคิวอัน โชเอกิ?",
    "context": "CREATE TABLE table_name_62 (lead_envoy VARCHAR, ryūkyūan_king VARCHAR)"
  },
  {
    "answer": "SELECT lead_envoy FROM table_name_10 WHERE ryūkyūan_king = \"shō kei\" AND mission_type = \"congratulation\" AND year = 1718",
    "question_en": "Who was the lead envoy of the congratulation mission in 1718 with the Ryūkyūan King shō kei?",
    "question_th": "ใครเป็นทูตนำในภารกิจแสดงความยินดีกับกษัตริย์ริวคิวอันโชเคในปี ค.ศ. 1718?",
    "context": "CREATE TABLE table_name_10 (lead_envoy VARCHAR, year VARCHAR, ryūkyūan_king VARCHAR, mission_type VARCHAR)"
  },
  {
    "answer": "SELECT lead_envoy FROM table_name_44 WHERE ryūkyūan_king = \"shō kō\"",
    "question_en": "Who was the lead envoy with the Ryūkyūan King shō kō?",
    "question_th": "ใครคือทูตนำของกษัตริย์ริวคิวอัน โชโค?",
    "context": "CREATE TABLE table_name_44 (lead_envoy VARCHAR, ryūkyūan_king VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_59 WHERE date = \"10/20/1979*\"",
    "question_en": "On 10/20/1979*, who was the Opponent?",
    "question_th": "เมื่อวันที่ 20/10/1979* ใครคือฝ่ายตรงข้าม?",
    "context": "CREATE TABLE table_name_59 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT AVG(attendance) FROM table_name_16 WHERE result = \"w 30-23\"",
    "question_en": "What is the average Attendance at a game with a Result of w 30-23?",
    "question_th": "จำนวนผู้เข้าชมเกมโดยเฉลี่ยที่ผลการแข่งขัน 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_en": "What is the lowest Attendance at a game with the Result of w 25-17?",
    "question_th": "อะไรคือจำนวนผู้ชมต่ำสุดในเกมที่มีผลการแข่งขัน 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_en": "What is Score, when Leading Scorer is Tyrone Hill , 20 Points?",
    "question_th": "คะแนนคืออะไร เมื่อผู้ทำประตูสูงสุดคือ Tyrone Hill 20 คะแนน",
    "context": "CREATE TABLE table_name_6 (score VARCHAR, leading_scorer VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_95 WHERE score = \"103-93\"",
    "question_en": "What is Home, when Score is 103-93?",
    "question_th": "บ้านคืออะไร เมื่อสกอร์คือ 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_en": "What is Attendance, when Home is Cleveland, and when Date is January 30?",
    "question_th": "Attendance คืออะไร เมื่อ Home คือ Cleveland และเมื่อใดคือวันที่ 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_en": "What is Leading Scorer, when Attendance is Gund Arena 20,562, and when Record is 20-10?",
    "question_th": "ผู้ทำประตูสูงสุดคืออะไร เมื่อผู้เข้าชมอยู่ที่ Gund Arena 20,562 และเมื่อสถิติอยู่ที่ 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_en": "What is Score, when Date is January 12?",
    "question_th": "Score คืออะไร เมื่อเป็นวันที่ 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_en": "What is Score, when Attendance is Gund Arena 20,562, and when Date is January 27?",
    "question_th": "คะแนนคืออะไร เมื่อผู้เข้าร่วมคือ Gund Arena 20,562 และวันที่คือ 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_en": "What is the sum of Top-10(s), when Cuts made is less than 10, and when Top-5 is less than 0?",
    "question_th": "ผลรวมของ 10 อันดับแรก เมื่อการตัดน้อยกว่า 10 และเมื่อ 5 อันดับแรกน้อยกว่า 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_en": "What is the lowest Top-25, when Events is 10, and when Wins is greater than 0?",
    "question_th": "อะไรคือ 25 อันดับแรกที่ต่ำที่สุด เมื่อเหตุการณ์คือ 10 และเมื่อการชนะมากกว่า 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_en": "What is the lowest Top-5, when Top-25 is less than 4, and when Cuts made is less than 7?",
    "question_th": "อะไรคือค่าต่ำสุดของ Top-5 เมื่อ Top-25 น้อยกว่า 4 และเมื่อ Cuts ทำได้น้อยกว่า 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_en": "What is the Height of Junior Meghan Austin?",
    "question_th": "ความสูงของจูเนียร์เมแกนออสตินคืออะไร?",
    "context": "CREATE TABLE table_name_59 (height VARCHAR, year VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_46 WHERE name = \"martina wood\"",
    "question_en": "What is Martina Wood's Position?",
    "question_th": "ตำแหน่งของ Martina Wood คืออะไร?",
    "context": "CREATE TABLE table_name_46 (position VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_91 WHERE home_town = \"charlotte, nc\"",
    "question_en": "What is the Name of the Player from Charlotte, NC?",
    "question_th": "ชื่อผู้เล่นจาก 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_en": "What is 6-2 Martina Wood's Position?",
    "question_th": "ตำแหน่งของ มาร์ติน่า วู้ด 6-2 คืออะไร?",
    "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_en": "What is the Position of the Player from Temple Hills, MD?",
    "question_th": "ตำแหน่งผู้เล่นจาก 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_en": "What is the Name of the Junior from Fayetteville, NC?",
    "question_th": "ชื่อของจูเนียร์จาก 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_en": "What rank has jo angel (wa) as the player?",
    "question_th": "โจ แองเจิล(วา)เป็นผู้เล่นอันดับไหน?",
    "context": "CREATE TABLE table_name_47 (rank VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT average FROM table_name_61 WHERE rank = \"1\"",
    "question_en": "What average has 1 as rhe rank?",
    "question_th": "ค่าเฉลี่ยมี 1 อยู่ในอันดับที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_61 (average VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_80 WHERE player = \"andy bichel (qld)\"",
    "question_en": "What rank has andy bichel (qld) as the player?",
    "question_th": "แอนดี บิเชล (qld) เป็นนักเตะอันดับไหน?",
    "context": "CREATE TABLE table_name_80 (rank VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT average FROM table_name_3 WHERE rank = \"2\"",
    "question_en": "What is the average that has 2 for the rank?",
    "question_th": "ค่าเฉลี่ยที่มี 2 สำหรับอันดับคือเท่าไร?",
    "context": "CREATE TABLE table_name_3 (average VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_46 WHERE average = \"24.21\"",
    "question_en": "What playee has 24.21 as the average?",
    "question_th": "ผู้เล่นคนไหนมีค่าเฉลี่ย 24.21?",
    "context": "CREATE TABLE table_name_46 (player VARCHAR, average VARCHAR)"
  },
  {
    "answer": "SELECT average FROM table_name_31 WHERE s_wicket = \"441\"",
    "question_en": "What is the average that has 441 as wicket?",
    "question_th": "ค่าเฉลี่ยที่มี 441 เป็นประตูคือเท่าไร?",
    "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_en": "What was the year Elected of Republican Incumbent Dave Reichert?",
    "question_th": "ปีที่ได้รับเลือกให้เป็นผู้ดำรงตำแหน่งพรรครีพับลิกัน 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_en": "What were the Results in the Washington 2 District?",
    "question_th": "ผลลัพธ์ในเขตวอชิงตัน 2 คืออะไร?",
    "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_en": "What is the 2008 Candidates Elected before 1994 with Incumbent Jim McDermott?",
    "question_th": "ผู้สมัครปี 2008 ได้รับเลือกก่อนปี 1994 กับผู้ดำรงตำแหน่ง Jim McDermott คืออะไร",
    "context": "CREATE TABLE table_name_18 (elected VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_name_1 WHERE results = \"68% 32%\"",
    "question_en": "Who is the Incumbent with Results of 68% 32%?",
    "question_th": "ใครคือผู้ดำรงตำแหน่งที่มีผลลัพธ์ 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_en": "What District had Republican Incumbent Cathy McMorris?",
    "question_th": "เขตใดมีผู้ดำรงตำแหน่งพรรครีพับลิกัน 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_en": "What was Italy's highest total when there were less than 4 bronze and 1 gold?",
    "question_th": "อะไรคือผลรวมสูงสุดของอิตาลีเมื่อมีน้อยกว่า 4 เหรียญทองแดงและ 1 เหรียญทอง?",
    "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_en": "How many totals had more than 4 bronze?",
    "question_th": "มีทั้งหมดกี่เหรียญที่มีมากกว่า 4 เหรียญทองแดง?",
    "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_en": "What was Austria's lowest total when the gold was more than 3?",
    "question_th": "ผลรวมต่ำสุดของออสเตรียเมื่อทองคำมากกว่า 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_en": "What are the years won when the to par is +5?",
    "question_th": "ปีที่พาร์จะชนะคือ +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_en": "What is the average total for Tiger Woods?",
    "question_th": "ยอดรวมเฉลี่ยของ Tiger Woods คือเท่าไร?",
    "context": "CREATE TABLE table_name_26 (total INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_46 WHERE total = 295",
    "question_en": "Which country had a total of 295?",
    "question_th": "ประเทศใดมีทั้งหมด 295?",
    "context": "CREATE TABLE table_name_46 (country VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_18 WHERE to_par = \"+18\"",
    "question_en": "What is the finish when the to par is +18?",
    "question_th": "เมื่อถึงพาร์ +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_en": "How many total No Results occured when the team had less than 46 wins and more than 16 matches?",
    "question_th": "จำนวนทั้งหมดที่ไม่มีผลลัพธ์เกิดขึ้นเมื่อทีมชนะน้อยกว่า 46 นัดและมากกว่า 16 นัด?",
    "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_en": "When the team had more than 46 wins, what were the average losses?",
    "question_th": "เมื่อทีมชนะมากกว่า 46 ครั้ง ค่าเฉลี่ยความสูญเสียคือเท่าไร?",
    "context": "CREATE TABLE table_name_13 (losses INTEGER, wins INTEGER)"
  },
  {
    "answer": "SELECT COUNT(no_result) FROM table_name_21 WHERE wins < 6",
    "question_en": "How many total No Results are recorded for less than 6 wins?",
    "question_th": "ไม่มีการบันทึกผลลัพธ์ทั้งหมดจำนวนเท่าใดสำหรับการชนะน้อยกว่า 6 ครั้ง",
    "context": "CREATE TABLE table_name_21 (no_result VARCHAR, wins INTEGER)"
  },
  {
    "answer": "SELECT interview_subject FROM table_name_42 WHERE date = \"11-92\"",
    "question_en": "What Interview subject was on a Date that is 11-92?",
    "question_th": "หัวข้อสัมภาษณ์อะไรในวันที่ 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_en": "What is the lowest game number with Aris Thessaloniki with points smaller than 120?",
    "question_th": "หมายเลขเกมต่ำสุดของ Aris Thessaloniki ที่มีคะแนนน้อยกว่า 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_en": "What is the game average that has a rank larger than 2 with team Olympiacos and points larger than 113?",
    "question_th": "ค่าเฉลี่ยของเกมที่มีอันดับมากกว่า 2 กับทีม Olympiacos และคะแนนมากกว่า 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_en": "Which result was there when the opponents were the Buffalo Bills?",
    "question_th": "ผลลัพธ์ใดเกิดขึ้นเมื่อฝ่ายตรงข้ามคือบัฟฟาโลบิล?",
    "context": "CREATE TABLE table_name_14 (result VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(purse__) AS $__ FROM table_name_88 WHERE location = \"iowa\"",
    "question_en": "What was the Purse ($) total for Iowa?",
    "question_th": "กระเป๋าเงิน ($) ทั้งหมดสำหรับไอโอวาเป็นเท่าใด",
    "context": "CREATE TABLE table_name_88 (purse__ VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_4 WHERE score = \"195 (-21)\"",
    "question_en": "When did the Score of 195 (-21) happen?",
    "question_th": "คะแนน 195 (-21) เกิดขึ้นเมื่อไหร่?",
    "context": "CREATE TABLE table_name_4 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_78 WHERE winner = \"scott hoch (2)\"",
    "question_en": "When did Scott Hoch (2) win?",
    "question_th": "Scott Hoch (2) ชนะเมื่อใด",
    "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_en": "What team placed second during the season where Western Australia placed fifth, South Australia placed sixth, and Tasmania placed fourth?",
    "question_th": "ทีมใดได้อันดับที่สองในระหว่างฤดูกาล โดยที่เวสเทิร์นออสเตรเลียได้อันดับที่ห้า, ออสเตรเลียใต้ได้อันดับที่หก และแทสเมเนียได้อันดับที่สี่",
    "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_en": "What team placed sixth during the season where Western Australia placed fourth and Tasmania placed first?",
    "question_th": "ทีมใดได้อันดับหกในระหว่างฤดูกาลที่ออสเตรเลียตะวันตกได้อันดับสี่และแทสเมเนียได้อันดับหนึ่ง",
    "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_en": "What team placed sixth during the season where Tasmania placed second and Western Australia placed fourth?",
    "question_th": "ทีมใดได้อันดับที่หกในระหว่างฤดูกาล โดยที่แทสเมเนียได้อันดับสองและเวสเทิร์นออสเตรเลียได้อันดับที่สี่",
    "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_en": "What team placed fifth during the season where Victoria placed second, Tasmania placed first, and South Australia placed sixth?",
    "question_th": "ทีมใดได้อันดับที่ห้าในระหว่างฤดูกาลโดยที่วิกตอเรียได้อันดับสอง แทสเมเนียได้อันดับหนึ่ง และเซาท์ออสเตรเลียได้อันดับที่หก",
    "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_en": "What is the smallest number of losses for a position greater than 2 with 4 points and more than 2 draws?",
    "question_th": "จำนวนการขาดทุนที่น้อยที่สุดสำหรับตำแหน่งที่มากกว่า 2 โดยมี 4 แต้มและเสมอมากกว่า 2 ครั้งคือเท่าใด?",
    "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_en": "How many points occurred with a difference of 2 for position less than 4?",
    "question_th": "มีกี่จุดที่เกิดขึ้นกับผลต่าง 2 สำหรับตำแหน่งที่น้อยกว่า 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_en": "What is the highest number of points for a position less than 3 and less than 1 loss?",
    "question_th": "จำนวนคะแนนสูงสุดสำหรับสถานะที่น้อยกว่า 3 และขาดทุนน้อยกว่า 1 คือเท่าใด",
    "context": "CREATE TABLE table_name_19 (points INTEGER, position VARCHAR, lost VARCHAR)"
  },
  {
    "answer": "SELECT agg FROM table_name_28 WHERE team__number2 = \"estudiantes\"",
    "question_en": "When Estudiantes was team #2, what was their agg. value?",
    "question_th": "เมื่อเอสตูเดียนเตสเป็นทีมอันดับ 2 แต้มรวมของพวกเขาเป็นเท่าไหร่ ค่า?",
    "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_en": "Who played against TSV bayer 04 leverkusen when they were team #1?",
    "question_th": "ใครเคยเจอกับ TSV bayer 04เลเวอร์คูเซ่น ตอนที่พวกเขาอยู่ทีมอันดับ 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_en": "Who played against Hapoel tel aviv when they were team #1?",
    "question_th": "ใครเคยเจอกับฮาโปเอล เทล อาวีฟตอนอยู่ทีมอันดับ 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_en": "What is the 2013 BAFA adult flag division in Aylesbury?",
    "question_th": "แผนกธงสำหรับผู้ใหญ่ของ BAFA ประจำปี 2013 ใน Aylesbury คืออะไร?",
    "context": "CREATE TABLE table_name_95 (location VARCHAR)"
  },
  {
    "answer": "SELECT format FROM table_name_63 WHERE label = \"kontor records\" AND catalog = \"kontor446\"",
    "question_en": "Records from Kontor Records from the catalog of Kontor446 was released in what format?",
    "question_th": "บันทึกจาก Kontor Records จากแคตตาล็อกของ Kontor446 ได้รับการเผยแพร่ในรูปแบบใด",
    "context": "CREATE TABLE table_name_63 (format VARCHAR, label VARCHAR, catalog VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_66 WHERE label = \"wrongun\"",
    "question_en": "What date was the release that was Wrongun as the label?",
    "question_th": "เปิดตัววันไหนที่ Wrongun เป็นค่ายเพลง?",
    "context": "CREATE TABLE table_name_66 (date VARCHAR, label VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_26 WHERE catalog = \"nebdj068\"",
    "question_en": "Catalog Nebdj068 was released when?",
    "question_th": "แคตตาล็อก Nebdj068 ออกเมื่อไร?",
    "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_en": "In what format was the release from the Nebt068 catalog on April 11, 2005 in?",
    "question_th": "การเผยแพร่จากแค็ตตาล็อก Nebt068 เมื่อวันที่ 11 เมษายน 2548 ในรูปแบบใด",
    "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_en": "What region has the date of 2005 and Playground Music Scandinavia as a label?",
    "question_th": "ภูมิภาคใดมีวันที่ปี 2548 และ Playground Music Scandinavia เป็นป้ายกำกับ",
    "context": "CREATE TABLE table_name_16 (region VARCHAR, date VARCHAR, label VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_16 WHERE venue = \"filbert street\"",
    "question_en": "What is the Result with a Venue that is filbert street?",
    "question_th": "ผลลัพธ์ของสถานที่คือถนนฟิลเบิร์ตคืออะไร?",
    "context": "CREATE TABLE table_name_16 (result VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_8 WHERE opponent = \"bye\"",
    "question_en": "When did the Texans play BYE?",
    "question_th": "ประมวลเล่น BYE เมื่อไหร่?",
    "context": "CREATE TABLE table_name_8 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_11 WHERE attendance = \"70,724\"",
    "question_en": "Who did the Texans play when there were 70,724 people in attendance?",
    "question_th": "Texans เล่นใครเมื่อมีผู้เข้าร่วม 70,724 คน?",
    "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_en": "Who has the status of jr synonym of protosialis casca?",
    "question_th": "ใครมีสถานะเป็น jr ชื่อพ้องของ protosialis casca?",
    "context": "CREATE TABLE table_name_75 (novelty VARCHAR, status VARCHAR)"
  },
  {
    "answer": "SELECT authors FROM table_name_62 WHERE name = \"mongolbittacus\"",
    "question_en": "Which writer is named mongolbittacus?",
    "question_th": "นักเขียนคนไหนชื่อมองโกลบิตตะคัส?",
    "context": "CREATE TABLE table_name_62 (authors VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_59 WHERE attendance = \"359\"",
    "question_en": "What is the score of the game that had 359 people in attendance?",
    "question_th": "คะแนนของเกมที่มีผู้เข้าร่วม 359 คนเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_59 (score VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_95 WHERE score = \"0-1\"",
    "question_en": "What is the home team of the game that ended with a score of 0-1?",
    "question_th": "เจ้าบ้านของเจ้าบ้านจบเกมด้วยสกอร์ 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_en": "How many people attended Match No. 31?",
    "question_th": "มีผู้เข้าร่วมการแข่งขันหมายเลข 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_en": "Who is the Home Team for Match No. 23?",
    "question_th": "ทีมเจ้าบ้านสำหรับนัดที่ 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_en": "What is the score of the game with 1,125 people in attendance?",
    "question_th": "คะแนนของเกมที่มีผู้เข้าร่วม 1,125 คนเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_37 (score VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_70 WHERE launched = \"april 3, 1990\"",
    "question_en": "What is the Country with a Launched that is april 3, 1990?",
    "question_th": "ประเทศใดที่มีการเปิดตัวคือวันที่ 3 เมษายน 1990?",
    "context": "CREATE TABLE table_name_70 (country VARCHAR, launched VARCHAR)"
  },
  {
    "answer": "SELECT launched FROM table_name_45 WHERE country = \"spain\"",
    "question_en": "What is the Launched from a Country that is spain?",
    "question_th": "เปิดตัวจากประเทศสเปนคืออะไร?",
    "context": "CREATE TABLE table_name_45 (launched VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT MIN(order) FROM table_name_66 WHERE minister = \"joe hockey\"",
    "question_en": "What is the lowest order with a Minister that is joe hockey?",
    "question_th": "อะไรคือลำดับต่ำสุดของรัฐมนตรีที่เป็นโจฮ็อกกี้?",
    "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_en": "Which Years in Orlando has a Nationality of united states, and a Player of doug overton?",
    "question_th": "ปีใดในออร์แลนโดที่มีสัญชาติสหรัฐอเมริกาและเป็นผู้เล่นของดั๊ก โอเวอร์ตัน",
    "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_en": "Which Years in Orlando has a Nationality of united states, a Position of center, and a Player of jawann oldham?",
    "question_th": "ปีใดในออร์แลนโดที่มีสัญชาติสหรัฐอเมริกา ตำแหน่งเซนเตอร์ และผู้เล่นของจาวานน์ โอลด์แฮม?",
    "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_en": "Which Years in Orlando has a Player of bo outlaw?",
    "question_th": "ปีใดในออร์แลนโดที่มีผู้เล่นนอกกฎหมาย?",
    "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_en": "Which Years in Orlando has a School/Club Team of seattle?",
    "question_th": "ปีใดในออร์แลนโดที่มีทีมโรงเรียน/สโมสรของซีแอตเทิล",
    "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–2012\"",
    "question_en": "Which Nationality has a Position of center, and a Years in Orlando of 2010–2012?",
    "question_th": "สัญชาติใดมีตำแหน่งศูนย์กลาง และปีในออร์แลนโดปี 2010–2012",
    "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_en": "Which Nationality has a School/Club Team of seattle?",
    "question_th": "สัญชาติใดมีทีมโรงเรียน/สโมสรในซีแอตเทิล",
    "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_en": "When did they play at Candlestick Park?",
    "question_th": "พวกเขาเล่นที่ 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_en": "What is the average number of top-10s for events under 57 and 0 top-5s?",
    "question_th": "จำนวนเฉลี่ยของ 10 อันดับแรกสำหรับกิจกรรมที่มีอายุต่ำกว่า 57 ปีและ 0 อันดับแรกคือเท่าใด",
    "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_en": "What is the average number of top-10s for events with more than 12 cuts made and 0 wins?",
    "question_th": "จำนวนเฉลี่ยของ 10 อันดับแรกสำหรับกิจกรรมที่มีการตัดมากกว่า 12 ครั้งและชนะ 0 ครั้งคือเท่าใด",
    "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_en": "What is the average number of top-25s for events with less than 2 top-10s?",
    "question_th": "จำนวนเฉลี่ยของผู้เข้า 25 อันดับแรกสำหรับกิจกรรมที่มีผู้ติดอันดับ 10 อันดับแรกน้อยกว่า 2 คนคือเท่าใด",
    "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_en": "Which Works number has a Builder of canadian engine & machinery company, and a Number smaller than 3?",
    "question_th": "หมายเลข Works ใดที่มีผู้สร้างของบริษัทเครื่องยนต์และเครื่องจักรของแคนาดา และหมายเลขน้อยกว่า 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_en": "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?",
    "question_th": "หมายเลข Works ใดที่มีผู้สร้างของบริษัทเครื่องยนต์ Avonside และประเภท 4-6-0 และหมายเลขที่น้อยกว่า 12 และวันที่ธันวาคม 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_en": "Which Type has a Builder of avonside engine company, and a Number of 9?",
    "question_th": "ประเภทใดที่มีผู้สร้างของบริษัทเครื่องยนต์เอวอนไซด์ และหมายเลข 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_en": "Which Date has a Type of 4-6-0, and a Number larger than 11?",
    "question_th": "วันที่ใดมีประเภท 4-6-0 และตัวเลขมากกว่า 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_en": "Which Builder has a Date of early 1871?",
    "question_th": "Builder ตัวใดมีวันที่ต้นปี 1871?",
    "context": "CREATE TABLE table_name_39 (builder VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_69 WHERE score = \"42-64\"",
    "question_en": "What ist he Home with a Score that is 42-64?",
    "question_th": "เขากลับบ้านด้วยสกอร์ 42-64 คืออะไร?",
    "context": "CREATE TABLE table_name_69 (home VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_34 WHERE time = \"12:00\"",
    "question_en": "What is the Home with a Time that is 12:00?",
    "question_th": "บ้านที่มีเวลา 12.00 น. คืออะไร?",
    "context": "CREATE TABLE table_name_34 (home VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT ground FROM table_name_61 WHERE score = \"49-80\"",
    "question_en": "What is the Ground with a Score that is 49-80?",
    "question_th": "พื้นดินที่มีคะแนนอยู่ที่ 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_en": "What's the smallest March when the record is 22-12-6?",
    "question_th": "มีนาคมที่เล็กที่สุดเมื่อทำสถิติ 22-12-6 คือเท่าไร?",
    "context": "CREATE TABLE table_name_7 (march INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_77 WHERE march = 26",
    "question_en": "Which record's march was 26?",
    "question_th": "เดือนมีนาคมของสถิติใดคือ 26?",
    "context": "CREATE TABLE table_name_77 (record VARCHAR, march VARCHAR)"
  },
  {
    "answer": "SELECT lost FROM table_name_30 WHERE losing_bonus = \"4\"",
    "question_en": "What is the Lost with a Losing Bonus that is 4?",
    "question_th": "อะไรคือสิ่งที่หายไปพร้อมกับโบนัสการสูญเสียที่เท่ากับ 4?",
    "context": "CREATE TABLE table_name_30 (lost VARCHAR, losing_bonus VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_name_13 WHERE tries_for = \"21\"",
    "question_en": "What is the Points with a Tries For that is 21?",
    "question_th": "แต้มที่ต้องพยายามคือ 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_en": "What is the Lost with a Try Bonus that is try bonus?",
    "question_th": "อะไรคือโบนัสที่หายไปพร้อมกับลองโบนัสที่ลองโบนัส?",
    "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_en": "What is the highest Total for the rank 12, and gold less than 0?",
    "question_th": "อะไรคือผลรวมสูงสุดสำหรับอันดับ 12 และทองน้อยกว่า 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_en": "What is the total number of Total when the Silver is less than 2, and a Bronze is less than 0?",
    "question_th": "จำนวนรวมทั้งหมดเมื่อเงินน้อยกว่า 2 และเหรียญทองแดงน้อยกว่า 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_en": "What is the nickname of the team that has the colors blue and gold?",
    "question_th": "ชื่อเล่นของทีมที่มีสีฟ้าและสีทองคืออะไร?",
    "context": "CREATE TABLE table_name_42 (nickname VARCHAR, colors VARCHAR)"
  },
  {
    "answer": "SELECT nickname FROM table_name_27 WHERE colors = \"black and gold\"",
    "question_en": "What is the nickname of the team that has the colors black and gold?",
    "question_th": "ชื่อเล่นของทีมที่มีสีดำและสีทองคืออะไร?",
    "context": "CREATE TABLE table_name_27 (nickname VARCHAR, colors VARCHAR)"
  },
  {
    "answer": "SELECT nickname FROM table_name_34 WHERE division = \"division 2\"",
    "question_en": "What is the nickname of the team in division 2?",
    "question_th": "ชื่อเล่นของทีมในดิวิชั่น 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_en": "What is the class of the Middletown High School team that is in the DSHA league?",
    "question_th": "ทีม Middletown High School ที่อยู่ในลีก DSHA เป็นคนประเภทไหน?",
    "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_en": "What school is the team from that has the colors blue and gold?",
    "question_th": "ทีมโรงเรียนอะไรที่มีสีฟ้าและสีทอง?",
    "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_en": "What are the colors for the division 2 team with the nickname, the seahawks?",
    "question_th": "ทีมดิวิชั่น 2 มีชื่อเล่นว่าซีฮอว์กมีสีอะไร?",
    "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_en": "Who's the Centerfold model with a Pictorials of adrianne curry, girls of tuscany?",
    "question_th": "นางแบบ Centerfold กับรูปถ่ายของ Adrianne Curry สาวๆ แห่งทัสคานีคือใคร?",
    "context": "CREATE TABLE table_name_47 (centerfold_model VARCHAR, pictorials VARCHAR)"
  },
  {
    "answer": "SELECT interview_subject FROM table_name_30 WHERE pictorials = \"vida guerra\"",
    "question_en": "Which Interview subject has a Pictorials of vida guerra?",
    "question_th": "บทสัมภาษณ์ใดมีรูป 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_en": "Which Date has a Pictorials of mercedes mcnab, girls of hawaiian tropic?",
    "question_th": "เดทไหนมีภาพของ Mercedes McNAB สาวแห่งเขตร้อนฮาวาย?",
    "context": "CREATE TABLE table_name_67 (date VARCHAR, pictorials VARCHAR)"
  },
  {
    "answer": "SELECT interview_subject FROM table_name_60 WHERE centerfold_model = \"athena lundberg\"",
    "question_en": "Which Interview subject has a Centerfold model of athena lundberg?",
    "question_th": "หัวข้อสัมภาษณ์ใดมีโมเดล Athena Lundberg แบบ Centerfold",
    "context": "CREATE TABLE table_name_60 (interview_subject VARCHAR, centerfold_model VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(votes) FROM table_name_23 WHERE party = \"labour\"",
    "question_en": "What is the total number of votes from the Labour Party?",
    "question_th": "คะแนนเสียงของพรรคแรงงานทั้งหมดเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_23 (votes VARCHAR, party VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_name_81 WHERE votes < 11 OFFSET 484",
    "question_en": "Which party has less than 11,484 votes?",
    "question_th": "พรรคใดมีคะแนนเสียงน้อยกว่า 11,484 เสียง?",
    "context": "CREATE TABLE table_name_81 (party VARCHAR, votes INTEGER)"
  },
  {
    "answer": "SELECT SUM(number) FROM table_name_24 WHERE name = \"brandon dean\"",
    "question_en": "How many numbers had Brandon Dean as a name?",
    "question_th": "Brandon Dean มีชื่อกี่หมายเลข?",
    "context": "CREATE TABLE table_name_24 (number INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT singular FROM table_name_28 WHERE meaning = \"night\"",
    "question_en": "What is the singular for the Meaning of night?",
    "question_th": "เอกพจน์ของความหมายของกลางคืนคืออะไร?",
    "context": "CREATE TABLE table_name_28 (singular VARCHAR, meaning VARCHAR)"
  },
  {
    "answer": "SELECT plural FROM table_name_85 WHERE meaning = \"night\"",
    "question_en": "What is the plural for the Meaning of night?",
    "question_th": "พหูพจน์ของความหมายของกลางคืนคืออะไร?",
    "context": "CREATE TABLE table_name_85 (plural VARCHAR, meaning VARCHAR)"
  },
  {
    "answer": "SELECT plural FROM table_name_47 WHERE singular = \"nyaqot\"",
    "question_en": "What is the plural if the singular is nyaqot?",
    "question_th": "พหูพจน์คืออะไรถ้าเอกพจน์คือ 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_en": "What is the plural if the meaning is python and the plural gender is n?",
    "question_th": "พหูพจน์คืออะไรถ้าความหมายคือ python และพหูพจน์เพศคือ 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_en": "What is the plural if the singular is awu?",
    "question_th": "ถ้าเอกพจน์เป็น awu จะเป็นพหูพจน์อะไร?",
    "context": "CREATE TABLE table_name_60 (plural VARCHAR, singular VARCHAR)"
  },
  {
    "answer": "SELECT singular FROM table_name_19 WHERE plural = \"xweer(a)du\"",
    "question_en": "What is the singular if the plural is xweer(a)du?",
    "question_th": "เอกพจน์คืออะไรถ้าพหูพจน์คือ 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_en": "What is the Total againsts for the Sant'Anna team with a position number greater than 10?",
    "question_th": "ผลรวมการแพ้ของทีม Sant'Anna ที่มีหมายเลขตำแหน่งมากกว่า 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_en": "What is the total number of games played with 3 losses, 1 or more drawns and 10 or fewer points?",
    "question_th": "จำนวนเกมทั้งหมดที่เล่นโดยแพ้ 3 ครั้ง เสมอ 1 ครั้งขึ้นไป และ 10 แต้มหรือน้อยกว่าคือเท่าใด",
    "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_en": "What is the average lost of games played of more than 9?",
    "question_th": "ค่าเฉลี่ยการแพ้ของเกมที่เล่นมากกว่า 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_en": "What is the lowest number of bronze medals for Great Britain with more than 2 medals total?",
    "question_th": "เหรียญทองแดงจำนวนน้อยที่สุดของสหราชอาณาจักรที่มีมากกว่า 2 เหรียญคือเท่าใด",
    "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_en": "What is the lowest wins the club with a position of 4 and less than 4 losses has?",
    "question_th": "สโมสรที่ชนะต่ำสุดด้วยอันดับ 4 และแพ้น้อยกว่า 4 คืออะไร?",
    "context": "CREATE TABLE table_name_67 (wins INTEGER, position VARCHAR, loses VARCHAR)"
  },
  {
    "answer": "SELECT SUM(points) FROM table_name_39 WHERE club = \"nevėžis-2 kėdainiai\" AND goals_conceded > 35",
    "question_en": "What is the sum of the points of club nevėžis-2 kėdainiai, which has more than 35 goals conceded?",
    "question_th": "ผลรวมแต้มของสโมสร เนเวซิส-2 เคไดเนีย ที่เสียไปมากกว่า 35 ประตูคือเท่าไร?",
    "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_en": "What is the total number of games played of the team with 4 wins and a position less than 9?",
    "question_th": "จำนวนเกมทั้งหมดที่ทีมเล่นโดยชนะ 4 เกมและตำแหน่งน้อยกว่า 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_en": "What is the highest number of wins of the team with a position less than 1?",
    "question_th": "จำนวนชัยชนะสูงสุดของทีมที่มีตำแหน่งน้อยกว่า 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_en": "What is the total losses against 1412, and 10 wins, but draws less than 0?",
    "question_th": "ผลขาดทุนรวมต่อ 1412 และชนะ 10 ครั้ง แต่เสมอน้อยกว่า 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_en": "What is the highest draw against 2161?",
    "question_th": "เสมอสูงสุดเทียบกับ 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_en": "What is the total number of losses against 1412, and Byes less than 2?",
    "question_th": "จำนวนการสูญเสียทั้งหมดเทียบกับ 1412 และ Byes น้อยกว่า 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_en": "What is the lowest wins with less than 2 Byes?",
    "question_th": "ชนะต่ำสุดโดยน้อยกว่า 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_en": "What is the highest score with 0 wins and more than 2 Byes?",
    "question_th": "คะแนนสูงสุดโดยชนะ 0 ครั้งและบายมากกว่า 2 ครั้งคืออะไร?",
    "context": "CREATE TABLE table_name_4 (against INTEGER, wins VARCHAR, byes VARCHAR)"
  },
  {
    "answer": "SELECT SUM(wins) FROM table_name_80 WHERE against < 1148",
    "question_en": "What is the sum of wins against the smaller score 1148?",
    "question_th": "ผลรวมของการชนะต่อคะแนนที่น้อยกว่า 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_en": "Who had a rank larger than 7, less than 305 goals, and 418 matches?",
    "question_th": "ใครมีอันดับมากกว่า 7 น้อยกว่า 305 ประตู และ 418 นัด?",
    "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_en": "How many goals ranked 6?",
    "question_th": "อันดับ 6 มีกี่ประตู?",
    "context": "CREATE TABLE table_name_36 (goals VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT matches FROM table_name_31 WHERE goals = 360",
    "question_en": "How many matches had 360 goals?",
    "question_th": "กี่แมตช์มี 360 ประตู?",
    "context": "CREATE TABLE table_name_31 (matches VARCHAR, goals VARCHAR)"
  },
  {
    "answer": "SELECT nominee FROM table_name_64 WHERE category = \"best costume design\"",
    "question_en": "What is the Nominee from the Category that is best costume design?",
    "question_th": "ผู้ที่ได้รับการเสนอชื่อเข้าชิงจากประเภทการออกแบบเครื่องแต่งกายที่ดีที่สุดคืออะไร?",
    "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_en": "Which Total has a Bronze larger than 12, and a Silver larger than 772, and a Country of thailand?",
    "question_th": "Total ใดมี Bronze มากกว่า 12 และ Silver มากกว่า 772 และประเทศไทย?",
    "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_en": "Which Gold has a Total of 2998, and a Bronze smaller than 1191?",
    "question_th": "ทองคำใดมียอดรวม 2998 และทองแดงน้อยกว่า 1,191",
    "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_en": "Which Bronze has a Country of malaysia, and a Total smaller than 2644?",
    "question_th": "บรอนซ์ใดมีประเทศมาเลเซีย และผลรวมน้อยกว่า 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_en": "Which Silver has a Bronze smaller than 618, and a Country of laos?",
    "question_th": "เงินใดมีทองแดงน้อยกว่า 618 และประเทศลาว?",
    "context": "CREATE TABLE table_name_65 (silver VARCHAR, bronze VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_1 WHERE team = \"@ portland\"",
    "question_en": "What is the Score with a Team that is @ portland?",
    "question_th": "คะแนนกับทีมที่เป็น @ portland คืออะไร?",
    "context": "CREATE TABLE table_name_1 (score VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_name_35 WHERE date = \"january 20\"",
    "question_en": "What is the High points with a Date that is january 20?",
    "question_th": "จุดสูงสุดของวันที่ 20 มกราคม คืออะไร?",
    "context": "CREATE TABLE table_name_35 (high_points VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_64 WHERE visitor = \"clippers\"",
    "question_en": "Who was the home team that the Clippers played?",
    "question_th": "ทีมเหย้าที่คลิปเปอร์สเล่นคือใคร?",
    "context": "CREATE TABLE table_name_64 (home VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_69 WHERE leading_scorer = \"lebron james (16)\"",
    "question_en": "What's the record of the game where Lebron James (16) was the leading scorer?",
    "question_th": "อะไรคือสถิติของเกมที่เลอบรอน เจมส์ (16) เป็นผู้ทำประตูสูงสุด?",
    "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_en": "When the venue was A and the date was 2 january 2008, what was the average attendance?",
    "question_th": "เมื่อสถานที่จัดงานเป็น A และวันที่ 2 มกราคม 2551 ผู้เข้าร่วมงานโดยเฉลี่ยคือเท่าใด",
    "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_en": "On 10 November 2007, what was the venue?",
    "question_th": "วันที่ 10 พฤศจิกายน พ.ศ. 2550 สถานที่จัดงานเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_60 (venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_17 WHERE result = \"1–0\" AND attendance > 668 AND opponent = \"ayr united\"",
    "question_en": "On what date was the opponent Ayr United, the result 1–0, and the attendance more than 668?",
    "question_th": "คู่ต่อสู้แอร์ยูไนเต็ดคือวันที่ใดผล 1–0 และมีผู้เข้าร่วมมากกว่า 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_en": "When the opponent was Brechin City and the attendance was 656, what was the Result?",
    "question_th": "เมื่อคู่ต่อสู้คือเบรชินซิตี้และมีผู้ชม 656 คน ผลลัพธ์เป็นอย่างไร?",
    "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_en": "On 1 september 2007, at the Venue A, what was the average attendance?",
    "question_th": "วันที่ 1 กันยายน 2550 ณ สถานที่ A มีผู้เข้าร่วมงานเฉลี่ยเท่าใด",
    "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_en": "Which Score has a Country of england, and a Year larger than 1971?",
    "question_th": "คะแนนใดมีประเทศอังกฤษ และหนึ่งปีมากกว่าปี 1971",
    "context": "CREATE TABLE table_name_77 (score VARCHAR, country VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_37 WHERE country = \"scotland\"",
    "question_en": "What is Scotland's winner?",
    "question_th": "ผู้ชนะของสกอตแลนด์คืออะไร?",
    "context": "CREATE TABLE table_name_37 (winner VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_15 WHERE week = 2",
    "question_en": "What time was the game in week 2?",
    "question_th": "เกมในสัปดาห์ที่ 2 แข่งขันกี่โมง?",
    "context": "CREATE TABLE table_name_15 (time VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_88 WHERE date = \"september 14, 2008\"",
    "question_en": "What was the score of the game on September 14, 2008?",
    "question_th": "คะแนนของเกมเมื่อวันที่ 14 กันยายน พ.ศ. 2551 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_88 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_66 WHERE date = \"november 23, 2008\"",
    "question_en": "What was the final score of the game on November 23, 2008?",
    "question_th": "คะแนนสุดท้ายของเกมเมื่อวันที่ 23 พฤศจิกายน พ.ศ. 2551 เป็นเท่าใด",
    "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_en": "Which species has a Voges-Proskauer reading of negative and an indole reading of negative?",
    "question_th": "สายพันธุ์ใดมีการอ่านค่า Voges-Proskauer เป็นลบ และอ่านค่าอินโดลเป็นลบ",
    "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_en": "What is the Voges-Proskauer reading for proteus mirabilis?",
    "question_th": "Voges-Proskauer อ่านค่า 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_en": "What is the methyl red reading for the species that tests positive for indole?",
    "question_th": "ค่าที่อ่านได้ของเมทิลเรดสำหรับสายพันธุ์ที่ทดสอบค่าบวกของอินโดลคืออะไร",
    "context": "CREATE TABLE table_name_98 (methyl_red VARCHAR, indole VARCHAR)"
  },
  {
    "answer": "SELECT methyl_red FROM table_name_77 WHERE species = \"proteus mirabilis\"",
    "question_en": "What is the methyl red reading for proteus mirabilis?",
    "question_th": "ค่าเมทิลเรดที่อ่านได้จาก 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_en": "What is the highest silver medals for Russia with more than 5 bronze medals?",
    "question_th": "เหรียญเงินสูงสุดของรัสเซียที่มีมากกว่า 5 เหรียญทองแดงคืออะไร?",
    "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_en": "What package/option has sky arte hd as the television service?",
    "question_th": "แพ็คเกจ/ตัวเลือกใดที่มี sky arte hd เป็นบริการโทรทัศน์?",
    "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_en": "What language has NO, as the HDTV, sky famiglia as the package/option, and national geographic channel as the television service?",
    "question_th": "ภาษาใดไม่มี เช่น HDTV, sky famiglia เป็นแพ็คเกจ/ตัวเลือก และช่อง National Geographic เป็นบริการโทรทัศน์",
    "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_en": "What language has sky famiglia as the package/option?",
    "question_th": "sky famiglia มีภาษาอะไรเป็นแพ็คเกจ/ตัวเลือก?",
    "context": "CREATE TABLE table_name_82 (language VARCHAR, package_option VARCHAR)"
  },
  {
    "answer": "SELECT language FROM table_name_65 WHERE content = \"viaggi\"",
    "question_en": "What language has viaggi as the content?",
    "question_th": "เนื้อหามีไวอากกี้เป็นภาษาอะไร?",
    "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_en": "What television service has italian as the language, and sky famiglia as the package option?",
    "question_th": "บริการโทรทัศน์ใดบ้างที่มีภาษาอิตาลีเป็นภาษา และ sky famiglia เป็นตัวเลือกแพ็คเกจ",
    "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_en": "What package/option has documentaries as the content, yes as the HDTV, and a television service of history hd?",
    "question_th": "แพ็คเกจ/ตัวเลือกใดที่มีสารคดีเป็นเนื้อหา ใช่เป็น HDTV และบริการโทรทัศน์แห่งประวัติศาสตร์ 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_en": "What was the resolution for the match that ended by Submission (armbar)?",
    "question_th": "วิธีแก้ปัญหาสำหรับแมตช์ที่จบลงด้วยการส่ง (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_en": "What was the total time for the match that ocurred in Round 3 with opponent Keith Wisniewski?",
    "question_th": "เวลารวมของการแข่งขันที่เกิดขึ้นในรอบที่ 3 กับคู่ต่อสู้ 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_en": "Where did the match with opponent Laverne Clark occur?",
    "question_th": "การแข่งขันกับคู่ต่อสู้ Laverne Clark เกิดขึ้นที่ไหน?",
    "context": "CREATE TABLE table_name_14 (location VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT diameter__mi_ FROM table_name_65 WHERE longitude = \"79.8° e\"",
    "question_en": "What is the Diameter (mi) when the Longitude is 79.8° e?",
    "question_th": "เส้นผ่านศูนย์กลาง (ไมล์) คืออะไรเมื่อลองจิจูดอยู่ที่ 79.8° 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° e\"",
    "question_en": "What is the Latitude when the Diameter (km) is 13km, and the Longitude is 72.9° e?",
    "question_th": "ละติจูดคืออะไรเมื่อเส้นผ่านศูนย์กลาง (กม.) อยู่ที่ 13 กม. และลองจิจูดคือ 72.9° 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_en": "What shows for the Longitude when there is a Diameter (km) of 31km?",
    "question_th": "อะไรแสดงให้เห็นลองจิจูดเมื่อมีเส้นผ่านศูนย์กลาง (กม.) เท่ากับ 31 กม.",
    "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_en": "What shows for the Diameter (km) when the Diameter (mi) is 8mi, and a Gill is e?",
    "question_th": "อะไรแสดงให้เห็นเส้นผ่านศูนย์กลาง (กม.) เมื่อเส้นผ่านศูนย์กลาง (ไมล์) คือ 8 ไมล์ และเหงือกคือ 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_en": "What shows as the Diameter (km) when the Diameter (mi) is 5mi?",
    "question_th": "สิ่งที่แสดงเป็นเส้นผ่านศูนย์กลาง (กม.) เมื่อเส้นผ่านศูนย์กลาง (ไมล์) เท่ากับ 5 ไมล์",
    "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_en": "What was the lowest squad with 0 goals?",
    "question_th": "ทีมไหนที่ยิงได้ 0 ประตูน้อยที่สุด?",
    "context": "CREATE TABLE table_name_81 (squad_no INTEGER, goals INTEGER)"
  },
  {
    "answer": "SELECT COUNT(overall) FROM table_name_30 WHERE player = \"angelo craig\"",
    "question_en": "What is the number for overall for angelo craig?",
    "question_th": "เบอร์โดยรวมของแองเจโล เครกคือเท่าไร?",
    "context": "CREATE TABLE table_name_30 (overall VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_85 WHERE overall = 246",
    "question_en": "What is the Round when there is an overall of 246?",
    "question_th": "รอบจะเป็นอย่างไรเมื่อมีคะแนนรวม 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_en": "What is the lowest Overall for the wide receiver in a round less than 2?",
    "question_th": "โดยรวมแล้วต่ำสุดสำหรับตัวรับกว้างในรอบที่น้อยกว่า 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_en": "What is the Player from appalachian state?",
    "question_th": "ผู้เล่นจากรัฐ Appalachian คืออะไร?",
    "context": "CREATE TABLE table_name_73 (player VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT production_cost FROM table_name_34 WHERE date = \"february 2000\"",
    "question_en": "What is the Production Cost with a Date that is february 2000?",
    "question_th": "ต้นทุนการผลิต ณ วันที่กุมภาพันธ์ 2543 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_34 (production_cost VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT singapore_gross FROM table_name_74 WHERE title = \"2000\"",
    "question_en": "What is the Singapore Gross with a Title that is 2000?",
    "question_th": "Singapore Gross ที่มีชื่อในปี 2000 คืออะไร?",
    "context": "CREATE TABLE table_name_74 (singapore_gross VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT singapore_gross FROM table_name_72 WHERE producer = \"2000\"",
    "question_en": "What is the Singapore Gross with a Producer that is 2000?",
    "question_th": "Singapore Gross กับผู้ผลิตในปี 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_en": "What is Average Height, when Weight is less than 93, when Spike is less than 336, and when Block is 305?",
    "question_th": "ความสูงเฉลี่ยคืออะไร เมื่อน้ำหนักน้อยกว่า 93 เมื่อสไปค์น้อยกว่า 336 และเมื่อบล็อกคือ 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_en": "What is Name, when Block is 320, when Spike is more than 336, and when Date of Birth is 12.10.1978?",
    "question_th": "ชื่อคืออะไร เมื่อ Block เป็น 320 เมื่อ Spike มากกว่า 336 และเมื่อวันเกิดคือ 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_en": "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?",
    "question_th": "จำนวนบล็อกทั้งหมดคือเท่าไร เมื่อ Spike น้อยกว่า 341 เมื่อน้ำหนักมากกว่า 82 และเมื่อชื่อ 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_en": "What is Name, when Spike is greater than 343, and when Date of Birth is 02.03.1973?",
    "question_th": "ชื่อคืออะไร เมื่อ Spike มากกว่า 343 และเมื่อวันเกิดคือ 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_en": "What was the date of the Paco Rabanne Open de France?",
    "question_th": "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_en": "On which date did Ian Mosey finish runner-up?",
    "question_th": "เอียน โมซีย์ รองแชมป์เมื่อวันไหน?",
    "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_en": "What set 2 has a set 4 of 21-25?",
    "question_th": "ชุดที่ 2 มีชุดที่ 4 เป็น 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_en": "What was the score when set 3 was 26-28?",
    "question_th": "เซต 3 สกอร์ 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_en": "When was set 3 of 18-25?",
    "question_th": "ตั้ง 3 ของ 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_en": "Who was the away captain with a result of Eng by 1 wkt?",
    "question_th": "ใครคือกัปตันทีมเยือนที่มีผลอังกฤษ 1 สัปดาห์?",
    "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_en": "On what date was the result Eng by 1 wkt?",
    "question_th": "ผล Eng 1 สัปดาห์คือวันไหน?",
    "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_en": "On what date was Arthur Jones the away captain at Sydney Cricket Ground?",
    "question_th": "อาเธอร์ โจนส์เป็นกัปตันทีมเยือนที่สนามคริกเก็ตซิดนีย์วันที่เท่าไร",
    "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_en": "What is the highest place for song that was draw number 6?",
    "question_th": "เพลงที่ถูกรางวัลที่ 6 สูงสุดคือเพลงไหน?",
    "context": "CREATE TABLE table_name_83 (place INTEGER, draw VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_61 WHERE date = \"november 6, 1988\"",
    "question_en": "What was the result of the game on November 6, 1988?",
    "question_th": "ผลการแข่งขันเมื่อวันที่ 6 พฤศจิกายน พ.ศ. 2531 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_61 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_60 WHERE opponent = \"los angeles rams\"",
    "question_en": "What was the date of the game against the Los Angeles Rams?",
    "question_th": "วันที่ของเกมกับ 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_en": "What is the total with a 25-19 set 2 on Jun 17?",
    "question_th": "รวม 25-19 เซ็ต 2 วันที่ 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_en": "What is the set 4 with a 2-3 score?",
    "question_th": "เซต 4 สกอร์ 2-3 คืออะไร?",
    "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_en": "What is the set 5 with a 19-25 set 1?",
    "question_th": "ชุด 5 กับ 19-25 ชุด 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_en": "What is the set 1 with a 28-30 set 4?",
    "question_th": "ชุด 1 กับ 28-30 ชุด 4 คืออะไรครับ?",
    "context": "CREATE TABLE table_name_67 (set_1 VARCHAR, set_4 VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_46 WHERE goal < 2",
    "question_en": "What is the result when there's less than 2 goals?",
    "question_th": "น้อยกว่า 2 ประตูจะส่งผลอย่างไร?",
    "context": "CREATE TABLE table_name_46 (result VARCHAR, goal INTEGER)"
  },
  {
    "answer": "SELECT score FROM table_name_18 WHERE goal < 2",
    "question_en": "What is the score when there are less than 2 goals?",
    "question_th": "สกอร์น้อยกว่า 2 ประตูเป็นเท่าไหร่?",
    "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_en": "How many points on average had a position smaller than 8, 16 plays, and a lost larger than 9?",
    "question_th": "โดยเฉลี่ยแล้วมีกี่คะแนนที่มีตำแหน่งน้อยกว่า 8, 16 ครั้ง และแพ้มากกว่า 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_en": "What was the lowest Attendance when the Opponent was Maryland?",
    "question_th": "อะไรคือผู้เข้าร่วมที่ต่ำที่สุดเมื่อฝ่ายตรงข้ามคือแมริแลนด์?",
    "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_en": "Which Network has a Local name of moj tata je bolji od tvog tate?",
    "question_th": "เครือข่ายใดมีชื่อท้องถิ่นว่า 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_en": "Which Country has a Network of channel 1?",
    "question_th": "ประเทศใดมีเครือข่ายช่อง 1?",
    "context": "CREATE TABLE table_name_97 (country VARCHAR, network VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_61 WHERE network = \"nelonen\"",
    "question_en": "Which Country has a Network of nelonen?",
    "question_th": "ประเทศใดมีเครือข่ายของ Nelonen?",
    "context": "CREATE TABLE table_name_61 (country VARCHAR, network VARCHAR)"
  },
  {
    "answer": "SELECT local_name FROM table_name_60 WHERE network = \"nova tv\"",
    "question_en": "Which Local name has a Network of nova tv?",
    "question_th": "ชื่อท้องถิ่นใดมีเครือข่ายของ 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_en": "Which Local name has a Network of tvn?",
    "question_th": "ชื่อท้องถิ่นใดมีเครือข่ายของ tvn?",
    "context": "CREATE TABLE table_name_36 (local_name VARCHAR, network VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_18 WHERE host = \"miguel esteban\"",
    "question_en": "Which Country has a Host of miguel esteban?",
    "question_th": "ประเทศใดมีโฮสต์ของมิเกล เอสเตบัน?",
    "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_en": "Can you tell me the lowest Chapter that has the Pinyin of dehua, and the Articles smaller than 16?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าบทที่ต่ำที่สุดที่มีพินอินของ dehua และบทความที่เล็กกว่า 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_en": "Can you tell me the average Chapter that has Articles smaller than 15?",
    "question_th": "คุณช่วยบอกฉันถึงบทเฉลี่ยที่มีบทความน้อยกว่า 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_en": "Can you tell me the Chinese that has the Chapter larger than 4, and the English Translation of food transformations?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าภาษาจีนที่มีบทที่ใหญ่กว่า 4 และการแปลการเปลี่ยนแปลงอาหารเป็นภาษาอังกฤษ",
    "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_en": "Can you tell me the English Translation that has the Articles of 24?",
    "question_th": "ช่วยบอกคำแปลภาษาอังกฤษที่มี 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_en": "What shows for ICAO when the IATA is sin?",
    "question_th": "ICAO จะแสดงให้เห็นอะไรเมื่อ IATA มีบาป?",
    "context": "CREATE TABLE table_name_83 (icao VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT iata FROM table_name_72 WHERE country = \"france\" AND icao = \"lfrn\"",
    "question_en": "What is the IATA when France was the country, and the ICAO was lfrn?",
    "question_th": "IATA คืออะไรเมื่อฝรั่งเศสเป็นประเทศ และ ICAO เป็น 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_en": "What is the Airport when France was the country, and Montpellier was the city?",
    "question_th": "สนามบินในสมัยที่ฝรั่งเศสเป็นประเทศ และมงต์เปลลิเยร์เป็นเมืองคืออะไร",
    "context": "CREATE TABLE table_name_82 (airport VARCHAR, country VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT icao FROM table_name_66 WHERE airport = \"luqa airport\"",
    "question_en": "What is the ICAO for luqa airport?",
    "question_th": "ICAO สำหรับสนามบินลูกาคืออะไร?",
    "context": "CREATE TABLE table_name_66 (icao VARCHAR, airport VARCHAR)"
  },
  {
    "answer": "SELECT airport FROM table_name_30 WHERE city = \"new york\"",
    "question_en": "What is the Airport for New York City?",
    "question_th": "สนามบินสำหรับนิวยอร์กซิตี้คืออะไร?",
    "context": "CREATE TABLE table_name_30 (airport VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_94 WHERE iata = \"osl\"",
    "question_en": "What is the Country when the IATA was osl?",
    "question_th": "ประเทศใดเมื่อ IATA เป็น 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_en": "Which Division has a Year larger than 1996,a Regular Season of 4th, and a Playoffs of final?",
    "question_th": "ดิวิชั่นใดที่มีปีใหญ่กว่าปี 1996 มีฤดูกาลปกติที่ 4 และรอบตัดเชือกรอบชิงชนะเลิศ",
    "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_en": "Which League that has a Open Cup of 1st round, and a Year of 2009?",
    "question_th": "ลีกใดที่มี Open Cup รอบ 1 และปี 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_en": "Which Playoffs has a Division of 2 and a Regular Season of 4th, southeast?",
    "question_th": "รอบตัดเชือกใดที่มีดิวิชั่น 2 และฤดูกาลปกติที่ 4 ทางตะวันออกเฉียงใต้",
    "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_en": "What are the least amount of points that have points for greater than 438, and points against greater than 943?",
    "question_th": "จำนวนคะแนนน้อยที่สุดที่มีคะแนนมากกว่า 438 และคะแนนต่อมากกว่า 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_en": "What are the highest losses that have points agaisnt less than 956, high park demons as the club, and points less than 16?",
    "question_th": "อะไรคือความสูญเสียสูงสุดที่มีคะแนนไม่ต่ำกว่า 956 ปีศาจปาร์คสูงเป็นสโมสร และคะแนนน้อยกว่า 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_en": "What club has losses greater than 1, 4 for the wins, with points against less than 894?",
    "question_th": "สโมสรใดที่แพ้มากกว่า 1, 4 สำหรับชัยชนะ โดยมีแต้มต่อน้อยกว่า 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_en": "How many losses have points against greater than 592, with high park demons as the club, and points for greater than 631?",
    "question_th": "มีการสูญเสียกี่คะแนนต่อมากกว่า 592 โดยมีปีศาจปาร์คสูงเป็นสโมสรและมีคะแนนมากกว่า 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_en": "What losses have points for less than 1175, wins greater than 2, points against greater than 894, and 24 as the points?",
    "question_th": "การสูญเสียใดบ้างที่มีคะแนนน้อยกว่า 1,175 ชนะมากกว่า 2 แต้มต่อมากกว่า 894 และมี 24 แต้ม?",
    "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_en": "What's the smallest track written by dennis linde that's 2:50 minutes long",
    "question_th": "เพลงที่เล็กที่สุดเขียนโดยเดนนิส ลินเด้ ที่มีความยาว 2:50 นาที",
    "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_en": "How long is the song titled burning love?",
    "question_th": "เพลงชื่อ 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_en": "When was the song titled if you talk in your sleep released?",
    "question_th": "เพลงชื่อ if you talk in your sleep ปล่อยออกมาเมื่อไหร่?",
    "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_en": "What is the city that is located in California when the year is greater than 2009?",
    "question_th": "เมืองใดที่ตั้งอยู่ในแคลิฟอร์เนียเมื่อมากกว่าปี 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_en": "What is the host in a year greater than 1989 and when the venue is the Staples Center located in California?",
    "question_th": "หนึ่งปีเจ้าภาพยิ่งใหญ่กว่าปี 1989 และเมื่อใดที่สถานที่จัดงานคือ Staples Center ที่แคลิฟอร์เนีย?",
    "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_en": "What is the venue in 2011, when the state is California?",
    "question_th": "สถานที่จัดงานในปี 2011 เมื่อรัฐคือแคลิฟอร์เนียคืออะไร?",
    "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_en": "What is the wards/branches of the fort smith Arkansas stake?",
    "question_th": "วอร์ด/สาขาของสเตคป้อมสมิธอาร์คันซอคืออะไร?",
    "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_en": "What stake has realtor for American equity realty as their occupation?",
    "question_th": "นายหน้าอสังหาริมทรัพย์ชาวอเมริกันมีอาชีพอะไรเป็นอาชีพของพวกเขา?",
    "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_en": "What is the organized date of the stake with an occupation of senior buyer for Wal-mart?",
    "question_th": "วันที่จัดของสัดส่วนการถือหุ้นกับผู้ซื้ออาวุโสของ 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_en": "What is the sum of the wards/branches in Arkansas of the North Little Rock Arkansas stake?",
    "question_th": "ผลรวมของวอร์ด/สาขาในอาร์คันซอของสเตคนอร์ธลิตเติลร็อคอาร์คันซอเป็นเท่าใด",
    "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_en": "What stake has 16 wards/branches in Arkansas?",
    "question_th": "สเตคใดมี 16 วอร์ด/สาขาในอาร์คันซอ",
    "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ūryō 14 west\"",
    "question_en": "What is Stable, when Current Rank is F1 Jūryō 14 West?",
    "question_th": "อะไรคือความเสถียร เมื่ออันดับปัจจุบันคือ F1 Jūryō 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_en": "What is Ring Name, when Current Rank is E0 Maegashira 9 West?",
    "question_th": "Ring Name คืออะไร เมื่ออันดับปัจจุบันคือ 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_en": "What is Birthplace, when Ring Name is Masunoyama Tomoharu?",
    "question_th": "บ้านเกิดคืออะไร เมื่อแหวนชื่อมาสุโนยามะ โทโมฮารุ?",
    "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_en": "What is Current Rank, when Ring Name is Tamaasuka Daisuke?",
    "question_th": "อันดับปัจจุบันคืออะไร เมื่อชื่อแหวนคือ 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_en": "What is Ring Name, when Stable is Kasugano, and when Birthplace is Z Mtskheta , Georgia?",
    "question_th": "ชื่อแหวนคืออะไร เมื่อ Stable คือ Kasugano และเมื่อบ้านเกิดคือ 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_en": "What is Current Rank, when Ring Name is Kimurayama Mamoru?",
    "question_th": "อันดับปัจจุบันคืออะไร เมื่อแหวนชื่อคิมูระยามะ มาโมรุ?",
    "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_en": "Who was the Interview Subject on the Date when there were Pictorials of Christie Brinkley?",
    "question_th": "ใครคือผู้ถูกสัมภาษณ์ในวันที่มีภาพของ 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_en": "In the issue in which the Interview subject was Jesse Jackson, who were there Pictorials of?",
    "question_th": "ในประเด็นที่หัวข้อสัมภาษณ์คือ Jesse Jackson มีรูปของใครบ้าง?",
    "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_en": "Who was the Centerfold model in the issue in which the Interview subject was Paul Simon?",
    "question_th": "ใครคือนางแบบ Centerfold ในประเด็นที่ 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é napoleón duarte\"",
    "question_en": "Who was the Centerfold model in the issue in which the Interview subject was José Napoleón Duarte?",
    "question_th": "ใครคือนางแบบหน้ากลางในประเด็นที่ผู้ถูกสัมภาษณ์คือ José Napoleón 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_en": "Who was the Cover model in the issue in which the Interview subject was Joan Collins?",
    "question_th": "ใครคือนางแบบหน้าปกในประเด็นที่โจแอน คอลลินส์ ผู้ถูกสัมภาษณ์คือใคร?",
    "context": "CREATE TABLE table_name_67 (cover_model VARCHAR, interview_subject VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_85 WHERE round > 9",
    "question_en": "Which date has a round more than 9?",
    "question_th": "วันไหนมีรอบเกิน 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_en": "Who is the driver that one for the winning tpc team qi-meritus that has a round more than 8?",
    "question_th": "ใครคือนักแข่งที่เป็นหนึ่งในทีม tpc ที่ชนะ qi-meritus ที่มีรอบมากกว่า 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_en": "What is the time of 12 December 2009 with record start?",
    "question_th": "วันที่ 12 ธันวาคม 2552 เริ่มทำสถิติเมื่อใด?",
    "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_en": "What is Elizabeth Yarnold's nation?",
    "question_th": "ชาติของ Elizabeth Yarnold คืออะไร?",
    "context": "CREATE TABLE table_name_70 (nation VARCHAR, athlete_s_ VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_59 WHERE unit = \"jiufotang formation\"",
    "question_en": "What country is the Jiufotang Formation located in?",
    "question_th": "การก่อตัวของ Jiufotang ตั้งอยู่ในประเทศใด",
    "context": "CREATE TABLE table_name_59 (location VARCHAR, unit VARCHAR)"
  },
  {
    "answer": "SELECT authors FROM table_name_73 WHERE location = \"mexico\"",
    "question_en": "Which author is located in Mexico?",
    "question_th": "ผู้เขียนคนไหนอยู่ในเม็กซิโก",
    "context": "CREATE TABLE table_name_73 (authors VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_3 WHERE authors = \"wang li duan cheng\"",
    "question_en": "Where is wang li duan cheng located?",
    "question_th": "หวังหลี่ต้วนเฉิง ตั้งอยู่ที่ไหน",
    "context": "CREATE TABLE table_name_3 (location VARCHAR, authors VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_40 WHERE name = \"cathayopterus\"",
    "question_en": "What is the status of the pterosaur named Cathayopterus?",
    "question_th": "สถานะของเรซัวร์ชื่อ 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_en": "Which Years in Orlando has a School/Club Team of texas tech?",
    "question_th": "ปีใดในออร์แลนโดที่มีทีมโรงเรียน / สโมสรของเทคโนโลยีเท็กซัส",
    "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–2009\"",
    "question_en": "Which Nationality has a Player of keith bogans, and a Years in Orlando of 2006–2009?",
    "question_th": "สัญชาติใดมีผู้เล่นของคีธ โบแกนส์ และอยู่ในออร์แลนโด้ปี 2549-2552",
    "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_en": "What is Pat Burke's Nationality?",
    "question_th": "สัญชาติของ Pat Burke คืออะไร?",
    "context": "CREATE TABLE table_name_34 (nationality VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT school_club_team FROM table_name_36 WHERE player = \"michael bradley\"",
    "question_en": "Which School/Club Team has a Player of michael bradley?",
    "question_th": "ทีมโรงเรียน/สโมสรใดมีผู้เล่นของ 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_en": "Which Years in Orlando has a School/Club Team of kentucky?",
    "question_th": "ปีใดในออร์แลนโดที่มีทีมโรงเรียน/สโมสรของรัฐเคนตักกี้",
    "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_en": "Which School/Club Team has a Player of jud buechler?",
    "question_th": "ทีมโรงเรียน/สโมสรใดมีผู้เล่นของ 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_en": "What is the position for years under 1999?",
    "question_th": "ตำแหน่งในปี พ.ศ. 2542 คืออะไร?",
    "context": "CREATE TABLE table_name_2 (pos VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT AVG(year) FROM table_name_46 WHERE team = \"team oreca\"",
    "question_en": "What is the average year for Team Oreca?",
    "question_th": "ปีเฉลี่ยของ 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_en": "Which Position has an Against larger than 17, and a Team of juventus, and a Drawn smaller than 4?",
    "question_th": "ตำแหน่งใดที่มีจำนวนมากกว่า 17 และทีมยูเวนตุส และเสมอน้อยกว่า 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_en": "Which Lost has an Against of 49 and a Played smaller than 20?",
    "question_th": "แพ้ใดมีแต้มต่อ 49 และเล่นน้อยกว่า 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_en": "In which championship had a previous champion of \"defeated Justin Corino in tournament final\"?",
    "question_th": "แชมป์รายการไหนมีแชมป์ก่อนหน้านี้ \"แพ้ จัสติน โคริโน ในทัวร์นาเมนต์ชิงชนะเลิศ\"?",
    "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_en": "Which location had previous champions of Mike Webb and Nick Fahrenheit?",
    "question_th": "สถานที่ใดเคยมีแชมป์ของ Mike Webb และ 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_en": "Who were the previous champions from the event won on May 1, 2010?",
    "question_th": "ใครคือแชมป์คนก่อนจากการแข่งขันที่ชนะในวันที่ 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_en": "Who is the current champion for the event in Beverly, MA, with previous champions of Mike Webb and Nick Fahrenheit?",
    "question_th": "ใครคือแชมป์คนปัจจุบันของงานที่เมืองเบเวอร์ลี่ รัฐแมสซาชูเซตส์ กับแชมป์คนก่อนอย่าง Mike Webb และ 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_en": "Who is the current champion in the NECW Heavyweight Championship?",
    "question_th": "ใครคือแชมป์ปัจจุบันในการแข่งขัน 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_en": "Which location held the Iron 8 Championship tournament?",
    "question_th": "สถานที่ใดจัดการแข่งขัน Iron 8 Championship?",
    "context": "CREATE TABLE table_name_65 (location VARCHAR, championship VARCHAR)"
  },
  {
    "answer": "SELECT capacity FROM table_name_4 WHERE volts = \"3500v\"",
    "question_en": "What is the capacity of 3500v volts?",
    "question_th": "แรงดันไฟฟ้า 3500v ความจุเท่าไหร่ครับ?",
    "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_en": "How many volts has an energy-to-weight ratio of 54 kj/kg to 2.0v?",
    "question_th": "กี่โวลต์มีอัตราส่วนพลังงานต่อน้ำหนักที่ 54 กิโลจูล/กก. ถึง 2.0 โวลต์",
    "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_en": "What is the capacity with 2.7v volts and a power-to-weight ratio of 5.44 w/kg c/1 (1.875a)?",
    "question_th": "ความจุ 2.7 โวลต์และอัตราส่วนกำลังต่อน้ำหนัก 5.44 วัตต์/กก. 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_en": "Which season led to a position of 13, and a head coach of Protasov Lyutyi Talalayev Balakhnin Baidachny?",
    "question_th": "ฤดูกาลใดที่นำไปสู่ตำแหน่ง 13 และหัวหน้าโค้ชของ 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_en": "Which week had the highest attendance with 58,701?",
    "question_th": "สัปดาห์ใดมีผู้เข้าร่วมสูงสุดด้วยจำนวน 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_en": "What was the score of the game against the San Diego Chargers?",
    "question_th": "ในเกมกับซานดิเอโก ชาร์จเจอร์สมีสกอร์เท่าไหร่?",
    "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_en": "When was the attendance less than 44,851 during the first 4 weeks of the season?",
    "question_th": "เมื่อใดที่มีผู้เข้าร่วมน้อยกว่า 44,851 คนในช่วง 4 สัปดาห์แรกของฤดูกาล?",
    "context": "CREATE TABLE table_name_90 (date VARCHAR, week VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_11 WHERE week = 13",
    "question_en": "On week 13 what was the score of the game?",
    "question_th": "สัปดาห์ที่ 13 คะแนนของเกมคือเท่าไร?",
    "context": "CREATE TABLE table_name_11 (result VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT SUM(week) FROM table_name_87 WHERE attendance = \"58,025\"",
    "question_en": "What week had 58,025 in attendance?",
    "question_th": "สัปดาห์ใดที่มีผู้เข้าร่วม 58,025 คน?",
    "context": "CREATE TABLE table_name_87 (week INTEGER, attendance VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_26 WHERE attendance = \"58,025\"",
    "question_en": "When was the game that had 58,025 people in attendance?",
    "question_th": "เกมที่มีผู้เข้าร่วม 58,025 คนคือเมื่อไหร่?",
    "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_en": "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?",
    "question_th": "จำนวนเกมที่เสมอน้อยที่สุดสำหรับ Team Mackenzie คือจำนวนที่เล่นน้อยกว่าและ 11 เกมและคะแนนมากกว่า 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_en": "What number of Points are shown for Team Paulistano where the Drawn is less than 2 and the Against is less than 15?",
    "question_th": "ทีม Paulistano ได้คะแนนกี่แต้ม โดยที่เสมอน้อยกว่า 2 และต่อน้อยกว่า 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_en": "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?",
    "question_th": "อะไรคือการแพ้ต่ำสุดสำหรับทีม Ypiranga-SP โดยที่เกมที่เล่นมากกว่า 10 และประตูที่เสียมากกว่า 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_en": "What is the highest number of Played games with a Position smaller than 2 and Drawn games less than 4?",
    "question_th": "จำนวนเกมที่เล่นสูงสุดโดยตำแหน่งน้อยกว่า 2 และเกมที่เสมอน้อยกว่า 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_en": "What is the average number of runner-up that National University, which has more than 2 total championships, has?",
    "question_th": "รองชนะเลิศอันดับ 1 ของมหาวิทยาลัยแห่งชาติซึ่งมีแชมป์รวมมากกว่า 2 รายการโดยเฉลี่ยคือเท่าไร?",
    "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_en": "Who was on the Progressive ticket when John T. Norton was on the Democratic ticket?",
    "question_th": "ใครอยู่ในตั๋ว Progressive เมื่อ John T. Norton อยู่ในตั๋ว Democratic?",
    "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_en": "What name is under the Socialist ticket when Thomas J. Kreuzer was on the Democratic ticket?",
    "question_th": "ชื่ออะไรอยู่ใต้ตั๋ว Socialist เมื่อ Thomas J. Kreuzer อยู่ในตั๋ว Democratic?",
    "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_en": "Who ran under the Republican ticket when Frank H. Hiscock ran under the Progressive ticket?",
    "question_th": "ใครวิ่งอยู่ใต้ตั๋วของพรรครีพับลิกันเมื่อ Frank H. Hiscock วิ่งอยู่ใต้ตั๋ว Progressive?",
    "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_en": "What name ran for the Prohibition ticket when the Progressive ticket was Eugene M. Travis?",
    "question_th": "ชื่ออะไรสำหรับตั๋ว Prohibition เมื่อตั๋ว Progressive คือ 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_en": "When Coleridge A. Hart ran under the Prohibition ticket who ran under the Independence League ticket?",
    "question_th": "เมื่อ Coleridge A. Hart วิ่งภายใต้ตั๋ว Prohibition ที่วิ่งภายใต้ตั๋ว Independence League?",
    "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_en": "With the Republican ticket of Frank M. Williams who was the Progressive ticket?",
    "question_th": "กับตั๋วพรรครีพับลิกันของ Frank M. Williams ใครคือตั๋ว Progressive?",
    "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_en": "What kind of Prohibition ticket that has a Office of lieutenant governor?",
    "question_th": "ตั๋วห้ามแบบไหนที่มีสำนักงานรองผู้ว่าราชการจังหวัด?",
    "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_en": "Which Socialist Labor ticket has a Office of secretary of state?",
    "question_th": "ตั๋ว Socialist Labour ใดที่มีสำนักงานเลขาธิการแห่งรัฐ",
    "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_en": "What kind of Republican ticket has a Prohibition ticket of stephen mead wing?",
    "question_th": "ตั๋วรีพับลิกันแบบไหนที่มีตั๋วห้ามของสตีเฟน มี้ดวิง?",
    "context": "CREATE TABLE table_name_27 (republican_ticket VARCHAR, prohibition_ticket VARCHAR)"
  },
  {
    "answer": "SELECT democratic_ticket FROM table_name_14 WHERE office = \"comptroller\"",
    "question_en": "What is the kind of Democratic ticket has a Office of comptroller?",
    "question_th": "ตั๋วประชาธิปัตย์มีสำนักงานบัญชีประเภทใดบ้าง?",
    "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_en": "Which Prohibition ticket has a Socialist Labor ticket of joseph smith?",
    "question_th": "ตั๋ว Prohibition ใดที่มีตั๋ว Socialist Labor 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_en": "What is the lowest grid number when Colin Edwards is the rider?",
    "question_th": "หมายเลขกริดต่ำสุดเมื่อ Colin Edwards เป็นนักบิดคืออะไร?",
    "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_en": "What is the time/retired when there are less than 22 laps and honda is the manufacturer?",
    "question_th": "เวลา/เลิกใช้เมื่อครบ 22 รอบน้อยกว่า 22 รอบและฮอนด้าเป็นผู้ผลิตคือเมื่อใด",
    "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_en": "What is the average number of laps when the grid number is 9?",
    "question_th": "จำนวนรอบโดยเฉลี่ยเมื่อหมายเลขกริดคือ 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_en": "What is the highest number of laps when honda is the manufacturer and the grid number is 12?",
    "question_th": "จำนวนรอบสูงสุดเมื่อฮอนด้าเป็นผู้ผลิตและหมายเลขกริดคือ 12 คือเท่าไร?",
    "context": "CREATE TABLE table_name_27 (laps INTEGER, manufacturer VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT rider FROM table_name_28 WHERE grid = 3",
    "question_en": "Who is the rider when the grid number is 3?",
    "question_th": "ใครคือไรเดอร์เมื่อเลขกริดคือ 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_en": "How many laps were driven when the time/retired is +44.284?",
    "question_th": "ขับไปแล้วกี่รอบเมื่อเวลา/เกษียณคือ +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_en": "What is the value of the coin weighing 10.5 g and made of cupronickel?",
    "question_th": "เหรียญทำจากคิวโปรนิกเกิล หนัก 10.5 กรัม มีราคาเท่าไหร่?",
    "context": "CREATE TABLE table_name_52 (value VARCHAR, composition VARCHAR, weight VARCHAR)"
  },
  {
    "answer": "SELECT composition FROM table_name_67 WHERE €_equiv = \"0.30\"",
    "question_en": "What is the coin with a € equivalency of 0.30 made of?",
    "question_th": "เหรียญที่มีค่าเท่ากับ € 0.30 ทำมาจากอะไร?",
    "context": "CREATE TABLE table_name_67 (composition VARCHAR, €_equiv VARCHAR)"
  },
  {
    "answer": "SELECT composition FROM table_name_33 WHERE weight = \"3 g\"",
    "question_en": "What is the coin that weighs 3 g made of?",
    "question_th": "เหรียญหนัก 3 กรัม ทำมาจากอะไร?",
    "context": "CREATE TABLE table_name_33 (composition VARCHAR, weight VARCHAR)"
  },
  {
    "answer": "SELECT diameter FROM table_name_80 WHERE €_equiv = \"0.60\"",
    "question_en": "What is the diameter of the coin with a € equivalence of 0.60?",
    "question_th": "เส้นผ่านศูนย์กลางของเหรียญคือเท่าไรซึ่งเทียบเท่ากับ €0.60?",
    "context": "CREATE TABLE table_name_80 (diameter VARCHAR, €_equiv VARCHAR)"
  },
  {
    "answer": "SELECT weight FROM table_name_52 WHERE diameter = \"14mm\"",
    "question_en": "How much does the coin with a 14mm diameter weigh?",
    "question_th": "เหรียญที่มีเส้นผ่านศูนย์กลาง 14 มม. มีน้ำหนักเท่าไหร่?",
    "context": "CREATE TABLE table_name_52 (weight VARCHAR, diameter VARCHAR)"
  },
  {
    "answer": "SELECT coverage FROM table_name_5 WHERE frequency = \"99.5mhz\"",
    "question_en": "What is the coverage for the 99.5mhz frequency?",
    "question_th": "คลื่นความถี่ 99.5mhz ครอบคลุมแค่ไหน?",
    "context": "CREATE TABLE table_name_5 (coverage VARCHAR, frequency VARCHAR)"
  },
  {
    "answer": "SELECT power__kw_ FROM table_name_63 WHERE coverage = \"general santos\"",
    "question_en": "What is the power in kW corresponding to the station that covers General Santos?",
    "question_th": "กำลังไฟฟ้าเป็นกิโลวัตต์ที่สอดคล้องกับสถานีที่ครอบคลุม 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_en": "What is the branding for the station with a frequency of 93.1mhz and a coverage of Zamboanga?",
    "question_th": "ตราสินค้าสำหรับสถานีที่มีความถี่ 93.1mhz และความครอบคลุมของ 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_en": "What is the frequency for the 10kw station with DXEZ as its callsign?",
    "question_th": "ความถี่ของสถานี 10kw ที่มี DXEZ เป็นสัญญาณเรียกคือเท่าใด",
    "context": "CREATE TABLE table_name_25 (frequency VARCHAR, power__kw_ VARCHAR, callsign VARCHAR)"
  },
  {
    "answer": "SELECT frequency FROM table_name_53 WHERE callsign = \"dybt\"",
    "question_en": "What is the frequency for the station with DYBT as its callsign?",
    "question_th": "ความถี่ของสถานีที่มี DYBT เป็นสัญญาณเรียกขานคือเท่าใด?",
    "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_en": "What is the branding for the station with a frequency of 93.1mhz and a callsign of DWRX?",
    "question_th": "ตราสินค้าของสถานีที่มีความถี่ 93.1mhz และสัญญาณเรียกขานของ 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_en": "Can you tell me the lowest Total Passengers than has the Location of salvador, and the Rank larger than 5?",
    "question_th": "คุณช่วยบอกฉันได้ไหมว่าจำนวนผู้โดยสารรวมต่ำที่สุดกว่าที่ตั้งของซัลวาดอร์ และอันดับมากกว่า 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_en": "Can you tell me the Annual change that has the Location of manaus?",
    "question_th": "คุณช่วยบอกฉันถึงการเปลี่ยนแปลงประจำปีที่มีที่ตั้งของมาเนาส์ได้ไหม",
    "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_en": "What is the average number of cuts made when there were more than 2 tournaments played in 2011?",
    "question_th": "จำนวนการตัดโดยเฉลี่ยที่เกิดขึ้นเมื่อมีการแข่งขันมากกว่า 2 รายการในปี 2554 คือเท่าใด",
    "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_en": "What is the total number of wins with 10 cuts made and a score average under 74.09?",
    "question_th": "จำนวนชัยชนะทั้งหมดที่มีการตัด 10 ครั้งและคะแนนเฉลี่ยต่ำกว่า 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_en": "What is Madeleine Dupont's shot pct.?",
    "question_th": "เปอร์เซ็นต์ช็อตของ Madeleine Dupont คืออะไร?",
    "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_en": "Can you tell me the Score that has the High assists of rafer alston (8)?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าคะแนนที่มีแอสซิสต์สูงของราเฟอร์ อัลสตัน (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_en": "Can you tell me the High points that has the High rebounds of rafer alston (9)?",
    "question_th": "คุณช่วยบอกฉันถึงคะแนนสูงสุดที่มีการรีบาวด์สูงของ 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_en": "Can you tell me the Score that has the Date of april 8?",
    "question_th": "ช่วยบอกคะแนนที่มีวันที่ 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_en": "What's the highest attendance for a game the Texan's played at Arrowhead Stadium?",
    "question_th": "ผู้เข้าชมสูงสุดสำหรับเกมที่ Texan เล่นที่ Arrowhead Stadium คืออะไร?",
    "context": "CREATE TABLE table_name_87 (attendance INTEGER, game_site VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_37 WHERE week = \"4\"",
    "question_en": "Who did the Texan's play on Week 4?",
    "question_th": "ใครเล่นเท็กซัสในสัปดาห์ที่ 4?",
    "context": "CREATE TABLE table_name_37 (opponent VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_63 WHERE week = \"hof\"",
    "question_en": "What's the date for HOF week?",
    "question_th": "สัปดาห์ HOF วันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_63 (date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT total FROM table_name_77 WHERE fa_cup = \"1 0 (3)\"",
    "question_en": "What is Total, when FA Cup is 1 0 (3)?",
    "question_th": "Total คืออะไร เมื่อ FA Cup คือ 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_en": "What is the lowest number of delegates when John McCain was the candidate with less than 45 candidates?",
    "question_th": "จำนวนผู้ร่วมประชุมต่ำสุดเมื่อ John McCain เป็นผู้สมัครที่มีผู้สมัครน้อยกว่า 45 คนคือเท่าใด",
    "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_en": "What is the highest Counties when Mitt Romney was the candidate with less than 0 delegates?",
    "question_th": "มณฑลใดที่สูงที่สุดเมื่อ Mitt Romney เป็นผู้สมัครที่มีผู้ได้รับมอบหมายน้อยกว่า 0 คน",
    "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_en": "What is the number of votes when Ron Paul is the candidate with less than 0 counties?",
    "question_th": "จำนวนคะแนนเสียงเมื่อ Ron Paul เป็นผู้สมัครที่มีน้อยกว่า 0 มณฑลคือเท่าใด",
    "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_en": "What is the sum of totals associated with a UEFA Cup score of 4?",
    "question_th": "ผลรวมของคะแนนรวมที่เกี่ยวข้องกับคะแนนยูฟ่าคัพ 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_en": "What is the sum of totals for FA Cup values of 0?",
    "question_th": "ผลรวมของค่า FA Cup ที่เป็น 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_en": "What is the Hometown of Tim Williams?",
    "question_th": "บ้านเกิดของ 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_en": "What player has a rating greater than 2746, with a prev less than 4, and +4 as the chng?",
    "question_th": "ผู้เล่นคนใดที่มีเรตติ้งมากกว่า 2746 โดยมีค่าก่อนหน้าน้อยกว่า 4 และ +4 เป็น 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_en": "What chng has a rank greater than 6, with 12 as a prev?",
    "question_th": "chng ใดมีอันดับมากกว่า 6 โดยมี 12 เป็นรายการก่อนหน้า",
    "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_en": "What is the highest prev that has 9 as the rank, with a rating less than 2746?",
    "question_th": "ก่อนหน้าสูงสุดที่มีอันดับ 9 โดยมีเรตติ้งน้อยกว่า 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_en": "How many blocks have a weight greater than 82, and a height less than 199?",
    "question_th": "มีกี่บล็อกที่มีน้ำหนักมากกว่า 82 และสูงน้อยกว่า 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_en": "What is the lowest block that has 328 as the spike, and a height less than 186?",
    "question_th": "บล็อกต่ำสุดที่มีหนามแหลม 328 และความสูงน้อยกว่า 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_en": "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?",
    "question_th": "บล็อกต่ำสุดที่มีความสูงน้อยกว่า 202, 19.06.1980 เป็นวันเกิด และมีน้ำหนักมากกว่า 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_en": "What is the highest block that has 15.09.1981 as the date, and a height greater than 202?",
    "question_th": "บล็อกสูงสุดที่มีวันที่ 15.09.1981 และความสูงมากกว่า 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óbal\"",
    "question_en": "Which City has a Stadium of estadio san cristóbal?",
    "question_th": "เมืองใดมีสนามกีฬาเอสตาดิโอ ซาน คริสโตบัล?",
    "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_en": "When in 2009 season has a Group of group b, and cancha del mystic with a Club of el tecal?",
    "question_th": "เมื่อใดในฤดูกาล 2009 มีกลุ่มของกลุ่ม b และ cancha del mystic กับสโมสรของ el tecal?",
    "context": "CREATE TABLE table_name_17 (club VARCHAR, group VARCHAR, stadium VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_name_93 WHERE city = \"colón\"",
    "question_en": "WHich Club has a City of colón?",
    "question_th": "สโมสรใดมีเมืองโคลอน?",
    "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_en": "WHat kind of 2009 season has a City of panama city, and a Group of group b?",
    "question_th": "ฤดูกาล 2009 แบบไหนที่มีเมืองปานามาซิตี้และกลุ่มของกลุ่ม b?",
    "context": "CREATE TABLE table_name_21 (city VARCHAR, group VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_38 WHERE club = \"suntracs f.c.\"",
    "question_en": "Which City has a Club of suntracs f.c.?",
    "question_th": "เมืองไหนมีสโมสรซันแทรคส์เอฟซี?",
    "context": "CREATE TABLE table_name_38 (city VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT MAX(matches) FROM table_name_5 WHERE prize_money = \"£5,000\"",
    "question_en": "What is the highest Matches, when Prize Money is £5,000?",
    "question_th": "การแข่งขันสูงสุดคือเมื่อเงินรางวัลอยู่ที่ 5,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_en": "What is Date, when Matches is less than 32, and when Round is Fifth Round Proper?",
    "question_th": "วันที่คืออะไร เมื่อการแข่งขันน้อยกว่า 32 และเมื่อรอบที่ห้าเหมาะสม?",
    "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_en": "What is the average Matches, when Round is Third Qualifying Round?",
    "question_th": "การแข่งขันโดยเฉลี่ยคือเท่าใด เมื่อรอบเป็นรอบคัดเลือกรอบสาม?",
    "context": "CREATE TABLE table_name_81 (matches INTEGER, round VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(matches) FROM table_name_16 WHERE clubs = \"588 → 406\"",
    "question_en": "What is the total number of Matches, when Clubs is 588 → 406?",
    "question_th": "จำนวนแมตช์ทั้งหมดเป็นเท่าใด เมื่อไม้กอล์ฟเป็น 588 → 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_en": "What is Prize Money, when Matches is less than 73, and when Round is Third Round Proper?",
    "question_th": "เงินรางวัลคืออะไร เมื่อการแข่งขันน้อยกว่า 73 และเมื่อรอบที่สามเหมาะสม?",
    "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_en": "For the tournament played on a hard surface and ending with a score of Walkover, who was the Finals opponent?",
    "question_th": "สำหรับทัวร์นาเมนต์นี้เล่นบนพื้นแข็งและจบลงด้วยคะแนน Walkover ใครคือคู่ต่อสู้รอบชิงชนะเลิศ?",
    "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_en": "For the tournament played on September 25, 1995, who was the Finals opponent?",
    "question_th": "สำหรับทัวร์นาเมนต์ที่เล่นเมื่อวันที่ 25 กันยายน พ.ศ. 2538 คู่ต่อสู้รอบชิงชนะเลิศคือใคร?",
    "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_en": "Which tournament was played on September 25, 1995?",
    "question_th": "ทัวร์นาเมนต์ใดที่เล่นในวันที่ 25 กันยายน พ.ศ. 2538?",
    "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_en": "What was the time for the bout against Amanda Lavoy, which went under 3 rounds?",
    "question_th": "ไฟต์กับ อแมนดา ลาวอย ไม่เกิน 3 ยก กี่โมง?",
    "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_en": "What is Notes, when App(L/C/E) is 13 (7/2/4)?",
    "question_th": "Notes คืออะไร เมื่อ App(L/C/E) คือ 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_en": "What is Nat., when Ends is greater than 2010, when Since is 2006, and when Name is Paligeorgos?",
    "question_th": "Nat คืออะไร เมื่อ Ends มากกว่าปี 2010 เมื่อ Since คือปี 2006 และเมื่อใดชื่อ 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_en": "What is the lowest Since, when Notes is To Anagennisi Karditsa, and when App(L/C/E) is 0 (0/0/0)?",
    "question_th": "ค่าต่ำสุดตั้งแต่เมื่อใดคือ Notes ถึง Anagennisi Karditsa และเมื่อ App(L/C/E) เป็น 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_en": "What is the Time/Retired of the Newman-Haas Racing team in under 51 laps?",
    "question_th": "เวลา / เกษียณของทีม Newman-Haas Racing ในรอบต่ำกว่า 51 รอบคือเท่าไร?",
    "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_en": "What are the lowest laps Alex Tagliani did for the Forsythe Racing team?",
    "question_th": "Alex Tagliani ทำรอบต่ำสุดให้กับทีม Forsythe Racing คือเท่าใด",
    "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_en": "What is the 2010–11 when the Event is colonial square ladies classic?",
    "question_th": "2010–11 คืออะไรเมื่องานเป็น 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_en": "What is the 2007–08 when the event was autumn gold?",
    "question_th": "เหตุการณ์ปี 2550–51 เป็นช่วงฤดูใบไม้ร่วงสีทองคืออะไร",
    "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_en": "Which Cultural and Educational Panel has a Labour Panel larger than 5, and an Industrial and Commercial Panel larger than 9?",
    "question_th": "คณะกรรมการวัฒนธรรมและการศึกษาใดที่มีคณะกรรมการด้านแรงงานใหญ่กว่า 5 และคณะกรรมการอุตสาหกรรมและการพาณิชย์มีขนาดใหญ่กว่า 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_en": "Which Administrative Panel has a Nominated by the Taoiseach smaller than 0?",
    "question_th": "คณะกรรมการบริหารชุดใดที่ได้รับการเสนอชื่อโดย Taoiseach น้อยกว่า 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_en": "Which Labour Panel has an Industrial and Commercial Panel of 9, and a University of Dublin smaller than 3?",
    "question_th": "คณะกรรมการแรงงานใดมีคณะกรรมการอุตสาหกรรมและการพาณิชย์ 9 คน และมหาวิทยาลัยดับลินเล็กกว่า 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_en": "Which Total has a Labour Panel smaller than 5, an Administrative Panel smaller than 1, and a National University of Ireland smaller than 2?",
    "question_th": "ผลรวมใดที่มีคณะทำงานด้านแรงงานน้อยกว่า 5 คณะกรรมการฝ่ายบริหารน้อยกว่า 1 และมหาวิทยาลัยแห่งชาติไอร์แลนด์เล็กกว่า 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_en": "Which Agricultural Panel has a Nominated by the Taoiseach larger than 6, and a Total larger than 60?",
    "question_th": "คณะกรรมการเกษตรใดที่ได้รับการเสนอชื่อโดย Taoiseach มากกว่า 6 และผลรวมมากกว่า 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_en": "What is Team 1 when Team 2 is Jac Port-Gentil?",
    "question_th": "ทีม 1 คืออะไร เมื่อทีม 2 คือ 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_en": "What is Winning Score, when Tournament is Joburg Open 1, and when Date is 17 Jan 2010?",
    "question_th": "Winning Score คืออะไร เมื่อทัวร์นาเมนต์คือ Joburg Open 1 และเมื่อใดคือวันที่ 17 มกราคม 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_en": "What is Date, when Tournament is Alfred Dunhill Championship 1?",
    "question_th": "วันที่คือเมื่อใดที่การแข่งขันคือ 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_en": "What is Tournament, when Margin is Victory of 6 Strokes?",
    "question_th": "การแข่งขันคืออะไร เมื่อมาร์จิ้นคือชัยชนะ 6 สโตรก?",
    "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_en": "What is Winning Score, when Date is 17 Jan 2010?",
    "question_th": "Winning Score คืออะไร เมื่อวันที่ 17 มกราคม 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_en": "What is Tournament, when Runner(s)-Up is Garth Mulroy?",
    "question_th": "การแข่งขันคืออะไร เมื่อรองชนะเลิศคือ 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_en": "What is Runner(s)-Up, when Margin of Victory is 1 Stroke, and when Tournament is Joburg Open 1?",
    "question_th": "Runner(s)-Up คืออะไร เมื่อ Margin of Victory คือ 1 Stroke และเมื่อ Tournament คือ 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_en": "What is the points sum of the series with less than 0 poles?",
    "question_th": "ผลรวมคะแนนของอนุกรมที่มีน้อยกว่า 0 ขั้วเป็นเท่าใด",
    "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_en": "What is the sum of the races in the 2007 season, which has more than 4 podiums?",
    "question_th": "ผลรวมของการแข่งขันในฤดูกาล 2550 ซึ่งมีมากกว่า 4 โพเดียมเป็นเท่าใด",
    "context": "CREATE TABLE table_name_40 (races INTEGER, podiums VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT SUM(poles) FROM table_name_13 WHERE team = \"la filière\" AND points < 162",
    "question_en": "What is the sum of the poles of Team la filière, which has less than 162 points?",
    "question_th": "ผลรวมของโพลของทีม la filière ซึ่งน้อยกว่า 162 แต้มเป็นเท่าใด",
    "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_en": "What is the average number of points in the 2012 season, which has less than 1 wins and less than 0 podiums?",
    "question_th": "จำนวนคะแนนเฉลี่ยในฤดูกาล 2012 ซึ่งชนะน้อยกว่า 1 ครั้งและน้อยกว่า 0 โพเดียมคือเท่าใด",
    "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_en": "How many poles had a moto2 class?",
    "question_th": "คลาส moto2 มีกี่เสา?",
    "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_en": "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?",
    "question_th": "ผลรวมของคณะกรรมการวัฒนธรรมและการศึกษาที่มีคณะกรรมการบริหารมากกว่า 1 คณะกรรมการเกษตรกรรม 11 คณะกรรมการ และมหาวิทยาลัยดับลินน้อยกว่า 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_en": "What is the sum of Agricultural panels that have an Industrial and Commercial Panel smaller than 0?",
    "question_th": "ผลรวมของแผงการเกษตรที่มีแผงอุตสาหกรรมและการพาณิชย์น้อยกว่า 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_en": "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?",
    "question_th": "จำนวนต่ำสุดของ National University of Ireland ที่มีคณะกรรมการด้านวัฒนธรรมและการศึกษาเท่ากับ 0 และคณะกรรมการด้านแรงงานน้อยกว่า 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_en": "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",
    "question_th": "จำนวนคณะผู้พิจารณาด้านอุตสาหกรรมและการพาณิชย์ที่มีคณะผู้พิจารณาด้านแรงงานมากกว่า 1, คณะที่ได้รับการเสนอชื่อโดย Taoiseach น้อยกว่า 11 และคณะผู้พิจารณาด้านวัฒนธรรมและการศึกษาน้อยกว่า 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_en": "What was the highest number of goals when 2428 minutes were played?",
    "question_th": "จำนวนประตูสูงสุดเมื่อเล่นไป 2,428 นาทีคือเท่าไร?",
    "context": "CREATE TABLE table_name_91 (goals INTEGER, minutes VARCHAR)"
  },
  {
    "answer": "SELECT minutes FROM table_name_8 WHERE goals > 4 AND assists = 3",
    "question_en": "What is the number of minutes when there are more than 4 goals and 3 assists?",
    "question_th": "จำนวนนาทีที่มีมากกว่า 4 ประตูและ 3 แอสซิสต์คือเท่าไร?",
    "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_en": "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?",
    "question_th": "จำนวนแอสซิสต์ทั้งหมดเมื่อ เอ็ดมุนโด โรดริเกซ เล่นตำแหน่งกองหน้า ทำได้น้อยกว่า 4 ประตู และนาทีที่น้อยกว่า 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_en": "What is the least ERP W when the freguency MHz is 89.3 fm?",
    "question_th": "ERP W น้อยที่สุดคือเท่าใดเมื่อความถี่ MHz คือ 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_en": "Call sign k216fo has what average ERP W?",
    "question_th": "สัญญาณเรียกขาน k216fo มี 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_en": "What city does call sign K248am have its license in?",
    "question_th": "สัญญาณเรียกขาน K248am มีใบอนุญาตอยู่ที่เมืองใด",
    "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_en": "What call sign has ERP W greater than 197?",
    "question_th": "สัญญาณเรียกขานใดที่มี ERP W มากกว่า 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_en": "How many points did Costa score in the Macau Grand Prix since 2011?",
    "question_th": "Costa ทำคะแนนได้กี่คะแนนในการแข่งขัน Macau Grand Prix ตั้งแต่ปี 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_en": "Which teams had the 1st position and entered 1 race?",
    "question_th": "ทีมใดได้อันดับที่ 1 และเข้าร่วมการแข่งขัน 1 รายการ?",
    "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_en": "How many points did Carlin have when they had 3 wins?",
    "question_th": "คาร์ลินได้กี่คะแนนเมื่อพวกเขาชนะ 3 ครั้ง?",
    "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_en": "How many Points have an Against smaller than 43, and a Position smaller than 1?",
    "question_th": "มีกี่แต้มที่มีค่า Against น้อยกว่า 43 และมี Position น้อยกว่า 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_en": "How many Drawn have a Position of 7, and Points larger than 18?",
    "question_th": "มีกี่คนที่เสมอกันและมีตำแหน่งที่ 7 และแต้มมากกว่า 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_en": "How many Against have a Team of hespanha, and Points smaller than 30?",
    "question_th": "มีทีม hespanha กี่ทีมที่ต่อต้านและมีคะแนนน้อยกว่า 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_en": "Which Points is the average one that has Drawn of 3, and a Played smaller than 22?",
    "question_th": "แต้มใดคือแต้มเฉลี่ยที่เสมอได้ 3 แต้ม และแต้มที่เล่นน้อยกว่า 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_en": "How much Played has an Against larger than 37, and a Lost of 15, and Points smaller than 11?",
    "question_th": "จำนวนการเล่นที่มีแต้มต่อมากกว่า 37 และแพ้ 15 และแต้มน้อยกว่า 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_en": "Which artist has the Spoofed title Miscue 911?",
    "question_th": "ศิลปินคนไหนมีชื่อปลอมว่า 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_en": "Which Spoofed title is from February 1998?",
    "question_th": "ชื่อที่ปลอมแปลงใดมาจากเดือนกุมภาพันธ์ 1998",
    "context": "CREATE TABLE table_name_47 (spoofed_title VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT artist FROM table_name_32 WHERE date = \"june 1992\"",
    "question_en": "Which artist has a Spoofed title in June 1992?",
    "question_th": "ศิลปินคนไหนมีชื่อล้อเลียนในเดือนมิถุนายน พ.ศ. 2535",
    "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_en": "What was the average number of laps completed by KTM riders, with times of +56.440 and grid values under 11?",
    "question_th": "จำนวนรอบเฉลี่ยที่นักบิด KTM ทำได้สำเร็จโดยมีเวลา +56.440 และค่ากริดต่ำกว่า 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_en": "What was the highest grid value for riders with manufacturer of Aprilia and time of +1.660?",
    "question_th": "ค่ากริดสูงสุดสำหรับนักบิดกับผู้ผลิต Aprilia และเวลา +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_en": "What Round against Aleksander Emelianenko had a time of 5:00?",
    "question_th": "รอบใดที่พบกับ อเล็กซานเดอร์ เอเมลิอาเนนโก มีเวลา 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_en": "In 1958, what has the IRFU All-Stars Home Venue?",
    "question_th": "ในปี 1958 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_en": "On what Date was the Venue at Exhibition Stadium?",
    "question_th": "สนามเอ็กซิบิชั่น สเตเดี้ยม จัดขึ้นวันไหน?",
    "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_en": "Before 1957, what was the largest in Attendance at Varsity Stadium?",
    "question_th": "ก่อนปี 1957 ผู้เข้าชมที่ 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_en": "What is the Time with a Score that is 65-19?",
    "question_th": "เวลาที่มีคะแนน 65-19 คืออะไร?",
    "context": "CREATE TABLE table_name_81 (time VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_91 WHERE away = \"broadview hawks\"",
    "question_en": "What is the Time with an Away that is broadview hawks?",
    "question_th": "เวลากับทีมเยือนที่เป็นเหยี่ยวแบบกว้างคืออะไร?",
    "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_en": "Which Position has an Against of 32, and a Difference of 18, and a Drawn larger than 4?",
    "question_th": "ตำแหน่งใดมีแต้มต่อ 32 และผลต่าง 18 และเสมอมากกว่า 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_en": "Which Position has an Against smaller than 49, and a Drawn of 4?",
    "question_th": "ตำแหน่งใดมีแต้มต่อน้อยกว่า 49 และเสมอ 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_en": "Which Played has a Drawn of 5, and a Team of palmeiras, and a Position smaller than 6?",
    "question_th": "ผู้เล่นคนไหนที่เสมอกัน 5 คน และทีมพัลไมรัส และตำแหน่งที่น้อยกว่า 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_en": "What team played on November 17?",
    "question_th": "ทีมใดเล่นในวันที่ 17 พฤศจิกายน?",
    "context": "CREATE TABLE table_name_17 (team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT comp FROM table_name_83 WHERE ryds = \"2\"",
    "question_en": "What is the comp when the ryds is 2?",
    "question_th": "คอมพ์คืออะไรเมื่อ ryds เป็น 2?",
    "context": "CREATE TABLE table_name_83 (comp VARCHAR, ryds VARCHAR)"
  },
  {
    "answer": "SELECT ratt FROM table_name_49 WHERE comp = \"48\"",
    "question_en": "What is the RAtt when the comp is 48?",
    "question_th": "RAtt คืออะไรเมื่อคอมพ์อายุ 48?",
    "context": "CREATE TABLE table_name_49 (ratt VARCHAR, comp VARCHAR)"
  },
  {
    "answer": "SELECT ratt FROM table_name_83 WHERE long = \"73\"",
    "question_en": "What is the RAtt when the long is 73?",
    "question_th": "RAtt คืออะไรเมื่อความยาวคือ 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_en": "What is the RYds when the RAtt was 2, and the comp is 41?",
    "question_th": "RYds คืออะไรเมื่อ RAtt เป็น 2 และคอมพ์คือ 41",
    "context": "CREATE TABLE table_name_35 (ryds VARCHAR, ratt VARCHAR, comp VARCHAR)"
  },
  {
    "answer": "SELECT long FROM table_name_14 WHERE ryds = \"18\"",
    "question_en": "What is the Long when the ryds is 18?",
    "question_th": "Long คืออะไรเมื่ออายุ 18 ปี?",
    "context": "CREATE TABLE table_name_14 (long VARCHAR, ryds VARCHAR)"
  },
  {
    "answer": "SELECT ravg FROM table_name_93 WHERE ratt = \"3\"",
    "question_en": "What is the RAvg when the ratt is 3?",
    "question_th": "RAvg เป็นเท่าใดเมื่อ ratt เป็น 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_en": "Who was the Runner-up for the merrill lynch/golf digest commemorative pro-am tournament?",
    "question_th": "ใครคือรองชนะเลิศสำหรับทัวร์นาเมนต์โปรแอมที่ระลึก merrill lynch/golf digest?",
    "context": "CREATE TABLE table_name_21 (runner_s__up VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT margin_of_victory FROM table_name_59 WHERE winning_score = –14(70 - 68 - 67 = 205)",
    "question_en": "What was the margin of victory when the winning score was –14 (70-68-67=205)?",
    "question_th": "อะไรคือส่วนต่างของชัยชนะเมื่อคะแนนชนะคือ –14 (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 = –10(69 - 68 - 74 - 67 = 278)",
    "question_en": "Who were the runner(s)-up when the winning score was –10 (69-68-74-67=278)?",
    "question_th": "ใครคือรองชนะเลิศเมื่อคะแนนชนะคือ –10 (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_en": "Who was the runner-up for the mazda senior tournament players championship tournament when the margin of victory was 2 strokes?",
    "question_th": "ใครคือรองชนะเลิศในการแข่งขันชิงแชมป์ผู้เล่นอาวุโสของ Mazda ในตอนที่ชัยชนะอยู่ที่ 2 จังหวะ?",
    "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_en": "When was the last title of the team with a home ground of Sydney cricket ground?",
    "question_th": "ตำแหน่งสุดท้ายของทีมที่มีสนามเหย้าของสนามคริกเก็ตซิดนีย์คือเมื่อใด",
    "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_en": "How many people were in attendance for the game week 15?",
    "question_th": "มีผู้เข้าร่วมเกมสัปดาห์ที่ 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_en": "What is the highest number of people in attendance in the game against the Buffalo Bills in a week later than 14?",
    "question_th": "จำนวนผู้เข้าร่วมในเกมกับบัฟฟาโล บิลล์สในหนึ่งสัปดาห์หลังจาก 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_en": "What is the average Attendance for the game on November 1, 1981?",
    "question_th": "ผู้เข้าร่วมเกมโดยเฉลี่ยในวันที่ 1 พฤศจิกายน พ.ศ. 2524 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_5 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_8 WHERE team = \"chicago cubs\"",
    "question_en": "What position is played by the player from the Chicago Cubs?",
    "question_th": "ผู้เล่นจาก 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_en": "What is the name of the Outfielder that was picked prior to Pick 42?",
    "question_th": "Outfielder ที่ถูกเลือกก่อน 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_en": "What is the Week when anke huber chanda rubin shows for Semi finalists, and the Runner-up is meredith mcgrath larisa savchenko?",
    "question_th": "สัปดาห์ใดที่ anke huber chanda rubin แสดงสำหรับผู้เข้ารอบรองชนะเลิศ และรองชนะเลิศคือ 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_en": "What is the Semi finalists when the Runner-up was katrina adams zina garrison-jackson?",
    "question_th": "ผู้เข้ารอบรองชนะเลิศคืออะไรเมื่อรองชนะเลิศคือ 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_en": "What is the Winner when anke huber chanda rubin was semi finalist?",
    "question_th": "ผู้ชนะคืออะไรเมื่ออังเค ฮูเบอร์ ชานดา รูบิน เข้ารอบรองชนะเลิศ?",
    "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_en": "What is the Tier when the runner-up is chanda rubin caroline vis?",
    "question_th": "รองชนะเลิศคือ จันดา รูบิน แคโรไลน์ วิส เทียร์อะไร?",
    "context": "CREATE TABLE table_name_95 (tier VARCHAR, runner_up VARCHAR)"
  },
  {
    "answer": "SELECT week_of FROM table_name_88 WHERE winner = \"mary joe fernández 6–4, 7–5\"",
    "question_en": "What is the Week when the winner was mary joe fernández 6–4, 7–5?",
    "question_th": "สัปดาห์ใดที่ผู้ชนะคือ แมรี่ โจ เฟอร์นันเดซ 6–4, 7–5",
    "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ández natalia zvereva 5–7, 6–1, 6–4\"",
    "question_en": "What is the Runner-up with the tier was tier ii, and a Winner of gigi fernández natalia zvereva 5–7, 6–1, 6–4?",
    "question_th": "รองชนะเลิศระดับใดคือระดับ ii และผู้ชนะของ gigi fernández natalia zvereva 5–7, 6–1, 6–4",
    "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_en": "Which week had safe as the result and Dolly Parton as the theme?",
    "question_th": "สัปดาห์ไหนที่ปลอดภัยและดอลลี่ พาร์ตันเป็นธีมหลัก",
    "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_en": "On which week was the beatles the original artist and the order # smaller than 10?",
    "question_th": "บีเทิลส์เป็นศิลปินดั้งเดิมในสัปดาห์ใดและลำดับ # น้อยกว่า 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_en": "Which original artist had 5 as their order #?",
    "question_th": "ศิลปินดั้งเดิมคนไหนที่มี 5 ตามลำดับ #?",
    "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_en": "Which nominee was nominated in the Outstanding Director of a Musical category?",
    "question_th": "ผู้ได้รับการเสนอชื่อคนใดได้รับการเสนอชื่อเข้าชิงผู้กำกับดีเด่นประเภทละครเพลง?",
    "context": "CREATE TABLE table_name_17 (nominee VARCHAR, category VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_46 WHERE nominee = \"brent spiner\"",
    "question_en": "What is the result for Brent Spiner?",
    "question_th": "ผลลัพธ์ของ 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_en": "What is the number of games for Shaun Stonerook?",
    "question_th": "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_en": "What is the highest total number of medals of the nation with less than 1 bronzes and less than 0 silver medals?",
    "question_th": "จำนวนเหรียญรวมสูงสุดของประเทศที่ได้น้อยกว่า 1 เหรียญทองแดง และน้อยกว่า 0 เหรียญเงิน คือข้อใด",
    "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_en": "Total weeks of 49,980 attendance?",
    "question_th": "จำนวนผู้เข้าอบรมทั้งหมด 49,980 สัปดาห์?",
    "context": "CREATE TABLE table_name_55 (week INTEGER, attendance VARCHAR)"
  },
  {
    "answer": "SELECT AVG(attendance) FROM table_name_91 WHERE date = \"december 22, 1980\"",
    "question_en": "Mean attendance for December 22, 1980?",
    "question_th": "การเข้าร่วมเฉลี่ยของวันที่ 22 ธันวาคม 1980?",
    "context": "CREATE TABLE table_name_91 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_63 WHERE week = 4",
    "question_en": "Overall attendance for week 4?",
    "question_th": "การเข้าร่วมโดยรวมสำหรับสัปดาห์ที่ 4?",
    "context": "CREATE TABLE table_name_63 (attendance VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT 2007 FROM table_name_10 WHERE 1999 = \"3r\"",
    "question_en": "What was in 2007 that has a 3r of 1999?",
    "question_th": "อะไรคือสิ่งที่ในปี 2550 ที่มี 3r ของปี 2542?",
    "context": "CREATE TABLE table_name_10 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2007 FROM table_name_73 WHERE 2004 = \"2r\" AND 2010 = \"a\"",
    "question_en": "What was in 2007 that is from 2004 0f 2r and 2010 of A?",
    "question_th": "ในปี 2550 คืออะไรตั้งแต่ปี 2004 0f 2r และ 2010 ของ A",
    "context": "CREATE TABLE table_name_73 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2001 FROM table_name_71 WHERE 2006 = \"2r\" AND 2010 = \"a\"",
    "question_en": "What is in 2001, that has the year 2006, 2r, and in 2010 an A?",
    "question_th": "คืออะไรในปี 2544 ซึ่งมีปี 2549, 2r และในปี 2010 เป็น 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_en": "Who was awarded after 1947 in the category of, the best actor in a leading role?",
    "question_th": "ใครได้รับรางวัลหลังปี 1947 ในสาขานักแสดงนำชายยอดเยี่ยม?",
    "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_en": "Which Opponent has a Method of tko, and a Location of elgin, illinois, usa on 2001-02-11?",
    "question_th": "ฝ่ายตรงข้ามคนใดที่มีวิธี tko และที่ตั้งของเอลจิน อิลลินอยส์ สหรัฐอเมริกา เมื่อวันที่ 11-02-2544",
    "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_en": "Which Round has a Location of auckland, new zealand, and a Method of tko on 1994-11-24?",
    "question_th": "รอบใดมีที่ตั้งของโอ๊คแลนด์ นิวซีแลนด์ และวิธีการของ tko เมื่อวันที่ 24-11-2537",
    "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_en": "Which highest Round has a Result of loss?",
    "question_th": "รอบสูงสุดใดมีผลแพ้?",
    "context": "CREATE TABLE table_name_27 (round INTEGER, result VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_40 WHERE method = \"decision\"",
    "question_en": "Which Location has a Method of decision?",
    "question_th": "สถานที่ใดมีวิธีการตัดสินใจ?",
    "context": "CREATE TABLE table_name_40 (location VARCHAR, method VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_77 WHERE 2004 = \"1r\" AND 2007 = \"1r\"",
    "question_en": "What tournament has 1r as a 2004, and 1r as a 2007?",
    "question_th": "ทัวร์นาเมนต์ใดที่มี 1r ในปี 2004 และ 1r ในปี 2007",
    "context": "CREATE TABLE table_name_77 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2012 FROM table_name_31 WHERE 2010 = \"q2\" AND tournament = \"wimbledon\"",
    "question_en": "What 2012 has q2 as the 2010, and wimbledon as the tournament?",
    "question_th": "ปี 2012 ใดที่มีไตรมาส 2 เป็นปี 2010 และวิมเบิลดันเป็นทัวร์นาเมนต์",
    "context": "CREATE TABLE table_name_31 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2006 FROM table_name_95 WHERE 2010 = \"grand slam tournaments\"",
    "question_en": "What 2006 has grand slam tournaments of 2010?",
    "question_th": "ปี 2549 มีการแข่งขันแกรนด์สแลมปี 2553 ใดบ้าง",
    "context": "CREATE TABLE table_name_95 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2006 FROM table_name_27 WHERE 2005 = \"grand slam tournaments\"",
    "question_en": "What 2006 has grand slam tournaments of 2005?",
    "question_th": "ปี 2549 มีการแข่งขันแกรนด์สแลมปี 2548 ใดบ้าง",
    "context": "CREATE TABLE table_name_27 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2006 FROM table_name_34 WHERE 2007 = \"q2\"",
    "question_en": "What 2006 has q2 as the 2007?",
    "question_th": "ปี 2549 ใดที่มีไตรมาส 2 เท่ากับปี 2550",
    "context": "CREATE TABLE table_name_34 (Id VARCHAR)"
  },
  {
    "answer": "SELECT losses FROM table_name_34 WHERE awards = \"mike miller (smoy)\"",
    "question_en": "What are the losses where the award is Mike Miller (Smoy)?",
    "question_th": "การสูญเสียที่ได้รับรางวัลคือ 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_en": "Where the wins are 46, what is the win%?",
    "question_th": "โดยที่ชนะคือ 46 เปอร์เซ็นต์การชนะคืออะไร?",
    "context": "CREATE TABLE table_name_9 (win_percentage VARCHAR, wins VARCHAR)"
  },
  {
    "answer": "SELECT conference FROM table_name_29 WHERE awards = \"vancouver grizzlies\"",
    "question_en": "Where the Vancouver Grizzlies is the awards, what is the conference?",
    "question_th": "Vancouver Grizzlies ได้รับรางวัลที่ไหน การประชุมคืออะไร?",
    "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_en": "What is the highest 1987 value with a 1995 value less than 1995 and a 1999 less than 9?",
    "question_th": "ค่าสูงสุดในปี 1987 โดยมีค่าปี 1995 น้อยกว่าปี 1995 และปี 1999 น้อยกว่า 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_en": "What is the highest 2003 value with a 1990 greater than 74, a 125 value in 1985, and a 1995 value greater than 130?",
    "question_th": "ค่าสูงสุดในปี 2546 โดยปี 1990 มากกว่า 74 ค่า 125 ในปี 1985 และค่าปี 1995 มากกว่า 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_en": "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?",
    "question_th": "ค่าสูงสุดในปี 2550 โดยมีค่าปี 1985 มากกว่า 52 ค่าปี 1987 มากกว่า 130 และปี 1990 น้อยกว่าปี 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_en": "What is the highest 1995 with a 1990 less than 36, a 1987 less than 1987, and a 2007 value greater than 107?",
    "question_th": "ค่าสูงสุดในปี 1995 โดยปี 1990 น้อยกว่า 36 ปี 1987 น้อยกว่าปี 1987 และปี 2007 มีค่ามากกว่า 107 คืออะไร",
    "context": "CREATE TABLE table_name_4 (Id VARCHAR)"
  },
  {
    "answer": "SELECT MAX(2003) FROM table_name_19 WHERE 2011 < 107 AND 1995 < 17",
    "question_en": "What is the highest 2003 value with a 2011 less than 107 and a 1995 value less than 17?",
    "question_th": "ค่าสูงสุดในปี 2546 โดยปี 2554 น้อยกว่า 107 และค่าปี 2538 น้อยกว่า 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_en": "What is the name of the tournament with 11 or more events a top-5 of 0 and a top-25 of 2?",
    "question_th": "อะไรคือชื่อของทัวร์นาเมนท์ที่มี 11 รายการขึ้นไป โดยมี 5 อันดับแรกจาก 0 และ 25 อันดับแรกจาก 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_en": "What is the most top-10 of the team with 8 cuts made and less than 11 events?",
    "question_th": "อะไรคือ 10 อันดับแรกของทีมที่มีการตัด 8 ครั้งและน้อยกว่า 11 รายการ?",
    "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_en": "What is the American Labor ticket when Henry Epstein is the liberal ticket?",
    "question_th": "ตั๋ว American Labor คืออะไรเมื่อ Henry Epstein เป็นตั๋วเสรีนิยม?",
    "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_en": "What is the name on the Communist ticket with an Office of judge of the court of appeals?",
    "question_th": "ชื่อบนตั๋วคอมมิวนิสต์กับสำนักงานผู้พิพากษาศาลอุทธรณ์คืออะไร?",
    "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_en": "What is the Office when spencer c. young is on the liberal ticket??",
    "question_th": "สำนักงานคืออะไรเมื่อสเปนเซอร์ซี. หนุ่มอยู่บนตั๋วเสรีนิยม??",
    "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_en": "What is the name on the Democratic ticket when the Liberal ticket is erastus corning 2nd?",
    "question_th": "ชื่อบนตั๋วประชาธิปไตยคืออะไรเมื่อตั๋วเสรีนิยมเป็น Erastus Corning ที่ 2?",
    "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_en": "What name is on the Republican ticket when the  American Labor ticket was spencer c. young?",
    "question_th": "ชื่ออะไรบนตั๋วพรรครีพับลิกันเมื่อตั๋ว American Labor คือ spencer c. หนุ่มสาว?",
    "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_en": "What is the entered number for the person with a time of 29:28?",
    "question_th": "คนที่ใส่เวลา 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_en": "What is the number eliminated for the person with a time of 12:38?",
    "question_th": "เลขเวลา 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_en": "What is the highest Attendance with a Result that is w 24-21?",
    "question_th": "ผู้เข้าร่วมสูงสุดและผลการแข่งขันคือ 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_en": "What Date has a time of (seconds) 42.172?",
    "question_th": "วันที่ใดมีเวลา (วินาที) 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_en": "What is the Record for 23 january 2010, with a time smaller than 42.679 seconds?",
    "question_th": "สถิติของวันที่ 23 มกราคม 2553 ด้วยเวลาน้อยกว่า 42.679 วินาที คืออะไร?",
    "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_en": "What is the total number of Points that were in a Year that was 2005?",
    "question_th": "จำนวนคะแนนทั้งหมดที่อยู่ในหนึ่งปีคือปี 2548 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_18 (points VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT MIN(shots) FROM table_name_38 WHERE points > 32",
    "question_en": "What is the lowest Shots with a Point that is larger than 32?",
    "question_th": "ช็อตต่ำสุดที่มีแต้มมากกว่า 32 คืออะไร?",
    "context": "CREATE TABLE table_name_38 (shots INTEGER, points INTEGER)"
  },
  {
    "answer": "SELECT category FROM table_name_41 WHERE year = 1991",
    "question_en": "Which category had a year of 1991?",
    "question_th": "หมวดหมู่ใดมีปี 1991?",
    "context": "CREATE TABLE table_name_41 (category VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_45 WHERE runner_up = \"magdalena maleeva\"",
    "question_en": "What is the score having a runner-up of Magdalena Maleeva?",
    "question_th": "แมกดาเลนา มาเลวา รองแชมป์มีสกอร์เท่าไหร่?",
    "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_en": "What year was John m. Belk Arena built?",
    "question_th": "จอห์น ม. สร้าง Belk Arena แล้วเหรอ?",
    "context": "CREATE TABLE table_name_74 (year_built VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT environment FROM table_name_11 WHERE year_built = \"2003\"",
    "question_en": "What type of environment is the venue that was built in 2003?",
    "question_th": "สถานที่จัดงานที่สร้างขึ้นในปี พ.ศ. 2546 มีสภาพแวดล้อมแบบใด",
    "context": "CREATE TABLE table_name_11 (environment VARCHAR, year_built VARCHAR)"
  },
  {
    "answer": "SELECT year_built FROM table_name_10 WHERE venue = \"transamerica field\"",
    "question_en": "What year was transamerica field built in?",
    "question_th": "สนามทรานส์อเมริกาสร้างขึ้นในปีใด?",
    "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_en": "What is the location of the venue owned by johnson c. smith university?",
    "question_th": "ที่ตั้งของสถานที่จัดงานของ johnson c. คืออะไร? มหาวิทยาลัยสมิธ?",
    "context": "CREATE TABLE table_name_26 (location VARCHAR, owner VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_61 WHERE score = \"8-2\"",
    "question_en": "What is the venue when the score was 8-2?",
    "question_th": "สนามไหนเมื่อสกอร์เป็น 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_en": "What is the Score for the 1999 fifa confederations cup?",
    "question_th": "คะแนนของฟีฟ่าคอนเฟเดอเรชั่นส์คัพ 1999 เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_96 (score VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_2 WHERE date = \"30 june 1995\"",
    "question_en": "What is the result on 30 june 1995?",
    "question_th": "ผลวันที่ 30 มิถุนายน 2538 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_2 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_45 WHERE competition = \"1999 fifa confederations cup\"",
    "question_en": "What is the Date of the 1999 fifa confederations cup?",
    "question_th": "FIFA Confederations Cup ปี 1999 คือวันที่เท่าไร?",
    "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_en": "What is the Venue for the 2002 fifa world cup qualifier, and a Result of 8-2?",
    "question_th": "สถานที่จัดการแข่งขันฟุตบอลโลกรอบคัดเลือกปี 2002 และผลการแข่งขัน 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_en": "What is the Score on 11 march 2001?",
    "question_th": "คะแนนเมื่อวันที่ 11 มีนาคม 2544 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_76 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT symbol FROM table_name_25 WHERE empirical_† = \"190\" AND calculated = \"135\"",
    "question_en": "What is the symbol of the element with an empirical t of 190 and a calculated value of 135?",
    "question_th": "สัญลักษณ์ขององค์ประกอบที่มีค่า t เชิงประจักษ์ 190 และค่าที่คำนวณได้ 135 คืออะไร",
    "context": "CREATE TABLE table_name_25 (symbol VARCHAR, empirical_† VARCHAR, calculated VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_57 WHERE calculated = \"56\"",
    "question_en": "What is the name of the element with a calculated value of 56?",
    "question_th": "ชื่อขององค์ประกอบที่มีค่าคำนวณเป็น 56 คืออะไร?",
    "context": "CREATE TABLE table_name_57 (name VARCHAR, calculated VARCHAR)"
  },
  {
    "answer": "SELECT covalent__single_bond_ FROM table_name_21 WHERE name = \"sodium\"",
    "question_en": "What is the covalent (single bond) value of sodium?",
    "question_th": "โซเดียมมีค่าโควาเลนต์ (พันธะเดี่ยว) เท่ากับเท่าใด",
    "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_en": "What is the total height of the player with a birthdate on September 2, 1973?",
    "question_th": "นักเตะที่เกิดวันที่ 2 กันยายน พ.ศ. 2516 มีความสูงรวมเท่าไร?",
    "context": "CREATE TABLE table_name_65 (height__cm_ VARCHAR, birthdate VARCHAR)"
  },
  {
    "answer": "SELECT birthdate FROM table_name_39 WHERE name = \"robert esche\"",
    "question_en": "What is the birthdate of Robert Esche?",
    "question_th": "วันเกิดของ 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_en": "What is the position of the player with a jersey # greater than 30 and a December 23, 1986 birthdate?",
    "question_th": "ตำแหน่งผู้เล่นที่มีหมายเลขเสื้อมากกว่า 30 และวันเกิดวันที่ 23 ธันวาคม 2529 คืออะไร?",
    "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_en": "What is the weight of John-Michael Liles?",
    "question_th": "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_en": "What was the first leg score during the quarter-final game?",
    "question_th": "คะแนนเลกแรกระหว่างเกมรอบก่อนรองชนะเลิศเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_16 (first_leg VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT aggregate_score FROM table_name_66 WHERE opposition = \"dynamo dresden\"",
    "question_en": "What was the aggregate score for the game against Dynamo Dresden?",
    "question_th": "คะแนนรวมของเกมกับดินาโม เดรสเดนเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_66 (aggregate_score VARCHAR, opposition VARCHAR)"
  },
  {
    "answer": "SELECT opposition FROM table_name_69 WHERE round = \"3rd\"",
    "question_en": "Who was the opposing team in the 3rd round?",
    "question_th": "ทีมฝ่ายตรงข้ามในรอบที่ 3 คือใคร?",
    "context": "CREATE TABLE table_name_69 (opposition VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT nation FROM table_name_20 WHERE gold = 0 AND silver > 1",
    "question_en": "Which nation has 0 golds and more than 1 silver?",
    "question_th": "ชาติใดมี 0 เหรียญทอง และมากกว่า 1 เหรียญเงิน?",
    "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_en": "What is the smallest total that has under 3 golds, more than 0 silvers and bronzes?",
    "question_th": "จำนวนรวมที่น้อยที่สุดที่มีต่ำกว่า 3 เหรียญทอง มากกว่า 0 เงินและทองแดงคือเท่าใด",
    "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_en": "What is the total number of silvers associated with 3 bronzes, a total over 6, and a rank of 3?",
    "question_th": "จำนวนเหรียญเงินทั้งหมดที่เกี่ยวข้องกับ 3 เหรียญทองแดง รวมมากกว่า 6 เหรียญ และอันดับที่ 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_en": "What is the sum of bronzes associated with 0 golds and a rank of 10?",
    "question_th": "ผลรวมของทองแดงที่เกี่ยวข้องกับ 0 เหรียญทองและอันดับ 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_en": "What is the largest silver value associated with 0 golds?",
    "question_th": "มูลค่าเงินที่ใหญ่ที่สุดที่เกี่ยวข้องกับ 0 เหรียญทองคืออะไร?",
    "context": "CREATE TABLE table_name_42 (silver INTEGER, gold INTEGER)"
  },
  {
    "answer": "SELECT COUNT(bronze) FROM table_name_44 WHERE nation = \"netherlands\"",
    "question_en": "What is the total number of bronzes from the Netherlands?",
    "question_th": "เหรียญทองแดงจากเนเธอร์แลนด์มีทั้งหมดกี่เหรียญครับ?",
    "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_en": "What is the average amount of earnings for years under 2004 and money list rankings of 6?",
    "question_th": "จำนวนรายได้เฉลี่ยสำหรับปีภายใต้ปี 2547 และอันดับเงินในอันดับที่ 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_en": "What is the highest number of wins for years after 1999 with averages over 73.02?",
    "question_th": "จำนวนชัยชนะสูงสุดในรอบหลายปีหลังปี 1999 โดยมีค่าเฉลี่ยมากกว่า 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_en": "Who was the away team when the home team Manchester United played?",
    "question_th": "ทีมเยือนคือใครเมื่อทีมเหย้าแมนเชสเตอร์ยูไนเต็ดเล่น?",
    "context": "CREATE TABLE table_name_54 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_8 WHERE tie_no = \"16\"",
    "question_en": "When there was a tie of 16 what was the attendance?",
    "question_th": "เมื่อเสมอกัน 16 ผู้เข้าร่วมได้อะไรบ้าง?",
    "context": "CREATE TABLE table_name_8 (attendance VARCHAR, tie_no VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_30 WHERE tie_no = \"6\"",
    "question_en": "Tell me the score when there was a Tie number of 6?",
    "question_th": "บอกคะแนนตอนมีเลขเสมอกัน 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_en": "For the Tie number of 14 who was the away team?",
    "question_th": "สำหรับแต้มเสมอกัน 14 ทีมเยือนคือใคร?",
    "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_en": "What Catalog released on June 29, 1999 has a Digipak Album Format?",
    "question_th": "แค็ตตาล็อกใดที่เผยแพร่เมื่อวันที่ 29 มิถุนายน 2542 มีรูปแบบอัลบั้ม Digipak?",
    "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_en": "What is the release Date of Catalog RR 8655-2?",
    "question_th": "Catalog RR 8655-2 จะวางจำหน่ายเมื่อใด",
    "context": "CREATE TABLE table_name_39 (date VARCHAR, catalog VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_38 WHERE name = \"nicole 赖淞凤\"",
    "question_en": "What is Score, when Name is Nicole 赖淞凤?",
    "question_th": "Score คืออะไร เมื่อชื่อ Nicole 赖淞凤?",
    "context": "CREATE TABLE table_name_38 (score VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_99 WHERE song = \"第九夜\"",
    "question_en": "What is Score, when Song is 第九夜?",
    "question_th": "Score คืออะไร เมื่อเพลงคือ 第九夜?",
    "context": "CREATE TABLE table_name_99 (score VARCHAR, song VARCHAR)"
  },
  {
    "answer": "SELECT Group AS song FROM table_name_80 WHERE song = \"换季\"",
    "question_en": "What is Group Song, when Song is 换季?",
    "question_th": "Group Song คืออะไร เมื่อ Song คือ 换季?",
    "context": "CREATE TABLE table_name_80 (Group VARCHAR, song VARCHAR)"
  },
  {
    "answer": "SELECT Group AS song FROM table_name_29 WHERE name = \"alice 林芯糸\"",
    "question_en": "What is Group Song, when Name is Alice 林芯糸?",
    "question_th": "Group Song คืออะไร เมื่อชื่อ Alice 林芯糸?",
    "context": "CREATE TABLE table_name_29 (Group VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_32 WHERE score = \"2–6, 6–3, 6–4\"",
    "question_en": "On what surface was the match played with a score of 2–6, 6–3, 6–4?",
    "question_th": "การแข่งขันเล่นบนพื้นผิวใดด้วยคะแนน 2–6, 6–3, 6–4?",
    "context": "CREATE TABLE table_name_32 (surface VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_82 WHERE score = \"4–6, 6–3, 6–1\"",
    "question_en": "On what surface was the match played with a score of 4–6, 6–3, 6–1?",
    "question_th": "การแข่งขันเล่นบนพื้นผิวใดด้วยคะแนน 4–6, 6–3, 6–1?",
    "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_en": "What was the score when the opponent in the final was iroda tulyaganova?",
    "question_th": "คะแนนเมื่อคู่ต่อสู้ในรอบชิงชนะเลิศคือไอโรดา ตุลยากาโนวา เป็นอย่างไรบ้าง?",
    "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–3, 4–6, 6–1\"",
    "question_en": "Which tournament has an opponent in the final of nadia petrova and a score of 6–3, 4–6, 6–1??",
    "question_th": "ทัวร์นาเมนต์ใดที่มีคู่ต่อสู้ในรอบชิงชนะเลิศของนาเดีย เปโตรวา และสกอร์ 6–3, 4–6, 6–1??",
    "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_en": "What is 01-02, when 03-04 is 03-04?",
    "question_th": "01-02 คืออะไร เมื่อ 03-04 เป็น 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_en": "What is 02-03, when School Year is % Learning In Latvian?",
    "question_th": "02-03 คืออะไร เมื่อปีการศึกษาคือ % การเรียนรู้ในลัตเวีย",
    "context": "CREATE TABLE table_name_33 (school_year VARCHAR)"
  },
  {
    "answer": "SELECT choreographer_s_ FROM table_name_29 WHERE style = \"jazz\"",
    "question_en": "Who was the choreographer for the dance style of Jazz?",
    "question_th": "ใครคือผู้ออกแบบท่าเต้นในสไตล์การเต้นของแจ๊ส?",
    "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_en": "Which music led to a safe result and was choreographed by Jason Gilkison?",
    "question_th": "เพลงใดนำไปสู่ผลลัพธ์ที่ปลอดภัยและออกแบบท่าเต้นโดย 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_en": "Which couple participated in the Contemporary style of dance?",
    "question_th": "คู่รักคนไหนได้ร่วมแสดงการเต้นรำสไตล์คอนเทมโพรารี?",
    "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_en": "Which couple participated in the Paso Doble style and were safe?",
    "question_th": "คู่รักคนไหนที่เข้าร่วมในสไตล์ Paso Doble และปลอดภัย?",
    "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_en": "How many weeks had a game on November 26, 1978, and an attendance higher than 26,248?",
    "question_th": "มีเกมกี่สัปดาห์ในวันที่ 26 พฤศจิกายน พ.ศ. 2521 และมีผู้เข้าร่วมมากกว่า 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_en": "What was the lowest Attendance during Week 12?",
    "question_th": "ผู้เข้าร่วมต่ำสุดในช่วงสัปดาห์ที่ 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_en": "What was the name of the tournament that the final was played against Yi Jingqian?",
    "question_th": "ทัวร์นาเมนต์ที่เล่นกับยี่จิงเชียนรอบชิงชนะเลิศมีชื่อว่าอะไร?",
    "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_en": "Who was the final opponent in the tournament in Taipei, Taiwan on November 14, 1994?",
    "question_th": "คู่ต่อสู้คนสุดท้ายในการแข่งขันที่ไทเป ประเทศไต้หวัน เมื่อวันที่ 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_en": "On October 14, 1996 who was the opponent in the final?",
    "question_th": "วันที่ 14 ตุลาคม 2539 คู่ต่อสู้ในรอบชิงชนะเลิศคือใคร?",
    "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_en": "When playing against Yi Jingqian in the final on a hard surface what was the score?",
    "question_th": "เมื่อเล่นกับ Yi Jingqian ในรอบชิงชนะเลิศบนพื้นแข็ง สกอร์เท่าไหร่?",
    "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_en": "Who was played against in the final on November 14, 1994?",
    "question_th": "แข่งกับใครในรอบชิงชนะเลิศเมื่อวันที่ 14 พฤศจิกายน พ.ศ. 2537?",
    "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_en": "What is the total number of Entered when the eliminated number is 3?",
    "question_th": "จำนวนที่เข้าทั้งหมดเมื่อหมายเลขที่ตัดออกคือ 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_en": "What is the Eliminated when there are less than 4 entered and the wrestler was shawn michaels?",
    "question_th": "อะไรคือสิ่งที่ถูกคัดออกเมื่อมีผู้เข้าน้อยกว่า 4 คนและนักมวยปล้ำคือ 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_en": "How many frequencies have a line of East London and destination of Crystal Palace?",
    "question_th": "มีกี่ความถี่ที่มีเส้นลอนดอนตะวันออกและปลายทางของคริสตัลพาเลซ?",
    "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_en": "Which line has an operator of the London Overground and ends at the Crystal Palace?",
    "question_th": "รถไฟสายใดมีผู้ให้บริการ London Overground และสิ้นสุดที่ 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_en": "Which song was by artist Gino Vannelli?",
    "question_th": "เพลงใดเป็นของศิลปิน 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_en": "What tournament did Bill Rogers play in when he had less than 7 Cuts, 0 Wins, and less than 1 Top-25?",
    "question_th": "Bill Rogers เล่นในทัวร์นาเมนต์ใดเมื่อเขามีผลงานน้อยกว่า 7 ครั้ง, ชนะ 0 ครั้ง และติด Top-25 น้อยกว่า 1 ครั้ง",
    "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_en": "What are the number of losses that have Ties of 1 and 3 or more poll wins?",
    "question_th": "จำนวนการแพ้ที่เสมอกัน 1 และ 3 หรือมากกว่าโพลล์ชนะ?",
    "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_en": "What is the lowest poll losses of the 0 ties, poll wins greater than 1 and wins less than 2?",
    "question_th": "อะไรคือการสูญเสียโพลต่ำสุดของ 0 เสมอ โพลชนะมากกว่า 1 และชนะน้อยกว่า 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_en": "What is the highest poll of the advocate Andy Kindler with poll losses greater than 2 and ties less than 0?",
    "question_th": "การสำรวจความคิดเห็นสูงสุดของผู้สนับสนุน Andy Kindler ที่มีการขาดทุนมากกว่า 2 และเสมอกันน้อยกว่า 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_en": "Which PBA Titles has a TV Finals larger than 6, and an Events larger than 20?",
    "question_th": "รายการ PBA รายการใดที่มีรายการ TV Finals มากกว่า 6 รายการ และมีรายการมากกว่า 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_en": "Which Events has Earnings of $113,259, and an Average larger than 229.5?",
    "question_th": "กิจกรรมใดมีรายรับ 113,259 ดอลลาร์ และมีค่าเฉลี่ยมากกว่า 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_en": "Which Cashes has a Match Play smaller than 13, and a Events of 7?",
    "question_th": "Cashes ใดที่มี Match Play น้อยกว่า 13 และเหตุการณ์ 7",
    "context": "CREATE TABLE table_name_97 (cashes VARCHAR, match_play VARCHAR, events VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_22 WHERE season = \"1950–51\"",
    "question_en": "What is the Finish for the 1950–51? season?",
    "question_th": "จุดสิ้นสุดของฤดูกาล 1950–51 คืออะไร? ฤดูกาล?",
    "context": "CREATE TABLE table_name_22 (finish VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT losses FROM table_name_51 WHERE conference = \"western\" AND season = \"2004–05\"",
    "question_en": "What is the Losses at the western conference and the 2004–05 season?",
    "question_th": "ความสูญเสียในการประชุมภาคตะวันตกและฤดูกาล 2547–05 คืออะไร?",
    "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_en": "What Season has wins as the philadelphia warriors (nba)?",
    "question_th": "ฤดูกาลใดมีชัยชนะในฐานะ philadelphia warriors (nba)?",
    "context": "CREATE TABLE table_name_28 (season VARCHAR, wins VARCHAR)"
  },
  {
    "answer": "SELECT wins FROM table_name_61 WHERE conference = \"—\" AND division = \"western\" AND season = \"1967–68\"",
    "question_en": "What shows for Wins when there was a Conference of —, western division, in the 1967–68 season?",
    "question_th": "อะไรแสดงให้เห็นชัยชนะเมื่อมีการประชุมของ — ดิวิชั่นตะวันตกในฤดูกาล 1967–68?",
    "context": "CREATE TABLE table_name_61 (wins VARCHAR, season VARCHAR, conference VARCHAR, division VARCHAR)"
  },
  {
    "answer": "SELECT conference FROM table_name_71 WHERE season = \"1967–68\"",
    "question_en": "What is the Conference for the 1967–68 season?",
    "question_th": "การประชุมใหญ่สำหรับฤดูกาล 1967–68 คืออะไร?",
    "context": "CREATE TABLE table_name_71 (conference VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_22 WHERE time = \"11:55\"",
    "question_en": "What is the Location when the time was 11:55?",
    "question_th": "สถานที่เมื่อเวลา 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_en": "What Round has a Time of n/a, in rio de janeiro , brazil?",
    "question_th": "รอบใดมีเวลาเป็นไม่มี ในริโอ เด จาเนโร ประเทศบราซิล",
    "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_en": "What is the Round for the jiu-jitsu vs martial arts?",
    "question_th": "ยิวยิตสู VS ศิลปะการต่อสู้รอบไหน?",
    "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_en": "What is the Location for the jiu-jitsu vs martial arts?",
    "question_th": "สถานที่จัดยิวยิตสู vs ศิลปะการต่อสู้ อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_36 (location VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_79 WHERE opponent = \"wesslan evaristo de oliveira\"",
    "question_en": "What is the Event when the opponent was wesslan evaristo de oliveira?",
    "question_th": "เหตุการณ์จะเป็นอย่างไรเมื่อคู่ต่อสู้คือ เวสลาน เอวาริสโต เด โอลิเวียร่า?",
    "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_en": "How many points does Kohta Nozane have with a Motobi TSR 6?",
    "question_th": "Kohta Nozane มีกี่คะแนนกับ 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_en": "Which Average has a Band of f?",
    "question_th": "ค่าเฉลี่ยใดมีแบนด์เป็น f",
    "context": "CREATE TABLE table_name_57 (average VARCHAR, band VARCHAR)"
  },
  {
    "answer": "SELECT band FROM table_name_76 WHERE ratio = \"9/9\"",
    "question_en": "Which Band has a Ratio of 9/9?",
    "question_th": "วงไหนมีอัตราส่วน 9/9?",
    "context": "CREATE TABLE table_name_76 (band VARCHAR, ratio VARCHAR)"
  },
  {
    "answer": "SELECT band FROM table_name_99 WHERE ratio = \"13/9\"",
    "question_en": "Which Band has a Ratio of 13/9?",
    "question_th": "วงไหนมีอัตราส่วน 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_en": "What was the latest year that the Atlanta Braves won and the St. Louis Cardinals lost?",
    "question_th": "ปีล่าสุดที่ Atlanta Braves ชนะและ St. Louis Cardinals แพ้คือปีใด",
    "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_en": "Who won the series when the San Francisco Giants lost?",
    "question_th": "ใครชนะซีรีส์นี้เมื่อ San Francisco Giants แพ้?",
    "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_en": "Where was the series that the Kansas City Royals lost?",
    "question_th": "ซีรีส์ที่ Kansas City Royals แพ้ไปอยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_65 (site VARCHAR, winning_team VARCHAR)"
  },
  {
    "answer": "SELECT winning_team FROM table_name_22 WHERE year = 2008",
    "question_en": "Who was the winning team in 2008?",
    "question_th": "ทีมใดเป็นผู้ชนะในปี 2551?",
    "context": "CREATE TABLE table_name_22 (winning_team VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT AVG(lost) FROM table_name_49 WHERE points > 108",
    "question_en": "What average lost has points greater than 108?",
    "question_th": "แพ้เฉลี่ยเท่าไหร่มีคะแนนมากกว่า 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_en": "How many losses have 222 as the goals against, with points greater than 78?",
    "question_th": "มีการสูญเสียไปกี่ครั้งที่มี 222 ประตูโดยมีคะแนนมากกว่า 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_en": "How many goals against have 64 for games, a loss less than 12, with points greater than 107?",
    "question_th": "มีกี่ประตูต่อเกมที่มี 64 แพ้น้อยกว่า 12 และมีแต้มมากกว่า 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_en": "What is the place of the song 'Never Change'?",
    "question_th": "ตำแหน่งของเพลง 'Never Change' อยู่ที่ใด?",
    "context": "CREATE TABLE table_name_79 (place INTEGER, song VARCHAR)"
  },
  {
    "answer": "SELECT song FROM table_name_18 WHERE artist = \"aleko berdzenishvili\"",
    "question_en": "What is the name of Aleko Berdzenishvili's song?",
    "question_th": "เพลงของ Aleko Berdzenishvili ชื่ออะไร?",
    "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_en": "What was the lowest pick for the RHP position and player Mike Biko?",
    "question_th": "ตัวเลือกที่ต่ำที่สุดสำหรับตำแหน่ง RHP และผู้เล่น 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_en": "What is the Martin McGuinness with a David Norris that is 10.3%?",
    "question_th": "Martin McGuinness กับ David Norris คืออะไรที่ 10.3%?",
    "context": "CREATE TABLE table_name_16 (martin_mcguinness VARCHAR, david_norris VARCHAR)"
  },
  {
    "answer": "SELECT martin_mcguinness FROM table_name_3 WHERE seán_gallagher = \"29.6%\"",
    "question_en": "What is the Martin mcGuinness with a Sean Gallagher that is 29.6%?",
    "question_th": "Martin mcGuinness กับ Sean Gallagher อยู่ที่ 29.6% คืออะไร?",
    "context": "CREATE TABLE table_name_3 (martin_mcguinness VARCHAR, seán_gallagher VARCHAR)"
  },
  {
    "answer": "SELECT david_norris FROM table_name_92 WHERE michael_d_higgins = \"46.2%\"",
    "question_en": "What is the David Norris with a Michael D. Higgins that is 46.2%?",
    "question_th": "เดวิด นอร์ริส กับ ไมเคิล ดี. ฮิกกินส์ คิดเป็น 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_en": "What is the Mary Davis with a Gay Mitchell that is 4.6%?",
    "question_th": "Mary Davis กับ Gay Mitchell ที่ 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_en": "Can you tell me the total number of Prev that has the Chng of +10, and the Rating larger than 2765?",
    "question_th": "คุณช่วยบอกจำนวน Prev ทั้งหมดที่มี Chng เป็น +10 และ Rating มากกว่า 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_en": "Who is the second member for the Second Party Liberal, and the Third Party Conservative, after the 1841 election?",
    "question_th": "ใครคือสมาชิกคนที่สองของ Second Party Liberal และ Third Party Conservative หลังการเลือกตั้งในปี 1841",
    "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_en": "Who is the third member of the Liberal Party, a third party conservative, the second member Humphrey Mildmay?",
    "question_th": "ใครคือสมาชิกคนที่สามของพรรคเสรีนิยม พรรคอนุรักษ์นิยมคนที่สาม สมาชิกคนที่สอง ฮัมฟรีย์ มิลด์เมย์?",
    "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_en": "Who is the third member of the third conservative party, and the second liberal party?",
    "question_th": "ใครคือสมาชิกคนที่สามของพรรคอนุรักษ์นิยมที่สาม และพรรคเสรีนิยมที่สองคือใคร?",
    "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_en": "What was the highest election with third party member Sir Robert Price, BT, and first party member conservative?",
    "question_th": "การเลือกตั้งสูงสุดกับสมาชิกบุคคลที่สาม Sir Robert Price, BT และสมาชิกพรรคอนุรักษ์นิยมคนแรกคืออะไร?",
    "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_en": "What was the record of the team with head coach Steve Spurrier?",
    "question_th": "สถิติของทีมกับเฮดโค้ช สตีฟ สเปอริเออร์ เป็นอย่างไร?",
    "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_en": "What was USC's record before the 1967 season?",
    "question_th": "บันทึกของ USC ก่อนฤดูกาล 1967 คืออะไร?",
    "context": "CREATE TABLE table_name_34 (record VARCHAR, team VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_74 WHERE season = 1973",
    "question_en": "What was the record during the 1973 season?",
    "question_th": "มีสถิติอะไรในช่วงฤดูกาล 1973?",
    "context": "CREATE TABLE table_name_74 (record VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT average FROM table_name_49 WHERE place = \"6th\" AND total = \"165\"",
    "question_en": "What is the average score for 6th place with a total of 165?",
    "question_th": "คะแนนเฉลี่ยอันดับที่ 6 รวม 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_en": "What is the total with a 74 rank by average for 8th place?",
    "question_th": "ผลรวมอันดับ 74 โดยเฉลี่ยสำหรับอันดับที่ 8 เป็นเท่าใด",
    "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_en": "What was the place in season 8 with a rank by average at 139?",
    "question_th": "สถานที่ใดในซีซั่น 8 ที่มีอันดับเฉลี่ยอยู่ที่ 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_en": "What is the total for 3rd place on season 9?",
    "question_th": "อันดับที่ 3 ในซีซั่น 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_en": "What rank by average has 1 dance on season 9?",
    "question_th": "ค่าเฉลี่ยอันดับใดที่มีการเต้นรำ 1 ครั้งในซีซั่น 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_en": "What was the final round score for the player from the Milwaukee Bucks?",
    "question_th": "คะแนนรอบสุดท้ายของผู้เล่นจาก 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_en": "What position does the player with a first round score of 35.7 play?",
    "question_th": "ผู้เล่นที่มีคะแนนรอบแรก 35.7 เล่นตำแหน่งใด",
    "context": "CREATE TABLE table_name_21 (pos VARCHAR, first_round VARCHAR)"
  },
  {
    "answer": "SELECT height FROM table_name_1 WHERE first_round = \"44.1\"",
    "question_en": "What is the height of the player with a first round score of 44.1?",
    "question_th": "ผู้เล่นที่มีคะแนนรอบแรก 44.1 สูงเท่าไร?",
    "context": "CREATE TABLE table_name_1 (height VARCHAR, first_round VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_87 WHERE weight = 187",
    "question_en": "Which player weighs 187 pounds?",
    "question_th": "นักเตะคนไหนหนัก 187 ปอนด์?",
    "context": "CREATE TABLE table_name_87 (player VARCHAR, weight VARCHAR)"
  },
  {
    "answer": "SELECT illustrator FROM table_name_79 WHERE year = 1987",
    "question_en": "Who was the illustrator in 1987?",
    "question_th": "ใครคือนักวาดภาพประกอบในปี 1987?",
    "context": "CREATE TABLE table_name_79 (illustrator VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_name_94 WHERE title = \"drop dead\"",
    "question_en": "How many years was the title drop dead?",
    "question_th": "ชื่อตายไปกี่ปีแล้ว?",
    "context": "CREATE TABLE table_name_94 (year VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT publisher FROM table_name_93 WHERE title = \"drop dead\"",
    "question_en": "Which publisher has a title of drop dead?",
    "question_th": "สำนักพิมพ์ใดมีชื่อ drop dead?",
    "context": "CREATE TABLE table_name_93 (publisher VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT greek FROM table_name_99 WHERE german = \"ebbe\"",
    "question_en": "What Greek word means the same thing as the German word ebbe?",
    "question_th": "คำภาษากรีกข้อใดมีความหมายเหมือนกับคำภาษาเยอรมัน ebbe?",
    "context": "CREATE TABLE table_name_99 (greek VARCHAR, german VARCHAR)"
  },
  {
    "answer": "SELECT german FROM table_name_10 WHERE icelandic = \"efja\"",
    "question_en": "What word in German translates into the Icelandic word efja?",
    "question_th": "คำใดในภาษาเยอรมันที่แปลเป็นคำภาษาไอซ์แลนด์ efja?",
    "context": "CREATE TABLE table_name_10 (german VARCHAR, icelandic VARCHAR)"
  },
  {
    "answer": "SELECT dutch FROM table_name_3 WHERE latin = \"navigo\"",
    "question_en": "What is the Dutch translation of the Latin word navigo?",
    "question_th": "คำแปลภาษาละตินของคำภาษาละติน navigo คืออะไร?",
    "context": "CREATE TABLE table_name_3 (dutch VARCHAR, latin VARCHAR)"
  },
  {
    "answer": "SELECT dutch FROM table_name_1 WHERE greek = \"πλέω (pléō)\"",
    "question_en": "What Dutch word has the same meaning as the Greek word πλέω (pléō)?",
    "question_th": "คำภาษาดัตช์คำใดที่มีความหมายเหมือนกับคำภาษากรีก πлέω (pléō)",
    "context": "CREATE TABLE table_name_1 (dutch VARCHAR, greek VARCHAR)"
  },
  {
    "answer": "SELECT english FROM table_name_3 WHERE \"german\" = \"german\"",
    "question_en": "What English word has the same meaning as the German word \"german\"?",
    "question_th": "คำภาษาอังกฤษข้อใดมีความหมายเหมือนกับคำภาษาเยอรมัน \"เยอรมัน\"?",
    "context": "CREATE TABLE table_name_3 (english VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(wins) FROM table_name_95 WHERE events = 7 AND top_10 > 2",
    "question_en": "How many wins are related to events of 7 and more than 2 top-10s?",
    "question_th": "มีชัยชนะกี่ครั้งที่เกี่ยวข้องกับเหตุการณ์ของ 7 และมากกว่า 2 อันดับแรก 10?",
    "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_en": "What is the most cuts made for events with 1 top-5, 2 top-10s, and more than 13 total events?",
    "question_th": "อะไรคือกิจกรรมที่ถูกตัดออกมากที่สุดสำหรับกิจกรรมที่มี 5 อันดับแรก, 10 อันดับแรก 2 รายการ และทั้งหมดมากกว่า 13 กิจกรรม?",
    "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_en": "Can you tell me the Name that has the Rank smaller than 71, and the Year larger than 2005, and the Out of 220?",
    "question_th": "คุณช่วยบอกชื่อที่มีอันดับน้อยกว่า 71 และปีที่ใหญ่กว่าปี 2005 และชื่อเต็ม 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_en": "Can you tell me the lowest Year that has the Rank smaller the 132, and the Name of biodiversity richness?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าปีต่ำสุดที่มีอันดับน้อยกว่า 132 และชื่อความอุดมสมบูรณ์ของความหลากหลายทางชีวภาพ?",
    "context": "CREATE TABLE table_name_99 (year INTEGER, rank VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT source FROM table_name_86 WHERE rank = 78",
    "question_en": "Can you tell me the Source that has the Rank of 78?",
    "question_th": "คุณช่วยบอกแหล่งที่มาที่มีอันดับ 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_en": "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?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าแหล่งที่มาของสหประชาชาติและอันดับใหญ่กว่า 47 และปีที่เล็กกว่าปี 2546?",
    "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_en": "Which Tournament has a 2004 of 1r?",
    "question_th": "ทัวร์นาเมนต์ใดมี 2004 จาก 1r?",
    "context": "CREATE TABLE table_name_59 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2005 FROM table_name_52 WHERE 2007 = \"grand slam tournaments\"",
    "question_en": "What is the 2005 that has a grand slam tournaments in 2007?",
    "question_th": "ปี 2548 ที่มีการแข่งขันแกรนด์สแลมในปี 2550 คืออะไร?",
    "context": "CREATE TABLE table_name_52 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2006 FROM table_name_84 WHERE 2004 = \"2r\" AND 2005 = \"2r\"",
    "question_en": "What is the 2006 that has a 2r in 2004, and a 2r in 2005?",
    "question_th": "ปี 2549 ที่มี 2r ในปี 2547 และ 2r ในปี 2548 คืออะไร",
    "context": "CREATE TABLE table_name_84 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2007 FROM table_name_32 WHERE 2006 = \"grand slam tournaments\"",
    "question_en": "What is the 2007 that has a grand slam tournaments in 2006.",
    "question_th": "ปี 2550 ที่มีการแข่งขันแกรนด์สแลมในปี 2549 คืออะไร",
    "context": "CREATE TABLE table_name_32 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2004 FROM table_name_82 WHERE 2006 = \"grand slam tournaments\"",
    "question_en": "What is the 2004 that has a of grand slam tournaments in2006 ?",
    "question_th": "ปี 2004 ที่มีการแข่งขันแกรนด์สแลมในปี 2549 คืออะไร?",
    "context": "CREATE TABLE table_name_82 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2006 FROM table_name_48 WHERE 2007 = \"3r\"",
    "question_en": "What is 2006 has a 2007 of 3r?",
    "question_th": "ปี 2549 มีปี 2550 เป็น 3r คืออะไร?",
    "context": "CREATE TABLE table_name_48 (Id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(passengers) FROM table_name_54 WHERE airport = \"mco\" AND rank > 9",
    "question_en": "What was the number of passengers going to MCO with a rank larger than 9?",
    "question_th": "จำนวนผู้โดยสารที่จะไป MCO ที่มีอันดับมากกว่า 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_en": "What city had a rank before 3 and primary carrier JetBlue Airways?",
    "question_th": "เมืองใดมีอันดับก่อน 3 และสายการบินหลัก 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_en": "What was launched and laid down in February 1819?",
    "question_th": "เปิดตัวและวางอะไรในเดือนกุมภาพันธ์ พ.ศ. 2362?",
    "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_en": "What is the total number of positions with less than 10 points, more than 7 qualifying, ret value in Race 1, and Jonathan Grant driving?",
    "question_th": "จำนวนตำแหน่งทั้งหมดที่มีคะแนนน้อยกว่า 10 คะแนน, คุณสมบัติมากกว่า 7 รายการ, มูลค่าการแข่งรอบที่ 1 และการขับขี่ของ Jonathan Grant คือเท่าใด",
    "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_en": "What is Date, when Set 2 is 25-13?",
    "question_th": "วันที่เท่าไหร่เมื่อชุดที่ 2 คือ 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_en": "What is Total, when Set 5 is NA, and when Set 2 is 25-13?",
    "question_th": "Total คืออะไร เมื่อ Set 5 คือ NA และเมื่อ Set 2 คือ 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_en": "What is Score, when Date is Jun 16, and when Set 4 is 25-20?",
    "question_th": "Score คืออะไร วันที่คือ 16 มิ.ย. และเมื่อ Set 4 คือ 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_en": "What is Set 2, when Score is 3-0, when Date is May 11, and when Set 1 is 25-20?",
    "question_th": "เซต 2 คืออะไร เมื่อสกอร์เป็น 3-0 เมื่อเป็นวันที่ 11 พฤษภาคม และเมื่อเซต 1 คือ 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_en": "What is Set 4, when Set 1 is 25-18, and when Date is Jun 2?",
    "question_th": "ชุดที่ 4 คืออะไร ชุดที่ 1 คือ 25-18 และวันที่คือ 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–97 (2ot)\"",
    "question_en": "What is the Team with a Score that is w 101–97 (2ot)?",
    "question_th": "ทีมที่มีคะแนนคือ 101–97 (2ot) คืออะไร?",
    "context": "CREATE TABLE table_name_17 (team VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_name_73 WHERE score = \"l 64–94 (ot)\"",
    "question_en": "What is the High points with a Score that is l 64–94 (ot)?",
    "question_th": "คะแนนสูงสุดที่มีคะแนนคือ l 64–94 (ot) คืออะไร?",
    "context": "CREATE TABLE table_name_73 (high_points VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT MAX(played) FROM table_name_62 WHERE drawn < 1",
    "question_en": "What is the largest played when the drawn is less than 1?",
    "question_th": "อะไรคือสิ่งที่เล่นได้มากที่สุดเมื่อเสมอกันน้อยกว่า 1?",
    "context": "CREATE TABLE table_name_62 (played INTEGER, drawn INTEGER)"
  },
  {
    "answer": "SELECT AVG(points) FROM table_name_31 WHERE played > 20",
    "question_en": "What points average has a played greater than 20?",
    "question_th": "แต้มเฉลี่ยใดที่มีการเล่นมากกว่า 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_en": "What is the smallest drawn with a position bigger than 10 and a played less than 20?",
    "question_th": "การจับฉลากที่น้อยที่สุดโดยมีตำแหน่งมากกว่า 10 และการเล่นน้อยกว่า 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_en": "At what average position is the drawn 9 and the points greater than 25?",
    "question_th": "งวดที่ 9 และแต้มที่มากกว่า 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_en": "How many played has an against greater than 57 and a lost bigger than 14?",
    "question_th": "มีกี่คนที่เล่นต่อมากกว่า 57 และแพ้มากกว่า 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_en": "The event rip curl pro mademoiselle is in which location?",
    "question_th": "งาน rip curl pro mademoiselle จัดขึ้นที่ไหนบ้างคะ?",
    "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_en": "On the date november 24-december 6 what's the winner when the country is united states?",
    "question_th": "ในวันที่ 24 พฤศจิกายน – 6 ธันวาคม ประเทศใดเป็นประเทศสหรัฐอเมริกา?",
    "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_en": "Which year was the 100 m event played in Thessaloniki, Greece?",
    "question_th": "งานวิ่ง 100 ม. ที่เมืองเทสซาโลนีกี ประเทศกรีซ เป็นปีใด",
    "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_en": "Which position was the World Indoor Championships in a year later than 2008?",
    "question_th": "World Indoor Championships ในหนึ่งปีหลังจากปี 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_en": "What position was played at the World Athletics Final Competition in a year more recent than 2008?",
    "question_th": "ตำแหน่งใดที่เล่นในการแข่งขัน World Athletics Final Competition ในหนึ่งปีที่ใหม่กว่าปี 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_en": "What position was played at the World Athletics Final Competition in a year more recent than 2008?",
    "question_th": "ตำแหน่งใดที่เล่นในการแข่งขัน World Athletics Final Competition ในหนึ่งปีที่ใหม่กว่าปี 2008",
    "context": "CREATE TABLE table_name_11 (position VARCHAR, competition VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT goals FROM table_name_92 WHERE assists = \"5\"",
    "question_en": "What are the goals of the assists of 5?",
    "question_th": "ประตูของ 5 แอสซิสต์คืออะไร?",
    "context": "CREATE TABLE table_name_92 (goals VARCHAR, assists VARCHAR)"
  },
  {
    "answer": "SELECT assists FROM table_name_66 WHERE year = \"1995\"",
    "question_en": "What is the assists for the year 1995?",
    "question_th": "แอสซิสต์ในปี 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_en": "What assists has the Team SMU and the total points of 85?",
    "question_th": "ทีม SMU มีแอสซิสต์อะไรบ้างและมีคะแนนรวม 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_en": "What year had 48 assists?",
    "question_th": "ปีไหนมี 48 แอสซิสต์?",
    "context": "CREATE TABLE table_name_35 (year VARCHAR, assists VARCHAR)"
  },
  {
    "answer": "SELECT total_points FROM table_name_28 WHERE gp_gs = \"24/23\"",
    "question_en": "What is the total points for GP/GS of 24/23?",
    "question_th": "คะแนนรวมสำหรับ GP/GS ของ 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_en": "What is the assists for the Team of Florida and the total points of 75?",
    "question_th": "แอสซิสต์ของทีมฟลอริดาเป็นอย่างไรบ้างและมีคะแนนรวม 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_en": "What is the attendance of the match with F.C. central chugoku as the home team?",
    "question_th": "แมตช์นี้จะมีเอฟซี เซ็นทรัล ชูโกกุ ลงเล่นเป็นเจ้าบ้านด้วยหรือไม่?",
    "context": "CREATE TABLE table_name_24 (attendance VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_52 WHERE match_no = \"9\"",
    "question_en": "What is the away team of match 9?",
    "question_th": "ทีมเยือนนัดที่ 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_en": "What is the score of match 15?",
    "question_th": "นัดที่ 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_en": "What is the attendance of the match with kochi university as the away team?",
    "question_th": "แมตช์นี้กับมหาวิทยาลัยโคจิในฐานะทีมเยือนจะเข้าร่วมอย่างไร?",
    "context": "CREATE TABLE table_name_23 (attendance VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_82 WHERE away_team = \"rosso kumamoto\"",
    "question_en": "What is the attendance of the match with rosso kumamoto as the away team?",
    "question_th": "แมตช์นี้รอสโซ คุมาโมโตะ จะเป็นทีมเยือนจะลงเล่นอย่างไร?",
    "context": "CREATE TABLE table_name_82 (attendance VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_name_69 WHERE balance_sheet_total = \"€125,359,000\"",
    "question_en": "What year did the company have a balance sheet total of €125,359,000?",
    "question_th": "บริษัทมีงบดุลรวม 125,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_en": "What was the average Year of release for the Album, \"Da Baddest Bitch\"?",
    "question_th": "ปีที่ออกโดยเฉลี่ยของอัลบั้ม \"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_en": "What was the result of the game with a score of 3-2?",
    "question_th": "จบเกมด้วยสกอร์ 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_en": "What was the score of the 2014 World Cup Qualification?",
    "question_th": "ฟุตบอลโลก 2014 รอบคัดเลือก ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_91 (score VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_65 WHERE score = \"4-1\"",
    "question_en": "What was the result of the game with a score of 4-1?",
    "question_th": "ผลการแข่งขันด้วยสกอร์ 4-1 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_65 (result VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_42 WHERE score = \"3-2\"",
    "question_en": "What venue held with game with a score of 3-2?",
    "question_th": "สนามไหนจัดด้วยสกอร์ 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_en": "When has a Centerfold model of krista kelly?",
    "question_th": "คริสต้า เคลลี่ รุ่น Centerfold มีเมื่อไหร่?",
    "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_en": "Which 20 Questions has a Cover model of rena mero , torrie wilson (two alternative covers)?",
    "question_th": "คำถาม 20 ข้อใดมีโมเดลหน้าปกของ rena mero , torrie wilson (สองปกทางเลือก)",
    "context": "CREATE TABLE table_name_60 (cover_model VARCHAR)"
  },
  {
    "answer": "SELECT centerfold_model FROM table_name_80 WHERE date = \"3-04\"",
    "question_en": "When Centerfold model is on 3-04?",
    "question_th": "เมื่อรุ่น Centerfold อยู่บน 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_en": "Which Cover model has a Centerfold model of scarlett keegan?",
    "question_th": "Cover รุ่นไหนมีรุ่น Centerfold ของ 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_en": "When has a Centerfold model of pilar lastra?",
    "question_th": "Pilar Lastra รุ่น Centerfold มีเมื่อไหร่?",
    "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_en": "What is the lowest share with an air date of March 21, 2008 and had viewers larger than 5.15?",
    "question_th": "ส่วนแบ่งต่ำสุดคือวันที่ออกอากาศวันที่ 21 มีนาคม 2551 และมีผู้ชมมากกว่า 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_en": "What is the lowest team (s) that have tvmk as top scorer (s) and flora as the champion?",
    "question_th": "ทีมใดที่ต่ำที่สุดที่มี tvmk เป็นผู้ทำประตูสูงสุด และฟลอร่าเป็นแชมป์?",
    "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_en": "What round had the opponent Lyon?",
    "question_th": "คู่ต่อสู้ลียงมีรอบไหน?",
    "context": "CREATE TABLE table_name_1 (round VARCHAR, opposition VARCHAR)"
  },
  {
    "answer": "SELECT first_leg FROM table_name_53 WHERE round = \"semi-final\"",
    "question_en": "Who has the first leg that has a round in the semi-final?",
    "question_th": "ใครมีเลกแรกที่มีรอบรองชนะเลิศ?",
    "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_en": "What is Most Laps Led, when Winning Team is Chip Ganassi Racing, and when Fastest Lap is Marco Andretti?",
    "question_th": "อะไรคือรอบนำมากที่สุด เมื่อทีมที่ชนะคือ Chip Ganassi Racing และเมื่อรอบเร็วที่สุดคือ 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élio castroneves\"",
    "question_en": "Who is the Winning Driver, when Most Laps Led is Dario Franchitti, and when Pole Position is Hélio Castroneves?",
    "question_th": "ใครคือนักแข่งที่ชนะ เมื่อนำรอบมากที่สุดคือ Dario Franchitti และเมื่อตำแหน่งโพลโพซิชั่นคือ Hélio 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_en": "What is Winning Team, when Most Laps Led is Alex Tagliani?",
    "question_th": "ทีมที่ชนะคืออะไร เมื่อนำรอบมากที่สุดคือ 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_en": "What is Winning Driver, when Fastest Lap is Ryan Hunter-Reay, and when Most Laps Led is Ryan Briscoe?",
    "question_th": "Winning Driver คืออะไร เมื่อรอบที่เร็วที่สุดคือ Ryan Hunter-Reay และเมื่อรอบนำมากที่สุดคือ 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_en": "What is Race, when Winning Team is Chip Ganassi Racing, when Pole Position is Ryan Briscoe, and when Most Laps Led is Scott Dixon?",
    "question_th": "การแข่งขันคืออะไร เมื่อทีมที่ชนะคือ Chip Ganassi Racing เมื่อตำแหน่งโพลโพซิชั่นคือ Ryan Briscoe และเมื่อนำรอบมากที่สุดคือ 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_en": "Who was the Winner when the Runner-up was Real Salt Lake?",
    "question_th": "ใครคือผู้ชนะเมื่อรองชนะเลิศคือ 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_en": "During which Season was the tournament in progress?",
    "question_th": "การแข่งขันอยู่ระหว่างดำเนินการในช่วงฤดูกาลใด?",
    "context": "CREATE TABLE table_name_64 (season VARCHAR, runner_up VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_15 WHERE winner = \"c.f. atlante\"",
    "question_en": "What was the Score during the Season in which the Winner was C.F. Atlante?",
    "question_th": "คะแนนระหว่างฤดูกาลที่ผู้ชนะคือ CF Atlante คืออะไร?",
    "context": "CREATE TABLE table_name_15 (score VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_88 WHERE losing_semifinalists = \"toluca unam\"",
    "question_en": "What was the Score when the Losing Semifinalists were Toluca Unam?",
    "question_th": "คะแนนเมื่อผู้เข้ารอบรองชนะเลิศที่แพ้คือ Toluca Unam คืออะไร",
    "context": "CREATE TABLE table_name_88 (score VARCHAR, losing_semifinalists VARCHAR)"
  },
  {
    "answer": "SELECT laws_against_homosexuality FROM table_name_90 WHERE penalty = \"—\" AND country = \"iraq\"",
    "question_en": "What law has a penalty of — in Iraq?",
    "question_th": "กฎหมายอะไรมีโทษ — ในอิรัก?",
    "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_en": "What are the laws against homosexuality in Malaysia?",
    "question_th": "กฎหมายต่อต้านการรักร่วมเพศในประเทศมาเลเซียมีอะไรบ้าง?",
    "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_en": "What is the average Events when the top-25 is 12 and there are less than 0 wins?",
    "question_th": "เหตุการณ์โดยเฉลี่ยจะเป็นอย่างไรเมื่อ 25 อันดับแรกคือ 12 และมีการชนะน้อยกว่า 0 ครั้ง?",
    "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_en": "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?",
    "question_th": "ผลรวมของเหตุการณ์จะเป็นอย่างไรเมื่อ 25 อันดับแรกมากกว่า 5 และ 10 อันดับแรกน้อยกว่า 4 และชนะมากกว่า 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_en": "What is the average Top-10 when there were 17 cuts made with less than 0 wins?",
    "question_th": "อะไรคือค่าเฉลี่ยของท็อป 10 เมื่อมีการตัดตัว 17 ครั้งและชนะน้อยกว่า 0 ครั้ง?",
    "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_en": "What is the sum of Cuts made when there were more than 72 events?",
    "question_th": "ผลรวมของการตัดที่เกิดขึ้นเมื่อมีมากกว่า 72 เหตุการณ์เป็นเท่าใด",
    "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_en": "What is the average Top-5 for the open championship, and a Top-10 smaller than 2?",
    "question_th": "ค่าเฉลี่ย 5 อันดับแรกสำหรับการแข่งขันชิงแชมป์แบบเปิดคืออะไร และ 10 อันดับแรกน้อยกว่า 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_en": "What was the date of airing for episodes with ratings under 10.1 and production number of 96 5-09?",
    "question_th": "ออกอากาศวันไหนที่มีเรตติ้งต่ำกว่า 10.1 และจำนวนการผลิต 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_en": "What was the fewest number of viewers for the episode production number of 109 5-22?",
    "question_th": "จำนวนผู้ชมน้อยที่สุดสำหรับจำนวนการผลิตตอน 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_en": "What is the First Aligned date in 1614?",
    "question_th": "วันที่จัดชิดครั้งแรกในปี 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_en": "How many Airlines have a total distance of 705 (km)?",
    "question_th": "มีกี่สายการบินที่มีระยะทางรวม 705 (กม.)?",
    "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_en": "What is the 1st leg result when team 1 is Gambia?",
    "question_th": "ผลเลกแรกจะเป็นอย่างไรเมื่อทีม 1 คือ แกมเบีย?",
    "context": "CREATE TABLE table_name_10 (team_1 VARCHAR)"
  },
  {
    "answer": "SELECT 2 AS nd_leg FROM table_name_16 WHERE team_2 = \"morocco\"",
    "question_en": "What is the 2nd leg result when team 2 is Morocco?",
    "question_th": "ผลเลกที่ 2 จะเป็นอย่างไรเมื่อทีมที่ 2 คือ โมร็อคโค?",
    "context": "CREATE TABLE table_name_16 (team_2 VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_32 WHERE year = \"2001\"",
    "question_en": "Which Name was in the Year 2001?",
    "question_th": "ชื่อใดในปี 2544?",
    "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_en": "Which Name had a Rank of 18 Out of a number smaller than 149?",
    "question_th": "ชื่อใดมีอันดับ 18 จากจำนวนที่น้อยกว่า 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_en": "Which Name had the Rank, 15?",
    "question_th": "ชื่อใดมีอันดับ 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_en": "What is the lowest Rank for the Name, \"area of permanent crops\", Out of a number smaller than 181?",
    "question_th": "อันดับต่ำสุดสำหรับชื่อ \"พื้นที่ปลูกพืชถาวร\" จากจำนวนที่น้อยกว่า 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_en": "Which Name had the Source, World Bank, and a Rank smaller than 110, Out of a number smaller than 199?",
    "question_th": "ชื่อใดมีแหล่งที่มา ธนาคารโลก และอันดับน้อยกว่า 110 จากตัวเลขที่น้อยกว่า 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_en": "Which Team has Manzoor Elahi as Coach and Taufeeq Umar as Captain?",
    "question_th": "ทีมใดมี Manzoor Elahi เป็นโค้ช และ Taufeq Umar เป็นกัปตัน?",
    "context": "CREATE TABLE table_name_88 (team VARCHAR, coach VARCHAR, captain VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_98 WHERE team = \"bahawalpur stags\"",
    "question_en": "Which City has the Bahawalpur Stags Team?",
    "question_th": "เมืองใดมีทีม Bahawalpur Stags?",
    "context": "CREATE TABLE table_name_98 (city VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_90 WHERE date = \"december 18, 1994\"",
    "question_en": "Who is the opponent of the December 18, 1994 game?",
    "question_th": "คู่ต่อสู้ของเกมวันที่ 18 ธันวาคม 1994 คือใคร?",
    "context": "CREATE TABLE table_name_90 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT artist FROM table_name_48 WHERE date = \"june 1979\"",
    "question_en": "What is the Artist with a Date that is june 1979?",
    "question_th": "ศิลปินที่มีวันที่คือเดือนมิถุนายน 2522 คืออะไร?",
    "context": "CREATE TABLE table_name_48 (artist VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT writer FROM table_name_8 WHERE actual_title = \"mork & mindy\"",
    "question_en": "What is the Writer with an Actual Title that is mork & mindy?",
    "question_th": "นักเขียนที่มีชื่อจริงที่เป็น 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_en": "What is the Writer with a Date that is january 1975?",
    "question_th": "นักเขียนที่มีวันที่คือเดือนมกราคม 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_en": "What is the smallest played amount when there are 2 draws and an against of more than 73?",
    "question_th": "จำนวนเงินที่เล่นน้อยที่สุดเมื่อเสมอ 2 ครั้งและเสมอกันมากกว่า 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_en": "What is the earliest season with a premiere of february5,2007?",
    "question_th": "ซีซั่นแรกสุดที่มีรอบปฐมทัศน์ในวันที่ 5 กุมภาพันธ์ พ.ศ. 2550 คืออะไร?",
    "context": "CREATE TABLE table_name_90 (episodes INTEGER, premiere VARCHAR)"
  },
  {
    "answer": "SELECT premiere FROM table_name_36 WHERE episodes > 15",
    "question_en": "Which premiere had more than 15 episodes?",
    "question_th": "รอบปฐมทัศน์เรื่องใดมีมากกว่า 15 ตอน?",
    "context": "CREATE TABLE table_name_36 (premiere VARCHAR, episodes INTEGER)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_name_15 WHERE date = \"april 7\"",
    "question_en": "Who had the highest rebounds of the game on April 7?",
    "question_th": "ใครมีรีบาวน์สูงสุดในเกมวันที่ 7 เมษายน?",
    "context": "CREATE TABLE table_name_15 (high_rebounds VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_80 WHERE date = \"2003\"",
    "question_en": "What is Result, when Date is 2003?",
    "question_th": "ผลลัพธ์คืออะไร เมื่อเป็นวันที่ 2003",
    "context": "CREATE TABLE table_name_80 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_45 WHERE date = \"1996\"",
    "question_en": "What is Record, when Date is 1996?",
    "question_th": "Record คืออะไร เมื่อเป็นวันที่ 1996",
    "context": "CREATE TABLE table_name_45 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_name_9 WHERE date = \"2007\"",
    "question_en": "What is Notes, when Date is 2007?",
    "question_th": "Notes คืออะไร เมื่อเป็นวันที่ 2007",
    "context": "CREATE TABLE table_name_9 (notes VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(round) FROM table_name_28 WHERE opponent = \"junior pitbull\"",
    "question_en": "What is the highest Round, when the Opponent is Junior Pitbull?",
    "question_th": "รอบสูงสุดคือเมื่อฝ่ายตรงข้ามคือจูเนียร์พิทบูล?",
    "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_en": "What is Date, when Result is Loss, and when Method is Submission (Armbar)?",
    "question_th": "วันที่คืออะไร เมื่อผลลัพธ์คือการสูญเสีย และเมื่อใดคือการส่งวิธีการ (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_en": "What is the Coombe Road time with a Selsdon evening peak?",
    "question_th": "เวลา Coombe Road กับจุดสูงสุดยามเย็นที่ Selsdon คืออะไร?",
    "context": "CREATE TABLE table_name_17 (coombe_road VARCHAR, selsdon VARCHAR)"
  },
  {
    "answer": "SELECT woodside FROM table_name_81 WHERE coombe_road = \"16:19\"",
    "question_en": "What is the Woodside for the 16:19 Coombe Road?",
    "question_th": "Woodside สำหรับ 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_en": "What is the Elmers End with a 09:54 Bingham Road?",
    "question_th": "Elmers End ที่มีถนน Bingham 09:54 คืออะไร?",
    "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_en": "What is the Coombe Road with a Woodside time of 07:23?",
    "question_th": "ถนน Coombe ที่ Woodside เวลา 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_en": "What is the Elmers End with a 17:57 Selsdon time?",
    "question_th": "Elmers End คืออะไรด้วยเวลา 17:57 Selsdon?",
    "context": "CREATE TABLE table_name_30 (elmers_end VARCHAR, selsdon VARCHAR)"
  },
  {
    "answer": "SELECT selsdon FROM table_name_14 WHERE coombe_road = \"17:19\"",
    "question_en": "What is the Selsdon for the 17:19 Coombe Road?",
    "question_th": "Selsdon สำหรับ 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_en": "What is the highest win for losses less than 2?",
    "question_th": "ชัยชนะสูงสุดสำหรับการแพ้น้อยกว่า 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_en": "What is the average Byes for the losses of 15, and before 1874?",
    "question_th": "ลาก่อนเฉลี่ยสำหรับการสูญเสีย 15 ครั้งและก่อนปี 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_en": "What is the sum of against in Ballarat FL of East Point and wins less than 16?",
    "question_th": "ผลรวมของการแข่งขันใน Ballarat FL ของ East Point และชนะน้อยกว่า 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_en": "What is the School with a Pick that is 24?",
    "question_th": "โรงเรียนที่มีการเลือกอายุ 24 ปีคืออะไร?",
    "context": "CREATE TABLE table_name_99 (school VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_86 WHERE player = \"david cooper\"",
    "question_en": "What is the Team with a Player that is david cooper?",
    "question_th": "ทีมที่มีผู้เล่นอย่าง เดวิด คูเปอร์ คืออะไร?",
    "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_en": "How many visitors in 2007 were there for ski jumping hill?",
    "question_th": "ในปี 2550 มีผู้มาเยี่ยมชมเนินสกีกระโดดกี่คน?",
    "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ć\" AND rank < 4",
    "question_en": "What is the highest Games, when Rebounds is greater than 100, when Name is Nikola Peković, and when Rank is less than 4?",
    "question_th": "เกมใดที่สูงที่สุด เมื่อ Rebounds มากกว่า 100 เมื่อ Name คือ Nikola Peković และเมื่อ Rank น้อยกว่า 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_en": "What is the total number of Games, when Rank is less than 4, and when Rebounds is less than 102?",
    "question_th": "จำนวนเกมทั้งหมดคือเท่าไร เมื่ออันดับน้อยกว่า 4 และเมื่อรีบาวด์น้อยกว่า 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_en": "What is the lowest Games, when Name is Travis Watson, and when Rebounds is less than 136?",
    "question_th": "เกมใดที่ต่ำที่สุด เมื่อชื่อคือ Travis Watson และเมื่อ Rebounds น้อยกว่า 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_en": "What is the sum of Rebounds, when Team is Aris Thessaloniki, and when Games is greater than 14?",
    "question_th": "ผลรวมของการรีบาวด์เมื่อทีมคือ Aris Thessaloniki และเมื่อเกมมีค่ามากกว่า 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_en": "What is the highest Rank, when Name is Travis Watson, and when Games is less than 14?",
    "question_th": "ตำแหน่งสูงสุดคือเมื่อชื่อ Travis Watson และเมื่อ Games น้อยกว่า 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_en": "What is Authors, when Novelty is Gen Nov, when Location is South Africa, and when Name is Criocephalosaurus?",
    "question_th": "ผู้แต่งคืออะไร เมื่อความแปลกใหม่คือ Gen Nov เมื่อสถานที่คือแอฟริกาใต้ และเมื่อชื่อคือ 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_en": "What is Status, when Location is Russia?",
    "question_th": "สถานะคืออะไร เมื่อตำแหน่งคือรัสเซีย",
    "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_en": "What is Authors, when Novelty is Gen Et Sp Nov, and when Name is Lanthanocephalus?",
    "question_th": "ผู้แต่งคืออะไร เมื่อความแปลกใหม่คือ Gen Et Sp Nov และเมื่อชื่อคือ 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_en": "What is Name, when Authors are Kammerer & Sidor?",
    "question_th": "ชื่อคืออะไร เมื่อผู้แต่งคือ 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_en": "What is Name, when Location is Tanzania, and when Novelty is Gen Nov?",
    "question_th": "ชื่อคืออะไร เมื่อสถานที่คือแทนซาเนีย และเมื่อความแปลกใหม่คือ 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_en": "What is Name, when Status is Valid, when Authors is Maisch, when Location is Tanzania, and when Novelty is Gen Et Sp Nov?",
    "question_th": "ชื่อคืออะไร เมื่อสถานะถูกต้อง เมื่อผู้เขียนคือ Maisch เมื่อตำแหน่งที่ตั้งคือแทนซาเนีย และเมื่อความแปลกใหม่คือ 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_en": "What is the T568A color for the cable with a white/orange stripe T568B color?",
    "question_th": "T568A สำหรับสายที่มีแถบสีขาว/ส้มสี T568B คืออะไร?",
    "context": "CREATE TABLE table_name_44 (t568a_color VARCHAR, t568b_color VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_53 WHERE opponent = \"flavia pennetta\"",
    "question_en": "What is the Date with an Opponent that is flavia pennetta?",
    "question_th": "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_en": "What is the Score with an Opponent that is flavia pennetta?",
    "question_th": "คะแนนของฝ่ายตรงข้ามที่เป็น flavia pennetta คืออะไร?",
    "context": "CREATE TABLE table_name_55 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_39 WHERE score = \"2–6, 6–4, 3–6\"",
    "question_en": "What is the Opponent with a Score that is 2–6, 6–4, 3–6?",
    "question_th": "ฝ่ายตรงข้ามที่มีสกอร์ 2–6, 6–4, 3–6 คืออะไร?",
    "context": "CREATE TABLE table_name_39 (opponent VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_49 WHERE date = \"may 5, 2012\"",
    "question_en": "What is the Outcome with a Date that is may 5, 2012?",
    "question_th": "ผลลัพธ์ที่มีวันที่คือวันที่ 5 พฤษภาคม 2012 คืออะไร",
    "context": "CREATE TABLE table_name_49 (outcome VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_85 WHERE opponent = \"jelena janković\"",
    "question_en": "What is the Outcome with an Opponent that is jelena janković?",
    "question_th": "ผลลัพธ์ของคู่ต่อสู้คือ เจเลน่า ยานโควิช คืออะไร?",
    "context": "CREATE TABLE table_name_85 (outcome VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_55 WHERE score = \"2–6, 6–4, 3–6\"",
    "question_en": "What is the Tournament with a Score that is 2–6, 6–4, 3–6?",
    "question_th": "การแข่งขันที่มีสกอร์ 2–6, 6–4, 3–6 คืออะไร?",
    "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_en": "Which week was on November 13, 1955 when the attendance was over 33,982?",
    "question_th": "สัปดาห์ใดคือวันที่ 13 พฤศจิกายน 1955 มีผู้เข้าร่วมมากกว่า 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_en": "What is the Japanese name of the Province with a Korean name of Chungcheong-Bukdo?",
    "question_th": "ชื่อจังหวัดในภาษาญี่ปุ่น กับชื่อเกาหลี ชุงชอง-บุกโด คืออะไร?",
    "context": "CREATE TABLE table_name_46 (japanese_name VARCHAR, korean_name VARCHAR)"
  },
  {
    "answer": "SELECT hanja___kanji FROM table_name_10 WHERE kana = \"ちゅうせいほくどう\"",
    "question_en": "What is the Hanja/Kanji of the Province with a Kana of ちゅうせいほくどう?",
    "question_th": "ฮันจะ/คันจิของจังหวัดที่มีคานาของ ちゅうせいほくどう คืออะไร?",
    "context": "CREATE TABLE table_name_10 (hanja___kanji VARCHAR, kana VARCHAR)"
  },
  {
    "answer": "SELECT kana FROM table_name_2 WHERE korean_name = \"chungcheong-namdo\"",
    "question_en": "What is the Kana of the Province with a Korean name of Chungcheong-Namdo?",
    "question_th": "คะนะของจังหวัดที่มีชื่อภาษาเกาหลีว่า ชุงชอง-นัมโด คืออะไร?",
    "context": "CREATE TABLE table_name_2 (kana VARCHAR, korean_name VARCHAR)"
  },
  {
    "answer": "SELECT hangul FROM table_name_48 WHERE kana = \"へいあんなんどう\"",
    "question_en": "What is the Hangul of the Province with a Kana of へいあんなんどう?",
    "question_th": "อังกูลของจังหวัดที่มีคานาของ へいあんなんどう คืออะไร?",
    "context": "CREATE TABLE table_name_48 (hangul VARCHAR, kana VARCHAR)"
  },
  {
    "answer": "SELECT hangul FROM table_name_3 WHERE kana = \"ちゅうせいなんどう\"",
    "question_en": "What is the Hangul of the Province with a Kana of ちゅうせいなんどう?",
    "question_th": "อังกูลของจังหวัดที่มีคานาของ ちゅうせいなんどう คืออะไร?",
    "context": "CREATE TABLE table_name_3 (hangul VARCHAR, kana VARCHAR)"
  },
  {
    "answer": "SELECT hanja___kanji FROM table_name_5 WHERE korean_name = \"chungcheong-bukdo\"",
    "question_en": "What is the Hanja/Kanji of the Province with a Korean name of Chungcheong-Bukdo?",
    "question_th": "ฮันจา/คันจิของจังหวัดที่มีชื่อภาษาเกาหลีว่า ชุงชอง-บุกโด คืออะไร?",
    "context": "CREATE TABLE table_name_5 (hanja___kanji VARCHAR, korean_name VARCHAR)"
  },
  {
    "answer": "SELECT oct FROM table_name_94 WHERE nov = \"51/30\"",
    "question_en": "What were the Oct. temperatures for the city that had Nov. temperatures of 51/30?",
    "question_th": "อุณหภูมิในเดือนตุลาคมสำหรับเมืองที่มีอุณหภูมิ 51/30 พ.ย. คือเท่าไร",
    "context": "CREATE TABLE table_name_94 (oct VARCHAR, nov VARCHAR)"
  },
  {
    "answer": "SELECT feb FROM table_name_63 WHERE city = \"east stroudsburg\"",
    "question_en": "What were the Feb temperatures in East Stroudsburg?",
    "question_th": "อุณหภูมิใน ก.พ. ใน อีสต์สเตราด์สเบิร์ก คืออะไร?",
    "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_en": "What is the sum of completions that led to completion percentages of 65.4 and attempts under 451?",
    "question_th": "ผลรวมของความสำเร็จที่นำไปสู่เปอร์เซ็นต์ความสำเร็จ 65.4 และความพยายามต่ำกว่า 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_en": "What regular season did the team reach the conference semifinals in the playoffs?",
    "question_th": "ฤดูกาลปกติใดที่ทีมเข้าถึงรอบรองชนะเลิศการประชุมในรอบตัดเชือก?",
    "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_en": "When the regular season of 2nd, Northeast and the year was less than 2008 what was the total number of Division?",
    "question_th": "เมื่อฤดูกาลปกติ 2 ภาคตะวันออกเฉียงเหนือ และปีน้อยกว่า พ.ศ. 2551 มีทั้งหมดกี่กอง?",
    "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_en": "What division was the regular season 5th, Northeast?",
    "question_th": "ภาคปกติ5ภาคตะวันออกเฉียงเหนือคือแผนกอะไร?",
    "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_en": "What was the result when Jam Hsiao was nominated in 2012?",
    "question_th": "ผลเป็นอย่างไรเมื่อ Jam Hsiao ได้รับการเสนอชื่อเข้าชิงในปี 2555?",
    "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_en": "Which award is in the category of best music video?",
    "question_th": "รางวัลใดอยู่ในหมวดมิวสิกวิดีโอยอดเยี่ยม?",
    "context": "CREATE TABLE table_name_55 (award VARCHAR, category VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_54 WHERE result = \"l 29–23\"",
    "question_en": "Which Attendance has a Result of l 29–23?",
    "question_th": "ผู้เข้าร่วมคนใดมีผลคะแนน l 29–23",
    "context": "CREATE TABLE table_name_54 (attendance VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_89 WHERE week = 1",
    "question_en": "When has a Week of 1?",
    "question_th": "เมื่อไรจะมีสัปดาห์ที่ 1?",
    "context": "CREATE TABLE table_name_89 (date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_11 WHERE opponent = \"at seattle seahawks\"",
    "question_en": "Which Week has an Opponent of at seattle seahawks?",
    "question_th": "สัปดาห์ใดที่มีคู่ต่อสู้ของซีแอตเทิลซีฮอว์กส์?",
    "context": "CREATE TABLE table_name_11 (week VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_71 WHERE date = \"october 15, 1995\"",
    "question_en": "Name the Result on october 15, 1995?",
    "question_th": "ตั้งชื่อผลเมื่อ 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_en": "Which Opponent has a Week larger than 2 on november 19, 1995?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีสัปดาห์ที่ใหญ่กว่า 2 ในวันที่ 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_en": "What is the recorded conference that was a Wac Conference?",
    "question_th": "การประชุมที่บันทึกไว้ว่าเป็น 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_en": "What conference has the Wichita State school?",
    "question_th": "โรงเรียน Wichita State มีการประชุมอะไรบ้าง?",
    "context": "CREATE TABLE table_name_26 (conference VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_72 WHERE place = \"burghley\"",
    "question_en": "What is the rank for Burghley?",
    "question_th": "เบิร์กลีย์อยู่อันดับไหน?",
    "context": "CREATE TABLE table_name_72 (rank VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT horse FROM table_name_54 WHERE competition = \"badminton horse trials\"",
    "question_en": "What horse was at the Badminton Horse Trials?",
    "question_th": "ม้าตัวไหนอยู่ในการแข่งขัน 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_en": "What was Des Dickson's lowest rank for matches smaller than 285 and less than 219 goals?",
    "question_th": "อันดับต่ำสุดของเดส ดิกสันสำหรับแมตช์ที่น้อยกว่า 285 ประตูและน้อยกว่า 219 ประตูคือเท่าไร?",
    "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_en": "How many goals on average had 644 matches and a rank bigger than 3?",
    "question_th": "โดยเฉลี่ยแล้วมีกี่ประตูจากการแข่งขัน 644 นัดและอันดับมากกว่า 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_en": "How many ranks had 205 matches?",
    "question_th": "205 นัดมีกี่อันดับ?",
    "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_en": "What was Jimmy Jones' rank when the matches were smaller than 285?",
    "question_th": "อันดับของ Jimmy Jones เมื่อการแข่งขันน้อยกว่า 285 คืออะไร?",
    "context": "CREATE TABLE table_name_4 (rank INTEGER, name VARCHAR, matches VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_53 WHERE home = \"hornets\"",
    "question_en": "Which date had the Hornets as the home team?",
    "question_th": "ฮอร์เน็ตส์เป็นเจ้าบ้านวันไหน?",
    "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_en": "What is the To par score corresponding to the winning score of 64-69-67-66=266?",
    "question_th": "คะแนน To par ที่สอดคล้องกับคะแนนชนะ 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_en": "What was the To par score for the tournament with a margin of victory of 1 stroke?",
    "question_th": "คะแนนพาร์ของทัวร์นาเมนต์โดยมีมาร์จิ้นชัยชนะ 1 สโตรกคือเท่าไร?",
    "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_en": "What was the winning score for the tournament with a margin of victory of 7 strokes?",
    "question_th": "คะแนนชนะสำหรับทัวร์นาเมนต์โดยมีมาร์จิ้นชัยชนะ 7 สโตรคเป็นเท่าใด?",
    "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_en": "What day in December was the game that resulted in a record of 6-3-1?",
    "question_th": "วันไหนในเดือนธันวาคมเป็นเกมที่สกอร์ 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_en": "How many were in attendance against the Oakland Raiders after week 7?",
    "question_th": "มีกี่คนที่เข้าร่วมกับ Oakland Raiders หลังจากสัปดาห์ที่ 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_en": "What is the average attendance for the New York Jets?",
    "question_th": "จำนวนผู้เข้าร่วมโดยเฉลี่ยของ 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_en": "On what week were there 26,243 in attendance on September 21, 1969?",
    "question_th": "วันที่ 21 กันยายน 1969 มีผู้เข้าร่วม 26,243 คนในสัปดาห์ใด?",
    "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_en": "Who was the opponent at Pasir Gudang, Malaysia with a match larger than 2?",
    "question_th": "คู่ต่อสู้ที่ Pasir Gudang ประเทศมาเลเซียคือใครที่มีนัดใหญ่กว่า 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_en": "Who was the opponent at the match smaller than 3?",
    "question_th": "คู่ต่อสู้ในการแข่งขันที่เล็กกว่า 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_en": "Where was the game when Police S.A. was the opponent?",
    "question_th": "เกมไหนที่ Police SA เป็นคู่ต่อสู้?",
    "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_en": "How many list entry numbers are located in Platting Road, Lydgate?",
    "question_th": "มีหมายเลขรายการกี่รายการที่อยู่ใน 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_en": "Which type has list entry number of 1356677?",
    "question_th": "ประเภทใดมีหมายเลขรายการ 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_en": "What is the completed date of the church with list entry number 1068071?",
    "question_th": "คริสตจักรที่มีรายการหมายเลข 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âtel xamax\" AND date = \"10 december 1985\"",
    "question_en": "Who were the scorers in the game against neuchâtel xamax played on 10 December 1985?",
    "question_th": "ใครคือผู้ทำประตูในเกมที่พบกับ เนอชาแตล ซามักซ์ ลงเล่นเมื่อวันที่ 10 ธันวาคม พ.ศ. 2528?",
    "context": "CREATE TABLE table_name_64 (scorers VARCHAR, opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_94 WHERE scorers = \"hegarty\"",
    "question_en": "What date was the game played in where hegarty was the scorer?",
    "question_th": "เกมนี้เล่นวันไหนโดยผู้ทำประตูคือผู้ทำประตู?",
    "context": "CREATE TABLE table_name_94 (date VARCHAR, scorers VARCHAR)"
  },
  {
    "answer": "SELECT callsign FROM table_name_68 WHERE icao = \"sco\"",
    "question_en": "Who is the callsign that has ICAO of SCO?",
    "question_th": "ใครคือสัญญาณเรียกขานที่มี ICAO ของ SCO?",
    "context": "CREATE TABLE table_name_68 (callsign VARCHAR, icao VARCHAR)"
  },
  {
    "answer": "SELECT commenced_operations FROM table_name_34 WHERE icao = \"slk\"",
    "question_en": "Who is the commenced operations that has icao of slk?",
    "question_th": "ใครคือผู้เริ่มดำเนินการที่มี icao ของ slk?",
    "context": "CREATE TABLE table_name_34 (commenced_operations VARCHAR, icao VARCHAR)"
  },
  {
    "answer": "SELECT callsign FROM table_name_3 WHERE commenced_operations < 1976",
    "question_en": "Who is the call sign that has a commenced operation before 1976?",
    "question_th": "ใครคือสัญญาณเรียกขานที่เริ่มดำเนินการก่อนปี 2519?",
    "context": "CREATE TABLE table_name_3 (callsign VARCHAR, commenced_operations INTEGER)"
  },
  {
    "answer": "SELECT hdtv FROM table_name_60 WHERE content = \"music\"",
    "question_en": "What is the HDTV of the Music Content Channel?",
    "question_th": "HDTV ของช่องเนื้อหาเพลงคืออะไร?",
    "context": "CREATE TABLE table_name_60 (hdtv VARCHAR, content VARCHAR)"
  },
  {
    "answer": "SELECT television_service FROM table_name_36 WHERE content = \"cartomanzia\"",
    "question_en": "What is the Television Service offering Cartomanzia?",
    "question_th": "บริการโทรทัศน์ที่นำเสนอ Cartomanzia คืออะไร?",
    "context": "CREATE TABLE table_name_36 (television_service VARCHAR, content VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_32 WHERE content = \"televendite\"",
    "question_en": "What Country's content is Televendite?",
    "question_th": "Televendite มีเนื้อหาของประเทศใดบ้าง?",
    "context": "CREATE TABLE table_name_32 (country VARCHAR, content VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_9 WHERE content = \"tv locale\"",
    "question_en": "What Country's Content is TV Locale?",
    "question_th": "เนื้อหาของประเทศใดคือสถานที่ทางทีวี",
    "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_en": "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?",
    "question_th": "มีกี่เหรียญทองที่มีเงินมากกว่า 1 อันดับที่มากกว่า 1 รวมมากกว่า 4 ในเมื่อทองแดงก็มากกว่า 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_en": "What is the total of rank when gold is 2 and total is more than 4?",
    "question_th": "คะแนนรวมเมื่อทองเป็น 2 และรวมมากกว่า 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_en": "What is the total number of bronze when gold is less than 1 and silver is more than 1?",
    "question_th": "จำนวนทองแดงทั้งหมดเมื่อทองน้อยกว่า 1 และเงินมากกว่า 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_en": "What is the total of rank when silver is more than 1, gold is 2, and total is more than 4?",
    "question_th": "อันดับทั้งหมดเมื่อเงินมากกว่า 1 ทองคือ 2 และผลรวมมากกว่า 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_en": "What is the Wins with a Top-25 of 3, and a Top-5 larger than 1?",
    "question_th": "อะไรคือชัยชนะที่มี 25 อันดับแรกจาก 3 และ 5 อันดับแรกที่มากกว่า 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_en": "Which Cuts made has a Top-5 smaller than 3, and a Top-25 smaller than 6, and an Events of 10?",
    "question_th": "การ Cuts ใดที่มี Top-5 น้อยกว่า 3 และ Top-25 น้อยกว่า 6 และมีเหตุการณ์ 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_en": "Which Tournament has a Cuts made smaller than 9, and an Events of 10?",
    "question_th": "ทัวร์นาเมนต์ใดที่มีการ Cuts น้อยกว่า 9 และมีเหตุการณ์ 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_en": "What is the sum of Points for 250cc class, ranked 13th, later than 1955?",
    "question_th": "คะแนนรวมสำหรับคลาส 250cc อันดับที่ 13 หลังจากปี 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_en": "What is the Class for a year later than 1958, with 4 points?",
    "question_th": "คลาสในหนึ่งปีหลังจากปี 1958 คืออะไร โดยมี 4 คะแนน?",
    "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_en": "What is the average Year when there were more than 3 points, for MV Agusta and ranked 10th?",
    "question_th": "โดยเฉลี่ยแล้วปีไหนที่มีคะแนนมากกว่า 3 คะแนนสำหรับ MV Agusta และอันดับที่ 10?",
    "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_en": "What Team has a Class of 350cc, with less than 13 points in 1959?",
    "question_th": "ทีมใดมีคลาส 350cc โดยมีคะแนนน้อยกว่า 13 คะแนนในปี 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_en": "Which event was held at Manly Beach?",
    "question_th": "งานใดจัดขึ้นที่ 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_en": "What was the location of the Havaianas Beachley Classic, held in Australia?",
    "question_th": "สถานที่จัดงาน Havaianas Beachley Classic ซึ่งจัดขึ้นที่ออสเตรเลียอยู่ที่ใด",
    "context": "CREATE TABLE table_name_99 (location VARCHAR, country VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_31 WHERE country = \"brazil\"",
    "question_en": "Which event was held in Brazil?",
    "question_th": "งานใดจัดขึ้นที่ประเทศบราซิล",
    "context": "CREATE TABLE table_name_31 (event VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_name_4 WHERE host = \"university of colorado\"",
    "question_en": "The University of Colorado hosted what region?",
    "question_th": "มหาวิทยาลัยโคโลราโดเป็นเจ้าภาพในภูมิภาคใด",
    "context": "CREATE TABLE table_name_4 (region VARCHAR, host VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_60 WHERE venue = \"peterson gym\"",
    "question_en": "Peterson Gym is in what city?",
    "question_th": "Peterson Gym อยู่ที่เมืองอะไร?",
    "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_en": "Mideast region host University of Tennessee is in what state?",
    "question_th": "มหาวิทยาลัยเทนเนสซีเจ้าภาพภูมิภาคตะวันออกกลางอยู่ในรัฐใด",
    "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_en": "What city is east region venue University Hall (University of Virginia) in?",
    "question_th": "สถานที่จัดงานในภาคตะวันออก University Hall (University of Virginia) ตั้งอยู่ในเมืองใด",
    "context": "CREATE TABLE table_name_10 (city VARCHAR, region VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_19 WHERE host = \"stanford university\"",
    "question_en": "What is the venue at Stanford University?",
    "question_th": "มหาวิทยาลัยสแตนฟอร์ดจัดงานที่ไหน?",
    "context": "CREATE TABLE table_name_19 (venue VARCHAR, host VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_22 WHERE city = \"seattle\"",
    "question_en": "What is the venue in Seattle?",
    "question_th": "สถานที่จัดงานในซีแอตเทิลคือที่ไหน?",
    "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_en": "What team won the Tour de Santa Catarina?",
    "question_th": "ทีมใดชนะ 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_en": "What is Relax-Gam's average UCI Rating?",
    "question_th": "คะแนน UCI เฉลี่ยของ Relax-Gam คืออะไร?",
    "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_en": "What is Vuelta a Ecuador's lowest UCI Rating?",
    "question_th": "คะแนน UCI ต่ำสุดของ Vuelta a Ecuador คืออะไร",
    "context": "CREATE TABLE table_name_3 (uci_rating INTEGER, race_name VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_73 WHERE attendance = \"54,110\"",
    "question_en": "What was the result of the game attended by 54,110?",
    "question_th": "อะไรคือผลลัพธ์ของการแข่งขันที่มีผู้เข้าร่วม 54,110 คน?",
    "context": "CREATE TABLE table_name_73 (result VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_39 WHERE attendance = \"45,122\"",
    "question_en": "What was the date of the game attended by 45,122?",
    "question_th": "วันที่ของเกมมีผู้เข้าร่วม 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_en": "What is the earliest week with a game attended by 60,233?",
    "question_th": "สัปดาห์แรกสุดที่มีผู้เข้าร่วมเกม 60,233 คนคือสัปดาห์ใด?",
    "context": "CREATE TABLE table_name_35 (week INTEGER, attendance VARCHAR)"
  },
  {
    "answer": "SELECT MAX(week) FROM table_name_43 WHERE result = \"l 12–7\"",
    "question_en": "What is the latest week with a game with a result of l 12–7?",
    "question_th": "สัปดาห์ล่าสุดกับเกมที่มีผลการแข่งขัน l 12–7 คืออะไร?",
    "context": "CREATE TABLE table_name_43 (week INTEGER, result VARCHAR)"
  },
  {
    "answer": "SELECT runner_s__up FROM table_name_75 WHERE tournament = \"mci classic\"",
    "question_en": "What is Runner(s)-up, when Tournament is MCI Classic?",
    "question_th": "Runner-up คืออะไร เมื่อการแข่งขันเป็น 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_en": "What is Winning Score, when Date is Jul 27, 1997?",
    "question_th": "Winning Score คืออะไร เมื่อวันที่ 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_en": "What is Winning Score, when Runner(s)-up is Ted Purdy?",
    "question_th": "คะแนนชนะคืออะไร เมื่อรองชนะเลิศคือ 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_en": "What is the enrollment number for the public institution in Golden, Colorado founded after 1874?",
    "question_th": "หมายเลขการลงทะเบียนของสถาบันสาธารณะในโกลเดน โคโลราโดที่ก่อตั้งหลังปี 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_en": "Which Team has a Year smaller than 2007, and a Class of gts?",
    "question_th": "ทีมใดที่มีปีที่น้อยกว่าปี 2550 และมีคลาส 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érôme policand christopher campbell\"",
    "question_en": "In what year Year has a Co-Drivers of jérôme policand christopher campbell?",
    "question_th": "ในปีใดที่มีผู้ร่วมขับของ jérôme 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_en": "What is Language, when Content is Monoscopio?",
    "question_th": "ภาษาคืออะไร เมื่อเนื้อหาเป็นแบบ Monoscopio",
    "context": "CREATE TABLE table_name_27 (language VARCHAR, content VARCHAR)"
  },
  {
    "answer": "SELECT television_service FROM table_name_90 WHERE content = \"presentazione\"",
    "question_en": "What is Television Service, when Content is Presentazione?",
    "question_th": "บริการโทรทัศน์คืออะไร เมื่อเนื้อหาเป็น 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_en": "What is Package/Option, when Television Service is Sky Inside?",
    "question_th": "แพ็คเกจ/ตัวเลือกคืออะไร เมื่อบริการโทรทัศน์คือ 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_en": "What is Package/Option, when Television Service is Sky Inside?",
    "question_th": "แพ็คเกจ/ตัวเลือกคืออะไร เมื่อบริการโทรทัศน์คือ 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_en": "What is the sum of Points, when the Performer is fe-mail?",
    "question_th": "คะแนนรวมเมื่อนักแสดงเป็น 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_en": "What is the score for set 3 with a time at 15:04?",
    "question_th": "สกอร์เซ็ต 3 เวลา 15:04 น. เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_46 (set_3 VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_63 WHERE set_3 = \"29–27\"",
    "question_en": "What was the overall score when the score of set 3 was 29–27?",
    "question_th": "คะแนนรวมเมื่อคะแนนชุดที่ 3 คือ 29–27 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_63 (score VARCHAR, set_3 VARCHAR)"
  },
  {
    "answer": "SELECT set_2 FROM table_name_74 WHERE set_3 = \"25–22\"",
    "question_en": "What was the score for set 2 when set 3 was 25–22?",
    "question_th": "คะแนนของเซตที่ 2 เมื่อเซตที่ 3 คือ 25–22 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_74 (set_2 VARCHAR, set_3 VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_33 WHERE set_1 = \"23–25\"",
    "question_en": "What was the overall score when set 1 was 23–25?",
    "question_th": "คะแนนรวมเมื่อเซตที่ 1 คือ 23–25 เป็นเท่าใด",
    "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_en": "What school/club team did Amal McCaskill play for?",
    "question_th": "Amal McCaskill เล่นให้กับทีมโรงเรียน/สโมสรใด",
    "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_en": "Mike Miller played for what school/club team?",
    "question_th": "ไมค์ มิลเลอร์เล่นให้กับทีมโรงเรียน/สโมสรใด",
    "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_en": "Who is the player that played for the school/club team Maryland?",
    "question_th": "ใครคือผู้เล่นที่เล่นให้กับทีมโรงเรียน/สโมสรแมริแลนด์?",
    "context": "CREATE TABLE table_name_13 (player VARCHAR, school_club_team VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_5 WHERE player = \"cuttino mobley\"",
    "question_en": "Cuttino Mobley is what nationality?",
    "question_th": "Cuttino Mobley เป็นคนสัญชาติอะไร?",
    "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_en": "Corey Maggette from the United States plays what position?",
    "question_th": "Corey Maggette จากสหรัฐอเมริกาเล่นตำแหน่งอะไร?",
    "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_en": "Amal McCaskill who plays forward-center played for what school/club team?",
    "question_th": "อามัล แม็กคาสคิลที่เล่นกองหน้าตัวกลางเคยเล่นให้กับทีมโรงเรียน/สโมสรใด?",
    "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_en": "Which Servedby has a Local authority [a ] of thurrock, and a Station of ockendon?",
    "question_th": "ซึ่ง Servedby มีหน่วยงานท้องถิ่น [a ] ของ thurrock และ 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_en": "What is the Opponents from the final with a Tournament that is puebla?",
    "question_th": "ฝ่ายตรงข้ามจากรอบชิงชนะเลิศกับทัวร์นาเมนต์ที่เป็นปวยบลาคืออะไร?",
    "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_en": "What was the date of the game held at the Al-Rashid Stadium, Dubai?",
    "question_th": "เกมที่จัดขึ้นที่สนามกีฬาอัล-ราชิด ดูไบคือวันที่เท่าไร?",
    "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_en": "What is the Round of 16 value for the nation with a value of 5 for Ranking Round Rank?",
    "question_th": "มูลค่ารอบ 16 ทีมสุดท้ายของประเทศที่มีค่า 5 สำหรับอันดับรอบจัดอันดับเป็นเท่าใด",
    "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_en": "What Team had the first round of 1:00?",
    "question_th": "เวลา 01.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_en": "What City/State did the Atlanta Hawks (retired) team play for?",
    "question_th": "ทีม Atlanta Hawks (เกษียณแล้ว) เล่นให้กับเมือง/รัฐใด",
    "context": "CREATE TABLE table_name_24 (city_state VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT final_round FROM table_name_59 WHERE members = \"chris webber\"",
    "question_en": "What was the final round value for member Chris Webber?",
    "question_th": "มูลค่ารอบสุดท้ายของสมาชิก 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_en": "What was the first round time for member Kenny Smith?",
    "question_th": "สมาชิก 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_en": "Which team was the opponent on December 30?",
    "question_th": "ทีมใดเป็นคู่ต่อสู้ในวันที่ 30 ธันวาคม?",
    "context": "CREATE TABLE table_name_17 (team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT content FROM table_name_1 WHERE television_service = \"ewtn\"",
    "question_en": "What content is provided by the television service ewtn?",
    "question_th": "บริการโทรทัศน์ 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_en": "What is the content of the television service ewtn in the United Kingdom?",
    "question_th": "เนื้อหาของบริการโทรทัศน์ในสหราชอาณาจักรมีอะไรบ้าง?",
    "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_en": "What is the package/option for Italy when the language is italian?",
    "question_th": "แพ็คเกจ/ตัวเลือกสำหรับอิตาลีคืออะไรเมื่อเป็นภาษาอิตาลี?",
    "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_en": "What is the package/option in Italy when the content is religione?",
    "question_th": "แพ็คเกจ/ตัวเลือกในอิตาลีคืออะไรเมื่อเนื้อหาเป็นศาสนา?",
    "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_en": "Which television service has italian for its language?",
    "question_th": "บริการโทรทัศน์ใดบ้างที่มีภาษาอิตาลี",
    "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_en": "Does daystar television network provide HDTV?",
    "question_th": "เครือข่ายโทรทัศน์ daystar ให้บริการ 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_en": "What was the Attendance when Oxford United was the Home team?",
    "question_th": "การเข้าร่วมงานเมื่ออ็อกซ์ฟอร์ด ยูไนเต็ด เป็นทีมเหย้าคืออะไร?",
    "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_en": "What was the Home team when Farnborough Town was the Away team?",
    "question_th": "ทีมเหย้าเมื่อฟาร์นโบโรห์ทาวน์เป็นทีมเยือนคืออะไร?",
    "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_en": "What was the Away Team of Blackpool's Home game?",
    "question_th": "เกมเหย้าของทีมเยือนของแบล็คพูลคืออะไร?",
    "context": "CREATE TABLE table_name_9 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(bronze) FROM table_name_76 WHERE rank = \"9\"",
    "question_en": "Which Bronze has a Rank of 9?",
    "question_th": "บรอนซ์ใดมีอันดับ 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_en": "Which Bronze has a Gold smaller than 1, and a Rank of 17, and a Nation of china?",
    "question_th": "ทองแดงใดมีทองคำน้อยกว่า 1 และอันดับ 17 และมีชาติจีน",
    "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_en": "Which Nation has a Bronze smaller than 1, and a Total larger than 1, and a Silver of 1?",
    "question_th": "ประเทศใดมีเหรียญทองแดงน้อยกว่า 1 และผลรวมมากกว่า 1 และเงินเท่ากับ 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_en": "Which Total has a Rank of 17, and a Gold larger than 0?",
    "question_th": "ผลรวมใดมีอันดับ 17 และทองมากกว่า 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_en": "Which Gold has a Rank of 15, and a Total smaller than 2?",
    "question_th": "ทองคำใดมีอันดับ 15 และผลรวมน้อยกว่า 2",
    "context": "CREATE TABLE table_name_99 (gold INTEGER, rank VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT games FROM table_name_86 WHERE tied = 10",
    "question_en": "What is the number of games for the season with 10 ties?",
    "question_th": "จำนวนเกมสำหรับฤดูกาลที่เสมอกัน 10 นัดคือเท่าไร?",
    "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_en": "What was the surface where the opponent was Nathalie Dechy Meilen Tu?",
    "question_th": "พื้นผิวที่คู่ต่อสู้คือ 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_en": "What is the Series leader with a Date that is may 31?",
    "question_th": "ผู้นำซีรีส์ที่มีวันที่คือ 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_en": "What is the Series leader with a Date that is october 9?",
    "question_th": "ผู้นำซีรีส์ที่มีวันที่คือวันที่ 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_en": "Which Tournament has a Date of january 10, 1994?",
    "question_th": "การแข่งขันใดมีวันที่ 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_en": "Which Opponents in the final have a Date of june 10, 1996?",
    "question_th": "ฝ่ายตรงข้ามคนใดในรอบชิงชนะเลิศมีวันที่ 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_en": "Who's the Opponents in the final with a Date of june 10, 1996?",
    "question_th": "ใครคือฝ่ายตรงข้ามในรอบชิงชนะเลิศกับวันที่ 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öm maria strandlund\"",
    "question_en": "Which Tournament has Opponents in the final of maria lindström maria strandlund?",
    "question_th": "ทัวร์นาเมนต์ใดที่มีคู่ต่อสู้ในรอบชิงชนะเลิศของ maria lindström 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_en": "What country came in third when there were 13 teams in 1996?",
    "question_th": "ประเทศใดได้อันดับสามเมื่อมี 13 ทีมในปี 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_en": "What is the sum of season when the venue was donington park, and Brazil came in second?",
    "question_th": "ผลรวมของฤดูกาลเมื่อสถานที่คือ Donington Park และบราซิลมาเป็นอันดับสองคืออะไร?",
    "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_en": "What is the average Season when the venue was circuit de nevers magny-cours, and Drivers was more than 30?",
    "question_th": "ฤดูกาลเฉลี่ยเมื่อสถานที่จัดงานคือ Circuit de nevers magny-cours และมีคนขับมากกว่า 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_en": "What is the total number of Losses when the percentage is 54.83, with more than 8 points?",
    "question_th": "เมื่อเปอร์เซ็นเป็น 54.83 มากกว่า 8 คะแนน เสียรวมกันเป็นเท่าใด",
    "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_en": "What is the average Points For when there are Points Against more than 780, and Points smaller than 0?",
    "question_th": "อะไรคือคะแนนเฉลี่ยเมื่อมีคะแนนต่อมากกว่า 780 และคะแนนน้อยกว่า 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_en": "What is the average Points when the Points Against is 594, and Losses is more than 3?",
    "question_th": "อะไรคือคะแนนเฉลี่ยเมื่อคะแนนต่อคือ 594 และแพ้มากกว่า 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_en": "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?",
    "question_th": "เปอร์เซ็นต์เฉลี่ยเมื่อชนะมากกว่า 0 ครั้ง แต้มต่อมากกว่า 481 แพ้ 8 และแต้มมากกว่า 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_en": "What is the lowest Wins when the Club is broadview hawks, and Points Against is more than 594?",
    "question_th": "อะไรคือชัยชนะที่ต่ำที่สุดเมื่อ Club เป็น Broadview Hawks และ Points Against มากกว่า 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_en": "What Goalkeeper has MINS less than 2160",
    "question_th": "ผู้รักษาประตูคนไหนมี MINS น้อยกว่า 2160",
    "context": "CREATE TABLE table_name_32 (goalkeeper VARCHAR, mins INTEGER)"
  },
  {
    "answer": "SELECT MAX(shts) FROM table_name_56 WHERE goalkeeper = \"kasey keller\"",
    "question_en": "What is the highest SHTS of Kasey Keller",
    "question_th": "SHTS สูงสุดของ 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_en": "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?",
    "question_th": "จำนวนเหรียญทองแดงที่ได้รับมากที่สุดในบรรดาประเทศที่ได้รับมากกว่า 1 เหรียญ มากกว่า 1 เหรียญทอง และมีอันดับมากกว่า 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_en": "What is the total number of Losses that Melton had when they had fewer Draws than 0?",
    "question_th": "จำนวนการแพ้ทั้งหมดที่เมลตันมีเมื่อพวกเขาเสมอน้อยกว่า 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_en": "What is the lowest number of Against that Lake Wendouree had when they had more than 7 Losses?",
    "question_th": "จำนวนต่ำสุดของ Against ที่ Lake Wendouree มีเมื่อพวกเขาแพ้มากกว่า 7 ครั้งเป็นเท่าใด",
    "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_en": "What was the total number of Byes for the team that had 1136 Against and fewer than 0 Draws?",
    "question_th": "จำนวนบายทั้งหมดของทีมที่เสมอกัน 1136 ครั้งและเสมอน้อยกว่า 0 ครั้งเป็นเท่าใด?",
    "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_en": "What was the greatest number of Losses for the team that had 1427 Against and more than 5 Wins?",
    "question_th": "จำนวนการแพ้ที่มากที่สุดสำหรับทีมที่ชนะ 1427 ต่อและชนะมากกว่า 5 ครั้งคือเท่าใด",
    "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_en": "What is the average number of Byes for the team that had 15 Losses, and less than 1 Win?",
    "question_th": "จำนวนบายเฉลี่ยของทีมที่แพ้ 15 ครั้งและชนะน้อยกว่า 1 ครั้งเป็นเท่าใด",
    "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_en": "Which nation's total is less than 19 when there's less than 1 bronze?",
    "question_th": "ผลรวมของประเทศใดน้อยกว่า 19 ในเมื่อมีน้อยกว่า 1 เหรียญทองแดง?",
    "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_en": "How many totals does Chile have when the number of silvers is more than 0?",
    "question_th": "ชิลีมีทั้งหมดกี่เหรียญเมื่อจำนวนเหรียญเงินมากกว่า 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_en": "What was the record when TKO (punches and elbows) was the method?",
    "question_th": "TKO (หมัดและศอก) มีสถิติเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_22 (record VARCHAR, method VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_7 WHERE player = \"don bradman (nsw)\"",
    "question_en": "What venue has don bradman (nsw) as the player?",
    "question_th": "ดอน แบรดแมน (นิวเซาท์เวลส์) เป็นผู้เล่นในสถานที่ใด?",
    "context": "CREATE TABLE table_name_7 (venue VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_82 WHERE player = \"bill ponsford (vic)\"",
    "question_en": "What rank has Bill Ponsford (vic) as the player?",
    "question_th": "บิลล์ พอนส์ฟอร์ด (วิค) เป็นนักเตะอันดับไหน?",
    "context": "CREATE TABLE table_name_82 (rank VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT match FROM table_name_9 WHERE player = \"clem hill (sa)\"",
    "question_en": "What match has Clem Hill (sa) as the player?",
    "question_th": "Clem Hill (sa) เป็นผู้เล่นในแมตช์ใด",
    "context": "CREATE TABLE table_name_9 (match VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_56 WHERE date = \"december 25, 1925\"",
    "question_en": "Who played on December 25, 1925?",
    "question_th": "ใครเล่นเมื่อวันที่ 25 ธันวาคม พ.ศ. 2468?",
    "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_en": "What was the score for the South American Championship dated December 13, 1925?",
    "question_th": "คะแนนของการแข่งขัน South American Championship ลงวันที่ 13 ธันวาคม พ.ศ. 2468 เป็นเท่าใด",
    "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_en": "What is the average number of House of Representatives seats had an abbreviation of d66?",
    "question_th": "จำนวนที่นั่งในสภาผู้แทนราษฎรโดยเฉลี่ยที่มีตัวย่อคือ 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_en": "For the tournament played on Oct 17, 1982, what was the winning score?",
    "question_th": "ในการแข่งขันวันที่ 17 ต.ค. 2525 สกอร์ชนะเท่าไหร่?",
    "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_en": "For the tournament played Nov 13, 1988, ending with a margin of victory of 5 strokes, who was the runner-up?",
    "question_th": "สำหรับทัวร์นาเมนต์ที่เล่นวันที่ 13 พ.ย. 2531 จบลงด้วยชัยชนะ 5 จังหวะ ใครได้รองแชมป์?",
    "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_en": "What is 2008, when 2006 is \"Grand Slam Tournaments\"?",
    "question_th": "ปี 2551 คืออะไร เมื่อปี 2549 เป็น \"แกรนด์สแลมทัวร์นาเมนท์\"?",
    "context": "CREATE TABLE table_name_18 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2007 FROM table_name_54 WHERE 2003 = \"1r\"",
    "question_en": "What is 2007, when 2003 is 1R?",
    "question_th": "ปี 2550 คืออะไร เมื่อปี 2546 เป็น 1R",
    "context": "CREATE TABLE table_name_54 (Id VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_66 WHERE 2012 = \"3r\"",
    "question_en": "What is the Tournament, when 2012 is 3R?",
    "question_th": "การแข่งขันคืออะไรเมื่อ 2012 เป็น 3R?",
    "context": "CREATE TABLE table_name_66 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_41 WHERE 2009 = \"grand slam tournaments\"",
    "question_en": "What is Tournament, when 2009 is \"Grand Slam Tournaments\"?",
    "question_th": "Tournament คืออะไร เมื่อปี 2009 เป็น \"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_en": "Which Free polite has a Genitive 3 of *ni-da?",
    "question_th": "Freeสุภาพใดที่มี Genitive 3 ของ *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_en": "Which Free polite has a Genitive 1 of *=ku?",
    "question_th": "Freeสุภาพใดที่มี Genitive 1 เป็น *=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_en": "Which Free polite has a Genitive 3 of *n(i)-ami?",
    "question_th": "Freeสุภาพใดที่มี Genitive 3 เป็น *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_en": "Which Genitive 1 has a Genitive 3 of *n(i)-ia?",
    "question_th": "สัมพันธการก 1 ใดมีสัมพันธการก 3 เป็น *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_en": "What is the Proto-Oceanic verb for the verb to sew?",
    "question_th": "คำกริยา Proto-Oceanic สำหรับคำกริยาที่จะเย็บคืออะไร?",
    "context": "CREATE TABLE table_name_43 (proto_oceanic VARCHAR, verb VARCHAR)"
  },
  {
    "answer": "SELECT verb FROM table_name_86 WHERE proto_austronesian = \"*diri\"",
    "question_en": "What is the verb for the Proto-Austronesian word *diri?",
    "question_th": "กริยาของคำออสโตรนีเซียนดั้งเดิม *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_en": "What is the Proto-Oceanic verb for to die, be dead?",
    "question_th": "คำกริยาภาษา Proto-Oceanic หมายถึงอะไร 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_en": "What is the verb for the Proto-Polynesian word *mohe?",
    "question_th": "กริยาของคำโปรโต-โพลินีเชียน *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_en": "What is the Proto-Austronesian word for the Proto-Polynesian word *tui?",
    "question_th": "คำโปรโต-ออสโตรนีเซียนสำหรับคำโปรโต-โพลินีเชียน *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_en": "What is the Proto-Malayo-Polynesian word for the Proto-Oceanic word of *saqit, *turi?",
    "question_th": "คำภาษามาลาโย-โพลีนีเชียนดั้งเดิมแปลว่าอะไร *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_en": "What station has a genre of talk music and is in Malay English language?",
    "question_th": "สถานีใดมีแนวเพลงทอล์คและเป็นภาษาอังกฤษมาเลย์?",
    "context": "CREATE TABLE table_name_81 (station VARCHAR, genre VARCHAR, language VARCHAR)"
  },
  {
    "answer": "SELECT genre FROM table_name_93 WHERE station = \"fly fm\"",
    "question_en": "Which genre is the fly fm station?",
    "question_th": "สถานี fly fm เป็นประเภทใด",
    "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_en": "What frequency is the xfm station, which is part of the talk music genre?",
    "question_th": "สถานี xfm ซึ่งเป็นส่วนหนึ่งของแนวเพลงทอล์คมีความถี่เท่าใด",
    "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_en": "What is the coverage area of muzik fm station, which has a music genre?",
    "question_th": "สถานี muzik fm ที่มีแนวเพลงครอบคลุมพื้นที่ใดบ้าง?",
    "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_en": "What is Co-Drivers, when Laps is greater than 196, and when Year is before 2010?",
    "question_th": "Co-Drivers คืออะไร เมื่อรอบมากกว่า 196 และเมื่อใดปีก่อนปี 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_en": "What is the Date when the week is more than 3 and the attendance shows bye?",
    "question_th": "วันที่คือเมื่อสัปดาห์มีมากกว่า 3 และผู้เข้างานแสดงลาก่อน?",
    "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_en": "What is the Result when the week is later than 9, and there are 65,858 people in attendance?",
    "question_th": "ผลลัพธ์จะเป็นเช่นไรเมื่อสัปดาห์หลัง 9 และมีผู้เข้าร่วม 65,858 คน?",
    "context": "CREATE TABLE table_name_33 (result VARCHAR, week VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT 1938 FROM table_name_49 WHERE 1948 = \"n/a\"",
    "question_en": "What is the 1938 that has N/A for 1948?",
    "question_th": "1938 ที่มี N/A สำหรับปี 1948 คืออะไร?",
    "context": "CREATE TABLE table_name_49 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1953 FROM table_name_52 WHERE 1947 = \"2\" AND 1938 = \"dne\"",
    "question_en": "What 1953 has 2 for 1947, and dne as 1938?",
    "question_th": "อะไรในปี 1953 มี 2 สำหรับปี 1947 และ dne เป็น 1938",
    "context": "CREATE TABLE table_name_52 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1935 FROM table_name_6 WHERE 1953 = \"4\"",
    "question_en": "What 1935 has 4 as a 1953?",
    "question_th": "อะไร 1935 มี 4 เป็น 1953?",
    "context": "CREATE TABLE table_name_6 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1953 FROM table_name_48 WHERE 1949 = \"2\" AND 1952 = \"3\"",
    "question_en": "What 1953 has 2 as a 1949, and 3 as 1952?",
    "question_th": "อะไรในปี 1953 มี 2 เป็นปี 1949 และ 3 เป็นปี 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_en": "What 1941 has N/A as 1945, N/A for 1948, and 9 for 1953?",
    "question_th": "อะไรในปี 1941 มี N/A เป็นปี 1945, N/A สำหรับปี 1948 และ 9 สำหรับปี 1953",
    "context": "CREATE TABLE table_name_7 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1951 FROM table_name_26 WHERE 1948 = \"dne\"",
    "question_en": "What 1951 has dne for 1948?",
    "question_th": "ปี 1951 ได้ทำอะไรในปี 1948?",
    "context": "CREATE TABLE table_name_26 (Id VARCHAR)"
  },
  {
    "answer": "SELECT cup_apps__sub_ FROM table_name_59 WHERE cup_goals = \"2\"",
    "question_en": "Which Cup Apps (sub) had 2 goals?",
    "question_th": "แอพคัพไหน(รอง) มี 2 ประตู?",
    "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_en": "Which Total Apps (sub) has 6 goals total?",
    "question_th": "แอปรวมใด (ย่อย) มีทั้งหมด 6 เป้าหมาย",
    "context": "CREATE TABLE table_name_39 (total_apps__sub_ VARCHAR, total_goals VARCHAR)"
  },
  {
    "answer": "SELECT airline FROM table_name_87 WHERE iata = \"bx\"",
    "question_en": "What airline has a IATA of BX?",
    "question_th": "สายการบินใดมี IATA เท่ากับ BX",
    "context": "CREATE TABLE table_name_87 (airline VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT icao FROM table_name_8 WHERE airline = \"asiana airlines\"",
    "question_en": "What is the ICAO for Asiana Airlines?",
    "question_th": "ICAO ของ Asiana Airlines คืออะไร",
    "context": "CREATE TABLE table_name_8 (icao VARCHAR, airline VARCHAR)"
  },
  {
    "answer": "SELECT commenced_operations FROM table_name_61 WHERE icao = \"kal\"",
    "question_en": "What is the commenced operation where the ICAO is KAL?",
    "question_th": "เริ่มดำเนินการแล้ว โดยที่ ICAO คือ KAL คืออะไร?",
    "context": "CREATE TABLE table_name_61 (commenced_operations VARCHAR, icao VARCHAR)"
  },
  {
    "answer": "SELECT icao FROM table_name_63 WHERE callsign = \"air busan\"",
    "question_en": "What is the ICAO for Air Busan?",
    "question_th": "ICAO สำหรับแอร์ปูซานคืออะไร?",
    "context": "CREATE TABLE table_name_63 (icao VARCHAR, callsign VARCHAR)"
  },
  {
    "answer": "SELECT callsign FROM table_name_80 WHERE icao = \"aar\"",
    "question_en": "What is the callsign where the ICAO is AAR?",
    "question_th": "สัญญาณเรียกขานที่ ICAO เป็น AAR คืออะไร?",
    "context": "CREATE TABLE table_name_80 (callsign VARCHAR, icao VARCHAR)"
  },
  {
    "answer": "SELECT AVG(tries) FROM table_name_7 WHERE goals < 0",
    "question_en": "What is the average Tries with less than 0 goals?",
    "question_th": "ความพยายามโดยเฉลี่ยที่ทำได้น้อยกว่า 0 ประตูคือเท่าใด",
    "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_en": "What is the total number of Points with less than 1 tries, and more than 0 goals?",
    "question_th": "จำนวนคะแนนทั้งหมดที่พยายามน้อยกว่า 1 ครั้ง และมากกว่า 0 ประตูคือเท่าใด",
    "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_en": "Which club/province has more than 9 caps and Ben Franks as a player?",
    "question_th": "สโมสร/จังหวัดใดมีแคปมากกว่า 9 นัด และมีเบน แฟรงค์สเป็นผู้เล่น?",
    "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_en": "In which tournament was Ian Baker-Finch the runner-up?",
    "question_th": "Ian Baker-Finch เป็นรองแชมป์ในทัวร์นาเมนต์ใด",
    "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_en": "What tournament was played on Feb 3, 1991?",
    "question_th": "ทัวร์นาเมนต์ใดที่เล่นในวันที่ 3 กุมภาพันธ์ พ.ศ. 2534?",
    "context": "CREATE TABLE table_name_5 (tournament VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT winning_score FROM table_name_28 WHERE tournament = \"phoenix open\"",
    "question_en": "In the Phoenix Open, what was the winning score?",
    "question_th": "ในรายการ Phoenix Open สกอร์ชนะเป็นเท่าไหร่?",
    "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_en": "In the tournament where Stuart Appleby was the runner-up, what was the margin of victory?",
    "question_th": "ในทัวร์นาเมนต์ที่ Stuart Appleby เป็นรองแชมป์ ชัยชนะมีอะไรบ้าง?",
    "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_en": "What is the lowest number played with more than 30 points?",
    "question_th": "เลขต่ำสุดที่เล่นเกิน 30 แต้ม คือเลขอะไร?",
    "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_en": "What is the highest number lost with more than 29 points and an against less than 19?",
    "question_th": "ตัวเลขสูงสุดที่เสียไปมากกว่า 29 แต้ม และต่อน้อยกว่า 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_en": "What is the total number played with a difference of 22 and less than 34 against?",
    "question_th": "จำนวนทั้งหมดที่เล่นโดยมีผลต่าง 22 และน้อยกว่า 34 ต่อคือเท่าไร?",
    "context": "CREATE TABLE table_name_76 (played VARCHAR, difference VARCHAR, against VARCHAR)"
  },
  {
    "answer": "SELECT western_title FROM table_name_92 WHERE pinyin = \"new chāojí mǎlìōu xiōngdì\"",
    "question_en": "What is the western title of the pinyin new chāojí mǎlìōu xiōngdì?",
    "question_th": "ชื่อภาษาตะวันตกของพินอิน new chāoji mǎlìōu xiōngdì คืออะไร?",
    "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 = \"摸摸瓦力欧制造\"",
    "question_en": "What is the genre of the Chinese title 摸摸瓦力欧制造, which has a single-player game mode?",
    "question_th": "ประเภทของชื่อภาษาจีน 摸摸瓦力欧制造 ซึ่งมีโหมดเกมผู้เล่นคนเดียวคืออะไร",
    "context": "CREATE TABLE table_name_17 (genre VARCHAR, game_modes VARCHAR, chinese_title VARCHAR)"
  },
  {
    "answer": "SELECT pinyin FROM table_name_78 WHERE chinese_title = \"直感一笔\"",
    "question_en": "What is the pinyin for the Chinese title 直感一笔?",
    "question_th": "พินอินชื่อภาษาจีน 直感一笔 คืออะไร",
    "context": "CREATE TABLE table_name_78 (pinyin VARCHAR, chinese_title VARCHAR)"
  },
  {
    "answer": "SELECT released_date FROM table_name_46 WHERE chinese_title = \"摸摸瓦力欧制造\"",
    "question_en": "What is the release date for the Chinese title 摸摸瓦力欧制造?",
    "question_th": "ชื่อภาษาจีน 摸摸瓦力欧制造 จะออกฉายเมื่อใด",
    "context": "CREATE TABLE table_name_46 (released_date VARCHAR, chinese_title VARCHAR)"
  },
  {
    "answer": "SELECT western_title FROM table_name_56 WHERE genre = \"puzzle\"",
    "question_en": "What is the western title for the puzzle genre?",
    "question_th": "ชื่อภาษาตะวันตกสำหรับประเภทปริศนาคืออะไร?",
    "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_en": "What is the total number of laps for the time of +7.277 and the grid number of more than 6?",
    "question_th": "จำนวนรอบรวมในเวลา +7.277 และจำนวนกริดมากกว่า 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_en": "What is the smallest grid when the time is +8.051 and there were less than 23 laps?",
    "question_th": "ตารางที่เล็กที่สุดเมื่อเวลาคือ +8.051 และมีเวลาน้อยกว่า 23 รอบคือข้อใด",
    "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_en": "What is the average number of goals for players ranked above 9 and playing more than 205 matches?",
    "question_th": "จำนวนประตูเฉลี่ยสำหรับผู้เล่นอันดับสูงกว่า 9 และลงเล่นมากกว่า 205 นัดคือเท่าใด",
    "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_en": "What is the average rank for players with under 205 matches and under 100 goals?",
    "question_th": "อันดับเฉลี่ยของผู้เล่นที่ลงเล่นต่ำกว่า 205 นัดและทำได้ต่ำกว่า 100 ประตูคือเท่าไร?",
    "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_en": "What years played did the player with a rank under 10, more than 271 matches, and 152 goals have?",
    "question_th": "ผู้เล่นที่มีอันดับต่ำกว่า 10 เล่นมากกว่า 271 นัดและทำได้ 152 ประตูกี่ปี?",
    "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_en": "Who's the Republican ticket with a Communist ticket of elizabeth gurley flynn?",
    "question_th": "ตั๋วพรรครีพับลิกันกับตั๋วคอมมิวนิสต์ของอลิซาเบธ เกอร์ลีย์ ฟลินน์คือใคร",
    "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_en": "Who's the Communist ticket with an American Labor ticket of joseph v. o'leary?",
    "question_th": "ใครคือตั๋วคอมมิวนิสต์ที่มีตั๋ว American Labor ของ 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_en": "Who's the Republican ticket with a Democratic ticket of flora d. johnson?",
    "question_th": "ตั๋วของพรรครีพับลิกันคือใครกับตั๋วประชาธิปไตยของฟลอราดี จอห์นสัน?",
    "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_en": "Who's the Republican ticket with a Communist ticket of (none), and a Socialist ticket of joseph g. glass?",
    "question_th": "ตั๋ว Who's the Republican พร้อมตั๋วคอมมิวนิสต์ของ (ไม่มี) และตั๋ว Socialist ของ joseph g. กระจก?",
    "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_en": "Who's the Republican ticket with a Democratic ticket of matthew j. merritt?",
    "question_th": "ตั๋วใครเป็นพรรครีพับลิกัน กับตั๋วประชาธิปไตยของแมทธิว เจ. เมอร์ริตต์?",
    "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_en": "What is the giant slalom with a 37 super g?",
    "question_th": "สลาลมยักษ์กับ 37 ซุปเปอร์กรัม คืออะไร?",
    "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–1, 0–1\"",
    "question_en": "What season had a game in the first round with a result of 4–1, 0–1?",
    "question_th": "ฤดูกาลใดมีเกมในรอบแรกด้วยสกอร์ 4–1, 0–1?",
    "context": "CREATE TABLE table_name_87 (season VARCHAR, round VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_44 WHERE opponent = \"sampdoria\"",
    "question_en": "What country had an opponent of Sampdoria?",
    "question_th": "ประเทศใดมีคู่แข่งของซามโดเรีย?",
    "context": "CREATE TABLE table_name_44 (country VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_64 WHERE round = \"second round\"",
    "question_en": "Who was the opponent during the second round?",
    "question_th": "คู่ต่อสู้ในรอบที่สองคือใคร?",
    "context": "CREATE TABLE table_name_64 (opponent VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_5 WHERE round = \"second round\"",
    "question_en": "What was the result of the second round?",
    "question_th": "ผลการแข่งขันรอบสองเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_5 (result VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_86 WHERE attendance = \"26,880\"",
    "question_en": "What Opponent has an Attendance that is 26,880?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีผู้เข้าร่วม 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_en": "What nation has a Record of 5.06m(16ft7in)?",
    "question_th": "ประเทศใดมีสถิติสูง 5.06 เมตร (16 ฟุต 7 นิ้ว)",
    "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_en": "What is the Date when Russia was the nation and the venue was madrid , spain?",
    "question_th": "วันที่คือวันที่รัสเซียเป็นประเทศและสถานที่จัดงานคือกรุงมาดริดประเทศสเปน?",
    "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¾in)\"",
    "question_en": "What is the Date when yelena isinbayeva was the Athlete, with a Record of 4.90m(16ft0¾in)?",
    "question_th": "วันที่คือวันที่เยเลนา อิซินบาเยวาเป็นนักกีฬา โดยมีสถิติ 4.90 ม. (16 ฟุต 0 นิ้ว นิ้ว)",
    "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¼in)\"",
    "question_en": "What is the Nation when the Athlete was emma george, and a Record of 4.58m(15ft0¼in)?",
    "question_th": "ประเทศชาติคืออะไรเมื่อนักกีฬาคือเอ็มม่าจอร์จและมีสถิติ 4.58 ม. (15 ฟุต0¼นิ้ว)",
    "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_en": "Who tied with 8 losses and 50% wins?",
    "question_th": "ใครเสมอกับการสูญเสีย 8 ครั้งและชนะ 50%?",
    "context": "CREATE TABLE table_name_19 (tied VARCHAR, losses VARCHAR, win__percentage VARCHAR)"
  },
  {
    "answer": "SELECT wins FROM table_name_34 WHERE losses = \"ipl\"",
    "question_en": "Which win has a loss of IPL?",
    "question_th": "ชัยชนะใดมีการสูญเสีย IPL?",
    "context": "CREATE TABLE table_name_34 (wins VARCHAR, losses VARCHAR)"
  },
  {
    "answer": "SELECT wins FROM table_name_71 WHERE win__percentage = \"38.67%\"",
    "question_en": "Which win has 38.67% wins?",
    "question_th": "ชนะไหนชนะ 38.67%?",
    "context": "CREATE TABLE table_name_71 (wins VARCHAR, win__percentage VARCHAR)"
  },
  {
    "answer": "SELECT win__percentage FROM table_name_4 WHERE losses = \"48\"",
    "question_en": "What percentage of wins has 48 losses?",
    "question_th": "ชนะ 48 ครั้งมีกี่เปอร์เซ็นต์?",
    "context": "CREATE TABLE table_name_4 (win__percentage VARCHAR, losses VARCHAR)"
  },
  {
    "answer": "SELECT tied FROM table_name_50 WHERE played = \"15\"",
    "question_en": "What was tied at 15 played?",
    "question_th": "เสมอกันที่ 15 เล่นอะไร?",
    "context": "CREATE TABLE table_name_50 (tied VARCHAR, played VARCHAR)"
  },
  {
    "answer": "SELECT AVG(round) FROM table_name_36 WHERE player = \"john markham\"",
    "question_en": "What was the average round for john markham draft pick?",
    "question_th": "รอบเฉลี่ยสำหรับการเลือกร่างของ John Markham คือเท่าไร?",
    "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_en": "What school did draft pick before 125, will allen go to?",
    "question_th": "ดราฟท์เลือกโรงเรียนไหนก่อน 125 อัลเลนจะได้ไป?",
    "context": "CREATE TABLE table_name_91 (school VARCHAR, pick VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_6 WHERE round = 3",
    "question_en": "What school did draft pick from round 3 go to?",
    "question_th": "Draft เลือกจากรอบ 3 ไปโรงเรียนไหน?",
    "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_en": "What is the fewest games lost by Paulistano with more than 39 points?",
    "question_th": "เกมไหนที่แพ้โดย Paulistano มากกว่า 39 แต้ม?",
    "context": "CREATE TABLE table_name_85 (lost INTEGER, team VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT SUM(against) FROM table_name_97 WHERE played > 22",
    "question_en": "How many games were played against when the team played more than 22 total?",
    "question_th": "มีการแข่งกันกี่เกมเมื่อทีมเล่นมากกว่า 22 เกม?",
    "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_en": "What was the highest number of against when the difference was 58 and the total played was more than 22?",
    "question_th": "อะไรคือจำนวนสูงสุดในการแข่งเมื่อผลต่างคือ 58 และจำนวนการเล่นทั้งหมดมากกว่า 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_en": "What is the Score with a Winning team that is san antonio spurs?",
    "question_th": "คะแนนของทีมชนะคือซานอันโตนิโอสเปอร์สเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_48 (score VARCHAR, winning_team VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_72 WHERE attendance = \"60,705\"",
    "question_en": "Which Result has an Attendance of 60,705?",
    "question_th": "ผลลัพธ์ใดมีผู้เข้าร่วม 60,705 คน",
    "context": "CREATE TABLE table_name_72 (result VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT AVG(week) FROM table_name_82 WHERE result = \"w 17–13\"",
    "question_en": "How many Weeks have a Result of w 17–13?",
    "question_th": "กี่สัปดาห์มีผลลัพธ์ของ w 17–13?",
    "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_en": "Which Opponent that has a Week larger than 3 on october 6, 1991?",
    "question_th": "ฝ่ายตรงข้ามคนใดที่มีสัปดาห์มากกว่า 3 ในวันที่ 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_en": "When has Attendances of 45,795?",
    "question_th": "เมื่อมีผู้เข้าร่วม 45,795 คน?",
    "context": "CREATE TABLE table_name_7 (date VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT MAX(week) FROM table_name_32 WHERE result = \"l 24–20\" AND opponent = \"at new england patriots\"",
    "question_en": "In what Week has a Result of l 24–20, and a Opponent of at new england patriots?",
    "question_th": "ในสัปดาห์ใดที่มีผลการแข่งขัน l 24–20 และเป็นฝ่ายตรงข้ามของผู้รักชาตินิวอิงแลนด์?",
    "context": "CREATE TABLE table_name_32 (week INTEGER, result VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT years FROM table_name_41 WHERE goals < 160",
    "question_en": "What years were the goals less then 160?",
    "question_th": "เป้าหมายปีไหนน้อยกว่า 160?",
    "context": "CREATE TABLE table_name_41 (years VARCHAR, goals INTEGER)"
  },
  {
    "answer": "SELECT iata FROM table_name_19 WHERE icao = \"hlls\"",
    "question_en": "What is the IATA code for the airport with an ICAO code of HLLS?",
    "question_th": "รหัส IATA สำหรับสนามบินที่มีรหัส ICAO ของ HLLS คืออะไร",
    "context": "CREATE TABLE table_name_19 (iata VARCHAR, icao VARCHAR)"
  },
  {
    "answer": "SELECT airport FROM table_name_43 WHERE city = \"sabha\"",
    "question_en": "What airport is in Sabha?",
    "question_th": "ซาบาอยู่ในสนามบินใด?",
    "context": "CREATE TABLE table_name_43 (airport VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT icao FROM table_name_1 WHERE iata = \"rba\"",
    "question_en": "What is the ICAO code for the airport with RBA as its IATA code?",
    "question_th": "รหัส ICAO สำหรับสนามบินที่มี RBA เป็นรหัส IATA คืออะไร",
    "context": "CREATE TABLE table_name_1 (icao VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_11 WHERE city = \"istanbul\"",
    "question_en": "What country is Istanbul in?",
    "question_th": "อิสตันบูลอยู่ประเทศอะไร?",
    "context": "CREATE TABLE table_name_11 (country VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT airport FROM table_name_86 WHERE iata = \"seb\"",
    "question_en": "Which airport has SEB as its IATA code?",
    "question_th": "สนามบินใดมี SEB เป็นรหัส IATA",
    "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_en": "What position does the player from Winston-Salem State play?",
    "question_th": "ผู้เล่นจาก Winston-Salem State เล่นตำแหน่งใด?",
    "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_en": "What is the total number of points for the song that was ranked 6th and had a draw number smaller than 5?",
    "question_th": "เพลงที่ได้อันดับที่ 6 และมีจำนวนคะแนนรวมน้อยกว่า 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_en": "When was the average year that the number of floors was greater than 75?",
    "question_th": "ปีเฉลี่ยที่จำนวนชั้นมากกว่า 75 คือเมื่อไหร่?",
    "context": "CREATE TABLE table_name_78 (year INTEGER, floors INTEGER)"
  },
  {
    "answer": "SELECT AVG(floors) FROM table_name_59 WHERE name = \"venetian tower\"",
    "question_en": "What is the average number of floors of the Venetian tower?",
    "question_th": "หอคอยเวเนเชียนมีจำนวนชั้นเฉลี่ยอยู่ที่เท่าไร?",
    "context": "CREATE TABLE table_name_59 (floors INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT arena FROM table_name_5 WHERE founded = 2000",
    "question_en": "Which arena was founded in 2000?",
    "question_th": "เวทีใดก่อตั้งในปี 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_en": "Can you tell me the total number of Rank that has the Matches of 427, and the Goals smaller than 320?",
    "question_th": "คุณช่วยบอกจำนวนอันดับทั้งหมดที่มีการแข่งขัน 427 นัดและเป้าหมายที่น้อยกว่า 320 ได้ไหม?",
    "context": "CREATE TABLE table_name_58 (rank VARCHAR, matches VARCHAR, goals VARCHAR)"
  },
  {
    "answer": "SELECT matches FROM table_name_89 WHERE rank = 1",
    "question_en": "Can you tell me the Matches that has the Rank of 1?",
    "question_th": "คุณช่วยบอกการแข่งขันที่มีอันดับ 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_en": "Can you tell me the Matches that has the Rank smaller than 6, and the Years of 1943-62?",
    "question_th": "คุณช่วยบอกฉันเกี่ยวกับการแข่งขันที่มีอันดับน้อยกว่า 6 และปี 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_en": "Which class had a number under 4 and was built in 1988?",
    "question_th": "ชั้นเรียนใดมีหมายเลขต่ำกว่า 4 และสร้างขึ้นในปี 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_en": "How many items withdrawn had numbers over 5?",
    "question_th": "มีกี่รายการที่ถอนออกมามีตัวเลขมากกว่า 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_en": "What is the sum of numbers that had a type of Driving Van Trailer?",
    "question_th": "ผลรวมของตัวเลขที่มีประเภทรถพ่วงบรรทุกเป็นเท่าใด?",
    "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_en": "What rank has 1 silver, more than 2 gold, and a total larger than 3?",
    "question_th": "อันดับใดมี 1 เงิน มากกว่า 2 เหรียญทอง และรวมมากกว่า 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_en": "What is the most gold where silver is 0?",
    "question_th": "ทองคำมากที่สุดโดยที่เงินเป็น 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_en": "What is the number of silver where the rank is higher than 4 and bronze is smaller than 1?",
    "question_th": "หมายเลขเงินที่มีอันดับสูงกว่า 4 และทองแดงน้อยกว่า 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_en": "What is the rank where the gold is 0?",
    "question_th": "ทองเป็น 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_en": "What is the rank that has 1 bronze and 1 silver?",
    "question_th": "1 ทองแดง 1 เงิน มียศอะไร?",
    "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_en": "What is the total launch failures when there are 4 launches, and the not usable is greater than 0?",
    "question_th": "อะไรคือความล้มเหลวในการเปิดตัวทั้งหมดเมื่อมีการเปิดตัว 4 ครั้ง และสิ่งที่ไม่สามารถใช้งานได้มากกว่า 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_en": "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?",
    "question_th": "อะไรคือจำนวนดาวเทียมที่ไม่สามารถใช้งานได้สูงสุด เมื่อมีความล้มเหลวในการปล่อยมากกว่า 0 ครั้ง น้อยกว่า 30 ครั้งที่เลิกใช้ และบล็อกคือเท่าใด",
    "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_en": "What is the average number of not usable satellited when there are 0 retired, and the launch failures are less than 1?",
    "question_th": "คือจำนวนเฉลี่ยของดาวเทียมที่ไม่สามารถใช้งานได้เมื่อมี 0 ที่เลิกใช้แล้ว และความล้มเหลวในการเปิดตัวน้อยกว่า 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_en": "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?",
    "question_th": "จำนวนสมาชิกต่ำสุดในคณะกรรมการวัฒนธรรมและการศึกษา คือเมื่อมหาวิทยาลัยดับลินมีสมาชิก 3 คน เมื่อคณะกรรมการอุตสาหกรรมและการพาณิชย์มีสมาชิกมากกว่า 0 คน และเมื่อคณะกรรมการการเกษตรมีสมาชิกมากกว่า 4 คน คือเท่าใด",
    "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_en": "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?",
    "question_th": "โดยเฉลี่ยแล้วจำนวนสมาชิกที่ได้รับการเสนอชื่อโดย เถ้าแก่น้อย เมื่อคณะกรรมการเกษตรมีสมาชิกน้อยกว่า 1 คน และเมื่อคณะกรรมการบริหารมีสมาชิกน้อยกว่า 0 คน คือเท่าใด",
    "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_en": "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?",
    "question_th": "จำนวนสมาชิกต่ำสุดใน Agricultural Panel คือเท่าใด เมื่อ Industrial and Commercial Panel มีสมาชิก 9 คน และเมื่อ National University of Ireland มีสมาชิกมากกว่า 3 คน คือเท่าใด",
    "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_en": "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?",
    "question_th": "จำนวนสมาชิกสูงสุดของ National University of Ireland คือเท่าใด เมื่อจำนวนสมาชิกทั้งหมดใน Seanad คือ 60 คน และเมื่อใดที่คณะผู้บริหารมีสมาชิกมากกว่า 7 คน",
    "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_en": "What is Final round, when Player is Danilo Gallinari?",
    "question_th": "รอบสุดท้ายคืออะไร เมื่อผู้เล่นคือ 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_en": "For the film with director listed as 1998, what was the gross in Singapore?",
    "question_th": "สำหรับภาพยนตร์ที่มีผู้กำกับระบุเป็นปี 1998 รายได้ในสิงคโปร์เป็นเท่าใด",
    "context": "CREATE TABLE table_name_64 (singapore_gross VARCHAR, director VARCHAR)"
  },
  {
    "answer": "SELECT director FROM table_name_96 WHERE producer = \"river films\"",
    "question_en": "Who was the director for the film produced by River Films?",
    "question_th": "ใครเป็นผู้กำกับภาพยนตร์เรื่องนี้ที่ผลิตโดย River Films?",
    "context": "CREATE TABLE table_name_96 (director VARCHAR, producer VARCHAR)"
  },
  {
    "answer": "SELECT producer FROM table_name_45 WHERE director = \"1998\"",
    "question_en": "Who was the producer for the film directed by 1998?",
    "question_th": "ใครเป็นผู้อำนวยการสร้างภาพยนตร์ที่กำกับโดยปี 1998?",
    "context": "CREATE TABLE table_name_45 (producer VARCHAR, director VARCHAR)"
  },
  {
    "answer": "SELECT singapore_gross FROM table_name_3 WHERE title = \"1997\"",
    "question_en": "For the film titled 1997, what was the gross in Singapore?",
    "question_th": "สำหรับภาพยนตร์เรื่องปี 1997 รายได้ในสิงคโปร์เป็นเท่าใด",
    "context": "CREATE TABLE table_name_3 (singapore_gross VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT producer FROM table_name_42 WHERE director = \"1997\"",
    "question_en": "Who was the producer for the film directed by 1997?",
    "question_th": "ใครคือผู้อำนวยการสร้างภาพยนตร์ที่กำกับโดยปี 1997?",
    "context": "CREATE TABLE table_name_42 (producer VARCHAR, director VARCHAR)"
  },
  {
    "answer": "SELECT singapore_gross FROM table_name_66 WHERE director = \"1991\"",
    "question_en": "For the directed by 1991, what was the gross in Singapore?",
    "question_th": "สำหรับการกำกับในปี 1991 รายได้รวมในสิงคโปร์เป็นเท่าใด",
    "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_en": "What is the most points scored for teams with under 25 goals scored, 3 draws, and more than 21 games played?",
    "question_th": "คะแนนสูงสุดสำหรับทีมที่ทำประตูได้ต่ำกว่า 25 ประตู เสมอ 3 นัด และลงเล่นมากกว่า 21 เกมคือแต้มใด",
    "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_en": "What day was there a set 1 of 25-18?",
    "question_th": "มีชุดที่ 1 วันที่ 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–14\"",
    "question_en": "What is the Week when the kick off was at 4:05 pm, and the result was w 31–14?",
    "question_th": "สัปดาห์ใดคือที่การเริ่มแข่งขันเวลา 16:05 น. และผลการแข่งขันคือ w 31–14",
    "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_en": "What time was the kickoff when the miami dolphins were the opponent?",
    "question_th": "ดอลฟินไมอามีเป็นคู่ต่อสู้กันเมื่อใดที่คิกออฟคือกี่โมง?",
    "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_en": "What is Round 2 when Round 4 is Double and Round 3 is Single?",
    "question_th": "รอบที่ 2 จะเป็นอย่างไรเมื่อรอบที่ 4 เป็นรอบคู่ และรอบที่ 3 เป็นรอบเดี่ยว?",
    "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_en": "What points has united kingdom as the country, and 10 as the place?",
    "question_th": "ประเทศอังกฤษเป็นประเทศ และ 10 เป็นจุดใดบ้าง",
    "context": "CREATE TABLE table_name_29 (points VARCHAR, country VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT machine FROM table_name_68 WHERE rider = \"tony rutter\"",
    "question_en": "What machine has tony rutter as the rider?",
    "question_th": "เครื่องอะไรมีโทนี่ รัตเตอร์เป็นคนขี่ครับ?",
    "context": "CREATE TABLE table_name_68 (machine VARCHAR, rider VARCHAR)"
  },
  {
    "answer": "SELECT machine FROM table_name_95 WHERE place = 5",
    "question_en": "What machine has 5 as the place?",
    "question_th": "เครื่องอะไรมี 5 เป็นที่?",
    "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_en": "How many places have yamaha as the machine, and 89.85mph as the speed?",
    "question_th": "มียามาฮ่าเป็นเครื่องจักรกี่แห่งและมีความเร็ว 89.85 ไมล์ต่อชั่วโมง",
    "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_en": "How many places did the artist Big Hit have with less than 2934 votes?",
    "question_th": "ศิลปิน Big Hit มีคะแนนโหวตน้อยกว่า 2,934 คะแนนกี่แห่ง?",
    "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_en": "How many average votes did producer carlos coelho have in a higher place than 6 and with a draw larger than 5?",
    "question_th": "โปรดิวเซอร์คาร์ลอส โคเอลโญ่มีคะแนนโหวตเฉลี่ยกี่คะแนนในอันดับที่สูงกว่า 6 และผลเสมอมากกว่า 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_en": "What is the name of the MySpace Band with an Original Airdate of 19 february 2008?",
    "question_th": "วงดนตรี MySpace ที่ออกอากาศครั้งแรกเมื่อวันที่ 19 กุมภาพันธ์ 2551 ชื่ออะไร",
    "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_en": "What is the Musical Guest/Song with a pilot of 3?",
    "question_th": "Musical Guest/Song ที่มีนักบิน 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_en": "What is the Original Airdate for the YouTube Hero greg pattillo?",
    "question_th": "แอร์เดทแรกสำหรับ YouTube Hero greg pattilo คืออะไร",
    "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_en": "What is the Musical Guest/Song with an original airdate of january 2008?",
    "question_th": "Musical Guest/Song ที่ออกอากาศครั้งแรกในเดือนมกราคม 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_en": "What is the Pilot number for the YouTube Hero greg pattillo?",
    "question_th": "หมายเลขนำร่องของ YouTube Hero greg pattilo คืออะไร",
    "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_en": "What is the name of the MySpace Band with an Original Airdate of 25 march 2008?",
    "question_th": "วงดนตรี MySpace ที่ออกอากาศครั้งแรกเมื่อวันที่ 25 มีนาคม 2551 ชื่ออะไร",
    "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_en": "What is the total number of top-25s for tournaments that had 0 wins, 1 cut made, and more than 5 events?",
    "question_th": "จำนวนรวมของผู้เข้ารอบ 25 อันดับแรกสำหรับทัวร์นาเมนท์ที่ชนะ 0 ครั้ง ตัด 1 ครั้ง และมากกว่า 5 รายการเป็นเท่าใด",
    "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_en": "What is the fewest number of top-5s for events with more than 1 win?",
    "question_th": "จำนวน 5 อันดับแรกน้อยที่สุดสำหรับกิจกรรมที่ชนะมากกว่า 1 ครั้งคือเท่าใด",
    "context": "CREATE TABLE table_name_90 (top_5 INTEGER, wins INTEGER)"
  },
  {
    "answer": "SELECT MAX(top_25) FROM table_name_15 WHERE wins < 0",
    "question_en": "What is the highest number of top-25s for events with 0 wins?",
    "question_th": "จำนวนผู้เข้ารอบ 25 อันดับแรกสูงสุดสำหรับกิจกรรมที่ชนะ 0 ครั้งคือเท่าใด",
    "context": "CREATE TABLE table_name_15 (top_25 INTEGER, wins INTEGER)"
  },
  {
    "answer": "SELECT home_leg FROM table_name_88 WHERE opponents = \"rotor volgograd\"",
    "question_en": "What is the home leg who are opponents of rotor volgograd",
    "question_th": "เจ้าถิ่นที่เป็นคู่ต่อสู้ของโรเตอร์โวลโกกราดคือเจ้าบ้านอะไร",
    "context": "CREATE TABLE table_name_88 (home_leg VARCHAR, opponents VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_33 WHERE opponents = \"ajax\"",
    "question_en": "What is the round with ajax opponents",
    "question_th": "รอบไหนเจอกับอาแจ็กซ์",
    "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_en": "Which acquisition via has a position of forward and is on the state school or club?",
    "question_th": "การเข้าซื้อกิจการใดมีตำแหน่งกองหน้าและอยู่ในโรงเรียนของรัฐหรือสโมสร?",
    "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_en": "Which is the acquisition via that has a school or club team of state?",
    "question_th": "การเข้าซื้อกิจการผ่านทางโรงเรียนหรือสโมสรของรัฐมีอะไรบ้าง?",
    "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_en": "What is the position of Allen Gamboa?",
    "question_th": "อัลเลน แกมโบอา อยู่ตำแหน่งไหน?",
    "context": "CREATE TABLE table_name_50 (position VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_7 WHERE number = 16",
    "question_en": "Which position is number 16?",
    "question_th": "ตำแหน่งไหนคือหมายเลข 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_en": "What year had a date of TBA where the Oakland raiders were the home team?",
    "question_th": "ปีใดมีวันที่ TBA ซึ่งทีมเหย้าของ Oakland Raiders เป็นทีมเหย้า?",
    "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_en": "Who was the home team on October 28 when the new england patriots were the visitors?",
    "question_th": "เจ้าบ้านคือใครในวันที่ 28 ตุลาคม เมื่อผู้รักชาติอังกฤษคนใหม่มาเยือน?",
    "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_en": "Who were the visitors when the Atlanta Falcons were the home team?",
    "question_th": "ใครคือผู้มาเยือนเมื่อ Atlanta Falcons เป็นเจ้าบ้าน?",
    "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_en": "Who were the home team during the game that aired on Fox after 2007 on October 23?",
    "question_th": "ใครคือทีมเจ้าบ้านในระหว่างเกมที่ออกอากาศทาง Fox หลังปี 2550 เมื่อวันที่ 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_en": "What was the birthplace of the player who weighs 98 KG and was born on May 1, 1984?",
    "question_th": "บ้านเกิดของนักเตะหนัก 98 กิโลกรัม และเกิดเมื่อวันที่ 1 พฤษภาคม พ.ศ. 2527 คือที่ใด?",
    "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_en": "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?",
    "question_th": "ชื่อ vte ของผู้เล่นที่มีน้ำหนัก (กก.) 84 ซึ่งตำแหน่งคือ D และหมายเลขเสื้อของใครคือ 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_en": "What is the lowest win percentage for when Perth Scorchers is the opposition?",
    "question_th": "เปอร์เซ็นต์การชนะต่ำสุดเมื่อ Perth Scorchers เป็นฝ่ายตรงข้ามคือเท่าใด?",
    "context": "CREATE TABLE table_name_20 (win__percentage INTEGER, opposition VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_22 WHERE week = 13",
    "question_en": "On which date was the game played on Week 13?",
    "question_th": "เกมนี้เล่นในสัปดาห์ที่ 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_en": "What is the total number of Std SAPs with 0-11 Opt SAPS?",
    "question_th": "จำนวน Std SAP ทั้งหมดที่มี 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_en": "For Model e64 what is the zAAPs/zIIPs?",
    "question_th": "สำหรับรุ่น e64 zAAPs/zIIP คืออะไร",
    "context": "CREATE TABLE table_name_36 (zaaps___ziips VARCHAR, model VARCHAR)"
  },
  {
    "answer": "SELECT ifls___uifls FROM table_name_77 WHERE model = \"e12\"",
    "question_en": "For Model e12 what is the IFLs/uIFLs?",
    "question_th": "สำหรับรุ่น e12 IFLs/uIFL คืออะไร",
    "context": "CREATE TABLE table_name_77 (ifls___uifls VARCHAR, model VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_5 WHERE school_club_team = \"illinois\"",
    "question_en": "Which Player has a School/Club Team of Illinois?",
    "question_th": "ผู้เล่นคนใดมีทีมโรงเรียน/สโมสรของรัฐอิลลินอยส์",
    "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_en": "Which Player plays Guard-Forward Position for School/Club Team Pepperdine?",
    "question_th": "ผู้เล่นคนไหนที่เล่นตำแหน่งกองหน้าให้กับทีมโรงเรียน/สโมสร 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_en": "What Position does the Player Vince Carter hold?",
    "question_th": "ผู้เล่น Vince Carter ดำรงตำแหน่งใด?",
    "context": "CREATE TABLE table_name_84 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT school_club_team FROM table_name_95 WHERE player = \"vince carter\"",
    "question_en": "Which School/Club Team does Vince Carter Play for?",
    "question_th": "Vince Carter เล่นให้กับทีมโรงเรียน/สโมสรใด",
    "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_en": "Who is the Player for School/Club Team Illinois?",
    "question_th": "ใครคือผู้เล่นของทีมโรงเรียน/สโมสรอิลลินอยส์?",
    "context": "CREATE TABLE table_name_22 (player VARCHAR, school_club_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_56 WHERE result = \"7-0\"",
    "question_en": "What score has 7-0 as the result?",
    "question_th": "ผลสกอร์เป็น 7-0 เท่าไหร่?",
    "context": "CREATE TABLE table_name_56 (score VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_71 WHERE result = \"17-1\"",
    "question_en": "What competition has 17-1 as the result?",
    "question_th": "ผลการแข่งขันมี 17-1 อะไรบ้าง?",
    "context": "CREATE TABLE table_name_71 (competition VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_38 WHERE result = \"17-1\"",
    "question_en": "What competition has 17-1 as the result?",
    "question_th": "ผลการแข่งขันมี 17-1 อะไรบ้าง?",
    "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_en": "What is the set 2 with a 25-23 set 1 and a 17-19 set 5?",
    "question_th": "ชุดที่ 2 ไซส์ 25-23 ชุด 1 และชุด 17-19 ชุด 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_en": "What is the set 5 with a 25-23 set 3?",
    "question_th": "ชุด 5 กับ 25-23 ชุด 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_en": "Who had the high pick of the round of 10 for Fairmont State college?",
    "question_th": "ใครเป็นผู้ที่ได้รับเลือกสูงในรอบ 10 ทีมสำหรับวิทยาลัย Fairmont State",
    "context": "CREATE TABLE table_name_13 (pick INTEGER, college VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_57 WHERE pick = 402",
    "question_en": "What was the name of the player for pick 402?",
    "question_th": "ผู้เล่น Pick 402 ชื่ออะไร?",
    "context": "CREATE TABLE table_name_57 (player VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_76 WHERE week = 4",
    "question_en": "What is the date of the week 4 game?",
    "question_th": "เกมสัปดาห์ที่ 4 วันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_76 (date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_73 WHERE date = \"october 17, 1965\"",
    "question_en": "What is the result of the game on October 17, 1965?",
    "question_th": "ผลการแข่งขันวันที่ 17 ต.ค. 65 เป็นอย่างไร?",
    "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_en": "What is the Rank for Viktors Dobrecovs with less than 325 Matches?",
    "question_th": "Viktors Dobrecovs ที่ลงเล่นน้อยกว่า 325 นัดมีอันดับเท่าไหร่?",
    "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_en": "What is the number of Matches for Vits Rimkus with a Rank of less than 3?",
    "question_th": "จำนวนการแข่งขันของ Vits Rimkus ที่มีอันดับน้อยกว่า 3 คือเท่าใด?",
    "context": "CREATE TABLE table_name_2 (matches INTEGER, name VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_80 WHERE location = \"michie stadium • west point, ny\"",
    "question_en": "What is the Date for the game at michie stadium • west point, ny?",
    "question_th": "วันที่สำหรับเกมที่สนามกีฬา michie • เวสต์พอยต์ นิวยอร์กคือเมื่อใด?",
    "context": "CREATE TABLE table_name_80 (date VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_20 WHERE location = \"groves stadium • winston-salem, nc\" AND result = \"t 17-17\"",
    "question_en": "What is the Opponent when the location was groves stadium • winston-salem, nc, with a result of t 17-17?",
    "question_th": "ฝ่ายตรงข้ามคืออะไรเมื่อตำแหน่งคือสนามกีฬาโกรฟส์ • วินสตัน-ซาเลม นอร์ทแคโรไลนา ด้วยผลการแข่งขัน 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_en": "In 1879-81 with number built 4, what is the LMS nos?",
    "question_th": "ในปี 1879-81 สร้างหมายเลข 4 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_en": "On which date was the class 157?",
    "question_th": "คลาส 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_en": "Can you tell me the lowest Ends Lost that has the Locale of norway, and the Blank Ends larger than 17?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่า Ends Lost ต่ำสุดที่มี Locale ของนอร์เวย์ และ Blank Ends มากกว่า 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_en": "What was the Margin of Victory of winning score 68-67-69-65=269?",
    "question_th": "Margin of Victory ของคะแนนชนะ 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_en": "What is the To Par of winning score 71-66-70-67=274?",
    "question_th": "To Par ของคะแนนชนะ 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_en": "Which tournament had a winning score of 67-61-68-67=263?",
    "question_th": "ทัวร์นาเมนท์ใดมีคะแนนชนะ 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_en": "How many tries for are associated with 5 points and 2 tries against?",
    "question_th": "มีความพยายามกี่ครั้งที่เกี่ยวข้องกับ 5 คะแนนและพยายามต่อต้าน 2 ครั้ง?",
    "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_en": "What is the losing bonus associated with 0 tries for?",
    "question_th": "โบนัสการสูญเสียที่เกี่ยวข้องกับการลอง 0 ครั้งคืออะไร?",
    "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_en": "What's the highest against score that drew more than 5, and had more than 18 points?",
    "question_th": "สูงสุดเทียบกับคะแนนที่เกิน 5 และมีมากกว่า 18 คะแนนคืออะไร?",
    "context": "CREATE TABLE table_name_35 (against INTEGER, drawn VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(lost) FROM table_name_33 WHERE played < 17",
    "question_en": "What's the number of losses where played was less than 17?",
    "question_th": "จำนวนการแพ้ที่เล่นน้อยกว่า 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_en": "What is team ypiranga-sp's average position when they lost by less than 7?",
    "question_th": "ตำแหน่งเฉลี่ยของทีม ypiranga-sp เมื่อพวกเขาแพ้น้อยกว่า 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 • winston-salem, nc\" AND result = \"l 0-14\"",
    "question_en": "What was the attendance for the game at groves stadium • winston-salem, nc with a result of L 0-14?",
    "question_th": "ผู้เข้าชมเกมที่โกรฟส์ สเตเดี้ยม • winston-salem, nc มีจำนวนผู้ชมเท่าใด โดยผลการแข่งขัน 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_en": "Who was the opponent when the result was L 0-14?",
    "question_th": "คู่ต่อสู้คือใครเมื่อผลออกมาเป็น 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_en": "What is the name of the position of the person whose hometown is Queens, NY?",
    "question_th": "ตำแหน่งบุคคลที่บ้านเกิดคือ 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_en": "What is Tim Andree's greatest number?",
    "question_th": "หมายเลขที่ยิ่งใหญ่ที่สุดของ Tim Andree คืออะไร?",
    "context": "CREATE TABLE table_name_50 (number INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT MIN(number) FROM table_name_90 WHERE hometown = \"bellwood, il\"",
    "question_en": "What is the lowest number of the player with a hometown of Bellwood, IL?",
    "question_th": "จำนวนผู้เล่นต่ำสุดที่มีบ้านเกิดที่ Bellwood, IL คือเท่าไร?",
    "context": "CREATE TABLE table_name_90 (number INTEGER, hometown VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_33 WHERE attendance = \"2,444\"",
    "question_en": "What is Score, when Attendance is 2,444?",
    "question_th": "คะแนนคืออะไร เมื่อผู้เข้าร่วมคือ 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_en": "What is Home Team, when Tie No is Replay, and when Attendance is 2,048?",
    "question_th": "ทีมเหย้าคืออะไร เมื่อเสมอไม่เป็นการเล่นซ้ำ และเมื่อผู้เข้าร่วมเป็น 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_en": "What is Score, when Tie No is 17?",
    "question_th": "Score คืออะไร เมื่อ Tie No คือ 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_en": "What is Away Team, when Tie No is 4?",
    "question_th": "ทีมเยือนคืออะไร เมื่อเสมอหมายเลข 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_en": "What is Score, when Attendance is 3,416?",
    "question_th": "คะแนนคืออะไร เมื่อผู้เข้าร่วมคือ 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_en": "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?",
    "question_th": "ผลรวมของการแพ้ทีมเยือนโดยไม่มีผลลัพธ์มากกว่า 0 แพ้มากกว่า 6 และแมตช์มากกว่า 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_en": "What stadium was the December 29, 2008 game played at?",
    "question_th": "เกมวันที่ 29 ธันวาคม 2551 เล่นที่สนามใด?",
    "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_en": "Which bowl game had a conference matchup of Ohio State vs. Texas?",
    "question_th": "เกมชามใดที่มีการจับคู่การประชุมระหว่างรัฐโอไฮโอกับเท็กซัส",
    "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_en": "What stadium was the Fiesta Bowl played at?",
    "question_th": "Fiesta Bowl เล่นที่สนามกีฬาใด",
    "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_en": "What was the payout in US dollars at the Insight Bowl?",
    "question_th": "การจ่ายเงินเป็นดอลลาร์สหรัฐที่ 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_en": "What was the conference matchup in the bowl game with a $3 million payout?",
    "question_th": "การจับคู่การประชุมในเกมชามที่มีการจ่ายเงิน 3 ล้านเหรียญคืออะไร?",
    "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_en": "What was the conference matchup for the bowl game played in Glendale, Arizona?",
    "question_th": "การจับคู่การประชุมสำหรับเกมชามที่เล่นในเกลนเดล รัฐแอริโซนาคืออะไร?",
    "context": "CREATE TABLE table_name_66 (conference_matchups VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_59 WHERE tries_for < 10",
    "question_en": "Which Team has Tries for smaller than 10?",
    "question_th": "ทีมใดมีความพยายามน้อยกว่า 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_en": "Which Tries against have Points against larger than 109?",
    "question_th": "ความพยายามใดที่มีคะแนนมากกว่า 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_en": "What Tries against that have a Points against of 95 and Tries for larger than 20?",
    "question_th": "ความพยายามอะไรที่มีคะแนนเทียบกับ 95 และพยายามมากกว่า 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_en": "What Tries for has a Team of neath, and Points against larger than 109?",
    "question_th": "ความพยายามอะไรมีทีมที่เรียบร้อยและมีคะแนนมากกว่า 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_en": "How many Points against that have a Team of harlequins and Tries against smaller than 8?",
    "question_th": "มีกี่คะแนนกับทีมที่มีตัวละครตลกและพยายามต่อสู้กับคะแนนที่น้อยกว่า 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_en": "What is the power that belongs to Class A with an Identifier of CBOC-FM?",
    "question_th": "อำนาจที่เป็นของ Class A ที่มีตัวระบุ 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_en": "Which class has a frequency of 91.9 fm?",
    "question_th": "คลาสไหนมีความถี่ 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_en": "What power belongs to the LP Class and has an Identifier of CBLI?",
    "question_th": "อำนาจใดเป็นของ LP Class และมีตัวระบุของ 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_en": "Which city has a C1 class and Identifier of CBCD-FM?",
    "question_th": "เมืองใดมีคลาส C1 และตัวระบุของ 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_en": "Which Power has a CBLI Identifier?",
    "question_th": "หน่วยพลังงานใดมีตัวระบุ CBLI",
    "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_en": "What is the RECNet belonging to Class A with a Power of 3,000 watts?",
    "question_th": "RECNet ของ Class A กำลัง 3,000 วัตต์ คืออะไร?",
    "context": "CREATE TABLE table_name_75 (recnet VARCHAR, class VARCHAR, power VARCHAR)"
  },
  {
    "answer": "SELECT report FROM table_name_75 WHERE time = \"12:30\"",
    "question_en": "What is the report in the tournament that started at 12:30?",
    "question_th": "รายงานการแข่งขันที่เริ่มเวลา 12.30 น. คืออะไร?",
    "context": "CREATE TABLE table_name_75 (report VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT 2007 FROM table_name_81 WHERE 2003 = \"1r\"",
    "question_en": "Which 2007 has a 2003 of 1r?",
    "question_th": "ปี 2550 ใดมีปี 2546 เป็น 1r",
    "context": "CREATE TABLE table_name_81 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2006 FROM table_name_76 WHERE 2012 = \"a\" AND 2011 = \"3r\"",
    "question_en": "Which 2006 has a 2012 of a, and a 2011 of 3r?",
    "question_th": "ปี 2549 ใดมีปี 2555 เป็น a และปี 2554 เป็น 3r",
    "context": "CREATE TABLE table_name_76 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2008 FROM table_name_84 WHERE 2002 = \"a\" AND tournament = \"australian open\"",
    "question_en": "Which 2008 has a 2002 of a, and a Tournament of australian open?",
    "question_th": "ปี 2008 ใดที่มีปี 2002 ของ a และการแข่งขันของออสเตรเลียนโอเพ่น?",
    "context": "CREATE TABLE table_name_84 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2012 FROM table_name_47 WHERE 2008 = \"grand slam tournaments\"",
    "question_en": "Which 2012 has a 2008 of grand slam tournaments?",
    "question_th": "ปี 2012 ใดที่มีการแข่งขันแกรนด์สแลมปี 2008",
    "context": "CREATE TABLE table_name_47 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2002 FROM table_name_96 WHERE 2009 = \"2r\"",
    "question_en": "Which 2002 has a 2009 of 2r?",
    "question_th": "ปี 2002 ใดมีปี 2009 เป็น 2r",
    "context": "CREATE TABLE table_name_96 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2010 FROM table_name_20 WHERE 2002 = \"2r\"",
    "question_en": "Which 2010 has a 2002 of 2r?",
    "question_th": "ปี 2010 ใดมีปี 2002 เป็น 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_en": "What is th US A.C. in 1985 with a US hot 100 of 57?",
    "question_th": "US AC ในปี 1985 คืออะไรกับ US hot 100 จาก 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_en": "What is the Canada singles in 1979 with a US A.C. of 24?",
    "question_th": "ซิงเกิ้ลของแคนาดาในปี 1979 โดยมี AC ของสหรัฐอเมริกาอยู่ที่ 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_en": "What is the US A.C. in 1974?",
    "question_th": "AC ของสหรัฐอเมริกาในปี 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_en": "What is the average round of player Sammy Morris?",
    "question_th": "ผู้เล่น 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_en": "What is the sum pick # of the player from round 4?",
    "question_th": "จำนวนเงินที่เลือก # ของผู้เล่นจากรอบที่ 4 คือเท่าไร?",
    "context": "CREATE TABLE table_name_70 (pick__number INTEGER, round VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_40 WHERE college = \"arizona state\"",
    "question_en": "Who is the player from Arizona State?",
    "question_th": "ใครคือผู้เล่นจากรัฐแอริโซนา?",
    "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_en": "What is the sum of the round of the player who plays linebacker and has a pick # greater than 251?",
    "question_th": "ผลรวมของรอบของผู้เล่นที่เล่นไลน์แบ็คเกอร์และเลือก # มากกว่า 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_en": "Who is the player from Arizona state with a round less than 7?",
    "question_th": "ใครคือผู้เล่นจากรัฐแอริโซนาที่มีรอบน้อยกว่า 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_en": "What's the highest week for the day of October 21, 1956?",
    "question_th": "สัปดาห์ที่สูงที่สุดของวันที่ 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_en": "What is the least recent week number when the attendance is 16,562?",
    "question_th": "จำนวนสัปดาห์ล่าสุดที่มีผู้เข้าร่วม 16,562 คนน้อยที่สุดคือเท่าใด?",
    "context": "CREATE TABLE table_name_1 (week INTEGER, attendance VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_63 WHERE rider = \"lindsay porter\"",
    "question_en": "What is Country , when Rider is Lindsay Porter?",
    "question_th": "Country คืออะไร เมื่อไรเดอร์คือ Lindsay Porter",
    "context": "CREATE TABLE table_name_63 (country VARCHAR, rider VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_15 WHERE speed = \"87.49mph\"",
    "question_en": "What is Time, when Speed is 87.49mph?",
    "question_th": "เวลาคืออะไร เมื่อความเร็วอยู่ที่ 87.49 ไมล์ต่อชั่วโมง?",
    "context": "CREATE TABLE table_name_15 (time VARCHAR, speed VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_30 WHERE points > 12",
    "question_en": "What is Country, when Points are more than 12?",
    "question_th": "ประเทศคืออะไร เมื่อคะแนนมากกว่า 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_en": "What is Speed, when Time is 1:24.23.0?",
    "question_th": "ความเร็วคืออะไร เมื่อเวลาเป็น 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_en": "What is Country, when Time is 1:29.43.60?",
    "question_th": "ประเทศคืออะไร เมื่อเวลา 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_en": "What is the lowest Place, when Points are greater than 2?",
    "question_th": "ตำแหน่งต่ำสุดคืออะไร เมื่อคะแนนมากกว่า 2?",
    "context": "CREATE TABLE table_name_17 (place INTEGER, points INTEGER)"
  },
  {
    "answer": "SELECT opponent FROM table_name_21 WHERE result = \"l 0-27\"",
    "question_en": "What team was the opponent when the result was l 0-27?",
    "question_th": "คู่ต่อสู้ทีมไหนเมื่อผลออกมาเป็น 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_en": "What team was the opponent on 09/20/1975?",
    "question_th": "ทีมใดเป็นคู่ต่อสู้เมื่อวันที่ 20/09/1975?",
    "context": "CREATE TABLE table_name_62 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_43 WHERE date = \"11/08/1975*\"",
    "question_en": "What is the Location of the game on 11/08/1975*?",
    "question_th": "ตำแหน่งของเกมในวันที่ 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_en": "How many gold medals were awarded to the team with more than 2 bronze and exactly 29 silver medals?",
    "question_th": "ทีมได้เหรียญทองมากกว่า 2 เหรียญทองแดง และเหรียญเงิน 29 เหรียญพอดี มีเหรียญทองกี่เหรียญ?",
    "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_en": "What is the latest year that Cicely Tyson is the Golden Globe Award actor?",
    "question_th": "ปีล่าสุดที่ Cicely Tyson เป็นนักแสดงรางวัลลูกโลกทองคำคือปีใด?",
    "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_en": "What Motion Picture after 2003 had Viola Davis nominated for Best Supporting Actress?",
    "question_th": "ภาพยนตร์เรื่องใดหลังจากปี 2003 ที่ Viola Davis ได้รับการเสนอชื่อเข้าชิงนักแสดงสมทบหญิงยอดเยี่ยม",
    "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_en": "What Award has a date of 2002?",
    "question_th": "รางวัลอะไรมีวันที่ 2545?",
    "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_en": "What Award was received bby the Motion Picture What's Love Got To Do With It?",
    "question_th": "ภาพยนตร์ 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_en": "What is the latest Year with Marianne Jean-Baptiste as the Golden Globe Actor?",
    "question_th": "ปีล่าสุดที่ Marianne Jean-Baptiste ในฐานะนักแสดงลูกโลกทองคำคืออะไร?",
    "context": "CREATE TABLE table_name_50 (year INTEGER, actor VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_67 WHERE date = \"august 2004\"",
    "question_en": "Which film was released in August 2004?",
    "question_th": "ภาพยนตร์เรื่องใดเข้าฉายในเดือนสิงหาคม พ.ศ. 2547",
    "context": "CREATE TABLE table_name_67 (title VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT production_cost FROM table_name_39 WHERE director = \"2004\"",
    "question_en": "What was the production cost for the film directed by 2004?",
    "question_th": "ต้นทุนการผลิตภาพยนตร์ที่กำกับในปี 2547 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_39 (production_cost VARCHAR, director VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_62 WHERE director = \"pen-ek ratanaruang\"",
    "question_en": "What film did Pen-Ek Ratanaruang direct?",
    "question_th": "เป็นเอก รัตนเรือง กำกับภาพยนตร์เรื่องใด?",
    "context": "CREATE TABLE table_name_62 (title VARCHAR, director VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_13 WHERE director = \"pen-ek ratanaruang\"",
    "question_en": "When was the film directed by Pen-Ek Ratanaruang released?",
    "question_th": "ภาพยนตร์ที่กำกับโดย เป็นเอก รัตนเรือง ออกฉายเมื่อใด?",
    "context": "CREATE TABLE table_name_13 (date VARCHAR, director VARCHAR)"
  },
  {
    "answer": "SELECT director FROM table_name_50 WHERE title = \"tequila\"",
    "question_en": "Who directed Tequila?",
    "question_th": "ใครเป็นผู้กำกับเตกีล่า?",
    "context": "CREATE TABLE table_name_50 (director VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_1 WHERE left_office = \"june 2011\"",
    "question_en": "Who left office in June 2011?",
    "question_th": "ใครออกจากตำแหน่งในเดือนมิถุนายน 2554?",
    "context": "CREATE TABLE table_name_1 (name VARCHAR, left_office VARCHAR)"
  },
  {
    "answer": "SELECT born_died FROM table_name_16 WHERE country = \"italy\"",
    "question_en": "What is the Born-Died date for the Representative of Italy?",
    "question_th": "วันเกิด - เสียชีวิตของผู้แทนประเทศอิตาลีคือเมื่อใด",
    "context": "CREATE TABLE table_name_16 (born_died VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_29 WHERE left_office = \"incumbent\"",
    "question_en": "What is the country of the Representative that left office as incumbent?",
    "question_th": "ผู้แทนราษฎรที่ออกจากตำแหน่งดำรงตำแหน่งคือประเทศใด",
    "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_en": "What is Package/Option, when Language is Italian, and when Television Service is Sky Radio?",
    "question_th": "แพ็คเกจ/ตัวเลือกคืออะไร เมื่อภาษาเป็นภาษาอิตาลี และเมื่อบริการโทรทัศน์เป็น 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_en": "What is HDTV, when Television Service is MTV Rocks?",
    "question_th": "HDTV คืออะไร เมื่อบริการโทรทัศน์คือ 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_en": "What is Television Service, when HDTV is No, and when Language is Italian?",
    "question_th": "บริการโทรทัศน์คืออะไร เมื่อ HDTV เป็นไม่มี และเมื่อภาษาเป็นภาษาอิตาลี",
    "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_en": "What is Television Service, when Package/Option is Sky Famiglia, and when Language is Italian?",
    "question_th": "บริการโทรทัศน์คืออะไร เมื่อแพ็คเกจ/ตัวเลือกคือ Sky Famiglia และเมื่อใดเป็นภาษาอิตาลี",
    "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_en": "What is HDTV, when Language is English, and when Television Service is MTV Dance?",
    "question_th": "HDTV คืออะไร เมื่อภาษาเป็นภาษาอังกฤษ และเมื่อบริการโทรทัศน์เป็น 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_en": "How many average 100s were there for Tim Bresnan?",
    "question_th": "Tim Bresnan มีค่าเฉลี่ย 100 กี่อัน",
    "context": "CREATE TABLE table_name_51 (player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(platform) FROM table_name_60 WHERE frequency__per_hour_ < 2",
    "question_en": "How many Platforms have a Frequency of less than 2?",
    "question_th": "มีกี่แพลตฟอร์มที่มีความถี่น้อยกว่า 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_en": "What is the 1999-2000 team, when the Height (cm) is less than 187, and when the Birthplace is Cloquet, Minnesota?",
    "question_th": "อะไรคือทีมในปี 1999-2000 เมื่อส่วนสูง (ซม.) น้อยกว่า 187 และเมื่อสถานที่เกิดคือโคลเกต์ รัฐมินนิโซตา?",
    "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_en": "What is the sum of Height (cm), when the Weight (kg) is 90?",
    "question_th": "ผลรวมของส่วนสูง (ซม.) เมื่อน้ำหนัก (กก.) เท่ากับ 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_en": "Which Losses have a Pct of .451 and Finished 6th?",
    "question_th": "การแพ้ใดมีเปอร์เซ็นต์ของ .451 และจบอันดับที่ 6?",
    "context": "CREATE TABLE table_name_92 (losses VARCHAR, pct VARCHAR, finish VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_65 WHERE losses = \"30\"",
    "question_en": "Which season has Losses of 30?",
    "question_th": "ฤดูกาลใดมีการสูญเสีย 30?",
    "context": "CREATE TABLE table_name_65 (season VARCHAR, losses VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_4 WHERE division = \"washington bullets\"",
    "question_en": "In which Season was the Division Washington Bullets?",
    "question_th": "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_en": "In which season were there Wins of 29 and a Finished place of 3rd?",
    "question_th": "ในฤดูกาลใดที่มีการชนะ 29 และจบอันดับที่ 3?",
    "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_en": "What is the EASA (EU) when the notes show aoc 135?",
    "question_th": "EASA (EU) คืออะไรเมื่อบันทึกแสดง 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_en": "What is the Notes when the fleet size is 3?",
    "question_th": "หมายเหตุเมื่อกองเรือมีขนาด 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_en": "What is the Fleet Size when the EASA (EU) is no?",
    "question_th": "ขนาดกองเรือเป็นเท่าใดเมื่อไม่มี EASA (EU)",
    "context": "CREATE TABLE table_name_27 (fleet_size VARCHAR, easa__eu_ VARCHAR)"
  },
  {
    "answer": "SELECT airline FROM table_name_55 WHERE easa__eu_ = \"yes\"",
    "question_en": "hat is the Airline when the EASA (EU) is yes?",
    "question_th": "hat เป็นสายการบินเมื่อ EASA (EU) ใช่หรือไม่?",
    "context": "CREATE TABLE table_name_55 (airline VARCHAR, easa__eu_ VARCHAR)"
  },
  {
    "answer": "SELECT airline FROM table_name_51 WHERE notes = \"aoc 135\"",
    "question_en": "What is the Airline when the notes show aoc 135?",
    "question_th": "สายการบินอะไรครับที่หมายเหตุแสดง 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_en": "What is the highest Year with a Competition that is new york city marathon?",
    "question_th": "ปีสูงสุดกับการแข่งขันที่นิวยอร์กซิตี้มาราธอนคืออะไร?",
    "context": "CREATE TABLE table_name_10 (year INTEGER, competition VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_name_23 WHERE venue = \"venice, italy\"",
    "question_en": "What is the Notes with a Venue that is venice, italy?",
    "question_th": "Notes กับสถานที่จัดงานที่เวนิส ประเทศอิตาลี คืออะไร?",
    "context": "CREATE TABLE table_name_23 (notes VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT 1994 FROM table_name_76 WHERE 2002 = \"atp masters series\"",
    "question_en": "What is 1994, when 2002 is ATP Masters Series?",
    "question_th": "ปี 1994 คืออะไร เมื่อปี 2002 เป็น 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_en": "What is 2001, when 1987 is N/A, and when Career SR is N/A?",
    "question_th": "ปี 2001 คืออะไร เมื่อปี 1987 ไม่มีข้อมูล และเมื่อใดที่ Career SR ไม่มีข้อมูล",
    "context": "CREATE TABLE table_name_50 (career_sr VARCHAR)"
  },
  {
    "answer": "SELECT 1989 FROM table_name_39 WHERE 1999 = \"f\" AND 1994 = \"2r\"",
    "question_en": "What is 1989, when 1999 is F, and when 1994 is 2R?",
    "question_th": "1989 คืออะไร เมื่อ 1999 เป็น F และเมื่อ 1994 เป็น 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_en": "What is 2001, when 1990 is A, when 1987 is NME, and when 1997 is 1R?",
    "question_th": "2001 คืออะไร เมื่อ 1990 เป็น A เมื่อ 1987 เป็น NME และเมื่อ 1997 เป็น 1R",
    "context": "CREATE TABLE table_name_33 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1997 FROM table_name_22 WHERE 2003 = \"0 / 4\"",
    "question_en": "What is 1997, when 2003 is 0 / 4?",
    "question_th": "ปี 1997 คืออะไรเมื่อปี 2003 เป็น 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_en": "What is the average total 0 are nominated by the Taoiseach and the agricultural panel is greater than 5?",
    "question_th": "ค่าเฉลี่ยทั้งหมด 0 ที่ได้รับการเสนอชื่อโดย Taoiseach และคณะกรรมการเกษตรมีค่ามากกว่า 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_en": "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?",
    "question_th": "ผลรวมของแผงวัฒนธรรมและการศึกษาเมื่อแผงอุตสาหกรรมและการพาณิชย์เป็น 0 และแผงเกษตรกรรมมีค่ามากกว่า 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_en": "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?",
    "question_th": "จำนวนรวมของมหาวิทยาลัยดับลินเมื่อ 2 รายการได้รับการเสนอชื่อโดย Taoiseach และคณะผู้พิจารณาด้านอุตสาหกรรมและการพาณิชย์มีค่ามากกว่า 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_en": "What is the highest labour panel when the university of dublin is less than 2 and the agricultural panel is greater than 5?",
    "question_th": "คณะกรรมการแรงงานที่สูงที่สุดเมื่อมหาวิทยาลัยดับลินน้อยกว่า 2 และคณะกรรมการเกษตรมากกว่า 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_en": "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?",
    "question_th": "ค่าเฉลี่ยของมหาวิทยาลัยดับลินคือเท่าไร เมื่อกลุ่มอุตสาหกรรมและการพาณิชย์มากกว่า 4 และผลรวมของมหาวิทยาลัยแห่งชาติในไอร์แลนด์มากกว่า 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–6\"",
    "question_en": "When has a Site of tainan city and a Score of 8–6?",
    "question_th": "เมื่อใดจะมีที่ตั้งของเมืองไถหนานและคะแนน 8–6?",
    "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_en": "Which Score that has a Winning team of wei chuan dragons?",
    "question_th": "คะแนนไหนที่มีทีมชนะมังกรเว่ยชวน?",
    "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_en": "What is the number of 2011 passengers in millions that have traveled a distance of 1271km?",
    "question_th": "จำนวนผู้โดยสารในปี 2554 ในล้านคนที่เดินทางระยะทาง 1,271 กม. เป็นเท่าใด",
    "context": "CREATE TABLE table_name_37 (distance VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(2012 AS _passengers__in_millions_) FROM table_name_56 WHERE distance = \"1075km\"",
    "question_en": "What is the number of 2012 passengers in millions that have traveled a distance of 1075km?",
    "question_th": "จำนวนผู้โดยสารในปี 2555 ในล้านคนที่เดินทางระยะทาง 1,075 กม. เป็นเท่าใด",
    "context": "CREATE TABLE table_name_56 (distance VARCHAR)"
  },
  {
    "answer": "SELECT second FROM table_name_18 WHERE sixth = \"victoria\"",
    "question_en": "What is SECOND, when SIXTH is Victoria?",
    "question_th": "SECOND คืออะไร เมื่อ SIXTH คือ Victoria",
    "context": "CREATE TABLE table_name_18 (second VARCHAR, sixth VARCHAR)"
  },
  {
    "answer": "SELECT second FROM table_name_64 WHERE first = \"western australia\"",
    "question_en": "What is SECOND, when FIRST is Western Australia?",
    "question_th": "SECOND คืออะไร เมื่อ FIRST คือ 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_en": "How many losses does corinthians have when they scored over 22 points?",
    "question_th": "โครินเธียนส์เสียไปกี่ครั้งเมื่อพวกเขาทำคะแนนเกิน 22 แต้ม?",
    "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_en": "What was the termination type for the headphones with comfort pads and selling for $150?",
    "question_th": "หูฟังแบบมี Comfort Pads เป็นประเภทใดและขายในราคา 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_en": "What are the earpads for the headphones that are Reference class and have MSRP of $695?",
    "question_th": "เอียร์แพดสำหรับหูฟังที่เป็นคลาสอ้างอิงและมี MSRP อยู่ที่ 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_en": "What earpads do the headphones with driver-matched dB over 0.05 and MSRP of $79 have?",
    "question_th": "หูฟังแบบเอียร์แพดใดที่มี dB ที่ตรงกับไดรเวอร์มากกว่า 0.05 และ MSRP ที่ $79 มี",
    "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_en": "What is the name of the race from round 1?",
    "question_th": "การแข่งขันรอบที่ 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_en": "Which race was in Sydney, New South Wales?",
    "question_th": "การแข่งขันใดจัดขึ้นที่เมืองซิดนีย์ รัฐนิวเซาท์เวลส์?",
    "context": "CREATE TABLE table_name_37 (race_name VARCHAR, city_state VARCHAR)"
  },
  {
    "answer": "SELECT circuit FROM table_name_30 WHERE round > 5",
    "question_en": "Which circuit had a round larger than 5?",
    "question_th": "วงจรใดมีรอบมากกว่า 5",
    "context": "CREATE TABLE table_name_30 (circuit VARCHAR, round INTEGER)"
  },
  {
    "answer": "SELECT story FROM table_name_42 WHERE date = \"october 19, 2011\"",
    "question_en": "What is the title of the story published on October 19, 2011?",
    "question_th": "ชื่อเรื่องที่เผยแพร่เมื่อวันที่ 19 ตุลาคม 2554 คืออะไร?",
    "context": "CREATE TABLE table_name_42 (story VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT issue FROM table_name_22 WHERE date = \"august 17, 2011\"",
    "question_en": "What Issue number was released on August 17, 2011?",
    "question_th": "ฉบับที่ออกเมื่อวันที่ 17 สิงหาคม 2554 คือฉบับใด",
    "context": "CREATE TABLE table_name_22 (issue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT story FROM table_name_47 WHERE issue = \"#8\"",
    "question_en": "What story title was included in Issue #8?",
    "question_th": "ชื่อเรื่องใดรวมอยู่ในฉบับที่ 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_en": "Which young classification has general classification of Christian Vande Velde for Team Columbia and Mark Cavendish?",
    "question_th": "ประเภทเยาวชนใดที่มีการจัดประเภททั่วไปของ Christian Vande Velde สำหรับทีม Columbia และ 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_en": "What mountains classification corresponds to Mark Cavendish and the Garmin-Chipotle-H30?",
    "question_th": "การจำแนกประเภทภูเขาใดที่สอดคล้องกับ Mark Cavendish และ 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_en": "Who was the winner for a Sprint Classification and Young Classification to Mark Cavendish and Garmin-Chipotle-H30 for team?",
    "question_th": "ใครคือผู้ชนะในประเภท Sprint Classification และ Young Classification ของ Mark Cavendish และ Garmin-Chipotle-H30 สำหรับทีม",
    "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_en": "Which outcome has a partner named Mark Dickson, with the opponents of Hans Gildemeister Belus Prajoux?",
    "question_th": "ผลการแข่งขันคู่หูชื่อ มาร์ค ดิคสัน กับคู่ต่อสู้ของ ฮันส์ กิลเดไมสเตอร์ เบลุส ปราจูซ์ เป็นอย่างไร?",
    "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_en": "What is the Format with a Catalog that is vcrd 103?",
    "question_th": "รูปแบบที่มีแคตตาล็อกที่เป็น 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_en": "What is the Region with a Catalog that is vlmx 1087-3?",
    "question_th": "ภูมิภาคที่มีแคตตาล็อกที่เป็น 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_en": "What is the Format with a Label of electropolis and a Date that is 2002?",
    "question_th": "รูปแบบที่มีป้ายกำกับว่าอิเล็กโทรโพลิสและวันที่คือปี 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_en": "How many in the cultural and educational panel have a university of Dublin of 3 & A labor panel larger than 11?",
    "question_th": "มีคณะทำงานด้านวัฒนธรรมและการศึกษาจำนวนเท่าใดที่มีมหาวิทยาลัยดับลินจำนวน 3 และคณะทำงาน A ที่ใหญ่กว่า 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_en": "What is Margin, when Match Date is Oct 17, 2007?",
    "question_th": "Margin คืออะไร เมื่อ Match Date คือวันที่ 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_en": "What is Team (B), when S No is greater than 17?",
    "question_th": "Team (B) คืออะไร เมื่อ S No มากกว่า 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_en": "What is the total number of S No(s), when the Margin is 16 runs?",
    "question_th": "จำนวน S No ทั้งหมดเมื่อ Margin คือ 16 รัน?",
    "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_en": "What is the highest S No, when the Match Date is Nov 1, 2003?",
    "question_th": "S No สูงสุดคือเท่าใด เมื่อวันแข่งขันคือวันที่ 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_en": "What is Team (B), when S No is less than 18, when Margin is 8 Wickets, and when Match Date is Oct 30, 1989?",
    "question_th": "ทีม (B) คืออะไร เมื่อ S No น้อยกว่า 18 เมื่อ Margin คือ 8 Wickets และเมื่อ Match Date คือ 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_en": "When was the last time, since December 14, 1986, that the attendance was lower than 47,096?",
    "question_th": "ครั้งสุดท้ายนับตั้งแต่วันที่ 14 ธันวาคม 2529 มีผู้เข้าร่วมต่ำกว่า 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_en": "What is the Surface of indoor/carpet Outcome on 13 October 1996",
    "question_th": "พื้นผิวในร่ม/พรมเป็นอย่างไร ผลลัพธ์เมื่อวันที่ 13 ตุลาคม พ.ศ. 2539",
    "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_en": "What the Outcome for the Tournament of Johannesburg, South Africa",
    "question_th": "ผลลัพธ์ของการแข่งขันที่เมืองโจฮันเนสเบิร์ก แอฟริกาใต้",
    "context": "CREATE TABLE table_name_5 (outcome VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT launch_site FROM table_name_26 WHERE rocket = \"delta iv\"",
    "question_en": "What is the launch site of the delta iv rocket?",
    "question_th": "จุดปล่อยจรวดเดลต้า 4 คือที่ใด",
    "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_en": "What is the type of the gps iif-10 satellite with an unknown date?",
    "question_th": "ดาวเทียม gps iif-10 ชนิดใดไม่ทราบวันที่?",
    "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_en": "What is the type of the gps iif-10 satellite?",
    "question_th": "ดาวเทียม gps iif-10 เป็นประเภทใด?",
    "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_en": "What is the launch site of the delta iv rocket with an unknown date and a gps iif-10 satellite?",
    "question_th": "จุดปล่อยจรวด delta iv โดยไม่ทราบวันที่ และดาวเทียม gps iif-10 คือที่ใด",
    "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_en": "What is the date of the gps iif-7 satellite?",
    "question_th": "ดาวเทียม gps iif-7 คือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_48 (date VARCHAR, satellite VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_89 WHERE year = 1992",
    "question_en": "What was the finish for 1992?",
    "question_th": "จบปี 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_en": "What was Andretti's finish for the year he had a Buick engine and started 16th?",
    "question_th": "อะไรคือจุดสิ้นสุดของ Andretti ในปีที่เขามีเครื่องยนต์ Buick และออกสตาร์ทในวันที่ 16?",
    "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_en": "What was Andretti's finish the year he started 16th with a Buick engine?",
    "question_th": "Andretti จบฤดูกาลที่ 16 ด้วยเครื่องยนต์บูอิคในปีที่ 16 ได้อย่างไร",
    "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_en": "Which Drawn has a Points of 6, and a Against larger than 16?",
    "question_th": "เสมอตัวไหนมีแต้ม 6 และแต้มต่อมากกว่า 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_en": "Which Points has a Difference of 3, and a Played smaller than 10?",
    "question_th": "แต้มใดมีความแตกต่าง 3 และแต้มที่เล่นน้อยกว่า 10",
    "context": "CREATE TABLE table_name_80 (points INTEGER, difference VARCHAR, played VARCHAR)"
  },
  {
    "answer": "SELECT SUM(points) FROM table_name_15 WHERE team = \"são paulo athletic\" AND position > 5",
    "question_en": "Which Points has a Team of são paulo athletic, and a Position larger than 5?",
    "question_th": "คะแนนใดมีทีมนักกีฬาเซาเปาโลและมีตำแหน่งมากกว่า 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_en": "Which Position has a Played larger than 9, and a Points smaller than 11, and a Drawn smaller than 0?",
    "question_th": "ตำแหน่งใดที่มีการเล่นมากกว่า 9 และแต้มน้อยกว่า 11 และเสมอน้อยกว่า 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_en": "What track has a catalogue of 47-9465?",
    "question_th": "แทร็กใดมีแคตตาล็อก 47-9465",
    "context": "CREATE TABLE table_name_21 (track INTEGER, catalogue VARCHAR)"
  },
  {
    "answer": "SELECT track FROM table_name_23 WHERE time = \"2:30\"",
    "question_en": "What track has a time of 2:30?",
    "question_th": "เพลงอะไรมีเวลา 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_en": "What catalogue was recorded on 9/10/67 and a release date of 1/9/68?",
    "question_th": "แค็ตตาล็อกไหนที่บันทึกไว้เมื่อ 9/10/67 และวันวางจำหน่าย 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_en": "Where does Norway rank in total medals among countries with fewer than 7 bronzes?",
    "question_th": "นอร์เวย์ได้รับเหรียญรางวัลรวมที่ไหนในประเทศที่มีน้อยกว่า 7 เหรียญทองแดง",
    "context": "CREATE TABLE table_name_96 (rank VARCHAR, bronze VARCHAR, nation VARCHAR)"
  },
  {
    "answer": "SELECT inns FROM table_name_80 WHERE runs = 435",
    "question_en": "What is the Inns of 435 Runs?",
    "question_th": "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_en": "What is the average 1st place with a Rank that is larger than 10?",
    "question_th": "อันดับ 1 โดยเฉลี่ยที่มีอันดับมากกว่า 10 คือเท่าไร?",
    "context": "CREATE TABLE table_name_26 (rank INTEGER)"
  },
  {
    "answer": "SELECT week_of FROM table_name_70 WHERE runner_up = \"lori mcneil\"",
    "question_en": "What week was the Runner-up Lori McNeil?",
    "question_th": "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_en": "When the runner-up was Jing-qian Yi, who was the winner?",
    "question_th": "เมื่อรองชนะเลิศคือ Jing-qian Yi ใครเป็นผู้ชนะ?",
    "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_en": "What is the highest episode number in which Jamie Oliver guest-hosted?",
    "question_th": "หมายเลขตอนสูงสุดที่ Jamie Oliver เป็นแขกรับเชิญคือหมายเลขใด",
    "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_en": "What is the score of the home game for the Cavaliers where Lebron James (46) was the lead scorer?",
    "question_th": "สกอร์เกมเหย้าของ คาวาเลียร์ส เป็นอย่างไร โดยมี เลอบรอน เจมส์ (46) เป็นผู้ทำประตูนำ?",
    "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_en": "Who was the leading scorer against the visiting team Bulls?",
    "question_th": "ใครคือผู้ทำประตูสูงสุดในการเจอกับทีมเยือนบูลส์?",
    "context": "CREATE TABLE table_name_96 (leading_scorer VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_28 WHERE home = \"rockets\"",
    "question_en": "What date was the game played against the home team Rockets?",
    "question_th": "แข่งกับทีมเจ้าบ้านร็อคเก็ตส์วันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_28 (date VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_67 WHERE penciller = \"tomás giorello\" AND title = \"cimmeria\"",
    "question_en": "What was the Date of the Cimmeria Issue for which the Penciller was Tomás Giorello?",
    "question_th": "วันที่ของ Cimmeria ฉบับที่ดินสอคือ Tomás Giorello คืออะไร",
    "context": "CREATE TABLE table_name_67 (date VARCHAR, penciller VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_5 WHERE title = \"homecoming\"",
    "question_en": "When did the Issue with the Title Homecoming come out?",
    "question_th": "ประเด็นเรื่อง Title Homecoming ออกมาเมื่อไหร่?",
    "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_en": "Which average match has a lost greater than 0, points greater than 6, legia warszawa as the team, and a draw less than 0?",
    "question_th": "แมตช์เฉลี่ยใดที่แพ้มากกว่า 0, แต้มมากกว่า 6, ลีเกีย วอร์สซาวา เป็นทีม และเสมอน้อยกว่า 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_en": "What draw has a lost less than 6 with 28 as the points?",
    "question_th": "เสมออะไรเสียน้อยกว่า 6 มี 28 เป็นแต้ม?",
    "context": "CREATE TABLE table_name_23 (draw VARCHAR, lost VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT AVG(lost) FROM table_name_9 WHERE match < 14",
    "question_en": "Which average lost that has a match less than 14?",
    "question_th": "แพ้เฉลี่ยใดที่มีนัดน้อยกว่า 14?",
    "context": "CREATE TABLE table_name_9 (lost INTEGER, match INTEGER)"
  },
  {
    "answer": "SELECT match FROM table_name_65 WHERE team = \"skra warszawa\"",
    "question_en": "What is the Match for skra warszawa?",
    "question_th": "การแข่งขันสำหรับ skra warszawa คืออะไร?",
    "context": "CREATE TABLE table_name_65 (match VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT draw FROM table_name_5 WHERE team = \"skra warszawa\"",
    "question_en": "What is the Draw for skra warszawa?",
    "question_th": "การวาดสำหรับ skra warszawa คืออะไร?",
    "context": "CREATE TABLE table_name_5 (draw VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT lost FROM table_name_61 WHERE points = \"dissolved\"",
    "question_en": "What is the Lost when the points were dissolved?",
    "question_th": "อะไรคือสิ่งที่หายไปเมื่อคะแนนถูกละลาย?",
    "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_en": "What is the Draw for match 10, and the team was skra warszawa?",
    "question_th": "การจับสลากนัดที่ 10 คืออะไร และทีมคือ สครา วอร์สซาวา?",
    "context": "CREATE TABLE table_name_76 (draw VARCHAR, match VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT draw FROM table_name_2 WHERE team = \"tramwajarz łódź\"",
    "question_en": "What is the Draw for the team of tramwajarz łódź?",
    "question_th": "การจับฉลากของทีม tramwajarz łódź คืออะไร?",
    "context": "CREATE TABLE table_name_2 (draw VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT draw FROM table_name_94 WHERE team = \"tramwajarz łódź\"",
    "question_en": "What is the Draw for the team tramwajarz łódź?",
    "question_th": "การจับฉลากของทีม tramwajarz łódź คืออะไร?",
    "context": "CREATE TABLE table_name_94 (draw VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_12 WHERE novelty = \"gen\"",
    "question_en": "What is the Location when the novelty is gen?",
    "question_th": "สถานที่เมื่อความแปลกใหม่คือ gen คืออะไร?",
    "context": "CREATE TABLE table_name_12 (location VARCHAR, novelty VARCHAR)"
  },
  {
    "answer": "SELECT unit FROM table_name_16 WHERE status = \"nomen oblitum\"",
    "question_en": "What shows for Unit with a status of nomen oblitum?",
    "question_th": "สิ่งที่แสดงให้เห็นสำหรับหน่วยที่มีสถานะเป็นชื่อ oblitum?",
    "context": "CREATE TABLE table_name_16 (unit VARCHAR, status VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_23 WHERE name = \"telmatosaurus\"",
    "question_en": "What is the Location when the name is telmatosaurus?",
    "question_th": "ที่ตั้งของชื่อเทลมาโตซอรัสคือที่ไหน?",
    "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_en": "What is the Status with a novelty of gen et sp, and the name is haplocanthosaurus?",
    "question_th": "สถานะที่มีความแปลกใหม่ของ gen et sp คืออะไร และชื่อคือ 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_en": "How many League cups had a total less than 25 and a league larger than 19?",
    "question_th": "มีลีกคัพกี่ถ้วยที่มีทั้งหมดน้อยกว่า 25 ถ้วยและมีลีกใหญ่กว่า 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_en": "How many FA trophies did Ceri Williams get with a smaller total than 19?",
    "question_th": "เซรี วิลเลียมส์ได้ถ้วยรางวัล FA กี่ถ้วยจากผลรวมน้อยกว่า 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_en": "Which City has an Average of 6.85?",
    "question_th": "เมืองใดมีค่าเฉลี่ย 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_en": "What is the Average of bergen, norway?",
    "question_th": "ค่าเฉลี่ยของเบอร์เกน, นอร์เวย์ คืออะไร?",
    "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_en": "Which Comprehension of Danish has an Average smaller than 6.85, and a Comprehension of Norwegian of 4.13?",
    "question_th": "ความเข้าใจภาษาเดนมาร์กข้อใดมีค่าเฉลี่ยน้อยกว่า 6.85 และความเข้าใจภาษานอร์เวย์เท่ากับ 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_en": "What are the Attendance numbers for november 18, 1990?",
    "question_th": "จำนวนผู้เข้าร่วมในวันที่ 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–1\"",
    "question_en": "What is the Date for a week higher than 7 with a record of 9–1?",
    "question_th": "วันที่ในหนึ่งสัปดาห์สูงกว่า 7 โดยมีสถิติ 9–1 คืออะไร",
    "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_en": "What is the average week of a game on November 12, 1989?",
    "question_th": "สัปดาห์เฉลี่ยของเกมในวันที่ 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_en": "What is the Set 5 with a Set 3 that is 25-23 and a Set 4 that is 23-25?",
    "question_th": "ชุดที่ 5 กับชุดที่ 3 คือ 25-23 และชุดที่ 4 คือ 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_en": "What is the sum of the Game with a Set 4 of 25-21 and a Set 3 of 25-23?",
    "question_th": "ผลรวมของเกมที่เซต 4 ของ 25-21 และเซต 3 ของ 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_en": "What is the Set 5 with a Game that is 59?",
    "question_th": "Set 5 กับเกมที่ 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_en": "What shows for nation when the Competition is preseason, Year less than 2011, and a Club of chivas de guadalajara?",
    "question_th": "อะไรจะแสดงให้ชาติเห็นเมื่อการแข่งขันเป็นช่วงพรีซีซั่น ต่ำกว่าปี 2011 และสโมสรชีวาส เด กัวดาลาฮารา?",
    "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_en": "What was the Result for the club universidad de guadalajara?",
    "question_th": "ผลการแข่งขันของสโมสร 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–3\"",
    "question_en": "What is the Nation with 2012 as the year, and a Competition of preseason, and a Result of w 0–3?",
    "question_th": "ประเทศอะไรโดยให้ปี 2012 เป็นปี และการแข่งขันพรีซีซั่น และผลการแข่งขัน w 0–3?",
    "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_en": "What is the average Year when the Competition was friendly, and a Club of everton?",
    "question_th": "ปีเฉลี่ยคือเท่าไรเมื่อการแข่งขันเป็นมิตรและสโมสรเอฟเวอร์ตัน?",
    "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_en": "What is the Competition when the Club was costa rica u-20?",
    "question_th": "การแข่งขันเมื่อสโมสรเป็นคอสตาริกา 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–1\"",
    "question_en": "What is the Club of mexico, Year of 2010, and a Competition of preseason, and a Result of w 0–1?",
    "question_th": "อะไรคือ Club of Mexico ปี 2010 และการแข่งขันพรีซีซั่น และผลการแข่งขัน w 0–1?",
    "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_en": "What is the lowest total when the nation is Sweden?",
    "question_th": "ยอดรวมต่ำสุดเมื่อประเทศคือสวีเดนคือเท่าใด",
    "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_en": "What is the average Total when silver is less than 1, and the rank is 15?",
    "question_th": "ผลรวมเฉลี่ยคือเท่าใดเมื่อเงินน้อยกว่า 1 และอันดับคือ 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_en": "What is the total number of Bronze when rank is 11, and the total is less than 1?",
    "question_th": "จำนวนเหรียญทองแดงทั้งหมดเมื่ออันดับที่ 11 และคะแนนรวมน้อยกว่า 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_en": "What year is the latest year that has no under director?",
    "question_th": "ปีไหนคือปีล่าสุดที่ไม่มีกรรมการสังกัด?",
    "context": "CREATE TABLE table_name_18 (year INTEGER, director VARCHAR)"
  },
  {
    "answer": "SELECT director FROM table_name_77 WHERE year = 2014 AND writer = \"yes\"",
    "question_en": "With yes under writer and in 2014, what is the director?",
    "question_th": "ด้วยใช่ภายใต้นักเขียนบท และในปี 2014 ผู้กำกับคือใคร?",
    "context": "CREATE TABLE table_name_77 (director VARCHAR, year VARCHAR, writer VARCHAR)"
  },
  {
    "answer": "SELECT writer FROM table_name_14 WHERE film = \"run\"",
    "question_en": "Who is the writer of the film Run?",
    "question_th": "ใครเป็นผู้เขียนภาพยนตร์เรื่อง 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_en": "What is the most goals made for a person with less than 208 matches and ranked lower than 12?",
    "question_th": "เป้าหมายสูงสุดสำหรับคนที่มีการแข่งขันน้อยกว่า 208 นัดและอันดับต่ำกว่า 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_en": "In what years was there a rank lower than 9, under 84 goals, and more than 158 matches?",
    "question_th": "ในปีไหนมีอันดับต่ำกว่า 9 ต่ำกว่า 84 ประตู และมากกว่า 158 นัด?",
    "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_en": "What is the HDTV status of the r-light television service?",
    "question_th": "สถานะ HDTV ของบริการโทรทัศน์ r-light คืออะไร?",
    "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_en": "Which television service has programmi per adulti 24h/24 content and no HDTV?",
    "question_th": "บริการโทรทัศน์ใดบ้างที่มีโปรแกรมสำหรับผู้ใหญ่เนื้อหา 24 ชั่วโมง 24 ชั่วโมงและไม่มี 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_en": "Which television service has a qualsiasi package/option?",
    "question_th": "บริการโทรทัศน์ใดที่มีแพ็คเกจ/ตัวเลือกคุณสมบัติครบถ้วน?",
    "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_en": "What is the total number of wins for Darley of Ballarat FL against larger than 1055?",
    "question_th": "จำนวนชัยชนะทั้งหมดของ Darley of Ballarat FL เทียบกับมากกว่า 1,055 ครั้งเป็นเท่าใด",
    "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_en": "What is the lowest draw that has less than 4 wins, 14 losses, and against more than 1836?",
    "question_th": "เสมอต่ำสุดที่ชนะน้อยกว่า 4 แพ้ 14 และต่อมากกว่าปี 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_en": "What is the average Byes that has Ballarat FL of Sunbury against more than 1167?",
    "question_th": "Byes เฉลี่ยที่มี Ballarat FL ของ Sunbury เทียบกับมากกว่า 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_en": "What is the average draws with more than 1 win, 14 losses, and against less than 1836?",
    "question_th": "ค่าเฉลี่ยเสมอด้วยการชนะมากกว่า 1 ครั้ง แพ้ 14 ครั้ง และต่อน้อยกว่า 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_en": "What was the lowest draw from Ballarat FL of sunbury, and byes larger than 2?",
    "question_th": "อะไรคือสิ่งที่เสมอต่ำสุดจาก Ballarat FL ของ sunbury และบายมากกว่า 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_en": "Which away has apoel as the club?",
    "question_th": "ทีมเยือนมีอาโปเอลเป็นสโมสรไหน?",
    "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_en": "Which away has uefa cup as the competition, group f as the round, with espanyol as the club?",
    "question_th": "ทีมเยือนมียูฟ่าคัพเป็นรายการ กลุ่ม f เป็นรอบ โดยมีเอสปันญ่อลเป็นสโมสร?",
    "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_en": "In what location were the fatalities unknown for the Ju-52 aircraft?",
    "question_th": "ไม่ทราบผู้เสียชีวิตจากเครื่องบิน Ju-52 ในบริเวณใด",
    "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_en": "In what location was the tail number ZS-SPF?",
    "question_th": "เลขท้าย 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_en": "What was the location of the Ju-52 aircraft?",
    "question_th": "ตำแหน่งของเครื่องบิน Ju-52 อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_61 (location VARCHAR, aircraft VARCHAR)"
  },
  {
    "answer": "SELECT fatalities FROM table_name_60 WHERE tail_number = \"unknown\"",
    "question_en": "How many fatalities occurred for an unknown tail number?",
    "question_th": "มีผู้เสียชีวิตกี่รายไม่ทราบจำนวนหาง?",
    "context": "CREATE TABLE table_name_60 (fatalities VARCHAR, tail_number VARCHAR)"
  },
  {
    "answer": "SELECT tail_number FROM table_name_32 WHERE fatalities = \"3/3\"",
    "question_en": "What was the tail number with 3/3 fatalities?",
    "question_th": "มีผู้เสียชีวิต 3/3 รายเป็นจำนวนเท่าใด?",
    "context": "CREATE TABLE table_name_32 (tail_number VARCHAR, fatalities VARCHAR)"
  },
  {
    "answer": "SELECT fatalities FROM table_name_18 WHERE aircraft = \"ju-52\"",
    "question_en": "How many fatalities occurred for the Ju-52 aircraft?",
    "question_th": "เครื่องบิน Ju-52 มีผู้เสียชีวิตกี่ราย",
    "context": "CREATE TABLE table_name_18 (fatalities VARCHAR, aircraft VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_57 WHERE goal = 6",
    "question_en": "What was the score for a goal of 6?",
    "question_th": "ประตูที่ 6 ได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_57 (score VARCHAR, goal VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_43 WHERE date = \"july 17, 1999\"",
    "question_en": "Where was the match held on July 17, 1999?",
    "question_th": "นัดนี้จัดขึ้นที่ไหนเมื่อวันที่ 17 กรกฎาคม พ.ศ. 2542?",
    "context": "CREATE TABLE table_name_43 (venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT democratic_ticket FROM table_name_70 WHERE office = \"attorney general\"",
    "question_en": "Who was on the Democratic ticket for the Office of Attorney General?",
    "question_th": "ใครอยู่ในตั๋วประชาธิปไตยสำหรับสำนักงานอัยการสูงสุด?",
    "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_en": "What name has gen et sp nov as the novelty?",
    "question_th": "ชื่ออะไร gen et sp nov เป็นความแปลกใหม่?",
    "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_en": "What authors have clarno formation as the unit, actinidia oregonensis as the name?",
    "question_th": "ผู้เขียนคนใดมีรูปแบบ clarno เป็นหน่วย actinidia oregonensis เป็นชื่อ?",
    "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_en": "What novelty has USA as the location, and coryloides as the name?",
    "question_th": "สหรัฐอเมริกาเป็นสถานที่แปลกใหม่อะไรและมีคอรีลอยด์เป็นชื่อ?",
    "context": "CREATE TABLE table_name_70 (novelty VARCHAR, location VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_78 WHERE name = \"paleopanax\"",
    "question_en": "What status has paleopanax as the name?",
    "question_th": "ชื่อ Paleopanax มีสถานะอะไรบ้าง?",
    "context": "CREATE TABLE table_name_78 (status VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT unit FROM table_name_51 WHERE novelty = \"gen et sp nov\"",
    "question_en": "What unit has gen et sp nov as the novelty?",
    "question_th": "หน่วยใดมี gen et sp nov เป็นสิ่งแปลกใหม่?",
    "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_en": "Which date was the Memorial Tournament held on, when Payne Stewart was runner-up?",
    "question_th": "การแข่งขัน Memorial Tournament จัดขึ้นวันที่ใด เมื่อ Payne Stewart ได้รับรางวัลรองชนะเลิศ",
    "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_en": "What is the 2007-08 result when the event was Colonial Square?",
    "question_th": "ผลการแข่งขันในปี 2550-51 คืออะไรเมื่อเหตุการณ์คือ Colonial Square?",
    "context": "CREATE TABLE table_name_74 (event VARCHAR)"
  },
  {
    "answer": "SELECT 2008 AS _09 FROM table_name_58 WHERE event = \"masters\"",
    "question_en": "What is the 2008-09 result has Masters as the event?",
    "question_th": "ผลการแข่งขันปี 2008-09 มีการแข่งขัน Masters อย่างไร?",
    "context": "CREATE TABLE table_name_58 (event VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_name_66 WHERE result = \"nominated\" AND series = \"room 222\"",
    "question_en": "What year gave a nominated result for the room 222 series?",
    "question_th": "ปีใดให้ผลการเสนอชื่อเข้าชิงห้อง 222 ซีรีส์?",
    "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_en": "What was actor Teresa Graves's series before the year 1993?",
    "question_th": "ซีรีส์ของนักแสดงเทเรซา เกรฟส์ ก่อนปี 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_en": "Which motor's quantity was more than 8, and a class of bs 1915?",
    "question_th": "ปริมาณของมอเตอร์ใดที่มากกว่า 8 และคลาส 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_en": "Which motor's class was bs 1910?",
    "question_th": "มอเตอร์รุ่นใดคือ 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_en": "What is the quantity when the seats number was 16 and the class was kss 1913?",
    "question_th": "จำนวนที่นั่งคือ 16 ที่นั่ง และชั้นเรียนคือ 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_en": "What is the Root of All Evil with an Original air date that is september 3, 2008?",
    "question_th": "อะไรคือ Root of All Evil ที่มีกำหนดออกอากาศดั้งเดิมคือวันที่ 3 กันยายน 2551",
    "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_en": "Goals Conceded (GC) that has a Draw (PE) larger than 2, and a Goals Scored (GF) larger than 19?",
    "question_th": "เสียประตู (GC) ที่เสมอ (PE) มากกว่า 2 และประตูที่ทำได้ (GF) มากกว่า 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_en": "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?",
    "question_th": "หมายเลขของมหาวิทยาลัยดับลินที่มีคณะกรรมการวัฒนธรรมและการศึกษา 5 คน และคณะกรรมการอุตสาหกรรมและการพาณิชย์ที่มีน้อยกว่า 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_en": "Which Rank has a Losing Semi- finalist larger than 1, and a Winner smaller than 5?",
    "question_th": "อันดับใดที่มีผู้แพ้เข้ารอบรองชนะเลิศมากกว่า 1 คน และผู้ชนะน้อยกว่า 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_en": "Which Rank has a Country of costa rica, and a Losing Semi- finalist larger than 1?",
    "question_th": "อันดับใดที่มีประเทศคอสตาริกา และผู้แพ้รอบรองชนะเลิศมากกว่า 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_en": "Which Rank has a Runner -up smaller than 0?",
    "question_th": "อันดับใดที่มีรองชนะเลิศน้อยกว่า 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–5\"",
    "question_en": "What Year was the United States the country for aug 3–5?",
    "question_th": "สหรัฐอเมริกาเป็นประเทศในช่วงวันที่ 3-5 สิงหาคม ปีใด",
    "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–5\"",
    "question_en": "What is the highest Purse for aug 3–5?",
    "question_th": "กระเป๋าเงินสูงสุดสำหรับวันที่ 3-5 ส.ค. คืออะไร?",
    "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_en": "Which country has a qualsiasi tranne sky hd package/option?",
    "question_th": "ประเทศใดมีแพ็คเกจ/ตัวเลือก qualsiasi trann sky hd?",
    "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_en": "Which package/option has sky wwe 24/7 television service?",
    "question_th": "แพ็คเกจ/ตัวเลือกใดที่มีบริการโทรทัศน์ sky wwe 24/7?",
    "context": "CREATE TABLE table_name_99 (package_option VARCHAR, television_service VARCHAR)"
  },
  {
    "answer": "SELECT package_option FROM table_name_53 WHERE content = \"calcio\"",
    "question_en": "What is the package/option for the calcio content?",
    "question_th": "แพ็คเกจ/ตัวเลือกสำหรับเนื้อหาแคลซิโอคืออะไร?",
    "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_en": "What is the language of the television service cartello promozionale sky hd?",
    "question_th": "ภาษาของบริการโทรทัศน์ cartello promozonale 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_en": "What kind of bike had a grid less than 23, an accident under time, and Graeme Gowland as a rider?",
    "question_th": "จักรยานประเภทไหนที่มีกริดน้อยกว่า 23 เกิดอุบัติเหตุเกินเวลา และมี Graeme Gowland ในฐานะนักบิด?",
    "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_en": "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?",
    "question_th": "ใครคือนักบิดที่มีเวลามากกว่า 5 รอบบนกริดที่ใหญ่กว่า 29 บน Honda CBR600RR และเวลาที่ +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_en": "Who was the rider with a grid of 36?",
    "question_th": "ใครคือนักบิดที่มีตาราง 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_en": "Which bike had a grid less than 35 and time at 37:58.607?",
    "question_th": "จักรยานคันใดมีกริดน้อยกว่า 35 และเวลาที่ 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ć category:articles with hcards\" AND original_title = \"sarajevski atentat\"",
    "question_en": "What is Result, when Director is Veljko Bulajić category:articles with hcards, and when Original title is Sarajevski Atentat?",
    "question_th": "ผลลัพธ์คืออะไร เมื่อผู้อำนวยการอยู่ในหมวดหมู่ Veljko Bulajić:บทความที่มี hcard และเมื่อชื่อต้นฉบับคือ 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ć category:articles with hcards\"",
    "question_en": "What is Result, when Director is Mirza Idrizović category:articles with hcards?",
    "question_th": "ผลลัพธ์คืออะไร เมื่อผู้อำนวยการอยู่ในหมวดหมู่ Mirza Idrizović: บทความที่มี 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_en": "What is Original title, when Film title used in nomination is Train Without A Timetable?",
    "question_th": "ชื่อดั้งเดิมคืออะไร เมื่อชื่อภาพยนตร์ที่ใช้ในการเสนอชื่อคือ 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ć category:articles with hcards\" AND film_title_used_in_nomination = \"train without a timetable\"",
    "question_en": "What is Original title, when Director is Veljko Bulajić category:articles with hcards, and when Film title used in nomination is Train Without A Timetable?",
    "question_th": "ชื่อดั้งเดิมคืออะไร เมื่อผู้กำกับอยู่ในหมวดหมู่ Veljko Bulajić: บทความที่มี hcard และเมื่อชื่อภาพยนตร์ที่ใช้ในการเสนอชื่อเป็น 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_en": "What is Film title used in nomination, when Year (Ceremony) is 1968 (41st)?",
    "question_th": "ชื่อภาพยนตร์ที่ใช้ในการเสนอชื่อคืออะไร เมื่อปี (พิธี) คือ 1968 (41)?",
    "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_en": "What is Director, when Result is nominee, and when Year (Ceremony) is 1969 (42nd)?",
    "question_th": "ผู้อำนวยการคืออะไร เมื่อผลลัพธ์ได้รับการเสนอชื่อ และเมื่อใด ปี (พิธีการ) คือ 1969 (ครั้งที่ 42)?",
    "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_en": "Which name's height in centimeters is 178 when its weight in kilograms is less than 91?",
    "question_th": "ชื่อใดมีส่วนสูงเป็นเซนติเมตรคือ 178 และน้ำหนักเป็นกิโลกรัมน้อยกว่า 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–48\"",
    "question_en": "What is the name of the player with the High points when there was a Record of 31–48?",
    "question_th": "ผู้เล่นที่มีคะแนนสูงสุดชื่ออะไรเมื่อมีสถิติ 31–48?",
    "context": "CREATE TABLE table_name_66 (high_points VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_name_25 WHERE score = \"l 108–114 (ot)\"",
    "question_en": "What is the name of the player with the High rebounds when there was a Score of l 108–114 (ot)?",
    "question_th": "ผู้เล่นที่รีบาวด์สูงตอนมีคะแนน l 108–114 (ot) ชื่ออะไร?",
    "context": "CREATE TABLE table_name_25 (high_rebounds VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT lead FROM table_name_87 WHERE season = \"1999–00\"",
    "question_en": "What is the Lead for the 1999–00 season?",
    "question_th": "ผู้นำในฤดูกาล 1999–00 คืออะไร?",
    "context": "CREATE TABLE table_name_87 (lead VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT second FROM table_name_91 WHERE third = \"don walchuk\"",
    "question_en": "What is the Second when the third is don walchuk?",
    "question_th": "ครั้งที่สองคืออะไร ในเมื่อครั้งที่สามคือดอน วัลชุก?",
    "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_en": "What is the Season when the Lead was don bartlett, and the third was don walchuk, and a Second of carter rycroft?",
    "question_th": "ซีซั่นคืออะไรเมื่อหัวหน้าคือดอน บาร์ตเล็ตต์ และคนที่สามคือดอน วอลชุก และวินาทีของคาร์เตอร์ ไรครอฟต์",
    "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_en": "What is the Skip when the Third was john morris?",
    "question_th": "อะไรคือ Skip ในตอนที่ Third คือ 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–04\"",
    "question_en": "What is the Third when the Lead was don bartlett, the Second was carter rycroft, and a Season of 2003–04?",
    "question_th": "อะไรคือสิ่งที่สามเมื่อผู้นำคือดอน บาร์ตเล็ตต์ คนที่สองคือคาร์เตอร์ ไรครอฟต์ และฤดูกาลปี 2546–04",
    "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–13\"",
    "question_en": "What is the Lead when the Second was marc kennedy, in the 2012–13 season?",
    "question_th": "ผู้นำคืออะไรเมื่อคนที่สองคือมาร์ค เคนเนดี้ ในฤดูกาล 2012–13?",
    "context": "CREATE TABLE table_name_66 (lead VARCHAR, second VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_97 WHERE capacity = \"41,311\"",
    "question_en": "What is the name of the city with a capacity of 41,311?",
    "question_th": "เมืองที่มีความจุ 41,311 ชื่อเมืองอะไร?",
    "context": "CREATE TABLE table_name_97 (city VARCHAR, capacity VARCHAR)"
  },
  {
    "answer": "SELECT state FROM table_name_37 WHERE city = \"suwon\"",
    "question_en": "What is the State with Suwon as the city",
    "question_th": "รัฐอะไรมีซูวอนเป็นเมือง",
    "context": "CREATE TABLE table_name_37 (state VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT state FROM table_name_43 WHERE home_venue = \"suwon sports complex\"",
    "question_en": "What is the State with a home venue of suwon sports complex?",
    "question_th": "รัฐที่มีสถานที่จัดงานซูวอนสปอร์ตคอมเพล็กซ์คืออะไร?",
    "context": "CREATE TABLE table_name_43 (state VARCHAR, home_venue VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_11 WHERE city = \"chungju\"",
    "question_en": "What is the team name for Chungju?",
    "question_th": "ชื่อทีมของชองจูคืออะไร?",
    "context": "CREATE TABLE table_name_11 (team VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_96 WHERE home_venue = \"anyang stadium\"",
    "question_en": "What is the Team with a venue of Anyang Stadium?",
    "question_th": "ทีมใดที่มีสนามอันยาง สเตเดี้ยม?",
    "context": "CREATE TABLE table_name_96 (team VARCHAR, home_venue VARCHAR)"
  },
  {
    "answer": "SELECT state FROM table_name_10 WHERE team = \"gwangju fc\"",
    "question_en": "What is the State with Gwangju Fc as the team?",
    "question_th": "รัฐอะไรที่มีกวางจู เอฟซี เป็นทีม?",
    "context": "CREATE TABLE table_name_10 (state VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_72 WHERE player = \"loren roberts\"",
    "question_en": "What is the To par, when the Player is Loren Roberts?",
    "question_th": "To par คืออะไร เมื่อผู้เล่นคือ 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_en": "What is the To par, when the Score is 68-71-69=208?",
    "question_th": "พาร์ To คืออะไร เมื่อสกอร์คือ 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_en": "What is the Place, when the Score is 68-70-71=209?",
    "question_th": "สถานที่คืออะไร เมื่อคะแนนเป็น 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_en": "What is the Place, when the Player is Chris Dimarco?",
    "question_th": "สถานที่คืออะไรเมื่อผู้เล่นคือ 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_en": "What is the Score, when the Country is United States, when the Place is T3, and when the Player is Chris Riley?",
    "question_th": "คะแนนคืออะไร เมื่อประเทศคือสหรัฐอเมริกา เมื่ออันดับคือ T3 และเมื่อผู้เล่นคือ 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_en": "What is the score where the opponent was Mardy Fish?",
    "question_th": "คะแนนที่คู่ต่อสู้คือ Mardy Fish คืออะไร?",
    "context": "CREATE TABLE table_name_68 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_36 WHERE score = \"6–4, 6–3\" AND date = \"4 may 1992\"",
    "question_en": "What surface was played on with a score of 6–4, 6–3 and on 4 May 1992?",
    "question_th": "เล่นบนพื้นผิวใดด้วยคะแนน 6–4, 6–3 และในวันที่ 4 พฤษภาคม พ.ศ. 2535?",
    "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_en": "What is the name of the tournament played 13 November 2000?",
    "question_th": "ทัวร์นาเมนต์ที่เล่นเมื่อวันที่ 13 พฤศจิกายน พ.ศ. 2543 มีชื่อว่าอะไร?",
    "context": "CREATE TABLE table_name_35 (tournament VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_21 WHERE date = \"12 february 2001\"",
    "question_en": "Which tournament was played on 12 February 2001?",
    "question_th": "ทัวร์นาเมนต์ใดที่เล่นในวันที่ 12 กุมภาพันธ์ พ.ศ. 2544?",
    "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_en": "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?",
    "question_th": "หมายเลขรอบเฉลี่ยที่มีตัวรับกว้างในตำแหน่งและมหาวิทยาลัยคลาร์กเป็นวิทยาลัยและหมายเลขเลือกมากกว่า 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_en": "Which team had a year entering the league under 2009, located in Bath?",
    "question_th": "ทีมใดได้เข้าสู่ลีกในปี 2009 ซึ่งตั้งอยู่ที่เมืองบาธ?",
    "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_en": "What is the year of entry for the University of Essex?",
    "question_th": "มหาวิทยาลัย 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_en": "What is the 2013-2014 division for the Wolverhampton Wildcats?",
    "question_th": "วูล์ฟแฮมป์ตัน ไวลด์แคทส์ ฤดูกาล 2013-2014 คืออะไร?",
    "context": "CREATE TABLE table_name_60 (team VARCHAR)"
  },
  {
    "answer": "SELECT MIN(draws) FROM table_name_16 WHERE against = 1261",
    "question_en": "What is the least amount of draws with an against of 1261?",
    "question_th": "จำนวนเสมอน้อยที่สุดโดยต่อ 1261 คือเท่าไร?",
    "context": "CREATE TABLE table_name_16 (draws INTEGER, against VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_24 WHERE album = \"cover version v\"",
    "question_en": "What label shows an Album of cover version v?",
    "question_th": "ป้ายไหนแสดงอัลบั้มปกเวอร์ชั่น v?",
    "context": "CREATE TABLE table_name_24 (label VARCHAR, album VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_26 WHERE album = \"cover version vi\"",
    "question_en": "What is the Label when the album shows cover version vi?",
    "question_th": "ป้ายกำกับเมื่ออัลบั้มแสดงปกเวอร์ชัน 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_en": "What is the name of the Covered Song when the Album shows cover version iii?",
    "question_th": "เพลงคัฟเวอร์ชื่ออะไรเมื่ออัลบั้มแสดงเพลงคัฟเวอร์เวอร์ชั่น 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_en": "What is the sum of Week when there were 67,968 people in attendance?",
    "question_th": "ผลรวมของสัปดาห์ที่มีผู้เข้าร่วม 67,968 คนเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_66 (week INTEGER, attendance VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(week) FROM table_name_77 WHERE result = \"l 31–28\"",
    "question_en": "What is the Week number with a result of l 31–28?",
    "question_th": "หมายเลขสัปดาห์ซึ่งมีผลลัพท์เป็น l 31–28 คืออะไร",
    "context": "CREATE TABLE table_name_77 (week VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_37 WHERE tie_no = \"1\"",
    "question_en": "What was the score at the Tie no. 1 game?",
    "question_th": "คะแนนที่เสมอกันคือเท่าไร 1 เกม?",
    "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_en": "What was the attendance at the West Ham United home game?",
    "question_th": "การมีส่วนร่วมในเกมเหย้าของเวสต์แฮมยูไนเต็ดเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_69 (attendance VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT sport FROM table_name_9 WHERE name = \"gustav larsson\"",
    "question_en": "What is the Sport with a Name that is gustav larsson?",
    "question_th": "กีฬาที่มีชื่อว่า กุสตาฟ ลาร์สสัน คืออะไร?",
    "context": "CREATE TABLE table_name_9 (sport VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_15 WHERE event = \"men's time trial\"",
    "question_en": "What is the Name with an Event that is men's time trial?",
    "question_th": "ชื่อกิจกรรมที่เป็นไทม์ไทรอัลของผู้ชายคืออะไร?",
    "context": "CREATE TABLE table_name_15 (name VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_78 WHERE date = \"15 november 2010\"",
    "question_en": "At which venue did the event held on 15 November 2010 occur?",
    "question_th": "งานวันที่ 15 พฤศจิกายน 2553 จัดขึ้น ณ สถานที่ใด?",
    "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_en": "Which Points has a Performer of rob burke band and a Draw larger than 1?",
    "question_th": "คะแนนใดที่มีนักแสดงของวง rob burke และเสมอมากกว่า 1",
    "context": "CREATE TABLE table_name_32 (points INTEGER, performer VARCHAR, draw VARCHAR)"
  },
  {
    "answer": "SELECT MIN(points) FROM table_name_87 WHERE performer = \"seán monaghan\" AND draw < 7",
    "question_en": "Which Points have a Performer of seán monaghan and a Draw smaller than 7?",
    "question_th": "คะแนนใดที่มีนักแสดงของ seán monaghan และเสมอน้อยกว่า 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_en": "Which Points has a Performer of rob burke band?",
    "question_th": "วงไหนมีนักแสดงวง rob burke บ้างคะ?",
    "context": "CREATE TABLE table_name_7 (points VARCHAR, performer VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_8 WHERE wins = \"28\"",
    "question_en": "What is the Finish of 28 Wins?",
    "question_th": "การชนะ 28 ครั้งคืออะไร?",
    "context": "CREATE TABLE table_name_8 (finish VARCHAR, wins VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_41 WHERE wins = \"reno bighorns\"",
    "question_en": "What is the Finish of the Reno Bighorns Wins?",
    "question_th": "การสิ้นสุดของ Reno Bighorns คืออะไร?",
    "context": "CREATE TABLE table_name_41 (finish VARCHAR, wins VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_49 WHERE wins = \"28\"",
    "question_en": "What is the Finish of 28 Wins?",
    "question_th": "การชนะ 28 ครั้งคืออะไร?",
    "context": "CREATE TABLE table_name_49 (finish VARCHAR, wins VARCHAR)"
  },
  {
    "answer": "SELECT wins FROM table_name_95 WHERE division = \"western\" AND finish = \"4th\"",
    "question_en": "What is the Western Division of Wins with a 4th Finish?",
    "question_th": "Western Division of Wins ที่เข้าเส้นชัยเป็นครั้งที่ 4 คืออะไร?",
    "context": "CREATE TABLE table_name_95 (wins VARCHAR, division VARCHAR, finish VARCHAR)"
  },
  {
    "answer": "SELECT losses FROM table_name_56 WHERE season = \"playoffs\"",
    "question_en": "What are the losses of the playoffs season?",
    "question_th": "อะไรคือความพ่ายแพ้ของฤดูกาลรอบตัดเชือก?",
    "context": "CREATE TABLE table_name_56 (losses VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT team_1 FROM table_name_84 WHERE team_2 = \"saint louis\"",
    "question_en": "What is Team 1, when Team 2 is Saint Louis?",
    "question_th": "ทีม 1 คืออะไร ในเมื่อทีม 2 คือ เซนต์หลุยส์?",
    "context": "CREATE TABLE table_name_84 (team_1 VARCHAR, team_2 VARCHAR)"
  },
  {
    "answer": "SELECT agg FROM table_name_42 WHERE team_2 = \"mukungwa\"",
    "question_en": "What is Agg., when Team 2 is Mukungwa?",
    "question_th": "Agg. คืออะไร ในเมื่อทีม 2 คือ Mukungwa?",
    "context": "CREATE TABLE table_name_42 (agg VARCHAR, team_2 VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_35 WHERE opponent = \"torpedo moscow\"",
    "question_en": "What is the Round with an Opponent that is torpedo moscow?",
    "question_th": "รอบกับฝ่ายตรงข้ามที่เป็นตอร์ปิโดมอสโกคืออะไร?",
    "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_en": "Can you tell me the sum of Matches that has the Goals of 103, and the Rank larger than 9?",
    "question_th": "คุณช่วยบอกผลรวมของแมตช์ที่มีประตู 103 และอันดับมากกว่า 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_en": "Can you tell me the Name that has the Goals larger than 98, and the Rank of 7?",
    "question_th": "คุณช่วยบอกชื่อที่มีเป้าหมายมากกว่า 98 และอันดับ 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_en": "How many laps had a time stat of accident for the rider carmelo morales when the grid was more than 25?",
    "question_th": "คาร์เมโลมีสถิติเวลาเกิดอุบัติเหตุกี่รอบเมื่อกริดมากกว่า 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_en": "How many laps had a time of +2.987?",
    "question_th": "มีกี่รอบที่ +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_en": "Which bike had fewer than 23 laps and a grid number of 4?",
    "question_th": "จักรยานคันใดมีรอบน้อยกว่า 23 รอบและจำนวนกริดที่ 4?",
    "context": "CREATE TABLE table_name_15 (bike VARCHAR, laps VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_88 WHERE week = 14",
    "question_en": "What is the Record for week 14?",
    "question_th": "บันทึกประจำสัปดาห์ที่ 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_en": "What is the Result with an NFL Recap, played at bank of america stadium?",
    "question_th": "ผลลัพธ์ของ NFL Recap ที่เล่นที่ 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_en": "What is the Record for week 12?",
    "question_th": "บันทึกประจำสัปดาห์ที่ 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–20\"",
    "question_en": "What is the Opponent with a time of 2:05 p.m., and the results were w 26–20?",
    "question_th": "ฝ่ายตรงข้ามคืออะไรด้วยเวลา 14:05 น. และผลการแข่งขันคือ 26–20?",
    "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_en": "What is the highest Week for october 12, 2008?",
    "question_th": "สัปดาห์ที่สูงที่สุดของวันที่ 12 ตุลาคม 2551 คืออะไร?",
    "context": "CREATE TABLE table_name_67 (week INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_37 WHERE drawn = 1 AND lost = 2",
    "question_en": "Which team has 1 as the drawn, with 2 as the lost?",
    "question_th": "ทีมไหนเสมอกัน 1 ทีม แพ้ 2 ทีม?",
    "context": "CREATE TABLE table_name_37 (team VARCHAR, drawn VARCHAR, lost VARCHAR)"
  },
  {
    "answer": "SELECT SUM(drawn) FROM table_name_83 WHERE lost = 7",
    "question_en": "How many drawns have 7 for the lost?",
    "question_th": "แพ้มี 7 เสมอกันกี่ตัว?",
    "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_en": "What is the average played that has a drawn greater than 1, with an against greater than 16?",
    "question_th": "ค่าเฉลี่ยการเล่นที่เสมอมากกว่า 1 และต่อมากกว่า 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_en": "What is the sum of Maidens with a number of Matches that is 2?",
    "question_th": "ผลรวมของ Maidens กับจำนวนการแข่งขันที่เท่ากับ 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_en": "Ranking higher than 2, what Team has Player Paolo Maldini?",
    "question_th": "อันดับสูงกว่า 2 ทีมไหนมีนักเตะ เปาโล มัลดินี่ ?",
    "context": "CREATE TABLE table_name_52 (team VARCHAR, rank VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_97 WHERE rank = 2",
    "question_en": "What Country is in Rank 2?",
    "question_th": "ประเทศใดอยู่ในอันดับที่ 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_en": "What date was Leo Mainoldi (24) the leading scorer?",
    "question_th": "ลีโอ ไมโนลดี (24) เป็นผู้ทำประตูสูงสุดคือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_72 (date VARCHAR, leading_scorer VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_61 WHERE record = \"14-10\"",
    "question_en": "Who is the visitor with the 14-10 record?",
    "question_th": "ใครคือผู้มาเยือนที่มีสถิติ 14-10?",
    "context": "CREATE TABLE table_name_61 (visitor VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_32 WHERE score = \"73-82\"",
    "question_en": "What is the record of the 73-82 score?",
    "question_th": "สถิติสกอร์ 73-82 เป็นอย่างไรบ้าง?",
    "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_en": "Who is the leading scorer of the Villa De Los Barrios visitor?",
    "question_th": "ใครคือผู้ทำประตูสูงสุดของผู้มาเยือนวิลล่า เด ลอส บาร์ริออส?",
    "context": "CREATE TABLE table_name_56 (leading_scorer VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_71 WHERE record = \"14-10\"",
    "question_en": "Who is the visitor with a 14-10 record?",
    "question_th": "ใครคือผู้มาเยือนที่มีสถิติ 14-10?",
    "context": "CREATE TABLE table_name_71 (visitor VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_43 WHERE record = \"14-9\"",
    "question_en": "What is the score of the team with the 14-9 record?",
    "question_th": "ทีมที่มีสถิติ 14-9 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_43 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_61 WHERE goal = 6",
    "question_en": "What was the date of the game with 6 goals?",
    "question_th": "เกมวันที่เท่าไหร่ที่มี 6 ประตู?",
    "context": "CREATE TABLE table_name_61 (date VARCHAR, goal VARCHAR)"
  },
  {
    "answer": "SELECT MAX(goal) FROM table_name_27 WHERE venue = \"hannover\"",
    "question_en": "What was the highest number of goals for a game held at Hannover?",
    "question_th": "จำนวนประตูสูงสุดสำหรับเกมที่ฮันโนเวอร์คือเท่าไร?",
    "context": "CREATE TABLE table_name_27 (goal INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_80 WHERE goal > 12 AND venue = \"pasadena\"",
    "question_en": "What was the result of the game with more than 12 goals at Pasadena?",
    "question_th": "ผลเกมที่พาซาดีน่าเกิน 12 ประตูเป็นอย่างไร?",
    "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_en": "What round was Andre Fluellen drafted as a Defensive Tackle?",
    "question_th": "Andre Fluellen ถูกดราฟท์ให้เป็น 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_en": "After Round 5, which player was drafted for Defensive Tackle?",
    "question_th": "หลังจากรอบที่ 5 ผู้เล่นคนไหนถูกดราฟต์สำหรับ 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_en": "What was the earliest Round for Central Florida?",
    "question_th": "รอบแรกสุดสำหรับ 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_en": "What is the date of the label Dos or Die Recordings?",
    "question_th": "วันที่ออกฉลาก 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_en": "What is the label for 2002, in Germany, Catalog Dos 195?",
    "question_th": "ฉลากสำหรับปี 2002 ในเยอรมนี แคตตาล็อก 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_en": "What region has a 2002 date, and a Catalog dos 195?",
    "question_th": "ภูมิภาคใดมีวันที่ปี 2002 และแคตตาล็อก 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_en": "What is the Winners when the United States is the runner-up at st. germain golf club?",
    "question_th": "ผู้ชนะคืออะไรเมื่อสหรัฐอเมริกาเป็นรองชนะเลิศที่เซนต์ สโมสรกอล์ฟเจอร์เมน?",
    "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_en": "What is the average Year when Australia was the runner-up at victoria golf club?",
    "question_th": "ปีโดยเฉลี่ยที่ออสเตรเลียได้รองแชมป์กอล์ฟคลับวิกตอเรียคือเท่าไร?",
    "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_en": "What is the Location when France was the runner-up at club de campo?",
    "question_th": "ตำแหน่งเมื่อฝรั่งเศสเป็นรองแชมป์สโมสรเดอกัมโปคืออะไร?",
    "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_en": "What is the Location when Canada was the runner-up and Australia was the winner?",
    "question_th": "สถานที่ใดเมื่อแคนาดาเป็นรองชนะเลิศและออสเตรเลียเป็นผู้ชนะ",
    "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_en": "What is the Name of the Space Telescope Terminated on March 1993?",
    "question_th": "ชื่อของกล้องโทรทรรศน์อวกาศที่สิ้นสุดเมื่อเดือนมีนาคม พ.ศ. 2536 คืออะไร?",
    "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_en": "What is Party, when Opinion Research Centre (OPC) is 1.5%?",
    "question_th": "พรรคคืออะไร เมื่อศูนย์วิจัยความคิดเห็น (OPC) อยู่ที่ 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_en": "What is Marplan, when Gallup is 1.5%",
    "question_th": "Marplan คืออะไรเมื่อ Gallup เท่ากับ 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_en": "What is Opinion Research Centre (OPC), when Party is Conservative?",
    "question_th": "Opinion Research Center (OPC) คืออะไร เมื่อพรรคอนุรักษ์นิยม?",
    "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_en": "What is Harris, when Marplan is 1.3%",
    "question_th": "แฮร์ริสคืออะไรเมื่อ Marplan เท่ากับ 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_en": "What are the fewest points that Roger Dutton/Tony Wright have received?",
    "question_th": "อะไรคือคะแนนที่น้อยที่สุดที่ Roger Dutton/Tony Wright ได้รับ?",
    "context": "CREATE TABLE table_name_15 (points INTEGER, rider VARCHAR)"
  },
  {
    "answer": "SELECT speed FROM table_name_43 WHERE machine = \"bmw\" AND points = 6",
    "question_en": "How fast does the BMW with 6 points go?",
    "question_th": "BMW มี 6 แต้มไปได้เร็วแค่ไหน?",
    "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_en": "What is the average draw for Desi Dobreva, was it less than 6?",
    "question_th": "ค่าเฉลี่ยการจับสลากของ เดซี่ โดเบรวา คือเท่าไหร่ น้อยกว่า 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_en": "What was the first leg score for the match that had AS Police as team 2?",
    "question_th": "สกอร์เลกแรกของแมตช์ที่มี AS Police เป็นทีม 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_en": "What was the result for the Outstanding director of a musical category?",
    "question_th": "ผลลัพธ์ของผู้กำกับดีเด่นประเภทดนตรีคืออะไร?",
    "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_en": "What was the result of the Award of Drama desk award nominee Tom Hewitt.",
    "question_th": "ซึ่งผลงานของทอม ฮิววิต ผู้ได้รับการเสนอชื่อเข้าชิงรางวัล Award of Drama โต๊ะ",
    "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_en": "What year was best costume design the award category?",
    "question_th": "รางวัลการออกแบบเครื่องแต่งกายที่ดีที่สุดในประเภทรางวัลปีใด?",
    "context": "CREATE TABLE table_name_97 (year VARCHAR, category VARCHAR)"
  },
  {
    "answer": "SELECT accolade FROM table_name_61 WHERE country = \"usa\" AND year < 2009",
    "question_en": "Which accolade has USA as the country, with a year less than 2009?",
    "question_th": "รางวัลใดที่มีสหรัฐอเมริกาเป็นประเทศ โดยมีอายุน้อยกว่าปี 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_en": "How many years have an accolade of 50 best albums of the year, with #3 as the rank?",
    "question_th": "กี่ปีที่ได้รับรางวัลจาก 50 อัลบั้มที่ดีที่สุดแห่งปี โดยอันดับที่ 3 เป็นอันดับที่?",
    "context": "CREATE TABLE table_name_6 (year INTEGER, accolade VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_84 WHERE country = \"canada\"",
    "question_en": "Which rank has canada as the country?",
    "question_th": "อันดับใดที่มีแคนาดาเป็นประเทศ?",
    "context": "CREATE TABLE table_name_84 (rank VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT guest_host FROM table_name_73 WHERE episode_number = 5",
    "question_en": "What is the name of the Guest Host for Episode Number of 5?",
    "question_th": "พิธีกรรับเชิญตอนที่ 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_en": "What is the Guest Host for the episode on 8 june 2008?",
    "question_th": "พิธีกรรับเชิญในวันที่ 8 มิถุนายน 2551 คืออะไร?",
    "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_en": "What is the Musical Guest (Song performed) for the episode aired on 13 july 2008?",
    "question_th": "Musical Guest (เพลงที่แสดง) คืออะไรสำหรับตอนที่ออกอากาศวันที่ 13 กรกฎาคม 2551?",
    "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_en": "What was the score for the 2014 FIFA World Cup Qualification (UEFA)?",
    "question_th": "คะแนนสำหรับฟุตบอลโลก 2014 รอบคัดเลือก (ยูฟ่า) คือเท่าไร?",
    "context": "CREATE TABLE table_name_64 (score VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT kickoff_time FROM table_name_64 WHERE week = 11",
    "question_en": "What was the kickoff time for week 11's game?",
    "question_th": "เวลาคิกออฟสำหรับเกมสัปดาห์ที่ 11 คืออะไร?",
    "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_en": "When Mark O'meara was the senior player champion in a year greater than 1998, who was the tradition?",
    "question_th": "เมื่อมาร์ค โอเมียราเป็นแชมป์ผู้เล่นอาวุโสในปีที่มากกว่าปี 1998 ใครคือประเพณี?",
    "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_en": "Who was the tradition when Roberto Devicenzo won the U.S. Senior Open and the Senior British Open was founded in 1987?",
    "question_th": "ใครคือประเพณีเมื่อ Roberto Devicenzo คว้าแชมป์ US Senior Open และ Senior British Open ก่อตั้งขึ้นในปี 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_en": "Who won the Senior British Open when Hale Irwin (3/7) won the Senior PGA Championship?",
    "question_th": "ใครเป็นผู้ชนะรายการ Senior British Open เมื่อ Hale Irwin (3/7) คว้าแชมป์ 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_en": "When Tom Watson (5/6) won the Senior British Open who won the Senior PGA Championship?",
    "question_th": "เมื่อ Tom Watson (5/6) คว้าแชมป์ Senior British Open และคว้าแชมป์ 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_en": "Which Week has Points For larger than 19, and an Opponent of philadelphia eagles, and Points Against larger than 7?",
    "question_th": "สัปดาห์ใดมีคะแนนมากกว่า 19 คะแนนและเป็นฝ่ายตรงข้ามของนกอินทรีฟิลาเดลเฟียและมีคะแนนมากกว่า 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_en": "Which Attendance has a First Downs smaller than 26, an Opponent of los angeles rams, and Points For larger than 28?",
    "question_th": "ผู้เข้าร่วมคนใดที่มี First Downs น้อยกว่า 26 ฝ่ายตรงข้ามของ los angeles rams และคะแนนมากกว่า 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_en": "Which League Cup has a FA Cup of 5, and a Club of boston united, and a League smaller than 16?",
    "question_th": "ลีกคัพใดที่มี FA Cup 5 คน และ Club of boston united และลีกที่เล็กกว่า 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_en": "How many Total that has a FA Trophy of 0 and a Player of charlie butler?",
    "question_th": "จำนวนรวมทั้งหมดที่มี FA Trophy เป็น 0 และผู้เล่นของ 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_en": "How many  FA Trophy has a Player of mario walsh and a League larger than 17?",
    "question_th": "FA Trophy มีผู้เล่นมาริโอ วอลช์ 1 คนและลีกที่ใหญ่กว่า 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_en": "What was the score of the winning match on Oct 28, 1962?",
    "question_th": "แมตช์ชนะวันที่ 28 ต.ค. 62 ได้สกอร์เท่าไหร่?",
    "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_en": "By how many strokes did Lema beat Jack Nicklaus?",
    "question_th": "เลมาเอาชนะแจ็ค นิคลอสได้กี่จังหวะ?",
    "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_en": "Who was the runner-up on Jan 19, 1964?",
    "question_th": "รองชนะเลิศวันที่ 19 ม.ค. 64 คือใคร?",
    "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_en": "How many Rebounds did Maccabi Tel Aviv Team get after Game 6?",
    "question_th": "ทีม Maccabi Tel Aviv ได้ Rebounds กี่ครั้งหลังเกมที่ 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_en": "How many Games for the player with Rebounds from Efes Pilsen?",
    "question_th": "ผู้เล่นที่มี Rebounds จาก 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_en": "How many Games for the Player from Lietuvos Rytas Vilnius with less the 43 Rebounds?",
    "question_th": "จำนวนเกมสำหรับผู้เล่นจาก Lietuvos Rytas Vilnius ที่มี 43 รีบาวน์น้อยกว่า?",
    "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_en": "Who is The Author of zhou clarke zhang?",
    "question_th": "ผู้เขียน โจว คลาร์ก จาง คือใคร?",
    "context": "CREATE TABLE table_name_56 (name VARCHAR, authors VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_21 WHERE notes = \"primitive confuciusornithid .\"",
    "question_en": "What is the Status of primitive confuciusornithid .?",
    "question_th": "สถานะของขงจื้อดั้งเดิมคืออะไร .?",
    "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_en": "What is the name of gao chiappe meng o'connor wang cheng liu?",
    "question_th": "เกา เชียปเป้ เมิง โอคอนเนอร์ หวัง เฉิง หลิว ชื่ออะไร",
    "context": "CREATE TABLE table_name_99 (name VARCHAR, authors VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_84 WHERE name = \"zhongornis\"",
    "question_en": "Where has a Name of zhongornis?",
    "question_th": "ชื่อจงกอร์นิสอยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_84 (location VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_name_40 WHERE authors = \"zhou clarke zhang\"",
    "question_en": "Which Notes has Authors of zhou clarke zhang?",
    "question_th": "Notes ใดที่มีผู้แต่ง 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ía\" AND games < 32",
    "question_en": "What was the ranking of Beirasar Rosalía, the year they played 32 games?",
    "question_th": "เบราซาร์ โรซาเลีย ปีที่ลงเล่น 32 เกมอยู่อันดับไหน?",
    "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_en": "How many points did Antwain Barbour score in the year he played 39 games?",
    "question_th": "อันเวน บาร์เบอร์ทำคะแนนได้กี่คะแนนในปีที่เขาเล่น 39 เกม",
    "context": "CREATE TABLE table_name_12 (points INTEGER, name VARCHAR, games VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_59 WHERE name = \"paolo quinteros\"",
    "question_en": "What team was Paolo Quinteros on?",
    "question_th": "เปาโล ควินเตรอส อยู่ทีมใด?",
    "context": "CREATE TABLE table_name_59 (team VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT res FROM table_name_10 WHERE record = \"8-1 (1)\"",
    "question_en": "Was the record of 8-1 (1) a win or a loss?",
    "question_th": "สถิติ 8-1 (1) ชนะหรือแพ้?",
    "context": "CREATE TABLE table_name_10 (res VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_8 WHERE method = \"technical decision (split)\"",
    "question_en": "In what event was the technical decision (split) method used?",
    "question_th": "ในกรณีใดที่ใช้วิธีการตัดสินใจทางเทคนิค (แยก)",
    "context": "CREATE TABLE table_name_8 (event VARCHAR, method VARCHAR)"
  },
  {
    "answer": "SELECT AVG(play_offs) FROM table_name_9 WHERE fa_cup > 3",
    "question_en": "What are the average play-offs that have an FA Cup greater than 3?",
    "question_th": "เพลย์ออฟโดยเฉลี่ยที่มี FA Cup มากกว่า 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_en": "How many totals have a play-off less than 0?",
    "question_th": "มีกี่คนที่เพลย์ออฟน้อยกว่า 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_en": "Which league has an FA cup greater than 0, with a total greater than 21?",
    "question_th": "ลีกไหนมี FA Cup มากกว่า 0 และรวมมากกว่า 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_en": "What is the highest play-offs that have stevenage borough as the club, and a total greater than 21?",
    "question_th": "รอบเพลย์ออฟสูงสุดที่มีสตีเวเนจโบโรห์เป็นสโมสร และรวมมากกว่า 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_en": "What is the tournament in 2012 results that has a 2003 results of 2r and played at Wimbledon?",
    "question_th": "อะไรคือผลการแข่งขันในปี 2555 ที่มีผลการแข่งขัน 2r ในปี 2546 และเล่นที่วิมเบิลดัน?",
    "context": "CREATE TABLE table_name_6 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2012 FROM table_name_65 WHERE 2013 = \"2r\" AND tournament = \"wimbledon\"",
    "question_en": "What results in 2012 also has 2013 results of 2r and the tournament was Wimbledon?",
    "question_th": "ผลลัพธ์อะไรในปี 2012 ยังมีผลการแข่งขัน 2r ในปี 2013 และการแข่งขันคือวิมเบิลดัน?",
    "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_en": "What is the results from 2003 that has a 2012 result of 1r and a 2004 result of 2r and from the Australian Open?",
    "question_th": "อะไรคือผลลัพธ์จากปี 2003 ที่มีผลการแข่งขันปี 2012 ที่ 1r และปี 2004 ที่ 2r และจาก Australian Open?",
    "context": "CREATE TABLE table_name_67 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_25 WHERE 2003 = \"2r\" AND 2004 = \"1r\"",
    "question_en": "What is the name of the tournament that has the results of 2003 2r and 2004 1r?",
    "question_th": "ชื่อของทัวร์นาเมนต์ที่มีผลการแข่งขันในปี 2546 2r และ 2547 1r คืออะไร?",
    "context": "CREATE TABLE table_name_25 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2004 FROM table_name_72 WHERE 2013 = \"2r\"",
    "question_en": "What is the results in 2004 that has a 2013 result of 2r?",
    "question_th": "ผลลัพธ์ในปี 2547 ที่มีผลปี 2556 เป็น 2r คืออะไร?",
    "context": "CREATE TABLE table_name_72 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2003 FROM table_name_80 WHERE tournament = \"us open\"",
    "question_en": "What is the result from 2003 from the US Open?",
    "question_th": "ผลลัพธ์จากการแข่งขัน US Open ปี 2003 คืออะไร?",
    "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_en": "What is the height of the player born on June 24, 1964, with a weight over 84 kg?",
    "question_th": "นักเตะที่เกิดวันที่ 24 มิ.ย. 64 มีน้ำหนักเกิน 84 กก. คือเท่าไร?",
    "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_en": "On what date was the player from Melrose, Massachusetts born?",
    "question_th": "ผู้เล่นจากเมลโรส รัฐแมสซาชูเซตส์ เกิดวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_54 (birthdate VARCHAR, birthplace VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_34 WHERE event = \"billabong pro\"",
    "question_en": "What is Date, when Event is Billabong Pro?",
    "question_th": "วันที่เท่าไหร่เมื่อเหตุการณ์คือ 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_en": "What is Location, when Date is December 8-December 20?",
    "question_th": "Location คืออะไร คือวันที่ 8 ธันวาคม - 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_en": "What is Runner-up, when Event is Mancora Peru Classic?",
    "question_th": "รองชนะเลิศคืออะไร เมื่อกิจกรรมคือ 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_en": "What is Event, when Date is August 20-August 27?",
    "question_th": "Event คืออะไร ระหว่างวันที่ 20 สิงหาคม – 27 สิงหาคม?",
    "context": "CREATE TABLE table_name_72 (event VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_92 WHERE runner_up = \"sofía mulánovich ( per )\"",
    "question_en": "What is Date when Runner-up is Sofía Mulánovich ( per )?",
    "question_th": "วันที่รองชนะเลิศคือ Sofía Mulánovich (ต่อ) คือวันที่เท่าไหร่?",
    "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_en": "What is Country, when Event is Rip Curl Women's Pro?",
    "question_th": "ประเทศคืออะไร เมื่อกิจกรรมคือ 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_en": "What is the highest win percentage when there were 23 losses?",
    "question_th": "เปอร์เซ็นต์การชนะสูงสุดเมื่อมีการสูญเสีย 23 ครั้งคือเท่าใด",
    "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_en": "Which finish had a win percentage that was more than 0.598 and also had less than 53 wins?",
    "question_th": "การจบสกอร์ใดมีเปอร์เซ็นต์การชนะที่มากกว่า 0.598 และชนะน้อยกว่า 53 ครั้งด้วย",
    "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_en": "What is the 2007 Team with player Deshaun Foster?",
    "question_th": "ทีมปี 2007 ที่มีผู้เล่น Deshaun Foster คืออะไร?",
    "context": "CREATE TABLE table_name_30 (player VARCHAR)"
  },
  {
    "answer": "SELECT free_agent_type FROM table_name_2 WHERE player = \"bryant johnson\"",
    "question_en": "What is the Free Agent Type for player bryant johnson?",
    "question_th": "ประเภทตัวแทนอิสระสำหรับผู้เล่นไบรอันท์ จอห์นสันคืออะไร?",
    "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_en": "What is the High assists with a Date that is march 31?",
    "question_th": "High Assists ในวันที่ 31 มีนาคมคืออะไร?",
    "context": "CREATE TABLE table_name_39 (high_assists VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_93 WHERE date = \"march 12\"",
    "question_en": "What is the Score with a Date that is march 12?",
    "question_th": "คะแนนที่มีวันที่คือวันที่ 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_en": "What is the lowest silver that has a bronze greater than 1, a gold less than 2, and a total less than 2?",
    "question_th": "เงินต่ำสุดที่มีทองแดงมากกว่า 1 ทองคำน้อยกว่า 2 และรวมน้อยกว่า 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_en": "What average rank that has a silver less than 0?",
    "question_th": "อันดับเฉลี่ยใดที่มีเงินน้อยกว่า 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_en": "How many silver have 4 as the total with a bronze less than 2?",
    "question_th": "มีเงินทั้งหมดกี่เหรียญที่มี 4 เหรียญทองแดงน้อยกว่า 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_en": "How many totals have a rank greater than 4, czech Republic as the nation, and a bronze greater than 0?",
    "question_th": "มีกี่ผลรวมที่มีอันดับมากกว่า 4 สาธารณรัฐเช็กเป็นประเทศ และเหรียญทองแดงมากกว่า 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_en": "What average total has a gold greater than 0, and a silver greater than 0, with a bronze greater than 2?",
    "question_th": "ผลรวมเฉลี่ยใดที่มีทองคำมากกว่า 0 และเงินมากกว่า 0 โดยมีทองแดงมากกว่า 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_en": "Which country has an Indigenous mining production 2006 of 0?",
    "question_th": "ประเทศใดที่มีการผลิตเหมืองแร่ของชนพื้นเมืองในปี 2549 เป็น 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_en": "What is the sum of Silver when the total is less than 6, the rank is 6 and the Bulgaria is the nation?",
    "question_th": "ผลรวมของเงินเมื่อผลรวมน้อยกว่า 6 อันดับคือ 6 และบัลแกเรียคือชาติเท่าใด",
    "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_en": "What nation has a bronze of 2 with a total less than 5 and rank of 6?",
    "question_th": "ประเทศใดมีเหรียญทองแดงอยู่ที่ 2 โดยมีคะแนนรวมน้อยกว่า 5 และอันดับที่ 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_en": "What is the lowest Total for rank 3 with more than 4 gold?",
    "question_th": "คะแนนรวมต่ำสุดสำหรับอันดับ 3 ที่มีทองมากกว่า 4 ทองคืออะไร?",
    "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_en": "What is the lowest Total for Italy with less than 0 silver?",
    "question_th": "ผลรวมต่ำสุดสำหรับอิตาลีที่มีเงินน้อยกว่า 0 คือเท่าใด?",
    "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_en": "What is the Nation with less than 1 silver, and the total is 1, and bronze is less than 0?",
    "question_th": "อะไรคือชาติที่มีน้อยกว่า 1 เงินและรวมเป็น 1 และทองแดงน้อยกว่า 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_en": "What number has 2002-2003 as the season?",
    "question_th": "ฤดูกาล 2545-2546 มีหมายเลขใด",
    "context": "CREATE TABLE table_name_32 (number VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_11 WHERE season = \"2008\"",
    "question_en": "What position has 2008 as the season?",
    "question_th": "ตำแหน่งใดในฤดูกาล 2008?",
    "context": "CREATE TABLE table_name_11 (position VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_54 WHERE number = \"50\"",
    "question_en": "What name has 50 as the number?",
    "question_th": "ชื่ออะไรมีเลข 50?",
    "context": "CREATE TABLE table_name_54 (name VARCHAR, number VARCHAR)"
  },
  {
    "answer": "SELECT number FROM table_name_38 WHERE season = \"2008\"",
    "question_en": "What number has 2008 as the season?",
    "question_th": "ฤดูกาลปี 2551 มีหมายเลขใด",
    "context": "CREATE TABLE table_name_38 (number VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_5 WHERE number = \"8\"",
    "question_en": "What name has 8 as the number?",
    "question_th": "ชื่ออะไรมีเลข 8 เป็นเลข?",
    "context": "CREATE TABLE table_name_5 (name VARCHAR, number VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_16 WHERE name = \"ronjay buenafe\"",
    "question_en": "What position has ronjay buenafe as the name?",
    "question_th": "รอนเจย์ บูนาเฟ่ เป็นชื่อตำแหน่งอะไร?",
    "context": "CREATE TABLE table_name_16 (position VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT MIN(long) FROM table_name_51 WHERE yards = 26",
    "question_en": "What was the lowest long with 26 yards?",
    "question_th": "ความยาวต่ำสุด 26 หลาคือเท่าไร?",
    "context": "CREATE TABLE table_name_51 (long INTEGER, yards VARCHAR)"
  },
  {
    "answer": "SELECT MAX(avg) FROM table_name_57 WHERE fuml < 0",
    "question_en": "What was the highest average when Fuml was 0?",
    "question_th": "ค่าเฉลี่ยสูงสุดเมื่อ Fuml เป็น 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_en": "What is the highest run currently since the last title in 2010, and a season in Esiliiga larger than 10?",
    "question_th": "อะไรคือสถิติสูงสุดนับตั้งแต่คว้าแชมป์ครั้งล่าสุดในปี 2010 และฤดูกาลในเอซิลิกามากกว่า 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_en": "What is the 2012 season in Esiliiga more than 4, and more than 0 titles?",
    "question_th": "ฤดูกาล 2012 ใน Esiliiga มากกว่า 4 รายการและมากกว่า 0 รายการคืออะไร?",
    "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_en": "What 20-29 was in season 2008?",
    "question_th": "20-29 คืออะไรในฤดูกาล 2008?",
    "context": "CREATE TABLE table_name_69 (season VARCHAR)"
  },
  {
    "answer": "SELECT MIN(points) FROM table_name_33 WHERE season = \"1994\"",
    "question_en": "What were the lowest amount of points for season 1994?",
    "question_th": "คะแนนต่ำสุดในฤดูกาล 1994 คือเท่าไร?",
    "context": "CREATE TABLE table_name_33 (points INTEGER, season VARCHAR)"
  },
  {
    "answer": "SELECT 20 AS _29 FROM table_name_11 WHERE season = \"1997\"",
    "question_en": "Which 20-29 had a season of 1997?",
    "question_th": "20-29 คนไหนมีฤดูกาลปี 1997?",
    "context": "CREATE TABLE table_name_11 (season VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_27 WHERE name = \"rod paavola\"",
    "question_en": "What is the Postion, when the Name is Rod Paavola?",
    "question_th": "ตำแหน่งคืออะไรเมื่อชื่อ 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_en": "What is the total number of Jersey #, when the Position is W, and when the Birthdate is 17 October 1932?",
    "question_th": "จำนวน Jersey # ทั้งหมดคือเท่าไร เมื่อตำแหน่งคือ W และวันเกิดคือวันที่ 17 ตุลาคม 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_en": "What is the Birthplace, when the Name is Bob Mcvey?",
    "question_th": "สถานที่เกิดคืออะไร เมื่อชื่อ 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_en": "What is the Name, when the Position is W, and when the Jersey # is 11?",
    "question_th": "ชื่ออะไร เมื่อตำแหน่งคือ W และเมื่อหมายเลขเสื้อคือ 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_en": "What is the Postion, when the Club/Team is Warroad Lakers, and when the Name is Roger Christian?",
    "question_th": "ตำแหน่งคืออะไร เมื่อสโมสร/ทีมคือ Warroad Lakers และเมื่อใดมีชื่อว่า 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_en": "What home has 122-28 as the score?",
    "question_th": "บ้านไหนมีสกอร์ 122-28 บ้าง?",
    "context": "CREATE TABLE table_name_96 (home VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT ground FROM table_name_88 WHERE home = \"etobicoke kangaroos\"",
    "question_en": "What ground has etobicoke kangaroos as the home?",
    "question_th": "จิงโจ้เอโทบิโค้กเป็นบ้านของพื้นที่ใด",
    "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_en": "What time has humber college north as the ground, and toronto downtown dingos as the home?",
    "question_th": "เวลาใดที่วิทยาลัยฮัมเบอร์ทางตอนเหนือเป็นพื้นดิน และดิงโก้ในตัวเมืองโตรอนโตเป็นบ้าน?",
    "context": "CREATE TABLE table_name_58 (time VARCHAR, ground VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_57 WHERE home = \"toronto eagles\"",
    "question_en": "What score has Toronto Eagles as the home?",
    "question_th": "โตรอนโต อีเกิลส์ เป็นเจ้าบ้านได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_57 (score VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_15 WHERE away = \"high park demons\"",
    "question_en": "What date has high park demons as the away?",
    "question_th": "ไฮปาร์คปีศาจจะออกเดทวันไหน?",
    "context": "CREATE TABLE table_name_15 (date VARCHAR, away VARCHAR)"
  },
  {
    "answer": "SELECT away FROM table_name_71 WHERE home = \"toronto downtown dingos\"",
    "question_en": "What away has toronto downtown dingos as the home?",
    "question_th": "dingos ในตัวเมืองโตรอนโตมีอะไรบ้างที่เป็นบ้าน?",
    "context": "CREATE TABLE table_name_71 (away VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_71 WHERE event = \"rip curl pro search\"",
    "question_en": "Who was the winner from the Rip Curl Pro Search?",
    "question_th": "ใครคือผู้ชนะจาก 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_en": "What was the location of the tournament held in Spain?",
    "question_th": "สถานที่จัดการแข่งขันที่ประเทศสเปนคือสถานที่ใด",
    "context": "CREATE TABLE table_name_56 (location VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_23 WHERE country = \"indonesia\"",
    "question_en": "What was the date of the tournament held in Indonesia?",
    "question_th": "การแข่งขันจัดขึ้นที่ประเทศอินโดนีเซียวันที่เท่าไร?",
    "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_en": "What is the average Lost when the difference is - 3, and a Played is less than 10?",
    "question_th": "ค่าเฉลี่ยแพ้เมื่อผลต่างคือ - 3 และการเล่นน้อยกว่า 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_en": "What is the Position when the Drawn is less than 2, with a Difference of 2?",
    "question_th": "ตำแหน่งเมื่อจั่วออกมาน้อยกว่า 2 โดยมีผลต่าง 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_en": "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.",
    "question_th": "ผลรวมของ Against คืออะไร เมื่อเสมอน้อยกว่า 2 ตำแหน่งมากกว่า 8 และแพ้มากกว่า 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_en": "What is the Difference with a position of less than 3, and, 17 points.",
    "question_th": "อะไรคือความแตกต่างที่มีตำแหน่งน้อยกว่า 3 และ 17 คะแนน",
    "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_en": "What is the average Top-5, when Tournament is U.S. Open, and when Cuts Made is greater than 10?",
    "question_th": "อะไรคือค่าเฉลี่ยของอันดับท็อป 5 เมื่อทัวร์นาเมนต์เป็น US Open และเมื่อ Cuts Made มากกว่า 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_en": "What is the sum of Events, when Top-10 is 7, and when Top-5 is greater than 4?",
    "question_th": "ผลรวมของเหตุการณ์คืออะไร เมื่อ 10 อันดับแรกคือ 7 และเมื่อ 5 อันดับแรกมากกว่า 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_en": "What is the sum of Top-5, when Tournament is Totals, and when Events is greater than 86?",
    "question_th": "ผลรวมของ 5 อันดับแรก เมื่อทัวร์นาเมนต์คือผลรวม และเมื่อเหตุการณ์มากกว่า 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_en": "What is the average Top-10, when Wins is less than 0?",
    "question_th": "ค่าเฉลี่ย 10 อันดับแรกเมื่อชนะน้อยกว่า 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_en": "What is the total number of Top-25, when Events is greater than 86?",
    "question_th": "จำนวนรวมของ 25 อันดับแรกเมื่อเหตุการณ์มากกว่า 86 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_65 (top_25 VARCHAR, events INTEGER)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_68 WHERE 2008 = \"4r\"",
    "question_en": "What 2011 has 4r as the 2008?",
    "question_th": "ปี 2554 อะไรมีอันดับ 4 เท่ากับปี 2551",
    "context": "CREATE TABLE table_name_68 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2007 FROM table_name_88 WHERE tournament = \"wimbledon\"",
    "question_en": "What 2007 has wimbledon as the tournament?",
    "question_th": "ปี 2007 มีวิมเบิลดันเป็นทัวร์นาเมนต์อะไร?",
    "context": "CREATE TABLE table_name_88 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2006 FROM table_name_74 WHERE 2007 = \"1r\"",
    "question_en": "What 2006 has 1r as the 2007?",
    "question_th": "ปี 2549 ใดมี 1r เท่ากับปี 2550",
    "context": "CREATE TABLE table_name_74 (Id VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_66 WHERE 2004 = \"q2\"",
    "question_en": "What tournament has q2 as the 2004?",
    "question_th": "ทัวร์นาเมนต์ใดที่มีไตรมาสที่ 2 เท่ากับปี 2004?",
    "context": "CREATE TABLE table_name_66 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2009 FROM table_name_43 WHERE 2008 = \"grand slam tournaments\"",
    "question_en": "What 2009 has grand slam tournaments of 2008?",
    "question_th": "ปี 2009 มีการแข่งขันแกรนด์สแลมปี 2008 อะไรบ้าง?",
    "context": "CREATE TABLE table_name_43 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2006 FROM table_name_29 WHERE 2011 = \"0-0\"",
    "question_en": "What 2006 has 0-0 as the 2011?",
    "question_th": "ปี 2549 ใดมี 0-0 เท่าปี 2554",
    "context": "CREATE TABLE table_name_29 (Id VARCHAR)"
  },
  {
    "answer": "SELECT lineup FROM table_name_12 WHERE match = \"27\"",
    "question_en": "What is the Lineup from a Match that is 27?",
    "question_th": "ผู้เล่นตัวจริงจากการแข่งขันที่ 27 คืออะไร?",
    "context": "CREATE TABLE table_name_12 (lineup VARCHAR, match VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_56 WHERE name = \"orangeville\"",
    "question_en": "What is the date for Orangeville?",
    "question_th": "Orangeville วันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_56 (date VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT builder FROM table_name_16 WHERE works_number = \"2534\"",
    "question_en": "Who is the builder with a works number of 2534?",
    "question_th": "ใครคือผู้สร้างที่มีผลงานหมายเลข 2534?",
    "context": "CREATE TABLE table_name_16 (builder VARCHAR, works_number VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_49 WHERE works_number = \"809\"",
    "question_en": "Who is the name with a works number of 809?",
    "question_th": "ชื่อผลงานหมายเลข 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_en": "In early 1873, Owen sound had what works number?",
    "question_th": "ในช่วงต้นปี พ.ศ. 2416 Owen Sound มีผลงานอะไรบ้าง?",
    "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_en": "What was the name for the locomotive with a type of 2-8-0 and a number of 20?",
    "question_th": "หัวรถจักรประเภท 2-8-0 และหมายเลข 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_en": "What is the Year won for the player with a larger than 4 To par and less the 157 Total?",
    "question_th": "ปีที่ชนะสำหรับผู้เล่นที่มีค่าพาร์มากกว่า 4 ถึงพาร์และน้อยกว่าผลรวม 157 คืออะไร?",
    "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_en": "What is the Total for the Player who won after 1983 with less than 4 To par?",
    "question_th": "ผลรวมของผู้เล่นที่ชนะหลังปี 1983 โดยมีพาร์น้อยกว่า 4 พาร์คืออะไร?",
    "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_en": "What is the Total of the player who won before 1983 with a smaller than 4 To par?",
    "question_th": "ผลรวมของผู้เล่นที่ชนะก่อนปี 1983 ด้วยสกอร์พาร์น้อยกว่า 4 เป็นเท่าใด?",
    "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_en": "Which venue led to a draw?",
    "question_th": "สนามใดที่นำไปสู่การเสมอกัน?",
    "context": "CREATE TABLE table_name_93 (venue VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT MAX(stolen_ends) FROM table_name_54 WHERE skip = \"ludmila privivkova\"",
    "question_en": "What is the highest Stolen Ends when ludmila privivkova shows for skip?",
    "question_th": "อะไรคือจุดสิ้นสุดที่ถูกขโมยสูงสุดเมื่อ ludmila privivkova แสดงเพื่อข้าม?",
    "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_en": "What is the sum of Blank Ends for Denmark when less than 42 is the ends lost?",
    "question_th": "ผลรวมของ Blank Ends สำหรับเดนมาร์กเป็นเท่าใดเมื่อเสีย end น้อยกว่า 42?",
    "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_en": "What is the Blank Ends when there are less than 39 ends won and, more than 35 ends lost, and 4 stolen ends.",
    "question_th": "Blank Ends คืออะไรเมื่อมีชนะน้อยกว่า 39 จบ และเสียมากกว่า 35 จบ และถูกขโมย 4 จบ",
    "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_en": "Who was the 20 Questions section aimed at when the Interview Subject was Camille Paglia?",
    "question_th": "ส่วนคำถาม 20 ข้อมุ่งเป้าไปที่ใครเมื่อผู้ถูกสัมภาษณ์คือ Camille Paglia",
    "context": "CREATE TABLE table_name_97 (interview_subject VARCHAR)"
  },
  {
    "answer": "SELECT centerfold_model FROM table_name_32 WHERE date = \"5-95\"",
    "question_en": "Who was the Centerfold Model on 5-95?",
    "question_th": "โมเดล Centerfold รุ่น 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_en": "Who was the 20 Questions section aimed at when Cover Model was Kimberley Conrad Hefner?",
    "question_th": "ส่วนคำถาม 20 ข้อที่มุ่งเป้าไปที่ใครคือใครคือ 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_en": "Who was the Centerfold Model when the Cover Model was Julie Lynn Cialini?",
    "question_th": "ใครคือนางแบบ Centerfold เมื่อนางแบบหน้าปกคือ 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_en": "Who was the Interview Subject when the Centerfold Model was Melissa Deanne Holliday?",
    "question_th": "ใครคือผู้ถูกสัมภาษณ์เมื่อนางแบบ Centerfold คือ 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án marteen\"",
    "question_en": "Who was the 20 Questions section aimed at when Centerfold Model was Rachel Jeán Marteen?",
    "question_th": "ส่วนคำถาม 20 ข้อที่มุ่งเป้าไปที่ใครคือ Rachel Jean Marteen ซึ่งเป็นโมเดล Centerfold",
    "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_en": "What was the average Jersey # of Steve Griffith, when his Weight (kg) was less than 84?",
    "question_th": "หมายเลขเสื้อเฉลี่ยของ Steve Griffith คือเท่าไร เมื่อน้ำหนัก (กก.) ของเขาน้อยกว่า 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_en": "What was the lowest Weight (kg) for a player that had Jersey #10?",
    "question_th": "น้ำหนักต่ำสุด (กก.) สำหรับผู้เล่นที่มีเสื้อแข่งเบอร์ 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_en": "How many different Heights (cm) did Mark Fusco have, when his Jersey # was less than 16?",
    "question_th": "Mark Fusco มีความสูงต่างกันกี่ระดับ (ซม.) เมื่อหมายเลขเสื้อของเขาอายุน้อยกว่า 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_en": "What was the title of the episode that martin worth wrote the story for?",
    "question_th": "ตอนที่ Martin Worth เขียนชื่อเรื่องว่าอะไร",
    "context": "CREATE TABLE table_name_55 (title VARCHAR, story VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_65 WHERE outcome = \"runner-up\" AND score = \"4–6, 6–4, [8–10]\"",
    "question_en": "In what year was Xavier Malisse the runner-up with scores of 4–6, 6–4, [8–10]?",
    "question_th": "ซาเวียร์ มาลิสเซ รองแชมป์ด้วยคะแนน 4–6, 6–4, [8–10] ในปีใด",
    "context": "CREATE TABLE table_name_65 (year VARCHAR, outcome VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_51 WHERE score = \"4–6, 6–4, [8–10]\"",
    "question_en": "On what surface was the game played that had a score of 4–6, 6–4, [8–10]?",
    "question_th": "เกมที่เล่นโดยมีคะแนน 4–6, 6–4, [8–10] บนพื้นผิวใด",
    "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_en": "What is Caps, when Province / Club is Example, when Position is Prop, and when Player is Sam Walters?",
    "question_th": "Caps คืออะไร เมื่อจังหวัด / คลับเป็นตัวอย่าง เมื่อตำแหน่งคือ Prop และเมื่อผู้เล่นคือ 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_en": "What is Postition, when Date of Birth (Age) is Example, and when Player is Mark Spencer?",
    "question_th": "ตำแหน่งคืออะไร เมื่อวันเดือนปีเกิด (อายุ) เป็นตัวอย่าง และเมื่อใดผู้เล่นคือ 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_en": "What is Player, when Caps is Example, and when Position is Center?",
    "question_th": "Player คืออะไร เมื่อ Caps เป็นตัวอย่าง และเมื่อ Position คือ 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_en": "What is Caps, when Province / Club is DRFC, and when Position is Center?",
    "question_th": "Caps คืออะไร เมื่อ Province / Club เป็น DRFC และเมื่อ Position เป็น 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_en": "What is Position, when Caps is Example, and When Player is Shane Kelly?",
    "question_th": "ตำแหน่งคืออะไร เมื่อ Caps เป็นตัวอย่าง และเมื่อผู้เล่นคือ 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_en": "What is Position, when Province / Club is Example, when Date of Birth (Age) is Example, and when Player is Michael Elumeze?",
    "question_th": "ตำแหน่งคืออะไร เมื่อจังหวัด / สโมสรเป็นตัวอย่าง เมื่อวันเกิด (อายุ) เป็นตัวอย่าง และเมื่อผู้เล่นคือ 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_en": "What is the average number played of the team with 1 drawn and 24 against?",
    "question_th": "จำนวนเฉลี่ยที่เล่นของทีมโดยเสมอ 1 และ 24 ต่อคือเท่าไร?",
    "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_en": "What is the highest lost number of the team with less than 14 points and less than 18 played?",
    "question_th": "หมายเลขที่เสียไปมากที่สุดของทีมที่เล่นน้อยกว่า 14 แต้มและเล่นน้อยกว่า 18 คือข้อใด",
    "context": "CREATE TABLE table_name_65 (lost INTEGER, points VARCHAR, played VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_65 WHERE position = 1",
    "question_en": "Which team had 1 position?",
    "question_th": "ทีมไหนมี 1 ตำแหน่ง?",
    "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_en": "What is the lowest number of played of the team with 18 points and a position greater than 5?",
    "question_th": "จำนวนการเล่นต่ำสุดของทีมที่มี 18 แต้มและตำแหน่งมากกว่า 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_en": "What is the total number of points of the team with less than 4 drawn and an against of 34?",
    "question_th": "จำนวนคะแนนรวมของทีมที่เสมอน้อยกว่า 4 และต่อ 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_en": "What is the average number of drawn with a difference of 17 and 22 points?",
    "question_th": "ค่าเฉลี่ยจับสลากต่างกัน 17 กับ 22 แต้มคือเท่าไร?",
    "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_en": "What is the team that has forward-center as a position?",
    "question_th": "ทีมไหนมีกองหน้าในตำแหน่งเซ็นเตอร์?",
    "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_en": "What team does Kenny Smith play for?",
    "question_th": "Kenny Smith เล่นให้กับทีมใด?",
    "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_en": "What years was Lebanon the nationality?",
    "question_th": "เลบานอนมีสัญชาติกี่ปี?",
    "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_en": "Which margin of victory has cyber agent ladies as the tournament?",
    "question_th": "ชัยชนะส่วนไหนที่มีสาว ๆ ตัวแทนไซเบอร์เป็นทัวร์นาเมนต์?",
    "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_en": "What date has yani tseng as the runner (s)-up?",
    "question_th": "Yani Tseng เป็นรองชนะเลิศวันไหน?",
    "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_en": "What is the margin of victory that has masters gc ladies as the tournament?",
    "question_th": "อะไรคือส่วนต่างของชัยชนะที่มี Masters GC Ladies ในทัวร์นาเมนต์นี้?",
    "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_en": "What is the date that has yani tseng as the runner (s)-up?",
    "question_th": "Yani Tseng เป็นรองแชมป์วันที่เท่าไหร่คะ?",
    "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_en": "What is the winning score that has victory of 2 strokes for the margin, and cyber agent ladies for the tournament?",
    "question_th": "คะแนนชนะที่มีชัยชนะ 2 จังหวะสำหรับมาร์จิ้นและไซเบอร์เอเจนต์หญิงสำหรับทัวร์นาเมนต์คืออะไร?",
    "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_en": "What is the highest Poles with a win that is smaller than 0?",
    "question_th": "เสาที่สูงที่สุดที่ชนะน้อยกว่า 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_en": "What is the headphone model with a plastic construction and a prestige headphone class?",
    "question_th": "หูฟังรุ่นใดที่มีโครงสร้างพลาสติกและเป็นหูฟังระดับหรู?",
    "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_en": "What earpads does the headphone with plastic contruction and was succeeded by igrado have?",
    "question_th": "หูฟังที่มีโครงสร้างพลาสติกและสืบทอดมาจาก igrado มีแผ่นรองหูฟังแบบใด",
    "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_en": "What are the earpads of the headphone with a plastic construction, an unknown sensitivity, and was succeeded by sr325?",
    "question_th": "เอียร์แพดของหูฟังที่มีโครงสร้างพลาสติก ไม่ทราบความไวและสืบทอดต่อจาก 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_en": "What is the headphone model which was succeeded by sr325?",
    "question_th": "หูฟังรุ่นใดที่สืบทอดมาจาก 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_en": "What regulations have hudson as the winning constructor?",
    "question_th": "กฎเกณฑ์อะไรที่มีฮัดสันเป็นตัวสร้างที่ชนะ?",
    "context": "CREATE TABLE table_name_84 (regulations VARCHAR, winning_constructor VARCHAR)"
  },
  {
    "answer": "SELECT regulations FROM table_name_13 WHERE winning_drivers = \"carlos arzani\"",
    "question_en": "What regulations have carlos arzani as the winning driver?",
    "question_th": "คาร์ลอส อาร์ซานี มีกฎข้อบังคับอะไรบ้างในฐานะนักแข่งที่ชนะ?",
    "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_en": "What is the latest year that has ferrari 166 fl as the winning constructor?",
    "question_th": "ปีล่าสุดที่เฟอร์รารี 166 ชั้นเป็นคอนสตรัคเตอร์ที่ชนะคืออะไร?",
    "context": "CREATE TABLE table_name_7 (year INTEGER, winning_constructor VARCHAR)"
  },
  {
    "answer": "SELECT city_of_license FROM table_name_40 WHERE class = \"lp\"",
    "question_en": "What is the city of license that has lp as the class?",
    "question_th": "เมืองใบอนุญาตที่มี lp เป็นคลาสคืออะไร?",
    "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_en": "What is the identifier that has 50,000 watts of power?",
    "question_th": "ตัวระบุที่มีกำลังไฟ 50,000 วัตต์คืออะไร?",
    "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_en": "What RECNet has 40 watts of power and temagami as the city of license?",
    "question_th": "RECNet ใดมีกำลังไฟ 40 วัตต์และมีเทมากามิเป็นเมืองที่ได้รับใบอนุญาต",
    "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_en": "What city of license has A as a class, and cbec-fm as the identifier?",
    "question_th": "เมืองที่ได้รับใบอนุญาตใดมี A เป็นคลาส และมี cbec-fm เป็นตัวระบุ",
    "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_en": "What RECNet has elk lake as the city of license?",
    "question_th": "RECNet ใดที่มี elk lake เป็นเมืองที่ได้รับใบอนุญาต",
    "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_en": "What frequency has temagami as the city of license?",
    "question_th": "เทมากามิเป็นเมืองแห่งใบอนุญาตความถี่ใด",
    "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_en": "What is the highest Current Branch Opened, when Neighborhood is W. Portland Park?",
    "question_th": "สาขาปัจจุบันที่เปิดสูงสุดคืออะไร เมื่อย่านคือ 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_en": "What is the First Branch Opened, when Branch is Belmont Library?",
    "question_th": "สาขาแรกเปิดคือสาขาใด ในเมื่อสาขาคือ 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_en": "What is Neighborhood, when Branch is Hollywood Library?",
    "question_th": "Neighborhood คืออะไร เมื่อ Branch คือ 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_en": "What is Current Branch Opened, when Branch is Midland Library?",
    "question_th": "สาขาปัจจุบันเปิดคืออะไร เมื่อสาขาคือ 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_en": "Which player has the fewest assists and played 2 games or fewer?",
    "question_th": "ผู้เล่นคนไหนแอสซิสต์ได้น้อยที่สุดและลงเล่น 2 เกมหรือน้อยกว่านั้น?",
    "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_en": "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?",
    "question_th": "ตัวเลขทั้งหมดสำหรับเดือนมีนาคมโดยน้อยกว่า 8.77 ในเดือนมกราคม, มากกว่า 1.69 ในเดือนธันวาคม, การบวกรายเดือนเฉลี่ยน้อยกว่า 5.35 และก่อนปี 2547 เป็นเท่าใด",
    "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_en": "What is the total number for November, larger than 8.53 in February, 20.21 in March, and less than 7.9 in September?",
    "question_th": "ตัวเลขทั้งหมดในเดือนพฤศจิกายน มากกว่า 8.53 ในเดือนกุมภาพันธ์ 20.21 ในเดือนมีนาคม และน้อยกว่า 7.9 ในเดือนกันยายนคือเท่าใด",
    "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_en": "What is the sum for December that has 0.36 in July, and lager than 0.35000000000000003 in February?",
    "question_th": "ผลรวมของเดือนธันวาคมที่มี 0.36 ในเดือนกรกฎาคม และมากกว่า 0.35000000000000003 ในเดือนกุมภาพันธ์เป็นเท่าใด",
    "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_en": "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?",
    "question_th": "จำนวนรวมของเดือนกรกฎาคมที่น้อยกว่า 8.05 ในเดือนตุลาคม, มากกว่า 4.46 ในเดือนธันวาคม และมากกว่า 6.79 ในเดือนพฤศจิกายนเป็นเท่าใด",
    "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_en": "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?",
    "question_th": "ตัวเลขทั้งหมดในเดือนตุลาคมโดยน้อยกว่า 2.48 ในเดือนกันยายน หลังปี 2545 มากกว่า 1.42 ในเดือนมิถุนายน และน้อยกว่า 7.44 ในเดือนกุมภาพันธ์คือเท่าใด",
    "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_en": "What is the Catalog with a Region that is europe?",
    "question_th": "แคตตาล็อกกับภูมิภาคที่เป็นยุโรปคืออะไร?",
    "context": "CREATE TABLE table_name_56 (catalog VARCHAR, region VARCHAR)"
  },
  {
    "answer": "SELECT MAX(sfc_in_g__kn) AS ·s_ FROM table_name_12 WHERE engine_type = \"rolls-royce/snecma olympus 593\" AND sfc_in_lb__lbf·h_ < 1.195",
    "question_en": "What is the highest SFC in g/(kN*s) for Rolls-Royce/Snecma Olympus 593 engines and SFCs under 1.195 lb/(lbf*h)?",
    "question_th": "ค่า SFC สูงสุดในหน่วย g/(kN*s) สำหรับเครื่องยนต์ Rolls-Royce/Snecma Olympus 593 และ SFC ต่ำกว่า 1.195 lb/(lbf*h) คืออะไร",
    "context": "CREATE TABLE table_name_12 (sfc_in_g__kn INTEGER, engine_type VARCHAR, sfc_in_lb__lbf·h_ VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_70 WHERE week_of = \"8 may\" AND semi_finalists = \"helena suková mary pierce\" AND runner_up = \"conchita martínez patricia tarabini\"",
    "question_en": "What is Winner, when Week is 8 May, when Semi Finalists is Helena Suková Mary Pierce, and when Runner-Up is Conchita Martínez Patricia Tarabini?",
    "question_th": "ผู้ชนะคือใคร เมื่อสัปดาห์คือวันที่ 8 พฤษภาคม ผู้เข้ารอบรองชนะเลิศคือ Helena Suková Mary Pierce และเมื่อรองชนะเลิศคือ Conchita Martínez 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_en": "What is Week, when Semi Finalists is Sandrine Testud Yone Kamio?",
    "question_th": "สัปดาห์คืออะไร เมื่อผู้เข้ารอบรองชนะเลิศคือ 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_en": "In what Season was Colin Miller (TAS) the Player?",
    "question_th": "Colin Miller (TAS) เป็นผู้เล่นในฤดูกาลใด",
    "context": "CREATE TABLE table_name_34 (season VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_25 WHERE s_wicket = \"65\"",
    "question_en": "What Rank has a 65 s Wicket?",
    "question_th": "อันดับใดที่มีประตู 65 s?",
    "context": "CREATE TABLE table_name_25 (rank VARCHAR, s_wicket VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_72 WHERE opponent = \"indianapolis colts\"",
    "question_en": "Which result featured the Indianapolis Colts as opponents?",
    "question_th": "ผลการแข่งขันข้อใดทำให้ Indianapolis Colts เป็นคู่ต่อสู้?",
    "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_en": "Whose Name has a Date of reclassification of 2003-04-01 (merge into shizuoka )?",
    "question_th": "ชื่อของใครมีวันที่จัดประเภทใหม่คือ 2003-04-01 (รวมเข้ากับ ชิซูโอกะ )?",
    "context": "CREATE TABLE table_name_52 (name VARCHAR, date_of_reclassification VARCHAR)"
  },
  {
    "answer": "SELECT japanese FROM table_name_99 WHERE prefecture = \"iwate\"",
    "question_en": "WHich Japanese has a Prefecture of iwate?",
    "question_th": "คนญี่ปุ่นคนไหนมีจังหวัดอิวาเตะ?",
    "context": "CREATE TABLE table_name_99 (japanese VARCHAR, prefecture VARCHAR)"
  },
  {
    "answer": "SELECT date_of_designation FROM table_name_36 WHERE name = \"kurume\"",
    "question_en": "Which Date of designation has a Name of kurume?",
    "question_th": "วันที่กำหนดมีชื่อคุรุเมะ?",
    "context": "CREATE TABLE table_name_36 (date_of_designation VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT japanese FROM table_name_71 WHERE region = \"tōhoku\"",
    "question_en": "What kind of Japanese has a Region of tōhoku?",
    "question_th": "คนญี่ปุ่นประเภทไหนมีภูมิภาคโทโฮคุ?",
    "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_en": "WHose Name has a Region of kansai on 2012-04-01 ( core city )?",
    "question_th": "ชื่อใครมีภูมิภาคคันไซในวันที่ 2012-04-01 ( เมืองหลัก )?",
    "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_en": "What is the Position with a Birthdate that is august 17, 1980?",
    "question_th": "ตำแหน่งที่เกิดคือวันที่ 17 สิงหาคม 2523 คืออะไร?",
    "context": "CREATE TABLE table_name_92 (position VARCHAR, birthdate VARCHAR)"
  },
  {
    "answer": "SELECT capacity FROM table_name_77 WHERE colors = \"purple and white\"",
    "question_en": "Which capacity has a purple and white colors?",
    "question_th": "ความจุใดมีสีม่วงและสีขาว",
    "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_en": "How many households have a median family income of $60,400?",
    "question_th": "มีกี่ครัวเรือนที่มีรายได้เฉลี่ยของครอบครัวอยู่ที่ 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_en": "What is the average weight of the player with a height of 180 cm and plays the d position?",
    "question_th": "น้ำหนักเฉลี่ยของผู้เล่นส่วนสูง 180 ซม. และเล่นตำแหน่ง d คือเท่าใด",
    "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_en": "What was the resting potential with an AP duration of 1.0 and a median giant fiber cell type?",
    "question_th": "อะไรคือศักยภาพในการพักตัวที่มีระยะเวลา AP 1.0 และประเภทเซลล์ไฟเบอร์ขนาดยักษ์มัธยฐาน?",
    "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_ = \"−60\"",
    "question_en": "Which animal has a resting potential of −60?",
    "question_th": "สัตว์ชนิดใดมีศักยภาพในการพักตัวที่ -60",
    "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–30\"",
    "question_en": "Which animal has an AP duration of 1.0 and a conduction speed of 7–30?",
    "question_th": "สัตว์ใดมีระยะเวลา AP 1.0 และความเร็วการนำไฟฟ้า 7–30",
    "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_en": "What AP increase has an AP duration of 0.75?",
    "question_th": "AP ที่เพิ่มขึ้นใดมีระยะเวลา AP 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_en": "Which cell type has a conduction speed of 35?",
    "question_th": "เซลล์ชนิดใดมีความเร็วการนำไฟฟ้าเท่ากับ 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_en": "What was the total matches that ranked above 10?",
    "question_th": "การแข่งขันทั้งหมดที่มีอันดับสูงกว่า 10 คืออะไร?",
    "context": "CREATE TABLE table_name_9 (matches INTEGER, rank INTEGER)"
  },
  {
    "answer": "SELECT COUNT(matches) FROM table_name_81 WHERE name = \"alan shearer\"",
    "question_en": "What was the total amount of matches for Alan Shearer?",
    "question_th": "อลัน เชียร์เรอร์ ลงเล่นทั้งหมดกี่นัด?",
    "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_en": "What is the average goals for Jimmy Greaves, and matches more than 516?",
    "question_th": "เป้าหมายเฉลี่ยของ Jimmy Greaves และแมตช์มากกว่า 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_en": "What was the total number of matches for Nat Lofthouse, ranking higher than 7?",
    "question_th": "แนท ลอฟเฮ้าส์ อันดับสูงกว่า 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_en": "What is the highest rank for Nat Lofthouse, and goals more than 255?",
    "question_th": "แนท ลอฟท์เฮาส์ อันดับสูงสุดเท่าไหร่และยิงได้มากกว่า 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_en": "What is the location/state that has adelaide international raceway as the circuit?",
    "question_th": "สถานที่/รัฐที่มีสนามแข่งนานาชาติแอดิเลดเป็นสนามแข่งคือที่ไหน?",
    "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_en": "What is the Original air date for the episode with a Production code of 07-00-107?",
    "question_th": "วันที่ออกอากาศดั้งเดิมสำหรับตอนที่มีรหัสการผลิต 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_en": "What is the name of the director of the episode written by robin schwartz & robert tarlow?",
    "question_th": "ผู้กำกับตอนที่เขียนโดย 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_en": "What is the Original air date for the episode directed by lev l. spiro, with a Production code of 07-00-109?",
    "question_th": "วันที่ออกอากาศดั้งเดิมสำหรับตอนที่กำกับโดย lev l คือเมื่อใด สปิโร ด้วยรหัสการผลิต 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_en": "What is the name of the writer for the episode with an Original air date of october 9, 2000?",
    "question_th": "ชื่อคนเขียนตอนที่ออกอากาศตอนแรกวันที่ 9 ตุลาคม พ.ศ. 2543 คืออะไร?",
    "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_en": "What is the Title written by Terri Hughes & Ron Milbauer, and an Original air date of march 6, 2001?",
    "question_th": "ชื่อเรื่องที่เขียนโดย Terri Hughes และ Ron Milbauer คืออะไร และวันที่ออกอากาศครั้งแรกคือวันที่ 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_en": "What time or retired does Scott Dixon have?",
    "question_th": "Scott Dixon มีเวลาหรือเกษียณอายุเท่าไร?",
    "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_en": "Which driver has a grid bigger than 3 and a time of +62.6 secs?",
    "question_th": "ไดรเวอร์ใดที่มีเส้นตารางใหญ่กว่า 3 และเวลา +62.6 วินาที",
    "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_en": "Who drives for Newman-Haas Racing with a time of 1:51:47.260?",
    "question_th": "ใครเป็นผู้ขับ Newman-Haas Racing ด้วยเวลา 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_en": "Which driver had less than 65 laps for Sigma Autosport?",
    "question_th": "นักแข่งคนไหนทำเวลาได้น้อยกว่า 65 รอบสำหรับ 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āojí mǎlìōu shìjiè\"",
    "question_en": "Which game modes have Pinyin of chāojí mǎlìōu shìjiè?",
    "question_th": "โหมดเกมใดบ้างที่มีพินอิน chāojí mǎlìōu shìjiè",
    "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²_ = 0",
    "question_en": "What is the lowest Population (1 July 2005 est.), when Population density (per km²) is 0?",
    "question_th": "ประชากรต่ำสุดคือเท่าใด (วันที่ 1 กรกฎาคม พ.ศ. 2548) เมื่อความหนาแน่นของประชากร (ต่อกิโลเมตร²) เท่ากับ 0",
    "context": "CREATE TABLE table_name_5 (population__1_july_2005_est_ INTEGER, population_density__per_km²_ VARCHAR)"
  },
  {
    "answer": "SELECT population_density__per_km²_ FROM table_name_81 WHERE name = \"antigua and barbuda\" AND capital = \"st. john's\"",
    "question_en": "What is Population density (per km²), when Name is Antigua and Barbuda, and when Capital is St. John's?",
    "question_th": "ความหนาแน่นของประชากร (ต่อกิโลเมตร²) คือเท่าใด เมื่อชื่อคือแอนติกาและบาร์บูดา และเมื่อใดเมืองหลวงคือเซนต์จอห์น",
    "context": "CREATE TABLE table_name_81 (population_density__per_km²_ 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_en": "Who were the opponents on grass when playing with Mark Woodforde, and the outcome of winner, and a year greater than 1996?",
    "question_th": "ใครคือคู่ต่อสู้บนพื้นหญ้าเมื่อเล่นกับมาร์ค วูดฟอร์ด และผลลัพธ์ของผู้ชนะ และหนึ่งปีที่มากกว่าปี 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–6, 7–5, 6–2, 4–6, 3–6\"",
    "question_en": "Who was the partner at the Australian Open, Melbourne when the score was 2–6, 7–5, 6–2, 4–6, 3–6?",
    "question_th": "ใครคือคู่หูในรายการ Australian Open, Melbourne เมื่อสกอร์คือ 2–6, 7–5, 6–2, 4–6, 3–6",
    "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örkman\"",
    "question_en": "When playing on grass who was the opponents in a year greater than 1993, and playing with Jonas Björkman?",
    "question_th": "เมื่อเล่นบนพื้นหญ้าใครคือคู่แข่งในรอบหนึ่งปีที่มากกว่าปี 1993 และเล่นกับ Jonas Björkman?",
    "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_en": "Which league's playoffs was national semi-finals?",
    "question_th": "รอบตัดเชือกของลีกใดคือรอบรองชนะเลิศระดับประเทศ",
    "context": "CREATE TABLE table_name_51 (league VARCHAR, playoffs VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_34 WHERE icao = \"lemd\"",
    "question_en": "Which country is Lemd the ICAO of?",
    "question_th": "Lemd ICAO ของประเทศใด",
    "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_en": "Paris-Charles de Gaulle airport is in which country?",
    "question_th": "สนามบินปารีส-ชาร์ลสเดอโกลอยู่ในประเทศใด",
    "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_en": "What is the ICAO for Riyadh, Saudi Arabia?",
    "question_th": "ICAO สำหรับริยาด ซาอุดีอาระเบีย คืออะไร",
    "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_en": "What is the IATA for Benghazi, Libya?",
    "question_th": "IATA สำหรับเบงกาซี ลิเบียคืออะไร",
    "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_en": "What is the average Grid for the honda cbr1000rr, with 18 laps and a time of +1:12.884?",
    "question_th": "กริดเฉลี่ยของฮอนด้า cbr1000rr ที่ 18 รอบและเวลา +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_en": "What is the Bike with 18 laps and +41.280 as the time?",
    "question_th": "Bike กับ 18 รอบและ +41.280 ตามเวลาคืออะไร?",
    "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_en": "What is the Time when there are 18 laps, grid larger than 15, and Rider of Russell Holland?",
    "question_th": "เวลาที่จะมี 18 รอบ ตารางที่ใหญ่กว่า 15 และไรเดอร์ของรัสเซล ฮอลแลนด์คือเมื่อใด",
    "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_en": "What is the Bike with a grid more than 4 and the rider is Michel Fabrizio?",
    "question_th": "อะไรคือ Bike ที่มีกริดมากกว่า 4 และนักบิดคือ 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_en": "What was Lee Smith's highest number of goals when he made fewer than 364 appearances?",
    "question_th": "อะไรคือจำนวนประตูสูงสุดของลี สมิธเมื่อเขาลงสนามน้อยกว่า 364 นัด?",
    "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_en": "Which goals/game ratio has fewer than 201 goals and fewer than 170 appearances?",
    "question_th": "อัตราส่วนประตู/เกมใดที่ทำได้น้อยกว่า 201 ประตู และลงสนามน้อยกว่า 170 นัด?",
    "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_en": "What is the average rank of the airport with a 9.3% annual change?",
    "question_th": "อันดับเฉลี่ยของสนามบินที่มีการเปลี่ยนแปลงต่อปี 9.3% คือเท่าไร?",
    "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_en": "Where is the airport located that has a 98.9% in use capacity?",
    "question_th": "สนามบินอยู่ที่ไหนซึ่งมีความจุการใช้งาน 98.9%?",
    "context": "CREATE TABLE table_name_51 (location VARCHAR, capacity_in_use VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_19 WHERE location = \"fortaleza\"",
    "question_en": "What rank is the airport in Fortaleza?",
    "question_th": "สนามบินใน ฟอร์ตาเลซา อยู่อันดับไหน?",
    "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_en": "What is the Award name with a Team name that is cougar robotics team?",
    "question_th": "รางวัลชื่อทีมชื่อทีม Cougar Robotics คืออะไร?",
    "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_en": "What is the zan 1 that has 11 as the nor 1?",
    "question_th": "แซน 1 ที่มี 11 เป็นหรือ 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_en": "What driver has 19 as the zan 1?",
    "question_th": "คนขับคนไหนมี 19 เป็น 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_en": "What driver has 5 as the zan 2?",
    "question_th": "คนขับคนไหนมี 5 เป็น 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_en": "What is the nor 2 that has nor 1 as nor 1?",
    "question_th": "หรือ 2 ที่มีหรือ 1 เป็นหรือ 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_en": "What driver has 22 as nor 1?",
    "question_th": "ไดรเวอร์ใดมี 22 เป็นหรือ 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_en": "What Date had a Result of draw, and a Venue of lord's?",
    "question_th": "มีผลการจับสลากวันไหน และสถานที่ของลอร์ด?",
    "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_en": "What Date that had a Result of draw, with Oval as a venue?",
    "question_th": "ผลการจับสลากวันไหน โดยมีวงรีเป็นสถานที่จัดการแข่งขัน?",
    "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_en": "What is the Away captain when the Result was draw, and a Venue of lord's?",
    "question_th": "กัปตันทีมเยือนเมื่อผลการแข่งขันออกมาคืออะไร และสถานที่ของลอร์ดคืออะไร?",
    "context": "CREATE TABLE table_name_72 (away_captain VARCHAR, result VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_95 WHERE result = \"draw\"",
    "question_en": "What is the Date when the match Resulted in a draw?",
    "question_th": "วันที่ใดที่การแข่งขันมีผลเสมอกัน?",
    "context": "CREATE TABLE table_name_95 (date VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT margin_of_victory FROM table_name_6 WHERE winning_score = –10(70 - 72 - 68 - 68 = 278)",
    "question_en": "What was the margin of victory when the winning score was –10 (70-72-68-68=278)?",
    "question_th": "อะไรคือส่วนต่างของชัยชนะเมื่อคะแนนชนะคือ –10 (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_en": "When Gary Player was the runner-up, what was the margin of victory?",
    "question_th": "เมื่อแกรี่ เพลเยอร์เป็นรองแชมป์ ชัยชนะจะมีส่วนต่างเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_28 (margin_of_victory VARCHAR, runner_s__up VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_21 WHERE winning_score = –10(68 - 71 - 69 - 70 = 278)",
    "question_en": "In what tournament was the winning score –10 (68-71-69-70=278)?",
    "question_th": "คะแนนชนะในทัวร์นาเมนต์ใด –10 (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_en": "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?",
    "question_th": "จำนวนชัยชนะสูงสุดเมื่อมีการตัดมากกว่า 17 ครั้งและการออกสตาร์ทมากกว่า 25 ครั้ง และอันดับ 10 อันดับแรกน้อยกว่า 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_en": "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?",
    "question_th": "จำนวนการเริ่มต้นโดยเฉลี่ยเมื่ออันดับรายการเงินคือ 108 และอันดับใน 25 อันดับแรกมากกว่า 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_en": "What is the average number of starts when 11 cuts were made and the top 10 ranking is larger than 4?",
    "question_th": "จำนวนการออกสตาร์ทโดยเฉลี่ยเมื่อตัด 11 ครั้งและอันดับ 10 อันดับแรกมากกว่า 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_en": "What is the Name when the position is g, and weight is 190 pounds?",
    "question_th": "ชื่ออะไรเมื่อตำแหน่งเป็น g และน้ำหนัก 190 ปอนด์?",
    "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_en": "Who was the home team of the game on 2 February 2006?",
    "question_th": "ทีมเหย้าของเกมเมื่อวันที่ 2 กุมภาพันธ์ พ.ศ. 2549 คือใคร?",
    "context": "CREATE TABLE table_name_12 (home VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_35 WHERE visitor = \"warriors\"",
    "question_en": "What is the home team of the game with Warriors as the visitor team?",
    "question_th": "เจ้าบ้านเกมไหนที่มี Warriors เป็นทีมเยือน?",
    "context": "CREATE TABLE table_name_35 (home VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_83 WHERE surface = \"hard\" AND score = \"6–4, 2–6, 3–6\"",
    "question_en": "What date was the match on a hard surface with a score of 6–4, 2–6, 3–6?",
    "question_th": "การแข่งขันบนพื้นผิวแข็งเป็นวันที่ใดด้วยคะแนน 6–4, 2–6, 3–6",
    "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árez\" AND opponent_in_the_final = \"estefania craciún\"",
    "question_en": "What is the Score of the match on a clay surface with an outcome of winner, at the tournament ciudad juárez, and an Opponent in the final of estefania craciún?",
    "question_th": "คะแนนของการแข่งขันบนพื้นดินเหนียวพร้อมผลลัพธ์ของผู้ชนะในทัวร์นาเมนต์ ciudad juárez และฝ่ายตรงข้ามในรอบชิงชนะเลิศของ estefania craciún คืออะไร?",
    "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–3, 6–4\"",
    "question_en": "What is the Outcome of the match with a Score of 6–3, 6–4?",
    "question_th": "ผลลัพธ์ของการแข่งขันด้วยคะแนน 6–3, 6–4 คืออะไร?",
    "context": "CREATE TABLE table_name_2 (outcome VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_75 WHERE score = \"6–3, 6–4\"",
    "question_en": "What is the Outcome of the match with a Score of 6–3, 6–4?",
    "question_th": "ผลลัพธ์ของการแข่งขันด้วยคะแนน 6–3, 6–4 คืออะไร?",
    "context": "CREATE TABLE table_name_75 (outcome VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_21 WHERE date = \"12 september 2004\"",
    "question_en": "What is the Outcome of the match on 12 september 2004?",
    "question_th": "ผลการแข่งขันวันที่ 12 กันยายน 2547 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_21 (outcome VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_17 WHERE score = \"6–4, 2–6, 3–6\"",
    "question_en": "What was the Surface when the Score was 6–4, 2–6, 3–6?",
    "question_th": "Surface คืออะไรเมื่อคะแนนคือ 6–4, 2–6, 3–6",
    "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_en": "What was the total attendance at a game against the Pittsburgh Steelers before week 4?",
    "question_th": "ผู้เข้าชมทั้งหมดในเกมกับพิตต์สเบิร์ก สตีลเลอร์ส ก่อนสัปดาห์ที่ 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_en": "What was the date of the game held at the A venue with a result of 0-1 against the Rangers?",
    "question_th": "เกมที่จัดขึ้นที่สนาม A วันที่เท่าไหร่โดยผล 0-1 กับเรนเจอร์ส?",
    "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_en": "Who was the opponent on November 11, 2001?",
    "question_th": "คู่ต่อสู้เมื่อวันที่ 11 พฤศจิกายน พ.ศ. 2544 คือใคร?",
    "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_en": "Who was the opponent before week 5 that played on September 23, 2001?",
    "question_th": "คู่ต่อสู้ก่อนสัปดาห์ที่ 5 ที่เล่นในวันที่ 23 กันยายน พ.ศ. 2544 คือใคร",
    "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_en": "What is the frequency of the Turion 64 X2 TL-62?",
    "question_th": "ความถี่ของ 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_en": "What is the socket for Order Part Number TMDTL68HAX5DM?",
    "question_th": "ซ็อกเก็ตสำหรับหมายเลขคำสั่งซื้อ 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_en": "What is the multiplier 1 for chips with a frequency of 1800MHz?",
    "question_th": "ตัวคูณ 1 สำหรับชิปที่มีความถี่ 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_en": "What is the socket type for the processor with a multiplier 1 of 11.5x?",
    "question_th": "ซ็อกเก็ตประเภทใดสำหรับโปรเซสเซอร์ที่มีตัวคูณ 1 ถึง 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_en": "What is the highest sample size administered on October 18?",
    "question_th": "ขนาดตัวอย่างสูงสุดที่จัดการในวันที่ 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_en": "What is the percentage for Mel Martinez when the sample size is 800?",
    "question_th": "เปอร์เซ็นต์ของเมล มาร์ติเนซ เมื่อขนาดตัวอย่างคือ 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_en": "How many games were played by the Scottish Wanderers where less than 5 Points were scored?",
    "question_th": "ทีมสกอตติช วันเดอเรอร์สเล่นไปกี่เกมโดยมีคะแนนน้อยกว่า 5 แต้ม?",
    "context": "CREATE TABLE table_name_21 (played INTEGER, team VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT SUM(played) FROM table_name_34 WHERE points = 15",
    "question_en": "How many games were played where exactly 15 points were scored?",
    "question_th": "มีกี่เกมที่เล่นโดยได้คะแนน 15 แต้มพอดี?",
    "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_en": "What LINER class has a W.A. of 0-6-0st with a 2 No. Built?",
    "question_th": "คลาส LINER ใดที่มี WA 0-6-0st พร้อมหมายเลข 2 ที่สร้างขึ้น",
    "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_en": "What is the pick number for Peter Moore of the Montreal Alouettes?",
    "question_th": "หมายเลขเลือกของ Peter Moore จาก 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_en": "What CFL team did Kelly Bates play for?",
    "question_th": "Kelly Bates เล่นให้กับทีม CFL ใด",
    "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_en": "How many average total matches have a swansea win less than 3, fa cup as the competition, with a draw less than 0?",
    "question_th": "เฉลี่ยแล้วมีกี่แมตช์ที่สวอนซีชนะน้อยกว่า 3 เอฟเอคัพ โดยเสมอน้อยกว่า 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_en": "How many cardiff wins have a draw greater than 27?",
    "question_th": "คาร์ดิฟฟ์ชนะกี่ครั้งแล้วเสมอมากกว่า 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_en": "How many average total matches have league cup as the competition, with a draw greater than 0?",
    "question_th": "โดยเฉลี่ยมีแมตช์ลีกคัพเป็นการแข่งขันทั้งหมดกี่นัด โดยเสมอมากกว่า 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_en": "What is the number of tries for when the try bonus is 0?",
    "question_th": "จำนวนครั้งในการลองเมื่อโบนัสการลองเป็น 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_en": "How many points is there when the lost is 6 and the try bonus is 9?",
    "question_th": "เมื่อแพ้ได้ 6 และโบนัสลองได้ 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_en": "How many pints does the Cambrian Welfare RFC have?",
    "question_th": "Cambrian Welfare RFC มีกี่ไพนต์?",
    "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_en": "When the try bonus is 9 and the lost 4, what is the drawn?",
    "question_th": "เมื่อโบนัสลองเป็น 9 และ 4 ที่แพ้ จะมีการสุ่มออกมาเป็นเท่าใด?",
    "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_en": "Club Clwb Rygbi Cymru Caerdydd RFC has how many points?",
    "question_th": "Club Clwb Rygbi Cymru Caerdydd RFC มีกี่แต้ม?",
    "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_en": "What is the highest Rank with a density less than 376.37, the province was valverde, and an Area larger than 823?",
    "question_th": "อันดับสูงสุดที่มีความหนาแน่นน้อยกว่า 376.37 คืออะไร จังหวัดคือ Valverde และพื้นที่ใหญ่กว่า 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_en": "What is the highest Density for the independencia province, with an area smaller than 2,007.4?",
    "question_th": "ข้อใดคือความหนาแน่นสูงสุดสำหรับจังหวัดอินดิเพนเดนเซีย โดยมีพื้นที่น้อยกว่า 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_en": "Which 2nd leg has pamesa valencia for team #2?",
    "question_th": "เลก 2 ไหนมี พาเมซ่า บาเลนเซีย ให้กับทีม #2?",
    "context": "CREATE TABLE table_name_52 (team__number2 VARCHAR)"
  },
  {
    "answer": "SELECT team__number1 FROM table_name_97 WHERE team__number2 = \"unics kazan\"",
    "question_en": "What is the team #1 that has unics kazan for team #2?",
    "question_th": "ทีม #1 มียูนิคคาซานเป็นทีม #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_en": "What is the 1st leg that has akasvayu girona as team #2?",
    "question_th": "เลกแรกที่มี Akasvayu Girona เป็นทีม #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_en": "Which Wins has a Tournament of totals, and a Cuts made larger than 42?",
    "question_th": "การชนะครั้งใดที่มีทัวร์นาเมนต์รวม และการตัดที่มากกว่า 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_en": "Which Top-10 has a Cuts made larger than 42?",
    "question_th": "Top-10 ใดที่มีการ Cuts ที่มากกว่า 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_en": "Which Wins has a Top-5 of 6?",
    "question_th": "ชัยชนะใดมี 5 อันดับแรกจาก 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_en": "Which Cuts made has a Top-25 smaller than 3?",
    "question_th": "Cuts ใดที่มี Top-25 น้อยกว่า 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_en": "Which Top-10 has a Cuts made of 10, and a Top-5 larger than 1?",
    "question_th": "Top-10 ใดที่มีการตัดทอนจาก 10 และ Top-5 ที่ใหญ่กว่า 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_en": "Concerning protestantism by country, the ranking is out of how many total?",
    "question_th": "ส่วนเรื่องโปรเตสแตนต์แบ่งตามประเทศ อันดับมีทั้งหมดกี่อันดับ?",
    "context": "CREATE TABLE table_name_62 (out_of VARCHAR, source VARCHAR)"
  },
  {
    "answer": "SELECT MIN(rank) FROM table_name_67 WHERE name = \"protestants population\"",
    "question_en": "What is the lowest rank that the protestants population holds?",
    "question_th": "ประชากรโปรเตสแตนต์มีอันดับต่ำสุดคือเท่าไร?",
    "context": "CREATE TABLE table_name_67 (rank INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT chart_positions FROM table_name_21 WHERE album_title = \"i\"",
    "question_en": "The album titled I had what chart positions?",
    "question_th": "อัลบั้มชื่อ I มีตำแหน่งชาร์ตอะไรบ้าง?",
    "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_en": "What is the title of the album that has Popup has the original label?",
    "question_th": "ชื่ออัลบั้มว่าอะไรมี Popup มีป้ายเดิมครับ?",
    "context": "CREATE TABLE table_name_25 (album_title VARCHAR, original_label VARCHAR)"
  },
  {
    "answer": "SELECT format FROM table_name_58 WHERE year < 1992",
    "question_en": "What is the format of the album with a year less than 1992?",
    "question_th": "อัลบั้มที่มีปีน้อยกว่า 1992 อยู่ในรูปแบบใด?",
    "context": "CREATE TABLE table_name_58 (format VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT chart_positions FROM table_name_1 WHERE format = \"ep\"",
    "question_en": "What chart positions did the album reach when ep was the format?",
    "question_th": "อัลบั้มไปถึงตำแหน่งใดในชาร์ตเมื่อ ep เป็นรูปแบบ?",
    "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_en": "What was the average pick with Ed O'Bannon and a round smaller than 1?",
    "question_th": "ค่าเฉลี่ยของการเลือกของ Ed O'Bannon และรอบที่น้อยกว่า 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_en": "What player was drafted for the Detroit Pistons?",
    "question_th": "ผู้เล่นคนไหนที่ถูกดราฟท์ให้ทีม 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_en": "Which Team 2 had a Team 1 of montreal impact?",
    "question_th": "ทีม 2 คนไหนมีทีม 1 จากมอนทรีออลอิมแพ็ค?",
    "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_en": "Which Team 2 had a Team 1of joe public?",
    "question_th": "ทีม 2 คนไหนมีทีม 1 ของ 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_en": "Which team 1 had a Team 2 of hankook verdes?",
    "question_th": "ทีมใด 1 มีทีม 2 ของ 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_en": "What is the first leg score when team 2 is Wagad Mogadishu?",
    "question_th": "คะแนนเลกแรกเมื่อทีมที่ 2 คือ วากัด โมกาดิชู คืออะไร?",
    "context": "CREATE TABLE table_name_61 (team_2 VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_77 WHERE name = \"anas cheuen\"",
    "question_en": "What is the Status with a Name that is anas cheuen?",
    "question_th": "สถานะที่มีชื่อคืออานัสชื่นคืออะไร?",
    "context": "CREATE TABLE table_name_77 (status VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT unit FROM table_name_58 WHERE name = \"anas cheuen\"",
    "question_en": "What is the Unit with a Name that is anas cheuen?",
    "question_th": "ยูนิตที่มีชื่อว่า อนัส ชื่น คืออะไร?",
    "context": "CREATE TABLE table_name_58 (unit VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_83 WHERE score = \"31-6\"",
    "question_en": "What team was the Opponent when the Score was 31-6?",
    "question_th": "ทีมใดเป็นฝ่ายตรงข้ามเมื่อสกอร์เป็น 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_en": "What is the Score when the record was 9-3-0?",
    "question_th": "สกอร์เมื่อสถิติเป็น 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_en": "What is the away team where the home team is Coventry City?",
    "question_th": "ทีมเยือนทีมเจ้าบ้านคือโคเวนทรีซิตี้?",
    "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_en": "What is the score where the away team is Exeter City?",
    "question_th": "ทีมเยือน เอ็กเซเตอร์ ซิตี้ สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_20 (score VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT tie_no FROM table_name_97 WHERE away_team = \"walsall\"",
    "question_en": "How many ties does Walsall have?",
    "question_th": "วอลซอลล์มีความสัมพันธ์กันกี่ครั้ง?",
    "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_en": "Where Bolton Wanderers is the home team, who is the away team?",
    "question_th": "โบลตัน วันเดอเรอร์ส เจ้าบ้านอยู่ไหน ทีมเยือนคือใคร?",
    "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_en": "How many ties are there where attendance is 11,997?",
    "question_th": "มีกี่ความสัมพันธ์ที่มีผู้เข้าร่วม 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_en": "Where the away team is Bradford City, who is the home team?",
    "question_th": "ทีมเยือนอยู่ไหน แบรดฟอร์ด ซิตี้ เจ้าบ้านใคร?",
    "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_en": "For which school/club team did the player in the position of Guard/Forward play?",
    "question_th": "ผู้เล่นในตำแหน่งการ์ด/กองหน้าให้กับทีมโรงเรียน/สโมสรใด",
    "context": "CREATE TABLE table_name_35 (school_club_team VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT acquisition_via FROM table_name_26 WHERE position = \"center\"",
    "question_en": "How was the player in the position of Center acquired?",
    "question_th": "ผู้เล่นในตำแหน่งเซ็นเตอร์ได้มาอย่างไร?",
    "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_en": "In what season did Omar Thomas play, with a jersey number larger than 15?",
    "question_th": "โอมาร์ โธมัส เล่นในฤดูกาลใด โดยหมายเลขเสื้อมากกว่า 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_en": "How many total players came from the school/club team of De La Salle?",
    "question_th": "มีผู้เล่นทั้งหมดกี่คนที่มาจากทีมโรงเรียน/สโมสรของเดอลาซาล?",
    "context": "CREATE TABLE table_name_62 (number VARCHAR, school_club_team VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_67 WHERE position = \"guard/forward\"",
    "question_en": "Which player is in the position of Guard/Forward?",
    "question_th": "นักเตะคนไหนในตำแหน่ง 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_en": "What is the most wins associated with under 4 events with 0 top-5s?",
    "question_th": "อะไรคือชัยชนะมากที่สุดที่เกี่ยวข้องกับการแข่งขันต่ำกว่า 4 รายการโดยมี 0 อันดับแรก?",
    "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_en": "What is the average number of events having 1 top-10, fewer than 4 cuts made, and 0 wins?",
    "question_th": "จำนวนเหตุการณ์โดยเฉลี่ยที่มี 1 ใน 10 อันดับแรก ตัดน้อยกว่า 4 ครั้ง และชนะ 0 ครั้งคือเท่าใด",
    "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_en": "What is the average number of wins for events larger than 28?",
    "question_th": "จำนวนชัยชนะโดยเฉลี่ยสำหรับกิจกรรมที่มากกว่า 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_en": "What is the sum of top-25s for events with more than 1 top-5?",
    "question_th": "ผลรวมของ 25 อันดับแรกสำหรับกิจกรรมที่มี 5 อันดับแรกมากกว่า 1 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_71 (top_25 INTEGER, top_5 INTEGER)"
  },
  {
    "answer": "SELECT producer FROM table_name_57 WHERE title = \"city sharks\"",
    "question_en": "Who is the producer of city sharks?",
    "question_th": "ใครคือผู้ผลิตฉลามเมือง?",
    "context": "CREATE TABLE table_name_57 (producer VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_65 WHERE producer = \"2003\"",
    "question_en": "What is the title of the film when the producer was 2003?",
    "question_th": "ชื่อของภาพยนตร์เรื่องนี้เมื่อโปรดิวเซอร์คือปี 2003 คืออะไร?",
    "context": "CREATE TABLE table_name_65 (title VARCHAR, producer VARCHAR)"
  },
  {
    "answer": "SELECT director FROM table_name_27 WHERE title = \"2003\"",
    "question_en": "Who is the director when the title is 2003?",
    "question_th": "ใครคือผู้กำกับเมื่อชื่อปี 2546?",
    "context": "CREATE TABLE table_name_27 (director VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT production_cost FROM table_name_63 WHERE producer = \"raintree pictures\"",
    "question_en": "What is the production cost when the producer is raintree pictures?",
    "question_th": "ต้นทุนการผลิตเมื่อผู้ผลิตเป็นรูปภาพ Raintree คืออะไร?",
    "context": "CREATE TABLE table_name_63 (production_cost VARCHAR, producer VARCHAR)"
  },
  {
    "answer": "SELECT MIN(attendance) FROM table_name_50 WHERE week = 15",
    "question_en": "What was the lowest attendance at a week 15 game?",
    "question_th": "ผู้เข้าร่วมน้อยที่สุดในเกมสัปดาห์ที่ 15 คืออะไร?",
    "context": "CREATE TABLE table_name_50 (attendance INTEGER, week VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_84 WHERE record = \"38-18\"",
    "question_en": "What is the Score for the game with a record of 38-18?",
    "question_th": "สกอร์เกมด้วยสถิติ 38-18 เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_84 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_24 WHERE score = \"8-2\"",
    "question_en": "What team was the opponent when the score was 8-2?",
    "question_th": "คู่ต่อสู้คือทีมใดเมื่อสกอร์ 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_en": "What is the Location when the opponent shows vs. ole miss, and a Loss of mckean (4-1)?",
    "question_th": "ตำแหน่งใดเมื่อฝ่ายตรงข้ามแสดง vs. ole miss และแพ้ 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_en": "What is the name of the Opponent when there is a Record of 39-19?",
    "question_th": "ฝ่ายตรงข้ามชื่ออะไรเมื่อมีสถิติ 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_en": "What is the Record on may 24, with a Loss of hayes (2-1)?",
    "question_th": "บันทึกประจำวันที่ 24 พฤษภาคม แพ้เฮย์ส (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_en": "What is the Location when the Opponent shows vs. #23 south carolina?",
    "question_th": "ตำแหน่งที่ฝ่ายตรงข้ามแสดง vs. #23 เซาท์แคโรไลนา คืออะไร?",
    "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_en": "What is that if the weight for the play born on June 2, 1983?",
    "question_th": "จะเป็นอย่างไรถ้าน้ำหนักของการเล่นเกิดวันที่ 2 มิถุนายน พ.ศ. 2526?",
    "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_en": "What was the highest weight in kg for F Position, Jersey #12?",
    "question_th": "น้ำหนักสูงสุดในหน่วยกิโลกรัมสำหรับตำแหน่ง F, 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_en": "Which player is the NHL right, who was born in Downers Grove, Illinois?",
    "question_th": "ผู้เล่นคนไหนที่เป็นสิทธิของ NHL ซึ่งเกิดที่ Downers Grove รัฐอิลลินอยส์",
    "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_en": "Which coding's variant id is abd'1a 3?",
    "question_th": "รหัสตัวแปรของการเข้ารหัสใดคือ abd'1a 3",
    "context": "CREATE TABLE table_name_48 (coding VARCHAR, variant_id VARCHAR)"
  },
  {
    "answer": "SELECT 5 AS ’utr_splice FROM table_name_70 WHERE coding = \"1a 2\" AND variant_id = \"abd'1a 2\"",
    "question_en": "Which 5'utr splice's coding is 1a 2, when the Variant id is abd'1a 2?",
    "question_th": "การเข้ารหัสของรอยต่อ 5'utr ใดคือ 1a 2 เมื่อรหัสตัวแปรคือ 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_en": "Which genbank id's variant is abd1a?",
    "question_th": "ตัวแปรของ genbank id ใดคือ 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_en": "What year did Orlando have a School/Club team in Clemson?",
    "question_th": "ออร์แลนโดมีทีมโรงเรียน/สโมสรในเคลมสันในปีใด",
    "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_en": "What years did the player in Orlando play that is from the United States, and is part of the school/club team Clemson?",
    "question_th": "ผู้เล่นในออร์แลนโดเล่นโดยมาจากสหรัฐอเมริกาและเป็นส่วนหนึ่งของทีมโรงเรียน/สโมสรเคลมสันกี่ปี",
    "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_en": "Who is the player for the School/Club team in Georgia?",
    "question_th": "ใครคือผู้เล่นของทีมโรงเรียน/สโมสรในจอร์เจีย?",
    "context": "CREATE TABLE table_name_73 (player VARCHAR, school_club_team VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_28 WHERE player = \"pat garrity\"",
    "question_en": "What was the nationality of the player Pat Garrity?",
    "question_th": "ผู้เล่น 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_en": "What is the nationality of the School/Club team of Louisville?",
    "question_th": "ทีมงานโรงเรียน/สโมสรของลุยส์วิลล์มีสัญชาติอะไร",
    "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_en": "How many features did Adam Carroll win 6 times when the start was larger than 32?",
    "question_th": "Adam Carroll ชนะ 6 ฟีเจอร์กี่ครั้งเมื่อออกสตาร์ทมากกว่า 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_en": "What is the lowest feature with 2 wins and 2 sprints?",
    "question_th": "ฟีเจอร์ต่ำสุดที่มีการชนะ 2 ครั้งและการวิ่ง 2 ครั้งคืออะไร?",
    "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_en": "How many sprints on average had 10 wins and less than 5 features?",
    "question_th": "โดยเฉลี่ยแล้วสปรินต์กี่ครั้งที่ชนะ 10 ครั้งและมีฟีเจอร์น้อยกว่า 5 อย่าง?",
    "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_en": "Which country has a lane greater than 6 and a mark of 6.63?",
    "question_th": "ประเทศใดมีช่องทางมากกว่า 6 และมีเครื่องหมาย 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_en": "What is the lowest lane for Nigeria, with a react less than 0.133?",
    "question_th": "เลนต่ำสุดสำหรับไนจีเรียโดยมีค่าตอบสนองน้อยกว่า 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_en": "What is the mark for Kim Collins?",
    "question_th": "เครื่องหมายของคิมคอลลินส์คืออะไร?",
    "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_en": "Which country had 1 Bronze, 1 Silver, with a total of 3 medals?",
    "question_th": "ประเทศใดมี 1 เหรียญทองแดง 1 เหรียญเงิน รวม 3 เหรียญ?",
    "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_en": "Which country had more than 2 silvers and less than 4 golds?",
    "question_th": "ประเทศใดมีมากกว่า 2 เหรียญเงินและน้อยกว่า 4 เหรียญทอง?",
    "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_en": "What's the average bronze with a total number of medals being 1, with more than 0 silvers?",
    "question_th": "เหรียญทองแดงโดยเฉลี่ยโดยมีจำนวนเหรียญทั้งหมดเท่ากับ 1 เหรียญเงินมากกว่า 0 เหรียญคือเท่าใด",
    "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_en": "In the 2005 season, how many races did the 15th place team complete?",
    "question_th": "ในฤดูกาล 2548 ทีมอันดับที่ 15 จบการแข่งขันไปกี่รายการ?",
    "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_en": "Which team completed 10 races?",
    "question_th": "ทีมไหนเข้าเส้นชัยครบ 10 สนาม?",
    "context": "CREATE TABLE table_name_92 (team_name VARCHAR, races VARCHAR)"
  },
  {
    "answer": "SELECT pba_team FROM table_name_35 WHERE pick = 4",
    "question_en": "What is the PBA team with a Pick that is 4?",
    "question_th": "ทีม PBA ที่มีค่า Pick เท่ากับ 4 คืออะไร?",
    "context": "CREATE TABLE table_name_35 (pba_team VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_15 WHERE pick = 6",
    "question_en": "What is the Player with a Pick that is 6?",
    "question_th": "ผู้เล่นที่มีตัวเลือกคือ 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_en": "How many totals have 1 gold and a rank smaller than 2?",
    "question_th": "มีทั้งหมดกี่เหรียญทองและมีอันดับน้อยกว่า 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_en": "How much gold did South Korea get?",
    "question_th": "เกาหลีใต้ได้ทองไปเท่าไหร่?",
    "context": "CREATE TABLE table_name_49 (gold INTEGER, nation VARCHAR)"
  },
  {
    "answer": "SELECT MAX(SLM) AS number FROM table_name_26 WHERE built > 1895",
    "question_en": "What locomotive built after 1895 has the highest SLM number?",
    "question_th": "หัวรถจักรใดที่สร้างขึ้นหลังปี พ.ศ. 2438 มีหมายเลข SLM สูงสุด",
    "context": "CREATE TABLE table_name_26 (SLM INTEGER, built INTEGER)"
  },
  {
    "answer": "SELECT type FROM table_name_46 WHERE built = 1923",
    "question_en": "Which type of locomotive was built in 1923?",
    "question_th": "หัวรถจักรประเภทใดที่ถูกสร้างขึ้นในปี พ.ศ. 2466?",
    "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_en": "When the United Kingdom had a time of 1:30.51.2, what was the lowest that they ranked?",
    "question_th": "เมื่อสหราชอาณาจักรทำเวลาได้ 1:30.51.2 คะแนนต่ำสุดที่พวกเขาจัดอันดับคือเท่าใด",
    "context": "CREATE TABLE table_name_8 (place INTEGER, country VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_7 WHERE speed = \"98.09mph\"",
    "question_en": "What County scored with a speed of 98.09mph?",
    "question_th": "มณฑลใดทำคะแนนได้ด้วยความเร็ว 98.09 ไมล์ต่อชั่วโมง?",
    "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_en": "What is Set 4, when Date is Jun 27, and when Set 3 is 17-25?",
    "question_th": "ชุดที่ 4 คืออะไร วันที่คือ 27 มิ.ย. และชุดที่ 3 คือ 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_en": "What is Score, when Set 3 is 17-25?",
    "question_th": "Score คืออะไร เมื่อ Set 3 คือ 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_en": "What is Set 5, when Date is Jun 26, and when Set 2 is 25-22?",
    "question_th": "Set 5 คืออะไร เมื่อ Date คือ 26 มิ.ย. และ Set 2 คือ 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_en": "What is Set 1, when Set 3 is 22-25?",
    "question_th": "Set 1 คืออะไร เมื่อ Set 3 คือ 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_en": "What is Set 1, when Date is Jun 26, and when Set 4 is 26-24?",
    "question_th": "ชุดที่ 1 คืออะไร เมื่อเป็นวันที่ 26 มิ.ย. และชุดที่ 4 คือ 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_en": "What is Set 4, when Set 5 is NA, and when Set 3 is 19-25?",
    "question_th": "ชุดที่ 4 คืออะไร เมื่อชุดที่ 5 เป็น NA และเมื่อชุดที่ 3 คือ 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_en": "What is the Team when the match was in buenos aires , argentina?",
    "question_th": "แมตช์นี้ที่บัวโนสไอเรส ประเทศอาร์เจนตินา จะเป็นทีมอะไร?",
    "context": "CREATE TABLE table_name_60 (team VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_61 WHERE team = \"seve ballesteros & manuel piñero\"",
    "question_en": "What is the Location when the team was seve ballesteros & manuel piñero?",
    "question_th": "สถานที่เมื่อครั้งทีมมี 7 บัลเลสเตรอสและมานูเอล ปิเญโรคือที่ไหน?",
    "context": "CREATE TABLE table_name_61 (location VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_23 WHERE individual = \"josé maria cañizares\"",
    "question_en": "What is the Location when the individual was josé maria cañizares?",
    "question_th": "สถานที่เมื่อบุคคลนั้นคือ José maria cañizares คืออะไร?",
    "context": "CREATE TABLE table_name_23 (location VARCHAR, individual VARCHAR)"
  },
  {
    "answer": "SELECT MAX(year) FROM table_name_59 WHERE team = \"seve ballesteros & manuel piñero\"",
    "question_en": "What is the highest Year when the team was seve ballesteros & manuel piñero?",
    "question_th": "ปีสูงสุดเมื่อทีมคือ เซเว บาเลสเตรอส และ มานูเอล ปิเญโร คือปีใด?",
    "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_en": "What is the total number of acres at Sai Tso Wan, opening before 1978?",
    "question_th": "Sai Tso Wan เปิดก่อนปี พ.ศ. 2521 มีทั้งหมดกี่เอเคอร์?",
    "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_en": "Which Rank has a Goals smaller than 76, and a Matches larger than 270?",
    "question_th": "อันดับใดมีเป้าหมายที่น้อยกว่า 76 และแมตช์ที่มากกว่า 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–2003\" AND goals < 104",
    "question_en": "Which Matches have a Rank smaller than 5, a Years of 1995–2003, and a Goals smaller than 104?",
    "question_th": "นัดใดมีอันดับน้อยกว่า 5, ปี 1995–2003 และประตูน้อยกว่า 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_en": "Which Goals have a Name of lee dong-gook?",
    "question_th": "โกลคนไหนมีชื่ออีดงกุก?",
    "context": "CREATE TABLE table_name_17 (goals INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT AVG(rank) FROM table_name_82 WHERE years = \"1998–present\"",
    "question_en": "Which Rank has a Years of 1998–present?",
    "question_th": "อันดับใดที่มีปี 2541-ปัจจุบัน?",
    "context": "CREATE TABLE table_name_82 (rank INTEGER, years VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(matches) FROM table_name_94 WHERE rank = 2",
    "question_en": "Which Matches have a Rank of 2?",
    "question_th": "การแข่งขันใดมีอันดับ 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_en": "What Position was achieved in the World Championships Competition in Tokyo, Japan?",
    "question_th": "ตำแหน่งใดที่ประสบความสำเร็จในการแข่งขันชิงแชมป์โลกที่กรุงโตเกียว ประเทศญี่ปุ่น",
    "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_en": "Which Competition was 1st Position with 57.03 in Notes?",
    "question_th": "การแข่งขันใดที่ได้อันดับที่ 1 ด้วยคะแนน 57.03 ใน 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_en": "What is the earliest Year for 400m h Event with 54.86 in Notes?",
    "question_th": "ปีแรกสุดสำหรับเหตุการณ์ 400m ชั่วโมงโดยมีค่า 54.86 ใน 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_en": "What is the total number of appearances for players from Chaux-de-Fonds with places over 8?",
    "question_th": "จำนวนการลงสนามของผู้เล่นจาก Chaux-de-Fonds ที่มากกว่า 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_en": "What is the highest week of the game on November 9, 1997?",
    "question_th": "สัปดาห์สูงสุดของเกมในวันที่ 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_en": "Which Proto-Austronesian has a Proto-Oceanic of *lima?",
    "question_th": "ออสโตรนีเชียนดั้งเดิมชนิดใดที่มีมหาสมุทรดั้งเดิมเป็น *ลิมา",
    "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_en": "Which Proto-Oceanic has a Proto-Polynesian of *lima?",
    "question_th": "Proto-Oceanic ใดมี Proto-Polynesian ของ *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_en": "Which Number has a Proto-Polynesian of *taha?",
    "question_th": "หมายเลขใดมีภาษาโพลีนีเซียนดั้งเดิมเป็น *taha",
    "context": "CREATE TABLE table_name_71 (number VARCHAR, proto_polynesian VARCHAR)"
  },
  {
    "answer": "SELECT proto_polynesian FROM table_name_69 WHERE number = \"five\"",
    "question_en": "WHich Proto-Polynesian has a Number of five?",
    "question_th": "Proto-Polynesian ใดมีจำนวนห้า?",
    "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_en": "Which Proto-Polynesian has a Proto-Malayo-Polynesian of *telu?",
    "question_th": "ภาษาโปรโต-โพลีนีเซียนใดมีภาษามาลาโย-โพลีนีเซียนดั้งเดิมเป็น *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_en": "Which  Proto-Oceanic has a Proto-Polynesian of *lima?",
    "question_th": "Proto-Oceanic ใดมี Proto-Polynesian ของ *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_en": "How many countries in 2009 have fewer than 1 in 1999, more than 0 in 2006 and none in 1997?",
    "question_th": "มีกี่ประเทศในปี 2552 ที่มีน้อยกว่า 1 ในปี 2542 มากกว่า 0 ในปี 2549 และไม่มีเลยในปี 2540",
    "context": "CREATE TABLE table_name_49 (Id VARCHAR)"
  },
  {
    "answer": "SELECT MAX(2006) FROM table_name_16 WHERE 2002 < 0",
    "question_en": "How much is the highest number in 2006 with fewer than 0 in 2002?",
    "question_th": "ตัวเลขสูงสุดในปี 2549 โดยน้อยกว่า 0 ในปี 2545 คือเท่าใด",
    "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_en": "How many are there in 2003 that have 0 in 2001, more than 0 in 2009 and fewer than 0 in 1999?",
    "question_th": "มีกี่คนในปี 2546 ที่มี 0 ในปี 2544 มากกว่า 0 ในปี 2552 และน้อยกว่า 0 ในปี 2542",
    "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_en": "Which country has more than 0 in 2012 and 2009, 0 in 2008 and more than 0 in 2004?",
    "question_th": "ประเทศใดมีมากกว่า 0 ในปี 2555 และ 2552, 0 ในปี 2551 และมากกว่า 0 ในปี 2547",
    "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_en": "Which % GDP has an Expenditure larger than 50.9, and a Year larger than 2009, and an Income of 39.3?",
    "question_th": "% GDP ใดที่มีรายจ่ายมากกว่า 50.9 และหนึ่งปีมากกว่าปี 2552 และมีรายได้ 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_en": "Which Year has an Expenditure smaller than 41.3, and a % GDP of x, and an Income larger than 34.4?",
    "question_th": "ปีใดที่มีรายจ่ายน้อยกว่า 41.3 และมี % GDP เท่ากับ x และมีรายได้มากกว่า 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_en": "Which Surplus(Deficit) has an Expenditure larger than 45.8, and a Year smaller than 2011, and a % GDP of (0.9%)?",
    "question_th": "ส่วนเกิน (ขาดดุล) ใดที่มีรายจ่ายมากกว่า 45.8 และหนึ่งปีน้อยกว่าปี 2554 และมี % GDP เท่ากับ (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_en": "Which Year has an Expenditure of 55, and an Income smaller than 36.2?",
    "question_th": "ปีใดมีรายจ่าย 55 และรายได้น้อยกว่า 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_en": "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)?",
    "question_th": "GDP ใดที่มีปีที่น้อยกว่าปี 2554 และรายจ่ายมากกว่า 41.3 และรายได้น้อยกว่า 48 และมีส่วนเกิน (ขาดดุล) ที่ (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_en": "What year was the Grand Prix Passing Shot Bordeaux that had Runners-up of Diego Nargiso?",
    "question_th": "กรังด์ปรีซ์พาสซิ่งช็อตบอร์กโดซ์ที่มีรองแชมป์ดิเอโก นาร์กิโซคือปีใด",
    "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–7, 6–4, 6–4\"",
    "question_en": "What tournament had a score of 5–7, 6–4, 6–4?",
    "question_th": "ทัวร์นาเมนต์ใดมีคะแนน 5–7, 6–4, 6–4?",
    "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_en": "After 1989, what was the score of the Grand Prix Passing Shot where the Runners-up were Jeff Tarango?",
    "question_th": "หลังจากปี 1989 คะแนนของกรังด์ปรีซ์พาสซิ่งชู้ตโดยที่รองชนะเลิศคือ 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_en": "What's the name of the tournament that Gianni Ocleppo was the runner-up?",
    "question_th": "ทัวร์นาเมนต์ที่ Gianni Ocleppo เป็นรองแชมป์ชื่ออะไร?",
    "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½\" AND wins > 77",
    "question_en": "What is the lowest percentage of wins for 6½ games and more than 77 total wins?",
    "question_th": "เปอร์เซ็นต์ต่ำสุดของการชนะสำหรับ 6½ เกมและการชนะทั้งหมดมากกว่า 77 ครั้งคือเท่าใด",
    "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_en": "What is the score of the competition on November 10?",
    "question_th": "ผลการแข่งขันวันที่ 10 พฤศจิกายน เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_90 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_95 WHERE record = \"2-1\"",
    "question_en": "Who is the visitor when the record is 2-1?",
    "question_th": "ใครคือผู้มาเยือนเมื่อสถิติเป็น 2-1?",
    "context": "CREATE TABLE table_name_95 (visitor VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_56 WHERE score = \"81-80\"",
    "question_en": "Who is the home team when the score is 81-80?",
    "question_th": "เจ้าบ้านเมื่อสกอร์ 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_en": "How many Gold medals did Japan receive who had a Total of more than 1 medals?",
    "question_th": "ญี่ปุ่นได้เหรียญทองกี่เหรียญและมียอดรวมมากกว่า 1 เหรียญ?",
    "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_en": "What time (cst) has and NFL recap of recap with october 19, 2008 as the date?",
    "question_th": "กี่โมง (cst) และสรุป NFL โดยวันที่ 19 ตุลาคม 2551 เป็นวันที่",
    "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_en": "Which week has giants stadium as the game site?",
    "question_th": "สัปดาห์ไหนที่มีสนามยักษ์เป็นสถานที่เล่นเกม?",
    "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_en": "What is the lowest week that has 7:15 p.m. as the time (cst) and fedexfield as the game site?",
    "question_th": "สัปดาห์ใดคือสัปดาห์ต่ำสุดที่มีเวลา 19:15 น. (cst) และ fedexfield เป็นเว็บไซต์เกม?",
    "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_en": "What office was law preservation ticket holder William E. Barron running for?",
    "question_th": "William E. Barron ผู้ถือตั๋วอนุรักษ์กฎหมายลงสมัครรับตำแหน่งในสำนักงานใด",
    "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_en": "Who was the constitutional ticken when Charles B. Sears was the republican ticket?",
    "question_th": "ใครคือตั๋วตามรัฐธรรมนูญเมื่อ Charles B. Sears เป็นตั๋วของพรรครีพับลิกัน",
    "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_en": "Who was the constitutional ticket when william karlin was the socialist ticket?",
    "question_th": "ใครคือตั๋วตามรัฐธรรมนูญ เมื่อวิลเลียม คาร์ลินเป็นตั๋วสังคมนิยม?",
    "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_en": "What was the margin of victory on Mar 18, 1979?",
    "question_th": "อะไรคือส่วนต่างของชัยชนะในวันที่ 18 มีนาคม 2522?",
    "context": "CREATE TABLE table_name_69 (margin_of_victory VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT comp FROM table_name_42 WHERE year = \"1989\"",
    "question_en": "What is the comp for the year 1989?",
    "question_th": "คอมพ์ปี 1989 คืออะไร?",
    "context": "CREATE TABLE table_name_42 (comp VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_50 WHERE year = \"1989\"",
    "question_en": "What is the team in 1989?",
    "question_th": "ปี 1989 อยู่ทีมอะไร?",
    "context": "CREATE TABLE table_name_50 (team VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT ratt FROM table_name_72 WHERE year = \"1988\"",
    "question_en": "What is the RAtt in the year 1988?",
    "question_th": "ร.ท. ในปี 2531 คืออะไร?",
    "context": "CREATE TABLE table_name_72 (ratt VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_73 WHERE ratt = \"42\"",
    "question_en": "What was the team with a Ratt of 42?",
    "question_th": "ทีมไหนมี Ratt 42 บ้างคะ?",
    "context": "CREATE TABLE table_name_73 (team VARCHAR, ratt VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_18 WHERE ratt = \"57\"",
    "question_en": "What was the team with a ratt of 57?",
    "question_th": "ทีมไหนมีสกอร์ 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_en": "Who did the Giants play before week 7 in Tulane Stadium?",
    "question_th": "ไจแอนต์สเล่นใครก่อนสัปดาห์ที่ 7 ในสนามกีฬาทูเลน",
    "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_en": "What was the lowest attendance for week 1?",
    "question_th": "ผู้เข้าร่วมต่ำสุดในสัปดาห์ที่ 1 คือเท่าใด",
    "context": "CREATE TABLE table_name_48 (attendance INTEGER, week VARCHAR)"
  },
  {
    "answer": "SELECT MAX(rank) FROM table_name_8 WHERE country = \"ethiopia\"",
    "question_en": "What is the highest rank of a player from Ethiopia?",
    "question_th": "ผู้เล่นจากเอธิโอเปียอันดับสูงสุดคืออะไร?",
    "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_en": "How many ranks had 367 matches and more than 216 goals?",
    "question_th": "มีกี่อันดับมี 367 นัดและมากกว่า 216 ประตู?",
    "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_en": "What is the mean rank number when goals are 230 and there are more than 535?",
    "question_th": "หมายเลขอันดับเฉลี่ยเมื่อเป้าหมายคือ 230 และมีมากกว่า 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_en": "Where the audience share is 8%, what is the original airing?",
    "question_th": "โดยที่ส่วนแบ่งผู้ชมอยู่ที่ 8% ต้นฉบับออกอากาศเป็นอย่างไรบ้าง?",
    "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_en": "What episode number has an audience share of 10%?",
    "question_th": "หมายเลขตอนใดมีส่วนแบ่งผู้ชม 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_en": "What is the value for the item \"Class\" when the value of the item \"Wheels\" is 137?",
    "question_th": "มูลค่าของสินค้า \"Class\" เป็นเท่าใด เมื่อมูลค่าของสินค้า \"ล้อ\" คือ 137",
    "context": "CREATE TABLE table_name_97 (class VARCHAR, wheels VARCHAR)"
  },
  {
    "answer": "SELECT MIN(games) FROM table_name_84 WHERE team = \"fenerbahçe\"",
    "question_en": "What's the smallest number of games for the fenerbahçe team?",
    "question_th": "จำนวนเกมที่น้อยที่สุดสำหรับทีมเฟเนร์บาห์เช่คือเท่าไร?",
    "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_en": "What's the mean game number for the olympiacos team when there's less than 17 rebounds?",
    "question_th": "หมายเลขเฉลี่ยของเกมของทีมโอลิมเปียกอสเมื่อมีน้อยกว่า 17 รีบาวด์คือเท่าไร?",
    "context": "CREATE TABLE table_name_75 (games INTEGER, team VARCHAR, rebounds VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(games) FROM table_name_57 WHERE name = \"novica veličković\" AND rebounds > 24",
    "question_en": "How many games does novica veličković have when there's more than 24 rebounds?",
    "question_th": "โนวิกา เวลิคโควิช มีกี่เกมในเมื่อมีการรีบาวด์มากกว่า 24 ครั้ง?",
    "context": "CREATE TABLE table_name_57 (games VARCHAR, name VARCHAR, rebounds VARCHAR)"
  },
  {
    "answer": "SELECT league FROM table_name_64 WHERE year = \"1990/91\"",
    "question_en": "What is the League with a Year that is 1990/91?",
    "question_th": "ลีกที่มีปีคือ 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_en": "What is the ICAO for simferopol international airport?",
    "question_th": "ICAO สำหรับสนามบินนานาชาติซิมเฟโรโพลคืออะไร?",
    "context": "CREATE TABLE table_name_75 (icao VARCHAR, airport VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_70 WHERE iata = \"gzt\"",
    "question_en": "Which country has an IATA of gzt?",
    "question_th": "ประเทศใดมี IATA เท่ากับ gzt",
    "context": "CREATE TABLE table_name_70 (country VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_21 WHERE city = \"yerevan\"",
    "question_en": "What country is Yerevan located in?",
    "question_th": "เยเรวานตั้งอยู่ในประเทศใด?",
    "context": "CREATE TABLE table_name_21 (country VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT icao FROM table_name_19 WHERE iata = \"ika\"",
    "question_en": "What is the ICAO when the IATA is ika?",
    "question_th": "ICAO คืออะไร เมื่อ IATA เป็น ika?",
    "context": "CREATE TABLE table_name_19 (icao VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT icao FROM table_name_34 WHERE iata = \"ist\"",
    "question_en": "What is the ICAO when the IATA is ist?",
    "question_th": "ICAO คืออะไรเมื่อ IATA เป็น ist?",
    "context": "CREATE TABLE table_name_34 (icao VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_33 WHERE lost = 10",
    "question_en": "Which team has 10 losses?",
    "question_th": "ทีมไหนแพ้ 10 นัด?",
    "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_en": "In which yearly change was there a capacity of 78.4% and a rank smaller than 3?",
    "question_th": "การเปลี่ยนแปลงประจำปีใดที่มีความสามารถ 78.4% และอันดับน้อยกว่า 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_en": "In Which rank was there a location of porto alegre?",
    "question_th": "ปอร์โต อัลเลเกร มีสถานที่ตั้งอยู่อันดับใด?",
    "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_en": "what is the number of passengers when the capacity is 81.2%?",
    "question_th": "จำนวนผู้โดยสารเมื่อความจุ 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_en": "what is the highest amount of passengers when there is a rank of 1?",
    "question_th": "จำนวนผู้โดยสารสูงสุดเมื่อมีอันดับ 1 คือเท่าใด?",
    "context": "CREATE TABLE table_name_94 (total_passengers INTEGER, rank VARCHAR)"
  },
  {
    "answer": "SELECT MAX(week) FROM table_name_95 WHERE result = \"l 17–0\"",
    "question_en": "What was the latest Week on which the Result was l 17–0?",
    "question_th": "สัปดาห์ล่าสุดที่ผลลัพธ์คือ l 17–0 คืออะไร",
    "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_en": "What is the average cuts made at the top 25, less than 10, and at the Top 10 more than 3?",
    "question_th": "การตัดโดยเฉลี่ยที่ 25 อันดับแรก น้อยกว่า 10 และที่ 10 อันดับแรกมากกว่า 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_en": "What is average Top 10 with 0 wins?",
    "question_th": "ค่าเฉลี่ย 10 อันดับแรกที่มีการชนะ 0 ครั้งคือเท่าใด",
    "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_en": "What is the average event for the Open Championship Tournament, and a Top-5 less than 1?",
    "question_th": "เหตุการณ์โดยเฉลี่ยสำหรับ Open Championship Tournament และ Top-5 น้อยกว่า 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_en": "What is the average wins has Top-25 less than 0?",
    "question_th": "การชนะโดยเฉลี่ยที่มี Top-25 น้อยกว่า 0 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_66 (wins INTEGER, top_25 INTEGER)"
  },
  {
    "answer": "SELECT MAX(against) FROM table_name_40 WHERE byes > 0",
    "question_en": "What is the largest Against with a Byes larger than 0?",
    "question_th": "ค่า Byes ที่มีขนาดใหญ่กว่า 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_en": "Which Wins has an Against of 1940, and a Byes larger than 0?",
    "question_th": "ชัยชนะใดที่มีค่า Against of 1940 และค่า Byes มากกว่า 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_en": "Which Draws has a Wins of 10, and a Peel of south mandurah, and a Byes larger than 0?",
    "question_th": "การออกรางวัลใดที่ชนะ 10 และ Peel of south mandurah และ Byes ที่มากกว่า 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_en": "Which Against has a Draws larger than 0, a Losses smaller than 16, and a Wins smaller than 4?",
    "question_th": "ฝ่ายไหนที่เสมอมากกว่า 0, แพ้น้อยกว่า 16 และชนะน้อยกว่า 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_en": "Which Losses has an Against of 1101, and a Byes smaller than 0?",
    "question_th": "การแพ้ใดมีค่าต่อ 1101 และค่าบายน้อยกว่า 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_en": "Which Byes has a Losses smaller than 1?",
    "question_th": "Byes ใดมีการสูญเสียน้อยกว่า 1?",
    "context": "CREATE TABLE table_name_5 (byes INTEGER, losses INTEGER)"
  },
  {
    "answer": "SELECT AVG(games) FROM table_name_55 WHERE rank < 1",
    "question_en": "What is the average number of games of the player with a rank less than 1?",
    "question_th": "จำนวนเกมเฉลี่ยของผู้เล่นที่มีอันดับน้อยกว่า 1 คือเท่าไร?",
    "context": "CREATE TABLE table_name_55 (games INTEGER, rank INTEGER)"
  },
  {
    "answer": "SELECT MAX(rank) FROM table_name_24 WHERE points < 32",
    "question_en": "What is the highest rank of the player with less than 32 points?",
    "question_th": "อันดับสูงสุดของผู้เล่นที่มีคะแนนน้อยกว่า 32 คะแนนคืออะไร?",
    "context": "CREATE TABLE table_name_24 (rank INTEGER, points INTEGER)"
  },
  {
    "answer": "SELECT SUM(rank) FROM table_name_95 WHERE points < 34",
    "question_en": "What is the rank of the player with less than 34 points?",
    "question_th": "ผู้เล่นที่มีคะแนนต่ำกว่า 34 แต้มอยู่อันดับที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_95 (rank INTEGER, points INTEGER)"
  },
  {
    "answer": "SELECT fourth_district FROM table_name_72 WHERE second_district = \"bob springstead\"",
    "question_en": "Who's Fourth District has a Second District of bob springstead?",
    "question_th": "เขตที่สี่ของใครมีเขตที่สองของบ๊อบสปริงสเตด?",
    "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_en": "Who's the First District with a Fifth District of prudy adam?",
    "question_th": "ใครคือเขตที่ 1 ที่มีเขตที่ 5 ของพรูดี อดัม?",
    "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_en": "Who's the Fourth District with a First District of beverly bodem?",
    "question_th": "ใครคือเขตที่สี่ที่มีเขตแรกของเบเวอร์ลี่โบเดม?",
    "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_en": "Who's the Fourth District with a Second District of kurt van koevering?",
    "question_th": "ใครคือเขตที่สี่ที่มีเขตที่สองของเคิร์ต แวน คูเวอริง?",
    "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_en": "Who's the Fifth District with a Second District of paul leidig?",
    "question_th": "ใครคือเขตที่ห้าที่มีเขตที่สองของพอล ไลดิก?",
    "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_en": "Who's the Fourth District with a Third District of sharon yentsch?",
    "question_th": "ใครคือเขตที่สี่ที่มีเขตที่สามของชารอน เยนต์ช?",
    "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_en": "How many Sets did Gary Muller have?",
    "question_th": "Gary Muller มีกี่ฉาก?",
    "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_en": "What Player in 2005 Wimbledon had less than 5 Sets?",
    "question_th": "ผู้เล่นคนใดในปี 2005 วิมเบิลดันที่มีน้อยกว่า 5 เซ็ต?",
    "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_en": "At the 2001 Davis Cup, what Opponent had less than 50 Aces?",
    "question_th": "ในการแข่งขัน Davis Cup ปี 2001 ฝ่ายตรงข้ามคนใดมีเอซน้อยกว่า 50 เอซ",
    "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_en": "What time did Channel 4 air an episode number larger than 106 with the title of Marry Me A Little?",
    "question_th": "ช่อง 4 ออกอากาศตอนไหนมากกว่า 106 เรื่อง 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_en": "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?",
    "question_th": "จำนวนเรืออูที่จมโดยเรือดำน้ำเยอรมันน้อยกว่า 2 ลำ, เครื่องบินจม 56,328 ลำ และทุ่นระเบิดมากกว่า 8,269 ลำเป็นเท่าใด",
    "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_en": "What is the total number sunk by warship or raider with 20 German submarines lost and more than 21616 sunk by aircraft?",
    "question_th": "จำนวนทั้งหมดที่จมโดยเรือรบหรือผู้บุกรุกโดยมีเรือดำน้ำเยอรมัน 20 ลำสูญหาย และมากกว่า 21,616 ลำจมโดยเครื่องบินเป็นเท่าใด",
    "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_en": "What is the total number of German submarines lost with more than 120958 sunk by mines?",
    "question_th": "จำนวนเรือดำน้ำเยอรมันทั้งหมดที่สูญหายไปพร้อมกับทุ่นระเบิดมากกว่า 120,958 ลำเป็นจำนวนเท่าใด",
    "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_en": "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?",
    "question_th": "เดือนและปีที่น้อยกว่า 5 เรือดำน้ำเยอรมันที่สูญหาย, น้อยกว่า 6893 จมโดยเรือรบหรือผู้บุกรุก, น้อยกว่า 133746 จมโดยเครื่องบิน และมากกว่า 111263 จมโดยเรือดำน้ำ?",
    "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_en": "What is the month and year less than 106005 were sunk by aircraft and 61857 were sunk by warship or raider?",
    "question_th": "เดือนและปีที่น้อยกว่า 106,005 จมโดยเครื่องบิน และ 61,857 จมโดยเรือรบหรือผู้บุกรุก?",
    "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 = \"全羅道\"",
    "question_en": "What is the post-1986 provinces with a 全羅道 Hanja?",
    "question_th": "จังหวัดหลังปี 1986 ที่มี 全羅道 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_en": "What is the Korean dialect in the daegu capital?",
    "question_th": "ภาษาเกาหลีในเมืองหลวงแทกูคืออะไร?",
    "context": "CREATE TABLE table_name_71 (korean_dialect VARCHAR, capital VARCHAR)"
  },
  {
    "answer": "SELECT korean_dialect FROM table_name_18 WHERE rr_romaja = \"jeolla\"",
    "question_en": "What is the Korean dialect with a jeolla RR Romaja?",
    "question_th": "ภาษาเกาหลีที่มี 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_en": "What is the Hanja for the hamgyeong RR Romaja?",
    "question_th": "ฮันจาสำหรับฮัมกยอง 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_en": "What is the mean huc example code when the example name's lower snake, there are 6 digits, and less than 3 levels?",
    "question_th": "รหัสตัวอย่างเฉลี่ยคืออะไรเมื่อชื่อตัวอย่างงูล่างมี 6 หลักและน้อยกว่า 3 ระดับ?",
    "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_en": "What's the approximate number of HUs when there are more than 2 digits, and 6 levels?",
    "question_th": "จำนวน HU โดยประมาณเมื่อมีมากกว่า 2 หลัก และ 6 ระดับคือเท่าใด",
    "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_en": "How many HUC example codes have 1 level?",
    "question_th": "โค้ดตัวอย่าง HUC มีกี่ระดับใน 1 ระดับ",
    "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_en": "What is the mean level number when the example name is lower snake and the approximate number is hus is less than 370?",
    "question_th": "หมายเลขระดับเฉลี่ยเมื่อชื่อตัวอย่างคืองูล่างและหมายเลขโดยประมาณคือตัวฮัสน้อยกว่า 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_en": "What is the losses average when the against is greater than 1255 and wins is 0 and the draws less than 0?",
    "question_th": "ค่าเฉลี่ยการสูญเสียจะเป็นเท่าใดเมื่อฝ่ายต่อมากกว่า 1255 และชนะเป็น 0 และเสมอน้อยกว่า 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_en": "What is the smallest losses when the wins are 5 and the against less than 1852?",
    "question_th": "อะไรคือการสูญเสียที่น้อยที่สุดเมื่อชนะคือ 5 และต่อน้อยกว่า 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_en": "What is the fewest losses that Ballarat FL of Lake Wendouree has when the wins are smaller than 9?",
    "question_th": "อะไรคือความสูญเสียน้อยที่สุดที่ Ballarat FL จาก Lake Wendouree มีเมื่อชัยชนะน้อยกว่า 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_en": "What is the smallest byes when the wins are 3?",
    "question_th": "บายน้อยที่สุดเมื่อชนะคือ 3 คืออะไร?",
    "context": "CREATE TABLE table_name_49 (byes INTEGER, wins VARCHAR)"
  },
  {
    "answer": "SELECT MAX(attendance) FROM table_name_39 WHERE away_team = \"wrexham\"",
    "question_en": "What is the highest Attendance when the away team was Wrexham?",
    "question_th": "ผู้เข้าชมสูงสุดเมื่อทีมเยือนคือเร็กซ์แฮมคือเท่าใด?",
    "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_en": "What is the Away team when the home team was wycombe wanderers?",
    "question_th": "ทีมเยือนเมื่อเจ้าบ้านเป็น วีคอมบ์ วันเดอร์เรอร์ส คืออะไร?",
    "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_en": "What is the lowest Attendance when the home team was slough town?",
    "question_th": "ผู้เข้าร่วมต่ำสุดเมื่อทีมเจ้าบ้านเป็นสลอคทาวน์คือเท่าไร?",
    "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_en": "What is the sum of Attendance when macclesfield town was the way team?",
    "question_th": "ผลรวมของผู้เข้าร่วมเมื่อแม็คเคิลส์ฟิลด์ทาวน์เป็นทีมเวย์คือเท่าไร?",
    "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_en": "How many Spins sources have a CCM Chart of CHR with a peak position less than 1?",
    "question_th": "มีแหล่งที่มาของ Spins จำนวนเท่าใดที่มีแผนภูมิ CCM ของ CHR ที่มีตำแหน่งสูงสุดน้อยกว่า 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_en": "What CCM Chart had 18 total weeks?",
    "question_th": "แผนภูมิ CCM ใดมีทั้งหมด 18 สัปดาห์",
    "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_en": "What is Opponent, when Date is December 18, 1988?",
    "question_th": "ฝ่ายตรงข้ามคืออะไร เมื่อวันที่ 18 ธันวาคม 2531?",
    "context": "CREATE TABLE table_name_7 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_2 WHERE opponent = \"pittsburgh steelers\"",
    "question_en": "What is Attendance, when Opponent is Pittsburgh Steelers?",
    "question_th": "ผู้เข้าร่วมคืออะไร เมื่อฝ่ายตรงข้ามคือ Pittsburgh Steelers?",
    "context": "CREATE TABLE table_name_2 (attendance VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT AVG(week) FROM table_name_80 WHERE result = \"l 37–34\"",
    "question_en": "What is the average Week, when Result is l 37–34?",
    "question_th": "สัปดาห์เฉลี่ยคือเท่าใด เมื่อผลลัพธ์คือ l 37–34",
    "context": "CREATE TABLE table_name_80 (week INTEGER, result VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_15 WHERE centerfold_model = \"shannon long\"",
    "question_en": "When was Shannon Long the Centerfold model?",
    "question_th": "แชนนอน ลอง เป็นนางแบบเซ็นเตอร์โฟลด์เมื่อไหร่?",
    "context": "CREATE TABLE table_name_15 (date VARCHAR, centerfold_model VARCHAR)"
  },
  {
    "answer": "SELECT centerfold_model FROM table_name_20 WHERE date = \"5-88\"",
    "question_en": "Who was the Centerfold model on 5-88?",
    "question_th": "รุ่น Centerfold รุ่น 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_en": "Who was the Centerfild model that used Bruce Willis as her Interview subject?",
    "question_th": "ใครคือนางแบบ Centerfild ที่ใช้ Bruce Willis เป็นหัวข้อสัมภาษณ์ของเธอ?",
    "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_en": "What is Series, when Launch Date is 23 February 2013?",
    "question_th": "ซีรีส์คืออะไร เมื่อวันเปิดตัวคือ 23 กุมภาพันธ์ 2556",
    "context": "CREATE TABLE table_name_16 (series VARCHAR, launch_date VARCHAR)"
  },
  {
    "answer": "SELECT series FROM table_name_15 WHERE days > 99 AND prize = \"€50,000\"",
    "question_en": "What is Series, when Days is greater than 99, and when Prize is €50,000?",
    "question_th": "ซีรีส์คืออะไร เมื่อจำนวนวันมากกว่า 99 และเมื่อรางวัลเป็น 50,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_en": "What is Series, when Winner is Jetmir Salaj?",
    "question_th": "Series คืออะไร เมื่อผู้ชนะคือ 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_en": "What is Highest Days, when Launch Date is 23 January 2010?",
    "question_th": "วันที่สูงสุดคือวันที่เปิดตัวคือวันที่ 23 มกราคม 2553",
    "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_en": "What is the lowest Rank, when Name is Jeremiah Massey, and when Games is less than 20?",
    "question_th": "อันดับต่ำสุดคือเมื่อชื่อ Jeremiah Massey และเมื่อ Games น้อยกว่า 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_en": "What is the lowest Games, when Name is Jeremiah Massey, and when Points is less than 340?",
    "question_th": "เกมใดที่ต่ำที่สุด เมื่อชื่อคือ Jeremiah Massey และเมื่อคะแนนน้อยกว่า 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_en": "What is the lowest Points, when Games is greater than 20, and when Team is Partizan Belgrade?",
    "question_th": "คะแนนต่ำสุดคืออะไร เมื่อเกมมากกว่า 20 และเมื่อทีมคือ 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_en": "What is Games, when Points is less than 340, and when Rank is greater than 3?",
    "question_th": "เกมคืออะไร เมื่อคะแนนน้อยกว่า 340 และเมื่ออันดับมากกว่า 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_en": "What is the sum of Rank, when Name is Will Solomon, and when Games is greater than 21?",
    "question_th": "ผลรวมของอันดับเมื่อชื่อ Will Solomon และเมื่อ Games มากกว่า 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_en": "What was the first leg score in the match against Twente?",
    "question_th": "สกอร์เลกแรกในการแข่งขันกับทเวนเต้คือเท่าไหร่?",
    "context": "CREATE TABLE table_name_58 (first_leg VARCHAR, opposition VARCHAR)"
  },
  {
    "answer": "SELECT first_leg FROM table_name_41 WHERE round = \"2nd\"",
    "question_en": "What was the first leg score in the 2nd round?",
    "question_th": "สกอร์เลกแรกในรอบที่ 2 เป็นเท่าไหร่?",
    "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_en": "What were the Bills points on Nov. 11?",
    "question_th": "คะแนน Bills ในวันที่ 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_en": "What was the Bills first downs on Oct. 29 with more the 23 Bills points?",
    "question_th": "Bills ร่วงลงครั้งแรกในวันที่ 29 ต.ค. โดยมีแต้ม Bills มากกว่า 23 แต้มคืออะไร",
    "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_en": "What was the Bill's attendance on December 6?",
    "question_th": "การเข้าร่วมของร่างกฎหมายในวันที่ 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_en": "On what date did the Bills play the Houston Oilers before week 12?",
    "question_th": "Bills เล่นกับ Houston Oilers ก่อนสัปดาห์ที่ 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_en": "Which team won on the day when attendance was 42,308?",
    "question_th": "ทีมไหนชนะในวันที่มีผู้เข้าร่วม 42,308 คน?",
    "context": "CREATE TABLE table_name_27 (result VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_3 WHERE date = \"december 13\"",
    "question_en": "What week of the season was December 13?",
    "question_th": "สัปดาห์ใดของฤดูกาลคือวันที่ 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_en": "What is the highest Points in Position 2 with more than 3 Drawn games?",
    "question_th": "อะไรคือคะแนนสูงสุดในตำแหน่งที่ 2 โดยมีเกมที่เสมอกันมากกว่า 3 เกม?",
    "context": "CREATE TABLE table_name_75 (points INTEGER, position VARCHAR, drawn VARCHAR)"
  },
  {
    "answer": "SELECT difference FROM table_name_53 WHERE position = 5",
    "question_en": "What is the goal Difference at Position 5?",
    "question_th": "ความแตกต่างเป้าหมายที่ตำแหน่ง 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_en": "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?",
    "question_th": "อะไรคือเกมโดยเฉลี่ยที่เล่นกับตำแหน่งที่สูงกว่า 3 โดยมีเป้าหมายต่อน้อยกว่า 27 และเกมที่แพ้น้อยกว่า 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_en": "What is the highest Points with a Lost total of 8?",
    "question_th": "แต้มสูงสุดที่เสียไปทั้งหมด 8 คืออะไร?",
    "context": "CREATE TABLE table_name_39 (points INTEGER, lost VARCHAR)"
  },
  {
    "answer": "SELECT AVG(points) FROM table_name_78 WHERE lost > 20",
    "question_en": "Which average Points has a Lost higher than 20?",
    "question_th": "คะแนนเฉลี่ยใดที่เสียไปสูงกว่า 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_en": "What are the Cuts made with a Top-10 smaller than 2?",
    "question_th": "อะไรคือ Cuts ที่ทำด้วย Top-10 ที่เล็กกว่า 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_en": "What is the Top-25 with a Top-10 of 8, and an Events of 45?",
    "question_th": "อะไรคือ 25 อันดับแรกที่มี 10 อันดับแรกจาก 8 และกิจกรรมที่มี 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_en": "What is the Top-25 with an Events of 20, and a Wins larger than 2?",
    "question_th": "อะไรคือ 25 อันดับแรกที่มีเหตุการณ์ 20 และการชนะที่มากกว่า 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_en": "Which Top-10 has a Top-25 smaller than 18, and a Top-5 of 6, and a Cuts made smaller than 20?",
    "question_th": "Top-10 ใดที่มี Top-25 น้อยกว่า 18 และ Top-5 จาก 6 และ Cuts ทำได้น้อยกว่า 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_en": "What is Top Par, when Score is less than 68, and when Country is England?",
    "question_th": "Top Par คืออะไร เมื่อคะแนนน้อยกว่า 68 และเมื่อ Country คือ 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_en": "What is Sum of Score, when Player is Vijay Singh?",
    "question_th": "ผลรวมของคะแนนคืออะไร เมื่อผู้เล่นคือวีเจย์ ซิงห์?",
    "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_en": "What is Sum of Score, when Place is T2, and when Player is Justin Leonard?",
    "question_th": "ผลรวมของคะแนนคืออะไร เมื่ออันดับคือ T2 และเมื่อผู้เล่นคือจัสติน ลีโอนาร์ด?",
    "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_en": "What is Place, when Score is less than 67, and when Country is South Africa?",
    "question_th": "สถานที่คืออะไร เมื่อคะแนนน้อยกว่า 67 และเมื่อประเทศคือแอฟริกาใต้",
    "context": "CREATE TABLE table_name_32 (place VARCHAR, score VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_23 WHERE laps = 379",
    "question_en": "Can you tell me the Team that has the Laps of 379?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าทีมที่มีรอบ 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_en": "What is the Tournament with a Margin of victory that was 4 strokes?",
    "question_th": "การแข่งขันที่มี Margin of Victory เป็น 4 จังหวะคืออะไร?",
    "context": "CREATE TABLE table_name_57 (tournament VARCHAR, margin_of_victory VARCHAR)"
  },
  {
    "answer": "SELECT 1999 FROM table_name_18 WHERE 1998 = \"2r\"",
    "question_en": "What is 1999, when 1998 is 2R?",
    "question_th": "ปี 1999 คืออะไร เมื่อปี 1998 เป็น 2R?",
    "context": "CREATE TABLE table_name_18 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1998 FROM table_name_86 WHERE 1994 = \"grand slam tournaments\"",
    "question_en": "What is 1998, when 1994 is Grand Slam Tournaments?",
    "question_th": "ปี 1998 คืออะไร เมื่อปี 1994 เป็นการแข่งขัน Grand Slam?",
    "context": "CREATE TABLE table_name_86 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2009 FROM table_name_1 WHERE 2000 = \"1r\" AND 1998 = \"3r\"",
    "question_en": "What is 2009, when 2000 is 1R, and when 1998 is 3R?",
    "question_th": "ปี 2009 คืออะไร เมื่อปี 2000 คือ 1R และเมื่อใดคือปี 1998 คือ 3R",
    "context": "CREATE TABLE table_name_1 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2009 FROM table_name_59 WHERE 2008 = \"1r\" AND tournament = \"french open\"",
    "question_en": "What is 2009, when 2008 is 1R, and when Tournament is French Open?",
    "question_th": "ปี 2009 คืออะไร เมื่อปี 2008 เป็น 1R และเมื่อใดที่ Tournament คือ French Open",
    "context": "CREATE TABLE table_name_59 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2009 FROM table_name_81 WHERE 2004 = \"2r\" AND 1993 = \"a\"",
    "question_en": "What is 2009, when 2004 is 2R, and when 1993 is A?",
    "question_th": "ปี 2009 คืออะไร เมื่อปี 2004 เป็น 2R และเมื่อใดคือปี 1993 เป็น A",
    "context": "CREATE TABLE table_name_81 (Id VARCHAR)"
  },
  {
    "answer": "SELECT AVG(gold) FROM table_name_45 WHERE total > 12",
    "question_en": "What is the average amount of gold medals for a country with more than 12 total medals?",
    "question_th": "จำนวนเหรียญทองเฉลี่ยของประเทศที่มีทั้งหมดมากกว่า 12 เหรียญคือเท่าใด",
    "context": "CREATE TABLE table_name_45 (gold INTEGER, total INTEGER)"
  },
  {
    "answer": "SELECT visitor FROM table_name_7 WHERE home = \"nets\"",
    "question_en": "Who were the Visitor when the Nets were the Home team?",
    "question_th": "ใครคือผู้มาเยือนเมื่อเน็ตส์เป็นทีมเหย้า?",
    "context": "CREATE TABLE table_name_7 (visitor VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT leading_scorer FROM table_name_98 WHERE score = \"80–112\"",
    "question_en": "What Leading scorer had a Score of 80–112?",
    "question_th": "ผู้ทำประตูสูงสุดคนใดที่มีคะแนน 80–112",
    "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_en": "What is the name of the tournament played on Sep 20, 1981, ending with a margin of vicroty of 2 strokes?",
    "question_th": "ชื่อของทัวร์นาเมนต์ที่เล่นเมื่อวันที่ 20 กันยายน พ.ศ. 2524 จบลงด้วยชัยชนะ 2 จังหวะคืออะไร?",
    "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_en": "For the tournament played on Jul 4, 1982, what was the winning score?",
    "question_th": "ในการแข่งขันวันที่ 4 ก.ค. 2525 สกอร์ชนะเป็นเท่าไหร่?",
    "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_en": "What was the winning score for the Andy Williams-San Diego Open Invitational tournament?",
    "question_th": "คะแนนชนะสำหรับทัวร์นาเมนต์ Andy Williams-San Diego Open Invitational คืออะไร",
    "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_en": "Who was the runner(s)-up for the tournament played on Jun 3, 1973?",
    "question_th": "ใครคือรองชนะเลิศของทัวร์นาเมนต์ที่เล่นเมื่อวันที่ 3 มิถุนายน พ.ศ. 2516?",
    "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_en": "What was the winning score for the tournament played on Jul 14, 1973?",
    "question_th": "คะแนนชนะสำหรับทัวร์นาเมนต์ที่เล่นเมื่อวันที่ 14 กรกฎาคม พ.ศ. 2516 เป็นเท่าใด",
    "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_en": "In which tournament was Gil Morgan the runner-up?",
    "question_th": "Gil Morgan เป็นรองแชมป์ในทัวร์นาเมนต์ใด",
    "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_en": "What was the highest attendance when the Atlanta Falcons played for a week smaller than 10?",
    "question_th": "อะไรคือผู้เข้าร่วมสูงสุดเมื่อ Atlanta Falcons เล่นน้อยกว่า 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_en": "What is the Result when the Theme was by Dolly Parton?",
    "question_th": "ผลลัพธ์คืออะไรเมื่อเป็นธีมของ 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_en": "What is the Theme when the Original artist was carole king, and a Week # shows hollywood?",
    "question_th": "ธีมคืออะไรเมื่อศิลปินต้นฉบับคือแคโรลคิง และสัปดาห์ที่ # แสดงฮอลลีวูด",
    "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_en": "What is the Song choice when there is an Order # of 4?",
    "question_th": "ตัวเลือกเพลงคืออะไรเมื่อมีคำสั่งซื้อ # จาก 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_en": "What proto-oceanic has louse as the animal?",
    "question_th": "สัตว์อะไรในมหาสมุทรยุคก่อนมีเหาเหมือนสัตว์?",
    "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_en": "What is the total number of delegate that have 4 counties carries and more than 1,903 state delegates?",
    "question_th": "จำนวนผู้แทนทั้งหมดที่มี 4 มณฑลดำเนินการและผู้แทนของรัฐมากกว่า 1,903 คนคือเท่าใด",
    "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_en": "What is the Home team with an Away team that is oxford united?",
    "question_th": "ทีมเหย้ากับทีมเยือนที่เป็นอ็อกซ์ฟอร์ดยูไนเต็ดคืออะไร?",
    "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_en": "What is the Home team with an Away team that is wrexham?",
    "question_th": "ทีมเหย้ากับทีมเยือนเร็กซ์แฮมคืออะไร?",
    "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_en": "Which Gold has a Silver of 7, and a Bronze smaller than 7?",
    "question_th": "ทองคำใดมีเงินเท่ากับ 7 และทองแดงมีค่าน้อยกว่า 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_en": "Which Bronze has a Silver of 15, and a Gold smaller than 20?",
    "question_th": "บรอนซ์ใดมีเงิน 15 และทองคำน้อยกว่า 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_en": "Which Bronze has a Silver of 7, and a Total larger than 25?",
    "question_th": "บรอนซ์ใดมีเงินเท่ากับ 7 และผลรวมมากกว่า 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_en": "Which Gold has a Bronze larger than 1, and a Total larger than 80?",
    "question_th": "ทองคำใดที่มีทองแดงมากกว่า 1 และผลรวมมากกว่า 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_en": "Which Total has a Silver larger than 8, and a Bronze of 20, and a Gold smaller than 20?",
    "question_th": "ผลรวมใดที่มีเงินมากกว่า 8 และทองแดง 20 และทองน้อยกว่า 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_en": "What is the total of NA for set 4, a score of 3-0 and a 26-24 for set 2?",
    "question_th": "NA เซ็ต 4 รวมสกอร์ 3-0 และ 26-24 เซ็ต 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_en": "What is the total of the 3-0 score with a set 2 of 25-12 and a set 3 of 25-18?",
    "question_th": "สกอร์รวม 3-0 เซต 2 สกอร์ 25-12 และเซต 3 สกอร์ 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_en": "What is the set 5 of the match with a set 2 of 26-24 and a set 1 of 27-25?",
    "question_th": "เซต 5 ของแมตช์ที่มีเซต 2 ของ 26-24 และเซต 1 ของ 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_en": "Who has a total number of 76 silver medals?",
    "question_th": "ใครได้เหรียญเงินทั้งหมด 76 เหรียญ?",
    "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_en": "What score has ipswich town as the home team, and replay as the tie no.?",
    "question_th": "อิปสวิช ทาวน์ เป็นเจ้าบ้านได้สกอร์เท่าไหร่ และรีเพลย์เมื่อเสมอกัน?",
    "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_en": "What score has grays athletic as the home team?",
    "question_th": "เกรย์ส แอธเลติก เป็นเจ้าบ้านได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_27 (score VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_73 WHERE tie_no = \"6\"",
    "question_en": "What date has 6 as the tie no.?",
    "question_th": "เลข 6 ตรงกับวันที่เท่าไหร่?",
    "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_en": "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?",
    "question_th": "อะไรคือรอบที่เร็วที่สุด เมื่อทีมที่ชนะคือทีม BRM เมื่อการแข่งขันคือ 1 เมื่อตำแหน่งโพลโพซิชั่นคือ Leanne Tander และเมื่อ Circuit คือ 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_en": "What is Fastest Lap, when Round is 5, and when Winning Driver is James Winslow?",
    "question_th": "รอบที่เร็วที่สุดคืออะไร เมื่อรอบคือ 5 และเมื่อนักแข่งที่ชนะคือ 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_en": "What is Date, when Fastest Lap is James Winslow, when Race is 1, and when Winning Driver is Leanne Tander?",
    "question_th": "วันที่คือเมื่อใด เมื่อรอบที่เร็วที่สุดคือ James Winslow เมื่อเรซคือ 1 และเมื่อนักแข่งที่ชนะคือ 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_en": "What is Pole Position, when Circuit is Adelaide Street Circuit, and when Winning Team is Piccola Scuderia Corse?",
    "question_th": "ตำแหน่งโพลคืออะไร เมื่อสนามแข่งคือสนามแข่งแอดิเลดสตรีท และเมื่อทีมที่ชนะคือพิคโคลา สคูเดอเรีย คอร์ส",
    "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_en": "What country was the game played in when the location was trestles?",
    "question_th": "เกมนี้เล่นในประเทศใดเมื่อสถานที่นั้นเป็นจุดเชื่อมต่อ",
    "context": "CREATE TABLE table_name_18 (country VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_8 WHERE location = \"bells beach\"",
    "question_en": "What date was the game played when it was located at bells beach?",
    "question_th": "เกมนี้เล่นวันที่เท่าไหร่เมื่อตั้งอยู่ที่หาดเบลล์?",
    "context": "CREATE TABLE table_name_8 (date VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_73 WHERE date = \"april 11-april 21\"",
    "question_en": "What country was the game played when it was played from April 11-April 21?",
    "question_th": "เกมนี้เล่นที่ประเทศอะไรเมื่อเล่นตั้งแต่วันที่ 11 เมษายน - 21 เมษายน?",
    "context": "CREATE TABLE table_name_73 (country VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT runner_up FROM table_name_31 WHERE location = \"bells beach\"",
    "question_en": "Who was the Runner-up when the game was played at Bells Beach?",
    "question_th": "ใครคือรองชนะเลิศเมื่อเล่นเกมที่ 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_en": "Which Accolade had a publication of Under the Radar?",
    "question_th": "Accolade ใดที่มีการตีพิมพ์ 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_en": "Which year had a publication of Pazz & Jop?",
    "question_th": "ปีไหนที่มีการตีพิมพ์ 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_en": "How many districts featured the democrat nicholas von stein?",
    "question_th": "มีกี่เขตที่เป็นจุดเด่นของนิโคลัส ฟอน สไตน์จากพรรคเดโมแครต",
    "context": "CREATE TABLE table_name_57 (district VARCHAR, democratic VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_name_21 WHERE democratic = \"mike carroll\"",
    "question_en": "Which incumbent's democratic candidate was mike carroll?",
    "question_th": "ไมค์ แคร์โรลล์ ผู้สมัครตามระบอบประชาธิปไตยของผู้ดำรงตำแหน่งคนใด",
    "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_en": "Who ran under the Democratic ticket when Edward R. Dudley ran under the Liberal ticket?",
    "question_th": "ใครวิ่งอยู่ใต้ตั๋วประชาธิปไตยเมื่อ Edward R. Dudley วิ่งอยู่ใต้ตั๋ว Liberal?",
    "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_en": "When John Emanuel ran under the Socialist Labor ticket who ran under the Democratic ticket?",
    "question_th": "เมื่อจอห์น เอ็มมานูเอลวิ่งอยู่ใต้ตั๋วพรรคแรงงานสังคมนิยมที่วิ่งอยู่ใต้ตั๋วประชาธิปไตย?",
    "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_en": "What was the office up for election when Sylvia Weinstein ran under the Socialist Workers ticket?",
    "question_th": "ตำแหน่งใดที่พร้อมสำหรับการเลือกตั้งเมื่อซิลเวีย ไวน์สไตน์ลงสมัครรับเลือกตั้งจากพรรคสังคมนิยม?",
    "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_en": "Who ran under the Socialist Labor ticket when Robert M. Morgenthau ran for the Democratic ticket?",
    "question_th": "ใครวิ่งอยู่ภายใต้ตั๋วพรรคแรงงานสังคมนิยมเมื่อ Robert M. Morgenthau วิ่งเพื่อชิงตั๋วพรรคเดโมแครต?",
    "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_en": "When Republican ticket was John P. Lomenzo who ran for the Socialist Workers ticket?",
    "question_th": "เมื่อตั๋วของพรรครีพับลิกันคือ John P. Lomenzo ที่ลงสมัครรับตั๋ว Socialist Workers?",
    "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_en": "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?",
    "question_th": "คือพื้นที่ km2 ของพื้นที่ที่มีประชากรหนาแน่น/km2 มากกว่า 91 เป็นรัฐสมาชิกของอิตาลี และมีประชากรน้อยกว่า 58.8 ในล้านเป็นเท่าใด",
    "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_en": "What is the area % of EU with 16.4 population in millions?",
    "question_th": "พื้นที่ % ของสหภาพยุโรปที่มีประชากร 16.4 ล้านคนคือเท่าไร?",
    "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_en": "What is the total number of area km2 with a 4.2 population in millions and is a member state of the Czech Republic?",
    "question_th": "คือจำนวนพื้นที่ km2 ทั้งหมดที่มีประชากร 4.2 ล้านคนและเป็นรัฐสมาชิกของสาธารณรัฐเช็กเป็นเท่าใด",
    "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_en": "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?",
    "question_th": "ผลรวมของความหนาแน่นป๊อป ผู้คน/km2 โดยมี % ประชากรของ EU 0.1%, พื้นที่ % ของ EU 0.1% และมีประชากรมากกว่า 0.5 ในล้านเป็นเท่าใด",
    "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_en": "What is the lowest area km2 of the member state of the Czech Republic and has a population in millions lesss than 10.3?",
    "question_th": "พื้นที่ km2 ต่ำสุดของประเทศสมาชิกของสาธารณรัฐเช็กคือเท่าใด และมีประชากรนับล้านน้อยกว่า 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_en": "Weighing less than 85, with less than 340 Spikes, what is Gilberto Godoy Filho's Height",
    "question_th": "มีน้ำหนักน้อยกว่า 85 และมีหนามแหลมน้อยกว่า 340 ส่วนสูงของ Gilberto Godoy Filho คือเท่าใด",
    "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_en": "What is the Attendance for Opponent Boston Patriots and Week is greater than 14?",
    "question_th": "การเข้าร่วมของฝ่ายตรงข้าม Boston Patriots และ Week มากกว่า 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_en": "Which Nominated work has a Year of 1997?",
    "question_th": "งานที่ได้รับการเสนอชื่อใดมีปี 2540?",
    "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_en": "Which Award has a Category of music video acting award?",
    "question_th": "รางวัลใดมีประเภทรางวัลการแสดงมิวสิกวิดีโอ?",
    "context": "CREATE TABLE table_name_40 (award VARCHAR, category VARCHAR)"
  },
  {
    "answer": "SELECT canadian_championship FROM table_name_87 WHERE league = \"84 (4)\"",
    "question_en": "When the league is 84 (4) what is the Canadian Championship?",
    "question_th": "เมื่อลีกเป็น 84 (4) แชมป์แคนาดาคืออะไร?",
    "context": "CREATE TABLE table_name_87 (canadian_championship VARCHAR, league VARCHAR)"
  },
  {
    "answer": "SELECT canadian_championship FROM table_name_85 WHERE league = \"84 (4)\"",
    "question_en": "What Canadian Championship has 84 (4) as the league?",
    "question_th": "แชมป์แคนาดารายการใดมี 84 (4) เป็นลีก?",
    "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_en": "What Canadian Championship has Ashtone Morgan Category:Articles with hcards as the name?",
    "question_th": "การแข่งขันชิงแชมป์แคนาดารายการใดมี Ashtone Morgan หมวดหมู่:บทความที่มี hcard เป็นชื่อ",
    "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_en": "What is the total when the name is Carl Robinson Category:Articles with hcards?",
    "question_th": "ยอดรวมเมื่อชื่อ Carl Robinson Category:บทความที่มี 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_en": "What is Name, when Games are less than 38, when Rank is less than 4, and when Points are 357?",
    "question_th": "ชื่อคืออะไร เมื่อเกมน้อยกว่า 38 เมื่ออันดับน้อยกว่า 4 และเมื่อคะแนนเป็น 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_en": "What is Team, when Rank is greater than 2, and when Points are greater than 259?",
    "question_th": "ทีมคืออะไร เมื่ออันดับมากกว่า 2 และเมื่อคะแนนมากกว่า 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_en": "What are the Highest Games, when Team is Ciudad De La Laguna, and when Points are greater than 357?",
    "question_th": "เกมใดที่สูงที่สุด เมื่อทีมคือ Ciudad De La Laguna และเมื่อคะแนนมากกว่า 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_en": "What is Points, when Name is Ondrej Starosta?",
    "question_th": "คะแนนคืออะไร เมื่อชื่อคือ 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_en": "What is the lowest value for Points, when Games is greater than 34, and when Name is Andrew Panko?",
    "question_th": "ค่าคะแนนต่ำสุดคือเท่าใด เมื่อเกมมีค่ามากกว่า 34 และเมื่อชื่อคือ 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_en": "What is the highest value for Points, when Games is 21, and when Rank is greater than 2?",
    "question_th": "ค่าคะแนนสูงสุดเมื่อเกมคือ 21 และเมื่ออันดับมากกว่า 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_en": "What is the average rank of the record on 2007-06-21 with a mark less than 91.29?",
    "question_th": "อันดับเฉลี่ยของสถิติในวันที่ 21-06-2550 โดยมีคะแนนน้อยกว่า 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_en": "What is the lowest mark of the rank 8 record?",
    "question_th": "คะแนนต่ำสุดของสถิติอันดับ 8 คืออะไร?",
    "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_en": "What is the place of the record on 1996-05-25 with a mark greater than 90.73?",
    "question_th": "สถานที่บันทึกเมื่อวันที่ 25-05-2539 โดยมีเครื่องหมายมากกว่า 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_en": "What is the place of the rank 6 record, which has a mark greater than 91.29?",
    "question_th": "สถิติอันดับ 6 มีคะแนนมากกว่า 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_en": "What competition has a venue in Hampden Park, Glasgow?",
    "question_th": "สนามแข่งขันใดที่แฮมป์เดน พาร์ก, กลาสโกว์?",
    "context": "CREATE TABLE table_name_55 (competition VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_68 WHERE venue = \"hampden park, glasgow\"",
    "question_en": "What was the score in Hampden Park, Glasgow?",
    "question_th": "คะแนนใน แฮมป์เดน พาร์ก, กลาสโกว์ คืออะไร?",
    "context": "CREATE TABLE table_name_68 (score VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_83 WHERE notes = \"2:28:31\"",
    "question_en": "Which Venue has a Notes of 2:28:31?",
    "question_th": "สถานที่ใดมีหมายเหตุเป็น 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_en": "Which Venue has a Competition of venice marathon?",
    "question_th": "สถานที่ใดมีการแข่งขันเวนิสมาราธอน?",
    "context": "CREATE TABLE table_name_98 (venue VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_name_17 WHERE notes = \"dnf\"",
    "question_en": "Which Year that has Notes of dnf?",
    "question_th": "ปีใดที่มีบันทึกย่อของ dnf",
    "context": "CREATE TABLE table_name_17 (year INTEGER, notes VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_45 WHERE year > 2000",
    "question_en": "Which Competition has a Year larger than 2000?",
    "question_th": "การแข่งขันใดที่มีปีใหญ่กว่าปี 2000?",
    "context": "CREATE TABLE table_name_45 (competition VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT date FROM table_name_33 WHERE set_4 = \"25-19\"",
    "question_en": "What date has a set 4 of 25-19?",
    "question_th": "25-19 มีชุดที่ 4 วันไหนคะ?",
    "context": "CREATE TABLE table_name_33 (date VARCHAR, set_4 VARCHAR)"
  },
  {
    "answer": "SELECT total FROM table_name_80 WHERE set_2 = \"25-18\"",
    "question_en": "What is the total for the set 2 of 25-18?",
    "question_th": "ชุดที่ 2 ของ 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_en": "What is the total for set 2 of 25-19?",
    "question_th": "ชุดที่ 2 ของ 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_en": "What is set 3 when set 5 is na, set 1 is 21-25, and set 2 is 25-16?",
    "question_th": "เซต 3 คืออะไร เมื่อเซต 5 คือ na, เซต 1 คือ 21-25 และเซต 2 คือ 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_en": "What is the set 1 for the date jun 26, and a set 2 of 25-16?",
    "question_th": "ชุดที่ 1 วันที่ 26 มิ.ย. ชุดที่ 2 วันที่ 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_en": "What is the total for set 2 17-25?",
    "question_th": "ชุดที่ 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_en": "What Opponent has a Score that is 1-6, 3-6?",
    "question_th": "ฝ่ายตรงข้ามคนไหนมีสกอร์ 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_en": "What writer has mort drucker as the artist, an issue greater than 470, and law & order: svu as an actual title?",
    "question_th": "นักเขียนคนไหนมี Mort Drucker เป็นศิลปิน ประเด็นที่มากกว่า 470 และ Law & Order: svu เป็นชื่อจริง",
    "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_en": "What date has ed as an actual title?",
    "question_th": "วันที่ใดที่ ed เป็นชื่อจริง?",
    "context": "CREATE TABLE table_name_93 (date VARCHAR, actual_title VARCHAR)"
  },
  {
    "answer": "SELECT issue FROM table_name_51 WHERE actual_title = \"7th heaven\"",
    "question_en": "What isssue has 7th heaven as an actual title?",
    "question_th": "ประเด็นใดที่มีสวรรค์ชั้น 7 เป็นชื่อจริง?",
    "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_en": "What issue has mort drucker as the artist and february 2001 as the date?",
    "question_th": "ประเด็นใดที่ Mort Drucker เป็นศิลปิน และเดือนกุมภาพันธ์ 2544 เป็นวันที่?",
    "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_en": "In what Week was the Attendance 39,434?",
    "question_th": "ผู้เข้าร่วม 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_en": "What year was the match were xavier malisse was the runner-up against lleyton hewitt?",
    "question_th": "การแข่งขันคือปีใดที่ซาเวียร์ มาลิสเซ่เป็นรองแชมป์กับเลย์ตัน ฮิววิตต์?",
    "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_en": "What year was the match against filippo volandri where xavier malisse was runner-up?",
    "question_th": "แมตช์กับฟิลิปโป โวลันดรีคือปีไหนที่ซาเวียร์ มาลิสเซ่ได้รองแชมป์?",
    "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_en": "How many against have a difference of 6, with a played greater than 19?",
    "question_th": "มีกี่คนที่มีผลต่าง 6 โดยที่เล่นมากกว่า 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_en": "What is the lowest drawn that has a played greater than 19, with a position less than 2?",
    "question_th": "เสมอต่ำสุดที่มีการเล่นมากกว่า 19 และมีตำแหน่งน้อยกว่า 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_en": "What is the average against that has a drawn less than 7, points greater than 22, and 19 for the played?",
    "question_th": "ค่าเฉลี่ยเทียบกับที่เสมอกันน้อยกว่า 7 คะแนนมากกว่า 22 และ 19 สำหรับการเล่นคืออะไร?",
    "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_en": "When has a TV Time of fox 12:00 pm cdt?",
    "question_th": "รายการทีวีของ Fox 12.00 น. cdt มีเมื่อไหร่?",
    "context": "CREATE TABLE table_name_75 (date VARCHAR, tv_time VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_73 WHERE week = 8",
    "question_en": "When has a Week of 8?",
    "question_th": "เมื่อไรจะมีสัปดาห์ที่ 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_en": "Which Week has a Result of l 13-16 and an Opponent of at buffalo bills?",
    "question_th": "สัปดาห์ไหนมีผลการแข่งขัน l 13-16 และฝ่ายตรงข้ามของ at buffalo bill?",
    "context": "CREATE TABLE table_name_27 (week INTEGER, result VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT tv_time FROM table_name_72 WHERE result = \"w 24–10\"",
    "question_en": "What kind of TV Time that has a Result of w 24–10?",
    "question_th": "เวลาทีวีประเภทใดที่มีผลลัพธ์เป็น w 24–10",
    "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_en": "What is the name of the conference that K. C. Jones was a head coach in?",
    "question_th": "การประชุมที่ KC Jones เป็นหัวหน้าโค้ชชื่ออะไร?",
    "context": "CREATE TABLE table_name_78 (conf VARCHAR, head_coach VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_name_50 WHERE date = \"march 5\"",
    "question_en": "Who had the highest assists of the game on March 5?",
    "question_th": "ใครมีแอสซิสต์สูงสุดของเกมในวันที่ 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_en": "What is the least amount of appearances by new zealand when they scored 4 goals?",
    "question_th": "นิวซีแลนด์ลงสนามน้อยที่สุดเมื่อยิงได้ 4 ประตูคือเท่าไร?",
    "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_en": "how many appearances did batram suri category:articles with hcards have scoring less than 2 goals?",
    "question_th": "Batram suri ลงเล่นกี่ครั้งในหมวดหมู่:บทความที่มี hcards ยิงได้น้อยกว่า 2 ประตู?",
    "context": "CREATE TABLE table_name_41 (appearances VARCHAR, name VARCHAR, goals VARCHAR)"
  },
  {
    "answer": "SELECT province FROM table_name_31 WHERE region = \"v valparaíso\" AND area = 927.2",
    "question_en": "What province has a v valparaíso region and an area of 927.2?",
    "question_th": "จังหวัดใดมีภูมิภาคอาวีวัลปาไรโซ และพื้นที่ 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íso\"",
    "question_en": "What is the average area with valparaíso as the capital?",
    "question_th": "พื้นที่เฉลี่ยที่มีบัลปาราอีโซเป็นเมืองหลวงคือเท่าใด",
    "context": "CREATE TABLE table_name_34 (area INTEGER, capital VARCHAR)"
  },
  {
    "answer": "SELECT white FROM table_name_96 WHERE amerindian = \"4,87%\"",
    "question_en": "WHich Category in White has a Amerindian of 4,87%?",
    "question_th": "หมวดหมู่ใดในชุดขาวที่มีคนอเมริกัน 4,87%",
    "context": "CREATE TABLE table_name_96 (white VARCHAR, amerindian VARCHAR)"
  },
  {
    "answer": "SELECT white FROM table_name_35 WHERE black = \"38,05%\"",
    "question_en": "WHich Category in White has a Black of 38,05%?",
    "question_th": "หมวดหมู่ใดในสีขาวมีสีดำถึง 38,05%?",
    "context": "CREATE TABLE table_name_35 (white VARCHAR, black VARCHAR)"
  },
  {
    "answer": "SELECT brown FROM table_name_84 WHERE frequency = \"0.08%\"",
    "question_en": "Which Category in Brown has a Frequency of 0.08%?",
    "question_th": "หมวดหมู่สีน้ำตาลใดมีความถี่ 0.08%",
    "context": "CREATE TABLE table_name_84 (brown VARCHAR, frequency VARCHAR)"
  },
  {
    "answer": "SELECT black FROM table_name_61 WHERE brown = \"6,54%\"",
    "question_en": "Which Category in Black has a Brown of 6,54%?",
    "question_th": "หมวดหมู่ใดในชุดดำมีสีน้ำตาล 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_en": "What is the Capacity in use with an Annual change that is 21.8%?",
    "question_th": "ความจุในการใช้งานคือเท่าใดโดยมีการเปลี่ยนแปลงรายปีที่ 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_en": "How many Tries has Points for smaller than 137, and Tries against larger than 12?",
    "question_th": "มีแต้ม Tries กี่แต้มสำหรับแต้มที่น้อยกว่า 137 และแต้ม Tries เทียบกับแต้มที่มากกว่า 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_en": "WHich Team that has Points against of 43?",
    "question_th": "ทีมใดที่มีคะแนนเทียบกับ 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_en": "WHich Tries has a Team of pau and Points against larger than 103?",
    "question_th": "ความพยายามใดมีทีม pau และคะแนนมากกว่า 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_en": "How many Points against has Tries for smaller than 14, and a Team of llanelli?",
    "question_th": "มีแต้มต่อความพยายามน้อยกว่า 14 แต้มและทีมลาเนลลีกี่แต้ม?",
    "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 = \"–17\" AND points_for < 80",
    "question_en": "How many Tries against has a Try diff of –17 and Points for smaller than 80?",
    "question_th": "การพยายามต่อครั้งมี Try diff ที่ –17 และแต้มน้อยกว่า 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_en": "Which player was the forward?",
    "question_th": "นักเตะคนไหนเป็นกองหน้า?",
    "context": "CREATE TABLE table_name_7 (player VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT years_in_orlando FROM table_name_11 WHERE position = \"center\"",
    "question_en": "Which years in Orlando are featured with the center position?",
    "question_th": "ปีใดในออร์แลนโดที่มีตำแหน่งศูนย์กลาง?",
    "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_en": "Which position was in Orlando in 2000?",
    "question_th": "ตำแหน่งใดในออร์แลนโดในปี 2000",
    "context": "CREATE TABLE table_name_15 (position VARCHAR, years_in_orlando VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_61 WHERE goals = 135",
    "question_en": "What is the Name with Goals that are 135?",
    "question_th": "ชื่อมีเป้าหมายที่ 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_en": "Which American Labor candidate ran against Democratic candidate Robert F. Wagner?",
    "question_th": "ผู้สมัครพรรคแรงงานอเมริกันคนใดลงแข่งขันกับผู้สมัครจากพรรคเดโมแครต 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_en": "Which Socialist candidate ran against American Labor candidate Caroline O'Day?",
    "question_th": "ผู้สมัครพรรคสังคมนิยมคนใดที่แข่งขันกับผู้สมัครพรรคแรงงานอเมริกัน 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_en": "Which Democrtic candidate ran against the Socialist candidate Edna Mitchell Blue?",
    "question_th": "ผู้สมัครจากพรรคเดโมแครตคนใดลงสมัครแข่งขันกับผู้สมัครพรรคสังคมนิยม 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_en": "Which American Labor candidate is running against the Socialist candidate Herman J. Hahn?",
    "question_th": "ผู้สมัครพรรคแรงงานอเมริกันคนใดที่กำลังลงสมัครแข่งขันกับผู้สมัครพรรคสังคมนิยม 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_en": "Which Republican ran against the American Labor candidate Matthew J. Merritt?",
    "question_th": "แมทธิว เจ. เมอร์ริตต์ ผู้สมัครจากพรรครีพับลิกันคนไหนที่ลงสมัครรับเลือกตั้งจากพรรคแรงงานอเมริกัน",
    "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_en": "Which American Labor candidate ran against Republican Thomas E. Dewey?",
    "question_th": "ผู้สมัครพรรคแรงงานอเมริกันคนใดลงสมัครแข่งขันกับโธมัส อี. ดิวอี้จากพรรครีพับลิกัน",
    "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_en": "Who is the Opponent in the final after 1983 with an Outcome of runner-up?",
    "question_th": "ใครคือฝ่ายตรงข้ามในรอบชิงชนะเลิศหลังปี 1983 โดยมีผลงานรองชนะเลิศ?",
    "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–5, 6–2\"",
    "question_en": "What Opponent in the final had a match with a Score in the final of 7–5, 6–2?",
    "question_th": "คู่ต่อสู้คนใดในรอบชิงชนะเลิศมีการแข่งขันด้วยสกอร์ในรอบชิงชนะเลิศ 7–5, 6–2?",
    "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_en": "What is the Championship with Vitas Gerulaitis as Opponent in the final in a match on Clay Surface?",
    "question_th": "การแข่งขันชิงแชมป์ที่มี Vitas Gerulaitis เป็นฝ่ายตรงข้ามในรอบชิงชนะเลิศในการแข่งขันบน 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_en": "What is the smallest percentage of marine area for Pacific Marine ecozone and percentage of total area greater than 3.1?",
    "question_th": "เปอร์เซ็นต์ที่น้อยที่สุดของพื้นที่ทางทะเลสำหรับเขตนิเวศทางทะเลแปซิฟิกและเปอร์เซ็นต์ของพื้นที่ทั้งหมดที่มากกว่า 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²__exclusive_economic_zone < 996 OFFSET 439",
    "question_en": "How many values for percentage of marine area are for the Atlantic marine ecozone with an exclusive economic zone area less than 996,439?",
    "question_th": "กี่ค่าเปอร์เซ็นต์ของพื้นที่ทางทะเลสำหรับเขตนิเวศทางทะเลแอตแลนติกที่มีพื้นที่เขตเศรษฐกิจจำเพาะน้อยกว่า 996,439",
    "context": "CREATE TABLE table_name_78 (percentage_of_marine_area__foreez_ VARCHAR, ecozone VARCHAR, area__km²__exclusive_economic_zone VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_29 WHERE high_assists = \"alvin williams (6)\"",
    "question_en": "What is the team when alvin williams (6) has the high assists?",
    "question_th": "ทีมจะเป็นอย่างไรเมื่ออัลวิน วิลเลียมส์ (6) มีแอสซิสต์สูง?",
    "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–96 (ot)\"",
    "question_en": "What is the Record for a game less than 3 and the score was l 91–96 (ot)?",
    "question_th": "สถิติสำหรับเกมที่น้อยกว่า 3 และคะแนนคือ l 91–96 (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_en": "What is the Date when the high points went to Dell Curry (17)?",
    "question_th": "วันที่คะแนนสูงสุดตกเป็นของ 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_en": "What is the Team when antonio davis (8) had the high rebounds?",
    "question_th": "ทีมจะเป็นอย่างไรเมื่ออันโตนิโอ เดวิส (8) รีบาวด์สูง?",
    "context": "CREATE TABLE table_name_53 (team VARCHAR, high_rebounds VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_56 WHERE date = \"apr 16, 1967\"",
    "question_en": "What is the Tournament with a Date that is apr 16, 1967?",
    "question_th": "การแข่งขันคืออะไรซึ่งมีวันที่คือวันที่ 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_en": "What is the Date with a Runner(s)-up that is jerry steelsmith?",
    "question_th": "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_en": "What kind of Obama that has a Source of rasmussen reports?",
    "question_th": "โอบามาแบบไหนที่มีแหล่งรายงานของรัสมุสเซน?",
    "context": "CREATE TABLE table_name_28 (obama VARCHAR, source VARCHAR)"
  },
  {
    "answer": "SELECT source FROM table_name_46 WHERE undecided = \"2%\"",
    "question_en": "Which Source has a Undecided of 2%?",
    "question_th": "แหล่งใดที่ยังไม่ได้ตัดสินใจ 2%?",
    "context": "CREATE TABLE table_name_46 (source VARCHAR, undecided VARCHAR)"
  },
  {
    "answer": "SELECT obama FROM table_name_87 WHERE undecided = \"1%\"",
    "question_en": "What kind of Obama has a Undecided of 1%?",
    "question_th": "โอบามาประเภทไหนที่ยังไม่ตัดสินใจ 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_en": "When has a Source of surveyusa and a Obama of 54%?",
    "question_th": "เมื่อมีแหล่งที่มาของ Surveyusa และโอบามา 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_en": "When has a Source of rasmussen reports?",
    "question_th": "เมื่อใดที่แหล่งข่าวของรัสมุสเซ่นรายงาน?",
    "context": "CREATE TABLE table_name_39 (date VARCHAR, source VARCHAR)"
  },
  {
    "answer": "SELECT source FROM table_name_94 WHERE clinton = \"39%\" AND undecided = \"7%\"",
    "question_en": "Which Source has a Clinton of 39% and a Undecided of 7%?",
    "question_th": "แหล่งที่มาใดมีคลินตัน 39% และยังไม่ตัดสินใจ 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_en": "What is the Date of Birth with a Block that is larger than 342?",
    "question_th": "วันเกิดที่มีบล็อกที่มีขนาดใหญ่กว่า 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_en": "What is the number of positions that have 2012 ratings of 0.92?",
    "question_th": "จำนวนตำแหน่งที่มีเรตติ้งปี 2555 ที่ 0.92 คือเท่าใด",
    "context": "CREATE TABLE table_name_21 (position VARCHAR)"
  },
  {
    "answer": "SELECT owner FROM table_name_96 WHERE 2012 = \"5.42\"",
    "question_en": "What is the owner of the channel that has a 2012 rating of 5.42?",
    "question_th": "เจ้าของช่องที่ได้เรตติ้งปี 2555 อยู่ที่ 5.42 คือใคร?",
    "context": "CREATE TABLE table_name_96 (owner VARCHAR)"
  },
  {
    "answer": "SELECT 2007 FROM table_name_28 WHERE position = 6",
    "question_en": "What is the 2007 rating of the channel with a position of 6?",
    "question_th": "เรตติ้งของช่องที่ 6 ในปี 2550 คือเท่าไร?",
    "context": "CREATE TABLE table_name_28 (position VARCHAR)"
  },
  {
    "answer": "SELECT channel FROM table_name_64 WHERE 2011 = \"8.5\"",
    "question_en": "What is the channel with a 2011 rating of 8.5?",
    "question_th": "ช่องใดที่มีเรตติ้งปี 2554 ที่ 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_en": "What is ASTC Member, when State is Arkansas, when AAM Member is No, and when AAM Accredited is Yes?",
    "question_th": "สมาชิก ASTC คืออะไร เมื่อรัฐคืออาร์คันซอ เมื่อสมาชิก AAM ไม่ใช่ และเมื่อ AAM Accredited คือ ใช่",
    "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_en": "What is City, when State is Florida, when AAM Member is No, and when AAM Accredited is No?",
    "question_th": "เมืองคืออะไร เมื่อรัฐคือฟลอริดา เมื่อสมาชิก AAM คือไม่ และเมื่อ AAM Accredited คือไม่",
    "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_en": "What is City, when ASTC Member is No, when State is California, and when AAM Member is Yes?",
    "question_th": "เมืองคืออะไร เมื่อสมาชิก ASTC เป็นไม่ เมื่อรัฐคือแคลิฟอร์เนีย และเมื่อใดสมาชิก AAM คือใช่",
    "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_en": "What is State, when AAM Accredited is No, when ASTC Member is No, and when City is Tulsa?",
    "question_th": "รัฐคืออะไร เมื่อ AAM Accredited เป็นไม่ เมื่อสมาชิก ASTC เป็นไม่ และเมื่อใดที่เมืองคือทัลซา",
    "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_en": "What is City, when State is California, when AAM Accredited is No, when ASTC Member is Yes, and when AAM Member is No?",
    "question_th": "เมืองคืออะไร เมื่อรัฐคือแคลิฟอร์เนีย เมื่อ AAM ที่ได้รับการรับรองคือไม่ เมื่อสมาชิก ASTC คือใช่ และเมื่อสมาชิก AAM คือไม่ใช่",
    "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_en": "What is AAM Member, when AAM Accredited is No, when State is California, when ASTC Member is Yes, and when City is Sacramento?",
    "question_th": "สมาชิก AAM คืออะไร เมื่อ AAM Accredited เป็น ไม่ เมื่อรัฐคือแคลิฟอร์เนีย เมื่อสมาชิก ASTC คือใช่ และเมื่อใดคือเมืองแซคราเมนโต",
    "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_en": "Who were the runners-up when the individual winner was Tiger Woods?",
    "question_th": "ใครคือรองชนะเลิศเมื่อผู้ชนะรายบุคคลคือ 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_en": "How many years was the individual winner from the United States was Tiger Woods?",
    "question_th": "ผู้ชนะรายบุคคลจากสหรัฐอเมริกาคือ 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_en": "What is the earliest year that the tournament was played in Cape Town, South Africa?",
    "question_th": "การแข่งขันจัดขึ้นที่เมืองเคปทาวน์ ประเทศแอฟริกาใต้ ปีแรกสุดคือปีใด",
    "context": "CREATE TABLE table_name_71 (year INTEGER, location VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_98 WHERE date = \"october 6\"",
    "question_en": "Who is the Driver, when the Date is October 6?",
    "question_th": "ใครคือคนขับ เมื่อถึงวันที่ 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_en": "What is the total number of Seasons, when the Engine is Cosworth, and when the Team is Kraco Racing?",
    "question_th": "จำนวนฤดูกาลทั้งหมดคือเท่าไร เมื่อเครื่องยนต์คือ Cosworth และเมื่อทีมคือ 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_en": "Who is the Driver, when the Engine is Chevrolet, and when the Date is October 3?",
    "question_th": "ใครคือคนขับ เครื่องยนต์คือเชฟโรเลตเมื่อใด และวันที่คือ 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_en": "What is the sum of Seasons, when the Team is Penske Racing, and when the Date is October 3?",
    "question_th": "ผลรวมของฤดูกาลจะเป็นอย่างไร เมื่อทีมเป็น Penske Racing และวันที่คือวันที่ 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_en": "What was the Year to Open for the Dandeung Bridge?",
    "question_th": "ปีที่เปิดให้เข้าชมสะพานดันดึงคือปีใด?",
    "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_en": "What is the Main span of the Qincaobei Bridge",
    "question_th": "ช่วงหลักของสะพาน Qincaobei คืออะไร",
    "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_en": "What is the Main span of the bridge from China with a Year to open of 2013 and Main span feet of 2,585?",
    "question_th": "ช่วงหลักของสะพานจากประเทศจีนที่มีปีที่จะเปิดในปี 2556 และช่วงหลักคือ 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_en": "Which republican ticket has stanley h. fuld as the Democratic ticket?",
    "question_th": "ตั๋วรีพับลิกันคนไหนมีสแตนลีย์เอช. เต็มเป็นตั๋วประชาธิปไตย?",
    "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_en": "What is the liberal ticket that has judith white as the socialist workers?",
    "question_th": "อะไรคือตั๋วเสรีนิยมที่มีจูดิธ ไวท์เป็นคนทำงานสังคมนิยม?",
    "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_en": "What socialist workers ticket has malcolm wilson as the Republican ticket?",
    "question_th": "ตั๋วของนักสังคมนิยมคนไหนที่มีมัลคอล์ม วิลสันเป็นตั๋วของพรรครีพับลิกัน",
    "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_en": "Which office has kieran o'doherty as the conservative ticket?",
    "question_th": "สำนักงานใดมี kieran o'doherty เป็นตั๋วอนุรักษ์นิยม?",
    "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_en": "What office has (none) as the socialist labor ticket, and stanley h. fuld as the liberal ticket?",
    "question_th": "สำนักงานใดมี (ไม่มี) เป็นตั๋วแรงงานสังคมนิยม และสแตนลีย์ เอช. เต็มไปด้วยตั๋วเสรีนิยมเหรอ?",
    "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_en": "If the call sign is w291ch what's the ERP W corresponding to that sign?",
    "question_th": "หากสัญญาณเรียกขานคือ w291ch ERP W ตรงกับสัญญาณนั้นคืออะไร",
    "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_en": "For the call sign w242at what's the city the license plate is registered to?",
    "question_th": "สำหรับสัญญาณเรียกขาน w242ที่เมืองไหน ทะเบียนทะเบียนอยู่ที่เมืองอะไร?",
    "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_en": "What's the Class for the city the license plate was issued in great barrington, massachusetts?",
    "question_th": "ป้ายทะเบียนที่ออกในเมืองเกรตแบร์ริงตัน รัฐแมสซาชูเซตส์ ระดับใดของเมือง?",
    "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_en": "How many gold have a bronze of 1, a rank smaller than 6, and a total less than 3?",
    "question_th": "ทองคำจำนวนเท่าใดที่มีเหรียญทองแดงเท่ากับ 1 อันดับที่น้อยกว่า 6 และทั้งหมดน้อยกว่า 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_en": "How many France bronze have a gold of more than 1 and a rank of 0?",
    "question_th": "มีกี่เหรียญทองแดงของฝรั่งเศสที่มีทองคำมากกว่า 1 และอันดับ 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_en": "How many gold have a silver of 1 and a bronze of 0?",
    "question_th": "ทองคำจำนวนหนึ่งมีเงิน 1 และทองแดง 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_en": "What is the Aircraft when Kabul was the location, unknown fatalities, and the tail number was ya-ban?",
    "question_th": "เครื่องบินคืออะไรเมื่อเป็นที่ตั้งของกรุงคาบูล ไม่ทราบผู้เสียชีวิต และหมายเลขหางคือย่าบ้าน?",
    "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_en": "What is the Fatalities when the tail number was unknown and in Kabul>",
    "question_th": "ผู้เสียชีวิตคืออะไรเมื่อไม่ทราบหมายเลขหางและในกรุงคาบูล>",
    "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_en": "What is the location for the an-12b aircraft?",
    "question_th": "ตำแหน่งของเครื่องบิน an-12b อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_50 (location VARCHAR, aircraft VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_15 WHERE fatalities = \"25/25\"",
    "question_en": "What location had 25/25 fatalities?",
    "question_th": "สถานที่ใดมีผู้เสียชีวิต 25/25 ราย?",
    "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_en": "What tail number was on the an-26, with 25/25 fatalities?",
    "question_th": "หมายเลขหางของเครื่องบิน An-26 มีผู้เสียชีวิต 25/25 ราย?",
    "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_en": "What type of aircraft was the plane with a tail number of ya-bao?",
    "question_th": "เครื่องบินที่มีเลขท้ายย่าเปาเป็นเครื่องบินประเภทใด",
    "context": "CREATE TABLE table_name_75 (aircraft VARCHAR, tail_number VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(points) FROM table_name_38 WHERE match > 18",
    "question_en": "What is the total number of Points from a Match that is larger than 18?",
    "question_th": "จำนวนคะแนนรวมจากการแข่งขันที่มากกว่า 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_en": "In what Season was the Series Formula Renault 3.5 series with less than 7 Races?",
    "question_th": "Series Formula Renault 3.5 series ที่มีการแข่งขันน้อยกว่า 7 รายการคือฤดูกาลใด",
    "context": "CREATE TABLE table_name_74 (season INTEGER, series VARCHAR, races VARCHAR)"
  },
  {
    "answer": "SELECT series FROM table_name_67 WHERE season = 2009",
    "question_en": "What was the Series in 2009?",
    "question_th": "ซีรีส์ในปี 2009 คืออะไร?",
    "context": "CREATE TABLE table_name_67 (series VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT wins FROM table_name_7 WHERE races > 16",
    "question_en": "How many Wins in the Year with more than 16 Races?",
    "question_th": "ชนะกี่ครั้งในปีที่มีการแข่งขันมากกว่า 16 ครั้ง?",
    "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_en": "In what Season were then less than 3 Races with less than 1 Win?",
    "question_th": "ในฤดูกาลใดที่มีการแข่งขันน้อยกว่า 3 รายการและชนะน้อยกว่า 1 ครั้ง?",
    "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_en": "Which 1st leg has a Team #1 of ummc ekaterinburg?",
    "question_th": "เลก 1 ไหนมีทีมอันดับ 1 ของ 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_en": "Which Team #2 has a Team #1 of gambrinus sika brno?",
    "question_th": "ทีม #2 ใดมีทีม #1 ของ 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–2\" AND venue = \"råsunda, stockholm\"",
    "question_en": "What is the Goal number in Råsunda, Stockholm with a Result of 2–2?",
    "question_th": "หมายเลขประตูในราซุนดา สตอกโฮล์ม โดยผลสกอร์ 2–2 คืออะไร?",
    "context": "CREATE TABLE table_name_80 (goal INTEGER, result VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_21 WHERE goal = 3",
    "question_en": "What is the Result of Goal number 3?",
    "question_th": "ผลลัพธ์ของเป้าหมายหมายเลข 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_en": "On what day was a game played at Reese Smith Field, with a score of 4-3?",
    "question_th": "แข่งกันวันไหนที่ รีส สมิธ ฟิลด์ ด้วยสกอร์ 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_en": "What was the score for the game played on May 10 at Alex Box Stadium?",
    "question_th": "เกมที่เล่นเมื่อวันที่ 10 พ.ค. ที่ อเล็กซ์ บ็อกซ์ สเตเดี้ยม ให้คะแนนเท่าไหร่?",
    "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_en": "What was the score for the game played at Sarge Frye Field?",
    "question_th": "เกมนี้เล่นที่ซาร์จ ฟราย ฟิลด์ ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_15 (score VARCHAR, site_stadium VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_16 WHERE record = \"5-7\"",
    "question_en": "On what date was a game played, which left the team with a record of 5-7?",
    "question_th": "แข่งวันไหนทีมเหลือสถิติ 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_en": "What was the score of the game played at Harmon Stadium on February 24?",
    "question_th": "เกมที่เล่นที่ฮาร์มอน สเตเดี้ยม เมื่อวันที่ 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_en": "Where was the game on May 9 played?",
    "question_th": "เกมวันที่ 9 พฤษภาคมเล่นที่ไหน?",
    "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_en": "What is the greatest position when the points are less than 21, and the played greater than 14?",
    "question_th": "ตำแหน่งที่ยิ่งใหญ่ที่สุดเมื่อแต้มน้อยกว่า 21 และแต้มที่เล่นมากกว่า 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_en": "What is the fewest lost with a difference of 9 and a less than 3 drawn?",
    "question_th": "อะไรคือการสูญเสียน้อยที่สุดโดยมีผลต่าง 9 และเสมอน้อยกว่า 3?",
    "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_en": "Team Estudantes Paulista with a position less than 4 has what average against?",
    "question_th": "ทีม Estudantes Paulista ที่มีตำแหน่งน้อยกว่า 4 มีค่าเฉลี่ยเทียบกับอะไร?",
    "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_en": "What was the margin of victory on Apr 8, 1979?",
    "question_th": "ชัยชนะในวันที่ 8 เมษายน พ.ศ. 2522 เป็นเท่าใด",
    "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_en": "What was the winning score when the margin of victory was 2 strokes and the runner-up was Pat Bradley?",
    "question_th": "สกอร์ชนะเมื่อมาร์จิ้นของชัยชนะอยู่ที่ 2 จังหวะ และรองชนะเลิศคือ แพท แบรดลีย์?",
    "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 = −5(69 - 69 - 73 = 211)",
    "question_en": "What was the margin of victory when the winning score was −5 (69-69-73=211)?",
    "question_th": "อะไรคือส่วนต่างของชัยชนะเมื่อคะแนนชนะคือ −5 (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 = −5(69 - 69 - 73 = 211)",
    "question_en": "Which tournament had a winning score of −5 (69-69-73=211)?",
    "question_th": "ทัวร์นาเมนต์ใดมีคะแนนชนะ −5 (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 = −6(69 - 69 - 73 - 71 = 282)",
    "question_en": "When was the winning score −6 (69-69-73-71=282)?",
    "question_th": "คะแนนชนะคือเมื่อใด −6 (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_en": "Who is the opponent of the game played on November 20, 1995?",
    "question_th": "คู่ต่อสู้ของเกมที่เล่นเมื่อวันที่ 20 พฤศจิกายน 2538 คือใคร?",
    "context": "CREATE TABLE table_name_66 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(grid) FROM table_name_67 WHERE name = \"jamie whincup\"",
    "question_en": "What is the highest Grid with a Name that is jamie whincup?",
    "question_th": "เจมี่ วินคัพ กริดสูงสุดที่มีชื่อคืออะไร?",
    "context": "CREATE TABLE table_name_67 (grid INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_48 WHERE laps = 5",
    "question_en": "What is the Team with a Lap that is 5?",
    "question_th": "ทีมที่มีรอบที่ 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_en": "What's the lowest round Justin Forsett was drafted in, with a draft pick larger than 233?",
    "question_th": "Justin Forsett ถูกดราฟท์รอบต่ำสุดที่เท่าไหร่ โดยดราฟต์เลือกได้มากกว่า 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_en": "What's the average round the position of RB was drafted?",
    "question_th": "ตำแหน่ง RB ที่ถูกร่างโดยเฉลี่ยคือเท่าไร?",
    "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_en": "What's the average round Red Bryant was drafted with a pick larger than 121?",
    "question_th": "ค่าเฉลี่ยรอบที่ Red Bryant ถูกดราฟท์โดยเลือกได้มากกว่า 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_en": "Can you tell me the Overall Record that has the Away Team of miami?",
    "question_th": "คุณช่วยบอกฉันถึงสถิติโดยรวมที่มีทีมเยือนของไมอามี่ได้ไหม?",
    "context": "CREATE TABLE table_name_46 (overall_record VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT overall_record FROM table_name_81 WHERE week = 3",
    "question_en": "Can you tell me the Overall Record that has the Week of 3?",
    "question_th": "คุณช่วยบอกฉันเกี่ยวกับบันทึกโดยรวมที่มีสัปดาห์ที่ 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_en": "Can you tell me the Divisional Record that has the Away Team of dallas?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าสถิติกองพลที่มีทีมเยือนดัลลัส?",
    "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_en": "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?",
    "question_th": "คุณช่วยบอกฉันถึงบันทึกโดยรวมที่มีสัปดาห์น้อยกว่า 16 และบันทึกดิวิชั่น (1-0) และทีมเยือนไมอามี่ได้ไหม",
    "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_en": "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?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าสัปดาห์ที่มีทีมเหย้าดีทรอยต์ และสถิติดิวิชั่น (3-0) และบันทึกโดยรวม (5-1) และทีมเยือนมินนิโซตา?",
    "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_en": "Who is the choreographer with the style pas de deux?",
    "question_th": "ใครคือนักออกแบบท่าเต้นสไตล์ 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_en": "What is the title of the person who started their reign in 1999?",
    "question_th": "ผู้ที่เริ่มครองราชย์ในปี 2542 มีพระนามว่าอะไร?",
    "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_en": "What is the date of birth of the person who started their reign in 1986?",
    "question_th": "วันเกิดของบุคคลที่เริ่มครองราชย์ในปี พ.ศ. 2529 คือวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_61 (Birth VARCHAR, start_of_reign VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(average) FROM table_name_23 WHERE goals < 73",
    "question_en": "What is the average number for goals less than 73?",
    "question_th": "จำนวนเฉลี่ยของเป้าหมายที่น้อยกว่า 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_en": "What is the total average for 1990-1995, and goals less than 90?",
    "question_th": "ค่าเฉลี่ยรวมสำหรับปี 1990-1995 และเป้าหมายน้อยกว่า 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_en": "What was the lowest Position for a Team with fewer than 3 Lost, a Difference of 1, and more than 7 games Played?",
    "question_th": "ตำแหน่งต่ำสุดสำหรับทีมที่แพ้น้อยกว่า 3 ครั้ง ผลต่าง 1 และเล่นเกมมากกว่า 7 เกมคือตำแหน่งใด",
    "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_en": "What is the sum of games Played by the Team Vasco Da Gama, with fewer than 12 Against?",
    "question_th": "ผลรวมของเกมที่เล่นโดยทีมวาสโก ดา กามา โดยมีจำนวนเกมต่อน้อยกว่า 12 เกมเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_12 (played INTEGER, team VARCHAR, against VARCHAR)"
  },
  {
    "answer": "SELECT difference FROM table_name_8 WHERE position < 2",
    "question_en": "What was the Difference of the Team that had a Position less than 2?",
    "question_th": "อะไรคือความแตกต่างของทีมที่มีตำแหน่งน้อยกว่า 2?",
    "context": "CREATE TABLE table_name_8 (difference VARCHAR, position INTEGER)"
  },
  {
    "answer": "SELECT attendance FROM table_name_54 WHERE date = \"november 21, 2004\"",
    "question_en": "Which attendance number was taken on november 21, 2004?",
    "question_th": "ผู้เข้าร่วมจำนวนใดที่ถ่ายเมื่อวันที่ 21 พฤศจิกายน พ.ศ. 2547",
    "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_en": "Which attendance number was taken in a week less than 16 when the Washington Redskins were the opponents?",
    "question_th": "จำนวนผู้เข้าร่วมใดที่ถ่ายในหนึ่งสัปดาห์น้อยกว่า 16 เมื่อวอชิงตัน เรดสกินส์เป็นคู่ต่อสู้",
    "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_en": "How many weeks had the Green Bay packers as opponents?",
    "question_th": "กรีนเบย์แพ็คเกอร์สเป็นคู่ต่อสู้กี่สัปดาห์?",
    "context": "CREATE TABLE table_name_74 (week INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_76 WHERE score = 71 - 67 = 138",
    "question_en": "What Country had a Score of 71-67=138?",
    "question_th": "ประเทศใดมีคะแนน 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_en": "What Country had a Score of 75-68=143?",
    "question_th": "ประเทศใดมีคะแนน 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_en": "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?",
    "question_th": "มีอินนิ่งทั้งหมดกี่อินนิ่งที่มีค่าเฉลี่ยต่ำกว่า 6.33, อัตราการตีต่ำกว่า 71.43, จ่ายบอลได้มากกว่า 36 ครั้ง และทำคะแนนได้น้อยกว่า 19 รัน",
    "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_en": "What is the number of averages having a balls faced over 297 and more than 7 innings?",
    "question_th": "จำนวนเฉลี่ยที่ลูกบอลเผชิญหน้ามากกว่า 297 และมากกว่า 7 อินนิงคือเท่าใด",
    "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_en": "What is the smallest number of innings with a strike rate of 72.05 and under 297 balls faced?",
    "question_th": "จำนวนอินนิ่งที่น้อยที่สุดที่มีอัตราการหยุดงาน 72.05 และต่ำกว่า 297 ลูกที่เผชิญหน้าคือเท่าใด",
    "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_en": "What is the sum of balls faced associated with a strike rate over 48.28, 3 innings, and an average under 5?",
    "question_th": "ผลรวมของลูกบอลที่เผชิญซึ่งสัมพันธ์กับอัตราการหยุดงานมากกว่า 48.28, 3 อินนิ่ง และค่าเฉลี่ยต่ำกว่า 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_en": "What is the Nation with a Date that is may 6, 1991?",
    "question_th": "ประเทศอะไรมีวันที่คือวันที่ 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_en": "What is the Record with a Date that is may 20, 1961?",
    "question_th": "บันทึกที่มีวันที่คือวันที่ 20 พฤษภาคม 1961 คืออะไร?",
    "context": "CREATE TABLE table_name_73 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT partner FROM table_name_46 WHERE outcome = \"winner\"",
    "question_en": "Who was the partner of the winner?",
    "question_th": "ใครคือหุ้นส่วนของผู้ชนะ?",
    "context": "CREATE TABLE table_name_46 (partner VARCHAR, outcome VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(place__posición_) FROM table_name_53 WHERE draw__pe_ > 2 AND team__equipo_ = \"paraíso\" AND won__pg_ > 6",
    "question_en": "How many Places (Posición) has a Draw (PE) larger than 2 and a Team (Equipo) of paraíso and a Won (PG) larger than 6?",
    "question_th": "มีกี่แห่ง (ตำแหน่ง) ที่มีเสมอ (PE) มากกว่า 2 และมีทีม (Equipo) ของparaísoและชนะ (PG) มากกว่า 6?",
    "context": "CREATE TABLE table_name_53 (place__posición_ 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_en": "How many league cups have yeovil town as the club, with a league less than 16?",
    "question_th": "สโมสรมีเยโอวิล ทาวน์ เป็นสโมสรกี่ลีกคัพ โดยมีลีกน้อยกว่า 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_en": "What is the average FA Cup that has gary jones as the player, and an FA trophy greater than 5?",
    "question_th": "เอฟเอ คัพ โดยเฉลี่ยที่มีแกรี่ โจนส์ เป็นนักเตะ และถ้วยเอฟเอมากกว่า 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_en": "What FA trophys have tony hemmings as the player, with a league greater than 15?",
    "question_th": "ถ้วยรางวัล FA รายการใดบ้างที่มีส่วนสำคัญในฐานะผู้เล่น โดยมีลีกมากกว่า 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_en": "What is the score where the country is Japan?",
    "question_th": "ประเทศญี่ปุ่นมีคะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_95 (score VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT province FROM table_name_82 WHERE capital = \"muju\"",
    "question_en": "Which province has muju as the capital?",
    "question_th": "จังหวัดใดมีมูจูเป็นเมืองหลวง",
    "context": "CREATE TABLE table_name_82 (province VARCHAR, capital VARCHAR)"
  },
  {
    "answer": "SELECT modern_equivalent FROM table_name_17 WHERE hanja = \"良州\"",
    "question_en": "What is the modern equivalent of 良州 in Hanja?",
    "question_th": "อะไรคือความทันสมัยที่เทียบเท่ากับ 良州 ในภาษาฮันจา?",
    "context": "CREATE TABLE table_name_17 (modern_equivalent VARCHAR, hanja VARCHAR)"
  },
  {
    "answer": "SELECT capital FROM table_name_21 WHERE hangul = \"양주\"",
    "question_en": "What is the capital of the province with 양주 in Hangul?",
    "question_th": "เมืองหลวงของจังหวัดที่มี 양ฮู ในภาษาอังกูลคืออะไร?",
    "context": "CREATE TABLE table_name_21 (capital VARCHAR, hangul VARCHAR)"
  },
  {
    "answer": "SELECT capital FROM table_name_88 WHERE hanja = \"漢州\"",
    "question_en": "What is the capital of the province with 漢州 in Hanja?",
    "question_th": "เมืองหลวงของจังหวัดที่มี 漢州 ในภาษาฮันจาคือเมืองอะไร",
    "context": "CREATE TABLE table_name_88 (capital VARCHAR, hanja VARCHAR)"
  },
  {
    "answer": "SELECT hanja FROM table_name_78 WHERE province = \"sakju\"",
    "question_en": "What is the Hanja for the sakju province?",
    "question_th": "ฮันจาสำหรับจังหวัดซักจูคืออะไร?",
    "context": "CREATE TABLE table_name_78 (hanja VARCHAR, province VARCHAR)"
  },
  {
    "answer": "SELECT MIN(top_25) FROM table_name_17 WHERE wins > 0",
    "question_en": "What is the fewest number of top-25s for events with more than 0 wins?",
    "question_th": "จำนวน 25 อันดับแรกน้อยที่สุดสำหรับกิจกรรมที่ชนะมากกว่า 0 คือเท่าใด",
    "context": "CREATE TABLE table_name_17 (top_25 INTEGER, wins INTEGER)"
  },
  {
    "answer": "SELECT MAX(top_10) FROM table_name_46 WHERE wins > 0",
    "question_en": "What is the highest number of top-10s in events with more than 0 wins?",
    "question_th": "จำนวนสูงสุด 10 อันดับแรกในอีเวนต์ที่มีการชนะมากกว่า 0 คือเท่าใด",
    "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_en": "What is the number of top-25s in events under 13, cuts made under 3, and 1 top-10?",
    "question_th": "จำนวนผู้เข้ารอบ 25 อันดับแรกในอีเวนต์อายุต่ำกว่า 13 ปี การตัดตัวต่ำกว่า 3 ครั้ง และ 1 อันดับแรกใน 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_en": "Which season had an average under 28, a rank under 10, and a partner of Janja Lesar?",
    "question_th": "ฤดูกาลใดที่มีค่าเฉลี่ยต่ำกว่า 28 ปี อันดับต่ำกว่า 10 และเป็นคู่หูของ 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_en": "What is the highest season that had rank under 1?",
    "question_th": "ฤดูกาลสูงสุดที่มีอันดับต่ำกว่า 1 คืออะไร?",
    "context": "CREATE TABLE table_name_45 (season INTEGER, rank INTEGER)"
  },
  {
    "answer": "SELECT professional_partner FROM table_name_29 WHERE season = 4",
    "question_en": "Who was the professional partner in season 4?",
    "question_th": "ใครคือหุ้นส่วนมืออาชีพในซีซั่น 4?",
    "context": "CREATE TABLE table_name_29 (professional_partner VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_name_65 WHERE team = \"detroit\"",
    "question_en": "Who had the highest rebounds against detroit?",
    "question_th": "ใครมีการรีบาวด์ต่อดีทรอยต์สูงสุด?",
    "context": "CREATE TABLE table_name_65 (high_rebounds VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(gold) FROM table_name_93 WHERE nation = \"uzbekistan (uzb)\"",
    "question_en": "How much gold received by nation of uzbekistan (uzb)?",
    "question_th": "ประเทศอุซเบกิสถาน (uzb) ได้รับทองคำเท่าไหร่?",
    "context": "CREATE TABLE table_name_93 (gold INTEGER, nation VARCHAR)"
  },
  {
    "answer": "SELECT MIN(gold) FROM table_name_68 WHERE silver < 0",
    "question_en": "Which team has the lowest gold and 0 silver?",
    "question_th": "ทีมไหนมีทองน้อยที่สุดและ 0 เหรียญเงิน?",
    "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_en": "How much gold when silver, bronze and total is smaller than 1?",
    "question_th": "ทองคำเท่าไรเมื่อเงิน ทองแดง และยอดรวมน้อยกว่า 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_en": "What is the ICAO with commenced operations before 1989?",
    "question_th": "ICAO คืออะไรที่เริ่มดำเนินการก่อนปี 2532?",
    "context": "CREATE TABLE table_name_2 (icao VARCHAR, commenced_operations INTEGER)"
  },
  {
    "answer": "SELECT MIN(commenced_operations) FROM table_name_90 WHERE callsign = \"nouvelair\"",
    "question_en": "What is the lowest commenced operations that has a nouvelair callsign?",
    "question_th": "การดำเนินการที่เริ่มต้นต่ำสุดที่มีสัญญาณเรียกใหม่คืออะไร?",
    "context": "CREATE TABLE table_name_90 (commenced_operations INTEGER, callsign VARCHAR)"
  },
  {
    "answer": "SELECT callsign FROM table_name_34 WHERE commenced_operations = 2011",
    "question_en": "What callsign has commenced operations in 2011?",
    "question_th": "Callsign ใดที่เริ่มดำเนินการในปี 2554",
    "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_en": "What language is used when the service is sky primafila 10 and the package/option is qualsiasi?",
    "question_th": "จะใช้ภาษาใดเมื่อบริการเป็น sky primafila 10 และแพ็คเกจ/ตัวเลือกคือ 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_en": "What is the content when the package/option is qualsiasi and sky primafila 14 is the television service?",
    "question_th": "เนื้อหาคืออะไรเมื่อแพ็คเกจ/ตัวเลือกเป็น qualsiasi และ sky primafila 14 เป็นบริการโทรทัศน์?",
    "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_en": "What is the HDTV that has television service of tv 8 mont blanc and content is general television?",
    "question_th": "HDTV ที่มีโทรทัศน์ให้บริการของ tv 8 mont blanc คืออะไร และมีเนื้อหาเป็นโทรทัศน์ทั่วไปหรือไม่?",
    "context": "CREATE TABLE table_name_26 (hdtv VARCHAR, content VARCHAR, television_service VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_64 WHERE iata = \"nkg\"",
    "question_en": "Which city's IATA is nkg?",
    "question_th": "IATA ของเมืองใดคือ 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_en": "Which airport is in Xinjiang province in the city Kuqa?",
    "question_th": "สนามบินใดอยู่ในจังหวัดซินเจียงในเมืองคูค่า?",
    "context": "CREATE TABLE table_name_45 (airport VARCHAR, province VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT province FROM table_name_21 WHERE iata = \"kix\"",
    "question_en": "Which province's IATA is kix?",
    "question_th": "IATA ของจังหวัดไหนคือ kix?",
    "context": "CREATE TABLE table_name_21 (province VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT airport FROM table_name_31 WHERE iata = \"pen\"",
    "question_en": "Which airport's IATA is pen?",
    "question_th": "IATA ของสนามบินใดเป็นปากกา",
    "context": "CREATE TABLE table_name_31 (airport VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_90 WHERE record = \"4:02.54\"",
    "question_en": "Which Event has a Record of 4:02.54?",
    "question_th": "เหตุการณ์ใดมีสถิติ 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_en": "Whcih Date has an Event of 3000 m?",
    "question_th": "Whcih Date มีเหตุการณ์ 3,000 m?",
    "context": "CREATE TABLE table_name_6 (date VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_20 WHERE date = \"23 february 1986\"",
    "question_en": "Which Record has a Date of 23 february 1986?",
    "question_th": "บันทึกใดมีวันที่ 23 กุมภาพันธ์ พ.ศ. 2529",
    "context": "CREATE TABLE table_name_20 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_95 WHERE record = \"8:39.49\"",
    "question_en": "Which Date has a Record of 8:39.49?",
    "question_th": "วันที่ใดมีสถิติ 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_en": "Which Record has a Date of 3 march 2013?",
    "question_th": "บันทึกใดมีวันที่ 3 มีนาคม 2013?",
    "context": "CREATE TABLE table_name_71 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT nation FROM table_name_84 WHERE record = \"15.16 m\"",
    "question_en": "Which Nation has a Record of 15.16 m?",
    "question_th": "ชาติไหนมีสถิติ 15.16 ม.?",
    "context": "CREATE TABLE table_name_84 (nation VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_5 WHERE goals > 8 AND apps = 52",
    "question_en": "What is the Nationality of the Player with more than 8 Goals and Apps of 52?",
    "question_th": "สัญชาติของผู้เล่นที่มีมากกว่า 8 ประตูและแอพจาก 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_en": "How many Apps did Player Gilberto with more than 1 Goals have?",
    "question_th": "ผู้เล่น Gilberto ที่ยิงได้มากกว่า 1 ประตูมีกี่แอป",
    "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_en": "On what date was the 4th round, with home team Itabuna, played?",
    "question_th": "รอบที่ 4 กับเจ้าบ้าน อิตาบูน่า ลงเล่นวันไหน?",
    "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_en": "In the 6th round match with home team Bahia, who was the away team?",
    "question_th": "ในเกมรอบที่ 6 กับเจ้าบ้าน บาเฮีย ทีมเยือนคือใคร?",
    "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_en": "For the 5th round match with away team of Bahia, what was the final score?",
    "question_th": "นัดที่ 5 กับทีมเยือน บาเฮีย สกอร์สุดท้ายเป็นอย่างไรบ้าง?",
    "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_en": "Which League has a Regular Season of 2nd, southeast?",
    "question_th": "ลีกใดมีฤดูกาลปกติที่ 2 ตะวันออกเฉียงใต้?",
    "context": "CREATE TABLE table_name_58 (league VARCHAR, regular_season VARCHAR)"
  },
  {
    "answer": "SELECT playoffs FROM table_name_99 WHERE regular_season = \"on hiatus.\"",
    "question_en": "Who Playoffs has a Regular Season of on hiatus.?",
    "question_th": "รอบตัดเชือกใครมีฤดูกาลปกติที่เว้นไว้?",
    "context": "CREATE TABLE table_name_99 (playoffs VARCHAR, regular_season VARCHAR)"
  },
  {
    "answer": "SELECT MIN(population) FROM table_name_17 WHERE city = \"kragerø\"",
    "question_en": "What is the population of Kragerø?",
    "question_th": "Kragerø มีประชากรเท่าใด",
    "context": "CREATE TABLE table_name_17 (population INTEGER, city VARCHAR)"
  },
  {
    "answer": "SELECT MAX(population) FROM table_name_91 WHERE town_status = \"2010\"",
    "question_en": "What is the highest population of a city that has a town status of 2010?",
    "question_th": "เมืองที่มีสถานะเมืองในปี 2010 มีประชากรมากที่สุดคือเมืองใด",
    "context": "CREATE TABLE table_name_91 (population INTEGER, town_status VARCHAR)"
  },
  {
    "answer": "SELECT MAX(population) FROM table_name_28 WHERE municipality = \"porsgrunn\"",
    "question_en": "What is the highest population within the municipality of Porsgrunn?",
    "question_th": "จำนวนประชากรสูงสุดในเขตเทศบาลพอร์สกรุนน์คือเท่าใด",
    "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_en": "What is the birthplace of the player who is 190 CM tall, plays the D position, and wears number 11?",
    "question_th": "บ้านเกิดของนักเตะส่วนสูง 190 ซม. เล่นตำแหน่ง D และสวมหมายเลข 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_en": "What's the total points that Scuderia Ferrari with a Ferrari V12 engine have before 1971?",
    "question_th": "คะแนนรวมที่ Scuderia Ferrari กับเครื่องยนต์ Ferrari V12 มีก่อนปี 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_en": "What's the least amount of points that Walter Wolf Racing had after 1974?",
    "question_th": "Walter Wolf Racing มีคะแนนน้อยที่สุดหลังจากปี 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_en": "What is the sum of Year(s), when Postion is 6th, and when Competition is Commonwealth Games?",
    "question_th": "ผลรวมของปีเมื่อตำแหน่งที่ 6 และเมื่อการแข่งขันเป็นกีฬาเครือจักรภพเป็นเท่าใด",
    "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_en": "What is the highest Year, when the Venue is Beijing, PR China?",
    "question_th": "ปีสูงสุดคือที่ไหนเมื่อสถานที่จัดงานคือปักกิ่ง สาธารณรัฐประชาชนจีน?",
    "context": "CREATE TABLE table_name_54 (year INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT AVG(year) FROM table_name_89 WHERE competition = \"oceania youth championships\"",
    "question_en": "What is the average Year, when Competition is Oceania Youth Championships?",
    "question_th": "ปีเฉลี่ยคือเท่าไร เมื่อการแข่งขันคือ Oceania Youth Championships?",
    "context": "CREATE TABLE table_name_89 (year INTEGER, competition VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_94 WHERE position = \"4th\"",
    "question_en": "What is Event, when Position is 4th?",
    "question_th": "เหตุการณ์คืออะไร เมื่อตำแหน่งอยู่ที่ 4?",
    "context": "CREATE TABLE table_name_94 (event VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_87 WHERE format = \"cd\"",
    "question_en": "What is the Date with a Format that is cd?",
    "question_th": "วันที่ที่มีรูปแบบที่เป็นซีดีคืออะไร?",
    "context": "CREATE TABLE table_name_87 (date VARCHAR, format VARCHAR)"
  },
  {
    "answer": "SELECT catalog FROM table_name_9 WHERE date = \"march 13, 2002\"",
    "question_en": "What is the Catalog with a Date that is march 13, 2002?",
    "question_th": "แค็ตตาล็อกที่มีวันที่ 13 มีนาคม 2545 คืออะไร",
    "context": "CREATE TABLE table_name_9 (catalog VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_45 WHERE catalog = \"mhcl-20017\"",
    "question_en": "What is the Label with a Catalog that is mhcl-20017?",
    "question_th": "ฉลากพร้อมแค็ตตาล็อกที่เป็น 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_en": "What is the Catalog with a Date that is february 20, 2002?",
    "question_th": "แค็ตตาล็อกที่มีวันที่ 20 กุมภาพันธ์ 2545 คืออะไร",
    "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_en": "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?",
    "question_th": "คือน้ำหนักที่เบาที่สุด (กก.) เมื่อหมายเลขเสื้อมากกว่า 22 เมื่อตำแหน่งเป็น F และวันเกิดคือวันที่ 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_en": "What is the Position, when the Birthplace is Buffalo, New York?",
    "question_th": "ตำแหน่งคือเมื่อสถานที่เกิดคือบัฟฟาโล รัฐนิวยอร์ก",
    "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_en": "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?",
    "question_th": "สถานที่เกิดคืออะไร เมื่อหมายเลขเสื้อน้อยกว่า 18 เมื่อส่วนสูง (ซม.) มากกว่า 185 และเมื่อวันเกิดคือวันที่ 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_en": "What was the final score for the game with 65,309 people in attendance?",
    "question_th": "คะแนนสุดท้ายของเกมที่มีผู้เข้าร่วม 65,309 คนเป็นเท่าใด",
    "context": "CREATE TABLE table_name_28 (final_score VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT AVG(week) FROM table_name_58 WHERE opponent = \"chicago bears\"",
    "question_en": "What average week number had the Chicago bears as the opponent?",
    "question_th": "ชิคาโกหมีเป็นคู่ต่อสู้ในจำนวนสัปดาห์โดยเฉลี่ยเท่าใด",
    "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_en": "What is the record for the game against New England Patriots at the Rich Stadium?",
    "question_th": "สถิติเกมกับนิว อิงแลนด์ แพทริออตส์ ที่ริช สเตเดียม เป็นอย่างไรบ้าง?",
    "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_en": "What did the Dallara chassis with a 5 start in 2006 finish?",
    "question_th": "แชสซีของ Dallara ที่ออกสตาร์ท 5 ครั้งในปี 2549 เสร็จสิ้นอย่างไร",
    "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_en": "What is the chassis of the Honda Engine from 2008?",
    "question_th": "แชสซีของเครื่องยนต์ฮอนด้าตั้งแต่ปี 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_en": "What is the earliest year of the Honda Engine with a finish of 4?",
    "question_th": "เครื่องยนต์ฮอนด้าจบที่ 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_en": "What was 2002, when 2008 was, \"career statistics\"?",
    "question_th": "ปี 2545 คืออะไร เมื่อปี 2551 เป็น \"สถิติอาชีพ\"?",
    "context": "CREATE TABLE table_name_6 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2009 FROM table_name_5 WHERE 2001 = \"not masters series\"",
    "question_en": "What was 2009, when 2001 was, \"not masters series\"?",
    "question_th": "ปี 2009 คืออะไร เมื่อปี 2001 เป็น \"ไม่ใช่ซีรีส์ระดับปรมาจารย์\"?",
    "context": "CREATE TABLE table_name_5 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_40 WHERE 2005 = \"2r\" AND 2003 = \"2r\"",
    "question_en": "What was 2011, when 2005 was 2R, and when 2003 was 2R?",
    "question_th": "ปี 2554 คืออะไร เมื่อปี 2548 เป็น 2R และปี 2546 เป็น 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_en": "What was 2009, when 2012 was A, when 2003 was A, and then the Tournament was the Madrid Masters?",
    "question_th": "ปี 2009 คืออะไร เมื่อปี 2012 เป็น A เมื่อปี 2003 เป็น A แล้วทัวร์นาเมนต์คือ Madrid Masters",
    "context": "CREATE TABLE table_name_18 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2002 FROM table_name_71 WHERE 2011 = \"atp masters series\"",
    "question_en": "What was 2002, when 2011 was, \"atp masters series\"?",
    "question_th": "ปี 2002 คืออะไร เมื่อปี 2011 เป็น \"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_en": "What was the lowest wins of Larry Nelson, who ranked less than 5?",
    "question_th": "แลร์รี เนลสัน ผู้ชนะอันดับต่ำกว่า 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_en": "What is the sum of the earnings for rank 3?",
    "question_th": "ผลรวมของรายได้สำหรับอันดับ 3 เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_39 (earnings__ INTEGER, rank VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_66 WHERE rank > 4",
    "question_en": "What is the country is ranked more than 4?",
    "question_th": "ประเทศใดติดอันดับมากกว่า 4?",
    "context": "CREATE TABLE table_name_66 (country VARCHAR, rank INTEGER)"
  },
  {
    "answer": "SELECT SUM(week) FROM table_name_70 WHERE attendance = \"53,147\"",
    "question_en": "What the total of Week with attendance of 53,147",
    "question_th": "ยอดรวมของสัปดาห์มีผู้เข้าร่วม 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_en": "What is the lowest week for December 26, 1999",
    "question_th": "สัปดาห์ที่ต่ำสุดของวันที่ 26 ธันวาคม 2542 คือเท่าใด",
    "context": "CREATE TABLE table_name_31 (week INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_90 WHERE races = 6 AND team = \"australia\"",
    "question_en": "What season has 6 races and the team is Australia?",
    "question_th": "ฤดูกาลอะไรมี 6 สนาม และทีมคือออสเตรเลีย?",
    "context": "CREATE TABLE table_name_90 (season VARCHAR, races VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(races) FROM table_name_15 WHERE wins > 8",
    "question_en": "What is the total number of Races when there were more than 8 wins?",
    "question_th": "จำนวนการแข่งขันทั้งหมดเมื่อมีการชนะมากกว่า 8 ครั้งเป็นเท่าใด",
    "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_en": "Who's the Socialist ticket with a Republican ticket of john a. may?",
    "question_th": "ตั๋ว Who's the Socialist กับตั๋ว Republican ของ John A. อาจ?",
    "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_en": "Who's the Republican ticket with a Democratic ticket of m. william bray?",
    "question_th": "ตั๋วพรรครีพับลิกันคือใคร กับตั๋วประชาธิปไตยของม. วิลเลียม เบรย์?",
    "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_en": "Who's the Socialist ticket with a Democratic ticket of herbert h. lehman?",
    "question_th": "ตั๋ว Who's the Socialist กับตั๋วประชาธิปไตยของ Herbert H. เลห์แมน?",
    "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_en": "Who's the Republican ticket with a Socialist ticket of frank r. crosswaith?",
    "question_th": "ตั๋วของพรรครีพับลิกันคือใครกับตั๋วสังคมนิยมของแฟรงค์อาร์ ขวาง?",
    "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_en": "Who's the Republican ticket with a Socialist ticket of edna mitchell blue?",
    "question_th": "ตั๋วพรรครีพับลิกันกับตั๋วสังคมนิยมของ 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_en": "what's the earliest year that serena williams had more than 2 sets?",
    "question_th": "ปีแรกสุดที่เซเรน่า วิลเลียมส์มีมากกว่า 2 ชุดคือปีไหน",
    "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_en": "what's the earliest year that the wimbledon opponent was zheng jie?",
    "question_th": "เจิ้งเจี๋ย คู่ต่อสู้วิมเบิลดันคือปีแรกสุดคือปีใด?",
    "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_en": "what year was the opponent caroline garcia?",
    "question_th": "แคโรไลน์ การ์เซีย คู่ต่อสู้คือปีไหน?",
    "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_en": "what's the most recent year that samantha stosur was the opponent with 20 aces and having played more than 2 sets?",
    "question_th": "ปีล่าสุดที่ samantha stosur เป็นคู่ต่อสู้ที่มีเอซ 20 เอซและเล่นมากกว่า 2 เซตคือปีใด",
    "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_en": "what year was the memphis event?",
    "question_th": "งานเมมฟิสคือปีไหน?",
    "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_en": "What season did the player who had the number 26 play on who came from far eastern?",
    "question_th": "นักเตะหมายเลข 26 ลงเล่นในฤดูกาลใดที่มาจากแดนตะวันออกไกล?",
    "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_en": "What season did the player who came from Cebu play in?",
    "question_th": "นักเตะที่มาจากเซบูเล่นในฤดูกาลไหนครับ?",
    "context": "CREATE TABLE table_name_64 (season VARCHAR, school_club_team VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_69 WHERE year = 2012",
    "question_en": "What was the country in the year 2012?",
    "question_th": "ปี 2555 คือประเทศอะไร?",
    "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_en": "In what year was Letecke Zavody N.P., Jinonice the manufacturer?",
    "question_th": "Letecke Zavody NP, Jinonice เป็นผู้ผลิตในปีใด",
    "context": "CREATE TABLE table_name_90 (year VARCHAR, manufacturer VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_42 WHERE engine_make_capacity = \"jawa 350cc\"",
    "question_en": "What country had the car with the Jawa 350cc engine?",
    "question_th": "รถยี่ห้ออะไรที่ใช้เครื่องยนต์ Jawa 350cc?",
    "context": "CREATE TABLE table_name_42 (country VARCHAR, engine_make_capacity VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_34 WHERE engine_make_capacity = \"čz 171cc\"",
    "question_en": "In what country was the car with the čz 171cc engine?",
    "question_th": "รถที่ใช้เครื่องยนต์ čz 171cc เป็นรถในประเทศใด",
    "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_en": "What is the name of the car that was made in the years 1956-1958?",
    "question_th": "รถที่ผลิตในปี 2499-2501 ชื่ออะไร?",
    "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_en": "What is the name of the car manufactured by Letecke Zavody N.P., Jinonice?",
    "question_th": "รถยนต์ที่ผลิตโดย Letecke Zavody NP, 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_en": "Who manufactured the car with the jawa 249cc engine that was made in the years 1956-1963?",
    "question_th": "ใครเป็นผู้ผลิตรถยนต์ด้วยเครื่องยนต์ จาวา 249cc ที่ผลิตในปี 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_en": "What is the Set 2 with a Date that is jun 29?",
    "question_th": "ชุดที่ 2 มีวันที่ 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_en": "What is the Set 1 with a Set 2 that is 25-19?",
    "question_th": "ชุดที่ 1 กับชุดที่ 2 คือ 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_en": "What is the Set 5 with a Date that is jun 29?",
    "question_th": "ชุดที่ 5 มีวันที่ 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_en": "When was construction completed that was listed on 09/21/1984 and a Deleted of 11/04/1999?",
    "question_th": "การก่อสร้างแล้วเสร็จเมื่อใดซึ่งจดทะเบียนเมื่อวันที่ 21/09/1984 และถูกลบเมื่อ 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 = \"–\" AND name = \"st. maries creosote\"",
    "question_en": "What is the partially deleted result for a completed construction of m– in St. Maries Creosote?",
    "question_th": "ผลลัพธ์ที่ถูกลบบางส่วนสำหรับการก่อสร้าง m– ใน 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_en": "What is the partially deleted result for Bunker Hill Mining & Metallurgical?",
    "question_th": "ผลลัพธ์ที่ถูกลบบางส่วนสำหรับ 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 = \"–\" AND county = \"valley\"",
    "question_en": "What is the partially deleted result for a deleted of m– in Valley?",
    "question_th": "ผลลัพธ์ที่ถูกลบบางส่วนสำหรับการลบ m– ใน 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_en": "How many matches ended with more than 22 points?",
    "question_th": "จบกี่แมทช์มีมากกว่า 22 แต้ม?",
    "context": "CREATE TABLE table_name_83 (match INTEGER, points INTEGER)"
  },
  {
    "answer": "SELECT 1965 FROM table_name_81 WHERE 1967 = \"7\"",
    "question_en": "What is the value in 1965 when 7 is the value for 1967?",
    "question_th": "ค่าในปี 1965 เป็นเท่าใดเมื่อ 7 คือค่าสำหรับปี 1967?",
    "context": "CREATE TABLE table_name_81 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1971 FROM table_name_65 WHERE 1969 = \"30\"",
    "question_en": "What is the value in 1971 when 30 is the value for 1969?",
    "question_th": "ค่าในปี 1971 คืออะไรเมื่อ 30 คือค่าสำหรับปี 1969?",
    "context": "CREATE TABLE table_name_65 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1966 FROM table_name_72 WHERE 1969 = \"0\"",
    "question_en": "What was the value in 1966 with a 0 value in 1969?",
    "question_th": "มูลค่าในปี 1966 โดยมีค่า 0 ในปี 1969 คืออะไร?",
    "context": "CREATE TABLE table_name_72 (Id VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_68 WHERE moving_to = \"arminia bielefeld\"",
    "question_en": "Who was the player moving to Arminia Bielefeld?",
    "question_th": "นักเตะคนไหนที่ย้ายไปอาร์มิเนีย บีเลเฟลด์?",
    "context": "CREATE TABLE table_name_68 (name VARCHAR, moving_to VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_11 WHERE winning_score = –9(69 - 72 - 68 - 70 = 279)",
    "question_en": "What tournament had a Winning score of –9 (69-72-68-70=279)?",
    "question_th": "ทัวร์นาเมนต์ใดมีคะแนนชนะ –9 (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_en": "What was the winning score of the Greater Vancouver Open tournament?",
    "question_th": "คะแนนชนะของทัวร์นาเมนต์ Greater Vancouver Open คืออะไร?",
    "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 = –13(68 - 70 - 66 - 71 = 275)",
    "question_en": "Which runner(s)-up had a Winning score of –13 (68-70-66-71=275) and a Margin of victory of 3 strokes?",
    "question_th": "รองชนะเลิศคนไหนมีคะแนนชนะที่ –13 (68-70-66-71=275) และมาร์จิ้นแห่งชัยชนะ 3 สโตรค?",
    "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_en": "What was the Margin of victory in the southwest golf classic Tournament?",
    "question_th": "อะไรคือส่วนต่างของชัยชนะในการแข่งขันกอล์ฟคลาสสิกตะวันตกเฉียงใต้?",
    "context": "CREATE TABLE table_name_84 (margin_of_victory VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT margin_of_victory FROM table_name_66 WHERE winning_score = –9(69 - 72 - 68 - 70 = 279)",
    "question_en": "When the Winning score was –9 (69-72-68-70=279), what was the Margin of victory?",
    "question_th": "เมื่อคะแนนชนะคือ –9 (69-72-68-70=279) อะไรคือ 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_en": "What height has a floor count less than 25?",
    "question_th": "ความสูงใดที่นับพื้นน้อยกว่า 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_en": "What state/territory has 121 m as the height?",
    "question_th": "รัฐ/เขตปกครองใดมีความสูง 121 เมตร",
    "context": "CREATE TABLE table_name_58 (state___territory VARCHAR, height VARCHAR)"
  },
  {
    "answer": "SELECT state___territory FROM table_name_85 WHERE building = \"lovett tower\"",
    "question_en": "What state/territory has lovett tower as the building?",
    "question_th": "รัฐ/เขตปกครองใดมีหอคอยเลิฟเวตต์เป็นอาคาร",
    "context": "CREATE TABLE table_name_85 (state___territory VARCHAR, building VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_86 WHERE opponent = \"oakland raiders\"",
    "question_en": "What was the date of the game against Oakland Raiders?",
    "question_th": "เกมกับโอ๊คแลนด์ เรดเดอร์สคือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_86 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_59 WHERE wins = \"2\"",
    "question_en": "What year has 2 wins?",
    "question_th": "ปีไหนมี 2 ชัยชนะ?",
    "context": "CREATE TABLE table_name_59 (year VARCHAR, wins VARCHAR)"
  },
  {
    "answer": "SELECT success_rate FROM table_name_52 WHERE year = \"2012\"",
    "question_en": "What is the success rate for the year 2012?",
    "question_th": "อัตราความสำเร็จในปี 2555 คืออะไร?",
    "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_en": "What was the win for 4 matches with a success rate of 25%?",
    "question_th": "ชนะ 4 นัดด้วยอัตราความสำเร็จ 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_en": "what was the win for the 6 matches?",
    "question_th": "ชัยชนะทั้ง 6 นัดเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_17 (wins VARCHAR, matches VARCHAR)"
  },
  {
    "answer": "SELECT losses FROM table_name_40 WHERE matches = \"5\"",
    "question_en": "What is the losses for the 5 matches?",
    "question_th": "5 นัดนี้แพ้ขนาดไหน?",
    "context": "CREATE TABLE table_name_40 (losses VARCHAR, matches VARCHAR)"
  },
  {
    "answer": "SELECT losses FROM table_name_73 WHERE year = \"2012\"",
    "question_en": "What is the losses for the year 2012?",
    "question_th": "ขาดทุนในปี 2555 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_73 (losses VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT AVG(total) FROM table_name_77 WHERE gold > 4",
    "question_en": "What is the average Total with a Gold that is larger than 4?",
    "question_th": "ผลรวมเฉลี่ยที่มีทองคำมากกว่า 4 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_77 (total INTEGER, gold INTEGER)"
  },
  {
    "answer": "SELECT AVG(total) FROM table_name_46 WHERE bronze > 1",
    "question_en": "What is the average Total with a Bronze that is larger than 1?",
    "question_th": "ผลรวมเฉลี่ยกับเหรียญทองแดงที่มากกว่า 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_en": "Who were the Brazil scorers for the World Cup Competition with a 1-2 score?",
    "question_th": "ใครคือผู้ทำประตูบราซิลในการแข่งขันฟุตบอลโลกด้วยสกอร์ 1-2?",
    "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_en": "Which competition had a 4-3 score?",
    "question_th": "การแข่งขันใดมีสกอร์ 4-3?",
    "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_en": "What is the highest Top-5 that has 18 or more events with a Top-25 of 23?",
    "question_th": "อะไรคือ 5 อันดับแรกสูงสุดที่มี 18 เหตุการณ์ขึ้นไปโดยมี 25 อันดับแรกจาก 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_en": "What is the lowest cuts made that had a Top-25 less than 6 and wins greater than 0?",
    "question_th": "การปรับลดต่ำสุดที่มี 25 อันดับแรกน้อยกว่า 6 และชนะมากกว่า 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_en": "What race did Glenn Seton win on the Sandown International Raceway circuit?",
    "question_th": "Glenn Seton ชนะการแข่งขันรายการใดในสนาม Sandown International Raceway",
    "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_en": "What date was the race at Oran Park ran?",
    "question_th": "แข่งที่ ออราน พาร์ค วันไหนครับ?",
    "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_en": "What is the largest number of assists for the second rank when there were less than 2 games?",
    "question_th": "จำนวนแอสซิสต์มากที่สุดสำหรับอันดับสองเมื่อมีน้อยกว่า 2 เกมคือเท่าไร?",
    "context": "CREATE TABLE table_name_71 (assists INTEGER, rank VARCHAR, games VARCHAR)"
  },
  {
    "answer": "SELECT MIN(rank) FROM table_name_52 WHERE games > 2",
    "question_en": "What is the smallest rank when there are more than 2 games?",
    "question_th": "อันดับน้อยที่สุดเมื่อมีมากกว่า 2 เกมคือเท่าไร?",
    "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_en": "What is the mean number of games for pablo prigioni when there are more than 14 assists?",
    "question_th": "จำนวนเกมเฉลี่ยของปาโบล ปริจิโอนี ที่มีมากกว่า 14 แอสซิสต์เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_88 (games INTEGER, name VARCHAR, assists VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_name_35 WHERE vehicles__1209_ = 57",
    "question_en": "What region has 57 vehicles?",
    "question_th": "ภูมิภาคใดมี 57 คัน?",
    "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_en": "What was the Score after 1991 in Category IVA?",
    "question_th": "คะแนนหลังจากปี 1991 ในหมวด IVA คืออะไร",
    "context": "CREATE TABLE table_name_98 (score VARCHAR, year VARCHAR, category VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_25 WHERE year = 2002",
    "question_en": "What was the Score in 2002?",
    "question_th": "คะแนนในปี 2545 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_25 (score VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT category FROM table_name_19 WHERE year < 1995",
    "question_en": "What was the Category before 1995?",
    "question_th": "หมวดหมู่คืออะไรก่อนปี 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_en": "What was the Category after 1991 with a Score of 7-5, 6-7, 6-2?",
    "question_th": "หมวดหมู่อะไรหลังจากปี 1991 ด้วยคะแนน 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_en": "What was the issue date for the song by Paul Mccartney and Michael Jackson?",
    "question_th": "วันที่ออกเพลงของ Paul McCartney และ 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_en": "What is the smallest number of seats with INC as an election winner and BJP incumbent?",
    "question_th": "จำนวนที่นั่งที่น้อยที่สุดโดย INC ในฐานะผู้ชนะการเลือกตั้งและผู้ดำรงตำแหน่ง BJP คือเท่าใด",
    "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_en": "Who was the election winner with a BJP incumbent in Chhattisgarh?",
    "question_th": "ใครคือผู้ชนะการเลือกตั้งโดยมี BJP ดำรงตำแหน่งใน 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_en": "Which country has an IATA of EVN?",
    "question_th": "ประเทศใดมี IATA ของ 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_en": "What is the name of the airport located in Russia with an IATA of AER?",
    "question_th": "สนามบินที่ตั้งอยู่ในรัสเซียซึ่งมี IATA เป็น 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_en": "What is the name of the airport located in Russia with an IATA of KRR?",
    "question_th": "สนามบินที่ตั้งอยู่ในรัสเซียซึ่งมี IATA เป็น KRR ชื่อสนามบินอะไร",
    "context": "CREATE TABLE table_name_30 (airport VARCHAR, country VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT airport FROM table_name_40 WHERE icao = \"ulli\"",
    "question_en": "What is the name of the airport with an ICAO of ULLI?",
    "question_th": "สนามบินที่มี ICAO ของ ULLI ชื่อสนามบินอะไร?",
    "context": "CREATE TABLE table_name_40 (airport VARCHAR, icao VARCHAR)"
  },
  {
    "answer": "SELECT icao FROM table_name_80 WHERE country = \"armenia\"",
    "question_en": "What is the ICAO for the destination in Armenia?",
    "question_th": "ICAO สำหรับจุดหมายปลายทางในอาร์เมเนียคืออะไร?",
    "context": "CREATE TABLE table_name_80 (icao VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT airport FROM table_name_68 WHERE iata = \"kuf\"",
    "question_en": "What is the name of the airport with an IATA of KUF?",
    "question_th": "ชื่อสนามบินที่มี IATA เป็น KUF คืออะไร?",
    "context": "CREATE TABLE table_name_68 (airport VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_84 WHERE authors = \"del corro\"",
    "question_en": "What is the status of Author Del Corro?",
    "question_th": "สถานะของผู้แต่ง Del Corro คืออะไร?",
    "context": "CREATE TABLE table_name_84 (status VARCHAR, authors VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_65 WHERE authors = \"molnar\"",
    "question_en": "What is the location of the authors of Molnar?",
    "question_th": "ที่ตั้งของผู้เขียน Molnar อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_65 (location VARCHAR, authors VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_96 WHERE name = \"prenocephale\"",
    "question_en": "What is the status of Prenocephale?",
    "question_th": "สถานะของ 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_en": "What is the novel that has a valid status, located in Mongolia, and named Prenocephale?",
    "question_th": "นวนิยายที่มีสถานะถูกต้องตั้งอยู่ในมองโกเลียและชื่อ 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_en": "What is the novelty of Tylocephale?",
    "question_th": "ความแปลกใหม่ของ 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_en": "Which team 1 has vfl gummersbach as team 2?",
    "question_th": "ทีมไหน 1 มี vfl กุมเมอร์สบัค เป็นทีม 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_en": "Which team 1 has cbm valladolid as team 2?",
    "question_th": "ทีมไหน 1 มี cbm บายาโดลิดเป็นทีม 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_en": "What 2nd leg has rk gold club kozina as team 1?",
    "question_th": "เลก 2 ไหนมี rk gold club kozina เป็นทีม 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_en": "What 1st leg has 52-70 as the agg.?",
    "question_th": "ขาที่ 1 มี 52-70 เป็น agg.?",
    "context": "CREATE TABLE table_name_8 (agg VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_72 WHERE date = \"october 10, 2004\"",
    "question_en": "What was the surface for October 10, 2004?",
    "question_th": "พื้นผิวของวันที่ 10 ตุลาคม พ.ศ. 2547 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_72 (surface VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_94 WHERE opponent = \"roger federer\"",
    "question_en": "What was the surface for the opponent Roger Federer?",
    "question_th": "พื้นผิวของคู่ต่อสู้ 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_en": "How many years was the 400 m event in the olympic games?",
    "question_th": "การแข่งขันวิ่ง 400 เมตรในโอลิมปิกเกมส์มีกี่ปี?",
    "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_en": "How many were in attendance of the game with l 26-21 result?",
    "question_th": "เกมนี้มีคนเข้าร่วมทั้งหมดกี่คนและผลการแข่งขัน l 26-21?",
    "context": "CREATE TABLE table_name_28 (attendance VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_64 WHERE attendance = \"37,845\"",
    "question_en": "Who is the opponent for the game with 37,845 people in attendance?",
    "question_th": "ใครคือคู่ต่อสู้ในเกมที่มีผู้เข้าร่วม 37,845 คน?",
    "context": "CREATE TABLE table_name_64 (opponent VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT silver FROM table_name_11 WHERE gold = 2 AND bronze > 2",
    "question_en": "How many silver medals were there with 2 gold medals and more than 2 bronze medals?",
    "question_th": "มีเหรียญเงินทั้งหมด 2 เหรียญทอง และมากกว่า 2 เหรียญทองแดง มีทั้งหมดกี่เหรียญ?",
    "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_en": "What is the smallest total number of medals for rank 11 and more than 0 silver medals?",
    "question_th": "จำนวนเหรียญรวมน้อยที่สุดสำหรับอันดับ 11 และมากกว่า 0 เหรียญเงินคือเท่าใด",
    "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_en": "What is the sum of all total medals with more than 2 bronze medals and more than 1 gold medal for the United States?",
    "question_th": "ผลรวมของเหรียญรางวัลทั้งหมดที่มีมากกว่า 2 เหรียญทองแดง และมากกว่า 1 เหรียญทอง สำหรับประเทศสหรัฐอเมริกาเป็นเท่าใด",
    "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_en": "What is the largest number of gold medals for Canada with more than 7 bronze medals?",
    "question_th": "แคนาดาได้เหรียญทองมากที่สุดโดยได้มากกว่า 7 เหรียญทองแดงคือข้อใด",
    "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_en": "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?",
    "question_th": "ผลรวมของเหรียญเงินทั้งหมดที่มีน้อยกว่า 23 เหรียญและมากกว่า 3 เหรียญทองแดงสำหรับสหรัฐอเมริกาเป็นเท่าใด",
    "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_en": "When was Steve Williams in Zurich and his result was 10.07?",
    "question_th": "Steve Williams มาที่ซูริกเมื่อใดและผลการแข่งขันของเขาคือ 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_en": "What is the largest number lost with 0 draws and less than 12 points for Gwardia Katowice?",
    "question_th": "เลขไหนที่เสียมากที่สุดโดยเสมอ 0 และน้อยกว่า 12 แต้มสำหรับ กวาร์เดีย คาโตวีตเซ?",
    "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_en": "What is the highest number of draws with 6 losses and less than 15 points?",
    "question_th": "จำนวนการเสมอสูงสุดโดยแพ้ 6 ครั้งและน้อยกว่า 15 แต้มคือเท่าใด?",
    "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_en": "How many draws correspond to more than 11 losses in a match less than 14?",
    "question_th": "เสมอกันกี่ครั้งถึงแพ้มากกว่า 11 ครั้งในการแข่งขันที่น้อยกว่า 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_en": "What is the Director of Children of Sarajevo?",
    "question_th": "ผู้อำนวยการ 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_en": "What is the Result of the 2010 (83rd) Ceremony?",
    "question_th": "ผลพิธีพุทธาภิเษก ประจำปี 2553 (ครั้งที่ 83) เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_11 (result VARCHAR, year__ceremony_ VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_77 WHERE year__ceremony_ = \"2013 (86th)\"",
    "question_en": "What is the Result of the 2013 (86th) Ceremony?",
    "question_th": "ผลพิธีพุทธาภิเษก ประจำปี 2556 (ครั้งที่ 86) เป็นอย่างไร?",
    "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_en": "What is the Original title of Children of Sarajevo?",
    "question_th": "ชื่อดั้งเดิมของ 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_en": "In the 2012 (85th) Ceremony, what was the Original title of the film not nominated?",
    "question_th": "ในพิธีมอบรางวัลประจำปี 2012 (ครั้งที่ 85) ชื่อภาพยนตร์เรื่องใดไม่ได้รับการเสนอชื่อเข้าชิง?",
    "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_en": "What is the lowest draw number for the song ranked 6th with more than 43 points?",
    "question_th": "เลขต่ำสุดของเพลงอันดับที่ 6 มีคะแนนเกิน 43 คือข้อใด",
    "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_en": "What is the total sum of points for songs performed by Partners in Crime?",
    "question_th": "คะแนนรวมสำหรับเพลงที่ดำเนินการโดย 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_en": "What is the class of facility ID 150935?",
    "question_th": "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_en": "Which city has a facility ID greater than 150833?",
    "question_th": "เมืองใดมีรหัสสิ่งอำนวยความสะดวกมากกว่า 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_en": "What position does the player from the Toronto Argonauts play?",
    "question_th": "ผู้เล่นจาก Toronto Argonauts เล่นตำแหน่งใด?",
    "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_en": "What was the 1st leg for Team 2 Concepto Egile?",
    "question_th": "เลกแรกของทีม 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_en": "Which team 1 has team 2, Gomera?",
    "question_th": "ทีมไหน 1 มีทีม 2 โกเมร่า?",
    "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_en": "What public team was founded prior to 1883?",
    "question_th": "ทีมงานสาธารณะใดที่ก่อตั้งขึ้นก่อนปี พ.ศ. 2426",
    "context": "CREATE TABLE table_name_45 (team VARCHAR, founded VARCHAR, type VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_68 WHERE spike = 342",
    "question_en": "Who has exactly 342 spikes?",
    "question_th": "ใครมีหนามแหลม 342 กันแน่?",
    "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_en": "What is the smallest number of spikes for players with a weight of 83 and height over 190?",
    "question_th": "จำนวนเดือยที่น้อยที่สุดสำหรับผู้เล่นที่มีน้ำหนัก 83 และส่วนสูงมากกว่า 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_en": "What is Class, when Power is 78 Watts?",
    "question_th": "Class คืออะไร เมื่อกำลังไฟ 78 วัตต์?",
    "context": "CREATE TABLE table_name_15 (class VARCHAR, power VARCHAR)"
  },
  {
    "answer": "SELECT power FROM table_name_48 WHERE identifier = \"cbeb-fm\"",
    "question_en": "What is Power, when Identifier is CBEB-FM?",
    "question_th": "Power คืออะไร เมื่อ Identifier คือ 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_en": "What is Identifier, when City of License is Terrace Bay?",
    "question_th": "ตัวระบุคืออะไร เมื่อ City of License คือ 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_en": "What is Power, when City of License is Sioux Lookout?",
    "question_th": "อำนาจคืออะไร เมื่อเมืองแห่งใบอนุญาตคือ 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_en": "What is Identifier, when City of License is Hornepayne?",
    "question_th": "ตัวระบุคืออะไร เมื่อเมืองแห่งใบอนุญาตคือ 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_en": "What is City of License, when Frequency is 101.1?",
    "question_th": "City of License คืออะไร เมื่อความถี่เป็น 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_en": "Which LE-5 Model has an LE-5A of 130?",
    "question_th": "LE-5 รุ่นใดมี LE-5A เท่ากับ 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_en": "What Series had 14 races and 12th position?",
    "question_th": "ซีรีส์ใดที่มีการแข่งขัน 14 รายการและอันดับที่ 12",
    "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_en": "What season was the Formula BMW USA in?",
    "question_th": "Formula BMW USA อยู่ในฤดูกาลใด",
    "context": "CREATE TABLE table_name_87 (season VARCHAR, series VARCHAR)"
  },
  {
    "answer": "SELECT series FROM table_name_73 WHERE podiums > 10",
    "question_en": "What series had more than 10 Podiums?",
    "question_th": "ซีรีส์ใดมีมากกว่า 10 โพเดียม?",
    "context": "CREATE TABLE table_name_73 (series VARCHAR, podiums INTEGER)"
  },
  {
    "answer": "SELECT status FROM table_name_25 WHERE authors = \"colbert\"",
    "question_en": "What is the Status with an Author that is colbert?",
    "question_th": "สถานะกับผู้แต่งที่เป็นฌ็องคืออะไร?",
    "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_en": "What college was the draft pick number larger than 18 that went to the Barangay ginebra kings?",
    "question_th": "วิทยาลัยใดคือหมายเลขตัวเลือกร่างที่มากกว่า 18 ที่ตกเป็นของ 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_en": "What is the sum of the pick numbers for the player that went to San Miguel Beermen who played at San Sebastian?",
    "question_th": "ผลรวมของหมายเลขเลือกนักเตะที่ไปซาน มิเกล เบียร์เมนที่เล่นให้ซาน เซบาสเตียนคือเท่าไร?",
    "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_en": "What is the total number of picks for PBA team san miguel beermen who picked rommel daep?",
    "question_th": "จำนวนตัวเลือกทั้งหมดของทีม PBA ซาน มิเกล เบียร์แมน ที่เลือกรอมเมล แดปคือเท่าไร?",
    "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_en": "Who won after 1999 with changwon lg sakers as runners-up?",
    "question_th": "ใครชนะหลังปี 1999 โดยมี Changwon lg Sakers เป็นรองแชมป์?",
    "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_en": "What is the result for the champions jeonju kcc egis with runners-up seoul samsung thunders after 2007?",
    "question_th": "ผลลัพธ์ของแชมป์ jeonju kcc egis กับรองแชมป์ seoul samsung Thunders หลังปี 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_en": "What was the winning team in 2013?",
    "question_th": "ทีมที่ชนะในปี 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_en": "What is the highest year that Europe won, when the USA's Captain was Kathy Whitworth?",
    "question_th": "ปีสูงสุดที่ยุโรปชนะคือปีใดเมื่อกัปตันของสหรัฐอเมริกาคือ 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_en": "When the USA's captain was Beth Daniel, who was the winning team?",
    "question_th": "เมื่อกัปตันของสหรัฐอเมริกาคือเบ็ธ ดาเนียล ทีมใดเป็นผู้ชนะ",
    "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_en": "What is the Season when league shows bundesliga, and a European competition of played korac cup?",
    "question_th": "ฤดูกาลใดที่ลีกแสดงบุนเดสลีกา และการแข่งขันโครัคคัพในยุโรป?",
    "context": "CREATE TABLE table_name_25 (season VARCHAR, league VARCHAR, european_competitions VARCHAR)"
  },
  {
    "answer": "SELECT AVG(tier) FROM table_name_56 WHERE postseason = \"–\" AND season = \"2012–13\"",
    "question_en": "What is the average Tier when the postseason shows -, and the season is 2012–13?",
    "question_th": "ระดับเฉลี่ยคือเท่าใดในช่วงหลังฤดูกาล และฤดูกาล 2012–13",
    "context": "CREATE TABLE table_name_56 (tier INTEGER, postseason VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT european_competitions FROM table_name_33 WHERE tier > 2",
    "question_en": "What is the European competition when the tier is more than 2?",
    "question_th": "การแข่งขันระดับยุโรปจะเป็นอย่างไรเมื่อเทียร์มากกว่า 2?",
    "context": "CREATE TABLE table_name_33 (european_competitions VARCHAR, tier INTEGER)"
  },
  {
    "answer": "SELECT outcome FROM table_name_64 WHERE surface = \"grass\"",
    "question_en": "What was the outcome of the match played on grass?",
    "question_th": "ผลการแข่งขันที่เล่นบนพื้นหญ้าเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_64 (outcome VARCHAR, surface VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_13 WHERE date__final_ = \"february 17, 2003\"",
    "question_en": "What was the outcome of the match on February 17, 2003?",
    "question_th": "ผลการแข่งขันเมื่อวันที่ 17 กุมภาพันธ์ พ.ศ. 2546 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_13 (outcome VARCHAR, date__final_ VARCHAR)"
  },
  {
    "answer": "SELECT AVG(wins) FROM table_name_25 WHERE team = \"usa\"",
    "question_en": "How many average wins have USA as the team?",
    "question_th": "สหรัฐอเมริกาเป็นทีมชนะโดยเฉลี่ยกี่ครั้ง?",
    "context": "CREATE TABLE table_name_25 (wins INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT AVG(wins) FROM table_name_80 WHERE team = \"great britain\"",
    "question_en": "What are the average wins that have great britain as the team?",
    "question_th": "ชัยชนะโดยเฉลี่ยที่มีบริเตนใหญ่เป็นทีมคือเท่าไร?",
    "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_en": "What's the average draft pick number from Carson-Newman College before Round 7?",
    "question_th": "หมายเลขการรับร่างโดยเฉลี่ยจาก Carson-Newman College ก่อนรอบที่ 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_en": "Which college has a pick number of 155?",
    "question_th": "วิทยาลัยใดมีหมายเลขเลือก 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_en": "What score in the final has november 3, 2002 as the date?",
    "question_th": "คะแนนในรอบชิงชนะเลิศมีวันที่ 3 พฤศจิกายน พ.ศ. 2545 เป็นวันที่เท่าไร?",
    "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_en": "What surface has natalia gussoni as the partner?",
    "question_th": "Natalia Gussoni มีพื้นผิวอะไรเป็นคู่หู?",
    "context": "CREATE TABLE table_name_14 (surface VARCHAR, partner VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_68 WHERE date = \"september 23, 2013\"",
    "question_en": "What outcome has September 23, 2013 as the date?",
    "question_th": "วันที่ 23 กันยายน 2556 มีผลลัพธ์อะไรบ้าง?",
    "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_en": "What score in the final has hard as the surface, and june 13, 2011 as the date?",
    "question_th": "คะแนนใดในรอบชิงชนะเลิศที่แข็งเป็นพื้นผิวและวันที่ 13 มิถุนายน 2554 เป็นวันที่?",
    "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_en": "What date has elke clijsters as the partner?",
    "question_th": "เอลเก้ ไคลจ์สเตอร์สเป็นหุ้นส่วนวันไหน?",
    "context": "CREATE TABLE table_name_43 (date VARCHAR, partner VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_59 WHERE prize_money = \"£120,000\"",
    "question_en": "What is the Round with a Prize of money that is £120,000?",
    "question_th": "รอบที่มีเงินรางวัล 120,000 ปอนด์คืออะไร?",
    "context": "CREATE TABLE table_name_59 (round VARCHAR, prize_money VARCHAR)"
  },
  {
    "answer": "SELECT matches FROM table_name_16 WHERE prize_money = \"£1,000,000\"",
    "question_en": "What is the Match with a Prize of money that is £1,000,000?",
    "question_th": "การแข่งขันที่มีเงินรางวัล 1,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_en": "When alvin and the chipmunks meet frankenstein, what was the role?",
    "question_th": "เมื่ออัลวินและพวก Chipmunks พบกับแฟรงเกนสไตน์ บทบาทคืออะไร?",
    "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_en": "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?",
    "question_th": "ปีแรกสุดที่รับบทเป็นอัลวิน เซวิลล์ ไซมอน เซวิลล์ เดวิด 'เดฟ' เซบียา และตำแหน่งอัลวินและ Chipmunks พบกับมนุษย์หมาป่าคือปีใด",
    "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_en": "What's the average year for the Role of alvin seville simon seville david 'dave' seville, and a Title of the chipmunk adventure?",
    "question_th": "ปีเฉลี่ยสำหรับบทบาทของอัลวิน เซวิลล์ ไซมอน เซวิลล์ เดวิด 'เดฟ' เซวิลล์ และชื่อเรื่องการผจญภัยกระแตคือเท่าไร",
    "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_en": "What was the role in the chipmunk adventure?",
    "question_th": "บทบาทในการผจญภัยกระแตคืออะไร?",
    "context": "CREATE TABLE table_name_53 (role VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT role FROM table_name_37 WHERE year = 2007",
    "question_en": "What role was played in 2007?",
    "question_th": "มีบทบาทอะไรในปี 2550?",
    "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_en": "What is the total number of points for the KV Racing Technology team when they use a chevrolet engine?",
    "question_th": "คะแนนรวมของทีม KV Racing Technology เมื่อใช้เครื่องยนต์เชฟโรเลตคือเท่าใด",
    "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_en": "Which engine has a chassis of dallara, is ranked 6th, and has 384 points?",
    "question_th": "เครื่องยนต์ตัวไหนมีแชสซีของ dallara อันดับ 6 และมี 384 คะแนน?",
    "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_en": "Which engine is used when there is a 3rd place rank and 513 points?",
    "question_th": "เครื่องยนต์ไหนใช้เมื่อมีอันดับ 3 และ 513 คะแนน?",
    "context": "CREATE TABLE table_name_23 (engine VARCHAR, rank VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT chassis FROM table_name_25 WHERE rank = \"3rd\"",
    "question_en": "What is the chassis when the rank is 3rd?",
    "question_th": "แชสซีส์เมื่ออันดับ 3 คืออะไร?",
    "context": "CREATE TABLE table_name_25 (chassis VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_name_44 WHERE team = \"andretti autosport\"",
    "question_en": "What are the years that Andretti Autosport is a team?",
    "question_th": "Andretti Autosport อยู่ในทีมกี่ปี?",
    "context": "CREATE TABLE table_name_44 (year VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_66 WHERE rank = \"3rd\" AND year = 2008",
    "question_en": "Which team is ranked 3rd in 2008?",
    "question_th": "ทีมไหนอยู่อันดับที่ 3 ในปี 2551?",
    "context": "CREATE TABLE table_name_66 (team VARCHAR, rank VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT AVG(oilers_points) FROM table_name_1 WHERE record = \"10–6\" AND oilers_first_downs > 14",
    "question_en": "Which Oilers points have a Record of 10–6, and Oilers first downs larger than 14?",
    "question_th": "คะแนน Oilers ใดที่มีสถิติ 10–6 และ Oilers ดาวน์มากกว่า 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_en": "Which Oilers points have an Opponent of san francisco 49ers, and Opponents larger than 19?",
    "question_th": "คะแนน Oilers ใดที่มีฝ่ายตรงข้ามของซานฟรานซิสโก 49ers และฝ่ายตรงข้ามที่ใหญ่กว่า 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_en": "Which Game has an Opponent of at kansas city chiefs, and an Attendance smaller than 40,213?",
    "question_th": "เกมใดมีฝ่ายตรงข้ามของหัวหน้าเมืองแคนซัสและมีผู้เข้าร่วมน้อยกว่า 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_en": "What is the name of the country that has 18 May 2004 as the date?",
    "question_th": "ประเทศที่มีวันที่ 18 พฤษภาคม 2547 ชื่ออะไร",
    "context": "CREATE TABLE table_name_27 (country VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT catalog FROM table_name_58 WHERE country = \"australia\"",
    "question_en": "What catalog has Australia as the country?",
    "question_th": "แค็ตตาล็อกใดที่มีออสเตรเลียเป็นประเทศ",
    "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_en": "In what format was the release that was dated 7 April 2003 from catalog 584 2112?",
    "question_th": "ในรูปแบบใดที่เผยแพร่เมื่อวันที่ 7 เมษายน พ.ศ. 2546 จากแค็ตตาล็อก 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_en": "What date was the release when the format was lp?",
    "question_th": "วางจำหน่ายวันที่เท่าไรครับ รูปแบบเป็น 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_en": "What date is the release when the label was Parlophone and the catalog was 582 2912?",
    "question_th": "วันที่วางจำหน่ายคือเมื่อฉลากเป็น Parlophone และแคตตาล็อกคือ 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_en": "What catalog has the United Kingdom as the country?",
    "question_th": "แค็ตตาล็อกใดที่มีสหราชอาณาจักรเป็นประเทศ?",
    "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_en": "What is the nationality of the guard for the chool/Club Team in Virginia?",
    "question_th": "การ์ดประจำโรงเรียน/ทีมสโมสรในรัฐเวอร์จิเนียมีสัญชาติอะไร?",
    "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_en": "What is the School/Club Team with a nationality of United States for Arron Afflalo?",
    "question_th": "ทีมโรงเรียน/สโมสรที่มีสัญชาติสหรัฐอเมริกาสำหรับ 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_en": "What is the Years in Orlando for carlos arroyo?",
    "question_th": "ปีในออร์แลนโดสำหรับ 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–1991\"",
    "question_en": "What is the Player for Orlando in 1989–1991?",
    "question_th": "ผู้เล่นให้กับออร์แลนโด้ในปี 1989–1991 คืออะไร?",
    "context": "CREATE TABLE table_name_77 (player VARCHAR, years_in_orlando VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_52 WHERE years_in_orlando = \"1989–1999\"",
    "question_en": "What is the Position for Orlando for 1989–1999?",
    "question_th": "ตำแหน่งสำหรับออร์แลนโดในปี 1989–1999 คืออะไร?",
    "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_en": "Which player was from Western Washington University, played midfield, and was from years after 2009?",
    "question_th": "ผู้เล่นคนไหนมาจากมหาวิทยาลัยเวสเทิร์นวอชิงตัน เล่นกองกลาง และมาจากปี 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_en": "Which team was Bubba Vanegdom from?",
    "question_th": "บั๊บบ้า เวเนกโดม มาจากทีมไหน?",
    "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_en": "What was the position of the player from Pacific Lutheran University named Greg Fredlund in years after 2010?",
    "question_th": "ตำแหน่งของผู้เล่นจาก Pacific Lutheran University ชื่อ Greg Fredlund ในปีหลังปี 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_en": "What was the position of Greg Fredlund in years after 2008?",
    "question_th": "ตำแหน่งของ Greg Fredlund ในช่วงหลายปีหลังปี 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_en": "What home team has 8 ties?",
    "question_th": "ทีมเจ้าบ้านใดมี 8 เสมอ?",
    "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_en": "What year had Kim Gevaert as the female winner and Xavier de Baerdemaeker as the male talent?",
    "question_th": "Kim Gevaert เป็นผู้ชนะฝ่ายหญิงและ Xavier de Baerdemaeker เป็นผู้มีความสามารถชายในปีใด",
    "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_en": "Who is the female talent in 1999?",
    "question_th": "พรสวรรค์หญิงในปี 2542 คือใคร?",
    "context": "CREATE TABLE table_name_41 (talent__female_ VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT talent__male_ FROM table_name_39 WHERE year = 1991",
    "question_en": "Who is the male talent in 1991?",
    "question_th": "พรสวรรค์ชายในปี 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_en": "Who is the male winner the year after 1998 with Marleen Renders as the female winner?",
    "question_th": "ใครคือผู้ชนะฝ่ายชายในปีหลังปี 1998 โดยมี Marleen Renders เป็นผู้ชนะฝ่ายหญิง?",
    "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_en": "What is the lowest avg/g that has an effic greater than 34.36, with wesley carroll as the name?",
    "question_th": "ค่าเฉลี่ย/กรัมต่ำสุดที่มีประสิทธิภาพมากกว่า 34.36 โดยมีเวสลีย์ แคร์โรลล์เป็นชื่อคือเท่าใด",
    "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_en": "What is the lowest avg/g that has 2-9-0 for the att-cmp-int?",
    "question_th": "ค่าเฉลี่ยต่ำสุด/g ที่มี 2-9-0 สำหรับ 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_en": "What is the att-cmp-int that has 12 for the gp-gs and 174.3 as the avg/g?",
    "question_th": "att-cmp-int ที่มี 12 สำหรับ gp-gs และ 174.3 เป็น 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_en": "What is the Song with an Issue Date(s) that is 19 june?",
    "question_th": "เพลงที่มีวันที่ออกคือวันที่ 19 มิถุนายนคือเพลงอะไร",
    "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_en": "What is the minimum Height of the Little Switzerland Tunnel?",
    "question_th": "ความสูงขั้นต่ำของอุโมงค์ลิตเติ้ลสวิตเซอร์แลนด์คือเท่าไร?",
    "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_en": "What is the Milepost of the Twin Tunnel #1 North?",
    "question_th": "Milepost ของอุโมงค์แฝด #1 ทิศเหนือคืออะไร?",
    "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_en": "WHat is the number of Population has a Density of 50.09 and a Rank larger than 30?",
    "question_th": "จำนวนประชากรที่มีความหนาแน่น 50.09 และอันดับมากกว่า 30 คืออะไร?",
    "context": "CREATE TABLE table_name_70 (population INTEGER, density VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT icelandic FROM table_name_41 WHERE english = \"bride\"",
    "question_en": "What is the Icelandic word for the English word bride?",
    "question_th": "คำภาษาไอซ์แลนด์สำหรับคำภาษาอังกฤษว่าเจ้าสาวคืออะไร?",
    "context": "CREATE TABLE table_name_41 (icelandic VARCHAR, english VARCHAR)"
  },
  {
    "answer": "SELECT english FROM table_name_46 WHERE icelandic = \"hlaupa\"",
    "question_en": "What is the ENglish word for the Icelandic word hlaupa?",
    "question_th": "คำภาษาอังกฤษของคำภาษาไอซ์แลนด์ hlaupa คืออะไร?",
    "context": "CREATE TABLE table_name_46 (english VARCHAR, icelandic VARCHAR)"
  },
  {
    "answer": "SELECT russian FROM table_name_70 WHERE \"greek\" = \"greek\"",
    "question_en": "What is the Russian word for the Greek word greek?",
    "question_th": "คำภาษารัสเซียสำหรับคำภาษากรีกกรีกคืออะไร?",
    "context": "CREATE TABLE table_name_70 (russian VARCHAR)"
  },
  {
    "answer": "SELECT english FROM table_name_92 WHERE latin = \"uxor\"",
    "question_en": "What is the English word for the Latin word uxor?",
    "question_th": "คำภาษาอังกฤษสำหรับคำภาษาละติน uxor คืออะไร?",
    "context": "CREATE TABLE table_name_92 (english VARCHAR, latin VARCHAR)"
  },
  {
    "answer": "SELECT latin FROM table_name_33 WHERE english = \"bone\"",
    "question_en": "What is the Latin word for the English word bone?",
    "question_th": "คำภาษาละตินสำหรับคำว่ากระดูกภาษาอังกฤษคืออะไร?",
    "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_en": "What is the lowest against that has bacchus marsh as a ballarat fl, with wins less than 1?",
    "question_th": "อะไรคือสิ่งที่ต่ำที่สุดเมื่อเทียบกับที่มีแบคคัสมาร์ชเป็นบัลลารัตฟลอร์โดยชนะน้อยกว่า 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_en": "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?",
    "question_th": "อะไรคือผลเสมอต่ำสุดที่มีการขาดทุนมากกว่า 0 เทียบกับน้อยกว่า 1728 เมลตันเป็นบัลลารัตฟลอริด้า และบายน้อยกว่า 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_en": "How many losses have byes greater than 2?",
    "question_th": "มีการสูญเสียกี่ครั้งที่มากกว่า 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_en": "What position does the winner from Ohio State with 412 points play?",
    "question_th": "ผู้ชนะจากรัฐโอไฮโอด้วยคะแนน 412 แต้มเล่นตำแหน่งใด",
    "context": "CREATE TABLE table_name_38 (position VARCHAR, school VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_39 WHERE points = \"792\"",
    "question_en": "What is the position of the winner with 792 points?",
    "question_th": "ผู้ชนะมี 792 แต้มอยู่ตำแหน่งไหน?",
    "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_en": "What is the highest Top-10, when Top-25 is 4, and when Top-5 is greater than 1?",
    "question_th": "อะไรคือ 10 อันดับแรกสูงสุด เมื่อ 25 อันดับแรกคือ 4 และเมื่อ 5 อันดับแรกมากกว่า 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_en": "What is Wins, when Top-25 is less than 4, and when Top-5 is greater than 0?",
    "question_th": "ชัยชนะคืออะไร เมื่อ 25 อันดับแรกน้อยกว่า 4 และเมื่อ 5 อันดับแรกมากกว่า 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_en": "What is the total number of Wins, when Top-25 is less than 4, and when Top-10 is less than 1?",
    "question_th": "จำนวนชัยชนะทั้งหมดคือเท่าไร เมื่อ 25 อันดับแรกน้อยกว่า 4 และเมื่อ 10 อันดับแรกน้อยกว่า 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_en": "Which home team played in the matchup with an away team of Liverpool?",
    "question_th": "เจ้าบ้านทีมไหนเล่นคู่กับทีมเยือนลิเวอร์พูล?",
    "context": "CREATE TABLE table_name_27 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_2 WHERE tie_no = \"5\"",
    "question_en": "What was the date of tie number 5?",
    "question_th": "ผูกหมายเลข 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_en": "Who was the away team for tie number 9?",
    "question_th": "ทีมเยือนชุดหมายเลข 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_en": "What was the score of the replay at Millwall?",
    "question_th": "รีเพลย์ที่มิลล์วอลล์ทำได้สกอร์เท่าไหร่?",
    "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_en": "Who was the home team for tie number 16?",
    "question_th": "เจ้าบ้านนัดที่ 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_en": "What is the sum of the golds of the nation with 5 total and less than 0 bronze medals?",
    "question_th": "ผลรวมเหรียญทองของประเทศที่ได้ทั้งหมด 5 เหรียญแต่น้อยกว่า 0 เหรียญทองแดงเป็นเท่าใด",
    "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_en": "What is the sum of the gold medals of the total nation, which has more than 19 silver medals?",
    "question_th": "ผลรวมเหรียญทองของชาติทั้งหมดที่มีมากกว่า 19 เหรียญเงินเป็นเท่าใด",
    "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_en": "What is the average number of silver medals of the nation with 3 bronzes and more than 4 total medals?",
    "question_th": "เหรียญเงินของประเทศที่ได้ 3 เหรียญทองแดง และมากกว่า 4 เหรียญโดยเฉลี่ยคือเท่าไร?",
    "context": "CREATE TABLE table_name_79 (silver INTEGER, bronze VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_74 WHERE year = \"1990\"",
    "question_en": "Which label's year was 1990?",
    "question_th": "ปีของค่ายไหนคือปี 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_en": "Which result's genre was jazz when its label was columbia and its title was requiem?",
    "question_th": "ประเภทของผลลัพธ์ใดที่เป็นดนตรีแจ๊ส เมื่อชื่อเป็นโคลัมเบีย และชื่อเป็นเพลงบังสุกุล",
    "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_en": "Which year's label was label?",
    "question_th": "ป้ายปีไหนเป็นป้าย?",
    "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_en": "Which title's genre was jazz when it was nominated in 1996?",
    "question_th": "แนวเพลงใดที่เป็นดนตรีแจ๊สเมื่อได้รับการเสนอชื่อเข้าชิงในปี 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_en": "Which year's genre was jazz under the columbia label when it was nominated for the title Trio jeepy?",
    "question_th": "แนวเพลงของปีใดที่เป็นดนตรีแจ๊สภายใต้ค่ายเพลงโคลัมเบีย เมื่อได้รับการเสนอชื่อเข้าชิงชื่อเพลง 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_en": "Which label's year is 1993?",
    "question_th": "ปี 1993 ค่ายไหนครับ?",
    "context": "CREATE TABLE table_name_45 (label VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT company FROM table_name_7 WHERE principal_activities = \"engine overhaul\"",
    "question_en": "What company focuses on Engine Overhaul for their principal activity?",
    "question_th": "บริษัทใดมุ่งเน้นการยกเครื่องเครื่องยนต์เป็นกิจกรรมหลัก",
    "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_en": "When Date has a Game larger than 4 and a Team of san antonio, and a Record of 4-3?",
    "question_th": "เมื่อ Date มีเกมที่ใหญ่กว่า 4 และทีมซานอันโตนิโอและมีสถิติ 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_en": "Which Team has a Score of 108-105 (ot)?",
    "question_th": "ทีมไหนมีคะแนน 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_en": "Which Game has a Team of at san antonio, and a Record of 3-3?",
    "question_th": "เกมใดที่มีทีมที่ซานอันโตนิโอและมีสถิติ 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_en": "Which Record has a Score of 105-115?",
    "question_th": "สถิติใดมีคะแนน 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_en": "What's the average amount of ties had when a team wins 6 and it's past the 2004 season?",
    "question_th": "ค่าเฉลี่ยของความสัมพันธ์เมื่อทีมชนะ 6 และผ่านฤดูกาล 2004 เป็นเท่าใด?",
    "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_en": "What was the result of the race that had a group of G1 at Moonee Valley?",
    "question_th": "ผลการแข่งขันที่มีกลุ่ม G1 ที่ 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_en": "What was the result of the race that was a 2000m distance?",
    "question_th": "ผลการแข่งขันระยะ 2,000 เมตร เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_57 (result VARCHAR, distance VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_9 WHERE date = \"november 21, 1999\"",
    "question_en": "Which Opponent has a Date of november 21, 1999?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีวันที่ 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_en": "Which Attendance has a Week smaller than 8, and an Opponent of philadelphia eagles?",
    "question_th": "ผู้เข้าร่วมคนใดที่มีหนึ่งสัปดาห์น้อยกว่า 8 และเป็นฝ่ายตรงข้ามของนกอินทรีฟิลาเดลเฟีย?",
    "context": "CREATE TABLE table_name_19 (attendance VARCHAR, week VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_47 WHERE result = \"l 26–16\"",
    "question_en": "Which Attendance has a Result of l 26–16?",
    "question_th": "ผู้เข้าร่วมคนใดมีผลคะแนน l 26–16",
    "context": "CREATE TABLE table_name_47 (attendance VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT MAX(attendance) FROM table_name_37 WHERE week = 13",
    "question_en": "What was the highest attendance on week 13?",
    "question_th": "ผู้เข้าร่วมสูงสุดในสัปดาห์ที่ 13 คืออะไร?",
    "context": "CREATE TABLE table_name_37 (attendance INTEGER, week VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_88 WHERE round = \"6\"",
    "question_en": "Which Result has a Round of 6?",
    "question_th": "ผลการแข่งขันใดมีรอบ 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_en": "When is a Type of tko, and an Opponent of jesse brinkley",
    "question_th": "เมื่อไรเป็นประเภททีเคโอ และเป็นฝ่ายตรงข้ามของเจสซี่ บริงค์ลีย์",
    "context": "CREATE TABLE table_name_53 (date VARCHAR, type VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_4 WHERE opponent = \"steve walker\"",
    "question_en": "Which Result has an Opponent of steve walker?",
    "question_th": "ผลการแข่งขันใดมีฝ่ายตรงข้ามของสตีฟ วอล์คเกอร์?",
    "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_en": "Which Opponent has a Type of ud and a Round of 10 on 2008-06-11?",
    "question_th": "ฝ่ายตรงข้ามคนใดที่มีประเภท ud และรอบ 10 ในวันที่ 11-06-2551?",
    "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_en": "Which Opponent has a Type of tko, and a Round of 2 (6) on 2006-09-20?",
    "question_th": "ฝ่ายตรงข้ามคนใดที่มีประเภท tko และรอบ 2 (6) ในวันที่ 20-09-2549",
    "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_en": "When has a Type of tko, and a Round of 1 (6)",
    "question_th": "เมื่อมีประเภท tko และรอบ 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_en": "How many positions have a played greater than 12?",
    "question_th": "มีกี่ตำแหน่งที่เล่นได้มากกว่า 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_en": "What is the lowest played that has points greater than 11, 1 as the position, and a loss less than 1?",
    "question_th": "การเล่นต่ำสุดที่มีแต้มมากกว่า 11 มี 1 เป็นตำแหน่งและแพ้น้อยกว่า 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 = \"çağla büyükakçay\"",
    "question_en": "What is the Date that has a Outcome of winner, and çağla büyükakçay was the opponent in the final?",
    "question_th": "วันที่ใดที่มีผลการแข่งขันเป็นผู้ชนะ และ çağla büyükakçay เป็นคู่ต่อสู้ในรอบชิงชนะเลิศคือเมื่อใด?",
    "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 = \"çağla büyükakçay\"",
    "question_en": "What is the Outcome when çağla büyükakçay was the opponent in the final?",
    "question_th": "ผลลัพธ์จะเป็นเช่นไรเมื่อ çağla büyükakçay เป็นคู่ต่อสู้ในรอบชิงชนะเลิศ?",
    "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_en": "What is the Score when the opponent in the final is alicia pillay on a hard surface?",
    "question_th": "สกอร์เป็นเท่าใดเมื่อคู่ต่อสู้ในรอบชิงชนะเลิศคืออลิเซีย พิลเลย์บนพื้นแข็ง?",
    "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_en": "What is the Opponent in the final when the outcome was runner-up?",
    "question_th": "ฝ่ายตรงข้ามคืออะไรในรอบชิงชนะเลิศเมื่อผลการแข่งขันเป็นรองชนะเลิศ?",
    "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_en": "What is the Opponent in the final with an outcome of winner on 14-may-2007?",
    "question_th": "ฝ่ายตรงข้ามในรอบชิงชนะเลิศคืออะไรโดยมีผลเป็นผู้ชนะในวันที่ 14 พฤษภาคม 2550?",
    "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_en": "What is the Score for 09-oct-2006?",
    "question_th": "คะแนนสำหรับวันที่ 09 ต.ค. 2549 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_76 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_33 WHERE opponent = \"dave menne\"",
    "question_en": "What was the time of the bout against Dave Menne?",
    "question_th": "ไฟต์กับ เดฟ เมนน์ กี่โมง?",
    "context": "CREATE TABLE table_name_33 (time VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_83 WHERE method = \"tko (strikes)\"",
    "question_en": "What was the time of the bout that ended in a TKO (strikes)?",
    "question_th": "การแข่งขันที่จบลงด้วยการ TKO (นัดหยุดงาน) คือเวลาใด?",
    "context": "CREATE TABLE table_name_83 (time VARCHAR, method VARCHAR)"
  },
  {
    "answer": "SELECT MAX(matches) FROM table_name_44 WHERE rank = 8",
    "question_en": "What is the number of matches for the player in rank 8?",
    "question_th": "จำนวนการแข่งขันของผู้เล่นอันดับ 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_en": "Which set 3 has a Set 1 of 19-25, and a Set 2 of 19-25?",
    "question_th": "ชุดที่ 3 ตัวไหนมีชุด 1 19-25 และชุด 2 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_en": "What is the set 5 if the Date is jun 7, and a Set 4 is 21-25?",
    "question_th": "ชุดที่ 5 คืออะไร ถ้าวันที่คือวันที่ 7 มิถุนายน และชุดที่ 4 คือ 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_en": "What is the Set 5 if Set 2 is 25-20?",
    "question_th": "Set 5 คืออะไร ถ้า Set 2 คือ 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_en": "Which driver's grid was 24?",
    "question_th": "ตารางคนขับคนไหนคือ 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_en": "What is the mean number of laps when the grid is less than 19 and time/retired is +21.3 secs?",
    "question_th": "จำนวนรอบเฉลี่ยเมื่อกริดน้อยกว่า 19 และเวลา/เกษียณคือ +21.3 วินาทีเป็นเท่าใด",
    "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_en": "What is the smallest number of laps for Team Green when the grid is 1?",
    "question_th": "ทีมกรีนมีจำนวนรอบน้อยที่สุดเมื่อกริดอยู่ที่ 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_en": "What is the total number of 1876(s), when 1872 is less than 1921, and when 1891 is less than 354?",
    "question_th": "จำนวนรวมของ 1876 คือเท่าไร เมื่อ 1872 น้อยกว่า 1921 และเมื่อ 1891 น้อยกว่า 354",
    "context": "CREATE TABLE table_name_64 (Id VARCHAR)"
  },
  {
    "answer": "SELECT SUM(1886) FROM table_name_19 WHERE 1866 > 1070 AND 1891 < 1946",
    "question_en": "What is the sum of 1886(s), when 1886 is greater than 1070, and when 1891 is less than 1946?",
    "question_th": "ผลรวมของ 1886 คืออะไร เมื่อ 1886 มากกว่า 1,070 และเมื่อ 1891 น้อยกว่า 1946",
    "context": "CREATE TABLE table_name_19 (Id VARCHAR)"
  },
  {
    "answer": "SELECT SUM(1891) FROM table_name_63 WHERE 1872 < 685 AND 1881 < 348",
    "question_en": "What is the sum of 1891(s), when 1872 is less than 685, and when 1881 is less than 348?",
    "question_th": "ผลรวมของ 1891 เมื่อ 1872 น้อยกว่า 685 และเมื่อ 1881 น้อยกว่า 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_en": "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?",
    "question_th": "ผลรวมของ 1872 คืออะไร เมื่อ 1866 มากกว่า 856 เมื่อ 1861 มากกว่า 1906 และเมื่อ 1876 มากกว่า 1990",
    "context": "CREATE TABLE table_name_29 (Id VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_91 WHERE date = \"december 20\"",
    "question_en": "What is the Record with a Date that is december 20?",
    "question_th": "บันทึกที่มีวันที่คือวันที่ 20 ธันวาคมคืออะไร?",
    "context": "CREATE TABLE table_name_91 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MIN(round) FROM table_name_72 WHERE position = \"outside linebacker\"",
    "question_en": "In what round was the first outside linebacker picked?",
    "question_th": "ผู้เล่นตัวจริงจากภายนอกคนแรกถูกเลือกในรอบใด?",
    "context": "CREATE TABLE table_name_72 (round INTEGER, position VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_80 WHERE result = \"aus by 229 runs\"",
    "question_en": "Which Venue resulted in AUS by 229 runs?",
    "question_th": "สถานที่ใดส่งผลให้ AUS วิ่งได้ 229 ครั้ง",
    "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_en": "Who was the Away Captain when the Home Captain was Joe Darling at Melbourne Cricket Ground?",
    "question_th": "ใครคือกัปตันทีมเยือนเมื่อกัปตันทีมเหย้าคือ Joe Darling ที่สนามคริกเก็ตเมลเบิร์น",
    "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_en": "Who was the Home Captain and the Result for AUS by 4 wkts?",
    "question_th": "ใครคือกัปตันทีมเจ้าบ้านและผลการแข่งขัน AUS ภายใน 4 สัปดาห์?",
    "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_en": "What was the highest match when the away opponent was Dalian Shide Siwu?",
    "question_th": "นัดไหนสูงที่สุดเมื่อคู่ต่อสู้ทีมเยือนคือ ต้าเหลียน ชิเต๋อ ซื่อหวู่?",
    "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_en": "Which Home/Away was on April 27, 2008?",
    "question_th": "เหย้า/เยือนใดคือวันที่ 27 เมษายน พ.ศ. 2551",
    "context": "CREATE TABLE table_name_70 (home_away VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_57 WHERE date = \"march 3, 2008\"",
    "question_en": "What was the score on March 3, 2008?",
    "question_th": "คะแนนเมื่อวันที่ 3 มีนาคม 2551 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_57 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT hanja FROM table_name_56 WHERE mccune_reischauer = \"chŏn\"",
    "question_en": "What is the Hanja for McCune-Reischauer of chŏn?",
    "question_th": "Hanja สำหรับ McCune-Reischauer of chŏn คืออะไร?",
    "context": "CREATE TABLE table_name_56 (hanja VARCHAR, mccune_reischauer VARCHAR)"
  },
  {
    "answer": "SELECT hangul FROM table_name_66 WHERE hanja = \"西, 徐\"",
    "question_en": "What is the Hangul when the Hanja is 西, 徐?",
    "question_th": "อังกูลคืออะไรเมื่อฮันจาคือ西, 徐?",
    "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_en": "What is the Venue with a Result that is win, and a Score that is 5-0?",
    "question_th": "สถานที่ซึ่งมีผลการแข่งขันเป็นผู้ชนะ และคะแนนเป็น 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_en": "What is the Competition with a Result of win with a Score that is 1-0?",
    "question_th": "การแข่งขันที่มีผลการแข่งขันชนะด้วยสกอร์ 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_en": "How many total Gold medals did the nation ranked #3 receive?",
    "question_th": "ประเทศอันดับที่ 3 ได้รับเหรียญทองทั้งหมดกี่เหรียญ?",
    "context": "CREATE TABLE table_name_22 (gold INTEGER, rank VARCHAR)"
  },
  {
    "answer": "SELECT ship_size FROM table_name_89 WHERE 2006 = \"$46,000\"",
    "question_en": "What ship size had a cargo value of $46,000 in 2006?",
    "question_th": "เรือขนาดใดมีมูลค่าสินค้า 46,000 ดอลลาร์ในปี 2549",
    "context": "CREATE TABLE table_name_89 (ship_size VARCHAR)"
  },
  {
    "answer": "SELECT ship_size FROM table_name_57 WHERE 2006 = \"$31,750\"",
    "question_en": "What ship size had a cargo value of $31,750 in 2006?",
    "question_th": "เรือขนาดใดมีมูลค่าสินค้า 31,750 ดอลลาร์ในปี 2549",
    "context": "CREATE TABLE table_name_57 (ship_size VARCHAR)"
  },
  {
    "answer": "SELECT 2005 FROM table_name_31 WHERE ship_size = \"all product carriers\"",
    "question_en": "What was the cargo value in 2005 with a ship size of all product carriers?",
    "question_th": "มูลค่าสินค้าในปี 2548 ตามขนาดเรือของผู้ขนส่งสินค้าทั้งหมดเป็นเท่าใด",
    "context": "CREATE TABLE table_name_31 (ship_size VARCHAR)"
  },
  {
    "answer": "SELECT 2004 FROM table_name_13 WHERE ship_size = \"ship size\"",
    "question_en": "What was the cargo value in 2004 for ship size?",
    "question_th": "มูลค่าสินค้าในปี 2547 สำหรับขนาดเรือคือเท่าใด",
    "context": "CREATE TABLE table_name_13 (ship_size VARCHAR)"
  },
  {
    "answer": "SELECT cargo FROM table_name_40 WHERE ship_size = \"aframax\"",
    "question_en": "What cargo was contained in a ship size of aframax?",
    "question_th": "สินค้าใดบ้างที่บรรจุอยู่ในเรือขนาด 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_en": "What was the cargo value in 2005 for all product carriers?",
    "question_th": "มูลค่าสินค้าในปี 2548 สำหรับผู้ขนส่งผลิตภัณฑ์ทั้งหมดเป็นเท่าใด",
    "context": "CREATE TABLE table_name_46 (cargo VARCHAR)"
  },
  {
    "answer": "SELECT live_births FROM table_name_85 WHERE migration = \"-14 873\"",
    "question_en": "What kind of Live births has a Migration of -14 873?",
    "question_th": "การเกิดมีชีวิตแบบใดที่มีการโยกย้าย -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_en": "What is the average Goals/Games for Rummenigge, Karl-Heinz, with Goals less than 162?",
    "question_th": "ประตู/เกมเฉลี่ยของรุมเมนิกเก้, คาร์ล-ไฮนซ์ ที่ทำได้น้อยกว่า 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_en": "What is the sum of Games for Allofs, Klaus, with Goals less than 177?",
    "question_th": "ผลรวมของเกมสำหรับ Allofs, Klaus โดยมีเป้าหมายน้อยกว่า 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–1978-78\"",
    "question_en": "What is the highest Rank for more than 220 goals in 1965–1978-78?",
    "question_th": "อันดับสูงสุดสำหรับมากกว่า 220 ประตูในปี 1965–1978-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_en": "Who is the composer of El Hanone?",
    "question_th": "ใครคือผู้แต่งเพลงของ 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_en": "Which arranger worked with composer Imad Shams Eldeen at 4:03?",
    "question_th": "ผู้เรียบเรียงคนใดทำงานร่วมกับนักแต่งเพลง Imad Shams Eldeen เมื่อเวลา 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_en": "What is the title track that is 3:50 and arranged by Tarek Akef?",
    "question_th": "เพลงไตเติ้ลในนาทีที่ 3:50 และเรียบเรียงโดย 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_en": "Who is the arranger for Ana Rouh?",
    "question_th": "ใครเป็นผู้เรียบเรียง 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_en": "Who was the writer that worked with arranger Tarek Akef on a 4:58 song?",
    "question_th": "ใครคือนักเขียนที่ทำงานร่วมกับผู้เรียบเรียง Tarek Akef ในเพลง 4:58",
    "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čiji sin\"",
    "question_en": "What is the year of the ceremony with a not nominated result and ničiji sin as the original title?",
    "question_th": "พิธีปีใดที่ไม่ได้รับการเสนอชื่อเข้าชิงและนิชิจิซินเป็นชื่อดั้งเดิม?",
    "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čiji sin\"",
    "question_en": "What is the year of the ceremony with the original title ničiji sin?",
    "question_th": "พิธีที่มีชื่อเดิมว่า ničiji 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_en": "What is the result of the ceremony in 2006 (79th)?",
    "question_th": "ผลพิธีในปี 2549 (ครั้งที่ 79) เป็นอย่างไร?",
    "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_en": "What is the film title used for nomination with the original title sedamdeset i dva dana?",
    "question_th": "ชื่อภาพยนตร์ที่ใช้ในการเสนอชื่อเข้าชิงกับชื่อเดิม 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_en": "Who is the director of Cannibal vegetarian, which is the film title used in nomination?",
    "question_th": "ใครคือผู้กำกับ Cannibalมังสวิรัติ ซึ่งเป็นชื่อภาพยนตร์ที่ใช้ในการเสนอชื่อ?",
    "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_en": "What is the average First Downs for december 4?",
    "question_th": "First Downs โดยเฉลี่ยในวันที่ 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_en": "What is the lowest Attendance against the tampa bay buccaneers, with Points Against of less than 7?",
    "question_th": "อะไรคือจำนวนผู้เข้าร่วมต่ำสุดในการเจอกับแทมปาเบย์ไฮเวย์ โดยมีแต้มต่อน้อยกว่า 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–2\" AND points_against > 6",
    "question_en": "What is the highest Points when the record was 12–2, and the Points Against are larger than 6?",
    "question_th": "แต้มสูงสุดเมื่อบันทึกคือ 12–2 และแต้มต่อมากกว่า 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_en": "Which Partial thromboplastin time has a Prothrombin time of prolonged and a Condition of factor v deficiency?",
    "question_th": "เวลาใดที่ Partial thromboplastin time มี Prothrombin time ยาวนานและมีภาวะขาด factor v?",
    "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_en": "Which Condition has a Bleeding time of prolonged, a Platelet count of decreased, and Prothrombin time of prolonged?",
    "question_th": "ภาวะใดมีเวลาเลือดออกนานขึ้น จำนวนเกล็ดเลือดลดลง และระยะเวลาของโปรทรอมบินนานขึ้น",
    "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_en": "Which Platelet count has a Partial thromboplastin time of prolonged or unaffected?",
    "question_th": "จำนวนเกล็ดเลือดใดที่มี Time thromboplastin บางส่วนยาวนานหรือไม่ได้รับผลกระทบ?",
    "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_en": "Which Prothrombin time that has a Partial thromboplastin time of unaffected, and a Condition of thrombocytopenia?",
    "question_th": "เวลา Prothrombin ใดที่มีเวลา thromboplastin บางส่วนที่ไม่ได้รับผลกระทบ และภาวะเกล็ดเลือดต่ำ?",
    "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_en": "Which Condition has a Bleeding time of unaffected and a Prothrombin time of prolonged?",
    "question_th": "ภาวะใดที่มีระยะเวลาเลือดออกคือไม่ได้รับผลกระทบ และระยะเวลาของ Prothrombin นานขึ้น",
    "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_en": "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",
    "question_th": "เวลา thromboplastin บางส่วนใดที่มีเวลา Prothrombin นานขึ้น และเวลาเลือดออกไม่ได้รับผลกระทบ และภาวะขาดวิตามินเคหรือวาร์ฟาริน คำถามที่ 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_en": "What are the notes where the authors are Zhou & Zhang?",
    "question_th": "บันทึกที่ผู้เขียนคือ 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_en": "What is the status where the notes are possible jr synonym of sapeornis?",
    "question_th": "สถานะที่บันทึกเป็นไปได้ jr คำพ้องของ 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_en": "What is the average Top-5 finishes with 2 as the Top-10 and a greater than 4 Top-25?",
    "question_th": "อะไรคือค่าเฉลี่ยของอันดับท็อป 5 ที่จบโดยที่ 2 อันดับท็อป 10 และอันดับมากกว่า 4 อันดับสูงสุด 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_en": "What are the least Top-5 finish when the events are greater than 18?",
    "question_th": "อะไรคือการจบท็อป 5 น้อยที่สุดเมื่ออีเว้นท์มีมากกว่า 18 ครั้ง?",
    "context": "CREATE TABLE table_name_82 (top_5 INTEGER, events INTEGER)"
  },
  {
    "answer": "SELECT SUM(wins) FROM table_name_66 WHERE events < 3",
    "question_en": "What is the total of wins when the evens is less than 3?",
    "question_th": "ผลรวมของการชนะเมื่อค่าคู่น้อยกว่า 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_en": "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?",
    "question_th": "มีการตัดทอนกี่ครั้งเมื่อ 10 อันดับแรกมากกว่า 1 และชนะมากกว่า 0 และ 5 อันดับแรกมากกว่า 2 เมื่อเหตุการณ์มากกว่า 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_en": "What years did Omar Sneed play?",
    "question_th": "Omar Sneed เล่นกี่ปี?",
    "context": "CREATE TABLE table_name_9 (season VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_7 WHERE name = \"jovy sese\"",
    "question_en": "Which season did Jovy Sese play?",
    "question_th": "Jovy Sese เล่นในฤดูกาลใด?",
    "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_en": "How did the School/Club Team of Manuel Luis Quezon acquire their Forward?",
    "question_th": "ทีมโรงเรียน/สโมสรของ Manuel Luis Quezon ได้กองหน้ามาได้อย่างไร?",
    "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_en": "Which School/ Club Team acquired Jondan Salvador via trade?",
    "question_th": "ทีมโรงเรียน/สโมสรใดที่ได้ Jondan Salvador มาจากการแลกเปลี่ยน?",
    "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_en": "What is the Points with a Played larger than 14?",
    "question_th": "แต้มที่เล่นมากกว่า 14 คืออะไร?",
    "context": "CREATE TABLE table_name_18 (points VARCHAR, played INTEGER)"
  },
  {
    "answer": "SELECT AVG(points) FROM table_name_51 WHERE against < 16",
    "question_en": "What is the Points with an Against smaller than 16?",
    "question_th": "แต้มที่มีค่า Against น้อยกว่า 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_en": "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?",
    "question_th": "ทีมใดที่แพ้มากกว่า 2 และตำแหน่งน้อยกว่า 7 และเสมอน้อยกว่า 2 และมีแต้ม 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_en": "Which Points has a Position of 3, and a Drawn smaller than 2?",
    "question_th": "แต้มใดมีตำแหน่ง 3 และเสมอน้อยกว่า 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_en": "Which Played has a Points of 2, and a Position smaller than 8?",
    "question_th": "ผู้เล่นคนไหนมีแต้ม 2 และตำแหน่งน้อยกว่า 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_en": "How many average plays have points greater than 14, with an against greater than 17?",
    "question_th": "มีการเล่นเฉลี่ยกี่ครั้งที่มีคะแนนมากกว่า 14 และต่อมากกว่า 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_en": "Which average against has a lost less than 1?",
    "question_th": "ค่าเฉลี่ยใดที่แพ้น้อยกว่า 1?",
    "context": "CREATE TABLE table_name_78 (against INTEGER, lost INTEGER)"
  },
  {
    "answer": "SELECT MAX(drawn) FROM table_name_96 WHERE played < 10",
    "question_en": "Which of the highest drawn has a played less than 10?",
    "question_th": "เสมอสูงสุดใดที่มีการเล่นน้อยกว่า 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_en": "How many played have 3 as the drawn, and a position greater than 4?",
    "question_th": "มีผู้เล่นกี่คนที่เสมอกัน 3 และตำแหน่งที่มากกว่า 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_en": "Who sang the song composed by Mariah Carey and Walter Afanasieff?",
    "question_th": "ใครร้องเพลงที่แต่งโดย Mariah Carey และ 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_en": "How many years was Louis Armstrong performing?",
    "question_th": "Louis Armstrong แสดงกี่ปี?",
    "context": "CREATE TABLE table_name_51 (year VARCHAR, performer_s_ VARCHAR)"
  },
  {
    "answer": "SELECT runner_s__up FROM table_name_74 WHERE winning_score = −16(66 - 68 - 70 - 68 = 272)",
    "question_en": "Who were the Runner(s)-up with the winning score of −16 (66-68-70-68=272)?",
    "question_th": "รองชนะเลิศคือใครด้วยคะแนนชนะ −16 (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 = −27(64 - 64 - 61 = 189)",
    "question_en": "What tournament had a winning score of −27 (64-64-61=189)?",
    "question_th": "ทัวร์นาเมนต์ใดมีคะแนนชนะ −27 (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_en": "What tournament had a runner(s)-up of Scott Hoch & Kenny Perry?",
    "question_th": "ทัวร์นาเมนต์ใดที่มีรองแชมป์คือ 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_en": "What tournament had a Runner(s)-up of Tom Kite?",
    "question_th": "การแข่งขันใดที่มีรองชนะเลิศของ 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_en": "What is the date of the Outback Steakhouse Pro-Am Tournament?",
    "question_th": "การแข่งขัน Outback Steakhouse Pro-Am คือวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_94 (date VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_47 WHERE runner_s__up = \"gary mccord\"",
    "question_en": "Which tournament has a Runner(s)-up of Gary McCord?",
    "question_th": "ทัวร์นาเมนต์ใดที่มีรองชนะเลิศคือ 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_en": "What was the location of the game with a score of 2:3?",
    "question_th": "สถานที่ของเกมด้วยคะแนน 2:3 คืออะไร?",
    "context": "CREATE TABLE table_name_90 (location VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_62 WHERE home_team = \"slovakia\"",
    "question_en": "What was the location of the home game for Slovakia?",
    "question_th": "เกมเหย้าของสโลวาเกียอยู่ที่ไหน?",
    "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_en": "What was the tournament where Japan was the home team and Mexico was the away team?",
    "question_th": "อะไรคือทัวร์นาเมนต์ที่ญี่ปุ่นเป็นเจ้าบ้านและเม็กซิโกเป็นทีมเยือน?",
    "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_en": "What was the location of the home game for Japan?",
    "question_th": "ที่ตั้งของเกมเหย้าของญี่ปุ่นคือที่ไหน?",
    "context": "CREATE TABLE table_name_49 (location VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT runner_up FROM table_name_68 WHERE location = \"hossegor\"",
    "question_en": "Who was the Runner-up in Hossegor?",
    "question_th": "ใครคือรองชนะเลิศใน Hossegor?",
    "context": "CREATE TABLE table_name_68 (runner_up VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_88 WHERE location = \"gold coast\"",
    "question_en": "On what Date was the Tournament in Gold Coast?",
    "question_th": "การแข่งขันที่โกลด์โคสต์จัดขึ้นวันไหน?",
    "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_en": "Who was the Winner of the French Polynesia Billabong Pro Event?",
    "question_th": "ใครคือผู้ชนะกิจกรรม French Polynesia Billabong Pro",
    "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_en": "What shows for 2010 when 2007 is a and 2004 is 2r?",
    "question_th": "อะไรแสดงให้เห็นในปี 2010 เมื่อ 2007 เป็น a และ 2004 เป็น 2r",
    "context": "CREATE TABLE table_name_97 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2005 FROM table_name_99 WHERE 2008 = \"grand slam tournaments\"",
    "question_en": "What is the 2005 when the 2008 shows grand slam tournaments?",
    "question_th": "ปี 2548 คืออะไรเมื่อปี 2551 มีการแข่งขันแกรนด์สแลม?",
    "context": "CREATE TABLE table_name_99 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2002 FROM table_name_85 WHERE 2010 = \"69\"",
    "question_en": "What shows for 2002 when 2010 shows 69?",
    "question_th": "อะไรจะแสดงในปี 2545 เมื่อปี 2553 แสดง 69",
    "context": "CREATE TABLE table_name_85 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2010 FROM table_name_60 WHERE 2005 = \"1r\"",
    "question_en": "What shows for 2010 when 2005 shows 1r?",
    "question_th": "อะไรจะแสดงในปี 2010 เมื่อปี 2005 แสดง 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_en": "What is the highest number of draws with more than 15 points, an against of 19, and less than 3 losses?",
    "question_th": "จำนวนการเสมอสูงสุดที่มากกว่า 15 แต้ม เทียบกับ 19 แต้ม และแพ้น้อยกว่า 3 ครั้ง คืออะไร?",
    "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_en": "What stage (winner) has thor hushovd as a general classification, and trent lowe as a rider classification?",
    "question_th": "สเตจใด (ผู้ชนะ) มี thor hushovd อยู่ในประเภททั่วไป และ trent lowe อยู่ในประเภทผู้ขับขี่",
    "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_en": "What stage (winner) has quick step as the team classification, and trent lowe as the young rider classification?",
    "question_th": "สเตจใด (ผู้ชนะ) มีสเต็ปด่วนในการจัดประเภททีม และเทรนต์ โลว์เป็นการจัดประเภทนักบิดรุ่นเยาว์",
    "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_en": "What is the 2000-2001 Team with a Jersey # that is 19?",
    "question_th": "ทีมปี 2000-2001 ที่มีหมายเลขเสื้อหมายเลข 19 คืออะไร?",
    "context": "CREATE TABLE table_name_15 (jersey__number VARCHAR)"
  },
  {
    "answer": "SELECT AVG(tied) FROM table_name_33 WHERE wins > 19",
    "question_en": "What is the average number of ties for years with more than 19 wins?",
    "question_th": "จำนวนความสัมพันธ์โดยเฉลี่ยสำหรับปีที่ชนะมากกว่า 19 ครั้งเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_33 (tied INTEGER, wins INTEGER)"
  },
  {
    "answer": "SELECT COUNT(losses) FROM table_name_82 WHERE wins < 9",
    "question_en": "What is the total number of losses for years with fewer than 9 wins?",
    "question_th": "จำนวนการสูญเสียทั้งหมดในปีที่มีการชนะน้อยกว่า 9 ครั้งเป็นเท่าใด",
    "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_en": "What is the total number of Division(s), when Team is Chongqing Lifan, and when Apps is greater than 9?",
    "question_th": "จำนวนดิวิชั่นทั้งหมดคือเท่าไร เมื่อทีมคือ Chongqing Lifan และเมื่อ Apps มากกว่า 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_en": "What is Season, when Country is China, when Team is Dalian Shide, when Apps is greater than 8, and when Goals is 2?",
    "question_th": "ฤดูกาลคืออะไร เมื่อประเทศคือจีน เมื่อทีมคือต้าเหลียน ไชด์ เมื่อแอปมากกว่า 8 และเมื่อเป้าหมายคือ 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_en": "What is the highest Apps, when Goals are greater than 5?",
    "question_th": "แอพใดที่สูงที่สุด เมื่อเป้าหมายมากกว่า 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_en": "What Season, when Country is China, when Team is Dalian Shide, and when Goals are 0?",
    "question_th": "ฤดูกาลไหน เมื่อประเทศคือจีน เมื่อทีมคือต้าเหลียน ชิเต๋อ และเมื่อประตูเป็น 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_en": "What is the total number of Division(s), when Country is China, when Apps is greater than 9, and when Season is 2008?",
    "question_th": "จำนวนดิวิชั่นทั้งหมดคือเท่าไร เมื่อประเทศคือจีน เมื่อแอปมากกว่า 9 และเมื่อซีซั่นคือปี 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_en": "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?",
    "question_th": "ดิวิชั่นต่ำสุดคือเมื่อประตูน้อยกว่า 10 เมื่อทีมคือ Dalian Shide เมื่อ Apps น้อยกว่า 17 และเมื่อใดคือฤดูกาล 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_en": "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?",
    "question_th": "พื้นที่ต่ำสุดเมื่อมีความหนาแน่นมากกว่า 234.77 ประชากรน้อยกว่า 965,040 และอันดับคือ 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_en": "What is the Home with a Time that is 14:00?",
    "question_th": "บ้านที่มีเวลาเป็น 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_en": "What is the Score with an Away that is high park demons?",
    "question_th": "คะแนนกับทีมเยือนที่เป็นปีศาจปาร์คสูงคืออะไร?",
    "context": "CREATE TABLE table_name_66 (score VARCHAR, away VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_60 WHERE home = \"etobicoke kangaroos\"",
    "question_en": "What is the Score with a Hoe that is etobicoke kangaroos?",
    "question_th": "คะแนนกับจอบที่เป็นจิงโจ้เอโทบิโค้กคืออะไร?",
    "context": "CREATE TABLE table_name_60 (score VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_65 WHERE score = \"46-77\"",
    "question_en": "What is the Date with a Score that is 46-77?",
    "question_th": "วันที่ไหนมีคะแนน 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–34.7°\"",
    "question_en": "Which Pavilion depth has a Crown angle of 34.0–34.7°?",
    "question_th": "ความลึกของศาลาใดมีมุมมงกุฎที่ 34.0–34.7°",
    "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_en": "Which Brilliance Grade has a Benchmark of practical fine cut?",
    "question_th": "เกรด Brilliance ใดที่มีเกณฑ์มาตรฐานของการเจียระไนแบบละเอียดที่ใช้งานได้จริง",
    "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_en": "Which Table diameter has a Crown height of 14.45%?",
    "question_th": "เส้นผ่านศูนย์กลางโต๊ะใดมียอดมงกุฎ 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°\"",
    "question_en": "Which Brilliance Grade has a Crown angle of 41.1°?",
    "question_th": "เกรด Brilliance ใดที่มีมุมมงกุฎ 41.1°",
    "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_en": "Which Pavilion depth has a Brilliance Grade of 100% and a Pavilion angle of n/a?",
    "question_th": "ความลึกของพาวิลเลี่ยนใดมีระดับความแวววาว 100% และมุมพาวิลเลียนที่ 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_en": "What is the number of lost with 2 points?",
    "question_th": "เสีย 2 แต้มได้เท่าไรครับ?",
    "context": "CREATE TABLE table_name_70 (lost VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT agg FROM table_name_60 WHERE team_2 = \"kenya\"",
    "question_en": "What was the aggregate for the match with a team 2 of Kenya?",
    "question_th": "ผลรวมแมตช์กับทีม 2 เคนยาเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_60 (agg VARCHAR, team_2 VARCHAR)"
  },
  {
    "answer": "SELECT agg FROM table_name_28 WHERE team_1 = \"sierra leone\"",
    "question_en": "What was the aggregate for the match with Sierra Leone as team 1?",
    "question_th": "ผลรวมของแมตช์กับเซียร์ราลีโอนในฐานะทีม 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_en": "What was the 1st leg score for the match with Lesotho as team 1?",
    "question_th": "สกอร์เลกแรกสำหรับแมตช์กับเลโซโทเป็นทีม 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_en": "What was the 2nd leg score for the match with Lesotho as team 1?",
    "question_th": "สกอร์เลกที่ 2 ของแมตช์กับเลโซโทเป็นทีม 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_en": "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?",
    "question_th": "ผู้หญิงที่ได้เหรียญเงินน้อยกว่า 3 เหรียญ เหรียญรวมน้อยกว่า 2 เหรียญ และเหรียญทองแดงมากกว่า 0 เหรียญทองแดง มีทั้งหมดกี่เหรียญ?",
    "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_en": "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?",
    "question_th": "จำนวนเหรียญทองทั้งหมดสำหรับนักสเก็ตที่ได้น้อยกว่า 3 เหรียญทองแดง, มากกว่า 0 เหรียญเงิน และอันดับน้อยกว่า 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_en": "What was Matthew Warchus' Award?",
    "question_th": "รางวัลของ Matthew Warchus คืออะไร",
    "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_en": "What is the Format of the French Frequency with a Call sign of CKRL-FM?",
    "question_th": "รูปแบบของความถี่ฝรั่งเศสที่มีสัญญาณเรียกขานของ 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_en": "What is the Format of the Frequency owned by Laval University?",
    "question_th": "รูปแบบของความถี่ที่มหาวิทยาลัยลาวาลเป็นเจ้าของคืออะไร?",
    "context": "CREATE TABLE table_name_96 (format VARCHAR, owner VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_name_63 WHERE format = \"talk radio\"",
    "question_en": "What is the Notes of the Frequency with Format of talk radio?",
    "question_th": "หมายเหตุความถี่พร้อมรูปแบบของวิทยุพูดคุยคืออะไร?",
    "context": "CREATE TABLE table_name_63 (notes VARCHAR, format VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_name_46 WHERE format = \"soft adult contemporary\"",
    "question_en": "What is the Notes of the Frequency with a Format of soft adult contemporary?",
    "question_th": "หมายเหตุของความถี่ที่มีรูปแบบผู้ใหญ่ร่วมสมัยคืออะไร?",
    "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_en": "How many chart runs had a debut position of more than 7 when peak position was 11?",
    "question_th": "มีกี่ครั้งที่การวิ่งบนชาร์ตมีตำแหน่งเปิดตัวมากกว่า 7 เมื่อตำแหน่งสูงสุดคือ 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_en": "Which Spoofed title had Mort Drucker as the artist in issue 88?",
    "question_th": "ชื่อปลอมเรื่องใดที่มี Mort Drucker เป็นศิลปินในฉบับที่ 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_en": "Who was the artist for Spoofed title Genteel Ben in an issue later than 74?",
    "question_th": "ใครคือศิลปินสำหรับชื่อ Spoofed Genteel Ben ในฉบับหลังปี 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_en": "Which issue was the Spoofed title Route 67 for which Mort Drucker was the artist?",
    "question_th": "ประเด็นใดคือชื่อเพลงล้อเลียน Route 67 ที่ Mort Drucker เป็นศิลปิน",
    "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_en": "What is the earliest issue Arnie Kogen wrote for in December 1964?",
    "question_th": "ประเด็นแรกสุดที่ Arnie Kogen เขียนเมื่อเดือนธันวาคม พ.ศ. 2507 คืออะไร",
    "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_en": "What are the highest points that have a difference of 8, with a position less than 4?",
    "question_th": "จุดสูงสุดที่มีผลต่าง 8 กับตำแหน่งน้อยกว่า 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_en": "How many losses have corinthians as the team, with an against greater than 26?",
    "question_th": "ทีมโครินเธียนส์แพ้ไปกี่ครั้ง โดยมากกว่า 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_en": "How many points have a difference of 23, with a drawn less than 5?",
    "question_th": "มีกี่แต้มมีผลต่าง 23 เสมอน้อยกว่า 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_en": "How many positions have 15 for the points, with a drawn less than 3?",
    "question_th": "มีกี่ตำแหน่งที่มี 15 คะแนน โดยเสมอน้อยกว่า 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_en": "What was the result of the match held when his record was 7-0-0?",
    "question_th": "ผลการแข่งขันที่จัดขึ้นเมื่อสถิติของเขาคือ 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_en": "What do the notes say for 1989 May 7?",
    "question_th": "บันทึกย่อของวันที่ 7 พฤษภาคม 1989 บอกอะไร?",
    "context": "CREATE TABLE table_name_32 (notes VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT method FROM table_name_55 WHERE opponent = \"alberto rodriguez\"",
    "question_en": "How did he beat Alberto Rodriguez?",
    "question_th": "เขาเอาชนะอัลแบร์โต โรดริเกซได้อย่างไร?",
    "context": "CREATE TABLE table_name_55 (method VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_79 WHERE date = \"1987\"",
    "question_en": "What was his record in 1987?",
    "question_th": "บันทึกของเขาในปี 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_en": "What is the lowest total that has barbados as the nation with a bronze greater than 0?",
    "question_th": "ผลรวมต่ำสุดที่มีบาร์เบโดสเป็นประเทศที่มีเหรียญทองแดงมากกว่า 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_en": "How many silvers have a gold greater than 2, a bronze less than 35, china as the nation, with a total greater than 26?",
    "question_th": "มีกี่เหรียญเงินที่มีทองคำมากกว่า 2 ทองสัมฤทธิ์น้อยกว่า 35 ประเทศจีนเป็นประเทศชาติ โดยมียอดรวมมากกว่า 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_en": "What is the largest total that has a gold less than 0?",
    "question_th": "ผลรวมที่ใหญ่ที่สุดที่มีทองคำน้อยกว่า 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_en": "How many golds have a silver greater than 1, vietnam as the nation, with a bronze less than 3?",
    "question_th": "มีกี่เหรียญทองที่มีเงินมากกว่า 1 โดยเวียดนามเป็นประเทศ และมีทองแดงน้อยกว่า 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_en": "Which Wins has a Country of new zealand and a Last title larger than 1968?",
    "question_th": "ชัยชนะใดที่มีประเทศนิวซีแลนด์และตำแหน่งสุดท้ายที่ใหญ่กว่าปี 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_en": "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?",
    "question_th": "ตำแหน่งสุดท้ายที่มีชัยชนะน้อยกว่า 71 และตำแหน่งแรกที่ใหญ่กว่าปี 1968 และประเทศฟิจิมีผลรวมเป็นเท่าใด",
    "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_en": "Which First title has Wins smaller than 8 and in Canada?",
    "question_th": "ชื่อแรกใดที่มีชัยชนะน้อยกว่า 8 และในแคนาดา",
    "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_en": "How many Winners have Wins of 1 and a Country of fiji and a First title smaller than 2004?",
    "question_th": "มีผู้ชนะกี่คนที่ได้รับรางวัล 1 และประเทศฟิจิและตำแหน่งแรกที่น้อยกว่าปี 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_en": "What is the latest opened year of the team in Glasgow, Scotland?",
    "question_th": "กลาสโกว์ สกอตแลนด์ เปิดทีมล่าสุดเมื่อปีใด?",
    "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_en": "What is the average opened year of Mini Estadi stadium in Barcelona, Spain?",
    "question_th": "สนาม Mini Estadi ในบาร์เซโลนา ประเทศสเปน เปิดโดยเฉลี่ยกี่ปี?",
    "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_en": "What is the lowest win percentage for teams with more than 23 losses and more than 386 goals for?",
    "question_th": "เปอร์เซ็นต์การชนะต่ำสุดสำหรับทีมที่แพ้มากกว่า 23 ครั้งและทำประตูได้มากกว่า 386 ประตูคือเท่าใด",
    "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_en": "What is the total number of losses for teams with less than 5 ties and more than 330 goals for?",
    "question_th": "จำนวนการแพ้ทั้งหมดของทีมที่เสมอกันน้อยกว่า 5 นัดและมากกว่า 330 ประตูเป็นจำนวนเท่าใด?",
    "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_en": "What is the Score of the Competition with a Result of 5-0?",
    "question_th": "สกอร์การแข่งขันกับผลสกอร์ 5-0 เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_7 (score VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_33 WHERE result = \"5-0\"",
    "question_en": "What is the Score of the Competition with a 5-0 Result?",
    "question_th": "สกอร์การแข่งขันด้วยสกอร์ 5-0 เป็นเท่าไหร่?",
    "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_en": "What is the Date of the Competition with a Score of 4-0 and 5-0 Result?",
    "question_th": "การแข่งขันวันที่เท่าไหร่ด้วยสกอร์ 4-0 และ 5-0?",
    "context": "CREATE TABLE table_name_47 (date VARCHAR, result VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_45 WHERE name = \"yi\"",
    "question_en": "What is the title for YI?",
    "question_th": "ชื่อเรื่องของ YI คืออะไร?",
    "context": "CREATE TABLE table_name_45 (title VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT state FROM table_name_35 WHERE name = \"yi\"",
    "question_en": "What is the state Yi?",
    "question_th": "รัฐยี่คืออะไร?",
    "context": "CREATE TABLE table_name_35 (state VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT state FROM table_name_58 WHERE title = \"king\"",
    "question_en": "What state has the king title?",
    "question_th": "รัฐใดมีตำแหน่งกษัตริย์?",
    "context": "CREATE TABLE table_name_58 (state VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_60 WHERE partner = \"arnaud clément\"",
    "question_en": "What was the score when the partner was arnaud clément?",
    "question_th": "เมื่อคู่หูคืออาร์โนด์ เกลมองต์ คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_60 (score VARCHAR, partner VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_20 WHERE partner = \"kristof vliegen\"",
    "question_en": "What is the Outcome when the partner was kristof vliegen?",
    "question_th": "ผลลัพธ์คืออะไรเมื่อพันธมิตรคือ 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–5, 7–5\"",
    "question_en": "What is the Surface of the match with winner as outcome and a score of 7–5, 7–5?",
    "question_th": "พื้นผิวของการแข่งขันเป็นอย่างไรโดยมีผู้ชนะเป็นผลลัพธ์และคะแนน 7–5, 7–5?",
    "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_en": "What is the Outcome when christophe rochus was partner, on 31 july 2005?",
    "question_th": "ผลลัพธ์จะเป็นเช่นไรเมื่อคริสตอฟ โรคัส มาเป็นหุ้นส่วนในวันที่ 31 กรกฎาคม พ.ศ. 2548",
    "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_en": "What is the Opponents on a clay surface with christophe rochus as partner?",
    "question_th": "คู่ต่อสู้บนพื้นดินเหนียวที่มีคริสตอฟ โรคัสเป็นคู่หูคืออะไร?",
    "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–6, 7–6 (7–5) , 0–6\"",
    "question_en": "What is the Date when christophe rochus was partner, and the score was 2–6, 7–6 (7–5) , 0–6?",
    "question_th": "วันที่เท่าไหร่ที่ Christophe Rochus เป็นหุ้นส่วน และคะแนนคือ 2–6, 7–6 (7–5) , 0–6",
    "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_en": "In what City/town was their institution founded in 1860?",
    "question_th": "สถาบันของพวกเขาก่อตั้งขึ้นในเมืองใดในปี 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_en": "What year was Waynesburg University founded in Pennsylvania?",
    "question_th": "Waynesburg University ก่อตั้งขึ้นในเพนซิลเวเนียปีใด",
    "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_en": "What is Howard Payne University's total enrollment?",
    "question_th": "การลงทะเบียนทั้งหมดของ Howard Payne University เป็นเท่าใด",
    "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_en": "What is the To par when fredrik andersson hed was runner-up?",
    "question_th": "To par คืออะไรเมื่อ fredrik andersson hed ได้รับรางวัลรองชนะเลิศ?",
    "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_en": "What is the Margin of victory when rhys davies was runner-up?",
    "question_th": "Margin of Victory คืออะไรเมื่อ Rhys Davies รองแชมป์?",
    "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 = \"−21\"",
    "question_en": "What is the Winning score when the To par was −21?",
    "question_th": "คะแนนที่ชนะเมื่อพาร์ถึง −21 คืออะไร?",
    "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_en": "What is the Date for the wgc-accenture match play championship?",
    "question_th": "วันที่สำหรับการแข่งขันชิงแชมป์การแข่งขัน wgc-accenture คืออะไร?",
    "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_en": "What is the Margin of victory on 27 feb 2011?",
    "question_th": "อัตรากำไรขั้นต้นของชัยชนะในวันที่ 27 กุมภาพันธ์ 2554 เป็นเท่าใด?",
    "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_en": "What is the Tournament when the winning score was 65-67-68-67=267?",
    "question_th": "การแข่งขันคืออะไรเมื่อคะแนนชนะคือ 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_en": "Which Mission has a Apogee of 705 km?",
    "question_th": "ภารกิจใดมี Apogee 705 กม.",
    "context": "CREATE TABLE table_name_3 (mission VARCHAR, apogee VARCHAR)"
  },
  {
    "answer": "SELECT motor FROM table_name_98 WHERE apogee = \"713 km\"",
    "question_en": "What kind of Motor has a Apogee of 713 km?",
    "question_th": "มอเตอร์รุ่นไหนมี Apogee 713 กม.?",
    "context": "CREATE TABLE table_name_98 (motor VARCHAR, apogee VARCHAR)"
  },
  {
    "answer": "SELECT mission FROM table_name_47 WHERE apogee = \"707 km\"",
    "question_en": "What kind of Mission has a Apogee of 707 km?",
    "question_th": "ภารกิจแบบไหนที่มี Apogee 707 กม.?",
    "context": "CREATE TABLE table_name_47 (mission VARCHAR, apogee VARCHAR)"
  },
  {
    "answer": "SELECT apogee FROM table_name_46 WHERE mission = \"maxus 3\"",
    "question_en": "Which Apogee has a Mission of maxus 3?",
    "question_th": "Apogee ตัวไหนมีภารกิจของ 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_en": "Which Mission is on 2003 apr 1?",
    "question_th": "ภารกิจใดในวันที่ 1 เมษายน 2546?",
    "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_en": "What was the ranking for the episode number before 24 that had a rating of 25.7?",
    "question_th": "อันดับที่เท่าไหร่สำหรับหมายเลขตอนก่อน 24 ที่มีเรตติ้ง 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_en": "What is the rating of the season 10?",
    "question_th": "เรตติ้งของซีซั่น 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_en": "What was the rating of the season that had 18.17 million household viewers?",
    "question_th": "เรตติ้งของซีซันที่มีผู้ชม 18.17 ล้านคนในครอบครัวเป็นเท่าใด",
    "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_en": "How many totals have 2 for the bronze?",
    "question_th": "มีทั้งหมดกี่เหรียญทองแดง?",
    "context": "CREATE TABLE table_name_40 (total VARCHAR, bronze VARCHAR)"
  },
  {
    "answer": "SELECT MIN(silver) FROM table_name_34 WHERE bronze < 0",
    "question_en": "What is the smallest silver that has a bronze less than 0?",
    "question_th": "เงินที่เล็กที่สุดที่มีทองแดงน้อยกว่า 0 คืออะไร?",
    "context": "CREATE TABLE table_name_34 (silver INTEGER, bronze INTEGER)"
  },
  {
    "answer": "SELECT college FROM table_name_93 WHERE pick = 5",
    "question_en": "What college received Pick 5?",
    "question_th": "วิทยาลัยใดได้รับ 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_en": "For the United States International University, what was the highest pick number allowed?",
    "question_th": "สำหรับ United States International University อนุญาตให้เลือกหมายเลขสูงสุดได้เท่าใด",
    "context": "CREATE TABLE table_name_53 (pick INTEGER, college VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_2 WHERE week = 2",
    "question_en": "what was the date of the game on week 2?",
    "question_th": "เกมในสัปดาห์ที่ 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 = \"û\"",
    "question_en": "What is the subjunctive present that is associated with a plural preterite of u, a singular preterite of ou, and a singular present of û?",
    "question_th": "อะไรคือสิ่งที่เสริมเข้ามาที่เกี่ยวข้องกับ preterite พหูพจน์ของ u, preterite เอกพจน์ของ ou และปัจจุบันเอกพจน์ของ û คืออะไร?",
    "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_en": "What is the plural present that has a past participle of e and an infinitive stem of e?",
    "question_th": "ปัจจุบันพหูพจน์ที่มีอดีตกริยาของ e และก้านไม่สิ้นสุดของ 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_en": "What is the infinitive stem that has a subjunctive present of ou?",
    "question_th": "ก้าน infinitive ที่มีการเสริมปัจจุบันของคุณคืออะไร?",
    "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_en": "What is the infinitive stem that is associated with a subjunctive present of a and a plural preterite of uo?",
    "question_th": "อะไรคือต้นกำเนิด infinitive ที่เกี่ยวข้องกับการเสริมปัจจุบันของ a และพหูพจน์ preterite ของ 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_en": "What is the singular present that is associated with a singular preterite of ou and a subjunctive present of ie?",
    "question_th": "อะไรคือของขวัญเอกพจน์ที่เกี่ยวข้องกับ preterite เอกพจน์ของ ou และของขวัญที่ผนวกเข้ามาของเช่น?",
    "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 = \"ü\" AND inf_stem = \"e + l/r + cons.\"",
    "question_en": "What is the plural preterite that is associated with a subjunctive preterite of ü and has an infinitive stem of e + l/r + cons.?",
    "question_th": "preterite พหูพจน์ที่เกี่ยวข้องกับ preterite ที่ผนวกเข้ามาของ ü คืออะไร และมีต้นกำเนิดเป็น infinitive เป็น 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_en": "What is the history behind the vessel Speedrunner IV (SSC4) built after 1997?",
    "question_th": "ประวัติศาสตร์เบื้องหลังเรือ Speedrunner IV (SSC4) ที่สร้างขึ้นหลังปี 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_en": "What is the most recent year that Queen Nefertiti (pegasus two) was built?",
    "question_th": "สมเด็จพระราชินีเนเฟอร์ติติ (เพกาซัสที่ 2) สร้างขึ้นเมื่อใดคือปีล่าสุด?",
    "context": "CREATE TABLE table_name_44 (built INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT history FROM table_name_88 WHERE name = \"speedrunner iii (ssc3)\"",
    "question_en": "What is the history behind Speedrunner III (SSC3)?",
    "question_th": "ประวัติเบื้องหลัง 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_en": "What was the opponent on november 8, 1981?",
    "question_th": "คู่ต่อสู้เมื่อวันที่ 8 พฤศจิกายน พ.ศ. 2524 คืออะไร?",
    "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_en": "What is the longest Time (seconds), when the Nation - athlete(s) is Sylke Otto - Germany?",
    "question_th": "เวลาที่ยาวที่สุด (วินาที) คือเมื่อนักกีฬา Nation คือ Sylke Otto - เยอรมนี?",
    "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_en": "What is the Date, when the Sport is luge - men's doubles, and when the Record is, \"start\"?",
    "question_th": "วันที่คือเมื่อใดที่กีฬาคือการเล่นลูจ - ชายคู่ และเมื่อบันทึกคือ \"เริ่มต้น\"?",
    "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_en": "What is the Nation - athlete(s), when the Sport is luge - men's singles, and when the Record is, \"track\"?",
    "question_th": "อะไรคือ Nation - นักกีฬา เมื่อกีฬาคือการเล่นลูจ - ชายเดี่ยว และเมื่อบันทึกคือ \"ลู่วิ่ง\"?",
    "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_en": "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?",
    "question_th": "วันที่คืออะไร เมื่อบันทึกเป็น \"แทร็ก\" เมื่อเวลา (วินาที) ยาวกว่า 43.564 และเมื่อกีฬาเป็นลูจ - หญิงเดี่ยว?",
    "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_en": "What is the highest Z (p) when arsenic is the element, and the N (n) is more than 42",
    "question_th": "ค่า Z (p) สูงสุดคืออะไรเมื่อสารหนูเป็นธาตุ และ N (n) มากกว่า 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_en": "What is the highest Z (p) when the N (n) is less than 30, and scandium is the element?",
    "question_th": "ค่า Z (p) สูงสุดคือเท่าใด เมื่อ N (n) น้อยกว่า 30 และสแกนเดียมเป็นธาตุ",
    "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_en": "What is the isotopic mass (u) when the nuclide is 89 y?",
    "question_th": "มวลไอโซโทป (u) เป็นเท่าใดเมื่อนิวไคลด์อยู่ที่ 89 ปี?",
    "context": "CREATE TABLE table_name_6 (isotopic_mass___u__ VARCHAR, nuclide VARCHAR)"
  },
  {
    "answer": "SELECT element FROM table_name_79 WHERE nuclide = \"55 mn\"",
    "question_en": "What is the Element when the Nuclide is 55 mn?",
    "question_th": "ธาตุคืออะไรเมื่อนิวไคลด์อยู่ที่ 55 นาที?",
    "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_en": "What is Venue, when Date is 23,24,26,27,28,29 Feb, 1 Mar 1912?",
    "question_th": "Venue คืออะไร เมื่อวันที่ 23,24,26,27,28,29 ก.พ. 1 มี.ค. 2455",
    "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_en": "What is Date, when Venue is Melbourne Cricket Ground, and when Result is Eng By Inns&225 Runs?",
    "question_th": "วันที่คือเมื่อใด สถานที่คือสนามคริกเก็ตเมลเบิร์น และเมื่อผลการแข่งขันคือ 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_en": "What is Result, when Venue is Sydney Cricket Ground, and when Date is 23,24,26,27,28,29 Feb, 1 Mar 1912?",
    "question_th": "ผลลัพธ์คืออะไร เมื่อสถานที่คือสนามคริกเก็ตซิดนีย์ และวันที่คือ 23,24,26,27,28,29 กุมภาพันธ์ 1 มีนาคม 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_en": "What is Away Captain, when Date is 30 Dec, 1,2,3 Jan 1911/2?",
    "question_th": "Away Captain คืออะไร เมื่อวันที่ 30 ธ.ค. 1,2,3 ม.ค. 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_en": "What is Venue, when Date is 23,24,26,27,28,29 Feb, 1 Mar 1912?",
    "question_th": "Venue คืออะไร เมื่อวันที่ 23,24,26,27,28,29 ก.พ. 1 มี.ค. 2455",
    "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_en": "What is Home Captain, when Date is 23,24,26,27,28,29 Feb, 1 Mar 1912?",
    "question_th": "Home Captain คืออะไร เมื่อวันที่คือ 23,24,26,27,28,29 ก.พ. 1 มี.ค. 2455",
    "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_en": "What is Catalog, when the Region is UK, and when Label is Razor Records?",
    "question_th": "แคตตาล็อกคืออะไร เมื่อภูมิภาคคือสหราชอาณาจักร และเมื่อใด Label คือ 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_en": "What is the latest Date, when Label is Captain Oi! Records?",
    "question_th": "ล่าสุดคือเมื่อ ป้ายกำกับ กัปตันอ้อย! บันทึก?",
    "context": "CREATE TABLE table_name_58 (date INTEGER, label VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_name_61 WHERE date = 2004",
    "question_en": "What is Region, when Date is 2004?",
    "question_th": "ภูมิภาคคืออะไร เมื่อเป็นวันที่ 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_en": "What is Catalog, when Format is CD, when Region is US, when Date is before 2004, and when Label is Taang! Records?",
    "question_th": "แค็ตตาล็อกคืออะไร เมื่อรูปแบบเป็นซีดี เมื่อภูมิภาคเป็นสหรัฐอเมริกา เมื่อวันที่เป็นก่อนปี 2004 และเมื่อป้ายกำกับเป็น Taang! บันทึก?",
    "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_en": "What is the largest amount of top division titles featuring the tammeka club?",
    "question_th": "ตำแหน่งสูงสุดในดิวิชั่นสูงสุดที่มีสโมสร tammeka คืออะไร?",
    "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_en": "What is the largest number of top division titles with a 2012 position of 10th?",
    "question_th": "ตำแหน่งสูงสุดในดิวิชั่นสูงสุดโดยครองอันดับที่ 10 ในปี 2012 คืออะไร?",
    "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_en": "How many seasons in Meistriliiga when the club was kuressaare also had a first season in top division of more than 2000?",
    "question_th": "กี่ฤดูกาลใน Meistriliiga เมื่อสโมสรเป็น kuressaare ยังมีฤดูกาลแรกในดิวิชั่นสูงสุดมากกว่า 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_en": "Who attended Columbia law school and was appointed in 2004?",
    "question_th": "ใครเข้าเรียนที่โรงเรียนกฎหมายโคลัมเบียและได้รับแต่งตั้งในปี 2547",
    "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_en": "Which Term expiration has an Appointing Governor of george pataki, republican, and an Appointed larger than 2004?",
    "question_th": "การสิ้นสุดวาระใดที่มีการแต่งตั้งผู้ว่าการรัฐจอร์จ ปาตากี พรรครีพับลิกัน และการได้รับการแต่งตั้งมากกว่าปี 2547",
    "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_en": "Which law school did judge sheila abdus-salaam attend, who was appointed in 2004?",
    "question_th": "โรงเรียนกฎหมายแห่งใดที่ผู้พิพากษาชีลา อับดุส-สลามเข้าเรียน ซึ่งได้รับการแต่งตั้งในปี 2547",
    "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_en": "What is the number of races having top 5s over 2 and average starts of 6.5?",
    "question_th": "จำนวนการแข่งขันที่มี 5 อันดับแรกมากกว่า 2 และการออกสตาร์ทเฉลี่ยที่ 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_en": "What is the lowest average finish having top 5s of 0?",
    "question_th": "การจบสกอร์เฉลี่ยต่ำสุดโดยมี 5 อันดับแรกเป็น 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_en": "What Volume:Issue that has Peter Cetera as the artist and was on top for longer than 1 week?",
    "question_th": "เล่มไหน:ปัญหาที่มี Peter Cetera เป็นศิลปินและอยู่อันดับสูงสุดนานกว่า 1 สัปดาห์",
    "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_en": "What is the longest weeks on top when the Artist was Bruce Hornsby and the Range?",
    "question_th": "สัปดาห์ที่ยาวที่สุดเมื่อศิลปินคือ Bruce Hornsby และ 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_en": "What is the Score of the game with arsenal win 4-2 on penalties in the attendance field?",
    "question_th": "สกอร์ของเกมเป็นอย่างไรบ้าง โดย อาร์เซน่อล ชนะจุดโทษ 4-2 ในสนามเยือน?",
    "context": "CREATE TABLE table_name_85 (score VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_55 WHERE tie_no = \"3\"",
    "question_en": "What team was the Away team when the Tie no was 3?",
    "question_th": "ทีมใดเป็นทีมเยือนเมื่อเสมอหมายเลข 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_en": "What is the Tie no when the away team was Burnley?",
    "question_th": "เสมอไม่เมื่อทีมเยือนคือเบิร์นลี่ย์คืออะไร?",
    "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_en": "What shows for Tie no when Sheffield United was the Away team?",
    "question_th": "เสมอไม่แสดงให้เห็นอะไรเมื่อเชฟฟิลด์ยูไนเต็ดเป็นทีมเยือน?",
    "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_en": "What rank is the team with 1 silver, 3 bronze and a total of less than 8 medals?",
    "question_th": "ทีมอันดับไหนได้ 1 เหรียญเงิน 3 เหรียญทองแดง และรวมไม่ถึง 8 เหรียญ?",
    "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_en": "Which Balls Faced has a Average of 39.13 and Runs Scored larger than 313?",
    "question_th": "ลูกบอลใดที่เผชิญหน้ามีค่าเฉลี่ย 39.13 และคะแนนการวิ่งมากกว่า 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_en": "Which Name has an Average of 48.83?",
    "question_th": "ชื่อใดมีค่าเฉลี่ย 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_en": "Which average S.R. has an Average of 39.13 and Balls Faced larger than 318?",
    "question_th": "SR เฉลี่ยใดที่มีค่าเฉลี่ย 39.13 และลูกบอลที่เผชิญมากกว่า 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_en": "How many S.R. that has Runs Scored of 161 and an Average larger than 26.83?",
    "question_th": "มี SR จำนวนเท่าใดที่มีคะแนนรัน 161 และค่าเฉลี่ยมากกว่า 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_en": "What kind of Average has a S.R. of 70.43 and Runs Scored smaller than 293?",
    "question_th": "ค่าเฉลี่ยประเภทใดที่มี SR 70.43 และคะแนนการรันน้อยกว่า 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_en": "Which S.R. has a Average smaller than 23.63 Runs Scored of 49?",
    "question_th": "SR ใดมีค่าเฉลี่ยน้อยกว่า 23.63 คะแนนรันที่ 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_en": "What is the Acquisition that has less than 22, in the 2002 season?",
    "question_th": "การเข้าซื้อกิจการที่มีน้อยกว่า 22 ในฤดูกาล 2545 คืออะไร?",
    "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_en": "What is the number of the acquisition of import in the 2002 season?",
    "question_th": "จำนวนการได้มาซึ่งการนำเข้าในฤดูกาล 2545 เป็นเท่าใด?",
    "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_en": "What is the name from the 2002 season, and acquired via free agency?",
    "question_th": "ชื่ออะไรในฤดูกาล 2002 และได้มาจากเอเจนซี่อิสระ?",
    "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_en": "What is the name of the player acquired via import and larger than 22?",
    "question_th": "ชื่อของผู้เล่นที่ได้มาจากการนำเข้าและมีขนาดใหญ่กว่า 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_en": "Who was on the prohibition ticket when Abraham J. Cuddeback was on the Greenback ticket?",
    "question_th": "ใครอยู่ในตั๋วห้ามเมื่อ Abraham J. Cuddeback อยู่ในตั๋ว Greenback?",
    "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_en": "Which office was Richard M. Griffin vying for on the Greenback ticket?",
    "question_th": "Richard M. Griffin ออฟฟิศไหนที่แย่งชิงตั๋ว Greenback",
    "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_en": "Who was on the Prohibition ticket when Thomas Armstrong ran on the Greenback ticket?",
    "question_th": "ใครอยู่ในตั๋วห้ามเมื่อโทมัส อาร์มสตรองวิ่งบนตั๋วกรีนแบ็ค",
    "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_en": "Who was on the prohibition ticket when the Greenback ticket had Thomas Armstrong?",
    "question_th": "ใครอยู่ในตั๋วต้องห้ามเมื่อตั๋ว Greenback มี 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_en": "Who was on the Republican ticket for the office of Inspector of state prisons?",
    "question_th": "ใครอยู่ในตั๋วของพรรครีพับลิกันสำหรับสำนักงานสารวัตรเรือนจำของรัฐ?",
    "context": "CREATE TABLE table_name_8 (republican_ticket VARCHAR, office VARCHAR)"
  },
  {
    "answer": "SELECT office FROM table_name_31 WHERE prohibition_ticket = \"henry hagner\"",
    "question_en": "What office did Henry Hagner run for on the prohibition ticket?",
    "question_th": "Henry Hagner ลงสมัครรับตำแหน่งในสำนักงานใดเกี่ยวกับตั๋วห้าม",
    "context": "CREATE TABLE table_name_31 (office VARCHAR, prohibition_ticket VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_81 WHERE record = \"16-8\"",
    "question_en": "What is the home of the team with a 16-8 record?",
    "question_th": "เจ้าบ้านกับสถิติ 16-8 คืออะไร?",
    "context": "CREATE TABLE table_name_81 (home VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_92 WHERE score = \"96-89\"",
    "question_en": "What is the date of the game that ended with a score of 96-89?",
    "question_th": "จบเกมด้วยสกอร์ 96-89 วันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_92 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_68 WHERE visitor = \"indiana\"",
    "question_en": "How many people went to the game with Indiana visiting?",
    "question_th": "มีกี่คนที่ไปเล่นเกมโดยมีอินเดียน่ามาเยี่ยม?",
    "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_en": "What is the date of the Cleveland home game with a 20-8 record?",
    "question_th": "เกมเหย้าคลีฟแลนด์ด้วยสถิติ 20-8 วันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_74 (date VARCHAR, home VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_42 WHERE home = \"new jersey\"",
    "question_en": "What is the score of the New Jersey home game?",
    "question_th": "เกมเหย้านิวเจอร์ซี่ย์สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_42 (score VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_29 WHERE score = \"75-90\"",
    "question_en": "How many people attended the game with a final score of 75-90?",
    "question_th": "มีกี่คนที่เข้าร่วมการแข่งขันด้วยคะแนนสุดท้าย 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_en": "What is Mike Weir's To par?",
    "question_th": "พาร์ของ Mike Weir คืออะไร?",
    "context": "CREATE TABLE table_name_79 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_48 WHERE player = \"vijay singh\"",
    "question_en": "From Country is Vijay Singh?",
    "question_th": "วีเจย์ซิงห์มาจากประเทศอะไร?",
    "context": "CREATE TABLE table_name_48 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_71 WHERE place = \"t5\"",
    "question_en": "What is the Player in T5 Place?",
    "question_th": "ผู้เล่นใน 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_en": "What is the Place of the Player with a Score of 73-73-65-73=284?",
    "question_th": "ผู้เล่นที่มีคะแนน 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_en": "Who was the Home captain that played at the venue Oval?",
    "question_th": "ใครคือกัปตันทีมเหย้าที่เล่นในสนามโอวัล?",
    "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_en": "Who was the Away captain that played on 12,13,14 Jun 1902 which resulted in a draw?",
    "question_th": "ใครคือกัปตันทีมเยือนที่ลงเล่นเมื่อวันที่ 12,13,14 มิ.ย. 1902 ซึ่งส่งผลให้เสมอกัน?",
    "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_en": "Who is the Away captain that played on 11,12,13 Aug 1902?",
    "question_th": "ใครคือกัปตันทีมเยือนที่ลงเล่นในวันที่ 11,12,13 ส.ค. 1902?",
    "context": "CREATE TABLE table_name_95 (away_captain VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_31 WHERE date = \"29,30–31 may 1902\"",
    "question_en": "What was the result of the game that was played on 29,30–31 May 1902?",
    "question_th": "ผลการแข่งขันที่เล่นในวันที่ 29.30–31 พฤษภาคม พ.ศ. 2445 เป็นอย่างไร?",
    "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_en": "What was the result of the game that was played on 3,4,5 Jul 1902?",
    "question_th": "ผลของเกมที่เล่นในวันที่ 3,4,5 กรกฎาคม 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_en": "What is the number of ends lost when there are 15 blank ends, less than 14 stolen ends?",
    "question_th": "จำนวนปลายที่สูญเสียไปเมื่อมีปลายว่าง 15 อัน และปลายที่ถูกขโมยน้อยกว่า 14 อันเป็นเท่าใด",
    "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_en": "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?",
    "question_th": "จำนวนปลายว่างเมื่อปลายที่ถูกขโมยคือ 17 และเจนนิเฟอร์ โจนส์ถูกข้ามไปด้วยการยิงมากกว่า 83 เปอร์เซ็นต์เป็นเท่าใด",
    "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_en": "What is the average Wins, when F/Laps is greater than 1, and when Points is 80?",
    "question_th": "การชนะโดยเฉลี่ยคือเท่าใด เมื่อ F/รอบมากกว่า 1 และเมื่อแต้มคือ 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_en": "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?",
    "question_th": "ผลรวมของการแข่งขันคืออะไร เมื่อโพเดียมน้อยกว่า 3 เมื่อชนะเป็น 0 เมื่อฤดูกาลคือหลังปี 2001 และเมื่อคะแนนเป็น 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_en": "What is the average Season, when F/Laps is 1, and when Poles is less than 0?",
    "question_th": "ฤดูกาลเฉลี่ยคือเท่าใด เมื่อ F/รอบคือ 1 และเมื่อโปแลนด์น้อยกว่า 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_en": "What is the highest Poles, when Series is Ginetta Championship, and when Season is before 2007?",
    "question_th": "เสาที่สูงที่สุดคืออะไร เมื่อ Series คือ Ginetta Championship และเมื่อใดคือ Season ก่อนปี 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_en": "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?",
    "question_th": "อะไรคือค่าต่ำสุดของ wk 7 ที่มีค่า wk 3 เป็น 12, wk 4 น้อยกว่า 9 และ wk 2 มากกว่า 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_en": "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?",
    "question_th": "ค่า wk 3 ต่ำสุดที่มีค่า n/r ใน wk 14 ค่า wk 2 เป็น 7 และค่า wk 11 มากกว่า 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_en": "What is the Date for the actual title archie bunker's place?",
    "question_th": "วันที่สำหรับชื่อจริงของบังเกอร์อาร์ชี่คือวันที่เท่าไร?",
    "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_en": "What is the name of the Artist for the Spoofed Title of the moron downer jr. show?",
    "question_th": "ศิลปินชื่ออะไรสำหรับหัวข้อปลอมๆ ของไอ้ปัญญาอ่อน จูเนียร์ แสดง?",
    "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_en": "What issue was the Spoofed Title of the crockford files in?",
    "question_th": "ชื่อปลอมของไฟล์ crockford มีปัญหาอะไร",
    "context": "CREATE TABLE table_name_50 (issue VARCHAR, spoofed_title VARCHAR)"
  },
  {
    "answer": "SELECT writer FROM table_name_21 WHERE issue = 224",
    "question_en": "What is the name of the writer for issue 224?",
    "question_th": "ผู้เขียนฉบับที่ 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_en": "What is the smallest amount of points had a lost number of 2 when the position was less than 1?",
    "question_th": "คะแนนน้อยที่สุดมีเลข 2 หายไปเมื่อตำแหน่งน้อยกว่า 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_en": "What is the mean number of against when the position is less than 1?",
    "question_th": "จำนวนเฉลี่ยต่อเมื่อตำแหน่งน้อยกว่า 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_en": "What is the mean number of played when there are less than 18 points and the position is less than 8?",
    "question_th": "ค่าเฉลี่ยที่เล่นได้น้อยกว่า 18 แต้ม และตำแหน่งน้อยกว่า 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_en": "What is the sum of lost when against is less than 37, drawn is more than 2, and played is more than 20?",
    "question_th": "ผลรวมของการสูญเสียเมื่อต่อน้อยกว่า 37 เสมอมากกว่า 2 และเล่นมากกว่า 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_en": "What is the total area of drakenstein and a population less than 251,262?",
    "question_th": "ดราเกนสไตน์มีพื้นที่รวมและมีประชากรน้อยกว่า 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_en": "For Stellenbosch, which has a population larger than 155,733, what is the average area?",
    "question_th": "สำหรับสเตลเลนบอชซึ่งมีประชากรมากกว่า 155,733 คน พื้นที่เฉลี่ยคือเท่าใด",
    "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_en": "What is the lowest population for the area that has a density of 36.7?",
    "question_th": "พื้นที่ที่มีความหนาแน่น 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_en": "How many points against has team Cardiff had when there were less than 7 tries?",
    "question_th": "ทีมคาร์ดิฟฟ์มีกี่คะแนนเมื่อพยายามน้อยกว่า 7 ครั้ง?",
    "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_en": "What is the amount of fog where the rain is 1 109?",
    "question_th": "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_en": "What is the amount of snow where the days for storms are 31?",
    "question_th": "ปริมาณหิมะที่ 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_en": "What is the amount of snow where the sunshine is 1 633, and storms are lower than 29?",
    "question_th": "ปริมาณหิมะที่แสงแดดอยู่ที่ 1 633 และพายุต่ำกว่า 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_en": "What are the number of storms where fog is lower than 74, and sunshine is 2 668?",
    "question_th": "พายุที่มีหมอกต่ำกว่า 74 และแสงแดดอยู่ที่ 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_en": "Who is the away team for the tome team Leeds United, at the League Cup Competition?",
    "question_th": "ใครคือทีมเยือนของทีมลีดส์ ยูไนเต็ด ในการแข่งขันลีกคัพ?",
    "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_en": "What chassis has patrick racing as an entrant, with a start greater than 6?",
    "question_th": "แชสซีใดที่มีแพทริคเรซซิ่งเป็นผู้เข้าแข่งขันโดยออกสตาร์ทมากกว่า 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_en": "What is the average finish that has 24 as the start, with a year after 1987?",
    "question_th": "การจบสกอร์โดยเฉลี่ยที่มี 24 เป็นจุดเริ่มต้น โดยหนึ่งปีหลังจากปี 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_en": "What is the lowest year that has lola t93/00 as the chassis with a start leas than 14?",
    "question_th": "ปีต่ำสุดที่มีโลล่า t93/00 เป็นแชสซีที่มีสตาร์ทน้อยกว่า 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_en": "What is the lowest finish that has a start greater than 27, with a year after 1985?",
    "question_th": "การจบสกอร์ต่ำสุดที่ออกสตาร์ทมากกว่า 27 หนึ่งปีหลังจากปี 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_en": "What start has a ford cosworth dfx as the engine, a year later than 1981, and kraco enterprises as the entrant?",
    "question_th": "สตาร์ทอัพอะไรที่มี Ford cosworth dfx เป็นเครื่องยนต์ หนึ่งปีต่อมาหลังจากปี 1981 และมีบริษัท kraco เป็นผู้เข้าร่วม?",
    "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_en": "What is the Date, when the Team Record is 2-0?",
    "question_th": "วันที่เท่าไหร่ที่สถิติทีมเป็น 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–24\"",
    "question_en": "What is the Team Record, when the Result is l 0–24?",
    "question_th": "บันทึกของทีมคืออะไร เมื่อผลลัพธ์คือ l 0–24",
    "context": "CREATE TABLE table_name_52 (team_record VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT team_record FROM table_name_34 WHERE attendance = \"16,151\"",
    "question_en": "What is Team Record, when Attendance is 16,151?",
    "question_th": "Team Record คืออะไร เมื่อมีผู้เข้าร่วม 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_en": "What is the highest draw that has points greater than 4, with a match greater than 5?",
    "question_th": "เสมอสูงสุดที่มีคะแนนมากกว่า 4 โดยมีการแข่งขันมากกว่า 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_en": "What is the average draw that has a lost less than 4, gwardia bydgoszcz as the team, with a match greater than 5?",
    "question_th": "ค่าเฉลี่ยเสมอกันที่แพ้น้อยกว่า 4 โดยมีกวาร์เดีย บิดกอสซ์เป็นทีม โดยมีแมตช์มากกว่า 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_en": "What is the lowest match that has a lost greater than 3, and kolejarz rawicz as the team?",
    "question_th": "นัดไหนน้อยที่สุดที่แพ้มากกว่า 3 และมีโคเลจาร์ซ ราวิซเป็นทีม?",
    "context": "CREATE TABLE table_name_99 (match INTEGER, lost VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(match) FROM table_name_32 WHERE lost = 0",
    "question_en": "How many matches have 0 as the lost?",
    "question_th": "มีกี่นัดที่แพ้ 0?",
    "context": "CREATE TABLE table_name_32 (match VARCHAR, lost VARCHAR)"
  },
  {
    "answer": "SELECT SUM(game) FROM table_name_44 WHERE score = \"w 104–90 (ot)\"",
    "question_en": "What is the sum of Game with a Score that is w 104–90 (ot)?",
    "question_th": "ผลรวมของเกมที่มีคะแนนคือ 104–90 (ot) เป็นเท่าใด",
    "context": "CREATE TABLE table_name_44 (game INTEGER, score VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_name_70 WHERE game = 56",
    "question_en": "What is the High rebounds of a Game with 56?",
    "question_th": "การรีบาวด์สูงสุดของเกมด้วย 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_en": "What was the option from Italy with general television content, and the Cielo television service?",
    "question_th": "ตัวเลือกจากอิตาลีที่มีเนื้อหาโทรทัศน์ทั่วไปและบริการโทรทัศน์ Cielo คืออะไร",
    "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_en": "What country has Tematico Content, and a package with sky TV and the Lei television service?",
    "question_th": "ประเทศใดบ้างที่มีเนื้อหา Tematico และแพ็คเกจพร้อม sky TV และบริการโทรทัศน์ Lei",
    "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_en": "What is the television service that has package with sky tv, and it in Italian English?",
    "question_th": "บริการโทรทัศน์ที่มีแพ็คเกจพร้อมสกายทีวีคืออะไรและเป็นภาษาอังกฤษแบบอิตาลี?",
    "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_en": "What language is the Tematico content with a sky tv package, and Fox Crime television service?",
    "question_th": "เนื้อหา Tematico พร้อมแพ็คเกจ sky tv และบริการโทรทัศน์ Fox Crime เป็นภาษาอะไร",
    "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_en": "What country has a television service with Cartello Promozionale sky hd?",
    "question_th": "ประเทศใดบ้างที่มีบริการโทรทัศน์กับ 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_en": "What country has a Fox television service?",
    "question_th": "ประเทศใดบ้างที่มีบริการโทรทัศน์ Fox?",
    "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_en": "Who drove for Mathiasen Motorsports with dane cameron as pole position?",
    "question_th": "ใครขับรถให้กับ Mathiasen Motorsports โดยมี Dane Cameron ดำรงตำแหน่งโพลโพซิชั่น?",
    "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_en": "What winning team did Jonathan bomarito drive for when jonathan summerton had the fastest lap?",
    "question_th": "Jonathan Bomarito ขับให้ทีมใดเป็นผู้ชนะเมื่อ Jonathan Summerton ทำเวลาต่อรอบได้เร็วที่สุด",
    "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_en": "When Douglas Soares had the fastest lap, what was the report?",
    "question_th": "เมื่อ Douglas Soares ทำรอบได้เร็วที่สุด มีรายงานอะไรบ้าง?",
    "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_en": "When the winning team of mathiasen motorsports has a pole position of jonathan bomarito, who has the fastest lap?",
    "question_th": "เมื่อทีมผู้ชนะ Mathiasen Motorsports มีตำแหน่งโพลโพซิชั่นอย่าง Jonathan Bomarito ใครทำเวลาต่อรอบได้เร็วที่สุด?",
    "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_en": "When the driver jonathan summerton won and dane cameron had the fastest lap, what was the report?",
    "question_th": "เมื่อนักแข่ง jonathan summerton ชนะ และ Dane Cameron ทำรอบได้เร็วที่สุด มีรายงานอะไรบ้าง",
    "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_en": "Which Year has a Competition of olympic games, and a Venue of atlanta, united states?",
    "question_th": "ปีใดที่มีการแข่งขันกีฬาโอลิมปิก และที่เมืองแอตแลนต้า ประเทศสหรัฐอเมริกา",
    "context": "CREATE TABLE table_name_93 (year INTEGER, competition VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_30 WHERE year = 1993",
    "question_en": "Which Competition has a Year of 1993?",
    "question_th": "การแข่งขันใดมีปี 1993?",
    "context": "CREATE TABLE table_name_30 (competition VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_name_78 WHERE competition = \"venice marathon\"",
    "question_en": "Which Notes has a Competition of venice marathon?",
    "question_th": "Notes ตัวไหนมีการแข่งขันเวนิสมาราธอน?",
    "context": "CREATE TABLE table_name_78 (notes VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_13 WHERE venue = \"atlanta, united states\"",
    "question_en": "Which Year has a Venue of atlanta, united states?",
    "question_th": "ปีไหนมีสถานที่จัดงานในแอตแลนตา สหรัฐอเมริกา?",
    "context": "CREATE TABLE table_name_13 (year VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_name_89 WHERE venue = \"barcelona, spain\"",
    "question_en": "Which Notes has a Venue of barcelona, spain?",
    "question_th": "Notes ใดมีสถานที่จัดงานที่บาร์เซโลนา ประเทศสเปน",
    "context": "CREATE TABLE table_name_89 (notes VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_36 WHERE year = 1986",
    "question_en": "Which Event has a Year of 1986?",
    "question_th": "เหตุการณ์ใดมีปี พ.ศ. 2529?",
    "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_en": "What is the average share for episodes with over 7.82 viewers, ranks of 3 and a weekly rank of 54?",
    "question_th": "ส่วนแบ่งเฉลี่ยของตอนที่มีผู้ชมมากกว่า 7.82 คน อันดับที่ 3 และอันดับรายสัปดาห์ที่ 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_en": "What is the weekly rank for the episode with a share over 7 and a rating/share of 2.3/7?",
    "question_th": "อันดับรายสัปดาห์ของตอนที่มีส่วนแบ่งมากกว่า 7 และคะแนน/ส่วนแบ่ง 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_en": "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?",
    "question_th": "อันดับรายสัปดาห์ของตอนที่มีผู้ชมมากกว่า 7.14 ล้านคน อันดับที่ 5 ต่อคืน และเรตติ้ง/ส่วนแบ่ง 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_en": "What is the total gain for Brandon Mcrae with a loss less than 4, and an Avg/g less than -0.1?",
    "question_th": "กำไรรวมของ Brandon Mcrae ที่ขาดทุนน้อยกว่า 4 และ Avg/g น้อยกว่า -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_en": "What is the lowest long with a Gp-GS of 11-8, and a gain less than 228?",
    "question_th": "อะไรคือความยาวต่ำสุดที่มี gp-GS อยู่ที่ 11-8 และกำไรน้อยกว่า 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_en": "What is the lowest gain with an 18 long, and a loss less than 191?",
    "question_th": "อะไรคือกำไรต่ำสุดที่มีความยาว 18 และขาดทุนน้อยกว่า 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_en": "What is the sum of 1938 values where 1933 values are under 68.3 and 1940 valures are under 4.02?",
    "question_th": "ผลรวมของค่า 1938 โดยที่ค่า 1933 ต่ำกว่า 68.3 และ 1940 มีค่าต่ำกว่า 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_en": "What is the average 1940 value where 1929 values are 101.4 and 1933 values are over 68.3?",
    "question_th": "ค่าเฉลี่ยปี 1940 คือเท่าใด โดยค่า 1929 คือ 101.4 และค่า 1933 มากกว่า 68.3",
    "context": "CREATE TABLE table_name_6 (Id VARCHAR)"
  },
  {
    "answer": "SELECT MAX(1937) FROM table_name_60 WHERE 1940 > 126",
    "question_en": "What is the highest 1937 value that has a 1940 value over 126?",
    "question_th": "ค่าสูงสุดในปี 1937 ที่มีมูลค่า 1940 มากกว่า 126 คืออะไร?",
    "context": "CREATE TABLE table_name_60 (Id VARCHAR)"
  },
  {
    "answer": "SELECT timeslot FROM table_name_43 WHERE translation = \"ბრაზილიის უბანი\"",
    "question_en": "At what time is the ბრაზილიის უბანი shown?",
    "question_th": "ბრაზილიისბრაზილიისแสดงเวลากี่โมง?",
    "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_en": "What country was the series finale present and was shown Monday to Sunday at 18:45-21:00?",
    "question_th": "ละครตอนจบออกอากาศที่ประเทศใด วันจันทร์ถึงวันอาทิตย์ เวลา 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 = \"ოჰ ეს ცრემლები / პარალელური საიდუმლო\"",
    "question_en": "What series finale has the translation ოჰ ეს ცრემლები / პარალელური საიდუმლო?",
    "question_th": "ตอนจบของซีรีส์เรื่องใดที่มีคำแปล ოჰ ეს ცრემლებคริป / პრრლელურსდუმლო?",
    "context": "CREATE TABLE table_name_56 (series_finale VARCHAR, translation VARCHAR)"
  },
  {
    "answer": "SELECT weekly_schedule FROM table_name_21 WHERE timeslot = \"16:45\"",
    "question_en": "What days of the week is the show aired on that runs at 16:45?",
    "question_th": "รายการออกอากาศวันไหนในสัปดาห์เวลา 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_en": "Which days of the week does the telenovela play that is aired at 11:00?",
    "question_th": "เทเลโนเวลาเล่นวันไหนของสัปดาห์ที่ออกอากาศเวลา 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_en": "Which Tournament was on 2 October 2006?",
    "question_th": "การแข่งขันใดคือวันที่ 2 ตุลาคม พ.ศ. 2549?",
    "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_en": "Who is the Opponent in the final on 4 April 2011?",
    "question_th": "ใครคือคู่ต่อสู้ในรอบชิงชนะเลิศวันที่ 4 เมษายน พ.ศ. 2554?",
    "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_en": "What Surface was used on 2 June 2003?",
    "question_th": "Surface ใดที่ถูกใช้ในวันที่ 2 มิถุนายน พ.ศ. 2546",
    "context": "CREATE TABLE table_name_94 (surface VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT award FROM table_name_54 WHERE category = \"teen pick show: comedy\"",
    "question_en": "Which award show nominated The Suite Life on Deck for the Teen Pick Show: Comedy category?",
    "question_th": "รายการรางวัลใดที่ได้รับการเสนอชื่อเข้าชิง The Suite Life on Deck สำหรับ Teen Pick Show: หมวดตลก",
    "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_en": "Which award show nominated Cole Sprouse for the Favorite TV Actor category?",
    "question_th": "รายการรางวัลใดที่ได้รับการเสนอชื่อเข้าชิง Cole Sprouse ในหมวดนักแสดงโทรทัศน์ยอดนิยม",
    "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_en": "What category was The Suite Life on Deck nominated for later than 2010?",
    "question_th": "The Suite Life on Deck ได้รับการเสนอชื่อเข้าชิงประเภทใดในช่วงปลายปี 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_en": "Who won the 2010 Kids' Choice Awards?",
    "question_th": "ใครได้รับรางวัล Kids' Choice Awards ประจำปี 2010?",
    "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_en": "What was the Rd. Time for October 3, 2009?",
    "question_th": "ถ. คืออะไร วันที่ 3 ตุลาคม 2552?",
    "context": "CREATE TABLE table_name_86 (rd VARCHAR, _time VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(lost) FROM table_name_51 WHERE played < 9",
    "question_en": "What is the greatest lost where played is less than 9?",
    "question_th": "แพ้มากที่สุดเมื่อเล่นน้อยกว่า 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_en": "What is the greatest played with a drawn less than 1 and a position of less than 1?",
    "question_th": "การเล่นที่ยิ่งใหญ่ที่สุดโดยเสมอน้อยกว่า 1 และตำแหน่งน้อยกว่า 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_en": "What is the smallest drawn when the points are less than 7 and the against greater than 31?",
    "question_th": "แต้มที่ออกมาน้อยที่สุดเมื่อแต้มน้อยกว่า 7 และแต้มต่อมากกว่า 31 คืออะไร?",
    "context": "CREATE TABLE table_name_79 (drawn INTEGER, points VARCHAR, against VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_47 WHERE points = 13",
    "question_en": "What is the name of the team that has 13 points?",
    "question_th": "ทีมที่มี 13 แต้มชื่ออะไร?",
    "context": "CREATE TABLE table_name_47 (team VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT nominated_work FROM table_name_85 WHERE year < 2003",
    "question_en": "What was the Nominated Work earlier than 2003?",
    "question_th": "งานที่ได้รับการเสนอชื่อก่อนปี 2546 คืออะไร?",
    "context": "CREATE TABLE table_name_85 (nominated_work VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT nominated_work FROM table_name_62 WHERE year < 2003",
    "question_en": "What was the Nominated Work earlier than 2003?",
    "question_th": "งานที่ได้รับการเสนอชื่อก่อนปี 2546 คืออะไร?",
    "context": "CREATE TABLE table_name_62 (nominated_work VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT nominated_work FROM table_name_95 WHERE year < 2003",
    "question_en": "What was the Nominated Work earlier than 2003?",
    "question_th": "งานที่ได้รับการเสนอชื่อก่อนปี 2546 คืออะไร?",
    "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_en": "Which method's event was flawless fighting championship 1: the beginning?",
    "question_th": "เหตุการณ์ไหนคือศึกไร้ที่ติ แชมป์ 1: จุดเริ่มต้น?",
    "context": "CREATE TABLE table_name_42 (method VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT method FROM table_name_11 WHERE opponent = \"chris clark\"",
    "question_en": "Which method's opponent was chris clark?",
    "question_th": "คู่ต่อสู้ของวิธีใดคือคริส คลาร์ก",
    "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_en": "Which record's round was 3 when the event was fight festival 27?",
    "question_th": "ซึ่งสถิติรอบที่ 3 คืองาน 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_en": "What is the Fourth place with a Year that is 1978?",
    "question_th": "อันดับที่ 4 ของปีคือปี 1978 คืออะไร?",
    "context": "CREATE TABLE table_name_58 (fourth_place VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT fourth_place FROM table_name_11 WHERE year = 1966",
    "question_en": "What is the Fourth place with a Year that is 1966?",
    "question_th": "อันดับที่ 4 ของปีคือ 1966 คืออะไร?",
    "context": "CREATE TABLE table_name_11 (fourth_place VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT champion FROM table_name_65 WHERE year = 2008",
    "question_en": "What is the Champion with a Year that is 2008?",
    "question_th": "แชมป์กับปี 2008 คืออะไร?",
    "context": "CREATE TABLE table_name_65 (champion VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_15 WHERE date = \"september 19, 1994\"",
    "question_en": "Who was the opponent for the game played on September 19, 1994?",
    "question_th": "คู่ต่อสู้ของเกมที่เล่นเมื่อวันที่ 19 กันยายน พ.ศ. 2537 คือใคร?",
    "context": "CREATE TABLE table_name_15 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(week) FROM table_name_10 WHERE attendance = \"50,814\"",
    "question_en": "In which week was attendance at 50,814?",
    "question_th": "มีผู้เข้าร่วม 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_en": "What date after Week 6 was a Bye?",
    "question_th": "วันไหนหลังจากสัปดาห์ที่ 6 เป็นวันลา?",
    "context": "CREATE TABLE table_name_34 (date VARCHAR, week VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT subjunctive FROM table_name_85 WHERE inverse_subjunctive = \"måchadns\"",
    "question_en": "What subjunctive also has an inverse subjunctive of måchadns?",
    "question_th": "ที่ผนวกเข้ามายังมีการเสริมผกผันของmåchadns?",
    "context": "CREATE TABLE table_name_85 (subjunctive VARCHAR, inverse_subjunctive VARCHAR)"
  },
  {
    "answer": "SELECT imperative FROM table_name_94 WHERE måcha = \"3.sg\"",
    "question_en": "What imperative has måcha as 3.sg?",
    "question_th": "måchaมีความจำเป็นอะไรเป็น 3.sg?",
    "context": "CREATE TABLE table_name_94 (imperative VARCHAR, måcha VARCHAR)"
  },
  {
    "answer": "SELECT inverse_subjunctive FROM table_name_8 WHERE indicative = \"si måchan\"",
    "question_en": "The indicative of si måchan has what as the inverse subjunctive?",
    "question_th": "สิ่งบ่งชี้ของ si måchan มีอะไรที่ผนวกเข้ามาแบบผกผัน?",
    "context": "CREATE TABLE table_name_8 (inverse_subjunctive VARCHAR, indicative VARCHAR)"
  },
  {
    "answer": "SELECT inverse_subjunctive FROM table_name_9 WHERE imperative = \"—\" AND subjunctive = \"se måchadn\"",
    "question_en": "What inverse subjunctive has — as the imperative and a subjunctive of se måchadn?",
    "question_th": "สิ่งที่ผนวกเข้ามาผกผันมี - เป็นความจำเป็นและที่ผนวกเข้ามาของ se måchadn?",
    "context": "CREATE TABLE table_name_9 (inverse_subjunctive VARCHAR, imperative VARCHAR, subjunctive VARCHAR)"
  },
  {
    "answer": "SELECT imperative FROM table_name_37 WHERE subjunctive = \"du måchast\"",
    "question_en": "With a subjunctive of du måchast what is the imperative?",
    "question_th": "ด้วยการเสริม du måchast ความจำเป็นคืออะไร?",
    "context": "CREATE TABLE table_name_37 (imperative VARCHAR, subjunctive VARCHAR)"
  },
  {
    "answer": "SELECT subjunctive FROM table_name_77 WHERE indicative = \"se måchan(t)\"",
    "question_en": "What subjunctive has the indicative of se måchan(t)?",
    "question_th": "เสริมอะไรบ่งบอกถึง se måchan(t)?",
    "context": "CREATE TABLE table_name_77 (subjunctive VARCHAR, indicative VARCHAR)"
  },
  {
    "answer": "SELECT AVG(win__percentage) FROM table_name_91 WHERE span = \"2011–2013\" AND lost < 1",
    "question_en": "What is the Win % in the Span of 2011–2013 with a Lost of less than 1?",
    "question_th": "% การชนะในช่วงปี 2554-2556 เป็นเท่าใดโดยแพ้น้อยกว่า 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–2013\" AND win__percentage < 80",
    "question_en": "How many games were Tied during the Span of 2011–2013 with a less than 80% Win %?",
    "question_th": "มีกี่เกมที่เสมอกันในช่วงปี 2554-2556 โดยมีเปอร์เซ็นต์การชนะน้อยกว่า 80%?",
    "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_en": "On what date were sheets issued in Tallahassee, Florida?",
    "question_th": "เอกสารออกวันที่เท่าไหร่ในแทลลาแฮสซี ฟลอริดา?",
    "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_en": "Which printer issued sheets on October 5, 2006?",
    "question_th": "เครื่องพิมพ์ใดที่ออกแผ่นงานเมื่อวันที่ 5 ตุลาคม 2549",
    "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_en": "What is the least amount of silver medals won by Total with more than 1 bronze and more than 18 total medals won?",
    "question_th": "Total ได้เหรียญเงินน้อยที่สุดจำนวนเท่าใด โดยได้มากกว่า 1 เหรียญทองแดง และได้เหรียญรางวัลรวมมากกว่า 18 เหรียญเป็นจำนวนเท่าใด",
    "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_en": "How many positions have points against less than 28, americano-sp as the team, with a played greater than 8?",
    "question_th": "มีกี่ตำแหน่งที่มีคะแนนต่อทีมที่น้อยกว่า 28, อเมริกาโน่-เอสพี และเล่นมากกว่า 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_en": "How many losses have points against less than 15?",
    "question_th": "มีแต้มเสียกี่แต้มต่อแต้มน้อยกว่า 15?",
    "context": "CREATE TABLE table_name_1 (lost VARCHAR, against INTEGER)"
  },
  {
    "answer": "SELECT AVG(played) FROM table_name_40 WHERE against < 15",
    "question_en": "What average played has an against less than 15?",
    "question_th": "การเล่นโดยเฉลี่ยใดที่มีแต้มต่อน้อยกว่า 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_en": "How many losses have a played greater than 8, ypiranga-sp as the team, with a position greater than 5?",
    "question_th": "มีการสูญเสียกี่ครั้งที่เล่นมากกว่า 8, ypiranga-sp ในฐานะทีม โดยมีตำแหน่งมากกว่า 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_en": "What lost has a position greater than 2, a drawn greater than 0, with an against greater than 15?",
    "question_th": "สิ่งที่แพ้มีตำแหน่งมากกว่า 2 เสมอมากกว่า 0 โดยมีแต้มต่อมากกว่า 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_en": "What is the sum of Asian or Amerindian (%), when State is Sergipe, and when Brown (%) is greater than 61,3?",
    "question_th": "ผลรวมของชาวเอเชียหรือชาวอเมรินเดียน (%) เมื่อรัฐคือเซอร์จิเป และเมื่อบราวน์ (%) มากกว่า 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_en": "How many points were there when there more than 6 losses and less than 14 matches?",
    "question_th": "มีกี่แต้มเมื่อแพ้มากกว่า 6 นัดและน้อยกว่า 14 นัด?",
    "context": "CREATE TABLE table_name_16 (points VARCHAR, lost VARCHAR, match VARCHAR)"
  },
  {
    "answer": "SELECT MIN(lost) FROM table_name_67 WHERE points > 23",
    "question_en": "How few losses were the least number of losses and points higher than 23?",
    "question_th": "การสูญเสียกี่ครั้งมีจำนวนการสูญเสียน้อยที่สุดและคะแนนสูงกว่า 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_en": "What is the highest number of matches with more than 18 points and more than 1 draw?",
    "question_th": "แมตช์ไหนมากกว่า 18 แต้ม เสมอมากกว่า 1 นัด มากที่สุดคือ?",
    "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_en": "Who was the champion in the game played at the St. Andrews Links with Dick Chapman as the runner-up?",
    "question_th": "ใครคือแชมป์ในเกมที่เล่นที่ St. Andrews Links โดยมี Dick Chapman เป็นรองแชมป์?",
    "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_en": "What is the score of the match won by Willie Hunter at the Royal Liverpool Golf Club?",
    "question_th": "วิลลี ฮันเตอร์ ชนะการแข่งขันที่รอยัล ลิเวอร์พูล กอล์ฟ คลับ ได้คะแนนเท่าไหร่?",
    "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_en": "What player from England was the runner-up at the match played at the Royal Porthcawl Golf Club?",
    "question_th": "ผู้เล่นคนใดจากอังกฤษที่ได้รองชนะเลิศในการแข่งขันที่สนามกอล์ฟ Royal Porthcawl?",
    "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_en": "Who was the champion in the match where C.A. Palmer was the runner-up?",
    "question_th": "แมตช์นี้ใครเป็นแชมป์ โดย ซีเอ พาลเมอร์ เป็นรองแชมป์?",
    "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_en": "What player was the champion in the match where E.A. Lassen was the runner-up?",
    "question_th": "ผู้เล่นคนไหนเป็นแชมป์ในการแข่งขันที่ EA Lassen เป็นรองแชมป์?",
    "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_en": "What is the score of the match played in England where Peter McEvoy was the champion and Paul McKellar was runner-up?",
    "question_th": "แมตช์ที่เล่นในอังกฤษมีคะแนนเท่าไร โดยที่ Peter McEvoy เป็นแชมป์ และ Paul McKellar เป็นรองแชมป์?",
    "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_en": "Which federal state has 6 representatives of national average?",
    "question_th": "รัฐใดมีตัวแทน 6 คนตามค่าเฉลี่ยของประเทศ",
    "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_en": "According to the 2010 census, what was the population for the federal state that had less than -6 deputies required ignoring the limits?",
    "question_th": "จากการสำรวจสำมะโนประชากรปี 2010 จำนวนประชากรในรัฐสหพันธรัฐที่มีเจ้าหน้าที่น้อยกว่า -6 คนที่ต้องเพิกเฉยต่อขีดจำกัดคือจำนวนเท่าใด",
    "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_en": "What is the lowest number of blocks for players with height of 206 and more than 356 spikes?",
    "question_th": "จำนวนบล็อกต่ำสุดสำหรับผู้เล่นที่มีส่วนสูง 206 และหนามแหลมมากกว่า 356 คือเท่าใด",
    "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_en": "What is the number of weight values associated with 340 blocks and more than 353 spikes?",
    "question_th": "จำนวนค่าน้ำหนักที่เกี่ยวข้องกับ 340 บล็อกและเดือยมากกว่า 353 อันเป็นเท่าใด",
    "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_en": "What award did Forest Whitaker win in 1989?",
    "question_th": "Forest Whitaker ได้รับรางวัลอะไรในปี 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_en": "For what motion picture did Samuel L. Jackson win the best supporting actor award before 1997?",
    "question_th": "ซามูเอล แอล. แจ็คสันได้รับรางวัลนักแสดงสมทบชายยอดเยี่ยมก่อนปี 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_en": "Which actor won in 1966?",
    "question_th": "นักแสดงคนไหนชนะรางวัลในปี 2509?",
    "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_en": "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?",
    "question_th": "อะไรคืออิทธิพลต่ำสุดกับจำนวนประชากรในล้านที่น้อยกว่า 60.64 และ MEPs น้อยกว่า 22 และมีประชากร 454,059 คนต่อ 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_en": "What is the highest population in the millions that has an influence of 1.02?",
    "question_th": "ประชากรสูงสุดในล้านที่มีอิทธิพล 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_en": "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?",
    "question_th": "ผลรวมของประชากรในหน่วยล้านที่มีอิทธิพลน้อยกว่า 2.91, MEP น้อยกว่า 13 คน, สมาชิกของลัตเวีย และประชากรมากกว่า 286,875 คนต่อ 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_en": "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?",
    "question_th": "จำนวนประชากรสูงสุดต่อ MEP ที่มี MEP มากกว่า 50 ซึ่งเป็นสมาชิกของเยอรมนี และมีประชากรน้อยกว่า 82.43 ล้านคนคือข้อใด",
    "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_en": "Which World Rank has a Year smaller than 1977, and a Location of eugene?",
    "question_th": "อันดับโลกใดที่มีปีที่น้อยกว่าปี 1977 และที่ตั้งของยูจีน",
    "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_en": "What's the lowest Year with a World Rank of 5th, with a Result greater than 20.31?",
    "question_th": "ปีไหนต่ำสุดที่มีอันดับโลกอยู่ที่ 5 โดยมีผลการแข่งขันมากกว่า 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_en": "Which Year has a Result smaller than 20.26, and a Location of eugene?",
    "question_th": "ปีใดมีผลลัพธ์น้อยกว่า 20.26 และตำแหน่งของยูจีน",
    "context": "CREATE TABLE table_name_80 (year INTEGER, result VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(result) FROM table_name_96 WHERE location = \"brussels\"",
    "question_en": "What is the Result with a Location of brussels?",
    "question_th": "ผลลัพธ์ของที่ตั้งของบรัสเซลส์คืออะไร?",
    "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_en": "What Year has a Result smaller than 20.31, and a World Rank of 5th?",
    "question_th": "ปีใดมีผลการแข่งขันน้อยกว่า 20.31 และอันดับโลกอยู่ที่ 5",
    "context": "CREATE TABLE table_name_64 (year INTEGER, result VARCHAR, world_rank VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_33 WHERE home = \"nuggets\"",
    "question_en": "What is the record when the Nuggets are the home team?",
    "question_th": "มีสถิติยังไงเมื่อนักเก็ตเป็นเจ้าบ้าน?",
    "context": "CREATE TABLE table_name_33 (record VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT MIN(points) FROM table_name_35 WHERE races > 16",
    "question_en": "What is the lowest number of points for Drivers that have raced in more than 16 Races?",
    "question_th": "จำนวนคะแนนต่ำสุดสำหรับนักแข่งที่ลงแข่งมากกว่า 16 รอบคือเท่าใด",
    "context": "CREATE TABLE table_name_35 (points INTEGER, races INTEGER)"
  },
  {
    "answer": "SELECT MIN(races) FROM table_name_31 WHERE points < 0",
    "question_en": "What is the least number of Races for a Racer with less than 0 Points?",
    "question_th": "จำนวนการแข่งขันขั้นต่ำสำหรับนักแข่งที่มีคะแนนน้อยกว่า 0 คือเท่าใด",
    "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_en": "What is the average Year during which the Driver Adrian Quaife-Hobbs has fewer than 2 Poles, and 0 Fast laps?",
    "question_th": "ปีเฉลี่ยที่นักแข่ง Adrian Quaife-Hobbs มีเสาน้อยกว่า 2 เสาและ 0 รอบเร็วคือเท่าใด",
    "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_en": "Which city contains the KPIX station?",
    "question_th": "เมืองใดมีสถานี KPIX",
    "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_en": "Which station has channel TV (DT) of 3 (26)?",
    "question_th": "สถานีใดมีช่องทีวี (DT) 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–1995\"",
    "question_en": "What is the current affiliation when the years owned is between 1955–1995?",
    "question_th": "สังกัดปัจจุบันคืออะไรเมื่อปีที่เป็นเจ้าของอยู่ระหว่างปี 1955–1995?",
    "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_en": "What is the city containing the KDKA-TV station?",
    "question_th": "เมืองที่มีสถานี KDKA-TV คืออะไร?",
    "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_en": "Which Channel TV is located in Baltimore?",
    "question_th": "ช่องทีวีใดที่ตั้งอยู่ในบัลติมอร์",
    "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_en": "What is the least number of goals scored in the play-offs among the players that have scored 2 in the FA Cup?",
    "question_th": "จำนวนประตูที่น้อยที่สุดในรอบเพลย์ออฟในบรรดาผู้เล่นที่ทำได้ 2 ประตูในเอฟเอคัพคือเท่าใด",
    "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_en": "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?",
    "question_th": "คือจำนวนประตูเฉลี่ยที่ทำได้ในเอฟเอ คัพ ในหมู่ผู้เล่นที่ทำได้มากกว่า 20 ประตู, น้อยกว่า 1 ประตู FA Trophy และน้อยกว่า 25 ประตูในลีก?",
    "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_en": "What is the latitude and longitude for Surveyor 3?",
    "question_th": "ละติจูดและลองจิจูดของ 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_en": "What is the largest mass for Tycho Crater?",
    "question_th": "มวลที่ใหญ่ที่สุดของ 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_en": "What Field was Commissioned in 1958, 2005?",
    "question_th": "สาขาใดที่ได้รับหน้าที่ในปี 2501, 2548",
    "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_en": "What is the Annual Generation at Kawerau (Bope)?",
    "question_th": "รุ่นประจำปีที่ 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_en": "What is the Name of the power station with a Capacity of 25 MW?",
    "question_th": "โรงไฟฟ้าขนาด 25 เมกะวัตต์ ชื่ออะไร",
    "context": "CREATE TABLE table_name_9 (name VARCHAR, capacity__mw_ VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_22 WHERE field = \"mokai\"",
    "question_en": "What is the Name of the power station in the Field of Mokai?",
    "question_th": "โรงไฟฟ้าในทุ่งโมไกชื่ออะไร",
    "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_en": "How many goals were scored in 2004 when the gp/gs was \"did not play\"?",
    "question_th": "มีกี่ประตูที่ทำในปี 2004 เมื่อ gp/gs \"ไม่ได้เล่น\"?",
    "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_en": "How many assists were there when the total points was 2?",
    "question_th": "มีกี่แอสซิสต์เมื่อคะแนนรวมเป็น 2?",
    "context": "CREATE TABLE table_name_36 (assists VARCHAR, total_points VARCHAR)"
  },
  {
    "answer": "SELECT total_points FROM table_name_98 WHERE assists = \"7\"",
    "question_en": "What was the total number of points when there were 7 assists?",
    "question_th": "เมื่อทำ 7 แอสซิสต์ได้ทั้งหมดกี่แต้ม?",
    "context": "CREATE TABLE table_name_98 (total_points VARCHAR, assists VARCHAR)"
  },
  {
    "answer": "SELECT gp_gs FROM table_name_4 WHERE assists = \"1\"",
    "question_en": "What was the gp/gs when the assists was 1?",
    "question_th": "gp/gs คืออะไรเมื่อแอสซิสต์เป็น 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_en": "what was the gp/gs in 2003 when the total points was \"did not play\"?",
    "question_th": "gp/gs คืออะไรในปี 2546 เมื่อคะแนนรวมคือ \"ไม่ได้เล่น\"",
    "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_en": "What was the outcome for Jan Pisecky and his partner?",
    "question_th": "ผลลัพธ์ของ Jan Pisecky และคู่หูของเขาเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_32 (outcome VARCHAR, partner VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_29 WHERE weight = 235",
    "question_en": "What player weight 235?",
    "question_th": "ผู้เล่นคนไหนน้ำหนัก 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_en": "What is the height of the F who weighs less than 195?",
    "question_th": "ส่วนสูงของ F ที่มีน้ำหนักน้อยกว่า 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_en": "What team does F Trey Gilder play for?",
    "question_th": "เอฟ เทรย์ กิลเดอร์ ลงเล่นให้กับทีมใด?",
    "context": "CREATE TABLE table_name_63 (team VARCHAR, pos VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_73 WHERE team = \"dakota wizards\"",
    "question_en": "What player plays for the Dakota Wizards?",
    "question_th": "ผู้เล่นคนใดเล่นให้กับ 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_en": "Which player who weighs 210 plays for the Reno Bighorns?",
    "question_th": "ผู้เล่นคนไหนที่มีน้ำหนัก 210 คนเล่นให้กับ 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_en": "What position does Brian Butch play?",
    "question_th": "Brian Butch เล่นตำแหน่งอะไร?",
    "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–2004\"",
    "question_en": "Which Position has a Player of tyronn lue, and a Years in Orlando of 2003–2004?",
    "question_th": "ตำแหน่งใดมีผู้เล่น Tyronn Lue และอยู่ในออร์แลนโดปี 2546-2547",
    "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_en": "Which School/Club Team has a Player of deandre liggins?",
    "question_th": "ทีมโรงเรียน/สโมสรใดมีผู้เล่นของ 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–1998\"",
    "question_en": "Which Position has a Years in Orlando of 1997–1998?",
    "question_th": "ตำแหน่งใดมีปีในออร์แลนโดของปี 1997–1998?",
    "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_en": "Which Position has a School/Club Team of stanford?",
    "question_th": "ตำแหน่งใดมีทีมโรงเรียน/สโมสรของสแตนฟอร์ด",
    "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–1998\"",
    "question_en": "Which School/Club Team has a Years in Orlando of 1997–1998?",
    "question_th": "ทีมโรงเรียน/สโมสรใดมีเวลาหลายปีในออร์แลนโดระหว่างปี 1997–1998",
    "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–2004\"",
    "question_en": "Which Position has a Years in Orlando of 2003–2004?",
    "question_th": "ตำแหน่งใดมีปีในออร์แลนโดระหว่างปี 2546-2547",
    "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_en": "What is the High assists with a Date that is february 27?",
    "question_th": "High Assists คืออะไรในวันที่ 27 กุมภาพันธ์?",
    "context": "CREATE TABLE table_name_42 (high_assists VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_name_31 WHERE game = 56",
    "question_en": "What is the High points with a Game that is 56?",
    "question_th": "คะแนนสูงสุดของเกมที่ 56 คืออะไร?",
    "context": "CREATE TABLE table_name_31 (high_points VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT distance FROM table_name_36 WHERE venue = \"sale\"",
    "question_en": "In what Distance has a Venue of sale?",
    "question_th": "มีสถานที่จำหน่ายในระยะใด?",
    "context": "CREATE TABLE table_name_36 (distance VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT winner_2nd FROM table_name_84 WHERE jockey = \"c. symons\"",
    "question_en": "WHo is Winner/2nd that has c. symons?",
    "question_th": "WHo เป็นผู้ชนะ/อันดับ 2 ที่มีค. ซิมมอนส์?",
    "context": "CREATE TABLE table_name_84 (winner_2nd VARCHAR, jockey VARCHAR)"
  },
  {
    "answer": "SELECT race FROM table_name_78 WHERE jockey = \"d. nikolic\"",
    "question_en": "Which Race that Jockey of d. nikolic is in?",
    "question_th": "ซึ่งการแข่งขันที่จ๊อกกี้ของd. นิโคลิคอยู่เหรอ?",
    "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_en": "Name The Result that has a Distance of 1200m, and a Weight (kg) of 55.5?",
    "question_th": "ตั้งชื่อผลลัพธ์ที่มีระยะทาง 1,200 ม. และน้ำหนัก (กก.) 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_en": "What is the previous team of the United States player who had 2 NBA years and played the F position?",
    "question_th": "ทีมก่อนหน้าของนักเตะอเมริกาที่เคยเล่น NBA มา 2 ปีและเล่นตำแหน่ง F คือทีมอะไร?",
    "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_en": "Which Team has a Score of 108-107?",
    "question_th": "ทีมใดมีคะแนน 108-107?",
    "context": "CREATE TABLE table_name_82 (team VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_55 WHERE date = \"may 31\"",
    "question_en": "Which Record has a Date of may 31?",
    "question_th": "บันทึกใดมีวันที่ 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_en": "Which Game has a Team of at phoenix, and a Score of 107-119?",
    "question_th": "เกมใดมีทีมฟีนิกซ์และมีคะแนน 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_en": "Which Location Attendance has a Game larger than 5?",
    "question_th": "Location Attendance ใดที่มีเกมมากกว่า 5?",
    "context": "CREATE TABLE table_name_32 (location_attendance VARCHAR, game INTEGER)"
  },
  {
    "answer": "SELECT team FROM table_name_40 WHERE score = \"89-123\"",
    "question_en": "Which Team has a Score of 89-123?",
    "question_th": "ทีมใดมีคะแนน 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_en": "What is the average Game with a Date that is june 14?",
    "question_th": "เกมโดยเฉลี่ยที่มีวันที่คือวันที่ 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_en": "What is the Record with a Team that is detroit and a Date that is june 10?",
    "question_th": "บันทึกของทีมที่เป็นดีทรอยต์และวันที่คือวันที่ 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_en": "What is the Location Attendance with a Record that is 1-4?",
    "question_th": "การเข้าร่วมสถานที่ด้วยบันทึกที่ 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²_ = \"254.7\"",
    "question_en": "How much is the GDP for a population density of 254.7?",
    "question_th": "GDP สำหรับความหนาแน่นของประชากร 254.7 คือเท่าใด",
    "context": "CREATE TABLE table_name_7 (gdp__ppp__$m_usd VARCHAR, population_density__per_km²_ VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_46 WHERE population_density__per_km²_ = \"50.3\"",
    "question_en": "Which country has a population density of 50.3?",
    "question_th": "ประเทศใดมีความหนาแน่นของประชากร 50.3?",
    "context": "CREATE TABLE table_name_46 (country VARCHAR, population_density__per_km²_ VARCHAR)"
  },
  {
    "answer": "SELECT gdp__ppp__$m_usd FROM table_name_86 WHERE area__km²_ = \"61,395\"",
    "question_en": "How much is the GDP for an area of 61,395?",
    "question_th": "GDP สำหรับพื้นที่ 61,395 เท่ากับเท่าไร?",
    "context": "CREATE TABLE table_name_86 (gdp__ppp__$m_usd VARCHAR, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT population_density__per_km²_ FROM table_name_31 WHERE gdp__ppp__$m_usd = \"$188,112\"",
    "question_en": "How much is the population density with a GDP at $188,112?",
    "question_th": "ความหนาแน่นของประชากรที่มี GDP อยู่ที่ 188,112 ดอลลาร์คือเท่าใด",
    "context": "CREATE TABLE table_name_31 (population_density__per_km²_ VARCHAR, gdp__ppp__$m_usd VARCHAR)"
  },
  {
    "answer": "SELECT gdp__ppp__$m_usd FROM table_name_26 WHERE area__km²_ = \"116\"",
    "question_en": "How much is the GDP for an area of 116?",
    "question_th": "GDP สำหรับพื้นที่ 116 คือเท่าไร?",
    "context": "CREATE TABLE table_name_26 (gdp__ppp__$m_usd VARCHAR, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_79 WHERE population__2011_est_ = \"3,221,216\"",
    "question_en": "Which country has a population of 3,221,216?",
    "question_th": "ประเทศใดมีประชากร 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_en": "What was Miller Barber wins with Top-5 less than 2 and 19 Events?",
    "question_th": "Miller Barber ชนะอะไรด้วยอันดับสูงสุด 5 รายการน้อยกว่า 2 และ 19 รายการ",
    "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_en": "What is the average number of Wins in a PGA Championship with a Top-5 less than 2?",
    "question_th": "จำนวนชัยชนะโดยเฉลี่ยในการแข่งขัน PGA Championship โดยมี Top-5 น้อยกว่า 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_en": "What is the highest Top-5 ranking with Events less than 4?",
    "question_th": "อันดับสูงสุด 5 อันดับแรกที่มีกิจกรรมน้อยกว่า 4 คืออะไร?",
    "context": "CREATE TABLE table_name_63 (top_5 INTEGER, events INTEGER)"
  },
  {
    "answer": "SELECT week FROM table_name_18 WHERE attendance = \"65,272\"",
    "question_en": "Which week's game was attended by 65,272 people?",
    "question_th": "เกมประจำสัปดาห์ใดที่มีผู้เข้าร่วม 65,272 คน?",
    "context": "CREATE TABLE table_name_18 (week VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_60 WHERE week = 13",
    "question_en": "How many people attended the game in week 13?",
    "question_th": "สัปดาห์ที่ 13 มีผู้เข้าร่วมการแข่งขันกี่คน?",
    "context": "CREATE TABLE table_name_60 (attendance VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT MIN(week) FROM table_name_58 WHERE attendance = \"65,904\"",
    "question_en": "During which week was the earliest game with an attendance of 65,904 people?",
    "question_th": "สัปดาห์ใดเป็นเกมแรกสุดที่มีผู้ชม 65,904 คน?",
    "context": "CREATE TABLE table_name_58 (week INTEGER, attendance VARCHAR)"
  },
  {
    "answer": "SELECT MAX(height) FROM table_name_94 WHERE position = \"outside hitter\"",
    "question_en": "What height is the tallest for an outside hitter?",
    "question_th": "ความสูงที่สูงที่สุดสำหรับผู้ตีภายนอกคืออะไร?",
    "context": "CREATE TABLE table_name_94 (height INTEGER, position VARCHAR)"
  },
  {
    "answer": "SELECT MAX(silver) FROM table_name_65 WHERE total = 27",
    "question_en": "What is the highest silver rank with a total of 27?",
    "question_th": "อันดับเงินสูงสุดที่มีทั้งหมด 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_en": "What is the total number of Silver when Bronze was smaller than 1 with a total smaller than 2 in Bulgaria?",
    "question_th": "จำนวนเงินทั้งหมดเมื่อทองแดงน้อยกว่า 1 และรวมน้อยกว่า 2 ในบัลแกเรียเป็นเท่าใด",
    "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_en": "What is the temperature classification of a purple colored glass bulb?",
    "question_th": "การจำแนกอุณหภูมิของหลอดแก้วสีม่วงคืออะไร?",
    "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_en": "What is the color code with a temperature classification of ordinary?",
    "question_th": "รหัสสีที่มีการจำแนกอุณหภูมิสามัญคืออะไร?",
    "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_en": "What is the temperature rating of the intermediate temperature classification?",
    "question_th": "ระดับอุณหภูมิของการจำแนกอุณหภูมิระดับกลางคือเท่าใด",
    "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_en": "What is the average Goals for team Kairat, in the 2002 season with more than 29 apps?",
    "question_th": "เป้าหมายเฉลี่ยของทีม Kairat ในฤดูกาล 2002 ที่มีมากกว่า 29 แอปคือเท่าใด",
    "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_en": "What is the Country for the 2006-07 season?",
    "question_th": "ประเทศใดในฤดูกาล 2549-50?",
    "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_en": "What is the average Apps for the team Kairat with level larger than 1?",
    "question_th": "แอพเฉลี่ยสำหรับทีม Kairat ที่มีเลเวลมากกว่า 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_en": "How many laps did the rider with a grid larger than 11, a Honda cbr1000rr bike, and a time of +42.633?",
    "question_th": "นักบิดที่มีกริดมากกว่า 11 ขี่ Honda cbr1000rr ไปได้กี่รอบ และเวลา +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_en": "Who was teh rider with 18 laps and a grid of 25?",
    "question_th": "ใครคือนักบิดที่มีรอบ 18 รอบและตาราง 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_en": "Who was the rider who had an accident time and a kawasaki zx-10r bike?",
    "question_th": "ใครคือนักบิดที่ประสบอุบัติเหตุและมอเตอร์ไซค์ kawasaki zx-10r?",
    "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_en": "What is the time of rider Loic Napoleone, who had less than 18 laps and a grid greater than 8?",
    "question_th": "เวลาของนักแข่ง Loic Napoleone ที่มีรอบน้อยกว่า 18 รอบและกริดมากกว่า 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_en": "How many laps did the rider with a grid larger than 14 and a time of +33.150 have?",
    "question_th": "นักบิดที่มีกริดมากกว่า 14 และเวลา +33.150 มีกี่รอบ?",
    "context": "CREATE TABLE table_name_82 (laps VARCHAR, grid VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT away FROM table_name_24 WHERE home = \"guelph gargoyles\"",
    "question_en": "What is Away, when Home is Guelph Gargoyles?",
    "question_th": "Away คืออะไร เมื่อ Home คือ 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_en": "What is Home, when Ground is Humber College North, and when Time is 15:00?",
    "question_th": "บ้านคืออะไร เมื่อ Ground คือ Humber College North และเวลา 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_en": "What is Date, when Away is High Park Demons?",
    "question_th": "วันที่คืออะไร 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_en": "What is Date, when Away is High Park Demons?",
    "question_th": "วันที่คืออะไร 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_en": "What is Time, when Away is Central Blues?",
    "question_th": "เวลาคืออะไร เมื่อทีมเยือนคือ 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_en": "What cover has a published date of May 27, 2009 (hc) May 20, 2009 (tpb)?",
    "question_th": "ปกใดมีวันที่ตีพิมพ์วันที่ 27 พฤษภาคม 2552 (hc) 20 พฤษภาคม 2552 (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_en": "What is the number of the volume that has an ISBN of 978-1-59582-712-8 (hc) 978-1-59582-713-5 (tpb)?",
    "question_th": "หมายเลขเล่มที่มี ISBN 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_en": "What is the name of the series with an ISBN of 978-1-59582-523-0 (tpb)?",
    "question_th": "ซีรีส์ที่มี ISBN 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_en": "What volume number has the ISBN of 978-1-59582-712-8 (hc) 978-1-59582-713-5 (tpb)?",
    "question_th": "หมายเลขเล่มใดมี ISBN 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_en": "What is the ISBN of the Conan the Barbarian series that has the title of Queen of the Black Coast?",
    "question_th": "ISBN ของซีรีส์ Conan the Barbarian ที่มีบรรดาศักดิ์เป็น 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_en": "What cover has Throne of Aquilonia as the title?",
    "question_th": "ปกใดมีชื่อเรื่องว่า Throne of Aquilonia?",
    "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_en": "With a Rank of less than 4, what is Pablo Prigioni's total number of Games?",
    "question_th": "ด้วยอันดับน้อยกว่า 4 จำนวนเกมทั้งหมดของ Pablo Prigioni คือเท่าใด",
    "context": "CREATE TABLE table_name_44 (games VARCHAR, name VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT SUM(assists) FROM table_name_45 WHERE games > 25",
    "question_en": "How many Assists for the Player with more than 25 Games?",
    "question_th": "จำนวน Assists สำหรับผู้เล่นที่มีมากกว่า 25 เกม?",
    "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_en": "What is the Rank of the Maccabi Tel Aviv Player with 25 Games?",
    "question_th": "อันดับของผู้เล่น Maccabi Tel Aviv กับ 25 เกมคืออะไร?",
    "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_en": "How many Assists for the Player with a Rank greater than 3 in less than 25 Games?",
    "question_th": "จำนวน Assists สำหรับผู้เล่นที่มีอันดับมากกว่า 3 ในน้อยกว่า 25 เกม?",
    "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_en": "How many Games for Rank 2 Terrell McIntyre?",
    "question_th": "Terrell McIntyre อันดับ 2 มีเกมกี่เกม?",
    "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_en": "What is the Venue of the Heptathlon after 2006 where Tatyana Chernova comes in Position 7th?",
    "question_th": "สถานที่จัดงาน Heptathlon หลังปี 2549 ที่ Tatyana Chernova เข้ามาในตำแหน่งที่ 7 คืออะไร?",
    "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ötzis, austria\" AND position = \"1st\"",
    "question_en": "In what Year did Chernova come in 1st in Götzis, Austria?",
    "question_th": "Chernova ได้ที่ 1 ในเมือง Götzis ประเทศออสเตรียในปีใด",
    "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_en": "Which Cover Model was featured on 8-03?",
    "question_th": "Cover Model ใดที่นำเสนอในวันที่ 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_en": "Who was the Centerfold model when O.J. Simpson was the Interview Subject?",
    "question_th": "ใครคือนางแบบ Centerfold เมื่อ OJ Simpson เป็นผู้สัมภาษณ์?",
    "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_en": "Who was the Cover model when the Centerfold Model was Marketa Janska?",
    "question_th": "ใครคือโมเดลหน้าปกเมื่อโมเดล Centerfold คือ 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_en": "Who was the Cover model on 11-03?",
    "question_th": "นางแบบหน้าปกวันที่ 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_en": "Who was the Centerfold Model on 9-03?",
    "question_th": "ใครคือโมเดล Centerfold ในวันที่ 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_en": "How many rounds had a selection of 165?",
    "question_th": "มีกี่รอบให้เลือก 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_en": "What is the average Height for the Position of d, with a Birthplace of new hope, minnesota?",
    "question_th": "ความสูงเฉลี่ยของตำแหน่ง d ที่มีแหล่งกำเนิดของความหวังใหม่คือเท่าใด มินนิโซตา",
    "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_en": "What is the 1990–1991 Team when the Birthplace shows as new york?",
    "question_th": "ทีมปี 1990–1991 คืออะไรเมื่อบ้านเกิดแสดงเป็นนิวยอร์ก",
    "context": "CREATE TABLE table_name_23 (birthplace VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_32 WHERE birthplace = \"toledo, ohio\"",
    "question_en": "What is the Position when the person's birthplace was toledo, ohio?",
    "question_th": "ตำแหน่งเมื่อบ้านเกิดของบุคคลนั้นคือโทเลโด โอไฮโอคืออะไร?",
    "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_en": "What is the 1990–1991 Team that had Joel Otto?",
    "question_th": "ทีมปี 1990–1991 ที่มีโจเอล อ็อตโตคือทีมอะไร",
    "context": "CREATE TABLE table_name_41 (name VARCHAR)"
  },
  {
    "answer": "SELECT tc FROM table_name_26 WHERE year > 2007 AND dc = \"21st\"",
    "question_en": "Which T.C. has a Year larger than 2007, and a D.C. of 21st?",
    "question_th": "TC ใดที่มีหนึ่งปีมากกว่าปี 2550 และ DC อยู่ที่ 21",
    "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_en": "What kind of D.C. has Races smaller than 20, and Points larger than 0, and Drivers of christian vietoris, and Wins of 1?",
    "question_th": "DC ประเภทใดที่มีการแข่งขันน้อยกว่า 20 และคะแนนมากกว่า 0 และนักแข่งของ Christian Vietoris และชนะ 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_en": "Which Races has a T.C. of 3rd, and a D.C. of 7th?",
    "question_th": "การแข่งขันใดมี TC อยู่ที่ 3 และ DC อยู่ที่ 7",
    "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_en": "What is the 2007 of the Grand Slam Tournaments in 2008?",
    "question_th": "การแข่งขันแกรนด์สแลมปี 2550 ในปี 2551 คืออะไร?",
    "context": "CREATE TABLE table_name_16 (Id VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_63 WHERE 2011 = \"3r\" AND 2010 = \"a\"",
    "question_en": "What is the Tournament with a 3r 2011 and A 2010?",
    "question_th": "การแข่งขันกับ 3r 2011 และ A 2010 คืออะไร?",
    "context": "CREATE TABLE table_name_63 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2008 FROM table_name_38 WHERE 2011 = \"2r\" AND 2010 = \"a\"",
    "question_en": "What is the 2008 of the 2r 2011 and A 2010?",
    "question_th": "2008 ของ 2r 2011 และ A 2010 คืออะไร?",
    "context": "CREATE TABLE table_name_38 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2010 FROM table_name_66 WHERE 2011 = \"grand slam tournaments\"",
    "question_en": "What is the 2010 of the Grand Slam Tournaments in 2011?",
    "question_th": "การแข่งขันแกรนด์สแลมปี 2010 ในปี 2554 คืออะไร?",
    "context": "CREATE TABLE table_name_66 (Id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(runners_up) FROM table_name_92 WHERE winning_years = \"2010\"",
    "question_en": "What is the total number of runners-up for a club with winning years of 2010?",
    "question_th": "จำนวนรองชนะเลิศของสโมสรที่คว้าแชมป์ในปี 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ň\"",
    "question_en": "Who were the runners-up for the FC Viktoria Plzeň club?",
    "question_th": "ใครคือรองชนะเลิศของสโมสร FC Viktoria Plzeň?",
    "context": "CREATE TABLE table_name_7 (runners_up VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT con__gress FROM table_name_50 WHERE date = \"2010\"",
    "question_en": "Which congress was held in 2010?",
    "question_th": "รัฐสภาใดที่จัดขึ้นในปี 2010?",
    "context": "CREATE TABLE table_name_50 (con__gress VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT casting_at__°c_ FROM table_name_88 WHERE hardness = \"22\"",
    "question_en": "What is the casting temperature for a hardness of 22?",
    "question_th": "อุณหภูมิในการหล่อที่ความแข็ง 22 คือเท่าไร?",
    "context": "CREATE TABLE table_name_88 (casting_at__°c_ VARCHAR, hardness VARCHAR)"
  },
  {
    "answer": "SELECT hardness FROM table_name_45 WHERE liquid_at__°c_ = \"243\"",
    "question_en": "What is the hardness for the alloy that is liquid at 243 degrees C?",
    "question_th": "โลหะผสมที่เป็นของเหลวที่อุณหภูมิ 243 องศาเซลเซียส จะมีความแข็งเป็นเท่าใด",
    "context": "CREATE TABLE table_name_45 (hardness VARCHAR, liquid_at__°c_ VARCHAR)"
  },
  {
    "answer": "SELECT sn_sb___percentage_ FROM table_name_4 WHERE liquid_at__°c_ = \"258\"",
    "question_en": "What is the Sn/Sb percentage that is liquid at 258 degrees C?",
    "question_th": "เปอร์เซ็นต์ Sn/Sb ที่เป็นของเหลวที่อุณหภูมิ 258 องศาเซลเซียส เป็นเท่าใด",
    "context": "CREATE TABLE table_name_4 (sn_sb___percentage_ VARCHAR, liquid_at__°c_ VARCHAR)"
  },
  {
    "answer": "SELECT remelting_at__°c_ FROM table_name_51 WHERE sn_sb___percentage_ = \"9.5/15\"",
    "question_en": "What is the remelting temperature for the alloy that has a Sn/Sb ratio of 9.5/15?",
    "question_th": "อุณหภูมิการหลอมซ้ำของโลหะผสมที่มีอัตราส่วน Sn/Sb เท่ากับ 9.5/15 คือเท่าใด",
    "context": "CREATE TABLE table_name_51 (remelting_at__°c_ VARCHAR, sn_sb___percentage_ VARCHAR)"
  },
  {
    "answer": "SELECT casting_at__°c_ FROM table_name_98 WHERE hardness = \"21\"",
    "question_en": "What is the casting temperature for the alloy with hardness 21?",
    "question_th": "อุณหภูมิในการหล่อโลหะผสมที่มีความแข็ง 21 คือเท่าไร?",
    "context": "CREATE TABLE table_name_98 (casting_at__°c_ VARCHAR, hardness VARCHAR)"
  },
  {
    "answer": "SELECT MAX(laps) FROM table_name_93 WHERE grid = 16",
    "question_en": "What's the most laps when grid is 16?",
    "question_th": "อะไรคือรอบมากที่สุดเมื่อกริดอยู่ที่ 16?",
    "context": "CREATE TABLE table_name_93 (laps INTEGER, grid VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(laps) FROM table_name_35 WHERE grid = 13",
    "question_en": "How many laps were there for a grid of 13?",
    "question_th": "มีกี่รอบสำหรับตาราง 13?",
    "context": "CREATE TABLE table_name_35 (laps VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(week) FROM table_name_12 WHERE attendance = \"69,149\"",
    "question_en": "How many weeks had an attendance at 69,149?",
    "question_th": "มีผู้เข้าร่วม 69,149 คนกี่สัปดาห์?",
    "context": "CREATE TABLE table_name_12 (week VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_40 WHERE week = 6",
    "question_en": "On what date did week 6 occur?",
    "question_th": "สัปดาห์ที่ 6 เกิดขึ้นวันไหน?",
    "context": "CREATE TABLE table_name_40 (date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_80 WHERE date = \"december 18, 2005\"",
    "question_en": "Who was the opponent on December 18, 2005?",
    "question_th": "คู่ต่อสู้เมื่อวันที่ 18 ธันวาคม 2548 คือใคร?",
    "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_en": "What is the result/score for the match report recap on week 14?",
    "question_th": "ผล/คะแนนสรุปรายงานการแข่งขันในสัปดาห์ที่ 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_en": "How many weeks have w 51-29 as the result/score?",
    "question_th": "ผลลัพธ์/คะแนนของ w 51-29 มีกี่สัปดาห์?",
    "context": "CREATE TABLE table_name_34 (week INTEGER, result_score VARCHAR)"
  },
  {
    "answer": "SELECT result_score FROM table_name_45 WHERE record = \"6-5\"",
    "question_en": "What is the result/score that has 6-5 as the record?",
    "question_th": "ผล/คะแนนที่มีสถิติ 6-5 เป็นอย่างไรบ้าง?",
    "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_en": "Which match report has l 7-30 as the result/score?",
    "question_th": "รายงานการแข่งขันใดมี l 7-30 เป็นผลลัพธ์/คะแนน?",
    "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_en": "Which game site has a recap as the match report for week 7?",
    "question_th": "เว็บไซต์เกมใดที่มีการสรุปเป็นรายงานการแข่งขันประจำสัปดาห์ที่ 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_en": "Which shooter's time is more than 8.97 and has a year prior to 2013?",
    "question_th": "เวลาของนักกีฬาคนไหนมากกว่า 8.97 และมีหนึ่งปีก่อนปี 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_en": "What country was the race in on April 27?",
    "question_th": "วันที่ 27 เมษายนจัดการแข่งขันที่ประเทศใด?",
    "context": "CREATE TABLE table_name_53 (country VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_6 WHERE date = \"august 17\"",
    "question_en": "What is the name of the team leading on August 17?",
    "question_th": "ทีมนำวันที่ 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_en": "What is the highest Ranking Round Rank for Russia with a Final Rank over 11?",
    "question_th": "อันดับรอบจัดอันดับสูงสุดสำหรับรัสเซียที่มีอันดับสุดท้ายมากกว่า 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_en": "Which Music has a Points Jury of 18 (5,5,4,4)?",
    "question_th": "เพลงใดมีคะแนนคณะลูกขุน 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_en": "What is the Music if the Dance is Jive?",
    "question_th": "เพลงอะไรถ้าการเต้นรำเป็นเรื่องหลอกลวง?",
    "context": "CREATE TABLE table_name_75 (music VARCHAR, dance VARCHAR)"
  },
  {
    "answer": "SELECT music FROM table_name_35 WHERE team = \"anna guzik & rafał kamiński\" AND points_jury = \"24 (7,5,6,6)\"",
    "question_en": "What is the Music for Team anna guzik & rafał kamiński that has a Points Jury of 24 (7,5,6,6)?",
    "question_th": "เพลงอะไรสำหรับทีม anna guzik และ rafał kamiński ที่มีคณะกรรมการให้คะแนน 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_en": "Which Music has a Dance of Modern?",
    "question_th": "ดนตรีใดมีท่าเต้นของสมัยใหม่?",
    "context": "CREATE TABLE table_name_79 (music VARCHAR, dance VARCHAR)"
  },
  {
    "answer": "SELECT points_jury FROM table_name_39 WHERE dance = \"pop\"",
    "question_en": "What is the Points Jury for Dance pop?",
    "question_th": "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_en": "Which Place has a Points Jury of 34 (7,8,9,10)?",
    "question_th": "สถานที่ใดมีคณะลูกขุนคะแนน 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_en": "What is the 2013 press freedom index of the country Egypt?",
    "question_th": "ดัชนีเสรีภาพสื่อของประเทศอียิปต์ปี 2013 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_20 (country VARCHAR)"
  },
  {
    "answer": "SELECT 2013 AS _index_of_economic_freedom FROM table_name_22 WHERE country = \"slovenia\"",
    "question_en": "What is the 2013 index of economic freedom of Slovenia?",
    "question_th": "ดัชนีเสรีภาพทางเศรษฐกิจของสโลวีเนียปี 2013 คืออะไร?",
    "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_en": "Which League Cup that has a Total of 19 and a League smaller than 15?",
    "question_th": "ลีกคัพใดที่มีคะแนนรวม 19 และลีกที่น้อยกว่า 15?",
    "context": "CREATE TABLE table_name_87 (league INTEGER, total VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_49 WHERE skip = \"andy kapp\"",
    "question_en": "For what country is the skip Andy Kapp?",
    "question_th": "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_en": "Who is the second on the North America team for which Cathy Overton-Clapham the third?",
    "question_th": "ใครคือคนที่สองในทีมอเมริกาเหนือที่มี Cathy Overton-Clapham คนที่สาม?",
    "context": "CREATE TABLE table_name_10 (second VARCHAR, team VARCHAR, third VARCHAR)"
  },
  {
    "answer": "SELECT lead FROM table_name_81 WHERE home = \"lockerbie\"",
    "question_en": "Who is the lead of the team from Lockerbie?",
    "question_th": "ใครเป็นหัวหน้าทีมจากล็อคเกอร์บี?",
    "context": "CREATE TABLE table_name_81 (lead VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_70 WHERE home = \"stirling\"",
    "question_en": "What is the name of the team from Stirling?",
    "question_th": "ชื่อทีมจากสเตอร์ลิงคืออะไร?",
    "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_en": "Who is the lead on the Europe team that has a Liudmila Privivkova as the skip?",
    "question_th": "ใครคือผู้นำทีมยุโรปที่มี ลิวมิลา ปริวิฟโควา เป็นตัวข้าม?",
    "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_en": "Who is the second of the North America team from Edmonton, Canada?",
    "question_th": "ใครคือทีมที่สองจากทวีปอเมริกาเหนือจากเอดมันตัน ประเทศแคนาดา?",
    "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_en": "What is the livery of the steam locomotive built after 1950 with a wheel arrangement of 2-6-2?",
    "question_th": "รถจักรไอน้ำที่สร้างขึ้นหลังปี 1950 มีรูปแบบล้อ 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_en": "What livery belongs to the steam Locomotive type builder that was building before 1989?",
    "question_th": "โรงรถอะไรเป็นของช่างก่อสร้างประเภทรถจักรไอน้ำที่สร้างขึ้นก่อนปี 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_en": "What is the total number of medals when the gold is more than 2 and silver more than 2?",
    "question_th": "เมื่อเหรียญทองมากกว่า 2 และเงินมากกว่า 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_en": "What is the most silver medals when the total is less than 4 and the rank is 12?",
    "question_th": "เหรียญเงินมากที่สุดเมื่อรวมน้อยกว่า 4 และอันดับที่ 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_en": "What is the total number of bronze medals when the silver is greater than 0, and the total medals 5?",
    "question_th": "จำนวนเหรียญทองแดงทั้งหมดเมื่อเงินมากกว่า 0 และเหรียญทั้งหมด 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_en": "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?",
    "question_th": "จำนวนเหรียญทั้งหมดเมื่อเหรียญทองแดงมากกว่า 1 และเยอรมนีเป็นชาติ และเหรียญทองน้อยกว่า 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íguez\" AND goals > 107",
    "question_en": "When Oscar Míguez had over 107 goals, what was the lowest he ranked?",
    "question_th": "เมื่อออสการ์ มิเกซยิงได้เกิน 107 ประตู เขาอยู่อันดับต่ำสุดเท่าไหร่?",
    "context": "CREATE TABLE table_name_21 (rank INTEGER, name VARCHAR, goals VARCHAR)"
  },
  {
    "answer": "SELECT MAX(goals) FROM table_name_18 WHERE years = \"1922–1935\"",
    "question_en": "What was the highest number of goals for 1922–1935?",
    "question_th": "จำนวนประตูสูงสุดสำหรับปี 1922–1935 คืออะไร?",
    "context": "CREATE TABLE table_name_18 (goals INTEGER, years VARCHAR)"
  },
  {
    "answer": "SELECT pick__number FROM table_name_20 WHERE player = \"jason french\"",
    "question_en": "Which pick number was there for Jason French?",
    "question_th": "หมายเลขตัวเลือกใดของ 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_en": "Which cfl team was associated with the college of manitoba?",
    "question_th": "ทีม cfl ใดที่เกี่ยวข้องกับวิทยาลัยแมนิโทบา",
    "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_en": "Which college's cfl team is the hamilton tiger-cats?",
    "question_th": "ทีม cfl ของวิทยาลัยใดคือทีม 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_en": "Which position's cfl team was the Montreal Alouettes when the pick number was less than 15?",
    "question_th": "ทีม cfl ในตำแหน่งใดคือ Montreal Alouettes เมื่อจำนวนเลือกน้อยกว่า 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_en": "Which player was drafted by the Saskatchewan Roughriders?",
    "question_th": "ผู้เล่นคนใดที่ถูกร่างโดย 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_en": "What college did Ben Wearing play for?",
    "question_th": "Ben Wearing เล่นให้กับวิทยาลัยใด",
    "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_en": "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?",
    "question_th": "มูลค่าประตู FA Cup โดยเฉลี่ยสำหรับผู้เล่นที่มี 0 ประตูอื่น, 0 ประตู FL Cup และน้อยกว่า 39 ประตูในลีกคือเท่าใด",
    "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_en": "On what date were the Ottawa Swans the away team?",
    "question_th": "ออตตาวา หงส์ เป็นทีมเยือนวันไหน?",
    "context": "CREATE TABLE table_name_25 (date VARCHAR, away VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_55 WHERE home = \"etobicoke kangaroos\"",
    "question_en": "What was the score of the game with the Etobicoke Kangaroos as the home team?",
    "question_th": "เกมนี้เจ้าบ้านเอโทบิโค้ก จิงโจ้ ทำได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_55 (score VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_97 WHERE home = \"broadview hawks\"",
    "question_en": "What was the score of the game with the Broadview Hawks as the home team?",
    "question_th": "เกมนี้เจ้าบ้านบรอดวิวฮอกส์ได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_97 (score VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_69 WHERE home = \"broadview hawks\"",
    "question_en": "What was the score of the Broadview Hawks home game?",
    "question_th": "เกมเหย้าของ Broadview Hawks ได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_69 (score VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT away FROM table_name_81 WHERE home = \"etobicoke kangaroos\"",
    "question_en": "Who was the away team for the Etobicoke Kangaroos home game?",
    "question_th": "ทีมเยือนเกมเหย้าเอโทบิโค้ก จิงโจ้คือใคร?",
    "context": "CREATE TABLE table_name_81 (away VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_26 WHERE score = \"130-56\"",
    "question_en": "What was the date for the 130-56 game?",
    "question_th": "แมตช์ 130-56 ตรงกับวันไหน?",
    "context": "CREATE TABLE table_name_26 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_20 WHERE home_team = \"cuba\"",
    "question_en": "What is the date with Cuba is Home team?",
    "question_th": "คิวบาเป็นทีมเหย้าวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_20 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_57 WHERE home_team = \"honduras\"",
    "question_en": "What is the location with Honduras is Home team?",
    "question_th": "ฮอนดูรัสเป็นทีมเจ้าบ้านอยู่ที่ไหน?",
    "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_en": "What is the location of 11 April 2013 and Mexico Home team?",
    "question_th": "วันที่ 11 เมษายน 2556 และทีมเจ้าบ้านเม็กซิโก อยู่ที่ไหน?",
    "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_en": "What is the date that is Away team is Honduras?",
    "question_th": "วันที่เท่าไหร่ทีมเยือนคือฮอนดูรัส?",
    "context": "CREATE TABLE table_name_25 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_44 WHERE away_team = \"guatemala\"",
    "question_en": "What is the date where Guatemala is the Away team?",
    "question_th": "กัวเตมาลาเป็นทีมเยือนวันไหน?",
    "context": "CREATE TABLE table_name_44 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_33 WHERE date = \"17 april 2013\"",
    "question_en": "What is the score for 17 April 2013?",
    "question_th": "คะแนนของวันที่ 17 เมษายน 2556 เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_33 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT SUM(week) FROM table_name_79 WHERE date = \"september 14, 2008\"",
    "question_en": "How many weeks have September 14, 2008 as the date?",
    "question_th": "14 กันยายน 2551 เป็นวันที่กี่สัปดาห์",
    "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_en": "What opponent has a week less than 16, with September 7, 2008 as the date?",
    "question_th": "ฝ่ายตรงข้ามคนใดที่มีหนึ่งสัปดาห์น้อยกว่า 16 โดยวันที่ 7 กันยายน 2551 เป็นวันที่?",
    "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_en": "What record has candlestick park as the game site, and october 12, 2008 as the date?",
    "question_th": "บันทึกใดที่มี Candlestick Park เป็นเว็บไซต์เกม และวันที่ 12 ตุลาคม 2551 เป็นวันที่?",
    "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_en": "What date has new england patriots as the opponent?",
    "question_th": "วันไหนที่ผู้รักชาติอังกฤษคนใหม่เป็นคู่ต่อสู้?",
    "context": "CREATE TABLE table_name_26 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_66 WHERE week = 10",
    "question_en": "What date has 10 for the week?",
    "question_th": "วันที่เท่าไหร่มี 10 สำหรับสัปดาห์?",
    "context": "CREATE TABLE table_name_66 (date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT game_site FROM table_name_50 WHERE result = \"w 10-3\"",
    "question_en": "What game site has w 10-3 as the result?",
    "question_th": "เว็บไซต์เกมใดที่มีผลลัพธ์เป็น w 10-3?",
    "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_en": "What is the sum of Rank that when the Singapore Cup is 0 (1), and the Name is masrezwan masturi?",
    "question_th": "ผลรวมของอันดับเมื่อสิงคโปร์คัพเป็น 0 (1) และชื่อคือ 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_en": "What is the Name of the person with a Total of 3 (15), and Rank of more than 3?",
    "question_th": "ชื่อของบุคคลที่มีคะแนนรวม 3 (15) และอันดับมากกว่า 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_en": "What is the Singapore Cup when the S-League is 5 (14)?",
    "question_th": "สิงคโปร์คัพจะเป็นอย่างไรเมื่อเอสลีกอยู่ที่ 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_en": "What is the Singapore League Cup when rank is more than 4, and the S-League is 2 (12)?",
    "question_th": "สิงคโปร์ลีกคัพคืออะไรเมื่ออันดับมากกว่า 4 และ S-League คือ 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_en": "In which tournament did Al Geiberger finish runner-up?",
    "question_th": "Al Geiberger จบอันดับรองชนะเลิศในทัวร์นาเมนต์ใด",
    "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_en": "What is the Season with an Acquisition via of rookie draft, and the number is 15?",
    "question_th": "ฤดูกาลที่มีการได้มาซึ่งผ่านร่างมือใหม่และหมายเลขคือ 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_en": "What is the Acquisition via for Dennis Miranda?",
    "question_th": "การเข้าซื้อกิจการผ่านสำหรับ 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_en": "What team acquired as a rookie draft in the position of guard Dennis Miranda?",
    "question_th": "ทีมใดที่ได้รับจากการดราฟต์มือใหม่ในตำแหน่งการ์ดเดนนิส มิแรนดา?",
    "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_en": "What season was School/Club Team perpetual help in the guard position?",
    "question_th": "ทีมโรงเรียน/สโมสรได้รับการช่วยเหลือในตำแหน่งผู้พิทักษ์อย่างต่อเนื่องในฤดูกาลใด",
    "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_en": "What number was Rashad McCants?",
    "question_th": "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_en": "What season did School/Club Team, East have an Acquisition via of trade?",
    "question_th": "School/Club Team, East ฤดูกาลใดที่ได้มาโดยการแลกเปลี่ยน?",
    "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_en": "What is the Date for the City/State of Sydney, New South Wales?",
    "question_th": "เมือง/รัฐซิดนีย์ รัฐนิวเซาท์เวลส์ จัดขึ้นวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_61 (date VARCHAR, city___state VARCHAR)"
  },
  {
    "answer": "SELECT revenues FROM table_name_43 WHERE tenure = \"1854-1855\"",
    "question_en": "What is the Revenues during Tenure 1854-1855?",
    "question_th": "รายได้ระหว่างการดำรงตำแหน่ง พ.ศ. 2397-2398 คืออะไร?",
    "context": "CREATE TABLE table_name_43 (revenues VARCHAR, tenure VARCHAR)"
  },
  {
    "answer": "SELECT revenues FROM table_name_81 WHERE courtesy_title = \"ukyo-daiyu\"",
    "question_en": "What is the Revenues of Ukyo-Daiyu?",
    "question_th": "รายได้ของ 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_en": "What country was the player, rod pampling, from who placed t10?",
    "question_th": "นักเตะ rod pampling มาจากประเทศไหนที่วาง 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_en": "What was the score that thomas levet got when he placed t10?",
    "question_th": "โทมัส เลเวต ได้คะแนนเท่าไหร่เมื่อเขาได้ 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_en": "What country did the player who scored 73-73-65=211 come from?",
    "question_th": "นักเตะที่ได้คะแนน 73-73-65=211 มาจากประเทศใด?",
    "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_en": "What is the score that the player who placed t4 from the united states get?",
    "question_th": "ผู้เล่นที่ได้อันดับ t4 จากประเทศสหรัฐอเมริกา ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_80 (score VARCHAR, country VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_57 WHERE player = \"phil mickelson\"",
    "question_en": "What country is phil mickelson from?",
    "question_th": "ฟิล มิคเคลสันมาจากประเทศอะไร",
    "context": "CREATE TABLE table_name_57 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_39 WHERE machine = \"nsr250\" AND points = 8",
    "question_en": "What is the Team with a Machine that is nsr250 and has Points of 8?",
    "question_th": "ทีมที่มีเครื่องจักรที่เป็น nsr250 และมีคะแนน 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_en": "What is the total lost that has points greater than 8 and a difference of - 8 and a position of greater than 5?",
    "question_th": "การสูญเสียรวมที่มีคะแนนมากกว่า 8 และผลต่าง - 8 และตำแหน่งมากกว่า 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_en": "What is the greatest number of points that has a lost bigger than 5, a difference of - 10 and a played bigger than 12?",
    "question_th": "อะไรคือจำนวนแต้มที่มากที่สุดที่เสียไปมากกว่า 5 ผลต่าง - 10 และแต้มที่เสียไปมากกว่า 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_en": "What is the Name with an Average that is 16.4?",
    "question_th": "ชื่อที่มีค่าเฉลี่ยคือ 16.4 คืออะไร?",
    "context": "CREATE TABLE table_name_10 (name VARCHAR, average VARCHAR)"
  },
  {
    "answer": "SELECT match FROM table_name_13 WHERE team = \"start gniezno\"",
    "question_en": "What was the match number for Start Gniezno?",
    "question_th": "หมายเลขการแข่งขันของ Start Gniezno คืออะไร?",
    "context": "CREATE TABLE table_name_13 (match VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT lost FROM table_name_48 WHERE points = \"10\"",
    "question_en": "Who was the team that lost but had 10 points?",
    "question_th": "ทีมไหนแพ้แต่มี 10 แต้ม?",
    "context": "CREATE TABLE table_name_48 (lost VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT draw FROM table_name_57 WHERE match = \"8\" AND team = \"lpż gdańsk\"",
    "question_en": "What was the draw for Lpż Gdańsk with a match of 8?",
    "question_th": "แลปซ กดันสค์ เสมอกัน 8 นัด?",
    "context": "CREATE TABLE table_name_57 (draw VARCHAR, match VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_29 WHERE draw = \"0\"",
    "question_en": "What team had a draw of 0?",
    "question_th": "ทีมไหนเสมอ 0?",
    "context": "CREATE TABLE table_name_29 (team VARCHAR, draw VARCHAR)"
  },
  {
    "answer": "SELECT match FROM table_name_91 WHERE points = \"8\"",
    "question_en": "What match had 8 points?",
    "question_th": "นัดไหนมี 8 แต้ม?",
    "context": "CREATE TABLE table_name_91 (match VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT draw FROM table_name_37 WHERE points = \"10\"",
    "question_en": "What is the draw for a match that had 10 points?",
    "question_th": "แมตช์ที่มี 10 แต้มเสมอกันคืออะไร?",
    "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_en": "What was the 1980-1981 team of the player born in Warroad, Minnesota?",
    "question_th": "ผู้เล่นที่เกิดในวอร์โรด รัฐมินนิโซตาในปี 1980-1981 คือทีมอะไร",
    "context": "CREATE TABLE table_name_22 (birthplace VARCHAR)"
  },
  {
    "answer": "SELECT SUM(lost) FROM table_name_99 WHERE draw > 0",
    "question_en": "How many losses have a draw greater than 0?",
    "question_th": "มีการสูญเสียกี่ครั้งที่มากกว่า 0?",
    "context": "CREATE TABLE table_name_99 (lost INTEGER, draw INTEGER)"
  },
  {
    "answer": "SELECT AVG(match) FROM table_name_33 WHERE points < 6",
    "question_en": "Which average match has points less than 6?",
    "question_th": "การแข่งขันโดยเฉลี่ยใดมีคะแนนน้อยกว่า 6",
    "context": "CREATE TABLE table_name_33 (match INTEGER, points INTEGER)"
  },
  {
    "answer": "SELECT AVG(draw) FROM table_name_52 WHERE points > 12",
    "question_en": "Which average draw has points greater than 12?",
    "question_th": "เสมอเฉลี่ยใดมีแต้มมากกว่า 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_en": "What Trainer had Jockey William Jenkins in a race with Time of 1:44.80?",
    "question_th": "เทรนเนอร์คนไหนมีจ๊อกกี้ วิลเลียม เจนกินส์ ในการแข่งขันด้วยเวลา 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_en": "In what Year was the Purse $150,000 with a Time of 1:49.00?",
    "question_th": "กระเป๋าเงินมีเงิน 150,000 ดอลลาร์ในปีใดด้วยเวลา 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_en": "What Owner's Trainer is Todd A. Pletcher?",
    "question_th": "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_en": "What was the Purse for Owner Harold A. Allen prior to 2009?",
    "question_th": "กระเป๋าเงินสำหรับเจ้าของ Harold A. Allen ก่อนปี 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_en": "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?",
    "question_th": "GDP (PPP) ต่อหัว 2012 ยูโรคือเท่าไร เมื่อจำนวนประชากรในล้านมากกว่า 10.8 และเมื่อ GDP (ที่กำหนด) ต่อหัว 2012 ยูโรคือ 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_en": "What is GDP 2012 Millions of Euro, when Population in Millions is less than 1.3, and when GDP (Nominal) Per Capita 2012 Euro is 20,700(p)?",
    "question_th": "GDP ปี 2555 ล้านยูโรคืออะไร เมื่อประชากรเป็นล้านน้อยกว่า 1.3 และเมื่อ GDP (ที่กำหนด) ต่อหัว ปี 2555 ยูโรเท่ากับ 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_en": "What is GDP (PPP) Per Capita 2012 EU27 = 100, when GDP 2012 Millions Of Euro is 309,900?",
    "question_th": "GDP (PPP) ต่อหัวคือเท่าไร 2012 EU27 = 100 เมื่อ GDP 2012 ล้านยูโรอยู่ที่ 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_en": "What is Population in Millions, when GDP 2012 Millions of Euro is 600,638?",
    "question_th": "ประชากรเป็นล้านเมื่อ GDP 2012 ล้านยูโรเท่ากับ 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_en": "What was the Money for Player Ernie Els?",
    "question_th": "เงินสำหรับผู้เล่น 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_en": "What T9 Player had a Score of 70-74-69-70=283?",
    "question_th": "ผู้เล่น T9 คนใดมีคะแนน 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_en": "What is the Money for the T1 Player with a Score of 66-69-70-75=280?",
    "question_th": "เงินสำหรับผู้เล่น T1 ที่มีคะแนน 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_en": "What is Chris Riley's Money?",
    "question_th": "เงินของ Chris Riley คืออะไร?",
    "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_en": "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?",
    "question_th": "จำนวน Span เมตรต่ำสุดในปีที่เปิดคือปี 2550 ประเทศคือจีน อันดับน้อยกว่า 13 และช่วงฟุตน้อยกว่า 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_en": "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?",
    "question_th": "วัสดุของประเทศใดเป็นรูปธรรมเมื่อสแปนเมตรน้อยกว่า 270 สแปนฟุตมากกว่า 837 และปีที่เปิดคือปี 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_en": "What country won in 1993?",
    "question_th": "ประเทศใดชนะในปี 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_en": "What was the finish with a total larger than 286, a to par of +4 and Bob Tway played?",
    "question_th": "จบสกอร์รวมมากกว่า 286 พาร์ +4 และ บ็อบ ทเวย์ ลงเล่นเป็นอย่างไรบ้าง?",
    "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_en": "What player in the United States had a total of 286 and won in 2003?",
    "question_th": "ผู้เล่นคนใดในสหรัฐอเมริกาที่มีทั้งหมด 286 คนและชนะในปี 2546",
    "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_en": "What country has a total of 293?",
    "question_th": "ประเทศใดมีทั้งหมด 293 แห่ง?",
    "context": "CREATE TABLE table_name_37 (country VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_67 WHERE country = \"fiji\"",
    "question_en": "What player is from Fiji?",
    "question_th": "นักเตะคนไหนมาจากฟิจิ?",
    "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_en": "Which method was used in the welterweight class with a preliminary card?",
    "question_th": "รุ่นเวลเตอร์เวทใช้วิธีใดกับบัตรเบื้องต้น",
    "context": "CREATE TABLE table_name_58 (method VARCHAR, weight_class VARCHAR, card VARCHAR)"
  },
  {
    "answer": "SELECT method FROM table_name_15 WHERE round > 3",
    "question_en": "Which method was used in a round greater than 3?",
    "question_th": "ใช้วิธีใดในรอบที่มากกว่า 3",
    "context": "CREATE TABLE table_name_15 (method VARCHAR, round INTEGER)"
  },
  {
    "answer": "SELECT weight_class FROM table_name_65 WHERE time = \"4:59\"",
    "question_en": "Which weight class had a time of 4:59?",
    "question_th": "รุ่นน้ำหนักใดมีเวลา 4:59?",
    "context": "CREATE TABLE table_name_65 (weight_class VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_35 WHERE round < 3",
    "question_en": "What was the time for a round less than 3?",
    "question_th": "รอบที่น้อยกว่า 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_en": "What is the smallest round for the welterweight class with a preliminary card?",
    "question_th": "รุ่นเวลเตอร์เวตที่มีบัตรรอบเล็กที่สุดคือรอบใด?",
    "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_en": "Were there Bulletins to all contacts of the proprietary license created by Microsoft with no transport layer of security?",
    "question_th": "มีกระดานข่าวสำหรับผู้ติดต่อทั้งหมดของสิทธิ์การใช้งานที่เป็นกรรมสิทธิ์ซึ่งสร้างโดย Microsoft โดยไม่มีชั้นการรักษาความปลอดภัยในการขนส่งหรือไม่",
    "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_en": "Were there Bulletins to all contacts of the license created by GG Network?",
    "question_th": "มีกระดานข่าวสำหรับผู้ติดต่อทั้งหมดเกี่ยวกับใบอนุญาตที่สร้างโดย 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_en": "What is the name of the license created by IETF?",
    "question_th": "ใบอนุญาตที่สร้างโดย IETF ชื่ออะไร",
    "context": "CREATE TABLE table_name_72 (license VARCHAR, creator VARCHAR)"
  },
  {
    "answer": "SELECT envelopment FROM table_name_83 WHERE family = \"rhabdoviridae\"",
    "question_en": "What is the envelopment for the rhabdoviridae family?",
    "question_th": "การห่อหุ้มของตระกูล rhabdoviridae คืออะไร?",
    "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_en": "Which Baltimore group has a viron shape of icosahedral, replicates in the cytoplasm, is non-enveloped, and is from the astroviridae family?",
    "question_th": "กลุ่มบัลติมอร์กลุ่มใดที่มีรูปร่างไวรอนเป็นไอโคซาฮีดรัล ทำซ้ำในไซโตพลาสซึม ไม่ห่อหุ้ม และมาจากตระกูลแอสโตรวิริดี",
    "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_en": "Which Baltimore group is of the retroviridae family?",
    "question_th": "กลุ่มบัลติมอร์ใดที่อยู่ในตระกูล retroviridae",
    "context": "CREATE TABLE table_name_62 (baltimore_group VARCHAR, family VARCHAR)"
  },
  {
    "answer": "SELECT baltimore_group FROM table_name_27 WHERE family = \"togaviridae\"",
    "question_en": "Which Baltimore group is of the togaviridae family?",
    "question_th": "กลุ่มบัลติมอร์ใดที่อยู่ในตระกูล togaviridae",
    "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_en": "Which Baltimore group is non-enveloped and is of the papillomaviridae family?",
    "question_th": "กลุ่มบัลติมอร์ใดที่ไม่ห่อหุ้มและเป็นครอบครัว papillomaviridae",
    "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_en": "What is the replication site when the species is enveloped and is of the bunyaviridae family?",
    "question_th": "สถานที่จำลองแบบเมื่อสปีชีส์ถูกห่อหุ้มและเป็นของตระกูล bunyaviridae คืออะไร?",
    "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_en": "What is the highest League Cup with a Player that is steed malbranque?",
    "question_th": "ลีกคัพสูงสุดที่มีผู้เล่นที่ 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_en": "What is the Manufacturer with a Fuel Type that is diesel?",
    "question_th": "ผู้ผลิตที่มีประเภทเชื้อเพลิงเป็นดีเซลคืออะไร?",
    "context": "CREATE TABLE table_name_9 (manufacturer VARCHAR, fuel_type VARCHAR)"
  },
  {
    "answer": "SELECT higgins FROM table_name_35 WHERE scallon = \"2%\"",
    "question_en": "What is the Higgins with a Scallon that is 2%?",
    "question_th": "Higgins กับ Scallon ที่ 2% คืออะไร?",
    "context": "CREATE TABLE table_name_35 (higgins VARCHAR, scallon VARCHAR)"
  },
  {
    "answer": "SELECT higgins FROM table_name_90 WHERE davis = \"9%\"",
    "question_en": "What is the Higgins with a Davis that is 9%?",
    "question_th": "ฮิกกินส์กับเดวิสที่ 9% คืออะไร?",
    "context": "CREATE TABLE table_name_90 (higgins VARCHAR, davis VARCHAR)"
  },
  {
    "answer": "SELECT source FROM table_name_45 WHERE norris = \"7%\"",
    "question_en": "What is the Source with a Norris that is 7%?",
    "question_th": "แหล่งที่มาของ Norris คือ 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_en": "What is the game 2 sum attendance of the team with a total attendance of 759,997?",
    "question_th": "ผลรวมเกมที่ 2 ของทีมมีผู้เข้าร่วมทั้งหมด 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_en": "What position does Barry Rose play?",
    "question_th": "แบร์รี่ โรส เล่นตำแหน่งอะไร?",
    "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_en": "Which Jersey # has a Height (cm) of 183, a Name of paul stastny, and a Weight (kg) smaller than 93?",
    "question_th": "เสื้อ # ใดที่มีส่วนสูง (ซม.) 183 ชื่อ paul stastny และน้ำหนัก (กก.) น้อยกว่า 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_en": "When the Runner-up was Angaston, and the Year was less than 1927, who was the Captain?",
    "question_th": "เมื่อรองชนะเลิศคือ Angaston และปีน้อยกว่าปี 1927 ใครคือกัปตัน?",
    "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_en": "When the Score was kapunda 7-7-49 angaston 6-8-44, who was the Runner-up?",
    "question_th": "เมื่อสกอร์เป็นคาปุนดา 7-7-49 อังกาสตัน 6-8-44 ใครได้รองแชมป์?",
    "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_en": "Which year had a Score of kapunda 14-13-97 tanunda 5-14-44?",
    "question_th": "ปีไหนมีคะแนน กปุนดา 14-13-97 ทันนันดา 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_en": "When the year is later than 1939 and the Runner-up is Tanunda, who is the Captain?",
    "question_th": "เมื่อปลายปี 2482 และรองชนะเลิศคือ ธนันดา กัปตันคือใคร?",
    "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_en": "What's the tournamnet name that has a 2001 of 1r and 2011?",
    "question_th": "ชื่อ tournamnet ที่มีปี 2001 เป็น 1r และ 2011 คืออะไร",
    "context": "CREATE TABLE table_name_25 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2001 FROM table_name_83 WHERE 2005 = \"4r\"",
    "question_en": "What is the 2001 tournament with a 2005 4r?",
    "question_th": "ทัวร์นาเมนต์ปี 2001 กับ 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_en": "What french open tournament happened in 2010 and has a 2004 1r?",
    "question_th": "การแข่งขัน French Open ใดที่เกิดขึ้นในปี 2010 และมี 2004 1r?",
    "context": "CREATE TABLE table_name_58 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2002 FROM table_name_21 WHERE 2008 = \"career statistics\"",
    "question_en": "What 2002 tournament has 2008 career statistics?",
    "question_th": "ทัวร์นาเมนต์ใดในปี 2545 มีสถิติอาชีพในปี 2551?",
    "context": "CREATE TABLE table_name_21 (Id VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_21 WHERE staffel_e = \"stahl riesa\"",
    "question_en": "Which season has a Staffel E of Stahl Riesa?",
    "question_th": "ฤดูกาลใดมี Staffel E ของ 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_en": "What is the Staffel D in the season 1983-84 with a Staffel E of Motor Suhl?",
    "question_th": "Staffel D คืออะไรในฤดูกาล 1983-84 กับ Staffel E ของ 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_en": "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?",
    "question_th": "Staffel A คืออะไรที่มี Staffel D ของ Energie Cottbus และ Staffel C ของ Chemie Leipzig และ Staffel B เท่ากับ 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_en": "What is the Staffel B that has Hallescher Fc Chemie as Staffel C?",
    "question_th": "Staffel B คืออะไรที่มี Hallescher Fc Chemie เป็น 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_en": "Which week's date was September 27, 1953?",
    "question_th": "วันที่ของสัปดาห์คือวันที่ 27 กันยายน พ.ศ. 2496",
    "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_en": "What is the largest attendance number when the Chicago Cardinals were the opponent and the week was less than 4?",
    "question_th": "จำนวนผู้เข้าร่วมที่ใหญ่ที่สุดเมื่อทีม Chicago Cardinals เป็นคู่ต่อสู้และในสัปดาห์น้อยกว่า 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ández natalia zvereva 6–2, 6–1\"",
    "question_en": "When Gigi Fernández Natalia Zvereva 6–2, 6–1 won, who was the Tier II Runner-up?",
    "question_th": "เมื่อจิจี้ เฟอร์นันเดซ นาตาเลีย ซเวเรวา ชนะ 6–2, 6–1 ใครคือรองแชมป์ระดับ II?",
    "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_en": "Who were the semi finalists when Alexia Dechaume-Balleret Sandrine testud was the runner-up?",
    "question_th": "ใครคือผู้เข้ารอบรองชนะเลิศเมื่อ Alexia Dechaume-Balleret Sandrine testud เป็นผู้ชนะเลิศ?",
    "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_en": "What tier had a runner-up of Lisa Raymond and a semifinalist of Sandrine Testud Mary Pierce?",
    "question_th": "รองชนะเลิศอันดับใดคือ Lisa Raymond และเข้ารอบรองชนะเลิศของ 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_en": "Who were the semi finalists when the runner-up was Alexandra Fusai Wiltrud Probst?",
    "question_th": "ใครคือผู้เข้ารอบรองชนะเลิศเมื่อรองชนะเลิศคือ 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_en": "What is the Label that shows on april 7, 1967?",
    "question_th": "ฉลากที่แสดงเมื่อวันที่ 7 เมษายน พ.ศ. 2510 คืออะไร?",
    "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_en": "What is the Date when the Country shows uk, the Format is cd, and the Catalog of edcd 227?",
    "question_th": "วันที่ประเทศแสดงสหราชอาณาจักร รูปแบบเป็น cd และแคตตาล็อกของ 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_en": "What is the Date for Catalog of lp 5060?",
    "question_th": "วันที่สำหรับแคตตาล็อกของ 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_en": "What Date was the Country of japan, and a Label of sony?",
    "question_th": "ประเทศญี่ปุ่นเป็นวันที่เท่าไร และยี่ห้อ 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_en": "What is the Catalog with a Format of lp, a Country of us, a Label of sundazed, and a Date of 2006?",
    "question_th": "แค็ตตาล็อกที่มีรูปแบบ lp, ประเทศของเรา, ป้ายกำกับ sundazed และวันที่ปี 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_en": "What is the Label name that has a Country of uk and the Catalog is bpg 62988?",
    "question_th": "ชื่อป้ายกำกับที่มีประเทศเป็นสหราชอาณาจักรและแคตตาล็อกคือ 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_en": "What were the Lyrics (l) and Music (m) for the Artist who was in a Position higher than 3 and who earned 1st Place?",
    "question_th": "เนื้อเพลง (l) และดนตรี (m) สำหรับศิลปินที่อยู่ในตำแหน่งที่สูงกว่า 3 และใครได้รับรางวัลที่ 1 คืออะไร?",
    "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_en": "What is the Rank of the Nation with 0 Silver and more than 1 Bronze?",
    "question_th": "อันดับของประเทศที่มี 0 เหรียญเงิน และมากกว่า 1 เหรียญทองแดง คืออะไร?",
    "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_en": "What is the Total medals for the Nation with 1 Silver and 0 Golds?",
    "question_th": "เหรียญรวมเพื่อชาติ 1 เหรียญเงิน 0 เหรียญทอง คืออะไร",
    "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_en": "Which potential's period 5 is 4 and has an element of antimony?",
    "question_th": "คาบ 5 ของศักย์ใดคือ 4 และมีธาตุพลวง",
    "context": "CREATE TABLE table_name_81 (potential VARCHAR, period VARCHAR, element VARCHAR)"
  },
  {
    "answer": "SELECT MIN(period) FROM table_name_28 WHERE element = \"ruthenium\"",
    "question_en": "Which lowest period's element is ruthenium?",
    "question_th": "ธาตุรูทีเนียมเป็นธาตุในช่วงเวลาต่ำสุดในข้อใด",
    "context": "CREATE TABLE table_name_28 (period INTEGER, element VARCHAR)"
  },
  {
    "answer": "SELECT MAX(period) FROM table_name_19 WHERE element = \"platinum\"",
    "question_en": "Which highest period's element is platinum?",
    "question_th": "ธาตุใดเป็นธาตุแพลตตินั่มในช่วงเวลาที่สูงที่สุด?",
    "context": "CREATE TABLE table_name_19 (period INTEGER, element VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_40 WHERE result = \"lost\"",
    "question_en": "What is the Venue with a Result that is lost?",
    "question_th": "สถานที่ซึ่งมีผลลัพธ์ที่สูญหายคืออะไร?",
    "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_en": "What is the highest administrative panel with a cultural and educational panel of 2 plus an industrial and commercial panel larger than 4?",
    "question_th": "คณะกรรมการบริหารสูงสุดที่มีคณะกรรมการด้านวัฒนธรรมและการศึกษา 2 คน บวกกับคณะกรรมการอุตสาหกรรมและเชิงพาณิชย์ที่ใหญ่กว่า 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_en": "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?",
    "question_th": "ผลรวมของมหาวิทยาลัยแห่งชาติไอร์แลนด์ที่มีคณะผู้พิจารณาด้านอุตสาหกรรมและการพาณิชย์น้อยกว่า 1 และคณะผู้พิจารณาด้านวัฒนธรรมและการศึกษาใหญ่กว่า 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_en": "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?",
    "question_th": "ค่าเฉลี่ยของแผงการบริหารเมื่อแผงวัฒนธรรมและการศึกษามากกว่า 1 และแผงอุตสาหกรรมและการพาณิชย์น้อยกว่า 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_en": "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?",
    "question_th": "คณะกรรมการบริหารที่ใหญ่ที่สุดที่ได้รับการเสนอชื่อโดย Taoiseach มากกว่า 3 คนและคณะกรรมการด้านการเกษตร 5 คน บวกกับคณะกรรมการด้านวัฒนธรรมและการศึกษาที่มีขนาดใหญ่กว่า 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_en": "What is the smallest cultural and educational panel with a nominated by the Taoiseach less than 5 and the total greater than 19?",
    "question_th": "คณะกรรมการวัฒนธรรมและการศึกษาที่เล็กที่สุดที่ได้รับการเสนอชื่อโดย Taoiseach น้อยกว่า 5 คนและทั้งหมดมากกว่า 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_en": "With the cultural and educational panel less than 0 what is the average industrial and commercial panel?",
    "question_th": "ด้วยแผงวัฒนธรรมและการศึกษาน้อยกว่า 0 แผงอุตสาหกรรมและการพาณิชย์โดยเฉลี่ยคืออะไร?",
    "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_en": "What is the total number of silver medals for nations with 5 total medals and more than 3 gold medals?",
    "question_th": "จำนวนเหรียญเงินรวมของประเทศที่มีทั้งหมด 5 เหรียญและมากกว่า 3 เหรียญทองเป็นเท่าใด",
    "context": "CREATE TABLE table_name_22 (silver VARCHAR, total VARCHAR, gold VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_18 WHERE date = 1969",
    "question_en": "What was the label in 1969?",
    "question_th": "ฉลากในปี 1969 คืออะไร?",
    "context": "CREATE TABLE table_name_18 (label VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT commissioned FROM table_name_29 WHERE nvr_page = \"mcm02\"",
    "question_en": "What is the Commissioned date of the ship in NVR Page MCM02?",
    "question_th": "วันที่สั่งการของเรือใน NVR หน้า 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_en": "What is the NVR Page of the ship with a Home Port of Sasebo, Japan?",
    "question_th": "หน้า NVR ของเรือที่มีท่าเรือหลักในเมืองซาเซโบะ ประเทศญี่ปุ่น คืออะไร",
    "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_en": "Which week's game was attended by 54,015 people?",
    "question_th": "เกมประจำสัปดาห์ใดที่มีผู้เข้าร่วม 54,015 คน?",
    "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_en": "What date was the game that was before week 4 and was attended by over 54,015 people ?",
    "question_th": "เกมก่อนสัปดาห์ที่ 4 คือวันที่ใดและมีผู้เข้าร่วมมากกว่า 54,015 คน",
    "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_en": "In what venues was the match with a final result of Eng by 4 wkts?",
    "question_th": "แมตช์นี้มีผลการแข่งขันรอบชิงชนะเลิศที่ 4 สัปดาห์ที่ 4 สัปดาห์ที่ใด?",
    "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_en": "What is the running time of the transmission on bbc four channels on 23 March 2008?",
    "question_th": "วันที่ 23 มีนาคม 2551 บีบีซี 4 ช่อง ออกอากาศวันที่ 23 มีนาคม 2551 เป็นเวลาเท่าใด",
    "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_en": "What is the notes of the transmission on channel bbc four and a time of 22:30?",
    "question_th": "บันทึกการถ่ายทอดทางช่อง BBC 4 เวลา 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_en": "Which channel was on 28 December 2008?",
    "question_th": "วันที่ 28 ธันวาคม 2551 ออกอากาศทางช่องใด?",
    "context": "CREATE TABLE table_name_74 (channel VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT channel FROM table_name_51 WHERE time = \"03:40\"",
    "question_en": "What is the channel with a 03:40 time?",
    "question_th": "เวลา 03:40 ช่องอะไรครับ?",
    "context": "CREATE TABLE table_name_51 (channel VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT other_b FROM table_name_96 WHERE fa_cup = \"3 (17)\"",
    "question_en": "What is the Other b when the FA Cup shows 3 (17)?",
    "question_th": "Other b คืออะไรเมื่อ FA Cup แสดง 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_en": "What is the Total when the league shows 79 (221)?",
    "question_th": "ยอดรวมเมื่อลีกแสดง 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_en": "What is the Name when the League Cup shows 0 (0), and the FA Cup is 12 (14)?",
    "question_th": "ชื่ออะไรเมื่อลีกคัพแสดง 0 (0) และเอฟเอคัพคือ 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–1960\"",
    "question_en": "What is the League for 1952–1960?",
    "question_th": "ลีกสำหรับปี 1952–1960 คืออะไร?",
    "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_en": "What shows for the League when the FA Cup is 6 (20)?",
    "question_th": "อะไรแสดงให้เห็นในลีกเมื่อ FA Cup อยู่ที่ 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_en": "What club wast he player hristo stoitchkov from?",
    "question_th": "เขาเป็นนักเตะ ฮริสโต สตอยช์คอฟ มาจากสโมสรไหน?",
    "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_en": "What is the content for la sorgente sat 3?",
    "question_th": "เนื้อหาสำหรับ 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_en": "What language is telemarket for you?",
    "question_th": "การตลาดทางโทรศัพท์เป็นภาษาอะไรสำหรับคุณ?",
    "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_en": "What language is telemarket for you with a content of televendita?",
    "question_th": "การตลาดทางโทรศัพท์เป็นภาษาใดสำหรับคุณที่มีเนื้อหาของ 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_en": "Which team has points less than 6 in a year after 1969?",
    "question_th": "ทีมใดมีคะแนนน้อยกว่า 6 ในหนึ่งปีหลังปี 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_en": "How many wins for the team with points less than 6 and a 350cc class?",
    "question_th": "ทีมที่มีคะแนนน้อยกว่า 6 และคลาส 350cc ชนะกี่ครั้ง?",
    "context": "CREATE TABLE table_name_35 (wins VARCHAR, points VARCHAR, class VARCHAR)"
  },
  {
    "answer": "SELECT MIN(points) FROM table_name_18 WHERE rank = \"36th\"",
    "question_en": "What is the lowest points for 36th rank?",
    "question_th": "คะแนนต่ำสุดสำหรับอันดับที่ 36 คืออะไร?",
    "context": "CREATE TABLE table_name_18 (points INTEGER, rank VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_8 WHERE team = \"yamaha\" AND points = 3",
    "question_en": "What is team Yamaha with 3 points ranked?",
    "question_th": "ทีม Yamaha ที่มี 3 แต้มอยู่ในอันดับที่เท่าไหร่?",
    "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_en": "What years did the player ranked less than 8 and had 447 matches play?",
    "question_th": "ผู้เล่นอันดับน้อยกว่า 8 และลงเล่น 447 นัดในปีใด",
    "context": "CREATE TABLE table_name_83 (years VARCHAR, rank VARCHAR, matches VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_98 WHERE record = \"15-7\"",
    "question_en": "What is the Time with a Record that is 15-7?",
    "question_th": "เวลาที่มีบันทึกคือ 15-7 คืออะไร?",
    "context": "CREATE TABLE table_name_98 (time VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_85 WHERE time = \"3:06\"",
    "question_en": "What is the Event with a Time that is 3:06?",
    "question_th": "เหตุการณ์ที่มีเวลาเป็น 3:06 คืออะไร?",
    "context": "CREATE TABLE table_name_85 (event VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT silver FROM table_name_78 WHERE nation = \"turkey\"",
    "question_en": "How many silvers did Turkey get?",
    "question_th": "ตุรกีได้กี่เหรียญเงิน?",
    "context": "CREATE TABLE table_name_78 (silver VARCHAR, nation VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_98 WHERE player = \"denard walker\"",
    "question_en": "What position does Denard Walker play?",
    "question_th": "เดนาร์ด วอล์คเกอร์ เล่นตำแหน่งอะไร?",
    "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_en": "What was the pick number for the wide receiver drafted from Michigan State?",
    "question_th": "หมายเลขเลือกสำหรับตัวรับแบบกว้างที่ร่างจากรัฐมิชิแกนคืออะไร?",
    "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_en": "Which player came from Kent State?",
    "question_th": "นักเตะคนไหนมาจากรัฐเคนท์?",
    "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_en": "What is the total number of bronze medals, and 4 silver medals, and 2 gold medals?",
    "question_th": "มีเหรียญทองแดงทั้งหมด 4 เหรียญเงิน 2 เหรียญทองเป็นจำนวนเท่าใด",
    "context": "CREATE TABLE table_name_28 (bronze VARCHAR, silver VARCHAR, gold VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_9 WHERE score = \"2–6 6–4 [10–8]\"",
    "question_en": "Which Tournament has a score of 2–6 6–4 [10–8]?",
    "question_th": "ทัวร์นาเมนต์ใดมีคะแนน 2–6 6–4 [10–8]?",
    "context": "CREATE TABLE table_name_9 (tournament VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_73 WHERE score = \"6(4)–7 2–6\"",
    "question_en": "Which Tournament has a Score of 6(4)–7 2–6?",
    "question_th": "ทัวร์นาเมนต์ใดมีคะแนน 6(4)–7 2–6?",
    "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_en": "What is the Score of the match where Opponents in the Final was Vitalia Diatchenko Irena Pavlovic?",
    "question_th": "คะแนนของแมตช์ที่คู่ต่อสู้ในรอบชิงชนะเลิศคือ วิตาเลีย ดิัตเชนโก้ อิเรนา ปาฟโลวิช คือเท่าไร?",
    "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_en": "What is the High rebounds with a Game that is 62?",
    "question_th": "การรีบาวด์สูงของเกมที่ 62 คืออะไร?",
    "context": "CREATE TABLE table_name_71 (high_rebounds VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_35 WHERE score = \"l 79–92 (ot)\"",
    "question_en": "What is the Team with a Score that is l 79–92 (ot)?",
    "question_th": "ทีมที่มีคะแนน l 79–92 (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_en": "Who is the coach of the 2012 Gold Coast Titans season?",
    "question_th": "ใครคือโค้ชของโกลด์โคสต์ไททันส์ฤดูกาล 2012?",
    "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_en": "Who is the coach of the 2010 Gold Coast Titans season?",
    "question_th": "ใครคือโค้ชของโกลด์โคสต์ไททันส์ฤดูกาล 2010?",
    "context": "CREATE TABLE table_name_8 (coach VARCHAR, details VARCHAR)"
  },
  {
    "answer": "SELECT captain_s_ FROM table_name_75 WHERE competition = \"2012 nrl season\"",
    "question_en": "Who is the captain of the 2012 NRL season competition?",
    "question_th": "ใครคือกัปตันของการแข่งขัน NRL ฤดูกาล 2012?",
    "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_en": "How many wins were in the PGA Championship when there were more than 10 events?",
    "question_th": "มีชัยชนะกี่ครั้งใน PGA Championship เมื่อมีมากกว่า 10 รายการ?",
    "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_en": "What is the smallest number of cuts when there were more than 0 wins?",
    "question_th": "จำนวนการตัดที่น้อยที่สุดเมื่อชนะมากกว่า 0 ครั้งคือเท่าใด?",
    "context": "CREATE TABLE table_name_59 (cuts_made INTEGER, wins INTEGER)"
  },
  {
    "answer": "SELECT COUNT(rank) FROM table_name_51 WHERE years = \"1996–2007\" AND goals > 108",
    "question_en": "What is the total number of Rank for 1996–2007, when there are more than 108 goals?",
    "question_th": "จำนวนอันดับทั้งหมดสำหรับปี 1996–2007 เมื่อมีเป้าหมายมากกว่า 108 คือเท่าใด",
    "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_en": "What is the lowest Rank when the goals are less than 124 for Jeff Cunningham?",
    "question_th": "อันดับต่ำสุดเมื่อประตูน้อยกว่า 124 สำหรับ 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_en": "What is the total number of Rank with 100 goals, and less than 300 matches?",
    "question_th": "จำนวนรวมอันดับที่มี 100 ประตูและน้อยกว่า 300 นัดเป็นเท่าใด",
    "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_en": "What is the highest Rank for Jason Kreis, with less than 305 matches?",
    "question_th": "อันดับสูงสุดของ Jason Kreis โดยลงเล่นน้อยกว่า 305 นัดคืออะไร?",
    "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_en": "What is the least number of wins when the top 10 is more than 8?",
    "question_th": "จำนวนชัยชนะน้อยที่สุดเมื่อ 10 อันดับแรกมากกว่า 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_en": "What is the sum of cuts made when the top-5 is 2, and there are 12 events?",
    "question_th": "ผลรวมของการตัดเมื่อ 5 อันดับแรกคือ 2 และมี 12 รายการเป็นเท่าใด",
    "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_en": "What is the mean number in the top 5 when the top 25 is 1 and there's fewer than 0 wins?",
    "question_th": "ตัวเลขเฉลี่ยใน 5 อันดับแรกเมื่อ 25 อันดับแรกเป็น 1 และมีชัยชนะน้อยกว่า 0 คืออะไร?",
    "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_en": "What is the mean number of events when top-5 is 1?",
    "question_th": "จำนวนเหตุการณ์เฉลี่ยเมื่อ 5 อันดับแรกคือ 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_en": "How many top-25s are associated with more than 91 events?",
    "question_th": "มีผู้เข้ารอบ 25 อันดับแรกจำนวนเท่าใดที่เกี่ยวข้องกับกิจกรรมมากกว่า 91 รายการ",
    "context": "CREATE TABLE table_name_24 (top_25 INTEGER, events INTEGER)"
  },
  {
    "answer": "SELECT MIN(wins) FROM table_name_40 WHERE top_10 > 9",
    "question_en": "What is the lowest Wins with a Top-10 that is larger than 9?",
    "question_th": "ชัยชนะที่ต่ำที่สุดที่มี 10 อันดับแรกที่มากกว่า 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_en": "What is the average Cuts that were made with a Top-10 that is larger than 9?",
    "question_th": "อะไรคือค่าเฉลี่ยการตัดที่ทำด้วย Top-10 ที่มากกว่า 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_en": "Which record has 64,053 as the attendance?",
    "question_th": "ซึ่งสถิติมีผู้เข้าร่วมถึง 64,053 คน?",
    "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_en": "Which date has rich stadium as the game site for week 1?",
    "question_th": "วันที่ใดที่มีสนามกีฬาอันอุดมสมบูรณ์เป็นเว็บไซต์เกมสำหรับสัปดาห์ที่ 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_en": "Which date has 1 as the week?",
    "question_th": "วันที่ใดมี 1 เป็นสัปดาห์?",
    "context": "CREATE TABLE table_name_22 (date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_5 WHERE riaa_sales_certification = \"gold\"",
    "question_en": "Which Title was awarded the gold RIAA Sales Certification?",
    "question_th": "ชื่อใดได้รับรางวัล 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_en": "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?",
    "question_th": "เพลง \"Lost Without Your Love\" ได้รับรางวัลเหรียญทองจาก RIAA Sales Certification และมียอดขาย Billboard 200 Peak มากกว่า 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_en": "Before the Year 1972, what RIAA Sales Certification was awarded to the song that had a Billboard 200 Peak less than 18?",
    "question_th": "ก่อนปี 1972 RIAA Sales Certification ใดที่มอบให้กับเพลงที่มี Billboard 200 Peak น้อยกว่า 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_en": "What RIAA Sales Certification was awarded to the song that had a Billboard 200 Peak of 21?",
    "question_th": "RIAA Sales Certification ใดที่มอบให้กับเพลงที่มีอันดับ Billboard 200 Peak ที่ 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_en": "What is the sum of the Billboard 200 Peak scores after the Year 1971?",
    "question_th": "ผลรวมของคะแนน Billboard 200 Peak หลังปี 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_en": "What is the sum of the Billboard 200 Peak scores given to the song with the Title Bread?",
    "question_th": "ผลรวมของคะแนน Billboard 200 Peak ที่มอบให้กับเพลงที่มี 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_en": "What is the number of gold when the silver is 1, bronze is 1, and the nation is Austria?",
    "question_th": "ทองคำคือ 1 เงินคือ 1 ทองแดงคือ 1 และชาติคือออสเตรียเป็นเท่าใด",
    "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_en": "What nation has 2 bronze and a rank of 9?",
    "question_th": "ชาติใดมี 2 เหรียญทองแดง และอันดับ 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_en": "What is the highest gold when bronze is 1, and rank is 5?",
    "question_th": "ทองคำสูงสุดเมื่อทองแดงคือ 1 และอันดับคือ 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_en": "What is the lowest gold when there are 0 bronze and the total is less than 2, and silver is less than 0?",
    "question_th": "ทองคำต่ำสุดเมื่อมี 0 ทองแดงและยอดรวมน้อยกว่า 2 และเงินน้อยกว่า 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_en": "What is the sum of rank when total is 3 and the nation is Australia?",
    "question_th": "ผลรวมของอันดับเมื่อรวมเป็น 3 และประเทศคือออสเตรเลียเป็นเท่าใด",
    "context": "CREATE TABLE table_name_12 (rank INTEGER, total VARCHAR, nation VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_29 WHERE goals < 66",
    "question_en": "What is the Rank with a Goal number smaller than 66?",
    "question_th": "อันดับที่มีหมายเลขประตูน้อยกว่า 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_en": "What is the spoofed title for Parks and Recreation with an issue larger than 509?",
    "question_th": "ชื่อปลอมสำหรับ Parks and Recreation ที่มีปัญหามากกว่า 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_en": "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?",
    "question_th": "ชื่อจริงของรายการที่มีหมายเลขน้อยกว่า 508 เขียนโดย Desmond Devlin และ Tom Richmond คนไหนเป็นศิลปิน",
    "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_en": "What issue was the spoofed title Ho-Hum land?",
    "question_th": "ชื่อ 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_en": "Game of Thrones was done by which artist?",
    "question_th": "Game of Thrones ทำโดยศิลปินคนไหน?",
    "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_en": "What is the Surface when Todd Woodbridge was the runner-up, and a Date of 24 february 1997?",
    "question_th": "What is the Surface เมื่อ Todd Woodbridge เป็นรองแชมป์ และวันที่ 24 กุมภาพันธ์ 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_en": "What is the Opponent when Todd Woodbridge was the runner-up, and a Date of 26 august 1996?",
    "question_th": "ฝ่ายตรงข้ามคืออะไรเมื่อท็อดด์ วูดบริดจ์เป็นรองแชมป์ และวันที่ 26 สิงหาคม 1996?",
    "context": "CREATE TABLE table_name_52 (opponent VARCHAR, outcome VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_75 WHERE score = \"4–6, 6–3, 6–7 (5–7)\"",
    "question_en": "What is the Surface when the score was 4–6, 6–3, 6–7 (5–7)?",
    "question_th": "Surface คืออะไรเมื่อคะแนนคือ 4–6, 6–3, 6–7 (5–7)?",
    "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_en": "What is the Score when there was a hard surface and the Championship is new haven , usa?",
    "question_th": "คะแนนเมื่อมีพื้นผิวแข็งและแชมป์เป็นสวรรค์ใหม่สหรัฐอเมริกาคืออะไร?",
    "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_en": "Which Position player was born June 30, 1981?",
    "question_th": "นักเตะตำแหน่งใดเกิดวันที่ 30 มิถุนายน พ.ศ.2524?",
    "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_en": "What is the 2005-2006 team for player Phil Kessel?",
    "question_th": "ฟิล เคสเซลคือทีมอะไรในปี 2548-2549?",
    "context": "CREATE TABLE table_name_89 (name VARCHAR)"
  },
  {
    "answer": "SELECT SUM(goals_for) FROM table_name_84 WHERE drawn > 10",
    "question_en": "What is the total sum of the goals at competitions with more than 10 draws?",
    "question_th": "ผลรวมของประตูในการแข่งขันที่เสมอกันมากกว่า 10 ครั้งเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_84 (goals_for INTEGER, drawn INTEGER)"
  },
  {
    "answer": "SELECT MAX(wins) FROM table_name_14 WHERE byes > 2",
    "question_en": "For the teams that had more than 2 Byes, what was the highest number of Wins?",
    "question_th": "สำหรับทีมที่มีบายมากกว่า 2 ครั้ง จำนวนชัยชนะสูงสุดคือเท่าไร?",
    "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_en": "For the teams that had fewer than 4 Losses, and less than 16 Wins, what was the total number of Draws?",
    "question_th": "สำหรับทีมที่แพ้น้อยกว่า 4 ครั้ง และชนะน้อยกว่า 16 ครั้ง จำนวนเสมอทั้งหมดคือเท่าไร?",
    "context": "CREATE TABLE table_name_21 (draws VARCHAR, losses VARCHAR, wins VARCHAR)"
  },
  {
    "answer": "SELECT AVG(wins) FROM table_name_51 WHERE losses < 1",
    "question_en": "For the teams that had less than 1 loss, what was the average number of Wins?",
    "question_th": "สำหรับทีมที่แพ้น้อยกว่า 1 ครั้ง จำนวนชัยชนะโดยเฉลี่ยคือเท่าใด",
    "context": "CREATE TABLE table_name_51 (wins INTEGER, losses INTEGER)"
  },
  {
    "answer": "SELECT MIN(draws) FROM table_name_38 WHERE byes < 1",
    "question_en": "For the teams that had fewer than 1 Byes, what was the lowest number of Draws?",
    "question_th": "สำหรับทีมที่มีการบายน้อยกว่า 1 ครั้ง จำนวนเสมอต่ำสุดคือเท่าไร?",
    "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_en": "What was the highest number of Draws scored by Sebastapol when the value for Against was less than 1802?",
    "question_th": "จำนวนเสมอสูงสุดที่ทำได้โดย Sebastapol เมื่อค่า Against น้อยกว่า 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_en": "What is the Season when the Opponent was zenit st. petersburg?",
    "question_th": "ฤดูกาลใดที่ฝ่ายตรงข้ามอยู่ที่เซนิตเซนต์ ปีเตอร์สเบิร์ก?",
    "context": "CREATE TABLE table_name_68 (season VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_75 WHERE round = \"q2\" AND season = \"2005–06\"",
    "question_en": "What is the Opponent with a Round of q2, in the 2005–06 season?",
    "question_th": "ฝ่ายตรงข้ามที่มีรอบ Q2 ในฤดูกาล 2548–06 คืออะไร?",
    "context": "CREATE TABLE table_name_75 (opponent VARCHAR, round VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_86 WHERE season = \"2002–03\" AND opponent = \"zenit st. petersburg\"",
    "question_en": "What is the Competition for Season 2002–03, and the Opponent was zenit st. petersburg?",
    "question_th": "การแข่งขันสำหรับฤดูกาล 2545–03 คืออะไร และฝ่ายตรงข้ามคือเซนิตเซนต์ ปีเตอร์สเบิร์ก?",
    "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–07\"",
    "question_en": "What is the Round when the series shows 5th place, and a Season of 2006–07?",
    "question_th": "รอบจะเป็นอย่างไรเมื่อซีรีส์แสดงอันดับที่ 5 และฤดูกาลปี 2549–07",
    "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–07\" AND round = \"group\" AND opponent = \"az\"",
    "question_en": "What is the Series for the uefa cup, in the 2006–07 season, and a Round of group, and an opponent of az?",
    "question_th": "ซีรีส์สำหรับยูฟ่าคัพในฤดูกาล 2549–07 และรอบแบ่งกลุ่มและคู่ต่อสู้ของอาซคืออะไร?",
    "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_en": "Which Flag did the Ship Aidavita have?",
    "question_th": "เรือ Aidavita มีธงใด",
    "context": "CREATE TABLE table_name_66 (flag VARCHAR, ship VARCHAR)"
  },
  {
    "answer": "SELECT set_5 FROM table_name_85 WHERE total = \"77 - 65\"",
    "question_en": "What shows for Set 5 when the Total was 77 - 65?",
    "question_th": "สิ่งที่แสดงให้เห็นสำหรับชุดที่ 5 เมื่อผลรวมเป็น 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_en": "What is the Set 3 when the Total was 98 - 92?",
    "question_th": "ชุดที่ 3 เมื่อผลรวมเป็น 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_en": "What is the Total when the Set 3 was 25-15?",
    "question_th": "ยอดรวมเมื่อเซ็ต 3 อยู่ที่ 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_en": "What is the Set 3 when the Total was 62 - 75?",
    "question_th": "ชุดที่ 3 เมื่อผลรวมเป็น 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_en": "What is the Score when Set 2 shows 25-20, and a Total of 75 - 49?",
    "question_th": "คะแนนเมื่อชุดที่ 2 แสดง 25-20 และผลรวม 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_en": "What is the ethernet ports of the m1500 appliance?",
    "question_th": "พอร์ตอีเธอร์เน็ตของอุปกรณ์ m1500 คืออะไร",
    "context": "CREATE TABLE table_name_5 (ethernet_ports VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT ethernet_ports FROM table_name_86 WHERE name = \"u150\"",
    "question_en": "What is the ethernet ports of the u150 appliance?",
    "question_th": "พอร์ตอีเธอร์เน็ตของอุปกรณ์ u150 คืออะไร?",
    "context": "CREATE TABLE table_name_86 (ethernet_ports VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT dimensions FROM table_name_27 WHERE name = \"u50\"",
    "question_en": "What is the dimensions of the u50 appliance?",
    "question_th": "เครื่องใช้ไฟฟ้า u50 มีขนาดเท่าไร?",
    "context": "CREATE TABLE table_name_27 (dimensions VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT ethernet_ports FROM table_name_51 WHERE name = \"u10\"",
    "question_en": "What is the ethernet ports of the u10 appliance?",
    "question_th": "พอร์ตอีเธอร์เน็ตของอุปกรณ์ u10 คืออะไร?",
    "context": "CREATE TABLE table_name_51 (ethernet_ports VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(silver) FROM table_name_84 WHERE bronze < 1",
    "question_en": "What is the total number of Silver medals for the Nation with less than 1 Bronze?",
    "question_th": "เหรียญเงินของประเทศที่มีน้อยกว่า 1 เหรียญทองแดงมีทั้งหมดกี่เหรียญ?",
    "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_en": "What is the total number of Gold medals for the Nation with more than 1 Bronze and more the 4 Total medals?",
    "question_th": "จำนวนเหรียญทองรวมของประเทศที่มีมากกว่า 1 เหรียญทองแดงและมากกว่า 4 เหรียญทั้งหมดคือเท่าใด",
    "context": "CREATE TABLE table_name_70 (gold VARCHAR, bronze VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(gold) FROM table_name_15 WHERE bronze > 3",
    "question_en": "What is the total number of Gold medals for the Nation with more than 3 Bronze?",
    "question_th": "จำนวนเหรียญทองรวมของประเทศที่มีมากกว่า 3 เหรียญทองแดงคือเท่าใด",
    "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_en": "How many Gold medals did Great Britain with a Total of more than 2 medals receive?",
    "question_th": "บริเตนใหญ่รวมมากกว่า 2 เหรียญได้รับเหรียญทองกี่เหรียญ?",
    "context": "CREATE TABLE table_name_83 (gold INTEGER, nation VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT AVG(silver) FROM table_name_37 WHERE rank < 1",
    "question_en": "How many Silver medals did the Nation with a Rank of less than 1 receive?",
    "question_th": "ประเทศที่มีอันดับต่ำกว่า 1 ได้รับเหรียญเงินกี่เหรียญ?",
    "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_en": "What is the average total with 1 FA cup and more than 0 FA trophies?",
    "question_th": "ค่าเฉลี่ยรวม 1 เอฟเอ คัพ และมากกว่า 0 ถ้วยรางวัล เอฟเอ เป็นเท่าไหร่?",
    "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_en": "Which club had more than 2 FA trophies and more than 2 FA cups?",
    "question_th": "สโมสรใดมีถ้วยเอฟเอมากกว่า 2 ถ้วยและเอฟเอคัพมากกว่า 2 ถ้วย?",
    "context": "CREATE TABLE table_name_34 (club VARCHAR, fa_trophy VARCHAR, fa_cup VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_37 WHERE record = \"11–4–1\"",
    "question_en": "Who was the opponent when the Maroons record was 11–4–1?",
    "question_th": "คู่ต่อสู้คือใครเมื่อสถิติของ Maroons คือ 11–4–1?",
    "context": "CREATE TABLE table_name_37 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_79 WHERE date = \"january 5, 1926\"",
    "question_en": "What was the result of the game on January 5, 1926?",
    "question_th": "ผลการแข่งขันเมื่อวันที่ 5 มกราคม พ.ศ. 2469 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_79 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_91 WHERE margin_of_victory = \"2 strokes\"",
    "question_en": "What date had a margin victory of 2 strokes?",
    "question_th": "วันไหนมีชัยชนะมาร์จิ้น 2 จังหวะ?",
    "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_en": "What is the margin of victory in a semgroup championship?",
    "question_th": "ชัยชนะในการแข่งขันชิงแชมป์เซมกรุ๊ปคืออะไร?",
    "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_en": "What was the winning score with a margin victory of 2 strokes?",
    "question_th": "คะแนนชนะโดยมีมาร์จิ้นชัยชนะ 2 จังหวะเป็นเท่าใด?",
    "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_en": "What is the highest Pct %, when Goals Against is less than 229?",
    "question_th": "Pct % สูงสุดคือเท่าใด เมื่อ Goals Against น้อยกว่า 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_en": "What is the average Goals, when Playoffs is Lost in Round 2, and when Games is less than 81?",
    "question_th": "ประตูเฉลี่ยคือเท่าไร เมื่อรอบตัดเชือกแพ้ในรอบที่ 2 และเมื่อเกมน้อยกว่า 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_en": "What is the sum of Goals Against, when Lost is 45, and when Points is greater than 68?",
    "question_th": "ผลรวมของจำนวนประตูที่เสีย เมื่อแพ้คือ 45 และเมื่อคะแนนมากกว่า 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_en": "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?",
    "question_th": "ค่าเฉลี่ยแพ้คือเท่าไร เมื่อเกมน้อยกว่า 82 เมื่อคะแนนน้อยกว่า 95 และเมื่อ Pct % น้อยกว่า 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_en": "What is the Class when Wessex Trains Pink is the Livery?",
    "question_th": "คลาสไหนที่ Wessex Trains Pink เป็น Livery?",
    "context": "CREATE TABLE table_name_90 (class VARCHAR, livery VARCHAR)"
  },
  {
    "answer": "SELECT livery FROM table_name_57 WHERE number = 31468",
    "question_en": "What is the Livery when the Number is 31468?",
    "question_th": "Livery คืออะไรเมื่อหมายเลขเป็น 31468?",
    "context": "CREATE TABLE table_name_57 (livery VARCHAR, number VARCHAR)"
  },
  {
    "answer": "SELECT skip FROM table_name_6 WHERE nation = \"germany\"",
    "question_en": "What was the Skip for Germany?",
    "question_th": "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_en": "What was the club for Great Britain?",
    "question_th": "สโมสรสำหรับบริเตนใหญ่คืออะไร?",
    "context": "CREATE TABLE table_name_58 (club VARCHAR, nation VARCHAR)"
  },
  {
    "answer": "SELECT alternate FROM table_name_38 WHERE second = \"magnus swartling\"",
    "question_en": "Who is the alternate for Magnus Swartling as Second?",
    "question_th": "ใครคือตัวสำรองของ Magnus Swartling เป็นอันดับสอง?",
    "context": "CREATE TABLE table_name_38 (alternate VARCHAR, second VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_name_69 WHERE lead = \"jamie korab\"",
    "question_en": "Which club has Jamie Korab as Lead?",
    "question_th": "สโมสรไหนมี เจมี โครับ เป็นผู้นำ?",
    "context": "CREATE TABLE table_name_69 (club VARCHAR, lead VARCHAR)"
  },
  {
    "answer": "SELECT lead FROM table_name_62 WHERE third = \"hans frauenlob\"",
    "question_en": "Which Lead has Hans Frauenlob as a Third?",
    "question_th": "Lead คนไหนมี Hans Frauenlob เป็นอันดับสาม?",
    "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_en": "Who was the Home captain when the Result was Aus by 218 runs?",
    "question_th": "ใครคือกัปตันทีมเหย้าเมื่อผลการแข่งขันคือออส 218 รัน?",
    "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 = \"бело одело\"",
    "question_en": "What is the Film title used in nomination of the Film with a Serbian title of бело одело?",
    "question_th": "ชื่อภาพยนตร์ที่ใช้ในการเสนอชื่อภาพยนตร์ที่มีชื่อเซอร์เบียว่า бело одело คืออะไร?",
    "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_en": "In what Year was Labyrinth nominated?",
    "question_th": "Labyrinth ได้รับการเสนอชื่อเข้าชิงในปีใด",
    "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_en": "What is the High assists for march 25?",
    "question_th": "ไฮแอสซิสต์ในวันที่ 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_en": "What is the Score when Donyell Marshall (26) had the high points?",
    "question_th": "คะแนนเมื่อ Donyell Marshall (26) มีคะแนนสูงคืออะไร?",
    "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_en": "What is the highest Game when Morris Peterson (8) had the high assists?",
    "question_th": "เกมใดสูงสุดเมื่อมอร์ริส ปีเตอร์สัน (8) มีแอสซิสต์สูง?",
    "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_en": "What is the High assists when jalen rose (22) had the high points?",
    "question_th": "แอสซิสต์สูงแค่ไหนเมื่อจาเลน โรส (22) มีแต้มสูง?",
    "context": "CREATE TABLE table_name_35 (high_assists VARCHAR, high_points VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_name_64 WHERE record = \"28–40\"",
    "question_en": "What is the High assists when the record was 28–40?",
    "question_th": "แอสซิสต์สูงสุดเมื่อทำสถิติอยู่ที่ 28–40 คืออะไร?",
    "context": "CREATE TABLE table_name_64 (high_assists VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT brazil_scorers FROM table_name_11 WHERE score = \"3-3\"",
    "question_en": "Who were the Brazil scorers who scored 3-3?",
    "question_th": "ใครคือผู้ทำประตูบราซิลที่ทำประตูได้ 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_en": "Who is the Brazil scorer who scored 6-0?",
    "question_th": "ใครคือผู้ทำประตูบราซิลที่ยิง 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_en": "With a score of 2-2, what was the Result?",
    "question_th": "ด้วยสกอร์ 2-2 ผลลัพธ์เป็นอย่างไรบ้าง?",
    "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_en": "Which Original Team has a Hometown of Brooklyn, New York and a Background of Comedienne?",
    "question_th": "ทีมดั้งเดิมคนไหนที่มีบ้านเกิดที่บรูคลิน นิวยอร์ก และมีภูมิหลังเป็นนักแสดงตลก",
    "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_en": "What is the Background of the contestant with a Hometown listed as Los Angeles, California?",
    "question_th": "ภูมิหลังของผู้แข่งขันที่มีบ้านเกิดอยู่ในรายชื่อลอสแองเจลิส แคลิฟอร์เนียคืออะไร?",
    "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_en": "What is the Background of the contestant with a Result of 07 fired in task 6 (2009-04-05)?",
    "question_th": "ความเป็นมาของผู้เข้าแข่งขันที่มีผลคะแนน 07 ไล่ออกในงานที่ 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_en": "What is the Original Team of the contestant from Wrightsville, Georgia ?",
    "question_th": "ทีมดั้งเดิมของผู้เข้าแข่งขันจากไรท์สวิลล์ รัฐจอร์เจีย คือทีมอะไร",
    "context": "CREATE TABLE table_name_13 (original_team VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_27 WHERE opponent = \"carolina panthers\"",
    "question_en": "Which Attendance has an Opponent of carolina panthers?",
    "question_th": "ผู้เข้าร่วมคนใดมีฝ่ายตรงข้ามของแคโรไลนาแพนเทอร์?",
    "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_en": "Which Date has a Week smaller than 11, and a Attendance of 54,094?",
    "question_th": "วันใดที่มีสัปดาห์น้อยกว่า 11 และมีผู้เข้าร่วม 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_en": "What is the number of the episode titled 'Sugar Daddy'?",
    "question_th": "ชื่อตอน '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_en": "Which nations have more than 1 gold medal and 4 silver medals?",
    "question_th": "ชาติใดมีมากกว่า 1 เหรียญทอง และ 4 เหรียญเงิน?",
    "context": "CREATE TABLE table_name_87 (nation VARCHAR, gold VARCHAR, silver VARCHAR)"
  },
  {
    "answer": "SELECT MAX(attendance) FROM table_name_77 WHERE week = 7",
    "question_en": "In Week 7, what is the highest attendance number?",
    "question_th": "ในสัปดาห์ที่ 7 จำนวนผู้เข้าร่วมสูงสุดคือเท่าใด",
    "context": "CREATE TABLE table_name_77 (attendance INTEGER, week VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_98 WHERE week = 13",
    "question_en": "In Week 13, who was the opponent?",
    "question_th": "ในสัปดาห์ที่ 13 ใครคือคู่ต่อสู้?",
    "context": "CREATE TABLE table_name_98 (opponent VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_27 WHERE week = 9",
    "question_en": "What date did Week 9 begin?",
    "question_th": "สัปดาห์ที่ 9 เริ่มวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_27 (date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT award FROM table_name_16 WHERE year = \"2012\"",
    "question_en": "Which award was given in 2012?",
    "question_th": "ได้รับรางวัลอะไรในปี 2555?",
    "context": "CREATE TABLE table_name_16 (award VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT award FROM table_name_92 WHERE role = \"elphaba\" AND year = \"2009\"",
    "question_en": "Which award was given for the role of Elphaba in 2009?",
    "question_th": "รางวัลใดที่มอบให้สำหรับบทบาทของ Elphaba ในปี 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_en": "What was the result for the role of Ellie Greenwich in 2005?",
    "question_th": "ผลลัพธ์สำหรับบทบาทของ Ellie Greenwich ในปี 2548 คืออะไร?",
    "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_en": "Which award was An Officer and a Gentleman nominated for?",
    "question_th": "รางวัล An Officer and a Gentleman ได้รับการเสนอชื่อเข้าชิงรางวัลใด",
    "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_en": "During what year was Wicked associated with the Green Room Awards?",
    "question_th": "Wicked เกี่ยวข้องกับรางวัล 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_en": "What manufacturer makes locomotive number CTN 46?",
    "question_th": "ผู้ผลิตรายใดทำให้หัวรถจักรหมายเลข 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_en": "What type is locomotive number CTN 46?",
    "question_th": "รถจักรหมายเลข 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_en": "What type is locomotive CTN 1364?",
    "question_th": "หัวรถจักร 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_en": "What cuts made has a wins less than 3 and 23 for the events?",
    "question_th": "การตัดเฉือนใดที่ชนะน้อยกว่า 3 และ 23 สำหรับกิจกรรมนี้",
    "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_en": "What is the lowest events that have 17 as the cuts made, with a top-25 less than 8?",
    "question_th": "อะไรคือเหตุการณ์ที่ต่ำที่สุดที่มี 17 รายการที่ถูกตัดออก โดยที่ 25 อันดับแรกน้อยกว่า 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_en": "What are the lowest cuts made that have events less than 4?",
    "question_th": "อะไรคือการปรับลดต่ำสุดที่มีเหตุการณ์น้อยกว่า 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_en": "What is the highest top-10 that has a u.s. open for the tournament, and a top-25 greater than 12?",
    "question_th": "อะไรคือ 10 อันดับแรกสูงสุดที่ให้เราเปิดสำหรับทัวร์นาเมนต์ และ 25 อันดับแรกที่มากกว่า 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_en": "How many points are there with more losses than 16, more goals than 44, and a smaller position than 13?",
    "question_th": "มีกี่คะแนนที่แพ้มากกว่า 16 ประตูมากกว่า 44 และอันดับน้อยกว่า 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_en": "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?",
    "question_th": "ผลรวมของแต้มที่เสียประตูน้อยกว่า 51 มากกว่าอันดับ 1 เสมอ 7 และแพ้มากกว่า 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–1, 3–0 ret.\"",
    "question_en": "Which has a Score of 6–1, 3–0 ret.?",
    "question_th": "อันไหนมีสกอร์ 6–1, 3–0 ret.?",
    "context": "CREATE TABLE table_name_45 (surface VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_79 WHERE date = \"23 january 2011\"",
    "question_en": "Which Surface is on 23 january 2011?",
    "question_th": "Surface รุ่นใดในวันที่ 23 มกราคม 2554",
    "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_en": "When has a Surface of hard, a Tournament of wrexham , great britain?",
    "question_th": "เมื่อใดที่ Surface of hard, a Tournament of wrexham, บริเตนใหญ่?",
    "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éphane robert\"",
    "question_en": "Which Surface has an Opponent in the final of stéphane robert?",
    "question_th": "Surface คนใดมีคู่ต่อสู้ในรอบสุดท้ายของ Stéphane Robert",
    "context": "CREATE TABLE table_name_96 (surface VARCHAR, opponent_in_the_final VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_68 WHERE score = \"6–4, 0–6, 6–2\"",
    "question_en": "What kind of Surface has a Score of 6–4, 0–6, 6–2?",
    "question_th": "Surface ประเภทใดมีคะแนน 6–4, 0–6, 6–2",
    "context": "CREATE TABLE table_name_68 (surface VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT call_sign FROM table_name_60 WHERE branding = \"cbc radio one\"",
    "question_en": "Which Call sign has a Branding of cbc radio one?",
    "question_th": "Call sign ตัวไหนมี Branding ของวิทยุ cbc บ้างคะ?",
    "context": "CREATE TABLE table_name_60 (call_sign VARCHAR, branding VARCHAR)"
  },
  {
    "answer": "SELECT frequency FROM table_name_67 WHERE format = \"country / news / sports\"",
    "question_en": "WHich Frequency has a Format of country / news / sports?",
    "question_th": "ความถี่ใดมีรูปแบบของประเทศ / ข่าว / กีฬา?",
    "context": "CREATE TABLE table_name_67 (frequency VARCHAR, format VARCHAR)"
  },
  {
    "answer": "SELECT format FROM table_name_98 WHERE frequency = \"100.5 fm\"",
    "question_en": "Which Format has a Frequency of 100.5 fm?",
    "question_th": "รูปแบบใดมีความถี่ 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_en": "Which Frequency has a Branding of country 600?",
    "question_th": "ความถี่ใดที่มีตราสินค้าของประเทศ 600?",
    "context": "CREATE TABLE table_name_26 (frequency VARCHAR, branding VARCHAR)"
  },
  {
    "answer": "SELECT format FROM table_name_30 WHERE frequency = \"99.3 fm\"",
    "question_en": "WHich format has a Frequency of 99.3 fm?",
    "question_th": "รูปแบบใดมีความถี่ 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_en": "What School Year has a Class AAAA of Dickinson?",
    "question_th": "ปีการศึกษาใดที่มีระดับ AAAA ของ 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_en": "If the Class A is Anton and Class AAA is Burnet, what is Class AA?",
    "question_th": "ถ้า Class A คือ Anton และ Class AAA คือ Burnet แล้ว 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_en": "Where Class AAA is Atlanta and Class AA is Weimar, what is Class AAAAA?",
    "question_th": "โดยที่ Class AAA คือ Atlanta และ Class AA คือ Weimar แล้ว 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_en": "What was the result of the game on week 11?",
    "question_th": "ผลการแข่งขันในสัปดาห์ที่ 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_en": "After week 2, how many people attended the game at Rich Stadium against the Miami Dolphins?",
    "question_th": "หลังจากสัปดาห์ที่ 2 มีกี่คนที่เข้าร่วมเกมที่ริชสเตเดียมกับไมอามี่ ดอลฟินส์",
    "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_en": "What is the attendance when the opponent is the San Francisco 49ers?",
    "question_th": "การเข้าร่วมเป็นอย่างไรบ้างเมื่อคู่ต่อสู้คือซานฟรานซิสโก 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_en": "What is the result when the week is greater than 6 and the Buffalo Bills are the opponent?",
    "question_th": "ผลจะเป็นอย่างไรเมื่อสัปดาห์มากกว่า 6 และบัฟฟาโล่บิลเป็นคู่ต่อสู้?",
    "context": "CREATE TABLE table_name_43 (result VARCHAR, week VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_7 WHERE attendance = \"54,814\"",
    "question_en": "What is the result when the attendance is 54,814?",
    "question_th": "เมื่อมีผู้เข้าร่วม 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_en": "What is the total number of weeks when the New York Jets are the opponent?",
    "question_th": "จำนวนสัปดาห์ทั้งหมดเมื่อ New York Jets เป็นคู่ต่อสู้คือเท่าไร?",
    "context": "CREATE TABLE table_name_35 (week VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_38 WHERE attendance = \"56,906\"",
    "question_en": "What is the result of the game when the attendance is 56,906?",
    "question_th": "ผลการแข่งขันเมื่อมีผู้ชม 56,906 คนเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_38 (result VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT index FROM table_name_54 WHERE song = \"会呼吸的痛\"",
    "question_en": "What is Song's 会呼吸的痛 Index?",
    "question_th": "ดัชนี 会呼吸的痛 ของซ่งคืออะไร",
    "context": "CREATE TABLE table_name_54 (index VARCHAR, song VARCHAR)"
  },
  {
    "answer": "SELECT song FROM table_name_58 WHERE index = \"f6\"",
    "question_en": "What Song's Index is F6?",
    "question_th": "F6 คือดัชนีเพลงอะไร",
    "context": "CREATE TABLE table_name_58 (song VARCHAR, index VARCHAR)"
  },
  {
    "answer": "SELECT Group AS song FROM table_name_60 WHERE name = \"shine 王幸儿\"",
    "question_en": "What Group Song of Shine 王幸儿?",
    "question_th": "เพลง Shine 王幸儿 วงไหนคะ?",
    "context": "CREATE TABLE table_name_60 (Group VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_78 WHERE song = \"我等的人会是谁\"",
    "question_en": "What is the Score of 我等的人会是谁?",
    "question_th": "คะแนนของ 我等的人会是谁 คืออะไร?",
    "context": "CREATE TABLE table_name_78 (score VARCHAR, song VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_1 WHERE index = \"f3\"",
    "question_en": "What is the Name of Index F3?",
    "question_th": "ชื่อของดัชนี F3 คืออะไร?",
    "context": "CREATE TABLE table_name_1 (name VARCHAR, index VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_89 WHERE february = 10",
    "question_en": "What is the record after the game on Feb 10?",
    "question_th": "สถิติหลังเกมวันที่ 10 ก.พ. เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_89 (record VARCHAR, february VARCHAR)"
  },
  {
    "answer": "SELECT MIN(february) FROM table_name_90 WHERE opponent = \"boston bruins\"",
    "question_en": "What is the earliest day that had a game against the Boston Bruins?",
    "question_th": "วันแรกสุดที่มีเกมกับบอสตัน บรูอินส์คือวันใด?",
    "context": "CREATE TABLE table_name_90 (february INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT SUM(solidat__) AS °c_ FROM table_name_15 WHERE purpose = \"display type, heavy duty jobs\" AND hardness___brinell__ < 33",
    "question_en": "What is the sum of Solidat (c) that's purpose is display type, heavy duty jobs, and a hardness (brinell) is smaller than 33?",
    "question_th": "ผลรวมของ Solidat (c) ที่มีวัตถุประสงค์คือประเภทจอแสดงผล งานหนัก และความแข็ง (บริเนล) น้อยกว่า 33 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_15 (solidat__ INTEGER, purpose VARCHAR, hardness___brinell__ VARCHAR)"
  },
  {
    "answer": "SELECT SUM(solidat__) AS °c_ FROM table_name_46 WHERE sn_sb___percentage_ = \"13/17\" AND liquidat__°c_ > 283",
    "question_en": "When the Sn/Sb (%) of 13/17, and a Liquidat (c) bigger than 283 what's the solidat (c)?",
    "question_th": "เมื่อ Sn/Sb (%) เท่ากับ 13/17 และ Liquidat (c) มากกว่า 283 ค่า Solidat (c) คือเท่าใด",
    "context": "CREATE TABLE table_name_46 (solidat__ INTEGER, sn_sb___percentage_ VARCHAR, liquidat__°c_ VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(liquidat__) AS °c_ FROM table_name_94 WHERE purpose = \"dual (machine & hand composition)\"",
    "question_en": "How many Liquidat (c) have a purpose of dual (machine & hand composition)?",
    "question_th": "Liquidat (c) มีจุดประสงค์แบบคู่ (ส่วนประกอบของเครื่องจักรและมือ) จำนวนเท่าใด?",
    "context": "CREATE TABLE table_name_94 (liquidat__ VARCHAR, purpose VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_84 WHERE week = 10",
    "question_en": "What was the record for the Chargers on Week 10?",
    "question_th": "บันทึกของ Chargers ในสัปดาห์ที่ 10 คืออะไร?",
    "context": "CREATE TABLE table_name_84 (record VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_16 WHERE week = 4",
    "question_en": "What was the result of the game on week 4?",
    "question_th": "ผลการแข่งขันในสัปดาห์ที่ 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_en": "How many weeks did a game happen on September 17, 2000?",
    "question_th": "เกมเกิดขึ้นกี่สัปดาห์ในวันที่ 17 กันยายน พ.ศ. 2543",
    "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_en": "What was the result of the game against San Francisco 49ers before week 16?",
    "question_th": "ผลของเกมกับซานฟรานซิสโก 49ERS ก่อนสัปดาห์ที่ 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_en": "Who were semi-finalists in the event with a runner-up of Lisa Raymond?",
    "question_th": "ใครเป็นผู้เข้ารอบรองชนะเลิศในงานที่มีรองชนะเลิศคือ 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_en": "Which song by David Essex spent 2 weeks on top of the charts?",
    "question_th": "เพลงใดของ David Essex ที่ติดชาร์ตสูงสุด 2 สัปดาห์",
    "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_en": "What is the Volume:Issue number of the George McCrae song that spent less than 2 weeks on top of the charts?",
    "question_th": "ระดับเสียงคืออะไร:หมายเลขปัญหาของเพลง George McCrae ที่ใช้เวลาน้อยกว่า 2 สัปดาห์บนชาร์ต",
    "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_en": "Which venues closed in the 1990s?",
    "question_th": "สถานที่ใดปิดให้บริการในปี 1990",
    "context": "CREATE TABLE table_name_76 (venue VARCHAR, closed VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_5 WHERE reason = \"replaced\"",
    "question_en": "Which venues were closed because they were replaced?",
    "question_th": "สถานที่ใดถูกปิดเนื่องจากถูกแทนที่",
    "context": "CREATE TABLE table_name_5 (location VARCHAR, reason VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_86 WHERE closed = \"1996\"",
    "question_en": "Which venue closed in 1996?",
    "question_th": "สถานที่ใดปิดในปี 1996?",
    "context": "CREATE TABLE table_name_86 (venue VARCHAR, closed VARCHAR)"
  },
  {
    "answer": "SELECT reason FROM table_name_59 WHERE closed = \"1990s\"",
    "question_en": "What were the reasons that venues closed in the 1990s?",
    "question_th": "อะไรคือสาเหตุที่สถานที่จัดงานปิดตัวลงในช่วงทศวรรษ 1990?",
    "context": "CREATE TABLE table_name_59 (reason VARCHAR, closed VARCHAR)"
  },
  {
    "answer": "SELECT reason FROM table_name_95 WHERE venue = \"belk gymnasium\"",
    "question_en": "Why did the Belk Gymnasium close?",
    "question_th": "เหตุใด Belk Gymnasium จึงปิด",
    "context": "CREATE TABLE table_name_95 (reason VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_24 WHERE home_team = \"townsville crocodiles\"",
    "question_en": "Can you tell me the Score that has the Home team of townsville crocodiles?",
    "question_th": "ช่วยบอกสกอร์ที่มีทีมเหย้า จระเข้ทาวน์สวิลล์ หน่อยได้ไหมครับ?",
    "context": "CREATE TABLE table_name_24 (score VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_98 WHERE away_team = \"south dragons\"",
    "question_en": "Can you tell me the Venue that has the Away team of south dragons?",
    "question_th": "ช่วยบอกสถานที่ที่มีทีมเยือนมังกรใต้หน่อยได้ไหม?",
    "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_en": "Can you tell me the lowest Crowd that has the Away team of melbourne tigers?",
    "question_th": "ช่วยบอกหน่อยได้ไหมว่า Crowd ต่ำสุดที่มีทีมเยือนอย่าง 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_en": "Can you tell me the Away team that has the Home team of south dragons, and the Score of 94-81?",
    "question_th": "ช่วยบอกหน่อยได้ไหมว่าทีมเยือนที่มีทีมเหย้าของมังกรใต้และสกอร์ 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_en": "Which position has a pick # of 238 and a round above 3?",
    "question_th": "ตำแหน่งใดมีตัวเลือก # จาก 238 และรอบที่สูงกว่า 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_en": "Which player went to Vanderbilt?",
    "question_th": "นักเตะคนไหนไปแวนเดอร์บิลต์?",
    "context": "CREATE TABLE table_name_20 (player VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(grid) FROM table_name_72 WHERE time_retired = \"+4 laps\"",
    "question_en": "How many grids had a Time/Retired of +4 laps?",
    "question_th": "มีกี่กริดที่มีเวลา/เกษียณเป็น +4 รอบ",
    "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_en": "How many laps had a constructor of toyota and a Time/Retired of +13.409?",
    "question_th": "มีกี่รอบที่มีคอนสตรัคเตอร์ของ toyota และเวลา/เกษียณที่ +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_en": "What was the constructor when the laps were larger than 54, and the time/retired was +1 lap on a grid of 20?",
    "question_th": "ตัวสร้างคืออะไรเมื่อรอบมีขนาดใหญ่กว่า 54 และเวลา/เกษียณคือ +1 รอบบนตาราง 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_en": "How many grids had a constructor of renault and less than 4 laps?",
    "question_th": "มีกี่กริดที่มีคอนสตรัคเตอร์ของเรโนลต์และน้อยกว่า 4 รอบ?",
    "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_en": "Which census ranking is 57.06 km big?",
    "question_th": "การจัดอันดับสำมะโนประชากรใดที่มีระยะทาง 57.06 กม. ใหญ่",
    "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_en": "Which status is 75.35 km2 and is named sussex?",
    "question_th": "สถานะใดคือ 75.35 km2 และชื่อซัสเซ็กซ์",
    "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_en": "What was the distance for the winner or 2nd Waterline?",
    "question_th": "ระยะทางสำหรับผู้ชนะหรือ Waterline ที่ 2 คือเท่าใด?",
    "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_en": "What is the result for the distance of 10f, and a winner or 2nd of Lampra?",
    "question_th": "ผลลัพธ์สำหรับระยะ 10f และผู้ชนะหรือที่ 2 ของ 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_en": "What is 1987, when 1986 is \"1R\"?",
    "question_th": "ปี 1987 คืออะไร เมื่อปี 1986 คือ \"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_en": "What is 1986, when 1978 is \"A\", when 1979 is \"A\", and when 1980 is \"1R\"?",
    "question_th": "1986 คืออะไร เมื่อปี 1978 คือ \"A\" เมื่อปี 1979 คือ \"A\" และเมื่อใดคือ \"1R\"",
    "context": "CREATE TABLE table_name_99 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1984 FROM table_name_94 WHERE 1979 = \"1r\"",
    "question_en": "What is 1984, when 1979 is \"1R\"?",
    "question_th": "ปี 1984 คืออะไร เมื่อปี 1979 คือ \"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_en": "What is 1982, when 1978 is \"A\", when 1985 is \"4R\", and when 1991 is \"1R\"?",
    "question_th": "1982 คืออะไร เมื่อปี 1978 คือ \"A\" เมื่อปี 1985 คือ \"4R\" และเมื่อใดคือ \"1R\" เมื่อใด",
    "context": "CREATE TABLE table_name_64 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1989 FROM table_name_37 WHERE 1982 = \"sf\"",
    "question_en": "What is 1989, when 1982 is \"SF\"?",
    "question_th": "ปี 1989 คืออะไร เมื่อปี 1982 เรียกว่า \"SF\"",
    "context": "CREATE TABLE table_name_37 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1992 FROM table_name_29 WHERE 1990 = \"grand slams\"",
    "question_en": "What is 1992, when 1990 is \"Grand Slams\"?",
    "question_th": "1992 คืออะไร เมื่อปี 1990 คือ \"แกรนด์สแลม\"?",
    "context": "CREATE TABLE table_name_29 (Id VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_48 WHERE home_team = \"shrewsbury town\"",
    "question_en": "What is the attendance date of the game home team Shrewsbury Town played?",
    "question_th": "ชรูว์สบิวรี่ ทาวน์ เจ้าบ้านจะลงเล่นวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_48 (attendance VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_66 WHERE home_team = \"bolton wanderers\"",
    "question_en": "What is the final score of the game home team Bolton Wanderers played?",
    "question_th": "สกอร์สุดท้ายของเกมเจ้าบ้าน โบลตัน วันเดอเรอร์ส ลงเล่นคือเท่าไหร่?",
    "context": "CREATE TABLE table_name_66 (score VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_39 WHERE opponent = \"freiburg\"",
    "question_en": "Which round has an opponent of Freiburg?",
    "question_th": "รอบไหนมีคู่ต่อสู้ไฟร์บวร์ก?",
    "context": "CREATE TABLE table_name_39 (round VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_44 WHERE opponent = \"slovan liberec\"",
    "question_en": "Who was the home when the opponent was slovan liberec?",
    "question_th": "ใครคือเจ้าบ้านเมื่อคู่ต่อสู้คือสโลวาน ลิเบเรช?",
    "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_en": "Which Game has a January larger than 18, and a Decision of valiquette?",
    "question_th": "เกมใดที่มีเดือนมกราคมมากกว่า 18 และการตัดสินใจของความถูกต้อง?",
    "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_en": "Who has a Game smaller than 43, and a Record of 23-14-3?",
    "question_th": "ใครมีเกมที่เล็กกว่า 43 และมีสถิติ 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_en": "What is the time for qual 2 that has the best time of 59.266?",
    "question_th": "เวลาใดสำหรับรอบ 2 ที่มีเวลาดีที่สุดที่ 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_en": "Who is the driver for the Forsythe Racing team that has the best time of 1:00.099?",
    "question_th": "ใครคือนักแข่งของทีม Forsythe Racing ที่ทำเวลาได้ดีที่สุดที่ 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_en": "Justin Wilson has what has his best time?",
    "question_th": "Justin Wilson มีช่วงเวลาไหนดีที่สุด?",
    "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_en": "Team Rusport has the best of 59.654 and what qual 1?",
    "question_th": "ทีม Rusport มีคะแนนดีที่สุดที่ 59.654 และมีคุณสมบัติอะไรคือ 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ébastien bourdais\"",
    "question_en": "Sébastien Bourdais of the team Newman/Haas Racing has what qual 1?",
    "question_th": "Sébastien Bourdais จากทีม Newman/Haas Racing มีคุณสมบัติอะไร 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_en": "What is Alex Tagliani's qual 1?",
    "question_th": "รอบคัดเลือก 1 ของ Alex Tagliani คืออะไร?",
    "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_en": "Which Bask has Soft of 18, and a Total larger than 35?",
    "question_th": "Bask ตัวไหนมี Soft เท่ากับ 18 และผลรวมมากกว่า 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_en": "Which Volleyball has a Golf of 2, and an Indoor track of 3?",
    "question_th": "วอลเลย์บอลใดมีกอล์ฟ 2 อันและสนามในร่ม 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_en": "Which Bask has an Indoor track of 0, and a Swimming of 5?",
    "question_th": "Bask ใดมีลู่วิ่งในร่มเป็น 0 และว่ายน้ำเป็น 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_en": "Which Swimming has a Total larger than 35, and a Volleyball of 1?",
    "question_th": "ว่ายน้ำใดมีคะแนนรวมมากกว่า 35 และวอลเลย์บอลเท่ากับ 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_en": "Date for scotiabank place with less than 20 points, game larger than 16, and an opponent of montreal canadiens?",
    "question_th": "นัดชิงสโกเทียแบงก์ที่มีคะแนนน้อยกว่า 20 แต้ม เกมที่มากกว่า 16 แต้ม และคู่ต่อสู้ของมอนทรีออลคานาเดียนใช่ไหม",
    "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_en": "Total games for smaller than 15 points, date of november 15, and larger that 13,722 in attendance?",
    "question_th": "เกมทั้งหมดที่มีคะแนนน้อยกว่า 15 แต้ม วันที่ 15 พฤศจิกายน และมากกว่านั้นมีผู้เข้าร่วม 13,722 คน?",
    "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_en": "What was the results on September 24, 1995?",
    "question_th": "ผลลัพธ์เมื่อวันที่ 24 กันยายน 2538 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_11 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_20 WHERE opponent = \"philadelphia eagles\"",
    "question_en": "What was the results against the Philadelphia Eagles?",
    "question_th": "ผลการแข่งขันกับฟิลาเดลเฟีย อีเกิลส์เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_20 (result VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_82 WHERE attendance = \"68,463\"",
    "question_en": "What is the date with 68,463 in attendance?",
    "question_th": "มีผู้เข้าร่วม 68,463 คน วันที่เท่าไร?",
    "context": "CREATE TABLE table_name_82 (date VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_25 WHERE week = 15",
    "question_en": "What was the attendance for week 15?",
    "question_th": "การเข้าร่วมในสัปดาห์ที่ 15 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_25 (attendance VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_47 WHERE transfer_window = \"winter\"",
    "question_en": "What is the name when winter is the transfer window?",
    "question_th": "เมื่อหน้าหนาวเป็นหน้าต่างโอนชื่ออะไร?",
    "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_en": "What is the transfer fee when summer is the transfer window, the type is transfer and the country is Hun?",
    "question_th": "เมื่อถึงช่วงซัมเมอร์คือช่วงโอน,แบบโอนและประเทศเป็นฮุนคือค่าโอนเท่าไหร่?",
    "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_en": "What is the type when Rangers are the moving from?",
    "question_th": "เรนเจอร์จะย้ายจากประเภทไหน?",
    "context": "CREATE TABLE table_name_40 (type VARCHAR, moving_from VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_21 WHERE name = \"mccormack\"",
    "question_en": "What is the type when McCormack is the name?",
    "question_th": "McCormack เป็นชื่อประเภทใด?",
    "context": "CREATE TABLE table_name_21 (type VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_49 WHERE transfer_fee = \"£120,000\"",
    "question_en": "What is the type when £120,000 is the transfer fee?",
    "question_th": "ค่าธรรมเนียมการโอน 120,000 ปอนด์เป็นประเภทใด?",
    "context": "CREATE TABLE table_name_49 (type VARCHAR, transfer_fee VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_67 WHERE away_team = \"aston villa\"",
    "question_en": "What date is aston villa away?",
    "question_th": "แอสตัน วิลล่า เยือนวันไหน?",
    "context": "CREATE TABLE table_name_67 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_44 WHERE tie_no = \"5\"",
    "question_en": "what date did tie number 5 occur?",
    "question_th": "เน็คไทหมายเลข 5 เกิดขึ้นวันไหน?",
    "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_en": "Which tie number has Bolton Wanderers as away?",
    "question_th": "โบลตัน วันเดอเรอร์ส เสมอเลขไหนในเกมเยือน?",
    "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_en": "What round was the circuit portland international raceway?",
    "question_th": "สนามแข่งรถเซอร์กิตพอร์ตแลนด์นานาชาติเป็นรอบใด",
    "context": "CREATE TABLE table_name_4 (round VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_28 WHERE circuit = \"portland international raceway\"",
    "question_en": "When was the circuit portland international raceway?",
    "question_th": "สนามแข่งรถนานาชาติเซอร์กิตพอร์ตแลนด์จัดขึ้นเมื่อไหร่?",
    "context": "CREATE TABLE table_name_28 (date VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_81 WHERE city_location = \"toronto, ontario\"",
    "question_en": "Which round had a city/location of Toronto, Ontario?",
    "question_th": "รอบใดมีเมือง/ที่ตั้งของโตรอนโต ออนแทรีโอ",
    "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_en": "For which location was the round smaller than 11 and the circuit streets of denver?",
    "question_th": "สถานที่ใดเป็นวงกลมที่เล็กกว่า 11 และถนนวงจรของเดนเวอร์",
    "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_en": "What day was the location Cleveland, Ohio in Round 6?",
    "question_th": "สถานที่คลีฟแลนด์ โอไฮโอในรอบที่ 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_en": "What is the sum of attendance for the games played at Los Angeles Rams?",
    "question_th": "จำนวนผู้เข้าร่วมเกมที่เล่นที่ 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_en": "In which week was the attendance 47,218?",
    "question_th": "ผู้เข้าร่วม 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_en": "How many Decembers have calgary flames as the opponent?",
    "question_th": "กี่เดือนธันวาคมมีเปลวไฟคัลเป็นคู่ต่อสู้?",
    "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_en": "What game has valiquette as the decision, with @ los angeles kings as the opponent?",
    "question_th": "เกมอะไรที่มี valiquette เป็นตัวตัดสิน โดยมี @los angeles kings เป็นคู่ต่อสู้?",
    "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_en": "What is the most elevated TF1 # that has an Official # larger than 47, and an Air date (France) of 13 july 2010?",
    "question_th": "TF1 # ที่สูงที่สุดคืออะไรซึ่งมี Official # มากกว่า 47 และวันที่ออกอากาศ (ฝรั่งเศส) วันที่ 13 กรกฎาคม 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_en": "What venue had SF?",
    "question_th": "SF มีสถานที่ไหนบ้าง?",
    "context": "CREATE TABLE table_name_4 (venue VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_45 WHERE attendance > 50 OFFSET 715",
    "question_en": "What venue has more than 50,715 attending?",
    "question_th": "สถานที่ใดมีผู้เข้าร่วมมากกว่า 50,715 คน?",
    "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_en": "What round was at the A venue with a attendance more than 14,314?",
    "question_th": "สนาม A มีผู้เข้าชมมากกว่า 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_en": "What's the callsign of Mom's Radio 101.9 Zamboanga?",
    "question_th": "สัญญาณเรียกของ 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_en": "What's the power when the frequency is 101.5mhz?",
    "question_th": "พลังงานเมื่อความถี่เป็น 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_en": "What's the location of Mom's Radio 95.9 Naga having a power of 10kw?",
    "question_th": "Mom's Radio 95.9 Naga กำลัง 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_en": "What's the callsign in Tacloban?",
    "question_th": "สัญญาณเรียกใน 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_en": "What's the power of Mom's Radio 101.5 Tacloban?",
    "question_th": "พลังของ 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_en": "Which 1947 Nos has a BR Nos of 48730-9?",
    "question_th": "หมายเลขใดในปี 1947 มี BR Nos เป็น 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_en": "What is the number of losses for the game with a win % of 71.43%, and No Result is more than 0?",
    "question_th": "จำนวนการสูญเสียสำหรับเกมที่มีเปอร์เซ็นต์การชนะ 71.43% และไม่มีผลลัพธ์มากกว่า 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_en": "What is the total number of wins in 2010, when there were more than 14 matches?",
    "question_th": "จำนวนชัยชนะทั้งหมดในปี 2010 เมื่อมีมากกว่า 14 นัดคือเท่าไร?",
    "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_en": "What is the number of wins when there are 14 matches, and the No Result was less than 0?",
    "question_th": "จำนวนการชนะเมื่อมีการแข่งขัน 14 นัดและไม่มีผลลัพธ์น้อยกว่า 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_en": "What is the number of losses when there were 14 matches, and the No Result was larger than 0?",
    "question_th": "จำนวนการแพ้เมื่อมีการแข่งขัน 14 นัด และไม่มีผลลัพธ์มากกว่า 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_en": "What is the number of matches when the wins are less than 8, and losses of 7, in 2011?",
    "question_th": "จำนวนแมตช์ที่ชนะน้อยกว่า 8 และแพ้ 7 ในปี 2554 คือเท่าใด",
    "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_en": "What year was the Win percentage 50.00%, with more than 14 matches, and wins more than 8?",
    "question_th": "ปีไหนเปอร์เซ็นต์ชนะ 50.00% เกิน 14 นัด ชนะเกิน 8 นัด?",
    "context": "CREATE TABLE table_name_6 (year VARCHAR, wins VARCHAR, win__percentage VARCHAR, matches VARCHAR)"
  },
  {
    "answer": "SELECT area__km²_ FROM table_name_95 WHERE pop__km² < 0.97 AND _english_ = \"east\"",
    "question_en": "What area has less than 0.97 mil in population and is on the east?",
    "question_th": "พื้นที่ใดมีประชากรน้อยกว่า 0.97 ล้านคน และอยู่ทางทิศตะวันออก",
    "context": "CREATE TABLE table_name_95 (area__km²_ VARCHAR, pop__km² VARCHAR, _english_ VARCHAR)"
  },
  {
    "answer": "SELECT area__km²_ FROM table_name_8 WHERE pop__km² = 0.58",
    "question_en": "What is the area for a population of 0.58 km?",
    "question_th": "ประชากร 0.58 กม. มีพื้นที่เท่าใด",
    "context": "CREATE TABLE table_name_8 (area__km²_ VARCHAR, pop__km² VARCHAR)"
  },
  {
    "answer": "SELECT method FROM table_name_30 WHERE result = \"loss\" AND date = \"january 19, 2008\"",
    "question_en": "what is the method when the result is loss on january 19, 2008?",
    "question_th": "ผลขาดทุนวันที่ 19 มกราคม 2551 มีวิธีใดบ้าง?",
    "context": "CREATE TABLE table_name_30 (method VARCHAR, result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_94 WHERE opponent = \"lyoto machida\"",
    "question_en": "when is the opponent lyoto machida?",
    "question_th": "ฝ่ายตรงข้ามคือเมื่อไหร่ เลียวโตะ มาชิดะ?",
    "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_en": "who is the opponent when the method is tko (punches) at 4:26 of round 1?",
    "question_th": "คู่ต่อสู้เมื่อเวลาคือ tko (ต่อย) เวลา 4:26 ของยกที่ 1 คือใคร?",
    "context": "CREATE TABLE table_name_82 (opponent VARCHAR, method VARCHAR)"
  },
  {
    "answer": "SELECT tuf_competitor FROM table_name_37 WHERE method = \"decision (unanimous)\"",
    "question_en": "who is the tuf competitor when the method id decision (unanimous)?",
    "question_th": "ใครคือคู่แข่งของ tuf เมื่อมีการตัดสินใจรหัสวิธี (เป็นเอกฉันท์)?",
    "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_en": "who is the opponent when the method is submission (rear naked choke) at 4:02 of round 2?",
    "question_th": "คู่ต่อสู้เมื่อวิธีซับมิชชัน (โช้คหลัง) เวลา 4:02 น. ของยกที่ 2 คือใคร?",
    "context": "CREATE TABLE table_name_83 (opponent VARCHAR, method VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_26 WHERE home_team = \"melbourne tigers\"",
    "question_en": "What is the venue where the melbourne tigers play their home games?",
    "question_th": "เสือเมลเบิร์นลงเล่นเกมเหย้าที่สนามไหน?",
    "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_en": "What team has theoir home games in the venue of gold coast convention centre?",
    "question_th": "ทีมใดมีเกมในบ้านที่ศูนย์การประชุมโกลด์โคสต์?",
    "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_en": "What is the box score type for the game that has a score of 103-101?",
    "question_th": "Box Score ประเภทใดของเกมที่มีคะแนน 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_en": "What was the box score for the game where the away team was the sydney spirit?",
    "question_th": "บ็อกซ์สกอร์ในเกมที่ทีมเยือนเป็นสปิริตซิดนีย์เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_40 (Box VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT res FROM table_name_65 WHERE record = \"15-7\"",
    "question_en": "What was the resolution of the fight when tim hague had a record of 15-7?",
    "question_th": "ความละเอียดของไฟต์เมื่อ ทิม เฮก มีสถิติ 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_en": "What event did Tim hague have a fight that had a time of 5:00 and a record of 10-4?",
    "question_th": "ทิม เฮก มีเหตุการณ์อะไรชกด้วยเวลา 5.00 น. และสถิติ 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_en": "What method of resolution was the fight that took place at hardcore championship fighting: destiny?",
    "question_th": "การต่อสู้ที่เกิดขึ้นในการแข่งขันชิงแชมป์ระดับฮาร์ดคอร์: โชคชะตามีวิธีการแก้ปัญหาแบบใด?",
    "context": "CREATE TABLE table_name_41 (method VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_54 WHERE record = \"3-0\"",
    "question_en": "What event did tim Hague have a record of 3-0?",
    "question_th": "เหตุการณ์อะไร ทิม เฮก มีสถิติ 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_en": "What was the date of the poll from Survey USA that showed a lead margin smaller than 5.5?",
    "question_th": "วันที่สำรวจความคิดเห็นจาก Survey USA ที่แสดงให้เห็นว่า Lead Margin น้อยกว่า 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_en": "Which organization administered the poll that showed a lead margin of 5.5?",
    "question_th": "องค์กรใดที่จัดการการสำรวจความคิดเห็นซึ่งมีอัตรากำไรขั้นต้นอยู่ที่ 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_en": "What is the sum of Round, when Position is Forward, and when School/Club Team is Western Kentucky?",
    "question_th": "ผลรวมของรอบเมื่อตำแหน่งเป็นกองหน้า และเมื่อทีมโรงเรียน/สโมสรเป็นรัฐเคนตักกี้ตะวันตกเป็นเท่าใด",
    "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_en": "What is Position, when Pick is 7?",
    "question_th": "ตำแหน่งคืออะไร เมื่อเลือกเป็น 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_en": "What is Pick, when Round is greater than 1, and when School/Club Team is South Carolina?",
    "question_th": "Pick คืออะไร เมื่อรอบมากกว่า 1 และเมื่อทีมโรงเรียน/สโมสรคือ 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–7, 3–6, 6–3, 2–6\"",
    "question_en": "What is the Date of the game with an Outcome of runner-up and Score of 5–7, 3–6, 6–3, 2–6?",
    "question_th": "วันที่ของเกมซึ่งผลการแข่งขันเป็นรองชนะเลิศและสกอร์ 5–7, 3–6, 6–3, 2–6 คืออะไร?",
    "context": "CREATE TABLE table_name_83 (date VARCHAR, outcome VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_36 WHERE score = \"4–6, 4–6\"",
    "question_en": "What is the Date of the game with a Score of 4–6, 4–6?",
    "question_th": "วันที่ของเกมที่มีคะแนน 4–6, 4–6 คืออะไร?",
    "context": "CREATE TABLE table_name_36 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_5 WHERE opponent = \"christo van rensburg\"",
    "question_en": "What is the Date of the game against Christo Van Rensburg?",
    "question_th": "เกมกับคริสโต ฟาน เรนส์เบิร์ก วันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_5 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_36 WHERE tie_no = \"3\"",
    "question_en": "Who was the home team for the game that has a Tie value of 3?",
    "question_th": "ใครคือเจ้าบ้านในเกมที่เสมอกันที่ 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_en": "How many in total were in attendance at games where Chelsea was the away team?",
    "question_th": "มีกี่คนที่เข้าร่วมในเกมที่เชลซีเป็นทีมเยือน?",
    "context": "CREATE TABLE table_name_23 (attendance INTEGER, away_team VARCHAR)"
  },
  {
    "answer": "SELECT population__2004_est_ FROM table_name_87 WHERE hanzi = \"昌黎县\"",
    "question_en": "What is the 2004 population for 昌黎县?",
    "question_th": "ประชากร 昌黎县 ในปี 2004 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_87 (population__2004_est_ VARCHAR, hanzi VARCHAR)"
  },
  {
    "answer": "SELECT population__2004_est_ FROM table_name_46 WHERE hanzi = \"山海关区\"",
    "question_en": "What is the 2004 population for 山海关区?",
    "question_th": "ประชากร yamakai关区 ในปี 2004 เป็นเท่าใด",
    "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_en": "Which Hanzi has a suburban population in 2004?",
    "question_th": "Hanzi ใดที่มีประชากรชานเมืองในปี 2004",
    "context": "CREATE TABLE table_name_95 (hanzi VARCHAR, population__2004_est_ VARCHAR)"
  },
  {
    "answer": "SELECT density___km²_ FROM table_name_34 WHERE hanzi = \"昌黎县\"",
    "question_en": "What is the density of 昌黎县?",
    "question_th": "ความหนาแน่นของ 昌黎县 เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_34 (density___km²_ VARCHAR, hanzi VARCHAR)"
  },
  {
    "answer": "SELECT hanyu_pinyin FROM table_name_68 WHERE name = \"rural\"",
    "question_en": "Which Hanyu Pinyin is labeled rural?",
    "question_th": "อักษรฮันยูพินอินใดที่ติดป้ายว่าชนบท",
    "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_en": "What is the Pressure in hPa (mbar), when Vacuum Range is \"medium vacuum\"?",
    "question_th": "ความดันในหน่วย hPa (mbar) คือเท่าใด เมื่อช่วงสุญญากาศเป็น \"สุญญากาศปานกลาง\"",
    "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_en": "What is Mean Free Path, when Vacuum Range is \"medium vacuum\"?",
    "question_th": "Mean Free Path คืออะไร เมื่อช่วงสุญญากาศคือ \"สุญญากาศปานกลาง\"",
    "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_en": "What is Mean Free Path, when Vacuum Range is \"medium vacuum\"?",
    "question_th": "Mean Free Path คืออะไร เมื่อช่วงสุญญากาศคือ \"สุญญากาศปานกลาง\"",
    "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_en": "what is the outcome when the date is 10 october 1994?",
    "question_th": "วันที่ 10 ตุลาคม 2537 ผลเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_40 (outcome VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_10 WHERE date = \"22 february 1993\"",
    "question_en": "what is the score on 22 february 1993?",
    "question_th": "คะแนนเมื่อวันที่ 22 กุมภาพันธ์ 2536 เป็นเท่าไหร่?",
    "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_en": "what is the outcome when the surface is grass on 23 june 1997?",
    "question_th": "เมื่อพื้นผิวเป็นหญ้าในวันที่ 23 มิถุนายน 2540 ผลจะเป็นอย่างไร?",
    "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_en": "what is the score when the surface is carpet (i) outcome is winner and the championship is rotterdam, netherlands?",
    "question_th": "คะแนนเมื่อพื้นผิวเป็นพรม (i) ผลลัพธ์เป็นผู้ชนะและแชมป์คือร็อตเตอร์ดัม เนเธอร์แลนด์",
    "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_en": "what is the title when the rank is less than 17 and the worldwide gross is $299,288,605?",
    "question_th": "ชื่ออะไรเมื่อมีอันดับน้อยกว่า 17 และรายได้รวมทั่วโลกอยู่ที่ 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_en": "what is the highest rank for director john woo?",
    "question_th": "ผู้กำกับ จอห์น วู อยู่อันดับสูงสุดเท่าไหร่?",
    "context": "CREATE TABLE table_name_47 (rank INTEGER, director VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_15 WHERE director = \"p.j. hogan\"",
    "question_en": "what is the title for director p.j. hogan?",
    "question_th": "ผู้กำกับพีเจ โฮแกนมีชื่อว่าอะไร",
    "context": "CREATE TABLE table_name_15 (title VARCHAR, director VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_69 WHERE location = \"the pyramid\"",
    "question_en": "What date was the pyramid location?",
    "question_th": "สถานที่ปิรามิดคือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_69 (date VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_67 WHERE opponent = \"portland trail blazers\"",
    "question_en": "What date was the opponent the Portland Trail Blazers?",
    "question_th": "คู่ต่อสู้ของพอร์ตแลนด์ เทรลเบลเซอร์ส คือวันไหน?",
    "context": "CREATE TABLE table_name_67 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_26 WHERE opponent = \"cleveland cavaliers\"",
    "question_en": "What is the record for the opponent the Cleveland Cavaliers?",
    "question_th": "สถิติของคู่ต่อสู้อย่าง 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_en": "What was the second qualification time for Dale Coyne Racing with a best of 1:03.757?",
    "question_th": "เวลารอบคัดเลือกครั้งที่สองของ Dale Coyne Racing ด้วยเวลาที่ดีที่สุดคือ 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_en": "What was the second qualification time with a first qualification time of 1:02.813?",
    "question_th": "เวลารอบคัดเลือกครั้งที่สองโดยมีเวลารอบคัดเลือกครั้งแรกคือ 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_en": "Which team has a second qualification time of 1:01.936?",
    "question_th": "ทีมใดมีเวลารอบคัดเลือกครั้งที่สองที่ 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_en": "Who had a best time of 1:00.870?",
    "question_th": "ใครทำเวลาได้ดีที่สุดที่ 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_en": "Who had a second qualification time of 1:01.777?",
    "question_th": "ใครมีเวลารอบคัดเลือกครั้งที่สองที่ 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_en": "What type of 3D game was released between 2008-2011?",
    "question_th": "เกม 3D ประเภทใดที่วางจำหน่ายระหว่างปี 2551-2554",
    "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_en": "When did Riot Games release their 3D MOBA game?",
    "question_th": "Riot Games เปิดตัวเกม 3D MOBA เมื่อใด",
    "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_en": "When did Masthead Studios release their game?",
    "question_th": "Masthead Studios เปิดตัวเกมเมื่อใด",
    "context": "CREATE TABLE table_name_98 (release_date VARCHAR, developer_s_ VARCHAR)"
  },
  {
    "answer": "SELECT required_os FROM table_name_91 WHERE type = \"2d\"",
    "question_en": "What operating system was needed for 2D games?",
    "question_th": "ระบบปฏิบัติการใดที่จำเป็นสำหรับเกม 2D?",
    "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_en": "What type of 3D game did Valve Corporation release?",
    "question_th": "Valve Corporation เปิดตัวเกม 3D ประเภทใด",
    "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_en": "What was the minimum operating system required by Stunlock Studios' game?",
    "question_th": "ระบบปฏิบัติการขั้นต่ำที่จำเป็นสำหรับเกมของ Stunlock Studios คืออะไร?",
    "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_en": "What was the total rounds Travis Hamonic played?",
    "question_th": "Travis Hamonic เล่นไปทั้งหมดกี่รอบ?",
    "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_en": "What is the name of the ship with pit props as Cargo sunk by u-48 *?",
    "question_th": "เรือพร้อมอุปกรณ์ประกอบฉากที่เป็นสินค้าจมโดย 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_en": "What is the Date of attack of the ship with iron ore sunk by u-101 *?",
    "question_th": "วันที่โจมตีเรือที่มีแร่เหล็กจมโดย 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_en": "What is the fewest points for positions with under 12 losses, goals against under 50, goal difference over 11, and under 30 played?",
    "question_th": "อะไรคือแต้มที่น้อยที่สุดสำหรับตำแหน่งที่แพ้น้อยกว่า 12 นัด ประตูต่ำกว่า 50 ประตู ผลต่างประตูมากกว่า 11 ประตู และต่ำกว่า 30 ประตูที่ลงเล่น?",
    "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_en": "What is the most wins for a position with more than 30 played and a goal difference of 11?",
    "question_th": "อะไรคือชัยชนะมากที่สุดสำหรับตำแหน่งที่มีการเล่นมากกว่า 30 ครั้งและมีผลต่างประตูต่างกัน 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_en": "What is the total number of played for the goals against over 44 and a goal difference of 11?",
    "question_th": "จำนวนประตูที่เล่นทั้งหมดโดยเทียบกับ 44 ประตูและผลต่างประตู 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_en": "What is Time, when Round is less than 2, and when Opponent is \"Valentijn Overeem\"?",
    "question_th": "เวลาคืออะไร เมื่อรอบน้อยกว่า 2 และเมื่อฝ่ายตรงข้ามคือ \"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_en": "What is Location, when Round is \"1\", and when Opponent is \"Joe Slick\"?",
    "question_th": "ตำแหน่งคืออะไร เมื่อรอบคือ \"1\" และเมื่อฝ่ายตรงข้ามคือ \"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_en": "What is Event, when Opponent is \"Joe Pardo\"?",
    "question_th": "เหตุการณ์คืออะไร เมื่อฝ่ายตรงข้ามคือ \"โจ ปาร์โด\"?",
    "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_en": "What is Event, when Round is \"1\", when Location is \"New Town, North Dakota , United States\" and when Time is \"4:12\"?",
    "question_th": "เหตุการณ์คืออะไร เมื่อรอบเป็น \"1\" เมื่อสถานที่คือ \"นิวทาวน์ นอร์ทดาโคตา สหรัฐอเมริกา\" และเมื่อเวลาเป็น \"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_en": "On what Date was the Opponent the Tennessee Titans?",
    "question_th": "ฝ่ายตรงข้ามของเทนเนสซีไททันส์คือวันไหน?",
    "context": "CREATE TABLE table_name_47 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_25 WHERE attendance = \"64,104\"",
    "question_en": "What is the Result of the game with an Attendance of 64,104?",
    "question_th": "ผลลัพธ์ของเกมที่มีผู้เข้าร่วม 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_en": "What is the Week number with a Result of W 30-28?",
    "question_th": "หมายเลขสัปดาห์ที่มีผลลัพธ์ 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_en": "What is the date of the game against Philadelphia Eagles?",
    "question_th": "เกมกับ ฟิลาเดลเฟีย อีเกิลส์ วันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_61 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_36 WHERE date = \"september 21, 2003\"",
    "question_en": "What is the Attendance of the game September 21, 2003?",
    "question_th": "ผู้เข้าร่วมเกมวันที่ 21 กันยายน 2546 คืออะไร?",
    "context": "CREATE TABLE table_name_36 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_2 WHERE pick < 20",
    "question_en": "What position has a pick less than 20?",
    "question_th": "ตำแหน่งใดมีการเลือกน้อยกว่า 20?",
    "context": "CREATE TABLE table_name_2 (position VARCHAR, pick INTEGER)"
  },
  {
    "answer": "SELECT MIN(overall) FROM table_name_44 WHERE college = \"baylor\"",
    "question_en": "What is the number that is the lowest overall for the College of Baylor?",
    "question_th": "ตัวเลขโดยรวมต่ำสุดของ 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_en": "What is the number that is the lowest overall for Round 6?",
    "question_th": "ตัวเลขรวมต่ำสุดในรอบ 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_en": "Where was the result a win against Mike Large?",
    "question_th": "ผลการชนะไมค์ ลาร์จอยู่ที่ใด?",
    "context": "CREATE TABLE table_name_44 (location VARCHAR, res VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_39 WHERE opponent = \"joe lauzon\"",
    "question_en": "In what round did opponent Joe Lauzon play?",
    "question_th": "คู่ต่อสู้ โจ เลาซอน เล่นในรอบใด?",
    "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_en": "Who was the opponent in a week over 8 on December 4, 1960?",
    "question_th": "ใครคือคู่ต่อสู้ในหนึ่งสัปดาห์กว่า 8 วันที่ 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_en": "Who was the opponent in a week less than 8 on October 9, 1960?",
    "question_th": "คู่ต่อสู้ในหนึ่งสัปดาห์น้อยกว่า 8 เมื่อวันที่ 9 ตุลาคม 2503 คือใคร?",
    "context": "CREATE TABLE table_name_24 (opponent VARCHAR, week VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_70 WHERE attendance = \"58,516\"",
    "question_en": "What was the result when 58,516 were in attendance?",
    "question_th": "ผลเป็นอย่างไรเมื่อมีผู้เข้าร่วม 58,516 คน?",
    "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_en": "Who was the opponent in a week below 3 on September 23, 1960?",
    "question_th": "คู่ต่อสู้ในหนึ่งสัปดาห์ต่ำกว่า 3 เมื่อวันที่ 23 กันยายน 2503 คือใคร?",
    "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_en": "What is the biggest number of females where the males are at 28.2 with a rank greater than 5?",
    "question_th": "ผู้หญิงจำนวนมากที่สุดโดยผู้ชายอยู่ที่ 28.2 และมีอันดับมากกว่า 5 คือข้อใด",
    "context": "CREATE TABLE table_name_46 (females INTEGER, males VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_9 WHERE year = 1976",
    "question_en": "Who was the player in 1976?",
    "question_th": "ใครคือผู้เล่นในปี 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_en": "When was Elaine Powell (g) of the United states picked?",
    "question_th": "Elaine Powell (g) จากสหรัฐอเมริกาถูกเลือกเมื่อใด",
    "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_en": "When was there a result of w 65-20 after week 6?",
    "question_th": "เมื่อไรจะมีผลของ w 65-20 หลังจากสัปดาห์ที่ 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_en": "What is Celta's Agg.?",
    "question_th": "Agg. ของ Celta คืออะไร?",
    "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_en": "What is the 2nd leg for Barcelona Team 2?",
    "question_th": "เลกที่ 2 ของทีมบาร์เซโลน่า 2 คืออะไร?",
    "context": "CREATE TABLE table_name_49 (team_2 VARCHAR)"
  },
  {
    "answer": "SELECT team_2 FROM table_name_61 WHERE team_1 = \"numancia\"",
    "question_en": "What is team 2 if Team 1 is Numancia?",
    "question_th": "ทีม 2 จะเป็นอย่างไรถ้าทีม 1 คือ 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_en": "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?",
    "question_th": "ผลรวมของผลการดำเนินงาน/ผลตอบแทนจากเงินทุน (คะแนน) เมื่อคะแนน (อิหร่าน) น้อยกว่า 3 และคะแนน (ทั่วโลก) คือ 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_en": "What Total Assets (% Change) that has Performance/Return on Capital (%) greater than 25.63, and a Performance/Return on Capital (Score) greater than 7?",
    "question_th": "สินทรัพย์รวม (% การเปลี่ยนแปลง) ใดที่มีประสิทธิภาพ/ผลตอบแทนต่อทุน (%) มากกว่า 25.63 และประสิทธิภาพ/ผลตอบแทนต่อเงินทุน (คะแนน) มากกว่า 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_en": "What is the NFL club of the cornerback player with a pick greater than 63?",
    "question_th": "สโมสร NFL ของผู้เล่น cornerback ที่มีตัวเลือกมากกว่า 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_en": "What is the total round of the tight end position player?",
    "question_th": "รอบรวมของผู้เล่นตำแหน่งท้ายสุดคือเท่าไร?",
    "context": "CREATE TABLE table_name_66 (round VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT pick FROM table_name_95 WHERE nfl_club = \"buffalo bills\"",
    "question_en": "What is the pick of the NFL club buffalo bills?",
    "question_th": "การเลือกตั๋วเงินบัฟฟาโลของสโมสร NFL คืออะไร?",
    "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_en": "On What Date is the Competition Semifinal that has a result of 2-1 aet?",
    "question_th": "การแข่งขันรอบรองชนะเลิศที่ผลสกอร์ 2-1 เอ็ตคือวันไหน?",
    "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_en": "Which Location has a Competition of Group Stage, a Lineup of Start and a Date of 2000-09-17?",
    "question_th": "สถานที่ใดที่มีการแข่งขันรอบแบ่งกลุ่ม รายชื่อผู้เล่นตัวจริง และวันที่ 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_en": "Which Match has a Competition of Group Stage on 2000-09-17?",
    "question_th": "นัดใดมีการแข่งขันรอบแบ่งกลุ่มในวันที่ 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_en": "Which Match played in a Location of San Francisco has a Competition of Semifinal?",
    "question_th": "นัดใดที่เล่นในสถานที่ซานฟรานซิสโกและมีการแข่งขันรอบรองชนะเลิศ?",
    "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_en": "What Location has a Date of 1995-06-15?",
    "question_th": "สถานที่ใดมีวันที่ 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_en": "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?",
    "question_th": "แต้มมากที่สุดเมื่อเสียประตูน้อยกว่า 97 แพ้น้อยกว่า 22 เสมอ 9 และผลต่างประตูได้ +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_en": "What is the most points 1 when the goal difference is +28 and lost is larger than 12?",
    "question_th": "1 แต้มมากที่สุดคือเมื่อผลต่างประตูคือ +28 และแพ้มากกว่า 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_en": "What is the maximum lost with points 1 more than 58 and 66 goals against?",
    "question_th": "แพ้สูงสุดด้วยคะแนน 1 มากกว่า 58 และ 66 ประตูต่ออะไร?",
    "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_en": "What is the most goals for when there are fewer than 4 draws?",
    "question_th": "ประตูสูงสุดเมื่อเสมอกันน้อยกว่า 4 นัดคือประตูไหน?",
    "context": "CREATE TABLE table_name_1 (goals_for INTEGER, drawn INTEGER)"
  },
  {
    "answer": "SELECT result FROM table_name_87 WHERE date = \"october 20, 2002\"",
    "question_en": "What was the result on October 20, 2002?",
    "question_th": "ผลลัพธ์เมื่อวันที่ 20 ตุลาคม 2545 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_87 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_96 WHERE jersey_number_s_ = \"27\"",
    "question_en": "What is the nationality of the person with number 27?",
    "question_th": "คนที่มีหมายเลข 27 มีสัญชาติอะไร?",
    "context": "CREATE TABLE table_name_96 (nationality VARCHAR, jersey_number_s_ VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_48 WHERE position = \"sg\"",
    "question_en": "What is the nationality of the SG position?",
    "question_th": "ตำแหน่ง SG มีสัญชาติอะไร?",
    "context": "CREATE TABLE table_name_48 (nationality VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_32 WHERE director = \"danny devito\"",
    "question_en": "What is the rank of the film directed by danny devito?",
    "question_th": "ภาพยนตร์ที่กำกับโดยแดนนี่ เดวิโตอยู่ในอันดับใด",
    "context": "CREATE TABLE table_name_32 (rank VARCHAR, director VARCHAR)"
  },
  {
    "answer": "SELECT SUM(rank) FROM table_name_19 WHERE title = \"eddie murphy raw\"",
    "question_en": "What is the sum of the ranks for the film, eddie murphy raw?",
    "question_th": "ผลรวมของอันดับของภาพยนตร์เรื่องนี้ เอ็ดดี้ เมอร์ฟีย์ ดิบ เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_19 (rank INTEGER, title VARCHAR)"
  },
  {
    "answer": "SELECT director FROM table_name_29 WHERE studio = \"fox\" AND title = \"predator\"",
    "question_en": "Who directed Predator that was filmed with Fox Studio?",
    "question_th": "ใครเป็นผู้กำกับ Predator ที่ถ่ายทำกับ 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_en": "What is the total number of ranks that had vestron as the studio?",
    "question_th": "จำนวนอันดับทั้งหมดที่มีเวสตรอนเป็นสตูดิโอคือเท่าไร?",
    "context": "CREATE TABLE table_name_48 (rank VARCHAR, studio VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_name_11 WHERE driver = \"stanley dickens\"",
    "question_en": "Which class had Stanley Dickens as a driver?",
    "question_th": "ชั้นเรียนใดมี Stanley Dickens เป็นคนขับรถ",
    "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_en": "What was the highest amount of laps for class c1 and driver Derek Bell?",
    "question_th": "จำนวนรอบสูงสุดสำหรับคลาส c1 และนักแข่ง 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_en": "Where was the player born when the appearances were greater than 40 and made 17 goals?",
    "question_th": "นักเตะเกิดที่ไหนเมื่อลงเล่นเกิน 40 นัด และทำได้ 17 ประตู?",
    "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_en": "When did the mf from England play for Gillingham that made 0 goals and less than 37 appearances?",
    "question_th": "MF จากอังกฤษเล่นให้กับจิลลิ่งแฮมโดยทำไป 0 ประตูและลงสนามน้อยกว่า 37 นัดเมื่อใด?",
    "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_en": "Who is the player with a t8 place?",
    "question_th": "ใครคือผู้เล่นอันดับ t8?",
    "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_en": "What is the country of player dale douglass, who has a t8 place?",
    "question_th": "นักเตะ เดล ดักลาส ใครได้อันดับ t8 คือประเทศอะไร?",
    "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_en": "What is the average score of player lee trevino, who has a t8 place?",
    "question_th": "คะแนนเฉลี่ยของผู้เล่น ลี เทรวิโน ใครได้อันดับ 8 คือเท่าไร?",
    "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_en": "What is the to par of player johnny miller, who has a t8 place?",
    "question_th": "อะไรคือสิ่งที่ได้เปรียบของผู้เล่น จอห์นนี่ มิลเลอร์ ที่ได้อันดับ 8?",
    "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íguez\"",
    "question_en": "What is the country of player chi-chi rodríguez, who has an e to par?",
    "question_th": "นักเตะ ชิ-ชี่ โรดริเกซ ทีมชาติไหนที่มีคะแนนเสมอกัน?",
    "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_en": "WHAT IS THE LEAGUE WITH PLAYER JOE COLBORNE?",
    "question_th": "ลีกของผู้เล่น 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_en": "WHAT IS THE ROUND NUMBER OF NICHOLAS TREMBLAY?",
    "question_th": "NICHOLAS TREMBLAY มีจำนวนรอบเท่าไร?",
    "context": "CREATE TABLE table_name_59 (round VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_73 WHERE nationality = \"france\"",
    "question_en": "WHAT IS THE POSITION OF FRANCE?",
    "question_th": "ตำแหน่งของฝรั่งเศสคืออะไร?",
    "context": "CREATE TABLE table_name_73 (position VARCHAR, nationality VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(round) FROM table_name_23 WHERE player = \"jamie arniel\"",
    "question_en": "WHAT IS THE ROUND FOR JAMIE ARNIEL?",
    "question_th": "รอบของ 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_en": "What was the score on May 12, 2008?",
    "question_th": "คะแนนเมื่อวันที่ 12 พฤษภาคม 2551 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_8 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_28 WHERE date = \"september 26, 2009\"",
    "question_en": "Who was the opponent on September 26, 2009?",
    "question_th": "คู่ต่อสู้เมื่อวันที่ 26 กันยายน 2552 คือใคร?",
    "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_en": "What was the average lead maragin for the dates administered of october 6, 2008?",
    "question_th": "ลีดมาราจินโดยเฉลี่ยสำหรับวันที่บริหารในวันที่ 6 ตุลาคม พ.ศ. 2551 เป็นเท่าใด",
    "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_en": "What was the poll source for october 6, 2008?",
    "question_th": "แหล่งสำรวจความคิดเห็นของวันที่ 6 ตุลาคม 2551 คืออะไร",
    "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_en": "Who has a place of T7 and is from the United States?",
    "question_th": "ใครมีสถานที่ T7 และมาจากสหรัฐอเมริกา?",
    "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_en": "What is the Rank of the Film with a Worldwide Gross of $914,691,118?",
    "question_th": "ภาพยนตร์เรื่องนี้มีรายได้รวมทั่วโลกอยู่ที่ 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_en": "What is the Director of the Film The Fugitive?",
    "question_th": "ผู้กำกับภาพยนตร์เรื่อง 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_en": "What was the highest points on October 12, when the attendance where is over 10,701?",
    "question_th": "จุดสูงสุดในวันที่ 12 ต.ค. มีผู้เข้าร่วมกว่า 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_en": "When was Montreal a visitor?",
    "question_th": "มอนทรีออลเป็นผู้มาเยือนเมื่อใด",
    "context": "CREATE TABLE table_name_34 (date VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_38 WHERE transliteration = \"fal'shivaya nota\"",
    "question_en": "What Title's Transliteration is Fal'shivaya Nota?",
    "question_th": "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_en": "What Title has a Transliteration of u lyudey-to v domu?",
    "question_th": "หัวข้อใดมีการทับศัพท์จาก 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_en": "What is average frequency MHZ when is in portales, new mexico?",
    "question_th": "ความถี่เฉลี่ย MHZ คืออะไรเมื่ออยู่ในพอร์ทัล, เม็กซิโกใหม่?",
    "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_en": "What is FCC info when ERP W is larger than 92 and call sign has k264ba?",
    "question_th": "ข้อมูล FCC คืออะไรเมื่อ ERP W มีขนาดใหญ่กว่า 92 และสัญญาณเรียกขานมี 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_en": "Which call sign has ERP Wlarger than 250, and Frequency MHZ smaller than 99.3?",
    "question_th": "สัญญาณเรียกขานใดที่มี ERP Wlarger มากกว่า 250 และความถี่ MHZ น้อยกว่า 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_en": "Where was the game played when the score was 1-4?",
    "question_th": "เล่นเกมไหนสกอร์ 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_en": "Who was the game played against on 2004-02-28 at Skytteholms IP?",
    "question_th": "เกมนี้เล่นกับใครในวันที่ 28-02-2547 ที่ 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_en": "When the game was played at Domnarvsvallen who were the opponents?",
    "question_th": "เมื่อเกมเล่นที่ Domnarvsvallen ใครคือคู่ต่อสู้?",
    "context": "CREATE TABLE table_name_12 (opponents VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT opponents FROM table_name_49 WHERE venue = \"portugal\"",
    "question_en": "Who were the opposing team when playing in the Portugal venue?",
    "question_th": "ใครคือทีมตรงข้ามเมื่อเล่นในสถานที่ของโปรตุเกส?",
    "context": "CREATE TABLE table_name_49 (opponents VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_43 WHERE date = \"2004-06-23\"",
    "question_en": "Where was the game played on 2004-06-23?",
    "question_th": "เกมนี้เล่นที่ไหนในวันที่ 23-06-2547?",
    "context": "CREATE TABLE table_name_43 (venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT AVG(to_par) FROM table_name_6 WHERE player = \"tom weiskopf\"",
    "question_en": "What is the to par for Tom Weiskopf?",
    "question_th": "ค่าพาร์ของ 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_en": "What title did George Fury win when on the Oran Park Raceway?",
    "question_th": "George Fury คว้าแชมป์อะไรเมื่ออยู่บนสนามแข่ง 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_en": "Who was the winner on the Amaroo Park circuit?",
    "question_th": "ใครคือผู้ชนะในสนาม Amaroo Park",
    "context": "CREATE TABLE table_name_38 (winner VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT MIN(points) FROM table_name_74 WHERE goals_for < 13",
    "question_en": "What are the fewest points for goals fewer than 13?",
    "question_th": "อะไรคือแต้มน้อยที่สุดสำหรับประตูที่น้อยกว่า 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_en": "How many goals when more than 10 games played?",
    "question_th": "เมื่อเล่นเกิน 10 เกมไปกี่ประตู?",
    "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_en": "How many losses when goals against are more than 17, goal difference is more than 2 and points are more than 5?",
    "question_th": "แพ้กี่ครั้งเมื่อประตูที่เสียมากกว่า 17 ประตูเสียมากกว่า 2 และแต้มมากกว่า 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_en": "How many draws when there are fewer than 6 wins and the goal difference is less than -15?",
    "question_th": "เสมอกันกี่นัดเมื่อชนะน้อยกว่า 6 นัดและผลต่างประตูน้อยกว่า -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_en": "How much Draw has a Rank of 3rd, and a Performer of noelle, and Points larger than 79?",
    "question_th": "เสมอเท่าไหร่ที่มีอันดับ 3 และนักแสดงของโนเอล และคะแนนมากกว่า 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_en": "Which Draw has a Performer of jenny newman, and Points smaller than 77?",
    "question_th": "งวดใดมีนักแสดงของเจนนี่ นิวแมน และคะแนนน้อยกว่า 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_en": "Which Points have a Draw of 2?",
    "question_th": "แต้มไหนเสมอ 2?",
    "context": "CREATE TABLE table_name_46 (points INTEGER, draw VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(stage) FROM table_name_22 WHERE arrival = \"son bou\"",
    "question_en": "Which stage number did son bou arrive at?",
    "question_th": "ลูกบูมาถึงเลขสเตจไหน?",
    "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_en": "How long does the one that stars with son bou of middle difficulty, and on a stage number larger than 13 last?",
    "question_th": "คนที่นำแสดงโดยลูกชายที่มีความยากปานกลางและอยู่บนเวทีที่มากกว่า 13 จะอยู่ได้นานแค่ไหน?",
    "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_en": "What is the lowest stage number that starts with els alocs and has a middle difficulty?",
    "question_th": "หมายเลขด่านต่ำสุดที่ขึ้นต้นด้วย els alocs และมีความยากปานกลางคืออะไร?",
    "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_en": "What is the price of the internet provider that has an upstream rate of 256 kbit and a downstream rate of 512 kbit?",
    "question_th": "ราคาของผู้ให้บริการอินเทอร์เน็ตที่มีอัตราอัปสตรีม 256 kbit และอัตราดาวน์สตรีม 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_en": "For the provider that costs 266 sar, what is the Bandwidth Included?",
    "question_th": "สำหรับผู้ให้บริการที่มีค่าใช้จ่าย 266 sar จะมี Bandwidth รวมอยู่ด้วยหรือไม่",
    "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_en": "What is the name of the plan that has a downstream rate of 4,096 kbit?",
    "question_th": "แผนที่มีความเร็วดาวน์สตรีม 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–127\"",
    "question_en": "Which record has a score of l 121–127?",
    "question_th": "บันทึกใดมีคะแนน l 121–127",
    "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_en": "What high points did San Francisco have in a game later than 69?",
    "question_th": "ซานฟรานซิสโกมีคะแนนสูงแค่ไหนในเกมหลัง 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_en": "What is the record for March 10?",
    "question_th": "บันทึกประจำวันที่ 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–142\"",
    "question_en": "What high points did a game earlier than 80 have with a score of l 123–142?",
    "question_th": "เกมที่เร็วกว่า 80 มีคะแนนสูงสุดเท่าใดด้วยคะแนน l 123–142",
    "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_en": "What is the lowest Year, when Co-Driver is Warren Luff, when Position is 7th, and when Laps is less than 161?",
    "question_th": "ปีต่ำสุดคือเมื่อนักแข่งร่วมคือ Warren Luff เมื่อตำแหน่งอยู่ที่ 7 และเมื่อรอบน้อยกว่า 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_en": "What is Position, when Laps is 156?",
    "question_th": "ตำแหน่งคืออะไร เมื่อรอบเป็น 156?",
    "context": "CREATE TABLE table_name_90 (position VARCHAR, laps VARCHAR)"
  },
  {
    "answer": "SELECT MAX(year) FROM table_name_82 WHERE laps > 161",
    "question_en": "What is the highest Year, when Laps is greater than 161?",
    "question_th": "ปีสูงสุดคือปีใด เมื่อรอบมากกว่า 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_en": "What season had a downhill of 35 and overall greater than 21?",
    "question_th": "ฤดูกาลใดมีดาวน์ฮิลล์ 35 และโดยรวมมากกว่า 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_en": "What's the Super G when the combined was 13 and the overall was more than 7?",
    "question_th": "Super G คืออะไรเมื่อรวมเป็น 13 และรวมมากกว่า 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_en": "What is Time, when Laps is 22, and when Grid is 15?",
    "question_th": "เวลาคืออะไร เมื่อรอบคือ 22 และเมื่อกริดคือ 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_en": "What is the average Grid, when Time is +45.855?",
    "question_th": "ตารางเฉลี่ยคือเท่าใด เมื่อเวลาคือ +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_en": "What is the total number of Grid, when Time is +43.191, and when Laps is less than 22?",
    "question_th": "จำนวนกริดทั้งหมดเมื่อเวลาคือ +43.191 และเมื่อรอบน้อยกว่า 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_en": "What is the place of Mark O'Meara?",
    "question_th": "สถานที่ของ 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_en": "Which player has a score of 71-72=143?",
    "question_th": "ผู้เล่นคนไหนมีคะแนน 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_en": "What is the score for the United States in place T1 for David Duval?",
    "question_th": "คะแนนของสหรัฐอเมริกาในตำแหน่ง T1 ของ 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_en": "Who is the player from the United States with a score of 71-72=143?",
    "question_th": "นักเตะจากสหรัฐอเมริกาคือใครที่มีคะแนน 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_en": "Which country is Scott McCarron from?",
    "question_th": "Scott McCarron มาจากประเทศใด",
    "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_en": "Which country is in T1 place with a score of 71-68=139?",
    "question_th": "ประเทศใดอยู่อันดับ T1 ด้วยคะแนน 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_en": "what is the venue when the competition is friendly on 26 may 1999?",
    "question_th": "สนามที่จัดการแข่งขันกระชับมิตรในวันที่ 26 พฤษภาคม 1999 คือที่ไหน?",
    "context": "CREATE TABLE table_name_37 (venue VARCHAR, competition VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_99 WHERE country = \"australia\"",
    "question_en": "What was Australia's place?",
    "question_th": "สถานที่ของออสเตรเลียคืออะไร?",
    "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_en": "What was the score for United States when the player was Mike Reid and the To par was e?",
    "question_th": "สกอร์ของสหรัฐอเมริกาเมื่อผู้เล่นคือ ไมค์ รีด และพาร์เป็น 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_en": "How many holes did Mike Reid from United States have?",
    "question_th": "ไมค์ รีด จากอเมริกาได้กี่หลุม?",
    "context": "CREATE TABLE table_name_75 (hole VARCHAR, country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_72 WHERE position < 2",
    "question_en": "Which Name has a Position smaller than 2?",
    "question_th": "ชื่อใดมีตำแหน่งน้อยกว่า 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ünchen (n)\" AND drawn > 0",
    "question_en": "Which Lost has a Position larger than 2, a Name of sg münchen (n), and a Drawn larger than 0?",
    "question_th": "แพ้คนไหนที่มีตำแหน่งมากกว่า 2 ชื่อ sg münchen (n) และหมายเลขที่เสมอกันมากกว่า 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_en": "Which Drawn has a Position of 2, and a Lost larger than 2?",
    "question_th": "สุ่มใดมีตำแหน่ง 2 และแพ้มากกว่า 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_en": "Which Played has a Position of 3, and a Points smaller than 15?",
    "question_th": "ผู้เล่นคนไหนมีตำแหน่ง 3 และมีแต้มน้อยกว่า 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_en": "Which Played has a Position larger than 5, a Points larger than 0, and a Drawn smaller than 0?",
    "question_th": "ผู้เล่นคนไหนที่มีตำแหน่งมากกว่า 5 คะแนนมากกว่า 0 และเสมอน้อยกว่า 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_en": "What is the score when Miami is the visitor?",
    "question_th": "เมื่อไมอามี่เป็นผู้มาเยือนมีสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_33 (score VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_66 WHERE score = \"76-85\"",
    "question_en": "For the game that was 76-85, what was the record?",
    "question_th": "เกมที่ 76-85 มีสถิติเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_66 (record VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_52 WHERE date = \"april 18\"",
    "question_en": "On April 18, which team was the visitor?",
    "question_th": "วันที่ 18 เมษายน ทีมไหนเป็นผู้มาเยือน?",
    "context": "CREATE TABLE table_name_52 (visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT leading_scorer FROM table_name_8 WHERE date = \"april 7\"",
    "question_en": "Who was the leading scorer on April 7?",
    "question_th": "ใครคือผู้ทำประตูสูงสุดในวันที่ 7 เมษายน?",
    "context": "CREATE TABLE table_name_8 (leading_scorer VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_34 WHERE date = \"april 14\"",
    "question_en": "Where was the home court on April 14?",
    "question_th": "ศาลเจ้าบ้านวันที่ 14 เมษายน อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_34 (home VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_39 WHERE team = \"boston celtics\"",
    "question_en": "What is the boston celtics' record?",
    "question_th": "สถิติของบอสตัน เซลติกส์เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_39 (record VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_35 WHERE record = \"9–8\"",
    "question_en": "Which Score has a Record of 9–8?",
    "question_th": "คะแนนใดมีสถิติ 9–8",
    "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_en": "Which Date has a Streak of loss 2, and a Team of @ boston celtics?",
    "question_th": "วันที่ใดมีการสูญเสียต่อเนื่อง 2 และทีมของ @ 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–4\"",
    "question_en": "Which Date has a Streak of win 1, and a Record of 8–4?",
    "question_th": "วันใดที่มีสถิติชนะ 1 และสถิติ 8–4?",
    "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_en": "What was the top score for grier jones?",
    "question_th": "กริเออร์ โจนส์ได้คะแนนสูงสุดเท่าไหร่?",
    "context": "CREATE TABLE table_name_59 (score INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_10 WHERE score = 70",
    "question_en": "Which To par is scored at 70?",
    "question_th": "พาร์ใดมีคะแนนที่ 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_en": "In what place did hubert green score below 70 in the united states?",
    "question_th": "ฮิวเบิร์ต กรีนมีคะแนนต่ำกว่า 70 ในสหรัฐอเมริกาที่จุดใด",
    "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_en": "Which Driver and passenger have a bike number of less than 4 with zabel -vmc equipment?",
    "question_th": "คนขับและผู้โดยสารคนไหนมีจักรยานจำนวนน้อยกว่า 4 พร้อมอุปกรณ์ zabel -vmc?",
    "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_en": "What's the slalom when the average time was greater than 99.25?",
    "question_th": "สลาลมเมื่อเวลาเฉลี่ยมากกว่า 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_en": "Where was the place that the downhill was 71.6 and the average was less than 90.06?",
    "question_th": "จุดที่ดาวน์ฮิลล์อยู่ที่ 71.6 และค่าเฉลี่ยน้อยกว่า 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_en": "What is ICAO, when Airport is \"Sibulan Airport\"?",
    "question_th": "ICAO คืออะไร เมื่อสนามบินคือ \"สนามบินสีบูลัน\"",
    "context": "CREATE TABLE table_name_90 (icao VARCHAR, airport VARCHAR)"
  },
  {
    "answer": "SELECT icao FROM table_name_99 WHERE iata = \"hkg\"",
    "question_en": "What is ICAO, when IATA is \"HKG\"?",
    "question_th": "ICAO คืออะไร เมื่อ IATA คือ \"HKG\"",
    "context": "CREATE TABLE table_name_99 (icao VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT iata FROM table_name_8 WHERE icao = \"vhhh\"",
    "question_en": "What is IATA, when ICAO is \"VHHH\"?",
    "question_th": "IATA คืออะไร เมื่อ ICAO คือ \"VHHH\"",
    "context": "CREATE TABLE table_name_8 (iata VARCHAR, icao VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_75 WHERE iata = \"lao\"",
    "question_en": "What is City, when IATA is \"LAO\"?",
    "question_th": "เมืองคืออะไร เมื่อ IATA คือ \"ลาว\"",
    "context": "CREATE TABLE table_name_75 (city VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_82 WHERE city = \"zamboanga\"",
    "question_en": "What is Country, when City is \"Zamboanga\"?",
    "question_th": "ประเทศคืออะไร เมื่อเมืองคือ \"ซัมโบอังกา\"?",
    "context": "CREATE TABLE table_name_82 (country VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT MAX(drawn) FROM table_name_50 WHERE position = 12",
    "question_en": "What is the highest number drawn when the position was 12?",
    "question_th": "เลขสูงสุดที่จับได้เมื่อตำแหน่งคือ 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_en": "What is the highest number of goals against when the number of goals were 55 and the difference was +24?",
    "question_th": "จำนวนประตูสูงสุดเทียบกับเมื่อจำนวนประตูคือ 55 และผลต่างคือ +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_en": "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?",
    "question_th": "จำนวนเฉลี่ยที่เสียไปสำหรับไฮด์ ยูไนเต็ด เมื่อพวกเขามีอันดับน้อยกว่า 17, เสมอ 8 และมากกว่า 57 ประตูคือเท่าใด?",
    "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_en": "What is the highest played when there was less than 74 goals against and points 1 of 36 2?",
    "question_th": "การเล่นสูงสุดเมื่อทำได้น้อยกว่า 74 ประตูและแต้ม 1 จาก 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_en": "How long is the diameter that has a longitude of 8.0e?",
    "question_th": "เส้นผ่านศูนย์กลางที่มีลองจิจูด 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_en": "What name was given in 1994 when the diameter (km) was larger than 125 and the latitude was 30.0s?",
    "question_th": "ตั้งชื่ออะไรในปี 1994 เมื่อเส้นผ่านศูนย์กลาง (กม.) มากกว่า 125 และละติจูดคือ 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_en": "What is the longitude of Carmenta Farra in 1994?",
    "question_th": "ลองจิจูดของ Carmenta Farra ในปี 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_en": "Name the No. 5 which has a No. 6 of ethan, and a No. 4 of william, and a No. 9 of john?",
    "question_th": "ตั้งชื่อหมายเลข 5 ซึ่งมีหมายเลข 6 เป็นอีธาน และหมายเลข 4 เป็นวิลเลียม และหมายเลข 9 เป็นจอห์น",
    "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_en": "Name the  No. 2 which has a No. 3 of jacob, and a No. 10 of wyatt, and a No. 6 of ethan?",
    "question_th": "ตั้งชื่อหมายเลข 2 ซึ่งมีจาค็อบหมายเลข 3 และหมายเลข 10 เป็นไวแอตต์ และหมายเลข 6 เป็นอีธาน?",
    "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_en": "Name the No. 3 which has a No. 7 of logan, and a No. 5 of jackson?",
    "question_th": "ตั้งชื่อหมายเลข 3 ซึ่งมีหมายเลข 7 ของโลแกน และหมายเลข 5 ของแจ็คสัน?",
    "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_en": "Name the No. 5 which has a No. 8 of logan, and a No. 10 of ethan, and a No. 4 of jacob?",
    "question_th": "ตั้งชื่อหมายเลข 5 ซึ่งมีโลแกนหมายเลข 8 และหมายเลข 10 เป็นอีธาน และหมายเลข 4 เป็นจาโคบ?",
    "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_en": "Name the No. 8 which has a No. 4 of benjamin, and a No. 3 of liam?",
    "question_th": "ตั้งชื่อหมายเลข 8 ซึ่งมีหมายเลข 4 ของเบนจามิน และหมายเลข 3 ของเลียม?",
    "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_en": "Name the No. 10 which has a No. 8 of jackson, and a No. 9 of jayden?",
    "question_th": "ตั้งชื่อหมายเลข 10 ซึ่งมีแจ็คสันหมายเลข 8 และหมายเลข 9 เจย์เดน?",
    "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_en": "What was the date for Ron Paul as republican and a sample sized less than 472?",
    "question_th": "วันที่ใดที่ Ron Paul เป็นพรรครีพับลิกันและมีกลุ่มตัวอย่างน้อยกว่า 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_en": "Who was the Democrat when the Republican was Mike Huckabee, and the sample size was less than 495?",
    "question_th": "ใครคือพรรคเดโมแครต ในสมัยที่พรรครีพับลิกันคือ ไมค์ ฮัคคาบี และขนาดกลุ่มตัวอย่างน้อยกว่า 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_en": "What was the attendance in week 9?",
    "question_th": "การเข้าร่วมในสัปดาห์ที่ 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_en": "What week had attendance of 52,714?",
    "question_th": "สัปดาห์ใดที่มีผู้เข้าร่วม 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_en": "what is the gold when silver is 1, event is 2000 summer paralympics and bronze is more than 3?",
    "question_th": "ทองคำคืออะไรเมื่อเงินคือ 1 งานพาราลิมปิกฤดูร้อนปี 2000 และเหรียญทองแดงมากกว่า 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_en": "how many times is bronze 2 and gold more than 3?",
    "question_th": "บรอนซ์ 2 และทองมากกว่า 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_en": "what is the highest gold when silver is 1 and bronze is less than 0?",
    "question_th": "ทองคำสูงสุดเมื่อเงินเป็น 1 และทองแดงน้อยกว่า 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_en": "what is the highest bronze when silver is less than 1 and gold is more than 0?",
    "question_th": "บรอนซ์สูงสุดเมื่อเงินน้อยกว่า 1 และทองมากกว่า 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_en": "what is the most silver when the event is 2008 summer paralympics and bronze is less than 1?",
    "question_th": "อะไรคือเงินมากที่สุดในงานพาราลิมปิกฤดูร้อนปี 2008 และเหรียญทองแดงน้อยกว่า 1?",
    "context": "CREATE TABLE table_name_86 (silver INTEGER, event VARCHAR, bronze VARCHAR)"
  },
  {
    "answer": "SELECT album_title FROM table_name_53 WHERE title = \"滑板\"",
    "question_en": "Which Album title has a Title of 滑板?",
    "question_th": "ชื่ออัลบั้มใดที่มีชื่อ 滑板?",
    "context": "CREATE TABLE table_name_53 (album_title VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT record_label FROM table_name_46 WHERE title = \"诀别诗\"",
    "question_en": "Which Record label has a Title of 诀别诗?",
    "question_th": "ค่ายเพลงใดมีชื่อ 诀别诗?",
    "context": "CREATE TABLE table_name_46 (record_label VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT track_number FROM table_name_44 WHERE album_title = \"文武双全升级版\" AND title = \"老爸你别装酷\"",
    "question_en": "Which Track number has a Album title of 文武双全升级版, and a Title of 老爸你别装酷?",
    "question_th": "หมายเลขแทร็กใดที่มีชื่ออัลบั้ม 文武双全升级版 และชื่อ 老爸คุณ别装酷",
    "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_en": "What kind of Disc number has a Track number of 02 on 7 september 2004?",
    "question_th": "หมายเลขดิสก์ประเภทใดที่มีหมายเลขแทร็กเป็น 02 เมื่อวันที่ 7 กันยายน 2547",
    "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_en": "Name The Title which has a Track number of 07, and a Record label of emi on 21 april 2006?",
    "question_th": "ตั้งชื่อ The Title ซึ่งมีหมายเลขแทร็กเป็น 07 และค่ายเพลงของ emi เมื่อวันที่ 21 เมษายน 2549?",
    "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_en": "WHAT'S THE TIE NUMBER WITH AN AWAY TEAM OF WREXHAM?",
    "question_th": "หมายเลขเสมอกันกับทีมเยือนของเร็กซ์แฮมคือเท่าไร?",
    "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_en": "WHAT IS THE AWAY TEAM WITH HOME OF LEICESTER CITY?",
    "question_th": "ทีมเยือนกับทีมเหย้าของเลสเตอร์ ซิตี้ คืออะไร?",
    "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_en": "WHAT IS THE AWAY TEAM WHEN HOME IS LEEDS UNITED?",
    "question_th": "ทีมเยือนคืออะไรเมื่อลีดส์ยูไนเต็ดอยู่ที่บ้าน?",
    "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_en": "WHAT IS THE AWAY TEAM WITH A TIE NUMBER 1?",
    "question_th": "ทีมเยือนที่มีอันดับ 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_en": "Which Total has a Club of darlington, and a League goals of 13, and a League Cup goals of 1?",
    "question_th": "Total คนไหนที่มี Club of Darlington และประตูในลีก 13 ประตู และ League Cup ประตู 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_en": "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?",
    "question_th": "สโมสรใดมีเป้าหมายในลีกคัพที่ 0 และเอฟเอคัพเป็น 1 ประตูและมีคะแนนรวมมากกว่า 11 ประตูและมีเป้าหมายในลีกอยู่ที่ 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_en": "Which League Cup goals have a Total larger than 14, and a League goals of 14, and a FA Cup goals of 0?",
    "question_th": "ประตูในลีกคัพใดที่มีคะแนนรวมมากกว่า 14 ประตูในลีก 14 ประตู และเอฟเอ คัพ 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_en": "Which Total has an FA Cup goals of 1, and a League goals of 4 + 7?",
    "question_th": "Total ใดที่มีประตู FA Cup ที่ 1 และประตูในลีกที่ 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_en": "What event had a win, record of 8-1 and n/a round?",
    "question_th": "เหตุการณ์ใดที่ชนะ บันทึก 8-1 และไม่มีรอบ?",
    "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_en": "What event was the opponent Karl Knothe and had a submission (rear naked choke)?",
    "question_th": "เหตุการณ์อะไรคือคู่ต่อสู้อย่าง Karl Knothe และมีการซับมิชชั่น (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_en": "What's the record for the match when the res was a win and the method was a decision?",
    "question_th": "บันทึกสำหรับการแข่งขันเมื่อฝ่ายชนะและวิธีการตัดสินใจคืออะไร?",
    "context": "CREATE TABLE table_name_91 (record VARCHAR, method VARCHAR, res VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_17 WHERE record = \"4-1\"",
    "question_en": "What round had a record of 4-1?",
    "question_th": "รอบไหนมีสถิติ 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_en": "What's the record of the UCS 2 - Battle at the Barn when the round was n/a?",
    "question_th": "บันทึกของ UCS 2 - Battle at the Barn เมื่อรอบไม่มีคืออะไร?",
    "context": "CREATE TABLE table_name_7 (record VARCHAR, round VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_73 WHERE record = \"8-2\"",
    "question_en": "What round had a record of 8-2?",
    "question_th": "รอบใดมีสถิติ 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_en": "Who is the opponent when the record is 17-19-4?",
    "question_th": "คู่ต่อสู้เมื่อสถิติ 17-19-4 คือใคร?",
    "context": "CREATE TABLE table_name_27 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_72 WHERE game = 37",
    "question_en": "What is the score of game 37?",
    "question_th": "คะแนนของเกม 37 คืออะไร?",
    "context": "CREATE TABLE table_name_72 (score VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_77 WHERE date = \"1/17/1980\"",
    "question_en": "What is the record on 1/17/1980?",
    "question_th": "บันทึกเมื่อวันที่ 1/17/1980 คืออะไร?",
    "context": "CREATE TABLE table_name_77 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_34 WHERE game = 3",
    "question_en": "What date was game number 3?",
    "question_th": "เกมที่ 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_en": "What is the record when George Hill (11) had the high rebounds?",
    "question_th": "จอร์จ ฮิลล์ (11) รีบาวด์สูงเป็นสถิติอะไร?",
    "context": "CREATE TABLE table_name_58 (record VARCHAR, high_rebounds VARCHAR)"
  },
  {
    "answer": "SELECT MAX(game) FROM table_name_44 WHERE date = \"november 19\"",
    "question_en": "What number game happened on November 19?",
    "question_th": "เกมเลขอะไรเกิดขึ้นวันที่ 19 พฤศจิกายน?",
    "context": "CREATE TABLE table_name_44 (game INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_name_55 WHERE game = 12",
    "question_en": "Who had the high rebounds for game 12?",
    "question_th": "ใครมีการรีบาวด์สูงในเกมที่ 12?",
    "context": "CREATE TABLE table_name_55 (high_rebounds VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT manager FROM table_name_33 WHERE home_city = \"osijek\"",
    "question_en": "What is the name of the manager in the city of Osijek?",
    "question_th": "ผู้จัดการทีมในเมืองโอซิเยกชื่ออะไร?",
    "context": "CREATE TABLE table_name_33 (manager VARCHAR, home_city VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_48 WHERE stadium = \"stadion maksimir\"",
    "question_en": "What is the team at Stadion Maksimir?",
    "question_th": "ทีมในสตาดิโอน มักซิมีร์คือทีมอะไร?",
    "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_en": "What is the home city when the stadium was Gradski Stadion U Poljudu?",
    "question_th": "เมืองบ้านเกิดเมื่อสนามกีฬาคือ 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čić\"",
    "question_en": "What is the home city when Mladen Frančić is the manager?",
    "question_th": "เมืองบ้านเกิดเมื่อ มลาเดน ฟรานซิช เป็นผู้จัดการคือเมืองอะไร?",
    "context": "CREATE TABLE table_name_36 (home_city VARCHAR, manager VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_99 WHERE attendance = \"80,079\"",
    "question_en": "Who was the opponent when the attendance was 80,079?",
    "question_th": "คู่ต่อสู้คือใครเมื่อมีผู้เข้าร่วม 80,079 คน?",
    "context": "CREATE TABLE table_name_99 (opponent VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_86 WHERE attendance = \"31,002\"",
    "question_en": "Who was the opponent when the attendance was 31,002?",
    "question_th": "คู่ต่อสู้คือใครเมื่อมีผู้เข้าร่วม 31,002 คน?",
    "context": "CREATE TABLE table_name_86 (opponent VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_7 WHERE site = \"legion field • birmingham, al\"",
    "question_en": "Who was the opponent when they played at the legion field • birmingham, al site?",
    "question_th": "คู่ต่อสู้คือใครเมื่อพวกเขาเล่นที่สนามลีเจียน • เบอร์มิงแฮม อัลไซต์?",
    "context": "CREATE TABLE table_name_7 (opponent VARCHAR, site VARCHAR)"
  },
  {
    "answer": "SELECT site FROM table_name_22 WHERE opponent = \"louisville\"",
    "question_en": "On which site was the game against Louisville played?",
    "question_th": "เกมกับหลุยส์วิลล์เล่นบนเว็บไซต์ใด",
    "context": "CREATE TABLE table_name_22 (site VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_76 WHERE date = \"september 12\"",
    "question_en": "What was the total attendance on September 12?",
    "question_th": "ผู้เข้าร่วมทั้งหมดในวันที่ 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_en": "What is the sum of Broadcasts (TV) 1, when Series is \"3 4\", and when US Release Date is \"27 December 2006\"?",
    "question_th": "ผลรวมของการออกอากาศ (TV) 1 เมื่อซีรีส์คือ \"3 4\" และเมื่อวันที่วางจำหน่ายในสหรัฐฯ คือ \"27 ธันวาคม 2549\" คืออะไร",
    "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_en": "What is the total number of Broadcasts (TV) 1, when Aired in Japan 3 is \"5 January 2003 to 30 March 2003\"?",
    "question_th": "จำนวนการออกอากาศ (โทรทัศน์) 1 ที่ออกอากาศในญี่ปุ่น 3 คือ \"5 มกราคม พ.ศ. 2546 ถึง 30 มีนาคม พ.ศ. 2546\" เป็นเท่าใด",
    "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_en": "What is Episodes (TV+extra) 2, when Broadcasts (TV) 1 is less than 13, and when Directors is \"Shigehito Takayanagi\"?",
    "question_th": "อะไรคือตอน (TV+extra) 2 เมื่อการออกอากาศ (TV) 1 น้อยกว่า 13 และเมื่อผู้กำกับคือ \"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_en": "What was the lowest pick when the position was OF with the Chicago White Sox?",
    "question_th": "อะไรคือตัวเลือกที่ต่ำที่สุดเมื่อตำแหน่งเป็น OF กับทีม 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_en": "What is the affiliation of the University of Maryland?",
    "question_th": "มหาวิทยาลัยแมริแลนด์สังกัดอะไร?",
    "context": "CREATE TABLE table_name_54 (affiliation VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT MIN(founded) FROM table_name_9 WHERE nickname = \"cardinals\"",
    "question_en": "What school has the nickname of Cardinals?",
    "question_th": "โรงเรียนใดมีชื่อเล่นว่าพระคาร์ดินัล?",
    "context": "CREATE TABLE table_name_9 (founded INTEGER, nickname VARCHAR)"
  },
  {
    "answer": "SELECT nickname FROM table_name_98 WHERE location = \"fairfax, va\"",
    "question_en": "What is the nickname of the school located in Fairfax, VA?",
    "question_th": "ชื่อเล่นของโรงเรียนที่ตั้งอยู่ในเมืองแฟร์แฟกซ์ รัฐเวอร์จิเนีย คืออะไร?",
    "context": "CREATE TABLE table_name_98 (nickname VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT house FROM table_name_89 WHERE four = \"opat\"",
    "question_en": "What is \"house\", when \"four\" is \"opat\"?",
    "question_th": "\"บ้าน\" คืออะไร เมื่อ \"สี่\" คือ \"โอพัท\"?",
    "context": "CREATE TABLE table_name_89 (house VARCHAR, four VARCHAR)"
  },
  {
    "answer": "SELECT house FROM table_name_24 WHERE what = \"ano\" AND three = \"tulo\"",
    "question_en": "What is \"house\", when \"what\" is \"ano\", and when \"three\" is \"tulo\"?",
    "question_th": "\"บ้าน\" คืออะไร เมื่อ \"อะไร\" คือ \"ano\" และเมื่อ \"สาม\" คือ \"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_en": "What is the language, when \"house\" is \"balay\", when \"three\" is \"tatlo\", and when \"four\" is \"apat\"?",
    "question_th": "ภาษาคืออะไร เมื่อ \"บ้าน\" คือ \"บาเลย์\" เมื่อ \"สาม\" คือ \"ตาตโล\" และเมื่อ \"สี่\" คือ \"อาพัท\"",
    "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_en": "What is \"what\", when \"person\" is \"tawo\", when \"three\" is \"tuyo\", and when \"coconut\" is \"niyog\"?",
    "question_th": "อะไรคือ \"อะไร\" เมื่อ \"บุคคล\" คือ \"ตะวอ\" เมื่อ \"สาม\" คือ \"ตุโย\" และเมื่อ \"มะพร้าว\" คือ \"นิยก\"",
    "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_en": "What is the language, when \"what\" is \"ango\"?",
    "question_th": "ภาษาคืออะไรเมื่อ \"อะไร\" คือ \"ango\"?",
    "context": "CREATE TABLE table_name_32 (english VARCHAR, what VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_47 WHERE date = \"august 20, 2006\"",
    "question_en": "Who is the opponent for the game played on august 20, 2006?",
    "question_th": "คู่ต่อสู้ของเกมที่เล่นเมื่อวันที่ 20 สิงหาคม 2549 คือใคร?",
    "context": "CREATE TABLE table_name_47 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_67 WHERE opponent = \"estrella cabeza candela\"",
    "question_en": "On which Surface will Estrella Cabeza Candela play?",
    "question_th": "Estrella Cabeza Candela จะเล่นบน Surface รุ่นใด",
    "context": "CREATE TABLE table_name_67 (surface VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_14 WHERE date = \"december 16, 1989\"",
    "question_en": "What was the opponent on December 16, 1989?",
    "question_th": "คู่ต่อสู้เมื่อวันที่ 16 ธันวาคม 2532 คืออะไร?",
    "context": "CREATE TABLE table_name_14 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(attendance) FROM table_name_80 WHERE date = \"november 12, 1989\"",
    "question_en": "What was the highest attendance on November 12, 1989?",
    "question_th": "ผู้เข้าร่วมสูงสุดในวันที่ 12 พฤศจิกายน พ.ศ. 2532 คือเท่าใด",
    "context": "CREATE TABLE table_name_80 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_39 WHERE date = \"december 10, 1989\"",
    "question_en": "What was the week on December 10, 1989?",
    "question_th": "สัปดาห์ของวันที่ 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_en": "What attendance is dated february 27?",
    "question_th": "ผู้เข้าร่วมวันที่ 27 กุมภาพันธ์มีอะไรบ้าง?",
    "context": "CREATE TABLE table_name_66 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_95 WHERE points = 37",
    "question_en": "What date has 37 points?",
    "question_th": "วันไหนมี 37 คะแนน?",
    "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_en": "Who was the Team that was played against on February 24 and a game after game 55?",
    "question_th": "ทีมที่เล่นกับในวันที่ 24 กุมภาพันธ์ และเกมแล้วเกมเล่า 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_en": "what is the name when the lane is less than 4 and mark is 52.64?",
    "question_th": "เมื่อเลนน้อยกว่า 4 และเครื่องหมายคือ 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_en": "what is the number of times that the heat is 3 and the name is cxhristy ekpukhon ihunaegbo?",
    "question_th": "ความร้อนเป็น 3 กี่ครั้ง และชื่อ ซีคริสตี เอกปูคอน อิฮุนแนกโบ คือเท่าไร?",
    "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_en": "Name the Score which has a Time of 18:00 and a Venue of african union?",
    "question_th": "ตั้งชื่อคะแนนซึ่งมีเวลา 18:00 น. และสถานที่จัดงานสหภาพแอฟริกา?",
    "context": "CREATE TABLE table_name_99 (score VARCHAR, time VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_61 WHERE score = \"8 – 1\"",
    "question_en": "Name the Venue which has a Score of 8 – 1?",
    "question_th": "ตั้งชื่อสถานที่ซึ่งมีคะแนน 8 – 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_en": "What is 2nd Leg, when Team 1 is \"H\"?",
    "question_th": "เลกที่ 2 คืออะไร เมื่อทีม 1 คือ \"H\"?",
    "context": "CREATE TABLE table_name_97 (team_1 VARCHAR)"
  },
  {
    "answer": "SELECT batsmen FROM table_name_98 WHERE year = \"2002\"",
    "question_en": "Who are the Batsmen from the year 2002?",
    "question_th": "ใครคือผู้ตีลูกจากปี 2545?",
    "context": "CREATE TABLE table_name_98 (batsmen VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_21 WHERE year = \"1948\"",
    "question_en": "What score did the year 1948 have?",
    "question_th": "ปี 2491 ได้คะแนนเท่าไร?",
    "context": "CREATE TABLE table_name_21 (score VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT batsmen FROM table_name_83 WHERE year = \"1982\"",
    "question_en": "Who is the Batsman from the year 1982?",
    "question_th": "ใครคือผู้ตีลูกจากปี 1982?",
    "context": "CREATE TABLE table_name_83 (batsmen VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_46 WHERE year = \"1929\"",
    "question_en": "What is the score in 1929?",
    "question_th": "คะแนนในปี 1929 คืออะไร?",
    "context": "CREATE TABLE table_name_46 (score VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT batsmen FROM table_name_76 WHERE location = \"the brit oval\"",
    "question_en": "Who was the batsmen at the Brit Oval location?",
    "question_th": "ใครคือผู้ตีลูกที่สนาม Brit Oval?",
    "context": "CREATE TABLE table_name_76 (batsmen VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT built FROM table_name_63 WHERE county = \"kent\"",
    "question_en": "What year was the bridge in Kent built?",
    "question_th": "สะพานในเคนต์สร้างขึ้นในปีใด",
    "context": "CREATE TABLE table_name_63 (built VARCHAR, county VARCHAR)"
  },
  {
    "answer": "SELECT county FROM table_name_55 WHERE location = \"east providence\"",
    "question_en": "In which county is East Providence?",
    "question_th": "อีสต์พรอวิเดนซ์อยู่จังหวัดใด",
    "context": "CREATE TABLE table_name_55 (county VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT county FROM table_name_37 WHERE built = \"1884\"",
    "question_en": "What county had a bridge biult in 1884?",
    "question_th": "มณฑลใดมีสะพานสร้างขึ้นในปี พ.ศ. 2427",
    "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_en": "What is the Place of the Player with a Score of 68-73-66-74=281?",
    "question_th": "ผู้เล่นที่มีคะแนน 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_en": "What Country's Player scored 71-69-70-71=281?",
    "question_th": "ผู้เล่นประเทศใดทำคะแนนได้ 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_en": "What is T5 Place Vijay Singh's To par?",
    "question_th": "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_en": "What is Score, when Player is \"Bob Murphy\"?",
    "question_th": "Score คืออะไร เมื่อผู้เล่นคือ \"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_en": "What is Player, when To Par is \"+1\", when Country is \"United States\", and when Score is \"71-70=141\"?",
    "question_th": "ผู้เล่นคืออะไร เมื่อพาร์เป็น \"+1\" เมื่อประเทศเป็น \"สหรัฐอเมริกา\" และเมื่อสกอร์เป็น \"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_en": "What is Score, when Place is \"T8\", and when Player is \"Orville Moody\"?",
    "question_th": "คะแนนคืออะไร เมื่ออันดับคือ \"T8\" และเมื่อผู้เล่นคือ \"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_en": "What is Score, when Player is \"Deane Beman\"?",
    "question_th": "Score คืออะไร เมื่อผู้เล่นคือ \"Deane Beman\"?",
    "context": "CREATE TABLE table_name_20 (score VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_56 WHERE player = \"jack nicklaus\"",
    "question_en": "What is Country, when Player is \"Jack Nicklaus\"?",
    "question_th": "ประเทศคืออะไร เมื่อผู้เล่นคือ \"Jack Nicklaus\"?",
    "context": "CREATE TABLE table_name_56 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_46 WHERE place = \"1\"",
    "question_en": "What is the Country, when Place is \"1\"?",
    "question_th": "ประเทศคืออะไร เมื่อสถานที่คือ \"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_en": "WHAT IS THE RESULT FOR best urban/alternative performance, IN 2003 OR GREATER?",
    "question_th": "ผลลัพธ์สำหรับประสิทธิภาพในเมือง/ทางเลือกที่ดีที่สุด ในปี 2003 หรือสูงกว่านั้นคืออะไร",
    "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_en": "WHAT IS THE TITLE WITH CATEGORY OF best r&b song?",
    "question_th": "ชื่อเพลงที่มีหมวดหมู่ของเพลง r&b ที่ดีที่สุดคืออะไร?",
    "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_en": "WHAT IS THE RESULT FOR 2003, IN  best urban/alternative performance?",
    "question_th": "ผลลัพธ์สำหรับปี 2003 ในประสิทธิภาพในเมือง/ทางเลือกที่ดีที่สุดคืออะไร?",
    "context": "CREATE TABLE table_name_79 (result VARCHAR, year VARCHAR, category VARCHAR)"
  },
  {
    "answer": "SELECT SUM(year) FROM table_name_5 WHERE title = \"floetic\"",
    "question_en": "WHAT IS THE YEAR OF FLOETIC?",
    "question_th": "ปีแห่งโฟลติคคือปีอะไร?",
    "context": "CREATE TABLE table_name_5 (year INTEGER, title VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_name_64 WHERE record = \"2-4\"",
    "question_en": "Who had the highest assists when the nuggets record was 2-4?",
    "question_th": "ใครแอสซิสต์ได้มากที่สุดเมื่อนักเก็ตมีสถิติ 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_en": "Who had the highest assists in game 3?",
    "question_th": "ใครมีแอสซิสต์สูงสุดในเกมที่ 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_en": "What is Time, when Ground is Waverley Park, and when Away Team is Footscray?",
    "question_th": "เวลาคืออะไร เมื่อ Ground คือ Waverley Park และเมื่อทีมเยือนคือ 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_en": "What is Ground, when Away Team is Sydney?",
    "question_th": "Ground คืออะไร เมื่อทีมเยือนคือซิดนีย์?",
    "context": "CREATE TABLE table_name_73 (ground VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_65 WHERE home_team = \"richmond\"",
    "question_en": "What is Date, when Home Team is Richmond?",
    "question_th": "วันที่เท่าไหร่เมื่อทีมเหย้าคือริชมอนด์?",
    "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_en": "What is Home Team Score, when Time is 12:00 PM, and when Ground is Waverley Park?",
    "question_th": "คะแนนทีมเหย้าคือเมื่อเวลา 12.00 น. และสนามคือเวฟเวอร์ลีย์พาร์คเมื่อใด",
    "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_en": "What is the highest year for the US Open?",
    "question_th": "US Open ปีสูงสุดคือปีใด?",
    "context": "CREATE TABLE table_name_4 (year INTEGER, championship VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_72 WHERE week = 16",
    "question_en": "What is Result, when Week is 16?",
    "question_th": "ผลลัพธ์คืออะไร เมื่อสัปดาห์คือ 16",
    "context": "CREATE TABLE table_name_72 (result VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_84 WHERE attendance = \"30,110\"",
    "question_en": "What is Record, when Attendance is 30,110?",
    "question_th": "บันทึกคืออะไร เมื่อผู้เข้าร่วมคือ 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_en": "What is Date, when Opponent is At Saskatchewan Roughriders?",
    "question_th": "วันที่คืออะไรเมื่อฝ่ายตรงข้ามอยู่ที่ 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_en": "Which School name has students smaller than 389, and grades of 10-12?",
    "question_th": "ชื่อโรงเรียนใดที่มีนักเรียนน้อยกว่า 389 คน และเกรด 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_en": "What was the score of the game where the home team was the cairns taipans?",
    "question_th": "ในเกมที่เจ้าบ้านเป็นแคนส์ ไทปันสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_85 (score VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_39 WHERE home_team = \"adelaide 36ers\"",
    "question_en": "What was the score of the game where the adelaide 36ers were the home team?",
    "question_th": "เกมที่แอดิเลด 36เซอร์สเป็นเจ้าบ้านสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_39 (score VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_54 WHERE venue = \"cairns convention centre\"",
    "question_en": "What was the score of the game where the venue was cairns convention centre?",
    "question_th": "เกมที่สนามคือศูนย์การประชุมแคนส์ได้คะแนนเท่าไหร่?",
    "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_en": "Who was the away team during the game when the home team was the new zealand breakers?",
    "question_th": "ทีมเยือนคือใครระหว่างเกมเมื่อเจ้าบ้านเป็นทีมนิวซีแลนด์เบรกเกอร์?",
    "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_en": "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?",
    "question_th": "อะไรคือคะแนนของเกมที่โกลด์โคสต์ลุกโชนในฐานะทีมเยือนและแอดิเลด 36เซอร์สเป็นเจ้าบ้าน?",
    "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_en": "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?",
    "question_th": "อันดับรวมของบริษัทที่มีสินทรัพย์น้อยกว่า 248.44 พันล้าน, อุตสาหกรรมน้ำมันและก๊าซ, สำนักงานใหญ่ในฝรั่งเศส และมูลค่าตลาดมากกว่า 152.62 พันล้านอยู่ในอันดับที่เท่าไหร่?",
    "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_en": "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?",
    "question_th": "บริษัทใดมียอดขายมากกว่า 195.34 พันล้าน ติดอันดับมากกว่า 7 มีกำไรมากกว่า 11.29 พันล้าน และมูลค่าตลาดมากกว่า 198.14 พันล้าน?",
    "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_en": "What is the average rank of the company with more than 146.56 billion in sales and profits of 11.68 billions?",
    "question_th": "อันดับเฉลี่ยของบริษัทที่มียอดขายและกำไรมากกว่า 146.56 พันล้านบาทอยู่ที่เท่าไร?",
    "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_en": "What was the position of the player from the college of Nevada with a round over 5?",
    "question_th": "ผู้เล่นจากวิทยาลัยเนวาดาที่เข้ารอบ 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_en": "Which college had a pick in a round under 7, with a pick number 13 and overall was under 186?",
    "question_th": "วิทยาลัยใดมีตัวเลือกในรอบต่ำกว่า 7 โดยมีตัวเลือก 13 และคะแนนรวมต่ำกว่า 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_en": "How many Parishes in Merrimack which has 4 Cemeteries?",
    "question_th": "มีกี่ตำบลใน Merrimack ที่มีสุสาน 4 แห่ง?",
    "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_en": "What Pastoral Region has 3 Cemeteries?",
    "question_th": "เขตอภิบาลใดมีสุสาน 3 แห่ง?",
    "context": "CREATE TABLE table_name_57 (pastoral_region VARCHAR, cemeteries VARCHAR)"
  },
  {
    "answer": "SELECT SUM(high_schools) FROM table_name_38 WHERE cemeteries = 8",
    "question_en": "How many High schools in the Region with 8 Cemeteries?",
    "question_th": "โรงเรียนมัธยมในภูมิภาคที่มีสุสาน 8 แห่งมีกี่แห่ง?",
    "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_en": "What Pastoral Region has Episcopal Vicar Robert Francis Hennessey?",
    "question_th": "เขตอภิบาลแห่งใดมีบาทหลวงบาทหลวงโรเบิร์ต ฟรานซิส เฮนเนสซีย์?",
    "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–07\"",
    "question_en": "What is the name of the person with more than 299 games during the 1995–07 period?",
    "question_th": "บุคคลที่ลงเล่นมากกว่า 299 เกมในช่วงปี 1995–07 ชื่ออะไร?",
    "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_en": "What is the number of games for Shlomi Avrahami?",
    "question_th": "Shlomi Avrahami ลงเล่นกี่เกม?",
    "context": "CREATE TABLE table_name_75 (games VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT SUM(rank) FROM table_name_7 WHERE period = \"1973–89\" AND games < 423",
    "question_en": "What is the rank for the period of 1973–89, with less than 423 games.",
    "question_th": "อันดับในช่วงปี 1973–89 คือเท่าไร โดยมีการแข่งขันน้อยกว่า 423 เกม",
    "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_en": "What is the team 1 when Ulisses is team 2?",
    "question_th": "ทีม 1 คืออะไร ในเมื่อ อูลิเซ่ เป็นทีม 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_en": "What is 2009, when Year is \"Highest Mean Annual Temperature\"?",
    "question_th": "ปี 2552 คือปีใดที่ \"อุณหภูมิเฉลี่ยต่อปีสูงสุด\"",
    "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_en": "How many gold values have totals over 30, bronzes over 35, and are in Swimming?",
    "question_th": "มูลค่าทองคำทั้งหมดมีมากกว่า 30 ทองสัมฤทธิ์มากกว่า 35 และอยู่ในว่ายน้ำ?",
    "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_en": "What is the highest bronze value with silvers over 2, golds under 16, and in Cycling?",
    "question_th": "อะไรคือมูลค่าทองแดงสูงสุดที่มีเงินมากกว่า 2 ทองคำอายุต่ำกว่า 16 ปี และในการปั่นจักรยาน?",
    "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_en": "What is the total associated with Bronzes over 35?",
    "question_th": "จำนวนรวมที่เกี่ยวข้องกับ Bronzes ที่มากกว่า 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_en": "What is the smallest bronze value associated with golds over 0, silvers over 11, and totals of 36?",
    "question_th": "ค่าทองแดงที่น้อยที่สุดที่เกี่ยวข้องกับทองคำมากกว่า 0 เงินมากกว่า 11 และทั้งหมด 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_en": "What is the average number of golds in athletics associated with over 42 silvers?",
    "question_th": "จำนวนเหรียญทองโดยเฉลี่ยในกรีฑาที่เกี่ยวข้องกับเงินมากกว่า 42 เหรียญคือเท่าใด",
    "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_en": "What is the smallest number of silvers associated with bronzes under 20, totals of 1, golds of 0, and in Water Polo?",
    "question_th": "อะไรคือจำนวนเหรียญเงินที่น้อยที่สุดที่เกี่ยวข้องกับเหรียญทองแดงที่มีอายุต่ำกว่า 20 ปี รวม 1 เหรียญทอง 0 และในโปโลน้ำ?",
    "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_en": "What was the lowest pick number for Marc Pilon?",
    "question_th": "หมายเลขเลือกต่ำสุดของ 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_en": "What player was from the British Columbia college?",
    "question_th": "ผู้เล่นคนใดมาจากวิทยาลัยบริติชโคลัมเบีย",
    "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_en": "What was the highest pick number for the Hamilton tiger-cats?",
    "question_th": "หมายเลขตัวเลือกสูงสุดสำหรับแมวเสือแฮมิลตันคือหมายเลขใด",
    "context": "CREATE TABLE table_name_13 (pick__number INTEGER, cfl_team VARCHAR)"
  },
  {
    "answer": "SELECT pick__number FROM table_name_59 WHERE position = \"wr\"",
    "question_en": "What was the pick number for the WR position?",
    "question_th": "หมายเลขเลือกสำหรับตำแหน่ง WR คืออะไร?",
    "context": "CREATE TABLE table_name_59 (pick__number VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT goal FROM table_name_84 WHERE result = \"2-0\"",
    "question_en": "Can you tell me the Goal that has the Result of 2-0?",
    "question_th": "คุณช่วยบอกผมหน่อยได้ไหมว่าประตูที่มีผลเป็น 2-0?",
    "context": "CREATE TABLE table_name_84 (goal VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_32 WHERE prize = \"$381.030\"",
    "question_en": "What is Place, when Prize is \"$381.030\"?",
    "question_th": "สถานที่คืออะไร เมื่อรางวัลคือ \"$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_en": "What is Rank, when Event is \"LAPT3 Punta Del Este\"?",
    "question_th": "อันดับคืออะไร เมื่อกิจกรรมคือ \"LAPT3 ปุนตาเดลเอสเต\"?",
    "context": "CREATE TABLE table_name_65 (rank VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_64 WHERE prize = \"$279.330\"",
    "question_en": "What is Name, when Prize is \"$279.330\"?",
    "question_th": "ชื่อคืออะไร เมื่อรางวัลคือ \"$279.330\"?",
    "context": "CREATE TABLE table_name_64 (name VARCHAR, prize VARCHAR)"
  },
  {
    "answer": "SELECT prize FROM table_name_2 WHERE rank = \"2nd\"",
    "question_en": "What is Prize, when Rank is \"2nd\"?",
    "question_th": "รางวัลคืออะไร เมื่ออันดับ \"2\"?",
    "context": "CREATE TABLE table_name_2 (prize VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_66 WHERE event = \"lapt4 são paulo\"",
    "question_en": "What is Rank, when Event is \"LAPT4 São Paulo\"?",
    "question_th": "อันดับคืออะไร เมื่อกิจกรรมคือ \"LAPT4 São Paulo\"?",
    "context": "CREATE TABLE table_name_66 (rank VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT prize FROM table_name_58 WHERE name = \"valdemar kwaysser\"",
    "question_en": "What is Prize, when Name is \"Valdemar Kwaysser\"?",
    "question_th": "รางวัลคืออะไร เมื่อชื่อ \"วัลเดมาร์ คเวย์เซอร์\"?",
    "context": "CREATE TABLE table_name_58 (prize VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT bus_power FROM table_name_5 WHERE fieldbus = \"controlnet\"",
    "question_en": "What is the bus power for the Controlnet Fieldbus?",
    "question_th": "กำลังไฟบัสสำหรับ 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_en": "What is the millisecond cycle for the Fieldbus?",
    "question_th": "วงจรมิลลิวินาทีของ Fieldbus คืออะไร",
    "context": "CREATE TABLE table_name_28 (sub_millisecond_cycle VARCHAR)"
  },
  {
    "answer": "SELECT synchronisation FROM table_name_70 WHERE fieldbus = \"controlnet\"",
    "question_en": "What is the synchronisation for the controlnet fieldbus?",
    "question_th": "การซิงโครไนซ์สำหรับ controlnet fieldbus คืออะไร?",
    "context": "CREATE TABLE table_name_70 (synchronisation VARCHAR, fieldbus VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_31 WHERE college = \"colorado\"",
    "question_en": "Which Position has a College of colorado?",
    "question_th": "ตำแหน่งใดมีวิทยาลัยโคโลราโด",
    "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_en": "Which College has an Overall larger than 211, a Position of db, and a Name of carl charon?",
    "question_th": "วิทยาลัยใดมีคะแนนรวมมากกว่า 211 ตำแหน่ง db และชื่อ 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_en": "Which Overall has a College of michigan state, a Position of fb, and a Round larger than 8?",
    "question_th": "โดยรวมแล้วมีวิทยาลัยแห่งรัฐมิชิแกน ตำแหน่ง fb และรอบที่ใหญ่กว่า 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_en": "Which Round has a College of arizona?",
    "question_th": "รอบไหนมีวิทยาลัยแอริโซนา?",
    "context": "CREATE TABLE table_name_26 (round INTEGER, college VARCHAR)"
  },
  {
    "answer": "SELECT MIN(overall) FROM table_name_99 WHERE round = 7",
    "question_en": "Which Overall has a Round of 7?",
    "question_th": "ซึ่งโดยรวมมีรอบ 7?",
    "context": "CREATE TABLE table_name_99 (overall INTEGER, round VARCHAR)"
  },
  {
    "answer": "SELECT SUM(round) FROM table_name_4 WHERE pick > 1",
    "question_en": "Which Round has a Pick larger than 1?",
    "question_th": "รอบใดที่มีการเลือกมากกว่า 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_en": "In italy, when the stolen ends were 10 and blank ends were under 14, what's the lowest ends won?",
    "question_th": "ในอิตาลี เมื่อปลายที่ขโมยมาคือ 10 และปลายว่างต่ำกว่า 14 แล้วปลายต่ำสุดจะชนะได้เท่าไหร่?",
    "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_en": "When ends won were below 57 but stolen ends are more than 14, what's the highest blank ends found?",
    "question_th": "เมื่อจบที่ชนะต่ำกว่า 57 แต่จบที่ถูกขโมยมากกว่า 14 ปลายว่างสูงสุดที่พบคืออะไร?",
    "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_en": "What was the attendance record for Leicester City?",
    "question_th": "สถิติการเข้าร่วมของเลสเตอร์ ซิตี้ เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_17 (attendance VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_11 WHERE home_team = \"arsenal\"",
    "question_en": "What was the attendance for Arsenal?",
    "question_th": "อาร์เซนอลเข้าร่วมการแข่งขันเป็นจำนวนเท่าใด?",
    "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_en": "Who was the home team against the Bolton Wanderers?",
    "question_th": "ทีมเจ้าบ้านเจอกับโบลตันวันเดอเรอร์สคือใคร?",
    "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_en": "Who was the opponent of the match in South Dakota, United States which has 2 rounds?",
    "question_th": "คู่ต่อสู้ที่เซาท์ดาโคตา สหรัฐอเมริกา มี 2 นัดคือใคร?",
    "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_en": "What is the total ATMs with off-site ATMs greater than 3672, and less than 1685 as the number of branches?",
    "question_th": "ตู้เอทีเอ็มทั้งหมดที่มีตู้เอทีเอ็มนอกสถานที่มากกว่า 3672 และน้อยกว่า 1685 เป็นจำนวนสาขาเป็นเท่าใด",
    "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_en": "What is the total number of branches when the on-site ATMS is 1548, and the off-site ATMs is bigger than 3672?",
    "question_th": "จำนวนสาขาทั้งหมดเมื่อตู้เอทีเอ็มในสถานที่คือ 1548 และตู้เอทีเอ็มนอกสถานที่มีขนาดใหญ่กว่า 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_en": "What is the minimum total ATMs with new private sector banks as the bank type, and the on-site ATMs are greater than 1883?",
    "question_th": "ตู้เอทีเอ็มรวมขั้นต่ำที่มีธนาคารภาคเอกชนใหม่เป็นประเภทธนาคารคือเท่าใด และตู้เอทีเอ็มในสถานที่มากกว่า 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_en": "What is the mean on-site ATMS that have off-site ATMs of 1567, and the total number of ATMs less than 4772?",
    "question_th": "ตู้ ATM ในสถานที่เฉลี่ยที่มีตู้ ATM นอกสถานที่จำนวน 1,567 ตู้ และจำนวนตู้ ATM ทั้งหมดน้อยกว่า 4,772 คืออะไร",
    "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_en": "With foreign banks as the bank type, and on-site ATMS less than 218, what is the average off-site ATMs?",
    "question_th": "เนื่องจากธนาคารต่างประเทศเป็นประเภทธนาคาร และมี ATMS ในสถานที่น้อยกว่า 218 ตู้ ATM นอกสถานที่โดยเฉลี่ยคือเท่าใด",
    "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_en": "What is Effect, when Weapon is \"35mm/Small arms fire\"?",
    "question_th": "เอฟเฟกต์จะเป็นอย่างไร เมื่ออาวุธเป็น \"การยิงแบบ 35 มม./ปืนเล็ก\"?",
    "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_en": "What is Date, when Effect is \"Shot Down\", and when Place is \"South of Stanley Airport\"?",
    "question_th": "วันที่คืออะไร เมื่อเอฟเฟกต์เป็น \"Shot Down\" และเมื่อสถานที่คือ \"ทางใต้ของสนามบิน Stanley\"",
    "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_en": "What is Place, when Weapon is \"35mm fire\", and when Date is \"27 May 1982\"?",
    "question_th": "สถานที่คืออะไร เมื่ออาวุธคือ \"ไฟ 35 มม.\" และวันที่คือ \"27 พฤษภาคม 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_en": "What is Pilot, when Place is \"Goose Green\", and when Date is \"27 May 1982\"?",
    "question_th": "Pilot คืออะไร เมื่อสถานที่คือ \"Goose Green\" และวันที่คือ \"27 พฤษภาคม 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_en": "What is Place, when Weapon is \"35mm/Small arms fire\"?",
    "question_th": "สถานที่คืออะไร เมื่ออาวุธคือ \"กระสุนขนาด 35 มม./ปืนเล็ก\"?",
    "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_en": "What is Pilot, when Weapon is \"35mm fire\", and when Date is \"4 May 1982\"?",
    "question_th": "Pilot คืออะไร เมื่ออาวุธคือ \"ไฟ 35 มม.\" และวันที่คือ \"4 พฤษภาคม 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_en": "Who is the player with a Jersey Number(s) greater than 30?",
    "question_th": "ใครคือผู้เล่นที่มีหมายเลขเสื้อมากกว่า 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_en": "What is the Years of the player with Jersey Number(s) of 44?",
    "question_th": "ผู้เล่นที่มีหมายเลขเสื้อ 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_en": "What was the population in North Jeolla?",
    "question_th": "จอลลาเหนือมีประชากรกี่คน?",
    "context": "CREATE TABLE table_name_63 (population__2010_ VARCHAR, province VARCHAR)"
  },
  {
    "answer": "SELECT korean FROM table_name_46 WHERE hanja = \"南楊州\"",
    "question_en": "What's Korean for 南楊州 Hanja?",
    "question_th": "南楊州 Hanja ภาษาเกาหลีแปลว่าอะไร",
    "context": "CREATE TABLE table_name_46 (korean VARCHAR, hanja VARCHAR)"
  },
  {
    "answer": "SELECT korean FROM table_name_89 WHERE city = \"pohang\"",
    "question_en": "What's the Korean word for Pohang?",
    "question_th": "โปฮัง ภาษาเกาหลีเรียกว่าอะไร?",
    "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_en": "What's the team nickname of the private/catholic school whose enrollment is larger than 3,490?",
    "question_th": "ชื่อเล่นของทีมโรงเรียนเอกชน/คาทอลิกซึ่งมีผู้ลงทะเบียนมากกว่า 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_en": "What's the total enrollment of public schools located in Buffalo, New York that were founded after 1846?",
    "question_th": "โรงเรียนรัฐบาลที่ตั้งอยู่ในเมืองบัฟฟาโล รัฐนิวยอร์ก ซึ่งก่อตั้งหลังปี 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_en": "What year did Bangkok University and Chunnam Dragons have a score of 0-0?",
    "question_th": "ม.กรุงเทพ และ ชุนน้ำ ดรากอนส์ เมื่อปีใดที่สกอร์ 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_en": "What is the transfer window for Christian Nerlinger?",
    "question_th": "หน้าต่างการถ่ายโอนของ 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_en": "What is the name for the end of contract because they're moving to Falkirk?",
    "question_th": "ชื่อของสัญญาสิ้นสุดเพราะพวกเขากำลังจะย้ายไปฟัลเคิร์กคืออะไร?",
    "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_en": "What type of transfer window is winter in Ita?",
    "question_th": "ฤดูหนาวในอิตะมีหน้าต่างการโอนประเภทใด",
    "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_en": "What is the type of loan and the transfer fee loan?",
    "question_th": "สินเชื่อประเภทใดและค่าธรรมเนียมการโอนคืออะไร?",
    "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_en": "On what date did a streak start on November 14?",
    "question_th": "14 พฤศจิกายน สตรีคเริ่มวันไหน?",
    "context": "CREATE TABLE table_name_30 (streak VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_97 WHERE game = 36",
    "question_en": "What was the score of game 36?",
    "question_th": "เกมที่ 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_en": "Where was the third bridge over panama canal?",
    "question_th": "สะพานที่สามข้ามคลองปานามาอยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_83 (location VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT comp FROM table_name_71 WHERE name = \"smith\"",
    "question_en": "Name the Comp which has a Name of smith?",
    "question_th": "ตั้งชื่อคอมพ์ซึ่งมีชื่อสมิธไหม?",
    "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_en": "Name the sum of Comp which has a Yds/game smaller than 209.5,brytus Name, and a Rating smaller than 100?",
    "question_th": "ตั้งชื่อผลรวมของ Comp ซึ่งมี Yds/เกมน้อยกว่า 209.5 ชื่อ brytus และเรตติ้งน้อยกว่า 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_en": "Name the highest Comp which has a Yds/game larger than 0, bostick, and a Rating smaller than 91.77?",
    "question_th": "ตั้งชื่อคอมพ์สูงสุดที่มี Yds/เกมมากกว่า 0, bostick และเรตติ้งน้อยกว่า 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_en": "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?",
    "question_th": "คุณช่วยบอกผลรวมของคะแนนที่มีอันดับ t5 และประเทศของสหรัฐอเมริกา และผู้เล่นของ 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_en": "Which event had a decision method?",
    "question_th": "เหตุการณ์ใดมีแนวทางการตัดสินใจ?",
    "context": "CREATE TABLE table_name_12 (event VARCHAR, method VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_34 WHERE method = \"tko\"",
    "question_en": "Where was the method of tko?",
    "question_th": "วิธีการของ 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_en": "What is the time of kenya, which is ranked 2?",
    "question_th": "เคนยาอันดับ 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_en": "What race is on 26 June 2011?",
    "question_th": "วันที่ 26 มิถุนายน 2554 มีการแข่งขันอะไรบ้าง?",
    "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_en": "What is the time of the peachtree road race in kenya?",
    "question_th": "การแข่งขัน Peachtree Road Race ที่เคนยากี่โมง?",
    "context": "CREATE TABLE table_name_57 (time VARCHAR, nation VARCHAR, race VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_64 WHERE team = \"chicago\"",
    "question_en": "What is the score of team chicago?",
    "question_th": "ทีมชิคาโกสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_64 (score VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_61 WHERE team = \"utah\"",
    "question_en": "What is the record of team utah?",
    "question_th": "บันทึกของทีมยูทาห์คืออะไร?",
    "context": "CREATE TABLE table_name_61 (record VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_name_29 WHERE game = 63",
    "question_en": "What is the location and attendance of game 63?",
    "question_th": "สถานที่และการเข้าร่วมเกม 63 คืออะไร?",
    "context": "CREATE TABLE table_name_29 (location_attendance VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_82 WHERE position = \"small forward\"",
    "question_en": "What is the nationality of the person who played small forward?",
    "question_th": "คนที่เล่นกองหน้าตัวเล็กมีสัญชาติอะไร?",
    "context": "CREATE TABLE table_name_82 (nationality VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_87 WHERE player = \"rich manning\"",
    "question_en": "What position did Rich Manning play?",
    "question_th": "ริช แมนนิ่ง เล่นตำแหน่งอะไร?",
    "context": "CREATE TABLE table_name_87 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_89 WHERE years_for_grizzlies = \"2007-2009\"",
    "question_en": "What position did the player who was with the grizzlies from 2007-2009 play?",
    "question_th": "ผู้เล่นที่อยู่กับทีมกริซลี่ส์ระหว่างปี 2550-2552 เล่นตำแหน่งใด?",
    "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_en": "Who is the player in the 2008 draft with a pick greater than 5?",
    "question_th": "ใครคือผู้เล่นในร่างปี 2008 ที่มีตัวเลือกมากกว่า 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_en": "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?",
    "question_th": "จำนวนผู้เล่นที่เลือกจากรอบที่มากกว่า 1, ดราฟต์ก่อนปี 2002 และกับวิทยาลัย/โรงเรียนมัธยม/สโมสรของรัฐเคนตักกี้ตะวันตกคือเท่าใด",
    "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_en": "What is the lowest draft number with a 48 pick?",
    "question_th": "หมายเลขร่างต่ำสุดที่เลือกได้ 48 คืออะไร?",
    "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_en": "Which Name has a AAFC Team of los angeles dons, and a Position of fb, and a College of oklahoma a&m?",
    "question_th": "ชื่อใดมีทีม AAFC ที่ลอสแองเจลิสดอน ตำแหน่ง fb และวิทยาลัยโอคลาโฮมา 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_en": "Which Round has a College of tulsa, and a Pick larger than 61?",
    "question_th": "รอบใดมีวิทยาลัยทัลซาและตัวเลือกที่ใหญ่กว่า 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_en": "Which Position has a Round smaller than 5, and a Pick of 5?",
    "question_th": "ตำแหน่งใดมีรอบที่น้อยกว่า 5 และเลือกเป็น 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_en": "Which College has a Name of hardy brown?",
    "question_th": "วิทยาลัยใดมีชื่อ 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_en": "Who was the winner for Peter Jackson Racing at Mallala Motor Sport Park?",
    "question_th": "ใครคือผู้ชนะของ Peter Jackson Racing ที่ 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_en": "What city had a series of atcc round 1?",
    "question_th": "เมืองไหนมีซีรีย์ atcc รอบ 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_en": "Who was the winner for ASTC round 8?",
    "question_th": "ใครคือผู้ชนะ ASTC รอบ 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_en": "Which Nationality has a College/Junior/Club Team (League) of swift current broncos (wchl)?",
    "question_th": "สัญชาติใดมีทีมวิทยาลัย/จูเนียร์/คลับ (ลีก) ของ 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_en": "Which Round has a College/Junior/Club Team (League) of hamilton red wings (oha), and a Position of rw?",
    "question_th": "รอบใดมีทีมระดับวิทยาลัย/รุ่นจูเนียร์/สโมสร (ลีก) ของแฮมิลตัน เรด วิงส์ (โอฮา) และตำแหน่ง 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_en": "Which Round has a Position of lw, and a College/Junior/Club Team (League) of swift current broncos (wchl)?",
    "question_th": "รอบใดมีตำแหน่ง lw และทีมวิทยาลัย/จูเนียร์/คลับ (ลีก) ของ 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_en": "What is round 10's nationality?",
    "question_th": "รอบ 10 สัญชาติอะไร?",
    "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_en": "Which driver was in 8 rounds with a chassis of dallara f306?",
    "question_th": "นักแข่งคนไหนที่ลงแข่ง 8 รอบด้วยแชสซีของ 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_en": "How many rounds did Nil Montserrat drive in?",
    "question_th": "Nil Montserrat ขับไปกี่รอบ?",
    "context": "CREATE TABLE table_name_94 (rounds VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT rounds FROM table_name_34 WHERE chassis = \"dallara f308\" AND driver = \"germán sánchez\"",
    "question_en": "How many rounds did germán sánchez drive in where the chassis was dallara f308?",
    "question_th": "เจอร์มัน ซานเชซ ขับไปกี่รอบโดยที่แชสซีคือ 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_en": "What is the chassis for Augusto Scalbi on Team RP Motorsport?",
    "question_th": "แชสซีของ Augusto Scalbi ใน 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_en": "In what Week was the Result W 24-17?",
    "question_th": "ผลลัพธ์ 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_en": "What was the Week number on November 20, 1977?",
    "question_th": "เลขที่สัปดาห์ของวันที่ 20 พฤศจิกายน พ.ศ. 2520 คืออะไร?",
    "context": "CREATE TABLE table_name_54 (week INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_45 WHERE score = \"2:1\"",
    "question_en": "Who played hte home team when the score was 2:1?",
    "question_th": "ใครเคยเล่นทีมเหย้าเมื่อสกอร์ 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_en": "Who was the home team when real juventud was the away team when there were more than 1189 in attendance?",
    "question_th": "ใครคือเจ้าบ้าน เมื่อยูเวนตุด เรอัล เป็นทีมเยือน เมื่อมีผู้ชมมากกว่า 1,189 คน?",
    "context": "CREATE TABLE table_name_4 (home VARCHAR, attendance VARCHAR, away VARCHAR)"
  },
  {
    "answer": "SELECT AVG(attendance) FROM table_name_6 WHERE away = \"marathon\"",
    "question_en": "What was the average attendance when marathon was the away team?",
    "question_th": "ผู้เข้าร่วมโดยเฉลี่ยเมื่อมาราธอนเป็นทีมเยือนคือเท่าใด",
    "context": "CREATE TABLE table_name_6 (attendance INTEGER, away VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_90 WHERE score = \"0:1\"",
    "question_en": "Who was the home team when the score was 0:1?",
    "question_th": "เจ้าบ้านเมื่อสกอร์ 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_en": "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?",
    "question_th": "บริษัทใดในอุตสาหกรรมน้ำมันและก๊าซที่มีสินทรัพย์ (พันล้านดอลลาร์) ต่ำกว่า 235.45, ยอดขาย (พันล้านดอลลาร์) มากกว่า 159.29 และทำกำไร (พันล้านดอลลาร์) ที่ 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_en": "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?",
    "question_th": "บริษัทที่มีสำนักงานใหญ่ในสหรัฐอเมริกา ในอุตสาหกรรมการธนาคาร และมียอดขาย (พันล้านดอลลาร์) น้อยกว่า 98.64 นำเข้ามาได้กี่กำไร?",
    "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_en": "What test had 49,608 students?",
    "question_th": "ข้อสอบอะไรมีนักเรียน 49,608 คน?",
    "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_en": "What was the Tie no when the Home team was Ramsgate?",
    "question_th": "เสมอไม่คืออะไรเมื่อทีมเหย้าคือแรมส์เกต?",
    "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_en": "What was the Tie no when the Home team was carshalton athletic?",
    "question_th": "เสมอไม่คืออะไรเมื่อทีมเหย้าเป็นคาร์แชลตันแอธเลติก?",
    "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_en": "Who was the away team when the home team was Ramsgate?",
    "question_th": "ทีมเยือนคือใครเมื่อเจ้าบ้านเป็นแรมส์เกต?",
    "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_en": "What was the home team when the Tie no was 60?",
    "question_th": "เจ้าบ้านเป็นทีมไหนเมื่อเสมอกันที่ 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_en": "What was the Tie no when the Home team was wealdstone?",
    "question_th": "Tie no คืออะไรเมื่อทีมเหย้าเป็น Weldstone?",
    "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_en": "Which format has january 21, 2002 as the date?",
    "question_th": "รูปแบบใดมีวันที่ 21 มกราคม 2545 เป็นวันที่",
    "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_en": "What format has France as the region, with Universal Licensing Music (ulm) as the label?",
    "question_th": "ฝรั่งเศสเป็นภูมิภาคในรูปแบบใด โดยมี Universal Licensing Music (ulm) เป็นป้ายกำกับ",
    "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_en": "What label has the netherlands as the region, and magik muzik 802-1 as the catalog?",
    "question_th": "ป้ายใดมีเนเธอร์แลนด์เป็นภูมิภาคและมี magik muzik 802-1 เป็นแคตตาล็อก",
    "context": "CREATE TABLE table_name_83 (label VARCHAR, region VARCHAR, catalog VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_71 WHERE time = \"3:00\"",
    "question_en": "What is the record at 3:00?",
    "question_th": "บันทึกตอน 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_en": "What opponent used the Ko method, and a 6-0 record?",
    "question_th": "คู่ต่อสู้คนไหนใช้วิธี Ko และทำสถิติ 6-0?",
    "context": "CREATE TABLE table_name_12 (opponent VARCHAR, method VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT ground FROM table_name_88 WHERE home_team = \"adelaide\"",
    "question_en": "What is the ground of the game where the home team was Adelaide?",
    "question_th": "พื้นฐานของเกมที่เจ้าบ้านคือแอดิเลดคืออะไร?",
    "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_en": "What is Manufacturer, when Quantity Made is 2, and when Year Made is 1884?",
    "question_th": "ผู้ผลิตคืออะไร เมื่อปริมาณที่ผลิตคือ 2 และปีที่ผลิตคือ 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_en": "What is Quantity Made, when Manufacturer is \"Baldwin\"?",
    "question_th": "ปริมาณที่ผลิตคืออะไร เมื่อผู้ผลิตคือ \"บอลด์วิน\"",
    "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_en": "What is Wheel Arrangement, when Manufacturer is \"Baldwin\", and when Quantity Made is 12?",
    "question_th": "การจัดเรียงล้อคืออะไร เมื่อผู้ผลิตคือ \"บอลด์วิน\" และเมื่อปริมาณที่ผลิตคือ 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 — oooo — american\"",
    "question_en": "What is Quantity Made, when Year Made is \"4-4-0 — oooo — american\"?",
    "question_th": "ปริมาณที่ผลิตคืออะไร เมื่อปีที่ผลิตคือ \"4-4-0 — oooo — 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_en": "What is Wheel Arrangement, when Quantity Made is 44?",
    "question_th": "การจัดเรียงล้อคืออะไร เมื่อปริมาณที่ผลิตคือ 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 — oooo — american\"",
    "question_en": "What is Quantitiy Made, when Quantity Preserved is \"4-4-0 — oooo — american\"?",
    "question_th": "Quantitiy Made คืออะไร เมื่อปริมาณที่เก็บรักษาไว้คือ \"4-4-0 — oooo — 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_en": "What's the highest game found when the record is 2-1?",
    "question_th": "เกมสูงสุดที่พบเมื่อสถิติคือ 2-1?",
    "context": "CREATE TABLE table_name_10 (game INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_8 WHERE opponent = \"houston\"",
    "question_en": "What was the game date when the opponent was Houston?",
    "question_th": "วันที่แข่งขันคือวันที่ใดที่คู่ต่อสู้คือฮูสตัน?",
    "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_en": "Can you tell me the highest Season that has the Home Team of chonburi, and the Away Team of melbourne victory?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าฤดูกาลสูงสุดที่ทีมเหย้าของชลบุรีและทีมเยือนของเมลเบิร์นได้รับชัยชนะ?",
    "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_en": "Can you tell me the Season that has the Score of 1-0?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าฤดูกาลที่มีคะแนน 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_en": "WHAT IS THE LOWEST $50-1/2 OZ COIN WITH A 1997 YEAR AND $25-1/4 OZ LARGER THAN $27,100?",
    "question_th": "เหรียญ $50-1/2 ออนซ์ต่ำสุดในปี 1997 และ $25-1/4 ออนซ์ที่มากกว่า $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_en": "WHAT IS THE LOWEST $25-1/4 OZ COIN WITH A $10-1/10 OZ OF $70,250?",
    "question_th": "เหรียญ $25-1/4 ออนซ์ต่ำสุดที่มีราคา $10-1/10 ออนซ์เท่ากับ $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_en": "What is the model number for the GPU and 320 mhz?",
    "question_th": "หมายเลขรุ่นของ GPU และ 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_en": "What is the socket of the model atom e680t?",
    "question_th": "ซอคเก็ตของรุ่น 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_en": "What is the memory for ct80618005844ab?",
    "question_th": "หน่วยความจำสำหรับ 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_en": "Which Average Cards a game has a Season of 1997/1998, and a Games larger than 38?",
    "question_th": "การ์ดเฉลี่ยใดที่เกมมีฤดูกาล 1997/1998 และเกมที่ใหญ่กว่า 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_en": "Which Red Cards has a Season of 1998/1999, and a Games larger than 41?",
    "question_th": "ใบแดงใดที่มีฤดูกาล 1998/1999 และเกมที่ใหญ่กว่า 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_en": "Which Games has a Season of 2003/2004, and a Red Cards smaller than 5?",
    "question_th": "เกมใดมีฤดูกาล 2003/2004 และมีใบแดงน้อยกว่า 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_en": "Which Average Cards a game has a Season of 2004/2005, and a Red Cards larger than 3?",
    "question_th": "ไพ่เฉลี่ยใบใดในเกมที่มีฤดูกาล 2004/2005 และใบแดงที่ใหญ่กว่า 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_en": "Which Yellow Cards has a Season of 1999/2000?",
    "question_th": "ใบเหลืองใบใดที่มีฤดูกาล 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_en": "Which Goals have Ends of 30 june 2010, and Since larger than 2007?",
    "question_th": "เป้าหมายใดสิ้นสุดวันที่ 30 มิถุนายน 2553 และมีขนาดใหญ่กว่าปี 2550",
    "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_en": "Which Name has Ends of 30 june 2010, and a Nation of eng, and Since larger than 2007?",
    "question_th": "ชื่อใดสิ้นสุดวันที่ 30 มิถุนายน 2553 และประเทศชาติอังกฤษและมีขนาดใหญ่กว่าปี 2550",
    "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_en": "What was Bryan Clay's react time?",
    "question_th": "เวลาตอบสนองของ Bryan Clay คืออะไร",
    "context": "CREATE TABLE table_name_94 (react INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_92 WHERE name = \"dmitriy karpov\"",
    "question_en": "What country did Dmitriy Karpov represent?",
    "question_th": "Dmitriy Karpov เป็นตัวแทนประเทศใด",
    "context": "CREATE TABLE table_name_92 (country VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT plural FROM table_name_33 WHERE singular = \"tor (your)\"",
    "question_en": "What is Plural, when Singular is tor (your)?",
    "question_th": "พหูพจน์คืออะไร เมื่อเอกพจน์คือ tor (ของคุณ)?",
    "context": "CREATE TABLE table_name_33 (plural VARCHAR, singular VARCHAR)"
  },
  {
    "answer": "SELECT proximity FROM table_name_2 WHERE honor = \"p\" AND singular = \"ẽr (his/her/its)\"",
    "question_en": "What is Proximity, when Honor is P, and when Singular is ẽr (his/her/its)?",
    "question_th": "ความใกล้ชิดคืออะไร เมื่อ Honor คือ P และเมื่อเอกพจน์คือ ẽr (ของเขา/เธอ/มัน)",
    "context": "CREATE TABLE table_name_2 (proximity VARCHAR, honor VARCHAR, singular VARCHAR)"
  },
  {
    "answer": "SELECT MIN(subject) FROM table_name_58 WHERE plural = \"tãder (their)\"",
    "question_en": "What is the lowest Subject, when Plural is tãder (their)?",
    "question_th": "หัวเรื่องที่ต่ำที่สุดคืออะไร เมื่อพหูพจน์คือ tãder (ของพวกเขา)?",
    "context": "CREATE TABLE table_name_58 (subject INTEGER, plural VARCHAR)"
  },
  {
    "answer": "SELECT proximity FROM table_name_67 WHERE plural = \"amader (our)\"",
    "question_en": "What is Proximity, when Plural is amader (our)?",
    "question_th": "Proximity คืออะไร เมื่อพหูพจน์คือ amader (ของเรา)",
    "context": "CREATE TABLE table_name_67 (proximity VARCHAR, plural VARCHAR)"
  },
  {
    "answer": "SELECT honor FROM table_name_97 WHERE singular = \"ẽr (his/her/its)\"",
    "question_en": "What is Honor, when Singular is ẽr (his/her/its)?",
    "question_th": "Honor คืออะไร เมื่อเอกพจน์คือ ẽr (ของเขา/เธอ/มัน)",
    "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_en": "what is the f/laps when the season is 2011 and races is 18?",
    "question_th": "f/laps ในฤดูกาล 2011 และรอบการแข่งขันคือ 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_en": "what is the wins when the f/laps is test driver and team is lotus racing?",
    "question_th": "อะไรคือชัยชนะเมื่อ f/laps เป็นนักแข่งทดสอบและทีมแข่งโลตัส?",
    "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_en": "what is the poles when the wins is 0 and points is 0?",
    "question_th": "เสาคืออะไรเมื่อชนะเป็น 0 และคะแนนเป็น 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_en": "What score won $36,090?",
    "question_th": "คะแนนอะไรชนะ $36,090?",
    "context": "CREATE TABLE table_name_65 (score VARCHAR, money___$__ VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_39 WHERE player = \"larry nelson\"",
    "question_en": "What was Larry Nelson's final score?",
    "question_th": "คะแนนสุดท้ายของแลร์รี เนลสันคือเท่าไร",
    "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_en": "What is the average attendance of the game with 38 opponent and less than 14 Falcons points?",
    "question_th": "ผู้เข้าร่วมเกมโดยเฉลี่ยโดยมีคู่ต่อสู้ 38 คนและมีคะแนนฟอลคอนส์น้อยกว่า 14 แต้มเป็นเท่าใด",
    "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_en": "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?",
    "question_th": "จำนวนการแพ้ทั้งหมดของทีมที่มีเกมน้อยกว่า 14 ชนะน้อยกว่า 3 ในการประชุม Maac ที่ 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_en": "What is number 4's title?",
    "question_th": "หมายเลข 4 ชื่ออะไร",
    "context": "CREATE TABLE table_name_36 (title VARCHAR, number VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(number) FROM table_name_52 WHERE born = \"1368\"",
    "question_en": "How many people were born in 1368?",
    "question_th": "เกิดในปี 1368 มีกี่คน?",
    "context": "CREATE TABLE table_name_52 (number VARCHAR, born VARCHAR)"
  },
  {
    "answer": "SELECT mother FROM table_name_90 WHERE number = 12",
    "question_en": "Who was number 12's mother?",
    "question_th": "แม่ของหมายเลข 12 คือใคร?",
    "context": "CREATE TABLE table_name_90 (mother VARCHAR, number VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(week) FROM table_name_79 WHERE date = \"dec. 19\"",
    "question_en": "What was the week number when they played on Dec. 19?",
    "question_th": "สัปดาห์ที่พวกเขาเล่นในวันที่ 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_en": "What is the average number of students in East Lansing, MI?",
    "question_th": "จำนวนนักเรียนโดยเฉลี่ยใน 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_en": "What is the lowest number of students at the community college?",
    "question_th": "วิทยาลัยชุมชนมีจำนวนนักเรียนน้อยที่สุดคือเท่าไร?",
    "context": "CREATE TABLE table_name_8 (founded INTEGER, affiliation VARCHAR)"
  },
  {
    "answer": "SELECT AVG(score) FROM table_name_70 WHERE champion = \"joanne carner\"",
    "question_en": "What is Joanne Carner's average score in Canadian Women's Open games that she has won?",
    "question_th": "คะแนนเฉลี่ยของ Joanne Carner ในเกม Canadian Women's Open ที่เธอชนะคือเท่าใด",
    "context": "CREATE TABLE table_name_70 (score INTEGER, champion VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_73 WHERE champion = \"jocelyne bourassa\"",
    "question_en": "What country does jocelyne bourassa play for?",
    "question_th": "โจเซลีน บูรัสซ่า ลงเล่นให้กับประเทศใด?",
    "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µm\" AND class = \"f6\"",
    "question_en": "Which  Performance has a Test Standard of bs en779, and a Particulate size approaching 100% retention of >2µm, and a Class of f6?",
    "question_th": "ประสิทธิภาพใดมีมาตรฐานการทดสอบ bs en779 และขนาดอนุภาคที่เข้าใกล้ 100% ที่การกักเก็บ >2µm และคลาสที่ 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_en": "Which Performance has a Usage of hepa and a Class of h14?",
    "question_th": "ประสิทธิภาพใดมีการใช้งาน hepa และคลาส 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_en": "Which Particulate size approaching 100% retention has a Usage of semi hepa and a Class of h12?",
    "question_th": "ขนาดอนุภาคใดที่เข้าใกล้การกักเก็บ 100% มีการใช้งานแบบกึ่งเฮปาและคลาสเป็น 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_en": "Which Test Standard has a Usage of secondary filters, and a Class of f5? Question 4",
    "question_th": "มาตรฐานการทดสอบใดที่มีการใช้ตัวกรองรอง และคลาสที่ f5 คำถามที่ 4",
    "context": "CREATE TABLE table_name_28 (test_standard VARCHAR, usage VARCHAR, class VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_7 WHERE to_par = \"–1\" AND player = \"mick soli\"",
    "question_en": "Which Score has a To par of –1, and a Player of mick soli?",
    "question_th": "สกอร์ใดที่มีพาร์ถึง –1 และเป็นผู้เล่นของมิค โซลี?",
    "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_en": "Which Score has a Place of t1, and a Player of hubert green?",
    "question_th": "คะแนนใดมีอันดับ t1 และผู้เล่นของฮิวเบิร์ต กรีน",
    "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_en": "Which Country has a Score of 69, and a Player of mick soli?",
    "question_th": "ประเทศใดมีคะแนน 69 และผู้เล่นของมิค โซลิ?",
    "context": "CREATE TABLE table_name_92 (country VARCHAR, score VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_38 WHERE place = \"t1\"",
    "question_en": "Which Country has a Place of t1?",
    "question_th": "ประเทศใดมีสถานที่ 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_en": "Where is the moving from location with a transfer window of summer and the source kerkida.net?",
    "question_th": "การย้ายจากตำแหน่งที่มีหน้าต่างโอนย้ายของซัมเมอร์อยู่ที่ไหนและแหล่งข่าว 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_en": "Which name has the source apoelfc.com.cy and a type of transfer?",
    "question_th": "ชื่อใดมีที่มา apoelfc.com.cy และประเภทการโอน?",
    "context": "CREATE TABLE table_name_94 (name VARCHAR, source VARCHAR, type VARCHAR)"
  },
  {
    "answer": "SELECT fate FROM table_name_48 WHERE name = \"san pablo\"",
    "question_en": "What is the Fate of the San Pablo ship?",
    "question_th": "ชะตากรรมของเรือซานปาโบลคืออะไร?",
    "context": "CREATE TABLE table_name_48 (fate VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_55 WHERE name = \"circe shell\"",
    "question_en": "What is the date of attack of the Circe Shell Ship?",
    "question_th": "วันที่โจมตีของเรือ Circe Shell คือเมื่อใด",
    "context": "CREATE TABLE table_name_55 (date VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT fuel_system FROM table_name_95 WHERE years = \"1960-62\"",
    "question_en": "What fuel system was used in 1960-62?",
    "question_th": "ปี 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_en": "How much power does the 1500 model have with a displacement of 1490cc?",
    "question_th": "รุ่น 1500 มีความจุเครื่องยนต์ 1,490cc. มีกำลังเท่าไร?",
    "context": "CREATE TABLE table_name_22 (power VARCHAR, model VARCHAR, displacement VARCHAR)"
  },
  {
    "answer": "SELECT years FROM table_name_44 WHERE displacement = \"1816cc\"",
    "question_en": "Which years have a displacement of 1816cc?",
    "question_th": "ปีไหนมีปริมาตรกระบอกสูบ 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_en": "How much power does the fuel injection system have with a displacement of 1991cc?",
    "question_th": "ระบบฉีดเชื้อเพลิงมีกำลังเท่าใดในปริมาตรกระบอกสูบ 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_en": "Which fuel system has a displacement of 1490cc?",
    "question_th": "ระบบเชื้อเพลิงใดมีปริมาตรกระบอกสูบ 1,490cc?",
    "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_en": "Which fuel system has a displacement of 1500cc for the Berlina model?",
    "question_th": "ระบบเชื้อเพลิงใดที่มีปริมาตรกระบอกสูบ 1,500cc สำหรับรุ่น Berlina?",
    "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_en": "What is the lowest Industry, when Year is greater than 2005, and when Agriculture is greater than 11?",
    "question_th": "อุตสาหกรรมที่ต่ำที่สุดคืออะไร เมื่อปีมากกว่าปี 2005 และเมื่อเกษตรกรรมมีค่ามากกว่า 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_en": "What is the average Industry, when Agriculture is greater than 11?",
    "question_th": "อุตสาหกรรมโดยเฉลี่ยคืออะไร เมื่อเกษตรกรรมมีค่ามากกว่า 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_en": "When the points scored was over 110.25%, what's the average amount lost?",
    "question_th": "เมื่อคะแนนที่ได้เกิน 110.25% ค่าเฉลี่ยที่เสียไปคือเท่าไร?",
    "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_en": "If the points scored were 93.45%, what's the lowest amount of games lost?",
    "question_th": "หากคะแนนที่ได้คือ 93.45% จำนวนเกมที่แพ้น้อยที่สุดคือเท่าใด",
    "context": "CREATE TABLE table_name_27 (lost INTEGER, _percentage_pts VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(rank) FROM table_name_14 WHERE director = \"kevin costner\"",
    "question_en": "What is the rank of the film directed by Kevin Costner?",
    "question_th": "ภาพยนตร์ที่กำกับโดยเควิน คอสเนอร์อยู่ในอันดับใด",
    "context": "CREATE TABLE table_name_14 (rank VARCHAR, director VARCHAR)"
  },
  {
    "answer": "SELECT director FROM table_name_96 WHERE gross = \"$200,512,643\"",
    "question_en": "What director grossed $200,512,643",
    "question_th": "ผู้กำกับคนไหนทำรายได้ 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_en": "What is the average rank of the movie from Paramount Studios that grossed $200,512,643?",
    "question_th": "อันดับเฉลี่ยของภาพยนตร์จาก Paramount Studios ที่มีรายได้ 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_en": "Who directed Teenage Mutant Ninja Turtles?",
    "question_th": "ใครเป็นผู้กำกับ 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_en": "What director ranked higher than 1 from Universal Studios and grossed $201,957,688?",
    "question_th": "ผู้กำกับคนไหนติดอันดับสูงกว่า 1 จาก Universal Studios และทำรายได้ 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_en": "When the rider is Garry Mccoy and the manufacturer was Kawasaki, what was the time retired?",
    "question_th": "เมื่อนักบิดคือ Garry McCoy และผู้ผลิตคือ Kawasaki เมื่อไหร่จะเลิกใช้?",
    "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_en": "What's the highest amount of laps Garry Mccoy drove?",
    "question_th": "Garry McCoy ขับได้รอบสูงสุดคือเท่าใด",
    "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_en": "If the manufacturer is Proton Kr and the grid was over 10, what was the time retired?",
    "question_th": "ถ้าผู้ผลิตคือ Proton Kr และกริดเกิน 10 แล้วจะเลิกใช้เวลาใด?",
    "context": "CREATE TABLE table_name_79 (time_retired VARCHAR, grid VARCHAR, manufacturer VARCHAR)"
  },
  {
    "answer": "SELECT height FROM table_name_38 WHERE year = 1974",
    "question_en": "The year 1974 has what listed as the Height?",
    "question_th": "ปี พ.ศ. 2517 มีสิ่งใดบ้างที่ระบุว่าเป็นส่วนสูง?",
    "context": "CREATE TABLE table_name_38 (height VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_59 WHERE structure = \"omega transmitter chabrier\"",
    "question_en": "The OMEGA transmitter Chabrier has what country listed?",
    "question_th": "Chabrier เครื่องส่งสัญญาณ OMEGA มีรายชื่อประเทศใดบ้าง?",
    "context": "CREATE TABLE table_name_59 (country VARCHAR, structure VARCHAR)"
  },
  {
    "answer": "SELECT structure FROM table_name_83 WHERE year < 2009 AND continent = \"africa\"",
    "question_en": "Listed with a continent of Africa and before 2009 this structure is called what?",
    "question_th": "จดทะเบียนกับทวีปแอฟริกา และก่อนปี 2009 โครงสร้างนี้เรียกว่าอะไร?",
    "context": "CREATE TABLE table_name_83 (structure VARCHAR, year VARCHAR, continent VARCHAR)"
  },
  {
    "answer": "SELECT height FROM table_name_40 WHERE year = 1972",
    "question_en": "The year 1972 has what written in Height column?",
    "question_th": "ปี 2515 มีอะไรเขียนอยู่ในคอลัมน์ส่วนสูง?",
    "context": "CREATE TABLE table_name_40 (height VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT continent FROM table_name_30 WHERE country = \"united states\"",
    "question_en": "What is the Continent that also has the United States listed as a country?",
    "question_th": "ทวีปใดที่มีสหรัฐอเมริกาอยู่ในรายชื่อประเทศด้วย",
    "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_en": "What is the highest number of ends won of 47 Ends Lost and a Shot % less than 73?",
    "question_th": "จำนวนการจบที่ชนะสูงสุดจาก 47 ครั้งแพ้และเปอร์เซ็นต์การยิงน้อยกว่า 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_en": "What Poll was on April 14 of 13?",
    "question_th": "โพลคืออะไรในวันที่ 14 เมษายน 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_en": "What is the rank for Mar 17 when the April 21 rank is 10?",
    "question_th": "อันดับของวันที่ 17 มี.ค. เมื่อวันที่ 21 เม.ย. เป็นอันดับที่ 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_en": "What is the Mar 24 rank when the May 26 is 13, and the May 12 is 6?",
    "question_th": "อันดับวันที่ 24 มี.ค. คือวันที่ 26 พ.ค. คือ 13 และวันที่ 12 พ.ค. คือ 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_en": "What is the April 28 rank when the Mar 24 is 17?",
    "question_th": "วันที่ 28 เมษายน 24 มี.ค. คือ 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_en": "What is the April 14 rank when the Mar 3rd is nr, and the April 21 is 13?",
    "question_th": "วันที่ 14 เมษายน คือวันที่ 3 มีนาคม และวันที่ 21 เมษายน คือ 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_en": "What is the April 28th rank when the Final is 20, and Mar 17 is 22?",
    "question_th": "อันดับที่ 28 เมษายน เมื่อรอบชิงชนะเลิศคือ 20 และ 17 มี.ค. คือ 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_en": "What is the total number of Podiums, when Position is \"2nd\", when Wins is less than 6, and when Poles is greater than 0?",
    "question_th": "จำนวนโพเดียมทั้งหมดคือเท่าไร เมื่อตำแหน่งคือ \"อันดับ 2\" เมื่อชนะน้อยกว่า 6 และเมื่อโพลมากกว่า 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_en": "What is the sum of Poles, when Season is greater than 2004, and when Podiums is less than 1?",
    "question_th": "ผลรวมของโปแลนด์เมื่อฤดูกาลมากกว่าปี 2004 และเมื่อโพเดียมน้อยกว่า 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_en": "What is the average Poles, when Wins is 0, when Position is \"nc\", and when Season is before 2004?",
    "question_th": "ค่าเฉลี่ยของโปแลนด์คือเท่าไร เมื่อชนะเป็น 0 เมื่อตำแหน่งเป็น \"nc\" และเมื่อใดเป็นฤดูกาลก่อนปี 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_en": "What is the sum of Poles, when Season is before 2005, when Position is \"2nd\", and when Wins is less than 6?",
    "question_th": "ผลรวมของโปแลนด์เมื่อฤดูกาลก่อนปี 2005 เมื่อตำแหน่งคือ \"อันดับ 2\" และเมื่อชนะน้อยกว่า 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_en": "What is the 2012 club of the cf pos. player?",
    "question_th": "ตำแหน่ง cf ของสโมสรปี 2012 คืออะไร ผู้เล่น?",
    "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_en": "What are the years in the ACC of an institution that was founded before 1885 and is located in College Park, Maryland?",
    "question_th": "ACC ของสถาบันที่ก่อตั้งขึ้นก่อนปี 1885 และตั้งอยู่ในเมืองคอลเลจพาร์ค รัฐแมริแลนด์คือกี่ปี",
    "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_en": "Who was the partner for the tournament in Lyon, France?",
    "question_th": "ใครคือคู่หูของทัวร์นาเมนต์ที่เมืองลียง ประเทศฝรั่งเศส?",
    "context": "CREATE TABLE table_name_29 (partnering VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_78 WHERE tournament = \"milan, italy\"",
    "question_en": "Who were the opponents for the event in Milan, Italy?",
    "question_th": "ใครคือคู่แข่งของงานนี้ที่เมืองมิลาน ประเทศอิตาลี?",
    "context": "CREATE TABLE table_name_78 (opponent VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_55 WHERE date = \"december 1, 1968\"",
    "question_en": "What was the record on the date of december 1, 1968?",
    "question_th": "บันทึก ณ วันที่ 1 ธันวาคม พ.ศ. 2511 คืออะไร?",
    "context": "CREATE TABLE table_name_55 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_89 WHERE date = \"september 15, 1968\"",
    "question_en": "What was the record on the date of september 15, 1968?",
    "question_th": "บันทึก ณ วันที่ 15 กันยายน พ.ศ. 2511 คืออะไร?",
    "context": "CREATE TABLE table_name_89 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_27 WHERE date = \"november 10, 1968\"",
    "question_en": "What was the record on the date of november 10, 1968?",
    "question_th": "บันทึกเมื่อวันที่ 10 พฤศจิกายน พ.ศ. 2511 คืออะไร?",
    "context": "CREATE TABLE table_name_27 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MIN(game) FROM table_name_95 WHERE date = \"february 28\"",
    "question_en": "What was the first game played on February 28?",
    "question_th": "เกมแรกที่เล่นในวันที่ 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_en": "What is the sum of Altrincham's Points 2 when they had more than 52 Goals For?",
    "question_th": "ผลรวมของคะแนน 2 ของอัลทริงแคมเมื่อพวกเขาทำประตูได้มากกว่า 52 ประตูเป็นเท่าใด?",
    "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_en": "What date was the team @ Detroit?",
    "question_th": "ทีม @ ดีทรอยต์ วันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_28 (date VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_8 WHERE high_assists = \"maurice williams (7)\"",
    "question_en": "What was the score of the game when Maurice Williams (7) had the high assists?",
    "question_th": "ในเกมที่มอริซ วิลเลียมส์ (7) ทำสกอร์ได้สูงขนาดไหน?",
    "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_en": "What was the record of the game when Lebron James (4) had the high assists?",
    "question_th": "สถิติของเกมเมื่อเลอบรอน เจมส์ (4) มีแอสซิสต์สูงเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_43 (record VARCHAR, high_assists VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(game) FROM table_name_58 WHERE team = \"@ new york\"",
    "question_en": "What is the total of the game that the team was @ new york?",
    "question_th": "รวมเกมที่ทีมเป็น @นิวยอร์ก เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_58 (game VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT SUM(round) FROM table_name_40 WHERE player = \"joe taylor\"",
    "question_en": "Which round was Joe Taylor selected in?",
    "question_th": "โจ เทย์เลอร์ ถูกเลือกเข้ารอบไหน?",
    "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_en": "Which player went to Wake Forest and was selected with a pick after 145?",
    "question_th": "ผู้เล่นคนไหนที่ไป Wake Forest และได้รับเลือกหลังจาก 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_en": "How many picks were from round 6?",
    "question_th": "รอบที่ 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_en": "What is the largest round of a pick smaller than 92 from Toledo University?",
    "question_th": "รอบที่ใหญ่ที่สุดของการเลือกที่เล็กกว่า 92 จาก 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_en": "Which nationality is Dick Walker?",
    "question_th": "ดิ๊ก วอล์คเกอร์ เป็นคนสัญชาติใด",
    "context": "CREATE TABLE table_name_35 (nationality VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_9 WHERE pick > 4 AND overall = 21",
    "question_en": "What college has a pick greater than 4 and an overall of 21?",
    "question_th": "วิทยาลัยใดมีตัวเลือกมากกว่า 4 และรวม 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_en": "What is the overall sum of round 3?",
    "question_th": "ผลรวมรอบ 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_en": "What is the position of the player with a round less than 8 and an overall of 48?",
    "question_th": "ผู้เล่นที่มีรอบน้อยกว่า 8 และคะแนนรวม 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_en": "What is the position of the player from the college of North Carolina with an overall less than 100?",
    "question_th": "ตำแหน่งผู้เล่นจากวิทยาลัยนอร์ธแคโรไลนาที่มีคะแนนรวมไม่ถึง 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_en": "What is the sum of the pick in round 17?",
    "question_th": "ผลรวมของการเลือกในรอบ 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_en": "What was the 1st leg when team 2 was nov milenium?",
    "question_th": "ขาที่ 1 เมื่อทีมที่ 2 อายุครบ 100 ปีเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_7 (team_2 VARCHAR)"
  },
  {
    "answer": "SELECT 1 AS st_leg FROM table_name_25 WHERE team_1 = \"teteks\"",
    "question_en": "What was the 1st leg for a team 1 of Teteks?",
    "question_th": "เลกแรกของทีม 1 ของ 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ān\" AND 2006 = 167014 AND rank < 46",
    "question_en": "What is the sum of Date of Official Foundation of Municipality, when Province is \"Kermān\", when 2006 us \"167014\", and when Rank is less than 46?",
    "question_th": "ผลรวมของวันที่ก่อตั้งอย่างเป็นทางการของเทศบาลเมื่อจังหวัดคือ \"Kermān\" เมื่อ 2006 us \"167014\" และเมื่ออันดับน้อยกว่า 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_en": "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?",
    "question_th": "จำนวนอันดับทั้งหมดคือเท่าใด เมื่อวันที่ก่อตั้งเทศบาลอย่างเป็นทางการคือหลังปี 1926 เมื่อจังหวัดคือ \"Sistan และ Baluchestan\" และเมื่อปี 2006 มากกว่า 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īlān\" AND date_of_official_foundation_of_municipality > 1922 AND 2006 > 557366",
    "question_en": "What is the sum of Rank, when Province is Gīlān, when Date of Official Foundation of Municipality is after 1922, and when 2006 is greater than 557366?",
    "question_th": "ผลรวมของอันดับเมื่อจังหวัดคือกีลัน เมื่อวันที่ก่อตั้งเทศบาลอย่างเป็นทางการคือหลังปี 1922 และเมื่อปี 2006 มากกว่า 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_en": "What is the highest Rank, when Date of Official Foundation of Municipality is \"1952\", and when 2006 is less than 189120?",
    "question_th": "อันดับสูงสุดคือเมื่อวันที่ก่อตั้งเทศบาลอย่างเป็นทางการคือ \"1952\" และเมื่อปี 2006 น้อยกว่า 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_en": "What is Province, when 2006 is less than 153748, when Date of Official Foundation of Municipality is after 1958, and when City is \"Pakdasht\"?",
    "question_th": "จังหวัดคืออะไร เมื่อปี 2549 น้อยกว่า 153,748 เมื่อวันที่ก่อตั้งเทศบาลอย่างเป็นทางการคือหลังปี 1958 และเมื่อใดที่เมืองคือ \"ปากดาชต์\"",
    "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_en": "what is the place when the score is 68-70-68=206?",
    "question_th": "คะแนน 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_en": "what is the country when the score is 71-65-69=205?",
    "question_th": "แล้วคะแนนเป็นประเทศอะไร 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_en": "what is the country when the score is 72-68-67=207?",
    "question_th": "แล้วคะแนนเป็นประเทศอะไร 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_en": "what is the country when the score is 68-72-67=207?",
    "question_th": "แล้วคะแนนเป็นประเทศอะไร 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_en": "who is the player when the place is t5 and the score is 69-66-71=206?",
    "question_th": "ผู้เล่นคนไหนเมื่ออันดับ t5 และคะแนน 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_en": "What was the highest amount of laps when the class was v8 and the entrant was diet-coke racing?",
    "question_th": "จำนวนรอบสูงสุดเมื่อคลาสคือ v8 และผู้เข้าแข่งขันคือการแข่งรถไดเอทโค้ก?",
    "context": "CREATE TABLE table_name_13 (laps INTEGER, class VARCHAR, entrant VARCHAR)"
  },
  {
    "answer": "SELECT ties FROM table_name_38 WHERE wins = \"0\"",
    "question_en": "What is the tie with a win of 0?",
    "question_th": "เสมอกันด้วยการชนะ 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_en": "What is the final position with ties of 0, and wins of 5?",
    "question_th": "ตำแหน่งสุดท้ายที่เสมอกัน 0 และชนะ 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_en": "What are the ties for division of bafl division two south?",
    "question_th": "ความสัมพันธ์ในดิวิชั่น 2 ของบาฟล์ ดิวิชั่น 2 ใต้ มีอะไรบ้าง?",
    "context": "CREATE TABLE table_name_8 (ties VARCHAR, division VARCHAR)"
  },
  {
    "answer": "SELECT final_position FROM table_name_76 WHERE season = \"2008\"",
    "question_en": "What is the final position for the season 2008?",
    "question_th": "ตำแหน่งสุดท้ายของฤดูกาล 2008 คืออะไร?",
    "context": "CREATE TABLE table_name_76 (final_position VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT final_position FROM table_name_70 WHERE season = \"2012\"",
    "question_en": "What is the final position for the season 2012?",
    "question_th": "ตำแหน่งสุดท้ายของฤดูกาล 2012 คืออะไร?",
    "context": "CREATE TABLE table_name_70 (final_position VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT division FROM table_name_76 WHERE wins = \"2\"",
    "question_en": "What is the division with wins of 2?",
    "question_th": "ดิวิชั่นที่ชนะ 2 คืออะไร?",
    "context": "CREATE TABLE table_name_76 (division VARCHAR, wins VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_46 WHERE stadium = \"hietalahti stadium\"",
    "question_en": "What is the Location of the Hietalahti Stadium?",
    "question_th": "ที่ตั้งของ สนามกีฬา Hietalahti อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_46 (location VARCHAR, stadium VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_5 WHERE manager = \"job dragtsma\"",
    "question_en": "What is the Location of the Stadium where Job Dragtsma is Manager?",
    "question_th": "ที่ตั้งของสนามกีฬาที่จ็อบ ดรากต์มา เป็นผู้จัดการอยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_5 (location VARCHAR, manager VARCHAR)"
  },
  {
    "answer": "SELECT react FROM table_name_98 WHERE lane = 3 AND heat = 2",
    "question_en": "what is the react when the lane is 3 and heat is 2?",
    "question_th": "เมื่อเลนเป็น 3 และความร้อนเป็น 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_en": "what is the highest lane number for johan wissman when the react is less than 0.242?",
    "question_th": "หมายเลขเลนสูงสุดสำหรับ Johan Wissman เมื่อการตอบสนองน้อยกว่า 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_en": "what is the heat when the country is united kingdom and react is less than 0.232?",
    "question_th": "ความร้อนเมื่อประเทศเป็นสหราชอาณาจักรและปฏิกิริยาน้อยกว่า 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_en": "what is the react when the country is sweden and the lane is higher than 6?",
    "question_th": "จะเกิดปฏิกิริยาอย่างไรเมื่อประเทศเป็นสวีเดนและเลนสูงกว่า 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_en": "What is the 1st leg of the UEFA Champions League Compeition in the Skonto Riga Club?",
    "question_th": "เลกแรกของการแข่งขันยูฟ่าแชมเปียนส์ลีกในสคอนโตริกาคลับคืออะไร?",
    "context": "CREATE TABLE table_name_52 (competition VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_43 WHERE club = \"renova\"",
    "question_en": "Which season has the Renova Club?",
    "question_th": "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_en": "Which season has the Werder Bremen Club and is in Round 2r?",
    "question_th": "ฤดูกาลใดมีสโมสรแวร์เดอร์ เบรเมน และอยู่รอบ 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_en": "Which round is the UEFA Cup Compeition and the Kolkheti-1913 Poti Cub?",
    "question_th": "การแข่งขันยูฟ่า คัพ รอบใด และ โคลเคติ-1913 โปติคับ?",
    "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_en": "What is the PAL B, G, H for the PAL I 4.43361875mhz?",
    "question_th": "PAL B, G, H สำหรับ 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_en": "Which PAL M has a PAL I of 50HZ?",
    "question_th": "PAL M ใดมี PAL I 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_en": "What is the NTSC M for Pal M 525/60?",
    "question_th": "NTSC M สำหรับ 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_en": "What is the PAL M for the NTSC M 4.5mhz?",
    "question_th": "PAL M สำหรับ 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_en": "What is the sum of Year, when Rank is less than 19?",
    "question_th": "ผลรวมของปีเมื่ออันดับน้อยกว่า 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_en": "What is the sum of Year, when Publication is \"VH1\", and when Rank is greater than 11?",
    "question_th": "ผลรวมของปีเป็นเท่าใด เมื่อสิ่งพิมพ์เป็น \"VH1\" และเมื่ออันดับมากกว่า 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_en": "What is Accolade, when Year is less than 2002, when Publication is \"Rolling Stone\", and when Rank is \"48\"?",
    "question_th": "Accolade คืออะไร เมื่อปีน้อยกว่าปี 2002 เมื่อสิ่งพิมพ์คือ \"โรลลิ่งสโตน\" และเมื่ออันดับคือ \"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_en": "What is the lowest Year, when Rank is greater than 85?",
    "question_th": "ปีต่ำสุดคือปีใดเมื่ออันดับมากกว่า 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_en": "What is Accolade, when Country is \"United States\", and when Year is \"1999\"?",
    "question_th": "Accolade คืออะไร เมื่อประเทศคือ \"สหรัฐอเมริกา\" และเมื่อปีคือ \"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_en": "What is Pick, when Player is \"Dexter Bailey\"?",
    "question_th": "Pick คืออะไร เมื่อผู้เล่นคือ \"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_en": "What is the sum of Round, when Nationality is \"United States\", and when Pick is \"125\"?",
    "question_th": "ผลรวมของรอบเมื่อสัญชาติคือ \"สหรัฐอเมริกา\" และเมื่อเลือกคือ \"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_en": "What is Round, when School/Club Team is \"Tennessee-Chattanooga\"?",
    "question_th": "รอบคืออะไร เมื่อทีมโรงเรียน/สโมสรคือ \"เทนเนสซี-แชตตานูกา\"",
    "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_en": "What is the average Pick, when Player is \"Willie White\",and when Round is less than 2?",
    "question_th": "การเลือกโดยเฉลี่ยคือเท่าไร เมื่อผู้เล่นคือ \"วิลลี่ ไวท์\" และเมื่อรอบน้อยกว่า 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_en": "What is the total prominence in ft of the peak of kangchenjunga central, which has a prominence in m less than 32?",
    "question_th": "ความโดดเด่นโดยรวมเป็นฟุตของยอดเขาคังเชนจุงกาตอนกลาง ซึ่งมีความโดดเด่นในหน่วย m น้อยกว่า 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_en": "What is the highest prominence in ft of the peak with a prominence in m less than 103?",
    "question_th": "ความโดดเด่นสูงสุดในหน่วยฟุตของจุดสูงสุดโดยมีความโดดเด่นในหน่วย m น้อยกว่า 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_en": "What was the result when the attendance was 78,793?",
    "question_th": "ผลเป็นอย่างไรเมื่อมีผู้เข้าร่วม 78,793 คน?",
    "context": "CREATE TABLE table_name_53 (result VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_79 WHERE result = \"bye\"",
    "question_en": "What was the attendance when the result was a bye?",
    "question_th": "ผู้เข้าร่วมเป็นอย่างไรบ้างเมื่อผลการแข่งขันคือลาก่อน?",
    "context": "CREATE TABLE table_name_79 (attendance VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_77 WHERE week = 10",
    "question_en": "What was the attendance total for week 10?",
    "question_th": "จำนวนผู้เข้าร่วมทั้งหมดสำหรับสัปดาห์ที่ 10 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_77 (attendance VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_32 WHERE week = 7",
    "question_en": "What's the game date for week 7?",
    "question_th": "สัปดาห์ที่ 7 เกมวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_32 (date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT SUM(round) FROM table_name_9 WHERE pick = 7",
    "question_en": "WHAT IS THE ROUND WITH PICK OF 7?",
    "question_th": "รอบที่เลือกจาก 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_en": "WHAT IS THE PICK WITH K POSITION AND OVERALL SMALLER THAN 181?",
    "question_th": "ตัวเลือกที่มีตำแหน่ง K และโดยรวมเล็กกว่า 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_en": "WHAT IS THE ROUND FROM MICHIGAN COLLEGE, AND OVERALL LARGER THAN 37?",
    "question_th": "รอบจากวิทยาลัยมิชิแกนคืออะไร และโดยรวมแล้วมากกว่า 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_en": "WHAT IS THE LOWEST ROUND FOR CB POSITION?",
    "question_th": "รอบต่ำสุดสำหรับตำแหน่ง CB คืออะไร?",
    "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_en": "Who's the Writer with an Original Airdate of september 4, 2005 (hbo)?",
    "question_th": "ใครคือนักเขียนที่มีแอร์เดทแรกเมื่อวันที่ 4 กันยายน พ.ศ. 2548 (hbo)",
    "context": "CREATE TABLE table_name_91 (writer VARCHAR, original_airdate VARCHAR)"
  },
  {
    "answer": "SELECT director FROM table_name_17 WHERE episode = 13",
    "question_en": "Which Director has an Episode of 13?",
    "question_th": "ผู้กำกับคนไหนมีตอนที่ 13?",
    "context": "CREATE TABLE table_name_17 (director VARCHAR, episode VARCHAR)"
  },
  {
    "answer": "SELECT original_airdate FROM table_name_2 WHERE episode = 1",
    "question_en": "Which Original Airdate has an Episode of 1?",
    "question_th": "Original Airdate ใดมีตอนที่ 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–0\"",
    "question_en": "On what date was the venue A with a result of 3–0?",
    "question_th": "สนาม A เป็นผลสกอร์ 3–0 ในวันไหน?",
    "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_en": "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?",
    "question_th": "อะไรคือ Bike No ที่น่าสังเกตมากที่สุดซึ่งมีตำแหน่งที่ใหญ่กว่า 1 และคะแนนที่มากกว่า 369 และอุปกรณ์ของ 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_en": "What is the aggregate number of Position that has a Bike No of 4?",
    "question_th": "จำนวนตำแหน่งรวมที่มีจักรยานหมายเลข 4 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_19 (position VARCHAR, bike_no VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_71 WHERE result = \"l 14–24\"",
    "question_en": "When was the result l 14–24?",
    "question_th": "ผลลัพธ์คือเมื่อใด l 14–24?",
    "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_en": "What was the first week when there was an attendance over 75,007 at Mile High Stadium?",
    "question_th": "สัปดาห์แรกที่มีผู้เข้าชมมากกว่า 75,007 คนที่ 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_en": "Away team Swindon Town had a Tie no listing of Replay with what as an Attendance?",
    "question_th": "ทีมเยือน สวินดอน ทาวน์ เสมอกัน ไม่มีรายชื่อการเล่นซ้ำ โดยผู้เข้าร่วมจะได้อะไร?",
    "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_en": "Liverpool as a home team as listed what in the Tie no column?",
    "question_th": "ลิเวอร์พูลเป็นเจ้าบ้านตามที่ระบุไว้ในคอลัมน์ Tie no?",
    "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_en": "What is the score for the away team of Grimsby Town?",
    "question_th": "ทีมเยือน กริมสบี้ ทาวน์ ให้คะแนนเท่าไหร่?",
    "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_en": "Which Pick has a Round larger than 1, a School/Club Team of alcorn state, and a Position of defensive back?",
    "question_th": "ตัวเลือกใดที่มีรอบที่ใหญ่กว่า 1, ทีมโรงเรียน/สโมสรที่มีสถานะอัลคอร์น และตำแหน่งกองหลัง?",
    "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_en": "Which Pick has a Position of offensive guard, a Player of reggie mckenzie, and a Round larger than 2?",
    "question_th": "การเลือกใดมีตำแหน่งเป็นผู้พิทักษ์ ผู้เล่นของ Reggie Mckenzie และรอบที่ใหญ่กว่า 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_en": "Which School/Club Team has a Round smaller than 5, a Pick larger than 1, and a Player of reggie mckenzie?",
    "question_th": "ทีมโรงเรียน/สโมสรใดที่มีรอบที่น้อยกว่า 5, ตัวเลือกที่มากกว่า 1 และผู้เล่นของ 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_en": "Which Player has a Round smaller than 2?",
    "question_th": "ผู้เล่นคนใดมีรอบที่เล็กกว่า 2?",
    "context": "CREATE TABLE table_name_69 (player VARCHAR, round INTEGER)"
  },
  {
    "answer": "SELECT record FROM table_name_79 WHERE date = \"march 26\"",
    "question_en": "What was the record on march 26?",
    "question_th": "บันทึกเมื่อวันที่ 26 มีนาคมคืออะไร?",
    "context": "CREATE TABLE table_name_79 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_6 WHERE date = \"march 26\"",
    "question_en": "Who visited on march 26?",
    "question_th": "ใครมาเยี่ยมวันที่ 26 มีนาคมบ้าง?",
    "context": "CREATE TABLE table_name_6 (visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MIN(points) FROM table_name_56 WHERE date = \"march 2\"",
    "question_en": "What were the lowest points on march 2?",
    "question_th": "จุดต่ำสุดในวันที่ 2 มีนาคมคือจุดใด",
    "context": "CREATE TABLE table_name_56 (points INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT SUM(points) FROM table_name_9 WHERE record = \"21–36–9\" AND attendance > 14 OFFSET 768",
    "question_en": "Which Points have a Record of 21–36–9, and an Attendance larger than 14,768?",
    "question_th": "คะแนนใดมีสถิติ 21–36–9 และมีผู้เข้าร่วมมากกว่า 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–7\" AND gain > 86",
    "question_en": "which Name has a Loss larger than 2, and a Avg/G larger than -16, and a GP-GS of 11–7, and a Gain larger than 86?",
    "question_th": "ชื่อใดมีการขาดทุนมากกว่า 2 และค่าเฉลี่ย/G มากกว่า -16 และ GP-GS เท่ากับ 11–7 และกำไรมากกว่า 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–0\"",
    "question_en": "Name the highest Long that has an Avg/G smaller than 8.4, and an GP-GS of 4–0?",
    "question_th": "ตั้งชื่อ Long สูงสุดที่มี Avg/G น้อยกว่า 8.4 และ GP-GS ที่ 4–0 ใช่ไหม",
    "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–0\" AND loss < 3",
    "question_en": "Name the lowest Gain which has a Long of 0, and a GP-GS of 4–0, and a Loss smaller than 3?",
    "question_th": "ตั้งชื่อกำไรต่ำสุดที่มีความยาวเป็น 0 และ GP-GS ที่ 4–0 และการสูญเสียน้อยกว่า 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_en": "Name the total of Loss which has an Avg/G of 8.4?",
    "question_th": "ตั้งชื่อผลรวมของการสูญเสียซึ่งมีค่าเฉลี่ย/G เท่ากับ 8.4 หรือไม่?",
    "context": "CREATE TABLE table_name_37 (loss VARCHAR, avg_g VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_80 WHERE points = \"15\"",
    "question_en": "Which Team has Points of 15?",
    "question_th": "ทีมใดมีคะแนน 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_en": "Which Laps has a Points of lead changes: 13 between 8 drivers?",
    "question_th": "รอบใดที่มีคะแนนนำเปลี่ยนแปลง: 13 ระหว่างนักแข่ง 8 คน?",
    "context": "CREATE TABLE table_name_99 (laps VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_45 WHERE grid = \"1\"",
    "question_en": "Which Driver has a Grid of 1?",
    "question_th": "ไดรเวอร์ใดมีตาราง 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_en": "WHAT IS THE HIGHEST WINS WITH A SERIES OF BRITISH FORMULA THREE, SEASON 2005, POLES SMALLER THAN 0?",
    "question_th": "อะไรคือชัยชนะสูงสุดในซีรีส์สูตรอังกฤษสาม ฤดูกาลปี 2005 เสาที่เล็กกว่า 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_en": "WHAT IS THE SUM OF RACES WITH 9 POINTS?",
    "question_th": "ผลรวมของการแข่งขันที่มี 9 แต้มคืออะไร?",
    "context": "CREATE TABLE table_name_49 (races INTEGER, points VARCHAR)"
  },
  {
    "answer": "SELECT AVG(poles) FROM table_name_71 WHERE points = \"n/a\"",
    "question_en": "WHAT IS THE AVERAGE POLES WITH POINTS N/A?",
    "question_th": "เสาเฉลี่ยที่มีคะแนน 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_en": "Who is that player from South Africa who had a total score under 293?",
    "question_th": "นักเตะแอฟริกาใต้คนไหนที่มีคะแนนรวมต่ำกว่า 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_en": "What is the best when the qual 2 is 1:47.042?",
    "question_th": "อะไรคือสิ่งที่ดีที่สุดเมื่อรอบ 2 คือ 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_en": "What is the team when the name is alex sperafico?",
    "question_th": "เมื่อชื่อ อเล็กซ์ สเปราฟิโก้ อยู่ทีมอะไร?",
    "context": "CREATE TABLE table_name_58 (team VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT qual_2 FROM table_name_32 WHERE best = \"1:45.172\"",
    "question_en": "What is the qual 2 when the best is 1:45.172?",
    "question_th": "รอบ 2 คืออะไรเมื่อดีที่สุดคือ 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_en": "What is the name for the best of 1:45.361?",
    "question_th": "ชื่อของสิ่งที่ดีที่สุดใน 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_en": "What name has a qual 2 of 1:43.374?",
    "question_th": "ชื่ออะไรมีคุณสมบัติ 2 ของ 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_en": "What name has a qual 2 of 1:46.025?",
    "question_th": "ชื่ออะไรมีคุณสมบัติ 2 ของ 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_en": "What was the streak on March 27?",
    "question_th": "แนวรับในวันที่ 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_en": "Which streak before game 12 had a team points larger than 113 on November 16?",
    "question_th": "สตรีคใดก่อนเกมที่ 12 มีคะแนนทีมมากกว่า 113 ในวันที่ 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_en": "Who scored the lowest with 8 gold medals and less than 4 silver medals?",
    "question_th": "ใครทำคะแนนต่ำสุดได้ 8 เหรียญทอง และน้อยกว่า 4 เหรียญเงิน?",
    "context": "CREATE TABLE table_name_40 (total INTEGER, gold VARCHAR, silver VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_13 WHERE silver = 3",
    "question_en": "What is the rank for the 3 silver medals?",
    "question_th": "3เหรียญเงินได้อันดับเท่าไหร่ครับ?",
    "context": "CREATE TABLE table_name_13 (rank VARCHAR, silver VARCHAR)"
  },
  {
    "answer": "SELECT young_classification FROM table_name_89 WHERE aggressive_rider = \"tim johnson\"",
    "question_en": "Which young classification has an aggressive rider of Tim Johnson?",
    "question_th": "รุ่นเยาว์คนไหนที่มีนักบิดดุดันอย่าง 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_en": "what was the overall pick number for rich dobbert?",
    "question_th": "หมายเลขเลือกโดยรวมของ 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_en": "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?",
    "question_th": "ผลรวมของรอบที่ตัวเลือกโดยรวมมากกว่า 295 และเลือกน้อยกว่า 10 และผู้เล่นรวย 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_en": "What position did eric norri play who was the overall pick less than 322 on a round larger than 3?",
    "question_th": "เอริก นอร์รี เล่นตำแหน่งใดซึ่งถูกเลือกโดยรวมน้อยกว่า 322 ในรอบที่ใหญ่กว่า 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_en": "What was the report for the game with the home team of the Townsville Crocodiles?",
    "question_th": "รายงานเกมกับทีมเจ้าบ้าน ทาวน์สวิลล์ โครโคไดล์ส เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_54 (report VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_95 WHERE away_team = \"melbourne tigers\"",
    "question_en": "What was the venue that featured the Melbourne Tigers as the away team?",
    "question_th": "สนามใดที่มีเมลเบิร์น ไทเกอร์ส เป็นทีมเยือน?",
    "context": "CREATE TABLE table_name_95 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT report FROM table_name_42 WHERE venue = \"hisense arena\"",
    "question_en": "What was the report for the game played at the Hisense Arena?",
    "question_th": "รายงานของเกมที่เล่นที่ 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_en": "When the Points 1 was 51 and the Goals Against was less than 66, what was the Goal Difference?",
    "question_th": "เมื่อแต้ม 1 คือ 51 และประตูที่ทำได้น้อยกว่า 66 อะไรคือผลต่างประตู?",
    "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_en": "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?",
    "question_th": "จำนวนการเล่นทั้งหมดโดยที่ประตูมากกว่า 60, แพ้คือ 8 และตำแหน่งน้อยกว่า 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_en": "What was the Goal Difference for Postion 22?",
    "question_th": "อะไรคือผลต่างประตูสำหรับตำแหน่ง 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_en": "When Team Hyde United had more than 59 Goals For and fewer than 15 Drawn, what was the Lost?",
    "question_th": "เมื่อทีม Hyde United ยิงได้มากกว่า 59 ประตูและเสมอน้อยกว่า 15 ประตู อะไรคือสิ่งที่แพ้?",
    "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_en": "What is the average Lost for Team Matlock Town when the Goals Against is higher than 66?",
    "question_th": "ค่าเฉลี่ยการแพ้ของทีม Matlock Town เมื่อประตูต่อมากกว่า 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_en": "What was the attendance on October 17?",
    "question_th": "ผู้เข้าร่วมในวันที่ 17 ตุลาคมมีอะไรบ้าง?",
    "context": "CREATE TABLE table_name_76 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_27 WHERE attendance > 57 OFFSET 347",
    "question_en": "Where was the attendance more than 57,347?",
    "question_th": "มีผู้เข้าร่วมมากกว่า 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_en": "When was the last game that had a time of 2:46 and attendance of more than 57,533?",
    "question_th": "เกมสุดท้ายที่มีเวลา 2:46 และผู้ชมมากกว่า 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_en": "What place is South Africa?",
    "question_th": "แอฟริกาใต้อยู่ที่ไหน?",
    "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_en": "What was the average year when shri. shambu nath khajuria won the padma shri awards?",
    "question_th": "ปีเฉลี่ยคือเท่าไรเมื่อศรี shambu nath khajuria ได้รับรางวัล padma shri หรือไม่?",
    "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_en": "What is the total number of years that prof. aditya naraian purohit won?",
    "question_th": "ศ.น.ส.ว. รวมทั้งหมดกี่ปี อดิตยา นารายณ์ ปุโรหิต ชนะแล้วเหรอ?",
    "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_en": "What is the sum of the years when the winner was prof. priyambada mohanty hejmadi from orissa?",
    "question_th": "ผลรวมของปีที่ผู้ชนะคือศาสตราจารย์ ปริยัมบาดา โมฮันตี เฮจมาดี จากโอริสสา?",
    "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_en": "Which event was part of the World Cross Country championships?",
    "question_th": "กิจกรรมใดเป็นส่วนหนึ่งของการแข่งขัน 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_en": "What department as 6 years experience?",
    "question_th": "แผนกใดมีประสบการณ์ 6 ปี?",
    "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_en": "What is the designation for the m.tech (e.c.e) qualification?",
    "question_th": "การกำหนดคุณสมบัติของ m.tech (ece) คืออะไร?",
    "context": "CREATE TABLE table_name_86 (designation VARCHAR, qualification VARCHAR)"
  },
  {
    "answer": "SELECT department FROM table_name_25 WHERE qualification = \"m.phil (physics)\"",
    "question_en": "What department has an m.phil (physics) qualification?",
    "question_th": "แผนกใดมีวุฒิ m.phil (ฟิสิกส์) บ้าง?",
    "context": "CREATE TABLE table_name_25 (department VARCHAR, qualification VARCHAR)"
  },
  {
    "answer": "SELECT result_f___a FROM table_name_98 WHERE opponents = \"leeds united\"",
    "question_en": "hat is the Result F– A when they played against Leeds United?",
    "question_th": "หมวกคือผลลัพธ์ F– A เมื่อพวกเขาเล่นกับลีดส์ยูไนเต็ด?",
    "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_en": "How many games have 61-16 as the record?",
    "question_th": "มีกี่เกมที่มีสถิติ 61-16 ?",
    "context": "CREATE TABLE table_name_14 (game VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_17 WHERE score = \"104-113\"",
    "question_en": "What date has 104-113 as the score?",
    "question_th": "คะแนน 104-113 เป็นวันไหน?",
    "context": "CREATE TABLE table_name_17 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_20 WHERE score = \"113-115 (ot)\"",
    "question_en": "What date has 113-115 (ot) as the score?",
    "question_th": "คะแนน 113-115(โอที) เป็นวันไหน?",
    "context": "CREATE TABLE table_name_20 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT AVG(game) FROM table_name_82 WHERE date = \"january 9\"",
    "question_en": "What is the mean game played on January 9?",
    "question_th": "เกมเฉลี่ยที่เล่นในวันที่ 9 มกราคมคืออะไร?",
    "context": "CREATE TABLE table_name_82 (game INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_name_31 WHERE record = \"1-2\"",
    "question_en": "Which game number includes a record of 1-2?",
    "question_th": "หมายเลขเกมใดที่มีสถิติ 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_en": "For the game where Joel Przybilla (4) received high assists, what was the final score?",
    "question_th": "สำหรับเกมที่ โจเอล พซีบิญ่า (4) ทำแอสซิสต์ได้สูง สุดท้ายสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_88 (score VARCHAR, high_assists VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_name_69 WHERE record = \"2-4\"",
    "question_en": "For the game that had an end record of 2-4, who was the high points scorer?",
    "question_th": "สำหรับเกมที่มีสถิติจบสกอร์ 2-4 ใครเป็นผู้ทำแต้มสูงสุด?",
    "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_en": "What is the attendance of the game against the New Orleans Saints before game 11?",
    "question_th": "การพบกันของเกมกับนิวออร์ลีนส์เซนต์สก่อนเกมที่ 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_en": "On what date was the streak at lost 7?",
    "question_th": "สตรีคที่แพ้ 7 คือวันไหน?",
    "context": "CREATE TABLE table_name_67 (date VARCHAR, streak VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_5 WHERE round = \"2r\"",
    "question_en": "What was the date for Round 2r?",
    "question_th": "รอบ 2r วันที่เท่าไร?",
    "context": "CREATE TABLE table_name_5 (date VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_97 WHERE opponent = \"george khrikadze\"",
    "question_en": "What date did the opponent George Khrikadze play?",
    "question_th": "George Khrikadze คู่ต่อสู้ลงเล่นวันไหน?",
    "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_en": "What round resulted in 6-0, 6-1, 6-2?",
    "question_th": "ผลรอบไหน 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_en": "What round was the opponent Sergiy Stakhovsky?",
    "question_th": "คู่ต่อสู้ Sergiy Stakhovsky คือรอบใด?",
    "context": "CREATE TABLE table_name_28 (round VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_77 WHERE date = \"december 11\"",
    "question_en": "What is the record on December 11?",
    "question_th": "บันทึกประจำวันที่ 11 ธันวาคม คืออะไร?",
    "context": "CREATE TABLE table_name_77 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_34 WHERE result = \"l 30-27\"",
    "question_en": "What date was the game that resulted in L 30-27?",
    "question_th": "เกมที่ผล 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_en": "What was the highest attendance of games that resulted in L 23-20?",
    "question_th": "จำนวนผู้เข้าร่วมเกมสูงสุดที่ส่งผลให้ 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_en": "What was the result when the opponent was manchester united in venue h?",
    "question_th": "ผลเป็นอย่างไรเมื่อคู่ต่อสู้เป็นแมนเชสเตอร์ ยูไนเต็ด ในสถานที่ 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_en": "What rank was Peru with a total greater than 3?",
    "question_th": "เปรูมีคะแนนรวมมากกว่า 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_en": "What is Result, when Competition is 2010 FIFA World Cup Qualification, and when Date is 10 September 2008?",
    "question_th": "ผลลัพธ์คืออะไร เมื่อการแข่งขันคือรอบคัดเลือกฟุตบอลโลก 2010 และวันที่ 10 กันยายน พ.ศ. 2551 คือเมื่อใด",
    "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_en": "What is Venue, when Competition is 2010 FIFA World Cup Qualification, when Result is Won, and when Date is 14 June 2008?",
    "question_th": "สถานที่จัดงานคืออะไร เมื่อการแข่งขันคือรอบคัดเลือกฟุตบอลโลก 2010 เมื่อผลการแข่งขันชนะ และวันที่ 14 มิถุนายน พ.ศ. 2551 คือวันที่ใด",
    "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_en": "What is Competition, when Date is 30 December 2005?",
    "question_th": "การแข่งขันคืออะไร เมื่อเป็นวันที่ 30 ธันวาคม 2548?",
    "context": "CREATE TABLE table_name_96 (competition VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_86 WHERE score < 71 AND country = \"zimbabwe\"",
    "question_en": "What is the Place when the score is less than 71, and Country is zimbabwe?",
    "question_th": "สถานที่ใดเมื่อคะแนนน้อยกว่า 71 และประเทศคือซิมบับเว",
    "context": "CREATE TABLE table_name_86 (place VARCHAR, score VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT MIN(score) FROM table_name_77 WHERE country = \"canada\"",
    "question_en": "What is the lowest Score when the Country is canada?",
    "question_th": "คะแนนต่ำสุดเมื่อประเทศคือแคนาดาคืออะไร?",
    "context": "CREATE TABLE table_name_77 (score INTEGER, country VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_92 WHERE player = \"toru taniguchi\"",
    "question_en": "What is the Score when the Player is toru taniguchi?",
    "question_th": "คะแนนเมื่อผู้เล่นคือ 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_en": "What is the Game number when the Rangers have a Record of 25-24-11?",
    "question_th": "หมายเลขเกมเมื่อ Rangers มีสถิติ 25-24-11 คืออะไร?",
    "context": "CREATE TABLE table_name_18 (game VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_5 WHERE march = 18",
    "question_en": "What is the Score of the game on March 18?",
    "question_th": "สกอร์ของเกมวันที่ 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_en": "What is the qual 2 of team rocketsports racing, which has the best of 1:10.949?",
    "question_th": "อะไรคือรอบคัดเลือก 2 ของทีม Rocketsports Racing ซึ่งมีเวลาดีที่สุดที่ 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_en": "Which team has a 1:10.998 best?",
    "question_th": "ทีมใดมี 1:10.998 ดีที่สุด?",
    "context": "CREATE TABLE table_name_87 (team VARCHAR, best VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_60 WHERE qual_2 = \"1:10.771\"",
    "question_en": "What is the name of the person with a 1:10.771 qual 2?",
    "question_th": "คนที่ได้ 1:10.771 ควอ 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_en": "What is the qual 2 with a 1:10.949 best?",
    "question_th": "Qual 2 ที่มี 1:10.949 ดีที่สุดคืออะไร?",
    "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_en": "What is the qual 2 of team Forsythe racing, which has a 1:09.515 best?",
    "question_th": "อะไรคือรอบคัดเลือกของทีม Forsythe ที่มีเวลา 1:09.515 ดีที่สุด?",
    "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_en": "What is the qual 1 with a 1:09.567 best?",
    "question_th": "Qual 1 ที่มี 1:09.567 ดีที่สุดคืออะไร?",
    "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_en": "What were highest points received from someone using a zabel-wsp with a position greater than 7?",
    "question_th": "อะไรคือคะแนนสูงสุดที่ได้รับจากคนที่ใช้ zabel-wsp ที่มีตำแหน่งมากกว่า 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_en": "What's the lowest attendance recorded for week 15?",
    "question_th": "จำนวนผู้เข้าร่วมต่ำสุดที่บันทึกไว้ในสัปดาห์ที่ 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_en": "When Marlene was nominated for the Olivier Award, what was the result?",
    "question_th": "เมื่อมาร์ลีนได้รับการเสนอชื่อเข้าชิงรางวัล Olivier Award ผลลัพธ์เป็นอย่างไรบ้าง",
    "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_en": "What was the result for the Bafta Tv award?",
    "question_th": "ผลลัพธ์ของรางวัล Bafta Tv คืออะไร?",
    "context": "CREATE TABLE table_name_63 (result VARCHAR, award VARCHAR)"
  },
  {
    "answer": "SELECT AVG(pick) FROM table_name_79 WHERE college = \"texas-san antonio\"",
    "question_en": "What is the pick of Texas-San Antonio?",
    "question_th": "ตัวเลือกของ 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_en": "Who is the player that has a round greater than 2 and a pick bigger than 83?",
    "question_th": "ใครคือผู้เล่นที่มีรอบมากกว่า 2 และเลือกได้มากกว่า 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_en": "What's the nationality of Louisiana Tech?",
    "question_th": "Louisiana Tech มีสัญชาติอะไร",
    "context": "CREATE TABLE table_name_10 (nationality VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT pick FROM table_name_91 WHERE player = \"ray hall\"",
    "question_en": "What number pick is Ray Hall?",
    "question_th": "เรย์ ฮอลล์ เลือกหมายเลขอะไร",
    "context": "CREATE TABLE table_name_91 (pick VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_38 WHERE pick > 129",
    "question_en": "What nationality has a pick greater than 129?",
    "question_th": "สัญชาติใดมีสิทธิ์เลือกมากกว่า 129?",
    "context": "CREATE TABLE table_name_38 (nationality VARCHAR, pick INTEGER)"
  },
  {
    "answer": "SELECT MAX(grid) FROM table_name_64 WHERE rider = \"mika kallio\"",
    "question_en": "what is the grid when the rider is mika kallio?",
    "question_th": "ตารางคืออะไรเมื่อผู้ขับขี่คือ 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_en": "what is the time when laps is less than 21, manufacturer is aprilia, grid is less than 17 and the rider is thomas luthi?",
    "question_th": "เวลาที่รอบน้อยกว่า 21, ผู้ผลิตคือ Aprilia, กริดน้อยกว่า 17 และผู้ขับขี่คือ 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_en": "what is the time when the laps is less than 21 and the grid is more than 17?",
    "question_th": "เวลาใดที่รอบน้อยกว่า 21 และกริดมากกว่า 17 คือเวลาใด?",
    "context": "CREATE TABLE table_name_88 (time VARCHAR, laps VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT partnering FROM table_name_8 WHERE against = \"greece\"",
    "question_en": "Who was partnering when nueza silva played against greece?",
    "question_th": "ใครเป็นคู่หูเมื่อนูเอซา ซิลวาเล่นกับกรีซ?",
    "context": "CREATE TABLE table_name_8 (partnering VARCHAR, against VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_31 WHERE against = \"greece\"",
    "question_en": "What was the round when nueza silva played against greece?",
    "question_th": "นูเอซ่า ซิลวาเจอกับกรีซในรอบอะไร?",
    "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_en": "Who were the opponents during the 2006 fed cup europe/africa group ii against greece?",
    "question_th": "ใครคือคู่ต่อสู้ระหว่างการแข่งขันเฟดคัพยุโรป/แอฟริกากลุ่ม ii กับกรีซ ปี 2006",
    "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_en": "What is the Tries against for the team that has 207 points for?",
    "question_th": "การพยายามต่อต้านทีมที่มี 207 แต้มเพื่ออะไร?",
    "context": "CREATE TABLE table_name_4 (tries_against VARCHAR, points_for VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_24 WHERE points_for = \"118\"",
    "question_en": "What team has a 118 Point for?",
    "question_th": "ทีมไหนมี 118 แต้ม?",
    "context": "CREATE TABLE table_name_24 (team VARCHAR, points_for VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_61 WHERE points_against = \"102\"",
    "question_en": "What team has 102 Points against?",
    "question_th": "ทีมใดมี 102 แต้มต่อ?",
    "context": "CREATE TABLE table_name_61 (team VARCHAR, points_against VARCHAR)"
  },
  {
    "answer": "SELECT points_for FROM table_name_44 WHERE tries_against = \"10\"",
    "question_en": "What is the Points for number of the team with a 10 Tries against number?",
    "question_th": "คะแนนสำหรับหมายเลขของทีมที่พยายาม 10 ครั้งต่อหมายเลขคือเท่าใด",
    "context": "CREATE TABLE table_name_44 (points_for VARCHAR, tries_against VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_83 WHERE points_diff = \"+119\"",
    "question_en": "What team has +119 Points diff?",
    "question_th": "ทีมใดมีคะแนนต่างกัน +119 แต้ม?",
    "context": "CREATE TABLE table_name_83 (team VARCHAR, points_diff VARCHAR)"
  },
  {
    "answer": "SELECT manufacturer FROM table_name_73 WHERE year_made = \"1923\"",
    "question_en": "What manufacturer has a year made of 1923?",
    "question_th": "ผู้ผลิตรายใดมีปีที่ผลิตในปี 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 — oooooo — pacific\"",
    "question_en": "What's the quantity made when the manufacturer was 4-6-2 — oooooo — pacific?",
    "question_th": "ปริมาณที่ผลิตเมื่อผู้ผลิตเป็น 4-6-2 — oooooo — 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_en": "What year had a quantity made of 11 and a wheel arrangement of 4-6-2?",
    "question_th": "ปีใดมีปริมาณ 11 และล้อเรียง 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_en": "What's the quantity preserved when the fleet number was 700?",
    "question_th": "ปริมาณที่เก็บรักษาไว้เมื่อจำนวนกองเรือคือ 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_en": "What is the name of the race in Kenya with a time of 30:27?",
    "question_th": "แข่งที่เคนยาด้วยเวลา 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_en": "What is the name of the athlete with a time of 30:48?",
    "question_th": "นักกีฬาเวลา 30:48 ชื่ออะไร",
    "context": "CREATE TABLE table_name_9 (athlete VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT race FROM table_name_17 WHERE athlete = \"lineth chepkurui\"",
    "question_en": "What is the name of the race when Lineth Chepkurui is the athlete?",
    "question_th": "เมื่อ ลิเนธ เชพคูรุย เป็นนักกีฬาชื่ออะไร?",
    "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_en": "What is the time when the race was in Kenya and Lineth Chepkurui was the athlete?",
    "question_th": "แข่งที่เคนยาตอนกี่โมง และลิเนธ เชพคูรุยเป็นนักกีฬา?",
    "context": "CREATE TABLE table_name_50 (time VARCHAR, nation VARCHAR, athlete VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_76 WHERE to_par = \"+4\"",
    "question_en": "What is the country for the player who had a To Par of +4?",
    "question_th": "ประเทศใดสำหรับผู้เล่นที่มีพาร์ถึง +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_en": "What player from South Africa had a total less than 284?",
    "question_th": "นักเตะคนไหนจากแอฟริกาใต้ที่มีคะแนนรวมน้อยกว่า 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_en": "For the year won of 2001, what is the To Par?",
    "question_th": "สำหรับปีที่ชนะในปี 2544 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_en": "what is the location attendance when the series is 4-3?",
    "question_th": "สถานที่เข้าร่วมเมื่อซีรีส์ 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_en": "what is the team when the location attendace is boston garden and the series is 0-1?",
    "question_th": "ทีมจะเป็นอย่างไรบ้างเมื่อสถานที่ผู้เข้าร่วมคือบอสตันการ์เด้นและซีรีส์คือ 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_en": "what is the highest game when the team is @boston and the series is 0-1?",
    "question_th": "เกมสูงสุดเมื่อทีมคือ @boston และซีรีส์ 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_en": "what is the series when the team is @boston and the game is smaller than 3?",
    "question_th": "ซีรีย์อะไรเมื่อทีมเป็น @boston และเกมเล็กกว่า 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_en": "What is 2001, when 1996 is \"0 / 2\"?",
    "question_th": "ปี 2544 คืออะไร เมื่อปี 1996 เป็น \"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_en": "What is 1998, when 1992 is \"A\", and when Tournament is \"Hamburg Masters\"?",
    "question_th": "ปี 1998 คืออะไร เมื่อปี 1992 เป็น \"A\" และเมื่อใดที่การแข่งขันคือ \"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_en": "What is 2001, when 1994 is \"A\", and when Tournament is \"Monte Carlo Masters\"?",
    "question_th": "ปี 2001 คืออะไร เมื่อปี 1994 เป็น \"A\" และเมื่อใดที่การแข่งขันคือ \"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_en": "What is 1999, when 2003 is \"A\", and when Career SR is \"0 / 4\"?",
    "question_th": "ปี 1999 คืออะไร เมื่อปี 2003 เป็น \"A\" และเมื่อใด Career SR คือ \"0 / 4\"",
    "context": "CREATE TABLE table_name_21 (career_sr VARCHAR)"
  },
  {
    "answer": "SELECT 2000 FROM table_name_67 WHERE tournament = \"canada masters\"",
    "question_en": "What is 2000, when Tournament is \"Canada Masters\"?",
    "question_th": "2000 คืออะไร เมื่อการแข่งขันคือ \"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_en": "What country is the player ho had a To par of +1 and a score of 69-70-72=211 from?",
    "question_th": "ผู้เล่นจากประเทศใดที่มี To par +1 และคะแนน 69-70-72=211 มาจากประเทศใด?",
    "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_en": "What place did the player from South Africa finish?",
    "question_th": "นักเตะจากแอฟริกาใต้จบอันดับไหน?",
    "context": "CREATE TABLE table_name_97 (place VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_45 WHERE player = \"tom purtzer\"",
    "question_en": "What country is Tom Purtzer from?",
    "question_th": "Tom Purtzer มาจากประเทศใด",
    "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_en": "What was the score of united states player wally armstrong when he had a To par of +1",
    "question_th": "คะแนนของผู้เล่นสหรัฐ วอลลี่ อาร์มสตรอง คือเท่าไรเมื่อเขามีพาร์ถึง +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_en": "What was the score of Wally Armstrong?",
    "question_th": "วอลลี่ อาร์มสตรอง ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_49 (score VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT verb_meaning FROM table_name_53 WHERE part_1 = \"lopen\"",
    "question_en": "what is the verb meaning when the part 1 is lopen?",
    "question_th": "คำกริยาหมายถึงอะไรเมื่อส่วนที่ 1 เป็น 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_en": "what is the part 4 when the verb meaning is to steal?",
    "question_th": "ตอนที่ 4 เมื่อคำกริยาหมายถึงขโมยคืออะไร?",
    "context": "CREATE TABLE table_name_95 (part_4 VARCHAR, verb_meaning VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_name_33 WHERE part_2 = \"bond\"",
    "question_en": "what is the class when part 2 is bond?",
    "question_th": "ตอนที่ 2 เป็นพันธบัตรคลาสอะไร?",
    "context": "CREATE TABLE table_name_33 (class VARCHAR, part_2 VARCHAR)"
  },
  {
    "answer": "SELECT part_4 FROM table_name_37 WHERE class = \"5\"",
    "question_en": "what is part 4 when the class is 5?",
    "question_th": "ตอนที่ 4 คืออะไรเมื่อชั้นเรียนเป็น 5?",
    "context": "CREATE TABLE table_name_37 (part_4 VARCHAR, class VARCHAR)"
  },
  {
    "answer": "SELECT part_1 FROM table_name_78 WHERE class = \"7d\"",
    "question_en": "what is part 1 when the class is 7d?",
    "question_th": "ตอนที่ 1 คืออะไรเมื่อคลาสเป็น 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_en": "what is part 2 when part 4 is gebonden?",
    "question_th": "ตอนที่ 2 คืออะไรเมื่อตอนที่ 4 เป็น 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_en": "What's the boiling point when the density is 1.092 g/ml?",
    "question_th": "จุดเดือดเมื่อมีความหนาแน่น 1.092 กรัม/มิลลิลิตร คือเท่าใด",
    "context": "CREATE TABLE table_name_46 (boiling_point VARCHAR, density VARCHAR)"
  },
  {
    "answer": "SELECT solvent FROM table_name_55 WHERE boiling_point = \"100–103 °c\"",
    "question_en": "What solvent has a boiling point of 100–103 °c?",
    "question_th": "ตัวทำละลายชนิดใดมีจุดเดือด 100–103 °c",
    "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_en": "What dipole moment has a density of 1.092 g/ml?",
    "question_th": "โมเมนต์ไดโพลใดมีความหนาแน่น 1.092 กรัม/มิลลิลิตร",
    "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_en": "What's the dipole moment of ethyl acetate (etoac)?",
    "question_th": "โมเมนต์ไดโพลของเอทิลอะซิเตต (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_en": "what's the boiling point of diethyl ether?",
    "question_th": "จุดเดือดของไดเอทิลอีเทอร์คือเท่าไร?",
    "context": "CREATE TABLE table_name_74 (boiling_point VARCHAR, solvent VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_16 WHERE works_number = \"75823\"",
    "question_en": "What is Type, when Works Number is 75823?",
    "question_th": "Type คืออะไร เมื่อ Works Number คือ 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_en": "What is Date, when Type is DS4-4-750, and when Works Number is 74409?",
    "question_th": "วันที่คืออะไร เมื่อ Type คือ DS4-4-750 และเมื่อ Works Number คือ 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_en": "What is Works Number, when Type is RS-11, and when Number is 61?",
    "question_th": "Works Number คืออะไร เมื่อ Type เป็น RS-11 และเมื่อ Number เป็น 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_en": "What is Builder, when Date is 1925?",
    "question_th": "Builder คืออะไร เมื่อเป็นวันที่ 1925",
    "context": "CREATE TABLE table_name_21 (builder VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT works_number FROM table_name_44 WHERE number = \"55\"",
    "question_en": "What is Works Number, when Number is 55?",
    "question_th": "Works Number คืออะไร เมื่อ Number คือ 55",
    "context": "CREATE TABLE table_name_44 (works_number VARCHAR, number VARCHAR)"
  },
  {
    "answer": "SELECT builder FROM table_name_71 WHERE date = \"1953\"",
    "question_en": "What is Builder, when Date is 1953?",
    "question_th": "Builder คืออะไร เมื่อเป็นวันที่ 1953",
    "context": "CREATE TABLE table_name_71 (builder VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MIN(attendance) FROM table_name_77 WHERE record = \"5–5–0\"",
    "question_en": "Which Attendance is the lowest one that has a Record of 5–5–0?",
    "question_th": "ผู้เข้าร่วมคนใดต่ำสุดที่มีสถิติ 5–5–0",
    "context": "CREATE TABLE table_name_77 (attendance INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_68 WHERE record = \"4–2–0\"",
    "question_en": "Which Date has a Record of 4–2–0?",
    "question_th": "วันไหนที่มีสถิติ 4–2–0?",
    "context": "CREATE TABLE table_name_68 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_23 WHERE visitor = \"pittsburgh\" AND score = \"4–0\"",
    "question_en": "Which Record has a Visitor of pittsburgh, and a Score of 4–0?",
    "question_th": "บันทึกใดมีผู้มาเยือนพิตต์สเบิร์ก และคะแนน 4–0",
    "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_en": "What was the away team score when Waverley Park was the ground and the home team was collingwood?",
    "question_th": "คะแนนทีมเยือนเป็นเท่าไหร่เมื่อเวฟเวอร์ลีย์ ปาร์คเป็นสนาม และเจ้าบ้านเป็นคอลลิงวูด?",
    "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_en": "From what country did someone score 71?",
    "question_th": "มีคนได้คะแนน 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_en": "What is the attendance sum of the game on March 16, 1990 with a loss record?",
    "question_th": "จำนวนผู้เข้าร่วมในเกมวันที่ 16 มีนาคม 1990 โดยมีสถิติแพ้เป็นเท่าใด?",
    "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_en": "What was the outcome of the match on August 20, 1978?",
    "question_th": "ผลการแข่งขันเมื่อวันที่ 20 สิงหาคม พ.ศ. 2521 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_53 (outcome VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT SUM(round) FROM table_name_77 WHERE pick < 6",
    "question_en": "Which Round has a Pick smaller than 6?",
    "question_th": "รอบใดที่มีการเลือกน้อยกว่า 6?",
    "context": "CREATE TABLE table_name_77 (round INTEGER, pick INTEGER)"
  },
  {
    "answer": "SELECT MAX(round) FROM table_name_84 WHERE overall < 6",
    "question_en": "Which Round has an Overall smaller than 6?",
    "question_th": "รอบใดมีคะแนนรวมน้อยกว่า 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_en": "Which Position has a College of washington, and an Overall of 46?",
    "question_th": "ตำแหน่งใดที่มีวิทยาลัยวอชิงตัน และคะแนนรวม 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_en": "Which Round has a Position of qb, and an Overall larger than 6?",
    "question_th": "รอบใดมีตำแหน่ง qb และคะแนนรวมมากกว่า 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_en": "What date was Bury the home team?",
    "question_th": "บิวรี่เป็นเจ้าบ้านวันไหน?",
    "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_en": "What team was the home team when Tottenham Hotspur is the away team?",
    "question_th": "ทีมไหนเป็นเจ้าบ้าน เมื่อ ท็อตแน่ม ฮ็อทสเปอร์ เป็นทีมเยือน?",
    "context": "CREATE TABLE table_name_86 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_39 WHERE pick__number = 22",
    "question_en": "What college did the #22 overall draft pick attend?",
    "question_th": "วิทยาลัยใดที่คัดเลือกร่างโดยรวม #22 เข้าร่วม",
    "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_en": "What draft pick number attended syracuse and was drafted by the Carolina panthers?",
    "question_th": "หมายเลขเลือกร่างใดที่เข้าร่วมซีราคิวส์และถูกร่างโดยแพนเทอร์แคโรไลนา",
    "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_en": "Which Lead Margin has a Poll Source of rasmussen reports/ fox news?",
    "question_th": "Lead Margin ใดที่มีแหล่งโพลล์ของรายงาน rasmussen/ข่าวฟ็อกซ์",
    "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 – november 2, 2008\"",
    "question_en": "Which Poll Source has a Date administered of october 30 – november 2, 2008?",
    "question_th": "แหล่งสำรวจความคิดเห็นใดมีวันที่ดำเนินการระหว่างวันที่ 30 ตุลาคม - 2 พฤศจิกายน พ.ศ. 2551",
    "context": "CREATE TABLE table_name_18 (poll_source VARCHAR, date_administered VARCHAR)"
  },
  {
    "answer": "SELECT site FROM table_name_67 WHERE opponent_number = \"northwestern\"",
    "question_en": "At which site was Northwestern an opponent?",
    "question_th": "นอร์ธเวสเทิร์นเป็นคู่ต่อสู้ที่ไซต์ใด",
    "context": "CREATE TABLE table_name_67 (site VARCHAR, opponent_number VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_78 WHERE opponent_number = \"indiana\"",
    "question_en": "What result did Indiana have when they were an opponent?",
    "question_th": "อินเดียน่าได้ผลลัพธ์อะไรเมื่อพวกเขาเป็นคู่ต่อสู้?",
    "context": "CREATE TABLE table_name_78 (result VARCHAR, opponent_number VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_12 WHERE result = \"w61-7\"",
    "question_en": "What is the attendance when the result was w61-7?",
    "question_th": "การเข้าร่วมเมื่อผลเป็น 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_en": "What shows for miles [One Way] when the fans took 340?",
    "question_th": "โชว์อะไรไกล [วันเวย์] เมื่อแฟนบอลเอาไป 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_en": "what is the reported birth date when the reported age is 110 years, 185 days?",
    "question_th": "วันเกิดที่รายงานคือเมื่ออายุ 110 ปี 185 วัน?",
    "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_en": "what is the reported age when the reported birth date is 22 december 1878?",
    "question_th": "อายุที่รายงานเมื่อวันเกิดที่รายงานคือ 22 ธันวาคม พ.ศ. 2421 คือเท่าใด",
    "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_en": "what is the region when the reported age is 111 years, 107 days?",
    "question_th": "ภูมิภาคไหนเมื่อรายงานอายุ 111 ปี 107 วัน?",
    "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_en": "what is the reported death date for laura svehaug?",
    "question_th": "วันที่รายงานการเสียชีวิตของลอร่า สเวฮอก คือเมื่อใด",
    "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_en": "Who has a reported age of 111 years, 66 days?",
    "question_th": "ใครรายงานอายุ 111 ปี 66 วัน?",
    "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_en": "Who has a reported death of 6 march 1998?",
    "question_th": "ใครมีรายงานการเสียชีวิตเมื่อวันที่ 6 มีนาคม 2541?",
    "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_en": "Date for less than 122 countries and a 47% rank?",
    "question_th": "วันที่น้อยกว่า 122 ประเทศและอันดับ 47%?",
    "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_en": "What high assists has the high points of andrew bynum (23)?",
    "question_th": "แอนดรูว์ บายนัม (23) มีแต้มแอสซิสต์สูงแค่ไหน?",
    "context": "CREATE TABLE table_name_71 (high_assists VARCHAR, high_points VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_48 WHERE team = \"charlotte\"",
    "question_en": "What score is the team of charlotte?",
    "question_th": "ทีมชาร์ลอตต์ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_48 (score VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_26 WHERE event = \"strikeforce: barnett vs. cormier\"",
    "question_en": "What was strikeforce: barnett vs. cormier's record?",
    "question_th": "strikeforce คืออะไร: บันทึกของ barnett กับ cormier?",
    "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_en": "What is the total of q > 1.4 when q > 1.3 is 455, and q >1.2 is less than 3,028?",
    "question_th": "ผลรวมของ q > 1.4 เป็นเท่าใดเมื่อ q > 1.3 คือ 455 และ q >1.2 น้อยกว่า 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_en": "Who was the losing team with a total of 24 when the winning team was Sydney Roosters?",
    "question_th": "ทีมใดคือทีมที่แพ้โดยมีทั้งหมด 24 ทีมเมื่อทีมที่ชนะคือ 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_en": "Which venue had a losing team of south sydney rabbitohs?",
    "question_th": "สนามใดมีทีม 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_en": "What day was the total smaller than 19 at Venue of anz stadium?",
    "question_th": "วันไหนที่ยอดรวมน้อยกว่า 19 ที่ 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_en": "What was the Attendance before Week 17 with a Record of Bye?",
    "question_th": "ผู้เข้าร่วมก่อนสัปดาห์ที่ 17 โดยมีประวัติลาก่อนเป็นเท่าใด",
    "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_en": "What is the Kickoff Time on January 7, 2002?",
    "question_th": "เวลาคิกออฟในวันที่ 7 มกราคม 2545 คือเมื่อใด",
    "context": "CREATE TABLE table_name_72 (kickoff_time VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_38 WHERE result = \"l 24–14\"",
    "question_en": "What was the Opponent in the game with a Result of L 24–14?",
    "question_th": "ฝ่ายตรงข้ามในเกมที่มีผลการแข่งขัน L 24–14 คืออะไร?",
    "context": "CREATE TABLE table_name_38 (opponent VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_46 WHERE attendance = \"69,365\"",
    "question_en": "What was the Result of the game with an Attendance of 69,365?",
    "question_th": "ผลลัพธ์ของเกมที่มีผู้เข้าร่วม 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_en": "Which event won by KCLMS in 2008 has KCLMS as the winner and less than 10 wins by KCL?",
    "question_th": "งานใดที่ KCLMS ชนะในปี 2551 มี KCLMS เป็นผู้ชนะและ KCL ชนะน้อยกว่า 10 ครั้ง",
    "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_en": "How many years were the events won by KCLMS less than 7?",
    "question_th": "KCLMS ชนะการแข่งขันน้อยกว่า 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_en": "What is the average value for events won by KCL in a year earlier than 2004?",
    "question_th": "มูลค่าเฉลี่ยของกิจกรรมที่ KCL ชนะในหนึ่งปีก่อนหน้าปี 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_en": "What is the appointment day for 4 December 2008 vacancy?",
    "question_th": "ตำแหน่งงานว่างวันที่ 4 ธันวาคม 2551 นัดไว้คือวันไหน?",
    "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_en": "Which outgoing manager has tabled 16th position?",
    "question_th": "ผู้จัดการทีมคนใดที่ลาออกอยู่ในอันดับที่ 16?",
    "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_en": "Which position is team mons who was replaced by Christophe Dessy (caretaker)?",
    "question_th": "ทีมมอนส์ตำแหน่งไหนที่ถูกแทนที่ด้วย คริสตอฟ เดสซี่ (ผู้ดูแล)?",
    "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_en": "What is the table position for 4 December 2008 vacancy?",
    "question_th": "ตำแหน่งว่างของตารางในวันที่ 4 ธันวาคม 2551 คืออะไร?",
    "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_en": "How many laps have 50 points?",
    "question_th": "กี่รอบมี 50 คะแนน?",
    "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_en": "What is the grid of team dreyer & reinbold racing, which has 26 points?",
    "question_th": "Team Dreyer & Reinbold Racing ซึ่งมี 26 คะแนนมีตารางอะไรบ้าง?",
    "context": "CREATE TABLE table_name_14 (grid VARCHAR, team VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_name_6 WHERE laps = \"75\"",
    "question_en": "How many points have 75 laps?",
    "question_th": "75 รอบมีกี่คะแนน?",
    "context": "CREATE TABLE table_name_6 (points VARCHAR, laps VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_name_99 WHERE laps = \"88\" AND grid = \"14\"",
    "question_en": "How many points have 88 laps and a grid of 14?",
    "question_th": "88 รอบมีกี่คะแนนและมีตาราง 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_en": "How many laps have a +0.4865 time/retired?",
    "question_th": "กี่รอบมีเวลา +0.4865/เกษียณ?",
    "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_en": "When did the ATV that deorbited on 29 september 2008, launch?",
    "question_th": "รถเอทีวีที่ถูกยกเลิกวงโคจรเมื่อวันที่ 29 กันยายน 2551 เปิดตัวเมื่อใด",
    "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_en": "When did the atv-002 launch?",
    "question_th": "atv-002 เปิดตัวเมื่อไหร่?",
    "context": "CREATE TABLE table_name_22 (launch_date VARCHAR, designation VARCHAR)"
  },
  {
    "answer": "SELECT launch_date FROM table_name_25 WHERE name = \"edoardo amaldi\"",
    "question_en": "When did Edoardo Amaldi launch?",
    "question_th": "Edoardo Amaldi เปิดตัวเมื่อใด",
    "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_en": "When did the ATV that launched on 9 March 2008, deorbit?",
    "question_th": "รถเอทีวีที่เปิดตัวเมื่อวันที่ 9 มีนาคม พ.ศ. 2551 ถูกยกเลิกเมื่อใด",
    "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_en": "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?",
    "question_th": "ใครคือคู่หูในเกมซึ่งจัดขึ้นบนพื้นดินเหนียวกับคู่ต่อสู้ของมาร์โก คิอูดิเนลลี มิเชล แลมเมอร์ และผลการแข่งขันรองชนะเลิศ",
    "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–3, 7–6 (11–9)\"",
    "question_en": "Who were the opponent in the match on a clay surface that had a score of 6–3, 7–6 (11–9)?",
    "question_th": "คู่ต่อสู้คือใครในการแข่งขันบนพื้นดินเหนียวที่มีคะแนน 6–3, 7–6 (11–9)",
    "context": "CREATE TABLE table_name_84 (opponents VARCHAR, surface VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_7 WHERE races < 16",
    "question_en": "What is Season, when Races is less than 16?",
    "question_th": "ฤดูกาลคืออะไร เมื่อการแข่งขันน้อยกว่า 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_en": "What is the sum of Poles, when Podiums is 0, and when Races is 17?",
    "question_th": "ผลรวมของโปแลนด์ เมื่อโพเดียมเป็น 0 และเมื่อเรซคือ 17 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_35 (poles INTEGER, podiums VARCHAR, races VARCHAR)"
  },
  {
    "answer": "SELECT poles FROM table_name_99 WHERE races < 16",
    "question_en": "What is Poles, when Races is less than 16?",
    "question_th": "Poles คืออะไร เมื่อ Races น้อยกว่า 16 ปี?",
    "context": "CREATE TABLE table_name_99 (poles VARCHAR, races INTEGER)"
  },
  {
    "answer": "SELECT MIN(races) FROM table_name_53 WHERE podiums > 1",
    "question_en": "What is the lowest Races, when Podiums is greater than 1?",
    "question_th": "การแข่งขันที่ต่ำที่สุดคืออะไร เมื่อโพเดียมมากกว่า 1?",
    "context": "CREATE TABLE table_name_53 (races INTEGER, podiums INTEGER)"
  },
  {
    "answer": "SELECT AVG(attendance) FROM table_name_68 WHERE week = 14",
    "question_en": "How many people on average attended the game in week 14?",
    "question_th": "สัปดาห์ที่ 14 มีผู้เข้าร่วมเกมโดยเฉลี่ยกี่คน",
    "context": "CREATE TABLE table_name_68 (attendance INTEGER, week VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_70 WHERE week = 11",
    "question_en": "The game in week 11 has what result?",
    "question_th": "เกมในสัปดาห์ที่ 11 มีผลอะไรบ้าง?",
    "context": "CREATE TABLE table_name_70 (result VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT SUM(attendance) FROM table_name_12 WHERE opponent = \"san francisco 49ers\"",
    "question_en": "For the game against the San Francisco 49ers what was the total attendance?",
    "question_th": "ในเกมกับซานฟรานซิสโก โฟร์ตี้นายเนอร์ส มีผู้เข้าชมทั้งหมดเท่าใด",
    "context": "CREATE TABLE table_name_12 (attendance INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_71 WHERE to_par = \"–1\" AND score = 71 - 68 - 76 = 215",
    "question_en": "What is the Place that has a To standard of –1, and a Score of 71-68-76=215?",
    "question_th": "สถานที่ใดที่มีมาตรฐานถึง –1 และคะแนน 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 = \"–7\"",
    "question_en": "What is the Player that has a To standard of –7?",
    "question_th": "ผู้เล่นคนใดที่มีมาตรฐานถึง –7 คืออะไร?",
    "context": "CREATE TABLE table_name_47 (player VARCHAR, to_par VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_15 WHERE to_par = \"–4\"",
    "question_en": "What is the Player that has a To standard of –4?",
    "question_th": "ผู้เล่นคนใดที่มีมาตรฐานถึง –4 คืออะไร?",
    "context": "CREATE TABLE table_name_15 (player VARCHAR, to_par VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_60 WHERE to_par = \"–1\" AND score = 71 - 68 - 76 = 215",
    "question_en": "What is the Player that has a To standard of –1, and a Score of 71-68-76=215?",
    "question_th": "ผู้เล่นคนใดที่มีมาตรฐานถึง –1 และคะแนน 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 = \"–4\"",
    "question_en": "What is the Player that has a To standard of –4?",
    "question_th": "ผู้เล่นคนใดที่มีมาตรฐานถึง –4 คืออะไร?",
    "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_en": "Which rank is 40 for s Wicket with a player of Daniel Marsh?",
    "question_th": "อันดับ 40 ของส วิคเก็ต กับผู้เล่นของ แดเนียล มาร์ช คือ?",
    "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_en": "Which rank has a s wicket at 40 and 28.42 is the average?",
    "question_th": "อันดับไหนได้ประตูเฉลี่ยที่ 40 และ 28.42 ?",
    "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_en": "Which value for s wicket is associated with Shaun Young?",
    "question_th": "ค่าประตูใดที่เกี่ยวข้องกับ 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_en": "Which player has a s wicket at 48?",
    "question_th": "ผู้เล่นคนไหนมีประตูที่ 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_en": "What is the s wicket value associated with Shaun Young?",
    "question_th": "มูลค่าประตูที่เกี่ยวข้องกับ 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_en": "What is the date of the game where the NY Islanders are the home team?",
    "question_th": "เกมที่ NY Islanders เป็นเจ้าบ้านคือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_2 (date VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_10 WHERE home = \"ny islanders\"",
    "question_en": "What is the score of the game where the NY Islanders are the home team?",
    "question_th": "เกมที่ NY Islanders เป็นเจ้าบ้านสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_10 (score VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_68 WHERE date = \"february 3\"",
    "question_en": "Who was the home team on February 3?",
    "question_th": "ใครคือเจ้าบ้านในวันที่ 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_en": "What is the sum of Overall, when Round is less than 24, and when College is North Carolina State?",
    "question_th": "ผลรวมโดยรวมเมื่อรอบน้อยกว่า 24 และเมื่อวิทยาลัยอยู่ในรัฐนอร์ธแคโรไลนาเป็นเท่าใด",
    "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_en": "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?",
    "question_th": "จำนวนตัวเลือกทั้งหมดคือเท่าใด เมื่อตำแหน่งคือ OT เมื่อคะแนนรวมมากกว่า 91 เมื่อรอบมากกว่า 21 และเมื่อวิทยาลัยคือมิสซิสซิปปี้",
    "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_en": "What is the lowest Overall, when College is Hardin-Simmons, and when Round is greater than 26?",
    "question_th": "โดยรวมต่ำสุดคือเมื่อใดที่วิทยาลัยคือฮาร์ดิน-ซิมมอนส์ และเมื่อรอบมากกว่า 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_en": "What is the score of the tournament with younes el aynaoui as the opponent?",
    "question_th": "คะแนนของทัวร์นาเมนต์นี้ มี younes el aynaoui เป็นคู่ต่อสู้?",
    "context": "CREATE TABLE table_name_37 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_6 WHERE opponent = \"carlos moyà\"",
    "question_en": "What is the date of the tournament with carlos moyà as the opponent?",
    "question_th": "การแข่งขันจะมีวันที่เท่าไร โดยมี คาร์ลอส โมยา เป็นคู่ต่อสู้?",
    "context": "CREATE TABLE table_name_6 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_57 WHERE opponent = \"greg rusedski\"",
    "question_en": "What is the tournament with greg rusedski as the opponent?",
    "question_th": "การแข่งขันที่มี greg rusedski เป็นคู่ต่อสู้คืออะไร?",
    "context": "CREATE TABLE table_name_57 (tournament VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_75 WHERE date = \"26 may 1996\"",
    "question_en": "What is the surface on 26 May 1996?",
    "question_th": "พื้นผิวในวันที่ 26 พฤษภาคม 2539 เป็นอย่างไร?",
    "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_en": "What club did united states player ty harden play for?",
    "question_th": "ผู้เล่น United States ty harden เล่นให้กับสโมสรใด?",
    "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_en": "Which seaosn had a player of rohan ricketts?",
    "question_th": "seaosn คนไหนมีผู้เล่นของ 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_en": "What is Tries Against, when Points Against is 213?",
    "question_th": "Tries Against คืออะไร เมื่อ Points Against คือ 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_en": "What is Tries Against, when Tries For is 21?",
    "question_th": "Tries Against คืออะไร เมื่อ Tries For คือ 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_en": "What is Try Diff, when Points Diff is +71?",
    "question_th": "Try Diff คืออะไร เมื่อ Points Diff คือ +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_en": "What is Try Diff, when Points Against is 213?",
    "question_th": "Try Diff คืออะไร เมื่อ Points Against คือ 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_en": "What is Tries Against, when Try Diff is +15?",
    "question_th": "Tries Against คืออะไร เมื่อ Try Diff คือ +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_en": "Which archbishop vacated the throne on May 17, 1907?",
    "question_th": "พระอัครสังฆราชองค์ใดพ้นจากบัลลังก์เมื่อวันที่ 17 พฤษภาคม พ.ศ. 2450",
    "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_en": "When did the archbishop that was ordained a bishop on July 25, 1902 die?",
    "question_th": "พระอัครสังฆราชที่ได้รับแต่งตั้งเป็นพระสังฆราชเมื่อวันที่ 25 กรกฎาคม พ.ศ. 2445 สิ้นพระชนม์เมื่อใด",
    "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_en": "When was the archbishop that was born on February 10, 1858 ordained a bishop?",
    "question_th": "พระอัครสังฆราชซึ่งประสูติวันที่ 10 กุมภาพันธ์ พ.ศ. 2401 ได้รับการแต่งตั้งเป็นพระสังฆราชเมื่อใด",
    "context": "CREATE TABLE table_name_80 (ordained_bishop VARCHAR, born VARCHAR)"
  },
  {
    "answer": "SELECT vacated_throne FROM table_name_63 WHERE archbishop = \"albert daeger\"",
    "question_en": "When did Archbishop Albert Daeger vacate the throne?",
    "question_th": "อาร์คบิชอป Albert Daeger พ้นจากบัลลังก์เมื่อใด",
    "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_en": "When was the archbishop that was ordained as a bishop on November 30, 1925 born?",
    "question_th": "พระอัครสังฆราชที่ได้รับแต่งตั้งเป็นพระสังฆราชเมื่อวันที่ 30 พฤศจิกายน พ.ศ. 2468 เกิดเมื่อใด",
    "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_en": "When was the archbishop that was born on February 22, 1825 ordained as a bishop?",
    "question_th": "พระอัครสังฆราชที่เกิดวันที่ 22 กุมภาพันธ์ พ.ศ. 2368 ได้รับแต่งตั้งเป็นพระสังฆราชเมื่อใด",
    "context": "CREATE TABLE table_name_6 (ordained_bishop VARCHAR, born VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_87 WHERE opponent = \"pat barry\"",
    "question_en": "Which event was against Pat Barry?",
    "question_th": "เหตุการณ์ใดที่ต่อต้าน 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_en": "What Player has a Score of 71-71=142?",
    "question_th": "ผู้เล่นคนใดมีคะแนน 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_en": "What is the To par of T9 Place Player Ernie Els?",
    "question_th": "ค่าพาร์ของ 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_en": "What is the Score of the Player from South Africa?",
    "question_th": "คะแนนของผู้เล่นจากแอฟริกาใต้คือเท่าไร?",
    "context": "CREATE TABLE table_name_64 (score VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_61 WHERE score = 70 - 71 = 141",
    "question_en": "What is the Place of the Player with a Score of 70-71=141?",
    "question_th": "ผู้เล่นที่มีคะแนน 70-71=141 อยู่อันดับไหน?",
    "context": "CREATE TABLE table_name_61 (place VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_85 WHERE set_1 = \"25–20\"",
    "question_en": "Which Date has a Set 1 of 25–20?",
    "question_th": "วันใดมีชุดที่ 1 จาก 25–20",
    "context": "CREATE TABLE table_name_85 (date VARCHAR, set_1 VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_55 WHERE total = \"80–72\"",
    "question_en": "Which Score has a Total of 80–72?",
    "question_th": "คะแนนใดมีคะแนนรวม 80–72",
    "context": "CREATE TABLE table_name_55 (score VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_31 WHERE set_1 = \"21–25\"",
    "question_en": "Which Date has a Set 1 of 21–25?",
    "question_th": "วันที่ใดมีชุดที่ 1 จาก 21–25",
    "context": "CREATE TABLE table_name_31 (date VARCHAR, set_1 VARCHAR)"
  },
  {
    "answer": "SELECT set_2 FROM table_name_5 WHERE set_3 = \"25–20\" AND time = \"13:45\"",
    "question_en": "Which Set 2 has a Set 3 of 25–20, and a Time of 13:45?",
    "question_th": "ชุดที่ 2 ใดมีชุดที่ 3 เป็น 25–20 และเวลา 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–16\"",
    "question_en": "Which Score has a Set 1 of 25–16?",
    "question_th": "คะแนนใดมีชุดที่ 1 จาก 25–16",
    "context": "CREATE TABLE table_name_97 (score VARCHAR, set_1 VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_38 WHERE score = \"2–3\" AND time = \"20:30\" AND set_3 = \"16–25\"",
    "question_en": "Which Date has a Score of 2–3, a Time of 20:30, and a Set 3 of 16–25?",
    "question_th": "วันใดมีคะแนน 2–3 เวลา 20:30 น. และชุดที่ 3 จาก 16–25",
    "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_en": "Which Back has a Supplier of Kooga and a Year of 2006-2008?",
    "question_th": "Back ใดมีซัพพลายเออร์ของ Kooga และปี 2549-2551",
    "context": "CREATE TABLE table_name_88 (back VARCHAR, supplier VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT supplier FROM table_name_83 WHERE year = \"2006-2008\"",
    "question_en": "Which Supplier has a Year of 2006-2008?",
    "question_th": "ซัพพลายเออร์รายใดมีปี 2549-2551",
    "context": "CREATE TABLE table_name_83 (supplier VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT sleeves FROM table_name_72 WHERE back = \"unknown\"",
    "question_en": "Which Sleeves have a Back of Unknown?",
    "question_th": "แขนเสื้อไหนมีด้านหลังไม่ทราบ?",
    "context": "CREATE TABLE table_name_72 (sleeves VARCHAR, back VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_97 WHERE supplier = \"kooga\"",
    "question_en": "What is the Year for Supplier Kooga?",
    "question_th": "ปีสำหรับซัพพลายเออร์ Kooga คืออะไร?",
    "context": "CREATE TABLE table_name_97 (year VARCHAR, supplier VARCHAR)"
  },
  {
    "answer": "SELECT sleeves FROM table_name_67 WHERE year = \"2006-2008\"",
    "question_en": "Which Sleeves have a Year of 2006-2008?",
    "question_th": "แขนเสื้อใดมีปี 2549-2551",
    "context": "CREATE TABLE table_name_67 (sleeves VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT chest FROM table_name_28 WHERE supplier = \"gilbert\"",
    "question_en": "Which Chest is Supplied by Gilbert?",
    "question_th": "หีบใดที่ Gilbert จัดหาให้?",
    "context": "CREATE TABLE table_name_28 (chest VARCHAR, supplier VARCHAR)"
  },
  {
    "answer": "SELECT website FROM table_name_25 WHERE year_started = 2008",
    "question_en": "Which website was started in 2008?",
    "question_th": "เว็บไซต์ใดที่เริ่มต้นในปี 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_en": "Which Year started is the highest one that has a Current car of arctic sun, and a Number of cars smaller than 1?",
    "question_th": "ปีไหนที่เริ่มต้นเป็นปีสูงสุดที่มีรถยนต์ของ Arctic Sun ในปัจจุบันและจำนวนรถยนต์ที่เล็กกว่า 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_en": "Which Current car has a Number of cars of 1, and a Year started of 1999?",
    "question_th": "รถคันใดในปัจจุบันมีจำนวนรถยนต์ 1 คัน และปีที่เริ่มต้นปี 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_en": "Which Year started is the lowest one that has a Number of cars larger than 7, and a Car # of 100?",
    "question_th": "ปีใดที่เริ่มต้นเป็นปีต่ำสุดที่มีจำนวนรถยนต์มากกว่า 7 คันและมีรถยนต์ # 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_en": "What is the total number of Round, when Position is \"D\", and when Player is \"Andrew Campbell\"?",
    "question_th": "จำนวนรอบทั้งหมดเมื่อตำแหน่งคือ \"D\" และเมื่อผู้เล่นคือ \"แอนดรูว์ แคมป์เบลล์\" คือเท่าไร?",
    "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_en": "What is Nationality, when College/Junior/Club Team (League) is \"Guelph Storm ( OHL )\"?",
    "question_th": "สัญชาติคืออะไร เมื่อทีมวิทยาลัย/จูเนียร์/คลับ (ลีก) คือ \"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_en": "What is Nationality, when Player is \"Andrew Campbell\"?",
    "question_th": "สัญชาติคืออะไร เมื่อผู้เล่นคือ \"แอนดรูว์ แคมป์เบลล์\"?",
    "context": "CREATE TABLE table_name_41 (nationality VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT power FROM table_name_21 WHERE name = \"9 nc\"",
    "question_en": "Which Power has a Name of 9 nc?",
    "question_th": "พลังใดมีชื่อ 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_en": "Which Weight has a Power of kw (hp) at 1,800rpm, and a Name of 9 nc?",
    "question_th": "น้ำหนักตัวไหนมีกำลังเป็นกิโลวัตต์ (hp) ที่ 1,800 รอบต่อนาที และชื่อ 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_en": "Which Bore has a Name of 9 adr?",
    "question_th": "Bore ตัวไหนมีชื่อ 9 adr?",
    "context": "CREATE TABLE table_name_94 (bore VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT power FROM table_name_25 WHERE name = \"9 ad\"",
    "question_en": "Which Power has a Name of 9 ad?",
    "question_th": "พาวเวอร์ใดมีชื่อโฆษณา 9 อัน?",
    "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_en": "When the pick was below 42 and the player was Chris Horton, what's the highest Overall pick found?",
    "question_th": "เมื่อตัวเลือกต่ำกว่า 42 และผู้เล่นคือ Chris Horton อะไรคือตัวเลือกโดยรวมสูงสุดที่พบ",
    "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_en": "When Kansas State had a pick of over 35, what's the highest Overall pick found?",
    "question_th": "เมื่อรัฐแคนซัสมีตัวเลือกมากกว่า 35 รายการ ตัวเลือกโดยรวมสูงสุดที่พบคืออะไร",
    "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_en": "Total points with 114 played and average of 0.982?",
    "question_th": "แต้มรวมที่เล่นได้ 114 แต้มและเฉลี่ย 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_en": "Team with average of 1.035?",
    "question_th": "ทีมที่มีค่าเฉลี่ย 1.035?",
    "context": "CREATE TABLE table_name_79 (team VARCHAR, average VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_93 WHERE name = \"chris hanburger\"",
    "question_en": "What was Chris Hanburger's position?",
    "question_th": "ตำแหน่งของ Chris Hanburger คืออะไร?",
    "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_en": "What was John Strohmeyer's average pick before round 12?",
    "question_th": "การเลือกเฉลี่ยของ John Strohmeyer ก่อนรอบ 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_en": "what is the average points when position is more than 5 and played is less than 10?",
    "question_th": "แต้มเฉลี่ยเมื่อตำแหน่งมากกว่า 5 และเล่นน้อยกว่า 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_en": "what is the average points when drawn is 0, lost is 5 and played is more than 10?",
    "question_th": "แต้มเฉลี่ยเมื่อเสมอเป็น 0 แพ้ 5 และเล่นมากกว่า 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_en": "what is the average number lost when points is 14 and position is more than 1?",
    "question_th": "จำนวนเฉลี่ยที่เสียไปเมื่อคะแนนคือ 14 และตำแหน่งมากกว่า 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_en": "what is the average points when played is 9, name is ev pegnitz and position is larger than 1?",
    "question_th": "แต้มเฉลี่ยเมื่อเล่นคือ 9 ชื่อ ev เพ็กนิทซ์ และตำแหน่งมากกว่า 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_en": "What is Place, when Score is 72-72=144, when Country is United States, and when Player is Scott McCarron?",
    "question_th": "สถานที่คืออะไร เมื่อคะแนนคือ 72-72=144 เมื่อประเทศคือสหรัฐอเมริกา และเมื่อผู้เล่นคือ 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_en": "What is Country, when Score is 70-73=143?",
    "question_th": "ประเทศคืออะไร เมื่อคะแนนคือ 70-73=143",
    "context": "CREATE TABLE table_name_50 (country VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_93 WHERE place = \"2\"",
    "question_en": "What is Player, when Place is 2?",
    "question_th": "Player คืออะไร เมื่อ Place คือ 2?",
    "context": "CREATE TABLE table_name_93 (player VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_50 WHERE player = \"billy mayfair\"",
    "question_en": "What is Country, when Player is Billy Mayfair?",
    "question_th": "ประเทศคืออะไร เมื่อผู้เล่นคือ 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_en": "What is To Par, when Player is K. J. Choi?",
    "question_th": "To Par คืออะไร เมื่อผู้เล่นคือ KJ Choi?",
    "context": "CREATE TABLE table_name_58 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_48 WHERE player = \"billy mayfair\"",
    "question_en": "What is Score, when Player is Billy Mayfair?",
    "question_th": "Score คืออะไร เมื่อผู้เล่นคือ Billy Mayfair?",
    "context": "CREATE TABLE table_name_48 (score VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_79 WHERE player = \"don whitt\"",
    "question_en": "What place did Don Whitt finish?",
    "question_th": "ดอน วิตต์ จบอันดับไหน?",
    "context": "CREATE TABLE table_name_79 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_6 WHERE player = \"phil rodgers\"",
    "question_en": "What did Phil Rodgers score?",
    "question_th": "ฟิล ร็อดเจอร์ส ยิงประตูอะไร?",
    "context": "CREATE TABLE table_name_6 (score VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_27 WHERE player = \"gary player\"",
    "question_en": "What place was Gary Player after two rounds?",
    "question_th": "Gary Player อยู่ที่ไหนหลังจากผ่านไปสองรอบ?",
    "context": "CREATE TABLE table_name_27 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT 1993 FROM table_name_35 WHERE tournament = \"cincinnati\"",
    "question_en": "What is 1993, when Tournament is \"Cincinnati\"?",
    "question_th": "1993 คืออะไร เมื่อทัวร์นาเมนท์คือ \"ซินซินเนติ\"?",
    "context": "CREATE TABLE table_name_35 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 1994 FROM table_name_65 WHERE 1996 = \"grand slams\"",
    "question_en": "What is 1994, when 1996 is \"Grand Slams\"?",
    "question_th": "1994 คืออะไร เมื่อปี 1996 คือ \"แกรนด์สแลม\"?",
    "context": "CREATE TABLE table_name_65 (Id VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_92 WHERE 1996 = \"1r\" AND 1990 = \"sf\"",
    "question_en": "What is Tournament, when 1996 is \"1R\", and when 1990 is \"SF\"?",
    "question_th": "Tournament คืออะไร เมื่อปี 1996 คือ \"1R\" และเมื่อใดคือ \"SF\" เมื่อปี 1990",
    "context": "CREATE TABLE table_name_92 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 1993 FROM table_name_7 WHERE 1992 = \"sf\" AND tournament = \"paris\"",
    "question_en": "What is 1993, when 1992 is \"SF\", and when Tournament is \"Paris\"?",
    "question_th": "ปี 1993 คืออะไร เมื่อปี 1992 เป็น \"SF\" และเมื่อใดที่ทัวร์นาเมนต์คือ \"ปารีส\"",
    "context": "CREATE TABLE table_name_7 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_62 WHERE score = 70 - 73 - 70 = 213",
    "question_en": "What country has a 70-73-70=213 score?",
    "question_th": "ประเทศใดมีคะแนน 70-73-70=213?",
    "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_en": "What place is player johnny miller, who has a to par of +2?",
    "question_th": "ผู้เล่น จอห์นนี่ มิลเลอร์ ที่มีพาร์ +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_en": "What country is player mike sullivan from?",
    "question_th": "ไมค์ ซัลลิแวน นักเตะจากประเทศใด",
    "context": "CREATE TABLE table_name_89 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_28 WHERE score = 71 - 72 - 70 = 213",
    "question_en": "What is the place with a 71-72-70=213 score?",
    "question_th": "สถานที่ที่มีคะแนน 71-72-70=213 คือสถานที่ใด",
    "context": "CREATE TABLE table_name_28 (place VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_62 WHERE date = \"may 1, 2004\"",
    "question_en": "What was the record after the game on May 1, 2004?",
    "question_th": "บันทึกหลังเกมวันที่ 1 พฤษภาคม พ.ศ. 2547 เป็นอย่างไรบ้าง?",
    "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_en": "What was the record after the game with the Manchester Wolves on July 30, 2004?",
    "question_th": "สถิติหลังเกมกับแมนเชสเตอร์ วูล์ฟส์เมื่อวันที่ 30 กรกฎาคม 2547 เป็นอย่างไรบ้าง?",
    "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_en": "Which game site hosted a match on April 10, 2004?",
    "question_th": "เว็บไซต์เกมใดที่จัดการแข่งขันในวันที่ 10 เมษายน พ.ศ. 2547",
    "context": "CREATE TABLE table_name_87 (game_site VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT golf FROM table_name_66 WHERE school = \"green bay\"",
    "question_en": "Does Green Bay have a golf team?",
    "question_th": "กรีนเบย์ มีทีมกอล์ฟหรือไม่?",
    "context": "CREATE TABLE table_name_66 (golf VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT soccer FROM table_name_34 WHERE school = \"detroit\"",
    "question_en": "Does Detroit have a soccer team?",
    "question_th": "ดีทรอยต์มีทีมฟุตบอลหรือไม่?",
    "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_en": "What is Democrat: Carl Levin, when Lead Margin is 22?",
    "question_th": "พรรคเดโมแครตคืออะไร: Carl Levin เมื่อ Lead Margin คือ 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_en": "What is Win %, when Conference Titles is 0, and when Win-Loss is 20-10?",
    "question_th": "Win % คืออะไร เมื่อชื่อการประชุมเป็น 0 และเมื่อ Win-Loss เป็น 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_en": "What is Conference Titles, when Win % is .667?",
    "question_th": "Conference Titles คืออะไร เมื่อ Win % คือ .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_en": "What is Coach, when Win % is .352?",
    "question_th": "Coach คืออะไร เมื่อ Win % คือ .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_en": "What is Win-Loss, when Win % is .456?",
    "question_th": "Win-Loss คืออะไร เมื่อ Win % คือ .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_en": "What is Years, when Win-Loss is 11-60?",
    "question_th": "ปีคืออะไร เมื่อ Win-Loss อยู่ที่ 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_en": "What is the Date that has a Record of 33.952?",
    "question_th": "วันที่ใดที่มีบันทึก 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_en": "What is the Place that has a Date of 4 august 2012?",
    "question_th": "สถานที่ที่มีวันที่ 4 สิงหาคม 2555 คืออะไร?",
    "context": "CREATE TABLE table_name_13 (place VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_92 WHERE date = \"22 august 2004\"",
    "question_en": "What is the Place that has a Date of 22 august 2004?",
    "question_th": "สถานที่ซึ่งมีวันที่ 22 สิงหาคม 2547 คืออะไร?",
    "context": "CREATE TABLE table_name_92 (place VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_35 WHERE nationality = \"new zealand\"",
    "question_en": "What is the Record that has a Nationality of new zealand?",
    "question_th": "บันทึกที่มีสัญชาตินิวซีแลนด์คืออะไร?",
    "context": "CREATE TABLE table_name_35 (record VARCHAR, nationality VARCHAR)"
  },
  {
    "answer": "SELECT skip FROM table_name_62 WHERE third = \"deanna doig\"",
    "question_en": "WHAT IS THE SKIP WITH A THIRD OF DEANNA DOIG?",
    "question_th": "การข้ามหนึ่งในสามของ DEANNA DOIG คืออะไร?",
    "context": "CREATE TABLE table_name_62 (skip VARCHAR, third VARCHAR)"
  },
  {
    "answer": "SELECT third FROM table_name_76 WHERE lead = \"cindy simmons\"",
    "question_en": "WHAT IS THE THIRD WITH LEAD CINDY SIMMONS?",
    "question_th": "ประการที่สามกับ 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_en": "WHAT IS THE LEAD WITH THIRD AS JEANNA SCHRAEDER?",
    "question_th": "ผู้นำคนที่สามในฐานะ JEANNA SCHRAEDER คืออะไร?",
    "context": "CREATE TABLE table_name_83 (lead VARCHAR, third VARCHAR)"
  },
  {
    "answer": "SELECT lead FROM table_name_79 WHERE third = \"tara george\"",
    "question_en": "WHAT IS THE LEAD WITH THIRD AS TARA GEORGE?",
    "question_th": "อะไรคือผู้นำอันดับที่สามในฐานะทาราจอร์จ?",
    "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_en": "WHAT IS TEH SECOND WITH REGINA AS CITY AND SKIP OF MICHELLE ENGLOT?",
    "question_th": "อะไรคือวินาทีที่ Regina ในฐานะเมืองและการข้ามของ 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_en": "WHAT IS THE CITY WITH THIRD AS LORI OLSON-JOHNS?",
    "question_th": "เมืองที่มีอันดับสามเป็น 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_en": "What event has a 0:49 time?",
    "question_th": "เหตุการณ์ใดมีเวลา 00:49?",
    "context": "CREATE TABLE table_name_13 (event VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_63 WHERE time = \"3:56\"",
    "question_en": "What is the record with a 3:56 time?",
    "question_th": "บันทึกเวลา 3:56 คืออะไร?",
    "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_en": "Which Champion has a Third of blaho blahoyeve, and a Season of 1995-96?",
    "question_th": "แชมป์คนใดมี blaho blahoyeve ในอันดับที่ 3 และฤดูกาล 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_en": "Which Zone has a Champion of surozh sudak?",
    "question_th": "โซนไหนมีแชมป์ Surozh Sudak?",
    "context": "CREATE TABLE table_name_30 (zone INTEGER, champion VARCHAR)"
  },
  {
    "answer": "SELECT third FROM table_name_20 WHERE champion = \"metalurh novomoskovsk\"",
    "question_en": "Which Third has a Champion of metalurh novomoskovsk?",
    "question_th": "ทีมที่สามคนไหนมีแชมป์ของ 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_en": "What is the census ranking for the parish with an area larger than 243.31 square km?",
    "question_th": "การจัดอันดับการสำรวจสำมะโนประชากรสำหรับตำบลที่มีพื้นที่มากกว่า 243.31 ตารางกิโลเมตร เป็นเท่าใด",
    "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_en": "What is the verb meaning for Saugen in part 1?",
    "question_th": "คำกริยาความหมายของ Saugen ในตอนที่ 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_en": "What is the verb meaning for Gaben in part 3?",
    "question_th": "คำกริยาของ Gaben ในภาค 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_en": "What is the class for Geholfen Gedroschen in part 4?",
    "question_th": "ชั้นเรียนของ Geholfen Gedroschen ในส่วนที่ 4 คืออะไร?",
    "context": "CREATE TABLE table_name_26 (class VARCHAR, part_4 VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_name_49 WHERE part_3 = \"trafen\"",
    "question_en": "What is the class for trafen in part 3?",
    "question_th": "คลาสสำหรับ trafen ในภาค 3 คืออะไร?",
    "context": "CREATE TABLE table_name_49 (class VARCHAR, part_3 VARCHAR)"
  },
  {
    "answer": "SELECT verb_meaning FROM table_name_64 WHERE class = \"4\"",
    "question_en": "What is the verb meaning for class 4?",
    "question_th": "คำกริยาของคลาส 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_en": "Who is the prime minister that had a term that ended on 5 March 1930?",
    "question_th": "นายกรัฐมนตรีที่หมดวาระในวันที่ 5 มีนาคม พ.ศ. 2473 คือใคร?",
    "context": "CREATE TABLE table_name_53 (name VARCHAR, term_end VARCHAR)"
  },
  {
    "answer": "SELECT poles FROM table_name_91 WHERE season = 2006",
    "question_en": "What are the Poles for Season 2006",
    "question_th": "เสาสำหรับฤดูกาล 2549 คืออะไร",
    "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_en": "If Podiums is 2 and F/Laps are 2, what are the wins?",
    "question_th": "หากโพเดียมคือ 2 และ F/รอบคือ 2 อะไรคือชัยชนะ?",
    "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_en": "If the Races is Test Driver what is the Position?",
    "question_th": "หากการแข่งขันคือนักแข่งทดสอบตำแหน่งอะไร?",
    "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_en": "Can you tell me the lowest Races that has the Team Name of piquet gp, and the Points larger than 24?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าการแข่งขันที่ต่ำที่สุดที่มีชื่อทีมคือ piquet gp และคะแนนที่มากกว่า 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_en": "Can you tell me the sum of Poles that has the Season of 2005, and the Series of formula three sudamericana?",
    "question_th": "คุณช่วยบอกผลรวมของโปแลนด์ที่มีฤดูกาลปี 2005 และซีรีส์ของสูตร 3 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_en": "Can you tell me the Series that has the Wins of 0, and the Season of a 2002?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าซีรีส์ที่มีชัยชนะเป็น 0 และฤดูกาลของปี 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_en": "What is Venue, when Game is greater than 18, and when Opponent is Morecambe?",
    "question_th": "สนามคืออะไร เมื่อเกมมากกว่า 18 และเมื่อฝ่ายตรงข้ามคือมอร์แคมบ์?",
    "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_en": "What is the sum of Game, when Date is 29 January 2008?",
    "question_th": "ผลรวมของเกมคือเท่าไร เมื่อวันที่ 29 มกราคม 2551?",
    "context": "CREATE TABLE table_name_59 (game INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_61 WHERE catalog = \"kicp-1321\"",
    "question_en": "What date had a catalog of kicp-1321?",
    "question_th": "แค็ตตาล็อกของ kicp-1321 มีวันไหน?",
    "context": "CREATE TABLE table_name_61 (date VARCHAR, catalog VARCHAR)"
  },
  {
    "answer": "SELECT catalog FROM table_name_61 WHERE label = \"frontiers records\"",
    "question_en": "What was the catalog when the label was frontiers records?",
    "question_th": "แคตตาล็อกคืออะไรเมื่อป้ายกำกับเป็นบันทึกชายแดน?",
    "context": "CREATE TABLE table_name_61 (catalog VARCHAR, label VARCHAR)"
  },
  {
    "answer": "SELECT format FROM table_name_81 WHERE region = \"europe\"",
    "question_en": "What was the format for the region of europe?",
    "question_th": "ภูมิภาคยุโรปมีรูปแบบอย่างไร",
    "context": "CREATE TABLE table_name_81 (format VARCHAR, region VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_name_92 WHERE label = \"universal music group\"",
    "question_en": "What was the region when the label was the universal music group?",
    "question_th": "ภูมิภาคใดที่ค่ายเพลงคือกลุ่มดนตรีสากล?",
    "context": "CREATE TABLE table_name_92 (region VARCHAR, label VARCHAR)"
  },
  {
    "answer": "SELECT format FROM table_name_20 WHERE label = \"loen entertainment\"",
    "question_en": "What was the format when the label was loen entertainment?",
    "question_th": "รูปแบบเมื่อค่ายเพลง 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_en": "With a works number of 40864 for the builder of Baldwin Locomotive Works, the number listed is?",
    "question_th": "ด้วยหมายเลขผลงาน 40864 สำหรับผู้สร้าง Baldwin Locomotive Works หมายเลขที่ระบุคือ?",
    "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_en": "Builder H. K. Porter, inc who had a type of 0-4-4 Forney locomotive, has what works number?",
    "question_th": "Builder HK Porter, Inc. ซึ่งมีรถจักร 0-4-4 Forney แบบ 0-4-4 มีหมายเลขผลงานอะไรบ้าง?",
    "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_en": "Baldwin Locomotive Works, also with works number 40864, is listed as what number?",
    "question_th": "Baldwin Locomotive Works ซึ่งมีผลงานหมายเลข 40864 อยู่ในรายการหมายเลขใด",
    "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_en": "Hinkley Locomotive Works is listed as what number as it has a works number smaller than 1563?",
    "question_th": "Hinkley Locomotive Works ถูกระบุว่าเป็นหมายเลขใดเนื่องจากมีหมายเลขงานน้อยกว่า 1,563",
    "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_en": "What is Score, when Outcome is Winner, and when Opponent is Angela Haynes?",
    "question_th": "คะแนนคืออะไร เมื่อผลลัพธ์เป็นผู้ชนะ และเมื่อฝ่ายตรงข้ามคือ 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_en": "What is Date, when Championship is Mackay?",
    "question_th": "วันที่คืออะไรเมื่อ Championship คือ Mackay?",
    "context": "CREATE TABLE table_name_72 (date VARCHAR, championship VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_69 WHERE championship = \"pétange\"",
    "question_en": "What is Opponent, when Championship is Pétange?",
    "question_th": "Opponent คืออะไร เมื่อ Championship คือ Pétange?",
    "context": "CREATE TABLE table_name_69 (opponent VARCHAR, championship VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_5 WHERE score = \"1-6, 3-6\"",
    "question_en": "What is Outcome, when Score is 1-6, 3-6?",
    "question_th": "Outcome คืออะไร เมื่อสกอร์คือ 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_en": "What is Date, when Score is 6-3, 4-6, 0-6?",
    "question_th": "วันที่เท่าไหร่เมื่อสกอร์คือ 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_en": "What is Score, when Opponent is Natalia Rizhonkova?",
    "question_th": "Score คืออะไร เมื่อฝ่ายตรงข้ามคือ 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_en": "Which Game has a Nugget points of 89?",
    "question_th": "เกมใดมีแต้มนักเก็ต 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_en": "Which Record has a Result of win, and a Streak of won 1, and a Game of 47?",
    "question_th": "สถิติใดมีผลการแข่งขันชนะ และสตรีคชนะ 1 และเกม 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_en": "How many Opponents have a Result of win, and Nuggets points smaller than 115, and an Opponent of washington?",
    "question_th": "มีฝ่ายตรงข้ามกี่คนที่ชนะ และนักเก็ตมีแต้มน้อยกว่า 115 และฝ่ายตรงข้ามจากวอชิงตันมีหนึ่งคน",
    "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_en": "How many Opponents have a Result of loss, and a Game smaller than 49, and Nuggets points of 108?",
    "question_th": "มีฝ่ายตรงข้ามกี่คนที่มีผลการแข่งขันแพ้ และเกมหนึ่งมีแต้มน้อยกว่า 49 และแต้มนักเก็ตอยู่ที่ 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_en": "Which Result has a Game smaller than 37, and a Streak of lost 1, and a Record of 4-9?",
    "question_th": "ผลการแข่งขันใดที่มีเกมน้อยกว่า 37 และสตรีคที่แพ้ 1 และสถิติ 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_en": "What round has a name of vladimir morozov?",
    "question_th": "วลาดิเมียร์ โมโรซอฟ มีชื่อรอบไหน?",
    "context": "CREATE TABLE table_name_90 (round VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_36 WHERE date = \"12 december\"",
    "question_en": "What is the record for the date of 12 december?",
    "question_th": "บันทึกประจำวันที่ 12 ธันวาคม เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_36 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_79 WHERE name = \"ryan lochte\"",
    "question_en": "What is the date for the name ryan lochte?",
    "question_th": "ชื่อ 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_en": "What is the record for the date 15 december, and a round of final?",
    "question_th": "สถิติวันที่ 15 ธันวาคม และรอบชิงชนะเลิศเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_6 (record VARCHAR, date VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT MIN(attendance) FROM table_name_46 WHERE week = 11",
    "question_en": "What is the lowest attendance for week 11?",
    "question_th": "ผู้เข้าร่วมต่ำสุดในสัปดาห์ที่ 11 คืออะไร?",
    "context": "CREATE TABLE table_name_46 (attendance INTEGER, week VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(attendance) FROM table_name_98 WHERE week = 4",
    "question_en": "What is the total number of spectators on week 4?",
    "question_th": "จำนวนผู้ชมทั้งหมดในสัปดาห์ที่ 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_en": "What was the sample size for polling on May 2-7, 2007 for Hillary Clinton?",
    "question_th": "ขนาดตัวอย่างสำหรับการเลือกตั้งในวันที่ 2-7 พฤษภาคม 2550 สำหรับฮิลลารี คลินตันคือเท่าใด",
    "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_en": "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?",
    "question_th": "ใครคือพรรครีพับลิกันเมื่อฮิลลารีคลินตันเป็นพรรคเดโมแครตและขนาดกลุ่มตัวอย่างมากกว่า 1,087 คนโดยมีข้อผิดพลาด 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_en": "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?",
    "question_th": "แหล่งที่มาของการสำรวจความคิดเห็นเมื่อฮิลลารี คลินตันเป็นพรรคเดโมแครต จอห์น แมคเคนเป็นพรรครีพับลิกัน และค่าความผิดพลาดน้อยกว่า 4.5 ในวันที่ 2-7 พฤษภาคม พ.ศ. 2550",
    "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_en": "What si the total sample size at rasmussen reports when the margin of error was bigger than 4.5?",
    "question_th": "ขนาดตัวอย่างทั้งหมดที่ Rasmussen รายงานเมื่อส่วนต่างของข้อผิดพลาดมากกว่า 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_en": "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?",
    "question_th": "วันใดที่การเลือกตั้งเกิดขึ้นที่ควินนิเปียก เมื่อจอห์น แมคเคนเป็นพรรครีพับลิกัน บารัค โอบามาเป็นพรรคเดโมแครต และขนาดของกลุ่มตัวอย่างใหญ่กว่าปี 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_en": "What is To Par, when Player is Greg Norman?",
    "question_th": "To Par คืออะไร เมื่อผู้เล่นคือ 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_en": "What is Score, when Money ( $ ) is 32,200, and when Player is Chip Beck?",
    "question_th": "Score คืออะไร เมื่อเงิน ($ ) คือ 32,200 และเมื่อผู้เล่นคือ 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_en": "What is Money ( $ ), when Player is Greg Norman?",
    "question_th": "เงิน ($ ) คืออะไรเมื่อผู้เล่นคือ 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_en": "What is Player, when Country is United States, and when Score is 73-76-72-66=287?",
    "question_th": "ผู้เล่นคืออะไร เมื่อประเทศคือสหรัฐอเมริกา และเมื่อคะแนนคือ 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_en": "What is To Par, when Money ( $ ) is Playoff, and when Score is 68-73-77-65=283?",
    "question_th": "To Par คืออะไร เมื่อเงิน ($ ) คือรอบเพลย์ออฟ และเมื่อคะแนนคือ 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_en": "What country was Ernie Els from?",
    "question_th": "Ernie Els มาจากประเทศใด",
    "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_en": "What was the par for the t5 place player Steve Jones?",
    "question_th": "สตีฟ โจนส์ ผู้เล่นอันดับ 5 มีค่าพาร์เท่าไร?",
    "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_en": "What type is You from the state of Chen?",
    "question_th": "คุณเป็นคนประเภทไหนจากรัฐเฉิน?",
    "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_en": "What country had the runner abubaker kaki khamis in lane 5?",
    "question_th": "ประเทศใดมีนักวิ่ง abubaker kaki khamis ในเลน 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_en": "What is the highest heat for a lane past 1 and mark of 1:48.61?",
    "question_th": "ความร้อนสูงสุดสำหรับเลนที่ผ่าน 1 และเครื่องหมาย 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_en": "What is average for Benito Lorenzi league when total is smaller than 143?",
    "question_th": "ค่าเฉลี่ยของลีกเบนิโต ลอเรนซีเมื่อผลรวมน้อยกว่า 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_en": "Which league has total smaller than 284, with Sandro Mazzola league?",
    "question_th": "ลีกไหนมีรวมน้อยกว่า 284 กับลีกซานโดร มาซโซล่า?",
    "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_en": "What is the earliest election with 2 seats and the outcome of the election of minority in parliament?",
    "question_th": "การเลือกตั้งเร็วสุดที่มี 2 ที่นั่ง และผลการเลือกตั้งเสียงข้างน้อยในรัฐสภาเป็นอย่างไร?",
    "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_en": "How many seats does the election with the outcome of election of minority in parliament and 186,226 PNC votes have?",
    "question_th": "การเลือกตั้งที่มีผลการเลือกตั้งเสียงข้างน้อยในรัฐสภาได้จำนวน 186,226 เสียง กปปส.",
    "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_en": "How many seats did the election before 2004 with 3.4% share of votes have?",
    "question_th": "การเลือกตั้งก่อนปี 2547 ด้วยคะแนนเสียงร่วม 3.4% มีที่นั่งกี่ที่นั่ง?",
    "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_en": "How many PNC votes did the election before 1996 have?",
    "question_th": "การเลือกตั้งก่อนปี 2539 มีคะแนนเสียง PNC กี่เสียง?",
    "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_en": "How many times is the postion S?",
    "question_th": "ตำแหน่ง 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_en": "how many times is the name Derek Smith when the round is higher than 3?",
    "question_th": "ชื่อ Derek Smith กี่ครั้งแล้วที่รอบสูงกว่า 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_en": "what is the lowest overall when the pick is 20?",
    "question_th": "โดยรวมต่ำสุดเมื่อเลือกคือ 20 คืออะไร?",
    "context": "CREATE TABLE table_name_50 (overall INTEGER, pick VARCHAR)"
  },
  {
    "answer": "SELECT MAX(round) FROM table_name_32 WHERE overall < 17",
    "question_en": "what is the highest round when the overall is less than 17?",
    "question_th": "รอบสูงสุดเมื่อผลรวมน้อยกว่า 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_en": "What is Partner, when Opponents In The Final is Remi Tezuka Shuko Aoyama?",
    "question_th": "Partner คืออะไร เมื่อฝ่ายตรงข้ามในรอบชิงชนะเลิศคือ 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_en": "What is Opponents In The Final, when Score is 4-1 5-4 (7) 4-2?",
    "question_th": "คู่ต่อสู้ในรอบชิงชนะเลิศคืออะไร เมื่อสกอร์คือ 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éphanie dubois\"",
    "question_en": "What is Date, when Opponents In The Final, is Maria-Fernanda Alves Stéphanie Dubois?",
    "question_th": "วันที่เท่าไหร่เมื่อฝ่ายตรงข้ามในรอบชิงชนะเลิศคือ Maria-Fernanda Alves Stéphanie 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_en": "Where was the Fury FC 4: High Voltage event held?",
    "question_th": "งาน Fury FC 4: High Voltage จัดขึ้นที่ไหน?",
    "context": "CREATE TABLE table_name_5 (location VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT nat FROM table_name_93 WHERE ends = \"2009\"",
    "question_en": "What's the nat that ends in 2009?",
    "question_th": "nat ที่สิ้นสุดในปี 2009 คืออะไร?",
    "context": "CREATE TABLE table_name_93 (nat VARCHAR, ends VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_69 WHERE moving_from = \"gimnàstic\"",
    "question_en": "What is the type when they move from Gimnàstic?",
    "question_th": "เมื่อพวกเขาย้ายจากกิมนาสติกเป็นประเภทไหน?",
    "context": "CREATE TABLE table_name_69 (type VARCHAR, moving_from VARCHAR)"
  },
  {
    "answer": "SELECT transfer_window FROM table_name_19 WHERE ends = \"2012\"",
    "question_en": "What's the transfer window that ends in 2012?",
    "question_th": "กรอบเวลาการโอนที่จะสิ้นสุดในปี 2012 คืออะไร?",
    "context": "CREATE TABLE table_name_19 (transfer_window VARCHAR, ends VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_60 WHERE ends = \"2009\"",
    "question_en": "What's the type that ends in 2009?",
    "question_th": "ประเภทที่สิ้นสุดในปี 2552 คืออะไร?",
    "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_en": "What's the moving of the Esp with a transfer and named De La Red?",
    "question_th": "ความเคลื่อนไหวของ เอสพี กับการย้ายทีม และชื่อ เดอ ลา เรด คืออะไร?",
    "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ález\"",
    "question_en": "What type is González?",
    "question_th": "กอนซาเลซเป็นประเภทไหน?",
    "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_en": "How many sales took place with a peak of 1 for Boris?",
    "question_th": "มียอดขายเกิดขึ้นกี่รายการโดยมียอด 1 สำหรับบอริส",
    "context": "CREATE TABLE table_name_81 (sales VARCHAR, peak VARCHAR, artist VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_60 WHERE opponent = \"cincinnati royals\"",
    "question_en": "What was the record in the game where the opponent was the cincinnati royals?",
    "question_th": "อะไรคือสถิติในเกมที่คู่ต่อสู้คือราชวงศ์ซินซินเนติ?",
    "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_en": "What was the attendance of game 25 when the played the San Francisco Warriors?",
    "question_th": "อะไรคือการเข้าร่วมของเกมที่ 25 เมื่อเล่นกับ 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_en": "Which manufacturer has a grid of 6?",
    "question_th": "ผู้ผลิตรายใดมีตาราง 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_en": "Who is the rider for Honda with a grid of 25?",
    "question_th": "ใครคือนักบิดฮอนด้าที่มีกริด 25?",
    "context": "CREATE TABLE table_name_72 (rider VARCHAR, manufacturer VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT laps FROM table_name_62 WHERE grid = \"5\"",
    "question_en": "How many laps has a grid of 5?",
    "question_th": "กี่รอบมีตาราง 5?",
    "context": "CREATE TABLE table_name_62 (laps VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT rider FROM table_name_43 WHERE time_retired = \"accident\"",
    "question_en": "Who is the rider whose time/retired is accident?",
    "question_th": "ใครคือผู้ขับขี่ที่หมดเวลา/เกษียณเนื่องจากอุบัติเหตุ?",
    "context": "CREATE TABLE table_name_43 (rider VARCHAR, time_retired VARCHAR)"
  },
  {
    "answer": "SELECT laps FROM table_name_51 WHERE time_retired = \"+23.080\"",
    "question_en": "How many laps have a time/retired of +23.080?",
    "question_th": "มีเวลา/เกษียณที่ +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_en": "Who is the manufacturer for Henk Vd Lagemaat?",
    "question_th": "ใครเป็นผู้ผลิต 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_en": "what is the technology when the gel pouring is no and the analysis time is 8 days?",
    "question_th": "เทคโนโลยีอะไรเมื่อไม่มีการเทเจลและเวลาวิเคราะห์คือ 8 วัน?",
    "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_en": "what is the throughput (including analysis) when the analysis time is 4 hours?",
    "question_th": "ปริมาณงาน (รวมถึงการวิเคราะห์) เป็นเท่าใดเมื่อเวลาวิเคราะห์คือ 4 ชั่วโมง",
    "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_en": "What is Geust, when Result is 0:9?",
    "question_th": "Geust คืออะไร เมื่อผลลัพธ์คือ 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_en": "What is Home, when Time is 18:00, and when Geust is Servette FC (CHL)?",
    "question_th": "บ้านคืออะไร เมื่อเวลา 18:00 น. และเมื่อ Geust อยู่ที่ 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_en": "What is Time, when Geust is AC Bellinzona (CHL)?",
    "question_th": "เวลาคืออะไร เมื่อ Geust คือ 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_en": "What was the transfer fee when winter was the transfer window?",
    "question_th": "ค่าธรรมเนียมการโอนเมื่อช่วงฤดูหนาวเป็นช่วงโอนย้ายคือเท่าไร?",
    "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_en": "What transfer fee has both winter as the transfer window, and Madureira as the moving to?",
    "question_th": "ค่าธรรมเนียมการโอนใดที่มีทั้งฤดูหนาวเป็นหน้าต่างโอนและ Madureira เป็นการย้ายไป?",
    "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_en": "What was the moving that has a free transfer fee, and the nationality of CYP, and winter as the transfer window?",
    "question_th": "อะไรคือการย้ายที่มีค่าธรรมเนียมการโอนฟรี และสัญชาติของ CYP และฤดูหนาวเป็นหน้าต่างการโอน?",
    "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_en": "Who is moving to Metalurh Donetsk?",
    "question_th": "ใครกำลังจะย้ายไป 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_en": "The player moving to Villa Rio has what transfer fee?",
    "question_th": "นักเตะที่ย้ายมาวิลล่า ริโอมีค่าธรรมเนียมการโอนเท่าไหร่?",
    "context": "CREATE TABLE table_name_11 (transfer_fee VARCHAR, moving_to VARCHAR)"
  },
  {
    "answer": "SELECT transfer_window FROM table_name_90 WHERE name = \"emerson\"",
    "question_en": "Emerson has what transfer window?",
    "question_th": "เอเมอร์สันมีตลาดซื้อขายช่วงไหน?",
    "context": "CREATE TABLE table_name_90 (transfer_window VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_7 WHERE time = \"2:33\"",
    "question_en": "Where was the fight located that lasted a time of 2:33?",
    "question_th": "การต่อสู้เกิดขึ้นที่ไหนซึ่งกินเวลา 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_en": "What is the total number of Game, when Attendance is \"18,568\"?",
    "question_th": "จำนวนเกมทั้งหมดเป็นเท่าใด เมื่อผู้เข้าร่วมคือ \"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_en": "In Silver Bow County, Montana, when the capicity is more than 45 tons, what's the highest rank found?",
    "question_th": "ในซิลเวอร์โบว์เคาน์ตี้ รัฐมอนทานา เมื่อความจุมากกว่า 45 ตัน พบอันดับสูงสุดเท่าใด",
    "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_en": "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?",
    "question_th": "ในไพนัลเคาน์ตี้ รัฐแอริโซนา เมื่อมีความจุมากกว่า 5 เมตริกตัน และต่ำกว่า 14 ตัน เหมืองนี้เรียกว่าอะไร",
    "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_en": "How many sets lost have a loss smaller than 3 and a rank larger than 1?",
    "question_th": "มีกี่เซ็ตที่เสียไปซึ่งมีการสูญเสียน้อยกว่า 3 และมีอันดับมากกว่า 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_en": "What is Bids, when Champions is \"1\"?",
    "question_th": "Bids คืออะไร เมื่อแชมเปี้ยนเป็น \"1\"?",
    "context": "CREATE TABLE table_name_34 (bids VARCHAR, champions VARCHAR)"
  },
  {
    "answer": "SELECT finalist FROM table_name_38 WHERE week = \"october 21\"",
    "question_en": "Which finalist played in the week of October 21?",
    "question_th": "ผู้เข้ารอบสุดท้ายคนไหนที่เล่นในสัปดาห์วันที่ 21 ตุลาคม?",
    "context": "CREATE TABLE table_name_38 (finalist VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_27 WHERE week = \"october 21\"",
    "question_en": "On what surface did they play the match in the week of October 21?",
    "question_th": "พวกเขาเล่นการแข่งขันบนพื้นผิวใดในสัปดาห์ที่ 21 ตุลาคม?",
    "context": "CREATE TABLE table_name_27 (surface VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT finalist FROM table_name_91 WHERE tournament = \"monte carlo\"",
    "question_en": "Who was the finalist in the Monte Carlo Tournament?",
    "question_th": "ใครคือผู้เข้ารอบสุดท้ายในการแข่งขัน Monte Carlo?",
    "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_en": "What is the Rank of the Nation with more than 1 Gold and a more than 4 Total medals?",
    "question_th": "อันดับของประเทศที่มีมากกว่า 1 เหรียญทองและเหรียญรางวัลรวมมากกว่า 4 เหรียญคืออะไร?",
    "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_en": "What is the Gold for the Nation in Rank 4 with less than 1 Silver?",
    "question_th": "อะไรคือทองคำเพื่อชาติในอันดับ 4 ที่มีเงินน้อยกว่า 1 เหรียญ?",
    "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_en": "What is the transfer window for Steven Thompson?",
    "question_th": "หน้าต่างการถ่ายโอนของ 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_en": "What type is Kevin Muscat?",
    "question_th": "Kevin Muscat เป็นประเภทไหน?",
    "context": "CREATE TABLE table_name_35 (type VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT freestyle_leg FROM table_name_5 WHERE country = \"netherlands\"",
    "question_en": "What is the freestyle leg for the Netherlands?",
    "question_th": "ขาฟรีสไตล์ของเนเธอร์แลนด์คืออะไร?",
    "context": "CREATE TABLE table_name_5 (freestyle_leg VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT release_date FROM table_name_37 WHERE location = \"europe\"",
    "question_en": "What is the release date when the location is Europe?",
    "question_th": "วันที่วางจำหน่ายคือเมื่อใดสถานที่คือยุโรป?",
    "context": "CREATE TABLE table_name_37 (release_date VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT release_date FROM table_name_96 WHERE location = \"germany\"",
    "question_en": "What is the release in Germany?",
    "question_th": "การเปิดตัวในเยอรมนีคืออะไร?",
    "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_en": "What is the name with a release date of December 1966, and a Location of UK?",
    "question_th": "ชื่ออะไรซึ่งมีกำหนดวางจำหน่ายในเดือนธันวาคม พ.ศ. 2509 และที่ตั้งของสหราชอาณาจักร?",
    "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_en": "What is the US release date?",
    "question_th": "วันที่วางจำหน่ายของสหรัฐอเมริกาคือเมื่อใด",
    "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_en": "What is the name in the UK, with a release date of December 1966?",
    "question_th": "ชื่อในสหราชอาณาจักรคืออะไร โดยมีวันวางจำหน่ายในเดือนธันวาคม พ.ศ. 2509?",
    "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_en": "What away team scored 107-104?",
    "question_th": "ทีมเยือนทีมไหนทำสกอร์ได้ 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_en": "What was the away team for the New Zealand breakers?",
    "question_th": "ทีมเยือนของเบรกเกอร์นิวซีแลนด์คือทีมไหน?",
    "context": "CREATE TABLE table_name_59 (report VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_73 WHERE score = \"63-69\"",
    "question_en": "What was the away team that scored 63-69?",
    "question_th": "ทีมเยือนที่ได้สกอร์ 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_en": "Where is the player Davis Love III?",
    "question_th": "ผู้เล่น 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_en": "What is the second qualifying time for the dale coyne racing team with a first qualifying time of 1:00.081?",
    "question_th": "เวลารอบคัดเลือกครั้งที่สองของทีม dale coyne racing โดยมีเวลารอบคัดเลือกครั้งแรกคือ 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_en": "Which team had a second qualifying time of 58.539?",
    "question_th": "ทีมใดมีเวลารอบคัดเลือกครั้งที่สองที่ 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_en": "What is the best time from patrick carpentier from the forsythe racing team?",
    "question_th": "เวลาที่ดีที่สุดจากแพทริค คาร์เพนเทียร์ จากทีมแข่งรถฟอร์ไซธ์คือเวลาใด?",
    "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_en": "What is the best time for a team with a first-qualifying time of 59.448?",
    "question_th": "เวลาที่ดีที่สุดสำหรับทีมที่มีเวลารอบคัดเลือกครั้งแรกที่ 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_en": "What is the name of the racer with a best time of 57.546?",
    "question_th": "นักแข่งที่ทำเวลาดีที่สุดที่ 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_en": "What is the name of the racer with a first-qualifying time of 58.991?",
    "question_th": "นักแข่งที่ทำเวลารอบคัดเลือกครั้งแรกได้ 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_en": "What is the average Points, when Played is greater than 126?",
    "question_th": "แต้มเฉลี่ยเมื่อเล่นมากกว่า 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_en": "What is the sum of Average, when 2006 is \"36/40\", and when Played is greater than 126?",
    "question_th": "ผลรวมของค่าเฉลี่ยเมื่อปี 2549 คือ \"36/40\" และเมื่อเล่นมากกว่า 126 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_64 (average INTEGER, played VARCHAR)"
  },
  {
    "answer": "SELECT 2006 FROM table_name_13 WHERE team = \"tacuary\"",
    "question_en": "What is 2006, when Team is \"Tacuary\"?",
    "question_th": "2549 เมื่อทีมคือ \"Tacuary\" คืออะไร?",
    "context": "CREATE TABLE table_name_13 (team VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_94 WHERE bronze = 3",
    "question_en": "Which Rank has a Bronze of 3?",
    "question_th": "อันดับใดมีเหรียญทองแดงเท่ากับ 3?",
    "context": "CREATE TABLE table_name_94 (rank VARCHAR, bronze VARCHAR)"
  },
  {
    "answer": "SELECT runner_s__up FROM table_name_52 WHERE year = \"1956\"",
    "question_en": "What are the Runner(s)-up of the 1956 Championship?",
    "question_th": "รองชนะเลิศของการแข่งขันชิงแชมป์ปี 1956 คืออะไร?",
    "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_en": "What are the Runner(s)-up of the 1972 Championship?",
    "question_th": "รองชนะเลิศของการแข่งขันชิงแชมป์ปี 1972 คืออะไร?",
    "context": "CREATE TABLE table_name_41 (runner_s__up VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_12 WHERE score = \"293\"",
    "question_en": "What is the Country of the Championship with a Score of 293?",
    "question_th": "ประเทศใดเป็นแชมป์ด้วยคะแนน 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_en": "What is the total enrollment at the school that has the nickname of the Fightin' Blue Hens?",
    "question_th": "จำนวนการลงทะเบียนทั้งหมดในโรงเรียนที่มีชื่อเล่นว่า 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–25\"",
    "question_en": "What was the score for set 3 when set 1 was 14–25?",
    "question_th": "คะแนนสำหรับชุดที่ 3 เมื่อชุดที่ 1 คือ 14–25 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_1 (set_3 VARCHAR, set_1 VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_23 WHERE set_3 = \"31–29\"",
    "question_en": "What is the time when the set 3 score is 31–29?",
    "question_th": "คะแนนเซต 3 อยู่ที่ 31–29 เมื่อไหร่?",
    "context": "CREATE TABLE table_name_23 (time VARCHAR, set_3 VARCHAR)"
  },
  {
    "answer": "SELECT total FROM table_name_75 WHERE set_1 = \"14–25\"",
    "question_en": "What is the total when the score for set 1 is 14–25?",
    "question_th": "คะแนนรวมของเซต 1 คือ 14–25 จะเป็นเท่าใด",
    "context": "CREATE TABLE table_name_75 (total VARCHAR, set_1 VARCHAR)"
  },
  {
    "answer": "SELECT total FROM table_name_21 WHERE set_2 = \"20–25\"",
    "question_en": "What is the total when the score for set 2 is 20–25?",
    "question_th": "คะแนนรวมของเซต 2 คือ 20–25 จะเป็นเท่าใด",
    "context": "CREATE TABLE table_name_21 (total VARCHAR, set_2 VARCHAR)"
  },
  {
    "answer": "SELECT total FROM table_name_86 WHERE set_2 = \"25–22\"",
    "question_en": "What is the total when the score for set 2 is 25–22?",
    "question_th": "คะแนนรวมของเซต 2 คือ 25–22 จะเป็นเท่าใด",
    "context": "CREATE TABLE table_name_86 (total VARCHAR, set_2 VARCHAR)"
  },
  {
    "answer": "SELECT price FROM table_name_20 WHERE downstream = \"150 mbps\"",
    "question_en": "What is the price of 150 mbps downstread?",
    "question_th": "ดาวน์สเตรด 150 mbps ราคาเท่าไหร่คะ?",
    "context": "CREATE TABLE table_name_20 (price VARCHAR, downstream VARCHAR)"
  },
  {
    "answer": "SELECT upstream FROM table_name_1 WHERE price = \"65 chf\"",
    "question_en": "What is the upstream with the price 65 chf?",
    "question_th": "ต้นน้ำราคา 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_en": "What is the price of the internet 150 plans?",
    "question_th": "เน็ต 150 แพลนราคาเท่าไหร่คะ?",
    "context": "CREATE TABLE table_name_63 (price VARCHAR, internet_plan VARCHAR)"
  },
  {
    "answer": "SELECT upstream FROM table_name_82 WHERE downstream = \"100 mbps\"",
    "question_en": "What is the upstream for the 100 mbps downstream?",
    "question_th": "อัปสตรีมสำหรับดาวน์สตรีม 100 mbps คืออะไร",
    "context": "CREATE TABLE table_name_82 (upstream VARCHAR, downstream VARCHAR)"
  },
  {
    "answer": "SELECT price FROM table_name_22 WHERE downstream = \"60 mbps\"",
    "question_en": "What is the price of 60 mbps downstream?",
    "question_th": "ดาวน์สตรีม 60 mbps ราคาเท่าไหร่?",
    "context": "CREATE TABLE table_name_22 (price VARCHAR, downstream VARCHAR)"
  },
  {
    "answer": "SELECT upstream FROM table_name_42 WHERE internet_plan = \"internet 100\"",
    "question_en": "What is the upstream for the internet 100 plans?",
    "question_th": "ต้นน้ำสำหรับแผนอินเทอร์เน็ต 100 คืออะไร?",
    "context": "CREATE TABLE table_name_42 (upstream VARCHAR, internet_plan VARCHAR)"
  },
  {
    "answer": "SELECT club_team FROM table_name_12 WHERE round < 4",
    "question_en": "Which club team was the player from who was selected in a round under 4?",
    "question_th": "นักเตะจากทีมสโมสรใดที่ได้รับคัดเลือกในรอบต่ำกว่า 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_en": "What was the club team for Kyle de Coste?",
    "question_th": "ทีมสโมสรของไคล์ เด คอสต์คือทีมอะไร?",
    "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_en": "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?",
    "question_th": "ค่า w plyf สูงสุดในช่วงปีแรกก่อนปี 1960, G plyf มากกว่า 0, G > .500 น้อยกว่า 43 และ wl% น้อยกว่า 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_en": "What is the sum of the yr plyf of coach ed robinson, who has a G plyf of 0?",
    "question_th": "ผลรวมของชั้นปีของโค้ชเอ็ด โรบินสัน ที่มีชั้น G เป็น 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_en": "What is the total number of yr plyf with a G plyf less than 0?",
    "question_th": "จำนวนปีทั้งหมดที่มีชั้น G น้อยกว่า 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_en": "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?",
    "question_th": "ใครคือโค้ชที่มี wl% มากกว่า 0.516, ปีก่อนปี 1925, หนึ่งปีมากกว่า 2 และปีที่แล้วในปี 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_en": "What is the average last yr with an l plyf less than 0?",
    "question_th": "ค่าเฉลี่ยของปีที่แล้วโดยที่ l plyf น้อยกว่า 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_en": "What is the earliest last year with a yr plyf less than 0?",
    "question_th": "ปีแรกสุดที่มีปีน้อยกว่า 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_en": "What is the To par of the Player with a Score of 69-70=139?",
    "question_th": "ค่าพาร์ของผู้เล่นที่มีคะแนน 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_en": "What is Bob Gilder in Place T3's To par?",
    "question_th": "Bob Gilder อยู่ในอันดับ To par ของ T3 คืออะไร?",
    "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 = \"žydrūnas ilgauskas (13)\"",
    "question_en": "What is High Points, when Game is less than 82, when Location Attendance is \"Quicken Loans Arena 20,562\", and when High Rebounds is \"Žydrūnas Ilgauskas (13)\"?",
    "question_th": "High Points คืออะไร เมื่อเกมน้อยกว่า 82 เมื่อ Location Attendance คือ \"Quicken Loans Arena 20,562\" และเมื่อ High Rebounds คือ \"Žydrūnas 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_en": "What is the lowest Game, when High Assists is \"Maurice Williams (8)\"?",
    "question_th": "เกมใดที่ต่ำที่สุด เมื่อ High Assists คือ \"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_en": "What is the lowest Game, when Date is \"April 12\"?",
    "question_th": "เกมไหนต่ำสุดคือวันที่ \"12 เมษายน\"?",
    "context": "CREATE TABLE table_name_95 (game INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_43 WHERE date = \"5 sep\"",
    "question_en": "What is Winner, when Date is 5 Sep?",
    "question_th": "ผู้ชนะคืออะไร เมื่อถึงวันที่ 5 กันยายน?",
    "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_en": "What is Team, when Circuit is Queensland Raceway, and when Winner is Garth Tander?",
    "question_th": "Team คืออะไร เมื่อ Circuit คือ Queensland Raceway และเมื่อผู้ชนะคือ 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_en": "What is Date, when Team is Holden Racing Team, and when Circuit is Eastern Creek Raceway?",
    "question_th": "วันที่คือเมื่อใดเมื่อทีมเป็นทีม Holden Racing และเมื่อใด Circuit คือ 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_en": "What is Team, when Circuit is Phillip Island Grand Prix Circuit?",
    "question_th": "Team คืออะไร เมื่อ Circuit คือ 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_en": "What is Circuit, when Series is ASTC Round 4?",
    "question_th": "Circuit คืออะไร เมื่อ Series คือ 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_en": "What is the total number of React, when Name is Sean Wroe, and when Lane is greater than 2?",
    "question_th": "จำนวน React ทั้งหมดเมื่อชื่อคือ Sean Wroe และเมื่อ Lane มากกว่า 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_en": "What is the highest Lane, when Mark is 46.65, and when React is greater than 0.251?",
    "question_th": "เลนที่สูงที่สุดคืออะไร เมื่อ Mark อยู่ที่ 46.65 และเมื่อ React มากกว่า 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_en": "What is the lowest React, when Mark is 46.26 sb, and when Lane is greater than 6?",
    "question_th": "React ต่ำสุดคืออะไร เมื่อ Mark คือ 46.26 sb และเมื่อ Lane มากกว่า 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_en": "What is Mark, when Lane is greater than 2, and when Country is Bahamas?",
    "question_th": "มาร์คคืออะไร เมื่อเลนมีค่ามากกว่า 2 และเมื่อประเทศคือบาฮามาส",
    "context": "CREATE TABLE table_name_44 (mark VARCHAR, lane VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT number FROM table_name_11 WHERE language = \"belarusian\"",
    "question_en": "What is the number of the belarusian language?",
    "question_th": "หมายเลขของภาษาเบลารุสคืออะไร?",
    "context": "CREATE TABLE table_name_11 (number VARCHAR, language VARCHAR)"
  },
  {
    "answer": "SELECT number FROM table_name_91 WHERE percentage___percentage_ = \"80.62\"",
    "question_en": "What is the number with an 80.62 percentage?",
    "question_th": "ตัวเลขที่มีเปอร์เซ็นต์ 80.62 คืออะไร?",
    "context": "CREATE TABLE table_name_91 (number VARCHAR, percentage___percentage_ VARCHAR)"
  },
  {
    "answer": "SELECT males FROM table_name_82 WHERE percentage___percentage_ = \"80.62\"",
    "question_en": "How many males have a percentage of 80.62?",
    "question_th": "ผู้ชายกี่คนมีเปอร์เซ็นต์ 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_en": "What is Name, when Team is New York Knicks, and when WSU Year(s) is 1965-68?",
    "question_th": "ชื่ออะไร เมื่อทีมคือ New York Knicks และเมื่อ WSU ปีคือ 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_en": "What is Name, when WSU Year(s) is 1981-82?",
    "question_th": "ชื่ออะไร เมื่อ WSU ปีคือ 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_en": "What is WSU Year(s), when Pro Year(s) is 1974-77?",
    "question_th": "WSU Year คืออะไร เมื่อ Pro Year คือ 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_en": "What is Pro Year(s), when Team is Cincinnati Royals?",
    "question_th": "Pro Year คืออะไร เมื่อทีมคือ 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_en": "What is Position, when Team is Cincinnati Royals?",
    "question_th": "ตำแหน่งคืออะไร เมื่อทีมคือ 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_en": "What is Name, when Team is Detroit Pistons, and when WSU Year(s) is 1979-82?",
    "question_th": "ชื่ออะไร เมื่อทีมคือ Detroit Pistons และเมื่อ WSU Year(s) คือ 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_en": "What is Position, when Overallis less than 314, and when Pick is less than 8?",
    "question_th": "ตำแหน่งคืออะไร เมื่อ Overallis น้อยกว่า 314 และเมื่อ Pick น้อยกว่า 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_en": "What is the average value of Overall, when Round is greater than 11, and when Pick is greater than 10?",
    "question_th": "ค่าเฉลี่ยของ Overall คืออะไร เมื่อ Round มากกว่า 11 และเมื่อ Pick มากกว่า 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_en": "What is Name, when Overall is greater than 132, and when Round is 12?",
    "question_th": "ชื่อคืออะไร เมื่อผลรวมมากกว่า 132 และเมื่อรอบคือ 12",
    "context": "CREATE TABLE table_name_59 (name VARCHAR, overall VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_18 WHERE pick = 20",
    "question_en": "What is College, when Pick is 20?",
    "question_th": "วิทยาลัยคืออะไร เมื่อพิคอายุ 20 ปี",
    "context": "CREATE TABLE table_name_18 (college VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT AVG(overall) FROM table_name_80 WHERE pick = 19",
    "question_en": "What is average Overall, when Pick is 19?",
    "question_th": "โดยเฉลี่ยโดยรวมแล้วเมื่อเลือกคือ 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_en": "What is the average pick for Princeton after round 3?",
    "question_th": "การเลือกเฉลี่ยของพรินซ์ตันหลังรอบ 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_en": "What is the earliest round Clark was in?",
    "question_th": "คลาร์กเข้ารอบแรกสุดคืออะไร?",
    "context": "CREATE TABLE table_name_86 (round INTEGER, college VARCHAR)"
  },
  {
    "answer": "SELECT tie_no FROM table_name_12 WHERE home_team = \"gillingham\"",
    "question_en": "What is the tie number when the home team was gillingham?",
    "question_th": "จิลลิ่งแฮมเจ้าบ้านเสมอกันเลขอะไร?",
    "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_en": "What was the score when the home team was goole town?",
    "question_th": "เมื่อเจ้าบ้านเป็นกูเกิลทาวน์สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_84 (score VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_30 WHERE home_team = \"brentford\"",
    "question_en": "What date had the home team as brentford?",
    "question_th": "เจ้าบ้านในฐานะเบรนท์ฟอร์ดมีวันไหน?",
    "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_en": "What was the tie number when bradford park avenue was the away team?",
    "question_th": "แบรดฟอร์ด พาร์ค อเวนิวเป็นทีมเยือนเสมอกันที่หมายเลขอะไร?",
    "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_en": "What shows for House 1950 when the Governors 1950 show governors 1995?",
    "question_th": "อะไรแสดงให้เห็นสำหรับ House 1950 เมื่อ Governors 1950 แสดง 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_en": "What shows for House 1950 when the General 1950 is general 1986?",
    "question_th": "อะไรแสดงให้เห็นสำหรับ House 1950 เมื่อ General 1950 เป็น 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_en": "What is the Governors 1950 when the General 1950 is general 1979?",
    "question_th": "Governors 1950 คืออะไร เมื่อ General 1950 เป็น 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_en": "What shows for House 1950 with a 1950 less than 1980, and Governors 1950 of governors 1970?",
    "question_th": "อะไรแสดงให้เห็นสำหรับสภาปี 1950 โดยมีปี 1950 น้อยกว่าปี 1980 และผู้ว่าการรัฐปี 1950 ในปี 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_en": "What month before 1973 is listed for the album united we stand?",
    "question_th": "เดือนใดก่อนปี 1973 อยู่ในอัลบั้ม 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_en": "What is the name of the river found in Madhya Pradesh, India?",
    "question_th": "แม่น้ำที่พบในรัฐมัธยประเทศ ประเทศอินเดีย ชื่อแม่น้ำอะไร",
    "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_en": "What is the name of the deity that the state of Bihar was named after?",
    "question_th": "เทพเจ้าที่รัฐพิหารตั้งชื่อตามชื่ออะไร?",
    "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_en": "What is the name of the diety for the river of sone?",
    "question_th": "ผู้อดอาหารสำหรับแม่น้ำโซเนชื่ออะไร?",
    "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_en": "What is the name of the stone found in Andhra Pradesh, India?",
    "question_th": "หินที่พบในรัฐอานธรประเทศ ประเทศอินเดีย ชื่ออะไร",
    "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_en": "What date was the game score 103-94?",
    "question_th": "คะแนนเกม 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_en": "Who is the away team that played home team of Perth Wildcats?",
    "question_th": "ทีมเยือนที่เล่นเป็นทีมเหย้าของ เพิร์ธ ไวลด์แคทส์ คือทีมใด?",
    "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_en": "What is the score of the game that was played on 29 November at State Sports Centre?",
    "question_th": "เกมที่เล่นเมื่อวันที่ 29 พ.ย. ที่สเตท สปอร์ต เซ็นเตอร์ เป็นอย่างไรบ้าง?",
    "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_en": "What date did home team Gold Coast Blaze play?",
    "question_th": "ทีมเหย้า โกลด์ โคสต์ เบลซ ลงเล่นวันที่เท่าไหร่?",
    "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_en": "What kind of report was for the game played on 29 November with Melbourne Tigers being the away team?",
    "question_th": "รายงานประเภทใดของเกมที่เล่นในวันที่ 29 พฤศจิกายน โดยมีเมลเบิร์น ไทเกอร์ส เป็นทีมเยือน?",
    "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_en": "Who is the away team that played home team Perth Wildcats?",
    "question_th": "ทีมเยือนที่เล่นทีมเหย้า เพิร์ธ ไวลด์แคทส์ คือใคร?",
    "context": "CREATE TABLE table_name_82 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_79 WHERE week = 11",
    "question_en": "Who did they play in week 11?",
    "question_th": "พวกเขาเล่นใครในสัปดาห์ที่ 11?",
    "context": "CREATE TABLE table_name_79 (opponent VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_36 WHERE week = 6",
    "question_en": "What day did they play in week 6?",
    "question_th": "พวกเขาเล่นวันไหนในสัปดาห์ที่ 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_en": "Name the Date which has a Score of 3-1 and Attendances of 32 590?",
    "question_th": "ตั้งชื่อวันที่ซึ่งมีคะแนน 3-1 และผู้เข้าร่วม 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_en": "Which Venue is on 2004-07-24?",
    "question_th": "สถานที่ใดคือวันที่ 24-07-2547?",
    "context": "CREATE TABLE table_name_68 (venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_31 WHERE venue = \"idrottsparken\"",
    "question_en": "Which Score has a Venue of idrottsparken?",
    "question_th": "คะแนนใดมีสถานที่จัดงาน idrottsparken?",
    "context": "CREATE TABLE table_name_31 (score VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT comp FROM table_name_84 WHERE date = \"2004-10-17\"",
    "question_en": "Which Comp is on 2004-10-17?",
    "question_th": "คอมพ์ตัวไหนในวันที่ 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_en": "Which Venue has a Opponents of halmstad and a Score of 1-1?",
    "question_th": "สนามใดมีฝ่ายตรงข้ามของ ฮัล์มสตัด และสกอร์ 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_en": "Which Attendance that has a Venue of ryavallen?",
    "question_th": "ผู้เข้าร่วมคนไหนที่มีสถานที่ของ 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_en": "What is Tournament, when Outcome is Winner, and when Date is 13 July 2013?",
    "question_th": "การแข่งขันคืออะไร เมื่อผลลัพธ์เป็นผู้ชนะ และวันที่คือ 13 กรกฎาคม 2556 คือเมื่อใด",
    "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_en": "What is Date, when Outcome is Winner, and when Opponent is An-Sophie Mestach?",
    "question_th": "วันที่คืออะไร เมื่อผลลัพธ์เป็นผู้ชนะ และเมื่อใดฝ่ายตรงข้ามคือ 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_en": "What is Score, when Date is 10 July 2011?",
    "question_th": "Score คืออะไร เมื่อเป็นวันที่ 10 กรกฎาคม 2554",
    "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_en": "What network has a Play-by-play by Jack Edwards in 2000?",
    "question_th": "เครือข่ายใดที่มี Play-by-play โดย Jack Edwards ในปี 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_en": "What is the name of the pregame host when Bold was the network?",
    "question_th": "โฮสต์ก่อนเกมชื่ออะไรเมื่อ Bold อยู่ในเครือข่าย?",
    "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_en": "What was the Play-by-play when the color commentator was Eric Wynalda, earlier than 2005?",
    "question_th": "Play-by-play คืออะไรเมื่อผู้วิจารณ์สีคือ Eric Wynalda ก่อนปี 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_en": "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?",
    "question_th": "พิธีกรก่อนเกมชื่ออะไรในตอนที่ Play-by-play ดำเนินการโดย JP Dellacamera ก่อนปี 2009 และผู้วิจารณ์สีคือ 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–0\" AND set_1 = \"25–22\"",
    "question_en": "What date was the score 3–0, and set 1 was 25–22?",
    "question_th": "สกอร์ 3–0 คือวันไหน และเซต 1 คือ 25–22?",
    "context": "CREATE TABLE table_name_88 (date VARCHAR, score VARCHAR, set_1 VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_31 WHERE total = \"56–75\"",
    "question_en": "What date was the total 56–75?",
    "question_th": "ยอดรวม 56–75 คือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_31 (date VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT set_1 FROM table_name_34 WHERE set_3 = \"25–15\"",
    "question_en": "What is the Set 1 when Set 3 was 25–15?",
    "question_th": "ชุดที่ 1 คืออะไรเมื่อชุดที่ 3 อายุ 25–15 ปี",
    "context": "CREATE TABLE table_name_34 (set_1 VARCHAR, set_3 VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_42 WHERE total = \"75–45\"",
    "question_en": "What date was the total 75–45?",
    "question_th": "วันที่เท่าไหร่คือทั้งหมด 75–45?",
    "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_en": "What is the sum of the dates in december that were against the atlanta flames before game 40?",
    "question_th": "ผลรวมของวันที่ในเดือนธันวาคมที่พบกับ Atlanta Flame ก่อนเกมที่ 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_en": "What was the score of the game against montreal canadiens after game 26?",
    "question_th": "คะแนนของเกมกับมอนทรีออล คานาเดียนส์ หลังเกมที่ 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_en": "In what Round was Grant Long Drafted?",
    "question_th": "Grant Long Draft ในรอบใด",
    "context": "CREATE TABLE table_name_6 (round INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_70 WHERE school_club_team = \"memphis\"",
    "question_en": "What is the Player from Memphis?",
    "question_th": "ผู้เล่นจากเมมฟิสคืออะไร?",
    "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_en": "What Player was picked after Round 2 with a Pick number larger than 33?",
    "question_th": "ผู้เล่นคนใดที่ถูกเลือกหลังจากรอบที่ 2 โดยมีจำนวนการเลือกมากกว่า 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_en": "In what Round was the Memphis Player drafted?",
    "question_th": "ผู้เล่นเมมฟิสถูกดราฟท์ในรอบใด?",
    "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_en": "Which School/Club Team holds the 2006-2009 Years of Grizzlies ?",
    "question_th": "ทีมโรงเรียน/สโมสรใดที่ครองทีม Grizzlies ปี 2549-2552",
    "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_en": "Who was the Player in the 1998-2000 Year of Grizzlies?",
    "question_th": "ใครคือผู้เล่นในปี 1998-2000 ปีกริซลี่ส์?",
    "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_en": "What is the Nationality of the 1998-2000 Years for Grizzlies?",
    "question_th": "สัญชาติของปี 1998-2000 สำหรับ 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_en": "Who was the 1999-2002 Years for Grizzlies small forward Player who was from the United States?",
    "question_th": "ใครคือนักเตะกองหน้าตัวเล็กของ Grizzlies ในปี 1999-2002 ที่มาจากสหรัฐอเมริกา?",
    "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_en": "Which Player is the shooting guard?",
    "question_th": "ผู้เล่นคนไหนเป็นผู้พิทักษ์การยิง?",
    "context": "CREATE TABLE table_name_69 (player VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_name_65 WHERE game = 44",
    "question_en": "What is the location and attendance of game 44?",
    "question_th": "สถานที่และการเข้าร่วมของเกม 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_en": "What is the record of game 42, which had a clemmensen decision?",
    "question_th": "บันทึกของเกมที่ 42 ซึ่งมีการตัดสินของเคลเมนเซ่นคืออะไร?",
    "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_en": "What country parred E and scored 71-73-70-74=288?",
    "question_th": "ประเทศใดที่พาร์ด E และได้คะแนน 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_en": "How much money was scored for 73-71-70-73=287?",
    "question_th": "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_en": "What country has to par E with Mark O'Meara?",
    "question_th": "ประเทศไหนต้องพาร์ E กับ 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_en": "What country placed t6 with player Vijay Singh?",
    "question_th": "ประเทศใดที่ติดอันดับ 6 ร่วมกับผู้เล่น 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_en": "How much money did David Toms get?",
    "question_th": "David Toms ได้เงินเท่าไหร่?",
    "context": "CREATE TABLE table_name_16 (money___$__ VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_name_94 WHERE date = \"april 26\"",
    "question_en": "What is the playoffs Game number on April 26?",
    "question_th": "รอบตัดเชือกเกมหมายเลข 26 เมษายนคืออะไร?",
    "context": "CREATE TABLE table_name_94 (game VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_98 WHERE game = \"4\"",
    "question_en": "What is the Score of Game 4?",
    "question_th": "คะแนนของเกมที่ 4 คืออะไร?",
    "context": "CREATE TABLE table_name_98 (score VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_name_59 WHERE date = \"april 30\"",
    "question_en": "What is the playoff Game on April 30?",
    "question_th": "เกมเพลย์ออฟวันที่ 30 เมษายนคืออะไร?",
    "context": "CREATE TABLE table_name_59 (game VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_75 WHERE score = \"l 115–118 (ot)\"",
    "question_en": "What is the Date of the game with a Score of L 115–118 (OT)?",
    "question_th": "วันที่ของเกมที่มีคะแนน L 115–118 (OT) คืออะไร?",
    "context": "CREATE TABLE table_name_75 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_20 WHERE attendance = \"27,321\"",
    "question_en": "What was the result when there were 27,321 in attendance?",
    "question_th": "ผลเป็นอย่างไรเมื่อมีผู้เข้าร่วม 27,321 คน?",
    "context": "CREATE TABLE table_name_20 (result VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_63 WHERE site = \"dowdy-ficklen stadium • greenville, nc\" AND opponent = \"ohio\"",
    "question_en": "What is the number in attendance at Dowdy-Ficklen stadium • Greenville, NC, and the opponent was Ohio?",
    "question_th": "จำนวนผู้เข้าร่วมที่สนามกีฬาดาวดี้-ฟิคเลนคือเท่าไร • กรีนวิลล์ นอร์ทแคโรไลนา และคู่ต่อสู้คือโอไฮโอ?",
    "context": "CREATE TABLE table_name_63 (attendance VARCHAR, site VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_96 WHERE site = \"dowdy-ficklen stadium • greenville, nc\" AND attendance = \"27,321\"",
    "question_en": "What date was the game at Dowdy-Ficklen stadium • Greenville, NC, with 27,321 in attendance?",
    "question_th": "เกมที่สนามดาวดี้-ฟิคเลนเป็นวันที่เท่าไหร่ • กรีนวิลล์ รัฐนอร์ทแคโรไลนา โดยมีผู้เข้าร่วม 27,321 คน?",
    "context": "CREATE TABLE table_name_96 (date VARCHAR, site VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_86 WHERE attendance = \"27,321\"",
    "question_en": "What team was the opponent when there were 27,321 in attendance?",
    "question_th": "ทีมใดเป็นคู่ต่อสู้เมื่อมีผู้เข้าร่วม 27,321 คน?",
    "context": "CREATE TABLE table_name_86 (opponent VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_75 WHERE site = \"williams-brice stadium • columbia, sc\"",
    "question_en": "What date was the game at Williams-Brice stadium • Columbia, SC?",
    "question_th": "เกมที่สนามวิลเลียมส์-ไบรซ์เป็นวันที่เท่าไหร่ • โคลัมเบีย เซาท์แคโรไลนา?",
    "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_en": "Can you tell me the Margin of victory that has the Winning score of 67-69-67-69=272?",
    "question_th": "คุณช่วยบอก Margin of Victory ที่มีคะแนน Winning 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_en": "WHAT IS THE AVERAGE DATE FOR CBS LABEL, IN AUSTRALIA, AND SBP 241031 FOR CATALOG?",
    "question_th": "วันที่เฉลี่ยสำหรับ CBS LABEL ในออสเตรเลียคือเท่าไร และ SBP 241031 สำหรับแคตตาล็อก",
    "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_en": "WHAT DATE HAS A CATALOG OF 486553.4?",
    "question_th": "แค็ตตาล็อก 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_en": "WHAT IS THE LOWEST DATE FOR KOREA, IN CD FORMAT?",
    "question_th": "วันที่ต่ำสุดสำหรับเกาหลีในรูปแบบซีดีคือวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_23 (date INTEGER, region VARCHAR, format VARCHAR)"
  },
  {
    "answer": "SELECT 2008 FROM table_name_70 WHERE 2006 = \"1r\"",
    "question_en": "What is 2008, when 2006 is \"1R\"?",
    "question_th": "ปี 2551 คืออะไร เมื่อปี 2549 คือ \"1R\"",
    "context": "CREATE TABLE table_name_70 (Id VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_93 WHERE 2006 = \"a\" AND 2009 = \"a\"",
    "question_en": "What is Tournament, when 2006 is \"A\", and when 2009 is \"A\"?",
    "question_th": "Tournament คืออะไร เมื่อปี 2549 เป็น \"A\" และเมื่อปี 2552 เป็น \"A\"",
    "context": "CREATE TABLE table_name_93 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2005 FROM table_name_73 WHERE 2006 = \"1r\"",
    "question_en": "What is 2005, when 2006 is \"1R\"?",
    "question_th": "ปี 2548 คืออะไร เมื่อปี 2549 คือ \"1R\"",
    "context": "CREATE TABLE table_name_73 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_40 WHERE 2008 = \"2r\"",
    "question_en": "What is 2011, when 2008 is \"2R\"?",
    "question_th": "ปี 2554 คืออะไร เมื่อปี 2551 คือ \"2R\"?",
    "context": "CREATE TABLE table_name_40 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2004 FROM table_name_74 WHERE 2005 = \"2r\" AND 2006 = \"1r\"",
    "question_en": "What is 2004, when 2005 is \"2R\", and when 2006 is \"1R\"",
    "question_th": "ปี 2004 คืออะไร เมื่อปี 2005 คือ \"2R\" และเมื่อปี 2006 คือ \"1R\"",
    "context": "CREATE TABLE table_name_74 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2004 FROM table_name_28 WHERE 2009 = \"a\"",
    "question_en": "What is 2004, when 2009 is \"A\"?",
    "question_th": "ปี 2004 คืออะไร เมื่อปี 2009 คือ \"A\"",
    "context": "CREATE TABLE table_name_28 (Id VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_21 WHERE method = \"ko (slam)\" AND record = \"13–1\"",
    "question_en": "What was the name of the opponent when the method was ko (slam), and record was 13–1?",
    "question_th": "คู่ต่อสู้ชื่ออะไรเมื่อวิธีคือโค (สแลม) และบันทึกคือ 13–1?",
    "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_en": "What is the highest pick of scott turner, who has a round greater than 2?",
    "question_th": "สก็อตต์ เทิร์นเนอร์ ที่เลือกสูงสุดคือใครที่มีรอบมากกว่า 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_en": "What is the name of the ot position player with a round greater than 4?",
    "question_th": "ผู้เล่นตำแหน่ง OT ที่มีรอบมากกว่า 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_en": "What is the sum of the pick of darryl pounds, who has an overall greater than 68?",
    "question_th": "ผลรวมของการเลือกดาร์ริลปอนด์ที่มีค่ารวมมากกว่า 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_en": "What is the total number of rounds of the player from lehigh college with an overall less than 152?",
    "question_th": "จำนวนรอบรวมของผู้เล่นจากวิทยาลัยลีไฮที่มีคะแนนรวมน้อยกว่า 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_en": "What is the highest round of pick 3?",
    "question_th": "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_en": "What is the total overall number of the ot position player with a pick greater than 5?",
    "question_th": "จำนวนรวมของผู้เล่นตำแหน่ง ot ที่มีตัวเลือกมากกว่า 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_en": "What rank does the Singapore Cup of 0 (1) have?",
    "question_th": "สิงคโปร์คัพ 0 (1) มีอันดับไหน?",
    "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_en": "What Singapore League Cup does Masahiro Fukasawa have?",
    "question_th": "มาซาฮิโระ ฟุคาซาวะ มีถ้วยสิงคโปร์ลีกคัพอะไรบ้าง?",
    "context": "CREATE TABLE table_name_99 (singapore_league_cup VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT total FROM table_name_41 WHERE name = \"norikazu murakami\"",
    "question_en": "What is Norikazu Murakami's total?",
    "question_th": "ผลรวมของโนริคาสึ มุราคามิเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_41 (total VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_11 WHERE total = \"3 (20)\"",
    "question_en": "What is the rank for the total that has 3 (20)?",
    "question_th": "อันดับของผลรวมที่มี 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_en": "Which AFC cup does Masahiro Fukasawa have?",
    "question_th": "มาซาฮิโระ ฟุคาซาวะ มีถ้วย AFC ถ้วยไหน?",
    "context": "CREATE TABLE table_name_17 (afc_cup VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT afc_cup FROM table_name_43 WHERE name = \"kenji arai\"",
    "question_en": "Which AFC cup does Kenji Arai have?",
    "question_th": "เคนจิ อาราอิ มีถ้วย AFC ไหน?",
    "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_en": "In the game where Joe Johnson (31) was the high points scorer, what was the final score?",
    "question_th": "ในเกมที่โจ จอห์นสัน (31) เป็นผู้ทำคะแนนสูงสุด คะแนนสุดท้ายคือเท่าไร?",
    "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_en": "What is the lowest to par of the player with a t3 place and less than $1,500?",
    "question_th": "ค่าพาร์ต่ำสุดของผู้เล่นอันดับ 3 และน้อยกว่า 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_en": "Who is the player from the United States with a t6 place and a 71-70-76-72=289 score?",
    "question_th": "ใครคือผู้เล่นจากสหรัฐอเมริกาที่มีอันดับ T6 และคะแนน 71-70-76-72=289?",
    "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_en": "How much total money does player tommy bolt, who has a to par of 9, have?",
    "question_th": "ผู้เล่นทอมมี่ โบลต์ ที่มีพาร์ถึง 9 มีเงินทั้งหมดเท่าไหร่?",
    "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_en": "What is the lowest amount of money a player from South Africa with a to par less than 8 has?",
    "question_th": "จำนวนเงินต่ำสุดที่ผู้เล่นจากแอฟริกาใต้โดยมีพาร์น้อยกว่า 8 มีคือเท่าใด?",
    "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_en": "What was the venue that had a friendly match competition?",
    "question_th": "สถานที่ที่มีการแข่งขันนัดกระชับมิตรคือที่ไหน?",
    "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_en": "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?",
    "question_th": "ด้วยหนึ่งปีที่มากกว่าปี 1905 และที่ตั้งของฟิลาเดลเฟีย เพนซิลเวเนีย โดยมีพาร์ [a] ของ n/a และประเทศสกอตแลนด์ หลักสูตรคืออะไร?",
    "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_en": "What is the total score for a location of san francisco, california, and a year after 1987, and a to pa [a] of +1?",
    "question_th": "คะแนนรวมของสถานที่ในซานฟรานซิสโก แคลิฟอร์เนีย และหนึ่งปีหลังจากปี 1987 และ a ถึง pa [a] เป็นเท่าใด",
    "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_en": "What is the sum for the year with a location of newport, rhode island?",
    "question_th": "ผลรวมสำหรับปีที่มีสถานที่ตั้งของนิวพอร์ต โรดไอแลนด์เป็นเท่าใด?",
    "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_en": "What is the country with a course of merion golf club, and a to par [1] of e?",
    "question_th": "ประเทศใดที่มีสนามกอล์ฟ Merion และพาร์ [1] ของ 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_en": "What is the total score for the year 2012?",
    "question_th": "คะแนนรวมประจำปี 2555 เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_14 (total_score VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT evening_gown FROM table_name_4 WHERE state = \"mississippi\"",
    "question_en": "What is the evening gown score for the contestant from Mississippi?",
    "question_th": "คะแนนชุดราตรีของผู้เข้าแข่งขันจากมิสซิสซิปปี้เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_4 (evening_gown VARCHAR, state VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_26 WHERE rank = 2",
    "question_en": "What is the type for rank 2?",
    "question_th": "อันดับ 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_en": "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?",
    "question_th": "ผลรวมของจำนวนผู้ถือในปี 2009 สำหรับอันดับที่สูงกว่า 1 ประเภทของนามสกุล นิรุกติศาสตร์ที่หมายถึงบุตรของคริสเตียน และจำนวนผู้ถือในปี 1971 มากกว่า 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_en": "What is Ryan Hunter-Reay of the Herdez Competition's Qual 2 time?",
    "question_th": "Ryan Hunter-Reay จากการแข่งขัน Herdez Competition รอบคัดเลือก 2 ครั้งคืออะไร?",
    "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_en": "What is Justin Wilson's Team?",
    "question_th": "ทีมของ Justin Wilson คืออะไร?",
    "context": "CREATE TABLE table_name_13 (team VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT best FROM table_name_31 WHERE qual_2 = \"1:00.588\"",
    "question_en": "What is the Best of the racer with a Qual 2 of 1:00.588?",
    "question_th": "อะไรคือสิ่งที่ดีที่สุดของนักแข่งที่เข้ารอบ 2 ด้วยเวลา 1:00.588?",
    "context": "CREATE TABLE table_name_31 (best VARCHAR, qual_2 VARCHAR)"
  },
  {
    "answer": "SELECT MIN(area__km²_) FROM table_name_55 WHERE population__2010_ = 7 OFFSET 616",
    "question_en": "Where is the lowest area with a population of 7,616?",
    "question_th": "พื้นที่ใดต่ำสุดที่มีประชากร 7,616 คน?",
    "context": "CREATE TABLE table_name_55 (area__km²_ INTEGER, population__2010_ VARCHAR)"
  },
  {
    "answer": "SELECT tongyong FROM table_name_36 WHERE hanyu = \"sanmin\"",
    "question_en": "Where in Tongyong is Hanyu Sanmin?",
    "question_th": "ฮานิว ซันมินอยู่ที่ไหนในทงหยง?",
    "context": "CREATE TABLE table_name_36 (tongyong VARCHAR, hanyu VARCHAR)"
  },
  {
    "answer": "SELECT hanyu FROM table_name_59 WHERE area__km²_ = 19.3888",
    "question_en": "Which Hanya has an area of 19.3888?",
    "question_th": "ฮันยาใดมีพื้นที่ 19.3888",
    "context": "CREATE TABLE table_name_59 (hanyu VARCHAR, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_17 WHERE round < 2 AND pick = 24",
    "question_en": "What is Nationality, when Round is less than 2, and when Pick is \"24\"?",
    "question_th": "สัญชาติคืออะไร เมื่อรอบน้อยกว่า 2 และเมื่อเลือกคือ \"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_en": "What is Nationality, when Round is less than 2, and when College/Team is \"CB L'Hospitalet\"?",
    "question_th": "สัญชาติคืออะไร เมื่อรอบน้อยกว่า 2 และเมื่อวิทยาลัย/ทีมคือ \"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_en": "What is the lowest Round, when College/Team is \"Kansas\", and when Pick is less than 56?",
    "question_th": "รอบต่ำสุดคือเมื่อวิทยาลัย/ทีมคือ \"แคนซัส\" และเมื่อพิคน้อยกว่า 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_en": "What is College/Team, when Round is less than 2, and when Nationality is \"United States\"?",
    "question_th": "วิทยาลัย/ทีมคืออะไร เมื่อรอบน้อยกว่า 2 และเมื่อสัญชาติคือ \"สหรัฐอเมริกา\"",
    "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_en": "WHAT IS THE Q1 POS WITH A 1:31.826 Q1 TIME, AND Q1 ORDER OF 7?",
    "question_th": "POS ของไตรมาส 1 ที่มีเวลา 1:31.826 ของไตรมาส 1 คืออะไร และลำดับของไตรมาส 1 จาก 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_en": "What is the score on December 2?",
    "question_th": "คะแนนวันที่ 2 ธันวาคมเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_51 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT silver FROM table_name_42 WHERE year = \"1938\"",
    "question_en": "How many silver medals were won in 1938?",
    "question_th": "ในปี 1938 คว้าเหรียญเงินได้กี่เหรียญ?",
    "context": "CREATE TABLE table_name_42 (silver VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT gold FROM table_name_61 WHERE year = \"1970\"",
    "question_en": "How many gold medals were won in 1970?",
    "question_th": "ปี 1970 คว้าเหรียญทองได้กี่เหรียญ?",
    "context": "CREATE TABLE table_name_61 (gold VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT silver FROM table_name_43 WHERE gold = \"7\"",
    "question_en": "How many silver medals were won the year 7 gold medals were won?",
    "question_th": "ปีที่ 7 เหรียญทองได้ไปกี่เหรียญ?",
    "context": "CREATE TABLE table_name_43 (silver VARCHAR, gold VARCHAR)"
  },
  {
    "answer": "SELECT bronze FROM table_name_27 WHERE year = \"1998\"",
    "question_en": "How many bronze medals were won in 1998?",
    "question_th": "ปี 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_en": "Can you tell me the TV Time that has the Date of november 22, 1998?",
    "question_th": "คุณช่วยบอกเวลาทีวีที่เป็นวันที่ 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_en": "Can you tell me the Result that has the Date of september 13, 1998?",
    "question_th": "คุณช่วยบอกฉันถึงผลลัพธ์ที่มีวันที่ 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_en": "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?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าฝ่ายตรงข้ามที่มีสัปดาห์น้อยกว่า 11 และเวลาทีวีของสุนัขจิ้งจอก 10.00 น. และผลลัพธ์ของ 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_en": "Can you tell me the Result that has the Week of 5?",
    "question_th": "คุณช่วยบอกฉันผลลัพธ์ที่มีสัปดาห์ที่ 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_en": "What is the average year that the club located in enfield was founded with an unknown coach?",
    "question_th": "โดยเฉลี่ยแล้วสโมสรที่ตั้งอยู่ในเอนฟิลด์ก่อตั้งโดยมีโค้ชที่ไม่รู้จักคือปีใด",
    "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_en": "What was the location of the club where the home ground is wilfred taylor reserve?",
    "question_th": "สโมสรที่สนามเหย้าคือ วิลเฟรด เทย์เลอร์ รีเสิร์ฟ อยู่ที่ไหน?",
    "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_en": "Where is the club that was founded in 1946 located that has an unknown coach?",
    "question_th": "สโมสรที่ก่อตั้งในปี 1946 อยู่ที่ไหนซึ่งมีโค้ชที่ไม่รู้จัก?",
    "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_en": "Where is the home ground for the club coached by nick pantsaras and founded before 1946?",
    "question_th": "บ้านเกิดของสโมสรอยู่ที่ไหนซึ่งมีนิค ปันซาราส เป็นโค้ช และก่อตั้งก่อนปี 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_en": "Which team was the opponent that had a location of Madison Square Garden with a score of 87-83?",
    "question_th": "ทีมไหนเป็นคู่ต่อสู้ที่มีตำแหน่ง เมดิสัน สแควร์ การ์เดน ด้วยสกอร์ 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_en": "Which game was played at the Forum and led to a series result of 0-1?",
    "question_th": "เกมใดที่เล่นที่ฟอรั่มและส่งผลให้ซีรีส์ 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_en": "What was the score for game 2?",
    "question_th": "สกอร์เกมที่ 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_en": "What is the title of the show with less than 10 seasons that aired on September 29, 1997 and is directed by Milan Cheylov?",
    "question_th": "ชื่อของรายการที่มีน้อยกว่า 10 ซีซั่นซึ่งออกอากาศเมื่อวันที่ 29 กันยายน พ.ศ. 2540 และกำกับโดย 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_en": "What is the attendance of the November 19, 1990 game?",
    "question_th": "แมตช์วันที่ 19 พฤศจิกายน 1990 มีผู้ชมเป็นอย่างไรบ้าง?",
    "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_en": "How many Years have an Iron Man Award of kyal horsley?",
    "question_th": "Kyal Horsley ได้รับรางวัล Iron Man Award กี่ปี?",
    "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_en": "Which Coach has a Most Improved of rory thompson?",
    "question_th": "โค้ชคนไหนมี 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_en": "Which Year has a Community Award of jarrod harbrow?",
    "question_th": "ปีไหนที่ได้รับรางวัล Community Award ของ jarrod harbrow?",
    "context": "CREATE TABLE table_name_85 (year INTEGER, community_award VARCHAR)"
  },
  {
    "answer": "SELECT MIN(capacity) FROM table_name_35 WHERE team = \"šibenik\"",
    "question_en": "what is the capacity for the team šibenik?",
    "question_th": "ความสามารถของทีม šibenik คืออะไร?",
    "context": "CREATE TABLE table_name_35 (capacity INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT stadium FROM table_name_81 WHERE team = \"čakovec\"",
    "question_en": "what is the stadium for čakovec?",
    "question_th": "Šakovec สนามไหน?",
    "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čar\"",
    "question_en": "what is the capacity when the home city is zagreb and the manager is zlatko kranjčar?",
    "question_th": "ความจุเท่าไหร่เมื่อเมืองเกิดคือซาเกร็บ และผู้จัดการคือซลัตโก กรานจ์ชาร์?",
    "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_en": "what is the home city for the stadion src mladost?",
    "question_th": "บ้านเกิดของ 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_en": "What is the grid for the driver with an electrical time/retired and 51 laps?",
    "question_th": "ตารางสำหรับผู้ขับขี่ที่มีเวลาไฟฟ้า/เกษียณและ 51 รอบเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_43 (grid VARCHAR, time_retired VARCHAR, laps VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_30 WHERE grid = 1",
    "question_en": "Who is the driver with 1 grid?",
    "question_th": "ใครคือคนขับที่มี 1 ตาราง?",
    "context": "CREATE TABLE table_name_30 (driver VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_32 WHERE player = \"mark carnevale\"",
    "question_en": "What place was Mark Carnevale in?",
    "question_th": "Mark Carnevale อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_32 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(attendance) FROM table_name_14 WHERE away = \"real juventud\"",
    "question_en": "What was the highest attendance against Real Juventud?",
    "question_th": "ผู้เข้าชมมากที่สุดในการเจอกับเรอัล ยูเวนตุดคือเท่าไร?",
    "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_en": "Who is the away captain for the matches dated 7,8,10,11 feb 1908?",
    "question_th": "ใครคือกัปตันทีมเยือนในนัดวันที่ 7,8,10,11 กุมภาพันธ์ 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_en": "Who is the home captain at the Adelaide Oval?",
    "question_th": "ใครคือกัปตันทีมเหย้าที่สนามแอดิเลดโอวัล?",
    "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_en": "Who is the home captain that won AUS by 245 runs?",
    "question_th": "ใครคือกัปตันทีมเหย้าที่ชนะ AUS 245 รัน?",
    "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_en": "What was the venue for the dates 1,2,3,4,6,7 jan 1908?",
    "question_th": "วันที่ 1,2,3,4,6,7 มกราคม 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_en": "What was the venue for the dates 7,8,10,11 Feb 1908?",
    "question_th": "วันที่ 7,8,10,11 กุมภาพันธ์ พ.ศ.2451 จัดขึ้นที่ใด",
    "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_en": "What's the production if the technology is sodium-sulfur batteries and yes to toxic materials?",
    "question_th": "จะเกิดอะไรขึ้นถ้าเทคโนโลยีเป็นแบตเตอรี่โซเดียมซัลเฟอร์และใช่กับวัสดุที่เป็นพิษ?",
    "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_en": "What are the moving parts of lead-acid?",
    "question_th": "ชิ้นส่วนที่เคลื่อนไหวของกรดตะกั่วคืออะไร?",
    "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_en": "What's the room temperature with no toxic materials and no ln production?",
    "question_th": "อุณหภูมิห้องที่ไม่มีสารพิษและไม่มีการผลิตคือเท่าไร?",
    "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_en": "What's the technology when there are no moving parts but yes to toxic materials?",
    "question_th": "เทคโนโลยีจะเป็นอย่างไรเมื่อไม่มีชิ้นส่วนที่เคลื่อนไหวแต่มีวัสดุที่เป็นพิษ",
    "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_en": "What was the Score for T9 United States Player Kirk Triplett?",
    "question_th": "คะแนนของผู้เล่น T9 United States 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_en": "What country is Tiger Woods from?",
    "question_th": "ไทเกอร์ วูดส์ มาจากประเทศอะไร?",
    "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_en": "what is the assists when the club is chicago fire and goals is more than 2?",
    "question_th": "แอสซิสต์อะไรเมื่อสโมสรชิคาโกไฟร์และประตูมากกว่า 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_en": "what is the most assists when the goals is less than 0?",
    "question_th": "แอสซิสต์มากที่สุดเมื่อประตูน้อยกว่า 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_en": "What is Score in The Final, when Date is \"1981\"?",
    "question_th": "คะแนนในรอบชิงชนะเลิศคืออะไร เมื่อวันที่คือ \"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_en": "What is Opponent in The Final, when Date is \"1976\"?",
    "question_th": "คู่ต่อสู้ในรอบชิงชนะเลิศคืออะไร เมื่อวันที่คือ \"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_en": "What is Location Attendance, when Date is \"December 30\"?",
    "question_th": "Location Attendance คืออะไร เมื่อวันที่คือ \"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_en": "What is Date, when High Rebounds is \"Amar'e Stoudemire (13)\"?",
    "question_th": "วันที่เท่าไหร่เมื่อรีบาวด์สูงคือ \"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_en": "What is Score, when Location Attendance is \"US Airways Center 18,422\", and when Game is less than 22?",
    "question_th": "คะแนนคืออะไร เมื่อผู้เข้าร่วมตำแหน่งคือ \"US Airways Center 18,422\" และเมื่อเกมน้อยกว่า 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_en": "What is Score, when Game is \"19\"?",
    "question_th": "คะแนนคืออะไร เมื่อเกมคือ \"19\"?",
    "context": "CREATE TABLE table_name_11 (score VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_name_16 WHERE team = \"orlando\"",
    "question_en": "What is Location Attendance, when Team is \"Orlando\"?",
    "question_th": "Location Attendance คืออะไร เมื่อทีมคือ \"Orlando\"",
    "context": "CREATE TABLE table_name_16 (location_attendance VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_22 WHERE date = \"december 30\"",
    "question_en": "What is Record, when Date is \"December 30\"?",
    "question_th": "Record คืออะไร เมื่อวันที่คือ \"30 ธันวาคม\"",
    "context": "CREATE TABLE table_name_22 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(theaters) FROM table_name_83 WHERE rank > 7",
    "question_en": "Name the Theaters that has a Rank larger than 7?",
    "question_th": "ตั้งชื่อโรงละครที่มีอันดับมากกว่า 7 หรือไม่?",
    "context": "CREATE TABLE table_name_83 (theaters INTEGER, rank INTEGER)"
  },
  {
    "answer": "SELECT gross_to_date FROM table_name_53 WHERE date = \"august 23–25\"",
    "question_en": "Name the Gross-to-date which has a Date of august 23–25?",
    "question_th": "ตั้งชื่อ Gross-to-date ซึ่งมีวันที่ 23–25 สิงหาคมใช่ไหม",
    "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_en": "Name the Round which has a Position of defensive back and a Pick of 226?",
    "question_th": "ตั้งชื่อรอบที่มีตำแหน่งกองหลังและเลือกได้ 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_en": "Name the Round which has a Player of zack walz?",
    "question_th": "ตั้งชื่อรอบที่มีผู้เล่นของแซ็ค วอลซ์ไหม?",
    "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_en": "Name the Round which has a Position of defensive back and corey chavous?",
    "question_th": "ตั้งชื่อรอบที่มีตำแหน่งกองหลังและคอเรย์วุ่นวายใช่ไหม?",
    "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_en": "Name all Pick that has a Round of 7, and a School/Club Team of arizona st.?",
    "question_th": "ตั้งชื่อ Pick ทั้งหมดที่มีรอบ 7 ทีมและทีมโรงเรียน/สโมสรของ 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_en": "Which Year has a Regular Season of 7th?",
    "question_th": "ปีใดมีฤดูกาลปกติเป็นวันที่ 7",
    "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_en": "Which Year has a Division larger than 3?",
    "question_th": "ปีใดมีดิวิชั่นมากกว่า 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_en": "Which Year did not qualify for Playoffs, and had a Division smaller than 3?",
    "question_th": "ปีใดที่ไม่ผ่านเข้ารอบตัดเชือก และมีดิวิชั่นเล็กกว่า 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_en": "Which league did not qualify for the Playoffs, and had a Year larger than 2008?",
    "question_th": "ลีกใดที่ไม่ผ่านเข้ารอบตัดเชือก และมีปีที่ใหญ่กว่าปี 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_en": "What is Lowest Crowd, when Home Team is Brisbane Lions?",
    "question_th": "ฝูงชนต่ำสุดคืออะไร เมื่อทีมเหย้าคือ 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_en": "What is Date, when Away Team is Kangaroos?",
    "question_th": "วันที่คือเมื่อทีมเยือนคือจิงโจ้?",
    "context": "CREATE TABLE table_name_38 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT MIN(round) FROM table_name_96 WHERE time = \"1:12\"",
    "question_en": "What is the smallest round with a time of 1:12?",
    "question_th": "รอบที่เล็กที่สุดด้วยเวลา 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_en": "How long was the time for the Legacy Fighting Championship 12?",
    "question_th": "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_en": "WHAT COUNTRY HAS A TO PAR OF +1, WITH WOODY AUSTIN?",
    "question_th": "ประเทศใดมีคะแนน +1 เท่ากับ 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_en": "WHAT IS THE TO PAR FOR ERNIE ELS?",
    "question_th": "ค่าพาร์สำหรับ 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_en": "WHAT PLACE DOES TOM LEHMAN HAVE?",
    "question_th": "ทอม เลห์แมนมีสถานที่ใดบ้าง",
    "context": "CREATE TABLE table_name_65 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_18 WHERE place = \"1\"",
    "question_en": "WHAT IS THE TO PAR FOR NUMBER 1?",
    "question_th": "ค่าพาร์สำหรับอันดับ 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_en": "WHAT IS TEH PLAYER WITH A TO PAR OF +1 FOR SCOTLAND?",
    "question_th": "ผู้เล่นที่มีคะแนน +1 สำหรับสกอตแลนด์คืออะไร?",
    "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_en": "Who won the Paris-Roubaix in 2006?",
    "question_th": "ใครคว้าแชมป์ปารีส-รูแบในปี 2549?",
    "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_en": "Who built the conant creek pegram truss railroad bridge?",
    "question_th": "ใครเป็นคนสร้างสะพานรถไฟโครงคอนแนนต์ครีกเพแกรม",
    "context": "CREATE TABLE table_name_71 (built VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_11 WHERE built = \"1910\"",
    "question_en": "Where is the historic place that was built in 1910?",
    "question_th": "สถานที่ทางประวัติศาสตร์ที่สร้างขึ้นในปี 1910 อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_11 (location VARCHAR, built VARCHAR)"
  },
  {
    "answer": "SELECT listed FROM table_name_88 WHERE built = \"1896, 1914\"",
    "question_en": "What is the list date of the historic place that was built 1896, 1914?",
    "question_th": "รายชื่อสถานที่ประวัติศาสตร์ที่สร้างขึ้นเมื่อปี พ.ศ. 2439 และ พ.ศ. 2457 คือวันที่ใด",
    "context": "CREATE TABLE table_name_88 (listed VARCHAR, built VARCHAR)"
  },
  {
    "answer": "SELECT listed FROM table_name_79 WHERE county = \"canyon\"",
    "question_en": "When was the historic place listed that's in canyon county?",
    "question_th": "สถานที่ทางประวัติศาสตร์ที่ระบุไว้ว่าอยู่ในเขตแคนยอนเมื่อใด",
    "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_en": "what is the averaging time when the regulatory citation is 40 cfr 50.4(b)?",
    "question_th": "เวลาเฉลี่ยที่การอ้างอิงตามกฎระเบียบคือ 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 μg/m³\"",
    "question_en": "what is the regulatory citation when the standard is 15 μg/m³?",
    "question_th": "การอ้างอิงด้านกฎระเบียบคืออะไรเมื่อมาตรฐานอยู่ที่ 15 ไมโครกรัม/ลบ.ม.",
    "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_en": "what is the standard when the pollutant is o 3 and averaging time is 8-hour?",
    "question_th": "อะไรคือมาตรฐานเมื่อมลพิษมีค่า o 3 และเวลาเฉลี่ยคือ 8 ชั่วโมง?",
    "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_en": "what is the polluntant when the regulatory citation is 40 cfr 50.7(a) and the type is primary?",
    "question_th": "สารก่อมลพิษคืออะไรเมื่อการอ้างอิงตามกฎระเบียบคือ 40 cfr 50.7(a) และประเภทนั้นเป็นประเภทปฐมภูมิ",
    "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 μg/m³)\"",
    "question_en": "what is the type when the averaging time is 1-hour and the standard is 0.12 ppm (235 μg/m³)?",
    "question_th": "เวลาเฉลี่ยคือ 1 ชั่วโมง และค่ามาตรฐานคือ 0.12 ppm (235 μg/m³) เป็นประเภทใด",
    "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_en": "what is the type when the regulatory citation is 40 cfr 50.9(a)?",
    "question_th": "การอ้างอิงตามกฎระเบียบคือ 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_en": "What is the highest League, when Title Playoff is greater than 0?",
    "question_th": "ลีกสูงสุดคืออะไร เมื่อ Title Playoff มากกว่า 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_en": "What is the lowest Title Playoff, when Total is less than 3, and when League is greater than \"2\"?",
    "question_th": "เพลย์ออฟตำแหน่งต่ำสุดคือเมื่อผลรวมน้อยกว่า 3 และเมื่อลีกมากกว่า \"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_en": "What is the lowest Title Playoff, when League is greater than 3, and when Super Cup is less than 0?",
    "question_th": "เพลย์ออฟตำแหน่งต่ำสุดคือเมื่อลีกมากกว่า 3 และเมื่อซูเปอร์คัพน้อยกว่า 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_en": "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?",
    "question_th": "จำนวน Super Cup ทั้งหมดเมื่อ Title Playoff เป็น \"0\" เมื่อ Total มากกว่า 9 และเมื่อ League น้อยกว่า 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_en": "What was the score when the jazz played against toronto?",
    "question_th": "แจ๊สเล่นกับโตรอนโตได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_34 (score VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_41 WHERE team = \"miami\"",
    "question_en": "What is the date of the game against miami?",
    "question_th": "เกมกับไมอามีคือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_41 (date VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_37 WHERE week = 7",
    "question_en": "Who was the Opponent in Week 7?",
    "question_th": "ใครคือฝ่ายตรงข้ามในสัปดาห์ที่ 7",
    "context": "CREATE TABLE table_name_37 (opponent VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_86 WHERE date = \"november 7, 1999\"",
    "question_en": "What was the Attendance on November 7, 1999?",
    "question_th": "ผู้เข้าร่วมในวันที่ 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_en": "Who was the Opponent of the Game with a Result of l 23-41?",
    "question_th": "ใครคือฝ่ายตรงข้ามของเกมด้วยผลการแข่งขัน l 23-41?",
    "context": "CREATE TABLE table_name_91 (opponent VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_7 WHERE week = 1",
    "question_en": "What was the Attendance in Week 1?",
    "question_th": "การเข้าร่วมในสัปดาห์ที่ 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_en": "How much average Finish has Starts of 9, and a Top 10 smaller than 0?",
    "question_th": "ค่าเฉลี่ยการจบการแข่งขันมีจุดเริ่มต้นที่ 9 และ 10 อันดับแรกน้อยกว่า 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_en": "Which Winnings have Starts larger than 34, and Poles smaller than 1, and a Top 10 of 5?",
    "question_th": "เงินรางวัลใดที่มีการออกสตาร์ทมากกว่า 34 และเสาน้อยกว่า 1 และติด 10 อันดับแรกจาก 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_en": "Which Diameter (km) has a Name of alma-merghen planitia, and a Year named smaller than 1997?",
    "question_th": "เส้นผ่านศูนย์กลางใด (กม.) มีชื่อของอัลมา-เมอร์เกน พลานิเทีย และปีที่ชื่อว่าเล็กกว่าปี 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_en": "Which Longitude has a Latitude of 73.0s, and a Name of aibarchin planitia?",
    "question_th": "ลองจิจูดใดมีละติจูด 73.0 และชื่อของ 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_en": "Which Year named has a Name of nuptadi planitia, and a Diameter (km) larger than 1,200.0?",
    "question_th": "ปีใดที่ถูกตั้งชื่อมีชื่อของ nuptadi planitia และมีเส้นผ่านศูนย์กลาง (กม.) มากกว่า 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_en": "Which Latitude has a Year named smaller than 1997, and a Name of aino planitia?",
    "question_th": "Latitude ใดที่มีปีที่ชื่อว่าเล็กกว่าปี 1997 และชื่อของ 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_en": "In what tournament did Cipolla face Sergio Roitman?",
    "question_th": "Cipolla เผชิญหน้ากับ 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_en": "What is the Rating/Share (18-49) that also has a Share greater than 10 and 12.42 million Viewers?",
    "question_th": "คะแนน/ส่วนแบ่ง (18-49) ที่มีผู้ชมมากกว่า 10 และ 12.42 ล้านคนคืออะไร?",
    "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_en": "Which Week has a Record of 2-9?",
    "question_th": "สัปดาห์ใดมีสถิติ 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_en": "What is the 1993 finish for the event that had a 1990 of QF and 1995 of 2R?",
    "question_th": "การแข่งขันในปี 1993 มี QF ปี 1990 และ 2R ในปี 1995 คืออะไร?",
    "context": "CREATE TABLE table_name_44 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1994 FROM table_name_14 WHERE tournament = \"miami\"",
    "question_en": "What is the 1994 finish for the Miami tournament?",
    "question_th": "การแข่งขันไมอามี่ในปี 1994 จบลงที่เท่าไร?",
    "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_en": "What is the to par score from Brad Faxon of the United States with a score of 73-68=141?",
    "question_th": "คะแนนพาร์ของแบรด แฟกซ์สัน จากสหรัฐอเมริกา คือคะแนน 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_en": "What's the to par score in T8 place from Zimbabwe and has a score of 73-68=141?",
    "question_th": "คะแนนพาร์ของซิมบับเวอันดับ T8 คือเท่าไร และมีคะแนน 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_en": "What's the score of Lee Janzen in T4 place?",
    "question_th": "Lee Janzen อันดับ T4 ได้เท่าไหร่?",
    "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_en": "What's the score of Jeff Maggert in T2 place?",
    "question_th": "Jeff Maggert อันดับ T2 ได้คะแนนเท่าไหร่?",
    "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_en": "What's the to par when the score was 68-73=141?",
    "question_th": "เมื่อสกอร์เป็น 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_en": "What's the total number of game that has 377 points?",
    "question_th": "เกมที่มี 377 แต้มมีทั้งหมดกี่เกม?",
    "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_en": "What's the total number of points that the rank is less than 5 and has Tiago Splitter?",
    "question_th": "คะแนนรวมที่อันดับต่ำกว่า 5 และมี 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_en": "What is the total number of games that has Juan Carlos Navarro and more than 266 points?",
    "question_th": "จำนวนเกมทั้งหมดที่มี ฮวน คาร์ลอส นาวาร์โร และมากกว่า 266 แต้มคือเท่าไร?",
    "context": "CREATE TABLE table_name_77 (games INTEGER, points VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT SUM(rank) FROM table_name_87 WHERE team = \"tau cerámica\" AND name = \"igor rakočević\" AND points > 377",
    "question_en": "What's the rank of Igor Rakočević of Tau Cerámica with more than 377 points?",
    "question_th": "Igor Rakočević จาก Tau Cerámica มีคะแนนมากกว่า 377 คะแนนอยู่อันดับไหน?",
    "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ámica\" AND points = 377 AND games > 21",
    "question_en": "What's the rank of the Tau Cerámica that has 377 points and more than 21 games?",
    "question_th": "Tau Cerámica มี 377 แต้ม และลงเล่นมากกว่า 21 เกม อยู่อันดับไหน?",
    "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_en": "What are the dates of squadron 33?",
    "question_th": "กองบิน 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_en": "What institution won 2nd more recently than 2007 with Peter Agre as Chief Judge?",
    "question_th": "สถาบันใดได้รับรางวัลที่ 2 เมื่อเร็ว ๆ นี้มากกว่าปี 2550 โดยมี Peter Agre เป็นหัวหน้าผู้พิพากษา",
    "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_en": "What student won 3rd with Peter Agre as Chief Judge?",
    "question_th": "นักเรียนคนไหนชนะอันดับ 3 โดยมี Peter Agre เป็น 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_en": "What institution won in 2010 with student Cheng Herng Yi?",
    "question_th": "สถาบันใดชนะในปี 2010 กับนักเรียน 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_en": "What was the lowest postion of ehc straubing ii when they played less than 10 games?",
    "question_th": "ตำแหน่งต่ำสุดของ ehc straubing ii เมื่อพวกเขาเล่นน้อยกว่า 10 เกมคืออะไร?",
    "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_en": "What was the drawn amount for teams with points of 12 and played smaller than 10?",
    "question_th": "จำนวนการจับสลากสำหรับทีมที่มีคะแนน 12 และเล่นน้อยกว่า 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_en": "How many games were played by the team with 2 draws, less than 16 points and a position higher than 5?",
    "question_th": "ทีมที่เล่นไปกี่เกมโดยเสมอ 2 แต้มน้อยกว่า 16 แต้มและตำแหน่งสูงกว่า 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_en": "What was the grid of Buddy Rice?",
    "question_th": "ตารางของ Buddy Rice คืออะไร?",
    "context": "CREATE TABLE table_name_91 (grid VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_85 WHERE fin_pos = \"7\"",
    "question_en": "Which team had a driver with a finish position of 7?",
    "question_th": "ทีมใดมีนักแข่งที่มีตำแหน่งจบที่ 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_en": "What was the time of the driver with a finish position of 19?",
    "question_th": "นักแข่งที่มีตำแหน่งเข้าเส้นชัย 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_en": "What were the number of laps led by the driver with a finish position of 14?",
    "question_th": "นักแข่งที่นำโดยตำแหน่งเข้าเส้นชัย 14 รอบมีกี่รอบ?",
    "context": "CREATE TABLE table_name_38 (laps VARCHAR, fin_pos VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_90 WHERE fin_pos = \"8\"",
    "question_en": "Which team had a finish position of 8?",
    "question_th": "ทีมใดได้อันดับที่ 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_en": "For the 27 arrow match event, what's the sum of all scores for that event?",
    "question_th": "ในการแข่งขัน 27 Arrow Match คะแนนรวมทั้งหมดเป็นเท่าใด",
    "context": "CREATE TABLE table_name_63 (score INTEGER, event VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_72 WHERE score > 673",
    "question_en": "Which event had a score of over 673 points?",
    "question_th": "งานใดมีคะแนนเกิน 673 คะแนน?",
    "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_en": "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?",
    "question_th": "จำนวนการลงเล่นทั้งหมดในพรีเมียร์ลีกเมื่อลงเล่นในยูฟ่า 10 นัดและน้อยกว่า 4 นัดในลีกคัพเป็นเท่าใด",
    "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_en": "What is the highest total number of appearances when there were less than 4 at the FA cup?",
    "question_th": "จำนวนการลงเล่นทั้งหมดสูงสุดเมื่อเอฟเอ คัพ น้อยกว่า 4 นัดคือเท่าใด?",
    "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_en": "What player had less than 6 appearances at the FA cup, 33 at the premier league, and more than 5 at the UEFA cup?",
    "question_th": "นักเตะคนไหนที่ลงเล่นเอฟเอ คัพ น้อยกว่า 6 นัด, พรีเมียร์ลีก 33 นัด และมากกว่า 5 นัดในยูฟ่า คัพ",
    "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_en": "What is the sum of the appearances at the league cup for the defender who had less than 10 appearances at the UEFA cup?",
    "question_th": "ผลรวมของการลงเล่นในลีก คัพ สำหรับกองหลังที่ลงเล่นน้อยกว่า 10 นัดในยูฟ่า คัพ เป็นเท่าใด",
    "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_en": "What's the target of the antibody rituximab?",
    "question_th": "เป้าหมายของแอนติบอดี rituximab คืออะไร?",
    "context": "CREATE TABLE table_name_90 (target VARCHAR, antibody VARCHAR)"
  },
  {
    "answer": "SELECT target FROM table_name_96 WHERE brand_name = \"mylotarg\"",
    "question_en": "What's the target for the brand mylotarg?",
    "question_th": "เป้าหมายของแบรนด์ 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_en": "What's the type for the brand herceptin with an approval date of before 2006?",
    "question_th": "Herceptin ยี่ห้อใดที่ได้รับการอนุมัติก่อนปี 2549",
    "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_en": "What is Position, when Overall is less than 590, and when Round is 3?",
    "question_th": "ตำแหน่งคืออะไร เมื่อผลรวมน้อยกว่า 590 และเมื่อรอบคือ 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_en": "What is Player, when MLB Team is \"Florida Marlins\", and when Round is less than 15?",
    "question_th": "ผู้เล่นคืออะไร เมื่อทีม MLB คือ \"Florida Marlins\" และเมื่อรอบน้อยกว่า 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_en": "What is the lowest Overall, when Player is \"Dan Jennings\", and when Round is greater than 9?",
    "question_th": "โดยรวมต่ำสุดคือเมื่อผู้เล่นคือ \"แดน เจนนิงส์\" และเมื่อรอบมากกว่า 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_en": "What is the total number of Round, when Position is 2B?",
    "question_th": "จำนวนรอบทั้งหมดเมื่อตำแหน่งคือ 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_en": "What are the highest points for Justin Lofton when his top 10 is lower than 5?",
    "question_th": "อะไรคือคะแนนสูงสุดสำหรับ Justin Lofton เมื่อ 10 อันดับแรกของเขาต่ำกว่า 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_en": "What is Frank Kimmel's lowest top 5 with more than 0 wins and fewer than 14 top 10s?",
    "question_th": "อะไรคือ 5 อันดับแรกที่ต่ำที่สุดของ Frank Kimmel ที่ชนะมากกว่า 0 ครั้งและติด 10 อันดับแรกน้อยกว่า 14 ครั้ง?",
    "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_en": "What is the lowest top 10 with fewer than 4 wins, fewer than 3260 points and more than 0 for top 5?",
    "question_th": "10 อันดับแรกต่ำสุดที่มีการชนะน้อยกว่า 4 ครั้งน้อยกว่า 3260 คะแนนและมากกว่า 0 สำหรับ 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_en": "When the mark is 7.35, what's the lowest Lane found?",
    "question_th": "เมื่อเครื่องหมายคือ 7.35 เลนต่ำสุดที่พบคือเท่าใด",
    "context": "CREATE TABLE table_name_32 (lane INTEGER, mark VARCHAR)"
  },
  {
    "answer": "SELECT MIN(lane) FROM table_name_68 WHERE mark = \"8.09 pb\"",
    "question_en": "What's the lowest lane found for a mark of 8.09 pb?",
    "question_th": "เลนต่ำสุดที่พบที่ระดับ 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_en": "What's the sum of all of ivet lalova's Heat stats?",
    "question_th": "ผลรวมสถิติ Heat ของ ivet lalova ทั้งหมดเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_17 (heat INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(heat) FROM table_name_5 WHERE country = \"british virgin islands\"",
    "question_en": "What's the total number of Heat recorded for the british virgin islands?",
    "question_th": "จำนวนความร้อนทั้งหมดที่บันทึกไว้สำหรับหมู่เกาะบริติชเวอร์จินคือเท่าใด",
    "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_en": "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?",
    "question_th": "เมื่อเลนต่ำกว่า 2 และชื่อ เวอร์เจน เบนาวิเดส ด้วยคะแนน 7.29 พบจำนวน Heat ทั้งหมดเป็นเท่าใด",
    "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_en": "What's the Time for the Competition of european cup and has a Venue of Moscow?",
    "question_th": "การแข่งขันถ้วยยุโรปจะมีเวลาเท่าไรและมีสนามที่กรุงมอสโก?",
    "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_en": "What's the Time for an Event of 4x100 m relay and has a Venue of Frankfurt?",
    "question_th": "เวลาที่จัดกิจกรรมวิ่งผลัด 4x100 ม. และมีสถานที่จัดงานที่แฟรงก์เฟิร์ตคือกี่โมง?",
    "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_en": "What Competition has an Event of 4x100 m relay and has the Time of 38.89?",
    "question_th": "การแข่งขันรายการใดมีการแข่งขันวิ่งผลัด 4x100 เมตร และมีเวลา 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_en": "What's the lowest Year with a  Venue of casablanca and has the Time of 20.63w?",
    "question_th": "ปีใดที่สถานที่จัดงานคาซาบลังกาต่ำที่สุดและมีเวลา 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_en": "What was the College/junior/club team of the player with the united states nationality?",
    "question_th": "ทีมวิทยาลัย/จูเนียร์/สโมสรของผู้เล่นที่มีสัญชาติสหรัฐอเมริกาคือทีมใด?",
    "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_en": "What was the lowest pick number for a united states player picked before round 7?",
    "question_th": "หมายเลขเลือกต่ำสุดสำหรับผู้เล่นในสหรัฐฯ ที่เลือกก่อนรอบที่ 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_en": "What country was the player with the score line 69-71-72-69=281 from?",
    "question_th": "นักเตะที่มีคะแนนไลน์ 69-71-72-69=281 มาจากประเทศใด?",
    "context": "CREATE TABLE table_name_6 (country VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_86 WHERE country = \"south africa\"",
    "question_en": "What was the score of the player from South Africa?",
    "question_th": "นักเตะจากแอฟริกาใต้ได้คะแนนเท่าไหร่?",
    "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_en": "What country did the player with the score line 73-74-72-64=283 from?",
    "question_th": "นักเตะที่มีคะแนน 73-74-72-64=283 มาจากประเทศไหน?",
    "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_en": "Who won Pro Stock Motorcycle the year Tom Martino won Pro Stock?",
    "question_th": "ใครได้รับรางวัล Pro Stock Motorcycle ในปีที่ Tom Martino ได้รับรางวัล Pro Stock?",
    "context": "CREATE TABLE table_name_60 (pro_stock VARCHAR)"
  },
  {
    "answer": "SELECT funny_car FROM table_name_64 WHERE year = 2012",
    "question_en": "Who won Funny Car in 2012?",
    "question_th": "ใครชนะรางวัลรถตลกในปี 2555?",
    "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_en": "Who won Funny Car when Jim Yates won Pro Stock, in years after 1996?",
    "question_th": "ใครชนะรางวัล Funny Car เมื่อ Jim Yates ได้รับรางวัล Pro Stock ในรอบหลายปีหลังปี 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_en": "Who won Pro Stock the year Tony Schumacher won Top Fuel and Tony Pedregon won Funny Car?",
    "question_th": "ใครได้รับรางวัล Pro Stock ในปีที่ Tony Schumacher ได้รับรางวัล Top Fuel และ Tony Pedregon ได้รับรางวัล 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_en": "In which year did John Force win Funny Car and Mike Dunn win in Top Fuel?",
    "question_th": "John Force ชนะ Funny Car และ Mike Dunn ชนะ 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_en": "What is the total number of races in the 2006 season with 0 poles and more than 0 podiums?",
    "question_th": "จำนวนการแข่งขันทั้งหมดในฤดูกาล 2549 โดยมี 0 โพลและมากกว่า 0 โพเดียมเป็นเท่าใด",
    "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_en": "What is the highest number of the fastest laps when there were 0 poles, more than 2 podiums, and more than 15 races?",
    "question_th": "จำนวนรอบที่เร็วที่สุดสูงสุดเมื่อมี 0 โพล มากกว่า 2 โพเดียม และมากกว่า 15 การแข่งขันคือเท่าใด",
    "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_en": "What is the total number of races when there was more than 1 pole, and the fastest number of laps was less than 4?",
    "question_th": "จำนวนการแข่งขันทั้งหมดเมื่อมีมากกว่า 1 โพล และจำนวนรอบที่เร็วที่สุดน้อยกว่า 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_en": "What was the average number of fastest laps with less than 0 poles?",
    "question_th": "จำนวนรอบที่เร็วที่สุดโดยเฉลี่ยโดยน้อยกว่า 0 เสาคือเท่าไร?",
    "context": "CREATE TABLE table_name_5 (fastest_laps INTEGER, poles INTEGER)"
  },
  {
    "answer": "SELECT MIN(poles) FROM table_name_52 WHERE fastest_laps < 0",
    "question_en": "What is the smallest number of poles when the fastest laps are less than 0?",
    "question_th": "จำนวนโพลที่น้อยที่สุดเมื่อรอบที่เร็วที่สุดน้อยกว่า 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_en": "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?",
    "question_th": "จำนวนชัยชนะทั้งหมดในฤดูกาล 2550 เมื่อรอบที่เร็วที่สุดคือ 0 มีน้อยกว่า 0 โพเดียม และมีการแข่งขันน้อยกว่า 16 รายการเป็นเท่าใด",
    "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_en": "What surface did hayley ericksen play on?",
    "question_th": "เฮย์ลีย์ อีริคเซ่นเล่นบนพื้นผิวอะไร?",
    "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_en": "Who were the opponents on a hard surface with a score of 6-4, 7-6(2)?",
    "question_th": "คู่ต่อสู้บนพื้นแข็งด้วยสกอร์ 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_en": "What was hayley ericksen's score?",
    "question_th": "เฮย์ลีย์ อีริคเซ่นได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_97 (score VARCHAR, partner VARCHAR)"
  },
  {
    "answer": "SELECT silver FROM table_name_28 WHERE bronze = \"katie curtis unknown\"",
    "question_en": "Who won the Silver the Year Katie Curtis Unknown won the Bronze?",
    "question_th": "ใครได้รับรางวัลเหรียญเงินแห่งปี Katie Curtis Unknown ได้รับรางวัลเหรียญทองแดง?",
    "context": "CREATE TABLE table_name_28 (silver VARCHAR, bronze VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_54 WHERE name = \"greg huntington\"",
    "question_en": "Round that greg huntington went in?",
    "question_th": "รอบที่เกรก ฮันติงตันเข้าไปเหรอ?",
    "context": "CREATE TABLE table_name_54 (round VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT SUM(overall) FROM table_name_16 WHERE college = \"penn state\"",
    "question_en": "Total overall from penn state?",
    "question_th": "ยอดรวมจากเพนน์สเตต?",
    "context": "CREATE TABLE table_name_16 (overall INTEGER, college VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(seasons) FROM table_name_2 WHERE coach = \"pat chambers\"",
    "question_en": "How many seasons did Pat Chambers coach?",
    "question_th": "แพท แชมเบอร์สเป็นโค้ชกี่ฤดูกาล?",
    "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_en": "What was the to par that goes with the score 68-74-69=211?",
    "question_th": "พาร์ที่เข้าคู่กับสกอร์ 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_en": "What country is Paul Stankowski from?",
    "question_th": "Paul Stankowski มาจากประเทศใด",
    "context": "CREATE TABLE table_name_21 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_90 WHERE score = 70 - 66 - 65 = 201",
    "question_en": "What place goes with the score of 70-66-65=201?",
    "question_th": "อันดับไหนได้คะแนน 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_en": "When Fred Funk had a to par of E, what was the score?",
    "question_th": "เมื่อ Fred Funk เสมอกับ E สกอร์เท่าไหร่?",
    "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_en": "Where is the location where Scott Junk was the opponent?",
    "question_th": "ตำแหน่งที่สก็อตต์ จังก์เป็นคู่ต่อสู้อยู่ที่ไหน?",
    "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_en": "what is the score on 14 december 1974 and the away team is crystal palace?",
    "question_th": "สกอร์วันที่ 14 ธ.ค. 2517 เป็นยังไงบ้าง และทีมเยือน คริสตัล พาเลซ ?",
    "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_en": "what is the date when the away team is crystal palace?",
    "question_th": "ทีมเยือนคริสตัล พาเลซ วันที่เท่าไหร่คะ?",
    "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_en": "What was the Tie Number of the Bradford City away team?",
    "question_th": "เบอร์เสมอของทีมเยือนแบรดฟอร์ด ซิตี้ คืออะไร?",
    "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_en": "Who was the home team that had a replay of Tie Number and played against the Bolton Wanderers?",
    "question_th": "ใครคือทีมเจ้าบ้านที่ได้รีเพลย์เสมอกันและเล่นกับโบลตันวันเดอเรอร์ส?",
    "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_en": "What date has a Tie Number of 4?",
    "question_th": "เลข 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_en": "What is the average money ($) that Tom Weiskopf made?",
    "question_th": "เงินเฉลี่ย ($) ที่ Tom Weiskopf ทำคือเท่าไร?",
    "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_en": "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?",
    "question_th": "นักกอล์ฟจากสหรัฐอเมริกาเข้ามาอยู่อันดับใดด้วย To Par ที่ +2 และคะแนน 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_en": "For a long scale of one million, what is the power notion?",
    "question_th": "สเกลยาวๆ หนึ่งล้าน แนวคิดเรื่องอำนาจคืออะไร?",
    "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_en": "For a power notation of 10 12, what is the long scale?",
    "question_th": "สัญกรณ์ยกกำลัง 10 12 สเกลยาวคือเท่าใด",
    "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_en": "For a short scale of one quadrillion a thousand trillion, what is the Long scale?",
    "question_th": "สำหรับมาตราส่วนระยะสั้นหนึ่งพันล้านล้านล้านมาตราส่วนระยะยาวคืออะไร?",
    "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_en": "what is the employee (real name) when the pick # is higher than 10 and the brand (to) is raw?",
    "question_th": "พนักงาน (ชื่อจริง) คืออะไร เมื่อเลือก # สูงกว่า 10 และแบรนด์ (ถึง) เป็นดิบ?",
    "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_en": "Who was the opposing team when the scorer was ronaldinho 90+3'?",
    "question_th": "ใครคือทีมตรงข้ามเมื่อผู้ทำประตูคือโรนัลดินโญ่ 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_en": "Who was the opposing team when the scorers were jong-a-pin 19'( o.g. ) , gattuso 23' , inzaghi 69'?",
    "question_th": "ใครคือทีมตรงข้ามเมื่อผู้ทำประตูคือ จงอาปิน 19'( อ็อก ) , กัตตูโซ 23' , อินซากี 69'?",
    "context": "CREATE TABLE table_name_84 (opponent_team VARCHAR, scorers VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_26 WHERE home_team = \"altrincham\"",
    "question_en": "What was the score when Altrincham was home?",
    "question_th": "เมื่ออัลทริงแคมกลับบ้านได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_26 (score VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(goals_against) FROM table_name_20 WHERE drawn < 3",
    "question_en": "How many goals against when the draws are fewer than 3?",
    "question_th": "เสียประตูไปกี่ประตูเมื่อเสมอน้อยกว่า 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_en": "How many goals when the points 1 is 38 and the played number is less than 42?",
    "question_th": "กี่ประตูเมื่อแต้ม 1 คือ 38 และจำนวนที่เล่นน้อยกว่า 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_en": "What is the fewest goals for when goal difference is +10 and goals against is more than 61?",
    "question_th": "อะไรคือประตูที่น้อยที่สุดเมื่อผลต่างประตูคือ +10 และประตูที่เสียมากกว่า 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_en": "What is the fewest goals for when goals against is 75 and drawn is smaller than 11?",
    "question_th": "อะไรคือประตูที่น้อยที่สุดเมื่อประตูที่เสียคือ 75 และเสมอน้อยกว่า 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_en": "What is the highest goals for the position after 10, a goal difference less than -24, and played more than 30 times?",
    "question_th": "ประตูสูงสุดสำหรับตำแหน่งหลังจาก 10 ประตู ผลต่างประตูน้อยกว่า -24 และเล่นมากกว่า 30 ครั้งคืออะไร?",
    "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_en": "What is the lowest goals for more than 30 games played?",
    "question_th": "ประตูต่ำสุดจากการเล่นมากกว่า 30 เกมคืออะไร?",
    "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_en": "What is the highest amount of goals in the position after 8, 12 losses, and played less than 30 games?",
    "question_th": "จำนวนประตูสูงสุดในตำแหน่งหลังจากแพ้ 8, 12 และเล่นน้อยกว่า 30 เกมคือเท่าไร?",
    "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_en": "What is the total number of losses for the over 30 games played?",
    "question_th": "จำนวนการแพ้ทั้งหมดจากการเล่นมากกว่า 30 เกมเป็นเท่าใด?",
    "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_en": "What is the total number of losses and draws less than 7, points larger than 26, 60 goals, and a position before 4?",
    "question_th": "จำนวนการแพ้และเสมอน้อยกว่า 7 คะแนนมากกว่า 26, 60 ประตู และตำแหน่งก่อน 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_en": "What is the highest total for bronze with a gold larger than 0, a silver smaller than 5, and a total of 15?",
    "question_th": "อะไรคือผลรวมสูงสุดสำหรับทองแดงที่มีทองคำมากกว่า 0, เงินน้อยกว่า 5 และทั้งหมด 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_en": "What is Score, when High Points is \"Dwight Howard (25)\"?",
    "question_th": "Score คืออะไร เมื่อ High Points คือ \"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_en": "What is Score, when Team is \"Washington\"?",
    "question_th": "Score คืออะไร เมื่อทีมคือ \"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_en": "What is Record, when Location Attendance is \"Pepsi Center 19,749\"?",
    "question_th": "บันทึกคืออะไร เมื่อการเข้าร่วมสถานที่คือ \"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_en": "What is Record, when Game is \"36\"?",
    "question_th": "Record คืออะไร เมื่อเกมคือ \"36\"?",
    "context": "CREATE TABLE table_name_24 (record VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_38 WHERE winning_score = −14(68 - 68 - 67 - 71 = 274)",
    "question_en": "What is Date, when Winning Score is −14 (68-68-67-71=274)?",
    "question_th": "วันที่คือวันที่เมื่อคะแนนชนะคือ −14 (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_en": "What is the Margin of Victory, when Tournament is Mercedes Championships (3)?",
    "question_th": "Margin of Victory คืออะไร เมื่อการแข่งขันคือ 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_en": "What is Date, when Tournament, is Greenbrier Classic?",
    "question_th": "วันที่ใดที่การแข่งขันคือ 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_en": "What is Runner(s)-Up when Margin of Victory is 6 Strokes?",
    "question_th": "Runner(s)-Up คืออะไรเมื่อ Margin of Victory คือ 6 สโตรก?",
    "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_en": "What is Date, when Runner(s)-Up is Jonathan Kaye?",
    "question_th": "วันที่คืออะไร เมื่อรองชนะเลิศคือ 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_en": "What is the year that nahete colles was named?",
    "question_th": "นาเฮเต คอลเลส ชื่อปีอะไร?",
    "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_en": "What year was the geological feature with a latitude of 76.0n and a diameter larger than 548 km was named?",
    "question_th": "ลักษณะทางธรณีวิทยาที่มีละติจูด 76.0n และมีเส้นผ่านศูนย์กลางใหญ่กว่า 548 กม. ได้รับการตั้งชื่อว่าปีใด",
    "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_en": "What is the diameter in km of t'ien hu colles?",
    "question_th": "เส้นผ่านศูนย์กลางเป็นกิโลเมตรของ 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_en": "Which team has driven 134 laps?",
    "question_th": "ทีมไหนขับไปแล้ว 134 รอบ?",
    "context": "CREATE TABLE table_name_22 (team VARCHAR, laps VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_name_74 WHERE laps > 134 AND pos = \"4th\"",
    "question_en": "In what class is the laps greater than 134 and the position is 4th?",
    "question_th": "รอบใดมากกว่า 134 และอันดับที่ 4?",
    "context": "CREATE TABLE table_name_74 (class VARCHAR, laps VARCHAR, pos VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_11 WHERE name = \"mentuhotep iv\"",
    "question_en": "What title did Mentuhotep IV have?",
    "question_th": "Mentuhotep IV มีชื่ออะไร?",
    "context": "CREATE TABLE table_name_11 (title VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_78 WHERE name = \"amenemhat ii\"",
    "question_en": "What is the title of Amenemhat II?",
    "question_th": "ชื่อของ Amenemhat II คืออะไร?",
    "context": "CREATE TABLE table_name_78 (title VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_78 WHERE name = \"senusret i\"",
    "question_en": "What is the title of Senusret I?",
    "question_th": "Senusret I มีชื่อว่าอะไร?",
    "context": "CREATE TABLE table_name_78 (title VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_57 WHERE name = \"amenemhat i\"",
    "question_en": "What is the title of Amenemhat I?",
    "question_th": "ชื่อของ 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_en": "What is the Record when the round was 5, time was 5:00, and the opponent was Torrance Taylor",
    "question_th": "มีสถิติอะไรบ้างเมื่อยกที่ 5 เวลา 5.00 น. และคู่ต่อสู้คือ ทอร์รันซ์ เทย์เลอร์",
    "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_en": "What is the method when the time was 5:00, and the round higher than 4?",
    "question_th": "เมื่อเวลา 5.00 น. และรอบสูงกว่า 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_en": "When the others had a value of 7%, what was the Polling organisation/client?",
    "question_th": "เมื่อคนอื่นๆ มีค่าเท่ากับ 7% องค์กร/ลูกค้าหน่วยเลือกตั้งคืออะไร",
    "context": "CREATE TABLE table_name_5 (polling_organisation_client VARCHAR, others VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_26 WHERE position = \"small forward\"",
    "question_en": "What player plays the position of small forward?",
    "question_th": "นักเตะคนไหนเล่นตำแหน่งกองหน้าตัวเล็ก?",
    "context": "CREATE TABLE table_name_26 (player VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT latitude FROM table_name_18 WHERE diameter__km_ = 0",
    "question_en": "What is the latitude of the 0 diameter?",
    "question_th": "ละติจูดของเส้นผ่านศูนย์กลาง 0 คืออะไร?",
    "context": "CREATE TABLE table_name_18 (latitude VARCHAR, diameter__km_ VARCHAR)"
  },
  {
    "answer": "SELECT longitude FROM table_name_35 WHERE name = \"angerona tholus\"",
    "question_en": "What is the longitude of Angerona Tholus?",
    "question_th": "ลองจิจูดของ 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_en": "What is the smallest diameter for Eirene Tholus?",
    "question_th": "เส้นผ่านศูนย์กลางที่เล็กที่สุดสำหรับ 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_en": "What was the game on April 25?",
    "question_th": "เกมวันที่ 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_en": "what is the sum of the wkts when the ovrs were bigger than 2 and econ was bigger than 7.84?",
    "question_th": "ผลรวมของ wkts เมื่อ ovrs มากกว่า 2 และ econ มากกว่า 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_en": "What is the sum of the runs when the wkts were bigger than 0 and ovrs were smaller than 2?",
    "question_th": "ผลรวมของการรันเมื่อ wkts มากกว่า 0 และ ovrs น้อยกว่า 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_en": "What is the highest wkts for james hopes who had less than 26 runs and more than 2 ovrs?",
    "question_th": "อะไรคือสัปดาห์ที่สูงที่สุดสำหรับเจมส์ โฮปที่มีการวิ่งน้อยกว่า 26 ครั้งและมากกว่า 2 รอบ?",
    "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_en": "What is the average sales in billions of the company headquartered in France with more than 2,539.1 billion in assets?",
    "question_th": "ยอดขายเฉลี่ยของบริษัทหลายพันล้านซึ่งมีสำนักงานใหญ่ในฝรั่งเศสและมีสินทรัพย์มากกว่า 2,539.1 พันล้านเป็นเท่าใด",
    "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_en": "What is the average sales in billions of walmart, which has more than 15.7 billion in profits?",
    "question_th": "ยอดขายเฉลี่ยในวอลมาร์ตนับพันล้านซึ่งมีกำไรมากกว่า 15.7 พันล้านเป็นเท่าใด",
    "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_en": "What is the rider when the grid is 21?",
    "question_th": "ไรเดอร์เมื่อกริดเป็น 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_en": "What is the average laps when the manufacturer is yamaha, and the rider is garry mccoy and the grid is smaller than 4?",
    "question_th": "อะไรคือรอบโดยเฉลี่ยเมื่อผู้ผลิตคือ Yamaha และผู้ขับขี่คือ Garry Mccoy และกริดมีขนาดเล็กกว่า 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_en": "What is the lowest laps for rider andrew pitt, with a grid smaller than 18? Wha",
    "question_th": "รอบต่ำสุดสำหรับนักแข่ง Andrew Pitt โดยมีกริดน้อยกว่า 18 คือเท่าไร? อะไรนะ",
    "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_en": "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?",
    "question_th": "รอบต่ำสุดที่มีผู้ผลิต Yamaha และเวลา/เกษียณที่ +1:08.312 และกริดน้อยกว่า 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_en": "What event had a tko (punches) method and jason macdonald as the opponent?",
    "question_th": "เหตุการณ์ใดมีวิธี tko (ต่อย) และมีเจสัน แมคโดนัลด์เป็นคู่ต่อสู้?",
    "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_en": "What is the opponent after round number 1 with a method of decision (unanimous)?",
    "question_th": "คู่ต่อสู้หลังรอบที่ 1 เป็นอย่างไร โดยมีวิธีการตัดสิน (เป็นเอกฉันท์)?",
    "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é sá\"",
    "question_en": "Who is the partnering that had the opponents of Marcelo Melo André Sá?",
    "question_th": "คู่หูที่มีคู่แข่งของ มาร์เซโล เมโล อังเดร ซา คือใคร?",
    "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_en": "What was the score on February 14, 1999?",
    "question_th": "คะแนนเมื่อวันที่ 14 กุมภาพันธ์ 2542 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_32 (score_in_final VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_29 WHERE score_in_final = \"6–7(9), 6–2, (10–7)\"",
    "question_en": "What date was the score 6–7(9), 6–2, (10–7)?",
    "question_th": "คะแนน 6–7(9), 6–2, (10–7) คือวันที่เท่าไหร่?",
    "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_en": "What is the lowest value for Sydney, when WEEKLY RANK is less than 8, and when Brisbane is greater than 252,000?",
    "question_th": "ค่าต่ำสุดสำหรับซิดนีย์คือเท่าใด เมื่ออันดับรายสัปดาห์น้อยกว่า 8 และเมื่อบริสเบนมากกว่า 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_en": "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?",
    "question_th": "ผลรวมของค่าสำหรับเมลเบิร์น เมื่อหมายเลขการผลิตของตอนคือ 19 2-06 และเมื่อซิดนีย์มีค่าน้อยกว่า 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_en": "How many rounds had a time of 5:00 at UFC 155?",
    "question_th": "UFC 155 เวลา 5.00 น. มีกี่รอบ?",
    "context": "CREATE TABLE table_name_25 (round VARCHAR, time VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_86 WHERE time = \"2:34\"",
    "question_en": "Which event had a time of 2:34?",
    "question_th": "เหตุการณ์ใดมีเวลา 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_en": "Who was the opponent in the bout that led to a win in a time of 1:21?",
    "question_th": "คู่ต่อสู้ที่ชนะในเวลา 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_en": "What is the method of resolution for the fight against akihiro gono?",
    "question_th": "มีวิธีปราบอากิฮิโระ โกโนะอย่างไร?",
    "context": "CREATE TABLE table_name_31 (method VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT AVG(round) FROM table_name_52 WHERE record = \"1-1\"",
    "question_en": "What is the average number of rounds that Lance Gibson fought when his record was 1-1?",
    "question_th": "จำนวนรอบเฉลี่ยที่ Lance Gibson ต่อสู้เมื่อบันทึกของเขาคือ 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_en": "What is the Country of the Player with a Score of 69-71-66=206?",
    "question_th": "ประเทศของผู้เล่นที่มีคะแนน 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_en": "What is the Place of the Player from Scotland?",
    "question_th": "สถานที่ของผู้เล่นจากสกอตแลนด์คืออะไร?",
    "context": "CREATE TABLE table_name_36 (place VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_78 WHERE player = \"steve lowery\"",
    "question_en": "What is Steve Lowery's Place?",
    "question_th": "สถานที่ของสตีฟ โลเวอรีคืออะไร?",
    "context": "CREATE TABLE table_name_78 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT qual FROM table_name_98 WHERE year = \"1961\"",
    "question_en": "What was 1961's qual?",
    "question_th": "คุณสมบัติของปี 1961 คืออะไร?",
    "context": "CREATE TABLE table_name_98 (qual VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_10 WHERE start = \"13\"",
    "question_en": "What was 13's finish?",
    "question_th": "จบ 13 เป็นยังไงบ้าง?",
    "context": "CREATE TABLE table_name_10 (finish VARCHAR, start VARCHAR)"
  },
  {
    "answer": "SELECT laps FROM table_name_95 WHERE year = \"1969\"",
    "question_en": "How many laps were in 1969?",
    "question_th": "ปี 1969 มีกี่รอบ?",
    "context": "CREATE TABLE table_name_95 (laps VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_68 WHERE qual = \"145.144\"",
    "question_en": "Which Rank has a Qual of 145.144?",
    "question_th": "อันดับไหนมีรอบคัดเลือก 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_en": "What is the sources for Bandung?",
    "question_th": "บันดุงมีแหล่งที่มาจากอะไร?",
    "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_en": "What race happened at Iowa Speedway?",
    "question_th": "การแข่งขันอะไรเกิดขึ้นที่ 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_en": "Who won the Food World 250?",
    "question_th": "ใครชนะ 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_en": "What race happened at pocono on 08-02-2008?",
    "question_th": "การแข่งขันอะไรเกิดขึ้นที่ pocono เมื่อวันที่ 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_en": "What race happened on 04-25-2008?",
    "question_th": "มีการแข่งขันอะไรบ้างในวันที่ 25-04-2551?",
    "context": "CREATE TABLE table_name_1 (race VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT track FROM table_name_34 WHERE date = \"09-13-2008\"",
    "question_en": "Where was the race on 09-13-2008?",
    "question_th": "วันที่ 13-09-2551 แข่งขันที่ไหน?",
    "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_en": "Which game number was played after March 11 and ended with a record of 26-30-10?",
    "question_th": "เกมหมายเลขไหนที่เล่นหลังวันที่ 11 มีนาคม และจบลงด้วยสถิติ 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_en": "How many games total were played against @ Boston Bruins this season?",
    "question_th": "ฤดูกาลนี้เล่นกับ @Boston Bruins ทั้งหมดกี่เกม?",
    "context": "CREATE TABLE table_name_77 (game INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT MIN(march) FROM table_name_32 WHERE record = \"25-29-10\"",
    "question_en": "When was the earliest game date in March where the match ended with a record of 25-29-10?",
    "question_th": "วันที่เล่นเกมเร็วที่สุดในเดือนมีนาคมคือเมื่อใดที่การแข่งขันจบลงด้วยสถิติ 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_en": "How many points when John Vopni won a season before 1977?",
    "question_th": "จอห์น วอปนี่ ชนะหนึ่งฤดูกาลก่อนปี 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_en": "How many points when Bill Benson was the winner?",
    "question_th": "บิล เบนสัน เป็นผู้ชนะได้กี่แต้ม?",
    "context": "CREATE TABLE table_name_95 (points VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_10 WHERE high_rebounds = \"tyson chandler (7)\"",
    "question_en": "Which team did Tyson Chandler (7) have high rebounds for?",
    "question_th": "Tyson Chandler (7) รีบาวด์สูงให้กับทีมใด",
    "context": "CREATE TABLE table_name_10 (team VARCHAR, high_rebounds VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_name_10 WHERE date = \"november 27\"",
    "question_en": "How many high assists were on November 27?",
    "question_th": "วันที่ 27 พฤศจิกายน มีแอสซิสต์สูงกี่ลูก?",
    "context": "CREATE TABLE table_name_10 (high_assists VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT winning_score FROM table_name_51 WHERE year = 1980",
    "question_en": "What was the winning score in 1980?",
    "question_th": "คะแนนชนะในปี 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_en": "What was the winning score in 1985 for Championship of u.s. women's open?",
    "question_th": "คะแนนชนะในปี 1985 ของรายการ Championship of us 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_en": "When was the runner-up Jane Geddes?",
    "question_th": "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 = –8(68 - 72 - 69 - 71 = 280)",
    "question_en": "Which championship after 1985 had a winning score of –8 (68-72-69-71=280)?",
    "question_th": "แชมป์รายการใดหลังปี 1985 มีคะแนนชนะ –8 (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_en": "What was the method of resolution for the fight against jake brown?",
    "question_th": "วิธีการแก้ไขปัญหาในการต่อสู้กับเจค บราวน์คืออะไร?",
    "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_en": "On what team did John Bowe round winner at Winton Motor Raceway belong to?",
    "question_th": "John Bowe ผู้ชนะรอบที่ Winton Motor Raceway อยู่กับทีมใด",
    "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_en": "What was the team features at Oran Park Raceway?",
    "question_th": "ทีมงานที่สนามแข่งรถโอรันปาร์คเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_41 (team VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT location___state FROM table_name_19 WHERE circuit = \"eastern creek raceway\"",
    "question_en": "Where is the Eastern Creek Raceway located?",
    "question_th": "สนามแข่งรถ Eastern Creek อยู่ที่ไหน",
    "context": "CREATE TABLE table_name_19 (location___state VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT state FROM table_name_9 WHERE name = \"dai\"",
    "question_en": "Which state was Dai from?",
    "question_th": "ไดมาจากรัฐไหน?",
    "context": "CREATE TABLE table_name_9 (state VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_6 WHERE name = \"mu\"",
    "question_en": "What was Mu's title?",
    "question_th": "มู่มีชื่อว่าอะไร?",
    "context": "CREATE TABLE table_name_6 (title VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT MAX(attendance) FROM table_name_34 WHERE week = 3",
    "question_en": "what is the highest attendance for week 3?",
    "question_th": "ผู้เข้าร่วมสูงสุดในสัปดาห์ที่ 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_en": "what is the result for the week higher than 7 on november 4, 1979?",
    "question_th": "ผลลัพธ์ของสัปดาห์ที่สูงกว่า 7 ในวันที่ 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_en": "what is the lowest week when the date is september 16, 1979 and the attendance less than 54,212?",
    "question_th": "สัปดาห์ใดคือวันที่ต่ำสุดคือวันที่ 16 กันยายน พ.ศ. 2522 และมีผู้เข้าร่วมน้อยกว่า 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_en": "Which competition has stuart potts as the man of the match?",
    "question_th": "รายการนี้รายการไหนที่ Stuart Potts เป็นแมนออฟเดอะแมตช์?",
    "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_en": "Which venue had a lost 5-4 result?",
    "question_th": "สนามไหนแพ้ 5-4?",
    "context": "CREATE TABLE table_name_15 (venue VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_9 WHERE opponent = \"wightlink raiders\"",
    "question_en": "What is the venue of the match with the wightlink raiders as the opponent?",
    "question_th": "สนามไหนของแมตช์ที่มี ไวท์ลิงค์ เรดเดอร์ส เป็นคู่ต่อสู้?",
    "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_en": "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?",
    "question_th": "อะไรคือผลลัพธ์ของการแข่งขันลีก/คัพ โดยมีสวินดอน ไวลด์แคทเป็นคู่ต่อสู้ และนีล ลิดดิอาร์ดเป็นแมนออฟเดอะแมตช์?",
    "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_en": "What is the attendance of the match on the 2nd with the slough jets as the opponent?",
    "question_th": "แมตช์ที่ 2 แมตช์ที่ 2 มีสลัฟเจ็ตส์เป็นคู่ต่อสู้เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_35 (attendance VARCHAR, opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_89 WHERE total = \"75–53\"",
    "question_en": "What was the score when the total was 75–53?",
    "question_th": "เมื่อคะแนนรวมอยู่ที่ 75–53 คะแนนเป็นเท่าใด",
    "context": "CREATE TABLE table_name_89 (score VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT total FROM table_name_80 WHERE set_3 = \"25–14\"",
    "question_en": "What was the total when the set 3 was 25–14?",
    "question_th": "จำนวนรวมเมื่อเซต 3 อยู่ที่ 25–14 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_80 (total VARCHAR, set_3 VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_12 WHERE set_1 = \"25–23\" AND set_3 = \"25–14\"",
    "question_en": "What date was the set 1 25–23, and a Set 3 of 25–14?",
    "question_th": "วันที่เท่าไหร่คือชุดที่ 1 25–23 และชุดที่ 3 จาก 25–14",
    "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–25\"",
    "question_en": "What date was the Set 3 of 12–25?",
    "question_th": "ชุดที่ 3 ของวันที่ 12–25 คือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_79 (date VARCHAR, set_3 VARCHAR)"
  },
  {
    "answer": "SELECT set_3 FROM table_name_26 WHERE total = \"53–75\"",
    "question_en": "What is the Set 3 when the total was 53–75?",
    "question_th": "ชุดที่ 3 คืออะไรเมื่อรวมเป็น 53–75?",
    "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_en": "What is the average win with a top 5 greater than 2 and a top 10 less than 5?",
    "question_th": "การชนะโดยเฉลี่ยโดย 5 อันดับแรกมากกว่า 2 และ 10 อันดับแรกน้อยกว่า 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_en": "How many poles have 4 Starts of 4 and position of 46th?",
    "question_th": "มีกี่เสาที่มี 4 ออกตัวจาก 4 และตำแหน่งที่ 46?",
    "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_en": "Sum of m. night shyamalan ranks?",
    "question_th": "ผลรวมของ ม. ไนท์ ชยามาลาน ติดอันดับเหรอ?",
    "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_en": "Director for Star Wars Episode II: attack of the clones?",
    "question_th": "ผู้กำกับ 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_en": "What was the tie no when Oxford city was the away team?",
    "question_th": "อะไรคือการไม่เสมอกันเมื่ออ็อกซ์ฟอร์ด ซิตี้ เป็นทีมเยือน?",
    "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_en": "What was the tie no when Wrexham was the away team?",
    "question_th": "อะไรคือการไม่เสมอกันเมื่อเร็กซ์แฮมเป็นทีมเยือน?",
    "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_en": "What was the score when Spennymoor United as the away team?",
    "question_th": "ตอนที่ สเปนนีมูร์ ยูไนเต็ด เป็นทีมเยือนได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_67 (score VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_34 WHERE away_team = \"grimsby town\"",
    "question_en": "What date was Grimsby Town the away team?",
    "question_th": "กริมสบี้ ทาวน์ เป็นทีมเยือนวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_34 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_33 WHERE eliminated = \"banana night\"",
    "question_en": "Who was eliminated on Banana Night?",
    "question_th": "ใครถูกคัดออกใน 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_en": "Who was the special guest when the category was vocal groups and the name was Romantic?",
    "question_th": "ใครคือแขกรับเชิญพิเศษในหมวดนักร้องและชื่อโรแมนติก?",
    "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_en": "On what date was elimination on final night?",
    "question_th": "เมื่อคืนตกรอบวันไหนคะ?",
    "context": "CREATE TABLE table_name_43 (date VARCHAR, eliminated VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(game) FROM table_name_89 WHERE opponent = \"washington\"",
    "question_en": "What is the total number of games for the opponent in Washington?",
    "question_th": "จำนวนเกมทั้งหมดของคู่ต่อสู้ในวอชิงตันคือเท่าไร?",
    "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_en": "How many stories have a height less than 138 meters with a completion date in 1971?",
    "question_th": "มีกี่ชั้นที่มีความสูงไม่ถึง 138 เมตร และมีกำหนดสร้างเสร็จในปี พ.ศ. 2514?",
    "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_en": "What is the largest number of stories in Recife completed later than 2007 with a height less than 135 meters?",
    "question_th": "เรื่องราวจำนวนมากที่สุดในเรซิเฟที่สร้างเสร็จหลังปี 2550 โดยมีความสูงน้อยกว่า 135 เมตรคือข้อใด",
    "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_en": "Which Sanskrit has an English of mindfulness of breathing?",
    "question_th": "ภาษาสันสกฤตใดมีภาษาอังกฤษเรื่องการหายใจอย่างมีสติ?",
    "context": "CREATE TABLE table_name_26 (sanskrit VARCHAR, english VARCHAR)"
  },
  {
    "answer": "SELECT sanskrit FROM table_name_74 WHERE chinese = \"—\" AND english = \"cultivation of settling\"",
    "question_en": "Which Sanskrit has a Chinese of —, and an English of cultivation of settling?",
    "question_th": "ภาษาสันสกฤตใดที่มีภาษาจีน — และมีภาษาอังกฤษในการตั้งถิ่นฐาน?",
    "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_en": "Which Pali has an English of mindfulness of breathing?",
    "question_th": "ภาษาบาลีใดมีภาษาอังกฤษเรื่องการหายใจมีสติ?",
    "context": "CREATE TABLE table_name_54 (pali VARCHAR, english VARCHAR)"
  },
  {
    "answer": "SELECT pali FROM table_name_74 WHERE english = \"meditative concentration\"",
    "question_en": "Which Pali has an English of meditative concentration?",
    "question_th": "ภาษาบาลีใดมีภาษาอังกฤษเป็นสมาธิ?",
    "context": "CREATE TABLE table_name_74 (pali VARCHAR, english VARCHAR)"
  },
  {
    "answer": "SELECT chinese FROM table_name_59 WHERE pali = \"atappa\"",
    "question_en": "Which Chinese has a Pali of atappa?",
    "question_th": "คนจีนคนไหนมีภาษาบาลีอาตัปปะ?",
    "context": "CREATE TABLE table_name_59 (chinese VARCHAR, pali VARCHAR)"
  },
  {
    "answer": "SELECT english FROM table_name_42 WHERE sanskrit = \"samādhi\"",
    "question_en": "Which English has a Sanskrit of samādhi?",
    "question_th": "ภาษาอังกฤษข้อใดมีคำว่า สมาธิ เป็นภาษาสันสกฤต",
    "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_en": "Who is the player in guard position from Stephen F. Austin in a round less than 8?",
    "question_th": "ผู้เล่นในตำแหน่งการ์ดต่อจาก สตีเฟน เอฟ. ออสติน ในรอบน้อยกว่า 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_en": "Which position has a pick less than 41 from Ohio State?",
    "question_th": "ตำแหน่งใดมีตัวเลือกน้อยกว่า 41 จากรัฐโอไฮโอ",
    "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_en": "What shows for 2006 when 2002 is Grand Slam Tournaments?",
    "question_th": "อะไรแสดงให้เห็นในปี 2549 เมื่อปี 2545 เป็นการแข่งขันแกรนด์สแลม?",
    "context": "CREATE TABLE table_name_52 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2002 FROM table_name_65 WHERE 2006 = \"grand slam tournaments\"",
    "question_en": "What shows for 2002 when 2006 is Grand Slam Tournaments?",
    "question_th": "อะไรแสดงให้เห็นในปี 2545 เมื่อปี 2549 เป็นการแข่งขันแกรนด์สแลม?",
    "context": "CREATE TABLE table_name_65 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2005 FROM table_name_16 WHERE 2002 = \"0–1\"",
    "question_en": "What shows for 2005 when 2002 shows 0–1?",
    "question_th": "อะไรแสดงให้เห็นในปี 2548 เมื่อปี 2545 แสดง 0–1",
    "context": "CREATE TABLE table_name_16 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2006 FROM table_name_96 WHERE 2002 = \"0–1\"",
    "question_en": "What shows for 2006 when 2002 is 0–1?",
    "question_th": "อะไรแสดงให้เห็นในปี 2549 เมื่อปี 2545 อยู่ที่ 0–1",
    "context": "CREATE TABLE table_name_96 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2002 FROM table_name_40 WHERE 2004 = \"a\" AND 2005 = \"1r\"",
    "question_en": "What shows for 2002 when the 2004 is A, and the 2005 is 1r?",
    "question_th": "อะไรแสดงให้เห็นในปี 2545 เมื่อปี 2547 เป็น A และปี 2548 เป็น 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_en": "What shows for 2004 when 2005 is A, 2006 is A, tournament is US Open?",
    "question_th": "มีอะไรแสดงให้เห็นในปี 2004 เมื่อปี 2005 เป็น A, 2006 เป็น A, การแข่งขันคือ US Open?",
    "context": "CREATE TABLE table_name_60 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_8 WHERE date = \"december 2, 1962\"",
    "question_en": "Who was the opponent on December 2, 1962?",
    "question_th": "คู่ต่อสู้เมื่อวันที่ 2 ธันวาคม 2505 คือใคร?",
    "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_en": "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?",
    "question_th": "ประชากรของเมืองที่มีอันดับการสำรวจสำมะโนประชากร 1,379 จาก 5,008 และพื้นที่ กม. 2 น้อยกว่า 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_en": "What is the Official Name of the Community with an Area km 2 of 16.13?",
    "question_th": "ชื่ออย่างเป็นทางการของชุมชนที่มีพื้นที่ กม. 2 จาก 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 = \"–2\" AND player = \"tsuneyuki nakajima\"",
    "question_en": "What is Country, when To Par is \"–2\", and when Player is \"Tsuneyuki Nakajima\"?",
    "question_th": "ประเทศคืออะไร เมื่อทูพาร์คือ \"–2\" และเมื่อผู้เล่นคือ \"สึเนยูกิ นากาจิมะ\"?",
    "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_en": "What is Country, when Score is \"72-65=137\"?",
    "question_th": "ประเทศคืออะไร เมื่อคะแนนคือ \"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_en": "What is Country, when Place is \"T3\", and when Player is \"Jim Thorpe\"?",
    "question_th": "ประเทศคืออะไร เมื่อสถานที่คือ \"T3\" และเมื่อผู้เล่นคือ \"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_en": "Who was the team for game 34?",
    "question_th": "ใครคือทีมในเกมที่ 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_en": "How many goals for had a drawn more than 12 for the Goole Town team, as well as more than 60 goals against?",
    "question_th": "มีกี่ประตูที่เสมอมากกว่า 12 ประตูสำหรับทีมกูลทาวน์ และมากกว่า 60 ประตูต่อ?",
    "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_en": "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?",
    "question_th": "อะไรคือประตูเฉลี่ยที่เสมอมากกว่า 7 และประตูต่อน้อยกว่า 86 รวมถึงแพ้มากกว่า 11 นัดและลงเล่นมากกว่า 42 เกม?",
    "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_en": "What is the highest lost with a drawn more than 11, a position lower than 17 and more than 61 goals?",
    "question_th": "แพ้สูงสุดโดยเสมอมากกว่า 11, ตำแหน่งต่ำกว่า 17 และมากกว่า 61 ประตูคืออะไร?",
    "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_en": "Who held the title of Ruler?",
    "question_th": "ใครเป็นผู้ดำรงตำแหน่งผู้ปกครอง?",
    "context": "CREATE TABLE table_name_31 (name VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_54 WHERE title = \"ruler\"",
    "question_en": "What type of state did the ruler have a title?",
    "question_th": "ผู้ปกครองมีตำแหน่งรัฐประเภทใด?",
    "context": "CREATE TABLE table_name_54 (type VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT state FROM table_name_2 WHERE title = \"marquis\" AND name = \"jing\"",
    "question_en": "In what state did Jing have the title of Marquis?",
    "question_th": "จิงมีตำแหน่งมาร์ควิสในรัฐใด?",
    "context": "CREATE TABLE table_name_2 (state VARCHAR, title VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_37 WHERE name = \"gongbo\"",
    "question_en": "What was Gongbo's title?",
    "question_th": "กงโบมีชื่อว่าอะไร?",
    "context": "CREATE TABLE table_name_37 (title VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT state FROM table_name_49 WHERE name = \"yi\"",
    "question_en": "What is the name of Yi's state?",
    "question_th": "รัฐของยี่ชื่ออะไร?",
    "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_en": "What is the Devices per channel where the Name is sata revision 3.0?",
    "question_th": "อุปกรณ์ต่อแชนเนลที่มีชื่อเป็น 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_en": "What is the Raw bandwidth (Mbit/s) for the SAS 300?",
    "question_th": "แบนด์วิธดิบ (Mbit/s) สำหรับ 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_en": "Name the Away team score which has an Away team of st kilda, and a Crowd of 8157?",
    "question_th": "ตั้งชื่อคะแนนทีมเยือนซึ่งมีทีมเยือนเซนต์คิลดาและฝูงชนที่ 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_en": "Name the Away team which have a Ground of colonial stadium on friday, 2 march?",
    "question_th": "ตั้งชื่อทีมเยือนที่มีสนามโคโลเนียล สเตเดี้ยม วันศุกร์ที่ 2 มีนาคม ?",
    "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_en": "Which team has 71 Points and F/Laps of 4?",
    "question_th": "ทีมใดมี 71 แต้มและ F/รอบ 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_en": "What Poles do Team jva have?",
    "question_th": "Team jva มีเสาอะไรบ้าง?",
    "context": "CREATE TABLE table_name_2 (poles VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_name_64 WHERE races = \"11\" AND season > 2008",
    "question_en": "If the Season is later than 2008 and Races is 11, what ate the Points?",
    "question_th": "หากฤดูกาลเกิดช้ากว่าปี 2008 และการแข่งขันคือ 11 แต้ม อะไรกินคะแนน",
    "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_en": "What Position is Team Sahara Force india f1 team with 46 Points?",
    "question_th": "ตำแหน่งใดของทีม Sahara Force india f1 ที่มีคะแนน 46?",
    "context": "CREATE TABLE table_name_38 (position VARCHAR, team VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT poles FROM table_name_63 WHERE position = \"4th\"",
    "question_en": "Which Poles have a position of 4th?",
    "question_th": "โพลใดได้อันดับ 4?",
    "context": "CREATE TABLE table_name_63 (poles VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT f_laps FROM table_name_77 WHERE points = \"27\"",
    "question_en": "Which F/Laps have 27 Points?",
    "question_th": "F/Laps ใดมี 27 แต้ม?",
    "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_en": "What country has the SBA Towers Tower Hayneville?",
    "question_th": "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_en": "What type of structure is there at the American Tower Christmas?",
    "question_th": "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_en": "What's the name of the structure at Egypt, Arkansas?",
    "question_th": "โครงสร้างที่อียิปต์ อาร์คันซอ ชื่อว่าอะไร",
    "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_en": "What country was the woman from who was born 1976-07-23 and became a grandmaster in 1991?",
    "question_th": "ผู้หญิงคนนี้มาจากประเทศใดที่เกิดในปี 2519-07-23 และกลายเป็นปรมาจารย์ในปี 2534",
    "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ño\" AND wins > 1",
    "question_en": "Name the Points which has a Team of sportivo luqueño, and Wins larger than 1?",
    "question_th": "ตั้งชื่อคะแนนที่มีทีม sportivo luqueño และชนะมากกว่า 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_en": "Name the Wins which has Points smaller than 10, Losses smaller than 3, and a Scored of 11?",
    "question_th": "ตั้งชื่อชัยชนะซึ่งมีคะแนนน้อยกว่า 10 แพ้น้อยกว่า 3 และได้คะแนน 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_en": "Please name the highest Conceded which has a Played smaller than 5?",
    "question_th": "โปรดระบุชื่อที่ยอมรับสูงสุดซึ่งมีการเล่นน้อยกว่า 5 หรือไม่?",
    "context": "CREATE TABLE table_name_4 (conceded INTEGER, played INTEGER)"
  },
  {
    "answer": "SELECT MAX(losses) FROM table_name_57 WHERE played < 5",
    "question_en": "Please name the Losses that has a Played smaller than 5?",
    "question_th": "กรุณาตั้งชื่อการสูญเสียที่มีการเล่นน้อยกว่า 5?",
    "context": "CREATE TABLE table_name_57 (losses INTEGER, played INTEGER)"
  },
  {
    "answer": "SELECT COUNT(scored) FROM table_name_28 WHERE position > 6",
    "question_en": "Name the Scored which has a Position larger than 6?",
    "question_th": "ตั้งชื่อ Scored ซึ่งมีตำแหน่งมากกว่า 6 หรือไม่?",
    "context": "CREATE TABLE table_name_28 (scored VARCHAR, position INTEGER)"
  },
  {
    "answer": "SELECT MIN(week) FROM table_name_15 WHERE opponent = \"cincinnati bengals\"",
    "question_en": "What is the earliest week with an opponent of cincinnati bengals?",
    "question_th": "สัปดาห์แรกสุดกับคู่ต่อสู้ของเบงกอลซินซินเนติคืออะไร?",
    "context": "CREATE TABLE table_name_15 (week INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT SUM(week) FROM table_name_55 WHERE date = \"october 30, 1994\"",
    "question_en": "What is the sum for the week with the date october 30, 1994?",
    "question_th": "ผลรวมของสัปดาห์ซึ่งตรงกับวันที่ 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_en": "What is the date for a week before 9, and a opponent of dallas cowboys?",
    "question_th": "หนึ่งสัปดาห์ก่อน 9 โมงจะเป็นวันอะไร และคู่ต่อสู้ของดัลลัส คาวบอยส์คือวันอะไร?",
    "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_en": "What is the biggest week with an opponent of washington redskins?",
    "question_th": "สัปดาห์ที่ยิ่งใหญ่ที่สุดกับคู่ต่อสู้ของวอชิงตัน เรดสกินส์คือสัปดาห์ใด?",
    "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_en": "What was the attendance for a week larger than 3, and an opponent of philadelphia eagles?",
    "question_th": "ผู้เข้าร่วมในหนึ่งสัปดาห์มากกว่า 3 คืออะไรและเป็นคู่ต่อสู้ของนกอินทรีฟิลาเดลเฟีย?",
    "context": "CREATE TABLE table_name_58 (attendance VARCHAR, week VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT res FROM table_name_96 WHERE opponent = \"jeff monson\"",
    "question_en": "What is the result of the match with Jeff Monson as opponent?",
    "question_th": "ผลการแข่งขันกับ เจฟฟ์ มอนสัน เป็นคู่ต่อสู้เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_96 (res VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_78 WHERE opponent = \"jason fairn\"",
    "question_en": "How many rounds was the match against Jason Fairn?",
    "question_th": "แมตช์กับ เจสัน แฟร์น แข่งกันกี่รอบ?",
    "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_en": "What is the method of the match where there was a loss to Carlos Newton in round 1?",
    "question_th": "แมทช์ไหนที่พ่าย คาร์ลอส นิวตัน ยก 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_en": "Who had the most points in games over 59?",
    "question_th": "ใครมีคะแนนมากที่สุดในเกมที่มากกว่า 59?",
    "context": "CREATE TABLE table_name_12 (high_points VARCHAR, game INTEGER)"
  },
  {
    "answer": "SELECT score FROM table_name_97 WHERE team = \"san antonio\"",
    "question_en": "What was the score for the game against San Antonio?",
    "question_th": "ในเกมกับซานอันโตนิโอมีสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_97 (score VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_name_57 WHERE team = \"indiana\"",
    "question_en": "Who had the most assists in the game against Indiana?",
    "question_th": "ใครเป็นผู้แอสซิสต์มากที่สุดในเกมกับอินเดียน่า?",
    "context": "CREATE TABLE table_name_57 (high_assists VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT railway FROM table_name_16 WHERE objectnumber = \"1975-7023\"",
    "question_en": "What is the UK Railway with an ObjectNumber of 1975-7023?",
    "question_th": "UK Railway ที่มี ObjectNumber ปี 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_en": "Who was the manager that was positioned 11th in table and resigned in departure?",
    "question_th": "ใครคือผู้จัดการทีมที่อยู่ในอันดับที่ 11 ของตารางและลาออกเมื่อออกเดินทาง?",
    "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_en": "what is the least tournaments played when the year is 1998?",
    "question_th": "ทัวร์นาเมนต์ใดที่เล่นน้อยที่สุดในปี 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_en": "what is the year when tournaments played is less than 2, cuts made is 1 and earnings ($) is less than 10,547?",
    "question_th": "ปีใดที่ทัวร์นาเมนท์เล่นน้อยกว่า 2 ตัดออก 1 และรายได้ ($) น้อยกว่า 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_en": "what is the best finish when money list rank is n/a, earnings ($) is more than 0 and cuts made is more than 1?",
    "question_th": "การจบอันดับที่ดีที่สุดคืออะไรเมื่ออันดับ Money List ไม่มี รายได้ ($) มากกว่า 0 และการตัดทอนมากกว่า 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_en": "how many times is the money list rank 221 and cuts more than 2?",
    "question_th": "รายการเงินอันดับ 221 และลดลงมากกว่า 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_en": "what is the earliest year with the best finish t-65?",
    "question_th": "ปีแรกสุดที่จบ 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_en": "what is the average tournaments played when cuts made is 14?",
    "question_th": "ทัวร์นาเมนต์เฉลี่ยที่เล่นเมื่อตัดคือ 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_en": "What is the earliest date of taking office for district 22?",
    "question_th": "เข้ารับตำแหน่งเขต 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_en": "What district has a democratic leader from Roby?",
    "question_th": "เขตใดมีผู้นำประชาธิปไตยจากโรบี้?",
    "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_en": "What is the district where Steve Carriker is the Democratic Senator and he took office later than 1988?",
    "question_th": "เขตใดที่ Steve Carriker เป็นวุฒิสมาชิกพรรคเดโมแครตและเขาเข้ารับตำแหน่งภายหลังปี 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_en": "How many series originally aired before 1999 with more than 7 episodes and a DVD Region 1 release date of 16 april 2013?",
    "question_th": "มีซีรีส์กี่เรื่องที่ออกอากาศครั้งแรกก่อนปี 1999 โดยมีมากกว่า 7 ตอน และดีวีดีภาค 1 จะออกในวันที่ 16 เมษายน 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_en": "What's the latest original air date with more than 10 episodes and a DVD Region 2 release date of 23 april 2012?",
    "question_th": "วันที่ออกอากาศต้นฉบับล่าสุดที่มีมากกว่า 10 ตอนและดีวีดีภาค 2 จะออกวันที่ 23 เมษายน 2555 คือวันที่เท่าไร",
    "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_en": "What was the original air date of series number 10?",
    "question_th": "ซีรีส์หมายเลข 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_en": "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?",
    "question_th": "ผลรวมของจำนวนตอนที่ออกอากาศครั้งแรกหลังปี 1991 โดยมีหมายเลขซีรีส์น้อยกว่า 21 และวันที่วางจำหน่าย DVD ภูมิภาค 2 ในวันที่ 26 มีนาคม 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_en": "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?",
    "question_th": "หมายเลขซีรีส์ต่ำสุดที่ออกอากาศก่อนปี 2552 โดยมีมากกว่า 7 ตอนและมีดีวีดีภาค 2 วางจำหน่ายวันที่ 26 กรกฎาคม พ.ศ. 2547 คือหมายเลขใด",
    "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_en": "What is the total of bronze that has more silvers than 2?",
    "question_th": "ทองแดงที่มีเงินมากกว่า 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_en": "What is the total of Golds with more bronzes than 1 and totaled larger than 4?",
    "question_th": "ทองคำที่มีทองแดงมากกว่า 1 และรวมกันมากกว่า 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_en": "What is the least total that had more Bronzes than 1 and more silvers than 2?",
    "question_th": "จำนวนรวมน้อยที่สุดที่มีเหรียญทองแดงมากกว่า 1 และเงินมากกว่า 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_en": "What is the least total that has fewer golds than 2, a higher rank than 4 and fewer bronzes than 1?",
    "question_th": "จำนวนรวมที่น้อยที่สุดที่มีทองคำน้อยกว่า 2, อันดับที่สูงกว่า 4 และเหรียญทองแดงน้อยกว่า 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_en": "What is the lest amount of bronzes that ranked 2 and has less silvers than 0?",
    "question_th": "เหรียญทองแดงที่ติดอันดับ 2 และมีเงินน้อยกว่า 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_en": "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?",
    "question_th": "มีทั้งหมดกี่อัน เมื่อจำนวนทองแดงมากกว่า 13 เมื่ออันดับคือ 8 และเมื่อจำนวนเงินน้อยกว่า 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_en": "What is the Nation, when the number of Bronze is less than 17, and when the number of Gold is less than 16?",
    "question_th": "ชาติคืออะไร เมื่อจำนวนทองแดงน้อยกว่า 17 และเมื่อจำนวนทองคำน้อยกว่า 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_en": "What is the highest number of Silver, when the Nation is Japan (JPN), and when the Total is greater than 37?",
    "question_th": "หมายเลขเงินสูงสุดคือเท่าไร เมื่อชาติคือญี่ปุ่น (JPN) และเมื่อยอดรวมมากกว่า 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_en": "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?",
    "question_th": "อะไรคือจำนวนทองคำต่ำสุด เมื่อจำนวนทองแดงน้อยกว่า 36 เมื่ออันดับคือ 2 และเมื่อเงินน้อยกว่า 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_en": "What is Res., when Event is \"FT 6 - Full Throttle 6\"?",
    "question_th": "Res. คืออะไร เมื่อเหตุการณ์เป็น \"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_en": "What is Opponent, when Event is \"ISCF - Southeast Championships\"?",
    "question_th": "คู่ต่อสู้คืออะไร เมื่อกิจกรรมคือ \"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_en": "What is Event, when Record is \"3-0\"?",
    "question_th": "เหตุการณ์คืออะไร เมื่อบันทึกเป็น \"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_en": "What is the date of the game against Chelsea when the league position is 14th?",
    "question_th": "เกมกับเชลซีวันที่อันดับ 14 คือวันที่เท่าไร?",
    "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_en": "Which method had a time of 0:46?",
    "question_th": "วิธีใดมีเวลา 0:46?",
    "context": "CREATE TABLE table_name_85 (method VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_91 WHERE opponent = \"brandon bledsoe\"",
    "question_en": "In the fight against Brandon Bledsoe, how many rounds did the fight last?",
    "question_th": "ในการชกกับ Brandon Bledsoe การต่อสู้กินเวลากี่ยก?",
    "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_en": "What methos did Keith Wisniewski use in the ufc fight night: teixeira vs. bader?",
    "question_th": "Keith Wisniewski ใช้วิธีการใดในคืนการต่อสู้ ufc: 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_en": "What was the maximum speed of the car with 1.556 cc capacity?",
    "question_th": "รถความจุ 1.556 ซีซี ทำความเร็วสูงสุดได้เท่าไร?",
    "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_en": "What was the maximum speed for straight-4, 1.466 cc Type r 150?",
    "question_th": "ความเร็วสูงสุดของรถตรง-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_en": "What was the maximum speed for the P4-1 (24/36 ps)?",
    "question_th": "ความเร็วสูงสุดของ 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_en": "What country is Jack Nicklaus from?",
    "question_th": "แจ็ค นิคลอส มาจากประเทศอะไร",
    "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_en": "What was the To par for bill britton when he placed t7?",
    "question_th": "To par สำหรับ bill britton คืออะไรเมื่อเขาวาง 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_en": "What was the To par of Jack Nicklaus?",
    "question_th": "To par ของ 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_en": "What country was the golfer from who had a money amount of 45,000?",
    "question_th": "นักกอล์ฟจากประเทศใดที่มีเงินจำนวน 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_en": "What was the To par for United States golfer fred couples?",
    "question_th": "อะไรคือค่าพาร์สำหรับคู่รักเฟรดของนักกอล์ฟชาวสหรัฐอเมริกา?",
    "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_en": "what is the fate when the nationality is french and the ship is pierre lott?",
    "question_th": "ชะตากรรมจะเป็นเช่นไรเมื่อสัญชาติเป็นชาวฝรั่งเศสและเรือคือปิแอร์ ลอตต์?",
    "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_en": "what is the ship with the date of 28.1.1915?",
    "question_th": "เรือวันที่ 28.1.1915 คืออะไร?",
    "context": "CREATE TABLE table_name_87 (ship VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_64 WHERE ship = \"willerby\"",
    "question_en": "what is the nationality when the ship is willerby?",
    "question_th": "เมื่อเรือวิลเลอร์บายเป็นสัญชาติอะไร?",
    "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_en": "what is the least tonnage grt when the nationality is british and the ship is kidalton?",
    "question_th": "น้ำหนักที่น้อยที่สุดคือเท่าไรเมื่อสัญชาติเป็นอังกฤษและเรือคือคิดัลตัน?",
    "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_en": "Can you tell me the Season that has the Team 2 of hanoi acb?",
    "question_th": "คุณช่วยบอกซีซั่นที่มีทีม 2 ของ 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_en": "Can you tell me the Team 2 that has the Venue of binh duong stadium, vietnam?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าทีม 2 ที่มีสนามบินห์เดือง ประเทศเวียดนาม?",
    "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_en": "Can you tell me the total number of Season that has the Team 2 of chonburi, and the Score of 0:1?",
    "question_th": "ช่วยบอกจำนวนรวมของ Season ที่มีทีม 2 ของชลบุรี และสกอร์ 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_en": "Which Score has a Place of t6, and a Player of raymond floyd?",
    "question_th": "สกอร์ไหนมีอันดับ t6 และผู้เล่นของ เรย์มอนด์ ฟลอยด์?",
    "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_en": "How much To par has a Place of t1, and a Score of 70-70-71-71=282?",
    "question_th": "To par มีอันดับ t1 เท่าไหร่ และคะแนน 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_en": "What is tony lema's to par?",
    "question_th": "โทนี่ เลมา พาร์ได้เท่าไร?",
    "context": "CREATE TABLE table_name_56 (to_par INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_25 WHERE player = \"gary player\"",
    "question_en": "What was gary player's score?",
    "question_th": "คะแนนของแกรี่เพลเยอร์คืออะไร?",
    "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_en": "What was the total number for the PIW Class' The Adventures Of... and had a score bigger than 94.6?",
    "question_th": "จำนวนรวมของ PIW Class 'The Adventures Of... คือเท่าใด และมีคะแนนมากกว่า 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_en": "What class had a score of 95.1?",
    "question_th": "ชั้นเรียนใดมีคะแนน 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_en": "What is the lowest score for a year before 2008 and had 3rd place?",
    "question_th": "คะแนนต่ำสุดในหนึ่งปีก่อนปี 2551 และได้อันดับที่ 3 คือเท่าไร?",
    "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_en": "What was the latest year placement for Taboo with a score smaller than 96.125?",
    "question_th": "ตำแหน่งปีล่าสุดสำหรับ Taboo ที่มีคะแนนน้อยกว่า 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_en": "What is the winning score before 1959, with runner-up Jackie Pung?",
    "question_th": "สกอร์ชนะก่อนปี 59 รองแชมป์ แจ็กกี้ ปุ๊ง อยู่ที่เท่าไหร่?",
    "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_en": "Which Directed by has an Original air date of april 29, 2000?",
    "question_th": "ซึ่งกำกับโดยมีกำหนดออกอากาศตอนแรกวันที่ 29 เมษายน พ.ศ. 2543?",
    "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_en": "What was the result of the game from September 10, 2000?",
    "question_th": "ผลลัพธ์ของเกมตั้งแต่วันที่ 10 กันยายน พ.ศ. 2543 คืออะไร?",
    "context": "CREATE TABLE table_name_68 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT ceremony FROM table_name_91 WHERE date = \"may 15, 1965\"",
    "question_en": "Which award ceremony took place on May 15, 1965?",
    "question_th": "พิธีมอบรางวัลใดเกิดขึ้นเมื่อวันที่ 15 พฤษภาคม 2508?",
    "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_en": "Which movie was awarded Film of the Year on May 8, 1964?",
    "question_th": "ภาพยนตร์เรื่องใดได้รับรางวัล Film of the Year เมื่อวันที่ 8 พฤษภาคม 2507?",
    "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_en": "Can you tell me the highest DCSF number that has the Name of field, and the Ofsted number larger than 117160?",
    "question_th": "คุณช่วยบอกหมายเลข DCSF สูงสุดที่มีชื่อฟิลด์และหมายเลข Ofsted มากกว่า 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_en": "Can you tell me the sum of Intake that has the Faith of rc, and the DCSF number larger than 2428?",
    "question_th": "คุณช่วยบอกผลรวมของ Intake ที่มี Faith of rc และหมายเลข DCSF มากกว่า 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_en": "Can you tell me the Name that has the DCSF number of 2117?",
    "question_th": "ช่วยบอกชื่อที่มีหมายเลข DCSF 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_en": "Can you tell me the highest Ofsted number that has the Type of infants, and the Intake larger than 60?",
    "question_th": "คุณช่วยบอกจำนวน Ofsted สูงสุดที่มีประเภทของทารกและ Intake มากกว่า 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_en": "What is the total number of Week, when Opponent is At Chicago Bears, and when Attendance is greater than 49,070?",
    "question_th": "จำนวนสัปดาห์ทั้งหมดคือเท่าใด เมื่อฝ่ายตรงข้ามอยู่ที่ Chicago Bears และเมื่อมีผู้เข้าร่วมมากกว่า 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_en": "What is Date, when Week is 11?",
    "question_th": "วันที่คืออะไร เมื่อสัปดาห์คือ 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_en": "What is the lowest Week, when Attendance is 38,624?",
    "question_th": "สัปดาห์ที่ต่ำที่สุดคือเมื่อผู้เข้าร่วมคือ 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_en": "How much international mail has a change of +35,7% later than 2008?",
    "question_th": "ไปรษณีย์ระหว่างประเทศมีการเปลี่ยนแปลง +35,7% หลังจากปี 2551 เท่าใด",
    "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_en": "What is the most domestic freight with a change of +9,8% and a total freight and mail of more than 3,278?",
    "question_th": "ค่าขนส่งภายในประเทศมากที่สุดที่มีการเปลี่ยนแปลง +9,8% และค่าขนส่งและไปรษณีย์รวมมากกว่า 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_en": "How much international freight has a change of +0,2% with more than 0 international mail?",
    "question_th": "ค่าขนส่งระหว่างประเทศมีการเปลี่ยนแปลง +0,2% ด้วยไปรษณีย์ระหว่างประเทศมากกว่า 0 เท่าใด",
    "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_en": "What is the international mail with the highest number that has a change of +0,2% and less than 0 domestic mail?",
    "question_th": "ไปรษณีย์ระหว่างประเทศที่มีจำนวนสูงสุดที่มีการเปลี่ยนแปลง +0,2% และไปรษณีย์ภายในประเทศน้อยกว่า 0 คืออะไร?",
    "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_en": "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?",
    "question_th": "ไปรษณีย์ระหว่างประเทศที่มีจำนวนน้อยที่สุดมีขนส่งภายในประเทศน้อยกว่า 72 รายการ ไปรษณีย์ภายในประเทศ 0 รายการหลังปี 2555 มียอดรวมขนส่งและไปรษณีย์มากกว่า 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_en": "what is the venue when the date is 16 january 1996?",
    "question_th": "วันที่ 16 มกราคม 2539 จัดขึ้นที่ใด?",
    "context": "CREATE TABLE table_name_99 (venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_14 WHERE date = \"16 january 1996\"",
    "question_en": "what is the competition when the date is 16 january 1996?",
    "question_th": "การแข่งขันวันที่ 16 มกราคม 2539 คืออะไร?",
    "context": "CREATE TABLE table_name_14 (competition VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_62 WHERE date = \"february 11\"",
    "question_en": "WHAT IS THE RECORD FOR FEBRUARY 11?",
    "question_th": "บันทึกสำหรับวันที่ 11 กุมภาพันธ์คืออะไร?",
    "context": "CREATE TABLE table_name_62 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT award FROM table_name_32 WHERE year < 2001",
    "question_en": "What was the award before 2001?",
    "question_th": "รางวัลก่อนปี 2544 คืออะไร?",
    "context": "CREATE TABLE table_name_32 (award VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT MAX(week) FROM table_name_66 WHERE location = \"molson stadium\"",
    "question_en": "What is the highest week for a game that was located at the Molson Stadium?",
    "question_th": "สัปดาห์สูงสุดสำหรับเกมที่สนามโมลสัน สเตเดียม คือสัปดาห์ใด?",
    "context": "CREATE TABLE table_name_66 (week INTEGER, location VARCHAR)"
  },
  {
    "answer": "SELECT AVG(week) FROM table_name_19 WHERE attendance = \"28,800\"",
    "question_en": "What is the average week number for games that had 28,800 fans in attendance?",
    "question_th": "จำนวนสัปดาห์เฉลี่ยสำหรับเกมที่มีแฟน ๆ เข้าชม 28,800 คนคือเท่าใด",
    "context": "CREATE TABLE table_name_19 (week INTEGER, attendance VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_45 WHERE attendance = \"19,423\"",
    "question_en": "Who did the argonauts play against during the game that had 19,423 fans in attendance?",
    "question_th": "อาร์โกนอทเล่นกับใครในระหว่างเกมที่มีแฟน ๆ เข้าชม 19,423 คน?",
    "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_en": "What was Juli's winning margin on Aug 24, 1986?",
    "question_th": "อัตรากำไรที่ชนะของ Juli เมื่อวันที่ 24 สิงหาคม 2529 เป็นเท่าใด",
    "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_en": "What was the margin of victory at the LPGA Championship?",
    "question_th": "ชัยชนะในการแข่งขัน 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_en": "What is the highest value for Ties, when Losses is less than 8?",
    "question_th": "ค่าสูงสุดสำหรับ Ties คือเท่าใด เมื่อ Loss น้อยกว่า 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_en": "What is the total number of Losses, when Ties is 2, and when Wins is greater than 8?",
    "question_th": "จำนวนการสูญเสียทั้งหมดเมื่อเสมอคือ 2 และเมื่อชนะมากกว่า 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_en": "What is the highest React that has a 7.61 Mark and a heat bigger than 1?",
    "question_th": "ปฏิกิริยาสูงสุดที่มี 7.61 Mark และความร้อนมากกว่า 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_en": "What is the Cause of death of the Officer with a Date of death of 1956-09-07?",
    "question_th": "สาเหตุการเสียชีวิตของนายทหารที่มีวันเสียชีวิต พ.ศ. 2499-52-50 คืออะไร",
    "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_en": "What is the Tenure of the Officer who died in a helicopter accident with Badge/Serial Number 16805?",
    "question_th": "นายทหารที่เสียชีวิตจากอุบัติเหตุเฮลิคอปเตอร์มีตรา/หมายเลขประจำเครื่อง 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_en": "What is the Badge/Serial Number of the Policeman who died in Gunfire on 1919-02-18?",
    "question_th": "ตรา/หมายเลขประจำเครื่องของตำรวจที่เสียชีวิตจากเหตุกราดยิงเมื่อวันที่ 1919-02-61 คืออะไร?",
    "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_en": "What is the Rank of the Officer with Badge/Serial Number 11755 who died in Gunfire?",
    "question_th": "นายทหารที่มีตรา/หมายเลขประจำเครื่อง 11755 ที่เสียชีวิตในเหตุการณ์ยิงปืนมียศอะไร?",
    "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_en": "What is Team, when Tries Against is 8?",
    "question_th": "ทีมคืออะไร เมื่อ Tries Against คือ 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_en": "What is Tries Against, when Tries For is 20?",
    "question_th": "Tries Against คืออะไร เมื่อ Tries For คือ 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_en": "What is Tries Against, when Points For is 98?",
    "question_th": "Tries Against คืออะไร เมื่อ Points For คือ 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_en": "What is Points Against, when Try Diff is +22?",
    "question_th": "Points Against คืออะไร เมื่อ Try Diff คือ +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_en": "What is Record, when Event is \"Independent Event\", and when Method is \"Submission (Peruvian Necktie)\"?",
    "question_th": "บันทึกคืออะไร เมื่อเหตุการณ์เป็น \"เหตุการณ์อิสระ\" และเมื่อวิธีการเป็น \"การส่ง (เนคไทเปรู)\"",
    "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_en": "What is Event, when Method is \"Submission (Armbar)\", and when Opponent is \"Jason St. Louis\"?",
    "question_th": "เหตุการณ์คืออะไร เมื่อวิธีการคือ \"การส่ง (Armbar)\" และเมื่อฝ่ายตรงข้ามคือ \"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_en": "What is Res., when Event is \"KOTC 11 - Domination\"?",
    "question_th": "Res. คืออะไร เมื่อเหตุการณ์คือ \"KOTC 11 - Domination\"?",
    "context": "CREATE TABLE table_name_81 (res VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_76 WHERE result = \"l 17–10\"",
    "question_en": "How many were in attendance with a Result of l 17–10?",
    "question_th": "มีผู้เข้าร่วมประชุมกี่คนโดยมีผลคะแนน l 17–10",
    "context": "CREATE TABLE table_name_76 (attendance VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_69 WHERE week < 5 AND result = \"bye\"",
    "question_en": "How many were in attendance in a week lower than 5 with a Bye result?",
    "question_th": "มีผู้เข้าร่วมงานกี่คนในหนึ่งสัปดาห์ที่ต่ำกว่า 5 คนและผลการแข่งขันลาก่อน",
    "context": "CREATE TABLE table_name_69 (attendance VARCHAR, week VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_54 WHERE result = \"w 26–20\"",
    "question_en": "On what date was the result w 26–20?",
    "question_th": "ผลวันที่ 26–20 คือวันที่เท่าไหร่?",
    "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_en": "Who was the opponent in a week below 14 on October 10, 1993?",
    "question_th": "คู่ต่อสู้ในหนึ่งสัปดาห์ต่ำกว่า 14 เมื่อวันที่ 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_en": "Name the average Top 5 which has a Position of 52nd with a Year smaller than 2000?",
    "question_th": "ตั้งชื่อค่าเฉลี่ย 5 อันดับแรกซึ่งมีตำแหน่งที่ 52 โดยปีที่น้อยกว่าปี 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_en": "Name the average Wins  which has a Top 10 smaller than 0?",
    "question_th": "ตั้งชื่อการชนะโดยเฉลี่ยซึ่งมี 10 อันดับแรกน้อยกว่า 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_en": "Which Points Classification does the General Classification of Cyril Dessel have?",
    "question_th": "การจำแนกประเภททั่วไปของ Cyril Dessel มีการจัดประเภทคะแนนใดบ้าง",
    "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_en": "What is the Team Classification if the Winner is Cyril Dessel?",
    "question_th": "การจัดประเภททีมจะเป็นอย่างไรหากผู้ชนะคือ 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_en": "In the final Stage with a Mountains Classification of Christophe Moreau, what is the Team Classification?",
    "question_th": "ในสเตจสุดท้ายที่มีการแบ่งประเภทภูเขาของ Christophe Moreau การแบ่งประเภททีมคืออะไร?",
    "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_en": "What is the Mountains Classification for Winner Thor hushovd with Sprints Classification of no award?",
    "question_th": "การจำแนกประเภทภูเขาสำหรับผู้ชนะ Thor hushovd ที่มีการจำแนกประเภท Sprints ที่ไม่มีรางวัลคืออะไร",
    "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é luis carrasco\"",
    "question_en": "What is the Mountains Classification for Winner josé luis carrasco?",
    "question_th": "การจำแนกประเภทเทือกเขาสำหรับผู้ชนะ josé 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_en": "Which channel has Joel Meyers as the Play by play commentator?",
    "question_th": "ช่องใดที่มี Joel Meyers เป็นผู้วิจารณ์ Play by Play",
    "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_en": "Who is the studio host for the game that has Paul Sunderland as play by play commentator and Jack Haley as the Studio Analyst?",
    "question_th": "ใครคือสตูดิโอโฮสต์ของเกมที่มี Paul Sunderland เป็นผู้บรรยายบทละคร และ Jack Haley เป็นนักวิเคราะห์ของ Studio",
    "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_en": "Who is the studio host for the game broadcasted by Fox Sports Net west and has Chick Hearn as the play by play commentator ?",
    "question_th": "ใครเป็นพิธีกรสตูดิโอสำหรับเกมที่ออกอากาศโดย Fox Sports Net ทางตะวันตก และมี Chick Hearn เป็นผู้บรรยายบทละคร ?",
    "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_en": "Who is the play by play commentator for the game that has Alan Massengale as Studio Host?",
    "question_th": "ใครคือผู้บรรยายการเล่นต่อเกมซึ่งมี Alan Massengale เป็นโฮสต์ของสตูดิโอ",
    "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_en": "which channel will have play by play commentator Paul Sunderland, Studio Host Bill Macdonald and Studi Analysty Jack Haley?",
    "question_th": "ช่องไหนจะเล่นโดยผู้วิจารณ์ละคร Paul Sunderland, Studio Host Bill Macdonald และ 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_en": "How many Assists have a Club of adler mannheim, and Points larger than 57?",
    "question_th": "มีกี่แอสซิสต์ที่มีคลับของแอดเลอร์ มานน์ไฮม์ และแต้มมากกว่า 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_en": "How many points have 41 assists?",
    "question_th": "41 แอสซิสต์ได้กี่แต้ม?",
    "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_en": "Which Goals have a Player of david mcllwain, and Games larger than 52?",
    "question_th": "ประตูใดที่มีผู้เล่นของ David Mcllwain และเกมที่มากกว่า 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_en": "Which Platform is the one that has a Stop number of 99014?",
    "question_th": "แพลตฟอร์มใดคือแพลตฟอร์มที่มีหมายเลข Stop 99014?",
    "context": "CREATE TABLE table_name_28 (platform VARCHAR, stop_no VARCHAR)"
  },
  {
    "answer": "SELECT line FROM table_name_62 WHERE platform = \"3\"",
    "question_en": "Which Line has a Platform of 3?",
    "question_th": "สายใดมีแพลตฟอร์ม 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_en": "Which Destination has a Stopping pattern of [2777] mciver station platforms?",
    "question_th": "ปลายทางใดมีรูปแบบการหยุดของชานชาลาสถานี mciver [2777]",
    "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_en": "Which Stop # has a Platform of [2777] mciver station platforms?",
    "question_th": "Stop # ใดมี Platform ของ [2777] ชานชาลาสถานี mciver?",
    "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_en": "Which Line has a Stopping pattern of all stations, A, b, p?",
    "question_th": "สายใดมีรูปแบบการหยุดทุกสถานี 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_en": "Which Stopping pattern has a Platform of [2777] mciver station platforms?",
    "question_th": "รูปแบบการหยุดใดมีแพลตฟอร์มของ [2777] แพลตฟอร์มสถานี mciver",
    "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_en": "Who was runner-up at Berlin when the result was 2-0 with 100,000 fans in attendance?",
    "question_th": "ใครได้รองแชมป์ที่เบอร์ลินเมื่อผลการแข่งขันคือ 2-0 โดยมีแฟนๆ เข้าชม 100,000 คน?",
    "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_en": "Who was the champion at berlin when the result was 2-0 with 100,000 fans in attendance?",
    "question_th": "ใครคือแชมป์ที่เบอร์ลินเมื่อผลสกอร์ 2-0 โดยมีแฟนบอลเข้าชม 100,000 คน?",
    "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_en": "What year had an attendance of 90,000?",
    "question_th": "ปีใดมีผู้เข้าร่วม 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_en": "What is the sum of the years where the attendance was 95,000 and the runner-up was dresdner sc?",
    "question_th": "ผลรวมของปีที่ผู้เข้าร่วม 95,000 คน และรองชนะเลิศคือ 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_en": "Who was the champion when the attendance was 70,000?",
    "question_th": "ใครเป็นแชมป์เมื่อมีผู้เข้าร่วม 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_en": "What is the Height (ft) of the Churchill House with a Height (m) less than 59?",
    "question_th": "ความสูง (ฟุต) ของบ้านเชอร์ชิลล์ที่มีความสูง (ม.) น้อยกว่า 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_en": "Total for 1994, 1997 years won?",
    "question_th": "รวมสำหรับปี 1994, 1997 ชนะ?",
    "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_en": "Player than won in 2003?",
    "question_th": "ผู้เล่นที่ชนะในปี 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_en": "Average total for jim furyk?",
    "question_th": "ยอดรวมเฉลี่ยของ 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_en": "Which record had a visitor of New Jersey Devils on May 7?",
    "question_th": "บันทึกใดที่มีผู้มาเยือนนิวเจอร์ซีย์เดวิลส์ในวันที่ 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_en": "What was the record on May 8?",
    "question_th": "บันทึกเมื่อวันที่ 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_en": "What is Nelspruit's population?",
    "question_th": "ประชากรของเนลสปรุตคือเท่าไร?",
    "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–0\"",
    "question_en": "Which Time has a Round of 3, and a Record of 2–0?",
    "question_th": "เวลาใดที่มีรอบ 3 และสถิติ 2–0?",
    "context": "CREATE TABLE table_name_12 (time VARCHAR, round VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT AVG(laps) FROM table_name_37 WHERE grid = 11",
    "question_en": "What were the average laps on a grid of 11?",
    "question_th": "รอบเฉลี่ยบนตาราง 11 คือเท่าไร?",
    "context": "CREATE TABLE table_name_37 (laps INTEGER, grid VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_34 WHERE record = \"50-19\"",
    "question_en": "Where is the location with a record of 50-19?",
    "question_th": "ตำแหน่งที่มีสถิติ 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_en": "Which game had a record of 45-16?",
    "question_th": "เกมไหนมีสถิติ 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_en": "Which game is located in Boston Garden and has a record of 49-17?",
    "question_th": "เกมใดอยู่ในบอสตัน การ์เดน และมีสถิติ 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_en": "What is the largest 1st LBSC number with a LBSC Name of northcote?",
    "question_th": "หมายเลข LBSC ตัวแรกที่ใหญ่ที่สุดที่มีชื่อ LBSC ของ northcote คืออะไร?",
    "context": "CREATE TABLE table_name_23 (lbsc_name VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_17 WHERE round = 34",
    "question_en": "What is the result when the round shows 34?",
    "question_th": "ผลออกมาเป็นไงเมื่อรอบโชว์ 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_en": "What is the venue when Woking was the opponent, and the round was less than 29?",
    "question_th": "สนามไหนที่วอคกิ้งเป็นคู่ต่อสู้และรอบน้อยกว่า 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_en": "What is the round number when the opponent was Wrexham, and the venue shows as Away?",
    "question_th": "หมายเลขรอบเมื่อคู่ต่อสู้คือเร็กซ์แฮมคืออะไร และสถานที่แสดงเป็นทีมเยือน?",
    "context": "CREATE TABLE table_name_19 (round VARCHAR, opponent VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT MIN(position) FROM table_name_12 WHERE name = \"esv türkheim\" AND drawn > 0",
    "question_en": "what is the lowest position when the name is esv türkheim, and Drawn more than 0?",
    "question_th": "ตำแหน่งต่ำสุดคืออะไรเมื่อชื่อ esv türkheim และถูกดึงมากกว่า 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_en": "what is the highest drawn when played is more than 14?",
    "question_th": "แต้มสูงสุดเมื่อเล่นเกิน 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_en": "what is the least drawn when the name is sv apfeldorf and the position is more than 8?",
    "question_th": "อะไรจะดึงดูดน้อยที่สุดเมื่อชื่อ sv apfeldorf และตำแหน่งมากกว่า 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_en": "who is the winner when the team is mobil 1 racing?",
    "question_th": "ใครเป็นผู้ชนะเมื่อทีมโมบิล 1 เรซซิ่ง?",
    "context": "CREATE TABLE table_name_31 (winner VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT circuit FROM table_name_60 WHERE date = \"16 april\"",
    "question_en": "what is the circuit when the date is 16 april?",
    "question_th": "วันที่ 16 เมษายน วงจรอะไรคะ?",
    "context": "CREATE TABLE table_name_60 (circuit VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT circuit FROM table_name_94 WHERE date = \"4 june\"",
    "question_en": "what is the circuit when the date is 4 june?",
    "question_th": "วันที่ 4 มิถุนายนจะเป็นวงจรอะไร?",
    "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_en": "what is the race title when the winner is dick johnson and the circuit is sandown raceway?",
    "question_th": "ชื่อการแข่งขันจะเป็นอย่างไรเมื่อผู้ชนะคือ Dick Johnson และสนามแข่งคือ 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_en": "On what date was the game 1 played at Portland?",
    "question_th": "เกมที่ 1 เล่นที่พอร์ตแลนด์วันไหน?",
    "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_en": "Who was the road team on May 2?",
    "question_th": "ทีมโร้ดเมื่อวันที่ 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_en": "Who was the road team on May 2?",
    "question_th": "ทีมโร้ดเมื่อวันที่ 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_en": "On what date did Portland play game 5 at home?",
    "question_th": "พอร์ตแลนด์เล่นเกม 5 ที่บ้านวันไหน?",
    "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_en": "Which game of the season was played on April 22?",
    "question_th": "เกมใดของฤดูกาลที่เล่นในวันที่ 22 เมษายน?",
    "context": "CREATE TABLE table_name_5 (game VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(round) FROM table_name_26 WHERE opponent = \"masutatsu yano\"",
    "question_en": "What is the highest round a fight lasted against masutatsu yano?",
    "question_th": "รอบสูงสุดที่ต่อสู้กับมาสุทัตสึ ยาโนะคือรอบใด?",
    "context": "CREATE TABLE table_name_26 (round INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT method FROM table_name_31 WHERE record = \"0-1\"",
    "question_en": "What was the method of resolution when Katsuhisa Fujii's record was 0-1?",
    "question_th": "วิธีการแก้ไขเมื่อคัตสึฮิสะ ฟูจิอิ ทำได้ 0-1?",
    "context": "CREATE TABLE table_name_31 (method VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT jersey_number_s_ FROM table_name_54 WHERE years = \"1986 – 1991 1997 – 1999\"",
    "question_en": "What is the jersey number of the player from years 1986 – 1991 1997 – 1999?",
    "question_th": "หมายเลขเสื้อของผู้เล่นตั้งแต่ปี 1986 – 1991 1997 – 1999 คืออะไร?",
    "context": "CREATE TABLE table_name_54 (jersey_number_s_ VARCHAR, years VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_57 WHERE years = \"1986 – 1991 1997 – 1999\"",
    "question_en": "What position was played by the player during 1986 – 1991 1997 – 1999?",
    "question_th": "นักเตะเล่นตำแหน่งใดระหว่างปี 1986 – 1991 1997 – 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_en": "During what years was the Jersey Numbers 34, 30 played?",
    "question_th": "Jersey Numbers 34, 30 เล่นในช่วงปีใด?",
    "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_en": "What is Record, when Opponent is San Francisco Warriors?",
    "question_th": "Record คืออะไร เมื่อฝ่ายตรงข้ามคือ 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_en": "What is H/A/N, when Date is October 31?",
    "question_th": "H/A/N คืออะไร เมื่อเป็นวันที่ 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_en": "What is Score, when Opponent is Atlanta Hawks?",
    "question_th": "Score คืออะไร เมื่อฝ่ายตรงข้ามคือ 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_en": "What is H/A/N, when Record is 2-5?",
    "question_th": "H/A/N คืออะไร เมื่อบันทึกเป็น 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_en": "What is Record, when Date is October 31?",
    "question_th": "Record คืออะไร เมื่อเป็นวันที่ 31 ตุลาคม",
    "context": "CREATE TABLE table_name_37 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_42 WHERE h_a_n = \"n\"",
    "question_en": "What is Record, when H/A/N is n?",
    "question_th": "Record คืออะไร เมื่อ H/A/N เป็น 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_en": "What was the guage of the concessionaire ferrosur roca?",
    "question_th": "อะไรคือเกจของผู้รับสัมปทาน 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_en": "What is the takeover date of the FA division mitre?",
    "question_th": "MItre แผนก FA จะเข้าเทคโอเวอร์เมื่อใด?",
    "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_en": "What date was the tournament in Indian Wells?",
    "question_th": "การแข่งขันที่ 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_en": "Who was the opponent in the math that was played in Nice on a clay court?",
    "question_th": "คู่ต่อสู้ในวิชาคณิตศาสตร์ที่เล่นในเมืองนีซบนสนามดินคือใคร?",
    "context": "CREATE TABLE table_name_23 (opponent VARCHAR, surface VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_70 WHERE opponent = \"sergi bruguera\"",
    "question_en": "What was the score in the match against Sergi Bruguera?",
    "question_th": "แมตช์ที่เจอกับแซร์กี้ บรูเกร่าทำได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_70 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_5 WHERE tournament = \"wellington\"",
    "question_en": "What was the score of the tournament in Wellington?",
    "question_th": "การแข่งขันที่เวลลิงตันทำคะแนนได้เท่าไหร่?",
    "context": "CREATE TABLE table_name_5 (score VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT race_name FROM table_name_10 WHERE round = 6",
    "question_en": "Which race was in round 6?",
    "question_th": "การแข่งขันรอบที่ 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_en": "Which round did jonathan bomarito win?",
    "question_th": "โจนาธาน โบมาริโต ชนะรอบไหน?",
    "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_en": "What race did the team Mi-Jack Conquest racing win with a pole position of andreas wirth?",
    "question_th": "การแข่งขันของทีม Mi-Jack Conquest ชนะด้วยตำแหน่งโพลโพซิชั่นของ Andreas With?",
    "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_en": "What race after round 6 did Graham Rahal win with a pole position of graham rahal?",
    "question_th": "การแข่งขันใดหลังจากรอบที่ 6 ที่ Graham Rahal ชนะด้วยตำแหน่งโพลโพสิชั่นของ 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_en": "What pole position did 2006 gehl championship finale have?",
    "question_th": "ตอนจบการแข่งขันชิงแชมป์ Gehl ปี 2549 มีตำแหน่งโพลโพสิชั่นอะไร?",
    "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_en": "who is the player when the place is t5 and the score is 69-74=143?",
    "question_th": "ผู้เล่นคนไหนเมื่ออันดับ t5 และคะแนน 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_en": "what is the score when the country is united states, the to par is +2 and the player is phil hancock?",
    "question_th": "คะแนนเมื่อประเทศเป็นสหรัฐอเมริกา, พาร์คือ +2 และผู้เล่นคือ ฟิล แฮนค็อก?",
    "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_en": "what is the place for gary player?",
    "question_th": "แกรี่ เพลเยอร์มีที่ไหนบ้าง?",
    "context": "CREATE TABLE table_name_98 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_48 WHERE score = 70 - 72 = 142",
    "question_en": "what is the place when the score is 70-72=142?",
    "question_th": "คะแนน 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_en": "what is the place when the score is 70-70=140?",
    "question_th": "คะแนน 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_en": "who is the player when the country is united states and the score is 71-73=144?",
    "question_th": "ใครคือผู้เล่นเมื่อประเทศเป็นสหรัฐอเมริกาและคะแนนคือ 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_en": "What school or team is in a round below 5 with a pick of 2?",
    "question_th": "โรงเรียนหรือทีมใดที่อยู่ในรอบต่ำกว่า 5 โดยเลือกได้ 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_en": "Who is the player with a pick less than 234 and a quarterback position?",
    "question_th": "ใครคือผู้เล่นที่มีตัวเลือกน้อยกว่า 234 และตำแหน่งกองหลัง?",
    "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_en": "Who is the player in tight end position in a round below 12 that has a pick greater than 17?",
    "question_th": "ใครคือผู้เล่นที่อยู่ในตำแหน่งท้ายสุดในรอบที่ต่ำกว่า 12 ที่มีตัวเลือกมากกว่า 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_en": "How many picks does Auburn have?",
    "question_th": "ออเบิร์นมีกี่ตัวเลือก?",
    "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_en": "What is the career for 2007 3r, and 1999 1r?",
    "question_th": "อาชีพในปี 2550 3r และ 1999 1r คืออะไร?",
    "context": "CREATE TABLE table_name_80 (career VARCHAR)"
  },
  {
    "answer": "SELECT career FROM table_name_70 WHERE 2006 = \"3r\" AND 1999 = \"2r\"",
    "question_en": "What is the career for the 2006 3r, and the 1999 2r?",
    "question_th": "อาชีพของ 2006 3r และ 1999 2r คืออะไร?",
    "context": "CREATE TABLE table_name_70 (career VARCHAR)"
  },
  {
    "answer": "SELECT 2009 FROM table_name_64 WHERE 2003 = \"2r\" AND 2000 = \"2r\"",
    "question_en": "Who in 2009, has a 2003 2r and a 2000 2r?",
    "question_th": "ใครในปี 2009 มี 2003 2r และ 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_en": "What is Result/Score, when Year is greater than 2005, and when Opponent is #8 Arkansas #1 Memphis?",
    "question_th": "ผลลัพธ์/คะแนนคืออะไร เมื่อปีมากกว่าปี 2005 และเมื่อฝ่ายตรงข้ามคือ #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_en": "What is the highest Year, when Opponent is #2 Syracuse?",
    "question_th": "ปีสูงสุดคือปีใด เมื่อฝ่ายตรงข้ามคือ #2 Syracuse?",
    "context": "CREATE TABLE table_name_52 (year INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_92 WHERE year = 1987",
    "question_en": "What is Round when Year is 1987?",
    "question_th": "อะไรคือ Round เมื่อถึงปี 1987?",
    "context": "CREATE TABLE table_name_92 (round VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT SUM(year) FROM table_name_40 WHERE opponent = \"#3 uconn\"",
    "question_en": "What is the sum of Year, when Opponent is #3 UCONN?",
    "question_th": "ผลรวมของปีเป็นเท่าใด เมื่อฝ่ายตรงข้ามคือ #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_en": "What's the longitude named zipaltonal fluctus in 1997 with a diameter smaller than 490?",
    "question_th": "ลองจิจูดชื่อ zipaltonal fluctus ในปี 1997 ที่มีเส้นผ่านศูนย์กลางเล็กกว่า 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_en": "What's the diameter of kaiwan fluctus?",
    "question_th": "ไควาน ฟลุคตัส เส้นผ่านศูนย์กลางเท่าไหร่คะ?",
    "context": "CREATE TABLE table_name_30 (diameter__km_ VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_name_5 WHERE opponent = \"chicago black hawks\"",
    "question_en": "In what game did the New York Rangers play against the Chicago Black Hawks?",
    "question_th": "New York Rangers พบกับ 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_en": "WHAT IS THE SCORE FOR GREG NORMAN?",
    "question_th": "คะแนนของเกร็ก นอร์แมนคืออะไร?",
    "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_en": "WHAT IS THE PLAYER WITH A TO PAR OF E, AND SCORE OF 68-72=140?",
    "question_th": "ผู้เล่นที่มีค่าพาร์ E และคะแนน 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_en": "WHAT IS THE TO PAR WITH T5 PLACE, AND PLAYER MARK MCCUMBER?",
    "question_th": "อะไรคือสิ่งที่เทียบเท่ากับอันดับ T5 และผู้เล่น MARK MCUMBER?",
    "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–1.7 v\" AND mult = \"4.5×\" AND socket = \"slot 1\"",
    "question_en": "When was the microprocessor with 1.65–1.7 v, a mult of 4.5×, and a slot 1 socket released?",
    "question_th": "ไมโครโปรเซสเซอร์ที่มี 1.65–1.7 v, หลาย 4.5 × และซ็อกเก็ตสล็อต 1 เปิดตัวเมื่อใด",
    "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_en": "What is the voltage of the Pentiumiii866 microprocessor with a socket 370?",
    "question_th": "แรงดันไฟฟ้าของไมโครโปรเซสเซอร์ Pentiumiii866 พร้อมซ็อกเก็ต 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_en": "What kind of socket is on the microprocessor with a part number of 80526pz533256?",
    "question_th": "ซ็อกเก็ตชนิดใดบนไมโครโปรเซสเซอร์ที่มีหมายเลขชิ้นส่วน 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_en": "What is the Date of the match with Opponent in the final Kenneth Carlsen?",
    "question_th": "แมตช์กับฝ่ายตรงข้ามในรอบสุดท้ายคือวันที่เท่าไร เคนเนธ คาร์ลเซ่น?",
    "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–3, 6–3, 2–6, 6–4\"",
    "question_en": "What is the Date of the match with a Score in the final of 6–3, 6–3, 2–6, 6–4?",
    "question_th": "วันที่แข่งขันโดยมีสกอร์ในรอบชิงชนะเลิศ 6–3, 6–3, 2–6, 6–4 คือวันที่ใด?",
    "context": "CREATE TABLE table_name_9 (date VARCHAR, score_in_the_final VARCHAR)"
  },
  {
    "answer": "SELECT lost FROM table_name_39 WHERE draw < 2",
    "question_en": "How many games did they lose when they tied less than 2 games?",
    "question_th": "พวกเขาแพ้ไปกี่เกมเมื่อเสมอกันน้อยกว่า 2 เกม?",
    "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_en": "What is the least ties when they played less than 14 games, and a lost less than 8 of them?",
    "question_th": "อะไรคือความสัมพันธ์ที่น้อยที่สุดเมื่อพวกเขาเล่นน้อยกว่า 14 เกม และแพ้น้อยกว่า 8 เกม?",
    "context": "CREATE TABLE table_name_7 (draw INTEGER, played VARCHAR, lost VARCHAR)"
  },
  {
    "answer": "SELECT MIN(played) FROM table_name_92 WHERE draw > 7",
    "question_en": "What is the lowest number of games played where they tied more than 7 of them?",
    "question_th": "จำนวนเกมที่เล่นน้อยที่สุดโดยเสมอกันมากกว่า 7 เกมคือเท่าไร?",
    "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_en": "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?",
    "question_th": "สูงสุดกับที่พวกเขาแพ้น้อยกว่า 20 เกม เสมอมากกว่า 2 เกม และพวกเขาได้เปรียบน้อยกว่า 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_en": "WHAT IS THE SCORE FOR 2010 fifa world cup qualification?",
    "question_th": "คะแนนสำหรับฟุตบอลโลก 2010 รอบคัดเลือกคืออะไร?",
    "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_en": "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?",
    "question_th": "ปีล่าสุดคือราฟาเอล นาดาลในเฟรนช์โอเพ่น, โรเจอร์ เฟเดอเรอร์ในวิมเบิลดัน และโรเจอร์ เฟเดอเรอร์ในออสเตรเลียนโอเพ่น",
    "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_en": "What is the total number of years Andy Murray was at Wimbledon?",
    "question_th": "Andy Murray อยู่ที่วิมเบิลดันทั้งหมดกี่ปี?",
    "context": "CREATE TABLE table_name_27 (year VARCHAR, wimbledon VARCHAR)"
  },
  {
    "answer": "SELECT australian_open FROM table_name_71 WHERE year = 2010",
    "question_en": "What is the Australian open in 2010?",
    "question_th": "Australian Open ในปี 2010 คืออะไร?",
    "context": "CREATE TABLE table_name_71 (australian_open VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT MAX(loss) FROM table_name_1 WHERE long > 61",
    "question_en": "What is the highest loss with a long more than 61?",
    "question_th": "ขาดทุนสูงสุดด้วย long มากกว่า 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_en": "What is the long with a loss lower than 133 and more than 0 gain with an avg/G of 29.8?",
    "question_th": "อะไรคือระยะเวลาที่ขาดทุนต่ำกว่า 133 และมากกว่า 0 เพิ่มขึ้นโดยมีค่าเฉลี่ย/G เท่ากับ 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_en": "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?",
    "question_th": "ค่า long ต่ำสุดที่มี avg/G มากกว่า -2.2 และค่ารวมและกำไรมากกว่า 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_en": "What is the network brand name of the company vodafone group in Germany?",
    "question_th": "ชื่อแบรนด์เครือข่ายของบริษัท vodafone group ในเยอรมนีคืออะไร?",
    "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_en": "What is the accreditation level of the network brand Movistar?",
    "question_th": "ระดับการรับรองของแบรนด์เครือข่าย 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_en": "What date was Movistar accredited?",
    "question_th": "Movistar ได้รับการรับรองเมื่อใด",
    "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_en": "What is the accreditation type of Vodacom Group PTY LTD (Vodafone group)?",
    "question_th": "การรับรองประเภทใดของ 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_en": "What is Deutsche Telekom's accreditation type?",
    "question_th": "ประเภทการรับรองของ Deutsche Telekom คืออะไร",
    "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_en": "What was the Location and Attendance of Game 6?",
    "question_th": "สถานที่และการเข้าร่วมของเกมที่ 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_en": "What inclination has a semimajor axis of 20 au?",
    "question_th": "ความเอียงใดมีแกนกึ่งเอกเท่ากับ 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_en": "What is the eccentricity when the semimajor axis is 20 au?",
    "question_th": "ความเยื้องศูนย์เมื่อแกนครึ่งเอกคือ 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_en": "What is Score, when Team is \"Indiana\"?",
    "question_th": "Score คืออะไร เมื่อทีมคือ \"Indiana\"?",
    "context": "CREATE TABLE table_name_7 (score VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_48 WHERE game = 8",
    "question_en": "What is Date, when Game is \"8\"?",
    "question_th": "วันที่คืออะไร เมื่อเกมเป็น \"8\"?",
    "context": "CREATE TABLE table_name_48 (date VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_name_18 WHERE date = \"november 1\"",
    "question_en": "What is High Assists, when Date is \"November 1\"?",
    "question_th": "High Assists คืออะไร เมื่อเป็นวันที่ \"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_en": "Who was the winner on a hard surface on the week of November 13?",
    "question_th": "ใครคือผู้ชนะบนพื้นแข็งในสัปดาห์ที่ 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_en": "Which player had a conference of PAC-10 and position of G?",
    "question_th": "ผู้เล่นคนไหนมีการประชุม PAC-10 และตำแหน่ง 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_en": "Which player had a position of OL from Ohio State?",
    "question_th": "ผู้เล่นคนไหนมีตำแหน่ง OL จากรัฐโอไฮโอ?",
    "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_en": "Which player had a position of QB for Texas Tech?",
    "question_th": "ผู้เล่นคนไหนมีตำแหน่ง QB สำหรับ 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_en": "Can you tell me the Opponent that has the Round of 3?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าฝ่ายตรงข้ามที่มีรอบ 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_en": "What is the main use for the structure listed in walker city, iowa?",
    "question_th": "การใช้งานหลักสำหรับโครงสร้างที่ระบุไว้ในวอล์คเกอร์ซิตี้ รัฐไอโอวาคืออะไร?",
    "context": "CREATE TABLE table_name_25 (main_use VARCHAR, town VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_16 WHERE town = \"greensboro, north carolina\"",
    "question_en": "What year was the structure in greensboro, north carolina considered tallest?",
    "question_th": "โครงสร้างในเมืองกรีนสโบโร รัฐนอร์ทแคโรไลนา ถือว่าสูงที่สุดในปีใด",
    "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_en": "What was the earliest year that a structure was located in gray court, south carolina?",
    "question_th": "ปีแรกสุดที่มีอาคารแห่งหนึ่งตั้งอยู่ในเกรย์คอร์ต เซาท์แคโรไลนา คือปีใด",
    "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_en": "What is the main use of the structure that was in redfield, arkansas before 2004?",
    "question_th": "โครงสร้างที่เคยอยู่ในเรดฟิลด์ รัฐอาร์คันซอ ก่อนปี 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_en": "How far did the pilot go when averaging 124.1km/h?",
    "question_th": "นักบินไปได้ไกลแค่ไหนโดยเฉลี่ย 124.1 กม./ชม.",
    "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_en": "What was sebastian kawa's average speed with Diana 2?",
    "question_th": "ความเร็วเฉลี่ยของ sebastian kawa กับ 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_en": "What glider did thomas gostner pilot?",
    "question_th": "Thomas Gostner นักบินเครื่องร่อนอะไร",
    "context": "CREATE TABLE table_name_84 (glider VARCHAR, pilot VARCHAR)"
  },
  {
    "answer": "SELECT run_4 FROM table_name_22 WHERE final = \"8:16.28\"",
    "question_en": "Which Run 4 has a Final of 8:16.28?",
    "question_th": "รอบที่ 4 รอบไหนเข้ารอบชิงชนะเลิศเวลา 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_en": "Which Run 4 has Athletes of hubert stevens & curtis stevens?",
    "question_th": "Run 4 คนไหนมีนักกีฬาของ 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_en": "Which Run 2 has a Rank of 4?",
    "question_th": "รอบที่ 2 ใดมีอันดับ 4",
    "context": "CREATE TABLE table_name_9 (run_2 VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT athletes FROM table_name_44 WHERE rank = \"bronze\"",
    "question_en": "Which Athletes have a Rank of bronze?",
    "question_th": "นักกีฬาคนไหนมียศเป็นเหรียญทองแดง?",
    "context": "CREATE TABLE table_name_44 (athletes VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT athletes FROM table_name_39 WHERE run_2 = \"2:21.82\"",
    "question_en": "Which Athletes have a Run 2 of 2:21.82?",
    "question_th": "นักกีฬาคนไหนมีรัน 2 จาก 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_en": "Which Run 3 has a Run 1 of 2:20.10?",
    "question_th": "รัน 3 ตัวไหนมีรัน 1 จาก 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_en": "What percentage did Republish Christopher Reed receive when the lead margin was smaller than 16?",
    "question_th": "Republish Christopher Reed ได้รับกี่เปอร์เซ็นต์เมื่ออัตรากำไรขั้นต้นน้อยกว่า 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_en": "What was Democrat: Tom Harkin's percentage when the poll source was Rasmussen Reports and the lead margin was 14?",
    "question_th": "พรรคเดโมแครตคืออะไร: เปอร์เซ็นต์ของ Tom Harkin เมื่อแหล่งโพลคือ Rasmussen Reports และอัตรากำไรขั้นต้นคือ 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_en": "What were the dates administered when the lead margin was larger than 14 and the poll source was Research 2000?",
    "question_th": "เมื่อใดที่ Lead Margin มากกว่า 14 และแหล่งที่มาของการสำรวจคือ 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_en": "What is Olivier Jacque's Time/Retired?",
    "question_th": "เวลาของ Olivier Jacque/เกษียณคืออะไร?",
    "context": "CREATE TABLE table_name_43 (time_retired VARCHAR, rider VARCHAR)"
  },
  {
    "answer": "SELECT manufacturer FROM table_name_93 WHERE grid = \"11\"",
    "question_en": "Which manufacturer is grid 11?",
    "question_th": "ผู้ผลิตรายใดคือ grid 11",
    "context": "CREATE TABLE table_name_93 (manufacturer VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT manufacturer FROM table_name_13 WHERE rider = \"loris capirossi\"",
    "question_en": "Which manufacturer does Loris Capirossi ride for?",
    "question_th": "Loris Capirossi ขี่เพื่อผู้ผลิตรายใด",
    "context": "CREATE TABLE table_name_13 (manufacturer VARCHAR, rider VARCHAR)"
  },
  {
    "answer": "SELECT manufacturer FROM table_name_18 WHERE laps = \"8\"",
    "question_en": "Which manufacturer has 8 laps?",
    "question_th": "ผู้ผลิตรายใดมี 8 รอบ?",
    "context": "CREATE TABLE table_name_18 (manufacturer VARCHAR, laps VARCHAR)"
  },
  {
    "answer": "SELECT laps FROM table_name_74 WHERE grid = \"4\"",
    "question_en": "How many laps does grid 4 have?",
    "question_th": "ตารางที่ 4 มีกี่รอบ?",
    "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_en": "Which rider's manufacturer is Honda and has 28 laps and a grid of 1?",
    "question_th": "ผู้ผลิตของผู้ขับขี่รายใดคือฮอนด้าและมี 28 รอบและตารางที่ 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_en": "What is the 2006 sum with a rank 1 and more than 6758845 in 1996?",
    "question_th": "ผลรวมปี 2549 ที่มีอันดับ 1 และมากกว่า 6758845 ในปี 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_en": "What is the total number in 2006, which has an official foundation of municipality of 1918?",
    "question_th": "จำนวนรวมในปี พ.ศ. 2549 ซึ่งมีรากฐานอย่างเป็นทางการของเทศบาล พ.ศ. 2461 คือเท่าใด",
    "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_en": "What is teh average rank of the city of mashhad, which had less than 667770 in 1976?",
    "question_th": "อันดับเฉลี่ยของเมืองมัชฮัด ซึ่งมีน้อยกว่า 667770 ในปี 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_en": "What is the average rank of the province alborz, which had more than 14526 in 1956?",
    "question_th": "อันดับเฉลี่ยของจังหวัดอัลบอร์ซ ซึ่งมีมากกว่า 14526 ในปี 1956 คืออะไร?",
    "context": "CREATE TABLE table_name_95 (rank INTEGER, province VARCHAR)"
  },
  {
    "answer": "SELECT world_rank FROM table_name_81 WHERE year = 1977",
    "question_en": "Which World Rank happened in 1977?",
    "question_th": "อันดับโลกใดที่เกิดขึ้นในปี 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_en": "What is the rank for the episode that premiered on September 12, 1979?",
    "question_th": "ตอนที่ออกอากาศเมื่อวันที่ 12 กันยายน พ.ศ. 2522 อยู่ในอันดับที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_41 (rank VARCHAR, premiere VARCHAR)"
  },
  {
    "answer": "SELECT finale FROM table_name_72 WHERE premiere = \"september 22, 1976\"",
    "question_en": "What was the date of the finale for the season that premiered on September 22, 1976?",
    "question_th": "วันที่ของตอนจบของซีซันที่เปิดตัวในวันที่ 22 กันยายน พ.ศ. 2519 คือวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_72 (finale VARCHAR, premiere VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_21 WHERE premiere = \"september 13, 1978\"",
    "question_en": "What is the rank for the episode that premiered on September 13, 1978?",
    "question_th": "ตอนที่ออกอากาศเมื่อวันที่ 13 กันยายน พ.ศ. 2521 อยู่ในอันดับที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_21 (rank VARCHAR, premiere VARCHAR)"
  },
  {
    "answer": "SELECT finale FROM table_name_61 WHERE season = 3",
    "question_en": "What was the date of the finale for Season 3?",
    "question_th": "ตอนจบของซีซั่น 3 คือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_61 (finale VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT premiere FROM table_name_38 WHERE rating = \"20.9\"",
    "question_en": "What was the date of the premiere that had a 20.9 rating?",
    "question_th": "เรตติ้ง 20.9 ฉายรอบปฐมทัศน์คือวันที่เท่าไหร่?",
    "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_en": "What was Herdez Competition's total points with a grid larger than 1?",
    "question_th": "คะแนนรวมของ Herdez Competition ที่มีตารางมากกว่า 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_en": "What was the highest lap count for Walker Racing with a grid larger than 15?",
    "question_th": "จำนวนรอบสูงสุดของ Walker Racing ที่มีกริดมากกว่า 15 คืออะไร?",
    "context": "CREATE TABLE table_name_34 (laps INTEGER, team VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_9 WHERE laps = 248",
    "question_en": "Which driver had 248 laps?",
    "question_th": "นักแข่งคนไหนวิ่งได้ 248 รอบ?",
    "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_en": "What driver had a time/retired of + 10 laps and more than 6 points?",
    "question_th": "นักแข่งคนไหนมีไทม์/รีไทร์ +10 รอบ และมากกว่า 6 แต้ม?",
    "context": "CREATE TABLE table_name_80 (driver VARCHAR, time_retired VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_56 WHERE game = 61",
    "question_en": "Which Record has a Game of 61?",
    "question_th": "สถิติใดมีเกม 61?",
    "context": "CREATE TABLE table_name_56 (record VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_name_67 WHERE record = \"27–29\"",
    "question_en": "Which High points have a Record of 27–29?",
    "question_th": "คะแนนสูงสุดใดที่มีสถิติ 27–29",
    "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_en": "Which High points has a Game larger than 58, and a High rebounds of francisco elson (7)?",
    "question_th": "แต้มสูงสุดใดที่มีเกมมากกว่า 58 และฟรานซิสโกเอลสันรีบาวด์สูง (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_en": "Which Location Attendance has a Date of february 27?",
    "question_th": "การเข้าร่วมสถานที่ใดมีวันที่ 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_en": "Which Record has a High rebounds of luc mbah a moute (11)?",
    "question_th": "สถิติใดที่มีการรีบาวด์สูงของ 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–30\"",
    "question_en": "Which Game has a Record of 27–30?",
    "question_th": "เกมใดมีสถิติ 27–30",
    "context": "CREATE TABLE table_name_99 (game INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_43 WHERE score_in_final = \"5–7, 4–6\"",
    "question_en": "What Tournament had a Score in Final of 5–7, 4–6?",
    "question_th": "การแข่งขันใดมีคะแนนในรอบชิงชนะเลิศ 5–7, 4–6?",
    "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–6, 1–6\" AND surface = \"clay\"",
    "question_en": "What is the Opponents in Final in the match with a Score in Final of 4–6, 1–6 played on Clay Surface?",
    "question_th": "คู่ต่อสู้ในรอบชิงชนะเลิศคืออะไรในแมตช์ที่มีคะแนนในรอบชิงชนะเลิศ 4–6, 1–6 ที่เล่นบน 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–6, 1–6\" AND partner = \"steffi graf\"",
    "question_en": "What is the Date of the match with Partner Steffi Graf with a Score in Final of 4–6, 1–6?",
    "question_th": "วันที่ของการแข่งขันกับพาร์ทเนอร์ Steffi Graf ด้วยคะแนนในรอบชิงชนะเลิศ 4–6, 1–6 คืออะไร?",
    "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–7, 4–6\"",
    "question_en": "What is the Partner of the match with a Score in Final of 5–7, 4–6?",
    "question_th": "คู่หูของแมตช์ที่มีคะแนนในรอบชิงชนะเลิศ 5–7, 4–6 คืออะไร?",
    "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_en": "What is 2001, when 1999 is \"2R\", and when 1992 is \"3R\"?",
    "question_th": "ปี 2001 คืออะไร เมื่อปี 1999 เป็น \"2R\" และเมื่อใดคือ \"3R\"",
    "context": "CREATE TABLE table_name_12 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1990 FROM table_name_74 WHERE 1997 = \"1r\" AND tournament = \"hamburg\"",
    "question_en": "What is 1990, when 1997 is \"1R\", and when Tournament is \"Hamburg\"?",
    "question_th": "ปี 1990 คืออะไร เมื่อปี 1997 เป็น \"1R\" และเมื่อใดที่การแข่งขันคือ \"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_en": "What is 2001, when 1989 is \"A\", and when Tournament is \"U.S. Open\"?",
    "question_th": "ปี 2001 คืออะไร เมื่อปี 1989 เป็น \"A\" และเมื่อใดที่การแข่งขันเป็น \"US 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_en": "what is the goals against when the points is 43 and draws is more than 9?",
    "question_th": "ประตูต่ออะไรเมื่อแต้มคือ 43 และเสมอมากกว่า 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és cf\" AND goals_against > 60",
    "question_en": "what is the goals when the goal difference is more than -3, the club is real avilés cf and the goals against is more than 60?",
    "question_th": "อะไรคือประตูเมื่อผลต่างประตูมากกว่า -3 สโมสรคือเรอัลอาบีเลส cf และประตูที่เสียมากกว่า 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_en": "what is the least draws when the position is lower than 5, the points is 62 and played is more than 38?",
    "question_th": "เสมอน้อยที่สุดเมื่อตำแหน่งต่ำกว่า 5 แต้มคือ 62 และเล่นเกิน 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_en": "what is the played when the wins is 21 and the positions is higher than 3?",
    "question_th": "จะเล่นอะไรเมื่อชนะคือ 21 และตำแหน่งสูงกว่า 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_en": "What is the sum of Week, when Date is December 2, 2001?",
    "question_th": "ผลรวมของสัปดาห์คือวันที่ 2 ธันวาคม 2544 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_7 (week INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(week) FROM table_name_15 WHERE opponent = \"at cleveland browns\"",
    "question_en": "What is the total number of Week, when Opponent is At Cleveland Browns?",
    "question_th": "จำนวนสัปดาห์ทั้งหมดคือเท่าใดเมื่อฝ่ายตรงข้ามอยู่ที่ Cleveland Browns?",
    "context": "CREATE TABLE table_name_15 (week VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_36 WHERE icao = \"votr\"",
    "question_en": "What Country's ICAO is VOTR?",
    "question_th": "ICAO ของประเทศใดคือ VOTR",
    "context": "CREATE TABLE table_name_36 (country VARCHAR, icao VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_77 WHERE country = \"maldives\"",
    "question_en": "What is the City in the Maldives?",
    "question_th": "เมืองในมัลดีฟส์คืออะไร?",
    "context": "CREATE TABLE table_name_77 (city VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT icao FROM table_name_90 WHERE country = \"india\" AND iata = \"trz\"",
    "question_en": "What is the ICAO in India with IATA TRZ?",
    "question_th": "ICAO ในอินเดียที่มี 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_en": "What is the Airport in Singapore?",
    "question_th": "สนามบินในสิงคโปร์คืออะไร?",
    "context": "CREATE TABLE table_name_77 (airport VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT airport FROM table_name_51 WHERE iata = \"trz\"",
    "question_en": "What is the Airport with an IATA of TRZ?",
    "question_th": "สนามบินที่มี IATA ของ TRZ คืออะไร",
    "context": "CREATE TABLE table_name_51 (airport VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_88 WHERE score = \"w 87-64\"",
    "question_en": "What is the opponent of the game with a w 87-64 score?",
    "question_th": "คู่ต่อสู้ของเกมด้วยสกอร์ aw 87-64 คืออะไร?",
    "context": "CREATE TABLE table_name_88 (opponent VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_name_1 WHERE record = \"3-1\"",
    "question_en": "What is the location/attendance of the game with a 3-1 record?",
    "question_th": "สถานที่/การรับชมเกมด้วยสถิติ 3-1 คืออะไร?",
    "context": "CREATE TABLE table_name_1 (location_attendance VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_name_26 WHERE date = \"may 27\"",
    "question_en": "Who had the highest points of the game on May 27?",
    "question_th": "ใครมีแต้มสูงสุดในเกมวันที่ 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_en": "Who is the opponent on October 28, 2001?",
    "question_th": "คู่ต่อสู้ในวันที่ 28 ตุลาคม 2544 คือใคร?",
    "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_en": "What was the lowest week at Ralph Wilson Stadium on October 7, 2001?",
    "question_th": "สัปดาห์ที่ต่ำที่สุดที่ราล์ฟ วิลสัน สเตเดี้ยม เมื่อวันที่ 7 ตุลาคม พ.ศ. 2544 คือสัปดาห์ใด",
    "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_en": "What is the sum of To Par, when Player is \"Bob Rosburg\"?",
    "question_th": "ผลรวมของทูพาร์เมื่อผู้เล่นคือ \"บ๊อบ โรสเบิร์ก\" คืออะไร?",
    "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_en": "What is the total number of To Par, when Score is \"70-75-76=221\"?",
    "question_th": "จำนวนทูพาร์ทั้งหมดเป็นเท่าใด เมื่อสกอร์คือ \"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_en": "What is Player, when Score is \"76-73-73=222\"?",
    "question_th": "Player คืออะไร เมื่อคะแนนคือ \"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_en": "What is Score, when To Par is greater than 7, when Place is \"T4\", and when Player is \"Bob Rosburg\"?",
    "question_th": "คะแนนคืออะไร เมื่อทูพาร์มากกว่า 7 เมื่ออันดับคือ \"T4\" และเมื่อผู้เล่นคือ \"บ็อบ โรสเบิร์ก\"",
    "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_en": "Which transfer window ends after 2006?",
    "question_th": "หน้าต่างการโอนใดจะสิ้นสุดหลังปี 2549?",
    "context": "CREATE TABLE table_name_95 (transfer_window VARCHAR, ends INTEGER)"
  },
  {
    "answer": "SELECT transfer_fee FROM table_name_86 WHERE name = \"paolo vanoli\"",
    "question_en": "What is the transfer fee for Paolo Vanoli?",
    "question_th": "เปาโล วาโนลี ค่าตัวเท่าไหร่?",
    "context": "CREATE TABLE table_name_86 (transfer_fee VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT nat FROM table_name_9 WHERE name = \"gavin rae\"",
    "question_en": "What is the nationality of Gavin Rae?",
    "question_th": "กวิน แร สัญชาติอะไร?",
    "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_en": "How much Overall has a Position of ot, and a Round larger than 5?",
    "question_th": "โดยรวมแล้วมีตำแหน่ง ot เท่าใด และรอบที่ใหญ่กว่า 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_en": "What is the to par for Bart Bryant?",
    "question_th": "ค่าพาร์ของ 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_en": "Who scored 68-73-66=207 in South Africa?",
    "question_th": "ใครทำคะแนนได้ 68-73-66=207 ในแอฟริกาใต้",
    "context": "CREATE TABLE table_name_70 (place VARCHAR, country VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT royal_house FROM table_name_30 WHERE name = \"ding\"",
    "question_en": "Which Royal house has a name of ding?",
    "question_th": "ราชวงศ์ไหนมีชื่อติ๊ง?",
    "context": "CREATE TABLE table_name_30 (royal_house VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_99 WHERE name = \"bo qin\"",
    "question_en": "What type of state is bo qin?",
    "question_th": "ป๋อฉินเป็นรัฐประเภทใด?",
    "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_en": "What type of state has a royal house of ji and has a ruler?",
    "question_th": "รัฐใดมีราชวงศ์จี๋และมีผู้ปกครอง?",
    "context": "CREATE TABLE table_name_54 (type VARCHAR, royal_house VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_17 WHERE game = 13",
    "question_en": "what is the record when the game is 13?",
    "question_th": "บันทึกเมื่อเกมคือ 13 คืออะไร?",
    "context": "CREATE TABLE table_name_17 (record VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_name_61 WHERE date = \"november 20\"",
    "question_en": "who had the high points on november 20?",
    "question_th": "ใครมีคะแนนสูงสุดในวันที่ 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_en": "What is the Score on November 23, 1946 with Washington Capitols Home team?",
    "question_th": "คะแนนเมื่อวันที่ 23 พฤศจิกายน 2489 กับทีมเหย้าวอชิงตันแคปิตอลส์เป็นอย่างไรบ้าง?",
    "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–66\"",
    "question_en": "On what Date is the Detroit Falcons the Home team in a game with a Score of 63–66?",
    "question_th": "ทีมเหย้าของดีทรอยต์ ฟอลคอนส์ อยู่ในเกมด้วยสกอร์ 63–66 ในวันไหน?",
    "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_en": "What is the Home team on January 24, 1947?",
    "question_th": "เจ้าบ้านวันที่ 24 มกราคม พ.ศ. 2490 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_62 (home VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_38 WHERE date = \"november 16, 1946\"",
    "question_en": "What is the Home team on November 16, 1946?",
    "question_th": "เจ้าบ้านวันที่ 16 พฤศจิกายน พ.ศ. 2489 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_38 (home VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_68 WHERE date = \"february 2, 1947\"",
    "question_en": "What is the Home team on February 2, 1947?",
    "question_th": "ทีมเหย้าวันที่ 2 กุมภาพันธ์ พ.ศ. 2490 เป็นอย่างไร?",
    "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_en": "Which Laps have a Time of +23.002, and a Grid smaller than 11?",
    "question_th": "รอบใดมีเวลา +23.002 และตารางที่เล็กกว่า 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_en": "Which Laps have a Manufacturer of aprilia, and a Rider of sergio gadea?",
    "question_th": "Laps ใดที่มีผู้ผลิต aprilia และผู้ขับขี่ของ 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_en": "Which Grid that has a Rider of mike di meglio, and Laps larger than 23?",
    "question_th": "กริดคนไหนที่มีไรเดอร์ของ mike di meglio และรอบที่มากกว่า 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_en": "Which Manufacturer has a Grid smaller than 9, and a Time of +22.517?",
    "question_th": "ผู้ผลิตรายใดมีตารางกริดที่เล็กกว่า 9 และเวลา +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_en": "What is Result, when Round is SF?",
    "question_th": "ผลลัพธ์คืออะไร เมื่อรอบคือ SF?",
    "context": "CREATE TABLE table_name_57 (result VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_26 WHERE date = \"11 august 1992\"",
    "question_en": "What is Result, when Date is 11 August 1992?",
    "question_th": "ผลลัพธ์คืออะไร เมื่อวันที่ 11 สิงหาคม 2535",
    "context": "CREATE TABLE table_name_26 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_40 WHERE date = \"19 august 1992\"",
    "question_en": "What is Result, when Date is 19 August 1992?",
    "question_th": "ผลลัพธ์คืออะไร เมื่อวันที่ 19 สิงหาคม 2535",
    "context": "CREATE TABLE table_name_40 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT res FROM table_name_47 WHERE event = \"rof 32: respect\"",
    "question_en": "Did he win or lose rof 32: respect?",
    "question_th": "เขาชนะหรือแพ้ rof 32: เคารพ?",
    "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_en": "What round did he win rof 29: aftershock in?",
    "question_th": "เขาชนะ rof 29: aftershock ในรอบไหน?",
    "context": "CREATE TABLE table_name_3 (round VARCHAR, res VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_72 WHERE record = \"6-6\"",
    "question_en": "How many rounds did the match last when his record was 6-6?",
    "question_th": "แมตช์นี้ผ่านไปกี่รอบเมื่อสถิติของเขาคือ 6-6?",
    "context": "CREATE TABLE table_name_72 (round VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT method FROM table_name_37 WHERE record = \"15-11\"",
    "question_en": "How did the match end when his record was 15-11?",
    "question_th": "การแข่งขันจบลงอย่างไรเมื่อสถิติของเขาคือ 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_en": "How many laps did ben spies do on the grid less than 7?",
    "question_th": "เบ็นสายลับทำไปกี่รอบบนกริดน้อยกว่า 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_en": "which grid did less than 20 laps in a time of +58.353?",
    "question_th": "ตารางใดทำได้น้อยกว่า 20 รอบในเวลา +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_en": "what was valentino rossi's rider time?",
    "question_th": "เวลานักบิดของวาเลนติโน รอสซีคือเท่าไร?",
    "context": "CREATE TABLE table_name_97 (time VARCHAR, rider VARCHAR)"
  },
  {
    "answer": "SELECT manufacturer FROM table_name_68 WHERE rider = \"makoto tamada\"",
    "question_en": "Who manufactures Makoto Tamada's vehicle?",
    "question_th": "ใครเป็นผู้ผลิตรถยนต์ของ Makoto Tamada",
    "context": "CREATE TABLE table_name_68 (manufacturer VARCHAR, rider VARCHAR)"
  },
  {
    "answer": "SELECT time_retired FROM table_name_60 WHERE grid = 16",
    "question_en": "What is the time/retired of the one with grid of 16?",
    "question_th": "เวลา / เกษียณของรายการที่มีตาราง 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_en": "What team did gonzalo arconada manage?",
    "question_th": "กอนซาโล่ อาร์โคนาดา คุมทีมอะไร?",
    "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_en": "What team replaced their manager on 9 December 2008?",
    "question_th": "ทีมใดเข้ามาแทนที่ผู้จัดการทีมเมื่อวันที่ 9 ธันวาคม พ.ศ. 2551?",
    "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_en": "What was the date of appointment for paco chaparro's replacement?",
    "question_th": "วันที่ได้รับการแต่งตั้งเพื่อทดแทนปาโก ชาปาร์โรคือเมื่อใด?",
    "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_en": "What was the date of appointment for javier aguirre's replacement?",
    "question_th": "วันที่ได้รับการแต่งตั้งเพื่อทดแทน ฮาเวียร์ อากีร์เร่ คือเมื่อใด?",
    "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_en": "What date did Namigata play against Wen-Hsin Hsu in the finals?",
    "question_th": "นามิกาตะเล่นกับเหวินซินซูในรอบชิงชนะเลิศวันไหน?",
    "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_en": "What was the result during the week # of top 8?",
    "question_th": "ผลลัพธ์ในช่วงสัปดาห์ # ของ 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_en": "What was the theme during the week # of top 24 (12 men)",
    "question_th": "หัวข้อประจำสัปดาห์ #จาก 24 อันดับแรกคืออะไร (ชาย 12 คน)",
    "context": "CREATE TABLE table_name_73 (theme VARCHAR, week__number VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_84 WHERE week__number = \"top 11\"",
    "question_en": "What was the result after the week # top 11?",
    "question_th": "ผลลัพธ์หลังจากสัปดาห์ #11 อันดับแรกเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_84 (result VARCHAR, week__number VARCHAR)"
  },
  {
    "answer": "SELECT league FROM table_name_7 WHERE player = \"ian schultz\"",
    "question_en": "What is the league of player ian schultz?",
    "question_th": "เอียน ชูลทซ์ อยู่ในลีกอะไร?",
    "context": "CREATE TABLE table_name_7 (league VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT birthplace, _date FROM table_name_47 WHERE pick = 4",
    "question_en": "What is the birthplace and date of pick 4?",
    "question_th": "วันเกิดและวันที่เลือก 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_en": "What is the pick of player ian schultz from Canada?",
    "question_th": "เอียน ชูลท์ซ นักเตะแคนาดาจะเลือกอะไร?",
    "context": "CREATE TABLE table_name_8 (pick VARCHAR, nationality VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_21 WHERE date = \"january 7\"",
    "question_en": "Who is the Opponent on January 7?",
    "question_th": "ฝ่ายตรงข้ามในวันที่ 7 มกราคมคือใคร?",
    "context": "CREATE TABLE table_name_21 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_45 WHERE date = \"january 16\"",
    "question_en": "Who is the Opponent on January 16?",
    "question_th": "ฝ่ายตรงข้ามในวันที่ 16 มกราคมคือใคร?",
    "context": "CREATE TABLE table_name_45 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_2 WHERE opponent = \"philadelphia 76ers\"",
    "question_en": "What is the Score of the game against Philadelphia 76ers?",
    "question_th": "สกอร์ของเกมกับ ฟิลาเดลเฟีย 76เซอร์ส เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_2 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_57 WHERE record = \"15-27\"",
    "question_en": "What is the Date of the game where the Cavaliers have a Record of 15-27?",
    "question_th": "วันที่ของเกมที่ Cavaliers มีสถิติ 15-27 คืออะไร?",
    "context": "CREATE TABLE table_name_57 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_82 WHERE score = \"102-125\"",
    "question_en": "What was the Opponent in the game with a Score of 102-125?",
    "question_th": "ฝ่ายตรงข้ามในเกมด้วยคะแนน 102-125 คืออะไร?",
    "context": "CREATE TABLE table_name_82 (opponent VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_59 WHERE score = \"98-99\"",
    "question_en": "What is the Cavaliers Record in the game with a Score of 98-99?",
    "question_th": "Cavaliers Record ในเกมที่มีคะแนน 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_en": "What player has a no pick position in 1976?",
    "question_th": "นักเตะคนไหนที่ไม่มีตำแหน่งเลือกในปี 1976?",
    "context": "CREATE TABLE table_name_33 (player VARCHAR, position VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT pick FROM table_name_55 WHERE college = \"baylor\"",
    "question_en": "What pick number was the player that went to baylor college?",
    "question_th": "ผู้เล่นที่ไปเรียนที่วิทยาลัยเบย์เลอร์คือหมายเลขใด",
    "context": "CREATE TABLE table_name_55 (pick VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_23 WHERE pick = \"15\"",
    "question_en": "What year was the player pick number 15 picked?",
    "question_th": "ผู้เล่นเลือกหมายเลข 15 เมื่อปีใด",
    "context": "CREATE TABLE table_name_23 (year VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_6 WHERE date = \"september 2\"",
    "question_en": "What was the record on september 2?",
    "question_th": "บันทึกเมื่อวันที่ 2 กันยายนคืออะไร?",
    "context": "CREATE TABLE table_name_6 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_name_83 WHERE opponent = \"phoenix\"",
    "question_en": "What were phoenix's high points?",
    "question_th": "จุดสูงสุดของฟีนิกซ์คืออะไร?",
    "context": "CREATE TABLE table_name_83 (high_points VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_31 WHERE record = \"17-17\"",
    "question_en": "When was the record 17-17?",
    "question_th": "สถิติ 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_en": "What were the high points on september 9?",
    "question_th": "จุดสูงสุดในวันที่ 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_en": "How many games had a record of 16-17?",
    "question_th": "มีกี่เกมที่มีสถิติ 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_en": "How many seats does leader Raymond McCartney have?",
    "question_th": "เรย์มอนด์ แม็กคาร์ตนีย์ ผู้นำมีที่นั่งกี่ที่นั่ง?",
    "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_en": "Which leader of the Democratic Unionist party has more than 8 seats?",
    "question_th": "ผู้นำพรรคสหภาพประชาธิปไตยคนใดมีที่นั่งเกิน 8 ที่นั่ง?",
    "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_en": "Anuya Bhagvath was nominated for what award?",
    "question_th": "อนุยา ภควัต ได้รับการเสนอชื่อเข้าชิงรางวัลอะไร?",
    "context": "CREATE TABLE table_name_60 (award VARCHAR, outcome VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT award FROM table_name_11 WHERE category = \"film lyricist\"",
    "question_en": "Which award has film lyricist in the category?",
    "question_th": "รางวัลใดที่มีผู้แต่งบทภาพยนตร์อยู่ในหมวดหมู่นี้?",
    "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_en": "What is the category Anuya Bhagvath was nominated for at vijay award?",
    "question_th": "Anuya Bhagvath ได้รับการเสนอชื่อเข้าชิงรางวัลวีเจย์ประเภทใด",
    "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_en": "Which ceremony has the best lyricist category?",
    "question_th": "พิธีใดมีหมวดผู้แต่งบทเพลงที่ดีที่สุด?",
    "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_en": "Which best 3-year period has a best 15-year period of smyslov; kasparov, and a Position of 5?",
    "question_th": "ช่วง 3 ปีใดที่ดีที่สุดมีช่วง smyslov 15 ปีที่ดีที่สุด คาสปารอฟ และตำแหน่ง 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_en": "Which best 5-year period has a best 15-year period of alekhine; lasker?",
    "question_th": "ช่วง 5 ปีใดที่ดีที่สุดมีช่วง 15 ปีของอะเลไคน์ที่ดีที่สุด ลาสเกอร์?",
    "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_en": "Which best 10-year period has a best 2-year period of petrosian?",
    "question_th": "ช่วง 10 ปีที่ดีที่สุดช่วงใดมีช่วงระยะเวลา 2 ปีของ 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_en": "Which Position has a best 3-year period of petrosian?",
    "question_th": "ตำแหน่งใดมีช่วงระยะเวลา 3 ปีที่ดีที่สุดของ 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_en": "What is High Rebounds, when Score is 61-59?",
    "question_th": "High Rebounds คืออะไร เมื่อคะแนนอยู่ที่ 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_en": "What is Score, when High Rebounds is \"Nolan (10)\"?",
    "question_th": "Score คืออะไร เมื่อ High Rebounds คือ \"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_en": "What is Opponent, when High Rebounds is \"Pierson (6)\"?",
    "question_th": "คู่ต่อสู้คืออะไร เมื่อการรีบาวด์สูงคือ \"เพียร์สัน (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_en": "What is the sum of Game(s), when High Rebounds is \"Pierson (6)\"?",
    "question_th": "ผลรวมของเกมเมื่อการรีบาวด์สูงคือ \"เพียร์สัน (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_en": "How many Laps did Bob Wollek have?",
    "question_th": "Bob Wollek มีกี่รอบ?",
    "context": "CREATE TABLE table_name_5 (laps INTEGER, driver VARCHAR)"
  },
  {
    "answer": "SELECT laps FROM table_name_14 WHERE team = \"primagaz competition\"",
    "question_en": "How many Laps did Team Primagaz Competition have?",
    "question_th": "Team Primagaz Competition มีกี่รอบ?",
    "context": "CREATE TABLE table_name_14 (laps VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_46 WHERE class = \"c1\" AND laps = 40",
    "question_en": "What Team had 40 Laps in C1 Class?",
    "question_th": "ทีมใดมี 40 รอบในคลาส C1",
    "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_en": "What Team has Bob Wollek as a Driver with 76 Laps in C1 Class?",
    "question_th": "ทีมใดมี Bob Wollek เป็นนักแข่งที่มี 76 รอบในคลาส C1",
    "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_en": "How many Laps does GP Motorsport Team have?",
    "question_th": "ทีม GP Motorsport มีกี่รอบ?",
    "context": "CREATE TABLE table_name_43 (laps INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_58 WHERE score = \"w 105-99\"",
    "question_en": "what is the location when the score is w 105-99?",
    "question_th": "คะแนน 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_en": "what is the location on november 23?",
    "question_th": "วันที่ 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_en": "Name the highest Ends Lost which has an Shot % larger than 78, and a Ends Won smaller than 38?",
    "question_th": "ตั้งชื่อเอนด์แพ้สูงสุดซึ่งมี % ช็อตมากกว่า 78 และเอนด์ชนะน้อยกว่า 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_en": "Name the Country which has Stolen Ends larger than 7, and a Skip of david murdoch?",
    "question_th": "ตั้งชื่อประเทศที่มี Stolen Ends มากกว่า 7 และ 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_en": "Name the average Stolen Ends which has an Ends Lost smaller than 35?",
    "question_th": "ตั้งชื่อ Stolen Ends โดยเฉลี่ยซึ่งมี Ends Lost น้อยกว่า 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_en": "Name the average Blank Ends  which has a Shot % smaller than 78, and a Ends Won larger than 43?",
    "question_th": "ตั้งชื่อ Blank Ends โดยเฉลี่ยซึ่งมี Shot % น้อยกว่า 78 และ Ends Won มากกว่า 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_en": "What rank has skyfall as the title?",
    "question_th": "Skyfall เป็นชื่ออันดับใด?",
    "context": "CREATE TABLE table_name_35 (rank VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT director_s_ FROM table_name_67 WHERE title = \"the intouchables\"",
    "question_en": "What director(s) have the intouchables as the title?",
    "question_th": "ผู้กำกับคนไหนมีอินทัชเป็นชื่อเรื่อง?",
    "context": "CREATE TABLE table_name_67 (director_s_ VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT studio FROM table_name_32 WHERE rank = 6",
    "question_en": "What studio has 6 as the rank?",
    "question_th": "สตูดิโอไหนมีอันดับ 6 บ้าง?",
    "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_en": "How many ranks have $1,084,439,099 as the worldwide gross?",
    "question_th": "มีกี่อันดับที่มีรายได้รวมทั่วโลกอยู่ที่ 1,084,439,099 ดอลลาร์?",
    "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_en": "What is the 1981 value of the Macedonian population with a 1971 number greater than 192 and a 1991 of 1748?",
    "question_th": "มูลค่าประชากรมาซิโดเนียในปี 1981 ที่มีจำนวนปี 1971 มากกว่า 192 และปี 1991 จาก 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_en": "What is the lowest 1971 number of the Macedonian population with a 2002 value greater than 133 and a 1991 value less than 171?",
    "question_th": "อะไรคือจำนวนต่ำสุดของประชากรมาซิโดเนียในปี 1971 โดยมีค่ามากกว่า 133 ในปี 2002 และค่าในปี 1991 น้อยกว่า 171 คือเท่าใด",
    "context": "CREATE TABLE table_name_15 (number_1971 INTEGER)"
  },
  {
    "answer": "SELECT COUNT(1961) FROM table_name_47 WHERE macedonian_population_in_vojvodina = \"plandište\" AND 1981 > 1027",
    "question_en": "What is the total 1961 number of the plandište Macedonian population with a 1981 value greater than 1027?",
    "question_th": "จำนวนประชากรมาซิโดเนียplandišteในปี 1961 ทั้งหมดซึ่งมีมูลค่าในปี 1981 มากกว่า 1,027 คือเท่าใด",
    "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_en": "What is the 1961 total of the Macedonian population with a 1971 number of 3325 and a 1991 value greater than 3177?",
    "question_th": "จำนวนประชากรมาซิโดเนียทั้งหมดในปี 1961 ซึ่งมีจำนวน 3325 ในปี 1971 และในปี 1991 มีมูลค่ามากกว่า 3177 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_15 (number_1971 VARCHAR)"
  },
  {
    "answer": "SELECT airport FROM table_name_60 WHERE city = \"muscat\"",
    "question_en": "What airport is in Muscat?",
    "question_th": "มัสกัตมีสนามบินใด?",
    "context": "CREATE TABLE table_name_60 (airport VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_8 WHERE city = \"bandar abbas\"",
    "question_en": "What country is Bandar Abbas in?",
    "question_th": "บันดาร์ อับบาส อยู่ประเทศอะไร",
    "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_en": "What is the city in India with an airport named Sardar Vallabhbhai Patel International Airport?",
    "question_th": "เมืองใดในอินเดียที่มีสนามบินชื่อ สนามบินนานาชาติซาร์ดาร์ วัลลับไบ ปาเทล?",
    "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_en": "What airport is in China with an ICAO of zbaa?",
    "question_th": "สนามบินใดในจีนที่มี ICAO เป็น zbaa",
    "context": "CREATE TABLE table_name_55 (airport VARCHAR, country VARCHAR, icao VARCHAR)"
  },
  {
    "answer": "SELECT airport FROM table_name_87 WHERE city = \"toronto\"",
    "question_en": "What airport is in Toronto?",
    "question_th": "โทรอนโตมีสนามบินใด?",
    "context": "CREATE TABLE table_name_87 (airport VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_67 WHERE icao = \"ypph\"",
    "question_en": "What country has an ICAO of ypph?",
    "question_th": "ประเทศใดมี ICAO ของ 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_en": "When the mark is 8.54, the reaction time was over 0.23800000000000002 seconds, what's the highest amount of points recorded?",
    "question_th": "เมื่อเครื่องหมายคือ 8.54 เวลาตอบสนองคือมากกว่า 0.23800000000000002 วินาที จำนวนคะแนนสูงสุดที่บันทึกไว้คือเท่าใด",
    "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_en": "Which country has a reaction time of under 0.242 seconds and over 1041 points?",
    "question_th": "ประเทศใดมีเวลาตอบสนองต่ำกว่า 0.242 วินาที และเกิน 1,041 คะแนน?",
    "context": "CREATE TABLE table_name_58 (country VARCHAR, react VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT MAX(react) FROM table_name_84 WHERE points = 1008",
    "question_en": "If a country has 1008 points what's their reaction time?",
    "question_th": "หากประเทศมี 1,008 คะแนน พวกเขาจะตอบสนองเมื่อใด",
    "context": "CREATE TABLE table_name_84 (react INTEGER, points VARCHAR)"
  },
  {
    "answer": "SELECT wicket FROM table_name_85 WHERE runs = \"580\"",
    "question_en": "Which wicket had 580 runs?",
    "question_th": "ประตูใดมี 580 วิ่ง?",
    "context": "CREATE TABLE table_name_85 (wicket VARCHAR, runs VARCHAR)"
  },
  {
    "answer": "SELECT fielding_team FROM table_name_81 WHERE wicket = \"8th\"",
    "question_en": "Who fielded against the 8th wicket?",
    "question_th": "ใครลงสนามปะทะประตูที่ 8?",
    "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_en": "How many runs did Vijay Hazare and Gul Mohammad score?",
    "question_th": "Vijay Hazare และ Gul Mohammad ทำคะแนนได้กี่ครั้ง",
    "context": "CREATE TABLE table_name_98 (runs VARCHAR, batting_partners VARCHAR)"
  },
  {
    "answer": "SELECT batting_partners FROM table_name_99 WHERE venue = \"colombo\"",
    "question_en": "Who were the batting partners in Colombo?",
    "question_th": "ใครคือคู่ตีลูกในโคลัมโบ?",
    "context": "CREATE TABLE table_name_99 (batting_partners VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT batting_team FROM table_name_61 WHERE season = \"2006\"",
    "question_en": "Who was the batting team in the 2006 season?",
    "question_th": "ใครคือทีมตีลูกในฤดูกาล 2549?",
    "context": "CREATE TABLE table_name_61 (batting_team VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_33 WHERE runs = \"577\"",
    "question_en": "In what season was 577 runs scored?",
    "question_th": "577 รันทำคะแนนได้ในฤดูกาลใด",
    "context": "CREATE TABLE table_name_33 (season VARCHAR, runs VARCHAR)"
  },
  {
    "answer": "SELECT opposing_team FROM table_name_7 WHERE against = 20",
    "question_en": "What opposing team has 20 against?",
    "question_th": "ทีมตรงข้ามทีมไหนมี 20 ต่อ?",
    "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_en": "Venue for Hawke's bay?",
    "question_th": "สถานที่สำหรับอ่าว Hawke?",
    "context": "CREATE TABLE table_name_14 (venue VARCHAR, opposing_team VARCHAR)"
  },
  {
    "answer": "SELECT AVG(december) FROM table_name_39 WHERE game = 36",
    "question_en": "What is the average December, when Game is \"36\"?",
    "question_th": "ค่าเฉลี่ยของเดือนธันวาคมคือเท่าไร เมื่อเกมอยู่ที่ \"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_en": "What is the lowest Game, when December is greater than 13, and when Score is \"5 - 0\"?",
    "question_th": "เกมใดต่ำสุด เมื่อเดือนธันวาคมมากกว่า 13 และเมื่อสกอร์เป็น \"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_en": "What is the sum of December, when Game is greater than 31, and when Score is \"5 - 2\"?",
    "question_th": "ผลรวมของเดือนธันวาคมเมื่อเกมมากกว่า 31 และเมื่อสกอร์คือ \"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_en": "What is Record, when Game is \"36\"?",
    "question_th": "Record คืออะไร เมื่อเกมคือ \"36\"?",
    "context": "CREATE TABLE table_name_79 (record VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_53 WHERE home_team = \"leatherhead\"",
    "question_en": "What was the away team that played against home team Leatherhead?",
    "question_th": "ทีมเยือนที่เจอกับทีมเหย้าเลเธอร์เฮดคือทีมอะไร?",
    "context": "CREATE TABLE table_name_53 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_96 WHERE away_team = \"arsenal\"",
    "question_en": "What was the score of the match played against away team Arsenal?",
    "question_th": "แมตช์ที่เจอกับทีมเยือน อาร์เซนอล มีผลสกอร์เท่าไหร่?",
    "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_en": "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?",
    "question_th": "คุณช่วยบอกหน่อยได้ไหมว่าคะแนนรวมสูงสุดที่มี % ของคะแนนโหวตยอดนิยมอยู่ที่ 0.86% และจำนวนที่นั่งที่ชนะมากกว่า 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_en": "Can you tell me the average Total votes that has the # of seats won smaller than 0?",
    "question_th": "คุณช่วยบอกค่าเฉลี่ยคะแนนรวมที่มีจำนวนที่นั่งน้อยกว่า 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_en": "Can you tell me the total number of Total votes that has the Election larger than 2009, and the Candidates fielded larger than 61?",
    "question_th": "คุณช่วยบอกฉันเกี่ยวกับจำนวนคะแนนเสียงทั้งหมดที่มีการเลือกตั้งมากกว่าปี 2009 และผู้สมัครรับเลือกตั้งมากกว่า 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_en": "Which tournament did the opponent Guillermo Carry play?",
    "question_th": "คู่ต่อสู้ Guillermo Carry เล่นในทัวร์นาเมนต์ใด?",
    "context": "CREATE TABLE table_name_60 (tournament VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_44 WHERE date = \"april 21, 2008\"",
    "question_en": "Who was the opponent on April 21, 2008?",
    "question_th": "คู่ต่อสู้เมื่อวันที่ 21 เมษายน 2551 คือใคร?",
    "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_en": "Who is the opponent on November 22, 2009, clay surface?",
    "question_th": "คู่ต่อสู้วันที่ 22 พฤศจิกายน 2552 ดินเหนียวคือใคร?",
    "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_en": "Which Laps have a Grid larger than 8, and a Rider of anthony west?",
    "question_th": "รอบใดที่มีกริดใหญ่กว่า 8 และมีไรเดอร์ของแอนโทนี่เวสต์",
    "context": "CREATE TABLE table_name_60 (laps INTEGER, grid VARCHAR, rider VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_66 WHERE rider = \"anthony west\"",
    "question_en": "Which time has a Rider of anthony west?",
    "question_th": "ไรเดอร์แห่งแอนโทนี่ เวสต์มีรอบไหนคะ?",
    "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_en": "Which Grid is the highest one that has a Rider of colin edwards, and Laps smaller than 28?",
    "question_th": "กริดคนไหนสูงที่สุดที่มี Rider ของ Colin Edwards และ Laps น้อยกว่า 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_en": "Which Laps have a Rider of andrea dovizioso?",
    "question_th": "รอบใดที่มีนักบิด 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_en": "What college/junior/club team had a player selected in round 6?",
    "question_th": "ทีมวิทยาลัย/จูเนียร์/สโมสรใดมีผู้เล่นที่ได้รับเลือกในรอบที่ 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_en": "What round of the draft was Stan Adams selected?",
    "question_th": "Stan Adams ได้รับเลือกให้ดราฟต์รอบใด",
    "context": "CREATE TABLE table_name_59 (round INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_17 WHERE result = \"t7-7\"",
    "question_en": "What is the attendance for the t7-7 result?",
    "question_th": "การเข้าร่วมสำหรับผล t7-7 เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_17 (attendance VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_32 WHERE attendance = \"45,000\"",
    "question_en": "What is the date for 45,000 in attendance?",
    "question_th": "45,000 คนจะเข้าร่วมวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_32 (date VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_43 WHERE score = 71",
    "question_en": "How many strokes under par was the player who scored 71?",
    "question_th": "ผู้เล่นที่ทำคะแนนได้ 71 แต้มต่ำกว่าพาร์กี่แต้ม?",
    "context": "CREATE TABLE table_name_43 (to_par VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_60 WHERE player = \"jay hebert\"",
    "question_en": "What place is Jay Hebert?",
    "question_th": "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_en": "Which Games lost has Points against of 61, and Points difference smaller than 42?",
    "question_th": "เกมใดที่แพ้มีแต้มต่อ 61 และแต้มต่างกันน้อยกว่า 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_en": "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?",
    "question_th": "เกมใดที่ชนะมีแต้มโบนัสมากกว่า 1 คะแนน ส่วนต่างน้อยกว่า 50 คะแนน เทียบกับ 106 คะแนน และคะแนนน้อยกว่า 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_en": "Which Score has a Record of 1-2?",
    "question_th": "สกอร์ใดมีสถิติ 1-2?",
    "context": "CREATE TABLE table_name_40 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_45 WHERE date = \"april 15\"",
    "question_en": "What is the Record for April 15?",
    "question_th": "บันทึกประจำวันที่ 15 เมษายน คืออะไร?",
    "context": "CREATE TABLE table_name_45 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_14 WHERE date = \"april 13\"",
    "question_en": "What is the Record for April 13?",
    "question_th": "บันทึกประจำวันที่ 13 เมษายน คืออะไร?",
    "context": "CREATE TABLE table_name_14 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_80 WHERE date = \"april 15\"",
    "question_en": "On April 15 who is the Home team?",
    "question_th": "วันที่ 15 เม.ย. เจ้าบ้านคือใคร?",
    "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_en": "Which Attendance has a Date of december 22, 1985, and a Week smaller than 16?",
    "question_th": "ผู้เข้าร่วมคนใดมีวันที่ 22 ธันวาคม 1985 และหนึ่งสัปดาห์น้อยกว่า 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_en": "Which Attendance has a Result of w 23-21, and a Week smaller than 5?",
    "question_th": "ผู้เข้าร่วมคนใดมีผลลัพธ์เป็น w 23-21 และหนึ่งสัปดาห์น้อยกว่า 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_en": "Which Week has a Result of w 20-13?",
    "question_th": "สัปดาห์ใดมีผลการแข่งขัน w 20-13?",
    "context": "CREATE TABLE table_name_20 (week INTEGER, result VARCHAR)"
  },
  {
    "answer": "SELECT japanese FROM table_name_28 WHERE chinese = \"叉焼\"",
    "question_en": "What are the Japanese characters for the Chinese word 叉焼?",
    "question_th": "คำว่า 叉焼 ในภาษาญี่ปุ่นมีอักษรอะไร",
    "context": "CREATE TABLE table_name_28 (japanese VARCHAR, chinese VARCHAR)"
  },
  {
    "answer": "SELECT source_language FROM table_name_28 WHERE meaning = \"mahjong\"",
    "question_en": "What language did the word that means mahjong first come from?",
    "question_th": "คำที่หมายถึงไพ่นกกระจอกมีต้นกำเนิดมาจากภาษาใด",
    "context": "CREATE TABLE table_name_28 (source_language VARCHAR, meaning VARCHAR)"
  },
  {
    "answer": "SELECT romanization FROM table_name_81 WHERE source_language = \"mandarin\" AND rōmaji = \"ūroncha\"",
    "question_en": "What is the Romanization of the Mandarin word whose Rōmaji is ūroncha",
    "question_th": "คำสุริยวรมันคืออะไร",
    "context": "CREATE TABLE table_name_81 (romanization VARCHAR, source_language VARCHAR, rōmaji VARCHAR)"
  },
  {
    "answer": "SELECT source_language FROM table_name_31 WHERE meaning = \"mahjong\"",
    "question_en": "What language did the word mahjong originate from?",
    "question_th": "คำว่าไพ่นกกระจอกมีต้นกำเนิดมาจากภาษาใด",
    "context": "CREATE TABLE table_name_31 (source_language VARCHAR, meaning VARCHAR)"
  },
  {
    "answer": "SELECT chinese FROM table_name_61 WHERE rōmaji = \"chāshū\"",
    "question_en": "What are the Chinese characters for the word that has a Rōmaji of chāshū?",
    "question_th": "ตัวอักษรจีนสำหรับคำที่มีโรมาจิของ chāshū คืออะไร?",
    "context": "CREATE TABLE table_name_61 (chinese VARCHAR, rōmaji VARCHAR)"
  },
  {
    "answer": "SELECT category FROM table_name_3 WHERE president = \"richard nixon\" AND year < 2009",
    "question_en": "What was the category of Richard Nixon as President in a year prior to 2009?",
    "question_th": "Richard Nixon อยู่ในตำแหน่งประธานาธิบดีในหนึ่งปีก่อนปี 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_en": "What is the film that Raymond Massey was nominated for?",
    "question_th": "ภาพยนตร์ที่ Raymond Massey ได้รับการเสนอชื่อเข้าชิงคืออะไร?",
    "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_en": "What was the film of Richard Nixon as President in a year newer than 1996?",
    "question_th": "ภาพยนตร์ของ Richard Nixon ในฐานะประธานาธิบดีในปีที่ใหม่กว่าปี 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_en": "WHich Partner has a Outcome of winner, and a Opponents in the final of rick leach jim pugh?",
    "question_th": "พันธมิตรคนไหนมีผลลัพธ์เป็นผู้ชนะ และเป็นฝ่ายตรงข้ามในรอบสุดท้ายของ 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_en": "Which Score in the final has a Surface of hard on august 20, 1989?",
    "question_th": "สกอร์ใดในรอบชิงชนะเลิศที่มีพื้นผิวแข็งในวันที่ 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–6, 4–6\" AND date = \"october 21, 1990\"",
    "question_en": "Name the Outcome which has a Score in the final of 4–6, 4–6 on october 21, 1990?",
    "question_th": "ตั้งชื่อผลลัพธ์ที่มีคะแนนในรอบสุดท้าย 4–6, 4–6 เมื่อวันที่ 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–5, 6–4\"",
    "question_en": "Which Tournament has a Score in the final of 7–5, 6–4?",
    "question_th": "ทัวร์นาเมนต์ใดมีคะแนนในรอบสุดท้าย 7–5, 6–4?",
    "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_en": "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?",
    "question_th": "ตั้งชื่อสกอร์ที่มีคู่หูของ jorge lozano, ผลลัพธ์ของรองแชมป์ และคู่แข่งในรอบชิงชนะเลิศของ 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_en": "Name the Date which has Opponents in the final of patrick mcenroe tim wilkison?",
    "question_th": "ตั้งชื่อวันที่ซึ่งมีฝ่ายตรงข้ามในรอบชิงชนะเลิศของ แพทริก แม็คเคนโร ทิม วิลกิสัน หรือไม่?",
    "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_en": "What is the total number of goals that have games under 11, debut round over 15, and age of 20 years, 71 days?",
    "question_th": "จำนวนประตูรวมที่มีเกมอายุต่ำกว่า 11 ปี รอบเปิดตัวอายุมากกว่า 15 ปี และอายุ 20 ปี 71 วัน เป็นเท่าใด",
    "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_en": "What is the name that has a debut round over 14, games under 2, and a club of Melbourne?",
    "question_th": "ชื่ออะไรที่มีรอบเปิดตัวเกิน 14 เกมต่ำกว่า 2 เกมและสโมสรของเมลเบิร์นคืออะไร?",
    "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_en": "What is the name of team 2 that has 1-2 as the score?",
    "question_th": "ทีมที่ 2 ที่มีคะแนน 1-2 ชื่ออะไร",
    "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_en": "In the 2005 season with a score of 0-4 what is the team 1?",
    "question_th": "ในฤดูกาล 2005 ด้วยสกอร์ 0-4 ทีมอันดับ 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_en": "Team 2 of Yokohama F. Marinos in the n/a venue had what score?",
    "question_th": "ทีม 2 ของ Yokohama F. Marinos ที่ไม่มีสนามได้คะแนนเท่าไหร่?",
    "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_en": "Team 2 Al-Ain played in what venue?",
    "question_th": "ทีม 2 อัล-ไอน์ ลงเล่นที่สนามใด?",
    "context": "CREATE TABLE table_name_89 (venue VARCHAR, team_2 VARCHAR)"
  },
  {
    "answer": "SELECT SUM(scored) FROM table_name_94 WHERE result = \"40-22\"",
    "question_en": "What is the scored figure when the result is 40-22?",
    "question_th": "ตัวเลขสกอร์เมื่อผลออกมาเป็น 40-22 เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_94 (scored INTEGER, result VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_28 WHERE result = \"46-18\"",
    "question_en": "In what tournament is there a result of 46-18?",
    "question_th": "ผลการแข่งขัน 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_en": "What is the smallest scored with a result of 46-18?",
    "question_th": "คะแนนที่น้อยที่สุดด้วยผล 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_en": "What is the average number of goals with 21 games for a debut round less than 1?",
    "question_th": "จำนวนประตูเฉลี่ยจาก 21 เกมสำหรับรอบเปิดตัวน้อยกว่า 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_en": "What is the Nationality of the Player with Jersey Number 6?",
    "question_th": "ผู้เล่นเสื้อหมายเลข 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_en": "What day was the visitor Cleveland when the record was 34-26?",
    "question_th": "ผู้มาเยือนคลีฟแลนด์คือวันใดเมื่อสถิติอยู่ที่ 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_en": "What was the attendance when the score was 88-98?",
    "question_th": "ผู้เข้าร่วมเมื่อสกอร์ 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_en": "What was the record when the visitor was Cleveland in Dallas?",
    "question_th": "บันทึกเมื่อผู้มาเยือนคือคลีฟแลนด์ในดัลลัสคืออะไร?",
    "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_en": "What is the littlest round that has Matt Delahey, and a greater than 112 pick?",
    "question_th": "รอบเล็กที่สุดที่มี Matt Delahey และตัวเลือกที่มากกว่า 112 คืออะไร?",
    "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_en": "What is the average PUBS 11 value in Mumbai, which has a 07-11 totals less than 1025?",
    "question_th": "ค่า PUBS 11 เฉลี่ยในมุมไบซึ่งมีค่ารวม 07-11 น้อยกว่า 1,025 เป็นเท่าใด",
    "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_en": "What is the lowest 06-10 totals with a pubs 2010 of 68 and a 07-11 totals larger than 305?",
    "question_th": "อะไรคือผลรวมต่ำสุด 06-10 โดยผับปี 2010 ที่ 68 และผลรวม 07-11 มากกว่า 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_en": "What is Team, when Date of Appointment is \"10 November 2008\"?",
    "question_th": "ทีมคืออะไร เมื่อวันที่แต่งตั้งคือ \"10 พฤศจิกายน 2551\"?",
    "context": "CREATE TABLE table_name_6 (team VARCHAR, date_of_appointment VARCHAR)"
  },
  {
    "answer": "SELECT replaced_by FROM table_name_66 WHERE outgoing_manager = \"ünal karaman\"",
    "question_en": "What is Replaced By, when Outgoing Manager is \"Ünal Karaman\"?",
    "question_th": "อะไรจะถูกแทนที่ด้วย เมื่อผู้จัดการขาออกคือ \"Ünal 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_en": "What is Outgoing Manager, when Date of Vacancy is \"25 September 2008\"?",
    "question_th": "Outgoing Manager คืออะไร เมื่อตำแหน่งงานว่างคือ \"25 กันยายน 2551\"",
    "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_en": "What is Date of Appointment, when Outgoing Manager is \"Hakan Kutlu\"?",
    "question_th": "วันที่ได้รับการแต่งตั้งเมื่อผู้จัดการที่ลาออกคือ \"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_en": "What is Date of Appointment, when Outgoing Manager is \"Giray Bulak\"?",
    "question_th": "วันที่ได้รับการแต่งตั้ง เมื่อผู้จัดการที่ลาออกคือ \"กิเรย์ บูลักษ์\"?",
    "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_en": "What is Replaced By, when Date of Vacancy is \"23 February 2009\"?",
    "question_th": "อะไรจะถูกแทนที่ด้วย เมื่อวันที่ตำแหน่งงานว่างคือ \"23 กุมภาพันธ์ 2552\"",
    "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_en": "WHAT IS THE TEAM FOR DECEMBER 30?",
    "question_th": "ทีมอะไรในวันที่ 30 ธันวาคม?",
    "context": "CREATE TABLE table_name_86 (team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT category FROM table_name_4 WHERE finish = \"orange\"",
    "question_en": "Which category had an orange finish?",
    "question_th": "หมวดหมู่ใดมีผิวสีส้ม",
    "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_en": "What is the lowest year for stage 12, category 1?",
    "question_th": "ปีต่ำสุดสำหรับระยะ 12 หมวด 1 คือปีใด",
    "context": "CREATE TABLE table_name_33 (year INTEGER, category VARCHAR, stage VARCHAR)"
  },
  {
    "answer": "SELECT start FROM table_name_8 WHERE stage = 11",
    "question_en": "What is the start of stage 11?",
    "question_th": "จุดเริ่มต้นของระยะที่ 11 คืออะไร?",
    "context": "CREATE TABLE table_name_8 (start VARCHAR, stage VARCHAR)"
  },
  {
    "answer": "SELECT model FROM table_name_54 WHERE wheelbase_in = \"136\"",
    "question_en": "Which model had a wheelbase of 136 inches?",
    "question_th": "รุ่นไหนมีระยะฐานล้อ 136 นิ้ว?",
    "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_en": "What is the engine type with a wheelbase of 127 inches in 1915?",
    "question_th": "เครื่องยนต์ประเภทใดที่มีระยะฐานล้อ 127 นิ้ว ในปี 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_en": "What was the record on January 4?",
    "question_th": "บันทึกเมื่อวันที่ 4 มกราคมคืออะไร?",
    "context": "CREATE TABLE table_name_13 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT streak FROM table_name_56 WHERE game > 49",
    "question_en": "Which Streak has a Game larger than 49?",
    "question_th": "สตรีคใดมีเกมที่ใหญ่กว่า 49?",
    "context": "CREATE TABLE table_name_56 (streak VARCHAR, game INTEGER)"
  },
  {
    "answer": "SELECT streak FROM table_name_53 WHERE date = \"january 7\"",
    "question_en": "Which Streak has a Date of january 7?",
    "question_th": "สตรีคใดมีวันที่ 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_en": "Which Country has Wins larger than 2, and a Rank of 2, and a Name of federico bahamontes?",
    "question_th": "ประเทศใดมีชัยชนะมากกว่า 2 และอันดับ 2 และชื่อของ federico bahammontes",
    "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_en": "What is richard virenque's lowest rank?",
    "question_th": "อันดับต่ำสุดของ Richard Virenque คืออะไร?",
    "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_en": "Which Years have a Rank larger than 2, and Wins of 2, and a Country of france?",
    "question_th": "ปีใดมีอันดับมากกว่า 2 และชนะ 2 และประเทศฝรั่งเศส",
    "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_en": "What is the home team with the ny rangers as the visitor team?",
    "question_th": "ทีมเจ้าบ้านที่มี ny rangers เป็นทีมเยือนคืออะไร?",
    "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_en": "What is the record on October 13, when philadelphia was the home team?",
    "question_th": "เป็นสถิติวันที่ 13 ต.ค. เมื่อฟิลาเดลเฟียเป็นเจ้าบ้าน?",
    "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_en": "What is Season, when Opponent is source: . last updated: 28 june 2007.?",
    "question_th": "ซีซั่นคืออะไร เมื่อฝ่ายตรงข้ามเป็นแหล่งที่มา: อัพเดตล่าสุด: 28 มิถุนายน 2550.?",
    "context": "CREATE TABLE table_name_76 (season VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_9 WHERE figures = \"5/29\"",
    "question_en": "What is Venue, when Figures is 5/29?",
    "question_th": "Venue คืออะไร เมื่อตัวเลขคือ 5/29",
    "context": "CREATE TABLE table_name_9 (venue VARCHAR, figures VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_87 WHERE rank = \"3\"",
    "question_en": "What is Opponent, when Rank is 3?",
    "question_th": "คู่ต่อสู้คืออะไร เมื่ออันดับเป็น 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_en": "What is Player, when Figures is source: . last updated: 28 june 2007.?",
    "question_th": "Player คืออะไร เมื่อ Figures เป็นแหล่งที่มา: . อัพเดตล่าสุด: 28 มิถุนายน 2550.?",
    "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_en": "What is Player, when Opponent is source: . last updated: 28 june 2007.?",
    "question_th": "Player คืออะไร เมื่อฝ่ายตรงข้ามเป็นแหล่งที่มา: . อัพเดตล่าสุด: 28 มิถุนายน 2550.?",
    "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_en": "For the match played on 7 January 1956, with away team of Accrington Stanley, who was the home team?",
    "question_th": "สำหรับแมตช์นี้เล่นเมื่อวันที่ 7 มกราคม พ.ศ. 2499 โดยทีมเยือนของแอคคริงตัน สแตนลี่ย์ เจ้าบ้านคือใคร?",
    "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_en": "Which Tie number had Fulham as the away team?",
    "question_th": "ฟูแล่มเป็นทีมเยือนเบอร์ไหนเสมอ?",
    "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_en": "Which Tie number had Middlesbrough as the away team?",
    "question_th": "มิดเดิ้ลสโบรช์เป็นทีมเยือนหมายเลขเสมอกัน?",
    "context": "CREATE TABLE table_name_63 (tie_no VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_55 WHERE tie_no = \"29\"",
    "question_en": "On what day was Tie #29 played?",
    "question_th": "เสมอ #29 เล่นวันไหน?",
    "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_en": "Which Tie number was played on 9 January 1956?",
    "question_th": "ลงเล่นหมายเลขใดเสมอกันในวันที่ 9 มกราคม พ.ศ. 2499?",
    "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_en": "What is the Tie number for the match that had away team of Scunthorpe & Lindsey United?",
    "question_th": "แมตช์ที่ทีมเยือนสคันธอร์ป แอนด์ ลินด์เซย์ ยูไนเต็ด เสมอกันคือเลขอะไร?",
    "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_en": "WHAT IS THE PLACE WITH A SCORE OF 76-69-64-70=279?",
    "question_th": "สถานที่ที่มีคะแนน 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_en": "WHAT IS THE PLACE WITH A SCORE OF 73-65-73-71=282?",
    "question_th": "สถานที่ที่มีคะแนน 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_en": "WHAT IS THE TO PAR FOR ERNIE ELS?",
    "question_th": "ค่าพาร์สำหรับ 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_en": "WHAT IS THE PLACE WITH THE SCORE 69-71-66-73=279?",
    "question_th": "สถานที่ที่มีคะแนน 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_en": "What was the winning score at Burdine's Invitational?",
    "question_th": "คะแนนชนะในงาน Burdine's Invitational คืออะไร?",
    "context": "CREATE TABLE table_name_66 (winning_score VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_32 WHERE winning_score = –7(66 - 72 - 69 - 74 = 281)",
    "question_en": "Which tournament has a winning score at –7 (66-72-69-74=281)?",
    "question_th": "ทัวร์นาเมนต์ใดมีคะแนนชนะที่ –7 (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_en": "On what date is Jerilyn Britz the runner-up?",
    "question_th": "Jerilyn Britz รองแชมป์วันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_32 (date VARCHAR, runner_s__up VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_54 WHERE winning_score = –8(70 - 71 - 67 = 208)",
    "question_en": "On what date is the winning score –8 (70-71-67=208)?",
    "question_th": "คะแนนชนะคือวันไหน –8 (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_en": "What is Matches, when Year is \"2003\"?",
    "question_th": "การแข่งขันคืออะไร เมื่อปีคือ \"2003\"?",
    "context": "CREATE TABLE table_name_72 (matches VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT draws FROM table_name_76 WHERE losses = \"did not qualify\"",
    "question_en": "What is Draws, when Losses is \"Did Not Qualify\"?",
    "question_th": "การเสมอคืออะไร เมื่อการแพ้คือ \"ไม่ผ่านเข้ารอบ\"?",
    "context": "CREATE TABLE table_name_76 (draws VARCHAR, losses VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_41 WHERE losses = \"did not qualify\"",
    "question_en": "What is Result, when Losses is \"Did Not Qualify\"?",
    "question_th": "ผลลัพธ์คืออะไร เมื่อการแพ้คือ \"ไม่ผ่านเข้ารอบ\"",
    "context": "CREATE TABLE table_name_41 (result VARCHAR, losses VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_71 WHERE wins = \"0\"",
    "question_en": "What is Year, when Wins is \"0\"?",
    "question_th": "ปีที่ชนะคือ \"0\" คืออะไร?",
    "context": "CREATE TABLE table_name_71 (year VARCHAR, wins VARCHAR)"
  },
  {
    "answer": "SELECT draws FROM table_name_80 WHERE wins = \"did not qualify\"",
    "question_en": "What is Draws, when Wins is \"Did Not Qualify\"?",
    "question_th": "การเสมอคืออะไร เมื่อการชนะคือ \"ไม่ผ่านเข้ารอบ\"?",
    "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_en": "What is Matches, when Draws is \"Did Not Qualify\", and when Year is \"1995\"?",
    "question_th": "การแข่งขันคืออะไร เมื่อเสมอคือ \"ไม่ผ่านเข้ารอบ\" และเมื่อใดคือปี \"1995\"",
    "context": "CREATE TABLE table_name_75 (matches VARCHAR, draws VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_58 WHERE score = \"112–118\"",
    "question_en": "Which Date has a Score of 112–118?",
    "question_th": "วันไหนมีคะแนน 112–118?",
    "context": "CREATE TABLE table_name_58 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_69 WHERE score = \"111–101\"",
    "question_en": "Which Record has a Score of 111–101?",
    "question_th": "บันทึกใดมีคะแนน 111–101",
    "context": "CREATE TABLE table_name_69 (record VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_name_74 WHERE score = \"122–125\"",
    "question_en": "Which Game has a Score of 122–125?",
    "question_th": "เกมใดมีคะแนน 122–125",
    "context": "CREATE TABLE table_name_74 (game VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT streak FROM table_name_35 WHERE game = 3",
    "question_en": "Which Streak has a Game of 3?",
    "question_th": "สตรีคใดมีเกม 3 เกม?",
    "context": "CREATE TABLE table_name_35 (streak VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_95 WHERE record = \"1–3\"",
    "question_en": "Which Score has a Record of 1–3?",
    "question_th": "คะแนนใดมีสถิติ 1–3",
    "context": "CREATE TABLE table_name_95 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(total) FROM table_name_16 WHERE silver > 2",
    "question_en": "How many totals had a silver larger than 2?",
    "question_th": "เงินทั้งหมดมากกว่า 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_en": "What was the average bronze when gold was larger than 1 and silver was larger than 2?",
    "question_th": "บรอนซ์โดยเฉลี่ยเมื่อทองคำมีขนาดใหญ่กว่า 1 และเงินมีขนาดใหญ่กว่า 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_en": "What was the college team of the player whose former WNBA team was the Cleveland Rockers?",
    "question_th": "ทีมวิทยาลัยของผู้เล่นที่อดีตทีม WNBA คือ 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_en": "What nationality was the player whose college team was Georgia Tech?",
    "question_th": "ผู้เล่นสัญชาติใดที่มีทีมวิทยาลัยเป็นจอร์เจียเทค",
    "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_en": "What was the new WNBA team of the player selected with a pick over 7?",
    "question_th": "ทีม WNBA ใหม่ของผู้เล่นที่ได้รับเลือกโดยเลือกมากกว่า 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_en": "Which player had a pick under 6 and a new WNBA team of the Minnesota Lynx?",
    "question_th": "ผู้เล่นคนไหนที่มีตัวเลือกอายุต่ำกว่า 6 ปีและทีม WNBA ชุดใหม่ของ 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_en": "Billy Ray Brown plays for what country?",
    "question_th": "บิลลี่ เรย์ บราวน์เล่นให้กับประเทศอะไร?",
    "context": "CREATE TABLE table_name_9 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_63 WHERE country = \"spain\"",
    "question_en": "The country of Spain has what score?",
    "question_th": "ประเทศสเปนได้คะแนนเท่าไหร่?",
    "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_en": "The golfer from the United states with a score of 72-70-69=211 is in what place?",
    "question_th": "นักกอล์ฟจากสหรัฐอเมริกาที่มีคะแนน 72-70-69=211 อยู่อันดับที่ใด?",
    "context": "CREATE TABLE table_name_46 (place VARCHAR, country VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_13 WHERE player = \"jeff sluman\"",
    "question_en": "The golfer Jeff Sluman golfs for what country?",
    "question_th": "นักกอล์ฟ Jeff Sluman ตีกอล์ฟให้ประเทศใด",
    "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_en": "Mike Reid from the United States has what score?",
    "question_th": "ไมค์ รีด จากอเมริกา ได้คะแนนเท่าไหร่?",
    "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_en": "What player has 71-72-66=209 as the score?",
    "question_th": "ผู้เล่นคนไหนมีคะแนน 71-72-66=209 เป็นคะแนน?",
    "context": "CREATE TABLE table_name_13 (player VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_20 WHERE place = \"7\"",
    "question_en": "What to par has 7 as the place?",
    "question_th": "สิ่งที่พาร์มี 7 เป็นสถานที่?",
    "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_en": "What player has 72-67-71=210 as the score?",
    "question_th": "ผู้เล่นคนไหนมีคะแนน 72-67-71=210 เป็นคะแนน?",
    "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_en": "What to par has t5 as the place, with larry mize as the player?",
    "question_th": "อะไรที่จะพาร์มี t5 เป็นสถานที่ โดยมี larry mize เป็นผู้เล่น?",
    "context": "CREATE TABLE table_name_49 (to_par VARCHAR, place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_38 WHERE place = \"t5\"",
    "question_en": "What player has t5 as the place?",
    "question_th": "ผู้เล่นคนไหนมี t5 เป็นที่ตั้ง?",
    "context": "CREATE TABLE table_name_38 (player VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_3 WHERE player = \"fred couples\"",
    "question_en": "What score has fred couples as the player?",
    "question_th": "เฟร็ด คูเป้ เป็นนักเตะได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_3 (score VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_93 WHERE score = \"4–0\" AND venue = \"stade leopold senghor, dakar\"",
    "question_en": "On what Date in Stade Leopold Senghor, Dakar was the Score 4–0?",
    "question_th": "วันที่เท่าไหร่ใน Stade Leopold Senghor, Dakar เป็นคะแนน 4–0?",
    "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_en": "Who has the highest assists on april 28?",
    "question_th": "ใครทำแอสซิสต์ได้มากที่สุดในวันที่ 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_en": "What is Points, when Series is Queensland Formula Ford Championship, and when Position is 1st?",
    "question_th": "คะแนนคืออะไร เมื่อซีรีส์คือ Queensland Formula Ford Championship และเมื่อตำแหน่งเป็นที่ 1",
    "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_en": "What is Driver, when Position is 2nd, and when Season is 2001?",
    "question_th": "นักแข่งคืออะไร เมื่อตำแหน่งเป็นที่ 2 และเมื่อฤดูกาลคือปี 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_en": "What is Position, when Series is Queensland Formula Ford Championship, when Season is after 2001, and when Points is 234?",
    "question_th": "ตำแหน่งคืออะไร เมื่อซีรีส์คือ Queensland Formula Ford Championship เมื่อฤดูกาลคือหลังปี 2001 และเมื่อคะแนนคือ 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_en": "What is Series, when Season is 2007?",
    "question_th": "ซีรีส์คืออะไร เมื่อซีซันคือปี 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_en": "What was the Attendance on September 26, 1971?",
    "question_th": "ผู้เข้าร่วมประชุมเมื่อวันที่ 26 กันยายน พ.ศ. 2514 เป็นอย่างไรบ้าง?",
    "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_en": "Who was the opponent before week 12, on November 11, 1990?",
    "question_th": "คู่ต่อสู้ก่อนสัปดาห์ที่ 12 วันที่ 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_en": "Which date had an attendance of 76,518?",
    "question_th": "วันไหนมีผู้เข้าร่วม 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_en": "What was the attendance of the game that ended with L 31-0",
    "question_th": "การมีส่วนร่วมในเกมที่จบลงด้วย 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_en": "What is the year for the country of Morocco?",
    "question_th": "ประเทศโมร็อกโกคือปีอะไร",
    "context": "CREATE TABLE table_name_22 (year INTEGER, country VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_name_19 WHERE country = \"united arab emirates\"",
    "question_en": "What is the year for the United Arab Emirates?",
    "question_th": "สหรัฐอาหรับเอมิเรตส์มีปีอะไร?",
    "context": "CREATE TABLE table_name_19 (year VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_name_8 WHERE structure = \"mercury city tower\"",
    "question_en": "What year was the Mercury City Tower?",
    "question_th": "Mercury City Tower สร้างขึ้นในปีใด",
    "context": "CREATE TABLE table_name_8 (year INTEGER, structure VARCHAR)"
  },
  {
    "answer": "SELECT structure FROM table_name_88 WHERE country = \"chile\"",
    "question_en": "What structure is in Chile?",
    "question_th": "โครงสร้างอะไรในชิลี?",
    "context": "CREATE TABLE table_name_88 (structure VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT 2007 AS _08_season FROM table_name_60 WHERE city = \"marcianise\"",
    "question_en": "What 2007-08 season has marcianise as the city?",
    "question_th": "ฤดูกาล 2007-08 ใดที่มีตลาดมาร์เซียนเป็นเมืองแห่งนี้?",
    "context": "CREATE TABLE table_name_60 (city VARCHAR)"
  },
  {
    "answer": "SELECT AVG(capacity) FROM table_name_85 WHERE city = \"foligno\"",
    "question_en": "What is the average capacity that has foligno as the city?",
    "question_th": "ความจุเฉลี่ยที่มีโฟลิกโนเท่ากับเมืองคือเท่าไร?",
    "context": "CREATE TABLE table_name_85 (capacity INTEGER, city VARCHAR)"
  },
  {
    "answer": "SELECT MAX(capacity) FROM table_name_80 WHERE stadium = \"stadio marcello torre\"",
    "question_en": "What is the highest capacity that has stadio marcello torre as the stadium?",
    "question_th": "ความจุสูงสุดที่มีสตาดิโอ มาร์เชลโล ตอร์เรเป็นสนามคือเท่าไร?",
    "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_en": "What is the score for the game where Birmingham City was the home team on 10 March 1984?",
    "question_th": "เกมที่เบอร์มิงแฮม ซิตี้ เป็นเจ้าบ้านเมื่อวันที่ 10 มีนาคม พ.ศ. 2527 มีสกอร์เท่าไหร่?",
    "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_en": "Who is the home team that tied no 2?",
    "question_th": "เจ้าบ้านที่เสมออันดับ 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_en": "What was the score of the game when Sheffield Wednesday was the home team?",
    "question_th": "เกมเมื่อเชฟฟิลด์เว้นส์เดย์เป็นเจ้าบ้านสกอร์เท่าไหร่?",
    "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_en": "Which years did the player from Providence play for the Grizzlies as small forward?",
    "question_th": "นักเตะจากโพรวิเดนซ์เล่นให้กับทีม Grizzlies ในฐานะกองหน้าตัวเล็กในช่วงปีไหน?",
    "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_en": "What is the nationality of Stromile Swift?",
    "question_th": "สโตรไมล์ สวิฟท์ สัญชาติอะไร?",
    "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_en": "Which years did the player from Providence play for Memphis?",
    "question_th": "นักเตะจากโพรวิเดนซ์เล่นให้เมมฟิสกี่ปี?",
    "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_en": "Which team has a record of 7-1?",
    "question_th": "ทีมไหนมีสถิติ 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_en": "What game number was the first game played at the Summit this season?",
    "question_th": "เกมแรกที่เล่นในการประชุมสุดยอดฤดูกาลนี้คือเกมหมายเลขใด",
    "context": "CREATE TABLE table_name_25 (game INTEGER, location VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_11 WHERE opponent = \"new york knicks\"",
    "question_en": "What was the final score for the game played against the New York Knicks?",
    "question_th": "คะแนนสุดท้ายของเกมที่เล่นกับนิวยอร์ก นิกส์คือเท่าไร?",
    "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_en": "For the game played at the Boston Garden with a score of 118-110, what is the opposing team's record?",
    "question_th": "สำหรับเกมที่เล่นที่บอสตัน การ์เดน ด้วยสกอร์ 118-110 สถิติของทีมตรงข้ามเป็นอย่างไรบ้าง?",
    "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_en": "What is Finish, when Year(s) Won is \"1962 , 1967\"?",
    "question_th": "Finish คืออะไร เมื่อปีที่ชนะคือ \"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_en": "What is Player, when To Par is greater than 6, and when Year(s) Won is \"1962 , 1967\"?",
    "question_th": "Player คืออะไร เมื่อ To Par มากกว่า 6 และเมื่อปีที่ชนะคือ \"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_en": "What is Finish, when To Par is less than 14, and when Year(s) Won is \"1952 , 1963\"?",
    "question_th": "Finish คืออะไร เมื่อ Par น้อยกว่า 14 และปีที่ชนะคือ \"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_en": "What is the highest To Par, when Year(s) Won is \"1962 , 1967\"?",
    "question_th": "พาร์สูงสุดคือเท่าไร เมื่อปีที่ชนะคือ \"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_en": "What is the Total, when To Par is less than 14, when Finish is T12, and when Player is \"Julius Boros\"?",
    "question_th": "ผลรวมคืออะไร เมื่อถึงพาร์น้อยกว่า 14 เมื่อจบการแข่งขันคือ T12 และเมื่อผู้เล่นคือ \"จูเลียส โบรอส\"",
    "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_en": "What is the highest number of artists on Scarface?",
    "question_th": "ศิลปินจำนวนมากที่สุดใน Scarface คืออะไร?",
    "context": "CREATE TABLE table_name_67 (number INTEGER, artist VARCHAR)"
  },
  {
    "answer": "SELECT AVG(number) FROM table_name_18 WHERE artist = \"black milk\"",
    "question_en": "What is the average number for Black Milk?",
    "question_th": "ตัวเลขเฉลี่ยของ 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_en": "What is the lowest average for number 2?",
    "question_th": "ค่าเฉลี่ยต่ำสุดสำหรับหมายเลข 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_en": "What is the highest score for Black Milk?",
    "question_th": "คะแนนสูงสุดสำหรับ 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_en": "What surface was played on when Piet Norval was a partner?",
    "question_th": "พื้นผิวใดที่เล่นได้เมื่อ Piet Norval เป็นคู่หู?",
    "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_en": "What was the surface played on when they were a runner-up in 2007?",
    "question_th": "พื้นผิวการเล่นเป็นอย่างไรเมื่อพวกเขาได้รองแชมป์ในปี 2550?",
    "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_en": "What is Goals, when Assists is greater than 28, and when Player is Steve Walker?",
    "question_th": "ประตูคืออะไร เมื่อ Assists มากกว่า 28 และเมื่อผู้เล่นคือ 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_en": "What is the average Games, when Player is Robert Hock, and when Goals is less than 24?",
    "question_th": "เกมโดยเฉลี่ยเมื่อผู้เล่นคือ Robert Hock และเมื่อประตูน้อยกว่า 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_en": "What is the average Assists, when Club is Iserlohn Roosters,when Points is 71, and when Goals is greater than 44?",
    "question_th": "แอสซิสต์โดยเฉลี่ยคือเท่าไร เมื่อสโมสรคืออิเซอร์โลห์น รูสเตอร์ส เมื่อคะแนนคือ 71 และเมื่อประตูมากกว่า 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_en": "What is the average Goals, when Club is Iserlohn Roosters, and when Games is less than 56?",
    "question_th": "ประตูเฉลี่ยคือเท่าไร เมื่อสโมสรคืออิเซอร์โลห์น รูสเตอร์ส และเมื่อเกมน้อยกว่า 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_en": "What is the location of the game with a 115-105 score?",
    "question_th": "พิกัดเกมด้วยสกอร์ 115-105 อยู่ที่ใด?",
    "context": "CREATE TABLE table_name_35 (location VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_89 WHERE score = \"110-106\"",
    "question_en": "What is the record of the game with a 110-106 score?",
    "question_th": "สถิติเกมด้วยสกอร์ 110-106 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_89 (record VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_40 WHERE game = 48",
    "question_en": "What is the record of game 48?",
    "question_th": "บันทึกของเกม 48 คืออะไร?",
    "context": "CREATE TABLE table_name_40 (record VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_1 WHERE score = \"110-106\"",
    "question_en": "What is the record of the game with a 110-106 score?",
    "question_th": "สถิติเกมด้วยสกอร์ 110-106 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_1 (record VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_23 WHERE location = \"the forum\"",
    "question_en": "What is the score at the forum location?",
    "question_th": "คะแนน ณ สถานที่ฟอรั่มเท่าไหร่?",
    "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_en": "What is Method, when Location is \"Tokyo , Japan\", and when Event is \"Rings: Millennium Combine 2\"?",
    "question_th": "วิธีคืออะไร เมื่อสถานที่คือ \"โตเกียว ประเทศญี่ปุ่น\" และเมื่อเหตุการณ์คือ \"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_en": "What is Method, when Opponent is \"Chalid Arrab\"?",
    "question_th": "วิธีคืออะไร ในเมื่อคู่ต่อสู้คือ \"ชาลิด อาราบ\"?",
    "context": "CREATE TABLE table_name_4 (method VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT SUM(round) FROM table_name_70 WHERE record = \"19-25-5\"",
    "question_en": "What is the sum of Round, when Record is \"19-25-5\"?",
    "question_th": "ผลรวมของรอบเมื่อสถิติคือ \"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_en": "Which region has Stanford University as host?",
    "question_th": "ภูมิภาคใดมีมหาวิทยาลัยสแตนฟอร์ดเป็นเจ้าภาพ",
    "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_en": "Which state contains the University of Iowa in the mideast region?",
    "question_th": "รัฐใดมีมหาวิทยาลัยไอโอวาในภูมิภาคตะวันออกกลาง",
    "context": "CREATE TABLE table_name_67 (state VARCHAR, region VARCHAR, host VARCHAR)"
  },
  {
    "answer": "SELECT state FROM table_name_25 WHERE city = \"storrs\"",
    "question_en": "Which state includes the city of Storrs?",
    "question_th": "รัฐใดรวมถึงเมืองสตอร์สด้วย",
    "context": "CREATE TABLE table_name_25 (state VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT state FROM table_name_10 WHERE venue = \"harry a. gampel pavilion\"",
    "question_en": "Which state includes the Harry A. Gampel Pavilion venue?",
    "question_th": "รัฐใดมีสถานที่จัดงาน Harry A. Gampel Pavilion ด้วย",
    "context": "CREATE TABLE table_name_10 (state VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_55 WHERE state = \"georgia\"",
    "question_en": "Which city is in Georgia?",
    "question_th": "เมืองใดอยู่ในจอร์เจีย?",
    "context": "CREATE TABLE table_name_55 (city VARCHAR, state VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(round) FROM table_name_75 WHERE player = \"jason missiaen\"",
    "question_en": "What is the total number of rounds that had Jason Missiaen?",
    "question_th": "จำนวนรอบทั้งหมดที่มี Jason Missiaen คือเท่าไร?",
    "context": "CREATE TABLE table_name_75 (round VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_8 WHERE nationality = \"russia\"",
    "question_en": "What player is from Russia?",
    "question_th": "นักเตะคนไหนมาจากรัสเซีย?",
    "context": "CREATE TABLE table_name_8 (player VARCHAR, nationality VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_9 WHERE round = 7",
    "question_en": "What nationality is the pick from round 7?",
    "question_th": "คัดเลือกจากรอบ 7 สัญชาติอะไร?",
    "context": "CREATE TABLE table_name_9 (nationality VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT album FROM table_name_77 WHERE year > 2008",
    "question_en": "what is the album when the year is later than 2008?",
    "question_th": "อัลบั้มอะไรหลังปี 2551 คืออัลบั้มอะไร?",
    "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_en": "What is the Championship Game that has 4 Bids and a .600 Win %?",
    "question_th": "เกม Championship ที่มี 4 Bid และ .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_en": "What is the team 2 with cobreloa as team 1?",
    "question_th": "ทีม 2 คืออะไร โดยมี cobreloa เป็นทีม 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_en": "How many picks had a round smaller than 6 and an overall bigger than 153?",
    "question_th": "มีกี่ตัวเลือกที่มีรอบที่เล็กกว่า 6 และโดยรวมมากกว่า 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_en": "What was the attendance on 31 January 2009 when the opponent was Airdrie United?",
    "question_th": "การเข้าร่วมงานในวันที่ 31 มกราคม พ.ศ. 2552 เมื่อคู่ต่อสู้คือ แอร์ดรี้ ยูไนเต็ด เป็นอย่างไร?",
    "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_en": "In what venue was the event held on 14 February 2009?",
    "question_th": "วันที่ 14 กุมภาพันธ์ 2552 จัดขึ้น ณ สถานที่ใด?",
    "context": "CREATE TABLE table_name_95 (venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT AVG(attendance) FROM table_name_24 WHERE venue = \"palmerston park\"",
    "question_en": "What is the average attendance for all events held at Palmerston Park venue?",
    "question_th": "ผู้เข้าร่วมโดยเฉลี่ยสำหรับกิจกรรมทั้งหมดที่จัดขึ้นที่สถานที่จัดงาน Palmerston Park คือเท่าใด",
    "context": "CREATE TABLE table_name_24 (attendance INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(t__µm_) FROM table_name_67 WHERE technology = \"u c-si\"",
    "question_en": "What is the total number of t (µm), when Technology is u c-si?",
    "question_th": "จำนวน t (µm) ทั้งหมดเป็นเท่าใด เมื่อเทคโนโลยีมีค่าเท่ากับ c-si?",
    "context": "CREATE TABLE table_name_67 (t__µm_ VARCHAR, technology VARCHAR)"
  },
  {
    "answer": "SELECT v_oc__v_ FROM table_name_46 WHERE t__µm_ > 5 AND i_sc__a_ = \"0.8\"",
    "question_en": "What is the V OC (V), when t (µm) is greater than 5, and when I SC (A) is 0.8?",
    "question_th": "V OC (V) คืออะไร เมื่อ t (µm) มากกว่า 5 และเมื่อ I SC (A) เท่ากับ 0.8",
    "context": "CREATE TABLE table_name_46 (v_oc__v_ VARCHAR, t__µm_ VARCHAR, i_sc__a_ VARCHAR)"
  },
  {
    "answer": "SELECT SUM(t__µm_) FROM table_name_26 WHERE technology = \"mj\"",
    "question_en": "What is the sum of t (µm), when Technology is MJ?",
    "question_th": "เมื่อเทคโนโลยีคือ MJ ผลรวมของ t (µm) เป็นเท่าใด",
    "context": "CREATE TABLE table_name_26 (t__µm_ INTEGER, technology VARCHAR)"
  },
  {
    "answer": "SELECT w_m² FROM table_name_60 WHERE η___percentage_ > 16.5 AND technology = \"mj\"",
    "question_en": "What is W/m², when η (%) is greater than 16.5, and when Technology is MJ?",
    "question_th": "W/m² คืออะไร เมื่อ η (%) มากกว่า 16.5 และเมื่อเทคโนโลยีคือ MJ",
    "context": "CREATE TABLE table_name_60 (w_m² VARCHAR, η___percentage_ VARCHAR, technology VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_87 WHERE location = \"stanley\"",
    "question_en": "What type of Bridge is in Stanley?",
    "question_th": "สะพานประเภทใดในสแตนลีย์?",
    "context": "CREATE TABLE table_name_87 (type VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_46 WHERE name = \"colton's crossing bridge\"",
    "question_en": "What type of bridge is Colton's Crossing Bridge?",
    "question_th": "สะพานข้ามของ Colton เป็นสะพานประเภทใด",
    "context": "CREATE TABLE table_name_46 (type VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_4 WHERE type = \"pratt pony through truss\"",
    "question_en": "What bridge is a pratt pony through truss tyoe bridge?",
    "question_th": "สะพานใดเป็นสะพาน Pratt Pony ผ่านสะพาน Truss Tyoe?",
    "context": "CREATE TABLE table_name_4 (name VARCHAR, type VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_8 WHERE location = \"cooperstown\"",
    "question_en": "What type of bridge is in Cooperstown?",
    "question_th": "สะพานประเภทใดในคูเปอร์สทาวน์",
    "context": "CREATE TABLE table_name_8 (type VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_69 WHERE location = \"mcville\"",
    "question_en": "What bridge is in Mcville?",
    "question_th": "สะพานใดในแมควิลล์?",
    "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_en": "Which tracking method supports MySQL databases and is named Open Web Analytics?",
    "question_th": "วิธีการติดตามใดรองรับฐานข้อมูล MySQL และมีชื่อว่า 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_en": "Which tracking method has a latest stable release of 2.23-05?",
    "question_th": "วิธีการติดตามใดที่มีเวอร์ชันเสถียรล่าสุดคือ 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_en": "What is the latest stable release date for Crawltrack?",
    "question_th": "วันที่เผยแพร่เสถียรล่าสุดสำหรับ 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_en": "Which tracking method has a latest stable release of 6.0?",
    "question_th": "วิธีการติดตามใดที่มีเวอร์ชันเสถียรล่าสุดเป็น 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_en": "What is the least passengers from the Dallas/Fort Worth International (DFW) airport?",
    "question_th": "ผู้โดยสารจากสนามบินดัลลัส/ฟอร์ตเวิร์ธอินเตอร์เนชั่นแนล (DFW) มีผู้โดยสารน้อยที่สุดคือจำนวนเท่าใด",
    "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_en": "What city is ranked greater than 6, and the airport is St. Petersburg/Clearwater (PIE)",
    "question_th": "เมืองใดอยู่ในอันดับที่มากกว่า 6 และสนามบินคือ เซนต์ปีเตอร์สเบิร์ก/เคลียร์วอเตอร์ (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_en": "What is the total rank of the airport that has 79,290 passengers?",
    "question_th": "สนามบินที่มีผู้โดยสาร 79,290 คน มีอันดับเท่าไหร่?",
    "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_en": "Which Winner has a Country of norway, and a FIS Nordic World Ski Championships of 1924?",
    "question_th": "ผู้ชนะคนใดมีประเทศนอร์เวย์ และ FIS Nordic World Ski Championships ปี 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_en": "Which Country has a FIS Nordic World Ski Championships of 1948, 1950?",
    "question_th": "ประเทศใดมี FIS Nordic World Ski Championships ปี 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_en": "Which Holmenkollen has a Country of norway, and a Winner of tom sandberg?",
    "question_th": "Holmenkollen คนใดมีประเทศนอร์เวย์ และเป็นผู้ชนะของ 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_en": "Which FIS Nordic World Ski Championships has Winter Olympics of 1960?",
    "question_th": "FIS Nordic World Ski Championships รายการใดที่มีโอลิมปิกฤดูหนาวปี 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_en": "Which Country has a Winter Olympics of 1948?",
    "question_th": "ประเทศใดมีโอลิมปิกฤดูหนาวปี 1948",
    "context": "CREATE TABLE table_name_28 (country VARCHAR, winter_olympics VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_31 WHERE winter_olympics = \"1968\"",
    "question_en": "Which Winner has a Winter Olympics of 1968?",
    "question_th": "ผู้ชนะคนใดมีโอลิมปิกฤดูหนาวปี 1968?",
    "context": "CREATE TABLE table_name_31 (winner VARCHAR, winter_olympics VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_8 WHERE attendance = \"43,279\"",
    "question_en": "What was the result of the game when the attendance was 43,279?",
    "question_th": "ผลการแข่งขันเป็นอย่างไรเมื่อมีผู้ชม 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_en": "What is the average Attendance, when Date is 1 October 1998?",
    "question_th": "จำนวนผู้เข้าร่วมโดยเฉลี่ยคือเท่าใด เมื่อวันที่ 1 ตุลาคม 1998",
    "context": "CREATE TABLE table_name_28 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_76 WHERE date = \"17 september 1998\"",
    "question_en": "What is Opponent, when Date is 17 September 1998?",
    "question_th": "ฝ่ายตรงข้ามคืออะไร เมื่อวันที่ 17 กันยายน 2541?",
    "context": "CREATE TABLE table_name_76 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_18 WHERE date = \"8 april 1999\"",
    "question_en": "What is Opponent, when Date is 8 April 1999?",
    "question_th": "คู่ต่อสู้คืออะไร เมื่อวันที่ 8 เมษายน 2542?",
    "context": "CREATE TABLE table_name_18 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_name_89 WHERE opponent = \"los angeles\"",
    "question_en": "WHAT IS THE HIGHEST POINTS FOR LOS ANGELES?",
    "question_th": "จุดสูงสุดสำหรับลอสแอนเจลิสคืออะไร?",
    "context": "CREATE TABLE table_name_89 (high_points VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT score_f_a FROM table_name_39 WHERE result = \"d\"",
    "question_en": "What was the Score F-A when the result was D?",
    "question_th": "คะแนน FA คืออะไรเมื่อผลลัพธ์เป็น 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_en": "On which date did they play Leicester City in Venue A?",
    "question_th": "พวกเขาเล่นกับเลสเตอร์ ซิตี้ ที่สนาม A วันไหน?",
    "context": "CREATE TABLE table_name_38 (date VARCHAR, venue VARCHAR, opponents VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_27 WHERE venue = \"h\"",
    "question_en": "What was the result of the game played in Venue H?",
    "question_th": "ผลการแข่งขันที่เล่นใน 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_en": "What was the result of the game played on 17 July 2008?",
    "question_th": "ผลการแข่งขันวันที่ 17 กรกฎาคม พ.ศ. 2551 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_42 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT passenger FROM table_name_94 WHERE wins = \"16\"",
    "question_en": "What Passenger has 16 Wins?",
    "question_th": "ผู้โดยสารคนไหนมี 16 ชัยชนะ?",
    "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_en": "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?",
    "question_th": "ชื่อเวลาที่ออกอากาศมีรูปแบบภาพ 4:3 และชั่วโมง 20:30 น. และวันในสัปดาห์ของวันจันทร์ วันพุธ วันศุกร์?",
    "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–february, june 2002\"",
    "question_en": "Which Days of the week has a Time of broadcast in january–february, june 2002?",
    "question_th": "วันใดของสัปดาห์มีเวลาออกอากาศในเดือนมกราคม-กุมภาพันธ์ มิถุนายน 2545?",
    "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–7, 6–1, 6–3, 6–3\"",
    "question_en": "Which Outcome has a Championship of us championships, and a Score in the final of 5–7, 6–1, 6–3, 6–3?",
    "question_th": "ผลลัพธ์ใดที่มีแชมป์เปี้ยนชิพของเราและสกอร์ในรอบชิงชนะเลิศ 5–7, 6–1, 6–3, 6–3?",
    "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_en": "Which Outcome has a Year larger than 1939, and an Opponent in the final of frank kovacs?",
    "question_th": "ผลลัพธ์ใดที่มีหนึ่งปีมากกว่าปี 1939 และเป็นฝ่ายตรงข้ามในรอบสุดท้ายของแฟรงค์ โควัช?",
    "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_en": "Which Surface has an Opponent in the final of don mcneill, and a Year of 1940?",
    "question_th": "Surface คนใดมีคู่ต่อสู้ในรอบชิงชนะเลิศของ Don Mcneill และปี 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_en": "How many years have an Opponent in the final of welby van horn?",
    "question_th": "เวลบี้ แวน ฮอร์น มีคู่แข่งอยู่กี่ปี?",
    "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_en": "What is the score of player dick metz?",
    "question_th": "นักเตะ ดิ๊ก เมตซ์ มีค่าตัวเท่าไหร่?",
    "context": "CREATE TABLE table_name_74 (score VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_60 WHERE west = \"ev bad wörishofen\"",
    "question_en": "Which season had EV Bad Wörishofen in the West?",
    "question_th": "EV Bad Wörishofen อยู่ทางตะวันตกในฤดูกาลใด",
    "context": "CREATE TABLE table_name_60 (season VARCHAR, west VARCHAR)"
  },
  {
    "answer": "SELECT south FROM table_name_92 WHERE season = \"2004-05\"",
    "question_en": "Who was in the South in the 2004-05 season?",
    "question_th": "ใครอยู่ภาคใต้ในฤดูกาล 2547-05?",
    "context": "CREATE TABLE table_name_92 (south VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT south FROM table_name_10 WHERE west = \"ev bad wörishofen\"",
    "question_en": "Who was in the South when EV Bad Wörishofen was in the West?",
    "question_th": "ใครอยู่ทางใต้ตอนที่ EV Bad Wörishofen อยู่ทางตะวันตก?",
    "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_en": "Who was in the South when TSV Kottern was in the West and EHF Passau was in the East?",
    "question_th": "ใครอยู่ทางใต้เมื่อ TSV Kottern อยู่ทางตะวันตกและ EHF Passau อยู่ทางตะวันออก?",
    "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_en": "Who was in the East when TUS Geretsried II was in the South?",
    "question_th": "ใครอยู่ตะวันออกเมื่อ TUS Geretsried II อยู่ทางใต้?",
    "context": "CREATE TABLE table_name_9 (east VARCHAR, south VARCHAR)"
  },
  {
    "answer": "SELECT west FROM table_name_32 WHERE east = \"esv gebensbach\"",
    "question_en": "Who was in the West when ESV Gebensbach was in the East?",
    "question_th": "ใครอยู่ทางตะวันตกเมื่อ ESV Gebensbach อยู่ทางตะวันออก?",
    "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_en": "What is the average Gold, when Nation is Hungary, and when Bronze is greater than 1?",
    "question_th": "ทองคำโดยเฉลี่ยคือเท่าไร เมื่อ Nation คือฮังการี และเมื่อ Bronze มากกว่า 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_en": "What is the average Total, when Nation is Soviet Union, and when Gold is greater than 9?",
    "question_th": "ผลรวมโดยเฉลี่ยคือเท่าใด เมื่อประเทศคือสหภาพโซเวียต และเมื่อทองมีค่ามากกว่า 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_en": "What is the total number of Bronze, when Silver is greater than 0, when Gold is greater than 3, and when Rank is 1?",
    "question_th": "จำนวนทองแดงทั้งหมดคือเท่าไร เมื่อเงินมากกว่า 0 เมื่อทองมากกว่า 3 และเมื่ออันดับเป็น 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_en": "What is the highest Bronze, when Total is less than 3, and when Silver is less than 0?",
    "question_th": "เหรียญทองแดงสูงสุดคืออะไร เมื่อคะแนนรวมน้อยกว่า 3 และเมื่อเงินน้อยกว่า 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_en": "What is the average Total, when Silver is greater than 4, and when Gold is greater than 16?",
    "question_th": "ผลรวมโดยเฉลี่ยคือเท่าใด เมื่อเงินมากกว่า 4 และเมื่อทองมากกว่า 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_en": "What is the sum of Silver, when Total is less than 1?",
    "question_th": "ผลรวมของ Silver เป็นเท่าใด เมื่อผลรวมน้อยกว่า 1?",
    "context": "CREATE TABLE table_name_84 (silver INTEGER, total INTEGER)"
  },
  {
    "answer": "SELECT day_4 FROM table_name_3 WHERE day_2 = \"paaq\"",
    "question_en": "What is day 4 when day 2 is PAAQ?",
    "question_th": "วันที่ 4 คือวันที่ 2 คือ 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_en": "What is the other value associated with a Christianity value of 10.24%?",
    "question_th": "ค่าอื่นที่เกี่ยวข้องกับค่าศาสนาคริสต์ 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_en": "What is the Judaism percentage associated with Buddhism at 0.01% and Other at 0.13%?",
    "question_th": "เปอร์เซ็นต์ศาสนายิวที่เกี่ยวข้องกับพุทธศาสนาที่ 0.01% และอื่น ๆ ที่ 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_en": "What is the percentage of Atheism associated with an other percentage of 0.08%?",
    "question_th": "เปอร์เซ็นต์ของลัทธิต่ำช้าเกี่ยวข้องกับเปอร์เซ็นต์อื่น ๆ ที่ 0.08% เป็นเท่าใด",
    "context": "CREATE TABLE table_name_90 (atheism VARCHAR, other VARCHAR)"
  },
  {
    "answer": "SELECT buddhism FROM table_name_6 WHERE christianity = \"52.32%\"",
    "question_en": "What is the percentage of Buddhists associated with a Christianity percentage of 52.32%?",
    "question_th": "เปอร์เซ็นต์ของชาวพุทธที่เกี่ยวข้องกับศาสนาคริสต์ร้อยละ 52.32% เป็นเท่าใด",
    "context": "CREATE TABLE table_name_6 (buddhism VARCHAR, christianity VARCHAR)"
  },
  {
    "answer": "SELECT judaism FROM table_name_2 WHERE christianity = \"2.51%\"",
    "question_en": "What is the percentage of Judaism associated with Christianity at 2.51%?",
    "question_th": "เปอร์เซ็นต์ของศาสนายิวที่เกี่ยวข้องกับศาสนาคริสต์ที่ 2.51% เป็นเท่าใด",
    "context": "CREATE TABLE table_name_2 (judaism VARCHAR, christianity VARCHAR)"
  },
  {
    "answer": "SELECT other FROM table_name_80 WHERE atheism = \"1.86%\"",
    "question_en": "What is the value of other religions associated with atheism at 1.86%?",
    "question_th": "ศาสนาอื่นๆ ที่เกี่ยวข้องกับพระเจ้าต่ำช้ามีมูลค่าเท่าใดที่ 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_en": "What is No. 2, when No. 9 is Mia?",
    "question_th": "หมายเลข 2 คืออะไร ในเมื่อหมายเลข 9 คือ มีอา?",
    "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_en": "What is No. 7, when No. 4 is Madison, and when No. 10 is Amelia?",
    "question_th": "หมายเลข 7 คืออะไร เมื่อหมายเลข 4 คือ Madison และหมายเลข 10 คือ 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_en": "What is No.1, when No. 2 is Emma, and when No. 7 is Olivia?",
    "question_th": "หมายเลข 1 คืออะไร หมายเลข 2 คือเอ็มม่า และหมายเลข 7 คือโอลิเวีย",
    "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_en": "What is No. 5, when No. 2 is Olivia, when No. 4 is Ava, and when No. 6 is Abigail?",
    "question_th": "หมายเลข 5 คืออะไร เมื่อหมายเลข 2 คือโอลิเวีย หมายเลข 4 คือเอวา และหมายเลข 6 คืออาบิเกล",
    "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_en": "What is No. 3, when No. 7 is Abigail, and when No. 2 is Olivia?",
    "question_th": "หมายเลข 3 คืออะไร เมื่อหมายเลข 7 คือ Abigail และหมายเลข 2 คือ 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_en": "What is No. 3, when No. 7 is Abigail, and when No. 4 is Ava?",
    "question_th": "หมายเลข 3 คืออะไร เมื่อหมายเลข 7 คือ Abigail และหมายเลข 4 คือ 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_en": "How many Laps have Grid larger than 14, and a Rider of sylvain guintoli?",
    "question_th": "กริดใหญ่กว่า 14 กี่รอบ และมีไรเดอร์แห่งซิลเวน กินโทลีหนึ่งคน",
    "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_en": "Which Grid has Laps of 24, and a Rider of marco melandri?",
    "question_th": "กริดคนไหนที่มีรอบ 24 และไรเดอร์ของ 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_en": "Which Grid has Laps smaller than 24, and a Time of retirement?",
    "question_th": "กริดใดมีรอบน้อยกว่า 24 และมีเวลาเกษียณ?",
    "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_en": "Which Grid has a Rider of randy de puniet, and Laps smaller than 24?",
    "question_th": "กริดคนไหนมี Rider ของ Randy de Puniet และ Laps น้อยกว่า 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_en": "What was the type of surface played on for the week of March 17?",
    "question_th": "ประเภทของพื้นผิวที่เล่นในสัปดาห์วันที่ 17 มีนาคมคืออะไร?",
    "context": "CREATE TABLE table_name_23 (surface VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_14 WHERE week = \"august 4\"",
    "question_en": "What was the tournament for the week of August 4?",
    "question_th": "การแข่งขันในสัปดาห์วันที่ 4 สิงหาคมคืออะไร?",
    "context": "CREATE TABLE table_name_14 (tournament VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_85 WHERE finalist = \"richard krajicek\"",
    "question_en": "Which tournament had Richard Krajicek as a finalist?",
    "question_th": "ทัวร์นาเมนต์ใดที่มี Richard Krajicek เข้ารอบสุดท้าย?",
    "context": "CREATE TABLE table_name_85 (tournament VARCHAR, finalist VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_25 WHERE home = \"detroit\"",
    "question_en": "On what date did Detroit play at home?",
    "question_th": "ดีทรอยต์เล่นในบ้านวันไหน?",
    "context": "CREATE TABLE table_name_25 (date VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_81 WHERE date = \"june 9\"",
    "question_en": "Who was the home team on June 9?",
    "question_th": "วันที่ 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_en": "What was the money value that went along with the score of 68-67-69-76=280?",
    "question_th": "มูลค่าเงินที่ตามมาด้วยคะแนน 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_en": "What score did Leonard Thompson have when he won $9,000?",
    "question_th": "Leonard Thompson ได้คะแนนเท่าไรเมื่อเขาชนะรางวัล 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_en": "What date had a record of 15-14-4?",
    "question_th": "วันที่เท่าไหร่มีบันทึก 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_en": "What is the fame number when the Montreal Canadiens were the opponent?",
    "question_th": "หมายเลขชื่อเสียงเมื่อมอนทรีออลชาวแคนาดาเป็นคู่ต่อสู้คืออะไร?",
    "context": "CREATE TABLE table_name_56 (game VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_43 WHERE game = 35",
    "question_en": "What is the Score of game 35?",
    "question_th": "คะแนนของเกม 35 คืออะไร?",
    "context": "CREATE TABLE table_name_43 (score VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT AVG(overall) FROM table_name_69 WHERE college = \"miami (fl)\"",
    "question_en": "What is the average oveall pick for players from the college of Miami (FL)?",
    "question_th": "การเลือกโดยรวมโดยเฉลี่ยสำหรับผู้เล่นจากวิทยาลัยไมอามี (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_en": "Which player was drafted overall from the college of Nebraska in a round under 6, pick of 15, and overall under 224?",
    "question_th": "ผู้เล่นคนใดที่ถูกเกณฑ์ทหารโดยรวมจากวิทยาลัยเนแบรสกาในรอบต่ำกว่า 6 คน เลือกจาก 15 คน และคะแนนรวมทั้งหมดต่ำกว่า 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_en": "What is the lowest overall draft pick number for terry daniels who was picked in round 10?",
    "question_th": "หมายเลขดราฟท์รวมต่ำสุดของเทอร์รี่ แดเนียลส์ที่ถูกเลือกในรอบ 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_en": "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?",
    "question_th": "ผลรวมของรอบที่ดราฟต์คัดเลือกมาจากวิทยาลัยแห่งเทนเนสซีและมีจำนวนการเลือกโดยรวมมากกว่า 153 และเลือกน้อยกว่า 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_en": "What position did the draft pick number play that was overall pick number 133?",
    "question_th": "หมายเลขดราฟต์เล่นตำแหน่งใดโดยรวมเลือกหมายเลข 133",
    "context": "CREATE TABLE table_name_20 (position VARCHAR, overall VARCHAR)"
  },
  {
    "answer": "SELECT MIN(overall) FROM table_name_91 WHERE round = 8",
    "question_en": "What is the overall pick number for the player who was picked on round 8?",
    "question_th": "หมายเลขการเลือกโดยรวมของผู้เล่นที่ถูกเลือกในรอบที่ 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_en": "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?",
    "question_th": "ผู้เล่นที่มีตำแหน่ง OT มาจากวิทยาลัยใด โดยเลือกหมายเลขน้อยกว่า 12 และหมายเลขเลือกรวมมากกว่า 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_en": "WHAT IS THE APPOINTMENT DATE WITH A PRE-SEASON POSITION, AND REPLACED BY THOMAS THOMASBERG?",
    "question_th": "วันที่ได้รับการแต่งตั้งสำหรับตำแหน่งพรีซีซั่น และแทนที่โดยโธมัส โธมัสเบิร์ก?",
    "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_en": "WHAT IS THE APPOINTMENT DATE FOR AC HORSENS?",
    "question_th": "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_en": "WHAT TEAM HAS 12TH TABLE POSITION AND REPLACED BY OVE PEDERSEN?",
    "question_th": "ทีมใดมีตำแหน่งในตารางที่ 12 และถูกแทนที่โดย 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_en": "What was the score when Calgary was visiting team and Niittymaki had the decision?",
    "question_th": "ตอนที่คัลการีเป็นทีมเยือนและนิตติมากิตัดสินใจทำสกอร์เท่าไหร่?",
    "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_en": "What is the score when Biron got the decision and Philadelphia was the visitor on March 1?",
    "question_th": "เมื่อบีรอนตัดสินใจแล้วฟิลาเดลเฟียเป็นแขกรับเชิญเมื่อวันที่ 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_en": "What is the attendance when Pittsburgh is the home team?",
    "question_th": "การเข้าร่วมงานเมื่อพิตต์สเบิร์กเป็นเจ้าบ้าน?",
    "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_en": "What was the Attendance after Week 4 on October 10, 1971?",
    "question_th": "ผู้เข้าร่วมหลังจากสัปดาห์ที่ 4 ในวันที่ 10 ตุลาคม พ.ศ. 2514 เป็นเท่าใด",
    "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_en": "What was the Attendance in the game against the New Orleans Saints?",
    "question_th": "ผู้เข้าร่วมในเกมกับนิวออร์ลีนส์เซนต์สเป็นอย่างไรบ้าง?",
    "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_en": "What is the Eagle Riders character voiced by Japanese voice actor Katsuji Mori?",
    "question_th": "ตัวละคร Eagle Riders ที่พากย์เสียงโดยนักพากย์ชาวญี่ปุ่น 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_en": "Which weapon was used when the Battle of the Planets was Jason?",
    "question_th": "อาวุธใดที่ใช้เมื่อ Battle of the Planets คือ 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_en": "Who was the voice actor (ADV TV/Sentai OVA dub) for the Gatchaman, jun?",
    "question_th": "ใครคือนักพากย์ (พากย์ ADV TV/Sentai OVA) ของ Gatchaman จุน?",
    "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_en": "Which Japanese voice actor had the Mecha of airplane?",
    "question_th": "นักพากย์ชาวญี่ปุ่นคนไหนที่มีหุ่นยนต์ของเครื่องบิน?",
    "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_en": "Which 1st leg has a Team 1 of drita?",
    "question_th": "เลก 1 ใดมีทีม 1 ของดริตา?",
    "context": "CREATE TABLE table_name_3 (team_1 VARCHAR)"
  },
  {
    "answer": "SELECT team_2 FROM table_name_76 WHERE team_1 = \"vardar\"",
    "question_en": "Which Team 2 has a Team 1 of vardar?",
    "question_th": "ทีม 2 ไหนมีทีม 1 วาร์ดาร์?",
    "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_en": "What years was the jersey number(s) smaller than 3?",
    "question_th": "หมายเลขเสื้อปีใดน้อยกว่า 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_en": "Which position was played by the player wearing jersey number 40?",
    "question_th": "นักเตะหมายเลข 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_en": "What pick number was the rhp with a hometown/school of university of hawaii?",
    "question_th": "หมายเลขที่เลือกคือบ้านเกิด/โรงเรียนของมหาวิทยาลัยฮาวาย",
    "context": "CREATE TABLE table_name_42 (pick INTEGER, position VARCHAR, hometown_school VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_75 WHERE pick = 10",
    "question_en": "What player was drafted number 10?",
    "question_th": "นักเตะคนไหนถูกดราฟท์หมายเลข 10?",
    "context": "CREATE TABLE table_name_75 (player VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT pick FROM table_name_96 WHERE hometown_school = \"concordia college\"",
    "question_en": "What number pick was the player with the hometown school of concordia college?",
    "question_th": "ผู้เล่นจากโรงเรียนบ้านเกิดของวิทยาลัยคอนคอร์เดียเลือกหมายเลขใด",
    "context": "CREATE TABLE table_name_96 (pick VARCHAR, hometown_school VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_34 WHERE game = 66",
    "question_en": "What is the date of game 66?",
    "question_th": "เกม 66 วันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_34 (date VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_name_34 WHERE date = \"february 21\"",
    "question_en": "What is the game on February 21?",
    "question_th": "เกมวันที่ 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_en": "What is the average number of draws that has a played entry of less than 30 and a goal difference greater than 2?",
    "question_th": "จำนวนเสมอโดยเฉลี่ยที่มีการเข้าเล่นน้อยกว่า 30 และผลต่างประตูมากกว่า 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_en": "What is the average number played that has fewer than 11 wins, more than 42 goals, more than 22 points, and 11 losses?",
    "question_th": "ค่าเฉลี่ยการเล่นที่ชนะน้อยกว่า 11 ครั้ง มากกว่า 42 ประตู มากกว่า 22 แต้ม และแพ้ 11 ครั้ง คือเท่าไร?",
    "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_en": "What is the total of the goal difference entries for entries with fewer than 49 goals and position smaller than 8?",
    "question_th": "ผลต่างประตูรวมสำหรับรายการที่น้อยกว่า 49 ประตูและตำแหน่งน้อยกว่า 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_en": "What is the lowest played for the entry with position of 2 and fewer than 9 losses?",
    "question_th": "การเล่นที่ต่ำที่สุดสำหรับรายการที่มีตำแหน่ง 2 และแพ้น้อยกว่า 9 คือเท่าใด",
    "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_en": "What is the total number of losses for entries that have 12 wins and a goal difference smaller than -14?",
    "question_th": "จำนวนการแพ้ทั้งหมดสำหรับรายการที่ชนะ 12 ครั้งและผลต่างประตูน้อยกว่า -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_en": "What are the goals for Pelletieri in ARG?",
    "question_th": "เป้าหมายของ Pelletieri ใน 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_en": "What are the fewest ends with an App(L/C/E) of 51 (44/6/1)?",
    "question_th": "App(L/C/E) ที่ 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_en": "Who has a nationality of GRE and an App(L/C/E) of 49 (40/8/1)?",
    "question_th": "ใครมีสัญชาติ GRE และ App (L/C/E) 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_en": "What are the gaols(L/C/E) with an App(L/C/E) of 55 (47/5/3)?",
    "question_th": "Gaols(L/C/E) ที่มี App(L/C/E) เท่ากับ 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_en": "who won the lifetime achievement in the year 1998?",
    "question_th": "ใครชนะความสำเร็จตลอดชีวิตในปี 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_en": "Constructor with total time of 2:45.416",
    "question_th": "ตัวสร้างด้วยเวลารวม 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_en": "Driver at larger than 10 with a Q1 of 18.",
    "question_th": "คนขับที่มากกว่า 10 โดยมี Q1 เป็น 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_en": "Who was the opponent when the record was 55-14?",
    "question_th": "คู่ต่อสู้เมื่อทำสถิติ 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_en": "What was the game number when record is 59-15?",
    "question_th": "หมายเลขเกมเมื่อบันทึกคือ 59-15 คืออะไร?",
    "context": "CREATE TABLE table_name_71 (game INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_62 WHERE record = \"51-14\"",
    "question_en": "What is the date that the record was 51-14?",
    "question_th": "สถิติ 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_en": "What is the sum of Pick #, when College is Laurier?",
    "question_th": "ผลรวมของ Pick # เมื่อวิทยาลัยเป็น 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_en": "What is CFL Team, when Pick # is greater than 34, and when College is Boise State?",
    "question_th": "ทีม CFL คืออะไร เมื่อ Pick # มากกว่า 34 และเมื่อ College เป็น 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_en": "What is the lowest Pick #, when Position is REC, and when CFL Team is Hamilton Tiger-Cats?",
    "question_th": "ตัวเลือก # ต่ำสุดคืออะไร เมื่อตำแหน่งคือ REC และเมื่อทีม CFL คือ 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_en": "What is Player, when Position is DB, and when College is Saint Mary's?",
    "question_th": "ผู้เล่นคืออะไร เมื่อตำแหน่งเป็น DB และเมื่อวิทยาลัยเป็นของ 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_en": "What is Position, when Pick # is less than 40, and when College is Western?",
    "question_th": "ตำแหน่งคืออะไร เมื่อ Pick # น้อยกว่า 40 และเมื่อวิทยาลัยเป็น 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_en": "Which Date has a Time of 12:00?",
    "question_th": "วันใดมีเวลา 12.00 น.",
    "context": "CREATE TABLE table_name_80 (date VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT set_2 FROM table_name_38 WHERE set_1 = \"25–20\"",
    "question_en": "Set 1 of 25–20, what was Set 2?",
    "question_th": "ชุดที่ 1 จาก 25–20 ชุดที่ 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_en": "What royal house did Shaokang belong to?",
    "question_th": "Shaogang อยู่ในราชวงศ์ใด?",
    "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_en": "What is the highest rank of a building erected in 1976 with fewer than 21 floors?",
    "question_th": "อาคารที่สูงที่สุดที่สร้างขึ้นในปี 1976 โดยมีชั้นน้อยกว่า 21 ชั้นคืออาคารใด",
    "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_en": "What team was the opponent when February shows more than 2, with a game number less than 55?",
    "question_th": "คู่ต่อสู้คือทีมใดเมื่อเดือนกุมภาพันธ์แสดงมากกว่า 2 โดยมีหมายเลขเกมน้อยกว่า 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_en": "What is the game number when the Toronto Maple Leafs were the opponent, and the February was less than 17?",
    "question_th": "ตอนที่โตรอนโต เมเปิล ลีฟส์เป็นคู่ต่อสู้คือหมายเลขเกมอะไร และเดือนกุมภาพันธ์น้อยกว่า 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_en": "What is the number of the game when the opponent was the New York Islanders, and a February less than 24?",
    "question_th": "เมื่อคู่ต่อสู้เป็นชาวเกาะนิวยอร์กจำนวนเกมเท่าไรและน้อยกว่า 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_en": "What is the lowest game number when the record was 26-24-9?",
    "question_th": "หมายเลขเกมต่ำสุดเมื่อบันทึกคือ 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_en": "What rank has less than 16 gold, more than 2 bronze and silver, and a total of 14?",
    "question_th": "อันดับใดมีน้อยกว่า 16 เหรียญทอง มากกว่า 2 เหรียญทองแดงและเงิน รวมทั้งหมด 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_en": "What's the silver for rank 1 with less than 2 bronze?",
    "question_th": "เงินสำหรับอันดับ 1 ที่มีน้อยกว่า 2 เหรียญทองแดงคือเท่าไร?",
    "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_en": "What's the lowest total when there's less than 16 bronze and more than 6 silver?",
    "question_th": "ผลรวมต่ำสุดเมื่อมีน้อยกว่า 16 เหรียญทองแดง และมากกว่า 6 เหรียญเงิน คืออะไร?",
    "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_en": "What's the lowest gold with a total over 15 and less than 16 silver?",
    "question_th": "ทองคำต่ำสุดที่มียอดรวมมากกว่า 15 และน้อยกว่า 16 เงินคืออะไร?",
    "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_en": "Which Gold has a Rank of 7, a Nation of italy, and a Silver smaller than 0?",
    "question_th": "ทองคำใดมีอันดับ 7 ประเทศอิตาลี และเงินที่น้อยกว่า 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_en": "Which Gold has a Total larger than 3, a Rank of total, and a Silver larger than 8?",
    "question_th": "ทองคำใดที่มีคะแนนรวมมากกว่า 3, อันดับทั้งหมด และเงินมากกว่า 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_en": "Which Club team has a Pick larger than 139?",
    "question_th": "ทีมสโมสรใดที่มี Pick มากกว่า 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_en": "Which Nationality has a Pick larger than 109, and a Round smaller than 5?",
    "question_th": "สัญชาติใดที่มีตัวเลือกมากกว่า 109 และรอบที่เล็กกว่า 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_en": "Which school was Lawrence Roberts from ?",
    "question_th": "Lawrence Roberts มาจากโรงเรียนไหน",
    "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_en": "Which school was Chris Robinson from?",
    "question_th": "คริส โรบินสันมาจากโรงเรียนไหน",
    "context": "CREATE TABLE table_name_60 (school_club_team VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_79 WHERE player = \"chris robinson\"",
    "question_en": "What was the position that Chris Robinson played?",
    "question_th": "คริส โรบินสัน เล่นตำแหน่งอะไร?",
    "context": "CREATE TABLE table_name_79 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT years_for_grizzlies FROM table_name_27 WHERE player = \"zach randolph\"",
    "question_en": "In which years did Zach Randolph play for the Grizzlies?",
    "question_th": "Zach Randolph เล่นให้กับ 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_en": "Which player played for Western Kentucky?",
    "question_th": "ผู้เล่นคนไหนเคยเล่นให้กับ 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_en": "What was the score on January 14 when the Chicago Black Hawks were home against the New York Rangers?",
    "question_th": "วันที่ 14 ม.ค. ชิคาโก้ แบล็ค ฮอว์กส์ เปิดบ้านพบกับ นิวยอร์ก เรนเจอร์ส สกอร์เท่าไหร่?",
    "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_en": "Who was the home team on February 18 that had a visitor of the Chicago Black Hawks?",
    "question_th": "เจ้าบ้านวันที่ 18 ก.พ. ที่มีทีมเยือน ชิคาโก้ แบล็คฮอกส์ คือใคร?",
    "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_en": "What is points diff when points against is 123?",
    "question_th": "แต้มต่างคืออะไรเมื่อแต้มต่อคือ 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_en": "Which team has 123 points agaibst the other team?",
    "question_th": "ทีมใดมี 123 แต้มเหนือทีมอื่น?",
    "context": "CREATE TABLE table_name_83 (team VARCHAR, points_against VARCHAR)"
  },
  {
    "answer": "SELECT points_against FROM table_name_67 WHERE try_diff = \"+23\"",
    "question_en": "What is the points against when try diff is +23?",
    "question_th": "อะไรคือคะแนนเมื่อ try diff คือ +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_en": "What is points when try diff is +23?",
    "question_th": "คะแนนเมื่อ try diff คือ +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_en": "What is points sgsinst when points diff is +96?",
    "question_th": "คะแนนจะเป็นอย่างไรเมื่อคะแนนต่างกันคือ +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_en": "How many laps led when the Grid was 15?",
    "question_th": "เมื่อกริดอายุ 15 นำไปกี่รอบ?",
    "context": "CREATE TABLE table_name_29 (laps VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT time_retired FROM table_name_84 WHERE points = \"32\"",
    "question_en": "Name the Time/Retired when the points were 32.",
    "question_th": "ตั้งชื่อเวลา/เกษียณเมื่อคะแนนเป็น 32",
    "context": "CREATE TABLE table_name_84 (time_retired VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT car_no FROM table_name_13 WHERE points = \"24\"",
    "question_en": "What car number had 24 points?",
    "question_th": "รถหมายเลขอะไรมี 24 คะแนน?",
    "context": "CREATE TABLE table_name_13 (car_no VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_name_75 WHERE grid = \"1\"",
    "question_en": "How many points when the Grid was 1?",
    "question_th": "เมื่อกริดเป็น 1 ได้กี่แต้ม?",
    "context": "CREATE TABLE table_name_75 (points VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT AVG(game) FROM table_name_4 WHERE october = 19",
    "question_en": "What is the average game number that was on october 19?",
    "question_th": "หมายเลขเกมเฉลี่ยในวันที่ 19 ตุลาคมคือเท่าไร?",
    "context": "CREATE TABLE table_name_4 (game INTEGER, october VARCHAR)"
  },
  {
    "answer": "SELECT SUM(october) FROM table_name_19 WHERE opponent = \"pittsburgh penguins\"",
    "question_en": "What is the sum of October, when Opponent is \"Pittsburgh Penguins\"?",
    "question_th": "ผลรวมของเดือนตุลาคมเป็นเท่าใด เมื่อฝ่ายตรงข้ามคือ \"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_en": "What is the sum of Game, when Record is \"2-1-1\", and when October is less than 21?",
    "question_th": "ผลรวมของเกมเมื่อสถิติเป็น \"2-1-1\" และเมื่อเดือนตุลาคมน้อยกว่า 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_en": "What is Opponent, when October is less than 31, and when Game is greater than 7?",
    "question_th": "คู่ต่อสู้คืออะไร เมื่อเดือนตุลาคมน้อยกว่า 31 และเมื่อเกมมีค่ามากกว่า 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_en": "What is the tie number for the home team Orient?",
    "question_th": "เจ้าบ้านโอเรียนท์เสมอกันที่หมายเลขอะไร?",
    "context": "CREATE TABLE table_name_35 (tie_no VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_35 WHERE away_team = \"chelsea\"",
    "question_en": "What is the score for the away team Chelsea?",
    "question_th": "ทีมเยือน เชลซี สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_35 (score VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_81 WHERE tie_no = \"29\"",
    "question_en": "What is the away team for the tie no. 29?",
    "question_th": "ทีมเยือนสำหรับเสมอหมายเลขคืออะไร 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_en": "What is the coronie with a 0.7% nickerie?",
    "question_th": "โคโรนีที่มีนิเคอรี่ 0.7% คืออะไร?",
    "context": "CREATE TABLE table_name_92 (coronie VARCHAR, nickerie VARCHAR)"
  },
  {
    "answer": "SELECT marowijne FROM table_name_2 WHERE saramacca = \"18.8%\"",
    "question_en": "What is the marowijne with an 18.8% saramacca?",
    "question_th": "marowijne ที่มีซารามัคคา 18.8% คืออะไร?",
    "context": "CREATE TABLE table_name_2 (marowijne VARCHAR, saramacca VARCHAR)"
  },
  {
    "answer": "SELECT para FROM table_name_70 WHERE sipaliwini = \"0.1%\"",
    "question_en": "What is the para with a 0.1% sipaliwini?",
    "question_th": "พาราที่มีซิปาลิวินี 0.1% คืออะไร?",
    "context": "CREATE TABLE table_name_70 (para VARCHAR, sipaliwini VARCHAR)"
  },
  {
    "answer": "SELECT religion FROM table_name_65 WHERE para = \"56.5%\"",
    "question_en": "What religion has a para of 56.5%?",
    "question_th": "ศาสนาใดมีพารา 56.5%?",
    "context": "CREATE TABLE table_name_65 (religion VARCHAR, para VARCHAR)"
  },
  {
    "answer": "SELECT suriname FROM table_name_62 WHERE brokopondo = \"16.8%\"",
    "question_en": "What is the suriname with a 16.8% brokopondo?",
    "question_th": "ซูรินาเมที่มี brokopondo 16.8% คืออะไร?",
    "context": "CREATE TABLE table_name_62 (suriname VARCHAR, brokopondo VARCHAR)"
  },
  {
    "answer": "SELECT AVG(rank) FROM table_name_41 WHERE gold < 0",
    "question_en": "What's the rank average when the gold medals are less than 0?",
    "question_th": "อันดับเฉลี่ยเมื่อเหรียญทองน้อยกว่า 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_en": "What is the total rank of Hungary (HUN) when the bronze medals were less than 0?",
    "question_th": "ฮังการี (HUN) ตอนที่เหรียญทองแดงต่ำกว่า 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_en": "What is the sum of the total number of medals when silver is less than 0?",
    "question_th": "ผลรวมของจำนวนเหรียญทั้งหมดเมื่อเงินน้อยกว่า 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_en": "What is Born-Died, when Term Start is 4 December 1941?",
    "question_th": "Born-Died คืออะไร เมื่อเริ่มภาคเรียนคือวันที่ 4 ธันวาคม พ.ศ. 2484",
    "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_en": "What is Term Start, when Name is Prime Ministers 1939 - 1943?",
    "question_th": "Term Start คืออะไร เมื่อชื่อนายกรัฐมนตรี พ.ศ. 2482 - 2486?",
    "context": "CREATE TABLE table_name_38 (term_start VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT born_died FROM table_name_27 WHERE name = \"maliq bushati\"",
    "question_en": "What is Born-Died, when Name is Maliq Bushati?",
    "question_th": "Born-Died คืออะไร เมื่อชื่อ 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_en": "What is Term End, when Political Party is Albanian Fascist Party, and when Term Start is 12 April 1939?",
    "question_th": "การสิ้นสุดวาระคืออะไร เมื่อพรรคการเมืองคือพรรคฟาสซิสต์แอลเบเนีย และเมื่อเริ่มวาระคือวันที่ 12 เมษายน พ.ศ. 2482",
    "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_en": "What is Term Start, when Born-Died is Prime Ministers 1939 - 1943?",
    "question_th": "Term Start คืออะไร เมื่อเกิด-เสียชีวิตเป็นนายกรัฐมนตรี พ.ศ. 2482 - 2486",
    "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_en": "What is Born-Died, when Term End is 19 January 1943?",
    "question_th": "เกิด-ตาย คืออะไร เมื่อหมดวาระคือวันที่ 19 มกราคม 2486?",
    "context": "CREATE TABLE table_name_60 (born_died VARCHAR, term_end VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_2 WHERE record = \"5–4–3\"",
    "question_en": "What is the Score of the game with a Record of 5–4–3?",
    "question_th": "คะแนนของเกมที่มีสถิติ 5–4–3 คืออะไร?",
    "context": "CREATE TABLE table_name_2 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_8 WHERE date = \"january 23\"",
    "question_en": "What is the Score on January 23?",
    "question_th": "คะแนนวันที่ 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–4–4\"",
    "question_en": "What is the Visitor of the Montreal Canadiens Home game with a Record of 6–4–4?",
    "question_th": "ผู้มาเยือนเกมเหย้าของมอนทรีออล คานาเดียนส์ ด้วยสถิติ 6–4–4 คืออะไร?",
    "context": "CREATE TABLE table_name_78 (visitor VARCHAR, home VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_20 WHERE record = \"12–7–6\"",
    "question_en": "What is the Date of the game with a Record of 12–7–6?",
    "question_th": "วันที่ของเกมที่มีสถิติ 12–7–6 คืออะไร?",
    "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_en": "What is the Record of the Montreal Canadiens Home game on March 23?",
    "question_th": "บันทึกของเกมเหย้ามอนทรีออลชาวแคนาดาในวันที่ 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_en": "What tournament location has 1 stroke as the margin of victory, with 1,200,000 as the purse ($)?",
    "question_th": "สถานที่ทัวร์นาเมนต์ใดที่มี 1 สโตรคเป็นส่วนต่างของชัยชนะ โดยมี 1,200,000 เป็นเงินในกระเป๋า ($)?",
    "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_en": "What tournament location has south korea as the country?",
    "question_th": "สถานที่จัดทัวร์นาเมนต์ใดที่มีเกาหลีใต้เป็นประเทศ?",
    "context": "CREATE TABLE table_name_43 (tournament_location VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT AVG(land_area__km²_) FROM table_name_98 WHERE country = \"switzerland\" AND population_density__pop_per_km²_ < 188",
    "question_en": "What is the land area of Switzerland with a population density fewer than 188 km²?",
    "question_th": "พื้นที่ดินของสวิตเซอร์แลนด์ที่มีความหนาแน่นของประชากรน้อยกว่า 188 ตารางกิโลเมตรคือพื้นที่ใด",
    "context": "CREATE TABLE table_name_98 (land_area__km²_ INTEGER, country VARCHAR, population_density__pop_per_km²_ VARCHAR)"
  },
  {
    "answer": "SELECT lost FROM table_name_67 WHERE points = \"86\"",
    "question_en": "What lost has 86 points?",
    "question_th": "แพ้อะไรมี 86 แต้ม?",
    "context": "CREATE TABLE table_name_67 (lost VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT try_bonus FROM table_name_82 WHERE tries_against = \"37\"",
    "question_en": "With 37 tries against, what is the try bonus?",
    "question_th": "เมื่อพยายามต่อต้าน 37 ครั้ง โบนัสการลองคืออะไร?",
    "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_en": "How many points against when 41 is the tries for?",
    "question_th": "มีกี่คะแนนเมื่อพยายาม 41?",
    "context": "CREATE TABLE table_name_59 (points_against VARCHAR, tries_for VARCHAR)"
  },
  {
    "answer": "SELECT losing_bonus FROM table_name_52 WHERE \"lost\" = \"lost\"",
    "question_en": "With a lost of lost what was the losing bonus?",
    "question_th": "กับการแพ้จากการแพ้ โบนัสการแพ้คืออะไร?",
    "context": "CREATE TABLE table_name_52 (losing_bonus VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_name_25 WHERE points_for = \"points for\"",
    "question_en": "What points has points for as points for?",
    "question_th": "คะแนนอะไรมีคะแนนเป็นคะแนนสำหรับ?",
    "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_en": "What is the points when the club is Barry RFC with a 5 as the try bonus?",
    "question_th": "อะไรคือแต้มเมื่อสโมสรเป็น Barry RFC โดยมี 5 เป็นโบนัสลอง?",
    "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_en": "What is the sum of Gold, when Silver is greater than 6, when Rank is 1, and when Bronze is less than 61?",
    "question_th": "ผลรวมของทองคำ เมื่อเงินมากกว่า 6 เมื่ออันดับเป็น 1 และเมื่อทองแดงน้อยกว่า 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_en": "What is the lowest Silver, when Bronze is 1, and when Total is less than 3?",
    "question_th": "เงินต่ำสุดคือเท่าไร เมื่อ Bronze คือ 1 และเมื่อ Total น้อยกว่า 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_en": "What is the average Gold, when Silver is less than 107, when Bronze is greater than 42, and when Rank is 3?",
    "question_th": "ทองคำโดยเฉลี่ยคือเท่าใด เมื่อ Silver น้อยกว่า 107 เมื่อ Bronze มากกว่า 42 และเมื่ออันดับคือ 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_en": "Which manufacturer has more than 28 laps and less than 9 grids with jeremy mcwilliams?",
    "question_th": "ผู้ผลิตรายใดที่มี jeremy mcwilliams มากกว่า 28 รอบและน้อยกว่า 9 กริด?",
    "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_en": "What is the grid average with a +1 lap time and more than 27 laps?",
    "question_th": "กริดเฉลี่ยที่มีเวลารอบ +1 และมากกว่า 27 รอบเป็นเท่าใด?",
    "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_en": "Which lap has more than 17 grids with tetsuya harada?",
    "question_th": "รอบไหนมี เท็ตสึยะ ฮาราดะ มากกว่า 17 ตาราง?",
    "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_en": "Prior to 1978, what is the Danish of the Film directed by Bent Christensen?",
    "question_th": "ก่อนปี 1978 ภาพยนตร์ภาษาเดนมาร์กที่กำกับโดย 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_en": "Who is the Director of the Olsen Gang Sees Red?",
    "question_th": "ใครคือผู้อำนวยการกลุ่ม 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_en": "What is the submission Year of the Film The Dark Side of the Moon directed by Erik Clausen?",
    "question_th": "อะไรคือปีของภาพยนตร์ The Dark Side of the Moon ที่กำกับโดย 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_en": "What is the Year of submission of the Film The Art of Crying?",
    "question_th": "ปีที่ส่งภาพยนตร์เรื่อง 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_en": "Which Home Town had the weight of 201?",
    "question_th": "บ้านเกิดไหนมีน้ำหนัก 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_en": "What Position did the sophomore Darnell Jackson play?",
    "question_th": "Darnell Jackson นักเรียนปีที่สองเล่นตำแหน่งอะไร",
    "context": "CREATE TABLE table_name_48 (position VARCHAR, year VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT 2007 FROM table_name_16 WHERE 1999 = \"—\" AND model = \"seat mii\"",
    "question_en": "what kind of 2007 has a 1999 of —, and a Model of seat mii?",
    "question_th": "ปี 2007 รุ่นไหนมีปี 1999 — และรุ่นที่นั่ง mii ล่ะ?",
    "context": "CREATE TABLE table_name_16 (model VARCHAR)"
  },
  {
    "answer": "SELECT 2005 FROM table_name_39 WHERE 2006 = \"126,511\"",
    "question_en": "Which 2005 has a 2006 of 126,511?",
    "question_th": "ปี 2548 ใดมีปี 2549 จาก 126,511",
    "context": "CREATE TABLE table_name_39 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2004 FROM table_name_19 WHERE 2003 = \"36,026\"",
    "question_en": "Name the 2004 which has a 2003 of 36,026?",
    "question_th": "ตั้งชื่อปี 2547 ซึ่งมีปี 2546 เป็น 36,026 หรือไม่?",
    "context": "CREATE TABLE table_name_19 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2007 FROM table_name_14 WHERE 2011 = \"191,183\"",
    "question_en": "Name the 2007 which has a 2011 of 191,183? Question 4",
    "question_th": "ตั้งชื่อปี 2550 ซึ่งมีปี 2554 เป็น 191,183? คำถามที่ 4",
    "context": "CREATE TABLE table_name_14 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_93 WHERE 2002 = \"—\" AND model = \"seat marbella\"",
    "question_en": "Name the 2011 which has a 2002 of —, and a Model of seat marbella?",
    "question_th": "ตั้งชื่อปี 2011 ซึ่งมีปี 2002 ของ — และรุ่นของที่นั่ง marbella?",
    "context": "CREATE TABLE table_name_93 (model VARCHAR)"
  },
  {
    "answer": "SELECT 2003 FROM table_name_33 WHERE 2000 = \"—\" AND 2007 = \"—\" AND 2010 = \"—\"",
    "question_en": "Name the 2003 which has a 2000 of —, and a 2007 of —, and a 2010 of —?",
    "question_th": "ตั้งชื่อปี 2003 ซึ่งมี 2000 เป็น — และ 2007 เป็น — และ 2010 เป็น —?",
    "context": "CREATE TABLE table_name_33 (Id VARCHAR)"
  },
  {
    "answer": "SELECT affiliation FROM table_name_63 WHERE nickname = \"dukes\"",
    "question_en": "Who is affiliated with the Dukes?",
    "question_th": "ใครอยู่ในเครือของ Dukes?",
    "context": "CREATE TABLE table_name_63 (affiliation VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_74 WHERE location = \"radford, va\"",
    "question_en": "What school is in Radford, Va?",
    "question_th": "โรงเรียนอะไรในแรดฟอร์ด รัฐเวอร์จิเนีย?",
    "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_en": "What school has a public nickname, founded after 1838 in Harrisonburg, Va?",
    "question_th": "โรงเรียนใดมีชื่อเล่นสาธารณะ ก่อตั้งหลังปี 1838 ในเมืองแฮร์ริสันเบิร์ก รัฐเวอร์จิเนีย",
    "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_en": "Lowest pick for mike flater?",
    "question_th": "ตัวเลือกต่ำสุดสำหรับ 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_en": "Who was the home team on January 2 with 23 points?",
    "question_th": "เจ้าบ้านวันที่ 2 ม.ค. มี 23 แต้มคือใคร?",
    "context": "CREATE TABLE table_name_57 (home VARCHAR, points VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_56 WHERE visitor = \"st. louis\"",
    "question_en": "What is the record when St. Louis is the visitor?",
    "question_th": "บันทึกเมื่อเซนต์หลุยส์เป็นผู้มาเยือนคืออะไร?",
    "context": "CREATE TABLE table_name_56 (record VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_25 WHERE date = \"november 1\"",
    "question_en": "What was the score for the game on November 1?",
    "question_th": "สกอร์เกมวันที่ 1 พฤศจิกายนเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_25 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_name_33 WHERE team = \"new jersey\"",
    "question_en": "What were the location and attendance for the game against New Jersey?",
    "question_th": "สถานที่และผู้เข้าชมเกมกับนิวเจอร์ซีย์คือที่ไหน?",
    "context": "CREATE TABLE table_name_33 (location_attendance VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_86 WHERE 2009 = \"grand slam tournaments\"",
    "question_en": "Where were the 2009 and 2011 Grand Slam Tournaments?",
    "question_th": "การแข่งขัน Grand Slam ปี 2009 และ 2011 อยู่ที่ไหน?",
    "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_en": "What is Second Vice President, when Third Vice President is \"Gen. Juan Alonso\", and when Inaugurated is \"15 March 1940\"?",
    "question_th": "รองประธานาธิบดีคนที่ 2 คืออะไร เมื่อรองประธานาธิบดีคนที่ 3 คือ \"พลเอก ฮวน อลอนโซ\" และเมื่อเข้ารับตำแหน่งคือ \"15 มีนาคม พ.ศ. 2483\"",
    "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_en": "What is Left Office, when Inaugurate is \"15 March 1930\"?",
    "question_th": "Left Office คืออะไร เมื่อเข้ารับตำแหน่งคือ \"15 มีนาคม พ.ศ. 2473\"?",
    "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_en": "What is Second Vice President, when Inaugurated is \"26 March 1928\"?",
    "question_th": "รองประธานคนที่ 2 คือใคร เมื่อเข้ารับตำแหน่งคือ \"26 มีนาคม พ.ศ. 2471\"?",
    "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_en": "What is Second Vice President, when Inaugurated is \"15 March 1935\"?",
    "question_th": "รองประธานคนที่ 2 คือใคร เมื่อเข้ารับตำแหน่งเมื่อ \"15 มีนาคม พ.ศ. 2478\"?",
    "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_en": "What is Third Vice President, when Inaugurated is \"15 March 1934\"?",
    "question_th": "รองประธานคนที่ 3 เมื่อเข้ารับตำแหน่งคือ \"15 มีนาคม พ.ศ. 2477\"?",
    "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_en": "What is Third Vice President, when Second Vice President is \"Baudelio Palma\"?",
    "question_th": "รองประธานคนที่สามคืออะไร ในเมื่อรองประธานคนที่สองคือ \"โบเดลิโอ ปาลมา\"?",
    "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_en": "What was the score of the game from July 18?",
    "question_th": "คะแนนของเกมตั้งแต่วันที่ 18 กรกฎาคมเป็นเท่าใด",
    "context": "CREATE TABLE table_name_30 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(attendance) FROM table_name_25 WHERE week = 9",
    "question_en": "What was the Attendance on Week 9?",
    "question_th": "การเข้าร่วมในสัปดาห์ที่ 9 คืออะไร?",
    "context": "CREATE TABLE table_name_25 (attendance INTEGER, week VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_49 WHERE result = \"w 13–0\"",
    "question_en": "What is the Opponent of the game with a Result of w 13–0?",
    "question_th": "ฝ่ายตรงข้ามของเกมที่ผลการแข่งขัน w 13–0 คืออะไร?",
    "context": "CREATE TABLE table_name_49 (opponent VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_92 WHERE january < 4",
    "question_en": "What was the score in January that was less than 4?",
    "question_th": "คะแนนเดือนมกราคมที่ต่ำกว่า 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_en": "Which date was the event that Yani won in a playoff over Yueh-Chyn Huang?",
    "question_th": "งานที่ Yani ชนะในรอบตัดเชือกเหนือ 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_en": "What is the latitude of the point with a longitude of 147.1w?",
    "question_th": "ละติจูดของจุดที่มีลองจิจูด 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_en": "What is ISBN UK, when Author is \"Dave Martin\", and when ISBN US is \"N/A\"?",
    "question_th": "ISBN UK คืออะไร เมื่อผู้แต่งคือ \"Dave Martin\" และเมื่อ ISBN US เป็น \"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_en": "What is ISBN US, when Title is \"Crisis In Space\"?",
    "question_th": "ISBN US คืออะไร เมื่อหัวข้อคือ \"วิกฤตในอวกาศ\"",
    "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_en": "What is Author, when TV Companions Featured is \"Peri Brown\", and when Title is \"Race Against Time\"?",
    "question_th": "ผู้แต่งคืออะไร เมื่อคู่หูทางทีวีนำเสนอคือ \"Peri Brown\" และเมื่อชื่อคือ \"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_en": "What is Title, when TV Companions Featured is \"K-9\"?",
    "question_th": "ชื่อคืออะไร เมื่อ TV Companions นำเสนอคือ \"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_en": "What is ISBN US, when Title is \"Mission To Venus\"?",
    "question_th": "ISBN US คืออะไร เมื่อหัวข้อคือ \"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_en": "What is TV Companions Featured, when Author is \"William Emms\"?",
    "question_th": "TV Companions นำเสนออะไรบ้าง เมื่อผู้แต่งคือ \"William Emms\"?",
    "context": "CREATE TABLE table_name_95 (tv_companions_featured VARCHAR, author VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_3 WHERE result = \"2–2\" AND venue = \"h\"",
    "question_en": "Which Date has a Result of 2–2, and a Venue of H?",
    "question_th": "วันที่ใดมีผลลัพธ์เป็น 2–2 และสถานที่จัดงานเป็น 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_en": "Which player had a to par score larger than 7 and a total score of 298?",
    "question_th": "ผู้เล่นคนใดมีคะแนนพาร์มากกว่า 7 และคะแนนรวม 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_en": "In which location did he win the Superbrawl 16 event?",
    "question_th": "เขาชนะการแข่งขัน Superbrawl 16 ในสถานที่ใด",
    "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_en": "What was his record when the method was technical submission (forearm choke)?",
    "question_th": "ประวัติของเขาเป็นอย่างไรเมื่อใช้วิธีการยื่นทางเทคนิค (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_en": "Who was the opponent in round 2 of the UFC 49 event?",
    "question_th": "คู่ต่อสู้ในรอบที่ 2 ของรายการ UFC 49 คือใคร?",
    "context": "CREATE TABLE table_name_1 (opponent VARCHAR, round VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_26 WHERE opponent = \"joe stevenson\"",
    "question_en": "What was the round when he fought Joe Stevenson?",
    "question_th": "รอบที่เขาต่อสู้กับโจสตีเวนสันเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_26 (round VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_70 WHERE score = \"94-74 w\"",
    "question_en": "On which date was the score 94-74 w?",
    "question_th": "คะแนน 94-74w ออกวันไหน?",
    "context": "CREATE TABLE table_name_70 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_name_47 WHERE opponent = \"at chicago bulls\"",
    "question_en": "When they played at Chicago Bulls, what was the Location/Attendance?",
    "question_th": "ตอนที่พวกเขาเล่นที่ชิคาโก้ บูลส์ ตำแหน่ง/การเข้าร่วมคืออะไร?",
    "context": "CREATE TABLE table_name_47 (location_attendance VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_98 WHERE game = \"44\"",
    "question_en": "Who was the opponent in Game 44?",
    "question_th": "คู่ต่อสู้ในเกมที่ 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_en": "Who was the opponent when they played at Delta Center with a record of 27-13?",
    "question_th": "คู่ต่อสู้เมื่อเล่นที่เดลต้าเซ็นเตอร์คือใครด้วยสถิติ 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_en": "What was the date for Game 41?",
    "question_th": "เกมที่ 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_en": "Which Opposing Team has an Against of 3, and a Date of 11 february 1950?",
    "question_th": "ทีมตรงข้ามใดมีแต้มต่อ 3 และวันที่ 11 กุมภาพันธ์ 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_en": "Which Venue has an Opposing Team of manchester united, and a Round of 5th round replay?",
    "question_th": "สนามไหนมีทีมแมนเชสเตอร์ยูไนเต็ดเป็นฝ่ายตรงข้าม และมีรอบรีเพลย์รอบ 5 ทีม?",
    "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_en": "Which Against has a Date of 28 january 1950?",
    "question_th": "ข้อใดมีวันที่ 28 มกราคม พ.ศ. 2493",
    "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_en": "What is the total number of years wehre anna thompson had a 3rd place result at edinburgh, scotland?",
    "question_th": "จำนวนปีที่แอนนา ทอมป์สันคว้าอันดับ 3 ที่เอดินบะระ สกอตแลนด์ คือกี่ปี?",
    "context": "CREATE TABLE table_name_28 (year VARCHAR, result VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_85 WHERE result = \"7th\"",
    "question_en": "What year did anna thompson have a 7th place result?",
    "question_th": "แอนนา ทอมป์สัน คว้าอันดับที่ 7 ในปีใด",
    "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_en": "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",
    "question_th": "ปีเฉลี่ยที่แอนนา ทอมป์สันได้อันดับที่ 8 มีผลการแข่งขันประเภททีมในการแข่งขันชิงแชมป์โลกครอสคันทรี่ที่เมืองแซงเอเตียน ประเทศฝรั่งเศส ด้วยคือเท่าไร",
    "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_en": "What is the total matches in 2002 where points won is larger than 1.5 and the points % is smaller than 50?",
    "question_th": "การแข่งขันทั้งหมดในปี 2545 คือคะแนนที่ชนะมากกว่า 1.5 และคะแนน % น้อยกว่า 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_en": "WHAT IS THE LOSS WITH AN AVERAGE OF 89.9?",
    "question_th": "การสูญเสียโดยเฉลี่ย 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_en": "WHAT IS THE NUMBER OF LOSSES WITH A LONG SMALLER THAN 24, AND GAIN BIGGER THAN 116?",
    "question_th": "อะไรคือจำนวนการสูญเสียโดยมีความยาวน้อยกว่า 24 และได้กำไรมากกว่า 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_en": "How many rounds did Brett go against Kevin Asplund?",
    "question_th": "Brett สู้กับ 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_en": "How many rounds did Brett go for the Strikeforce: Shamrock vs. Diaz match?",
    "question_th": "Brett ไปแข่งขัน Strikeforce: Shamrock vs. Diaz กี่รอบ?",
    "context": "CREATE TABLE table_name_84 (round VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_36 WHERE record = \"22-10\"",
    "question_en": "Which Opponent has a Record of 22-10?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีสถิติ 22-10?",
    "context": "CREATE TABLE table_name_36 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_71 WHERE opponent = \"@ seattle\"",
    "question_en": "Which Score has an Opponent of @ seattle?",
    "question_th": "สกอร์ไหนมีคู่ต่อสู้ของ@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_en": "Which Record has a Result of loss, and an Opponent of @ la clippers?",
    "question_th": "บันทึกใดมีผลแพ้และเป็นฝ่ายตรงข้ามของ @ 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_en": "Which Score has an Opponent of @ la lakers, and a Record of 8-6?",
    "question_th": "สกอร์ใดที่มีคู่ต่อสู้ของ @ la lakers และสถิติ 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_en": "Which Opponent has a Result of win, and a Date of march 17?",
    "question_th": "ฝ่ายตรงข้ามคนไหนมีผลการชนะ และวันที่ 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_en": "Which Score has a Date of may 4?",
    "question_th": "คะแนนใดมีวันที่ 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_en": "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?",
    "question_th": "PD ใดต่อเกมที่มีอันดับน้อยกว่า 4, % การชนะที่ 78.6%, การสตรีคที่ w1 และ PA ต่อเกมน้อยกว่า 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_en": "Which Loss has a Last 5 of 4-1, a Streak of w2, and a PA per game smaller than 88.43?",
    "question_th": "การแพ้ครั้งใดที่มีสกอร์ 5 จาก 4-1 ล่าสุด สตรีค w2 และ PA ต่อเกมน้อยกว่า 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_en": "Which Last 5 has a Rank of 7?",
    "question_th": "5 คนสุดท้ายคนไหนมีอันดับ 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_en": "Which Played has a PD per game larger than 6.28, and a Loss smaller than 4?",
    "question_th": "ผู้เล่นคนไหนที่มี PD ต่อเกมมากกว่า 6.28 และแพ้น้อยกว่า 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_en": "Which PF per game has a Rank of 5?",
    "question_th": "PF ใดต่อเกมมีอันดับ 5?",
    "context": "CREATE TABLE table_name_22 (pf_per_game INTEGER, rank VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_32 WHERE round = \"3\"",
    "question_en": "What was the score in Round 3?",
    "question_th": "คะแนนในรอบที่ 3 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_32 (record VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_36 WHERE opponent = \"matt serra\"",
    "question_en": "What was the record for opponent Matt Serra?",
    "question_th": "แมตต์ เซอร์รา คู่ต่อสู้มีสถิติอะไรบ้าง?",
    "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_en": "What was the event for round 1 against Lance Wipf?",
    "question_th": "เหตุการณ์สำหรับรอบที่ 1 กับ Lance Wipf คืออะไร?",
    "context": "CREATE TABLE table_name_9 (event VARCHAR, round VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(area__km²_) FROM table_name_13 WHERE population__2007_ = 6 OFFSET 176",
    "question_en": "What is the total number of Area (km²), when Population (2007) is 6,176?",
    "question_th": "จำนวนพื้นที่ทั้งหมด (กม. ²) คือเท่าใด เมื่อประชากร (พ.ศ. 2550) เท่ากับ 6,176 คน",
    "context": "CREATE TABLE table_name_13 (area__km²_ VARCHAR, population__2007_ VARCHAR)"
  },
  {
    "answer": "SELECT laps FROM table_name_17 WHERE car_no = \"23\"",
    "question_en": "How many laps did car 23 do?",
    "question_th": "รถ 23 วิ่งได้กี่รอบ?",
    "context": "CREATE TABLE table_name_17 (laps VARCHAR, car_no VARCHAR)"
  },
  {
    "answer": "SELECT laps FROM table_name_79 WHERE fin_pos = \"17\"",
    "question_en": "How many laps did the car do that had a final position of 17?",
    "question_th": "รถทำไปกี่รอบแล้วถึงตำแหน่งสุดท้ายที่ 17?",
    "context": "CREATE TABLE table_name_79 (laps VARCHAR, fin_pos VARCHAR)"
  },
  {
    "answer": "SELECT grid FROM table_name_84 WHERE team = \"racing professionals\"",
    "question_en": "What grid did the team racing professionals race on?",
    "question_th": "ทีมผู้เชี่ยวชาญด้านการแข่งรถแข่งบนกริดใด?",
    "context": "CREATE TABLE table_name_84 (grid VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT car_no FROM table_name_43 WHERE time_retired = \"+0.3844\"",
    "question_en": "What car number had a race time of +0.3844?",
    "question_th": "รถหมายเลขใดมีเวลาแข่งขันที่ +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_en": "How many points were scored by car number 10 that ended with a collision?",
    "question_th": "รถหมายเลข 10 จบด้วยการชนกันได้กี่คะแนน?",
    "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_en": "Who was the driver who had a final position of 14?",
    "question_th": "ใครคือคนขับที่ได้ตำแหน่งสุดท้าย 14?",
    "context": "CREATE TABLE table_name_19 (driver VARCHAR, fin_pos VARCHAR)"
  },
  {
    "answer": "SELECT money___$__ FROM table_name_99 WHERE player = \"justin leonard\"",
    "question_en": "what is the money ($) for player justin leonard?",
    "question_th": "เงิน ($) สำหรับผู้เล่นจัสติน ลีโอนาร์ดคือเท่าไหร่?",
    "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_en": "what is the place when the score is 76-69-71-70=286?",
    "question_th": "คะแนน 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_en": "what is the place for costantino rocca?",
    "question_th": "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_en": "what is the highest money ($) for bernhard langer?",
    "question_th": "เงินสูงสุด ($) สำหรับแบร์นฮาร์ด แลงเกอร์คือเท่าไหร่?",
    "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_en": "What is the score of the FIFA report on October 13, 2007?",
    "question_th": "คะแนนของรายงาน FIFA เมื่อวันที่ 13 ตุลาคม พ.ศ. 2550 เป็นเท่าใด",
    "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_en": "What venue has a EAFF report on June 24, 2007?",
    "question_th": "สถานที่ใดมีรายงาน EAFF เมื่อวันที่ 24 มิถุนายน พ.ศ. 2550",
    "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_en": "What is the venue on October 13, 2007?",
    "question_th": "วันที่ 13 ตุลาคม 2550 จะจัดขึ้นที่ใด?",
    "context": "CREATE TABLE table_name_60 (venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT site FROM table_name_59 WHERE result = \"w13-7\"",
    "question_en": "At what Site was the Result W13-7?",
    "question_th": "ผลลัพธ์ 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_en": "What was the Attendance on 11/09/1946?",
    "question_th": "ผู้เข้าร่วมในวันที่ 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_en": "What Site had an Attendance of 45,000?",
    "question_th": "ไซต์ใดมีผู้เข้าร่วม 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_en": "What was the Result on 11/02/1946?",
    "question_th": "ผลลัพธ์เมื่อวันที่ 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_en": "What mark has over 813 points in the United States, and a 0.152 react?",
    "question_th": "เครื่องหมายใดมีมากกว่า 813 จุดในสหรัฐอเมริกาและมีปฏิกิริยา 0.152?",
    "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_en": "What is the lowest Total, when Year(s) Won is \"1968 , 1971\", and when To Par is less than 11?",
    "question_th": "ค่ารวมต่ำสุดคือเท่าไร เมื่อปีที่ชนะคือ \"1968 , 1971\" และเมื่อพาร์น้อยกว่า 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_en": "What is the lowest To Par, when Player is \"Johnny Miller\"?",
    "question_th": "To Par ต่ำสุดคือเท่าไร เมื่อผู้เล่นคือ \"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_en": "What is Player, when Total is greater than 148, and when To Par is \"12\"?",
    "question_th": "Player คืออะไร เมื่อผลรวมมากกว่า 148 และเมื่อ Par คือ \"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_en": "What is the sum of To Par, when Year(s) Won is \"1978 , 1985\"?",
    "question_th": "ผลรวมของทูพาร์เป็นเท่าใด เมื่อปีที่ชนะคือ \"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_en": "What is To Par, when Year(s) Won is \"1968 , 1971\"?",
    "question_th": "To Par คืออะไร เมื่อปีที่ชนะคือ \"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_en": "Which Points difference has Points against of 786?",
    "question_th": "คะแนนส่วนต่างใดมีคะแนนเทียบกับ 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_en": "Which Played has a Points difference of +261?",
    "question_th": "เกมใดที่เล่นมีคะแนนต่างกัน +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_en": "Which Points against has a Lost of 13, and Points for of 671?",
    "question_th": "แต้มใดที่เสียไป 13 และแต้มเป็น 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_en": "Which Points difference has Played of 32, and Points for of 840?",
    "question_th": "แต้มไหนต่างกันที่เล่นไป 32 แต้ม และแต้มได้ 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_en": "Which Drawn has Points for of 782?",
    "question_th": "งวดไหนได้แต้ม 782 แต้ม?",
    "context": "CREATE TABLE table_name_2 (drawn VARCHAR, points_for VARCHAR)"
  },
  {
    "answer": "SELECT lost FROM table_name_33 WHERE \"club\" = \"club\"",
    "question_en": "Which Lost has a Club of club?",
    "question_th": "Lost ตัวไหนมีคลับของคลับ?",
    "context": "CREATE TABLE table_name_33 (lost VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_57 WHERE date = \"january 29\"",
    "question_en": "Can you tell me the Record that has the Date of january 29?",
    "question_th": "คุณช่วยบอกบันทึกที่มีวันที่ 29 มกราคมหน่อยได้ไหม?",
    "context": "CREATE TABLE table_name_57 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_67 WHERE visitor = \"vancouver\"",
    "question_en": "Can you tell me the Record that has the Visitor of vancouver?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าบันทึกที่มีผู้มาเยือนแวนคูเวอร์?",
    "context": "CREATE TABLE table_name_67 (record VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_94 WHERE opponent_in_final = \"john mcenroe\"",
    "question_en": "What date has the opponent competing in the final of john mcenroe?",
    "question_th": "คู่ต่อสู้จะแข่งขันกันในรอบชิงชนะเลิศของ 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_en": "Where did the Lightning play the NY Rangers at 7:00 pm?",
    "question_th": "Lightning เล่น NY Rangers ที่ไหนเวลา 19.00 น.",
    "context": "CREATE TABLE table_name_96 (location VARCHAR, opponent VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_97 WHERE location = \"mellon arena\"",
    "question_en": "Who did the Lightning play at the Mellon Arena?",
    "question_th": "Lightning เล่นที่ 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_en": "What was the final score for the game played at 7:00 pm?",
    "question_th": "สกอร์สุดท้ายของเกมที่เล่นเวลา 19.00 น. เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_16 (result VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_64 WHERE result = \"4-1 w\"",
    "question_en": "Where was the game which ended in a 4-1 w?",
    "question_th": "เกมที่จบลงด้วยสกอร์ 4-1 อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_64 (location VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_65 WHERE time = \"7:00 pm\"",
    "question_en": "When was a game played at 7:00 pm?",
    "question_th": "แข่งเวลา 19.00 น. เมื่อไหร่?",
    "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_en": "Which Top Speed has a Model Name of d14/4 supreme d14/4 sports & bushman?",
    "question_th": "Top Speed รุ่นใดมีชื่อรุ่นว่า 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_en": "Which Electrics has an Engine of 175cc, bhp (kw), and a Model Name of d10 sports & bushman?",
    "question_th": "Electrics รุ่นใดมีเครื่องยนต์ 175cc, bhp (kw) และชื่อรุ่นของ 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ádraig harrington\"",
    "question_en": "Who does pádraig harrington play for?",
    "question_th": "ปาดราก แฮร์ริงตัน เล่นให้ใคร?",
    "context": "CREATE TABLE table_name_72 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT stadium FROM table_name_77 WHERE club = \"seongnam ilhwa chunma\"",
    "question_en": "Which stadium has Seongnam Ilhwa Chunma?",
    "question_th": "สนามไหนมีซองนัม อิลฮวา ชุนมา?",
    "context": "CREATE TABLE table_name_77 (stadium VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_2 WHERE stadium = \"gwang-yang stadium\"",
    "question_en": "What city is Gwang-Yang stadium in?",
    "question_th": "สนามกีฬากวางยางตั้งอยู่ในเมืองใด",
    "context": "CREATE TABLE table_name_2 (city VARCHAR, stadium VARCHAR)"
  },
  {
    "answer": "SELECT stadium FROM table_name_65 WHERE club = \"fc seoul\"",
    "question_en": "Which stadium has FC Seoul?",
    "question_th": "สนามไหนมีเอฟซีโซล?",
    "context": "CREATE TABLE table_name_65 (stadium VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT stadium FROM table_name_56 WHERE city = \"seoul\"",
    "question_en": "What stadium is in Seoul?",
    "question_th": "สนามกีฬาอะไรในโซล?",
    "context": "CREATE TABLE table_name_56 (stadium VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT 1993 FROM table_name_68 WHERE tournament = \"french open\"",
    "question_en": "What is the 1993 value of the French open?",
    "question_th": "เฟรนช์ โอเพ่น ปี 1993 มีมูลค่าเท่าไร?",
    "context": "CREATE TABLE table_name_68 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 1990 FROM table_name_87 WHERE 1995 = \"24\"",
    "question_en": "What is the 1990 value with a 24 in 1995?",
    "question_th": "ค่าปี 1990 ด้วย 24 ในปี 1995 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_87 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1993 FROM table_name_75 WHERE 1991 = \"1r\" AND 1990 = \"sf\"",
    "question_en": "What is the 1993 value with a 1r in 1991 and sf in 1990?",
    "question_th": "ค่าปี 1993 ด้วย 1r ในปี 1991 และ sf ในปี 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_en": "What is the 1994 value with a 2r in 1996, A in 1993, and 2r in 1991?",
    "question_th": "ค่า 1994 โดยมี 2r ในปี 1996, A ในปี 1993 และ 2r ในปี 1991 คืออะไร",
    "context": "CREATE TABLE table_name_42 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1993 FROM table_name_59 WHERE 1994 = \"atp masters series\"",
    "question_en": "What is the 1993 value of the 1994 atp masters series?",
    "question_th": "มูลค่าปี 1993 ของซีรีส์ atp masters ปี 1994 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_59 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1993 FROM table_name_15 WHERE 1996 = \"atp masters series\"",
    "question_en": "What is the 1993 value of the 1996 atp masters series?",
    "question_th": "มูลค่าปี 1993 ของซีรีส์ atp masters ปี 1996 เป็นเท่าใด",
    "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–0\"",
    "question_en": "Which Team has a Location Attendance of staples center 18,997, and a Series of 1–0?",
    "question_th": "ทีมใดมีตำแหน่งผู้เข้าร่วมของศูนย์ลวดเย็บกระดาษ 18,997 และซีรีส์ 1–0?",
    "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_en": "Which High points have High rebounds of lamar odom (15), and a Date of april 27?",
    "question_th": "แต้มสูงสุดใดที่มีการรีบาวด์สูงของลามาร์ โอดอม (15) และวันที่ 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_en": "Which Date has High rebounds of pau gasol (9)?",
    "question_th": "วันไหนที่มีการรีบาวด์ของ เปา กาซอล (9) สูง?",
    "context": "CREATE TABLE table_name_42 (date VARCHAR, high_rebounds VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_5 WHERE game = 2",
    "question_en": "What was the score of game 2?",
    "question_th": "เกมที่ 2 สกอร์เท่าไหร่ครับ?",
    "context": "CREATE TABLE table_name_5 (score VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_57 WHERE player = \"steve elkington\"",
    "question_en": "What was steve elkington's to par?",
    "question_th": "สตีฟ เอลคิงตันมีพาร์เท่าไหร่?",
    "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_en": "Which show has a season premiere with a Average series rating of 1.85 million viewers?",
    "question_th": "รายการใดที่มีการฉายรอบปฐมทัศน์ด้วยเรตติ้งซีรีส์เฉลี่ย 1.85 ล้านคน",
    "context": "CREATE TABLE table_name_33 (season VARCHAR, average_series_rating VARCHAR)"
  },
  {
    "answer": "SELECT MAX(founded) FROM table_name_7 WHERE nickname = \"bruins\"",
    "question_en": "What is the most recent year founded that has a nickname of bruins?",
    "question_th": "ก่อตั้งล่าสุดเมื่อปีใดที่มีชื่อเล่นว่า 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_en": "What is the most recent year founded with an enrollment of 42,708?",
    "question_th": "ปีล่าสุดก่อตั้งด้วยการลงทะเบียน 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–27–5\"",
    "question_en": "What is the Score of the game with the New York Rangers Home team with a Record of 8–27–5?",
    "question_th": "สกอร์ของเกมกับทีมเหย้านิวยอร์ก เรนเจอร์ส ด้วยสถิติ 8–27–5 คืออะไร?",
    "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–41–6\"",
    "question_en": "On what Date was the Home team Detroit Red Wings with a Record of 10–41–6?",
    "question_th": "ทีมเจ้าบ้าน ดีทรอยต์ เรดวิงส์ มีสถิติ 10–41–6 จัดขึ้นในวันที่ใด",
    "context": "CREATE TABLE table_name_61 (date VARCHAR, home VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_98 WHERE record = \"11–49–7\"",
    "question_en": "What is the Visitor in the game with a Record of 11–49–7?",
    "question_th": "ผู้มาเยือนในเกมที่มีสถิติ 11–49–7 คืออะไร?",
    "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–2\"",
    "question_en": "What is the Record of the Chicago Black Hawks Home game with the New York Rangers and a Score of 3–2?",
    "question_th": "บันทึกของเกมในบ้านของชิคาโกแบล็กฮอกส์กับนิวยอร์กเรนเจอร์สและสกอร์ 3–2 คืออะไร?",
    "context": "CREATE TABLE table_name_28 (record VARCHAR, score VARCHAR, home VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_21 WHERE score = \"1–2\" AND date = \"october 17\"",
    "question_en": "What is the Home team on October 17 with a Score of 1–2?",
    "question_th": "เจ้าบ้านจะเป็นอย่างไรในวันที่ 17 ตุลาคมด้วยสกอร์ 1–2?",
    "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_en": "What is the Record of the game on January 31 with Visitors Detroit Red Wings?",
    "question_th": "สถิติของเกมวันที่ 31 มกราคม กับทีมเยือน ดีทรอยต์ เรดวิงส์ คืออะไร?",
    "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_en": "Name the Report of 7 february with an Away team of new zealand breakers?",
    "question_th": "ตั้งชื่อรายงานวันที่ 7 กุมภาพันธ์ กับทีมเยือนของเบรกเกอร์นิวซีแลนด์?",
    "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_en": "Which Date has a Crowd smaller than 4,485?",
    "question_th": "วันใดที่มีฝูงชนน้อยกว่า 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_en": "Name the lowest Crowd of hisense arena on 8 february?",
    "question_th": "บอกชื่อ Crowd ต่ำสุดของเวที Hisense วันที่ 8 กุมภาพันธ์ ?",
    "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_en": "Name the Box Score which has an Away team of new zealand breakers on 7 february?",
    "question_th": "บอกชื่อ Box Score ซึ่งมีทีมเยือนนิวซีแลนด์เบรกเกอร์วันที่ 7 กุมภาพันธ์นี้หน่อยสิ?",
    "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_en": "What is the lowest Year, when Venue is Rio De Janeiro, Brazil?",
    "question_th": "ปีต่ำสุดคือเมื่อเมืองรีโอเดจาเนโร ประเทศบราซิล คือปีใด",
    "context": "CREATE TABLE table_name_42 (year INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_59 WHERE year = 2008",
    "question_en": "What is Event, when Year is 2008?",
    "question_th": "เหตุการณ์คืออะไร เมื่อถึงปี 2551?",
    "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_en": "What is the latest date in March when the opponent was the Boston Bruins and the game number was smaller than 66?",
    "question_th": "ล่าสุดเดือนมีนาคมคือวันที่คู่ต่อสู้คือ บอสตัน บรูอินส์ และเลขเกมน้อยกว่า 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_en": "What is the method of the match with chris ade as the opponent?",
    "question_th": "วิธีการแข่งขันที่มี คริส แอด เป็นคู่ต่อสู้เป็นอย่างไร?",
    "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_en": "What was the pole for a race lower than 16 with a Flap higher than 8 and a podium higher than 11?",
    "question_th": "เสาสำหรับการแข่งขันที่ต่ำกว่า 16 โดยมี Flap สูงกว่า 8 และโพเดียมสูงกว่า 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_en": "How many podiums had a race higher than 14 in 1996 and a Flap lower than 9?",
    "question_th": "มีกี่โพเดียมที่มีการแข่งขันสูงกว่า 14 ในปี 1996 และ Flap ต่ำกว่า 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_en": "How many races had 4 podiums, 5 poles and more than 3 Flaps?",
    "question_th": "มีกี่การแข่งขันที่มี 4 โพเดียม 5 โพล และแผ่นปิดมากกว่า 3 อัน?",
    "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_en": "What are the fewest podiums in 2005 with fewer than 0 poles?",
    "question_th": "โพเดี้ยมน้อยที่สุดในปี 2548 ที่มีน้อยกว่า 0 โพลคืออะไร?",
    "context": "CREATE TABLE table_name_30 (podium INTEGER, season VARCHAR, pole VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_8 WHERE to_par = \"+9\"",
    "question_en": "Which Player has a To par of +9?",
    "question_th": "ผู้เล่นคนไหนมีพาร์ถึง +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_en": "Which years did raymond floyd win?",
    "question_th": "เรย์มอนด์ ฟลอยด์ ชนะในปีไหน?",
    "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_en": "How much total has a To par of +9?",
    "question_th": "To par ของ +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_en": "Which Total has a Country of united states, and a Player of andy north?",
    "question_th": "Total ใดที่มีประเทศเป็นสหรัฐอเมริกา และมีผู้เล่นของ 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_en": "What is the highest grid for Aprilia vehicles, laps over 5, and a retirement finish?",
    "question_th": "อะไรคือตารางที่สูงที่สุดสำหรับรถยนต์ของ Aprilia, รอบที่มากกว่า 5 และการสิ้นสุดการแข่ง?",
    "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_en": "What is the average laps completed by riders with times of +2:11.524?",
    "question_th": "นักแข่งที่จบรอบโดยเฉลี่ยด้วยเวลา +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_en": "Which rider has a time of +2:11.524?",
    "question_th": "นักบิดคนไหนมีเวลา +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_en": "What is the average grid for vehicles manufactured by Aprilia and having run more than 16 laps?",
    "question_th": "ตารางเฉลี่ยสำหรับรถยนต์ที่ผลิตโดย Aprilia และวิ่งมากกว่า 16 รอบเป็นเท่าใด",
    "context": "CREATE TABLE table_name_2 (grid INTEGER, manufacturer VARCHAR, laps VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_49 WHERE date = \"january 27\"",
    "question_en": "What record has January 27 for the date?",
    "question_th": "บันทึกอะไรคือวันที่ 27 มกราคม?",
    "context": "CREATE TABLE table_name_49 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_76 WHERE high_assists = \"brad miller (8)\"",
    "question_en": "What team has brad miller (8) as the high assists?",
    "question_th": "ทีมใดมีแบรด มิลเลอร์ (8) แอสซิสต์สูง?",
    "context": "CREATE TABLE table_name_76 (team VARCHAR, high_assists VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_name_93 WHERE team = \"@ detroit\"",
    "question_en": "What is the high assists that has @ detroit as the team?",
    "question_th": "แอสซิสต์สูงที่มี @ดีทรอยต์ เป็นทีมคืออะไร?",
    "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_en": "Which date had a game with the New York Giants as the winner, year over 1985, and a result of 17-14?",
    "question_th": "วันไหนที่มีเกมกับ New York Giants เป็นผู้ชนะ เมื่อปี 1985 และผลการแข่งขัน 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_en": "Which date had a year under 1988, loser of Philadelphia Eagles, location of Giants Stadium, and a result of 21-0?",
    "question_th": "ปีไหนต่ำกว่าปี 1988 ผู้แพ้ฟิลาเดลเฟีย อีเกิลส์ ที่ตั้งของไจแอนต์ส สเตเดี้ยม และผลสกอร์ 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_en": "Which date had a loser of New York Giants and a result of 23-17?",
    "question_th": "วันไหนที่แพ้นิวยอร์ก ไจแอนต์ส และผลสกอร์ 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_en": "HOW MANY SILVER METALS DOES SOUTH KOREA HAVE WITH 2 GOLD METALS?",
    "question_th": "โลหะเงินจำนวนเท่าใดที่เกาหลีใต้มีโลหะทอง 2 ชิ้น",
    "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_en": "WHAT COUNTRY HAS THE HIGHEST BRONZE COUNT, MORE THAN 1 SILVER METAL, AND LESS THAN 1ST PLACE?",
    "question_th": "ประเทศใดที่มีการนับเหรียญทองแดงสูงสุด โลหะเงินมากกว่า 1 ชิ้น และน้อยกว่าอันดับที่ 1",
    "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_en": "What is the highest Runners-Up, when Champions is less than 0?",
    "question_th": "รองชนะเลิศสูงสุดคืออะไร เมื่อแชมเปี้ยนน้อยกว่า 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_en": "What is the sum of Runners-Up, when Champions is greater than 5?",
    "question_th": "ผลรวมของรองชนะเลิศเมื่อแชมเปี้ยนมากกว่า 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_en": "What is the total medals for nation with more than 0 silvers and more than 0 golds?",
    "question_th": "เหรียญรวมของประเทศที่มีมากกว่า 0 เหรียญเงิน และมากกว่า 0 เหรียญทอง คือเท่าไร?",
    "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_en": "What is the fewest gold medals for a team with fewer than 1 silver, more than 1 bronze and a total less than 4?",
    "question_th": "เหรียญทองน้อยที่สุดสำหรับทีมที่มีน้อยกว่า 1 เหรียญเงิน มากกว่า 1 เหรียญทองแดง และรวมน้อยกว่า 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_en": "What is the smallest rank when there are fewer than 1 silver, 4 golds and less than 0 bronze?",
    "question_th": "อันดับที่เล็กที่สุดเมื่อมีน้อยกว่า 1 เหรียญเงิน 4 เหรียญทอง และน้อยกว่า 0 เหรียญทองแดง คืออะไร?",
    "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_en": "How many gold medals for a nation with rank less than 5, more than 0 silvers and a total of 2 medals?",
    "question_th": "ประเทศที่มีอันดับต่ำกว่า 5, มากกว่า 0 เหรียญเงิน และรวม 2 เหรียญ จะได้เหรียญทองกี่เหรียญ?",
    "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_en": "What is the total for the team with more than 2 golds and more than 0 bronze?",
    "question_th": "ทีมที่มีมากกว่า 2 เหรียญทองและมากกว่า 0 เหรียญทองแดงมียอดรวมเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_37 (total INTEGER, gold VARCHAR, bronze VARCHAR)"
  },
  {
    "answer": "SELECT rider FROM table_name_59 WHERE time = \"+19.751\"",
    "question_en": "Which rider has time of +19.751?",
    "question_th": "นักบิดคนไหนมีเวลา +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_en": "Which manufacturer of aprilia wth time of +1:36.557 has the highest lap?",
    "question_th": "Aprilia ผู้ผลิตรายใดที่มีเวลา +1:36.557 มีรอบสูงสุด?",
    "context": "CREATE TABLE table_name_75 (laps INTEGER, manufacturer VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_56 WHERE grid = 21",
    "question_en": "What is time of manufacturer with grid 21?",
    "question_th": "ผู้ผลิตที่มีตาราง 21 คือเวลาใด",
    "context": "CREATE TABLE table_name_56 (time VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT SUM(laps) FROM table_name_5 WHERE grid = 2",
    "question_en": "What is the total of laps with grid of 2",
    "question_th": "รอบที่มีตาราง 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_en": "What is the lowest grid with time of +0.499,when laps are larger than 21?",
    "question_th": "ตารางต่ำสุดที่มีเวลา +0.499 คือเท่าใด เมื่อรอบมากกว่า 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_en": "What is the total laps when manufacturer of gilera has time of 40:19.910 and grid is larger than 3?",
    "question_th": "จำนวนรอบรวมเมื่อผู้ผลิตกิเลรามีเวลา 40:19.910 และกริดมากกว่า 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_en": "What is the time when the rank is 14?",
    "question_th": "อันดับ 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_en": "what is the rank when the time is 3:12.40?",
    "question_th": "เวลา 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_en": "what is the rank when the heat is more than 4?",
    "question_th": "ความร้อนเกิน 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_en": "what is the nationality when the heat is less than 3 and the time is 2:35.31?",
    "question_th": "เมื่อความร้อนน้อยกว่า 3 และเวลา 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_en": "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?",
    "question_th": "ความร้อนน้อยกว่า 3 อันดับน้อยกว่า 18 สัญชาติคือเยอรมนีตะวันออก และเวลา 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_en": "Which tie number had an away team of the Tranmere Rovers?",
    "question_th": "ทีมเยือนของทรานเมียร์ โรเวอร์ส หมายเลขเสมอกัน?",
    "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_en": "Which tie number had an away team of the Tranmere Rovers?",
    "question_th": "ทีมเยือนของทรานเมียร์ โรเวอร์ส หมายเลขเสมอกัน?",
    "context": "CREATE TABLE table_name_36 (tie_no VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_99 WHERE location = \"richfield coliseum\"",
    "question_en": "What date did the Boston Celtics play at Richfield Coliseum?",
    "question_th": "Boston Celtics ลงเล่นที่ 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_en": "What game ended with a final score of 126-108?",
    "question_th": "เกมไหนจบลงด้วยสกอร์สุดท้าย 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_en": "What was the highest number of rebounds on February 6?",
    "question_th": "จำนวนรีบาวด์สูงสุดในวันที่ 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_en": "How many people tuned in to the finale on May 16, 2007?",
    "question_th": "มีกี่คนที่ติดตามตอนจบในวันที่ 16 พฤษภาคม 2550",
    "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_en": "What time did the season finale air on May 20, 2003?",
    "question_th": "ตอนจบของฤดูกาลออกอากาศเมื่อใดในวันที่ 20 พฤษภาคม พ.ศ. 2546",
    "context": "CREATE TABLE table_name_43 (timeslot VARCHAR, finale VARCHAR)"
  },
  {
    "answer": "SELECT SUM(game) FROM table_name_71 WHERE team = \"toronto\"",
    "question_en": "What was the total score where Toronto was played?",
    "question_th": "คะแนนรวมที่เล่นโตรอนโตคือเท่าไร?",
    "context": "CREATE TABLE table_name_71 (game INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT weight_ & _height FROM table_name_43 WHERE player = \"james donaldson\"",
    "question_en": "Which Weight & Height has a Player of james donaldson?",
    "question_th": "น้ำหนักและส่วนสูงคนไหนที่มีผู้เล่นของเจมส์ โดนัลด์สัน?",
    "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_en": "Which Weight & Height has a Player of michael worrincy?",
    "question_th": "Weight & Height ใดที่มีผู้เล่นของ 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_en": "What is the result of the match that went to round 1 and only for 2:48?",
    "question_th": "ผลการแข่งขันรอบที่ 1 เหลือเวลาเพียง 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_en": "The K-1 MMA Romanex event went how many rounds?",
    "question_th": "การแข่งขัน K-1 MMA Romanex มีทั้งหมดกี่รอบ?",
    "context": "CREATE TABLE table_name_38 (round VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT res FROM table_name_63 WHERE time = \"2:48\"",
    "question_en": "What is the result for the match that was only 2:48 long?",
    "question_th": "ผลการแข่งขันที่ยาวเพียง 2:48 คืออะไร?",
    "context": "CREATE TABLE table_name_63 (res VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT points_for FROM table_name_76 WHERE points_against = \"571\"",
    "question_en": "What is Points For, when Points Against is 571?",
    "question_th": "Points For คืออะไร เมื่อ Points Against คือ 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_en": "What is Drawn, when Lost is 14, and when Bonus Points is 12?",
    "question_th": "Drawn คืออะไร เมื่อแพ้คือ 14 และเมื่อคะแนนโบนัสคือ 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_en": "What is Points, when Club is Maesteg RFC?",
    "question_th": "คะแนนคืออะไร เมื่อ Club คือ 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_en": "What is Points, when Points is 60, and when Club is Bedwas RFC?",
    "question_th": "Points คืออะไร เมื่อ Points คือ 60 และเมื่อ Club เป็น 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_en": "What is Drawn, when Club is Newport RFC?",
    "question_th": "Drawn คืออะไร เมื่อ Club คือ 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_en": "What is Points Difference, when Points Against is 451?",
    "question_th": "ความแตกต่างของแต้มคืออะไร เมื่อแต้มต่อคือ 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_en": "Which is the highest silver that has a gold less than 0?",
    "question_th": "เงินใดมีค่าสูงสุดที่มีทองคำน้อยกว่า 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_en": "What is the lowest silver that has 1 as the rank, with a bronze greater than 5?",
    "question_th": "เงินต่ำสุดที่มีอันดับ 1 โดยมีทองแดงมากกว่า 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_en": "What is the highest silver that has 9 as the rank, germany as the nation, with a gold less than 0?",
    "question_th": "เงินสูงสุดที่มีอันดับ 9 เยอรมนีเป็นประเทศและมีทองน้อยกว่า 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–36\"",
    "question_en": "What shows for the location and attendance when the record is 41–36?",
    "question_th": "สิ่งที่แสดงให้เห็นสถานที่และการเข้าร่วมเมื่อบันทึกคือ 41–36",
    "context": "CREATE TABLE table_name_9 (location_attendance VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_65 WHERE record = \"40–36\"",
    "question_en": "What is the score when the record was 40–36?",
    "question_th": "คะแนนเมื่อบันทึกอยู่ที่ 40–36 คืออะไร?",
    "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_en": "WHo is the Player got a Pick # smaller than 61, and a College of texas?",
    "question_th": "ใครคือผู้เล่นที่ได้รับ Pick # น้อยกว่า 61 และ 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_en": "Name the College which has a Round smaller than 3, and a Pick # larger than 4, and a Position of wide receiver?",
    "question_th": "ตั้งชื่อวิทยาลัยซึ่งมีรอบที่เล็กกว่า 3 และเลือก # ที่ใหญ่กว่า 4 และตำแหน่งผู้รับกว้าง?",
    "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_en": "Which the highest Round has a Player of mike williams, and a Pick # larger than 4?",
    "question_th": "รอบสูงสุดใดที่มีผู้เล่นของ Mike Williams และตัวเลือก # มากกว่า 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_en": "Name the average Pick # of mike williams?",
    "question_th": "ตั้งชื่อค่าเฉลี่ย Pick # ของ mike williams?",
    "context": "CREATE TABLE table_name_9 (pick__number INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_62 WHERE visitor = \"buffalo\"",
    "question_en": "What date did the red wings play against the visitors, buffalo?",
    "question_th": "ปีกแดงเล่นกับผู้มาเยือนวันไหนควาย?",
    "context": "CREATE TABLE table_name_62 (date VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT decision FROM table_name_33 WHERE home = \"atlanta\"",
    "question_en": "Who made the decision when atlanta was the home team?",
    "question_th": "ใครเป็นผู้ตัดสินใจเมื่อแอตแลนต้าเป็นเจ้าบ้าน?",
    "context": "CREATE TABLE table_name_33 (decision VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT decision FROM table_name_81 WHERE home = \"detroit\" AND visitor = \"boston\"",
    "question_en": "Who made the decision when detroit was the home team and boston was the visitor?",
    "question_th": "ใครเป็นคนตัดสินใจเมื่อดีทรอยต์เป็นเจ้าบ้านและบอสตันเป็นผู้มาเยือน?",
    "context": "CREATE TABLE table_name_81 (decision VARCHAR, home VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT decision FROM table_name_21 WHERE home = \"toronto\"",
    "question_en": "Who made the decision when toronto was the home team?",
    "question_th": "ใครเป็นผู้ตัดสินใจเมื่อโตรอนโตเป็นเจ้าบ้าน?",
    "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_en": "The player Cecil Martin with an overall less than 268 has what total pick?",
    "question_th": "ผู้เล่น Cecil Martin ที่มีคะแนนรวมน้อยกว่า 268 จะมีตัวเลือกทั้งหมดเท่าใด",
    "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_en": "With the pick of 1 Cecil Martin has what number as the overall?",
    "question_th": "โดยเลือก 1 เซซิล มาร์ติน มีแต้มรวมเป็นจำนวนเท่าใด?",
    "context": "CREATE TABLE table_name_38 (overall VARCHAR, pick VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_76 WHERE overall = 304",
    "question_en": "What position does the player play with an overall of 304?",
    "question_th": "ผู้เล่นเล่นตำแหน่งใดด้วยคะแนนรวม 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_en": "What is the US modern rock rank of code bad 0003?",
    "question_th": "อันดับเพลงร็อคสมัยใหม่ของสหรัฐฯ ในรหัส 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_en": "What is the format of code 9 40231-2 (us only)?",
    "question_th": "รูปแบบของรหัส 9 40231-2 (เฉพาะเรา) คืออะไร?",
    "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_en": "What is the UK singles chart rank of the single released on 26 February 1990?",
    "question_th": "อันดับชาร์ตซิงเกิลของสหราชอาณาจักรของซิงเกิลที่วางจำหน่ายเมื่อวันที่ 26 กุมภาพันธ์ พ.ศ. 2533 คืออะไร?",
    "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_en": "What is the format of code pro-cd-4662?",
    "question_th": "รหัส pro-cd-4662 อยู่ในรูปแบบใด",
    "context": "CREATE TABLE table_name_98 (format VARCHAR, code VARCHAR)"
  },
  {
    "answer": "SELECT mongolian FROM table_name_79 WHERE province = \"municipality\"",
    "question_en": "Which mongolian has the province of municipality?",
    "question_th": "มองโกเลียใดมีจังหวัดเป็นเทศบาล?",
    "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_en": "What is the sum of the years with bus conner as the BSU head coach?",
    "question_th": "ผลรวมของปีที่มีบัสคอนเนอร์เป็นหัวหน้าโค้ชของ BSU คือเท่าไร?",
    "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_en": "Who is the BSU head coach of the tournament after 1994 with louisville as the opponent?",
    "question_th": "ใครคือหัวหน้าโค้ช BSU ของทัวร์นาเมนต์หลังปี 1994 โดยมีหลุยส์วิลล์เป็นคู่ต่อสู้?",
    "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_en": "What is the result in 1994?",
    "question_th": "ผลลัพธ์ในปี 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_en": "What is the result after 1993 of the first four rounds?",
    "question_th": "ผลลัพธ์หลังจากปี 1993 ของสี่รอบแรกเป็นอย่างไร?",
    "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_en": "Who was the opponent before 1994 with bobby dye as the BSU head coach?",
    "question_th": "ใครคือคู่ต่อสู้ก่อนปี 1994 โดยมีบ๊อบบี้ ย้อมเป็นหัวหน้าโค้ชของบีเอสยู?",
    "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_en": "Who is the opponent in 1976?",
    "question_th": "คู่ต่อสู้ในปี 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_en": "What is Date, when Score is \"0-2\", and when Opponents is \"Bayer Leverkusen\"?",
    "question_th": "วันที่คือเมื่อสกอร์เป็น \"0-2\" และเมื่อฝ่ายตรงข้ามคือ \"ไบเออร์ เลเวอร์คูเซ่น\"?",
    "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_en": "What is Competition, when Score is \"2-1\", and when Date is \"October 22, 2008\"?",
    "question_th": "การแข่งขันคืออะไร เมื่อสกอร์เป็น \"2-1\" และวันที่คือ \"22 ตุลาคม 2551\"",
    "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_en": "What is Match Report, when Venue is \"Westfalenstadion , Dortmund\"?",
    "question_th": "Match Report คืออะไร เมื่อสถานที่คือ \"เวสต์ฟาเลนสตาดิโอน ดอร์ทมุนด์\"?",
    "context": "CREATE TABLE table_name_92 (match_report VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_32 WHERE venue = \"weserstadion , bremen\"",
    "question_en": "What is Date, when Venue is \"Weserstadion , Bremen\"?",
    "question_th": "วันที่คือวันที่ใดเมื่อสถานที่คือ \"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_en": "What is Date, when Competition is \"F\", and when Opponents is \"FC Astoria Walldorf\"?",
    "question_th": "วันที่คือเมื่อใด เมื่อการแข่งขันคือ \"F\" และเมื่อใดฝ่ายตรงข้ามคือ \"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_en": "What is the pick of Charley Taylor, who has an overall greater than 3?",
    "question_th": "ตัวเลือกของ Charley Taylor ที่มีคะแนนรวมมากกว่า 3 คืออะไร?",
    "context": "CREATE TABLE table_name_58 (pick INTEGER, name VARCHAR, overall VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_68 WHERE overall = 143",
    "question_en": "What is the position of the player with a 143 overall?",
    "question_th": "ตำแหน่งผู้เล่นรวม 143 เป็นอย่างไร?",
    "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_en": "What is the average round of the s position player from the college of Mississippi and has an overall less than 214?",
    "question_th": "รอบเฉลี่ยของผู้เล่นตำแหน่งจากวิทยาลัยมิสซิสซิปปี้และมีผลรวมน้อยกว่า 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_en": "What is the total round of the rb player from Purdue with a pick less than 3?",
    "question_th": "รอบรวมของผู้เล่น rb จาก Purdue ที่มีตัวเลือกน้อยกว่า 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_en": "Which category has 24 nominated work?",
    "question_th": "หมวดใดมีผลงานเข้าชิง 24 เรื่อง?",
    "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_en": "How many Silver medals did the Nation of Croatia receive with a Total medal of more than 1?",
    "question_th": "ประเทศโครเอเชียได้รับเหรียญเงินจำนวนเท่าใดและมีเหรียญรวมมากกว่า 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_en": "How many Gold medals did Australia receive?",
    "question_th": "ออสเตรเลียได้รับเหรียญทองกี่เหรียญ?",
    "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_en": "How many Total medals did the country with 16 Silver and less than 32 Bronze receive?",
    "question_th": "ประเทศที่มี 16 เหรียญเงินและน้อยกว่า 32 เหรียญทองแดงได้รับเหรียญรางวัลทั้งหมดกี่เหรียญ?",
    "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_en": "How many Bronze medals for the Nation with a Rank of 11 and less than 1 Silver?",
    "question_th": "มีเหรียญทองแดงสำหรับชาติที่มีอันดับ 11 และน้อยกว่า 1 เหรียญเงินกี่เหรียญ?",
    "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_en": "What is the average Episode Number, when Original Airdate is March 21, 2010, and when Season is less than 3?",
    "question_th": "หมายเลขตอนเฉลี่ยคือเท่าใด เมื่อออกอากาศครั้งแรกคือวันที่ 21 มีนาคม 2010 และเมื่อซีซันน้อยกว่า 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_en": "What is the total number of Season(s), when Original Airdate is January 24, 1999, and when Year is less than 1999?",
    "question_th": "จำนวนซีซั่นทั้งหมดคือเท่าไร เมื่อแอร์เดทแรกคือวันที่ 24 มกราคม 1999 และเมื่อไรน้อยกว่าปี 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_en": "How many games have a Result of l, and a Record of 2-6?",
    "question_th": "มีกี่เกมที่มีผลการแข่งขันเป็น l และมีสถิติ 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_en": "How many people attended the green bay packers game?",
    "question_th": "มีกี่คนที่เข้าร่วมเกม Green Bay Packers?",
    "context": "CREATE TABLE table_name_14 (attendance INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_62 WHERE record = \"1-1\"",
    "question_en": "How many people attended the game whose score was 1-1?",
    "question_th": "มีผู้เข้าร่วมการแข่งขันกี่คนที่สกอร์ 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_en": "Which Date has a Score of 24-7, and a Record of 4-10?",
    "question_th": "วันไหนมีคะแนน 24-7 และมีสถิติ 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_en": "Lowest round for g that was smaller than 31?",
    "question_th": "รอบต่ำสุดสำหรับ g ที่น้อยกว่า 31?",
    "context": "CREATE TABLE table_name_76 (round INTEGER, position VARCHAR, overall VARCHAR)"
  },
  {
    "answer": "SELECT semifinalists FROM table_name_29 WHERE tournament = \"cincinnati\"",
    "question_en": "What is the Semifinalists that has a Tournament of Cincinnati?",
    "question_th": "ผู้เข้ารอบรองชนะเลิศที่มีการแข่งขัน Cincinnati คืออะไร?",
    "context": "CREATE TABLE table_name_29 (semifinalists VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT aggregate FROM table_name_58 WHERE club = \"crvena zvezda\"",
    "question_en": "The Crvena Zvezda club has what aggregate?",
    "question_th": "สโมสร Crvena Zvezda มีคะแนนรวมเท่าไหร่?",
    "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_en": "What is the total number of assists of the player with 0 goals, more than 1 points, and more than 0 pims?",
    "question_th": "จำนวนแอสซิสต์รวมของผู้เล่นที่มี 0 ประตู มากกว่า 1 แต้ม และมากกว่า 0 พิม คือเท่าใด",
    "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 – 1\" AND series = \"4 – 3\"",
    "question_en": "Which Decision has a Visitor of calgary, a Score of 2 – 1, and a Series of 4 – 3?",
    "question_th": "การตัดสินใจใดที่มีผู้เข้าชมจากคาลการี คะแนน 2 – 1 และชุดที่ 4 – 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 – 1\"",
    "question_en": "Which Visitor has a Series of 2 – 1?",
    "question_th": "ผู้เยี่ยมชมรายใดมีซีรี่ส์ 2 – 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_en": "Which Visitor has a Home of calgary, and a Date of april 17?",
    "question_th": "ผู้เยี่ยมชมคนใดมีบ้านของคาลการี และวันที่ 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 – 4\"",
    "question_en": "Which Decision has a Visitor of vancouver, and a Score of 5 – 4?",
    "question_th": "การตัดสินใจใดที่มีผู้มาเยือนแวนคูเวอร์ และคะแนน 5 – 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_en": "Which Visitor has a Home of vancouver, and a Decision of cloutier?",
    "question_th": "ผู้เยี่ยมชมคนใดมีบ้านของแวนคูเวอร์และมีการตัดสินใจของผู้มีอำนาจมากขึ้น?",
    "context": "CREATE TABLE table_name_30 (visitor VARCHAR, home VARCHAR, decision VARCHAR)"
  },
  {
    "answer": "SELECT decision FROM table_name_42 WHERE series = \"3 – 3\"",
    "question_en": "Which Decision has a Series of 3 – 3?",
    "question_th": "การตัดสินใจใดมีชุดข้อมูล 3 – 3",
    "context": "CREATE TABLE table_name_42 (decision VARCHAR, series VARCHAR)"
  },
  {
    "answer": "SELECT race_4 FROM table_name_76 WHERE race_1 = \"dsq\"",
    "question_en": "What's the value for race 4 when race 1 is dsq?",
    "question_th": "ค่าของเรซ 4 เมื่อเรซ 1 เป็น 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_en": "What's the value for race 4 when race 3 is dns and race 2 is 27?",
    "question_th": "มูลค่าของเรซ 4 เมื่อเรซ 3 คือ DNS และเรซ 2 คือ 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_en": "What's the value for race 4 for driver kevin heffernan?",
    "question_th": "ราคาของเรซ 4 ของนักแข่งเควิน เฮฟเฟอร์นันคือเท่าไร",
    "context": "CREATE TABLE table_name_61 (race_4 VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_92 WHERE game = 4",
    "question_en": "What was the date of game 4?",
    "question_th": "เกมที่ 4 วันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_92 (date VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_name_86 WHERE date = \"november 12\"",
    "question_en": "Who had the most points in the game on November 12?",
    "question_th": "ใครมีแต้มมากที่สุดในเกมวันที่ 12 พฤศจิกายน?",
    "context": "CREATE TABLE table_name_86 (high_points VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_34 WHERE player = \"isco alarcón\"",
    "question_en": "What rank is the team that has a player named Isco Alarcón?",
    "question_th": "ทีมที่มีผู้เล่นชื่อ อิสโก อลาร์กอน คือทีมอันดับไหน?",
    "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_en": "What is the rank of Club Valencia with a U-17 Caps of 20?",
    "question_th": "สโมสรบาเลนเซียที่มีจำนวนแคป U-17 มีจำนวน 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_en": "What is High Assists, when High Points is \"T. J. Ford (29)\"?",
    "question_th": "High Assists คืออะไร เมื่อคะแนนสูงคือ \"TJ 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_en": "What is High Assists, when Date is \"March 10\"?",
    "question_th": "High Assists คืออะไร เมื่อวันที่คือ \"10 มีนาคม\"",
    "context": "CREATE TABLE table_name_93 (high_assists VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_78 WHERE team = \"@ atlanta\"",
    "question_en": "What is Record, when Team is \"@ Atlanta\"?",
    "question_th": "Record คืออะไร เมื่อทีมคือ \"@ 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_en": "What is Team, when Location Attendance is \"Rose Garden 20,020\"?",
    "question_th": "ทีมคืออะไร เมื่อการเข้าร่วมตำแหน่งคือ \"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_en": "What is Date, when High Points is \"Danny Granger (32)\"?",
    "question_th": "วันที่คืออะไรเมื่อคะแนนสูงสุดคือ \"แดนนี่ เกรนเจอร์ (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_en": "What is the place when the player is Bob Gilder and the money was $20,903?",
    "question_th": "สถานที่ที่ผู้เล่นคือ Bob Gilder และเงินอยู่ที่ 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_en": "What is the Place when Fuzzy Zoeller plated in the United States?",
    "question_th": "สถานที่ใดที่ Fuzzy Zoeller ชุบในสหรัฐอเมริกา?",
    "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_en": "What is the To par when the score was 72-67-68-71=278?",
    "question_th": "เมื่อสกอร์เป็น 72-67-68-71=278 พาร์ To คืออะไร?",
    "context": "CREATE TABLE table_name_20 (to_par VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_52 WHERE player = \"steve pate\"",
    "question_en": "What is the Place when Steve Pate was the player?",
    "question_th": "สถานที่เมื่อ Steve Pate เป็นผู้เล่นคืออะไร?",
    "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_en": "What is the diameter for 1997 when longitude is 212.0e and latitude is 47.0n?",
    "question_th": "เส้นผ่านศูนย์กลางของปี 1997 เป็นเท่าใดเมื่อลองจิจูดคือ 212.0e และละติจูดคือ 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_en": "What's the latitude when the longitude is 152.0e later than 1997?",
    "question_th": "ละติจูดเมื่อลองจิจูดเป็น 152.0e หลังจากปี 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_en": "What's the diameter when longitude is 105.0e before 2003?",
    "question_th": "เส้นผ่านศูนย์กลางเมื่อลองจิจูดคือ 105.0e ก่อนปี 2546 เป็นเท่าใด",
    "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_en": "What's the average year for the name aida-wedo dorsa with a diameter less than 450?",
    "question_th": "ปีเฉลี่ยของชื่อ aida-wedo dorsa ที่มีเส้นผ่านศูนย์กลางน้อยกว่า 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_en": "What's the total diameter when longitude is 357.8e later than 1985?",
    "question_th": "เส้นผ่านศูนย์กลางรวมเมื่อลองจิจูดคือ 357.8e หลังจากปี 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_en": "In what year was Lesli Margherita nominated?",
    "question_th": "Lesli Margherita ได้รับการเสนอชื่อเข้าชิงในปีใด",
    "context": "CREATE TABLE table_name_90 (year INTEGER, nominee VARCHAR)"
  },
  {
    "answer": "SELECT nominee FROM table_name_18 WHERE category = \"best theatre choreographer\"",
    "question_en": "Who was nominated for Best Theatre Choreographer?",
    "question_th": "ใครได้รับการเสนอชื่อเข้าชิงรางวัล 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_en": "What hometown was FR Year, and ha Brown's Gymnastics club?",
    "question_th": "บ้านเกิดอะไรคือ FR Year และชมรมยิมนาสติกของฮาบราวน์?",
    "context": "CREATE TABLE table_name_20 (hometown VARCHAR, year VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_60 WHERE name = \"asi peko\"",
    "question_en": "What year was Asi Peko?",
    "question_th": "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_en": "What is the height for the Oakville Gymnastics Club?",
    "question_th": "ความสูงของ 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_en": "when was the loan ended when the loan club is spartak moscow?",
    "question_th": "การยืมตัวสิ้นสุดลงเมื่อใดที่สโมสรยืมตัวคือสปาร์ตักมอสโก?",
    "context": "CREATE TABLE table_name_98 (ended VARCHAR, loan_club VARCHAR)"
  },
  {
    "answer": "SELECT start_source FROM table_name_42 WHERE loan_club = \"fulham\"",
    "question_en": "What is the loan start source when the loan club is fulham?",
    "question_th": "แหล่งที่มาของการยืมตัวเมื่อสโมสรยืมตัวคือฟูแล่มคืออะไร?",
    "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_en": "When was the loan started when the coutry is eng, the loan club is sunderland and the end source is south wales echo?",
    "question_th": "การยืมตัวเริ่มต้นเมื่อใดเมื่อคูทรีเป็นภาษาอังกฤษ สโมสรยืมคือซันเดอร์แลนด์ และแหล่งที่มาสุดท้ายคือเซาท์เวลส์เอคโค่?",
    "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_en": "when was the loan ended when the country is ghana?",
    "question_th": "เงินกู้สิ้นสุดเมื่อใดเมื่อประเทศคือกานา?",
    "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_en": "what is the loan club with the start source is bbc sport and started on 9 february?",
    "question_th": "สโมสรยืมตัวที่มีต้นทางคือ bbc sport และเริ่มวันที่ 9 กุมภาพันธ์คืออะไร?",
    "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_en": "what is the start source when started on 2 february?",
    "question_th": "แหล่งที่มาของการเริ่มต้นเมื่อเริ่มในวันที่ 2 กุมภาพันธ์คืออะไร?",
    "context": "CREATE TABLE table_name_47 (start_source VARCHAR, started VARCHAR)"
  },
  {
    "answer": "SELECT MIN(finished) FROM table_name_70 WHERE post < 2",
    "question_en": "What is the lowest Finished, when Post is less than 2?",
    "question_th": "เสร็จแล้วต่ำสุดคือเท่าไร เมื่อ Post น้อยกว่า 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_en": "What is Owner, when Finished is less than 15, when Trainer is \"Steve Asmussen\", and when Horse is \"Z Fortune\"?",
    "question_th": "เจ้าของคืออะไร เมื่อเสร็จสิ้นแล้วน้อยกว่า 15 เมื่อเทรนเนอร์คือ \"Steve Asmussen\" และเมื่อม้าคือ \"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_en": "What is the Time/ Behind, when Jockey is \"Jose Lezcano\"?",
    "question_th": "อะไรคือเวลา/เบื้องหลัง เมื่อจ๊อกกี้คือ \"โฮเซ่ เลซกาโน\"?",
    "context": "CREATE TABLE table_name_44 (time__behind VARCHAR, jockey VARCHAR)"
  },
  {
    "answer": "SELECT jockey FROM table_name_53 WHERE post = 12",
    "question_en": "What is Jockey, when Post is 12?",
    "question_th": "Jockey คืออะไรเมื่อโพสต์อายุ 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 ½\"",
    "question_en": "What is the total number of Post, when Trainer is \"Steve Asmussen\", and when Time/ Behind is 19 ½?",
    "question_th": "จำนวนโพสต์ทั้งหมดเป็นเท่าใด เมื่อเทรนเนอร์คือ \"สตีฟ แอสมุสเซน\" และเมื่อเวลา/เบื้องหลังคือ 19 ½?",
    "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_en": "What is Jockey, when Horse is \"Eight Belles\"?",
    "question_th": "Jockey คืออะไร เมื่อ Horse คือ \"Eight Belles\"?",
    "context": "CREATE TABLE table_name_74 (jockey VARCHAR, horse VARCHAR)"
  },
  {
    "answer": "SELECT team_captain FROM table_name_42 WHERE stadium = \"regenboogstadion\"",
    "question_en": "Who is the team captain of Regenboogstadion?",
    "question_th": "ใครคือกัปตันทีม Regenboogstadion?",
    "context": "CREATE TABLE table_name_42 (team_captain VARCHAR, stadium VARCHAR)"
  },
  {
    "answer": "SELECT current_manager FROM table_name_15 WHERE location = \"tubize\"",
    "question_en": "Who is the current manager of the team located in tubize?",
    "question_th": "ผู้จัดการทีมคนปัจจุบันที่อยู่ในทูไบซ์คือใคร?",
    "context": "CREATE TABLE table_name_15 (current_manager VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_17 WHERE current_manager = \"ariel jacobs\"",
    "question_en": "Where is the location of the team with a current manager of Ariel Jacobs?",
    "question_th": "ตำแหน่งของทีมกับผู้จัดการทีมคนปัจจุบันของ 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_en": "What was the victory margin for a finish of 1st with a rider of Kent Desormeaux, with a time of 1:35.66?",
    "question_th": "อัตราชัยชนะในการจบอันดับ 1 ของนักบิด Kent Desormeaux ด้วยเวลา 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_en": "What was the time of the Kentucky Derby?",
    "question_th": "Kentucky Derby จัดขึ้นกี่โมง?",
    "context": "CREATE TABLE table_name_79 (time VARCHAR, race VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_32 WHERE race = \"kentucky derby\"",
    "question_en": "What was the finish of the Kentucky Derby?",
    "question_th": "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_en": "Which race had a finish of 1st at Saratoga Race Course?",
    "question_th": "การแข่งขันใดเข้าเส้นชัยเป็นที่ 1 ในสนามแข่งม้า Saratoga",
    "context": "CREATE TABLE table_name_60 (race VARCHAR, finish VARCHAR, track VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_67 WHERE year = \"1981\"",
    "question_en": "Who was the player in 1981?",
    "question_th": "ใครคือผู้เล่นในปี 1981?",
    "context": "CREATE TABLE table_name_67 (player VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_67 WHERE year = \"1976\"",
    "question_en": "What is the team for 1976?",
    "question_th": "ปี 1976 อยู่ทีมอะไร?",
    "context": "CREATE TABLE table_name_67 (team VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_75 WHERE date = \"august 5\"",
    "question_en": "What is the opponent for the date of august 5?",
    "question_th": "คู่ต่อสู้ในวันที่ 5 สิงหาคมคืออะไร?",
    "context": "CREATE TABLE table_name_75 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_83 WHERE date = \"august 23\"",
    "question_en": "What is the result for the date of august 23?",
    "question_th": "ผลการแข่งขันวันที่ 23 สิงหาคม เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_83 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_27 WHERE opponent = \"houston oilers\"",
    "question_en": "When the opponent is houston oilers what is the result?",
    "question_th": "เมื่อคู่ต่อสู้เป็นฮูสตัน ออยเลอร์ ผลลัพธ์จะเป็นอย่างไร?",
    "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_en": "Which Goals Against has a Drawn larger than 9, a Lost larger than 15, a Position of 24, and a Played smaller than 46?",
    "question_th": "ประตูใดที่เสียมากกว่า 9 แพ้มากกว่า 15 ตำแหน่ง 24 และเล่นน้อยกว่า 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_en": "Which Points 2 has Drawn of 15, a Position larger than 20, and a Goals For smaller than 45?",
    "question_th": "แต้มไหนที่ 2 เสมอได้ 15 แต้ม ตำแหน่งที่มากกว่า 20 และประตูที่น้อยกว่า 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_en": "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?",
    "question_th": "เป้าหมายใดที่มีตำแหน่งมากกว่า 2, แพ้มากกว่า 18, ทีมของเมืองแมทล็อค และเป้าหมายต่อมากกว่า 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_en": "Which Points 2 has a Goal Average 1 larger than 1.17, a Goals Against larger than 48, and a Position larger than 6?",
    "question_th": "แต้ม 2 ใดที่มีค่าเฉลี่ยประตู 1 มากกว่า 1.17 ประตูต่อมากกว่า 48 และตำแหน่งที่ใหญ่กว่า 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_en": "What is the 1986 value with A in 1991 and A in 1987?",
    "question_th": "ค่าปี 1986 โดยมี A ในปี 1991 และ A ในปี 1987 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_17 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1995 FROM table_name_29 WHERE 1986 = \"a\" AND 1992 = \"2r\"",
    "question_en": "What is the 1995 value with A in 1986 and 2r in 1992?",
    "question_th": "ค่าปี 1995 โดยมี A ในปี 1986 และ 2r ในปี 1992 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_29 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1989 FROM table_name_95 WHERE 1990 = \"f\"",
    "question_en": "What is the 1989 value with F in 1990?",
    "question_th": "ค่า 1989 กับ F ในปี 1990 คืออะไร?",
    "context": "CREATE TABLE table_name_95 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1987 FROM table_name_45 WHERE 1994 = \"atp masters series\"",
    "question_en": "What is the 1987 value of the 1994 atp masters series?",
    "question_th": "มูลค่าปี 1987 ของซีรีส์ atp masters ปี 1994 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_45 (Id VARCHAR)"
  },
  {
    "answer": "SELECT MIN(round) FROM table_name_26 WHERE position = \"ls\"",
    "question_en": "What is the lowest round that a pick had a position of ls?",
    "question_th": "รอบต่ำสุดที่ตัวเลือกมีตำแหน่ง 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_en": "What was the sum of the rounds for the player who had a position of LS and an overall draft pick bigger than 230?",
    "question_th": "ผลรวมของรอบสำหรับผู้เล่นที่มีตำแหน่ง LS และดราฟต์โดยรวมที่มากกว่า 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_en": "WHAT IS THE VENUE ON MARCH 28, 2008?",
    "question_th": "สถานที่จัดงานในวันที่ 28 มีนาคม 2551 คืออะไร?",
    "context": "CREATE TABLE table_name_34 (venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(attendance) FROM table_name_65 WHERE date = \"october 8\"",
    "question_en": "How many were in Attendance on October 8?",
    "question_th": "มีผู้เข้าร่วมในวันที่ 8 ตุลาคมจำนวนกี่คน?",
    "context": "CREATE TABLE table_name_65 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_73 WHERE date = \"october 8\"",
    "question_en": "What is the Location of the Game on October 8?",
    "question_th": "สถานที่ของเกมในวันที่ 8 ตุลาคมคือที่ไหน?",
    "context": "CREATE TABLE table_name_73 (location VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT nat FROM table_name_56 WHERE goals > 64",
    "question_en": "What is the nationality for the player with over 64 goals?",
    "question_th": "นักเตะที่ยิงเกิน 64 ประตู สัญชาติอะไร?",
    "context": "CREATE TABLE table_name_56 (nat VARCHAR, goals INTEGER)"
  },
  {
    "answer": "SELECT score FROM table_name_84 WHERE visitor = \"philadelphia\"",
    "question_en": "What was the score of the game where Philadelphia was the visitor?",
    "question_th": "เกมที่ฟิลาเดลเฟียเป็นผู้มาเยือนมีสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_84 (score VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT AVG(spectators) FROM table_name_60 WHERE round = \"group h\"",
    "question_en": "What are the average spectators from the Group H Round?",
    "question_th": "ผู้ชมโดยเฉลี่ยจากรอบ Group H คือเท่าไร?",
    "context": "CREATE TABLE table_name_60 (spectators INTEGER, round VARCHAR)"
  },
  {
    "answer": "SELECT manufacturer FROM table_name_5 WHERE rider = \"stefan bradl\"",
    "question_en": "Can you tell me the Manufacturer that has the Rider of stefan bradl?",
    "question_th": "คุณช่วยบอกผู้ผลิตที่มี 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_en": "Can you tell me the highest Grid that has the Time of +15.532, and the Laps larger than 23?",
    "question_th": "คุณช่วยบอกตารางสูงสุดที่มีเวลา +15.532 และรอบที่มากกว่า 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_en": "Can you tell me the sum of Grid that has the Time of +6.355, and the Laps larger than 23?",
    "question_th": "คุณช่วยบอกผลรวมของกริดที่มีเวลา +6.355 และรอบที่มากกว่า 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_en": "What is Time, when Location is \"Savannah, Georgia , United States\"?",
    "question_th": "เวลาคือเมื่อไร โดยที่ตั้งคือ \"สะวันนา รัฐจอร์เจีย สหรัฐอเมริกา\"",
    "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_en": "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\"?",
    "question_th": "จำนวนรอบทั้งหมดคือเท่าไร เมื่อเวลาเป็น \"N/A\" เมื่อสถานที่คือ \"แอละแบมา สหรัฐอเมริกา\" และเมื่อบันทึกเป็น \"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_en": "Which Retitled as/Same has a Last Aired larger than 1982, and a Show of we got it made?",
    "question_th": "Retitled as/Same รายการใดที่มี Last Aired มากกว่าปี 1982 และรายการที่เราได้ทำรายการนี้",
    "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_en": "Which New/Returning/Same Network has a Last Aired of 1982?",
    "question_th": "เครือข่ายใหม่ / ที่กลับมา / เดิมใดที่ออกอากาศครั้งล่าสุดในปี 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_en": "Which New/Returning/Same Network has a Previous Network of nbc, and a Show of blockbusters?",
    "question_th": "เครือข่ายใหม่ / ที่กลับมา / เดิมใดที่มีเครือข่ายก่อนหน้าของ nbc และการแสดงภาพยนตร์ดัง?",
    "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_en": "Which New/Returning/Same Network has a Retitled as/Same of same, and a Last Aired larger than 1984?",
    "question_th": "เครือข่ายใหม่/กลับมา/เหมือนเดิมใดที่มีชื่อซ้ำเป็น/เหมือนเดิม และออกอากาศครั้งสุดท้ายที่ใหญ่กว่าปี 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_en": "Which Last Aired has a Retitled as/Same of classic concentration?",
    "question_th": "Last Aired เรื่องไหนที่มี Retitled เป็น/เหมือนกันกับเรื่องคลาสสิก?",
    "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_en": "How many rounds had a race name of anglia tv trophy?",
    "question_th": "แองเกลียทีวีโทรฟี่มีชื่อการแข่งขันกี่รอบ?",
    "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_en": "What circuit was the race named international trophy raced at by the winning driver eliseo salazar?",
    "question_th": "การแข่งขันที่มีชื่อว่าถ้วยรางวัลระดับนานาชาติแข่งที่สนามใดโดยนักแข่งที่ชนะ เอลิเซโอ ซาลาซาร์",
    "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_en": "What circuit did emilio de villota win on at the pace petroleum trophy?",
    "question_th": "เอมิลิโอ เด วิลโลตาชนะในสนามอะไรจากถ้วยรางวัลปิโตรเลียม?",
    "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_en": "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?",
    "question_th": "พาร์ของผู้เล่นจากสหรัฐอเมริกาอันดับที่ 6 และคะแนน 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_en": "Who is the player from Australia with a to par of +5?",
    "question_th": "นักเตะจากออสเตรเลียที่พาร์ถึง +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_en": "What is the highest amount of money a player with a score of 69-71-71-73=284 has?",
    "question_th": "ผู้เล่นที่มีคะแนน 69-71-71-73=284 มีจำนวนเงินสูงสุดคือเท่าไร?",
    "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_en": "What is the time of the match with 3 rounds and a 9-3 record?",
    "question_th": "แมตช์ 3 นัด เสมอ 9-3 กี่โมง?",
    "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_en": "What is the method of the match with a win res., 1 round, and a 3-2 record?",
    "question_th": "วิธีการแข่งขันแบบชนะต่อ 1 รอบ เสมอ 3-2?",
    "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_en": "Who was the sports agent who finished 9th?",
    "question_th": "ใครคือตัวแทนกีฬาที่จบอันดับที่ 9?",
    "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_en": "What is the lowest score that wes ellis got?",
    "question_th": "เวส เอลลิส ได้คะแนนต่ำสุดเท่าไหร่?",
    "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_en": "What was the score for the player from the United states that was +1 to par?",
    "question_th": "สกอร์ของนักเตะจากอเมริกาที่ +1 พาร์เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_64 (score VARCHAR, to_par VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_4 WHERE place = \"t10\"",
    "question_en": "Who was the player who placed t10?",
    "question_th": "ใครคือผู้เล่นที่วาง 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_en": "How far to par did ed furgol from the United States get when he scored less than 72 and was placed at t3?",
    "question_th": "เอ็ด เฟอร์โกลจากสหรัฐอเมริกาทำได้ไกลแค่ไหนเมื่อเขาทำคะแนนได้น้อยกว่า 72 และอยู่อันดับที่ 3",
    "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_en": "What game was played at Philadelphia?",
    "question_th": "ฟิลาเดลเฟียเล่นเกมอะไร?",
    "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_en": "What is the sum of share with a rating larger than 1.2, a 3 rank timeslot, and 6.07 million viewers?",
    "question_th": "ผลรวมของการแบ่งปันที่มีเรตติ้งมากกว่า 1.2 ช่วงเวลาอันดับ 3 และมีผู้ชม 6.07 ล้านคนคือเท่าใด",
    "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_en": "What is the average week rank with 1.2 ratings, less than 1.94 million viewers, and a night rank less than 11?",
    "question_th": "อันดับเฉลี่ยประจำสัปดาห์ที่มีเรตติ้ง 1.2 ผู้ชมน้อยกว่า 1.94 ล้านคน และอันดับกลางคืนน้อยกว่า 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_en": "what is the round when the college is syracuse and the pick is less than 3?",
    "question_th": "วิทยาลัยเป็นซีราคิวส์และคัดเลือกไม่ถึง 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_en": "what is the position when the pick is more than 2, the overall is more than 28 and the college is nebraska?",
    "question_th": "ตำแหน่งไหนเมื่อเลือกเกิน 2 รวมเกิน 28 และวิทยาลัยเนแบรสกา?",
    "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_en": "what is the pick when the college is arkansas and the overall is more than 316?",
    "question_th": "จะเลือกอะไรเมื่อวิทยาลัยอยู่ในอาร์คันซอและคะแนนรวมมากกว่า 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_en": "what is the lowest overall when the pick is less than 2?",
    "question_th": "โดยรวมต่ำสุดเมื่อเลือกน้อยกว่า 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_en": "what is the round when the college is north carolina and the overall is more than 124?",
    "question_th": "วิทยาลัยอยู่นอร์ธแคโรไลนา รอบไหน และรวมเกิน 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_en": "October 28, 2001 was what week of the season?",
    "question_th": "28 ตุลาคม 2544 เป็นสัปดาห์ใดของฤดูกาล?",
    "context": "CREATE TABLE table_name_98 (week VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_1 WHERE week = 11",
    "question_en": "What was the result of week 11?",
    "question_th": "สัปดาห์ที่ 11 ผลลัพธ์เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_1 (result VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_55 WHERE week > 16",
    "question_en": "What was the date of a week larger than 16?",
    "question_th": "วันที่ของสัปดาห์มากกว่า 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_en": "November 25, 2001 was what week of the season?",
    "question_th": "25 พฤศจิกายน พ.ศ. 2544 เป็นสัปดาห์ใดของฤดูกาล?",
    "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_en": "Which Wheels has Built smaller than 1958, a Location of york, and a Railway of nsr?",
    "question_th": "ล้อใดที่สร้างขึ้นเล็กกว่าปี 1958 ที่ตั้งของยอร์ก และทางรถไฟของ 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_en": "Which Built has a Builder of brel crewe?",
    "question_th": "Built ตัวไหนมี Builder ของ 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_en": "Which Railway has a Location of shildon, and an ObjectNumber of 1978-7006?",
    "question_th": "ทางรถไฟสายใดมีที่ตั้งของชิลดอน และหมายเลขวัตถุปี 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_en": "Which Railway has a Location of shildon, and an ObjectNumber of 1975-7022?",
    "question_th": "รถไฟขบวนใดมีที่ตั้งของชิลดอน และหมายเลขวัตถุปี 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_en": "Which Location has an ObjectNumber of 2005-7698?",
    "question_th": "ตำแหน่งใดมี ObjectNumber เป็น 2005-7698",
    "context": "CREATE TABLE table_name_71 (location VARCHAR, objectnumber VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_name_28 WHERE years = \"1995–1996\"",
    "question_en": "What is the Club during the Years 1995–1996?",
    "question_th": "สโมสรคืออะไรในช่วงปี พ.ศ. 2538-2539?",
    "context": "CREATE TABLE table_name_28 (club VARCHAR, years VARCHAR)"
  },
  {
    "answer": "SELECT years FROM table_name_71 WHERE position = \"mf\"",
    "question_en": "In what Years was the Player in MF Position?",
    "question_th": "ผู้เล่นในตำแหน่ง MF อยู่ในช่วงปีใด?",
    "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_en": "What is the 2nd leg of the 1st team in the 2007 uefa intertoto cup?",
    "question_th": "เลกที่ 2 ของทีมชุดแรกในศึกยูฟ่า อินเตอร์โตโต้ คัพ 2007 คืออะไร?",
    "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_en": "What is the 2nd leg of dinamo minsk team #2?",
    "question_th": "เลกที่ 2 ของทีมดินาโม มินสค์ #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_en": "What is the 2nd leg of the second team in the 2007 uefa intertoto cup?",
    "question_th": "เลกที่ 2 ของทีมที่สองในศึกยูฟ่าอินเตอร์โตโต้คัพ 2007 คืออะไร?",
    "context": "CREATE TABLE table_name_78 (team__number2 VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_93 WHERE against = 10",
    "question_en": "What is the status of the 10 against?",
    "question_th": "สถานะของ 10 ต่อต้านคืออะไร?",
    "context": "CREATE TABLE table_name_93 (status VARCHAR, against VARCHAR)"
  },
  {
    "answer": "SELECT opposing_team FROM table_name_76 WHERE status = \"test match\"",
    "question_en": "Who was the opposing team in the test match?",
    "question_th": "ใครคือทีมตรงข้ามในการแข่งขันนัดทดสอบ?",
    "context": "CREATE TABLE table_name_76 (opposing_team VARCHAR, status VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_63 WHERE date = \"05/09/1973\"",
    "question_en": "Where was the 05/09/1973 venue?",
    "question_th": "สถานที่จัดงานวันที่ 05/09/1973 อยู่ที่ไหน?",
    "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_en": "Which Overall has a Position of te, and a Round larger than 5?",
    "question_th": "ซึ่ง Overall มีตำแหน่งเป็น te และรอบที่มากกว่า 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_en": "Which Position has a Round larger than 14, and an Overall smaller than 419?",
    "question_th": "ตำแหน่งใดมีรอบที่ใหญ่กว่า 14 และผลรวมน้อยกว่า 419",
    "context": "CREATE TABLE table_name_70 (position VARCHAR, round VARCHAR, overall VARCHAR)"
  },
  {
    "answer": "SELECT overall FROM table_name_65 WHERE round < 2",
    "question_en": "Which Overall has a Round smaller than 2?",
    "question_th": "โดยรวมใดมีรอบที่เล็กกว่า 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_en": "Which Name has a Round larger than 4, an Overall smaller than 338, a Pick smaller than 11, and a College of virginia tech?",
    "question_th": "ชื่อใดที่มีรอบใหญ่กว่า 4, โดยรวมน้อยกว่า 338, ตัวเลือกน้อยกว่า 11 และ 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_en": "Who has the event of 36 arrow finals?",
    "question_th": "ใครมีงาน 36 Arrows รอบชิงชนะเลิศบ้างคะ?",
    "context": "CREATE TABLE table_name_81 (name VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(score) FROM table_name_72 WHERE event = \"36 arrow finals\"",
    "question_en": "What is the total score for the 36 arrow finals event?",
    "question_th": "คะแนนรวมของรายการ 36 Arrow Finals เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_72 (score VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT moving_to FROM table_name_78 WHERE nat = \"tri\"",
    "question_en": "Who is moving with the nationality of Tri?",
    "question_th": "ใครย้ายสัญชาติตรี?",
    "context": "CREATE TABLE table_name_78 (moving_to VARCHAR, nat VARCHAR)"
  },
  {
    "answer": "SELECT sspec_number FROM table_name_52 WHERE frequency = \"1ghz\"",
    "question_en": "What is the sSpec Number of the model with a 1ghz frequency?",
    "question_th": "sSpec Number ของรุ่นที่มีความถี่ 1ghz คืออะไร?",
    "context": "CREATE TABLE table_name_52 (sspec_number VARCHAR, frequency VARCHAR)"
  },
  {
    "answer": "SELECT part_number_s_ FROM table_name_32 WHERE frequency = \"933mhz\"",
    "question_en": "What is the part number of the model that has a frequency of 933mhz?",
    "question_th": "หมายเลขชิ้นส่วนของรุ่นที่มีความถี่ 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_en": "What date was part number rk80533pz933256 released?",
    "question_th": "หมายเลขชิ้นส่วน rk80533pz933256 ออกวันไหนครับ?",
    "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_en": "What is the frequency of the model with sSpec number sl5qj?",
    "question_th": "ความถี่ของรุ่นที่มีหมายเลข sSpec sl5qj คือเท่าไร?",
    "context": "CREATE TABLE table_name_72 (frequency VARCHAR, sspec_number VARCHAR)"
  },
  {
    "answer": "SELECT years FROM table_name_69 WHERE coach = \"jim berryman\"",
    "question_en": "How many years does coach Jim Berryman have?",
    "question_th": "โค้ช Jim Berryman มีอายุกี่ปี?",
    "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_en": "Which Location has a Method of submission (rear naked choke), a Round of 1, and an Event of ufc 127?",
    "question_th": "สนามไหนมีวิธีซับมิชชัน (โช้คหลัง), รอบ 1 และรายการ 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_en": "Which Record has a Time of n/a?",
    "question_th": "บันทึกใดมีเวลา 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_en": "Which Opponent has a Location of gold coast , australia, and a Method of submission (punches)?",
    "question_th": "ฝ่ายตรงข้ามคนใดที่มีที่ตั้งของโกลด์โคสต์ ประเทศออสเตรเลีย และวิธีการยอมแพ้ (หมัด)?",
    "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_en": "what is the location when the circuit is lowood circuit and the race is lowood trophy?",
    "question_th": "ตำแหน่งที่สนามคือวงจรโลว์วูดและการแข่งขันคือโลว์วูดโทรฟี่?",
    "context": "CREATE TABLE table_name_47 (location VARCHAR, circuit VARCHAR, race VARCHAR)"
  },
  {
    "answer": "SELECT race FROM table_name_81 WHERE date = \"23 october\"",
    "question_en": "what is the race on 23 october?",
    "question_th": "การแข่งขันวันที่ 23 ตุลาคมมีอะไรบ้าง?",
    "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_en": "what is the circuit when the winner is stan jones and the race is phillip island trophy race?",
    "question_th": "สนามจะเป็นอย่างไรเมื่อผู้ชนะคือสแตน โจนส์ และการแข่งขันคือการแข่งขันชิงถ้วยฟิลลิป ไอส์แลนด์?",
    "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_en": "What is the displacement and configuration with a max speed of km/h (mph) and the car model Panamera 4s?",
    "question_th": "การกระจัดและการกำหนดค่าด้วยความเร็วสูงสุด km/h (mph) เป็นเท่าใด และรถรุ่น 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_en": "What is the displacement & configuration with CO2 of 204 g/km emissions?",
    "question_th": "การกระจัดและการกำหนดค่าด้วยการปล่อย CO2 ที่ 204 กรัม/กม. เป็นเท่าใด",
    "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_en": "What displacement & configuration does the car model Panamera 4s have?",
    "question_th": "รถรุ่น Panamera 4s มีการกระจัดและการกำหนดค่าแบบใด",
    "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_en": "What is the emissions CO2 with a max speed of km/h (mph) of the car model Panamera 4s?",
    "question_th": "อัตราการปล่อย CO2 ที่ความเร็วสูงสุด km/h (mph) ของรถยนต์รุ่น 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_en": "How many tickets were available at Halle Tony Garnier on June 15, 2009?",
    "question_th": "Halle Tony Garnier มีตั๋วกี่ใบในวันที่ 15 มิถุนายน 2552",
    "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_en": "What city had tickets available since March 28, 2008 and went on sale on September 4, 2009?",
    "question_th": "เมืองใดที่มีตั๋ววางจำหน่ายตั้งแต่วันที่ 28 มีนาคม 2551 และวางจำหน่ายในวันที่ 4 กันยายน 2552",
    "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_en": "WHAT IS THE PICK FOR JOE DAY, ROUND LARGER THAN 1, AND OVERALL SMALLER THAN 150?",
    "question_th": "ตัวเลือกสำหรับ JOE DAY มีขนาดใหญ่กว่า 1 และโดยรวมเล็กกว่า 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_en": "WHAT IS THE SUM OF PICK WITH AN OVERALL LARGER THAN 250, AND FOR FLORIDA COLLEGE?",
    "question_th": "ผลรวมของการเลือกโดยรวมที่มากกว่า 250 และสำหรับวิทยาลัยฟลอริดาคือเท่าใด",
    "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_en": "What is the loan club with bbc sport as the start source and ended in 3 February?",
    "question_th": "สโมสรยืมตัวที่มี BBC Sport เป็นแหล่งต้นทางและสิ้นสุดในวันที่ 3 กุมภาพันธ์ คืออะไร?",
    "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_en": "When did the enews start source start?",
    "question_th": "แหล่งที่มาของการเริ่มต้น enews เริ่มต้นเมื่อใด",
    "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_en": "What is the start source of the irl country, which ended on 13 April?",
    "question_th": "จุดเริ่มต้นของประเทศ irl สิ้นสุดวันที่ 13 เมษายน คืออะไร?",
    "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_en": "What is the country named feeney with a bbc sport start source?",
    "question_th": "ประเทศอะไรชื่อ feeney ซึ่งมีแหล่งข่าวจาก BBC Sport Start?",
    "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_en": "What is the loan club named dennehy?",
    "question_th": "สโมสรยืมตัวชื่อเดนเนฮี่คืออะไร?",
    "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_en": "What's the most races with less than 10 podiums and 1st position?",
    "question_th": "การแข่งขันใดที่มีน้อยกว่า 10 โพเดียมและอันดับที่ 1 มากที่สุด?",
    "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_en": "How many runs did mahela jayawardene and thilan samaraweera have?",
    "question_th": "มเฮลา ชยวาร์ดีน และ ทิลัน สมาราวีระ วิ่งได้กี่ครั้ง?",
    "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_en": "What venue did mahela jayawardene and thilan samaraweera play at?",
    "question_th": "มเหลา ชยวาร์ดีน และ ธีลัน สมาราวีระ เล่นที่สถานที่ใด?",
    "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_en": "Who were the batting partners that played for India in 1997?",
    "question_th": "ใครคือคู่ตีบอลที่เล่นให้กับอินเดียในปี 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_en": "What is the defending forces when Al-Murassas shows for name?",
    "question_th": "กองกำลังป้องกันเมื่ออัล-มูราสซาสแสดงชื่อคืออะไร?",
    "context": "CREATE TABLE table_name_21 (defending_forces VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT brigade FROM table_name_68 WHERE name = \"tall al-shawk\"",
    "question_en": "What is the brigade Tall Al-Shawk shows for the name?",
    "question_th": "กองพลน้อย Tall Al-Shawk แสดงชื่ออะไร?",
    "context": "CREATE TABLE table_name_68 (brigade VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT brigade FROM table_name_7 WHERE name = \"al-bira\"",
    "question_en": "What is the brigade when Al-Bira is the name?",
    "question_th": "กองพลน้อยในชื่ออัล-บีราคืออะไร?",
    "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_en": "What is the brigade when Al-Hamra ('arab al-hamra) shows for name?",
    "question_th": "กองพลน้อยคืออะไรเมื่ออัล-ฮัมรา ('อาหรับ อัล-ฮัมรา) แสดงชื่อ?",
    "context": "CREATE TABLE table_name_63 (brigade VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT defending_forces FROM table_name_41 WHERE population = \"120\"",
    "question_en": "What is the Defending forces when the population was 120?",
    "question_th": "กองกำลังป้องกันเมื่อมีประชากร 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_en": "What was the rank of the park that had a value of 5,040,000 in 2010?",
    "question_th": "อุทยานที่มีมูลค่า 5,040,000 ในปี 2553 อยู่ในอันดับที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_30 (rank VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(overall_pick) FROM table_name_40 WHERE round < 3",
    "question_en": "What was the overall pick number of the player selected before round 3?",
    "question_th": "หมายเลขเลือกโดยรวมของผู้เล่นที่เลือกก่อนรอบที่ 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_en": "Which College/Junior/Club Team (League) did the player julien cayer who was selected before round 3 play for?",
    "question_th": "ทีมวิทยาลัย/จูเนียร์/คลับ (ลีก) คนไหนที่ผู้เล่น Julien Cayer ที่ได้รับเลือกก่อนรอบ 3 ลงเล่นให้?",
    "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_en": "what is the least bronze when the rank is 3 and silver is less than 2?",
    "question_th": "บรอนซ์น้อยที่สุดเมื่ออันดับ 3 และเงินน้อยกว่า 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_en": "what is the total when bronze is 0 and the nation is hungary?",
    "question_th": "เมื่อทองแดงเป็น 0 และชาติเป็นฮังการีทั้งหมดเป็นเท่าใด?",
    "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_en": "what is the total when the rank is 7 and gold is more than 0?",
    "question_th": "ผลรวมเมื่ออันดับเป็น 7 และทองมากกว่า 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_en": "what is the highest gold when the nation is total and the total is less than 24?",
    "question_th": "ทองคำสูงสุดเมื่อรวมประเทศแล้วยอดรวมน้อยกว่า 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_en": "Looking only at matches occurring after Game 51, who was the opponent for the game that ended with a score of 99-129?",
    "question_th": "ดูเฉพาะแมตช์ที่เกิดขึ้นหลังเกมที่ 51 ใครเป็นคู่ต่อสู้ในเกมที่จบลงด้วยสกอร์ 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_en": "For the game against the Washington Bullets, what was the final score?",
    "question_th": "ในเกมกับวอชิงตัน บุลเล็ตส์ สกอร์สุดท้ายเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_97 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_31 WHERE opponent = \"@ indiana pacers\"",
    "question_en": "For the game where the opponent is listed as @ Indiana Pacers, what was the end record?",
    "question_th": "สำหรับเกมที่คู่ต่อสู้ระบุเป็น @Indiana Pacers สถิติท้ายเกมเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_31 (record VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_name_63 WHERE location = \"chicago stadium\"",
    "question_en": "Which game number was played at Chicago Stadium?",
    "question_th": "เกมหมายเลขใดที่เล่นที่สนามกีฬาชิคาโก?",
    "context": "CREATE TABLE table_name_63 (game VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT AVG(attendance) FROM table_name_51 WHERE home = \"motagua\"",
    "question_en": "What was the attendance of the match with motagua as the home team?",
    "question_th": "แมตช์นี้มีโมตากัวเป็นเจ้าบ้านเข้าร่วมอะไรบ้าง?",
    "context": "CREATE TABLE table_name_51 (attendance INTEGER, home VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_90 WHERE home = \"real espana\"",
    "question_en": "What is the score of the game where real espana was the home team?",
    "question_th": "เกมที่ เรอัล เอสปันญ่า เป็นเจ้าบ้านสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_90 (score VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT away FROM table_name_45 WHERE attendance = 916",
    "question_en": "What team was the away team for the game with 916 in attendance?",
    "question_th": "ทีมใดเป็นทีมเยือนสำหรับเกมนี้ โดยมี 916 เข้าชม?",
    "context": "CREATE TABLE table_name_45 (away VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_78 WHERE home = \"deportes savio\"",
    "question_en": "What was the score of the game wehre the deportes savio were the home team?",
    "question_th": "เกมนี้สกอร์เท่าไหร่ที่ซาวิโอที่ถูกเนรเทศเป็นเจ้าบ้าน?",
    "context": "CREATE TABLE table_name_78 (score VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT championship FROM table_name_83 WHERE winning_score = −9(66 - 69 - 73 - 71 = 279)",
    "question_en": "In which championship did the winner have a score of −9 (66-69-73-71=279)?",
    "question_th": "ผู้ชนะในการแข่งขันชิงแชมป์รายการใดมีคะแนน −9 (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 = −9(66 - 69 - 73 - 71 = 279)",
    "question_en": "During the championship where the winning score was −9 (66-69-73-71=279)?, who was the runner-up?",
    "question_th": "ในการแข่งขันชิงแชมป์ที่คะแนนชนะอยู่ที่ −9 (66-69-73-71=279)? รองชนะเลิศคือใคร?",
    "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_en": "What was the winning score in the year 2002?",
    "question_th": "คะแนนที่ชนะในปี 2545 คืออะไร?",
    "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_en": "What is the fewest goals of CD Alcoyano with more than 25 points?",
    "question_th": "ซีดี อัลโกยาโน่ ยิงได้มากกว่า 25 แต้มน้อยที่สุดคือลูกไหน?",
    "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_en": "What is the fewest number of wins that had fewer than 7 draws and more than 30 played?",
    "question_th": "จำนวนชัยชนะน้อยที่สุดที่เสมอน้อยกว่า 7 และเล่นมากกว่า 30 ครั้งคือเท่าใด",
    "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_en": "What is the fewest points that has more than 29 goals?",
    "question_th": "แต้มน้อยที่สุดที่ทำได้เกิน 29 ประตูคือข้อใด",
    "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_en": "What date have highest 0-4-4 forney locomotive with number larger than 20 and works number larger than 23754?",
    "question_th": "วันที่ใดมีหัวรถจักร forney 0-4-4 สูงสุดที่มีหมายเลขมากกว่า 20 และหมายเลขใช้งานได้มากกว่า 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_en": "What is the sum of number with type 0-4-4 forney locomotive, number smaller than 20 and works number of 1251?",
    "question_th": "รถจักร forney ประเภท 0-4-4 มีผลรวมเลขน้อยกว่า 20 และเลขงาน 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_en": "What was the lowest attendance for the game that had a time of 3:31 and was before game 7?",
    "question_th": "อะไรคือผู้เข้าร่วมต่ำสุดของเกมที่มีเวลา 3:31 น. และก่อนเกมที่ 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_en": "What was the sum of attendance for games with a time of 3:23?",
    "question_th": "จำนวนผู้เข้าร่วมเกมด้วยเวลา 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_en": "WHat is the lowest amount of bronze medals for teams with 9 silvers and less than 27 points?",
    "question_th": "เหรียญทองแดงจำนวนน้อยที่สุดสำหรับทีมที่ได้ 9 เหรียญเงินและน้อยกว่า 27 คะแนนคือเท่าใด",
    "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_en": "What is the To par of the New Zealand Player?",
    "question_th": "To par ของผู้เล่นชาวนิวซีแลนด์คืออะไร?",
    "context": "CREATE TABLE table_name_79 (to_par VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_80 WHERE score = 70 - 71 = 141",
    "question_en": "What Player had a Score of 70-71=141?",
    "question_th": "ผู้เล่นคนใดมีคะแนน 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_en": "What is Ernie Els' Score?",
    "question_th": "คะแนนของ Ernie Els คืออะไร?",
    "context": "CREATE TABLE table_name_43 (score VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_25 WHERE away_team = \"bournemouth\"",
    "question_en": "What was the attendance when Bournemouth was the away team?",
    "question_th": "บอร์นมัธเป็นทีมเยือนมีผู้ชมเข้าร่วมเท่าไร?",
    "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_en": "Who was the away team when Lincoln City was the home team?",
    "question_th": "ทีมเยือนเมื่อลินคอล์นซิตี้เป็นเจ้าบ้านคือใคร?",
    "context": "CREATE TABLE table_name_19 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_91 WHERE away_team = \"walsall\"",
    "question_en": "What was the score when Walsall was the away team?",
    "question_th": "เมื่อวอลซอลล์เป็นทีมเยือนสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_91 (score VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT wheels FROM table_name_33 WHERE built = 1920",
    "question_en": "Which wheels were built 1920?",
    "question_th": "ล้อไหนถูกสร้างขึ้นในปี 1920?",
    "context": "CREATE TABLE table_name_33 (wheels VARCHAR, built VARCHAR)"
  },
  {
    "answer": "SELECT builder FROM table_name_8 WHERE built < 1880",
    "question_en": "Which builder has a Built smaller than 1880?",
    "question_th": "ผู้สร้างรายใดที่มีการสร้างน้อยกว่าปี 1880?",
    "context": "CREATE TABLE table_name_8 (builder VARCHAR, built INTEGER)"
  },
  {
    "answer": "SELECT place FROM table_name_68 WHERE player = \"mike souchak\"",
    "question_en": "What is Place, when Player is \"Mike Souchak\"?",
    "question_th": "Place คืออะไร เมื่อผู้เล่นคือ “ไมค์ ซูชัก”?",
    "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_en": "What is Country, when Place is \"T9\", and when Player is \"Jay Hebert\"?",
    "question_th": "ประเทศคืออะไร เมื่อสถานที่คือ \"T9\" และเมื่อผู้เล่นคือ \"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_en": "What is Player, when Place is \"T9\", and when Score is \"73-70=143\"?",
    "question_th": "ผู้เล่นคืออะไร เมื่ออันดับคือ \"T9\" และเมื่อคะแนนคือ \"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_en": "What is Country, when Player is \"Dow Finsterwald\"?",
    "question_th": "ประเทศคืออะไร เมื่อผู้เล่นคือ \"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_en": "What is Score, when Country is \"United States\", when Place is \"T9\", and when Player is \"Jay Hebert\"?",
    "question_th": "Score คืออะไร เมื่อประเทศคือ \"สหรัฐอเมริกา\" เมื่ออันดับคือ \"T9\" และเมื่อผู้เล่นคือ \"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_en": "What is Score, when To Par is \"+1\", and when Player is \"Mike Souchak\"?",
    "question_th": "สกอร์คืออะไร เมื่อทูพาร์คือ \"+1\" และเมื่อผู้เล่นคือ \"ไมค์ ซูชัก\"?",
    "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_en": "What is the Score when the Home team is Chicago Black Hawks and the Record is 3-3?",
    "question_th": "สกอร์เมื่อเจ้าบ้านคือ ชิคาโก้ แบล็ค ฮอว์กส์ และสถิติ 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_en": "Which Visitor has a Score of 0-4?",
    "question_th": "ผู้เยี่ยมชมคนใดมีคะแนน 0-4?",
    "context": "CREATE TABLE table_name_78 (visitor VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_54 WHERE date = \"april 22\"",
    "question_en": "What is the Record for April 22?",
    "question_th": "บันทึกประจำวันที่ 22 เมษายน คืออะไร?",
    "context": "CREATE TABLE table_name_54 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_54 WHERE record = \"3-4\"",
    "question_en": "Which Date has a Record of 3-4?",
    "question_th": "วันไหนมีสถิติ 3-4?",
    "context": "CREATE TABLE table_name_54 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_30 WHERE record = \"3-4\"",
    "question_en": "Which Date has a Record of 3-4?",
    "question_th": "วันไหนมีสถิติ 3-4?",
    "context": "CREATE TABLE table_name_30 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_24 WHERE opponent = \"anna barone\"",
    "question_en": "What is the record for opponent Anna Barone?",
    "question_th": "สถิติของคู่ต่อสู้ 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_en": "What is the record for the Ko (head kick) method?",
    "question_th": "บันทึกของวิธีเกาะ (เตะหัว) คืออะไร?",
    "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_en": "What is the time before round 2, and the ko (knee to the body) method?",
    "question_th": "ก่อนรอบ 2 เวลาเท่าไร และวิธีโค (เข่าถึงตัว) คืออะไร?",
    "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_en": "What is the average round for the TKO (punches and elbows) method?",
    "question_th": "รอบเฉลี่ยของวิธี TKO (หมัดและศอก) คือเท่าไร?",
    "context": "CREATE TABLE table_name_89 (round INTEGER, method VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_93 WHERE event = \"ufc 19\"",
    "question_en": "Who was the opponent in UFC 19?",
    "question_th": "คู่ต่อสู้ใน 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_en": "Who was the opponent in UFC 66 who lasted for more than 1 round?",
    "question_th": "คู่ต่อสู้ใน UFC 66 ที่กินเวลาเกิน 1 รอบคือใคร?",
    "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_en": "What was the 1989 result for the tournament with 1984 of a, 1985 of a, and 1990 of a?",
    "question_th": "ผลการแข่งขันในปี 1989 สำหรับทัวร์นาเมนท์ในปี 1984 ของ a, 1985 ของ a และ 1990 ของ a คืออะไร?",
    "context": "CREATE TABLE table_name_56 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1987 FROM table_name_81 WHERE 1989 = \"a\" AND 1986 = \"3r\"",
    "question_en": "What was the 1987 result for the tournament with 1986 result of 3R and 1989 of A?",
    "question_th": "ผลลัพธ์ในปี 1987 สำหรับทัวร์นาเมนต์โดยผลการแข่งขันปี 1986 ที่ 3R และปี 1989 ของ A คืออะไร?",
    "context": "CREATE TABLE table_name_81 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1989 FROM table_name_71 WHERE 1987 = \"1r\"",
    "question_en": "What is the 1989 result of the tournament that had a 1987 result of 1R?",
    "question_th": "ผลการแข่งขันปี 1989 ของทัวร์นาเมนต์ที่ผลการแข่งขันปี 1987 เป็น 1R คืออะไร?",
    "context": "CREATE TABLE table_name_71 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1989 FROM table_name_95 WHERE 1983 = \"a\" AND 1987 = \"a\"",
    "question_en": "What is the 1989 result for the tournament that had a 1983 and 1987 result of A?",
    "question_th": "ผลลัพธ์ในปี 1989 สำหรับทัวร์นาเมนต์ที่มีผลการแข่งขัน A ในปี 1983 และ 1987 คืออะไร",
    "context": "CREATE TABLE table_name_95 (Id VARCHAR)"
  },
  {
    "answer": "SELECT res FROM table_name_69 WHERE event = \"ufc 85\"",
    "question_en": "What was the result fot the UFC 85 event?",
    "question_th": "ผลการแข่งขัน UFC 85 เป็นอย่างไร?",
    "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_en": "In which location did the Meca World Vale Tudo 6 event happen?",
    "question_th": "งาน Meca World Vale Tudo 6 จัดขึ้นที่ใด?",
    "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_en": "What was his record at the AFC: Brazil 1 event that went 3 rounds?",
    "question_th": "สถิติของเขาในรายการ AFC: Brazil 1 ที่ผ่านไป 3 รอบเป็นอย่างไร?",
    "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_en": "Which country has Anselmo Da Silva in lane 2?",
    "question_th": "ประเทศใดมี Anselmo Da Silva อยู่ในเลน 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_en": "What is the heat number at 7.63, and a reaction less than 0.229?",
    "question_th": "เลขความร้อนที่ 7.63 และปฏิกิริยาน้อยกว่า 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_en": "What is the verb meaning when part 2 is band?",
    "question_th": "คำกริยาหมายถึงอะไรเมื่อภาค 2 เป็น 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ēot\"",
    "question_en": "What is the verb meaning when the part 2 is blēot?",
    "question_th": "กริยาที่ 2 คือ blēot หมายความว่าอย่างไร?",
    "context": "CREATE TABLE table_name_5 (verb_meaning VARCHAR, part_2 VARCHAR)"
  },
  {
    "answer": "SELECT part_2 FROM table_name_4 WHERE class = \"6\"",
    "question_en": "What is the Part 2 when the class is 6?",
    "question_th": "ตอนที่ 2 ตอนชั้นม.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_en": "What is the class when the verb meaning is to nourish, to grow?",
    "question_th": "คำว่า กริยา แปลว่า บำรุง, เติบโต อยู่ชั้นไหน?",
    "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_en": "What is the Part 3 when the Verb meaning is to gather?",
    "question_th": "ตอนที่ 3 เมื่อ Verb ความหมายคือ รวบรวม คืออะไร?",
    "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_en": "What is the Verb meaning when part 1 is alan?",
    "question_th": "คำกริยาเมื่อภาค 1 คือ 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_en": "What is the average attendance for matches where the home team was vida?",
    "question_th": "ผู้เข้าชมเฉลี่ยสำหรับแมตช์ที่เจ้าบ้านคือวีด้าคือเท่าไร?",
    "context": "CREATE TABLE table_name_2 (attendance INTEGER, home VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_49 WHERE attendance = 2709",
    "question_en": "Who was the home team during the match where there were 2709 in attendance?",
    "question_th": "เจ้าบ้านคือใครในระหว่างการแข่งขันที่มีผู้เข้าร่วม 2,709 คน?",
    "context": "CREATE TABLE table_name_49 (home VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT SUM(attendance) FROM table_name_41 WHERE score = \"1:1\"",
    "question_en": "What is the sum of the attendance where the score was 1:1?",
    "question_th": "ผลรวมของผู้เข้าร่วมโดยที่คะแนนเป็น 1:1 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_41 (attendance INTEGER, score VARCHAR)"
  },
  {
    "answer": "SELECT tie_no FROM table_name_83 WHERE score = \"2–2\"",
    "question_en": "How many ties occurred with a score of 2–2?",
    "question_th": "เสมอกันกี่ครั้งด้วยคะแนน 2–2?",
    "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_en": "Who is the home team when Preston North End is the away team?",
    "question_th": "เจ้าบ้านคือใครเมื่อเพรสตันนอร์ธเอนด์เป็นทีมเยือน?",
    "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_en": "What school/club did the player who layed shooting guard attend?",
    "question_th": "ผู้เล่นที่เป็นคนวางการ์ดยิงปืนเข้าเรียนที่โรงเรียน/สโมสรใด",
    "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_en": "What school/club did gerald wilkins attend?",
    "question_th": "เจอรัลด์ วิลคินส์ เข้าเรียนที่โรงเรียน/สโมสรใด",
    "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_en": "What are the years when the grizzlies had a point guard who attended the school/club Florida?",
    "question_th": "กี่ปีที่หมีกริซลี่มีพอยต์การ์ดที่เข้าเรียนในโรงเรียน/สโมสรฟลอริดา?",
    "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_en": "What are the years when the grizzles had a player who attended UCLA?",
    "question_th": "กี่ปีที่ Grizzles มีผู้เล่นที่เข้าเรียนที่ 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_en": "What are the years when the grizzles had a player who attended Villanova?",
    "question_th": "กี่ปีที่ Grizzles มีผู้เล่นที่เข้าร่วม 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_en": "What position did the person who was with the grizzlies in 1998-1999 play?",
    "question_th": "คนที่อยู่กับกริซลี่ส์ในปี 1998-1999 เล่นตำแหน่งอะไร?",
    "context": "CREATE TABLE table_name_91 (position VARCHAR, years_for_grizzlies VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_98 WHERE opponent = \"cleveland browns\"",
    "question_en": "What is the date of the game when the opponent is the Cleveland Browns?",
    "question_th": "เกมการแข่งขันคือวันที่เท่าไหร่ที่คู่ต่อสู้คือคลีฟแลนด์บราวน์?",
    "context": "CREATE TABLE table_name_98 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_6 WHERE attendance = \"62,078\"",
    "question_en": "What is the result of the game when the attendance is 62,078?",
    "question_th": "ผลการแข่งขันเมื่อมีผู้ชม 62,078 คนเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_6 (result VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_43 WHERE attendance = \"75,466\"",
    "question_en": "What is the result of the game when the attendance is 75,466?",
    "question_th": "ผลการแข่งขันเป็นอย่างไรเมื่อมีผู้ชม 75,466 คน?",
    "context": "CREATE TABLE table_name_43 (result VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT genitive FROM table_name_1 WHERE ergative = \"shen\"",
    "question_en": "What is the genitive for the ergative shen?",
    "question_th": "สัมพันธการกของ ergative shen คืออะไร?",
    "context": "CREATE TABLE table_name_1 (genitive VARCHAR, ergative VARCHAR)"
  },
  {
    "answer": "SELECT instrumental FROM table_name_15 WHERE dative = \"shen\"",
    "question_en": "What is the instrumental for the dative shen?",
    "question_th": "อะไรคือเครื่องมือสำหรับ dative shen?",
    "context": "CREATE TABLE table_name_15 (instrumental VARCHAR, dative VARCHAR)"
  },
  {
    "answer": "SELECT adverbial FROM table_name_92 WHERE nominative = \"me\"",
    "question_en": "What is the adverbial for the nominative me?",
    "question_th": "คำวิเศษณ์สำหรับนามฉันคืออะไร?",
    "context": "CREATE TABLE table_name_92 (adverbial VARCHAR, nominative VARCHAR)"
  },
  {
    "answer": "SELECT ergative FROM table_name_33 WHERE dative = \"chven\"",
    "question_en": "What is the ergative for the dative chven?",
    "question_th": "ergative สำหรับ chven กรรมพันธุ์คืออะไร?",
    "context": "CREATE TABLE table_name_33 (ergative VARCHAR, dative VARCHAR)"
  },
  {
    "answer": "SELECT ergative FROM table_name_13 WHERE genitive = \"tkven(s)\"",
    "question_en": "What is the ergative for the genitive tkven(s)?",
    "question_th": "ergative สำหรับสัมพันธการก tkven คืออะไร?",
    "context": "CREATE TABLE table_name_13 (ergative VARCHAR, genitive VARCHAR)"
  },
  {
    "answer": "SELECT ergative FROM table_name_53 WHERE dative = \"(i)mas\"",
    "question_en": "What is the ergative for the dative (i)mas?",
    "question_th": "ergative สำหรับ 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_en": "What is the Front Side Bus for Model Number c3 850?",
    "question_th": "Front Side Bus สำหรับหมายเลขรุ่น 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_en": "What is the Frequency for Model Number c3 850?",
    "question_th": "ความถี่สำหรับหมายเลขรุ่น 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×\"",
    "question_en": "Which Model number has a Front Side Bus of 100mhz, a L2-Cache of 64kib and a Multiplier of 8.5×?",
    "question_th": "หมายเลขรุ่นใดที่มี Front Side Bus 100mhz, L2-Cache ขนาด 64kib และตัวคูณ 8.5×",
    "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_en": "What is the Voltage for Model Number c3 866?",
    "question_th": "แรงดันไฟฟ้าสำหรับหมายเลขรุ่น c3 866 คืออะไร?",
    "context": "CREATE TABLE table_name_21 (voltage VARCHAR, model_number VARCHAR)"
  },
  {
    "answer": "SELECT finalists FROM table_name_79 WHERE tournament = \"miami\"",
    "question_en": "What is Finalists, when Tournament is Miami?",
    "question_th": "ผู้เข้ารอบสุดท้ายคืออะไร เมื่อการแข่งขันคือไมอามี",
    "context": "CREATE TABLE table_name_79 (finalists VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_64 WHERE week = \"november 23\"",
    "question_en": "What is Tournament, when Week is November 23?",
    "question_th": "การแข่งขันคืออะไร เมื่อสัปดาห์คือวันที่ 23 พฤศจิกายน",
    "context": "CREATE TABLE table_name_64 (tournament VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT semifinalists FROM table_name_93 WHERE tournament = \"rome\"",
    "question_en": "What is Semifinalists, when Tournament is Rome",
    "question_th": "Semifinalists คืออะไร เมื่อการแข่งขันคือกรุงโรม",
    "context": "CREATE TABLE table_name_93 (semifinalists VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT rank__number FROM table_name_90 WHERE attendance = \"68,586\"",
    "question_en": "What rank were the Buckeyes when there were 68,586 in attendance?",
    "question_th": "Buckeyes อยู่อันดับไหนเมื่อมีผู้เข้าร่วม 68,586 คน?",
    "context": "CREATE TABLE table_name_90 (rank__number VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_65 WHERE attendance = \"40,000\"",
    "question_en": "What date was the game when 40,000 attended?",
    "question_th": "เกมวันที่เท่าไหร่ที่มีผู้เข้าร่วม 40,000 คน?",
    "context": "CREATE TABLE table_name_65 (date VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_56 WHERE attendance = \"45,943\"",
    "question_en": "What date was the game when 45,943 attended?",
    "question_th": "เกมวันที่เท่าไหร่ที่มีผู้เข้าร่วม 45,943 คน?",
    "context": "CREATE TABLE table_name_56 (date VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT opponent_number FROM table_name_16 WHERE date = \"october 17\"",
    "question_en": "Who was the opponent that played against the Buckeyes on October 17?",
    "question_th": "คู่ต่อสู้ที่เล่นกับบัคอายส์เมื่อวันที่ 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_en": "What is the result of the game played when 22,555 were in attendance and the Buckeyes were ranked #1?",
    "question_th": "อะไรคือผลลัพธ์ของเกมที่เล่นเมื่อมีผู้เข้าร่วม 22,555 คนและบัคอายส์อยู่ในอันดับที่ 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_en": "What Player is from Connecticut?",
    "question_th": "ผู้เล่นคนไหนมาจากคอนเนตทิคัต?",
    "context": "CREATE TABLE table_name_39 (player VARCHAR, college_country_team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(position) FROM table_name_73 WHERE played < 10",
    "question_en": "What is the highest position of the team having played under 10 matches?",
    "question_th": "ตำแหน่งสูงสุดของทีมที่เล่นต่ำกว่า 10 นัดคือตำแหน่งใด?",
    "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_en": "What is the total number of played values for teams with more than 14 points and more than 1 draw?",
    "question_th": "จำนวนมูลค่าการเล่นทั้งหมดสำหรับทีมที่มีมากกว่า 14 แต้มและเสมอมากกว่า 1 แต้มคือเท่าใด?",
    "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_en": "What is the total number of positions having points over 2, more than 4 losses, and under 10 matches played?",
    "question_th": "จำนวนตำแหน่งทั้งหมดที่มีคะแนนมากกว่า 2 แพ้มากกว่า 4 ครั้ง และเล่นน้อยกว่า 10 นัดคือเท่าใด",
    "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_en": "WHich Televotes has a Performer of biljana dodeva, and a Draw larger than 10?",
    "question_th": "Televotes คนไหนมีนักแสดง biljana dodeva และเสมอกันมากกว่า 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_en": "Name the highest Draw which has a Rank of 14, and a Televotes larger than 908?",
    "question_th": "ตั้งชื่อผลเสมอสูงสุดซึ่งมีอันดับ 14 และ Televotes ที่มากกว่า 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_en": "Name the lowest Televotes which has monika sokolovska and a Rank larger than 15?",
    "question_th": "ตั้งชื่อ Televotes ที่ต่ำที่สุดซึ่งมี monika sokolovska และอันดับมากกว่า 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_en": "Name the lowest Draw which has a Performer of kaliopi and a Televotes larger than 3834?",
    "question_th": "ตั้งชื่อวาดต่ำสุดซึ่งมีนักแสดงของ kaliopi และ Televotes ที่มีขนาดใหญ่กว่า 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_en": "What is Total, when Player is \"Hale Irwin\"?",
    "question_th": "Total คืออะไร เมื่อผู้เล่นคือ \"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_en": "What is Player, when Country is \"United States\", and when To Par is \"WD\"?",
    "question_th": "Player คืออะไร เมื่อ Country คือ \"สหรัฐอเมริกา\" และเมื่อ Par คือ \"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_en": "What is Player, when Total is \"154\"?",
    "question_th": "Player คืออะไร เมื่อผลรวมคือ \"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_en": "What is Player, when Country is \"United States\", and when Total is \"154\"?",
    "question_th": "ผู้เล่นคืออะไร เมื่อประเทศคือ \"สหรัฐอเมริกา\" และเมื่อผลรวมคือ \"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_en": "What is Country, when To Par is \"+11\"?",
    "question_th": "ประเทศคืออะไร เมื่อพาร์คือ \"+11\"?",
    "context": "CREATE TABLE table_name_37 (country VARCHAR, to_par VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_96 WHERE player = \"hale irwin\"",
    "question_en": "What is Country, when Player is \"Hale Irwin\"?",
    "question_th": "ประเทศคืออะไร เมื่อผู้เล่นคือ \"เฮล เออร์วิน\"?",
    "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_en": "What is the lowest interview score for Missouri, where the swimsuit score was highter than 9.433?",
    "question_th": "คะแนนสัมภาษณ์ต่ำสุดของรัฐมิสซูรีซึ่งคะแนนชุดว่ายน้ำสูงกว่า 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_en": "What is the sum of Preliminary scores where the interview score is 9.654 and the average score is lower than 9.733?",
    "question_th": "ผลรวมของคะแนนเบื้องต้น โดยคะแนนสัมภาษณ์ 9.654 และคะแนนเฉลี่ยต่ำกว่า 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_en": "What is the sum of Swimsuit scores where the average score is 9.733 and the interview score is higher than 9.654?",
    "question_th": "ผลรวมของคะแนนชุดว่ายน้ำ โดยคะแนนเฉลี่ยคือ 9.733 และคะแนนสัมภาษณ์สูงกว่า 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_en": "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?",
    "question_th": "คะแนนชุดราตรีที่คะแนนชุดว่ายน้ำสูงกว่า 9.4 และคะแนนเฉลี่ยต่ำกว่า 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_en": "What is the lowest average score where the evening gown score was 8.811?",
    "question_th": "คะแนนเฉลี่ยต่ำสุดโดยคะแนนชุดราตรีอยู่ที่ 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_en": "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?",
    "question_th": "สำหรับทีมที่ทำประตูได้น้อยกว่า 58 ประตู อันดับ 10 และคะแนน 2 มากกว่า 53 ค่าเฉลี่ยที่เสียไปคือเท่าใด",
    "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_en": "For a team having goals for more than 95, what is the lowest position?",
    "question_th": "ทีมที่ทำประตูได้มากกว่า 95 ลูก ตำแหน่งต่ำสุดคือเท่าไร?",
    "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_en": "What is the function percentage when the estimated function percentage is 20?",
    "question_th": "เปอร์เซ็นต์ฟังก์ชันเมื่อเปอร์เซ็นต์ฟังก์ชันโดยประมาณคือ 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_en": "What is the measurement where the estimated function % is less than 20?",
    "question_th": "การวัดโดยที่ฟังก์ชัน % โดยประมาณมีค่าน้อยกว่า 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_en": "What is the estimated function % when the measurement is 8/8?",
    "question_th": "ฟังก์ชันประมาณ % เมื่อวัดเป็น 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_en": "What place did jacky cupit take when his To par was under 13?",
    "question_th": "แจ็คกี้ คูปิต ขึ้นอันดับไหนเมื่อพาร์ของเขาอายุต่ำกว่า 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_en": "Which united states player had a To par of 12?",
    "question_th": "ผู้เล่นคนใดในสหรัฐฯ ที่ได้ถึงพาร์ 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_en": "Which player had a To par of 13?",
    "question_th": "ผู้เล่นคนไหนมีถึงพาร์ 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_en": "What did vijay singh score with a +5 to par?",
    "question_th": "วีเจย์ ซิงห์ ทำคะแนนได้ +5 พาร์เท่าไร?",
    "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_en": "What was the average rank for south africa when they had more than 8 silver medals?",
    "question_th": "อันดับเฉลี่ยของแอฟริกาใต้เมื่อพวกเขามีเหรียญเงินมากกว่า 8 เหรียญอยู่ที่เท่าไร",
    "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_en": "What is the average number of gold medals the netherlands got when they had more than 4 bronze medals?",
    "question_th": "จำนวนเหรียญทองโดยเฉลี่ยที่เนเธอร์แลนด์ได้รับเมื่อมีเหรียญทองแดงมากกว่า 4 เหรียญเป็นเท่าใด",
    "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_en": "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?",
    "question_th": "ผลรวมเหรียญทองของประเทศบริเตนใหญ่ที่มีมากกว่า 8 เหรียญเงินและรวมน้อยกว่า 61 เหรียญเป็นเท่าใด",
    "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_en": "What is the highest number of bronze medals that israel acheived when they got less than 3 silver medals?",
    "question_th": "จำนวนเหรียญทองแดงสูงสุดที่อิสราเอลได้รับเมื่อได้รับเหรียญเงินน้อยกว่า 3 เหรียญคือเท่าใด",
    "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_en": "What is the total number of gold medals when the team got 2 bronze and more than 5 silver medals?",
    "question_th": "เมื่อทีมได้ 2 เหรียญทองแดง และเหรียญเงินมากกว่า 5 เหรียญ รวมจำนวนเหรียญทองเป็นเท่าใด?",
    "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–3, 7–6(0)\"",
    "question_en": "What is Partner, when Surface is Hard, and when Score is 6–3, 7–6(0)?",
    "question_th": "Partner คืออะไร เมื่อ Surface เป็น Hard และเมื่อคะแนนคือ 6–3, 7–6(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_en": "What is Opponents, when Partner is Vitalia Diatchenko?",
    "question_th": "ฝ่ายตรงข้ามคืออะไร เมื่อหุ้นส่วนคือ 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_en": "What is Partner, when Outcome is Winner, and when Date is 12 October 2003?",
    "question_th": "Partner คืออะไร เมื่อผลลัพธ์เป็นผู้ชนะ และวันที่คือ 12 ตุลาคม 2546",
    "context": "CREATE TABLE table_name_73 (partner VARCHAR, outcome VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponents FROM table_name_8 WHERE partner = \"mervana jugić-salkić\"",
    "question_en": "What is Opponents, when Partner is Mervana Jugić-Salkić?",
    "question_th": "ฝ่ายตรงข้ามคืออะไร เมื่อคู่หูคือ Mervana Jugić-Salkić?",
    "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_en": "What is the lowest Minutes Played, when Rebounds is 25, and when Field Goal % is less than \"0.315\"?",
    "question_th": "นาทีที่เล่นต่ำสุดคือเมื่อรีบาวด์คือ 25 และเมื่อ % เป้าหมายของฟิลด์น้อยกว่า \"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_en": "What is the average Rebounds, when Minutes Played is \"113\", and when Games Played is greater than \"18\"?",
    "question_th": "การรีบาวด์โดยเฉลี่ยคือเท่าใด เมื่อนาทีที่เล่นคือ \"113\" และเมื่อเกมที่เล่นมากกว่า \"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_en": "What is the score on March 17?",
    "question_th": "คะแนนวันที่ 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_en": "Which event led to a loss against Josh Diekman?",
    "question_th": "เหตุการณ์ใดที่ทำให้พ่ายแพ้ต่อ 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_en": "Which location led to a decision and a record of 1-2?",
    "question_th": "ตำแหน่งใดที่นำไปสู่การตัดสินและสถิติ 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_en": "Which method took place against Chris Herring?",
    "question_th": "วิธีใดเกิดขึ้นกับ 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_en": "What is the highest number of laps that max biaggi rode on a grid larger than 2?",
    "question_th": "จำนวนรอบสูงสุดที่ Max Biaggi ขี่บนกริดที่ใหญ่กว่า 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_en": "What is the highest grid that tetsuya harada rode in?",
    "question_th": "กริดที่สูงที่สุดที่เท็ตสึยะ ฮาราดะ ขี่อยู่คืออะไร?",
    "context": "CREATE TABLE table_name_71 (grid INTEGER, rider VARCHAR)"
  },
  {
    "answer": "SELECT AVG(laps) FROM table_name_89 WHERE time_retired = \"+48.325\"",
    "question_en": "What is the average number of laps that were made when the race took a time of +48.325?",
    "question_th": "จำนวนรอบเฉลี่ยที่เกิดขึ้นเมื่อการแข่งขันใช้เวลา +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_en": "What is the total number of laps during the race that had a time of +9.682?",
    "question_th": "จำนวนรอบทั้งหมดระหว่างการแข่งขันที่มีเวลา +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_en": "What is the highest Pick, when College is \"Syracuse\", and when Overall is less than 18?",
    "question_th": "ตัวเลือกสูงสุดคืออะไร เมื่อวิทยาลัยคือ \"ซีราคิวส์\" และเมื่อคะแนนโดยรวมน้อยกว่า 18 ปี",
    "context": "CREATE TABLE table_name_40 (pick INTEGER, college VARCHAR, overall VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_97 WHERE college = \"houston\"",
    "question_en": "What is Position, when College is \"Houston\"?",
    "question_th": "ตำแหน่งคืออะไร เมื่อวิทยาลัยคือ \"ฮูสตัน\"",
    "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_en": "What is the number of networks when the size of rest bit field is 8?",
    "question_th": "จำนวนเครือข่ายเมื่อขนาดของฟิลด์บิตที่เหลือคือ 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_en": "What is the start address when the network number bit field is 16?",
    "question_th": "ที่อยู่เริ่มต้นเมื่อฟิลด์บิตหมายเลขเครือข่ายคือ 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_en": "What is the end address for the Class E (Reserved)?",
    "question_th": "ที่อยู่สิ้นสุดของ Class E (สงวนไว้) คืออะไร?",
    "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_en": "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?",
    "question_th": "ขนาดของฟิลด์บิตที่เหลือเมื่อบิตนำหน้ามากกว่า 110 และที่อยู่เริ่มต้นคือ 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_en": "W hat was the lowest Goals For when they played Team Goole Town and had a position lower than 9?",
    "question_th": "หมวก W เป็นประตูที่ต่ำที่สุดเมื่อพวกเขาเล่น Team Goole Town และมีตำแหน่งต่ำกว่า 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_en": "Which team has a position higher than 3, a Drawn lower than 12, and a Goals Against higher than 85?",
    "question_th": "ทีมใดมีตำแหน่งสูงกว่า 3, เสมอต่ำกว่า 12 และประตูต่อมากกว่า 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_en": "When the Points 1 were 44 and the Goals For were larger than 65, what was the total number of Goals Against?",
    "question_th": "เมื่อคะแนน 1 เป็น 44 และประตูสำหรับมากกว่า 65 จำนวนประตูทั้งหมดที่ทำได้คือเท่าใด",
    "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_en": "What was the year when the diameter was 729 km?",
    "question_th": "เส้นผ่านศูนย์กลาง 729 กม. คือปีใด",
    "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_en": "What is the highest diameter when the latitude is 43.5s?",
    "question_th": "เส้นผ่านศูนย์กลางสูงสุดเมื่อละติจูดคือ 43.5 วินาที คืออะไร?",
    "context": "CREATE TABLE table_name_3 (diameter__km_ INTEGER, latitude VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_77 WHERE attendance = \"75,891\"",
    "question_en": "On what Date was the Attendance 75,891?",
    "question_th": "มีผู้เข้าร่วม 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_en": "What was the Week on September 5, 1993?",
    "question_th": "สัปดาห์ที่ 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_en": "Who was the Opponent on October 31, 1993?",
    "question_th": "ใครคือฝ่ายตรงข้ามในวันที่ 31 ตุลาคม 2536?",
    "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_en": "what is the date for traction type electric with calgary location?",
    "question_th": "ระบบขับเคลื่อนแบบไฟฟ้าพร้อมตำแหน่งแคลกะรีคือวันที่เท่าไหร่?",
    "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_en": "Which date has date started from 30 Sep 1913?",
    "question_th": "วันที่ใดเริ่มตั้งแต่ 30 กันยายน 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_en": "What is the 1st leg of 2q round?",
    "question_th": "ขาแรกของรอบ 2q คืออะไร?",
    "context": "CREATE TABLE table_name_33 (round VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_89 WHERE club = \"villareal\"",
    "question_en": "What competition has the club villareal?",
    "question_th": "สโมสรวิลลาเรอัล มีการแข่งขันอะไรบ้าง?",
    "context": "CREATE TABLE table_name_89 (competition VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_32 WHERE club = \"aik\"",
    "question_en": "Which competition has aik club?",
    "question_th": "การแข่งขันไหนมี aik club บ้าง?",
    "context": "CREATE TABLE table_name_32 (competition VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_38 WHERE club = \"bečej\"",
    "question_en": "What is the round of club bečej?",
    "question_th": "club bečej รอบอะไร?",
    "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_en": "What is the 1st leg of the uefa intertoto cup competition with club silkeborg?",
    "question_th": "ศึกยูฟ่า อินเตอร์โตโต้ คัพ นัดแรกกับสโมสร ซิลเคบอร์ก เลกแรกจะเป็นอย่างไร?",
    "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–95 (ot)\"",
    "question_en": "Who had the high rebounds when the score was w 105–95 (ot) and Jason Kidd (8) had the high assists?",
    "question_th": "ใครมีการรีบาวด์สูงเมื่อสกอร์อยู่ที่ 105–95 (ot) และ Jason Kidd (8) มีแอสซิสต์สูง?",
    "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–115 (ot)\"",
    "question_en": "Which team scored l 87–115 (ot)?",
    "question_th": "ทีมไหนทำคะแนน l 87–115 (OT)?",
    "context": "CREATE TABLE table_name_61 (team VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_37 WHERE game = 56",
    "question_en": "What's the record of Game 56?",
    "question_th": "บันทึกของเกม 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_en": "Who was the team that played at Energysolutions Arena 19,911?",
    "question_th": "ทีมใดที่เล่นที่ 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_en": "Who had the high assists when the game was at American Airlines Center 20,223?",
    "question_th": "ใครแอสซิสต์ได้สูงเมื่อเกมที่ 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–28\"",
    "question_en": "What team has a Record of 50–28?",
    "question_th": "ทีมใดมีสถิติ 50–28",
    "context": "CREATE TABLE table_name_9 (team VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_93 WHERE game = 75",
    "question_en": "What was the date of game 75?",
    "question_th": "เกม 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_en": "Which manufacturer was used after 1969 with a finish position of 34?",
    "question_th": "ผู้ผลิตรายใดที่ถูกใช้หลังปี 1969 โดยมีตำแหน่งเข้าเส้นชัยที่ 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_en": "What is the total attendance on April 25?",
    "question_th": "ผู้เข้าร่วมทั้งหมดในวันที่ 25 เมษายนเป็นเท่าใด",
    "context": "CREATE TABLE table_name_28 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT decision FROM table_name_49 WHERE attendance > 19 OFFSET 883",
    "question_en": "What is the decision of the game with an attendance greater than 19,883?",
    "question_th": "การตัดสินใจของเกมที่มีผู้ชมมากกว่า 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_en": "When the score was 76-73-67-69=285 what was the To par?",
    "question_th": "เมื่อสกอร์อยู่ที่ 76-73-67-69=285 พาร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_31 (to_par VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_83 WHERE to_par = \"–6\"",
    "question_en": "Which player has a To par of  –6?",
    "question_th": "ผู้เล่นคนไหนมีพาร์ถึง –6?",
    "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_en": "How much memory (RAM) does the Maemo 5 operating system have?",
    "question_th": "ระบบปฏิบัติการ Maemo 5 มีหน่วยความจำ (RAM) เท่าไร?",
    "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_en": "Which operating system has a storage (flash) of 128MB?",
    "question_th": "ระบบปฏิบัติการใดมีพื้นที่เก็บข้อมูล (แฟลช) 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_en": "What is the weight and dimensions of an N800?",
    "question_th": "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_en": "Which operating system has 1GB (mobile ddr) memory (RAM)?",
    "question_th": "ระบบปฏิบัติการใดมีหน่วยความจำ (RAM) ขนาด 1GB (mobile ddr)",
    "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_en": "What is the total number of Pick, when Round is greater than 1, and when Player is \"Jim Stack\"?",
    "question_th": "จำนวนการเลือกทั้งหมดคือเท่าไร เมื่อรอบมากกว่า 1 และเมื่อผู้เล่นคือ \"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_en": "What is the lowest Round, when College is \"Washington State\", and when Pick is less than 48?",
    "question_th": "รอบต่ำสุดคือเท่าไร เมื่อวิทยาลัยคือ \"รัฐวอชิงตัน\" และเมื่อพิคน้อยกว่า 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_en": "What is College, when Round is greater than 1, and when Pick is greater than 163?",
    "question_th": "College คืออะไร เมื่อ Round มากกว่า 1 และเมื่อ Pick มากกว่า 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_en": "What is the location for the software of BIND and an IPv6 address of 2001:503:c27::2:30?",
    "question_th": "ตำแหน่งของซอฟต์แวร์ของ BIND และที่อยู่ IPv6 ของ 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_en": "Which IPv6 address has an operator of Wide project?",
    "question_th": "ที่อยู่ IPv6 ใดมีตัวดำเนินการของโครงการ Wide",
    "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_en": "Which letter has an operator of VeriSign and an AS-number of AS26415?",
    "question_th": "ตัวอักษรใดมีตัวดำเนินการ VeriSign และหมายเลข 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_en": "Which location has an AS-number of N/A?",
    "question_th": "สถานที่ใดมีหมายเลข AS 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_en": "Which letter has an operator of the Defense Information Systems Agency?",
    "question_th": "จดหมายฉบับใดมีผู้ดำเนินการของสำนักงานระบบสารสนเทศกลาโหม?",
    "context": "CREATE TABLE table_name_32 (letter VARCHAR, operator VARCHAR)"
  },
  {
    "answer": "SELECT SUM(all_time) FROM table_name_39 WHERE amateur_era < 0",
    "question_en": "What is the sum of All-Time, when Amateur Era is less than 0?",
    "question_th": "ผลรวมของเวลาทั้งหมดเมื่อยุคสมัครเล่นน้อยกว่า 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_en": "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?",
    "question_th": "อะไรคือค่าต่ำสุดตลอดกาล เมื่อตำแหน่งแชมป์แรกอยู่ก่อนปี 1974 เมื่อตำแหน่งสุดท้ายคือ \"1933\" และเมื่อยุคสมัครเล่นมากกว่า 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_en": "What is the lowest All-Time, when First Title is \"2007, and when Amateur Era is greater than 0?",
    "question_th": "อะไรคือเวลาต่ำสุดตลอดกาล เมื่อตำแหน่งแชมป์แรกคือ \"2007 และเมื่อยุคสมัครเล่นมีค่ามากกว่า 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_en": "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?",
    "question_th": "ตำแหน่งแชมป์ที่ต่ำที่สุดคืออะไร เมื่อตลอดกาลมากกว่า 1 เมื่อประเทศคือ \"สหรัฐอเมริกา (USA)\" และเมื่อยุคสมัครเล่นมากกว่า 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_en": "What is the Place of the Player with a To par of +2 and a Score of 70-72-73=215?",
    "question_th": "ตำแหน่งผู้เล่นที่มีพาร์ถึง +2 และคะแนน 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_en": "From what Country is T6 Place Player Robert Karlsson?",
    "question_th": "Robert Karlsson ผู้เล่น T6 Place มาจากประเทศใด",
    "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_en": "What is the To par of the T4 Place Player with a Score of 72-69-73=214?",
    "question_th": "ค่าพาร์ของผู้เล่นอันดับ T4 ที่มีคะแนน 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_en": "What is the To par of the Player with a Score of 70-72-73=215?",
    "question_th": "ค่าพาร์ของผู้เล่นที่มีคะแนน 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_en": "What Country is Rocco Mediate from?",
    "question_th": "Rocco Mediate มาจากประเทศใด",
    "context": "CREATE TABLE table_name_49 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_79 WHERE player = \"mike smith\"",
    "question_en": "What is Mike Smith's To par?",
    "question_th": "To par ของ Mike Smith คืออะไร?",
    "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_en": "What is Scott Hoch with a Score of 66 Country?",
    "question_th": "Scott Hoch คืออะไรที่มีคะแนน 66 ประเทศ?",
    "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_en": "What is the T4 Place Player with a Score of more than 66?",
    "question_th": "ผู้เล่น T4 Place ที่มีคะแนนมากกว่า 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_en": "What is the vacancy date for the manager appointed on 2 November 2009 who left due to mutual consent?",
    "question_th": "ผู้จัดการที่ได้รับการแต่งตั้งเมื่อวันที่ 2 พฤศจิกายน 2552 มีตำแหน่งว่างเมื่อใด เนื่องจากได้รับความยินยอมร่วมกัน",
    "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_en": "What was the manner of departure for the vacancy date of 20 September 2009?",
    "question_th": "วันที่ตำแหน่งว่างในวันที่ 20 กันยายน 2552 มีกำหนดการเดินทางอย่างไร?",
    "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_en": "What was the vacancy date of the manager appointed on 11 March 2010?",
    "question_th": "ผู้จัดการที่ได้รับการแต่งตั้งเมื่อวันที่ 11 มีนาคม 2553 มีตำแหน่งว่างเมื่อใด",
    "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_en": "What is the lowest pick number where the overall pick number was 38?",
    "question_th": "หมายเลขเลือกต่ำสุดโดยที่หมายเลขเลือกโดยรวมคือ 38 คืออะไร?",
    "context": "CREATE TABLE table_name_73 (pick INTEGER, overall VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_49 WHERE round = 22",
    "question_en": "What was the position of the player who was picked in round 22?",
    "question_th": "นักเตะที่ถูกเลือกในรอบ 22 อยู่ตำแหน่งไหน?",
    "context": "CREATE TABLE table_name_49 (position VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT call_sign FROM table_name_68 WHERE erp_w = 99",
    "question_en": "What was the call sign for ERP W of 99?",
    "question_th": "สัญญาณเรียกขานสำหรับ ERP W ของ 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_en": "What is the team 1 in the match with a team 2 of Karabakh?",
    "question_th": "ทีม 1 ในการแข่งขันกับทีม 2 ของคาราบาคห์คืออะไร?",
    "context": "CREATE TABLE table_name_20 (team_1 VARCHAR, team_2 VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_36 WHERE pick = 63",
    "question_en": "What is the round of pick 63?",
    "question_th": "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_en": "What is the lowest round of player chris burkett?",
    "question_th": "ผู้เล่น 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_en": "What is the average pick of school/club team kutztown state with a round 4?",
    "question_th": "การเลือกทีมโรงเรียน/สโมสรโดยเฉลี่ยของ Kutztown ในรอบ 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_en": "What is the average number of matches of leonardo in seasons after 1?",
    "question_th": "จำนวนแมตช์เฉลี่ยของเลโอนาร์โดในฤดูกาลหลัง 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_en": "What is the average membership with 3.33% LDS and less than 47 branches?",
    "question_th": "สมาชิกเฉลี่ยที่มี LDS 3.33% และน้อยกว่า 47 สาขาคือเท่าไร?",
    "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_en": "what is 2005 when 2003 is A, 2007 is 2r and 2012 is 3r?",
    "question_th": "2005 คืออะไรเมื่อ 2003 คือ A, 2007 คือ 2r และ 2012 คือ 3r",
    "context": "CREATE TABLE table_name_49 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2004 FROM table_name_49 WHERE tournament = \"paris masters\"",
    "question_en": "what is 2004 when the tournament is paris masters?",
    "question_th": "ปี 2004 เมื่อทัวร์นาเมนต์คือ Paris Masters คืออะไร?",
    "context": "CREATE TABLE table_name_49 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2009 FROM table_name_5 WHERE 2004 = \"107\"",
    "question_en": "what is 2009 when 2004 is 107?",
    "question_th": "2009 คืออะไร เมื่อ 2004 เป็น 107",
    "context": "CREATE TABLE table_name_5 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2003 FROM table_name_37 WHERE 2005 = \"did not qualify\"",
    "question_en": "what is 2003 when 2005 is did not qualify?",
    "question_th": "2003 คืออะไร เมื่อ 2005 ไม่ผ่านเข้ารอบ?",
    "context": "CREATE TABLE table_name_37 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2012 FROM table_name_9 WHERE tournament = \"win %\"",
    "question_en": "what is 2012 when the tournament is win %?",
    "question_th": "2012 เมื่อทัวร์นาเมนต์ชนะ % คืออะไร?",
    "context": "CREATE TABLE table_name_9 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_42 WHERE date = \"february 2\"",
    "question_en": "What was the record on February 2?",
    "question_th": "บันทึกเมื่อวันที่ 2 กุมภาพันธ์คืออะไร?",
    "context": "CREATE TABLE table_name_42 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_name_50 WHERE date = \"february 2\"",
    "question_en": "What was the location of the game on February 2?",
    "question_th": "สถานที่ของเกมในวันที่ 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_en": "What year was Black Swan up for the Gotham Awards?",
    "question_th": "Black Swan ได้รับรางวัล 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_en": "What is the earliest year in which Requiem for a Dream was in the running for Best Director?",
    "question_th": "ปีแรกสุดที่ Requiem for a Dream เข้าชิงรางวัลผู้กำกับยอดเยี่ยมคือปีใด",
    "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_en": "Can you tell me the Record that has the Location of fleetcenter, and the Date of fri. apr. 5?",
    "question_th": "คุณช่วยบอกบันทึกที่มีที่ตั้งของศูนย์รวมรถและวันศุกร์ได้ไหม เม.ย. 5?",
    "context": "CREATE TABLE table_name_16 (record VARCHAR, location VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_61 WHERE game < 76",
    "question_en": "Can you tell me the Record that has the Game smaller than 76?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าบันทึกที่มีเกมเล็กกว่า 76?",
    "context": "CREATE TABLE table_name_61 (record VARCHAR, game INTEGER)"
  },
  {
    "answer": "SELECT MAX(game) FROM table_name_56 WHERE opponent = \"atlanta hawks\"",
    "question_en": "Can you tell me the highest Game that has the Opponent of atlanta hawks?",
    "question_th": "คุณช่วยบอกฉันได้ไหมว่าเกมสูงสุดที่มีฝ่ายตรงข้ามของ Atlanta Hawks คืออะไร?",
    "context": "CREATE TABLE table_name_56 (game INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_name_19 WHERE opponent = \"miami heat\"",
    "question_en": "Can you tell me the Game that has the Opponent of miami heat?",
    "question_th": "คุณช่วยบอกฉันเกี่ยวกับเกมที่มีฝ่ายตรงข้ามของไมอามี่ฮีตได้ไหม?",
    "context": "CREATE TABLE table_name_19 (game VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_99 WHERE score = \"100-105\"",
    "question_en": "Can you tell me the Record that has the Score of 100-105?",
    "question_th": "คุณช่วยบอกประวัติที่มีคะแนน 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_en": "Which Opponent has a Location/Attendance of delta center/19,911 on dec 6?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีตำแหน่ง/การเข้าร่วมของเดลต้าเซ็นเตอร์/19,911 ในวันที่ 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_en": "What is the Record for Game 17?",
    "question_th": "บันทึกของเกมที่ 17 คืออะไร?",
    "context": "CREATE TABLE table_name_36 (record VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_name_66 WHERE date = \"dec 14\"",
    "question_en": "What is the Location/Attendance on Dec 14?",
    "question_th": "สถานที่/การเข้าร่วมในวันที่ 14 ธ.ค. คืออะไร?",
    "context": "CREATE TABLE table_name_66 (location_attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_49 WHERE date = \"dec 10\"",
    "question_en": "Which Record is dated Dec 10?",
    "question_th": "บันทึกใดลงวันที่ 10 ธันวาคม?",
    "context": "CREATE TABLE table_name_49 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_name_29 WHERE date = \"dec 2\"",
    "question_en": "What was the Location/Attendance on Dec 2?",
    "question_th": "สถานที่/การเข้าร่วมในวันที่ 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_en": "Who rode a Honda CBR1000rr, had fewer than 22 laps, and a time of +2 laps?",
    "question_th": "ใครขี่ Honda CBR1000rr วิ่งน้อยกว่า 22 รอบ และทำเวลา +2 รอบบ้าง?",
    "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_en": "What is the highest grid when the time is +45.162?",
    "question_th": "ตารางที่สูงที่สุดเมื่อเวลาคือ +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_en": "What is Fonsi Nieto's average grid when he's riding a Suzuki GSX-R1000?",
    "question_th": "เส้นกริดเฉลี่ยของ Fonsi Nieto เมื่อเขาขี่ 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_en": "How many grids did Shinichi Nakatomi ride in?",
    "question_th": "ชินิจิ นากาโตมิขี่ไปกี่กริด?",
    "context": "CREATE TABLE table_name_46 (grid INTEGER, rider VARCHAR)"
  },
  {
    "answer": "SELECT tries_against FROM table_name_72 WHERE losing_bonus = \"9\"",
    "question_en": "How many tries against have a losing bonus of 9?",
    "question_th": "มีความพยายามกี่ครั้งที่เสียโบนัสเป็น 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_en": "How many points were there for 15 losses?",
    "question_th": "แพ้ 15 นัดมีกี่แต้ม?",
    "context": "CREATE TABLE table_name_28 (points_for VARCHAR, lost VARCHAR)"
  },
  {
    "answer": "SELECT played FROM table_name_74 WHERE points_against = \"271\"",
    "question_en": "For which play was the points 271?",
    "question_th": "การเล่นครั้งไหนมีแต้ม 271?",
    "context": "CREATE TABLE table_name_74 (played VARCHAR, points_against VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_name_35 WHERE try_bonus = \"2\"",
    "question_en": "How many points were there when the try bonus was 2?",
    "question_th": "มีกี่คะแนนเมื่อโบนัสลองเป็น 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_en": "Which 2007–08 season has a Club of genoa c.f.c.?",
    "question_th": "ฤดูกาล 2007–08 ใดมีสโมสรของเจนัว ซีเอฟซี?",
    "context": "CREATE TABLE table_name_49 (club VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_80 WHERE stadium = \"stadio artemio franchi, florence\"",
    "question_en": "Which City has a Stadium of stadio artemio franchi, florence?",
    "question_th": "เมืองใดมีสนามกีฬาของ 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_en": "What is the description when the reserve is Half Moon Caye?",
    "question_th": "คำบรรยายเมื่อสำรองคือ 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_en": "Which district has an IUCN of iii and was established in 1998?",
    "question_th": "เขตใดมี IUCN ระดับ iii และก่อตั้งในปี 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_en": "What is the IUNC of district of Cayo and reserve of Actun Tunichil Muknal?",
    "question_th": "IUNC ของเขต Cayo และเขตสงวน 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_en": "What is the sum of value for average finish with poles less than 0?",
    "question_th": "ผลรวมของค่าการจบสกอร์โดยเฉลี่ยที่มีเสาน้อยกว่า 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_en": "What is the average start with wins larger than 0 and 32nd position?",
    "question_th": "การเริ่มต้นโดยเฉลี่ยด้วยการชนะที่มากกว่า 0 และอันดับที่ 32 คืออะไร?",
    "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_en": "What is the specific impulse for the engine with a scenario of sr-71 at mach 3.2 (wet)?",
    "question_th": "แรงกระตุ้นเฉพาะสำหรับเครื่องยนต์ที่มีสถานการณ์ sr-71 ที่มัค 3.2 (เปียก) คืออะไร?",
    "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·h_ = 7.95 AND effective_exhaust_velocity__m_s_ > 4 OFFSET 423",
    "question_en": "what is the average specific impulse for engines that have a SFC in lb/(lbf·h) of 7.95, and a Effective exhaust velocity (m/s) larger than 4,423",
    "question_th": "ค่าแรงกระตุ้นจำเพาะเฉลี่ยสำหรับเครื่องยนต์ที่มีค่า SFC เป็นปอนด์/(ปอนด์ฟ·ชม.) เท่ากับ 7.95 และความเร็วไอเสียมีประสิทธิผล (m/s) มากกว่า 4,423 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_66 (specific_impulse__s_ INTEGER, sfc_in_lb__lbf·h_ VARCHAR, effective_exhaust_velocity__m_s_ VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_72 WHERE round < 4",
    "question_en": "The draft pick that was taken before round 4 went to what college?",
    "question_th": "ดราฟท์คัดเลือกที่คัดก่อนรอบ4ไปเข้ามหาลัยอะไรคะ?",
    "context": "CREATE TABLE table_name_72 (college VARCHAR, round INTEGER)"
  },
  {
    "answer": "SELECT player FROM table_name_80 WHERE college = \"depaul\"",
    "question_en": "What player went to DePaul University?",
    "question_th": "นักเตะคนไหนไปเรียนที่ 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_en": "What is 1st Round, when Team 1 is Sporting Toulon Var (D2)?",
    "question_th": "รอบที่ 1 คืออะไร เมื่อทีม 1 คือ สปอร์ติ้ง ตูลง วาร์ (D2)?",
    "context": "CREATE TABLE table_name_65 (team_1 VARCHAR)"
  },
  {
    "answer": "SELECT team_2 FROM table_name_86 WHERE score = \"2 - 1\"",
    "question_en": "What is Team 2, when Score is 2 - 1?",
    "question_th": "ทีม 2 คืออะไร เมื่อสกอร์เป็น 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_en": "What is Viewers, when Event is Johnson Vs. Moraga?",
    "question_th": "ผู้ดูคืออะไร เมื่อเหตุการณ์คือ Johnson Vs. โมรากา?",
    "context": "CREATE TABLE table_name_1 (viewers VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT rating FROM table_name_23 WHERE event = \"johnson vs. dodson\"",
    "question_en": "What is Rating, when Event is Johnson Vs. Dodson?",
    "question_th": "เรตติ้งคืออะไร เมื่อเหตุการณ์คือ Johnson Vs. ด็อดสัน?",
    "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_en": "What is Event, when Viewers is 2.4 Million, and when Rating is 1.4?",
    "question_th": "กิจกรรมคืออะไร เมื่อผู้ชมอยู่ที่ 2.4 ล้านคน และเมื่อเรตติ้งอยู่ที่ 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_en": "What is Event, when Date is April 20, 2013?",
    "question_th": "เหตุการณ์คืออะไร เมื่อเป็นวันที่ 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_en": "What is Date, when Rating 1.5, and when Event is Johnson Vs. Moraga?",
    "question_th": "วันที่คืออะไร เมื่อเรตติ้ง 1.5 และเมื่อใดคือเหตุการณ์ Johnson Vs. โมรากา?",
    "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_en": "What is Date, when Viewers is 4.4 million?",
    "question_th": "วันที่คืออะไรเมื่อผู้ชมมีจำนวน 4.4 ล้านคน?",
    "context": "CREATE TABLE table_name_92 (date VARCHAR, viewers VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_57 WHERE player = \"tiger woods\"",
    "question_en": "What was Tiger Woods' score?",
    "question_th": "คะแนนของ Tiger Woods คืออะไร?",
    "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_en": "How did Justin Leonard of the United States score?",
    "question_th": "Justin Leonard จากสหรัฐอเมริกาทำคะแนนได้อย่างไร",
    "context": "CREATE TABLE table_name_33 (score VARCHAR, country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_16 WHERE country = \"england\"",
    "question_en": "Which player is from England?",
    "question_th": "นักเตะคนไหนมาจากอังกฤษ?",
    "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_en": "Who scored 74-70-67=211 and placed t5?",
    "question_th": "ใครทำคะแนนได้ 74-70-67=211 และได้ 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_en": "Who is the player with a score less than 72 and a to par of +1?",
    "question_th": "ใครคือผู้เล่นที่มีคะแนนน้อยกว่า 72 และพาร์ +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_en": "Who is the player with a to par of +1?",
    "question_th": "ใครคือผู้เล่นที่มีพาร์ +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_en": "What is the to par of player john buczek, who has a t9 place and is from the United States?",
    "question_th": "อะไรคือสิ่งที่ได้เปรียบของผู้เล่น จอห์น บัคเช็ค ที่ได้อันดับ 9 และมาจากสหรัฐอเมริกา?",
    "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_en": "What is the to par of player bobby nichols?",
    "question_th": "อะไรคือสิ่งที่ได้เปรียบของผู้เล่น บ็อบบี้ นิโคลส์?",
    "context": "CREATE TABLE table_name_94 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_12 WHERE catalog = \"xllp 369\"",
    "question_en": "What was the date for XLLP 369?",
    "question_th": "XLLP 369 คือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_12 (date VARCHAR, catalog VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_57 WHERE region = \"canada\"",
    "question_en": "What was the label in the region of Canada?",
    "question_th": "ฉลากในภูมิภาคของแคนาดาคืออะไร?",
    "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_en": "What is the format in the region of Europe with an XLCD369 and a label of XL?",
    "question_th": "รูปแบบในภูมิภาคยุโรปที่มี XLCD369 และป้าย 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_en": "What date was the United States the region?",
    "question_th": "ภูมิภาคสหรัฐอเมริกาเป็นวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_25 (date VARCHAR, region VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_82 WHERE format = \"cd\" AND region = \"argentina\"",
    "question_en": "What was the label in the region of Argentina and had a format of CD?",
    "question_th": "ฉลากในภูมิภาคอาร์เจนตินาคืออะไรและมีรูปแบบซีดี?",
    "context": "CREATE TABLE table_name_82 (label VARCHAR, format VARCHAR, region VARCHAR)"
  },
  {
    "answer": "SELECT catalog FROM table_name_98 WHERE region = \"united states\"",
    "question_en": "What is the catalog with the region of the United States?",
    "question_th": "แคตตาล็อกกับภูมิภาคของสหรัฐอเมริกาคืออะไร?",
    "context": "CREATE TABLE table_name_98 (catalog VARCHAR, region VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_51 WHERE november > 26 AND game > 18",
    "question_en": "Can you tell me the Opponent that has the November larger than 26, and the Game larger than 18?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าฝ่ายตรงข้ามที่มีจำนวนเดือนพฤศจิกายนมากกว่า 26 และเกมมีขนาดใหญ่กว่า 18?",
    "context": "CREATE TABLE table_name_51 (opponent VARCHAR, november VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_72 WHERE game = 19",
    "question_en": "Can you tell me the Record that has the Game of 19?",
    "question_th": "คุณช่วยบอกฉันเกี่ยวกับบันทึกที่มีเกม 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_en": "Which Date has a Rockets score of 94, and a Game of 66?",
    "question_th": "วันที่ใดมีคะแนน Rockets 94 และเกมที่ 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_en": "Which Opponent has a Rockets score larger than 86, a Streak of won 1, and Opponents smaller than 101?",
    "question_th": "ฝ่ายตรงข้ามคนใดที่มีคะแนนร็อคเก็ตส์มากกว่า 86 แต้มสตรีคชนะ 1 และฝ่ายตรงข้ามน้อยกว่า 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_en": "Which Opponent has a Rockets score of 107?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีคะแนนร็อคเก็ตส์ 107",
    "context": "CREATE TABLE table_name_25 (opponent VARCHAR, rockets_score VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_42 WHERE date = \"march 16\"",
    "question_en": "Which Opponent has a Date of march 16?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีวันที่ 16 มีนาคม?",
    "context": "CREATE TABLE table_name_42 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_84 WHERE score = \"l 111–122 (ot)\"",
    "question_en": "When was the score l 111–122 (ot)?",
    "question_th": "คะแนน l 111–122 (ot) คือเมื่อไหร่?",
    "context": "CREATE TABLE table_name_84 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_79 WHERE date = \"january 26\"",
    "question_en": "What was the score on January 26?",
    "question_th": "คะแนนเมื่อวันที่ 26 มกราคม เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_79 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(game) FROM table_name_70 WHERE team = \"minnesota\"",
    "question_en": "What game was Minnesota the team?",
    "question_th": "มินนิโซตาเป็นทีมเกมอะไร?",
    "context": "CREATE TABLE table_name_70 (game VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_68 WHERE game = 43",
    "question_en": "What was the record of Game 43?",
    "question_th": "บันทึกของเกมที่ 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_en": "What's the record of the game that Leandro Barbosa (32) had the high points?",
    "question_th": "สถิติเกมที่เลอันโดร บาร์โบซ่า (32) มีแต้มสูงเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_12 (record VARCHAR, high_points VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_65 WHERE tie_no = \"29\"",
    "question_en": "What is the score when the tie no is 29?",
    "question_th": "คะแนนเสมอกันคือ 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_en": "What was the tie no when Watford was the away team?",
    "question_th": "การไม่เสมอกันคืออะไรเมื่อวัตฟอร์ดเป็นทีมเยือน?",
    "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_en": "What team was the home team when Luton Town was the home team?",
    "question_th": "ทีมไหนเป็นเจ้าบ้าน ตอนที่ ลูตัน ทาวน์ เป็นเจ้าบ้าน?",
    "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_en": "What team was the home team when the tie no was 27?",
    "question_th": "ทีมเจ้าบ้านคือทีมใดเมื่อเสมอกันที่ 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_en": "Who played bass in 1994 for the Atlantic label?",
    "question_th": "ใครเล่นเบสให้กับค่ายเพลง Atlantic ในปี 1994?",
    "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_en": "Who played drums for the Gray Race album?",
    "question_th": "ใครเป็นคนตีกลองให้กับอัลบั้ม Grey Race?",
    "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_en": "Which album had Jay Bentley on bass and Bobby Schayer on drums?",
    "question_th": "อัลบั้มใดที่มี Jay Bentley เล่นเบสและ Bobby Schayer เล่นกลอง?",
    "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_en": "Who played the bass for the Against the Grain album after 1982?",
    "question_th": "ใครเล่นเบสในอัลบั้ม Against the Grain หลังปี 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_en": "What is the position when lost is less than 7?",
    "question_th": "ตำแหน่งที่แพ้น้อยกว่า 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_en": "What is the largest drawn number when 14 is the position, and goals for is more than 66?",
    "question_th": "หมายเลขที่จับฉลากได้มากที่สุดเมื่อ 14 คือตำแหน่ง และประตูมากกว่า 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_en": "What is the played number with points 1 is 80, and goals for is more than 77?",
    "question_th": "แต้มที่เล่นได้ 1 แต้มคือ 80 และประตูมากกว่า 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_en": "What is the number of played when the position is less than 4, and the team is Witton Albion?",
    "question_th": "ตำแหน่งที่ต่ำกว่า 4 ลงเล่นเป็นจำนวนเท่าใดและทีมคือ วิทตัน อัลเบี้ยน ?",
    "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_en": "What is the position when the points 1 is 61?",
    "question_th": "ตำแหน่งที่ 1 คือ 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_en": "Where is the locality with Ofsted less than 106478 for Meadowbank Primary and Nursery School?",
    "question_th": "สถานที่ที่มี Ofsted น้อยกว่า 106478 สำหรับโรงเรียนประถมศึกษาและอนุบาล Meadowbank อยู่ที่ไหน",
    "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_en": "What website has an Ofsted less than 106478 in Atherton?",
    "question_th": "เว็บไซต์ใดที่มี Ofsted น้อยกว่า 106478 ใน 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_en": "How many values for Ofsted occurr at Chowbent Primary School?",
    "question_th": "ค่า Ofsted ที่เกิดขึ้นที่โรงเรียนประถมศึกษา Chowbent มีกี่ค่า",
    "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_en": "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?",
    "question_th": "แชมป์ลีกใดที่ต่ำที่สุดที่มีสถานที่จัดงานของศาลาน้ำแข็งแห่งรัฐเพนน์และฮ็อกกี้น้ำแข็งชายของสโมสรเพนน์สเตตนิตตานีไลออนส์",
    "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_en": "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?",
    "question_th": "สถานที่ใดที่มี League of ncaa และก่อตั้งน้อยกว่าปี 1965 และฮ็อกกี้น้ำแข็งชายของ Club of penn state nittany lions",
    "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_en": "What is the freestyle leg for the Netherlands?",
    "question_th": "ขาฟรีสไตล์ของเนเธอร์แลนด์คืออะไร?",
    "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_en": "In which state did Marquis Li rule?",
    "question_th": "Marquis Li ปกครองในรัฐใด",
    "context": "CREATE TABLE table_name_43 (state VARCHAR, name VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT royal_house FROM table_name_54 WHERE state = \"song\"",
    "question_en": "What was the Royal House for the state of Song?",
    "question_th": "ราชวงศ์สำหรับรัฐซ่งคืออะไร?",
    "context": "CREATE TABLE table_name_54 (royal_house VARCHAR, state VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_41 WHERE state = \"chu\"",
    "question_en": "What type of state was Chu?",
    "question_th": "ชูเป็นรัฐประเภทใด?",
    "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_en": "What type of state was Lu, when Yi was the ruler from the royal house of Ji?",
    "question_th": "Lu เป็นรัฐประเภทใดเมื่อ Yi เป็นผู้ปกครองจากราชวงศ์ 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_en": "What is Score, when Competition is \"Euro 2004 Qualifier\"?",
    "question_th": "คะแนนคืออะไร เมื่อการแข่งขันคือ \"ยูโร 2004 รอบคัดเลือก\"",
    "context": "CREATE TABLE table_name_73 (score VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_24 WHERE date = \"28 march 2001\"",
    "question_en": "What is Competition, when Date is \"28 March 2001\"?",
    "question_th": "การแข่งขันคืออะไร เมื่อถึงวันที่ \"28 มีนาคม 2544\"?",
    "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_en": "who is the opponent on 2004-06-26 with the result of loss?",
    "question_th": "คู่ต่อสู้ในวันที่ 26-06-2547 คือใครและผลการแพ้คือใคร?",
    "context": "CREATE TABLE table_name_78 (opponent VARCHAR, date VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_54 WHERE opponent = \"aleksandr pitchkounov\"",
    "question_en": "what is the location when the opponent is aleksandr pitchkounov?",
    "question_th": "ตำแหน่งที่คู่ต่อสู้คือ อเล็กซานเดอร์ พิตคูนอฟ อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_54 (location VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_66 WHERE location = \"saitama, japan\"",
    "question_en": "what is the event when the location is saitama, japan?",
    "question_th": "เหตุการณ์คืออะไรเมื่อสถานที่คือไซตามะ ประเทศญี่ปุ่น?",
    "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_en": "what is the location when the event is k-1 world grand prix 2004 in saitama?",
    "question_th": "สถานที่จัดงาน k-1 world grand prix 2004 ที่ไซตามะคือที่ไหน?",
    "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_en": "what is the record when the result is win on 2004-06-26?",
    "question_th": "เมื่อผลการแข่งขันชนะในวันที่ 26-06-2547 มีสถิติเป็นอย่างไรบ้าง?",
    "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_en": "what is the event when the result is loss and the record is 7-5?",
    "question_th": "เหตุการณ์จะเป็นอย่างไรเมื่อผลออกมาแพ้และสถิติเป็น 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_en": "What is the date of the game with a result of W 13-10?",
    "question_th": "ผลการแข่งขัน 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_en": "What is the total number of Total(s), when Finish is \"T21\", and when To Par is greater than 23?",
    "question_th": "จำนวนรวมทั้งหมดเป็นเท่าใด เมื่อจบการแข่งขันคือ \"T21\" และเมื่อถึงพาร์มากกว่า 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_en": "What is Finish, when Total is \"306\"?",
    "question_th": "Finish คืออะไร เมื่อผลรวมคือ \"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_en": "What is the total number of To Par, when Player is \"Julius Boros\", and when Total is greater than 295?",
    "question_th": "จำนวนพาร์ทั้งหมดเมื่อผู้เล่นคือ \"จูเลียส โบรอส\" และเมื่อผลรวมมากกว่า 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_en": "What is the total number of To Par, when Total is \"295\"?",
    "question_th": "จำนวนทูพาร์ทั้งหมดเป็นเท่าใด เมื่อผลรวมคือ \"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_en": "What is the lowest Total, when Year(s) Won is \"1948 , 1950 , 1951 , 1953\"?",
    "question_th": "ผลรวมต่ำสุดคือเท่าใด เมื่อปีที่ชนะคือ \"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_en": "What is the sum of Year, when Role is \"himself\", and when Notes is \"celebrity guest alongside yg family\"?",
    "question_th": "ผลรวมของปีคือเท่าไร เมื่อบทบาทคือ \"ตัวเขาเอง\" และเมื่อ Notes เป็น \"แขกรับเชิญคนดังเคียงข้างครอบครัว yg\"?",
    "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_en": "What is the highest Year, when Notes is \"Celebrity Guest Alongside YG Family\"?",
    "question_th": "ปีสูงสุดคือปีไหนที่ Notes คือ \"แขกรับเชิญคนดังเคียงข้างครอบครัว YG\"?",
    "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_en": "What is the Year, when Role is \"himself\", and when Title is \"Epik High's Love And Delusion\"?",
    "question_th": "คือปีไหน เมื่อบทบาทคือ \"ตัวเขาเอง\" และเมื่อใดฉายาคือ \"ความรักและความหลงผิดของ Epik High\"",
    "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_en": "What is the sum of Year, when Title is \"Mnet Director's Cut\"?",
    "question_th": "ผลรวมของปีเป็นเท่าใดเมื่อหัวข้อเป็น \"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_en": "What is the Network, when Title is \"Epik High's Love And Delusion\"?",
    "question_th": "เครือข่ายคืออะไร ในเมื่อชื่อเรื่องคือ \"ความรักและความหลงผิดของ Epik High\"?",
    "context": "CREATE TABLE table_name_86 (network VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_78 WHERE week = 12",
    "question_en": "How many were in attendance during week 12?",
    "question_th": "มีผู้เข้าร่วมกี่คนในช่วงสัปดาห์ที่ 12",
    "context": "CREATE TABLE table_name_78 (attendance VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_46 WHERE result = \"l 38-14\"",
    "question_en": "On what date was the Result l 38-14?",
    "question_th": "ผล 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_en": "On what date was the week less than 3 with a result of w 24-13?",
    "question_th": "สัปดาห์ที่น้อยกว่า 3 โดยมีผลเป็น 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_en": "what is the water park with the rank 20?",
    "question_th": "สวนน้ำอันดับ 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_en": "what is 2011 when the rank is less than 8 and the water park is ocean world?",
    "question_th": "2011 คือปีไหนอันดับไม่ถึง 8 และสวนน้ำคือ 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_en": "What percentage of Azad Kashmir is Hindu?",
    "question_th": "Azad Kashmir เป็นชาวฮินดูกี่เปอร์เซ็นต์",
    "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_en": "What area shows % Hindu of statistics from the bbc in depth report.?",
    "question_th": "พื้นที่ใดแสดง % ฮินดูของสถิติจาก BBC ในรายงานเชิงลึก?",
    "context": "CREATE TABLE table_name_71 (area VARCHAR, _percentage_hindu VARCHAR)"
  },
  {
    "answer": "SELECT population FROM table_name_81 WHERE _percentage_muslim = \"30%\"",
    "question_en": "What is the population when the % Muslim shows 30%?",
    "question_th": "ประชากรเป็นเท่าใดเมื่อ % มุสลิมแสดง 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_en": "What is the percentage of Buddhist when the Population is ~2.6 million (2.6million)?",
    "question_th": "เปอร์เซ็นต์ของชาวพุทธเมื่อประชากรอยู่ที่ ~2.6 ล้านคน (2.6 ล้านคน) คืออะไร?",
    "context": "CREATE TABLE table_name_39 (_percentage_buddhist VARCHAR, population VARCHAR)"
  },
  {
    "answer": "SELECT area FROM table_name_83 WHERE _percentage_other = \"–\" AND _percentage_muslim = \"95%\"",
    "question_en": "What area has a % Other of –, and a % Muslim of 95%?",
    "question_th": "พื้นที่ใดมี % อื่นๆ เป็น – และมี % มุสลิม 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_en": "What area has a percentage of other of 3%?",
    "question_th": "พื้นที่ใดมีเปอร์เซ็นต์อีก 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_en": "What Game had a Result of 125-123 (OT)?",
    "question_th": "เกมใดมีผลการแข่งขัน 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_en": "What is the Date of Game 5 with Road Team St. Louis?",
    "question_th": "วันที่ของเกม 5 กับ 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_en": "What is the Road Team of Game 3?",
    "question_th": "Road Team ของเกมที่ 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_en": "What is the Game on April 13 with Road Team St. Louis?",
    "question_th": "เกมวันที่ 13 เมษายนกับ 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_en": "What is the Home Team in the game with a Result of 124-109?",
    "question_th": "เจ้าบ้านในเกมที่สกอร์ 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_en": "What is the Home Team on April 13 with a Road Team of St. Louis?",
    "question_th": "เจ้าบ้านวันที่ 13 เม.ย. กับทีมโร้ดเซนต์หลุยส์จะเป็นอย่างไร?",
    "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_en": "What is Score, when Date is greater than 7, and when Game is \"82\"?",
    "question_th": "คะแนนคืออะไร เมื่อวันที่มากกว่า 7 และเมื่อเกมเป็น \"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_en": "What is Opponent, when Location/Attendance is \"Mellon Arena - 17,132\"?",
    "question_th": "คู่ต่อสู้คืออะไร เมื่อสถานที่/ผู้เข้าร่วมคือ \"เมลลอน อารีน่า - 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_en": "What is Score, when Game is greater than 78, and when Date is \"4\"?",
    "question_th": "คะแนนคืออะไร เมื่อเกมมากกว่า 78 และเมื่อวันที่เป็น \"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_en": "What is Score, when Opponent is \"Tampa Bay Lightning\"?",
    "question_th": "Score คืออะไร เมื่อคู่ต่อสู้คือ “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_en": "What is Location/Attendance, when Score is \"4-5 (OT)\"?",
    "question_th": "สถานที่/การเข้าร่วมคืออะไร เมื่อคะแนนคือ \"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_en": "What driving wheels are on the m1 original NER class?",
    "question_th": "ล้อขับเคลื่อนอะไรในคลาส NER ดั้งเดิมของ m1?",
    "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_en": "What is the 1914 NER class with a d17/2 LNER class?",
    "question_th": "คลาส 1914 NER ที่มีคลาส d17/2 LNER คืออะไร",
    "context": "CREATE TABLE table_name_78 (lner_class VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_53 WHERE player = \"lew worsham\"",
    "question_en": "What was Lew Worsham's score?",
    "question_th": "คะแนนของ Lew Worsham คืออะไร?",
    "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_en": "Which Points have a Time/Retired of +49.222 secs?",
    "question_th": "คะแนนใดมีเวลา/เกษียณ +49.222 วินาที?",
    "context": "CREATE TABLE table_name_5 (points INTEGER, time_retired VARCHAR)"
  },
  {
    "answer": "SELECT AVG(points) FROM table_name_25 WHERE grid = 4",
    "question_en": "What are grid 4's average points?",
    "question_th": "คะแนนเฉลี่ยของตารางที่ 4 คืออะไร?",
    "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_en": "Who was the owner of Give a Toast after 1985?",
    "question_th": "ใครเป็นเจ้าของ Give a Toast หลังปี 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_en": "What is the earliest year Stuart Janney III was an owner?",
    "question_th": "Stuart Janney III เป็นเจ้าของในปีแรกสุดคือปีใด",
    "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_en": "Who was the winner after 1989 when Stronach Stable was the owner?",
    "question_th": "ใครคือผู้ชนะหลังจากปี 1989 เมื่อ Stronach Stable เป็นเจ้าของ?",
    "context": "CREATE TABLE table_name_41 (winner VARCHAR, year VARCHAR, owner VARCHAR)"
  },
  {
    "answer": "SELECT trainer FROM table_name_3 WHERE winner = \"mckaymackenna\"",
    "question_en": "Who was the trainer when Mckaymackenna won?",
    "question_th": "ใครคือเทรนเนอร์เมื่อ Mckaymackenna ชนะ?",
    "context": "CREATE TABLE table_name_3 (trainer VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT tunnel FROM table_name_38 WHERE length__imperial_ = \"307 yd\"",
    "question_en": "What Tunnel has an Imperial Length of 307 yd?",
    "question_th": "อุโมงค์ใดที่มีความยาวจักรวรรดิ 307 หลา?",
    "context": "CREATE TABLE table_name_38 (tunnel VARCHAR, length__imperial_ VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_78 WHERE tunnel = \"downhill\"",
    "question_en": "What Type of Tunnel is the Downhill Tunnel?",
    "question_th": "อุโมงค์ดาวน์ฮิลล์เป็นอุโมงค์ประเภทใด",
    "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_en": "What did United States score in the place t6?",
    "question_th": "สหรัฐอเมริกาได้คะแนนอะไรในอันดับที่ 6?",
    "context": "CREATE TABLE table_name_21 (score VARCHAR, country VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_41 WHERE player = \"ted schulz\"",
    "question_en": "Which country has the player Ted Schulz?",
    "question_th": "ประเทศใดมีผู้เล่น 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_en": "Which country scored 69-67-69-70=275?",
    "question_th": "ประเทศใดได้คะแนน 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_en": "What is the Date, when Game is 17?",
    "question_th": "วันที่คือเมื่อเกมคือ 17?",
    "context": "CREATE TABLE table_name_69 (date VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_97 WHERE away_team = \"cardiff city\"",
    "question_en": "What day was the away team Cardiff City?",
    "question_th": "ทีมเยือนคาร์ดิฟฟ์ซิตี้จัดวันไหน?",
    "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_en": "What home team had an away team of Aston Villa?",
    "question_th": "เจ้าบ้านไหนมีทีมเยือนแอสตัน วิลล่า?",
    "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_en": "What was the score when York City was home?",
    "question_th": "เมื่อยอร์ค ซิตี้ เหย้าสกอร์เท่าไหร่?",
    "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_en": "If the player is Corey Pavin when he had a To par of over 7, what was the sum of his totals?",
    "question_th": "ถ้าผู้เล่นคือคอเรย์ ปาวิน ตอนที่เขามีพาร์ถึง 7 แต้มรวมของเขาจะเท่ากับเท่าไร?",
    "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_en": "What is the round for the ufc on fox: velasquez vs. dos santos event?",
    "question_th": "การแข่งขัน ufc on fox: velasquez vs. dos santos รอบใด?",
    "context": "CREATE TABLE table_name_8 (round INTEGER, event VARCHAR)"
  },
  {
    "answer": "SELECT game_site FROM table_name_31 WHERE attendance = \"71,060\"",
    "question_en": "Where was the game played when 71,060 people attended?",
    "question_th": "เกมนี้เล่นที่ไหนเมื่อมีผู้เข้าร่วม 71,060 คน?",
    "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_en": "When the game was played at Mile High Stadium before week 9, what was the result?",
    "question_th": "เมื่อเกมเล่นที่ไมล์ไฮสเตเดี้ยมก่อนสัปดาห์ที่ 9 ผลเป็นอย่างไร?",
    "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_en": "Against the Houston Oilers after week 14, what was the result of the game?",
    "question_th": "เมื่อเทียบกับฮุสตัน ออยเลอร์ส หลังสัปดาห์ที่ 14 ผลลัพธ์ของเกมเป็นอย่างไร?",
    "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_en": "What player has +3 to par and score of 75-72=147?",
    "question_th": "ผู้เล่นคนใดมี +3 พาร์และคะแนน 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_en": "What is the country that the player is from with +3 to par and score of 74-73=147?",
    "question_th": "ผู้เล่นมาจากประเทศใดโดยมี +3 ถึงพาร์และคะแนน 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_en": "What player has +2 to par?",
    "question_th": "ผู้เล่นคนไหนมี +2 พาร์?",
    "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_en": "Name the Team which has a Time/Retired of contact, and a Grid smaller than 17?",
    "question_th": "ตั้งชื่อทีมที่มีเวลา/เลิกติดต่อ และตารางที่เล็กกว่า 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_en": "What is the average Bronze, when Nation is \"North Korea\", and when Total is greater than 5?",
    "question_th": "ค่าเฉลี่ยของเหรียญทองแดงคือเท่าใด เมื่อประเทศคือ \"เกาหลีเหนือ\" และเมื่อคะแนนรวมมากกว่า 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_en": "What is the lowest Bronze, when Total is greater than 10, when Silver is greater than 0, and when Rank is \"Total\"?",
    "question_th": "เหรียญทองแดงที่ต่ำที่สุดคืออะไร เมื่อผลรวมมากกว่า 10 เมื่อเงินมากกว่า 0 และเมื่ออันดับคือ \"ผลรวม\"",
    "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_en": "What is Rank, when Silver is less than 6, when Bronze is greater than 4, and when Total is 10?",
    "question_th": "อันดับคืออะไร เมื่อ Silver น้อยกว่า 6 เมื่อ Bronze มากกว่า 4 และเมื่อรวมเป็น 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_en": "What is Gold, when Rank is 7?",
    "question_th": "ทองคืออะไร เมื่ออันดับคือ 7?",
    "context": "CREATE TABLE table_name_38 (gold VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_15 WHERE date = \"july 26, 2010\"",
    "question_en": "what is the surface on july 26, 2010?",
    "question_th": "พื้นผิวในวันที่ 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_en": "what is the tournament on august 17, 2008?",
    "question_th": "การแข่งขันในวันที่ 17 สิงหาคม 2551 คืออะไร?",
    "context": "CREATE TABLE table_name_14 (tournament VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_86 WHERE score = \"7–5, 7–6 (8–6)\"",
    "question_en": "who is the opponent when the score is 7–5, 7–6 (8–6)?",
    "question_th": "คู่ต่อสู้คือใครเมื่อสกอร์คือ 7–5, 7–6 (8–6)?",
    "context": "CREATE TABLE table_name_86 (opponent VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_11 WHERE date = \"july 23, 2006\"",
    "question_en": "what is the tournament on july 23, 2006?",
    "question_th": "การแข่งขันในวันที่ 23 กรกฎาคม 2549 คืออะไร?",
    "context": "CREATE TABLE table_name_11 (tournament VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_9 WHERE opponent = \"fernando vicente\"",
    "question_en": "what is the score when the opponent is fernando vicente?",
    "question_th": "เมื่อคู่ต่อสู้คือ เฟร์นานโด วิเซนเต้ ได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_9 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_22 WHERE score = \"3–6, 6–1, 7–5\"",
    "question_en": "who is the opponent when the score is 3–6, 6–1, 7–5?",
    "question_th": "คู่ต่อสู้คือใครเมื่อสกอร์เป็น 3–6, 6–1, 7–5?",
    "context": "CREATE TABLE table_name_22 (opponent VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_33 WHERE player = \"scott hoch\"",
    "question_en": "What is Scott Hoch's to par?",
    "question_th": "Scott Hoch's มีค่าพาร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_33 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_10 WHERE player = \"nolan henke\"",
    "question_en": "What place is Nolan Henke in?",
    "question_th": "โนแลน เฮงเก้ อยู่ตำแหน่งไหน?",
    "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_en": "What is the vote total for elections after 2001 with 44.5% participation?",
    "question_th": "คะแนนเสียงทั้งหมดสำหรับการเลือกตั้งหลังปี 2544 โดยมีส่วนร่วม 44.5% เป็นเท่าใด",
    "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_en": "What is the most league cup goals for David Beresford having less than 0 FA Cup Goals?",
    "question_th": "ประตูในลีกคัพของเดวิด เบเรสฟอร์ดที่ทำได้น้อยกว่า 0 ประตูในเอฟเอ คัพ คือประตูใด?",
    "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_en": "What is the league goals when the league cup goals is less than 0 and 16 (1) league apps?",
    "question_th": "ประตูลีกคืออะไรเมื่อประตูลีกคัพน้อยกว่า 0 และ 16 (1) แอพลีก?",
    "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_en": "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?",
    "question_th": "แอพลีกคัพคืออะไรเมื่อประตูลีกมากกว่า 3 มีทั้งหมด 30 (2) แอพและมีตำแหน่ง 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_en": "What is the FA Cup App for Squad Number 3 having fewer than 4 league goals?",
    "question_th": "แอพ FA Cup สำหรับทีมหมายเลข 3 ที่ยิงได้น้อยกว่า 4 ประตูในลีกคืออะไร?",
    "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_en": "What is the lowest FA cup with 1 league cup, less than 12 total and 1 premier league?",
    "question_th": "เอฟเอ คัพ ต่ำสุดที่มี 1 ลีกคัพ รวมน้อยกว่า 12 ลีก และ 1 พรีเมียร์ลีก คืออะไร?",
    "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_en": "What is the highest league cup with more than 0 FA cups, a premier league less than 34 and a total of 11?",
    "question_th": "ลีกคัพสูงสุดที่มีมากกว่า 0 เอฟเอคัพ พรีเมียร์ลีกน้อยกว่า 34 และรวม 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_en": "What is the average total of kenwyne jones, who has more than 10 premier leagues?",
    "question_th": "ค่าเฉลี่ยรวมของเคนวินน์ โจนส์ ที่มีพรีเมียร์ลีกมากกว่า 10 ลีกคือเท่าไร?",
    "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_en": "What is the highest league cup of danny collins, who has more than 1 premier league?",
    "question_th": "แดนนี่ คอลลินส์ ในลีกคัพสูงสุดคือใครที่มีพรีเมียร์ลีกมากกว่า 1 ลีก?",
    "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_en": "Who had the high assists in the game less than 19?",
    "question_th": "ใครมีแอสซิสต์สูงในเกมน้อยกว่า 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_en": "Who had the high rebounds in Philips Arena 12,088?",
    "question_th": "ใครมีรีบาวด์สูงใน 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–105 (ot)\"",
    "question_en": "Who had the high points when the score was w 108–105 (ot)?",
    "question_th": "ใครมีคะแนนสูงเมื่อคะแนนอยู่ที่ 108–105 (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_en": "What was the competition on 29 November 1997 that resulted in a draw?",
    "question_th": "การแข่งขันวันที่ 29 พฤศจิกายน พ.ศ. 2540 มีผลการแข่งขันอะไรบ้าง?",
    "context": "CREATE TABLE table_name_97 (competition VARCHAR, result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT AVG(area__in_km²_) FROM table_name_81 WHERE markatal < 0",
    "question_en": "What is the average Area (in km²), when Markatal is less than 0?",
    "question_th": "พื้นที่เฉลี่ย (เป็น km²) คือเท่าใด เมื่อ Markatal น้อยกว่า 0",
    "context": "CREATE TABLE table_name_81 (area__in_km²_ INTEGER, markatal INTEGER)"
  },
  {
    "answer": "SELECT MAX(markatal) FROM table_name_69 WHERE municipality = \"leirvík\" AND inhabitants_per_km² > 79",
    "question_en": "What is the highest Markatal, when Municipality is Leirvík, and when Inhabitants Per Km² is greater than 79?",
    "question_th": "Markatal ที่สูงที่สุดคืออะไร เมื่อเทศบาลคือ Leirvík และเมื่อประชากรต่อกิโลเมตร² มากกว่า 79",
    "context": "CREATE TABLE table_name_69 (markatal INTEGER, municipality VARCHAR, inhabitants_per_km² VARCHAR)"
  },
  {
    "answer": "SELECT SUM(population) FROM table_name_57 WHERE markatal > 48 AND inhabitants_per_km² > 24 AND municipality = \"runavík\"",
    "question_en": "What is the sum of Population, when Markatal is greater than 48, when Inhabitants Per Km² is greater than 24, and when Municipality is Runavík?",
    "question_th": "ผลรวมของจำนวนประชากรคือเท่าใด เมื่อ Markatal มากกว่า 48 เมื่อจำนวนประชากรต่อกิโลเมตร² มากกว่า 24 และเมื่อเทศบาลคือ Runavík",
    "context": "CREATE TABLE table_name_57 (population INTEGER, municipality VARCHAR, markatal VARCHAR, inhabitants_per_km² VARCHAR)"
  },
  {
    "answer": "SELECT SUM(markatal) FROM table_name_47 WHERE inhabitants_per_km² < 13 AND area__in_km²_ = 27",
    "question_en": "What is the sum of Markatal, when Inhabitants Per Km² is less than 13, and when Area (in Km²) is 27?",
    "question_th": "ผลรวมของ Markatal คือเท่าใด เมื่อผู้อยู่อาศัยต่อกิโลเมตร² น้อยกว่า 13 และเมื่อพื้นที่ (ในกิโลเมตร²) เท่ากับ 27",
    "context": "CREATE TABLE table_name_47 (markatal INTEGER, inhabitants_per_km² VARCHAR, area__in_km²_ VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(season) FROM table_name_53 WHERE loses > 1 AND competition = \"fiba europe cup\" AND wins < 4",
    "question_en": "How many seasons have Losses larger than 1, and a Competition of fiba europe cup, and Wins smaller than 4?",
    "question_th": "มีกี่ฤดูกาลที่มีการแพ้มากกว่า 1 และการแข่งขัน fiba Europe Cup และชนะน้อยกว่า 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_en": "How many Wins have Losses larger than 2, and an Against of 73.3?",
    "question_th": "มีชัยชนะกี่ครั้งที่มีการแพ้มากกว่า 2 และต่อ 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_en": "In what Year was the Game on September 26?",
    "question_th": "เกมในวันที่ 26 กันยายนเป็นปีใด",
    "context": "CREATE TABLE table_name_54 (year INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT loser FROM table_name_32 WHERE result = \"35-27\"",
    "question_en": "What was the Loser of the Game with a Result of 35-27?",
    "question_th": "ผู้แพ้ของเกมคือใครด้วยผลสกอร์ 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_en": "In what Year was the Result of the game 16-14?",
    "question_th": "ผลการแข่งขัน 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_en": "What Year had a Result of 34-25?",
    "question_th": "ปีใดมีผล 34-25?",
    "context": "CREATE TABLE table_name_44 (year INTEGER, result VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_7 WHERE date = \"november 26\"",
    "question_en": "What is the Winner of the Game on November 26?",
    "question_th": "ผู้ชนะของเกมในวันที่ 26 พฤศจิกายนคืออะไร?",
    "context": "CREATE TABLE table_name_7 (winner VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(position) FROM table_name_66 WHERE pilot = \"mario kiessling\"",
    "question_en": "What is the highest Position, when Pilot is \"Mario Kiessling\"?",
    "question_th": "ตำแหน่งสูงสุดเมื่อนักบินคือ \"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_en": "What is the average Position, when Speed is \"143.5km/h\"?",
    "question_th": "ตำแหน่งเฉลี่ยคือเท่าใด เมื่อความเร็วอยู่ที่ \"143.5 กม./ชม.\"?",
    "context": "CREATE TABLE table_name_97 (position INTEGER, speed VARCHAR)"
  },
  {
    "answer": "SELECT glider FROM table_name_40 WHERE speed = \"147.3km/h\"",
    "question_en": "What is Glider, when Speed is \"147.3km/h\"?",
    "question_th": "Glider คืออะไร เมื่อความเร็วอยู่ที่ \"147.3 กม./ชม.\"?",
    "context": "CREATE TABLE table_name_40 (glider VARCHAR, speed VARCHAR)"
  },
  {
    "answer": "SELECT distance FROM table_name_64 WHERE pilot = \"stanislaw wujczak\"",
    "question_en": "What is Distance, when Pilot is \"Stanislaw Wujczak\"?",
    "question_th": "ระยะทางคืออะไร เมื่อนักบินคือ \"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_en": "Who has a Jersey number of 31?",
    "question_th": "ใครมีเสื้อเบอร์ 31 บ้างคะ?",
    "context": "CREATE TABLE table_name_84 (player VARCHAR, jersey_number_s_ VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_58 WHERE years = \"1999\"",
    "question_en": "What was the position in 1999?",
    "question_th": "ปี 2542 ดำรงตำแหน่งอะไร?",
    "context": "CREATE TABLE table_name_58 (position VARCHAR, years VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_40 WHERE tie_no = \"7\"",
    "question_en": "What is the name of the away team with a Tie no of 7?",
    "question_th": "ทีมเยือนที่เสมอกันที่ 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_en": "What is home team Chelsea's Tie no?",
    "question_th": "ทีมเหย้า เชลซี เสมอกัน คืออะไร?",
    "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_en": "What away team has a Tie no of 5?",
    "question_th": "ทีมเยือนทีมใดเสมอกันที่ 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_en": "Can you tell me the Score that has the Player of raymond floyd?",
    "question_th": "ช่วยบอกสกอร์ที่มีนักเตะ เรย์มอนด์ ฟลอยด์ หน่อยได้ไหมครับ?",
    "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_en": "Can you tell me the Player that has the Country of united states, and the Score of 77-72-72=221?",
    "question_th": "คุณช่วยบอกผู้เล่นที่มีประเทศสหรัฐอเมริกาและคะแนน 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_en": "Can you tell me the Score that has the Country of united states, and the To par of 8?",
    "question_th": "คุณช่วยบอกคะแนนที่มีประเทศสหรัฐอเมริกาและพาร์ถึง 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_en": "What was the time when his opponent was Cleber Luciano?",
    "question_th": "เมื่อไหร่ที่คู่ต่อสู้ของเขาคือเคลเบอร์ ลูเซียโน?",
    "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_en": "What was the method in round 1 of the UFC 20 event?",
    "question_th": "ในรอบที่ 1 ของงาน UFC 20 มีวิธีการอย่างไร?",
    "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_en": "What is Points, when Tries For is \"correct as of 00:00 11 June 2008\"?",
    "question_th": "คะแนนคืออะไร เมื่อ Tries For \"ถูกต้อง ณ เวลา 00:00 น. 11 มิถุนายน 2551\"",
    "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_en": "What is Try Bonus, when Lost is \"5\", and when Points is \"73\"?",
    "question_th": "Try Bonus คืออะไร เมื่อแพ้คือ \"5\" และเมื่อแต้มคือ \"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_en": "What is Points, when Played is \"20\", and when Club is \"Caldicot RFC\"?",
    "question_th": "แต้มคืออะไร เมื่อเล่นคือ \"20\" และเมื่อคลับคือ \"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_en": "What is Points, when Drawn is \"1\", and when Lost is \"5\"?",
    "question_th": "แต้มคืออะไร เมื่อจั่วได้เป็น \"1\" และเมื่อแพ้คือ \"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_en": "What is Lost, when Points For is \"257\"?",
    "question_th": "อะไรหายไป เมื่อคะแนนสำหรับคือ \"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_en": "What is Lost, when Losing Bonus is \"3\", and when Club is \"Bettws RFC\"?",
    "question_th": "อะไรจะสูญหาย เมื่อโบนัสการสูญเสียคือ \"3\" และเมื่อคลับคือ \"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_en": "What was the record when the visitor was Atlanta Hawks?",
    "question_th": "บันทึกเมื่อผู้มาเยือนคือ Atlanta Hawks คืออะไร?",
    "context": "CREATE TABLE table_name_90 (record VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_78 WHERE score = \"136–120\"",
    "question_en": "Who was the visitor when the score was 136–120?",
    "question_th": "ใครคือผู้มาเยือนเมื่อคะแนนอยู่ที่ 136–120",
    "context": "CREATE TABLE table_name_78 (visitor VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_79 WHERE visitor = \"new york knicks\"",
    "question_en": "Who was the home when the visitor was New York Knicks?",
    "question_th": "ใครคือบ้านเมื่อผู้มาเยือนคือนิวยอร์ก นิกส์?",
    "context": "CREATE TABLE table_name_79 (home VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_87 WHERE home = \"los angeles lakers\"",
    "question_en": "When was the home Los Angeles Lakers?",
    "question_th": "ลอสแอนเจลีส เลเกอร์ส อยู่บ้านเมื่อไหร่?",
    "context": "CREATE TABLE table_name_87 (date VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_94 WHERE date = \"december 15, 1976\"",
    "question_en": "Who was the visitor on december 15, 1976?",
    "question_th": "ใครคือผู้มาเยือนเมื่อวันที่ 15 ธันวาคม พ.ศ. 2519",
    "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_en": "At Time Warner Cable Arena 12,096, what was the high points?",
    "question_th": "ที่ Time Warner Cable Arena 12,096 มีแต้มสูงขนาดไหน?",
    "context": "CREATE TABLE table_name_85 (high_points VARCHAR, location_attendance VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_27 WHERE date = \"november 2\"",
    "question_en": "On November 2 what was the record of the team?",
    "question_th": "วันที่ 2 พ.ย. ผลงานของทีมเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_27 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT AVG(frequency_mhz) FROM table_name_88 WHERE erp_w = \"62\"",
    "question_en": "Average frequency with ERP W of 62?",
    "question_th": "ความถี่เฉลี่ยกับ ERP W เท่ากับ 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_en": "Total frequency with ERP W of 62?",
    "question_th": "ความถี่รวม ERP W เท่ากับ 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_en": "Frequency for kamy?",
    "question_th": "ความถี่สำหรับ 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_en": "What was the method of resolution when LaVerne Clark's record was 23-16-1?",
    "question_th": "วิธีการแก้ไขเมื่อบันทึกของ LaVerne Clark คือ 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_en": "how many subdivisions have an English Name of jiyang?",
    "question_th": "มีกี่เขตการปกครองที่มีชื่อภาษาอังกฤษว่า จีหยาง",
    "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_en": "What is the Population of the subdivision with the English Name of nanbin farm?",
    "question_th": "ประชากรของเขตการปกครองที่มีชื่อภาษาอังกฤษของฟาร์มหนานปินคืออะไร",
    "context": "CREATE TABLE table_name_73 (population INTEGER, english_name VARCHAR)"
  },
  {
    "answer": "SELECT traditional FROM table_name_27 WHERE pinyin = \"hédōng qū\"",
    "question_en": "What is the Traditional when the Pinyin is hédōng qū?",
    "question_th": "แบบดั้งเดิมคืออะไรเมื่อพินอินคือhédōng qū?",
    "context": "CREATE TABLE table_name_27 (traditional VARCHAR, pinyin VARCHAR)"
  },
  {
    "answer": "SELECT traditional FROM table_name_28 WHERE area = \"35\"",
    "question_en": "What is the Traditional for area 35?",
    "question_th": "แบบดั้งเดิมสำหรับพื้นที่ 35 คืออะไร?",
    "context": "CREATE TABLE table_name_28 (traditional VARCHAR, area VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_name_91 WHERE verb_meaning = \"to run\"",
    "question_en": "Which class has the verb meaning of to run?",
    "question_th": "คลาสใดมีคำกริยาหมายถึง run?",
    "context": "CREATE TABLE table_name_91 (class VARCHAR, verb_meaning VARCHAR)"
  },
  {
    "answer": "SELECT part_1 FROM table_name_81 WHERE class = \"7d\"",
    "question_en": "What is the entry for Part 1 for class 7d?",
    "question_th": "รายการสำหรับส่วนที่ 1 สำหรับคลาส 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_en": "What is the part 3 entry that has a part 4 entry of giboran?",
    "question_th": "รายการส่วนที่ 3 ที่มีรายการส่วนที่ 4 ของ 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_en": "What is the part 2 entry for class 3a?",
    "question_th": "รายการส่วนที่ 2 สำหรับคลาส 3a คืออะไร",
    "context": "CREATE TABLE table_name_36 (part_2 VARCHAR, class VARCHAR)"
  },
  {
    "answer": "SELECT part_4 FROM table_name_88 WHERE class = \"7b\"",
    "question_en": "What is the part 4 entry for class 7b?",
    "question_th": "รายการส่วนที่ 4 สำหรับคลาส 7b คืออะไร",
    "context": "CREATE TABLE table_name_88 (part_4 VARCHAR, class VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_24 WHERE result = \"draw\"",
    "question_en": "On what date was the result a draw?",
    "question_th": "หวยออกวันไหนคะ?",
    "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_en": "What is the score at the 2010 FIFA World Cup Qualification that results in a win?",
    "question_th": "คะแนนในการแข่งขันฟุตบอลโลก 2010 รอบคัดเลือกที่ส่งผลให้ชนะเป็นเท่าใด",
    "context": "CREATE TABLE table_name_6 (score VARCHAR, competition VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT power__kw_ FROM table_name_83 WHERE location = \"cebu\"",
    "question_en": "What is the Power (kW) for the station located in Cebu?",
    "question_th": "ค่าไฟฟ้า (kW) ของสถานีที่ตั้งอยู่ในเซบูคือเท่าไร?",
    "context": "CREATE TABLE table_name_83 (power__kw_ VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT power__kw_ FROM table_name_72 WHERE frequency = \"95.1mhz\"",
    "question_en": "What is the Power (kW) for the station with a frequency of 95.1mhz?",
    "question_th": "กำลังไฟฟ้า (kW) ของสถานีที่มีความถี่ 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_en": "What is the Callsign for the station with the branding 93dot5 home radio Cagayan De Oro?",
    "question_th": "Callsign สำหรับสถานีที่มีแบรนด์วิทยุบ้าน 93dot5 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_en": "What is the frequency for the station with the branding of 94dot3 home radio Palawan?",
    "question_th": "ความถี่ของสถานีที่มีตราสินค้าวิทยุบ้าน 94dot3 ปาลาวัน คือเท่าใด?",
    "context": "CREATE TABLE table_name_74 (frequency VARCHAR, branding VARCHAR)"
  },
  {
    "answer": "SELECT branding FROM table_name_25 WHERE location = \"zamboanga\"",
    "question_en": "What is the Branding for the station located in Zamboanga?",
    "question_th": "การสร้างแบรนด์สำหรับสถานีที่ตั้งอยู่ใน Zamboanga คืออะไร?",
    "context": "CREATE TABLE table_name_25 (branding VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT power__kw_ FROM table_name_26 WHERE frequency = \"98.7mhz\"",
    "question_en": "What is the Power (kW) for the station with the frequency of 98.7mhz?",
    "question_th": "กำลังไฟฟ้า (kW) ของสถานีความถี่ 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_en": "What is the medal total of Denmark?",
    "question_th": "เดนมาร์กได้เหรียญทั้งหมดเท่าไร?",
    "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_en": "What is the record of the game with a game number greater than 24 on December 19?",
    "question_th": "สถิติเกมที่มีเลขเกมมากกว่า 24 เมื่อวันที่ 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_en": "What is the record of game 26 with beno udrih (4) as the highest assists?",
    "question_th": "สถิติของเกมที่ 26 ที่เบโน อูดริห์ (4) แอสซิสต์สูงสุดคือเท่าไร?",
    "context": "CREATE TABLE table_name_41 (record VARCHAR, high_assists VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_37 WHERE game = 25",
    "question_en": "What is the score of game 25?",
    "question_th": "คะแนนของเกม 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_en": "WHAT IS THE DRAW FOR u ritmu ljubavi, POINTS LARGER THAN 87?",
    "question_th": "อะไรคือสิ่งที่วาดสำหรับคุณ ritmu ljubavi, แต้มที่มากกว่า 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_en": "WHAT IS THE DRAW FOR PERFORMER ANDREA CUBRIC?",
    "question_th": "อะไรคือสิ่งที่ดึงดูดนักแสดง 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_en": "What is the game number when the record is 30-22?",
    "question_th": "หมายเลขเกมเมื่อสถิติ 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_en": "At what location was the score W 82-76?",
    "question_th": "คะแนน 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_en": "What was the record when the game was at the Rose Garden?",
    "question_th": "บันทึกเมื่อเกมอยู่ที่ 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_en": "What is the highest number of games with more than 0 draws and 11 losses?",
    "question_th": "จำนวนเกมสูงสุดที่เสมอมากกว่า 0 แพ้ 11 คือเท่าไหร่?",
    "context": "CREATE TABLE table_name_33 (games INTEGER, draws VARCHAR, lost VARCHAR)"
  },
  {
    "answer": "SELECT 1994 FROM table_name_22 WHERE 1998 = \"2r\"",
    "question_en": "What is the 1994 finish in the event that had a 1998 finish of 2R?",
    "question_th": "การจบการแข่งขันในปี 1994 คืออะไรในกรณีที่จบ 2R ในปี 1998?",
    "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_en": "Which tournament had a 1994 finish of RR and 1996 and 1998 finishes of A?",
    "question_th": "ทัวร์นาเมนต์ใดที่จบด้วย RR ในปี 1994 และจบด้วย A ในปี 1996 และ 1998",
    "context": "CREATE TABLE table_name_75 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 1994 FROM table_name_92 WHERE 1997 = \"qf\" AND 1995 = \"3r\"",
    "question_en": "What is the 1994 finish associated with a 1995 finish of 3R and 1997 of QF?",
    "question_th": "การจบฤดูกาลปี 1994 เกี่ยวข้องกับการจบอันดับ 3R ในปี 1995 และ QF ปี 1997 คืออะไร?",
    "context": "CREATE TABLE table_name_92 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1999 FROM table_name_24 WHERE tournament = \"rome\"",
    "question_en": "What is the 1999 finish for the tournament in Rome?",
    "question_th": "การแข่งขันที่โรมในปี 1999 จบลงที่เท่าไร?",
    "context": "CREATE TABLE table_name_24 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 1991 FROM table_name_60 WHERE 1993 = \"grand slams\"",
    "question_en": "What is the 1991 finish for the 1993 Grand Slams?",
    "question_th": "การจบการแข่งขันแกรนด์สแลมปี 1993 ในปี 1993 คืออะไร?",
    "context": "CREATE TABLE table_name_60 (Id VARCHAR)"
  },
  {
    "answer": "SELECT playoff_apps FROM table_name_10 WHERE position = \"df\" AND name = \"thomas heary\"",
    "question_en": "What was the playoff apps for Thomas Heary, that had the position df?",
    "question_th": "แอพเพลย์ออฟของ Thomas Heary ที่มีตำแหน่ง 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_en": "What's the lowest squad number with more than 6 goals, fewer than 8 league goals, and more than 0 playoff goals?",
    "question_th": "หมายเลขทีมต่ำสุดที่ทำได้มากกว่า 6 ประตู, น้อยกว่า 8 ประตูในลีก และมากกว่า 0 ประตูในรอบเพลย์ออฟคือหมายเลขใด",
    "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_en": "How many total goals did the squad with 2 playoff apps, 2 FA Cup Apps, and 0 League Cup goals get?",
    "question_th": "ทีมที่มี 2 แอพเพลย์ออฟ, 2 แอพเอฟเอคัพ, และ 0 ประตูลีกคัพทำได้กี่ประตู?",
    "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_en": "Which title had rank 9?",
    "question_th": "ชื่อใดมีอันดับ 9?",
    "context": "CREATE TABLE table_name_28 (title VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_7 WHERE rank = 7",
    "question_en": "Which title placed in rank 7?",
    "question_th": "ชื่อใดอยู่ในอันดับ 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_en": "shows for the artist Santana featuring the product g&b?",
    "question_th": "การแสดงสำหรับศิลปิน Santana นำเสนอผลิตภัณฑ์ 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_en": "What volume 3 weeks on top for Third Eye Blind?",
    "question_th": "Third Eye Blind ปริมาณเท่าใด 3 สัปดาห์?",
    "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_en": "What was the music video that was from the album High Society, with a length of 3:50?",
    "question_th": "มิวสิกวิดีโอจากอัลบั้ม High Society ความยาว 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_en": "Which music video was from the album Map of the Human Soul?",
    "question_th": "มิวสิกวิดีโอใดจากอัลบั้ม 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_en": "What is the agg when team 2 was Cementarnica?",
    "question_th": "agg คืออะไรเมื่อทีม 2 เป็น 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_en": "What are the total number of podiums for more than 4 laps, and less than 149 races?",
    "question_th": "จำนวนโพเดียมรวมมากกว่า 4 รอบและน้อยกว่า 149 รอบเป็นเท่าใด",
    "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_en": "What was the score for the golfer from the country of fiji?",
    "question_th": "คะแนนของนักกอล์ฟจากประเทศฟิจิคือเท่าไร?",
    "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_en": "What was the score of the golfer from the united states who had a To par of e?",
    "question_th": "คะแนนของนักกอล์ฟจากสหรัฐอเมริกาที่มี To par เป็นเท่าไหร่?",
    "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_en": "Which united states player finished with a place of t10?",
    "question_th": "นักเตะสหรัฐคนไหนจบอันดับ 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_en": "What label uses the stereo LP for catalog scyl-934,623?",
    "question_th": "ป้ายใดใช้แผ่นเสียงสเตอริโอสำหรับแคตตาล็อก 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_en": "On what date was the catalog cy-24623 for New Zealand?",
    "question_th": "แค็ตตาล็อก cy-24623 สำหรับนิวซีแลนด์คือวันที่ใด",
    "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_en": "On what date was the catalog scyl-934,623 for Australia?",
    "question_th": "แค็ตตาล็อก scyl-934,623 สำหรับออสเตรเลียคือวันที่ใด",
    "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_en": "Which label has a catalog of y8hr 1006 in 1972?",
    "question_th": "ฉลากใดมีแคตตาล็อกของ y8hr 1006 ในปี 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_en": "What catalog uses the stereo compact cassette format?",
    "question_th": "แค็ตตาล็อกใดใช้รูปแบบสเตอริโอคอมแพคคาสเซ็ตต์",
    "context": "CREATE TABLE table_name_10 (catalog VARCHAR, format VARCHAR)"
  },
  {
    "answer": "SELECT AVG(game) FROM table_name_91 WHERE date = \"december 6\"",
    "question_en": "What is the average game that has December 6 as the date?",
    "question_th": "เกมโดยเฉลี่ยที่มีวันที่ 6 ธันวาคมเป็นวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_91 (game INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT AVG(game) FROM table_name_32 WHERE date = \"december 17\"",
    "question_en": "What is the average game that has December 17 as the date?",
    "question_th": "เกมโดยเฉลี่ยที่มีวันที่ 17 ธันวาคมเป็นวันที่เท่าไร?",
    "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_en": "Can you tell me the average Total that had the Silver of 0, and the Rank of 6, and the Gold smaller than 0?",
    "question_th": "คุณช่วยบอกฉันถึงผลรวมโดยเฉลี่ยที่มีเงินเป็น 0 และอันดับ 6 และทองที่น้อยกว่า 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_en": "Can you tell me the highest Gold that has the Bronze larger than 3, and the Total smaller than 24?",
    "question_th": "คุณช่วยบอกฉันได้ไหมว่าทองคำสูงสุดที่มีทองแดงมากกว่า 3 และยอดรวมน้อยกว่า 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_en": "Can you tell me the highest Gold that has the Bronze smaller than 1, and the Total larger than 4?",
    "question_th": "คุณช่วยบอกฉันได้ไหมว่าทองคำสูงสุดที่มีทองแดงน้อยกว่า 1 และผลรวมมากกว่า 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_en": "What is the number of physicians in the region with an all nurses number of 91?",
    "question_th": "แพทย์ภาคฯ มีพยาบาลทั้งหมด 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_en": "What is Moving, when Type is \"Transfer\", and when Name is \"Andy Webster\"?",
    "question_th": "Moving คืออะไร เมื่อ Type คือ \"Transfer\" และเมื่อชื่อคือ \"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_en": "What is Moving From, when Ends is before 2011?",
    "question_th": "Moving From คืออะไร เมื่อสิ้นสุดคือก่อนปี 2011",
    "context": "CREATE TABLE table_name_65 (moving_from VARCHAR, ends INTEGER)"
  },
  {
    "answer": "SELECT category FROM table_name_80 WHERE year = 2011",
    "question_en": "What was the category that sheridan smith was nominated for in 2011?",
    "question_th": "หมวดหมู่ที่เชอริแดน สมิธได้รับการเสนอชื่อเข้าชิงในปี 2554 คืออะไร",
    "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_en": "What ward was she nominated at for her work, Flare Path for the category of best featured actress in a play?",
    "question_th": "เธอได้รับการเสนอชื่อเข้าชิงวอร์ดใดจากผลงาน Flare Path สาขานักแสดงนำหญิงยอดเยี่ยมในละคร",
    "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_en": "What is the result for the nomination at the Laurence Olivier award in 2009 for best actress in a musical?",
    "question_th": "ผลลัพธ์ของการได้รับการเสนอชื่อเข้าชิงรางวัล Laurence Olivier ในปี 2552 สาขานักแสดงนำหญิงยอดเยี่ยมในละครเพลงคืออะไร?",
    "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_en": "What is the lowest attendance when the Atlanta Falcons were the opponent?",
    "question_th": "ผู้เข้าร่วมน้อยที่สุดเมื่อ Atlanta Falcons เป็นคู่ต่อสู้คืออะไร?",
    "context": "CREATE TABLE table_name_69 (week INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date_departed FROM table_name_38 WHERE class = \"grimsby class sloop\"",
    "question_en": "What's the departed date for Grimsby Class Sloop?",
    "question_th": "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_en": "What's the departed date that the HMS Leith of the Royal Navy?",
    "question_th": "วันที่ออกเดินทางคือวันที่ HMS Leith แห่งราชนาวี?",
    "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_en": "What's the class of the HMS Fowey?",
    "question_th": "HMS Fowey มีคลาสอะไร",
    "context": "CREATE TABLE table_name_51 (class VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_name_75 WHERE name = \"hms heartsease\"",
    "question_en": "What's the class of the HMS Heartsease?",
    "question_th": "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_en": "Can you tell me the Record that has the Game larger than 15, and the Opponent of edmonton oilers?",
    "question_th": "คุณช่วยบอกฉันเกี่ยวกับบันทึกที่มีเกมใหญ่กว่า 15 และฝ่ายตรงข้ามของ oilers edmonton ได้ไหม",
    "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_en": "Can you tell me the Score that has the Date of 11/17/1979?",
    "question_th": "คุณช่วยบอกคะแนนที่มีวันที่ 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_en": "Can you tell me the Opponent that has the Record of 7-7-1?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าฝ่ายตรงข้ามที่มีสถิติ 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_en": "Can you tell me the Score that has the Opponent of at edmonton oilers?",
    "question_th": "คุณช่วยบอกคะแนนของฝ่ายตรงข้ามที่ 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_en": "Can you tell me the Date thay has the Reocrd of 9-10-2?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าวันที่ที่มี Reocrd เป็น 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_en": "What is the finishing position for the person who had a grid of 3?",
    "question_th": "ตำแหน่งจบของคนที่มีตาราง 3 คืออะไร?",
    "context": "CREATE TABLE table_name_44 (fin_pos VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_72 WHERE car_no = \"15\"",
    "question_en": "Which team had car number 15?",
    "question_th": "ทีมไหนมีรถหมายเลข 15?",
    "context": "CREATE TABLE table_name_72 (team VARCHAR, car_no VARCHAR)"
  },
  {
    "answer": "SELECT laps FROM table_name_19 WHERE grid = \"10\"",
    "question_en": "What is the number of laps completed by the car in grid 10?",
    "question_th": "รถที่เข้าเส้นชัยในตาราง 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_en": "Which driver earned 32 points from the Andretti Green team?",
    "question_th": "นักแข่งคนไหนได้รับ 32 คะแนนจากทีม Andretti Green",
    "context": "CREATE TABLE table_name_91 (driver VARCHAR, team VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_46 WHERE serial = \"10b\"",
    "question_en": "What is the date for the 10b serial?",
    "question_th": "อนุกรม 10b คือวันที่เท่าไหร่?",
    "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_en": "What team has less than 64 goals against, 101 goals for, and a Points 2 total of 63?",
    "question_th": "ทีมใดยิงได้น้อยกว่า 64 ประตู, ทำได้ 101 ประตู และคะแนน 2 รวม 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_en": "What is the Points 2 average of teams that have played more than 46 games?",
    "question_th": "ค่าเฉลี่ยคะแนน 2 ของทีมที่เล่นมากกว่า 46 เกมเป็นเท่าใด",
    "context": "CREATE TABLE table_name_96 (points_2 INTEGER, played INTEGER)"
  },
  {
    "answer": "SELECT mkhedruli FROM table_name_41 WHERE asomtavruli = \"ⴒ\"",
    "question_en": "What is the Mkhedruli symbol for the Asomtavruli ⴒ?",
    "question_th": "สัญลักษณ์ Mkhedruli ของ Asomtavruli ⴒ คืออะไร?",
    "context": "CREATE TABLE table_name_41 (mkhedruli VARCHAR, asomtavruli VARCHAR)"
  },
  {
    "answer": "SELECT letter_name FROM table_name_74 WHERE asomtavruli = \"ⴙ\"",
    "question_en": "What is the letter name for the Asomtavruli ⴙ?",
    "question_th": "อสมทวรลี ⴙ มีชื่ออักษรว่าอะไร?",
    "context": "CREATE TABLE table_name_74 (letter_name VARCHAR, asomtavruli VARCHAR)"
  },
  {
    "answer": "SELECT phoneme FROM table_name_43 WHERE nuskhuri = \"ⴥ\"",
    "question_en": "What is the Phoneme symbol for ⴥ in Nuskhuri?",
    "question_th": "สัญลักษณ์ฟอนิมของ ⴥ ในภาษานุสกุรีคืออะไร",
    "context": "CREATE TABLE table_name_43 (phoneme VARCHAR, nuskhuri VARCHAR)"
  },
  {
    "answer": "SELECT phoneme FROM table_name_18 WHERE letter_name = \"zɛn\"",
    "question_en": "What is the Phoneme symbol for the letter name zɛn?",
    "question_th": "สัญลักษณ์ Phoneme ของตัวอักษร zɛn คืออะไร",
    "context": "CREATE TABLE table_name_18 (phoneme VARCHAR, letter_name VARCHAR)"
  },
  {
    "answer": "SELECT nuskhuri FROM table_name_80 WHERE asomtavruli = \"ⴋ\"",
    "question_en": "What is teh Nuskhuri symbol for ⴋ in Asomtavruli?",
    "question_th": "สัญลักษณ์ Teh Nuskhuri ของ ⴋ ใน 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_en": "What is the average value for Pick #, when Position is Linebacker, when Player is Bob Bruenig, and when Round is less than 3?",
    "question_th": "ค่าเฉลี่ยของ Pick # เมื่อตำแหน่งคือ Linebacker เมื่อผู้เล่นคือ Bob Bruenig และเมื่อ Round น้อยกว่า 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_en": "What is the sum of Pick #, when Position is Guard, and when Round is greater than 2?",
    "question_th": "ผลรวมของ Pick # เมื่อตำแหน่งเป็น Guard และเมื่อรอบมากกว่า 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_en": "What is the average Round, when Pick # is greater than 70, and when Position is Tackle?",
    "question_th": "รอบเฉลี่ยคือเท่าไร เมื่อ Pick # มากกว่า 70 และเมื่อ Position เป็น 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_en": "What is the lowest Round, when Position is Linebacker, and when Player is Thomas Henderson?",
    "question_th": "รอบต่ำสุดคือเมื่อตำแหน่งคือ Linebacker และเมื่อผู้เล่นคือ 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_en": "What is the total number of Pick #, when College is Oklahoma, and when Round is less than 4?",
    "question_th": "จำนวน Pick # ทั้งหมดคือเท่าใด เมื่อวิทยาลัยคือโอคลาโฮมา และเมื่อรอบน้อยกว่า 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_en": "Which Team has a Head Coach of michalis pamboris?",
    "question_th": "ทีมไหนมีหัวหน้าโค้ชของมิชาลิส แพมโบริส?",
    "context": "CREATE TABLE table_name_60 (team VARCHAR, head_coach VARCHAR)"
  },
  {
    "answer": "SELECT MAX(capacity) FROM table_name_23 WHERE kitmaker = \"umbro\"",
    "question_en": "What is umbro's highest capacity?",
    "question_th": "ความจุสูงสุดของ Umbro คืออะไร?",
    "context": "CREATE TABLE table_name_23 (capacity INTEGER, kitmaker VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_37 WHERE kitmaker = \"lotto\" AND team = \"apoel\"",
    "question_en": "Which Venue has a Kitmaker of lotto, and a Team of apoel?",
    "question_th": "สถานที่ใดที่มี Kitmaker ของล็อตโต้ และทีม 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_en": "What is the drawn number when there are 58 tries?",
    "question_th": "เลขเด็ดเมื่อลองครบ 58 ครั้งคือเลขอะไร?",
    "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_en": "What is the played number when the tries against shows correct as of 18:13 26 May 2008?",
    "question_th": "หมายเลขที่เล่นเมื่อพยายามต่อต้านแสดงถูกต้อง ณ เวลา 18:13 26 พฤษภาคม 2551 คืออะไร?",
    "context": "CREATE TABLE table_name_1 (played VARCHAR, tries_against VARCHAR)"
  },
  {
    "answer": "SELECT drawn FROM table_name_85 WHERE points_for = \"402\"",
    "question_en": "What is the drawn when there are 402 points?",
    "question_th": "งวดนี้มี 402 แต้ม งวดอะไรคะ?",
    "context": "CREATE TABLE table_name_85 (drawn VARCHAR, points_for VARCHAR)"
  },
  {
    "answer": "SELECT try_bonus FROM table_name_90 WHERE points_against = \"492\"",
    "question_en": "What is the try bonus when there are 492 points?",
    "question_th": "โบนัสลองเมื่อมี 492 คะแนนคืออะไร?",
    "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_en": "What is the number of points against when the tries against was 53?",
    "question_th": "จำนวนคะแนนต่อเมื่อพยายามต่อต้านคือ 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_en": "What is the played number when the points against is 179?",
    "question_th": "หมายเลขที่เล่นเมื่อแต้มต่อคือ 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_en": "what is the total series percent that has total attempted less than 49, and a percent made of 0.777",
    "question_th": "เปอร์เซ็นต์อนุกรมทั้งหมดที่มีความพยายามทั้งหมดน้อยกว่า 49 เป็นเท่าใด และเปอร์เซ็นต์คิดเป็น 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_en": "what is the total attempted with a total made 16",
    "question_th": "ความพยายามทั้งหมดเป็นเท่าใดโดยทำได้ทั้งหมด 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_en": "What is the sum of District, when Took Office is greater than 1981, and when Senator is Cyndi Taylor Krier?",
    "question_th": "ผลรวมของเขตเมื่อเข้ารับตำแหน่งมากกว่าปี 1981 และเมื่อวุฒิสมาชิกคือ 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_en": "What is Party, when District is less than 10, when Took Office is less than 1991, and when Home Town is Mount Pleasant?",
    "question_th": "Party คืออะไร เมื่อ District น้อยกว่า 10 เมื่อเข้ารับตำแหน่งน้อยกว่าปี 1991 และเมื่อ Home Town คือ 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_en": "What is the lowest Took Office, when Senator is Eddie Bernice Johnson, and when District is greater than 23?",
    "question_th": "ตำแหน่ง Took ต่ำที่สุดคืออะไร เมื่อวุฒิสมาชิกคือ Eddie Bernice Johnson และเมื่อ District มีอายุมากกว่า 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_en": "In which period did Stanislav Chistov get a penalty?",
    "question_th": "Stanislav Chistov ได้จุดโทษในช่วงใด?",
    "context": "CREATE TABLE table_name_9 (period VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT penalty FROM table_name_89 WHERE time = \"29:17\"",
    "question_en": "What was a penalty given for at time 29:17?",
    "question_th": "เวลา 29:17 น. ได้รับโทษอะไร?",
    "context": "CREATE TABLE table_name_89 (penalty VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_13 WHERE time = \"32:17\"",
    "question_en": "What team was the player that received a penalty at time 32:17 playing for?",
    "question_th": "นักเตะที่ได้รับจุดโทษเวลา 32:17 น. ลงเล่นให้กับทีมใด?",
    "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_en": "What team was Ryan Callahan, who received a penalty for roughing, playing for?",
    "question_th": "Ryan Callahan คือทีมใดที่ได้รับโทษจากการกัดหยาบโดยเล่นให้กับทีมใด?",
    "context": "CREATE TABLE table_name_87 (team VARCHAR, penalty VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT head_coach FROM table_name_95 WHERE opponent = \"arsenal\"",
    "question_en": "Who was the head coach when the opponent was Arsenal?",
    "question_th": "ใครเป็นหัวหน้าโค้ชเมื่อฝ่ายตรงข้ามคืออาร์เซนอล?",
    "context": "CREATE TABLE table_name_95 (head_coach VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_33 WHERE head_coach = \"b. sathianathan\"",
    "question_en": "Who was the opponent when the head coach was B. Sathianathan?",
    "question_th": "คู่ต่อสู้เมื่อครั้งเฮดโค้ชคือ บี. เสถียรธาน?",
    "context": "CREATE TABLE table_name_33 (opponent VARCHAR, head_coach VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_62 WHERE opponent = \"arsenal\"",
    "question_en": "When was the opponent Arsenal?",
    "question_th": "ฝ่ายตรงข้ามคืออาร์เซนอลเมื่อไหร่?",
    "context": "CREATE TABLE table_name_62 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_56 WHERE opponent = \"arsenal\"",
    "question_en": "What was the result when the opponent was Arsenal?",
    "question_th": "ผลเป็นอย่างไรเมื่อคู่ต่อสู้คืออาร์เซนอล?",
    "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_en": "What is the sum of the home wins of the Boston College Eagles, which has more than 6 wins?",
    "question_th": "ผลรวมของชัยชนะในบ้านของ Boston College Eagles ซึ่งชนะมากกว่า 6 ครั้งเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_89 (Home INTEGER, institution VARCHAR, wins VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_40 WHERE opponent = \"evangelista cyborg\"",
    "question_en": "What is the Record when Evangelista Cyborg was the opponent?",
    "question_th": "บันทึกเมื่อ Evangelista Cyborg เป็นคู่ต่อสู้คืออะไร?",
    "context": "CREATE TABLE table_name_40 (record VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT method FROM table_name_55 WHERE location = \"brazil\"",
    "question_en": "What is the Method for Brazil?",
    "question_th": "วิธีการสำหรับบราซิลคืออะไร?",
    "context": "CREATE TABLE table_name_55 (method VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(round) FROM table_name_18 WHERE method = \"submission (punches)\"",
    "question_en": "What round was the method submission (punches)?",
    "question_th": "ยื่นวิธี(เจาะ)รอบไหนคะ?",
    "context": "CREATE TABLE table_name_18 (round VARCHAR, method VARCHAR)"
  },
  {
    "answer": "SELECT method FROM table_name_63 WHERE record = \"3-2\"",
    "question_en": "What is the method when the record was 3-2?",
    "question_th": "เมื่อสถิติเป็น 3-2 มีวิธีใดบ้าง?",
    "context": "CREATE TABLE table_name_63 (method VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT method FROM table_name_35 WHERE round = 3",
    "question_en": "What is the method when the round shows 3?",
    "question_th": "รอบแสดง 3 มีวิธีใดบ้าง?",
    "context": "CREATE TABLE table_name_35 (method VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT run_3 FROM table_name_4 WHERE rank = \"12\"",
    "question_en": "What was the run 3 for the team in rank 12?",
    "question_th": "การวิ่ง 3 ของทีมในอันดับ 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_en": "What was the run 3 for the team with a run 1 of 1:17.6?",
    "question_th": "รัน 3 ของทีมที่มีรัน 1 ด้วยเวลา 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_en": "What was the rank of the team with a run 2 of 1:20.8 and a run 4 of 1:23.0?",
    "question_th": "อันดับของทีมด้วยรัน 2 จาก 1:20.8 และรัน 4 ด้วยเวลา 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_en": "What was the run 1 for the team with a run 3 of 1:21.4 and a run 4 of 1:23.0?",
    "question_th": "รัน 1 ของทีมด้วยรัน 3 ด้วยเวลา 1:21.4 และรัน 4 ด้วยเวลา 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_en": "Which team had a run 4 of 1:24.4?",
    "question_th": "ทีมไหนทำเวลาได้ 4 นาที 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_en": "What is the Attendance at the game against the Oakland Raiders?",
    "question_th": "ผู้เข้าร่วมในเกมกับ Oakland Raiders คืออะไร?",
    "context": "CREATE TABLE table_name_40 (attendance VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_59 WHERE week = 10",
    "question_en": "What was the Attendance in Week 10?",
    "question_th": "การเข้าร่วมในสัปดาห์ที่ 10 คืออะไร?",
    "context": "CREATE TABLE table_name_59 (attendance VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT principal_activities FROM table_name_76 WHERE incorporated_in = \"france\"",
    "question_en": "Which Principal activities have an Incorporated in of france?",
    "question_th": "กิจกรรม Principal ใดบ้างที่มี Incorporated ในประเทศฝรั่งเศส",
    "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_en": "Which Type has an Incorporated in of netherlands, a Principal activities of airline, and a Company of transavia.com?",
    "question_th": "ประเภทใดที่มีการจัดตั้งในประเทศเนเธอร์แลนด์ กิจกรรมหลักของสายการบิน และบริษัทของ 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_en": "Which Type has a Company of epcor?",
    "question_th": "ประเภทใดที่มีบริษัทของ epcor?",
    "context": "CREATE TABLE table_name_21 (type VARCHAR, company VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_28 WHERE principal_activities = \"health services\"",
    "question_en": "Which Type has a Principal activities of health services?",
    "question_th": "ประเภทใดมีกิจกรรมหลักในการให้บริการด้านสุขภาพ",
    "context": "CREATE TABLE table_name_28 (type VARCHAR, principal_activities VARCHAR)"
  },
  {
    "answer": "SELECT 2 AS __vf_ FROM table_name_75 WHERE verb = \"dhoa\"",
    "question_en": "For the verb dhoa, what is the 2VF?",
    "question_th": "สำหรับคำกริยา dhoa 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_en": "What is the name of the subject who ran in the general election for Queen Anne's County State's Attorney?",
    "question_th": "หัวข้อที่ลงสมัครรับเลือกตั้งทั่วไปสำหรับทนายความประจำรัฐควีนแอนน์เคาน์ตี้ชื่ออะไร",
    "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_en": "Who was the writer of The Year of the Cat from the BBV?",
    "question_th": "ใครคือผู้เขียน The Year of the Cat จาก 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_en": "How many Goals For have Drawn of 10?",
    "question_th": "เสมอกัน 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_en": "Which Lost has Drawn larger than 12, and Goals Against of 54?",
    "question_th": "ผู้แพ้คนไหนที่เสมอได้มากกว่า 12 และประตูต่อ 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_en": "What is the record for the Superbrawl 21?",
    "question_th": "บันทึกของ 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_en": "What location shows round was 1, and against Ricky Shivers?",
    "question_th": "สถานที่ใดที่แสดงรอบคือ 1 และต่อ 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–3\"",
    "question_en": "What is the method for a match with a Round larger than 2, he took a loss, and 15–3 was the record?",
    "question_th": "วิธีการแข่งขันที่มีรอบมากกว่า 2 เขาแพ้และ 15–3 เป็นสถิติ?",
    "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_en": "Which Position has a Pick of 11 (via calgary)?",
    "question_th": "ตำแหน่งใดมีการเลือก 11 (ผ่านคาลการี)?",
    "context": "CREATE TABLE table_name_8 (position VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT SUM(round) FROM table_name_88 WHERE pick = \"25 (via hamilton)\"",
    "question_en": "Which Round has a Pick of 25 (via hamilton)?",
    "question_th": "รอบใดมีการเลือก 25 (ผ่านแฮมิลตัน)?",
    "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_en": "Which School/Club Team has a Round larger than 3, and a Player of sammy okpro?",
    "question_th": "ทีมโรงเรียน/สโมสรใดที่มีรอบมากกว่า 3 และเป็นผู้เล่นของ 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_en": "Which Round has a Player of sammy okpro?",
    "question_th": "รอบไหนมีผู้เล่น แซมมี่ ออคโปร บ้าง?",
    "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_en": "Which Position has a Round of 4, and a School/Club Team of concordia?",
    "question_th": "ตำแหน่งใดที่มีรอบ 4 ทีม และทีมโรงเรียน/สโมสรของคอนคอร์เดีย",
    "context": "CREATE TABLE table_name_34 (position VARCHAR, round VARCHAR, school_club_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_21 WHERE record = \"29–23–13\"",
    "question_en": "What is the Score of the game with a Record of 29–23–13?",
    "question_th": "คะแนนของเกมที่มีสถิติ 29–23–13 คืออะไร?",
    "context": "CREATE TABLE table_name_21 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_70 WHERE record = \"21–17–13\"",
    "question_en": "What is the Visitor of the game with a Record of 21–17–13?",
    "question_th": "ผู้เยี่ยมชมเกมด้วยสถิติ 21–17–13 คืออะไร?",
    "context": "CREATE TABLE table_name_70 (visitor VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_26 WHERE date = \"december 25\"",
    "question_en": "What is the Visitor of the game on December 25?",
    "question_th": "ผู้เยี่ยมชมเกมในวันที่ 25 ธันวาคมคืออะไร?",
    "context": "CREATE TABLE table_name_26 (visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_99 WHERE record = \"8–10–6\"",
    "question_en": "What is the Date of the game with a Record of 8–10–6?",
    "question_th": "วันที่ของเกมที่มีสถิติ 8–10–6 คืออะไร?",
    "context": "CREATE TABLE table_name_99 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_27 WHERE record = \"1–2–4\"",
    "question_en": "What is the Date of the game with a Record of 1–2–4?",
    "question_th": "วันที่ของเกมที่มีสถิติ 1–2–4 คืออะไร?",
    "context": "CREATE TABLE table_name_27 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_11 WHERE record = \"27–21–13\"",
    "question_en": "What is the Date of the game with a Record of 27–21–13?",
    "question_th": "วันที่ของเกมที่มีสถิติ 27–21–13 คืออะไร?",
    "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_en": "Which Year(s) won has a Total smaller than 292, and a Player of hale irwin?",
    "question_th": "ปีใดที่ชนะมีคะแนนรวมน้อยกว่า 292 และผู้เล่นของ 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_en": "What is fuzzy zoeller's to par?",
    "question_th": "ฟัซซี่โซลเลอร์สพาร์คืออะไร?",
    "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_en": "What To par was won in 1982?",
    "question_th": "พาร์อะไรชนะในปี 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_en": "What is curtis strange's to par?",
    "question_th": "เคอร์ติส สเตรนจ์ มีอะไรให้เทียบได้?",
    "context": "CREATE TABLE table_name_26 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_80 WHERE date = \"november 18\"",
    "question_en": "WHAT IS THE SCORE WITH A DATE OF NOVEMBER 18?",
    "question_th": "คะแนน ณ วันที่ 18 พฤศจิกายนเป็นเท่าใด",
    "context": "CREATE TABLE table_name_80 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_27 WHERE date = \"february 9\"",
    "question_en": "WHAT IS THE VISITOR FOR FEBRUARY 9?",
    "question_th": "ผู้เข้าชมในวันที่ 9 กุมภาพันธ์คืออะไร",
    "context": "CREATE TABLE table_name_27 (visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_96 WHERE score < 70",
    "question_en": "What is the place of the player who scored less than 70?",
    "question_th": "นักเตะที่ทำคะแนนได้น้อยกว่า 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_en": "Which player was chosen by Saskatchewan in a pick larger than 38?",
    "question_th": "ผู้เล่นคนใดถูกเลือกโดยซัสแคตเชวันในตัวเลือกที่มากกว่า 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_en": "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?",
    "question_th": "หากประตูที่ทำได้ต่ำกว่า 6, ลงเล่น 11 เกม และมี 7 แอสซิสต์ ผลรวมของคะแนนสำหรับเกมที่ตรงตามเกณฑ์เหล่านี้คือเท่าใด",
    "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_en": "What's the highest amount of Games recorded that have more than 10 assists?",
    "question_th": "จำนวนเกมสูงสุดที่บันทึกไว้ซึ่งมีผู้ช่วยเหลือมากกว่า 10 ครั้งคือเท่าใด",
    "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_en": "What is Updated In Past 30 Days, when Registration is \"Open to people 13 and over\"?",
    "question_th": "มีอะไรอัปเดตในช่วง 30 วันที่ผ่านมา เมื่อการลงทะเบียน \"เปิดให้บุคคลอายุ 13 ปีขึ้นไป\"?",
    "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_en": "What is Permanent Account, when Updated In Past 30 Days is 10324?",
    "question_th": "บัญชีถาวรคืออะไร เมื่ออัปเดตใน 30 วันที่ผ่านมาคือ 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_en": "What is Userpics Free, when Registration is Open, when Yearly Cost For Paid Account is \"unknown\", and when Name is Kraslan?",
    "question_th": "Userpics Free คืออะไร เมื่อเปิดการลงทะเบียน เมื่อต้นทุนรายปีสำหรับบัญชีที่ชำระเงินเป็น \"ไม่ทราบ\" และเมื่อใดที่ชื่อ 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_en": "What is Userpics Free, when Monthly Cost For Paid Account is \"unknown\", and when S Registered User is 2340?",
    "question_th": "Userpics Free คืออะไร เมื่อต้นทุนรายเดือนสำหรับบัญชีที่ชำระเงินเป็น \"ไม่ทราบ\" และเมื่อผู้ใช้ที่ลงทะเบียน S คือ 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_en": "What is Yearly Cost For Paid Account, when Montly Cost For Paid Account is 5 USD, and when Userpics Paid is 50?",
    "question_th": "ค่าใช้จ่ายรายปีสำหรับบัญชีที่ชำระเงินคือเท่าใด เมื่อค่าใช้จ่ายรายเดือนสำหรับบัญชีที่ชำระเงินคือ 5 USD และเมื่อ Userpics ที่ชำระคือ 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_en": "What is the S Registered User, when Userpics Free is 6 [free] or 15 [plus]?",
    "question_th": "ผู้ใช้ที่ลงทะเบียน S คืออะไร เมื่อ Userpics Free คือ 6 [ฟรี] หรือ 15 [บวก]",
    "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_en": "What is Venue, when Date is \"2003-08-13\"?",
    "question_th": "สถานที่จัดงานคืออะไร เมื่อวันที่คือ \"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_en": "What is Score, when Date is \"2000-05-23\"?",
    "question_th": "คะแนนคืออะไร เมื่อวันที่คือ \"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_en": "What is Result, when Date is \"2000-05-23\"?",
    "question_th": "ผลลัพธ์คืออะไร เมื่อวันที่คือ \"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_en": "What is Competition, when Date is \"1999-08-07\"?",
    "question_th": "การแข่งขันคืออะไร เมื่อวันที่คือ \"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–1, 6–7(7), 6–3\"",
    "question_en": "In what Week was Serena Williams 6–1, 6–7(7), 6–3 the Winner?",
    "question_th": "เซเรนา วิลเลียมส์ 6–1, 6–7(7), 6–3 เป็นผู้ชนะในสัปดาห์ใด",
    "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–1, 6–7(7), 6–3\"",
    "question_en": "Who was the Finalist on a Hard Surface with Winner Serena Williams 6–1, 6–7(7), 6–3?",
    "question_th": "ใครคือผู้เข้ารอบสุดท้ายบนพื้นผิวแข็งกับผู้ชนะ Serena Williams 6–1, 6–7(7), 6–3",
    "context": "CREATE TABLE table_name_34 (finalists VARCHAR, surface VARCHAR, winners VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_70 WHERE tournament = \"rome\"",
    "question_en": "In what Week is the Rome Tournament?",
    "question_th": "การแข่งขันโรมจะจัดขึ้นในสัปดาห์ใด?",
    "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_en": "Which regio has a label of zzt and a date of 27 september 2004?",
    "question_th": "ภูมิภาคใดมีป้ายกำกับ zzt และวันที่ 27 กันยายน 2547",
    "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_en": "Which catalog has a date of 24 march 2006?",
    "question_th": "แค็ตตาล็อกใดมีวันที่ 24 มีนาคม 2549",
    "context": "CREATE TABLE table_name_44 (catalog VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT format FROM table_name_19 WHERE region = \"united kingdom\"",
    "question_en": "Which format has a region of united kingdom?",
    "question_th": "รูปแบบใดมีอาณาเขตเป็นสหราชอาณาจักร",
    "context": "CREATE TABLE table_name_19 (format VARCHAR, region VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_54 WHERE region = \"united kingdom\"",
    "question_en": "Which date has a region of united kingdom?",
    "question_th": "วันใดที่มีภูมิภาคของสหราชอาณาจักร",
    "context": "CREATE TABLE table_name_54 (date VARCHAR, region VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_name_15 WHERE date = \"24 march 2006\"",
    "question_en": "Which regio has a date of 24 march 2006?",
    "question_th": "ภูมิภาคใดมีวันที่ 24 มีนาคม พ.ศ. 2549",
    "context": "CREATE TABLE table_name_15 (region VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT a330 FROM table_name_62 WHERE a310 = \"b10\"",
    "question_en": "What is the A330 for A310 B10?",
    "question_th": "A330 สำหรับ A310 B10 คืออะไร?",
    "context": "CREATE TABLE table_name_62 (a330 VARCHAR, a310 VARCHAR)"
  },
  {
    "answer": "SELECT a330 FROM table_name_62 WHERE a310 = \"wide\"",
    "question_en": "What is the A330 and the A310 wide?",
    "question_th": "A330 และ A310 กว้างคืออะไร?",
    "context": "CREATE TABLE table_name_62 (a330 VARCHAR, a310 VARCHAR)"
  },
  {
    "answer": "SELECT model FROM table_name_48 WHERE a310 = \"1983\"",
    "question_en": "What model is the A310 of 1983?",
    "question_th": "A310 ปี 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_en": "What name is in the number 2 spot when Ethan is in the number 6 spot and Mason is in the number 3 spot?",
    "question_th": "ชื่ออะไรอยู่อันดับที่ 2 เมื่ออีธานอยู่อันดับที่ 6 และเมสันอยู่อันดับที่ 3?",
    "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_en": "In what region and year was Jacob the number 2 name and Ryan the number 10 name?",
    "question_th": "เจค็อบเป็นชื่อหมายเลข 2 ในภูมิภาคและปีใด และไรอันเป็นชื่อหมายเลข 10",
    "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_en": "What name was number 7 when Mason was number 1, Owen was number 6, Jackson was number 9, and Logan was number 10?",
    "question_th": "ชื่ออะไรคือหมายเลข 7 ตอนที่เมสันคือหมายเลข 1, โอเว่นคือหมายเลข 6, แจ็คสันคือหมายเลข 9 และโลแกนคือหมายเลข 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_en": "What name was in the number 4 spot when Aiden was number 7 and James was number 3?",
    "question_th": "ชื่ออะไรอยู่ในอันดับที่ 4 เมื่อเอเดนอยู่อันดับที่ 7 และเจมส์อยู่อันดับที่ 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_en": "What is the positions of Damon Jones?",
    "question_th": "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_en": "for how many years did the player who graduated from stanford play for Grizzlies?",
    "question_th": "นักเตะที่จบจากสแตนฟอร์ดเล่นให้กับกริซลี่ส์มากี่ปีแล้ว?",
    "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_en": "Which school did Dahntay Jones graduate from?",
    "question_th": "Dahntay Jones สำเร็จการศึกษาจากโรงเรียนไหน",
    "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_en": "Which player gradyated from Florida State?",
    "question_th": "ผู้เล่นคนไหนที่ไล่ระดับจากรัฐฟลอริดา?",
    "context": "CREATE TABLE table_name_76 (player VARCHAR, school_club_team VARCHAR)"
  },
  {
    "answer": "SELECT playoffs_mvp FROM table_name_65 WHERE result = \"4–1\" AND champions = \"daejeon hyundai dynat\"",
    "question_en": "What is the Playoffs MVP of the game with a Result of 4–1 with Champions Daejeon Hyundai Dynat?",
    "question_th": "MVP รอบตัดเชือกของเกมคืออะไรโดยมีผล 4–1 กับแชมเปี้ยน 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–3\" AND champions = \"daegu tongyang orions\"",
    "question_en": "What is the Year of the game with Result of 4–3 and Champions of Daegu Tongyang Orions?",
    "question_th": "ปีของเกมที่ผล 4–3 และแชมป์เปี้ยนของ 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–1\" AND champions = \"wonju dongbu promy\"",
    "question_en": "What is the Runners-up of the game with a Result of 4–1 and Champions of Wonju Dongbu Promy?",
    "question_th": "รองแชมป์ของเกมด้วยผล 4–1 และแชมป์ของวอนจู ดงบู โพรมีคือใคร?",
    "context": "CREATE TABLE table_name_1 (runners_up VARCHAR, result VARCHAR, champions VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_58 WHERE opponent = \"linfield\"",
    "question_en": "Where was the venue that Linfield was the opponent?",
    "question_th": "สถานที่ที่ Linfield เป็นคู่ต่อสู้อยู่ที่ไหน?",
    "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_en": "Which scorer plays for Aldershot and has scored a total of 19 League goals?",
    "question_th": "ผู้ทำประตูคนใดเล่นให้กับทีมอัลเดอร์ช็อต และยิงประตูในลีกไปแล้วทั้งหมด 19 ประตู?",
    "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_en": "What is the highest number of League Cup goals that were scored by Hartlepool?",
    "question_th": "ฮาร์ทลีพูลยิงประตูในลีก คัพ ได้สูงสุดจำนวนเท่าใด?",
    "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_en": "When was the game at the North Shore Events Centre?",
    "question_th": "เกมที่ 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_en": "What is the report corresponding to the game that had the Townsville Crocodiles as home team?",
    "question_th": "รายงานที่เกี่ยวข้องกับเกมที่มีทาวน์สวิลล์ โครโคไดล์ส เป็นเจ้าบ้านเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_59 (report VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_64 WHERE away_team = \"sydney spirit\"",
    "question_en": "When was the game that had Sydney Spirit as the away team?",
    "question_th": "เกมที่มี ซิดนีย์ สปิริต เป็นทีมเยือนคือเมื่อไหร่?",
    "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_en": "What was the box score for the game that had the Townsville Crocodiles as home team?",
    "question_th": "บ็อกซ์สกอร์ของเกมที่มีทาวน์สวิลล์ โครโคไดล์สเป็นเจ้าบ้านคือเท่าไร?",
    "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_en": "What was the box score for the game that had the Cairns Taipans as home team?",
    "question_th": "บ็อกซ์สกอร์ของเกมที่มีแคร์นส์ ไทปันส์เป็นเจ้าบ้านเป็นเท่าไหร่?",
    "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_en": "What's the lap number for time/retired of +33.912?",
    "question_th": "หมายเลขรอบเวลา/เกษียณที่ +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_en": "Total laps for Shinya Nakano at smaller than 10 grids.",
    "question_th": "รอบรวมของ Shinya Nakano ที่น้อยกว่า 10 ตาราง",
    "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_en": "Which player wears the number 2 on his jersey?",
    "question_th": "นักเตะคนไหนสวมเสื้อหมายเลข 2?",
    "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_en": "What is the highest number of rebounds of the san antonio spurs?",
    "question_th": "ซาน อันโตนิโอ สเปอร์ส รีบาวด์ได้มากสุดเท่าไหร่?",
    "context": "CREATE TABLE table_name_48 (high_rebounds VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_84 WHERE game = 4",
    "question_en": "What was the score of game 4?",
    "question_th": "เกมที่ 4 สกอร์เท่าไหร่ครับ?",
    "context": "CREATE TABLE table_name_84 (score VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_78 WHERE score = \"w 105-88\"",
    "question_en": "What is the date of the game with a w 105-88 score?",
    "question_th": "แข่งขันวันที่เท่าไหร่ด้วยสกอร์ aw 105-88?",
    "context": "CREATE TABLE table_name_78 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_name_37 WHERE team = \"golden state warriors\"",
    "question_en": "What is the game with the golden state warriors?",
    "question_th": "เกมของ 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_en": "What is the Pick # of the Player from Southern MIssissippi?",
    "question_th": "ตัวเลือก # ของผู้เล่นจาก Southern MIssissippi คืออะไร?",
    "context": "CREATE TABLE table_name_98 (pick VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_23 WHERE player = \"derrick franklin\"",
    "question_en": "In what Round was Derrick Franklin picked?",
    "question_th": "Derrick Franklin ถูกเลือกในรอบใด",
    "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_en": "In what Round does Duke have a Pick larger than 9?",
    "question_th": "Duke มี Pick มากกว่า 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_en": "In what Round was Tommy Norman picked?",
    "question_th": "Tommy Norman ถูกเลือกในรอบใด",
    "context": "CREATE TABLE table_name_19 (round INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT 2000 FROM table_name_5 WHERE 1998 = \"1.5\"",
    "question_en": "What is the 2000 value if the 1998 value is 1.5?",
    "question_th": "ค่า 2,000 จะเป็นเท่าใดถ้าค่า 1998 คือ 1.5",
    "context": "CREATE TABLE table_name_5 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2004 FROM table_name_73 WHERE 1998 = \"35\"",
    "question_en": "What is the 2004 value if the 1998 value is 35?",
    "question_th": "ค่าปี 2004 จะเป็นเท่าใดถ้าค่าปี 1998 คือ 35",
    "context": "CREATE TABLE table_name_73 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1998 FROM table_name_3 WHERE 2000 = \"25\"",
    "question_en": "What is the 1998 value if the 2000 value is 25?",
    "question_th": "ค่าปี 1998 จะเป็นเท่าใดถ้าค่าปี 2000 คือ 25",
    "context": "CREATE TABLE table_name_3 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1998 FROM table_name_13 WHERE 2007 = \"8\"",
    "question_en": "What is the 1998 value if the 2007 value is 8?",
    "question_th": "ค่าปี 1998 จะเป็นเท่าใด หากค่าปี 2007 คือ 8",
    "context": "CREATE TABLE table_name_13 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2000 FROM table_name_67 WHERE 1998 = \"1.5\"",
    "question_en": "What is the 2000 value if the 1998 value is 1.5?",
    "question_th": "ค่า 2,000 จะเป็นเท่าใดถ้าค่า 1998 คือ 1.5",
    "context": "CREATE TABLE table_name_67 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1998 FROM table_name_86 WHERE 2011 = \"30.4\"",
    "question_en": "What is the 1998 value if the 2011 value is 30.4?",
    "question_th": "ค่าปี 1998 จะเป็นเท่าใดหากค่าปี 2011 คือ 30.4",
    "context": "CREATE TABLE table_name_86 (Id VARCHAR)"
  },
  {
    "answer": "SELECT interface FROM table_name_58 WHERE product = \"xerox travel scanner 100\"",
    "question_en": "What is the interface of the product xerox travel scanner 100?",
    "question_th": "อินเทอร์เฟซของผลิตภัณฑ์ 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_en": "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?",
    "question_th": "จำนวนหน้าต่อนาที (สี) ของเครื่องที่มีขนาดหน้าสูงสุด a4 และขนาด (มม.) 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_en": "What club had Guus Hiddink as outgoing manager?",
    "question_th": "สโมสรใดมีกุส ฮิดดิ้งค์เป็นผู้จัดการทีมที่กำลังจะลาออก?",
    "context": "CREATE TABLE table_name_51 (club VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT date_of_departure FROM table_name_46 WHERE name = \"brendan rodgers\"",
    "question_en": "When did Brendan Rodgers depart his position?",
    "question_th": "เบรนแดน ร็อดเจอร์ส ออกจากตำแหน่งเมื่อใด?",
    "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_en": "On what date was Paulo Sousa appointed?",
    "question_th": "เปาโล ซูซ่า ได้รับการแต่งตั้งเมื่อใด?",
    "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_en": "Who had the high rebounds, and how many did he have, for the game played on April 9?",
    "question_th": "ใครรีบาวด์สูงและมีกี่เด้งสำหรับเกมที่เล่นวันที่ 9 เมษายน?",
    "context": "CREATE TABLE table_name_24 (high_rebounds VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_55 WHERE time = \"3:44\"",
    "question_en": "What date did a game have a time of 3:44?",
    "question_th": "เกมมีวันที่เท่าไหร่ 3:44?",
    "context": "CREATE TABLE table_name_55 (date VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_96 WHERE game > 4",
    "question_en": "What was the attendance for the game after game 4?",
    "question_th": "ผู้เข้าชมเกมหลังเกมที่ 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_en": "WHAT IS THE TYPE OF LAND WITH A 2010 POPULATION GREATER THAN 2539, A RURAL AREA, AND A 2007 POPULATION OF 2572?",
    "question_th": "ประเภทของที่ดินที่มีประชากรปี 2010 มากกว่า 2539 เป็นพื้นที่ชนบท และประชากรปี 2007 จำนวน 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_en": "WHAT IS THE TYPE OF LAND WITH A 2007 POPULATION SMALLER THAN 4346, 2010 POPULATION LARGER THAN 3385, FROM BARANGAY OF MANALONGON?",
    "question_th": "ประเภทของที่ดินที่มีประชากรในปี 2550 น้อยกว่า 4346 และ 2553 ประชากรมากกว่า 3385 จากบารังไกแห่งมานาลองกอนเป็นประเภทใด",
    "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_en": "WHAT IS THE POPULATION OF 2007 WHEN 2010 POPULATION WAS SMALLER THAN 1282?",
    "question_th": "ประชากรในปี 2550 เป็นเท่าใด เมื่อประชากรในปี 2553 มีขนาดเล็กกว่า 1,282 คน",
    "context": "CREATE TABLE table_name_2 (population__2007_ VARCHAR, population__2010_ INTEGER)"
  },
  {
    "answer": "SELECT COUNT(points) FROM table_name_42 WHERE played < 30",
    "question_en": "What is the number of points when the played is less than 30?",
    "question_th": "เมื่อเล่นน้อยกว่า 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_en": "What is the number of goals when the goal difference was less than 43, and the position less than 3?",
    "question_th": "จำนวนประตูเมื่อผลต่างประตูน้อยกว่า 43 และอันดับน้อยกว่า 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_en": "What is the position when the points were less than 34, draws of 7, and a Club of sd eibar?",
    "question_th": "ตำแหน่งไหนมีแต้มน้อยกว่า 34 เสมอ 7 และคลับของ 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_en": "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?",
    "question_th": "จำนวนประตูต่อเมื่อผลต่างประตูน้อยกว่า 43 ชนะน้อยกว่า 13 และแพ้มากกว่า 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_en": "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?",
    "question_th": "อะไรคือผลต่างประตูสูงสุดเมื่อประตูที่เสียน้อยกว่า 76 และตำแหน่งที่มากกว่า 5 และจำนวนที่เล่นมากกว่า 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_en": "Who is the producer for the director Richard Clark?",
    "question_th": "ใครคือโปรดิวเซอร์ของผู้กำกับ 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_en": "What is the lowest block for director Graeme Harper?",
    "question_th": "อะไรคือบล็อกที่ต่ำที่สุดสำหรับผู้กำกับ Graeme Harper?",
    "context": "CREATE TABLE table_name_79 (block INTEGER, director VARCHAR)"
  },
  {
    "answer": "SELECT skip FROM table_name_1 WHERE country = \"finland\"",
    "question_en": "What is the skip when the country is finland?",
    "question_th": "การข้ามเมื่อประเทศคือฟินแลนด์คืออะไร?",
    "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_en": "What is the lowest ends lost when the stolen ends for is less than 13, and stolten ends against is 6?",
    "question_th": "อะไรคือจุดจบต่ำสุดที่เสียไปเมื่อจุดสิ้นสุดที่ถูกขโมยสำหรับน้อยกว่า 13 และจุดสิ้นสุดที่ถูกขโมยคือ 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_en": "What is the sum shot % when the country is finland, and an ends lost is larger than 49?",
    "question_th": "ผลรวมช็อต % เป็นเท่าใดเมื่อประเทศคือฟินแลนด์ และการสูญเสียจุดสิ้นสุดมากกว่า 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_en": "What is the stolen ends against for a bank ends f/a of 4/7, and a country of china?",
    "question_th": "อะไรคือจุดสิ้นสุดที่ถูกขโมยสำหรับจุดสิ้นสุดของธนาคารที่ f/a ที่ 4/7 และสำหรับประเทศจีน?",
    "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_en": "what is the location when the year is after 1974 and the date is september 19?",
    "question_th": "สถานที่คือปีหลังปี 2517 และวันที่ 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_en": "what is the location when the year is before 1979 and the result is 19-17?",
    "question_th": "ตำแหน่งเมื่อปีก่อน 2522 และผลวันที่ 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_en": "what is the result for 1970 at yankee stadium?",
    "question_th": "ผลลัพธ์ในปี 1970 ที่แยงกี้สเตเดียมเป็นอย่างไรบ้าง?",
    "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_en": "what is the year when the location is yankee stadium and the result is 23-23",
    "question_th": "ปีที่คือสนามแยงกี้ และผลการแข่งขันคือ 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_en": "Which Total has a Name of eoin jess category:articles with hcards, and a Scottish Cup larger than 23?",
    "question_th": "Total ใดมีชื่ออยู่ในหมวดหมู่ eoin jess: บทความที่มี hcards และ Scottish Cup ที่ใหญ่กว่า 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_en": "Which Total has a Name of alex mcleish category:articles with hcards, and a League smaller than 494?",
    "question_th": "Total ใดมีชื่อของ alex mcleish หมวดหมู่:บทความที่มี hcards และลีกที่เล็กกว่า 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_en": "Which League Cup has a Scottish Cup larger than 69?",
    "question_th": "ลีกคัพใดที่มีสก็อตติชคัพใหญ่กว่า 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–1995 1997–2001\" AND europe < 11",
    "question_en": "Which Scottish Cup has a League smaller than 561, Years of 1989–1995 1997–2001, and Europe smaller than 11?",
    "question_th": "ถ้วยสก็อตใดที่มีลีกเล็กกว่า 561 ปี 1989–1995 1997–2001 และยุโรปเล็กกว่า 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_en": "What is the highest pick of the houston oilers NFL club, which has a round greater than 10?",
    "question_th": "ตัวเลือกสูงสุดของสโมสร NFL oilers ของฮูสตันซึ่งมีรอบมากกว่า 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_en": "What is the round of the new york jets NFL club?",
    "question_th": "นิวยอร์ก เจ็ตส์ สโมสร NFL รอบไหน?",
    "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_en": "What is the sum of the round of the new york jets NFL club, which has a pick less than 166?",
    "question_th": "ผลรวมของรอบของสโมสร New York Jets NFL ซึ่งมีตัวเลือกน้อยกว่า 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_en": "WHAT IS THE 2012 PERFORMANCE FOR THE MADRID MASTERS?",
    "question_th": "ผลงานของ MADRID MASTERS ในปี 2012 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_25 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_48 WHERE tournament = \"tournaments played\"",
    "question_en": "WHAT IS THE 2011 PERFORMANCE FOR TOURNAMENTS PLAYED?",
    "question_th": "ผลงานในปี 2011 สำหรับทัวร์นาเมนท์ที่เล่นเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_48 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2010 FROM table_name_19 WHERE 2009 = \"0\" AND tournament = \"finals\"",
    "question_en": "WHAT IS THE 2010 PERFORMANCE THAT HAD 2009 0F 0, AND FINALS TOURNAMENT?",
    "question_th": "ประสิทธิภาพปี 2010 ที่มีในปี 2009 0F 0 และทัวร์นาเมนต์รอบชิงชนะเลิศคืออะไร?",
    "context": "CREATE TABLE table_name_19 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2009 FROM table_name_68 WHERE tournament = \"tournaments played\"",
    "question_en": "WHAT IS THE 2009 PERFORMANCE FOR TOURNAMENTS PLAYED?",
    "question_th": "ผลงานในปี 2009 สำหรับทัวร์นาเมนท์ที่เล่นเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_68 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT scorers FROM table_name_83 WHERE round = \"round 3\"",
    "question_en": "Who were the scorers in round 3?",
    "question_th": "ใครคือผู้ทำประตูในรอบที่ 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_en": "What is the H/A in the semi-final round where oldham athletic were the opponents?",
    "question_th": "H/A ในรอบรองชนะเลิศเป็นอย่างไรโดยที่โอลด์แฮมแอธเลติกเป็นคู่ต่อสู้?",
    "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_en": "Who were the scorers in the semi-final round where oldham athletic were the opponents?",
    "question_th": "ใครคือผู้ทำประตูในรอบรองชนะเลิศ โดยมีโอลดัมแอธเลติกเป็นฝ่ายตรงข้าม?",
    "context": "CREATE TABLE table_name_94 (scorers VARCHAR, opponents VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_66 WHERE score = \"1–6, 6–3, 3–6\"",
    "question_en": "Where was the tournament where the score was 1–6, 6–3, 3–6?",
    "question_th": "การแข่งขันที่ไหนที่มีสกอร์ 1–6, 6–3, 3–6?",
    "context": "CREATE TABLE table_name_66 (tournament VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_80 WHERE score = \"4–6, 6–4, 6–2\"",
    "question_en": "Who did thomaz bellucci play against when the score was 4–6, 6–4, 6–2?",
    "question_th": "โธมาซ เบลลุชชีเล่นกับใครเมื่อสกอร์คือ 4–6, 6–4, 6–2?",
    "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_en": "What was the outcome of the tournament with Akiko Yonemura as a partner on a hard surface?",
    "question_th": "ผลลัพธ์ของทัวร์นาเมนต์ที่มี Akiko Yonemura เป็นคู่หูบนพื้นผิวแข็งเป็นอย่างไร",
    "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_en": "Which tournament has 1r in 2011, 1r in 2012, A in 2005, and 1r in 2010?",
    "question_th": "ทัวร์นาเมนต์ใดที่มี 1r ในปี 2554, 1r ในปี 2555, A ในปี 2548 และ 1r ในปี 2010",
    "context": "CREATE TABLE table_name_62 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2010 FROM table_name_75 WHERE 2012 = \"1r\" AND 2005 = \"a\"",
    "question_en": "What is the 2010 value with a 1r in 2012 and an A in 2005?",
    "question_th": "ค่าปี 2010 โดยมี 1r ในปี 2555 และ A ในปี 2548 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_75 (Id VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_96 WHERE 2009 = \"2r\" AND 2010 = \"2r\"",
    "question_en": "What is the tournament with a 2r in 2009 and a 2r in 2010?",
    "question_th": "การแข่งขันกับ 2r ในปี 2009 และ 2r ในปี 2010 คืออะไร?",
    "context": "CREATE TABLE table_name_96 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_10 WHERE 2012 = \"grand slam tournaments\"",
    "question_en": "What is the 2011 value of the 2012 grand slam tournaments?",
    "question_th": "มูลค่าปี 2011 ของทัวร์นาเมนต์แกรนด์สแลมปี 2012 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_10 (Id VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_13 WHERE game = \"45\"",
    "question_en": "What was the record after game 45?",
    "question_th": "สถิติหลังเกมที่ 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_en": "What was the date of the game at the delta center when the record was 35-14?",
    "question_th": "เกมที่เดลต้าเซ็นเตอร์วันที่เท่าไหร่เมื่อสถิติอยู่ที่ 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_en": "Who was the opponent, during the game at the location of keyarena at seattle center?",
    "question_th": "คู่ต่อสู้คือใครในระหว่างเกมที่สถานที่คีย์อารีน่าที่ซีแอตเทิลเซ็นเตอร์?",
    "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_en": "What is the label of release we are the rage with a cd format?",
    "question_th": "ป้ายวางจำหน่าย we are the rage ในรูปแบบซีดีคืออะไร?",
    "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_en": "Who was the winning team before 1956 on October 21?",
    "question_th": "ทีมใดเป็นผู้ชนะก่อนปี 1956 เมื่อวันที่ 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_en": "Who was the loser when the New York Giants were the winners on November 14?",
    "question_th": "ใครคือผู้แพ้เมื่อ New York Giants เป็นผู้ชนะในวันที่ 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_en": "Who was the winner when the Philadelphia eagles were the losers after 1958 at Yankee Stadium?",
    "question_th": "ใครคือผู้ชนะเมื่อฟิลาเดลเฟีย อีเกิลส์เป็นผู้แพ้หลังปี 1958 ที่แยงกี้ สเตเดียม?",
    "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_en": "What location was the game with the result of 29-14?",
    "question_th": "เกมที่ผลสกอร์ 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_en": "What is the score of the wigan athletic home team?",
    "question_th": "วีแกน แอธเลติก ทีมเจ้าบ้านสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_3 (score VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_6 WHERE tie_no = \"2\"",
    "question_en": "What is the away team with a 2 tie no.?",
    "question_th": "ทีมเยือนเสมอ 2 นัดคืออะไร?",
    "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_en": "What is the away team for the home team wigan athletic?",
    "question_th": "ทีมเยือนของเจ้าบ้าน วีแกน แอธเลติก อยู่ทีมไหน?",
    "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_en": "What is the score on 23 November 1983 with exeter city as the away team?",
    "question_th": "สกอร์เมื่อวันที่ 23 พฤศจิกายน พ.ศ. 2526 โดยมี เอ็กเซเตอร์ ซิตี้ เป็นทีมเยือน?",
    "context": "CREATE TABLE table_name_31 (score VARCHAR, date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_name_6 WHERE record = \"33–15\"",
    "question_en": "Who had the high assists when the record was 33–15?",
    "question_th": "ใครเป็นผู้แอสซิสต์ได้สูงเมื่อทำสถิติ 33–15?",
    "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_en": "What date was the location attendance at&t center 18,797, and a game earlier than 57?",
    "question_th": "วันที่เท่าไหร่ที่ผู้เข้าชม&t center 18,797 และเกมก่อน 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–112 (ot)\"",
    "question_en": "What player had the high assists when the Score was l 107–112 (ot)?",
    "question_th": "ผู้เล่นคนใดที่มีแอสซิสต์สูงเมื่อสกอร์อยู่ที่ l 107–112 (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_en": "Which company had a market value less than $5.59 billion, assets greater than $27.46 billion, and a rank above 39?",
    "question_th": "บริษัทใดมีมูลค่าตลาดน้อยกว่า 5.59 พันล้านดอลลาร์ สินทรัพย์มากกว่า 27.46 พันล้านดอลลาร์ และอยู่ในอันดับที่สูงกว่า 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_en": "How many ranks have assets of $70.74 billion and market value greater than $11.29 billion?",
    "question_th": "มีกี่อันดับที่มีสินทรัพย์ 70.74 พันล้านเหรียญสหรัฐ และมูลค่าตลาดมากกว่า 11.29 พันล้านเหรียญสหรัฐ?",
    "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_en": "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?",
    "question_th": "ผลรวมของรายได้ในฮ่องกงที่มีอันดับมากกว่า 42 มีสินทรัพย์น้อยกว่า 3.46 พันล้านดอลลาร์ และมีกำไรมากกว่า 0.17 พันล้านดอลลาร์เป็นเท่าใด",
    "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_en": "What is the highest number of gold medals when the silver is less than 0?",
    "question_th": "เหรียญทองสูงสุดเมื่อเงินน้อยกว่า 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_en": "How many Sri Lankans were admitted in 2004 when more than 594 Nepalis were admitted?",
    "question_th": "ในปี 2547 มีชาวศรีลังกาจำนวนเท่าใดที่เข้ารับการรักษาในปี 2547 โดยมีชาวเนปาลมากกว่า 594 คนเข้ารับการรักษา",
    "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_en": "How many Bangladeshis were admitted when 714 Nepalis and 13,575 Pakistanis were admitted?",
    "question_th": "มีชาวบังคลาเทศเข้ารับการรักษากี่คน เมื่อชาวเนปาล 714 คน และชาวปากีสถาน 13,575 คน เข้ารับการรักษา",
    "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_en": "What was the most Nepalis admitted when fewer than 1,896 Bangladeshis were admitted?",
    "question_th": "ชาวเนปาลเข้ารับการรักษามากที่สุดเมื่อมีชาวบังคลาเทศน้อยกว่า 1,896 คนเข้ารับการรักษามากที่สุดคือประเทศใด",
    "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_en": "What is the frequency that the magazine issues that was first published on april 27, 2010?",
    "question_th": "นิตยสารดังกล่าวตีพิมพ์ครั้งแรกเมื่อวันที่ 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_en": "What was the type of the magazine that was named dengeki game appli?",
    "question_th": "นิตยสารประเภทไหนที่ชื่อ 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_en": "What is the name of the video game magazine that was issued bimonthly?",
    "question_th": "นิตยสารวิดีโอเกมที่ออกทุกสองเดือนชื่ออะไร",
    "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_en": "What was the parent magazine for the manga magazine, dengeki moeoh that was issued bimonthly?",
    "question_th": "นิตยสารแม่ของนิตยสารมังงะ dengeki moeoh ที่ออกทุกสองเดือนคืออะไร",
    "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_en": "What was the parent magazine of the magazine that was first published on december 16, 2004?",
    "question_th": "นิตยสารหลักของนิตยสารที่ตีพิมพ์ครั้งแรกเมื่อวันที่ 16 ธันวาคม พ.ศ. 2547 คืออะไร",
    "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_en": "WHAT IS THE OVERALL AVERAGE WITH A 22 PICK, FROM RICE COLLEGE, AND ROUND BIGGER THAN 10?",
    "question_th": "ค่าเฉลี่ยโดยรวมของตัวเลือก 22 รายการจากวิทยาลัยไรซ์ และรอบที่ใหญ่กว่า 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_en": "WHAT POSITION HAS A 23 PICK?",
    "question_th": "ตำแหน่งใดที่มี 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_en": "WHAT IS THE AVERAGE OVERALL WITH A ROUND LARGER THAN 9, AND RB POSITION?",
    "question_th": "ค่าเฉลี่ยโดยรวมที่มีรอบใหญ่กว่า 9 และตำแหน่ง RB คืออะไร?",
    "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_en": "WHAT IS THE TOTAL NUMBER WITH A ROUND BIGGER THAN 7 AND PICK OF 21?",
    "question_th": "จำนวนรวมที่มีรอบมากกว่า 7 และเลือกได้ 21 คือเท่าใด",
    "context": "CREATE TABLE table_name_73 (overall VARCHAR, round VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_26 WHERE overall = 273",
    "question_en": "WHAT POSITION IS 273?",
    "question_th": "273 ตำแหน่งอะไร?",
    "context": "CREATE TABLE table_name_26 (position VARCHAR, overall VARCHAR)"
  },
  {
    "answer": "SELECT MIN(stls) FROM table_name_27 WHERE rebs > 8.6",
    "question_en": "What is the lowest Stls, when Rebs is greater than 8.6?",
    "question_th": "Stls ต่ำสุดคือเท่าใด เมื่อ Rebs มากกว่า 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_en": "What is the sum of Blks, when Stls is 1, and when Rebs is greater than 8.6?",
    "question_th": "ผลรวมของ Blks เมื่อ Stls เป็น 1 และเมื่อ Rebs มากกว่า 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_en": "Which opponent played in game 3 before October 18?",
    "question_th": "คู่ต่อสู้คนไหนที่เล่นในเกมที่ 3 ก่อนวันที่ 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_en": "Which game was after October 24 and had a record of 6-2-1?",
    "question_th": "เกมไหนเป็นหลังวันที่ 24 ต.ค. และมีสถิติ 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_en": "What was the lowest pick for the kicker after round 12?",
    "question_th": "ตัวเลือกนักเตะต่ำสุดหลังรอบ 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_en": "How many picks had less than 11 rounds and a player of Charley Casey?",
    "question_th": "กี่ตัวเลือกที่มีน้อยกว่า 11 รอบและเป็นผู้เล่นของ 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_en": "How many rounds had a position of kicker?",
    "question_th": "มีตำแหน่งนักเตะกี่รอบ?",
    "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_en": "Which position had a pick larger than 80 and Walt Mainer as a player?",
    "question_th": "ตำแหน่งใดที่มีตัวเลือกมากกว่า 80 และวอลต์ ไมเนอร์ในฐานะผู้เล่น?",
    "context": "CREATE TABLE table_name_7 (position VARCHAR, pick VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_57 WHERE away = \"deportes savio\"",
    "question_en": "What is the score of the match with deportes savio as the away team?",
    "question_th": "แมตช์นี้มีเดปอร์เตส ซาวิโอเป็นทีมเยือนสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_57 (score VARCHAR, away VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(attendance) FROM table_name_92 WHERE score = \"1:2\"",
    "question_en": "What is the total attendance of the match with a 1:2 score?",
    "question_th": "ผู้เข้าร่วมการแข่งขันด้วยสกอร์ 1:2 เป็นเท่าใด?",
    "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_en": "What is the home team of the match on 21 September 2008 with an attendance less than 2248 and a 2:0 score?",
    "question_th": "เจ้าบ้านคือทีมใดในแมตช์วันที่ 21 กันยายน พ.ศ. 2551 โดยมีผู้ชมน้อยกว่า 2,248 คน และสกอร์ 2:0?",
    "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_en": "What is the highest attendance of the match with a 2:0 score and vida as the away team?",
    "question_th": "แมตช์นี้มีผู้เข้าชมมากที่สุดด้วยสกอร์ 2:0 และวิดาเป็นทีมเยือน?",
    "context": "CREATE TABLE table_name_59 (attendance INTEGER, score VARCHAR, away VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_14 WHERE home = \"olimpia\"",
    "question_en": "What is the score of the home team olimpia?",
    "question_th": "เจ้าบ้านโอลิมเปียสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_14 (score VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_66 WHERE attendance = 2248",
    "question_en": "What is the score of the match with an attendance of 2248?",
    "question_th": "แมตช์นี้สกอร์รวม 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_en": "Which Seats up for election have an Election result larger than 8, and Staying councillors of 24?",
    "question_th": "ที่นั่งสำหรับการเลือกตั้งใดที่มีผลการเลือกตั้งมากกว่า 8 และสมาชิกสภาที่อยู่ 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_en": "Which New council has an Election result larger than 24?",
    "question_th": "สภาใหม่ใดที่มีผลการเลือกตั้งมากกว่า 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_en": "Which Staying councillors have a New council of 7, and a Previous council larger than 8?",
    "question_th": "สมาชิกสภาคนใดที่มีสภาใหม่จำนวน 7 คน และสภาก่อนหน้าที่มีขนาดใหญ่กว่า 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_en": "What was the record when they played in the Miami Arena, before game 24?",
    "question_th": "เมื่อพวกเขาเล่นในไมอามี อารีน่า ก่อนเกมที่ 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_en": "Who was the opponent when they played after Game 26 and their record was 23-4?",
    "question_th": "คู่ต่อสู้คือใครเมื่อพวกเขาเล่นหลังเกมที่ 26 และสถิติของพวกเขาคือ 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_en": "On what date did they play in Boston Garden with a record of 22-4?",
    "question_th": "พวกเขาเล่นที่บอสตันการ์เด้นวันไหนด้วยสถิติ 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_en": "What was their record on Wed. Dec. 5, when they played in Boston Garden?",
    "question_th": "บันทึกของพวกเขาในวันพุธคืออะไร 5 ธ.ค. สมัยเล่นที่บอสตัน การ์เด้น?",
    "context": "CREATE TABLE table_name_11 (record VARCHAR, location VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_18 WHERE player = \"lon hinkle\"",
    "question_en": "What place in Lon Hinkle in?",
    "question_th": "Lon Hinkle อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_18 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_33 WHERE player = \"mark hayes\"",
    "question_en": "What country does Mark Hayes play for?",
    "question_th": "Mark Hayes เล่นให้กับประเทศใด?",
    "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_en": "What is the sum of To Par, when Country is \"United States\", and when Year(s) Won is \"1973\"?",
    "question_th": "ผลรวมของ To Par เมื่อประเทศคือ \"สหรัฐอเมริกา\" และเมื่อปีที่ชนะคือ \"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_en": "What is Player, when Total is greater than 288, and when Country is \"South Africa\"?",
    "question_th": "ผู้เล่นคืออะไร เมื่อผลรวมมากกว่า 288 และเมื่อประเทศคือ \"แอฟริกาใต้\"",
    "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_en": "What is Year(s) Won, when To Par is greater than 13?",
    "question_th": "ปีที่ชนะคืออะไร เมื่อพาร์มากกว่า 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_en": "What residence has representative Quincy Murphy?",
    "question_th": "ที่อยู่อาศัยใดมีตัวแทน 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_en": "Who is the home captain when the venue is adelaide oval?",
    "question_th": "ใครคือกัปตันทีมเจ้าบ้านเมื่อสนามเป็นวงรีแอดิเลด?",
    "context": "CREATE TABLE table_name_81 (home_captain VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_57 WHERE date = \"september 20\"",
    "question_en": "What was the score in the September 20 game?",
    "question_th": "สกอร์ในเกมวันที่ 20 กันยายน เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_57 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_23 WHERE date = \"september 22\"",
    "question_en": "Where was the September 22 game played?",
    "question_th": "เกมวันที่ 22 กันยายนเล่นที่ไหน?",
    "context": "CREATE TABLE table_name_23 (location VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_76 WHERE date = \"september 26\"",
    "question_en": "What was the score in the September 26 game?",
    "question_th": "สกอร์ในเกมวันที่ 26 กันยายน เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_76 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_97 WHERE time = \"7:30pm\"",
    "question_en": "Who was the opposing team in the game(s) that started at 7:30pm?",
    "question_th": "ทีมฝ่ายตรงข้ามในเกมที่เริ่มเวลา 19.30 น. คือใคร?",
    "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_en": "What was the score of the 7:00pm game at Scotiabank Place against the Philadelphia Flyers?",
    "question_th": "เกมเวลา 19.00 น. ที่สโกเทียแบงค์เพลส พบกับฟิลาเดลเฟีย ฟลายเออร์ส ให้คะแนนเท่าไร",
    "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_en": "What is the attendance of the match on October 26?",
    "question_th": "แมตช์วันที่ 26 ตุลาคม มีผู้ชมเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_16 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent_number FROM table_name_78 WHERE result = \"w27-16\"",
    "question_en": "What is the opponent number of the match with a w27-16 result?",
    "question_th": "คู่ต่อสู้หมายเลขใดของนัดที่ผลการแข่งขัน w27-16 คืออะไร?",
    "context": "CREATE TABLE table_name_78 (opponent_number VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_9 WHERE attendance = \"73,855\"",
    "question_en": "What is the result of the match with an attendance of 73,855?",
    "question_th": "ผลการแข่งขันมีผู้ชม 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_en": "What is the rank of the match on October 19?",
    "question_th": "แมตช์วันที่ 19 ต.ค. อันดับไหน?",
    "context": "CREATE TABLE table_name_72 (rank__number VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT scorers FROM table_name_63 WHERE opponent = \"aberdeen\"",
    "question_en": "Who was the scorer when the opponent was aberdeen?",
    "question_th": "ใครเป็นผู้ทำประตูเมื่อคู่ต่อสู้เป็นอเบอร์ดีน?",
    "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_en": "When was the scorer mccoist (3), johnston, butcher, steven?",
    "question_th": "เมื่อใดผู้ทำประตู แม็คคอยสต์ (3), จอห์นสตัน, บุชเชอร์, สตีเว่น?",
    "context": "CREATE TABLE table_name_48 (date VARCHAR, scorers VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_7 WHERE visitor = \"pittsburgh\" AND points > 18",
    "question_en": "What is Score, when Visitor is \"Pittsburgh\", and when Points is greater than 18?",
    "question_th": "คะแนนคืออะไร เมื่อผู้เข้าชมคือ \"พิตต์สเบิร์ก\" และเมื่อคะแนนมากกว่า 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_en": "What is the sum of Points, when Home is \"Pittsburgh\", when Date is \"December 21\", and when Attendance is greater than 5,307?",
    "question_th": "ผลรวมของคะแนนเมื่อทีมเหย้าคือ \"พิตต์สเบิร์ก\" วันที่คือ \"21 ธันวาคม\" และเมื่อผู้เข้าร่วมมากกว่า 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_en": "What is the lowest Points, when Home is \"Boston\"?",
    "question_th": "แต้มต่ำสุดเมื่อเจ้าบ้านคือ \"บอสตัน\" คืออะไร?",
    "context": "CREATE TABLE table_name_81 (points INTEGER, home VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_48 WHERE high_points = \"charlie villanueva (24)\"",
    "question_en": "what is the team when the high points is by charlie villanueva (24)?",
    "question_th": "ทีมจะเป็นอย่างไรเมื่อแต้มสูงสุดคือ ชาร์ลี วิลลานูเอวา (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_en": "what is the location attendance when the high assists is by ramon sessions (8) on march 30?",
    "question_th": "ตำแหน่งที่แอสซิสต์สูงคือช่วงรามอน (8) ในวันที่ 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–102 (ot)\"",
    "question_en": "Who had the high rebounds when the score was l 85–102 (ot)?",
    "question_th": "ใครมีการรีบาวด์สูงเมื่อสกอร์อยู่ที่ l 85–102 (ot)?",
    "context": "CREATE TABLE table_name_55 (high_rebounds VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_name_42 WHERE score = \"w 86–77 (ot)\"",
    "question_en": "what is the location attendance when the score is w 86–77 (ot)?",
    "question_th": "การเข้าร่วมสถานที่เป็นเท่าใดเมื่อคะแนน w 86–77 (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–78 (ot)\"",
    "question_en": "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–78 (ot)?",
    "question_th": "วันที่เท่าไหร่ที่รามอนเซสชั่น (8) มีแอสซิสต์สูง, ริชาร์ด เจฟเฟอร์สัน (29) มีแต้มสูง และคะแนนอยู่ที่ 107–78 (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_en": "who had the high rebounds when the team was @ toronto?",
    "question_th": "ใครมีการรีบาวด์สูงเมื่อทีมอยู่ที่ @โตรอนโต?",
    "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_en": "What is the lowest pole with a Flap larger than 5, and a before race 155?",
    "question_th": "เสาต่ำสุดที่มีพนังใหญ่กว่า 5 และก่อนการแข่งขัน 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_en": "What was Fred Couples' score?",
    "question_th": "คะแนนของ Fred Couples คืออะไร?",
    "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_en": "When Payne Stewart of the United States scored higher than 69, what was the To Par?",
    "question_th": "เมื่อ เพย์น สจ๊วร์ต จากสหรัฐอเมริกาทำคะแนนได้สูงกว่า 69 พาร์ ทูพาร์ คืออะไร?",
    "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 = \"함흥\"",
    "question_en": "What is the 2008 population in 함흥 (Ham Hyung)?",
    "question_th": "ประชากรในปี 2008 ใน 함흥 (ฮัมฮยอง) เป็นเท่าใด",
    "context": "CREATE TABLE table_name_55 (population__2008_ INTEGER, korean VARCHAR)"
  },
  {
    "answer": "SELECT mountain_peak FROM table_name_74 WHERE location = \"53.1370°n 119.2667°w\"",
    "question_en": "what is the mountain peak when the location is 53.1370°n 119.2667°w?",
    "question_th": "ยอดเขาเมื่อตำแหน่งอยู่ที่ 53.1370°n 119.2667°w?",
    "context": "CREATE TABLE table_name_74 (mountain_peak VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_name_96 WHERE location = \"49.7462°n 117.1419°w\"",
    "question_en": "what is the region when the location is 49.7462°n 117.1419°w?",
    "question_th": "ภูมิภาคใดเมื่อตำแหน่งอยู่ที่ 49.7462°n 117.1419°w?",
    "context": "CREATE TABLE table_name_96 (region VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_63 WHERE mountain_peak = \"isthmus peak\"",
    "question_en": "what is the rank when the mountain peak is isthmus peak?",
    "question_th": "ยอดภูเขาเป็นยอดคอคอดอันดับเท่าไหร่?",
    "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_en": "what is the mountain range when the region is british columbia and mountain pea is mount edziza?",
    "question_th": "เทือกเขาเมื่อภูมิภาคคือบริติชโคลัมเบีย และถั่วภูเขาคือภูเขาเอ็ดซิซา?",
    "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_en": "What is the Born-Died dates of Xhafer Bej Ypi?",
    "question_th": "วันเกิด-เสียชีวิตของ 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–1933\"",
    "question_en": "What is the Name of the Prime Minister with a Born-Died of 1873–1933?",
    "question_th": "นายกรัฐมนตรีที่เกิด-เสียชีวิต พ.ศ. 2416-2476 ชื่ออะไร",
    "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_en": "What is the Term Start date of the Progressive Party Prime Minister?",
    "question_th": "นายกรัฐมนตรีพรรคก้าวหน้ามีวาระเริ่มวาระเมื่อใด",
    "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_en": "What is the percentage for Brown when the lead margin is 26?",
    "question_th": "เปอร์เซ็นต์ของ Brown เมื่ออัตรากำไรขั้นต้นคือ 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_en": "What is the percentage for Schweitzer when the lead margin is 29?",
    "question_th": "เปอร์เซ็นต์ของ Schweitzer คือเท่าใดเมื่อระยะขอบของโอกาสในการขายคือ 29",
    "context": "CREATE TABLE table_name_12 (democrat VARCHAR, lead_margin VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_72 WHERE date = \"november 22\"",
    "question_en": "What is Record, when Date is \"November 22\"?",
    "question_th": "Record คืออะไร เมื่อวันที่คือ \"22 พฤศจิกายน\"",
    "context": "CREATE TABLE table_name_72 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(attendance) FROM table_name_75 WHERE week < 1",
    "question_en": "What is the attendance before week 1?",
    "question_th": "การเข้าร่วมก่อนสัปดาห์ที่ 1 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_75 (attendance VARCHAR, week INTEGER)"
  },
  {
    "answer": "SELECT date FROM table_name_10 WHERE winning_score = –7(67 - 72 - 69 - 69 = 277)",
    "question_en": "What was the date of the match with a winning score of –7 (67-72-69-69=277)?",
    "question_th": "แข่งขันวันที่เท่าไหร่ด้วยคะแนนชนะ –7 (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_en": "Who was the home team in the match with an away team of Millwall?",
    "question_th": "ทีมเจ้าบ้านในเกมเยือนกับทีมเยือนมิลล์วอลล์คือใคร?",
    "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_en": "What is the score for the match that had a home team of Kidderminster Harriers?",
    "question_th": "แมตช์ที่เจ้าบ้านคิดเดอร์มินสเตอร์ แฮริเออร์ส สกอร์เท่าไหร่?",
    "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_en": "What is the date of the match with a home team of Huddersfield Town and was a replay tie?",
    "question_th": "แมตช์กับเจ้าบ้าน ฮัดเดอร์สฟิลด์ ทาวน์ ตรงกับวันที่เท่าไร และ เสมอกัน นัดรีเพลย์ ?",
    "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_en": "Who was the home team for tie number 11?",
    "question_th": "ทีมเหย้าชุดที่ 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_en": "Who was the rider with 120.953 mph speed?",
    "question_th": "ใครคือผู้ขับขี่ด้วยความเร็ว 120.953 ไมล์ต่อชั่วโมง?",
    "context": "CREATE TABLE table_name_79 (rider VARCHAR, speed VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_27 WHERE rider = \"steve plater\"",
    "question_en": "What time did rider steve plater have?",
    "question_th": "ไรเดอร์ สตีฟ เพลเตอร์ มีเวลากี่โมง?",
    "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_en": "What is the rank of rider gary johnson, who had a speed of 120.979 mph?",
    "question_th": "แกรี่ จอห์นสัน นักบิดที่มีความเร็ว 120.979 ไมล์ต่อชั่วโมง อยู่ในอันดับเท่าไหร่?",
    "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_en": "What club has less than 8 draws, 37 points, and less than 71 goals?",
    "question_th": "สโมสรใดเสมอน้อยกว่า 8 แต้ม 37 แต้ม ทำได้น้อยกว่า 71 ประตู?",
    "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_en": "What is the total number of goals when there are 3 draws, more than 18 losses, and played is smaller than 38?",
    "question_th": "จำนวนประตูทั้งหมดเมื่อเสมอ 3 ครั้ง แพ้มากกว่า 18 นัด และเล่นน้อยกว่า 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_en": "What is the number of goals against when the played is more than 38?",
    "question_th": "จำนวนประตูต่อเมื่อเล่นมากกว่า 38 คือเท่าใด?",
    "context": "CREATE TABLE table_name_19 (goals_against VARCHAR, played INTEGER)"
  },
  {
    "answer": "SELECT COUNT(draws) FROM table_name_53 WHERE played < 38",
    "question_en": "What is the number of draws when played is less than 38?",
    "question_th": "จำนวนเสมอเมื่อเล่นน้อยกว่า 38 คือเท่าไร?",
    "context": "CREATE TABLE table_name_53 (draws VARCHAR, played INTEGER)"
  },
  {
    "answer": "SELECT SUM(points) FROM table_name_6 WHERE played < 38",
    "question_en": "What is the points when played is less than 38?",
    "question_th": "แต้มเมื่อเล่นน้อยกว่า 38 คืออะไร?",
    "context": "CREATE TABLE table_name_6 (points INTEGER, played INTEGER)"
  },
  {
    "answer": "SELECT transfer_window FROM table_name_27 WHERE name = \"tofas\"",
    "question_en": "Which Transfer window has a Name of tofas?",
    "question_th": "หน้าต่าง Transfer ใดมีชื่อ 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_en": "Which Type has a Transfer fee of free, and a Name of kapetanos?",
    "question_th": "ประเภทใดมีค่าธรรมเนียมการโอนฟรี และชื่อ 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_en": "Which Type has a Name of edson ratinho?",
    "question_th": "ประเภทใดมีชื่อ 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_en": "Which Name has a Type of loan, and a Moving to of apollon kalamaria?",
    "question_th": "ชื่อใดที่มีประเภทของเงินกู้ และการย้ายไปยัง 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_en": "What is Location, when Circuit is August 16?",
    "question_th": "Location คืออะไร เมื่อ Circuit คือวันที่ 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_en": "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?",
    "question_th": "ตำแหน่งคืออะไร เมื่อรอบที่เร็วที่สุดคือ Ben Spies เมื่อตำแหน่งโพลโพซิชั่นคือ Ben Spies เมื่อผู้ชนะคือ Ben Spies และเมื่อใด Date คือ 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_en": "What is Fastest Lap, when Date is Leeds, Alabama, and when Circuit is April 19?",
    "question_th": "รอบที่เร็วที่สุดคืออะไร วันที่คือลีดส์ แอละแบมา และเมื่อใดที่เซอร์กิตคือวันที่ 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_en": "What is Winner, when Circuit is June 8?",
    "question_th": "Winner คืออะไร เมื่อ Circuit คือวันที่ 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_en": "What is Pole Position, when Fastest Lap is Ben Spies, and when Location is Barber Motorsports Park?",
    "question_th": "ตำแหน่งโพลคืออะไร เมื่อรอบที่เร็วที่สุดคือ Ben Spies และเมื่อตำแหน่งคือ 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_en": "What is Winner, when Pole Position is Ben Spies, and when Date is Elkhart Lake, Wisconsin?",
    "question_th": "ผู้ชนะคืออะไร เมื่อโพลโพซิชั่นคือ Ben Spies และเมื่อใดคือวันที่เอลคาร์ตเลค วิสคอนซิน",
    "context": "CREATE TABLE table_name_41 (winner VARCHAR, pole_position VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_16 WHERE score = \"4–6, 6–4, 3–6\"",
    "question_en": "What is the Surface of the court in the match with a Score of 4–6, 6–4, 3–6?",
    "question_th": "พื้นผิวของสนามในการแข่งขันด้วยคะแนน 4–6, 6–4, 3–6 คืออะไร?",
    "context": "CREATE TABLE table_name_16 (surface VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_47 WHERE year > 2010",
    "question_en": "Which Team has a Year larger than 2010?",
    "question_th": "ทีมใดมีปีใหญ่กว่าปี 2010?",
    "context": "CREATE TABLE table_name_47 (team VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT AVG(laps) FROM table_name_80 WHERE year = 2007",
    "question_en": "Which Laps has a Year of 2007?",
    "question_th": "รอบใดมีปี 2550?",
    "context": "CREATE TABLE table_name_80 (laps INTEGER, year VARCHAR)"
  },
  {
    "answer": "SELECT tie_no FROM table_name_13 WHERE home_team = \"swindon town\"",
    "question_en": "What was the tie number with the home team of Swindon Town?",
    "question_th": "เลขเสมอกับเจ้าบ้าน สวินดอน ทาวน์ คืออะไร?",
    "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_en": "What was the tie number with the away team of Sheffield Wednesday?",
    "question_th": "เสมอกับทีมเยือนเชฟฟิลด์ เว้นส์เดย์ เลขไหน?",
    "context": "CREATE TABLE table_name_63 (tie_no VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_76 WHERE tie_no = \"23\"",
    "question_en": "What was the score for the match with tie number 23?",
    "question_th": "แมตช์ที่เสมอกันอันดับ 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_en": "Who was the home team for the match against Arsenal?",
    "question_th": "ทีมเจ้าบ้านในเกมเจออาร์เซนอลคือใคร?",
    "context": "CREATE TABLE table_name_2 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_40 WHERE player = \"payne stewart\"",
    "question_en": "Which place is payne stewart, the player in?",
    "question_th": "เพย์น สจ๊วต ผู้เล่นอยู่ไหน?",
    "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_en": "What player has +7 as the to par, and 69-69-75-74=287 as the score?",
    "question_th": "ผู้เล่นคนใดมี +7 เป็นพาร์ และ 69-69-75-74=287 เป็นคะแนน?",
    "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_en": "Which tournaments was Ryan Palmer in as a runner-up?",
    "question_th": "Ryan Palmer อยู่ในทัวร์นาเมนต์ใดในฐานะรองแชมป์?",
    "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_en": "What was the margin of victory for the Players Championship tournament?",
    "question_th": "อะไรคือส่วนต่างของชัยชนะสำหรับทัวร์นาเมนต์ Players Championship?",
    "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_en": "What tournament was Kirk Triplett a runner-up in?",
    "question_th": "Kirk Triplett เป็นรองแชมป์ในทัวร์นาเมนต์ใด",
    "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_en": "What is the winning score for the B.C. Open 1 tournament?",
    "question_th": "คะแนนชนะสำหรับทัวร์นาเมนต์ BC Open 1 คืออะไร?",
    "context": "CREATE TABLE table_name_40 (winning_score VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_46 WHERE player = \"lee janzen\"",
    "question_en": "What country is Lee Janzen from?",
    "question_th": "Lee Janzen มาจากประเทศอะไร?",
    "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_en": "When Tom Watson placed t6, what was the 2 par?",
    "question_th": "ตอนทอม วัตสันวาง t6 พาร์ 2 ได้เท่าไหร่?",
    "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_en": "Who had a score of 70-69-70=209?",
    "question_th": "ใครได้คะแนน 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_en": "What was the Opponent in the Tarragona Tournament?",
    "question_th": "ฝ่ายตรงข้ามในการแข่งขัน Tarragona คืออะไร?",
    "context": "CREATE TABLE table_name_9 (opponent VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_14 WHERE score = \"6–2, 4–6, 6–4\"",
    "question_en": "What Tournament's Score was 6–2, 4–6, 6–4?",
    "question_th": "คะแนนของทัวร์นาเมนท์คือ 6–2, 4–6, 6–4",
    "context": "CREATE TABLE table_name_14 (tournament VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_64 WHERE score = \"6-2, 6-4\"",
    "question_en": "On what Date was the match with a Score of 6-2, 6-4?",
    "question_th": "แข่งขันกันวันที่ไหนด้วยสกอร์ 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_en": "How many years had the best actress in a Revival category?",
    "question_th": "นักแสดงหญิงที่ดีที่สุดในประเภท Revival กี่ปี?",
    "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_en": "What categories had a Nominated work of yerma before 1992?",
    "question_th": "หมวดหมู่ใดบ้างที่ได้รับการเสนอชื่อเข้าชิงผลงานของ yerma ก่อนปี 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_en": "How many times is the shot volume (cm3) less than 172.76?",
    "question_th": "ปริมาตรช็อต (cm3) น้อยกว่า 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_en": "what is the average shot volume (cm 3) when the shot diameter (cm) is less than 6.04?",
    "question_th": "ปริมาตรช็อตเฉลี่ย (ซม. 3) คือเท่าใด เมื่อเส้นผ่านศูนย์กลางช็อต (ซม.) น้อยกว่า 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_en": "What role was nominated at the Sydney Film Festival?",
    "question_th": "บทบาทใดที่ได้รับการเสนอชื่อเข้าชิงในเทศกาลภาพยนตร์ซิดนีย์",
    "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_en": "In what category was an award won in 2007?",
    "question_th": "ได้รับรางวัลประเภทใดในปี 2550?",
    "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_en": "What is the first year that there was a Satellite Award?",
    "question_th": "ปีแรกที่ได้รับรางวัลดาวเทียมคือปีใด",
    "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_en": "What role was at the Sydney Film Festival in 2008?",
    "question_th": "มีบทบาทอย่างไรในเทศกาลภาพยนตร์ซิดนีย์ในปี 2551",
    "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_en": "What was nominated for the Jury Award?",
    "question_th": "สิ่งที่ได้รับการเสนอชื่อเข้าชิงรางวัล 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_en": "what is the released when the series is sorted 6y/ai?",
    "question_th": "ซีรีย์จะออกตอนไหน 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_en": "who is the featuring when the doctor is the 6th and the series sorted is 6y/ak?",
    "question_th": "เนื้อเรื่องของใครคือตอนที่หมออยู่ม.6 และซีรีย์เรียงกันคือ 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_en": "what is the series sorted when the released is may 2012?",
    "question_th": "ซีรีย์จะเรียงลำดับอะไรเมื่อออกฉายในเดือนพฤษภาคม 2555?",
    "context": "CREATE TABLE table_name_73 (series_sorted VARCHAR, released VARCHAR)"
  },
  {
    "answer": "SELECT featuring FROM table_name_38 WHERE series_sorted = \"6eb/b\"",
    "question_en": "who is the featuring when the series sorted is 6eb/b?",
    "question_th": "เนื้อเรื่องคือใครเมื่อซีรีส์เรียงลำดับเป็น 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_en": "Which Country has a Year(s) won of 1977?",
    "question_th": "ประเทศใดมีชัยชนะในปี 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_en": "Which To par is the lowest one that has a Year(s) won of 1962, 1967, 1972, 1980, and a Total larger than 149?",
    "question_th": "พาร์ใดที่ต่ำที่สุดที่ชนะในปี 1962, 1967, 1972, 1980 และผลรวมมากกว่า 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_en": "Which Country has a Total of 148?",
    "question_th": "ประเทศใดมีทั้งหมด 148?",
    "context": "CREATE TABLE table_name_74 (country VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT year_s__won FROM table_name_57 WHERE total = 147",
    "question_en": "Which Year(s) won has a Total of 147?",
    "question_th": "ปีใดที่ชนะมีคะแนนรวม 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_en": "Which To par is the highest one that has a Total smaller than 148?",
    "question_th": "พาร์ใดที่มีค่าสูงสุดที่มีคะแนนรวมน้อยกว่า 148?",
    "context": "CREATE TABLE table_name_89 (to_par INTEGER, total INTEGER)"
  },
  {
    "answer": "SELECT candidate FROM table_name_20 WHERE election = \"2008 (2)\"",
    "question_en": "Who is the candidate in the 2008 (2) election?",
    "question_th": "ใครคือผู้สมัครในการเลือกตั้งปี 2551 (2)?",
    "context": "CREATE TABLE table_name_20 (candidate VARCHAR, election VARCHAR)"
  },
  {
    "answer": "SELECT share_of_votes FROM table_name_99 WHERE election = \"2008 (1)\"",
    "question_en": "What is the share of votes in the 2008 (1) election?",
    "question_th": "ส่วนแบ่งคะแนนเสียงในการเลือกตั้งปี 2551 (1) เป็นเท่าใด",
    "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_en": "What is the share of votes in the 2000 (2nd) election?",
    "question_th": "ส่วนแบ่งคะแนนเสียงในการเลือกตั้งปี 2543 (ครั้งที่ 2) เป็นเท่าใด",
    "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_en": "What is the election with an outcome of ndc opposition and 2,728,241 votes?",
    "question_th": "การเลือกตั้งที่ผลคะแนนฝ่ายค้าน กปปส. เป็นอย่างไร ด้วยคะแนนเสียง 2,728,241 เสียง?",
    "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_en": "What is the outcome of the election with 43.3% share of votes?",
    "question_th": "ผลการเลือกตั้งที่มีส่วนแบ่งเสียง 43.3% เป็นอย่างไร?",
    "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_en": "Who is the candidate in the 2012 election?",
    "question_th": "ใครคือผู้สมัครในการเลือกตั้งปี 2555?",
    "context": "CREATE TABLE table_name_50 (candidate VARCHAR, election VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_44 WHERE player = \"mark o'meara\"",
    "question_en": "What is Mark O'Meara's Score?",
    "question_th": "คะแนนของ Mark O'Meara คืออะไร?",
    "context": "CREATE TABLE table_name_44 (score VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_11 WHERE player = \"curtis strange\"",
    "question_en": "What is Curtis Strange's Score?",
    "question_th": "คะแนนของ Curtis Strange คืออะไร?",
    "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_en": "What is the Tracks of the release in Catalog BA 222304 with a Length of 2:57?",
    "question_th": "เพลงที่เผยแพร่ในแคตตาล็อก BA 222304 ที่มีความยาว 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_en": "What is the highest Match No., when Date is 2008-03-21, and when Time is 16:00?",
    "question_th": "หมายเลขแมตช์สูงสุดคือหมายเลขใด คือวันที่ 21-03-2551 และเมื่อเวลา 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_en": "What was the venue for runs 325/6?",
    "question_th": "สนามวิ่ง 325/6 สนามไหน?",
    "context": "CREATE TABLE table_name_12 (venue VARCHAR, runs VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_25 WHERE runs = \"310/9\"",
    "question_en": "What season were the runs 310/9?",
    "question_th": "ฤดูกาลใดที่วิ่ง 310/9?",
    "context": "CREATE TABLE table_name_25 (season VARCHAR, runs VARCHAR)"
  },
  {
    "answer": "SELECT runs FROM table_name_64 WHERE opponent = \"west indies\"",
    "question_en": "What were the runs for the opponent from the West Indies?",
    "question_th": "คู่ต่อสู้จากหมู่เกาะเวสต์อินดีสวิ่งอะไร?",
    "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_en": "Which Money ($) has a Score of 70-66-73-69=278?",
    "question_th": "เงิน ($) ใดมีคะแนน 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_en": "How many rounds did the match last with Sam Sotello as the opponent?",
    "question_th": "แมตช์นี้ผ่านไปกี่รอบโดยมี แซม โซเทลโล เป็นคู่ต่อสู้?",
    "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_en": "What is the record for the loss in UFC 62?",
    "question_th": "บันทึกการสูญเสียใน 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_en": "What is the part 4 with *heguldun *febungun in part 3?",
    "question_th": "ตอนที่ 4 ที่มี *heguldun *febungun ในตอนที่ 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_en": "What is the part 3 with *hegait in part 2?",
    "question_th": "ตอนที่ 3 ที่มี *hegait ในตอนที่ 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ą *stautaną\"",
    "question_en": "What is the part 4 with *hlaupaną *stautaną in part 1?",
    "question_th": "ตอนที่ 4 ที่มี *hlaupanón *stautanę ในตอนที่ 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ą *fanhaną\"",
    "question_en": "What is the verb meaning of *haldaną *fanhaną in part 1?",
    "question_th": "กริยาความหมายของ *haldanón *fanhană ในภาค 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_en": "Who is sezen aksu's producer?",
    "question_th": "โปรดิวเซอร์ของ sezen aksu คือใคร?",
    "context": "CREATE TABLE table_name_43 (producer_s_ VARCHAR, songwriter_s_ VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_72 WHERE songwriter_s_ = \"hadise açıkgöz, stefaan fernande, elio deepcore\"",
    "question_en": "Which Title has a Songwriter(s) of hadise açıkgöz, stefaan fernande, elio deepcore?",
    "question_th": "หัวข้อใดมีนักแต่งเพลงของ hadise açıkgöz, 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çıkgöz, yves jongen\"",
    "question_en": "Which Title has a Length of 3:32, and a Producer(s) of hadise açıkgöz, yves jongen?",
    "question_th": "ชื่อใดมีความยาว 3:32 และโปรดิวเซอร์ของ hadise açıkgöz, 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çıkgöz, yves jongen\" AND length = \"3:08\"",
    "question_en": "Which Producer(s) has a Track smaller than 8, and a Songwriter(s) of hadise açıkgöz, yves jongen, and a Length of 3:08?",
    "question_th": "โปรดิวเซอร์รายใดที่มีแทร็กเล็กกว่า 8 และนักแต่งเพลงของ hadise açıkgöz, yves jongen และความยาว 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_en": "What is track 6's title?",
    "question_th": "เพลงที่ 6 ชื่ออะไรคะ?",
    "context": "CREATE TABLE table_name_62 (title VARCHAR, track VARCHAR)"
  },
  {
    "answer": "SELECT company_name FROM table_name_31 WHERE hardware_model = \"nokia 700\"",
    "question_en": "What company makes the Nokia 700?",
    "question_th": "บริษัทใดที่ผลิต 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_en": "What is the accreditation level for the approved (awarded 05.12.12) date?",
    "question_th": "ระดับการรับรองสำหรับวันที่ได้รับการอนุมัติ (ได้รับรางวัล 05.12.12) คือเท่าใด",
    "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_en": "When did Samsung Electronics Co LTD make the GT-i9100?",
    "question_th": "Samsung Electronics Co LTD ผลิต 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_en": "When the Nokia corporation had an accreditation level of joyn, what was the accreditation type?",
    "question_th": "เมื่อบริษัท Nokia มีระดับการรับรอง Joyn การรับรองประเภทใด?",
    "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_en": "What is Round, when Record is \"4-1\"?",
    "question_th": "รอบคืออะไร เมื่อสถิติเป็น \"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_en": "What is Opponent, when Location is \"Tokyo , Japan\", when Method is \"Decision (unanimous)\", and when Record is \"4-1\"?",
    "question_th": "ฝ่ายตรงข้ามคืออะไร เมื่อตำแหน่งคือ \"โตเกียว ประเทศญี่ปุ่น\" เมื่อวิธีการคือ \"การตัดสินใจ (เป็นเอกฉันท์)\" และเมื่อบันทึกคือ \"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_en": "What is Method, when Opponent is \"Thiago Alves\"?",
    "question_th": "วิธีการคืออะไร ในเมื่อคู่ต่อสู้คือ “ติอาโก้ อัลเวส”?",
    "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_en": "What is Event, when Round is \"1\", when Location is \"Osaka , Japan\", and when Method is \"TKO (corner stoppage)\"?",
    "question_th": "เหตุการณ์คืออะไร เมื่อรอบเป็น \"1\" เมื่อสถานที่คือ \"โอซาก้า ประเทศญี่ปุ่น\" และเมื่อวิธีการเป็น \"TKO (หยุดเตะมุม)\"",
    "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_en": "What is Record, when Event is \"UFC 64\"?",
    "question_th": "Record คืออะไร เมื่อเหตุการณ์คือ \"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_en": "What is the Record for a game smaller than 24, Lundqvist was the decision, November less than 8, and opponent Was New York Islanders?",
    "question_th": "บันทึกสำหรับเกมที่เล็กกว่า 24 คืออะไร Lundqvist เป็นผู้ตัดสิน น้อยกว่า 8 พฤศจิกายน และคู่ต่อสู้คือชาวเกาะนิวยอร์ก?",
    "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_en": "What is the smallest game number with a record of 16-7-2?",
    "question_th": "หมายเลขเกมที่เล็กที่สุดที่มีสถิติ 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_en": "What is the Score of the game with a decision of Lundqvist, the November less than 28, and opponent was Boston Bruins?",
    "question_th": "สกอร์ของเกมเป็นอย่างไรบ้าง โดยการตัดสินใจของ ลุนด์ควิสต์ น.พ.ย. น้อยกว่า 28 สกอร์ และคู่ต่อสู้คือ บอสตัน บรูอินส์?",
    "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_en": "Where was the 2013 Eaff East Asian Cup Qualifier played?",
    "question_th": "การแข่งขันเอฟฟ์อีสต์เอเชียนคัพรอบคัดเลือก 2013 ลงเล่นที่ไหน?",
    "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_en": "What is the highest amount of points with a goal average larger than 4, less than 12 draws, and a goal of 63?",
    "question_th": "จำนวนคะแนนสูงสุดโดยมีเป้าหมายเฉลี่ยมากกว่า 4 เสมอน้อยกว่า 12 และประตู 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_en": "What is the lowest goal for a goal against 37 and less than 15 victories?",
    "question_th": "เป้าหมายต่ำสุดสำหรับประตูต่อ 37 และชัยชนะน้อยกว่า 15 คืออะไร?",
    "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_en": "How many goals on average are there for rank 3?",
    "question_th": "อันดับ 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_en": "What is the average goals against when there are more than 42 played?",
    "question_th": "ประตูเฉลี่ยต่อเมื่อมีผู้เล่นมากกว่า 42 ประตูเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_55 (goals_against INTEGER, played INTEGER)"
  },
  {
    "answer": "SELECT goal_difference FROM table_name_99 WHERE team = \"chorley\"",
    "question_en": "What is the goal difference for the team from Chorley?",
    "question_th": "ประตูที่แตกต่างของทีมจากชอร์ลีย์คืออะไร?",
    "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_en": "What is T8 Place Player Scott Hoch's Score?",
    "question_th": "คะแนนของผู้เล่น T8 Place Scott Hoch คืออะไร?",
    "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_en": "What is the Place of the Player with a Score of 67-76-74-67=284?",
    "question_th": "ผู้เล่นที่มีคะแนน 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_en": "What is the Money of the Player with a Score of 69-71-69-72=281?",
    "question_th": "เงินของผู้เล่นที่มีคะแนน 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àbregas\"",
    "question_en": "What is the highest Rank, when U-17 Goals is \"7\", and when Player is \"Cesc Fàbregas\"?",
    "question_th": "อันดับสูงสุดคือเมื่อ U-17 ประตูคือ \"7\" และเมื่อผู้เล่นคือ \"เชส ฟาเบรกาส\"?",
    "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_en": "What is the highest Rank, when U-17 Goals is \"9\"?",
    "question_th": "อันดับสูงสุดเมื่อ U-17 ประตูคือ \"9\" คืออะไร?",
    "context": "CREATE TABLE table_name_49 (rank INTEGER, u_17_goals VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_50 WHERE result = \"draw\"",
    "question_en": "What Competition has a Result of Draw?",
    "question_th": "การแข่งขันใดมีผลเสมอ?",
    "context": "CREATE TABLE table_name_50 (competition VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_85 WHERE score = \"1–2\"",
    "question_en": "What is the Date of the Competition with a Score of 1–2?",
    "question_th": "การแข่งขันวันที่เท่าไหร่ด้วยคะแนน 1–2?",
    "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_en": "What New Delhi Competition has a Result of Loss?",
    "question_th": "การแข่งขันนิวเดลีรายการใดที่มีผลขาดทุน?",
    "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_en": "How many rounds in the event when record is 1-5?",
    "question_th": "แข่งขันกี่รอบเมื่อสถิติ 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_en": "Who is the opponent when there is a win in round greater than 1 and the record is 42-27-10?",
    "question_th": "คู่ต่อสู้คือใครเมื่อชนะในรอบที่มากกว่า 1 และสถิติ 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_en": "Who is team E when Jason Manning is Team F?",
    "question_th": "ทีม E คือใครเมื่อ Jason Manning คือทีม 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_en": "Who is Team A when wilma hofschneider-david is team C?",
    "question_th": "ทีม A คือใคร ในเมื่อ วิลมา ฮอฟชไนเดอร์-เดวิด คือทีม 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_en": "Who is team f when Aida Gagaring is team A?",
    "question_th": "ใครคือทีม f ในเมื่อ Aida Gagaring คือทีม 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_en": "Who is Team D when Carmen Ada is team C?",
    "question_th": "ทีม D คือใคร ในเมื่อ Carmen Ada คือทีม 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_en": "Who is team e when Aaron Solloway is team D?",
    "question_th": "ทีม e คือใครเมื่อ Aaron Solloway เป็นทีม 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_en": "Who is team c when dhez javier is team e?",
    "question_th": "ทีม c คือใครเมื่อ dhez javier คือทีม 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_en": "What was the country of the player at +5?",
    "question_th": "ผู้เล่นที่ +5 คือประเทศอะไร?",
    "context": "CREATE TABLE table_name_68 (country VARCHAR, to_par VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_31 WHERE to_par = \"+4\"",
    "question_en": "Which player finished at +4?",
    "question_th": "ผู้เล่นคนไหนจบที่ +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_en": "What was Bert Yancey's finishing score to par?",
    "question_th": "คะแนนสุดท้ายของ Bert Yancey คืออะไร?",
    "context": "CREATE TABLE table_name_21 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT bachelorette FROM table_name_20 WHERE winner = \"ian mckee\"",
    "question_en": "Who was the bachelorette of the season where ian mckee was the winner?",
    "question_th": "ใครคือสาวโสดในฤดูกาลที่เอียน แม็คกีเป็นผู้ชนะ",
    "context": "CREATE TABLE table_name_20 (bachelorette VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT MIN(season) FROM table_name_38 WHERE profile = \"advertising account manager\"",
    "question_en": "What is the earliest season with an advertising account manager profile?",
    "question_th": "ฤดูกาลแรกสุดที่มีโปรไฟล์ผู้จัดการบัญชีโฆษณาคืออะไร?",
    "context": "CREATE TABLE table_name_38 (season INTEGER, profile VARCHAR)"
  },
  {
    "answer": "SELECT bachelorette FROM table_name_37 WHERE premiered = \"may 24, 2010\"",
    "question_en": "Who is the bachelorette of the season that premiered on May 24, 2010?",
    "question_th": "ใครคือสาวโสดแห่งฤดูกาลที่เปิดตัวเมื่อวันที่ 24 พฤษภาคม 2553",
    "context": "CREATE TABLE table_name_37 (bachelorette VARCHAR, premiered VARCHAR)"
  },
  {
    "answer": "SELECT bachelorette FROM table_name_25 WHERE season > 8",
    "question_en": "Who is the bachelorette after season 8?",
    "question_th": "ใครคือสาวโสดหลังจากซีซั่น 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_en": "When the conference is west coast and the number of bids are at 2, what's the percentage of games won?",
    "question_th": "เมื่อการประชุมอยู่ฝั่งตะวันตกและมีผู้เสนอราคาอยู่ที่ 2 เกมที่ชนะจะเป็นจำนวนเท่าใด",
    "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_en": "If a team had a percentage of games won recorded as .429, what Championship Game was played?",
    "question_th": "หากทีมมีเปอร์เซ็นต์ของเกมที่ชนะบันทึกเป็น .429 แชมป์เปี้ยนชิพเกมใดที่เล่น",
    "context": "CREATE TABLE table_name_82 (championship_game VARCHAR, win__percentage VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_94 WHERE week = 3",
    "question_en": "What was the attendance for the game in Week 3?",
    "question_th": "ผู้เข้าร่วมเกมในสัปดาห์ที่ 3 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_94 (attendance VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_43 WHERE opponent = \"green bay packers\"",
    "question_en": "On what date was the opponent the Green Bay Packers?",
    "question_th": "คู่ต่อสู้ของกรีนเบย์แพ็กเกอร์คือวันไหน?",
    "context": "CREATE TABLE table_name_43 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT term_start FROM table_name_61 WHERE name = \"ismail qemali bej\"",
    "question_en": "When did Ismail Qemali Bej's term start?",
    "question_th": "อิสมาอิล เคมาลี เบจ เข้ารับตำแหน่งเมื่อใด?",
    "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_en": "When did Fejzi Bej Alizoti's term end?",
    "question_th": "การดำรงตำแหน่งของ Fejzi Bej Alizoti สิ้นสุดเมื่อใด",
    "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_en": "When did the term end for the person who started their term on 28 November 1912?",
    "question_th": "บุคคลที่เริ่มวาระในวันที่ 28 พฤศจิกายน พ.ศ. 2455 สิ้นสุดวาระเมื่อใด",
    "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_en": "When did Fejzi Bej Alizoti's term start?",
    "question_th": "เฟจซี เบจ อลิโซติ เข้ารับตำแหน่งเมื่อใด?",
    "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_en": "What is the sum of Points 1, when Team is \"Gainsborough Trinity\", and when Played is greater than 46?",
    "question_th": "ผลรวมของแต้ม 1 เมื่อทีมคือ \"Gainsborough Trinity\" และเมื่อเล่นมากกว่า 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_en": "What is the total number of Points 1, when Lost is less than 20, and when Goals For is greater than 92?",
    "question_th": "จำนวนคะแนนรวม 1 คือเท่าใด เมื่อแพ้น้อยกว่า 20 และเมื่อเป้าหมายสำหรับมากกว่า 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_en": "What is the total number of Position, when Played is less than 46?",
    "question_th": "จำนวนตำแหน่งทั้งหมดเมื่อเล่นน้อยกว่า 46 คือเท่าไร?",
    "context": "CREATE TABLE table_name_51 (position VARCHAR, played INTEGER)"
  },
  {
    "answer": "SELECT location FROM table_name_4 WHERE frequency = \"102.5 fm\"",
    "question_en": "Which Location has a Frequency of 102.5 fm?",
    "question_th": "สถานที่ใดมีความถี่ 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_en": "Which Call sign has a Frequency of 102.5 fm?",
    "question_th": "Call sign ใดมีความถี่ 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_en": "Which Owner has a Name / Format of 105.3 kool fm - hot adult contemporary?",
    "question_th": "เจ้าของคนไหนมีชื่อ/รูปแบบ 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_en": "Which Location has a Call sign of cjtw-fm?",
    "question_th": "ตำแหน่งไหนมีสัญญาณเรียก 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_en": "Which Frequency has an Owner of rogers communications rogers radio, and a Call sign of cikz-fm?",
    "question_th": "ความถี่ใดที่มีเจ้าของวิทยุสื่อสาร rogers และสัญญาณเรียกขานของ 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_en": "What is the lowest laps that Vittorio Iannuzzo completed?",
    "question_th": "Vittorio Iannuzzo จบรอบต่ำสุดที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_1 (laps INTEGER, rider VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_52 WHERE laps = 14",
    "question_en": "What is the total time that it took for the driver to finish 14 laps?",
    "question_th": "นักแข่งใช้เวลาทั้งหมดเท่าไรจึงจะจบ 14 รอบ?",
    "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égis laconi\"",
    "question_en": "What is the Grid of Régis Laconi's bike that is a Kawasaki zx-10r?",
    "question_th": "จักรยานของ Grid of Régis Laconi ที่เป็น 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_en": "What is the name of the bike that has a grid number smaller than 9 with a time of +7.764?",
    "question_th": "จักรยานยนต์ที่มีหมายเลขกริดน้อยกว่า 9 โดยมีเวลา +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_en": "Who was the French Elector Elevated on 1288, May 16?",
    "question_th": "ใครคือผู้มีสิทธิเลือกตั้งชาวฝรั่งเศสที่ได้รับการยกระดับเมื่อวันที่ 1288 วันที่ 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_en": "What Elector has the Title of Titulus S. Cecilia?",
    "question_th": "ผู้มีสิทธิเลือกตั้งคนใดที่มีตำแหน่งเป็น 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_en": "What is the Nationality of the Deacon of S. Maria in Via Lata?",
    "question_th": "สัญชาติของสังฆานุกรแห่งเอส. มาเรียในเวียลาตาคืออะไร?",
    "context": "CREATE TABLE table_name_5 (nationality VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_16 WHERE elector = \"giovanni boccamazza\"",
    "question_en": "What is the Title of Elector Giovanni Boccamazza?",
    "question_th": "ตำแหน่งของผู้มีสิทธิเลือกตั้ง 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_en": "What was the record for the date above 27 and an opponent of the St. Louis Blues?",
    "question_th": "สถิติวันที่ 27 เหนือ และคู่ต่อสู้ของ เซนต์หลุยส์ บลูส์ เป็นอย่างไรบ้าง?",
    "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_en": "Who was the opponent for a game over 31 and a date over 30?",
    "question_th": "ใครคือคู่ต่อสู้ในเกมที่อายุมากกว่า 31 ปีและเดทที่อายุมากกว่า 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_en": "What date did the song by jennifer lopez get issued?",
    "question_th": "เพลงของ jennifer lopez ออกวันไหนคะ?",
    "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_en": "What is the total number of gold medals when there were 2 bronze medals, a total of more than 3 medals and ranked 61?",
    "question_th": "เหรียญทองเมื่อได้ 2 เหรียญทองแดง รวมเกิน 3 เหรียญ และอันดับที่ 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_en": "What is the average total number of medals when there were 4 bronze, more than 2 silver, and less than 7 gold medals?",
    "question_th": "จำนวนเหรียญทั้งหมดโดยเฉลี่ยเมื่อมี 4 เหรียญทองแดง มากกว่า 2 เหรียญเงิน และน้อยกว่า 7 เหรียญทอง เป็นเท่าใด",
    "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_en": "What is the lowest episode number with an original airdate on 8 June 2008?",
    "question_th": "หมายเลขตอนต่ำสุดที่ออกอากาศครั้งแรกเมื่อวันที่ 8 มิถุนายน พ.ศ. 2551 คือเท่าใด",
    "context": "CREATE TABLE table_name_31 (episode INTEGER, original_airdate VARCHAR)"
  },
  {
    "answer": "SELECT no_4 FROM table_name_38 WHERE no_9 = \"natalie\"",
    "question_en": "Who was number 4 when Natalie was number 9?",
    "question_th": "ใครคือหมายเลข 4 เมื่อนาตาลีอยู่หมายเลข 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_en": "Who was number 7 when Olivia was number 5 and Emma was number 2?",
    "question_th": "ใครคือหมายเลข 7 เมื่อโอลิเวียคือหมายเลข 5 และเอ็มมาคือหมายเลข 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_en": "When Chloe was number 8, Olivia was number 2, Emma was number 1, and Ava was number 4, who was number 5?",
    "question_th": "ตอนที่โคลอี้อยู่หมายเลข 8 โอลิเวียคือหมายเลข 2 เอ็มมาคือหมายเลข 1 และเอวาคือหมายเลข 4 ใครคือหมายเลข 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_en": "What platform is the company Surfstats Software?",
    "question_th": "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_en": "What is the USD price for Tealeaf?",
    "question_th": "Tealeaf ราคา USD เท่าไหร่?",
    "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_en": "What is the platform for the latest release 5.0.3?",
    "question_th": "แพลตฟอร์มสำหรับรุ่นล่าสุด 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_en": "What is the platform for the latest release 8.4?",
    "question_th": "แพลตฟอร์มสำหรับรุ่นล่าสุด 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_en": "WHAT IS THE TAMIL WITH A SUKRAVAR ?",
    "question_th": "ภาษาทมิฬกับ SUKRAVAR คืออะไร?",
    "context": "CREATE TABLE table_name_89 (tamil VARCHAR, hindi VARCHAR)"
  },
  {
    "answer": "SELECT hindi FROM table_name_36 WHERE kannada = \"shanivara\"",
    "question_en": "WHAT HINDI HAS A KANNADA OF SHANIVARA?",
    "question_th": "ภาษาฮินดีมีภาษากันนาดาของ SHANIVARA อะไร?",
    "context": "CREATE TABLE table_name_36 (hindi VARCHAR, kannada VARCHAR)"
  },
  {
    "answer": "SELECT malayalam FROM table_name_61 WHERE മലയാളം = \"വെള്ളി\"",
    "question_en": "WHAT IS THE MALAYAM WITH മലയാളം of വെള്ളി?",
    "question_th": "มาลายัมกับമലയാളംของവെള്ളിคืออะไร?",
    "context": "CREATE TABLE table_name_61 (malayalam VARCHAR, മലയാളം VARCHAR)"
  },
  {
    "answer": "SELECT tamil FROM table_name_91 WHERE kannada = \"budhavara\"",
    "question_en": "WHAT TAMIL HAS Kannada of budhavara?",
    "question_th": "ทมิฬมีภาษากันนาดาแห่งพุทธาวาราอะไร?",
    "context": "CREATE TABLE table_name_91 (tamil VARCHAR, kannada VARCHAR)"
  },
  {
    "answer": "SELECT hindi FROM table_name_37 WHERE tamil = \"vyazhan\"",
    "question_en": "WHAT HINDI HAS Tamil of vyazhan?",
    "question_th": "ภาษาฮินดีมีภาษาทมิฬของ vyazhan อะไร?",
    "context": "CREATE TABLE table_name_37 (hindi VARCHAR, tamil VARCHAR)"
  },
  {
    "answer": "SELECT hindi FROM table_name_54 WHERE kannada = \"shukravara\"",
    "question_en": "WHAT HINDI HAS Kannada of shukravara?",
    "question_th": "ภาษาฮินดีมีภาษากันนาดาของ shukravara อะไร?",
    "context": "CREATE TABLE table_name_54 (hindi VARCHAR, kannada VARCHAR)"
  },
  {
    "answer": "SELECT MIN(assists) FROM table_name_24 WHERE games_played > 5",
    "question_en": "What is the lowest amount of assists for more than 5 games?",
    "question_th": "จำนวนแอสซิสต์ต่ำสุดสำหรับมากกว่า 5 เกมคือเท่าใด?",
    "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_en": "What is the highest amount of points with less than 5 assists and less than 2 goals?",
    "question_th": "จำนวนคะแนนสูงสุดที่มีน้อยกว่า 5 แอสซิสต์และน้อยกว่า 2 ประตูคือเท่าใด",
    "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_en": "How many points on average are there for less than 5 games played?",
    "question_th": "การเล่นน้อยกว่า 5 เกมโดยเฉลี่ยมีกี่แต้ม?",
    "context": "CREATE TABLE table_name_84 (points INTEGER, games_played INTEGER)"
  },
  {
    "answer": "SELECT opponent FROM table_name_70 WHERE result = \"w 17-0\"",
    "question_en": "Which opponent has w 17-0 as the result?",
    "question_th": "ผลการแข่งขันคู่ต่อสู้คนใดมี w 17-0?",
    "context": "CREATE TABLE table_name_70 (opponent VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_20 WHERE airport = \"narita international airport\"",
    "question_en": "Which country has the Narita International Airport?",
    "question_th": "ประเทศใดมีสนามบินนานาชาตินาริตะ",
    "context": "CREATE TABLE table_name_20 (country VARCHAR, airport VARCHAR)"
  },
  {
    "answer": "SELECT iata FROM table_name_52 WHERE icao = \"wipp\"",
    "question_en": "What is the IATA when the ICAO is wipp?",
    "question_th": "IATA คืออะไรเมื่อ ICAO เป็น wipp?",
    "context": "CREATE TABLE table_name_52 (iata VARCHAR, icao VARCHAR)"
  },
  {
    "answer": "SELECT airport FROM table_name_61 WHERE icao = \"rpvi\"",
    "question_en": "Which airport's ICAO is rpvi?",
    "question_th": "ICAO ของสนามบินใดคือ rpvi",
    "context": "CREATE TABLE table_name_61 (airport VARCHAR, icao VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_72 WHERE iata = \"ika\"",
    "question_en": "Which country's IATA is ika?",
    "question_th": "IATA ของประเทศใดคือ ika?",
    "context": "CREATE TABLE table_name_72 (country VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT icao FROM table_name_52 WHERE airport = \"yangon international airport\"",
    "question_en": "What is the ICAO for the Yangon International Airport?",
    "question_th": "ICAO สำหรับสนามบินนานาชาติย่างกุ้งคืออะไร?",
    "context": "CREATE TABLE table_name_52 (icao VARCHAR, airport VARCHAR)"
  },
  {
    "answer": "SELECT icao FROM table_name_79 WHERE iata = \"tgg\"",
    "question_en": "What is the ICAO when the IATA is tgg?",
    "question_th": "ICAO คืออะไร เมื่อ IATA เป็น 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_en": "On what date did Universitario win the Torneo Apertura round after 2003 at Estadio Alejandro Villanueva?",
    "question_th": "Universitario ชนะ Torneo Apertura รอบหลังปี 2003 ที่ 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_en": "What is Director, when Primary Language(s) is \"Azerbaijani\", and when Original Title is \"Buta\"?",
    "question_th": "Director คืออะไร เมื่อภาษาหลักคือ \"อาเซอร์ไบจัน\" และเมื่อชื่อดั้งเดิมคือ \"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_en": "What is Film Title Used In Nomination, when Primary Language(s) is \"Azerbaijani, Russian\"?",
    "question_th": "ชื่อภาพยนตร์ที่ใช้ในการเสนอชื่อคืออะไร เมื่อภาษาหลักคือ \"อาเซอร์ไบจัน, รัสเซีย\"",
    "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_en": "What is Result, when Original Title is \"Qala\"?",
    "question_th": "ผลลัพธ์คืออะไร เมื่อชื่อดั้งเดิมคือ \"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_en": "What is Primary Language(s), when Director is \"Ilgar Safat Category:Articles With hCards\"?",
    "question_th": "ภาษาหลักคืออะไร เมื่อผู้อำนวยการคือ \"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_en": "What is Year (Ceremony), when Director is \"Farid Gumbatov Category:Articles With hCards\"?",
    "question_th": "ปี (พิธี) คืออะไรเมื่อผู้อำนวยการคือ \"หมวดหมู่ Farid Gumbatov: บทความพร้อม hCards\"?",
    "context": "CREATE TABLE table_name_51 (year__ceremony_ VARCHAR, director VARCHAR)"
  },
  {
    "answer": "SELECT director FROM table_name_64 WHERE original_title = \"sahə\"",
    "question_en": "What is Director, when Original Title is \"Sahə\"?",
    "question_th": "ผู้อำนวยการคืออะไร เมื่อชื่อดั้งเดิมคือ \"Sahə\"?",
    "context": "CREATE TABLE table_name_64 (director VARCHAR, original_title VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_53 WHERE decision = \"conklin\"",
    "question_en": "Who was the Home team that had a decider of Conklin?",
    "question_th": "ทีมเหย้าคือใครที่เป็นผู้ตัดสินคอนคลิน?",
    "context": "CREATE TABLE table_name_53 (home VARCHAR, decision VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_99 WHERE game = 71",
    "question_en": "Game 71 was played against what team?",
    "question_th": "เกมที่ 71 เล่นกับทีมใด?",
    "context": "CREATE TABLE table_name_99 (opponent VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT MAX(game) FROM table_name_40 WHERE opponent = \"new york knickerbockers\"",
    "question_en": "What is the maximum game that was played against the New York Knickerbockers?",
    "question_th": "เกมสูงสุดที่เล่นกับ 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_en": "What was the number of game that was played on March 19?",
    "question_th": "วันที่ 19 มีนาคม ลงเล่นไปกี่เกม?",
    "context": "CREATE TABLE table_name_53 (game VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT AVG(rank) FROM table_name_24 WHERE points > 12",
    "question_en": "What is the average rank for more than 12 points?",
    "question_th": "อันดับเฉลี่ยมากกว่า 12 คะแนนอยู่ที่เท่าไร?",
    "context": "CREATE TABLE table_name_24 (rank INTEGER, points INTEGER)"
  },
  {
    "answer": "SELECT SUM(rank) FROM table_name_47 WHERE played < 6",
    "question_en": "What is the rank for less than 6 plays?",
    "question_th": "อันดับสำหรับการเล่นน้อยกว่า 6 ครั้งคืออะไร?",
    "context": "CREATE TABLE table_name_47 (rank INTEGER, played INTEGER)"
  },
  {
    "answer": "SELECT nationality FROM table_name_94 WHERE round = 3 AND college = \"mercer\"",
    "question_en": "For the draft pick from round 3 out of Mercer College what is the nationality?",
    "question_th": "การคัดเลือกดราฟต์รอบ 3 จาก Mercer College สัญชาติอะไร?",
    "context": "CREATE TABLE table_name_94 (nationality VARCHAR, round VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_44 WHERE college = \"oral roberts\"",
    "question_en": "Who was the draft pick that went to college at Oral Roberts?",
    "question_th": "ใครคือร่างตัวเลือกที่ไปเรียนที่วิทยาลัยที่ 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_en": "What is the smallest point total when the grid is larger than 5 and the time/retired is fire?",
    "question_th": "จุดที่น้อยที่สุดรวมเมื่อตารางมีขนาดใหญ่กว่า 5 และเวลา/เลิกใช้คือเท่าใด",
    "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_en": "When Nelson Philippe drove with a grid larger than 16, what was the timre/retired?",
    "question_th": "เมื่อ Nelson Philippe ขับรถด้วยกริดที่ใหญ่กว่า 16 ช่วงเวลา/เกษียณคือเท่าใด",
    "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_en": "What was the time of the race that was on a grid smaller than 9 with jeremy mcwilliams as the rider doing 21 laps?",
    "question_th": "ช่วงเวลาของการแข่งขันที่อยู่บนกริดน้อยกว่า 9 โดยมีเจเรมี แมควิลเลียมส์เป็นนักบิดทำ 21 รอบคือเมื่อใด",
    "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_en": "What is the lowest grid number that a race took place doing more than 21 laps?",
    "question_th": "หมายเลขกริดต่ำสุดที่การแข่งขันเกิดขึ้นมากกว่า 21 รอบคือข้อใด",
    "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_en": "What is the total number of grids where there were races that had a time of 34:22.335?",
    "question_th": "จำนวนกริดทั้งหมดที่มีการแข่งขันซึ่งมีเวลา 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_en": "Which rank has final with 5:18.85?",
    "question_th": "อันดับไหนเข้ารอบด้วยเวลา 5:18.85?",
    "context": "CREATE TABLE table_name_96 (rank VARCHAR, final VARCHAR)"
  },
  {
    "answer": "SELECT final FROM table_name_59 WHERE rank = \"10\"",
    "question_en": "Which final has rank of 10?",
    "question_th": "สุดท้ายไหนมีอันดับ 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_en": "Which final has a run of 1:19.49?",
    "question_th": "รอบชิงชนะเลิศรายการไหนใช้เวลา 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_en": "Which run 2 with final of 5:24.47?",
    "question_th": "รอบไหน 2 รอบสุดท้ายด้วยเวลา 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_en": "Which team has run 1 of 1:17.44?",
    "question_th": "ทีมไหนวิ่งได้ 1 จาก 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_en": "Which team has run 3 of 1:20.77?",
    "question_th": "ทีมไหนวิ่งได้ 3 นาที 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_en": "Who was the home team when Manchester City was the away team?",
    "question_th": "เมื่อแมนเชสเตอร์ซิตี้เป็นทีมเยือนคือใคร?",
    "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_en": "What was the score when the home team was Stockport County?",
    "question_th": "เมื่อเจ้าบ้านเป็นสต็อคพอร์ทเคาน์ตี้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_73 (score VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT tie_no FROM table_name_40 WHERE away_team = \"barnsley\"",
    "question_en": "What is the Tie Number when Barnsley was the away team?",
    "question_th": "หมายเลขเสมอเมื่อบาร์นสลีย์เป็นทีมเยือนคืออะไร?",
    "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_en": "What was the score of the game that took place on october 22, 1976?",
    "question_th": "คะแนนของเกมที่เกิดขึ้นเมื่อวันที่ 22 ตุลาคม พ.ศ. 2519 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_53 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_76 WHERE record = \"2-2\"",
    "question_en": "What was the score of the game where the record was 2-2?",
    "question_th": "สกอร์ของเกมที่สถิติคือ 2-2 คืออะไร?",
    "context": "CREATE TABLE table_name_76 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_50 WHERE record = \"2-4\"",
    "question_en": "Who was the home team in the game with a record of 2-4?",
    "question_th": "เจ้าบ้านในเกมด้วยสถิติ 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_en": "What was the race for the world championship formula 1 at a venue of hungaroring?",
    "question_th": "การแข่งขันชิงแชมป์โลก Formula 1 ที่สนามแห่งความหิวโหยเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_4 (race VARCHAR, notes VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_20 WHERE date = \"october 7\"",
    "question_en": "Who is the winner for the match on October 7?",
    "question_th": "ใครคือผู้ชนะการแข่งขันวันที่ 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_en": "What is the date of the race for the new zealand grand prix?",
    "question_th": "การแข่งขัน 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_en": "Who was the winner for the world championship formula 1 at the venue, circuit de monaco?",
    "question_th": "ใครคือผู้ชนะการแข่งขันชิงแชมป์โลกสูตร 1 ที่สนามเซอร์กิต เดอ โมนาโก?",
    "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_en": "What is Result, when Opponent is New England Patriots?",
    "question_th": "ผลลัพธ์คืออะไร เมื่อฝ่ายตรงข้ามคือ 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_en": "What competition took place on 28/04/1906?",
    "question_th": "การแข่งขันใดเกิดขึ้นในวันที่ 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_en": "Who were the runners-up in the game that was won by Cork City F.C. on 10/05/1998?",
    "question_th": "ใครคือรองชนะเลิศในเกมที่ Cork City FC ชนะเมื่อวันที่ 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_en": "What was the score in the game that was won by Sligo Rovers F.C.?",
    "question_th": "คะแนนในเกมที่สลิโก โรเวอร์ส เอฟซี ชนะคือเท่าไร?",
    "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_en": "What date did the Fai Cup with Derry City F.C. as runners-up take place?",
    "question_th": "ศึกฟายคัพกับเดอร์รี่ ซิตี้ เอฟซี เป็นรองแชมป์เกิดขึ้นวันไหน?",
    "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_en": "What is the Runner-up on April 11?",
    "question_th": "รองชนะเลิศวันที่ 11 เมษายน คืออะไร?",
    "context": "CREATE TABLE table_name_36 (runner_up VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_12 WHERE week = \"may 2\"",
    "question_en": "What was the Tournament on May 2?",
    "question_th": "การแข่งขันในวันที่ 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_en": "What is Left Office, when Took Office is \"11 June 2001\", and when Minister is \"Mirko Tremaglia\"?",
    "question_th": "ตำแหน่งซ้ายคืออะไร เมื่อเข้ารับตำแหน่งคือ \"11 มิถุนายน พ.ศ. 2544\" และเมื่อรัฐมนตรีคือ \"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_en": "What is Minister, when Party is \"AN\"?",
    "question_th": "รัฐมนตรีคืออะไร ในเมื่อพรรคเป็น \"อัน\"?",
    "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_en": "What is Left Office, when Party is \"UDC\", and when Took Office is \"11 June 2001\"?",
    "question_th": "Left Office คืออะไร เมื่อฝ่ายเป็น \"UDC\" และเมื่อเข้ารับตำแหน่งคือ \"11 มิถุนายน พ.ศ. 2544\"",
    "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_en": "What is Party, when Left Office is \"23 April 2005\", when Portfolio is \"Minister of Reforms and Devolutions\"?",
    "question_th": "พรรคคืออะไร เมื่อออกจากตำแหน่งคือ \"23 เมษายน 2548\" เมื่อพอร์ตโฟลิโอเป็น \"รัฐมนตรีกระทรวงการปฏิรูปและการเปลี่ยนแปลง\"",
    "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_en": "What is Minister, when Portfolio is \"Minister of Pubblic Administration\", and when Took Office is \"14 November 2002\"?",
    "question_th": "รัฐมนตรีคืออะไร เมื่อพอร์ตโฟลิโอเป็น \"รัฐมนตรีบริหารสาธารณะ\" และเมื่อเข้ารับตำแหน่งคือ \"14 พฤศจิกายน 2545\"",
    "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_en": "What is Party, when Minister is \"Franco Frattini\"?",
    "question_th": "พรรคคืออะไร ในเมื่อรัฐมนตรีคือ \"ฟรังโก ฟรัตตินี\"?",
    "context": "CREATE TABLE table_name_55 (party VARCHAR, minister VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_89 WHERE opponent = \"ryan bow\"",
    "question_en": "What event had the opponent Ryan Bow?",
    "question_th": "คู่ต่อสู้ Ryan Bow มีเหตุการณ์อะไรเกิดขึ้น?",
    "context": "CREATE TABLE table_name_89 (event VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_56 WHERE opponent = \"hiroyuki abe\"",
    "question_en": "What location had the opponent Hiroyuki Abe?",
    "question_th": "ฝ่ายตรงข้ามฮิโรยูกิ อาเบะ มีตำแหน่งใด?",
    "context": "CREATE TABLE table_name_56 (location VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT 2 AS nd_leg FROM table_name_29 WHERE year = 2004",
    "question_en": "What was the 2nd leg for 2004?",
    "question_th": "เลกที่ 2 ของปี 2004 คืออะไร?",
    "context": "CREATE TABLE table_name_29 (year VARCHAR)"
  },
  {
    "answer": "SELECT 2 AS nd_leg FROM table_name_92 WHERE winner = \"san pedro\"",
    "question_en": "What is the 2nd leg when San Pedro was the winner?",
    "question_th": "เลกที่ 2 เมื่อซานเปโดรเป็นผู้ชนะคืออะไร?",
    "context": "CREATE TABLE table_name_92 (winner VARCHAR)"
  },
  {
    "answer": "SELECT rate FROM table_name_9 WHERE goals > 22",
    "question_en": "What was the rate when there were more than 22 goals?",
    "question_th": "อัตราเท่าไหร่เมื่อทำได้มากกว่า 22 ประตู?",
    "context": "CREATE TABLE table_name_9 (rate VARCHAR, goals INTEGER)"
  },
  {
    "answer": "SELECT MAX(against) FROM table_name_44 WHERE opposing_team = \"fiji\"",
    "question_en": "What largest against has the opposing team of fiji?",
    "question_th": "อะไรที่ใหญ่ที่สุดกับทีมตรงข้ามของฟิจิ?",
    "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_en": "Which Position has a Competition of european race walking cup?",
    "question_th": "ตำแหน่งใดมีการแข่งขัน 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_en": "Which Venue has a Competition of european championships, and a Position of 7th?",
    "question_th": "สถานที่ใดที่มีการแข่งขันชิงแชมป์ยุโรป และอันดับที่ 7",
    "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_en": "Where was the world race walking cup held before 2001?",
    "question_th": "World Race Walking Cup จัดขึ้นที่ไหนก่อนปี 2544?",
    "context": "CREATE TABLE table_name_49 (venue VARCHAR, year VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_66 WHERE res = \"marian sandu\"",
    "question_en": "WHAT COMPETITION HAS MARIAN SANDU?",
    "question_th": "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_en": "WHAT SCORE WAS ON 1999-05-31?",
    "question_th": "คะแนนเมื่อวันที่ 31-05-1999 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_52 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_47 WHERE score = \"5:5\"",
    "question_en": "WHAT OPPONENT HAD A SCORE OF 5:5?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีคะแนน 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_en": "What Competition on August 3, 2005 had a Score of 5-0?",
    "question_th": "การแข่งขันรายการใดเมื่อวันที่ 3 สิงหาคม พ.ศ. 2548 มีสกอร์ 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_en": "What was the Venue of the 2009 Gulf Cup of Nations?",
    "question_th": "สถานที่จัดการแข่งขัน Gulf Cup of Nations 2009 คืออะไร?",
    "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_en": "What Venue on October 27, 2005 had a Score of 5-0?",
    "question_th": "สถานที่ใดในวันที่ 27 ตุลาคม 2548 มีคะแนน 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_en": "What is the Result of the Friendly Competition on October 27, 2005 with a Score of 5-0?",
    "question_th": "ผลการแข่งขันกระชับมิตรเมื่อวันที่ 27 ตุลาคม 2548 ด้วยสกอร์ 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_en": "Can you tell me the total number of React that has the Lane of 5?",
    "question_th": "คุณช่วยบอกจำนวน React ทั้งหมดที่มี Lane 5 หน่อยได้ไหม?",
    "context": "CREATE TABLE table_name_13 (react VARCHAR, lane VARCHAR)"
  },
  {
    "answer": "SELECT MIN(react) FROM table_name_50 WHERE lane = 5",
    "question_en": "Can you tell me the lowest React that has the Lane of 5?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่า React ต่ำสุดที่มี Lane 5 คืออะไร?",
    "context": "CREATE TABLE table_name_50 (react INTEGER, lane VARCHAR)"
  },
  {
    "answer": "SELECT winning_score FROM table_name_39 WHERE margin = \"3 strokes\"",
    "question_en": "What is the winning score of the match with a margin of 3 strokes?",
    "question_th": "คะแนนชนะของแมตช์นี้โดยมีมาร์จิ้น 3 สโตรกเป็นเท่าใด?",
    "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_en": "How many years was there a peter jackson classic?",
    "question_th": "ปีเตอร์ แจ็คสัน คลาสสิกมีมากี่ปีแล้ว?",
    "context": "CREATE TABLE table_name_64 (year VARCHAR, championship VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_36 WHERE championship = \"peter jackson classic\"",
    "question_en": "Which year was the peter jackson classic?",
    "question_th": "ปีเตอร์ แจ็คสัน คลาสสิกคือปีไหน?",
    "context": "CREATE TABLE table_name_36 (year VARCHAR, championship VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_37 WHERE visitor = \"toronto\"",
    "question_en": "What is Date, when Visitor is Toronto?",
    "question_th": "วันที่คือเมื่อผู้เยี่ยมชมคือโตรอนโต?",
    "context": "CREATE TABLE table_name_37 (date VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_16 WHERE date = \"november 23\"",
    "question_en": "What is Record, when Date is November 23?",
    "question_th": "Record คืออะไร เมื่อเป็นวันที่ 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_en": "What is Visitor, when Home is Philadelphia, and when Date is November 18?",
    "question_th": "ผู้เยี่ยมชมคืออะไร เมื่อบ้านคือฟิลาเดลเฟีย และวันที่คือวันที่ 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_en": "What is the average Attendance, when Visitor is Toronto?",
    "question_th": "ผู้เข้าร่วมโดยเฉลี่ยคือเท่าใดเมื่อผู้เยี่ยมชมคือโตรอนโต?",
    "context": "CREATE TABLE table_name_71 (attendance INTEGER, visitor VARCHAR)"
  },
  {
    "answer": "SELECT AVG(year) FROM table_name_91 WHERE rank < 3",
    "question_en": "What's the average year with a rank less than 3?",
    "question_th": "ปีเฉลี่ยที่มีอันดับน้อยกว่า 3 คือเท่าไร?",
    "context": "CREATE TABLE table_name_91 (year INTEGER, rank INTEGER)"
  },
  {
    "answer": "SELECT country FROM table_name_46 WHERE year = 2002",
    "question_en": "What country got accolades in 2002?",
    "question_th": "ประเทศใดได้รับรางวัลในปี 2545?",
    "context": "CREATE TABLE table_name_46 (country VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT accolade FROM table_name_23 WHERE rank = 497",
    "question_en": "What's the accolade for the rank of 497?",
    "question_th": "รางวัลสำหรับอันดับ 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_en": "What's the average year for the accolade 100 greatest singles of all time?",
    "question_th": "ปีเฉลี่ยของรางวัล 100 ซิงเกิลที่ยิ่งใหญ่ที่สุดตลอดกาลคือเท่าไร?",
    "context": "CREATE TABLE table_name_57 (year INTEGER, accolade VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_name_45 WHERE team = \"philadelphia\"",
    "question_en": "What was the attendance during the game against Philadelphia?",
    "question_th": "ผู้เข้าชมระหว่างเกมกับฟิลาเดลเฟียมีอะไรบ้าง?",
    "context": "CREATE TABLE table_name_45 (location_attendance VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT nfl_team FROM table_name_33 WHERE college = \"washington\"",
    "question_en": "Which NFL team has a player that came from a college in Washington?",
    "question_th": "ทีม NFL ใดมีผู้เล่นที่มาจากวิทยาลัยในวอชิงตัน",
    "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_en": "What position does Bobby Micho, who was picked later than 186 others, play on the Broncos team?",
    "question_th": "บ็อบบี้ มิโช ซึ่งได้รับการเลือกช้ากว่า 186 คนเล่นในตำแหน่งใดในทีมบรองโกส์?",
    "context": "CREATE TABLE table_name_30 (position VARCHAR, pick__number VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT since FROM table_name_48 WHERE transfer_fee = \"£ 12m\"",
    "question_en": "What is Since, when Transfer Fee is \"£ 12m\"?",
    "question_th": "ตั้งแต่อะไร เมื่อค่าธรรมเนียมการโอนคือ \"12 ล้านปอนด์\"?",
    "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_en": "What is Name, when Goals is greater than 14, and when Transfer Fee is \"Youth System\"?",
    "question_th": "ชื่อคืออะไร เมื่อประตูมากกว่า 14 และเมื่อค่าธรรมเนียมการโอนคือ \"ระบบเยาวชน\"?",
    "context": "CREATE TABLE table_name_49 (name VARCHAR, goals VARCHAR, transfer_fee VARCHAR)"
  },
  {
    "answer": "SELECT nat FROM table_name_73 WHERE name = \"fàbregas ( captain )\"",
    "question_en": "What is Nat., when Name is \"Fàbregas ( Captain )\"?",
    "question_th": "แนทชื่ออะไร เมื่อชื่อ ฟาเบรกาส (กัปตัน)?",
    "context": "CREATE TABLE table_name_73 (nat VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_14 WHERE method = \"submission (knees)\"",
    "question_en": "What is Time, when Method is \"submission (knees)\"?",
    "question_th": "เวลาคืออะไร เมื่อวิธีการคือ \"การยอมจำนน (เข่า)\"?",
    "context": "CREATE TABLE table_name_14 (time VARCHAR, method VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_57 WHERE event = \"ufc 40\"",
    "question_en": "What is Record, when Event is \"UFC 40\"?",
    "question_th": "Record คืออะไร เมื่อเหตุการณ์คือ \"UFC 40\"?",
    "context": "CREATE TABLE table_name_57 (record VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT track FROM table_name_79 WHERE year = \"1979\"",
    "question_en": "What is the name of the track that hosted the Swedish Grand Prix in 1979?",
    "question_th": "สนามแข่งที่จัดการแข่งขัน Swedish Grand Prix ในปี 1979 ชื่ออะไร",
    "context": "CREATE TABLE table_name_79 (track VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT 250 AS _cc FROM table_name_31 WHERE year = \"1987\"",
    "question_en": "Who won the 250 cc in 1987?",
    "question_th": "ใครชนะ 250 ซีซีในปี 1987?",
    "context": "CREATE TABLE table_name_31 (year VARCHAR)"
  },
  {
    "answer": "SELECT 250 AS _cc FROM table_name_19 WHERE year = \"1985\"",
    "question_en": "Who won the 250 cc in 1985?",
    "question_th": "ใครชนะ 250 ซีซีในปี 1985?",
    "context": "CREATE TABLE table_name_19 (year VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_95 WHERE record = \"1-1\"",
    "question_en": "Which opponent has 1-1 as the record?",
    "question_th": "ฝ่ายตรงข้ามคนไหนมี 1-1 เป็นสถิติ?",
    "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_en": "What record has magomedkhan gamzatkhanov as the opponent, and submission as the method?",
    "question_th": "Magomedkhan gamzatkhanov เป็นคู่ต่อสู้และมีสถิติใดที่ยอมจำนนเป็นวิธีการ?",
    "context": "CREATE TABLE table_name_59 (record VARCHAR, opponent VARCHAR, method VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_49 WHERE record = \"3-4\"",
    "question_en": "What round has 3-4 as the record?",
    "question_th": "รอบไหนมีสกอร์ 3-4 เป็นประวัติการณ์?",
    "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_en": "What record has loss as the res., 1 for the round, and akira maeda as the opponent?",
    "question_th": "สถิติไหนที่แพ้เป็นฝ่ายแพ้ 1 ยก และอากิระ มาเอดะเป็นคู่ต่อสู้?",
    "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_en": "What record has decision (majority) as the method?",
    "question_th": "บันทึกใดมีการตัดสินใจ (ส่วนใหญ่) เป็นวิธีการ?",
    "context": "CREATE TABLE table_name_48 (record VARCHAR, method VARCHAR)"
  },
  {
    "answer": "SELECT agg FROM table_name_63 WHERE team_1 = \"cd elá nguema\"",
    "question_en": "What is Agg., when Team 1 is CD Elá Nguema?",
    "question_th": "Agg. คืออะไร ในเมื่อทีม 1 คือ CD Elá Nguema?",
    "context": "CREATE TABLE table_name_63 (agg VARCHAR, team_1 VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_72 WHERE player = \"jim colbert\"",
    "question_en": "What was Jim Colbert's score?",
    "question_th": "คะแนนของ Jim Colbert คืออะไร?",
    "context": "CREATE TABLE table_name_72 (score VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_24 WHERE score = 69 - 69 - 73 = 211",
    "question_en": "What country scored 69-69-73=211?",
    "question_th": "ประเทศใดได้คะแนน 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_en": "What country does Bobby Nichols play for?",
    "question_th": "Bobby Nichols เล่นให้กับประเทศใด?",
    "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_en": "WHAT IS THE TIME/ RETIRED WITH A HONDA MANUFACTURER, GRID 8?",
    "question_th": "เวลาใด / เกษียณกับผู้ผลิตฮอนด้า 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_en": "WHAT IS THE MANUFACTURER WITH 24 LAPS, AND +1.965 TIME/RETIRED?",
    "question_th": "ผู้ผลิตที่มี 24 รอบคืออะไร และ +1.965 เวลา/เกษียณแล้ว?",
    "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_en": "WHAT IS THE GRID OF HONDA, WITH 24 LAPS AND  Time/Retired of +13.997?",
    "question_th": "ตารางของ HONDA คืออะไรโดยมี 24 รอบและเวลา / เกษียณที่ +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_en": "WHAT IS THE LAPS WITH A GRID OF 26?",
    "question_th": "รอบที่มีตาราง 26 คืออะไร?",
    "context": "CREATE TABLE table_name_7 (laps VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT rider FROM table_name_5 WHERE grid = \"21\"",
    "question_en": "WHAT IS THE RIDER WITH A 21 GRID?",
    "question_th": "ผู้ขับขี่ที่มี 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_en": "WHAT IS THE MANUFACTURER WITH 24 LAPS AND GRID 27?",
    "question_th": "ผู้ผลิตที่มี 24 รอบและกริด 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_en": "What is the most recent year georgia tech chose a linebacker?",
    "question_th": "ปีที่แล้วจอร์เจียเทคเลือกทีมบร็องโกอะไร?",
    "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_en": "Who is the player from Spain that has a +2 to par?",
    "question_th": "นักเตะสเปนคนไหนได้พาร์ +2 บ้าง?",
    "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_en": "Name the country with a score of 69-71=140.",
    "question_th": "ตั้งชื่อประเทศด้วยคะแนน 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_en": "What's the to par for Hale Irwin of the United States?",
    "question_th": "เฮล เออร์วิน จากสหรัฐอเมริกาได้พาร์เท่าไหร่?",
    "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_en": "What's the to par for Jim Thorpe in T5 Place?",
    "question_th": "Jim Thorpe ใน 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_en": "What was Jack Nicklaus's score after round 1?",
    "question_th": "คะแนนของ Jack Nicklaus หลังยกที่ 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_en": "Which Laps have a Time of +39.476, and a Grid larger than 11?",
    "question_th": "รอบใดมีเวลา +39.476 และตารางที่ใหญ่กว่า 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_en": "Which Time has Laps smaller than 28, and a Rider of nicky hayden?",
    "question_th": "เวลาใดที่มีรอบน้อยกว่า 28 และผู้ขับขี่ของ 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_en": "Which Rider has a Grid larger than 6, and has Laps of 28, and a Time of +39.476?",
    "question_th": "ไรเดอร์คนไหนที่มีกริดใหญ่กว่า 6 และมีรอบ 28 และเวลา +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_en": "Which Bronze has a Total of 4, and a Gold smaller than 1?",
    "question_th": "ทองแดงใดมีทั้งหมด 4 และทองน้อยกว่า 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_en": "Which Bronze has a Silver larger than 1, a Total larger than 3, a Nation of turkey, and a Gold smaller than 2?",
    "question_th": "ทองแดงใดมีเงินมากกว่า 1, ผลรวมมากกว่า 3, ประเทศไก่งวง และทองน้อยกว่า 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_en": "Which Gold has a Bronze of 1, and a Total smaller than 3?",
    "question_th": "ทองคำใดมีทองแดงเท่ากับ 1 และผลรวมน้อยกว่า 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_en": "In what Week is the Opponent the New Orleans Saints?",
    "question_th": "ฝ่ายตรงข้ามของ 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_en": "In what Weeks is the game against the Tampa Bay Buccaneers with less than 44,506 in Attendance?",
    "question_th": "เกมกับแทมปาเบย์บัคคาเนียร์สที่มีผู้เข้าร่วมน้อยกว่า 44,506 คนคือสัปดาห์ใด",
    "context": "CREATE TABLE table_name_10 (week INTEGER, opponent VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_77 WHERE record = \"24–16–6\"",
    "question_en": "What team was home, when the record was 24–16–6?",
    "question_th": "ทีมไหนอยู่บ้าน ตอนที่สถิติ 24–16–6?",
    "context": "CREATE TABLE table_name_77 (home VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_25 WHERE visitor = \"boston bruins\" AND record = \"4–0–1\"",
    "question_en": "What date was the visitor the Boston Bruins, and the record was 4–0–1?",
    "question_th": "ผู้มาเยือนบอสตันบรูอินส์คือวันที่ใดและสถิติคือ 4–0–1",
    "context": "CREATE TABLE table_name_25 (date VARCHAR, visitor VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_name_84 WHERE game = 81",
    "question_en": "Who had the most points in game 81?",
    "question_th": "ใครมีคะแนนมากที่สุดในเกม 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_en": "Which flight had an aircraft of vickers viscount type 794?",
    "question_th": "เที่ยวบินใดมีเครื่องบินประเภท Vickers Vicount 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_en": "Which flight had the aircraft avro rj-100?",
    "question_th": "เที่ยวบินใดมีเครื่องบิน 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_en": "When was the registration of tc-jes?",
    "question_th": "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_en": "Which fatality was at ankara for the aircraft douglas c-47?",
    "question_th": "ผู้เสียชีวิตรายใดที่อังการาสำหรับเครื่องบินดักลาส 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_en": "How many total rounds have the results of win, and n/a as the method?",
    "question_th": "ผลชนะมีทั้งหมดกี่รอบ และไม่มีวิธีใด",
    "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_en": "How long did the match last in the Rings: Final Capture event?",
    "question_th": "การแข่งขันใช้เวลานานเท่าใดในกิจกรรม Rings: Final Capture?",
    "context": "CREATE TABLE table_name_80 (time VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT res FROM table_name_55 WHERE opponent = \"wataru sakata\"",
    "question_en": "What is the result for the match against Wataru Sakata?",
    "question_th": "ผลการแข่งขันกับ วาตารุ ซากาตะ เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_55 (res VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT res FROM table_name_19 WHERE opponent = \"oleg taktarov\"",
    "question_en": "The match against Oleg Taktarov had what result?",
    "question_th": "การแข่งขันกับ Oleg Taktarov มีผลอย่างไร?",
    "context": "CREATE TABLE table_name_19 (res VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT method FROM table_name_56 WHERE record = \"4-2\"",
    "question_en": "What was the method when 4-2 was the record?",
    "question_th": "เมื่อ 4-2 เป็นสถิติเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_56 (method VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_27 WHERE tie_no = \"6\"",
    "question_en": "What was the score for Tie no. 6?",
    "question_th": "คะแนนเสมอกันคือเท่าไร 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_en": "What was the tie against the away team, Leicester City?",
    "question_th": "เสมอกับทีมเยือนเลสเตอร์ซิตี้เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_21 (tie_no VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_43 WHERE time = \"3:01\"",
    "question_en": "Which round has a time of 3:01?",
    "question_th": "รอบใดมีเวลา 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_en": "Where is the UFC 110 event with 3 rounds located?",
    "question_th": "งาน UFC 110 มี 3 รอบ จัดขึ้นที่ไหน?",
    "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_en": "Which Home team score is on sunday 24 february?",
    "question_th": "สกอร์ทีมเหย้าไหนวันอาทิตย์ที่ 24 กุมภาพันธ์?",
    "context": "CREATE TABLE table_name_74 (home_team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT crowd FROM table_name_85 WHERE home_team = \"st kilda\"",
    "question_en": "Which Crowd has a Home team of st kilda?",
    "question_th": "Crowd คนไหนมีทีมเหย้าของเซนต์คิลดา?",
    "context": "CREATE TABLE table_name_85 (crowd VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_65 WHERE ground = \"gabba\"",
    "question_en": "Which Away team has a Ground of gabba?",
    "question_th": "ทีมเยือนทีมไหนมี 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_en": "Which Crowd has a Away team of sydney?",
    "question_th": "Crowd คนไหนมีทีมเยือนของซิดนีย์?",
    "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_en": "Which OWGR pts has Dates of may 10-13?",
    "question_th": "OWGR pts ใดมีวันที่ 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_en": "Which Home has an Attendance larger than 1,858?",
    "question_th": "บ้านไหนมีผู้เข้าร่วมมากกว่า 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_en": "Which Attendance has a Score of 0:2?",
    "question_th": "ผู้เข้าร่วมคนใดมีคะแนน 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_en": "Which Date has an Attendance larger than 1,858?",
    "question_th": "วันใดที่มีผู้เข้าร่วมมากกว่า 1,858 คน?",
    "context": "CREATE TABLE table_name_32 (date VARCHAR, attendance INTEGER)"
  },
  {
    "answer": "SELECT home FROM table_name_63 WHERE score = \"0:2\"",
    "question_en": "Which Home has a Score of 0:2?",
    "question_th": "บ้านไหนมีสกอร์ 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_en": "Which Date has a Location/Attendance of verizon center 7,448?",
    "question_th": "วันที่ใดมีสถานที่ / การเข้าร่วมของ 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_en": "Which Game has a Score of 101-109 (ot)?",
    "question_th": "เกมใดมีคะแนน 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_en": "Which player made the highest number of assists during the game played at the FleetCenter, with end score of W 120-87?",
    "question_th": "ผู้เล่นคนใดที่ทำจำนวนแอสซิสต์ได้มากที่สุดระหว่างเกมที่เล่นที่ FleetCenter ด้วยคะแนนท้ายเกมที่ 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_en": "Which player was the high points scorer during the game with an end score of W 93-85?",
    "question_th": "ผู้เล่นคนไหนเป็นผู้ทำคะแนนสูงสุดในระหว่างเกมด้วยคะแนนท้ายเกมที่ 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_en": "For the game in which P. Pierce (31) scored the most points, what was the final score?",
    "question_th": "เกมที่ พี.เพียร์ซ (31) ทำแต้มได้มากที่สุด สุดท้ายผลสกอร์คือเท่าไร?",
    "context": "CREATE TABLE table_name_93 (score VARCHAR, high_points VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_name_4 WHERE game = 2",
    "question_en": "Who made the most assists in Game 2 of this season?",
    "question_th": "ใครทำแอสซิสต์ได้มากที่สุดในเกมที่ 2 ของฤดูกาลนี้?",
    "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_en": "What is the smallest number of goals when the goals against are more than 58 and played number is more than 30?",
    "question_th": "จำนวนประตูที่น้อยที่สุดเมื่อประตูมากกว่า 58 และจำนวนการเล่นมากกว่า 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_en": "What is the minimum position when points are 32 and wins are greater than 13?",
    "question_th": "ตำแหน่งขั้นต่ำเมื่อแต้มเป็น 32 และชนะมากกว่า 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_en": "What is the most draws when goals against are more than 33, losses are 13 and goals for is less than 51?",
    "question_th": "อะไรคือผลเสมอมากที่สุดเมื่อประตูที่เสียมากกว่า 33 แพ้ 13 และประตูน้อยกว่า 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_en": "What is the position when wins are fewer than 14 and draws are fewer than 3?",
    "question_th": "ตำแหน่งใดเมื่อชนะน้อยกว่า 14 และเสมอน้อยกว่า 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_en": "Which club has 15 losses and 14 wins?",
    "question_th": "สโมสรใดแพ้ 15 นัด ชนะ 14 นัด?",
    "context": "CREATE TABLE table_name_60 (club VARCHAR, losses VARCHAR, wins VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_68 WHERE date = \"march 19\"",
    "question_en": "What home is dated march 19?",
    "question_th": "บ้านอะไรคือวันที่ 19 มีนาคม?",
    "context": "CREATE TABLE table_name_68 (home VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_2 WHERE points = 46",
    "question_en": "What home has 46 points?",
    "question_th": "บ้านไหนมี 46 แต้ม?",
    "context": "CREATE TABLE table_name_2 (home VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT released FROM table_name_13 WHERE series_sorted = \"6y/aa\"",
    "question_en": "What was the date of release for the episode sorted value of 6Y/AA?",
    "question_th": "วันที่วางจำหน่ายสำหรับตอนที่เรียงลำดับมูลค่า 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_en": "What is the series sorted value for the episode released December 2009?",
    "question_th": "ซีรีส์ที่ออกฉายในเดือนธันวาคม 2552 มีมูลค่าเท่าไร?",
    "context": "CREATE TABLE table_name_91 (series_sorted VARCHAR, released VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_76 WHERE team__number2 = \"gomel\"",
    "question_en": "What round has Team #2 Gomel?",
    "question_th": "ทีม #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_en": "Who was the elevator when the Cardinal-Deacon of S. Nicola in Carcere Tulliano was the order and title?",
    "question_th": "ลิฟต์คือใครในสมัยที่พระคาร์ดินัล-มัคนายกแห่ง S. Nicola ใน Carcere Tulliano เป็นผู้สั่งการและตำแหน่ง",
    "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_en": "The Cardinal-Priest of S. Prassede order and title has who as the elevator?",
    "question_th": "พระคาร์ดินัล - นักบวชแห่ง S. Prassede สั่งและตำแหน่งใครเป็นลิฟต์?",
    "context": "CREATE TABLE table_name_30 (elevator VARCHAR, order_and_title VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_98 WHERE elevator = \"innocent iv\"",
    "question_en": "When the elevator was Innocent IV what was the nationality?",
    "question_th": "เมื่อลิฟต์เป็น Innocent IV สัญชาติอะไร?",
    "context": "CREATE TABLE table_name_98 (nationality VARCHAR, elevator VARCHAR)"
  },
  {
    "answer": "SELECT elevator FROM table_name_63 WHERE elector = \"giovanni gaetano orsini\"",
    "question_en": "When Giovanni Gaetano Orsini was the elector who was the elevator?",
    "question_th": "เมื่อ Giovanni Gaetano Orsini เป็นผู้มีสิทธิเลือกตั้งใครคือลิฟต์?",
    "context": "CREATE TABLE table_name_63 (elevator VARCHAR, elector VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_11 WHERE elector = \"anchero pantaleone\"",
    "question_en": "When Anchero Pantaleone was the elector what is under nationality?",
    "question_th": "เมื่อ Anchero Pantaleone เป็นผู้มีสิทธิเลือกตั้ง อะไรอยู่ภายใต้สัญชาติ?",
    "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_en": "With a date of May 1262 under elevated, Guillaume de Bray as the elector, what is the order and title?",
    "question_th": "ด้วยวันที่เดือนพฤษภาคม ค.ศ. 1262 ภายใต้การยกระดับ โดยมีกิโยม เดอ เบรย์เป็นผู้มีสิทธิเลือกตั้ง ลำดับและตำแหน่งคืออะไร?",
    "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_en": "What was the result when the San Francisco 49ers were the opponents?",
    "question_th": "อะไรคือผลลัพธ์เมื่อซานฟรานซิสโก โฟร์ตีนายเนอร์สเป็นคู่ต่อสู้?",
    "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_en": "What was the Score of the Rabat Tournament with Opponent in the final Yannik Reuter?",
    "question_th": "คะแนนของการแข่งขันราบัตกับคู่ต่อสู้ในรอบสุดท้ายยานนิค รอยเตอร์เป็นเท่าไหร่?",
    "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–0, 6–2\"",
    "question_en": "What is the Opponent of the match played on a Clay Surface with a Score of 6–0, 6–2?",
    "question_th": "ฝ่ายตรงข้ามของแมตช์ที่เล่นบนพื้นดินเหนียวด้วยคะแนน 6–0, 6–2 คืออะไร?",
    "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ášek\"",
    "question_en": "What is the Date of the match with Opponent in the final of Filip Polášek?",
    "question_th": "แมตช์กับคู่ต่อสู้ในรอบชิงชนะเลิศ ฟิลิปโปลาเชค นัดชิงคือวันไหน?",
    "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_en": "What is the Score of the Rabat Tournament with Opponent in the final of Frederico Gil?",
    "question_th": "คะแนนการแข่งขันราบัตกับคู่ต่อสู้ในรอบชิงชนะเลิศของ เฟรเดริโก กิล เป็นเท่าไหร่?",
    "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–15\"",
    "question_en": "On what Date was the Result of the game W 30–15?",
    "question_th": "ผลการแข่งขันของเกม W 30–15 คือวันที่ใด?",
    "context": "CREATE TABLE table_name_40 (date VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_6 WHERE week = 9",
    "question_en": "What is the Date of Week 9?",
    "question_th": "สัปดาห์ที่ 9 คือวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_6 (date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_56 WHERE date = \"september 1, 1996\"",
    "question_en": "What is the Result of the game on September 1, 1996?",
    "question_th": "ผลการแข่งขันในวันที่ 1 กันยายน 1996 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_56 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT AVG(week) FROM table_name_22 WHERE result = \"w 34–24\"",
    "question_en": "On what Week was the Result W 34–24?",
    "question_th": "ผลลัพธ์ W 34–24 ในสัปดาห์ใด",
    "context": "CREATE TABLE table_name_22 (week INTEGER, result VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_42 WHERE date = \"november 10, 1996\"",
    "question_en": "What is the Week on November 10, 1996?",
    "question_th": "สัปดาห์ที่ 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_en": "What is the Status of the Paris with a Census Ranking of 3,474 of 5,008?",
    "question_th": "สถานะของปารีสด้วยอันดับการสำรวจสำมะโนประชากร 3,474 จาก 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_en": "What is the Area of the Parish with a Population of 2,113?",
    "question_th": "พื้นที่ของตำบลที่มีประชากร 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_en": "What is the Population of the Parish with an Area km 2 of 236.76?",
    "question_th": "ประชากรในเขตตำบลที่มีพื้นที่ กม. 2 จาก 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_en": "What is the Area of the Parish with a Population of 71?",
    "question_th": "พื้นที่ของตำบลที่มีประชากร 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_en": "What is the elevation and height for Halfbeak?",
    "question_th": "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_en": "What is the purpose of Long Shot?",
    "question_th": "จุดประสงค์ของ 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_en": "What is the yield in NTS Area U2R when the purpose is weapons development?",
    "question_th": "ผลตอบแทนใน NTS Area U2R เป็นเท่าใดเมื่อมีวัตถุประสงค์คือการพัฒนาอาวุธ?",
    "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_en": "What location was listed on 1977-09-15?",
    "question_th": "สถานที่ใดถูกระบุไว้ในวันที่ 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_en": "What is the Borough for the Seward listing on 1977-11-23?",
    "question_th": "รายการ Borough for the Seward บน 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_en": "What location was listed on 1977-11-23?",
    "question_th": "สถานที่ใดถูกระบุไว้ในวันที่ 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_en": "What are the listings in the Valdez-cordova (census area) Borough?",
    "question_th": "รายการในเขตเมือง Valdez-Cordova (พื้นที่สำรวจสำมะโนประชากร) คืออะไร?",
    "context": "CREATE TABLE table_name_93 (listed VARCHAR, borough VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_81 WHERE listed = \"1977-11-23\"",
    "question_en": "What is the name of the building listed on 1977-11-23?",
    "question_th": "อาคารที่อยู่ในรายการ 1977-11-23 มีชื่อว่าอะไร?",
    "context": "CREATE TABLE table_name_81 (name VARCHAR, listed VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_51 WHERE game = 52",
    "question_en": "What was the Maple Leafs' record on game 52?",
    "question_th": "สถิติของ Maple Leafs ในเกมที่ 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_en": "What was Germany's lowest sales when the profit was smaller than 6.7 billion?",
    "question_th": "ยอดขายต่ำสุดของเยอรมนีเมื่อกำไรน้อยกว่า 6.7 พันล้านคือเท่าใด",
    "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_en": "For which industry was the profit smaller than 14.2 billion and the assets larger than 2,467.9 billion?",
    "question_th": "อุตสาหกรรมใดมีกำไรน้อยกว่า 14.2 พันล้านและมีสินทรัพย์มากกว่า 2,467.9 พันล้าน?",
    "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_en": "What is the average rank for USA when the market value is 407.2 billion?",
    "question_th": "อันดับที่เฉลี่ยของสหรัฐอเมริกาเมื่อมูลค่าตลาดอยู่ที่ 407.2 พันล้าน?",
    "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_en": "What was date was the attendance larger than 875 against Platense?",
    "question_th": "วันที่เท่าไหร่ที่มีผู้เข้าร่วมมากกว่า 875 คนต่อ Platense?",
    "context": "CREATE TABLE table_name_26 (date VARCHAR, attendance VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_27 WHERE attendance = 3305",
    "question_en": "Who was the home team with 3305 in attendance?",
    "question_th": "ทีมเจ้าบ้านที่มีผู้เข้าร่วม 3305 คนคือใคร?",
    "context": "CREATE TABLE table_name_27 (home VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT MAX(attendance) FROM table_name_56 WHERE home = \"hispano\"",
    "question_en": "What was the highest attendance for the Hispano team?",
    "question_th": "อะไรคือการเข้าร่วมสูงสุดสำหรับทีม Hispano?",
    "context": "CREATE TABLE table_name_56 (attendance INTEGER, home VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_60 WHERE player = \"tiger woods\"",
    "question_en": "What country has the player Tiger Woods?",
    "question_th": "นักเตะไทเกอร์ วูดส์มีประเทศอะไรบ้าง?",
    "context": "CREATE TABLE table_name_60 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(money___) AS $__ FROM table_name_93 WHERE player = \"loren roberts\"",
    "question_en": "What is the Money ($) player Loren Roberts has made?",
    "question_th": "Loren Roberts ผู้เล่น Money ($) ทำเงินได้เท่าไหร่?",
    "context": "CREATE TABLE table_name_93 (money___ INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT pinnacle_height FROM table_name_17 WHERE town = \"metcalf, georgia\"",
    "question_en": "What is the Pinnacle height for Metcalf, Georgia?",
    "question_th": "ความสูงพินนาเคิลสำหรับเมตคาล์ฟ จอร์เจียคือเท่าใด",
    "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_en": "Who placed t7 with a score of 70-71=141?",
    "question_th": "ใครวาง t7 ด้วยคะแนน 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_en": "What country scored 71-69=140?",
    "question_th": "ประเทศใดได้คะแนน 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_en": "What nation had more than 3 bronze, 0 gold, and a total of 9?",
    "question_th": "ชาติใดมีมากกว่า 3 เหรียญทองแดง 0 เหรียญทอง และทั้งหมด 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_en": "What's the earliest year the new york giants lost at new meadowlands stadium?",
    "question_th": "ปีแรกสุดที่ทีมยักษ์ใหญ่แห่งนิวยอร์กแพ้ที่สนามกีฬานิวมีโดว์แลนด์คือปีใด?",
    "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_en": "How many years did the new york giants lose at metlife stadium?",
    "question_th": "ยักษ์ใหญ่แห่งนิวยอร์กแพ้ที่เมตไลฟ์ สเตเดี้ยม กี่ปี?",
    "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_en": "How many years did the new york giants win with a result of 15-7 at lincoln financial field?",
    "question_th": "ยักษ์ใหญ่แห่งนิวยอร์กชนะด้วยสกอร์ 15-7 ที่สนามการเงินลินคอล์นมากี่ปีแล้ว?",
    "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_en": "Who lost when the philadelphia eagles won at lincoln financial field on september 30?",
    "question_th": "ใครแพ้เมื่อฟิลาเดลเฟียอีเกิลส์ชนะที่สนามการเงินลินคอล์นเมื่อวันที่ 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_en": "What date did the new york giants win after 2011?",
    "question_th": "นิวยอร์กไจแอนต์ชนะวันไหนหลังปี 2554?",
    "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_en": "What is Official Name, when Census Ranking is 769 of 5,008?",
    "question_th": "ชื่อทางการคืออะไร เมื่ออันดับการสำรวจสำมะโนประชากรอยู่ที่ 769 จาก 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_en": "What is Status, when Area km 2 is greater than 303.73?",
    "question_th": "สถานะคืออะไร เมื่อพื้นที่ กม. 2 มากกว่า 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_en": "What is Area km 2, when Population is greater than 1,395?",
    "question_th": "พื้นที่ กม.2 คือเท่าใด เมื่อประชากรมากกว่า 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_en": "What is the Place of the Player from Zimbabwe?",
    "question_th": "สถานที่ของผู้เล่นจากซิมบับเวคืออะไร?",
    "context": "CREATE TABLE table_name_75 (place VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_16 WHERE score = 73 - 68 - 71 = 212",
    "question_en": "What is the Place of the Player with a Score of 73-68-71=212?",
    "question_th": "ผู้เล่นที่มีคะแนน 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_en": "What is the Place of the Player with a +3 To par?",
    "question_th": "ตำแหน่งผู้เล่นที่มี +3 พาร์คืออะไร?",
    "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_en": "What is the Score of Stewart Cink with a To par of +4?",
    "question_th": "คะแนนของ Stewart Cink โดยมีพาร์ To +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_en": "What T10 Place Player has a Score of 74-73-68=215?",
    "question_th": "ผู้เล่นอันดับ T10 คนใดมีคะแนน 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_en": "What is the maximum pick when WR was the position and Michigan the college, and the overall greater than 255?",
    "question_th": "อะไรคือตัวเลือกสูงสุดเมื่อ WR ดำรงตำแหน่งและมิชิแกนเป็นวิทยาลัย และโดยรวมมากกว่า 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_en": "What is the total round when DB was the position, and the pick less than 21, and Jeff Welch as the name?",
    "question_th": "รอบรวมเป็นเท่าใดเมื่อ DB อยู่ในตำแหน่ง และตัวเลือกน้อยกว่า 21 และมีชื่อ Jeff Welch?",
    "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_en": "What is Player, when Year(s) Won is 1978 , 1985?",
    "question_th": "ผู้เล่นคืออะไร เมื่อปีที่ชนะคือ 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_en": "WHAT IS THE AVERAGE PICK FOR PURDUE, WITH A ROUND SMALLER THAN 5?",
    "question_th": "ค่าเฉลี่ยที่เลือกสำหรับ PURDUE คืออะไร โดยมีรอบที่เล็กกว่า 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_en": "WHAT IS THE HIGHEST PICK WITH A TE POSITION, AND ROUND SMALLER THAN 2?",
    "question_th": "ตัวเลือกที่สูงที่สุดด้วยตำแหน่ง TE และมีขนาดเล็กกว่า 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_en": "WHAT IS THE AVERAGE OVERALL, FOR MARK FISCHER?",
    "question_th": "ค่าเฉลี่ยโดยรวมสำหรับ 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_en": "WHAT IS THE SUM OF PICK FOR DAVID TERRELL, WITH A ROUND SMALLER THAN 7?",
    "question_th": "ผลรวมของการเลือก DAVID TERRELL โดยมีค่ากลมน้อยกว่า 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_en": "WHAT IS THE POSITION WITH A ROUND LARGER THAN 6, AND OVERALL OF 191?",
    "question_th": "ตำแหน่งที่มีรอบใหญ่กว่า 6 และรวม 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_en": "Who is the player with a score of 68-71=139?",
    "question_th": "นักเตะคนไหนที่มีคะแนน 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_en": "What is the to par of player jerry pate, who has a 70-69=139 score?",
    "question_th": "นักเตะเจอร์รี่ ปาเต้ ที่มีคะแนน 70-69=139 มีแต้มเท่ากันเท่าไร?",
    "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_en": "What is the to par of the player with a t9 place and a score of 72-67=139?",
    "question_th": "คะแนนพาร์ของผู้เล่นอันดับ t9 และคะแนน 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_en": "What is the place of the player witha 69-69=138 score?",
    "question_th": "ผู้เล่นที่มีคะแนน 69-69=138 อยู่ในอันดับที่ใด?",
    "context": "CREATE TABLE table_name_45 (place VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_50 WHERE game = 68",
    "question_en": "What team played the Jazz at game 68?",
    "question_th": "ทีมใดเล่นแจ๊สในเกมที่ 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_en": "What date did mehmet okur (24) have the most points?",
    "question_th": "เมห์เม็ต โอคูร์ (24) มีคะแนนมากที่สุดวันไหน?",
    "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_en": "What week had attendance of 64,146?",
    "question_th": "สัปดาห์ใดที่มีผู้เข้าร่วม 64,146 คน?",
    "context": "CREATE TABLE table_name_3 (week INTEGER, attendance VARCHAR)"
  },
  {
    "answer": "SELECT MIN(attendance) FROM table_name_63 WHERE week = 12",
    "question_en": "What is the attendance of week 12?",
    "question_th": "การเข้าร่วมของสัปดาห์ที่ 12 คืออะไร?",
    "context": "CREATE TABLE table_name_63 (attendance INTEGER, week VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_35 WHERE date = \"november 3, 1974\"",
    "question_en": "What is the attendance from November 3, 1974?",
    "question_th": "ผู้เข้าร่วมตั้งแต่วันที่ 3 พฤศจิกายน 2517 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_35 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(attendance) FROM table_name_23 WHERE week = 8",
    "question_en": "What is the attendance of week 8?",
    "question_th": "การเข้าร่วมในสัปดาห์ที่ 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_en": "Who was the loser against the New York Giants in 2001?",
    "question_th": "ใครเป็นผู้แพ้ต่อ New York Giants ในปี 2544?",
    "context": "CREATE TABLE table_name_43 (loser VARCHAR, year VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_54 WHERE result = \"24-21\"",
    "question_en": "What was the location with the 24-21 result?",
    "question_th": "กับผล 24-21 อยู่ตำแหน่งไหน?",
    "context": "CREATE TABLE table_name_54 (location VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_60 WHERE result = \"24-21\"",
    "question_en": "Who was the winner with the 24-21 result?",
    "question_th": "ใครเป็นผู้ชนะด้วยผลสกอร์ 24-21?",
    "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_en": "What is the average To Par, when Place is \"T3\", and when Player is \"Ben Hogan\"?",
    "question_th": "ค่าพาร์โดยเฉลี่ยคือเท่าไร เมื่ออันดับคือ \"T3\" และเมื่อผู้เล่นคือ \"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_en": "What is the average To Par, when Player is \"Julius Boros\"?",
    "question_th": "ค่าพาร์โดยเฉลี่ยคือเท่าไร เมื่อผู้เล่นคือ \"จูเลียส โบรอส\"?",
    "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_en": "What is the highest To Par, when Score is \"72-73=145\"?",
    "question_th": "ค่าพาร์สูงสุดคือเท่าไร เมื่อสกอร์คือ \"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_en": "What is Score, when Place is \"T1\"?",
    "question_th": "คะแนนคืออะไร เมื่ออันดับคือ \"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_en": "What is Place, when To Par is \"5\", and when Score is \"72-73=145\"?",
    "question_th": "อันดับคืออะไร เมื่อพาร์คือ \"5\" และเมื่อสกอร์คือ \"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_en": "What is the highest pick # after round 11?",
    "question_th": "ตัวเลือกสูงสุด # หลังรอบ 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_en": "Which college has a pick # 84 in round 3?",
    "question_th": "วิทยาลัยใดมีผู้เลือก # 84 ในรอบ 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_en": "What was the pick # for round 11?",
    "question_th": "ตัวเลือก # สำหรับรอบ 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_en": "Which Pick has a Round larger than 8, a Name of kenny fells, and an Overall larger than 297?",
    "question_th": "ตัวเลือกใดที่มีรอบที่ใหญ่กว่า 8 ชื่อของเคนนีล้มลงและคะแนนโดยรวมมากกว่า 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_en": "Which Position has a Round larger than 7, and a Name of wayne asberry?",
    "question_th": "ตำแหน่งใดมีรอบที่ใหญ่กว่า 7 และชื่อของเวย์น แอสเบอร์รี่?",
    "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_en": "Which Overall has a Name of markus koch?",
    "question_th": "ซึ่งโดยรวมมีชื่อของมาร์คัสโคช?",
    "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_en": "Which Position has a Round smaller than 8, a Pick of 20, and an Overall smaller than 186?",
    "question_th": "ตำแหน่งใดมีรอบที่น้อยกว่า 8, ตัวเลือก 20 และคะแนนรวมน้อยกว่า 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_en": "What is the score when Fulham is the away team?",
    "question_th": "เมื่อฟูแล่มเป็นทีมเยือนสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_55 (score VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_62 WHERE tie_no = \"14\"",
    "question_en": "Which away team has a tie number of 14?",
    "question_th": "ทีมเยือนใดมีแต้มเสมอกันคือ 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_en": "What is the tie number in the game on 5 January 1986 where Exeter City is the away team?",
    "question_th": "ในเกมวันที่ 5 มกราคม พ.ศ. 2529 เอ็กเซเตอร์ ซิตี้ เป็นทีมเยือน เสมอกันที่หมายเลขใด?",
    "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_en": "What is the total average for McCain% of 55.0% and Obama# higher than 3,487?",
    "question_th": "ค่าเฉลี่ยรวมของ McCain% ที่ 55.0% และ Obama# สูงกว่า 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_en": "what is 2010 when 2009 is w and 2007 is qf?",
    "question_th": "2010 คืออะไรเมื่อ 2009 เป็น w และ 2007 เป็น qf",
    "context": "CREATE TABLE table_name_8 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2000 FROM table_name_4 WHERE 2012 = \"4r\"",
    "question_en": "what is 2000 when 2012 is 4r?",
    "question_th": "2000 คืออะไรเมื่อ 2012 เป็น 4r?",
    "context": "CREATE TABLE table_name_4 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2000 FROM table_name_54 WHERE 2012 = \"w\" AND 2011 = \"4r\"",
    "question_en": "what is 2000 when 2012 is w and 2011 is 4r?",
    "question_th": "2000 คืออะไรเมื่อ 2012 เป็น w และ 2011 เป็น 4r",
    "context": "CREATE TABLE table_name_54 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2010 FROM table_name_24 WHERE 2006 = \"3r\"",
    "question_en": "what is 2010 when 2006 is 3r?",
    "question_th": "2010 คืออะไรเมื่อ 2006 เป็น 3r?",
    "context": "CREATE TABLE table_name_24 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2013 FROM table_name_11 WHERE 2001 = \"qf\" AND 2011 = \"4r\"",
    "question_en": "what is 2013 when 2001 is qf and 2011 is 4r?",
    "question_th": "2013 คืออะไร เมื่อ 2001 คือ qf และ 2011 คือ 4r",
    "context": "CREATE TABLE table_name_11 (Id VARCHAR)"
  },
  {
    "answer": "SELECT AVG(round) FROM table_name_25 WHERE record = \"1-1\"",
    "question_en": "What is the average round for the record of 1-1?",
    "question_th": "สถิติสกอร์ 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_en": "What method had a record 12-2-3?",
    "question_th": "วิธีใดมีสถิติ 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_en": "What Hanyu Pinyin is in the Jinning Township?",
    "question_th": "Hanyu Pinyin คืออะไรในเมือง Jinning?",
    "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_en": "How many times did Sham Kwok Fai score in the game that was played on 22 February 2006?",
    "question_th": "ชาม กวอกไฟ ทำประตูได้กี่ครั้งในเกมที่เล่นเมื่อวันที่ 22 กุมภาพันธ์ พ.ศ. 2549?",
    "context": "CREATE TABLE table_name_72 (scored INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_44 WHERE home_team = \"york city\"",
    "question_en": "The home team york city has what score?",
    "question_th": "เจ้าบ้าน ยอร์ค ซิตี้ ได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_44 (score VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(week) FROM table_name_23 WHERE attendance = \"61,603\"",
    "question_en": "What is the total number of Week(s), when Attendance is 61,603?",
    "question_th": "จำนวนสัปดาห์ทั้งหมดคือเท่าไร โดยมีผู้เข้าร่วม 61,603 คน?",
    "context": "CREATE TABLE table_name_23 (week VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_52 WHERE attendance = \"62,170\"",
    "question_en": "What is Opponent, when Attendance is 62,170?",
    "question_th": "ฝ่ายตรงข้ามคืออะไร เมื่อผู้เข้าร่วมคือ 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_en": "HOW MANY POINTS DOES ALEX SPERAFICO HAVE WITH A GRID LARGER THAN 17?",
    "question_th": "ALEX SPERAFICO มีคะแนนที่ใหญ่กว่า 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_en": "WHAT ARE THE LAPS WITH POINTS LARGER THAN 5, WITH FORSYTHE RACING, AND GRID 5?",
    "question_th": "อะไรคือรอบที่มีคะแนนมากกว่า 5 โดยมี FORSYTHE RACING และ 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_en": "WHAT IS THE SCORE WHEN THE COMPETITION WAS 1978 world cup qualification?",
    "question_th": "คะแนนเมื่อการแข่งขันคือรอบคัดเลือกฟุตบอลโลกปี 1978 คืออะไร",
    "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_en": "What is the average pick number for jerry hackenbruck who was overall pick less than 282?",
    "question_th": "หมายเลขการเลือกเฉลี่ยของ jerry hackenbruck ที่โดยรวมเลือกน้อยกว่า 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_en": "What is the lowest draft pick number for mark doak who had an overall pick smaller than 147?",
    "question_th": "หมายเลขตัวเลือกดราฟต์ต่ำสุดสำหรับมาร์ค ดั๊กที่มีตัวเลือกโดยรวมน้อยกว่า 147 คืออะไร?",
    "context": "CREATE TABLE table_name_30 (pick INTEGER, name VARCHAR, overall VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_55 WHERE college = \"california\"",
    "question_en": "What position did the player have who was from the college of california?",
    "question_th": "ผู้เล่นมีตำแหน่งอะไรจากวิทยาลัยแห่งแคลิฟอร์เนีย?",
    "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_en": "What college did jerry hackenbruck come from who had an overall pick less than 344?",
    "question_th": "jerry hackenbruck มาจากวิทยาลัยใดที่มีคะแนนรวมน้อยกว่า 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_en": "What team was the opponent on 03/18/08?",
    "question_th": "คู่ต่อสู้เมื่อวันที่ 03/18/51 คือทีมใด?",
    "context": "CREATE TABLE table_name_41 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT site FROM table_name_39 WHERE city = \"delaware\"",
    "question_en": "What is the site where the game was held in the city of Delaware?",
    "question_th": "สถานที่จัดการแข่งขันในเมืองเดลาแวร์คือสถานที่ใด",
    "context": "CREATE TABLE table_name_39 (site VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_93 WHERE opponent = \"towson\"",
    "question_en": "What city was the game held in when the opponent was Towson?",
    "question_th": "เกมดังกล่าวจัดขึ้นที่เมืองใดเมื่อคู่ต่อสู้คือโทว์สัน?",
    "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_en": "What team was opponen in baltimore, at 2:00pm, on 4/06/08?",
    "question_th": "ทีมใดเป็นฝ่ายตรงข้ามในบัลติมอร์ เวลา 14.00 น. วันที่ 4/06/51",
    "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_en": "What date was the game held at UMBC Field?",
    "question_th": "สนาม UMBC จัดขึ้นวันไหน?",
    "context": "CREATE TABLE table_name_47 (date VARCHAR, site VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_76 WHERE city = \"towson\"",
    "question_en": "What date was the game held in Towson?",
    "question_th": "เกมนี้จัดขึ้นที่โทว์สันวันที่เท่าไหร่?",
    "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_en": "Which season premiered on 29 October 1990 and had more than 6 episodes?",
    "question_th": "ซีซั่นใดฉายวันที่ 29 ตุลาคม 2533 และมีมากกว่า 6 ตอน?",
    "context": "CREATE TABLE table_name_94 (series INTEGER, premiere VARCHAR, episodes VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_46 WHERE score = \"71-64\"",
    "question_en": "WHAT DATE HAD A SCORE OF 71-64?",
    "question_th": "คะแนน 71-64 ตรงกับวันไหน?",
    "context": "CREATE TABLE table_name_46 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_50 WHERE date = \"september 21\"",
    "question_en": "WHAT SCORE WAS ON SEPTEMBER 21?",
    "question_th": "คะแนนในวันที่ 21 กันยายนเป็นเท่าใด",
    "context": "CREATE TABLE table_name_50 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_42 WHERE record = \"1-1\"",
    "question_en": "WHAT SCORE HAD A RECORD OF 1-1?",
    "question_th": "คะแนนอะไรมีสถิติ 1-1?",
    "context": "CREATE TABLE table_name_42 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_17 WHERE date = \"september 28\"",
    "question_en": "WHAT OPPONENT HAD A DATE OF SEPTEMBER 28?",
    "question_th": "ฝ่ายตรงข้ามคนไหนมีวันที่ 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_en": "WHAT SCORE HAD A LOSS AND RECORD OF 1-1?",
    "question_th": "คะแนนใดที่แพ้และมีสถิติ 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_en": "Who is the alternate for Andy Brown, and Nick Grady?",
    "question_th": "ใครคือตัวสำรองของ Andy Brown และ 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_en": "Which captain has Gintare Karpaviciute as an alternate?",
    "question_th": "กัปตันทีมคนไหนมี กินตาเร่ คาร์ปาวิซิอุต เป็นตัวสำรอง?",
    "context": "CREATE TABLE table_name_33 (captain VARCHAR, alternate__1_ VARCHAR)"
  },
  {
    "answer": "SELECT coach FROM table_name_1 WHERE captain = \"robert harvey\"",
    "question_en": "Which coach works with Robert Harvey?",
    "question_th": "โค้ชคนไหนที่ทำงานร่วมกับโรเบิร์ต ฮาร์วีย์?",
    "context": "CREATE TABLE table_name_1 (coach VARCHAR, captain VARCHAR)"
  },
  {
    "answer": "SELECT nickname FROM table_name_66 WHERE founded = 1954",
    "question_en": "Which Nickname has Founded of 1954?",
    "question_th": "ชื่อเล่นใดที่ก่อตั้งในปี 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_en": "Which team played in the Boston Garden when the final score was L 118-130?",
    "question_th": "ทีมใดเล่นในบอสตันการ์เด้นเมื่อสกอร์สุดท้ายคือ 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_en": "What team played at the Boston Garden when the series was 1-0?",
    "question_th": "ทีมใดเล่นที่บอสตันการ์เด้นเมื่อซีรีส์เสมอ 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_en": "Which driver had a grid of 2?",
    "question_th": "คนขับคนไหนมีตาราง 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_en": "What is the smallest grid value that had 16 points and a team of Mi-Jack Conquest Racing?",
    "question_th": "ค่ากริดที่เล็กที่สุดที่มี 16 แต้มและทีม 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_en": "What is the number of points associated with 165 laps?",
    "question_th": "จำนวนคะแนนที่เกี่ยวข้องกับ 165 รอบเป็นเท่าใด?",
    "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_en": "What is the total number of laps associated with 8 points and a grid under 8?",
    "question_th": "จำนวนรอบทั้งหมดที่เกี่ยวข้องกับ 8 คะแนนและตารางที่ต่ำกว่า 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_en": "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?",
    "question_th": "ความสูงต่ำสุดเป็นฟุตสำหรับอาคารที่ตั้งอยู่ใน platz der einheit 1, gallus ที่สร้างขึ้นหลังปี 1961 โดยมีความสูงน้อยกว่า 130 เมตร คือเท่าใด",
    "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_en": "What is the sum of the heights in meters for the commerzbank tower built after 1984?",
    "question_th": "หอคอย commerzbank ที่สร้างขึ้นหลังปี 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ße/rückertstraße, ostend\" AND height__m_ > 185",
    "question_en": "What is the earliest year that the building in sonnemannstraße/rückertstraße, ostend was built with a height larger than 185 meters?",
    "question_th": "ปีแรกสุดที่อาคารใน sonnemannstraße/rückertstraße, ostend ถูกสร้างขึ้นโดยมีความสูงมากกว่า 185 เมตร คือปีใด",
    "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änder straße 1, sachsenhausen-süd\" AND height__ft_ < 328.1",
    "question_en": "What is the lowest height in meters for the building located in mailänder straße 1, sachsenhausen-süd, with a height shorter than 328.1 ft?",
    "question_th": "ความสูงต่ำสุดเป็นเมตรสำหรับอาคารที่ตั้งอยู่ใน mailänder straße 1, sachsenhausen-süd ที่มีความสูงสั้นกว่า 328.1 ฟุตคือเท่าใด",
    "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_en": "What is the average population vlue for an area smaller than 26.69 square km and has an official name of Rogersville?",
    "question_th": "ค่าประชากรเฉลี่ยสำหรับพื้นที่ที่มีขนาดเล็กกว่า 26.69 ตารางกิโลเมตรคือเท่าใด และมีชื่ออย่างเป็นทางการว่า 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_en": "What's the name of the album from 2012 with a Hammer Music / Nail Records label?",
    "question_th": "อัลบั้มจากค่าย Hammer Music / Nail Records ในปี 2012 ชื่ออะไร",
    "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_en": "What year had the Hungarian top 40 album charts of 3?",
    "question_th": "ปีไหนที่ชาร์ตอัลบั้ม 40 อันดับแรกของฮังการีถึง 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_en": "What type of release was Napisten Hava?",
    "question_th": "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_en": "What was the name of the album that was a demo release?",
    "question_th": "อัลบั้มที่เป็นเดโมชื่ออะไร?",
    "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_en": "What is the serials issued in 1982 with a format of ABC-123?",
    "question_th": "สิ่งพิมพ์ที่ออกในปี 1982 มีรูปแบบ 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_en": "Which design has a serial format of AB-12-34?",
    "question_th": "การออกแบบใดมีรูปแบบอนุกรม 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_en": "Which serials were issued with a design of black on yellow?",
    "question_th": "ซีรีส์เรื่องใดบ้างที่ออกดีไซน์สีดำบนพื้นเหลือง",
    "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_en": "WHo was the outgoing manager for the team of fc carl zeiss jena?",
    "question_th": "ใครคือผู้จัดการทีมเอฟซี คาร์ล ไซส์ เจน่า ที่กำลังจะลาออกจากตำแหน่ง?",
    "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_en": "What team did the manager come from who departed due to an end of tenure as caretaker?",
    "question_th": "ผู้จัดการทีมมาจากทีมใดที่ลาออกเนื่องจากหมดวาระการเป็นผู้ดูแล?",
    "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_en": "What was the date of appointment for the replaced manager, reiner geyer?",
    "question_th": "วันที่ได้รับการแต่งตั้งให้เป็นผู้จัดการทีมที่ถูกแทนที่ ไรเนอร์ เกเยอร์ คือเมื่อใด?",
    "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_en": "What was the date of vacancy after the outgoing manager, ralf santelli departed?",
    "question_th": "วันที่ว่างหลังจากราล์ฟ ซานเตลลี่ ผู้จัดการทีมที่กำลังจะลาออก?",
    "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_en": "Who was the outgoing manager who departed due to fc energie cottbus purchased rights?",
    "question_th": "ใครคือผู้จัดการทีมที่ลาออกเนื่องจากเอฟซี เอเนอร์จี้ คอตต์บุสซื้อสิทธิ์?",
    "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_en": "How many times is the position lb and the overall is less than 46?",
    "question_th": "ตำแหน่ง lb กี่ครั้งแล้วรวมไม่ถึง 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_en": "what is the college when the overall is more than 76 for brian mitchell?",
    "question_th": "วิทยาลัยอะไรคะเมื่อคะแนนรวมเกิน 76 สำหรับ 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_en": "what is the pick when the overall is less than 297 and the college is alabama?",
    "question_th": "จะเลือกอะไรเมื่อผลรวมน้อยกว่า 297 และวิทยาลัยอยู่ที่อลาบามา?",
    "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_en": "what is the highest round when the college is penn state?",
    "question_th": "รอบสูงสุดเมื่อวิทยาลัยอยู่ในรัฐเพนน์สเตตคืออะไร?",
    "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_en": "What is the 1989 number when the 200 number is less than 52.8 in Arizona, New Mexico, and Utah",
    "question_th": "หมายเลขปี 1989 คืออะไรเมื่อหมายเลข 200 น้อยกว่า 52.8 ในรัฐแอริโซนา นิวเม็กซิโก และยูทาห์",
    "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_en": "What shows for 2000 at the Fort Peck Indian Reservation, Montana, when the 1979 is less than 26.8?",
    "question_th": "อะไรแสดงให้เห็นในปี 2000 ที่เขตสงวน Fort Peck Indian มอนแทนา เมื่อปี 1979 น้อยกว่า 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_en": "What is the 2000 number when the 1969 is 54.3, and the 1979 is less than 48.4?",
    "question_th": "หมายเลข 2000 คืออะไรเมื่อปี 1969 คือ 54.3 และปี 1979 น้อยกว่า 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_en": "What is the 2000 number when the 1989 is less than 54.9 in Arizona, New Mexico, and Utah?",
    "question_th": "หมายเลข 2000 คืออะไรเมื่อปี 1989 น้อยกว่า 54.9 ในรัฐแอริโซนา นิวเม็กซิโก และยูทาห์",
    "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_en": "What is the 1979 number for Standing Rock Indian Reservation when the 1989 is less than 54.9?",
    "question_th": "หมายเลข 1979 สำหรับ Standing Rock Indian Reserve คืออะไร เมื่อปี 1989 น้อยกว่า 54.9",
    "context": "CREATE TABLE table_name_51 (reservation VARCHAR)"
  },
  {
    "answer": "SELECT kerry_percentage FROM table_name_71 WHERE others_number = 66",
    "question_en": "What Kerry's percentage where 66 people voted for another candidate?",
    "question_th": "Kerry มีผู้โหวตให้อีก 66 คนกี่เปอร์เซ็นต์?",
    "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_en": "Can you tell me the average Laps that has the Time of +17.485, and the Grid smaller than 7?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่ารอบเฉลี่ยที่มีเวลา +17.485 และกริดน้อยกว่า 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_en": "Can you tell me the sum of Grid that has the Manufacturer of aprilia, and the sandro cortese?",
    "question_th": "คุณช่วยบอกผลรวมของกริดที่มีผู้ผลิต Aprilia และ 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_en": "What was the date of game 21?",
    "question_th": "เกมที่ 21 วันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_85 (date VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT score_time FROM table_name_10 WHERE date = \"june 10\"",
    "question_en": "What was the score of the game on June 10?",
    "question_th": "สกอร์เกมวันที่ 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_en": "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?",
    "question_th": "ผลรวมของรอบคืออะไร เมื่อทีมวิทยาลัย/จูเนียร์/คลับคือ Brandon Wheat Kings ( WHL ) เมื่อผู้เล่นคือ Mike Perovich (D) และเมื่อ Pick น้อยกว่า 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_en": "What is the sum of Round, when Player is Tim Hunter (RW), and when Pick is less than 54?",
    "question_th": "ผลรวมของรอบเมื่อผู้เล่นคือ Tim Hunter (RW) และเมื่อ Pick น้อยกว่า 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ürgen klopp\"",
    "question_en": "Who is the outgoing manager who was replaced by jürgen klopp?",
    "question_th": "ใครคือผู้จัดการทีมที่กำลังจะลาออกซึ่งถูกแทนที่โดยเจอร์เก้น คล็อปป์?",
    "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_en": "What is the date of appointment of the manager who was replaced by markus babbel?",
    "question_th": "ผู้จัดการทีมที่ถูกแทนที่ด้วย มาร์คัส บับเบิ้ล เข้ามาแทนคือวันที่เท่าไหร่?",
    "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_en": "What was the manner of depature of the manager with a date of appointment on 23 November 2008?",
    "question_th": "การจากไปของผู้จัดการโดยได้รับการแต่งตั้งเมื่อวันที่ 23 พฤศจิกายน 2551 เป็นอย่างไร?",
    "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_en": "Who replaced the manager of team arminia bielefeld?",
    "question_th": "ใครเข้ามาแทนที่ผู้จัดการทีมอาร์มิเนีย บีเลเฟลด์?",
    "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_en": "What is the date of vacancy of team fc bayern munich, which had a date of appointment on 27 April 2009?",
    "question_th": "ตำแหน่งทีมเอฟซี บาเยิร์น มิวนิค ว่างลงเมื่อใด ซึ่งได้รับการแต่งตั้งเป็นวันที่ 27 เมษายน พ.ศ. 2552 คือวันที่เท่าไร?",
    "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_en": "What is the date of appointment of outgoing manager fred rutten, who had a sacked manner of departure?",
    "question_th": "วันที่จะได้รับการแต่งตั้งผู้จัดการที่พ้นตำแหน่ง เฟรด รัทเทน ซึ่งถูกไล่ออกคือเมื่อใด?",
    "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_en": "What was the length when James Swallow had a release longer than 2.1?",
    "question_th": "James Swallow ออกฉายนานกว่า 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_en": "Who wrote Infiltration?",
    "question_th": "ใครเป็นคนเขียนการแทรกซึม?",
    "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_en": "What was the earliest release for Pathogen directed by Sharon Gosling?",
    "question_th": "ภาพยนตร์เรื่อง Pathogen ที่กำกับโดยชารอน กอสลิงออกฉายเร็วที่สุดคือเรื่องใด",
    "context": "CREATE TABLE table_name_81 (release INTEGER, director VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT length FROM table_name_54 WHERE release = 3.6",
    "question_en": "What was the length of release 3.6?",
    "question_th": "ความยาวของรีลีส 3.6 คืออะไร?",
    "context": "CREATE TABLE table_name_54 (length VARCHAR, release VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_21 WHERE tournament = \"alcobaça\" AND score = \"6–3, 2–6, 7–5\"",
    "question_en": "What day was the score for tournament of alcobaça 6–3, 2–6, 7–5?",
    "question_th": "คะแนนของทัวร์นาเมนต์อัลโคบาซา 6–3, 2–6, 7–5 คือวันไหน?",
    "context": "CREATE TABLE table_name_21 (date VARCHAR, tournament VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_27 WHERE tournament = \"alcobaça\" AND opponent_in_the_final = \"xinyun han\"",
    "question_en": "What was the score for alcobaça when the opponent was in the final of xinyun han?",
    "question_th": "อัลโคบาซาเมื่อคู่ต่อสู้เข้าชิงซินหยุน ฮันได้คะแนนเท่าไหร่?",
    "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_en": "What was the score when the opponent was irena pavlovic and the surface was hard?",
    "question_th": "เมื่อคู่ต่อสู้คืออิเรนา ปาโลวิช และได้สกอร์เป็นอย่างไรบ้าง?",
    "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–3, 2–6, 7–5\"",
    "question_en": "What was the opponent in the final when the score was 6–3, 2–6, 7–5?",
    "question_th": "คู่ต่อสู้ในรอบชิงชนะเลิศคือใครเมื่อสกอร์เป็น 6–3, 2–6, 7–5?",
    "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–1, 6–4\"",
    "question_en": "What day was the surface clay and the score 6–1, 6–4?",
    "question_th": "ดินเหนียวผิวคือวันใดและคะแนน 6–1, 6–4",
    "context": "CREATE TABLE table_name_23 (date VARCHAR, surface VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT phoenician FROM table_name_77 WHERE hangul = \"ㄹ\"",
    "question_en": "What is the Phoenician letter for the Hangul of ㄹ?",
    "question_th": "ตัวอักษรฟินีเซียนสำหรับอังกูลของ ㄹ คืออะไร",
    "context": "CREATE TABLE table_name_77 (phoenician VARCHAR, hangul VARCHAR)"
  },
  {
    "answer": "SELECT latin FROM table_name_13 WHERE tibetan = \"ས\"",
    "question_en": "What is the Latin letter for the Tibetan of ས?",
    "question_th": "ตัวอักษรละตินสำหรับภาษาทิเบตของ ས คืออะไร?",
    "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_en": "to the Latin of f, y, u/v/w?",
    "question_th": "เป็นภาษาลาตินของ f, y, u/v/w?",
    "context": "CREATE TABLE table_name_63 (greek VARCHAR, latin VARCHAR)"
  },
  {
    "answer": "SELECT hangul FROM table_name_96 WHERE greek = \"ϝ, υ\"",
    "question_en": "What is the Hangul equivalent of the Greek ϝ, υ?",
    "question_th": "อังกูลเทียบเท่ากับภาษากรีก ϝ, υ คืออะไร?",
    "context": "CREATE TABLE table_name_96 (hangul VARCHAR, greek VARCHAR)"
  },
  {
    "answer": "SELECT latin FROM table_name_72 WHERE ’phagspa = \"ꡙ\"",
    "question_en": "What is the Latin equivalent for the Phagspa of ꡙ?",
    "question_th": "ภาษาละตินเทียบเท่ากับ Phagpa ของ ꡙ คืออะไร?",
    "context": "CREATE TABLE table_name_72 (latin VARCHAR, ’phagspa VARCHAR)"
  },
  {
    "answer": "SELECT court_surface FROM table_name_93 WHERE began < 1897",
    "question_en": "What was the surface played on for the match than began before 1897?",
    "question_th": "พื้นผิวที่เล่นสำหรับแมตช์นี้เป็นอย่างไรมากกว่าที่เริ่มก่อนปี 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_en": "For the Indian Wells Masters tournament, what was the country?",
    "question_th": "สำหรับทัวร์นาเมนต์ Indian Wells Masters ประเทศอะไร",
    "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_en": "Which location was in China, and played on a hard court?",
    "question_th": "สถานที่ใดอยู่ในประเทศจีน และเล่นบนฮาร์ดคอร์ต?",
    "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_en": "What country was the Paris Masters tournament played in?",
    "question_th": "การแข่งขัน Paris Masters จัดขึ้นที่ประเทศใด",
    "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_en": "Who was the opponent when the H/A was H and the scorer was Ferguson?",
    "question_th": "คู่ต่อสู้คือใครเมื่อ H/A เป็น H และผู้ทำประตูคือเฟอร์กูสัน?",
    "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_en": "Who was the opponent on 11 August 1991 when the H/A was H?",
    "question_th": "คู่ต่อสู้คือใครในวันที่ 11 สิงหาคม พ.ศ. 2534 เมื่อ H/A เป็น 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_en": "What was the H/A when the scorer was Hughes?",
    "question_th": "H/A คืออะไรเมื่อผู้ทำประตูคือฮิวจ์ส?",
    "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_en": "What was the film that grossed $26,010,864 ranked?",
    "question_th": "ภาพยนตร์ที่ทำรายได้ 26,010,864 ดอลลาร์อยู่ในอันดับที่เท่าไหร่",
    "context": "CREATE TABLE table_name_76 (rank INTEGER, gross VARCHAR)"
  },
  {
    "answer": "SELECT gross FROM table_name_79 WHERE studio = \"universal\" AND title = \"xanadu\"",
    "question_en": "How much did Universal Studio's film Xanadu gross?",
    "question_th": "ภาพยนตร์ Xanadu ของ Universal Studio ทำรายได้ไปเท่าไร?",
    "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_en": "What is the rank of Bronco Billy?",
    "question_th": "บรองโก บิลลี่ อันดับเท่าไหร่?",
    "context": "CREATE TABLE table_name_21 (rank INTEGER, title VARCHAR)"
  },
  {
    "answer": "SELECT MIN(founded) FROM table_name_42 WHERE nickname = \"cougars\"",
    "question_en": "Name the lowest Founded with the Name cougars?",
    "question_th": "ตั้งชื่อต่ำสุด ก่อตั้งด้วยชื่อคูการ์?",
    "context": "CREATE TABLE table_name_42 (founded INTEGER, nickname VARCHAR)"
  },
  {
    "answer": "SELECT affiliation FROM table_name_47 WHERE nickname = \"cougars\"",
    "question_en": "Which Affiliation has a Nickname of cougars?",
    "question_th": "สังกัดใดมีชื่อเล่นว่าคูการ์?",
    "context": "CREATE TABLE table_name_47 (affiliation VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT MAX(founded) FROM table_name_6 WHERE affiliation = \"private/methodist\"",
    "question_en": "Name the Founded which has a Affiliation of private/methodist?",
    "question_th": "ตั้งชื่อผู้ก่อตั้งซึ่งมีสังกัดเอกชน/เมธอด?",
    "context": "CREATE TABLE table_name_6 (founded INTEGER, affiliation VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_57 WHERE date = \"1987\"",
    "question_en": "What is Label, when Date is 1987?",
    "question_th": "Label คืออะไร เมื่อเป็นปี 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_en": "What is Date, when Format is Vinyl, and when Label is Mercury?",
    "question_th": "วันที่คืออะไร เมื่อรูปแบบเป็นไวนิล และเมื่อฉลากเป็นเมอร์คิวรี",
    "context": "CREATE TABLE table_name_65 (date VARCHAR, format VARCHAR, label VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_33 WHERE region = \"yugoslavia\"",
    "question_en": "What is Date, when Region is Yugoslavia?",
    "question_th": "วันที่คืออะไรเมื่อภูมิภาคคือยูโกสลาเวีย?",
    "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_en": "What is Format, when Label is Bronze, when Date is 1982, and when Catalogue is 204 636?",
    "question_th": "รูปแบบคืออะไร เมื่อ Label เป็น Bronze วันที่เป็น 1982 และเมื่อ Catalog เป็น 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_en": "What is Date, when Label is Jugoton?",
    "question_th": "วันที่คืออะไรเมื่อ Label เป็น Jugoton?",
    "context": "CREATE TABLE table_name_48 (date VARCHAR, label VARCHAR)"
  },
  {
    "answer": "SELECT premiere_date FROM table_name_53 WHERE cycle < 2",
    "question_en": "What is Premier Date, when Cycle is less than 2?",
    "question_th": "Premier Date คืออะไร เมื่อ Cycle น้อยกว่า 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_en": "What is the lowest Cycle, when Number Of Contestants is 11, and when International Destinations is Paris Gran Canaria?",
    "question_th": "รอบต่ำสุดคือเมื่อจำนวนผู้เข้าแข่งขันคือ 11 และเมื่อปลายทางระหว่างประเทศคือ 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_en": "What is the highest Cycle, when the Number of Constestants is 11, and when Premiere Date is September 3, 2012?",
    "question_th": "รอบสูงสุดคือเมื่อจำนวนผู้เข้าแข่งขันคือ 11 และวันที่ฉายรอบปฐมทัศน์คือวันที่ 3 กันยายน 2555",
    "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_en": "What is Number of Contestants, when Cycle is 4?",
    "question_th": "จำนวนผู้เข้าแข่งขันเป็นเท่าใด เมื่อรอบเป็น 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_en": "What is Number of Contestants, when International Destinations is London Lisbon?",
    "question_th": "จำนวนผู้เข้าแข่งขันคือเท่าใด เมื่อจุดหมายปลายทางระหว่างประเทศคือลอนดอนลิสบอน",
    "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_en": "What is the lowest pick with fewer than 3 rounds and more than 4 overall?",
    "question_th": "ตัวเลือกต่ำสุดที่มีน้อยกว่า 3 รอบและมากกว่า 4 รวมคืออะไร?",
    "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_en": "Which round has more than 79 overall and a position of QB?",
    "question_th": "รอบไหนมีสกอร์รวมมากกว่า 79 และตำแหน่ง 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_en": "Which Notre Dame position has a pick lower than 5 and round 7?",
    "question_th": "ตำแหน่ง Notre Dame ใดที่มีสิทธิเลือกต่ำกว่า 5 และรอบ 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_en": "What was week 17's date?",
    "question_th": "วันที่ 17 ของสัปดาห์คืออะไร?",
    "context": "CREATE TABLE table_name_21 (date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_16 WHERE result = \"l 24–3\"",
    "question_en": "Which Opponent has a Result of l 24–3?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีผลการแข่งขัน l 24–3?",
    "context": "CREATE TABLE table_name_16 (opponent VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_81 WHERE week = 5",
    "question_en": "What was week 5's result?",
    "question_th": "ผลลัพธ์ของสัปดาห์ที่ 5 เป็นอย่างไร?",
    "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_en": "What was the score for Groves High School when the high assist was Giovanni Riley (9)?",
    "question_th": "คะแนนของ Groves High School เมื่อทำแอสซิสต์สูงคือ 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_en": "What was the high points for opponent Mid-Michigan destroyers on January 3?",
    "question_th": "อะไรคือคะแนนสูงสุดสำหรับเรือพิฆาต Mid-Michigan ของคู่ต่อสู้ในวันที่ 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_en": "What opponent is at Richmond Academy?",
    "question_th": "คู่ต่อสู้คนไหนที่ 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_en": "What were the high points on March 29?",
    "question_th": "จุดสูงสุดในวันที่ 29 มีนาคมมีอะไรบ้าง?",
    "context": "CREATE TABLE table_name_88 (high_points VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_34 WHERE score = \"95-101\"",
    "question_en": "Which opponent scored 95-101?",
    "question_th": "คู่ต่อสู้คนไหนทำคะแนนได้ 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_en": "Who was the (M) Best & Fairest when ray kaduck was president and richard keane was coach?",
    "question_th": "ใครคือ (M) Best & Fairest เมื่อเรย์ คาดัคเป็นประธาน และริชาร์ด คีนเป็นโค้ช?",
    "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_en": "What was the (M) Finishe position when ray kaduck was president and corey bowen was coach?",
    "question_th": "ตำแหน่ง (M) Finishe คืออะไรเมื่อเรย์ คาดัคเป็นประธาน และคอรีย์ โบเวนเป็นโค้ช",
    "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–114 (ot)\"",
    "question_en": "Which Game has a Score of l 102–114 (ot)?",
    "question_th": "เกมใดมีคะแนน l 102–114 (ot)",
    "context": "CREATE TABLE table_name_90 (game INTEGER, score VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_18 WHERE date = \"january 31\"",
    "question_en": "Which Record has a Date of january 31?",
    "question_th": "บันทึกใดมีวันที่ 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_en": "Which Record has a Game larger than 34, and a Date of january 9?",
    "question_th": "บันทึกใดที่มีเกมใหญ่กว่า 34 และวันที่ 9 มกราคม",
    "context": "CREATE TABLE table_name_34 (record VARCHAR, game VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_name_27 WHERE record = \"11–34\"",
    "question_en": "Which Location Attendance has a Record of 11–34?",
    "question_th": "การเข้าร่วมสถานที่ใดมีบันทึก 11–34 ครั้ง",
    "context": "CREATE TABLE table_name_27 (location_attendance VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_95 WHERE score = \"w 100-99\"",
    "question_en": "What is the record for the w 100-99 score?",
    "question_th": "สถิติสกอร์ w 100-99 เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_95 (record VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_67 WHERE record = \"23-17\"",
    "question_en": "What is the location for the 23-17 record?",
    "question_th": "บันทึก 23-17 อยู่ที่ไหน?",
    "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_en": "What is the location before game 44, and a 20-16 record?",
    "question_th": "ตำแหน่งก่อนเกมที่ 44 และสถิติ 20-16 อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_10 (location VARCHAR, game VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_69 WHERE match = \"match reports\"",
    "question_en": "What was the result for the match with entry Match Reports?",
    "question_th": "ผลลัพธ์ของการแข่งขันกับรายงานการแข่งขันรายการคืออะไร?",
    "context": "CREATE TABLE table_name_69 (result VARCHAR, match VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_13 WHERE result = \"3-3\"",
    "question_en": "What was the location of the match that had a result of 3-3?",
    "question_th": "นัดที่ผลสกอร์ 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_en": "What was the lineup for match 12 that had a competition of Group Stage?",
    "question_th": "รายชื่อผู้เล่นตัวจริงสำหรับนัดที่ 12 ที่จะแข่งขันในรอบแบ่งกลุ่มคืออะไร?",
    "context": "CREATE TABLE table_name_65 (lineup VARCHAR, competition VARCHAR, match VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_97 WHERE location = \"boston\"",
    "question_en": "What was the result for the match held in Boston?",
    "question_th": "ผลการแข่งขันที่บอสตันเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_97 (result VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT SUM(game) FROM table_name_42 WHERE opponent = \"@ st. louis hawks\"",
    "question_en": "How many total games were played against @ St. Louis Hawks this season?",
    "question_th": "ฤดูกาลนี้เล่นกับ @ St. Louis Hawks ทั้งหมดกี่เกม?",
    "context": "CREATE TABLE table_name_42 (game INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_39 WHERE game = 48",
    "question_en": "On what day was Game 48 played?",
    "question_th": "เกม 48 เล่นวันไหน?",
    "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_en": "What is the pick number later than round 1, for Reyshawn Terry?",
    "question_th": "เรย์ชอว์น เทอร์รี่ หยิบหมายเลขหลังรอบ 1 เป็นเท่าใด?",
    "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_en": "What round was the player Ty Lawson with a pick earlier than 18?",
    "question_th": "ผู้เล่น Ty Lawson ที่เลือกก่อนอายุ 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_en": "What is the pick number for Danny Green in a round less than 2?",
    "question_th": "หมายเลขเลือกของ Danny Green ในรอบที่น้อยกว่า 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_en": "What is the pick number in a year earlier than 2009, with a round higher than 1?",
    "question_th": "หมายเลขเลือกในปีก่อนหน้าปี 2552 โดยมีรอบสูงกว่า 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_en": "What are the notes for the Mandarin Chinese program on CTV earlier than 2013?",
    "question_th": "หมายเหตุสำหรับรายการภาษาจีนกลางทาง CTV ก่อนปี 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_en": "What is the language for Strong Heart?",
    "question_th": "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_en": "What is the title for the Korean progran on KBS2?",
    "question_th": "รายการเกาหลีทางช่อง 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_en": "What is the network that aired Star King prior to 2011?",
    "question_th": "เครือข่ายใดที่ออกอากาศ Star King ก่อนปี 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_en": "What are the notes for Happy Camp?",
    "question_th": "หมายเหตุสำหรับ 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_en": "Which Pick has a College of ohio state?",
    "question_th": "ตัวเลือกใดมีวิทยาลัยแห่งรัฐโอไฮโอ",
    "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_en": "Which Round has a Position of lb, and a Pick smaller than 25?",
    "question_th": "รอบใดที่มีตำแหน่งเป็นปอนด์ และตัวเลือกที่น้อยกว่า 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_en": "Which week has a result L 56-3?",
    "question_th": "สัปดาห์ไหนมีผล 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_en": "Where is the player Raymond Floyd?",
    "question_th": "ผู้เล่น เรย์มอนด์ ฟลอยด์ อยู่ที่ไหน?",
    "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_en": "Which country has a score of 71-72-73-69=285?",
    "question_th": "ประเทศใดมีคะแนน 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_en": "What is the highest Money ( $ ), when Score is \"69-71-70-74=284\"?",
    "question_th": "เงินสูงสุด ($ ) คือเท่าไร เมื่อคะแนนคือ \"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_en": "What is Place, when Score is \"71-71-69-71=282\"?",
    "question_th": "สถานที่คืออะไร เมื่อคะแนนคือ \"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_en": "What is Score, when Player is \"Dow Finsterwald\"?",
    "question_th": "Score คืออะไร เมื่อผู้เล่นคือ \"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_en": "Which venue did the runner have a note of 1:23:07?",
    "question_th": "นักวิ่งมีโน้ต 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_en": "What is the note result when the runner finished 19th in 2008?",
    "question_th": "ผลการบันทึกเมื่อนักวิ่งจบอันดับที่ 19 ในปี 2551 คืออะไร?",
    "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_en": "What are the points 1 for the team with position less than 13 and goal difference of +16?",
    "question_th": "1 แต้มของทีมอันดับน้อยกว่า 13 และผลต่างประตูได้ +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_en": "What is the goal difference where the goals against is less than 54, goals for is greater than 51 and points 1 is 63?",
    "question_th": "อะไรคือผลต่างประตูโดยที่ประตูต่อน้อยกว่า 54 ประตูมากกว่า 51 และคะแนน 1 คือ 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_en": "What is the number of games lost when goal difference is +13 and draws are more than 12?",
    "question_th": "จำนวนเกมที่แพ้เมื่อผลต่างประตูคือ +13 และเสมอมากกว่า 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_en": "What was the finishing position for the car that started in grid 6?",
    "question_th": "ตำแหน่งเข้าเส้นชัยของรถที่ออกสตาร์ทในกริด 6 คืออะไร?",
    "context": "CREATE TABLE table_name_21 (fin_pos VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_2 WHERE grid = \"11\"",
    "question_en": "What team started in grid 11?",
    "question_th": "ทีมใดออกสตาร์ทในกริด 11?",
    "context": "CREATE TABLE table_name_2 (team VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT time_retired FROM table_name_93 WHERE car_no = \"6\"",
    "question_en": "What was the time/retired of car number 6.",
    "question_th": "รถหมายเลข 6 หมดอายุเมื่อไหร่/ครับ",
    "context": "CREATE TABLE table_name_93 (time_retired VARCHAR, car_no VARCHAR)"
  },
  {
    "answer": "SELECT grid FROM table_name_9 WHERE points = \"14\"",
    "question_en": "What was the grid number of the team and driver with 14 points?",
    "question_th": "หมายเลขตารางของทีมและนักแข่งที่มี 14 แต้มคือเท่าใด",
    "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_en": "Who did Thomaz Bellucci play against when he became runner-up on a clay surface?",
    "question_th": "Thomaz Bellucci เล่นกับใครเมื่อเขาได้รองแชมป์บนพื้นดินเหนียว?",
    "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_en": "What tournament did Thomaz Bellucci become runner-up on a clay surface?",
    "question_th": "Thomaz Bellucci คว้าตำแหน่งรองชนะเลิศบนพื้นผิวดินเหนียวในทัวร์นาเมนต์ใด",
    "context": "CREATE TABLE table_name_82 (tournament VARCHAR, outcome VARCHAR, surface VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_66 WHERE opponent = \"tommy robredo\"",
    "question_en": "What type of surface did Thomaz Bellucci play against tommy robredo?",
    "question_th": "โธมาซ เบลลุชชี เล่นกับทอมมี่ โรเบรโดด้วยพื้นผิวแบบใด",
    "context": "CREATE TABLE table_name_66 (surface VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT res FROM table_name_12 WHERE opponent = \"ryan schultz\"",
    "question_en": "What is the result of the match against Ryan Schultz?",
    "question_th": "ผลการแข่งขันกับไรอัน ชูลทซ์เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_12 (res VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_39 WHERE opponent = \"cedric marks\"",
    "question_en": "What round was the game against Cedric Marks?",
    "question_th": "เกมกับ Cedric Marks ในรอบใด?",
    "context": "CREATE TABLE table_name_39 (round VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_96 WHERE opponent = \"chris mounce\"",
    "question_en": "What was the record of the match against Chris Mounce?",
    "question_th": "บันทึกการแข่งขันกับ 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_en": "What is the method in the round 2 win over Nick Gilardi?",
    "question_th": "รอบ 2 ชนะ นิค กิลาร์ดี มีวิธีอะไรบ้าง?",
    "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_en": "Who is number 7 when Sophia is number 3 and Abigail is number 10?",
    "question_th": "ใครคือหมายเลข 7 เมื่อโซเฟียคือหมายเลข 3 และอาบิเกลคือหมายเลข 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_en": "Which region (year) has Abigail at number 7, Sophia at number 1 and Aaliyah at number 5?",
    "question_th": "ภูมิภาคใด (ปี) มีอาบิเกลอยู่อันดับ 7 โซเฟียอยู่อันดับ 1 และอาลิยาห์อยู่อันดับ 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_en": "Who is number 4 when Harper is number 10 and Abigail is number 5?",
    "question_th": "ใครคือหมายเลข 4 เมื่อฮาร์เปอร์คือหมายเลข 10 และอบิเกลคือหมายเลข 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_en": "What is Player, when To Par is \"+1\", and when Score is \"75-68=143\"?",
    "question_th": "ผู้เล่นคืออะไร เมื่อถึงพาร์คือ \"+1\" และเมื่อสกอร์คือ \"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_en": "What is Score, when Player is \"Andy North\"?",
    "question_th": "Score คืออะไร เมื่อผู้เล่นคือ \"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_en": "What is To Par, when Score is \"69-72=141\"",
    "question_th": "To Par คืออะไร เมื่อสกอร์คือ \"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_en": "What is Place, when Score is \"73-71=144\", and when Player is \"Scott Simpson\"?",
    "question_th": "อันดับคืออะไร เมื่อคะแนนคือ \"73-71=144\" และเมื่อผู้เล่นคือ \"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_en": "What is Score, when Country is \"United States\", and when Player is \"John Mahaffey\"?",
    "question_th": "Score คืออะไร เมื่อประเทศคือ \"สหรัฐอเมริกา\" และเมื่อผู้เล่นคือ \"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_en": "What is To Par, when Place is \"T1\", and when Player is \"Joey Rassett\"?",
    "question_th": "To Par คืออะไร เมื่ออันดับคือ \"T1\" และเมื่อผู้เล่นคือ \"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_en": "What was the score when the away team was brighton & hove albion?",
    "question_th": "เมื่อทีมเยือน ไบรท์ตัน แอนด์ โฮฟ อัลเบี้ยน สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_21 (score VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_31 WHERE away_team = \"burnley\"",
    "question_en": "When was the away team burnley?",
    "question_th": "เบิร์นลี่ย์ทีมเยือนออกเมื่อไร?",
    "context": "CREATE TABLE table_name_31 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_37 WHERE away_team = \"reading\"",
    "question_en": "Which home team had an away team of Reading?",
    "question_th": "เจ้าบ้านไหนมีทีมเยือนเรดดิ้ง?",
    "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_en": "What year was the accolade for Scottish albums of the decade?",
    "question_th": "รางวัลอัลบั้มแห่งทศวรรษของสกอตแลนด์ในปีใด",
    "context": "CREATE TABLE table_name_83 (year VARCHAR, accolade VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_22 WHERE publication = \"drowned in sound\"",
    "question_en": "What country had the publication, Drowned in Sound?",
    "question_th": "ประเทศใดที่มีการตีพิมพ์ Drown 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_en": "What is the name of the home stadium of Brisbane Lions?",
    "question_th": "สนามเหย้าของบริสเบน ไลออนส์ชื่ออะไร?",
    "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_en": "How much is the crowd attending at colonial stadium where Hawthorn plays?",
    "question_th": "ฝูงชนที่เข้าร่วมสนามกีฬาโคโลเนียลที่ฮอว์ธอร์นเล่นมีจำนวนเท่าใด",
    "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 = \"žalgiris kaunas\"",
    "question_en": "what is the 2nd leg when team #2 is žalgiris kaunas?",
    "question_th": "เลกที่ 2 คืออะไรเมื่อทีม #2 คือ žalgiris kaunas?",
    "context": "CREATE TABLE table_name_47 (team__number2 VARCHAR)"
  },
  {
    "answer": "SELECT 2 AS nd_leg FROM table_name_67 WHERE team__number2 = \"žalgiris kaunas\"",
    "question_en": "what is the 2nd leg when team #2 is žalgiris kaunas?",
    "question_th": "เลกที่ 2 คืออะไรเมื่อทีม #2 คือ žalgiris kaunas?",
    "context": "CREATE TABLE table_name_67 (team__number2 VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_30 WHERE week = 6",
    "question_en": "Who was the opponent in week 6?",
    "question_th": "คู่ต่อสู้ในสัปดาห์ที่ 6 คือใคร?",
    "context": "CREATE TABLE table_name_30 (opponent VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT SUM(week) FROM table_name_42 WHERE attendance = \"55,158\"",
    "question_en": "Which week had an attendance of 55,158?",
    "question_th": "สัปดาห์ใดมีผู้เข้าร่วม 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_en": "What is the lowest game on February 10?",
    "question_th": "เกมไหนต่ำสุดในวันที่ 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_en": "Which Player has a Round larger than 5, and a Position of (g)?",
    "question_th": "ผู้เล่นคนใดมีรอบที่ใหญ่กว่า 5 และมีตำแหน่ง (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_en": "Which Round has a Nationality of united states, and a Player of jimmy hayes?",
    "question_th": "รอบใดมีสัญชาติสหรัฐอเมริกา และมีผู้เล่นของ 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_en": "Which Pick has a Nationality of canada, and a Round of 5?",
    "question_th": "ตัวเลือกใดมีสัญชาติแคนาดา และรอบ 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_en": "Which Club Team has a Position of (d), a Nationality of canada, and a Player of andrew macwilliam?",
    "question_th": "ทีมสโมสรใดมีตำแหน่ง (ง) สัญชาติแคนาดา และผู้เล่นของแอนดรูว์ แมควิลเลียม",
    "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_en": "How much money did jodie mudd get?",
    "question_th": "โจดี้ มัดด์ ได้เงินเท่าไหร่?",
    "context": "CREATE TABLE table_name_1 (money___$__ VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_85 WHERE country = \"australia\"",
    "question_en": "What score did Australia get?",
    "question_th": "ออสเตรเลียได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_85 (score VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT sort_restore FROM table_name_64 WHERE deaths = \"71\"",
    "question_en": "What is the sort value that had deaths of 71?",
    "question_th": "ค่าการเรียงลำดับที่มีผู้เสียชีวิต 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_en": "Which month had a sort value under 39 and 2 deaths?",
    "question_th": "เดือนใดมีค่าเรียงลำดับต่ำกว่า 39 และมีผู้เสียชีวิต 2 ราย",
    "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_en": "What is the number of sort values associated with 389 births?",
    "question_th": "จำนวนค่าการเรียงลำดับที่เกี่ยวข้องกับการเกิด 389 ครั้งเป็นเท่าใด",
    "context": "CREATE TABLE table_name_27 (sort_restore VARCHAR, births VARCHAR)"
  },
  {
    "answer": "SELECT manufacturer FROM table_name_1 WHERE rider = \"colin edwards\"",
    "question_en": "Who was the Manufacturer for the Rider Colin Edwards?",
    "question_th": "ใครเป็นผู้ผลิตสำหรับ 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_en": "With a Grid less than 15, and a Time of +52.833, what is the highest number of Laps?",
    "question_th": "ด้วยกริดที่น้อยกว่า 15 และเวลา +52.833 จำนวนรอบสูงสุดคือเท่าใด",
    "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_en": "What is the average Grid for the Rider Toni Elias with Laps more than 30?",
    "question_th": "เส้นกริดเฉลี่ยของผู้ขับขี่ Toni Elias ที่มีรอบมากกว่า 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_en": "With a Time of +1:37.055, which has the lowest Grid?",
    "question_th": "ด้วยเวลา +1:37.055 ตารางใดมีค่าน้อยที่สุด",
    "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_en": "Which Silver is the highest one that has a Rank of 19, and a Gold larger than 0?",
    "question_th": "เงินใดคือเงินสูงสุดที่มีอันดับ 19 และทองที่มากกว่า 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_en": "Which Bronze is the highest one that has a Rank of 26, and a Total larger than 1?",
    "question_th": "บรอนซ์ใดคืออันที่สูงที่สุดที่มีอันดับ 26 และผลรวมมากกว่า 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_en": "Which Gold has a Nation of india, and a Bronze smaller than 0?",
    "question_th": "ทองคำใดมีชาติอินเดีย และทองแดงมีค่าน้อยกว่า 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_en": "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?",
    "question_th": "ประเทศใดที่มีทองคำมากกว่า 0 และทองแดงน้อยกว่า 2 และผลรวมมากกว่า 3 และเงินมากกว่า 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–7–1\"",
    "question_en": "What is the round number when the record is 15–7–1?",
    "question_th": "หมายเลขกลมเมื่อบันทึกคือ 15–7–1 คืออะไร?",
    "context": "CREATE TABLE table_name_68 (round VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT method FROM table_name_3 WHERE time = \"5:00\" AND record = \"14–6–1\"",
    "question_en": "What is the method when the time is 5:00, and the record is 14–6–1?",
    "question_th": "เมื่อเวลา 5.00 น. และบันทึกคือ 14–6–1 มีวิธีใด",
    "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_en": "What is the home team of the game with a price decision and the new jersey devils as the visitor team?",
    "question_th": "เจ้าบ้านเกมไหนที่มีการตัดสินราคา และมี นิวเจอร์ซีย์ เดวิลส์ เป็นทีมเยือน?",
    "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_en": "What transfer fee did Birmingham City get on 30 June 2010?",
    "question_th": "เบอร์มิงแฮม ซิตี้ ได้รับค่าธรรมเนียมการโอนเท่าใดในวันที่ 30 มิถุนายน พ.ศ. 2553?",
    "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_en": "What type of move was Elding from ENG?",
    "question_th": "Elding จาก ENG เป็นท่าแบบไหน?",
    "context": "CREATE TABLE table_name_28 (type VARCHAR, country VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT ends FROM table_name_34 WHERE name = \"donaldson\"",
    "question_en": "When does Donaldson's move end?",
    "question_th": "การเคลื่อนไหวของ Donaldson จะสิ้นสุดเมื่อใด",
    "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_en": "Which Silver has a Total of 7, and a Gold larger than 1?",
    "question_th": "เงินใดมีทั้งหมด 7 และทองมากกว่า 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_en": "Which Bronze has a Gold smaller than 16, a Rank of 10, and a Nation of italy?",
    "question_th": "ทองแดงใดมีทองคำน้อยกว่า 16, อันดับ 10 และประเทศอิตาลี",
    "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_en": "Which Total has a Bronze larger than 2, a Gold smaller than 16, a Silver of 0, and a Rank of 13?",
    "question_th": "ผลรวมใดที่มีทองแดงมากกว่า 2, ทองคำน้อยกว่า 16, เงินเป็น 0 และอันดับ 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_en": "Which Gold has a Nation of malaysia, and a Silver smaller than 0?",
    "question_th": "ทองคำใดมีประเทศมาเลเซีย และเงินมีค่าน้อยกว่า 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‰\"",
    "question_en": "Which Population (2005) has a Literacy (2003) of 90%, and an Infant Mortality (2002) of 18.3‰?",
    "question_th": "ประชากรใด (2548) ที่มีการรู้หนังสือ (2546) 90% และการตายของทารก (2545) 18.3 ‰",
    "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²_ = 340086.7 AND population__2005_ < 5926300",
    "question_en": "Which Density (2005) has an Area (km²) of 340086.7, and a Population (2005) smaller than 5926300?",
    "question_th": "ความหนาแน่นใด (2548) มีพื้นที่ (กม. ²) เท่ากับ 340086.7 และประชากร (2548) น้อยกว่า 5926300",
    "context": "CREATE TABLE table_name_25 (density__2005_ INTEGER, area__km²_ VARCHAR, population__2005_ VARCHAR)"
  },
  {
    "answer": "SELECT MAX(gdp_per_capita__us) AS $___2004_ FROM table_name_37 WHERE area__km²_ > 148825.6 AND state = \"roraima\"",
    "question_en": "Which GDP per capita (US$) (2004) is the highest one that has an Area (km²) larger than 148825.6, and a State of roraima?",
    "question_th": "GDP ต่อหัว (US$) ใด (2004) ใดที่สูงที่สุดที่มีพื้นที่ (กม. ²) มากกว่า 148825.6 และรัฐโรไรมา",
    "context": "CREATE TABLE table_name_37 (gdp_per_capita__us INTEGER, area__km²_ 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ão\"",
    "question_en": "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ão?",
    "question_th": "การรู้หนังสือ (2546) ใดที่มี HDI (2548) น้อยกว่า 0.718 และ GDP ต่อหัว (US$) (2547) น้อยกว่า 3877 และ State of Maranhão",
    "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²_ = 1247689.5",
    "question_en": "Which GDP per capita (US$) (2004) has a Literacy (2003) of 90%, and an Area (km²) of 1247689.5?",
    "question_th": "GDP ต่อหัว (US$) ใด (2547) ที่มีการรู้หนังสือ (2546) 90% และพื้นที่ (km²) 1247689.5",
    "context": "CREATE TABLE table_name_53 (gdp_per_capita__us INTEGER, literacy__2003_ VARCHAR, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT date_and_opponent FROM table_name_4 WHERE position = \"f\" AND career_games = \"123 games\"",
    "question_en": "Name the Date and an Opponent which has a f Position and Career Games of 123 games?",
    "question_th": "ตั้งชื่อวันที่และคู่ต่อสู้ที่มีตำแหน่งและเกมอาชีพ 123 เกมหรือไม่?",
    "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–2008\" AND date_and_opponent = \"2/17/07 vs. purdue\"",
    "question_en": "Which Name has a Years Played of 2004–2008, and a Date and Opponent of 2/17/07 vs. purdue?",
    "question_th": "ชื่อใดมีปีที่เล่นในปี 2547-2551 และวันที่และฝ่ายตรงข้ามของ 17/2/50 เทียบกับเพอร์ดู?",
    "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–milwaukee\"",
    "question_en": "Which Career Games has a Date and Opponent of 12/15/92 vs. uw–milwaukee?",
    "question_th": "เกมอาชีพใดที่มีวันที่และเป็นฝ่ายตรงข้ามในวันที่ 12/15/92 เทียบกับ uw–milwaukee?",
    "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–2008\" AND name = \"jolene anderson\"",
    "question_en": "WHich Scored 1,500 Points has a Years Played of 2004–2008 and a Name of jolene anderson?",
    "question_th": "ซึ่งทำคะแนนได้ 1,500 คะแนนในช่วงปีเล่นปี 2547-2551 และชื่อของโจลีน แอนเดอร์สัน",
    "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_en": "Which Time has a Round smaller than 3, and an Opponent of bao quach?",
    "question_th": "เวลาใดที่มีรอบน้อยกว่า 3 และเป็นฝ่ายตรงข้ามของ 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_en": "Which Round has a Record of 10-6?",
    "question_th": "รอบใดมีสถิติ 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_en": "Which Opponent has a Round smaller than 3, and a Time of 1:09?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีรอบที่น้อยกว่า 3 และเวลา 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_en": "Which Time has an Opponent of josh branham?",
    "question_th": "ฝ่ายตรงข้ามของ 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_en": "Which Time has a Round larger than 2, and an Opponent of jesse brock?",
    "question_th": "เวลาใดที่มีรอบมากกว่า 2 และเป็นฝ่ายตรงข้ามของเจสซี บร็อค",
    "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_en": "Which Round has an Event of nle - capital city carnage?",
    "question_th": "รอบไหนมี 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_en": "Which Round has an Opponent of ryan bixler?",
    "question_th": "รอบใดที่มีคู่ต่อสู้ของ Ryan Bixler?",
    "context": "CREATE TABLE table_name_6 (round VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_47 WHERE record = \"19-9\"",
    "question_en": "Which Event has a Record of 19-9?",
    "question_th": "เหตุการณ์ใดมีสถิติ 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–2\"",
    "question_en": "Which Method has a Round of 1, and a Record of 4–2?",
    "question_th": "วิธีใดที่มีรอบ 1 และสถิติ 4–2",
    "context": "CREATE TABLE table_name_37 (method VARCHAR, round VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_84 WHERE time = \"4:51\"",
    "question_en": "Which Opponent has a Time of 4:51?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีเวลา 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_en": "Which Round has an Opponent of jorge magalhaes?",
    "question_th": "รอบใดที่มีคู่ต่อสู้ของ 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_en": "Which Round has a Location of bahia, brazil?",
    "question_th": "รอบใดมีที่ตั้งของบาเอีย ประเทศบราซิล",
    "context": "CREATE TABLE table_name_52 (round INTEGER, location VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_2 WHERE event = \"jungle fight 5\"",
    "question_en": "Which Opponent has an Event of jungle fight 5?",
    "question_th": "ฝ่ายตรงข้ามคนไหนมีกิจกรรม 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_en": "Tiger Woods with a total less than 293 had what To par?",
    "question_th": "ไทเกอร์ วูดส์ ที่สกอร์รวมน้อยกว่า 293 พาร์ได้เท่าไร?",
    "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_en": "Bernhard Langer maximum total was what?",
    "question_th": "ผลรวมสูงสุดของ Bernhard Langer คืออะไร?",
    "context": "CREATE TABLE table_name_27 (total INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT AVG(total) FROM table_name_39 WHERE finish = \"t11\"",
    "question_en": "What is the average of the total when t11 is the finish?",
    "question_th": "ยอดรวมเมื่อ t11 จบคือเท่าไหร่?",
    "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_en": "Which Rider has Laps smaller than 24, and a Grid smaller than 12, and a Manufacturer of aprilia?",
    "question_th": "ผู้ขับขี่คนไหนที่มีรอบสนามน้อยกว่า 24 และกริดเล็กกว่า 12 และเป็นผู้ผลิต 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_en": "What were grid 7's laps?",
    "question_th": "รอบของกริด 7 คืออะไร?",
    "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 = \"ángel rodríguez\"",
    "question_en": "Which Time/Retired has Laps smaller than 24, and a Manufacturer of aprilia, and a Grid smaller than 12, and a Rider of ángel rodríguez?",
    "question_th": "เวลาใด/เกษียณแล้วที่มีรอบสนามน้อยกว่า 24 และผู้ผลิต Aprilia และกริดที่เล็กกว่า 12 และผู้ขับขี่ของ ángel rodríguez?",
    "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_en": "How many Laps have a Time/Retired of +1:42.517, and a Grid larger than 33?",
    "question_th": "กี่รอบมีเวลา/เกษียณที่ +1:42.517 และตารางที่ใหญ่กว่า 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_en": "Which chassis-engine had 77 laps?",
    "question_th": "เครื่องยนต์แชสซีใดมี 77 รอบ?",
    "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_en": "What is the class of team liqui moly equipe, which has less than 71 laps?",
    "question_th": "ทีม liqui moly Equipe คลาสไหนที่มีรอบน้อยกว่า 71 รอบคือทีมอะไร?",
    "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_en": "What is the team of driver klaus ludwig, who is class c1 and has more than 77 laps?",
    "question_th": "ทีมนักแข่งเคลาส์ ลุดวิก คลาส c1 และทำมากกว่า 77 รอบคือทีมอะไร?",
    "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_en": "Who is the driver of the chassis-engine porsche 956 gti?",
    "question_th": "ใครคือคนขับเครื่องยนต์แชสซีของปอร์เช่ 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_en": "What team has a porsche 956 b chassis-engine with less than 79 laps?",
    "question_th": "ทีมใดมีเครื่องยนต์แชสซีของปอร์เช่ 956 b ที่มีรอบน้อยกว่า 79 รอบ?",
    "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_en": "What was the worldwide gross for the film directed by joe pytka?",
    "question_th": "รายได้ทั่วโลกของภาพยนตร์ที่กำกับโดย 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_en": "What was the average rank for the film directed by roland emmerich under the studio of 20th century fox?",
    "question_th": "อันดับเฉลี่ยของภาพยนตร์ที่กำกับโดยโรแลนด์ เอ็มเมอริช ภายใต้สตูดิโอของ 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_en": "What is the average rank for the film directed by michael bay?",
    "question_th": "ภาพยนตร์ที่กำกับโดยไมเคิล เบย์ อยู่ในอันดับเฉลี่ยเท่าไร",
    "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_en": "What is the 3rd largest where the largest city is Ardabil?",
    "question_th": "เมืองที่ใหญ่เป็นอันดับ 3 คือเมืองใดที่ Ardabil?",
    "context": "CREATE TABLE table_name_35 (largest_city VARCHAR)"
  },
  {
    "answer": "SELECT province FROM table_name_73 WHERE largest_city = \"birjand\"",
    "question_en": "What province has the largest city of Birjand?",
    "question_th": "จังหวัดใดมีเมือง Birjand ที่ใหญ่ที่สุด?",
    "context": "CREATE TABLE table_name_73 (province VARCHAR, largest_city VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_58 WHERE date = \"september 28\"",
    "question_en": "What was the score on september 28?",
    "question_th": "คะแนนวันที่ 28 กันยายน เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_58 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_28 WHERE score = \"29-7\"",
    "question_en": "What date was the score 29-7?",
    "question_th": "คะแนน 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_en": "How much January has a Game smaller than 37, and an Opponent of detroit red wings?",
    "question_th": "เดือนมกราคมมีเกมที่เล็กกว่า 37 และฝ่ายตรงข้ามของปีกสีแดงดีทรอยต์มากแค่ไหน?",
    "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_en": "Which January has an Opponent of toronto maple leafs?",
    "question_th": "เดือนมกราคมใดที่มีฝ่ายตรงข้ามของใบเมเปิ้ลโตรอนโต?",
    "context": "CREATE TABLE table_name_55 (january VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT AVG(january) FROM table_name_74 WHERE opponent = \"@ detroit red wings\"",
    "question_en": "Which January has an Opponent of @ detroit red wings?",
    "question_th": "มกราคมคนไหนมีคู่แข่ง @ดีทรอยต์ ปีกแดง?",
    "context": "CREATE TABLE table_name_74 (january INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_93 WHERE score = \"won 1-2\"",
    "question_en": "What date was the score won 1-2?",
    "question_th": "สกอร์ชนะ 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_en": "What was the score when Bornor Regis Town was the opponent?",
    "question_th": "เมื่อบอร์เนอร์ เรจิส ทาวน์ เป็นคู่ต่อสู้ทำสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_58 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_86 WHERE opponent = \"tonbridge angels\"",
    "question_en": "What is the number of people in attendance when Tonbridge Angels is the opponent?",
    "question_th": "จำนวนคนที่เข้าร่วมเมื่อ Tonbridge Angels เป็นคู่ต่อสู้คือเท่าไร?",
    "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_en": "What is the score when the attendance shows TBC, and Sidley United was the opponent?",
    "question_th": "คะแนนเมื่อผู้เข้าร่วมแสดง TBC และ Sidley United เป็นคู่ต่อสู้?",
    "context": "CREATE TABLE table_name_81 (score VARCHAR, attendance VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_97 WHERE scorers = \"match report\"",
    "question_en": "What is the score when the scorers show match report?",
    "question_th": "คะแนนเมื่อผู้ทำคะแนนแสดงรายงานการแข่งขันเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_97 (score VARCHAR, scorers VARCHAR)"
  },
  {
    "answer": "SELECT album FROM table_name_87 WHERE label = \"msb 801\"",
    "question_en": "Which Album has a Label of msb 801?",
    "question_th": "อัลบั้มใดมีป้ายกำกับ msb 801?",
    "context": "CREATE TABLE table_name_87 (album VARCHAR, label VARCHAR)"
  },
  {
    "answer": "SELECT album FROM table_name_84 WHERE label = \"tumbleweed 1014\"",
    "question_en": "Which Album has a Label of tumbleweed 1014?",
    "question_th": "อัลบั้มไหนมีป้ายกำกับ tumbleweed 1014?",
    "context": "CREATE TABLE table_name_84 (album VARCHAR, label VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_72 WHERE tie_no = \"12\"",
    "question_en": "What was the score when the tie no was 12?",
    "question_th": "เมื่อเสมอกันที่ 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_en": "What date was the match against carlisle united?",
    "question_th": "แข่งกับคาร์ไลล์ยูไนเต็ดวันไหน?",
    "context": "CREATE TABLE table_name_65 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_11 WHERE away_team = \"millwall\"",
    "question_en": "Who was the home team when millwall was the away team?",
    "question_th": "เมื่อมิลล์วอลล์เป็นทีมเยือนคือใคร?",
    "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_en": "What category was the nominated in after 2008?",
    "question_th": "ได้รับการเสนอชื่อเข้าชิงประเภทใดหลังจากปี 2551",
    "context": "CREATE TABLE table_name_31 (category VARCHAR, outcome VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_46 WHERE category = \"supernova award\"",
    "question_en": "What year had the supernova award?",
    "question_th": "ซูเปอร์โนวาได้รับรางวัลปีไหน?",
    "context": "CREATE TABLE table_name_46 (year VARCHAR, category VARCHAR)"
  },
  {
    "answer": "SELECT category FROM table_name_45 WHERE outcome = \"winner\"",
    "question_en": "What category was the winner in?",
    "question_th": "ผู้ชนะอยู่ในประเภทใด?",
    "context": "CREATE TABLE table_name_45 (category VARCHAR, outcome VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_7 WHERE iata = \"gva\"",
    "question_en": "what is the country when the iata is gva?",
    "question_th": "ประเทศอะไรเมื่อ iata เป็น gva?",
    "context": "CREATE TABLE table_name_7 (country VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_34 WHERE city = \"cardiff\"",
    "question_en": "what is the country for the city of cardiff?",
    "question_th": "คาร์ดิฟฟ์อยู่ประเทศอะไร?",
    "context": "CREATE TABLE table_name_34 (country VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT icao FROM table_name_28 WHERE country = \"norway\"",
    "question_en": "what is the icao when the country is norway?",
    "question_th": "icao คืออะไรเมื่อประเทศเป็นนอร์เวย์?",
    "context": "CREATE TABLE table_name_28 (icao VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_96 WHERE country = \"netherlands\"",
    "question_en": "what is the city for the country of netherlands?",
    "question_th": "เมืองอะไรของประเทศเนเธอร์แลนด์?",
    "context": "CREATE TABLE table_name_96 (city VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT airport FROM table_name_41 WHERE city = \"düsseldorf\"",
    "question_en": "what is the airport when the city is düsseldorf?",
    "question_th": "สนามบินไหนคือเมืองที่ดึสเซลดอร์ฟ?",
    "context": "CREATE TABLE table_name_41 (airport VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT iata FROM table_name_91 WHERE city = \"leipzig\"",
    "question_en": "what is the iata when the city is leipzig?",
    "question_th": "iata คืออะไรเมื่อเมืองไลพ์ซิก?",
    "context": "CREATE TABLE table_name_91 (iata VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_82 WHERE february = 23",
    "question_en": "What is the record on February 23?",
    "question_th": "บันทึกเมื่อวันที่ 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_en": "What was the rank of the rider whose ascent time was 43:24 before the year 2002?",
    "question_th": "นักบิดที่มีเวลาไต่ขึ้นเมื่อเวลา 43:24 น. ก่อนปี 2545 มีอันดับเท่าใด",
    "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_en": "Who is the rider that has a rank of less than 8 in the year 2000, and whose speed was 18.32 km/h?",
    "question_th": "ใครคือนักบิดที่มีอันดับต่ำกว่า 8 ในปี 2543 และมีความเร็ว 18.32 กม./ชม.?",
    "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_en": "What is the number of completions and attempts taken in 2009?",
    "question_th": "จำนวนความสำเร็จและความพยายามที่เกิดขึ้นในปี 2552 เป็นเท่าใด",
    "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_en": "What is the completion/attempts value for the year with an average per game of 36.5?",
    "question_th": "มูลค่าการสำเร็จ/ความพยายามสำหรับปีโดยเฉลี่ยต่อเกมที่ 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_en": "What is the long value for the year with an average/game of 160.9?",
    "question_th": "ค่าระยะยาวสำหรับปีโดยเฉลี่ย/เกมที่ 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_en": "What was the highest attendance of February 7, 2009 and more than 49 points?",
    "question_th": "ผู้เข้าร่วมสูงสุดในวันที่ 7 กุมภาพันธ์ 2552 และมากกว่า 49 คะแนนคือเท่าใด",
    "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_en": "Which game has a number lower than 57 and more than 50 points?",
    "question_th": "เกมใดมีตัวเลขต่ำกว่า 57 และมากกว่า 50 แต้ม?",
    "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_en": "What game  in February 10, 2009 has the most points and a game number larger than 54?",
    "question_th": "เกมใดในวันที่ 10 กุมภาพันธ์ 2552 มีคะแนนมากที่สุดและมีจำนวนเกมมากกว่า 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_en": "What's the current streak with a last 10 meetings of lsu, 2-1?",
    "question_th": "สถิติการพบกัน 10 นัดหลังสุดของแอลเอสยู 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_en": "What is the probable future word for the simple present/future word high grade?",
    "question_th": "คำอนาคตที่น่าจะเป็นสำหรับคำปัจจุบัน/อนาคตที่เรียบง่ายเกรดสูงคืออะไร?",
    "context": "CREATE TABLE table_name_82 (probable_future VARCHAR, simple_present_future VARCHAR)"
  },
  {
    "answer": "SELECT injunctive FROM table_name_99 WHERE simple_past = \"गरुँला garũlā 'i will (probably) do'\"",
    "question_en": "What is the injunctive for the Simple Past of गरुँला garũlā 'I will (probably) do'?",
    "question_th": "คำสั่งห้ามสำหรับอดีตที่เรียบง่ายของ गरुँला garũlā 'ฉันจะ (อาจจะ) ทำ' คืออะไร?",
    "context": "CREATE TABLE table_name_99 (injunctive VARCHAR, simple_past VARCHAR)"
  },
  {
    "answer": "SELECT took_office FROM table_name_28 WHERE minister = \"giorgia meloni\"",
    "question_en": "What is the date of taking office for Giorgia Meloni?",
    "question_th": "วันที่เข้ารับตำแหน่ง 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_en": "Which party was Andrea Ronchi from?",
    "question_th": "Andrea Ronchi มาจากพรรคไหน?",
    "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_en": "What is the lowest Division, when Team is \"Benfica\", and when Apps is 22?",
    "question_th": "ดิวิชั่นต่ำสุดคือเมื่อทีมคือ \"เบนฟิก้า\" และเมื่อแอปส์อายุ 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_en": "What Championship had a winning score of 69-71-67-68=275?",
    "question_th": "แชมป์รายการไหนมีคะแนนชนะ 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_en": "What is Jockey, when Time is 1:15.89?",
    "question_th": "Jockey คืออะไร เมื่อเวลา 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_en": "What is Time, when Jockey is John Velazquez, and when Trainer is Todd A. Pletcher?",
    "question_th": "เวลาคืออะไร เมื่อ Jockey คือ John Velazquez และเมื่อ Trainer คือ 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_en": "What is Winner, when Year is 2001?",
    "question_th": "วินเนอร์คืออะไร เมื่อปี 2544 คือ?",
    "context": "CREATE TABLE table_name_34 (winner VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT jockey FROM table_name_10 WHERE winner = \"alke\"",
    "question_en": "What is Jockey, when Winner is Alke?",
    "question_th": "Jockey คืออะไร เมื่อผู้ชนะคือ Alke?",
    "context": "CREATE TABLE table_name_10 (jockey VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT AVG(laps) FROM table_name_42 WHERE time = \"+50.653\"",
    "question_en": "What is the average laps for the +50.653 time?",
    "question_th": "รอบเฉลี่ยสำหรับเวลา +50.653 คือเท่าไร?",
    "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_en": "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?",
    "question_th": "การแข่งขันสูงสุดคือแต้มน้อยกว่า 8 อันดับที่มากกว่า 13 และเสมอน้อยกว่า 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_en": "What is the average points when the drawn is less than 0?",
    "question_th": "แต้มเฉลี่ยเมื่อหวยน้อยกว่า 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_en": "What was Turkey's lowest gold when there were less than 2 bronze?",
    "question_th": "ทองคำต่ำสุดของตุรกีเมื่อมีน้อยกว่า 2 เหรียญทองแดงคือเท่าไร?",
    "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_en": "What is the average area in square miles for the hunan administrative division with a national share less than 2.19%?",
    "question_th": "พื้นที่เฉลี่ยในตารางไมล์ของเขตบริหารหูหนานที่มีส่วนแบ่งระดับชาติน้อยกว่า 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_en": "What is Central Michigan's average overall when the pick was 8?",
    "question_th": "ค่าเฉลี่ยโดยรวมของ Central Michigan เมื่อเลือกคือ 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_en": "what is the record when the opponent is jeff williams?",
    "question_th": "บันทึกเมื่อคู่ต่อสู้คือเจฟฟ์ วิลเลียมส์เป็นอย่างไรบ้าง?",
    "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_en": "what is the method for round 1 and the opponent is bobby mcmaster?",
    "question_th": "รอบที่ 1 มีวิธีอะไรบ้าง และคู่ต่อสู้คือ บ๊อบบี้ แมคมาสเตอร์ ?",
    "context": "CREATE TABLE table_name_97 (method VARCHAR, round VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_7 WHERE time = \"3:15\"",
    "question_en": "what is the location when the time is 3:15?",
    "question_th": "เวลา 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_en": "what is the record when the round is before 3 and the time si 4:59?",
    "question_th": "บันทึกเมื่อรอบก่อน 3 ทุ่มและเวลา 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ção\"",
    "question_en": "what is the record when the event is shido usa mma and the opponent is raphael assunção?",
    "question_th": "บันทึกอะไรคือเหตุการณ์คือ shido usa mma และคู่ต่อสู้คือ raphael assunção?",
    "context": "CREATE TABLE table_name_24 (record VARCHAR, event VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT money___$__ FROM table_name_58 WHERE player = \"ben crenshaw\"",
    "question_en": "How much money did Ben Crenshaw earn?",
    "question_th": "Ben Crenshaw ทำเงินได้เท่าไหร่?",
    "context": "CREATE TABLE table_name_58 (money___$__ VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_28 WHERE score = \"2-1\"",
    "question_en": "what is the competition when the score is 2-1?",
    "question_th": "การแข่งขันเป็นอย่างไรเมื่อสกอร์เป็น 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_en": "what is the venue when the score is 10-0 on 1997-06-22?",
    "question_th": "สนามไหนที่สกอร์เป็น 10-0 เมื่อวันที่ 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_en": "what is the venue when the competition is 1996 afc asian cup group stage?",
    "question_th": "สถานที่จัดการแข่งขันคือเอเอฟซี เอเชียนคัพ ปี 1996 รอบแบ่งกลุ่มคือที่ไหน?",
    "context": "CREATE TABLE table_name_66 (venue VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_35 WHERE date = \"1995-08-06\"",
    "question_en": "what is the competition when the date is 1995-08-06?",
    "question_th": "การแข่งขันคือวันที่ 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_en": "What is the total number of weeks that the Giants played against the Dallas Cowboys?",
    "question_th": "จำนวนสัปดาห์ทั้งหมดที่ไจแอนต์เล่นกับดัลลัส คาวบอยส์คือเท่าใด?",
    "context": "CREATE TABLE table_name_25 (week VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_62 WHERE away = \"hispano\"",
    "question_en": "Which Home has an Away of hispano?",
    "question_th": "บ้านใดมี 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_en": "What engine has the Mercedes AMG Petronas f1 team, and 93 points?",
    "question_th": "เครื่องยนต์อะไรที่มีทีม Mercedes AMG Petronas f1 และ 93 คะแนน?",
    "context": "CREATE TABLE table_name_1 (engine VARCHAR, entrant VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT chassis FROM table_name_32 WHERE points = \"4\"",
    "question_en": "Which Chassis has 4 points?",
    "question_th": "แชสซีใดมี 4 จุด?",
    "context": "CREATE TABLE table_name_32 (chassis VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_64 WHERE year > 2009 AND score = \"7–5, 6–7 (6–8) , 6–1\"",
    "question_en": "What is Opponent, when Year is greater than 2009, and when Score is 7–5, 6–7 (6–8) , 6–1?",
    "question_th": "คู่ต่อสู้คืออะไร เมื่อ Year มากกว่าปี 2009 และเมื่อคะแนนคือ 7–5, 6–7 (6–8) , 6–1",
    "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_en": "What is the lowest Year, when Surface is Hard, and when Opponent is Dinara Safina?",
    "question_th": "ปีใดที่ต่ำที่สุด เมื่อ Surface อยู่ในสถานะ Hard และเมื่อฝ่ายตรงข้ามคือ 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_en": "What is Surface, when Championship is Australian Open?",
    "question_th": "Surface คืออะไร เมื่อ Championship คือ 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–2, 2–6, 7–5\"",
    "question_en": "What is Outcome, when Opponent is Victoria Azarenka, and when Score is 6–2, 2–6, 7–5?",
    "question_th": "ผลลัพธ์คืออะไร เมื่อฝ่ายตรงข้ามคือ วิกตอเรีย อซาเรนกา และเมื่อสกอร์คือ 6–2, 2–6, 7–5",
    "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_en": "WHAT SERIES WAS RELEASED BY ITV STUDIOS AND A RELEASE DATE OF AUGUST 15, 2012?",
    "question_th": "ITV STUDIOS เผยแพร่ซีรีส์เรื่องใดและมีกำหนดออกฉายวันที่ 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_en": "WHAT IS THE EPISODE NUMBER  THAT HAS 28 DVD?",
    "question_th": "หมายเลขตอนที่มีดีวีดี 28 แผ่นคือหมายเลขอะไร",
    "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_en": "WHAT EPISODE HAS A REGION NUMBER BIGGER THAN 1, AND 32 DVDS?",
    "question_th": "ตอนใดมีหมายเลขภูมิภาคมากกว่า 1 และมีดีวีดี 32 แผ่น",
    "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_en": "What is Duration, when Test Flight is Taxi Test #2?",
    "question_th": "ระยะเวลาที่ Test Flight คือ 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_en": "What it Duration, when Test Flight is Free Flight #3?",
    "question_th": "ระยะเวลาเท่าไร เมื่อเที่ยวบินทดสอบเป็นเที่ยวบินฟรี #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_en": "What is Date, when Comment is Tailcone On, Lakebed Landing, and when Duration is 5min 34 s?",
    "question_th": "วันที่คืออะไร เมื่อความคิดเห็นเปิด Tailcone, การลงจอดที่ทะเลสาบ และเมื่อใดที่ระยะเวลาคือ 5 นาที 34 วินาที",
    "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_en": "What is Crew, when Date is July 26, 1977?",
    "question_th": "Crew คืออะไร เมื่อเป็นวันที่ 26 กรกฎาคม พ.ศ. 2520",
    "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_en": "What is Years, when Nationality is United States, and when Position is PG / SG?",
    "question_th": "ปีคืออะไร เมื่อสัญชาติคือสหรัฐอเมริกา และเมื่อใดตำแหน่งคือ 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_en": "What is Nationality, when Years is 1979?",
    "question_th": "สัญชาติคืออะไร เมื่อถึงปี 1979",
    "context": "CREATE TABLE table_name_73 (nationality VARCHAR, years VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_95 WHERE time = \"18:27\"",
    "question_en": "WHAT SCORE HAS A TIME OF 18:27?",
    "question_th": "คะแนนเวลา 18:27 คืออะไร?",
    "context": "CREATE TABLE table_name_95 (score VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT goal FROM table_name_45 WHERE time = \"39:37\"",
    "question_en": "WHAT GOAL HAS A TIME OF 39:37?",
    "question_th": "เป้าหมายอะไรที่มีเวลา 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_en": "What is Electorate, when Party is \"Country\", when State is \"WA\", and when Member is \"John Hallett\"?",
    "question_th": "เขตการเลือกตั้งคืออะไร เมื่อพรรคคือ \"ประเทศ\" เมื่อรัฐคือ \"WA\" และเมื่อสมาชิกคือ \"จอห์น ฮัลเล็ตต์\"",
    "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_en": "What is Term of Office, when Member is \"Dominic Costa\"?",
    "question_th": "ระยะเวลาการดำรงตำแหน่งคืออะไร เมื่อสมาชิกคือ \"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_en": "What is State, when Member is \"Gil Duthie\"?",
    "question_th": "รัฐคืออะไร ในเมื่อสมาชิกคือ \"กิล ดูธี\"?",
    "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_en": "What was the number of attendance at Stadion with a score of 2-0",
    "question_th": "จำนวนการเข้าร่วมที่สตาดิโอนด้วยสกอร์ 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_en": "What season did the Rangers win?",
    "question_th": "เรนเจอร์สคว้าแชมป์ฤดูกาลไหน?",
    "context": "CREATE TABLE table_name_1 (season VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_48 WHERE runner_up = \"falkirk\"",
    "question_en": "What is the score of the game with Falkirk as the runner-up?",
    "question_th": "เกมนี้ฟัลเคิร์กเป็นรองแชมป์ได้สกอร์เท่าไหร่?",
    "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_en": "What is the venue of the game where hibernian won and the rangers were the runner-up?",
    "question_th": "สนามใดของเกมที่ฮิเบอร์เนียนชนะและเรนเจอร์สได้รองชนะเลิศคือที่ไหน?",
    "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_en": "what is the country for the 1972 winter olympics?",
    "question_th": "โอลิมปิกฤดูหนาวปี 1972 คือประเทศอะไร?",
    "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_en": "what is the winter olympics year when the fis nordic world ski championships is 1976?",
    "question_th": "โอลิมปิกฤดูหนาวปีใดที่การแข่งขันสกีชิงแชมป์โลก fis nordic คือปี 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_en": "what is the earliest winter olympics when the fis nordic world ski championships is 1976?",
    "question_th": "การแข่งขันกีฬาโอลิมปิกฤดูหนาวครั้งแรกสุดคืออะไรเมื่อการแข่งขันสกีชิงแชมป์โลก fis nordic คือปี 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_en": "what is the winter olympics when the country is soviet union and holmenkollen is 1970, 1979?",
    "question_th": "โอลิมปิกฤดูหนาวจะเป็นอย่างไรเมื่อประเทศเป็นสหภาพโซเวียต และโฮลเมนโคลเลนคือปี 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_en": "what is the date when the away team is newport county?",
    "question_th": "นิวพอร์ต เคาน์ตี้ ทีมเยือนนัดวันไหน?",
    "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_en": "How many games have 5 goals and less than 8 assists?",
    "question_th": "มีกี่เกมที่มี 5 ประตูและน้อยกว่า 8 แอสซิสต์?",
    "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ären berlin\"",
    "question_en": "What is the highest number of goals Eisbären Berlin had along with 13 points and 10 assists?",
    "question_th": "ไอส์บาเรน เบอร์ลิน ยิงประตูสูงสุดร่วมกับ 13 แต้มและ 10 แอสซิสต์ได้มากที่สุดคือเท่าใด?",
    "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_en": "What is Ivan Ciernik's average points with less than 11 goals?",
    "question_th": "ค่าเฉลี่ยของอีวาน เซียร์นิคที่ยิงน้อยกว่า 11 ประตูคือเท่าไหร่?",
    "context": "CREATE TABLE table_name_29 (points INTEGER, player VARCHAR, goals VARCHAR)"
  },
  {
    "answer": "SELECT province FROM table_name_98 WHERE centers = \"parun\"",
    "question_en": "Which province is Parun in?",
    "question_th": "ภารุณอยู่จังหวัดไหนครับ?",
    "context": "CREATE TABLE table_name_98 (province VARCHAR, centers VARCHAR)"
  },
  {
    "answer": "SELECT category FROM table_name_33 WHERE pilot = \"frank scarabino\"",
    "question_en": "In which category is Frank Scarabino a pilot?",
    "question_th": "Frank Scarabino เป็นนักบินในประเภทใด",
    "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_en": "What is the sum of speed in km per hour reached by John Egginton?",
    "question_th": "ผลรวมของความเร็วในกิโลเมตรต่อชั่วโมงที่ 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_en": "What is the name of team 1 that was after the 2005 season and with a 4-2 score?",
    "question_th": "ชื่อทีมที่ 1 หลังฤดูกาล 2548 และสกอร์ 4-2 คืออะไร?",
    "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_en": "In the 2004 season with a 0-2 score what was the name of the venue?",
    "question_th": "ในฤดูกาล 2004 ด้วยสกอร์ 0-2 สนามแห่งนี้ชื่อว่าอะไร?",
    "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ình ðinh\"",
    "question_en": "What is the earliest season that Pisico Bình ðinh is team 2?",
    "question_th": "ฤดูกาลแรกสุดที่ Pisico Bình ðinh อยู่ในทีม 2 คืออะไร?",
    "context": "CREATE TABLE table_name_95 (season INTEGER, team_2 VARCHAR)"
  },
  {
    "answer": "SELECT years FROM table_name_88 WHERE rank < 2",
    "question_en": "Which years have a rank less than 2?",
    "question_th": "ปีใดมีอันดับน้อยกว่า 2",
    "context": "CREATE TABLE table_name_88 (years VARCHAR, rank INTEGER)"
  },
  {
    "answer": "SELECT COUNT(games) FROM table_name_78 WHERE total_rebounds > 1048",
    "question_en": "How many games have rebounds larger than 1048?",
    "question_th": "มีกี่เกมที่มีการรีบาวด์มากกว่า 1,048?",
    "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_en": "How many rebounds have a Player of andre gaddy, and a Rank smaller than 6?",
    "question_th": "ผู้เล่นของ andre gaddy มีกี่รีบาวด์และมีอันดับน้อยกว่า 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_en": "How many rebounds have a Player of herb estes?",
    "question_th": "ผู้เล่นของเฮิร์บเอสเตสมีรีบาวด์กี่คน?",
    "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_en": "What is the total of rebound averages with more than 98 games and a rank of 7?",
    "question_th": "ค่าเฉลี่ยการรีบาวด์รวมมากกว่า 98 เกมและอันดับที่ 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_en": "Can you tell me the Date that has the Team of golden state?",
    "question_th": "ช่วยบอก Date ที่มีทีม 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_en": "Can you tell me the High assists that has the Date of november 25?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าแอสซิสต์สูงที่มีวันที่ 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_en": "Can you tell me the Team that has the High rebounds of antawn jamison (10), and the Date of november 5?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าทีมที่มีการรีบาวด์สูงของ antawn jamison (10) และวันที่ 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_en": "Can you tell me the High rebounds that has the Date of november 5?",
    "question_th": "คุณช่วยบอกฉันถึงการรีบาวด์สูงสุดที่มีวันที่ 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_en": "WHAT IS THE TEAM WITH astc round 1?",
    "question_th": "ทีมที่มี asc รอบ 1 คืออะไร?",
    "context": "CREATE TABLE table_name_56 (team VARCHAR, series VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_59 WHERE series = \"atcc round 6\"",
    "question_en": "WHAT IS THE WINNER WITH ATCC ROUND 6?",
    "question_th": "ผู้ชนะของ ATCC รอบ 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_en": "What was the highest attendance for the game where the record was 0-5 and the opponents scored more than 20 points?",
    "question_th": "อะไรคือผู้เข้าร่วมสูงสุดในเกมที่สถิติคือ 0-5 และฝ่ายตรงข้ามทำคะแนนได้มากกว่า 20 คะแนน?",
    "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_en": "What is the street address of Notre Dame Basilica?",
    "question_th": "ที่อยู่ของ 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_en": "What is the Region, when the Catalog is SM 2965-05?",
    "question_th": "ภูมิภาคคืออะไร เมื่อแคตตาล็อกคือ 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_en": "What is the Region, when the Catalog is 25AP 301?",
    "question_th": "ภูมิภาคคืออะไร เมื่อแคตตาล็อกคือ 25AP 301",
    "context": "CREATE TABLE table_name_61 (region VARCHAR, catalog VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_97 WHERE catalog = \"epc 81436\"",
    "question_en": "What is Date, when Catalog is EPC 81436?",
    "question_th": "วันที่คืออะไรเมื่อแคตตาล็อกเป็น EPC 81436",
    "context": "CREATE TABLE table_name_97 (date VARCHAR, catalog VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_33 WHERE format = \"double cd\"",
    "question_en": "What is Label, when Format is Double CD?",
    "question_th": "Label คืออะไร เมื่อ Format เป็น Double CD",
    "context": "CREATE TABLE table_name_33 (label VARCHAR, format VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_40 WHERE region = \"japan\"",
    "question_en": "What is Label, when Region is Japan?",
    "question_th": "Label คืออะไร เมื่อภูมิภาคคือญี่ปุ่น",
    "context": "CREATE TABLE table_name_40 (label VARCHAR, region VARCHAR)"
  },
  {
    "answer": "SELECT format FROM table_name_11 WHERE region = \"united states\"",
    "question_en": "What is Format, when Region is United States?",
    "question_th": "รูปแบบคืออะไร เมื่อภูมิภาคคือสหรัฐอเมริกา",
    "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_en": "What was the date of appointment for the manager of lecce when the previous manager's contract expired?",
    "question_th": "วันที่ได้รับการแต่งตั้งเป็นผู้จัดการทีมเลชเช่เมื่อสัญญาของผู้จัดการทีมคนก่อนหมดลง?",
    "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_en": "What was the manner of departure for the outgoing manager, davide ballardini?",
    "question_th": "ผู้จัดการทีมที่กำลังจะออกไป ดาวิเด้ บัลลาร์ดินี่ มีลักษณะการจากไปอย่างไร?",
    "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_en": "What was the manner of departure for the outgoing manager, giuseppe iachini?",
    "question_th": "จูเซ็ปเป้ ยาชินี ผู้จัดการทีมที่กำลังจะลาออกมีลักษณะอย่างไร?",
    "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_en": "What is the date of appointment for the outgoing manager edoardo reja?",
    "question_th": "เอโดอาร์โด เรจา ผู้จัดการทีมที่จะพ้นตำแหน่งได้รับการแต่งตั้งเมื่อใด?",
    "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_en": "At what event did he fight matt eckerle?",
    "question_th": "เขาชกกับ 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_en": "What is the highest Round that lasted 1:44?",
    "question_th": "รอบสูงสุดที่กินเวลา 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_en": "What is the number for the interview in Illinois when the preliminary is less than 8.558?",
    "question_th": "สัมภาษณ์ที่อิลลินอยส์ เบื้องต้นต่ำกว่า 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_en": "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?",
    "question_th": "ประเทศที่มีชุดว่ายน้ำน้อยกว่า 9.033 ชื่ออะไร สัมภาษณ์ 8.611 และเบื้องต้นน้อยกว่า 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_en": "What is the evening gown number when the average is more than 8.984 in Louisiana and the preliminary is more than 8.597?",
    "question_th": "ชุดราตรีเบอร์อะไรคะเมื่อค่าเฉลี่ยอยู่ที่หลุยเซียน่ามากกว่า 8.984 และเบื้องต้นมากกว่า 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_en": "What is the interview number in Louisiana, and the swimsuit number is more than 9.1?",
    "question_th": "เบอร์สัมภาษณ์ที่หลุยเซียน่าคือเบอร์อะไรคะ และเลขชุดว่ายน้ำมากกว่า 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_en": "What is the swimsuit number when the preliminary is 8.721, and the average is more than 8.781?",
    "question_th": "ชุดว่ายน้ำเบอร์อะไรเมื่อเบื้องต้น 8.721 ค่าเฉลี่ยมากกว่า 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_en": "Where was the game played on 30 May 2004?",
    "question_th": "เกมนี้เล่นที่ไหนเมื่อวันที่ 30 พฤษภาคม พ.ศ. 2547?",
    "context": "CREATE TABLE table_name_6 (venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT partner FROM table_name_35 WHERE surface = \"hard\" AND tournament = \"amarante\"",
    "question_en": "Who was Silva's Partner in the Amarante Tournament played on a Hard Surface?",
    "question_th": "ใครคือหุ้นส่วนของ Silva ใน Amarante Tournament ที่เล่นบนพื้นผิวแข็ง?",
    "context": "CREATE TABLE table_name_35 (partner VARCHAR, surface VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT partner FROM table_name_64 WHERE score = \"6–3, 7–6 (7–3)\"",
    "question_en": "Who was Silva's Partner in the match with a Score of 6–3, 7–6 (7–3)?",
    "question_th": "ใครคือคู่หูของซิลวาในการแข่งขันด้วยสกอร์ 6–3, 7–6 (7–3)?",
    "context": "CREATE TABLE table_name_64 (partner VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_77 WHERE partner = \"kira nagy\"",
    "question_en": "On what Date was the match with partner Kira Nagy?",
    "question_th": "แมตช์กับคู่หู คิระ นากี้ วันไหน?",
    "context": "CREATE TABLE table_name_77 (date VARCHAR, partner VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_65 WHERE tournament = \"vigo\"",
    "question_en": "What is the Date of the Vigo Tournament?",
    "question_th": "การแข่งขัน 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_en": "What Tournament did Silva Partner with Nicole Thijssen with Opponent in the final Nina Bratchikova & Frederica Piedade?",
    "question_th": "การแข่งขันใดที่ Silva ร่วมมือกับ Nicole Thijssen กับฝ่ายตรงข้ามในรอบสุดท้าย 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_en": "What is Name, when State is \"Jin\"?",
    "question_th": "ชื่ออะไร เมื่อสเตทคือ \"จิน\"?",
    "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_en": "What is Name, when Royal House is \"Ji\", and when State is \"Cai\"?",
    "question_th": "ชื่ออะไร เมื่อราชวงศ์คือ \"จี\" และเมื่อรัฐคือ \"ไค\"",
    "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_en": "Which Ratio has a Similar ISO A size of a3?",
    "question_th": "อัตราส่วนใดที่มีขนาด ISO A ใกล้เคียงกันเท่ากับ a3",
    "context": "CREATE TABLE table_name_76 (ratio INTEGER, similar_iso_a_size VARCHAR)"
  },
  {
    "answer": "SELECT mm_×_mm FROM table_name_7 WHERE in_×_in = \"11 × 17\"",
    "question_en": "Which mm × mm has an in × in of 11 × 17?",
    "question_th": "มิลลิเมตร × มิลลิเมตร ใดมีหน่วยเป็น × นิ้วของ 11 × 17",
    "context": "CREATE TABLE table_name_7 (mm_×_mm VARCHAR, in_×_in VARCHAR)"
  },
  {
    "answer": "SELECT MIN(ratio) FROM table_name_67 WHERE name = \"ansi e\"",
    "question_en": "Which Ratio has a Name of ansi e?",
    "question_th": "อัตราส่วนใดมีชื่อว่า ansi e",
    "context": "CREATE TABLE table_name_67 (ratio INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT ratio FROM table_name_2 WHERE in_×_in = \"17 × 22\"",
    "question_en": "Which Ratio has an in × in of 17 × 22?",
    "question_th": "อัตราส่วนใดมีหน่วยเป็น × นิ้วของ 17 × 22?",
    "context": "CREATE TABLE table_name_2 (ratio VARCHAR, in_×_in VARCHAR)"
  },
  {
    "answer": "SELECT distance FROM table_name_20 WHERE stage = \"4a\"",
    "question_en": "What is the Distance of the 1945 Vuelta a Espana with 4A Stage?",
    "question_th": "ระยะทางของ 1945 Vuelta a Espana กับ 4A Stage คืออะไร?",
    "context": "CREATE TABLE table_name_20 (distance VARCHAR, stage VARCHAR)"
  },
  {
    "answer": "SELECT earned FROM table_name_21 WHERE rank = 5",
    "question_en": "What earned has 5 for the rank?",
    "question_th": "สิ่งที่ได้รับมี 5 สำหรับอันดับ?",
    "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_en": "What is the average earnings ($) that has meg mallon as the player, with a rank less than 9?",
    "question_th": "รายได้เฉลี่ย ($) ที่มี meg mallon เป็นผู้เล่นโดยมีอันดับน้อยกว่า 9 เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_58 (earnings___ INTEGER, player VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT AVG(federal_excise_tax___cad) AS ¢___l__ FROM table_name_85 WHERE total_excise_tax__cad¢_l_ > 33.2 AND government = \"vancouver, bc\" AND minimum_tax_incl_sales_taxes__cad¢_l_ < 41.01",
    "question_en": "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?",
    "question_th": "ภาษีฟีดที่มีภาษีรวมมากกว่า 33.2 ภาษีการขายขั้นต่ำน้อยกว่า 41.01 และในแวนคูเวอร์ รัฐบริติชโคลัมเบีย คืออะไร",
    "context": "CREATE TABLE table_name_85 (federal_excise_tax___cad INTEGER, minimum_tax_incl_sales_taxes__cad¢_l_ VARCHAR, total_excise_tax__cad¢_l_ VARCHAR, government VARCHAR)"
  },
  {
    "answer": "SELECT MIN(minimum_tax_incl_sales_taxes__cad) AS ¢_l_ FROM table_name_27 WHERE min_tax__cad¢_us_gal_ = 105.7 AND federal_excise_tax___cad¢___l__ > 10",
    "question_en": "What is the least minimum sales tax when the min tax is 105.7 and fed tax is more than 10?",
    "question_th": "ภาษีการขายขั้นต่ำขั้นต่ำคือเท่าไร เมื่อภาษีขั้นต่ำคือ 105.7 และภาษีที่ป้อนมากกว่า 10",
    "context": "CREATE TABLE table_name_27 (minimum_tax_incl_sales_taxes__cad INTEGER, min_tax__cad¢_us_gal_ VARCHAR, federal_excise_tax___cad¢___l__ VARCHAR)"
  },
  {
    "answer": "SELECT 1991 FROM table_name_69 WHERE 1992 = \"1r\" AND 1990 = \"1r\"",
    "question_en": "What is the 1991 when 1992 and 1990 are 1R?",
    "question_th": "1991 คืออะไรเมื่อ 1992 และ 1990 เป็น 1R?",
    "context": "CREATE TABLE table_name_69 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1991 FROM table_name_53 WHERE 1990 = \"atp masters series\"",
    "question_en": "What is the 1991 when 1990 is ATP Masters Series?",
    "question_th": "1991 คืออะไรเมื่อ 1990 เป็น ATP Masters Series?",
    "context": "CREATE TABLE table_name_53 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1995 FROM table_name_77 WHERE 1991 = \"grand slams\"",
    "question_en": "What is the 1995 when the 1991 is Grand Slams?",
    "question_th": "อะไรคือปี 1995 เมื่อปี 1991 เป็นแกรนด์สแลม?",
    "context": "CREATE TABLE table_name_77 (Id VARCHAR)"
  },
  {
    "answer": "SELECT career_sr FROM table_name_16 WHERE 1985 = \"grand slams\"",
    "question_en": "What is the career SR when 1985 is Grand Slams?",
    "question_th": "อาชีพ SR คืออะไรเมื่อปี 1985 เป็นแกรนด์สแลม?",
    "context": "CREATE TABLE table_name_16 (career_sr VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_95 WHERE date = \"11 june 1940\"",
    "question_en": "Which Name has a Date of 11 june 1940?",
    "question_th": "ชื่อใดมีวันที่ 11 มิถุนายน พ.ศ. 2483",
    "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_en": "Which Nationality has a Fate of sunk (mine), and a Tonnage (GRT) smaller than 2,266?",
    "question_th": "สัญชาติใดมีชะตากรรมของการจม (ของฉัน) และน้ำหนัก (GRT) น้อยกว่า 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_en": "Which Tonnage (GRT) is the highest one that has a Date of 16 june 1940?",
    "question_th": "น้ำหนัก (GRT) ใดสูงที่สุดที่มีวันที่ 16 มิถุนายน 1940?",
    "context": "CREATE TABLE table_name_52 (tonnage__grt_ INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_86 WHERE name = \"assyrian\"",
    "question_en": "Which Nationality has a Name of assyrian?",
    "question_th": "ชนชาติใดมีชื่อเป็นชาวอัสซีเรีย?",
    "context": "CREATE TABLE table_name_86 (nationality VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT bike__40km_ FROM table_name_38 WHERE swim__15km_ = \"19:56\"",
    "question_en": "What is the time for the bike (40km) when the swim (1.5km) is 19:56?",
    "question_th": "ปั่นจักรยาน (40 กม.) ว่ายน้ำ (1.5 กม.) กี่โมง 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_en": "With a swim (1.5km) of 18:55 and a run (10km) of 32:37, what is the trans 2?",
    "question_th": "ด้วยการว่ายน้ำ (1.5 กม.) 18:55 น. และวิ่ง (10 กม.) 32:37 น. ทรานส์ 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_en": "Daniela Ryf who competes in the women's even had what swim (1.5km)?",
    "question_th": "Daniela Ryf ที่เข้าแข่งขันประเภทหญิงได้ว่ายน้ำอะไร (1.5 กม.)?",
    "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_en": "For the triathlon with a bike (40km) of 58:20 what is the total time?",
    "question_th": "ไตรกีฬาด้วยจักรยาน (40 กม.) เวลา 58:20 น. ใช้เวลาทั้งหมดเท่าไร?",
    "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_en": "How long did the trans 1 take when 2:00:40.20 is the total time?",
    "question_th": "ทรานส์ 1 ใช้เวลานานเท่าใดเมื่อ 2:00:40.20 น. เป็นเวลาทั้งหมด?",
    "context": "CREATE TABLE table_name_28 (trans_1 VARCHAR, total_time VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_91 WHERE team = \"minnesota\"",
    "question_en": "Can you tell me the Record that has the Team of minnesota?",
    "question_th": "คุณช่วยบอกฉันเกี่ยวกับบันทึกที่มีทีมมินนิโซตาได้ไหม",
    "context": "CREATE TABLE table_name_91 (record VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_89 WHERE team = \"memphis\"",
    "question_en": "Can you tell me the Score that has the Team of memphis?",
    "question_th": "ช่วยบอกสกอร์ที่มีทีมเมมฟิสหน่อยได้ไหมครับ?",
    "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_en": "With a date of Aldershot and Aldershot as the away team what was the score of the game?",
    "question_th": "โดยมีนัดที่อัลเดอร์ช็อตและอัลเดอร์ช็อตเป็นทีมเยือนสกอร์เท่าไหร่?",
    "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_en": "What was the score for the game when West Ham United was the away team?",
    "question_th": "ในเกมที่เวสต์แฮมยูไนเต็ดเป็นทีมเยือนได้สกอร์เท่าไหร่?",
    "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_en": "With Sheffield United as the away team and the date, what home team has a tie no of 15?",
    "question_th": "โดยมีเชฟฟิลด์ ยูไนเต็ด เป็นทีมเยือนและวันที่เจ้าบ้านใดเสมอกันที่ 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_en": "Who was the home team when Sheffield United was the away team and the date was also Sheffield United?",
    "question_th": "เจ้าบ้านคือใครเมื่อเชฟฟิลด์ยูไนเต็ดเป็นทีมเยือนและวันที่ยังเป็นเชฟฟิลด์ยูไนเต็ดด้วย?",
    "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_en": "What tie no has Watford as the date?",
    "question_th": "วัตฟอร์ดไม่เสมอกันนัดไหน?",
    "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_en": "Which Country has a Place of t9, and a Score of 71-71-72=214, and a Player of ernie els?",
    "question_th": "ประเทศใดมีอันดับ t9 และคะแนน 71-71-72=214 และมีผู้เล่นของเออร์นี่ เอลส์",
    "context": "CREATE TABLE table_name_95 (country VARCHAR, player VARCHAR, place VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_12 WHERE to_par = \"–13\"",
    "question_en": "Which Country has a To par of –13?",
    "question_th": "ประเทศใดมีพาร์ถึง –13?",
    "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_en": "Which Player has a Score of 72-69-73=214?",
    "question_th": "ผู้เล่นคนไหนมีคะแนน 72-69-73=214?",
    "context": "CREATE TABLE table_name_71 (player VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_30 WHERE to_par = \"–4\" AND player = \"duffy waldorf\"",
    "question_en": "Which Score has a To par of –4, and a Player of duffy waldorf?",
    "question_th": "คะแนนใดมีพาร์ถึง –4 และผู้เล่นของดัฟฟี่ วอลดอร์ฟ?",
    "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_en": "Which Country has a Score of 79-68-74=212?",
    "question_th": "ประเทศใดมีคะแนน 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_en": "Which To par has a Country of united states, and a Player of duffy waldorf?",
    "question_th": "ทูพาร์ใดมีประเทศสหรัฐอเมริกา และมีผู้เล่นของดัฟฟี่ วอลดอร์ฟ?",
    "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_en": "What is Opponent In Final, when Surface is Hard, when Location is Wellington, New Zealand, and when Date is 6 February 2000?",
    "question_th": "Opponent In Final คืออะไร เมื่อ Surface is Hard เมื่อสถานที่คือเมืองเวลลิงตัน นิวซีแลนด์ และเมื่อใดคือวันที่ 6 กุมภาพันธ์ พ.ศ. 2543",
    "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_en": "What is Surface, when Date is 2 May 1999?",
    "question_th": "Surface คืออะไร เมื่อเป็นวันที่ 2 พฤษภาคม 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_en": "What is the 2nd leg when team #1 is Rubin Kazan?",
    "question_th": "เลกที่ 2 จะเป็นเช่นไรเมื่อทีม #1 คือ รูบิน คาซาน?",
    "context": "CREATE TABLE table_name_44 (team__number1 VARCHAR)"
  },
  {
    "answer": "SELECT agg FROM table_name_24 WHERE team__number2 = \"2006 uefa intertoto cup\"",
    "question_en": "What is the agg when team #2 is 2006 UEFA Intertoto Cup?",
    "question_th": "agg จะเป็นอย่างไรเมื่อทีม #2 ได้แชมป์ยูฟ่าอินเตอร์โตโตคัพ 2006?",
    "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_en": "What is the highest market value in billions of the company with profits of 20.96 billions and 166.99 billions in assets?",
    "question_th": "มูลค่าตลาดสูงสุดในพันล้านของบริษัทที่มีกำไร 20.96 พันล้านและสินทรัพย์ 166.99 พันล้านคืออะไร?",
    "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_en": "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?",
    "question_th": "มูลค่าตลาดรวมของบริษัทเป็นพันล้านที่มีกำไร 20.96 พันล้านและมีสินทรัพย์น้อยกว่า 166.99 พันล้านเป็นเท่าใด",
    "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_en": "What is the average assets in billions of the company Bank of America, which has less than 49.01 billions in sales?",
    "question_th": "สินทรัพย์เฉลี่ยในพันล้านของบริษัท Bank of America ซึ่งมียอดขายน้อยกว่า 49.01 พันล้านเป็นเท่าใด",
    "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_en": "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?",
    "question_th": "ผลกำไรสูงสุดในพันล้านของบริษัทที่มีสำนักงานใหญ่ในสหรัฐอเมริกาโดยมีมูลค่าตลาด 194.87 พันล้านและมียอดขายน้อยกว่า 76.66 พันล้านคืออะไร?",
    "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_en": "Which Total has a Nation of japan, and a Silver larger than 2?",
    "question_th": "Total ใดมีสัญชาติญี่ปุ่นและ Silver มากกว่า 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_en": "Which Nation has a Gold larger than 0, and a Total larger than 4, and a Rank of 6?",
    "question_th": "ประเทศใดที่มีทองคำมากกว่า 0 และผลรวมมากกว่า 4 และอันดับ 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_en": "Which Silver has a Rank of 1, and a Total smaller than 11?",
    "question_th": "เงินใดมีอันดับ 1 และผลรวมน้อยกว่า 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_en": "Which Total has a Nation of united states, and a Bronze larger than 3?",
    "question_th": "Total ใดมี Nation เป็น United States และ Bronze มากกว่า 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_en": "Where did jamie cox & daniel marsh play against queensland?",
    "question_th": "Jamie Cox และ Daniel Marsh เล่นกับควีนส์แลนด์ที่ไหน?",
    "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_en": "Where were jamie cox & scott kremerskothen paired?",
    "question_th": "Jamie Cox และ Scott Kremerskothen จับคู่กันที่ไหน?",
    "context": "CREATE TABLE table_name_24 (venue VARCHAR, batsmen VARCHAR)"
  },
  {
    "answer": "SELECT batsmen FROM table_name_83 WHERE wicket = \"7\"",
    "question_en": "Who were the batsmen paired for wicket 7?",
    "question_th": "ใครคือผู้ตีที่จับคู่กับประตู 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_en": "How many runs did they get against new south wales in 2002/03?",
    "question_th": "พวกเขาวิ่งได้กี่ครั้งกับนิวเซาธ์เวลส์ในปี 2545/46?",
    "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_en": "What season did they play queensland at wicket 4?",
    "question_th": "พวกเขาเล่นควีนส์แลนด์ที่ประตู 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_en": "What was the Peak Position on July 11, 2001?",
    "question_th": "ตำแหน่งสูงสุดในวันที่ 11 กรกฎาคม พ.ศ. 2544 คืออะไร?",
    "context": "CREATE TABLE table_name_12 (peak_position VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT weeks FROM table_name_18 WHERE date = \"december 12, 2001\"",
    "question_en": "On December 12, 2001, how many weeks had the single been in its position?",
    "question_th": "เมื่อวันที่ 12 ธันวาคม พ.ศ. 2544 ซิงเกิลอยู่ในตำแหน่งกี่สัปดาห์?",
    "context": "CREATE TABLE table_name_18 (weeks VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_73 WHERE school_club_team = \"purdue\"",
    "question_en": "What is the nationality of the Team Purdue?",
    "question_th": "ทีม 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_en": "What is the nationality of the Team Georgia Tech?",
    "question_th": "ทีมจอร์เจียเทคมีสัญชาติอะไร?",
    "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_en": "What is the nationality of the forward position on the Grizzlies in 2011?",
    "question_th": "ตำแหน่งกองหน้าของทีมกริซลี่ส์ในปี 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_en": "Who was the runner-up at the event held in Tartu, Estonia?",
    "question_th": "ใครคือรองชนะเลิศในงานที่จัดขึ้นที่เมืองตาร์ตู ประเทศเอสโตเนีย",
    "context": "CREATE TABLE table_name_53 (runner_up VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT runner_up FROM table_name_90 WHERE venue = \"tartu, estonia\"",
    "question_en": "For the event held in Tartu, Estonia, what is the name of the runner-up?",
    "question_th": "งานที่จัดขึ้นที่เมืองตาร์ตู ประเทศเอสโตเนีย รองแชมป์มีชื่อว่าอะไร?",
    "context": "CREATE TABLE table_name_90 (runner_up VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT third_place FROM table_name_82 WHERE year = 2012",
    "question_en": "Who took third place in 2012?",
    "question_th": "ใครได้อันดับสามในปี 2555?",
    "context": "CREATE TABLE table_name_82 (third_place VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_13 WHERE venue = \"oslo, norway\"",
    "question_en": "In what year was this event held in Oslo, Norway?",
    "question_th": "งานนี้จัดขึ้นที่เมืองออสโล ประเทศนอร์เวย์ เมื่อปีใด",
    "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_en": "What is the head of government for Don Stephen Senanayake?",
    "question_th": "หัวหน้ารัฐบาลของ 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_en": "Which team is in 14th position?",
    "question_th": "ทีมไหนอยู่อันดับที่ 14?",
    "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_en": "What is 2nd Leg, when Team #2 is \"San Lorenzo\"?",
    "question_th": "เลกที่ 2 คืออะไร เมื่อทีม #2 คือ \"ซาน ลอเรนโซ\"?",
    "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_en": "Which Clock Speed has a FSB Speed of 400 mhz, and a Model Number of c7-m 794?",
    "question_th": "ความเร็วสัญญาณนาฬิกาใดมีความเร็ว FSB 400 mhz และหมายเลขรุ่น 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_en": "Which Socket has a FSB Speed of 400 mhz, and a Voltage Range of 1.004 v?",
    "question_th": "ซ็อกเก็ตใดมีความเร็ว FSB 400 mhz และช่วงแรงดันไฟฟ้า 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_en": "Which Clock Multiplier has a Clock Speed of 1.6 ghz, and a Model Number of c7-m 764?",
    "question_th": "ตัวคูณสัญญาณนาฬิกาใดมีความเร็วสัญญาณนาฬิกา 1.6 ghz และหมายเลขรุ่น 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_en": "Which FSB Speed has a Model Number of c7-m 765?",
    "question_th": "FSB Speed รุ่นไหนมีหมายเลขรุ่น 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_en": "Which Clock Multiplier has a Model Number of c7-m 764?",
    "question_th": "ตัวคูณสัญญาณนาฬิกาใดมีหมายเลขรุ่น 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_en": "Which Release Date has a Voltage Range of 1.148 v - 1.196 v?",
    "question_th": "วันที่วางจำหน่ายใดมีช่วงแรงดันไฟฟ้า 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_en": "Who are the players that placed t2?",
    "question_th": "ใครคือผู้เล่นที่วาง t2?",
    "context": "CREATE TABLE table_name_33 (player VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_97 WHERE player = \"lee trevino\"",
    "question_en": "Which country is Lee Trevino from?",
    "question_th": "ลี เทรวิโน มาจากประเทศใด",
    "context": "CREATE TABLE table_name_97 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_76 WHERE country = \"south africa\"",
    "question_en": "Which player(s) is from South Africa?",
    "question_th": "นักเตะคนไหนมาจากแอฟริกาใต้?",
    "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_en": "what is the record when the year is after 1992, manager is tom kotchman and finish is 2nd?",
    "question_th": "บันทึกคือปีหลังปี 1992 ผู้จัดการคือทอม คอทช์แมนและจบอันดับที่ 2 เป็นอย่างไรบ้าง",
    "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_en": "what is the finish when the manager is tom kotchman and record is 43-33?",
    "question_th": "จะจบแบบไหนเมื่อผู้จัดการทีมคือ ทอม ค็อตช์แมน และสถิติ 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_en": "what is the finish when the manager is tom kotchman and the record is 40-36?",
    "question_th": "จะจบแบบไหนเมื่อผู้จัดการทีมคือ ทอม ค็อตช์แมน และสถิติ 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_en": "who is the manager when the year is before 1994 and finish is 5th?",
    "question_th": "ใครเป็นผู้จัดการทีมเมื่อปีก่อนปี 1994 และจบอันดับที่ 5?",
    "context": "CREATE TABLE table_name_6 (manager VARCHAR, year VARCHAR, finish VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_45 WHERE year = 2011",
    "question_en": "what is the record when the year is 2011?",
    "question_th": "บันทึกเมื่อปี 2554 คืออะไร?",
    "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_en": "What is Player, when Total is \"294\", and when Year(s) Won is \"1955\"?",
    "question_th": "ผู้เล่นคืออะไร เมื่อผลรวมคือ \"294\" และเมื่อปีที่ชนะคือ \"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_en": "What is Player, when To Par is less than 14?",
    "question_th": "Player คืออะไร เมื่อ To Par น้อยกว่า 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_en": "What is To Par, when Player is \"Tommy Bolt\"?",
    "question_th": "To Par คืออะไร เมื่อผู้เล่นคือ \"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_en": "What is the sum of Total, when Player is \"Tommy Bolt\"?",
    "question_th": "ผลรวมของคะแนนรวมเมื่อผู้เล่นคือ \"ทอมมี่ โบลต์\" คืออะไร?",
    "context": "CREATE TABLE table_name_4 (total INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(total) FROM table_name_50 WHERE to_par = 7",
    "question_en": "What is the total number of Total, when To Par is \"7\"?",
    "question_th": "ผลรวมทั้งหมดเป็นเท่าใด เมื่อพาร์คือ \"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_en": "Which award was won when the nomination was Senses Around?",
    "question_th": "รางวัลใดที่ได้รับการเสนอชื่อเข้าชิงคือ 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_en": "What was the nomination in a year earlier than 2009?",
    "question_th": "การเสนอชื่อในปีก่อนหน้าปี 2552 คืออะไร?",
    "context": "CREATE TABLE table_name_43 (nomination VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT award FROM table_name_55 WHERE category = \"best new artist\"",
    "question_en": "Which award is for the category Best New Artist?",
    "question_th": "รางวัลใดอยู่ในสาขา 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_en": "What is the earliest year with a category of Top 10 Selling Mandarin Albums of the Year?",
    "question_th": "ปีแรกสุดที่มีหมวดหมู่ 10 อัลบั้มภาษาจีนกลางที่มียอดขายสูงสุดแห่งปีคือปีใด",
    "context": "CREATE TABLE table_name_53 (year INTEGER, category VARCHAR)"
  },
  {
    "answer": "SELECT discipline FROM table_name_31 WHERE championship = \"usac national championship\"",
    "question_en": "For the USAC National Championship, what is the Discipline?",
    "question_th": "สำหรับการแข่งขัน USAC National Championship อะไรคือวินัย?",
    "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_en": "In the Indianapolis Sweepstakes race session, what is the championship?",
    "question_th": "ในการแข่งขัน Indianapolis Sweepstakes การแข่งขันชิงแชมป์คืออะไร?",
    "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_en": "What circuit is the Sprint Cup series championship?",
    "question_th": "การแข่งขันชิงแชมป์ซีรีส์ Sprint Cup คือสนามใด?",
    "context": "CREATE TABLE table_name_29 (circuit VARCHAR, championship VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_91 WHERE attendance = \"25,000\"",
    "question_en": "What were the Results for 25,000 Attendance?",
    "question_th": "ผลลัพธ์สำหรับการเข้าร่วม 25,000 คนเป็นอย่างไร",
    "context": "CREATE TABLE table_name_91 (result VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_80 WHERE date = \"10/06/1934\"",
    "question_en": "What was the result on 10/06/1934?",
    "question_th": "ผลลัพธ์เมื่อวันที่ 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ético de san juan fc\"",
    "question_en": "What year was the team Club of atlético de san juan fc who plays at hiram bithorn stadium founded.",
    "question_th": "ก่อตั้งทีม Club of atlético de san juan fc ซึ่งเล่นที่สนามกีฬา hiram bithorn ในปีใด",
    "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_en": "What is the Branding of the Iloilo City Frequency with a Power of 10 Kw?",
    "question_th": "การสร้างแบรนด์ของความถี่เมืองอิโลอิโลด้วยกำลัง 10 กิโลวัตต์คืออะไร?",
    "context": "CREATE TABLE table_name_38 (branding VARCHAR, power VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT power FROM table_name_48 WHERE callsign = \"dxll\"",
    "question_en": "What is the Power of the Frequency with a Callsign of DXLL?",
    "question_th": "พลังของความถี่ที่มีสัญญาณเรียกของ DXLL คืออะไร?",
    "context": "CREATE TABLE table_name_48 (power VARCHAR, callsign VARCHAR)"
  },
  {
    "answer": "SELECT frequency FROM table_name_91 WHERE location = \"davao city\"",
    "question_en": "What is the Frequency in Davao City?",
    "question_th": "ความถี่ในเมืองดาเวาคืออะไร?",
    "context": "CREATE TABLE table_name_91 (frequency VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT branding FROM table_name_99 WHERE callsign = \"dwll\"",
    "question_en": "What is the Branding with a Callsign DWLL?",
    "question_th": "การสร้างแบรนด์ด้วย 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_en": "What is the Branding of the Metro Manila Frequency with a Callsign of DWBL?",
    "question_th": "การสร้างแบรนด์ของความถี่เมโทรมะนิลาพร้อมสัญญาณเรียกขานของ DWBL คืออะไร",
    "context": "CREATE TABLE table_name_19 (branding VARCHAR, location VARCHAR, callsign VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_89 WHERE callsign = \"dxbl\"",
    "question_en": "What is the Location of the Frequency with a Callsign of DXBL?",
    "question_th": "ตำแหน่งของความถี่ที่มีสัญญาณเรียกขานของ 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_en": "What name in a year after 1997 has a longitude of 213.0e?",
    "question_th": "ชื่ออะไรในหนึ่งปีหลังจากปี 1997 มีลองจิจูด 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_en": "How many years correspond to longitude of 36.8e and diameter greater than 697?",
    "question_th": "กี่ปีตรงกับลองจิจูด 36.8e และเส้นผ่านศูนย์กลางมากกว่า 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_en": "What was the pick # for a center picked before round 6?",
    "question_th": "ตัวเลือก # สำหรับเซ็นเตอร์ที่เลือกก่อนรอบ 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_en": "What team with a seed value greater than 7 has a note that they were an NCRAA champion?",
    "question_th": "ทีมใดที่มีมูลค่าเมล็ดพันธุ์มากกว่า 7 มีข้อความว่าพวกเขาเป็นแชมป์ NCRAA",
    "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_en": "WHAT IS THE ORICON PEAK NUMBER WITH AN ATLANTIC LABEL, SUBHUMAN RACE, LATER THAN 1995?",
    "question_th": "หมายเลข ORICON PEAK ที่มีฉลากมหาสมุทรแอตแลนติกคืออะไร การแข่งขันที่ต่ำกว่ามนุษย์ หลังจากปี 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_en": "WHAT LABEL HAD A RELEASE DATE OF 1991?",
    "question_th": "ฉลากอะไรมีวันที่วางจำหน่ายในปี 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_en": "WHAT IS THE AVERAGE DATE OF RELEASE FOR THICKSKIN?",
    "question_th": "วันที่เฉลี่ยของการเปิดตัวสำหรับ 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_en": "What is the lowest enrollment amount for a year left of 2012 and a current conference of Mid-South?",
    "question_th": "จำนวนเงินที่ลงทะเบียนต่ำสุดสำหรับปีที่เหลือของปี 2012 และการประชุมปัจจุบันของ 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_en": "Which season was there a game with the score of 1:3 played at the venue of national stadium, maldives?",
    "question_th": "มีเกมการแข่งขันด้วยสกอร์ 1:3 ที่สนามสนามกีฬาแห่งชาติ มัลดีฟส์ ฤดูกาลใด?",
    "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_en": "What was the venue of the match where the score was 1:3 and team 2 was binh duong?",
    "question_th": "สนามใดของแมตช์ที่สกอร์ 1:3 และทีมที่ 2 คือ บินห์เดือง?",
    "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_en": "What was the score of the game when team 2 was club valencia?",
    "question_th": "ในเกมที่ทีม 2 เป็น คลับ บาเลนเซีย สกอร์เท่าไหร่?",
    "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_en": "What was the venue of the match where team 2 was pea and the score was 1:3?",
    "question_th": "สนามแข่งขันที่ทีม 2 เป็นถั่วและสกอร์ 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_en": "In 2011 with a hydroelectricity less than 119.6, what was the solar?",
    "question_th": "ในปี 2554 ที่มีกระแสไฟฟ้าพลังน้ำน้อยกว่า 119.6 พลังงานแสงอาทิตย์คือเท่าใด",
    "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_en": "What is the minimum hydroelectricity with a less than 116.4 total, and a greater than 18.637 solar?",
    "question_th": "ค่าไฟฟ้าพลังน้ำขั้นต่ำที่มีทั้งหมดน้อยกว่า 116.4 และมากกว่า 18.637 แสงอาทิตย์คือเท่าใด",
    "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_en": "In 2011 with a less than 13.333 wind power what is the mean hydroelectricity?",
    "question_th": "ในปี 2554 ที่มีค่าพลังงานลมน้อยกว่า 13.333 ค่าไฟฟ้าพลังน้ำเฉลี่ยคือเท่าใด",
    "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_en": "What country has a less than 136.1 total and a 0.02 solar?",
    "question_th": "ประเทศใดมียอดรวมน้อยกว่า 136.1 และโซลาร์ 0.02",
    "context": "CREATE TABLE table_name_38 (country VARCHAR, total VARCHAR, solar VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_4 WHERE away = \"hispano\"",
    "question_en": "Home for away of hispano?",
    "question_th": "กลับบ้านเพื่อห่างจาก 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_en": "Which Position has a Pick # smaller than 23, and a Player of garrett sutherland?",
    "question_th": "ตำแหน่งใดมี Pick # น้อยกว่า 23 และผู้เล่นของ 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_en": "Name the CFL Team which has a Player of chris evraire?",
    "question_th": "ตั้งชื่อทีม CFL ซึ่งมีผู้เล่นของ 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_en": "Name The Player who has a Pick # of 27?",
    "question_th": "ตั้งชื่อผู้เล่นที่มีตัวเลือก # จาก 27?",
    "context": "CREATE TABLE table_name_13 (player VARCHAR, pick__number VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_24 WHERE cfl_team = \"toronto\"",
    "question_en": "Name the Player who has a CFL Team of toronto?",
    "question_th": "ตั้งชื่อผู้เล่นที่มีทีม CFL ของโตรอนโตหรือไม่?",
    "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_en": "Name the Pick # which has a Position of lb, and a CFL Team of winnipeg?",
    "question_th": "ตั้งชื่อ Pick # ซึ่งมีตำแหน่งเป็น lb และทีม CFL ของ 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_en": "WHAT IS THE SUM OF ATTENDANCE FOR DETROIT, WHEN POINTS ARE LARGER THAN 33?",
    "question_th": "ผลรวมของผู้เข้าร่วมสำหรับดีทรอยต์คือเท่าไร เมื่อคะแนนมากกว่า 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_en": "What was the location and attendance for the game on December 12?",
    "question_th": "สถานที่และผู้เข้าชมเกมในวันที่ 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_en": "What is the lowest Touchdowns, when Player is Andrew Glover, and when Yards is greater than 281?",
    "question_th": "อะไรคือทัชดาวน์ต่ำสุด เมื่อผู้เล่นคือ Andrew Glover และเมื่อหลามากกว่า 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_en": "What is the average Touchdowns, when Yards is less than 293, and when Long is greater than 39?",
    "question_th": "อะไรคือค่าเฉลี่ยทัชดาวน์ เมื่อหลาน้อยกว่า 293 และเมื่อลองมากกว่า 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_en": "What is the total number of Attempts, when Touchdowns is 6?",
    "question_th": "จำนวนความพยายามทั้งหมดเมื่อทัชดาวน์คือ 6 คือเท่าใด",
    "context": "CREATE TABLE table_name_61 (attempts VARCHAR, touchdowns VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_39 WHERE extra = \"pentathlon\"",
    "question_en": "What is Venue, when Extra is Pentathlon?",
    "question_th": "Venue คืออะไร เมื่อ Extra คือ Pentathlon?",
    "context": "CREATE TABLE table_name_39 (venue VARCHAR, extra VARCHAR)"
  },
  {
    "answer": "SELECT MAX(year) FROM table_name_33 WHERE extra = \"pentathlon\"",
    "question_en": "What is the highest Year, when Extra is Pentathlon?",
    "question_th": "ปีสูงสุดคือปีใด เมื่อ Extra คือ Pentathlon?",
    "context": "CREATE TABLE table_name_33 (year INTEGER, extra VARCHAR)"
  },
  {
    "answer": "SELECT SUM(year) FROM table_name_10 WHERE result = \"9th\"",
    "question_en": "What is the sum of Year, when Result is 9th?",
    "question_th": "ผลรวมของปีเป็นเท่าใด เมื่อผลลัพธ์คือวันที่ 9",
    "context": "CREATE TABLE table_name_10 (year INTEGER, result VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_74 WHERE result = \"2nd\" AND year = 2009",
    "question_en": "What is Tournament, when Result is 2nd, and when Year is 2009?",
    "question_th": "การแข่งขันคืออะไร เมื่อผลการแข่งขันเป็นอันดับ 2 และเมื่อใดคือปี 2552",
    "context": "CREATE TABLE table_name_74 (tournament VARCHAR, result VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_77 WHERE venue = \"götzis , austria\"",
    "question_en": "What is Result, when Venue is Götzis , Austria?",
    "question_th": "ผลลัพธ์คืออะไร เมื่อสถานที่คือ Götzis ประเทศออสเตรีย",
    "context": "CREATE TABLE table_name_77 (result VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_24 WHERE region = \"germany\"",
    "question_en": "What label does Germany have?",
    "question_th": "เยอรมนีมีป้ายชื่ออะไรบ้าง?",
    "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_en": "What region has the Chrysalis label, and a Catalog of chr 1047?",
    "question_th": "ภูมิภาคใดมีฉลากดักแด้และมีแคตตาล็อก chr 1,047",
    "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_en": "When did the United Kingdom format a stereo LP?",
    "question_th": "สหราชอาณาจักรจัดรูปแบบแผ่นเสียงสเตอริโอเมื่อใด",
    "context": "CREATE TABLE table_name_29 (date VARCHAR, region VARCHAR, format VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_name_93 WHERE date = \"january 1974\"",
    "question_en": "What region goes along with January 1974?",
    "question_th": "ภูมิภาคใดตรงกับเดือนมกราคม พ.ศ. 2517?",
    "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_en": "What is the label from 1973 that has a catalog number of l 35023?",
    "question_th": "ฉลากจากปี 1973 ที่มีหมายเลขแค็ตตาล็อก 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_en": "How many wins did the driver with 1 second and more than 12 races have?",
    "question_th": "นักแข่งที่มีเวลา 1 วินาทีและมากกว่า 12 การแข่งขันชนะได้กี่ครั้ง?",
    "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_en": "What is the lowest Loss number when the Gain is less than 61 and the Avg/G is 6?",
    "question_th": "หมายเลขขาดทุนต่ำสุดเมื่อกำไรน้อยกว่า 61 และ Avg/G คือ 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_en": "What is the sum of Avg/G for Dan Dierking when the Loss is 0 and the Gain is more than 34?",
    "question_th": "ผลรวมของ Avg/G สำหรับ Dan Dierking คือเท่าใด เมื่อขาดทุนเป็น 0 และกำไรมากกว่า 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_en": "Who was the visiting team on April 6?",
    "question_th": "ทีมเยือนวันที่ 6 เมษายน คือใคร?",
    "context": "CREATE TABLE table_name_27 (visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_64 WHERE record = \"4-3\"",
    "question_en": "What was the date of the game that led to a 4-3 record?",
    "question_th": "วันที่เกมที่นำไปสู่สถิติ 4-3 คือวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_64 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_10 WHERE record = \"2-3\"",
    "question_en": "Who was the home team in the game that led to a 2-3 series record?",
    "question_th": "ทีมเจ้าบ้านในเกมที่นำสถิติ 2-3 ซีรีส์คือใคร?",
    "context": "CREATE TABLE table_name_10 (home VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_29 WHERE score = \"100-86\"",
    "question_en": "Which home team had a score of 100-86?",
    "question_th": "เจ้าบ้านทีมไหนมีสกอร์ 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_en": "Which report corresponds to the State Sports Centre?",
    "question_th": "รายงานใดสอดคล้องกับศูนย์กีฬาแห่งรัฐ?",
    "context": "CREATE TABLE table_name_89 (report VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_31 WHERE venue = \"win entertainment centre\"",
    "question_en": "Who was the away team at the Win Entertainment Centre?",
    "question_th": "ทีมเยือนวิน เอ็นเตอร์เทนเม้นท์ เซ็นเตอร์ คือใคร?",
    "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_en": "Can you tell me the total number of Gain that has the Name of williams, jonathan, and the Loss larger than 3?",
    "question_th": "คุณช่วยบอกจำนวนกำไรทั้งหมดที่มีชื่อของวิลเลียมส์ โจนาธาน และการสูญเสียมากกว่า 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_en": "Can you tell me the sum of Loss that has the Gain of 2646?",
    "question_th": "คุณช่วยบอกผลรวมของการสูญเสียที่มีกำไรเป็น 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_en": "Can you tell me the sum of Gain that has the Name of kass, rob, and the Avg/g smaller than 1.9?",
    "question_th": "คุณช่วยบอกผลรวมของกำไรที่มีชื่อของ kass, rob และ Avg/g น้อยกว่า 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_en": "Can you tell me the lowest Long that has the Gain of 20, and the Loss smaller than 0?",
    "question_th": "คุณช่วยบอกฉันได้ไหมว่า Long ต่ำสุดที่มีกำไร 20 และขาดทุนน้อยกว่า 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_en": "What is the highest ERP W with a w216bo call sign?",
    "question_th": "ERP W สูงสุดที่มีสัญญาณเรียก w216bo คืออะไร?",
    "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_en": "What kind of Crowd has a Ground of subiaco oval?",
    "question_th": "ฝูงชนแบบไหนที่มีพื้นเป็นรูปวงรีซูเบียโก?",
    "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_en": "How many Crowd that has a Date on saturday, 29 january and an Away team of collingwood?",
    "question_th": "มีฝูงชนกี่คนที่มีเดทในวันเสาร์ที่ 29 มกราคม และทีมเยือนของคอลลิงวูด?",
    "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_en": "On which date after week 11 was the opponent the arizona cardinals?",
    "question_th": "วันใดหลังจากสัปดาห์ที่ 11 เป็นคู่ต่อสู้ของพระคาร์ดินัลแอริโซนา",
    "context": "CREATE TABLE table_name_88 (date VARCHAR, week VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT lead FROM table_name_78 WHERE alternate = \"li dongyan\"",
    "question_en": "What was the lead with an alternate of li dongyan?",
    "question_th": "อะไรคือผู้นำกับทางเลือกของหลี่ตงยัน?",
    "context": "CREATE TABLE table_name_78 (lead VARCHAR, alternate VARCHAR)"
  },
  {
    "answer": "SELECT lead FROM table_name_18 WHERE season = \"2007-08\"",
    "question_en": "Which lead had a season of 2007-08?",
    "question_th": "ผู้นำคนใดมีฤดูกาล 2550-51?",
    "context": "CREATE TABLE table_name_18 (lead VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT lead FROM table_name_40 WHERE season = \"2009-10\"",
    "question_en": "Which lead had a season of 2009-10?",
    "question_th": "ผู้นำคนใดมีฤดูกาล 2552-53?",
    "context": "CREATE TABLE table_name_40 (lead VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_49 WHERE saturday = \"yes\" AND evening = \"yes\"",
    "question_en": "Which Name has a Yes Saturday and a Yes Evening?",
    "question_th": "ชื่อใดมีวันเสาร์ใช่และตอนเย็นใช่?",
    "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_en": "Name the Daytime which has Saturday of yes and a Name of exmouth?",
    "question_th": "ตั้งชื่อเวลากลางวันซึ่งมีวันเสาร์ใช่และชื่อ 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_en": "Name the Evening that has a Sunday of no, and a Name of s. vidal/plant express?",
    "question_th": "ตั้งชื่อตอนเย็นที่มีวันอาทิตย์เป็น no และชื่อของ s วิดัล/พืชด่วน?",
    "context": "CREATE TABLE table_name_18 (evening VARCHAR, sunday VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT daytime FROM table_name_22 WHERE name = \"exmouth\"",
    "question_en": "Name the Daytime which has a Name of exmouth?",
    "question_th": "ตั้งชื่อ Daytime ซึ่งมีชื่อ 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_en": "Which Saturday has a Sunday of yes and a Evening of yes?",
    "question_th": "วันเสาร์ใดมีวันอาทิตย์ใช่และเย็นใช่?",
    "context": "CREATE TABLE table_name_80 (saturday VARCHAR, sunday VARCHAR, evening VARCHAR)"
  },
  {
    "answer": "SELECT saturday FROM table_name_68 WHERE name = \"confederation\"",
    "question_en": "Which Saturday has a Name of confederation?",
    "question_th": "วันเสาร์ใดมีชื่อสมาพันธ์?",
    "context": "CREATE TABLE table_name_68 (saturday VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT gp_gs FROM table_name_52 WHERE season = \"2009\"",
    "question_en": "What was the GP-GS for the 2009 season?",
    "question_th": "GP-GS สำหรับฤดูกาล 2009 คืออะไร?",
    "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_en": "Which GP-GS had a long of 17 and a season of total?",
    "question_th": "GP-GS ใดมีความยาว 17 และฤดูกาลทั้งหมด?",
    "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_en": "Which Long has redshirt for its Avg/G?",
    "question_th": "Long คนไหนมีเสื้อแดงสำหรับ 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_en": "What was the Av/G of the 2009 season?",
    "question_th": "Av/G ของฤดูกาล 2009 คืออะไร?",
    "context": "CREATE TABLE table_name_74 (avg_g VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT long FROM table_name_56 WHERE avg_g = \"5.9\"",
    "question_en": "For the Avg/G of 5.9, what was the long?",
    "question_th": "สำหรับค่าเฉลี่ย/G ที่ 5.9 ความยาวคือเท่าใด",
    "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_en": "What is the Location Attendance, when High Points is \"D. McKey (24)\", and when Score is \"L 96-105\"?",
    "question_th": "การเข้าร่วมสถานที่คืออะไร เมื่อคะแนนสูงสุดคือ \"D. McKey (24)\" และเมื่อคะแนนคือ \"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_en": "What is High Rebounds, when Game is greater than 33, and when Score is \"W 132-101\"?",
    "question_th": "High Rebounds คืออะไร เมื่อเกมมากกว่า 33 และเมื่อสกอร์คือ \"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_en": "What is Team, when Game is \"32\"?",
    "question_th": "ทีมคืออะไร เมื่อเกมคือ \"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_en": "What is the sum of Game, when High Points is \"D. McKey (24)\", and when Team is \"@ Dallas Mavericks\"?",
    "question_th": "ผลรวมของเกมเมื่อแต้มสูงคือ \"D. McKey (24)\" และเมื่อทีมคือ \"@ 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ópez santiago ventura\"",
    "question_en": "Which Tournament has Opponents of marc lópez santiago ventura?",
    "question_th": "ทัวร์นาเมนต์ใดที่มีฝ่ายตรงข้ามของ Marc López 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_en": "Which Opponents have a Partnering of alessandro motti, and a Date of 12 september 2005?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีคู่หูกับอเลสซานโดร ม็อตติ และวันที่ 12 กันยายน พ.ศ. 2548?",
    "context": "CREATE TABLE table_name_60 (opponents VARCHAR, partnering VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponents FROM table_name_59 WHERE score = \"6–4, 6–3\"",
    "question_en": "Which Opponents have a Score of 6–4, 6–3?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีคะแนน 6–4, 6–3?",
    "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_en": "Which Tournament has a Surface of hard, and a Date of 24 september 2011?",
    "question_th": "ทัวร์นาเมนต์ใดที่มีพื้นผิวแข็ง และวันที่ 24 กันยายน 2554?",
    "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_en": "How many rounds did the match at GCF: Strength and Honor last?",
    "question_th": "แมตช์ GCF: Strength and Honor แข่งไปกี่รอบ?",
    "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_en": "What is the total population for Saint-Antoine with an area squared of 6.43?",
    "question_th": "แซ็ง-อองตวนซึ่งมีพื้นที่ยกกำลัง 2 เท่ากับจำนวนประชากรทั้งหมดเป็นเท่าใด",
    "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_en": "What is the current status of a location with a census ranking of 1,769 of 5,008 and population greater than 930?",
    "question_th": "สถานะปัจจุบันของสถานที่ที่มีการจัดอันดับการสำรวจสำมะโนประชากร 1,769 จาก 5,008 และมีประชากรมากกว่า 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_en": "How many games in February have a record of 40-15-5?",
    "question_th": "กุมภาพันธ์มีกี่เกมที่มีสถิติ 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_en": "What is the lowest numbered game with an opponent of Minnesota North Stars earlier than February 25?",
    "question_th": "เกมใดที่มีหมายเลขต่ำสุดกับคู่ต่อสู้ของ Minnesota North Stars ก่อนวันที่ 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_en": "How many games have the New York Islanders as an opponent before February 7?",
    "question_th": "New York Islanders เป็นคู่ต่อสู้กี่เกมก่อนวันที่ 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_en": "What is the earliest February date with a record of 37-13-4 in a game earlier than 54?",
    "question_th": "วันที่เร็วที่สุดในเดือนกุมภาพันธ์ที่มีสถิติ 37-13-4 ในเกมที่เร็วกว่า 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_en": "What is the date of the game when the record is 2-0?",
    "question_th": "เกมวันที่เท่าไหร่ที่สถิติเป็น 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_en": "What is the average game number when the record is 4-1?",
    "question_th": "หมายเลขเกมเฉลี่ยเมื่อบันทึกเป็น 4-1 คืออะไร?",
    "context": "CREATE TABLE table_name_18 (game INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_name_95 WHERE game = 1",
    "question_en": "What is the location and attendance of game 1?",
    "question_th": "สถานที่และการเข้าร่วมของเกมที่ 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_en": "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?",
    "question_th": "เกมการแข่งขันที่เมดิสัน สแควร์ การ์เดน วันที่เท่าไหร่ เมื่อทีมคือ ซีแอตเทิล และหมายเลขเกมน้อยกว่า 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_en": "What is the location and attendance of the game when the score is 125-100?",
    "question_th": "สถานที่และผู้เข้าชมเกมเมื่อสกอร์ 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_en": "Who was the winning driver in 1956?",
    "question_th": "ใครคือนักแข่งที่ชนะในปี 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_en": "Which circuit did Peter Whitehead win?",
    "question_th": "Peter Whitehead ชนะวงจรใด",
    "context": "CREATE TABLE table_name_43 (circuit VARCHAR, winning_driver VARCHAR)"
  },
  {
    "answer": "SELECT report FROM table_name_21 WHERE winning_driver = \"jack brabham\"",
    "question_en": "What report did Jack Brabham win?",
    "question_th": "แจ็ค บราแบม ชนะรายงานอะไร?",
    "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_en": "What year did Ferrari win the Kyalami circuit?",
    "question_th": "Ferrari ชนะการแข่งขัน Kyalami ในปีใด",
    "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_en": "Which circuit did Jim Clark win in 1962?",
    "question_th": "Jim Clark ชนะการแข่งขันรอบใดในปี 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_en": "On what Date was the 2011 LG Cup Competittion?",
    "question_th": "การแข่งขัน LG Cup 2011 คือวันที่ใด",
    "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_en": "What is the pick for the player with 2 years in the NBA and who plays for the Utah Jazz?",
    "question_th": "อะไรคือตัวเลือกสำหรับผู้เล่นที่มีอายุ 2 ปีใน NBA และใครเล่นให้กับ 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_en": "What was the final score for the game in which Carmelo Anthony (26) was the high points scorer?",
    "question_th": "คะแนนสุดท้ายของเกมที่คาร์เมโล แอนโทนี่ (26) เป็นผู้ทำคะแนนสูงสุดคือเท่าใด",
    "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_en": "In which game number was Chris Andersen (12) the high rebounds scorer?",
    "question_th": "คริส แอนเดอร์เซ่น (12) เป็นผู้ทำประตูรีบาวด์สูงในเกมหมายเลขใด",
    "context": "CREATE TABLE table_name_48 (game VARCHAR, high_rebounds VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_39 WHERE team = \"@ milwaukee\"",
    "question_en": "What was the final score for the game played against @ Milwaukee?",
    "question_th": "คะแนนสุดท้ายของเกมที่เล่นกับ @ 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_en": "For the game played against the L.A. Lakers, where was the match played and what was the attendance level?",
    "question_th": "สำหรับเกมที่พบกับ LA Lakers แมตช์นี้เล่นที่ไหนและมีผู้เข้าชมระดับใด?",
    "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_en": "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\"?",
    "question_th": "ชื่ออะไร เมื่อรอบเป็น \"50\" เมื่อกริดมากกว่า 9 เมื่อทีมคือ \"Jim Beam Racing\" และเมื่อเวลา/เลิกเล่นคือ \"+ 18.0 วินาที\"",
    "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_en": "What is the lowest Laps, when Grid is greater than 7, and when Name is \"Fabian Coulthard\"?",
    "question_th": "รอบต่ำสุดคือเท่าไร เมื่อกริดมากกว่า 7 และเมื่อชื่อคือ \"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_en": "What is Time/Retired, when Laps is less than 49, and when Name is \"Michael Caruso\"?",
    "question_th": "เวลา/เกษียณ คืออะไร เมื่อรอบน้อยกว่า 49 และเมื่อชื่อคือ \"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_en": "What is Time/Retired, when Team is \"Team Vodafone\", and when Grid is greater than 4?",
    "question_th": "เวลา/เกษียณ คืออะไร เมื่อทีมคือ \"ทีมโวดาโฟน\" และเมื่อกริดมีค่ามากกว่า 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_en": "What is the draw number of the Artist Dav Mcnamara and a place bigger than 4?",
    "question_th": "เลขจับฉลากของศิลปิน Dav Mcnamara และอันดับที่มากกว่า 4 คือเท่าไร?",
    "context": "CREATE TABLE table_name_75 (draw VARCHAR, artist VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT stadium FROM table_name_86 WHERE runs = \"144\"",
    "question_en": "What is the stadium name that has 144 as the runs?",
    "question_th": "สนามกีฬาที่มี 144 เป็นสนามชื่ออะไร?",
    "context": "CREATE TABLE table_name_86 (stadium VARCHAR, runs VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_45 WHERE runs = \"100*\"",
    "question_en": "For what year was 100* runs happen?",
    "question_th": "มีการวิ่ง 100* ครั้งในปีใด",
    "context": "CREATE TABLE table_name_45 (year VARCHAR, runs VARCHAR)"
  },
  {
    "answer": "SELECT runs FROM table_name_18 WHERE year = \"2013\"",
    "question_en": "How many runs happened in 2013?",
    "question_th": "ในปี 2556 มีการวิ่งกี่ครั้ง?",
    "context": "CREATE TABLE table_name_18 (runs VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT runs FROM table_name_42 WHERE match = \"42\"",
    "question_en": "With 42 as the match what are the runs?",
    "question_th": "เมื่อมี 42 ในการแข่งขัน อะไรคือการวิ่ง?",
    "context": "CREATE TABLE table_name_42 (runs VARCHAR, match VARCHAR)"
  },
  {
    "answer": "SELECT match FROM table_name_8 WHERE year = \"2009\" AND runs = \"100*\"",
    "question_en": "In 2009 with 100* runs, what is the match?",
    "question_th": "ในปี 2009 ด้วยการวิ่ง 100* ครั้ง การแข่งขันคืออะไร?",
    "context": "CREATE TABLE table_name_8 (match VARCHAR, year VARCHAR, runs VARCHAR)"
  },
  {
    "answer": "SELECT match FROM table_name_90 WHERE \"stadium\" = \"stadium\"",
    "question_en": "When the game was played in the stadium called stadium what was the match?",
    "question_th": "สมัยที่แข่งกันที่สนามที่เรียกว่าสเตเดี้ยม แมตช์อะไร?",
    "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_en": "What is the 2nd round with a score of 3 - 3, and a team 1 fc gueugnon (d2)?",
    "question_th": "รอบที่ 2 ด้วยสกอร์ 3 - 3 และทีม 1 เอฟซี เกอญง (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_en": "What is the 2nd round with a score of 3 - 3, and a team 2 fc lorient (d2)?",
    "question_th": "รอบที่ 2 ด้วยสกอร์ 3 - 3 และทีม 2 เอฟซี ลอเรียง (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_en": "What is the 1st round with a team 2 paris sg (d1)?",
    "question_th": "รอบแรกกับทีม 2 ปารีส เอสจี (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_en": "WHAT IS THE NAME WITH A SUMMER TRANSFER WINDOW, AND COUNTRY SEN?",
    "question_th": "ชื่อที่มีหน้าต่างการโอนช่วงฤดูร้อนและประเทศเซนคืออะไร?",
    "context": "CREATE TABLE table_name_39 (name VARCHAR, transfer_window VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_48 WHERE name = \"kanu\"",
    "question_en": "WHAT IS THE COUNTRY WITH NAME OF KANU?",
    "question_th": "ประเทศที่มีชื่อ KANU คืออะไร?",
    "context": "CREATE TABLE table_name_48 (country VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT moving_to FROM table_name_27 WHERE country = \"bel\"",
    "question_en": "WHAT IS THE MOVING TO LOCATION WITH BEL AS COUNTRY?",
    "question_th": "การเคลื่อนย้ายไปยังที่ตั้งกับเบลในฐานะประเทศคืออะไร?",
    "context": "CREATE TABLE table_name_27 (moving_to VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_93 WHERE transfer_window = \"summer\"",
    "question_en": "WHAT IS THE COUNTRY WITH SUMMER TRANSFER WINDOW?",
    "question_th": "ประเทศที่มีกรอบเวลาการโอนช่วงฤดูร้อนคืออะไร?",
    "context": "CREATE TABLE table_name_93 (country VARCHAR, transfer_window VARCHAR)"
  },
  {
    "answer": "SELECT transfer_window FROM table_name_12 WHERE country = \"bra\"",
    "question_en": "WHAT IS THE TRANSFER WINDOW FOR THE COUNTRY OF BRA?",
    "question_th": "หน้าต่างการโอนสำหรับประเทศของบราคืออะไร?",
    "context": "CREATE TABLE table_name_12 (transfer_window VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT opponent_number FROM table_name_78 WHERE attendance = \"63,659\"",
    "question_en": "What opponent had an attendance of 63,659?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีผู้เข้าร่วม 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_en": "What was the result of 10/18/1947?",
    "question_th": "ผลของวันที่ 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_en": "What was the result for 10/04/1947?",
    "question_th": "ผลลัพธ์ของวันที่ 10/04/1947 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_75 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_91 WHERE report = \"aiff\"",
    "question_en": "Which competition has a report of AIFF?",
    "question_th": "การแข่งขันใดมีรายงานของ 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_en": "What is the score for a report of AFC on April 4, 2008?",
    "question_th": "รายงานของ AFC เมื่อวันที่ 4 เมษายน 2551 ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_18 (score VARCHAR, report VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_9 WHERE opponent = \"houston oilers\"",
    "question_en": "What was the attendance for the game against the Houston Oilers?",
    "question_th": "การมีส่วนร่วมในเกมกับฮุสตัน ออยเลอร์สเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_9 (attendance VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(attendance) FROM table_name_72 WHERE round = \"f\"",
    "question_en": "How many people attended round f?",
    "question_th": "รอบ f มีผู้เข้าร่วมกี่คน?",
    "context": "CREATE TABLE table_name_72 (attendance VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT AVG(attendance) FROM table_name_28 WHERE round = \"f\"",
    "question_en": "How many people on average attend round f?",
    "question_th": "รอบ f มีผู้เข้าร่วมโดยเฉลี่ยกี่คน?",
    "context": "CREATE TABLE table_name_28 (attendance INTEGER, round VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_56 WHERE round = \"qf\"",
    "question_en": "What was the result in round qf?",
    "question_th": "ผลลัพธ์ในรอบ qf คืออะไร?",
    "context": "CREATE TABLE table_name_56 (result VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_2 WHERE home_team = \"blackpool\"",
    "question_en": "Who played Blackpool when Blackpool was at home?",
    "question_th": "ใครเล่นแบล็คพูลตอนแบล็คพูลอยู่ที่บ้าน?",
    "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_en": "How many times did Arsenal tie when they were away?",
    "question_th": "อาร์เซนอลเสมอกันกี่ครั้งตอนเกมเยือน?",
    "context": "CREATE TABLE table_name_2 (tie_no VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_77 WHERE away_team = \"blackpool\"",
    "question_en": "What was the score of the game when Blackpool was away?",
    "question_th": "เกมนี้แบล็คพูลเยือนได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_77 (score VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_14 WHERE time = \"1:02\"",
    "question_en": "What result had a time of 1:02?",
    "question_th": "ผลลัพธ์อะไรมีเวลา 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_en": "What time was the event k-1 the challenge 1999?",
    "question_th": "งาน 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_en": "Where was the decision draw before round 5?",
    "question_th": "ตัดสินก่อนรอบ 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_en": "What is Career Win-Loss, when Tournament is \"Hamburg\"?",
    "question_th": "Career Win-Loss คืออะไร เมื่อทัวร์นาเมนท์คือ \"ฮัมบูร์ก\"?",
    "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_en": "What is 2004, when 2003 is \"1R\", and when 2006 is \"A\"?",
    "question_th": "ปี 2004 คืออะไร เมื่อปี 2003 คือ \"1R\" และเมื่อใดในปี 2549 คือ \"A\"",
    "context": "CREATE TABLE table_name_20 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2007 FROM table_name_89 WHERE 2000 = \"0 / 4\"",
    "question_en": "What is 2007, when 2000 is \"0 / 4\"?",
    "question_th": "ปี 2550 คืออะไร เมื่อปี 2543 เป็น \"0/4\"",
    "context": "CREATE TABLE table_name_89 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2007 FROM table_name_37 WHERE 2003 = \"85\"",
    "question_en": "What is 2007, when 2003 is \"85\"?",
    "question_th": "ปี 2550 คืออะไร เมื่อปี 2546 คือ \"85\"",
    "context": "CREATE TABLE table_name_37 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2004 FROM table_name_36 WHERE 2007 = \"a\" AND 1997 = \"a\"",
    "question_en": "What is 2004, when 2007 is \"A\", and when 1997 is \"A\"?",
    "question_th": "ปี 2004 คืออะไร เมื่อปี 2007 คือ \"A\" และเมื่อใดคือปี 1997 คือ \"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_en": "What is 2000, when 1996 is \"A\", when 1997 is \"A\", and when 2007 is \"A\"?",
    "question_th": "2000 คืออะไร เมื่อปี 1996 คือ \"A\" เมื่อปี 1997 คือ \"A\" และเมื่อใดคือ \"A\" เมื่อใด",
    "context": "CREATE TABLE table_name_30 (Id VARCHAR)"
  },
  {
    "answer": "SELECT award FROM table_name_43 WHERE category = \"cabello maluco\"",
    "question_en": "What is Award, when Category is Cabello Maluco?",
    "question_th": "รางวัลคืออะไร เมื่อหมวดหมู่คือ 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ález\" AND category = \"solista favorito\"",
    "question_en": "What is the total number of years in which Eiza González had a nominated work in the category of solista favorito?",
    "question_th": "จำนวนปีที่ Eiza González ได้รับการเสนอชื่อเข้าชิงผลงานในประเภท 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ón pop del año\"",
    "question_en": "Before the year 2012, what award was given to the artist in the category of revelación pop del año?",
    "question_th": "ก่อนปี พ.ศ. 2555 ศิลปินได้รับรางวัลอะไรในประเภท revelación pop del año?",
    "context": "CREATE TABLE table_name_49 (award VARCHAR, year VARCHAR, category VARCHAR)"
  },
  {
    "answer": "SELECT method FROM table_name_10 WHERE record = \"1-1\"",
    "question_en": "what is the method when the record is 1-1?",
    "question_th": "เมื่อสถิติเป็น 1-1 มีวิธีใดบ้าง?",
    "context": "CREATE TABLE table_name_10 (method VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_9 WHERE opponent = \"yuji hisamatsu\"",
    "question_en": "what is the event when the opponent is yuji hisamatsu?",
    "question_th": "เหตุการณ์จะเป็นอย่างไรเมื่อคู่ต่อสู้คือ ยูจิ ฮิซามัตสึ?",
    "context": "CREATE TABLE table_name_9 (event VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_44 WHERE event = \"ufc 154\"",
    "question_en": "What is the time of ufc 154?",
    "question_th": "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_en": "What is the average round of the match with kevin manderson as the opponent?",
    "question_th": "รอบเฉลี่ยของแมตช์ที่มี kevin manderson เป็นคู่ต่อสู้คือเท่าไร?",
    "context": "CREATE TABLE table_name_18 (round INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_name_47 WHERE date = \"january 19\"",
    "question_en": "What was the location attendance on January 19?",
    "question_th": "การเข้าร่วมสถานที่ในวันที่ 19 มกราคมเป็นอย่างไรบ้าง",
    "context": "CREATE TABLE table_name_47 (location_attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT SUM(game) FROM table_name_82 WHERE team = \"@ miami\"",
    "question_en": "What number game was it that the Spurs were @ Miami?",
    "question_th": "สเปอร์สเจอกับไมอามีในเกมหมายเลขไหน?",
    "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_en": "What is the total number of losses of the player that has drawn 1 and played smaller than 12?",
    "question_th": "จำนวนการแพ้ทั้งหมดของผู้เล่นที่เสมอ 1 และเล่นน้อยกว่า 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_en": "What type of surface did the tournament canada f9, markham have?",
    "question_th": "การแข่งขัน canada f9, markham มีพื้นผิวประเภทใด?",
    "context": "CREATE TABLE table_name_30 (surface VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_76 WHERE date = \"december 23\"",
    "question_en": "What is Score, when Date is December 23?",
    "question_th": "Score คืออะไร เมื่อเป็นวันที่ 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_en": "What is Score when Team is @ Kansas City-Omaha Kings?",
    "question_th": "คะแนนคืออะไรเมื่อทีมอยู่ที่ @ 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_en": "Which position has an Overall smaller than 64, and a Round of 1?",
    "question_th": "ตำแหน่งใดมีคะแนนรวมน้อยกว่า 64 และรอบ 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_en": "Which average overall has a Pick smaller than 5?",
    "question_th": "ค่าเฉลี่ยใดโดยรวมที่มี Pick น้อยกว่า 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_en": "Which highest overall has a College of idaho, and a Round smaller than 1?",
    "question_th": "คะแนนรวมสูงสุดใดมีวิทยาลัยไอดาโฮ และรอบที่เล็กกว่า 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_en": "How many rounds have a Pick smaller than 10, and a Name of larry hendershot?",
    "question_th": "มีกี่รอบที่มีพิคน้อยกว่า 10 และชื่อของแลร์รี่ เฮนเดอร์ช็อต?",
    "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_en": "What is Part 1, when Part 2 is \"fraus\"?",
    "question_th": "ส่วนที่ 1 คืออะไร เมื่อส่วนที่ 2 คือ \"การฉ้อโกง\"",
    "context": "CREATE TABLE table_name_99 (part_1 VARCHAR, part_2 VARCHAR)"
  },
  {
    "answer": "SELECT part_3 FROM table_name_36 WHERE part_1 = \"frjósa\"",
    "question_en": "What is Part 3, when Part 1 is \"frjósa\"?",
    "question_th": "ส่วนที่ 3 คืออะไร เมื่อส่วนที่ 1 คือ \"frjósa\"",
    "context": "CREATE TABLE table_name_36 (part_3 VARCHAR, part_1 VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_name_15 WHERE part_3 = \"blétu\"",
    "question_en": "What is Class, when Part 2 is \"blétu\"?",
    "question_th": "Class คืออะไร เมื่อส่วนที่ 2 คือ \"blétu\"",
    "context": "CREATE TABLE table_name_15 (class VARCHAR, part_3 VARCHAR)"
  },
  {
    "answer": "SELECT part_4 FROM table_name_65 WHERE part_2 = \"hljóp\"",
    "question_en": "What is Part 4, when Part 2 is \"hljóp\"?",
    "question_th": "ส่วนที่ 4 คืออะไร เมื่อส่วนที่ 2 คือ \"hljóp\"",
    "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_en": "What is Part 4, when Part 2 is \"batt\"?",
    "question_th": "ตอนที่ 4 คืออะไร เมื่อตอนที่ 2 คือ \"แบต\"?",
    "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_en": "What is Part 1, when Part 3 is \"heldu\"?",
    "question_th": "ตอนที่ 1 คืออะไร เมื่อตอนที่ 3 คือ \"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_en": "What is the home team which plays at a venue called Win Entertainment Centre?",
    "question_th": "ทีมเหย้าที่เล่นในสนามวิน เอ็นเตอร์เทนเมนท์ เซ็นเตอร์ คือทีมอะไร?",
    "context": "CREATE TABLE table_name_34 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_60 WHERE score = \"103-94\"",
    "question_en": "What away team had a 103-94 score?",
    "question_th": "ทีมเยือนทีมไหนมีสกอร์ 103-94?",
    "context": "CREATE TABLE table_name_60 (away_team VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_51 WHERE home_team = \"cairns taipans\"",
    "question_en": "When the home team is Cairns Taipans, at which venue do they play?",
    "question_th": "เมื่อเจ้าบ้านคือแคร์นส์ ไทปันส์ ลงเล่นที่สนามไหน?",
    "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_en": "What is the bird uniform for Eagle Rider Mickey Dugan?",
    "question_th": "ชุดนกของ 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_en": "Who is the Japanese voice actor of Eagle Rider Ollie Keeawani?",
    "question_th": "ใครคือนักพากย์ชาวญี่ปุ่นของ 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_en": "What is the Mecha of the Japanese voice actor Shingo Kanemoto?",
    "question_th": "Mecha ของนักพากย์ชาวญี่ปุ่น 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_en": "What is the weapon for the mecha of motorcycle?",
    "question_th": "อาวุธสำหรับเมชาของมอเตอร์ไซค์คืออะไร?",
    "context": "CREATE TABLE table_name_55 (weapon VARCHAR, mecha VARCHAR)"
  },
  {
    "answer": "SELECT bird_uniform FROM table_name_78 WHERE rank = \"g2\"",
    "question_en": "What is the bird uniform that is associated with the rank of G2?",
    "question_th": "ชุดนกที่เกี่ยวข้องกับยศ G2 คืออะไร?",
    "context": "CREATE TABLE table_name_78 (bird_uniform VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_29 WHERE score = \"103-96\"",
    "question_en": "Which team had a score of 103-96?",
    "question_th": "ทีมใดมีสกอร์ 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_en": "What is the smallest game had a location of Madison Square Garden with a score of 109-99?",
    "question_th": "เกมที่เล็กที่สุดคือแมดิสัน สแควร์ การ์เดน ด้วยคะแนน 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_en": "What is the 2007 value for the 2006 wta premier tournaments?",
    "question_th": "มูลค่าปี 2550 สำหรับ WTA Premier Tournament ปี 2549 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_25 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2007 FROM table_name_12 WHERE 2010 = \"wta premier 5 tournaments\"",
    "question_en": "What is the 2007 value for the 2010 wta premier 5 tournaments?",
    "question_th": "มูลค่าปี 2550 สำหรับทัวร์นาเมนต์ wta premier 5 ปี 2553 เป็นเท่าใด",
    "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_en": "What is the 2004 value with A in 2005, A in 2008, and lq in 2009?",
    "question_th": "ค่าปี 2547 โดยมี A ในปี 2548, A ในปี 2551 และ lq ในปี 2552 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_55 (Id VARCHAR)"
  },
  {
    "answer": "SELECT career_sr FROM table_name_21 WHERE tournament = \"wimbledon\"",
    "question_en": "What is the career SR for the tournament of wimbledon?",
    "question_th": "SR อาชีพสำหรับการแข่งขันวิมเบิลดันคืออะไร?",
    "context": "CREATE TABLE table_name_21 (career_sr VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_71 WHERE tie_no = \"12\"",
    "question_en": "What is the score for the Tie no. 12?",
    "question_th": "คะแนนเสมอกันคือเท่าไร 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_en": "What is the home team against the away team Norwich City?",
    "question_th": "เจ้าบ้านเจอกับทีมเยือนนอริช ซิตี้เป็นไงบ้าง?",
    "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_en": "Who is the home team with a tie no. 12?",
    "question_th": "เจ้าบ้านทีมไหนเสมอกัน 12?",
    "context": "CREATE TABLE table_name_70 (home_team VARCHAR, tie_no VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_1 WHERE pick = 219",
    "question_en": "WHAT IS THE PLAYER WITH A PICK OF 219?",
    "question_th": "ผู้เล่นที่มีตัวเลือก 219 คืออะไร?",
    "context": "CREATE TABLE table_name_1 (player VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_97 WHERE round = 3",
    "question_en": "WHAT NATIONALITY HAS ROUND 3?",
    "question_th": "รอบที่ 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_en": "WHAT PLAYER HAS A PICK SMALLER THAN 110, AND DUKE AS COLLEGE?",
    "question_th": "ผู้เล่นคนไหนที่มีตัวเลือกน้อยกว่า 110 และเป็น DUKE ในฐานะวิทยาลัย?",
    "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_en": "WHAT POSITION HAD SPURS IN 2009-2012?",
    "question_th": "ตำแหน่งใดที่มีแรงกระตุ้นในปี 2552-2555?",
    "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_en": "Who won on the week of August 10?",
    "question_th": "ใครชนะในสัปดาห์ที่ 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_en": "What surface was played on during the week of August 10?",
    "question_th": "สัปดาห์ที่ 10 สิงหาคมเล่นบนพื้นผิวใด?",
    "context": "CREATE TABLE table_name_20 (surface VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_68 WHERE finalist = \"greg rusedski\"",
    "question_en": "What tournament had Greg Rusedski as a finalist?",
    "question_th": "Greg Rusedski เข้ารอบสุดท้ายในทัวร์นาเมนต์ใด",
    "context": "CREATE TABLE table_name_68 (tournament VARCHAR, finalist VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_71 WHERE week = \"march 16\"",
    "question_en": "What was the surface that was played on during the week of March 16?",
    "question_th": "พื้นผิวที่เล่นในช่วงสัปดาห์วันที่ 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_en": "what is the least laps when the driver is rubens barrichello and the grid is less than 12?",
    "question_th": "รอบน้อยที่สุดคือเท่าไรเมื่อคนขับคือ Rubens Barrichello และกริดน้อยกว่า 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_en": "what is the time/retired when the laps is 55?",
    "question_th": "ครบรอบ 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_en": "Where was the event Kage Kombat 16?",
    "question_th": "งาน Kage Kombat 16 จัดขึ้นที่ไหน?",
    "context": "CREATE TABLE table_name_76 (location VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_18 WHERE record = \"18–5 (1)\"",
    "question_en": "Which event had the record of 18–5 (1)?",
    "question_th": "เหตุการณ์ใดมีสถิติ 18–5 (1)",
    "context": "CREATE TABLE table_name_18 (event VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT grid FROM table_name_88 WHERE driver = \"menato boffa\"",
    "question_en": "What was Menato Boffa's grid?",
    "question_th": "ตารางของ Menato Boffa คืออะไร?",
    "context": "CREATE TABLE table_name_88 (grid VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT time_retired FROM table_name_80 WHERE driver = \"ludovico scarfiotti\"",
    "question_en": "What is the Time/Retired value for Ludovico Scarfiotti?",
    "question_th": "ค่าเวลา/มูลค่าที่เลิกใช้ของ 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_en": "Who was Albino Buticchi's constructor?",
    "question_th": "ใครคือผู้สร้างของ Albino Buticchi",
    "context": "CREATE TABLE table_name_53 (constructor VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_72 WHERE entrant = \"rovero campello\"",
    "question_en": "Who was the driver for Rovero Campello?",
    "question_th": "ใครคือคนขับรถของ Rovero Campello?",
    "context": "CREATE TABLE table_name_72 (driver VARCHAR, entrant VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_48 WHERE player = \"jay haas\"",
    "question_en": "What is the score of player jay haas?",
    "question_th": "นักเตะเจย์ฮาสได้คะแนนเท่าไหร่?",
    "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_en": "Who is the player with a +3 to par and a 72-68-71-72=283 score?",
    "question_th": "ใครคือผู้เล่นที่มีพาร์ +3 และสกอร์ 72-68-71-72=283?",
    "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_en": "What country has a 74-72-71-67=284 score?",
    "question_th": "ประเทศใดมีคะแนน 74-72-71-67=284?",
    "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_en": "What is the lowest Bike No, when Driver / Passenger is Joris Hendrickx / Kaspars Liepins, and when Position is less than 4?",
    "question_th": "หมายเลขจักรยานต่ำสุดคือเท่าใด เมื่อผู้ขับขี่ / ผู้โดยสารคือ Joris Hendrickx / Kaspars Liepins และเมื่อตำแหน่งน้อยกว่า 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_en": "What is the average Position, when Bike No is greater than 8, and when Points is less than 240?",
    "question_th": "ตำแหน่งเฉลี่ยคืออะไร เมื่อหมายเลขจักรยานมากกว่า 8 และเมื่อคะแนนน้อยกว่า 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_en": "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?",
    "question_th": "ตำแหน่งต่ำสุดคือเมื่อหมายเลขจักรยานมากกว่า 10 เมื่อผู้ขับขี่ / ผู้โดยสารคือ Nicky Pulinx / Ondrej Cermak และเมื่อคะแนนมากกว่า 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_en": "What is the highest Points, when Position is less than 4, when Equipment is Zabel - VMC, and when Bike No is less than 1?",
    "question_th": "อะไรคือคะแนนสูงสุด เมื่อตำแหน่งน้อยกว่า 4 เมื่ออุปกรณ์คือ Zabel - VMC และเมื่อ Bike No น้อยกว่า 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_en": "What is the average Bike No, when Driver / Passenger is Joris Hendrickx / Kaspars Liepins, and when Position is greater than 4?",
    "question_th": "หมายเลขจักรยานโดยเฉลี่ยคือเท่าใด เมื่อผู้ขับขี่ / ผู้โดยสารคือ Joris Hendrickx / Kaspars Liepins และเมื่อตำแหน่งมากกว่า 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_en": "What is the type of electronic with the Gamecube Platform?",
    "question_th": "อิเล็กทรอนิกส์ประเภทใดบ้างที่มีแพลตฟอร์ม Gamecube?",
    "context": "CREATE TABLE table_name_10 (type VARCHAR, platform VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_80 WHERE date = \"13 february 1994\"",
    "question_en": "On what type of surface did they play on 13 February 1994?",
    "question_th": "พวกเขาเล่นบนพื้นผิวประเภทใดในวันที่ 13 กุมภาพันธ์ พ.ศ. 2537?",
    "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_en": "In which tournament was Silke Meier the opponent in the final?",
    "question_th": "Silke Meier เป็นคู่ต่อสู้ในทัวร์นาเมนต์ใดในรอบชิงชนะเลิศ?",
    "context": "CREATE TABLE table_name_8 (tournament VARCHAR, opponent_in_the_final VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_60 WHERE score = \"2–0\"",
    "question_en": "Which venue has a scoreof 2–0?",
    "question_th": "สนามใดมีคะแนน 2–0?",
    "context": "CREATE TABLE table_name_60 (venue VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_75 WHERE team = \"indiana\"",
    "question_en": "WHAT IS THE SCORE WITH THE TEAM OF INDIANA?",
    "question_th": "คะแนนของทีมอินเดียนาคืออะไร?",
    "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_en": "WHAT IS THE TEAM WITH ATTENDANCE AT TARGET CENTER 11,921?",
    "question_th": "ทีมที่เข้าร่วมที่ศูนย์เป้าหมาย 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_en": "What was the attendance on 10/29/1932?",
    "question_th": "ผู้เข้าร่วมในวันที่ 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_en": "What was the Attendance on December 21, 1986 before Week 16?",
    "question_th": "ผู้เข้าร่วมในวันที่ 21 ธันวาคม 1986 ก่อนสัปดาห์ที่ 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_en": "In what Week was the Attendance 43,430?",
    "question_th": "ผู้เข้าร่วม 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_en": "What was the Result of the game on December 14, 1986 after Week 11?",
    "question_th": "ผลลัพธ์ของเกมในวันที่ 14 ธันวาคม พ.ศ. 2529 หลังจากสัปดาห์ที่ 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_en": "What team did they play when the series was 1-1?",
    "question_th": "พวกเขาเล่นทีมอะไรเมื่อซีรีส์เสมอ 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_en": "What were the high points on May 12?",
    "question_th": "จุดสูงสุดในวันที่ 12 พฤษภาคมคืออะไร?",
    "context": "CREATE TABLE table_name_4 (high_points VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_76 WHERE series = \"2-1\"",
    "question_en": "What was the team they played when the series was 2-1?",
    "question_th": "ทีมที่พวกเขาเล่นเมื่อซีรีส์คือ 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_en": "who is the opponent on february 8, 1990?",
    "question_th": "คู่ต่อสู้ในวันที่ 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_en": "who is the opponent when the streak is won 9 on april 13, 1990?",
    "question_th": "ใครคือคู่ต่อสู้เมื่อสตรีคชนะ 9 เมื่อวันที่ 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_en": "What is the total number of # Of Prefectural Votes, when # Of Seats Won is greater than 69, and when Leader is Yasuhiro Nakasone?",
    "question_th": "จำนวนคะแนนโหวตของจังหวัดทั้งหมดเป็นเท่าใด เมื่อ # ที่นั่งที่ชนะมากกว่า 69 และเมื่อผู้นำคือ 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_en": "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?",
    "question_th": "จำนวนคะแนนโหวตระดับชาติโดยเฉลี่ยคือเท่าใด เมื่อการเลือกตั้งเกิดขึ้นก่อนปี 1992 เมื่อ % ของการโหวตของจังหวัดคือ 39.5% เมื่อผู้นำคือ Takeo Fukuda และเมื่อ # จำนวนที่นั่งที่ชนะมากกว่า 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_en": "What is the total number of # Of Prefectural Votes, when % Of Prefectural Vote is 48.4%, and when # Of Seats Won is greater than 61?",
    "question_th": "จำนวนคะแนนโหวตของจังหวัดทั้งหมดเป็นเท่าใด โดยที่ % ของการโหวตของจังหวัดคือ 48.4% และเมื่อจำนวนที่นั่งที่ชนะมากกว่า 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_en": "What was the resolution of the fight against steve schneider?",
    "question_th": "อะไรคือปณิธานของการต่อสู้กับสตีฟ ชไนเดอร์?",
    "context": "CREATE TABLE table_name_25 (res VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT res FROM table_name_89 WHERE record = \"2-0\"",
    "question_en": "What was the resolution of the fight when matt grice had a record of 2-0?",
    "question_th": "ความละเอียดของการชกเมื่อแมตต์ กรีซ มีสถิติ 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_en": "What was the record when matt grice fought dennis bermudez with a time of 5:00?",
    "question_th": "อะไรคือบันทึกเมื่อ Matt Grice ต่อสู้กับ Dennis Bermudez ด้วยเวลา 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_en": "What was the outcome of the match against Juan Ignacio Chela?",
    "question_th": "ผลการแข่งขันกับฮวน อิกนาซิโอ เชล่าเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_51 (outcome VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT 250 AS _cc FROM table_name_89 WHERE year > 1984",
    "question_en": "What is the 250 cc with a year bigger than 1984?",
    "question_th": "250 ซีซี หนึ่งปีใหญ่กว่าปี 1984 คืออะไร?",
    "context": "CREATE TABLE table_name_89 (year INTEGER)"
  },
  {
    "answer": "SELECT score FROM table_name_79 WHERE place = \"t9\" AND player = \"jerry barber\"",
    "question_en": "How much did Jerry Barber score to come in at T9?",
    "question_th": "Jerry Barber ทำคะแนนได้เท่าไหร่ถึงเข้า 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_en": "What place did Jerry Barber of the United States come in at?",
    "question_th": "Jerry Barber จากอเมริกา เข้ามาอยู่ที่ไหน?",
    "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_en": "What score did Ed Furgol get to come in at T6?",
    "question_th": "Ed Furgol ได้คะแนนเท่าไรที่ 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_en": "What score did Ted Kroll get to come in at T2?",
    "question_th": "Ted Kroll ได้คะแนนเท่าไรที่ 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_en": "Where is Fred Haas from?",
    "question_th": "Fred Haas มาจากไหน?",
    "context": "CREATE TABLE table_name_15 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_93 WHERE player = \"fred haas\"",
    "question_en": "Where is Fred Haas from?",
    "question_th": "Fred Haas มาจากไหน?",
    "context": "CREATE TABLE table_name_93 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_34 WHERE school_club_team = \"mcmaster\"",
    "question_en": "What is Position, when School/Club Team is McMaster?",
    "question_th": "ตำแหน่งคืออะไร เมื่อทีมโรงเรียน/สโมสรคือ 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_en": "What is the lowest Round, when Pick is 9 (via Hamilton)?",
    "question_th": "รอบต่ำสุดคือเท่าไร เมื่อเลือกคือ 9 (ผ่านแฮมิลตัน)",
    "context": "CREATE TABLE table_name_66 (round INTEGER, pick VARCHAR)"
  },
  {
    "answer": "SELECT pick FROM table_name_59 WHERE position = \"ol\" AND round < 6",
    "question_en": "What is Pick, when Position is OL, and when Round is less than 6?",
    "question_th": "Pick คืออะไร เมื่อ Position เป็น OL และเมื่อ Round น้อยกว่า 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_en": "What is School/Club Team, when Pick is 9 (via Hamilton)?",
    "question_th": "ทีมโรงเรียน/สโมสรคืออะไร เมื่อเลือกเป็น 9 (ผ่านแฮมิลตัน)",
    "context": "CREATE TABLE table_name_38 (school_club_team VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_53 WHERE attendance = \"55,353\"",
    "question_en": "What is the Result of the game with an Attendance of 55,353?",
    "question_th": "ผลลัพธ์ของเกมที่มีผู้เข้าร่วม 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_en": "In what Week was the Attendance 39,923?",
    "question_th": "ผู้เข้าร่วม 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_en": "What was the Result of the game after Week 9 with an Attendance of 69,714?",
    "question_th": "ผลลัพธ์ของเกมหลังสัปดาห์ที่ 9 โดยมีผู้เข้าร่วม 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_en": "What Week falls on September 4, 1994?",
    "question_th": "สัปดาห์ใดตรงกับวันที่ 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_en": "What is Pos., when Player is \"Nigel De Jong\"?",
    "question_th": "POS คืออะไร เมื่อผู้เล่นคือ “ไนเจล เดอ ยอง”?",
    "context": "CREATE TABLE table_name_33 (pos VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT from_club FROM table_name_80 WHERE player = \"robinho\"",
    "question_en": "What is From Club, when Player is \"Robinho\"?",
    "question_th": "From Club คืออะไร เมื่อผู้เล่นคือ \"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_en": "What is Pos., when From Club is \"CSKA Moscow\"?",
    "question_th": "Pos. คืออะไร เมื่อ From Club คือ \"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_en": "What is Pos., when From Club is \"Chelsea\", and when Date is \"30 July 2008\"?",
    "question_th": "ตำแหน่งคืออะไร เมื่อ From Club คือ \"เชลซี\" และวันที่คือ \"30 กรกฎาคม 2551\"?",
    "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_en": "What is the team 2 for the match with a team 1 of Panathinaikos?",
    "question_th": "ทีมที่ 2 เจอกับทีมที่ 1 พานาธิไนกอส คือทีมอะไร?",
    "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_en": "What was the first leg score for the match with a team 1 of Panathinaikos?",
    "question_th": "สกอร์เลกแรกนัดแรกกับทีม 1 พานาธิไนกอส คือเท่าไร?",
    "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_en": "What is the 2nd leg score for the match with a team 2 of Werder Bremen?",
    "question_th": "สกอร์เลกที่ 2 ของแมตช์กับทีม 2 แวร์เดอร์ เบรเมน คือเท่าไร?",
    "context": "CREATE TABLE table_name_48 (team_2 VARCHAR)"
  },
  {
    "answer": "SELECT kitmaker FROM table_name_38 WHERE team = \"fc augsburg\"",
    "question_en": "Who is the kitmaker for Fc Augsburg?",
    "question_th": "ใครคือผู้สร้างชุดแข่งของเอฟซี เอาก์สบวร์ก?",
    "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_en": "Who is the head coach of the team, whose shirt sponsor is karstadt quelle versicherungen?",
    "question_th": "ใครคือหัวหน้าโค้ชของทีม โดยมี คาร์สตัดท์ เควลเล เวอร์ซิเชรุงเกน ซึ่งเป็นผู้สนับสนุนเสื้อแข่ง?",
    "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_en": "Who is the kitmaker for the team that Uwe Rapolder is the head coach of.",
    "question_th": "ใครเป็นคนทำชุดให้ทีม โดยมี อูเว่ ราโปลเดอร์ เป็นหัวหน้าโค้ช",
    "context": "CREATE TABLE table_name_84 (kitmaker VARCHAR, head_coach VARCHAR)"
  },
  {
    "answer": "SELECT team AS captain FROM table_name_88 WHERE shirt_sponsor = \"lübzer\"",
    "question_en": "Who is the team captain of the team that Lübzer is the shirt sponsor for?",
    "question_th": "ใครคือกัปตันทีมของทีมที่ลืบเซอร์เป็นสปอนเซอร์เสื้อให้?",
    "context": "CREATE TABLE table_name_88 (team VARCHAR, shirt_sponsor VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_25 WHERE game = 22",
    "question_en": "What was the date of the game number 22?",
    "question_th": "เกมหมายเลข 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_en": "What is the Director from Paramount with a Film with a Gross of $128,152,301?",
    "question_th": "ผู้กำกับจาก Paramount กับภาพยนตร์ที่ทำรายได้รวม 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_en": "What is the Studio of the Rank 10 Film?",
    "question_th": "สตูดิโอของภาพยนตร์อันดับ 10 คืออะไร?",
    "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_en": "What is the release date of the album written by Ford, Phil Phil Ford under BBC Audio?",
    "question_th": "วันที่วางจำหน่ายของอัลบั้มที่เขียนโดย Ford, Phil Phil Ford ภายใต้ 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_en": "What is the release date of the album written by Goss, James James Goss under Audiogo?",
    "question_th": "อัลบั้มที่เขียนโดย Goss, James James Goss ภายใต้ 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_en": "Who is the company that released the album on 2008-09-18 18 September 2008?",
    "question_th": "บริษัทที่ออกอัลบั้มเมื่อ 18 กันยายน 2551 2551-09-61 คือใคร?",
    "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_en": "Notre-Dame-De-Lourdes has what average area km 2?",
    "question_th": "Notre-Dame-De-Lourdes มีพื้นที่เฉลี่ยเท่าไร กม. 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_en": "Saint-Jacques has what as the area km 2?",
    "question_th": "Saint-Jacques มีพื้นที่เท่าใด กม. 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_en": "With an area km 2 of 343.95 what is the official name?",
    "question_th": "ด้วยพื้นที่ กม.2 รวม 343.95 มีชื่อทางการว่าอะไร?",
    "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_en": "Saint-Basile has what status?",
    "question_th": "Saint-Basil มีสถานะอะไร?",
    "context": "CREATE TABLE table_name_32 (status VARCHAR, official_name VARCHAR)"
  },
  {
    "answer": "SELECT circuit FROM table_name_77 WHERE session = \"qualifying\"",
    "question_en": "What circuit has qualifying as the session?",
    "question_th": "วงจรใดมีคุณสมบัติเป็นเซสชั่น?",
    "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_en": "The 1997 Japanese Formula 3 Championship is part of what circuit?",
    "question_th": "การแข่งขันชิงแชมป์ Formula 3 ของญี่ปุ่นปี 1997 เป็นส่วนหนึ่งของสนามใด",
    "context": "CREATE TABLE table_name_63 (circuit VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT session FROM table_name_84 WHERE event = \"fall nationals\"",
    "question_en": "The Fall Nationals has what sessions?",
    "question_th": "Fall Nationals มีเซสชันอะไรบ้าง?",
    "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_en": "The 1977 Japanese Grand Prix in the open wheel discipline has what session?",
    "question_th": "Japanese Grand Prix ปี 1977 ในประเภท Open Wheel มีเซสชันอะไรบ้าง?",
    "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_en": "What circuit has a race for the session, and open wheel as the discipline, and the 1977 Japanese Grand Prix as the event?",
    "question_th": "สนามใดมีการแข่งขันสำหรับเซสชั่นนี้ และมี Open Wheel เป็นหลักและมี Japanese Grand Prix ปี 1977 เป็นงาน",
    "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_en": "For what cause is Touring Car Racing the discipline?",
    "question_th": "Touring Car Racing กลายเป็นวินัยเพราะอะไร?",
    "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_en": "What player scored 70-73-69-72=284?",
    "question_th": "นักเตะคนไหนทำคะแนนได้ 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_en": "What is the lowest amount of money that Craig Stadler won?",
    "question_th": "Craig Stadler ชนะเงินได้น้อยที่สุดคือเท่าไร?",
    "context": "CREATE TABLE table_name_64 (money___ INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_94 WHERE player = \"david graham\"",
    "question_en": "What country is David Graham from?",
    "question_th": "David Graham มาจากประเทศใด",
    "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 = \"–2\"",
    "question_en": "What is the total amount of money that the United States one with a To par of –2?",
    "question_th": "จำนวนเงินทั้งหมดที่สหรัฐอเมริกามี To เท่ากับ –2 คือเท่าไร?",
    "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_en": "What score did Jack Nicklaus have when he placed t6?",
    "question_th": "Jack Nicklaus ได้คะแนนเท่าไหร่เมื่อเขาอยู่ 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_en": "How much money has a to par of E?",
    "question_th": "เงินมีเท่าไหร่ถึงพาร์ของ E?",
    "context": "CREATE TABLE table_name_14 (money___ VARCHAR, to_par VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_29 WHERE date = \"october 16\"",
    "question_en": "What was the location on October 16?",
    "question_th": "วันที่ 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_en": "Who was the winner when the result was 56-0 before 1935?",
    "question_th": "ใครเป็นผู้ชนะเมื่อผลเป็น 56-0 ก่อนปี 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_en": "Who was the winner in philadelphia municipal stadium in 1939?",
    "question_th": "ใครคือผู้ชนะในสนามกีฬาเทศบาลฟิลาเดลเฟียในปี 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_en": "What was the earliest year that the result 21-17?",
    "question_th": "ปีแรกที่ผล 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_en": "What was the location after 1934 that Philadelphia Eagles lost on October 15?",
    "question_th": "สถานที่ใดหลังจากปี 1934 ที่ Philadelphia Eagles แพ้เมื่อวันที่ 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 (장면)\"",
    "question_en": "When did chang myon (장면) leave office?",
    "question_th": "ชางเมียน (장면) ออกจากตำแหน่งเมื่อไหร่?",
    "context": "CREATE TABLE table_name_96 (left_office VARCHAR, romanized__hangul_ VARCHAR)"
  },
  {
    "answer": "SELECT took_office FROM table_name_53 WHERE vice > 6",
    "question_en": "When did the vice president with a vice over 6 take office?",
    "question_th": "รองประธานและรอง 6 เข้ารับตำแหน่งเมื่อใด",
    "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_en": "What province in Tumbes has less than 11 districts and a UBIGEO of 2401?",
    "question_th": "จังหวัดใดในตุมเบสที่มีน้อยกว่า 11 อำเภอและมี UBIGEO เท่ากับ 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én\"",
    "question_en": "What is Chepén's average UBIGEO?",
    "question_th": "UBIGEO โดยเฉลี่ยของ Chepén คืออะไร",
    "context": "CREATE TABLE table_name_34 (ubigeo INTEGER, province VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_name_63 WHERE districts = 3 AND capital = \"chepén\"",
    "question_en": "What is the region for Chepén with 3 districts?",
    "question_th": "เชเปนมี 3 อำเภอในภูมิภาคใดบ้าง",
    "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_en": "What is the Diameter (km) of the Valle with a Longitude of 152.5e named before 1997?",
    "question_th": "เส้นผ่านศูนย์กลาง (กม.) ของหุบเขาที่มีลองจิจูด 152.5e คืออะไร ซึ่งตั้งชื่อก่อนปี 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_en": "What is the Year named of the Ganga Valles?",
    "question_th": "ปีที่แม่น้ำคงคาชื่ออะไร?",
    "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_en": "What is the Latitude of the Alajen Vallis named after 1997?",
    "question_th": "ละติจูดของ Alajen Vallis ตั้งชื่อตามปี 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_en": "What is the release date with par116 as the cat. #?",
    "question_th": "วันที่วางจำหน่ายคือเมื่อ par116 เป็นแมว -",
    "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_en": "What is the title released on 24 July 2005?",
    "question_th": "ชื่อเรื่องที่ออกเมื่อวันที่ 24 กรกฎาคม พ.ศ. 2548 คืออะไร?",
    "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_en": "What is Record, when High Points is \"Thaddeus Young (19)\", and when Team is \"@ Orlando\"?",
    "question_th": "Record คืออะไร เมื่อ High Points คือ \"Thaddeus Young (19)\" และเมื่อทีมคือ \"@ 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_en": "What is High Rebounds, when Location Attendance is \"Time Warner Cable Arena 10,848\"?",
    "question_th": "High Rebounds คืออะไร เมื่อการเข้าร่วมตำแหน่งคือ \"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_en": "Can you tell me the lowest Losses that has the Gains smaller than 0?",
    "question_th": "คุณช่วยบอกฉันได้ไหมว่าการขาดทุนต่ำสุดที่มีกำไรน้อยกว่า 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_en": "what is the record when marc gasol (8) had the high rebounds?",
    "question_th": "มาร์ค กาซอล (8) รีบาวด์สูงมีสถิติไหน?",
    "context": "CREATE TABLE table_name_23 (record VARCHAR, high_rebounds VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_40 WHERE date = \"march 8\"",
    "question_en": "what is the score on march 8?",
    "question_th": "คะแนนวันที่ 8 มีนาคมเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_40 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_name_78 WHERE date = \"march 30\"",
    "question_en": "who had the high assists on march 30?",
    "question_th": "ใครทำแอสซิสต์ได้สูงในวันที่ 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_en": "Which location has a capacity greater than 51,500?",
    "question_th": "สถานที่ใดมีความจุมากกว่า 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_en": "Who was the rider who had less than 30 laps, ended in an accident with a car manufactured by yamaha on a grid larger than 3?",
    "question_th": "ใครคือนักแข่งที่วิ่งไม่ถึง 30 รอบ จบด้วยอุบัติเหตุด้วยรถยนต์ที่ผลิตโดย Yamaha บนกริดที่ใหญ่กว่า 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_en": "Who was the manufacturer for the race on grid 12?",
    "question_th": "ใครเป็นผู้ผลิตสำหรับการแข่งขันในตาราง 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_en": "Who was the manufacturer for the car that dani pedrosa did less than 9 laps in?",
    "question_th": "ใครเป็นผู้ผลิตรถที่ dani pedrosa ทำไปได้ไม่ถึง 9 รอบ?",
    "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_en": "How many laps did the driver with the yamaha manufacturer go on grid 3?",
    "question_th": "คนขับกับผู้ผลิต Yamaha ขึ้นกริด 3 กี่รอบ?",
    "context": "CREATE TABLE table_name_61 (laps VARCHAR, manufacturer VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_9 WHERE city = \"baltimore\"",
    "question_en": "What is the time in Baltimore?",
    "question_th": "บัลติมอร์กี่โมง?",
    "context": "CREATE TABLE table_name_9 (time VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_96 WHERE score = \"1-8\"",
    "question_en": "What date was the score 1-8?",
    "question_th": "คะแนน 1-8 คือวันไหน?",
    "context": "CREATE TABLE table_name_96 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_12 WHERE opponent = \"chris barden\"",
    "question_en": "What is the event where the opponent was Chris Barden?",
    "question_th": "เหตุการณ์ที่คู่ต่อสู้คือคริส บาร์เดน คืออะไร?",
    "context": "CREATE TABLE table_name_12 (event VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_26 WHERE tournament = \"napoli\"",
    "question_en": "What is the Surface of the Court in Napoli?",
    "question_th": "พื้นผิวของสนามในนาโปลีคืออะไร?",
    "context": "CREATE TABLE table_name_26 (surface VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_45 WHERE score = \"6–4, 6–4\"",
    "question_en": "What is the Outcome of the game with a Score of 6–4, 6–4?",
    "question_th": "ผลลัพธ์ของเกมด้วยคะแนน 6–4, 6–4 คืออะไร?",
    "context": "CREATE TABLE table_name_45 (outcome VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_55 WHERE opponent = \"frederic jeanclaude\"",
    "question_en": "What is the Outcome of the game against Frederic Jeanclaude?",
    "question_th": "ผลเกมกับเฟรเดริก ฌองคล็อดเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_55 (outcome VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_66 WHERE score = \"6–2, 6–2\"",
    "question_en": "What is the Opponent in a game with a Score of 6–2, 6–2?",
    "question_th": "ฝ่ายตรงข้ามในเกมที่มีคะแนน 6–2, 6–2 คืออะไร?",
    "context": "CREATE TABLE table_name_66 (opponent VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_61 WHERE opponent = \"ivo klec\" AND score = \"6–3, 6–3\"",
    "question_en": "What is the Surface of the court against Ivo Klec with a Score of 6–3, 6–3?",
    "question_th": "พื้นผิวของสนามกับ Ivo Klec ด้วยคะแนน 6–3, 6–3 เป็นอย่างไรบ้าง?",
    "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_en": "Who was the player with a score of 70-69=139?",
    "question_th": "นักเตะคนไหนที่มีคะแนน 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_en": "What country did Bart Bryant with a score of 69-70=139 belong to?",
    "question_th": "Bart Bryant ที่มีคะแนน 69-70=139 อยู่ในประเทศใด",
    "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_en": "What is the country that the player with a score of 70-69=139 from?",
    "question_th": "ผู้เล่นที่มีคะแนน 70-69=139 มาจากประเทศอะไร?",
    "context": "CREATE TABLE table_name_43 (country VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_98 WHERE score = 66 - 67 = 133",
    "question_en": "In what place did the player with a score of 66-67=133 come in?",
    "question_th": "ผู้เล่นที่มีคะแนน 66-67=133 เข้ามาอยู่อันดับที่ใด?",
    "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_en": "What country was the player from who placed t3 with a score of 70-68=138?",
    "question_th": "ผู้เล่นจากประเทศใดที่ติดอันดับ t3 ด้วยคะแนน 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_en": "What was the score for the player from Scotland?",
    "question_th": "นักเตะจากสกอตแลนด์ได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_76 (score VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT AVG(week) FROM table_name_86 WHERE date = \"november 11, 1962\"",
    "question_en": "What week had a game that was played on November 11, 1962?",
    "question_th": "สัปดาห์ใดมีเกมที่เล่นในวันที่ 11 พฤศจิกายน พ.ศ. 2505?",
    "context": "CREATE TABLE table_name_86 (week INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT author FROM table_name_49 WHERE title = \"bludgeoning angel dokuro-chan\"",
    "question_en": "Who is the author of Bludgeoning Angel Dokuro-Chan?",
    "question_th": "ใครคือผู้แต่ง 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_en": "What was the manner of departure for the outgoing manager, miguel brindisi?",
    "question_th": "มิเกล บรินดิซี่ ผู้จัดการทีมที่กำลังจะลาออกมีลักษณะอย่างไร?",
    "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_en": "Who was the outgoing manager for the team, necaxa?",
    "question_th": "ใครคือผู้จัดการทีมที่จะออกไป เนกาซ่า?",
    "context": "CREATE TABLE table_name_28 (outgoing_manager VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_31 WHERE finalist = \"fsv frankfurt\"",
    "question_en": "Who was the winner when the finalist was fsv frankfurt?",
    "question_th": "ใครคือผู้ชนะเมื่อผู้เข้ารอบสุดท้ายคือ 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_en": "Who was the finalist when the winner was First Vienna FC?",
    "question_th": "ใครคือผู้เข้ารอบสุดท้ายเมื่อผู้ชนะคือเฟิร์ส เวียนนา เอฟซี?",
    "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_en": "How did the manager replaced by Wolfgang Frank depart?",
    "question_th": "ผู้จัดการทีมที่ถูกแทนที่โดยโวล์ฟกัง แฟรงค์ ลาออกอย่างไร?",
    "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_en": "Who was hired to fill the spot that became vacant on 3 March 2009?",
    "question_th": "ใครบ้างที่ได้รับการว่าจ้างให้มาเติมเต็มตำแหน่งที่ว่างเมื่อวันที่ 3 มีนาคม พ.ศ. 2552?",
    "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_en": "What is the name of the person that was appointed on 13 May 2009?",
    "question_th": "บุคคลที่ได้รับการแต่งตั้งเมื่อวันที่ 13 พฤษภาคม 2552 ชื่ออะไร",
    "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_en": "How did the manager replaced by Michael Oenning depart?",
    "question_th": "ผู้จัดการทีมที่เข้ามาแทนที่โดย Michael Oenning จากไปอย่างไร?",
    "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_en": "What is the name of the manager that was replaced by Michael Oenning?",
    "question_th": "ผู้จัดการทีมที่ 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_en": "Which Home Team has a Game of game 1?",
    "question_th": "ทีมเจ้าบ้านใดมีเกมในเกมที่ 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_en": "Which Game has a Home Team of san francisco, and a Date of april 22?",
    "question_th": "เกมไหนมีเจ้าบ้านซานฟรานซิสโก และวันที่ 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_en": "Which Road Team has a Home Team of boston, and a Result of 124-101?",
    "question_th": "ทีมโรดใดมีทีมเหย้าบอสตัน และผล 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_en": "Which Game has a Home Team of san francisco, and a Date of april 22?",
    "question_th": "เกมไหนมีเจ้าบ้านซานฟรานซิสโก และวันที่ 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_en": "Which Result has a Road Team of san francisco, and a Game of game 2?",
    "question_th": "ผลลัพธ์ใดมีทีม Road จากซานฟรานซิสโก และเกมของเกมที่ 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_en": "Which Home Team has a Result of 124-101?",
    "question_th": "เจ้าบ้านทีมไหนมีผลสกอร์ 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_en": "What is the total attendance in a week less than 5 when the result was l 24-20?",
    "question_th": "จำนวนผู้เข้าร่วมทั้งหมดในหนึ่งสัปดาห์น้อยกว่า 5 คนเมื่อผลลัพธ์คือ 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_en": "What is the largest week with the Atlanta Falcons as the opponent?",
    "question_th": "สัปดาห์ใดที่ใหญ่ที่สุดที่มี Atlanta Falcons เป็นคู่ต่อสู้?",
    "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_en": "What is the total attendance in a week greater than 1 with an opponent of Philadelphia Eagles?",
    "question_th": "จำนวนผู้เข้าร่วมในหนึ่งสัปดาห์ที่มากกว่า 1 กับคู่ต่อสู้ของ 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_en": "Which Score has an Opponent of washington capitals, and a Record of 24-34-17?",
    "question_th": "คะแนนใดมีฝ่ายตรงข้ามกับเมืองหลวงของวอชิงตันและมีสถิติ 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_en": "Which Joined has a Nickname of knights, and an Enrollment larger than 2,960?",
    "question_th": "เข้าร่วมคนใดมีชื่อเล่นว่าอัศวินและมีการลงทะเบียนมากกว่า 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_en": "Which Nickname has an Enrollment smaller than 501, and a Location of clarkesville?",
    "question_th": "ชื่อเล่นใดที่มีการลงทะเบียนน้อยกว่า 501 และที่ตั้งของคลาร์กสวิลล์",
    "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_en": "Which Joined has an Institution of abraham baldwin agricultural college, and an Enrollment smaller than 3,284?",
    "question_th": "ที่เข้าร่วมมีสถาบันของวิทยาลัยเกษตรกรรมอับราฮัมบอลด์วินและการลงทะเบียนน้อยกว่า 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_en": "What is Away Team Score, when Ground is Optus Oval, and when Away Team is Fremantle?",
    "question_th": "คะแนนทีมเยือนคือเท่าใด เมื่อสนามคือ Optus Oval และเมื่อทีมเยือนคือฟรีแมนเทิล",
    "context": "CREATE TABLE table_name_65 (away_team VARCHAR, ground VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_19 WHERE ground = \"colonial stadium\"",
    "question_en": "What is Away Team, when Ground is Colonial Stadium?",
    "question_th": "ทีมเยือนคืออะไร เมื่อสนามคือโคโลเนียลสเตเดี้ยม?",
    "context": "CREATE TABLE table_name_19 (away_team VARCHAR, ground VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_11 WHERE score = 71 - 71 = 142",
    "question_en": "A score of 71-71=142 earned what place?",
    "question_th": "คะแนน 71-71=142 ได้อันดับที่ใด",
    "context": "CREATE TABLE table_name_11 (place VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_68 WHERE player = \"josé maría olazábal\"",
    "question_en": "What was José María Olazábal's score?",
    "question_th": "คะแนนของ José María Olazábal คืออะไร?",
    "context": "CREATE TABLE table_name_68 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_66 WHERE date = \"october 15, 1967\"",
    "question_en": "What team was the opponent on October 15, 1967?",
    "question_th": "ทีมใดเป็นคู่ต่อสู้เมื่อวันที่ 15 ตุลาคม พ.ศ. 2510?",
    "context": "CREATE TABLE table_name_66 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MIN(attendance) FROM table_name_31 WHERE opponent = \"green bay packers\"",
    "question_en": "What was the lowest attendance when the Green Bay Packers played?",
    "question_th": "ผู้เข้าชมที่น้อยที่สุดเมื่อ Green Bay Packers เล่นคืออะไร?",
    "context": "CREATE TABLE table_name_31 (attendance INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT MIN(week) FROM table_name_15 WHERE date = \"november 19, 1967\"",
    "question_en": "What was the week number when a game was played on November 19, 1967?",
    "question_th": "หมายเลขสัปดาห์ที่เล่นเกมในวันที่ 19 พฤศจิกายน พ.ศ. 2510 คืออะไร?",
    "context": "CREATE TABLE table_name_15 (week INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_31 WHERE grid > 8 AND points < 4",
    "question_en": "If a team has a grid of over 8 with less than 4 points, what's the team name?",
    "question_th": "ถ้าทีมมีตารางมากกว่า 8 แต่น้อยกว่า 4 คะแนน ทีมชื่ออะไร?",
    "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_en": "When Patrick Carpentier is driving and has less than 19 points with 90 laps, what team is racing?",
    "question_th": "เมื่อแพทริค คาร์เพนเทียร์ ขับรถมีไม่ถึง 19 แต้ม กับ 90 รอบ ทีมไหนแข่ง?",
    "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_en": "What was the score where the total points was 50?",
    "question_th": "คะแนนรวม 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_en": "For the match that had detail of 2001 nrl grand final, what was the lowest total points?",
    "question_th": "สำหรับแมตช์ที่มีรายละเอียดของรอบชิงชนะเลิศ nrl ปี 2001 คะแนนรวมต่ำสุดคือเท่าใด",
    "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_en": "Which average Game has a High points of wilson chandler (16)?",
    "question_th": "เกมเฉลี่ยใดที่มีคะแนนสูงเท่ากับวิลสัน แชนด์เลอร์ (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_en": "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)?",
    "question_th": "คะแนนใดที่มีเกมมากกว่า 76 ผู้เข้าชมตำแหน่งของ madison square garden 19,763 และวิลสันแชนด์เลอร์รีบาวด์สูง (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–50\"",
    "question_en": "Which Team has a Record of 32–50?",
    "question_th": "ทีมใดมีสถิติ 32–50?",
    "context": "CREATE TABLE table_name_24 (team VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_4 WHERE record = \"29–47\"",
    "question_en": "Which Date has a Record of 29–47?",
    "question_th": "วันที่ใดมีบันทึก 29–47",
    "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_en": "Which Date has a Location Attendance of madison square garden 19,763, and a High rebounds of david lee (12)?",
    "question_th": "วันที่ใดมีผู้เข้าร่วมสถานที่ของ Madison Square Garden 19,763 และ 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–102 (ot)\"",
    "question_en": "Which Record has a Score of w 107–102 (ot)?",
    "question_th": "บันทึกใดมีคะแนน w 107–102 (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_en": "Which Team has a Location Attendance of fedexforum 11,731?",
    "question_th": "ทีมใดมีตำแหน่งผู้เข้าร่วม 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–99 (ot)\"",
    "question_en": "Which Record has a Score of l 97–99 (ot)?",
    "question_th": "บันทึกใดมีคะแนน l 97–99 (ot)",
    "context": "CREATE TABLE table_name_88 (record VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_11 WHERE game = 34",
    "question_en": "What is game 34's record?",
    "question_th": "บันทึกของเกม 34 คืออะไร?",
    "context": "CREATE TABLE table_name_11 (record VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_name_61 WHERE date = \"january 2\"",
    "question_en": "What were the high assist on january 2?",
    "question_th": "แอสซิสต์สูงสุดในวันที่ 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_en": "Who was the director that had a film titled \"Floating Life\"?",
    "question_th": "ใครคือผู้กำกับที่มีภาพยนตร์เรื่อง \"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_en": "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?",
    "question_th": "คุณช่วยบอกจำนวนผู้เล่นทั้งหมดที่เล่นซึ่งมีตำแหน่งมากกว่า 5 และแต้ม 11 และแต้มเสมอน้อยกว่า 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_en": "Can you tell me the highest Played that has the Points larger than 11, and the Lost larger than 7?",
    "question_th": "คุณช่วยบอกฉันได้ไหมว่าผู้เล่นที่เล่นสูงสุดที่มีแต้มมากกว่า 11 และแต้มที่แพ้มากกว่า 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_en": "What was Dave Hill's score?",
    "question_th": "คะแนนของ Dave Hill คืออะไร?",
    "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_en": "What is the to par of Al Mengert of the United States?",
    "question_th": "ค่าพาร์ของ Al Mengert ของสหรัฐอเมริกาคือเท่าไร?",
    "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_en": "What is the score of T5 place in the United States?",
    "question_th": "คะแนน T5 ที่อเมริกาได้เท่าไหร่?",
    "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_en": "Who was the player from the United States in T10 place with a score of 67-77=144?",
    "question_th": "ใครคือผู้เล่นจากสหรัฐอเมริกาในอันดับ T10 ด้วยคะแนน 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_en": "What was Billy Casper's to par?",
    "question_th": "บิลลี่ แคสเปอร์ได้พาร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_51 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT SUM(wins) FROM table_name_42 WHERE played < 5",
    "question_en": "What is the sum of Wins, when Played is less than 5?",
    "question_th": "ผลรวมของการชนะเมื่อเล่นน้อยกว่า 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_en": "What is the highest Wins, when Rank is greater than 2, and when Played is less than 5?",
    "question_th": "ชัยชนะสูงสุดคืออะไร เมื่ออันดับมากกว่า 2 และเมื่อเล่นน้อยกว่า 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_en": "What is the sum of Wins, when Team is Sweden, and when Played is less than 5?",
    "question_th": "ผลรวมของการชนะเมื่อทีมคือสวีเดน และเมื่อเล่นน้อยกว่า 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_en": "What is the highest Points, when Played is greater than 5?",
    "question_th": "แต้มสูงสุดเมื่อเล่นมากกว่า 5 คืออะไร?",
    "context": "CREATE TABLE table_name_30 (points INTEGER, played INTEGER)"
  },
  {
    "answer": "SELECT AVG(ties) FROM table_name_68 WHERE played > 5",
    "question_en": "What is the average Ties, when Played is greater than 5?",
    "question_th": "ค่าเฉลี่ยเสมอเมื่อเล่นมากกว่า 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_en": "What is Date, when Runner(s)-Up is Oliver Wilson?",
    "question_th": "วันที่คือเมื่อใดเมื่อรองชนะเลิศคือ 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_en": "What is Date, when Margin Of Victory is 4 Strokes?",
    "question_th": "วันที่คืออะไร เมื่อ Margin Of Victory คือ 4 จังหวะ?",
    "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_en": "What is Runner(s)-up, when Date is 21 Jan 2007?",
    "question_th": "Runner-up คืออะไร เมื่อวันที่ 21 มกราคม 2550",
    "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_en": "What is Tournament, when Margin Of Victory is 1 Stroke, and when Date is 18 Jan 2009?",
    "question_th": "การแข่งขันคืออะไร เมื่อ Margin Of Victory คือ 1 Stroke และวันที่คือ 18 มกราคม 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_en": "what is the U.S. senate when the year is after 2002 and the party is working families?",
    "question_th": "วุฒิสภาสหรัฐอเมริกาคือปีใดหลังปี 2545 และพรรคเป็นครอบครัวที่ทำงาน?",
    "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_en": "How many times what the comptroller alan hevesi and the party working families?",
    "question_th": "กี่ครั้งแล้วที่ผู้ควบคุมอลัน เฮเวซี และครอบครัวที่ทำงานในงานปาร์ตี้?",
    "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_en": "What is the highest number of points of the game in Conseco fieldhouse 7,134?",
    "question_th": "แต้มสูงสุดของเกมในบ้านสนามคอนเซโก 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_en": "What is the highest number of rebounds of the game with a 6-14 record?",
    "question_th": "จำนวนรีบาวน์สูงสุดของเกมด้วยสถิติ 6-14 คือเท่าไร?",
    "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_en": "Can you tell me the Record that has the Visitor of pittsburgh, and the Points smaller than 27, and the Home of boston?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าบันทึกที่มีผู้มาเยือนพิตส์เบิร์ก และคะแนนน้อยกว่า 27 และบ้านแห่งบอสตัน",
    "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_en": "Can you tell me the average Points that has the Attendance of 3,806?",
    "question_th": "คุณช่วยบอกคะแนนเฉลี่ยที่มีผู้เข้าร่วม 3,806 หน่อยได้ไหม?",
    "context": "CREATE TABLE table_name_42 (points INTEGER, attendance VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_69 WHERE attendance = \"38,642\"",
    "question_en": "Which opponent had 38,642 attendance?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีผู้เข้าร่วม 38,642 คน?",
    "context": "CREATE TABLE table_name_69 (opponent VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_84 WHERE attendance = \"51,265\"",
    "question_en": "What date had 51,265 attendance?",
    "question_th": "มีผู้เข้าร่วม 51,265 คนวันไหน?",
    "context": "CREATE TABLE table_name_84 (date VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_45 WHERE place = \"7th\"",
    "question_en": "When 7th place, what is the date?",
    "question_th": "อันดับที่ 7 วันที่เท่าไหร่คะ?",
    "context": "CREATE TABLE table_name_45 (date VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_3 WHERE game = 34",
    "question_en": "What is the score of game 34?",
    "question_th": "คะแนนของเกม 34 คืออะไร?",
    "context": "CREATE TABLE table_name_3 (score VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_97 WHERE game = 33",
    "question_en": "What is the record of game 33?",
    "question_th": "บันทึกของเกม 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_en": "What is the Country, when Place is \"T4\", and when Player is \"Scott Simpson\"?",
    "question_th": "ประเทศคืออะไร เมื่อสถานที่คือ \"T4\" และเมื่อผู้เล่นคือ \"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_en": "What is To Par, when Score is 70, and when Player is \"Craig Stadler\"?",
    "question_th": "To Par คืออะไร เมื่อสกอร์คือ 70 และเมื่อผู้เล่นคือ \"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_en": "What is Player, when Score is less than 69, and when Country is \"United States\"?",
    "question_th": "ผู้เล่นคืออะไร เมื่อคะแนนน้อยกว่า 69 และเมื่อประเทศคือ \"สหรัฐอเมริกา\"",
    "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_en": "Who was the writer that the director was Alice Troughton and the producer was Phil Collinson?",
    "question_th": "ใครคือคนเขียนบทที่ผู้กำกับคือ Alice Troughton และโปรดิวเซอร์คือ 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_en": "What is the location and attendance after game 2, and the team New Orleans?",
    "question_th": "ตำแหน่งและผู้เข้าชมหลังเกมที่ 2 คืออะไร และทีมนิวออร์ลีนส์?",
    "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_en": "What is Teleplay, when Season is greater than 1.1, and when First Broadcast is \"February 20, 1981\"?",
    "question_th": "Teleplay คืออะไร เมื่อซีซั่นมากกว่า 1.1 และเมื่อการออกอากาศครั้งแรกคือ \"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_en": "What is Title, when Season is less than 1.8, and when First Broadcast is March 6, 1981?",
    "question_th": "ชื่อคืออะไร เมื่อซีซั่นน้อยกว่า 1.8 และเมื่อออกอากาศครั้งแรกคือวันที่ 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_en": "What is Director, when Season is 1.4?",
    "question_th": "Director คืออะไร เมื่อซีซั่นเป็น 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_en": "What is Teleplay, when Director is \"George McCowan\", when Season is less than 1.1400000000000001, and when First Broadcast is April 3, 1981?",
    "question_th": "Teleplay คืออะไร เมื่อผู้กำกับคือ \"George McCowan\" เมื่อซีซั่นน้อยกว่า 1.1400000000000001 และเมื่อออกอากาศครั้งแรกคือวันที่ 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_en": "What is the average Season, when First Broadcast is January 23, 1981?",
    "question_th": "ฤดูกาลเฉลี่ยคือเท่าใด เมื่อออกอากาศครั้งแรกคือวันที่ 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_en": "What is Teleplay, when First Broadcast is April 10, 1981?",
    "question_th": "Teleplay คืออะไร เมื่อออกอากาศครั้งแรกคือวันที่ 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_en": "What the H/A when the opponent is the Bohemians?",
    "question_th": "H/A จะเป็นอย่างไรเมื่อคู่ต่อสู้คือโบฮีเมียนส์?",
    "context": "CREATE TABLE table_name_25 (h___a VARCHAR, opponents VARCHAR)"
  },
  {
    "answer": "SELECT AVG(attendance) FROM table_name_7 WHERE opponents = \"cork city\"",
    "question_en": "What is the attendance when Cork City is the opponent?",
    "question_th": "การเข้าร่วมเป็นอย่างไรบ้างเมื่อคอร์กซิตี้เป็นคู่ต่อสู้?",
    "context": "CREATE TABLE table_name_7 (attendance INTEGER, opponents VARCHAR)"
  },
  {
    "answer": "SELECT h___a FROM table_name_53 WHERE opponents = \"cork city\"",
    "question_en": "What is the H/A when Cork City is the opponent?",
    "question_th": "H/A คืออะไรเมื่อ Cork City เป็นคู่ต่อสู้?",
    "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_en": "What is the H/A on 5 August 1990?",
    "question_th": "H/A ของวันที่ 5 สิงหาคม 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_en": "What is the result F-A on 5 August 1990?",
    "question_th": "ผลเอฟเอเมื่อวันที่ 5 สิงหาคม 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_en": "What is the value for internal floppy disk with s-100 slots greater than 8 introduced earlier than 1978?",
    "question_th": "ค่าของฟล็อปปี้ดิสก์ภายในที่มีช่อง s-100 มากกว่า 8 ที่เปิดตัวก่อนปี 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_en": "Which system introduced earlier than 1981 has an internal hard disk of 11 megabytes and less than 21 s-100 slots?",
    "question_th": "ระบบใดที่เปิดตัวก่อนปี 1981 มีฮาร์ดดิสก์ภายใน 11 เมกะไบต์ และสล็อตน้อยกว่า 21 s-100",
    "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_en": "What college did Marcus Wilson attend?",
    "question_th": "Marcus Wilson เข้าเรียนที่วิทยาลัยใด",
    "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_en": "Who is the player that attended Notre Dame with a pick smaller than 304?",
    "question_th": "ใครคือผู้เล่นที่เข้าร่วม Notre Dame โดยมีตัวเลือกน้อยกว่า 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_en": "What college did Leon Perry attend?",
    "question_th": "Leon Perry เข้าเรียนที่วิทยาลัยใด",
    "context": "CREATE TABLE table_name_93 (college VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT nfl_team FROM table_name_62 WHERE position = \"tight end\"",
    "question_en": "What NFL team did the Tight End position belong to?",
    "question_th": "ตำแหน่ง Tight End ของทีม NFL ใด",
    "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_en": "What is the total number of weeks that the buffalo bills played against the San Diego Chargers?",
    "question_th": "จำนวนสัปดาห์ทั้งหมดที่บัฟฟาโลบิลเล่นกับทีมซานดิเอโกชาร์จเจอร์สคือเท่าใด",
    "context": "CREATE TABLE table_name_49 (week INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_76 WHERE date = \"bye\"",
    "question_en": "What is the attendance of the game that had a date listed as Bye?",
    "question_th": "การเข้าร่วมเกมที่มีวันที่ระบุว่า Bye คืออะไร?",
    "context": "CREATE TABLE table_name_76 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT SUM(week) FROM table_name_48 WHERE attendance = \"41,384\"",
    "question_en": "How many weeks were there games with 41,384 fans in attendance?",
    "question_th": "มีเกมที่มีแฟนบอล 41,384 คนเข้าร่วมกี่สัปดาห์?",
    "context": "CREATE TABLE table_name_48 (week INTEGER, attendance VARCHAR)"
  },
  {
    "answer": "SELECT MIN(week) FROM table_name_97 WHERE date = \"december 3, 1967\"",
    "question_en": "What is the lowest week number that had a game on December 3, 1967?",
    "question_th": "หมายเลขสัปดาห์ต่ำสุดที่มีเกมในวันที่ 3 ธันวาคม พ.ศ. 2510 คือเท่าใด",
    "context": "CREATE TABLE table_name_97 (week INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_79 WHERE attendance = \"20,627\"",
    "question_en": "What was the result of the game that had 20,627 fans in attendance?",
    "question_th": "อะไรคือผลลัพธ์ของเกมที่มีแฟน ๆ เข้าชม 20,627 คน?",
    "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_en": "Who is the rider with 22 laps and a +19.435 time/retired?",
    "question_th": "ใครคือนักบิดที่ทำเวลาได้ 22 รอบและ +19.435 เวลา/เกษียณ?",
    "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_en": "What is the grid with a yamaha manufacturer and a +19.435 time/retired?",
    "question_th": "ตารางของผู้ผลิต Yamaha และเวลา +19.435/เลิกใช้เป็นอย่างไร?",
    "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_en": "What is the grid of rider shinya nakano?",
    "question_th": "ตารางของ 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_en": "Who is the rider with 22 laps and a +1:44.775 time/retired?",
    "question_th": "ใครคือนักบิดที่ทำเวลาได้ 22 รอบและ +1:44.775 เวลา/เกษียณ?",
    "context": "CREATE TABLE table_name_70 (rider VARCHAR, laps VARCHAR, time_retired VARCHAR)"
  },
  {
    "answer": "SELECT manufacturer FROM table_name_13 WHERE grid = \"14\"",
    "question_en": "What is the manufacturer with a 14 grid?",
    "question_th": "ผู้ผลิตที่มี 14 ตารางคืออะไร?",
    "context": "CREATE TABLE table_name_13 (manufacturer VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT rider FROM table_name_21 WHERE manufacturer = \"yamaha\" AND grid = \"17\"",
    "question_en": "Who is the rider with a yamaha manufacturer and a 17 grid?",
    "question_th": "ใครคือผู้ขับขี่จากผู้ผลิตยามาฮ่าและกริด 17?",
    "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_en": "What is the total of attendance at Venue h when Auxerre were playing?",
    "question_th": "จำนวนผู้เข้าร่วมที่ Venue h เมื่อ Auxerre กำลังเล่นเป็นเท่าใด?",
    "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_en": "Which vehicle failed at launch?",
    "question_th": "ยานพาหนะคันใดล้มเหลวในการเปิดตัว?",
    "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_en": "What are the notes regarding the scout x-4 vehicle which ceased operation in June 1971?",
    "question_th": "หมายเหตุเกี่ยวกับยานพาหนะ scout x-4 ซึ่งหยุดดำเนินการในเดือนมิถุนายน พ.ศ. 2514 มีอะไรบ้าง",
    "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_en": "What was the ceased operation with a launch date of August 8, 1968?",
    "question_th": "การดำเนินการหยุดให้บริการเมื่อวันเปิดตัวในวันที่ 8 สิงหาคม พ.ศ. 2511 คืออะไร",
    "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_en": "What was the ceased operation that launched June 29, 1961?",
    "question_th": "การดำเนินการที่หยุดดำเนินการซึ่งเปิดตัวเมื่อวันที่ 29 มิถุนายน พ.ศ. 2504 คืออะไร",
    "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_en": "What place in the United States having a score of 67-75-68=210?",
    "question_th": "สถานที่ใดในสหรัฐอเมริกาที่มีคะแนน 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_en": "What country is in T4 place having a score of 66-71-72=209?",
    "question_th": "ประเทศใดอยู่ในอันดับ T4 มีคะแนน 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_en": "What place is the United States in that has a score of 68-73-68=209?",
    "question_th": "สหรัฐอเมริกาอยู่แห่งใดที่มีคะแนน 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_en": "Who is the player from the United States in T4 place with a score of 68-73-68=209?",
    "question_th": "นักเตะจากสหรัฐอเมริกาในอันดับ T4 คือใครด้วยคะแนน 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_en": "How many played when lost is more than 17, drawn is 15 and goals against is less than 75?",
    "question_th": "มีกี่คนที่เล่นเมื่อแพ้มากกว่า 17 เสมอ 15 และเสียประตูน้อยกว่า 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_en": "what is the position when lot is less than 14, goal difference is +1 and drawn is more than 15?",
    "question_th": "ตำแหน่งอะไรเมื่อล็อตน้อยกว่า 14 ผลต่างประตูคือ +1 และเสมอมากกว่า 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_en": "How many lost when goals for is 43 and the position number is higher than 15?",
    "question_th": "แพ้ไปกี่ประตูเมื่อประตูคือ 43 และหมายเลขตำแหน่งสูงกว่า 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_en": "What was the score of the game against Charlotte?",
    "question_th": "ในเกมกับชาร์ลอตต์สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_42 (score VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_name_13 WHERE team = \"memphis\"",
    "question_en": "Who had the high assists in the game against Memphis?",
    "question_th": "ใครเป็นผู้ทำแอสซิสต์ได้สูงในเกมกับเมมฟิส?",
    "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_en": "Who was the home team when Boston is the road team in game 4?",
    "question_th": "ใครคือทีมเหย้าเมื่อบอสตันเป็นทีมโรดในเกมที่ 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_en": "What game had the result of 112-100?",
    "question_th": "เกมไหนมีผลสกอร์ 112-100?",
    "context": "CREATE TABLE table_name_98 (game VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_name_1 WHERE date = \"may 29\"",
    "question_en": "What game was played on May 29?",
    "question_th": "วันที่ 29 พฤษภาคม เล่นเกมอะไร?",
    "context": "CREATE TABLE table_name_1 (game VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_26 WHERE game = \"game 1\"",
    "question_en": "What was the result of game 1?",
    "question_th": "ผลการแข่งขันนัดที่ 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_en": "What was the game when Houston was the home team and the result is 106-104?",
    "question_th": "เกมเมื่อฮุสตันเป็นเจ้าบ้านผลเป็น 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_en": "How many years was the number of laps 71?",
    "question_th": "จำนวนรอบ 71 คือกี่ปี?",
    "context": "CREATE TABLE table_name_49 (year VARCHAR, laps VARCHAR)"
  },
  {
    "answer": "SELECT class AS pos FROM table_name_53 WHERE year > 2002",
    "question_en": "For a year that is later than 2002 what is the class position?",
    "question_th": "สำหรับปีที่อยู่หลังปี 2545 ตำแหน่งชั้นเรียนคืออะไร?",
    "context": "CREATE TABLE table_name_53 (class VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT COUNT(round) FROM table_name_90 WHERE college = \"lehigh\"",
    "question_en": "How many total rounds has lehigh as the college?",
    "question_th": "มีทั้งหมดกี่รอบที่วิทยาลัย?",
    "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_en": "What name has 5 as the pick, a round less than 25, ot as the position, at boston college?",
    "question_th": "ชื่ออะไรที่มี 5 เป็นตัวเลือก รอบที่น้อยกว่า 25 หรือตำแหน่งที่วิทยาลัยบอสตัน?",
    "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_en": "How many overalls have E as the position, buddy payne as the name, and a pick less than 5?",
    "question_th": "มีชุดเอี๊ยมกี่ตัวที่มีตำแหน่ง E มีบัดดี้เพย์นเป็นชื่อ และเลือกได้น้อยกว่า 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_en": "How many picks have charley sanders as the name, with a round greater than 22?",
    "question_th": "มีกี่ตัวเลือกที่มีชาร์ลี แซนเดอร์สเป็นชื่อ โดยรอบที่มากกว่า 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_en": "What is the Attendance of the game against the Florida Panthers?",
    "question_th": "ผู้เข้าชมเกมกับ 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_en": "What is the Opponent of the game with more than 13,567 in Attendance with more than 5 Points?",
    "question_th": "ฝ่ายตรงข้ามของเกมที่มีผู้เข้าร่วมมากกว่า 13,567 คนและมีคะแนนมากกว่า 5 คะแนนคืออะไร?",
    "context": "CREATE TABLE table_name_4 (opponent VARCHAR, points VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_82 WHERE record = \"15–1–1 (1)\"",
    "question_en": "When his record was 15–1–1 (1) where did he fight?",
    "question_th": "เมื่อสถิติของเขาคือ 15–1–1 (1) เขาชกที่ไหน?",
    "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_en": "What is Record, when Location is \"Boston Garden\", and when Date is \"Fri. Nov. 9\"?",
    "question_th": "Record คืออะไร เมื่อตำแหน่งคือ \"Boston Garden\" และวันที่คือ \"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_en": "What is Opponent, when Location is \"Boston Garden\", when Game is greater than 1, and when Score is \"115-105\"?",
    "question_th": "คู่ต่อสู้คืออะไร เมื่อตำแหน่งคือ \"บอสตัน การ์เด้น\" เมื่อเกมมากกว่า 1 และเมื่อคะแนนคือ \"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_en": "What is the sum of Game, when Date is \"Wed. Nov. 14\"?",
    "question_th": "ผลรวมของเกมเมื่อวันที่คือ \"พุธที่ 14 พ.ย.\" คืออะไร?",
    "context": "CREATE TABLE table_name_26 (game INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_80 WHERE player = \"bill rogers\"",
    "question_en": "What is Score, when Player is \"Bill Rogers\"?",
    "question_th": "Score คืออะไร เมื่อผู้เล่นคือ \"Bill Rogers\"?",
    "context": "CREATE TABLE table_name_80 (score VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT state FROM table_name_74 WHERE electorate = \"west sydney\"",
    "question_en": "Which State has an Electorate of West Sydney?",
    "question_th": "รัฐใดมีเขตเลือกตั้งของเวสต์ซิดนีย์",
    "context": "CREATE TABLE table_name_74 (state VARCHAR, electorate VARCHAR)"
  },
  {
    "answer": "SELECT state FROM table_name_14 WHERE electorate = \"barton\"",
    "question_en": "Which State has an Electorate of Barton?",
    "question_th": "รัฐใดมีเขตเลือกตั้งของบาร์ตัน",
    "context": "CREATE TABLE table_name_14 (state VARCHAR, electorate VARCHAR)"
  },
  {
    "answer": "SELECT l2_cache FROM table_name_38 WHERE release_price___usd__ = \"$496\"",
    "question_en": "What was the L2 Cache for the processor with a release price of $496?",
    "question_th": "L2 Cache สำหรับโปรเซสเซอร์ราคาเปิดตัวที่ 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_en": "What is the model number for the processor with sSpec number of sl3jm(kc0)sl3jt(kc0)?",
    "question_th": "หมายเลขรุ่นของโปรเซสเซอร์ที่มีหมายเลข sSpec เป็น 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_en": "What is the frequency of the processor with an sSpec number of sl3bn(kc0)sl3e9(kc0)?",
    "question_th": "ความถี่ของโปรเซสเซอร์ที่มีหมายเลข sSpec เป็น 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_en": "When did alfonse d'amore compete?",
    "question_th": "alfonse d'amore ลงแข่งขันเมื่อใด?",
    "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_en": "Which Round has a Method of ko, and a Date of 1958?",
    "question_th": "รอบใดมีวิธีการ ko และวันที่ปี 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_en": "Which Date has a Result of win, and a Round smaller than 2, and an Opponent of myron greenberg?",
    "question_th": "วันที่ใดมีผลการแข่งขันชนะ และรอบที่น้อยกว่า 2 และฝ่ายตรงข้ามของไมรอน กรีนเบิร์ก",
    "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_en": "Which Round has a Method of ko, and an Opponent of alfonse d'amore?",
    "question_th": "รอบใดมีวิธีการแบบ ko และฝ่ายตรงข้ามของ 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_en": "Which Player has a Date of sep. 2008?",
    "question_th": "ผู้เล่นคนใดมีวันที่ 9 กันยายน 2551?",
    "context": "CREATE TABLE table_name_89 (player VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT transfer_fee FROM table_name_80 WHERE from_club = \"blackburn rovers\"",
    "question_en": "Which Transfer fee has a From club of blackburn rovers?",
    "question_th": "ค่าธรรมเนียมการโอนใดที่มีค่าธรรมเนียมจากสโมสรแบล็คเบิร์นโรเวอร์ส?",
    "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_en": "Which From club has a Date of 20 oct. 2008?",
    "question_th": "ซึ่งจากสโมสรมีวันที่ 20 ต.ค. 2551?",
    "context": "CREATE TABLE table_name_49 (from_club VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_34 WHERE transfer_fee = \"£750,000 [x]\"",
    "question_en": "Which Player has a Transfer fee of £750,000 [x]?",
    "question_th": "ผู้เล่นคนไหนที่มีค่าธรรมเนียมการโอน 750,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_en": "What is Tournament, when Date is \"6 April 1992\"?",
    "question_th": "การแข่งขันคืออะไร เมื่อวันที่คือ \"6 เมษายน 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_en": "What is Surface, when Opponents is \"Daniel Nestor Sandon Stolle\"?",
    "question_th": "Surface คืออะไร เมื่อฝ่ายตรงข้ามคือ \"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_en": "What is Date, when Outcome is \"Winner\", and when Opponents is \"Paul Haarhuis Sandon Stolle\"?",
    "question_th": "วันที่คืออะไร เมื่อผลลัพธ์คือ \"ผู้ชนะ\" และเมื่อฝ่ายตรงข้ามคือ \"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šević brian macphie\"",
    "question_en": "What is Outcome, when Partner is \"Byron Black\", and when Opponents is \"Goran Ivanišević Brian Macphie\"?",
    "question_th": "ผลลัพธ์คืออะไร เมื่อพันธมิตรคือ \"Byron Black\" และเมื่อฝ่ายตรงข้ามคือ \"Goran Ivanišević 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_en": "What is Tournament, when Date is \"9 August 1993\"?",
    "question_th": "การแข่งขันคืออะไร เมื่อวันที่คือ \"9 สิงหาคม 1993\"?",
    "context": "CREATE TABLE table_name_38 (tournament VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_88 WHERE player = \"arnold palmer\"",
    "question_en": "What is Place, when Player is \"Arnold Palmer\"?",
    "question_th": "Place คืออะไร เมื่อผู้เล่นคือ “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_en": "What is Player, when To Par is +1, and when Score is 72-70-72=214?",
    "question_th": "Player คืออะไร เมื่อ To Par คือ +1 และเมื่อ Score คือ 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_en": "What is Score, when Country is United States, and when Player is \"Arnold Palmer\"?",
    "question_th": "Score คืออะไร เมื่อประเทศคือสหรัฐอเมริกา และเมื่อผู้เล่นคือ \"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_en": "What is To Par, when Country is United States, and when Score is 71-68-73=212?",
    "question_th": "To Par คืออะไร เมื่อประเทศคือสหรัฐอเมริกา และเมื่อคะแนนคือ 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_en": "What is Player, when Country is United States, and when Score is 70-72-70=212?",
    "question_th": "ผู้เล่นคืออะไร เมื่อประเทศคือสหรัฐอเมริกา และเมื่อคะแนนคือ 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_en": "What is Country, when Player is \"Billy Maxwell\"?",
    "question_th": "ประเทศคืออะไร เมื่อผู้เล่นคือ \"บิลลี่ แม็กซ์เวลล์\"?",
    "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_en": "Who has a react smaller than 0.149 and a lane smaller than 6?",
    "question_th": "ใครมีปฏิกิริยาตอบสนองน้อยกว่า 0.149 และเลนเล็กกว่า 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_en": "What was the lowest lane with a mark of 7.26?",
    "question_th": "เลนต่ำสุดที่มีเครื่องหมาย 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_en": "What is the maximum number of games when the season is more recent than 2001 and the average is less than 10,838?",
    "question_th": "จำนวนเกมสูงสุดเมื่อฤดูกาลล่าสุดกว่าปี 2544 และค่าเฉลี่ยน้อยกว่า 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_en": "What is the number of clubs for Shenyang Ginde when there were more than 182 games?",
    "question_th": "จำนวนไม้กอล์ฟของเสิ่นหยาง กินเต๋อ ในการแข่งขันมากกว่า 182 เกมคือเท่าใด?",
    "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_en": "What is the smallest average for Beijing Guo'an when they played more than 240 games?",
    "question_th": "ค่าเฉลี่ยที่น้อยที่สุดสำหรับ Beijing Guo'an เมื่อพวกเขาเล่นมากกว่า 240 เกมคือเท่าใด?",
    "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_en": "What is the average pick number for Washington State?",
    "question_th": "หมายเลขเลือกเฉลี่ยของรัฐวอชิงตันคือเท่าใด",
    "context": "CREATE TABLE table_name_32 (pick INTEGER, school VARCHAR)"
  },
  {
    "answer": "SELECT comments FROM table_name_56 WHERE length_over_all = \"4.5m\"",
    "question_en": "Which Comments has a Length Over All of 4.5m?",
    "question_th": "ความคิดเห็นใดมีความยาวมากกว่า 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_en": "Which Crew has Comments of daggerboards. design: roy seaman?",
    "question_th": "ลูกเรือคนไหนที่มีความคิดเห็นของกริช การออกแบบ: รอยซีแมน?",
    "context": "CREATE TABLE table_name_49 (crew VARCHAR, comments VARCHAR)"
  },
  {
    "answer": "SELECT comments FROM table_name_30 WHERE model = \"18sq\"",
    "question_en": "Which Comments has a Model of 18sq?",
    "question_th": "ความคิดเห็นใดมีรุ่น 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_en": "Which Model has Comments of curved daggerboards. design: morelli und melvin?",
    "question_th": "รุ่นไหนมีความคิดเห็นของกริชโค้ง ออกแบบ: มอเรลลีและเมลวิน?",
    "context": "CREATE TABLE table_name_61 (model VARCHAR, comments VARCHAR)"
  },
  {
    "answer": "SELECT beam FROM table_name_17 WHERE model = \"570\"",
    "question_en": "Which Beam has a Model of 570?",
    "question_th": "บีมรุ่นไหนมีรุ่น 570 บ้างคะ?",
    "context": "CREATE TABLE table_name_17 (beam VARCHAR, model VARCHAR)"
  },
  {
    "answer": "SELECT model FROM table_name_75 WHERE sail_area = \"24.5 m²\"",
    "question_en": "Which Model has a Sail Area of 24.5 m²?",
    "question_th": "รุ่นใดมีพื้นที่เดินเรือ 24.5 ตร.ม.",
    "context": "CREATE TABLE table_name_75 (model VARCHAR, sail_area VARCHAR)"
  },
  {
    "answer": "SELECT SUM(game) FROM table_name_41 WHERE points < 30",
    "question_en": "What is the sum of the game numbers for games with less than 30 points?",
    "question_th": "ผลรวมของหมายเลขเกมสำหรับเกมที่มีคะแนนน้อยกว่า 30 คะแนนเป็นเท่าใด",
    "context": "CREATE TABLE table_name_41 (game INTEGER, points INTEGER)"
  },
  {
    "answer": "SELECT location FROM table_name_27 WHERE opponent = \"buffalo sabres\"",
    "question_en": "Where was the game against the buffalo sabres?",
    "question_th": "เกมกับกระบี่ควายอยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_27 (location VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT MAX(br_no) FROM table_name_39 WHERE secr_no = 765",
    "question_en": "What is the highest BR number with a SECR number of 765?",
    "question_th": "หมายเลข BR สูงสุดที่มีหมายเลข SECR คือ 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_en": "What is Beyer Peacock's SR number with a SECR number of 769?",
    "question_th": "หมายเลข SR ของ Beyer Peacock ที่มีหมายเลข SECR คือ 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_en": "What is the tyre of nismo team member satoshi motoyama when he has rounds of all?",
    "question_th": "ยางของ satoshi motoyama สมาชิกในทีม nismo คืออะไรเมื่อเขามีรอบทั้งหมด?",
    "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_en": "What is the tyre of real racing with leon team member koudai tsukakoshi?",
    "question_th": "ยางของการแข่งรถจริงกับสมาชิกทีม leon 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_en": "Which drives drove a lexus, made all rounds, had a tyre of B and was on the team of petronas toyota team tom's?",
    "question_th": "ไดรฟ์ใดที่ขับ Lexus ทำทุกรอบ มียาง B และอยู่ในทีมของ 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_en": "When driver yuji tachikawa had a make of lexus, what team did he represent?",
    "question_th": "เมื่อคนขับ ยูจิ ทาชิคาวะ มียี่ห้อ Lexus เขาเป็นตัวแทนทีมอะไร",
    "context": "CREATE TABLE table_name_38 (team VARCHAR, make VARCHAR, drivers VARCHAR)"
  },
  {
    "answer": "SELECT SUM(capacity) FROM table_name_58 WHERE team = \"denizlispor\"",
    "question_en": "What is the sum of Capacity, when Team is \"Denizlispor\"?",
    "question_th": "ผลรวมของความจุเมื่อทีมคือ \"เดนิซลิสปอร์\" เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_58 (capacity INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_4 WHERE venue = \"şükrü saracoğlu stadium\"",
    "question_en": "What is Team, when Venue is \"Şükrü Saracoğlu Stadium\"?",
    "question_th": "ทีมคืออะไร เมื่อสถานที่คือ \"สนามกีฬาชุครุ ซาราโกกลู\"?",
    "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_en": "Who is the gagarin cup winner when avangard omsk is the gagarin cup finalist?",
    "question_th": "ใครคือผู้ชนะกาการินคัพ ในเมื่อ Avangard Omsk เป็นผู้เข้ารอบสุดท้ายกาการินคัพ?",
    "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_en": "What was the resolution of the fight where andre roberts record was 9-1?",
    "question_th": "อะไรคือความละเอียดของไฟต์ที่สถิติของอังเดร โรเบิร์ตส์อยู่ที่ 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ás\"",
    "question_en": "What is the 2nd leg of goiás team 2?",
    "question_th": "เลกที่ 2 ของทีมโกยาส 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_en": "What is the 2nd leg of emelec team 2?",
    "question_th": "เลกที่ 2 ของทีมอีเมเล็ค 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_en": "What is the 2nd leg with ldu quito as team 1?",
    "question_th": "เลกที่ 2 โดยมี ldu Quito เป็นทีม 1 คืออะไร?",
    "context": "CREATE TABLE table_name_62 (team__number1 VARCHAR)"
  },
  {
    "answer": "SELECT listed FROM table_name_29 WHERE location = \"mcclain\"",
    "question_en": "On what date was the bridge located in McClain listed?",
    "question_th": "สะพานที่ตั้งอยู่ใน McClain ระบุไว้เมื่อใด",
    "context": "CREATE TABLE table_name_29 (listed VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT source FROM table_name_27 WHERE date = \"6 september\"",
    "question_en": "What is the source on 6 September?",
    "question_th": "ที่มาวันที่ 6 กันยายน คืออะไร?",
    "context": "CREATE TABLE table_name_27 (source VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(week) FROM table_name_4 WHERE result = \"l 21-19\"",
    "question_en": "Which Week has a Result of l 21-19?",
    "question_th": "สัปดาห์ไหนมีผล 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_en": "Which Week has a Result of l 41-14?",
    "question_th": "สัปดาห์ไหนมีผล 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_en": "Which Result has a Date of september 3, 2000?",
    "question_th": "ผลลัพธ์ใดมีวันที่ 3 กันยายน 2000",
    "context": "CREATE TABLE table_name_81 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_71 WHERE attendance = \"54,626\"",
    "question_en": "Which Date has an Attendance of 54,626?",
    "question_th": "วันไหนมีผู้เข้าร่วม 54,626 คน?",
    "context": "CREATE TABLE table_name_71 (date VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_99 WHERE attendance = \"bye\"",
    "question_en": "Which Result has an Attendance of bye?",
    "question_th": "ผลลัพธ์ใดที่มีการเข้าร่วมลาก่อน?",
    "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_en": "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?",
    "question_th": "เบื้องต้นน้อยที่สุดเมื่อชุดว่ายน้ำน้อยกว่า 8.822 สัมภาษณ์มากกว่า 8.744 และชุดคลุมมากกว่า 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_en": "What is the best preliminary for a contestant from New Mexico with interview less than 9.533?",
    "question_th": "เบื้องต้นที่ดีที่สุดสำหรับผู้เข้าแข่งขันจากนิวเม็กซิโกที่สัมภาษณ์น้อยกว่า 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_en": "What state has a swimsuit less than 9.277, gown more than 8.944 and preliminary greater than 8.483?",
    "question_th": "รัฐใดมีชุดว่ายน้ำน้อยกว่า 9.277 ชุดคลุมมากกว่า 8.944 และเบื้องต้นมากกว่า 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_en": "What is the average when interview is 9.465 and evening gown is less than 9.454?",
    "question_th": "ค่าเฉลี่ยตอนสัมภาษณ์ 9.465 และชุดราตรีน้อยกว่า 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_en": "What is the best preliminary score from a contestant from Oklahoma with evening gown less than 8.853?",
    "question_th": "คะแนนเบื้องต้นที่ดีที่สุดจากผู้เข้าแข่งขันจากโอคลาโฮมาที่มีชุดราตรีต่ำกว่า 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_en": "What is Written By, when Originalairdate is 25 April 1993?",
    "question_th": "เขียนโดยอะไร เมื่อ Originalairdate คือวันที่ 25 เมษายน 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_en": "What is Directed By, when Episode # is 7?",
    "question_th": "กำกับโดยอะไร เมื่อตอนที่ #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_en": "WHAT IS THE LOWEST AVERAGE FINISH FOR 40TH POSITION, WITH A TOP 5 LARGER THAN 0?",
    "question_th": "อะไรคือค่าเฉลี่ยต่ำสุดในการจบอันดับที่ 40 โดยที่ 5 อันดับแรกมากกว่า 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_en": "What country has 50 supermarkets?",
    "question_th": "ประเทศใดมีซูเปอร์มาร์เก็ต 50 แห่ง?",
    "context": "CREATE TABLE table_name_19 (country VARCHAR, supermarkets VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_47 WHERE supermarkets = \"370\"",
    "question_en": "What country has 370 supermarkets?",
    "question_th": "ประเทศใดมีซูเปอร์มาร์เก็ต 370 แห่ง?",
    "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_en": "What country has a fire store of 1991 and a hard discounter of 397?",
    "question_th": "ประเทศใดมีร้านดับเพลิงปี 1991 และร้านลดค่าใช้จ่ายหนัก 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_en": "Which engine is in all rounds with Tsugio Matsuda driving?",
    "question_th": "เครื่องยนต์ไหนอยู่ในทุกรอบที่สึจิโอะ มัตสึดะ ขับอยู่?",
    "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_en": "Which engine is used by Team Lemans with Hiroaki Ishiura driving?",
    "question_th": "Team Lemans ใช้เครื่องยนต์ใดโดยที่ Hiroaki Ishiura ขับอยู่",
    "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_en": "What is the least rank with more than 3 losses and less than 25 sets lost?",
    "question_th": "อันดับน้อยที่สุดที่แพ้มากกว่า 3 ครั้งและแพ้น้อยกว่า 25 เซตคืออะไร?",
    "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_en": "What is the least rank with more than 16 sets won and less than 1 loss?",
    "question_th": "อันดับน้อยที่สุดที่ชนะมากกว่า 16 เซ็ตและแพ้น้อยกว่า 1 ครั้งคืออะไร?",
    "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_en": "Who was the home team when the away team was Telford United?",
    "question_th": "เจ้าบ้านคือใครเมื่อทีมเยือนคือเทลฟอร์ดยูไนเต็ด?",
    "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_en": "What was the score when the away team was West Ham United?",
    "question_th": "เมื่อทีมเยือนเป็นเวสต์แฮม ยูไนเต็ด สกอร์เท่าไหร่?",
    "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_en": "What is the Tie Number when the home team was West Ham United?",
    "question_th": "Tie Number เมื่อเจ้าบ้านเป็นเวสต์แฮมยูไนเต็ดคืออะไร?",
    "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_en": "Name the Model Number which has a FSB Speed of 400 mhz?",
    "question_th": "ตั้งชื่อหมายเลขรุ่นซึ่งมี FSB ความเร็ว 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_en": "Name the Voltage Range which has a FSB Speed of 400 mhz, and a Clock Speed of 1 ghz?",
    "question_th": "ตั้งชื่อ Voltage Range ซึ่งมีความเร็ว FSB 400 mhz และความเร็วสัญญาณนาฬิกา 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_en": "Name the L2 Cache which has a Clock Speed of 1.5 ghz?",
    "question_th": "ตั้งชื่อ L2 Cache ซึ่งมีความเร็วสัญญาณนาฬิกา 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_en": "What is the earliest game against Orlando?",
    "question_th": "เกมแรกสุดกับออร์แลนโดคือเกมอะไร?",
    "context": "CREATE TABLE table_name_57 (game INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(week) FROM table_name_47 WHERE attendance = \"72,855\"",
    "question_en": "Which Week has an Attendance of 72,855?",
    "question_th": "สัปดาห์ใดมีผู้เข้าร่วม 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_en": "Which Week has a Date of december 8, 1991?",
    "question_th": "สัปดาห์ใดมีวันที่ 8 ธันวาคม 2534",
    "context": "CREATE TABLE table_name_67 (week INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_52 WHERE date = \"november 24, 1991\"",
    "question_en": "Which Opponent has a Date of november 24, 1991?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีวันที่ 24 พฤศจิกายน 1991?",
    "context": "CREATE TABLE table_name_52 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_95 WHERE rank = 147",
    "question_en": "Which location has a rank of 147?",
    "question_th": "ตำแหน่งใดมีอันดับ 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_en": "Which mountain range contains Sierra Blanca Peak?",
    "question_th": "เทือกเขาใดมียอดเขา Sierra Blanca",
    "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_en": "Which location is in Oregon, ranked under 121, and contains Mount McLoughlin?",
    "question_th": "สถานที่ใดในรัฐโอเรกอน อันดับที่ต่ำกว่า 121 และมี 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_en": "What is the film, television series, or miniseries with a nomination in 2001?",
    "question_th": "ภาพยนตร์ ละครโทรทัศน์ หรือมินิซีรีส์ที่ได้รับการเสนอชื่อเข้าชิงในปี พ.ศ. 2544 คือเรื่องใด",
    "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_en": "In what year was Martin Sheen nominated?",
    "question_th": "Martin Sheen ได้รับการเสนอชื่อเข้าชิงในปีใด",
    "context": "CREATE TABLE table_name_3 (year VARCHAR, nominee VARCHAR)"
  },
  {
    "answer": "SELECT president FROM table_name_57 WHERE year = 1999",
    "question_en": "Who was the president in 1999?",
    "question_th": "ใครเป็นประธานาธิบดีในปี 2542?",
    "context": "CREATE TABLE table_name_57 (president VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_54 WHERE status = \"second test\"",
    "question_en": "Which Date has a Status of second test?",
    "question_th": "วันที่ใดมีสถานะการทดสอบครั้งที่สอง?",
    "context": "CREATE TABLE table_name_54 (date VARCHAR, status VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_26 WHERE against = 25",
    "question_en": "Which Venue has an Against of 25?",
    "question_th": "สนามใดมีแต้มต่อ 25?",
    "context": "CREATE TABLE table_name_26 (venue VARCHAR, against VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_34 WHERE date = \"19/05/1981\"",
    "question_en": "Which Status has a Date of 19/05/1981?",
    "question_th": "สถานะใดมีวันที่ 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_en": "Which Against has a Date of 30/05/1981?",
    "question_th": "ซึ่งต่อต้านมีวันที่ 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_en": "Which Date has an Against smaller than 21, and a Status of second test?",
    "question_th": "วันใดที่มีค่า Against น้อยกว่า 21 และสถานะการทดสอบครั้งที่สอง",
    "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_en": "What is Rochester, when Syracuse is Cardiff Dark Gray Shale, and when Albany is (Mt. Marion Fm.)?",
    "question_th": "Rochester คืออะไร เมื่อ Syracuse คือ Cardiff Dark Grey Shale และเมื่อ Albany คือ (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_en": "What is Albany, when Buffalo is Oatka Creek Shale, and when Syracuse is Cardiff Dark Gray Shale?",
    "question_th": "ออลบานีคืออะไร เมื่อบัฟฟาโลเป็นหิน Oatka Creek และเมื่อซีราคิวส์เป็นหินคาร์ดิฟฟ์สีเทาเข้ม",
    "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_en": "What is Syracuse, when Utica is Union Springs Shale And Limestone, and when Rochester is Union Springs Shale And Limestone?",
    "question_th": "Syracuse คืออะไร เมื่อ Utica คือ Union Springs Shale และ Limestone และเมื่อ Rochester คือ Union Springs Shale และ 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_en": "What is Syracuse, when Utica is Solsville Shale And Sandstone?",
    "question_th": "Syracuse คืออะไร เมื่อ Utica คือ Solsville Shale และ 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_en": "What is Syracuse, when Buffalo is Oatka Creek Shale, and when Albany is Berne?",
    "question_th": "ซีราคิวส์คืออะไร เมื่อบัฟฟาโลคือ Oatka Creek Shale และเมื่อออลบานีคือเบิร์น",
    "context": "CREATE TABLE table_name_90 (syracuse VARCHAR, buffalo VARCHAR, albany VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_67 WHERE rank = 18",
    "question_en": "What is the Name of the Players with a Rank of 18?",
    "question_th": "ผู้เล่นที่มีอันดับ 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_en": "How many Points for the couple ranking 17 with Placings larger than 100?",
    "question_th": "คะแนนสำหรับคู่รักอันดับที่ 17 ที่มีอันดับมากกว่า 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_en": "What is the Rank of the couple with less than 408.8 Points and Placings of 160?",
    "question_th": "คู่สามีภรรยาที่มีคะแนนน้อยกว่า 408.8 และอันดับ 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_en": "What is the Place of the couple with a Rank smaller than 7 and 514.55 Points?",
    "question_th": "คู่รักที่มีอันดับต่ำกว่า 7 และ 514.55 คะแนน อยู่ตำแหน่งไหน?",
    "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_en": "What is the total Lane with a Mark of 47.02, and a Heat higher than 5?",
    "question_th": "เลนทั้งหมดที่มีเครื่องหมาย 47.02 และฮีตสูงกว่า 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_en": "With a Mark of 46.47, What is the lowest Heat?",
    "question_th": "ด้วยเครื่องหมาย 46.47 ความร้อนต่ำสุดคือเท่าไร?",
    "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_en": "What is the Country that has Richard Buck Lane higher than 3?",
    "question_th": "ประเทศใดที่มี Richard Buck Lane สูงกว่า 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_en": "When did Louise, Princess royal get married?",
    "question_th": "เจ้าหญิงหลุยส์ เจ้าหญิงรอยัล อภิเษกสมรสเมื่อไหร่?",
    "context": "CREATE TABLE table_name_87 (date_married VARCHAR, name_dates VARCHAR)"
  },
  {
    "answer": "SELECT djurgården_scorers FROM table_name_87 WHERE score = \"2-1\"",
    "question_en": "What are the Djurgården scorers that have a Score of 2-1?",
    "question_th": "อะไรคือผู้ทำประตูของยอร์กออร์เดนที่สกอร์ 2-1?",
    "context": "CREATE TABLE table_name_87 (djurgården_scorers VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT opponents FROM table_name_43 WHERE djurgården_scorers = \"sjölund (2)\"",
    "question_en": "What are the Opponents that have Djurgården scorers of sjölund (2)?",
    "question_th": "คู่แข่งที่มี Djurgården ผู้ทำประตูของ sjölund (2) คืออะไร?",
    "context": "CREATE TABLE table_name_43 (opponents VARCHAR, djurgården_scorers VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_6 WHERE date = \"2005-10-29\"",
    "question_en": "What is the Score that has a Date of 2005-10-29?",
    "question_th": "คะแนนที่มีวันที่ 29-10-2548 คืออะไร?",
    "context": "CREATE TABLE table_name_6 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_52 WHERE attendance = \"4 679\"",
    "question_en": "What is the Score that has an Attendance of 4 679?",
    "question_th": "คะแนนที่มีผู้เข้าร่วม 4,679 คืออะไร?",
    "context": "CREATE TABLE table_name_52 (score VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_46 WHERE round = \"semifinal\"",
    "question_en": "What is the Date that has a Round of semifinal?",
    "question_th": "วันที่เท่าไหร่ที่มีรอบรองชนะเลิศ?",
    "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_en": "Which Round is the highest one that has a College of arizona, and an Overall larger than 120?",
    "question_th": "รอบไหนสูงที่สุดที่มีวิทยาลัยแอริโซนา และคะแนนรวมมากกว่า 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_en": "Which Pick has a Name of ed hickerson, and a Round smaller than 10?",
    "question_th": "ตัวเลือกใดที่มีชื่อเป็น ed hickerson และรอบที่เล็กกว่า 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_en": "How much Overall has a Pick of 10, and a Round smaller than 8, and a Position of e, and a College of tennessee?",
    "question_th": "คะแนนโดยรวมมีการเลือก 10 คะแนน และรอบที่น้อยกว่า 8 และตำแหน่ง e และวิทยาลัยเทนเนสซี",
    "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_en": "What date was the away team Morecambe?",
    "question_th": "ทีมเยือนมอร์แคมบ์จัดวันไหน?",
    "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_en": "What team was the away team when the home team was Grimsby Town?",
    "question_th": "ทีมไหนเป็นทีมเยือนตอนเจ้าบ้านคือกริมสบี้ทาวน์?",
    "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_en": "What team was the away team when the home team was Hereford United?",
    "question_th": "ทีมไหนเป็นทีมเยือนตอนเจ้าบ้านคือเฮริฟอร์ดยูไนเต็ด?",
    "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_en": "What team was the away team when the tie no is 40?",
    "question_th": "ทีมใดเป็นทีมเยือนเมื่อเสมอกันที่ 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_en": "What was the 1st leg score for the team with an Agg score of 151-134?",
    "question_th": "คะแนนเลกแรกของทีมด้วยคะแนน Agg 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_en": "What was the team Unics Kazan's 1st leg score?",
    "question_th": "คะแนนเลกแรกของทีม อูนิคส์ คาซาน เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_73 (team__number1 VARCHAR)"
  },
  {
    "answer": "SELECT team__number1 FROM table_name_71 WHERE team__number2 = \"kalise gran canaria\"",
    "question_en": "Who was the first team when the second team was Kalise Gran Canaria?",
    "question_th": "ใครคือทีมแรกเมื่อทีมที่สองคือคาลิเซ่ กราน คานาเรีย?",
    "context": "CREATE TABLE table_name_71 (team__number1 VARCHAR, team__number2 VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_52 WHERE game = 30",
    "question_en": "What was the score of game 30?",
    "question_th": "คะแนนของเกม 30 คืออะไร?",
    "context": "CREATE TABLE table_name_52 (score VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_name_97 WHERE team = \"toronto\"",
    "question_en": "Who was the high scorer in the Toronto game?",
    "question_th": "ใครคือผู้ทำประตูสูงสุดในเกมโตรอนโต?",
    "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_en": "What is the highest date in october for a game number larger than 8 with a record of 4-4-0?",
    "question_th": "วันที่สูงสุดในเดือนตุลาคมสำหรับหมายเลขเกมที่มากกว่า 8 โดยมีสถิติ 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_en": "When the tom watson is playing for the United States and the To par is under 14, what's the total?",
    "question_th": "เมื่อทอม วัตสันลงเล่นให้กับสหรัฐอเมริกาและพาร์ต่ำกว่า 14 แต้มรวมเป็นเท่าไหร่?",
    "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_en": "What player has a total of 158/",
    "question_th": "ผู้เล่นคนไหนมีทั้งหมด 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_en": "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?",
    "question_th": "หากปี 1967 เป็นปีที่ชนะ และผู้เล่นมีคะแนนรวมเป็น wd โดยมีพาร์ต่ำกว่า 16 ปี ผู้เล่นจะชื่ออะไร?",
    "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_en": "How many kicks did he get in the year when he played 7 games?",
    "question_th": "เขาเตะได้กี่ครั้งในปีที่เขาเล่น 7 เกม?",
    "context": "CREATE TABLE table_name_61 (kicks VARCHAR, games VARCHAR)"
  },
  {
    "answer": "SELECT marks FROM table_name_89 WHERE season = \"2005\"",
    "question_en": "How many marks did he get in 2005?",
    "question_th": "ปี 2548 เขาได้กี่คะแนน?",
    "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_en": "How many wins did West Ham get when Millwall had more than 23 goal and 5 wins, and they tied 8 times?",
    "question_th": "เวสต์แฮมเก็บชัยชนะได้กี่ครั้งเมื่อมิลล์วอลล์ทำได้มากกว่า 23 ประตูและชนะ 5 ครั้งและเสมอกัน 8 ครั้ง",
    "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_en": "What is the least number of wins West Ham got when they tied 27 times?",
    "question_th": "เวสต์แฮมคว้าชัยได้น้อยที่สุดเมื่อเสมอกัน 27 ครั้งคือเท่าไร?",
    "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_en": "what is the attendance when the date is october 22, 2000?",
    "question_th": "วันที่ 22 ตุลาคม 2543 จะเข้าร่วมงานอะไรบ้าง?",
    "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_en": "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?",
    "question_th": "อะไรคือค่าสูงสุดสำหรับปี 2000 เมื่อค่าสำหรับปี 1950 คือ 3.5 และเมื่อค่าสำหรับปี 1970 มากกว่า 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_en": "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?",
    "question_th": "ค่าต่ำสุดสำหรับปี 1990 เมื่อภูมิภาคคือเอเชียตะวันออก (10 ประเทศเศรษฐกิจ) และเมื่อปี 1960 มีค่าน้อยกว่า 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_en": "What is the average value for 1970, when the Region is East Europe (7 Economies), and when 2000 has a value greater than 2?",
    "question_th": "ค่าเฉลี่ยสำหรับปี 1970 คือเท่าใด เมื่อภูมิภาคคือยุโรปตะวันออก (7 ประเทศ) และเมื่อปี 2000 มีค่ามากกว่า 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_en": "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?",
    "question_th": "ค่าสูงสุดสำหรับปี 1970 คืออะไร เมื่อค่าสำหรับปี 1960 น้อยกว่า 61.9 เมื่อค่าสำหรับปี 1980 น้อยกว่า 3.8 เมื่อค่าสำหรับปี 1990 คือ 3.3 และเมื่อค่าสำหรับปี 2000 มากกว่า 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_en": "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?",
    "question_th": "ค่าต่ำสุดสำหรับปี 1960 คืออะไร เมื่อค่าสำหรับปี 2000 น้อยกว่า 8.4 เมื่อค่าสำหรับปี 1950 มากกว่า 3.5 และเมื่อค่าสำหรับปี 1990 น้อยกว่า 3.3",
    "context": "CREATE TABLE table_name_66 (Id VARCHAR)"
  },
  {
    "answer": "SELECT AVG(drawn) FROM table_name_21 WHERE played > 42",
    "question_en": "What average drawn has a played greater than 42?",
    "question_th": "ค่าเฉลี่ยที่เสมอกันมีการเล่นมากกว่า 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_en": "What is the highest played that has a position less than 17, and 63 as the goals for?",
    "question_th": "ผู้เล่นสูงสุดที่มีตำแหน่งน้อยกว่า 17 และ 63 เป็นประตูเพื่ออะไร?",
    "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_en": "What is the lowest played that has a position greater than 6, 61 as the goals against, with a loss less than 16?",
    "question_th": "ผู้เล่นที่เล่นต่ำสุดที่มีตำแหน่งมากกว่า 6, 61 เป็นประตูโดยเสียน้อยกว่า 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_en": "What is the highest goals for that has a drawn less than 11, with a played less than 42?",
    "question_th": "ประตูสูงสุดที่เสมอน้อยกว่า 11 ประตูและเล่นน้อยกว่า 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_en": "What is the average goals for that has +40 as the goals difference, with points 1 greater than 55?",
    "question_th": "เป้าหมายเฉลี่ยที่มี +40 เป็นผลต่างประตู โดยที่คะแนน 1 มากกว่า 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_en": "Can you tell me the average Total that has the To par of 15?",
    "question_th": "คุณช่วยบอกฉันถึงผลรวมเฉลี่ยที่มีพาร์ถึง 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_en": "Can you tell me the Country that has the To par larger than 9, and the Year(s) won of 1984?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าประเทศที่มีพาร์ To มากกว่า 9 และปี 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_en": "Who produced the track that is 4:16 long?",
    "question_th": "ใครเป็นคนสร้างเพลงที่มีความยาว 4:16?",
    "context": "CREATE TABLE table_name_25 (producer_s_ VARCHAR, length VARCHAR)"
  },
  {
    "answer": "SELECT producer_s_ FROM table_name_7 WHERE track = 7",
    "question_en": "Who produced track 7?",
    "question_th": "ใครเป็นคนผลิตเพลงที่ 7?",
    "context": "CREATE TABLE table_name_7 (producer_s_ VARCHAR, track VARCHAR)"
  },
  {
    "answer": "SELECT contract_length FROM table_name_55 WHERE status = \"rejected\"",
    "question_en": "What is the contract length when rejected is the status?",
    "question_th": "ระยะเวลาของสัญญาเมื่อถูกปฏิเสธคือสถานะ?",
    "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_en": "what is the average drawn when the points is more than 15, lost is 1 and played is less than 14?",
    "question_th": "ค่าเฉลี่ยที่ได้ออกมาเมื่อแต้มมากกว่า 15 แพ้ 1 และเล่นน้อยกว่า 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_en": "what is the lowest position when points is more than 11, name is ea schongau and lost is less than 3?",
    "question_th": "ตำแหน่งต่ำสุดคือเมื่อคะแนนมากกว่า 11 ชื่อ ea schongau และแพ้น้อยกว่า 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_en": "what is the average lost when played is more than 14?",
    "question_th": "ค่าเฉลี่ยที่เสียไปเมื่อเล่นมากกว่า 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_en": "what is the sum of drawn when points is less than 15, lost is 8 and position is more than 6?",
    "question_th": "ผลรวมของการสุ่มเมื่อแต้มน้อยกว่า 15 แพ้ 8 และตำแหน่งมากกว่า 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ünchen ii\" AND position < 7",
    "question_en": "what is the lowest points when name is ehc münchen ii and position is less than 7?",
    "question_th": "จุดต่ำสุดเมื่อชื่อ ehc münchen ii และตำแหน่งน้อยกว่า 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_en": "what is the result when the week is earlier than 9 and attendance is 25,188?",
    "question_th": "ผลลัพธ์จะเป็นอย่างไรเมื่อสัปดาห์เร็วกว่า 9 โมงและมีผู้เข้าร่วม 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_en": "What is Team, when High Points is \"Rashard Lewis (18)\"?",
    "question_th": "ทีมคืออะไร เมื่อคะแนนสูงคือ \"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ürkoğlu (3)\"",
    "question_en": "What is High Rebounds, when High Assists is \"Rafer Alston , Rashard Lewis , Hedo Türkoğlu (3)\"?",
    "question_th": "High Rebounds คืออะไร เมื่อ High Assists คือ \"Rafer Alston , Rashard Lewis , Hedo Türkoğlu (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ël piétrus (17)\"",
    "question_en": "What is Team, when High Points is \"Rashard Lewis , Mickaël Piétrus (17)\"?",
    "question_th": "ทีมคืออะไร เมื่อคะแนนสูงสุดคือ \"Rashard Lewis , Mickaël Piétrus (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ürkoğlu (4)\"",
    "question_en": "What is the highest Game, when Team is \"Celtics\", and when High Assists is \"Hedo Türkoğlu (4)\"?",
    "question_th": "เกมใดที่สูงที่สุด เมื่อทีมคือ \"Celtics\" และเมื่อ High Assists คือ \"Hedo Türkoğlu (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_en": "What is Run 1, when Run 4 is 1:56.59?",
    "question_th": "Run 1 คืออะไร เมื่อ Run 4 คือ 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_en": "What is Rank, when Run 2 is 2:06.62?",
    "question_th": "อันดับคืออะไร เมื่อรัน 2 คือ 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_en": "What is Run 2, when Run 1 is 2:09.09?",
    "question_th": "Run 2 คืออะไร เมื่อ Run 1 คือ 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_en": "What is Final, when Team is United States (USA) USA I?",
    "question_th": "รอบชิงชนะเลิศคืออะไร เมื่อทีมคือ 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_en": "What is Final, when Run 3 is 1:57.41?",
    "question_th": "รอบชิงชนะเลิศคืออะไร เมื่อรัน 3 อยู่ที่ 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_en": "What is Run 3, when Team is United States (USA) USA I?",
    "question_th": "Run 3 คืออะไร เมื่อทีมคือ 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_en": "Which position has 30 points and Reiner Stuyvenberg as a passenger?",
    "question_th": "ตำแหน่งใดมี 30 คะแนน และมีไรเนอร์ สตุยเวนเบิร์กเป็นผู้โดยสาร",
    "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_en": "Which passenger has a position of 21 and less than 49 points?",
    "question_th": "ผู้โดยสารคนไหนมีตำแหน่ง 21 และน้อยกว่า 49 คะแนน?",
    "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_en": "What were the wins with more than 145 points, less than 17 races, and Sven Verbrugge as a passenger?",
    "question_th": "ชัยชนะที่มีมากกว่า 145 แต้ม น้อยกว่า 17 เรซ และ Sven Verbrugge ในฐานะผู้โดยสารคืออะไร?",
    "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_en": "Who is the passenger in 2009 season with 17 races?",
    "question_th": "ใครคือผู้โดยสารในฤดูกาล 2009 กับ 17 เรซ?",
    "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_en": "WHAT IS THE POSITION FOR BRAZIL, WITH 27 GOALS, AND FOR NECA?",
    "question_th": "ตำแหน่งสำหรับบราซิลที่มี 27 ประตูและสำหรับ NECA คืออะไร?",
    "context": "CREATE TABLE table_name_83 (position VARCHAR, name VARCHAR, nationality VARCHAR, goals VARCHAR)"
  },
  {
    "answer": "SELECT são_paulo_career FROM table_name_45 WHERE appearances < 201 AND goals < 2 AND name = \"ricardo rocha\"",
    "question_en": "WHAT SAN PAULO CAREER HAD SMALLER THAN 201 APPEARANCES, SMALLER THAN 2 GOALS, AND FOR RICARDO ROCHA?",
    "question_th": "อาชีพอะไรของซานเปาโลที่น้อยกว่า 201 นัด น้อยกว่า 2 ประตู และสำหรับ RICARDO ROCHA",
    "context": "CREATE TABLE table_name_45 (são_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_en": "Which display has an ISO range of 80-800, and 0.8 Seconds/Frame?",
    "question_th": "จอแสดงผลใดมีช่วง ISO 80-800 และ 0.8 วินาที/เฟรม",
    "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_en": "WHAT IS THE VALE ROYAL WITH THE JEWISH RELIGION?",
    "question_th": "Vale ROYAL กับศาสนายิวคืออะไร?",
    "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_en": "On 1959-01-27 when outcome was failure, what is the serial?",
    "question_th": "วันที่ 27-01-2502 เมื่อผลลัพธ์ล้มเหลว อนุกรมคืออะไร?",
    "context": "CREATE TABLE table_name_91 (serial VARCHAR, outcome VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_28 WHERE serial = \"11c\"",
    "question_en": "Which date has serial of 11c?",
    "question_th": "วันที่ใดมีอนุกรม 11c",
    "context": "CREATE TABLE table_name_28 (date VARCHAR, serial VARCHAR)"
  },
  {
    "answer": "SELECT apogee FROM table_name_5 WHERE date = \"1959-02-20\"",
    "question_en": "Which Apogee was on 1959-02-20?",
    "question_th": "Apogee ตัวไหนอยู่เมื่อวันที่ 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_en": "Which date has time (GMT) of 23:34?",
    "question_th": "วันที่ใดมีเวลา (GMT) 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_en": "What is Cross Country, when Soccer is Ashland, when Volleyball is Wooster, and when School Year is 2006-07?",
    "question_th": "Cross Country คืออะไร เมื่อ Soccer คือ Ashland เมื่อวอลเลย์บอลคือ Wooster และเมื่อปีการศึกษาคือ 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_en": "What is School Year, when Cross Country is Wooster?",
    "question_th": "ปีการศึกษาคืออะไร เมื่อ Cross Country คือ 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_en": "What is Tennis, when School Year is 2004-05?",
    "question_th": "เทนนิสคืออะไร เมื่อปีการศึกษา 2547-2548",
    "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_en": "What is Cross Country, when School Year is 2012-13?",
    "question_th": "Cross Country คืออะไร เมื่อปีการศึกษา 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_en": "What is School Year, when Cross Country is Lexington, when Soccer is Ashland, and when Volleyball is Wooster?",
    "question_th": "ปีการศึกษาคืออะไร เมื่อ Cross Country คือ Lexington เมื่อฟุตบอลคือ Ashland และเมื่อใดวอลเลย์บอลคือ 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_en": "What is Soccer, when Cross Country is Lexington, and when School Year is 2011-12?",
    "question_th": "Soccer คืออะไร เมื่อ Cross Country คือ Lexington และเมื่อปีการศึกษาคือ 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_en": "What is the highest Attendance, when Result is l 26-16, and when Week is less than 12?",
    "question_th": "ผู้เข้าร่วมสูงสุดเมื่อผลลัพธ์คือ l 26-16 และเมื่อใดสัปดาห์น้อยกว่า 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_en": "What is the highest Week, when Result is W 34-21?",
    "question_th": "สัปดาห์สูงสุดคือเมื่อผลลัพธ์คือ 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_en": "What is the most recent year with a finish in 2nd position?",
    "question_th": "ปีล่าสุดที่จบอันดับ 2 คืออะไร?",
    "context": "CREATE TABLE table_name_22 (season INTEGER, position VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_62 WHERE season > 2004",
    "question_en": "What is the position in the 2004 season?",
    "question_th": "ตำแหน่งในฤดูกาล 2004 คืออะไร?",
    "context": "CREATE TABLE table_name_62 (position VARCHAR, season INTEGER)"
  },
  {
    "answer": "SELECT division FROM table_name_60 WHERE season < 2004",
    "question_en": "What is the division for the season earlier than 2004?",
    "question_th": "ฤดูกาลก่อนปี 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_en": "What is Team, when Qual 1 is 1:16.417?",
    "question_th": "ทีมคืออะไร เมื่อรอบ 1 คือ 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_en": "What is Team, when Qual 1 is 1:16.417?",
    "question_th": "ทีมคืออะไร เมื่อรอบ 1 คือ 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_en": "What is Team when Qual 1 is 1:20.139?",
    "question_th": "ทีมจะเป็นอย่างไรเมื่อรอบคัดเลือก 1 คือ 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_en": "What is Name when Qual 2 is 1:15.582?",
    "question_th": "ชื่ออะไรเมื่อรอบ 2 คือ 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_en": "What is Name, when Best is 1:15.673?",
    "question_th": "ชื่อคืออะไร เมื่อดีที่สุดคือ 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_en": "Where was the tournament that happened in 1987 on a clay surface?",
    "question_th": "การแข่งขันที่เกิดขึ้นในปี 1987 บนพื้นดินเหนียวอยู่ที่ไหน?",
    "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–6, 6–3, 6–4\"",
    "question_en": "Who was the opponent before 1990 that had a score of 4–6, 6–3, 6–4 and Partnering of Yannick Noah?",
    "question_th": "ใครคือคู่ต่อสู้ก่อนปี 1990 ที่มีคะแนน 4–6, 6–3, 6–4 และการเป็นหุ้นส่วนของ 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ürgerschaft FROM table_name_83 WHERE ideology = \"green politics\"",
    "question_en": "WHAT IS THE SEATS IN Hamburgische Bürgerschaft THAT HAS GREEN POLITICS?",
    "question_th": "ที่นั่งใน Hamburgische Bürgerschaft ที่มีการเมืองสีเขียวคืออะไร?",
    "context": "CREATE TABLE table_name_83 (seats_in_hamburgische_bürgerschaft VARCHAR, ideology VARCHAR)"
  },
  {
    "answer": "SELECT abbr FROM table_name_70 WHERE votes__2011_ = \"11.2%\"",
    "question_en": "WHAT IS THE ABBR WITH VOTES OF 11.2% IN 2011?",
    "question_th": "ABBR ที่มีคะแนนโหวต 11.2% ในปี 2554 คืออะไร?",
    "context": "CREATE TABLE table_name_70 (abbr VARCHAR, votes__2011_ VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(seats_in_hamburgische_bürgerschaft) FROM table_name_18 WHERE abbr = \"bündnis 90 / die grünen (gal)\"",
    "question_en": "WHAT IS THE TOTAL NUMBER OF SEATS IN Hamburgische Bürgerschaft WITH AN ABBR OF bündnis 90 / die grünen (gal)?",
    "question_th": "จำนวนที่นั่งทั้งหมดใน Hamburgische Bürgerschaft กับ ABBR ของ bündnis 90 / die grünen (gal) คือเท่าไร?",
    "context": "CREATE TABLE table_name_18 (seats_in_hamburgische_bürgerschaft VARCHAR, abbr VARCHAR)"
  },
  {
    "answer": "SELECT name__german_ FROM table_name_85 WHERE ideology = \"liberalism\"",
    "question_en": "WHAT IS THE GERMAN NAME OF LIBERALISM?",
    "question_th": "เสรีนิยมชื่อเยอรมันคืออะไร?",
    "context": "CREATE TABLE table_name_85 (name__german_ VARCHAR, ideology VARCHAR)"
  },
  {
    "answer": "SELECT seats_in_hamburgische_bürgerschaft FROM table_name_57 WHERE name__english_ = \"alliance '90/the greens\"",
    "question_en": "WHAT ARE THE SEATS IN Hamburgische Bürgerschaft WITH THE NAME alliance '90/the greens?",
    "question_th": "ที่นั่งใน Hamburgische Bürgerschaft ที่มีชื่อ alliance '90/the greens คืออะไร",
    "context": "CREATE TABLE table_name_57 (seats_in_hamburgische_bürgerschaft VARCHAR, name__english_ VARCHAR)"
  },
  {
    "answer": "SELECT MIN(game) FROM table_name_99 WHERE location = \"td waterhouse centre\"",
    "question_en": "What is the earliest game played at the TD Waterhouse Centre?",
    "question_th": "เกมแรกสุดที่เล่นที่ 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_en": "Who was the opponent on April 2?",
    "question_th": "คู่ต่อสู้ในวันที่ 2 เมษายนคือใคร?",
    "context": "CREATE TABLE table_name_56 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(game) FROM table_name_5 WHERE opponent = \"miami heat\"",
    "question_en": "What was the highest game number when the opponent was the Miami Heat?",
    "question_th": "หมายเลขเกมสูงสุดเมื่อคู่ต่อสู้คือไมอามี่ ฮีตคือหมายเลขใด",
    "context": "CREATE TABLE table_name_5 (game INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT website FROM table_name_55 WHERE license = \"apache license 2.0\"",
    "question_en": "What is Website, when License is Apache License 2.0?",
    "question_th": "เว็บไซต์คืออะไร เมื่อ License คือ 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_en": "What is Source Version, when Target Version is Java 7, 6, 5?",
    "question_th": "Source Version คืออะไร เมื่อ Target Version คือ 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_en": "What is Source Version, when License is LGPL or MPL?",
    "question_th": "Source Version คืออะไร เมื่อ License เป็น LGPL หรือ 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_en": "What is Target Version, when Last Release is 2009-08-09, 1.2.9?",
    "question_th": "Target Version คืออะไร เมื่อรุ่นล่าสุดคือ 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_en": "What is Website, when Last Release is 2009-08-09, 1.2.9?",
    "question_th": "เว็บไซต์คืออะไร เมื่อรุ่นล่าสุดคือ 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_en": "What is Target Version, when License is LGPL or MPL?",
    "question_th": "Target Version คืออะไร เมื่อใบอนุญาตคือ LGPL หรือ MPL",
    "context": "CREATE TABLE table_name_68 (target_version VARCHAR, license VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_name_12 WHERE erp_w = 500",
    "question_en": "What is the class for the ERP W of 500?",
    "question_th": "ERP W 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_en": "What is the ERP W for the station whose call sign is K248BJ and whose frequency MHz is higher than 97.5?",
    "question_th": "ERP W ของสถานีที่มีสัญญาณเรียกขานเป็น K248BJ และมีความถี่ MHz มากกว่า 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_en": "In which city is the station licensed whose frequency MHz is higher than 102.3 and the ERP W is lower than 1,000?",
    "question_th": "ในเมืองใดเป็นสถานีที่ได้รับใบอนุญาตซึ่งมีความถี่ MHz สูงกว่า 102.3 และ ERP W ต่ำกว่า 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_en": "In which city is the station licensed whose frequency MHz is higher than 102.3 and whose call sign is K292EU?",
    "question_th": "ในเมืองใดเป็นสถานีที่ได้รับใบอนุญาตซึ่งมีความถี่ MHz สูงกว่า 102.3 และมีสัญญาณเรียกขานคือ 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_en": "What was sweden's purse in USD?",
    "question_th": "กระเป๋าเงินของสวีเดนเป็น USD คืออะไร?",
    "context": "CREATE TABLE table_name_58 (purse___us_ INTEGER, country VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_31 WHERE year = 2003",
    "question_en": "What was 2003's To Par?",
    "question_th": "To Par ของปี 2003 คืออะไร?",
    "context": "CREATE TABLE table_name_31 (to_par VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT MAX(laps) FROM table_name_82 WHERE grid = 7",
    "question_en": "What is the highest laps for the grid of 7?",
    "question_th": "รอบสูงสุดสำหรับตารางที่ 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_en": "What are the average Laps for the time/retired of +16.874 secs, and a grid less than 5?",
    "question_th": "รอบเฉลี่ยสำหรับเวลา/เกษียณที่ +16.874 วินาที และเส้นตารางน้อยกว่า 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_en": "What are the greatest points for a time/retired of +32.256 secs, and a a grid larger than 12?",
    "question_th": "อะไรคือจุดที่ยิ่งใหญ่ที่สุดสำหรับเวลา/เกษียณ +32.256 วินาที และตาราง aa ที่ใหญ่กว่า 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_en": "What is biggest grid when the laps are 65?",
    "question_th": "เส้นกริดที่ใหญ่ที่สุดเมื่อรอบอยู่ที่ 65 คืออะไร?",
    "context": "CREATE TABLE table_name_86 (grid INTEGER, laps VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_6 WHERE grid = 15",
    "question_en": "What team has a grid of 15?",
    "question_th": "ทีมใดมีตาราง 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_en": "What is the average new council number when the election result is smaller than 0?",
    "question_th": "เลขสภาใหม่โดยเฉลี่ยเมื่อผลการเลือกตั้งน้อยกว่า 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_en": "How many seats were up for election during the vote where the election result was 9 and the new council 27?",
    "question_th": "การเลือกตั้งมีที่นั่งกี่ที่นั่ง โดยผลการเลือกตั้งเป็น 9 และสภาใหม่ 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_en": "How many staying councillors were there when the election result was larger than 0, the new council less than 27 and the party conservatives?",
    "question_th": "มีสมาชิกสภาอยู่กี่คนเมื่อผลการเลือกตั้งมากกว่า 0 สภาใหม่น้อยกว่า 27 และพรรคอนุรักษ์นิยม",
    "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_en": "What opponent did the Broncos play on November 16?",
    "question_th": "บรองโกส์ลงเล่นคู่ต่อสู้คนไหนในวันที่ 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_en": "What was the Bronco's record when they played the Detroit Lions at Mile High Stadium?",
    "question_th": "สถิติของบรองโกเมื่อพวกเขาเล่นกับดีทรอยต์ ไลออนส์ที่ไมล ไฮ สเตเดียมคืออะไร?",
    "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_en": "What was the score of the game on November 22?",
    "question_th": "สกอร์เกมวันที่ 22 พฤศจิกายน เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_8 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MIN(points) FROM table_name_50 WHERE attendance = \"1,500\"",
    "question_en": "What is the lowest number of points scored when there were 1,500 in attendance?",
    "question_th": "คะแนนต่ำสุดเมื่อมีผู้เข้าร่วม 1,500 คนคือเท่าใด",
    "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_en": "what is 2001 when the year is ebitda and 2009 is less than 3,600?",
    "question_th": "ปี 2544 คือปี ebitda และปี 2552 น้อยกว่า 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_en": "who is the author for harry potter and the deathly hallows?",
    "question_th": "ใครเป็นผู้เขียนแฮร์รี่ พอตเตอร์กับเครื่องรางยมทูต?",
    "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_en": "what is the title when the citation is honor and the narrator is lincoln hoppe?",
    "question_th": "ชื่อเรื่องว่าอะไรเมื่อการอ้างอิงเป็นเกียรติและผู้บรรยายคือลินคอล์น ฮอปป์",
    "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_en": "who is the producer when the narrator is katherine kellgren, the year is before 2013 and the author is karen cushman?",
    "question_th": "ใครเป็นโปรดิวเซอร์ เมื่อผู้บรรยายคือ แคทเธอรีน เคลลเกรน ปีก่อนปี 2013 และผู้แต่งคือ คาเรน คุชแมน",
    "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_en": "what is the year when the citation is honor and the author is kadir nelson?",
    "question_th": "ปีใดที่การอ้างอิงถือเป็นเกียรติ และผู้แต่งคือ 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_en": "What is Opponent In The Final, when Year is \"1942\"?",
    "question_th": "คู่ต่อสู้ในรอบชิงชนะเลิศคืออะไร เมื่อถึงปี 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_en": "What is the average Year, when Outcome is \"Winner\"?",
    "question_th": "ปีเฉลี่ยคือเท่าใด เมื่อผลลัพธ์คือ \"ผู้ชนะ\"",
    "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_en": "What tournament did Pemra Özgen play against julia kimmelmann in the finals?",
    "question_th": "Pemra Özgen แข่งขันกับ Julia Kimmelmann ในทัวร์นาเมนต์ใดในรอบชิงชนะเลิศ",
    "context": "CREATE TABLE table_name_54 (tournament VARCHAR, opponent_in_the_final VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_44 WHERE visitor = \"nashville\"",
    "question_en": "Which Home has a Visitor of nashville?",
    "question_th": "บ้านไหนมีผู้มาเยือนแนชวิลล์?",
    "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_en": "Which Visitor has a Decision of osgood, and a Date of february 15?",
    "question_th": "ผู้เข้าชมคนใดมีการตัดสินใจของ osgood และวันที่ 15 กุมภาพันธ์?",
    "context": "CREATE TABLE table_name_63 (visitor VARCHAR, decision VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_15 WHERE record = \"36–11–7\"",
    "question_en": "Which Date has a Record of 36–11–7?",
    "question_th": "วันที่ใดมีบันทึก 36–11–7",
    "context": "CREATE TABLE table_name_15 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_24 WHERE visitor = \"edmonton\"",
    "question_en": "Which Date has a Visitor of edmonton?",
    "question_th": "วันไหนที่มีผู้มาเยือนเอดมันตัน?",
    "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_en": "What is the sum of Bronze, when Gold is less than 1, when Total is greater than 1, and when Rank is 10?",
    "question_th": "ผลรวมของทองแดงเมื่อทองน้อยกว่า 1 เมื่อผลรวมมากกว่า 1 และเมื่ออันดับเป็น 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_en": "What is the average Bronze, when Rank is greater than 6, when Nation is Italy (ITA), and when Total is less than 1?",
    "question_th": "ค่าเฉลี่ยของทองแดงคือเท่าใด เมื่ออันดับมากกว่า 6 เมื่อประเทศคืออิตาลี (ITA) และเมื่อผลรวมน้อยกว่า 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_en": "What is the sum of Total, when Silver is greater than 1, when Rank is 9, and when Bronze is greater than 0?",
    "question_th": "ผลรวมของผลรวมเมื่อเงินมากกว่า 1 เมื่ออันดับคือ 9 และเมื่อทองแดงมากกว่า 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_en": "What is the average Gold, when Total is 2, when Silver is less than 1, and when Rank is greater than 5?",
    "question_th": "ทองคำโดยเฉลี่ยคือเท่าใด เมื่อผลรวมคือ 2 เมื่อเงินน้อยกว่า 1 และเมื่ออันดับมากกว่า 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_en": "What is the sum of Rank, when Bronze is less than 1, when Nation is Switzerland (SUI), and when Total is less than 2?",
    "question_th": "ผลรวมของอันดับเมื่อ Bronze น้อยกว่า 1 เมื่อ Nation คือสวิตเซอร์แลนด์ (SUI) และเมื่อ Total น้อยกว่า 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_en": "What is the sum of Total, when Silver is greater than 1, when Nation is Germany (GER), and when Gold is less than 1?",
    "question_th": "ผลรวมของ Total คืออะไร เมื่อ Silver มากกว่า 1 เมื่อ Nation คือ Germany (GER) และเมื่อ Gold น้อยกว่า 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_en": "What is Player, when To Par is \"7\", and when Score is \"73-72-67-75=287\"?",
    "question_th": "ผู้เล่นคืออะไร เมื่อพาร์เป็น \"7\" และเมื่อสกอร์เป็น \"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_en": "What is the average To Par, when Player is \"Billy Casper\"?",
    "question_th": "ค่าพาร์เฉลี่ยคือเท่าไร เมื่อผู้เล่นคือ “บิลลี่ แคสเปอร์”?",
    "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_en": "What is the highest Money ( $ ), when To Par is less than 2?",
    "question_th": "เงินสูงสุด ($ ) คืออะไรเมื่อ Par น้อยกว่า 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_en": "What event in guam did Tetsuji Kato win against patrick madayag?",
    "question_th": "เหตุการณ์ใดที่กวมที่เท็ตสึจิ คาโตะ ชนะแพทริค มาดายัก?",
    "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_en": "What was the result of the fight when Tetsuji Kato's record was 19-9?",
    "question_th": "ผลการชกเมื่อสถิติของ เท็ตสึจิ คาโตะ อยู่ที่ 19-9 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_73 (res VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(reception) FROM table_name_12 WHERE long < 7",
    "question_en": "How many receptions were smaller than 7?",
    "question_th": "มีกี่การต้อนรับที่น้อยกว่า 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_en": "What is the average yards for Jimmie Giles in a game larger than 15 and reception larger than 2?",
    "question_th": "ระยะเฉลี่ยของ Jimmie Giles ในเกมที่มากกว่า 15 และการรับที่มากกว่า 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_en": "What year had a league position of 8/12?",
    "question_th": "ปีไหนมีอันดับในลีก 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_en": "What league has a position of 8/13?",
    "question_th": "ลีกใดมีตำแหน่ง 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_en": "What year did the malaysia premier league get a position of 8/12?",
    "question_th": "พรีเมียร์ลีกมาเลเซียได้อันดับ 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_en": "What year had a cup position of round 1 and a league position of 5/12?",
    "question_th": "ปีไหนได้ตำแหน่งบอลถ้วยรอบ 1 และตำแหน่งในลีก 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_en": "What year had a domestic cup of singapore cup?",
    "question_th": "ถ้วยสิงคโปร์ในประเทศปีไหน?",
    "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_en": "How many Laps have Rider of olivier jacque, and a Grid larger than 7?",
    "question_th": "มี Rider of olivier jacque กี่รอบและมีกริดที่ใหญ่กว่า 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_en": "Which Laps have a Manufacturer of suzuki, and a Grid smaller than 16?",
    "question_th": "Laps ใดที่มีผู้ผลิต suzuki และ Grid เล็กกว่า 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_en": "How many Laps have a Grid larger than 9, and a Time/Retired of +32.354?",
    "question_th": "มีกี่รอบที่มีตารางที่ใหญ่กว่า 9 และเวลา/เกษียณที่ +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_en": "What is Record, when Date is Oct 19?",
    "question_th": "Record คืออะไร เมื่อเป็นวันที่ 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_en": "What is Attendance, when Opponent is Montreal Alouettes, and when Date is Oct 4?",
    "question_th": "ผู้เข้าร่วมคืออะไร เมื่อฝ่ายตรงข้ามคือ Montreal Alouettes และวันที่คือ 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_en": "What is Opponent, when Result is Win, and when Date is Aug 7?",
    "question_th": "คู่ต่อสู้คืออะไร เมื่อผลลัพธ์คือชนะ และวันที่คือ 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_en": "what is the date when the score is 115-93?",
    "question_th": "คะแนน 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_en": "what is the average crowd when the away team is new zealand breakers and the venue is cairns convention centre?",
    "question_th": "ฝูงชนโดยเฉลี่ยคือเท่าไรเมื่อทีมเยือนเป็นทีมนิวซีแลนด์ และสถานที่จัดงานคือศูนย์การประชุมที่เมืองแครนส์",
    "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_en": "how many times is the home team wollongong hawks?",
    "question_th": "เจ้าบ้านวูลองกองฮอกส์กี่ครั้ง?",
    "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_en": "what is the date when the venue is gold coast convention centre?",
    "question_th": "สถานที่จัดงานเป็นศูนย์การประชุมโกลด์โคสต์คือวันที่เท่าไหร่?",
    "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_en": "Which Score has Points smaller than 67, and a Home of calgary flames?",
    "question_th": "คะแนนใดมีคะแนนน้อยกว่า 67 และบ้านแห่งเปลวไฟคาลการี",
    "context": "CREATE TABLE table_name_45 (score VARCHAR, points VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_33 WHERE score = \"4–2\"",
    "question_en": "Whic Date has a Score of 4–2?",
    "question_th": "วันไหนมีคะแนน 4–2?",
    "context": "CREATE TABLE table_name_33 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT decision FROM table_name_53 WHERE record = \"29–18–6\"",
    "question_en": "Which Decision has a Record of 29–18–6?",
    "question_th": "การตัดสินใจใดมีบันทึก 29–18–6",
    "context": "CREATE TABLE table_name_53 (decision VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_14 WHERE score = \"4–2\"",
    "question_en": "Which Date has a Score of 4–2?",
    "question_th": "วันไหนมีคะแนน 4–2?",
    "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_en": "How many losses did the coach who served under 1 season and in 1975 have?",
    "question_th": "โค้ชที่ทำหน้าที่ต่ำกว่า 1 ฤดูกาลและในปี 1975 แพ้ไปกี่ครั้ง?",
    "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_en": "What is the number of seasons coached by Kathy Graham?",
    "question_th": "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_en": "What is the result on September 25, 1966?",
    "question_th": "ผลวันที่ 25 กันยายน 2509 เป็นอย่างไร?",
    "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_en": "What is the attendance of the game on November 20, 1966 after week 10?",
    "question_th": "การเข้าร่วมของเกมในวันที่ 20 พฤศจิกายน พ.ศ. 2509 หลังจากสัปดาห์ที่ 10 คืออะไร?",
    "context": "CREATE TABLE table_name_54 (attendance VARCHAR, week VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_73 WHERE week = 2",
    "question_en": "Who is the opponent on week 2?",
    "question_th": "คู่ต่อสู้ในสัปดาห์ที่ 2 คือใคร?",
    "context": "CREATE TABLE table_name_73 (opponent VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_88 WHERE date = \"november 20, 1966\"",
    "question_en": "Who is the opponent on November 20, 1966?",
    "question_th": "คู่ต่อสู้วันที่ 20 พฤศจิกายน 2509 คือใคร?",
    "context": "CREATE TABLE table_name_88 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(attendance) FROM table_name_59 WHERE home = \"ny islanders\"",
    "question_en": "What is the attendance of the game with the NY Islanders as home team?",
    "question_th": "การเข้าร่วมเกมกับ NY Islanders เป็นทีมเหย้าเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_59 (attendance VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_52 WHERE opponent = \"seattle\"",
    "question_en": "What was the date of the game against seattle?",
    "question_th": "เกมกับซีแอตเทิลวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_52 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_82 WHERE game = 30",
    "question_en": "Who were the opponents during game 30?",
    "question_th": "ใครคือคู่ต่อสู้ในเกมที่ 30?",
    "context": "CREATE TABLE table_name_82 (opponent VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_52 WHERE score = \"78-59\"",
    "question_en": "What was the record during the game with a score of 78-59?",
    "question_th": "สถิติระหว่างเกมเป็นอย่างไรบ้างด้วยสกอร์ 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_en": "Which mlb team is located in maryland?",
    "question_th": "ทีม mlb ใดอยู่ในแมริแลนด์?",
    "context": "CREATE TABLE table_name_95 (team VARCHAR, state_province VARCHAR, league VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_5 WHERE city = \"brooklyn\"",
    "question_en": "What team is located in brooklyn?",
    "question_th": "ทีมใดอยู่ในบรูคลิน?",
    "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_en": "In what year was the cfl team in edmonton, alberta established?",
    "question_th": "ทีม cfl ในเมืองเอดมันตัน รัฐอัลเบอร์ตาก่อตั้งขึ้นเมื่อปีใด",
    "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_en": "In what year was the NFL team in chicago illinois established?",
    "question_th": "ทีม NFL ในเมืองชิคาโก อิลลินอยส์ ก่อตั้งขึ้นเมื่อปีใด",
    "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_en": "Which team is located in missouri and was established in 1963?",
    "question_th": "ทีมใดตั้งอยู่ในรัฐมิสซูรีและก่อตั้งเมื่อปี พ.ศ. 2506",
    "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_en": "Which event was Ye Shiwen in?",
    "question_th": "เย่ ชิเหวิน อยู่ในงานใด?",
    "context": "CREATE TABLE table_name_23 (event VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_39 WHERE time = \"26.11\"",
    "question_en": "Who had a time of 26.11?",
    "question_th": "ใครมีเวลา 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_en": "What was the date in which the time was 2:16.08?",
    "question_th": "วันที่เท่าไหร่คือ 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_en": "Who was in the women's 200m medley?",
    "question_th": "ใครอยู่ในการแข่งขันวิ่ง 200 ม. หญิง?",
    "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_en": "What was the nationality of the swimmer in the semifinal with a time of 29.51?",
    "question_th": "นักว่ายน้ำสัญชาติอะไรในรอบรองชนะเลิศด้วยเวลา 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_en": "What country scored 67?",
    "question_th": "ประเทศใดได้คะแนน 67?",
    "context": "CREATE TABLE table_name_76 (country VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_7 WHERE player = \"tino schuster\"",
    "question_en": "What was the to par for Tino Schuster?",
    "question_th": "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_en": "What country has player Scott Verplank?",
    "question_th": "Scott Verplank มีผู้เล่นประเทศใดบ้าง?",
    "context": "CREATE TABLE table_name_64 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_11 WHERE e_coli = \"muty\"",
    "question_en": "What is the type of glycosylase that has an E. coli of Muty?",
    "question_th": "ไกลโคซิเลสชนิดใดที่มีเชื้อ E. coli ของ Muty คืออะไร?",
    "context": "CREATE TABLE table_name_11 (type VARCHAR, e_coli VARCHAR)"
  },
  {
    "answer": "SELECT e_coli FROM table_name_78 WHERE human = \"hneil1\"",
    "question_en": "Which E. coli has a human value of HNEIL1?",
    "question_th": "E. coli ใดมีคุณค่าของมนุษย์เท่ากับ HNEIL1",
    "context": "CREATE TABLE table_name_78 (e_coli VARCHAR, human VARCHAR)"
  },
  {
    "answer": "SELECT e_coli FROM table_name_22 WHERE substrates = \"uracil\"",
    "question_en": "Which E. coli has a substrate of uracil?",
    "question_th": "E. coli ในข้อใดมีสารตั้งต้นเป็นยูราซิล",
    "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_en": "The tko (doctor stoppage) method was used in a loss against which opponent?",
    "question_th": "มีการใช้วิธี tko (การหยุดหมอ) ในการแพ้คู่ต่อสู้คนใด?",
    "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_en": "How many total rounds used the submission (choke) method?",
    "question_th": "ใช้วิธีซับมิชชัน (โช๊ค) ทั้งหมดกี่รอบ?",
    "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_en": "What was the time of the match with a record of 9-0 and used the tko (doctor stoppage) method?",
    "question_th": "แมตช์เวลาไหนด้วยสกอร์ 9-0 และใช้วิธี tko (หมอหยุด)?",
    "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_en": "What was the lowest round number at the UFC 16 event with a record of 19-1-1?",
    "question_th": "หมายเลขรอบต่ำสุดในงาน UFC 16 ด้วยสถิติ 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_en": "What was the highest number of oppenents points recorded for game 9 when the attendance was less than 60,091?",
    "question_th": "จำนวนคะแนนฝ่ายตรงข้ามสูงสุดที่บันทึกไว้ในเกมที่ 9 โดยมีผู้เข้าร่วมน้อยกว่า 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_en": "What event did tedd williams fight bill parker?",
    "question_th": "เหตุการณ์ใดที่ tedd williams ต่อสู้กับ Bill parker?",
    "context": "CREATE TABLE table_name_94 (event VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_10 WHERE opponent = \"travis fulton\"",
    "question_en": "What round did the fight against travis fulton last?",
    "question_th": "การชกกับ Travis Fulton ในรอบใด?",
    "context": "CREATE TABLE table_name_10 (round VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(pick__number) FROM table_name_72 WHERE player = \"scott deibert\"",
    "question_en": "How many times is the player scott deibert?",
    "question_th": "นักเตะ สกอตต์ เดเบิร์ต กี่ครั้งแล้ว?",
    "context": "CREATE TABLE table_name_72 (pick__number VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT pick__number FROM table_name_68 WHERE player = \"william loftus\"",
    "question_en": "what is the pick # for william loftus?",
    "question_th": "ตัวเลือก # สำหรับวิลเลียม ลอฟตัสคืออะไร?",
    "context": "CREATE TABLE table_name_68 (pick__number VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT cfl_team FROM table_name_68 WHERE position = \"d\"",
    "question_en": "what is the cfl team for position d?",
    "question_th": "ทีม cfl สำหรับตำแหน่ง 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_en": "what was the total for the Wolverhampton Wanderers?",
    "question_th": "วูล์ฟแฮมป์ตัน วันเดอเรอร์ส มีผลรวมเท่าไร?",
    "context": "CREATE TABLE table_name_61 (league_goals VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_42 WHERE result = \"l 20-17\"",
    "question_en": "How many were in attendance when the result was l 20-17?",
    "question_th": "มีผู้เข้าร่วมกี่คนเมื่อผลการแข่งขันคือ 20-17 ปี?",
    "context": "CREATE TABLE table_name_42 (attendance VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT third_vice_skip FROM table_name_13 WHERE second = \"éric sylvain\"",
    "question_en": "Which Third/Vice skip has a Second of éric sylvain?",
    "question_th": "การข้าม Third/Vice ใดที่มีวินาทีของ éric 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_en": "Which Lead has a Skip of mike mcewen?",
    "question_th": "ลีดคนไหนมีท่าข้ามของไมค์ แมคเวน?",
    "context": "CREATE TABLE table_name_73 (lead VARCHAR, skip VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_52 WHERE lead = \"steve gould\"",
    "question_en": "Which City has a Lead of steve gould?",
    "question_th": "เมืองใดมีผู้นำของสตีฟ กูลด์?",
    "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_en": "Which Lead has a City of winnipeg, and a Third/Vice skip of kevin park?",
    "question_th": "Lead คนไหนมีเมืองวินนิเพก และมีเควินพาร์คเป็นรองคนที่สาม",
    "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_en": "Which City has a Lead of tyler forrest?",
    "question_th": "เมืองใดมีผู้นำของไทเลอร์ ฟอเรสต์?",
    "context": "CREATE TABLE table_name_95 (city VARCHAR, lead VARCHAR)"
  },
  {
    "answer": "SELECT lead FROM table_name_95 WHERE skip = \"ted appelman\"",
    "question_en": "Which Lead has a Skip of ted appelman?",
    "question_th": "Lead คนไหนมี Skip ของ ted appelman?",
    "context": "CREATE TABLE table_name_95 (lead VARCHAR, skip VARCHAR)"
  },
  {
    "answer": "SELECT album FROM table_name_66 WHERE number = 10",
    "question_en": "Which album is #10?",
    "question_th": "อัลบั้มอะไร #10?",
    "context": "CREATE TABLE table_name_66 (album VARCHAR, number VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_21 WHERE player = \"ben hogan\"",
    "question_en": "What is Ben Hogan's Place?",
    "question_th": "สถานที่ของเบน โฮแกนคืออะไร?",
    "context": "CREATE TABLE table_name_21 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_74 WHERE player = \"jerry barber\"",
    "question_en": "What is Jerry Barber's To par?",
    "question_th": "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_en": "What is the Score of T2 Place Player Dow Finsterwald?",
    "question_th": "คะแนนของผู้เล่นอันดับ T2 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_en": "What's the to par of the United States with the score of 71-71=142?",
    "question_th": "พาร์ของสหรัฐอเมริกาด้วยคะแนน 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_en": "What place had a score of 71-70=141?",
    "question_th": "สถานที่ใดมีคะแนน 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_en": "Which player had a score of 72-69=141?",
    "question_th": "ผู้เล่นคนไหนมีคะแนน 72-69=141?",
    "context": "CREATE TABLE table_name_75 (player VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_69 WHERE place = \"t7\"",
    "question_en": "What is the score of T7 place?",
    "question_th": "อันดับ T7 ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_69 (score VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_49 WHERE player = \"ben hogan\"",
    "question_en": "What place is Ben Hogan?",
    "question_th": "เบ็น โฮแกนอยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_49 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_46 WHERE to_par = \"e\"",
    "question_en": "What place has a to par of E?",
    "question_th": "จุดไหนมีพาร์ของ 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_en": "What pick was J.D. Hill?",
    "question_th": "JD 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_en": "What pick was used to select a Defensive End in round 8?",
    "question_th": "ตัวเลือกใดที่ใช้ในการเลือก Defensive End ในรอบ 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_en": "which winner has a jockery containing jerry bailey and the owner of overbrook farm?",
    "question_th": "ผู้ชนะคนไหนมีการแข่งขันที่ประกอบด้วยเจอร์รี่ เบลีย์และเจ้าของฟาร์มโอเวอร์บรุค",
    "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_en": "What time contains the owner of maine chance farm?",
    "question_th": "เจ้าของฟาร์มโอกาสเมนเมนกี่โมง?",
    "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_en": "Which time contains the jockery of isaac murphy as well as the winner of kingman?",
    "question_th": "เวลาใดที่มีการล้อเลียนของไอแซค เมอร์ฟีย์และผู้ชนะจากคิงแมน?",
    "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_en": "Which owner has the time of 2:02.20 and the year of 1957?",
    "question_th": "เจ้าของคนไหนมีเวลา 2:02.20 และปี 2500",
    "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_en": "Which owner has the time 2:03.00 and the year of 1991 kd?",
    "question_th": "เจ้าของคนไหนมีเวลา 2:03.00 และปี 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_en": "What is the sum of the number played with more than 5 losses, more than 1 draw, and a position under 8?",
    "question_th": "ผลรวมของตัวเลขที่เล่นโดยแพ้มากกว่า 5 ครั้ง เสมอมากกว่า 1 ครั้ง และตำแหน่งต่ำกว่า 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_en": "What is the average number of points with less than 1 draw and more than 11 losses for Ev Aich?",
    "question_th": "จำนวนคะแนนเฉลี่ยที่เสมอน้อยกว่า 1 ครั้งและแพ้มากกว่า 11 ครั้งสำหรับ 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_en": "What is the sum of points for a position over 5 with more than 2 draws?",
    "question_th": "ผลรวมของคะแนนสำหรับตำแหน่งที่มากกว่า 5 และเสมอมากกว่า 2 ครั้งเป็นเท่าใด?",
    "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_en": "Which nation won no bronze medals and a 1 medal total?",
    "question_th": "ประเทศใดไม่ได้เหรียญทองแดงและได้ทั้งหมด 1 เหรียญ?",
    "context": "CREATE TABLE table_name_54 (nation VARCHAR, total VARCHAR, bronze VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_32 WHERE week = 4",
    "question_en": "What was the result of the game in week 4?",
    "question_th": "ผลการแข่งขันในสัปดาห์ที่ 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_en": "What party has more than 241,310 inhabitants after 2012?",
    "question_th": "พรรคใดมีประชากรมากกว่า 241,310 คนหลังจากปี 2555",
    "context": "CREATE TABLE table_name_20 (party VARCHAR, election VARCHAR, inhabitants VARCHAR)"
  },
  {
    "answer": "SELECT MAX(inhabitants) FROM table_name_86 WHERE municipality = \"gela\"",
    "question_en": "Highest inhabitants from gela?",
    "question_th": "ประชากรสูงสุดจากเจลา?",
    "context": "CREATE TABLE table_name_86 (inhabitants INTEGER, municipality VARCHAR)"
  },
  {
    "answer": "SELECT AVG(casualties) FROM table_name_5 WHERE number = \"u-844\"",
    "question_en": "What is the average number of casualties for the convoy with a number of U-844?",
    "question_th": "จำนวนผู้เสียชีวิตโดยเฉลี่ยของขบวนรถที่มีจำนวน U-844 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_5 (casualties INTEGER, number VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_9 WHERE opponent = \"ilija bozoljac\"",
    "question_en": "On what Surface was the match against Ilija Bozoljac played?",
    "question_th": "การแข่งขันกับ Ilija Bozoljac เล่นกับ Surface ในรายการใด",
    "context": "CREATE TABLE table_name_9 (surface VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_63 WHERE opponent = \"daniel elsner\"",
    "question_en": "What Tournament was against Daniel Elsner?",
    "question_th": "การแข่งขันใดที่พบกับ Daniel Elsner?",
    "context": "CREATE TABLE table_name_63 (tournament VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_72 WHERE score = \"3–6, 7–6(6), 5–7\"",
    "question_en": "What is the Date of the Tournament with a Score of 3–6, 7–6(6), 5–7?",
    "question_th": "วันที่จัดการแข่งขันด้วยคะแนน 3–6, 7–6(6), 5–7 คืออะไร?",
    "context": "CREATE TABLE table_name_72 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_57 WHERE score = \"4–6, 4–6\" AND tournament = \"banja luka\"",
    "question_en": "What is the Opponent of the Banja Luka Tournament with a Score of 4–6, 4–6?",
    "question_th": "ฝ่ายตรงข้ามของการแข่งขัน Banja Luka คืออะไรด้วยคะแนน 4–6, 4–6?",
    "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_en": "On what date was the record set with a time of 1:07.18?",
    "question_th": "บันทึกนี้ตั้งไว้ ณ วันที่ใด เวลา 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_en": "On what date was a record set in the team pursuit (8 laps) event?",
    "question_th": "มีการบันทึกสถิติในการแข่งขันทีม (8 รอบ) ในวันที่ใด?",
    "context": "CREATE TABLE table_name_75 (date VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT nation FROM table_name_23 WHERE event = \"1000 metres\"",
    "question_en": "What nation did the speed skater that set a record in the 1000 metres event represent?",
    "question_th": "นักสเก็ตความเร็วที่สร้างสถิติในการแข่งขัน 1,000 เมตรเป็นตัวแทนของประเทศใด",
    "context": "CREATE TABLE table_name_23 (nation VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_5 WHERE event = \"team pursuit (8 laps)\"",
    "question_en": "What was the record setting time in the team pursuit (8 laps) event?",
    "question_th": "เวลาที่สร้างสถิติในการแข่งขันทีม (8 รอบ) คืออะไร?",
    "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_en": "What is the total for the draw with 0 points, and less than 14 lost?",
    "question_th": "รวมแล้วเสมอ 0 แต้ม แพ้ไม่ถึง 14 เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_15 (draw INTEGER, points VARCHAR, lost VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_47 WHERE team = \"@ new orleans\"",
    "question_en": "What date has @ new orleans as the team?",
    "question_th": "@นิวออร์ลีนส์เป็นทีมวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_47 (date VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT SUM(game) FROM table_name_84 WHERE opponent = \"boston bruins\"",
    "question_en": "What is the sum of the game with the boston bruins as the opponent?",
    "question_th": "ผลรวมของเกมที่มีบอสตัน บรูอินส์ เป็นคู่ต่อสู้เป็นเท่าไหร่?",
    "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_en": "What is the total number of games at Toronto with less than 31 points?",
    "question_th": "จำนวนเกมทั้งหมดที่โตรอนโตที่มีคะแนนน้อยกว่า 31 แต้มคือเท่าใด",
    "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_en": "What years did jersey number 55 play?",
    "question_th": "เสื้อเบอร์ 55 เล่นปีไหนครับ?",
    "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_en": "Before 2007, what was the avg start that had a pole of 0 and in 65th position?",
    "question_th": "ก่อนปี 2550 การออกสตาร์ทเฉลี่ยที่มีโพล 0 และอยู่ในอันดับที่ 65 เป็นเท่าใด",
    "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_en": "How many starts had an avg start of less than 37 and won $1,636,827?",
    "question_th": "มีการออกสตาร์ทกี่ครั้งโดยเฉลี่ยน้อยกว่า 37 และชนะรางวัล 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_en": "in 1990, how many wins had an avg finish of 35 and a start less than 1?",
    "question_th": "ในปี 1990 มีชัยชนะกี่ครั้งโดยจบเฉลี่ย 35 และการออกสตาร์ทน้อยกว่า 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_en": "What year had a pole smaller than 0 and in 77th position?",
    "question_th": "ปีใดมีเสาเล็กกว่า 0 และอยู่ในตำแหน่งที่ 77?",
    "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_en": "in 2007, what is the avg finish that had a start less than 1?",
    "question_th": "ในปี 2550 ค่าจบเฉลี่ยที่ออกสตาร์ทน้อยกว่า 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_en": "What is Score, when Game is greater than 4?",
    "question_th": "Score คืออะไร เมื่อเกมมีค่ามากกว่า 4?",
    "context": "CREATE TABLE table_name_1 (score VARCHAR, game INTEGER)"
  },
  {
    "answer": "SELECT high_points FROM table_name_81 WHERE game = 3",
    "question_en": "What is High Points, when Game is \"3\"?",
    "question_th": "High Points คืออะไร เมื่อเกมเป็น \"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_en": "What is Score, when Location Attendance is \"Madison Square Garden Unknown\", and when High Rebounds is \"Sidney Green (10)\"?",
    "question_th": "คะแนนคืออะไร เมื่อการเข้าร่วมสถานที่คือ \"ไม่ทราบ Madison Square Garden\" และเมื่อการรีบาวด์สูงคือ \"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_en": "What is High Rebounds, when Location Attendance is \"Madison Square Garden Unknown\", and when Date is \"May 18\"?",
    "question_th": "High Rebounds คืออะไร เมื่อการเข้าร่วมสถานที่คือ \"ไม่ทราบ Madison Square Garden\" และวันที่คือ \"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_en": "What is Team, when Location Attendance is \"Madison Square Garden Unknown\", and when High Points is \"Alonzo Mourning (24)\"?",
    "question_th": "ทีมคืออะไร เมื่อการเข้าร่วมสถานที่คือ \"ไม่ทราบ Madison Square Garden\" และเมื่อคะแนนสูงคือ \"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_en": "What is High Points, when High Rebounds is \"Ron Artest (9)\"?",
    "question_th": "High Points คืออะไร เมื่อ High Rebounds คือ \"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_en": "What is Date, when High Rebounds is \"Yao Ming (10)\"?",
    "question_th": "วันที่เท่าไหร่เมื่อรีบาวด์สูงคือ \"เหยาหมิง (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_en": "What is Score, when High Points is \"Luis Scola (18)\", and when High Rebounds is \"Luis Scola (11)\"?",
    "question_th": "คะแนนคืออะไร เมื่อคะแนนสูงคือ \"หลุยส์ สโคลา (18)\" และเมื่อรีบาวด์สูงคือ \"หลุยส์ สโคลา (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_en": "What is Team, when High Points is \"Tracy McGrady (24)\"?",
    "question_th": "ทีมคืออะไร เมื่อคะแนนสูงคือ \"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_en": "What is the record for the opponent Atlanta Hawks?",
    "question_th": "สถิติของคู่ต่อสู้ แอตแลนต้า ฮอว์กส์ คืออะไร?",
    "context": "CREATE TABLE table_name_9 (record VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_52 WHERE score = \"113-124\"",
    "question_en": "Which opponent had a 113-124 score?",
    "question_th": "คู่ต่อสู้คนไหนมีสกอร์ 113-124?",
    "context": "CREATE TABLE table_name_52 (opponent VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_58 WHERE opponent = \"philadelphia 76ers\"",
    "question_en": "What is the final record for the Philadelphia 76ers?",
    "question_th": "สถิติสุดท้ายของ 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_en": "What is the record for the Detroit Pistons on March 7?",
    "question_th": "สถิติของดีทรอยต์ พิสตันส์ในวันที่ 7 มีนาคมเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_82 (record VARCHAR, opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_98 WHERE position = \"wr\"",
    "question_en": "What is the WR player?",
    "question_th": "เครื่องเล่น WR คืออะไร?",
    "context": "CREATE TABLE table_name_98 (player VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT length__m_ FROM table_name_46 WHERE name = \"koppenberg\"",
    "question_en": "What is the Length (m) of the Koppenberg course?",
    "question_th": "ความยาว (m) ของหลักสูตร Koppenberg คืออะไร?",
    "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_en": "What is the Kilometer of the Berendries asphalt course with an Average climb less than 7 and Length (m) longer than 645?",
    "question_th": "สนามยางมะตอย Kilometer of the Berendries คืออะไรโดยมีการไต่ระดับเฉลี่ยน้อยกว่า 7 และความยาว (ม.) มากกว่า 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_en": "What is the Number of the Koppenberg course with less than 195 Kilometers?",
    "question_th": "หลักสูตร Number of the Koppenberg ที่วิ่งน้อยกว่า 195 กิโลเมตร คือข้อใด",
    "context": "CREATE TABLE table_name_28 (number VARCHAR, name VARCHAR, kilometer VARCHAR)"
  },
  {
    "answer": "SELECT part_3 FROM table_name_4 WHERE class = \"4\"",
    "question_en": "Which part three is class 4?",
    "question_th": "ภาค 3 ไหนเป็นคลาส 4 ครับ?",
    "context": "CREATE TABLE table_name_4 (part_3 VARCHAR, class VARCHAR)"
  },
  {
    "answer": "SELECT part_1 FROM table_name_36 WHERE class = \"7d\"",
    "question_en": "Which part one is class 7d?",
    "question_th": "ส่วนใดเป็นคลาส 7d?",
    "context": "CREATE TABLE table_name_36 (part_1 VARCHAR, class VARCHAR)"
  },
  {
    "answer": "SELECT part_3 FROM table_name_97 WHERE class = \"7b\"",
    "question_en": "Which part 3 has class 7b?",
    "question_th": "ส่วนใด 3 มีคลาส 7b?",
    "context": "CREATE TABLE table_name_97 (part_3 VARCHAR, class VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_name_14 WHERE part_2 = \"halp warþ\"",
    "question_en": "Which class has a part 2 of halp warþ?",
    "question_th": "คลาสไหนมี halp warþ ภาค 2 บ้างคะ?",
    "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_en": "Which part 2 has a verb that means to leap?",
    "question_th": "ภาค 2 มีคำกริยา แปลว่า กระโดด ?",
    "context": "CREATE TABLE table_name_70 (part_2 VARCHAR, verb_meaning VARCHAR)"
  },
  {
    "answer": "SELECT semifinalists FROM table_name_58 WHERE tournament = \"cincinnati\"",
    "question_en": "Who are the semifinalists when the tournament is in Cincinnati?",
    "question_th": "ใครคือผู้เข้ารอบรองชนะเลิศเมื่อทัวร์นาเมนต์จัดขึ้นที่ซินซินแนติ?",
    "context": "CREATE TABLE table_name_58 (semifinalists VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT finalist FROM table_name_91 WHERE week = \"march 12\"",
    "question_en": "What is the finalist in the week of March 12?",
    "question_th": "ผู้เข้ารอบสุดท้ายในสัปดาห์วันที่ 12 มีนาคมคืออะไร?",
    "context": "CREATE TABLE table_name_91 (finalist VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT finalist FROM table_name_14 WHERE week = \"may 7\"",
    "question_en": "What is the May 7 finalist?",
    "question_th": "ผู้เข้ารอบสุดท้ายวันที่ 7 พฤษภาคมคืออะไร?",
    "context": "CREATE TABLE table_name_14 (finalist VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT finalist FROM table_name_26 WHERE week = \"august 6\"",
    "question_en": "For the week of August 6, who is the finalist?",
    "question_th": "สำหรับสัปดาห์ที่ 6 สิงหาคม ใครคือผู้เข้ารอบสุดท้าย?",
    "context": "CREATE TABLE table_name_26 (finalist VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT MIN(pick__number) FROM table_name_98 WHERE college = \"jackson state\"",
    "question_en": "What is the lowest Pick #, when College is \"Jackson State\"?",
    "question_th": "ตัวเลือกต่ำสุด # คืออะไรเมื่อวิทยาลัยคือ \"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_en": "What is Pick #, when Round is \"10\"?",
    "question_th": "Pick # คืออะไร เมื่อรอบคือ \"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_en": "What is Player, when Round is greater than 8, when Pick # is greater than 234, and when College is \"Louisville\"?",
    "question_th": "ผู้เล่นคืออะไร เมื่อ Round มากกว่า 8 เมื่อ Pick # มากกว่า 234 และเมื่อ College คือ \"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_en": "What is the average Round, when Player is \"Gurnest Brown\", and when Pick # is greater than 180?",
    "question_th": "อะไรคือรอบเฉลี่ย เมื่อผู้เล่นคือ \"Gernest Brown\" และเมื่อ Pick # มากกว่า 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_en": "What is the lowest Pick #, when College is \"Louisville\", and when Round is less than 10?",
    "question_th": "อะไรคือตัวเลือกต่ำสุด เมื่อวิทยาลัยคือ \"หลุยส์วิลล์\" และเมื่อรอบน้อยกว่า 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_en": "Which Class has a Frequency MHz larger than 91.7, and a Call sign of k272ec?",
    "question_th": "คลาสใดมีความถี่ MHz มากกว่า 91.7 และมีสัญญาณเรียกขานเป็น 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_en": "Which Frequency MHz has a Call sign of k210dv?",
    "question_th": "ความถี่ MHz ใดมีสัญญาณเรียกขานเป็น 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_en": "Which City of license has a Frequency MHz larger than 89.5, and a Call sign of k213el?",
    "question_th": "เมืองที่ได้รับอนุญาตใดมีความถี่ MHz มากกว่า 89.5 และมีสัญญาณเรียกขานเป็น 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_en": "Which ERP W has a Frequency MHz larger than 89.1, and a City of license of de queen, arkansas?",
    "question_th": "ERP W ใดที่มีความถี่ MHz มากกว่า 89.1 และเมืองที่ได้รับใบอนุญาตจาก 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_en": "Which FCC info has a City of license of burley, idaho, and a Frequency MHz of 89.5?",
    "question_th": "ข้อมูล FCC ใดมีเมืองที่ได้รับอนุญาตของ Burley, Idaho และความถี่ MHz 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_en": "For the game played on 31 July 2007 on clay what was the score?",
    "question_th": "ในเกมที่เล่นเมื่อวันที่ 31 กรกฎาคม 2550 บนดินเหนียว ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_42 (score VARCHAR, surface VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_38 WHERE opponent = \"pablo andújar\"",
    "question_en": "When was Pablo Andújar the opponent?",
    "question_th": "ปาโบล อันดูคาร์ เป็นคู่แข่งเมื่อใด?",
    "context": "CREATE TABLE table_name_38 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT decision FROM table_name_20 WHERE visitor = \"buffalo\"",
    "question_en": "What is the decision when Buffalo was the visitor?",
    "question_th": "การตัดสินใจเมื่อบัฟฟาโลเป็นผู้มาเยือนคืออะไร?",
    "context": "CREATE TABLE table_name_20 (decision VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_67 WHERE home = \"minnesota\"",
    "question_en": "Who is the visiting team when Minnesota is the home team?",
    "question_th": "ทีมเยือนคือใครเมื่อมินนิโซตาเป็นเจ้าบ้าน?",
    "context": "CREATE TABLE table_name_67 (visitor VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_75 WHERE home = \"phoenix\"",
    "question_en": "What is the date of the match when Phoenix is the home team?",
    "question_th": "แข่งขันวันไหนที่ฟีนิกซ์เป็นเจ้าบ้าน?",
    "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_en": "Who is the quarterback for Arkansas State?",
    "question_th": "ใครคือกองหลังของรัฐอาร์คันซอ?",
    "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_en": "What is the total round of the 129 pick?",
    "question_th": "ผลรวมของการคัดเลือก 129 รอบคือเท่าไร?",
    "context": "CREATE TABLE table_name_49 (round VARCHAR, pick__number VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_37 WHERE date = \"january 19\"",
    "question_en": "What is the record for January 19?",
    "question_th": "บันทึกประจำวันที่ 19 มกราคม เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_37 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_75 WHERE score = \"111-89\"",
    "question_en": "What record has the score 111-89?",
    "question_th": "สถิติไหนมีคะแนน 111-89 ?",
    "context": "CREATE TABLE table_name_75 (record VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_21 WHERE date = \"january 7\"",
    "question_en": "What is the record for January 7?",
    "question_th": "บันทึกประจำวันที่ 7 มกราคม คืออะไร?",
    "context": "CREATE TABLE table_name_21 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_36 WHERE date = \"january 7\"",
    "question_en": "Who was the opponent on January 7?",
    "question_th": "คู่ต่อสู้ในวันที่ 7 มกราคมคือใคร?",
    "context": "CREATE TABLE table_name_36 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_60 WHERE score = \"102-87\"",
    "question_en": "What home team scored 102-87?",
    "question_th": "ทีมเจ้าบ้านใดทำคะแนนได้ 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_en": "What venue had a Score of 120-108?",
    "question_th": "สถานที่ใดมีคะแนน 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_en": "What was the score when Sydney Spirit was the home team?",
    "question_th": "เมื่อซิดนีย์ สปิริตเป็นเจ้าบ้านสกอร์เท่าไหร่?",
    "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_en": "What was the score at North Shore Events Centre?",
    "question_th": "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_en": "What is the home team venue for the New Zealand Breakers?",
    "question_th": "สนามเหย้าของทีม 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_en": "Who had the decision when the visitor was Detroit and the home team was Ottawa?",
    "question_th": "ใครเป็นคนตัดสินใจเมื่อผู้มาเยือนคือดีทรอยต์และเจ้าบ้านคือออตตาวา?",
    "context": "CREATE TABLE table_name_71 (decision VARCHAR, visitor VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_97 WHERE date = \"march 18\"",
    "question_en": "What is the score on March 18?",
    "question_th": "คะแนนวันที่ 18 มีนาคม เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_97 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_name_61 WHERE date = \"march 27\"",
    "question_en": "Who had the highest points on March 27?",
    "question_th": "ใครมีคะแนนสูงสุดในวันที่ 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_en": "Name the average Lead Margin on  november 13-november 19, 2007?",
    "question_th": "ตั้งชื่อ Lead Margin เฉลี่ยในวันที่ 13 พฤศจิกายน - 19 พฤศจิกายน 2550 หรือไม่",
    "context": "CREATE TABLE table_name_86 (lead_margin INTEGER, dates_administered VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(attendance) FROM table_name_66 WHERE week = 15",
    "question_en": "For week 15, what was the total number of attendance recorded?",
    "question_th": "สัปดาห์ที่ 15 มีการบันทึกจำนวนผู้เข้าร่วมทั้งหมดเป็นเท่าใด",
    "context": "CREATE TABLE table_name_66 (attendance VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_66 WHERE home_team = \"king's lynn\"",
    "question_en": "what is the score when the home team is king's lynn?",
    "question_th": "เมื่อเจ้าบ้านเป็นคิงลินน์สกอร์เท่าไหร่?",
    "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_en": "what is the home team when the away team is frickley colliery?",
    "question_th": "เจ้าบ้านจะเป็นอย่างไร เมื่อทีมเยือนเป็น ฟริคลีย์ คอลเลียรี?",
    "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_en": "what is the tie no, on 24 november 1971 and the away team is king's lynn?",
    "question_th": "งวดที่ 24 พฤศจิกายน 1971 คืออะไร และทีมเยือนคือ คิงส์ ลินน์?",
    "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_en": "What is the Longitude of the 61.0s Latitude?",
    "question_th": "ลองจิจูดของละติจูด 61.0 คืออะไร?",
    "context": "CREATE TABLE table_name_27 (longitude VARCHAR, latitude VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_6 WHERE longitude = \"213.0e\"",
    "question_en": "What name has a longitude of 213.0e?",
    "question_th": "ชื่ออะไรมีลองจิจูด 213.0e?",
    "context": "CREATE TABLE table_name_6 (name VARCHAR, longitude VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_57 WHERE manufacturer = \"unknown\"",
    "question_en": "Which type had an unknown manufacturer?",
    "question_th": "ประเภทใดมีผู้ผลิตที่ไม่รู้จัก",
    "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_en": "What is the name of the dreamworks experience from Ferrari?",
    "question_th": "ประสบการณ์ดรีมเวิร์คส์จากเฟอร์รารี่ชื่ออะไร?",
    "context": "CREATE TABLE table_name_30 (name VARCHAR, themed_area VARCHAR, manufacturer VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_12 WHERE opened = \"1982\"",
    "question_en": "Which type opened in 1982?",
    "question_th": "ประเภทใดที่เปิดในปี 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_en": "What themed area opened in 2010 as an animal show?",
    "question_th": "พื้นที่ธีมใดที่เปิดในปี 2010 เพื่อเป็นการแสดงสัตว์",
    "context": "CREATE TABLE table_name_35 (themed_area VARCHAR, type VARCHAR, opened VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_23 WHERE home = \"minnesota\"",
    "question_en": "Which visitor lives in Minnesota?",
    "question_th": "ผู้เข้าชมรายใดอาศัยอยู่ในมินนิโซตา",
    "context": "CREATE TABLE table_name_23 (visitor VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_2 WHERE date = \"november 21\"",
    "question_en": "What was the score on november 21?",
    "question_th": "คะแนนวันที่ 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_en": "Who has the lead in the season where Cathrine Norberg is second and Anna Rindeskog is third?",
    "question_th": "ใครเป็นผู้นำในฤดูกาลที่ Cathrine Norberg เป็นอันดับสองและ Anna Rindeskog เป็นอันดับสาม",
    "context": "CREATE TABLE table_name_70 (lead VARCHAR, second VARCHAR, third VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_96 WHERE game = 21",
    "question_en": "What is the score of game 21?",
    "question_th": "คะแนนของเกมที่ 21 คืออะไร?",
    "context": "CREATE TABLE table_name_96 (score VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_81 WHERE date = \"december 22\"",
    "question_en": "What is the score of the game on December 22?",
    "question_th": "สกอร์เกมวันที่ 22 ธันวาคม เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_81 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_65 WHERE game > 24",
    "question_en": "What is the record when the game is greater than 24?",
    "question_th": "สถิติเมื่อเกมมากกว่า 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_en": "What is the highest Market Value (billion $), when Rank is 02 2, and when Sales (billion $) is greater than 113.1?",
    "question_th": "มูลค่าตลาดสูงสุด (พันล้าน $) เมื่ออันดับคือ 02 2 และเมื่อยอดขาย (พันล้าน $) มากกว่า 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_en": "What is Rank, when Headquarters is United Kingdom, and when Sales (billion $) is 370.9?",
    "question_th": "อันดับคืออะไร เมื่อสำนักงานใหญ่คือสหราชอาณาจักร และเมื่อยอดขาย (พันล้านดอลลาร์) อยู่ที่ 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_en": "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?",
    "question_th": "กำไรต่ำสุด (พันล้าน $) คืออะไร เมื่อมูลค่าตลาด (พันล้าน $) น้อยกว่า 201.3 เมื่อสำนักงานใหญ่อยู่ที่สหรัฐอเมริกา และเมื่อบริษัทคือ 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_en": "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?",
    "question_th": "สถานะของชุมชนที่มีพื้นที่มากกว่า 5.2 ตารางกิโลเมตร และการจัดอันดับการสำรวจสำมะโนประชากร 2,531 จาก 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é\"",
    "question_en": "What is saint-andré's population?",
    "question_th": "ประชากรของแซงต์-อองเดรคือเท่าไร?",
    "context": "CREATE TABLE table_name_62 (population VARCHAR, official_name VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_57 WHERE week = 12",
    "question_en": "what's the results of week 12?",
    "question_th": "ผลลัพธ์ของสัปดาห์ที่ 12 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_57 (result VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_5 WHERE attendance = \"76,202\"",
    "question_en": "What opponent has 76,202 attendance ?",
    "question_th": "คู่แข่งคนไหนมีผู้ชม 76,202 คน ?",
    "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_en": "What is the FIS Nordic World Ski Championship years when the winter Olympics took place in 1968?",
    "question_th": "การแข่งขัน FIS Nordic World Ski Championship ปีใดที่โอลิมปิกฤดูหนาวจัดขึ้นในปี 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_en": "Which country has a FIS Nordic World Ski Championship before 1989, was in the winter Olympics before 1980, and has a Holmenkollen of 1956?",
    "question_th": "ประเทศใดที่มี FIS Nordic World Ski Championship ก่อนปี 1989 อยู่ในโอลิมปิกฤดูหนาวก่อนปี 1980 และมี Holmenkollen ในปี 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_en": "When the Grids is less than 2 what are the total laps?",
    "question_th": "เมื่อกริดน้อยกว่า 2 รอบทั้งหมดเป็นเท่าใด",
    "context": "CREATE TABLE table_name_87 (laps VARCHAR, grid INTEGER)"
  },
  {
    "answer": "SELECT player FROM table_name_93 WHERE to_par = \"–4\"",
    "question_en": "Which Player has a To par of –4?",
    "question_th": "ผู้เล่นคนไหนมีพาร์ถึง –4?",
    "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_en": "Which Place has a Score larger than 68, and a Player of david ogrin?",
    "question_th": "สถานที่ใดมีคะแนนมากกว่า 68 และเป็นผู้เล่นของ 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_en": "Which Player has a Place of t2?",
    "question_th": "ผู้เล่นคนไหนมีตำแหน่ง t2?",
    "context": "CREATE TABLE table_name_31 (player VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_98 WHERE method = \"dq (eye gouging)\"",
    "question_en": "What event did Mikhail Avetisyan win by method of DQ (eye gouging)?",
    "question_th": "เหตุการณ์ใดที่ Mikhail Avetisyan ชนะด้วยวิธี DQ (การเซาะตา)",
    "context": "CREATE TABLE table_name_98 (event VARCHAR, method VARCHAR)"
  },
  {
    "answer": "SELECT khtml FROM table_name_11 WHERE gecko = \"font\"",
    "question_en": "For the item that has a Gecko of 'font', what is the KHTML value?",
    "question_th": "รายการที่มี Gecko เป็น 'font' ค่า KHTML คืออะไร",
    "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_en": "What is the Prince XML value for the engine that has a Gecko value of 'no' and webkit value of 'nightly build'?",
    "question_th": "ค่า Prince XML สำหรับเอ็นจิ้นที่มีค่า Gecko เป็น 'no' และค่า webkit เป็น '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_en": "What is the Gecko value for the item that has a Trident value of 'font'?",
    "question_th": "ค่าตุ๊กแกสำหรับรายการที่มีค่าตรีศูลเป็น 'แบบอักษร' คืออะไร",
    "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_en": "What is the Gecko value for the item that has a Prince XML value of 'no' and a KHTML value of 'yes'?",
    "question_th": "ค่า Gecko สำหรับรายการที่มีค่า Prince XML เป็น 'no' และค่า KHTML เป็น '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_en": "Which Trident version has a Gecko value of 19.0?",
    "question_th": "ตรีศูลรุ่นใดมีค่าตุ๊กแก 19.0",
    "context": "CREATE TABLE table_name_57 (trident VARCHAR, gecko VARCHAR)"
  },
  {
    "answer": "SELECT webkit FROM table_name_71 WHERE prince_xml = \"font\"",
    "question_en": "For the item with a Prince XML value of 'font', what is the WebKit value?",
    "question_th": "สำหรับรายการที่มีค่า Prince XML เป็น 'font' ค่า WebKit คืออะไร",
    "context": "CREATE TABLE table_name_71 (webkit VARCHAR, prince_xml VARCHAR)"
  },
  {
    "answer": "SELECT AVG(played) FROM table_name_55 WHERE team = \"cerro corá\" AND losses > 4",
    "question_en": "Which Played has a Team of cerro corá, and Losses larger than 4?",
    "question_th": "ผู้เล่นคนไหนมีทีม cerro corá และแพ้มากกว่า 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_en": "Which Losses has Scored of 9, and Points larger than 8?",
    "question_th": "การแพ้ใดที่ได้คะแนน 9 และคะแนนมากกว่า 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_en": "On Race 14 when the FLap is larger than 1, what is the podium number?",
    "question_th": "ในการแข่งขันรอบที่ 14 เมื่อ FLap มีขนาดใหญ่กว่า 1 หมายเลขโพเดียมจะเป็นเท่าใด",
    "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_en": "When the Flap is less than 15 and the podium is larger than 11, what is the pole?",
    "question_th": "เมื่อพนังน้อยกว่า 15 และโพเดียมใหญ่กว่า 11 เสาคืออะไร?",
    "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_en": "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?",
    "question_th": "เมื่อโพลใหญ่กว่า 0 และโพเดียมน้อยกว่า 44 โดยมีหมายเลขการแข่งขันน้อยกว่า 16 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_en": "What is the average Week, when Opponent is Minnesota Vikings?",
    "question_th": "สัปดาห์โดยเฉลี่ยคือเท่าใด เมื่อฝ่ายตรงข้ามคือ Minnesota Vikings?",
    "context": "CREATE TABLE table_name_16 (week INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_19 WHERE attendance = \"58,836\"",
    "question_en": "What is Opponent, when Attendance is 58,836?",
    "question_th": "ฝ่ายตรงข้ามคืออะไร เมื่อผู้เข้าร่วมคือ 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_en": "Which engine of Rob Walker Racing Team has 47 points and F tyres?",
    "question_th": "เครื่องยนต์ใดของ Rob Walker Racing Team มี 47 แต้ม และยาง F?",
    "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_en": "Which entrant has 49 points and a Mclaren M7A chassis?",
    "question_th": "ผู้เข้าแข่งขันคนใดมี 49 คะแนนและแชสซีของ Mclaren M7A",
    "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_en": "How many points did Bob Gerard Racing have in 1965?",
    "question_th": "Bob Gerard Racing มีคะแนนเท่าไรในปี 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_en": "Which entrant had a Brabham BT10 chassis before 1965?",
    "question_th": "ผู้เข้าแข่งขันรายใดมีแชสซี Brabham BT10 ก่อนปี 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_en": "What is the Attendance on September 28, 1997?",
    "question_th": "ผู้เข้าร่วมประชุมในวันที่ 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_en": "What was the Opponent on August 31, 1997?",
    "question_th": "ฝ่ายตรงข้ามเมื่อวันที่ 31 สิงหาคม 2540 คืออะไร?",
    "context": "CREATE TABLE table_name_15 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_34 WHERE week = 10",
    "question_en": "What was the Attendance on Week 10?",
    "question_th": "การเข้าร่วมในสัปดาห์ที่ 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–7\"",
    "question_en": "How many Points have a Home of pittsburgh, and a Score of 1–7?",
    "question_th": "บ้านของพิตส์เบิร์กมีคะแนนกี่คะแนนและคะแนน 1–7",
    "context": "CREATE TABLE table_name_11 (points INTEGER, home VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_49 WHERE record = \"7–7–1\"",
    "question_en": "Which Date has a Record of 7–7–1?",
    "question_th": "วันที่ใดมีบันทึก 7–7–1",
    "context": "CREATE TABLE table_name_49 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_92 WHERE record = \"11–10–2\"",
    "question_en": "Which Date has a Record of 11–10–2?",
    "question_th": "วันใดมีบันทึก 11–10–2?",
    "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_en": "Which position had 3 podiums and F/laps of 4?",
    "question_th": "ตำแหน่งใดมี 3 โพเดียมและ F/รอบเป็น 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_en": "What is the number of races associated with Team ASM and 0 poles?",
    "question_th": "จำนวนการแข่งขันที่เกี่ยวข้องกับทีม ASM และ 0 โพลคืออะไร?",
    "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_en": "Which team had 1 race, 1 F/lap and in the series 24 hours of Nurburgring?",
    "question_th": "ทีมใดมี 1 การแข่งขัน 1 F/รอบ และในซีรีส์ 24 ชั่วโมงของ 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_en": "What is the number of podiums associated with 4 wins?",
    "question_th": "จำนวนโพเดียมที่เกี่ยวข้องกับการชนะ 4 ครั้งคือเท่าไร?",
    "context": "CREATE TABLE table_name_89 (podiums VARCHAR, wins VARCHAR)"
  },
  {
    "answer": "SELECT races FROM table_name_93 WHERE position = \"4th\" AND podiums = \"7\"",
    "question_en": "What is the number of races associated with 7 podiums and a position of 4th?",
    "question_th": "จำนวนการแข่งขันที่เกี่ยวข้องกับ 7 โพเดียมและอันดับที่ 4 เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_93 (races VARCHAR, position VARCHAR, podiums VARCHAR)"
  },
  {
    "answer": "SELECT f_laps FROM table_name_97 WHERE position = \"3rd\"",
    "question_en": "What is the F/Laps value associated with a position of 3rd?",
    "question_th": "ค่า F/Laps ที่เกี่ยวข้องกับตำแหน่งที่ 3 คืออะไร?",
    "context": "CREATE TABLE table_name_97 (f_laps VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_72 WHERE time = \"0:20\"",
    "question_en": "Can you tell me the Opponent that has the Time of 0:20?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าฝ่ายตรงข้ามที่มีเวลา 0:20?",
    "context": "CREATE TABLE table_name_72 (opponent VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_75 WHERE opponent = \"phil baroni\"",
    "question_en": "Can you tell me the Time that has the Opponent of phil baroni?",
    "question_th": "คุณช่วยบอกฉันถึงเวลาที่มีฝ่ายตรงข้ามของฟิลบาโรนี่ได้ไหม?",
    "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_en": "Can you tell me the lowest Round that has the Location of indiana, united states, and the Method of submission (guillotine choke)?",
    "question_th": "คุณช่วยบอกหน่อยได้ไหมว่ารอบต่ำสุดที่มีที่ตั้งของรัฐอินเดียนา สหรัฐอเมริกา และวิธีการยอมจำนน (กิโยตินสำลัก)?",
    "context": "CREATE TABLE table_name_6 (round INTEGER, location VARCHAR, method VARCHAR)"
  },
  {
    "answer": "SELECT built FROM table_name_9 WHERE location = \"la vista\"",
    "question_en": "When was la vista built?",
    "question_th": "ลาวิสต้าสร้างขึ้นเมื่อไหร่?",
    "context": "CREATE TABLE table_name_9 (built VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT built FROM table_name_61 WHERE name = \"sargent bridge\"",
    "question_en": "When was the sargent bridge built?",
    "question_th": "สะพานซาร์เจนท์สร้างขึ้นเมื่อใด",
    "context": "CREATE TABLE table_name_61 (built VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_64 WHERE county = \"platte\"",
    "question_en": "What's the location for the country of platte?",
    "question_th": "ที่ตั้งของประเทศแพลตต์คือที่ไหน?",
    "context": "CREATE TABLE table_name_64 (location VARCHAR, county VARCHAR)"
  },
  {
    "answer": "SELECT listed FROM table_name_79 WHERE county = \"nuckolls\"",
    "question_en": "what is the listing date for nuckolls county?",
    "question_th": "วันที่รายการสำหรับ 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_en": "what's the listing date for the verdigris creek bridge in royal of antelope county?",
    "question_th": "สะพาน Verdigris Creek ใน 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_en": "what's the county name for the republican river bridge listed on 1992-06-29?",
    "question_th": "สะพานข้ามแม่น้ำของพรรครีพับลิกันในรายการวันที่ 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_en": "what is the to par when the place is t10 and the score is 72-74-71-69=286?",
    "question_th": "จะต้องพาร์เท่าไรเมื่ออันดับ t10 และคะแนนคือ 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_en": "what is the to par when the player is hale irwin?",
    "question_th": "จะต้องพาร์อะไรเมื่อผู้เล่นคือเฮล เออร์วิน?",
    "context": "CREATE TABLE table_name_80 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_52 WHERE player = \"dave hill\"",
    "question_en": "what is the to par for Dave hill?",
    "question_th": "ค่าพาร์ของ 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_en": "what is the place when the score is 68-67-73-68=276?",
    "question_th": "คะแนน 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_en": "Can you tell me the Date that has the Week smaller than 13, and the Opponent of green bay packers?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าวันที่ที่มีสัปดาห์น้อยกว่า 13 และฝ่ายตรงข้ามของทีมแพ็คเกอร์กรีนเบย์?",
    "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_en": "Can you tell me the average Attendance that has the Opponent of new orleans saints, and the Week larger than 12?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมถึงจำนวนผู้เข้าร่วมโดยเฉลี่ยที่มีฝ่ายตรงข้ามของนักบุญนิวออร์ลีนส์ และสัปดาห์ที่มากกว่า 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_en": "Can you tell me the Attendance that has the Opponent of new york giants?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าผู้เข้าร่วมที่มีฝ่ายตรงข้ามของยักษ์ใหญ่ในนิวยอร์ก?",
    "context": "CREATE TABLE table_name_70 (attendance VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT density__hab__km²__ FROM table_name_4 WHERE population_censo_2007_hab_ = \"336.293*\"",
    "question_en": "What is the density (hab/km²) with a population censo 2007(hab) of 336.293*?",
    "question_th": "ความหนาแน่น (hab/km²) กับการสำรวจประชากรปี 2007(hab) ที่ 336.293* คือเท่าใด",
    "context": "CREATE TABLE table_name_4 (density__hab__km²__ 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_en": "What is the under 1 year-old Censo 2007(hab) population with a population censo 2007(hab) of 112.054*?",
    "question_th": "ประชากร Censo 2007(hab) อายุต่ำกว่า 1 ปีที่มีประชากร Censo 2007(hab) เท่ากับ 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²__ FROM table_name_21 WHERE population_under_1_year_old_censo_2007_hab_ = \"* data from the census taken by the inei\"",
    "question_en": "What is the density (hab/km²) with a population under 1 year-old censo 2007(hab) of * data from the census taken by the Inei?",
    "question_th": "ความหนาแน่น (hab/km²) ที่มีประชากรอายุต่ำกว่า 1 ปีจากการสำรวจสำมะโนประชากรปี 2007(hab) ของ * ข้อมูลจากการสำรวจสำมะโนประชากรที่จัดทำโดย Inei เป็นเท่าใด",
    "context": "CREATE TABLE table_name_21 (density__hab__km²__ 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_en": "What is the elevation msnm for a population censo 2007(hab) of 77.392*?",
    "question_th": "msnm ระดับความสูงสำหรับการสำรวจประชากรปี 2550 (hab) ที่ 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_en": "What's the report about townsville crocodiles as an away team?",
    "question_th": "รายงานเกี่ยวกับทาวน์สวิลล์ จระเข้ส์ ในฐานะทีมเยือนเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_35 (report VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_42 WHERE game = 67",
    "question_en": "What's the record of game 67?",
    "question_th": "บันทึกของเกม 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_en": "What's the score of the game against the Boston Bruins and after game 68?",
    "question_th": "คะแนนของเกมกับบอสตัน บรูอินส์ และหลังเกมที่ 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_en": "what is the natural change (per 1000) when the crude death rate (per 1000) is 10?",
    "question_th": "การเปลี่ยนแปลงตามธรรมชาติ (ต่อ 1,000) คืออะไร เมื่ออัตราการเสียชีวิตอย่างหยาบ (ต่อ 1,000) เท่ากับ 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_en": "what is the crude birth rate (per 1000) when the live births 1 is 356 013?",
    "question_th": "อัตราการเกิดอย่างหยาบ (ต่อ 1,000) คือเท่าใด เมื่อการเกิดสด 1 คือ 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_en": "what is the natural change (per 1000) when the live births 1 is 278 977?",
    "question_th": "การเปลี่ยนแปลงตามธรรมชาติ (ต่อ 1,000) เป็นเท่าใดเมื่อการเกิดมีชีพ 1 คือ 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_en": "Which Player has a To par of e, and a Country of united states?",
    "question_th": "ผู้เล่นคนไหนที่มี To par ของ e และประเทศของสหรัฐอเมริกา?",
    "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 = \"−1\" AND country = \"spain\"",
    "question_en": "Which Place has a Score smaller than 72, and a To par of −1, and a Country of spain?",
    "question_th": "สถานที่ใดมีคะแนนน้อยกว่า 72 และถึงพาร์ที่ −1 และประเทศสเปน",
    "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_en": "What was john huston's score?",
    "question_th": "คะแนนของจอห์น ฮุสตันเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_56 (score VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_15 WHERE player = \"willie wood\"",
    "question_en": "What was willie wood's to par?",
    "question_th": "วิลลี วูดส์ได้พาร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_15 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT prize FROM table_name_15 WHERE winner = \"dominik nitsche\"",
    "question_en": "What is the Prize amount of Winner Dominik Nitsche?",
    "question_th": "รางวัลของผู้ชนะ Dominik Nitsche คือเท่าใด",
    "context": "CREATE TABLE table_name_15 (prize VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_63 WHERE city = \"nuevo vallarta\"",
    "question_en": "What is the Winner of the Event in Nuevo Vallarta?",
    "question_th": "ผู้ชนะของกิจกรรมใน 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_en": "What is the Date of the Event in Punta del Este?",
    "question_th": "วันที่จัดงานในปุนตาเดลเอสเตคืออะไร?",
    "context": "CREATE TABLE table_name_68 (date VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_92 WHERE prize = \"$141,426\"",
    "question_en": "What is the Date of the Event with a Prize of $141,426?",
    "question_th": "งานจัดขึ้นวันที่เท่าไรพร้อมเงินรางวัล $141,426?",
    "context": "CREATE TABLE table_name_92 (date VARCHAR, prize VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_16 WHERE name = \"ahaziah\"",
    "question_en": "What is the title of ahaziah?",
    "question_th": "ชื่ออาหัสยาห์คืออะไร?",
    "context": "CREATE TABLE table_name_16 (title VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_2 WHERE title = \"king\"",
    "question_en": "What is the type of the king title?",
    "question_th": "พระราชกรณียกิจประเภทใด?",
    "context": "CREATE TABLE table_name_2 (type VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_48 WHERE title = \"queen regnant\"",
    "question_en": "What is the name of the queen regnant?",
    "question_th": "ราชินีผู้ครองราชย์ชื่ออะไร?",
    "context": "CREATE TABLE table_name_48 (name VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(grid) FROM table_name_2 WHERE rider = \"aleix espargaro\"",
    "question_en": "What is the total number of Grid, when Rider is Aleix Espargaro?",
    "question_th": "เมื่อไรเดอร์คืออเล็กซ์ เอสปาร์กาโรมีจำนวนกริดทั้งหมดเป็นเท่าใด",
    "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_en": "What is the Rider, when Grid is less than 16, when Manufacturer is Aprilia, and when Time is +28.288?",
    "question_th": "ไรเดอร์คืออะไร เมื่อกริดน้อยกว่า 16 เมื่อผู้ผลิตคืออาพริเลีย และเมื่อเวลาคือ +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_en": "What is the average Laps, when Grid is 15?",
    "question_th": "รอบเฉลี่ยเมื่อกริดอายุ 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_en": "What is the Manufacturer, when Laps is 26, and when Rider is Aleix Espargaro?",
    "question_th": "ผู้ผลิตคืออะไร เมื่อรอบอายุ 26 ปี และเมื่อไรเดอร์คือ 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_en": "What is Date, when Away Team is \"Ipswich Town\"?",
    "question_th": "วันที่เท่าไหร่เมื่อทีมเยือนคือ “อิปสวิช ทาวน์”?",
    "context": "CREATE TABLE table_name_20 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT tie_no FROM table_name_71 WHERE away_team = \"millwall\"",
    "question_en": "What is Tie No, when Away Team is \"Millwall\"?",
    "question_th": "Tie No คืออะไร เมื่อทีมเยือนคือ \"มิลล์วอลล์\"?",
    "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_en": "What is Score, when Date is \"13 March 1985\", and when Away Team is \"Millwall\"?",
    "question_th": "สกอร์คืออะไร วันที่คือ \"13 มีนาคม 1985\" และเมื่อทีมเยือนคือ \"มิลล์วอลล์\"",
    "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_en": "What is Date, when Away Team is \"Liverpool\"?",
    "question_th": "วันที่เท่าไหร่เมื่อทีมเยือนคือ \"ลิเวอร์พูล\"?",
    "context": "CREATE TABLE table_name_91 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_50 WHERE home_team = \"manchester united\"",
    "question_en": "What is Score, when Home Team is \"Manchester United\"?",
    "question_th": "Score คืออะไร เมื่อเจ้าบ้านคือ “แมนเชสเตอร์ ยูไนเต็ด”?",
    "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_en": "What is Team, when High Rebounds is \"Carl Landry (11)\"?",
    "question_th": "ทีมคืออะไร ในเมื่อ High Rebounds คือ \"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_en": "What is Location Attendance, when High Assists is \"Rafer Alston (7)\", and when High Rebounds is \"Yao Ming (13)\"?",
    "question_th": "การเข้าร่วมตำแหน่งคืออะไร เมื่อการช่วยเหลือสูงคือ \"Rafer Alston (7)\" และเมื่อการรีบาวด์สูงคือ \"เหยาหมิง (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_en": "What is Score, when Team is \"@ Memphis\"?",
    "question_th": "Score คืออะไร เมื่อทีมคือ \"@ 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_en": "What is the result of the ajc craven plate (wfa) race?",
    "question_th": "ผลการแข่งขัน ajc craven Plate (wfa) เป็นอย่างไร?",
    "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_en": "What is the result of the sajc king's cup race, which has a weight heavier than 8.1?",
    "question_th": "ผลการแข่งขัน Sajc King's Cup หนักกว่า 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_en": "What is the race with a 10f distance and mollison as the winner or 2nd?",
    "question_th": "การแข่งขันระยะ 10 ฟุตและมอลลิสันเป็นผู้ชนะหรือที่ 2 คืออะไร?",
    "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_en": "What is the highest number of Bush with a 32.40% Bush % and a total less than 5,126?",
    "question_th": "จำนวนบุชสูงสุดที่มี 32.40% บุช % และรวมน้อยกว่า 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–109 (ot)\"",
    "question_en": "What is the location and attendance when the score as w 117–109 (ot)?",
    "question_th": "สถานที่และการเข้างานเมื่อคะแนน w 117–109 (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_en": "What were the last 5 meetings when Columbia was mu, 4-2?",
    "question_th": "เจอกัน 5 ครั้งล่าสุดเมื่อโคลัมเบียเป็นหมู่ 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_en": "What is the total number of rounds at 5:36?",
    "question_th": "นาทีที่ 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_en": "What is the total number of rounds with a 4-0 record?",
    "question_th": "จำนวนรอบทั้งหมดที่มีสถิติ 4-0 คือเท่าไร?",
    "context": "CREATE TABLE table_name_57 (round VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT districts FROM table_name_36 WHERE province = \"piura\"",
    "question_en": "Which district is in the province of Piura?",
    "question_th": "อำเภอใดอยู่ในจังหวัดปิวรา?",
    "context": "CREATE TABLE table_name_36 (districts VARCHAR, province VARCHAR)"
  },
  {
    "answer": "SELECT SUM(population) FROM table_name_38 WHERE name_of_city = \"chimbote\"",
    "question_en": "What is the population of Chimbote?",
    "question_th": "ชิมโบเตมีประชากรกี่คน?",
    "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_en": "What is the result of the game that was played at Detroit Lions?",
    "question_th": "ผลการแข่งขันที่เจอกับดีทรอยต์ ไลออนส์เป็นอย่างไร?",
    "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_en": "What series number was directed by milan cheylov and written by will dixon?",
    "question_th": "มิลาน เชย์ลอฟ กำกับซีรีส์เรื่องใด และเขียนบทโดยวิล ดิกสัน",
    "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_en": "What series # had an original air date of november 30, 1996?",
    "question_th": "ซีรีส์ # เรื่องใดที่ออกอากาศตอนแรกวันที่ 30 พฤศจิกายน 2539",
    "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_en": "What was part 4 when part 3 was *hleupun?",
    "question_th": "ตอนที่ 4 คืออะไร ตอนที่ 3 คือ *hleupun?",
    "context": "CREATE TABLE table_name_65 (part_4 VARCHAR, part_3 VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_name_61 WHERE part_2 = \"*hēt\"",
    "question_en": "What was the class when part 2 was *hēt?",
    "question_th": "ตอนที่ 2 เป็นคลาสอะไร *hēt?",
    "context": "CREATE TABLE table_name_61 (class VARCHAR, part_2 VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_name_39 WHERE part_4 = \"*rādanaz\"",
    "question_en": "What was the class when part 4 was *rādanaz?",
    "question_th": "ตอนที่ 4 คือ *rādanaz คลาสอะไรคะ?",
    "context": "CREATE TABLE table_name_39 (class VARCHAR, part_4 VARCHAR)"
  },
  {
    "answer": "SELECT part_2 FROM table_name_67 WHERE part_4 = \"*blōtanaz\"",
    "question_en": "What was part 2 when part 4 was *blōtanaz?",
    "question_th": "ตอนที่ 2 คืออะไร ตอนที่ 4 คือ *blōtanaz?",
    "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_en": "What was part 2 when part 4 was *haldanaz?",
    "question_th": "ตอนที่ 2 คืออะไร ตอนที่ 4 คือ *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_en": "What was the class when part 3 was *heldun?",
    "question_th": "ตอนที่ 3 เป็นคลาสอะไร *heldun?",
    "context": "CREATE TABLE table_name_79 (class VARCHAR, part_3 VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_23 WHERE venue = \"ullevaal\"",
    "question_en": "What is the Round din Ullevaal?",
    "question_th": "Round din Ullevaal คืออะไร?",
    "context": "CREATE TABLE table_name_23 (round VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_99 WHERE venue = \"ullevaal\"",
    "question_en": "What Round is in Ullevaal?",
    "question_th": "Ullevaal มีรอบอะไรบ้าง?",
    "context": "CREATE TABLE table_name_99 (round VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_76 WHERE score = \"1-1\"",
    "question_en": "In what Venue was the Score 1-1?",
    "question_th": "สกอร์ 1-1 อยู่ที่สนามไหน?",
    "context": "CREATE TABLE table_name_76 (venue VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_31 WHERE round = \"semifinal 1\"",
    "question_en": "What was the Score of the Semifinal 1?",
    "question_th": "คะแนนของรอบรองชนะเลิศ 1 คืออะไร?",
    "context": "CREATE TABLE table_name_31 (score VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT ends FROM table_name_33 WHERE transfer_fee = \"loan\"",
    "question_en": "What are the ends for the player with a transfer fee of loan?",
    "question_th": "สิ้นสุดสำหรับผู้เล่นที่มีค่าธรรมเนียมการโอนเงินกู้คืออะไร?",
    "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_en": "What is the transfer fee for the MLI player with fewer than 63 goals in a year more recent than 2006?",
    "question_th": "ค่าธรรมเนียมการโอนของผู้เล่น MLI ที่ยิงน้อยกว่า 63 ประตูในหนึ่งปีล่าสุดกว่าปี 2549 คือเท่าไร?",
    "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_en": "What is the royal house for Wu at the state of cai?",
    "question_th": "ราชวงศ์ของอู๋ที่รัฐไจคืออะไร?",
    "context": "CREATE TABLE table_name_45 (royal_house VARCHAR, name VARCHAR, state VARCHAR)"
  },
  {
    "answer": "SELECT state FROM table_name_63 WHERE title = \"count\"",
    "question_en": "What is the state where the title is listed as count?",
    "question_th": "รัฐใดที่ชื่อถูกระบุว่านับ?",
    "context": "CREATE TABLE table_name_63 (state VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT state FROM table_name_58 WHERE royal_house = \"ying\"",
    "question_en": "What is the state for the royal house of ying?",
    "question_th": "ราชวงศ์หญิงมีฐานะเป็นอย่างไร?",
    "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–2, 6–3, 2–6, 7–5\"",
    "question_en": "Which Opponent in the final has a Score in the final of 6–2, 6–3, 2–6, 7–5?",
    "question_th": "คู่ต่อสู้คนใดในรอบชิงชนะเลิศที่มีคะแนนในรอบชิงชนะเลิศ 6–2, 6–3, 2–6, 7–5?",
    "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–4, 6–2\"",
    "question_en": "How many Dates have a Score in the final of 6–4, 6–2?",
    "question_th": "มีกี่วันที่มีคะแนนในรอบสุดท้ายของ 6–4, 6–2?",
    "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–6, 6–7, 6–2, 2–6\"",
    "question_en": "Which Surface has an Outcome of runner-up, and a Score in the final of 4–6, 6–7, 6–2, 2–6?",
    "question_th": "Surface ใดมีผลลัพธ์เป็นรองชนะเลิศและมีคะแนนในรอบสุดท้าย 4–6, 6–7, 6–2, 2–6",
    "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–6, 6–2, 6–1\"",
    "question_en": "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–6, 6–2, 6–1?",
    "question_th": "ฝ่ายตรงข้ามคนใดในรอบชิงชนะเลิศมีผลลัพธ์เป็นผู้ชนะ และมีวันที่มากกว่าปี 1992 และมีพื้นผิวดินเหนียว และคะแนนในรอบชิงชนะเลิศ 3–6, 6–2, 6–1",
    "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–6, 6–7\"",
    "question_en": "Which Surface has a Score in the final of 2–6, 6–7?",
    "question_th": "Surface ใดมีคะแนนในรอบสุดท้ายของ 2–6, 6–7",
    "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_en": "What day in November has a record of 15-6-1?",
    "question_th": "วันไหนในเดือนพฤศจิกายนที่มีสถิติ 15-6-1?",
    "context": "CREATE TABLE table_name_91 (november INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT november FROM table_name_55 WHERE game < 12",
    "question_en": "What day in November has the game less than 12?",
    "question_th": "วันไหนในเดือนพฤศจิกายนที่เกมน้อยกว่า 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_en": "What is the earliest day in November with a record of 15-7-1?",
    "question_th": "วันแรกสุดของเดือนพฤศจิกายนด้วยสถิติ 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_en": "What is Finish, when Country is \"South Africa\"?",
    "question_th": "Finish คืออะไร เมื่อประเทศคือ \"แอฟริกาใต้\"?",
    "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_en": "What is Player, when Country is \"United States\", and when Year(s) Won is \"1976\"?",
    "question_th": "ผู้เล่นคืออะไร เมื่อประเทศคือ \"สหรัฐอเมริกา\" และเมื่อปีที่ชนะคือ \"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_en": "Which first round has a first team of angers sco (d1)?",
    "question_th": "รอบแรกทีมใดมีทีมอองเช่สโก (d1) เป็นทีมแรก?",
    "context": "CREATE TABLE table_name_90 (team_1 VARCHAR)"
  },
  {
    "answer": "SELECT stadium FROM table_name_43 WHERE club = \"pro patria\"",
    "question_en": "In which stadium does Club Pro Patria play?",
    "question_th": "Club Pro Patria ลงเล่นที่สนามใด?",
    "context": "CREATE TABLE table_name_43 (stadium VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT 2007 AS _08_season FROM table_name_33 WHERE city = \"ferrara\"",
    "question_en": "What was the result of the 2007-08 season for the city of Ferrara?",
    "question_th": "อะไรคือผลลัพธ์ของฤดูกาล 2550-51 ของเมืองเฟอร์รารา?",
    "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_en": "How many matches were played that resulted in less than 59.1 overs and a 6.78 Economy rate?",
    "question_th": "มีการแข่งขันกี่นัดที่ส่งผลให้น้อยกว่า 59.1 โอเวอร์ และอัตราประหยัด 6.78",
    "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_en": "What is the average of someone with more than 19 wickets and less than 16 matches?",
    "question_th": "ค่าเฉลี่ยของคนที่มีมากกว่า 19 ประตูและน้อยกว่า 16 นัดเป็นเท่าใด?",
    "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_en": "What were the total number of matches played when the Deccan Chargers had a strike rate of 15.5?",
    "question_th": "จำนวนการแข่งขันทั้งหมดที่เล่นเมื่อ Deccan Chargers มีอัตราการนัดหยุดงาน 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_en": "Who was the home team of the match on 21.10.07, which had bsc young boys (asl) as the geust?",
    "question_th": "ใครคือเจ้าบ้านของแมตช์วันที่ 21.10.07 ซึ่งมี bsc young boys (asl) เป็นแขกรับเชิญ?",
    "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_en": "What is the home of fc st. gallen (asl) geust?",
    "question_th": "บ้านของ fc st. คืออะไร? แกลเลน (ASL) กุสต์?",
    "context": "CREATE TABLE table_name_52 (home VARCHAR, geust VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_14 WHERE geust = \"fc basel (asl)\"",
    "question_en": "What is the home of the geust fc basel (asl)?",
    "question_th": "เหย้าของเกสท์ เอฟซี บาเซิ่ล (ASL) คืออะไร?",
    "context": "CREATE TABLE table_name_14 (home VARCHAR, geust VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_83 WHERE geust = \"fc thun (asl)\"",
    "question_en": "What is the home of fc thun (asl) geust?",
    "question_th": "บ้านของ เอฟซี ธูน (อาสแอล) เกสท์ คืออะไร?",
    "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_en": "What is the home of the match with a 0:2 result on 21.10.07?",
    "question_th": "เจ้าบ้านของแมตช์ที่ผลการแข่งขัน 0:2 ในวันที่ 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_en": "What is the geust with a 0:1 result?",
    "question_th": "geust ด้วยผลลัพธ์ 0: 1 คืออะไร?",
    "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_en": "What is the nalchik with 4 played, a rl qual., and 100 jermuk?",
    "question_th": "นัลชิคที่เล่นได้ 4 ครั้ง, รอบคัดเลือก 1 ครั้ง และ 100 เยอร์มุกคืออะไร?",
    "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⅓\"",
    "question_en": "What is the elista with 1 played and 153⅓ baku?",
    "question_th": "เอลิสต้าที่เล่น 1 ครั้งและบากู 153⅓ คืออะไร?",
    "context": "CREATE TABLE table_name_14 (elista VARCHAR, played VARCHAR, baku VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_72 WHERE points = 26",
    "question_en": "Which river had 26 points?",
    "question_th": "แม่น้ำใดมี 26 คะแนน?",
    "context": "CREATE TABLE table_name_72 (driver VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT closed FROM table_name_79 WHERE name = \"caphouse colliery\"",
    "question_en": "What year did the Caphouse Colliery railway close?",
    "question_th": "ทางรถไฟ Caphouse Colliery ปิดให้บริการในปีใด",
    "context": "CREATE TABLE table_name_79 (closed VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT AVG(2006) FROM table_name_47 WHERE 1970 < 9",
    "question_en": "What was the percentage in 2006 that had less than 9% in 1970?",
    "question_th": "เปอร์เซ็นต์ในปี 2549 ที่มีน้อยกว่า 9% ในปี 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_en": "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?",
    "question_th": "เปอร์เซ็นต์ในปี 1980 ที่มีน้อยกว่า 37.8% ในปี 2549 มากกว่า 29.4% ในปี 2543 และมากกว่า 18.2% ในปี 1970 คือเท่าใด",
    "context": "CREATE TABLE table_name_30 (Id VARCHAR)"
  },
  {
    "answer": "SELECT MIN(1980) FROM table_name_70 WHERE borough = \"brooklyn\"",
    "question_en": "What was the percentage in 1980 in Brooklyn?",
    "question_th": "เปอร์เซ็นต์ในปี 1980 ในบรูคลินคือเท่าไร?",
    "context": "CREATE TABLE table_name_70 (borough VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_14 WHERE round = \"r3\"",
    "question_en": "What is the result the R3 round?",
    "question_th": "ผลการแข่งขันรอบ R3 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_14 (result VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_73 WHERE opponent = \"ayr united\"",
    "question_en": "What is the result of the game against Ayr United?",
    "question_th": "ผลเกมกับแอร์ ยูไนเต็ดเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_73 (result VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_4 WHERE visitor = \"edmonton oilers\"",
    "question_en": "What was the score for the game in which the Edmonton Oilers were visitors?",
    "question_th": "เกมที่เอดมันตัน ออยเลอร์ส มาเยือนได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_4 (score VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_97 WHERE visitor = \"toronto maple leafs\"",
    "question_en": "What was the score of the game in which the Toronto Maple Leafs were visitors?",
    "question_th": "คะแนนของเกมที่โตรอนโต เมเปิล ลีฟส์ มาเยือนคือเท่าไร?",
    "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_en": "When Jeb Barlow was picked in round smaller than 7, how many player in totals were picked?",
    "question_th": "เมื่อเจบ บาร์โลว์ ถูกเลือกในรอบที่น้อยกว่า 7 ผู้เล่นที่ถูกเลือกทั้งหมดมีทั้งหมดกี่คน?",
    "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_en": "What country is team ucla come from?",
    "question_th": "ทีมยูคลามาจากประเทศอะไร?",
    "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_en": "How many rounds have picked smaller than 220, with Alford Turner as a player?",
    "question_th": "มีกี่รอบที่เลือกน้อยกว่า 220 โดยที่ Alford Turner เป็นผู้เล่น?",
    "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_en": "What is the pick with Dean Sears and round larger than 6?",
    "question_th": "ปิ๊กที่มี Dean Sears และทรงกลมที่ใหญ่กว่า 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_en": "What is the total pick with Bill Duffy?",
    "question_th": "ตัวเลือกทั้งหมดของ Bill Duffy คืออะไร?",
    "context": "CREATE TABLE table_name_12 (pick INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT SUM(round) FROM table_name_37 WHERE pick = 109",
    "question_en": "What is the total round with pick of 109?",
    "question_th": "ผลรวมที่เลือกได้ 109 รอบคือเท่าไร?",
    "context": "CREATE TABLE table_name_37 (round INTEGER, pick VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(pick__number) FROM table_name_5 WHERE round = 12",
    "question_en": "How many picks for round 12?",
    "question_th": "รอบ 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_en": "What was Tom Donchez pick number?",
    "question_th": "หมายเลขเลือกของ Tom Donchez คืออะไร?",
    "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_en": "What is date when against is smaller than 6 and location was durban?",
    "question_th": "วันที่ใดที่เทียบกับน้อยกว่า 6 และสถานที่อยู่ในเดอร์บัน?",
    "context": "CREATE TABLE table_name_75 (date VARCHAR, against VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT note FROM table_name_28 WHERE year > 2003",
    "question_en": "What was the note with a year after 2003?",
    "question_th": "หนึ่งปีหลังจากปี 2546 มีข้อความอะไร",
    "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_en": "When was the note a vocals and the album north (original motion picture soundtrack)?",
    "question_th": "โน้ตเป็นเสียงร้องและอัลบั้ม นอร์ธ (เพลงประกอบภาพยนตร์ต้นฉบับ) เมื่อไหร่?",
    "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_en": "Which album had the note tape [tape echo]?",
    "question_th": "อัลบั้มไหนมีเทปโน้ต [tape echo]?",
    "context": "CREATE TABLE table_name_95 (album VARCHAR, note VARCHAR)"
  },
  {
    "answer": "SELECT artist FROM table_name_32 WHERE year = 2003",
    "question_en": "Which artist was 2003?",
    "question_th": "ศิลปินคนไหนคือปี 2546?",
    "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_en": "What is the Title of the episode after Season 10 Directed by Erik Wiese and Eddie Trigueros after Seres 35?",
    "question_th": "ชื่อเรื่องของตอนหลังซีซั่น 10 กำกับโดย Erik Wiese และ Eddie Trigueros หลังจาก 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_en": "What is the Original airdate of the episode after Season 6 Directed by Erik Wiese?",
    "question_th": "วันที่ออกอากาศดั้งเดิมของตอนหลังซีซั่น 6 กำกับโดย 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_en": "What is the average of laps ridden by Toni Elias?",
    "question_th": "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_en": "How long did it take for the rider of a Yamaha with a grid less than 8 and laps less than 23?",
    "question_th": "ผู้ขับขี่ Yamaha ที่มีกริดน้อยกว่า 8 และรอบน้อยกว่า 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_en": "What is the fewest amount of laps when the grid was larger than 1 and 42:31.153?",
    "question_th": "จำนวนรอบน้อยที่สุดเมื่อกริดมีขนาดใหญ่กว่า 1 และ 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_en": "How long did it take to ride when the laps were 23 and the grid of 13?",
    "question_th": "ใช้เวลานานเท่าไหร่ในการขี่เมื่อรอบอยู่ที่ 23 และตารางที่ 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_en": "What was the result for the 71,164 in attendance?",
    "question_th": "ผลลัพธ์ของผู้เข้าร่วม 71,164 คนเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_9 (result VARCHAR, attendance INTEGER)"
  },
  {
    "answer": "SELECT rank FROM table_name_83 WHERE floors > 47",
    "question_en": "Which rank is above floor 47?",
    "question_th": "อันดับไหนอยู่เหนือชั้น 47?",
    "context": "CREATE TABLE table_name_83 (rank VARCHAR, floors INTEGER)"
  },
  {
    "answer": "SELECT class FROM table_name_40 WHERE team = \"rml\"",
    "question_en": "What class is the RML Team?",
    "question_th": "ทีม RML คือคลาสอะไร?",
    "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_en": "Which Result has a Home team of portland, and a Date of may 31?",
    "question_th": "ผลการแข่งขันใดมีทีมเหย้าของพอร์ตแลนด์ และวันที่ 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_en": "Which Date has a Road team of portland, and a Game of game 5?",
    "question_th": "ซึ่ง Date มีทีม Road ของพอร์ตแลนด์และเกมของเกมที่ 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–110\"",
    "question_en": "Which Home team has a Road team of portland, and a Result of 104–110?",
    "question_th": "ทีมเหย้าทีมใดมีทีมโรดจากพอร์ตแลนด์ และผลการแข่งขัน 104–110",
    "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_en": "Which Home team has a Game of game 5?",
    "question_th": "ทีมเจ้าบ้านใดมีเกมของเกมที่ 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–110\"",
    "question_en": "Which Date has a Home team of philadelphia, and a Result of 104–110?",
    "question_th": "วันที่ใดมีทีมเหย้าของฟิลาเดลเฟียและผลการแข่งขัน 104–110",
    "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_en": "Which Road team has a Home team of portland, and a Date of may 31?",
    "question_th": "ทีม Road ใดมีทีมเหย้าของพอร์ตแลนด์และวันที่ 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ʔe/\"",
    "question_en": "Which Tongan has a North Marquesan of /haʔe/?",
    "question_th": "ภาษาตองกาใดมี Marquesan เหนือเป็น /haʔe/",
    "context": "CREATE TABLE table_name_15 (tongan VARCHAR, north_marquesan VARCHAR)"
  },
  {
    "answer": "SELECT north_marquesan FROM table_name_2 WHERE takuu = \"/ɾani/\"",
    "question_en": "What kind of North Marquesan has a Takuu of /ɾani/?",
    "question_th": "North Marquesan ประเภทใดที่มี Takuu เป็น /ɾani/?",
    "context": "CREATE TABLE table_name_2 (north_marquesan VARCHAR, takuu VARCHAR)"
  },
  {
    "answer": "SELECT takuu FROM table_name_83 WHERE north_marquesan = \"/vehine/\"",
    "question_en": "What kind of Takuu has a North Marquesan of /vehine/?",
    "question_th": "Takuu แบบไหนที่มี Marquesan เหนือเป็น /vehine/?",
    "context": "CREATE TABLE table_name_83 (takuu VARCHAR, north_marquesan VARCHAR)"
  },
  {
    "answer": "SELECT rarotongan FROM table_name_15 WHERE tahitian = \"/metua/\"",
    "question_en": "What kind of Rarotongan has a Tahitian of /metua/?",
    "question_th": "ราโรตองกันแบบไหนที่มีภาษาตาฮีตีเป็น /metua/?",
    "context": "CREATE TABLE table_name_15 (rarotongan VARCHAR, tahitian VARCHAR)"
  },
  {
    "answer": "SELECT tongan FROM table_name_89 WHERE north_marquesan = \"/haʔe/\"",
    "question_en": "What kind of Tongan has a North Marquesan of /haʔe/?",
    "question_th": "ภาษาตองกาแบบใดที่มีเครื่องหมาย Marquesan เหนือเป็น /haʔe/?",
    "context": "CREATE TABLE table_name_89 (tongan VARCHAR, north_marquesan VARCHAR)"
  },
  {
    "answer": "SELECT south_marquesan FROM table_name_67 WHERE sāmoan = \"/matua/\"",
    "question_en": "What kind of South Marquesan has a Sāmoan of /matua/?",
    "question_th": "South Marquesan ประเภทใดที่มีภาษาซามัวเป็น /matua/?",
    "context": "CREATE TABLE table_name_67 (south_marquesan VARCHAR, sāmoan VARCHAR)"
  },
  {
    "answer": "SELECT MAX(col__m_) FROM table_name_94 WHERE prominence__m_ = 3 OFFSET 046",
    "question_en": "What is the maximum Col (m) when 3,046 is the Prominence (m)?",
    "question_th": "Col (m) สูงสุดคือเท่าใด เมื่อ 3,046 คือ 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é\"",
    "question_en": "Where is the peak Pico Basilé located?",
    "question_th": "ยอดเขา Pico Basilé อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_15 (location VARCHAR, peak VARCHAR)"
  },
  {
    "answer": "SELECT german_gewehr_98 FROM table_name_46 WHERE danish_krag_jørgensen_1889 = \"4.28kg\"",
    "question_en": "What is the German Gewehr 98 when the Danish Krag-Jørgensen 1889 is 4.28kg?",
    "question_th": "Gewehr 98 ของเยอรมันคืออะไรเมื่อ Krag-Jørgensen ของเดนมาร์ก 1889 อยู่ที่ 4.28 กก.",
    "context": "CREATE TABLE table_name_46 (german_gewehr_98 VARCHAR, danish_krag_jørgensen_1889 VARCHAR)"
  },
  {
    "answer": "SELECT rifle FROM table_name_94 WHERE german_gewehr_98 = \"74cm\"",
    "question_en": "What is the Rifle when the German Gewehr 98 is 74cm?",
    "question_th": "ปืนไรเฟิลคืออะไรเมื่อ German Gewehr 98 สูง 74 ซม.",
    "context": "CREATE TABLE table_name_94 (rifle VARCHAR, german_gewehr_98 VARCHAR)"
  },
  {
    "answer": "SELECT us_krag_jørgensen_m1892 FROM table_name_87 WHERE norwegian_krag_jørgensen_m1894 = \"126.8cm\"",
    "question_en": "What is the US Krag-Jørgensen M1892 when the Norwegian Krag-Jørgensen M1894 is 126.8cm?",
    "question_th": "US Krag-Jørgensen M1892 คืออะไรเมื่อ Norwegian Krag-Jørgensen M1894 อยู่ที่ 126.8 ซม.",
    "context": "CREATE TABLE table_name_87 (us_krag_jørgensen_m1892 VARCHAR, norwegian_krag_jørgensen_m1894 VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_31 WHERE league = \"national\" AND year = 2001",
    "question_en": "What team has a national league in 2001?",
    "question_th": "ทีมใดมีลีกระดับประเทศในปี 2544?",
    "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_en": "What is the league of the third baseman player before 1973?",
    "question_th": "ลีกของผู้เล่นเบสคนที่สามก่อนปี 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_en": "What is Original Title, when Film Title Used In Nomination is \"Monga\"?",
    "question_th": "ชื่อดั้งเดิมคืออะไร เมื่อชื่อภาพยนตร์ที่ใช้ในการเสนอชื่อคือ \"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ānmǎ cháfáng (天馬茶房)\"",
    "question_en": "What is Result, when Original Title is \"Tiānmǎ Cháfáng (天馬茶房)\"?",
    "question_th": "ผลลัพธ์จะเป็นอย่างไร เมื่อชื่อดั้งเดิมคือ \"Tiānmǎ Cháfáng (天馬茶房)\"?",
    "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áng-kah (艋舺)\"",
    "question_en": "What is Film Title Used In Nomination, when Original Title is \"Báng-Kah (艋舺)\"",
    "question_th": "ชื่อภาพยนตร์ที่ใช้ในการเสนอชื่อคืออะไร เมื่อชื่อเดิมคือ \"Báng-Kah (艋舺)\"",
    "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_en": "What is the Original Title, when Director is \"Ting Shan-Si\", and when Film Title Used In Nomination is \"The 800 Heroes\"?",
    "question_th": "ชื่อดั้งเดิมคืออะไร เมื่อผู้กำกับคือ \"Ting Shan-Si\" และเมื่อชื่อภาพยนตร์ที่ใช้ในการเสนอชื่อคือ \"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_en": "What is Year (Ceremony), when Director is \"Wang Siu-Di\"?",
    "question_th": "ปีอะไร (พิธี) เมื่อผู้อำนวยการคือ \"หวังซิวตี้\"?",
    "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_en": "What is Result, when Film Title Used In Nomination is \"Kuei-Mei, A Woman\"?",
    "question_th": "ผลลัพธ์จะเป็นอย่างไร เมื่อชื่อภาพยนตร์ที่ใช้ในการเสนอชื่อคือ \"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_en": "What was the issued serial for yellow on blue design issued in 1955?",
    "question_th": "หมายเลขซีเรียลที่ออกสำหรับการออกแบบสีเหลืองบนพื้นสีน้ำเงินที่ออกในปี 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_en": "What is the serial format for white on blue with a serial issued of ss-00-00 to zz-99-99?",
    "question_th": "รูปแบบอนุกรมสำหรับสีขาวบนพื้นน้ำเงินที่มีการออกซีเรียลเป็น ss-00-00 ถึง 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_en": "What is the issued serial given in 1966?",
    "question_th": "อนุกรมที่ออกให้ในปี 1966 คืออะไร?",
    "context": "CREATE TABLE table_name_71 (serials_issued VARCHAR, issued VARCHAR)"
  },
  {
    "answer": "SELECT serial_format FROM table_name_71 WHERE issued = 1972",
    "question_en": "What serial format was issued in 1972?",
    "question_th": "รูปแบบอนุกรมใดที่ออกในปี 1972?",
    "context": "CREATE TABLE table_name_71 (serial_format VARCHAR, issued VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_1 WHERE issued = 1964",
    "question_en": "What type was issued in 1964?",
    "question_th": "พิมพ์ประเภทใดในปี 2507?",
    "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_en": "At which tournament does Milan play against Hungary's league selection?",
    "question_th": "มิลานเล่นกับฮังการีในทัวร์นาเมนต์ใด?",
    "context": "CREATE TABLE table_name_97 (tournament VARCHAR, opponent_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_65 WHERE date = \"1 august 2008\"",
    "question_en": "What was the final score on 1 August 2008?",
    "question_th": "คะแนนสุดท้ายเมื่อวันที่ 1 สิงหาคม พ.ศ. 2551 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_65 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_74 WHERE opponent_team = \"napoli\"",
    "question_en": "Where did Milan play against Napoli?",
    "question_th": "มิลานเจอนาโปลีนัดไหน?",
    "context": "CREATE TABLE table_name_74 (location VARCHAR, opponent_team VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_37 WHERE tv_time = \"bye\"",
    "question_en": "WHAT WEEK HAS A TV TIME OF BYE?",
    "question_th": "สัปดาห์ไหนมีเวลาดูทีวี?",
    "context": "CREATE TABLE table_name_37 (week VARCHAR, tv_time VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_17 WHERE week = 15",
    "question_en": "WHAT WAS THE ATTENDANCE FOR WEEK 15?",
    "question_th": "การเข้าร่วมสัปดาห์ที่ 15 คืออะไร?",
    "context": "CREATE TABLE table_name_17 (attendance VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_30 WHERE date = \"november 29, 2001\"",
    "question_en": "WHAT WAS THE RESULT FOR NOVEMBER 29, 2001?",
    "question_th": "ผลลัพธ์ของวันที่ 29 พฤศจิกายน 2544 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_30 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT built FROM table_name_16 WHERE location = \"clarkdale\"",
    "question_en": "In what year was the bridge in Clarkdale built?",
    "question_th": "สะพานในคลาร์กเดลสร้างขึ้นในปีใด",
    "context": "CREATE TABLE table_name_16 (built VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT built FROM table_name_79 WHERE name = \"gila bend overpass\"",
    "question_en": "In what year was the Gila Bend Overpass built?",
    "question_th": "สะพานลอย Gila Bend สร้างขึ้นในปีใด",
    "context": "CREATE TABLE table_name_79 (built VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT county FROM table_name_33 WHERE name = \"canyon padre bridge\"",
    "question_en": "In what county is the Canyon Padre Bridge?",
    "question_th": "สะพาน Canyon Padre อยู่ที่จังหวัดใด",
    "context": "CREATE TABLE table_name_33 (county VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT MIN(championships) FROM table_name_94 WHERE years_won = \"1971\"",
    "question_en": "Who won the ABA Championship in 1971?",
    "question_th": "ใครชนะการแข่งขัน ABA Championship ในปี 1971",
    "context": "CREATE TABLE table_name_94 (championships INTEGER, years_won VARCHAR)"
  },
  {
    "answer": "SELECT AVG(lost) FROM table_name_5 WHERE played < 14",
    "question_en": "What was the average amount of losses for teams with played less than 14?",
    "question_th": "จำนวนการแพ้โดยเฉลี่ยสำหรับทีมที่เล่นน้อยกว่า 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_en": "What was the total number of games played by se freising when their points were larger than 13?",
    "question_th": "จำนวนเกมทั้งหมดที่เล่นโดย se freising เมื่อคะแนนมากกว่า 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_en": "What was the average losses for team with points larger than 3 and played larger thna 14?",
    "question_th": "อะไรคือความสูญเสียโดยเฉลี่ยสำหรับทีมที่มีคะแนนมากกว่า 3 และเล่นมากกว่า 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_en": "How many losses did ev bruckberg have when the drawn was more than 1?",
    "question_th": "อีฟ บรัคเบิร์ก ขาดทุนไปกี่ครั้งเมื่อเสมอกันมากกว่า 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_en": "What was the date administered from a source of Rasmussen Reports and a lead margin over 32?",
    "question_th": "วันที่จัดการจากแหล่งที่มาของ Rasmussen Reports และ Lead Margin มากกว่า 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_en": "What is the Score of the Chicago Black Hawks Home game on March 28?",
    "question_th": "สกอร์เกมเหย้า ชิคาโก้ แบล็คฮอกส์ วันที่ 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_en": "What is the Visitor of the game on April 2?",
    "question_th": "ผู้เยี่ยมชมเกมในวันที่ 2 เมษายนคืออะไร?",
    "context": "CREATE TABLE table_name_86 (visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_61 WHERE date = \"april 4\"",
    "question_en": "What is the Home team on April 4?",
    "question_th": "ทีมเหย้าวันที่ 4 เมษายนจะเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_61 (home VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_56 WHERE date = \"march 31\"",
    "question_en": "What is the Visitor on March 31?",
    "question_th": "ผู้เยี่ยมชมในวันที่ 31 มีนาคมคืออะไร?",
    "context": "CREATE TABLE table_name_56 (visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_43 WHERE date = \"april 2\"",
    "question_en": "What is the Home team on April 2?",
    "question_th": "ทีมเหย้าวันที่ 2 เมษายนจะเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_43 (home VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_86 WHERE record = \"2-3\"",
    "question_en": "What is the Date of the game with a Record of 2-3?",
    "question_th": "วันที่ของเกมที่มีสถิติ 2-3 คืออะไร?",
    "context": "CREATE TABLE table_name_86 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT track FROM table_name_55 WHERE year = \"1926\"",
    "question_en": "What track was used in 1926?",
    "question_th": "แทร็กใดที่ใช้ในปี 1926?",
    "context": "CREATE TABLE table_name_55 (track VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT 250 AS _cc FROM table_name_31 WHERE year = \"1927\"",
    "question_en": "Who won the 250cc in 1927?",
    "question_th": "ใครชนะ 250cc ในปี 1927?",
    "context": "CREATE TABLE table_name_31 (year VARCHAR)"
  },
  {
    "answer": "SELECT designated_grand_prix FROM table_name_32 WHERE track = \"granollers\"",
    "question_en": "What grand prix was held at Granollers?",
    "question_th": "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_en": "Who won the 350cc at Sachsenring?",
    "question_th": "ใครชนะ 350cc ที่ซัคเซนริง?",
    "context": "CREATE TABLE table_name_90 (track VARCHAR)"
  },
  {
    "answer": "SELECT fleet_number_s_ FROM table_name_35 WHERE quantity_made = \"13\"",
    "question_en": "Which fleet numbers has quanitity of 13?",
    "question_th": "กองเรือใดมีจำนวน 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_en": "Which wheel arrangement made in year 1900?",
    "question_th": "การจัดเรียงล้อใดที่เกิดขึ้นในปี 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_en": "Which fleet numbers has quantity of 1?",
    "question_th": "กองเรือใดมีปริมาณ 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_en": "what is the score when the partner is florencia labat, the surface is clay, the opponents is laura golarsa ann grossman?",
    "question_th": "คะแนนเมื่อคู่หูคือ ฟลอเรนเซีย ลาบัต พื้นผิวเป็นดินเหนียว ฝ่ายตรงข้ามคือ ลอร่า โกลาร์ซา แอน กรอสแมน?",
    "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_en": "who is the opponents when the surface is clay and the date is 12 july 1992?",
    "question_th": "ฝ่ายตรงข้ามคือใครเมื่อพื้นผิวเป็นดินเหนียวและวันที่ 12 กรกฎาคม 2535?",
    "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_en": "what is the tournament when the outcome is winner and the opponents is kerry-anne guse corina morariu?",
    "question_th": "ทัวร์นาเมนต์จะเป็นอย่างไรเมื่อผลการแข่งขันเป็นผู้ชนะ และคู่แข่งคือเคอร์รี-แอนน์ กูเซ คอรินา โมราริอู?",
    "context": "CREATE TABLE table_name_39 (tournament VARCHAR, outcome VARCHAR, opponents VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_67 WHERE partner = \"alexandra fusai\"",
    "question_en": "what is the score when the partner is alexandra fusai?",
    "question_th": "เมื่อคู่หูคืออเล็กซานดรา ฟูไซ ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_67 (score VARCHAR, partner VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_13 WHERE opponents = \"louise field nathalie herreman\"",
    "question_en": "what is the surface when the opponents are louise field nathalie herreman?",
    "question_th": "พื้นผิวจะเป็นเช่นไรเมื่อฝ่ายตรงข้ามคือ หลุยส์ ฟิลด์ นาตาลี เฮอร์เรมาน?",
    "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_en": "what is the score when the surface is clay and the tournament is san marino?",
    "question_th": "คะแนนเมื่อพื้นผิวเป็นดินเหนียวและการแข่งขันคือซานมาริโน?",
    "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_en": "If the manufacturer is Yamaha, and the laps driven were under 32, what's the average of all grid sizes with that criteria?",
    "question_th": "หากผู้ผลิตคือ Yamaha และรอบที่ขับได้ต่ำกว่า 32 ปี ค่าเฉลี่ยของขนาดกริดทั้งหมดตามเกณฑ์นั้นคือเท่าใด",
    "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_en": "What's the smallest amount of laps that suzuki ran with a grid value of 8?",
    "question_th": "จำนวนรอบที่น้อยที่สุดที่ Suzuki วิ่งด้วยค่ากริด 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_en": "Who were the opponents when the score of the game was 101-105 and the H/A/N was H?",
    "question_th": "ใครคือคู่ต่อสู้เมื่อคะแนนของเกมคือ 101-105 และ H/A/N คือ 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_en": "What is the score of the game against the baltimore bullets on March 14?",
    "question_th": "เกมกับบัลติมอร์ บุลเล็ตส์ วันที่ 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_en": "Who were the opponents when the score was 122-135 and the H/A/N was H?",
    "question_th": "ใครคือคู่ต่อสู้เมื่อสกอร์เป็น 122-135 และ H/A/N คือ 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_en": "What is the score of the game where the record was 22-55?",
    "question_th": "สกอร์ของเกมที่สถิติอยู่ที่ 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_en": "What is the average games that were drawn with ERSC Amberg as name and less than 14 points?",
    "question_th": "เกมโดยเฉลี่ยที่ถูกจับสลากโดยมี ERSC Amberg เป็นชื่อและน้อยกว่า 14 คะแนนคืออะไร?",
    "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_en": "What is the total position with a drawn of 0 and greater than 22 points and a greater than 14 played?",
    "question_th": "ตำแหน่งรวมที่เสมอ 0 มากกว่า 22 แต้ม และเล่นมากกว่า 14 แต้มคือเท่าไร?",
    "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_en": "Which Song has a Weeks at number one larger than 2, and an Issue date(s) of 17 april - 8 may?",
    "question_th": "เพลงใดมีสัปดาห์ในอันดับหนึ่งมากกว่า 2 และออกวันที่ 17 เมษายน - 8 พฤษภาคม",
    "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_en": "Which Song has an Issue date(s) of 29 may - 26 june?",
    "question_th": "เพลงไหนออกวันที่ 29 พ.ค. - 26 มิ.ย.",
    "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_en": "what is the report when the home team is new zealand breakers?",
    "question_th": "รายงานเมื่อเจ้าบ้านเป็นเบรกเกอร์นิวซีแลนด์?",
    "context": "CREATE TABLE table_name_31 (report VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_23 WHERE home_team = \"cairns taipans\"",
    "question_en": "what is the score when the home team is cairns taipans?",
    "question_th": "เมื่อเจ้าบ้านคือแคนส์ ไทปันสกอร์เท่าไหร่?",
    "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_en": "Who is the away team when the venue is cairns convention centre?",
    "question_th": "ทีมเยือนคือใครเมื่อสถานที่คือศูนย์การประชุมแคนส์?",
    "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_en": "who is the away team when the home team is sydney spirit?",
    "question_th": "ทีมเยือนคือใคร เมื่อเจ้าบ้านคือ ซิดนีย์ สปิริต?",
    "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_en": "what is the box score when the home team is melbourne tigers?",
    "question_th": "สกอร์กล่องเท่าไหร่เมื่อเจ้าบ้านเป็นเมลเบิร์นไทเกอร์?",
    "context": "CREATE TABLE table_name_3 (Box VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_42 WHERE date = \"21 september\"",
    "question_en": "who is the away team on 21 september?",
    "question_th": "ทีมเยือนวันที่ 21 กันยายน คือใคร?",
    "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_en": "When Ernie Els placed t2, what was his To par?",
    "question_th": "ตอนที่เออร์นี่ เอลส์วาง t2 พาร์พาร์ของเขาคือเท่าไร?",
    "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_en": "Where did Jay Haas place?",
    "question_th": "Jay Haas อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_62 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_16 WHERE player = \"jim furyk\"",
    "question_en": "Where did Jim Furyk place?",
    "question_th": "Jim Furyk อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_16 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_23 WHERE player = \"jim furyk\"",
    "question_en": "What was Jim Furyk's score?",
    "question_th": "คะแนนของ Jim Furyk คืออะไร?",
    "context": "CREATE TABLE table_name_23 (score VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_53 WHERE to_par = \"+1\"",
    "question_en": "What was the score for the To par of +1?",
    "question_th": "คะแนนพาร์ +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_en": "Who placed in t5 and scored 73-69-68=210?",
    "question_th": "ใครอยู่ใน t5 และได้คะแนน 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_en": "Who was the opponent when the record was 11-6-2?",
    "question_th": "คู่ต่อสู้เมื่อทำสถิติ 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_en": "What is the home team of the match with an attendance greater than 202?",
    "question_th": "เจ้าบ้านนัดไหนมีผู้ชมมากกว่า 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_en": "What is the average attendance of the match with arlesey town as the home team?",
    "question_th": "ผู้เข้าชมโดยเฉลี่ยของแมตช์กับอาร์ลซีย์ทาวน์ในฐานะเจ้าบ้านคือเท่าใด?",
    "context": "CREATE TABLE table_name_68 (attendance INTEGER, home_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_18 WHERE opponent = \"phoenix suns\"",
    "question_en": "What was the score of the game against the phoenix suns?",
    "question_th": "ในเกมกับฟีนิกซ์ซันส์สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_18 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_94 WHERE record = \"0-12\"",
    "question_en": "What was the opponent of the game when the reocrd was 0-12?",
    "question_th": "คู่ต่อสู้ของเกมเมื่อรีแอคคือ 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–3, 6–3\"",
    "question_en": "How many years had a location at Forest Hills and a score of 6–3, 6–3 for John McEnroe?",
    "question_th": "มีที่ตั้งที่ Forest Hills กี่ปีและคะแนน 6–3, 6–3 สำหรับ 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–6, 6–0\"",
    "question_en": "Who is the champion with a score of 7–6, 6–0?",
    "question_th": "ใครคือแชมป์ด้วยสกอร์ 7–6, 6–0?",
    "context": "CREATE TABLE table_name_47 (champion VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT runner_up FROM table_name_59 WHERE year = 1990",
    "question_en": "Who is the runner-up in 1990?",
    "question_th": "ใครคือรองชนะเลิศในปี 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_en": "When was the earliest year that Guillermo Vilas was the runner-up?",
    "question_th": "ปีแรกสุดที่กิเยร์โม่ วิลาสได้รองแชมป์คือเมื่อไหร่?",
    "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_en": "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?",
    "question_th": "แหล่งที่มาใดมีผู้ชนะการแข่งขัน ben adriaenssen / ben van den bogaart และผู้ชนะ gp ของ ben adriaenssen / ben van den bogaart สำหรับวันที่ 1 เมษายน",
    "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_en": "What is the GP winner for the Race winners valentin giraud / nicolas musset, and a place genk?",
    "question_th": "ผู้ชนะ GP สำหรับผู้ชนะการแข่งขันคือ valentin giraud / nicolas musset และอันดับที่ 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_en": "What is the date for a source of result and a place of iffendic?",
    "question_th": "แหล่งที่มาของผลลัพธ์และสถานที่ของ 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_en": "What date has a place of chernivtsi, and a race winners of etienne bax / kaspars stupelis? What",
    "question_th": "วันที่ใดมีสถานที่ของ chernivtsi และผู้ชนะการแข่งขันของ etienne bax / kaspars stupelis? อะไร",
    "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_en": "What is the GP winner with a place of genk, with race winners ben adriaenssen / ben van den bogaart?",
    "question_th": "ผู้ชนะ GP ที่มีตำแหน่งเกงค์กับผู้ชนะการแข่งขัน 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_en": "What is the race winners for the date of 23 june?",
    "question_th": "ผู้ชนะการแข่งขันประจำวันที่ 23 มิถุนายน คือใคร?",
    "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_en": "What date was the opponent in the final Barbara Paulus?",
    "question_th": "คู่ต่อสู้ในรอบสุดท้าย 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_en": "What was the surface that Laura Golarsa and her opponent played on in the final?",
    "question_th": "พื้นผิวที่ Laura Golarsa และคู่ต่อสู้ของเธอเล่นในรอบชิงชนะเลิศคืออะไร?",
    "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_en": "What was the score for the opponent against Katerina Maleeva in the final?",
    "question_th": "คู่ต่อสู้กับ Katerina Maleeva ในรอบชิงชนะเลิศมีคะแนนเท่าไหร่?",
    "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_en": "What's the name that had a moving to Anorthosis Famagusta and a transfer window of winter?",
    "question_th": "ชื่ออะไรที่ได้ย้ายไปอนอร์โธซิส ฟามากุสต้า และตลาดซื้อขายช่วงหน้าหนาว?",
    "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_en": "What is the Nat with a mutual consent loan return and has a free transfer fee?",
    "question_th": "นทคืออะไรพร้อมคืนเงินกู้แบบยินยอมร่วมกันและมีค่าโอนฟรี?",
    "context": "CREATE TABLE table_name_12 (nat VARCHAR, transfer_fee VARCHAR, type VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_10 WHERE nat = \"por\"",
    "question_en": "What is the type of POR?",
    "question_th": "POR ประเภทใด?",
    "context": "CREATE TABLE table_name_10 (type VARCHAR, nat VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_20 WHERE nat = \"mkd\"",
    "question_en": "What's the name of MKD?",
    "question_th": "MKD ชื่ออะไรคะ?",
    "context": "CREATE TABLE table_name_20 (name VARCHAR, nat VARCHAR)"
  },
  {
    "answer": "SELECT SUM(attendance) FROM table_name_58 WHERE date = \"november 24\"",
    "question_en": "What is the sum of the attendance on November 24?",
    "question_th": "จำนวนผู้เข้าร่วมในวันที่ 24 พฤศจิกายนเป็นเท่าใด",
    "context": "CREATE TABLE table_name_58 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_11 WHERE attendance = 526",
    "question_en": "What team did the Flames play against when 526 people attended the game?",
    "question_th": "Flames เล่นกับทีมใดเมื่อมีผู้เข้าร่วม 526 คน?",
    "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_en": "Rick Plant was the man of the match in what competition?",
    "question_th": "Rick Plant เป็นแมนออฟเดอะแมตช์ในการแข่งขันรายการใด",
    "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_en": "Who did the Flames play against when Stephen Lee was the man of the match?",
    "question_th": "Flames เล่นกับใครเมื่อ Stephen Lee เป็นแมนออฟเดอะแมตช์?",
    "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_en": "How many people attended the game when the game was won 4-2?",
    "question_th": "มีกี่คนที่เข้าร่วมเกมเมื่อเกมชนะ 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_en": "For what competition was the venue away the n/a the man of the match?",
    "question_th": "สนามเยือนไม่มีแมนออฟเดอะแมตช์สำหรับการแข่งขันรายการใด?",
    "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_en": "What is BP's lowest sales?",
    "question_th": "ยอดขายต่ำสุดของ BP คืออะไร?",
    "context": "CREATE TABLE table_name_73 (sales__billion_ INTEGER, company VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_80 WHERE date = \"december 2\"",
    "question_en": "What was the final game result that was played on December 2?",
    "question_th": "ผลการแข่งขันนัดสุดท้ายที่เล่นในวันที่ 2 ธันวาคมเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_80 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_94 WHERE game_site = \"rich stadium\"",
    "question_en": "What week was the game played at Rich Stadium?",
    "question_th": "เกมนี้เล่นที่ริช สเตเดียม สัปดาห์ไหน?",
    "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_en": "What is the sum of FA Cup goals when there are 19 league goals?",
    "question_th": "ผลรวมของประตูเอฟเอคัพเมื่อทำได้ 19 ประตูในลีกเป็นเท่าไหร่?",
    "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_en": "Which club has 16 league goals for a total of 20?",
    "question_th": "สโมสรใดยิงได้ 16 ประตูในลีก รวมเป็น 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_en": "How many League Cup goals correspond to 3 FA Cup Goals and a total over 15 for Chesterfield?",
    "question_th": "จำนวนประตูในลีก คัพ เท่ากับ 3 ประตูในเอฟเอ คัพ และรวมกว่า 15 ประตูสำหรับเชสเตอร์ฟิลด์",
    "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_en": "What was the result of the april 6, 2002 game against the greensboro prowlers?",
    "question_th": "ผลการแข่งขันวันที่ 6 เมษายน 2545 กับทีมกรีนสโบโรด้อม ๆ มองๆ เป็นอย่างไร?",
    "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_en": "Which Location has Floors smaller than 27, and a Building of 150 elgin?",
    "question_th": "สถานที่ใดที่มีชั้นเล็กกว่า 27 และอาคารเอลจิน 150 แห่ง",
    "context": "CREATE TABLE table_name_71 (location VARCHAR, floors VARCHAR, building VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_25 WHERE building = \"the rhombus\"",
    "question_en": "Which Status has a Building of the rhombus?",
    "question_th": "สถานะใดมีอาคารเป็นรูปสี่เหลี่ยมขนมเปียกปูน?",
    "context": "CREATE TABLE table_name_25 (status VARCHAR, building VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(floors) FROM table_name_42 WHERE location = \"little italy\"",
    "question_en": "How many floors are in little Italy?",
    "question_th": "ลิตเติ้ลอิตาลีมีกี่ชั้น?",
    "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_en": "What is Country, when Class is \"15 meters\", and when Qualifying Grand Prix is \"Soaring Grand Prix Of United Kingdom\"?",
    "question_th": "ประเทศคืออะไร เมื่อคลาสคือ \"15 เมตร\" และเมื่อการแข่งขันกรังด์ปรีซ์รอบคัดเลือกคือ \"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_en": "What is Class, when Dates is \"22 April - 3 May 2009\"?",
    "question_th": "ชั้นเรียนคืออะไร โดยวันที่คือ \"22 เมษายน - 3 พฤษภาคม 2552\"",
    "context": "CREATE TABLE table_name_20 (class VARCHAR, dates VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_51 WHERE class = \"club\"",
    "question_en": "What is Country, when Class is \"club\"?",
    "question_th": "ประเทศคืออะไร เมื่อคลาสคือ \"คลับ\"?",
    "context": "CREATE TABLE table_name_51 (country VARCHAR, class VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_72 WHERE place = \"torino\"",
    "question_en": "What is Country, when Place is \"Torino\"?",
    "question_th": "ประเทศคืออะไร เมื่อสถานที่คือ \"โตริโน\"",
    "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_en": "WHAT IS THE AVERAGE SQUAD NUMBER WITH MARTIN SMITH, AND LEAGUE GOALS LESS THAN 17?",
    "question_th": "จำนวนทีมโดยเฉลี่ยของ Martin SMITH และเป้าหมายในลีกน้อยกว่า 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_en": "What is No. 5, when No. 9 is Michael, and when Region (Year) is New Hampshire (2010)?",
    "question_th": "หมายเลข 5 คืออะไร เมื่อหมายเลข 9 คือ Michael และเมื่อใดภูมิภาค (ปี) คือนิวแฮมป์เชียร์ (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_en": "What is Region (Year), when No. 7 is William, and when No. 2 is Alexander?",
    "question_th": "ภูมิภาค (ปี) คืออะไร เมื่อหมายเลข 7 คือวิลเลียม และหมายเลข 2 คืออเล็กซานเดอร์เมื่อใด",
    "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_en": "What is No. 10, when No. 1 is Noah, and when No. 9 is Carter?",
    "question_th": "หมายเลข 10 คืออะไร เมื่อหมายเลข 1 คือโนอาห์ และหมายเลข 9 คือคาร์เตอร์",
    "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_en": "What is No. 7, when Region (Year) is Arizona (2010)?",
    "question_th": "หมายเลข 7 คืออะไร เมื่อภูมิภาค (ปี) คือแอริโซนา (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_en": "What is No. 1, when Region (Year) is Mississippi (2010)?",
    "question_th": "หมายเลข 1 คืออะไร เมื่อภูมิภาค (ปี) คือ มิสซิสซิปปี้ (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_en": "What is No. 8, when No. 10 is Hunter?",
    "question_th": "หมายเลข 8 คืออะไร ในเมื่อหมายเลข 10 คือฮันเตอร์?",
    "context": "CREATE TABLE table_name_76 (no_8 VARCHAR, no_10 VARCHAR)"
  },
  {
    "answer": "SELECT money___$__ FROM table_name_73 WHERE player = \"larry nelson\"",
    "question_en": "How much did Larry Nelson win?",
    "question_th": "แลร์รี่ เนลสัน ชนะเท่าไหร่?",
    "context": "CREATE TABLE table_name_73 (money___$__ VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_96 WHERE date = \"sep 12, 1976\"",
    "question_en": "What is Tournament, when Date is \"Sep 12, 1976\"?",
    "question_th": "การแข่งขันคืออะไร เมื่อวันที่คือ \"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_en": "What is Tournament, when Date is \"Sep 25, 1977\"?",
    "question_th": "การแข่งขันคืออะไร เมื่อวันที่คือ \"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_en": "What is Margin of Victory, when Tournament is \"Women's Kemper Open\"?",
    "question_th": "Margin of Victory คืออะไร เมื่อการแข่งขันคือ \"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_en": "What is the No. 8 of the person with a No. 4 of Noah?",
    "question_th": "หมายเลข 8 ของบุคคลที่หมายเลข 4 ของโนอาห์คืออะไร?",
    "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_en": "What is the No. 8 of the person with a No. 4 of Matthew and a No. 7 of Anthony?",
    "question_th": "หมายเลข 8 ของบุคคลที่หมายเลข 4 ของแมทธิว และหมายเลข 7 ของแอนโทนี่คืออะไร?",
    "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_en": "What is the No. 1 of the person with a No. 2 of John?",
    "question_th": "หมายเลข 1 ของบุคคลที่หมายเลข 2 ของจอห์นคืออะไร?",
    "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_en": "What is the No. 6 of the person with a No. 10 of Joshua and a No. 8 of Andrew?",
    "question_th": "หมายเลข 6 ของบุคคลที่หมายเลข 10 ของโจชัวและหมายเลข 8 ของแอนดรูว์คืออะไร?",
    "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_en": "What is the No. 2 of the person with a No. 5 of Ethan and NO. 7 of Jackson?",
    "question_th": "หมายเลข 2 ของบุคคลที่หมายเลข 5 คือ Ethan และ NO 7 แจ็คสัน?",
    "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_en": "What is the No 1 from the Maryland (2008) Region (year)?",
    "question_th": "อันดับ 1 จากภูมิภาคแมริแลนด์ (2008) (ปี) คืออะไร?",
    "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_en": "What was the draw of Maggie Toal?",
    "question_th": "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_en": "What is the highest point total that placed 3rd and has a draw larger than 5?",
    "question_th": "คะแนนรวมสูงสุดที่ได้อันดับที่ 3 และเสมอกันมากกว่า 5 คืออะไร?",
    "context": "CREATE TABLE table_name_84 (points INTEGER, place VARCHAR, draw VARCHAR)"
  },
  {
    "answer": "SELECT gold FROM table_name_18 WHERE year = \"1958\"",
    "question_en": "Who won the gold in 1958?",
    "question_th": "ใครได้รับรางวัลเหรียญทองในปี 2501?",
    "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_en": "What was the host country when the silver was [[|]] (2) and bronze is czechoslovakia (3)?",
    "question_th": "ประเทศเจ้าภาพคือประเทศใดเมื่อเหรียญเงินคือ [[|]] (2) และเหรียญทองแดงคือเชโกสโลวาเกีย (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_en": "Who was the host country in 2007?",
    "question_th": "ใครคือประเทศเจ้าภาพในปี 2550?",
    "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_en": "Who was the host country when bronze is [[|]] (1) and host city is Krynica?",
    "question_th": "ใครคือประเทศเจ้าภาพเมื่อทองแดงคือ [[|]] (1) และเมืองเจ้าภาพคือครีนิกา?",
    "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_en": "What is the result for Boston's road team in game 4?",
    "question_th": "ผลลัพธ์ของทีมโร้ดของบอสตันในเกมที่ 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_en": "Which road team has a result of 117-114?",
    "question_th": "ทีมโรดไหนมีผลสกอร์ 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_en": "What is the road team playing against Boston on April 16?",
    "question_th": "ทีมโร้ดจะเล่นกับบอสตันในวันที่ 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_en": "Which home team is on April 21?",
    "question_th": "เจ้าบ้านทีมไหนวันที่ 21 เมษายน?",
    "context": "CREATE TABLE table_name_64 (home_team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_name_29 WHERE result = \"113-106\"",
    "question_en": "Which game has a result of 113-106?",
    "question_th": "เกมไหนสกอร์ 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_en": "Which home team played against Los Angeles in game 1?",
    "question_th": "เจ้าบ้านทีมใดเล่นกับลอสแองเจลิสในเกมที่ 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_en": "What percentage of other candidates did the county which voted 52.1% for Kerry vote for?",
    "question_th": "เคาน์ตีที่โหวตให้ Kerry โหวตให้ 52.1% โหวตให้ผู้สมัครคนอื่นๆ คิดเป็นกี่เปอร์เซ็นต์",
    "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_en": "How many votes did Kerry get in the county that gave Bush 189,605 votes?",
    "question_th": "Kerry ได้คะแนนเสียงกี่คะแนนในเคาน์ตีที่ให้ Bush 189,605 คะแนน?",
    "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_en": "How many votes went to other candidates in the county that gave 1.9% votes to them, and 160,390 total votes to Bush?",
    "question_th": "มีคะแนนเสียงเท่าไรสำหรับผู้สมัครคนอื่น ๆ ในเคาน์ตีที่ให้คะแนน 1.9% และคะแนนเสียงทั้งหมด 160,390 คะแนนให้บุช",
    "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_en": "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?",
    "question_th": "จำนวนที่นั่งในปี 2548 มีเปอร์เซ็นต์เข้า/ลดรอยพับที่ 50.0% และเขตผู้ว่าการ dhi qar และค่า In/de-crease มากกว่า 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_en": "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?",
    "question_th": "ตั้งชื่อที่นั่งต่ำสุดปี 2010 ซึ่งมีที่นั่งปี 2005 น้อยกว่า 9 และเขตผู้ว่าการอัล mutannana และ In/de-creased มากกว่า 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_en": "Name the average In/de-creased by which has a Governorate of al anbar governorate, and Seats 2005 smaller than 9?",
    "question_th": "ตั้งชื่อค่าเฉลี่ย In/de-crease โดยซึ่งมี Governorate ของ al anbar Governorate และ Seats 2005 เล็กกว่า 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_en": "Name the highest In/de-creased which has a Percentage in/de-crease of 100%, and Seats 2010 larger than 8?",
    "question_th": "ตั้งชื่อ In/de-crease สูงสุดซึ่งมีเปอร์เซ็นต์เข้า/ลด 100% และ Seats 2010 ใหญ่กว่า 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_en": "What player has a score larger than 67?",
    "question_th": "ผู้เล่นคนใดมีคะแนนมากกว่า 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_en": "What is the celtics record after game 33 when they score of the game was 111-108?",
    "question_th": "สถิติของเซลติกส์หลังเกมที่ 33 เป็นอย่างไรบ้างเมื่อพวกเขาทำคะแนนในเกมได้ 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_en": "Which Rider is grid 7?",
    "question_th": "ไรเดอร์คนไหนคือกริด 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_en": "What is the total number of laps done by Massimo Roccoli when his grid was smaller than 4?",
    "question_th": "จำนวนรอบทั้งหมดที่ Massimo Roccoli ทำเมื่อกริดของเขาน้อยกว่า 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_en": "What is the time recorded by David Salom on his Yamaha yzf-r6 when his grid was larger than 1?",
    "question_th": "David Salom บันทึกเสียงบน Yamaha yzf-r6 ของเขาเป็นเวลาเท่าใด โดยที่กริดของเขาใหญ่กว่า 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_en": "What is Stop No., when Destination is [2778] Claisebrook Station Platforms?",
    "question_th": "Stop No. คืออะไร เมื่อปลายทางคือ [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_en": "What is Stopping Pattern, when Platform is 4?",
    "question_th": "รูปแบบการหยุดคืออะไร เมื่อแพลตฟอร์มอยู่ที่ 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_en": "What is Stop No., when Destination is Perth, and when Line is Midland?",
    "question_th": "Stop No. คืออะไร เมื่อปลายทางคือเพิร์ธ และเมื่อสายคือมิดแลนด์",
    "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_en": "Which coach founded the Western Strikers team after 1963?",
    "question_th": "โค้ชคนไหนเป็นผู้ก่อตั้งทีม Western Strikers หลังปี 1963",
    "context": "CREATE TABLE table_name_58 (coach VARCHAR, founded VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT coach FROM table_name_69 WHERE location = \"oakden\"",
    "question_en": "Who is the coach located in Oakden?",
    "question_th": "โค้ชที่อยู่ในโอ๊คเดนคือใคร?",
    "context": "CREATE TABLE table_name_69 (coach VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_82 WHERE coach = \"john kosmina\"",
    "question_en": "Which team has coach John Kosmina?",
    "question_th": "ทีมไหนมีโค้ช จอห์น คอสมิน่า บ้าง?",
    "context": "CREATE TABLE table_name_82 (team VARCHAR, coach VARCHAR)"
  },
  {
    "answer": "SELECT coach FROM table_name_95 WHERE team = \"adelaide galaxy\"",
    "question_en": "Who is the coach for the Adelaide Galaxy team?",
    "question_th": "ใครคือโค้ชของทีมอเดเลด กาแล็กซี?",
    "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_en": "Count the average Wins which has a Class of 250cc, and a Year of 1972?",
    "question_th": "นับชัยชนะโดยเฉลี่ยที่มีคลาส 250cc และปี 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_en": "Name the lowest Wins which has Points of 28, and a Year smaller than 1972?",
    "question_th": "ตั้งชื่อชัยชนะที่ต่ำที่สุดซึ่งมีคะแนน 28 และปีที่น้อยกว่าปี 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_en": "Name the Team which has Points larger than 9, and a Year larger than 1971, and a Class of 250cc?",
    "question_th": "ตั้งชื่อทีมที่มีคะแนนมากกว่า 9 และหนึ่งปีมากกว่าปี 1971 และมีคลาส 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_en": "Name the Wins which has a Class of 350cc, and a Year smaller than 1973?",
    "question_th": "ตั้งชื่อ Wins ซึ่งมีคลาส 350cc และหนึ่งปีที่เล็กกว่าปี 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_en": "How many Points has Wins larger than 0?",
    "question_th": "มีแต้มชนะมากกว่า 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_en": "What kind of Spike has a Name of mia jerkov category:articles with hcards?",
    "question_th": "Spike ประเภทใดที่มีชื่อหมวดหมู่ mia Jerkov: บทความที่มี 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_en": "Name the 2013 club which has a Name of ana grbac category:articles with hcards?",
    "question_th": "ตั้งชื่อสโมสรปี 2013 ซึ่งมีชื่อของ 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šić-jogunica category:articles with hcards\"",
    "question_en": "Name the Spike which has a Name of senna ušić-jogunica category:articles with hcards?",
    "question_th": "ตั้งชื่อ Spike ซึ่งมีชื่อของ senna ušić-jogunica หมวดหมู่:บทความที่มี 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_en": "What was the Overall number for the player with a position of C and a round greater than 7?",
    "question_th": "หมายเลขรวมของผู้เล่นที่มีตำแหน่ง C และรอบที่มากกว่า 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_en": "What was the Overall number that is the lowest, and has a pick greater than 9?",
    "question_th": "หมายเลขรวมที่ต่ำที่สุดและมีตัวเลือกมากกว่า 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_en": "Which team after 2008, with less than 2 podium finished and more than 0 FLAPS, had the lowest numberof races?",
    "question_th": "ทีมใดหลังปี 2008 ซึ่งขึ้นโพเดียมน้อยกว่า 2 โพเดี้ยมและมี FLAPS มากกว่า 0 อัน มีจำนวนการแข่งขันน้อยที่สุด",
    "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_en": "what is the points when the entrant is brabham racing organisation, the year is 1964 and the chassis is brabham bt7?",
    "question_th": "ประเด็นคือเมื่อผู้เข้าแข่งขันเป็นองค์กร brabham racing ปี 1964 และแชสซีคือ 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_en": "who is the entrant when the points is 42 (45) and the chassis is brabham bt20?",
    "question_th": "ใครคือผู้เข้าแข่งขันเมื่อคะแนนอยู่ที่ 42 (45) และแชสซีคือ 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_en": "how many times is the chassis brabham bt33?",
    "question_th": "แชสซี 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_en": "Who was the winner in 2013?",
    "question_th": "ใครคือผู้ชนะในปี 2013?",
    "context": "CREATE TABLE table_name_48 (stage VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT opponents FROM table_name_22 WHERE venue = \"ullevi\"",
    "question_en": "Who was the opponent at Ullevi?",
    "question_th": "คู่ต่อสู้ของอุลเลวีคือใคร?",
    "context": "CREATE TABLE table_name_22 (opponents VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_9 WHERE opponents = \"göteborg\" AND score = \"3-1\"",
    "question_en": "When was Göteborg the opponent with a score of 3-1?",
    "question_th": "โกเทบอร์กเป็นฝ่ายตรงข้ามด้วยสกอร์ 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_en": "Which Finish had a To par of +10?",
    "question_th": "การจบสกอร์ใดมีพาร์ถึง +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_en": "Which years was there a To par of +1?",
    "question_th": "ปีใดบ้างที่มีพาร์ +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ébastien bourdais\" AND laps < 63",
    "question_en": "What were Sébastien Bourdais' lowest points when there were less than 63 laps?",
    "question_th": "จุดต่ำสุดของ Sébastien Bourdais เมื่อมีรอบน้อยกว่า 63 รอบคือเท่าใด",
    "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_en": "What is Position, when Event is 60 m, and when Venue is Budapest , Hungary?",
    "question_th": "ตำแหน่งคืออะไร เมื่อกิจกรรมคือ 60 ม. และเมื่อใดคือบูดาเปสต์ ประเทศฮังการี",
    "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_en": "What is Event, when Position is 6th, and when Year is after 2006?",
    "question_th": "เหตุการณ์คืออะไร เมื่อตำแหน่งอยู่ที่ 6 และเมื่อใดคือปีหลังปี 2549",
    "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_en": "What is the average Year, when Position is 9th, when Event is 100 m, and when Venue is Munich, Germany?",
    "question_th": "ปีเฉลี่ยคือเท่าไร เมื่อตำแหน่งอยู่ที่ 9 เมื่องานอยู่ที่ 100 ม. และเมื่อสถานที่คือเมืองมิวนิก ประเทศเยอรมนี",
    "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_en": "What is the Event, when Year is 2002, and when Competition is European Indoor Championships?",
    "question_th": "เหตุการณ์คืออะไร เมื่อใดคือปี 2002 และเมื่อใดการแข่งขันคือ 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_en": "What is Nation, when Bronze is 1, when Gold is greater than 0, and when Rank is 2?",
    "question_th": "Nation คืออะไร เมื่อ Bronze เป็น 1 เมื่อ Gold มากกว่า 0 และเมื่อ Rank เป็น 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_en": "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?",
    "question_th": "ผลรวมโดยเฉลี่ยคือเท่าใด เมื่อ Bronze มากกว่า 0 เมื่อ Silver มากกว่า 0 เมื่อ Gold มากกว่า 2 และเมื่อ Nation คือสหภาพโซเวียต",
    "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_en": "What is the average Gold, when Nation is Yugoslavia, and when Silver is greater than 0?",
    "question_th": "ทองคำโดยเฉลี่ยคือเท่าไร เมื่อประเทศคือยูโกสลาเวีย และเมื่อเงินมีค่ามากกว่า 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_en": "What is the average Bronze, when Total is 4, and when Silver is less than 2?",
    "question_th": "ค่าเฉลี่ยของทองแดงคือเท่าใด เมื่อคะแนนรวมคือ 4 และเมื่อเงินน้อยกว่า 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_en": "What is the aggregate for the tie with a team 2 of Irtysh?",
    "question_th": "ผลรวมของการเสมอกับทีม 2 ของ 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_en": "What was the aggregate in the match with a team 1 of Dinamo Minsk?",
    "question_th": "ผลรวมในการแข่งขันกับทีม 1 ของ ดินาโม มินสค์ เป็นเท่าไหร่?",
    "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_en": "What is the Java EE compatibility of the 5.2.4 edition?",
    "question_th": "ความเข้ากันได้ของ Java EE ของรุ่น 5.2.4 คืออะไร",
    "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_en": "What is the release date for Eclipse Foundation?",
    "question_th": "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_en": "Which Oracle Corporation product has a Java EE compatibility of 1.4?",
    "question_th": "ผลิตภัณฑ์ Oracle Corporation ใดที่มีความเข้ากันได้กับ Java EE 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_en": "Which edition released on 2007-06-07 has a Java EE compatibility of 5?",
    "question_th": "รุ่นใดที่เปิดตัวเมื่อวันที่ 2550-06-50 มีความเข้ากันได้ของ Java EE ที่ 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_en": "When was Glassfish released?",
    "question_th": "Glassfish เปิดตัวเมื่อไหร่?",
    "context": "CREATE TABLE table_name_15 (release_date VARCHAR, product VARCHAR)"
  },
  {
    "answer": "SELECT license FROM table_name_23 WHERE release_date = \"2009-08\"",
    "question_en": "Which licence has a release date of 2009-08?",
    "question_th": "ใบอนุญาตใดมีวันที่เผยแพร่ในปี 2552-51",
    "context": "CREATE TABLE table_name_23 (license VARCHAR, release_date VARCHAR)"
  },
  {
    "answer": "SELECT semifinalists FROM table_name_28 WHERE tournament = \"paris\"",
    "question_en": "WHO ARE THE SEMIFINALISTS FOR TOURNAMENT OF PARIS?",
    "question_th": "ใครคือผู้เข้ารอบรองชนะเลิศสำหรับทัวร์นาเมนต์ของปารีส?",
    "context": "CREATE TABLE table_name_28 (semifinalists VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT semifinalists FROM table_name_82 WHERE tournament = \"hamburg\"",
    "question_en": "WHO WAS THE SEMIFINALISTS FOR THE HAMBURG TOURNAMENT?",
    "question_th": "ใครคือผู้เข้ารอบรองชนะเลิศสำหรับการแข่งขันฮัมบูร์ก?",
    "context": "CREATE TABLE table_name_82 (semifinalists VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_45 WHERE round = \"sf\"",
    "question_en": "Which opponent had a round of SF?",
    "question_th": "คู่ต่อสู้คนไหนได้รอบ SF?",
    "context": "CREATE TABLE table_name_45 (opponent VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_55 WHERE opponent = \"celtic\"",
    "question_en": "What was the result when the opponent was Celtic?",
    "question_th": "ผลเป็นอย่างไรเมื่อคู่ต่อสู้เป็นเซลติก?",
    "context": "CREATE TABLE table_name_55 (result VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_10 WHERE round = \"r3\"",
    "question_en": "What was the result for round r3?",
    "question_th": "ผลการแข่งขันรอบ 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_en": "How many times have Central Crossing won the OCC Championship?",
    "question_th": "Central Crossing คว้าแชมป์ 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_en": "How many rounds is the fight against Michael Chavez?",
    "question_th": "ชกกับ มิคาเอล ชาเวซ กี่ยก?",
    "context": "CREATE TABLE table_name_46 (round INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_26 WHERE partner = \"pere riba\"",
    "question_en": "What date was the match where Daniel Gimeno-Traver's partner was pere riba?",
    "question_th": "แมตช์วันที่เท่าไหร่ที่คู่หูของ Daniel Gimeno-Traver คือ 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_en": "Ashley Grimes had what to club?",
    "question_th": "Ashley Grimes มีอะไรที่จะคลับ?",
    "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_en": "Who had a transfer fee of released and played the position of DF?",
    "question_th": "ใครมีค่าตัวในการย้ายออกและเล่นตำแหน่ง 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_en": "When was the exit date KiatPrawut Saiwaeo who had a transfer fee of released?",
    "question_th": "เกียรติประวุฒิ สายแวว ที่เสียค่าธรรมเนียมการโอนออกเมื่อไร?",
    "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_en": "What was the date that a player went to the club Doncaster Rovers?",
    "question_th": "วันที่ผู้เล่นไปสโมสรดอนคาสเตอร์โรเวอร์สคือวันที่เท่าไร?",
    "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_en": "Teerasil Dangda who had a to club of released plays what position?",
    "question_th": "ธีรศิลป์ แดงดา ที่ได้สโมสรปล่อยตัว ลงเล่นตำแหน่งอะไร?",
    "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_en": "What was the average points for someone who has played more than 10?",
    "question_th": "คะแนนเฉลี่ยสำหรับผู้ที่เล่นมากกว่า 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_en": "What is L2 Cache, when Model Number is Pentium II 350?",
    "question_th": "L2 Cache คืออะไร เมื่อหมายเลขรุ่นคือ 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_en": "What is Mult, when Model Number is Pentium II 450?",
    "question_th": "Mult คืออะไร เมื่อหมายเลขรุ่นคือ 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_en": "What is Frequency, when Model Number is Pentium II 400?",
    "question_th": "ความถี่คืออะไร เมื่อหมายเลขรุ่นคือ 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_en": "What is Socket, when Voltage is 2.0V, and when Model Number is Pentium II 333?",
    "question_th": "ซ็อกเก็ตคืออะไร เมื่อแรงดันไฟฟ้าเป็น 2.0V และเมื่อหมายเลขรุ่นคือ 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_en": "What is Model Number, when Voltage is 2.0V, and when Frequency is 350 mhz?",
    "question_th": "หมายเลขรุ่นคืออะไร เมื่อแรงดันไฟฟ้าเป็น 2.0V และเมื่อความถี่เป็น 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_en": "How many attended during the game with a score of 80-94?",
    "question_th": "มีผู้เข้าร่วมกี่คนในระหว่างเกมด้วยคะแนน 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_en": "What is the U.S. rap ranking in 2000 of the U.S. 105 single?",
    "question_th": "อันดับแร็พของสหรัฐฯ ในปี 2000 จากซิงเกิล US 105 คืออะไร?",
    "context": "CREATE TABLE table_name_44 (us VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_86 WHERE score = \"28-43\"",
    "question_en": "For the game ending with a score of 28-43, what is the listed as the final record?",
    "question_th": "สำหรับเกมที่จบลงด้วยสกอร์ 28-43 ระบุว่าเป็นสถิติสุดท้ายอย่างไร?",
    "context": "CREATE TABLE table_name_86 (record VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_95 WHERE record = \"0-5\"",
    "question_en": "For the game showing a final record of 0-5, what was the attendance level?",
    "question_th": "สำหรับเกมที่จบสกอร์ 0-5 มีผู้เข้าชมระดับไหน?",
    "context": "CREATE TABLE table_name_95 (attendance VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_65 WHERE opponent = \"at los angeles rams\"",
    "question_en": "For the game where the opponent is listed as At Los Angeles Rams, what was the final score?",
    "question_th": "สำหรับเกมที่คู่ต่อสู้อยู่ในรายชื่อทีม Los Angeles Rams คะแนนสุดท้ายคือเท่าไร?",
    "context": "CREATE TABLE table_name_65 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_66 WHERE record = \"0-1\"",
    "question_en": "What was the result for the game with final record listed as 0-1?",
    "question_th": "ผลลัพธ์ของเกมที่มีสถิติสุดท้ายระบุว่าเป็น 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_en": "Which player has fewer than 3 rounds and the position of (g)?",
    "question_th": "ผู้เล่นคนใดมีน้อยกว่า 3 รอบและตำแหน่ง (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_en": "How many rounds does Colby Robak have with a position of (d)?",
    "question_th": "โคลบี้ โรบัก มีตำแหน่ง (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_en": "Which College/Junior/Club Team (league) does Matthew Bartkowski play for?",
    "question_th": "Matthew Bartkowski เล่นให้กับทีมวิทยาลัย/จูเนียร์/คลับ (ลีก) คนใด",
    "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_en": "What date was the game when the liberty had a record of 12-9?",
    "question_th": "เกมวันที่เท่าไหร่ที่ The Liberty มีสถิติ 12-9?",
    "context": "CREATE TABLE table_name_63 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_45 WHERE score = \"105-72\"",
    "question_en": "What was the record for the game that had a score of 105-72?",
    "question_th": "สถิติของเกมที่มีคะแนน 105-72 คืออะไร?",
    "context": "CREATE TABLE table_name_45 (record VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_56 WHERE record = \"4-4\"",
    "question_en": "What was the date of the game where the record was 4-4?",
    "question_th": "เกมวันที่เท่าไหร่ที่มีสถิติ 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_en": "Who was the away team when Manchester United played at home on 10 February 1951?",
    "question_th": "ทีมเยือนคือใครเมื่อแมนเชสเตอร์ยูไนเต็ดเล่นในบ้านเมื่อวันที่ 10 กุมภาพันธ์ พ.ศ. 2494?",
    "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_en": "Which tie did Huddersfield Town play as an away team?",
    "question_th": "ฮัดเดอร์สฟิลด์ ทาวน์ เสมอทีมเยือน?",
    "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_en": "What is the Country of T6 Place Player Ben Crenshaw?",
    "question_th": "Ben Crenshaw ผู้เล่นอันดับ T6 ประเทศอะไร?",
    "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_en": "What is the Money of the Player with a To par of +3 and Score of 76-69-69-69=283?",
    "question_th": "เงินของผู้เล่นที่มีพาร์ถึง +3 และคะแนน 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_en": "What is the score of the game before January 22 with a 30-7-7 record?",
    "question_th": "สกอร์เกมก่อนวันที่ 22 ม.ค. ด้วยสถิติ 30-7-7 เป็นเท่าไหร่?",
    "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_en": "What is the sum of the games before January 19 with a 27-6-6 record?",
    "question_th": "ผลรวมเกมก่อนวันที่ 19 ม.ค. ด้วยสถิติ 27-6-6 เป็นเท่าไหร่?",
    "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_en": "What is the Frequency, when the Voltage is 3.3 V?",
    "question_th": "ความถี่เป็นเท่าใดเมื่อแรงดันเป็น 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_en": "What is the L1 Cache, when the Model Number is X5-133 ADY?",
    "question_th": "L1 Cache คืออะไร เมื่อหมายเลขรุ่นคือ 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_en": "What is the Model Number, when the Voltage is 3.45 V, and when the Frequency is 133 MHZ?",
    "question_th": "หมายเลขรุ่นคืออะไร เมื่อแรงดันไฟฟ้าเป็น 3.45 V และเมื่อความถี่เป็น 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_en": "What is the Nationality of the Aracataca Ship?",
    "question_th": "เรือ Aracataca มีสัญชาติอะไร",
    "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_en": "WHAT IS THE SAKA ERA WITH MONTHS IN MEDAM?",
    "question_th": "ยุคสะกะที่มีเดือนใน 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 = \"മീനം\"",
    "question_en": "WHAT IS THE SIGN OF ZODIAC OF മീനം?",
    "question_th": "อะไรคือสัญญาณของจักรราศีของമീനം?",
    "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_en": "WHAT IS THE SAKA ERA OF VIRGO?",
    "question_th": "ราศีกันย์คือยุคซากาอะไร?",
    "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_en": "WHAT IS THE GREGORIAN CALENDAR FOR AQUARIUS?",
    "question_th": "ปฏิทินเกรกอเรียนสำหรับราศีกุมภ์คืออะไร?",
    "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–agrahayana\"",
    "question_en": "WHAT IS THE IN MALAYALAM WITH kartika–agrahayana?",
    "question_th": "ในมาลายาลัมกับคาร์ติกา–อากราฮายานาคืออะไร?",
    "context": "CREATE TABLE table_name_61 (in_malayalam VARCHAR, saka_era VARCHAR)"
  },
  {
    "answer": "SELECT airport FROM table_name_77 WHERE iata = \"tbj\"",
    "question_en": "What is the airport when the iata is tbj?",
    "question_th": "สนามบินคืออะไรเมื่อ iata เป็น tbj?",
    "context": "CREATE TABLE table_name_77 (airport VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT iata FROM table_name_89 WHERE airport = \"malta international airport\"",
    "question_en": "what is the iata for malta international airport?",
    "question_th": "iata สำหรับสนามบินนานาชาติมอลตาคืออะไร?",
    "context": "CREATE TABLE table_name_89 (iata VARCHAR, airport VARCHAR)"
  },
  {
    "answer": "SELECT airport FROM table_name_68 WHERE country = \"tunisia\" AND icao = \"dtaa\"",
    "question_en": "what is the airport for the country tunisia with the icao dtaa?",
    "question_th": "สนามบินสำหรับประเทศตูนิเซียที่มี 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_en": "what is the city when the country is libya and the iata is ben?",
    "question_th": "เมืองอะไรเมื่อประเทศคือลิเบียและ iata คือเบน?",
    "context": "CREATE TABLE table_name_57 (city VARCHAR, country VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_1 WHERE city = \"gafsa\"",
    "question_en": "what is the country when the city is gafsa?",
    "question_th": "ประเทศอะไรเมื่อเมืองคือกาฟซา?",
    "context": "CREATE TABLE table_name_1 (country VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT iata FROM table_name_71 WHERE city = \"tripoli\"",
    "question_en": "what is the iata when the city is tripoli?",
    "question_th": "iata คืออะไรเมื่อเมืองคือตริโปลี?",
    "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_en": "Who is the 2nd round opponent when Team 2 is Red Star (D1)?",
    "question_th": "คู่ต่อสู้รอบ 2 คือใครเมื่อทีม 2 คือ 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_en": "When Team 2 was USL Dunkerque (D2), what was the score",
    "question_th": "เมื่อทีม 2 เป็น USL Dunkerque (D2) สกอร์เท่าไหร่",
    "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_en": "What was the team 1 when Red Star (D1) was team 2?",
    "question_th": "ทีม 1 คือทีมอะไร ในเมื่อ Red Star (D1) เป็นทีม 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_en": "Which team has home game with tie of 4?",
    "question_th": "ทีมไหนมีเกมเหย้าเสมอกันที่ 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_en": "what is score of a team with tie of 4?",
    "question_th": "ทีมที่เสมอกัน 4 คะแนนเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_38 (score VARCHAR, tie_no VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_19 WHERE attendance = \"39,592\"",
    "question_en": "What is the score of the game with 39,592 attendance?",
    "question_th": "ผู้เข้าชมเกม 39,592 คน ทำคะแนนได้เท่าไหร่?",
    "context": "CREATE TABLE table_name_19 (score VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_65 WHERE tie_no = \"4\"",
    "question_en": "How many attended the game when the score was tie at 4?",
    "question_th": "มีกี่คนที่เข้าร่วมเกมเมื่อคะแนนเสมอกันที่ 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_en": "Which player was defensive back after round 3?",
    "question_th": "ผู้เล่นคนไหนที่ป้องกันตัวกลับมาหลังยกที่ 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_en": "What was the pick for Bill Gramatica after round 2?",
    "question_th": "Bill Gramatica ถูกเลือกหลังจากรอบที่ 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_en": "What was the record on june 29?",
    "question_th": "บันทึกเมื่อวันที่ 29 มิถุนายนคืออะไร?",
    "context": "CREATE TABLE table_name_25 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_name_36 WHERE date = \"june 20\"",
    "question_en": "What were the high points on june 20?",
    "question_th": "จุดสูงสุดในวันที่ 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_en": "Which Record has a Location/Attendance of palace of auburn hills 8,108?",
    "question_th": "บันทึกใดมีที่ตั้ง/การเข้าร่วมพระราชวังออเบิร์นฮิลส์ 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_en": "Which Game is the lowest one that has a Record of 11-4?",
    "question_th": "เกมใดเป็นเกมที่ต่ำที่สุดที่มีสถิติ 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_en": "Which Date has a Location/Attendance of verizon center 7,587?",
    "question_th": "วันที่ใดมีสถานที่/การเข้าร่วมของ 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_en": "Which High rebounds has a High points of douglas (23)?",
    "question_th": "รีบาวด์สูงใดมีแต้มสูงเท่ากับดักลาส (23)",
    "context": "CREATE TABLE table_name_23 (high_rebounds VARCHAR, high_points VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_62 WHERE opponent = \"seattle\"",
    "question_en": "Which Score has an Opponent of seattle?",
    "question_th": "คะแนนใดมีฝ่ายตรงข้ามของซีแอตเทิล?",
    "context": "CREATE TABLE table_name_62 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_58 WHERE high_points = \"hoffman (16)\"",
    "question_en": "Which Record has a High points of hoffman (16)?",
    "question_th": "บันทึกใดมีคะแนนสูงเท่ากับฮอฟฟ์แมน (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_en": "Which round has a record of 5-3 (1)?",
    "question_th": "รอบไหนมีสกอร์ 5-3(1)?",
    "context": "CREATE TABLE table_name_51 (round INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT djurgården_scorers FROM table_name_21 WHERE venue = \"idrottsparken\"",
    "question_en": "Who were the Djurgarden scorers when the venue was Idrottsparken?",
    "question_th": "ใครคือผู้ทำประตูของยอร์การ์เด้นเมื่อสนามคืออิดรอทส์ปาร์เก้น?",
    "context": "CREATE TABLE table_name_21 (djurgården_scorers VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT series FROM table_name_95 WHERE team = \"gunbroker racing\"",
    "question_en": "what is the series when the team is gunbroker racing?",
    "question_th": "เมื่อทีม 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_en": "what is the team when the make is dodge and the year is after 2008?",
    "question_th": "ทีมงานคือรุ่นไหนครับ รุ่นไหนคือ Dodge และปีหลังปี 2008?",
    "context": "CREATE TABLE table_name_18 (team VARCHAR, make VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT make FROM table_name_88 WHERE year = 2008",
    "question_en": "what is the make for the year 2008?",
    "question_th": "ปี 2551 มีกำหนดอะไรบ้าง?",
    "context": "CREATE TABLE table_name_88 (make VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT SUM(year) FROM table_name_87 WHERE driver = \"kevin lepage\"",
    "question_en": "what is the year when the driver was kevin lepage?",
    "question_th": "คนขับชื่อเควิน เลอเพจคือปีไหน?",
    "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_en": "what is the team when the schedule is limited, year is earlier than 2007 and the driver is jason white?",
    "question_th": "ทีมคือทีมอะไรเมื่อมีกำหนดการจำกัด ปีคือก่อนปี 2550 และคนขับคือเจสัน ไวท์",
    "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_en": "Which rank is the lowest with 37 games and more than 613 points?",
    "question_th": "อันดับไหนต่ำสุดด้วย 37 เกม และมากกว่า 613 แต้ม?",
    "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_en": "What is Grupo Capitol Valladolid's highest rank with more than 34 games?",
    "question_th": "อันดับสูงสุดของ Grupo Capitol Valladolid ที่มีมากกว่า 34 เกมคืออะไร?",
    "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_en": "How many points are there for rank 5 with more than 34 games?",
    "question_th": "อันดับที่ 5 มีมากกว่า 34 เกมมีกี่แต้ม?",
    "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_en": "Where is the kap shui mun bridge?",
    "question_th": "สะพานกั๊บฉุยมุนอยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_35 (location VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_32 WHERE 2013 = \"2r\" AND 2010 = \"1r\"",
    "question_en": "What tournament shows 2013 as 2r, and a 2010 as 1r?",
    "question_th": "ทัวร์นาเมนต์ใดที่แสดงปี 2013 เป็น 2r และปี 2010 เป็น 1r",
    "context": "CREATE TABLE table_name_32 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2013 FROM table_name_77 WHERE 2008 = \"1r\"",
    "question_en": "What shows for 2013 when the 2008 is 1r?",
    "question_th": "อะไรแสดงให้เห็นในปี 2013 เมื่อปี 2008 เป็น 1r?",
    "context": "CREATE TABLE table_name_77 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_49 WHERE 2012 = \"q1\" AND 2010 = \"4r\"",
    "question_en": "What shows for 2011 when 2012 is q1, and a 2010 is 4r?",
    "question_th": "อะไรแสดงให้เห็นในปี 2554 เมื่อปี 2555 เป็นไตรมาส 1 และปี 2553 เป็น 4r",
    "context": "CREATE TABLE table_name_49 (Id VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_4 WHERE 2010 = \"1r\" AND 2008 = \"1r\"",
    "question_en": "What tournament has a 2010 of 1r, and a 2008 of 1r?",
    "question_th": "ทัวร์นาเมนต์ใดที่มี 2010 ของ 1r และ 2008 ของ 1r",
    "context": "CREATE TABLE table_name_4 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_82 WHERE tournament = \"french open\"",
    "question_en": "What shows for 2011 at the French open?",
    "question_th": "รายการเฟรนช์โอเพ่นปี 2554 มีอะไรบ้าง?",
    "context": "CREATE TABLE table_name_82 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2013 FROM table_name_16 WHERE 2012 = \"2r\"",
    "question_en": "What shows for 2013 when 2012 is 2r?",
    "question_th": "อะไรจะแสดงในปี 2013 เมื่อปี 2012 เป็น 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_en": "How many South Asians were there in 2011 in Quebec when there were fewer than 59,510 in 2001?",
    "question_th": "ในปี 2554 มีชาวเอเชียใต้กี่คนในควิเบก ในขณะที่มีจำนวนน้อยกว่า 59,510 คนในปี 2544",
    "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_en": "Which province had fewer than 190 South Asians in 2001 and 115 South Asians in 2011?",
    "question_th": "จังหวัดใดมีชาวเอเชียใต้น้อยกว่า 190 คนในปี 2544 และ 115 คนในปี 2554",
    "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_en": "How many South Asians on average were in Alberta in 2001 and in 2011 had 159,055?",
    "question_th": "ชาวเอเชียใต้โดยเฉลี่ยอยู่ที่อัลเบอร์ตากี่คนในปี 2544 และในปี 2554 มี 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ötzis , austria\"",
    "question_en": "What is Result, when Extra is \"Heptathlon\", and when Venue is \"Götzis , Austria\"?",
    "question_th": "ผลลัพธ์คืออะไร เมื่อ Extra คือ \"Heptathlon\" และเมื่อสถานที่คือ \"Götzis ประเทศออสเตรีย\"",
    "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_en": "What is the total number of Year(s), when Tournament is \"World Championships\"?",
    "question_th": "จำนวนปีทั้งหมดเมื่อการแข่งขันคือ \"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_en": "What is Venue, when Year is 2005, and when Result is 8th?",
    "question_th": "สถานที่คืออะไร เมื่อใดคือปี 2548 และเมื่อใดคือผลลัพธ์ที่ 8",
    "context": "CREATE TABLE table_name_63 (venue VARCHAR, year VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_50 WHERE result = \"18th\"",
    "question_en": "What is Tournament, when Result is 18th?",
    "question_th": "การแข่งขันคืออะไร เมื่อผลการแข่งขันคือวันที่ 18?",
    "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_en": "What is Venue, when Year is after 2003, and when Tournament is \"Hypo-Meeting\"?",
    "question_th": "สถานที่จัดงานคืออะไร เมื่อใดคือปีหลังปี 2003 และเมื่อใดที่การแข่งขันคือ \"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_en": "When the score was  71-71-70-70=282 what was the To par recorded?",
    "question_th": "เมื่อสกอร์อยู่ที่ 71-71-70-70=282 To par บันทึกไว้เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_94 (to_par VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_68 WHERE player = \"tom lehman\"",
    "question_en": "What was the score for Tom Lehman?",
    "question_th": "ทอม เลห์แมน ทำสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_68 (score VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT SUM(november) FROM table_name_40 WHERE game > 23",
    "question_en": "What is the sum of November, when Game is greater than 23?",
    "question_th": "ผลรวมของเดือนพฤศจิกายนเมื่อเกมมีค่ามากกว่า 23 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_40 (november INTEGER, game INTEGER)"
  },
  {
    "answer": "SELECT SUM(november) FROM table_name_55 WHERE game = 17",
    "question_en": "What is the sum of November, when Game is \"17\"?",
    "question_th": "ผลรวมของเดือนพฤศจิกายนเมื่อเกมคือ \"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_en": "What is the highest Game, when Opponent is \"Chicago Black Hawks\", and when November is less than 16?",
    "question_th": "เกมที่สูงที่สุดคือเมื่อฝ่ายตรงข้ามคือ \"ชิคาโกแบล็กฮอกส์\" และเมื่อเดือนพฤศจิกายนน้อยกว่า 16?",
    "context": "CREATE TABLE table_name_44 (game INTEGER, opponent VARCHAR, november VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_87 WHERE total = 297",
    "question_en": "What player has a total of 297?",
    "question_th": "ผู้เล่นคนไหนมีทั้งหมด 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_en": "Which country has a total less than 289 and finished t2?",
    "question_th": "ประเทศใดมียอดรวมไม่ถึง 289 และจบ T2?",
    "context": "CREATE TABLE table_name_22 (country VARCHAR, total VARCHAR, finish VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_89 WHERE finish = \"t35\"",
    "question_en": "Which player finished t35?",
    "question_th": "ผู้เล่นคนไหนจบ 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_en": "What finish has a total of more than 289 and won in 1979?",
    "question_th": "จบรายการไหนมีรวมกว่า 289 และชนะในปี 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_en": "What is Name, when Moving To is \"NEC Nijmegen\"?",
    "question_th": "ชื่ออะไรเมื่อย้ายไปคือ \"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_en": "What is Date From, when Moving To is \"Birmingham City\"?",
    "question_th": "วันที่เริ่มต้นเมื่อย้ายไปคือ \"เมืองเบอร์มิงแฮม\" คืออะไร?",
    "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_en": "What is Pos., when Date To is \"30 June 2009\", and when Name is \"Eddie Johnson\"?",
    "question_th": "Pos. คืออะไร เมื่อถึงวันที่คือ \"30 มิถุนายน 2552\" และเมื่อใดคือ \"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_en": "What is Pos., when Date From is \"28 August 2008\"?",
    "question_th": "Pos. คืออะไร เมื่อ Date From คือ \"28 สิงหาคม 2551\"",
    "context": "CREATE TABLE table_name_8 (pos VARCHAR, date_from VARCHAR)"
  },
  {
    "answer": "SELECT moving_to FROM table_name_18 WHERE name = \"leon andreasen\"",
    "question_en": "What is Moving To, when Name is \"Leon Andreasen\"?",
    "question_th": "อะไรคือ Moving To เมื่อชื่อ \"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_en": "What is Date To, when Name is \"Lee Cook\"?",
    "question_th": "Date To คืออะไร เมื่อชื่อ \"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_en": "When was the oakachoy covered bridge listed?",
    "question_th": "สะพานมีหลังคาโอ๊คคาคอยถูกจดทะเบียนเมื่อใด",
    "context": "CREATE TABLE table_name_34 (listed VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT county FROM table_name_4 WHERE name = \"swann covered bridge\"",
    "question_en": "In which county is the swann covered bridge located?",
    "question_th": "สะพานมีหลังคาหงส์ตั้งอยู่ที่จังหวัดใด",
    "context": "CREATE TABLE table_name_4 (county VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_17 WHERE county = \"blount\" AND location = \"nectar\"",
    "question_en": "Which bridge is located in Nectar, in Blount County?",
    "question_th": "สะพานใดที่ตั้งอยู่ใน Nectar ใน 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_en": "Which county built a bridge in 1934?",
    "question_th": "มณฑลใดสร้างสะพานในปี พ.ศ. 2477",
    "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_en": "In which year did Blount County build a bridge in Cleveland that was listed on 1981-08-20?",
    "question_th": "Blount County สร้างสะพานในคลีฟแลนด์ซึ่งจดทะเบียนเมื่อวันที่ 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–25\"",
    "question_en": "What is the score with a time at 18:00 and a score for set 3 of 13–25?",
    "question_th": "สกอร์เวลา 18.00 น. และสกอร์เซ็ต 3 จาก 13–25 เป็นเท่าไหร่?",
    "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–25\"",
    "question_en": "What is the score for set 2 when the score of set 1 is 19–25?",
    "question_th": "คะแนนของชุดที่ 2 เป็นเท่าใดเมื่อคะแนนของชุดที่ 1 คือ 19–25?",
    "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–25\"",
    "question_en": "How much is the total with a time at 16:00 and score for set 3 of 18–25?",
    "question_th": "รวมเวลา 16.00 น. และคะแนนชุดที่ 3 ของ 18–25 เป็นเท่าใด",
    "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–25\"",
    "question_en": "What is the score for set 2 when the time is 18:00 and the score of set 1 is 18–25?",
    "question_th": "คะแนนชุดที่ 2 เมื่อเวลา 18.00 น. และคะแนนชุดที่ 1 คือ 18–25 เป็นเท่าใด",
    "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–25\"",
    "question_en": "What was the total with a score in set 3 of 13–25?",
    "question_th": "คะแนนรวมในชุดที่ 3 จาก 13–25 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_55 (total VARCHAR, set_3 VARCHAR)"
  },
  {
    "answer": "SELECT champion__seed_ FROM table_name_1 WHERE score = \"79–75 ot\"",
    "question_en": "What was the Champion of the Tournament with a Score of 79–75 OT?",
    "question_th": "อะไรคือแชมป์เปี้ยนของทัวร์นาเมนท์ด้วยคะแนน 79–75 OT?",
    "context": "CREATE TABLE table_name_1 (champion__seed_ VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT champion__seed_ FROM table_name_78 WHERE score = \"65–56\"",
    "question_en": "What was the Champion of the Game with a Score of 65–56?",
    "question_th": "แชมป์ของเกมคืออะไรด้วยคะแนน 65–56",
    "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ō\"",
    "question_en": "Which Manufacturer has a Laps of 21, a Grid larger than 16, and a Rider of akira ryō?",
    "question_th": "ผู้ผลิตรายใดมีรอบ 21 รอบ ตารางใหญ่กว่า 16 และนักแข่งของ akira ryō",
    "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_en": "Which Time/Retired has a Rider of daijiro kato?",
    "question_th": "เวลาใด / เกษียณแล้วมีไรเดอร์ของไดจิโระคาโตะ?",
    "context": "CREATE TABLE table_name_43 (time_retired VARCHAR, rider VARCHAR)"
  },
  {
    "answer": "SELECT manufacturer FROM table_name_49 WHERE rider = \"daijiro kato\"",
    "question_en": "Which Manufacturer has a Rider of daijiro kato?",
    "question_th": "ผู้ผลิตรายใดมี Rider ของ 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_en": "Which Time/Retired has a Manufacturer of yamaha, and a Rider of garry mccoy?",
    "question_th": "เวลาใด / เกษียณอายุมีผู้ผลิตยามาฮ่าและผู้ขับขี่ของ 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_en": "What is the name of the team with round less than 2, and the nationality is the United States?",
    "question_th": "ทีมที่เข้ารอบไม่เกิน 2 ชื่ออะไร และสัญชาติ คือ สหรัฐอเมริกา?",
    "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_en": "What position does John Carlson play?",
    "question_th": "จอห์น คาร์ลสันเล่นตำแหน่งอะไร?",
    "context": "CREATE TABLE table_name_15 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_name_33 WHERE game = 5",
    "question_en": "Who had the highest rebounds on game 5?",
    "question_th": "ใครมีการรีบาวด์สูงสุดในเกมที่ 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_en": "How many Overall went in a round larger than 7 with a pick less than 7?",
    "question_th": "มีกี่คนที่ได้คะแนนรวมในรอบที่มากกว่า 7 โดยมีตัวเลือกน้อยกว่า 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_en": "What is the rank for the player with events greater than 23 and prize money in excess of $823,783?",
    "question_th": "อันดับสำหรับผู้เล่นที่มีกิจกรรมมากกว่า 23 รายการและเงินรางวัลเกิน $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_en": "What is the prize money for the player ranked 1?",
    "question_th": "เงินรางวัลสำหรับผู้เล่นอันดับ 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_en": "What was the lowest round for the KOTC 25: Flaming Fury event?",
    "question_th": "รอบต่ำสุดสำหรับ KOTC 25: Flaming Fury คืออะไร?",
    "context": "CREATE TABLE table_name_82 (round INTEGER, event VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_82 WHERE event = \"kotc 25: flaming fury\"",
    "question_en": "Who was the opponent for the KOTC 25: Flaming Fury event?",
    "question_th": "ใครคือคู่ต่อสู้ของอีเวนต์ KOTC 25: Flaming Fury?",
    "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_en": "Who was the opponent in the WMMA 1: McCorkle vs. Heden event that went more than 1 round?",
    "question_th": "คู่ต่อสู้ในรายการ WMMA 1: McCorkle vs. Heden ที่เกิน 1 รอบคือใคร?",
    "context": "CREATE TABLE table_name_12 (opponent VARCHAR, round VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT res FROM table_name_83 WHERE record = \"25-15\"",
    "question_en": "What was the result when his record was 25-15?",
    "question_th": "ผลลัพธ์คืออะไรเมื่อบันทึกของเขาคือ 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_en": "What is Position, when Round is less than 6, and when Nationality is \"Denmark\"?",
    "question_th": "ตำแหน่งคืออะไร เมื่อรอบน้อยกว่า 6 และเมื่อสัญชาติคือ \"เดนมาร์ก\"?",
    "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_en": "What is Position, when Nationality is \"Canada\", and when Round is greater than 3?",
    "question_th": "ตำแหน่งคืออะไร เมื่อสัญชาติคือ \"แคนาดา\" และเมื่อรอบมากกว่า 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_en": "What is the total number of Round, when College/Junior/Club Team (League) is \"Kelowna Rockets ( WHL )\"?",
    "question_th": "จำนวนรอบทั้งหมดคือเท่าไร เมื่อทีมวิทยาลัย/จูเนียร์/คลับ (ลีก) คือ \"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_en": "What round did the fight last when Mikhail Ilyukhin's record was 15-5?",
    "question_th": "การชกครั้งสุดท้ายเมื่อบันทึกของมิคาอิลอิลยูคินคือ 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_en": "What method did Mikhail Ilyukhin win the fight in round 1 when his record was 13-5?",
    "question_th": "มิคาอิล อิลยูคิน ชนะการชกยกที่ 1 ด้วยสถิติ 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_en": "What was the method of resolution when Mikhail Ilyukhin's record was 4-0?",
    "question_th": "วิธีการแก้ไขเมื่อบันทึกของมิคาอิล อิลยูคินคือ 4-0?",
    "context": "CREATE TABLE table_name_92 (method VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_97 WHERE score = \"123-112\"",
    "question_en": "When was the score 123-112?",
    "question_th": "คะแนน 123-112 เมื่อไหร่?",
    "context": "CREATE TABLE table_name_97 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_63 WHERE score = \"95-118\"",
    "question_en": "Who did they play when the score was 95-118?",
    "question_th": "พวกเขาเล่นกับใครเมื่อสกอร์ 95-118?",
    "context": "CREATE TABLE table_name_63 (opponent VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_11 WHERE score = \"95-114\"",
    "question_en": "Who did they play when the score was 95-114?",
    "question_th": "พวกเขาเล่นกับใครเมื่อสกอร์ 95-114?",
    "context": "CREATE TABLE table_name_11 (opponent VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_38 WHERE score = \"92-134\"",
    "question_en": "When was the score 92-134?",
    "question_th": "คะแนน 92-134 เมื่อไหร่?",
    "context": "CREATE TABLE table_name_38 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_71 WHERE record = \"2-32\"",
    "question_en": "When they were 2-32 what did they score?",
    "question_th": "ตอนอายุ 2-32 ปี พวกเขาทำคะแนนได้เท่าไหร่?",
    "context": "CREATE TABLE table_name_71 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT MAX(to_par) FROM table_name_24 WHERE total < 290",
    "question_en": "When the total was smaller than 290, what was the highest To par?",
    "question_th": "เมื่อผลรวมน้อยกว่า 290 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_en": "What is the total number of To par for Lee Trevino?",
    "question_th": "จำนวนพาร์รวมของลี เทรวิโนคือเท่าไร?",
    "context": "CREATE TABLE table_name_4 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT SUM(to_par) FROM table_name_59 WHERE finish = \"t11\"",
    "question_en": "What is the sum of To par when the Finish is t11?",
    "question_th": "ผลรวมของพาร์เมื่อเข้าเส้นชัยคือ 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_en": "What was Donald Bradman's average runs?",
    "question_th": "การวิ่งเฉลี่ยของ Donald Bradman คืออะไร?",
    "context": "CREATE TABLE table_name_21 (runs INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(runs) FROM table_name_45 WHERE matches > 5",
    "question_en": "What was the highest amount of runs for more than 5 matches?",
    "question_th": "จำนวนการรันสูงสุดสำหรับการแข่งขันมากกว่า 5 นัดคือเท่าใด",
    "context": "CREATE TABLE table_name_45 (runs INTEGER, matches INTEGER)"
  },
  {
    "answer": "SELECT MIN(shot_pct) FROM table_name_2 WHERE blank_ends > 6",
    "question_en": "What is the lowest Shot Pct., when Blank Ends is greater than 6?",
    "question_th": "Shot Pct. ต่ำสุดคือเท่าใด เมื่อ Blank Ends มากกว่า 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_en": "What is Shot Pct., when Stolen Ends is 2?",
    "question_th": "Shot Pct. คืออะไร เมื่อ Stolen Ends คือ 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_en": "What is the total number of Ends Won, when Province is \"Saskatchewan\", and when Stolen Ends is less than 6?",
    "question_th": "จำนวนเอนด์ที่ชนะทั้งหมดเมื่อจังหวัดคือ \"ซัสแคตเชวัน\" และเมื่อเอนด์ที่ถูกขโมยน้อยกว่า 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_en": "On what date were Perth Wildcats the away team?",
    "question_th": "เพิร์ธ ไวลด์แคทส์ นัดเยือนวันไหน?",
    "context": "CREATE TABLE table_name_28 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_84 WHERE score = \"121-113\"",
    "question_en": "On what date was the score 121-113?",
    "question_th": "คะแนน 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_en": "On what date was Adelaide 36ers the home team?",
    "question_th": "อเดเลด 36เซอร์ส จะเป็นเจ้าบ้านวันไหน?",
    "context": "CREATE TABLE table_name_64 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT report FROM table_name_6 WHERE venue = \"townsville entertainment centre\"",
    "question_en": "Which report is for Townsville Entertainment Centre?",
    "question_th": "รายงานใดสำหรับ 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_en": "Which home team had a score of 85-101?",
    "question_th": "เจ้าบ้านทีมไหนมีสกอร์ 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_en": "What was the box core for the Melbourne Tigers?",
    "question_th": "Box Core ของ 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_en": "who is the author when featuring is leela, the master, kraals?",
    "question_th": "ใครเป็นคนแต่งตอนเนื้อเรื่องคือ ลีลา มาสเตอร์ คราลส์?",
    "context": "CREATE TABLE table_name_42 (author VARCHAR, featuring VARCHAR)"
  },
  {
    "answer": "SELECT author FROM table_name_73 WHERE title = \"destination: nerva\"",
    "question_en": "who is the author when the title is destination: nerva?",
    "question_th": "ใครเป็นผู้เขียนเมื่อชื่อเรื่องเป็นปลายทาง: 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_en": "who is featuring when the title is energy of the daleks?",
    "question_th": "ใครเป็นผู้แสดงเมื่อชื่อเรื่องคือ 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_en": "what is the title when the featuring is leela and series sorted is 4s/b?",
    "question_th": "ชื่อเรื่องว่าอะไรคือลีลาและซีรีส์เรียงเป็น 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_en": "Can you tell me the Opponent that has the December of 2?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าฝ่ายตรงข้ามที่มีวันที่ 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_en": "Can you tell me the average December rhat has the Opponent of @ toronto maple leafs?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าเดือนธันวาคมโดยเฉลี่ยมีฝ่ายตรงข้ามของ @ ใบเมเปิ้ลโตรอนโต?",
    "context": "CREATE TABLE table_name_18 (december INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_55 WHERE december = 10",
    "question_en": "Can you tell me the Score that has the December of 10?",
    "question_th": "คุณช่วยบอกคะแนนที่มีวันที่ 10 ธันวาคมหน่อยได้ไหม?",
    "context": "CREATE TABLE table_name_55 (score VARCHAR, december VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_89 WHERE tie_no = 6",
    "question_en": "What was the score when the Tie no was 6?",
    "question_th": "เมื่อเสมอหมายเลข 6 ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_89 (score VARCHAR, tie_no VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_11 WHERE tie_no < 2",
    "question_en": "What was the score when the Tie no less than 2?",
    "question_th": "สกอร์เมื่อเสมอไม่ต่ำกว่า 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_en": "Who was the away team when the home team was Sunderland?",
    "question_th": "ทีมเยือนตอนเจ้าบ้านคือซันเดอร์แลนด์คือใคร?",
    "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_en": "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?",
    "question_th": "ทีมใดที่ชนะมีรอบเร็วที่สุดของ brendon hartley และตำแหน่งโพลของ Oliver turvey และ Circuit of spa-francorchamps และ Winning Driver ของ 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_en": "Which Circuit has the Winning Team of carlin motorsport, and the Winning Driver of oliver turvey, and a Date of 24 march?",
    "question_th": "สนามใดมีทีมผู้ชนะจากคาร์ลินมอเตอร์สปอร์ต และนักแข่งที่ชนะของโอลิเวอร์ เทอร์วีย์ และวันที่ 24 มีนาคม",
    "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_en": "Which Round has the Winning Driver of brendon hartley, and a Date of 27 april?",
    "question_th": "รอบใดที่มีนักแข่งที่ชนะอย่าง Brendon Hartley และวันที่ 27 เมษายน",
    "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_en": "Which Date has a Pole Position of michael devaney?",
    "question_th": "วันไหนมีตำแหน่งโพลของไมเคิล เดวานีย์?",
    "context": "CREATE TABLE table_name_94 (date VARCHAR, pole_position VARCHAR)"
  },
  {
    "answer": "SELECT report FROM table_name_61 WHERE winning_driver = \"emerson fittipaldi\"",
    "question_en": "Which Report has a Winning driver of emerson fittipaldi?",
    "question_th": "รายงานใดมีตัวขับเคลื่อนที่ชนะของ Emerson Fittipaldi?",
    "context": "CREATE TABLE table_name_61 (report VARCHAR, winning_driver VARCHAR)"
  },
  {
    "answer": "SELECT circuit FROM table_name_97 WHERE pole_position = \"andré ribeiro\"",
    "question_en": "Which Circuit has a Pole position of andré ribeiro?",
    "question_th": "สนามใดมีตำแหน่งโพลของ André 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_en": "Which Circuit has a Winning driver of scott pruett?",
    "question_th": "สนามใดมีนักแข่งที่ชนะของ 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_en": "Who's the Winning driver with a Pole position of bryan herta?",
    "question_th": "ใครคือนักแข่งที่ชนะและมีตำแหน่งโพลของไบรอัน เฮอร์ตา?",
    "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_en": "Which Date had a City/Location of vancouver, british columbia?",
    "question_th": "วันที่ใดมีเมือง/ที่ตั้งของแวนคูเวอร์ บริติชโคลัมเบีย",
    "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_en": "Who's the Winning team with a Pole position of robby gordon, and a Date of june 11?",
    "question_th": "ทีมใดเป็นผู้ชนะซึ่งมีตำแหน่งโพลเป็น Robby Gordon และวันที่ 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(ô)ra (we)\"",
    "question_en": "What subject has a plural of am(ô)ra (we)?",
    "question_th": "วิชาใดมีพหูพจน์ am(ô)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_en": "What round was the player drafted from mississippi valley state?",
    "question_th": "ผู้เล่นถูกเกณฑ์ทหารจากรัฐมิสซิสซิปปี้แวลลีย์รอบใด",
    "context": "CREATE TABLE table_name_83 (round VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_13 WHERE position = \"center\"",
    "question_en": "What college was the draft pick from who plays center position?",
    "question_th": "วิทยาลัยใดเป็นผู้เลือกร่างจากผู้ที่เล่นตำแหน่งเซ็นเตอร์",
    "context": "CREATE TABLE table_name_13 (college VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_39 WHERE opponent = \"toronto huskies\"",
    "question_en": "What is the record of the game with the toronto huskies as the opponent?",
    "question_th": "สถิติของเกมที่มีโตรอนโต้ ฮัสกี้เป็นคู่ต่อสู้เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_39 (record VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_53 WHERE date = \"november 14\"",
    "question_en": "Who is the opponent on November 14?",
    "question_th": "คู่ต่อสู้วันที่ 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_en": "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?",
    "question_th": "อะไรคือสถิติของเกมที่มีหมายเลขเกมมากกว่า 7 ที่บอสตันการ์เด้นโดยมีโรลเลอร์ไอน้ำโพรวิเดนซ์เป็นคู่ต่อสู้?",
    "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_en": "What pick in round 5 did the 49ers pick Jim Pilot?",
    "question_th": "49ers เลือกอะไรในรอบที่ 5 เลือก 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_en": "What pick in a round earlier than 4 did UCLA choose their pick?",
    "question_th": "UCLA เลือกอะไรในรอบที่เร็วกว่า 4?",
    "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_en": "What position did pick 36 play?",
    "question_th": "เลือก 36 เล่นตำแหน่งไหน?",
    "context": "CREATE TABLE table_name_45 (position VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT owner FROM table_name_40 WHERE winner = \"miss terrible\"",
    "question_en": "Who is the owner of Miss Terrible?",
    "question_th": "ใครคือเจ้าของมิสเทอร์ริเบิ้ล?",
    "context": "CREATE TABLE table_name_40 (owner VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT MAX(year) FROM table_name_82 WHERE time = \"1:36.69\"",
    "question_en": "What is the most recent year that had a time of 1:36.69?",
    "question_th": "ปีล่าสุดที่มีเวลา 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_en": "What time does the trainer, Todd Pletcher have?",
    "question_th": "ท็อดด์ เพลทเชอร์ เทรนเนอร์มีเวลากี่โมง?",
    "context": "CREATE TABLE table_name_63 (time VARCHAR, trainer VARCHAR)"
  },
  {
    "answer": "SELECT MAX(year) FROM table_name_68 WHERE winner = \"iftiraas\"",
    "question_en": "What is the most recent year that Iftiraas was the winner?",
    "question_th": "ปีล่าสุดที่อิฟติราสเป็นผู้ชนะคืออะไร?",
    "context": "CREATE TABLE table_name_68 (year INTEGER, winner VARCHAR)"
  },
  {
    "answer": "SELECT sport FROM table_name_25 WHERE venue = \"bosse field\"",
    "question_en": "What sport was played at the bosse field?",
    "question_th": "ที่สนามบอสเซ่เล่นกีฬาอะไร?",
    "context": "CREATE TABLE table_name_25 (sport VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT sport FROM table_name_26 WHERE played = \"2008-2010\"",
    "question_en": "What sport was played between the years of 2008-2010?",
    "question_th": "กีฬาใดที่เล่นระหว่างปี 2551-2553?",
    "context": "CREATE TABLE table_name_26 (sport VARCHAR, played VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_17 WHERE team = \"evansville bluecats\"",
    "question_en": "What venue did the team, evansville bluecats play on?",
    "question_th": "ทีม evansville bluecats ลงเล่นที่สนามไหน?",
    "context": "CREATE TABLE table_name_17 (venue VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_75 WHERE played = \"2008-2010\"",
    "question_en": "What team played between the years of 2008-2010?",
    "question_th": "ทีมใดเล่นระหว่างปี 2551-2553?",
    "context": "CREATE TABLE table_name_75 (team VARCHAR, played VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_33 WHERE player = \"craig stadler\"",
    "question_en": "Name the Score of craig stadler?",
    "question_th": "ชื่อคะแนนของเครก สแตดเลอร์เหรอ?",
    "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_en": "Name the Score that has a Place of t5 of tom watson?",
    "question_th": "ชื่อคะแนนที่มีอันดับ t5 ของ ทอม วัตสัน ใช่ไหม?",
    "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_en": "Name the Place with a Score of 72-68=140?",
    "question_th": "ตั้งชื่อสถานที่ด้วยคะแนน 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_en": "Name the Score of jack nicklaus, united states, ?",
    "question_th": "ตั้งชื่อสกอร์ของ แจ็ค นิคลอส สหรัฐอเมริกา ?",
    "context": "CREATE TABLE table_name_13 (score VARCHAR, country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_35 WHERE player = \"seve ballesteros\"",
    "question_en": "Name the Place of seve ballesteros?",
    "question_th": "ตั้งชื่อสถานที่ของเซเว บาเลสเตรอสไหม?",
    "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_en": "Who was No. 9 when Ava was No. 4 and Addison was No. 6?",
    "question_th": "ใครคือหมายเลข 9 เมื่อเอวาคือหมายเลข 4 และแอดดิสันคือหมายเลข 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_en": "What was the No. 6 name when Emma was No. 2 and Sophia was No. 3?",
    "question_th": "หมายเลข 6 ชื่ออะไรเมื่อเอ็มม่าเป็นอันดับ 2 และโซเฟียคือหมายเลข 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_en": "What was the No. 8 name when Chloe was No. 9 and Abigail was No. 7?",
    "question_th": "หมายเลข 8 ชื่ออะไรเมื่อ Chloe คือหมายเลข 9 และ Abigail คือหมายเลข 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_en": "What was the No. 4 name when Madison was No. 5 and Abigail was No. 9?",
    "question_th": "หมายเลข 4 ชื่อเมื่อเมดิสันคือหมายเลข 5 และอบิเกลคือหมายเลข 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_en": "Which player had a to par score of +2?",
    "question_th": "ผู้เล่นคนไหนมีคะแนนพาร์ +2?",
    "context": "CREATE TABLE table_name_66 (player VARCHAR, to_par VARCHAR)"
  },
  {
    "answer": "SELECT SUM(code) FROM table_name_24 WHERE density__inh_km²_ = 621.68 AND land_area__hectares_ > 75.28",
    "question_en": "How many codes have a density of 621.68, and a Land area (hectares) larger than 75.28?",
    "question_th": "มีกี่รหัสที่มีความหนาแน่น 621.68 และพื้นที่ที่ดิน (เฮกตาร์) มากกว่า 75.28",
    "context": "CREATE TABLE table_name_24 (code INTEGER, density__inh_km²_ VARCHAR, land_area__hectares_ VARCHAR)"
  },
  {
    "answer": "SELECT AVG(density__inh_km²_) FROM table_name_33 WHERE land_area__hectares_ = 123.02 AND code > 2356",
    "question_en": "What is the average density with a land area of 123.02, and a Code larger than 2356?",
    "question_th": "ความหนาแน่นเฉลี่ยที่มีพื้นที่ 123.02 และรหัสที่ใหญ่กว่า 2356 คือเท่าใด",
    "context": "CREATE TABLE table_name_33 (density__inh_km²_ INTEGER, land_area__hectares_ VARCHAR, code VARCHAR)"
  },
  {
    "answer": "SELECT AVG(land_area__hectares_) FROM table_name_29 WHERE density__inh_km²_ = 815.48 AND population > 411",
    "question_en": "What is the average land area with a density of 815.48, and a Population larger than 411?",
    "question_th": "พื้นที่ดินเฉลี่ยที่มีความหนาแน่น 815.48 และประชากรมากกว่า 411 คือเท่าใด",
    "context": "CREATE TABLE table_name_29 (land_area__hectares_ INTEGER, density__inh_km²_ VARCHAR, population VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_10 WHERE partnering = \"francesca lubiani\" AND opponent_in_final = \"yuliya beygelzimer / jennifer hopkins\"",
    "question_en": "What is the Date, when Partnering is \"Francesca Lubiani\", and when Opponent in Final is \"Yuliya Beygelzimer / Jennifer Hopkins\"?",
    "question_th": "วันที่คือเมื่อใดที่การเป็นหุ้นส่วนคือ \"Francesca Lubiani\" และเมื่อใดที่ฝ่ายตรงข้ามในรอบชิงชนะเลิศคือ \"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_en": "What is Score, when Outcome is \"winner\", when Partnering is \"Nicole Sewell\", and when Opponent in Final is \"Victoria Davies / Kate Warne-Holland\"?",
    "question_th": "คะแนนคืออะไร เมื่อผลลัพธ์เป็น \"ผู้ชนะ\" เมื่อการจับคู่คือ \"Nicole Sewell\" และเมื่อฝ่ายตรงข้ามในรอบชิงชนะเลิศคือ \"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_en": "What is Tie No., when Away Team is \"Manchester United\"?",
    "question_th": "Tie No. คืออะไร เมื่อทีมเยือนคือ “แมนเชสเตอร์ ยูไนเต็ด”?",
    "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_en": "What is Away Team, when Home Team is \"Ipswich Town\", and when Date is \"6 February 1986\"?",
    "question_th": "ทีมเยือนคืออะไร เมื่อเจ้าบ้านคือ “อิปสวิช ทาวน์” และเมื่อใดคือ “6 กุมภาพันธ์ 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_en": "What is Date, when Home Team is \"Luton Town\"?",
    "question_th": "วันที่เท่าไหร่ เมื่อเจ้าบ้านเป็น “ลูตัน ทาวน์”?",
    "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_en": "What is Away Team, when Date is \"25 January 1986\", and when Tie No is \"6\"?",
    "question_th": "ทีมเยือนคืออะไร เมื่อวันที่คือ \"25 มกราคม 1986\" และเมื่อเสมอไม่ใช่คือ \"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_en": "WHAT IS THE LEAGUE WITH A ROUND LARGER THAN 6?",
    "question_th": "ลีกที่มีรอบใหญ่กว่า 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_en": "WHAT IS THE ROUND FOR ZACH BOYCHUK?",
    "question_th": "รอบของ 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_en": "WHAT IS THE POSITION FOR CANADA, ROUND SMALLER THAN 7, PLAYER ZACH BOYCHUK?",
    "question_th": "ตำแหน่งสำหรับแคนาดา ในรอบที่เล็กกว่า 7 ของผู้เล่น 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_en": "What was the date of week 8?",
    "question_th": "สัปดาห์ที่ 8 คือวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_27 (date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_3 WHERE date = \"september 8, 1985\"",
    "question_en": "What was the result of the September 8, 1985 game?",
    "question_th": "ผลของเกมวันที่ 8 กันยายน 1985 คืออะไร?",
    "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_en": "Which date did the oakland raiders play as the opponent when the Bills first downs were under 28?",
    "question_th": "Oakland Raiders เล่นเป็นคู่ต่อสู้วันที่ใดเมื่อ Bills ดาวน์ครั้งแรกอายุต่ำกว่า 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_en": "Who were the Paraguay scorers on June 15, 2008?",
    "question_th": "ใครคือผู้ทำประตูปารากวัยเมื่อวันที่ 15 มิถุนายน พ.ศ. 2551?",
    "context": "CREATE TABLE table_name_1 (paraguay_scorers VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_56 WHERE finish = \"t14\"",
    "question_en": "What is the To par of the player with a t14 Finish?",
    "question_th": "ค่าพาร์ของผู้เล่นที่จบสกอร์ t14 คืออะไร?",
    "context": "CREATE TABLE table_name_56 (to_par VARCHAR, finish VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_35 WHERE player = \"raymond floyd\"",
    "question_en": "What country is player Raymond Floyd from?",
    "question_th": "เรย์มอนด์ ฟลอยด์ นักเตะจากประเทศใด?",
    "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_en": "What is the Year(s) won from the United States as country with a To Par of +4?",
    "question_th": "ปีที่ชนะจากประเทศสหรัฐอเมริกาในฐานะประเทศที่มีค่าพาร์ +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_en": "Who is the player from the United States and a place of t2?",
    "question_th": "ใครคือผู้เล่นจากสหรัฐอเมริกาและอันดับที่ 2?",
    "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_en": "What's the sum of all values in category 1 when category 3 is equal to 300?",
    "question_th": "ผลรวมของค่าทั้งหมดในหมวด 1 เมื่อหมวด 3 เท่ากับ 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_en": "If category 1 is 0.05, what is category 3?",
    "question_th": "ถ้าหมวด 1 คือ 0.05 แล้วหมวด 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_en": "Which player has an average of 38.22?",
    "question_th": "นักเตะคนไหนมีค่าเฉลี่ย 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_en": "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?",
    "question_th": "จำนวนการแข่งขันสูงสุดสำหรับออสเตรเลียเมื่อประตูมากกว่า 13 ค่าเฉลี่ยน้อยกว่า 23.33 และโบว์ลิ่งที่ดีที่สุดคือ 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_en": "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?",
    "question_th": "ค่าเฉลี่ยรวมของทีมชาติอังกฤษเมื่อประตูน้อยกว่า 18 โบว์ลิ่งที่ดีที่สุดคือ 4/138 และมีการแข่งขันน้อยกว่า 3 นัดเป็นเท่าใด",
    "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_en": "Which To par has a Money ($) larger than 5,500?",
    "question_th": "To par ใดที่มีเงิน ($) มากกว่า 5,500?",
    "context": "CREATE TABLE table_name_48 (to_par VARCHAR, money___$__ INTEGER)"
  },
  {
    "answer": "SELECT score FROM table_name_78 WHERE place = \"4\"",
    "question_en": "Which Score has a Place of 4?",
    "question_th": "คะแนนใดมีอันดับ 4?",
    "context": "CREATE TABLE table_name_78 (score VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT ethnic_group FROM table_name_98 WHERE other = \"5%\"",
    "question_en": "Which ethnic group has 5% of people categorizing religion as other?",
    "question_th": "กลุ่มชาติพันธุ์ใดที่มี 5% ของคนจัดหมวดหมู่ศาสนาเป็นอื่น ๆ",
    "context": "CREATE TABLE table_name_98 (ethnic_group VARCHAR, other VARCHAR)"
  },
  {
    "answer": "SELECT ethnic_group FROM table_name_58 WHERE muslims = \"93%\"",
    "question_en": "Which ehtinc group consists of 93% muslims?",
    "question_th": "กลุ่มชาติพันธุ์ใดที่ประกอบด้วยมุสลิม 93%",
    "context": "CREATE TABLE table_name_58 (ethnic_group VARCHAR, muslims VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_87 WHERE score = \"1 – 1\" AND result = \"2 – 2\"",
    "question_en": "What is the Venue when the score was 1 – 1, and the result was 2 – 2?",
    "question_th": "สนามไหนเมื่อสกอร์เป็น 1 – 1 และผลการแข่งขันเป็น 2 – 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_en": "What is the score of the 2006 Fifa World Cup Qualification?",
    "question_th": "คะแนนฟุตบอลโลก 2006 รอบคัดเลือก เท่าไหร่?",
    "context": "CREATE TABLE table_name_85 (score VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_66 WHERE score = \"3 – 0\"",
    "question_en": "What venue was the game held at when the Score was 3 – 0?",
    "question_th": "เกมนี้จัดขึ้นที่สนามใดเมื่อสกอร์เป็น 3 – 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 – 1\"",
    "question_en": "What is the result of the game when the competition was a friendly match, and the Score was 1 – 1?",
    "question_th": "ผลการแข่งขันนัดกระชับมิตรสกอร์ 1 – 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_en": "What is Race 1, when Race 4 is 1?",
    "question_th": "Race 1 คืออะไร เมื่อ Race 4 เป็น 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_en": "What is Race 2, when Race 1 is 30?",
    "question_th": "Race 2 คืออะไร เมื่อ Race 1 คือ 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_en": "What is Race 2, when Driver is John Faulkner?",
    "question_th": "Race 2 คืออะไร เมื่อนักแข่งคือ 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_en": "What is Driver, when Race 2 is 14?",
    "question_th": "Driver คืออะไร เมื่อ Race 2 คือ 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_en": "What is Race 4, when Race 1 is 28?",
    "question_th": "Race 4 คืออะไร เมื่อ Race 1 คือ 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_en": "What is Race 2, when Race 4 is 28?",
    "question_th": "Race 2 คืออะไร เมื่อ Race 4 คือ 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_en": "What is the score of the copa libertadores group 3 competition round on 2 February 1994?",
    "question_th": "คะแนนการแข่งขันโคปา ลิเบอร์ตาดอเรส กลุ่ม 3 รอบ 2 กุมภาพันธ์ 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_en": "What is the score of the copa libertadores group 4 competition round on 14 March 1972 with universitario as the away team?",
    "question_th": "ผลการแข่งขันโคปา ลิเบอร์ตาดอเรส กลุ่ม 4 รอบ 14 มีนาคม 2515 โดยมีมหาวิทยาลัยเป็นทีมเยือนมีคะแนนเท่าไหร่?",
    "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_en": "What is the venue of season 1983, which had alianza lima as the home team?",
    "question_th": "สนามใดในฤดูกาล 1983 ซึ่งมีอลิอันซา ลิม่าเป็นเจ้าบ้าน?",
    "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_en": "What is the score of the match on 3 March 1988 at the estadio nacional?",
    "question_th": "แมตช์วันที่ 3 มีนาคม 1988 ที่สนามเอสตาดิโอ นาซิอองนาล เป็นอย่างไรบ้าง?",
    "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_en": "What were the Points on December 13?",
    "question_th": "คะแนนในวันที่ 13 ธันวาคมคืออะไร",
    "context": "CREATE TABLE table_name_63 (points INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT established FROM table_name_74 WHERE institution = \"north jersey phoenix\"",
    "question_en": "What is the year established of North Jersey Phoenix?",
    "question_th": "North Jersey Phoenix ก่อตั้งเมื่อปีใด?",
    "context": "CREATE TABLE table_name_74 (established VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT nickname FROM table_name_8 WHERE established = 2009",
    "question_en": "What is the nickname of the school established in 2009?",
    "question_th": "โรงเรียนที่ก่อตั้งในปี 2552 มีชื่อเล่นว่าอะไร?",
    "context": "CREATE TABLE table_name_8 (nickname VARCHAR, established VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_27 WHERE established = 2013",
    "question_en": "What is the location of the school established in 2013?",
    "question_th": "โรงเรียนที่ก่อตั้งในปี 2556 ตั้งอยู่ที่ใด?",
    "context": "CREATE TABLE table_name_27 (location VARCHAR, established VARCHAR)"
  },
  {
    "answer": "SELECT nickname FROM table_name_62 WHERE institution = \"columbia university\"",
    "question_en": "What is the nickname of Columbia University?",
    "question_th": "ชื่อเล่นของมหาวิทยาลัยโคลัมเบียคืออะไร?",
    "context": "CREATE TABLE table_name_62 (nickname VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT method FROM table_name_11 WHERE opponent = \"valentijn overeem\"",
    "question_en": "The match against Valentijn Overeem had what method?",
    "question_th": "แมตช์กับ วาเลนติน โอเวอรีม มีวิธีไหน?",
    "context": "CREATE TABLE table_name_11 (method VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_32 WHERE res = \"win\" AND method = \"tko\"",
    "question_en": "Where was the match held when the result was win, and tko as the method?",
    "question_th": "การแข่งขันจัดขึ้นที่ไหนเมื่อผลชนะ และ tko เป็นวิธีการ?",
    "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_en": "What round did the match go to when the event was Bars - Moscow vs St. Petersburg?",
    "question_th": "การแข่งขันไปรอบใดเมื่องานบาร์ - มอสโก พบ เซนต์ปีเตอร์สเบิร์ก?",
    "context": "CREATE TABLE table_name_92 (round VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_73 WHERE method = \"tko (kick)\"",
    "question_en": "With a method of tko (kick) what is the record of the match?",
    "question_th": "ด้วยวิธีการ tko (เตะ) บันทึกการแข่งขันเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_73 (record VARCHAR, method VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_24 WHERE method = \"tko (cut)\"",
    "question_en": "What round did the match go to when tko (cut) was the method?",
    "question_th": "แมตช์ไปรอบไหนเมื่อ tko (ตัด) เป็นวิธี?",
    "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_en": "what is the place when the score is 68-72-77-74=291?",
    "question_th": "คะแนน 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_en": "how many times is the country united states and the score 72-71-73-73=289?",
    "question_th": "กี่ครั้งแล้วที่ประเทศสหรัฐอเมริกา และคะแนน 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_en": "Who is the player when the to par is more than 11 and the score is 71-71-71-79=292?",
    "question_th": "ใครคือผู้เล่นเมื่อพาร์มากกว่า 11 และสกอร์คือ 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_en": "what is the country when the player is bill nary?",
    "question_th": "เมื่อผู้เล่นคือบิลนารีประเทศอะไร?",
    "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_en": "what is the score when the country is united states and the player is george fazio?",
    "question_th": "เมื่อประเทศเป็นสหรัฐอเมริกาและผู้เล่นคือจอร์จ ฟาซิโอ คะแนนเป็นเท่าไหร่?",
    "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_en": "WHAT IS THE DEATH WHEN BIRTH DATE IS 2 AUGUST 1424?",
    "question_th": "ความตายเมื่อวันเกิดคือวันที่ 2 สิงหาคม 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_en": "WHAT IS THE Ceased to be Duke of Girona THAT HAS PETER IV?",
    "question_th": "อะไรคือสิ่งที่ยุติการเป็น Duke of Girona ที่มี 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_en": "WHAT IS THE BIRTH DATE THAT HAS Ceased to be Duke of Girona OF 21 NOVEMBER 1582?",
    "question_th": "วันเกิดที่พ้นจากการเป็นดยุคแห่งคิโรนาเมื่อวันที่ 21 พฤศจิกายน ค.ศ. 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_en": "WHAT IS THE BIRTH DATE WITH A DEATH OF OCTOBER 1389?",
    "question_th": "วันเกิดที่เสียชีวิตในเดือนตุลาคม ค.ศ. 1389 คืออะไร?",
    "context": "CREATE TABLE table_name_2 (birth VARCHAR, death VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(laps) FROM table_name_54 WHERE rider = \"aleix espargaro\"",
    "question_en": "What is the total number of Laps, when Ride is Aleix Espargaro?",
    "question_th": "จำนวนรอบทั้งหมดเมื่อไรด์คือ 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_en": "What is the County of Howard Street Tunnel?",
    "question_th": "อุโมงค์เคาน์ตีออฟโฮเวิร์ดสตรีทคืออะไร",
    "context": "CREATE TABLE table_name_72 (county VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_58 WHERE built = \"1869\"",
    "question_en": "What is the Location of the Bridge Built in 1869?",
    "question_th": "ที่ตั้งของสะพานที่สร้างขึ้นเมื่อปี พ.ศ. 2412 คืออะไร?",
    "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_en": "What is the date Listed of the B & O Bridge in Washington?",
    "question_th": "วันที่ระบุของสะพาน B & O ในวอชิงตันคือวันที่เท่าไหร่",
    "context": "CREATE TABLE table_name_77 (listed VARCHAR, county VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT listed FROM table_name_46 WHERE built = \"ca.1876\"",
    "question_en": "What is the date Listed of the Bridge Built CA.1876?",
    "question_th": "วันที่ระบุของสะพานที่สร้าง CA.1876 คืออะไร?",
    "context": "CREATE TABLE table_name_46 (listed VARCHAR, built VARCHAR)"
  },
  {
    "answer": "SELECT listed FROM table_name_79 WHERE built = \"1864\"",
    "question_en": "What is the date Listed of the Bridge Built in 1864?",
    "question_th": "วันที่ระบุของสะพานที่สร้างขึ้นในปี 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à\" AND place < 2",
    "question_en": "What is the total number of Draw(s), when Televotes is greater than 1761, when Song is \"Ils Sont Là\", and when Place is less than 2?",
    "question_th": "จำนวนการจับฉลากทั้งหมดคือเท่าไร เมื่อ Televotes มากกว่า 1761 เมื่อเพลงคือ \"Ils Sont Là\" และเมื่ออันดับน้อยกว่า 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_en": "What is the lowest Place, when Televotes is 15424?",
    "question_th": "ตำแหน่งต่ำสุดเมื่อ Televotes คือ 15424 คืออะไร?",
    "context": "CREATE TABLE table_name_50 (place INTEGER, televotes VARCHAR)"
  },
  {
    "answer": "SELECT AVG(place) FROM table_name_14 WHERE song = \"dis oui\"",
    "question_en": "What is the average Place, when Song is \"Dis Oui\"?",
    "question_th": "สถานที่โดยเฉลี่ยคือเท่าไหร่เมื่อซ่งคือ \"ดิสอุย\"?",
    "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_en": "What club received a DF player for free?",
    "question_th": "สโมสรใดได้รับนักเตะ DF ฟรี?",
    "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_en": "Which player was transferred to Reggina?",
    "question_th": "ผู้เล่นคนไหนถูกย้ายไปเรจจิน่า?",
    "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_en": "What is the exit date of the player transferred to Reggina for free?",
    "question_th": "วันที่ออกจากผู้เล่นที่โอนไปยัง Reggina ฟรีคือเมื่อใด",
    "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_en": "What is the lowest position of pilot mario kiessling from Germany?",
    "question_th": "ตำแหน่งต่ำสุดของนักบิน Mario Kiessling จากเยอรมนีคือตำแหน่งใด",
    "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_en": "What is the average position of pilot petr krejcirik, who has less than 11 points?",
    "question_th": "ตำแหน่งเฉลี่ยของนักบิน ปีเตอร์ เครจซิริก ที่คะแนนไม่ถึง 11 คะแนนอยู่ที่เท่าไร?",
    "context": "CREATE TABLE table_name_31 (position INTEGER, points VARCHAR, pilot VARCHAR)"
  },
  {
    "answer": "SELECT career_sr FROM table_name_43 WHERE 1985 = \"1r\"",
    "question_en": "What is the career SR with a 1r in 1985?",
    "question_th": "อาชีพ SR ด้วย 1r ในปี 1985 คืออะไร?",
    "context": "CREATE TABLE table_name_43 (career_sr VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_81 WHERE 1983 = \"3r\"",
    "question_en": "What tournament has a 3r in 1983?",
    "question_th": "ทัวร์นาเมนต์ใดมี 3r ในปี 1983?",
    "context": "CREATE TABLE table_name_81 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 1980 FROM table_name_48 WHERE 1984 = \"1r\" AND 1981 = \"1r\"",
    "question_en": "What is the 1980 value with a 1r in 1984 and a 1r in 1981?",
    "question_th": "ค่า 1980 โดยมี 1r ในปี 1984 และ 1r ในปี 1981 คืออะไร",
    "context": "CREATE TABLE table_name_48 (Id VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_52 WHERE country = \"australia\"",
    "question_en": "What is the finish of Australia?",
    "question_th": "ออสเตรเลียจะจบแบบไหน?",
    "context": "CREATE TABLE table_name_52 (finish VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT total FROM table_name_63 WHERE to_par = \"+4\"",
    "question_en": "What is the total with a +4 to par?",
    "question_th": "ผลรวม +4 พาร์เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_63 (total VARCHAR, to_par VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_57 WHERE to_par = \"+3\"",
    "question_en": "What country has a +3 to par?",
    "question_th": "ประเทศใดมี +3 พาร์?",
    "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_en": "What was the first year that the artist of every little thing ranked lower than 10?",
    "question_th": "ปีแรกที่ศิลปินทุกสิ่งเล็กๆ น้อยๆ ติดอันดับต่ำกว่า 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_en": "Which Championship was louise suggs the runner-up by 3 strokes?",
    "question_th": "หลุยส์แชมป์รายการไหนแซงรองแชมป์ได้ 3 จังหวะ?",
    "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_en": "When was the most recent year that kathy whitworth was the runner-up?",
    "question_th": "ปีล่าสุดที่ Kathy Whitworth ได้รับรางวัลรองชนะเลิศคือเมื่อไหร่?",
    "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_en": "What was the winning score in the u.s. women's open that was won by 5 strokes?",
    "question_th": "สกอร์ชนะ ยูเอส วีเมนส์ โอเพ่น ที่ชนะ 5 สโตรคเป็นเท่าไหร่?",
    "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_en": "What is Record, when High Rebounds is \"Marcus Camby (15)\", and when High Assists is \"Baron Davis (7)\"?",
    "question_th": "Record คืออะไร เมื่อ High Rebounds คือ \"Marcus Camby (15)\" และเมื่อ High Assists คือ \"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_en": "What is Game, when Team is \"Philadelphia\"",
    "question_th": "เกมคืออะไร เมื่อทีมคือ \"ฟิลาเดลเฟีย\"",
    "context": "CREATE TABLE table_name_48 (game VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_name_83 WHERE team = \"@ milwaukee\"",
    "question_en": "What is High Assists, when Team is \"@ Milwaukee\"?",
    "question_th": "High Assists คืออะไร เมื่อทีมคือ \"@ 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_en": "What was the tie number for the round against visiting opponent Chelsea?",
    "question_th": "หมายเลขเสมอกันในรอบนี้กับทีมเยือนเชลซีคือเท่าไร?",
    "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_en": "What was the tie number for the round against visiting opponent Newcastle United?",
    "question_th": "เลขเสมอกันในรอบที่พบกับนิวคาสเซิ่ล ยูไนเต็ด คู่ต่อสู้ที่มาเยือนคือเท่าไร?",
    "context": "CREATE TABLE table_name_53 (tie_no VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_29 WHERE home_team = \"millwall\"",
    "question_en": "What date was Millwall the home team?",
    "question_th": "มิลล์วอลล์เป็นเจ้าบ้านวันไหน?",
    "context": "CREATE TABLE table_name_29 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_36 WHERE away_team = \"leeds united\"",
    "question_en": "What date was Leeds United the away team?",
    "question_th": "ลีดส์ยูไนเต็ดเป็นทีมเยือนวันไหน?",
    "context": "CREATE TABLE table_name_36 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_38 WHERE away_team = \"bolton wanderers\"",
    "question_en": "What was the score when Bolton Wanderers were the away team?",
    "question_th": "เมื่อโบลตันวอนเดอเรอร์สเป็นทีมเยือนสกอร์เท่าไหร่?",
    "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_en": "What is the total of events when the tournament was U.S. Open and the Top-25 was less than 1?",
    "question_th": "เหตุการณ์ทั้งหมดเมื่อทัวร์นาเมนต์คือ US Open และ Top-25 น้อยกว่า 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_en": "How many total wins have 3 as the Top-35 and less than 5 cuts made?",
    "question_th": "ผู้ชนะทั้งหมดมี 3 แต้มในฐานะ 35 อันดับแรกและมีการตัดคะแนนน้อยกว่า 5 ครั้งหรือไม่",
    "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_en": "What is the minimum Top-10 when the Open Championship was the tournament and the wins greater than 0?",
    "question_th": "10 อันดับแรกขั้นต่ำคืออะไรเมื่อ Open Championship เป็นทัวร์นาเมนต์และชนะมากกว่า 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_en": "With wins greater than 0 what is the minimum Top-10?",
    "question_th": "ด้วยการชนะที่มากกว่า 0 อะไรคือ 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_en": "What is the total Top-25 when the events were less than 0?",
    "question_th": "ยอดรวม 25 อันดับแรกเมื่อเหตุการณ์น้อยกว่า 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_en": "Who is the player from the United States with a score of 71-75=146?",
    "question_th": "นักเตะจากสหรัฐอเมริกาคนไหนที่มีคะแนน 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_en": "Who is the player with a 77-68=145 score?",
    "question_th": "นักเตะคนไหนที่มีคะแนน 77-68=145?",
    "context": "CREATE TABLE table_name_56 (player VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_21 WHERE score = 76 - 68 = 144",
    "question_en": "What is the country with a 76-68=144 score?",
    "question_th": "ประเทศใดมีคะแนน 76-68=144 คะแนน?",
    "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_en": "Who is the player in t8 place with a 75-71=146 score?",
    "question_th": "ใครคือผู้เล่นอันดับ 8 ที่มีคะแนน 75-71=146?",
    "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_en": "What is the to par of the player from the United States with a place of t1 and a 76-68=144 score?",
    "question_th": "พาร์ของผู้เล่นจากสหรัฐอเมริกาที่มีอันดับ t1 และคะแนน 76-68=144 คือเท่าไร?",
    "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_en": "What is the country of player lee trevino, who has a to par of +2?",
    "question_th": "ผู้เล่น ลี เทรวิโน อยู่ที่ประเทศอะไร ซึ่งมีพาร์ +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_en": "Who was the pilot at lake dumbleyung?",
    "question_th": "ใครคือนักบินที่ทะเลสาบดัมพลียัง?",
    "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_en": "How fast was the speed during the record set at Coniston Water that was piloted by Malcolm Campbell?",
    "question_th": "ความเร็วระหว่างการบันทึกที่ Coniston Water ซึ่งขับโดย 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–1\"",
    "question_en": "Which Home has an Away of 1–1?",
    "question_th": "บ้านใดมีทีมเยือน 1–1?",
    "context": "CREATE TABLE table_name_36 (home VARCHAR, away VARCHAR)"
  },
  {
    "answer": "SELECT away FROM table_name_99 WHERE season = \"2007–08\"",
    "question_en": "Which Away has a Season of 2007–08?",
    "question_th": "ทีมเยือนใดมีฤดูกาล 2550–08?",
    "context": "CREATE TABLE table_name_99 (away VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_94 WHERE away = \"1–2\"",
    "question_en": "Which Season has an Away of 1–2?",
    "question_th": "ฤดูกาลใดมีทีมเยือน 1–2?",
    "context": "CREATE TABLE table_name_94 (season VARCHAR, away VARCHAR)"
  },
  {
    "answer": "SELECT away FROM table_name_41 WHERE home = \"1–0\"",
    "question_en": "Which Away has a Home of 1–0?",
    "question_th": "ทีมเยือนทีมใดมีเจ้าบ้าน 1–0?",
    "context": "CREATE TABLE table_name_41 (away VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_77 WHERE league = \"bezirksliga\"",
    "question_en": "Which Season has a League of bezirksliga?",
    "question_th": "ฤดูกาลใดที่มีลีกเบเซิร์กสลีกา?",
    "context": "CREATE TABLE table_name_77 (season VARCHAR, league VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_24 WHERE home = \"0–1\"",
    "question_en": "Which Season has a Home of 0–1?",
    "question_th": "ฤดูกาลใดมีเจ้าบ้าน 0–1?",
    "context": "CREATE TABLE table_name_24 (season VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_16 WHERE date = \"2003\"",
    "question_en": "What was the Venue in 2003?",
    "question_th": "สถานที่จัดงานในปี 2546 คืออะไร?",
    "context": "CREATE TABLE table_name_16 (venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_27 WHERE score = \"3–3\"",
    "question_en": "What Competition had a Score of 3–3?",
    "question_th": "การแข่งขันใดมีคะแนน 3–3",
    "context": "CREATE TABLE table_name_27 (competition VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT MIN(round) FROM table_name_18 WHERE opponent = \"rolando delgado\"",
    "question_en": "Name the lowest Round with Opponent of rolando delgado?",
    "question_th": "ตั้งชื่อรอบต่ำสุดกับฝ่ายตรงข้ามของ โรลันโด เดลกาโด?",
    "context": "CREATE TABLE table_name_18 (round INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(round) FROM table_name_73 WHERE location = \"liverpool , england\"",
    "question_en": "Name the total number of Round in liverpool , england?",
    "question_th": "ตั้งชื่อจำนวนรวมรอบใน ลิเวอร์พูล ประเทศอังกฤษ ?",
    "context": "CREATE TABLE table_name_73 (round VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_62 WHERE location = \"chandigarh , india\"",
    "question_en": "Which Event is in chandigarh , india?",
    "question_th": "งานใดจัดขึ้นที่เมืองจันดิการ์ ประเทศอินเดีย",
    "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_en": "Who is the player with a year later than 2007 and the college/high school/club of Arizona?",
    "question_th": "ใครคือผู้เล่นในหนึ่งปีหลังจากปี 2550 และวิทยาลัย/โรงเรียนมัธยม/สโมสรของรัฐแอริโซนา?",
    "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_en": "What is the earliest year of c position player gary bergen?",
    "question_th": "แกรี่ เบอร์เกน ผู้เล่นตำแหน่ง C ปีแรกสุดคือปีใด?",
    "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_en": "What round is sf/sg player sly williams from a year after 1965 from?",
    "question_th": "ผู้เล่น sf/sg เจ้าเล่ห์วิลเลียมส์จากหนึ่งปีหลังปี 1965 มาจากรอบไหน?",
    "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_en": "What is the round of the pf position player from 1996 and the college/high school/club mississippi state?",
    "question_th": "ผู้เล่นตำแหน่ง pf ตั้งแต่ปี 1996 และระดับวิทยาลัย/โรงเรียนมัธยม/สโมสรในรัฐมิสซิสซิปปี้คือรอบใด",
    "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_en": "Which Score has a Visitor of montreal canadiens, and Points of 5?",
    "question_th": "คะแนนใดที่มีผู้เข้าชมชาวแคนาดามอนทรีออล และคะแนน 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_en": "Which Date has a Home of montreal canadiens, and Points larger than 9, and a Decision of price?",
    "question_th": "วันที่ใดมีบ้านของชาวแคนาดามอนทรีออลและคะแนนมากกว่า 9 และการตัดสินใจเรื่องราคา?",
    "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_en": "What is the score for the home team Notts County?",
    "question_th": "สกอร์ของเจ้าบ้าน น็อตต์สเคาน์ตี้ คืออะไร?",
    "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_en": "Which Episode has a Viewers (millions) larger than 11.26, a Weekly Rank of #8, and a Share of 12?",
    "question_th": "ตอนใดที่มีผู้ชม (ล้าน) มากกว่า 11.26, อันดับรายสัปดาห์ที่ 8 และส่วนแบ่ง 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_en": "What is the 2012 with a mini in 2009?",
    "question_th": "ปี 2012 กับมินิในปี 2009 คืออะไร?",
    "context": "CREATE TABLE table_name_3 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2013 FROM table_name_5 WHERE 2009 = \"virgin\"",
    "question_en": "What is the 2013 with virgin in 2009?",
    "question_th": "ปี 2013 กับสาวพรหมจารีในปี 2009 คืออะไร?",
    "context": "CREATE TABLE table_name_5 (Id VARCHAR)"
  },
  {
    "answer": "SELECT MAX(rank) FROM table_name_95 WHERE 2009 = \"xbox\"",
    "question_en": "What is the highest rank of the 2009 xbox?",
    "question_th": "อันดับสูงสุดของ xbox ปี 2009 คืออะไร?",
    "context": "CREATE TABLE table_name_95 (rank INTEGER)"
  },
  {
    "answer": "SELECT 2010 FROM table_name_72 WHERE rank > 15 AND 2011 = \"maserati\"",
    "question_en": "What is the 2010 with a rank higher than 15 and a 2011 maserati?",
    "question_th": "2010 ที่มีอันดับสูงกว่า 15 และ 2011 maserati คืออะไร?",
    "context": "CREATE TABLE table_name_72 (rank VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_70 WHERE points = 23 AND visitor = \"chicago\"",
    "question_en": "What is the record with 23 points and a visitor of Chicago?",
    "question_th": "สถิติ 23 แต้ม กับทีมเยือน ชิคาโก้ คืออะไร?",
    "context": "CREATE TABLE table_name_70 (record VARCHAR, points VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT tied FROM table_name_84 WHERE \"venue\" = \"venue\"",
    "question_en": "What venue had a tie?",
    "question_th": "สถานที่ใดที่เสมอกัน?",
    "context": "CREATE TABLE table_name_84 (tied VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_59 WHERE place = \"t3\" AND country = \"spain\"",
    "question_en": "What was the score in Spain T3?",
    "question_th": "คะแนนในสเปน 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_en": "What score did Lee Trevino get in T1?",
    "question_th": "Lee Trevino ได้คะแนนเท่าไหร่ใน 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_en": "Which player had the score 71-72=143 in Spain?",
    "question_th": "ผู้เล่นคนไหนมีคะแนน 71-72=143 ในสเปน?",
    "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_en": "When curtis strange had a to par +1, what was his score?",
    "question_th": "เมื่อเคอร์ติส สเตรนจ์ มีพาร์ +1 สกอร์ของเขาเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_42 (score VARCHAR, to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_45 WHERE country = \"zimbabwe\"",
    "question_en": "Who is the player for Zimbabwe?",
    "question_th": "ใครคือผู้เล่นของซิมบับเว?",
    "context": "CREATE TABLE table_name_45 (player VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_28 WHERE player = \"greg norman\"",
    "question_en": "What country is Greg Norman from?",
    "question_th": "เกร็ก นอร์แมน มาจากประเทศใด",
    "context": "CREATE TABLE table_name_28 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_93 WHERE player = \"bob tway\"",
    "question_en": "What country is Bob Tway from?",
    "question_th": "Bob Tway มาจากประเทศอะไร?",
    "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_en": "What was the highest number of starts in 2007 when the average start was over 17.6?",
    "question_th": "จำนวนการออกสตาร์ทสูงสุดในปี 2550 เมื่อค่าเฉลี่ยการออกสตาร์ทมากกว่า 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_en": "What is the number of wins when the number of third was 1, points were less than 572 and had less than 16 races?",
    "question_th": "เมื่อจำนวนที่สามเป็น 1 แต้มน้อยกว่า 572 และแข่งน้อยกว่า 16 ครั้งจะมีจำนวนเท่าใด",
    "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_en": "What was the result for the friendly match competition?",
    "question_th": "ผลการแข่งขันนัดกระชับมิตรเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_49 (res VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT team__number1 FROM table_name_17 WHERE res = \"0-3\"",
    "question_en": "What was the team #1 for the match that had a result of 0-3?",
    "question_th": "ทีมอันดับ 1 ของเกมที่ผลสกอร์ 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_en": "what is the 2010 population density for municipio ponce?",
    "question_th": "ความหนาแน่นของประชากรในปี 2010 สำหรับเทศบาลปอนเซคือเท่าใด",
    "context": "CREATE TABLE table_name_83 (municipio VARCHAR)"
  },
  {
    "answer": "SELECT category FROM table_name_86 WHERE nominated_for = \"tween academy: class of 2012\"",
    "question_en": "What's the category for the tween academy: class of 2012 nomination?",
    "question_th": "หมวดหมู่สำหรับ Tween Academy คืออะไร: ชั้นเรียนที่ได้รับการเสนอชื่อเข้าชิงประจำปี 2012",
    "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_en": "How many years was famas awards the award giving body?",
    "question_th": "Famas มอบรางวัลให้กับผู้มอบรางวัลกี่ปี?",
    "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_en": "What's the result for the category of best actor in a supporting role?",
    "question_th": "ผลลัพธ์สำหรับประเภทนักแสดงสมทบชายยอดเยี่ยมคืออะไร?",
    "context": "CREATE TABLE table_name_34 (result VARCHAR, category VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_99 WHERE date = \"december 17\"",
    "question_en": "Which Record has a Date of december 17?",
    "question_th": "บันทึกใดมีวันที่ 17 ธันวาคม?",
    "context": "CREATE TABLE table_name_99 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT streak FROM table_name_38 WHERE team = \"new york knicks\"",
    "question_en": "Which Streak has a Team of new york knicks?",
    "question_th": "Streak ใดมีทีมของ new york knicks?",
    "context": "CREATE TABLE table_name_38 (streak VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_43 WHERE record = \"21–10\"",
    "question_en": "Which Date has a Record of 21–10?",
    "question_th": "วันใดมีบันทึก 21–10?",
    "context": "CREATE TABLE table_name_43 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_74 WHERE record = \"17–8\"",
    "question_en": "Which Team has a Record of 17–8?",
    "question_th": "ทีมใดมีสถิติ 17–8?",
    "context": "CREATE TABLE table_name_74 (team VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_63 WHERE score = \"102–113\"",
    "question_en": "Which Date has a Score of 102–113?",
    "question_th": "วันไหนมีคะแนน 102–113?",
    "context": "CREATE TABLE table_name_63 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_name_80 WHERE streak = \"loss 1\" AND score = \"110–111\"",
    "question_en": "Which Game has a Streak of loss 1, and a Score of 110–111?",
    "question_th": "เกมใดมีการสูญเสียต่อเนื่อง 1 และคะแนน 110–111",
    "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_en": "What is the name of the player who is Sco and moving to greenock morton in the summer?",
    "question_th": "นักเตะชื่อ สโก้ และย้ายไป กรีน็อค มอร์ตัน ในช่วงซัมเมอร์ชื่ออะไร?",
    "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_en": "Where is rory loy moving to?",
    "question_th": "โรรี่ ลอย ย้ายไปไหน?",
    "context": "CREATE TABLE table_name_17 (moving_to VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT transfer_fee FROM table_name_23 WHERE name = \"rory loy\"",
    "question_en": "What is the transfer fee for rory loy?",
    "question_th": "ค่าโอนโรลี่ลอยเท่าไหร่คะ?",
    "context": "CREATE TABLE table_name_23 (transfer_fee VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_89 WHERE visitor = \"toronto\"",
    "question_en": "What is the date of the game with toronto as the visitor?",
    "question_th": "วันที่ของเกมโดยมีโตรอนโตเป็นแขกรับเชิญคือเมื่อใด?",
    "context": "CREATE TABLE table_name_89 (date VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_99 WHERE points < 35 AND home = \"chicago\"",
    "question_en": "What is the date of the game with less than 35 points and chicago as the home team?",
    "question_th": "เกมนี้วันที่เท่าไหร่ที่มีน้อยกว่า 35 แต้มและมีชิคาโกเป็นเจ้าบ้าน?",
    "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_en": "What is the date of the game with pittsburgh as the home team and boston as the visitor team?",
    "question_th": "วันที่เกมกับพิตต์สเบิร์กเป็นเจ้าบ้านและบอสตันเป็นทีมเยือนคือวันไหน?",
    "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_en": "What is the record of the game with 35 points and pittsburgh as the home team?",
    "question_th": "สถิติเกม 35 แต้ม มีพิตส์เบิร์กเป็นเจ้าบ้านเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_77 (record VARCHAR, home VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_13 WHERE player = \"bobby wadkins\"",
    "question_en": "What place did bobby wadkins come in?",
    "question_th": "บ๊อบบี้ แวดกินส์ เข้ามาอยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_13 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MIN(lane) FROM table_name_21 WHERE mark = \"7.66\"",
    "question_en": "What is the lowest Lane, when Mark is 7.66?",
    "question_th": "เลนต่ำสุดคือเมื่อมาร์คอยู่ที่ 7.66?",
    "context": "CREATE TABLE table_name_21 (lane INTEGER, mark VARCHAR)"
  },
  {
    "answer": "SELECT mark FROM table_name_59 WHERE react < 0.148",
    "question_en": "What is Mark, when React is less than 0.148?",
    "question_th": "Mark คืออะไรเมื่อ React น้อยกว่า 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ández\"",
    "question_en": "What is the sum of Land, when React is greater than 0.217, and when Name is Yoel Hernández?",
    "question_th": "ผลรวมของ Land คืออะไร เมื่อ React มากกว่า 0.217 และเมื่อชื่อ Yoel Hernández",
    "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_en": "What is Mark, when Lane is less than 5, and when React is 0.217?",
    "question_th": "Mark คืออะไร เมื่อ Lane น้อยกว่า 5 และเมื่อ React คือ 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_en": "What was the record following game 67?",
    "question_th": "สถิติหลังเกม 67 คืออะไร?",
    "context": "CREATE TABLE table_name_37 (record VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT SUM(february) FROM table_name_57 WHERE opponent = \"@ colorado rockies\"",
    "question_en": "What day in February had an opponent of @ Colorado Rockies?",
    "question_th": "วันไหนในเดือนกุมภาพันธ์ที่มีคู่ต่อสู้ของ @ 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_en": "What was the score of the game with a record of 18-22-13?",
    "question_th": "เกมนี้สกอร์รวม 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–3, 3–6, 6–8\"",
    "question_en": "Which Opponent in the final has a Score of 6–3, 3–6, 6–8?",
    "question_th": "คู่ต่อสู้คนใดในรอบชิงชนะเลิศมีคะแนน 6–3, 3–6, 6–8",
    "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_en": "Which Tournament has a Surface of carpet, and a Date smaller than 1995, and an Opponent in the final of ken flach robert seguso?",
    "question_th": "ทัวร์นาเมนต์ใดที่มีพื้นพรม และมีเดทที่เล็กกว่าปี 1995 และเป็นคู่ต่อสู้ในรอบชิงชนะเลิศของ 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_en": "What time in office does the U.S. Navy have?",
    "question_th": "กองทัพเรือสหรัฐฯ เข้ารับราชการกี่โมง?",
    "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_en": "When did the term end for the U.S. Marine Corps?",
    "question_th": "นาวิกโยธินสหรัฐฯ สิ้นสุดวาระเมื่อใด",
    "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_en": "What is the 2006 figure for Argentina when 2007 is less than 0,15?",
    "question_th": "ตัวเลขปี 2549 ของอาร์เจนตินาเป็นเท่าใดเมื่อปี 2550 น้อยกว่า 0,15",
    "context": "CREATE TABLE table_name_47 (country VARCHAR)"
  },
  {
    "answer": "SELECT AVG(2009) FROM table_name_4 WHERE 2007 > 0 OFFSET 18",
    "question_en": "What is the 2009 average when the 2007 average is more than 0,18?",
    "question_th": "ค่าเฉลี่ยปี 2552 เป็นเท่าใดเมื่อค่าเฉลี่ยปี 2550 มากกว่า 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_en": "How many gains were there for the player who had a loss greater than 57 and a long less than 55?",
    "question_th": "ผู้เล่นที่ขาดทุนมากกว่า 57 และระยะยาวน้อยกว่า 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_en": "What is the lowest Loss for the player named total that has a long greater than 55?",
    "question_th": "การสูญเสียต่ำสุดสำหรับผู้เล่นที่มีชื่อรวมที่มีความยาวมากกว่า 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_en": "What nationality is Kentucky and the player Tayshaun Prince?",
    "question_th": "รัฐเคนตักกี้และผู้เล่น 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_en": "What is the nationality of Duke?",
    "question_th": "ดุ๊กมีสัญชาติอะไร?",
    "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_en": "What was the nationality of a point guard position in 1999-2001?",
    "question_th": "ตำแหน่งพอยต์การ์ดในปี 2542-2544 มีสัญชาติอะไร",
    "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_en": "What is the position of Tayshaun Prince?",
    "question_th": "เจ้าชาย Tayshaun ดำรงตำแหน่งอะไร?",
    "context": "CREATE TABLE table_name_69 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT parent FROM table_name_96 WHERE order = 6",
    "question_en": "Who was the parent on the order of 6?",
    "question_th": "ใครคือผู้ปกครองตามลำดับ 6?",
    "context": "CREATE TABLE table_name_96 (parent VARCHAR, order VARCHAR)"
  },
  {
    "answer": "SELECT husband_dates FROM table_name_54 WHERE date_married = \"1858\"",
    "question_en": "Who was the husband date that was married in 1858?",
    "question_th": "ใครคือคู่สามีภรรยาที่แต่งงานกันในปี พ.ศ. 2401?",
    "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_en": "Can you tell me the Record that has the Opponent of vs. hamilton tiger cats?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมถึงบันทึกที่มีฝ่ายตรงข้ามกับแมวเสือแฮมิลตัน?",
    "context": "CREATE TABLE table_name_55 (record VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_89 WHERE date = \"sun, sept 9\"",
    "question_en": "Can you tell me the Opponent that has the Date of sun, sept 9?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าฝ่ายตรงข้ามที่มีวันที่พระอาทิตย์ 9 กันยายน?",
    "context": "CREATE TABLE table_name_89 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_65 WHERE player = \"scott hoch\"",
    "question_en": "Which country is Scott Hoch from?",
    "question_th": "Scott Hoch มาจากประเทศใด",
    "context": "CREATE TABLE table_name_65 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_64 WHERE country = \"spain\"",
    "question_en": "What is the place of the player from Spain?",
    "question_th": "นักเตะจากสเปนอยู่ตำแหน่งไหน?",
    "context": "CREATE TABLE table_name_64 (place VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_53 WHERE record = \"12-57\"",
    "question_en": "What is Score, when Record is 12-57?",
    "question_th": "Score คืออะไร เมื่อสถิติอยู่ที่ 12-57?",
    "context": "CREATE TABLE table_name_53 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_31 WHERE record = \"12-58\"",
    "question_en": "What is Date, when Record is 12-58?",
    "question_th": "วันที่คืออะไร เมื่อบันทึกเป็น 12-58",
    "context": "CREATE TABLE table_name_31 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_85 WHERE date = \"february 5\"",
    "question_en": "What is Score, when Date is February 5?",
    "question_th": "Score คืออะไร เมื่อเป็นวันที่ 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_en": "What is H/A/N, when Score is 104-109?",
    "question_th": "H/A/N คืออะไร เมื่อคะแนนคือ 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_en": "What is Score, when Opponent is Portland Trail Blazers, and when Record is 12-58?",
    "question_th": "Score คืออะไร เมื่อฝ่ายตรงข้ามคือ Portland Trail Blazers และเมื่อสถิติอยู่ที่ 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_en": "What is H/A/N when Date is February 24?",
    "question_th": "H/A/N คืออะไรในวันที่ 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_en": "What is the last game of the season that has the record 0-1-0?",
    "question_th": "เกมสุดท้ายของฤดูกาลที่มีสถิติ 0-1-0 คืออะไร?",
    "context": "CREATE TABLE table_name_92 (game INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT decision FROM table_name_73 WHERE date = 1",
    "question_en": "Who had the decision goal when the date was 1?",
    "question_th": "ใครมีเป้าหมายในการตัดสินใจเมื่อถึงวันที่ 1?",
    "context": "CREATE TABLE table_name_73 (decision VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT decision FROM table_name_83 WHERE record = \"7-7-2\"",
    "question_en": "Who had the decision goal when the record was 7-7-2?",
    "question_th": "ใครมีเป้าหมายในการตัดสินใจเมื่อสถิติเป็น 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_en": "What was the first game in which Weekes scored the decision goal and the record was 7-4-2?",
    "question_th": "เกมแรกที่วีคส์ยิงประตูตัดสินและสถิติคือ 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_en": "What's the total number of points scored during the 1951 NSWRFL Grand Final?",
    "question_th": "คะแนนรวมที่ได้ในระหว่างรอบชิงชนะเลิศ NSWRFL ปี 1951 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_3 (points VARCHAR, details VARCHAR)"
  },
  {
    "answer": "SELECT premiers FROM table_name_17 WHERE details = \"1951 nswrfl grand final\"",
    "question_en": "Which premier team played the 1951 NSWRFL Grand Final?",
    "question_th": "ทีมชั้นนำทีมใดที่เล่นรอบชิงชนะเลิศ NSWRFL ปี 1951?",
    "context": "CREATE TABLE table_name_17 (premiers VARCHAR, details VARCHAR)"
  },
  {
    "answer": "SELECT details FROM table_name_31 WHERE points = 36",
    "question_en": "During which competition were a total of 36 points scored?",
    "question_th": "การแข่งขันรายการใดมีคะแนนรวม 36 คะแนน?",
    "context": "CREATE TABLE table_name_31 (details VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT SUM(points) FROM table_name_80 WHERE premiers = \"brisbane broncos\"",
    "question_en": "What's the total sum of points scored by the Brisbane Broncos?",
    "question_th": "บริสเบน บรองโกส์ ทำคะแนนรวมได้เท่าไหร่?",
    "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_en": "What is the premier team that has 38 points and won with a score of 38-0?",
    "question_th": "ทีมพรีเมียร์ที่มี 38 แต้ม ชนะด้วยสกอร์ 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_en": "What was the tie no when the away team was northwich victoria?",
    "question_th": "อะไรคือการไม่เสมอกันเมื่อทีมเยือนพบกับนอร์ธวิช วิกตอเรีย?",
    "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_en": "What was the attendance for the match where cambridge united was the home team?",
    "question_th": "แมตช์ที่เคมบริดจ์ ยูไนเต็ด เป็นเจ้าบ้านเข้าร่วมแข่งขันเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_55 (attendance VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_name_90 WHERE award = \"inte awards\"",
    "question_en": "How many times was the award inte awards?",
    "question_th": "รางวัล 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_en": "what is the work when the result is won and the year is after 2002?",
    "question_th": "งานอะไรเมื่อผลชนะและปีหลังปี 2545?",
    "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_en": "what is the work when the result is won and the year is before 2003?",
    "question_th": "งานอะไรเมื่อผลชนะและปีก่อนปี 2546?",
    "context": "CREATE TABLE table_name_36 (work VARCHAR, result VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_16 WHERE opposing_team = \"natal\"",
    "question_en": "Which venue had the opposing team Natal?",
    "question_th": "สนามไหนมีทีมตรงข้ามนาตาล?",
    "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_en": "What day was the against 22 and the status tour match?",
    "question_th": "แข่งกับ 22 และนัดทัวร์สเตตัสวันไหน?",
    "context": "CREATE TABLE table_name_51 (date VARCHAR, status VARCHAR, against VARCHAR)"
  },
  {
    "answer": "SELECT AVG(attendance) FROM table_name_25 WHERE week = 8",
    "question_en": "Which Attendance has a Week of 8?",
    "question_th": "ผู้เข้าร่วมคนใดมีสัปดาห์ที่ 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_en": "Which Opponent that has a Week smaller than 7 on september 12, 1988?",
    "question_th": "ฝ่ายตรงข้ามคนใดที่มีสัปดาห์น้อยกว่า 7 ในวันที่ 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_en": "When has a Result of w 41-27?",
    "question_th": "เมื่อไรจะมีผลลัพธ์ของ 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_en": "Which Weight (kg) has a Manufacturer of fujitsu, and a Model of lifebook p1610?",
    "question_th": "น้ำหนัก (กก.) ใดที่มีผู้ผลิตฟูจิตสึ และรุ่น 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_en": "Which Display size (in) has a Model of versapro vy10f/bh-l?",
    "question_th": "ขนาดหน้าจอ (นิ้ว) ของ 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_en": "Which Display size (in) has a Model of vaio pcg-u3?",
    "question_th": "ขนาดหน้าจอ (นิ้ว) ของ 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_en": "What method was used in the match that went to round 1, and had a 6-3-1 record?",
    "question_th": "นัดที่ไปยกที่ 1 มีสถิติ 6-3-1 ใช้วิธีไหน?",
    "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élio\"",
    "question_en": "In the match against Marcus Aurélio with a method of decision (unanimous), what was the results?",
    "question_th": "ในการแข่งขันกับ มาร์คุส ออเรลิโอ ด้วยวิธีการตัดสิน (เป็นเอกฉันท์) ผลเป็นอย่างไรบ้าง?",
    "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_en": "Where was the Deep - 30 Impact event held?",
    "question_th": "งาน Deep - 30 Impact จัดขึ้นที่ไหน?",
    "context": "CREATE TABLE table_name_55 (location VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT SUM(diameter__km_) FROM table_name_25 WHERE latitude = \"62.7n\"",
    "question_en": "COunt the sum of Diameter (km) which has a Latitude of 62.7n?",
    "question_th": "นับผลรวมของเส้นผ่านศูนย์กลาง (กม.) ซึ่งมีละติจูด 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_en": "WHich Name origin has a Longitude of 332.5e?",
    "question_th": "ที่มาของชื่อใดมีลองจิจูดที่ 332.5e",
    "context": "CREATE TABLE table_name_94 (name VARCHAR, longitude VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_63 WHERE opponent = \"dustin hazelett\"",
    "question_en": "In which round was Dustin Hazelett the opponent?",
    "question_th": "ดัสติน ฮาเซเลตต์เป็นคู่ต่อสู้ในรอบใด",
    "context": "CREATE TABLE table_name_63 (round VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT tv_time FROM table_name_89 WHERE opponent = \"at cincinnati bengals\"",
    "question_en": "What is TV Time, when Opponent is At Cincinnati Bengals?",
    "question_th": "เวลาทีวีคืออะไร เมื่อฝ่ายตรงข้ามอยู่ที่ 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_en": "What is TV Time, when Date is December 22, 1996?",
    "question_th": "เวลาทีวีคือวันที่ 22 ธันวาคม 2539 เมื่อใด",
    "context": "CREATE TABLE table_name_91 (tv_time VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_32 WHERE opponent = \"cincinnati bengals\"",
    "question_en": "What is Result, when Opponent is Cincinnati Bengals?",
    "question_th": "ผลลัพธ์คืออะไร เมื่อฝ่ายตรงข้ามคือ Cincinnati Bengals?",
    "context": "CREATE TABLE table_name_32 (result VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_66 WHERE game = 54",
    "question_en": "What was their record bfore game 54?",
    "question_th": "สถิติก่อนเกม 54 ของพวกเขาเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_66 (record VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_name_52 WHERE team = \"chicago\"",
    "question_en": "Who had the most rebounds in the game against Chicago?",
    "question_th": "ใครมีการรีบาวน์มากที่สุดในเกมกับชิคาโก?",
    "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_en": "What was the lowest attendance at the game against chicago when conklin made the decision?",
    "question_th": "อะไรคือจำนวนผู้เข้าร่วมในเกมกับชิคาโกที่ต่ำที่สุดเมื่อคอนคลินตัดสินใจ?",
    "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_en": "For Tie #2, who was the home team?",
    "question_th": "สำหรับเสมอ #2 เจ้าบ้านคือใคร?",
    "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_en": "What was the final score for the match where Hereford United was the home team?",
    "question_th": "สกอร์สุดท้ายของเกมที่เฮริฟอร์ดยูไนเต็ดเป็นเจ้าบ้านเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_57 (score VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_76 WHERE tie_no = \"18\"",
    "question_en": "In Tie #18, who was the away team?",
    "question_th": "เสมอ #18 ทีมเยือนคือใคร?",
    "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_en": "In Tie #19, what was the name of the away team?",
    "question_th": "เสมอ #19 ทีมเยือนชื่ออะไร?",
    "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_en": "What is the Tie number for the match where Dartford was the hone team?",
    "question_th": "หมายเลขเสมอกันของแมตช์ที่ดาร์ทฟอร์ดเป็นทีมเหลาคืออะไร?",
    "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_en": "In the match played against Telford United, who was the home team?",
    "question_th": "แมตช์นี้พบกับ เทลฟอร์ด ยูไนเต็ด เจ้าบ้านคือทีมไหน?",
    "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_en": "What is Position, when Class is Sophomore, and when Player is Shaquille O'Neal Category:Articles With hCards?",
    "question_th": "ตำแหน่งคืออะไร เมื่อคลาสเป็นนักเรียนปีที่สอง และเมื่อผู้เล่นคือ Shaquille O'Neal หมวดหมู่:บทความที่มี 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_en": "What is Player, when Class is \"senior\", when Position is \"shooting guard\", and when School is \"Bradley\"?",
    "question_th": "ผู้เล่นคืออะไร เมื่อคลาสเป็น \"อาวุโส\" เมื่อตำแหน่งเป็น \"ผู้พิทักษ์การยิง\" และเมื่อโรงเรียนคือ \"แบรดลีย์\"?",
    "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_en": "What is Position, when Player is \"Kevin Durant category:articles with hCards\"?",
    "question_th": "ตำแหน่งคืออะไร เมื่อผู้เล่นอยู่ในหมวดหมู่ \"Kevin Durant: บทความที่มี hCards\"",
    "context": "CREATE TABLE table_name_71 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_71 WHERE date = \"august 23, 2004\"",
    "question_en": "What is the Score of the match on August 23, 2004?",
    "question_th": "สกอร์การแข่งขันวันที่ 23 สิงหาคม 2547 เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_71 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_70 WHERE tournament = \"spain f32, gran canaria\"",
    "question_en": "What was the Score of the Spain F32, Gran Canaria Tournament?",
    "question_th": "คะแนนของสเปน 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–4, 6–3\"",
    "question_en": "On what Surface was the match with a Score of 6–4, 6–3 and Runner-up Outcome played?",
    "question_th": "การแข่งขัน Surface ใดที่มีคะแนน 6–4, 6–3 และผลรองชนะเลิศเล่นบน Surface ใด",
    "context": "CREATE TABLE table_name_30 (surface VARCHAR, outcome VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_7 WHERE partner = \"andoni vivanco\"",
    "question_en": "What is the Outcome of the match with Partner Andoni Vivanco?",
    "question_th": "ผลการแข่งขันกับคู่หูอันโดนี่ วิวานโกเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_7 (outcome VARCHAR, partner VARCHAR)"
  },
  {
    "answer": "SELECT Leading AS scorer FROM table_name_90 WHERE score = \"96-87\"",
    "question_en": "Who was the Leading Scorer in the Game with a Score of 96-87?",
    "question_th": "ใครคือผู้ทำประตูสูงสุดในเกมด้วยคะแนน 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_en": "What Country with a MC Format has a ATCO Records Label?",
    "question_th": "ประเทศใดที่มีรูปแบบ MC มีป้ายกำกับ ATCO Records",
    "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_en": "What team has a location and attendance at the Seattle Center Coliseum 12,591?",
    "question_th": "ทีมใดมีสถานที่และผู้เข้าร่วมที่ 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_en": "What is 1st Leg, when Team #2 is \"Emelec\"?",
    "question_th": "เลก 1 คืออะไร เมื่อทีม #2 คือ \"เอเมเล็ค\"?",
    "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_en": "What is 1st Leg, when Team #1 is \"San Lorenzo\"?",
    "question_th": "เลก 1 คืออะไร เมื่อทีม #1 คือ \"ซาน ลอเรนโซ\"?",
    "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_en": "What is the muzzle energy with grains (g) bullet weight and a max pressure of 35,000 psi?",
    "question_th": "พลังงานปากกระบอกปืนที่มีน้ำหนักกระสุนเกรน (g) และความดันสูงสุด 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_en": "What is the bullet weight with a 12,000 cup max pressure?",
    "question_th": "น้ำหนักกระสุนที่แรงดันสูงสุด 12,000 ถ้วยคือเท่าไร?",
    "context": "CREATE TABLE table_name_98 (bullet_weight VARCHAR, max_pressure VARCHAR)"
  },
  {
    "answer": "SELECT max_pressure FROM table_name_99 WHERE muzzle_energy = \"468ft•lbf (634 j)\"",
    "question_en": "What is the max pressure for the 468ft•lbf (634 j) muzzle energy?",
    "question_th": "แรงดันสูงสุดของพลังงานปากกระบอกปืน 468ft•lbf (634 j) คือเท่าใด",
    "context": "CREATE TABLE table_name_99 (max_pressure VARCHAR, muzzle_energy VARCHAR)"
  },
  {
    "answer": "SELECT muzzle_velocity FROM table_name_60 WHERE muzzle_energy = \"351ft•lbf (476 j)\"",
    "question_en": "What is the muzzle velocity for the muzzle energy 351ft•lbf (476 j)?",
    "question_th": "ความเร็วปากกระบอกปืนสำหรับพลังงานปากกระบอกปืน 351ft•lbf (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_en": "What is the muzzle velocity for the .38 long colt cartridge?",
    "question_th": "ความเร็วปากกระบอกปืนของกระสุนโคลท์ยาว .38 คืออะไร?",
    "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_en": "What is the muzzle energy with 40,000 psi max pressure?",
    "question_th": "พลังงานปากกระบอกปืนที่มีแรงดันสูงสุด 40,000 psi คืออะไร?",
    "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_en": "What is the home country of the player who placed t5 and had a score of 69-71=140?",
    "question_th": "ประเทศบ้านเกิดของผู้เล่นที่วาง T5 และมีคะแนน 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_en": "What was the place for the player whose final score was 71-69=140?",
    "question_th": "ผู้เล่นที่มีคะแนนสุดท้ายคือ 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_en": "What was the To par for the player whose final score was 67-71=138?",
    "question_th": "อะไรคือค่าพาร์ของผู้เล่นที่มีคะแนนสุดท้ายคือ 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_en": "What was Nolan Henke's To par when he placed in t3?",
    "question_th": "To par ของ Nolan Henke คืออะไรเมื่อเขาวางใน t3?",
    "context": "CREATE TABLE table_name_96 (to_par VARCHAR, place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT meaning FROM table_name_61 WHERE pīnyīn = \"chē\"",
    "question_en": "WHAT IS THE MEANING WITH Pīnyīn of chē?",
    "question_th": "พินอินแห่งเช่หมายความว่าอย่างไร?",
    "context": "CREATE TABLE table_name_61 (meaning VARCHAR, pīnyīn VARCHAR)"
  },
  {
    "answer": "SELECT radical__variants_ FROM table_name_81 WHERE pīnyīn = \"gǔ\" AND stroke_count = 7",
    "question_en": "WHAT IS THE RADICAL WITH gǔ, AND STROKE COUNT OF 7?",
    "question_th": "RADICAL กับ gǔ และ STROKE COUNT ของ 7 คืออะไร?",
    "context": "CREATE TABLE table_name_81 (radical__variants_ VARCHAR, pīnyīn VARCHAR, stroke_count VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(stroke_count) FROM table_name_57 WHERE radical__variants_ = \"生\" AND frequency < 22",
    "question_en": "WHAT IS THE STROKE COUNT WITH RADICAL OF 生, FRQUENCY SMALLER THAN 22?",
    "question_th": "การนับโรคหลอดเลือดสมองที่มีรากของ 生 คืออะไร FRQUENCY น้อยกว่า 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_ = \"皿\" AND frequency < 129",
    "question_en": "WHAT IS THE STROKE COUNT WITH RADICAL 皿 FREQUENCY SMALLER THAN 129?",
    "question_th": "การนับโรคหลอดเลือดสมองที่มีความถี่ RADICAL 皿 น้อยกว่า 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_en": "What is the Flagship of the Show Hosted by Rover (Shane French)?",
    "question_th": "เรือธงของการแสดงที่จัดโดย 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_en": "What is the Host of the Show with a Market of New York?",
    "question_th": "พิธีกรรายการกับ 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_en": "What is the iHeartRadio of the Bronson and Christine Show?",
    "question_th": "iHeartRadio ของ Bronson และ 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_en": "What is the to total number of par with laurie ayton?",
    "question_th": "จำนวนพาร์ทั้งหมดกับลอรี เอย์ตันเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_99 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_43 WHERE player = \"bobby jones (a)\"",
    "question_en": "Where is bobby jones (a)?",
    "question_th": "บ๊อบบี้ โจนส์ (ก) อยู่ที่ไหน?",
    "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_en": "Can you tell me the total number of Top 5 that has the Year smaller than 2009, and the Wins larger than 0?",
    "question_th": "คุณช่วยบอกจำนวนรวมของ 5 อันดับแรกที่มีปีที่น้อยกว่าปี 2009 และชัยชนะมากกว่า 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_en": "Can you tell me the Wins that has the Starts larger than 1, and the Top 5 of 3?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมถึงชัยชนะที่มีสตาร์ทมากกว่า 1 และ 5 อันดับแรกจาก 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_en": "Can you tell me the sum of Starts that the Winnings of $139,774, and the Wins smaller than 0?",
    "question_th": "คุณช่วยบอกผลรวมของการเริ่มต้นที่เงินรางวัล $139,774 และการชนะน้อยกว่า 0 ได้ไหม",
    "context": "CREATE TABLE table_name_37 (starts INTEGER, winnings VARCHAR, wins VARCHAR)"
  },
  {
    "answer": "SELECT affiliation FROM table_name_53 WHERE nickname = \"ramblers\"",
    "question_en": "Who is affiliated with the nickname Ramblers?",
    "question_th": "ใครมีส่วนเกี่ยวข้องกับชื่อเล่น Ramblers?",
    "context": "CREATE TABLE table_name_53 (affiliation VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_61 WHERE score = \"6–3, 6–4\"",
    "question_en": "Who was the Opponent in the match with a Score of 6–3, 6–4?",
    "question_th": "ใครคือฝ่ายตรงข้ามในการแข่งขันด้วยสกอร์ 6–3, 6–4?",
    "context": "CREATE TABLE table_name_61 (opponent VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_78 WHERE opponent = \"malek jaziri\"",
    "question_en": "On what Surface was the match against Malek Jaziri played?",
    "question_th": "การแข่งขันกับ Malek Jaziri เล่นกับ Surface บนสนามใด",
    "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_en": "What is the total number of Year(s) Won, when Player is Ed Furgol, and when To Par is greater than 12?",
    "question_th": "จำนวนปีที่ชนะทั้งหมดคือเท่าไร เมื่อผู้เล่นคือ Ed Furgol และเมื่อ To Par มากกว่า 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_en": "What is Year(s) Won, when Player is Arnold Palmer?",
    "question_th": "ปีที่ชนะคืออะไร เมื่อผู้เล่นคือ 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_en": "What is Highest Total, when Year(s) Won is before 1959?",
    "question_th": "ผลรวมสูงสุดคือเท่าใด เมื่อปีที่ชนะคือก่อนปี 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_en": "What is Player, when Year(s) Won is before 1961, and when To Par is 6?",
    "question_th": "ผู้เล่นคืออะไร เมื่อปีที่ชนะคือก่อนปี 1961 และเมื่อถึงพาร์คือ 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_en": "What is Finish, when To Par is greater than 6, and when Year(s) Won is before 1961?",
    "question_th": "Finish คืออะไร เมื่อ To Par มากกว่า 6 และเมื่อ Year(s) Won เกิดขึ้นก่อนปี 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_en": "What is Top Par, when Country is Sweden?",
    "question_th": "Top Par คืออะไร เมื่อประเทศคือสวีเดน?",
    "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_en": "What is the highest Money ($), when Top Par is E, and when Player is Ernie Els?",
    "question_th": "เงินสูงสุด ($) คือเท่าใดเมื่อพาร์สูงสุดคือ E และเมื่อผู้เล่นคือ 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_en": "What is the sum of Money ($), when Score is 70-71-70-69=280?",
    "question_th": "ผลรวมของเงิน ($) คือเท่าใด เมื่อคะแนนคือ 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_en": "What was the high assist when the high point was Eric Gordon (21)?",
    "question_th": "แอสซิสต์สูงสุดเมื่อเอริค กอร์ดอน (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_en": "What day was the high assist Mike Taylor (5)?",
    "question_th": "ไมค์ เทย์เลอร์ แอสซิสต์สูง (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_en": "What was the record when the high rebound was Deandre Jordan (11)?",
    "question_th": "ดีอันเดร จอร์แดน (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_en": "What was the away team when the home was st kilda?",
    "question_th": "ทีมเยือนเมื่อก่อนคือทีมเซนต์คิลดา?",
    "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_en": "Who was the away team on sunday, 13 february?",
    "question_th": "ทีมเยือนวันอาทิตย์ที่ 13 กุมภาพันธ์ คือใคร?",
    "context": "CREATE TABLE table_name_40 (away_team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_56 WHERE date = \"december 3, 2001\"",
    "question_en": "Which Week has a Date of december 3, 2001?",
    "question_th": "สัปดาห์ใดมีวันที่ 3 ธันวาคม 2544",
    "context": "CREATE TABLE table_name_56 (week VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_86 WHERE opponent = \"tennessee titans\"",
    "question_en": "Which Week has a Opponent of tennessee titans?",
    "question_th": "สัปดาห์ใดที่มีคู่ต่อสู้ของไททันส์เทนเนสซี?",
    "context": "CREATE TABLE table_name_86 (week VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT year_s__won FROM table_name_37 WHERE total = 282",
    "question_en": "What are the years won with a total of 282?",
    "question_th": "ชนะปีไหนมีทั้งหมด 282?",
    "context": "CREATE TABLE table_name_37 (year_s__won VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_35 WHERE against = 3",
    "question_en": "What was the date when the against was 3?",
    "question_th": "วันที่เท่าไหร่ที่ต่อต้านคือ 3?",
    "context": "CREATE TABLE table_name_35 (date VARCHAR, against VARCHAR)"
  },
  {
    "answer": "SELECT against FROM table_name_24 WHERE opposing_team = \"sheffield wednesday\"",
    "question_en": "What was the Against when the Opposing Team was sheffield wednesday?",
    "question_th": "การต่อต้านคืออะไรเมื่อทีมตรงข้ามพบกับเชฟฟิลด์วันพุธ?",
    "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_en": "Which round was played in the H Venue on 29 january 1949?",
    "question_th": "รอบใดที่เล่นในสนาม H เมื่อวันที่ 29 มกราคม พ.ศ. 2492?",
    "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_en": "What is the total number of Against that were played in the H Venue on 26 february 1949?",
    "question_th": "จำนวนการต่อต้านทั้งหมดที่เล่นในสนาม H เมื่อวันที่ 26 กุมภาพันธ์ พ.ศ. 2492 เป็นเท่าใด?",
    "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_en": "What was the round for 29 January 1949, when the against was 1?",
    "question_th": "งวดวันที่ 29 มกราคม 2492 ยกที่ 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_en": "What is the Result when the Attendance is 1,634?",
    "question_th": "ผลลัพธ์เมื่อมีผู้เข้าร่วม 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_en": "On what date was Stuart Potts the Man of the Match?",
    "question_th": "Stuart Potts เป็นแมนออฟเดอะแมตช์วันที่เท่าไหร่?",
    "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_en": "Who was the Opponent when Terry Miles was the Man of the Match?",
    "question_th": "ใครคือฝ่ายตรงข้ามเมื่อเทอร์รี่ ไมล์สเป็นแมนออฟเดอะแมตช์?",
    "context": "CREATE TABLE table_name_1 (opponent VARCHAR, man_of_the_match VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_97 WHERE date = \"21st\"",
    "question_en": "What was the Result of the game dated 21st?",
    "question_th": "ผลการแข่งขันวันที่ 21 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_97 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_52 WHERE date = \"21st\"",
    "question_en": "Which Venue is listed under the Date of  21st?",
    "question_th": "สถานที่ใดอยู่ภายใต้วันที่ 21?",
    "context": "CREATE TABLE table_name_52 (venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_82 WHERE date = \"25th\"",
    "question_en": "What was the Result on the Date of 25th?",
    "question_th": "วันที่ 25 ผลเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_82 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT rank__number FROM table_name_23 WHERE opponent_number = \"at wisconsin\"",
    "question_en": "What was the rank when the opponent was Wisconsin (played at Wisconsin)?",
    "question_th": "อันดับที่เท่าไหร่เมื่อคู่ต่อสู้คือวิสคอนซิน (เล่นที่วิสคอนซิน)?",
    "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_en": "What was the result when they played at Michigan State?",
    "question_th": "ผลเป็นอย่างไรเมื่อพวกเขาเล่นที่รัฐมิชิแกน?",
    "context": "CREATE TABLE table_name_14 (result VARCHAR, opponent_number VARCHAR)"
  },
  {
    "answer": "SELECT opponent_number FROM table_name_1 WHERE result = \"w24-7\"",
    "question_en": "Who was the opponent when the result was w24-7?",
    "question_th": "คู่ต่อสู้เมื่อผลเป็น 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_en": "How many were in attendance when they played vs. 12 Stanford?",
    "question_th": "มีผู้เข้าร่วมกี่คนเมื่อพวกเขาเล่นกับ 12 สแตนฟอร์ด?",
    "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í\" AND total < 16 OFFSET 240",
    "question_en": "Which Big (>500ha) has a Micro (10ha) larger than 940, and a Department of potosí, and a Total smaller than 16,240?",
    "question_th": "ใหญ่ (>500ha) ใดที่มี Micro (10ha) ใหญ่กว่า 940 และ Department of potosí และผลรวมน้อยกว่า 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_en": "Which Fumb Yds has a Fumb F. of 0, and a Int LG smaller than 0?",
    "question_th": "Fumb Yds ใดที่มี Fumb F. เป็น 0 และ Int LG น้อยกว่า 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_en": "Which Fumb TD has an Int TD of 1, and a Fumb F. smaller than 1?",
    "question_th": "Fumb TD ตัวใดมี Int TD เท่ากับ 1 และ Fumb F. เล็กกว่า 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_en": "What is the name of the person whose country is West Indies.",
    "question_th": "บุคคลที่เป็นเจ้าของประเทศคือหมู่เกาะอินเดียตะวันตกชื่ออะไร",
    "context": "CREATE TABLE table_name_53 (name VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT date_of_birth FROM table_name_81 WHERE name = \"pananmal punjabi\"",
    "question_en": "What is the Pananmal Punjabi's date of birth?",
    "question_th": "วันเกิดของ Pananmal Punjabi คืออะไร?",
    "context": "CREATE TABLE table_name_81 (date_of_birth VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_81 WHERE year > 2011",
    "question_en": "Who was the winner after 2011?",
    "question_th": "ใครคือผู้ชนะหลังจากปี 2011?",
    "context": "CREATE TABLE table_name_81 (winner VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_name_79 WHERE winner = \"tcu\"",
    "question_en": "What was the lowest year for TCU?",
    "question_th": "TCU ปีต่ำสุดคือปีใด",
    "context": "CREATE TABLE table_name_79 (year INTEGER, winner VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_30 WHERE player = \"bill rogers\"",
    "question_en": "What is the score of player bill rogers?",
    "question_th": "บิล โรเจอร์ส นักเตะได้คะแนนเท่าไหร่?",
    "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_en": "What is the country with a t7 place and a 69-68-72=209 score?",
    "question_th": "ประเทศอะไรได้อันดับที่ 7 และคะแนน 69-68-72=209?",
    "context": "CREATE TABLE table_name_70 (country VARCHAR, place VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_60 WHERE player = \"jim thorpe\"",
    "question_en": "What is the place of player jim thorpe?",
    "question_th": "ตำแหน่งของผู้เล่น จิม ธอร์ป อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_60 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_41 WHERE player = \"chi-chi rodríguez\"",
    "question_en": "What is the place of player chi-chi rodríguez?",
    "question_th": "นักเตะ ชิ-ชิ โรดริเกซ อยู่ตำแหน่งไหน?",
    "context": "CREATE TABLE table_name_41 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_23 WHERE score = 69 - 68 - 71 = 208",
    "question_en": "Who is the player with a 69-68-71=208 score?",
    "question_th": "นักเตะคนไหนที่มีคะแนน 69-68-71=208?",
    "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_en": "What state had a title of duke for the royal house of ji?",
    "question_th": "รัฐใดมีตำแหน่งดยุคสำหรับราชวงศ์จี?",
    "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_en": "What state had the name of wu for the royal house of ji?",
    "question_th": "รัฐใดมีชื่อหวู่แทนราชวงศ์จี๋?",
    "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_en": "What was the name listed for the royal house of jiang and a title of duke?",
    "question_th": "ราชวงศ์เจียงและตำแหน่งดยุคมีชื่ออะไรบ้าง?",
    "context": "CREATE TABLE table_name_96 (name VARCHAR, title VARCHAR, royal_house VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_22 WHERE state = \"wey\"",
    "question_en": "What was the name when the state was wey?",
    "question_th": "ชื่ออะไรเมื่อรัฐเวย์?",
    "context": "CREATE TABLE table_name_22 (name VARCHAR, state VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_29 WHERE state = \"qin\"",
    "question_en": "What was the title for the state of qin?",
    "question_th": "สถานะฉินมีชื่อว่าอะไร?",
    "context": "CREATE TABLE table_name_29 (title VARCHAR, state VARCHAR)"
  },
  {
    "answer": "SELECT state FROM table_name_8 WHERE name = \"li\"",
    "question_en": "What was the state that had the vassal name of li?",
    "question_th": "รัฐใดมีชื่อข้าราชบริพารว่าหลี่?",
    "context": "CREATE TABLE table_name_8 (state VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_90 WHERE time = \"3:24\"",
    "question_en": "Where was the match held that lasted 3:24?",
    "question_th": "การแข่งขันจัดขึ้นที่ไหนซึ่งกินเวลา 3:24?",
    "context": "CREATE TABLE table_name_90 (location VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT res FROM table_name_86 WHERE opponent = \"mark hunt\"",
    "question_en": "The match against Mark Hunt had what result?",
    "question_th": "แมตช์กับ มาร์ค ฮันท์ ได้ผลอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_86 (res VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_70 WHERE event = \"pride 31\"",
    "question_en": "Who was the match against at the PRIDE 31 event?",
    "question_th": "แข่งกับใครในงาน PRIDE 31 บ้าง?",
    "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_en": "The match that went 1 round, and had a method of submission (rear-naked choke) had what record?",
    "question_th": "แมตช์ที่เข้ารอบ 1 แล้วมีวิธีซับมิชชัน (โช้คหลัง) มีสถิติอะไรบ้าง?",
    "context": "CREATE TABLE table_name_43 (record VARCHAR, round VARCHAR, method VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_56 WHERE place = \"t7\"",
    "question_en": "Who is the player with a t7 place?",
    "question_th": "ใครคือผู้เล่นอันดับ t7?",
    "context": "CREATE TABLE table_name_56 (player VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT MIN(money___) AS $__ FROM table_name_96 WHERE player = \"jim colbert\"",
    "question_en": "What is the lowest amount of money player jim colbert has?",
    "question_th": "จำนวนเงินที่น้อยที่สุดของผู้เล่น จิม โคลเบิร์ต คือเท่าไร?",
    "context": "CREATE TABLE table_name_96 (money___ INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT AVG(enrollment) FROM table_name_41 WHERE institution = \"dickinson college\"",
    "question_en": "What is the average Enrollment of Dickinson College?",
    "question_th": "การลงทะเบียนของ Dickinson College โดยเฉลี่ยคือเท่าใด",
    "context": "CREATE TABLE table_name_41 (enrollment INTEGER, institution VARCHAR)"
  },
  {
    "answer": "SELECT institution FROM table_name_88 WHERE nickname = \"blue hens\"",
    "question_en": "Which institution has a nickname of Blue Hens?",
    "question_th": "สถาบันใดมีชื่อเล่นว่า Blue Hens?",
    "context": "CREATE TABLE table_name_88 (institution VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT nickname FROM table_name_65 WHERE established = 1773",
    "question_en": "What is the nickname of the college established in 1773?",
    "question_th": "วิทยาลัยที่ก่อตั้งในปี พ.ศ. 2316 มีชื่อเล่นว่าอะไร?",
    "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_en": "What was the time of round 2 against Taylor Mccorriston?",
    "question_th": "ยกที่ 2 กับ 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_en": "Who had the high assists against San Antonio?",
    "question_th": "ใครทำแอสซิสต์ได้สูงในการเจอกับซาน อันโตนิโอ?",
    "context": "CREATE TABLE table_name_58 (high_assists VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT SUM(game) FROM table_name_63 WHERE team = \"charlotte\"",
    "question_en": "What was the number of the game against Charlotte?",
    "question_th": "ในเกมกับชาร์ลอตต์หมายเลขเท่าไหร่?",
    "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_en": "Which Money has a Score of 70-68-73-68=279?",
    "question_th": "เงินใดมีคะแนน 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_en": "Which Score has a To par of +1, and a Player of masashi ozaki?",
    "question_th": "สกอร์ไหนมีพาร์ถึง +1 และผู้เล่นของมาซาชิ โอซากิ?",
    "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_en": "Which money has a Country of united states, and a Place of t6?",
    "question_th": "เงินใดมีประเทศสหรัฐอเมริกาและสถานที่ 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_en": "What is the 2004 value for the 2009 Grand slam tournaments?",
    "question_th": "มูลค่าปี 2004 สำหรับการแข่งขันแกรนด์สแลมปี 2009 เป็นเท่าใด",
    "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_en": "What tournament has a 2008 value of A, q1 in 2005, and 1r in 2004?",
    "question_th": "ทัวร์นาเมนต์ใดมีมูลค่า A ในปี 2551 ไตรมาส 1 ในปี 2548 และ 1r ในปี 2547",
    "context": "CREATE TABLE table_name_31 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2005 FROM table_name_37 WHERE 2010 = \"grand slam tournaments\"",
    "question_en": "What is the 2005 value for the 2010 grand slam tournaments?",
    "question_th": "มูลค่าปี 2548 สำหรับการแข่งขันแกรนด์สแลมปี 2553 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_37 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2003 FROM table_name_87 WHERE 2008 = \"grand slam tournaments\"",
    "question_en": "What is the 2003 value for the 2008 grand slam tournaments?",
    "question_th": "มูลค่าปี 2003 สำหรับทัวร์นาเมนต์แกรนด์สแลมปี 2008 เป็นเท่าใด",
    "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_en": "What is the 2005 value with a q2 in 2011, a q1 in 2012, and 1r in 2003?",
    "question_th": "ค่าปี 2548 โดยมี q2 ในปี 2554, q1 ในปี 2555 และ 1r ในปี 2546 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_48 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2009 FROM table_name_96 WHERE 2003 = \"grand slam tournaments\"",
    "question_en": "What is the 2009 value for the 2003 grand slam tournaments?",
    "question_th": "มูลค่าปี 2009 สำหรับทัวร์นาเมนต์แกรนด์สแลมปี 2003 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_96 (Id VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_name_1 WHERE game < 60",
    "question_en": "What was the high amount of assists before game 60?",
    "question_th": "จำนวนแอสซิสต์ที่สูงก่อนเกม 60 คือเท่าไร?",
    "context": "CREATE TABLE table_name_1 (high_assists VARCHAR, game INTEGER)"
  },
  {
    "answer": "SELECT date FROM table_name_29 WHERE match = 5",
    "question_en": "What date was match 5?",
    "question_th": "แมตช์ 5 ตรงกับวันไหน?",
    "context": "CREATE TABLE table_name_29 (date VARCHAR, match VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_2 WHERE date = \"april 2, 2008\"",
    "question_en": "What was the game score on april 2, 2008?",
    "question_th": "คะแนนเกมเมื่อวันที่ 2 เมษายน 2551 เป็นเท่าใด",
    "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_en": "What is the average match when the singapore armed forces played away against perak fa (malaysia)?",
    "question_th": "แมตช์เฉลี่ยเมื่อกองทัพสิงคโปร์ พบกับ เปรัก ฟ้า (มาเลเซีย) คืออะไร?",
    "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_en": "What is the ICAO for Seewoosagur Ramgoolam airport?",
    "question_th": "ICAO สำหรับสนามบินซีวูซากูร์ รามกูลัม คืออะไร?",
    "context": "CREATE TABLE table_name_72 (icao VARCHAR, airport VARCHAR)"
  },
  {
    "answer": "SELECT iata FROM table_name_88 WHERE airport = \"san francisco airport\"",
    "question_en": "What is the IATA for San Francisco airport?",
    "question_th": "IATA สำหรับสนามบินซานฟรานซิสโกคืออะไร?",
    "context": "CREATE TABLE table_name_88 (iata VARCHAR, airport VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_61 WHERE icao = \"oejn\"",
    "question_en": "Which city has an ICAO of Oejn?",
    "question_th": "เมืองใดมี ICAO ของ Oejn?",
    "context": "CREATE TABLE table_name_61 (city VARCHAR, icao VARCHAR)"
  },
  {
    "answer": "SELECT iata FROM table_name_79 WHERE airport = \"gatwick airport\"",
    "question_en": "What is the IATA for Gatwick airport?",
    "question_th": "IATA สำหรับสนามบินแกตวิคคืออะไร",
    "context": "CREATE TABLE table_name_79 (iata VARCHAR, airport VARCHAR)"
  },
  {
    "answer": "SELECT icao FROM table_name_79 WHERE country = \"france\" AND iata = \"ory\"",
    "question_en": "What is the ICAO in France with an IATA of Ory?",
    "question_th": "ICAO ในฝรั่งเศสที่มี IATA ของ 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_en": "Which Location Attendance has a Game larger than 67, and a Team of @ charlotte?",
    "question_th": "ผู้เข้าร่วมสถานที่ใดที่มีเกมมากกว่า 67 และทีม @ 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_en": "Which High rebounds have High points of chris bosh (18)?",
    "question_th": "รีบาวด์สูงใดที่มีคะแนนสูงของคริส บอช (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_en": "Which High rebounds have High points of chris bosh (34)?",
    "question_th": "รีบาวด์สูงใดที่มีคะแนนสูงของคริส บอช (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_en": "What are Utah's high points?",
    "question_th": "จุดสูงสุดของยูทาห์คืออะไร?",
    "context": "CREATE TABLE table_name_49 (high_points VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_82 WHERE name = \"rinnal\"",
    "question_en": "What is Rinnal's title?",
    "question_th": "รินนาลมีชื่อว่าอะไร?",
    "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_en": "Which player from United States is in place of t6?",
    "question_th": "ผู้เล่นคนไหนจากสหรัฐอเมริกาที่อยู่แทน 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_en": "Phil Mickelson has what  To par?",
    "question_th": "ฟิล มิคเคลสัน มีอะไรให้พาร์บ้าง?",
    "context": "CREATE TABLE table_name_47 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_name_61 WHERE game > 46",
    "question_en": "What high assists have a game greater than 46?",
    "question_th": "แอสซิสต์สูงสุดใดที่มีเกมมากกว่า 46?",
    "context": "CREATE TABLE table_name_61 (high_assists VARCHAR, game INTEGER)"
  },
  {
    "answer": "SELECT high_points FROM table_name_65 WHERE game = 42",
    "question_en": "What are the high points that have 42 as the game?",
    "question_th": "แต้มสูงที่มี 42 เป็นเกมมีอะไรบ้าง?",
    "context": "CREATE TABLE table_name_65 (high_points VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_74 WHERE game = 46",
    "question_en": "What record has 46 as the game?",
    "question_th": "สถิติอะไรที่มี 46 เป็นเกม?",
    "context": "CREATE TABLE table_name_74 (record VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_61 WHERE score = 67 - 70 = 137",
    "question_en": "WHAT IS THE PLACE WITH A SCORE OF 67-70=137?",
    "question_th": "สถานที่ที่มีคะแนน 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_en": "WHAT PLAYER HAS A SCORE OF 66-73=139?",
    "question_th": "ผู้เล่นคนใดมีคะแนน 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_en": "WHAT PLACE WAS A SCORE 67-70=137?",
    "question_th": "คะแนน 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_en": "WHAT COUNTRY HAS A T7 PLACE, WITH IAN WOOSNAM?",
    "question_th": "ประเทศใดบ้างที่มีสถานที่ T7 กับเอียน วูสแนม",
    "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_en": "WHAT COUNTRY HAS A SCORE OF 68-70=138?",
    "question_th": "ประเทศใดมีคะแนน 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_en": "What was the earliest week when the New Orleans Saints were the opponents?",
    "question_th": "สัปดาห์แรกสุดที่ New Orleans Saints เป็นฝ่ายตรงข้ามคือสัปดาห์ใด",
    "context": "CREATE TABLE table_name_31 (week INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_19 WHERE tv_time = \"bye\"",
    "question_en": "What was the name of the opponent that having a TV time of Bye?",
    "question_th": "คู่ต่อสู้ที่ออกทีวีชื่ออะไรบาย?",
    "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_en": "What year did the Grizzlies play for the UNLV team?",
    "question_th": "Grizzlies เล่นให้กับทีม UNLV ในปีใด",
    "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_en": "What nationality is the forward/center position?",
    "question_th": "ตำแหน่งกองหน้า/กองกลางสัญชาติอะไร?",
    "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_en": "What team is from the United States and plays a guard position for the Grizzlies in 2012?",
    "question_th": "ทีมใดมาจากสหรัฐอเมริกาและเล่นตำแหน่งการ์ดให้กับทีมกริซลี่ส์ในปี 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_en": "What position is the player from the United States play for the Grizzlies from 2000-2001?",
    "question_th": "ผู้เล่นจากสหรัฐอเมริกาเล่นในตำแหน่งใดให้กับทีม Grizzlies ตั้งแต่ปี 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_en": "What is the total number of Bronze, when Gold is greater than 0, when Rank is 4, and when Total is greater than 4?",
    "question_th": "อะไรคือจำนวนทองแดงทั้งหมด เมื่อทองมากกว่า 0 เมื่ออันดับเป็น 4 และเมื่อผลรวมมากกว่า 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_en": "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?",
    "question_th": "จำนวนรวมทั้งหมดเป็นเท่าใด เมื่อทองคำน้อยกว่า 1 เมื่อเงินมากกว่า 0 เมื่ออันดับคือ 14 และเมื่อประเทศชาติคืออัฟกานิสถาน?",
    "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_en": "What is the lowest Gold, when Silver is 0, and when Bronze is 2?",
    "question_th": "ทองคำต่ำสุดเมื่อ Silver เป็น 0 และเมื่อ Bronze เป็น 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_en": "What is the average Bronze, when Silver is 0, when Rank is 19, and when Total is greater than 2?",
    "question_th": "ค่าเฉลี่ยของสีบรอนซ์คือเท่าใด เมื่อ Silver เป็น 0 เมื่ออันดับเป็น 19 และเมื่อผลรวมมากกว่า 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_en": "What was the lowest number of pieces for a board released in 1984?",
    "question_th": "จำนวนชิ้นต่ำสุดสำหรับบอร์ดที่ออกในปี 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_en": "What is the dimensions in centimeters of a theater board who started in 1940, who was released after 2010?",
    "question_th": "ขนาดกระดานโรงละครที่เริ่มในปี พ.ศ. 2483 ซึ่งออกหลังปี พ.ศ. 2553 มีหน่วยเป็นเซนติเมตรเท่าใด",
    "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_en": "What is the average number of pieces for boards that started in 1941 and were released after 2001?",
    "question_th": "จำนวนชิ้นเฉลี่ยของบอร์ดที่เริ่มในปี 1941 และวางจำหน่ายหลังปี 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_en": "What are the dimensions in inches of the board released before 2004, that started in 1941?",
    "question_th": "ขนาดของบอร์ดที่ออกก่อนปี 2004 ซึ่งเริ่มในปี 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_en": "What is Venue, when Against is less than 30, and when Opposing Team is New South Wales?",
    "question_th": "Venue คืออะไร เมื่อ Against น้อยกว่า 30 และเมื่อทีมตรงข้ามคือ 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_en": "What is Status, when Date is 10/05/1975?",
    "question_th": "สถานะคืออะไร เมื่อเป็นวันที่ 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_en": "What is the lowest Against, when Opposing Team is Queensland?",
    "question_th": "ค่าต่ำสุดในการต่อต้านเมื่อทีมตรงข้ามคือควีนส์แลนด์?",
    "context": "CREATE TABLE table_name_92 (against INTEGER, opposing_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_34 WHERE status = \"second test\"",
    "question_en": "What is Date, when Status is Second Test?",
    "question_th": "วันที่คืออะไร เมื่อสถานะเป็นการทดสอบครั้งที่สอง",
    "context": "CREATE TABLE table_name_34 (date VARCHAR, status VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_27 WHERE place_of_birth = \"porsgrunn\"",
    "question_en": "Who was born in Porsgrunn?",
    "question_th": "ใครเกิดที่พอร์สกรุนน์?",
    "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_en": "Which Studio has a Rank smaller than 3, and a Director of adrian lyne?",
    "question_th": "สตูดิโอใดที่มีอันดับน้อยกว่า 3 และมีผู้อำนวยการของ 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_en": "Which Rank is the lowest one that has a Gross of $54,215,416?",
    "question_th": "อันดับใดคืออันดับต่ำสุดที่มียอดรวมอยู่ที่ $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–6, 6–3, 2–6\"",
    "question_en": "What is the date of the match against John McEnroe with a Score of 3–6, 6–3, 2–6?",
    "question_th": "แมตช์กับ John McEnroe ด้วยสกอร์ 3–6, 6–3, 2–6 คือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_73 (date VARCHAR, opponent VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_76 WHERE date = 1989",
    "question_en": "What is the Opponent of the game in 1989?",
    "question_th": "ฝ่ายตรงข้ามของเกมในปี 1989 คืออะไร?",
    "context": "CREATE TABLE table_name_76 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(pick) FROM table_name_58 WHERE name = \"ron whaley\"",
    "question_en": "What is the highest pick of ron whaley?",
    "question_th": "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_en": "What is the overall sum of the game with a pick less than 8 from the college of western michigan?",
    "question_th": "ผลรวมโดยรวมของเกมที่เลือกน้อยกว่า 8 จากวิทยาลัยเวสเทิร์นมิชิแกนคือเท่าไร?",
    "context": "CREATE TABLE table_name_23 (overall INTEGER, pick VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_92 WHERE college = \"western michigan\"",
    "question_en": "What is the position of the player from the college of western michigan?",
    "question_th": "ตำแหน่งผู้เล่นจากวิทยาลัยเวสเทิร์นมิชิแกนคืออะไร?",
    "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_en": "What is the lowest round of bob caldwell, who has a pick greater than 7 and an overall larger than 162?",
    "question_th": "รอบต่ำสุดของ Bob Caldwell คือใครที่มีตัวเลือกมากกว่า 7 และคะแนนโดยรวมมากกว่า 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_en": "What is the college of dave adams, who has a pick greater than 7?",
    "question_th": "วิทยาลัยเดฟ อดัมส์ มีวิทยาลัยอะไรให้เลือกมากกว่า 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_en": "What game took place on April 28?",
    "question_th": "เกมอะไรเกิดขึ้นในวันที่ 28 เมษายน?",
    "context": "CREATE TABLE table_name_33 (game VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT east FROM table_name_83 WHERE west = \"ev landsberg\"",
    "question_en": "What is the east with ev landsberg as the west?",
    "question_th": "ทิศตะวันออกคือทิศใดโดย ev landsberg อยู่ทิศตะวันตก?",
    "context": "CREATE TABLE table_name_83 (east VARCHAR, west VARCHAR)"
  },
  {
    "answer": "SELECT north FROM table_name_45 WHERE south = \"sb rosenheim\"",
    "question_en": "What is the north with sb rosenheim as the south?",
    "question_th": "ทิศเหนือมี sb rosenheim อยู่ทิศใต้คืออะไร?",
    "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_en": "What is the south with ev lindau as the west and svg burgkirchen as the east?",
    "question_th": "ทิศใต้คืออะไร โดยมี ev lindau อยู่ทางทิศตะวันตก และ svg burgkirchen อยู่ทางทิศตะวันออก",
    "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_en": "What season has esc holzkirchen south, esv buchloe west, and ehc bayreuth north?",
    "question_th": "esc holzkirchen ทางใต้, esv buchloe ตะวันตก และ ehc bayreuth ไปทางเหนือมีฤดูกาลอะไร",
    "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_en": "What is south in the 2001-02 season, which had germering wanderers east?",
    "question_th": "ทิศใต้คืออะไรในฤดูกาล 2544-02 ซึ่งมีผู้เร่ร่อนทางทิศตะวันออกเข้ามา?",
    "context": "CREATE TABLE table_name_92 (south VARCHAR, east VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT west FROM table_name_28 WHERE south = \"ev fürstenfeldbruck\"",
    "question_en": "What was west when ev fürstenfeldbruck was south?",
    "question_th": "ทิศตะวันตกเมื่อ ev fürstenfeldbruck อยู่ทางใต้คืออะไร?",
    "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__£million_ < 4 OFFSET 177",
    "question_en": "When revenue is smaller than 4,177 million in year 2008, what is the sum of earnings per share?",
    "question_th": "เมื่อรายได้น้อยกว่า 4,177 ล้านในปี 2551 ผลรวมของกำไรต่อหุ้นเป็นเท่าใด",
    "context": "CREATE TABLE table_name_89 (earnings_per_share__p_ INTEGER, year_ended VARCHAR, revenue__£million_ VARCHAR)"
  },
  {
    "answer": "SELECT earnings_per_share__p_ FROM table_name_47 WHERE year_ended = \"2007\"",
    "question_en": "What is the year 2007 earnings per share?",
    "question_th": "กำไรต่อหุ้นในปี 2550 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_47 (earnings_per_share__p_ VARCHAR, year_ended VARCHAR)"
  },
  {
    "answer": "SELECT SUM(net_profit__) AS £m_ FROM table_name_75 WHERE earnings_per_share__p_ = 27.4 AND profit__loss__before_tax__£m_ < 194.6",
    "question_en": "What is the total net profit when earnings per share is 27.4, and profit/loss befor tax was smaller than 194.6 million?",
    "question_th": "กำไรสุทธิรวมเมื่อกำไรต่อหุ้นเท่ากับ 27.4 และกำไร/ขาดทุนก่อนภาษีน้อยกว่า 194.6 ล้านจะเป็นเท่าใด",
    "context": "CREATE TABLE table_name_75 (net_profit__ INTEGER, earnings_per_share__p_ VARCHAR, profit__loss__before_tax__£m_ VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(profit__loss__before_tax__) AS £m_ FROM table_name_47 WHERE year_ended = \"2011\" AND net_profit__£m_ > 123.8",
    "question_en": "In year 2011 what is sum of profit/loss before tax and net profit larger than 123.8 million?",
    "question_th": "ในปี 2554 ผลรวมของกำไร/ขาดทุนก่อนภาษีและกำไรสุทธิมากกว่า 123.8 ล้านเป็นเท่าใด",
    "context": "CREATE TABLE table_name_47 (profit__loss__before_tax__ VARCHAR, year_ended VARCHAR, net_profit__£m_ VARCHAR)"
  },
  {
    "answer": "SELECT MAX(goals_for) FROM table_name_97 WHERE goals_against < 63 AND points_1 > 65 AND lost > 10",
    "question_en": "What is the highest goals for less than 63 goals against, more than 65 points 1, and more than 10 losses?",
    "question_th": "อะไรคือประตูสูงสุดสำหรับน้อยกว่า 63 ประตูต่อ, มากกว่า 65 แต้ม 1 และแพ้มากกว่า 10 ครั้ง?",
    "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_en": "What is the highest position for less than 42 played?",
    "question_th": "ตำแหน่งสูงสุดสำหรับการเล่นน้อยกว่า 42 ครั้งคืออะไร?",
    "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_en": "What is the average day in December with a Record of 16-3-4 and a Game smaller than 23?",
    "question_th": "วันเฉลี่ยในเดือนธันวาคมที่มีสถิติ 16-3-4 และเกมที่น้อยกว่า 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_en": "When the Runners-Up is larger than 0, what's the sum of winners?",
    "question_th": "เมื่อรองชนะเลิศมากกว่า 0 ผลรวมของผู้ชนะจะเป็นเท่าใด",
    "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_en": "When there are more than 1 winners and the team playing is pachuca, what's the lowest runners-up found?",
    "question_th": "เมื่อมีผู้ชนะมากกว่า 1 คน และทีมที่เล่นคือ ปาชูก้า รองแชมป์ต่ำสุดพบเท่าไร?",
    "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_en": "Can you tell me the Name that has the Assists of lake (154) lake (5.1 apg)?",
    "question_th": "คุณช่วยบอกชื่อที่มี 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_en": "Can you tell me the Name that has the Place of 1?",
    "question_th": "คุณช่วยบอกชื่อที่มีสถานที่ 1 ได้ไหม?",
    "context": "CREATE TABLE table_name_86 (name VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT rebounds FROM table_name_27 WHERE name = \"pom baskets jena\"",
    "question_en": "Can you tell me the Rebounds that has the Name of pom baskets jena?",
    "question_th": "คุณช่วยบอก Rebounds ที่มีชื่อ pom baskets jena ให้ฉันหน่อยได้ไหม?",
    "context": "CREATE TABLE table_name_27 (rebounds VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT steals FROM table_name_13 WHERE place = 6",
    "question_en": "Can you tell me the Steals that has the Place of 6?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าพวกขโมยที่มีสถานที่ 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_en": "What is the Callsign in Brisbane with a Freq currently of 4rph?",
    "question_th": "Callsign ในบริสเบนคืออะไรที่มีความถี่ในปัจจุบันที่ 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_en": "What is the Freq currently of the 4GG Callsign?",
    "question_th": "ความถี่ของสัญญาณการโทร 4GG ในปัจจุบันคือเท่าใด",
    "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_en": "What is the Community Band with a 4BCB Callsign?",
    "question_th": "Community Band ที่มีสัญญาณเรียกขาน 4BCB คืออะไร?",
    "context": "CREATE TABLE table_name_95 (band VARCHAR, purpose VARCHAR, callsign VARCHAR)"
  },
  {
    "answer": "SELECT purpose FROM table_name_59 WHERE freq_currently = \"4gld\"",
    "question_en": "What is the Purpose of the Callsign with a Freq currently of 4gld?",
    "question_th": "จุดประสงค์ของ Callsign ที่มีความถี่อยู่ที่ 4gld ในปัจจุบันคืออะไร?",
    "context": "CREATE TABLE table_name_59 (purpose VARCHAR, freq_currently VARCHAR)"
  },
  {
    "answer": "SELECT purpose FROM table_name_43 WHERE freq_currently = \"4rph\"",
    "question_en": "What is the Purpose of the Callsign with a Freq currently of 4rph?",
    "question_th": "จุดประสงค์ของ Callsign ที่มีความถี่อยู่ที่ 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çois = \"jaan kikkas\"",
    "question_en": "What was the press like for the world olympic record holder Roger Francois and Jaan Kikkas?",
    "question_th": "สื่อมวลชนของเจ้าของสถิติโอลิมปิกโลก Roger Francois และ Jaan Kikkas เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_95 (press VARCHAR, world_record VARCHAR, roger_françois VARCHAR)"
  },
  {
    "answer": "SELECT paris___fra__ FROM table_name_67 WHERE \"press\" = \"press\" AND roger_françois = \"carlo galimberti\"",
    "question_en": "What was the press like in Paris for Roger Francois, and Carlo Galimberti?",
    "question_th": "สื่อในปารีสของ Roger Francois และ Carlo Galimberti เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_67 (paris___fra__ VARCHAR, roger_françois VARCHAR)"
  },
  {
    "answer": "SELECT roger_françois FROM table_name_54 WHERE world_record = \"total\"",
    "question_en": "What is the total amount of world records for Roger Francois?",
    "question_th": "จำนวนสถิติโลกทั้งหมดของ Roger Francois คือเท่าไร?",
    "context": "CREATE TABLE table_name_54 (roger_françois VARCHAR, world_record VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_50 WHERE score = 71 - 70 - 73 - 71 = 285",
    "question_en": "What place had a score of 71-70-73-71=285?",
    "question_th": "สถานที่ใดมีคะแนน 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_en": "How much money for 1st place with a to par less than 1?",
    "question_th": "อันดับ 1 มีพาร์น้อยกว่า 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_en": "What Player had a To par of +1?",
    "question_th": "ผู้เล่นคนไหนมีพาร์ +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_en": "What is the Country of the Player with a To par of +4 and Score of 73-71-73=217?",
    "question_th": "ประเทศของผู้เล่นที่มีพาร์ถึง +4 และคะแนน 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_en": "What is the Place of the Player with a To par of +3 and Score of 73-70-73=216?",
    "question_th": "ตำแหน่งผู้เล่นที่มีพาร์ถึง +3 และคะแนน 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_en": "What is the Place of the Player with a Score of 72-70-72=214?",
    "question_th": "ผู้เล่นที่มีคะแนน 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_en": "Which team uses the kitmaker Saller and has Krombacher as their shirt sponsor?",
    "question_th": "ทีมใดใช้ช่างทำอุปกรณ์ Saller และมี Krombacher เป็นผู้สนับสนุนเสื้อของพวกเขา?",
    "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_en": "For the team led by head coach Felix Magath, who is the team captain?",
    "question_th": "สำหรับทีมที่นำโดยเฮดโค้ช เฟลิกซ์ มากัท ใครคือกัปตันทีม?",
    "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_en": "For the team whose shirt sponsor is Krombacher, who is the team captain?",
    "question_th": "สำหรับทีมที่มีสปอนเซอร์เสื้อคือ ครอมบาเชอร์ ใครเป็นกัปตันทีม?",
    "context": "CREATE TABLE table_name_12 (team VARCHAR, shirt_sponsor VARCHAR)"
  },
  {
    "answer": "SELECT kitmaker FROM table_name_54 WHERE shirt_sponsor = \"evonik\"",
    "question_en": "For the team whose shirt sponsor is Evonik, who is the kitmaker?",
    "question_th": "สำหรับทีมที่มีผู้สนับสนุนเสื้อคือเอโวนิค ใครคือคนทำชุด?",
    "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_en": "Who is the Shirt Back Sponsor if the Shorts Sponsor is Telestet?",
    "question_th": "ใครคือผู้สนับสนุนด้านหลังเสื้อ หากผู้สนับสนุนกางเกงขาสั้นคือ 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_en": "Which of the Res., has Ryan Scheepe as an opponent?",
    "question_th": "ตัวแทนคนไหนที่มี Ryan Scheepe เป็นคู่ต่อสู้?",
    "context": "CREATE TABLE table_name_34 (res VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_74 WHERE player = \"jeff brown\"",
    "question_en": "What position is Jeff Brown?",
    "question_th": "เจฟฟ์ บราวน์ มีตำแหน่งอะไร?",
    "context": "CREATE TABLE table_name_74 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_33 WHERE cfl_team = \"hamilton\"",
    "question_en": "which player played on Team Hamilton?",
    "question_th": "ผู้เล่นคนไหนเคยเล่นทีมแฮมิลตัน?",
    "context": "CREATE TABLE table_name_33 (player VARCHAR, cfl_team VARCHAR)"
  },
  {
    "answer": "SELECT cfl_team FROM table_name_16 WHERE player = \"jeff brown\"",
    "question_en": "What CFL team does Jeff brown play for?",
    "question_th": "เจฟฟ์ บราวน์เล่นให้กับทีม CFL ใด",
    "context": "CREATE TABLE table_name_16 (cfl_team VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(pick__number) FROM table_name_30 WHERE college = \"calgary\"",
    "question_en": "What is the total number of picks for Calgary College?",
    "question_th": "จำนวนตัวเลือกทั้งหมดสำหรับ 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_en": "Who was the home team when the record was 2-3?",
    "question_th": "เจ้าบ้านใครเป็นสถิติ 2-3?",
    "context": "CREATE TABLE table_name_38 (home VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_75 WHERE date = \"april 10\"",
    "question_en": "What was the record on April 10?",
    "question_th": "บันทึกเมื่อวันที่ 10 เมษายนคืออะไร?",
    "context": "CREATE TABLE table_name_75 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT spacecraft FROM table_name_66 WHERE end_time = \"17:28\"",
    "question_en": "What spacecraft had an EVA that ended at 17:28?",
    "question_th": "ยานอวกาศใดมี EVA ซึ่งสิ้นสุดเวลา 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_en": "What crew's EVA started on 20 February 20:09?",
    "question_th": "EVA ของลูกเรือคนไหนเริ่มในวันที่ 20 กุมภาพันธ์ เวลา 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_en": "The EVA that started on 8 July 12:38 went for how long?",
    "question_th": "EVA ที่เริ่มเมื่อวันที่ 8 กรกฎาคม เวลา 12:38 น. ใช้เวลานานเท่าไหร่?",
    "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_en": "The EVA that started 8 July 12:38 was from what spacecraft?",
    "question_th": "EVA ที่เริ่มเมื่อวันที่ 8 กรกฎาคม เวลา 12:38 น. มาจากยานอวกาศอะไร",
    "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_en": "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?",
    "question_th": "มีกี่แอสซิสต์ในการแข่งขันเคลีก ซึ่งมี Gs รวมมากกว่า 20 คน ทีมโปฮัง สตีลเลอร์ส และชุนนัม ดรากอนส์ เป็นคู่ต่อสู้",
    "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_en": "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?",
    "question_th": "จำนวนประตูเฉลี่ยของปาร์ค ซอง-โฮ ในการแข่งขันเคลีก ซึ่งมีทีมโปฮัง สตีลเลอร์ส และ Gs รวมน้อยกว่า 46 คือเท่าใด",
    "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_en": "What is the date of the k-league cup, which has less than 28 goals, at the jeonju venue?",
    "question_th": "เคลีกคัพที่ยิงไม่ถึง 28 ประตูที่สนามชอนจูจะมีวันไหน?",
    "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_en": "What is the sum of the total As of team bucheon sk, who had the chunnam dragons as their opponent at the bucheon venue?",
    "question_th": "ผลรวมของทีม bucheon sk ที่มีมังกรชุนนัมเป็นคู่ต่อสู้ที่สนามบูชอนคือเท่าไร?",
    "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_en": "What is the sum of the assists kang jae-soon had in the k-league competition in ulsan?",
    "question_th": "ผลรวมของแอสซิสต์ที่คังแจซุนมีในการแข่งขันเคลีกที่อุลซานคือเท่าไร?",
    "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_en": "What is the sum of the goals on 2007-06-16?",
    "question_th": "ผลรวมของเป้าหมายในปี 2550-06-59 เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_16 (goals INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_76 WHERE player = \"bill glasson\"",
    "question_en": "What was Bill Glasson's score to par after 2 rounds?",
    "question_th": "สกอร์ของ บิล กลาสสัน ที่จะพาร์หลังผ่านไป 2 รอบเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_76 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_20 WHERE player = \"phil mickelson\"",
    "question_en": "What was Phil Mickelson's score to par?",
    "question_th": "ฟิล มิคเคลสันทำสกอร์ได้เท่าไหร่?",
    "context": "CREATE TABLE table_name_20 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_49 WHERE player = \"bill glasson\"",
    "question_en": "What place was Bill Glasson in?",
    "question_th": "Bill Glasson อยู่ที่ไหน?",
    "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_en": "What is the average pick with 85 overall in a round lower than 3?",
    "question_th": "การเลือกเฉลี่ยโดยรวม 85 ในรอบที่ต่ำกว่า 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_en": "What was the 2009 results that has q1 for 2010, and A as the result for 2011?",
    "question_th": "ผลลัพธ์ปี 2552 ที่มีไตรมาส 1 ปี 2553 และ A เป็นผลลัพธ์ในปี 2554 คืออะไร",
    "context": "CREATE TABLE table_name_71 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2009 FROM table_name_52 WHERE 2010 = \"0\"",
    "question_en": "What were the 2009 results that has 0 in 2010?",
    "question_th": "ผลลัพธ์ปี 2009 ที่มี 0 ในปี 2010 คืออะไร",
    "context": "CREATE TABLE table_name_52 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2006 FROM table_name_83 WHERE 2011 = \"0\"",
    "question_en": "With a 2011 of 0 what was the 2006 result?",
    "question_th": "ด้วยปี 2554 เป็น 0 ผลลัพธ์ในปี 2549 คืออะไร?",
    "context": "CREATE TABLE table_name_83 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2004 FROM table_name_32 WHERE 2005 = \"a\" AND 2009 = \"q1\"",
    "question_en": "What is the result for 2004 when A is the result for 2005, and the result of q1 when 2009?",
    "question_th": "ผลลัพธ์สำหรับปี 2547 คืออะไรเมื่อ A คือผลลัพธ์สำหรับปี 2548 และผลลัพธ์ของไตรมาสที่ 1 เมื่อ พ.ศ. 2552",
    "context": "CREATE TABLE table_name_32 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2007 FROM table_name_23 WHERE 2008 = \"153\"",
    "question_en": "With a 2008 result of 153 what is the result for 2007?",
    "question_th": "ด้วยผลลัพธ์ปี 2551 ที่ 153 ผลลัพธ์ในปี 2550 คืออะไร?",
    "context": "CREATE TABLE table_name_23 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2008 FROM table_name_36 WHERE 2009 = \"0\" AND tournament = \"atp tournaments won\"",
    "question_en": "What are the results in 2008 when 2009 is 0, and the ATP Tournaments Won is the tournament?",
    "question_th": "ผลลัพธ์ในปี 2551 เมื่อปี 2552 เป็น 0 และ ATP Tournaments Won คือทัวร์นาเมนต์อะไร",
    "context": "CREATE TABLE table_name_36 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_40 WHERE year = 1951",
    "question_en": "Which team was in 1951?",
    "question_th": "ทีมใดอยู่ในปี 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_en": "What is the date of the match with arnaud di pasquale as the opponent in the final?",
    "question_th": "แมตช์วันที่เท่าไรที่มี อาร์โนด์ ดิ ปาสกวาเล เป็นคู่ต่อสู้ในรอบชิงชนะเลิศคือวันที่เท่าไร?",
    "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_en": "What is the date of the match with a winner outcome and jim courier as the opponent in the final?",
    "question_th": "วันที่ของการแข่งขันโดยผลผู้ชนะและ jim courier เป็นคู่ต่อสู้ในรอบชิงชนะเลิศคือวันที่เท่าไร?",
    "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_en": "What is the surface of the palermo, italy championship?",
    "question_th": "พื้นผิวของปาแลร์โม่ แชมป์เปี้ยนชิพ อิตาลี คืออะไร?",
    "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_en": "In what Round was OL Player Richard Zulys picked?",
    "question_th": "Richard Zulys ผู้เล่น OL ถูกเลือกในรอบใด",
    "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_en": "What is the Player from McGill?",
    "question_th": "ผู้เล่นจาก McGill คืออะไร?",
    "context": "CREATE TABLE table_name_30 (player VARCHAR, school_club_team VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_53 WHERE overall = 171",
    "question_en": "Which College had an Overall pick of 171?",
    "question_th": "วิทยาลัยใดมีคะแนนรวม 171 คะแนน",
    "context": "CREATE TABLE table_name_53 (college VARCHAR, overall VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_36 WHERE overall = 72",
    "question_en": "Who had the overall pick of 72?",
    "question_th": "ใครเป็นผู้มีสิทธิเลือกทั้งหมด 72 คน?",
    "context": "CREATE TABLE table_name_36 (name VARCHAR, overall VARCHAR)"
  },
  {
    "answer": "SELECT primary_conference FROM table_name_39 WHERE team_nickname = \"phoenix\"",
    "question_en": "What primary conference does the team nicknamed Phoenix belongs to?",
    "question_th": "ทีมที่มีชื่อเล่นว่า Phoenix อยู่ในการประชุมใหญ่ครั้งแรกใด",
    "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_en": "Where is the location for the home rink Triangle sports plex/Greensboro ice house?",
    "question_th": "ที่ตั้งของลานสเก็ตบ้าน 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_en": "What pick was a player that previously played for the Minnesota Lynx?",
    "question_th": "ผู้เล่นคนใดที่เคยเล่นให้กับ 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_en": "Which player was picked after 23?",
    "question_th": "ผู้เล่นคนไหนที่ถูกเลือกหลังจาก 23?",
    "context": "CREATE TABLE table_name_89 (player VARCHAR, pick INTEGER)"
  },
  {
    "answer": "SELECT nationality FROM table_name_74 WHERE college_country_team = \"mississippi\"",
    "question_en": "What is the nationality of the player who went to college at Mississippi?",
    "question_th": "นักเตะที่ไปเรียนมหาวิทยาลัยที่มิสซิสซิปปี้มีสัญชาติอะไร?",
    "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_en": "Who is the player who played for the Miami Sol and went to school at North Carolina State?",
    "question_th": "ใครคือผู้เล่นที่เคยเล่นให้กับทีม Miami Sol และไปโรงเรียนที่ 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_en": "WHAT IS THE AVG AST FOR GAMES LARGER THAN 101, RANK 5, TOTAL ASSISTS SMALLER THAN 331?",
    "question_th": "AVG AST คืออะไรสำหรับเกมที่มีขนาดใหญ่กว่า 101 อันดับ 5 และความช่วยเหลือทั้งหมดน้อยกว่า 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_en": "WHAT IS THE SUM OF AST AVG WITH RANK 5 AND GAMES BIGGER THAN 108?",
    "question_th": "ผลรวมของค่าเฉลี่ย AST ที่มีอันดับ 5 และเกมที่ใหญ่กว่า 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_en": "Which Round has a Name of john goodyear?",
    "question_th": "รอบไหนมีชื่อ จอห์น กู๊ดเยียร์ ?",
    "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_en": "Which Round has a College of appalachian state, and an Overall smaller than 156?",
    "question_th": "รอบใดมี College of Appalachian State และคะแนนรวมน้อยกว่า 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_en": "Which Pick has a Round larger than 17, and a Name of gene stewart?",
    "question_th": "ตัวเลือกใดมีรอบที่ใหญ่กว่า 17 และชื่อของยีนสจ๊วต?",
    "context": "CREATE TABLE table_name_46 (pick VARCHAR, round VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT res FROM table_name_96 WHERE opponent = \"rory markham\"",
    "question_en": "What was the result when the opponent was Rory Markham?",
    "question_th": "ผลเป็นอย่างไรเมื่อคู่ต่อสู้คือ Rory Markham?",
    "context": "CREATE TABLE table_name_96 (res VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT branding FROM table_name_27 WHERE frequency = \"1080khz\"",
    "question_en": "Which Branding has a frequency of 1080khz?",
    "question_th": "Branding ใดมีความถี่ 1080khz?",
    "context": "CREATE TABLE table_name_27 (branding VARCHAR, frequency VARCHAR)"
  },
  {
    "answer": "SELECT frequency FROM table_name_23 WHERE location = \"dagupan\"",
    "question_en": "Which frequency is located in Dagupan?",
    "question_th": "ความถี่ใดอยู่ใน ดากูปัน?",
    "context": "CREATE TABLE table_name_23 (frequency VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT frequency FROM table_name_33 WHERE branding = \"dzec radyo agila 1062\"",
    "question_en": "What frequency does branding dzec radyo agila 1062 have?",
    "question_th": "การสร้างแบรนด์ dzec radyo agila 1062 มีความถี่เท่าใด",
    "context": "CREATE TABLE table_name_33 (frequency VARCHAR, branding VARCHAR)"
  },
  {
    "answer": "SELECT frequency FROM table_name_5 WHERE power__kw_ = \"40kw\"",
    "question_en": "Which frequency has 40kw power?",
    "question_th": "ความถี่ใดมีกำลัง 40kw?",
    "context": "CREATE TABLE table_name_5 (frequency VARCHAR, power__kw_ VARCHAR)"
  },
  {
    "answer": "SELECT frequency FROM table_name_35 WHERE location = \"davao\"",
    "question_en": "Which frequency is located in Davao?",
    "question_th": "ความถี่ใดอยู่ในดาเวา?",
    "context": "CREATE TABLE table_name_35 (frequency VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT peak_population__year_ FROM table_name_34 WHERE city = \"scranton\"",
    "question_en": "what is the peak population (year) for scranton?",
    "question_th": "จำนวนประชากรสูงสุด (ปี) สำหรับสแครนตันคือเท่าใด",
    "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_en": "what is the numeric decline from peak population when the perfect decline from peak population is -16.76%",
    "question_th": "การลดลงเชิงตัวเลขจากประชากรสูงสุดคือเท่าใด เมื่อการลดลงที่สมบูรณ์แบบจากประชากรสูงสุดคือ -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_en": "what is the state when the peak population (year) is 134995 (1950)?",
    "question_th": "รัฐเป็นอย่างไรเมื่อประชากรสูงสุด (ปี) คือ 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_en": "what is the percent decline from peak population when the peak population (year) is 178320 (1960)?",
    "question_th": "เปอร์เซ็นต์ที่ลดลงจากประชากรสูงสุดเมื่อประชากรสูงสุด (ปี) คือ 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_en": "WHAT IS THE RANK OF UNIVERSAL, AND DIRECTOR JOHN HUGHES?",
    "question_th": "ตำแหน่ง UNIVERSAL และผู้อำนวยการ 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_en": "WHAT IS THE TITLE THAT HAS A RANK BIGGER THAN 10, FOR DIRECTOR WALTER HILL?",
    "question_th": "ชื่อเรื่องที่มีอันดับมากกว่า 10 สำหรับผู้กำกับวอลเตอร์ ฮิลล์คืออะไร",
    "context": "CREATE TABLE table_name_98 (title VARCHAR, rank VARCHAR, director VARCHAR)"
  },
  {
    "answer": "SELECT studio FROM table_name_41 WHERE title = \"mask\"",
    "question_en": "WHAT IS THE STUDIO WITH THE TITLE MASK?",
    "question_th": "สตูดิโอที่มี 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_en": "WHAT IS THE RANK WITH A GROSS OF $96,773,200?",
    "question_th": "อันดับที่มียอดรวม $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_en": "How many times was the player drawn that had less than 12 losses and a goal difference of +20?",
    "question_th": "มีกี่ครั้งที่ผู้เล่นถูกจับสลากโดยแพ้น้อยกว่า 12 ครั้งและมีผลต่างประตูได้เสีย +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_en": "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?",
    "question_th": "ผลรวมของตำแหน่งสำหรับผู้เล่นที่แพ้น้อยกว่า 25 ครั้ง ผลต่างประตู +20 เสมอ 10 ครั้ง และเล่นน้อยกว่า 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_en": "What is the highest number played when there were less than 13 losses and a goal difference of +46?",
    "question_th": "หมายเลขที่เล่นสูงสุดเมื่อแพ้น้อยกว่า 13 ครั้งและผลต่างประตูรวม +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_en": "What is listed under points 1 when the position was greater than 4, there were 54 goals for and more than 11 losses?",
    "question_th": "มีอะไรระบุไว้ในข้อ 1 เมื่ออันดับมากกว่า 4 มี 54 ประตูและเสียมากกว่า 11 ครั้ง?",
    "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_en": "Who was the worship leader that had a lead supporting vocal Marcus Temu?",
    "question_th": "ใครคือผู้นำการนมัสการที่มีแกนนำสนับสนุน 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_en": "Who was the lead supporting vocalist on the song that was 4:54 long?",
    "question_th": "ใครคือนักร้องสนับสนุนหลักในเพลงที่มีความยาว 4:54?",
    "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_en": "Who was the Worship Leader for the song that was 7:05 long?",
    "question_th": "ใครคือผู้นำการนมัสการสำหรับเพลงที่มีความยาว 7:05?",
    "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_en": "What is the song name that featured Marcus Temu as the lead supporting vocalist?",
    "question_th": "ชื่อเพลงที่มี Marcus Temu เป็นนักร้องสนับสนุนหลักคืออะไร?",
    "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_en": "What's the lowest diameter when the longitude is 71.1w?",
    "question_th": "เส้นผ่านศูนย์กลางต่ำสุดเมื่อลองจิจูดคือ 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_en": "What is dardanus sulcus' lowest diameter?",
    "question_th": "เส้นผ่านศูนย์กลางต่ำสุดของ dardanus sulcus คืออะไร?",
    "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_en": "How many years is ur sulcus listed with a diameter less than 1,145.0?",
    "question_th": "ร่องของคุณมีเส้นผ่านศูนย์กลางน้อยกว่า 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_en": "When the attendance was 3188 what was the score?",
    "question_th": "เมื่อผู้เข้าร่วมได้ 3188 คะแนนเป็นอย่างไรบ้าง?",
    "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_en": "What is the maximum number of people in attendance on 16 August 2008 when the home team was Deportes Savio?",
    "question_th": "จำนวนผู้เข้าร่วมสูงสุดในวันที่ 16 สิงหาคม พ.ศ. 2551 เมื่อเจ้าบ้านคือเดปอร์เตส ซาวิโอคือเท่าใด",
    "context": "CREATE TABLE table_name_69 (attendance INTEGER, date VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT away FROM table_name_49 WHERE home = \"deportes savio\"",
    "question_en": "What team was the away team when the Deportes Savio was the home team?",
    "question_th": "ทีมใดเป็นทีมเยือน เมื่อ เดปอร์เตส ซาวิโอ เป็นทีมเหย้า?",
    "context": "CREATE TABLE table_name_49 (away VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT away FROM table_name_93 WHERE score = \"3:1\"",
    "question_en": "What was the away team when the score was 3:1?",
    "question_th": "ทีมเยือนเป็นทีมไหนเมื่อสกอร์ 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_en": "When Platense was the away team on 16 August 2008 how many people attended the game?",
    "question_th": "เมื่อพลาเทนเซ่เป็นทีมเยือนเมื่อวันที่ 16 สิงหาคม พ.ศ. 2551 มีผู้เข้าชมเกมกี่คน?",
    "context": "CREATE TABLE table_name_29 (attendance VARCHAR, date VARCHAR, away VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_17 WHERE attendance = 2441",
    "question_en": "What was the score when 2441 people were in attendance?",
    "question_th": "มีผู้เข้าร่วมประชุม 2,441 คน คะแนนเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_17 (score VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_77 WHERE points = \"35+3\"",
    "question_en": "Which driver had 35+3 points?",
    "question_th": "นักแข่งคนไหนได้ 35+3 แต้ม?",
    "context": "CREATE TABLE table_name_77 (driver VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT time_retired FROM table_name_78 WHERE points = \"14\"",
    "question_en": "What was the time/retired for the driver with 14 points?",
    "question_th": "ผู้ขับขี่ที่ได้ 14 คะแนน มีเวลา/เกษียณเมื่อใด?",
    "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_en": "What is the sum of goals when the league cup goals are 4 and the FA cup goals are 0?",
    "question_th": "ผลรวมของประตูเมื่อประตูลีกคัพคือ 4 และประตูเอฟเอคัพเป็น 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_en": "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?",
    "question_th": "จำนวนประตูเอฟเอ คัพ ที่ทำได้เมื่อประตูรวมมากกว่า 16 ประตู และประตูลีกคัพคือ 1 สำหรับสโมสรนอริช ซิตี้ เป็นเท่าใด",
    "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_en": "What is the number of league goals when Bill Dearden was the scorer and there was 0 league cup goals?",
    "question_th": "จำนวนประตูในลีกเมื่อ บิลล์ เดียร์เดน เป็นผู้ทำประตูและทำได้ 0 ประตูในลีกคัพคือเท่าไร?",
    "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_en": "What is the name of the player with a transfer window in summer, an undisclosed transfer fee, and is moving from brussels?",
    "question_th": "นักเตะที่มีหน้าต่างโอนย้ายในช่วงซัมเมอร์ชื่ออะไร ค่าธรรมเนียมการโอนที่ไม่เปิดเผย และกำลังจะย้ายจากบรัสเซลส์?",
    "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_en": "What is the type of bulykin, which has a summer transfer window?",
    "question_th": "Bulykin ประเภทใดซึ่งมีหน้าต่างโอนช่วงฤดูร้อน?",
    "context": "CREATE TABLE table_name_79 (type VARCHAR, transfer_window VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_70 WHERE name = \"cordier\"",
    "question_en": "What is the country of cordier?",
    "question_th": "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_en": "What is the country of the player moving from belgrano with a summer transfer window?",
    "question_th": "นักเตะที่ย้ายจากเบลกราโน่พร้อมตลาดซื้อขายช่วงซัมเมอร์คือประเทศอะไร?",
    "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_en": "What is the transfer window of the player moving from barueri?",
    "question_th": "หน้าต่างการถ่ายโอนของผู้เล่นที่ย้ายจากบารูเอรีคืออะไร?",
    "context": "CREATE TABLE table_name_40 (transfer_window VARCHAR, moving_from VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_11 WHERE moving_from = \"belgrano\"",
    "question_en": "What is the type of the player moving from belgrano?",
    "question_th": "นักเตะประเภทไหนที่ย้ายจากเบลกราโน่?",
    "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_en": "Average round for 22 pick that is overall smaller than 229?",
    "question_th": "รอบเฉลี่ยสำหรับ 22 ตัวเลือกที่โดยรวมแล้วน้อยกว่า 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_en": "What is the normal 2002 that has a Country of Peru, and 2007 bigger than 1,200?",
    "question_th": "ปี 2545 ปกติที่มีประเทศเปรู และปี 2550 มากกว่า 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_en": "What is the least 2009 that has 2005 littler than 640, and 2011 of 425, and 2003 littler than 500?",
    "question_th": "ค่าน้อยที่สุดในปี 2009 ที่มีปี 2005 น้อยกว่า 640 และปี 2011 จาก 425 และปี 2003 น้อยกว่า 500 คืออะไร",
    "context": "CREATE TABLE table_name_81 (Id VARCHAR)"
  },
  {
    "answer": "SELECT MAX(bronze) FROM table_name_37 WHERE silver < 0",
    "question_en": "How many Bronze medals did the Nation with 0 Silver receive?",
    "question_th": "ประเทศชาติ 0 เหรียญเงิน ได้รับเหรียญทองแดงกี่เหรียญ?",
    "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_en": "How many Gold medals did the Nation with less than 8 Total medals including 1 Bronze and 0 Silver receive?",
    "question_th": "ประเทศชาติที่มีเหรียญรวมน้อยกว่า 8 เหรียญได้รับเหรียญทองกี่เหรียญ รวมทั้ง 1 เหรียญทองแดง และ 0 เหรียญเงิน",
    "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_en": "How many Total medals did the Nation the got 0 Bronze medals receive?",
    "question_th": "ประเทศชาติได้ 0 เหรียญทองแดง ได้ทั้งหมดกี่เหรียญ?",
    "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_en": "What Nation had a more than 1 Total medal including less than 3 Silver, less than 4 Gold and a Rank of 4?",
    "question_th": "ประเทศใดมีเหรียญรางวัลรวมมากกว่า 1 เหรียญ รวมทั้งเหรียญเงินน้อยกว่า 3 เหรียญ เหรียญทองน้อยกว่า 4 เหรียญ และอันดับ 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_en": "How many Silver medals did the Nation ranking 8 with more than 1 Total medal but less than 1 Gold receive?",
    "question_th": "ประเทศอันดับที่ 8 ของประเทศอันดับที่ 8 มีเหรียญเงินมากกว่า 1 เหรียญ แต่น้อยกว่า 1 เหรียญทอง ได้รับเหรียญเงินจำนวนเท่าใด",
    "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_en": "What is the start date with Luke Jacobz hosting and Dannii Minogue as a winning mentor?",
    "question_th": "วันที่เริ่มต้นโดย Luke Jacobz เป็นเจ้าภาพและ Dannii Minogue ในฐานะที่ปรึกษาผู้ชนะคือเมื่อใด",
    "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_en": "Who was in third place when Guy Sebastian was the winning mentor and Andrew Wishart was the runner-up?",
    "question_th": "ใครอยู่อันดับสามเมื่อกีย์ เซบาสเตียนเป็นที่ปรึกษาที่ชนะ และแอนดรูว์ วิชอาร์ตเป็นรองแชมป์",
    "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_en": "In what Election year was Adalberto Mosaner the Mayor with less than 16,170 Inhabitants?",
    "question_th": "Adalberto Mosaner เป็นนายกเทศมนตรีที่มีประชากรน้อยกว่า 16,170 คนในปีการเลือกตั้งใด",
    "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_en": "In what Election year were there less than 16,170 Inhabitants?",
    "question_th": "ในปีการเลือกตั้งใดที่มีประชากรน้อยกว่า 16,170 คน",
    "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_en": "What is the Mayor of Riva del Garda in 2010?",
    "question_th": "นายกเทศมนตรีของ Riva del Garda ในปี 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_en": "How many Inhabitants were there after 2009 in the Municipality with a Party of union for trentino?",
    "question_th": "หลังจากปี 2009 มีผู้อยู่อาศัยในเขตเทศบาลจำนวนกี่คนและมีพรรคสหภาพเพื่อเทรนติโน",
    "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_en": "What is the lowest enrolled school that was founded in 1992 and joined a conference before 1998?",
    "question_th": "โรงเรียนใดที่มีผู้ลงทะเบียนเรียนต่ำที่สุดที่ก่อตั้งในปี 1992 และเข้าร่วมการประชุมก่อนปี 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_en": "Which foot ball team played soccer at wooster, and Gold in Ashland?",
    "question_th": "ทีมฟุตบอลทีมใดเล่นฟุตบอลที่วูสเตอร์ และโกลด์ในแอชแลนด์",
    "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_en": "What is the total for the team with fewer than 2 bronze, ranked less than 4 and fewer than 1 silver?",
    "question_th": "ผลรวมของทีมที่มีน้อยกว่า 2 เหรียญทองแดง อันดับน้อยกว่า 4 และน้อยกว่า 1 เหรียญเงินเป็นเท่าใด?",
    "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_en": "How many silver for the team with more than 2 bronze and more than 7 gold?",
    "question_th": "ทีมที่มีมากกว่า 2 เหรียญทองแดง และมากกว่า 7 เหรียญทอง จะได้เงินเท่าไร?",
    "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_en": "What is the total for the team with 0 bronze and 3 silver?",
    "question_th": "ทีมที่ได้ 0 เหรียญทองแดง และ 3 เหรียญเงิน เป็นจำนวนเท่าใด?",
    "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_en": "What is the total number of Rounds held in Nevada, United States in which the time was 1:55?",
    "question_th": "จำนวนรอบทั้งหมดที่จัดขึ้นในเนวาดา สหรัฐอเมริกา ซึ่งเวลาคือ 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_en": "What was the time when his opponent was Rudy Martin?",
    "question_th": "เมื่อไหร่ที่คู่ต่อสู้ของเขาคือรูดี้มาร์ติน?",
    "context": "CREATE TABLE table_name_5 (time VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT method FROM table_name_31 WHERE time = \"1:52\"",
    "question_en": "What was the method when the fight's time was 1:52?",
    "question_th": "เวลาชกคือ 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_en": "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?",
    "question_th": "อะไรคือโอเวอร์ต่ำสุดของ Chennai Super Kings เมื่ออัตราเศรษฐกิจน้อยกว่า 5.92 โดยมีหมายเลขโบว์ลิ่งที่ดีที่สุดคือ 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_en": "What is the lowest number of Overs for the Royal Challengers Bangalore?",
    "question_th": "จำนวน Overs ต่ำสุดสำหรับ 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_en": "What is the highest Strike Rate when the average is less than 50.25 with less than 13 matches played?",
    "question_th": "อัตราสไตรค์สูงสุดเมื่อค่าเฉลี่ยน้อยกว่า 50.25 โดยเล่นน้อยกว่า 13 นัดคือเท่าใด",
    "context": "CREATE TABLE table_name_15 (strike_rate INTEGER, matches VARCHAR, average VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_12 WHERE position = \"4th\"",
    "question_en": "What is the venue of the race where Lineth Chepkurui placed 4th?",
    "question_th": "สนามแข่งที่ ลิเนธ เชพคูรุย ได้อันดับที่ 4 อยู่ที่ใด?",
    "context": "CREATE TABLE table_name_12 (venue VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_13 WHERE notes = \"team\" AND year < 2010",
    "question_en": "What is the venue of the team race that was before 2010?",
    "question_th": "สถานที่จัดการแข่งขันประเภททีมก่อนปี 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_en": "What is the venue of the team race that was after 2008?",
    "question_th": "สถานที่จัดการแข่งขันประเภททีมหลังจากปี 2008 คืออะไร?",
    "context": "CREATE TABLE table_name_23 (venue VARCHAR, year VARCHAR, notes VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_27 WHERE position = \"5th\"",
    "question_en": "What competition did Lineth Chepkurui place 5th?",
    "question_th": "Lineth Chepkurui ได้อันดับที่ 5 ในการแข่งขันรายการใด",
    "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_en": "How many votes did Lee Teng-Hui receive when he was elected?",
    "question_th": "Lee Teng-Hui ได้รับคะแนนเสียงเท่าไรเมื่อได้รับเลือก?",
    "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_en": "What was the score for a match before 13, and a home game on April 21, 2008?",
    "question_th": "สกอร์ของนัดก่อน 13.00 น. และเกมเหย้าเมื่อวันที่ 21 เมษายน 2551 เป็นเท่าไหร่?",
    "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_en": "What home/away game is on February 29, 2008?",
    "question_th": "เกมเหย้า/เยือนวันที่ 29 กุมภาพันธ์ 2551 คือเกมอะไร?",
    "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_en": "What team was the home team when Manchester City was the away team?",
    "question_th": "ทีมใดเป็นทีมเหย้า เมื่อแมนเชสเตอร์ ซิตี้ เป็นทีมเยือน?",
    "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_en": "What is the sum of Points, when Equipment was \"Zabel-BSU\", and when Position was 42?",
    "question_th": "ผลรวมของคะแนนเมื่ออุปกรณ์เป็น \"Zabel-BSU\" และเมื่อตำแหน่งเป็น 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_en": "What is Equipment, when Points is less than 6, and when Position is 53?",
    "question_th": "อุปกรณ์คืออะไร เมื่อคะแนนน้อยกว่า 6 และเมื่อตำแหน่งเป็น 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_en": "What is Second, when Position is greater than 33, when Points is greater than 12, and when Equipment is Zabel-VMC?",
    "question_th": "ประการที่สองคืออะไร เมื่อตำแหน่งมากกว่า 33 เมื่อคะแนนมากกว่า 12 และเมื่ออุปกรณ์เป็น 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_en": "What is Equipment, when Position is greater than 28, and when Points is greater than 10?",
    "question_th": "อุปกรณ์คืออะไร เมื่อตำแหน่งมากกว่า 28 และเมื่อคะแนนมากกว่า 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_en": "When Hawthorn is the away team, what is their score?",
    "question_th": "เมื่อฮอว์ธอร์นเป็นทีมเยือนสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_84 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT ground FROM table_name_79 WHERE crowd > 41 OFFSET 185",
    "question_en": "Which ground has a crowd over 41,185?",
    "question_th": "สนามไหนมีฝูงชนมากกว่า 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_en": "What place has a 67-68-78-77=290 score?",
    "question_th": "อันดับไหนมีคะแนน 67-68-78-77=290 คะแนน?",
    "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_en": "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?",
    "question_th": "อะไรคือค่าพาร์สูงสุดของผู้เล่นจากสหรัฐอเมริกาด้วยอันดับ t3 และอันดับ 74-73-72-69=288?",
    "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_en": "What is the place of player peter oosterhuis, who has $7,500?",
    "question_th": "นักเตะ ปีเตอร์ อูสเตอร์ฮุยส์ ที่มีเงิน 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_en": "What country has a 72-70-75-72=289 score?",
    "question_th": "ประเทศใดมีคะแนน 72-70-75-72=289?",
    "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_en": "Who is the player from the United States with a 4 to par and a 74-73-72-69=288 score?",
    "question_th": "นักเตะจากอเมริกาที่สกอร์ 4 พาร์ และสกอร์ 74-73-72-69=288 คือใคร?",
    "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_en": "How much money does the player with a to par less than 4 and a score of 74-72-68-73=287 have?",
    "question_th": "ผู้เล่นที่มีพาร์น้อยกว่า 4 และคะแนน 74-72-68-73=287 มีเงินเท่าไหร่?",
    "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_en": "What is High Assists, when High Points is \"Tayshaun Prince (23)\"?",
    "question_th": "High Assists คืออะไร เมื่อคะแนนสูงคือ \"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_en": "What is Date, when Team is \"Orlando\"?",
    "question_th": "วันที่คืออะไร เมื่อทีมคือ \"ออร์แลนโด\"?",
    "context": "CREATE TABLE table_name_72 (date VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_95 WHERE pos = \"1st\" AND year = 2011",
    "question_en": "Which team has finished in 1st place in 2011?",
    "question_th": "ทีมไหนจบอันดับ 1 ในปี 2554?",
    "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_en": "What is the Episode number of Ernest Dickerson in 2009 when the show was dexter?",
    "question_th": "หมายเลขตอนของ Ernest Dickerson ในปี 2009 ตอนที่แสดงคือ 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_en": "What is the result on 29 September 2007?",
    "question_th": "ผลประกอบการวันที่ 29 กันยายน 2550 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_39 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_66 WHERE date = \"29 september 2007\"",
    "question_en": "Which competition was on 29 September 2007?",
    "question_th": "การแข่งขันรายการใดในวันที่ 29 กันยายน พ.ศ. 2550?",
    "context": "CREATE TABLE table_name_66 (competition VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_35 WHERE points = 80",
    "question_en": "Where was the game where the senators scored 80 points?",
    "question_th": "เกมไหนที่ ส.ส. ได้ 80 แต้ม?",
    "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_en": "What is the highest number of points against the boston bruins on game 77?",
    "question_th": "คะแนนสูงสุดในการเจอกับบอสตัน บรูอินส์ในเกมที่ 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_en": "WHAT IS THE LOWEST GRID FOR RETIREMENT, AND LAPS LARGER THAN 17?",
    "question_th": "ตารางที่ต่ำที่สุดสำหรับการเกษียณคืออะไร และรอบที่มากกว่า 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_en": "WHAT IS THE GRID WITH AN ACCIDENT AND HONDA MANUFACTURER?",
    "question_th": "อะไรคือกริดที่มีอุบัติเหตุและผู้ผลิตฮอนด้า?",
    "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_en": "What was the date of death for a rank below 14 and age of 103 years, 148 days?",
    "question_th": "อายุต่ำกว่า 14 ปี และอายุ 103 ปี 148 วัน เสียชีวิตเมื่อใด?",
    "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_en": "What is the age of Fred Gibson?",
    "question_th": "เฟร็ด กิ๊บสันอายุเท่าไหร่?",
    "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_en": "Who is at rank 9?",
    "question_th": "ใครอยู่อันดับ 9 บ้างคะ?",
    "context": "CREATE TABLE table_name_72 (name VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_25 WHERE player = \"hale irwin\"",
    "question_en": "What is the finish of player Hale Irwin?",
    "question_th": "จุดจบของนักเตะ เฮล เออร์วิน คืออะไร?",
    "context": "CREATE TABLE table_name_25 (finish VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_63 WHERE country = \"south africa\"",
    "question_en": "What is the finish of South Africa?",
    "question_th": "แอฟริกาใต้จะจบแบบไหน?",
    "context": "CREATE TABLE table_name_63 (finish VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT ergative FROM table_name_56 WHERE nominative = \"chven-i\"",
    "question_en": "With a nominative of chven-i what is the ergative?",
    "question_th": "ด้วยการเสนอชื่อ chven-i ergative คืออะไร?",
    "context": "CREATE TABLE table_name_56 (ergative VARCHAR, nominative VARCHAR)"
  },
  {
    "answer": "SELECT instrumental FROM table_name_42 WHERE genitive = \"tkven-i\"",
    "question_en": "What instrumental has tkven-i as the genitive?",
    "question_th": "เครื่องมือใดมี tkven-i เป็นสัมพันธการก?",
    "context": "CREATE TABLE table_name_42 (instrumental VARCHAR, genitive VARCHAR)"
  },
  {
    "answer": "SELECT nominative FROM table_name_91 WHERE dative = \"mis\"",
    "question_en": "What nominative has mis as the dative?",
    "question_th": "นามใดมีความผิดเป็นกรรม?",
    "context": "CREATE TABLE table_name_91 (nominative VARCHAR, dative VARCHAR)"
  },
  {
    "answer": "SELECT ergative FROM table_name_85 WHERE dative = \"chem-s\"",
    "question_en": "With chem-s as the dative, what is the ergative?",
    "question_th": "โดยมี chem-s เป็นส่วนประกอบ แล้ว ergative คืออะไร?",
    "context": "CREATE TABLE table_name_85 (ergative VARCHAR, dative VARCHAR)"
  },
  {
    "answer": "SELECT instrumental FROM table_name_87 WHERE adverbial = \"chven-s\"",
    "question_en": "What instrumental has chven-s as the adverbial?",
    "question_th": "เครื่องมือใดมี chven-s เป็นคำวิเศษณ์?",
    "context": "CREATE TABLE table_name_87 (instrumental VARCHAR, adverbial VARCHAR)"
  },
  {
    "answer": "SELECT ergative FROM table_name_48 WHERE nominative = \"mis-i\"",
    "question_en": "Mis-i is the nominative of what ergative?",
    "question_th": "Mis-i เป็นนามของสิ่งใด 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_en": "what was the week for the match on a hard surface at Indian Wells tournament?",
    "question_th": "สัปดาห์ใดสำหรับการแข่งขันบนพื้นแข็งในทัวร์นาเมนต์ Indian Wells?",
    "context": "CREATE TABLE table_name_88 (week VARCHAR, surface VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_57 WHERE tournament = \"cincinnati\"",
    "question_en": "What week was the tournament at Cincinnati?",
    "question_th": "การแข่งขันที่ซินซินแนติเป็นสัปดาห์ใด",
    "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_en": "Where was the tournament where the match was on a hard surface and jan-michael gambill (19) was the finalist?",
    "question_th": "การแข่งขันอยู่ที่ไหนซึ่งการแข่งขันอยู่บนพื้นผิวแข็งและแจน-ไมเคิล แกมบิล (19 ปี) เข้ารอบสุดท้าย?",
    "context": "CREATE TABLE table_name_75 (tournament VARCHAR, surface VARCHAR, finalist VARCHAR)"
  },
  {
    "answer": "SELECT semifinalists FROM table_name_21 WHERE tournament = \"miami\"",
    "question_en": "Who was the semifinalist at the tournament in miami?",
    "question_th": "ใครคือผู้เข้ารอบรองชนะเลิศในการแข่งขันที่ไมอามี",
    "context": "CREATE TABLE table_name_21 (semifinalists VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_11 WHERE tournament = \"hamburg\"",
    "question_en": "Who was the winner at the tournament in Hamburg?",
    "question_th": "ใครคือผู้ชนะในการแข่งขันที่ฮัมบวร์ก?",
    "context": "CREATE TABLE table_name_11 (winner VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_43 WHERE year = \"21 june 1987\"",
    "question_en": "what is the venue on 21 june 1987?",
    "question_th": "วันที่ 21 มิถุนายน 2530 จัดขึ้นที่ใด?",
    "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_en": "When is the winner panathinaikos, the runner-up olympiacos and the venue nikos goumas stadium?",
    "question_th": "เมื่อไรจะเป็นผู้ชนะ พานาธิไนกอส รองแชมป์โอลิมเปียกอส และสนามนิโกส กูมาส สเตเดี้ยม?",
    "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_en": "When is the winner olympiacos, the venue is georgios karaiskakis stadium and the runner-up is iraklis?",
    "question_th": "ผู้ชนะคือโอลิมเปียกอส สนามคือจอร์จิโอส คาราอิสกากิส สเตเดียม และรองแชมป์คืออิราคลิส?",
    "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–2 4–4 a.e.t. 6–5 pso\"",
    "question_en": "when is the venue nikos goumas stadium and the score is 2–2 4–4 a.e.t. 6–5 pso?",
    "question_th": "สนามนิโกส กูมาส สเตเดี้ยมคือเมื่อใด และคะแนนคือ 2–2 4–4 หรือ 6–5 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_en": "what is the score when the venue is athens olympic stadium on 30 april 2011?",
    "question_th": "เมื่อสนามกีฬาโอลิมปิกที่กรุงเอเธนส์เมื่อวันที่ 30 เมษายน 2554 คะแนนเป็นเท่าไหร่?",
    "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_en": "Which Season has a Skip of Eve Muirhead with a thirs of Jackie Lockhart (e/o) Kelly Wood (w)?",
    "question_th": "ซีซั่นใดที่มีการข้ามของ Eve Muirhead กับ 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_en": "What is the season with a Skip of Eve Muirhead and a third of Kerry Barr?",
    "question_th": "ฤดูกาลที่มีการข้ามของ Eve Muirhead และหนึ่งในสามของ 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_en": "Who is the second with a lead of Sarah Macintyre (jr) Anne Laird (w)?",
    "question_th": "ใครคือคนที่สองที่นำโดย ซาราห์ แมคอินไทร์ (จูเนียร์) แอนน์ แลร์ด (ญ)?",
    "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_en": "What is the skip that has a third of Anna Sloan in season 2012-13?",
    "question_th": "การข้ามที่มีหนึ่งในสามของ Anna Sloan ในฤดูกาล 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_en": "What is the lead with a second of Vicki Adams and a third of Anna Sloan?",
    "question_th": "วิคกี้ อดัมส์ วินาทีและแอนนา สโลน ขึ้นนำเป็นอย่างไรบ้าง?",
    "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_en": "Who is the second where the third of Kelly Wood (e) Anna Sloan (Jr)?",
    "question_th": "ใครคือคนที่สองที่อยู่ที่สามของ 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_en": "What is Date, when Game is \"65\"?",
    "question_th": "วันที่คืออะไร เมื่อเกมเป็น \"65\"?",
    "context": "CREATE TABLE table_name_6 (date VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_name_8 WHERE date = \"march 12\"",
    "question_en": "What is High Rebounds, when Date is \"March 12\"?",
    "question_th": "High Rebounds คืออะไร เมื่อเป็นวันที่ \"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_en": "What is High Rebounds, when Date is \"March 13\"?",
    "question_th": "High Rebounds คืออะไร เมื่อเป็นวันที่ \"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_en": "What is Record, when Location Attendance is \"TD Banknorth Garden 18,624\"?",
    "question_th": "บันทึกคืออะไร เมื่อการเข้าร่วมสถานที่คือ \"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_en": "What is Team, when Game is \"59\"?",
    "question_th": "ทีมคืออะไร เมื่อเกมคือ \"59\"?",
    "context": "CREATE TABLE table_name_25 (team VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_12 WHERE away_team = \"torquay united\"",
    "question_en": "What is the Score when the Away Team is Torquay United?",
    "question_th": "เมื่อทีมเยือนคือ ทอร์คีย์ ยูไนเต็ด สกอร์เท่าไหร่?",
    "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_en": "Which Away Team has a Tie no of replay and a Home Team of Chesterfield?",
    "question_th": "ทีมเยือนทีมไหนเสมอกันในการแข่งขันนัดรีเพลย์ และทีมเหย้าของเชสเตอร์ฟิลด์?",
    "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_en": "What is the Away Team when the Home Team is Torquay United and the Attendence is 6 December 1997?",
    "question_th": "ทีมเยือนจะเป็นอย่างไรเมื่อเจ้าบ้านคือทอร์คีย์ ยูไนเต็ด และผู้เข้าร่วมคือ 6 ธันวาคม 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_en": "What is the Chassis of the Honda Engine with a Motorola sponsor?",
    "question_th": "แชสซีของเครื่องยนต์ฮอนด้าที่มีผู้สนับสนุน Motorola คืออะไร?",
    "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_en": "What is the engine of the goodyear tire and Herdez as a sponsor?",
    "question_th": "ยางกู๊ดเยียร์มีเครื่องยนต์อะไรบ้างและมีเฮอร์เดซเป็นสปอนเซอร์?",
    "context": "CREATE TABLE table_name_16 (engine VARCHAR, tire VARCHAR, sponsor VARCHAR)"
  },
  {
    "answer": "SELECT engine FROM table_name_63 WHERE team = \"tasman motorsports\"",
    "question_en": "What engine does the Tasman Motorsports team have?",
    "question_th": "ทีม Tasman Motorsports มีเครื่องยนต์อะไร?",
    "context": "CREATE TABLE table_name_63 (engine VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT tire FROM table_name_20 WHERE sponsor = \"duracell\"",
    "question_en": "Which Tire has a Sponsor of Duracell?",
    "question_th": "ยางตัวไหนมีผู้สนับสนุน 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_en": "Which team has Firestone Tires a Reynard 95i Chassis and is sponsored by Motorola?",
    "question_th": "ทีมใดมีโครงรถ Firestone Tyres และ Reynard 95i และได้รับการสนับสนุนจาก 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_en": "What is the highest # Of Constituency Votes, when Election is 2005?",
    "question_th": "จำนวนผู้ลงคะแนนเสียงในเขตเลือกตั้งสูงสุดคือเท่าใด เมื่อการเลือกตั้งคือปี 2548",
    "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ō\" AND _number_of_candidates < 328",
    "question_en": "What is the highest # Of Constituency Votes, when Election is before 1976, when Leader is Eisaku Satō, and when # Of Candidates is less than 328?",
    "question_th": "จำนวนผู้ลงคะแนนเสียงแบบแบ่งเขตสูงสุดคือเท่าใด เมื่อการเลือกตั้งก่อนปี 1976 เมื่อผู้นำคือ Eisaku Satō และเมื่อจำนวนผู้สมัคร # น้อยกว่า 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_en": "What was the overall draft pick of the player who was a db and attended college in iowa?",
    "question_th": "ร่างการคัดเลือกโดยรวมของผู้เล่นที่เป็น db และเข้าเรียนในวิทยาลัยในไอโอวาคืออะไร?",
    "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_en": "What number pick was the player drafted in round 3 at #28 overall?",
    "question_th": "ผู้เล่นถูกดราฟท์หมายเลขใดในรอบ 3 ที่หมายเลข #28 โดยรวม",
    "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_en": "What is the lowest total data processing and exploitation of 00 0,228, and a management and support larger than 1,7?",
    "question_th": "การประมวลผลข้อมูลและการใช้ประโยชน์รวมต่ำสุดคือ 00 0,228 และการจัดการและการสนับสนุนที่ใหญ่กว่า 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_en": "Which permanent account has registration of invite-only and userpics free of unknown?",
    "question_th": "บัญชีถาวรใดที่มีการลงทะเบียนเฉพาะผู้ได้รับเชิญเท่านั้นและไม่มีรูปผู้ใช้ที่ไม่รู้จัก",
    "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_en": "What is the year began for the site with free userpics cost of $1 and a userpics paid value of N/A?",
    "question_th": "ปีที่เริ่มต้นสำหรับไซต์ที่มีค่าใช้จ่าย userpic ฟรี 1 ดอลลาร์ และมูลค่าการชำระ userpics เป็น 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_en": "Which Week has a Tournament of monte carlo?",
    "question_th": "สัปดาห์ใดที่มีการแข่งขัน 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_en": "Which Winner and score has a Finalist of aaron krickstein?",
    "question_th": "ผู้ชนะและคะแนนคนใดที่มีผู้เข้ารอบสุดท้ายของ 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–3, 3–6, 6–3\"",
    "question_en": "Which Semifinalists have a Surface of hard, and a Winner and score of pete sampras 6–3, 3–6, 6–3?",
    "question_th": "ผู้เข้ารอบรองชนะเลิศคนใดที่มีพื้นผิวแข็ง และเป็นผู้ชนะและคะแนนของ pete sampras 6–3, 3–6, 6–3?",
    "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–6(3), 6–3, 3–6, 6–3\"",
    "question_en": "Which Finalist has a Winner and score of boris becker 7–6(3), 6–3, 3–6, 6–3?",
    "question_th": "ผู้เข้ารอบสุดท้ายคนใดมีผู้ชนะและคะแนนของบอริส เบกเกอร์ 7–6(3), 6–3, 3–6, 6–3",
    "context": "CREATE TABLE table_name_86 (finalist VARCHAR, winner_and_score VARCHAR)"
  },
  {
    "answer": "SELECT semifinalists FROM table_name_82 WHERE finalist = \"andrei chesnokov\"",
    "question_en": "Which Semifinalists have a Finalist of andrei chesnokov?",
    "question_th": "ผู้เข้ารอบรองชนะเลิศคนใดมีผู้เข้ารอบสุดท้ายของ 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_en": "Which Surface has Semifinalists of wally masur malivai washington?",
    "question_th": "Surface ใดมีผู้เข้ารอบรองชนะเลิศของ 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_en": "What place had a score of 73-69-68=210?",
    "question_th": "สถานที่ใดมีคะแนน 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_en": "What country is Gary Player from in T9 place?",
    "question_th": "Gary Player มาจากประเทศอะไรในตำแหน่ง T9?",
    "context": "CREATE TABLE table_name_38 (country VARCHAR, place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_3 WHERE country = \"new zealand\"",
    "question_en": "What's the score of New Zealand?",
    "question_th": "นิวซีแลนด์คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_3 (score VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_30 WHERE score = 67 - 70 - 77 = 214",
    "question_en": "What player has a score of 67-70-77=214?",
    "question_th": "นักเตะคนไหนมีคะแนน 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_en": "What country has a finish of 59?",
    "question_th": "ประเทศไหนจบปี 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_en": "What is the To Par when the finish was t16 and the player was Julius Boros?",
    "question_th": "ทูพาร์คืออะไรเมื่อจบสกอร์ที่ t16 และผู้เล่นคือ จูเลียส โบรอส?",
    "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_en": "What was the finish for Billy Casper?",
    "question_th": "การจบสกอร์ของ 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_en": "What is the 1st run that is down hill less than 46, and 84.45 points?",
    "question_th": "วิ่งลงเนินครั้งแรกน้อยกว่า 46 แต้ม 84.45 คืออะไร?",
    "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_en": "What away team score has hawthorn as the home team?",
    "question_th": "คะแนนทีมเยือนมีฮอว์ธอร์นเป็นเจ้าบ้านบ้าง?",
    "context": "CREATE TABLE table_name_84 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT make FROM table_name_24 WHERE drivers = \"hisashi wada\"",
    "question_en": "What is the make of the vehicle for driver Hisashi Wada?",
    "question_th": "ยานพาหนะของคนขับ ฮิซาชิ วาดะ คืออะไร?",
    "context": "CREATE TABLE table_name_24 (make VARCHAR, drivers VARCHAR)"
  },
  {
    "answer": "SELECT rounds FROM table_name_51 WHERE team = \"avanzza rosso\"",
    "question_en": "In what rounds was the featured team of Avanzza Rosso?",
    "question_th": "ทีมที่โดดเด่นของ 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_en": "In what rounds was the featured driver Tomonobu Fujii with a Tyre of Y?",
    "question_th": "นักแข่งที่โดดเด่นอย่างโทโมโนบุ ฟูจิอิที่ยาง 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_en": "Who is the driver with a tyre of k for Avanzza Rosso?",
    "question_th": "ใครคือคนขับพร้อมยาง k สำหรับ 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_en": "What is the tyre for Yoshihisa Namekata?",
    "question_th": "ยางของ 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_en": "If the pick is under 28 and the position is k, what's the highest Overall pick?",
    "question_th": "หากตัวเลือกอายุต่ำกว่า 28 ปีและตำแหน่งคือ k อะไรคือตัวเลือกโดยรวมที่สูงที่สุด?",
    "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_en": "During round 8 when the Position being picked was rb, what was the highest overall pick?",
    "question_th": "ในระหว่างรอบที่ 8 เมื่อตำแหน่งที่ถูกเลือกคือ rb อะไรคือตัวเลือกโดยรวมที่สูงที่สุด?",
    "context": "CREATE TABLE table_name_62 (overall INTEGER, position VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT county FROM table_name_34 WHERE bush_number = 566",
    "question_en": "Which county had a Bush number of votes of 566?",
    "question_th": "เขตใดมีคะแนนเสียงของบุชจำนวน 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_en": "who is the opponent when the year is after 1996 and the outcome is winner?",
    "question_th": "คู่ต่อสู้คือใครในปีหลังปี 1996 และผลลัพธ์เป็นผู้ชนะ?",
    "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_en": "what is the surface when the championship is rome and the opponent is sergi bruguera?",
    "question_th": "พื้นผิวจะเป็นอย่างไรเมื่อแชมป์อยู่ที่โรม และคู่ต่อสู้คือแซร์กี บรูเกรา?",
    "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_en": "what is the score when the surface is hard and outcome is runner-up?",
    "question_th": "เมื่อพื้นผิวแข็งและผลลัพธ์ได้รองชนะเลิศคือคะแนนเท่าไร?",
    "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_en": "What was the number of the game played on February 24?",
    "question_th": "เกมที่เล่นเมื่อวันที่ 24 กุมภาพันธ์คือหมายเลขเท่าไร?",
    "context": "CREATE TABLE table_name_29 (game INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_name_9 WHERE team = \"oklahoma city\"",
    "question_en": "Where was the game played when the opponent was Oklahoma City, and what was the attendance?",
    "question_th": "เกมนี้เล่นที่ไหนเมื่อคู่ต่อสู้คือโอคลาโฮมาซิตี้ และผู้เข้าร่วมเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_9 (location_attendance VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_59 WHERE game = 58",
    "question_en": "What was the record when they played game 58?",
    "question_th": "เมื่อพวกเขาเล่นเกม 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_en": "What is Score In The Final, when Date is \"22 October 1990\"?",
    "question_th": "คะแนนในรอบชิงชนะเลิศเมื่อวันที่คือ \"22 ตุลาคม 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_en": "What is Outcome, when Surface is \"Carpet (I)\", and when Date is \"15 November 1993\"?",
    "question_th": "ผลลัพธ์คืออะไร เมื่อ Surface คือ \"Carpet (I)\" และเมื่อใดคือ \"15 พฤศจิกายน 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_en": "What is Tournament, when Opponent In The Final is \"Andre Agassi\"?",
    "question_th": "Tournament คืออะไร เมื่อคู่ต่อสู้ในรอบชิงชนะเลิศคือ \"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_en": "What is Score In The Final, when Date is \"30 August 1993\"?",
    "question_th": "คะแนนในรอบชิงชนะเลิศคือวันที่ \"30 สิงหาคม 2536\"?",
    "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_en": "What is Date, when Outcome is \"Winner\", and when Surface is \"Grass\"?",
    "question_th": "วันที่คืออะไร เมื่อผลลัพธ์คือ \"ผู้ชนะ\" และเมื่อใดที่ Surface คือ \"หญ้า\"",
    "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_en": "What is Opponent In The Final, when Outcome is \"Winner\", when Surface is \"Carpet (I)\", and when Tournament is \"Lyon, France\"?",
    "question_th": "คู่ต่อสู้ในรอบชิงชนะเลิศคืออะไร เมื่อผลลัพธ์คือ \"ผู้ชนะ\" เมื่อ Surface คือ \"Carpet (I)\" และเมื่อการแข่งขันคือ \"ลียง ประเทศฝรั่งเศส\"",
    "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_en": "What are the total goals against the winner with less than 5 wins, and less than 5 plays?",
    "question_th": "ประตูรวมของผู้ชนะที่ชนะน้อยกว่า 5 ครั้ง และการเล่นน้อยกว่า 5 ครั้งคือเท่าใด",
    "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_en": "What is the average losses for 22 goals?",
    "question_th": "ค่าเฉลี่ยการแพ้ 22 ประตูคือเท่าไร?",
    "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_en": "What is the total wins with less than 2 ties, 18 goals, and less than 2 losses?",
    "question_th": "ชนะรวมน้อยกว่า 2 เสมอ 18 ประตูและแพ้น้อยกว่า 2 เป็นเท่าไหร่?",
    "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_en": "What is the Overall Record when the Last 10 Meetings is ou, 7-3, and Norman is ou, 18-3?",
    "question_th": "บันทึกโดยรวมจะเป็นอย่างไรเมื่อการประชุม 10 ครั้งล่าสุดคือคุณ 7-3 และนอร์แมนคือคุณ 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_en": "What is Oklahoma vs. when Current Streak is l 1, and Neutral Site is osu, 7-6?",
    "question_th": "โอคลาโฮมาเทียบกับอะไรเมื่อ Current Streak คือ l 1 และ Neutral Site คือ 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_en": "What is the Overall Record when Since Beginning of Big 12 is ou, 27-3?",
    "question_th": "บันทึกโดยรวมคืออะไรเมื่อตั้งแต่เริ่มต้น Big 12 คือคุณ 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_en": "What is the Last 10 Meetings when Norman is ou, 18-6?",
    "question_th": "การประชุม 10 ครั้งล่าสุดเมื่อนอร์แมนอายุ 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_en": "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?",
    "question_th": "อะไรคือจุดเริ่มต้นของบิ๊ก 12 เมื่อการประชุม 10 ครั้งล่าสุดคือคุณ 7-3 สนามกลางคือคุณ 2-1 และการประชุม 5 ครั้งล่าสุดคือ 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_en": "what is the current streak when the last 5 meetings is osu, 4-1?",
    "question_th": "สตรีคปัจจุบันเป็นอย่างไรบ้างเมื่อพบกัน 5 ครั้งหลังสุดเป็นโอสุ 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_en": "What is the record for a game lower than 79?",
    "question_th": "สถิติของเกมที่ต่ำกว่า 79 คืออะไร?",
    "context": "CREATE TABLE table_name_90 (record VARCHAR, game INTEGER)"
  },
  {
    "answer": "SELECT partner FROM table_name_48 WHERE score_in_the_final = \"7–6, 3–6, 6–7\"",
    "question_en": "Who was the partner when the final score was 7–6, 3–6, 6–7?",
    "question_th": "ใครคือคู่หูเมื่อสกอร์สุดท้ายคือ 7–6, 3–6, 6–7?",
    "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–6, 6–7\"",
    "question_en": "Who was the partner for the match with a score in the final of 4–6, 6–7?",
    "question_th": "ใครคือคู่แข่งขันที่มีสกอร์ในรอบชิงชนะเลิศ 4–6, 6–7?",
    "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–6, 3–6, 6–2\"",
    "question_en": "What tournament took place after 1986 and had a final score of 7–6, 3–6, 6–2?",
    "question_th": "ทัวร์นาเมนต์ใดเกิดขึ้นหลังปี 1986 และมีคะแนนสุดท้ายที่ 7–6, 3–6, 6–2",
    "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_en": "Which Year is the lowest one that has an Athlete of markus thalmann, and a Time of 23:28:24?",
    "question_th": "ปีใดที่มีนักกีฬา มาร์คุส ทาลมานน์ มากที่สุด และมีเวลา 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_en": "Which Year is the lowest one that has a Time of 24:55:58, and a Place larger than 3?",
    "question_th": "ปีใดคือปีต่ำสุดที่มีเวลา 24:55:58 และสถานที่ที่มากกว่า 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_en": "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?",
    "question_th": "นักกีฬาคนใดมีอันดับ 1 และหนึ่งปีน้อยกว่าปี 1988 และประเทศอันดับ gre และเวลา 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_en": "Which Time has a Year larger than 1985, and a Place smaller than 2, and an Athlete of riochy sekiya?",
    "question_th": "เวลาใดที่มีปีที่ใหญ่กว่าปี 1985 และสถานที่ที่มีขนาดเล็กกว่า 2 และมีนักกีฬาของ 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_en": "What was Anand's score in game 8?",
    "question_th": "คะแนนของอานันท์ในเกมที่ 8 คืออะไร?",
    "context": "CREATE TABLE table_name_67 (anand VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT day, _date FROM table_name_20 WHERE game = \"2\"",
    "question_en": "What is the day and date of game 2?",
    "question_th": "เกมที่ 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_en": "WHAT IS THE HIGH ASSISTS ON NOVEMBER 24?",
    "question_th": "แอสซิสต์สูงในวันที่ 24 พฤศจิกายนคืออะไร?",
    "context": "CREATE TABLE table_name_21 (high_assists VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_name_7 WHERE game = 4",
    "question_en": "WHAT IS THE LOCATION ATTENDANCE FOR GAME 4?",
    "question_th": "สถานที่สำหรับเกมที่ 4 คืออะไร?",
    "context": "CREATE TABLE table_name_7 (location_attendance VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_44 WHERE date = \"november 14\"",
    "question_en": "WHAT IS THE RECORD FOR DATE NOVEMBER 14?",
    "question_th": "บันทึกสำหรับวันที่ 14 พฤศจิกายนคืออะไร?",
    "context": "CREATE TABLE table_name_44 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_29 WHERE date = \"18 may 1992\"",
    "question_en": "What tournament is on 18 May 1992?",
    "question_th": "แข่งขันรายการใดในวันที่ 18 พฤษภาคม 2535?",
    "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_en": "What is the score of the tournament with a carpet surface and tim henman as the partnering?",
    "question_th": "คะแนนของทัวร์นาเมนต์ที่มีปูพรมและมีทิม เฮนแมนเป็นคู่หูเป็นอย่างไรบ้าง?",
    "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árez\"",
    "question_en": "On what surface did Katarina Srebotnik play Paola Suárez?",
    "question_th": "Katarina Srebotnik รับบท Paola Suárez บนพื้นผิวใด",
    "context": "CREATE TABLE table_name_83 (surface VARCHAR, opponent_in_final VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_54 WHERE score_in_final = \"5–7, 7–5, 6–4\"",
    "question_en": "At what tournament was the Score 5–7, 7–5, 6–4?",
    "question_th": "คะแนน 5–7, 7–5, 6–4 ในการแข่งขันรายการใด",
    "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_en": "What was the Final Score on February 24, 2002?",
    "question_th": "คะแนนสุดท้ายเมื่อวันที่ 24 กุมภาพันธ์ พ.ศ. 2545 เป็นเท่าใด",
    "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̇stanbul\"",
    "question_en": "Who was Team #1 when Team #2 was galatasaray cc i̇stanbul?",
    "question_th": "ใครคือทีม #1 เมื่อทีม #2 คือ galatasaray cc i̇stanbul?",
    "context": "CREATE TABLE table_name_20 (team__number1 VARCHAR, team__number2 VARCHAR)"
  },
  {
    "answer": "SELECT podiums FROM table_name_82 WHERE poles = \"3\"",
    "question_en": "What are the Podiums that has a Poles of 3?",
    "question_th": "โพเดียมที่มีเสา 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_en": "What is the Team that has a Races of 4, and a Points of 0?",
    "question_th": "ทีมใดที่มีการแข่งขัน 4 และคะแนน 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_en": "What to par is located in the united states and has a player by the name of hal sutton?",
    "question_th": "อะไรที่จะพาร์ตั้งอยู่ในสหรัฐอเมริกาและมีผู้เล่นชื่อฮาลซัตตัน?",
    "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_en": "What player is in the place of t1 and has the score of 67-70=137?",
    "question_th": "ผู้เล่นคนไหนอยู่อันดับ t1 และมีคะแนน 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_en": "What place has the score of 67-74=141?",
    "question_th": "อันดับไหนมีคะแนน 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_en": "What player has the score of 67-72=139?",
    "question_th": "นักเตะคนไหนมีคะแนน 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_en": "What was Gassaway's record at the fight in mississippi, united states against anthony macias?",
    "question_th": "บันทึกของ Gassaway ในการชกที่มิสซิสซิปปี้ สหรัฐอเมริกา กับ 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_en": "What was the location the fight was held at that lasted 5 rounds?",
    "question_th": "การต่อสู้ที่กินเวลา 5 รอบคือสถานที่ใด?",
    "context": "CREATE TABLE table_name_23 (location VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_66 WHERE opponent = \"kevin knabjian\"",
    "question_en": "What was the location of the fight when Gassaway fought kevin knabjian?",
    "question_th": "ฉากชกเมื่อ Gassaway ปะทะ kevin knabjian อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_66 (location VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_84 WHERE player = \"fred couples\"",
    "question_en": "What place did Fred Couples finish in?",
    "question_th": "Fred Couples จบอันดับที่ไหน?",
    "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_en": "What is the rank of the company who has a revenue of $428.2 billion?",
    "question_th": "บริษัทที่มีรายได้ 428.2 พันล้านดอลลาร์อยู่ในอันดับที่เท่าไหร่?",
    "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_en": "What is the rank of the petroleum company who has a revenue of $481.7 billion?",
    "question_th": "บริษัทปิโตรเลียมที่มีรายได้ 481.7 พันล้านดอลลาร์อยู่ในอันดับที่เท่าไหร่",
    "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_en": "What is Tournament, when 2005 is \"N/A\", and when 2002 is \"0 / 1\"?",
    "question_th": "การแข่งขันคืออะไร เมื่อปี 2548 เป็น \"N/A\" และเมื่อปี 2545 เป็น \"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_en": "What is Career Win-Loss, when 2002 is \"A\", and when 2001 is \"4R\"?",
    "question_th": "Career Win-Loss คืออะไร เมื่อปี 2545 คือ \"A\" และเมื่อปี 2544 คือ \"4R\"",
    "context": "CREATE TABLE table_name_70 (career_win_loss VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_48 WHERE 2001 = \"1r\"",
    "question_en": "What is Tournament, when 2001 is \"1R\"?",
    "question_th": "การแข่งขันคืออะไร เมื่อปี 2544 เป็น \"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_en": "Who is in the south-west next to Vishnu on the east, Durga on the west, and in the center of Ganapati?",
    "question_th": "ใครอยู่ทางทิศตะวันตกเฉียงใต้ ถัดจากพระวิษณุทางทิศตะวันออก ทุรคาทางทิศตะวันตก และใจกลางพระพิฆเนศ?",
    "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_en": "What was the final score of game 26?",
    "question_th": "คะแนนสุดท้ายของเกมที่ 26 คืออะไร?",
    "context": "CREATE TABLE table_name_64 (score VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT AVG(game) FROM table_name_80 WHERE date = \"december 8\"",
    "question_en": "What game was played on December 8?",
    "question_th": "วันที่ 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_en": "What is the sum of the areas for populations of 542?",
    "question_th": "ผลรวมของพื้นที่สำหรับประชากร 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_en": "What is the highest area for locations named Centreville having populations over 532?",
    "question_th": "พื้นที่ใดที่สูงที่สุดสำหรับสถานที่ชื่อเซนเตอร์วิลล์ซึ่งมีประชากรมากกว่า 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_en": "what is the competition when the result is 1-1 and venue is gwangju?",
    "question_th": "การแข่งขันจะเป็นอย่างไรเมื่อผลออกมาเป็น 1-1 และสนามคือกวางจู?",
    "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_en": "what is the date when the competition is 1998 asian games?",
    "question_th": "เอเชี่ยนเกมส์ 1998 จัดแข่งขันวันไหน?",
    "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_en": "what is the venue when the score is 1 goal and the date is october 11, 1997?",
    "question_th": "สนามใดที่มีสกอร์ 1 ประตู และวันที่ 11 ตุลาคม 2540 คือสนามใด?",
    "context": "CREATE TABLE table_name_96 (venue VARCHAR, score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_58 WHERE result = \"2-1\"",
    "question_en": "what is the competition when the result is 2-1?",
    "question_th": "การแข่งขันจะเป็นเช่นไรเมื่อผลออกมาเป็น 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_en": "what is the result when the date is august 24, 1997?",
    "question_th": "วันที่ 24 สิงหาคม 2540 ผลเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_52 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_6 WHERE date = \"december 7, 1998\"",
    "question_en": "what is the venue when the date is december 7, 1998?",
    "question_th": "วันที่ 7 ธันวาคม 2541 จัดขึ้นที่ใด?",
    "context": "CREATE TABLE table_name_6 (venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_23 WHERE time_retired = \"+5.2684\"",
    "question_en": "Who is the driver with a time/retired of +5.2684?",
    "question_th": "ใครคือผู้ขับขี่ที่มีเวลา/เกษียณ +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_en": "What is the grid of driver tomas scheckter from vision racing team?",
    "question_th": "ตารางของนักแข่ง Tomas Scheckter จากทีม Vision Racing คืออะไร?",
    "context": "CREATE TABLE table_name_22 (grid VARCHAR, team VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT grid FROM table_name_17 WHERE car_no = \"3\"",
    "question_en": "What is the grid of car no. 3?",
    "question_th": "ตารางหมายเลขรถคืออะไร 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_en": "What is the grid with a +6.8359 time/retired?",
    "question_th": "ตารางที่มีเวลา +6.8359/เกษียณคืออะไร?",
    "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_en": "WHAT IS THE 1ST LEG WITH TEAM 2 AS ATHLETIC?",
    "question_th": "เลกแรกกับทีม 2 เป็นนักกีฬาคืออะไร?",
    "context": "CREATE TABLE table_name_5 (team_2 VARCHAR)"
  },
  {
    "answer": "SELECT 2 AS nd_leg FROM table_name_22 WHERE team_1 = \"sporting\"",
    "question_en": "WHAT IS THE 2ND LEG WITH TEAM 1 OF SPORTING?",
    "question_th": "เลกที่ 2 กับทีม 1 ของ SPORTING คืออะไร?",
    "context": "CREATE TABLE table_name_22 (team_1 VARCHAR)"
  },
  {
    "answer": "SELECT SUM(against) FROM table_name_86 WHERE opposing_team = \"cuyo selection\"",
    "question_en": "Sum of cuyo selection as the opposing team?",
    "question_th": "ผลรวมของการเลือก Cuyo เป็นทีมตรงข้าม?",
    "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_en": "Lowest against for tour match on 21 july 1990?",
    "question_th": "ต่ำสุดเมื่อเทียบกับทัวร์แมตช์วันที่ 21 กรกฎาคม 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_en": "Name the lowest version with a code of u+1034a that began after 2001.",
    "question_th": "ตั้งชื่อเวอร์ชันต่ำสุดด้วยรหัส u+1034a ซึ่งเริ่มหลังปี 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_en": "What character was the version 5.1 and had a Greek capital letter Archaic Sampi?",
    "question_th": "ตัวละครใดเป็นเวอร์ชัน 5.1 และมีอักษรกรีกตัวพิมพ์ใหญ่ 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_en": "Give the sum of the version with the coptic small letter sampi, and a year after 2005.",
    "question_th": "ให้ผลรวมของเวอร์ชันด้วยอักษรตัวเล็กคอปติก sampi และหนึ่งปีหลังจากปี 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_en": "What is the year that has a name with the Greek small letter sampi?",
    "question_th": "ปีใดมีชื่อเรียกตามอักษรกรีกตัวเล็กว่า ซัมปี คือ ปีอะไร?",
    "context": "CREATE TABLE table_name_89 (year INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_95 WHERE player = \"bob rosburg\"",
    "question_en": "What country id Bob Rosburg from?",
    "question_th": "รหัส Bob Rosburg มาจากประเทศอะไร?",
    "context": "CREATE TABLE table_name_95 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_14 WHERE score = 73 - 72 - 67 = 212",
    "question_en": "What country has a score of 73-72-67=212?",
    "question_th": "ประเทศใดมีคะแนน 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_en": "What is Mike Souchak's to par?",
    "question_th": "ไมค์ ซูชัก จะได้พาร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_89 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_70 WHERE player = \"mike souchak\"",
    "question_en": "What is Mike Souchak's to par score?",
    "question_th": "คะแนนพาร์ของ Mike Souchak คืออะไร?",
    "context": "CREATE TABLE table_name_70 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_4 WHERE total = 285",
    "question_en": "What was the finish for the golfer with a total of 285?",
    "question_th": "นักกอล์ฟจบสกอร์รวม 285 แต้มได้เท่าไร?",
    "context": "CREATE TABLE table_name_4 (finish VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT total FROM table_name_20 WHERE year_s__won = \"1987\"",
    "question_en": "What was the total for the golfer who had a year won of 1987?",
    "question_th": "ยอดรวมของนักกอล์ฟที่ชนะในปี 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_en": "What was the finish for the golfer with a To par of +2?",
    "question_th": "การจบสกอร์ของนักกอล์ฟที่มีพาร์ถึง +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_en": "What was the total for the golfer who had a To par of +10 and year won of 1971?",
    "question_th": "ยอดรวมของนักกอล์ฟที่มีพาร์ถึง +10 และชนะในปี 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–86 (ot)\"",
    "question_en": "What team played before game 71 and had a score w 91–86 (ot)?",
    "question_th": "ทีมใดเล่นก่อนเกมที่ 71 และมีสกอร์ 91–86 (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_en": "What was the high assist for game 66?",
    "question_th": "แอสซิสต์สูงในเกมที่ 66 คืออะไร?",
    "context": "CREATE TABLE table_name_15 (high_assists VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_39 WHERE player = \"josé maría olazábal\"",
    "question_en": "What is josé maría olazábal's country?",
    "question_th": "ประเทศของ โฆเซ่ มาเรีย โอลาซาบัล คืออะไร?",
    "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_en": "Which Player has a Score of 74-67-74-71=286?",
    "question_th": "ผู้เล่นคนไหนมีคะแนน 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_en": "Which Place has a Country of united states, and a Player of corey pavin?",
    "question_th": "สถานที่ใดมีประเทศสหรัฐอเมริกา และมีผู้เล่นของ 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_en": "Who is the opponent in week 15?",
    "question_th": "คู่ต่อสู้ในสัปดาห์ที่ 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_en": "What is the highest attendance a result of W 30-7?",
    "question_th": "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_en": "What is the average attendance at week earlier than 6 on October 14, 2001?",
    "question_th": "ผู้เข้าร่วมโดยเฉลี่ยในสัปดาห์ก่อนวันที่ 6 ตุลาคม ของวันที่ 14 ตุลาคม พ.ศ. 2544 เป็นเท่าใด",
    "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_en": "what is the record when the method is submission (armbar) and the round is less than 3?",
    "question_th": "บันทึกเมื่อวิธียื่น (armbar) และรอบน้อยกว่า 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_en": "How many average points did svg burgkirchen have with a loss smaller than 6?",
    "question_th": "svg burgkirchen มีคะแนนเฉลี่ยกี่คะแนนโดยขาดทุนน้อยกว่า 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_en": "Who had points smaller than 22 and a drawn of 2?",
    "question_th": "ใครมีแต้มน้อยกว่า 22 และเสมอ 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_en": "Who lost 2 and had a position bigger than 1?",
    "question_th": "ใครแพ้ 2 และมีตำแหน่งมากกว่า 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_en": "What is the name of the catalog issued with the title of 1958 Miles on the Sony label at a year prior to 2006?",
    "question_th": "แค็ตตาล็อกที่ออกชื่อ 1958 Miles บนฉลาก Sony ในหนึ่งปีก่อนปี 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_en": "What is the label of the Year before 1979?",
    "question_th": "ป้ายกำกับแห่งปีก่อนปี 1979 คืออะไร?",
    "context": "CREATE TABLE table_name_16 (label VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_74 WHERE tournament = \"miami masters\"",
    "question_en": "WHAT IS THE 2011 PERFORMANCE AT THE MIAMI MASTERS?",
    "question_th": "ผลงานในปี 2011 ที่ MIAMI MASTERS เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_74 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2008 FROM table_name_45 WHERE 2007 = \"career statistics\"",
    "question_en": "WHAT IS THE 2008 PERFORMANCE WITH A 2007 CAREER STATISTICS?",
    "question_th": "ผลการดำเนินงานปี 2551 และสถิติอาชีพปี 2550 เป็นอย่างไรบ้าง",
    "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_en": "WHAT IS THE TOURNAMENT WITH A 2010 OF A, 2009 OF A, AND 001 PERFORMANCE OF Q1?",
    "question_th": "การแข่งขันกับผลการดำเนินงานปี 2010 ของ A, 2009 ของ A และ 001 ของ 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_en": "WHAT IS THE 2009 PERFORMANCE WITH A 2012 OF 2R, 2001 OF 1R, 2007 OF A, AND 2008 OF A?",
    "question_th": "ประสิทธิภาพในปี 2009 กับ 2012 ของ 2R, 2001 ของ 1R, 2007 ของ A และ 2008 ของ A คืออะไร?",
    "context": "CREATE TABLE table_name_77 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_90 WHERE 2007 = \"q3\"",
    "question_en": "WHAT IS THE 2011 PERFORMANCE WITH A 2007 OF Q3?",
    "question_th": "ผลการดำเนินงานปี 2554 ในไตรมาสที่ 3 ปี 2550 เป็นอย่างไรบ้าง",
    "context": "CREATE TABLE table_name_90 (Id VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_95 WHERE place = \"t2\"",
    "question_en": "Which Score has a Place of t2?",
    "question_th": "คะแนนใดมีตำแหน่ง t2?",
    "context": "CREATE TABLE table_name_95 (score VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_93 WHERE country = \"spain\"",
    "question_en": "What was spain's score?",
    "question_th": "สเปนได้สกอร์เท่าไหร่?",
    "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_en": "Which To par has a Score of 70-73-80-68=291?",
    "question_th": "พาร์ใดมีคะแนน 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_en": "From what Country is T6 Place Player Tom Weiskopf?",
    "question_th": "Tom Weiskopf ผู้เล่น T6 Place มาจากประเทศใด",
    "context": "CREATE TABLE table_name_12 (country VARCHAR, place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_13 WHERE to_par = \"–2\" AND player = \"johnny miller\"",
    "question_en": "With a To par of –2, what is Johnny Miller's Place?",
    "question_th": "ด้วยพาร์ถึง –2 แล้วตำแหน่งของจอห์นนี่ มิลเลอร์คืออะไร?",
    "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_en": "From what Country is Gene Borek?",
    "question_th": "Gene Borek มาจากประเทศใด",
    "context": "CREATE TABLE table_name_80 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_46 WHERE to_par = \"–5\"",
    "question_en": "What is the Country of the Player with a To par of –5?",
    "question_th": "ประเทศของผู้เล่นที่มีพาร์ถึง –5 คืออะไร?",
    "context": "CREATE TABLE table_name_46 (country VARCHAR, to_par VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_18 WHERE country = \"new zealand\"",
    "question_en": "What is the Place of the Player from New Zealand?",
    "question_th": "สถานที่ของผู้เล่นจากนิวซีแลนด์คืออะไร?",
    "context": "CREATE TABLE table_name_18 (place VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_28 WHERE score = 70 - 68 = 138",
    "question_en": "What is the Place of the Player with a Score of 70-68=138?",
    "question_th": "ผู้เล่นที่มีคะแนน 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_en": "What is the highest Losses, when Wins is greater than 1, and when Last Appearance is 2003?",
    "question_th": "อะไรคือความสูญเสียสูงสุด เมื่อชนะมากกว่า 1 และเมื่อปรากฏตัวครั้งสุดท้ายคือปี 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_en": "What is the highest Wins, when Percent is 0.000, when School is Oklahoma State, and when Appearances is less than 1?",
    "question_th": "ชัยชนะสูงสุดคืออะไร เมื่อเปอร์เซ็นต์คือ 0.000 เมื่อโรงเรียนคือรัฐโอคลาโฮมา และเมื่อปรากฏน้อยกว่า 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_en": "What is the total number of Losses, when Last Appearance is 2003, and when Wins is greater than 2?",
    "question_th": "จำนวนการแพ้ทั้งหมดเมื่อปรากฏตัวครั้งล่าสุดคือปี 2003 และเมื่อชนะมากกว่า 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_en": "What is Last Appearance, when Wins is less than 1, when Losses is 1, and when School is Oklahoma State?",
    "question_th": "การปรากฏตัวครั้งสุดท้ายคืออะไร เมื่อชนะน้อยกว่า 1 เมื่อแพ้คือ 1 และเมื่อโรงเรียนอยู่ในรัฐโอคลาโฮมา",
    "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_en": "What is College, when Pick is less than 145, and when Player is Jeff Wilkins?",
    "question_th": "College คืออะไร เมื่อ Pick น้อยกว่า 145 และเมื่อ Player คือ 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_en": "What is Nationality, and when College is Illinois State?",
    "question_th": "สัญชาติคืออะไร และวิทยาลัยคือรัฐอิลลินอยส์เมื่อใด",
    "context": "CREATE TABLE table_name_2 (nationality VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_5 WHERE round = 6",
    "question_en": "What is Nationality, when Round is 6?",
    "question_th": "สัญชาติคืออะไร เมื่อรอบที่ 6?",
    "context": "CREATE TABLE table_name_5 (nationality VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(round) FROM table_name_39 WHERE college = \"northern illinois\"",
    "question_en": "What is the total number of Round, when College is Northern Illinois?",
    "question_th": "เมื่อวิทยาลัยอยู่ที่ 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_en": "What is the average bronze when the total is 2, silver is less than 1 and gold is more than 1?",
    "question_th": "บรอนซ์เฉลี่ยเมื่อรวมเป็น 2 เงินน้อยกว่า 1 และทองมากกว่า 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_en": "what is the average silver when the total is more than 20?",
    "question_th": "เงินเฉลี่ยเมื่อยอดรวมมากกว่า 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_en": "what is the highest rank when the nation is united states (usa) and bronze is more than 1?",
    "question_th": "อันดับสูงสุดเมื่อประเทศคือสหรัฐอเมริกา (usa) และทองแดงมากกว่า 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_en": "what is the average total when bronze is more than 0, gold is 0, the nation is united states (usa) and silver is 0?",
    "question_th": "ค่าเฉลี่ยทั้งหมดคือเท่าใดเมื่อทองแดงมากกว่า 0, ทองเป็น 0, ประเทศคือสหรัฐอเมริกา (usa) และเงินเป็น 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_en": "What was the resolution for the fight against enrique guzman?",
    "question_th": "มติในการต่อสู้กับเอ็นริเก้ กุซมันคืออะไร?",
    "context": "CREATE TABLE table_name_67 (res VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT res FROM table_name_20 WHERE record = \"8-6\"",
    "question_en": "What was the resolution of the fight when Nate Mohr's record was 8-6?",
    "question_th": "ความละเอียดของการต่อสู้เมื่อสถิติของ Nate Mohr อยู่ที่ 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_en": "What is the smallest number of third place earned for the Es Sahel at a rank less than 3?",
    "question_th": "จำนวนอันดับสามที่น้อยที่สุดที่ได้รับสำหรับ Es Sahel ในตำแหน่งน้อยกว่า 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_en": "Which club has 1 runners-up with 0 winners and 2 third place earned?",
    "question_th": "สโมสรใดมีรองชนะเลิศ 1 คน ผู้ชนะ 0 คน และอันดับที่ 3 ได้ 2 ครั้ง?",
    "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_en": "What is Name, when Bonus is greater than 1, when Only Point is greater than 7, and when Total Point is less than 21?",
    "question_th": "ชื่อคืออะไร เมื่อโบนัสมากกว่า 1 เมื่อแต้มเท่านั้นมากกว่า 7 และเมื่อคะแนนรวมน้อยกว่า 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_en": "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?",
    "question_th": "ชื่อคืออะไร เมื่อแต้มเท่านั้นมากกว่า 1 เมื่อ Catch Taken มากกว่า 3 เมื่อโบนัสมากกว่า 4 และเมื่อคะแนนรวมน้อยกว่า 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_en": "How many grids does Ducati have with Casey Stoner as a rider with fewer than 27 laps?",
    "question_th": "Ducati มีกริดกี่เส้นโดย Casey Stoner ในฐานะนักบิดที่มีรอบน้อยกว่า 27 รอบ?",
    "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_en": "Which manufacturer has a time of +10.142?",
    "question_th": "ผู้ผลิตรายใดมีเวลา +10.142?",
    "context": "CREATE TABLE table_name_11 (manufacturer VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_30 WHERE rider = \"loris capirossi\"",
    "question_en": "What is Loris Capirossi's time?",
    "question_th": "เวลาของ Loris Capirossi คืออะไร?",
    "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_en": "What were the highest laps when the grid was larger than 19 and the time/retired was fuel?",
    "question_th": "อะไรคือรอบสูงสุดเมื่อกริดมีขนาดใหญ่กว่า 19 และเวลา/เลิกใช้เป็นเชื้อเพลิง?",
    "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_en": "Which team did Scott Pruett drive for when the grid was smaller than 20 and there were 65 laps?",
    "question_th": "Scott Pruett ขับให้ทีมใดเมื่อกริดน้อยกว่า 20 และมีทั้งหมด 65 รอบ",
    "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_en": "What year is the date when the boiler type is forward topfeed, the built at is Crewe, and lot number is less than 187?",
    "question_th": "บอยเลอร์ประเภท Forward Topfeed คือวันที่สร้างที่ Crewe และ Lot Number น้อยกว่า 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_en": "What was the date of the game where Esteban Paredes scored 2 goals?",
    "question_th": "เกมที่เอสเตบัน ปาเรเดส ยิง 2 ประตูคือวันที่เท่าไหร่?",
    "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_en": "What is the highest attendance when the opponent is the Los Angeles Rams and the week is less than 11?",
    "question_th": "อะไรคือผู้เข้าร่วมสูงสุดเมื่อคู่ต่อสู้คือ Los Angeles Rams และในสัปดาห์น้อยกว่า 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_en": "What is the result when the week is greater than 7 and the Houston Oilers were the opponent?",
    "question_th": "ผลจะเป็นอย่างไรเมื่อสัปดาห์มากกว่า 7 และฮุสตัน ออยเลอร์สเป็นคู่ต่อสู้?",
    "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_en": "What is Record, when Location Attendance is \"Izod Center 16,911\"?",
    "question_th": "บันทึกคืออะไร เมื่อการเข้าร่วมสถานที่คือ \"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_en": "What is High Rebounds, when High Assists is \"Delonte West (10)\"?",
    "question_th": "High Rebounds คืออะไร เมื่อ High Assists คือ \"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_en": "What catalog had an Epic Records label in CD format?",
    "question_th": "แคตตาล็อกใดมีป้ายกำกับ Epic Records ในรูปแบบซีดี",
    "context": "CREATE TABLE table_name_16 (catalog VARCHAR, label VARCHAR, format VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_37 WHERE region = \"australia\"",
    "question_en": "Which label is in Australia?",
    "question_th": "ป้ายไหนอยู่ในออสเตรเลีย?",
    "context": "CREATE TABLE table_name_37 (label VARCHAR, region VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_38 WHERE time = \"2:43\"",
    "question_en": "The match that lasted 2:43 has what record?",
    "question_th": "การแข่งขันที่กินเวลา 2:43 มีสถิติอะไรบ้าง?",
    "context": "CREATE TABLE table_name_38 (record VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT method FROM table_name_54 WHERE venue = \"club med sandpiper\"",
    "question_en": "The match that was held at Club Med Sandpiper has what method?",
    "question_th": "แมตช์ที่จัดขึ้นที่ Club Med Sandpiper มีวิธีใดบ้าง?",
    "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_en": "The match of at Michael's Eighth Avenue venue against Tim Coleman that went 3:00 has what record?",
    "question_th": "การแข่งขันที่สนาม Michael's Eighth Avenue กับ Tim Coleman เวลา 3:00 น. มีสถิติอะไรบ้าง?",
    "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_en": "What method did the match at Club Med Sandpiper have?",
    "question_th": "แมตช์ที่ Club Med Sandpiper มีวิธีใดบ้าง?",
    "context": "CREATE TABLE table_name_88 (method VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_87 WHERE catalog = \"lpm-2899\"",
    "question_en": "What is the Label of the release with Catalog number LPM-2899?",
    "question_th": "ฉลากของรุ่นที่มีหมายเลขแคตตาล็อก 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_en": "What is the Date of the RCA release with Catalog number SF-7635?",
    "question_th": "RCA จะวางจำหน่ายวันที่เท่าไร โดยมีหมายเลข Catalog 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_en": "What is the Catalog of the RCA release?",
    "question_th": "แคตตาล็อกของการเปิดตัว RCA คืออะไร?",
    "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_en": "What is the Catalog number of the CD Reissue Universal release?",
    "question_th": "หมายเลขแค็ตตาล็อกของ 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_en": "What is the Label of the release on Stereo vinyl LP with Catalog number SF-7635?",
    "question_th": "ฉลากของการเปิดตัวใน Stereo Vinyl LP ที่มีหมายเลขแค็ตตาล็อก 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 = \"± 4.5%\" AND pat_toomey__r_ = \"45%\" AND joe_sestak__d_ = \"38%\"",
    "question_en": "WHAT CANDIDATE HAD A MARGIN OF ERROR OF ± 4.5%, WHEN PAT TOOMEY WAS 45% AND JOE SESTAK WAS 38%?",
    "question_th": "ผู้สมัครคนใดมีระยะขอบของข้อผิดพลาด ± 4.5% เมื่อ PAT TOOMEY อยู่ที่ 45% และ JOE SESTAK อยู่ที่ 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 = \"± 3.0%\"",
    "question_en": "WHAT DATE DID JOE SESTAK HAVE 46% WITH ± 3.0% MARGIN OF ERROR?",
    "question_th": "วันที่เท่าไหร่ที่ JOE SESTAK มี 46% โดยมีอัตรากำไรขั้นต้น ± 3.0%",
    "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_en": "WHAT IS THE POINTS PERCENTAGE WITH A TOTAL OF 1-2-2 RECORD?",
    "question_th": "เปอร์เซ็นต์คะแนนที่มีคะแนนรวม 1-2-2 เป็นเท่าใด",
    "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_en": "WHAT YEAR HAD 5 TOTAL MATCHES?",
    "question_th": "ปีใดที่มีการแข่งขันทั้งหมด 5 นัด?",
    "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_en": "What is the quantity preserved when 4 were made of class F-21?",
    "question_th": "ปริมาณที่เก็บรักษาไว้เมื่อ 4 ถูกสร้างขึ้นจากคลาส 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_en": "What fleet number had 3 made?",
    "question_th": "3 สร้างกองเรือหมายเลขใด?",
    "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_en": "What class had 1 made and fleet number of 406?",
    "question_th": "1 ชั้นใดมีการผลิตและมีหมายเลขกองเรือ 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_en": "What class has 0 preserved and 2 made?",
    "question_th": "คลาสใดที่ 0 เก็บรักษาไว้และ 2 สร้าง?",
    "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_en": "What rank has a population of 4839400?",
    "question_th": "อันดับใดมีประชากร 4839400?",
    "context": "CREATE TABLE table_name_87 (rank INTEGER, population VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_14 WHERE definition = \"province-level municipality\"",
    "question_en": "What's the rank of the Province-Level Municipality?",
    "question_th": "เทศบาลระดับจังหวัดมียศอะไร?",
    "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_en": "What rank was Core Districts + Inner Suburbs and had a population of 10123000?",
    "question_th": "เขตหลัก + ชานเมืองชั้นในอยู่ในอันดับที่ใด และมีประชากร 1,0123,000 คน",
    "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_en": "What is Points, when Draws is less than 7, when Wins is less than 16, and when Goals For is \"35\"?",
    "question_th": "แต้มคืออะไร เมื่อเสมอน้อยกว่า 7 เมื่อชนะน้อยกว่า 16 และเมื่อประตูสำหรับคือ \"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_en": "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?",
    "question_th": "จำนวนการสูญเสียทั้งหมดคือเท่าใด เมื่อตำแหน่งมากกว่า 8 เมื่อประตูมากกว่า 34 เมื่อแต้มคือ \"25\" และเมื่อเสมอน้อยกว่า 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_en": "What is the average Wins, when Points is less than \"19\"?",
    "question_th": "การชนะโดยเฉลี่ยคือเท่าใด เมื่อคะแนนน้อยกว่า \"19\"?",
    "context": "CREATE TABLE table_name_32 (wins INTEGER, points INTEGER)"
  },
  {
    "answer": "SELECT MIN(goals_for) FROM table_name_31 WHERE played > 30",
    "question_en": "What is the lowest Goals, when Played is greater than 30?",
    "question_th": "ประตูต่ำสุดเมื่อเล่นมากกว่า 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_en": "What is the sum of Played, when Losses is \"13\", and when Position is greater than 11?",
    "question_th": "ผลรวมของการเล่นเมื่อแพ้คือ \"13\" และเมื่อตำแหน่งมากกว่า 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_en": "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?",
    "question_th": "ชัยชนะที่ต่ำที่สุดคืออะไร เมื่อแพ้น้อยกว่า 10 เมื่อผลต่างประตูน้อยกว่า 46 เมื่อประตูน้อยกว่า 63 และเมื่อเล่นน้อยกว่า 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_en": "How many viewed the episode gary gets boundaries?",
    "question_th": "มีกี่คนที่ดูตอนนี้ gary ได้รับขอบเขต?",
    "context": "CREATE TABLE table_name_47 (viewers VARCHAR, episode VARCHAR)"
  },
  {
    "answer": "SELECT episode FROM table_name_97 WHERE viewers = 6.71",
    "question_en": "What episode had 6.71 viewers?",
    "question_th": "ตอนไหนมีผู้ชม 6.71 คน?",
    "context": "CREATE TABLE table_name_97 (episode VARCHAR, viewers VARCHAR)"
  },
  {
    "answer": "SELECT air_date FROM table_name_65 WHERE viewers = 7.3",
    "question_en": "When did the episode air that had 7.3 viewers?",
    "question_th": "ออกอากาศตอนไหนที่มีคนดู 7.3 คน?",
    "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_en": "What day in March is the game with a 48-13-11 record and a game number less than 72?",
    "question_th": "วันไหนในเดือนมีนาคมที่เกมมีสถิติ 48-13-11 และเลขเกมน้อยกว่า 72?",
    "context": "CREATE TABLE table_name_12 (march INTEGER, record VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_44 WHERE game = 75",
    "question_en": "Who is the opponent of game 75?",
    "question_th": "คู่ต่อสู้ของเกม 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_en": "What is the lowest game number of the game after March 2 with the minnesota north stars as the opponent?",
    "question_th": "หมายเลขเกมต่ำสุดของเกมหลังวันที่ 2 มีนาคมคือคู่ต่อสู้ที่มีมินนิโซตานอร์ธสตาร์เป็นคู่ต่อสู้",
    "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_en": "The winner, Craig Lowndes, was in what location/state?",
    "question_th": "ผู้ชนะ Craig Lowndes อยู่ในสถานที่/รัฐใด",
    "context": "CREATE TABLE table_name_57 (location___state VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_56 WHERE circuit = \"eastern creek raceway\"",
    "question_en": "The Eastern Creek Raceway circuit is on what date?",
    "question_th": "สนามแข่งรถ Eastern Creek Raceway จัดวันที่เท่าไหร่?",
    "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_en": "Castrol Perkins Motorsport and the winner Russell Ingall was in what location/state?",
    "question_th": "Castrol Perkins Motorsport และผู้ชนะ Russell Ingall อยู่ในสถานที่/รัฐใด",
    "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_en": "What shows for 1998 when 1996 is 1R, and 2002 is not held?",
    "question_th": "อะไรแสดงให้เห็นในปี 1998 เมื่อปี 1996 เป็น 1R และปี 2002 ไม่ได้จัดขึ้น?",
    "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_en": "What is the 1996 when the 1994 is A, the 2003 is A, and the 2001 is 1R?",
    "question_th": "อะไรคือปี 1996 เมื่อปี 1994 คือ A, ปี 2003 คือ A และปี 2001 คือ 1R",
    "context": "CREATE TABLE table_name_23 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1991 FROM table_name_44 WHERE 2002 = \"2r\"",
    "question_en": "What shows for 1991 when 2002 is 2R?",
    "question_th": "อะไรแสดงให้เห็นในปี 1991 เมื่อปี 2002 เป็น 2R?",
    "context": "CREATE TABLE table_name_44 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2006 FROM table_name_7 WHERE 1990 = \"grand slam tournaments\"",
    "question_en": "What shows for 2006 when 1999 is Grand Slam Tournaments?",
    "question_th": "อะไรแสดงให้เห็นในปี 2549 เมื่อปี 1999 เป็นการแข่งขันแกรนด์สแลม?",
    "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_en": "What shows for 2006 when 2000 is 1r, 1996 is A, and Tournament is Cincinnati Masters?",
    "question_th": "อะไรแสดงให้เห็นในปี 2549 เมื่อปี 2000 คือ 1r, 1996 คือ A และ Tournament คือ Cincinnati Masters",
    "context": "CREATE TABLE table_name_65 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_61 WHERE 1990 = \"olympic games\"",
    "question_en": "What is the Tournament when the 1990 is Olympic Games?",
    "question_th": "การแข่งขันคืออะไรเมื่อปี 1990 เป็นกีฬาโอลิมปิก?",
    "context": "CREATE TABLE table_name_61 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_59 WHERE record = \"0-1\"",
    "question_en": "Which Location has a Record of 0-1?",
    "question_th": "สถานที่ใดมีประวัติ 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_en": "What is Record, when Method is \"Technical Submission (Rear Naked Choke)\"?",
    "question_th": "Record คืออะไร เมื่อวิธีการคือ \"การส่งทางเทคนิค (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_en": "What is the sum of Round(s), when Method is \"Submission (Banana Split)\"?",
    "question_th": "ผลรวมของรอบเมื่อวิธีการคือ \"การส่ง (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_en": "What is Time, when Event is \"GCM: Demolition 1\"?",
    "question_th": "เวลาคืออะไร เมื่อกิจกรรมคือ \"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_en": "What year had a 100m freestyle event?",
    "question_th": "ฟรีสไตล์ 100 เมตร ในปีใด",
    "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_en": "What event had a short course in 2010?",
    "question_th": "เหตุการณ์ใดมีหลักสูตรระยะสั้นในปี 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_en": "What year did a short course have a time of 7:51.80?",
    "question_th": "หลักสูตรระยะสั้นปีใดมีเวลา 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_en": "What was the latest year that had a 100m freestyle?",
    "question_th": "ปีล่าสุดที่มีฟรีสไตล์ 100 ม. คืออะไร?",
    "context": "CREATE TABLE table_name_67 (year_set INTEGER, event VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_54 WHERE draw = 3",
    "question_en": "In what place was the song that had a draw of 3?",
    "question_th": "เพลงที่ถูก 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_en": "What is the number of points for the 7th placed song with a draw greater than 8?",
    "question_th": "เพลงอันดับที่ 7 ที่เสมอกันมากกว่า 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_en": "How many points did Joe O'Meara have?",
    "question_th": "Joe O'Meara ได้กี่คะแนน?",
    "context": "CREATE TABLE table_name_93 (points VARCHAR, artist VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(points) FROM table_name_89 WHERE artist = \"linda martin\"",
    "question_en": "How many points did Linda Martin have?",
    "question_th": "ลินดา มาร์ติน ได้กี่คะแนน?",
    "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_en": "WHAT IS THE SCORE WITH A WEEK LARGER THAN 13, AND VISITOR TEAM MONTREAL ALOUETTES?",
    "question_th": "คะแนนในสัปดาห์ที่มากกว่า 13 และทีมผู้เข้าชม 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_en": "WHAT IS THE AVERAGE WEEK WITH A DATE OF JULY 25?",
    "question_th": "สัปดาห์เฉลี่ยที่มีวันที่ 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_en": "What was the tie for the Crystal Palace team?",
    "question_th": "คริสตัล พาเลซ เสมอกันแค่ไหน?",
    "context": "CREATE TABLE table_name_42 (tie_no VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_72 WHERE tie_no = \"15\"",
    "question_en": "What is the attendance for No. 15 tie?",
    "question_th": "การเข้าร่วมครั้งที่ 15 จะเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_72 (attendance VARCHAR, tie_no VARCHAR)"
  },
  {
    "answer": "SELECT open_cup FROM table_name_30 WHERE division > 4",
    "question_en": "WHich Open Cup has a Division larger than 4?",
    "question_th": "Open Cup ใดที่มีดิวิชั่นมากกว่า 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_en": "Name the League which has a Regular Season of 3rd, atlantic?",
    "question_th": "ตั้งชื่อลีกซึ่งมีฤดูกาลปกติเป็นฤดูกาลที่ 3 หรือไม่?",
    "context": "CREATE TABLE table_name_86 (league VARCHAR, regular_season VARCHAR)"
  },
  {
    "answer": "SELECT regular_season FROM table_name_19 WHERE division = 4",
    "question_en": "WHICH Regular Season has a Division of 4?",
    "question_th": "ฤดูกาลปกติใดที่มีดิวิชั่น 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_en": "WHICH Regular Season has a League of npsl, and a Year of 2008?",
    "question_th": "ฤดูกาลปกติใดที่มีลีก npsl และปี 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_en": "NAME THE Playoffs that HAVE a League of npsl, and a Open Cup of did not enter, and a Year of 2013?",
    "question_th": "ตั้งชื่อรอบตัดเชือกที่มีลีก npsl และ Open Cup ที่ไม่เข้าและปี 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_en": "What is the average February that has 18-26-10 as the record, with a game less than 54?",
    "question_th": "ค่าเฉลี่ยเดือนกุมภาพันธ์ที่มีสถิติ 18-26-10 โดยเกมน้อยกว่า 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_en": "How many Februarys have montreal canadiens as the opponent, and 18-25-10 as the record, with a game greater than 53?",
    "question_th": "มีกี่เดือนกุมภาพันธ์ที่มีชาวแคนาดามอนทรีออลเป็นคู่ต่อสู้และมีสถิติ 18-25-10 โดยมีเกมมากกว่า 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_en": "what is the surface when the opponent is selma babic?",
    "question_th": "พื้นผิวจะเป็นเช่นไรเมื่อคู่ต่อสู้คือเซลมา บาบิก?",
    "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_en": "what is the surface when the round is gii play-offs and the edition is 2009 fed cup europe/africa group ii?",
    "question_th": "พื้นผิวจะเป็นเช่นไรเมื่อรอบเพลย์ออฟ gii และรุ่นปี 2009 คือ เฟดคัพยุโรป/แอฟริกากลุ่ม 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–7 (4–7) , 1–6\"",
    "question_en": "what is the date when the surface is clay and the result is 6–7 (4–7) , 1–6?",
    "question_th": "วันที่พื้นผิวเป็นดินเหนียวและผลลัพธ์คือ 6–7 (4–7) , 1–6 คือวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_99 (date VARCHAR, surface VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_67 WHERE against = \"norway\"",
    "question_en": "who is the opponent when norway is against?",
    "question_th": "ใครคือคู่ต่อสู้เมื่อนอร์เวย์เป็นศัตรู?",
    "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_en": "What is Postion, when Weight is greater than 220, and when Player is \"Travis Knight\"?",
    "question_th": "Postion คืออะไร เมื่อน้ำหนักมากกว่า 220 และเมื่อผู้เล่นคือ \"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_en": "What is the lowest Number, when College is \"University of Alabama\"?",
    "question_th": "หมายเลขต่ำสุดคือเท่าใด เมื่อวิทยาลัยคือ \"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_en": "What is the total number of Weight, when Position is \"Forward/Center\", when Player is \"Othella Harrington\", and when Number is less than 32?",
    "question_th": "จำนวนน้ำหนักรวมคือเท่าไร เมื่อตำแหน่งคือ \"กองหน้า/ตรงกลาง\" เมื่อผู้เล่นคือ \"โอเธลลา แฮร์ริงตัน\" และเมื่อหมายเลขน้อยกว่า 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_en": "What is Years Exp, when Height is \"7-2\"?",
    "question_th": "Years Exp คืออะไร เมื่อส่วนสูงคือ \"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_en": "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\"?",
    "question_th": "ตำแหน่งคืออะไร เมื่อน้ำหนักมากกว่า 200 เมื่อตัวเลขน้อยกว่า 44 เมื่อประสบการณ์ปีคือ 9 และเมื่อวิทยาลัยคือ \"มหาวิทยาลัยนิวเม็กซิโก\"",
    "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_en": "What was the release price of the Atom Z510PT processor?",
    "question_th": "โปรเซสเซอร์ Atom Z510PT เปิดตัวราคาเท่าไร?",
    "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_en": "Which part number was used for the Atom Z500 processor?",
    "question_th": "หมายเลขชิ้นส่วนใดที่ใช้กับโปรเซสเซอร์ Atom Z500",
    "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_en": "What was the multiplier of the processor with sSpec number of SLGPR(C0) and a release price of N/A?",
    "question_th": "ตัวคูณของโปรเซสเซอร์ที่มีหมายเลข sSpec ของ SLGPR(C0) และราคาวางจำหน่ายที่ 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_en": "Who is the runner-up at the Chicago challenge?",
    "question_th": "ใครคือรองชนะเลิศในการแข่งขันชิคาโก?",
    "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_en": "Who is the runner-up of Atlantic city classic?",
    "question_th": "ใครคือรองแชมป์แอตแลนติกซิตี้คลาสสิก?",
    "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_en": "What is the date of the U.S. Women's open?",
    "question_th": "US 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_en": "What is the margin of victory of the gna/glendale federal classic?",
    "question_th": "ชัยชนะของ 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_en": "Which class has *buranaz as Part 4?",
    "question_th": "คลาสไหนมี *buranaz เป็น 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_en": "What is the verb meaning for *bar as Part 2?",
    "question_th": "คำกริยาหมายถึงอะไรสำหรับ *bar ในภาค 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_en": "Which class has *alanaz as Part 4?",
    "question_th": "คลาสไหนมี *alanaz เป็น 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_en": "Which class has *fraus as Part 2?",
    "question_th": "คลาสใดมี *fraus เป็นส่วนที่ 2",
    "context": "CREATE TABLE table_name_59 (class VARCHAR, part_2 VARCHAR)"
  },
  {
    "answer": "SELECT transfer_fee FROM table_name_60 WHERE name = \"evilasio\"",
    "question_en": "what is the transfer fee for evilasio?",
    "question_th": "ค่าธรรมเนียมการโอน evilasio คืออะไร?",
    "context": "CREATE TABLE table_name_60 (transfer_fee VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_21 WHERE completions = \"redshirt\"",
    "question_en": "What team did James Vanderberg belong to when the Completions had a status of redshirt?",
    "question_th": "James Vanderberg อยู่ทีมใดเมื่อทีม Completions มีสถานะเป็นคนเสื้อแดง",
    "context": "CREATE TABLE table_name_21 (team VARCHAR, completions VARCHAR)"
  },
  {
    "answer": "SELECT completions FROM table_name_72 WHERE team = \"iowa\" AND yards = \"45\"",
    "question_en": "What were the number of completions for James Vanderberg on Iowa when his yards were 45?",
    "question_th": "James Vanderberg สำเร็จในไอโอวาเมื่อระยะ 45 หลาของเขาเป็นจำนวนเท่าใด",
    "context": "CREATE TABLE table_name_72 (completions VARCHAR, team VARCHAR, yards VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_19 WHERE completions = \"42\"",
    "question_en": "What was the team Vanderberg belonged to when there was 42 completions?",
    "question_th": "ทีม Vanderberg เป็นสมาชิกของทีมอะไรเมื่อมีความสำเร็จ 42 ครั้ง?",
    "context": "CREATE TABLE table_name_19 (team VARCHAR, completions VARCHAR)"
  },
  {
    "answer": "SELECT attempts FROM table_name_17 WHERE completions = \"223\"",
    "question_en": "What number of attempts were recorded when the completions were 223?",
    "question_th": "มีการบันทึกความพยายามจำนวนเท่าใดเมื่อสำเร็จ 223 ครั้ง",
    "context": "CREATE TABLE table_name_17 (attempts VARCHAR, completions VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_96 WHERE attempts = \"888\"",
    "question_en": "In what year was the number of attempts 888?",
    "question_th": "จำนวนความพยายาม 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_en": "What was the number of attempts for Vanderberg on Iowa when the recorded yards were 2,249?",
    "question_th": "จำนวนความพยายามของ Vanderberg ในรัฐไอโอวาคือเท่าไรเมื่อระยะที่บันทึกไว้คือ 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_en": "Which Leading Scorer has an Opponent of @ indiana?",
    "question_th": "ผู้ทำประตูชั้นนำคนใดที่มีฝ่ายตรงข้ามของ @ 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_en": "Which Leading Scorer has a Record of 3-3?",
    "question_th": "ผู้ทำประตูสูงสุดคนใดที่มีสถิติ 3-3?",
    "context": "CREATE TABLE table_name_70 (Leading VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_98 WHERE tie_no = \"6\"",
    "question_en": "What is the date when tie number is 6?",
    "question_th": "เลขเสมอกันคือ 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_en": "Who is the home team with tie number 9?",
    "question_th": "เจ้าบ้านชุดเลข 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_en": "Who is the home team when Sheffield United is the away team?",
    "question_th": "เจ้าบ้านคือใครเมื่อเชฟฟิลด์ยูไนเต็ดเป็นทีมเยือน?",
    "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_en": "What is the date when Aston Villa is the away team?",
    "question_th": "แอสตัน วิลล่า เยือนเป็นวันไหน?",
    "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_en": "Who is the home team on 31 January 1951 when away team was Sheffield United?",
    "question_th": "เจ้าบ้านคือใคร เมื่อวันที่ 31 มกราคม พ.ศ. 2494 เมื่อทีมเยือนคือเชฟฟิลด์ยูไนเต็ด?",
    "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_en": "What was the attendance during the match that took place after week 11 against the washington redskins?",
    "question_th": "ผู้เข้าร่วมระหว่างการแข่งขันที่เกิดขึ้นหลังจากสัปดาห์ที่ 11 กับทีมวอชิงตัน เรดสกินส์เป็นอย่างไรบ้าง",
    "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_en": "WHAT IS THE TO PAR FOR GEOFF OGILVY WITH A PLACE OF T3?",
    "question_th": "ค่าพาร์สำหรับ GEOFF OGILVY ที่มีตำแหน่ง 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_en": "What year has the ride flight deck and a rating of less than 5?",
    "question_th": "ปีใดที่มีดาดฟ้าการบินและมีเรตติ้งน้อยกว่า 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_en": "what is other names when death is may 23, 1821?",
    "question_th": "ชื่ออื่นเมื่อความตายคือ 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_en": "what is the name when death is november 10, 1842?",
    "question_th": "เมื่อความตายคือวันที่ 10 พฤศจิกายน พ.ศ. 2385 ชื่ออะไร?",
    "context": "CREATE TABLE table_name_80 (name VARCHAR, death VARCHAR)"
  },
  {
    "answer": "SELECT internet_plan FROM table_name_48 WHERE price = \"22 eur\"",
    "question_en": "What is Internet Plan, when Price is \"22 EUR\"?",
    "question_th": "Internet Plan คืออะไร เมื่อราคาอยู่ที่ \"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_en": "What is Downstream, when Upstream is \"384 kbit\"?",
    "question_th": "Downstream คืออะไร เมื่อ Upstream คือ \"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_en": "What is Bandwidth Included, when Price is \"50 EUR\"?",
    "question_th": "รวมแบนด์วิดธ์ไว้เท่าไร เมื่อราคาเป็น \"50 ยูโร\"",
    "context": "CREATE TABLE table_name_45 (bandwidth_included VARCHAR, price VARCHAR)"
  },
  {
    "answer": "SELECT upstream FROM table_name_25 WHERE price = \"14 eur\"",
    "question_en": "What is Upstream, when Price is \"14 EUR\"?",
    "question_th": "Upstream คืออะไร เมื่อราคาอยู่ที่ \"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_en": "What is Bandwidth Included, when Internet Plan is \"8mb\"?",
    "question_th": "รวมแบนด์วิดธ์ไว้ด้วย เมื่อแผนอินเทอร์เน็ตคือ \"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_en": "What is the Price, when Upstream is \"256 kbit\"?",
    "question_th": "ราคาเท่าไหร่เมื่ออัพสตรีมเป็น \"256 kbit\"?",
    "context": "CREATE TABLE table_name_64 (price VARCHAR, upstream VARCHAR)"
  },
  {
    "answer": "SELECT semifinalists FROM table_name_23 WHERE finalist = \"andre agassi\"",
    "question_en": "Which Semifinalists has a Finalist of andre agassi?",
    "question_th": "ผู้เข้ารอบรองชนะเลิศคนใดมีผู้เข้ารอบสุดท้ายของอังเดร อากัสซี่?",
    "context": "CREATE TABLE table_name_23 (semifinalists VARCHAR, finalist VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_31 WHERE finalist = \"gustavo kuerten (4)\"",
    "question_en": "WHich Tournament has a Finalist of gustavo kuerten (4)?",
    "question_th": "การแข่งขันใดมีผู้เข้ารอบสุดท้ายของ 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_en": "Which finalist has Semifinalists of andre agassi (1) lleyton hewitt (14)?",
    "question_th": "ผู้เข้ารอบสุดท้ายคนใดมีอังเดร อากัสซี (1) เลย์ตัน ฮิววิตต์ (14) เข้ารอบรองชนะเลิศ?",
    "context": "CREATE TABLE table_name_3 (finalist VARCHAR, semifinalists VARCHAR)"
  },
  {
    "answer": "SELECT finalist FROM table_name_20 WHERE tournament = \"monte carlo\"",
    "question_en": "Which Finalist has a Tournament of monte carlo?",
    "question_th": "ผู้เข้ารอบสุดท้ายคนไหนมีการแข่งขัน Monte Carlo?",
    "context": "CREATE TABLE table_name_20 (finalist VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_97 WHERE finalist = \"andre agassi\"",
    "question_en": "WHo is the Winner of andre agassi Finalist?",
    "question_th": "ใครคือผู้ชนะของผู้เข้ารอบสุดท้ายอันเดร อากัสซี?",
    "context": "CREATE TABLE table_name_97 (winner VARCHAR, finalist VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_47 WHERE finalist = \"marat safin (12)\"",
    "question_en": "WHich Tournament has a Finalist of marat safin (12)?",
    "question_th": "การแข่งขันใดมีผู้เข้ารอบสุดท้ายของ 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_en": "What was the date for the Sepang International circuit, round 3?",
    "question_th": "สนามเซปังอินเตอร์เนชั่นแนลเซอร์กิต รอบ 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_en": "Which round had a winning driver of Uwe Alzen, at the Sepang International circuit?",
    "question_th": "รอบใดที่มีนักแข่งของ อูเว อัลเซ่น เป็นผู้ชนะที่สนามเซปัง อินเตอร์เนชั่นแนล เซอร์กิต?",
    "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_en": "What was the round number for March 22?",
    "question_th": "งวดวันที่ 22 มีนาคม เลขงวดอะไรคะ?",
    "context": "CREATE TABLE table_name_92 (round VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_name_98 WHERE team = \"@ charlotte\"",
    "question_en": "Who had the high points in the game @ Charlotte?",
    "question_th": "ใครมีแต้มสูงสุดในเกม @Charlotte?",
    "context": "CREATE TABLE table_name_98 (high_points VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_77 WHERE game = 70",
    "question_en": "What's the record of Game 70?",
    "question_th": "บันทึกของเกม 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_en": "Who had the high points when they played in Philips Arena 14,413?",
    "question_th": "ใครมีคะแนนสูงเมื่อเล่นใน 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_en": "What is the date of the game that took place at the Resch Center?",
    "question_th": "เกมที่จัดขึ้นที่ 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_en": "Which network returns april 3, and a Show of shop 'til you drop?",
    "question_th": "เครือข่ายใดที่ส่งคืนในวันที่ 3 เมษายนและการแสดงร้านค้าจนกว่าคุณจะลดลง?",
    "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_en": "Which retitled network has a Show of supermarket sweep?",
    "question_th": "เครือข่ายที่ได้รับการแต่งตั้งใดมีการแสดงกวาดซูเปอร์มาร์เก็ต?",
    "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_en": "Which show returns april 3 with a Previous Network of lifetime?",
    "question_th": "รายการใดที่ส่งคืนในวันที่ 3 เมษายนด้วยเครือข่ายก่อนหน้าตลอดชีวิต",
    "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_en": "What is the lowest grid number for Yamaha?",
    "question_th": "หมายเลขกริดต่ำสุดของ 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_en": "How many laps had a grid over 16 and a Time of +1:35.890?",
    "question_th": "มีกี่รอบที่มีตารางเกิน 16 และเวลา +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_en": "What was the lowest lab for Gilera with a grid less than 12?",
    "question_th": "ห้องทดลองที่ต่ำที่สุดสำหรับ Gilera ที่มีตารางน้อยกว่า 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_en": "What is the highest Grid with a time of +1:19.905, and less than 20 laps?",
    "question_th": "กริดสูงสุดที่มีเวลา +1:19.905 และน้อยกว่า 20 รอบคือสนามใด",
    "context": "CREATE TABLE table_name_22 (grid INTEGER, time VARCHAR, laps VARCHAR)"
  },
  {
    "answer": "SELECT rider FROM table_name_91 WHERE grid = 21",
    "question_en": "What Rider has a Grid of 21?",
    "question_th": "Rider คนใดมีตาราง 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_en": "Who is the away captain when the game resulted in [[|]] by 7 wickets?",
    "question_th": "ใครคือกัปตันทีมเยือนเมื่อเกมสกอร์ [[|]] ไป 7 ประตู?",
    "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_en": "Who is the home captain of the match that resulted [[|]] by 151 runs?",
    "question_th": "ใครคือกัปตันทีมเหย้าของแมตช์ที่สกอร์ [[|]] ไปได้ 151 รัน?",
    "context": "CREATE TABLE table_name_70 (home_captain VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT SUM(total) FROM table_name_98 WHERE to_par = \"–1\"",
    "question_en": "How many totals have a To par of –1?",
    "question_th": "ผลรวมทั้งหมดมีพาร์ถึง –1 เท่ากับจำนวนเท่าใด?",
    "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_en": "Which Year(s) won has a Total smaller than 285, and a Player of tom watson?",
    "question_th": "ปีที่ชนะมีคะแนนรวมน้อยกว่า 285 และเป็นผู้เล่นของทอม วัตสัน",
    "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_en": "Which Finish has a Total of 288?",
    "question_th": "เส้นชัยใดมีคะแนนรวม 288 คะแนน?",
    "context": "CREATE TABLE table_name_12 (finish VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_89 WHERE year_s__won = \"1991\"",
    "question_en": "Who won in 1991?",
    "question_th": "ใครชนะในปี 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_en": "Who was picked before 149 in round 9?",
    "question_th": "ใครถูกเลือกก่อน 149 ในรอบ 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_en": "Who was pick 16 and before round 10?",
    "question_th": "ใครเป็นผู้เลือก 16 และก่อนรอบ 10?",
    "context": "CREATE TABLE table_name_30 (player VARCHAR, round VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT affiliation FROM table_name_4 WHERE nickname = \"bulldogs\"",
    "question_en": "What is Affiliation, when Nickname is Bulldogs?",
    "question_th": "Affiliation คืออะไร เมื่อชื่อเล่นคือ 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_en": "What is the average Founded, when Enrollment is 4,000?",
    "question_th": "ค่าเฉลี่ยที่ก่อตั้งขึ้นเมื่อการลงทะเบียนคือ 4,000 คืออะไร?",
    "context": "CREATE TABLE table_name_68 (founded INTEGER, enrollment VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_65 WHERE circuit = \"amaroo park\"",
    "question_en": "Which team raced at Amaroo Park?",
    "question_th": "ทีมไหนลงแข่งที่ 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_en": "On what date did Dick Johnson with at Calder?",
    "question_th": "Dick Johnson ไปร่วมงานคาลเดอร์วันที่เท่าไหร่?",
    "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_en": "On what date was the race in Melbourne, Victoria?",
    "question_th": "การแข่งขันที่เมืองเมลเบิร์น รัฐวิกตอเรีย จัดขึ้นวันไหน?",
    "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_en": "Which city or state contains Calder Park Raceway?",
    "question_th": "เมืองหรือรัฐใดที่มีสนามแข่งรถ Calder Park",
    "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_en": "What is the most reduced Margin that has a St Kilda Saints of 11.13 (79)?",
    "question_th": "Margin ที่ลดลงมากที่สุดที่มี St Kilda Saints อยู่ที่ 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_en": "What is the average Margin that has a Round of 13. (h)?",
    "question_th": "มาร์จิ้นเฉลี่ยที่มีรอบ 13 เป็นเท่าใด (h)?",
    "context": "CREATE TABLE table_name_3 (margin INTEGER, round VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_46 WHERE team = \"south adelaide\"",
    "question_en": "What is the location of South Adelaide?",
    "question_th": "ที่ตั้งของ เซาท์ แอดิเลด อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_46 (location VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_98 WHERE coach = \"unknown\" AND location = \"athelstone\"",
    "question_en": "Which team has an unknown coach and location of Athelstone?",
    "question_th": "ทีมใดมีโค้ชที่ไม่รู้จักและที่ตั้งของเอเธลสโตน?",
    "context": "CREATE TABLE table_name_98 (team VARCHAR, coach VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT founded FROM table_name_59 WHERE location = \"athelstone\"",
    "question_en": "When was the team that plays at Athelstone founded?",
    "question_th": "ทีมที่เล่นที่ Athelstone ก่อตั้งขึ้นเมื่อใด",
    "context": "CREATE TABLE table_name_59 (founded VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT coach FROM table_name_6 WHERE location = \"port pirie\"",
    "question_en": "Who is the coach of the team from Port Pirie?",
    "question_th": "โค้ชทีมพอร์ท พีรี คือใคร?",
    "context": "CREATE TABLE table_name_6 (coach VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT coach FROM table_name_25 WHERE home_ground = \"club cove\"",
    "question_en": "Who is the coach of the team with home ground at Club Cove?",
    "question_th": "ใครคือโค้ชของทีมเหย้าที่คลับ โคฟ?",
    "context": "CREATE TABLE table_name_25 (coach VARCHAR, home_ground VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_48 WHERE founded = \"1970\"",
    "question_en": "Which team was founded in 1970?",
    "question_th": "ทีมใดก่อตั้งในปี 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_en": "When did acharya shree koshalendraprasadji maharaj become acharya?",
    "question_th": "พระอาจารย์ศรี โกษเลนทราประสัทจี มหาราช กลายเป็นพระอาจารย์เมื่อใด?",
    "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_en": "What is the term of acharya shree vasudevprasadji maharaj?",
    "question_th": "พระอาจารย์ศรี วสุเดฟประสัทจี มหาราช มีความหมายว่าอย่างไร?",
    "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_en": "What was the event where justin robbins had a record of 9-4-1?",
    "question_th": "เหตุการณ์ที่จัสติน ร็อบบินส์มีสถิติ 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_en": "Where was the location where justin robbins fought against billy kidd?",
    "question_th": "สถานที่ที่จัสติน รอบบินส์ ปะทะ บิลลี่ คิดด์ อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_1 (location VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT method FROM table_name_87 WHERE event = \"cage warriors 39\"",
    "question_en": "What was the method of resolution for the fight at cage warriors 39?",
    "question_th": "การต่อสู้ที่ 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_en": "A total larger than 302 and playoffs of 35 also list the total of regular seasons as what?",
    "question_th": "ผลรวมที่มากกว่า 302 และรอบตัดเชือก 35 รายการยังระบุผลรวมของฤดูกาลปกติด้วยอะไร",
    "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_en": "What is the college/junior/club team (league) of lw position player mark miller, from a round greater than 4?",
    "question_th": "ทีมวิทยาลัย/จูเนียร์/สโมสร (ลีก) ของผู้เล่นตำแหน่ง lw มาร์ค มิลเลอร์ จากรอบที่มากกว่า 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_en": "Who is the lw position player from a round greater than 10?",
    "question_th": "ใครคือผู้เล่นตำแหน่ง lw จากรอบที่มากกว่า 10?",
    "context": "CREATE TABLE table_name_76 (player VARCHAR, position VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_20 WHERE round = 8",
    "question_en": "Who is the player from round 8?",
    "question_th": "ใครคือผู้เล่นจากรอบที่ 8?",
    "context": "CREATE TABLE table_name_20 (player VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_14 WHERE round = 7",
    "question_en": "What is the nationality of the player from round 7?",
    "question_th": "ผู้เล่นจากรอบที่ 7 มีสัญชาติอะไร?",
    "context": "CREATE TABLE table_name_14 (nationality VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_31 WHERE round = 5",
    "question_en": "What is the nationality of the player from round 5?",
    "question_th": "ผู้เล่นจากรอบที่ 5 มีสัญชาติอะไร?",
    "context": "CREATE TABLE table_name_31 (nationality VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT state FROM table_name_98 WHERE elected_assumed_office = 2013",
    "question_en": "What state had an elected/assumed office in 2013?",
    "question_th": "รัฐใดได้รับการเลือกตั้ง/เข้ารับตำแหน่งในปี 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_en": "What was the air date of 'Gary tries to do it all'?",
    "question_th": "'Gary try 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_en": "What is the location of the university that was established in 2000?",
    "question_th": "มหาวิทยาลัยที่ก่อตั้งเมื่อปี พ.ศ. 2543 ตั้งอยู่ที่ใด?",
    "context": "CREATE TABLE table_name_44 (location VARCHAR, established VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(established) FROM table_name_14 WHERE nickname = \"pride\"",
    "question_en": "What year was the team with the nickname pride established?",
    "question_th": "ทีมที่มีชื่อเล่นว่าไพรด์ก่อตั้งในปีไหน?",
    "context": "CREATE TABLE table_name_14 (established VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT enrollment FROM table_name_68 WHERE established > 2011",
    "question_en": "What is the enrollment of the university established in or after 2011?",
    "question_th": "มหาวิทยาลัยที่จัดตั้งขึ้นในหรือหลังปี 2011 มีการลงทะเบียนเรียนแบบใด?",
    "context": "CREATE TABLE table_name_68 (enrollment VARCHAR, established INTEGER)"
  },
  {
    "answer": "SELECT country FROM table_name_34 WHERE winner = \"ole ellefsæter\"",
    "question_en": "What country was ole ellefsæter from?",
    "question_th": "โอเล เอลเลฟเซเตอร์ มาจากประเทศใด?",
    "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_en": "Who won the FIS Nordic World Ski Championships in 1972?",
    "question_th": "ใครเป็นผู้ชนะการแข่งขัน FIS Nordic World Ski Championships ในปี 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_en": "For a country of Spain, place of t6, what is the Money ($)?",
    "question_th": "สำหรับประเทศสเปน อันดับที่ t6 เงิน ($) คืออะไร?",
    "context": "CREATE TABLE table_name_44 (money___$__ VARCHAR, place VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_20 WHERE to_par = \"e\"",
    "question_en": "Which country has a to par of e?",
    "question_th": "ประเทศใดมีค่าเท่ากับ 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_en": "Which player is from Australia, and has a place of t9?",
    "question_th": "นักเตะคนไหนมาจากออสเตรเลียและได้ตำแหน่ง 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_en": "What was the place for player John Merrick?",
    "question_th": "สถานที่สำหรับผู้เล่น 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_en": "Which country had a place of t1, as well as a score of 72-68-70-73=283?",
    "question_th": "ประเทศใดมีอันดับ t1 และคะแนน 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_en": "What place has jack renner as the player?",
    "question_th": "แจ็ค เรนเนอร์ เป็นผู้เล่นคนไหน?",
    "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_en": "What to par has The United States as the country, t8 as the place, and tommy valentine as the player?",
    "question_th": "สิ่งที่ได้เปรียบคือสหรัฐอเมริกาเป็นประเทศ, t8 เป็นสถานที่ และทอมมี่ วาเลนไทน์เป็นผู้เล่น",
    "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_en": "What to par has 66 as the score?",
    "question_th": "พาร์อะไรจะได้ 66 เป็นคะแนน?",
    "context": "CREATE TABLE table_name_56 (to_par VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT AVG(played) FROM table_name_62 WHERE conceded < 7",
    "question_en": "Mean of played with smaller than 7 conceded?",
    "question_th": "ค่าเฉลี่ยของการเล่นโดยยอมรับน้อยกว่า 7?",
    "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_en": "The highest position with more than 16 points and less than 7 concedes?",
    "question_th": "ตำแหน่งสูงสุดที่มีมากกว่า 16 แต้มและเสียน้อยกว่า 7 ครั้ง?",
    "context": "CREATE TABLE table_name_40 (position INTEGER, points VARCHAR, conceded VARCHAR)"
  },
  {
    "answer": "SELECT MAX(draws) FROM table_name_32 WHERE played < 9",
    "question_en": "The highest draws with smaller than 9 played?",
    "question_th": "เสมอสูงสุดโดยเล่นน้อยกว่า 9?",
    "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_en": "Which Home Town has a Took Office of 1983, and a District larger than 15?",
    "question_th": "บ้านเกิดใดมีสำนักงานเข้ารับตำแหน่งในปี 1983 และเขตใหญ่กว่า 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_en": "Which Senator has a Party of republican, a Home Town of houston, and a District of 7?",
    "question_th": "วุฒิสมาชิกคนใดมีพรรครีพับลิกัน บ้านเกิดของฮูสตัน และเขต 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_en": "Which Home Town has a Senator of dan shelley?",
    "question_th": "บ้านเกิดไหนมีวุฒิสมาชิกแดน เชลลีย์?",
    "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_en": "Which Took Office has a Party of democratic, a Home Town of victoria, and a District smaller than 18?",
    "question_th": "ตุ๊กคนไหนมีพรรคประชาธิปไตย บ้านเกิดวิกตอเรีย และเขตที่เล็กกว่า 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_en": "Which Took Office has a District of 29?",
    "question_th": "สำนักไหนมีเขต 29?",
    "context": "CREATE TABLE table_name_8 (took_office INTEGER, district VARCHAR)"
  },
  {
    "answer": "SELECT AVG(laps) FROM table_name_88 WHERE grid = 15",
    "question_en": "What are the average Laps on Grid 15?",
    "question_th": "รอบเฉลี่ยบนกริด 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_en": "What is the lowest number of Laps that have a Time of +24.440, and a Grid higher than 18?",
    "question_th": "จำนวนรอบต่ำสุดที่มีเวลา +24.440 และกริดสูงกว่า 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_en": "What is the highest number of Laps that have a Time of +18.366, and a Grid lower than 13?",
    "question_th": "จำนวนรอบสูงสุดที่มีเวลา +18.366 และกริดต่ำกว่า 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_en": "What is the lowest Wins, when Season is 2011, when Podiums is 1, and when Poles is less than 0?",
    "question_th": "ชัยชนะที่ต่ำที่สุดคืออะไร เมื่อฤดูกาลคือปี 2011 เมื่อโพเดียมอยู่ที่ 1 และเมื่อโปแลนด์น้อยกว่า 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_en": "What is Position, when Points is greater than 7, and when Series is Toyota Racing Series?",
    "question_th": "ตำแหน่งคืออะไร เมื่อคะแนนมากกว่า 7 และเมื่อซีรีส์คือ 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_en": "What is the sum of Races, when Series is Toyota Racing Series, and when Podiums is greater than 3?",
    "question_th": "ผลรวมของการแข่งขันเมื่อซีรีส์คือ Toyota Racing Series และเมื่อโพเดียมมากกว่า 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_en": "What is the average Podiums, when Wins is greater than 1, when Races is 2, and when Points is greater than 150?",
    "question_th": "โพเดียมโดยเฉลี่ยคือเท่าใด เมื่อชนะมากกว่า 1 เมื่อการแข่งขันคือ 2 และเมื่อคะแนนมากกว่า 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_en": "What is the total number of Poles, when Position is 6th, and when Points is less than 164?",
    "question_th": "จำนวนเสาทั้งหมดเมื่อตำแหน่งอยู่ที่ 6 และเมื่อคะแนนน้อยกว่า 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_en": "Which is the earliest founded day school to have entered the competition after 1958?",
    "question_th": "โรงเรียนแบบไปเช้าเย็นกลับก่อตั้งเร็วที่สุดแห่งใดที่เข้าร่วมการแข่งขันหลังปี 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_en": "How many to par in England?",
    "question_th": "อังกฤษจะพาร์ได้กี่พาร์?",
    "context": "CREATE TABLE table_name_93 (to_par VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_38 WHERE player = \"david frost\"",
    "question_en": "Where is David Frost from?",
    "question_th": "เดวิด ฟรอสต์มาจากไหน?",
    "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_en": "Which country earned place T3 with a score of 70-68=138?",
    "question_th": "ประเทศใดได้อันดับที่ T3 ด้วยคะแนน 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_en": "Which country had a score of 69-67=136?",
    "question_th": "ประเทศใดมีคะแนน 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_en": "How many to par for Greg Norman?",
    "question_th": "เกร็ก นอร์แมน พาร์ได้กี่พาร์?",
    "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_en": "What was the high rebounds after game 14 for Denver?",
    "question_th": "การรีบาวด์สูงสุดหลังเกมที่ 14 ของเดนเวอร์คืออะไร?",
    "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_en": "What was the latest game that Sacramento played?",
    "question_th": "เกมล่าสุดที่แซคราเมนโตเล่นคืออะไร?",
    "context": "CREATE TABLE table_name_26 (game INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_65 WHERE team = \"utah\"",
    "question_en": "What was the record of Utah?",
    "question_th": "บันทึกของยูทาห์คืออะไร",
    "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_en": "What is the parent magazine of Dengeki g's festival! deluxe?",
    "question_th": "นิตยสารหลักของเทศกาล Dengeki g คืออะไร! ดีลักซ์?",
    "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_en": "How often does Dengeki girl's style come out?",
    "question_th": "ลีลาสาวเดงเกกิออกมาบ่อยแค่ไหน?",
    "context": "CREATE TABLE table_name_5 (frequency VARCHAR, parent_magazine VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_72 WHERE frequency = \"monthly\"",
    "question_en": "What titles come out monthly?",
    "question_th": "ชื่ออะไรออกมาทุกเดือน?",
    "context": "CREATE TABLE table_name_72 (title VARCHAR, frequency VARCHAR)"
  },
  {
    "answer": "SELECT parent_magazine FROM table_name_42 WHERE title = \"dengeki 5pb.\"",
    "question_en": "What is the parent magazine for Dengeki 5pb.?",
    "question_th": "นิตยสารหลักสำหรับ 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–february 5, 2010\"",
    "question_en": "What is the magazine type that ran from March 3, 2009–February 5, 2010?",
    "question_th": "นิตยสารประเภทใดที่เริ่มตั้งแต่วันที่ 3 มีนาคม 2552 ถึง 5 กุมภาพันธ์ 2553",
    "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_en": "What is the frequency for the magazine that runs September 2, 2010?",
    "question_th": "นิตยสารที่ออกในวันที่ 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_en": "What is the highest number of laps with a +1:23.297 time/retired and a grid larger than 4?",
    "question_th": "จำนวนรอบสูงสุดที่มีเวลา +1:23.297 ครั้ง/เลิกใช้ และตารางที่มากกว่า 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_en": "What is the time/retired with a toyota constructor and a 5 grid?",
    "question_th": "เวลา / เกษียณด้วยตัวสร้างโตโยต้าและกริด 5 คืออะไร?",
    "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_en": "What is the average number of laps with 16 grids?",
    "question_th": "จำนวนรอบโดยเฉลี่ยที่มี 16 ตารางคือเท่าไร?",
    "context": "CREATE TABLE table_name_54 (laps INTEGER, grid VARCHAR)"
  },
  {
    "answer": "SELECT endowment_as_of_2008 FROM table_name_55 WHERE established = 1961",
    "question_en": "What was the endowment in 2008 of the college that was established in 1961?",
    "question_th": "วิทยาลัยที่ก่อตั้งเมื่อปี พ.ศ. 2504 มีทุนบริจาคอะไรบ้าง?",
    "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_en": "On what day was the attendance that had a Tie value of 40?",
    "question_th": "การเข้าร่วมที่มีมูลค่าเสมอกันคือ 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_en": "Who was the home team for the away game that Canvey Island played?",
    "question_th": "เจ้าบ้านในเกมเยือนที่ แคนวีย์ ไอส์แลนด์ ลงเล่นคือใคร?",
    "context": "CREATE TABLE table_name_6 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_4 WHERE home_team = \"gillingham\"",
    "question_en": "On what day was there a Home game for Gillingham?",
    "question_th": "จิลลิ่งแฮมมีเกมในบ้านวันไหน?",
    "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_en": "Which Pick has an Overall larger than 308, and a Position of rb?",
    "question_th": "ตัวเลือกใดมีค่าโดยรวมมากกว่า 308 และตำแหน่ง 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_en": "How much Overall has a Position of wr, and a College of alberta?",
    "question_th": "โดยรวมแล้วมีตำแหน่ง wr และวิทยาลัยอัลเบอร์ตาเท่าไหร่?",
    "context": "CREATE TABLE table_name_86 (overall INTEGER, position VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT AVG(pick) FROM table_name_51 WHERE college = \"indiana\"",
    "question_en": "What is indiana college's average pick?",
    "question_th": "การเลือกเฉลี่ยของวิทยาลัยอินเดียน่าคืออะไร?",
    "context": "CREATE TABLE table_name_51 (pick INTEGER, college VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_46 WHERE overall = 308",
    "question_en": "Which College has an Overall of 308?",
    "question_th": "วิทยาลัยใดมีคะแนนรวม 308 คะแนน",
    "context": "CREATE TABLE table_name_46 (college VARCHAR, overall VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_3 WHERE opponent = \"marcos baghdatis\"",
    "question_en": "What was the surface for the opponent Marcos Baghdatis?",
    "question_th": "พื้นผิวของคู่ต่อสู้ Marcos Baghdatis คืออะไร?",
    "context": "CREATE TABLE table_name_3 (surface VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT eighth FROM table_name_61 WHERE seventh = \"audio bullys\"",
    "question_en": "WHAT IS THE 8TH THAT HAS A 7TH OF AUDIO BULLYS?",
    "question_th": "อะไรคือสิ่งที่ 8 ที่มี 7 ของ 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_en": "WHAT IS THE POLL YEAR WITH A THIRD OF THE TING TINGS?",
    "question_th": "ปีการสำรวจความคิดเห็นครั้งที่สามคืออะไร?",
    "context": "CREATE TABLE table_name_34 (poll_year VARCHAR, third VARCHAR)"
  },
  {
    "answer": "SELECT sixth FROM table_name_66 WHERE second = \"white lies\"",
    "question_en": "WHAT IS THE SIXTH WITH A SECOND OF WHITE LIES?",
    "question_th": "สิ่งที่หกกับวินาทีแห่งการโกหกสีขาวคืออะไร?",
    "context": "CREATE TABLE table_name_66 (sixth VARCHAR, second VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_97 WHERE fifth = \"joss stone\"",
    "question_en": "WHAT IS THE WINNER WITH A FIFTH OF JOSS STONE?",
    "question_th": "ผู้ชนะด้วย JOSS STONE ที่ห้าคืออะไร?",
    "context": "CREATE TABLE table_name_97 (winner VARCHAR, fifth VARCHAR)"
  },
  {
    "answer": "SELECT second FROM table_name_65 WHERE tenth = \"dan black\"",
    "question_en": "WHAT IS THE SECOND WITH A TENTH OF DAN BLACK?",
    "question_th": "อะไรคือวินาทีที่มีหนึ่งในสิบของแดนแบล็ค?",
    "context": "CREATE TABLE table_name_65 (second VARCHAR, tenth VARCHAR)"
  },
  {
    "answer": "SELECT AVG(game) FROM table_name_45 WHERE date = \"january 30\"",
    "question_en": "What average game has January 30 as the date?",
    "question_th": "เกมโดยเฉลี่ยใดที่มีวันที่ 30 มกราคมเป็นวันที่?",
    "context": "CREATE TABLE table_name_45 (game INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_65 WHERE date = \"january 19\"",
    "question_en": "What score has january 19 as the date?",
    "question_th": "วันที่ 19 มกราคม มีคะแนนเท่าไหร่?",
    "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_en": "What is the loaction attendance that has a game greater than 35, with January 30 as the date?",
    "question_th": "จำนวนผู้เข้าร่วมที่มีเกมมากกว่า 35 โดยให้วันที่ 30 มกราคมเป็นวันที่เท่าไร",
    "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_en": "What is the highest game that has January 5 as the date?",
    "question_th": "เกมใดที่มีวันที่ 5 มกราคม เป็นวันที่สูงที่สุด?",
    "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_en": "What is the highest rebounds that has conseco fieldhouse 11,964 as the location attendance?",
    "question_th": "การรีบาวด์สูงสุดที่มี Conseco Fieldhouse 11,964 เป็นผู้เข้าร่วมประชุมสถานที่คืออะไร?",
    "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_en": "What is the highest lane value for a mark of 2:02.27 NR, with heats under 2?",
    "question_th": "ค่าเลนสูงสุดสำหรับเครื่องหมาย 2:02.27 NR โดยมีความร้อนต่ำกว่า 2 คือเท่าใด",
    "context": "CREATE TABLE table_name_82 (lane INTEGER, mark VARCHAR, heat VARCHAR)"
  },
  {
    "answer": "SELECT mark FROM table_name_8 WHERE country = \"mozambique\"",
    "question_en": "What is the mark for the runner from Mozambique?",
    "question_th": "เครื่องหมายสำหรับนักวิ่งจากโมซัมบิกคืออะไร?",
    "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_en": "Who was in lane 6 with a mark of 2:05.58 SB?",
    "question_th": "ใครอยู่ในเลน 6 โดยมีเครื่องหมาย 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_en": "What round was Ken Irvin drafted?",
    "question_th": "Ken Irvin ถูกดราฟท์รอบไหน?",
    "context": "CREATE TABLE table_name_54 (round INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(round) FROM table_name_54 WHERE school_club_team = \"michigan\"",
    "question_en": "In what round was a player from Michigan selected?",
    "question_th": "ผู้เล่นจากมิชิแกนถูกเลือกในรอบใด",
    "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_en": "Who was the opponent before week 8 when the result was l 28-17?",
    "question_th": "คู่ต่อสู้ก่อนสัปดาห์ที่ 8 เมื่อผลการแข่งขันคือ 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_en": "In which week was the game played on October 12, 1975 and the crowd was larger than 44,043?",
    "question_th": "เกมนี้เล่นในสัปดาห์ใดในวันที่ 12 ตุลาคม พ.ศ. 2518 และมีผู้ชมมากกว่า 44,043 คน?",
    "context": "CREATE TABLE table_name_15 (week VARCHAR, date VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT berlin FROM table_name_60 WHERE südwest = \"fk pirmasens\" AND west = \"westfalia herne\"",
    "question_en": "What was Berlin when fk pirmasens was Südwest and westfalia herne was west?",
    "question_th": "เบอร์ลินคืออะไรเมื่อ fk pirmasens คือSüdwest และ westfalia herne อยู่ทางตะวันตก",
    "context": "CREATE TABLE table_name_60 (berlin VARCHAR, südwest VARCHAR, west VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_name_90 WHERE west = \"borussia dortmund\" AND berlin = \"bfc viktoria 1889\"",
    "question_en": "What is the earliest year borussia dortmund was west and bfc viktoria 1889 was Berlin?",
    "question_th": "ปีแรกสุดคือปีใดที่โบรุสเซีย ดอร์ทมุนด์อยู่ทางตะวันตก และบีเอฟซี วิคตอเรีย 1889 คือเบอร์ลิน?",
    "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_en": "What is the Nord in 1952, when tennis borussia berlin was Berlin?",
    "question_th": "Nord คืออะไรในปี 1952 เมื่อเทนนิส borussia berlin อยู่ที่เบอร์ลิน?",
    "context": "CREATE TABLE table_name_3 (nord VARCHAR, berlin VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_19 WHERE country = \"japan\"",
    "question_en": "Where did Japan place?",
    "question_th": "ญี่ปุ่นอยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_19 (place VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_69 WHERE attendance = \"206\"",
    "question_en": "Who was the away team when the attendance was 206?",
    "question_th": "ทีมเยือนคือใครเมื่อมีคนเข้าร่วม 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_en": "Who was the away team when the Tie no was 34?",
    "question_th": "ทีมเยือนเมื่อเสมอหมายเลข 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_en": "Who was the away team when the attendance was 76?",
    "question_th": "ทีมเยือนคือใครเมื่อมีคนเข้าร่วม 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_en": "Who was the home team when the Tie no was 7?",
    "question_th": "เจ้าบ้านเมื่อเสมอหมายเลข 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_en": "What was the Tie no when the away team was east thurrock united?",
    "question_th": "Tie no คืออะไรเมื่อทีมเยือนเป็น 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_en": "WHAT IS THE AVERAGE VOTE FOR DUBLIN SOUTH, AND SPOILT SMALLER THAN 3,387?",
    "question_th": "คะแนนเฉลี่ยสำหรับ DUBLIN SOUTH คืออะไร และเสียคะแนนน้อยกว่า 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_en": "Where was the game played on January 23, 2008?",
    "question_th": "เกมนี้เล่นที่ไหนในวันที่ 23 มกราคม พ.ศ. 2551?",
    "context": "CREATE TABLE table_name_8 (location VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_8 WHERE tournament = \"singapore charity shield\"",
    "question_en": "Where was the Singapore Charity Shield tournament played?",
    "question_th": "การแข่งขัน Singapore Charity Shield จัดขึ้นที่ไหน?",
    "context": "CREATE TABLE table_name_8 (location VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_93 WHERE date = \"january 23, 2008\"",
    "question_en": "Where was the game located on January 23, 2008?",
    "question_th": "เกมดังกล่าวตั้งอยู่ที่ใดเมื่อวันที่ 23 มกราคม พ.ศ. 2551",
    "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_en": "Where is the location of the friendly match larger than 1 where the Super Reds were the opponent?",
    "question_th": "ตำแหน่งของแมตช์กระชับมิตรที่ใหญ่กว่า 1 ซึ่ง Super Reds เป็นคู่ต่อสู้อยู่ที่ไหน?",
    "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_en": "When the team is @ Milwaukee, what is the name of the location where the game is played?",
    "question_th": "เมื่อทีมอยู่ที่ @มิลวอกี สนามที่เล่นเกมชื่ออะไร?",
    "context": "CREATE TABLE table_name_78 (location_attendance VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_19 WHERE team = \"@ chicago\"",
    "question_en": "For the game with team of @ Chicago, what was the final score?",
    "question_th": "สำหรับเกมกับทีม @ชิคาโก้ สกอร์สุดท้ายเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_19 (score VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_90 WHERE title = \"best friends\"",
    "question_en": "What rank did Best Friends receive?",
    "question_th": "Best Friends ได้รับอันดับใด",
    "context": "CREATE TABLE table_name_90 (rank VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT points_for FROM table_name_91 WHERE club = \"fall bay rfc\"",
    "question_en": "How many points are for the Fall Bay RFC club?",
    "question_th": "สโมสร Fall Bay RFC มีกี่คะแนน?",
    "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_en": "What was drawn for 6 bonus points and is against 410 points?",
    "question_th": "อะไรได้แต้มโบนัส 6 แต้มและเทียบกับ 410 แต้ม?",
    "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_en": "What is the club had 431 points against them?",
    "question_th": "สโมสรมี 431 แต้มเทียบกับพวกเขาคืออะไร?",
    "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_en": "What are the points against with a points difference?",
    "question_th": "แต้มกับแต้มต่างกันมีอะไรบ้าง?",
    "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_en": "What are the played points difference?",
    "question_th": "คะแนนที่เล่นต่างกันอย่างไร?",
    "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_en": "When the Home Team was Sydney, what did the Away team score?",
    "question_th": "เมื่อทีมเจ้าบ้านอยู่ที่ซิดนีย์ ทีมเยือนได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_41 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT ground FROM table_name_55 WHERE home_team = \"carlton\"",
    "question_en": "What was the Home team Carlton's Ground?",
    "question_th": "ทีมเหย้า 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_en": "Which player scored 71?",
    "question_th": "นักเตะคนไหนได้ 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_en": "What is the circuit on 19 Apr with Craig Lowndes as the winner?",
    "question_th": "เซอร์กิตวันที่ 19 เมษายนจะเป็นอย่างไร โดยมี Craig Lowndes เป็นผู้ชนะ?",
    "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_en": "What circuit has volvo cars australia as the team?",
    "question_th": "วอลโว่ คาร์ ออสเตรเลีย เป็นทีมไหนในสนาม?",
    "context": "CREATE TABLE table_name_15 (circuit VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT series FROM table_name_8 WHERE team = \"dick johnson racing\"",
    "question_en": "What series was Dick Johnson Racing the team?",
    "question_th": "Dick Johnson Racing เป็นซีรีส์อะไร",
    "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_en": "What is the city/state of the circuit where Russell Ingall Larry Perkins was the winner?",
    "question_th": "เมือง/รัฐของสนามแข่งที่ Russell Ingall Larry Perkins เป็นผู้ชนะคืออะไร",
    "context": "CREATE TABLE table_name_87 (city___state VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_64 WHERE away_team = \"gillingham\"",
    "question_en": "What date was the away team, team Gillingham?",
    "question_th": "ทีมเยือนนัดวันไหนทีมจิลลิ่งแฮม?",
    "context": "CREATE TABLE table_name_64 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_6 WHERE tie_no = \"21\"",
    "question_en": "What was the score for a no. 21 tie?",
    "question_th": "คะแนนเท่าไหร่สำหรับอันดับไม่ 21 เสมอ?",
    "context": "CREATE TABLE table_name_6 (score VARCHAR, tie_no VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_80 WHERE away_team = \"southport\"",
    "question_en": "What was the date for the away team, team Southport?",
    "question_th": "นัดเยือนทีมเซาธ์ปอร์ทวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_80 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_19 WHERE away_team = \"southport\"",
    "question_en": "What was the score for the away team, southport?",
    "question_th": "ทีมเยือนเซาธ์ปอร์ทได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_19 (score VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_65 WHERE attendance = \"47,971\"",
    "question_en": "What was the result when the attendance was 47,971?",
    "question_th": "ผลเป็นอย่างไรเมื่อมีผู้เข้าร่วม 47,971 คน?",
    "context": "CREATE TABLE table_name_65 (result VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_2 WHERE attendance = \"46,456\"",
    "question_en": "What was the result when the attendance was 46,456?",
    "question_th": "ผลเป็นอย่างไรเมื่อมีผู้เข้าร่วม 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_en": "Who was the opponent on september 27, 1998?",
    "question_th": "คู่ต่อสู้เมื่อวันที่ 27 กันยายน 2541 คือใคร?",
    "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_en": "Which Venue has a Score of 0:0, a Season larger than 2010, and a Team 1 of t&t hanoi?",
    "question_th": "สนามใดมีคะแนน 0:0, ฤดูกาลที่ใหญ่กว่าปี 2010 และทีม 1 ของ t&t ฮานอย?",
    "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_en": "What's the highest league of the Nova Scotia Clippers with a total season of less than 4?",
    "question_th": "โนวาสโกเชีย คลิปเปอร์ส คือลีกสูงสุดที่มีจำนวนรวมน้อยกว่า 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_en": "What is the season that has fewer than 5 total seasons and is in Ottawa, Ontario?",
    "question_th": "ฤดูกาลใดที่มีทั้งหมดน้อยกว่า 5 ฤดูกาลและอยู่ในออตตาวา ออนแทรีโอ?",
    "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_en": "What is the least total seasons of the Vancouver 86ers?",
    "question_th": "ฤดูกาลรวมที่น้อยที่สุดของ Vancouver 86ers คืออะไร?",
    "context": "CREATE TABLE table_name_58 (total_seasons INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_28 WHERE week = 14",
    "question_en": "Who was the opponent in week 14?",
    "question_th": "คู่ต่อสู้ในสัปดาห์ที่ 14 คือใคร?",
    "context": "CREATE TABLE table_name_28 (opponent VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_87 WHERE city = \"punta del este\"",
    "question_en": "What is Date, when City is \"Punta Del Este\"?",
    "question_th": "วันที่คืออะไรเมื่อซิตี้คือ \"ปุนตาเดลเอสเต\"?",
    "context": "CREATE TABLE table_name_87 (date VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_18 WHERE prize = \"$146,000\"",
    "question_en": "What is City, when Prize is \"$146,000\"?",
    "question_th": "ซิตี้คืออะไร เมื่อรางวัลคือ \"$146,000\"?",
    "context": "CREATE TABLE table_name_18 (city VARCHAR, prize VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_66 WHERE winner = \"murilo figueiredo\"",
    "question_en": "What is Date, when Winner is \"Murilo Figueiredo\"?",
    "question_th": "วันที่คืออะไร เมื่อผู้ชนะคือ \"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_en": "What Aspect has a Programming of Saigon Network Television?",
    "question_th": "แง่มุมใดที่มีการเขียนโปรแกรมของโทรทัศน์เครือข่ายไซง่อน?",
    "context": "CREATE TABLE table_name_12 (aspect VARCHAR, programming VARCHAR)"
  },
  {
    "answer": "SELECT aspect FROM table_name_18 WHERE programming = \"latv\"",
    "question_en": "Which Aspect has a Programming of latv?",
    "question_th": "Aspect ใดมีการเขียนโปรแกรม 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_en": "Which Programming has a Channel greater than 51.2 and a PSIP Short Name of kyaz-5?",
    "question_th": "โปรแกรมใดที่มี Channel มากกว่า 51.2 และชื่อย่อ PSIP เป็น 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_en": "What is the PSIP Short name for the Channel that is less than 51.6?",
    "question_th": "PSIP ชื่อย่อของช่องที่น้อยกว่า 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_en": "What year did maggs magnificent mild bear win overall at the camra reading branch beer festival?",
    "question_th": "Maggs Maggs Maggs ได้รับรางวัลชนะเลิศโดยรวมในเทศกาลเบียร์สาขาการอ่าน Camra ในปีใด?",
    "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_en": "What prize did good old boy win in 2002 at the camra london and south east regional competition?",
    "question_th": "Good Old Boy ได้รับรางวัลอะไรในปี 2002 ในการแข่งขัน Camra London และการแข่งขันระดับภูมิภาคตะวันออกเฉียงใต้",
    "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_en": "What year did maggs magnificent mild win a gold medal in the mild and porter category at the siba south east region beer competition?",
    "question_th": "ในปีใดที่ Maggs Maggs Maggie Mild ได้รับรางวัลเหรียญทองประเภท Mild และ Porter จากการแข่งขันเบียร์ Siba ภูมิภาคตะวันออกเฉียงใต้",
    "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_en": "What beer won a silver medal at the camra reading branch beer festival in 2008?",
    "question_th": "เบียร์ชนิดใดที่ได้รับรางวัลเหรียญเงินจากเทศกาลเบียร์สาขาการอ่าน Camra ในปี 2551",
    "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_en": "What is Model Number, when Part Number(s) is AY80609003987AB?",
    "question_th": "หมายเลขรุ่นคืออะไร เมื่อหมายเลขชิ้นส่วนคือ 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_en": "What is Frequency, when Part Number(s) is AY80609004002AC?",
    "question_th": "ความถี่คืออะไร เมื่อหมายเลขชิ้นส่วนคือ 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_en": "What is sSpec Number, when Frequency is 1 GHZ?",
    "question_th": "sSpec Number คืออะไร เมื่อความถี่เป็น 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_en": "What is Release Date, when sSpec Number is SLBZE(C0)SLBR8?",
    "question_th": "วันที่วางจำหน่ายคือเมื่อใด เมื่อหมายเลข sSpec คือ 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_en": "What is L2 Cache, when Model Number is Atom Z625?",
    "question_th": "L2 Cache คืออะไร เมื่อหมายเลขรุ่นคือ 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_en": "Which Pick has a Player of renaldo wynn, and a Round smaller than 1?",
    "question_th": "ตัวเลือกใดมีผู้เล่นของ renaldo wynn และรอบที่เล็กกว่า 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_en": "Which Round has a Player of damon jones?",
    "question_th": "รอบใดที่มีผู้เล่นของ damon jones?",
    "context": "CREATE TABLE table_name_49 (round INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_50 WHERE round < 2",
    "question_en": "Which College has a Round smaller than 2?",
    "question_th": "วิทยาลัยใดมีรอบเล็กกว่า 2",
    "context": "CREATE TABLE table_name_50 (college VARCHAR, round INTEGER)"
  },
  {
    "answer": "SELECT event FROM table_name_94 WHERE location = \"northfield, mn\"",
    "question_en": "Which event is located in Northfield, Mn?",
    "question_th": "งานใดจัดขึ้นที่ Northfield, Mn?",
    "context": "CREATE TABLE table_name_94 (event VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_88 WHERE distance = \"ft10in (m)\"",
    "question_en": "Which event has a distance of ft10in (m)?",
    "question_th": "เหตุการณ์ใดมีระยะทาง 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_en": "What distance does the Bass Pro Shops event have?",
    "question_th": "งาน Bass Pro Shops มีระยะทางเท่าไหร่?",
    "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_en": "On what date was Mike Jackson a handler at the Indianapolis Boat, Sport & Travel Show?",
    "question_th": "ไมค์ แจ็คสันเป็นผู้ดูแลงาน 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_en": "Who did they play when there were only 751 in attendance?",
    "question_th": "พวกเขาเล่นเป็นใครเมื่อมีผู้เข้าร่วมเพียง 751 คน?",
    "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_en": "When did they play the swindon wildcats away?",
    "question_th": "เมื่อไหร่ที่พวกเขาเล่น swindon wildcats ออกไป?",
    "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_en": "Who was the Man of the Match when they played the Romford Raiders at home?",
    "question_th": "ใครคือแมนออฟเดอะแมตช์เมื่อพวกเขาเล่นกับรอมฟอร์ด เร้ดเดอร์ส ในบ้าน?",
    "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_en": "What is the Nationality of the player named Yahaya, who has as App(L/C/E) of 0 (0/0/0)?",
    "question_th": "ผู้เล่นชื่อ Yahaya มีสัญชาติอะไร (L/C/E) เป็น 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_en": "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?",
    "question_th": "ค่าธรรมเนียมการโอนสำหรับผู้เล่นที่มีแอป (L/C/E) เป็น 0 (0/0/0) และบันทึกของ 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_en": "what is the british name when the american name is sixteenth note?",
    "question_th": "ชื่ออังกฤษเมื่อชื่ออเมริกันเป็นโน้ตที่สิบหกคืออะไร?",
    "context": "CREATE TABLE table_name_50 (british_name VARCHAR, american_name VARCHAR)"
  },
  {
    "answer": "SELECT value FROM table_name_23 WHERE british_name = \"quaver\"",
    "question_en": "what is the value when the british name is quaver?",
    "question_th": "เมื่อชื่ออังกฤษเป็นเคเวอร์จะมีมูลค่าเท่าไร?",
    "context": "CREATE TABLE table_name_23 (value VARCHAR, british_name VARCHAR)"
  },
  {
    "answer": "SELECT value FROM table_name_40 WHERE british_name = \"maxima\"",
    "question_en": "what is the value when the british name is maxima?",
    "question_th": "ชื่ออังกฤษคือ 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_en": "What is Home Team, when Date is \"28 January 1984\", and when Tie No is \"4\"?",
    "question_th": "ทีมเหย้าคืออะไร เมื่อวันที่คือ \"28 มกราคม 1984\" และเมื่อเสมอไม่ใช่คือ \"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_en": "What is Date, when Away Team is \"Gillingham\"?",
    "question_th": "วันที่คือเมื่อทีมเยือนคือ \"จิลลิ่งแฮม\"?",
    "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_en": "What is Home Team, when Date is \"1 February 1984\", and when Tie No is \"5\"?",
    "question_th": "ทีมเหย้าคืออะไร เมื่อวันที่คือ \"1 กุมภาพันธ์ 1984\" และเมื่อเสมอไม่ใช่คือ \"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_en": "What is Away Team, when Home Team is \"Sheffield Wednesday\"?",
    "question_th": "ทีมเยือนคืออะไร เมื่อทีมเจ้าบ้านคือ \"เชฟฟิลด์ เว้นส์เดย์\"?",
    "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_en": "What is Date, when Tie No is \"Replay\", and when Away Team is \"Crystal Palace\"?",
    "question_th": "วันที่คือเมื่อใด เมื่อเสมอโนคือ \"รีเพลย์\" และเมื่อทีมเยือนคือ \"คริสตัล พาเลซ\"?",
    "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_en": "What to par has tom kite as the player?",
    "question_th": "ทอมว่าวเป็นผู้เล่นพาร์อะไร?",
    "context": "CREATE TABLE table_name_92 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_65 WHERE finish = \"t57\"",
    "question_en": "What player has a t57 as the finish?",
    "question_th": "ผู้เล่นคนไหนมี t57 เป็นเส้นชัย?",
    "context": "CREATE TABLE table_name_65 (player VARCHAR, finish VARCHAR)"
  },
  {
    "answer": "SELECT MIN(total) FROM table_name_81 WHERE year_s__won = \"1992\"",
    "question_en": "What is the lowest total that has 1992 as the year (s) won?",
    "question_th": "ผลรวมต่ำสุดที่มีปี 1992 ชนะคืออะไร?",
    "context": "CREATE TABLE table_name_81 (total INTEGER, year_s__won VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_36 WHERE to_par = \"+21\"",
    "question_en": "What player has +21 as the to par?",
    "question_th": "ผู้เล่นคนใดมี +21 เท่ากับพาร์?",
    "context": "CREATE TABLE table_name_36 (player VARCHAR, to_par VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_5 WHERE total < 296",
    "question_en": "Which to par has a total less than 296?",
    "question_th": "พาร์ใดมีแต้มรวมน้อยกว่า 296?",
    "context": "CREATE TABLE table_name_5 (to_par VARCHAR, total INTEGER)"
  },
  {
    "answer": "SELECT finish FROM table_name_35 WHERE to_par = \"+21\"",
    "question_en": "What finish has +21 as the to par?",
    "question_th": "จบอะไรได้ +21 เท่ากับพาร์?",
    "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_en": "What is the total number of events that had 34 cuts and 3 in the top 10?",
    "question_th": "จำนวนกิจกรรมทั้งหมดที่มีการตัด 34 ครั้งและ 3 รายการใน 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_en": "Who had the most rebounds on January 3?",
    "question_th": "วันที่ 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_en": "Which surface had a date after 1982 and partner of Guy Forget?",
    "question_th": "พื้นผิวใดมีวันที่หลังปี 1982 และเป็นหุ้นส่วนของ 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_en": "What was the result of the week 9 game?",
    "question_th": "ผลการแข่งขันสัปดาห์ที่ 9 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_48 (result VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT MAX(attendance) FROM table_name_18 WHERE date = \"november 16, 1975\"",
    "question_en": "What was the attendance during the november 16, 1975 game?",
    "question_th": "การมีส่วนร่วมในเกมวันที่ 16 พฤศจิกายน พ.ศ. 2518 เป็นอย่างไรบ้าง?",
    "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_en": "What is the total number in class for the Whitehaven Coal?",
    "question_th": "จำนวนรวมของถ่านหิน Whitehaven ในชั้นเรียนคือเท่าใด",
    "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_en": "What was built in a class with less than 10, and the Downer Rail owner?",
    "question_th": "อะไรถูกสร้างขึ้นในคลาสที่มีน้อยกว่า 10 และเจ้าของ Downer Rail?",
    "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_en": "Which class has more than 15 people in the class?",
    "question_th": "ชั้นเรียนใดมีมากกว่า 15 คนในชั้นเรียน?",
    "context": "CREATE TABLE table_name_83 (class VARCHAR, number_in_class INTEGER)"
  },
  {
    "answer": "SELECT owner FROM table_name_98 WHERE built = \"2009-2011\"",
    "question_en": "Who is the owner that built in 2009-2011?",
    "question_th": "เจ้าของที่สร้างในปี 2552-2554 คือใคร?",
    "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_en": "Count the Grid which has a Manufacturer of aprilia, and a Rider of bradley smith?",
    "question_th": "นับกริดที่มีผู้ผลิต Aprilia และผู้ขับขี่ของ 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_en": "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?",
    "question_th": "ตั้งชื่อเวลาที่มีรอบ 19 และกริดที่ใหญ่กว่า 19 และผู้ผลิต ktm และ Rider ของ 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_en": "Name the Time which has a Manufacturer of aprilia, and a Grid smaller than 16, and a Rider of sandro cortese?",
    "question_th": "ตั้งชื่อ Time ซึ่งมีผู้ผลิต Aprilia และ Grid ที่เล็กกว่า 16 และ Rider ของ 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_en": "Name the Silver which has a Bronze of 19, and a Total larger than 58?",
    "question_th": "ตั้งชื่อเหรียญเงินซึ่งมีเหรียญทองแดงเท่ากับ 19 และผลรวมมากกว่า 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_en": "What kind of Silver has a Rank of 3, and a Gold smaller than 2?",
    "question_th": "เงินประเภทใดที่มีอันดับ 3 และทองน้อยกว่า 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_en": "COunt the silver that has a Bronze smaller than 1?",
    "question_th": "นับเงินที่มีทองแดงน้อยกว่า 1 ไหม?",
    "context": "CREATE TABLE table_name_19 (silver INTEGER, bronze INTEGER)"
  },
  {
    "answer": "SELECT MAX(total) FROM table_name_70 WHERE silver > 19",
    "question_en": "Name the Total which has a Silver larger than 19?",
    "question_th": "ตั้งชื่อผลรวมซึ่งมีเงินมากกว่า 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_en": "Name the  Silver that has a Total smaller than 2, and a Nation of south korea?",
    "question_th": "ตั้งชื่อ Silver ที่มีคะแนนรวมน้อยกว่า 2 และ Nation ของเกาหลีใต้ใช่ไหม?",
    "context": "CREATE TABLE table_name_49 (silver INTEGER, total VARCHAR, nation VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_47 WHERE opponent = \"chad armstrong\"",
    "question_en": "What is the location of the match with chad armstrong as the opponent?",
    "question_th": "นัดชิงตำแหน่งไหนที่มี แชด อาร์มสตรอง เป็นคู่ต่อสู้?",
    "context": "CREATE TABLE table_name_47 (location VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_65 WHERE player = \"scott verplank\"",
    "question_en": "What is Scott Verplank's score?",
    "question_th": "คะแนนของ Scott Verplank คืออะไร?",
    "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_en": "What place is United States player Corey Pavin in?",
    "question_th": "Corey Pavin ผู้เล่นชาวอเมริกันอยู่ที่ไหน?",
    "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_en": "Which country has a score of 70-71-72=213?",
    "question_th": "ประเทศใดมีคะแนน 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_en": "Where does Bob Tway Place?",
    "question_th": "บ็อบ ทเวย์ เพลส อยู่ที่ไหน",
    "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_en": "What is the place with a to par of E and a score of 69-69-72=210?",
    "question_th": "ตำแหน่งที่มีพาร์ E และคะแนน 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_en": "WHAT IS THE COUNTRY WITH DAVE BARR?",
    "question_th": "ประเทศที่มี 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_en": "WHAT IS THE TO PAR WITH A T7 PLACE, SCORE OF 72-67=139, AND PLAYER RAYMOND FLOYD?",
    "question_th": "อะไรคือสิ่งที่จะเทียบเท่ากับอันดับ T7 คะแนน 72-67=139 และผู้เล่น 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_en": "WHAT IS THE PLACE WITH PLAYER mark o'meara?",
    "question_th": "มาร์ค โอเมียรา ผู้เล่นอยู่ที่ไหน?",
    "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_en": "Which Drawn is the highest one that has a Position smaller than 4, and a Lost smaller than 2?",
    "question_th": "จั่วอันไหนที่สูงที่สุดที่มีตำแหน่งน้อยกว่า 4 และแพ้น้อยกว่า 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_en": "How many Points have a Position larger than 3, and a Played smaller than 14?",
    "question_th": "มีกี่แต้มที่มีตำแหน่งที่มากกว่า 3 และตำแหน่งที่เล่นน้อยกว่า 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_en": "Which Lost has a Position of 4, and a Drawn smaller than 3?",
    "question_th": "ผู้แพ้คนไหนมีตำแหน่ง 4 และเสมอน้อยกว่า 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_en": "Which Position has a Lost larger than 4, and a Played larger than 14?",
    "question_th": "ตำแหน่งใดที่มีการแพ้มากกว่า 4 และตำแหน่งที่เล่นมากกว่า 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_en": "On which week was the opponent the oakland raiders?",
    "question_th": "คู่ต่อสู้ของ Oakland Raiders คือสัปดาห์ใด?",
    "context": "CREATE TABLE table_name_91 (week INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_85 WHERE opponent = \"denver broncos\"",
    "question_en": "What was the attendance at the game where the opponent was the denver broncos?",
    "question_th": "การมีส่วนร่วมในเกมที่คู่ต่อสู้คือเดนเวอร์บรองโกส์มีอะไรบ้าง?",
    "context": "CREATE TABLE table_name_85 (attendance VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT SUM(enrollment) FROM table_name_38 WHERE location = \"platteville, wi\"",
    "question_en": "How many people are enrolled in platteville, wi?",
    "question_th": "มีกี่คนที่ลงทะเบียนใน 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_en": "What is the team nickname of university of wisconsin-platteville?",
    "question_th": "ชื่อเล่นของทีม 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_en": "What is To Par, when Place is 3?",
    "question_th": "To Par คืออะไร เมื่ออันดับคือ 3?",
    "context": "CREATE TABLE table_name_43 (to_par VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_89 WHERE player = \"rives mcbee\"",
    "question_en": "What is Country, when Player is \"Rives McBee\"?",
    "question_th": "ประเทศคืออะไร เมื่อผู้เล่นคือ \"Rives McBee\"?",
    "context": "CREATE TABLE table_name_89 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_93 WHERE player = \"tony lema\"",
    "question_en": "What is Place, when Player is \"Tony Lema\"?",
    "question_th": "Place คืออะไร เมื่อผู้เล่นคือ \"Tony Lema\"?",
    "context": "CREATE TABLE table_name_93 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_8 WHERE to_par = \"e\"",
    "question_en": "What is Score, when To Par is \"E\"?",
    "question_th": "Score คืออะไร เมื่อ To Par คือ \"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_en": "What is Country, when Score is 71-71-69=211?",
    "question_th": "ประเทศคืออะไร เมื่อคะแนนคือ 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_en": "What is Country, when Score is 71-74-70=215?",
    "question_th": "ประเทศคืออะไร เมื่อคะแนนคือ 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_en": "what is the lost when played is less than 42?",
    "question_th": "เมื่อเล่นน้อยกว่า 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_en": "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?",
    "question_th": "อะไรคือผลต่างประตูเมื่อเสมอมากกว่า 11 ประตูที่เสียน้อยกว่า 63 ประตูน้อยกว่า 87 ประตูและแพ้มากกว่า 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_en": "how many times is lost less than 7 and the position 2?",
    "question_th": "แพ้น้อยกว่า 7 และตำแหน่ง 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_en": "what is the position when the points 1 is less than 36, goals for is less than 40 and drawn is less than 9?",
    "question_th": "ตำแหน่งไหนเมื่อแต้ม 1 น้อยกว่า 36 ประตูน้อยกว่า 40 และเสมอน้อยกว่า 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é_with_known_sentences = \"2 (1543–1544)\"",
    "question_en": "How many executions in persona have a number with known sentences of 2 (1543–1544)?",
    "question_th": "การประหารชีวิตในบุคคลจำนวนเท่าใดที่มีตัวเลขที่มีประโยคที่รู้จักคือ 2 (1543–1544)",
    "context": "CREATE TABLE table_name_92 (executions_in_persona VARCHAR, number_of_autos_da_fé_with_known_sentences VARCHAR)"
  },
  {
    "answer": "SELECT penanced FROM table_name_3 WHERE number_of_autos_da_fé_with_known_sentences = \"71 (1600–1773)\"",
    "question_en": "How many were penanced when the number with known sentences was 71 (1600–1773)?",
    "question_th": "มีกี่คนที่ถูกปลงอาบัติเมื่อจำนวนประโยคที่ทราบคือ 71 (1600–1773)",
    "context": "CREATE TABLE table_name_3 (penanced VARCHAR, number_of_autos_da_fé_with_known_sentences VARCHAR)"
  },
  {
    "answer": "SELECT penanced FROM table_name_48 WHERE total = \"7666\"",
    "question_en": "How many were penanced for a total of 7666?",
    "question_th": "ถูกปลงอาบัติกี่คน รวม 7,666 คน?",
    "context": "CREATE TABLE table_name_48 (penanced VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT executions_in_effigie FROM table_name_26 WHERE tribunal = \"lamego\"",
    "question_en": "How man executions in effigie took place at the Lamego tribunal?",
    "question_th": "การประหารชีวิตโดยใช้หุ่นจำลองเกิดขึ้นที่ศาล Lamego ได้อย่างไร",
    "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_en": "How many were penanced with 0 executions in effigie for a total of 21?",
    "question_th": "มีกี่คนที่ถูกปลงอาบัติด้วยการประหารชีวิต 0 ครั้ง รวมเป็น 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_en": "Which tribunal had a total of 4167?",
    "question_th": "ศาลใดมีทั้งหมด 4167?",
    "context": "CREATE TABLE table_name_34 (tribunal VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_50 WHERE date = \"october 20\"",
    "question_en": "What is the Opponent of the Game on October 20?",
    "question_th": "ฝ่ายตรงข้ามของเกมวันที่ 20 ตุลาคมคืออะไร?",
    "context": "CREATE TABLE table_name_50 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT institution FROM table_name_44 WHERE location = \"reading, pa\"",
    "question_en": "Which institution is located in Reading, PA?",
    "question_th": "สถาบันใดตั้งอยู่ใน Reading, PA?",
    "context": "CREATE TABLE table_name_44 (institution VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT nickname FROM table_name_71 WHERE established = 1958",
    "question_en": "What was the nick name for the school established in 1958?",
    "question_th": "ชื่อเล่นของโรงเรียนที่ก่อตั้งเมื่อปี พ.ศ. 2501 คืออะไร?",
    "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_en": "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?",
    "question_th": "เมื่อกริดต่ำกว่า 5 ขวบและจัสติน วิลสันกำลังขับรถเพื่อการแข่งขันประเภททีมไมแจ็ค คอนเควสต์เรซซิ่ง จำนวนรอบที่ขับสูงสุดคือเท่าใด",
    "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_en": "When the team is newman/haas racing and the grid size is 3, what's the time/retired?",
    "question_th": "เมื่อทีมเป็นมือใหม่/ฮาสเรซซิ่งและขนาดกริดเป็น 3 กี่โมง/เลิกแข่ง?",
    "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_en": "What tournament took place on Ground A with 8 rounds?",
    "question_th": "ทัวร์นาเมนต์ใดเกิดขึ้นที่สนาม A มี 8 รอบ?",
    "context": "CREATE TABLE table_name_80 (tournament VARCHAR, ground VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT series FROM table_name_20 WHERE title_rank = \"various\"",
    "question_en": "What series had the title rank of various?",
    "question_th": "ซีรีส์เรื่องไหนมีอันดับชื่อเรื่องต่างกัน?",
    "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_en": "What is the title rank of the actor who played the character of arthur hastings during series 1-8, 13?",
    "question_th": "นักแสดงที่รับบทเป็นอาเธอร์ เฮสติ้งส์ ในซีรีส์ 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_en": "What is the title rank of the actor who played the character of arthur hastings during series 1-8, 13?",
    "question_th": "นักแสดงที่รับบทเป็นอาเธอร์ เฮสติ้งส์ ในซีรีส์ 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_en": "What is the title rank of actor pauline moran?",
    "question_th": "ตำแหน่งของนักแสดง 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_en": "Which character had a title rank of various?",
    "question_th": "ตัวละครใดมียศฉายาต่างกัน?",
    "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_en": "Who had the highest rebounds of the game with a game number higher than 65 on March 28?",
    "question_th": "ใครมีรีบาวด์สูงสุดของเกมด้วยจำนวนเกมที่สูงกว่า 65 เมื่อวันที่ 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_en": "WHAT DATE HAD A GAME SMALLER THAN 58, AND FROM BOSTON?",
    "question_th": "วันที่เท่าไหร่ที่มีเกมเล็กกว่า 58 และจากบอสตัน?",
    "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_en": "Original airdate for #6 with 1.246 viewers?",
    "question_th": "ออกอากาศครั้งแรก #6 มีผู้ชม 1.246 คน?",
    "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_en": "Rank for viewers larger than 1.244?",
    "question_th": "อันดับสำหรับผู้ชมที่มีขนาดใหญ่กว่า 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–6\"",
    "question_en": "How many weeks had a Result of w 20–6?",
    "question_th": "กี่สัปดาห์มีผลลัพธ์ของ w 20–6?",
    "context": "CREATE TABLE table_name_24 (week INTEGER, result VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_76 WHERE attendance = \"bye\"",
    "question_en": "Which Opponent has an Attendance of bye?",
    "question_th": "ฝ่ายตรงข้ามคนใดที่มีการเข้าร่วมการบาย?",
    "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_en": "WHAT IS THE FLAPS WITH PODIUMS OF 24 AND RACES BIGGER THAN 143?",
    "question_th": "แผ่นพับที่มีโพเดียม 24 และการแข่งขันที่ใหญ่กว่า 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_en": "WHAT ARE THE RACES WHEN FLAPS ARE ZERO, PODIUMS ARE LARGER THAN 0, SEASON IS 2008, AND POLE SMALLER THAN 1?",
    "question_th": "การแข่งขันคืออะไรเมื่อแผ่นพับเป็นศูนย์ โพเดียมมีขนาดใหญ่กว่า 0 ฤดูกาลปี 2008 และเสาเล็กกว่า 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_en": "WHAT ARE THE RACES WITH A POLE SMALLER THAN 2 IN 2007?",
    "question_th": "การแข่งขันที่มีเสาเล็กกว่า 2 ในปี 2550 คืออะไร?",
    "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_en": "WHAT ARE THE RACES FOR 2010 WITH FLAPS LARGER THAN 6?",
    "question_th": "การแข่งขันในปี 2010 ที่มี FLAPS ใหญ่กว่า 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_en": "What T20 Match has a total of 23?",
    "question_th": "การแข่งขัน T20 ใดมีทั้งหมด 23 รายการ?",
    "context": "CREATE TABLE table_name_18 (t20_matches VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT fc_matches FROM table_name_52 WHERE location = \"darlington\"",
    "question_en": "What FC Match was played in Darlington?",
    "question_th": "FC Match ใดที่เล่นในดาร์ลิงตัน?",
    "context": "CREATE TABLE table_name_52 (fc_matches VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT t20_matches FROM table_name_33 WHERE year = \"1979\"",
    "question_en": "What T20 match was played in 1979?",
    "question_th": "การแข่งขัน T20 ใดที่เล่นในปี 1979?",
    "context": "CREATE TABLE table_name_33 (t20_matches VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT fc_matches FROM table_name_18 WHERE total = \"24\"",
    "question_en": "Which FC match has a total of 24?",
    "question_th": "FC นัดไหนมีทั้งหมด 24 นัด?",
    "context": "CREATE TABLE table_name_18 (fc_matches VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_45 WHERE fc_matches = \"12\"",
    "question_en": "Where was the FC match with a score of 12 played?",
    "question_th": "แมตช์ FC มีสกอร์ 12 เล่นที่ไหน?",
    "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_en": "How many oricon's have a romaji title of rakuen -memorial tracks- (maxi-single)?",
    "question_th": "มีกี่โอริกอนที่มีชื่อโรมาจิว่า rakuen -memorial track- (maxi-single)",
    "context": "CREATE TABLE table_name_13 (oricon VARCHAR, romaji_title VARCHAR)"
  },
  {
    "answer": "SELECT reference FROM table_name_39 WHERE japanese_title = \"アイシテル\"",
    "question_en": "What reference is used with the title アイシテル?",
    "question_th": "ชื่อเรื่องว่า อายสิテル ใช้อ้างอิงถึงอะไรคะ?",
    "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_en": "What is the reference for the romani title da.i.su.ki?",
    "question_th": "ชื่อโรมานี d.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_en": "What title to the japanese give the romani title ashita wa ashita no kaze ga fuku?",
    "question_th": "ชื่ออะไรในภาษาญี่ปุ่นที่ให้ชื่อโรมานี 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_en": "Which club was founded after 1998?",
    "question_th": "สโมสรใดก่อตั้งหลังปี 1998?",
    "context": "CREATE TABLE table_name_49 (club VARCHAR, founded INTEGER)"
  },
  {
    "answer": "SELECT MIN(tries) FROM table_name_5 WHERE goals < 0",
    "question_en": "Which Tries has a Goal smaller than 0?",
    "question_th": "ความพยายามใดมีเป้าหมายที่น้อยกว่า 0",
    "context": "CREATE TABLE table_name_5 (tries INTEGER, goals INTEGER)"
  },
  {
    "answer": "SELECT issue_price FROM table_name_44 WHERE theme = \"trumpeter swan\"",
    "question_en": "What was the issue price for the Trumpeter Swan set?",
    "question_th": "ราคาของชุด Trumpeter Swan คือเท่าไร?",
    "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_en": "Who was the artist with a mintage of 40,000 and an issue price of $45.95?",
    "question_th": "ศิลปินคนไหนที่มีจำนวนผลิต 40,000 เหรียญและราคาออก 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_en": "What is the highest number of points a player got during the game on May 25?",
    "question_th": "ผู้เล่นได้คะแนนสูงสุดระหว่างเกมในวันที่ 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_en": "What is the position of the player who has ongoing first-team goals and currently plays for the Aston Villa club?",
    "question_th": "ตำแหน่งใดของนักเตะที่ทำประตูในทีมชุดใหญ่อย่างต่อเนื่องและปัจจุบันเล่นให้กับสโมสรแอสตัน วิลล่า?",
    "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_en": "Who is the player who has had 7 first team appearances?",
    "question_th": "นักเตะที่ลงเล่นให้ทีมชุดใหญ่ 7 นัดคือใคร?",
    "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_en": "What is the name of the club that has ongoing first-team appearances, a midfielder, and whose player is Samir Carruthers?",
    "question_th": "สโมสรที่ลงเล่นในทีมชุดใหญ่, กองกลาง และนักเตะของซามีร์ คาร์รูเธอร์ส ชื่ออะไร?",
    "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_en": "How many first-team goals does the team have whose player is Samir Carruthers?",
    "question_th": "ทีมนี้ทำได้กี่ประตูในทีมชุดใหญ่ โดยนักเตะคือซามีร์ คาร์รูเธอร์ส?",
    "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_en": "What position has ongoing first-team appearances, Graham Burke for a player, and whose club is Aston Villa?",
    "question_th": "ตำแหน่งใดที่ลงเล่นในทีมชุดใหญ่อย่างต่อเนื่อง เกรแฮม เบิร์คสำหรับนักเตะ และสโมสรของใครคือแอสตัน วิลล่า?",
    "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_en": "Which position has had 7 first-team appearances?",
    "question_th": "ตำแหน่งใดลงเล่นให้ทีมชุดใหญ่มาแล้ว 7 นัด?",
    "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_en": "What was the theme when the issue price was $508.95?",
    "question_th": "ธีมเมื่อราคาของปัญหาอยู่ที่ 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_en": "What's the mintage when the theme was year of the rabbit?",
    "question_th": "คอนเซ็ปต์ปีกระต่ายมีอะไรบ้าง?",
    "context": "CREATE TABLE table_name_18 (mintage VARCHAR, theme VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_43 WHERE theme = \"year of the pig\"",
    "question_en": "What year was the year of the pig theme?",
    "question_th": "ธีมปีหมูคือปีอะไร?",
    "context": "CREATE TABLE table_name_43 (year VARCHAR, theme VARCHAR)"
  },
  {
    "answer": "SELECT artist FROM table_name_76 WHERE theme = \"year of the snake\"",
    "question_en": "Who was the artist for the year of the snake?",
    "question_th": "ใครคือศิลปินแห่งปีงู?",
    "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_en": "What is the total Frequency MHz Port Charlotte, Florida, which has an ERP W larger than 10, has?",
    "question_th": "ความถี่รวม MHz พอร์ตชาร์ลอตต์ รัฐฟลอริดา ซึ่งมี ERP W ใหญ่กว่า 10 เป็นเท่าใด",
    "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_en": "What is the call sign for the translator with an ERP W larger than 10?",
    "question_th": "อะไรคือสัญญาณเรียกสำหรับนักแปลที่มี ERP W ใหญ่กว่า 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_en": "What is the highest ERP W of the translator with a call sign of w284av?",
    "question_th": "ERP W สูงสุดของนักแปลที่มีสัญญาณเรียก 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_en": "How big was the crowd of the Home team of Collingwood?",
    "question_th": "ฝูงชนของทีมเหย้าของ 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_en": "What was the away team when the home team was south melbourne?",
    "question_th": "ทีมเยือนเมื่อเจ้าบ้านอยู่เซาท์เมลเบิร์นเป็นทีมอะไร?",
    "context": "CREATE TABLE table_name_85 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_34 WHERE college = \"calgary\"",
    "question_en": "Who was recruited from Calgary?",
    "question_th": "ใครได้รับคัดเลือกจากคาลการี?",
    "context": "CREATE TABLE table_name_34 (player VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT SUM(wins) FROM table_name_43 WHERE rank > 5",
    "question_en": "What number of wins was ranked higher than 5?",
    "question_th": "จำนวนชัยชนะที่สูงกว่า 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_en": "What rank is Miller Barber with more than 11 wins?",
    "question_th": "Miller Barber คว้าชัยชนะมากกว่า 11 สมัยอยู่อันดับไหน?",
    "context": "CREATE TABLE table_name_35 (rank VARCHAR, wins VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_34 WHERE home_team = \"collingwood\"",
    "question_en": "What was the venue when Collingwood was the home team?",
    "question_th": "สนามที่คอลลิงวูดเป็นเจ้าบ้านคืออะไร?",
    "context": "CREATE TABLE table_name_34 (venue VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(crowd) FROM table_name_75 WHERE venue = \"vfl park\"",
    "question_en": "What was the largest crowd at vfl park?",
    "question_th": "คนเยอะมากที่สุดใน 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_en": "How many people were at the game where the home team was South Melbourne?",
    "question_th": "ในเกมที่เจ้าบ้านเป็นเซาธ์ เมลเบิร์นมีกี่คน?",
    "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_en": "What was the score when the away team was Footscray?",
    "question_th": "เมื่อทีมเยือนเป็นฟุตสเครย์สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_25 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team AS score FROM table_name_56 WHERE away_team = \"collingwood\"",
    "question_en": "What was the score when the away team was Collingwood?",
    "question_th": "เมื่อทีมเยือนเป็นคอลลิงวูดสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_56 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_15 WHERE venue = \"corio oval\"",
    "question_en": "What was the home team that played at Corio Oval?",
    "question_th": "เจ้าบ้านเคยเล่นที่โคริโอโอวัลคือทีมอะไร?",
    "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_en": "How many goals were scored on November 22, 1994?",
    "question_th": "ยิงได้กี่ประตูเมื่อวันที่ 22 พฤศจิกายน 1994?",
    "context": "CREATE TABLE table_name_13 (goal INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_49 WHERE goal = 9",
    "question_en": "What was the result of the game with 9 goals?",
    "question_th": "เกมนี้มีผล 9 ประตูเป็นอย่างไรบ้าง?",
    "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_en": "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?",
    "question_th": "จำนวนสูงสุดที่สนับสนุนการห้ามในบริติชโคลัมเบียคือเท่าใด เมื่อเปอร์เซ็นต์ของฝ่ายตรงข้ามมากกว่า 10.8 เปอร์เซ็นต์ที่สนับสนุนน้อยกว่า 72.2 จำนวนที่ต่อต้านน้อยกว่า 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_en": "what is the apparent magnitude of the constellation sculptor",
    "question_th": "ขนาดที่ชัดเจนของประติมากรกลุ่มดาวคือเท่าใด",
    "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_en": "What is the Right ascension of the Object type spiral galaxy that has an Apparent magnitude larger that 12.2",
    "question_th": "ข้อใดคือกาแล็กซีกังหันประเภทวัตถุที่มีขนาดปรากฏใหญ่กว่า 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_en": "Which Constellation has an Apparent magnitude larger that 7.7, and an NGC number of 7777",
    "question_th": "กลุ่มดาวใดมีขนาดปรากฏใหญ่กว่า 7.7 และหมายเลข NGC เท่ากับ 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_en": "What is the name of the Chassis of Diver Maria Teresa de Filippis in round 1?",
    "question_th": "แชสซีของนักประดาน้ำ Maria Teresa de Filippis ในรอบที่ 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_en": "How many yards have a Player of james macpherson, and a Long smaller than 1?",
    "question_th": "เจมส์ แม็คเฟอร์สัน มีผู้เล่นกี่หลา และลองเล็กกว่า 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_en": "What is the lowest car with more than 122 yards?",
    "question_th": "รถต่ำสุดที่มีระยะมากกว่า 122 หลาคืออะไร?",
    "context": "CREATE TABLE table_name_37 (car INTEGER, yards INTEGER)"
  },
  {
    "answer": "SELECT MIN(round) FROM table_name_7 WHERE player = \"ryan thang\"",
    "question_en": "What round was Ryan Thang drafted in?",
    "question_th": "Ryan Thang ถูกดราฟท์เข้ารอบไหน?",
    "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_en": "How many laps did Jeff Burton have when he drove car with a # over 9 and more than 118 points?",
    "question_th": "เจฟฟ์ เบอร์ตัน ขับรถได้กี่รอบด้วยคะแนน # เกิน 9 และมากกว่า 118 แต้ม?",
    "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_en": "What was Scott Riggs points when he had more than 400 laps?",
    "question_th": "Scott Riggs ได้แต้มอะไรเมื่อเขามีมากกว่า 400 รอบ?",
    "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_en": "Who drove the dodge with a car # less than 5?",
    "question_th": "ใครขับรถหลบรถ # ต่ำกว่า 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_en": "What team had a high rebound of perkins (9) and a game smaller than 78?",
    "question_th": "ทีมใดที่มีการเด้งกลับสูงของเพอร์กินส์ (9) และเกมที่เล็กกว่า 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_en": "What date were the high assists rondo (5) and the high rebounds rondo (10)?",
    "question_th": "รอนโด้แอสซิสต์สูง (5) และรอนโด้รีบาวด์สูง (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_en": "On the date April 11, what were the high points?",
    "question_th": "วันที่ 11 เมษายน มีจุดเด่นอะไรบ้าง?",
    "context": "CREATE TABLE table_name_71 (high_points VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(game) FROM table_name_4 WHERE date = \"april 11\"",
    "question_en": "On the date April 11, what is the total game number?",
    "question_th": "วันที่ 11 เม.ย. เลขเกมทั้งหมดเท่าไร?",
    "context": "CREATE TABLE table_name_4 (game VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_30 WHERE year = \"1957\"",
    "question_en": "What actor made a film in 1957?",
    "question_th": "นักแสดงคนไหนที่สร้างภาพยนตร์ในปี 2500?",
    "context": "CREATE TABLE table_name_30 (name VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_25 WHERE name = \"miyoshi umeki\"",
    "question_en": "What year did Miyoshi Umeki make a film?",
    "question_th": "มิโยชิ อุเมกิ สร้างภาพยนตร์ในปีใด",
    "context": "CREATE TABLE table_name_25 (year VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_56 WHERE \"role\" = \"role\"",
    "question_en": "What status has a role?",
    "question_th": "มีบทบาทในสถานะใด?",
    "context": "CREATE TABLE table_name_56 (status VARCHAR)"
  },
  {
    "answer": "SELECT MIN(round) FROM table_name_98 WHERE nominees = \"david mundy\"",
    "question_en": "what is the earliest round for nominee david mundy?",
    "question_th": "เดวิด มุนดี้ ผู้ได้รับการเสนอชื่อเข้าชิงรอบแรกสุดคือเท่าไร?",
    "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_en": "what round saw the ground of telstra dome and shaun burgoyne as nominees?",
    "question_th": "รอบไหนที่พื้นโดมเทลสตราและฌอน เบอร์กอยน์เป็นผู้ได้รับการเสนอชื่อเข้าชิง",
    "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_en": "What has the lowest number of wins with GA smaller than 39, more than 2 losses, and ties greater than 0?",
    "question_th": "จำนวนการชนะต่ำสุดโดยที่ GA น้อยกว่า 39 แพ้มากกว่า 2 ครั้ง และเสมอกันมากกว่า 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_en": "Which team has the most ties with fewer than 4 losses and GA smaller than 20?",
    "question_th": "ทีมใดมีความสัมพันธ์มากที่สุดโดยแพ้น้อยกว่า 4 ครั้งและ GA น้อยกว่า 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_en": "How many games did the team lose that played 7 games and has a GA of less than 27?",
    "question_th": "ทีมแพ้กี่เกมโดยเล่น 7 เกมและมี GA น้อยกว่า 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_en": "what date saw the chicago bears lose in green bay earlier than 1931?",
    "question_th": "วันที่เท่าไหร่ที่หมีชิคาโกแพ้ในกรีนเบย์ก่อนปี 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_en": "What is the Away team score for Away team Melbourne?",
    "question_th": "คะแนนทีมเยือนของทีมเยือนเมลเบิร์นคือเท่าไร?",
    "context": "CREATE TABLE table_name_89 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT years FROM table_name_35 WHERE displacement = \"4.0l (242cid)\"",
    "question_en": "what is the years for the displacement 4.0l (242cid)?",
    "question_th": "ความจุกระจัด 4.0l (242cid) คือกี่ปี?",
    "context": "CREATE TABLE table_name_35 (years VARCHAR, displacement VARCHAR)"
  },
  {
    "answer": "SELECT engine FROM table_name_67 WHERE torque = \"lb·ft (n·m)\"",
    "question_en": "Which engine has a torgue of lb·ft (n·m)?",
    "question_th": "เครื่องยนต์ใดมีแรงบิด lb·ft (n·m)",
    "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_en": "How many years for the team with under 31 ties and a percentage of 0.5451?",
    "question_th": "ทีมอายุต่ำกว่า 31 ปี เสมอกันกี่ปี เปอร์เซ็นต์ 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_en": "How many games tied for the air force with over 57 years participating?",
    "question_th": "กี่เกมเสมอกับกองทัพอากาศที่เข้าร่วมกว่า 57 ปี?",
    "context": "CREATE TABLE table_name_69 (tied VARCHAR, mountain_west VARCHAR, years VARCHAR)"
  },
  {
    "answer": "SELECT description FROM table_name_58 WHERE date = 1911",
    "question_en": "What is the description where the date is 1911?",
    "question_th": "คำอธิบายวันที่คือปี 1911 คืออะไร?",
    "context": "CREATE TABLE table_name_58 (description VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT number_ & _name FROM table_name_37 WHERE date < 1905",
    "question_en": "What is the number and name where the date is earlier than 1905?",
    "question_th": "เบอร์อะไรและชื่ออะไรครับซึ่งเกิดก่อนปี 2448 ครับ?",
    "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_en": "What year was the name mount roskill grammar school?",
    "question_th": "โรงเรียนมัธยม Mount Roskill ชื่อปีอะไร",
    "context": "CREATE TABLE table_name_35 (years VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_41 WHERE home_team = \"melbourne\"",
    "question_en": "When melbourne played as the home team, who did they play?",
    "question_th": "เมื่อเมลเบิร์นเล่นเป็นเจ้าบ้านเคยเล่นกับใคร?",
    "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_en": "When the home team was geelong, who played as the away team?",
    "question_th": "เมื่อเจ้าบ้านเป็นจีลองใครเล่นเป็นทีมเยือน?",
    "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_en": "If north melbourne played as the home team, who was the away team they played?",
    "question_th": "ถ้านอร์ธ เมลเบิร์น เล่นเป็นเจ้าบ้าน แล้วทีมเยือนที่พวกเขาเล่นคือใคร?",
    "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_en": "When st kilda was playing at home what was the away teams score?",
    "question_th": "ตอนที่เซนต์คิลดาเล่นในบ้านทีมเยือนได้คะแนนเท่าไหร่?",
    "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_en": "What is the production code of the episode before season 8, with a series number less than 31, and aired on September 21, 1995?",
    "question_th": "รหัสการผลิตของตอนก่อนซีซั่น 8 ซึ่งมีจำนวนซีรีส์น้อยกว่า 31 ออกอากาศวันที่ 21 กันยายน พ.ศ. 2538 คืออะไร",
    "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_en": "What is the smallest amount of spectators when the away team was Hawthorn?",
    "question_th": "ผู้ชมน้อยที่สุดเมื่อทีมเยือนคือฮอว์ธอร์นคือเท่าไร?",
    "context": "CREATE TABLE table_name_93 (crowd INTEGER, away_team VARCHAR)"
  },
  {
    "answer": "SELECT SUM(crowd) FROM table_name_54 WHERE away_team = \"richmond\"",
    "question_en": "How many people attended when the away team was Richmond?",
    "question_th": "มีคนเข้าร่วมกี่คนเมื่อทีมเยือนคือริชมอนด์?",
    "context": "CREATE TABLE table_name_54 (crowd INTEGER, away_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_11 WHERE decision = \"toivonen\" AND record = \"18–14–4\"",
    "question_en": "What was the score when the record was 18–14–4 with a toivonen decision?",
    "question_th": "คะแนนเมื่อบันทึกคือ 18–14–4 ด้วยการตัดสินของ toivonen คืออะไร?",
    "context": "CREATE TABLE table_name_11 (score VARCHAR, decision VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT SUM(attendance) FROM table_name_23 WHERE home = \"calgary\"",
    "question_en": "What's the sum of the attendance for the calgary home team?",
    "question_th": "จำนวนการเข้าร่วมของทีมเหย้าคาลการีเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_23 (attendance INTEGER, home VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_98 WHERE visitor = \"chicago\"",
    "question_en": "What was the record when chicago was the visiting team?",
    "question_th": "ชิคาโก้เป็นทีมเยือนมีสถิติอะไรบ้าง?",
    "context": "CREATE TABLE table_name_98 (record VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_10 WHERE series = \"0–1\"",
    "question_en": "What was the date of the game when the record of the series was 0–1?",
    "question_th": "วันที่ของเกมคือเมื่อใดที่สถิติของซีรีส์คือ 0–1",
    "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_en": "What is the score for the away team when South Melbourne was the home team?",
    "question_th": "ทีมเยือนเมื่อเซาธ์ เมลเบิร์นเป็นเจ้าบ้านได้สกอร์เท่าไหร่?",
    "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_en": "What was the score of the 2001 game held at Network Associates Coliseum?",
    "question_th": "คะแนนของเกมปี 2001 ที่จัดขึ้นที่ 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_en": "What region has giuseppe sivori as a home venue?",
    "question_th": "ภูมิภาคใดที่มี giuseppe sivori เป็นสถานที่จัดงาน?",
    "context": "CREATE TABLE table_name_52 (region VARCHAR, home_venue VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_67 WHERE short_name = \"pontisola\"",
    "question_en": "What city has the nickname of pontisola?",
    "question_th": "เมืองใดมีชื่อเล่นว่าปอนติโซลา?",
    "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_en": "What squad plays at comunale in darfo boario terme?",
    "question_th": "นักเตะทีมไหนเล่นที่ โกมูนาเล อิน ดาร์โฟ โบอาริโอ แตร์เม?",
    "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_en": "What pick was Scott Glennie from the Western hockey league",
    "question_th": "คนที่เลือกคือ Scott Glennie จากลีกฮอกกี้ตะวันตก",
    "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_en": "What player from the United States played in the western collegiate hockey association?",
    "question_th": "ผู้เล่นคนใดจากสหรัฐอเมริกาที่เล่นในสมาคมฮอกกี้วิทยาลัยตะวันตก?",
    "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_en": "Where the time/retired is +1 lap, the constructor is BRM, and the grid is above 1, what's the highest laps recorded?",
    "question_th": "โดยที่เวลา/เลิกใช้คือ +1 รอบ ตัวสร้างคือ BRM และกริดอยู่เหนือ 1 รอบสูงสุดที่บันทึกไว้คือเท่าใด",
    "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_en": "When the laps driven were under 9 and the time/retired recorded was engine, what's the total number of grid values?",
    "question_th": "เมื่อรอบที่ขับต่ำกว่า 9 และเวลา/เลิกใช้ที่บันทึกไว้คือเครื่องยนต์ จำนวนค่ากริดทั้งหมดคือเท่าใด",
    "context": "CREATE TABLE table_name_69 (grid VARCHAR, laps VARCHAR, time_retired VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_59 WHERE grid = 3",
    "question_en": "Which driver has a grid of 3?",
    "question_th": "ไดรเวอร์ใดมีตาราง 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_en": "When the laps are 31 and the constructor was honda, what's the sum of all grid values?",
    "question_th": "เมื่อรอบเป็น 31 และคอนสตรัคเตอร์คือฮอนด้า ผลรวมของค่ากริดทั้งหมดเป็นเท่าใด",
    "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_en": "What is the chassis for all rounds on the entrant Benson and Hedges Jordan driven by Damon Hill?",
    "question_th": "แชสซีสำหรับทุกรอบของ Benson และ Hedges Jordan ที่ขับโดย 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_en": "What is the constructor of driver Alexander Wurz?",
    "question_th": "คอนสตรัคเตอร์ของไดรเวอร์ 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_en": "Who was the driver that had all rounds and a f399 chassis?",
    "question_th": "ใครคือคนขับที่มีรอบด้านและแชสซี f399?",
    "context": "CREATE TABLE table_name_53 (driver VARCHAR, rounds VARCHAR, chassis VARCHAR)"
  },
  {
    "answer": "SELECT rounds FROM table_name_33 WHERE engine_† = \"ferrari 048\"",
    "question_en": "What were the rounds on the Engine † of the Ferrari 048?",
    "question_th": "เครื่องยนต์ † ของ Ferrari 048 มีรอบวิ่งกี่รอบ?",
    "context": "CREATE TABLE table_name_33 (rounds VARCHAR, engine_† VARCHAR)"
  },
  {
    "answer": "SELECT semifinal FROM table_name_47 WHERE event = \"team\"",
    "question_en": "Which Semifinal has an Event of team?",
    "question_th": "รอบรองชนะเลิศใดมีกิจกรรมของทีม?",
    "context": "CREATE TABLE table_name_47 (semifinal VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT quarterfinal FROM table_name_28 WHERE rank > 9",
    "question_en": "Which Quarterfinal has a Rank larger than 9?",
    "question_th": "รอบก่อนรองชนะเลิศใดมีอันดับมากกว่า 9?",
    "context": "CREATE TABLE table_name_28 (quarterfinal VARCHAR, rank INTEGER)"
  },
  {
    "answer": "SELECT COUNT(pick__number) FROM table_name_46 WHERE position = \"db\"",
    "question_en": "What is the pick number of the DB?",
    "question_th": "หมายเลขการเลือกของ 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_en": "What college did the T who was pick after 13 go to?",
    "question_th": "T ที่ถูกเลือกหลังจาก 13 โมงเข้าเรียนที่วิทยาลัยใด",
    "context": "CREATE TABLE t (Id VARCHAR)"
  },
  {
    "answer": "SELECT cfl_team FROM table_name_5 WHERE college = \"boston college\"",
    "question_en": "Which CFL team drafted a pick from Boston College?",
    "question_th": "ทีม CFL ใดร่างตัวเลือกจากวิทยาลัยบอสตัน",
    "context": "CREATE TABLE table_name_5 (cfl_team VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_51 WHERE college = \"saskatchewan\"",
    "question_en": "What position did the Saskatchewan player get drafted as?",
    "question_th": "ผู้เล่นชาวซัสแคตเชวันถูกเกณฑ์ทหารในตำแหน่งใด",
    "context": "CREATE TABLE table_name_51 (position VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT AVG(grid) FROM table_name_32 WHERE laps > 53",
    "question_en": "When the laps are over 53, what's the average grid?",
    "question_th": "เมื่อรอบเกิน 53 แล้วกริดเฉลี่ยอยู่ที่เท่าไร?",
    "context": "CREATE TABLE table_name_32 (grid INTEGER, laps INTEGER)"
  },
  {
    "answer": "SELECT AVG(laps) FROM table_name_75 WHERE driver = \"david coulthard\"",
    "question_en": "What's the average laps driven by david coulthard?",
    "question_th": "รอบเฉลี่ยที่ขับโดย 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_en": "who is the opponent in the final when the year is before 1883?",
    "question_th": "คู่ต่อสู้ในรอบชิงชนะเลิศเมื่อปีก่อน พ.ศ. 2426 คือใคร?",
    "context": "CREATE TABLE table_name_8 (opponent_in_the_final VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT outcome FROM table_name_4 WHERE year = 1887",
    "question_en": "what is the outcome for the 1887?",
    "question_th": "ผลลัพธ์ของปี 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_en": "what is the outcome when the opponent in the final is william renshaw after year 1882?",
    "question_th": "ผลลัพธ์จะเป็นอย่างไรเมื่อคู่ต่อสู้ในรอบชิงชนะเลิศคือวิลเลียม เรนชอว์ หลังปี 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_en": "what is the score when the outcome is runner-up, the opponent in the final is herbert lawford and the year is after 1882?",
    "question_th": "เมื่อผลการแข่งขันเป็นรองแชมป์ คู่ต่อสู้ในรอบชิงชนะเลิศคือ เฮอร์เบิร์ต ลอว์ฟอร์ด และปีหลังปี 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_en": "What artist has a mintage of greater than 34,135?",
    "question_th": "ศิลปินคนใดที่มีจำนวนเหรียญกษาปณ์มากกว่า 34,135 เหรียญ?",
    "context": "CREATE TABLE table_name_29 (artist VARCHAR, mintage INTEGER)"
  },
  {
    "answer": "SELECT artist FROM table_name_71 WHERE year = 2005",
    "question_en": "What artist was released in 2005?",
    "question_th": "ศิลปินคนไหนที่เปิดตัวในปี 2548?",
    "context": "CREATE TABLE table_name_71 (artist VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT AVG(year) FROM table_name_35 WHERE team = \"melbourne\"",
    "question_en": "What's melbourne's average year?",
    "question_th": "ปีเฉลี่ยของเมลเบิร์นคือเท่าไร?",
    "context": "CREATE TABLE table_name_35 (year INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_71 WHERE player = \"ashley sampi\"",
    "question_en": "Who was ashley sampi's opponent?",
    "question_th": "คู่ต่อสู้ของแอชลีย์ แซมปีคือใคร?",
    "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_en": "Which team did daniel bradshaw play for after 1935?",
    "question_th": "แดเนียล แบรดชอว์เล่นให้ทีมใดหลังปี 1935",
    "context": "CREATE TABLE table_name_59 (team VARCHAR, year VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_25 WHERE year = 1992",
    "question_en": "Who played in 1992?",
    "question_th": "ใครเล่นในปี 1992?",
    "context": "CREATE TABLE table_name_25 (player VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_65 WHERE away_team = \"fitzroy\"",
    "question_en": "What date was fitzroy the away team?",
    "question_th": "ฟิตซ์รอยออกทีมเยือนวันไหน?",
    "context": "CREATE TABLE table_name_65 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_13 WHERE partner = \"carlos berlocq\"",
    "question_en": "Name the surface when the partner is carlos berlocq",
    "question_th": "ตั้งชื่อพื้นผิวเมื่อคู่หูคือ 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–6, 0–6\"",
    "question_en": "Name the date for clay surface and score of 0–6, 0–6",
    "question_th": "ตั้งชื่อวันที่พื้นผิวดินเหนียวและคะแนน 0–6, 0–6",
    "context": "CREATE TABLE table_name_75 (date VARCHAR, surface VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT partner FROM table_name_80 WHERE score = \"6–3, 6–2\"",
    "question_en": "Name the partner with score of 6–3, 6–2",
    "question_th": "ตั้งชื่อคู่ที่มีคะแนน 6–3, 6–2",
    "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–3, 6–2\"",
    "question_en": "Name the tournament for clay surface and outcome is winner with score is 6–3, 6–2",
    "question_th": "ตั้งชื่อทัวร์นาเมนต์สำหรับพื้นผิวดินเหนียวและผลลัพธ์เป็นผู้ชนะด้วยคะแนน 6–3, 6–2",
    "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_en": "Name the outcome on 6 october 2013",
    "question_th": "ประกาศผลวันที่ 6 ตุลาคม 2556",
    "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_en": "What is the song with more than 9 points and 44 (11) jury (points)?",
    "question_th": "เพลงอะไรที่มีมากกว่า 9 คะแนนและคณะลูกขุน 44 (11) คะแนน (คะแนน) คืออะไร?",
    "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_en": "Who is the artist with 2153 (5) televotes (points)?",
    "question_th": "ศิลปินที่มี 2153 (5) โทรทัศน์ (คะแนน) คือใคร?",
    "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écy\"",
    "question_en": "What is the lowest total points Karine Trécy has with less than 4 draws?",
    "question_th": "คารีน เทรซีมีแต้มรวมต่ำสุดโดยเสมอน้อยกว่า 4 นัดคือเท่าไหร่?",
    "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écy\" AND place < 12",
    "question_en": "What is the lowest total points Karine Trécy has with a less than 12 place?",
    "question_th": "Karine Trécy มีคะแนนรวมต่ำสุดเท่าไรโดยได้อันดับไม่ถึง 12?",
    "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_en": "What is the average rating of viewers 18 to 49 where the total viewer count is 3.93 million and share less than 4?",
    "question_th": "เรตติ้งเฉลี่ยของผู้ชมอายุ 18 ถึง 49 ปี โดยมีจำนวนผู้ชมทั้งหมด 3.93 ล้านคนและแชร์น้อยกว่า 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_en": "What is the total number of ratings among the 18 to 49 group that was aired on January 7, 2009?",
    "question_th": "เรตติ้งรวมของกลุ่ม 18 ถึง 49 ที่ออกอากาศเมื่อวันที่ 7 มกราคม พ.ศ. 2552 เป็นเท่าใด",
    "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_en": "What was Mike Hailwood's highest laps when he had a grid more than 7?",
    "question_th": "รอบสูงสุดของ Mike Hailwood คืออะไรเมื่อเขามีกริดมากกว่า 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_en": "What is the name of the site with a CERCLIS ID of prd980512362?",
    "question_th": "ชื่อของไซต์ที่มี CERCLIS ID เป็น prd980512362 คืออะไร",
    "context": "CREATE TABLE table_name_77 (name VARCHAR, cerclis_id VARCHAR)"
  },
  {
    "answer": "SELECT listed FROM table_name_22 WHERE municipality = \"florida\"",
    "question_en": "What is the site for Florida?",
    "question_th": "เว็บไซต์สำหรับฟลอริดาคืออะไร?",
    "context": "CREATE TABLE table_name_22 (listed VARCHAR, municipality VARCHAR)"
  },
  {
    "answer": "SELECT deleted FROM table_name_8 WHERE name = \"rca del caribe\"",
    "question_en": "What site in the RCA Del Caribe was deleted?",
    "question_th": "ไซต์ใดใน RCA Del Caribe ที่ถูกลบ?",
    "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_en": "Where is the partially deleted site of fibers public supply wells located?",
    "question_th": "ที่ตั้งของบ่อจ่ายไฟเบอร์สาธารณะที่ถูกลบบางส่วนอยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_65 (partially_deleted VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT municipality FROM table_name_35 WHERE proposed = \"03/08/2004\"",
    "question_en": "The proposed 03/08/2004 site is in what municipality?",
    "question_th": "เว็บไซต์ที่เสนอเมื่อวันที่ 03/08/2004 อยู่ในเขตเทศบาลใด",
    "context": "CREATE TABLE table_name_35 (municipality VARCHAR, proposed VARCHAR)"
  },
  {
    "answer": "SELECT release_format FROM table_name_55 WHERE release_date > 1983",
    "question_en": "What is the release format for titles after 1983?",
    "question_th": "รูปแบบการวางจำหน่ายสำหรับผลงานหลังปี 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_en": "What venue is the home of the Carlton team?",
    "question_th": "สนามเหย้าของทีมคาร์ลตันคือสนามใด?",
    "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_en": "Which driver had a grid of 18 with 68 laps?",
    "question_th": "นักแข่งคนไหนมีตาราง 18 กับ 68 รอบ?",
    "context": "CREATE TABLE table_name_88 (driver VARCHAR, laps VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_58 WHERE grid = \"18\"",
    "question_en": "Which driver had a grid of 18?",
    "question_th": "คนขับคนไหนมีตาราง 18?",
    "context": "CREATE TABLE table_name_58 (driver VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_43 WHERE grid = \"22\"",
    "question_en": "Which driver had a grid of 22?",
    "question_th": "คนขับคนไหนมีตาราง 22?",
    "context": "CREATE TABLE table_name_43 (driver VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_41 WHERE wicket_partnership = \"2nd\"",
    "question_en": "Which season is the wicket 2nd partnership in?",
    "question_th": "ประตูคู่ที่ 2 อยู่ในฤดูกาลใด",
    "context": "CREATE TABLE table_name_41 (season VARCHAR, wicket_partnership VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_4 WHERE opponents = \"v kent\"",
    "question_en": "Where did v kent play?",
    "question_th": "วี เคนท์เล่นที่ไหน?",
    "context": "CREATE TABLE table_name_4 (venue VARCHAR, opponents VARCHAR)"
  },
  {
    "answer": "SELECT runs FROM table_name_28 WHERE batsmen = \"james bryant graeme welch\"",
    "question_en": "Which runs had james bryant graeme welch as Batsmen?",
    "question_th": "เจมส์ ไบรอันท์ แกรม เวลช์ เป็นคนตีคนไหน?",
    "context": "CREATE TABLE table_name_28 (runs VARCHAR, batsmen VARCHAR)"
  },
  {
    "answer": "SELECT clay FROM table_name_36 WHERE record = \"2–0\" AND hard = \"1–0\"",
    "question_en": "Which clay has a Record of 2–0, and a Hard 1–0?",
    "question_th": "ดินเหนียวใดมีสถิติ 2–0 และฮาร์ด 1–0",
    "context": "CREATE TABLE table_name_36 (clay VARCHAR, record VARCHAR, hard VARCHAR)"
  },
  {
    "answer": "SELECT hard FROM table_name_10 WHERE clay = \"0–0\" AND grass = \"0–0\" AND carpet = \"0–0\" AND record = \"1–0\"",
    "question_en": "Which hard has a Clay of 0–0, Grass of 0–0,  Carpet of 0–0, and a Record of 1–0?",
    "question_th": "ฮาร์ดใดที่มีดินเหนียว 0–0 หญ้า 0–0 พรม 0–0 และบันทึก 1–0",
    "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–0\" AND hard = \"1–1\"",
    "question_en": "Which carpet has a Clay of 1–0 and a Hard 1–1?",
    "question_th": "พรมใดมีดินเหนียว 1–0 และฮาร์ด 1–1",
    "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_en": "Name the most rank for population more than 93,378",
    "question_th": "ตั้งชื่ออันดับสูงสุดสำหรับประชากรมากกว่า 93,378 คน",
    "context": "CREATE TABLE table_name_5 (rank INTEGER, population INTEGER)"
  },
  {
    "answer": "SELECT award FROM table_name_18 WHERE year = 1992",
    "question_en": "What award is featured in 1992?",
    "question_th": "ได้รับรางวัลอะไรในปี 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_en": "What award was won in the best sound category for the exorcist before 1998?",
    "question_th": "รางวัลใดที่ได้รับรางวัลในประเภทเสียงที่ดีที่สุดสำหรับหมอผีก่อนปี 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_en": "What was the candidate that got 1,019 votes for staten island?",
    "question_th": "ผู้สมัครที่ได้รับคะแนนเสียง 1,019 เสียงสำหรับ 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_en": "What was the opposing team for the game on August 29?",
    "question_th": "ฝ่ายตรงข้ามในเกมวันที่ 29 สิงหาคมคือทีมใด?",
    "context": "CREATE TABLE table_name_28 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_68 WHERE tries = \"11\"",
    "question_en": "which player has 11 tries?",
    "question_th": "ผู้เล่นคนไหนลองได้ 11 ครั้ง?",
    "context": "CREATE TABLE table_name_68 (player VARCHAR, tries VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_45 WHERE conv = \"14\"",
    "question_en": "which player has a conv of 14?",
    "question_th": "ผู้เล่นคนไหนมี Conv เท่ากับ 14?",
    "context": "CREATE TABLE table_name_45 (player VARCHAR, conv VARCHAR)"
  },
  {
    "answer": "SELECT conv FROM table_name_19 WHERE span = \"1992-2000\"",
    "question_en": "on the span of 1992-2000, what was the conv ?",
    "question_th": "ในช่วงปี 2535-2543 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_en": "What is the high point toal for martine foubert placing below 2?",
    "question_th": "อะไรคือจุดสูงสุดสำหรับมาร์ติน ฟูแบร์ที่วางต่ำกว่า 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_en": "How much did the away team Melbourne score?",
    "question_th": "ทีมเยือนเมลเบิร์นทำสกอร์ได้เท่าไหร่?",
    "context": "CREATE TABLE table_name_64 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(crowd) FROM table_name_5 WHERE home_team = \"richmond\"",
    "question_en": "What is the highest crowd number for the home team Richmond?",
    "question_th": "จำนวนฝูงชนสูงสุดของเจ้าบ้าน ริชมอนด์ คืออะไร?",
    "context": "CREATE TABLE table_name_5 (crowd INTEGER, home_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_76 WHERE venue = \"glenferrie oval\"",
    "question_en": "What home team played at Glenferrie Oval?",
    "question_th": "ทีมเหย้าทีมใดเล่นที่ 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_en": "How much did the away team St Kilda score?",
    "question_th": "ทีมเยือน เซนต์คิลดา ยิงได้เท่าไหร่?",
    "context": "CREATE TABLE table_name_51 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT crowd FROM table_name_28 WHERE away_team = \"st kilda\"",
    "question_en": "Which Crowd has an Away team of st kilda?",
    "question_th": "Crowd คนไหนมีทีมเยือน St Kilda?",
    "context": "CREATE TABLE table_name_28 (crowd VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT stadium FROM table_name_8 WHERE final_score = \"26–21\"",
    "question_en": "What stadium has a final score of 26–21?",
    "question_th": "สนามใดมีคะแนนสุดท้าย 26–21?",
    "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_en": "When the new orleans saints were visiting texas stadium, what was the final score?",
    "question_th": "ตอนที่นักบุญนิวออร์ลีนส์มาเยือนเท็กซัสสเตเดียม คะแนนสุดท้ายเป็นเท่าใด",
    "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_en": "What was the final score at texas stadium on September 17?",
    "question_th": "สกอร์สุดท้ายที่เท็กซัส สเตเดี้ยม เมื่อวันที่ 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_en": "What was the final score for the game at giants stadium when the indianapolis colts were the visiting team?",
    "question_th": "คะแนนสุดท้ายของเกมที่ไจแอนต์ส สเตเดี้ยม เมื่ออินเดียนาโพลิส โคลท์เป็นทีมเยือนคือเท่าไร?",
    "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_en": "What were the investment earnings in the year that State and Federal taxes were $8,549,565?",
    "question_th": "รายได้จากการลงทุนในปีที่ภาษีของรัฐและรัฐบาลกลางอยู่ที่ 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_en": "What were the investment earnings in the year that State and Federal taxes were $13,999,169?",
    "question_th": "รายได้จากการลงทุนในปีที่ภาษีของรัฐและรัฐบาลกลางอยู่ที่ 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_en": "What were the investment earnings in a year when other local sources were $2,670,060 after 2001?",
    "question_th": "รายได้จากการลงทุนในปีที่แหล่งข้อมูลในท้องถิ่นอื่นๆ มีมูลค่า 2,670,060 ดอลลาร์หลังปี 2544 เป็นเท่าใด",
    "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_en": "What were the investment earnings in a year when total revenue was $21,779,618?",
    "question_th": "รายได้จากการลงทุนในปีที่รายรับรวมอยู่ที่ 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_en": "What were property taxes in a year when total revenue was $40,891,700 after 2002?",
    "question_th": "ภาษีทรัพย์สินเป็นเท่าใดในหนึ่งปีที่รายได้รวมอยู่ที่ 40,891,700 ดอลลาร์หลังปี 2545",
    "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_en": "What rank for season 1?",
    "question_th": "ฤดูกาลที่ 1 อยู่อันดับไหน?",
    "context": "CREATE TABLE table_name_28 (rank VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_66 WHERE attendance = \"27,262\"",
    "question_en": "What week had an attendance of 27,262?",
    "question_th": "สัปดาห์ใดมีผู้เข้าร่วม 27,262 คน?",
    "context": "CREATE TABLE table_name_66 (week VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_7 WHERE attendance = \"20,456\"",
    "question_en": "What opponent has an attendance of 20,456?",
    "question_th": "คู่ต่อสู้คนไหนมีผู้ชม 20,456 คน?",
    "context": "CREATE TABLE table_name_7 (opponent VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_40 WHERE date = \"march 27\"",
    "question_en": "What was the record on March 27?",
    "question_th": "บันทึกเมื่อวันที่ 27 มีนาคมคืออะไร?",
    "context": "CREATE TABLE table_name_40 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_68 WHERE date = \"march 22\"",
    "question_en": "What was the record on March 22?",
    "question_th": "บันทึกเมื่อวันที่ 22 มีนาคมคืออะไร?",
    "context": "CREATE TABLE table_name_68 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_44 WHERE date = \"april 1\"",
    "question_en": "What was the record on April 1?",
    "question_th": "บันทึกเมื่อวันที่ 1 เมษายนคืออะไร?",
    "context": "CREATE TABLE table_name_44 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MIN(crowd) FROM table_name_65 WHERE away_team = \"carlton\"",
    "question_en": "What was the lowest crowd size when Carlton was the away team.",
    "question_th": "คือจำนวนผู้ชมที่น้อยที่สุดเมื่อคาร์ลตันเป็นทีมเยือน",
    "context": "CREATE TABLE table_name_65 (crowd INTEGER, away_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_5 WHERE away_team = \"footscray\"",
    "question_en": "Who played as the home team when Footscray was the away team?",
    "question_th": "ใครเล่นเป็นทีมเหย้า เมื่อฟุตสเครย์เป็นทีมเยือน?",
    "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_en": "What size was the crowd when Hawthorn was the home team?",
    "question_th": "เมื่อฮอว์ธอร์นเป็นเจ้าบ้าน ฝูงชนขนาดไหน?",
    "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_en": "What is the lowest number of Gold the Nation of Italy had when it ranked other than 1, and had more than 0 Silver?",
    "question_th": "อะไรคือจำนวนเหรียญทองที่ต่ำที่สุดที่ประเทศอิตาลีมีเมื่ออยู่ในอันดับที่นอกเหนือจาก 1 และมีเงินมากกว่า 0 เหรียญเงิน?",
    "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_en": "How many Golds did the country with a Rank better than 5 and more Bronze than 1 receive?",
    "question_th": "ประเทศที่มีอันดับดีกว่า 5 และทองแดงมากกว่า 1 จะได้รับกี่เหรียญทอง?",
    "context": "CREATE TABLE table_name_76 (gold INTEGER, rank VARCHAR, bronze VARCHAR)"
  },
  {
    "answer": "SELECT MIN(bronze) FROM table_name_27 WHERE total < 1",
    "question_en": "When the Total is less than 1, how many Bronze medals are won?",
    "question_th": "เมื่อผลรวมน้อยกว่า 1 จะได้รับเหรียญทองแดงกี่เหรียญ?",
    "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_en": "When the Total is less than 1, and Bronze is 0, how many Gold medals are there?",
    "question_th": "เมื่อผลรวมน้อยกว่า 1 และทองแดงเป็น 0 จะมีเหรียญทองทั้งหมดกี่เหรียญ?",
    "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_en": "What is the Rank of the Nation of Germany when the Total is more than 2?",
    "question_th": "อันดับของชาติเยอรมนีเมื่อผลรวมมากกว่า 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_en": "Which weightlifter with a snatch larger than 117.5 had the lowest bodyweight?",
    "question_th": "นักยกน้ำหนักคนไหนที่มีน้ำหนักตัวมากกว่า 117.5 มีน้ำหนักตัวต่ำที่สุด?",
    "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_en": "Which weightlifter, who had a bodyweight of less than 136.16 and a clean and jerk larger than 135, had the highest Total?",
    "question_th": "นักยกน้ำหนักคนไหนที่มีน้ำหนักตัวน้อยกว่า 136.16 และตัวสะอาดและกระตุกมากกว่า 135 มีคะแนนรวมสูงสุด?",
    "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_en": "Of weightlifters who weighed more than 136.16, who had the highest Total?",
    "question_th": "ของนักยกน้ำหนักที่มีน้ำหนักมากกว่า 136.16 คน ใครมีคะแนนรวมสูงสุด?",
    "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_en": "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?",
    "question_th": "ค่าเฉลี่ยของความสะอาดและการกระตุกของนักยกน้ำหนักทุกคนที่มีน้ำหนักตัวน้อยกว่า 87.5 และช่วงฉกน้อยกว่า 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_en": "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?",
    "question_th": "ผลรวมของน้ำหนักที่นักยกน้ำหนักทุกคนจัดการและเหวี่ยงได้ ในบรรดานักยกน้ำหนักที่แย่งชิงมากกว่า 95 และยอดรวมมากกว่า 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_en": "What kilometer (Rizal Park-basis) has a kilometer of 25?",
    "question_th": "กิโลเมตร (ฐานอุทยานริซาล) มี 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_en": "Which Barangay has an exit of Sisiman toll barrier?",
    "question_th": "จังหวัดไหนมีทางออกจากด่านเก็บค่าผ่านทางซีสิมาน?",
    "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_en": "What kilometer (Layac-basis) has a Barangay of general lim (capot)?",
    "question_th": "กิโลเมตร (Layac-basis) มี 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_en": "In which municipality is Barangay Poblacion?",
    "question_th": "บารังไกย์ โปบลาซิออน อยู่ในเขตเทศบาลใด?",
    "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_en": "What is the exit at kilometer (Rizal Park-basis) 164?",
    "question_th": "ทางออกที่กิโลเมตรที่ 164 (Rizal Park-basis) คืออะไร?",
    "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_en": "What is the competition on 23 February 1929?",
    "question_th": "แข่งขันวันที่ 23 กุมภาพันธ์ พ.ศ. 2472 อะไรบ้าง?",
    "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_en": "What is the club/province of Sireli Bobo, who plays wing and has less than 24 caps?",
    "question_th": "สโมสร/จังหวัดของ Sireli Bobo ที่เล่นปีกและติดทีมชาติไม่ถึง 24 นัดคือสโมสรใด",
    "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_en": "What is the total number of Caps Aca Ratuva, a flanker, has?",
    "question_th": "แคปส์ อาคา ราตูวา กองหน้ามีทั้งหมดกี่ตัว?",
    "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_en": "What is the date of birth of Kameli Ratuvou?",
    "question_th": "วันเกิดของ 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_en": "What is the date of birth of Henry Qiodravu?",
    "question_th": "วันเกิดของ 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_en": "What is the lowest medal total with less than 3 gold medals?",
    "question_th": "เหรียญรวมต่ำสุดแต่ไม่ถึง 3 เหรียญทองคือเท่าไร?",
    "context": "CREATE TABLE table_name_89 (total INTEGER, gold INTEGER)"
  },
  {
    "answer": "SELECT MIN(laps) FROM table_name_32 WHERE start = \"21\"",
    "question_en": "What's the lowest amount of laps with a start of 21?",
    "question_th": "จำนวนรอบต่ำสุดเมื่อเริ่มต้นที่ 21 คือเท่าใด?",
    "context": "CREATE TABLE table_name_32 (laps INTEGER, start VARCHAR)"
  },
  {
    "answer": "SELECT start FROM table_name_20 WHERE qual = \"84.300\"",
    "question_en": "What was the start of the competitor with a qualifying time of 84.300?",
    "question_th": "ผู้แข่งขันด้วยเวลารอบคัดเลือก 84.300 เริ่มต้นด้วยอะไร?",
    "context": "CREATE TABLE table_name_20 (start VARCHAR, qual VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_38 WHERE laps > 200",
    "question_en": "In what year were there more laps than 200 in a race?",
    "question_th": "ในปีใดที่มีรอบการแข่งขันมากกว่า 200 รอบ?",
    "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_en": "what is the current version of the project64 with gpl v2 license?",
    "question_th": "project64 เวอร์ชันปัจจุบันพร้อมใบอนุญาต gpl v2 คืออะไร",
    "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_en": "what is the current version of the name mupen64plus with gpl v2 license?",
    "question_th": "ชื่อ mupen64plus เวอร์ชันปัจจุบันพร้อมใบอนุญาต gpl v2 คืออะไร",
    "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_en": "what is the current version with license gpl v3?",
    "question_th": "เวอร์ชันปัจจุบันที่มีลิขสิทธิ์ 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_en": "What leading man earlier than 1932 was directed by archie mayo?",
    "question_th": "ผู้นำคนใดก่อนปี 1932 ที่กำกับโดย 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_en": "What year was the role nan taylor, alias of nan ellis, aka mrs. andrews and directed by William keighley?",
    "question_th": "แนน เทย์เลอร์ รับบทแนน เอลลิส หรือที่รู้จักในชื่อ Mrs. แอนดรูว์ และกำกับโดย วิลเลียม ไคลีย์?",
    "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_en": "What is the latest year for the role of joan gordon, aka francine la rue?",
    "question_th": "ปีล่าสุดสำหรับบทบาทของโจน กอร์ดอน หรือที่รู้จักในชื่อ ฟรานซีน ลา รู คือปีใด?",
    "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_en": "What film has a leading man of adolphe menjou in 1939?",
    "question_th": "ภาพยนตร์เรื่องใดที่มีพระเอกของ Adolphe Menjou ในปี 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_en": "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?",
    "question_th": "ผู้กำกับภาพยนตร์เรื่องใดคือ วิลเลียม เอ. Wellman ภายหลังปี 1931 โดยมีผู้นำของ George Brent และบทบาทของ Joan Gordon หรือที่รู้จักในชื่อ 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_en": "What director directed the role of shelby barret wyatt in 1935?",
    "question_th": "ผู้กำกับคนไหนที่กำกับบทบาทของเชลบี บาร์เร็ต ไวแอตต์ในปี 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_en": "What is the weekly rank for a share of 9 and 9.42 million viewers?",
    "question_th": "อันดับรายสัปดาห์สำหรับส่วนแบ่งของผู้ชม 9 และ 9.42 ล้านคนคือเท่าไร?",
    "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_en": "What is the sum of all ratings at a weekly rank of 10 and a share less than 11?",
    "question_th": "ผลรวมของการให้คะแนนทั้งหมดในระดับรายสัปดาห์ที่ 10 และมีส่วนแบ่งน้อยกว่า 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_en": "What is the highest number of viewers for a rating greater than 9.4?",
    "question_th": "จำนวนผู้ชมสูงสุดสำหรับเรตติ้งที่มากกว่า 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_en": "Which athlete performed before 1984 in an 800 m event?",
    "question_th": "นักกีฬาคนใดที่ทำก่อนปี 1984 ในการแข่งขัน 800 ม.",
    "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_en": "What is the lowest number of points that Tevita Vaikona scored when making more than 23 tries?",
    "question_th": "คะแนนต่ำสุดที่ Tevita Vaikona ทำได้เมื่อพยายามมากกว่า 23 ครั้งคือเท่าใด",
    "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_en": "What is the average number of points scored by Joe Vagana when making fewer than 2 tries?",
    "question_th": "Joe Vagana ได้คะแนนเฉลี่ยเมื่อพยายามน้อยกว่า 2 ครั้งเป็นจำนวนเท่าใด",
    "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_en": "What is the competition that had a win result and a score of 3-1?",
    "question_th": "รายการไหนที่ผลการแข่งขันชนะด้วยสกอร์ 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_en": "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?",
    "question_th": "สนามใดของแมตช์ที่มีผลการแข่งขันชนะและสกอร์ 0-4 ในรอบแบ่งกลุ่มไทเกอร์คัพ 2002 คือสนามใด?",
    "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_en": "What is the score of the match on July 22, 2008?",
    "question_th": "ผลการแข่งขันวันที่ 22 กรกฎาคม 2551 เป็นอย่างไรบ้าง?",
    "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_en": "What is the score of the 2002 Tiger Cup third/fourth place match?",
    "question_th": "คะแนนของการแข่งขันไทเกอร์คัพอันดับสาม/สี่ปี 2002 เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_16 (score VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_37 WHERE date = \"october 15, 2008\"",
    "question_en": "What is the competition on October 15, 2008?",
    "question_th": "การแข่งขันวันที่ 15 ตุลาคม 2551 มีอะไรบ้าง?",
    "context": "CREATE TABLE table_name_37 (competition VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_61 WHERE school = \"st. benedict's prep\"",
    "question_en": "What is the player that went to st. benedict's prep?",
    "question_th": "ผู้เล่นที่ไปเซนต์คืออะไร การเตรียมตัวของเบเนดิกต์เหรอ?",
    "context": "CREATE TABLE table_name_61 (player VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT nba_draft FROM table_name_58 WHERE college = \"ohio state\"",
    "question_en": "What is the NBA draft for ohio state?",
    "question_th": "ร่าง NBA สำหรับรัฐโอไฮโอคืออะไร?",
    "context": "CREATE TABLE table_name_58 (nba_draft VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_69 WHERE height = \"6-6\"",
    "question_en": "What school did the player that is 6-6 go to?",
    "question_th": "ผู้เล่นอายุ 6-6 ขวบเรียนโรงเรียนไหน?",
    "context": "CREATE TABLE table_name_69 (school VARCHAR, height VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_28 WHERE player = \"samardo samuels\"",
    "question_en": "What school did samardo samuels go to?",
    "question_th": "ซามาร์โด ซามูเอลส์ เรียนอยู่โรงเรียนไหน?",
    "context": "CREATE TABLE table_name_28 (school VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT final FROM table_name_88 WHERE event = \"middleweight –75 kg\"",
    "question_en": "What is the final for middleweight –75 kg?",
    "question_th": "รอบชิงชนะเลิศ รุ่นมิดเดิ้ลเวท –75 กก. คืออะไร?",
    "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 –81 kg\"",
    "question_en": "For the light heavyweight –81 kg event that did not advance to semifinal, who was the athlete?",
    "question_th": "สำหรับรุ่นไลต์เฮฟวี่เวท –81 กก. ที่ไม่ผ่านเข้ารอบรองชนะเลิศ นักกีฬาคือใคร?",
    "context": "CREATE TABLE table_name_26 (athlete VARCHAR, semifinal VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT final FROM table_name_78 WHERE athlete = \"rouhollah hosseini\"",
    "question_en": "What was the final for rouhollah hosseini?",
    "question_th": "รอบชิงชนะเลิศของรูฮอลลาห์ ฮอสเซนี่เป็นอย่างไร?",
    "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_en": "When the round of 32 was n/a and quarterfinal was did not advance, what was the round of 16?",
    "question_th": "เมื่อรอบ 32 ทีมไม่มี และรอบก่อนรองชนะเลิศไม่ผ่านเข้ารอบ รอบ 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_en": "Can you tell me the Home team that has a Venue of Windy Hill?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าทีมเหย้าที่มีสถานที่ของ 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_en": "What was the lowest attendance at a game when Pittsburgh was the home team?",
    "question_th": "ผู้เข้าชมน้อยที่สุดในเกมเมื่อพิตส์เบิร์กเป็นเจ้าบ้านคืออะไร?",
    "context": "CREATE TABLE table_name_68 (attendance INTEGER, home VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_81 WHERE home = \"atlanta\"",
    "question_en": "What was the date of the game when Atlanta was the home team?",
    "question_th": "วันที่เกมคือวันที่แอตแลนต้าเป็นเจ้าบ้าน?",
    "context": "CREATE TABLE table_name_81 (date VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT decision FROM table_name_90 WHERE home = \"montreal\"",
    "question_en": "What was the decision of the game when Montreal was the home team?",
    "question_th": "การตัดสินใจของเกมเมื่อมอนทรีออลเป็นเจ้าบ้านเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_90 (decision VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_26 WHERE decision = \"niittymaki\" AND record = \"30–21–5\"",
    "question_en": "What was the date of the game with a decision of Niittymaki and when the Flyers had a record of 30–21–5?",
    "question_th": "วันที่ของเกมคือวันที่ Niittymaki ตัดสินและเมื่อใดที่ Flyers มีสถิติ 30–21–5?",
    "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_en": "Which Position has a Nationality of united states, and a Pick of 9?",
    "question_th": "ตำแหน่งใดมีสัญชาติสหรัฐอเมริกา และเลือกได้ 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_en": "What is the average Pick with a Position of pg, and a Round less than 1?",
    "question_th": "การเลือกเฉลี่ยที่มีตำแหน่ง pg และรอบที่น้อยกว่า 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_en": "Which top ten, having less than  12 cuts less than 2 top five, and events smaller than 14, is the highest?",
    "question_th": "สิบอันดับแรกที่มีการตัดน้อยกว่า 12 ครั้งน้อยกว่า 2 อันดับแรกและเหตุการณ์ที่เล็กกว่า 14 ครั้งคือสูงสุด",
    "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_en": "What is the average for the top five having a number of 42 cuts made.",
    "question_th": "ค่าเฉลี่ยสำหรับห้าอันดับแรกที่มีการตัดจำนวน 42 ครั้งคือเท่าใด",
    "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_en": "Tell me the score on april 27 with visitor of buffalo",
    "question_th": "บอกคะแนนวันที่ 27 เม.ย. กับแขกควาย",
    "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_en": "How many people attended Melbourne's away game?",
    "question_th": "มีผู้ชมเกมเยือนของเมลเบิร์นกี่คน?",
    "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_en": "Who won the game at Dairy farmers stadium with a score of 28-24?",
    "question_th": "เกมนี้ใครชนะที่สนามโคนมด้วยสกอร์ 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_en": "Who won that game on 24 July 2010?",
    "question_th": "ใครชนะเกมนั้นในวันที่ 24 กรกฎาคม พ.ศ. 2553?",
    "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_en": "Who loss the 24-28 game?",
    "question_th": "เกมที่ 24-28 ใครแพ้?",
    "context": "CREATE TABLE table_name_20 (opponent VARCHAR, result VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_69 WHERE score = \"18-19\"",
    "question_en": "Who scored 18-19?",
    "question_th": "ใครทำสกอร์ 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_en": "Which rank has more than 1 silver and a total nation?",
    "question_th": "อันดับไหนมีมากกว่า 1 เหรียญเงินและมีชาติรวม?",
    "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_en": "What is the lowest total from slovenia with a Gold smaller than 0?",
    "question_th": "ผลรวมต่ำสุดจากสโลวีเนียโดยทองน้อยกว่า 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_en": "What class has less than 12 numbers built operated by southern?",
    "question_th": "ชั้นเรียนใดมีหมายเลขน้อยกว่า 12 หมายเลขที่สร้างขึ้นโดยภาคใต้?",
    "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_en": "Name the episode for viewers bigger than 5.63 and the households rating is 4.5/7",
    "question_th": "ตั้งชื่อตอนสำหรับผู้ชมที่มีขนาดใหญ่กว่า 5.63 และเรตติ้งครัวเรือนคือ 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_en": "Name the 18-49 rating for weekly rank of 30",
    "question_th": "ตั้งชื่อเรตติ้ง 18-49 สำหรับอันดับ 30 รายสัปดาห์",
    "context": "CREATE TABLE table_name_1 (weekly_rank___number_ VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_39 WHERE laps = \"29\"",
    "question_en": "Who was the driver with 29 laps?",
    "question_th": "ใครคือคนขับที่มี 29 รอบ?",
    "context": "CREATE TABLE table_name_39 (driver VARCHAR, laps VARCHAR)"
  },
  {
    "answer": "SELECT time_retired FROM table_name_76 WHERE grid = \"18\"",
    "question_en": "What was the retired time for someone who was on grid 18?",
    "question_th": "คนที่อยู่บนกริด 18 เลิกงานกี่โมง?",
    "context": "CREATE TABLE table_name_76 (time_retired VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT grid FROM table_name_84 WHERE driver = \"jacques villeneuve\"",
    "question_en": "Jacques Villeneuve was on what grid?",
    "question_th": "Jacques Villeneuve อยู่ในตารางใด",
    "context": "CREATE TABLE table_name_84 (grid VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT time_retired FROM table_name_34 WHERE grid = \"9\"",
    "question_en": "What's the time for someone on grid 9?",
    "question_th": "คนในตารางที่ 9 กี่โมง?",
    "context": "CREATE TABLE table_name_34 (time_retired VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT grid FROM table_name_77 WHERE driver = \"alex yoong\"",
    "question_en": "What was the grid of Alex Yoong?",
    "question_th": "ตารางของ Alex Yoong คืออะไร?",
    "context": "CREATE TABLE table_name_77 (grid VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_80 WHERE venue = \"lake oval\"",
    "question_en": "What date was the game played at Lake Oval?",
    "question_th": "เกมนี้เล่นที่ 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_en": "How many people came to the game at Victoria Park?",
    "question_th": "มีคนมาเล่นเกมที่ Victoria Park กี่คน?",
    "context": "CREATE TABLE table_name_17 (crowd VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_26 WHERE loss = \"moyer (9–4)\"",
    "question_en": "Who lost to moyer (9–4)?",
    "question_th": "ใครแพ้มอยเออร์ (9–4)?",
    "context": "CREATE TABLE table_name_26 (opponent VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_38 WHERE record = \"47–63\"",
    "question_en": "How many people attended when the record was broken with 47–63?",
    "question_th": "มีกี่คนที่เข้าร่วมเมื่อทำลายสถิติด้วย 47–63",
    "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_en": "What is the score of the home team that played Collingwood?",
    "question_th": "เจ้าบ้านที่เล่นคอลลิงวูดมีสกอร์เท่าไหร่?",
    "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–21–4\"",
    "question_en": "Who was the visitor when ward recorded the decision with a record of 22–21–4?",
    "question_th": "ใครคือผู้มาเยือนเมื่อวอร์ดบันทึกการตัดสินด้วยบันทึก 22–21–4",
    "context": "CREATE TABLE table_name_4 (visitor VARCHAR, decision VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_77 WHERE record = \"22–19–4\"",
    "question_en": "What is the score of the game when they had a record of 22–19–4?",
    "question_th": "คะแนนของเกมเมื่อพวกเขามีสถิติ 22–19–4 คืออะไร?",
    "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_en": "What is the 1st week sales for the album finding forever before the number 6?",
    "question_th": "ยอดขายสัปดาห์แรกสำหรับอัลบั้มที่ค้นหาตลอดกาลก่อนอันดับ 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_en": "What is the sum number of grid where time/retired is 2:41:38.4 and laps were more than 40?",
    "question_th": "จำนวนรวมของกริดโดยที่เวลา/เกษียณคือ 2:41:38.4 และรอบมากกว่า 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_en": "Which constructor had laps amounting to more than 21 where the driver was John Surtees?",
    "question_th": "คอนสตรัคเตอร์คนไหนมีรอบมากกว่า 21 รอบโดยที่คนขับคือ 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_en": "How many laps did Jo Bonnier driver when the grid number was smaller than 11?",
    "question_th": "Jo Bonnier ขับไปกี่รอบเมื่อหมายเลขกริดน้อยกว่า 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_en": "How many laps were there when time/retired was gearbox?",
    "question_th": "มีกี่รอบเมื่อกระปุกเกียร์หมดเวลา/เกษียณ?",
    "context": "CREATE TABLE table_name_53 (laps INTEGER, time_retired VARCHAR)"
  },
  {
    "answer": "SELECT SUM(attendance) FROM table_name_67 WHERE visitor = \"jazz\"",
    "question_en": "How many were in attendance at the game where the visiting team was the Jazz?",
    "question_th": "มีกี่คนที่เข้าร่วมในเกมที่ทีมเยือนคือแจ๊ซ?",
    "context": "CREATE TABLE table_name_67 (attendance INTEGER, visitor VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_82 WHERE attendance = \"34,063\"",
    "question_en": "Who did the Chiefs play at the game attended by 34,063?",
    "question_th": "หัวหน้าใครเล่นเกมที่มีผู้เข้าร่วม 34,063 คน?",
    "context": "CREATE TABLE table_name_82 (opponent VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_48 WHERE attendance = \"33,057\"",
    "question_en": "Which week's game was attended by 33,057 people?",
    "question_th": "เกมประจำสัปดาห์ใดที่มีผู้เข้าร่วม 33,057 คน?",
    "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_en": "what is the organisation when the year is less than 2005 and the award is the best variety show host?",
    "question_th": "องค์กรไหนเมื่อไม่ถึงปี 2548 และรางวัลพิธีกรวาไรตี้โชว์ยอดเยี่ยม?",
    "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_en": "what is the organisation when the nominated work title is n/a in the year 2005?",
    "question_th": "องค์กรอะไรเมื่อไม่มีชื่อผลงานที่ได้รับการเสนอชื่อในปี พ.ศ. 2548?",
    "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_en": "what is the lowest year with the result is nominated for the work title is love bites?",
    "question_th": "ปีไหนต่ำสุดที่มีผลการเสนอชื่อเข้าชิงชื่อผลงาน Love Bits?",
    "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_en": "what is the year when then organisation is star awards, the result is won and the nominated work title is n/a?",
    "question_th": "ปีที่องค์กรได้รับรางวัลระดับดาว คือรางวัลชนะเลิศ และชื่อผลงานที่ได้รับการเสนอชื่อคือไม่มีข้อมูล",
    "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_en": "what is the latest year that has the result of nominated and the nominated work title is n/a?",
    "question_th": "ปีล่าสุดที่มีผลการเสนอชื่อและชื่องานที่ได้รับการเสนอชื่อคือไม่มี?",
    "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_en": "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?",
    "question_th": "ชื่อผลงานที่ได้รับการเสนอชื่อเข้าชิงเมื่อผลงานได้รับรางวัล องค์กรคือ star awards และรางวัลคือ 10 อันดับแรกของศิลปินหญิงที่ได้รับความนิยมสูงสุดในปี 2550?",
    "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_en": "What is the rank of the games that had 9 gold and 9 silvers?",
    "question_th": "อันดับของเกมที่มี 9 เหรียญทอง และ 9 เงิน คืออะไร?",
    "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_en": "How many golds were there in a game that has 17 bronze and a total of 31?",
    "question_th": "มีกี่เหรียญทองในเกมที่มี 17 เหรียญทองแดง และทั้งหมด 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_en": "Which game had 8 bronze and 4 gold?",
    "question_th": "เกมใดมี 8 เหรียญทองแดง และ 4 ทอง?",
    "context": "CREATE TABLE table_name_61 (games VARCHAR, bronze VARCHAR, gold VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_91 WHERE visitor = \"san jose\"",
    "question_en": "When did San Jose visit the St. Louis?",
    "question_th": "ซานโฮเซไปเยี่ยมเซนต์หลุยส์เมื่อใด",
    "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_en": "How many total wins with the latest win at the 1999 Italian Grand Prix at a rank of 15?",
    "question_th": "ชัยชนะครั้งล่าสุดในรายการอิตาเลียนกรังด์ปรีซ์ปี 1999 ที่อันดับ 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_en": "What is the rank 6 lowest win who's first win was at the 1950 British Grand Prix?",
    "question_th": "อะไรคือชัยชนะต่ำสุดอันดับ 6 ที่ชนะครั้งแรกคือ 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_en": "What is the rank 16 wins with the latest win at the 1967 Belgian Grand Prix?",
    "question_th": "ชัยชนะอันดับที่ 16 จากการชนะครั้งล่าสุดที่ Belgian Grand Prix ปี 1967 คืออะไร?",
    "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_en": "What's the lowest pick for a defensive back at Drake?",
    "question_th": "ตัวเลือกต่ำสุดสำหรับแนวรับของ 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_en": "What's terry jones' lowest pick?",
    "question_th": "ตัวเลือกต่ำสุดของ Terry Jones คืออะไร?",
    "context": "CREATE TABLE table_name_11 (pick INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_52 WHERE player = \"gerald carter\"",
    "question_en": "What position does gerald carter play?",
    "question_th": "เจอรัลด์ คาร์เตอร์ เล่นตำแหน่งอะไร?",
    "context": "CREATE TABLE table_name_52 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_44 WHERE position = \"guard\" AND school = \"wisconsin\"",
    "question_en": "Who is the guard for Wisconsin?",
    "question_th": "ใครคือผู้พิทักษ์วิสคอนซิน?",
    "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_en": "Which player is Pick 33 and has a Nationality of USA?",
    "question_th": "ผู้เล่นคนไหนคือ Pick 33 และมีสัญชาติสหรัฐอเมริกา?",
    "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_en": "What is the nationality of the player who has a pick lower than 33 and a School/Club Team of Vanderbilt?",
    "question_th": "สัญชาติของผู้เล่นที่มีสิทธิเลือกต่ำกว่า 33 และทีมโรงเรียน/สโมสรของแวนเดอร์บิลต์คืออะไร?",
    "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_en": "What is the nationality of the player who had the pick of 52 and plays for the NBA team of Phoenix Suns?",
    "question_th": "นักเตะที่ได้รับเลือก 52 คนและเล่นให้กับทีม Phoenix Suns NBA มีสัญชาติอะไร?",
    "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_en": "How many leage apperances for the player with one FA cup, and a FLT Apps of 0 (1)?",
    "question_th": "ผู้เล่นที่ได้ลงเล่นในลีกกี่ครั้งโดยได้เอฟเอคัพหนึ่งรายการและแอป FLT เท่ากับ 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_en": "What day did St Kilda play as the away team?",
    "question_th": "เซนต์คิลดาลงเล่นเป็นทีมเยือนวันไหน?",
    "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_en": "What's the value for 2007 when 2011 is a and 2009 is q2?",
    "question_th": "ค่าของปี 2550 เมื่อ 2554 เป็น a และ 2552 คือ 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_en": "Tell me the highest league goals with total goals less than 1 and FA cups more than 0",
    "question_th": "บอกผมหน่อยว่าประตูสูงสุดในลีกที่มีประตูรวมน้อยกว่า 1 และเอฟเอ คัพ มากกว่า 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_en": "I want to know the sum of fa cup goals for david mirfin and total goals less than 1",
    "question_th": "ฉันต้องการทราบผลรวมของประตูเอฟเอคัพของเดวิด มิร์ฟิน และประตูรวมที่น้อยกว่า 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_en": "Tell me the league apps with league goals less than 2 and position of df and FA cup apps of 5",
    "question_th": "บอกแอปลีกที่มีประตูในลีกน้อยกว่า 2 และตำแหน่งของแอป df และ FA cup ที่ 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_en": "What is the video ratio on channel 14.2?",
    "question_th": "อัตราส่วนวิดีโอของช่อง 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_en": "What network has an aspect of 4:3 and a PSIP Short Name of qvc?",
    "question_th": "เครือข่ายใดมีอัตราส่วน 4:3 และชื่อย่อ PSIP ของ 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_en": "What is ion life network's PSIP Short Name?",
    "question_th": "ชื่อย่อ PSIP ของ ion life network คืออะไร",
    "context": "CREATE TABLE table_name_58 (psip_short_name VARCHAR, network VARCHAR)"
  },
  {
    "answer": "SELECT SUM(channel) FROM table_name_65 WHERE network = \"qubo\"",
    "question_en": "What is the sum of channels for qubo network?",
    "question_th": "ผลรวมของช่องสัญญาณสำหรับเครือข่าย qubo เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_65 (channel INTEGER, network VARCHAR)"
  },
  {
    "answer": "SELECT deaths FROM table_name_34 WHERE name = \"eseta\"",
    "question_en": "How many deaths did eseta cause?",
    "question_th": "เอเซตาทำให้มีผู้เสียชีวิตกี่ราย?",
    "context": "CREATE TABLE table_name_34 (deaths VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_65 WHERE away_team = \"carlton\"",
    "question_en": "What was the date when the away team was Carlton?",
    "question_th": "วันที่ทีมเยือนคือคาร์ลตันคือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_65 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_44 WHERE home_team = \"hawthorn\"",
    "question_en": "When the home team was hawthorn, what was the date?",
    "question_th": "เมื่อเจ้าบ้านเป็นฮอว์ธอร์นวันที่เท่าไหร่?",
    "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_en": "What did Geelong score as the away team?",
    "question_th": "จีลองทำคะแนนให้ทีมเยือนได้เท่าไหร่?",
    "context": "CREATE TABLE table_name_91 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_85 WHERE home_team = \"footscray\"",
    "question_en": "What date did the home team of footscray play?",
    "question_th": "ทีมเจ้าบ้านฟุตสเครย์ลงเล่นวันไหน?",
    "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_en": "Name the club team for overall of 188 for canada",
    "question_th": "ตั้งชื่อทีมสโมสรโดยรวม 188 ทีมสำหรับแคนาดา",
    "context": "CREATE TABLE table_name_72 (club_team VARCHAR, nationality VARCHAR, overall VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_66 WHERE overall = 74",
    "question_en": "Name the nationality of the player with an overall of 74",
    "question_th": "ระบุสัญชาติผู้เล่นด้วยคะแนนรวม 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_en": "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?",
    "question_th": "อะไรคือจุดสูงสุดในเดือนสิงหาคม 2013 โดยเดือนพฤศจิกายน 2011 มีค่าน้อยกว่า 968 และเดือนกรกฎาคม 2012 ที่มีค่า 31 และเดือนมิถุนายน 2011 มีค่ามากกว่า 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_en": "What is the average Apr 2013 with a Jun 2011 less than 14?",
    "question_th": "ค่าเฉลี่ยเดือนเมษายน 2013 โดยเดือนมิถุนายน 2011 น้อยกว่า 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_en": "What is the average Feb 2013 with a Feb 2010 with 37, and a Nov 2012 less than 32?",
    "question_th": "ค่าเฉลี่ยของเดือนกุมภาพันธ์ 2013 กับเดือนกุมภาพันธ์ 2010 ที่ 37 และเดือนพฤศจิกายน 2012 น้อยกว่า 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_en": "What is the total number with Nov 2012 with a Jun 2013 larger than 542, and a Aug 2011 more than 935?",
    "question_th": "จำนวนรวมในเดือนพฤศจิกายน 2555 โดยเดือนมิถุนายน 2556 มากกว่า 542 และเดือนสิงหาคม 2554 มากกว่า 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_en": "What's the total grid for a Time/Retired of +1:03.741, and Laps larger than 44?",
    "question_th": "ตารางรวมสำหรับเวลา/เกษียณที่ +1:03.741 และรอบที่มากกว่า 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_en": "What did the home team at Brunswick Street Oval score?",
    "question_th": "เจ้าบ้านที่บรันสวิค สตรีท โอวัล ทำคะแนนได้เท่าไหร่?",
    "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_en": "Who had the highest rebounds of the game with A. Johnson (6) as the highest assist?",
    "question_th": "ใครมีการรีบาวด์สูงสุดของเกมโดยที่เอ. จอห์นสัน (6) เป็นแอสซิสต์สูงสุด?",
    "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_en": "Who had the highest rebounds of the game with A. Johnson (14) as the highest assists?",
    "question_th": "ใครมีการรีบาวด์สูงสุดในเกมโดยที่เอ. จอห์นสัน (14) เป็นแอสซิสต์สูงสุด?",
    "context": "CREATE TABLE table_name_55 (high_rebounds VARCHAR, high_assists VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_16 WHERE date = \"august 30\"",
    "question_en": "Who was the opponent on August 30?",
    "question_th": "คู่ต่อสู้ในวันที่ 30 สิงหาคมคือใคร?",
    "context": "CREATE TABLE table_name_16 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_82 WHERE date = \"august 8\"",
    "question_en": "What was the score on August 8?",
    "question_th": "คะแนนวันที่ 8 ส.ค. เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_82 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(pick) FROM table_name_52 WHERE player = \"kenny evans\"",
    "question_en": "How many picks included Kenny Evans?",
    "question_th": "Kenny Evans รวมตัวเลือกทั้งหมดกี่รายการ?",
    "context": "CREATE TABLE table_name_52 (pick VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(pick) FROM table_name_95 WHERE college = \"letran\"",
    "question_en": "How many picks went to College of Letran?",
    "question_th": "มีกี่คนที่ถูกเลือกไปที่ 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_en": "Which player has a PBA team of Red Bull Thunder?",
    "question_th": "ผู้เล่นคนไหนมีทีม PBA ของ 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_en": "In which event did he place 6th in 1971?",
    "question_th": "เขาได้อันดับที่ 6 ในงานใดในปี 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_en": "When was the first year he placed 2nd in Izmir, Turkey?",
    "question_th": "ปีแรกที่เขาได้อันดับที่ 2 ในเมืองอิซเมียร์ ประเทศตุรกี คือเมื่อใด",
    "context": "CREATE TABLE table_name_3 (year INTEGER, result VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_58 WHERE year = 1970",
    "question_en": "How did he place in 1970?",
    "question_th": "เขาวางตำแหน่งอย่างไรในปี 1970?",
    "context": "CREATE TABLE table_name_58 (result VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(attendance) FROM table_name_83 WHERE date = \"may 29\"",
    "question_en": "How many were in Attendance on the Date May 29?",
    "question_th": "มีผู้เข้าร่วมประชุมกี่คนในวันที่ 29 พฤษภาคม?",
    "context": "CREATE TABLE table_name_83 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_15 WHERE date = \"may 8\"",
    "question_en": "What was the Record on the Date May 8?",
    "question_th": "บันทึกในวันที่ 8 พฤษภาคมคืออะไร?",
    "context": "CREATE TABLE table_name_15 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_16 WHERE date = \"april 14, 2008\"",
    "question_en": "Who was the home team at the game played on April 14, 2008?",
    "question_th": "ทีมเจ้าบ้านในเกมที่เล่นเมื่อวันที่ 14 เมษายน พ.ศ. 2551 คือใคร?",
    "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_en": "How many votes were cast when the notes reported lost to incumbent vic gilliam?",
    "question_th": "มีการลงคะแนนเสียงกี่คะแนนเมื่อบันทึกรายงานว่าแพ้วิก กิลเลี่ยม?",
    "context": "CREATE TABLE table_name_51 (votes VARCHAR, notes VARCHAR)"
  },
  {
    "answer": "SELECT candidate FROM table_name_57 WHERE race = \"state representative, hd18\"",
    "question_en": "Who is the candidate in Race for State representative, hd18?",
    "question_th": "ใครคือผู้สมัครในตัวแทน Race for State, 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_en": "What club/province does the prop player with over 45 caps play for?",
    "question_th": "ผู้เล่นที่ติดทีมชาติมากกว่า 45 นัดลงเล่นให้กับสโมสร/จังหวัดใด?",
    "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_en": "Who was the opponent at the Staples Center?",
    "question_th": "คู่ต่อสู้ที่ Staples Center คือใคร?",
    "context": "CREATE TABLE table_name_46 (opponent VARCHAR, arena VARCHAR)"
  },
  {
    "answer": "SELECT arena FROM table_name_33 WHERE opponent = \"sharks\"",
    "question_en": "In what arena was the game against the Sharks played?",
    "question_th": "เกมที่พบกับ Sharks เล่นในเวทีใด?",
    "context": "CREATE TABLE table_name_33 (arena VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_86 WHERE format = \"lp\"",
    "question_en": "What is the label with the LP format?",
    "question_th": "ป้ายกำกับที่มีรูปแบบ LP คืออะไร",
    "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_en": "What date had a 4ad label and a CD (reissue) format?",
    "question_th": "วันที่ใดมีป้ายกำกับ 4ad และรูปแบบซีดี (ออกใหม่)",
    "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_en": "Which country had a cad 4011 catalogue #?",
    "question_th": "ประเทศใดมีแค็ตตาล็อก CAD 4011 #?",
    "context": "CREATE TABLE table_name_66 (country VARCHAR, catalogue__number VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_66 WHERE country = \"japan\"",
    "question_en": "Which date was for Japan?",
    "question_th": "ญี่ปุ่นเป็นวันไหนคะ?",
    "context": "CREATE TABLE table_name_66 (date VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_88 WHERE country = \"united states\"",
    "question_en": "What is the label on the United States?",
    "question_th": "ฉลากในสหรัฐอเมริกาคืออะไร?",
    "context": "CREATE TABLE table_name_88 (label VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_37 WHERE catalogue__number = \"cocy-80093\"",
    "question_en": "What is the date with the catalogue # cocy-80093?",
    "question_th": "แค็ตตาล็อก # 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_en": "What category was danson tang nominated?",
    "question_th": "Danson Tang ได้รับการเสนอชื่อเข้าชิงประเภทใด",
    "context": "CREATE TABLE table_name_72 (category VARCHAR, nomination VARCHAR)"
  },
  {
    "answer": "SELECT SUM(year) FROM table_name_52 WHERE category = \"best improved singer (躍進歌手)\"",
    "question_en": "What was the total number of years than had best improved singer (躍進歌手)?",
    "question_th": "นักร้องที่มีการพัฒนาดีที่สุด (躍進歌手) มีอายุรวมเป็นเท่าใด?",
    "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_en": "Who constructed the car with a grid over 19 that retired due to suspension?",
    "question_th": "ใครเป็นคนสร้างรถที่มีโครงข่ายเกิน 19 ปีที่เลิกใช้งานเนื่องจากระบบกันสะเทือน?",
    "context": "CREATE TABLE table_name_49 (constructor VARCHAR, grid VARCHAR, time_retired VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_79 WHERE grid = 9",
    "question_en": "What driver has a 9 grid total?",
    "question_th": "ไดรเวอร์ใดมีทั้งหมด 9 ตาราง?",
    "context": "CREATE TABLE table_name_79 (driver VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT chassis FROM table_name_48 WHERE season = \"1982\"",
    "question_en": "What was the winning car's chassis for the 1982 season?",
    "question_th": "แชสซีของรถที่ชนะในฤดูกาล 1982 คืออะไร?",
    "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_en": "Which team, with champion Bastian Kolmsee, used a Dallara f302 for the chassis?",
    "question_th": "ทีมใดที่มีแชมป์อย่างบาสเตียน โคล์มซี ใช้ Dallara f302 เป็นแชสซี?",
    "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_en": "What chassis was the car with the Volkswagen engine built on in 2010?",
    "question_th": "รถยนต์ที่ใช้เครื่องยนต์ Volkswagen สร้างขึ้นในปี 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_en": "Which engine did Korten Motorsport use?",
    "question_th": "Korten Motorsport ใช้เครื่องยนต์ใด",
    "context": "CREATE TABLE table_name_86 (engine VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT champion FROM table_name_28 WHERE engine = \"ford\" AND season = \"1971\"",
    "question_en": "Who was the champion that drove the car with the Ford engine in 1971?",
    "question_th": "ใครคือแชมป์ที่ขับรถด้วยเครื่องยนต์ฟอร์ดในปี 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_en": "In which season did Jimmy Eriksson win the championship for Team Lotus?",
    "question_th": "Jimmy Eriksson คว้าแชมป์ทีม Lotus ในฤดูกาลใด",
    "context": "CREATE TABLE table_name_40 (season VARCHAR, team VARCHAR, champion VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_49 WHERE goals = 6",
    "question_en": "Which name had 6 goals?",
    "question_th": "ชื่อไหนมี 6 ประตู?",
    "context": "CREATE TABLE table_name_49 (name VARCHAR, goals VARCHAR)"
  },
  {
    "answer": "SELECT MAX(goals) FROM table_name_50 WHERE transfer_fee = \"£0.8m\"",
    "question_en": "What is the largest goal number when the transfer fee was £0.8m?",
    "question_th": "หมายเลขประตูที่ใหญ่ที่สุดเมื่อค่าธรรมเนียมการโอนคือ 0.8 ล้านปอนด์คืออะไร?",
    "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_en": "What is the location of a1 women's - handball?",
    "question_th": "สนามแฮนด์บอลหญิง A1 อยู่ที่ไหน?",
    "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_en": "What is the capacity at the nop aquatic centre, established after 1929?",
    "question_th": "ศูนย์กีฬาทางน้ำ นพ. ซึ่งก่อตั้งหลัง พ.ศ. 2472 สามารถรองรับความจุได้เท่าใด",
    "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_en": "What is the capacity for b national - basketball?",
    "question_th": "ความจุของ b national - บาสเก็ตบอลคือเท่าไร?",
    "context": "CREATE TABLE table_name_93 (capacity VARCHAR, leagues VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_47 WHERE opponent = \"minnesota vikings\"",
    "question_en": "What game week did the Buccaneers play against the Minnesota Vikings?",
    "question_th": "Buccaneers พบกับ Minnesota Vikings ในเกมสัปดาห์ใด?",
    "context": "CREATE TABLE table_name_47 (week VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_67 WHERE record = \"0-5\"",
    "question_en": "What game week did the buccaneers have a record of 0-5?",
    "question_th": "บัคคาเนียร์สมีสถิติ 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_en": "What is the record of the buccaneers on December 4, 1983?",
    "question_th": "บันทึกของไฮเวย์เมื่อวันที่ 4 ธันวาคม 2526 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_9 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT AVG(attendance) FROM table_name_5 WHERE visitor = \"ottawa\"",
    "question_en": "What was the attendance at the game against Ottawa?",
    "question_th": "ผู้เข้าชมในเกมกับออตตาวาเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_5 (attendance INTEGER, visitor VARCHAR)"
  },
  {
    "answer": "SELECT MAX(attendance) FROM table_name_83 WHERE home = \"detroit\"",
    "question_en": "What was the highest attendance at a Detroit home game?",
    "question_th": "ผู้เข้าร่วมสูงสุดในเกมเหย้าของดีทรอยต์คืออะไร?",
    "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_en": "What was the attendance of the Florida vs. Montreal game?",
    "question_th": "การเข้าร่วมของเกม Florida vs. Montreal คืออะไร?",
    "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_en": "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",
    "question_th": "ฉันต้องการทราบสภาวะของ Prothrombin time ที่ไม่ได้รับผลกระทบ และเลือดออกเป็นเวลานานด้วย thromboplastin time บางส่วนที่ไม่ได้รับผลกระทบ โดยจำนวนเกล็ดเลือดลดลงหรือไม่ได้รับผลกระทบ",
    "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_en": "I want the condition that has a prolonged bleeding time and a platelet count of decreased or unaffected",
    "question_th": "ฉันต้องการภาวะที่มีเลือดออกเป็นเวลานานและจำนวนเกล็ดเลือดลดลงหรือไม่ได้รับผลกระทบ",
    "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_en": "I want the prothrombin time with a partial thromboplastin time of prolonged and unaffected bleeding time and factor xii deficiency for condition of factor",
    "question_th": "ฉันต้องการเวลา prothrombin ที่มีเวลา thromboplastin บางส่วนซึ่งมีเลือดออกเป็นเวลานานและไม่ได้รับผลกระทบ และการขาดปัจจัย xii สำหรับสภาวะของปัจจัย",
    "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_en": "I want the condition that has a partial thromboplastin time of prolonged and unaffected bleeding time",
    "question_th": "ฉันต้องการภาวะที่มีระยะเวลา thromboplastin บางส่วนซึ่งมีเลือดออกเป็นเวลานานและไม่ได้รับผลกระทบ",
    "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_en": "What is the ICAO for Antalya Airport?",
    "question_th": "ICAO สำหรับสนามบินอันตัลยาคืออะไร",
    "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_en": "What is the IATA of Leonardo da Vinci-Fiumicino Airport?",
    "question_th": "IATA ของสนามบิน Leonardo da Vinci-Fiumicino คืออะไร",
    "context": "CREATE TABLE table_name_39 (iata VARCHAR, airport VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_68 WHERE iata = \"blq\"",
    "question_en": "What country is the IATA BLQ located in?",
    "question_th": "IATA BLQ ตั้งอยู่ในประเทศใด",
    "context": "CREATE TABLE table_name_68 (country VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT iata FROM table_name_8 WHERE airport = \"madrid-barajas airport\"",
    "question_en": "What is the IATA of Madrid-Barajas Airport?",
    "question_th": "IATA ของสนามบินมาดริด-บาราคัสคืออะไร",
    "context": "CREATE TABLE table_name_8 (iata VARCHAR, airport VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_84 WHERE icao = \"lirf\"",
    "question_en": "Which city has the ICAO of LIRF?",
    "question_th": "เมืองใดมี ICAO ของ LIRF",
    "context": "CREATE TABLE table_name_84 (city VARCHAR, icao VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_27 WHERE airport = \"naples airport\"",
    "question_en": "Which city is Naples Airport located in?",
    "question_th": "สนามบินเนเปิลส์ตั้งอยู่ในเมืองใด",
    "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_en": "Tell me the Ryuji Hijikata for TAKA Michinoku of Hayashi (28:05)",
    "question_th": "บอก Ryuji Hijikata สำหรับ TAKA Michinoku ของ 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_en": "Tell me the Ryuji Hijikata for Block A of Ryuji Hijikata",
    "question_th": "บอก Ryuji Hijikata สำหรับ Block A ของ 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_en": "When South Melbourne was the Away Team, what was their score?",
    "question_th": "เมื่อเซาธ์ เมลเบิร์นเป็นทีมเยือน สกอร์เท่าไหร่?",
    "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_en": "Tell me the away team score for away team of south melbourne",
    "question_th": "บอกคะแนนทีมเยือนของทีมเยือนเซาธ์ เมลเบิร์นมาหน่อย",
    "context": "CREATE TABLE table_name_23 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team AS score FROM table_name_82 WHERE venue = \"vfl park\"",
    "question_en": "I want to know the away team score for vfl park venue",
    "question_th": "อยากทราบคะแนนทีมเยือนสนามvfl parkครับ",
    "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_en": "Name the total number of tracks for of the fallen angel",
    "question_th": "บอกชื่อเพลงทั้งหมดของเทวดาตกสวรรค์",
    "context": "CREATE TABLE table_name_21 (track VARCHAR, translation VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_55 WHERE chassis = \"193\" AND rounds = \"14\"",
    "question_en": "What driver went 14 rounds with a 193 Chassis?",
    "question_th": "นักแข่งคนไหนที่ขับ 14 รอบด้วยแชสซี 193?",
    "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_en": "What engine was used when Aguri Suzuki drove the FA13B FA14 Chassis?",
    "question_th": "Aguri Suzuki ขับแชสซี FA13B FA14 ใช้เครื่องยนต์อะไร",
    "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_en": "Who was the entrant for all the round with Jean Alesi?",
    "question_th": "ใครคือผู้เข้าแข่งขันในรอบนี้กับ 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_en": "What engine did Riccardo Patrese use?",
    "question_th": "Riccardo Patrese ใช้เครื่องยนต์อะไร",
    "context": "CREATE TABLE table_name_12 (engine VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_53 WHERE home_team = \"footscray\"",
    "question_en": "If the home team was footscray which venue did they play it?",
    "question_th": "ถ้าเจ้าบ้านเป็นฟุตสเครย์ เขาเล่นสนามไหน?",
    "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_en": "When the home team was footscray what did they score?",
    "question_th": "เมื่อเจ้าบ้านฟุตสเครย์ได้คะแนนอะไร?",
    "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_en": "When the home team north melbourne was playing what did they score?",
    "question_th": "เมื่อทีมเหย้า นอร์ท เมลเบิร์น เล่นได้คะแนนเท่าไหร่?",
    "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_en": "What is the score of the September 20, 2005 match when the Opponents are FC Bayern Munich?",
    "question_th": "แมตช์วันที่ 20 กันยายน 2548 ฝั่งตรงข้ามเป็นเอฟซี บาเยิร์น มิวนิค เป็นอย่างไร?",
    "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_en": "What is the match report for July 10, 2005?",
    "question_th": "รายงานการแข่งขันประจำวันที่ 10 กรกฎาคม พ.ศ. 2548 คืออะไร?",
    "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_en": "What is the date of the GC competition when the opponents are 1. FC Nuremberg?",
    "question_th": "การแข่งขัน GC วันที่เท่าไหร่ที่คู่ต่อสู้คือ 1.เอฟซี เนิร์นแบร์ก?",
    "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_en": "Which competition was held on September 10, 2005?",
    "question_th": "การแข่งขันใดจัดขึ้นเมื่อวันที่ 10 กันยายน พ.ศ. 2548",
    "context": "CREATE TABLE table_name_58 (competition VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_79 WHERE score = \"3-0\"",
    "question_en": "In which competition was the score 3-0?",
    "question_th": "ในการแข่งขันรายการไหนสกอร์ 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–106\"",
    "question_en": "Who was the visitor when the lakers were at home with a Score of 85–106?",
    "question_th": "ใครคือผู้มาเยือนเมื่อเลเกอร์สอยู่ที่บ้านด้วยคะแนน 85–106",
    "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_en": "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?",
    "question_th": "วันเกิดของนักเตะที่ทำประตูได้น้อยกว่า 4 ประตู, มากกว่า 1 เกม, ปีที่อยู่กับสโมสร, ปี 1945 และตั้งชื่อว่า จิม ยัง คือวันที่เท่าไหร่?",
    "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_en": "what is the debut year for player terry fulton with games less than 51?",
    "question_th": "นักเตะเทอร์รี่ ฟูลตันที่เล่นเกมน้อยกว่า 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_en": "How people attended Victoria Park?",
    "question_th": "ผู้คนมาเยี่ยมชม 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_en": "What is the away team score for South Melbourne?",
    "question_th": "คะแนนทีมเยือน เซาธ์ เมลเบิร์น เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_97 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_38 WHERE away_team = \"melbourne\"",
    "question_en": "Who played Melbourne as the home team?",
    "question_th": "ใครเล่นเมลเบิร์นเป็นทีมเหย้า?",
    "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_en": "Which away team has an attendance of more than 17,000?",
    "question_th": "ทีมเยือนทีมไหนมีผู้ชมเกิน 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_en": "Which away team played at MCG?",
    "question_th": "ทีมเยือนทีมไหนเล่นที่ MCG?",
    "context": "CREATE TABLE table_name_55 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_49 WHERE home_team = \"geelong\"",
    "question_en": "What was the date when Geelong was the home team?",
    "question_th": "วันที่จีลองเป็นเจ้าบ้านคือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_49 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT bowling_style FROM table_name_49 WHERE player = \"damien martyn\"",
    "question_en": "What is Damien Martyn's bowling style?",
    "question_th": "สไตล์การเล่นโบว์ลิ่งของ Damien Martyn คืออะไร?",
    "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_en": "What is the batting style of the player born on 14 November 1971?",
    "question_th": "นักเตะที่เกิดวันที่ 14 พฤศจิกายน พ.ศ.2514 มีลักษณะการตีบอลแบบไหน?",
    "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_en": "What is the first class team of the player born on 23 February 1973?",
    "question_th": "นักเตะชั้น 1 ที่เกิดวันที่ 23 กุมภาพันธ์ พ.ศ. 2516 คือทีมอะไร?",
    "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_en": "What is the type for EU Council Presidency of UK and John Major as President-in-Office?",
    "question_th": "ตำแหน่งประธานสภาสหภาพยุโรปแห่งสหราชอาณาจักรและจอห์น เมเจอร์เป็นประธานในสำนักงานประเภทใด",
    "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_en": "In which host city was Margaret Thatcher the President-in-Office in 1981?",
    "question_th": "Margaret Thatcher เป็นประธานในสำนักงานในเมืองใดเจ้าภาพในปี 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_en": "How many average scores have preliminary scores over 9.25, interview scores more than 9.44, and evening gown scores of 9.77?",
    "question_th": "คะแนนเฉลี่ยมีคะแนนเบื้องต้นเกิน 9.25 คะแนนสัมภาษณ์มากกว่า 9.44 และคะแนนชุดราตรี 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_en": "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?",
    "question_th": "คะแนนน้อยที่สุดในการสัมภาษณ์คือคะแนนเบื้องต้นต่ำกว่า 9.4 คะแนนชุดราตรีน้อยกว่า 9.55 และคะแนนชุดว่ายน้ำมากกว่า 9.18 ในนิวยอร์ก",
    "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_en": "Name the seven for 29 november 1690",
    "question_th": "ตั้งชื่อเจ็ดสำหรับวันที่ 29 พฤศจิกายน 1690",
    "context": "CREATE TABLE table_name_24 (seven VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT four FROM table_name_23 WHERE date = \"6 march 1801\"",
    "question_en": "Name the four for 6 march 1801",
    "question_th": "ตั้งชื่อสี่สำหรับ 6 มีนาคม 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_en": "Name the three for william prewett for four and five being richard ellis with seven being nicholas king on 5 november 1693",
    "question_th": "ตั้งชื่อทั้งสามสำหรับวิลเลียม พรีเวตต์สำหรับสี่และห้าคือริชาร์ด เอลลิส และเจ็ดคือนิโคลัส คิง เมื่อวันที่ 5 พฤศจิกายน ค.ศ. 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_en": "Name the three for 16 december 1676",
    "question_th": "ตั้งชื่อทั้งสามสำหรับวันที่ 16 ธันวาคม 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_en": "Tell me the average Grid for driver of Luca Badoer and Laps more than 69",
    "question_th": "บอกกริดเฉลี่ยของนักแข่ง Luca Badoer และ Laps ที่มากกว่า 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_en": "What final was Farhad Rezaei in?",
    "question_th": "ฟาร์ฮัด เรซาอี เข้าชิงชนะเลิศรายการใด?",
    "context": "CREATE TABLE table_name_46 (final VARCHAR, athlete VARCHAR)"
  },
  {
    "answer": "SELECT final FROM table_name_96 WHERE rank = \"4\"",
    "question_en": "What final was ranked 4?",
    "question_th": "สุดท้ายอะไรคืออันดับที่ 4?",
    "context": "CREATE TABLE table_name_96 (final VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_44 WHERE athlete = \"hamid veisi\"",
    "question_en": "What was the reanking of Hamid Veisi?",
    "question_th": "ฮามิด เวซี มีความหมายอย่างไร?",
    "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_en": "Which Franchise has a Percentage under 0.707, a Year larger than 1931, and the Finish was won 1998 World Series?",
    "question_th": "แฟรนไชส์ใดมีเปอร์เซ็นต์ต่ำกว่า 0.707 ซึ่งมากกว่าปี 1931 หนึ่งปี และเข้าเส้นชัยได้รับรางวัล World Series ปี 1998",
    "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_en": "What is the average Year for the Finish of lost 2001 alcs and the Percentage is over 0.716?",
    "question_th": "ปีเฉลี่ยสำหรับการสิ้นสุดของ alc ที่สูญเสียไปในปี 2544 และเปอร์เซ็นต์อยู่ที่มากกว่า 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_en": "In the Year 1939, what was the Finish when Al was the League?",
    "question_th": "ในปี 1939 การจบสกอร์เมื่ออัลอยู่ในลีกคืออะไร?",
    "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_en": "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?",
    "question_th": "อะไรคือจุดสิ้นสุดเมื่อ NL เป็นลีก เปอร์เซ็นต์ต่ำกว่า 0.726 ปีมากกว่าปี 1897 และแฟรนไชส์คือกลุ่มโจรสลัดพิตต์สเบิร์ก",
    "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_en": "What was the venue when the home team was footscray?",
    "question_th": "สถานที่ที่เจ้าบ้านโดนฟุตสเครย์คือที่ไหน?",
    "context": "CREATE TABLE table_name_81 (venue VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT MIN(crowd) FROM table_name_72 WHERE away_team = \"hawthorn\"",
    "question_en": "What was the crowd when the away team was hawthorn?",
    "question_th": "เมื่อทีมเยือนเป็นฮอว์ธอร์นคนเยอะขนาดไหน?",
    "context": "CREATE TABLE table_name_72 (crowd INTEGER, away_team VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_86 WHERE stadium = \"ciro vigorito\"",
    "question_en": "What city houses the Ciro Vigorito stadium?",
    "question_th": "สนามกีฬา Ciro Vigorito เป็นที่ตั้งของเมืองใด",
    "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_en": "I want to know the highest silver for total of 4 for poland and gold less than 1",
    "question_th": "ฉันต้องการทราบเงินสูงสุดรวม 4 สำหรับโปแลนด์และทองคำน้อยกว่า 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_en": "Tell me the average silver for total more than 1 with bronze of 2 for france and gold more than 0",
    "question_th": "บอกค่าเฉลี่ยเงินสำหรับผลรวมมากกว่า 1 โดยมีทองแดงเป็น 2 สำหรับฝรั่งเศส และทองมากกว่า 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_en": "Tell me the number of gold for albania with a silver of 1 and total less than 1",
    "question_th": "บอกจำนวนทองคำของแอลเบเนียด้วยเงิน 1 และรวมน้อยกว่า 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_en": "Tell me the average gold for moldova and bronze less than 1",
    "question_th": "บอกค่าเฉลี่ยทองคำสำหรับมอลโดวาและทองแดงที่น้อยกว่า 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_en": "Tell me the sum of gold for bronze less than 0",
    "question_th": "บอกผลรวมของทองคำสำหรับทองแดงน้อยกว่า 0",
    "context": "CREATE TABLE table_name_31 (gold INTEGER, bronze INTEGER)"
  },
  {
    "answer": "SELECT tyre FROM table_name_71 WHERE circuit = \"zandvoort\"",
    "question_en": "What tyre was used in the Zandvoort circuit?",
    "question_th": "ยางชนิดใดที่ใช้ในสนาม Zandvoort?",
    "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_en": "Which circuit did Alberto Ascari set the fastest lap time with a Ferrari?",
    "question_th": "Alberto Ascari จับเวลารอบที่เร็วที่สุดกับ 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_en": "Who won the race with a Ferrari, were Luigi Villoresi set the fastest lap time?",
    "question_th": "ใครเป็นผู้ชนะการแข่งขันกับ Ferrari Luigi Villoresi เป็นคนตั้งเวลารอบได้เร็วที่สุด?",
    "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_en": "Which race did Alberto Ascari have both the Pole position and the win, but Luigi Villoresi set the fastest lap time?",
    "question_th": "การแข่งขันใดที่ Alberto Ascari มีทั้งตำแหน่งโพลและชัยชนะ แต่ Luigi Villoresi กลับทำเวลาต่อรอบได้เร็วที่สุด",
    "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_en": "Which county is named broderick wood products?",
    "question_th": "จังหวัดใดชื่อผลิตภัณฑ์ไม้ broderick",
    "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_en": "What construction completed is named nelson tunnel/commodore waste rock?",
    "question_th": "การก่อสร้างใดที่เสร็จสมบูรณ์แล้วมีชื่อว่าอุโมงค์เนลสัน/หินขยะคอมโมดอร์",
    "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_en": "What is the ID of marshall landfill on 09/08/1983?",
    "question_th": "ID ของการฝังกลบของ Marshall เมื่อวันที่ 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_en": "Which nominee won the award for Fourth Best Indian Film?",
    "question_th": "ผู้ได้รับการเสนอชื่อคนใดได้รับรางวัลภาพยนตร์อินเดียยอดเยี่ยมอันดับที่สี่",
    "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_en": "In which ceremony was Harnam Singh Rawail nominated for an award?",
    "question_th": "Harnam Singh Raail ได้รับการเสนอชื่อเข้าชิงรางวัลในพิธีใด",
    "context": "CREATE TABLE table_name_80 (ceremony VARCHAR, nominee VARCHAR)"
  },
  {
    "answer": "SELECT ceremony FROM table_name_69 WHERE nominee = \"jayant\"",
    "question_en": "In which ceremony was Jayant nominated for an award?",
    "question_th": "ชยันต์ได้รับการเสนอชื่อเข้าชิงรางวัลในพิธีใด?",
    "context": "CREATE TABLE table_name_69 (ceremony VARCHAR, nominee VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_88 WHERE date = \"april 24, 2003\"",
    "question_en": "What surface was the April 24, 2003 match played on?",
    "question_th": "นัดที่ 24 เมษายน พ.ศ. 2546 ลงเล่นบนพื้นผิวใด?",
    "context": "CREATE TABLE table_name_88 (surface VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT SUM(top_25) FROM table_name_47 WHERE cuts_made = 6",
    "question_en": "How many times has Watney made the top 25 for a tournament in which he as also been cut 6 times?",
    "question_th": "วัตนีย์ติด 25 อันดับแรกของทัวร์นาเมนต์ซึ่งเขาถูกตัดไป 6 ครั้งกี่ครั้งแล้ว?",
    "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_en": "Which tournament has the highest number of cuts while also having 4 top 25 appearances?",
    "question_th": "ทัวร์นาเมนต์ใดมีจำนวนการตัดตัวมากที่สุดในขณะที่ยังมีการลงสนาม 25 อันดับแรกถึง 4 ครั้ง?",
    "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_en": "What is the smallest grid with collision as the Time/Retired for pedro diniz?",
    "question_th": "ตารางที่เล็กที่สุดที่มีการชนกันตามเวลา/เกษียณสำหรับเปโดรดินิซคืออะไร",
    "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_en": "What is the number of laps for Grid 14?",
    "question_th": "ตารางที่ 14 มีรอบกี่รอบ?",
    "context": "CREATE TABLE table_name_88 (laps VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(grid) FROM table_name_65 WHERE driver = \"mika häkkinen\" AND laps > 45",
    "question_en": "What is the number of the grid for mika häkkinen and more than 45 laps?",
    "question_th": "มิกะ ฮักคิเนน และเกิน 45 รอบกริดมีจำนวนเท่าไร?",
    "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_en": "Which home team has more than 19,000 spectators?",
    "question_th": "เจ้าบ้านทีมไหนมีผู้ชมเกิน 19,000 คน?",
    "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_en": "What is the Theme of Christie Paquet after 2004 with an Issue Price of $34.95?",
    "question_th": "ธีมของ Christie Paquet หลังปี 2004 ด้วยราคาเสนอขายที่ 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_en": "What is the Year of Christie Paquet with Issue Price of $34.95?",
    "question_th": "ปีของ Christie Paquet ที่ราคาออกอยู่ที่ 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_en": "What is the Crowd for the Venue of Princes Park?",
    "question_th": "ฝูงชนที่มาที่ 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_en": "What is the Home team score for the Home team of Melbourne?",
    "question_th": "คะแนนทีมเหย้าของทีมเหย้าเมลเบิร์นคือเท่าไร?",
    "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_en": "What is the Home team score for the Home team from South Melbourne?",
    "question_th": "คะแนนทีมเหย้าของทีมเหย้าจากเซาท์ เมลเบิร์นคือเท่าไร?",
    "context": "CREATE TABLE table_name_33 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team AS score FROM table_name_89 WHERE venue = \"mcg\"",
    "question_en": "What is the Home team score for the Venue named MCG?",
    "question_th": "คะแนนทีมเจ้าบ้านสำหรับสนามที่ชื่อว่า 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_en": "Who has the lowest earnings that has a rank smaller than 2?",
    "question_th": "ใครมีรายได้ต่ำสุดที่มีอันดับน้อยกว่า 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_en": "What was the total number of wins with player Mike Hill with a rank bigger than 2?",
    "question_th": "จำนวนชัยชนะทั้งหมดของผู้เล่น ไมค์ ฮิลล์ ที่มีอันดับมากกว่า 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_en": "Where was the argentine grand prix?",
    "question_th": "กรังด์ปรีซ์อาร์เจนตินาอยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_42 (location VARCHAR, race VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_72 WHERE fastest_lap = \"nelson piquet\"",
    "question_en": "What was the constructor for the fastest nelson piquet?",
    "question_th": "อะไรคือตัวสร้างสำหรับปิเก้เนลสันที่เร็วที่สุด?",
    "context": "CREATE TABLE table_name_72 (constructor VARCHAR, fastest_lap VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_64 WHERE location = \"zolder\"",
    "question_en": "Tell me the constructor for zolder",
    "question_th": "บอกคอนสตรัคเตอร์สำหรับโซลเดอร์มาให้ฉันหน่อย",
    "context": "CREATE TABLE table_name_64 (constructor VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_75 WHERE date = \"10 august\"",
    "question_en": "Name the constructor for 10 august",
    "question_th": "ตั้งชื่อคอนสตรัคเตอร์สำหรับวันที่ 10 สิงหาคม",
    "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_en": "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?",
    "question_th": "จำนวนปีที่อยู่กับสโมสรสำหรับนักเตะที่มีเกมมากกว่า 28 เกม ยิงได้มากกว่า 225 ประตู และปีที่เดบิวต์ของเขาคือหลังปี 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_en": "What is the birthday of the player who has Years at Club of 1951?",
    "question_th": "วันเกิดของผู้เล่นที่มีปีที่สโมสรปี 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_en": "what rank has years until mandatory retirement of 6 years?",
    "question_th": "ตำแหน่งใดมีปีถึงเกษียณอายุ 6 ปี?",
    "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_en": "what name has an appointed year of 2009 and years until mandatory retirement of 13 years?",
    "question_th": "ชื่ออะไรได้รับการแต่งตั้งในปี 2009 และปีจนกว่าจะเกษียณอายุบังคับ 13 ปี?",
    "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_en": "Which player from Oregon used the number 12?",
    "question_th": "ผู้เล่นคนไหนจาก Oregon ใช้หมายเลข 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_en": "What position does the player who is 6-10 play?",
    "question_th": "ผู้เล่นหมายเลข 6-10 เล่นตำแหน่งอะไร?",
    "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_en": "What are the numbers for any players from Washington?",
    "question_th": "ตัวเลขของผู้เล่นจากวอชิงตันคืออะไร?",
    "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_en": "Which years did the Rockets number 6 play?",
    "question_th": "Rockets หมายเลข 6 เล่นปีไหน?",
    "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_en": "Which 2nd senior VIII that also has a 4th senior stm?",
    "question_th": "รุ่นพี่ VIII คนไหนที่มี stm รุ่นพี่คนที่ 4 ด้วย?",
    "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_en": "How many laps did John Love have on a grid less than 11?",
    "question_th": "John Love มีกี่รอบในตารางน้อยกว่า 11?",
    "context": "CREATE TABLE table_name_18 (laps VARCHAR, grid VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT builder FROM table_name_6 WHERE locomotive = \"2\"",
    "question_en": "What is the Builder of Locomotive 2?",
    "question_th": "ผู้สร้างหัวรถจักร 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_en": "With a Type of 4-6-4t, what is the sum Withdrawn?",
    "question_th": "ด้วยประเภท 4-6-4t ผลรวมที่ถอนออกคือเท่าไร?",
    "context": "CREATE TABLE table_name_43 (withdrawn INTEGER, type VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_41 WHERE home = \"dallas\" AND visitor = \"edmonton\"",
    "question_en": "What was the score from the game where Dallas played Home and Edmonton was visiting?",
    "question_th": "คะแนนจากเกมที่ดัลลาสเล่นในบ้านและเอดมันตันมาเยือนเป็นเท่าใด",
    "context": "CREATE TABLE table_name_41 (score VARCHAR, home VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT mintage FROM table_name_15 WHERE theme = \"santa claus\"",
    "question_en": "What was the mintage when the theme was Santa Claus?",
    "question_th": "เหรียญกษาปณ์คืออะไรเมื่อธีมคือซานตาคลอส?",
    "context": "CREATE TABLE table_name_15 (mintage VARCHAR, theme VARCHAR)"
  },
  {
    "answer": "SELECT SUM(issue_price) FROM table_name_29 WHERE year = 2008",
    "question_en": "What was the issue price in the year 2008?",
    "question_th": "ราคาที่ออกในปี 2551 คืออะไร?",
    "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_en": "What is the earliest year when the composition is 99.99% silver and the issue price is $94.95?",
    "question_th": "ปีแรกสุดที่ส่วนประกอบเป็นเงิน 99.99% และราคาออกอยู่ที่ 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_en": "What year had an issue price of $94.95 and theme of Amethyst crystal?",
    "question_th": "ปีใดมีราคาจำหน่ายอยู่ที่ 94.95 เหรียญสหรัฐ และมีธีมเป็นคริสตัลอเมทิสต์?",
    "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_en": "Name the score for when the opponent in the final is shiho hisamatsu",
    "question_th": "ตั้งชื่อคะแนนเมื่อคู่ต่อสู้ในรอบชิงชนะเลิศคือชิโฮะ ฮิซามัตสึ",
    "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_en": "Name the tournament for april 3, 2005",
    "question_th": "ตั้งชื่อการแข่งขันสำหรับวันที่ 3 เมษายน พ.ศ. 2548",
    "context": "CREATE TABLE table_name_79 (tournament VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_1 WHERE date = \"may 11, 2003\"",
    "question_en": "Name th score for may 11, 2003",
    "question_th": "ตั้งชื่อคะแนนสำหรับวันที่ 11 พฤษภาคม พ.ศ. 2546",
    "context": "CREATE TABLE table_name_1 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_30 WHERE driver = \"pedro diniz\"",
    "question_en": "Who constructed pedro diniz's car?",
    "question_th": "ใครเป็นคนสร้างรถของเปโดร ดินิซ?",
    "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_en": "What is the grid total for david coulthard with over 45 laps?",
    "question_th": "ตารางรวมของ David Coulthard ที่วิ่งเกิน 45 รอบเป็นเท่าใด",
    "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_en": "What is the average for the gymnast with a 9.9 start value and a total of 9.612?",
    "question_th": "ค่าเฉลี่ยของนักกายกรรมที่มีค่าเริ่มต้น 9.9 และคะแนนรวม 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_en": "What was the penalty for the gymnast with average above 9.662 and total is more than 9.706?",
    "question_th": "บทลงโทษสำหรับนักกายกรรมที่มีค่าเฉลี่ยสูงกว่า 9.662 และรวมมากกว่า 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_en": "What category was Kasautii Zindagii Kay nominated for after 2005?",
    "question_th": "Kasautii Zindagii Kay ได้รับการเสนอชื่อเข้าชิงประเภทใดหลังปี 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 – female (popular)\" AND year = 2006",
    "question_en": "What show had a nomination for best actor in a lead role – female (popular) in 2006?",
    "question_th": "รายการใดที่ได้รับการเสนอชื่อเข้าชิงนักแสดงนำชายยอดเยี่ยม (ยอดนิยม) ในปี 2549?",
    "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_en": "In what week was the Result L 15-13?",
    "question_th": "ผล 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_en": "What is the Attendance with Opponent Dallas Cowboys in a Week greater than 5?",
    "question_th": "การเข้าร่วมของฝ่ายตรงข้าม Dallas Cowboys ในหนึ่งสัปดาห์ที่มากกว่า 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_en": "How many points for maserati v12 engines in 1968?",
    "question_th": "เครื่องยนต์ maserati v12 ในปี 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_en": "What entrant had less than 3 points before 1963?",
    "question_th": "ผู้เข้าร่วมคนใดมีคะแนนน้อยกว่า 3 คะแนนก่อนปี 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_en": "Who had the pole at the French Grand Prix?",
    "question_th": "ใครได้โพลในการแข่งขัน 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_en": "Who constructed the car that won the Canadian Grand Prix?",
    "question_th": "ใครเป็นคนสร้างรถที่ชนะการแข่งขัน 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_en": "When Michael Schumacher won the race, who had the fastest lap?",
    "question_th": "เมื่อ Michael Schumacher ชนะการแข่งขัน ใครมีรอบเร็วที่สุด?",
    "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_en": "For the Player playing for the College of Kentucky and a Height of 6-7 what was their corresponding School?",
    "question_th": "สำหรับผู้เล่นที่เล่นให้กับวิทยาลัยเคนตักกี้และมีส่วนสูง 6-7 ปี โรงเรียนของพวกเขาคือโรงเรียนใด",
    "context": "CREATE TABLE table_name_72 (school VARCHAR, college VARCHAR, height VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_40 WHERE player = \"terrence jones\"",
    "question_en": "What School did Terrence Jones play for?",
    "question_th": "Terrence Jones เล่นให้กับโรงเรียนอะไร",
    "context": "CREATE TABLE table_name_40 (school VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_42 WHERE height = \"6-3\"",
    "question_en": "What Player(s) have a Height of 6-3?",
    "question_th": "ผู้เล่นคนไหนที่มีส่วนสูง 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_en": "For the player with a Height of 6-9 and College of Kentucky what was their NBA Draft?",
    "question_th": "สำหรับผู้เล่นที่มีส่วนสูง 6-9 และวิทยาลัยเคนตักกี้ 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_en": "What was the score on February 9?",
    "question_th": "คะแนนวันที่ 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_en": "What is the average point total for arrows racing team before 1983?",
    "question_th": "คะแนนรวมเฉลี่ยของทีม Arrows Racing ก่อนปี 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_en": "What team has jordan 193 chassis after 1990?",
    "question_th": "ทีมใดมีแชสซี jordan 193 หลังปี 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_en": "How many points for the cosworth v8 engine after 1985?",
    "question_th": "เครื่องยนต์ cosworth v8 หลังปี 1985 ได้กี่คะแนน?",
    "context": "CREATE TABLE table_name_23 (points VARCHAR, year VARCHAR, engine VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_6 WHERE grid < 2",
    "question_en": "What is the constructor for the driver with grid less than 2?",
    "question_th": "ตัวสร้างสำหรับไดรเวอร์ที่มีกริดน้อยกว่า 2 คืออะไร?",
    "context": "CREATE TABLE table_name_6 (constructor VARCHAR, grid INTEGER)"
  },
  {
    "answer": "SELECT position FROM table_name_12 WHERE player = \"aaron williams\"",
    "question_en": "What Position did Aaron Williams play?",
    "question_th": "Aaron Williams เล่นตำแหน่งอะไร?",
    "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_en": "At Position of guard, from the School/Club Team Notre Dame, how many Years for Jazz did that person play?",
    "question_th": "ตำแหน่งการ์ดจากทีมโรงเรียน/คลับนอเทรอดาม คนนั้นเล่นให้กับแจ๊สมากี่ปีแล้ว?",
    "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_en": "Which School/Club Team did Andre Wakefield play for?",
    "question_th": "Andre Wakefield เล่นให้กับทีมโรงเรียน/สโมสรใด",
    "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_en": "What is the Nationality of the player who had Position of guard from School/Club Team Notre Dame?",
    "question_th": "ผู้เล่นที่ได้รับตำแหน่งการ์ดจากทีมโรงเรียน/สโมสรนอเทรอดามมีสัญชาติอะไร?",
    "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_en": "What School/Club Team is Player Howard Wood from?",
    "question_th": "ผู้เล่น Howard Wood มาจากทีมโรงเรียน/สโมสรใด",
    "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_en": "What School/Club Team is Player Aaron Williams from?",
    "question_th": "ผู้เล่น Aaron Williams มาจากทีมโรงเรียน/สโมสรใด",
    "context": "CREATE TABLE table_name_5 (school_club_team VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT street_address FROM table_name_9 WHERE floors = \"5\"",
    "question_en": "What is the street address of the building with 5 floors?",
    "question_th": "อาคาร 5 ชั้น ตั้งอยู่ที่ใด?",
    "context": "CREATE TABLE table_name_9 (street_address VARCHAR, floors VARCHAR)"
  },
  {
    "answer": "SELECT street_address FROM table_name_94 WHERE floors = \"40\"",
    "question_en": "What is the street address of the building with 40 floors?",
    "question_th": "ที่อยู่ของอาคาร 40 ชั้น คืออะไร?",
    "context": "CREATE TABLE table_name_94 (street_address VARCHAR, floors VARCHAR)"
  },
  {
    "answer": "SELECT years_as_tallest FROM table_name_53 WHERE floors = \"44\"",
    "question_en": "What were the years the building with 44 floors was tallest?",
    "question_th": "อาคาร 44 ชั้นสูงที่สุดกี่ปี?",
    "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_en": "What is the street address of Oliver Building?",
    "question_th": "ที่อยู่ของ 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_en": "Can you tell me the Winning party of 2003 that has the Constituency of aberdeen north?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าพรรคที่ชนะในปี 2546 ที่มีเขตเลือกตั้งของอเบอร์ดีนเหนือ?",
    "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_en": "Can you tell me the lowest Rank that has the Constituency of strathkelvin and bearsden?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าอันดับต่ำสุดที่มีการเลือกตั้งเป็น strathkelvin และ 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_en": "Can you tell me the sum of Swing to gain that has Constituency of caithness, sutherland and easter ross?",
    "question_th": "คุณช่วยบอกฉันถึงผลรวมของ Swing ที่จะได้รับที่มีการเลือกตั้งแบบ caithness, sutherland และ 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_en": "What's the Time/Retired of Laps of 75?",
    "question_th": "เวลา / เกษียณของรอบ 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_en": "Which Driver has Laps larger than 78, and a Time/Retired of + 1:09.4?",
    "question_th": "นักแข่งคนใดมีรอบมากกว่า 78 และเวลา/เกษียณที่ + 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_en": "Hows many Laps are in a Grid of 4?",
    "question_th": "ตาราง 4 มีกี่รอบ?",
    "context": "CREATE TABLE table_name_72 (laps VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_42 WHERE away_team = \"collingwood\"",
    "question_en": "What venue did the away team Collingwood play at?",
    "question_th": "ทีมเยือนคอลลิงวูดเล่นที่สนามใด?",
    "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_en": "What is the score of the away team that played at Kardinia Park?",
    "question_th": "ทีมเยือนเล่นที่คาร์ดิเนีย ปาร์ค สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_33 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_2 WHERE venue = \"kardinia park\"",
    "question_en": "What is the name of the away team that played at Kardinia Park?",
    "question_th": "ทีมเยือนที่เล่นที่คาร์ดิเนีย ปาร์ค ชื่ออะไร?",
    "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_en": "What is the attendance in the bye week after week 5?",
    "question_th": "การเข้าร่วมในสัปดาห์ลาก่อนหลังจากสัปดาห์ที่ 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_en": "What location had 1:59:12 in time?",
    "question_th": "สถานที่ใดมีเวลา 1:59:12 น.?",
    "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_en": "What is the score for the away team of north melbourne?",
    "question_th": "ทีมเยือน นอร์ธ เมลเบิร์น สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_79 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_46 WHERE venue = \"victoria park\"",
    "question_en": "Which home team plays at victoria park?",
    "question_th": "เจ้าบ้านทีมไหนเล่นที่วิคตอเรีย พาร์ค?",
    "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_en": "what is the competition for the event team all-round in the year before 1913?",
    "question_th": "การแข่งขันของทีมอีเวนท์รอบด้านในปีก่อน พ.ศ. 2456 คืออะไร?",
    "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_en": "what is the event for the year less than 1913 with the position of 2nd?",
    "question_th": "งานประจำปีน้อยกว่า พ.ศ. 2456 ครองตำแหน่งที่ 2 เป็นอย่างไร?",
    "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_en": "what is the competition in paris for the parallel bars with a position of 1st?",
    "question_th": "การแข่งขันในปารีสสำหรับบาร์คู่ขนานที่มีตำแหน่งที่ 1 คืออะไร?",
    "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_en": "what is the competition in a year after 1911 with the position of 1st for the rings?",
    "question_th": "การแข่งขันในหนึ่งปีหลังจากปี 1911 โดยตำแหน่งที่ 1 ของวงแหวนคืออะไร?",
    "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_en": "what is the year that the position was 1st in paris?",
    "question_th": "อันดับ 1 ในปารีสปีไหนคะ?",
    "context": "CREATE TABLE table_name_26 (year VARCHAR, position VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_16 WHERE venue = \"mcg\"",
    "question_en": "Which team plays their home matches at the mcg Venue?",
    "question_th": "ทีมใดเล่นนัดเหย้าที่สนาม mcg?",
    "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_en": "What host has an original air date of june 11, 2007?",
    "question_th": "พิธีกรคนไหนมีกำหนดออกอากาศเดิมวันที่ 11 มิถุนายน 2550?",
    "context": "CREATE TABLE table_name_11 (host VARCHAR, original_airdate VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_96 WHERE record = \"3-2\"",
    "question_en": "Where is the location of a team with a 3-2 record?",
    "question_th": "ที่ตั้งของทีมที่มีสถิติ 3-2 อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_96 (location VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT res FROM table_name_67 WHERE record = \"4-2\"",
    "question_en": "What is the result of the team with the 4-2 record?",
    "question_th": "ผลงานทีมที่มีสถิติ 4-2 เป็นอย่างไร?",
    "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_en": "What was St Kilda's away team score?",
    "question_th": "คะแนนทีมเยือนของเซนต์คิลดาเป็นเท่าไหร่?",
    "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_en": "What was the attendance at Moorabbin Oval?",
    "question_th": "การเข้าร่วมที่ 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_en": "Who was Melbourne's away team opponent?",
    "question_th": "คู่ต่อสู้ทีมเยือนของเมลเบิร์นคือใคร?",
    "context": "CREATE TABLE table_name_48 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT crowd FROM table_name_19 WHERE away_team = \"footscray\"",
    "question_en": "What was the attendance at the Footscray away game?",
    "question_th": "การมีส่วนร่วมในเกมเยือนฟุตสเครย์เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_19 (crowd VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_54 WHERE date = \"14 june 2008\"",
    "question_en": "Tell me the competition that happened on 14 june 2008",
    "question_th": "เล่าการแข่งขันที่เกิดขึ้นวันที่ 14 มิถุนายน 2551 หน่อย",
    "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_en": "Tell me the score for Venue of tanteen recreation ground, st. george's",
    "question_th": "บอกคะแนนสถานที่จัดงานลานนันทนาการทันทีน ซ. ของจอร์จ",
    "context": "CREATE TABLE table_name_43 (score VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(_number_of_weeks) FROM table_name_74 WHERE season = \"3 – spring 2008\"",
    "question_en": "How many weeks are associated with Season 3 – spring 2008?",
    "question_th": "ซีซั่น 3 - ฤดูใบไม้ผลิ 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_en": "Who won when robert kudelski finished with under 13 weeks?",
    "question_th": "ใครชนะเมื่อโรเบิร์ต คูเดลสกี้จบการแข่งขันด้วยเวลาต่ำกว่า 13 สัปดาห์?",
    "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–3\"",
    "question_en": "What is the average attendance when Brewers are the opponent with a score of 6–3?",
    "question_th": "ผู้เข้าร่วมโดยเฉลี่ยเมื่อ Brewers เป็นคู่ต่อสู้ด้วยคะแนน 6–3 คือเท่าใด",
    "context": "CREATE TABLE table_name_68 (attendance INTEGER, opponent VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_81 WHERE date = \"june 10\"",
    "question_en": "What loss occurred on June 10?",
    "question_th": "การสูญเสียอะไรเกิดขึ้นในวันที่ 10 มิถุนายน?",
    "context": "CREATE TABLE table_name_81 (loss VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_36 WHERE score = \"5–4\"",
    "question_en": "Who is the opponent with a score of 5–4?",
    "question_th": "คู่ต่อสู้ที่มีคะแนน 5–4 คือใคร?",
    "context": "CREATE TABLE table_name_36 (opponent VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_70 WHERE result = \"w 28-17\"",
    "question_en": "What is the week for Result of w 28-17?",
    "question_th": "สัปดาห์ที่ผลลัพธ์ของ 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_en": "What is the avarage Attendance for the Date of october 26, 1947?",
    "question_th": "จำนวนผู้เข้าร่วมเฉลี่ยสำหรับวันที่ 26 ตุลาคม 2490 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_45 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT years FROM table_name_70 WHERE name = \"arapohue school\"",
    "question_en": "Can you tell me the Years that has the Name of arapohue school?",
    "question_th": "ช่วยบอกชั้นปีที่มีชื่อโรงเรียนอาราโปฮิวหน่อยได้ไหม?",
    "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_en": "Can you tell me the lowest Decile that has the Area of matakohe, and the Roll larger than 86?",
    "question_th": "คุณช่วยบอก Decile ต่ำสุดที่มีพื้นที่ Matakohe และม้วนที่ใหญ่กว่า 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_en": "Can you tell me the total number of Roll that has the Area of aranga?",
    "question_th": "คุณช่วยบอกจำนวนม้วนทั้งหมดที่มีพื้นที่อารังกาได้ไหม",
    "context": "CREATE TABLE table_name_95 (roll VARCHAR, area VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_95 WHERE roll > 419",
    "question_en": "Can you tell me the Name that has the Roll larger than 419?",
    "question_th": "คุณช่วยบอกชื่อที่มีม้วนใหญ่กว่า 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_en": "Which total number of Week has an Opponent of at new orleans saints, and an Attendance larger than 53,448?",
    "question_th": "จำนวนสัปดาห์ทั้งหมดที่มีฝ่ายตรงข้ามของนักบุญนิวออร์ลีนส์และมีผู้เข้าร่วมมากกว่า 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_en": "Which Attendance has a Result of w 51-21?",
    "question_th": "การเข้าร่วมใดมีผลเป็น 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_en": "Who was the Away team at Arden Street Oval?",
    "question_th": "ทีมเยือนที่ 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_en": "What is the average top-25 value for majors that have more than 0 wins?",
    "question_th": "ค่าเฉลี่ย 25 อันดับแรกสำหรับวิชาเอกที่ชนะมากกว่า 0 เป็นเท่าใด",
    "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_en": "What is the most number of cuts made that had more than 7 events played and more than 2 top-25s?",
    "question_th": "จำนวนการตัดตัวมากที่สุดที่มีการเล่นมากกว่า 7 รายการและมากกว่า 25 อันดับสูงสุดคือเท่าใด",
    "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_en": "For top-25 values under 2, what is the average number of cuts made?",
    "question_th": "สำหรับค่า 25 อันดับแรกที่ต่ำกว่า 2 จำนวนการตัดโดยเฉลี่ยคือเท่าใด",
    "context": "CREATE TABLE table_name_54 (cuts_made INTEGER, top_25 INTEGER)"
  },
  {
    "answer": "SELECT election FROM table_name_26 WHERE seats > 57 AND dáil = \"24th\"",
    "question_en": "With a dail of 24th and more than 57 seats, what is the election?",
    "question_th": "ด้วยสกอร์ 24 กว่า 57 ที่นั่ง เลือกตั้งอะไร?",
    "context": "CREATE TABLE table_name_26 (election VARCHAR, seats VARCHAR, dáil VARCHAR)"
  },
  {
    "answer": "SELECT MAX(seats) FROM table_name_61 WHERE share_of_votes = \"45.3%\" AND total_seats < 166",
    "question_en": "with shares of 45.3% and total seats less than 166. what is the greatest number of seat?",
    "question_th": "มีหุ้น 45.3% และจำนวนที่นั่งทั้งหมดไม่ถึง 166 ที่นั่ง จำนวนที่นั่งสูงสุดคือเท่าใด?",
    "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_en": "with a share of 44.2% and 77 seats, what is the greatest seat total?",
    "question_th": "ด้วยส่วนแบ่ง 44.2% มี 77 ที่นั่ง รวมที่นั่งสูงสุดคือเท่าไร?",
    "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_en": "What is the long in 1994?",
    "question_th": "ยาวในปี 1994 คืออะไร?",
    "context": "CREATE TABLE table_name_60 (long VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_6 WHERE long = \"67\"",
    "question_en": "Which team has a long of 67?",
    "question_th": "ทีมไหนยาว67ครับ?",
    "context": "CREATE TABLE table_name_6 (team VARCHAR, long VARCHAR)"
  },
  {
    "answer": "SELECT ravg FROM table_name_27 WHERE ratt = \"9\"",
    "question_en": "What is the RAvg of the year with Ratt of 9?",
    "question_th": "RAvg ของปีที่มี Ratt เป็น 9 คืออะไร?",
    "context": "CREATE TABLE table_name_27 (ravg VARCHAR, ratt VARCHAR)"
  },
  {
    "answer": "SELECT ratt FROM table_name_97 WHERE long = \"78\"",
    "question_en": "What is the Ratt of the year with a 78 long?",
    "question_th": "รัตแห่งปีที่มีความยาว 78 คืออะไร?",
    "context": "CREATE TABLE table_name_97 (ratt VARCHAR, long VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_64 WHERE ravg = \"1.3\"",
    "question_en": "Which team has a Ravg of 1.3?",
    "question_th": "ทีมไหนมี Ravg อยู่ที่ 1.3?",
    "context": "CREATE TABLE table_name_64 (team VARCHAR, ravg VARCHAR)"
  },
  {
    "answer": "SELECT rate FROM table_name_55 WHERE year = \"17 years\"",
    "question_en": "What is the rate of 17 years?",
    "question_th": "อายุ 17 ปี อัตราเท่าไร?",
    "context": "CREATE TABLE table_name_55 (rate VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT samurai FROM table_name_97 WHERE stampede = \"t. mask\"",
    "question_en": "Name the samurai for stampede of t. mask",
    "question_th": "ตั้งชื่อซามูไรสำหรับการแตกตื่นของที หน้ากาก",
    "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_en": "Which series is based in Toronto on may 18?",
    "question_th": "ซีรีส์ใดที่ถ่ายทำในโตรอนโตในวันที่ 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_en": "What is the combined crowd in Vancouver on may 22?",
    "question_th": "ฝูงชนที่แวนคูเวอร์รวมกันในวันที่ 22 พฤษภาคมคือเท่าใด",
    "context": "CREATE TABLE table_name_43 (attendance INTEGER, home VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT 2012 FROM table_name_82 WHERE 2005 = \"314\"",
    "question_en": "Tell me the 2012 when 2005 is 314",
    "question_th": "บอกฉันว่าปี 2012 เมื่อปี 2005 เป็น 314",
    "context": "CREATE TABLE table_name_82 (Id VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_85 WHERE caps = 13",
    "question_en": "What position does the player with 13 caps play?",
    "question_th": "นักเตะ 13 แคป เล่นตำแหน่งไหน?",
    "context": "CREATE TABLE table_name_85 (position VARCHAR, caps VARCHAR)"
  },
  {
    "answer": "SELECT SUM(caps) FROM table_name_30 WHERE player = \"mike macdonald\"",
    "question_en": "How many caps for mike macdonald?",
    "question_th": "ไมค์ แมคโดนัลด์ กี่แคปคะ?",
    "context": "CREATE TABLE table_name_30 (caps INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_1 WHERE round < 3",
    "question_en": "Tell me the position for round less than 3",
    "question_th": "บอกตำแหน่งรอบน้อยกว่า3ครับ",
    "context": "CREATE TABLE table_name_1 (position VARCHAR, round INTEGER)"
  },
  {
    "answer": "SELECT nationality FROM table_name_19 WHERE position = \"d\"",
    "question_en": "Name the nationality for d",
    "question_th": "ตั้งชื่อสัญชาติสำหรับ ง",
    "context": "CREATE TABLE table_name_19 (nationality VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT fuel__trans FROM table_name_15 WHERE colour = \"grey & red\"",
    "question_en": "What sort of Fuel/Trans does the Grey & Red locomotive have?",
    "question_th": "หัวรถจักรสีเทาและแดงมีน้ำมันเชื้อเพลิง/ทรานส์ประเภทใดบ้าง?",
    "context": "CREATE TABLE table_name_15 (fuel__trans VARCHAR, colour VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_34 WHERE name = \"the cub/john\"",
    "question_en": "What is the status of the Cub/John locomotive?",
    "question_th": "สถานะของหัวรถจักร Cub/John คืออะไร?",
    "context": "CREATE TABLE table_name_34 (status VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT built FROM table_name_22 WHERE fuel__trans = \"diesel-electric\"",
    "question_en": "What is the manufacturer, found under the Built column, that made locomotives with a Fuel/Trans of diesel-electric?",
    "question_th": "ผู้ผลิตรายใดที่พบใต้คอลัมน์ Built ที่ผลิตตู้รถไฟที่มีเชื้อเพลิง/ทรานส์เป็นดีเซล-ไฟฟ้า",
    "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_en": "What is found in the Built column of the locomotive with 0-4-0 wheels that is still in service?",
    "question_th": "พบอะไรบ้างในคอลัมน์ Built ของรถจักรล้อ 0-4-0 ที่ยังให้บริการอยู่?",
    "context": "CREATE TABLE table_name_8 (built VARCHAR, wheels VARCHAR, status VARCHAR)"
  },
  {
    "answer": "SELECT colour FROM table_name_42 WHERE built = \"minirail 1954\"",
    "question_en": "What is the color of the locomotive built by Minirail 1954?",
    "question_th": "หัวรถจักรที่สร้างโดย 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_en": "What's the total number of rounds with a win result at the sf 5: stadium event?",
    "question_th": "จำนวนรอบทั้งหมดที่ผลชนะในงาน SF 5: Stadium คือเท่าใด",
    "context": "CREATE TABLE table_name_65 (round VARCHAR, res VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_26 WHERE opponent = \"fábio maldonado\"",
    "question_en": "What location was fábio maldonado the opponent at?",
    "question_th": "ฟาบิโอ มัลโดนาโด ลงแข่งขันในตำแหน่งใด?",
    "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_en": "How many skaters have a Rank in FS of 3, and a Rank in SP larger than 4?",
    "question_th": "มีนักสเก็ตกี่คนที่มีอันดับใน FS เท่ากับ 3 และมีอันดับใน SP มากกว่า 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_en": "What is the average SP rank for skaters with a Rank in FS larger than 2, and a Final Rank larger than 5?",
    "question_th": "อันดับ SP เฉลี่ยสำหรับนักสเก็ตที่มีอันดับใน FS มากกว่า 2 และอันดับสุดท้ายมากกว่า 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_en": "What tournament is listed as A in 1972 and 2R in 1975?",
    "question_th": "ทัวร์นาเมนต์ใดที่ถูกระบุว่าเป็น A ในปี 1972 และ 2R ในปี 1975",
    "context": "CREATE TABLE table_name_69 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT career_w_l FROM table_name_82 WHERE 1976 = \"a\"",
    "question_en": "What is theW-L of the tournament listed as A for 1976?",
    "question_th": "W-L ของทัวร์นาเมนต์ที่ระบุเป็น A สำหรับปี 1976 คืออะไร?",
    "context": "CREATE TABLE table_name_82 (career_w_l VARCHAR)"
  },
  {
    "answer": "SELECT 1977 FROM table_name_12 WHERE tournament = \"us open\"",
    "question_en": "What is the listing for the US Open in 1977?",
    "question_th": "รายการ US Open ในปี 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_en": "What is the career W-L of the tournament that is listed as A in 1968 and 4R in 1974?",
    "question_th": "WL อาชีพของทัวร์นาเมนต์ที่ระบุเป็น A ในปี 1968 และ 4R ในปี 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_en": "What is the combined consumption of 1.6 16v?",
    "question_th": "ปริมาณการใช้รวมของ 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_en": "What is the power of the engine with a combined consumption of (gas/ethanol) and the k7m hi-torque code?",
    "question_th": "กำลังของเครื่องยนต์ที่มีอัตราการสิ้นเปลือง (แก๊ส/เอทานอล) และรหัสแรงบิดสูง k7m เป็นเท่าใด",
    "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_en": "What is the combined consumption of the engine with the code k9k 796?",
    "question_th": "อัตราสิ้นเปลืองของเครื่องยนต์รหัส 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_en": "What is the torque of the engine with a type 16 valves dohc and a code k4m hi-flex?",
    "question_th": "แรงบิดของเครื่องยนต์แบบ 16 วาล์ว dohc และรหัส 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_en": "Who had the highest assists on the November 13 game?",
    "question_th": "ใครแอสซิสต์ได้มากที่สุดในเกมวันที่ 13 พฤศจิกายน?",
    "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–6, 4–6, 5–7\"",
    "question_en": "What is the most recent date for a singles final with the score of 1–6, 4–6, 5–7?",
    "question_th": "วันที่ล่าสุดสำหรับรอบชิงชนะเลิศประเภทเดี่ยวด้วยคะแนน 1–6, 4–6, 5–7 คืออะไร?",
    "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–2, 5–7, 6–4, 6–2\"",
    "question_en": "What was the championship that had final score of 6–2, 5–7, 6–4, 6–2 and was on a clay surface?",
    "question_th": "อะไรคือแชมป์ที่มีคะแนนสุดท้าย 6–2, 5–7, 6–4, 6–2 และอยู่บนพื้นดินเหนียว?",
    "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íctor pecci\"",
    "question_en": "What was the score in the final, that Víctor Pecci was the opponent and winner after 1984?",
    "question_th": "คะแนนในรอบชิงชนะเลิศคือเท่าไร โดยที่วิคเตอร์ เปชชี เป็นคู่ต่อสู้และเป็นผู้ชนะหลังปี 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–6, 6–4, 5–7\"",
    "question_en": "Which championship had a score in the final of 3–6, 6–4, 5–7?",
    "question_th": "แชมป์รายการใดมีคะแนนในรอบชิงชนะเลิศ 3–6, 6–4, 5–7?",
    "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_en": "What is the grid total when there are 37 laps?",
    "question_th": "ตารางรวมเมื่อมี 37 รอบเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_57 (grid VARCHAR, laps VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_19 WHERE grid < 13 AND laps < 9",
    "question_en": "What constructor has a grid less than 13 with under 9 laps?",
    "question_th": "Constructor ใดมีกริดน้อยกว่า 13 และมีรอบน้อยกว่า 9 รอบ",
    "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_en": "What year was the Competition of World Junior Championships with a 20th (qf) position?",
    "question_th": "การแข่งขัน World Junior Championships ด้วยอันดับที่ 20 (qf) ในปีใด?",
    "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_en": "What was the notes of the 400 m event before 2004 with a position of 12th (h)?",
    "question_th": "อะไรคือบันทึกของเหตุการณ์ 400 ม. ก่อนปี 2547 ด้วยอันดับที่ 12 (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_en": "Which venue had a note of 3:34.88 after 2003?",
    "question_th": "สนามใดมีโน้ต 3:34.88 หลังปี 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_en": "What were the notes of the All-Africa Games before 2007?",
    "question_th": "อะไรคือบันทึกของ All-Africa Games ก่อนปี 2550",
    "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_en": "Which event in 2007 had a position of 5th?",
    "question_th": "งานใดในปี 2550 มีอันดับที่ 5?",
    "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_en": "How many attended the game on 12/17 with stephen jackson as the leading scorer?",
    "question_th": "มีกี่คนที่เข้าร่วมเกมในวันที่ 12/17 โดยมีสตีเฟน แจ็คสันเป็นผู้ทำประตูนำ",
    "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_en": "WHAT WAS THE SCORE IN THE FINAL PLAYED AGAINST JOSE CHECA-CALVO IN THE SANT CUGAT TOURNAMENT ?",
    "question_th": "คะแนนในรอบชิงชนะเลิศที่เล่นกับโฮเซ่ เชคา-คาลโวในการแข่งขัน SANT CUGAT เป็นเท่าใด",
    "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_en": "WHAT WAS THE SCORE IN THE FINAL AGAINST RABIE CHAKI?",
    "question_th": "คะแนนในรอบชิงชนะเลิศกับ 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_en": "What was the away team's score when Collingwood was the home team?",
    "question_th": "เมื่อคอลลิงวูดเป็นเจ้าบ้านสกอร์เท่าไหร่?",
    "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_en": "Who was the home team for the game played at Victoria Park?",
    "question_th": "ใครคือทีมเจ้าบ้านในเกมที่เล่นที่วิคตอเรีย พาร์ค?",
    "context": "CREATE TABLE table_name_87 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_33 WHERE away_team = \"fitzroy\"",
    "question_en": "Who was the home team when Fitzroy was the away team?",
    "question_th": "เมื่อฟิตซ์รอยเป็นทีมเยือนคือใคร?",
    "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_en": "Who was the home team for the game played at Lake Oval?",
    "question_th": "ใครคือทีมเจ้าบ้านในเกมที่เล่นที่เลคโอวัล?",
    "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_en": "Who was the opponent in the championship in Johannesburg, South Africa?",
    "question_th": "คู่ต่อสู้ในการแข่งขันชิงแชมป์ที่เมืองโจฮันเนสเบิร์ก ประเทศแอฟริกาใต้ คือใคร?",
    "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_en": "What is the lowest amount of wins a manager with more than 0.526 pct., ranked higher than 37, and 947 losses has?",
    "question_th": "จำนวนการชนะต่ำสุดที่ผู้จัดการมีมากกว่า 0.526 เปอร์เซ็นต์ อันดับที่สูงกว่า 37 และขาดทุน 947 ครั้งคือเท่าใด",
    "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_en": "I want the total number of people in the crowd for essendon home team",
    "question_th": "ขอยอดคนดูทีมเหย้าเอสเซนดอนครับ",
    "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_en": "How many grids have 102 laps and a Time/Retired of + 6.18?",
    "question_th": "มีกี่กริดที่มี 102 รอบ และเวลา/เกษียณที่ + 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_en": "How many laps did innes ireland drive with a grid higher than 11?",
    "question_th": "Innes Ireland ขับไปกี่รอบโดยมีกริดสูงกว่า 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_en": "What is the average grid that has a Constructor of brm, tony maggs, and a Laps larger than 102?",
    "question_th": "ตารางเฉลี่ยที่มีตัวสร้าง brm, tony maggs และรอบที่ใหญ่กว่า 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_en": "I want the score for 23 july 1992",
    "question_th": "ฉันต้องการคะแนนของวันที่ 23 กรกฎาคม 1992",
    "context": "CREATE TABLE table_name_86 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_64 WHERE date = \"23 july 1992\"",
    "question_en": "I want the venue for 23 july 1992",
    "question_th": "ฉันต้องการสถานที่สำหรับวันที่ 23 กรกฎาคม 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_en": "What is the Time/Retired that has a Grid smaller than 8, 73 laps, and a Constructor of williams - bmw?",
    "question_th": "เวลา/เกษียณที่มีกริดเล็กกว่า 8, 73 รอบ และตัวสร้างของ 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_en": "On what date was Richmond playing as an away team?",
    "question_th": "ริชมอนด์ลงเล่นเป็นทีมเยือนวันไหน?",
    "context": "CREATE TABLE table_name_32 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT crowd FROM table_name_99 WHERE venue = \"victoria park\"",
    "question_en": "What is the crowd size for Victoria park?",
    "question_th": "ขนาดฝูงชนสำหรับ 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_en": "What is the average crowd size for princes park?",
    "question_th": "ขนาดฝูงชนโดยเฉลี่ยสำหรับ Princes Park คือเท่าไร?",
    "context": "CREATE TABLE table_name_97 (crowd INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT transfer_window FROM table_name_15 WHERE name = \"giuly\"",
    "question_en": "Name the transfer wind for giuly",
    "question_th": "ตั้งชื่อลมโอนสำหรับ giuli",
    "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_en": "Name the transfer fee for transfer status for fra",
    "question_th": "ตั้งชื่อค่าธรรมเนียมการโอนสำหรับสถานะการโอนสำหรับฟรา",
    "context": "CREATE TABLE table_name_24 (transfer_fee VARCHAR, status VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_8 WHERE name = \"belletti\"",
    "question_en": "Name the status for belletti",
    "question_th": "ตั้งชื่อสถานะของเบลเล็ตติ",
    "context": "CREATE TABLE table_name_8 (status VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT moving_to FROM table_name_22 WHERE country = \"fra\"",
    "question_en": "Name the moving to for fra",
    "question_th": "ตั้งชื่อการย้ายไปสำหรับ 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_en": "Name the transfer window of realmadrid",
    "question_th": "ตั้งชื่อหน้าต่างโอนย้ายของเรอัลมาดริด",
    "context": "CREATE TABLE table_name_12 (transfer_window VARCHAR, moving_to VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_24 WHERE moving_to = \"chelsea\"",
    "question_en": "Name the country moving to chelsea",
    "question_th": "ตั้งชื่อประเทศที่ย้ายไปเชลซี",
    "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_en": "Who was the leading scorer of the game on 20 February 2008?",
    "question_th": "ใครคือผู้ทำประตูสูงสุดของเกมเมื่อวันที่ 20 กุมภาพันธ์ พ.ศ. 2551?",
    "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_en": "What is the visitor team of the game with Rudy Gay (23) as the leading scorer?",
    "question_th": "ทีมเยือนของเกมนี้คือทีมไหน โดยมี รูดี้ เกย์ (23) เป็นผู้ทำประตูนำ?",
    "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_en": "What is the home team of the game where the Grizzlies were the visitor team and Rudy Gay (21) was the leading scorer?",
    "question_th": "เจ้าบ้านในเกมนี้คือทีมใดที่กริซลี่ส์เป็นทีมเยือน และรูดี้ เกย์ (21) เป็นผู้ทำประตูนำ?",
    "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_en": "What is the record of the game on 5 February 2008?",
    "question_th": "บันทึกของเกมเมื่อวันที่ 5 กุมภาพันธ์ พ.ศ. 2551 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_87 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT written_by FROM table_name_33 WHERE production_code = \"ad1d09\"",
    "question_en": "tell me the writer of production code ad1d09.",
    "question_th": "บอกฉันว่าผู้เขียนรหัสการผลิต 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_en": "tell me the director of the production code ad1d02.",
    "question_th": "บอกฉันผู้อำนวยการรหัสการผลิต 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_en": "Which team has a Reg GP of 0, a pick number under 136 with a player named Regan Darby?",
    "question_th": "ทีมใดมี Reg GP เป็น 0 หมายเลขเลือกต่ำกว่า 136 โดยมีผู้เล่นชื่อ 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_en": "What planet orbits in 3.23 days?",
    "question_th": "ดาวเคราะห์ดวงใดโคจรรอบเวลา 3.23 วัน",
    "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_en": "What type of planet has a radial velocity of 45.2 m/s?",
    "question_th": "ดาวเคราะห์ชนิดใดมีความเร็วในแนวรัศมี 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_en": "What type of planet has a semimajor axis of 0.07 AU?",
    "question_th": "ดาวเคราะห์ประเภทใดมีแกนกึ่งเอก 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_en": "What is the city where the Telstra Dome is?",
    "question_th": "Telstra Dome ตั้งอยู่ในเมืองอะไร?",
    "context": "CREATE TABLE table_name_83 (city VARCHAR, stadium VARCHAR)"
  },
  {
    "answer": "SELECT d_41 FROM table_name_97 WHERE d_46 = \"r 6\"",
    "question_en": "Name the D 41 which has a D 46 of r 6",
    "question_th": "ตั้งชื่อ D 41 ซึ่งมี D 46 เป็น 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_en": "Name the D 41 which has a D 43 of r 18",
    "question_th": "ตั้งชื่อ D 41 ซึ่งมี D 43 เป็น 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_en": "Name the R 52 which has a D 44 of d 44",
    "question_th": "ตั้งชื่อ R 52 ซึ่งมี D 44 ของ 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→\"",
    "question_en": "Name the D 46 which has a D 43 of majority→",
    "question_th": "ตั้งชื่อ D 46 ซึ่งมี D 43 เป็นส่วนใหญ่→",
    "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_en": "Name the D 42 which has a D 46 of r 26",
    "question_th": "ตั้งชื่อ D 42 ซึ่งมี D 46 เป็น 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_en": "Name the D 42 which has a D 44 of d 44",
    "question_th": "ตั้งชื่อ D 42 ซึ่งมี D 44 ของ 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_en": "How many wins did SD Eibar, which played less than 38 games, have?",
    "question_th": "เอสดี เออิบาร์ ที่เล่นไม่ถึง 38 นัด ชนะได้กี่ครั้ง?",
    "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_en": "What is the highest number of draws a club with less than 20 wins, less than 41 points, and less than 27 goals have?",
    "question_th": "จำนวนการเสมอสูงสุดที่สโมสรทำได้น้อยกว่า 20 แต้ม น้อยกว่า 41 แต้ม และทำได้น้อยกว่า 27 ประตู คือเท่าไร?",
    "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_en": "What is the lowest goal difference a club with more than 13 wins, less than 8 losses, and less than 11 draws has?",
    "question_th": "อะไรคือผลต่างประตูต่ำสุดที่สโมสรชนะมากกว่า 13 ครั้ง แพ้น้อยกว่า 8 ครั้ง และเสมอน้อยกว่า 11 ครั้ง?",
    "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_en": "What is the number of played games a club with more than 71 points and less than 8 losses has?",
    "question_th": "จำนวนเกมที่เล่นของสโมสรที่มีคะแนนมากกว่า 71 คะแนนและแพ้น้อยกว่า 8 ครั้งเป็นเท่าใด?",
    "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_en": "What is the lowest goal difference a club with 61 goals against and less than 11 draws has?",
    "question_th": "อะไรคือผลต่างประตูต่ำสุดที่สโมสรทำได้ 61 ประตูและเสมอน้อยกว่า 11 ครั้ง?",
    "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_en": "Which Crowd has a Venue of princes park?",
    "question_th": "Crowd ใดมีสถานที่จัดงาน Princes Park?",
    "context": "CREATE TABLE table_name_25 (crowd INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_82 WHERE venue = \"mcg\"",
    "question_en": "Which Away team has a Venue of mcg?",
    "question_th": "ทีมเยือนทีมไหนมีสนาม 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_en": "Which average Crowd has a Home team of essendon?",
    "question_th": "Crowd โดยเฉลี่ยคนไหนที่มีทีมเหย้าของ 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_en": "When was terry cook picked?",
    "question_th": "เทอร์รี่คุกถูกเลือกเมื่อใด?",
    "context": "CREATE TABLE table_name_92 (pick INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_99 WHERE player = \"todd hammel\"",
    "question_en": "What position is todd hammel?",
    "question_th": "ท็อดด์ แฮมเมลอยู่ตำแหน่งอะไร?",
    "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_en": "What is the score of the away team that played Essendon?",
    "question_th": "ทีมเยือนที่เล่นเอสเซนดอนมีสกอร์เท่าไหร่?",
    "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_en": "How many people attended the North Melbourne game?",
    "question_th": "มีผู้เข้าร่วมเกม North Melbourne กี่คน?",
    "context": "CREATE TABLE table_name_71 (crowd INTEGER, home_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_9 WHERE away_team = \"carlton\"",
    "question_en": "Where did Carlton play?",
    "question_th": "คาร์ลตันเล่นที่ไหน?",
    "context": "CREATE TABLE table_name_9 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_95 WHERE venue = \"vfl park\"",
    "question_en": "Which team played at VFL Park?",
    "question_th": "ทีมไหนเล่นที่วีเอฟแอล พาร์ค?",
    "context": "CREATE TABLE table_name_95 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_83 WHERE college = \"arizona\"",
    "question_en": "Which player has a College of arizona?",
    "question_th": "ผู้เล่นคนไหนมีวิทยาลัยแอริโซนา?",
    "context": "CREATE TABLE table_name_83 (player VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_39 WHERE hometown = \"phoenix, az\"",
    "question_en": "Which school has a Hometown of phoenix, az?",
    "question_th": "โรงเรียนไหนมีบ้านเกิดของฟีนิกซ์ อาซ?",
    "context": "CREATE TABLE table_name_39 (school VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT nba_draft FROM table_name_57 WHERE school = \"huntington high school\"",
    "question_en": "Which NBA draft has a School of huntington high school?",
    "question_th": "NBA Draft ใดที่มี 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_en": "Which NBA draft has a School of st. mary's high school?",
    "question_th": "ร่าง NBA ใดที่มีโรงเรียนเซนต์ โรงเรียนมัธยมของแมรี่เหรอ?",
    "context": "CREATE TABLE table_name_91 (nba_draft VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_6 WHERE player = \"donte greene\"",
    "question_en": "Which school has a Player of donte greene?",
    "question_th": "โรงเรียนไหนมีผู้เล่น 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_en": "For R. Magjistari scores over 12, what is the highest number of points?",
    "question_th": "สำหรับคะแนนของ R. Magjistari มากกว่า 12 คะแนน คะแนนสูงสุดคือเท่าใด",
    "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_en": "For R. Magjistari scores under 6, D. Tukiqi scores of 6, and ranks under 5, what is the average A. Krajka score?",
    "question_th": "สำหรับคะแนนของ R. Magjistari ต่ำกว่า 6 คะแนน, D. Tukiqi ได้คะแนน 6 และอันดับที่ต่ำกว่า 5 คะแนนของ A. Krajka โดยเฉลี่ยคือเท่าใด",
    "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ória de setúbal\"",
    "question_en": "Where did the Vitória de Setúbal club place in the 2006-2007 season?",
    "question_th": "สโมสรวิตอเรีย เด เซตูบัลอยู่ที่ไหนในฤดูกาล 2006-2007?",
    "context": "CREATE TABLE table_name_13 (club VARCHAR)"
  },
  {
    "answer": "SELECT SUM(long) FROM table_name_12 WHERE yards < 197 AND player = \"matt nagy\"",
    "question_en": "Name the sum of Long for yards less than 197 and players of matt nagy",
    "question_th": "ตั้งชื่อผลรวมของลองสำหรับหลาที่น้อยกว่า 197 และผู้เล่นของ 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_en": "Who was the visitor team in tampa bay?",
    "question_th": "ทีมเยือนแทมปาเบย์คือใคร?",
    "context": "CREATE TABLE table_name_26 (visitor VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_55 WHERE record = \"32-29-8\"",
    "question_en": "Who had a 32-29-8 record at home?",
    "question_th": "ใครมีสถิติ 32-29-8 ในบ้านบ้าง?",
    "context": "CREATE TABLE table_name_55 (home VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_99 WHERE record = \"33-30-8\"",
    "question_en": "Who had a 33-30-8 record at home?",
    "question_th": "ใครมีสถิติ 33-30-8 ในบ้านบ้าง?",
    "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_en": "What was the home teams score when North Melbourne played as the away team?",
    "question_th": "ทีมเหย้ามีสกอร์เท่าไรเมื่อนอร์ท เมลเบิร์น เล่นเป็นทีมเยือน?",
    "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_en": "Who was the away team at Windy Hill?",
    "question_th": "ทีมเยือนวินดี้ฮิลล์คือใคร?",
    "context": "CREATE TABLE table_name_11 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_22 WHERE home_team = \"fitzroy\"",
    "question_en": "Where did Fitzroy play as the home team?",
    "question_th": "ฟิตซ์รอยเล่นเป็นเจ้าบ้านที่ไหน?",
    "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_en": "Who was away team at the home game of south melbourne?",
    "question_th": "ใครคือทีมเยือนในเกมเหย้าของเซาธ์ เมลเบิร์น?",
    "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_en": "What did the away team score when they visited south melbourne?",
    "question_th": "ทีมเยือนได้คะแนนเท่าไหร่เมื่อไปเยือนเซาธ์ เมลเบิร์น?",
    "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_en": "What is the highest crowd with north melbourne as away team?",
    "question_th": "ทีมเยือนเมลเบิร์นเหนือมีผู้เข้าชมมากที่สุดคือทีมใด?",
    "context": "CREATE TABLE table_name_10 (crowd INTEGER, away_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_88 WHERE home_team = \"south melbourne\"",
    "question_en": "Which venue has a Home team of south melbourne?",
    "question_th": "สนามไหนมีทีมเหย้าของเซาธ์ เมลเบิร์น?",
    "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_en": "What home score has an Away team of fitzroy?",
    "question_th": "สกอร์บ้านไหนมีทีมเยือนฟิตซ์รอย?",
    "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_en": "Which home team has a Venue of corio oval?",
    "question_th": "เจ้าบ้านทีมไหนมีสนาม โคริโอ รี?",
    "context": "CREATE TABLE table_name_61 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_58 WHERE away_team = \"carlton\"",
    "question_en": "Which team has an Away team of carlton?",
    "question_th": "ทีมไหนมีทีมเยือนของคาร์ลตัน?",
    "context": "CREATE TABLE table_name_58 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_21 WHERE away_team = \"richmond\"",
    "question_en": "Which date has an Away team of richmond?",
    "question_th": "นัดเยือนริชมอนด์มีวันไหน?",
    "context": "CREATE TABLE table_name_21 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(area__km²_) FROM table_name_85 WHERE capital = \"matanzas\" AND population__2005_ < 670427",
    "question_en": "How many regions have a capital of matanzas and a 2005 population under 670427?",
    "question_th": "มีกี่ภูมิภาคที่มีเมืองหลวงของ Matanzas และมีประชากรในปี 2005 ต่ำกว่า 670427",
    "context": "CREATE TABLE table_name_85 (area__km²_ VARCHAR, capital VARCHAR, population__2005_ VARCHAR)"
  },
  {
    "answer": "SELECT AVG(area__km²_) FROM table_name_25 WHERE capital = \"camagüey\" AND population___percentage_ > 7.02",
    "question_en": "What is the average area that has a Capital of camagüey, with a Population (%) larger than 7.02?",
    "question_th": "พื้นที่เฉลี่ยที่มีเมืองหลวงเป็น camagüey โดยมีประชากร (%) มากกว่า 7.02 คือข้อใด",
    "context": "CREATE TABLE table_name_25 (area__km²_ INTEGER, capital VARCHAR, population___percentage_ VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_76 WHERE attendance > 18 OFFSET 630",
    "question_en": "What was the score of the Kings game attended by more than 18,630 people?",
    "question_th": "คะแนนของเกม Kings ที่มีผู้เข้าร่วมมากกว่า 18,630 คนเป็นเท่าใด",
    "context": "CREATE TABLE table_name_76 (score VARCHAR, attendance INTEGER)"
  },
  {
    "answer": "SELECT AVG(attendance) FROM table_name_92 WHERE record = \"1–5–0\"",
    "question_en": "What was the average attendance for a Kings game when they had a record of 1–5–0?",
    "question_th": "ผู้เข้าชมเกม Kings โดยเฉลี่ยเป็นเท่าใดเมื่อพวกเขาทำสถิติ 1–5–0?",
    "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_en": "What team has over 1 tournament title, 0 in the regular season, and 2 total?",
    "question_th": "ทีมใดมีมากกว่า 1 รายการทัวร์นาเมนต์, 0 รายการในฤดูกาลปกติ และรวม 2 รายการ",
    "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_en": "What is the total on average for teams with 3 tournaments?",
    "question_th": "ค่าเฉลี่ยรวมของทีมที่มี 3 ทัวร์นาเมนต์เป็นเท่าใด?",
    "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_en": "what is the lowest grid when the laps is more than 7 and the driver is rubens barrichello?",
    "question_th": "ตารางต่ำสุดเมื่อรอบมากกว่า 7 และคนขับคือ 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_en": "what is the grid when the laps is more than 0, the time/retired is engine and the driver is pedro de la rosa?",
    "question_th": "ตารางจะเป็นอย่างไรเมื่อรอบมากกว่า 0 เวลา/เลิกใช้คือเครื่องยนต์ และคนขับคือเปโดร เด ลา โรซา",
    "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_en": "who is the driver with the grid of 13?",
    "question_th": "ใครคือคนขับที่มีตาราง 13?",
    "context": "CREATE TABLE table_name_84 (driver VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT SUM(championships) FROM table_name_92 WHERE established = 1976",
    "question_en": "How many championships did the team or teams established in 1976 win?",
    "question_th": "ทีมหรือทีมที่ก่อตั้งในปี 1976 คว้าแชมป์ได้กี่ครั้ง?",
    "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_en": "Which WNBA team that won at least 2 championships was established most recently?",
    "question_th": "ทีม WNBA ทีมใดที่คว้าแชมป์อย่างน้อย 2 รายการที่ได้รับการจัดตั้งขึ้นล่าสุด?",
    "context": "CREATE TABLE table_name_54 (established INTEGER, league VARCHAR, championships VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_39 WHERE league = \"wnba\"",
    "question_en": "What are the venues that host WNBA games?",
    "question_th": "สถานที่จัดการแข่งขัน WNBA คือสถานที่ใดบ้าง",
    "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_en": "Name the bowling style of the player born 16 march 1974",
    "question_th": "ตั้งชื่อลักษณะการเล่นโบว์ลิ่งของผู้เล่นที่เกิดวันที่ 16 มีนาคม พ.ศ. 2517",
    "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_en": "Name the batting style for heath streak",
    "question_th": "ตั้งชื่อรูปแบบการตีบอลสำหรับแนวเฮลธ์",
    "context": "CREATE TABLE table_name_57 (batting_style VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_87 WHERE floors = 52",
    "question_en": "What is the name of a building that has 52 floors?",
    "question_th": "ตึกที่มี 52 ชั้น ชื่อว่าอะไร?",
    "context": "CREATE TABLE table_name_87 (name VARCHAR, floors VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(floors) FROM table_name_95 WHERE name = \"custom house tower\"",
    "question_en": "How many floors does the Custom House Tower have?",
    "question_th": "คัสตอม เฮ้าส์ ทาวเวอร์ มีกี่ชั้น?",
    "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_en": "How many floors does the building on 800 Boylston Street have?",
    "question_th": "อาคารบนถนน 800 Boylston มีกี่ชั้น",
    "context": "CREATE TABLE table_name_52 (floors INTEGER, street_address VARCHAR)"
  },
  {
    "answer": "SELECT street_address FROM table_name_17 WHERE name = \"prudential tower\"",
    "question_en": "What is the street address for the Prudential Tower building?",
    "question_th": "ที่อยู่ของอาคารพรูเด็นเชียล ทาวเวอร์ คืออะไร?",
    "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_en": "There is a building at 800 Boylston Street, how many floors does it have?",
    "question_th": "มีอาคารแห่งหนึ่งอยู่ที่ 800 Boylston Street มีกี่ชั้น?",
    "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_en": "What was the highest number of WJC Jews that had a WJC rank of 6 and a ARDA rank of more than 8?",
    "question_th": "จำนวนชาวยิว WJC สูงสุดที่มีอันดับ WJC อยู่ที่ 6 และอันดับ ARDA มากกว่า 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_en": "What was the number of WJC Jews with a WJC rank of 6?",
    "question_th": "ชาวยิว WJC ที่มีอันดับ WJC 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_en": "How many number of WJC Jews in the Los Angeles Metro Area has a ARDA rank of more than 2?",
    "question_th": "ชาวยิว WJC ในเขตเมโทรลอสแอนเจลิสจำนวนเท่าใดที่มีอันดับ ARDA มากกว่า 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_en": "Who drove during the race with less than 19 laps and a time listed as ignition?",
    "question_th": "ใครเป็นผู้ขับรถในระหว่างการแข่งขันที่มีรอบน้อยกว่า 19 รอบและเวลาที่ระบุว่าเป็นการจุดระเบิด?",
    "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_en": "What is his record for fights that went over 2 rounds in the Event of raging wolf 6: mayhem in the mist?",
    "question_th": "ประวัติการชกที่เกิน 2 รอบใน 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_en": "What is the highest number of people that attended a game at Moorabbin Oval?",
    "question_th": "จำนวนคนที่เข้าร่วมเกมที่ 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_en": "What is the least amount of people that attended a game when Essendon was the away team?",
    "question_th": "จำนวนคนที่เข้าชมเกมน้อยที่สุดเมื่อเอสเซนดอนเป็นทีมเยือนคือเท่าใด?",
    "context": "CREATE TABLE table_name_83 (crowd INTEGER, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_74 WHERE away_team = \"south melbourne\"",
    "question_en": "Which date did South Melbourne play as the away team?",
    "question_th": "เซาธ์ เมลเบิร์น ลงเล่นเป็นทีมเยือนวันไหน?",
    "context": "CREATE TABLE table_name_74 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_3 WHERE driver = \"jackie stewart\"",
    "question_en": "What is the constructor for Jackie Stewart's car?",
    "question_th": "ตัวสร้างรถยนต์ของ Jackie Stewart คืออะไร?",
    "context": "CREATE TABLE table_name_3 (constructor VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_54 WHERE driver = \"denny hulme\"",
    "question_en": "What is the location where Denny Hulme was the driver?",
    "question_th": "ตำแหน่งที่ Denny Hulme เป็นคนขับคือที่ไหน?",
    "context": "CREATE TABLE table_name_54 (location VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT train_no FROM table_name_87 WHERE origin = \"secunderabad junction\"",
    "question_en": "What is number of the train that originated in Secunderabad Junction?",
    "question_th": "รถไฟที่วิ่งจาก 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_en": "From where did the train that arrived in the Anand Vihar Terminal originate?",
    "question_th": "รถไฟที่มาถึงสถานีอานันท์วิหารมาจากไหน?",
    "context": "CREATE TABLE table_name_29 (origin VARCHAR, destination VARCHAR)"
  },
  {
    "answer": "SELECT origin FROM table_name_15 WHERE train_no = \"15929/30\"",
    "question_en": "From where did Train No. 15929/30 originate?",
    "question_th": "รถไฟหมายเลข 15929/30 มาจากไหน?",
    "context": "CREATE TABLE table_name_15 (origin VARCHAR, train_no VARCHAR)"
  },
  {
    "answer": "SELECT frequency FROM table_name_82 WHERE destination = \"bangalore\"",
    "question_en": "What is the frequency of the train to Bangalore?",
    "question_th": "รถไฟไปบังคาลอร์มีความถี่เท่าไร?",
    "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_en": "How many Norwegian Americans have Norwegian Americans (2000) of 109,744?",
    "question_th": "ชาวนอร์เวย์อเมริกันมีชาวอเมริกันเชื้อสายนอร์เวย์กี่คน (2000) จาก 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_en": "Which state has a Percent (2009) of 6.2%?",
    "question_th": "รัฐใดมีเปอร์เซ็นต์ (2552) 6.2%",
    "context": "CREATE TABLE table_name_95 (state VARCHAR, percent__2009_ VARCHAR)"
  },
  {
    "answer": "SELECT holding FROM table_name_56 WHERE component = \"customers\"",
    "question_en": "What is the holding of the customers?",
    "question_th": "การถือครองของลูกค้าคืออะไร?",
    "context": "CREATE TABLE table_name_56 (holding VARCHAR, component VARCHAR)"
  },
  {
    "answer": "SELECT allied_unrelated FROM table_name_61 WHERE allied_related = \"common\"",
    "question_en": "What Allied-Unrelated is labeled as \"common\"?",
    "question_th": "อะไรที่เป็นพันธมิตรที่ไม่เกี่ยวข้องกันมีป้ายกำกับว่า \"ทั่วไป\"?",
    "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_en": "Which integrated has an allied-related of some shared?",
    "question_th": "ซึ่งบูรณาการได้มีพันธมิตรที่เกี่ยวข้องบ้างแบ่งปัน?",
    "context": "CREATE TABLE table_name_40 (integrated VARCHAR, allied_related VARCHAR)"
  },
  {
    "answer": "SELECT integrated FROM table_name_11 WHERE allied_related = \"centralized\"",
    "question_en": "What integrated has an allied-related of centralized?",
    "question_th": "บูรณาการอะไรที่เกี่ยวข้องกับพันธมิตรของการรวมศูนย์?",
    "context": "CREATE TABLE table_name_11 (integrated VARCHAR, allied_related VARCHAR)"
  },
  {
    "answer": "SELECT component FROM table_name_21 WHERE integrated = \"one\"",
    "question_en": "What component has an integrated of one?",
    "question_th": "องค์ประกอบใดที่มีการบูรณาการขององค์ประกอบหนึ่ง?",
    "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_en": "How many candidates had 0 percent of the vote in 1999?",
    "question_th": "มีผู้สมัครกี่คนที่ได้คะแนนเสียง 0 เปอร์เซ็นต์ในปี 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óbili (44)\"",
    "question_en": "What is the score of the game with Manu ginóbili (44) as the leading scorer?",
    "question_th": "เกมนี้มานู จิโนบิลี (44) เป็นผู้ทำประตูนำได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_27 (score VARCHAR, leading_scorer VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_60 WHERE date = \"february 21, 2008\"",
    "question_en": "What is the record of the game on February 21, 2008?",
    "question_th": "บันทึกของเกมเมื่อวันที่ 21 กุมภาพันธ์ 2551 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_60 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_74 WHERE leading_scorer = \"manu ginóbili (34)\"",
    "question_en": "Who was the home team of the game with manu ginóbili (34) as the leading scorer?",
    "question_th": "ทีมเจ้าบ้านในเกมนี้คือใคร โดยมี มานู จิโนบิลี (34) เป็นผู้ทำประตูนำ?",
    "context": "CREATE TABLE table_name_74 (home VARCHAR, leading_scorer VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_59 WHERE date = \"february 25, 2008\"",
    "question_en": "What is the record of the game on February 25, 2008?",
    "question_th": "บันทึกของเกมเมื่อวันที่ 25 กุมภาพันธ์ 2551 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_59 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_7 WHERE moving_to = \"valenciennes\"",
    "question_en": "What type is shown with a moving to of valenciennes?",
    "question_th": "ประเภทใดที่แสดงถึงการย้ายไปยังวาลองเซียน?",
    "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_en": "What is the transfer window with n/a as the Transfer fee, free agent for the Moving to, and Joe Sagar as the name?",
    "question_th": "หน้าต่างการโอนย้ายที่ไม่มีค่าธรรมเนียมการโอน, ตัวแทนอิสระสำหรับการย้ายไปยัง และชื่อโจ ซาการ์คืออะไร?",
    "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_en": "What is the name of the person with a type of end of contract, nat of sco, and the Moving to is cardiff city?",
    "question_th": "คนที่หมดสัญญาประเภท nat of sco และย้ายมาอยู่ที่คาร์ดิฟฟ์ซิตี้ชื่ออะไร?",
    "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_en": "What Transfer window that has a Transfer fee of free, with a Moving to of derby county?",
    "question_th": "หน้าต่างการโอนใดที่มีค่าธรรมเนียมการโอนฟรีพร้อมการย้ายไปยังดาร์บี้เคาน์ตี้?",
    "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_en": "What is the first game number that had attendance of 56,505?",
    "question_th": "หมายเลขเกมแรกที่มีผู้เข้าร่วม 56,505 คืออะไร?",
    "context": "CREATE TABLE table_name_98 (game INTEGER, attendance VARCHAR)"
  },
  {
    "answer": "SELECT crowd FROM table_name_59 WHERE away_team = \"footscray\"",
    "question_en": "What was the crowd size for the away team footscray?",
    "question_th": "ขนาดฝูงชนสำหรับฟุตสเครย์ของทีมเยือนคือเท่าใด?",
    "context": "CREATE TABLE table_name_59 (crowd VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT race_name FROM table_name_4 WHERE circuit = \"goodwood\"",
    "question_en": "Which Race Name has Goodwood in the Curcuit?",
    "question_th": "ชื่อการแข่งขันใดมี Goodwood อยู่ใน 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_en": "Which Constructor has the Winning Driver, Jim Clark and the Circuit, Syracuse?",
    "question_th": "คอนสตรัคเตอร์คนไหนมีไดร์เวอร์ที่ชนะ Jim Clark และ 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_en": "Which Constructor has the Winning Driver, Jo Siffert?",
    "question_th": "คอนสตรัคเตอร์คนไหนมีตัวขับเคลื่อนที่ชนะ Jo Siffert?",
    "context": "CREATE TABLE table_name_72 (constructor VARCHAR, winning_driver VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_49 WHERE circuit = \"pergusa\"",
    "question_en": "Which Constructor has Pergusa in the Circuit?",
    "question_th": "Constructor ใดที่มี Pergusa อยู่ในวงจร?",
    "context": "CREATE TABLE table_name_49 (constructor VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_89 WHERE venue = \"mcg\"",
    "question_en": "On what date was a game played at MCG?",
    "question_th": "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_en": "What is the average total medals of the team with 2 gold and less than 1 silver?",
    "question_th": "เหรียญรวมเฉลี่ยของทีมที่มี 2 เหรียญทองและน้อยกว่า 1 เหรียญเงินคือเท่าไร?",
    "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_en": "What is the lowest amount of silver medals Iceland, who has less than 87 medals, has?",
    "question_th": "ไอซ์แลนด์ได้เหรียญเงินต่ำที่สุดที่ได้มาไม่ถึง 87 เหรียญได้เท่าไหร่?",
    "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_en": "What is the least amount of bronze Andorra, who has more than 6 total medals, has?",
    "question_th": "อันดอร์ราทองแดงที่ได้เหรียญรวมมากกว่า 6 เหรียญมีจำนวนน้อยที่สุดคือเท่าใด",
    "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_en": "What is the lowest amount of bronze Liechtenstein, who has more than 11 gold, has?",
    "question_th": "ลิกเตนสไตน์ทองแดงที่มีมากกว่า 11 เหรียญทองมีจำนวนต่ำสุดเท่าไร?",
    "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_en": "What is the average amount of silver medals Montenegro, who has less than 15 bronze and more than 11 total medals, has?",
    "question_th": "โดยเฉลี่ยแล้วเหรียญเงินของประเทศมอนเตเนโกรที่ได้น้อยกว่า 15 เหรียญทองแดง และมากกว่า 11 เหรียญทั้งหมด มีเท่าใด",
    "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_en": "What is the lower turnout that has a byut of 50.7 and an ou psd smaller than 36.8?",
    "question_th": "ผลิตภัณฑ์ขั้นต่ำที่มี byut 50.7 และ ou psd น้อยกว่า 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_en": "What is the voter registration that has a BYut of 48.2?",
    "question_th": "การลงทะเบียนผู้มีสิทธิเลือกตั้งที่มี BYut เท่ากับ 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_en": "Who was the home team at VFL Park?",
    "question_th": "ทีมเหย้าที่วีเอฟแอลพาร์คคือใคร?",
    "context": "CREATE TABLE table_name_22 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_78 WHERE venue = \"kardinia park\"",
    "question_en": "Who was the home team at Kardinia Park?",
    "question_th": "ทีมเหย้าที่คาร์ดิเนีย พาร์คคือใคร?",
    "context": "CREATE TABLE table_name_78 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT paper_type FROM table_name_3 WHERE denomination = \"1 cent\"",
    "question_en": "What type of paper is the 1 cent denominations made on?",
    "question_th": "ธนบัตร 1 เซ็นต์ใช้กระดาษประเภทใด",
    "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_en": "What is the paper type that the one that was issued on 26 july 2007 done on?",
    "question_th": "กระดาษที่ออกเมื่อวันที่ 26 กรกฎาคม 2550 เป็นกระดาษประเภทใด",
    "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_en": "What did the home team footscray score?",
    "question_th": "เจ้าบ้านฟุตสเครย์ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_65 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(crowd) FROM table_name_95 WHERE home_team = \"footscray\"",
    "question_en": "What was the total crowd size for the him team footscray?",
    "question_th": "ขนาดฝูงชนทั้งหมดสำหรับฟุตสเครย์ของทีมเขาคือเท่าใด?",
    "context": "CREATE TABLE table_name_95 (crowd VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_57 WHERE venue = \"corio oval\"",
    "question_en": "What is the Home team at corio oval?",
    "question_th": "ทีมเหย้าที่โคริโอโอวัลเป็นทีมไหน?",
    "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_en": "What livery was worn on the date before 1936, with the description of Gresley RF?",
    "question_th": "ชุดเครื่องแบบใดที่สวมใส่ในวันก่อนปี 1936 โดยมีคำอธิบายของ 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_en": "Which number and name has the description Gresley RB and a date before 1937?",
    "question_th": "หมายเลขและชื่อใดมีคำอธิบาย Gresley RB และวันที่ก่อนปี 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_en": "Who is the owner before 1940, who had a number and name of no. 1222?",
    "question_th": "ซึ่งเป็นเจ้าของก่อนปี พ.ศ. 2483 ซึ่งมีหมายเลขและชื่อหมายเลข 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_en": "What type has a scratch of 750 GB?",
    "question_th": "ประเภทใดมีรอยขีดข่วน 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_en": "What is the Cache for a Number 64 with a Memory of 24 gb qpi 5.86 gt/s?",
    "question_th": "แคชสำหรับหมายเลข 64 ที่มีหน่วยความจำ 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_en": "What is the Memory for a Number 32 with a Clock of 2.26ghz?",
    "question_th": "หน่วยความจำสำหรับหมายเลข 32 พร้อมนาฬิกา 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_en": "Of those acquired in 2008, where were they born?",
    "question_th": "ในบรรดาที่ได้มาในปี 2551 พวกเขาเกิดที่ไหน?",
    "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_en": "What is the shooting preference of Matthew Myers, acquired in 2010?",
    "question_th": "แมทธิว ไมเยอร์ส ที่ได้รับในปี 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_en": "In what year was player Bruce Graham acquired?",
    "question_th": "ผู้เล่น Bruce Graham ได้มาในปีใด?",
    "context": "CREATE TABLE table_name_18 (acquired VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT d_42_√ FROM table_name_67 WHERE d_44_√ = \"r 36 √\"",
    "question_en": "Name the D 42 √ when it has D 44 √ of r 36 √",
    "question_th": "ตั้งชื่อ D 42 √ เมื่อมี D 44 √ ของ r 36 √",
    "context": "CREATE TABLE table_name_67 (d_42_√ VARCHAR, d_44_√ VARCHAR)"
  },
  {
    "answer": "SELECT d_45_o FROM table_name_30 WHERE d_46_o = \"d 26\"",
    "question_en": "Name the D 45 O that has D 46 O of d 26",
    "question_th": "ตั้งชื่อ D 45 O ที่มี D 46 O จาก 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_en": "Name the least goals for goal difference of 7 and losses more than 13",
    "question_th": "ตั้งชื่อประตูน้อยที่สุดสำหรับผลต่างประตู 7 และแพ้มากกว่า 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_en": "Tell me the total number of positions with goal difference more than -17 and played less than 38",
    "question_th": "บอกจำนวนรวมตำแหน่งที่มีผลต่างประตูมากกว่า -17 และเล่นน้อยกว่า 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_en": "What was the attendance when South Melbourne played as the home team?",
    "question_th": "เซาท์ เมลเบิร์น ลงเล่นเป็นทีมเหย้า ผู้เข้าร่วมงานมีอะไรบ้าง?",
    "context": "CREATE TABLE table_name_21 (crowd INTEGER, home_team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(crowd) FROM table_name_80 WHERE away_team = \"footscray\"",
    "question_en": "What was the attendance when Footscray played as the away team?",
    "question_th": "การเข้าร่วมงานเมื่อฟุตสเครย์เล่นเป็นทีมเยือน?",
    "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_en": "What is the lowest quantity for GWR Nos. 696, 779, 93 5 from the manufacturer Peckett and Sons?",
    "question_th": "ปริมาณต่ำสุดสำหรับ GWR Nos. 696, 779, 93 5 จากผู้ผลิต 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_en": "What is the lowest capacity with an opening larger than 2015 in Trabzon?",
    "question_th": "ความจุต่ำสุดที่มีการเปิดมากกว่าปี 2015 ในแทรบซอนคือเท่าไร?",
    "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_en": "What is the average opening at Stadyum Samsun with a capacity smaller than 34,658?",
    "question_th": "ค่าเฉลี่ยการเปิดที่ Stadyum Samsun ด้วยความจุน้อยกว่า 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_en": "What is the Years for Jazz Club at Oregon State?",
    "question_th": "ปีสำหรับแจ๊สคลับที่ 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_en": "Which player is Andre Owens in Year for Jazz?",
    "question_th": "อังเดร โอเว่นส์ นักเตะคนไหนที่เหมาะกับการเล่นดนตรีแจ๊ส?",
    "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_en": "What is the Year for Jazz club of Houston?",
    "question_th": "ปีสำหรับสโมสรแจ๊สแห่งฮูสตันคือปีใด",
    "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_en": "What is position does Dan O'Sullivan play?",
    "question_th": "Dan O'Sullivan เล่นตำแหน่งอะไร?",
    "context": "CREATE TABLE table_name_58 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_21 WHERE school_club_team = \"kansas\"",
    "question_en": "What position in the club team of Kansas?",
    "question_th": "ตำแหน่งอะไรในทีมสโมสรแคนซัส?",
    "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_en": "Who is the center position of Years for Jazz, Greg Ostertag?",
    "question_th": "ใครคือตำแหน่งเซนเตอร์ของ 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_en": "What is the Date for the Away team University?",
    "question_th": "วันที่สำหรับทีมเยือนมหาวิทยาลัยคือวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_73 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_19 WHERE venue = \"junction oval\"",
    "question_en": "What is the Home team score at junction oval?",
    "question_th": "คะแนนทีมเหย้าที่วงรีจังก์ชั่นเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_19 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_48 WHERE home_team = \"essendon\"",
    "question_en": "What Date did the Home team play in essendon?",
    "question_th": "ทีมเหย้าลงเล่นที่เอสเซนดอนวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_48 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_1 WHERE of_1 = \"locotenent\"",
    "question_en": "What country has OF-1 Locotenent?",
    "question_th": "ประเทศใดบ้างที่มี 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_en": "What country has OF-1 Locotenent?",
    "question_th": "ประเทศใดบ้างที่มี 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_en": "Which OF-5 is in Ghana?",
    "question_th": "OF-5 อันไหนอยู่ในกานา?",
    "context": "CREATE TABLE table_name_48 (of_5 VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT of_4 FROM table_name_47 WHERE country = \"albania\"",
    "question_en": "What is the OF-4 of Albania?",
    "question_th": "OF-4 ของแอลเบเนียคืออะไร?",
    "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_en": "What is the total pick numbers for the CFL team Edmonton Eskimos?",
    "question_th": "หมายเลขเลือกทั้งหมดของทีม CFL 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_en": "What p;layer attended Concordia College?",
    "question_th": "บุคคลใดเข้าเรียนที่วิทยาลัยคอนคอร์เดีย",
    "context": "CREATE TABLE table_name_40 (player VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT SUM(pick__number) FROM table_name_87 WHERE position = \"ol\"",
    "question_en": "What is the total number of picks for the position of OL?",
    "question_th": "จำนวนตัวเลือกทั้งหมดสำหรับตำแหน่ง 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_en": "Name the highest week for result of w 38-13",
    "question_th": "ตั้งชื่อสัปดาห์สูงสุดสำหรับผลการแข่งขัน 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_en": "I want to know the date with attendance of 35,763",
    "question_th": "อยากทราบวันที่มีผู้เข้าร่วม 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_en": "Which series with a total of 27 albums did Dargaud edit?",
    "question_th": "Dargaud ตัดต่อซีรีส์ใดที่มีทั้งหมด 27 อัลบั้ม",
    "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_en": "What years did the magazine Vaillant and Pif run?",
    "question_th": "นิตยสาร Vaillant และ Pif จัดพิมพ์กี่ปี?",
    "context": "CREATE TABLE table_name_78 (years VARCHAR, magazine VARCHAR)"
  },
  {
    "answer": "SELECT state FROM table_name_72 WHERE current_governor = \"susana martinez\"",
    "question_en": "What state is susana martinez from?",
    "question_th": "ซูซานา มาร์ติเนซ มาจากรัฐใด",
    "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_en": "What is the Home team score when away team is hawthorn?",
    "question_th": "คะแนนทีมเหย้าเมื่อทีมเยือนเป็นฮอว์ธอร์นเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_70 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT league FROM table_name_64 WHERE team = \"ordabasy-2\"",
    "question_en": "What league is ordabasy-2 in?",
    "question_th": "ordabasy-2 อยู่ในลีกใด?",
    "context": "CREATE TABLE table_name_64 (league VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_50 WHERE away_team = \"richmond\"",
    "question_en": "On what date was Richmond hosted as the away team?",
    "question_th": "ริชมอนด์ เป็นเจ้าภาพเป็นทีมเยือนวันไหน?",
    "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_en": "Tell me the Hindu with Jewish of source: uk 2001 census",
    "question_th": "บอกฉันว่าชาวฮินดูที่มีชาวยิวมาจากแหล่งข้อมูล: การสำรวจสำมะโนประชากรของสหราชอาณาจักร พ.ศ. 2544",
    "context": "CREATE TABLE table_name_87 (hindu VARCHAR, jewish VARCHAR)"
  },
  {
    "answer": "SELECT ethnic_group FROM table_name_77 WHERE jewish = \"0.47%\"",
    "question_en": "Tell me the ethnic group for jewish of 0.47%",
    "question_th": "บอกกลุ่มชาติพันธุ์สำหรับชาวยิว 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_en": "Tell me the Hindu for ethnic group for white irish",
    "question_th": "บอกภาษาฮินดูสำหรับกลุ่มชาติพันธุ์สำหรับชาวไอริชขาวหน่อยสิ",
    "context": "CREATE TABLE table_name_4 (hindu VARCHAR, ethnic_group VARCHAR)"
  },
  {
    "answer": "SELECT ethnic_group FROM table_name_94 WHERE buddhist = \"0.19%\"",
    "question_en": "Name the ethnic group with a buddhist of 0.19%",
    "question_th": "ตั้งชื่อกลุ่มชาติพันธุ์ที่มีพุทธ 0.19%",
    "context": "CREATE TABLE table_name_94 (ethnic_group VARCHAR, buddhist VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_24 WHERE week = 8",
    "question_en": "What was the attendance of week 8?",
    "question_th": "สัปดาห์ที่ 8 มีผู้เข้าร่วมเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_24 (attendance VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_95 WHERE home_team = \"carlton\"",
    "question_en": "Who was the opponent of carlton at their home game?",
    "question_th": "ใครคือคู่ต่อสู้ของคาร์ลตันในเกมเหย้าของพวกเขา?",
    "context": "CREATE TABLE table_name_95 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_46 WHERE goal = 3",
    "question_en": "Tell me the result for 3 goals",
    "question_th": "แจ้งผล 3 ประตูครับ",
    "context": "CREATE TABLE table_name_46 (result VARCHAR, goal VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_8 WHERE date = \"november 16\"",
    "question_en": "Name the score for november 16",
    "question_th": "ทายผลคะแนนประจำวันที่ 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_en": "What is the Away Team Score of the Hawthorn Home Team?",
    "question_th": "คะแนนทีมเยือนของทีมเหย้าฮอว์ธอร์นเป็นเท่าไหร่?",
    "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_en": "What is the Away Team Score of the Collingwood Home Team?",
    "question_th": "คะแนนทีมเยือนของทีมเจ้าบ้านคอลลิงวูดเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_26 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_45 WHERE venue = \"arden street oval\"",
    "question_en": "What Away Team's venue is Arden Street Oval?",
    "question_th": "สนามของทีมเยือนคือ 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_en": "Name the least Laps for accident and gird more than 13",
    "question_th": "ตั้งชื่อรอบน้อยที่สุดสำหรับอุบัติเหตุและคาดมากกว่า 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_en": "Tell me the lowest Grid for engine and driver of emerson fittipaldi with more laps than 70",
    "question_th": "บอกตารางต่ำสุดสำหรับเครื่องยนต์และคนขับของ Emerson fittipaldi ที่มีรอบมากกว่า 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_en": "In what venue was the away team South Melbourne?",
    "question_th": "ทีมเยือน เซาท์ เมลเบิร์น จัดขึ้นที่สนามใด?",
    "context": "CREATE TABLE table_name_62 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_2 WHERE away_team = \"carlton\"",
    "question_en": "Where did the away team Carlton play?",
    "question_th": "ทีมเยือน คาร์ลตัน ลงเล่นที่ไหน?",
    "context": "CREATE TABLE table_name_2 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_73 WHERE away_team = \"richmond\"",
    "question_en": "What home team played against Richmond?",
    "question_th": "ทีมเหย้าทีมใดเล่นกับริชมอนด์?",
    "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_en": "What is the smallest crowd size for punt road oval?",
    "question_th": "ขนาดฝูงชนที่เล็กที่สุดสำหรับสนามถ่อวงรีคือเท่าใด?",
    "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_en": "Which Number of people 1991 has a Percent of Slovenes 1991 of 14.4%?",
    "question_th": "ปี 1991 จำนวนคนใดที่มีเปอร์เซ็นต์ของชาวสโลวีเนียในปี 1991 ที่ 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öschenberg\"",
    "question_en": "Which Percent of Slovenes 1951 has a Number of people 1991 larger than 8, and a Village (German) of plöschenberg?",
    "question_th": "เปอร์เซ็นต์ของสโลวีเนียในปี 1951 มีจำนวนคนในปี 1991 มากกว่า 8 คน และหมู่บ้าน (ภาษาเยอรมัน) แห่ง plöschenberg",
    "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_en": "Where was Collingwood's away game played?",
    "question_th": "เกมเยือนของคอลลิงวูดเล่นที่ไหน?",
    "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_en": "What was the away team's score at Western Oval?",
    "question_th": "ทีมเยือนเวสเทิร์น โอวัล ทำได้เท่าไหร่?",
    "context": "CREATE TABLE table_name_74 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_53 WHERE away_team = \"collingwood\"",
    "question_en": "When did Collingwood play an away game?",
    "question_th": "คอลลิงวูดเล่นเกมเยือนเมื่อไหร่?",
    "context": "CREATE TABLE table_name_53 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_66 WHERE venue = \"junction oval\"",
    "question_en": "What team is based at junction oval?",
    "question_th": "ทีมใดประจำอยู่ที่วงรีจังก์ชัน?",
    "context": "CREATE TABLE table_name_66 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_68 WHERE venue = \"junction oval\"",
    "question_en": "What is the team set at junction oval?",
    "question_th": "ทีมชุดไหนที่วงรีชุมทาง?",
    "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_en": "What driver has a grid under 12 with a Time/Retired of + 3 laps?",
    "question_th": "นักแข่งคนใดมีตารางที่ต่ำกว่า 12 โดยมีเวลา/เกษียณ + 3 รอบ",
    "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_en": "What is the high grid for osella - alfa romeo, and a Laps larger than 61?",
    "question_th": "เส้นกริดสูงสำหรับ osella - alfa romeo และรอบที่ใหญ่กว่า 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_en": "How many picks does Matt Moran have altogether after round 6?",
    "question_th": "Matt Moran มีตัวเลือกทั้งหมดกี่ตัวหลังจากรอบที่ 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_en": "What position after round 8 has a pick less than 270?",
    "question_th": "ตำแหน่งไหนหลังยกที่ 8 มีสิทธิเลือกน้อยกว่า 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_en": "What is the total number of rounds that UCLA has?",
    "question_th": "UCLA มีทั้งหมดกี่รอบ?",
    "context": "CREATE TABLE table_name_41 (round VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT MIN(round) FROM table_name_2 WHERE school = \"georgia tech\"",
    "question_en": "What is the lowest round for Georgia Tech?",
    "question_th": "รอบต่ำสุดของ 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_en": "What is the average round for Georgia Tech with a pick greater than 103?",
    "question_th": "รอบเฉลี่ยของ Georgia Tech ที่มีตัวเลือกมากกว่า 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_en": "Which player is featured for 2001-2002?",
    "question_th": "นักเตะคนไหนถูกนำเสนอในปี 2544-2545?",
    "context": "CREATE TABLE table_name_28 (player VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_77 WHERE hometown = \"queens, ny\"",
    "question_en": "Which player is from Queens, NY?",
    "question_th": "ผู้เล่นคนไหนมาจากเมืองควีนส์ รัฐนิวยอร์ก?",
    "context": "CREATE TABLE table_name_77 (player VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_6 WHERE player = \"maya moore\"",
    "question_en": "Where did Maya Moore attend school?",
    "question_th": "Maya Moore เข้าโรงเรียนที่ไหน?",
    "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_en": "What is the difference with a loss smaller than 5 and points lower than 32?",
    "question_th": "อะไรคือความแตกต่างกับการสูญเสียที่น้อยกว่า 5 และจุดที่ต่ำกว่า 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_en": "Which loss had a player lower than 18?",
    "question_th": "การสูญเสียครั้งใดที่มีผู้เล่นอายุต่ำกว่า 18 ปี?",
    "context": "CREATE TABLE table_name_63 (lost INTEGER, played INTEGER)"
  },
  {
    "answer": "SELECT winner FROM table_name_88 WHERE year = 2012 AND result = \"15–0\"",
    "question_en": "Who won the 2012 game that had a score of 15–0?",
    "question_th": "ใครชนะในเกมปี 2012 ที่มีคะแนน 15–0",
    "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_en": "Tell me the week for result of l 31-27, and an Attendance smaller than 85,865",
    "question_th": "บอกฉันสัปดาห์สำหรับผลลัพธ์ของ l 31-27 และผู้เข้าร่วมน้อยกว่า 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_en": "Who had notes of Prizzi's Honor?",
    "question_th": "ใครมีโน้ตของ 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_en": "What Superlative had a record set of 12 nominations?",
    "question_th": "Superlative ใดได้รับการเสนอชื่อเข้าชิงถึง 12 ครั้ง?",
    "context": "CREATE TABLE table_name_23 (superlative VARCHAR, record_set VARCHAR)"
  },
  {
    "answer": "SELECT MAX(laps) FROM table_name_3 WHERE driver = \"joe nemechek\"",
    "question_en": "What is the highest number of laps completed by driver Joe Nemechek?",
    "question_th": "นักแข่ง 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_en": "What is the home team score when they played at Victoria Park?",
    "question_th": "สกอร์ทีมเจ้าบ้านตอนเล่นที่วิคตอเรีย พาร์คเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_7 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_76 WHERE home_team = \"fitzroy\"",
    "question_en": "What was the venue when the home team was Fitzroy?",
    "question_th": "สนามไหนเมื่อเจ้าบ้านเป็นฟิตซ์รอย?",
    "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_en": "What is the date for proposed for revere textile prints corporation",
    "question_th": "วันที่เสนอชื่อบริษัท Rerere Textile Prints คือเมื่อใด",
    "context": "CREATE TABLE table_name_40 (proposed VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT deleted FROM table_name_71 WHERE county = \"tolland\"",
    "question_en": "What is the deleted for tolland?",
    "question_th": "ค่าผ่านทางที่ถูกลบคืออะไร?",
    "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_en": "What is the away side score when hawthorn is the home side?",
    "question_th": "สกอร์ทีมเยือนเมื่อฮอว์ธอร์นเป็นเจ้าบ้านเป็นเท่าไหร่?",
    "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_en": "What is the average lap total for grids under 19 and a Time/Retired of +4 laps?",
    "question_th": "ผลรวมรอบเฉลี่ยสำหรับกริดที่อายุต่ำกว่า 19 ปี และเวลา/เลิกใช้ +4 รอบเป็นเท่าใด",
    "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_en": "Who drive over 43 laps in grid 5?",
    "question_th": "ใครขับเกิน 43 รอบในตารางที่ 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_en": "Which Away team score has a Venue of princes park?",
    "question_th": "คะแนนทีมเยือนทีมไหนมีสนาม 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_en": "Which Away team score has a Home team of melbourne?",
    "question_th": "สกอร์ทีมเยือนทีมไหนมีเจ้าบ้านเมลเบิร์น?",
    "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 酒店風雲\"",
    "question_en": "What genre is revolving doors of vengeance 酒店風雲?",
    "question_th": "ประตูหมุนแห่งการล้างแค้น 酒店風雲 เป็นประเภทใด",
    "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_en": "What is the english title of the modern drama, episode 20, that airs on 26 sep- 21 oct?",
    "question_th": "ละครสมัยใหม่ ตอนที่ 20 ออกอากาศวันที่ 26 ก.ย.-21 ต.ค. ชื่อภาษาอังกฤษว่าอะไร?",
    "context": "CREATE TABLE table_name_82 (english_title__chinese_title_ VARCHAR, airing_date VARCHAR, genre VARCHAR, number_of_episodes VARCHAR)"
  },
  {
    "answer": "SELECT d_48_√ FROM table_name_67 WHERE d_50_o = \"d 31\"",
    "question_en": "What is the D48 when the D 50 O is d 31?",
    "question_th": "D48 คืออะไรเมื่อ D 50 O คือ d 31?",
    "context": "CREATE TABLE table_name_67 (d_48_√ VARCHAR, d_50_o VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_67 WHERE catalogue = \"tojp 60121-22\"",
    "question_en": "What was Catalogue tojp 60121-22's Date?",
    "question_th": "แค็ตตาล็อก 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_en": "What was the Date of Country of United States?",
    "question_th": "วันที่ของประเทศสหรัฐอเมริกาคืออะไร?",
    "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_en": "What Catalogue is Dated 14 november 2003, with the Format compact disc?",
    "question_th": "แค็ตตาล็อกใดลงวันที่ 14 พฤศจิกายน 2546 พร้อมฟอร์แมตคอมแพคดิสก์",
    "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_en": "What is the Label for Date of 14 November 2003, and Catalogue tojp 60121-22?",
    "question_th": "ป้ายกำกับสำหรับวันที่ 14 พฤศจิกายน พ.ศ. 2546 และแคตตาล็อก 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_en": "What Label was Catalogued tojp 60121-22?",
    "question_th": "ฉลากใดถูกจัดหมวดหมู่เป็น 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_en": "What is the record for Norway on 23 august 1981?",
    "question_th": "สถิติของนอร์เวย์เมื่อวันที่ 23 สิงหาคม 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_en": "What is the record for the 20000 m walk?",
    "question_th": "สถิติการเดิน 20,000 ม. คืออะไร?",
    "context": "CREATE TABLE table_name_12 (record VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_62 WHERE result = \"bye\"",
    "question_en": "When was the Bye week?",
    "question_th": "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_en": "Which Open 2nd VIII had a U15 6th Quad of BGS and a U16 1st VII of TSS?",
    "question_th": "Open 2nd VIII ใดที่มี U15 6th Quad ของ BGS และ U16 1st VII ของ 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_en": "What U15 3rd Quad has a U15 2nd Quad of ACGS?",
    "question_th": "U15 3rd Quad ใดที่มี U15 2nd Quad ของ 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_en": "Which U15 4th Quad had a U15 3rd Quad of BBC and U15 6th Quad of GT?",
    "question_th": "U15 4th Quad คันไหนมี U15 3rd Quad ของ BBC และ U15 6th Quad ของ 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_en": "Which U15 1st Quad had an Open 3rd VIII of BBC and U16 3rd VIII of BBC?",
    "question_th": "U15 1st Quad ใดที่มี Open 3rd VIII ของ BBC และ U16 3rd VIII ของ 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_en": "What was the nationality of the athlete with a final result of 4.50?",
    "question_th": "นักกีฬาสัญชาติอะไร ผลคะแนนสุดท้าย 4.50?",
    "context": "CREATE TABLE table_name_92 (nationality VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT athlete FROM table_name_48 WHERE result = \"4.30\"",
    "question_en": "What was the athlete with a final result of 4.30?",
    "question_th": "นักกีฬาคนไหนมีผลการแข่งขันรอบสุดท้ายเวลา 4.30 น.?",
    "context": "CREATE TABLE table_name_48 (athlete VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_68 WHERE highest_mountain = \"rettlkirchspitze\"",
    "question_en": "Which country has the Highest mountain of rettlkirchspitze?",
    "question_th": "ประเทศใดมีภูเขา 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_en": "What is the average height with the Highest mountain of hochgall?",
    "question_th": "ความสูงเฉลี่ยของภูเขา 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_en": "What US Country released an album of singles only in 1967?",
    "question_th": "ประเทศใดในสหรัฐฯ ที่ออกอัลบั้มซิงเกิลเฉพาะในปี 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_en": "What was the best album in 1965?",
    "question_th": "อัลบั้มที่ดีที่สุดในปี 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_en": "What is the result of the fight that had a tko (low kicks)?",
    "question_th": "การชกแบบ tko (เตะต่ำ) ส่งผลอย่างไร?",
    "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_en": "What event went under 3 rounds and was no contest (punch after knockdown)?",
    "question_th": "รายการใดจัดไม่เกิน 3 รอบและไม่มีการแข่งขัน (ชกต่อยน็อคดาวน์)?",
    "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_en": "What event was in hong kong and went less than 2 rounds?",
    "question_th": "งานที่ฮ่องกงแล้วไปไม่ถึง 2 รอบมีรายการอะไรบ้าง?",
    "context": "CREATE TABLE table_name_66 (event VARCHAR, round VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_2 WHERE opponent = \"carter williams\"",
    "question_en": "How many rounds was the fight against carter williams?",
    "question_th": "คาร์เตอร์ วิลเลียมส์ ชกกันกี่รอบ?",
    "context": "CREATE TABLE table_name_2 (round VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT engine FROM table_name_58 WHERE rounds = \"7-13\"",
    "question_en": "In rounds 7-13 what engine was featured?",
    "question_th": "ในรอบที่ 7-13 มีเครื่องยนต์อะไรบ้าง?",
    "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_en": "What score was conceded by Richmond?",
    "question_th": "ริชมอนด์เสียคะแนนเท่าไหร่?",
    "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_en": "What is the number of Goals on 1950-05-30?",
    "question_th": "จำนวนประตูในวันที่ 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_en": "In 1948-10-28, what were the lowest Goals in Tehran, Iran?",
    "question_th": "ในปี 1948-10-28 เป้าหมายต่ำสุดในกรุงเตหะราน ประเทศอิหร่าน คืออะไร?",
    "context": "CREATE TABLE table_name_75 (goals INTEGER, venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_16 WHERE result = \"1-3\"",
    "question_en": "In what Venue was the Result 1-3?",
    "question_th": "ผลการแข่งขัน 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_en": "In 1948-10-28, in what Venue was the Competition of International Match held?",
    "question_th": "ในปี 1948-10-28 การแข่งขันแมตช์นานาชาติจัดขึ้นที่ใด?",
    "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_en": "What was the Zakspeed 1500/4 1.5 l4 t chassis?",
    "question_th": "แชสซี Zakspeed 1500/4 1.5 l4 t คืออะไร",
    "context": "CREATE TABLE table_name_42 (chassis VARCHAR, engine VARCHAR)"
  },
  {
    "answer": "SELECT engine FROM table_name_22 WHERE driver = \"michele alboreto\"",
    "question_en": "What was the Michele Alboreto's engine?",
    "question_th": "เครื่องยนต์ของ Michele Alboreto คืออะไร?",
    "context": "CREATE TABLE table_name_22 (engine VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT AVG(rank) FROM table_name_26 WHERE candidate_name = \"antun salman\"",
    "question_en": "What is the average rank for antun salman?",
    "question_th": "อันตุน ซัลมาน อยู่อันดับเฉลี่ยเท่าไหร่?",
    "context": "CREATE TABLE table_name_26 (rank INTEGER, candidate_name VARCHAR)"
  },
  {
    "answer": "SELECT votes FROM table_name_55 WHERE gender = \"♂\" AND religion = \"☪\" AND candidate_name = \"khalil chawka\"",
    "question_en": "Khalil chawka has a gender of ♂, a religion of ☪, and how many votes?",
    "question_th": "คาลิล ชวากามีเพศ ♂ ศาสนา ☪ และได้คะแนนเสียงกี่เสียง",
    "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 = \"☪\"",
    "question_en": "Who has a religion of ☪ and more than 1853 votes?",
    "question_th": "ใครนับถือศาสนา ☪ และได้คะแนนเสียงมากกว่า 1,853 เสียง?",
    "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_en": "What is the recorder has a Track more than 11 with a time 3:06",
    "question_th": "เครื่องบันทึกมี Track มากกว่า 11 ด้วยเวลา 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_en": "Which track has a title : Just a little bit",
    "question_th": "เพลงไหนมีชื่อ : นิดหน่อย",
    "context": "CREATE TABLE table_name_64 (track INTEGER, song_title VARCHAR)"
  },
  {
    "answer": "SELECT trophy FROM table_name_78 WHERE season = \"2008–2009\"",
    "question_en": "What is the Trophy with a Season with 2008–2009?",
    "question_th": "ถ้วยรางวัลประจำฤดูกาลระหว่างปี 2551-2552 คืออะไร?",
    "context": "CREATE TABLE table_name_78 (trophy VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT wasatch FROM table_name_31 WHERE total_time = \"122:13:40\"",
    "question_en": "What Wasatch time corresponds to a total time of 122:13:40?",
    "question_th": "เวลา Wasatch สอดคล้องกับเวลารวม 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_en": "Who were the opponents in the final on 9 January 1994?",
    "question_th": "คู่ต่อสู้ในรอบชิงชนะเลิศเมื่อวันที่ 9 มกราคม พ.ศ. 2537 คือใคร?",
    "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_en": "Who was Melbourne's home team opponent?",
    "question_th": "คู่ต่อสู้เจ้าบ้านของเมลเบิร์นคือใคร?",
    "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_en": "Who was Richmond's away team opponent?",
    "question_th": "คู่ต่อสู้ทีมเยือนของริชมอนด์คือใคร?",
    "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_en": "What is the smallest value for League Cup when the League number is greater than 1, no FA Cups, and Brian Deane scoring?",
    "question_th": "ค่าที่น้อยที่สุดสำหรับลีกคัพเมื่อหมายเลขลีกมากกว่า 1 ไม่มี FA Cup และ Brian Deane ทำคะแนนได้คือเท่าใด",
    "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_en": "Name the region before 2008 when name of best 1200",
    "question_th": "ตั้งชื่อภูมิภาคก่อนปี 2008 ด้วยชื่อที่ดีที่สุด 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_en": "What method resulted in a win and a time of 4:36?",
    "question_th": "วิธีไหนชนะด้วยเวลา 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_en": "At what venue did the Essendon team play as an away team?",
    "question_th": "ทีมเอสเซนดอนเล่นเป็นทีมเยือนที่สนามใด?",
    "context": "CREATE TABLE table_name_92 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_98 WHERE venue = \"junction oval\"",
    "question_en": "Who was the home team for the game played at Junction Oval?",
    "question_th": "ใครคือทีมเจ้าบ้านในเกมที่เล่นที่ 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_en": "What was the score of the home team when the away team was Geelong?",
    "question_th": "เจ้าบ้านเมื่อทีมเยือนเป็นจีลองสกอร์เท่าไหร่?",
    "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_en": "What was the away team when the home team was South Melbourne?",
    "question_th": "ทีมเยือนเมื่อเจ้าบ้านคือเซาธ์ เมลเบิร์น คืออะไร?",
    "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_en": "What was the name of the home team playing at the Junction Oval venue?",
    "question_th": "เจ้าบ้านเล่นที่สนาม Junction Oval ชื่ออะไร?",
    "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_en": "What is the total number of the established club of Lehigh Valley Storm?",
    "question_th": "จำนวนสโมสรที่จัดตั้งขึ้นของ Lehigh Valley Storm ทั้งหมดคือเท่าไร?",
    "context": "CREATE TABLE table_name_86 (established VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT league FROM table_name_96 WHERE sport = \"baseball\"",
    "question_en": "What is the name of a league in the sport of baseball?",
    "question_th": "ลีกในกีฬาเบสบอลชื่ออะไร?",
    "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_en": "What venue does the soccer team Pennsylvania Stoners play in?",
    "question_th": "ทีมฟุตบอลเพนซิลเวเนีย สโตเนอร์ส ลงเล่นที่สนามใด?",
    "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_en": "What game number was played on March 4?",
    "question_th": "วันที่ 4 มีนาคม เล่นเกมหมายเลขอะไร?",
    "context": "CREATE TABLE table_name_67 (game__number INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_69 WHERE visitor = \"buffalo\"",
    "question_en": "What is the record when the visitor is Buffalo?",
    "question_th": "บันทึกเมื่อผู้มาเยือนคือบัฟฟาโลคืออะไร?",
    "context": "CREATE TABLE table_name_69 (record VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(attendance) FROM table_name_4 WHERE result = \"l 35-17\"",
    "question_en": "Tell me the number of attendance that has a result of l 35-17",
    "question_th": "บอกจำนวนการเข้างานที่มีผล 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_en": "I want the attendance for week larger than 10 and result of l 22-21",
    "question_th": "ฉันต้องการการเข้างานสำหรับสัปดาห์ที่มากกว่า 10 และผลลัพธ์ของ 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_en": "Name for me the total number in attendance for week before 2 and result of t 24-24",
    "question_th": "บอกชื่อจำนวนผู้เข้าร่วมทั้งหมดสำหรับสัปดาห์ก่อนวันที่ 2 และผลลัพธ์ของวันที่ 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_en": "I want the greatest attendance when the opponent is the chicago bears",
    "question_th": "ฉันต้องการเข้าร่วมมากที่สุดเมื่อคู่ต่อสู้คือหมีชิคาโก",
    "context": "CREATE TABLE table_name_64 (attendance INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT AVG(attendance) FROM table_name_16 WHERE visitor = \"phoenix\"",
    "question_en": "What is the average attendance for a game against Phoenix?",
    "question_th": "ผู้เข้าชมโดยเฉลี่ยในเกมกับฟีนิกซ์คือเท่าใด?",
    "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_en": "What was the home team in the February 22 game that Legace played in for the St. Louis Blues?",
    "question_th": "ในเกมวันที่ 22 ก.พ. เลกาซ เจ้าบ้านเจอกับทีมอะไร?",
    "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_en": "Who was Carlton's home team opponent?",
    "question_th": "คู่ต่อสู้เจ้าบ้านของคาร์ลตันคือใคร?",
    "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_en": "Who was the away team at Lake Oval?",
    "question_th": "ทีมเยือนเลคโอวัลคือใคร?",
    "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_en": "Who was South Melbourne's away team opponent?",
    "question_th": "คู่ต่อสู้ทีมเยือนของเซาธ์ เมลเบิร์นคือใคร?",
    "context": "CREATE TABLE table_name_8 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(grid) FROM table_name_89 WHERE laps = 27",
    "question_en": "What is the high grid with 27 laps?",
    "question_th": "กริดสูงที่มี 27 รอบคืออะไร?",
    "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_en": "What is the high grid that has a Time/Retired of +6 laps, and under 69 laps?",
    "question_th": "กริดสูงที่มีเวลา/เกษียณเป็น +6 รอบ และต่ำกว่า 69 รอบคืออะไร?",
    "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_en": "What's the total number of copies sold for the single that sold 206,030 in the first week?",
    "question_th": "จำนวนอัลบั้มที่ขายได้ทั้งหมดสำหรับซิงเกิลที่ขายได้ 206,030 ชุดในสัปดาห์แรกคือเท่าไร?",
    "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_en": "What was the latest release date for Ariola in Spain?",
    "question_th": "Ariola ในสเปนจะวางจำหน่ายล่าสุดเมื่อใด",
    "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_en": "What type of format was released after 1979?",
    "question_th": "รูปแบบประเภทใดที่ออกหลังปี 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_en": "On what date did Epic label start its release?",
    "question_th": "Epic label เริ่มวางจำหน่ายวันไหน?",
    "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_en": "Which game had less than 270 rebounds and a rank lower than 5?",
    "question_th": "เกมใดที่มีการรีบาวด์น้อยกว่า 270 และอันดับต่ำกว่า 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_en": "Which game did Curtis Borchardt play with more than 274 rebounds?",
    "question_th": "เคอร์ติส บอร์ชาร์ดต์ เล่นเกมใดที่มีรีบาวด์มากกว่า 274 รีบาวด์?",
    "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_en": "In game 34 Curtis Borchardt played on which team with less than 275 rebounds?",
    "question_th": "ในเกมที่ 34 Curtis Borchardt เล่นกับทีมใดที่น้อยกว่า 275 รีบาวน์?",
    "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_en": "How many rebounds occurred in a rank 4 game?",
    "question_th": "มีการรีบาวด์กี่ครั้งในเกมอันดับ 4?",
    "context": "CREATE TABLE table_name_73 (rebounds VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT games FROM table_name_88 WHERE name = \"bud eley\"",
    "question_en": "Which game did was Bud Eley a player in?",
    "question_th": "Bud Eley เป็นผู้เล่นในเกมใด",
    "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_en": "Which game did Bruesa GBC play in with fewer than 275 rebounds that is ranked less than 4?",
    "question_th": "เกมใดที่ Bruesa GBC เล่นเกมด้วยอัตราการรีบาวด์น้อยกว่า 275 และอันดับน้อยกว่า 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_en": "What is the grid for johnny herbert?",
    "question_th": "ตารางสำหรับจอห์นนี่ เฮอร์เบิร์ตคืออะไร?",
    "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_en": "Tell me the average rank for dharma productions before 2013",
    "question_th": "ขอทราบอันดับเฉลี่ยการผลิตพระธรรมก่อนปี 2556",
    "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_en": "Name the average year for 4 rank",
    "question_th": "ตั้งชื่อปีเฉลี่ย 4 อันดับ",
    "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_en": "Name the lowest rank for red chillies entertainment for 2013",
    "question_th": "จัดอันดับต่ำสุดวงการบันเทิงพริกแดง ปี 2556",
    "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_en": "Which date did richmond play as away?",
    "question_th": "ริชมอนด์ลงเล่นเป็นทีมเยือนวันไหน?",
    "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_en": "What is the rank for the player with 5 wins and under 32 events?",
    "question_th": "อันดับของผู้เล่นที่ชนะ 5 ครั้งและต่ำกว่า 32 รายการคืออันดับอะไร?",
    "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_en": "What is the issue price of a Year 2000 coin by artist John Mardon of the Included in Steam Buggy mintage.",
    "question_th": "ราคาของเหรียญปี 2000 ที่ออกโดยศิลปิน John Mardon แห่งงาน Included in Steam Buggy คือเท่าไร",
    "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_en": "What is the theme of the Year 2002 which was created by Artist Dan Fell?",
    "question_th": "ธีมของปี 2002 ที่ศิลปิน 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_en": "What artist had a mintage of 41,828 before year 2002?",
    "question_th": "ศิลปินคนใดมีเหรียญกษาปณ์จำนวน 41,828 เหรียญก่อนปี พ.ศ. 2545",
    "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_en": "A mintage of 31,997 has what issue price?",
    "question_th": "จำนวนสร้าง 31,997 เหรียญ มีราคาออกรุ่นไหนครับ?",
    "context": "CREATE TABLE table_name_36 (issue_price VARCHAR, mintage VARCHAR)"
  },
  {
    "answer": "SELECT Control AS trailers FROM table_name_71 WHERE motors = \"52\"",
    "question_en": "Tell me the control trailers for 52 motors",
    "question_th": "บอกรถพ่วงควบคุมมอเตอร์ 52 ตัวหน่อยสิ",
    "context": "CREATE TABLE table_name_71 (Control VARCHAR, motors VARCHAR)"
  },
  {
    "answer": "SELECT trailers FROM table_name_48 WHERE year = \"1931\" AND builder = \"mccw\"",
    "question_en": "I want the trailers for 1931 and builder of mccw",
    "question_th": "ฉันต้องการรถพ่วงสำหรับปี 1931 และช่างก่อสร้าง 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_en": "I want the control trailers for 1931 with builder of grcw",
    "question_th": "ฉันต้องการรถพ่วงควบคุมสำหรับปี 1931 พร้อมผู้สร้าง grcw",
    "context": "CREATE TABLE table_name_45 (Control VARCHAR, year VARCHAR, builder VARCHAR)"
  },
  {
    "answer": "SELECT trailers FROM table_name_92 WHERE motors = \"145\"",
    "question_en": "I want the trailers for motors of 145",
    "question_th": "ต้องการรถพ่วงสำหรับเครื่อง 145",
    "context": "CREATE TABLE table_name_92 (trailers VARCHAR, motors VARCHAR)"
  },
  {
    "answer": "SELECT SUM(wins) FROM table_name_77 WHERE top_5 < 1",
    "question_en": "Tell me the sum of wins for top 5 less than 1",
    "question_th": "บอกผลรวมชนะ 5 อันดับแรกน้อยกว่า 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_en": "I want the average events for top 10 less than 4",
    "question_th": "ฉันต้องการให้เหตุการณ์เฉลี่ยสำหรับ 10 อันดับแรกน้อยกว่า 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_en": "Name the highest cuts made when top 5 is less than 3 and top ten is more than 4",
    "question_th": "ตั้งชื่อการตัดสูงสุดเมื่อ 5 อันดับแรกน้อยกว่า 3 และสิบอันดับแรกมากกว่า 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_en": "I want the most top 25 when events are more than 20 and top 10 is more than 21",
    "question_th": "ฉันต้องการ 25 อันดับแรกมากที่สุดเมื่อกิจกรรมมีมากกว่า 20 และ 10 อันดับแรกมากกว่า 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_en": "What was the Attendance on April 28?",
    "question_th": "ผู้เข้าร่วมในวันที่ 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_en": "What was escape to river cottage released?",
    "question_th": "หลบหนีไปที่กระท่อมริมแม่น้ำได้รับการปล่อยตัวอะไร?",
    "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_en": "What DVD has a time of 2 hours 22 minutes?",
    "question_th": "ดีวีดีใดมีเวลา 2 ชั่วโมง 22 นาที",
    "context": "CREATE TABLE table_name_61 (dvd_name VARCHAR, duration VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_14 WHERE week = 7",
    "question_en": "What was the date for the game in week 7?",
    "question_th": "วันที่สำหรับเกมในสัปดาห์ที่ 7 คืออะไร?",
    "context": "CREATE TABLE table_name_14 (date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_54 WHERE attendance = \"78,431\"",
    "question_en": "On what date was the attendance of the crowd 78,431?",
    "question_th": "ฝูงชนเข้าร่วม 78,431 คนวันไหน?",
    "context": "CREATE TABLE table_name_54 (date VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_28 WHERE home = \"columbus\"",
    "question_en": "What was the date of the Capitals game when Columbus was the home team?",
    "question_th": "เกม Capitals วันที่โคลัมบัสเป็นเจ้าบ้านคือวันที่เท่าไหร่?",
    "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_en": "The 2002 African Cup of Nations was held on what date?",
    "question_th": "แอฟริกันคัพออฟเนชั่นส์ 2002 จัดขึ้นวันที่ใด",
    "context": "CREATE TABLE table_name_20 (date VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_51 WHERE venue = \"stade fernand fournier, arles\"",
    "question_en": "Which competition took place at Stade Fernand Fournier, Arles?",
    "question_th": "การแข่งขันใดเกิดขึ้นที่ 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_en": "What was the attendance of the game where fitzroy was the away team?",
    "question_th": "การเข้าร่วมงานในเกมที่ฟิตซ์รอยเป็นทีมเยือนเป็นอย่างไรบ้าง?",
    "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_en": "Which artist created the silver dollar for the 400th anniversary of Quebec?",
    "question_th": "ศิลปินคนไหนที่สร้างเงินดอลลาร์สำหรับวันครบรอบ 400 ปีควิเบก",
    "context": "CREATE TABLE table_name_80 (artist VARCHAR, theme VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_25 WHERE artist = \"royal canadian mint staff\"",
    "question_en": "Which year did the Royal Canadian Mint Staff create a silver dollar?",
    "question_th": "เจ้าหน้าที่โรงกษาปณ์ของแคนาดาสร้างเงินดอลลาร์ในปีใด",
    "context": "CREATE TABLE table_name_25 (year VARCHAR, artist VARCHAR)"
  },
  {
    "answer": "SELECT mintage FROM table_name_93 WHERE artist = \"suzanne duranceau\"",
    "question_en": "How many coins by Suzanne Duranceau were minted?",
    "question_th": "Suzanne Duranceau ผลิตเหรียญได้กี่เหรียญ",
    "context": "CREATE TABLE table_name_93 (mintage VARCHAR, artist VARCHAR)"
  },
  {
    "answer": "SELECT method FROM table_name_72 WHERE round < 3 AND res = \"nc\"",
    "question_en": "What was the method for the resolution of nc where the fight lasted less than 3 rounds?",
    "question_th": "วิธีแก้ nc ที่ชกไม่ถึง 3 นัด มีวิธีการอย่างไร?",
    "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_en": "Who was the opponent during the UFC 90 event with a fight that lasted less than 4 rounds?",
    "question_th": "คู่ต่อสู้ระหว่างการแข่งขัน UFC 90 คือใครในการต่อสู้ที่กินเวลาไม่ถึง 4 รอบ?",
    "context": "CREATE TABLE table_name_95 (opponent VARCHAR, round VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT method FROM table_name_33 WHERE event = \"ufc 160\"",
    "question_en": "What was the method for the resolution of the fight at UFC 160?",
    "question_th": "วิธีแก้ปัญหาการต่อสู้ที่ 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_en": "What is the league on 5 October 1997?",
    "question_th": "ลีกวันที่ 5 ตุลาคม 1997 คืออะไร?",
    "context": "CREATE TABLE table_name_48 (league VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_50 WHERE date = \"30 october 1977\"",
    "question_en": "Which season was on 30 October 1977?",
    "question_th": "ฤดูกาลใดคือวันที่ 30 ตุลาคม พ.ศ. 2520?",
    "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_en": "What season had the Roma-Napoli match on 12 September 1993?",
    "question_th": "นัดระหว่างโรมา-นาโปลีเมื่อวันที่ 12 กันยายน พ.ศ. 2536 ฤดูกาลใด?",
    "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_en": "What club/province for the player with over 18 caps and plays the fly-half?",
    "question_th": "สโมสร/จังหวัดใดสำหรับผู้เล่นที่มีแคปมากกว่า 18 นัดและเล่นในฟลายฮาล์ฟ?",
    "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_en": "What driver has less than 18 laps and a grid number under 16?",
    "question_th": "นักแข่งคนใดมีรอบน้อยกว่า 18 รอบและมีเลขกริดต่ำกว่า 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_en": "Who constructed the car with laps more than 70 and a time/retired of +12.535?",
    "question_th": "ใครเป็นคนสร้างรถที่มีรอบมากกว่า 70 และเวลา/เกษียณที่ +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_en": "What was Alexander Wurz's highest laps when he has a grid less than 14 and a time/retired of +1 lap.",
    "question_th": "อะไรคือรอบสูงสุดของ Alexander Wurz ในเมื่อเขามีกริดน้อยกว่า 14 และมีเวลาในการต่อรอบ +1 รอบ",
    "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_en": "Who was Footscray's opponent on June 15th of 1968?",
    "question_th": "ใครคือคู่ต่อสู้ของ Footscray เมื่อวันที่ 15 มิถุนายน พ.ศ. 2511",
    "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_en": "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?",
    "question_th": "ปีล่าสุดคือทีมใดที่ตั้งอยู่ในเมืองไฮแลนด์และสมาชิกของแผนกตะวันตกเข้าร่วม 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_en": "What was the pole position for the belgian grand prix?",
    "question_th": "ตำแหน่งโพลโพซิชั่นของ 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_en": "Who won the australian grand prix?",
    "question_th": "ใครชนะรางวัลกรังด์ปรีซ์ออสเตรเลีย?",
    "context": "CREATE TABLE table_name_53 (race VARCHAR)"
  },
  {
    "answer": "SELECT pole_position FROM table_name_39 WHERE location = \"jerez\"",
    "question_en": "What was the pole position for jerez?",
    "question_th": "ตำแหน่งโพลของเฮเรซคืออะไร?",
    "context": "CREATE TABLE table_name_39 (pole_position VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT enzyme FROM table_name_66 WHERE disorder = \"ornithine transcarbamylase deficiency\"",
    "question_en": "What is the enzyme involved in the disorder of Ornithine Transcarbamylase deficiency?",
    "question_th": "เอนไซม์ที่เกี่ยวข้องกับความผิดปกติของการขาด Ornithine Transcarbamylase คืออะไร?",
    "context": "CREATE TABLE table_name_66 (enzyme VARCHAR, disorder VARCHAR)"
  },
  {
    "answer": "SELECT measurements FROM table_name_15 WHERE disorder = \"ornithine transcarbamylase deficiency\"",
    "question_en": "What lab measurements can help diagnosie ornithine transcarbamylase deficiency?",
    "question_th": "การตรวจวัดในห้องปฏิบัติการใดสามารถช่วยในการวินิจฉัยภาวะขาดสารทรานส์คาร์บาไมเลสของออร์นิทีนได้",
    "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_en": "What is the abbreviation of the enzyme involved in carbamoyl phosphate synthetase i deficiency?",
    "question_th": "เอนไซม์ที่เกี่ยวข้องกับการขาดคาร์บาโมอิล ฟอสเฟต ซินเทเตส 1 ย่อมาจากอะไร?",
    "context": "CREATE TABLE table_name_30 (abb VARCHAR, disorder VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_67 WHERE home_team = \"melbourne\"",
    "question_en": "what is the venue when the home team is melbourne?",
    "question_th": "สนามไหนเจ้าบ้านคือเมลเบิร์น?",
    "context": "CREATE TABLE table_name_67 (venue VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_26 WHERE home_team = \"st kilda\"",
    "question_en": "what is the date when the home team is st kilda?",
    "question_th": "เจ้าบ้านเจอเซนต์คิลดาวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_26 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_47 WHERE venue = \"junction oval\"",
    "question_en": "what is the date when the venue is junction oval?",
    "question_th": "สถานที่จัดงานคือวงรีสามแยกวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_47 (date VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT home_team AS score FROM table_name_24 WHERE venue = \"mcg\"",
    "question_en": "What is the home team score when played at mcg?",
    "question_th": "เมื่อเล่นที่ 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_en": "who is the away team when played at junction oval?",
    "question_th": "ทีมเยือนเมื่อเล่นที่จังก์ชั่นโอวัลคือใคร?",
    "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_en": "What is the top speed of the model 1.8 20v t?",
    "question_th": "ความเร็วสูงสุดของรุ่น 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_en": "What is the max torque of model 1.4 16v?",
    "question_th": "แรงบิดสูงสุดของรุ่น 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_en": "How many rounds did Ken Wharton go?",
    "question_th": "Ken Wharton ไปกี่รอบ?",
    "context": "CREATE TABLE table_name_64 (rounds VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_56 WHERE chassis = \"166 c 500\"",
    "question_en": "What driver has a 166 c 500 chassis?",
    "question_th": "ไดร์เวอร์ตัวไหนมีแชสซี 166 c 500?",
    "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_en": "What is the Onehunga school with a decile 3 and smaller than 310 rolls?",
    "question_th": "โรงเรียน Onehunga ที่มีเดซิล 3 และเล็กกว่า 310 ม้วนคืออะไร?",
    "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_en": "What is the authority status of the school in Ellerslie with a decile of 7?",
    "question_th": "สถานะอำนาจของโรงเรียนใน Ellerslie ที่มี 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_en": "What is the biggest roll number of Sylvia Park School, which has a state authority?",
    "question_th": "โรงเรียนซิลเวียพาร์คซึ่งมีหน่วยงานของรัฐมีจำนวนม้วนมากที่สุดคือเท่าใด",
    "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_en": "What is the name of the school with a decile of 1, a state authority, and located in Otahuhu?",
    "question_th": "โรงเรียนที่มีเลขสิบเป็นหน่วยงานของรัฐและตั้งอยู่ในโอตาฮูฮูชื่ออะไร?",
    "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_en": "What is the special notes value for years under 2009?",
    "question_th": "มูลค่าหมายเหตุพิเศษสำหรับปีภายใต้ปี 2552 คือเท่าใด",
    "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_en": "How many years have a theme of Toronto Maple Leafs and an Issue Price of 24.95?",
    "question_th": "กี่ปีมีธีมของ Toronto Maple Leafs และราคาเสนอขายที่ 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_en": "Who was the winner for the Winton Motor Raceway circuit?",
    "question_th": "ใครคือผู้ชนะในสนามแข่งรถ Winton Motor Raceway",
    "context": "CREATE TABLE table_name_51 (winner VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_47 WHERE race_title = \"mallala\"",
    "question_en": "What was the team that held the race title of Mallala?",
    "question_th": "ทีมใดที่ครองตำแหน่งการแข่งขันของ 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_en": "Name the driver for Laps less than 9 and a grid of 13",
    "question_th": "ตั้งชื่อนักแข่งสำหรับรอบที่น้อยกว่า 9 และตารางที่ 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_en": "Who was the winner in the competition in which the runner-up was Rosenborg?",
    "question_th": "ใครคือผู้ชนะในการแข่งขันที่รองชนะเลิศคือโรเซนบอร์ก?",
    "context": "CREATE TABLE table_name_16 (winners VARCHAR, runners_up VARCHAR)"
  },
  {
    "answer": "SELECT years FROM table_name_57 WHERE runners_up = \"odd grenland\"",
    "question_en": "What was the year of the competition in which Odd Grenland was the runner-up?",
    "question_th": "การแข่งขันปีใดที่ออด เกรนแลนด์เป็นรองแชมป์?",
    "context": "CREATE TABLE table_name_57 (years VARCHAR, runners_up VARCHAR)"
  },
  {
    "answer": "SELECT winners FROM table_name_44 WHERE runners_up = \"lillestrøm\" AND third = \"lyn\"",
    "question_en": "Who was the winner in the competition in which Lyn took third place and Lillestrøm was the runner-up?",
    "question_th": "ใครเป็นผู้ชนะในการแข่งขันที่ Lyn ได้อันดับที่สามและ Lillestrøm เป็นรองชนะเลิศ",
    "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_en": "What was the report in Buenos Aires?",
    "question_th": "รายงานในบัวโนสไอเรสเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_98 (report VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_12 WHERE race = \"italian grand prix\"",
    "question_en": "What date was the Italian Grand Prix?",
    "question_th": "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_en": "What was the report when Mario Andretti held pole position and Jean-Pierre Jarier had the fastest lap?",
    "question_th": "อะไรคือรายงานเมื่อ Mario Andretti ครองตำแหน่งโพลโพซิชั่นและ Jean-Pierre Jarier ทำรอบได้เร็วที่สุด?",
    "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_en": "What was the report in the Belgian Grand Prix?",
    "question_th": "รายงานในรายการ 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_en": "Who was the winner when Niki Lauda held pole position?",
    "question_th": "ใครคือผู้ชนะเมื่อ Niki Lauda ดำรงตำแหน่งโพลโพซิชั่น?",
    "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_en": "Who had the fastest lap in the Monaco Grand Prix?",
    "question_th": "ใครมีรอบเร็วที่สุดในการแข่งขันโมนาโกกรังด์ปรีซ์?",
    "context": "CREATE TABLE table_name_98 (fastest_lap VARCHAR, race VARCHAR)"
  },
  {
    "answer": "SELECT object_type FROM table_name_58 WHERE constellation = \"cancer\"",
    "question_en": "Which Object type has a Constellation of cancer?",
    "question_th": "วัตถุประเภทใดมีกลุ่มดาวมะเร็ง",
    "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_en": "Which NGC number has a Constellation of ursa major?",
    "question_th": "เลข NGC ใดที่มีกลุ่มดาวหมีใหญ่",
    "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__ = \"°05′07″\"",
    "question_en": "Which Constellation has a NGC number smaller than 2775, and a Declination (J2000) of °05′07″?",
    "question_th": "กลุ่มดาวใดมีหมายเลข NGC น้อยกว่า 2775 และค่าการเสื่อม (J2000) ที่ °05′07″",
    "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_en": "Which Object type has a NGC number of 2787?",
    "question_th": "วัตถุประเภทใดมีหมายเลข NGC 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_en": "Where did St KIlda play their away game?",
    "question_th": "เซนต์คิลดาเล่นเกมเยือนที่ไหน?",
    "context": "CREATE TABLE table_name_46 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_79 WHERE visitor = \"philadelphia\" AND record = \"7–4–0\"",
    "question_en": "What is the score when Philadelphia was the visitor with a Record of 7–4–0?",
    "question_th": "คะแนนเมื่อฟิลาเดลเฟียเป็นผู้มาเยือนด้วยสถิติ 7–4–0 คืออะไร",
    "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_en": "What was nominee nominated for outstanding featured actor in a musical?",
    "question_th": "ผู้ได้รับการเสนอชื่อเข้าชิงรางวัลนักแสดงนำชายยอดเยี่ยมในละครเพลงคืออะไร?",
    "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_en": "What is the result of nominee, Patricia McGourty, for the drama desk award?",
    "question_th": "ผลการเสนอชื่อเข้าชิงรางวัล Drama Desk Award ของ Patricia McGourty คืออะไร?",
    "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_en": "What year was Patricia Mcgourty nominated for a Tony award?",
    "question_th": "Patricia Mcgourty ได้รับการเสนอชื่อเข้าชิงรางวัล Tony ในปีใด",
    "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_en": "I want the driver with Laps larger than 16 with a ferrari and grid less than 15",
    "question_th": "ฉันต้องการคนขับที่มีรอบมากกว่า 16 โดยมีเฟอร์รารีและกริดน้อยกว่า 15",
    "context": "CREATE TABLE table_name_44 (driver VARCHAR, grid VARCHAR, laps VARCHAR, constructor VARCHAR)"
  },
  {
    "answer": "SELECT d_46_√ FROM table_name_2 WHERE d_43_√ = \"r 3\"",
    "question_en": "What is the D 46 √ with a D 43 √ with r 3?",
    "question_th": "46 √ ที่มี D 43 √ กับ r 3 คืออะไร?",
    "context": "CREATE TABLE table_name_2 (d_46_√ VARCHAR, d_43_√ VARCHAR)"
  },
  {
    "answer": "SELECT d_43_√ FROM table_name_64 WHERE d_49_√ = \"d 49 √\"",
    "question_en": "What is the D 43 √ with a D 49 √ with d 49 √?",
    "question_th": "D 43 √ ที่มี D 49 √ กับ d 49 √ คืออะไร?",
    "context": "CREATE TABLE table_name_64 (d_43_√ VARCHAR, d_49_√ VARCHAR)"
  },
  {
    "answer": "SELECT d_48_√ FROM table_name_87 WHERE d_46_√ = \"r 33 o\"",
    "question_en": "What is the D 48 √ with a D 46 √ with r 33 o?",
    "question_th": "D 48 √ ที่มี D 46 √ กับ r 33 o คืออะไร?",
    "context": "CREATE TABLE table_name_87 (d_48_√ VARCHAR, d_46_√ VARCHAR)"
  },
  {
    "answer": "SELECT d_48_√ FROM table_name_27 WHERE d_49_√ = \"r 9\"",
    "question_en": "What is the D 48 √ with a D 49 √ with r 9?",
    "question_th": "D 48 √ ที่มี D 49 √ กับ r 9 คืออะไร?",
    "context": "CREATE TABLE table_name_27 (d_48_√ VARCHAR, d_49_√ VARCHAR)"
  },
  {
    "answer": "SELECT d_46_√ FROM table_name_94 WHERE d_41_√ = \"d 38 √\"",
    "question_en": "What is the D 46 √ with a D 41 √ with d 38 √?",
    "question_th": "D 46 √ ที่มี D 41 √ กับ d 38 √ คืออะไร?",
    "context": "CREATE TABLE table_name_94 (d_46_√ VARCHAR, d_41_√ VARCHAR)"
  },
  {
    "answer": "SELECT d_45_√ FROM table_name_99 WHERE d_46_√ = \"d 46 √\"",
    "question_en": "What is the D 45 √ with a D 46 √ with d 46 √?",
    "question_th": "D 45 √ ที่มี D 46 √ กับ d 46 √ คืออะไร?",
    "context": "CREATE TABLE table_name_99 (d_45_√ VARCHAR, d_46_√ VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_31 WHERE laps = 25",
    "question_en": "Which constructor was there for the race with 25 laps?",
    "question_th": "มีคอนสตรัคเตอร์คนไหนสำหรับการแข่งขัน 25 รอบ?",
    "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_en": "Which driver had brm as a constructor and a time/retired of engine?",
    "question_th": "คนขับคนไหนมี brm เป็นตัวสร้างและเวลา/เลิกใช้เครื่องยนต์?",
    "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_en": "What is the call sign for a class of A?",
    "question_th": "สัญญาณเรียกขานของคลาส 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_en": "What is the average frequency MHz for license of eastville, virginia?",
    "question_th": "ความถี่เฉลี่ย MHz สำหรับใบอนุญาตของ 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_en": "What is the average ERP W when the call sign is whre?",
    "question_th": "ERP W เฉลี่ยเมื่อสัญญาณเรียกขานอยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_15 (erp_w INTEGER, call_sign VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_12 WHERE area = \"hillcrest\"",
    "question_en": "What is the name of the school in Hillcrest?",
    "question_th": "โรงเรียนในฮิลเครสต์ชื่ออะไร?",
    "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_en": "What are the years available at Bayview School, which has state authority and a roll number larger than 333?",
    "question_th": "โรงเรียน Bayview School ซึ่งมีอำนาจของรัฐและมีรายชื่อมากกว่า 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_en": "When was Tomokazu Soma born who plays for the wild knights?",
    "question_th": "โทโมคาซึ โซมะ ผู้ที่เล่นให้กับอัศวินแห่งป่าเกิดเมื่อใด",
    "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_en": "On November 19, 2008 what was the score?",
    "question_th": "วันที่ 19 พฤศจิกายน 2551 คะแนนเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_13 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_81 WHERE date = \"february 23, 2005\"",
    "question_en": "What is the score on February 23, 2005?",
    "question_th": "คะแนนเมื่อวันที่ 23 กุมภาพันธ์ 2548 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_81 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_75 WHERE date = \"october 12, 2005\"",
    "question_en": "What is the result foe October 12, 2005?",
    "question_th": "ผลลัพธ์ของศัตรูคืออะไรในวันที่ 12 ตุลาคม 2548?",
    "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_en": "How many events for orville moody, ranking below 3?",
    "question_th": "มีกี่เหตุการณ์สำหรับ orville Moody อันดับต่ำกว่า 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_en": "What is the rank for don january with over 2 wins and over 17 events?",
    "question_th": "Don เดือนมกราคมที่มีชัยชนะมากกว่า 2 ครั้งและมากกว่า 17 รายการอยู่ในอันดับที่เท่าไหร่?",
    "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_en": "What is the score of the Home team of geelong?",
    "question_th": "เจ้าบ้านจีลองสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_74 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_63 WHERE home_team = \"south melbourne\"",
    "question_en": "Which Away team has a Home team of south melbourne?",
    "question_th": "ทีมเยือนทีมไหนมีทีมเหย้าของเซาธ์ เมลเบิร์น?",
    "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_en": "Which Away team has a Venue of arden street oval?",
    "question_th": "ทีมเยือนทีมไหนมีสนามอาร์เดน สตรีท โอวัล?",
    "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_en": "Which Away team score has a Venue of scg?",
    "question_th": "คะแนนทีมเยือนทีมไหนมีสนามของเอสซีจี?",
    "context": "CREATE TABLE table_name_82 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_28 WHERE player = \"mike rosario\"",
    "question_en": "What school has the player of mike rosario?",
    "question_th": "นักเตะ ไมค์ โรซาริโอ โรงเรียนไหนมีบ้าง?",
    "context": "CREATE TABLE table_name_28 (school VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT nba_draft FROM table_name_53 WHERE player = \"al-farouq aminu\"",
    "question_en": "What was the nba draft for al-farouq aminu?",
    "question_th": "ร่าง nba สำหรับ 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–31–8\"",
    "question_en": "What was the average attendance of a team with a 38–31–8 record?",
    "question_th": "จำนวนผู้เข้าร่วมโดยเฉลี่ยของทีมที่มีสถิติ 38–31–8 คือเท่าใด",
    "context": "CREATE TABLE table_name_16 (attendance INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT MIN(grid) FROM table_name_89 WHERE driver = \"bob anderson\"",
    "question_en": "What is the smallest grid for Bob Anderson?",
    "question_th": "ตารางที่เล็กที่สุดสำหรับ Bob Anderson คืออะไร?",
    "context": "CREATE TABLE table_name_89 (grid INTEGER, driver VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_67 WHERE score = \"0–3\"",
    "question_en": "What was the time when the score was 0–3?",
    "question_th": "เมื่อไหร่ที่สกอร์เป็น 0–3?",
    "context": "CREATE TABLE table_name_67 (time VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT set_1 FROM table_name_87 WHERE set_3 = \"25–21\"",
    "question_en": "What was the first set with a third set of 25–21?",
    "question_th": "ชุดแรกที่มีชุดที่สาม 25–21 คืออะไร",
    "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_en": "How many total games associated with the Pac-12 of california and 117 years?",
    "question_th": "มีเกมทั้งหมดกี่เกมที่เกี่ยวข้องกับ Pac-12 ของแคลิฟอร์เนียและ 117 ปี?",
    "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_en": "What is the average number of years associated with 51 games tied and over 1184 total games?",
    "question_th": "จำนวนปีโดยเฉลี่ยที่เกี่ยวข้องกับเกมที่เสมอกัน 51 เกมและเกมทั้งหมดมากกว่า 1,184 เกมเป็นเท่าใด?",
    "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_en": "What is the highest number of games tied for teams with under 551 games and a percentage of under 0.5593?",
    "question_th": "จำนวนเกมสูงสุดที่เสมอกันสำหรับทีมที่มีเกมต่ำกว่า 551 เกมและเปอร์เซ็นต์ต่ำกว่า 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_en": "Name the country for airline of gol",
    "question_th": "ตั้งชื่อประเทศสำหรับสายการบินของ gol",
    "context": "CREATE TABLE table_name_33 (country VARCHAR, airline VARCHAR)"
  },
  {
    "answer": "SELECT airline FROM table_name_98 WHERE rank = 4",
    "question_en": "Name the airline for rank of 4",
    "question_th": "ตั้งชื่อสายการบินเป็นอันดับที่ 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_en": "What digital reaction has a hot 100 reaction of 4 (+4)?",
    "question_th": "ปฏิกิริยาดิจิทัลใดที่มีปฏิกิริยาร้อน 100 อยู่ที่ 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_en": "What digital reaction has hot 100 reaction of 2 (+1)?",
    "question_th": "ปฏิกิริยาดิจิทัลใดที่มีปฏิกิริยาร้อน 100 เท่ากับ 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_en": "Which week has hot 100 reaction as did not debut for Natalie Cole?",
    "question_th": "สัปดาห์ไหนมีกระแส Hot 100 แบบไม่เปิดตัวกับนาตาลี โคล?",
    "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_en": "What is the hot 100 reaction in week of top 13 for Kanye West?",
    "question_th": "ปฏิกิริยา 100 ที่ร้อนแรงในสัปดาห์ของ 13 อันดับแรกของ 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_en": "What is the digital reaction for week of top 5 for Taylor Hicks?",
    "question_th": "ปฏิกิริยาทางดิจิทัลในสัปดาห์ท็อป 5 ของ 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_en": "Which Time/Retired had a grid number bigger than 1 and whose driver was Damon Hill?",
    "question_th": "เวลาใด/เกษียณอายุแล้วมีหมายเลขกริดมากกว่า 1 และเดมอน ฮิลล์ คนขับของใคร",
    "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_en": "Which lap number had Olivier Panis as a driver?",
    "question_th": "Olivier Panis เป็นนักขับหมายเลขรอบใด",
    "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_en": "what is the grid when the time/retired is oil pressure and the laps are more than 50?",
    "question_th": "ตารางจะเป็นเท่าใดเมื่อเวลา/เกษียณคือแรงดันน้ำมันและรอบมากกว่า 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_en": "what is the grid when the time/retired is 1:46:42.3?",
    "question_th": "ตารางเมื่อเวลา/เกษียณคือ 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_en": "What was the attendance when Fitzroy played as the away team?",
    "question_th": "การเข้าร่วมงานเมื่อฟิตซ์รอยเล่นเป็นทีมเยือนเป็นอย่างไรบ้าง?",
    "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_en": "What did the home team score at Western Oval?",
    "question_th": "เจ้าบ้านทำคะแนนได้ที่ เวสเทิร์น โอวัล?",
    "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_en": "Who was the home team when the attendance was more than 20,283?",
    "question_th": "เจ้าบ้านคนไหนมีผู้ชมเกิน 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_en": "On April 29, with a game larger than 2, what is the high points?",
    "question_th": "วันที่ 29 เม.ย. กับเกมที่มากกว่า 2 แต้มสูงขนาดไหน?",
    "context": "CREATE TABLE table_name_25 (high_points VARCHAR, game VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_18 WHERE game = 3",
    "question_en": "What was the score for Game 3?",
    "question_th": "เกมที่ 3 ได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_18 (score VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT SUM(grid) FROM table_name_60 WHERE laps = 17",
    "question_en": "What is the grid total for cars that went 17 laps?",
    "question_th": "ผลรวมกริดสำหรับรถยนต์ที่วิ่ง 17 รอบเป็นเท่าใด",
    "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_en": "How many golds for the nation ranked below 5 and over 1 bronze medals?",
    "question_th": "อันดับต่ำกว่า 5 และ 1 เหรียญทองแดงมีกี่เหรียญทองของประเทศ?",
    "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_en": "During footscray's home match, who was the away team?",
    "question_th": "ระหว่างเกมในบ้านของฟุตสเครย์ ทีมเยือนคือใคร?",
    "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_en": "Which format had a United States region and a date of August 11, 2009?",
    "question_th": "รูปแบบใดที่มีภูมิภาคสหรัฐอเมริกาและวันที่ 11 สิงหาคม 2552",
    "context": "CREATE TABLE table_name_92 (format VARCHAR, region VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_76 WHERE region = \"japan\"",
    "question_en": "Which date had a Japan region?",
    "question_th": "ภูมิภาคญี่ปุ่นมีวันไหน?",
    "context": "CREATE TABLE table_name_76 (date VARCHAR, region VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_name_89 WHERE catalogue = \"9362482872\"",
    "question_en": "Which region had a catalogue number of 9362482872?",
    "question_th": "ภูมิภาคใดมีหมายเลขแค็ตตาล็อก 9362482872",
    "context": "CREATE TABLE table_name_89 (region VARCHAR, catalogue VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_name_41 WHERE date = \"november 18, 2002\"",
    "question_en": "Which region had the date of November 18, 2002?",
    "question_th": "ภูมิภาคใดมีวันที่ 18 พฤศจิกายน พ.ศ. 2545",
    "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_en": "Which label had a Japan region and a date of November 3, 2004?",
    "question_th": "ป้ายใดมีภูมิภาคญี่ปุ่นและวันที่ 3 พฤศจิกายน พ.ศ. 2547",
    "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_en": "Which label had a CD format and a date of June 25, 2002?",
    "question_th": "ค่ายเพลงใดมีรูปแบบซีดีและวันที่ 25 มิถุนายน พ.ศ. 2545",
    "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_en": "What award was nominated in 2007?",
    "question_th": "ได้รับการเสนอชื่อเข้าชิงรางวัลอะไรในปี 2550?",
    "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_en": "What year did was the Inside Soap Awards won?",
    "question_th": "Inside Soap Awards ได้รับรางวัลในปีใด",
    "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_en": "What was the record for the game on April 9, 2008?",
    "question_th": "บันทึกของเกมเมื่อวันที่ 9 เมษายน พ.ศ. 2551 คืออะไร?",
    "context": "CREATE TABLE table_name_9 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT leading_scorer FROM table_name_34 WHERE date = \"april 9, 2008\"",
    "question_en": "Who was the leading scorer on April 9, 2008?",
    "question_th": "ใครคือผู้ทำประตูสูงสุดในวันที่ 9 เมษายน พ.ศ. 2551?",
    "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_en": "in a game against st kilda, what was the away team's score?",
    "question_th": "ในเกมที่เจอกับเซนต์คิลดา ทีมเยือนได้สกอร์เท่าไหร่?",
    "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_en": "In the match where geelong was the away team, who was the home team?",
    "question_th": "แมตช์ที่จีลองเป็นทีมเยือนใครเป็นเจ้าบ้าน?",
    "context": "CREATE TABLE table_name_46 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(votes) FROM table_name_67 WHERE seats > 28",
    "question_en": "What is the number of votes for the party which got more than 28 seats?",
    "question_th": "พรรคที่ได้เกิน 28 ที่นั่งขึ้นไปมีคะแนนเสียงเท่าไร?",
    "context": "CREATE TABLE table_name_67 (votes VARCHAR, seats INTEGER)"
  },
  {
    "answer": "SELECT MIN(votes) FROM table_name_86 WHERE party = \"labour\"",
    "question_en": "What is the number of votes for the Party of Labour?",
    "question_th": "พรรคแรงงานมีคะแนนเสียงเท่าไร?",
    "context": "CREATE TABLE table_name_86 (votes INTEGER, party VARCHAR)"
  },
  {
    "answer": "SELECT percentage FROM table_name_15 WHERE seats = 80",
    "question_en": "What is the percentage of votes for the party that has Seats of 80?",
    "question_th": "พรรคที่มีที่นั่งได้ 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_en": "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?",
    "question_th": "ใครคือหัวหน้าพรรคที่มีที่นั่งน้อยกว่า 28 ที่นั่ง คิดเป็นร้อยละ 54.03 และมากกว่า 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_en": "Which highest number of Seats has votes of 244,867?",
    "question_th": "จำนวนที่นั่งสูงสุดใดที่มีคะแนนเสียง 244,867?",
    "context": "CREATE TABLE table_name_83 (seats INTEGER, votes VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_89 WHERE home_team = \"melbourne\"",
    "question_en": "What was the Date of the game of the Home team of melbourne?",
    "question_th": "เกมของเจ้าบ้านเมลเบิร์นคือวันที่เท่าไหร่?",
    "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_en": "What was the score of the Home team in the game that had the Away team of south melbourne?",
    "question_th": "เจ้าบ้านในเกมกับทีมเยือนเซาธ์ เมลเบิร์น สกอร์เท่าไหร่?",
    "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_en": "what was the away team for the north melbourne home team?",
    "question_th": "ทีมเยือนของเหย้าเมลเบิร์นเหนือคือทีมอะไร?",
    "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_en": "what was the away team score in a game with north melbourne as home team?",
    "question_th": "คะแนนของทีมเยือนในเกมที่มีเมลเบิร์นเหนือเป็นเจ้าบ้านคือเท่าไร?",
    "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_en": "what was the away team with st kilda as the away team?",
    "question_th": "ทีมเยือนมีเซนต์คิลดาเป็นทีมเยือนคืออะไร?",
    "context": "CREATE TABLE table_name_15 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(yards) FROM table_name_25 WHERE solo = 1 AND sack > 0",
    "question_en": "How many yards for the player with 1 solo tackle and over 0 sacks?",
    "question_th": "นักเตะที่เข้าสกัดโซโล 1 ครั้งและมากกว่า 0 กระสอบมีระยะกี่หลาสำหรับผู้เล่น?",
    "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_en": "What does a hand of Theoretical return have as a 3 credit?",
    "question_th": "มือของผลตอบแทนตามทฤษฎีมี 3 เครดิตอย่างไร?",
    "context": "CREATE TABLE table_name_34 (hand VARCHAR)"
  },
  {
    "answer": "SELECT 5 AS _credits FROM table_name_58 WHERE hand = \"full house\"",
    "question_en": "What does full house have as a 5 credits?",
    "question_th": "ฟูลเฮ้าส์มี 5 เครดิตอย่างไร?",
    "context": "CREATE TABLE table_name_58 (hand VARCHAR)"
  },
  {
    "answer": "SELECT 4 AS _credits FROM table_name_28 WHERE hand = \"straight\"",
    "question_en": "What would be the 4 credits result of a straight?",
    "question_th": "ผล 4 เครดิตของเส้นตรงจะเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_28 (hand VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_96 WHERE score = \"2 – 2\"",
    "question_en": "Who was the home team at the game that had a score of 2 – 2?",
    "question_th": "เจ้าบ้านในเกมที่สกอร์ 2 – 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_en": "What was the date of the game when Colorado was the visiting team and Chicago was the home team?",
    "question_th": "วันที่เกมคือเมื่อใดที่โคโลราโดเป็นทีมเยือนและชิคาโกเป็นเจ้าบ้าน?",
    "context": "CREATE TABLE table_name_36 (date VARCHAR, visitor VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_34 WHERE record = \"8–3–1\"",
    "question_en": "What was the date of the game when the Avalanche had a record of 8–3–1?",
    "question_th": "วันที่ของเกมคือเมื่อ Avalanche มีสถิติ 8–3–1?",
    "context": "CREATE TABLE table_name_34 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT opponents FROM table_name_3 WHERE wicket_partnership = \"5th\"",
    "question_en": "Who was the opponents of the 5th Wicket Partnership?",
    "question_th": "ใครคือคู่ต่อสู้ของห้างหุ้นส่วนประตูที่ 5?",
    "context": "CREATE TABLE table_name_3 (opponents VARCHAR, wicket_partnership VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_70 WHERE competition = \"champions league\"",
    "question_en": "In which season was there a competition in the Champions League?",
    "question_th": "มีการแข่งขันในแชมเปี้ยนส์ลีกในฤดูกาลใด?",
    "context": "CREATE TABLE table_name_70 (season VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_68 WHERE club = \"rsc anderlecht\"",
    "question_en": "What scores did the RSC Anderlecht club have?",
    "question_th": "สโมสร RSC Anderlecht มีคะแนนเท่าไหร่?",
    "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_en": "What is the highest opening week net gross of the movie ranked higher than 5 from Reliance Entertainment?",
    "question_th": "รายได้สุทธิสุทธิสัปดาห์เปิดตัวสูงสุดของภาพยนตร์ที่ได้รับการจัดอันดับสูงกว่า 5 จาก 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_en": "Tell me the total number of Grid for Bob Evans and Laps less than 68",
    "question_th": "บอกจำนวนกริดรวมของ Bob Evans และรอบที่น้อยกว่า 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_en": "Tell me constructor for Laps less than 17 and Grid more than 11 for alan jones",
    "question_th": "บอกคอนสตรัคเตอร์สำหรับ Laps น้อยกว่า 17 และ Grid มากกว่า 11 สำหรับ 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_en": "I want the sum of Laps with Grid less than 11 for jean-pierre jarier",
    "question_th": "ฉันต้องการผลรวมของ Laps โดยที่ Grid น้อยกว่า 11 สำหรับ 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_en": "I want the constructor for brakes and grid less than 14",
    "question_th": "ฉันต้องการตัวสร้างสำหรับเบรกและกริดน้อยกว่า 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_en": "How may episodes did season 1 have?",
    "question_th": "ซีซั่น 1 มีตอนได้อย่างไร?",
    "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_en": "Which chassis did Aguri Suzuki drive with an entrant of Larrousse F1?",
    "question_th": "Aguri Suzuki ขับแชสซีใดกับผู้เข้าร่วม 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_en": "What was the entrant in round 16 were Ferrari was the constructor?",
    "question_th": "ผู้เข้าแข่งขันในรอบ 16 คนไหนคือ Ferrari เป็นคนสร้าง?",
    "context": "CREATE TABLE table_name_70 (entrant VARCHAR, rounds VARCHAR, constructor VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_71 WHERE icao = \"zgha\"",
    "question_en": "Tell me the country with ICAO of zgha",
    "question_th": "บอกประเทศกับ ICAO ของ zgha หน่อยสิ",
    "context": "CREATE TABLE table_name_71 (country VARCHAR, icao VARCHAR)"
  },
  {
    "answer": "SELECT icao FROM table_name_51 WHERE city = \"xi'an\"",
    "question_en": "I want the ICAO for city of xi'an",
    "question_th": "ฉันต้องการ ICAO สำหรับเมืองซีอาน",
    "context": "CREATE TABLE table_name_51 (icao VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT iata FROM table_name_32 WHERE icao = \"zgkl\"",
    "question_en": "I want the IATA for ICAO of zgkl",
    "question_th": "ฉันต้องการ IATA สำหรับ ICAO ของ zgkl",
    "context": "CREATE TABLE table_name_32 (iata VARCHAR, icao VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_name_28 WHERE icao = \"vmmc\"",
    "question_en": "I want the region for ICAO of vmmc",
    "question_th": "ฉันต้องการภูมิภาคสำหรับ ICAO ของ 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_en": "What is the high grid number for a Time/Retired of + 3 laps, and a Laps smaller than 57?",
    "question_th": "หมายเลขกริดสูงสำหรับเวลา/เกษียณ + 3 รอบ และรอบที่น้อยกว่า 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_en": "Who built the car that has a Time/Retired of 1:36:38.887?",
    "question_th": "ใครเป็นผู้สร้างรถที่มี Time/Retired อยู่ที่ 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_en": "Who was the leading scorer on 9 January 2008?",
    "question_th": "ใครคือผู้ทำประตูสูงสุดในวันที่ 9 มกราคม พ.ศ. 2551?",
    "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_en": "What is the number played for the Barcelona B club, with wins under 11?",
    "question_th": "หมายเลขที่เล่นให้กับสโมสร Barcelona B คือหมายเลขใดที่ชนะต่ำกว่า 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_en": "What was the biggest draws, for wins under 4, and points of 20-18?",
    "question_th": "อะไรคือการเสมอที่ยิ่งใหญ่ที่สุด สำหรับชัยชนะที่ต่ำกว่า 4 และแต้ม 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_en": "What is the average of goals against, where overall goals are more than 35 and the goal difference is 20?",
    "question_th": "ค่าเฉลี่ยของประตูต่อคือเท่าใด โดยที่ประตูรวมมากกว่า 35 และผลต่างประตูคือ 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_en": "What is the Crowd number for the Away team of Richmond?",
    "question_th": "หมายเลขฝูงชนของทีมเยือนริชมอนด์คือเท่าไร?",
    "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_en": "What is the Home team score for the Venue named Glenferrie Oval?",
    "question_th": "คะแนนทีมเหย้าสำหรับสนามที่ชื่อ 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_en": "What is the smallest Crowd number for the Venue named Princes Park?",
    "question_th": "จำนวนฝูงชนที่น้อยที่สุดสำหรับสถานที่จัดงานที่ชื่อว่า 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_en": "Tell me the notes with method of points and event of adcc 2001 absolute with result of loss",
    "question_th": "บอกหมายเหตุพร้อมวิธีคะแนนและเหตุการณ์ของ adcc 2001 สัมบูรณ์พร้อมผลการขาดทุน",
    "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_en": "Tell me the lowest date for result of win and method of points with notes of opening round",
    "question_th": "แจ้งผลการชนะต่ำสุดวันไหน และวิธีการนับคะแนน พร้อมบันทึกรอบเปิด",
    "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_en": "Name the result with notes of quarter-finals and event of adcc 2001 absolute",
    "question_th": "ตั้งชื่อผลลัพธ์พร้อมบันทึกการแข่งขันรอบก่อนรองชนะเลิศและเหตุการณ์ของ adcc 2001 แบบสัมบูรณ์",
    "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_en": "I want the event for method of points with notes of opening round",
    "question_th": "ขอกิจกรรมวิธีแต้มพร้อมบันทึกรอบเปิดครับ",
    "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_en": "How many win total which has the rank smaller than 3 and events smaller than 22",
    "question_th": "จำนวนผู้ชนะทั้งหมดที่มีอันดับน้อยกว่า 3 และเหตุการณ์ที่น้อยกว่า 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_en": "What denomination is mt lawley?",
    "question_th": "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_en": "Is mt lawley day or boarding?",
    "question_th": "ภูเขาลอว์ลีย์เป็นวันหรือขึ้นเครื่อง?",
    "context": "CREATE TABLE table_name_84 (day_boarding VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT AVG(founded) FROM table_name_6 WHERE location = \"claremont\"",
    "question_en": "What is the average year founded for schools in claremont?",
    "question_th": "ปีเฉลี่ยที่ก่อตั้งสำหรับโรงเรียนใน แคลร์มอนต์ คืออะไร?",
    "context": "CREATE TABLE table_name_6 (founded INTEGER, location VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_32 WHERE home_team = \"north melbourne\"",
    "question_en": "When north melbourne was the home team who was the Away team?",
    "question_th": "เมื่อนอร์ทเมลเบิร์นเป็นเจ้าบ้านใครเป็นทีมเยือน?",
    "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_en": "When collingwood played as the home team who was the away team?",
    "question_th": "เมื่อคอลลิงวูดเล่นเป็นเจ้าบ้านใครเป็นทีมเยือน?",
    "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_en": "When the Away team was south melbourne what was the home team?",
    "question_th": "เมื่อทีมเยือนอยู่เซาธ์ เมลเบิร์น เจ้าบ้านคือทีมอะไร?",
    "context": "CREATE TABLE table_name_52 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT AVG(lowest) FROM table_name_24 WHERE average < 307",
    "question_en": "What is the lowest attendance for a stadium that has an average smaller than 307?",
    "question_th": "สนามที่มีผู้ชมเฉลี่ยน้อยกว่า 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_en": "When the home team was South Melbourne, what did the away team score?",
    "question_th": "เมื่อเจ้าบ้านเป็นเซาธ์ เมลเบิร์น ทีมเยือนได้คะแนนเท่าไหร่?",
    "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_en": "What is the average rank of a country with less than 13 bronze medals, a total of 11 medals, and more than 4 gold?",
    "question_th": "อันดับเฉลี่ยของประเทศที่มีน้อยกว่า 13 เหรียญทองแดง รวม 11 เหรียญ และมากกว่า 4 เหรียญทองคือเท่าใด",
    "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_en": "What is the lowest bronze a team with 9 silvers, a total larger than 13, and more than 13 gold medals has?",
    "question_th": "อะไรคือเหรียญทองแดงต่ำสุดที่ทีมได้ 9 เหรียญเงิน รวมมากกว่า 13 เหรียญ และได้เหรียญทองมากกว่า 13 เหรียญ?",
    "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_en": "What is the highest number of silvers a team with more than 95 total medals has?",
    "question_th": "ทีมที่ได้เหรียญเงินมากกว่า 95 เหรียญสูงสุดมีจำนวนเท่าใด?",
    "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_en": "What is the highest total medals a team with less than 15 gold, less than 5 bronze, and a rank larger than 10 has?",
    "question_th": "เหรียญรางวัลรวมสูงสุดของทีมที่มีเหรียญทองน้อยกว่า 15 เหรียญทอง น้อยกว่า 5 เหรียญทองแดง และอันดับที่มากกว่า 10 มีคืออะไร?",
    "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_en": "Who is the home team who plays at Glenferrie Oval?",
    "question_th": "ทีมเจ้าบ้านที่เล่นที่ 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_en": "What did the away team Carlton score?",
    "question_th": "ทีมเยือน คาร์ลตัน ทำประตูอะไรได้บ้าง?",
    "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_en": "What position did Lee Gilmour play while having more than 4 Tries and 20 points?",
    "question_th": "ลี กิลมัวร์ เล่นตำแหน่งใดโดยพยายามมากกว่า 4 ครั้งและมี 20 แต้ม?",
    "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_en": "Who was the host that garnered ratings of 9.4/27?",
    "question_th": "ใครคือพิธีกรที่ได้เรตติ้ง 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_en": "Who was the lap-by-lap broadcaster before 1994 who garnered ratings of 8.0/21?",
    "question_th": "ใครคือผู้ประกาศแบบทีละรอบก่อนปี 1994 และได้เรตติ้ง 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_en": "Who was the host that garnered ratings of 9.6/26?",
    "question_th": "ใครคือพิธีกรที่ได้เรตติ้ง 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_en": "What were the ratings for host Chris Economaki who had 12.3 million viewers?",
    "question_th": "เรตติ้งของพิธีกร Chris Economaki ที่มีผู้ชม 12.3 ล้านคนอยู่ที่เท่าไร",
    "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_en": "Who was the network who had Ken Squier as a host and 13.9 million viewers?",
    "question_th": "ใครคือเครือข่ายที่มี Ken Squier เป็นพิธีกรและมีผู้ชม 13.9 ล้านคน",
    "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_en": "What was the lowest Attendance for Games played on the Date of February 5?",
    "question_th": "จำนวนผู้เข้าชมเกมที่เล่นน้อยที่สุดในวันที่ 5 กุมภาพันธ์คือเท่าใด",
    "context": "CREATE TABLE table_name_1 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT SUM(attendance) FROM table_name_61 WHERE visitor = \"chicago\"",
    "question_en": "What was the total Attendance for Games while Chicago was the visiting Team?",
    "question_th": "ผู้เข้าร่วมการแข่งขันทั้งหมดเป็นเท่าใดในขณะที่ชิคาโกเป็นทีมเยือน?",
    "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_en": "What pole position was Rubens Barrichello when he had the fastest lap and a round larger than 11?",
    "question_th": "Rubens Barrichello ตำแหน่งโพลโพสิชันใดเมื่อเขามีรอบที่เร็วที่สุดและรอบที่ใหญ่กว่า 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_en": "Which Grand Prix did David Coulthard win with Michael Schumacher in the pole position before round 9?",
    "question_th": "David Coulthard คว้าแชมป์กรังด์ปรีซ์ใดร่วมกับ Michael Schumacher ในตำแหน่งโพลก่อนยกที่ 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_en": "Who had the fastest lap when David Coulthard had pole position and Michael Schumacher as a winning driver.",
    "question_th": "ใครมีรอบเร็วที่สุดเมื่อ David Coulthard ครองตำแหน่งโพลและมี Michael Schumacher เป็นนักขับที่ชนะ",
    "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_en": "Who had the fastest lap at the Australian Grand Prix?",
    "question_th": "ใครมีรอบเร็วที่สุดในการแข่งขัน 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_en": "Tell me the team 2 for team 1 being la nuova piovese (veneto a)",
    "question_th": "บอกฉันว่าทีม 2 สำหรับทีม 1 คือ 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_en": "Tell me the team 1 for team 2 being civitavecchiese (latium a)",
    "question_th": "บอกฉันทีว่าทีม 1 สำหรับทีม 2 เป็น 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_en": "Tell me the 1st leg for team being budoni (Sardinia)",
    "question_th": "บอกขาแรกของทีมบูโดนี่ (ซาร์ดิเนีย)",
    "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_en": "How many attended the game at Busch Stadium (ii) when the time was 3:54?",
    "question_th": "มีกี่คนที่เข้าร่วมการแข่งขันที่ Busch Stadium (ii) เมื่อเวลา 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_en": "What dates were the games after game 6 played?",
    "question_th": "เกมหลังเกมที่ 6 เล่นวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_56 (date VARCHAR, game INTEGER)"
  },
  {
    "answer": "SELECT 1977 FROM table_name_9 WHERE 1972 = \"grand slam tournaments\"",
    "question_en": "What is the 1977 value that had Grand Slam Tournaments in 1972?",
    "question_th": "มูลค่าปี 1977 ที่มีการแข่งขัน Grand Slam ในปี 1972 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_9 (Id VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_13 WHERE 1976 = \"grand slam tournaments\"",
    "question_en": "What is the tournament that had Grand Slam Tournaments in 1976?",
    "question_th": "ทัวร์นาเมนต์ที่มีการแข่งขันแกรนด์สแลมในปี 1976 คืออะไร?",
    "context": "CREATE TABLE table_name_13 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 1976 FROM table_name_35 WHERE tournament = \"australian open\"",
    "question_en": "What is the 1976 value of the Australian Open?",
    "question_th": "Australian Open มูลค่าปี 1976 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_35 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 1977 FROM table_name_65 WHERE 1974 = \"a\"",
    "question_en": "What is the 1977 value that has a 1974 a value?",
    "question_th": "ค่าปี 1977 ที่มีค่าปี 1974 คืออะไร?",
    "context": "CREATE TABLE table_name_65 (Id VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_87 WHERE record = \"4-10\"",
    "question_en": "Which week led to a record of 4-10?",
    "question_th": "สัปดาห์ไหนทำสถิติ 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_en": "Which week was the game against the San Diego Chargers?",
    "question_th": "สัปดาห์ใดคือเกมกับ 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_en": "What is the height of the player who is from Huntington, WV?",
    "question_th": "ผู้เล่นที่มาจาก Huntington, WV มีความสูงเท่าไร?",
    "context": "CREATE TABLE table_name_93 (height VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_45 WHERE hometown = \"chicago, il\"",
    "question_en": "What school is the player who has a hometown of Chicago, IL from?",
    "question_th": "ผู้เล่นที่มีบ้านเกิดคือเมืองชิคาโก รัฐอิลลินอยส์ จากโรงเรียนใด",
    "context": "CREATE TABLE table_name_45 (school VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_67 WHERE school = \"south medford high school\"",
    "question_en": "Which college is the player from South Medford High School headed to?",
    "question_th": "ผู้เล่นจาก South Medford High School กำลังมุ่งหน้าไปยังวิทยาลัยใด",
    "context": "CREATE TABLE table_name_67 (college VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_68 WHERE college = \"duke\"",
    "question_en": "Which school is the player who is headed to Duke from?",
    "question_th": "ผู้เล่นที่จะมุ่งหน้าไปยัง Duke มาจากโรงเรียนไหน?",
    "context": "CREATE TABLE table_name_68 (school VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_name_83 WHERE college = \"duke\"",
    "question_en": "What is the hometown of the player who is headed to Duke?",
    "question_th": "บ้านเกิดของผู้เล่นที่มุ่งหน้าไปยัง Duke คืออะไร?",
    "context": "CREATE TABLE table_name_83 (hometown VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT louise FROM table_name_83 WHERE dainty_june = \"tracy venner\"",
    "question_en": "Who was Louise when Tracy Venner was Dainty June?",
    "question_th": "หลุยส์คือใครเมื่อ Tracy Venner เป็น 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_en": "Who was Dainty June when Tammy Blanchard was Louise?",
    "question_th": "Dainty June คือใครเมื่อ Tammy Blanchard เป็น 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_en": "Who was Dainty June when Boyd Gaines was Herbie?",
    "question_th": "Dainty June คือใครเมื่อ Boyd Gaines เป็น 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_en": "What production had Angela Lansbury as Rose and Barrie Ingham as Herbie?",
    "question_th": "แองเจลา แลนส์เบอรีเป็นโรสและแบร์รี อิงแฮมเป็นเฮอร์บีโปรดักชั่นเรื่องใด",
    "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_en": "Who was rose in the 1975 Broadway Revival?",
    "question_th": "ใครเป็นคนลุกขึ้นใน Broadway Revival ปี 1975?",
    "context": "CREATE TABLE table_name_60 (rose VARCHAR, productions VARCHAR)"
  },
  {
    "answer": "SELECT productions FROM table_name_96 WHERE herbie = \"rex robbins\"",
    "question_en": "Which production had Rex Robbins as Herbie?",
    "question_th": "ละครเรื่องใดมี Rex Robbins รับบทเป็น Herbie",
    "context": "CREATE TABLE table_name_96 (productions VARCHAR, herbie VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_50 WHERE venue = \"vfl park\"",
    "question_en": "On what date was the venue VFL Park?",
    "question_th": "สนาม VFL Park จัดขึ้นวันไหน?",
    "context": "CREATE TABLE table_name_50 (date VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_92 WHERE home_team = \"footscray\"",
    "question_en": "What date did Footscray play at home?",
    "question_th": "Footscray เล่นที่บ้านวันไหน?",
    "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_en": "What did the home team score when they played the away team of Geelong?",
    "question_th": "เจ้าบ้านได้คะแนนเท่าไหร่เมื่อเจอกับทีมเยือนจีลอง?",
    "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_en": "What was the lowest pick number for the Boston Celtics?",
    "question_th": "หมายเลขตัวเลือกต่ำสุดของ 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_en": "Who is the visitor team on 23 November 2007?",
    "question_th": "ทีมเยือนวันที่ 23 พฤศจิกายน 2550 คือใคร?",
    "context": "CREATE TABLE table_name_98 (visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT leading_scorer FROM table_name_61 WHERE date = \"20 november 2007\"",
    "question_en": "Who is the leading scorer of the game on 20 November 2007?",
    "question_th": "ใครคือผู้ทำประตูสูงสุดของเกมเมื่อวันที่ 20 พฤศจิกายน พ.ศ. 2550?",
    "context": "CREATE TABLE table_name_61 (leading_scorer VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT overall FROM table_name_49 WHERE player = \"petter ronnquist\"",
    "question_en": "When was petter ronnquist picked?",
    "question_th": "ปีเตอร์ รอนน์ควิสต์ถูกเลือกเมื่อไหร่?",
    "context": "CREATE TABLE table_name_49 (overall VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_96 WHERE result = \"1–0\"",
    "question_en": "Which venue has a Result of 1–0?",
    "question_th": "สนามใดมีผลการแข่งขัน 1–0?",
    "context": "CREATE TABLE table_name_96 (venue VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_98 WHERE result = \"1–2\"",
    "question_en": "Which venue has a Result of 1–2?",
    "question_th": "สนามใดมีผลการแข่งขัน 1–2?",
    "context": "CREATE TABLE table_name_98 (venue VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT MAX(scored) FROM table_name_59 WHERE result = \"1–1\" AND date = \"4 march 2001\"",
    "question_en": "What is the highest score with a Result of 1–1 on 4 march 2001?",
    "question_th": "คะแนนสูงสุดด้วยผล 1–1 เมื่อวันที่ 4 มีนาคม พ.ศ. 2544 คือเท่าใด",
    "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_en": "What is the result of 2003 eaff championship preliminary on 2 march 2003?",
    "question_th": "ผลการแข่งขันเอฟฟ์แชมเปี้ยนชิพเบื้องต้น 2 มีนาคม 2546 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_70 (result VARCHAR, competition VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT engine FROM table_name_44 WHERE driver = \"luigi villoresi\"",
    "question_en": "I want the engine for luigi villoresi",
    "question_th": "ฉันต้องการเครื่องยนต์ของลุยจิ วิลโลเรซี",
    "context": "CREATE TABLE table_name_44 (engine VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT chassis FROM table_name_34 WHERE entrant = \"ecurie lutetia\"",
    "question_en": "I want the chassis for entrant of ecurie lutetia",
    "question_th": "ฉันต้องการแชสซีสำหรับผู้เข้า ecurie lutetia",
    "context": "CREATE TABLE table_name_34 (chassis VARCHAR, entrant VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_8 WHERE venue = \"princes park\"",
    "question_en": "What date was the game played at princes park?",
    "question_th": "เกมนี้เล่นวันที่เท่าไหร่ที่ 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_en": "What was the score of the away team when the game was played at vfl park?",
    "question_th": "เกมนี้ทีมเยือนเล่นที่วีเอฟแอลพาร์คได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_83 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT kaz_hayashi FROM table_name_43 WHERE block_a = \"bushi\"",
    "question_en": "Name the kaz hayashi for block A being bushi",
    "question_th": "ตั้งชื่อ kaz hayashi สำหรับบล็อก A ว่า 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_en": "Name the minoru for block A being koji kanemoto",
    "question_th": "ตั้งชื่อ minoru สำหรับบล็อก A ว่า 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_en": "Name the BUSHI when it has kenny omega of yang (7:27)",
    "question_th": "ตั้งชื่อ BUSHI เมื่อมี 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_en": "Name the BUSHI that has kaz hayashi of kai (14:01)",
    "question_th": "ตั้งชื่อ BUSHI ที่มี kaz hayashi ของ 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_en": "Name the Kaz Hayashi which has BUSHI of yang (9:43)",
    "question_th": "ตั้งชื่อคาซ ฮายาชิ ซึ่งมี BUSHI เป็นภาษาหยาง (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_en": "Who was the winning driver for the Dutch Grand Prix?",
    "question_th": "ใครคือนักแข่งที่ชนะรายการ 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_en": "Tell me the song with year before 2013 and music director of yuvan shankar raja and film of billa ii",
    "question_th": "บอกเพลงปีก่อนปี 2013 และผู้กำกับเพลงของ yuvan shankar raja และภาพยนตร์ของ 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_en": "What title aired on March 19, 1998?",
    "question_th": "ชื่อเรื่องอะไรออกอากาศเมื่อวันที่ 19 มีนาคม 2541?",
    "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_en": "Who directed the show with the production code k2708?",
    "question_th": "ใครเป็นผู้กำกับการแสดงด้วยรหัสการผลิต 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_en": "What is the season for series 81?",
    "question_th": "ซีรีย์ 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_en": "On what date was a match played at Lake Oval?",
    "question_th": "แมตช์ที่ 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_en": "At the home game in Collingwood, how much did the away team score?",
    "question_th": "ในเกมเหย้าที่คอลลิงวูด ทีมเยือนทำสกอร์ได้เท่าไหร่?",
    "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_en": "In the game at Victoria Park, what was the number of people in the crowd?",
    "question_th": "ในเกมที่วิคตอเรีย พาร์ค คนดูเยอะขนาดไหน?",
    "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_en": "What was the tournament that happened in 1974 in gothenburg , sweden?",
    "question_th": "การแข่งขันที่เกิดขึ้นในปี 1974 ที่เมืองโกเธนเบิร์ก ประเทศสวีเดน คืออะไร?",
    "context": "CREATE TABLE table_name_84 (tournament VARCHAR, year VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT division FROM table_name_26 WHERE wins = \"76\"",
    "question_en": "Which MLB division has a win record of 76?",
    "question_th": "ดิวิชั่น MLB ใดมีสถิติชนะ 76 ครั้ง?",
    "context": "CREATE TABLE table_name_26 (division VARCHAR, wins VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_63 WHERE team_season = \"1980\"",
    "question_en": "What was the final rank of the Brewers in 1980?",
    "question_th": "อันดับสุดท้ายของ Brewers ในปี 1980 คืออะไร?",
    "context": "CREATE TABLE table_name_63 (finish VARCHAR, team_season VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_79 WHERE win__percentage = \".585\"",
    "question_en": "What was the final rank of the Brewers when they achieved a win percentage of .585?",
    "question_th": "อันดับสุดท้ายของ Brewers คืออะไรเมื่อพวกเขาได้รับเปอร์เซ็นต์การชนะที่ .585?",
    "context": "CREATE TABLE table_name_79 (finish VARCHAR, win__percentage VARCHAR)"
  },
  {
    "answer": "SELECT division FROM table_name_23 WHERE team_season = \"1987\"",
    "question_en": "Which division were the Brewers a part of in the 1987 season?",
    "question_th": "Brewers เป็นส่วนหนึ่งของดิวิชั่นใดในฤดูกาล 1987?",
    "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_en": "Which division of the Brewers had a 5th place ranking and a loss record of 87?",
    "question_th": "ดิวิชั่นใดของ Brewers มีอันดับที่ 5 และมีสถิติแพ้ 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_en": "where was the game site when the opponent was san diego chargers?",
    "question_th": "เว็บไซต์เกมอยู่ที่ไหนเมื่อฝ่ายตรงข้ามคือทีมชาร์จซานดิเอโก?",
    "context": "CREATE TABLE table_name_52 (game_site VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_44 WHERE week = \"9\"",
    "question_en": "who was the opponent when the week was 9?",
    "question_th": "คู่ต่อสู้เมื่อสัปดาห์ที่ 9 คือใคร?",
    "context": "CREATE TABLE table_name_44 (opponent VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_29 WHERE away_team = \"geelong\"",
    "question_en": "What venue features geelong as the away side?",
    "question_th": "สนามใดที่มีจีลองเป็นทีมเยือน?",
    "context": "CREATE TABLE table_name_29 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_65 WHERE home_team = \"essendon\"",
    "question_en": "What venue features essendon at home?",
    "question_th": "สถานที่ใดที่มี Essendon ที่บ้าน?",
    "context": "CREATE TABLE table_name_65 (venue VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT nominee FROM table_name_86 WHERE category = \"best director\"",
    "question_en": "Who is the nominee for best director?",
    "question_th": "ใครคือผู้ได้รับการเสนอชื่อเข้าชิงผู้กำกับยอดเยี่ยม?",
    "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_en": "What ceremony was leela chitnis nominated at?",
    "question_th": "ลีลา จิตนิส ได้รับการเสนอชื่อเข้าชิงในพิธีใด?",
    "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_en": "what is the highest pick number of the CFL team, the winnipeg blue bombers?",
    "question_th": "หมายเลขตัวเลือกสูงสุดของทีม CFL คือ 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_en": "Which college has 41 picks?",
    "question_th": "วิทยาลัยใดมี 41 ตัวเลือก?",
    "context": "CREATE TABLE table_name_86 (college VARCHAR, pick__number VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_96 WHERE college = \"manitoba\"",
    "question_en": "Which player plays for the college of manitoba?",
    "question_th": "ผู้เล่นคนไหนเล่นให้กับวิทยาลัยแมนิโทบา?",
    "context": "CREATE TABLE table_name_96 (player VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT unami_delaware FROM table_name_18 WHERE thomas__1698_ = \"nacha\"",
    "question_en": "What is the Unami Delaware value for a Thomas value of nacha?",
    "question_th": "ค่า Unami Delaware สำหรับค่า Thomas ของ 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é·naxk\"",
    "question_en": "What is the Campanius term for an Unami Delaware term of palé·naxk?",
    "question_th": "คำว่า Campanius สำหรับคำว่า Unami Delaware ของคำว่า palé·naxk คืออะไร?",
    "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í·ša\"",
    "question_en": "What is the De Laet term for a Munsee Delaware term of ní·ša?",
    "question_th": "คำ De Laet สำหรับคำ Munsee Delaware ของ ní·ša คืออะไร?",
    "context": "CREATE TABLE table_name_12 (de_laet__1633_ VARCHAR, munsee_delaware VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_75 WHERE round < 2",
    "question_en": "What is the name of the player picked before round 2?",
    "question_th": "ผู้เล่นที่ถูกเลือกก่อนรอบ 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_en": "What is the name of the player with an overall less than 209 for the Victoriaville tigres (qmjhl), and a Round of 1?",
    "question_th": "ผู้เล่นที่มีคะแนนรวมน้อยกว่า 209 สำหรับ Victoriaville tigres (qmjhl) ชื่ออะไร และรอบ 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_en": "What is the name of the player with an Overall larger than 227?",
    "question_th": "ผู้เล่นที่มีคะแนนรวมมากกว่า 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_en": "What is the highest overall for a round larger than 8 for pavol demitra?",
    "question_th": "คะแนนรวมสูงสุดสำหรับรอบที่มากกว่า 8 สำหรับพาโวล เดมิตราคือเท่าใด",
    "context": "CREATE TABLE table_name_40 (overall INTEGER, round VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT description FROM table_name_61 WHERE livery = \"ews\"",
    "question_en": "What description does Livery of ews have?",
    "question_th": "Livery of ews มีคำอธิบายอะไรบ้าง?",
    "context": "CREATE TABLE table_name_61 (description VARCHAR, livery VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_85 WHERE competition = \"super league 1\"",
    "question_en": "What Position has a Super League 1 Competition?",
    "question_th": "ตำแหน่งใดที่มีการแข่งขัน Super League 1?",
    "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_en": "What Competition in Main Article of Bradford Bulls 1997 have Robbie Paul as Captain with less than 5 Lost?",
    "question_th": "การแข่งขันในบทความหลักของ Bradford Bulls ปี 1997 มี Robbie Paul เป็นกัปตันทีมที่แพ้น้อยกว่า 5 ครั้งอะไร?",
    "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_en": "What Captain has Lost 13?",
    "question_th": "กัปตันคนไหนแพ้ 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_en": "How many Drawn did Coach Francis Cummins have with less than 4 Lost?",
    "question_th": "โค้ชฟรานซิส คัมมินส์จับฉลากได้กี่คนโดยแพ้น้อยกว่า 4 ครั้ง?",
    "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_en": "What horse did not start and had a total of over 16.16?",
    "question_th": "ม้าตัวไหนสตาร์ทไม่ติดและมีคะแนนรวมเกิน 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_en": "What was the total for christina liebherr?",
    "question_th": "คริสติน่า ลีเบอร์ มีรายได้รวมเท่าไร?",
    "context": "CREATE TABLE table_name_4 (total INTEGER, rider VARCHAR)"
  },
  {
    "answer": "SELECT population FROM table_name_51 WHERE germans = \"87.5%\"",
    "question_en": "What is the population of the year featuring an 87.5% German population?",
    "question_th": "ประชากรแห่งปีที่มีประชากรชาวเยอรมัน 87.5% คือเท่าใด",
    "context": "CREATE TABLE table_name_51 (population VARCHAR, germans VARCHAR)"
  },
  {
    "answer": "SELECT height FROM table_name_48 WHERE hometown = \"chicago, il\"",
    "question_en": "How tall is the player from Chicago, IL?",
    "question_th": "ผู้เล่นจากชิคาโก อิลลินอยส์ สูงเท่าไหร่?",
    "context": "CREATE TABLE table_name_48 (height VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_26 WHERE player = \"dennis scott\"",
    "question_en": "What college does Dennis Scott attend?",
    "question_th": "Dennis Scott เข้าเรียนที่วิทยาลัยใด",
    "context": "CREATE TABLE table_name_26 (college VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_20 WHERE hometown = \"bay city, tx\"",
    "question_en": "Who's from Bay City, TX?",
    "question_th": "ใครมาจากเบย์ซิตี้ รัฐเท็กซัส?",
    "context": "CREATE TABLE table_name_20 (player VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT nba_draft FROM table_name_61 WHERE player = \"labradford smith\"",
    "question_en": "Which NBA Draft had Labradford Smith?",
    "question_th": "NBA Draft ใดที่มี 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_en": "What was the lowest attendance at Windy Hill?",
    "question_th": "ผู้เข้าร่วม 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_en": "What was the home team's score at Princes Park?",
    "question_th": "สกอร์ของเจ้าบ้านที่ปริ้นซ์ ปาร์คเป็นเท่าไหร่?",
    "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_en": "How much did the home team Geelong score?",
    "question_th": "เจ้าบ้านจีลองทำสกอร์ได้เท่าไหร่?",
    "context": "CREATE TABLE table_name_50 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_86 WHERE away_team = \"carlton\"",
    "question_en": "What is the name of the home team that played Carlton?",
    "question_th": "เจ้าบ้านที่เล่นคาร์ลตันชื่ออะไร?",
    "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_en": "Name the status with builder of orenstein and koppel",
    "question_th": "ตั้งชื่อสถานะด้วยผู้สร้าง orenstein และ koppel",
    "context": "CREATE TABLE table_name_54 (status VARCHAR, builder VARCHAR)"
  },
  {
    "answer": "SELECT builder FROM table_name_60 WHERE name_number = \"joffre\"",
    "question_en": "Who was the builder for joffre",
    "question_th": "ใครคือผู้สร้างจอฟเฟอร์",
    "context": "CREATE TABLE table_name_60 (builder VARCHAR, name_number VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_14 WHERE home_team = \"carlton\"",
    "question_en": "Where did Carlton play as the home team?",
    "question_th": "คาร์ลตันเล่นเป็นเจ้าบ้านที่ไหน?",
    "context": "CREATE TABLE table_name_14 (venue VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_98 WHERE away_team = \"melbourne\"",
    "question_en": "Who was the home team when Melbourne was the away team?",
    "question_th": "เมื่อเมลเบิร์นเป็นทีมเยือนคือใคร?",
    "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_en": "What was the result on November 20, 1988?",
    "question_th": "ผลลัพธ์เมื่อวันที่ 20 พฤศจิกายน 2531 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_49 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT kickoff_[a_] FROM table_name_60 WHERE week = \"5\"",
    "question_en": "What time was the kickoff on week 5?",
    "question_th": "กำหนดการในสัปดาห์ที่ 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_en": "Where was the game that had an attendance of 39,889?",
    "question_th": "เกมไหนที่มีผู้เข้าชม 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_en": "What was the record when the attendance was 43,502?",
    "question_th": "อะไรคือสถิติเมื่อมีผู้เข้าร่วม 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_en": "What label released a CD in 1988?",
    "question_th": "ค่ายเพลงใดออกซีดีในปี 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_en": "On what date did the United Kingdom have a catalog of FT 507?",
    "question_th": "สหราชอาณาจักรมีแคตตาล็อก 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_en": "On what date was the Catalog FT 507?",
    "question_th": "แคตตาล็อก 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_en": "Which label had a catalog of 54513 in 1988?",
    "question_th": "ป้ายกำกับใดมีแคตตาล็อก 54513 ในปี 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_en": "On what date did Fantasy Records release a CD format of catalog FCD-4513-2?",
    "question_th": "Fantasy Records เผยแพร่รูปแบบซีดีของแคตตาล็อก 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_en": "What was John Watson's total laps with a grid of less than 7?",
    "question_th": "รอบรวมของ John Watson โดยมีตารางน้อยกว่า 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_en": "How many laps were there with #9 grid?",
    "question_th": "มีกี่รอบกับตาราง #9?",
    "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_en": "What was the time/retired with laps less than 33 and a grid of 14?",
    "question_th": "เวลา/เกษียณที่มีรอบน้อยกว่า 33 และตาราง 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_en": "What was John Watson's time/retired?",
    "question_th": "เวลาของ John Watson / เกษียณคืออะไร?",
    "context": "CREATE TABLE table_name_46 (time_retired VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_41 WHERE no_s_ = \"14\"",
    "question_en": "What is the player with the no. 14?",
    "question_th": "ผู้เล่นหมายเลขอะไร 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_en": "What is the height of the player from Benetton Treviso, Italy?",
    "question_th": "นักเตะจาก 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_en": "I want to know the pens with conv of 6",
    "question_th": "ฉันต้องการทราบปากกาที่มีคอนวี 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_en": "Which pens has 1 tries and matt alexander as a player with conv of 4?",
    "question_th": "ปากกาใดที่มีการลอง 1 ครั้งและ Matt Alexander ในฐานะผู้เล่นที่มี Conv เท่ากับ 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_en": "Name the venue that has conv of 5 players on 20 points",
    "question_th": "ตั้งชื่อสถานที่ที่มีการประชุมผู้เล่น 5 คน ได้ 20 คะแนน",
    "context": "CREATE TABLE table_name_12 (venue VARCHAR, conv VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_90 WHERE wins < 3 AND matches < 15",
    "question_en": "What are the names of those who made less than 3 wins in 15 matches?",
    "question_th": "ผู้ที่ชนะน้อยกว่า 3 นัดจาก 15 นัดมีชื่ออะไรบ้าง?",
    "context": "CREATE TABLE table_name_90 (name VARCHAR, wins VARCHAR, matches VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_name_31 WHERE game < 2",
    "question_en": "What is the highest amount of points when the game is less than 2?",
    "question_th": "จำนวนคะแนนสูงสุดเมื่อเกมน้อยกว่า 2 คือเท่าใด",
    "context": "CREATE TABLE table_name_31 (high_points VARCHAR, game INTEGER)"
  },
  {
    "answer": "SELECT score FROM table_name_3 WHERE date = \"april 20\"",
    "question_en": "What was the score on April 20?",
    "question_th": "คะแนนวันที่ 20 เมษายน เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_3 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_70 WHERE date = \"june 11, 1995\"",
    "question_en": "Name the surface on june 11, 1995",
    "question_th": "ตั้งชื่อพื้นผิวเมื่อวันที่ 11 มิถุนายน พ.ศ. 2538",
    "context": "CREATE TABLE table_name_70 (surface VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_34 WHERE date = \"september 12, 1993\"",
    "question_en": "Name the score for september 12, 1993",
    "question_th": "ตั้งชื่อคะแนนสำหรับวันที่ 12 กันยายน 1993",
    "context": "CREATE TABLE table_name_34 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_71 WHERE score = \"7–6(4), 6–1\"",
    "question_en": "Name the surface for score of 7–6(4), 6–1",
    "question_th": "ตั้งชื่อพื้นผิวสำหรับคะแนน 7–6(4), 6–1",
    "context": "CREATE TABLE table_name_71 (surface VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_98 WHERE score = \"7–6(4), 6–1\"",
    "question_en": "Name the date that had a score of 7–6(4), 6–1",
    "question_th": "ตั้งชื่อวันที่ที่มีคะแนน 7–6(4), 6–1",
    "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_en": "what is the result for the world group, semifinals after the year 1997?",
    "question_th": "ผลการแข่งขันกลุ่มโลกรอบรองชนะเลิศหลังปี 2540 เป็นอย่างไร?",
    "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_en": "What home team played against south Melbourne?",
    "question_th": "ทีมเหย้าทีมใดเล่นกับเซาท์เมลเบิร์น?",
    "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_en": "What is the average crowd size for the home team essendon?",
    "question_th": "ขนาดฝูงชนเฉลี่ยของทีมเจ้าบ้านเอสเซนดอนคือเท่าใด?",
    "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_en": "What is the home team score when north Melbourne was the away team?",
    "question_th": "เมื่อเมลเบิร์นเหนือเป็นทีมเยือนสกอร์เท่าไหร่?",
    "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_en": "What is the average grid with brm and under 63 laps?",
    "question_th": "ตารางเฉลี่ยที่มี brm และต่ำกว่า 63 รอบเป็นเท่าใด?",
    "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_en": "On what circuit is there a class gts-2 race that takes place on May 27?",
    "question_th": "มีการแข่งขันคลาส GTS-2 ในวันที่ 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_en": "On what circuit is there a race that lasts 2 hours?",
    "question_th": "มีการแข่งขัน 2 ชั่วโมงในสนามใดบ้าง?",
    "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_en": "What class is the dodge dealers grand prix?",
    "question_th": "ดีลเลอร์กรังด์ปรีซ์ระดับใด?",
    "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_en": "What is the length of the First Union six hours at the Glen?",
    "question_th": "First Union หกชั่วโมงที่ Glen มีความยาวเท่าไร?",
    "context": "CREATE TABLE table_name_95 (length VARCHAR, race VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_name_20 WHERE date = \"august 25\"",
    "question_en": "What is the class of the race that takes place on August 25?",
    "question_th": "การแข่งขันที่จะจัดขึ้นในวันที่ 25 สิงหาคม จะเป็นคลาสอะไร?",
    "context": "CREATE TABLE table_name_20 (class VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_94 WHERE home = \"montreal\"",
    "question_en": "What was the score when Montreal was home?",
    "question_th": "เมื่อมอนทรีออลกลับบ้านได้คะแนนเท่าไหร่?",
    "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_en": "On 9/3/97, what was the score that resulted in a w?",
    "question_th": "วันที่ 9/3/97 คะแนนที่ออกมาเป็นอย่างไรบ้าง aw?",
    "context": "CREATE TABLE table_name_72 (score VARCHAR, result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_35 WHERE roll = 422",
    "question_en": "Who has a roll value of 422?",
    "question_th": "ใครมีมูลค่าม้วน 422?",
    "context": "CREATE TABLE table_name_35 (name VARCHAR, roll VARCHAR)"
  },
  {
    "answer": "SELECT area FROM table_name_44 WHERE decile = 10",
    "question_en": "In what area is the decile value 10?",
    "question_th": "ค่าเดซิล์ 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_en": "What is the highest decile value with a roll greater than 301 in Hauraki?",
    "question_th": "ค่าเดซิลสูงสุดที่มีการหมุนมากกว่า 301 ใน 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_en": "Which Points classification has a Trofeo Fast Team of metauro mobili-pinarello, and a Stage of 6?",
    "question_th": "การจัดประเภทคะแนนใดที่มีทีม Trofeo Fast จาก metauro mobili-pinarello และสเตจที่ 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_en": "Which stage has a Winner of lucien van impe?",
    "question_th": "เวทีไหนมีผู้ชนะ 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_en": "Which Trofeo Fast Team has a Winner of alessandro paganessi?",
    "question_th": "ทีม Trofeo Fast ทีมใดมีผู้ชนะจาก 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_en": "Which General classification has a Stage of 7?",
    "question_th": "การจัดประเภททั่วไปใดมีระดับ 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_en": "Which Winner has a Trofeo Fast Team of metauro mobili-pinarello, and a General classification of giuseppe saronni?",
    "question_th": "ผู้ชนะคนใดมีทีม Trofeo Fast ของ metauro mobili-pinarello และประเภททั่วไปของ 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_en": "What's the report for the mosport park circuit?",
    "question_th": "รายงานของสนาม Mosport Park คืออะไร?",
    "context": "CREATE TABLE table_name_67 (report VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT pole_position FROM table_name_13 WHERE circuit = \"nürburgring\"",
    "question_en": "Who has the pole position for the nürburgring circuit?",
    "question_th": "ใครเป็นผู้ครองตำแหน่งโพลโพซิชั่นในสนามเนือร์บูร์กริง?",
    "context": "CREATE TABLE table_name_13 (pole_position VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_77 WHERE winning_driver = \"pedro rodríguez\"",
    "question_en": "When was pedro rodríguez the winning driver?",
    "question_th": "เปโดร โรดริเกซเป็นผู้ชนะเมื่อใด",
    "context": "CREATE TABLE table_name_77 (date VARCHAR, winning_driver VARCHAR)"
  },
  {
    "answer": "SELECT report FROM table_name_92 WHERE race = \"mexican grand prix\"",
    "question_en": "What's the report for the mexican grand prix?",
    "question_th": "รายงานสำหรับกรังด์ปรีซ์เม็กซิกันคืออะไร?",
    "context": "CREATE TABLE table_name_92 (report VARCHAR, race VARCHAR)"
  },
  {
    "answer": "SELECT time_retired FROM table_name_6 WHERE driver = \"nigel mansell\"",
    "question_en": "What is nigel mansell's time/retired?",
    "question_th": "เวลาของไนเจล แมนเซลล์/เกษียณคืออะไร?",
    "context": "CREATE TABLE table_name_6 (time_retired VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_20 WHERE venue = \"junction oval\"",
    "question_en": "What team was the away team at Junction Oval?",
    "question_th": "ทีมเยือนจังชั่นโอวัลคือทีมใด?",
    "context": "CREATE TABLE table_name_20 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_26 WHERE visitor = \"mavericks\"",
    "question_en": "What is the home team when the visiting team is the Mavericks?",
    "question_th": "เจ้าบ้านจะเป็นอย่างไรเมื่อทีมเยือนคือแมฟเวอริกส์?",
    "context": "CREATE TABLE table_name_26 (home VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT AVG(year) FROM table_name_13 WHERE mintage < 10 OFFSET 000",
    "question_en": "What was the average year for a coin that had a mintage smaller than 10,000?",
    "question_th": "ปีเฉลี่ยของเหรียญที่มีจำนวนผลิตน้อยกว่า 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_en": "What is he Atsushi Aoki when the Black Tiger V is ibushi (16:35)?",
    "question_th": "เขาคืออะไร อัตสึชิ อาโอกิ ในเมื่อเสือดำ V คือ อิบูชิ (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_en": "What is the Akira when Tiger Mask IV is Akira (10:05)?",
    "question_th": "อากิระ คืออะไร ในเมื่อ Tiger Mask IV คือ อากิระ (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_en": "What is the corresponding Akira when Milano Collection A.T is Milano (10:29)?",
    "question_th": "อากิระที่สอดคล้องกันคืออะไรเมื่อ Milano Collection AT คือ 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_en": "What is Block A when Prince Devitt is Devitt (9:53)?",
    "question_th": "Block A คืออะไรเมื่อ Prince Devitt คือ 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_en": "What is the Akira when Prince Devitt is Devitt (7:20)?",
    "question_th": "อากิระคืออะไรเมื่อเจ้าชายเดวิตต์เป็นเดวิตต์ (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_en": "What is the Prince Devitt when Block A is Yamato?",
    "question_th": "เจ้าชายเดวิตต์จะเป็นอย่างไรเมื่อ Block A คือยามาโตะ?",
    "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_en": "I want the league one/second division for club of millwall",
    "question_th": "ฉันต้องการลีกดิวิชั่น 1/2 ของสโมสรมิลล์วอลล์",
    "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_en": "What was the score of the home team when they played carlton?",
    "question_th": "เจ้าบ้านได้สกอร์เท่าไหร่เมื่อเจอกับคาร์ลตัน?",
    "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_en": "How many points did the visiting team score at south melbourne?",
    "question_th": "ทีมเยือนทำประตูที่เซาธ์ เมลเบิร์นได้กี่แต้ม?",
    "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_en": "What is the total Crowd number for the Away team of Hawthorn?",
    "question_th": "จำนวนฝูงชนของทีมเยือนฮอว์ธอร์นคือเท่าไร?",
    "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_en": "What did the team score when playing against home in geelong?",
    "question_th": "ทีมทำคะแนนได้เท่าไหร่เมื่อเจอกับทีมเหย้าที่จีลอง?",
    "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_en": "How many people watched when st kilda played at home?",
    "question_th": "มีคนดูกี่คนเมื่อเซนต์คิลดาเล่นในบ้าน?",
    "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_en": "Who was the away team when the crowd was larger than 41,451?",
    "question_th": "ทีมเยือนเมื่อคนดูมากกว่า 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_en": "Who was the home team when the venue was Junction Oval?",
    "question_th": "เจ้าบ้านคือใครเมื่อครั้งที่สนามจังชั่นโอวัล?",
    "context": "CREATE TABLE table_name_82 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_82 WHERE attendance = \"66,772\"",
    "question_en": "I want to know the time which has attendance of 66,772",
    "question_th": "อยากทราบเวลาที่มีผู้เข้าร่วม 66,772 คน",
    "context": "CREATE TABLE table_name_82 (time VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_86 WHERE attendance = \"76,965\"",
    "question_en": "Name the opponent that has attendance of 76,965",
    "question_th": "ระบุชื่อคู่ต่อสู้ที่มีผู้เข้าร่วม 76,965 คน",
    "context": "CREATE TABLE table_name_86 (opponent VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_89 WHERE attendance = \"78,301\"",
    "question_en": "Tell me the week that has an attendance of 78,301",
    "question_th": "บอกฉันสัปดาห์ที่มีผู้เข้าร่วม 78,301 คน",
    "context": "CREATE TABLE table_name_89 (week VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_61 WHERE week = \"3\"",
    "question_en": "I want to know the opponent that ha a week of 3",
    "question_th": "ฉันต้องการทราบคู่ต่อสู้ที่ฮาสัปดาห์ที่ 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_en": "How many were in attendance on 14 April 2007?",
    "question_th": "มีผู้เข้าร่วมในวันที่ 14 เมษายน พ.ศ. 2550 กี่คน?",
    "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_en": "What is catcher Josh Donaldson's pick number?",
    "question_th": "หมายเลขเลือกของ Josh Donaldson ที่จับคืออะไร?",
    "context": "CREATE TABLE table_name_11 (pick VARCHAR, position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_25 WHERE college = \"akron\"",
    "question_en": "Which players plays at Akron College?",
    "question_th": "ผู้เล่นคนไหนเล่นที่ 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_en": "Which college does the player jon hameister-ries play for?",
    "question_th": "นักเตะจอน ฮาไมสเตอร์-รีส์เล่นให้กับวิทยาลัยใด?",
    "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_en": "What is the nationality of the player with a pick larger than 21 from the College of the Sequoias?",
    "question_th": "ผู้เล่นสัญชาติใดที่มีตัวเลือกมากกว่า 21 จาก 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_en": "I want the result for goals which has goals of deacon 6/6",
    "question_th": "ฉันต้องการผลประตูที่มีประตูมัคนายก 6/6",
    "context": "CREATE TABLE table_name_52 (result VARCHAR, goals VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_28 WHERE venue = \"wilderspool\"",
    "question_en": "Which competition was at wilderspool?",
    "question_th": "การแข่งขันครั้งใดที่ Wilderspool?",
    "context": "CREATE TABLE table_name_28 (competition VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_58 WHERE score = \"82-0\"",
    "question_en": "Tell me the venue for score of 82-0",
    "question_th": "บอกสถานที่สกอร์ 82-0 หน่อยครับ",
    "context": "CREATE TABLE table_name_58 (venue VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_68 WHERE venue = \"mcalpine stadium\"",
    "question_en": "I want the date with the venue of mcalpine stadium",
    "question_th": "ฉันต้องการเดทกับสถานที่ของสนามแมคคาลไพน์",
    "context": "CREATE TABLE table_name_68 (date VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT goals FROM table_name_54 WHERE score = \"38-28\"",
    "question_en": "Tell me the goals for score of 38-28",
    "question_th": "บอกจำนวนประตูสกอร์ 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ébastien bourdais\" AND laps < 67",
    "question_en": "Tell me the least Grid with points more than 11 and drivers being sébastien bourdais with laps less than 67",
    "question_th": "บอกกริดน้อยที่สุดที่มีคะแนนมากกว่า 11 และนักแข่งเป็น sébastien bourdais ที่มีรอบน้อยกว่า 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_en": "Name the most laps for grid more than 9 and the driver being jan heylen",
    "question_th": "ตั้งชื่อรอบมากที่สุดสำหรับกริดที่มากกว่า 9 และนักแข่งคือ แจน เฮย์เลน",
    "context": "CREATE TABLE table_name_9 (laps INTEGER, grid VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(grid) FROM table_name_69 WHERE laps = 24",
    "question_en": "What is the grid when the laps were 24?",
    "question_th": "ตารางเมื่อรอบอยู่ที่ 24 คืออะไร?",
    "context": "CREATE TABLE table_name_69 (grid VARCHAR, laps VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_77 WHERE driver = \"chris amon\"",
    "question_en": "Who constructed Chris Amon's car?",
    "question_th": "ใครเป็นคนสร้างรถของคริส อมร?",
    "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_en": "What was Jack Brabham's highest grid when his laps were more than 90?",
    "question_th": "ตารางที่สูงที่สุดของ Jack Brabham เมื่อรอบของเขามากกว่า 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_en": "What was CHris Amon's highest lap when his grid was 4?",
    "question_th": "อะไรคือรอบสูงสุดของ CHris Amon เมื่อกริดอยู่ที่ 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_en": "Where did Hawthorn have their away match against North Melbourne?",
    "question_th": "ฮอว์ธอร์นลงเล่นเกมเยือนกับนอร์ท เมลเบิร์น นัดไหน?",
    "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_en": "What was the home team score at Richmond's away game against Footscray?",
    "question_th": "สกอร์ของเจ้าบ้านในเกมเยือนของริชมอนด์กับฟุตสเครย์เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_17 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT crowd FROM table_name_28 WHERE home_team = \"footscray\"",
    "question_en": "What is the size of the crowd for the home team of Footscray?",
    "question_th": "ฝูงชนเจ้าบ้าน ฟุตสเครย์ ขนาดไหน?",
    "context": "CREATE TABLE table_name_28 (crowd VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT time_retired FROM table_name_2 WHERE laps = 42",
    "question_en": "What is the Time/Retired for the car going 42 Laps?",
    "question_th": "เวลา/เกษียณสำหรับรถที่จะวิ่ง 42 รอบคือเท่าไร?",
    "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_en": "How many laps for alexander wurz with a grid under 12?",
    "question_th": "อเล็กซานเดอร์ เวิร์ซ มีกริดต่ำกว่า 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_en": "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?",
    "question_th": "คะแนนชุดราตรีต่ำสุดที่ผู้เข้าแข่งขันได้คะแนนเฉลี่ยต่ำกว่า 8.23 คะแนนสัมภาษณ์ 8.11 และชุดว่ายน้ำขนาดใหญ่กว่า 7.84 ได้คะแนนเท่าใด",
    "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_en": "What is the total interview score a contestant from Indiana with an average smaller than 8.3 has?",
    "question_th": "คะแนนการสัมภาษณ์ทั้งหมดที่ผู้เข้าแข่งขันจากรัฐอินเดียนาที่มีค่าเฉลี่ยน้อยกว่า 8.3 เป็นเท่าใด",
    "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_en": "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?",
    "question_th": "ชุดว่ายน้ำที่สูงที่สุดของผู้เข้าแข่งขันจากแคนซัสที่มีค่าเฉลี่ยมากกว่า 8.48 การสัมภาษณ์สูงกว่า 8.58 และชุดราตรีที่สูงกว่า 8.82 คืออะไร?",
    "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_en": "What is the average interview score of a contestant from Louisiana with an evening gown smaller than 8.82?",
    "question_th": "คะแนนสัมภาษณ์เฉลี่ยของผู้เข้าแข่งขันจากหลุยเซียน่ากับชุดราตรีน้อยกว่า 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_en": "What prefix has Haloalkane as the chemical class?",
    "question_th": "Haloalkane เป็นคลาสเคมีที่มีคำนำหน้าอะไร",
    "context": "CREATE TABLE table_name_4 (prefix VARCHAR, chemical_class VARCHAR)"
  },
  {
    "answer": "SELECT example FROM table_name_36 WHERE formula = \"rx\"",
    "question_en": "Which example has rx as the formula?",
    "question_th": "ตัวอย่างใดมี rx เป็นสูตร",
    "context": "CREATE TABLE table_name_36 (example VARCHAR, formula VARCHAR)"
  },
  {
    "answer": "SELECT chemical_class FROM table_name_90 WHERE example = \"chloroethane (ethyl chloride)\"",
    "question_en": "Which chemical class uses the example Chloroethane (ethyl chloride)?",
    "question_th": "สารเคมีประเภทใดที่ใช้ตัวอย่างคลอโรอีเทน (เอทิลคลอไรด์)",
    "context": "CREATE TABLE table_name_90 (chemical_class VARCHAR, example VARCHAR)"
  },
  {
    "answer": "SELECT prefix FROM table_name_78 WHERE group = \"bromo\"",
    "question_en": "What prefix has Bromo as the group?",
    "question_th": "โบรโม่เป็นกลุ่มที่มีคำนำหน้าอะไร?",
    "context": "CREATE TABLE table_name_78 (prefix VARCHAR, group VARCHAR)"
  },
  {
    "answer": "SELECT chemical_class FROM table_name_33 WHERE formula = \"ri\"",
    "question_en": "What is the chemical class for ri?",
    "question_th": "ri จัดอยู่ในกลุ่มเคมีใด",
    "context": "CREATE TABLE table_name_33 (chemical_class VARCHAR, formula VARCHAR)"
  },
  {
    "answer": "SELECT prefix FROM table_name_73 WHERE chemical_class = \"iodoalkane\"",
    "question_en": "What prefix has chemical class Iodoalkane?",
    "question_th": "คำนำหน้าใดมีคลาสเคมี 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_en": "What is the rank of Lee Trevino, who had less than 27 wins?",
    "question_th": "ลี เทรวิโน่ แชมป์ต่ำกว่า 27 นัดอยู่อันดับไหน?",
    "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_en": "What date did the show with a series larger than 40, production code smaller than 213, and a season number larger than 11 air?",
    "question_th": "วันที่ใดที่ซีรีส์มีขนาดใหญ่กว่า 40 รหัสการผลิตน้อยกว่า 213 และหมายเลขซีซันที่มากกว่า 11 ออกอากาศ?",
    "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_en": "Who wrote the series number 49 with a season larger than 4?",
    "question_th": "ใครเป็นคนเขียนซีรีส์หมายเลข 49 ที่มีซีซันใหญ่กว่า 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_en": "What is the total count of net gross in 1957?",
    "question_th": "จำนวนรวมสุทธิในปี 2500 เป็นเท่าใด",
    "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_en": "What is the total End term with a Title of prince regent of bavaria?",
    "question_th": "วาระสุดท้ายที่มีตำแหน่งเจ้าชายผู้สำเร็จราชการแห่งบาวาเรียคืออะไร?",
    "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_en": "What is the smallest End term with a Start term of 1913, and a Name of ludwig iii?",
    "question_th": "เทอมสุดท้ายที่เล็กที่สุดที่มีเทอมเริ่มต้นคือ 1913 และชื่อของ 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_en": "Which Title has an 1825 end term?",
    "question_th": "หัวข้อใดมีวาระสิ้นสุดในปี 1825",
    "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_en": "What is the average Start term with a 1912 end term?",
    "question_th": "ระยะเวลาเริ่มต้นโดยเฉลี่ยกับระยะเวลาสิ้นสุดปี 1912 คืออะไร?",
    "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_en": "What date were the high rebounds Evans (14)?",
    "question_th": "อีแวนส์ รีบาวด์สูง (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_en": "Which game has a high rebound of Evans (7) and a high assist of Evans, Ollie (3)?",
    "question_th": "เกมไหนมีการเด้งสูงของอีแวนส์ (7) และแอสซิสต์สูงของอีแวนส์, โอลลี่ (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_en": "What division has the highest FA Cup Goals, but a Total Goal score less than 5, and a Total Apps of 52?",
    "question_th": "ดิวิชั่นใดที่มีประตูในเอฟเอ คัพ สูงที่สุด แต่คะแนนประตูรวมน้อยกว่า 5 และคะแนนรวมทั้งหมด 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_en": "What is the average FL Cup Apps, with a FL Cup Goals greater than 0, but a Other Apps less than 0?",
    "question_th": "แอป FL Cup โดยเฉลี่ยโดยมีเป้าหมาย FL Cup มากกว่า 0 แต่แอปอื่นน้อยกว่า 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_en": "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?",
    "question_th": "จำนวนประตูทั้งหมดของ FL Cup ของดิวิชั่น 1 โดยที่แอปอื่นๆ มากกว่า 3 และประตู FA Cup มากกว่า 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_en": "What is Division One's average Other Apps, with a League Goal less than 1?",
    "question_th": "แอปอื่นๆ โดยเฉลี่ยของดิวิชั่น 1 ซึ่งมีเป้าหมายในลีกน้อยกว่า 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_en": "Who plays at Victoria Park?",
    "question_th": "ใครเล่นที่ 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_en": "What is the score against the indians after game 2?",
    "question_th": "คะแนนกับอินเดียนหลังเกมที่ 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_en": "What is the average grid for piers courage?",
    "question_th": "ตารางเฉลี่ยสำหรับความกล้าหาญของเพียร์สคือเท่าไร?",
    "context": "CREATE TABLE table_name_96 (grid INTEGER, driver VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_66 WHERE laps = 53",
    "question_en": "Who drove 53 laps?",
    "question_th": "ใครขับ 53 รอบ?",
    "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_en": "What is the lap total for george eaton, with a grid under 17 retiring due to gearbox?",
    "question_th": "ผลรวมรอบของ George Eaton คือเท่าไร โดยที่กริดต่ำกว่า 17 จะเลิกใช้เนื่องจากกระปุกเกียร์",
    "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_en": "How many laps for denny hulme with under 4 on the grid?",
    "question_th": "เดนนี่ ฮูล์มที่สกอร์ต่ำกว่า 4 อยู่ในกริดกี่รอบ?",
    "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_en": "What was the score of the home team when there were more than 5,500 people in the crowd?",
    "question_th": "เจ้าบ้านสกอร์เมื่อคนดูเกิน 5,500 คนเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_39 (home_team VARCHAR, crowd INTEGER)"
  },
  {
    "answer": "SELECT SUM(crowd) FROM table_name_33 WHERE home_team = \"essendon\"",
    "question_en": "What is the sum of Crowd when Essendon was the home team?",
    "question_th": "ผลรวมของ Crowd เมื่อ Essendon เป็นเจ้าบ้านเป็นเท่าใด?",
    "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_en": "What was the home team score when North Melbourne was the away team?",
    "question_th": "เมื่อนอร์ธ เมลเบิร์นเป็นทีมเยือนสกอร์เท่าไร?",
    "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_en": "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?",
    "question_th": "หมายเลขชาร์ต US Hot 100 ของซิงเกิลจากอัลบั้มปี 2002 West Coast Bad Boyz, vol. คืออะไร 3: ปลอกคอโผล่เหรอ?",
    "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_en": "What is the U.S. Rap chart number of the album west coast bad boyz, vol. 3: poppin' collars?",
    "question_th": "หมายเลขชาร์ต US Rap ของอัลบั้ม West Coast Bad Boyz, vol. คืออะไร 3: ปลอกคอโผล่เหรอ?",
    "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_en": "What is the top round for the baltimore bullets with a Pick larger than 6?",
    "question_th": "รอบบนสุดสำหรับกระสุนบัลติมอร์ที่มี Pick มากกว่า 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_en": "What team was the away team when they played at lake oval?",
    "question_th": "ตอนที่เล่นที่เลคโอวัลคือทีมใด?",
    "context": "CREATE TABLE table_name_84 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT crowd FROM table_name_3 WHERE home_team = \"north melbourne\"",
    "question_en": "How many people were in the crowd when North Melbourne was the home team?",
    "question_th": "ตอนที่ นอร์ท เมลเบิร์น เป็นเจ้าบ้านมีกี่คนที่อยู่ในฝูงชน?",
    "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_en": "What is Craig Whelihan's average when his yards are smaller than 0?",
    "question_th": "ค่าเฉลี่ยของเครก เวลิฮานเป็นเท่าใดเมื่อหลาของเขาน้อยกว่า 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_en": "Which largest average had 1229 yards?",
    "question_th": "ค่าเฉลี่ยที่ใหญ่ที่สุดใดมี 1,229 หลา?",
    "context": "CREATE TABLE table_name_83 (avg INTEGER, yards VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_8 WHERE circuit = \"silverstone\"",
    "question_en": "What is the constructor where the circuit is Silverstone?",
    "question_th": "ตัวสร้างที่วงจรคือซิลเวอร์สโตนคืออะไร?",
    "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_en": "Who is the Winning Driver in the race viii gran premio di siracusa?",
    "question_th": "ใครคือผู้ชนะในการแข่งขัน 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_en": "What is the date that the winner driver is Stirling Moss in the race named vi grand prix de caen?",
    "question_th": "วันที่เท่าไหร่ที่นักแข่งผู้ชนะคือ Stirling Moss ในการแข่งขันชื่อ 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°n 106.4454°w\"",
    "question_en": "Which state is the location of 39.1178°n 106.4454°w in?",
    "question_th": "ตำแหน่งของ 39.1178°n 106.4454°w อยู่ในรัฐใด",
    "context": "CREATE TABLE table_name_55 (state VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT MAX(rank) FROM table_name_12 WHERE mountain_peak = \"mount elbert\"",
    "question_en": "What is the highest rank Mount Elbert has?",
    "question_th": "Mount Elbert มีอันดับสูงสุดคืออะไร?",
    "context": "CREATE TABLE table_name_12 (rank INTEGER, mountain_peak VARCHAR)"
  },
  {
    "answer": "SELECT mountain_range FROM table_name_3 WHERE location = \"37.3934°n 104.9201°w\"",
    "question_en": "What is the mountain range at 37.3934°n 104.9201°w?",
    "question_th": "เทือกเขาที่ 37.3934°n 104.9201°w คือเท่าใด",
    "context": "CREATE TABLE table_name_3 (mountain_range VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_77 WHERE mountain_peak = \"blanca peak\"",
    "question_en": "What is the location of Blanca Peak?",
    "question_th": "ที่ตั้งของ 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_en": "Which state is West Spanish Peak in?",
    "question_th": "West Spanish Peak อยู่ในรัฐใด",
    "context": "CREATE TABLE table_name_4 (state VARCHAR, mountain_peak VARCHAR)"
  },
  {
    "answer": "SELECT mountain_range FROM table_name_59 WHERE rank = 5",
    "question_en": "What is the ranked 5 mountain range?",
    "question_th": "เทือกเขาอันดับที่ 5 คืออะไร?",
    "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_en": "Name of choice b. Randell is the name of which District Residence?",
    "question_th": "ชื่อที่เลือก ข. แรนเดลเป็นชื่อของบ้านพักเขตไหน?",
    "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_en": "Who has a Took Office of march 4, 1903?",
    "question_th": "ใครได้เข้ารับตำแหน่งเมื่อวันที่ 4 มีนาคม พ.ศ. 2446?",
    "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_en": "Which Took Office that has a Party of democrat, under the name of John Hancock",
    "question_th": "ซึ่งเข้ารับตำแหน่งที่มีพรรคประชาธิปัตย์ภายใต้ชื่อจอห์น แฮนค็อก",
    "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_en": "Who has Took Office of march 4, 1875?",
    "question_th": "ใครเข้ารับตำแหน่งเมื่อวันที่ 4 มีนาคม พ.ศ. 2418",
    "context": "CREATE TABLE table_name_67 (name VARCHAR, took_office VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_89 WHERE date = \"june 22\"",
    "question_en": "Name the record on june 22",
    "question_th": "ตั้งชื่อบันทึกเมื่อวันที่ 22 มิถุนายน",
    "context": "CREATE TABLE table_name_89 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(attendance) FROM table_name_50 WHERE visitor = \"bulls\"",
    "question_en": "Name the total number in attendance for when the bulls visited",
    "question_th": "ระบุจำนวนผู้เข้าร่วมทั้งหมดเมื่อวัวมาเยี่ยม",
    "context": "CREATE TABLE table_name_50 (attendance VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT MAX(swimsuit) FROM table_name_1 WHERE interview < 8.46",
    "question_en": "Name the most swimsuit for interview less than 8.46",
    "question_th": "ระบุชื่อชุดว่ายน้ำมากที่สุด สัมภาษณ์น้อยกว่า 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_en": "Name the most evening gown for average less than 8.793 with interview of 8.51 and swimsuit less than 8.12",
    "question_th": "ระบุชุดราตรีมากที่สุด เฉลี่ยน้อยกว่า 8.793 สัมภาษณ์ 8.51 และชุดว่ายน้ำน้อยกว่า 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_en": "On average, how many Starts have Wins that are smaller than 0?",
    "question_th": "โดยเฉลี่ยแล้ว มีผู้ชนะจำนวนเท่าใดที่น้อยกว่า 0?",
    "context": "CREATE TABLE table_name_86 (starts INTEGER, wins INTEGER)"
  },
  {
    "answer": "SELECT MAX(top_10s) FROM table_name_53 WHERE starts = 14",
    "question_en": "Which of the top-10s has a starts value of 14?",
    "question_th": "10 อันดับแรกใดที่มีค่าเริ่มต้นเป็น 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_en": "In the tournament of HSBC Champions, what was the sum of the Starts with Wins lower than 0?",
    "question_th": "ในการแข่งขัน HSBC Champions ผลรวมของการเริ่มต้นด้วยการชนะต่ำกว่า 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_en": "Who trained the horse on post 11 with over 36 odds?",
    "question_th": "ใครเป็นคนฝึกม้าที่โพสต์ 11 ด้วยอัตราต่อรองมากกว่า 36?",
    "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_en": "What is the lowest post number for calvin borel?",
    "question_th": "หมายเลขโพสต์ต่ำสุดของ calvin borel คืออะไร?",
    "context": "CREATE TABLE table_name_31 (post INTEGER, jockey VARCHAR)"
  },
  {
    "answer": "SELECT horse FROM table_name_43 WHERE jockey = \"jara\"",
    "question_en": "What horse for jara?",
    "question_th": "ม้าอะไรสำหรับจารา?",
    "context": "CREATE TABLE table_name_43 (horse VARCHAR, jockey VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_90 WHERE leading_scorer = \"lebron james (25)\"",
    "question_en": "What is the date when Lebron James (25) was the lead scorer?",
    "question_th": "วันที่เท่าไหร่ที่เลอบรอน เจมส์ (25) เป็นผู้ทำประตูนำ?",
    "context": "CREATE TABLE table_name_90 (date VARCHAR, leading_scorer VARCHAR)"
  },
  {
    "answer": "SELECT SUM(total) FROM table_name_29 WHERE gold < 0",
    "question_en": "Which Total has a Gold smaller than 0?",
    "question_th": "ผลรวมใดที่มีทองคำน้อยกว่า 0?",
    "context": "CREATE TABLE table_name_29 (total INTEGER, gold INTEGER)"
  },
  {
    "answer": "SELECT AVG(bronze) FROM table_name_82 WHERE gold < 0",
    "question_en": "Which Bronze has a Gold smaller than 0?",
    "question_th": "บรอนซ์ใดมีทองคำน้อยกว่า 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_en": "Which T.C. has a Win of 1, and a Race of 21?",
    "question_th": "TC คนไหนชนะ 1 และเรซ 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_en": "How many years have Drivers of ben hanley, and Flaps smaller than 0?",
    "question_th": "ไดรเวอร์ของ ben hanley และ Flaps มีค่าน้อยกว่า 0 กี่ปี",
    "context": "CREATE TABLE table_name_67 (year VARCHAR, drivers VARCHAR, flaps VARCHAR)"
  },
  {
    "answer": "SELECT AVG(points) FROM table_name_97 WHERE drivers = \"adrián vallés\" AND year > 2006",
    "question_en": "How many Points have Drivers of adrián vallés, and a Year larger than 2006?",
    "question_th": "นักแข่งของ adrián vallés มีกี่คะแนน และหนึ่งปีมากกว่าปี 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 álvarez\" AND flaps > 0",
    "question_en": "How many Poles have Drivers of juan cruz álvarez, and FLaps larger than 0?",
    "question_th": "มีกี่คนที่มีไดรเวอร์ของ juan cruz alvarez และ FLaps มากกว่า 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_en": "Who was the away team at Victoria Park?",
    "question_th": "ทีมเยือนที่วิคตอเรีย พาร์คคือใคร?",
    "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_en": "What is the name of the train numbered less than 6 before 1993?",
    "question_th": "รถไฟหมายเลขน้อยกว่า 6 ก่อนปี 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_en": "What is the name of the bo-bodh train with a number less than 5?",
    "question_th": "รถไฟโพโพธิ์ที่มีเลขน้อยกว่า 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_en": "Name the record when the visitor is st. louis",
    "question_th": "ตั้งชื่อบันทึกเมื่อผู้เยี่ยมชมคือเซนต์ หลุยส์",
    "context": "CREATE TABLE table_name_41 (record VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_10 WHERE visitor = \"calgary\"",
    "question_en": "What was the scory when calgary was visiting?",
    "question_th": "อะไรคือเรื่องน่าสยดสยองเมื่อคัลการีมาเยือน?",
    "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_en": "Name the home when the visitor was dallas on february 2",
    "question_th": "ตั้งชื่อบ้านเมื่อแขกมาเยือนดัลลัสในวันที่ 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_en": "Name the date for turco decision and home of st. louis",
    "question_th": "ตั้งชื่อวันที่ตัดสินใจ turco และบ้านของ st. หลุยส์",
    "context": "CREATE TABLE table_name_5 (date VARCHAR, decision VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT rider FROM table_name_84 WHERE speed = \"104.630mph\"",
    "question_en": "Which rider had a speed of 104.630mph?",
    "question_th": "นักบิดคนไหนมีความเร็ว 104.630 ไมล์ต่อชั่วโมง?",
    "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_en": "What is the best rank with a time of 1:05.14.10?",
    "question_th": "อันดับไหนดีที่สุดด้วยเวลา 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_en": "Where was the game played when the final score was 35-62?",
    "question_th": "เล่นเกมไหนเมื่อสกอร์สุดท้ายอยู่ที่ 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_en": "During the game at Candlestick Park, who was the visiting team?",
    "question_th": "ระหว่างเกมที่แคนเดิลสติก พาร์ค ทีมเยือนคือใคร?",
    "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_en": "Which visiting team had a final score of 14-34?",
    "question_th": "ทีมเยือนทีมใดมีสกอร์สุดท้าย 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_en": "What was the final score in the game against the Cincinnati Bengals?",
    "question_th": "คะแนนสุดท้ายในเกมกับซินซินเนติ เบงกอลส์คือเท่าไร?",
    "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_en": "Who was the visiting team in the game against the Dallas Cowboys?",
    "question_th": "ทีมเยือนในเกมที่พบกับดัลลัส คาวบอยส์คือใคร?",
    "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ša zec peškirič\"",
    "question_en": "Which tournament has an Outcome of runner-up, and an Opponent of maša zec peškirič?",
    "question_th": "ทัวร์นาเมนต์ใดมีผลลัพธ์เป็นรองแชมป์ และเป็นฝ่ายตรงข้ามของ maša zec peškirič?",
    "context": "CREATE TABLE table_name_93 (tournament VARCHAR, outcome VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_45 WHERE score = \"6–4, 6–2\"",
    "question_en": "Which surface has a Score of 6–4, 6–2?",
    "question_th": "พื้นผิวใดมีคะแนน 6–4, 6–2",
    "context": "CREATE TABLE table_name_45 (surface VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_57 WHERE date = \"22 august 2006\"",
    "question_en": "Which surface has a Date of 22 august 2006?",
    "question_th": "พื้นผิวใดมีวันที่ 22 สิงหาคม 2549",
    "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–4, 6–2\"",
    "question_en": "Which tournament has an Outcome of runner-up, a Surface of hard, and a Score of 6–4, 6–2?",
    "question_th": "ทัวร์นาเมนต์ใดที่มีผลลัพธ์เป็นรองชนะเลิศ มีพื้นผิวฮาร์ด และคะแนน 6–4, 6–2?",
    "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_en": "What is the outcome with marina erakovic as opponent?",
    "question_th": "ผลลัพธ์ที่ได้คือ มาริน่า เอราโควิช ที่เป็นคู่ต่อสู้?",
    "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_en": "Which tournament has an Outcome of winner, and a Opponent of dia evtimova?",
    "question_th": "ทัวร์นาเมนต์ใดมีผลลัพธ์เป็นผู้ชนะ และเป็นฝ่ายตรงข้ามของ 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_en": "What title runs for 3:22?",
    "question_th": "นาทีที่ 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_en": "Who wrote the song that runs for 2:22?",
    "question_th": "ใครเป็นคนเขียนเพลงนาทีที่ 2:22?",
    "context": "CREATE TABLE table_name_35 (author_s_ VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_74 WHERE laps = 66",
    "question_en": "What Constructor had 66 Laps?",
    "question_th": "Constructor ใดมี 66 รอบ?",
    "context": "CREATE TABLE table_name_74 (constructor VARCHAR, laps VARCHAR)"
  },
  {
    "answer": "SELECT MIN(grid) FROM table_name_30 WHERE laps > 78",
    "question_en": "With Laps greater than 78, what is the lowest Grid?",
    "question_th": "ด้วยรอบที่มากกว่า 78 ตารางต่ำสุดคือเท่าใด",
    "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_en": "How many Laps with a Grid smaller than 11 did John Watson have?",
    "question_th": "John Watson มีตารางที่เล็กกว่า 11 รอบได้กี่รอบ",
    "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_en": "How many Laps with a Grid smaller than 3 did Driver NIki Lauda have?",
    "question_th": "นักแข่ง NIki Lauda มีกริดน้อยกว่า 3 รอบกี่รอบ?",
    "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_en": "What is the low grid total for a retired due to steering in under 15 laps?",
    "question_th": "ผลรวมกริดที่ต่ำสำหรับผู้เกษียณเนื่องจากการบังคับเลี้ยวต่ำกว่า 15 รอบเป็นเท่าใด",
    "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_en": "What is the average laps that had a time/retired of +5 laps?",
    "question_th": "รอบเฉลี่ยที่มีเวลา/เกษียณ +5 รอบเป็นเท่าใด",
    "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_en": "Which Opponent has Location Wonju Chiak Indoor Gym, South Korea?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีที่ตั้ง Wonju Chiak Indoor Gym, เกาหลีใต้?",
    "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_en": "Which is the lowest Round with the Opponent, Paul Cahoon and Location, Amsterdam, Netherlands?",
    "question_th": "รอบไหนต่ำที่สุดกับฝ่ายตรงข้าม พอล คาฮูน และตำแหน่ง อัมสเตอร์ดัม ประเทศเนเธอร์แลนด์?",
    "context": "CREATE TABLE table_name_60 (round INTEGER, opponent VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_15 WHERE opponent = \"bernard ackah\"",
    "question_en": "Which Event has the Opponent, Bernard Ackah?",
    "question_th": "เหตุการณ์ไหนมีคู่ต่อสู้ เบอร์นาร์ด อัคคาห์?",
    "context": "CREATE TABLE table_name_15 (event VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT launched FROM table_name_91 WHERE laid_down = \"14 august 1942\"",
    "question_en": "when was the destroyer launched when it was laid down on 14 august 1942?",
    "question_th": "เรือพิฆาตเปิดตัวเมื่อใดเมื่อถูกวางลงเมื่อวันที่ 14 สิงหาคม พ.ศ. 2485?",
    "context": "CREATE TABLE table_name_91 (launched VARCHAR, laid_down VARCHAR)"
  },
  {
    "answer": "SELECT launched FROM table_name_57 WHERE builder = \"john brown, clydebank\"",
    "question_en": "what is the launched date when the builder is john brown, clydebank?",
    "question_th": "วันที่ผู้สร้างคือ จอห์น บราวน์, ไคลด์แบงก์ คือเมื่อใด?",
    "context": "CREATE TABLE table_name_57 (launched VARCHAR, builder VARCHAR)"
  },
  {
    "answer": "SELECT pennant FROM table_name_23 WHERE builder = \"yarrow, scotstoun\"",
    "question_en": "what is the pennant when the builder is yarrow, scotstoun?",
    "question_th": "ชายธงคืออะไรเมื่อผู้สร้างคือยาร์โรว์สกอตส์ทูน?",
    "context": "CREATE TABLE table_name_23 (pennant VARCHAR, builder VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_37 WHERE laid_down = \"28 february 1943\"",
    "question_en": "what is the name when the laid down is 28 february 1943?",
    "question_th": "เมื่อวางลงคือวันที่ 28 กุมภาพันธ์ พ.ศ. 2486 ชื่ออะไร?",
    "context": "CREATE TABLE table_name_37 (name VARCHAR, laid_down VARCHAR)"
  },
  {
    "answer": "SELECT commissioned FROM table_name_88 WHERE builder = \"scotts, greenock\"",
    "question_en": "when was it commissioned when the destroyer was built by scotts, greenock?",
    "question_th": "เมื่อใดที่เรือพิฆาตถูกสร้างขึ้นโดยสก็อตต์ กรีน็อค?",
    "context": "CREATE TABLE table_name_88 (commissioned VARCHAR, builder VARCHAR)"
  },
  {
    "answer": "SELECT launched FROM table_name_55 WHERE laid_down = \"14 august 1942\"",
    "question_en": "when was the launched date when the laid down date is 14 august 1942?",
    "question_th": "เปิดตัวเมื่อใด และกำหนดวางคือ 14 สิงหาคม 2485?",
    "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_en": "What was the record for a week below 13 on July 12?",
    "question_th": "สัปดาห์ที่ต่ำกว่า 13 เมื่อวันที่ 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 – 5\"",
    "question_en": "What location had a final score of W 30 – 5?",
    "question_th": "สถานที่ใดมีคะแนนสุดท้าย W 30 – 5",
    "context": "CREATE TABLE table_name_92 (location VARCHAR, final_score VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_48 WHERE catalog = \"ch-9196\"",
    "question_en": "Which label had a catalog designation of ch-9196?",
    "question_th": "ฉลากใดมีการกำหนดแคตตาล็อกเป็น ch-9196",
    "context": "CREATE TABLE table_name_48 (label VARCHAR, catalog VARCHAR)"
  },
  {
    "answer": "SELECT format FROM table_name_95 WHERE catalog = \"21-382a\"",
    "question_en": "Which format's catalog designation was 21-382a?",
    "question_th": "การกำหนดแคตตาล็อกของรูปแบบใดคือ 21-382a",
    "context": "CREATE TABLE table_name_95 (format VARCHAR, catalog VARCHAR)"
  },
  {
    "answer": "SELECT catalog FROM table_name_66 WHERE date = \"1984\"",
    "question_en": "Which catalog had a date year of 1984?",
    "question_th": "แคตตาล็อกใดมีวันที่ปี 1984?",
    "context": "CREATE TABLE table_name_66 (catalog VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT format FROM table_name_32 WHERE label = \"london records\"",
    "question_en": "Which format was under the London Records label?",
    "question_th": "รูปแบบใดอยู่ภายใต้ค่ายเพลง London Records",
    "context": "CREATE TABLE table_name_32 (format VARCHAR, label VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_17 WHERE region = \"united kingdom\"",
    "question_en": "Which label was in the United Kingdom region?",
    "question_th": "ป้ายใดอยู่ในภูมิภาคสหราชอาณาจักร",
    "context": "CREATE TABLE table_name_17 (label VARCHAR, region VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_37 WHERE catalog = \"ha-m 2230\"",
    "question_en": "Which date had the catalog designation of ha-m 2230?",
    "question_th": "วันที่ใดมีการกำหนดแคตตาล็อกของ ham-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_en": "What is the maximum goals conceded for a team with 2 draws, more than 29 goals and a diff larger than 15?",
    "question_th": "ประตูสูงสุดที่เสียสำหรับทีมที่เสมอ 2 ครั้ง มากกว่า 29 ประตู และผลต่างมากกว่า 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_en": "What is the points for a team with more than 9 wins and more than 40 goals?",
    "question_th": "ทีมที่ชนะมากกว่า 9 นัดและมากกว่า 40 ประตูได้แต้มอะไร?",
    "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_en": "What was the score of the game played in the 2012 Africa Cup of Nations?",
    "question_th": "คะแนนของเกมที่เล่นในแอฟริกาคัพออฟเนชั่นส์ 2012 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_90 (score VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_72 WHERE competition = \"friendly\"",
    "question_en": "What is the score of the friendly competition?",
    "question_th": "การแข่งขันกระชับมิตรคะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_72 (score VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_28 WHERE date = \"9 february 2011\"",
    "question_en": "What venue was the game played on 9 February 2011 played at?",
    "question_th": "เกมนี้เล่นในวันที่ 9 กุมภาพันธ์ พ.ศ. 2554 ในสถานที่ใด?",
    "context": "CREATE TABLE table_name_28 (venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_12 WHERE home = \"ny rangers\"",
    "question_en": "What date did NY Rangers play at home?",
    "question_th": "NY Rangers เล่นที่บ้านวันไหน?",
    "context": "CREATE TABLE table_name_12 (date VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_32 WHERE decision = \"smith\" AND visitor = \"colorado\"",
    "question_en": "What is the score of Colorado when they were a visitor and had a Smith decision?",
    "question_th": "คะแนนของโคโลราโดเมื่อพวกเขาเป็นแขกและมีการตัดสินใจของ Smith คืออะไร?",
    "context": "CREATE TABLE table_name_32 (score VARCHAR, decision VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT runner_up FROM table_name_50 WHERE score = \"3–6, 6–3, [10–4]\"",
    "question_en": "Who is the runner up when the score was 3–6, 6–3, [10–4]?",
    "question_th": "ใครคือรองชนะเลิศเมื่อสกอร์คือ 3–6, 6–3, [10–4]?",
    "context": "CREATE TABLE table_name_50 (runner_up VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT runner_up FROM table_name_92 WHERE tournament = \"são paulo\"",
    "question_en": "What is the name of the runner up in the Tournament of são paulo?",
    "question_th": "รองแชมป์ทัวร์นาเมนท์เซาเปาโลชื่ออะไร",
    "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_en": "What person is in the third place when Thomas Enqvist won and a Runner-up was guy forget?",
    "question_th": "บุคคลใดอยู่ในอันดับที่สามเมื่อ Thomas Enqvist ชนะและรองชนะเลิศคือผู้ชายที่ลืมไป?",
    "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_en": "What tournament was Thomas Enqvist runner up?",
    "question_th": "Thomas Enqvist รองแชมป์ทัวร์นาเมนต์ใด",
    "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–6, 6–4, [10–3]\"",
    "question_en": "What is the name of the runner up when yevgeny kafelnikov was third place and the score was 3–6, 6–4, [10–3]?",
    "question_th": "รองชนะเลิศชื่ออะไรเมื่อเยฟเกนี คาเฟลนิคอฟ เป็นอันดับสามและคะแนนคือ 3–6, 6–4, [10–3]",
    "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šević\"",
    "question_en": "What is the name of the winner when Goran Ivanišević was in third place?",
    "question_th": "ผู้ชนะเมื่อ Goran Ivanišević อยู่ในอันดับที่ 3 ชื่ออะไร?",
    "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_en": "Which analog channel has a digital channel of 4.1?",
    "question_th": "ช่องอะนาล็อกใดมีช่องดิจิตอล 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_en": "Which digital channel is named Storm Tracker?",
    "question_th": "ช่องดิจิทัลใดชื่อ 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_en": "Which analog channel is Fox on?",
    "question_th": "Fox เปิดช่องอะนาล็อกใดอยู่?",
    "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_en": "Name the area president when the area name is south america south",
    "question_th": "ตั้งชื่อประธานภาคเมื่อชื่อพื้นที่คืออเมริกาใต้ใต้",
    "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_en": "Tell me the total number of Grid for Time/Retired of +2 Laps and Laps less than 70",
    "question_th": "บอกจำนวนตารางทั้งหมดสำหรับเวลา/เกษียณจาก +2 รอบ และรอบน้อยกว่า 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_en": "What year did Shelley Winters win?",
    "question_th": "Shelley Winters ชนะในปีใด",
    "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_en": "Which award was won by Gloria Stuart after 1984?",
    "question_th": "Gloria Stuart ได้รับรางวัลใดหลังปี 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_en": "Which award has Thelma Ritter won?",
    "question_th": "Thelma Ritter ได้รับรางวัลอะไร?",
    "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_en": "I want the lowest points diff for against being less than 578 and lost being 15 and points more than 26",
    "question_th": "ฉันต้องการคะแนนต่ำสุดต่างจากการน้อยกว่า 578 และแพ้เป็น 15 และคะแนนมากกว่า 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_en": "I want the total number of points for against of 753 and points diff more than -114",
    "question_th": "ฉันต้องการจำนวนคะแนนรวมเทียบกับ 753 และคะแนนต่างกันมากกว่า -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_en": "In What Week was the Attendance 75,866?",
    "question_th": "มีผู้เข้าร่วม 75,866 คนในสัปดาห์ใด",
    "context": "CREATE TABLE table_name_59 (week VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_49 WHERE attendance = \"74,246\"",
    "question_en": "What Opponent has an Attendance of 74,246?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีผู้เข้าร่วม 74,246 คน?",
    "context": "CREATE TABLE table_name_49 (opponent VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_54 WHERE week = 1",
    "question_en": "What Date is Week 1?",
    "question_th": "สัปดาห์ที่ 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_en": "Which team had 7 losses and 55 goals?",
    "question_th": "ทีมไหนแพ้ 7 นัด 55 ประตู?",
    "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_en": "What is the 1995 GDP when 1990 GDP is 441 and 1985 GDP is less than 359?",
    "question_th": "GDP ปี 1995 เป็นเท่าใดเมื่อ GDP ปี 1990 อยู่ที่ 441 และ GDP ปี 1985 น้อยกว่า 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_en": "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?",
    "question_th": "GDP สูงสุดในปี 1985 สำหรับภูมิภาคโดยที่ GDP ปี 1990 น้อยกว่า 267, GDP ปี 2000 คือ 333 และ GDP ปี 2005 น้อยกว่า 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_en": "When populatioin is greater than 7,747 and the type is V, what is the sum of code?",
    "question_th": "เมื่อ populatioin มากกว่า 7,747 และประเภทเป็น V ผลรวมของรหัสจะเป็นเท่าใด",
    "context": "CREATE TABLE table_name_99 (code VARCHAR, type VARCHAR, population VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_24 WHERE ties = 5",
    "question_en": "Who has ties of 5?",
    "question_th": "ใครมีความสัมพันธ์ 5?",
    "context": "CREATE TABLE table_name_24 (name VARCHAR, ties VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_95 WHERE away_team = \"st kilda\"",
    "question_en": "Where did st kilda play as the away team?",
    "question_th": "เซนต์คิลดาเล่นทีมเยือนที่ไหน?",
    "context": "CREATE TABLE table_name_95 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT crowd FROM table_name_66 WHERE home_team = \"essendon\"",
    "question_en": "How big of a crowd does the home team of essendon have?",
    "question_th": "เจ้าบ้านเอสเซนดอนมีฝูงชนขนาดไหน?",
    "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_en": "What is the MLB Draft status of the person who attended Seton Hall Preparatory School?",
    "question_th": "สถานะ MLB Draft ของบุคคลที่เข้าเรียนที่ 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_en": "Where is the Hometown of the person that attended Kennedy-Kenrick Catholic High School?",
    "question_th": "บ้านเกิดของบุคคลที่เข้าเรียนที่ 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_en": "Which Player attended George Washington High School?",
    "question_th": "ผู้เล่นคนไหนเข้าเรียนที่ 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_en": "Where is the Hometown that the person who attended Camarillo High School is from?",
    "question_th": "บ้านเกิดของผู้ที่เข้าเรียนที่ Camarillo High School มาจากไหน?",
    "context": "CREATE TABLE table_name_40 (hometown VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(crowd) FROM table_name_99 WHERE away_team = \"carlton\"",
    "question_en": "How many people in total have attended games where carlton played as away?",
    "question_th": "มีผู้เข้าร่วมชมเกมที่คาร์ลตันเล่นเป็นทีมเยือนทั้งหมดกี่คน?",
    "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_en": "Which player has a long of less than 15 and an average of 6 yards.",
    "question_th": "ผู้เล่นคนใดมีความยาวน้อยกว่า 15 และระยะเฉลี่ย 6 หลา",
    "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_en": "What years did Troy Hudson play for the Jazz?",
    "question_th": "Troy Hudson เล่นให้กับ 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_en": "What Nationality is the Iowa State team?",
    "question_th": "ทีมรัฐไอโอวามีสัญชาติอะไร?",
    "context": "CREATE TABLE table_name_69 (nationality VARCHAR, school_club_team VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_14 WHERE player = \"jeff hornacek\"",
    "question_en": "What Nationality is Jeff Hornacek?",
    "question_th": "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_en": "What Nationality is the Colorado State team?",
    "question_th": "ทีมรัฐโคโลราโดมีสัญชาติอะไร",
    "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_en": "What Player is from the Southern Illinois team?",
    "question_th": "ผู้เล่นคนใดมาจากทีมอิลลินอยส์ตอนใต้",
    "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_en": "What years did Eddie Hughes play for the Jazz?",
    "question_th": "Eddie Hughes เล่นให้กับ 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_en": "Which Species has a medium Threat Level?",
    "question_th": "สายพันธุ์ใดมีระดับภัยคุกคามปานกลาง",
    "context": "CREATE TABLE table_name_63 (species VARCHAR, threat_level VARCHAR)"
  },
  {
    "answer": "SELECT overview FROM table_name_79 WHERE threat_level = \"medium\"",
    "question_en": "What is the Overview with a medium Threat Level?",
    "question_th": "ภาพรวมที่มีระดับภัยคุกคามปานกลางคืออะไร?",
    "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_en": "What is the Threat Levels with Rabbits in Australia?",
    "question_th": "ระดับภัยคุกคามของ Rabbits ในออสเตรเลียคืออะไร?",
    "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_en": "Which nominee won the Drama Desk Award for outstanding choreography?",
    "question_th": "ผู้ได้รับการเสนอชื่อคนใดได้รับรางวัล Drama Desk Award สาขาการออกแบบท่าเต้นดีเด่น?",
    "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_en": "When was the last time a nominee for Best Revival of a Musical was selected?",
    "question_th": "ครั้งสุดท้ายที่มีการคัดเลือกผู้เข้าชิงรางวัล Best Revival of a Musical คือเมื่อใด",
    "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_en": "Which Award is the winner for Outstanding Revival of a Musical given?",
    "question_th": "รางวัลใดคือผู้ชนะรางวัลละครเพลงดีเด่นคืนชีพ?",
    "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_en": "Who is the home team in the game where South Melbourne was the away team?",
    "question_th": "เจ้าบ้านคือใครในเกมที่เซาธ์ เมลเบิร์น เป็นทีมเยือน?",
    "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_en": "I want the result for week larger than 10 for opponent of new england patriots",
    "question_th": "ฉันต้องการผลลัพธ์สำหรับสัปดาห์ที่มากกว่า 10 สำหรับคู่ต่อสู้ของผู้รักชาติอังกฤษคนใหม่",
    "context": "CREATE TABLE table_name_90 (result VARCHAR, week VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT game_site FROM table_name_17 WHERE week = 11",
    "question_en": "I want the game site for week of 11",
    "question_th": "ฉันต้องการเว็บไซต์เกมสำหรับสัปดาห์ที่ 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_en": "What is the average number of laps for mika salo's arrows car with a grid over 13?",
    "question_th": "จำนวนรอบเฉลี่ยของรถลูกศรของ mika salo ที่มีกริดมากกว่า 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_en": "Who drove the car with a grid of 7?",
    "question_th": "ใครขับรถด้วยตาราง 7?",
    "context": "CREATE TABLE table_name_38 (driver VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT report FROM table_name_72 WHERE date = \"9 march\"",
    "question_en": "Which Report is Dated 9 March?",
    "question_th": "รายงานฉบับใดลงวันที่ 9 มีนาคม?",
    "context": "CREATE TABLE table_name_72 (report VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(attendance) FROM table_name_26 WHERE opponent = \"hamilton academical\"",
    "question_en": "When Hamilton Academical is the Opponent, what is the total Attendance?",
    "question_th": "เมื่อ Hamilton Academical เป็นฝ่ายตรงข้าม ผู้เข้าร่วมทั้งหมดเป็นเท่าใด",
    "context": "CREATE TABLE table_name_26 (attendance VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_57 WHERE loss = \"volquez (1–4)\"",
    "question_en": "How many in attendance with a loss of volquez (1–4)?",
    "question_th": "มีผู้เข้าร่วมกี่คนและสูญเสียโวลเกซ (1–4)?",
    "context": "CREATE TABLE table_name_57 (attendance VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_15 WHERE score = \"9–6\"",
    "question_en": "What record has a Score of 9–6?",
    "question_th": "บันทึกใดมีคะแนน 9–6?",
    "context": "CREATE TABLE table_name_15 (record VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT AVG(attendance) FROM table_name_23 WHERE date = \"september 16\"",
    "question_en": "What is the average number in attendance on September 16?",
    "question_th": "จำนวนผู้เข้าร่วมโดยเฉลี่ยในวันที่ 16 กันยายนคือเท่าใด",
    "context": "CREATE TABLE table_name_23 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT SUM(attendance) FROM table_name_49 WHERE date = \"september 8\"",
    "question_en": "What is the sum of people in attendance on September 8?",
    "question_th": "จำนวนคนที่เข้าร่วมในวันที่ 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_en": "What was Head Coach Jim Morris's best finish?",
    "question_th": "เฮดโค้ช จิม มอร์ริส จบสกอร์ได้ดีที่สุดคืออะไร?",
    "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_en": "What is the record when the visiting team was the montreal canadiens?",
    "question_th": "อะไรคือบันทึกเมื่อทีมเยือนคือมอนทรีออลคานาเดียน?",
    "context": "CREATE TABLE table_name_45 (record VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT nation FROM table_name_83 WHERE points = 187.84",
    "question_en": "What nation has 187.84 points?",
    "question_th": "ชาติไหนมี 187.84 คะแนน?",
    "context": "CREATE TABLE table_name_83 (nation VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT MIN(points) FROM table_name_90 WHERE places = \"81\"",
    "question_en": "What is the low point total for teams with 81 places?",
    "question_th": "คะแนนรวมต่ำสุดสำหรับทีมที่มีอันดับ 81 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_90 (points INTEGER, places VARCHAR)"
  },
  {
    "answer": "SELECT station_number FROM table_name_40 WHERE location = \"dogsthorpe\"",
    "question_en": "What is the station number of the station at Dogsthorpe?",
    "question_th": "หมายเลขสถานีของสถานีที่ 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_en": "What is the type of the station with a 1 wrl appliance in Linton?",
    "question_th": "ประเภทของสถานีที่มีอุปกรณ์ 1 wrl ใน 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_en": "What is the appliance at the station in St Neots?",
    "question_th": "เครื่องใช้ไฟฟ้าที่สถานี St Neots คืออะไร?",
    "context": "CREATE TABLE table_name_69 (appliances VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT registrations FROM table_name_67 WHERE district = \"cambridge\"",
    "question_en": "What is the registration of the station at Cambridge?",
    "question_th": "การลงทะเบียนของสถานีที่เคมบริดจ์คืออะไร?",
    "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_en": "What is the location of the station at Huntingdonshire with a station number of c17?",
    "question_th": "ที่ตั้งของสถานีที่ Huntingdonshire หมายเลขสถานี 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_en": "What is the registration of the station with a retained type and a station number of c03?",
    "question_th": "การจดทะเบียนสถานีแบบคงไว้และหมายเลขสถานี 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_en": "Name the nationality of the player with round more than 4",
    "question_th": "ระบุสัญชาติผู้เล่นที่มีรอบมากกว่า 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_en": "In what Year was the Rank 14.0 14?",
    "question_th": "อันดับ 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_en": "After 1971, what is the Rank with a Height ft (m) of 19.0 477 (145) and less than 35 Floors?",
    "question_th": "หลังจากปี 1971 อะไรคืออันดับที่มีส่วนสูง (ม.) ที่ 19.0 477 (145) และน้อยกว่า 35 ชั้น?",
    "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_en": "What Year has a Rank of 12.0 12?",
    "question_th": "ปีไหนมีอันดับ 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_en": "What did the away team score at VFL Park?",
    "question_th": "ทีมเยือนทำประตูที่ วีเอฟแอล พาร์ค ได้เท่าไหร่?",
    "context": "CREATE TABLE table_name_76 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT SUM(crowd) FROM table_name_1 WHERE venue = \"lake oval\"",
    "question_en": "How many people watched the game at Lake Oval?",
    "question_th": "มีกี่คนที่ดูเกมที่ 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_en": "What was the Comp average, having Gino Guidugli as a player and a rating of more than 92.2?",
    "question_th": "ค่าเฉลี่ยคอมพ์คือเท่าไร โดยมี จิโน่ กุยดูกลี เป็นผู้เล่นและมีเรตติ้งมากกว่า 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_en": "For the player with yards less than 138, and Comp more than 0, what was the highest Att.?",
    "question_th": "สำหรับผู้เล่นที่มีระยะน้อยกว่า 138 หลา และคอมพ์มากกว่า 0 ค่า Att สูงสุดคือเท่าใด?",
    "context": "CREATE TABLE table_name_9 (att INTEGER, yards VARCHAR, comp VARCHAR)"
  },
  {
    "answer": "SELECT laps FROM table_name_49 WHERE grid = 9",
    "question_en": "How many laps for grid of 9?",
    "question_th": "กริด 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_en": "What is the high lap total for a grid less than 6, and a Time/Retired of halfshaft?",
    "question_th": "ผลรวมรอบสูงสำหรับกริดที่น้อยกว่า 6 และเวลา/เลิกใช้ของฮาล์ฟเพลาคือเท่าใด",
    "context": "CREATE TABLE table_name_68 (laps INTEGER, grid VARCHAR, time_retired VARCHAR)"
  },
  {
    "answer": "SELECT set_1 FROM table_name_96 WHERE score = \"3–2\"",
    "question_en": "What is the Set 1 with a Score with 3–2?",
    "question_th": "เซต 1 มีสกอร์ 3–2 คืออะไร?",
    "context": "CREATE TABLE table_name_96 (set_1 VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT set_1 FROM table_name_6 WHERE set_2 = \"15–5\" AND set_3 = \"15–3\"",
    "question_en": "What is the Set 1 with a Set 2 of 15–5, and a Set 3 with 15–3?",
    "question_th": "ชุดที่ 1 ที่มีชุดที่ 2 จาก 15–5 และชุดที่ 3 ที่มี 15–3 คืออะไร",
    "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–1\"",
    "question_en": "What is the Date with a Set 1 with 15–1?",
    "question_th": "วันที่กับชุดที่ 1 กับ 15–1 คืออะไร?",
    "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–5\"",
    "question_en": "What is the Set 3 with a Date of 04 oct, and a Set 2 with 15–5?",
    "question_th": "ชุดที่ 3 ซึ่งมีวันที่ 04 ต.ค. และชุดที่ 2 ที่มีวันที่ 15–5 คืออะไร",
    "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–6\"",
    "question_en": "What is the Set 3 with a Set 2 with 15–6?",
    "question_th": "ชุดที่ 3 กับชุดที่ 2 ที่มี 15–6 คืออะไร?",
    "context": "CREATE TABLE table_name_58 (set_3 VARCHAR, set_2 VARCHAR)"
  },
  {
    "answer": "SELECT set_2 FROM table_name_6 WHERE total = \"45–12\" AND set_3 = \"15–2\"",
    "question_en": "What is the Set 2 with a Total of 45–12, and a Set 3 with 15–2?",
    "question_th": "ชุดที่ 2 ที่มีคะแนนรวม 45–12 คืออะไร และชุดที่ 3 ที่มีคะแนนรวม 15–2 คืออะไร",
    "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_en": "What was the grid associated with under 26 laps and a Time/Retired of +6.077?",
    "question_th": "ตารางที่เกี่ยวข้องกับรอบ 26 รอบและเวลา/เกษียณที่ +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_en": "On 5 May 2011, what was the lead percentage?",
    "question_th": "วันที่ 5 พฤษภาคม 2554 มีเปอร์เซ็นต์ผู้นำเท่าไร?",
    "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_en": "On what date was the lead 8.6%?",
    "question_th": "ขึ้นนำ 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_en": "what is the lifespan when the imperial height is 7ft 8 in and the nationality is fiji?",
    "question_th": "อายุขัยเมื่อความสูงของจักรวรรดิอยู่ที่ 7 ฟุต 8 นิ้ว และสัญชาติคือฟิจิ?",
    "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_en": "what is the nationality with the metric height of 2.36m named sun ming-ming?",
    "question_th": "ซุนหมิงหมิงมีสัญชาติอะไร ส่วนสูง 2.36 เมตร ชื่อซุนหมิงหมิง?",
    "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_en": "What is the grid total that had a retired for engine, teo fabi driving, and under 39 laps?",
    "question_th": "ผลรวมของกริดที่เลิกใช้เครื่องยนต์ การขับขี่ teo fabi และต่ำกว่า 39 รอบเป็นเท่าใด",
    "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_en": "What is the average grid for johnny dumfries with less than 8 laps?",
    "question_th": "ตารางเฉลี่ยของจอห์นนี่ ดัมฟรีส์ที่วิ่งน้อยกว่า 8 รอบคือเท่าไร?",
    "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_en": "What is the low lap total for minardi - motori moderni, and a Grid smaller than 18?",
    "question_th": "ผลรวมรอบต่ำสำหรับ minardi - motori moderni และกริดที่เล็กกว่า 18 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_44 (laps INTEGER, constructor VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_61 WHERE grid = 12",
    "question_en": "What constructor has a 12 grid?",
    "question_th": "Constructor ใดมี 12 ตาราง?",
    "context": "CREATE TABLE table_name_61 (constructor VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT MAX(average) FROM table_name_24 WHERE swimsuit > 9.437",
    "question_en": "What is the average where the swimsuit is larger than 9.437?",
    "question_th": "ค่าเฉลี่ยที่ชุดว่ายน้ำมีขนาดใหญ่กว่า 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_en": "What is the evening gown score where the interview score is 9.22 and the preliminaries are larger than 9.057?",
    "question_th": "คะแนนชุดราตรีคือคะแนนสัมภาษณ์ 9.22 และรอบคัดเลือกมากกว่า 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_en": "What is Pennsylvania's average where the swimsuit is smaller than 9.109 and the evening gown is smaller than 9.163?",
    "question_th": "ค่าเฉลี่ยของเพนซิลเวเนียคือเท่าไรที่ชุดว่ายน้ำมีขนาดเล็กกว่า 9.109 และชุดราตรีมีขนาดเล็กกว่า 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_en": "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?",
    "question_th": "คะแนนเบื้องต้นว่าชุดว่ายน้ำเล็กกว่า 9.297 ชุดราตรี 9.617 และสัมภาษณ์ใหญ่กว่า 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_en": "For Amazon.com's device with a weight of 221g (7.8oz) how many screen pixels does the device have?",
    "question_th": "สำหรับอุปกรณ์ของ Amazon.com ที่มีน้ำหนัก 221 ก. (7.8 ออนซ์) อุปกรณ์มีพิกเซลหน้าจอจำนวนเท่าใด",
    "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_en": "How many 5K wins did Emily Chebet, who had more than 2 total, have?",
    "question_th": "Emily Chebet ชนะ 5K กี่ครั้งซึ่งมีคะแนนรวมมากกว่า 2 ครั้ง?",
    "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_en": "How many 5K wins did Emily Chebet, who had more than 2 total, have?",
    "question_th": "Emily Chebet ชนะ 5K กี่ครั้งซึ่งมีคะแนนรวมมากกว่า 2 ครั้ง?",
    "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_en": "What is the largest number of Peak lessons taught when the Evaluation average (Before April 2009) was 4.4?",
    "question_th": "บทเรียน Peak จำนวนมากที่สุดที่สอนเมื่อค่าเฉลี่ยการประเมินผล (ก่อนเดือนเมษายน 2009) อยู่ที่ 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_en": "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%?",
    "question_th": "อะไรคือค่าเฉลี่ยของจำนวนการประเมิน (ก่อนเดือนเมษายน 2009) เมื่อบทเรียนสูงสุดที่สอนน้อยกว่า 80 และเปอร์เซ็นต์การประเมินที่เป็นลบคือ 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_en": "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?",
    "question_th": "หมายเลขการประเมินเฉลี่ย (ก่อนเดือนเมษายน 2552) คือเท่าใด โดยที่เปอร์เซ็นต์ของการประเมินเชิงลบคือ 0.8% และหมายเลขการประเมินเฉลี่ยของเดือนเมษายน 2552 คือ 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_en": "What is moorabbin oval's away team?",
    "question_th": "ทีมเยือนของมูแรบบิน โอวัลคืออะไร?",
    "context": "CREATE TABLE table_name_11 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(grid) FROM table_name_57 WHERE driver = \"karl wendlinger\"",
    "question_en": "What is Karl Wendlinger's total grid #?",
    "question_th": "ตารางรวม # ของ Karl Wendlinger คืออะไร",
    "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_en": "Which Home team score had a Home team of Fitzroy?",
    "question_th": "สกอร์ทีมเหย้าใดมีทีมเหย้าของฟิตซ์รอย?",
    "context": "CREATE TABLE table_name_13 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_18 WHERE replacement = \"lieve wierinck\"",
    "question_en": "Who was replaced by Lieve Wierinck?",
    "question_th": "ลีฟ วีรินค์ เข้ามาแทนที่ใคร?",
    "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_en": "Name the sum of gross tonnage for wood on date more tahn 1846 for comissioned and ship of esk",
    "question_th": "ตั้งชื่อผลรวมของน้ำหนักรวมของไม้ในวันที่มากกว่า tahn 1846 สำหรับการว่าจ้างและเรือของ 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_en": "Tell me the sum of Gross Tonnage for isis ship on date commisioned less than 1842",
    "question_th": "บอกผลรวมของน้ำหนักรวมสำหรับเรือไอซิสในวันที่รับหน้าที่น้อยกว่า 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_en": "Tell me the lowest date commissioned for iron rmsrhone and gross tonnage less than 2,738",
    "question_th": "บอกวันที่ต่ำสุดที่รับหน้าที่สำหรับเหล็ก rmsrhone และน้ำหนักรวมน้อยกว่า 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_en": "What Constructor has a +1.027 Time/Retired?",
    "question_th": "Constructor ใดมีเวลา +1.027/เกษียณ?",
    "context": "CREATE TABLE table_name_21 (constructor VARCHAR, time_retired VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_13 WHERE laps = 56",
    "question_en": "What Constructor has 56 Laps?",
    "question_th": "Constructor ใดมี 56 รอบ?",
    "context": "CREATE TABLE table_name_13 (constructor VARCHAR, laps VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_91 WHERE grid > 5 AND laps = 28",
    "question_en": "What Driver has 28 Laps and a Grid greater than 5?",
    "question_th": "นักแข่งคนใดมี 28 รอบและมีกริดมากกว่า 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_en": "What is the highest Laps with a Time/Retired Wheel?",
    "question_th": "รอบสูงสุดที่มีเวลา/วงล้อที่เกษียณคืออะไร?",
    "context": "CREATE TABLE table_name_80 (laps INTEGER, time_retired VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_86 WHERE time_retired = \"+1.027\"",
    "question_en": "What Driver has a +1.027 Time/Retired?",
    "question_th": "นักแข่งคนใดมีเวลา +1.027/เกษียณ?",
    "context": "CREATE TABLE table_name_86 (driver VARCHAR, time_retired VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_78 WHERE score = \"44-20\"",
    "question_en": "What game has a score of 44-20?",
    "question_th": "เกมไหนมีสกอร์ 44-20?",
    "context": "CREATE TABLE table_name_78 (result VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_67 WHERE venue = \"headingley stadium\"",
    "question_en": "What date was a game played at Headingley Stadium?",
    "question_th": "แข่งที่ Headingley Stadium วันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_67 (date VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_84 WHERE venue = \"shay stadium\"",
    "question_en": "What competition was played at Shay Stadium?",
    "question_th": "การแข่งขันใดที่เล่นที่ 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_en": "Which show had a part 3 before 2011?",
    "question_th": "รายการใดมีส่วนที่ 3 ก่อนปี 2554",
    "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_en": "What are the male Bounder books?",
    "question_th": "หนังสือ Bunder ชายมีอะไรบ้าง?",
    "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_en": "How many people attended on April 12?",
    "question_th": "วันที่ 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_en": "On what date were 5 built with 4-4-2t wheels?",
    "question_th": "5 ล้อ 4-4-2t ถูกสร้างขึ้นเมื่อใด?",
    "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_en": "On what date was the number of locomotives 421-6?",
    "question_th": "ตู้รถไฟ 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_en": "How many were built with a locomotive number of 11-20?",
    "question_th": "หัวรถจักรหมายเลข 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_en": "On what date were more than 5 built with 4-4-2 wheels?",
    "question_th": "มากกว่า 5 ลำ สร้างด้วยล้อ 4-4-2 เมื่อใด?",
    "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_en": "On what date were less than 10 built with a locomotive number of 31-35?",
    "question_th": "สร้างไม่ถึง 10 ขบวน รถจักรหมายเลข 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_en": "How many spectators watched when the away team was Collingwood?",
    "question_th": "มีผู้ชมกี่คนที่รับชมเมื่อทีมเยือนคือคอลลิงวูด?",
    "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_en": "What did Essendon score when they were the away team?",
    "question_th": "เอสเซนดอนทำประตูอะไรตอนเป็นทีมเยือน?",
    "context": "CREATE TABLE table_name_37 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_65 WHERE venue = \"brunswick street oval\"",
    "question_en": "Who was the home team at Brunswick Street Oval?",
    "question_th": "ทีมเหย้าที่บรันสวิก สตรีท โอวัลคือใคร?",
    "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_en": "What was South Melbourne's away team score?",
    "question_th": "ทีมเยือนของเซาท์ เมลเบิร์นเป็นเท่าไหร่?",
    "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_en": "Who was the away team at Brunswick Street Oval?",
    "question_th": "ทีมเยือนที่บรันสวิก สตรีท โอวัลคือใคร?",
    "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_en": "Tell me the lowest height for class of hewitt and prom less than 148",
    "question_th": "บอกความสูงต่ำสุดสำหรับคลาสฮิววิตต์และพรหมน้อยกว่า 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_en": "Tell me the total number of prom for height less than 615",
    "question_th": "บอกจำนวนพรหมทั้งหมดสำหรับส่วนสูงน้อยกว่า 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_en": "I want to know the peak which is prom less than 147 and height less than 619",
    "question_th": "อยากทราบพีคที่พรหมน้อยกว่า 147 และสูงน้อยกว่า 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_en": "Tell me the peak for prom being less than 147",
    "question_th": "บอกฉันหน่อยว่าจุดสูงสุดของงานพรอมคือน้อยกว่า 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_en": "Tell me the lowest prom for class of hewitt and peak of cushat law and height more than 615",
    "question_th": "บอกพรหมต่ำสุดสำหรับชั้นเรียนของฮิววิตต์และจุดสูงสุดของกฎหมายคูแชตและความสูงมากกว่า 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_en": "Name the peak for height more than 619 and class of hewitt with prom being 148",
    "question_th": "ตั้งชื่อจุดสูงสุดสำหรับความสูงมากกว่า 619 และคลาสของฮิววิตต์โดยพรหมคือ 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_en": "What is the percentage democrats with 2/4 democrat/republican?",
    "question_th": "เปอร์เซ็นต์ของพรรคเดโมแครตโดย 2/4 ของพรรคเดโมแครต/รีพับลิกันคือเท่าใด",
    "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_en": "What is the percentage democrats with democratic plurality of -3, and 2/5 democrat/republican?",
    "question_th": "เปอร์เซ็นต์ของพรรคเดโมแครตที่มีคะแนนเสียงข้างมากของประชาธิปไตยอยู่ที่ -3 และ 2/5 ของพรรคเดโมแครต/รีพับลิกันคือเท่าใด",
    "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_en": "What is the percent of republicans with 7/6 democrat/republican?",
    "question_th": "เปอร์เซ็นต์ของพรรครีพับลิกันที่มี 7/6 พรรคเดโมแครต/รีพับลิกันคือเท่าใด",
    "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_en": "What is the democratic seat plurality with 29% democrat?",
    "question_th": "จำนวนที่นั่งในระบอบประชาธิปไตยที่มีพรรคเดโมแครต 29% คืออะไร?",
    "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_en": "What is the democratic seat plurality with partisan order of New Hampshire?",
    "question_th": "จำนวนที่นั่งในระบอบประชาธิปไตยที่มีคำสั่งพรรคพวกของนิวแฮมป์เชียร์คืออะไร?",
    "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_en": "What is the score of the game with Pacers as the Visitor?",
    "question_th": "คะแนนของเกมโดยมี Pacers เป็นแขกรับเชิญคือเท่าไร?",
    "context": "CREATE TABLE table_name_32 (score VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_11 WHERE date = \"december 5, 2007\"",
    "question_en": "Who was Home on December 5, 2007?",
    "question_th": "ใครอยู่บ้านเมื่อวันที่ 5 ธันวาคม พ.ศ. 2550",
    "context": "CREATE TABLE table_name_11 (home VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT japanese_orthography FROM table_name_39 WHERE abbreviation = \"ndmc\"",
    "question_en": "What is the Japanese orthography for the abbreviation of ndmc?",
    "question_th": "การสะกดการันต์ของญี่ปุ่นสำหรับตัวย่อของ 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ōei-dai(防衛大)\"",
    "question_en": "What is the english name of the ministry of defense with an abbreviation of nda bōei-dai(防衛大)?",
    "question_th": "กระทรวงกลาโหม มีชื่อภาษาอังกฤษว่าอะไร nda bōei-dai (防衛大)",
    "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_en": "What did the team score when playing at home in victoria park?",
    "question_th": "ทีมได้คะแนนเท่าไหร่เมื่อเล่นในบ้านที่วิคตอเรีย พาร์ค?",
    "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_en": "What did st kilda score at home?",
    "question_th": "เซนต์คิลดาทำประตูในบ้านได้เท่าไหร่?",
    "context": "CREATE TABLE table_name_95 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_16 WHERE venue = \"western oval\"",
    "question_en": "Which team plays home in western oval venue?",
    "question_th": "ทีมใดเล่นในบ้านในสนามวงรีตะวันตก?",
    "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_en": "When the driver is innes ireland and they drove under 53 laps, what was the Time/Retired?",
    "question_th": "เมื่อคนขับอยู่ที่ไอร์แลนด์และขับได้ต่ำกว่า 53 รอบ เวลา/เกษียณคือเท่าใด",
    "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_en": "How many laps does peter arundell have?",
    "question_th": "ปีเตอร์ อรันเดลล์ มีกี่รอบ?",
    "context": "CREATE TABLE table_name_65 (laps VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_38 WHERE grid > 11 AND laps > 52",
    "question_en": "Which driver has a grid value larger than 11, and drove more than 52 laps?",
    "question_th": "นักแข่งคนไหนมีค่ากริดมากกว่า 11 และขับมากกว่า 52 รอบ",
    "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_en": "What is the crowd for away team of north melbourne?",
    "question_th": "ทีมเยือน นอร์ธ เมลเบิร์น คึกคักขนาดไหน?",
    "context": "CREATE TABLE table_name_16 (crowd VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_93 WHERE away_team = \"essendon\"",
    "question_en": "What is the date when the away team is essendon?",
    "question_th": "ทีมเยือนเอสเซนดอนคือวันไหน?",
    "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_en": "Name the visitor from vancouver on february 24",
    "question_th": "ตั้งชื่อผู้มาเยือนจากแวนคูเวอร์เมื่อวันที่ 24 กุมภาพันธ์",
    "context": "CREATE TABLE table_name_81 (visitor VARCHAR, home VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT description FROM table_name_56 WHERE date = \"1962\"",
    "question_en": "Which description is dated 1962?",
    "question_th": "คำอธิบายใดลงวันที่ 1962?",
    "context": "CREATE TABLE table_name_56 (description VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_53 WHERE venue = \"moorabbin oval\"",
    "question_en": "Moorabbin oval is home to what team?",
    "question_th": "มูแรบบินรี อยู่ทีมอะไร?",
    "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_en": "Who was the leader at the summit for the race in 2005?",
    "question_th": "ใครเป็นผู้นำในการประชุมสุดยอดการแข่งขันในปี 2548?",
    "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_en": "What is the sum of the stages for category 1 races after the year 2003?",
    "question_th": "ผลรวมของระยะสำหรับการแข่งขันประเภท 1 หลังจากปี 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_en": "What is the stadium of melbourne?",
    "question_th": "สนามกีฬาเมลเบิร์นคือสนามอะไร?",
    "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_en": "What was the record in the game where the decision was Backstrom and there were more than 18,568 in attendance?",
    "question_th": "สถิติในเกมที่การตัดสินคือ Backstrom และมีผู้เข้าร่วมมากกว่า 18,568 คน?",
    "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_en": "For Getafe CF, what is the highest number of goals scored?",
    "question_th": "เกตาเฟ่ ซีเอฟ ยิงประตูได้มากที่สุดคือเท่าไร?",
    "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_en": "For players with fewer than 41 goals for CA Osasuna and averages under 1.06, what is the average number of matches?",
    "question_th": "สำหรับผู้เล่นที่ทำประตูน้อยกว่า 41 ประตูให้กับ CA Osasuna และค่าเฉลี่ยต่ำกว่า 1.06 จำนวนนัดโดยเฉลี่ยคือเท่าไร?",
    "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_en": "For averages of 1.58 and matches under 38, what is the average number of goals?",
    "question_th": "สำหรับค่าเฉลี่ย 1.58 และแมตช์ต่ำกว่า 38 ประตูโดยเฉลี่ยคือเท่าใด",
    "context": "CREATE TABLE table_name_79 (goals INTEGER, average VARCHAR, matches VARCHAR)"
  },
  {
    "answer": "SELECT ranking FROM table_name_14 WHERE season = \"2009\"",
    "question_en": "Which Ranking has a Season of 2009?",
    "question_th": "อันดับใดที่มีฤดูกาลของปี 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_en": "Which Champions have a Runner-up of tobol, and a Coeff of 1.125?",
    "question_th": "แชมเปี้ยนคนไหนมีตำแหน่งรองชนะเลิศเป็น tobol และ Coeff อยู่ที่ 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_en": "Which Champion has a Coeff of 1.000?",
    "question_th": "แชมป์เปี้ยนคนไหนมี Coeff 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_en": "what is the game for 23 april when batting 2nd is england 5/113 (19)?",
    "question_th": "เกมวันที่ 23 เมษายนจะเป็นอย่างไรเมื่อตีลูกที่ 2 คืออังกฤษ 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_en": "what is the game when batting 2nd is new zealand 6/133 (18)?",
    "question_th": "เกมอะไรเมื่อตีลูกที่ 2 นิวซีแลนด์ 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_en": "what is the game when the result is new zealand by 4 wickets?",
    "question_th": "เกมจะเป็นอย่างไรเมื่อผลออกมาเป็นนิวซีแลนด์ 4 ประตู?",
    "context": "CREATE TABLE table_name_25 (game INTEGER, result VARCHAR)"
  },
  {
    "answer": "SELECT batting_1st FROM table_name_20 WHERE game = 8",
    "question_en": "who is batting 1st in game 8?",
    "question_th": "ใครเป็นคนตีที่ 1 ในเกมที่ 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_en": "What is the playoffs 2 result of season 2010-11?",
    "question_th": "ผลการแข่งขันรอบตัดเชือก 2 ของฤดูกาล 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_en": "What is the playoffs 1 result of season 2004-05?",
    "question_th": "ผลการแข่งขันรอบตัดเชือก 1 ของฤดูกาล 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_en": "Which Grid did Alain Prost drive on?",
    "question_th": "อแลง พรอสท์ ขับกริดคนไหน?",
    "context": "CREATE TABLE table_name_39 (grid INTEGER, driver VARCHAR)"
  },
  {
    "answer": "SELECT time_retired FROM table_name_44 WHERE driver = \"riccardo patrese\"",
    "question_en": "What was Riccardo Patrese's time/retired?",
    "question_th": "Riccardo Patrese เกษียณ/อายุเท่าไร?",
    "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_en": "How many rounds did geoff lees drive with chassis of n180?",
    "question_th": "เจฟฟ์ ลีส์ ขับแชสซี 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_en": "What is the tyres for Didier pironi?",
    "question_th": "ยางสำหรับ 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_en": "Who was the constructor of the car that Jan Lammers made 7-14 rounds in?",
    "question_th": "ใครคือผู้สร้างรถที่แจน แลมเมอร์สทำได้ 7-14 รอบ?",
    "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_en": "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?",
    "question_th": "เครื่องยนต์ใดที่ใช้ระหว่างการแข่งขันที่ขับโดย Jan Lammers โดยใช้แชสซี d3 d4 ทำให้ยางเป็น g และรอบ 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_en": "Which Competition has a Venue of Seoul, and Result of 4-1?",
    "question_th": "การแข่งขันใดมีสนามที่กรุงโซลและผลการแข่งขัน 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_en": "What's the Result listed that has a Date of June 12, 1997?",
    "question_th": "ผลลัพธ์ที่ระบุไว้ซึ่งมีวันที่ 12 มิถุนายน 1997 คืออะไร",
    "context": "CREATE TABLE table_name_76 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_70 WHERE result = \"1-0\"",
    "question_en": "What's the Score listed that has a Result of 1-0?",
    "question_th": "คะแนนที่ระบุว่ามีผล 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_en": "What's the Result for the Competition of 1994 FIFA World Cup Qualification, with the Date of May 15, 1993?",
    "question_th": "ผลการแข่งขันฟุตบอลโลก 1994 รอบคัดเลือก วันที่ 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_en": "Which Competition had a Result of 3-0 and VEnue of Suwon?",
    "question_th": "การแข่งขันรายการไหนที่ผลสกอร์ 3-0 และ venue ของซูวอน?",
    "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_en": "What's the Result of the Competition of 1998 FIFA World Cup Qualification with the Venue of Bangkok?",
    "question_th": "ผลการแข่งขันฟุตบอลโลก 1998 รอบคัดเลือก ที่สนามกรุงเทพฯ เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_66 (result VARCHAR, competition VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT decision FROM table_name_34 WHERE home = \"boston\"",
    "question_en": "Who had the decision with boston at home?",
    "question_th": "ใครเป็นคนตัดสินใจกับบอสตันที่บ้าน?",
    "context": "CREATE TABLE table_name_34 (decision VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_19 WHERE venue = \"mcg\"",
    "question_en": "Who is the home team that played at MCG?",
    "question_th": "ทีมเจ้าบ้านที่เล่นที่เอ็มซีจีคือใคร?",
    "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_en": "What is the score of the away team that played richmond?",
    "question_th": "ทีมเยือนเจอริชมอนด์สกอร์เท่าไหร่?",
    "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_en": "What is the score for the game that Colin Fleming Scott Lipsky played in?",
    "question_th": "ในเกมที่ Colin Fleming Scott Lipsky ลงเล่นได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_5 (score VARCHAR, opponents VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_51 WHERE partner = \"dieter kindlmann\"",
    "question_en": "Which tournament was Dieter Kindlmann a partner?",
    "question_th": "Dieter Kindlmann เป็นหุ้นส่วนในทัวร์นาเมนต์ใด",
    "context": "CREATE TABLE table_name_51 (tournament VARCHAR, partner VARCHAR)"
  },
  {
    "answer": "SELECT MIN(goals) FROM table_name_33 WHERE apps < 22",
    "question_en": "When the Apps were smaller than 22, what's the lowest amount of goals scored in a game?",
    "question_th": "เมื่อแอปมีขนาดเล็กกว่า 22 ประตูที่ทำได้น้อยที่สุดในเกมคือเท่าใด",
    "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_en": "What's the total number of all divisions during the 2006/07 season where they scored more than 1 goal?",
    "question_th": "จำนวนรวมของดิวิชั่นทั้งหมดในช่วงฤดูกาล 2006/07 ที่พวกเขายิงได้มากกว่า 1 ประตูคือเท่าใด",
    "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_en": "What is the average crowd at victoria park?",
    "question_th": "ฝูงชนโดยเฉลี่ยที่ 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_en": "What is the Away team score with north melbourne as home team?",
    "question_th": "คะแนนทีมเยือนมีเมลเบิร์นเหนือเป็นเจ้าบ้านเท่าไหร่?",
    "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_en": "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?",
    "question_th": "ใครเป็นผู้จัดประเภททั่วไปเมื่อทีม trofeo fast คือ Mapei-Bricobi, การจัดคะแนนตกเป็นของ Mariano Piccoli และประเภทภูเขาตกเป็นของ Marco Pantani ในสเตจที่ 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_en": "Who was the winner in stage 3?",
    "question_th": "ใครคือผู้ชนะในระยะที่ 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_en": "Which state was first elected in 1914, and a Member of edward jolley?",
    "question_th": "รัฐใดได้รับการเลือกตั้งครั้งแรกในปี พ.ศ. 2457 และเป็นสมาชิกของ 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_en": "Which state is frederick bamford a member of?",
    "question_th": "เฟรดเดอริก แบมฟอร์ดเป็นสมาชิกของรัฐใด",
    "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_en": "Which first election for the labor party is James Sharpe a part of?",
    "question_th": "เจมส์ ชาร์ป มีส่วนร่วมกับการเลือกตั้งครั้งแรกของพรรคแรงงานคนใด",
    "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_en": "Which party is sydney sampson a member of?",
    "question_th": "ซิดนีย์ แซมป์สันเป็นสมาชิกพรรคใด?",
    "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_en": "What position for doug gibson with 2 wins?",
    "question_th": "ดั๊ก กิ๊บสัน คว้าชัย 2 นัดได้ตำแหน่งไหน?",
    "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_en": "How many receptions does Chris Watton with yards of less than 1?",
    "question_th": "Chris Watton รับได้กี่ครั้งโดยระยะน้อยกว่า 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_en": "What is the American locations with less than 114 years and more than 1 tied with more than 1022 total games?",
    "question_th": "สถานที่ใดในอเมริกาที่มีอายุน้อยกว่า 114 ปีและมากกว่า 1 แห่งที่เชื่อมโยงกับเกมทั้งหมดมากกว่า 1,022 เกม?",
    "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_en": "Who was the away team when Melbourne was the home team?",
    "question_th": "ทีมเยือนคือใครเมื่อเมลเบิร์นเป็นเจ้าบ้าน?",
    "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_en": "What is the Away team score for Away team North Melbourne?",
    "question_th": "คะแนนทีมเยือนของทีมเยือน นอร์ท เมลเบิร์น คืออะไร?",
    "context": "CREATE TABLE table_name_13 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_13 WHERE home_team = \"richmond\"",
    "question_en": "Which Away team is associated with the Richmond Home team?",
    "question_th": "ทีมเยือนทีมไหนมีความเกี่ยวข้องกับทีมริชมอนด์โฮม?",
    "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_en": "What is the birth date of the member with the Defining characteristic of pink hair?",
    "question_th": "วันเกิดของสมาชิกที่มีลักษณะผมสีชมพูคือวันที่เท่าไร?",
    "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_en": "Who is the person with the defining characteristic of the shortest band member?",
    "question_th": "ใครคือบุคคลที่มีลักษณะเฉพาะของสมาชิกวงที่เตี้ยที่สุด?",
    "context": "CREATE TABLE table_name_95 (Real VARCHAR, defining_characteristics VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_9 WHERE costume_role = \"monster\"",
    "question_en": "What is the name of the member with a costume Role of monster?",
    "question_th": "สมาชิกที่สวมชุดเป็นมอนสเตอร์ชื่ออะไร?",
    "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_en": "What was the final score for the match played in Venue H and the opponent was Newcastle United?",
    "question_th": "คะแนนสุดท้ายของแมตช์ที่เล่นในสนาม H และคู่ต่อสู้คือนิวคาสเซิ่ลยูไนเต็ดคือเท่าไร?",
    "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_en": "What is the fewest bronze medals for a team with fewer than 1 silver and rank lower than 5?",
    "question_th": "เหรียญทองแดงน้อยที่สุดสำหรับทีมที่มีเหรียญเงินน้อยกว่า 1 เหรียญและอันดับต่ำกว่า 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_en": "How many bronze medals for the nation with fewer than 3 gold, 1 silver and rank of 3?",
    "question_th": "น้อยกว่า 3 เหรียญทอง 1 เหรียญเงิน และอันดับ 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_en": "What is the largest total for a nation with 1 bronze and more than 1 silver?",
    "question_th": "อะไรคือผลรวมที่ใหญ่ที่สุดสำหรับประเทศที่มี 1 เหรียญทองแดงและมากกว่า 1 เหรียญเงิน?",
    "context": "CREATE TABLE table_name_92 (total INTEGER, bronze VARCHAR, silver VARCHAR)"
  },
  {
    "answer": "SELECT MIN(total) FROM table_name_75 WHERE silver > 1",
    "question_en": "What is the smallest total for a nation with more than 1 silver?",
    "question_th": "ผลรวมที่น้อยที่สุดสำหรับประเทศที่มีมากกว่า 1 เหรียญเงินคือเท่าใด?",
    "context": "CREATE TABLE table_name_75 (total INTEGER, silver INTEGER)"
  },
  {
    "answer": "SELECT agg FROM table_name_45 WHERE team__number2 = \"okk beograd\"",
    "question_en": "What was the aggregate for a team #2 of Okk Beograd?",
    "question_th": "ผลรวมของทีม #2 ของ 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_en": "What was the 2nd leg score for Chemie Halle?",
    "question_th": "คะแนนเลกที่ 2 ของ 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_en": "What was South Melbourne's score as the away team?",
    "question_th": "ทีมเยือนเซาธ์ เมลเบิร์นมีสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_50 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(crowd) FROM table_name_70 WHERE away_team = \"geelong\"",
    "question_en": "What was the attendance when Geelong played as the away team?",
    "question_th": "กีลองเล่นเป็นทีมเยือนมีผู้ชมเข้าร่วมเท่าไร?",
    "context": "CREATE TABLE table_name_70 (crowd VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_27 WHERE away_team = \"footscray\"",
    "question_en": "Where did Footscray play as the away team?",
    "question_th": "ฟุตสเครย์ลงเล่นทีมเยือนที่ไหน?",
    "context": "CREATE TABLE table_name_27 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT crowd FROM table_name_54 WHERE venue = \"arden street oval\"",
    "question_en": "What was the attendance when the Arden Street Oval?",
    "question_th": "การเข้าร่วมเมื่อ 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_en": "What is the mean pick when the play is Marc Lewis (lhp) and the round is less than 20?",
    "question_th": "การเลือกเฉลี่ยเมื่อเล่นคือ Marc Lewis (lhp) และรอบน้อยกว่า 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_en": "Which pick's player was Marc Lewis (lhp)?",
    "question_th": "ผู้เล่นคนไหนคือ 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_en": "Which is the biggest pick for Naperville Central High School?",
    "question_th": "ตัวเลือกใดที่ใหญ่ที่สุดสำหรับ 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_en": "What is the media market ranking for new york, new york?",
    "question_th": "การจัดอันดับตลาดสื่อสำหรับนิวยอร์กนิวยอร์กคืออะไร?",
    "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_en": "Is it home or away when opponent is Pride with a W 11-10 result?",
    "question_th": "จะเป็นเหย้าหรือเยือนเมื่อคู่ต่อสู้อยู่ใน Pride ด้วยผล W 11-10?",
    "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_en": "Who is the opponent at Bishop Kearney Field?",
    "question_th": "คู่ต่อสู้ที่บิชอป เคียร์นีย์ ฟิลด์คือใคร?",
    "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_en": "On what date were the opponents the Bayhawks at a home game?",
    "question_th": "คู่ต่อสู้ของ Bayhawks ในเกมเหย้าคือวันไหน?",
    "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_en": "What city or Raion (district) has 8,600 Bessarabian Bulgarians?",
    "question_th": "เมืองใดหรือ Raion (เขต) มีชาวบัลแกเรีย Bessarabian 8,600 คน",
    "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_en": "what is the Moldovans number when there are 14,200 Ukrainians?",
    "question_th": "หมายเลขมอลโดวาคืออะไรเมื่อมีชาวยูเครน 14,200 คน",
    "context": "CREATE TABLE table_name_81 (moldovans VARCHAR, ukrainians VARCHAR)"
  },
  {
    "answer": "SELECT MIN(reported_isn) FROM table_name_28 WHERE citizenship = \"russia\"",
    "question_en": "Name the lowest reported isn for russia",
    "question_th": "ชื่อที่มีการรายงานต่ำสุดคือสำหรับรัสเซีย",
    "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_en": "Name the average reported isn for july 2007 for kuwait release of no",
    "question_th": "ตั้งชื่อค่าเฉลี่ยที่รายงานไว้สำหรับเดือนกรกฎาคม 2550 สำหรับคูเวตที่เผยแพร่หมายเลข",
    "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_en": "What is the highest region number with a 499 population?",
    "question_th": "หมายเลขภูมิภาคสูงสุดที่มีประชากร 499 คนคือหมายเลขใด",
    "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_en": "What was the series score on april 17 with minnesota at home?",
    "question_th": "คะแนนซีรีส์เมื่อวันที่ 17 เมษายนกับมินนิโซตาที่บ้านเป็นเท่าไหร่",
    "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_en": "How many attended the game on april 14?",
    "question_th": "มีกี่คนที่เข้าร่วมเกมในวันที่ 14 เมษายน?",
    "context": "CREATE TABLE table_name_28 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_8 WHERE date = \"april 14\"",
    "question_en": "Who was at home on april 14?",
    "question_th": "วันที่ 14 เมษายน ใครอยู่บ้านบ้าง?",
    "context": "CREATE TABLE table_name_8 (home VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_91 WHERE home_team = \"melbourne\"",
    "question_en": "What is the name of the away team that played Melbourne?",
    "question_th": "ทีมเยือนที่เล่นเมลเบิร์นชื่ออะไร",
    "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_en": "What date was the game played at Punt Road Oval?",
    "question_th": "แข่งที่ 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_en": "What is the name of the home team that played against Hawthorn?",
    "question_th": "เจ้าบ้านที่เล่นกับฮอว์ธอร์นชื่ออะไร?",
    "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_en": "What is the home team score that played at Kardinia Park?",
    "question_th": "สกอร์เจ้าบ้านที่เล่นที่คาร์ดิเนีย พาร์คเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_25 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(laps) FROM table_name_85 WHERE driver = \"rubens barrichello\"",
    "question_en": "I want the total number of Laps for Rubens Barrichello",
    "question_th": "ฉันอยากได้จำนวนรอบรวมของ 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_en": "Tell me the driver for grid less than 19 and Laps more than 59 with time/retired of +0.294",
    "question_th": "บอกคนขับสำหรับกริดน้อยกว่า 19 และรอบมากกว่า 59 โดยมีเวลา/เกษียณที่ +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_en": "What is the name of the rider with a time of 1:45.52.84, and a Rank of 8?",
    "question_th": "นักบิดชื่ออะไร ด้วยเวลา 1:45.52.84 และอันดับที่ 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_en": "What is the name of the team with a rank smaller than 5 and a time of 1:37.58.38?",
    "question_th": "ชื่อทีมอันดับน้อยกว่า 5 และเวลา 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_en": "What is the highest rank for Peter Symes?",
    "question_th": "อันดับสูงสุดของ 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_en": "What was the score for the away team at Glenferrie Oval?",
    "question_th": "ทีมเยือน 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_en": "When was a game played where the away team is St Kilda?",
    "question_th": "แมตช์ที่เล่นเมื่อใดโดยทีมเยือนคือ เซนต์คิลดา?",
    "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_en": "What was the home team score when the away team was Carlton?",
    "question_th": "เมื่อทีมเยือนเป็นคาร์ลตันสกอร์เท่าไหร่?",
    "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_en": "What place can sit 65,000 and opens 2016?",
    "question_th": "สถานที่ไหนสามารถนั่งได้ 65,000 และเปิดปี 2559?",
    "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_en": "What is the stadium of the san diego chargers?",
    "question_th": "สนามกีฬาของซานดิเอโก ชาร์จเจอร์ส อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_99 (stadium VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_64 WHERE stadium = \"vikings stadium\"",
    "question_en": "Who is the team at vikings stadium?",
    "question_th": "ทีมไวกิ้ง สเตเดี้ยม คือใคร?",
    "context": "CREATE TABLE table_name_64 (team VARCHAR, stadium VARCHAR)"
  },
  {
    "answer": "SELECT building FROM table_name_81 WHERE floors > 15 AND year = \"2013\"",
    "question_en": "For the Year 2013 what building(s) had more than 15 Floors?",
    "question_th": "ในปี 2556 อาคารใดมีมากกว่า 15 ชั้น?",
    "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_en": "For the Year 2013 what building(s) had less than 20 Floors?",
    "question_th": "ในปี 2556 อาคารใดมีน้อยกว่า 20 ชั้น",
    "context": "CREATE TABLE table_name_13 (building VARCHAR, year VARCHAR, floors VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_2 WHERE away_team = \"richmond\"",
    "question_en": "What location was the game played at when Richmond was the away team?",
    "question_th": "เกมนี้เล่นที่สถานที่ใดเมื่อริชมอนด์เป็นทีมเยือน?",
    "context": "CREATE TABLE table_name_2 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_33 WHERE venue = \"vfl park\"",
    "question_en": "What date was the game played at vfl park?",
    "question_th": "เกมที่ 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_en": "How many people were in the crowd when the away team was north melbourne?",
    "question_th": "ตอนที่ทีมเยือนอยู่เมลเบิร์นตอนเหนือมีกี่คน?",
    "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_en": "When was the first HC climb which, more recently than 2012, had more than 1 HC climbs, more than 29 times visited?",
    "question_th": "การปีน HC ครั้งแรกคือเมื่อใด ซึ่งล่าสุดกว่าปี 2012 มีการปีน HC มากกว่า 1 ครั้ง มีการเยี่ยมชมมากกว่า 29 ครั้ง คือเมื่อใด",
    "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_en": "How many HC climbs had 1 visit more recently than 1984, a first HC climb before 1994, and a height of 1900?",
    "question_th": "การปีน HC กี่ครั้งที่มีการเยี่ยมชม 1 ครั้งเมื่อเร็วๆ นี้มากกว่าปี 1984 การปีน HC ครั้งแรกก่อนปี 1994 และความสูงปี 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_en": "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?",
    "question_th": "ความสูงที่มี HC มากกว่า 2 ครั้งเพิ่มขึ้นล่าสุดจากปี 2012 มีการเยี่ยมชมน้อยกว่า 48 ครั้ง และมีการปีน HC ครั้งแรกในปี 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_en": "What was the most recent year a height of 2770 m and a HC climb before 1992 was climbed?",
    "question_th": "ปีล่าสุดที่มีความสูง 2,770 ม. และปีน HC ก่อนปี 1992 คืออะไร?",
    "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_en": "When was the first HC climb before 2013 with more than 3 times visited, more than 4 HC climbs, and a height of 1669?",
    "question_th": "การปีน HC ครั้งแรกก่อนปี 2013 มีการเข้าชมมากกว่า 3 ครั้ง การปีน HC มากกว่า 4 ครั้ง และความสูง 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_en": "Who is the builder of Pennant d03?",
    "question_th": "ใครคือผู้สร้างชายธง 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_en": "How many picks had a Reg GP that was over 906, when the Pl GP was bigger than 99?",
    "question_th": "มีกี่ตัวเลือกที่มี Reg GP ที่มากกว่า 906 เมื่อ Pl GP ใหญ่กว่า 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_en": "Which is the smallest pick number that had a Reg GP of less than 0?",
    "question_th": "หมายเลขตัวเลือกใดที่เล็กที่สุดที่มี Reg GP น้อยกว่า 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_en": "Name the home team score when the away team is south melbourne",
    "question_th": "บอกชื่อคะแนนทีมเจ้าบ้านเมื่อทีมเยือนอยู่เซาท์เมลเบิร์น",
    "context": "CREATE TABLE table_name_15 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_51 WHERE home_team = \"collingwood\"",
    "question_en": "Name the date for home team of collingwood",
    "question_th": "ตั้งชื่อวันที่ทีมเหย้าของคอลลิงวูด",
    "context": "CREATE TABLE table_name_51 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_87 WHERE venue = \"princes park\"",
    "question_en": "Name the date for princes park",
    "question_th": "ตั้งชื่อวันที่สำหรับ 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_en": "Name the date for the venue of brunswick street oval",
    "question_th": "ตั้งชื่อวันที่สถานที่จัดงานถนนบรันสวิกวงรี",
    "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_en": "What was the attendence of the game on 26 April 1948 and an away team of Hawthorn?",
    "question_th": "การมีส่วนร่วมในเกมวันที่ 26 เมษายน พ.ศ. 2491 และทีมเยือนของฮอว์ธอร์นเป็นอย่างไรบ้าง?",
    "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_en": "When playing at Windy Hill, what was the home team?",
    "question_th": "ตอนเล่นวินดี้ฮิลล์เจ้าบ้านเป็นไงบ้าง?",
    "context": "CREATE TABLE table_name_54 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT AVG(crowd) FROM table_name_99 WHERE home_team = \"footscray\"",
    "question_en": "What is the average crowd when footscray is at home?",
    "question_th": "ฝูงชนโดยเฉลี่ยเมื่อ footscray อยู่ที่บ้านคือเท่าไร?",
    "context": "CREATE TABLE table_name_99 (crowd INTEGER, home_team VARCHAR)"
  },
  {
    "answer": "SELECT crowd FROM table_name_4 WHERE venue = \"windy hill\"",
    "question_en": "What is the listed crowd at windy hill?",
    "question_th": "รายการฝูงชนที่ 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_en": "What is the away team's score at punt road oval?",
    "question_th": "คะแนนของทีมเยือนที่สนามปันท์โร้ดโอวัลเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_27 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_24 WHERE score = \"116–105\"",
    "question_en": "Who was the home team at the Nuggets game that had a score of 116–105?",
    "question_th": "ทีมเจ้าบ้านในเกมนักเก็ตคนไหนที่มีคะแนน 116–105?",
    "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_en": "Tell me the lowest Laps with a time/retired of +2 Laps and Grid of 20",
    "question_th": "บอกรอบต่ำสุดด้วยเวลา/เกษียณ +2 รอบและตาราง 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_en": "I want the time/retired for eddie irvine",
    "question_th": "ฉันต้องการเวลา/เกษียณสำหรับเอ็ดดี้ เออร์ไวน์",
    "context": "CREATE TABLE table_name_83 (time_retired VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_48 WHERE winning_driver = \"rodger ward\"",
    "question_en": "What date was Rodger Ward the winning driver?",
    "question_th": "Rodger Ward เป็นนักขับที่ชนะในวันที่เท่าไหร่?",
    "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_en": "What was the constructor when Jack Brabham was the driver at the Monaco Grand Prix?",
    "question_th": "ผู้สร้างคืออะไรเมื่อ Jack Brabham เป็นนักแข่งที่ 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_en": "What driver was the winner when Joakim Bonnier was in the Pole Position?",
    "question_th": "นักแข่งคนไหนเป็นผู้ชนะเมื่อ Joakim Bonnier อยู่ในตำแหน่งโพล",
    "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_en": "What date was the Tyre d and Bruce Mclaren won?",
    "question_th": "Tyre d และ Bruce Mclaren ชนะวันที่เท่าไหร่?",
    "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_en": "What date was Joakim Bonnier in the pole position?",
    "question_th": "Joakim Bonnier อยู่ในตำแหน่งโพลวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_21 (date VARCHAR, pole_position VARCHAR)"
  },
  {
    "answer": "SELECT time_retired FROM table_name_70 WHERE grid = 19",
    "question_en": "What is the time for the racer on grid 19?",
    "question_th": "นักแข่งในกริด 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_en": "Who made the car that Alberto Ascari went more than 35 laps on a grid less than 7?",
    "question_th": "ใครเป็นคนทำรถที่ อัลเบร์โต อัสคารี วิ่งเกิน 35 รอบในตารางน้อยกว่า 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_en": "What driver raced for more than 9 laps on grid 7?",
    "question_th": "นักแข่งคนไหนที่วิ่งเกิน 9 รอบในตาราง 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_en": "Which License has an Actual Vaersion of 9.0?",
    "question_th": "ใบอนุญาตใดมี Vaersion จริงเป็น 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_en": "Which System has an Actual Version 9.0?",
    "question_th": "ระบบใดที่มีเวอร์ชันจริง 9.0?",
    "context": "CREATE TABLE table_name_15 (system VARCHAR, actual_version VARCHAR)"
  },
  {
    "answer": "SELECT system FROM table_name_45 WHERE name = \"gemulator\"",
    "question_en": "Which System's Name is Gemulator?",
    "question_th": "ชื่อของระบบใดคือ 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_en": "Which System's Name is Steem, and has a Freeware License?",
    "question_th": "ชื่อของระบบใดคือ Steem และมีใบอนุญาตฟรีแวร์",
    "context": "CREATE TABLE table_name_76 (system VARCHAR, license VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_96 WHERE record = \"10–13–2\"",
    "question_en": "What was the date of the game when the Lightning had a record of 10–13–2?",
    "question_th": "วันที่ของเกมคือวันที่ Lightning มีสถิติ 10–13–2?",
    "context": "CREATE TABLE table_name_96 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_58 WHERE record = \"9–8–1\"",
    "question_en": "What was the date of the game when the Lightning had a record of 9–8–1?",
    "question_th": "วันที่ของเกมคือวันที่ Lightning มีสถิติ 9–8–1?",
    "context": "CREATE TABLE table_name_58 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT decision FROM table_name_84 WHERE record = \"6–8–1\"",
    "question_en": "What was the decision of the game when the Lightning had a record of 6–8–1?",
    "question_th": "อะไรคือการตัดสินใจของเกมเมื่อสายฟ้ามีสถิติ 6–8–1?",
    "context": "CREATE TABLE table_name_84 (decision VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT AVG(pick) FROM table_name_48 WHERE player = \"dominic uy\"",
    "question_en": "What pick was Dominic Uy?",
    "question_th": "Dominic Uy เลือกอะไร?",
    "context": "CREATE TABLE table_name_48 (pick INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_98 WHERE pick = 33",
    "question_en": "What college did pick 33 attend?",
    "question_th": "วิทยาลัยใดที่เลือก 33 เข้าร่วม?",
    "context": "CREATE TABLE table_name_98 (college VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT elevation_msl FROM table_name_71 WHERE housing__2007_ = \"91,385\"",
    "question_en": "What is the elevation of the city with a number of 91,385 Housing dwellings in 2007?",
    "question_th": "เมืองที่มีอาคารที่อยู่อาศัยจำนวน 91,385 หลังในปี 2550 มีความสูงเท่าใด",
    "context": "CREATE TABLE table_name_71 (elevation_msl VARCHAR, housing__2007_ VARCHAR)"
  },
  {
    "answer": "SELECT density__hab_km²_ FROM table_name_11 WHERE city_district = \"san sebastián\"",
    "question_en": "What is the density of San Sebastián?",
    "question_th": "ความหนาแน่นของซานเซบาสเตียนเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_11 (density__hab_km²_ VARCHAR, city_district VARCHAR)"
  },
  {
    "answer": "SELECT density__hab_km²_ FROM table_name_5 WHERE elevation_msl = \"3,400 msl\"",
    "question_en": "What is the density of the city with an elevation of 3,400 msl?",
    "question_th": "ความหนาแน่นของเมืองที่มีระดับความสูง 3,400 มิลลิวินาที เป็นเท่าใด",
    "context": "CREATE TABLE table_name_5 (density__hab_km²_ VARCHAR, elevation_msl VARCHAR)"
  },
  {
    "answer": "SELECT area_km² FROM table_name_92 WHERE density__hab_km²_ = \"8,546.1\"",
    "question_en": "What is the area of the city with a density of 8,546.1?",
    "question_th": "พื้นที่ของเมืองที่มีความหนาแน่น 8,546.1 คือข้อใด",
    "context": "CREATE TABLE table_name_92 (area_km² VARCHAR, density__hab_km²_ VARCHAR)"
  },
  {
    "answer": "SELECT area_km² FROM table_name_72 WHERE density__hab_km²_ = \"955.6\"",
    "question_en": "What is the area of the city with a density of 955.6?",
    "question_th": "พื้นที่ของเมืองที่มีความหนาแน่น 955.6 คือข้อใด",
    "context": "CREATE TABLE table_name_72 (area_km² VARCHAR, density__hab_km²_ VARCHAR)"
  },
  {
    "answer": "SELECT density__hab_km²_ FROM table_name_72 WHERE city_district = \"san sebastián\"",
    "question_en": "What is the density of San Sebastián?",
    "question_th": "ความหนาแน่นของซานเซบาสเตียนเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_72 (density__hab_km²_ VARCHAR, city_district VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_45 WHERE category = \"best book of a musical\"",
    "question_en": "Which Result has a Category of best book of a musical?",
    "question_th": "ผลลัพธ์ใดมีหมวดหมู่หนังสือละครเพลงที่ดีที่สุด",
    "context": "CREATE TABLE table_name_45 (result VARCHAR, category VARCHAR)"
  },
  {
    "answer": "SELECT nominee FROM table_name_88 WHERE category = \"outstanding musical\"",
    "question_en": "Which Nominee has a Category of outstanding musical?",
    "question_th": "ผู้ท้าชิงคนใดมีหมวดหมู่ละครเพลงที่โดดเด่น?",
    "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_en": "What is the record time at the Nascar Camping World Truck Series?",
    "question_th": "เวลาบันทึกของ 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_en": "What date was the nascar nationwide series held?",
    "question_th": "ซีรีส์ทั่วประเทศของนาสคาร์จัดขึ้นวันไหน?",
    "context": "CREATE TABLE table_name_57 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_12 WHERE time = \"24.521\"",
    "question_en": "Who holds the record time of 24.521 and where was it made?",
    "question_th": "ใครเป็นผู้ครองสถิติเวลา 24.521 และทำที่ไหน?",
    "context": "CREATE TABLE table_name_12 (record VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT time_retired FROM table_name_79 WHERE grid = \"9\"",
    "question_en": "Which time/retired has a grid of 9?",
    "question_th": "เวลาใด/เกษียณอายุมีตาราง 9",
    "context": "CREATE TABLE table_name_79 (time_retired VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_79 WHERE grid = \"6\"",
    "question_en": "Which driver's grid is 6?",
    "question_th": "ตารางไดรเวอร์ใดคือ 6?",
    "context": "CREATE TABLE table_name_79 (driver VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_59 WHERE driver = \"juan manuel fangio\"",
    "question_en": "For which constructor does Juan Manuel Fangio drive?",
    "question_th": "Juan Manuel Fangio ขับให้คอนสตรัคเตอร์คนไหน?",
    "context": "CREATE TABLE table_name_59 (constructor VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT laps FROM table_name_25 WHERE grid = \"8\"",
    "question_en": "Which laps has a grid of 8?",
    "question_th": "รอบใดมีตาราง 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álvez\"",
    "question_en": "Which grid is constructed by Maserati and driven by Oscar Alfredo Gálvez?",
    "question_th": "กริดใดที่ Maserati สร้างขึ้นและขับเคลื่อนโดย Oscar Alfredo Gálvez",
    "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_en": "what was the engine when ken downing drove an entrant from connaught engineering?",
    "question_th": "เครื่องยนต์คืออะไรเมื่อเคน ดาวนิ่งขับรถผู้เข้าร่วมจากวิศวกรรมคอนนอต",
    "context": "CREATE TABLE table_name_37 (engine VARCHAR, driver VARCHAR, entrant VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_21 WHERE driver = \"eric brandon\"",
    "question_en": "who built the car driven by eric brandon?",
    "question_th": "ใครเป็นคนสร้างรถที่ขับเคลื่อนโดยเอริค แบรนดอน?",
    "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_en": "what was the chassis built by simca-gordini and driven by max de terra?",
    "question_th": "แชสซีอะไรที่สร้างโดย simca-gordini และขับเคลื่อนโดย 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_en": "kenneth mcalpine drove from which entrant?",
    "question_th": "kenneth mcalpine ขับรถมาจากผู้เข้าร่วมคนไหน?",
    "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_en": "with 6 rounds, and a 52 51/52 chassis, who is the driver?",
    "question_th": "ด้วยจำนวน 6 นัด และแชสซีส์ 52 51/52 ใครคือคนขับ?",
    "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_en": "What was the attendance when the Braves were the opponent and the record was 56-53?",
    "question_th": "ผู้เข้าชมเมื่อ Braves เป็นคู่ต่อสู้และมีสถิติ 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_en": "Who was the opponent when the record was 61-57?",
    "question_th": "คู่ต่อสู้เมื่อสถิติเป็น 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_en": "How many laps for jochen rindt?",
    "question_th": "โจเชน รินดท์ไปกี่รอบ?",
    "context": "CREATE TABLE table_name_55 (laps VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(grid) FROM table_name_73 WHERE driver = \"jean-pierre beltoise\"",
    "question_en": "What is the grid total for jean-pierre beltoise?",
    "question_th": "ตารางรวมของ 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_en": "What was the time for the event in which Tony Mendoza was the opponent?",
    "question_th": "เหตุการณ์ที่โทนี่ เมนโดซาเป็นคู่ต่อสู้คือเวลาใด?",
    "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_en": "What is the average lap time for retired time of +23.707 and a Grid greater than 21?",
    "question_th": "เวลาต่อรอบเฉลี่ยสำหรับเวลาที่เลิกเล่นที่ +23.707 และกริดที่มากกว่า 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_en": "Which home team plays at victoria park?",
    "question_th": "เจ้าบ้านทีมไหนเล่นที่วิคตอเรีย พาร์ค?",
    "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_en": "Tell me the lowest avg for 6 yards and rec more than 1",
    "question_th": "บอกค่าเฉลี่ยต่ำสุดสำหรับระยะ 6 หลาและค่าที่มากกว่า 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_en": "Name the sum of long for avg more than 9.8 with rec less than 5 and yards less than 20",
    "question_th": "ตั้งชื่อผลรวมของความยาวสำหรับค่าเฉลี่ยมากกว่า 9.8 โดยมีค่า rec น้อยกว่า 5 และระยะน้อยกว่า 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_en": "Name the sum of long for avg less than 6 and rec less than 2",
    "question_th": "ตั้งชื่อผลรวมของความยาวสำหรับค่าเฉลี่ยน้อยกว่า 6 และ rec น้อยกว่า 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_en": "Name the lelast decile for roll of 428",
    "question_th": "ตั้งชื่อ decil ขั้นต่ำสำหรับม้วน 428",
    "context": "CREATE TABLE table_name_63 (decile INTEGER, roll VARCHAR)"
  },
  {
    "answer": "SELECT MAX(decile) FROM table_name_94 WHERE roll = 428",
    "question_en": "Name the most decile for roll of 428",
    "question_th": "ตั้งชื่อ decile มากที่สุดสำหรับม้วน 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_en": "What's the highest year than hawthorn won with a season result of preliminary finalist and a crowd smaller than 27,407?",
    "question_th": "ปีใดที่ฮอว์ธอร์นชนะด้วยผลการแข่งขันรอบคัดเลือกเบื้องต้นและฝูงชนน้อยกว่า 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_en": "What scores did grand finalist hawthorn have?",
    "question_th": "Hawthorn ผู้เข้ารอบสุดท้ายได้คะแนนเท่าไหร่?",
    "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_en": "What grand finalist had a year after 1979, a margin smaller than 30, and winners of essendon?",
    "question_th": "ผู้เข้ารอบสุดท้ายที่ยิ่งใหญ่คนใดที่มีหนึ่งปีหลังจากปี 1979 โดยมีอัตรากำไรน้อยกว่า 30 และผู้ชนะของ 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_en": "Tell me the sum of number of jamaicans given british citizenship for 2004 and registration of a minor child more than 640",
    "question_th": "บอกผลรวมของจำนวนจาเมกาที่ได้รับสัญชาติอังกฤษในปี 2547 และการจดทะเบียนบุตรที่ยังไม่บรรลุนิติภาวะมากกว่า 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_en": "What team played under 52 Reg GP, and picked 130?",
    "question_th": "ทีมใดเล่นต่ำกว่า 52 Reg GP และเลือก 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_en": "What is the highest PL GP for a round greater than 9?",
    "question_th": "PL GP สูงสุดในรอบที่มากกว่า 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_en": "Which title has a length of 4:22?",
    "question_th": "เรื่องใดมีความยาว 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_en": "Which composer has a track length of 2:50?",
    "question_th": "นักแต่งเพลงคนไหนมีความยาวเพลง 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_en": "Which title has a Black Ice for a guest performer and a length of 5:49?",
    "question_th": "ชื่อใดที่มี Black Ice สำหรับนักแสดงรับเชิญและมีความยาว 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_en": "Which guest performer has a track length of 5:49?",
    "question_th": "นักแสดงรับเชิญคนใดมีความยาวเพลง 5:49?",
    "context": "CREATE TABLE table_name_8 (guest_performer VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_38 WHERE visitor = \"philadelphia\"",
    "question_en": "What was the score when philadelphia visited?",
    "question_th": "เมื่อฟิลาเดลเฟียมาเยือนได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_38 (score VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_76 WHERE decision = \"weekes\"",
    "question_en": "How many attended the game with weekes recording the decision?",
    "question_th": "มีกี่คนที่เข้าร่วมเกมโดยใช้เวลาหลายสัปดาห์ในการบันทึกการตัดสินใจ?",
    "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_en": "What digital channel does Three Angels Broadcasting Network own?",
    "question_th": "Three Angels Broadcasting Network เป็นเจ้าของช่องดิจิทัลใดบ้าง",
    "context": "CREATE TABLE table_name_16 (Digital VARCHAR, owner VARCHAR)"
  },
  {
    "answer": "SELECT championship FROM table_name_27 WHERE score = \"6–3, 2–6, 3–6, 6–3, 3–6\"",
    "question_en": "What Championship has Scores of 6–3, 2–6, 3–6, 6–3, 3–6?",
    "question_th": "แชมป์เปี้ยนชิพรายการใดมีคะแนน 6–3, 2–6, 3–6, 6–3, 3–6?",
    "context": "CREATE TABLE table_name_27 (championship VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_43 WHERE away_team = \"geelong\"",
    "question_en": "What is the date of the game where Geelong was the away team?",
    "question_th": "เกมที่จีลองเป็นทีมเยือนคือวันไหน?",
    "context": "CREATE TABLE table_name_43 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_61 WHERE away_team = \"geelong\"",
    "question_en": "What is the venue of the game where Geelong was the away team?",
    "question_th": "สนามแข่งขันที่จีลองเป็นทีมเยือนคือสนามใด?",
    "context": "CREATE TABLE table_name_61 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_9 WHERE home_team = \"st kilda\"",
    "question_en": "What is the date of the game where St Kilda is the home team?",
    "question_th": "แมตช์ที่เซนต์คิลดาเป็นเจ้าบ้านวันไหน?",
    "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_en": "What was the home team's score of the game where South Melbourne is the away team?",
    "question_th": "เกมนี้เจ้าบ้านมีสกอร์เท่าไหร่ โดยเซาธ์ เมลเบิร์น เป็นทีมเยือน?",
    "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_en": "What is the away team's score of the game where the away team is Geelong?",
    "question_th": "คะแนนของทีมเยือนในเกมที่ทีมเยือนคือจีลองเป็นเท่าไหร่?",
    "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_en": "Which venue hosted the 2004 AFC Asian Cup qualification on November 18, 2003?",
    "question_th": "สนามใดเป็นเจ้าภาพจัดการแข่งขัน AFC Asian Cup 2004 เมื่อวันที่ 18 พฤศจิกายน พ.ศ. 2546",
    "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_en": "On what date did a friendly competition, hosted in Dubai, result in a draw?",
    "question_th": "การแข่งขันกระชับมิตรซึ่งจัดขึ้นที่ดูไบมีผลเสมอเมื่อใด?",
    "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_en": "What venue hosted a match with a 3-0 score on December 7, 2002?",
    "question_th": "สนามใดเป็นเจ้าภาพการแข่งขันด้วยสกอร์ 3-0 เมื่อวันที่ 7 ธันวาคม พ.ศ. 2545?",
    "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_en": "What competition resulted in 2-0 score, hosted in Amman?",
    "question_th": "การแข่งขันใดส่งผลให้สกอร์ 2-0 เจ้าบ้านที่อัมมาน?",
    "context": "CREATE TABLE table_name_23 (competition VARCHAR, score VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_29 WHERE venue = \"kuwait city\"",
    "question_en": "On what date was Kuwait City a venue?",
    "question_th": "คูเวตซิตี จัดขึ้นวันไหน?",
    "context": "CREATE TABLE table_name_29 (date VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_70 WHERE record = \"26–32\"",
    "question_en": "Who did the Mariners play when their record was 26–32?",
    "question_th": "กะลาสีเรือเล่นใครเมื่อบันทึกของพวกเขาคือ 26–32?",
    "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_en": "What was the Vanwall time/retired with 49 laps?",
    "question_th": "เวลาของ Vanwall/เกษียณด้วย 49 รอบคือเท่าไร?",
    "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_en": "How many laps did the grid 1 engine have?",
    "question_th": "เครื่องยนต์กริด 1 มีรอบกี่รอบ?",
    "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_en": "What was the highest lap for Luigi Piotti with more than 13 grid and a time/retired engine?",
    "question_th": "อะไรคือรอบสูงสุดสำหรับ Luigi Piotti ที่มีมากกว่า 13 ตารางและเวลา/เครื่องยนต์ที่เลิกใช้แล้ว?",
    "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_en": "What Cornerback has the lowest Pick # and Round of less than 1?",
    "question_th": "Cornerback ใดที่มี Pick # ต่ำสุดและรอบที่น้อยกว่า 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_en": "What is the Position of Pick #77?",
    "question_th": "ตำแหน่ง 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_en": "How many attended the game on August 12?",
    "question_th": "มีกี่คนที่เข้าร่วมเกมในวันที่ 12 สิงหาคม?",
    "context": "CREATE TABLE table_name_52 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(crowd) FROM table_name_62 WHERE home_team = \"hawthorn\"",
    "question_en": "What is the largest crowd with Home team of hawthorn?",
    "question_th": "ฝูงชนที่ใหญ่ที่สุดกับทีมเหย้าของฮอว์ธอร์นคือทีมไหน?",
    "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_en": "What is the home team score with Fitzroy as away team?",
    "question_th": "สกอร์เจ้าบ้านกับฟิตซ์รอยเป็นทีมเยือนเท่าไหร่?",
    "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_en": "What is glenferrie oval's home team?",
    "question_th": "ทีมเหย้าของ Glenferrie Oval คืออะไร?",
    "context": "CREATE TABLE table_name_59 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT super_g FROM table_name_8 WHERE overall = \"16\"",
    "question_en": "What is the Super G value for the season that has an Overall score of 16?",
    "question_th": "ค่า Super G สำหรับฤดูกาลที่มีคะแนนรวม 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_en": "What is the oldest season that had a listed Super G score of 33?",
    "question_th": "ฤดูกาลที่เก่าแก่ที่สุดที่มีคะแนน Super G อยู่ที่ 33 คืออะไร?",
    "context": "CREATE TABLE table_name_34 (season INTEGER, super_g VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_70 WHERE overall = \"77\"",
    "question_en": "What year's Season had an Overall of 77?",
    "question_th": "ฤดูกาลปีใดมีคะแนนรวม 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_en": "What is the high rank for players earning over $533,929?",
    "question_th": "อันดับสูงสุดสำหรับผู้เล่นที่มีรายได้มากกว่า $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_en": "What player has 3 wins and ranks above 3rd?",
    "question_th": "ผู้เล่นคนใดชนะ 3 ครั้งและอันดับสูงกว่าอันดับ 3?",
    "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_en": "What is the Time/Retired for emerson fittipaldi?",
    "question_th": "เวลา / เกษียณสำหรับ Emerson Fittipaldi คืออะไร?",
    "context": "CREATE TABLE table_name_14 (time_retired VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT long FROM table_name_60 WHERE car = 26",
    "question_en": "What is the long for the player with 26 carries?",
    "question_th": "ผู้เล่นที่มี 26 แครี่ ใช้เวลานานเท่าใด?",
    "context": "CREATE TABLE table_name_60 (long VARCHAR, car VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(car) FROM table_name_86 WHERE long = \"2\"",
    "question_en": "How many carries for the player with a 2 yard long?",
    "question_th": "ผู้เล่นที่มีความยาว 2 หลาแบกได้กี่คน?",
    "context": "CREATE TABLE table_name_86 (car VARCHAR, long VARCHAR)"
  },
  {
    "answer": "SELECT long FROM table_name_78 WHERE car < 30 AND yards = \"0\"",
    "question_en": "What is the long for the player with under 30 carries and 0 yards?",
    "question_th": "ระยะยาวสำหรับผู้เล่นที่ถือไม่เกิน 30 หลาและ 0 หลาคือเท่าใด?",
    "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_en": "How many wins were there in the 2000 season in the central division with less than 81 losses?",
    "question_th": "มีชัยชนะกี่ครั้งในฤดูกาล 2000 ในดิวิชั่นกลางโดยแพ้น้อยกว่า 81 ครั้ง?",
    "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_en": "What was the lowest percentages of wins in 1989 with a GB [c] of 17?",
    "question_th": "เปอร์เซ็นต์การชนะที่ต่ำที่สุดในปี 1989 โดยมี GB [c] เท่ากับ 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_en": "How many losses did the 1943 MLB have?",
    "question_th": "MLB ปี 1943 มีการสูญเสียไปกี่ครั้ง?",
    "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_en": "What was the lowest wins in a season less than 1915 with a 7th finish and 0.429 win %?",
    "question_th": "อะไรคือชัยชนะที่ต่ำที่สุดในหนึ่งฤดูกาลที่น้อยกว่าปี 1915 โดยจบอันดับที่ 7 และชนะ 0.429 %?",
    "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_en": "In 1900 with 62 wins and a win percentage less than 0.457, what was the GB [c]?",
    "question_th": "ในปี 1900 ด้วยการชนะ 62 ครั้งและเปอร์เซ็นต์การชนะน้อยกว่า 0.457 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–6 (12)\"",
    "question_en": "Which record has a score of 7–6 (12)?",
    "question_th": "บันทึกใดมีคะแนน 7–6 (12)",
    "context": "CREATE TABLE table_name_77 (record VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_62 WHERE record = \"59–59\"",
    "question_en": "On what date was the record 59–59?",
    "question_th": "บันทึก 59–59 คือวันที่ใด",
    "context": "CREATE TABLE table_name_62 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_57 WHERE date = \"august 21\"",
    "question_en": "What loss occurred on August 21?",
    "question_th": "การสูญเสียอะไรเกิดขึ้นในวันที่ 21 สิงหาคม?",
    "context": "CREATE TABLE table_name_57 (loss VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(1985) FROM table_name_27 WHERE 1990 = 93",
    "question_en": "What is the highest 1985 value that has a 1990 value of 93?",
    "question_th": "ค่าสูงสุดในปี 1985 ที่มีมูลค่าปี 1990 เป็น 93 คืออะไร?",
    "context": "CREATE TABLE table_name_27 (Id VARCHAR)"
  },
  {
    "answer": "SELECT MAX(2000) FROM table_name_51 WHERE 2010 = 82 AND 2005 < 74",
    "question_en": "What is the highest 2000 value that has a 2010 value of 82 and a 2005 value less than 74?",
    "question_th": "ค่าสูงสุดปี 2000 ที่มีมูลค่าปี 2010 เท่ากับ 82 และค่าปี 2005 น้อยกว่า 74 คืออะไร",
    "context": "CREATE TABLE table_name_51 (Id VARCHAR)"
  },
  {
    "answer": "SELECT SUM(1995) FROM table_name_7 WHERE year = \"jiangxi\" AND 2008 > 67",
    "question_en": "What is the 1995 value with a Jiangxi year and a 2008 value bigger than 67?",
    "question_th": "มูลค่าปี 1995 ที่มีค่าปีเจียงซีและปี 2008 มากกว่า 67 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_7 (year VARCHAR)"
  },
  {
    "answer": "SELECT MIN(2009) FROM table_name_18 WHERE 2010 = 141 AND 1985 > 165",
    "question_en": "What is the lowest 2009 value with a 2010 value of 141 and a 1985 value bigger than 165?",
    "question_th": "ค่าต่ำสุดปี 2009 โดยมีค่าปี 2010 เท่ากับ 141 และค่าปี 1985 มากกว่า 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_en": "What is the 1995 value with a 2005 value bigger than 74, a 2008 value of 84, and a 2000 value less than 80?",
    "question_th": "ค่าปี 1995 ซึ่งมีค่าปี 2005 มากกว่า 74 ค่าปี 2008 เป็น 84 และค่าปี 2000 น้อยกว่า 80 คืออะไร",
    "context": "CREATE TABLE table_name_35 (Id VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_24 WHERE year > 2004",
    "question_en": "What label is after 2004?",
    "question_th": "ป้ายกำกับอะไรหลังจากปี 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_en": "What is the Format and Special Notes for of the pact: ...of the gods?",
    "question_th": "รูปแบบและหมายเหตุพิเศษสำหรับสนธิสัญญาคืออะไร: ...ของเหล่าทวยเทพ?",
    "context": "CREATE TABLE table_name_23 (format VARCHAR, _special_notes VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_98 WHERE tracks = \"noxialicht\"",
    "question_en": "What movie has noxialicht as a track?",
    "question_th": "ภาพยนตร์เรื่องใดมี noxialich เป็นเพลง?",
    "context": "CREATE TABLE table_name_98 (title VARCHAR, tracks VARCHAR)"
  },
  {
    "answer": "SELECT MIN(gold) FROM table_name_81 WHERE rank = \"12\"",
    "question_en": "What is the lowest gold medals of a rank 12 team?",
    "question_th": "เหรียญทองต่ำสุดของทีมอันดับ 12 คืออะไร?",
    "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_en": "What is the total number of bronze medals of the team with more than 8 silvers and a total of 50 medals?",
    "question_th": "จำนวนเหรียญทองแดงรวมของทีมมากกว่า 8 เหรียญเงิน รวม 50 เหรียญคือเท่าใด",
    "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_en": "What is the average gold medals Uzbekistan, which has less than 24 total medals, has?",
    "question_th": "เหรียญทองเฉลี่ยของอุซเบกิสถานซึ่งมีทั้งหมดไม่ถึง 24 เหรียญมีเท่าไหร่?",
    "context": "CREATE TABLE table_name_65 (gold INTEGER, nation VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT open_cup FROM table_name_18 WHERE year > 1993",
    "question_en": "Which open cup was after 1993?",
    "question_th": "ถ้วยเปิดใดคือหลังปี 1993?",
    "context": "CREATE TABLE table_name_18 (open_cup VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT AVG(year) FROM table_name_27 WHERE playoffs = \"champion\"",
    "question_en": "Which year had playoffs of champion?",
    "question_th": "ปีไหนมีรอบตัดเชือกแชมป์?",
    "context": "CREATE TABLE table_name_27 (year INTEGER, playoffs VARCHAR)"
  },
  {
    "answer": "SELECT division FROM table_name_93 WHERE year = 1993",
    "question_en": "What divisions was in the year 1993?",
    "question_th": "ในปี พ.ศ. 2536 แบ่งเป็นหน่วยงานใดบ้าง?",
    "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_en": "Which UK base has 441st tcg Troop carrier group and 14 as their seir serial?",
    "question_th": "ฐานใดในสหราชอาณาจักรมีกลุ่มผู้ให้บริการ tcg Troop 441 แห่งและมี 14 แห่งเป็นซีเรียลซีเรียล",
    "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_en": "What is the Drop Zone time for the 439th tcg Troop Carrier Group with more tham 36 C-47s?",
    "question_th": "เวลาดรอปโซนสำหรับกลุ่มผู้ให้บริการกองร้อย tcg ที่ 439 พร้อมด้วย C-47 มากกว่า 36 ลำคือเมื่อใด",
    "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_en": "What was the grid placement for the Maserati that completed 14 laps?",
    "question_th": "ตำแหน่งกริดของ Maserati ที่วิ่งครบ 14 รอบเป็นอย่างไร",
    "context": "CREATE TABLE table_name_40 (grid VARCHAR, constructor VARCHAR, laps VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_69 WHERE driver = \"tony brooks\"",
    "question_en": "What company built the car driven by Tony Brooks?",
    "question_th": "บริษัทใดสร้างรถยนต์คันนี้ซึ่งขับโดย Tony Brooks",
    "context": "CREATE TABLE table_name_69 (constructor VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_54 WHERE date = \"may 2\"",
    "question_en": "What is the score on the date of May 2?",
    "question_th": "คะแนนวันที่ 2 พ.ค. เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_54 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_74 WHERE date = \"april 30\"",
    "question_en": "What city was a visitor on the date of April 30?",
    "question_th": "วันที่ 30 เมษายน มีผู้มาเยือนเมืองใด",
    "context": "CREATE TABLE table_name_74 (visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_5 WHERE date = \"april 22\"",
    "question_en": "On the date of April 22, which city was a visitor?",
    "question_th": "เมื่อวันที่ 22 เมษายน ที่ผ่านมา เมืองไหนได้มาเยือน?",
    "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_en": "What visitor has Ottawa as a home and a date of April 26?",
    "question_th": "ผู้มาเยือนคนใดมีออตตาวาเป็นบ้านและมีวันที่ 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_en": "What is Paino Hehea's date of birth?",
    "question_th": "วันเกิดของ Paino Hehea คืออะไร?",
    "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_en": "I want to know the location that has a record of 3-0",
    "question_th": "อยากทราบตำแหน่งที่มีสถิติ 3-0",
    "context": "CREATE TABLE table_name_66 (location VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_63 WHERE round > 1",
    "question_en": "Tell me the record for round more than 1",
    "question_th": "แจ้งบันทึกรอบเกิน1ครับ",
    "context": "CREATE TABLE table_name_63 (record VARCHAR, round INTEGER)"
  },
  {
    "answer": "SELECT method FROM table_name_71 WHERE opponent = \"jerry bohlander\"",
    "question_en": "I want to know the method for opponent of jerry bohlander",
    "question_th": "ฉันต้องการทราบวิธีการของคู่ต่อสู้ของ jerry bohlander",
    "context": "CREATE TABLE table_name_71 (method VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_62 WHERE club = \"bologna milan\"",
    "question_en": "Who belongs to the Bologna Milan club?",
    "question_th": "ใครอยู่ในสโมสรโบโลญญา มิลาน?",
    "context": "CREATE TABLE table_name_62 (player VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_23 WHERE date = \"june 6\"",
    "question_en": "Who is the opponent on June 6?",
    "question_th": "คู่ต่อสู้ในวันที่ 6 มิถุนายนคือใคร?",
    "context": "CREATE TABLE table_name_23 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_67 WHERE field = \"commerce bank ballpark\"",
    "question_en": "What is the date of the game at Commerce Bank Ballpark?",
    "question_th": "เกมที่ 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_en": "What is the result of the game at Bishop Kearney Field on August 2?",
    "question_th": "ผลเกมที่บิชอป เคียร์นีย์ ฟิลด์ วันที่ 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_en": "Who was the opponent of the game at Homewood field?",
    "question_th": "คู่ต่อสู้ของเกมที่สนามโฮมวูดคือใคร?",
    "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_en": "What is the result of the game at Bishop Kearney Field on August 2?",
    "question_th": "ผลเกมที่บิชอป เคียร์นีย์ ฟิลด์ วันที่ 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_en": "What is the time of the rider with a speed of 102.962mph?",
    "question_th": "ผู้ขับขี่ด้วยความเร็ว 102.962 ไมล์/ชม. ใช้เวลานานเท่าใด?",
    "context": "CREATE TABLE table_name_92 (time VARCHAR, speed VARCHAR)"
  },
  {
    "answer": "SELECT rider FROM table_name_52 WHERE time = \"1:27.37.22\"",
    "question_en": "Who is the rider who had the time of 1:27.37.22?",
    "question_th": "นักบิดที่ทำเวลาได้ 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_en": "Who is the rider who has a rank lower than 10, and a time of 1:26.31.20?",
    "question_th": "นักบิดที่มีอันดับต่ำกว่า 10 และทำเวลา 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_en": "What date was the Circuit of Indianapolis?",
    "question_th": "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_en": "Who was the Constructor at the Argentine Grand Prix?",
    "question_th": "ใครคือผู้สร้างที่ Argentine Grand Prix?",
    "context": "CREATE TABLE table_name_21 (constructor VARCHAR, race VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_83 WHERE circuit = \"indianapolis\"",
    "question_en": "What was the date of the Circuit of Indianapolis?",
    "question_th": "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_en": "Who was the winning driver of the Argentine Grand Prix?",
    "question_th": "ใครคือผู้ชนะการแข่งขัน 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_en": "What was Juan Manuel Fangio's reported pole position and the tire of C?",
    "question_th": "ตำแหน่งโพลโพซิชั่นที่รายงานของ Juan Manuel Fangio และยางของ 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_en": "What was the Attendance when the Home team was Montreal, on the Date of March 24?",
    "question_th": "ผู้เข้าร่วมเมื่อทีมเจ้าบ้านอยู่ที่มอนทรีออลในวันที่ 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_en": "What was the Score on March 15?",
    "question_th": "คะแนนเมื่อวันที่ 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_en": "What school does Dell Curry play for?",
    "question_th": "Dell Curry เล่นให้กับโรงเรียนใด",
    "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_en": "What school does John Crotty play for?",
    "question_th": "John Crotty เล่นให้กับโรงเรียนใด",
    "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_en": "What school does Wayne Cooper play for?",
    "question_th": "Wayne Cooper เล่นให้กับโรงเรียนใด",
    "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_en": "Who has greater than 8 Long and a 73 Yards?",
    "question_th": "ใครมีความยาวมากกว่า 8 ยาวและ 73 หลา?",
    "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_en": "Who has a highest Long with 26 Yards and less than 9 Car?",
    "question_th": "ใครมีความยาวสูงสุดด้วยระยะ 26 หลาและรถน้อยกว่า 9 คัน?",
    "context": "CREATE TABLE table_name_84 (long INTEGER, yards VARCHAR, car VARCHAR)"
  },
  {
    "answer": "SELECT MAX(long) FROM table_name_91 WHERE car = 59",
    "question_en": "Who has the highest Long with 59 Car?",
    "question_th": "ใครมี Long สูงสุดกับ 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_en": "Tell me the previous rank for italy with points more than 100",
    "question_th": "บอกอันดับก่อนหน้าของอิตาลีที่มีคะแนนเกิน 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_en": "Tell me the sum of rank for australia when points are less than 79",
    "question_th": "บอกผลรวมอันดับของออสเตรเลียเมื่อคะแนนน้อยกว่า 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_en": "How many ships for the nation with grand total of 20?",
    "question_th": "มีเรือให้ประเทศกี่ลำ รวม 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_en": "How many escorts does the nation with 6 cruisers have?",
    "question_th": "ประเทศที่มีเรือลาดตระเวน 6 ลำมีผู้คุ้มกันกี่คน?",
    "context": "CREATE TABLE table_name_74 (escorts VARCHAR, cruisers VARCHAR)"
  },
  {
    "answer": "SELECT street_address FROM table_name_70 WHERE floors = 44",
    "question_en": "Which address has 44 floors?",
    "question_th": "ที่อยู่ใดมี 44 ชั้น?",
    "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_en": "What is the total for the person with 73.28 bodyweight and fewer snatches than 75?",
    "question_th": "น้ำหนักรวมของบุคคลที่มีน้ำหนักตัว 73.28 และลูกฉกน้อยกว่า 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_en": "Which person has a bodyweight of 73.6?",
    "question_th": "บุคคลใดมีน้ำหนักตัว 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_en": "What is the total for the player with more snatches than 87.5 and bodyweight more than 74.8?",
    "question_th": "จำนวนรวมของผู้เล่นที่แย่งชิงมากกว่า 87.5 และน้ำหนักตัวมากกว่า 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_en": "What is the bodyweight for the player with a clean & jerk of 82.5 and total smaller than 152.5?",
    "question_th": "น้ำหนักตัวของผู้เล่นที่มีค่า Clean & Jerk 82.5 และน้ำหนักรวมน้อยกว่า 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_en": "Name the home team when the away team was essendon",
    "question_th": "ตั้งชื่อทีมเจ้าบ้านเมื่อทีมเยือนเป็นเอสเซนดอน",
    "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_en": "Name the away team score for home team of university",
    "question_th": "ตั้งชื่อคะแนนทีมเยือนของทีมเหย้าของมหาวิทยาลัย",
    "context": "CREATE TABLE table_name_36 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_54 WHERE away_team = \"geelong\"",
    "question_en": "Name the venue for geelong away team",
    "question_th": "ตั้งชื่อสถานที่ของทีมเยือนจีลอง",
    "context": "CREATE TABLE table_name_54 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_6 WHERE away_team = \"richmond\"",
    "question_en": "Name the venue when the away team was richmond",
    "question_th": "ตั้งชื่อสถานที่เมื่อทีมเยือนคือริชมอนด์",
    "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_en": "Name the away team score for geelong away team",
    "question_th": "ตั้งชื่อคะแนนทีมเยือนสำหรับทีมเยือนจีลอง",
    "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_en": "When the venue was brunswick street oval what was the home teams score?",
    "question_th": "เมื่อสนามแข่งขันคือบรันสวิก สตรีท โอวัล ทีมเหย้าได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_32 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT SUM(draw) FROM table_name_18 WHERE artist = \"wendy fierce\"",
    "question_en": "How many draws feature artist wendy fierce?",
    "question_th": "มีศิลปินกี่คนที่วาดเวนดี้ดุ?",
    "context": "CREATE TABLE table_name_18 (draw INTEGER, artist VARCHAR)"
  },
  {
    "answer": "SELECT song FROM table_name_77 WHERE place > 2 AND draw = 1",
    "question_en": "What song is later than place 2 and has a draw number of 1?",
    "question_th": "เพลงอะไรช้ากว่าอันดับ 2 และเสมอกันที่ 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_en": "What day did Collingwood play as the home team?",
    "question_th": "คอลลิงวูดเล่นเป็นเจ้าบ้านวันไหน?",
    "context": "CREATE TABLE table_name_64 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_26 WHERE venue = \"princes park\"",
    "question_en": "Who was the away team at Princes Park?",
    "question_th": "ทีมเยือนที่ปริ้นเซส พาร์คคือใคร?",
    "context": "CREATE TABLE table_name_26 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_68 WHERE home_team = \"hawthorn\"",
    "question_en": "Who was Hawthorn's away opponent?",
    "question_th": "ใครคือคู่ต่อสู้เยือนของฮอว์ธอร์น?",
    "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–111\"",
    "question_en": "Name the record that has a stream of l1 and score of l 95–111",
    "question_th": "ตั้งชื่อบันทึกที่มีกระแส l1 และคะแนน l 95–111",
    "context": "CREATE TABLE table_name_45 (record VARCHAR, streak VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_71 WHERE visitor = \"washington wizards\"",
    "question_en": "Name the attendance for when the washington wizards was visiting",
    "question_th": "ตั้งชื่อผู้เข้าร่วมว่าพ่อมดวอชิงตันมาเยี่ยมเมื่อใด",
    "context": "CREATE TABLE table_name_71 (attendance VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT MIN(grid) FROM table_name_92 WHERE driver = \"juan pablo montoya\"",
    "question_en": "What is the smallest grid for driver of juan pablo montoya?",
    "question_th": "ตารางที่เล็กที่สุดสำหรับคนขับของ 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_en": "What driver has a ime/Retired of +1 lap, and a Constructor of bar - honda?",
    "question_th": "นักแข่งคนไหนมี IME/เกษียณ +1 รอบ และมีคอนสตรัคเตอร์ของบาร์ - ฮอนด้า?",
    "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_en": "What is the Chinese title with a premiere rating of 31?",
    "question_th": "ชื่อภาษาจีนที่มีเรตติ้งรอบปฐมทัศน์ 31 คืออะไร?",
    "context": "CREATE TABLE table_name_91 (chinese_title VARCHAR, premiere VARCHAR)"
  },
  {
    "answer": "SELECT SUM(premiere) FROM table_name_59 WHERE chinese_title = \"野蠻奶奶大戰戈師奶\" AND peak < 41",
    "question_en": "What is the premiere rating for a Chinese title of 野蠻奶奶大戰戈師奶, and a Peak smaller than 41?",
    "question_th": "เรตติ้งรอบปฐมทัศน์สำหรับชื่อภาษาจีนเรื่อง 野蠻奶奶大戰戈師奶 และจุดสูงสุดที่เล็กกว่า 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_en": "What is the premiere rating associated with an average of 35 ranked above 1?",
    "question_th": "เรตติ้งรอบปฐมทัศน์ที่เกี่ยวข้องกับค่าเฉลี่ย 35 อันดับที่สูงกว่า 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_en": "When was there a game at Arden Street Oval?",
    "question_th": "ที่ 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_en": "How big was the crowd when Richmond was the away team?",
    "question_th": "สมัยริชมอนด์เป็นทีมเยือนคนเยอะมากขนาดไหน?",
    "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_en": "Which away team plays at Arden Street Oval?",
    "question_th": "ทีมเยือนทีมไหนเล่นที่ 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_en": "How many fans were at Essendon?",
    "question_th": "เอสเซนดอนมีแฟนๆ กี่คน?",
    "context": "CREATE TABLE table_name_48 (crowd VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT athlete FROM table_name_53 WHERE date = \"11 july 2003\"",
    "question_en": "On 11 July 2003, which athlete performed?",
    "question_th": "วันที่ 11 กรกฎาคม พ.ศ. 2546 นักกีฬาคนใดทำการแสดง?",
    "context": "CREATE TABLE table_name_53 (athlete VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_27 WHERE home_team = \"luton town\"",
    "question_en": "What was the away team that played luton town?",
    "question_th": "ทีมเยือนเล่น ลูตัน ทาวน์ คือทีมอะไร?",
    "context": "CREATE TABLE table_name_27 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT d_45_√ FROM table_name_62 WHERE d_41_√ = \"r 20\"",
    "question_en": "Name the D 45 √ when it has D 41√ of r 20",
    "question_th": "ตั้งชื่อ D 45 √ เมื่อมันมี D 41√ ของ r 20",
    "context": "CREATE TABLE table_name_62 (d_45_√ VARCHAR, d_41_√ VARCHAR)"
  },
  {
    "answer": "SELECT d_41_√ FROM table_name_35 WHERE d_43_√ = \"r 18\"",
    "question_en": "Name the D 41 √ when it has D 43 √ of r 18",
    "question_th": "ตั้งชื่อ D 41 √ เมื่อมันมี D 43 √ ของ r 18",
    "context": "CREATE TABLE table_name_35 (d_41_√ VARCHAR, d_43_√ VARCHAR)"
  },
  {
    "answer": "SELECT d_49_√ FROM table_name_24 WHERE d_46_√ = \"i 1 @\"",
    "question_en": "Name the D 49 √ for when D 46 √ of i 1 @",
    "question_th": "ตั้งชื่อ D 49 √ สำหรับเมื่อ D 46 √ ของ i 1 @",
    "context": "CREATE TABLE table_name_24 (d_49_√ VARCHAR, d_46_√ VARCHAR)"
  },
  {
    "answer": "SELECT d_43_√ FROM table_name_89 WHERE d_46_√ = \"d 26\"",
    "question_en": "Name the D 43 √ when it has D 46 √ of d 26",
    "question_th": "ตั้งชื่อ D 43 √ เมื่อมี D 46 √ ของ d 26",
    "context": "CREATE TABLE table_name_89 (d_43_√ VARCHAR, d_46_√ VARCHAR)"
  },
  {
    "answer": "SELECT d_44_√ FROM table_name_93 WHERE d_41_√ = \"r 41 +\"",
    "question_en": "Name the D 44 √ for when it has D 41 √ of r 41 +",
    "question_th": "ตั้งชื่อ D 44 √ ว่าเมื่อมี D 41 √ ของ r 41 +",
    "context": "CREATE TABLE table_name_93 (d_44_√ VARCHAR, d_41_√ VARCHAR)"
  },
  {
    "answer": "SELECT d_42_√ FROM table_name_58 WHERE d_49_√ = \"r 12\"",
    "question_en": "Name the D 42 √ for when it has D 49 √ of r 12",
    "question_th": "ตั้งชื่อ D 42 √ ว่าเมื่อมี D 49 √ ของ r 12",
    "context": "CREATE TABLE table_name_58 (d_42_√ VARCHAR, d_49_√ VARCHAR)"
  },
  {
    "answer": "SELECT goals FROM table_name_5 WHERE score = \"26-28\"",
    "question_en": "What were the goals in the game with the 26-28 final score?",
    "question_th": "ในเกมที่สกอร์สุดท้าย 26-28 เสียประตูอะไรบ้าง?",
    "context": "CREATE TABLE table_name_5 (goals VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_60 WHERE date = \"19/3/00\"",
    "question_en": "What was the score of the game on 19/3/00?",
    "question_th": "คะแนนของเกมวันที่ 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_en": "Which competition was on 17/9/00?",
    "question_th": "การแข่งขันรายการไหนในวันที่ 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_en": "Which competition ended with a score of 58-4?",
    "question_th": "การแข่งขันรายการใดจบลงด้วยสกอร์ 58-4?",
    "context": "CREATE TABLE table_name_64 (competition VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_92 WHERE score = \"30-20\"",
    "question_en": "Where was the game that had a final score of 30-20?",
    "question_th": "เกมไหนที่มีสกอร์สุดท้าย 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_en": "When was the game at the boulevard that ended with an 8-8 score?",
    "question_th": "เกมที่บูเลอวาร์ดจบลงด้วยสกอร์ 8-8 คือเมื่อไหร่?",
    "context": "CREATE TABLE table_name_72 (date VARCHAR, venue VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT report FROM table_name_82 WHERE date = \"6 may\"",
    "question_en": "Name the report for 6 may",
    "question_th": "ตั้งชื่อรายงานประจำวันที่ 6 พ.ค",
    "context": "CREATE TABLE table_name_82 (report VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT report FROM table_name_51 WHERE winning_driver = \"louis wagner\"",
    "question_en": "Tell me the report with winner of louis wagner",
    "question_th": "บอกรายงานผู้ชนะของหลุยส์ วากเนอร์หน่อยสิ",
    "context": "CREATE TABLE table_name_51 (report VARCHAR, winning_driver VARCHAR)"
  },
  {
    "answer": "SELECT report FROM table_name_16 WHERE name = \"cuban race\"",
    "question_en": "Name the report with cuban race",
    "question_th": "ตั้งชื่อรายงานด้วยเชื้อชาติคิวบา",
    "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_en": "Name the circuit for darracq and name of cuban race",
    "question_th": "ตั้งชื่อวงจรสำหรับ darracq และชื่อเผ่าพันธุ์คิวบา",
    "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_en": "Name the winning driver for havana",
    "question_th": "ตั้งชื่อนักแข่งที่ชนะสำหรับฮาวานา",
    "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_en": "What is the home team's score when st kilda is away?",
    "question_th": "สกอร์ของเจ้าบ้านเมื่อเซนต์คิลดาเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_23 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT decision FROM table_name_62 WHERE visitor = \"montreal\"",
    "question_en": "No Decision listed above has a visitor of Montreal.",
    "question_th": "ไม่มีการตัดสินใจที่ระบุไว้ข้างต้นมีผู้มาเยือนมอนทรีออล",
    "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_en": "On December 4, Tampa Bay has a record of 12-13-2.",
    "question_th": "วันที่ 4 ธันวาคม แทมปา เบย์ มีสถิติ 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_en": "What are the remarks for the entry ranked greater than 2 with a skyteam (2012) alliance?",
    "question_th": "อะไรคือข้อสังเกตสำหรับรายการที่มีอันดับมากกว่า 2 ที่มีพันธมิตร skyteam (2012)?",
    "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_en": "How many airlines have the star alliance and are in brazil?",
    "question_th": "มีสายการบินกี่แห่งที่เป็น Star Alliance และอยู่ในบราซิล?",
    "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_en": "What was the percentage of Slovenes in 1951 in the village that had 10.1% in 1991?",
    "question_th": "เปอร์เซ็นต์ของชาวสโลวีเนียในปี 1951 ในหมู่บ้านที่มี 10.1% ในปี 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_en": "What was Rut's Slovenes percentage in 1991?",
    "question_th": "เปอร์เซ็นต์ของสโลวีเนียของ Rut ในปี 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_en": "What is the status of the Hamaoka-3 unit?",
    "question_th": "สถานะของหน่วย Hamaoka-3 เป็นอย่างไร?",
    "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_en": "What is the gross capacity of the unit that started commercial operation on August 28, 1987?",
    "question_th": "กำลังการผลิตรวมของยูนิตที่เริ่มเดินเครื่องเชิงพาณิชย์เมื่อวันที่ 28 สิงหาคม 2530 เป็นเท่าใด",
    "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_en": "When was commercial operation where construction started June 10, 1971?",
    "question_th": "เริ่มดำเนินการเชิงพาณิชย์เมื่อใด โดยเริ่มก่อสร้างเมื่อวันที่ 10 มิถุนายน พ.ศ. 2514",
    "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_en": "What is the gross capacity where the reactor is ABWR type?",
    "question_th": "กำลังการผลิตรวมโดยที่เครื่องปฏิกรณ์เป็นประเภท ABWR คือเท่าใด",
    "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_en": "When was the Hamaoka-4 unit commercial operation date?",
    "question_th": "ฮามาโอกะ-4 ยูนิตเปิดดำเนินการเชิงพาณิชย์เมื่อใด",
    "context": "CREATE TABLE table_name_42 (commercial_operation VARCHAR, unit VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_50 WHERE net_capacity = \"1212 mw\"",
    "question_en": "What is the status of the unit with a net capacity of 1212 MW?",
    "question_th": "สถานะของหน่วยที่มีกำลังการผลิตสุทธิ 1,212 เมกะวัตต์เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_50 (status VARCHAR, net_capacity VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_32 WHERE player = \"rodney purvis\"",
    "question_en": "Which school did player Rodney Purvis belong to?",
    "question_th": "ผู้เล่น Rodney Purvis อยู่โรงเรียนใด",
    "context": "CREATE TABLE table_name_32 (school VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT nba_draft FROM table_name_7 WHERE school = \"northeast high school\"",
    "question_en": "What was the NBA draft status for Northeast High School?",
    "question_th": "สถานะร่าง NBA สำหรับ 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_en": "Which players college was Baylor?",
    "question_th": "เบย์เลอร์เป็นวิทยาลัยผู้เล่นคนไหน",
    "context": "CREATE TABLE table_name_82 (player VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_64 WHERE player = \"alex poythress\"",
    "question_en": "What was the college for Alex Poythress?",
    "question_th": "วิทยาลัยของ Alex Poythress คืออะไร?",
    "context": "CREATE TABLE table_name_64 (college VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT height FROM table_name_78 WHERE player = \"alex poythress\"",
    "question_en": "What is Alex Poythress height?",
    "question_th": "Alex Poythress มีส่วนสูงเท่าไร?",
    "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_en": "What was Allison Fouch score in the year larger than 2000?",
    "question_th": "คะแนนของ Allison Fouch ในปีที่มากกว่าปี 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_en": "How many release dates have a Country of west germany, and a Release format of vinyl?",
    "question_th": "มีวันที่วางจำหน่ายกี่ประเทศในเยอรมนีตะวันตก และรูปแบบการวางจำหน่ายเป็นไวนิล",
    "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_en": "Which label is from Spain?",
    "question_th": "ป้ายไหนมาจากสเปน?",
    "context": "CREATE TABLE table_name_31 (label VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT save FROM table_name_76 WHERE loss = \"santiago (2–2)\"",
    "question_en": "What's the save when the loss was santiago (2–2)?",
    "question_th": "จะเซฟอะไรได้บ้างเมื่อแพ้ซานติอาโก (2–2)?",
    "context": "CREATE TABLE table_name_76 (save VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_84 WHERE position = \"2nd\"",
    "question_en": "Which season was 2nd position?",
    "question_th": "ฤดูกาลไหนได้อันดับ 2?",
    "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_en": "What's the value for played when the division is nbl div2 with 12th position?",
    "question_th": "การเล่นเมื่อดิวิชั่นเป็น nbl div2 อยู่ในอันดับที่ 12 มีมูลค่าเท่าไร?",
    "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_en": "What's the points when the division is ebl div1 with 22 played?",
    "question_th": "เมื่อดิวิชั่นเป็น ebl div1 เล่น 22 ได้แต้มอะไร?",
    "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_en": "What's the value for played when points is 8 and position is 11th?",
    "question_th": "มูลค่าสำหรับการเล่นเมื่อแต้มคือ 8 และอันดับที่ 11 คืออะไร?",
    "context": "CREATE TABLE table_name_2 (played VARCHAR, position VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_45 WHERE grid = 13",
    "question_en": "Who was driving with a Grid of 13?",
    "question_th": "ใครกันที่ขับรถด้วยกริด 13?",
    "context": "CREATE TABLE table_name_45 (driver VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT SUM(grid) FROM table_name_5 WHERE laps < 6",
    "question_en": "For Laps smaller than 6, what does the Grid add up to?",
    "question_th": "สำหรับรอบที่น้อยกว่า 6 เส้นกริดจะรวมกันเป็นเท่าใด",
    "context": "CREATE TABLE table_name_5 (grid INTEGER, laps INTEGER)"
  },
  {
    "answer": "SELECT report FROM table_name_5 WHERE circuit = \"hockenheimring\"",
    "question_en": "What is the report status of Hockenheimring circuit?",
    "question_th": "สถานะการรายงานของวงจร Hockenheimring คืออะไร?",
    "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_en": "Who was the winning driver of the race with Clay Regazzoni as the fastest lap and Jackie stewart as the pole position?",
    "question_th": "ใครคือนักแข่งที่ชนะการแข่งขัน โดยมี Clay Regazzoni เป็นรอบที่เร็วที่สุดและ Jackie Stewart อยู่ในตำแหน่งโพลโพซิชั่น?",
    "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_en": "Which race had Jacky Ickx as the winner and Clay Regazzoni with the fastest lap?",
    "question_th": "การแข่งขันใดที่ Jacky Ickx เป็นผู้ชนะและ Clay Regazzoni ทำรอบได้เร็วที่สุด?",
    "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_en": "How much time does it take for jean alesi and grids lesser than 5?",
    "question_th": "Jean Alesi และกริดที่น้อยกว่า 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_en": "What is the low grid for gerhard berger for laps over 56?",
    "question_th": "ตารางต่ำสำหรับ Gerhard berger สำหรับรอบที่มากกว่า 56 คืออะไร?",
    "context": "CREATE TABLE table_name_18 (grid INTEGER, driver VARCHAR, laps VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_42 WHERE grid = 13",
    "question_en": "If the grid is 13 who is driving?",
    "question_th": "ถ้ากริด13ใครขับ?",
    "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_en": "What is the purse total for the royal caribbean golf classic?",
    "question_th": "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_en": "Which title is 3:38 long?",
    "question_th": "ชื่ออะไรยาว 3:38 ครับ?",
    "context": "CREATE TABLE table_name_52 (title VARCHAR, length VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_37 WHERE length = \"3:43\"",
    "question_en": "Which title is 3:43 long?",
    "question_th": "ชื่ออะไรยาว 3:43 ครับ?",
    "context": "CREATE TABLE table_name_37 (title VARCHAR, length VARCHAR)"
  },
  {
    "answer": "SELECT dance FROM table_name_28 WHERE visual_arts = \"bryon kim\"",
    "question_en": "What Dance has the Visual Arts of Bryon Kim?",
    "question_th": "การเต้นรำแบบใดที่มีทัศนศิลป์ของ Bryon Kim?",
    "context": "CREATE TABLE table_name_28 (dance VARCHAR, visual_arts VARCHAR)"
  },
  {
    "answer": "SELECT dance FROM table_name_55 WHERE year = 2004",
    "question_en": "In 2004, what is the Dance?",
    "question_th": "ในปี 2547 การเต้นรำคืออะไร?",
    "context": "CREATE TABLE table_name_55 (dance VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT artist FROM table_name_52 WHERE draw = 1",
    "question_en": "What artist had 1 draw?",
    "question_th": "ศิลปินคนไหนมี 1 งวด?",
    "context": "CREATE TABLE table_name_52 (artist VARCHAR, draw VARCHAR)"
  },
  {
    "answer": "SELECT iata FROM table_name_28 WHERE city = \"jeddah\"",
    "question_en": "Name the IATA for jeddah",
    "question_th": "ตั้งชื่อ IATA สำหรับเจดดาห์",
    "context": "CREATE TABLE table_name_28 (iata VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT iata FROM table_name_80 WHERE city = \"jessore\"",
    "question_en": "Name the IATA for jessore",
    "question_th": "ตั้งชื่อ IATA สำหรับเจสโซเร",
    "context": "CREATE TABLE table_name_80 (iata VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_97 WHERE country = \"thailand\"",
    "question_en": "Name the city for thailand",
    "question_th": "ตั้งชื่อเมืองสำหรับประเทศไทย",
    "context": "CREATE TABLE table_name_97 (city VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT iata FROM table_name_20 WHERE icao = \"wmkk\"",
    "question_en": "Name the IATA of wmkk",
    "question_th": "ตั้งชื่อ IATA ของ wmkk",
    "context": "CREATE TABLE table_name_20 (iata VARCHAR, icao VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_88 WHERE away_team = \"carlton\"",
    "question_en": "When did the away team carlton play?",
    "question_th": "ทีมเยือน คาร์ลตัน ลงเล่นเมื่อไหร่?",
    "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_en": "Which constructor is from ITA with a rank less than 13?",
    "question_th": "ตัวสร้างตัวใดที่มาจาก ITA ที่มีอันดับน้อยกว่า 13",
    "context": "CREATE TABLE table_name_20 (constructor VARCHAR, country VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_25 WHERE week = 4",
    "question_en": "Who was the opponent in the Week 4 game?",
    "question_th": "คู่ต่อสู้ในเกมสัปดาห์ที่ 4 คือใคร?",
    "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_en": "Who are the co-drivers before 2010 with under 326 laps?",
    "question_th": "ใครคือนักแข่งร่วมก่อนปี 2010 ที่มีรอบต่ำกว่า 326 รอบ?",
    "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_en": "Who are the co-drivers the risi competizione gt2 class that went under 329 laps and recorded a DNF?",
    "question_th": "ใครคือนักแข่งร่วมในคลาส risi competizione gt2 ที่วิ่งต่ำกว่า 329 รอบและบันทึก 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_en": "Tell me the highest laps for time/retired of +2 laps and driver of felice bonetto",
    "question_th": "บอกจำนวนรอบสูงสุดสำหรับเวลา/เกษียณจาก +2 รอบและคนขับ 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_en": "I want to know the driver when grid is greater than 13 and laps is less than 60 with time/retired of accident",
    "question_th": "ฉันต้องการทราบคนขับเมื่อกริดมากกว่า 13 และรอบน้อยกว่า 60 โดยมีเวลา/หมดอายุการใช้งานจากอุบัติเหตุ",
    "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_en": "Name the album for years after 2007",
    "question_th": "ตั้งชื่ออัลบั้มเป็นเวลาหลายปีหลังจากปี 2007",
    "context": "CREATE TABLE table_name_45 (album VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT score FROM table_name_33 WHERE date = \"october 17, 2007\"",
    "question_en": "What was the score on october 17, 2007?",
    "question_th": "คะแนนเมื่อวันที่ 17 ตุลาคม 2550 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_33 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_71 WHERE score = \"3-0\"",
    "question_en": "What was the competition for score of 3-0",
    "question_th": "การแข่งขันชิงสกอร์ 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_en": "I want the date for nihat kahveci",
    "question_th": "ฉันอยากได้วันที่สำหรับนิหัต คาเวชี",
    "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_en": "What is the smallest pick with a Reg GP less than 0?",
    "question_th": "ตัวเลือกที่เล็กที่สุดที่มี Reg GP น้อยกว่า 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_en": "What is the total of pick numbers with a Reg GP larger than 0?",
    "question_th": "จำนวนรวมของการเลือกที่มี Reg GP มากกว่า 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_en": "What is the total points when there is a refusal fault and the rider is H.R.H. Prince Abdullah Al-Soud?",
    "question_th": "คะแนนรวมเมื่อมีการปฏิเสธความผิดและผู้ขับขี่คือ HRH 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_en": "What is the total points when the horse is Chippison?",
    "question_th": "เมื่อม้าเป็นชิปปิสันมีแต้มรวมเท่าไหร่?",
    "context": "CREATE TABLE table_name_96 (points VARCHAR, horse VARCHAR)"
  },
  {
    "answer": "SELECT total_time___s__ FROM table_name_53 WHERE horse = \"pinot grigio\"",
    "question_en": "What is the total time (s) for the horse Pinot Grigio?",
    "question_th": "เวลารวมของม้า 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_en": "What is the average amount of points when the time (s) is 81.78?",
    "question_th": "เมื่อเวลาคือ 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_en": "What is the position of the player from Glades Day School?",
    "question_th": "ตำแหน่งผู้เล่นจาก 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_en": "What is the position of the player who went to college of notre dame?",
    "question_th": "นักเตะที่ไปเรียน 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_en": "What is the school of the player who went to the college of michigan and originally comes from Wheaton, Illinois?",
    "question_th": "โรงเรียนของผู้เล่นที่ไปเรียนที่วิทยาลัยมิชิแกนและมาจากเมืองวีตัน รัฐอิลลินอยส์ โรงเรียนอะไร",
    "context": "CREATE TABLE table_name_2 (school VARCHAR, college VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT chassis FROM table_name_12 WHERE driver = \"otto stuppacher\"",
    "question_en": "What Chassis was driven by Otto Stuppacher?",
    "question_th": "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_en": "Who drove the car with the n175 chassis in round 13?",
    "question_th": "ใครขับรถด้วยแชสซี n175 ในรอบ 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_en": "What chassis did John Watson drive?",
    "question_th": "John Watson ขับแชสซีอะไร",
    "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__ = \"°28′01″\"",
    "question_en": "what is the right ascension (j2000) when the constellation is sextans and the declination (j2000) is °28′01″?",
    "question_th": "การขึ้นสู่สวรรค์ที่ถูกต้อง (j2000) คืออะไร เมื่อกลุ่มดาวเป็น sextans และการปฏิเสธ (j2000) คือ °28′01″",
    "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_en": "what is the constellation when the Right ascension ( J2000 ) is 10h18m58.4s?",
    "question_th": "กลุ่มดาวเมื่อการเสด็จขึ้นสู่สวรรค์ทางขวา (J2000) อยู่ที่ 10 ชั่วโมง 18 นาที 58.4 วินาที?",
    "context": "CREATE TABLE table_name_10 (constellation VARCHAR, right_ascension___j2000__ VARCHAR)"
  },
  {
    "answer": "SELECT MAX(ngc_number) FROM table_name_51 WHERE declination___j2000__ = \"°25′26″\"",
    "question_en": "what is the highest ngc number when the declination (j2000) is °25′26″?",
    "question_th": "หมายเลข ngc สูงสุดคือเท่าใดเมื่อค่าเดคลิเนชั่น (j2000) คือ °25′26″?",
    "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_en": "What is the score for Collingwood as the home team?",
    "question_th": "คอลลิงวูดในฐานะเจ้าบ้านได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_85 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team AS score FROM table_name_15 WHERE venue = \"princes park\"",
    "question_en": "What did the home team score at Princes Park?",
    "question_th": "เจ้าบ้านทำประตูที่ ปริ้นซ์ ปาร์ค ได้อย่างไร?",
    "context": "CREATE TABLE table_name_15 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT SUM(population) FROM table_name_68 WHERE simplified = \"上杭县\" AND area < 2 OFFSET 879",
    "question_en": "What's the sum of the population for the place simplified 上杭县 with an area smaller than 2,879?",
    "question_th": "ผลรวมของประชากรสำหรับสถานที่แบบย่อ 上杭县 โดยมีพื้นที่น้อยกว่า 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_en": "What's the total number of density for the place with a population over 393,390?",
    "question_th": "จำนวนความหนาแน่นรวมของสถานที่ที่มีประชากรมากกว่า 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_en": "What's the average area for the xinluo district?",
    "question_th": "พื้นที่เฉลี่ยของเขตซินหลัวคือเท่าไร?",
    "context": "CREATE TABLE table_name_20 (area INTEGER, english_name VARCHAR)"
  },
  {
    "answer": "SELECT AVG(attendance) FROM table_name_77 WHERE date = \"july 30\"",
    "question_en": "What was the attendance on July 30?",
    "question_th": "ผู้เข้าร่วมในวันที่ 30 กรกฎาคมมีอะไรบ้าง?",
    "context": "CREATE TABLE table_name_77 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT AVG(goals) FROM table_name_26 WHERE result = \"0 – 4\"",
    "question_en": "How many Goals have a Result of 0 – 4?",
    "question_th": "มีกี่ประตูที่มีผล 0 – 4?",
    "context": "CREATE TABLE table_name_26 (goals INTEGER, result VARCHAR)"
  },
  {
    "answer": "SELECT goals FROM table_name_33 WHERE result = \"12 – 0\"",
    "question_en": "How many goals have a Result of 12 – 0?",
    "question_th": "มีกี่ประตูที่มีผลการแข่งขัน 12 – 0?",
    "context": "CREATE TABLE table_name_33 (goals VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_77 WHERE date = \"9 october 2009\"",
    "question_en": "Which Result has a Date of 9 october 2009?",
    "question_th": "ผลลัพธ์ใดมีวันที่ 9 ตุลาคม 2552",
    "context": "CREATE TABLE table_name_77 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(goals) FROM table_name_45 WHERE date = \"7 february 2010\"",
    "question_en": "Which Goals have a Date of 7 february 2010?",
    "question_th": "เป้าหมายใดมีวันที่ 7 กุมภาพันธ์ 2553",
    "context": "CREATE TABLE table_name_45 (goals INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_name_89 WHERE chassis = \"jordan 193\"",
    "question_en": "What was the first year to have a Chassis of Jordan 193?",
    "question_th": "ปีแรกที่มีแชสซีของ Jordan 193 คือปีใด",
    "context": "CREATE TABLE table_name_89 (year INTEGER, chassis VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_28 WHERE mascot = \"raiders\"",
    "question_en": "Which School's Mascot is Raiders?",
    "question_th": "มาสคอตประจำโรงเรียนไหนคือ Raiders?",
    "context": "CREATE TABLE table_name_28 (school VARCHAR, mascot VARCHAR)"
  },
  {
    "answer": "SELECT mascot FROM table_name_51 WHERE school = \"north valleys\"",
    "question_en": "What is North Valleys School Mascot?",
    "question_th": "มาสคอตของโรงเรียน North Valleys คืออะไร?",
    "context": "CREATE TABLE table_name_51 (mascot VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT SUM(enrollment) FROM table_name_66 WHERE mascot = \"cougars\"",
    "question_en": "What is the Enrollment where Cougars is a Mascot?",
    "question_th": "การลงทะเบียนที่คูการ์เป็นมาสค็อตคืออะไร?",
    "context": "CREATE TABLE table_name_66 (enrollment INTEGER, mascot VARCHAR)"
  },
  {
    "answer": "SELECT league FROM table_name_87 WHERE school = \"reed\"",
    "question_en": "In what League is the Reed School?",
    "question_th": "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_en": "What Mascot has an Enrollment greater than 2,464?",
    "question_th": "มาสคอตตัวใดมีการลงทะเบียนมากกว่า 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_en": "Who was the runner-up in the tournament in which Omar Camporese held third place?",
    "question_th": "ใครคือรองชนะเลิศในทัวร์นาเมนต์ที่ Omar Camporese คว้าอันดับสาม?",
    "context": "CREATE TABLE table_name_60 (runner_up VARCHAR, third_place VARCHAR)"
  },
  {
    "answer": "SELECT runner_up FROM table_name_86 WHERE tournament = \"london\"",
    "question_en": "Who was the runner-up in the tournament in London?",
    "question_th": "ใครคือรองชนะเลิศในการแข่งขันที่ลอนดอน?",
    "context": "CREATE TABLE table_name_86 (runner_up VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_32 WHERE third_place = \"michael stich\"",
    "question_en": "What was the score in the tournament in which Michael Stich took third place?",
    "question_th": "คะแนนในการแข่งขันที่ Michael Stich ได้อันดับสามเป็นเท่าใด",
    "context": "CREATE TABLE table_name_32 (score VARCHAR, third_place VARCHAR)"
  },
  {
    "answer": "SELECT third_place FROM table_name_16 WHERE score = \"2–6, 7–6(3), [10–5]\"",
    "question_en": "Who holds third place in the tournament with a score of 2–6, 7–6(3), [10–5]?",
    "question_th": "ใครครองอันดับสามในทัวร์นาเมนต์ด้วยคะแนน 2–6, 7–6(3), [10–5]?",
    "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_en": "what is the least number of goals for when the goals against is 70 and the ties less than 0?",
    "question_th": "จำนวนประตูน้อยที่สุดสำหรับเมื่อประตูต่อคือ 70 และเสมอกันน้อยกว่า 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_en": "what is the average losses when the wins is 9 and ties more than 0?",
    "question_th": "การสูญเสียโดยเฉลี่ยเมื่อชนะคือ 9 และเสมอกันมากกว่า 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_en": "what is the lowest number of ties when the losses is 7 and games played is less than 10?",
    "question_th": "จำนวนความสัมพันธ์ที่ต่ำที่สุดเมื่อแพ้คือ 7 และเกมที่เล่นน้อยกว่า 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_en": "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?",
    "question_th": "ผลรวมของเกมที่เล่นเมื่อแพ้น้อยกว่า 7 ชนะ 6 และประตูมากกว่า 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_en": "what is the total number of games played when the goals for is less than 30?",
    "question_th": "จำนวนเกมทั้งหมดที่เล่นเมื่อประตูน้อยกว่า 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_en": "what is the sum of wins for the ottawa hockey club when the games played is less than 10?",
    "question_th": "ผลรวมของชัยชนะของสโมสรฮ็อกกี้ออตตาวาเมื่อเกมที่เล่นน้อยกว่า 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_en": "How many people attended the game on February 3, 2008?",
    "question_th": "มีผู้เข้าร่วมเกมกี่คนในวันที่ 3 กุมภาพันธ์ พ.ศ. 2551",
    "context": "CREATE TABLE table_name_34 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_17 WHERE away_team = \"collingwood\"",
    "question_en": "What is the name of the home team that played against Collingwood?",
    "question_th": "เจ้าบ้านที่เล่นกับคอลลิงวูดชื่ออะไร?",
    "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_en": "Which Away team played at the Windy Hill Venue?",
    "question_th": "ทีมเยือนทีมใดเล่นที่ 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_en": "How large of a crowd can the Glenferrie oval hold?",
    "question_th": "Glenferrie oval สามารถจุคนได้มากขนาดไหน?",
    "context": "CREATE TABLE table_name_9 (crowd VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(crowd) FROM table_name_48 WHERE venue = \"brunswick street oval\"",
    "question_en": "How large of a crowd can the Brunswick Street Oval hold?",
    "question_th": "Brunswick Street Oval สามารถจุคนได้มากขนาดไหน?",
    "context": "CREATE TABLE table_name_48 (crowd VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT MIN(league) FROM table_name_67 WHERE total > 8",
    "question_en": "What is the lowest number of goals scored by a player in the normal league games where more than 8 total goals were scored?",
    "question_th": "จำนวนประตูต่ำสุดที่ผู้เล่นทำได้ในเกมลีกปกติที่มีประตูรวมมากกว่า 8 ประตูคือเท่าใด?",
    "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_en": "What is the average number of goals scored in the FA Cup by Whelan where he had more than 7 total goals?",
    "question_th": "จำนวนประตูเฉลี่ยที่ทำได้ในเอฟเอคัพโดยวีแลนซึ่งเขาทำได้มากกว่า 7 ประตูคือเท่าใด?",
    "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_en": "What is the Uyghur Latin with a population of 69,361?",
    "question_th": "ภาษาละตินอุยกูร์ที่มีประชากร 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²_ = \"400\"",
    "question_en": "What is the Hanyu Pinyin with an area of 400?",
    "question_th": "Hanyu Pinyin มีพื้นที่ 400 คืออะไร?",
    "context": "CREATE TABLE table_name_94 (hanyu_pinyin VARCHAR, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT hanyu_pinyin FROM table_name_32 WHERE density___km²_ = \"39.63\"",
    "question_en": "What is the Hanyu Pinyin with a density of 39.63?",
    "question_th": "พินอินฮันยูที่มีความหนาแน่น 39.63 คืออะไร",
    "context": "CREATE TABLE table_name_32 (hanyu_pinyin VARCHAR, density___km²_ VARCHAR)"
  },
  {
    "answer": "SELECT SUM(attendance) FROM table_name_71 WHERE visitor = \"nuggets\" AND leading_scorer = \"j.r. smith (28)\"",
    "question_en": "How many people were in attendance when the visiting team was the Nuggets and the leading scorer was J.R. Smith (28)?",
    "question_th": "มีคนเข้าร่วมกี่คนเมื่อทีมเยือนคือนักเก็ต และผู้ทำประตูนำคือ เจอาร์ สมิธ (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_en": "Who was the leading scorer on 23 February 2008?",
    "question_th": "ใครคือผู้ทำประตูสูงสุดในวันที่ 23 กุมภาพันธ์ พ.ศ. 2551?",
    "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_en": "Name what was nominated in years before 2002 for most popular comedy performer at the national television awards",
    "question_th": "ตั้งชื่อผู้ที่ได้รับการเสนอชื่อเข้าชิงในช่วงหลายปีก่อนปี 2002 ให้เป็นนักแสดงตลกยอดนิยมจากงานประกาศรางวัลโทรทัศน์แห่งชาติ",
    "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_en": "Name the result for the bafta tv awards",
    "question_th": "ตั้งชื่อผลรางวัล 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_en": "Name the category for nominated at the british comedy awards",
    "question_th": "ตั้งชื่อหมวดหมู่ที่ได้รับการเสนอชื่อเข้าชิงรางวัล 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_en": "Name the year that Birds of a feather category for most popular actress was nominated",
    "question_th": "ตั้งชื่อปีที่หมวด Birds of a feather สำหรับนักแสดงหญิงยอดนิยมที่ได้รับการเสนอชื่อเข้าชิง",
    "context": "CREATE TABLE table_name_57 (year INTEGER, category VARCHAR, nominated_for VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_40 WHERE constructor = \"ferrari\"",
    "question_en": "What dates did Ferrari win races?",
    "question_th": "เฟอร์รารีชนะการแข่งขันวันไหน?",
    "context": "CREATE TABLE table_name_40 (date VARCHAR, constructor VARCHAR)"
  },
  {
    "answer": "SELECT original_air_date FROM table_name_55 WHERE production_code = \"2395120\"",
    "question_en": "What was the original air date of the episode with production code 2395120?",
    "question_th": "วันที่ออกอากาศดั้งเดิมของตอนที่มีรหัสการผลิต 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_en": "How many points for the ferrari v12 engine and ferrari 1512 chassis, after 1965?",
    "question_th": "เครื่องยนต์ ferrari v12 และแชสซีของ ferrari 1512 หลังปี 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_en": "What was the date when the crowd was larger than 30,495?",
    "question_th": "ฝูงชนมีจำนวนมากกว่า 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_en": "What was the home team when Carlton was the away team?",
    "question_th": "เจ้าบ้านเมื่อคาร์ลตันเป็นทีมเยือนเป็นทีมอะไร?",
    "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_en": "What was the score for the away team when they played at lake oval?",
    "question_th": "เมื่อเล่นที่เลคโอวัลทีมเยือนได้สกอร์เท่าไหร่?",
    "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_en": "What was the score of the away team when hawthorn was the home team?",
    "question_th": "เมื่อฮอว์ธอร์นเป็นเจ้าบ้านสกอร์เท่าไหร่?",
    "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_en": "How many golds for nations ranked below 4, over 5 medals, and under 6 silvers?",
    "question_th": "มีกี่เหรียญทองสำหรับประเทศที่มีอันดับต่ำกว่า 4, มากกว่า 5 เหรียญ และต่ำกว่า 6 เหรียญเงิน",
    "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_en": "Which rank had the Labour party winning in 2003, a swing to gain that was larger than 2.13, a lab hold as a result, and which took place in the Linlithgow constituency?",
    "question_th": "อันดับใดที่พรรคแรงงานชนะในปี 2546 การแกว่งเพื่อให้ได้มาซึ่งมากกว่า 2.13 ผลก็คือ ห้องปฏิบัติการถูกระงับ และสิ่งใดเกิดขึ้นในเขตเลือกตั้งลินลิธโกว์",
    "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_en": "Which party won in 2003, that had a swing to gain of less than 2.92 and which resulted in a ld hold?",
    "question_th": "ฝ่ายใดชนะในปี 2546 ซึ่งมีโอกาสแกว่งได้น้อยกว่า 2.92 และส่งผลให้ต้องระงับไว้?",
    "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_en": "Which constituency had the conservative party win in 2003?",
    "question_th": "เขตเลือกตั้งใดที่พรรคอนุรักษ์นิยมชนะในปี 2546",
    "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_en": "What is the final score when the visiting team is the Washington Redskins and the date is September 4?",
    "question_th": "สกอร์สุดท้ายเมื่อทีมเยือนคือ วอชิงตัน เรดสกินส์ และวันที่ 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_en": "What is the stadium when the date of the game is December 14?",
    "question_th": "สนามไหนคือวันที่แข่งขันคือวันที่ 14 ธันวาคม?",
    "context": "CREATE TABLE table_name_12 (stadium VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT stadium FROM table_name_6 WHERE visiting_team = \"denver broncos\"",
    "question_en": "What is the name of the stadium when the visiting team is the Denver Broncos?",
    "question_th": "สนามชื่ออะไรเมื่อทีมเยือนคือเดนเวอร์ บรองโกส์?",
    "context": "CREATE TABLE table_name_6 (stadium VARCHAR, visiting_team VARCHAR)"
  },
  {
    "answer": "SELECT MIN(crowd) FROM table_name_74 WHERE away_team = \"melbourne\"",
    "question_en": "What was the smallest crowd when Melbourne was the away team?",
    "question_th": "เมลเบิร์นเป็นทีมเยือนมีผู้ชมน้อยที่สุดคือทีมใด?",
    "context": "CREATE TABLE table_name_74 (crowd INTEGER, away_team VARCHAR)"
  },
  {
    "answer": "SELECT away FROM table_name_5 WHERE club = \"neath\"",
    "question_en": "What is the Away when the Club is Neath?",
    "question_th": "ทีมเยือนจะเป็นอย่างไรเมื่อคลับคือนีธ?",
    "context": "CREATE TABLE table_name_5 (away VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_64 WHERE area_in_m² = \"7,914\"",
    "question_en": "What country has area of 7,914 m²?",
    "question_th": "ประเทศใดมีพื้นที่ 7,914 ตารางเมตร?",
    "context": "CREATE TABLE table_name_64 (country VARCHAR, area_in_m² VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_23 WHERE completion = \"1910-1978\"",
    "question_en": "What city was completed in 1910-1978?",
    "question_th": "เมืองใดที่สร้างเสร็จในปี พ.ศ. 2453-2521",
    "context": "CREATE TABLE table_name_23 (city VARCHAR, completion VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_17 WHERE area_in_m² = \"3,170\"",
    "question_en": "What is the country with area of 3,170 in m²?",
    "question_th": "ประเทศใดที่มีพื้นที่ 3,170 ตารางเมตร?",
    "context": "CREATE TABLE table_name_17 (country VARCHAR, area_in_m² VARCHAR)"
  },
  {
    "answer": "SELECT time_retired FROM table_name_17 WHERE grid = 17",
    "question_en": "I want the time/retired for grid of 17",
    "question_th": "ฉันต้องการเวลา/เกษียณสำหรับตารางที่ 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_en": "Name the opponent when the field is mitchel athletic complex",
    "question_th": "ตั้งชื่อคู่ต่อสู้เมื่อสนามคือมิเชลแอทเลติกคอมเพล็กซ์",
    "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_en": "Name the date for when the home/away is away and the opponent is bayhawks",
    "question_th": "ตั้งชื่อวันที่เจ้าบ้าน/เยือนเป็นทีมเยือน และคู่ต่อสู้คือเบย์ฮอว์ก",
    "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_en": "Say the field with a result of w 12-11",
    "question_th": "พูดฟิลด์ด้วยผลลัพธ์ของ 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_en": "Name the opponent when the result is w 16-15 and has home/away of home",
    "question_th": "ตั้งชื่อคู่ต่อสู้เมื่อผลออกมาเป็น w 16-15 และมีเจ้าบ้าน/ทีมเยือน",
    "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_en": "Name the opponent when the resultwas w 12-11",
    "question_th": "ทายชื่อคู่ต่อสู้เมื่อผลออกมาเป็น 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_en": "Name the opponent which has a home/away of home and date of july 27",
    "question_th": "ตั้งชื่อคู่ต่อสู้ที่มีเจ้าบ้าน/เยือน และวันที่ 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_en": "I want to know the home team for mcg venue",
    "question_th": "อยากรู้จักทีมเหย้าของ mcg place",
    "context": "CREATE TABLE table_name_71 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT moving_to FROM table_name_34 WHERE name = \"konchesky\"",
    "question_en": "Where did Konchesky move to?",
    "question_th": "Konchesky ย้ายไปที่ไหน?",
    "context": "CREATE TABLE table_name_34 (moving_to VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT MIN(crowd) FROM table_name_94 WHERE home_team = \"essendon\"",
    "question_en": "Who is Essendon's home team?",
    "question_th": "ทีมเหย้าของเอสเซนดอนคือใคร?",
    "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_en": "What is the away team score for North Melbourne's home team?",
    "question_th": "สกอร์ทีมเยือนของเจ้าบ้าน นอร์ธ เมลเบิร์น เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_5 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team AS score FROM table_name_89 WHERE home_team = \"geelong\"",
    "question_en": "What is Geelong's home team score?",
    "question_th": "คะแนนทีมเหย้าของจีลองเป็นเท่าไหร่?",
    "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_en": "What is the home team score for St Kilda's home team?",
    "question_th": "สกอร์เจ้าบ้านของเจ้าบ้านเซนต์คิลดาเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_27 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_59 WHERE grid > 1 AND rank = 16",
    "question_en": "Who was #16 rank constructor with a grid of more than 1?",
    "question_th": "ใครคือตัวสร้างอันดับ #16 ที่มีตารางมากกว่า 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_en": "Who constructed Joe James car when his rank was more than 10?",
    "question_th": "ใครเป็นคนสร้างรถโจ เจมส์ ในสมัยที่ยศเกิน 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_en": "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?",
    "question_th": "อันดับของรถที่มีมากกว่า 182 รอบ, กริสน้อยกว่า 3, ด้วยเวลาเข้ารอบมากกว่า 134.14 และเวลา/เกษียณที่ +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_en": "How many laps did Chuck Stevenson have with a grid of less than 11?",
    "question_th": "Chuck Stevenson มีกี่รอบโดยตารางน้อยกว่า 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_en": "Which Week has an Opponent of san francisco 49ers?",
    "question_th": "สัปดาห์ใดที่มีฝ่ายตรงข้ามของซานฟรานซิสโก 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_en": "What is the snatch for the Clean & jerk of 145.0, and a Bodyweight larger than 76.22?",
    "question_th": "อะไรคือสิ่งที่แย่งชิง Clean & Jerk ที่ 145.0 และ Bodyweight ที่ใหญ่กว่า 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_en": "What is the Clean & jerk for the snatch less than 150 and a Bodyweight of 76.18?",
    "question_th": "Clean & Jerk สำหรับลูกฉกน้อยกว่า 150 และน้ำหนักตัว 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_en": "What is the least Bodyweight for the Clean & jerk of 145.0, and a Snatch smaller than 122.5?",
    "question_th": "น้ำหนักตัวน้อยที่สุดสำหรับ Clean & Jerk ที่ 145.0 และ Snatch ที่เล็กกว่า 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_ = \"–\"",
    "question_en": "What is the Clean & jerk for the bodyweight less than 76.55, and the Total (kg) of –?",
    "question_th": "Clean & Jerk สำหรับน้ำหนักตัวน้อยกว่า 76.55 คืออะไร และผลรวม (กก.) ของ – คืออะไร?",
    "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_en": "What was the latest year that resulted in won?",
    "question_th": "ล่าสุดปีไหนที่ชนะ?",
    "context": "CREATE TABLE table_name_17 (year INTEGER, result VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_35 WHERE pick = 50",
    "question_en": "Which position had a pick of 50?",
    "question_th": "ตำแหน่งใดมีการเลือก 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_en": "Which team had a 2008-3 2008 draft?",
    "question_th": "ทีมใดมีดราฟท์ฤดูกาล 2008-3 2008?",
    "context": "CREATE TABLE table_name_1 (school_club_team VARCHAR, draft VARCHAR)"
  },
  {
    "answer": "SELECT AVG(pick) FROM table_name_33 WHERE round > 2",
    "question_en": "What is the average pick after Round 2?",
    "question_th": "การเลือกเฉลี่ยหลังจากรอบที่ 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_en": "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?",
    "question_th": "วันที่ของเกมที่ผลแพ้ในการแข่งขันกลุ่มยุโรป/แอฟริกา I, Round Robin ที่เมืองมูร์เซีย (โดยเฉพาะ) หลังปี 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_en": "What is the result of the Europe/Africa Group I, play-off competition?",
    "question_th": "ผลการแข่งขันรอบเพลย์ออฟกลุ่มยุโรป/แอฟริกา I เป็นอย่างไร?",
    "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_en": "What is the result of the europe/africa group i, round robin game in Murcia (esp) before 1999?",
    "question_th": "ผลการแข่งขันยุโรป/แอฟริกา กลุ่ม ไอ รอบชิงชนะเลิศ ที่มูร์เซีย (อีเอสพี) ก่อนปี 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_en": "What position did the person from Clemson school fill?",
    "question_th": "บุคคลจากโรงเรียนเคลมสันกรอกตำแหน่งอะไร",
    "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_en": "What was Rudy Harris' pick number in round 4?",
    "question_th": "หมายเลขเลือกของ Rudy Harris ในรอบที่ 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_en": "What was the pick number for the kicker in round 8?",
    "question_th": "หมายเลขเลือกสำหรับนักเตะในรอบ 8 คืออะไร?",
    "context": "CREATE TABLE table_name_7 (pick VARCHAR, round VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_49 WHERE year = 2013",
    "question_en": "What is the result from 2013?",
    "question_th": "ผลประกอบการปี 2556 เป็นอย่างไร?",
    "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_en": "Who is the MVP finals that includes Detroit shock from the eastern championship and Sacramento monarchs from western championship?",
    "question_th": "ใครคือรอบชิงชนะเลิศ MVP ที่รวมถึงดีทรอยต์ช็อคจากแชมป์ตะวันออกและกษัตริย์ซาคราเมนโตจากแชมป์ตะวันตก?",
    "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_en": "What is the score from the Sacramento monarchs from the west and the Connecticut sun from the east?",
    "question_th": "คะแนนจากพระมหากษัตริย์แซคราเมนโตจากทิศตะวันตกและดวงอาทิตย์คอนเนตทิคัตจากทิศตะวันออกเป็นเท่าใด",
    "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_en": "Who is the nominee for Best Lead Actress?",
    "question_th": "ใครคือผู้ได้รับการเสนอชื่อเข้าชิงนักแสดงนำหญิงยอดเยี่ยม?",
    "context": "CREATE TABLE table_name_96 (nominee VARCHAR, category VARCHAR)"
  },
  {
    "answer": "SELECT category FROM table_name_81 WHERE nominee = \"carmen salinas\"",
    "question_en": "In what category is Carmen Salinas nominated?",
    "question_th": "Carmen Salinas ได้รับการเสนอชื่อเข้าชิงในประเภทใด",
    "context": "CREATE TABLE table_name_81 (category VARCHAR, nominee VARCHAR)"
  },
  {
    "answer": "SELECT SUM(year) FROM table_name_8 WHERE category = \"best supporting actress\"",
    "question_en": "What year was there a category of Best Supporting Actress?",
    "question_th": "นักแสดงสมทบหญิงยอดเยี่ยมจัดอยู่ในประเภทใดในปีใด",
    "context": "CREATE TABLE table_name_8 (year INTEGER, category VARCHAR)"
  },
  {
    "answer": "SELECT londonborough FROM table_name_15 WHERE dialcode = \"01992\"",
    "question_en": "What Londongborough has a Dialcode of 01992?",
    "question_th": "Londongborough ใดมีรหัสโทรศัพท์ 01992?",
    "context": "CREATE TABLE table_name_15 (londonborough VARCHAR, dialcode VARCHAR)"
  },
  {
    "answer": "SELECT dialcode FROM table_name_62 WHERE location = \"whitechapel\"",
    "question_en": "What is the Dialcode of whitechapel?",
    "question_th": "Dialcode ของ whitechapel คืออะไร?",
    "context": "CREATE TABLE table_name_62 (dialcode VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT postcodedistrict FROM table_name_76 WHERE location = \"eden park\"",
    "question_en": "What is the name of the Post code district that is in Eden Park?",
    "question_th": "รหัสไปรษณีย์ที่อยู่ในสวนเอเดนชื่ออะไร",
    "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_en": "Which Post Town has a Dialcode of 020 and is located in Hook?",
    "question_th": "Post Town ใดมีรหัสโทรศัพท์ 020 และตั้งอยู่ใน 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_en": "What Dialcode has a location of Edmonton?",
    "question_th": "Dialcode ใดมีที่ตั้งของเอดมันตัน?",
    "context": "CREATE TABLE table_name_11 (dialcode VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT AVG(rank) FROM table_name_82 WHERE earnings__$__ < 224 OFFSET 589",
    "question_en": "Which average rank has an Earning amount that is less than $224,589?",
    "question_th": "อันดับเฉลี่ยใดที่มีจำนวนเงินรายได้น้อยกว่า $224,589?",
    "context": "CREATE TABLE table_name_82 (rank INTEGER, earnings__$__ INTEGER)"
  },
  {
    "answer": "SELECT country FROM table_name_93 WHERE rank = 2",
    "question_en": "Which country has a rank of 2?",
    "question_th": "ประเทศใดมีอันดับ 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_en": "What is the total number on roll for Shelly Park school?",
    "question_th": "จำนวนรวมของโรงเรียน Shelly Park คือเท่าใด",
    "context": "CREATE TABLE table_name_7 (roll VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_96 WHERE record = \"0-5\"",
    "question_en": "What week was the record 0-5?",
    "question_th": "สัปดาห์ไหนเป็นสถิติ 0-5?",
    "context": "CREATE TABLE table_name_96 (week VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_31 WHERE attendance = \"45,320\"",
    "question_en": "What was the result of the game with the attendance of 45,320?",
    "question_th": "ผลการแข่งขันมีผู้ชม 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_en": "What time was the kickoff on September 15, 1985?",
    "question_th": "วันที่ 15 กันยายน พ.ศ. 2528 เปิดฉากกี่โมง?",
    "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_en": "Which Player had a Long of 5 and Yards of 6?",
    "question_th": "ผู้เล่นคนไหนมีระยะ 5 และ 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_en": "How many Yards did Player Rob Turner collect?",
    "question_th": "ผู้เล่น Rob Turner เก็บได้กี่หลา?",
    "context": "CREATE TABLE table_name_32 (yards VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_52 WHERE date = \"march 5\"",
    "question_en": "Who is the home team on March 5?",
    "question_th": "เจ้าบ้านวันที่ 5 มีนาคม คือใคร?",
    "context": "CREATE TABLE table_name_52 (home VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_62 WHERE date = \"march 24\"",
    "question_en": "Who is the visitor on March 24?",
    "question_th": "ใครคือผู้มาเยือนในวันที่ 24 มีนาคม?",
    "context": "CREATE TABLE table_name_62 (visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_57 WHERE date = \"march 24\"",
    "question_en": "Who was the home team on March 24?",
    "question_th": "ใครคือเจ้าบ้านในวันที่ 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_en": "what is the assisted when the solo is 6 and sack is less than 5?",
    "question_th": "ความช่วยเหลือคืออะไรเมื่อโซโลอายุ 6 และกระสอบน้อยกว่า 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_en": "How many losses had a played number that was more than 34?",
    "question_th": "มีการสูญเสียกี่ครั้งที่มีหมายเลขเล่นที่มากกว่า 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_en": "Which highest 'goals against' number had wins of 19 and a 'goals for' number that was bigger than 53?",
    "question_th": "หมายเลข 'ประตูต่อ' สูงสุดใดที่ชนะ 19 ประตู และหมายเลข 'ประตูต่อ' ที่มากกว่า 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_en": "Which mean number of losses had a played number that was bigger than 34?",
    "question_th": "จำนวนการสูญเสียเฉลี่ยใดที่มีจำนวนการเล่นที่มากกว่า 34",
    "context": "CREATE TABLE table_name_58 (losses INTEGER, played INTEGER)"
  },
  {
    "answer": "SELECT MIN(goals_for) FROM table_name_95 WHERE played < 34",
    "question_en": "Which lowest goals for number had a played number of less than 34?",
    "question_th": "ประตูต่ำสุดสำหรับหมายเลขใดมีจำนวนการเล่นน้อยกว่า 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_en": "Which Played number had a goal difference of more than 0 when the club was Valencia CF?",
    "question_th": "หมายเลขที่เล่นหมายเลขใดมีผลเสียประตูเสียมากกว่า 0 เมื่อสโมสรเป็น บาเลนเซีย ซีเอฟ?",
    "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_en": "What player has a college named san sebastian?",
    "question_th": "ผู้เล่นคนไหนมีวิทยาลัยชื่อซาน เซบาสเตียน",
    "context": "CREATE TABLE table_name_97 (player VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_33 WHERE pick = 45",
    "question_en": "What college has pick 45",
    "question_th": "มหาลัยไหนเลือก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_en": "Name the air date for the seasons before 14 and series less than 183 with production code more than 709",
    "question_th": "ตั้งชื่อวันออกอากาศก่อน 14 และซีรีส์น้อยกว่า 183 โดยมีรหัสการผลิตมากกว่า 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_en": "Tell me the title for the production code less than 706 with series number more than 175",
    "question_th": "บอกชื่อรหัสการผลิตที่น้อยกว่า 706 ที่มีหมายเลขซีรีส์มากกว่า 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_en": "Name the least series number with production code of 717 and season number less than 17",
    "question_th": "ตั้งชื่อหมายเลขซีรีส์ที่น้อยที่สุดด้วยรหัสการผลิต 717 และหมายเลขซีซันน้อยกว่า 17",
    "context": "CREATE TABLE table_name_41 (series__number INTEGER, production_code VARCHAR, season__number VARCHAR)"
  },
  {
    "answer": "SELECT can_yayınları FROM table_name_39 WHERE güzelçamlı’nin_kayıp_panteri = \"çevreci peri\"",
    "question_en": "Which Can Yayınları has a Güzelçamlı’nin Kayıp Panteri of çevreci peri?",
    "question_th": "YayınlarıตัวไหนมีGüzelçamlı'nin Kayıp Panteri ของ çevreci peri?",
    "context": "CREATE TABLE table_name_39 (can_yayınları VARCHAR, güzelçamlı’nin_kayıp_panteri VARCHAR)"
  },
  {
    "answer": "SELECT 2005 FROM table_name_76 WHERE güzelçamlı’s_lost_panther = \"green fairy\"",
    "question_en": "Which 2005 has a Güzelçamlı’s Lost Panther of green fairy?",
    "question_th": "ปี 2005 ใดมี Lost Panther แห่งนางฟ้าสีเขียวของ Güzelçamlı",
    "context": "CREATE TABLE table_name_76 (güzelçamlı’s_lost_panther VARCHAR)"
  },
  {
    "answer": "SELECT MAX(2005) FROM table_name_38 WHERE güzelçamlı’s_lost_panther = \"the muse\"",
    "question_en": "Which 2005 has a Güzelçamlı’s Lost Panther of the muse?",
    "question_th": "ปี 2005 ใดที่มีเพลง Lost Panther ของ Güzelçamlı",
    "context": "CREATE TABLE table_name_38 (güzelçamlı’s_lost_panther VARCHAR)"
  },
  {
    "answer": "SELECT grid FROM table_name_11 WHERE driver = \"pierre levegh\"",
    "question_en": "what is the grid when the driver is pierre levegh?",
    "question_th": "เส้นกริดเมื่อคนขับคือปิแอร์เลฟคืออะไร?",
    "context": "CREATE TABLE table_name_11 (grid VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT grid FROM table_name_21 WHERE laps = 2",
    "question_en": "what is the grid when the laps is 2?",
    "question_th": "ตารางเมื่อรอบเป็น 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_en": "what is the time/retired when the driver is toulo de graffenried?",
    "question_th": "เวลาใด / เกษียณอายุเมื่อคนขับ 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_en": "what is the time/retired when the grid is less than 13, the constructor is alfa romeo and the laps is more than 12?",
    "question_th": "เวลา/เลิกใช้เมื่อกริดน้อยกว่า 13 ตัวสร้างคืออัลฟ่าโรมิโอและรอบมากกว่า 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_en": "what is the grid when the laps is more than 20?",
    "question_th": "ตารางคืออะไรเมื่อรอบมากกว่า 20?",
    "context": "CREATE TABLE table_name_94 (grid INTEGER, laps INTEGER)"
  },
  {
    "answer": "SELECT d_49_√ FROM table_name_37 WHERE d_47_√ = \"d 67 +\"",
    "question_en": "What is the D 49 √ when  D 47 √ is d 67 +?",
    "question_th": "D 49 √ คืออะไร เมื่อ D 47 √ คือ d 67 +?",
    "context": "CREATE TABLE table_name_37 (d_49_√ VARCHAR, d_47_√ VARCHAR)"
  },
  {
    "answer": "SELECT d_44_√ FROM table_name_19 WHERE d_47_√ = \"r 7\"",
    "question_en": "What is the number for  D 44 √ when D 47 √ is r 7?",
    "question_th": "ตัวเลขของ D 44 √ เมื่อ D 47 √ คือ r 7 คืออะไร?",
    "context": "CREATE TABLE table_name_19 (d_44_√ VARCHAR, d_47_√ VARCHAR)"
  },
  {
    "answer": "SELECT d_42_√ FROM table_name_6 WHERE d_45_√ = \"r 16\"",
    "question_en": "What is the D 42 √ number when the D 45 √ is r 16?",
    "question_th": "เลข D 42 √ เมื่อ D 45 √ คือ r 16 คืออะไร?",
    "context": "CREATE TABLE table_name_6 (d_42_√ VARCHAR, d_45_√ VARCHAR)"
  },
  {
    "answer": "SELECT d_49_√ FROM table_name_19 WHERE d_41_√ = \"d 61 √\"",
    "question_en": "What is the D 49 √ number when the D 41 √ is d 61 √?",
    "question_th": "หมายเลข D 49 √ คืออะไร เมื่อ D 41 √ คือ d 61 √",
    "context": "CREATE TABLE table_name_19 (d_49_√ VARCHAR, d_41_√ VARCHAR)"
  },
  {
    "answer": "SELECT d_42_√ FROM table_name_77 WHERE d_46_√ = \"r 6\"",
    "question_en": "What is the D 42 √ figure when D 46 √ is r 6?",
    "question_th": "ค่า D 42 √ เมื่อ D 46 √ คือ r 6 คืออะไร?",
    "context": "CREATE TABLE table_name_77 (d_42_√ VARCHAR, d_46_√ VARCHAR)"
  },
  {
    "answer": "SELECT d_50_√ FROM table_name_93 WHERE d_47_√ = \"r 27 √\"",
    "question_en": "What is the D 50 √ when the D 47 √ is r 27 √?",
    "question_th": "D 50 √ คืออะไร เมื่อ D 47 √ เป็น r 27 √?",
    "context": "CREATE TABLE table_name_93 (d_50_√ VARCHAR, d_47_√ VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_94 WHERE competition = \"ballarat football league\"",
    "question_en": "Tell me the player for ballarat football league",
    "question_th": "บอกชื่อนักเตะบอลลารัตลีกหน่อยครับ",
    "context": "CREATE TABLE table_name_94 (player VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_88 WHERE team = \"east perth\"",
    "question_en": "Tell me the player for east perth",
    "question_th": "บอกผู้เล่นที่เพิร์ธตะวันออกหน่อยสิ",
    "context": "CREATE TABLE table_name_88 (player VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_67 WHERE team = \"waaia\"",
    "question_en": "Tell met he score for team of waaia",
    "question_th": "บอกมาว่าเขาทำคะแนนให้ทีมวาเอีย",
    "context": "CREATE TABLE table_name_67 (score VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_48 WHERE competition = \"victorian football league\"",
    "question_en": "Tell me the team for victorian football league",
    "question_th": "บอกทีมวิคตอเรียฟุตบอลลีกหน่อยค่ะ",
    "context": "CREATE TABLE table_name_48 (team VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT debut FROM table_name_58 WHERE name = \"scott tunbridge\"",
    "question_en": "What round was the debut of Scott Tunbridge?",
    "question_th": "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_en": "What round was the debut of defender Stephen Laybutt?",
    "question_th": "กองหลัง สตีเฟ่น เลย์บัตต์ ประเดิมสนามในรอบไหน?",
    "context": "CREATE TABLE table_name_11 (debut VARCHAR, position VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_66 WHERE debut = \"round 6\"",
    "question_en": "What position had a debut in round 6?",
    "question_th": "ตำแหน่งใดที่เปิดตัวในรอบที่ 6?",
    "context": "CREATE TABLE table_name_66 (position VARCHAR, debut VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_96 WHERE debut = \"round 6\"",
    "question_en": "What is the name of the player that had a debut in round 6?",
    "question_th": "นักเตะที่เปิดตัวรอบ 6 ชื่ออะไรครับ?",
    "context": "CREATE TABLE table_name_96 (name VARCHAR, debut VARCHAR)"
  },
  {
    "answer": "SELECT date_joined FROM table_name_27 WHERE from__club_ = \"santo andré\"",
    "question_en": "What date did the player from Santo André debut?",
    "question_th": "นักเตะจากซานโต อังเดร เปิดตัวเมื่อใด?",
    "context": "CREATE TABLE table_name_27 (date_joined VARCHAR, from__club_ VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_64 WHERE score = \"20½–11½\"",
    "question_en": "what is the venue when the score is 20½–11½?",
    "question_th": "สนามไหนที่มีคะแนน 20½–11½?",
    "context": "CREATE TABLE table_name_64 (venue VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT winning_team FROM table_name_31 WHERE year > 2003 AND score = \"19½–14½\" AND venue = \"harding park golf club\"",
    "question_en": "Who is the winning team when the year is more than 2003, the score is 19½–14½ and the venue is harding park golf club?",
    "question_th": "ทีมใดเป็นผู้ชนะเมื่อปีมากกว่าปี 2546 คะแนนคือ 19½–14½ และสถานที่จัดงานคือ ฮาร์ดิงพาร์คกอล์ฟคลับ?",
    "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_en": "what is the highest year that the U.S. captain is ken venturi?",
    "question_th": "ปีสูงสุดที่กัปตันสหรัฐฯ คือ เคน เวนทูรี คือปีใด",
    "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_en": "what is the location when the year is less than 1998 and the international captain is david graham?",
    "question_th": "สถานที่ใดเมื่อปีน้อยกว่าปี 1998 และกัปตันทีมชาติคือ เดวิด เกรแฮม?",
    "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_en": "How much did jim colbert earned ranked above 2?",
    "question_th": "Jim Colbert ทำเงินได้เท่าไหร่ในอันดับที่สูงกว่า 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_en": "What day did the VFL play at Junction Oval?",
    "question_th": "VFL เล่นที่ Junction Oval วันไหน?",
    "context": "CREATE TABLE table_name_74 (date VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_41 WHERE home_team = \"footscray\"",
    "question_en": "Where did Footscray play as the home team?",
    "question_th": "ฟุตสเครย์เล่นเป็นเจ้าบ้านที่ไหน?",
    "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_en": "Who was the opponent when Footscray played as the home team?",
    "question_th": "คู่ต่อสู้เมื่อฟุตสเครย์เล่นเป็นเจ้าบ้านคือใคร?",
    "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_en": "What was the attendance when the VFL played Arden Street Oval?",
    "question_th": "การเข้าร่วมงานเมื่อ VFL แข่งขันกับ 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_en": "What was the score June 22?",
    "question_th": "คะแนนวันที่ 22 มิถุนายน เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_82 (loss VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_68 WHERE hometown = \"winter park, fl\"",
    "question_en": "Which school has a hometown of winter park, FL?",
    "question_th": "โรงเรียนใดมีบ้านเกิดของ 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_en": "What's the college of the player with a height of 6-4 and went to lake howell high school?",
    "question_th": "นักเตะส่วนสูง 6-4 อยู่มหาลัยไหนแล้วไปเรียนที่ 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_en": "What's the hometown of the player with a college of lsu?",
    "question_th": "บ้านเกิดของผู้เล่นที่เรียนมหาวิทยาลัยมสธ. คืออะไร?",
    "context": "CREATE TABLE table_name_51 (hometown VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT height FROM table_name_72 WHERE school = \"lake howell high school\"",
    "question_en": "What's the heigh of the player who went to lake howell high school?",
    "question_th": "ผู้เล่นที่ไปเรียนที่ 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_en": "What's the heigh of nolan smith?",
    "question_th": "โนแลน สมิธสูงเท่าไหร่คะ?",
    "context": "CREATE TABLE table_name_83 (height VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT height FROM table_name_64 WHERE school = \"oak hill academy\"",
    "question_en": "What's the height of the player who went to oak hill academy?",
    "question_th": "ผู้เล่นที่เข้าเรียนที่ 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_en": "What tyre did Paul Russo have on his fastest lap?",
    "question_th": "Paul Russo ใช้ยางอะไรในรอบที่เร็วที่สุดของเขา?",
    "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_en": "What is the date that Stirling Moss had his fastest lap in a Maserati?",
    "question_th": "วันที่ใดที่ Stirling Moss มีรอบที่เร็วที่สุดใน 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_en": "Who was the winning driver on 30 May?",
    "question_th": "ใครคือนักแข่งที่ชนะในวันที่ 30 พฤษภาคม?",
    "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_en": "What was the fastest lap in the Belgian Grand Prix?",
    "question_th": "อะไรคือรอบที่เร็วที่สุดใน 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_en": "Who was the home team when the away team was Hawthorn?",
    "question_th": "เจ้าบ้านใครคือทีมเยือนเมื่อฮอว์ธอร์น?",
    "context": "CREATE TABLE table_name_15 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_24 WHERE venue = \"windy hill\"",
    "question_en": "On what date did the game at Windy Hill take place?",
    "question_th": "เกมที่ Windy Hill จัดขึ้นวันไหน?",
    "context": "CREATE TABLE table_name_24 (date VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_69 WHERE away_team = \"hawthorn\"",
    "question_en": "What was the venue when the away team was Hawthorn?",
    "question_th": "ฮอว์ธอร์นนัดทีมเยือนสนามไหน?",
    "context": "CREATE TABLE table_name_69 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_36 WHERE venue = \"windy hill\"",
    "question_en": "What was the home team when the game was at Windy Hill?",
    "question_th": "เจ้าบ้านเป็นทีมไหนเมื่อเกมที่วินดี้ ฮิลล์?",
    "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_en": "What position has less than 343 laps in 2010?",
    "question_th": "ตำแหน่งใดมีน้อยกว่า 343 รอบในปี 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_en": "What are panoz motor sports' lowest number of laps before 2002?",
    "question_th": "จำนวนรอบต่ำสุดของ panoz motor sports ก่อนปี 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_en": "What's the sum of the games that had paul (9) for high assists?",
    "question_th": "ผลรวมของเกมที่มีพอล (9) แอสซิสต์สูงเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_61 (game INTEGER, high_assists VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_65 WHERE high_points = \"west (20)\"",
    "question_en": "What team had a high points of west (20)?",
    "question_th": "ทีมใดมีคะแนนสูงจากทิศตะวันตก (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_en": "What week was the game played at Robert f. Kennedy memorial stadium with more than 54,633 people in attendance?",
    "question_th": "เกมที่เล่นในสัปดาห์ใดที่ Robert f. สนามกีฬาอนุสรณ์เคนเนดีที่มีผู้ชมมากกว่า 54,633 คน?",
    "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_en": "What is the time/retired associated with a grid of 5 and under 73 laps?",
    "question_th": "เวลา/เกษียณที่เกี่ยวข้องกับตาราง 5 และต่ำกว่า 73 รอบคือเท่าไร?",
    "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_en": "What was the free score of the skater with a total of 156.67?",
    "question_th": "คะแนนฟรีของนักเล่นสเก็ตรวม 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_en": "What was the average figure score of the skater with a free score under 56.35?",
    "question_th": "คะแนนเฉลี่ยของนักเล่นสเก็ตที่มีคะแนนฟรีต่ำกว่า 56.35 คือเท่าใด",
    "context": "CREATE TABLE table_name_19 (figures INTEGER, free INTEGER)"
  },
  {
    "answer": "SELECT opponent FROM table_name_85 WHERE round = \"1\"",
    "question_en": "Which opponent had round 1?",
    "question_th": "คู่ต่อสู้คนไหนมีรอบที่ 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_en": "Which date's opponent was Dender when the tournament was in the Jupiler League and the ground was a?",
    "question_th": "คู่ต่อสู้ของวันไหนคือเดนเดอร์เมื่อทัวร์นาเมนต์อยู่ในจูปิแลร์ลีกและสนามคือก?",
    "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_en": "Which ground's round was 33?",
    "question_th": "รอบสนามไหนคือ 33?",
    "context": "CREATE TABLE table_name_17 (ground VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_68 WHERE final_position___round = \"2\"",
    "question_en": "Which competition had a final position/round of 2?",
    "question_th": "การแข่งขันใดมีตำแหน่งสุดท้าย/รอบ 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_en": "Which first match had a final position/round in the third qualifying round?",
    "question_th": "นัดแรกใดมีตำแหน่งสุดท้าย/รอบในรอบคัดเลือกรอบสาม?",
    "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_en": "What is the lowest number of bronze medals for nations with over 6 total and 2 golds?",
    "question_th": "จำนวนเหรียญทองแดงต่ำสุดสำหรับประเทศที่มีมากกว่า 6 เหรียญและ 2 เหรียญทองคือเท่าใด",
    "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_en": "What is the total number of silver medals for karate athletes with over 2 golds?",
    "question_th": "รวมเหรียญเงินนักกีฬาคาราเต้เกิน 2 เหรียญทองได้เท่าไร",
    "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_en": "What is the 2009 value with a 1r in 2010 and A in 2011?",
    "question_th": "ค่าปี 2009 โดยมี 1r ในปี 2010 และ A ในปี 2011 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_20 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2009 FROM table_name_79 WHERE 2010 = \"a\"",
    "question_en": "What is the 2009 value with a 2010 A value?",
    "question_th": "ค่าปี 2009 กับค่า A ปี 2010 คืออะไร?",
    "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_en": "What is the 2010 value with A in 2008, A in 2011, and 2r in 2012?",
    "question_th": "ค่าปี 2010 โดยมี A ในปี 2551, A ในปี 2554 และ 2r ในปี 2555 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_50 (Id VARCHAR)"
  },
  {
    "answer": "SELECT AVG(attendance) FROM table_name_86 WHERE date = \"april 24\"",
    "question_en": "What is the average attendance on april 24?",
    "question_th": "ผู้เข้าร่วมโดยเฉลี่ยในวันที่ 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_en": "What was the score of the away team when Richmond played?",
    "question_th": "ทีมเยือนเมื่อริชมอนด์เล่นได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_85 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_47 WHERE laps = 16 AND grid = 9",
    "question_en": "What company was Constructor when there were 16 laps and grid was 9?",
    "question_th": "บริษัทใดที่เป็นตัวสร้างเมื่อมี 16 รอบและกริดเป็น 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_en": "What is the Time/Retired when lotus - ford was constructor and the laps were less than 17?",
    "question_th": "เวลา/เกษียณคืออะไร เมื่อโลตัส - ฟอร์ดเป็นผู้สร้างและมีรอบน้อยกว่า 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_en": "What is the number of the grid when there was a Time/Retired of engine and less than 9 laps?",
    "question_th": "หมายเลขกริดเมื่อมีเวลา/หมดอายุการใช้งานของเครื่องยนต์และน้อยกว่า 9 รอบเป็นเท่าใด",
    "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_en": "what was the attendance for a home venue and a w 3-0 result?",
    "question_th": "การแข่งขันในบ้านเป็นอย่างไรบ้าง และผลการแข่งขัน 3-0 คืออะไร?",
    "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_en": "what was the attendance at the home venue with result w 3-1?",
    "question_th": "การเข้าร่วมในบ้านเป็นอย่างไรบ้างและผลการแข่งขันด้วยสกอร์ 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_en": "where did rochdale play as opponent?",
    "question_th": "โรชเดลเล่นเป็นคู่ต่อสู้ที่ไหน?",
    "context": "CREATE TABLE table_name_77 (venue VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_14 WHERE stadium = \"adelaide oval\"",
    "question_en": "Which team was hosted at Adelaide Oval?",
    "question_th": "ทีมใดเป็นเจ้าภาพที่ 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_en": "When was a report not held?",
    "question_th": "เมื่อไหร่จะไม่รายงาน?",
    "context": "CREATE TABLE table_name_29 (year VARCHAR, report VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_77 WHERE home = \"vancouver\"",
    "question_en": "Who was the visitor when vancouver was at home?",
    "question_th": "ใครคือผู้มาเยือนเมื่อแวนคูเวอร์อยู่ที่บ้าน?",
    "context": "CREATE TABLE table_name_77 (visitor VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT decision FROM table_name_96 WHERE visitor = \"new jersey\"",
    "question_en": "What is the decision when new jersey was away?",
    "question_th": "การตัดสินใจเมื่อนิวเจอร์ซีย์ออกไปคืออะไร?",
    "context": "CREATE TABLE table_name_96 (decision VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT scale FROM table_name_90 WHERE name = \"ura index\"",
    "question_en": "What is URA Index scale?",
    "question_th": "ระดับดัชนี URA คืออะไร?",
    "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_en": "What is the scale of sv_health with a word number smaller than 4?",
    "question_th": "sv_health ที่มีหมายเลขคำน้อยกว่า 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_en": "Which tennis team is from the United States?",
    "question_th": "ทีมเทนนิสทีมใดมาจากสหรัฐอเมริกา?",
    "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_en": "What is the nation of citizenship for athletes later than 2011 year of award?",
    "question_th": "นักกีฬาสัญชาติใดที่ได้รับรางวัลหลังจากปี 2011 ที่ได้รับรางวัล?",
    "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_en": "What Constructor did Michael Schumacher have with a Grid smaller than 5?",
    "question_th": "Michael Schumacher มี Constructor อะไรกับ Grid ที่เล็กกว่า 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_en": "Which driver has a Time/Retired of +1 lap?",
    "question_th": "นักแข่งคนไหนมีเวลา/เกษียณ +1 รอบ?",
    "context": "CREATE TABLE table_name_66 (driver VARCHAR, time_retired VARCHAR)"
  },
  {
    "answer": "SELECT apparatus FROM table_name_38 WHERE score_final > 17.75",
    "question_en": "Which apparatus had a final score that was more than 17.75?",
    "question_th": "อุปกรณ์ใดมีคะแนนสุดท้ายเกิน 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_en": "Which competition description's apparatus was ribbon?",
    "question_th": "อุปกรณ์คำอธิบายการแข่งขันใดคือริบบิ้น",
    "context": "CREATE TABLE table_name_46 (competition_description VARCHAR, apparatus VARCHAR)"
  },
  {
    "answer": "SELECT score_qualifying FROM table_name_94 WHERE apparatus = \"hoop\"",
    "question_en": "Which Qualifying score had hoop as an apparatus?",
    "question_th": "คะแนนรอบคัดเลือกใดที่มีห่วงเป็นเครื่องมือ?",
    "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_en": "What is the sum of qualifying scores when the final score is 16.625?",
    "question_th": "ผลรวมของคะแนนเข้ารอบเมื่อคะแนนสุดท้ายคือ 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_en": "When was the game played at Princes Park?",
    "question_th": "เกมนี้เล่นที่ 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_en": "What did Melbourne score as the home team?",
    "question_th": "เมลเบิร์นทำคะแนนให้เจ้าบ้านได้เท่าไหร่?",
    "context": "CREATE TABLE table_name_88 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_40 WHERE high_school = \"malvern prep\"",
    "question_en": "What position does the player from malvern prep play?",
    "question_th": "นักเตะมัลเวิร์นเตรียมเล่นตำแหน่งไหนครับ?",
    "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_en": "What team scored more than 572 points and had more than 29 games?",
    "question_th": "ทีมใดทำคะแนนได้มากกว่า 572 แต้ม และลงเล่นมากกว่า 29 เกม?",
    "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_en": "What is the least amount of games for Luis scola with a rank greater than 1?",
    "question_th": "จำนวนเกมขั้นต่ำสำหรับ Luis scola ที่มีอันดับมากกว่า 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_en": "What is the identity of the brighton works built train?",
    "question_th": "อะไรคือเอกลักษณ์ของรถไฟที่สร้างขึ้นโดย Brighton Works?",
    "context": "CREATE TABLE table_name_48 (identity VARCHAR, builder VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_76 WHERE date = \"may 13\"",
    "question_en": "What was the attendance on May 13?",
    "question_th": "ผู้เข้าร่วมในวันที่ 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_en": "What is the highest Quantity for PTRD Nos. 3, 15?",
    "question_th": "ปริมาณสูงสุดสำหรับ PTRD No. 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_en": "How many were hosted whene the average attendance was 27,638?",
    "question_th": "มีผู้จัดงานกี่คน โดยมีผู้เข้าร่วมเฉลี่ย 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_en": "What is the lowest attendance last year when more than 176 were hosted?",
    "question_th": "อะไรคือจำนวนผู้เข้าร่วมที่ต่ำที่สุดในปีที่แล้วซึ่งมีผู้จัดงานมากกว่า 176 คน?",
    "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_en": "How many 1990 growth numbers had less than 10,522 in 1970?",
    "question_th": "ตัวเลขการเติบโตในปี 1990 จำนวนเท่าใดที่มีน้อยกว่า 10,522 ในปี 1970",
    "context": "CREATE TABLE table_name_49 (Id VARCHAR)"
  },
  {
    "answer": "SELECT MIN(1980) FROM table_name_61 WHERE 1970 = 2 OFFSET 610",
    "question_en": "Which is the lowest 1980 growth that had 2,610 in 1970?",
    "question_th": "การเติบโตต่ำสุดในปี 1980 ที่มี 2,610 ในปี 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_en": "What is the high lap total that has a grid of less than 4 and a Time/Retired of + 1 lap?",
    "question_th": "ผลรวมรอบสูงที่มีตารางน้อยกว่า 4 และเวลา/เกษียณ + 1 รอบคือเท่าใด",
    "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_en": "How many laps associated with a Time/Retired of + 1:25.475?",
    "question_th": "มีกี่รอบที่เกี่ยวข้องกับเวลา/เกษียณที่ + 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_en": "What was the home teams score when the VFL played Princes Park?",
    "question_th": "คะแนนของทีมเหย้าเมื่อ VFL เล่นกับ 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_en": "What was the opponents score when Geelong played as home team?",
    "question_th": "เมื่อจีลองเล่นเป็นเจ้าบ้านคะแนนของฝ่ายตรงข้ามเป็นเท่าไหร่?",
    "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_en": "What was the home teams score when the VFL played at Kardinia Park?",
    "question_th": "คะแนนทีมเหย้าเมื่อ VFL เล่นที่คาร์ดิเนียพาร์คเป็นเท่าใด",
    "context": "CREATE TABLE table_name_80 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_70 WHERE away_team = \"fitzroy\"",
    "question_en": "When did Fitzroy play as the away team?",
    "question_th": "ฟิตซ์รอยลงเล่นเป็นทีมเยือนเมื่อไหร่?",
    "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_en": "What is the average number of goals of the player with 234 apps and a rank above 8?",
    "question_th": "จำนวนประตูเฉลี่ยของผู้เล่นที่มี 234 แอปและอันดับสูงกว่า 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_en": "What is the average avg/game of the player with 97 goals and a rank above 7?",
    "question_th": "ค่าเฉลี่ยเฉลี่ย/เกมของผู้เล่นที่ทำประตูได้ 97 ประตูและอันดับสูงกว่า 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_en": "What is the highest number of games won where less than 21 games were conceded and less than 18 games were actually played?",
    "question_th": "จำนวนเกมที่ชนะสูงสุดโดยเสียน้อยกว่า 21 เกมและเล่นจริงน้อยกว่า 18 เกมคือเท่าใด",
    "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_en": "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?",
    "question_th": "จำนวนประตูเฉลี่ยที่เสียประตูมากกว่า 19 ประตู ทีมมี 31 คะแนน และเสมอมากกว่า 7 คือเท่าใด",
    "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_en": "How many goals were conceded against the Chepo F.C. team where they lost 7 games?",
    "question_th": "เสียประตูกับทีมเชโป เอฟซี ที่พวกเขาแพ้ 7 เกมไปกี่ประตู?",
    "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_en": "What was the smallest crowd at junction oval?",
    "question_th": "ฝูงชนที่เล็กที่สุดที่วงรีทางแยกคือกลุ่มใด",
    "context": "CREATE TABLE table_name_61 (crowd INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT state FROM table_name_49 WHERE member = \"richard foster\"",
    "question_en": "What state has Richard Foster as a member?",
    "question_th": "Richard Foster เป็นสมาชิกของรัฐใด",
    "context": "CREATE TABLE table_name_49 (state VARCHAR, member VARCHAR)"
  },
  {
    "answer": "SELECT member FROM table_name_16 WHERE electorate = \"cook\"",
    "question_en": "Which member has Cook as the electorate?",
    "question_th": "สมาชิกคนไหนมีคุกเป็นผู้มีสิทธิเลือกตั้ง?",
    "context": "CREATE TABLE table_name_16 (member VARCHAR, electorate VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_72 WHERE chassis = \"625 553 500\"",
    "question_en": "Who was the driver with chassis 625 553 500?",
    "question_th": "ใครเป็นคนขับพร้อมแชสซี 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_en": "What was tyre that was made by cooper - bristol that was driven by bob gerard?",
    "question_th": "ยางที่คูเปอร์ทำ - บริสตอลที่ขับโดยบ็อบ เจอราร์ดคืออะไร",
    "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_en": "Who was the constructor of the officine alfieri maserati that was driven by Sergio Mantovani?",
    "question_th": "ใครคือผู้สร้าง officine alfieri maserati ที่ขับเคลื่อนโดย 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_en": "What tyre had Sergio Mantovani as a driver?",
    "question_th": "Sergio Mantovani มียางอะไรเป็นคนขับ?",
    "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_en": "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?",
    "question_th": "คุณบอกได้ไหมว่าอะไรคือผู้เข้ามาของสินค้า Maserati ที่สร้างขึ้นด้วยยาง p พร้อมแชสซีขนาด 250f a6gcm ที่ขับเคลื่อนโดย 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_en": "What is the dutch word for one?",
    "question_th": "คำภาษาดัตช์หมายถึงอะไร?",
    "context": "CREATE TABLE table_name_18 (dutch VARCHAR, english VARCHAR)"
  },
  {
    "answer": "SELECT middle_german___luxemburgish__ FROM table_name_20 WHERE DUTCH(Limburgish) = ein",
    "question_en": "What is the Middle German (Luxemburgish) word for ein?",
    "question_th": "คำว่า 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_en": "What is the Middle German (Luxemburgish) word for stone?",
    "question_th": "ภาษาเยอรมันกลาง (ลักเซมเบิร์ก) แปลว่าอะไร หิน?",
    "context": "CREATE TABLE table_name_58 (middle_german___luxemburgish__ VARCHAR, english VARCHAR)"
  },
  {
    "answer": "SELECT dutch FROM table_name_68 WHERE LOW_GERMAN(Groningen) = høvd / høvur",
    "question_en": "What is the Dutch waord for høvd / høvur?",
    "question_th": "คำภาษาดัตช์แปลว่า høvd / høvur คืออะไร?",
    "context": "CREATE TABLE table_name_68 (dutch VARCHAR, Groningen VARCHAR, høvd VARCHAR, høvur VARCHAR)"
  },
  {
    "answer": "SELECT english FROM table_name_43 WHERE DUTCH(Limburgish) = twie",
    "question_en": "What is the English word for twie?",
    "question_th": "ทวี ภาษาอังกฤษว่าอะไรคะ?",
    "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_en": "What is the constructor on the team with 8 rounds and a chassis of 156 158 1512?",
    "question_th": "คอนสตรัคเตอร์ในทีมที่มี 8 รอบและแชสซี 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_en": "Who is the driver of the team with tyre d, bt11 chassis, and 8 rounds?",
    "question_th": "นักแข่งของทีมยาง d ตัวถัง bt11 และ 8 รอบ คือใคร?",
    "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_en": "What is the number of bronze that silver is smaller than 1 and gold bigger than 0?",
    "question_th": "จำนวนของทองแดงที่เงินน้อยกว่า 1 และทองคำมากกว่า 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_en": "what is the name when the nation is France, the pts/game is more than 3 and points is less than 33?",
    "question_th": "ชื่ออะไรเมื่อประเทศคือฝรั่งเศส แต้ม/เกมมากกว่า 3 และแต้มน้อยกว่า 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_en": "what is the pts/game for Charlotte barras and the games is 5?",
    "question_th": "คะแนน/เกมของ Charlotte barras คืออะไร และเกมคือ 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_en": "what is the average points when the nation is wales and the pts/game is more than 5?",
    "question_th": "คะแนนเฉลี่ยเมื่อประเทศคือเวลส์และคะแนน/เกมมากกว่า 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_en": "When is the earliest year for it is in barcelona, spain?",
    "question_th": "ปีแรกสุดที่บาร์เซโลนา ประเทศสเปน คือเมื่อไหร่?",
    "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_en": "What is the average year they finished 5th in santiago, chile?",
    "question_th": "โดยเฉลี่ยแล้วที่พวกเขาจบอันดับที่ 5 ในซานติอาโก ประเทศชิลี คือปีใด?",
    "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_en": "Which pick was MIchael Holper?",
    "question_th": "ไมเคิล โฮลเปอร์ คนไหนคือตัวเลือก?",
    "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_en": "What is the average Gold where the Nation is Russia (rus) and the number of silver is less than 2?",
    "question_th": "ทองคำโดยเฉลี่ยโดยที่ประเทศคือรัสเซีย (rus) และจำนวนเงินน้อยกว่า 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_en": "What is the total where the nation is South Africa (rsa) and bronze is less than 1?",
    "question_th": "จำนวนรวมของประเทศคือแอฟริกาใต้ (rsa) และทองแดงน้อยกว่า 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_en": "Which nation has 0 gold, a rank greater than 14, a total of 1, and silver less than 1?",
    "question_th": "ชาติใดมี 0 เหรียญทอง อันดับมากกว่า 14 รวม 1 และเงินน้อยกว่า 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_en": "Tell me the home team for vfl park venue",
    "question_th": "บอกทีมเจ้าบ้านสถานที่ vfl park หน่อยครับ",
    "context": "CREATE TABLE table_name_21 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_70 WHERE venue = \"mcg\"",
    "question_en": "Tell me the home team for venue of mcg",
    "question_th": "บอกทีมเจ้าบ้านเรื่องสถานที่ 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_en": "Tell me the most crowd for arden street oval venue",
    "question_th": "บอกฉันว่าฝูงชนมากที่สุดสำหรับสถานที่จัดงานวงรีถนนอาร์เดน",
    "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_en": "What was the away team's score when South Melbourne was the home team?",
    "question_th": "เมื่อเซาธ์ เมลเบิร์นเป็นเจ้าบ้านสกอร์เท่าไหร่?",
    "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_en": "What was the placing of the nation of East Germany?",
    "question_th": "ชาติเยอรมันตะวันออกอยู่ในตำแหน่งใด?",
    "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_en": "What's the highest level of team Astana since 2007?",
    "question_th": "ทีมอัสตานาอยู่ระดับสูงสุดนับตั้งแต่ปี 2550 คือทีมใด",
    "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_en": "Who was the away team at Western Oval?",
    "question_th": "ทีมเยือนเวสเทิร์นโอวัลคือใคร?",
    "context": "CREATE TABLE table_name_52 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_90 WHERE away_team = \"collingwood\"",
    "question_en": "Who was the home team that played against Collingwood?",
    "question_th": "ทีมเหย้าที่เล่นกับคอลลิงวูดคือใคร?",
    "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_en": "What is the average crowd size for Richmond home games?",
    "question_th": "ขนาดฝูงชนโดยเฉลี่ยในเกมเหย้าของริชมอนด์คือเท่าใด?",
    "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_en": "What is the largest crowd for North Melbourne home games?",
    "question_th": "ฝูงชนที่ใหญ่ที่สุดสำหรับเกมเหย้า North Melbourne คือกลุ่มใด?",
    "context": "CREATE TABLE table_name_48 (crowd INTEGER, home_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_62 WHERE home_team = \"melbourne\"",
    "question_en": "In which venue does Melbourne play as the home team?",
    "question_th": "เมลเบิร์นเล่นเป็นเจ้าบ้านที่สนามไหน?",
    "context": "CREATE TABLE table_name_62 (venue VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT grid FROM table_name_85 WHERE driver = \"johnny dumfries\"",
    "question_en": "Which Grid has a Driver of johnny dumfries?",
    "question_th": "กริดคนไหนมีคนขับรถของจอห์นนี่ ดัมฟรีส์?",
    "context": "CREATE TABLE table_name_85 (grid VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_24 WHERE date = \"22 september 1972\"",
    "question_en": "What is the score on 22 September 1972?",
    "question_th": "คะแนนเมื่อ 22 กันยายน 2515 เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_24 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_57 WHERE date = \"3 september 1972\"",
    "question_en": "What is the venue on 3 September 1972?",
    "question_th": "วันที่ 3 กันยายน พ.ศ. 2515 จัดขึ้นที่ใด?",
    "context": "CREATE TABLE table_name_57 (venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT series FROM table_name_2 WHERE date = \"april 30\"",
    "question_en": "Name the series for april 30",
    "question_th": "ตั้งชื่อซีรีส์วันที่ 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_en": "Name the highest game for west (8) high assists",
    "question_th": "ตั้งชื่อเกมสูงสุดให้กับเวสต์ (8) แอสซิสต์สูง",
    "context": "CREATE TABLE table_name_35 (game INTEGER, high_assists VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_name_11 WHERE date = \"14 february\"",
    "question_en": "Which Year has a Date of 14 February?",
    "question_th": "ปีใดมีวันที่ 14 กุมภาพันธ์",
    "context": "CREATE TABLE table_name_11 (year INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_48 WHERE date = \"20 july\"",
    "question_en": "Which Label has a Date of 20 July?",
    "question_th": "ป้ายใดมีวันที่ 20 กรกฎาคม",
    "context": "CREATE TABLE table_name_48 (label VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_56 WHERE date = \"14 february\"",
    "question_en": "Which Label has a Date of 14 February?",
    "question_th": "ป้ายใดมีวันที่ 14 กุมภาพันธ์",
    "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_en": "Who choreographed the smooth waltz with lacey schwimmer?",
    "question_th": "ใครเป็นผู้ออกแบบท่าเต้นเพลงวอลทซ์อันนุ่มนวลกับเลซีย์ ชวิมเมอร์?",
    "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_en": "Who was the partner for the jazz piece in the bottom three?",
    "question_th": "ใครคือคู่หูของผลงานเพลงแจ๊สในสามอันดับสุดท้าย?",
    "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_en": "For Venue vfl park, what was the home team score?",
    "question_th": "สำหรับ Venue vfl park สกอร์ทีมเจ้าบ้านเท่าไหร่?",
    "context": "CREATE TABLE table_name_98 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_37 WHERE venue = \"vfl park\"",
    "question_en": "On which date was the venue of vfl park used?",
    "question_th": "สนาม vfl park ใช้วันไหน?",
    "context": "CREATE TABLE table_name_37 (date VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT AVG(crowd) FROM table_name_17 WHERE away_team = \"north melbourne\"",
    "question_en": "What was the Average crowd when the away team was north melbourne?",
    "question_th": "ฝูงชนโดยเฉลี่ยคือเท่าไรเมื่อทีมเยือนอยู่เมลเบิร์นเหนือ?",
    "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_en": "What is the maximum torque at rpm for the engine coded BJB/BKC/BXE/BLS?",
    "question_th": "แรงบิดสูงสุดที่รอบต่อนาทีสำหรับเครื่องยนต์รหัส 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_en": "What is the maximum power at rpm for the engine named 2.0 TDI that has a 1968cc displacement?",
    "question_th": "กำลังสูงสุดที่รอบต่อนาทีสำหรับเครื่องยนต์ 2.0 TDI ที่มีปริมาตรกระบอกสูบ 1968cc คือเท่าใด",
    "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_en": "What is the maximum torque at rpm for the engine with code BMM?",
    "question_th": "แรงบิดสูงสุดที่รอบต่อนาทีสำหรับเครื่องยนต์ที่มีรหัส 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_en": "What is the maximum torque at rpm for the engine with code BMM?",
    "question_th": "แรงบิดสูงสุดที่รอบต่อนาทีสำหรับเครื่องยนต์ที่มีรหัส 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·m ( lbf·ft ) @ 3,800\"",
    "question_en": "What is the engine name that has a maximum torque at rpm of n·m ( lbf·ft ) @ 3,800?",
    "question_th": "ชื่อเครื่องยนต์ที่มีแรงบิดสูงสุดที่ rpm ที่ n·m ( lbf·ft ) @ 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_en": "What was the result of t.u.f.f. puppy?",
    "question_th": "ผลลัพท์ของลูกสุนัขปอยเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_37 (result VARCHAR, work VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_1 WHERE competition = \"2010 world cup qualifying\"",
    "question_en": "what is the score for the 2010 world cup qualifying?",
    "question_th": "ฟุตบอลโลก 2010 รอบคัดเลือก ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_1 (score VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_16 WHERE date = \"november 7\"",
    "question_en": "Which home has a Date of november 7?",
    "question_th": "บ้านไหนมีวันที่ 7 พฤศจิกายน?",
    "context": "CREATE TABLE table_name_16 (home VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MIN(attendance) FROM table_name_94 WHERE date = \"november 18\"",
    "question_en": "What is the lowest attendance on November 18?",
    "question_th": "วันที่ 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_en": "What is the date of the game where Dipietro earned a decision and Carolina was the visiting team?",
    "question_th": "ในเกมวันที่เท่าไหร่ที่ ดิปิเอโตร ได้รับคำตัดสิน และ แคโรไลนา เป็นทีมเยือน?",
    "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_en": "Who is the visiting team when Dipietro received a decision on October 27?",
    "question_th": "ทีมเยือนคือใครเมื่อดิปิเอโตรได้รับคำตัดสินเมื่อวันที่ 27 ตุลาคม?",
    "context": "CREATE TABLE table_name_50 (visitor VARCHAR, decision VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_57 WHERE home = \"washington\"",
    "question_en": "What was the record when the home team is Washington?",
    "question_th": "เมื่อเจ้าบ้านเป็นวอชิงตันมีสถิติอะไรบ้าง?",
    "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_en": "What was the score of the game on October 20 when the home team is the NY Islanders?",
    "question_th": "เกมวันที่ 20 ต.ค. เจ้าบ้านเป็น นิวยอร์ก ไอแลนด์เดอร์ส เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_57 (score VARCHAR, home VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT theme FROM table_name_73 WHERE mintage = 700",
    "question_en": "In the Endangered Wildlife Series from the Royal Canadian Mint numismatic coins printed in the 2000s, what theme had a mintage of 700?",
    "question_th": "ในซีรีส์สัตว์ป่าใกล้สูญพันธุ์จากเหรียญกษาปณ์ของแคนาดาที่พิมพ์ในช่วงปี 2000 หัวข้อใดมีการสร้าง 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_en": "What year had an issue price of $2,995.95, and a theme of grizzly bear?",
    "question_th": "ปีใดมีราคาจำหน่ายอยู่ที่ 2,995.95 เหรียญสหรัฐ และมีธีมหมีกริซลี่?",
    "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_en": "Tell me the total for silver more than 0 for italy with gold less than 29",
    "question_th": "บอกยอดรวมเงินมากกว่า 0 สำหรับอิตาลีทองน้อยกว่า 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_en": "Tell me the average bronze for total less than 4 and silver more than 0",
    "question_th": "บอกค่าเฉลี่ยทองแดงสำหรับผลรวมน้อยกว่า 4 และเงินมากกว่า 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_en": "I want to know the total for silver more than 0 with bronze more than 21 and gold more than 29",
    "question_th": "ฉันต้องการทราบผลรวมของเงินมากกว่า 0 โดยมีทองแดงมากกว่า 21 และทองคำมากกว่า 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_en": "How many carries for jeff smoker?",
    "question_th": "เจฟฟ์ สโมคเกอร์ถือได้กี่อัน?",
    "context": "CREATE TABLE table_name_54 (car INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT AVG(car) FROM table_name_58 WHERE long = \"3\"",
    "question_en": "How many average carries for the player with 3 as a long?",
    "question_th": "ค่าเฉลี่ยของผู้เล่นที่ถือ 3 ไว้นานเท่าไหร่?",
    "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_en": "who is the home team when tie no is less than 7 and the away team is havant & waterlooville?",
    "question_th": "เจ้าบ้านคือใครเมื่อเสมอกันไม่ต่ำกว่า 7 และทีมเยือนคือ ฮาเวนท์ แอนด์ วอเตอร์ลูวิลล์?",
    "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_en": "What is the Score in the final with an Outcome with runner-up, and a Date with 1970?",
    "question_th": "คะแนนในรอบชิงชนะเลิศกับผลลัพธ์รองแชมป์และเดทกับปี 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_en": "What is the Tournament with a Opponents in the final with rod laver fred stolle?",
    "question_th": "การแข่งขันกับคู่ต่อสู้ในรอบชิงชนะเลิศคืออะไรกับร็อดเลเวอร์ เฟรด สโตลเล?",
    "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_en": "What is the Tournament with a Date larger than 1973, with Opponents in the final with hank pfister sherwood stewart?",
    "question_th": "การแข่งขันที่มีวันที่ใหญ่กว่าปี 1973 คืออะไร โดยมีฝ่ายตรงข้ามในรอบชิงชนะเลิศกับแฮงค์ พิฟิสเตอร์ เชอร์วูด สจ๊วต?",
    "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_en": "What is the Partner with Opponents in the final with roy emerson rod laver, with Date smaller than 1975?",
    "question_th": "คู่หูกับคู่ต่อสู้ในรอบชิงชนะเลิศกับ รอย เอเมอร์สัน ร็อด เลเวอร์ โดยเดทเล็กกว่าปี 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_en": "Which driver has 45 laps?",
    "question_th": "นักแข่งคนไหนมี 45 รอบ?",
    "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_en": "Which Time/Retired has a grid smaller than 9, a Ferrari construct, and is driven by Rubens Barrichello?",
    "question_th": "เวลาใด/เกษียณแล้วมีตารางที่เล็กกว่า 9 ซึ่งเป็นโครงสร้างเฟอร์รารี และขับเคลื่อนโดย 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_en": "Who was the home team when the away team was Footscray?",
    "question_th": "เจ้าบ้านคือใครเมื่อทีมเยือนเป็นฟุตสเครย์?",
    "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_en": "What was the date of the game where North Melbourne was the home team?",
    "question_th": "เกมที่นอร์ธ เมลเบิร์นเป็นเจ้าบ้านคือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_65 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_35 WHERE venue = \"kardinia park\"",
    "question_en": "Which away team played at Kardinia Park?",
    "question_th": "ทีมเยือนทีมไหนเล่นที่คาร์ดิเนีย พาร์ก?",
    "context": "CREATE TABLE table_name_35 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT no_of_cities FROM table_name_38 WHERE voivodeship = \"elbląg voivodeship\"",
    "question_en": "Namem the number of cities that contains Voivodeship of elbląg voivodeship",
    "question_th": "ตั้งชื่อจำนวนเมืองที่มีวอยโวเดชิพของวอยโวเดชิพเอลบล็อง",
    "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_en": "How many people in 1991 have a Village (German) of rupertiberg?",
    "question_th": "มีกี่คนในปี 1991 ที่มีหมู่บ้าน (เยอรมัน) ของ 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_en": "What was the score on October 30?",
    "question_th": "คะแนนวันที่ 30 ต.ค. เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_64 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_78 WHERE date = \"october 6\"",
    "question_en": "What was the attendance on October 6?",
    "question_th": "ผู้เข้าร่วมในวันที่ 6 ตุลาคมมีอะไรบ้าง?",
    "context": "CREATE TABLE table_name_78 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_41 WHERE date = \"october 24\"",
    "question_en": "What was the record on October 24?",
    "question_th": "บันทึกเมื่อวันที่ 24 ตุลาคมคืออะไร?",
    "context": "CREATE TABLE table_name_41 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_85 WHERE date = \"october 20\"",
    "question_en": "Who was the visitor on October 20?",
    "question_th": "ใครคือผู้มาเยือนในวันที่ 20 ตุลาคม?",
    "context": "CREATE TABLE table_name_85 (visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT smoke_point FROM table_name_25 WHERE monounsaturated_fat = \"30g\"",
    "question_en": "Name the smoke point for monosaturated fat of 30g",
    "question_th": "ตั้งชื่อจุดควันสำหรับไขมันอิ่มตัวเชิงเดี่ยว 30 กรัม",
    "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_en": "Name the polyunsaturated fat with total fat of 100g and monounsaturated fat of 20g (84g in high oleic variety)",
    "question_th": "ชื่อไขมันไม่อิ่มตัวเชิงซ้อนที่มีไขมันรวม 100 กรัม และไขมันไม่อิ่มตัวเชิงเดี่ยว 20 กรัม (84 กรัมในพันธุ์โอเลอิกสูง)",
    "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_en": "Name the polyunsaturated fat with total fat of 100g and saturated fat of 7g",
    "question_th": "ตั้งชื่อไขมันไม่อิ่มตัวเชิงซ้อนที่มีไขมันรวม 100 กรัม และไขมันอิ่มตัว 7 กรัม",
    "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_en": "Name the polyunsaturated fat with a saturated fat of 25g",
    "question_th": "ตั้งชื่อไขมันไม่อิ่มตัวเชิงซ้อนด้วยไขมันอิ่มตัว 25 กรัม",
    "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_en": "Name the total fat which has a polyunsaturated fat of 11g and monounsaturated fat of 45g",
    "question_th": "ตั้งชื่อไขมันทั้งหมดซึ่งมีไขมันไม่อิ่มตัวเชิงซ้อน 11 กรัม และไขมันไม่อิ่มตัวเชิงเดี่ยว 45 กรัม",
    "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_en": "Name the result for friendly competition on 9 october 2010",
    "question_th": "แจ้งผลการแข่งขันกระชับมิตรวันที่ 9 ตุลาคม 2553",
    "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_en": "Name the result for uncaf nations cup 2009 and 6 goal",
    "question_th": "ทายผลบอล Uncaf Nations Cup 2009 และ 6 ประตู",
    "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_en": "Which team was team 1 that had a team 2 that was la nuova piovese (veneto a)?",
    "question_th": "ทีมไหนคือทีม 1 ที่มีทีม 2 ที่เป็นทีม 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_en": "What was the 2nd leg where the team 2 was budoni (sardinia)?",
    "question_th": "เลกที่ 2 ที่ทีม 2 คือ บูโดนี (ซาร์ดิเนีย) คืออะไร?",
    "context": "CREATE TABLE table_name_4 (team_2 VARCHAR)"
  },
  {
    "answer": "SELECT team_1 FROM table_name_81 WHERE team_2 = \"avigliano (basilicata)\"",
    "question_en": "Which was the team 1 that had a team 2 which was avigliano (basilicata)?",
    "question_th": "ทีมไหนคือทีม 1 ที่มีทีม 2 คือ 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_en": "How much cash was on hand after debt of $82,741?",
    "question_th": "มีเงินสดในมือจำนวนเท่าใดหลังจากหนี้จำนวน 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_en": "What was the amount of loans received with a total debt of $169,256?",
    "question_th": "ได้รับเงินกู้จำนวนเท่าใดและมีหนี้รวม 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_en": "How much money was spent when the amount after debt was $1,757,936?",
    "question_th": "มีการใช้จ่ายเงินไปเท่าใดเมื่อจำนวนเงินหลังหนี้อยู่ที่ 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_en": "How much is after debt when cash on hand is $651,300?",
    "question_th": "เงินสดในมืออยู่ที่ 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_en": "What is the lowest total when the Bronze metals are larger than 0 and the nation is France (fra)?",
    "question_th": "ค่ารวมต่ำสุดเมื่อโลหะทองแดงมีค่ามากกว่า 0 และประเทศคือฝรั่งเศส (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_en": "What is the highest silver medal count when there is 1 Bronze medal and 1 Gold medal?",
    "question_th": "จำนวนเหรียญเงินสูงสุดเมื่อมี 1 เหรียญทองแดง และ 1 เหรียญทอง คือเท่าไร?",
    "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_en": "What is the total number of medals when the Bronze, Silver, and Gold medals are smaller than 1?",
    "question_th": "เมื่อเหรียญทองแดง เงิน และเหรียญทองน้อยกว่า 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_en": "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?",
    "question_th": "ผลรวมของเหรียญทองแดงเมื่อเหรียญทองมากกว่า 0 เหรียญเงินน้อยกว่า 1 และผลรวมน้อยกว่า 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_en": "what is the result for 11 august 2010?",
    "question_th": "ผลลัพธ์ของวันที่ 11 สิงหาคม 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_en": "what is the result when the competition is friendly on 8 october 2009?",
    "question_th": "ผลการแข่งขันกระชับมิตรวันที่ 8 ตุลาคม 2552 เป็นอย่างไร?",
    "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_en": "For the group name European Progressive Democrats what is the French abbr?",
    "question_th": "สำหรับชื่อกลุ่ม European Progressive Democrats อักษรย่อภาษาฝรั่งเศสคืออะไร?",
    "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_en": "Which Livery has a Description of 20t tanker, with a date later than 1941?",
    "question_th": "Livery ใดมีคำอธิบายของเรือบรรทุกน้ำมัน 20t โดยมีวันที่หลังปี 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_en": "What's the Description for Scottish Tar Distillers No. 78, that's Livery is black, and a date prior to 1897?",
    "question_th": "คำอธิบายสำหรับโรงกลั่นน้ำมันทาร์แห่งสกอตแลนด์หมายเลข 78 คืออะไร ซึ่งคือ Livery เป็นสีดำ และมีอายุก่อนปี 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_en": "What was the score of the game that Washington played at home against Florida?",
    "question_th": "เกมที่วอชิงตันเล่นในบ้านกับฟลอริดามีคะแนนเท่าไหร่?",
    "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_en": "What driver has BRM as a constructor and had more than 30 laps?",
    "question_th": "นักแข่งคนไหนมี BRM เป็นตัวสร้างและมีรอบมากกว่า 30 รอบ?",
    "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 – 27 november 2012\" AND managed > 2",
    "question_en": "How many lost when the number managed is over 2 and the period is from 12 november 2012 – 27 november 2012?",
    "question_th": "เมื่อจำนวนที่จัดการเกิน 2 และช่วงวันที่ 12 พฤศจิกายน 2555 – 27 พฤศจิกายน 2555 หายไปกี่รายการ?",
    "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) – 13.10 (88)\"",
    "question_en": "What is the average attendnace for seasons before 1986, a margin of 6, and a Score of 13.16 (94) – 13.10 (88)?",
    "question_th": "จำนวนผู้เข้าร่วมโดยเฉลี่ยในฤดูกาลก่อนปี 1986 คือเท่าไร มาร์จิ้น 6 และคะแนน 13.16 (94) – 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) – 9.14 (68)\" AND margin > 34",
    "question_en": "When is the earliest season at waverley park, a Score of 15.12 (102) – 9.14 (68), and a Margin larger than 34?",
    "question_th": "ฤดูกาลแรกสุดที่ Waverley Park คือเมื่อใด คะแนน 15.12 (102) – 9.14 (68) และ Margin มากกว่า 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) – 9.14 (68)\"",
    "question_en": "How many seasons feature essendon, and a Score of 15.12 (102) – 9.14 (68)?",
    "question_th": "มีกี่ฤดูกาลที่มี Essendon และคะแนน 15.12 (102) – 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_en": "What was the date of the game at MCG?",
    "question_th": "วันที่ของเกมที่ MCG คือวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_85 (date VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_18 WHERE home_team = \"geelong\"",
    "question_en": "What was the date of the game where Geelong was the home team?",
    "question_th": "เกมที่จีลองเป็นเจ้าบ้านคือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_18 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(crowd) FROM table_name_21 WHERE away_team = \"footscray\"",
    "question_en": "What was the crowd size for the game where Footscray was the away team?",
    "question_th": "ขนาดฝูงชนในเกมที่ Footscray เป็นทีมเยือนคือเท่าใด?",
    "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_en": "What is the total round with an overall of 199 with sweden?",
    "question_th": "รวมรอบเท่าไหร่กับสวีเดนรวม 199?",
    "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_en": "What is the total for Canada during round 2?",
    "question_th": "ยอดรวมของแคนาดาในรอบที่ 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_en": "Which team scores 119 in round 4?",
    "question_th": "ทีมใดทำคะแนนได้ 119 ในรอบที่ 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_en": "What was the attendance at the Kings game when Anaheim was the visiting team?",
    "question_th": "การมีส่วนร่วมในเกมเดอะคิงส์เมื่ออนาไฮม์เป็นทีมเยือนเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_22 (attendance VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_27 WHERE record = \"8–11–1\"",
    "question_en": "What was the score of the Kings game when they had a record of 8–11–1?",
    "question_th": "คะแนนของเกม Kings คืออะไรเมื่อพวกเขาทำสถิติ 8–11–1?",
    "context": "CREATE TABLE table_name_27 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_name_2 WHERE team = \"charlotte\"",
    "question_en": "Name the high points for charlotte",
    "question_th": "ตั้งชื่อคะแนนสูงสุดสำหรับชาร์ลอตต์",
    "context": "CREATE TABLE table_name_2 (high_points VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_68 WHERE date = \"february 12\"",
    "question_en": "Name the team on february 12",
    "question_th": "ตั้งชื่อทีมวันที่ 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_en": "Name the location attendance for game more than 54 on february 25",
    "question_th": "ตั้งชื่อสถานที่เข้าร่วมเกมมากกว่า 54 รายการในวันที่ 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_en": "Name the record for february 27",
    "question_th": "ตั้งชื่อบันทึกสำหรับวันที่ 27 กุมภาพันธ์",
    "context": "CREATE TABLE table_name_67 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_16 WHERE game = 48",
    "question_en": "Name the team for 48 game",
    "question_th": "ตั้งชื่อทีม 48 เกม",
    "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_en": "What's the average of shows that had a timeslot rank greater that 3 but still had a smaller viewership less than 4.87?",
    "question_th": "อะไรคือค่าเฉลี่ยของรายการที่มีช่วงเวลามากกว่า 3 แต่ยังมีผู้ชมน้อยกว่า 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_en": "Which division in the AFC Conference had a total of 10 wins and appeared more than 18 times?",
    "question_th": "เอเอฟซี คอนเฟอเรนซ์ ดิวิชั่นใด ชนะรวม 10 นัด ปรากฏเกิน 18 นัด?",
    "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_en": "How many losses did the East Division have who appeared 18 times and lost 8?",
    "question_th": "ดิวิชั่นตะวันออกแพ้ไปกี่ครั้งแล้วที่ลงสนาม 18 นัด แพ้ 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_en": "How many losses did the division who appeared less than 16 times have?",
    "question_th": "ฝ่ายที่ปรากฏตัวไม่ถึง 16 ครั้ง แพ้ไปกี่ครั้ง?",
    "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_en": "How many medals for spain with 1 silver?",
    "question_th": "สเปน 1 เหรียญเงิน ได้กี่เหรียญครับ?",
    "context": "CREATE TABLE table_name_68 (total INTEGER, silver VARCHAR, nation VARCHAR)"
  },
  {
    "answer": "SELECT silver FROM table_name_48 WHERE nation = \"finland\"",
    "question_en": "How many silvers for finland?",
    "question_th": "ฟินแลนด์ได้กี่เหรียญเงินคะ?",
    "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_en": "How many medals for spain that has 1 silver and 1 bronze?",
    "question_th": "สเปนมี 1 เหรียญเงิน 1 เหรียญทองแดง มีกี่เหรียญครับ?",
    "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_en": "What is the record when they play the canucks and have under 98 points?",
    "question_th": "สถิติการเล่นแคนัคส์มีแต้มต่ำกว่า 98 แต้มเป็นอย่างไรบ้าง?",
    "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_en": "How many attended the game against the sharks with over 86 points?",
    "question_th": "มีกี่คนที่เข้าร่วมเกมกับฉลามด้วยคะแนนมากกว่า 86 แต้ม?",
    "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_en": "Name the song that has a track larger than 7 and means death.",
    "question_th": "ตั้งชื่อเพลงที่มีเพลงมากกว่า 7 และหมายถึงความตาย",
    "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_en": "Which track 7 title was recorded in 1959-09-15?",
    "question_th": "ชื่อเพลงที่ 7 ใดที่บันทึกไว้ในปี 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_en": "Which track translates to Flemish Women?",
    "question_th": "เพลงใดที่แปลเป็น 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_en": "What is the high capacity that has an average under 489 and a highest over 778?",
    "question_th": "ความจุสูงที่มีค่าเฉลี่ยต่ำกว่า 489 และสูงสุดเกิน 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_en": "On the album titled “Loud” who was the other performer on the song directed by Melina Matsoukas?",
    "question_th": "ในอัลบั้มชื่อ \"Loud\" ใครเป็นนักแสดงอีกคนในเพลงที่กำกับโดย 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_en": "What is the decision when vancouver is at home and winnipeg is away?",
    "question_th": "จะตัดสินใจอย่างไรเมื่อแวนคูเวอร์อยู่ที่บ้าน และวินนิเพกไม่อยู่?",
    "context": "CREATE TABLE table_name_44 (decision VARCHAR, home VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_6 WHERE home = \"chicago\"",
    "question_en": "What is the record of the team from chicago?",
    "question_th": "ผลงานของทีมชิคาโก้เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_6 (record VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_52 WHERE away_team = \"st kilda\"",
    "question_en": "Where was the away team st kilda?",
    "question_th": "ทีมเยือนเซนต์คิลดาอยู่ไหน?",
    "context": "CREATE TABLE table_name_52 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT club_province FROM table_name_90 WHERE caps = 1",
    "question_en": "Which club has 1 cap?",
    "question_th": "สโมสรไหนมี 1 แคป?",
    "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_en": "Which position has a club of Meralomas and a player named David Biddle?",
    "question_th": "ตำแหน่งใดมีสโมสรของเมราโลมาสและมีผู้เล่นชื่อเดวิด บิดเดิล?",
    "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_en": "What is the average number of caps for Meralomas with positions of centre?",
    "question_th": "จำนวนแคปเฉลี่ยของ Meralomas ที่มีตำแหน่งตรงกลางคือเท่าใด?",
    "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_en": "Who are the scorers when the score is 9-2?",
    "question_th": "ใครคือผู้ทำประตูเมื่อสกอร์เป็น 9-2?",
    "context": "CREATE TABLE table_name_4 (scorers VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT MIN(population) FROM table_name_94 WHERE region > 9",
    "question_en": "What is the smallest population in a region greater than 9?",
    "question_th": "ประชากรที่น้อยที่สุดในภูมิภาคที่มากกว่า 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_en": "What is the average area for code 98030 with population over 312?",
    "question_th": "พื้นที่เฉลี่ยสำหรับรหัส 98030 ที่มีประชากรมากกว่า 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_en": "What is the attendance on may 28?",
    "question_th": "วันที่ 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_en": "On the Date of 4 Oct 2009, who was the Runner(s)-up?",
    "question_th": "วันที่ 4 ต.ค. 52 รองชนะเลิศคือใคร?",
    "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_en": "On the Date of 2 Aug 2009, who was the Runner(s)-up?",
    "question_th": "วันที่ 2 ส.ค. 52 รองชนะเลิศคือใคร?",
    "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_en": "Which Tournament was on the Date 6 Sep 2009?",
    "question_th": "การแข่งขันใดจัดขึ้นในวันที่ 6 กันยายน 2552?",
    "context": "CREATE TABLE table_name_23 (tournament VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT winning_score FROM table_name_55 WHERE tournament = \"mynavi abc championship\"",
    "question_en": "What was the Winning score for the Mynavi ABC Championship Tournament?",
    "question_th": "คะแนนชนะสำหรับ 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_en": "What was the Winning score when the Margin of victory is 5 strokes and the Date was 6 Sep 2009?",
    "question_th": "คะแนน Winning คืออะไรเมื่อ Margin of Victory คือ 5 จังหวะ และวันที่คือ 6 กันยายน 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_en": "Who was the Runner(s)-up on the Date 4 Oct 2009?",
    "question_th": "ใครคือรองชนะเลิศในวันที่ 4 ตุลาคม 2552?",
    "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_en": "What is the score with third place of stefan edberg?",
    "question_th": "คะแนนอันดับสามของ สเตฟาน เอ็ดเบิร์ก เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_33 (score VARCHAR, third_place VARCHAR)"
  },
  {
    "answer": "SELECT runner_up FROM table_name_40 WHERE tournament = \"algarve\"",
    "question_en": "Name the runner-up for algarve tournament",
    "question_th": "ตั้งชื่อรองชนะเลิศสำหรับการแข่งขันอัลการ์ฟ",
    "context": "CREATE TABLE table_name_40 (runner_up VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_25 WHERE third_place = \"magnus gustafsson\"",
    "question_en": "I want to know the tournament that has a third place of magnus gustafsson",
    "question_th": "ฉันต้องการทราบทัวร์นาเมนต์ที่มีอันดับที่สามของ 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_en": "Who was the winner when the third place was fernando meligeni?",
    "question_th": "ใครเป็นผู้ชนะเมื่ออันดับที่ 3 คือ เฟอร์นันโด เมลิเจนี?",
    "context": "CREATE TABLE table_name_11 (winner VARCHAR, third_place VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_3 WHERE winner = \"patrick rafter\"",
    "question_en": "Name the tournament for patrick rafter winning",
    "question_th": "ตั้งชื่อทัวร์นาเมนท์ให้แพทริค จันทัน ชนะ",
    "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_en": "Who was the owner in 1996 of trainer Nick Zito?",
    "question_th": "ใครคือเจ้าของเทรนเนอร์ Nick Zito ในปี 1996?",
    "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_en": "What year did jockey Ramon Dominguez have a distance of 1-1/16?",
    "question_th": "จ๊อกกี้ Ramon Dominguez มีระยะทาง 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_en": "Who was the owner of the trainer Steve Klesaris?",
    "question_th": "ใครคือเจ้าของเทรนเนอร์ Steve Klesaris?",
    "context": "CREATE TABLE table_name_80 (owner VARCHAR, trainer VARCHAR)"
  },
  {
    "answer": "SELECT owner FROM table_name_43 WHERE winner = \"raglan road\"",
    "question_en": "Who is the owner of the Raglan Road winner?",
    "question_th": "ใครคือเจ้าของผู้ชนะ Raglan Road?",
    "context": "CREATE TABLE table_name_43 (owner VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_2 WHERE winner = \"burning roma\"",
    "question_en": "What year was Burning Roma the winner?",
    "question_th": "เบิร์นนิ่ง โรมา เป็นผู้ชนะในปีใด?",
    "context": "CREATE TABLE table_name_2 (year VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT win_loss FROM table_name_23 WHERE coach = \"peter german\"",
    "question_en": "What is the win/loss of coach Peter German?",
    "question_th": "ปีเตอร์ เจอร์มัน โค้ชมีชัย/แพ้เท่าไหร่?",
    "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_en": "Which tyre was before 1995 with 142 laps?",
    "question_th": "ยางไหนก่อนปี 1995 ด้วย 142 รอบ?",
    "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_en": "Which tyres has more than 5 laps with team nissan motorsports international?",
    "question_th": "ยางตัวไหนวิ่งเกิน 5 รอบ กับทีม 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_en": "What position that has m tyres and 352 or more laps?",
    "question_th": "ตำแหน่งไหนที่มียาง m และรอบ 352 ขึ้นไป?",
    "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_en": "who is the team 2 when the team 1 is sestese(e16)?",
    "question_th": "ใครคือทีม 2 ในเมื่อทีม 1 เป็นเซสเตส (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_en": "What is the largest base pair with a Strain of unspecified?",
    "question_th": "คู่เบสที่ใหญ่ที่สุดที่มีสายพันธุ์ที่ไม่ระบุคืออะไร?",
    "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_en": "What is the lowst base pair with a Species of borrelia garinii, and a Genes larger than 832?",
    "question_th": "คู่เบสที่ต่ำที่สุดกับสปีชีส์ของ borrelia garinii และยีนที่มีขนาดใหญ่กว่า 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_en": "What type has an unspecified species and less than 367 genes?",
    "question_th": "ชนิดใดไม่ระบุชนิดและมียีนน้อยกว่า 367 ยีน",
    "context": "CREATE TABLE table_name_65 (type VARCHAR, species VARCHAR, genes VARCHAR)"
  },
  {
    "answer": "SELECT base_pairs FROM table_name_79 WHERE genes = 832",
    "question_en": "What base pair has 832 genes?",
    "question_th": "คู่เบสใดมี 832 ยีน",
    "context": "CREATE TABLE table_name_79 (base_pairs VARCHAR, genes VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_53 WHERE rank = 9",
    "question_en": "Which competition was ranked 9?",
    "question_th": "การแข่งขันใดอยู่ในอันดับที่ 9?",
    "context": "CREATE TABLE table_name_53 (competition VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT SUM(drawn) FROM table_name_94 WHERE goals = \"274-357\"",
    "question_en": "What is the sum of draws with 274-357 goals?",
    "question_th": "ผลรวมเสมอกับ 274-357 ประตูเป็นเท่าไหร่?",
    "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_en": "What is the lowest played 2 number with less than 83 losses and less than 65 draws with Chernomorets Novorossiysk in season 8?",
    "question_th": "2 หมายเลขที่เล่นต่ำที่สุดโดยแพ้น้อยกว่า 83 และเสมอน้อยกว่า 65 กับเชอร์โนโมเรตส์ โนโวรอสซีสค์ในฤดูกาลที่ 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_en": "What is the rank number with 562-506 goals before season 13?",
    "question_th": "562-506 ประตูก่อนซีซั่น 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_en": "How many seasons have goals of 261-338 with more than 111 losses?",
    "question_th": "มีกี่ฤดูกาลที่มีประตู 261-338 และแพ้มากกว่า 111 ครั้ง?",
    "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_en": "What is the highest season number with 57 draws, rank 20, and more than 1 spell?",
    "question_th": "หมายเลขฤดูกาลสูงสุดด้วยการเสมอ 57 ครั้ง อันดับที่ 20 และคาถามากกว่า 1 ครั้งคือหมายเลขใด",
    "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_en": "What was the results of the game at Doha?",
    "question_th": "ผลการแข่งขันที่โดฮาเป็นอย่างไรบ้าง?",
    "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_en": "What was the score during the competition of 1998 fifa world cup qualification?",
    "question_th": "คะแนนระหว่างการแข่งขันฟุตบอลโลกรอบคัดเลือกปี 1998 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_42 (score VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_45 WHERE date = \"october 1, 1994\"",
    "question_en": "What is the competition that took place on October 1, 1994?",
    "question_th": "การแข่งขันที่เกิดขึ้นในวันที่ 1 ตุลาคม พ.ศ. 2537 คืออะไร?",
    "context": "CREATE TABLE table_name_45 (competition VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_58 WHERE result = \"2-2\"",
    "question_en": "What is the competition that had a 2-2 result?",
    "question_th": "การแข่งขันที่ผลการแข่งขันเป็น 2-2 คืออะไร?",
    "context": "CREATE TABLE table_name_58 (competition VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_46 WHERE result = \"4-2\"",
    "question_en": "Where did the competition take place that had a 4-2 result?",
    "question_th": "การแข่งขันเกิดขึ้นที่ใดซึ่งผลการแข่งขัน 4-2?",
    "context": "CREATE TABLE table_name_46 (venue VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_7 WHERE result = \"5-1\"",
    "question_en": "Where was the competition that took place that had a 5-1 result?",
    "question_th": "การแข่งขันที่เกิดขึ้นที่ผลสกอร์ 5-1 อยู่ที่ไหน?",
    "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_en": "Tell me the highest goals with tries less than 1 and fullback position",
    "question_th": "บอกเป้าหมายสูงสุดโดยพยายามน้อยกว่า 1 ครั้งและตำแหน่งฟูลแบ็ค",
    "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_en": "Tell me the lowest tries for goals more than 0 with centre position and points less than 54",
    "question_th": "บอกฉันว่าความพยายามต่ำสุดสำหรับเป้าหมายที่มากกว่า 0 โดยมีตำแหน่งกึ่งกลางและคะแนนน้อยกว่า 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_en": "I want to know the player with tries more than 1 and position of hooker with points less than 54",
    "question_th": "ฉันต้องการรู้จักผู้เล่นที่พยายามมากกว่า 1 และตำแหน่งโสเภณีที่มีคะแนนน้อยกว่า 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_en": "Tell me the player with points larger than 36 and goals more than 0 with tries of 12",
    "question_th": "บอกผู้เล่นที่มีคะแนนมากกว่า 36 และประตูมากกว่า 0 โดยพยายาม 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_en": "What Tournament was the 2010 Olympic Games?",
    "question_th": "การแข่งขันกีฬาโอลิมปิกปี 2010 คือการแข่งขันอะไร",
    "context": "CREATE TABLE table_name_58 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT width FROM table_name_3 WHERE entered_service = 2010",
    "question_en": "Which width had an entered service year of 2010?",
    "question_th": "ความกว้างใดที่เข้าสู่ปีบริการปี 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_en": "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?",
    "question_th": "ปีที่สร้างล่าสุดคือปีใดที่เข้าประจำการล่าสุดกว่าปี 2546 และปมน้อยกว่า 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_en": "How many knots did the Ms Moby Vincent have when passengers was less than 1.6?",
    "question_th": "Ms Moby Vincent มีกี่นอตเมื่อผู้โดยสารน้อยกว่า 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_en": "Where did Richmond play as the away team?",
    "question_th": "ริชมอนด์เล่นทีมเยือนที่ไหน?",
    "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_en": "When the phillies 1:15 pm played on April 9, what was the attendance?",
    "question_th": "เมื่ออีเกิลส์ 13.15 น. ลงเล่นวันที่ 9 เมษายน ผู้ชมเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_21 (attendance VARCHAR, opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_42 WHERE score = \"5-1\"",
    "question_en": "When was there a score of 5-1?",
    "question_th": "เมื่อไหร่จะมีสกอร์ 5-1?",
    "context": "CREATE TABLE table_name_42 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT AVG(silver) FROM table_name_62 WHERE bronze > 1",
    "question_en": "What is the average number of silvers for nations with over 1 bronze medal?",
    "question_th": "จำนวนเหรียญเงินโดยเฉลี่ยสำหรับประเทศที่มีเหรียญทองแดงมากกว่า 1 เหรียญคือเท่าใด",
    "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_en": "What is the Interregnum ended for Count Palatine of Saxony of frederick augustus i, elector of saxony?",
    "question_th": "อะไรคือจุดจบของ Interregnum สำหรับเคานต์พาลาไทน์แห่งแซกโซนีแห่งเฟรดเดอริก ออกัสตัส ที่ 1 ผู้มีสิทธิเลือกตั้งแห่งแซกโซนี?",
    "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_en": "What is the Interregnum ended for Count Palatine of Saxony of john george ii, elector of saxony?",
    "question_th": "อะไรคือจุดจบของ Interregnum สำหรับเคานต์พาลาไทน์แห่งแซกโซนีแห่งจอห์น จอร์จที่ 2 ผู้มีสิทธิเลือกตั้งแห่งแซกโซนี?",
    "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_en": "What is the duration for Count Palatine of the Rhine of charles albert, elector of bavaria?",
    "question_th": "ระยะเวลาของเคานต์พาลาไทน์แห่งแม่น้ำไรน์ของชาร์ลส์ อัลเบิร์ต ผู้มีสิทธิเลือกตั้งแห่งบาวาเรียคือเท่าใด",
    "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_en": "What is the name of the Count Palatine of the Rhine with a Interregnum began of 2 april 1657 death of ferdinand iii?",
    "question_th": "เคานต์พาลาไทน์แห่งแม่น้ำไรน์ชื่ออะไร ซึ่งเริ่มตั้งแต่วันที่ 2 เมษายน ค.ศ. 1657 การเสียชีวิตของเฟอร์ดินานด์ที่ 3",
    "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_en": "What is the Interregnum ended for the person with a Duration of 3 months, 6 days?",
    "question_th": "Interregnum สิ้นสุดสำหรับบุคคลที่มี Duration 3 เดือน 6 วันคืออะไร?",
    "context": "CREATE TABLE table_name_78 (interregnum_ended VARCHAR, duration VARCHAR)"
  },
  {
    "answer": "SELECT crowd FROM table_name_53 WHERE home_team = \"hawthorn\"",
    "question_en": "What was the crowd size when the home team was Hawthorn?",
    "question_th": "ขนาดฝูงชนเมื่อเจ้าบ้านเป็นฮอว์ธอร์นคือเท่าไร?",
    "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_en": "What is the total share with Timeslot of 8:30 p.m., anAir Date of march 27, 2008, and a Rank greater than 65?",
    "question_th": "ส่วนแบ่งรวมในช่วงเวลา 20:30 น. วันที่ออกอากาศวันที่ 27 มีนาคม 2551 และอันดับที่มากกว่า 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_en": "What is the total number of Viewers with a Rank (Night) of n/a, and a Timeslot of 8:30 p.m.?",
    "question_th": "จำนวนผู้ชมทั้งหมดที่มีอันดับ (กลางคืน) ที่ n/a และช่วงเวลา 20:30 น. คือเท่าใด",
    "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_en": "How many people attended the game when Calgary was the home team and the decision was McLean?",
    "question_th": "มีคนเข้าร่วมเกมกี่คนเมื่อคัลการีเป็นเจ้าบ้านและแม็คลีนเป็นผู้ตัดสิน?",
    "context": "CREATE TABLE table_name_11 (attendance VARCHAR, decision VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_38 WHERE home = \"los angeles\"",
    "question_en": "What is the record of the game when Los Angeles was the home team?",
    "question_th": "บันทึกของเกมเมื่อลอสแองเจลิสเป็นเจ้าบ้านคืออะไร?",
    "context": "CREATE TABLE table_name_38 (record VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_39 WHERE score = \"1 – 5\"",
    "question_en": "What is the record of the game with a score of 1 – 5?",
    "question_th": "สถิติของเกมด้วยสกอร์ 1 – 5 คืออะไร?",
    "context": "CREATE TABLE table_name_39 (record VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT MIN(attendance) FROM table_name_97 WHERE home = \"los angeles\"",
    "question_en": "What is the least number of people to attend a game when Los Angeles was the home team?",
    "question_th": "จำนวนคนที่น้อยที่สุดที่จะเข้าร่วมเกมเมื่อลอสแองเจลิสเป็นเจ้าบ้านคือเท่าใด",
    "context": "CREATE TABLE table_name_97 (attendance INTEGER, home VARCHAR)"
  },
  {
    "answer": "SELECT runner_up FROM table_name_96 WHERE tournament = \"santiago\"",
    "question_en": "who is the runner- up when the tournament is santiago?",
    "question_th": "ใครคือรองชนะเลิศเมื่อทัวร์นาเมนต์คือซานติอาโก?",
    "context": "CREATE TABLE table_name_96 (runner_up VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_54 WHERE runner_up = \"richard krajicek\"",
    "question_en": "what is the score when the runner-up is richard krajicek?",
    "question_th": "เมื่อรองชนะเลิศคือ ริชาร์ด คราจิเซค สกอร์เท่าไหร่?",
    "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_en": "what is the tournament when the score is 7-6(0), 6-3?",
    "question_th": "การแข่งขันจะเป็นอย่างไรเมื่อสกอร์เป็น 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_en": "who is third place when the tournament is delray beach?",
    "question_th": "ใครคืออันดับที่สามในการแข่งขันคือเดลเรย์บีช?",
    "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_en": "What was the score in the Continental Qualifier on February 23, 2003?",
    "question_th": "คะแนนในรอบคัดเลือกระดับทวีปเมื่อวันที่ 23 กุมภาพันธ์ พ.ศ. 2546 เป็นเท่าใด",
    "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_en": "What was the score for the World Cup Qualifier?",
    "question_th": "ฟุตบอลโลกรอบคัดเลือกได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_72 (score VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_61 WHERE date = \"february 18, 2003\"",
    "question_en": "What was the result on February 18, 2003?",
    "question_th": "ผลลัพธ์เมื่อวันที่ 18 กุมภาพันธ์ 2546 เป็นอย่างไร?",
    "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_en": "When was the ship that had a fate of 'converted to laker, 1961; still in service' commissioned?",
    "question_th": "เมื่อเป็นเรือที่มีชะตากรรม 'แปลงเป็นเลเกอร์ 2504; ยังให้บริการอยู่' ได้รับมอบหมายหรือไม่?",
    "context": "CREATE TABLE table_name_14 (commissioned VARCHAR, fate VARCHAR)"
  },
  {
    "answer": "SELECT final_decommission FROM table_name_94 WHERE original_name = \"sachem\"",
    "question_en": "When was the ship originally named sachem finally decommissioned?",
    "question_th": "ในที่สุดเรือลำนี้ชื่อ Sachem ก็ถูกปลดประจำการในที่สุดเมื่อใด",
    "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_en": "What did the away team score in the game against Richmond?",
    "question_th": "ทีมเยือนได้คะแนนอะไรในเกมกับริชมอนด์?",
    "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_en": "Which player has no 0 results and multiples ties?",
    "question_th": "ผู้เล่นคนใดที่ไม่มีผลลัพธ์ 0 และเสมอกันหลายรายการ?",
    "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_en": "What is the low no result with more than 5 loss and a win ration lesser than 58.06?",
    "question_th": "ค่าต่ำสุดที่ไม่มีผลลัพธ์ด้วยการแพ้มากกว่า 5 ครั้งและอัตราการชนะน้อยกว่า 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_en": "Name the opponent for may 12",
    "question_th": "ทายชื่อคู่ต่อสู้วันที่ 12 พ.ค",
    "context": "CREATE TABLE table_name_73 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_31 WHERE loss = \"schilling (5–2)\"",
    "question_en": "Name the date for Loss of schilling (5–2)",
    "question_th": "ตั้งชื่อวันที่สูญเสียชิลลิง (5–2)",
    "context": "CREATE TABLE table_name_31 (date VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_64 WHERE date = \"may 31\"",
    "question_en": "Name the record for may 31",
    "question_th": "ตั้งชื่อบันทึกสำหรับวันที่ 31 พฤษภาคม",
    "context": "CREATE TABLE table_name_64 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(average) FROM table_name_84 WHERE interview = 8.46",
    "question_en": "What was the highest average for the contestant having an interview score of 8.46?",
    "question_th": "ค่าเฉลี่ยสูงสุดของผู้เข้าแข่งขันที่มีคะแนนสัมภาษณ์ 8.46 คืออะไร?",
    "context": "CREATE TABLE table_name_84 (average INTEGER, interview VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_45 WHERE time = \"29.816\"",
    "question_en": "What day had a time of 29.816?",
    "question_th": "วันใดมีเวลา 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_en": "What kind of car has the NASCAR Camping World Truck Series record?",
    "question_th": "รถประเภทใดที่มีสถิติ NASCAR Camping World Truck Series?",
    "context": "CREATE TABLE table_name_7 (car_make VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_6 WHERE date = \"april 6\"",
    "question_en": "Was it a home game on the date of April 6?",
    "question_th": "มันเป็นเกมเหย้าวันที่ 6 เมษายนหรือเปล่า?",
    "context": "CREATE TABLE table_name_6 (home VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_28 WHERE home = \"dallas\"",
    "question_en": "What was the date when the home team was Dallas?",
    "question_th": "เจ้าบ้านเป็นดัลลัสวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_28 (date VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT MAX(pick__number) FROM table_name_94 WHERE player = \"rhett mclane\"",
    "question_en": "What is Rhett Mclane's highest pick number?",
    "question_th": "หมายเลขเลือกสูงสุดของ Rhett Mclane คืออะไร?",
    "context": "CREATE TABLE table_name_94 (pick__number INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT MIN(pick__number) FROM table_name_9 WHERE college = \"colorado\"",
    "question_en": "What is Colorado College's lowest pick number?",
    "question_th": "หมายเลขเลือกต่ำสุดของ Colorado College คืออะไร",
    "context": "CREATE TABLE table_name_9 (pick__number INTEGER, college VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_34 WHERE college = \"northwestern\"",
    "question_en": "What player belongs to Northwestern College?",
    "question_th": "ผู้เล่นคนไหนที่อยู่ใน 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_en": "What CFL Team is Pascal Masson on?",
    "question_th": "Pascal Masson อยู่ทีม CFL อะไร?",
    "context": "CREATE TABLE table_name_76 (cfl_team VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT number_ & _name FROM table_name_28 WHERE date > 1954",
    "question_en": "What's the number & name for the date after 1954?",
    "question_th": "หมายเลขและชื่อหลังปี 2497 คืออะไร?",
    "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_en": "What's the date for princess royal class locomotive trust?",
    "question_th": "ขบวนรถจักรราศีเจ้าหญิงจะวางใจวันไหน?",
    "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_en": "What's the number & name for the description peckett 0-4-0st?",
    "question_th": "หมายเลขและชื่อคำอธิบาย 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_en": "What's the number & name for a description of lms fowler class 3f 0-6-0t?",
    "question_th": "หมายเลขและชื่อคำอธิบายของ 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_en": "Who drive 74 laps in a grid larger than 9?",
    "question_th": "ใครขับ 74 รอบในตารางที่ใหญ่กว่า 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_en": "Who is the player for St. Mary's team?",
    "question_th": "นักเตะคนไหนของทีมเซนต์แมรี?",
    "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_en": "How tall is the player from Mississippi",
    "question_th": "ผู้เล่นจากมิสซิสซิปปี้สูงเท่าไหร่",
    "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_en": "What is the player number for the player from Centenary?",
    "question_th": "หมายเลขผู้เล่นของผู้เล่นจาก 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_en": "How tall is player 42 from Long Beach State?",
    "question_th": "ผู้เล่น 42 จาก 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_en": "What network has lap-by-laps by Bill Flemming, and Pit reporter Chris Economaki?",
    "question_th": "เครือข่ายใดที่ Bill Flemming และนักข่าว Pit 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_en": "Which lap-by-lap has a year after 1973, with pit reporter Bill Flemming?",
    "question_th": "การตักต่อรอบใดที่มีเวลาหนึ่งปีหลังจากปี 1973 กับนักข่าวหลุม 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_en": "What is the lowest round for Fort Lauderdale, Florida, United States, with a win and a time of 3:38?",
    "question_th": "รอบต่ำสุดคือเมืองฟอร์ต ลอเดอร์เดล ฟลอริดา สหรัฐอเมริกา โดยชนะด้วยเวลา 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_en": "How many rounds have a time of 2:18?",
    "question_th": "กี่รอบมีเวลา 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_en": "What is the lowest Grid with fewer than 65 Laps and with Driver Tim Schenken?",
    "question_th": "กริดต่ำสุดที่มีรอบน้อยกว่า 65 รอบและกับนักแข่ง 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_en": "What Driver has 1 in Grid?",
    "question_th": "ไดร์เวอร์ตัวไหนมี 1 ใน Grid?",
    "context": "CREATE TABLE table_name_98 (driver VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT time_retired FROM table_name_75 WHERE driver = \"howden ganley\"",
    "question_en": "What is Driver Howden Ganley's Time/Retired?",
    "question_th": "เวลาของ Driver Howden Ganley / เกษียณคืออะไร?",
    "context": "CREATE TABLE table_name_75 (time_retired VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_45 WHERE home_team = \"hawthorn\"",
    "question_en": "On what date was Hawthorn the home team?",
    "question_th": "ฮอว์ธอร์นเป็นเจ้าบ้านวันไหน?",
    "context": "CREATE TABLE table_name_45 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_2 WHERE venue = \"junction oval\"",
    "question_en": "Who was the away team at Junction Oval?",
    "question_th": "ทีมเยือนจังชั่นโอวัลคือใคร?",
    "context": "CREATE TABLE table_name_2 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_93 WHERE venue = \"mcg\"",
    "question_en": "Which home team played at MCG?",
    "question_th": "เจ้าบ้านทีมไหนเล่นที่เอ็มซีจี?",
    "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_en": "Tell me the sum of draws for position less than 15 with played more than 38",
    "question_th": "บอกผลรวมเสมอสำหรับตำแหน่งน้อยกว่า 15 และเล่นมากกว่า 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_en": "Name the sum of played for position less than 9 and draws more than 19 with goals against more than 27",
    "question_th": "ตั้งชื่อผลรวมของการเล่นในตำแหน่งที่น้อยกว่า 9 และเสมอมากกว่า 19 โดยมีเป้าหมายต่อมากกว่า 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_en": "Name the recorded for translation of sleep my love, good night",
    "question_th": "ตั้งชื่อบันทึกการแปลคำว่า sleep my love ราตรีสวัสดิ์",
    "context": "CREATE TABLE table_name_16 (recorded VARCHAR, translation VARCHAR)"
  },
  {
    "answer": "SELECT winter FROM table_name_99 WHERE year = 1906",
    "question_en": "What is the Winter in 1906?",
    "question_th": "ฤดูหนาวในปี 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_en": "Which driver has a Time/Retired of 2:45:46.2?",
    "question_th": "นักแข่งคนไหนมีเวลา/เกษียณ 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_en": "What position for the western michigan product picked ahead of 312?",
    "question_th": "ตำแหน่งใดของผลิตภัณฑ์มิชิแกนตะวันตกที่เลือกไว้ก่อน 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_en": "What date did the Chicago Bears beat the Green bay Packers 31-20?",
    "question_th": "ชิคาโก้ แบร์ส ชนะ กรีนเบย์ แพ็คเกอร์ส 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_en": "When were the boston bruins the home team?",
    "question_th": "บอสตัน บรูอินส์ เจอเจ้าบ้านเมื่อไหร่?",
    "context": "CREATE TABLE table_name_95 (date VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT nat FROM table_name_50 WHERE moving_from = \"bordeaux\"",
    "question_en": "In what nation is Bordeaux?",
    "question_th": "บอร์กโดซ์อยู่ประเทศอะไร",
    "context": "CREATE TABLE table_name_50 (nat VARCHAR, moving_from VARCHAR)"
  },
  {
    "answer": "SELECT lead FROM table_name_89 WHERE nation = \"norway\"",
    "question_en": "Who has the lead in Norway?",
    "question_th": "ใครเป็นผู้นำในนอร์เวย์?",
    "context": "CREATE TABLE table_name_89 (lead VARCHAR, nation VARCHAR)"
  },
  {
    "answer": "SELECT skip FROM table_name_83 WHERE second = \"joan mccusker\"",
    "question_en": "Which Skip will play Joan Mccusker?",
    "question_th": "Skip คนไหนจะเล่นเป็น Joan McCusker?",
    "context": "CREATE TABLE table_name_83 (skip VARCHAR, second VARCHAR)"
  },
  {
    "answer": "SELECT alternate FROM table_name_58 WHERE nation = \"sweden\"",
    "question_en": "Who is the Alternate for Sweden?",
    "question_th": "ใครคือผู้สำรองของสวีเดน?",
    "context": "CREATE TABLE table_name_58 (alternate VARCHAR, nation VARCHAR)"
  },
  {
    "answer": "SELECT third FROM table_name_56 WHERE nation = \"germany\"",
    "question_en": "Who is the third alternate for Germany?",
    "question_th": "ใครคือตัวสำรองคนที่ 3 ของเยอรมนี?",
    "context": "CREATE TABLE table_name_56 (third VARCHAR, nation VARCHAR)"
  },
  {
    "answer": "SELECT translation FROM table_name_78 WHERE date = 1986",
    "question_en": "Which translation was published in 1986?",
    "question_th": "ฉบับแปลใดที่ตีพิมพ์ในปี 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_en": "Which title has content including mysticism, spiritualism, and a translation of the minaret of light?",
    "question_th": "ชื่อใดมีเนื้อหาทั้งเรื่องเวทย์มนต์ ลัทธิผีปิศาจ และการแปลสุเหร่าแห่งแสง",
    "context": "CREATE TABLE table_name_86 (title VARCHAR, content VARCHAR, translation VARCHAR)"
  },
  {
    "answer": "SELECT employees__world_ FROM table_name_60 WHERE revenue__mil€_ = \"104.000\"",
    "question_en": "What is hte nuumber of employees that has a revenue of 104.000?",
    "question_th": "จำนวนพนักงานที่มีรายได้ 104.000 คือเท่าใด",
    "context": "CREATE TABLE table_name_60 (employees__world_ VARCHAR, revenue__mil€_ VARCHAR)"
  },
  {
    "answer": "SELECT headquarters FROM table_name_23 WHERE employees__world_ = 100",
    "question_en": "Which HQ is associated with a number of employees of 100?",
    "question_th": "สำนักงานใหญ่ใดที่เกี่ยวข้องกับพนักงานจำนวน 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_en": "What is the low silver medal total for nations with over 1 bronze ranked above 11?",
    "question_th": "เหรียญเงินรวมที่ต่ำสำหรับประเทศที่มีมากกว่า 1 เหรียญทองแดงในอันดับที่สูงกว่า 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_en": "What is the high total for nations with 1 gold and over 1 bronze?",
    "question_th": "ยอดรวมสูงสุดของประเทศที่มี 1 เหรียญทองและมากกว่า 1 เหรียญทองแดงเป็นเท่าใด",
    "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_en": "What was the home team with a 4-6-0 record?",
    "question_th": "เจ้าบ้านมีสถิติ 4-6-0 เป็นยังไงบ้าง?",
    "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_en": "What was the decision of the game with Washington as the visitor team on October 13?",
    "question_th": "การตัดสินใจของเกมกับวอชิงตันในฐานะทีมเยือนเมื่อวันที่ 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_en": "What is the average NGC number of everything with a Right ascension (J2000) of 05h33m30s?",
    "question_th": "จำนวน NGC เฉลี่ยของทุกสิ่งที่มีการขึ้นสู่ตำแหน่งทางขวา (J2000) ที่ 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__ = \"°12′43″\"",
    "question_en": "What is the right ascension (J2000) with a Declination (J2000) of °12′43″, is a constellation of dorado, and has an NGC number larger than 2068?",
    "question_th": "อะไรคือการเสด็จขึ้นสู่สวรรค์ที่ถูกต้อง (J2000) โดยมีความเบี่ยงเบน (J2000) ที่ °12′43″ เป็นกลุ่มดาวโดราโด และมีจำนวน NGC มากกว่าปี 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_en": "What type of object has an NGC number higher than 2090 and has a right ascension (J2000) of 05h52m19s?",
    "question_th": "วัตถุประเภทใดที่มีหมายเลข NGC สูงกว่าปี 2090 และมีการขึ้นสู่ตำแหน่งที่ถูกต้อง (J2000) ที่ 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_en": "How is the crowd of the team Geelong?",
    "question_th": "ฝูงชนของทีมจีหลงเป็นอย่างไรบ้าง?",
    "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_en": "Who has the smallest crowd in the Venue of Arden Street Oval?",
    "question_th": "ใครมีฝูงชนน้อยที่สุดใน 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_en": "What team has a Venue at Lake Oval?",
    "question_th": "ทีมใดมีสถานที่จัดงานที่ 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ères\"",
    "question_en": "What day is the grand prix de trois-rivières?",
    "question_th": "Grand Prix de Trois-rivières คือวันไหน?",
    "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_en": "What race is on aug 4 with ron fellows?",
    "question_th": "วันที่ 4 ส.ค. กับ 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ères\"",
    "question_en": "What is the distance/duration on sept 5 of le grand prix de trois-rivières?",
    "question_th": "ระยะทาง/ระยะเวลาในวันที่ 5 กันยายน ของเลอ กรังด์ปรีซ์ เดอ ทรัวส์-ริเวียร์ เป็นเท่าใด",
    "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_en": "What is terry's record when he fights julio paulino?",
    "question_th": "บันทึกของเทอร์รี่เมื่อเขาต่อสู้กับฮูลิโอ เปาลิโนคืออะไร?",
    "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_en": "How long is the ko (punch) fight against scott smith?",
    "question_th": "โก(หมัด)สู้กับ สกอตต์ สมิธ นานแค่ไหน?",
    "context": "CREATE TABLE table_name_78 (time VARCHAR, method VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT AVG(feet) FROM table_name_11 WHERE latitude__n_ = \"35°48′35″\" AND metres < 8 OFFSET 047",
    "question_en": "What is the average feet that has a Latitude (N) of 35°48′35″, and under 8,047m?",
    "question_th": "ฟุตเฉลี่ยที่มีละติจูด (N) อยู่ที่ 35°48′35″ และต่ำกว่า 8,047 ม. คือเท่าใด",
    "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°34′06″\" AND prominence__m_ < 1 OFFSET 701",
    "question_en": "What is the lowest feet total with a Longitude (E) of 76°34′06″, and a Prominence (m) under 1,701?",
    "question_th": "ฟุตรวมต่ำสุดที่มีลองจิจูด (E) 76°34′06″ และความโดดเด่น (m) ต่ำกว่า 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_en": "What Player comes from the Hometown of Wichita, KS?",
    "question_th": "ผู้เล่นคนไหนที่มาจากบ้านเกิดของ 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_en": "For the Player from Brampton, ON what is their NBA Draft status?",
    "question_th": "สำหรับผู้เล่นจาก Brampton สถานะ NBA Draft ของพวกเขาคืออะไร",
    "context": "CREATE TABLE table_name_99 (nba_draft VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_69 WHERE player = \"perry ellis\"",
    "question_en": "What was the College of Player Perry Ellis?",
    "question_th": "วิทยาลัยผู้เล่น Perry Ellis คืออะไร",
    "context": "CREATE TABLE table_name_69 (college VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MIN(figures) FROM table_name_24 WHERE free = 556",
    "question_en": "What is the lowest figure score when the free is 556?",
    "question_th": "คะแนนตัวเลขต่ำสุดเมื่อฟรีคือ 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_en": "What is the size of the crowd for the game where the away team South Melbourne played?",
    "question_th": "ขนาดของฝูงชนในเกมที่ทีมเยือน เซาธ์ เมลเบิร์น เล่นคือเท่าใด?",
    "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_en": "What is the home team score when the crowd was larger than 30,100?",
    "question_th": "เมื่อแฟนบอลเกิน 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_en": "How much did the home team Hawthorn score?",
    "question_th": "เจ้าบ้านฮอว์ธอร์นทำประตูได้เท่าไหร่?",
    "context": "CREATE TABLE table_name_5 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(crowd) FROM table_name_2 WHERE away_team = \"footscray\"",
    "question_en": "What was the crowd size for the game at Footscray?",
    "question_th": "จำนวนผู้ชมในเกมที่ Footscray คือเท่าใด?",
    "context": "CREATE TABLE table_name_2 (crowd VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_35 WHERE home = \"phoenix\"",
    "question_en": "Who was the visitor when phoenix was at home?",
    "question_th": "ใครคือผู้มาเยือนตอนที่ฟีนิกซ์อยู่ที่บ้าน?",
    "context": "CREATE TABLE table_name_35 (visitor VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_31 WHERE visitor = \"philadelphia\"",
    "question_en": "What day did philadelphia visit?",
    "question_th": "ฟิลาเดลเฟียไปเที่ยววันไหน?",
    "context": "CREATE TABLE table_name_31 (date VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT song FROM table_name_86 WHERE picturization = \"vijay\"",
    "question_en": "Which song has a Picturization of Vijay?",
    "question_th": "เพลงไหนมีรูปวีเจย์บ้างคะ?",
    "context": "CREATE TABLE table_name_86 (song VARCHAR, picturization VARCHAR)"
  },
  {
    "answer": "SELECT original_air_date FROM table_name_64 WHERE production_code = \"ad1c13\"",
    "question_en": "What is the air date for the episode with production code ad1c13?",
    "question_th": "ตอนที่มีรหัสการผลิต 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_en": "Who wrote the episode that has the production code ad1c05?",
    "question_th": "ใครเป็นคนเขียนตอนที่มีรหัสการผลิต 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_en": "What is the title of the episode with production code ad1c07?",
    "question_th": "ชื่อเรื่องของตอนที่มีรหัสการผลิต 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_en": "What is the low draw total for yarragon teams with over 3 wins, and under 966 against?",
    "question_th": "ผลรวมการจับสลากต่ำสำหรับทีม yarragon ที่ชนะมากกว่า 3 ครั้งและต่ำกว่า 966 คืออะไร?",
    "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_en": "What is the General classification for a points classification leader of Bradley Wiggins?",
    "question_th": "การจัดประเภททั่วไปสำหรับผู้นำการจัดประเภทคะแนนของ 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_en": "What is the general classification for a mountains value of Christophe Moreau and a Team winner of Team CSC?",
    "question_th": "การจัดประเภททั่วไปสำหรับค่าภูเขาของ Christophe Moreau และผู้ชนะประเภททีมของ 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_en": "What is the frequency of KQLX?",
    "question_th": "ความถี่ของ 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_en": "What is the call sign of 1200 am?",
    "question_th": "สัญญาณเรียกขานเวลา 12.00 น. คืออะไร?",
    "context": "CREATE TABLE table_name_9 (call_sign VARCHAR, frequency VARCHAR)"
  },
  {
    "answer": "SELECT frequency FROM table_name_67 WHERE format = \"talk\"",
    "question_en": "What is the frequency of the talk station?",
    "question_th": "ความถี่ของสถานีพูดคุยคือเท่าใด?",
    "context": "CREATE TABLE table_name_67 (frequency VARCHAR, format VARCHAR)"
  },
  {
    "answer": "SELECT frequency FROM table_name_36 WHERE call_sign = \"kfnw\"",
    "question_en": "What is the frequency of KFNW?",
    "question_th": "ความถี่ของ 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_en": "What is the constructor for the VII Race of Champions?",
    "question_th": "ตัวสร้างสำหรับ 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_en": "What is the name of the race won by driver Carlos Reutemann?",
    "question_th": "ชื่อของการแข่งขันที่ชนะโดยนักแข่ง 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_en": "what is the date when the home is st. louis?",
    "question_th": "บ้านอยู่วันที่เท่าไหร่ หลุยส์?",
    "context": "CREATE TABLE table_name_30 (date VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_34 WHERE date = \"march 12\"",
    "question_en": "Where is the home on march 12?",
    "question_th": "บ้านวันที่ 12 มีนาคม อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_34 (home VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT decision FROM table_name_8 WHERE date = \"march 18\"",
    "question_en": "what is the decision on the date march 18?",
    "question_th": "การตัดสินใจในวันที่ 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_en": "What is the total of TCKL in 2000 with a P/KO RET less than 14?",
    "question_th": "จำนวนรวมของ TCKL ในปี 2000 โดยมี P/KO RET น้อยกว่า 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_en": "What is the highest YARDS with a TCKL more than 51 and less than 2 SACK?",
    "question_th": "YARDS สูงสุดที่มี TCKL มากกว่า 51 และน้อยกว่า 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_en": "What is the total of all YARDS with 0 SACK and less than 14 P/KO RET?",
    "question_th": "ผลรวมของหลาทั้งหมดที่มี 0 กระสอบและน้อยกว่า 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_en": "What is the pick for West Virginia college?",
    "question_th": "วิทยาลัยเวสต์เวอร์จิเนียเลือกอะไร?",
    "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_en": "What round has a position of F/C from Iowa College?",
    "question_th": "รอบใดมีตำแหน่ง F/C จาก 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_en": "What nationality has a pick of 1?",
    "question_th": "สัญชาติอะไรให้เลือก 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_en": "Which nationality has a round of 1, and F position from Louisville?",
    "question_th": "สัญชาติใดได้รอบ 1 และตำแหน่ง F จากลุยวิลล์?",
    "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_en": "Which team plays at the Arden Street Oval?",
    "question_th": "ทีมใดเล่นที่ 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_en": "Where does Carlton play?",
    "question_th": "คาร์ลตันเล่นที่ไหน?",
    "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_en": "What was the date of the game in which the home team was the Grizzlies and the visiting team was the Timberwolves?",
    "question_th": "แมตช์วันที่เท่าไหร่เจ้าบ้านคือกริซลี่ส์และทีมเยือนคือทิมเบอร์วูล์ฟส์?",
    "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_en": "What is the airing date for costume comedy that has 20 episodes?",
    "question_th": "คอสตูมคอมเมดี้ที่มี 20 ตอน ออกอากาศวันไหนคะ?",
    "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_en": "What year was 7th heaven made?",
    "question_th": "สวรรค์ชั้น 7 สร้างปีไหน?",
    "context": "CREATE TABLE table_name_24 (year VARCHAR, film VARCHAR)"
  },
  {
    "answer": "SELECT film FROM table_name_27 WHERE year = \"1999\"",
    "question_en": "What film was made in 1999?",
    "question_th": "ภาพยนตร์เรื่องใดที่ถูกสร้างขึ้นในปี 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_en": "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?",
    "question_th": "เมืองใดที่มีความสูง (ฟุต) มากกว่า 328.1, อันดับสูงกว่า 56, ความสูง (m) เท่ากับ 103 และชั้นน้อยกว่า 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ölntriangle\" AND rank < 63",
    "question_en": "what is the total of floors when the name is kölntriangle and rank is less thank 63?",
    "question_th": "เมื่อชื่อเป็นkölntriangleและอันดับน้อยกว่าขอบคุณ 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_en": "what is the lowest height (ft) for messeturm and more than 55 floors?",
    "question_th": "ความสูงต่ำสุด (ฟุต) สำหรับอาคารเมสเซิร์มและมากกว่า 55 ชั้นคือเท่าใด",
    "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_en": "what is the rank for the city of cologne, floors is 34 and height (ft) is more than 452.8?",
    "question_th": "เมืองโคโลญจน์ ชั้น 34 และความสูง (ฟุต) มากกว่า 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–1\" AND date = \"1 november 2006\"",
    "question_en": "Which Group position has Result F–A of 0–1 on 1 november 2006?",
    "question_th": "ตำแหน่งใดของกลุ่มที่มีผล F–A เท่ากับ 0–1 ในวันที่ 1 พฤศจิกายน พ.ศ. 2549",
    "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_en": "What club is R. H. C. Human who has a right arm medium pace bowling style a member of?",
    "question_th": "RHC Human ที่มีรูปแบบการเล่นโบว์ลิ่งแบบแขนขวาปานกลางเป็นสมาชิกสโมสรใด?",
    "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_en": "What is the birth date of A. J. Holmes who has a right-handed batting style?",
    "question_th": "วันเกิดของ AJ Holmes ที่มีลักษณะการตีลูกถนัดขวาคือวันที่เท่าไร?",
    "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_en": "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)?",
    "question_th": "ลีลาการตีบอลของบุคคลที่เล่นโบว์ลิ่งแบบก้าวกลางแขนขวา และเกิดวันที่ 10 กุมภาพันธ์ พ.ศ. 2453 (อายุ 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 = \"živko gocić category:articles with hcards\"",
    "question_en": "What is the weight for the v t e of živko gocić category:articles with hcards?",
    "question_th": "น้ำหนักของ vte ของหมวดหมู่ živko gocić:บทความที่มี hcard คืออะไร?",
    "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ško pijetlović category:articles with hcards\"",
    "question_en": "What is the weight of the v t e of duško pijetlović category:articles with hcards?",
    "question_th": "น้ำหนักของ vte ของหมวดหมู่ duško pijetlović: บทความที่มี hcard คืออะไร?",
    "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_en": "What was the total for David O'Callaghan, and a Tally of 1-9?",
    "question_th": "David O'Callaghan และคะแนนรวม 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_en": "What is the opposition when the tally was 0-11?",
    "question_th": "ฝ่ายตรงข้ามเมื่อรวมเป็น 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_en": "What is the tally in Kilkenny county with 10 as the total and opposition of Waterford?",
    "question_th": "จำนวนในคิลเคนนีเคาน์ตีโดย 10 เป็นจำนวนรวมและฝ่ายตรงข้ามของวอเตอร์ฟอร์ดเป็นเท่าใด",
    "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_en": "What is the average weeks of a song with a larger than 3 position after 1977?",
    "question_th": "สัปดาห์เฉลี่ยของเพลงที่มีอันดับมากกว่า 3 หลังจากปี 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_en": "What is the sum of the weeks on a chart a song with a position less than 1 haas?",
    "question_th": "ผลรวมของสัปดาห์บนชาร์ตเพลงที่มีอันดับน้อยกว่า 1 ฮาสเป็นเท่าใด",
    "context": "CREATE TABLE table_name_92 (weeks_on_chart INTEGER, position INTEGER)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_name_5 WHERE position < 1",
    "question_en": "What is the earliest year a song with a position less than 1 has?",
    "question_th": "เพลงที่มีอันดับน้อยกว่า 1 มีปีแรกสุดคือเพลงใด?",
    "context": "CREATE TABLE table_name_5 (year INTEGER, position INTEGER)"
  },
  {
    "answer": "SELECT tyre FROM table_name_81 WHERE entrant = \"scuderia milano\"",
    "question_en": "what is the tyre when the entrant is scuderia milano?",
    "question_th": "ยางอะไรเมื่อผู้เข้าร่วมคือ 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_en": "who is the driver with the engine era 1.5 l6 s and the chassis is era b?",
    "question_th": "ใครคือคนขับที่มีเครื่องยนต์ยุค 1.5 l6 s และแชสซียุคบีคือใคร?",
    "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_en": "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?",
    "question_th": "ใครคือผู้สร้างเมื่อยางเป็น d เครื่องยนต์คือ talbot 23cv 4.5 l6 แชสซีคือ talbot-lago t26c และผู้เข้าร่วมคือ 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_en": "What is KK -1 if KK -3 is 1,100?",
    "question_th": "KK -1 คืออะไรถ้า KK -3 เท่ากับ 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_en": "What is KK -5 if KK - 3 is 310?",
    "question_th": "KK -5 คืออะไรถ้า KK - 3 คือ 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_en": "What is KK - 5 if KK - 1 is 1,067?",
    "question_th": "KK - 5 คืออะไรถ้า KK - 1 คือ 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_en": "Who is the Winner with a Time of 1:12.00 and Melvin A. Holland as the Jockey?",
    "question_th": "ใครคือผู้ชนะด้วยเวลา 1:12.00 น. และ Melvin A. Holland เป็นผู้จัดรายการ",
    "context": "CREATE TABLE table_name_74 (winner VARCHAR, time VARCHAR, jockey VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_71 WHERE purse = \"$83,925\"",
    "question_en": "Which Year has a Purse of $83,925?",
    "question_th": "ปีใดมีกระเป๋าเงิน $83,925?",
    "context": "CREATE TABLE table_name_71 (year VARCHAR, purse VARCHAR)"
  },
  {
    "answer": "SELECT purse FROM table_name_10 WHERE year = \"1998\"",
    "question_en": "What is the Purse listed for the Year of 1998?",
    "question_th": "กระเป๋าเงินที่ระบุไว้ในปี 1998 คืออะไร?",
    "context": "CREATE TABLE table_name_10 (purse VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_9 WHERE year = \"2000\"",
    "question_en": "What's the Winner in the Year of 2000?",
    "question_th": "ผู้ชนะในปี 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_en": "What's the WInner with a TIme of 1:10.60, and Owner of Leslie Combs II?",
    "question_th": "WInner ที่มีเวลา 1:10.60 และเจ้าของ 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_en": "Who is the Trainer with the Year of 2013?",
    "question_th": "ใครคือเทรนเนอร์ประจำปี 2556?",
    "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_en": "How many points did the away team of st kilda score?",
    "question_th": "ทีมเยือนเซนต์คิลดาทำคะแนนได้กี่แต้ม?",
    "context": "CREATE TABLE table_name_84 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_94 WHERE result = \"l 13–9\"",
    "question_en": "Tell me the date with result of l 13–9",
    "question_th": "บอกวันที่มีผล l 13–9 ให้ฉันหน่อย",
    "context": "CREATE TABLE table_name_94 (date VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(week) FROM table_name_67 WHERE result = \"w 35–7\"",
    "question_en": "Tell me the total number of week for w 35–7",
    "question_th": "บอกจำนวนสัปดาห์ทั้งหมดสำหรับ w 35–7 หน่อย",
    "context": "CREATE TABLE table_name_67 (week VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT AVG(week) FROM table_name_70 WHERE result = \"l 34–24\"",
    "question_en": "Tell me the average week for result of l 34–24",
    "question_th": "บอกสัปดาห์เฉลี่ยสำหรับผลลัพธ์ของ l 34–24",
    "context": "CREATE TABLE table_name_70 (week INTEGER, result VARCHAR)"
  },
  {
    "answer": "SELECT czechoslovak_president FROM table_name_99 WHERE tenure_begin = \"1950\"",
    "question_en": "Who was the President of Czechoslovakia when an ambassador's tenure began in 1950?",
    "question_th": "ใครคือประธานาธิบดีเชโกสโลวาเกียเมื่อเอกอัครราชทูตเริ่มดำรงตำแหน่งในปี 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_en": "What is the total share for an episode with an air date of November 19, 2007?",
    "question_th": "ส่วนแบ่งรวมของตอนซึ่งออกอากาศวันที่ 19 พฤศจิกายน 2550 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_2 (share INTEGER, air_date VARCHAR)"
  },
  {
    "answer": "SELECT manufacturer FROM table_name_35 WHERE time_retired = \"+15.665\"",
    "question_en": "Which manufacturer has a Time/Retired of +15.665?",
    "question_th": "ผู้ผลิตรายใดมีเวลา/เกษียณที่ +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_en": "What were the laps of aprilia with a grid of 10?",
    "question_th": "Aprilia มีตาราง 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_en": "What was the size of the crowd at the game played at Junction Oval?",
    "question_th": "ขนาดของฝูงชนในเกมที่เล่นที่ 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_en": "When was the game when North Melbourne was the home team?",
    "question_th": "เกมเมื่อไรที่ นอร์ท เมลเบิร์น เป็นเจ้าบ้าน?",
    "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_en": "Which School/Club Team does Andrew Jones play for?",
    "question_th": "Andrew Jones เล่นให้กับทีมโรงเรียน/สโมสรใด",
    "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_en": "Which School/Club Team did not make it to round 2?",
    "question_th": "ทีมโรงเรียน/สโมสรใดไม่ผ่านเข้ารอบ 2?",
    "context": "CREATE TABLE table_name_5 (school_club_team VARCHAR, round INTEGER)"
  },
  {
    "answer": "SELECT player FROM table_name_16 WHERE pick = \"24\"",
    "question_en": "Which player is the 24 pick?",
    "question_th": "ผู้เล่นคนไหนคือตัวเลือก 24?",
    "context": "CREATE TABLE table_name_16 (player VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT AVG(round) FROM table_name_72 WHERE pick = \"16\"",
    "question_en": "What is the average round of the number 16 pick?",
    "question_th": "รอบเฉลี่ยของการเลือกหมายเลข 16 คือเท่าไร?",
    "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_en": "How many games were lost where the win percentage is smaller than 16.7 and the played games is 3?",
    "question_th": "มีกี่เกมที่แพ้โดยที่เปอร์เซ็นต์การชนะน้อยกว่า 16.7 และเกมที่เล่นคือ 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_en": "Where is pine valley?",
    "question_th": "หุบเขาไพน์อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_23 (location VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT MIN(rank) FROM table_name_58 WHERE location = \"augusta\"",
    "question_en": "What is augusta's low rank?",
    "question_th": "อันดับต่ำของออกัสต้าคืออะไร?",
    "context": "CREATE TABLE table_name_58 (rank INTEGER, location VARCHAR)"
  },
  {
    "answer": "SELECT model FROM table_name_52 WHERE gcm__kg__technical_capacity = \"42000\"",
    "question_en": "Which Model has the GCM (kg) Technical Capacity of 42000?",
    "question_th": "รุ่นใดมีความจุทางเทคนิค GCM (กก.) 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_en": "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?",
    "question_th": "รุ่นใดมีความจุทางเทคนิค GCM (กก.) 35,000, ความจุทางเทคนิค GVM (กก.) 16,000 และ Cummins Interact 6.0 ยูโร III (อินเตอร์คูลเลอร์เทอร์โบ) สำหรับเครื่องยนต์",
    "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_en": "Which character won before 2006?",
    "question_th": "ตัวละครตัวไหนชนะก่อนปี 2549?",
    "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_en": "In 2004 who was favourite maa?",
    "question_th": "ในปี 2004 แม่คนโปรดคือใคร?",
    "context": "CREATE TABLE table_name_6 (character VARCHAR, category VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_33 WHERE year > 2004",
    "question_en": "What were the results after 2004?",
    "question_th": "ผลลัพธ์หลังจากปี 2547 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_33 (result VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT category FROM table_name_62 WHERE result = \"won\" AND year < 2007",
    "question_en": "In 2007 what category won?",
    "question_th": "ในปี 2550 ได้รับรางวัลประเภทใด?",
    "context": "CREATE TABLE table_name_62 (category VARCHAR, result VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT d_48_√ FROM table_name_97 WHERE d_40_√ = \"d 37\"",
    "question_en": "What's the D 48 √ when the D 40 √ is D 37?",
    "question_th": "D 48 √ คืออะไรเมื่อ D 40 √ คือ D 37?",
    "context": "CREATE TABLE table_name_97 (d_48_√ VARCHAR, d_40_√ VARCHAR)"
  },
  {
    "answer": "SELECT d_42_√ FROM table_name_14 WHERE d_46_√ = \"majority→\"",
    "question_en": "What's the D 42 √ when D 46 √ is majority→?",
    "question_th": "D 42 √ คืออะไรเมื่อ D 46 √ เป็นเสียงข้างมาก→",
    "context": "CREATE TABLE table_name_14 (d_42_√ VARCHAR, d_46_√ VARCHAR)"
  },
  {
    "answer": "SELECT d_40_√ FROM table_name_23 WHERE d_43_√ = \"d 14\"",
    "question_en": "What's the D 40 √ when D 43 √ is d 14?",
    "question_th": "D 40 √ คืออะไรเมื่อ D 43 √ คือ d 14?",
    "context": "CREATE TABLE table_name_23 (d_40_√ VARCHAR, d_43_√ VARCHAR)"
  },
  {
    "answer": "SELECT d_42_√ FROM table_name_59 WHERE d_44_√ = \"majority→\"",
    "question_en": "What's the D 42 √ when D 44 √ is majority→?",
    "question_th": "D 42 √ คืออะไรเมื่อ D 44 √ เป็นเสียงข้างมาก→",
    "context": "CREATE TABLE table_name_59 (d_42_√ VARCHAR, d_44_√ VARCHAR)"
  },
  {
    "answer": "SELECT d_44_√ FROM table_name_27 WHERE d_46_√ = \"d 26\"",
    "question_en": "What's the D 44 √ when D 46 √ is d 26?",
    "question_th": "D 44 √ คืออะไรเมื่อ D 46 √ คือ d 26?",
    "context": "CREATE TABLE table_name_27 (d_44_√ VARCHAR, d_46_√ VARCHAR)"
  },
  {
    "answer": "SELECT d_42_√ FROM table_name_13 WHERE d_43_√ = \"r 5\"",
    "question_en": "What's the D 42 √ when D 43 √ is r 5?",
    "question_th": "D 42 √ คืออะไรเมื่อ D 43 √ เป็น r 5?",
    "context": "CREATE TABLE table_name_13 (d_42_√ VARCHAR, d_43_√ VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(founded) FROM table_name_67 WHERE house_name = \"benue\"",
    "question_en": "How many benue houses have been founded?",
    "question_th": "ก่อตั้งบ้าน Benue จำนวนกี่หลัง?",
    "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_en": "When is the earliest year founded for houses named after the river benue?",
    "question_th": "เมื่อใดคือปีแรกสุดที่ก่อตั้งบ้านที่ตั้งชื่อตามแม่น้ำเบนู?",
    "context": "CREATE TABLE table_name_56 (founded INTEGER, named_after VARCHAR)"
  },
  {
    "answer": "SELECT composition FROM table_name_37 WHERE founded = 1976",
    "question_en": "What composition was founded in 1976?",
    "question_th": "องค์ประกอบใดที่ก่อตั้งขึ้นในปี 1976?",
    "context": "CREATE TABLE table_name_37 (composition VARCHAR, founded VARCHAR)"
  },
  {
    "answer": "SELECT colours FROM table_name_93 WHERE house_name = \"ogun\"",
    "question_en": "What colours have a House Name of ogun?",
    "question_th": "ชื่อบ้านของโอกุนมีสีอะไร?",
    "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_en": "What's the average attendance on january 6, 2008?",
    "question_th": "การเข้าร่วมโดยเฉลี่ยในวันที่ 6 มกราคม 2551 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_34 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_43 WHERE visitor = \"spurs\"",
    "question_en": "What was the score when the spurs were the visitors?",
    "question_th": "เมื่อสเปอร์สเป็นผู้มาเยือนได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_43 (score VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT SUM(gnis_feature_id) FROM table_name_64 WHERE county = \"idaho\"",
    "question_en": "What is the total GNIS Feature ID with a County of idaho?",
    "question_th": "ID คุณลักษณะ GNIS รวมกับเคาน์ตี้ไอดาโฮคือเท่าใด",
    "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_en": "What is the lowest GNIS Feature ID from County of sheridan?",
    "question_th": "รหัสคุณลักษณะ GNIS ต่ำสุดจากเขตเชอริแดนคืออะไร",
    "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_en": "Which state has a Name of diamond lake, and a GNIS Feature ID of 1579127?",
    "question_th": "รัฐใดมีชื่อของทะเลสาบเพชร และรหัสคุณลักษณะ GNIS คือ 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_en": "Who directed the episode written cyrus nowrasteh?",
    "question_th": "ใครกำกับตอนที่เขียนว่า 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_en": "What is the Rank (Pakistan) of the mountain that has a World Rank smaller than 11 and a Height smaller than 8126?",
    "question_th": "อันดับ (ปากีสถาน) ของภูเขาที่มีอันดับโลกน้อยกว่า 11 และความสูงน้อยกว่า 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_en": "Which 2006 tournament had a 4R performance in 2001?",
    "question_th": "ทัวร์นาเมนต์ใดในปี 2549 มีประสิทธิภาพ 4R ในปี 2544",
    "context": "CREATE TABLE table_name_96 (Id VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_79 WHERE 2004 = \"1r\" AND 1998 = \"2r\"",
    "question_en": "Which tournament had a performance of 1R in 2004 and 2R in 1998?",
    "question_th": "ทัวร์นาเมนต์ใดมีผลงาน 1R ในปี 2547 และ 2R ในปี 2541",
    "context": "CREATE TABLE table_name_79 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 1998 FROM table_name_14 WHERE 2007 = \"3r\"",
    "question_en": "Which 1998 tournament had a performance of 3R in 2007?",
    "question_th": "ทัวร์นาเมนต์ใดในปี 1998 มีผลงาน 3R ในปี 2550",
    "context": "CREATE TABLE table_name_14 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2005 FROM table_name_14 WHERE 2006 = \"1r\" AND 2002 = \"1r\"",
    "question_en": "What's the name of the 2005 tournament that has a 1R in both 2006 and 2002?",
    "question_th": "ชื่อของทัวร์นาเมนต์ปี 2548 ที่มี 1R ทั้งในปี 2549 และ 2545 คืออะไร",
    "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_en": "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?",
    "question_th": "ในช่วงสิ้นปีงบประมาณที่ผ่านมาปี 1980 ซึ่งมี % ของ GDP ต่ำสุด-สูงที่ 83.4-84.4 และหนี้สาธารณะ (พันล้านเหรียญสหรัฐ) น้อยกว่า 7,552 สิ่งที่จะเป็นหนี้รวมเฉลี่ยในสกุลเงินล้านเหรียญสหรัฐที่ไม่ยุบตัว ในปีดังกล่าว?",
    "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_en": "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.?",
    "question_th": "สำหรับสิ้นปีงบประมาณที่มีหนี้สาธารณะ (พันล้านดอลลาร์) สูงกว่า 236.8 และเมื่อพิจารณาจาก % ของ GDP ระดับต่ำ-สูงที่ 33.4 แล้วผลรวมของจำนวนหนี้รวมในมูลค่าสินทรัพย์ที่ไม่ยุบตัวมูลค่าหลายพันล้านดอลลาร์คืออะไร?",
    "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_en": "What player was selected in Round 6?",
    "question_th": "ผู้เล่นคนใดได้รับเลือกในรอบที่ 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_en": "What is the nationality of the player who played for the Peterborough Petes (OHL)?",
    "question_th": "นักเตะที่เล่นให้กับทีมปีเตอร์โบโร่ พีทส์ (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_en": "Which round was Mike Peca (C) of Canada selected in?",
    "question_th": "Mike Peca (C) จากแคนาดาได้รับการคัดเลือกรอบใด",
    "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_en": "What is the smallest grid for Ayrton Senna?",
    "question_th": "ตารางที่เล็กที่สุดสำหรับ 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_en": "What is the Time/Retired for laps higher than 52 on a grid larger than 21?",
    "question_th": "เวลา/เลิกใช้สำหรับรอบที่สูงกว่า 52 บนกริดที่ใหญ่กว่า 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_en": "What is the sum of laps for grid 20?",
    "question_th": "ผลรวมของรอบสำหรับกริด 20 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_53 (laps INTEGER, grid VARCHAR)"
  },
  {
    "answer": "SELECT MAX(laps) FROM table_name_6 WHERE driver = \"ayrton senna\"",
    "question_en": "What is the most laps for Ayrton Senna?",
    "question_th": "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_en": "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?",
    "question_th": "คะแนนของบาร์คู่ขนานที่มีคะแนนการออกกำลังกายบนพื้นมากกว่า 9.137, กระโดดมากกว่า 9.5 และแถบแนวนอนที่ 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_en": "what was the floor exercise score with a pommel horse score of 9.65 and horizontal  bar score more than 9.475?",
    "question_th": "คะแนนการออกกำลังกายบนพื้นที่มีคะแนนม้าพอมเมล 9.65 และคะแนนบาร์แนวนอนมากกว่า 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_en": "Which tournament had A in 2008, and a 1r in 2010?",
    "question_th": "ทัวร์นาเมนต์ใดมี A ในปี 2008 และ 1r ในปี 2010",
    "context": "CREATE TABLE table_name_4 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2008 FROM table_name_12 WHERE 2012 = \"q1\" AND 2010 = \"1r\"",
    "question_en": "What was the position for 2008, where 2012 was q1, and 2010 was 1r?",
    "question_th": "ตำแหน่งในปี 2551 เป็นอย่างไร โดยปี 2555 อยู่ที่ไตรมาส 1 และปี 2553 อยู่ที่ 1r",
    "context": "CREATE TABLE table_name_12 (Id VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_81 WHERE goal = 3",
    "question_en": "Which venue has a Goal of 3?",
    "question_th": "สนามใดมีเป้าหมายที่ 3?",
    "context": "CREATE TABLE table_name_81 (venue VARCHAR, goal VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_28 WHERE date = \"10 september 2010\"",
    "question_en": "Which venue was used on 10 september 2010?",
    "question_th": "สถานที่ใดถูกใช้ในวันที่ 10 กันยายน พ.ศ. 2553",
    "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_en": "How many carries for the player with under 6 yards and an average of over 5?",
    "question_th": "ผู้เล่นที่ระยะต่ำกว่า 6 หลาและเฉลี่ยมากกว่า 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_en": "What was the longest carry for kevin clemens with under 31 yards total?",
    "question_th": "อะไรคือการแบกที่ยาวที่สุดของเควิน คลีเมนส์ โดยระยะรวมต่ำกว่า 31 หลา?",
    "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_en": "What was the attendance at Brunswick Street Oval?",
    "question_th": "การเข้าร่วมที่ 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_en": "What's listed as the First Day Cover Cancellation with a Date of Issue of 13 June 2005?",
    "question_th": "รายการใดเป็นการยกเลิกความคุ้มครองวันแรกโดยวันที่ออกในวันที่ 13 มิถุนายน พ.ศ. 2548",
    "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_en": "What's the First Day Cover Cancellation with Denomination of $0.50 and Date of Issue as 13 June 2005?",
    "question_th": "การยกเลิกความคุ้มครองวันแรกที่มีมูลค่า 0.50 ดอลลาร์ และวันที่ออกในวันที่ 13 มิถุนายน พ.ศ. 2548 คืออะไร",
    "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_en": "What's the Denomination listed for the Date of Issue 12 April 2005?",
    "question_th": "นิกายใดที่ระบุไว้สำหรับวันที่ออก 12 เมษายน พ.ศ. 2548",
    "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_en": "Which Paper Type has a Denomination of $0.50 and Date of Issue 4 February 2005?",
    "question_th": "กระดาษประเภทใดมีมูลค่า 0.50 ดอลลาร์ และวันที่ออก 4 กุมภาพันธ์ พ.ศ. 2548",
    "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_en": "What's the Date of Issue for Design of Katalin Kovats?",
    "question_th": "วันที่ออกสำหรับการออกแบบ 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_en": "What was the lowest recorded record for a player with an average larger than 13?",
    "question_th": "สถิติต่ำสุดที่บันทึกไว้สำหรับผู้เล่นที่มีค่าเฉลี่ยมากกว่า 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_en": "How many yards were averaged by the player that had a higher than 13 average with less than 18 long?",
    "question_th": "ผู้เล่นที่มีระยะเฉลี่ยสูงกว่า 13 หลาโดยมีความยาวน้อยกว่า 18 หลาโดยเฉลี่ยคือกี่หลา",
    "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_en": "For an airline of Wizz Air and fewer than 83 destinations, what is the highest passenger fleet?",
    "question_th": "สำหรับสายการบินของ Wizz Air และมีจุดหมายปลายทางน้อยกว่า 83 แห่ง ฝูงบินผู้โดยสารสูงสุดคือเท่าใด",
    "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_en": "Which alliance has a rank of 40?",
    "question_th": "พันธมิตรใดมีอันดับ 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_en": "For airlines named Aeroflot Group, what is the alliance?",
    "question_th": "สำหรับสายการบินชื่อ Aeroflot Group พันธมิตรคืออะไร?",
    "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_en": "In which year was a linebacker pick 17?",
    "question_th": "ทีมบร็องโกเลือก 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_en": "What is the name of the cornerback from 1997?",
    "question_th": "กองหลังตัวสำรองจากปี 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_en": "What is the name of the player from after 1989 from Washington State?",
    "question_th": "นักเตะจากรัฐวอชิงตันหลังปี 1989 ชื่ออะไร?",
    "context": "CREATE TABLE table_name_48 (player_name VARCHAR, year VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT race FROM table_name_5 WHERE margin = \"8\"",
    "question_en": "Which race has a Margin of 8?",
    "question_th": "การแข่งขันใดมี Margin เท่ากับ 8?",
    "context": "CREATE TABLE table_name_5 (race VARCHAR, margin VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(runners) FROM table_name_55 WHERE placing > 1",
    "question_en": "How many Runners have a Placing that isn't 1?",
    "question_th": "มีนักวิ่งกี่คนที่ได้ตำแหน่งที่ไม่ใช่ 1",
    "context": "CREATE TABLE table_name_55 (runners VARCHAR, placing INTEGER)"
  },
  {
    "answer": "SELECT MIN(runners) FROM table_name_12 WHERE placing < 1",
    "question_en": "What is the lowest number of Runners that has a Placing that isn't 1?",
    "question_th": "จำนวนนักวิ่งต่ำสุดที่มีอันดับไม่ใช่ 1 คือเท่าใด",
    "context": "CREATE TABLE table_name_12 (runners INTEGER, placing INTEGER)"
  },
  {
    "answer": "SELECT MIN(prize__) AS £k_ FROM table_name_87 WHERE race = \"irish derby\"",
    "question_en": "What is the lowest Prize amount for the Irish Derby Race?",
    "question_th": "รางวัลต่ำสุดสำหรับ 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_en": "What was the mintage having an issue price of $1,099.99, artist being Pamela Stagg?",
    "question_th": "เหรียญกษาปณ์ที่มีราคาออกอยู่ที่ 1,099.99 เหรียญสหรัฐฯ คืออะไร โดยศิลปินคือ 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_en": "What was the year that had an issue price of $1,295.95?",
    "question_th": "ปีที่ราคาเสนอขายอยู่ที่ 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_en": "What was the average mintage for that of artist Celia Godkin, before the year 2010?",
    "question_th": "ผลงานโดยเฉลี่ยของศิลปิน Celia Godkin ก่อนปี 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_en": "What was the away team score at Windy Hill?",
    "question_th": "สกอร์ทีมเยือนวินดี้ ฮิลล์เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_15 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_66 WHERE venue = \"lake oval\"",
    "question_en": "Who was the home team at Lake Oval?",
    "question_th": "ทีมเหย้าที่เลคโอวัลคือใคร?",
    "context": "CREATE TABLE table_name_66 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_5 WHERE venue = \"vfl park\"",
    "question_en": "On what date was the venue VFL Park?",
    "question_th": "สนาม 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_en": "Which team was the home team at Glenferrie Oval?",
    "question_th": "ทีมใดเป็นเจ้าบ้านที่ 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–6, 0–6\"",
    "question_en": "What was the date when Steffi Graf was the opponent in the final and the score was 2–6, 0–6?",
    "question_th": "วันที่เท่าไหร่ที่ Steffi Graf เป็นคู่ต่อสู้ในรอบชิงชนะเลิศและสกอร์ 2–6, 0–6 คือวันที่ใด",
    "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_en": "What was the surface where the outcome was winner on 12 march 1989?",
    "question_th": "พื้นผิวที่ผลการแข่งขันเป็นผู้ชนะในวันที่ 12 มีนาคม พ.ศ. 2532 เป็นอย่างไรบ้าง?",
    "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_en": "What was the outcome of the Tournament of lugano , switzerland wta virginia slims, against bonnie gadusek?",
    "question_th": "ผลการแข่งขันลูกาโน สวิตเซอร์แลนด์ ดับเบิลยูทีเอ เวอร์จิเนีย สลิมส์ พบกับ บอนนี่ กาดูเซค เป็นอย่างไร?",
    "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_en": "What is the outcome of the match against Sylvia Hanika on a hard (i) surface?",
    "question_th": "ผลการแข่งขันกับซิลเวีย ฮานิกาบนพื้นแข็ง (i) เป็นอย่างไร?",
    "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_en": "What player had numbers of 20",
    "question_th": "ผู้เล่นคนไหนมีเลข 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_en": "Tell me the height in ft for 1999-2004",
    "question_th": "บอกส่วนสูงเป็นฟุตปี 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_en": "Tell me the number for height in ft of 6-7",
    "question_th": "บอกจำนวนส่วนสูงเป็นฟุต 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_en": "What player had a school of missouri",
    "question_th": "ผู้เล่นคนไหนมีโรงเรียนแห่งมิสซูรี",
    "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éanic\"",
    "question_en": "What pick # has a team from Rimouski Océanic?",
    "question_th": "ตัวเลือกอะไร # มีทีมจาก Rimouski Oceanic?",
    "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_en": "Who is the player from Hotchkiss School with a position of d?",
    "question_th": "นักเตะจาก Hotchkiss School ตำแหน่ง 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_en": "What type is the sorrento to sapri course with a distance of km (mi)?",
    "question_th": "คอร์สซอร์เรนโตถึงสาปรีประเภทใดที่มีระยะทางกิโลเมตร (ไมล์)?",
    "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_en": "What type is the misurina to bassano del grappa course?",
    "question_th": "หลักสูตร misurina ถึง Bassano del Grappa เป็นประเภทใด?",
    "context": "CREATE TABLE table_name_24 (type VARCHAR, course VARCHAR)"
  },
  {
    "answer": "SELECT distance FROM table_name_66 WHERE course = \"chieti to macerata\"",
    "question_en": "What's the distance for the chieti to macerata course?",
    "question_th": "ระยะทางจากหลักสูตร Chieti ถึง Macerata คืออะไร?",
    "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_en": "Which is the lowest points value that had a Chevrolet car, whose driver was Sterling Marlin, and whose car number was less than 14?",
    "question_th": "ข้อใดคือคะแนนต่ำสุดที่มีรถยนต์เชฟโรเลต ซึ่งมีคนขับคือ สเตอร์ลิง มาร์ลิน และหมายเลขรถของใครน้อยกว่า 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_en": "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?",
    "question_th": "ข้อใดคือคะแนนต่ำสุดที่ไม่เพียงแต่มีรถเชฟโรเลตเท่านั้น แต่ยังมีรถหมายเลขน้อยกว่า 24 รอบรวม 312 รอบ และเงินรางวัล 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_en": "What is the location for the win against Johan Mparmpagiannis?",
    "question_th": "จุดไหนที่จะคว้าชัยเหนือโยฮัน เอ็มพาร์มปาเจียนิส?",
    "context": "CREATE TABLE table_name_78 (location VARCHAR, result VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT method FROM table_name_29 WHERE opponent = \"björn bregy\"",
    "question_en": "What is the method against Björn Bregy?",
    "question_th": "Björn Bregy มีวิธีการอย่างไร?",
    "context": "CREATE TABLE table_name_29 (method VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT method FROM table_name_26 WHERE opponent = \"paula mataele\"",
    "question_en": "What is the method against Paula Mataele?",
    "question_th": "พอลล่า มาตาเอเล่ มีวิธีการอย่างไร?",
    "context": "CREATE TABLE table_name_26 (method VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_60 WHERE location = \"vilnius, lithuania\"",
    "question_en": "What is the date of the match in Vilnius, Lithuania?",
    "question_th": "แข่งขันที่วิลนีอุส ประเทศลิทัวเนีย วันที่เท่าไหร่?",
    "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_en": "What is the result against Errol Zimmerman on 2007-04-07?",
    "question_th": "ผลการแข่งขันกับเออร์รอล ซิมเมอร์แมนในวันที่ 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_en": "What is the location of the match against Martinis Knyzelis?",
    "question_th": "นัดที่พบกับ 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_en": "What day is st kilda the home side?",
    "question_th": "เซนต์คิลดาฝั่งเจ้าบ้านวันไหน?",
    "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_en": "What is melbourne's away score?",
    "question_th": "คะแนนเยือนของเมลเบิร์นคืออะไร?",
    "context": "CREATE TABLE table_name_29 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team AS score FROM table_name_1 WHERE away_team = \"geelong\"",
    "question_en": "What was the home team's score when Geelong was the away team?",
    "question_th": "เมื่อจีลองเป็นทีมเยือนสกอร์ของเจ้าบ้านเป็นเท่าไหร่?",
    "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_en": "What is the 1978 Veteran membership with a late 1941 macedonia and a late 1943 less than 10,000?",
    "question_th": "อะไรคือสมาชิกทหารผ่านศึกปี 1978 ที่มีมาซิโดเนียช่วงปลายปี 1941 และช่วงปลายปี 1943 น้อยกว่า 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_en": "Which opponent has a Season of 2011/12?",
    "question_th": "คู่ต่อสู้คนใดมีฤดูกาล 2011/55?",
    "context": "CREATE TABLE table_name_3 (opponent VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_7 WHERE season = \"2010/11\"",
    "question_en": "Which opponent has a Season of 2010/11?",
    "question_th": "คู่ต่อสู้คนใดมีฤดูกาล 2010/11?",
    "context": "CREATE TABLE table_name_7 (opponent VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_56 WHERE season = \"2010/11\"",
    "question_en": "Which competition has a Season of 2010/11?",
    "question_th": "การแข่งขันใดมีฤดูกาล 2010/11?",
    "context": "CREATE TABLE table_name_56 (competition VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_20 WHERE result = \"–\"",
    "question_en": "What Opponent has a Result of –?",
    "question_th": "ฝ่ายตรงข้ามมีผลอะไร –?",
    "context": "CREATE TABLE table_name_20 (opponent VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_71 WHERE result = \"6–9\"",
    "question_en": "Which season has a Result of 6–9?",
    "question_th": "ฤดูกาลใดมีผลลัพธ์ 6–9?",
    "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_en": "Which round has a Venue of nicosia, and a Opponent of levski sofia zapad?",
    "question_th": "รอบใดมีสนามของนิโคเซีย และฝ่ายตรงข้ามของเลฟสกี้ โซเฟีย ซาปัด?",
    "context": "CREATE TABLE table_name_53 (round VARCHAR, venue VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_27 WHERE score = \"22-21\"",
    "question_en": "What resulted in a score of 22-21?",
    "question_th": "ส่งผลให้สกอร์ 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_en": "What competition was held on the date 6/7/03",
    "question_th": "มีการแข่งขันอะไรบ้างในวันที่ 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_en": "What was the score for the date of 15/6/03",
    "question_th": "คะแนนวันที่ 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_en": "What venue is on the date of 8/6/03",
    "question_th": "วันที่ 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_en": "What outcome has a score of 12-22?",
    "question_th": "ผลลัพธ์อะไรมีคะแนน 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_en": "What date is for Venue of jjb stadium, and a Result of w?",
    "question_th": "สนามเจบี สเตเดี้ยม คือวันไหน และผลการแข่งขันของ w คือวันไหน?",
    "context": "CREATE TABLE table_name_14 (date VARCHAR, venue VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT MAX(laps) FROM table_name_71 WHERE driver = \"françois cevert\"",
    "question_en": "What is the high lap total for françois cevert?",
    "question_th": "ผลรวมรอบสูงของ ฟรองซัวส์ เชเวิร์ต คือเท่าไร?",
    "context": "CREATE TABLE table_name_71 (laps INTEGER, driver VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_83 WHERE driver = \"rolf stommelen\"",
    "question_en": "Who constructed rolf stommelen's car?",
    "question_th": "ใครเป็นคนสร้างรถของรอล์ฟ สตอมเมเลน",
    "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_en": "Who drive the car that retired due to engine failure and a grid of less than 9?",
    "question_th": "ใครขับรถที่เกษียณเนื่องจากเครื่องยนต์ขัดข้องและกริดน้อยกว่า 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_en": "When was the race that set the record for the Izod Indycar Series?",
    "question_th": "การแข่งขันที่สร้างสถิติสำหรับ 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_en": "Which driver set the Qualifying record with a time of 24.761 seconds?",
    "question_th": "นักแข่งคนไหนที่สร้างสถิติรอบคัดเลือกด้วยเวลา 24.761 วินาที?",
    "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_en": "What Utah Jazz guard, played at BYU?",
    "question_th": "การ์ดยูทาห์ แจ๊ซคนไหนที่เคยเล่นที่บีวายยู?",
    "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_en": "What college team did Derek Fisher play for?",
    "question_th": "Derek Fisher เล่นให้กับทีมวิทยาลัยใด",
    "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_en": "The Utah Jazz Player from UTEP was what nationality?",
    "question_th": "ผู้เล่น Utah Jazz จาก UTEP เป็นคนสัญชาติอะไร",
    "context": "CREATE TABLE table_name_51 (nationality VARCHAR, school_club_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_26 WHERE home_team = \"richmond\"",
    "question_en": "What is the name of the venue when the home team is Richmond?",
    "question_th": "สนามเจ้าบ้านชื่ออะไรคือริชมอนด์?",
    "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_en": "What is the home team score when the venue is Princes Park?",
    "question_th": "สกอร์ทีมเจ้าบ้านเมื่อสนามคือปริ๊นซ์พาร์คเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_40 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT actor FROM table_name_66 WHERE character = \"glen cole\"",
    "question_en": "What actor plays glen cole?",
    "question_th": "นักแสดงคนไหนรับบทเป็นเกล็น โคล?",
    "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_en": "What is the average number for a final episode featuring maxine valera?",
    "question_th": "จำนวนเฉลี่ยของตอนสุดท้ายที่มีแม็กซีน วาเลราคือเท่าใด",
    "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_en": "How many laps were driven in 2:54:23.8?",
    "question_th": "แข่งไปกี่รอบใน 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_en": "Which constructor has laps less than 100 and a time/retired +10 laps?",
    "question_th": "Constructor ใดที่มีรอบน้อยกว่า 100 และเวลา/เกษียณ +10 รอบ",
    "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_en": "What are the highest number of laps for grid 8?",
    "question_th": "จำนวนรอบสูงสุดสำหรับตารางที่ 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_en": "Which grid is the highest and has a time/retired of +0.3?",
    "question_th": "ตารางใดสูงที่สุดและมีเวลา/เกษียณอยู่ที่ +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_en": "Which driver for Maserati has more laps than 23 and a grid greater than 7?",
    "question_th": "นักแข่งคนไหนของ Maserati ที่มีรอบมากกว่า 23 และมีกริดมากกว่า 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_en": "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?",
    "question_th": "การจัดประเภทคะแนนใดแบ่งตามประเภททั่วไปของ Bernard Hinault, Trofeo Fast Tem ของ Bianchi ที่ชนะโดย Urs Freuler และอยู่ในสเตจที่ 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_en": "Who was the winner that had a Points Classification of Giuseppe Saronni, a Trofeo Fast Team of Bianchi, and was Stage 3?",
    "question_th": "ใครคือผู้ชนะที่มีการแบ่งคะแนนของ Giuseppe Saronni ทีม Trofeo Fast ของ Bianchi และได้เข้าสู่สเตจที่ 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_en": "Which stage had a Points Classification of Francesco Moser and a general classification of Bernard Hinault?",
    "question_th": "ระยะใดมีการจัดประเภทคะแนนของ Francesco Moser และการจัดประเภททั่วไปของ 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_en": "Who was the winner of Stage 12 with a Points Classification of Francesco Moser?",
    "question_th": "ใครคือผู้ชนะสเตจที่ 12 โดยมีการจัดประเภทคะแนนของ 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_en": "Which stage was won by Bernard Hinault and had a Points classification of Francesco Moser?",
    "question_th": "Bernard Hinault ชนะในสเตจใดและมีคะแนนอยู่ในประเภท 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_en": "Who was the loser on December 12, 1971?",
    "question_th": "ใครคือผู้แพ้เมื่อวันที่ 12 ธันวาคม พ.ศ. 2514?",
    "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_en": "Who was the loser at Municipal Stadium after 1970?",
    "question_th": "ใครคือผู้แพ้ที่สนามกีฬาเทศบาลหลังปี 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_en": "What is the date where the winner was the Oakland Raiders in 1975?",
    "question_th": "ผู้ชนะคือทีม Oakland Raiders ในปี 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_en": "What is result of the game at Arrowhead Stadium where the loser was the Kansas City Chiefs?",
    "question_th": "ผลการแข่งขันที่แอร์โรว์เฮด สเตเดี้ยม ซึ่งผู้แพ้คือ แคนซัส ซิตี้ ชีฟส์ คืออะไร?",
    "context": "CREATE TABLE table_name_23 (result VARCHAR, location VARCHAR, loser VARCHAR)"
  },
  {
    "answer": "SELECT work FROM table_name_54 WHERE category = \"best movie\"",
    "question_en": "What was nominated for the Best Movie category?",
    "question_th": "ได้รับการเสนอชื่อเข้าชิงสาขาภาพยนตร์ยอดเยี่ยมเรื่องใด",
    "context": "CREATE TABLE table_name_54 (work VARCHAR, category VARCHAR)"
  },
  {
    "answer": "SELECT award FROM table_name_27 WHERE work = \"scream\" AND year = 1997",
    "question_en": "Which award did Scream receive a nomination and/or win for in 1997?",
    "question_th": "Scream ได้รับการเสนอชื่อเข้าชิงและ/หรือได้รับรางวัลใดในปี 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_en": "What category was Scream nominated for at the International Horror Guild?",
    "question_th": "Scream ได้รับการเสนอชื่อเข้าชิงประเภทใดใน 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_en": "what is the time/retired when the laps is less than 54 and the driver is mark donohue?",
    "question_th": "เวลา/เกษียณเมื่อรอบน้อยกว่า 54 และคนขับคือมาร์ค โดโนฮิวคือเมื่อใด",
    "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_en": "what is the grid when the driver is mario andretti and the laps is less than 54?",
    "question_th": "ตารางจะเป็นอย่างไรเมื่อคนขับคือ Mario Andretti และรอบน้อยกว่า 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_en": "how many laps were there when the grid was 24?",
    "question_th": "ตอนที่กริดอยู่ที่ 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_en": "what is the time/retired when the laps is 6, the grid is less than 18 and the driver is clay regazzoni?",
    "question_th": "เวลาใด/เกษียณเมื่อรอบเป็น 6, ตารางน้อยกว่า 18 และคนขับคือดินเหนียว 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–1323\"",
    "question_en": "Which class is smaller than 5 and the GWR is 1322–1323?",
    "question_th": "คลาสใดที่เล็กกว่า 5 และ GWR คือ 1322–1323",
    "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_en": "Whose term expired in 1996 and was from the province of Central Highlands?",
    "question_th": "วาระของใครหมดลงในปี พ.ศ. 2539 และมาจากจังหวัดเซ็นทรัลไฮแลนด์?",
    "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_en": "Ken Wright of the National Party was from which province?",
    "question_th": "เคน ไรท์ พรรคชาติ มาจากจังหวัดใด",
    "context": "CREATE TABLE table_name_79 (province VARCHAR, party VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_20 WHERE year = 1967",
    "question_en": "Which venue hosted a race in 1967?",
    "question_th": "สถานที่ใดจัดการแข่งขันในปี พ.ศ. 2510",
    "context": "CREATE TABLE table_name_20 (venue VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_73 WHERE year > 1966",
    "question_en": "Which tournament was held after 1966?",
    "question_th": "การแข่งขันใดจัดขึ้นหลังปี 1966?",
    "context": "CREATE TABLE table_name_73 (tournament VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT venue FROM table_name_78 WHERE year = 1965",
    "question_en": "Which venue hosted a tournament in 1965?",
    "question_th": "สถานที่ใดจัดการแข่งขันในปี 1965",
    "context": "CREATE TABLE table_name_78 (venue VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_17 WHERE nominee = \"best new musical\"",
    "question_en": "What is the result for the best new musical nominee?",
    "question_th": "ผลลัพธ์ของผู้ได้รับการเสนอชื่อเข้าชิงรางวัลดนตรีหน้าใหม่ยอดเยี่ยมคืออะไร?",
    "context": "CREATE TABLE table_name_17 (result VARCHAR, nominee VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_name_84 WHERE nominee = \"simon baker\"",
    "question_en": "How many years does simon baker appear as a nominee?",
    "question_th": "Simon Baker ปรากฏตัวเป็นผู้ได้รับการเสนอชื่อกี่ปี?",
    "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_en": "What is the Height for Years of Rockets of 2005-06?",
    "question_th": "ความสูงของปีจรวดปี 2548-2559 คือเท่าไร?",
    "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_en": "What is the Height for Years for Rockets of 2005-06?",
    "question_th": "ความสูงของจรวดในปี 2548-2559 คือเท่าไร?",
    "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_en": "What is the Attendance on august 15?",
    "question_th": "ผู้เข้าร่วมในวันที่ 15 สิงหาคมคืออะไร?",
    "context": "CREATE TABLE table_name_99 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_1 WHERE fastest_lap = \"nigel mansell\"",
    "question_en": "What is the constructor for the race with Nigel Mansell as the fastest lap?",
    "question_th": "อะไรคือตัวกำหนดการแข่งขันโดยที่ Nigel Mansell เป็นรอบที่เร็วที่สุด?",
    "context": "CREATE TABLE table_name_1 (constructor VARCHAR, fastest_lap VARCHAR)"
  },
  {
    "answer": "SELECT fastest_lap FROM table_name_82 WHERE location = \"estoril\"",
    "question_en": "What is the fastest lap at estoril?",
    "question_th": "รอบที่เร็วที่สุดที่เอสโตริลคืออะไร?",
    "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_en": "What is the race in Paul Ricard with Keke Rosberg as the fastest lap?",
    "question_th": "การแข่งขันใน Paul Ricard โดยที่ Keke Rosberg เป็นรอบที่เร็วที่สุดคืออะไร?",
    "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_en": "Who was the winner at spa-francorchamps?",
    "question_th": "ใครคือผู้ชนะในการแข่งขัน spa-francorchamps?",
    "context": "CREATE TABLE table_name_99 (race VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_11 WHERE result = \"7-2\"",
    "question_en": "Where was the game with result 7-2 played?",
    "question_th": "เกมที่ผลสกอร์ 7-2 เล่นที่ไหน?",
    "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_en": "What was the score of the Friendly competition where the result was 7-2?",
    "question_th": "แมตช์กระชับมิตรผลสกอร์ 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_en": "What was the score of the game on 27 January 1996?",
    "question_th": "คะแนนของเกมเมื่อวันที่ 27 มกราคม พ.ศ. 2539 เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_15 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_40 WHERE result = \"3-2\"",
    "question_en": "What is the event with a result of 3-2?",
    "question_th": "ผลสกอร์ 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_en": "How big was the crowd size, at the Junction Oval venue?",
    "question_th": "จำนวนฝูงชนที่สนาม Junction Oval มีขนาดใหญ่แค่ไหน?",
    "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_en": "What is the visiting team of Melbourne's score?",
    "question_th": "ทีมเยือนสกอร์ของเมลเบิร์นเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_39 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT AVG(crowd) FROM table_name_78 WHERE home_team = \"fitzroy\"",
    "question_en": "What is the average crowd size of Fitzroy's home team?",
    "question_th": "จำนวนฝูงชนโดยเฉลี่ยของทีมเหย้าของฟิตซ์รอยคือเท่าใด?",
    "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_en": "Which railway had the earliest build date and a disposal of \"Scrapped 1941?\"",
    "question_th": "ทางรถไฟสายใดมีวันสร้างเร็วที่สุดและจำหน่าย \"เศษซากปี 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_en": "Which railway had a loco name of Pyramus and a build date of 1911?",
    "question_th": "ทางรถไฟสายใดมีชื่อสถานีว่า Pyramus และมีการสร้างในปี 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_en": "What was the build date of the railway(s) with 0-6-2 t wheels?",
    "question_th": "ทางรถไฟที่มีล้อ 0-6-2 ตันสร้างเมื่อใด",
    "context": "CREATE TABLE table_name_13 (build_date VARCHAR, wheels VARCHAR)"
  },
  {
    "answer": "SELECT disbanded FROM table_name_73 WHERE league = \"ahl\"",
    "question_en": "Which disbanded is in the ahl league?",
    "question_th": "ซึ่งยุบไปอยู่ในลีกอาห์?",
    "context": "CREATE TABLE table_name_73 (disbanded VARCHAR, league VARCHAR)"
  },
  {
    "answer": "SELECT championships FROM table_name_1 WHERE established > 2005",
    "question_en": "Which championship was established after 2005?",
    "question_th": "การแข่งขันชิงแชมป์ใดที่ก่อตั้งขึ้นหลังปี 2548?",
    "context": "CREATE TABLE table_name_1 (championships VARCHAR, established INTEGER)"
  },
  {
    "answer": "SELECT year FROM table_name_62 WHERE player = \"j.r. reid\"",
    "question_en": "Which year had J.R. Reid as a player?",
    "question_th": "เจอาร์ รีดเป็นนักเตะปีไหน?",
    "context": "CREATE TABLE table_name_62 (year VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_name_11 WHERE player = \"dajuan wagner\"",
    "question_en": "Which hometown is the played Dajuan Wagner from?",
    "question_th": "Dajuan Wagner ที่เล่นมาจากบ้านเกิดใด",
    "context": "CREATE TABLE table_name_11 (hometown VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT crowd FROM table_name_29 WHERE home_team = \"carlton\"",
    "question_en": "When the home team was carlton how many people were in the crowd?",
    "question_th": "เมื่อเจ้าบ้านเป็นคาร์ลตัน คนเยอะขนาดไหน?",
    "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_en": "Which away team had a crowd of over 23,000 people?",
    "question_th": "ทีมเยือนทีมไหนมีฝูงชนกว่า 23,000 คน?",
    "context": "CREATE TABLE table_name_95 (away_team VARCHAR, crowd INTEGER)"
  },
  {
    "answer": "SELECT home_team FROM table_name_39 WHERE venue = \"western oval\"",
    "question_en": "What's the home team for the western oval venue?",
    "question_th": "เจ้าบ้านสำหรับสนามเวสเทิร์นรีคือทีมอะไร?",
    "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_en": "What's the home team for the junction oval venue?",
    "question_th": "เจ้าบ้านสำหรับสนามจังก์ชันรีคือทีมอะไร?",
    "context": "CREATE TABLE table_name_28 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_5 WHERE opponent = \"fenerbahçe\"",
    "question_en": "What was the result when the opponent was fenerbahçe?",
    "question_th": "ผลเป็นอย่างไรเมื่อคู่ต่อสู้เป็นเฟเนร์บาห์เช่?",
    "context": "CREATE TABLE table_name_5 (result VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT apparent_magnitude FROM table_name_14 WHERE ngc_number = \"6027d\"",
    "question_en": "what is the apparent magnitude of NGC number 6027d?",
    "question_th": "ขนาดที่ชัดเจนของเลข NGC 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_en": "What is the visiting team of the game with the home team Grizzlies on 13 November 2007?",
    "question_th": "ทีมเยือนของเกมกับทีมเจ้าบ้าน กริซลี่ส์ เมื่อวันที่ 13 พฤศจิกายน พ.ศ. 2550 คือทีมใด?",
    "context": "CREATE TABLE table_name_77 (visitor VARCHAR, home VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_98 WHERE home = \"mavericks\"",
    "question_en": "What is the date of the game when the Mavericks were the home team?",
    "question_th": "แมตช์วันที่ Mavericks เป็นเจ้าบ้านคือวันที่เท่าไหร่?",
    "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_en": "Which of the lowest years had a Wheel arrangement that was 0-4-2t?",
    "question_th": "ปีใดที่ต่ำที่สุดที่มีการจัดเรียงล้อที่ 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_en": "What is the mean Year when the IWCR number was 5 and the Year withdrawn was bigger than 1926?",
    "question_th": "ค่าเฉลี่ยของปีที่หมายเลข IWCR คือ 5 และปีที่ถอนออกมากกว่าปี 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_en": "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?",
    "question_th": "หมายเลข SR ใดที่มีการจัดเรียงล้อ 0-6-0t ปีที่ผลิตล่าสุดกว่าปี 1874 และปีที่ถอนออกคือปี 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_en": "What is the sum number of years where the wheel arrangement of 0-4-0t?",
    "question_th": "ผลรวมจำนวนปีที่จัดล้อ 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_en": "What was the latest week of a game that had an attendance of 63,001?",
    "question_th": "สัปดาห์ล่าสุดของเกมที่มีผู้เข้าชม 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_en": "What is the total medals Austria and those with larger than rank 4 have?",
    "question_th": "เหรียญรางวัลรวมที่ออสเตรียและเหรียญที่มากกว่าอันดับ 4 มีเท่าไร?",
    "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_en": "What is the most gold medals that a team ranked higher than 6, have 1 silver medal, and more than 4 total medals have?",
    "question_th": "เหรียญทองสูงสุดที่ทีมอันดับสูงกว่า 6 ได้ 1 เหรียญเงิน และได้ทั้งหมดมากกว่า 4 เหรียญคืออะไร",
    "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_en": "Which country has a rollercoaster that opened in 2002, is a spinning coaster, and is located in Disney's Animal Kingdom?",
    "question_th": "ประเทศใดมีรถไฟเหาะที่เปิดในปี 2002 เป็นรถไฟเหาะแบบหมุน และตั้งอยู่ใน 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_en": "What is the name of the roller coaster that opened in 2000 in Brighton Pier?",
    "question_th": "รถไฟเหาะที่เปิดในปี 2000 ที่ท่าเรือไบรตันชื่ออะไร",
    "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_en": "How many attended on may 6?",
    "question_th": "วันที่ 6 พฤษภาคม มีผู้เข้าร่วมกี่คน?",
    "context": "CREATE TABLE table_name_85 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_67 WHERE score = \"3-17\"",
    "question_en": "Who did they lose to 3-17?",
    "question_th": "พวกเขาแพ้ใครเป็น 3-17?",
    "context": "CREATE TABLE table_name_67 (opponent VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_56 WHERE home_team = \"richmond\"",
    "question_en": "What venue did Richmond play at as the home team?",
    "question_th": "ริชมอนด์เล่นที่สนามใดในฐานะทีมเหย้า?",
    "context": "CREATE TABLE table_name_56 (venue VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_73 WHERE away_team = \"footscray\"",
    "question_en": "What home team played against Footscray as the away team?",
    "question_th": "ทีมเจ้าบ้านใดเล่นกับฟุตสเครย์ในฐานะทีมเยือน?",
    "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_en": "what was the attendance when the away team was boreham wood?",
    "question_th": "การเข้าร่วมงานเมื่อทีมเยือนเป็นบอร์แฮม วู้ด?",
    "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_en": "what is the tie no when the away team is solihull moors?",
    "question_th": "เสมอกันจะเป็นอย่างไรเมื่อทีมเยือนเป็นโซลิฮัลล์ มอร์ส?",
    "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_en": "who is the away team when the tie no is more than 13 and the home team is team bath?",
    "question_th": "ทีมเยือนคือใครเมื่อเสมอกันไม่เกิน 13 และเจ้าบ้านเป็นทีมอาบน้ำ?",
    "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_en": "What is the Pick # of the player from Simon Fraser College?",
    "question_th": "ตัวเลือก # ของผู้เล่นจาก 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 = −10(71 - 65 - 68 - 70 = 274)",
    "question_en": "What is the margin of victory for the winning score of −10 (71-65-68-70=274)?",
    "question_th": "อะไรคือส่วนต่างของชัยชนะสำหรับคะแนนชนะที่ −10 (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 = −3(71 - 74 - 66 - 66 = 277)",
    "question_en": "Who is the runner(s)-up for a winning score of −3 (71-74-66-66=277)?",
    "question_th": "ใครคือรองชนะเลิศที่มีคะแนนชนะ −3 (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_en": "What venue had less than 7.4 extra and the result of 4th?",
    "question_th": "สนามใดมีสกอร์พิเศษน้อยกว่า 7.4 และผลการแข่งขันที่ 4?",
    "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_en": "What is the highest extra total before 2003 at the Meeting of all africa games?",
    "question_th": "อะไรคือผลรวมพิเศษสูงสุดก่อนปี 2546 ในการประชุมเกมแอฟริกาทั้งหมด?",
    "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_en": "What year has an extra of 8, and a result of 3rd?",
    "question_th": "ปีใดมีเพิ่มอีก 8 และผลลัพธ์เป็นอันดับ 3?",
    "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_en": "What year has a venue of algiers, algeria, extra smaller than 8.03, and a Meeting of all africa games?",
    "question_th": "ปีใดที่มีสถานที่จัดงานของแอลเจียร์ แอลจีเรีย เล็กกว่า 8.03 เป็นพิเศษ และการประชุมของเกมแอฟริกาทั้งหมด?",
    "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–6\"",
    "question_en": "What is the Date with a Set 3 with 15–6?",
    "question_th": "วันที่กับชุด 3 กับ 15–6 คืออะไร?",
    "context": "CREATE TABLE table_name_98 (date VARCHAR, set_3 VARCHAR)"
  },
  {
    "answer": "SELECT set_3 FROM table_name_7 WHERE score = \"3–1\" AND set_2 = \"13–15\"",
    "question_en": "What is the Set 3 with a Score of 3–1, and has a Set 2 of 13–15?",
    "question_th": "ชุดที่ 3 ที่มีคะแนน 3–1 คืออะไร และมีชุดที่ 2 จาก 13–15 คืออะไร",
    "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–0\" AND set_3 = \"15–12\"",
    "question_en": "What is the Set 1 with a Score of 3–0, and has a Set 3 of 15–12?",
    "question_th": "ชุดที่ 1 ที่มีคะแนน 3–0 คืออะไร และมีชุดที่ 3 จาก 15–12 คืออะไร",
    "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–0\" AND set_3 = \"15–10\"",
    "question_en": "What is the Set 1 with a Score of 3–0, and has a Set 3 of 15–10?",
    "question_th": "ชุดที่ 1 ที่มีคะแนน 3–0 คืออะไร และมีชุดที่ 3 จาก 15–10 คืออะไร",
    "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–12\"",
    "question_en": "What is the Set 2 with a Total with 45–12?",
    "question_th": "ชุดที่ 2 ที่มีคะแนนรวม 45–12 คืออะไร",
    "context": "CREATE TABLE table_name_42 (set_2 VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT total FROM table_name_78 WHERE score = \"3–0\" AND date = \"14 oct\" AND set_1 = \"15–12\"",
    "question_en": "What is the Total with a Score of 3–0, and a Date of 14 oct, and has a Set 1 of 15–12?",
    "question_th": "ผลรวมที่มีคะแนน 3–0 คืออะไร และวันที่ 14 ตุลาคม และมีชุดที่ 1 จาก 15–12",
    "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_en": "What was the date of the footscray home game?",
    "question_th": "เกมในบ้านของฟุตสเครย์คือวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_46 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_90 WHERE opponent = \"martin kampmann\"",
    "question_en": "Tell me the time for martin kampmann",
    "question_th": "บอกเวลาของมาร์ติน แคมป์มันน์หน่อย",
    "context": "CREATE TABLE table_name_90 (time VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT SUM(round) FROM table_name_41 WHERE record = \"6-3\"",
    "question_en": "Tell me the sum of round for record of 6-3",
    "question_th": "บอกผลรวมรอบสำหรับบันทึก 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_en": "Tell me the location for win with record of 8-5",
    "question_th": "บอกตำแหน่งชนะด้วยสถิติ 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_en": "In which of North Melbourne's away games was there the lowest crowd?",
    "question_th": "เกมเยือนนัดไหนของนอร์ท เมลเบิร์นที่มีผู้ชมน้อยที่สุด?",
    "context": "CREATE TABLE table_name_71 (crowd INTEGER, away_team VARCHAR)"
  },
  {
    "answer": "SELECT build_date FROM table_name_56 WHERE prr_class = \"brs24\"",
    "question_en": "What is the build date of the model with PRR Class brs24?",
    "question_th": "วันที่สร้างของโมเดลด้วย 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’s_model = \"ds-4-4-660\"",
    "question_en": "How many total units were built of Model ds-4-4-660 with a b-b wheel arrangement and a PRR Class of bs6?",
    "question_th": "โมเดล ds-4-4-660 พร้อมการจัดล้อ bb และคลาส PRR ของ bs6 ถูกสร้างขึ้นทั้งหมดกี่ยูนิต",
    "context": "CREATE TABLE table_name_13 (total_produced INTEGER, builder’s_model VARCHAR, wheel_arrangement VARCHAR, prr_class VARCHAR)"
  },
  {
    "answer": "SELECT build_date FROM table_name_61 WHERE prr_class = \"brs24\"",
    "question_en": "What is the build date of the model with a PRR Class of brs24?",
    "question_th": "วันที่สร้างของโมเดลที่มี PRR Class ของ 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_en": "What is the total number of roll for Te Hapua school?",
    "question_th": "โรงเรียนเตหะปัวมีจำนวนม้วนทั้งหมดเท่าไร?",
    "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_en": "Name the place of action for the marine corps and corporal rank",
    "question_th": "ตั้งชื่อสถานที่ปฏิบัติการสำหรับนาวิกโยธินและยศสิบโท",
    "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_en": "When driver heinz-harald frentzen has a number of laps greater than 60, what is the sum of grid?",
    "question_th": "เมื่อนักแข่งไฮนซ์-ฮาราลด์ เฟรนต์เซนมีจำนวนรอบมากกว่า 60 ผลรวมของกริดจะเป็นเท่าใด",
    "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_en": "What is the population total for saint-wenceslas with a region number of under 17?",
    "question_th": "แซงต์-เวนเชสลาสที่มีจำนวนภูมิภาคต่ำกว่า 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ère\" AND region < 17",
    "question_en": "What is the smallest code associated with a type of m for a region less than 17 named, named saint-sylvère?",
    "question_th": "รหัสที่เล็กที่สุดที่เกี่ยวข้องกับประเภทของ m สำหรับภูมิภาคที่มีชื่อน้อยกว่า 17 ชื่อชื่อ Saint-Sylvère คืออะไร?",
    "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_en": "What competition was at the Daugava Stadium, Riga, Latvia?",
    "question_th": "การแข่งขันอะไรเกิดขึ้นที่สนามกีฬา Daugava เมืองริกา ประเทศลัตเวีย",
    "context": "CREATE TABLE table_name_19 (competition VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(goal) FROM table_name_81 WHERE date = \"15 november 1989\"",
    "question_en": "How many total goals were made at the game on 15 November 1989?",
    "question_th": "ในเกมวันที่ 15 พฤศจิกายน พ.ศ. 2532 ทำได้ทั้งหมดกี่ประตู?",
    "context": "CREATE TABLE table_name_81 (goal VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT captain FROM table_name_86 WHERE team = \"leeds united\"",
    "question_en": "What is the captain's name of team Leeds United?",
    "question_th": "กัปตันทีมลีดส์ยูไนเต็ดชื่ออะไร?",
    "context": "CREATE TABLE table_name_86 (captain VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT shirt_sponsor FROM table_name_10 WHERE captain = \"geoff thomas\"",
    "question_en": "Who is the shirt sponsor for Captain Geoff Thomas' team?",
    "question_th": "ใครคือผู้สนับสนุนเสื้อทีมกัปตันเจฟฟ์ โธมัส?",
    "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_en": "What is the name of the team that Tulip Computers NV sponsors?",
    "question_th": "ชื่อของทีมที่ Tulip Computers NV เป็นผู้สนับสนุนชื่ออะไร?",
    "context": "CREATE TABLE table_name_99 (team VARCHAR, shirt_sponsor VARCHAR)"
  },
  {
    "answer": "SELECT captain FROM table_name_49 WHERE team = \"norwich city\"",
    "question_en": "What is the name of the captain for team Norwich City?",
    "question_th": "กัปตันทีมนอริช ซิตี้ชื่ออะไร",
    "context": "CREATE TABLE table_name_49 (captain VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_32 WHERE manager = \"graeme souness\"",
    "question_en": "What team does Graeme Souness manage?",
    "question_th": "แกรม ซูเนสส์ คุมทีมไหน?",
    "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_en": "what is the lowest laps when the grid is smaller than 5 and the driver is juan manuel fangio?",
    "question_th": "รอบต่ำสุดคือเท่าไรเมื่อกริดน้อยกว่า 5 และนักแข่งคือ ฮวน มานูเอล ฟานจิโอ?",
    "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_en": "what is the grid when the time/retired is +9 laps and the laps is larger than 91?",
    "question_th": "ตารางจะเป็นเท่าใดเมื่อเวลา/เกษียณคือ +9 รอบและรอบมากกว่า 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_en": "what is the lowest grid when the time retired is clutch, the driver is peter collins and the laps is smaller than 26?",
    "question_th": "ตารางต่ำสุดเมื่อหมดเวลาคือคลัตช์ คนขับคือปีเตอร์ คอลลินส์ และรอบน้อยกว่า 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_en": "What zone has camp type D/S in area Bl9?",
    "question_th": "โซนใดมีค่ายประเภท D/S ในพื้นที่ 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_en": "Which name has group 0 in Bl4 area?",
    "question_th": "ชื่อใดมีกลุ่ม 0 ในพื้นที่ Bl4?",
    "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_en": "Which zone has max capacity of 23 in a group under 2 at Robbers Roost?",
    "question_th": "โซนใดมีความจุสูงสุด 23 คนในกลุ่มที่ต่ำกว่า 2 คนที่ 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_en": "I want to know the average crowd for away team of melbourne",
    "question_th": "อยากทราบฝูงชนโดยเฉลี่ยของทีมเยือนเมลเบิร์น",
    "context": "CREATE TABLE table_name_43 (crowd INTEGER, away_team VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_39 WHERE time_retired = \"off course\"",
    "question_en": "Which driver had a time off course?",
    "question_th": "คนขับคนไหนมีเวลาว่าง?",
    "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_en": "What is the top lap that had 2 grids and more than 26 points?",
    "question_th": "รอบบนที่มี 2 กริดมากกว่า 26 แต้มคือวงอะไร?",
    "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_en": "What is the top lap that had 6 grids and more than 19 points?",
    "question_th": "รอบบนที่มี 6 กริดมากกว่า 19 แต้มคืออะไร?",
    "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_en": "What is the average point count for tristan gommendy?",
    "question_th": "ทริสตัน โกเมนดีมีคะแนนเฉลี่ยเท่าไหร่?",
    "context": "CREATE TABLE table_name_30 (points INTEGER, driver VARCHAR)"
  },
  {
    "answer": "SELECT MIN(points) FROM table_name_88 WHERE grid = \"2\"",
    "question_en": "What is the point low with 2 grids?",
    "question_th": "จุดต่ำที่มี 2 กริดคืออะไร?",
    "context": "CREATE TABLE table_name_88 (points INTEGER, grid VARCHAR)"
  },
  {
    "answer": "SELECT dismissals FROM table_name_43 WHERE venue = \"source: cricinfo.com\"",
    "question_en": "What is the Dismissals with a Venue with source: cricinfo.com?",
    "question_th": "การไล่ออกด้วยสถานที่ที่มีแหล่งที่มา: 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_en": "What is the Versus with a Player with ko otieno, with Venue with bloemfontein?",
    "question_th": "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_en": "What is the Venue with a Date with 27-02-2003?",
    "question_th": "สถานที่จัดงานที่มีวันที่ 27-02-2546 คืออะไร?",
    "context": "CREATE TABLE table_name_22 (venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_34 WHERE versus = \"australia\"",
    "question_en": "What is the Player with Versus with australia?",
    "question_th": "ผู้เล่นกับออสเตรเลียคืออะไร?",
    "context": "CREATE TABLE table_name_34 (player VARCHAR, versus VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_31 WHERE date = \"12-03-2003\"",
    "question_en": "What is the Player with a Date with 12-03-2003?",
    "question_th": "ผู้เล่นที่มีวันที่ 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_en": "What is the Dismissals with a Player with source: cricinfo.com?",
    "question_th": "การไล่ออกของผู้เล่นที่มีแหล่งที่มา: 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_en": "What is the sum number of attendance when the visiting team was Charlotte and the leading scorer was Ricky Davis (23)?",
    "question_th": "จำนวนผู้เข้าร่วมเมื่อทีมเยือนคือชาร์ล็อตต์ และผู้ทำประตูนำคือริกกี้ เดวิส (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_en": "Which Visitor was there when the Home game was played in Miami on November 4?",
    "question_th": "ผู้มาเยือนคนไหนอยู่ที่นั่นเมื่อเกมเหย้าเล่นที่ไมอามีเมื่อวันที่ 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_en": "What nationality is Demetris Nichols?",
    "question_th": "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_en": "What school or team has round of 2 with less than 42 picks?",
    "question_th": "โรงเรียนหรือทีมใดมีรอบ 2 ทีมโดยมีตัวเลือกน้อยกว่า 42 รายการ?",
    "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_en": "What position has round less than 2?",
    "question_th": "ตำแหน่งใดมีรอบน้อยกว่า 2?",
    "context": "CREATE TABLE table_name_86 (position VARCHAR, round INTEGER)"
  },
  {
    "answer": "SELECT venue FROM table_name_92 WHERE home_team = \"essendon\"",
    "question_en": "In what venue is Essendon the home team?",
    "question_th": "เอสเซนดอนเป็นเจ้าบ้านที่สนามไหน?",
    "context": "CREATE TABLE table_name_92 (venue VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_59 WHERE venue = \"windy hill\"",
    "question_en": "Who was the away team when the venue was Windy Hill?",
    "question_th": "ทีมเยือนคือทีมไหนในสมัยที่สนามวินดี้ ฮิลล์?",
    "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_en": "What was the score for Hawthorn when they were the away team?",
    "question_th": "ฮอว์ธอร์นตอนเป็นทีมเยือนได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_56 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT method FROM table_name_56 WHERE res = \"win\" AND opponent = \"natsuko kikukawa\"",
    "question_en": "What method was used that had a resulting win against opponent, Natsuko Kikukawa?",
    "question_th": "ใช้วิธีการใดที่ทำให้ชนะคู่ต่อสู้ นัตสึโกะ คิคุคาวะ?",
    "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_en": "What was the highest number of rounds that had Hikaru Shinohara as an opponent and a record of 11-7?",
    "question_th": "จำนวนยกสูงสุดที่มีฮิคารุ ชิโนฮาระเป็นคู่ต่อสู้และสถิติ 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_en": "Which method has a record of 11-10?",
    "question_th": "วิธีใดมีบันทึก 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_en": "How many wins were there in 2004-05?",
    "question_th": "มีชัยชนะกี่ครั้งในปี 2547-2548?",
    "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_en": "How many times did jim vivona win?",
    "question_th": "จิม วิโวน่า ชนะไปกี่ครั้ง?",
    "context": "CREATE TABLE table_name_2 (win__number VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_1 WHERE team = \"morristown minutemen\"",
    "question_en": "Which position was morristown minutemen in?",
    "question_th": "มอร์ริสทาวน์ มินิทแมนอยู่ตำแหน่งไหน?",
    "context": "CREATE TABLE table_name_1 (position VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_75 WHERE team = \"harrisburg lunatics\"",
    "question_en": "Which season was harrisburg lunatics in?",
    "question_th": "Harrisburg Lunatics อยู่ฤดูกาลไหน?",
    "context": "CREATE TABLE table_name_75 (season VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_8 WHERE round = \"f\"",
    "question_en": "What was the venue for Round f?",
    "question_th": "สนาม f จัดขึ้นที่ใด?",
    "context": "CREATE TABLE table_name_8 (venue VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_33 WHERE result = \"1-0\"",
    "question_en": "On what date was the Result 1-0?",
    "question_th": "ผล 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_en": "What was the attendance on 10 november 2004?",
    "question_th": "วันที่ 10 พฤศจิกายน 2547 มีผู้เข้าร่วมเป็นอย่างไรบ้าง",
    "context": "CREATE TABLE table_name_31 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(crowd) FROM table_name_29 WHERE home_team = \"fitzroy\"",
    "question_en": "What is the size of the crowd when the home team is Fitzroy?",
    "question_th": "เมื่อเจ้าบ้านคือฟิตซ์รอยคนจะขนาดไหน?",
    "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_en": "How many laps did riccardo patrese do when he had a time/retird of + 1 lap?",
    "question_th": "ริคคาร์โด้ ปาเทรเซทำไปกี่รอบเมื่อเขามีเวลา/เกษียณ + 1 รอบ",
    "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_en": "Name the episode for jenny bicks and cindy chupack nominees in 2004",
    "question_th": "ตั้งชื่อตอนของผู้ที่ได้รับการเสนอชื่อเข้าชิง Jenny Bicks และ Cindy Chupack ในปี 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_en": "Name the episode for year more than 1999",
    "question_th": "ตั้งชื่อตอนปีมากกว่า 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_en": "What was the home team's score at the game held at Junction Oval?",
    "question_th": "คะแนนของเจ้าบ้านในเกมที่จัดขึ้นที่ 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_en": "What was the away team's score at the game held at MCG?",
    "question_th": "คะแนนของทีมเยือนในเกมที่จัดขึ้นที่เอ็มซีจีคือเท่าไร?",
    "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_en": "Who was the away team at the game held at Arden Street Oval?",
    "question_th": "ทีมเยือนในเกมที่จัดขึ้นที่อาร์เดน สตรีท โอวัลคือใคร?",
    "context": "CREATE TABLE table_name_53 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT crowd FROM table_name_94 WHERE home_team = \"fitzroy\"",
    "question_en": "What was the size of the crowd at the game where Fitzroy was the home team?",
    "question_th": "ขนาดของฝูงชนในเกมที่ฟิตซ์รอยเป็นเจ้าบ้านคือเท่าไร?",
    "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_en": "Name the most bronze for silver more than 6 and total less than 127 with gold less than 11",
    "question_th": "ตั้งชื่อทองแดงมากที่สุดสำหรับเงินมากกว่า 6 และรวมน้อยกว่า 127 และทองคำน้อยกว่า 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_en": "Name the highest silver for table tennis and bronze more than 0",
    "question_th": "ตั้งชื่อเงินสูงสุดสำหรับเทเบิลเทนนิสและเหรียญทองแดงมากกว่า 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_en": "Which kickoff had an attendance of 58,120?",
    "question_th": "การคิกออฟใดมีผู้เข้าร่วม 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_en": "What week number did November 19, 1989 games fall on?",
    "question_th": "เกมวันที่ 19 พฤศจิกายน 1989 ตรงกับสัปดาห์ใด",
    "context": "CREATE TABLE table_name_14 (week VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT game_site FROM table_name_58 WHERE record = \"2-2\"",
    "question_en": "Which game site(s) had record of 2-2?",
    "question_th": "เว็บไซต์เกมใดมีสถิติ 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_en": "Which game had a kickoff at 1:00 and a record of 3-7?",
    "question_th": "เกมไหนเปิดคิกออฟเวลา 01.00 น. และสถิติ 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_en": "Which game had an attendance of 56,271?",
    "question_th": "เกมใดมีผู้ชม 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_en": "Tell me the driver for ford cosworth dfv 3.0 v8 and chassis of ts19 ts20",
    "question_th": "บอกไดรเวอร์สำหรับ ford cosworth dfv 3.0 v8 และแชสซีของ 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_en": "Tell me the constructor for alberto colombo and chassis of a1",
    "question_th": "บอกคอนสตรัคเตอร์ของอัลแบร์โต โคลอมโบและแชสซีของ 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_en": "Tell me the constructor for clay regazzoni",
    "question_th": "บอกผู้สร้างสำหรับดินเหนียว 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_en": "Tell me the chassis for team tissot ensign and driver of brett lunger",
    "question_th": "บอกแชสซีของทีม tissot ensign และคนขับ 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_en": "I want the tyres for hans binder",
    "question_th": "ฉันอยากได้ยางของฮันส์ ไบเดอร์",
    "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_en": "I want the constructor for divina galica rounds of 1-2",
    "question_th": "ฉันต้องการตัวสร้างสำหรับ Divina galica รอบ 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_en": "What team did the Red Sox play against on June 3?",
    "question_th": "เรดซอกซ์เล่นกับทีมใดในวันที่ 3 มิถุนายน?",
    "context": "CREATE TABLE table_name_16 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_22 WHERE attendance = \"21,191\"",
    "question_en": "What was the Record at the game that had an attendance of 21,191?",
    "question_th": "อะไรคือสถิติในเกมที่มีผู้เข้าร่วม 21,191 คน?",
    "context": "CREATE TABLE table_name_22 (record VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_74 WHERE date = \"june 17\"",
    "question_en": "What was the final score of the game on June 17?",
    "question_th": "คะแนนสุดท้ายของเกมวันที่ 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_en": "What is the 1st ship delivery date of 6 ways?",
    "question_th": "วันที่จัดส่งเรือครั้งแรกของ 6 วิธีคือเมื่อใด",
    "context": "CREATE TABLE table_name_87 (total_number_of_ways VARCHAR)"
  },
  {
    "answer": "SELECT final FROM table_name_44 WHERE athlete = \"mohammad reza samadi\"",
    "question_en": "What was the final round result of Mohammad Reza Samadi?",
    "question_th": "ผลการแข่งขันรอบสุดท้ายของ 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_en": "When the Home team of footscray is playing, what's the Home team score?",
    "question_th": "เมื่อทีมเหย้าฟุตสเครย์เล่น สกอร์ทีมเหย้าเป็นเท่าไหร่?",
    "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_en": "What was the title of the song that peaked the charts at #1 with track 20?",
    "question_th": "ชื่อเพลงที่ขึ้นชาร์ตอันดับ 1 ในเพลงที่ 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_en": "What is the time from the song called Treat Me Nice?",
    "question_th": "เพลง 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_en": "What was Random House's copyright information?",
    "question_th": "ข้อมูลลิขสิทธิ์ของ Random House คืออะไร?",
    "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_en": "What was release date in 1992 with the ISBN #0?",
    "question_th": "วันที่ออกในปี 1992 โดยมี 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_en": "What club team has 216 overall?",
    "question_th": "ทีมสโมสรใดมีทั้งหมด 216 ทีม?",
    "context": "CREATE TABLE table_name_70 (club_team VARCHAR, overall VARCHAR)"
  },
  {
    "answer": "SELECT MAX(round) FROM table_name_67 WHERE player = \"chris phillips\"",
    "question_en": "What is the highest round played by Chris Phillips?",
    "question_th": "Chris Phillips เล่นรอบสูงสุดคือรอบใด?",
    "context": "CREATE TABLE table_name_67 (round INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_94 WHERE college = \"graceland\"",
    "question_en": "What player attended Graceland College?",
    "question_th": "ผู้เล่นคนไหนที่เข้าเรียนที่ 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_en": "What is the highest pick number of the CFL's Toronto Argonauts?",
    "question_th": "หมายเลขเลือกสูงสุดของ Toronto Argonauts ของ CFL คืออะไร?",
    "context": "CREATE TABLE table_name_36 (pick__number INTEGER, cfl_team VARCHAR)"
  },
  {
    "answer": "SELECT pick__number FROM table_name_89 WHERE college = \"mcmaster\"",
    "question_en": "Which pick number attended McMaster College?",
    "question_th": "หมายเลขใดที่เลือกเข้าเรียนที่ 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_en": "Who was the visiting team at the game where Edmonton was the home team and the decision was Osgood?",
    "question_th": "ทีมเยือนในเกมที่เอดมันตันเป็นเจ้าบ้านคือใครและออสกู๊ดเป็นผู้ตัดสิน?",
    "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_en": "What is the date recorded for I Want to Be Free with a length of 2:12?",
    "question_th": "วันที่บันทึกไว้สำหรับ I Want to Be Free ความยาว 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_en": "What is the highest track with a length of 1:54 written by Gene Autry and Oakley Haldeman?",
    "question_th": "เพลงใดที่มีความยาวสูงสุด 1:54 เขียนโดย Gene Autry และ 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_en": "What is the title of the song with a track less than 8 released on 3/22/57?",
    "question_th": "เพลงที่มีเพลงน้อยกว่า 8 ปล่อยเมื่อ 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_en": "What song title was written by Kal Mann and Bernie Lowe?",
    "question_th": "Kal Mann และ 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_en": "What date did the Away team, North Melbourne, play Geelong?",
    "question_th": "ทีมเยือน นอร์ท เมลเบิร์น พบกับ จีลอง วันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_27 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT time_retired FROM table_name_64 WHERE driver = \"jacky ickx\"",
    "question_en": "The driver Jacky Ickx had what time/retired?",
    "question_th": "คนขับ Jacky Ickx มีเวลาอะไร/เกษียณแล้ว?",
    "context": "CREATE TABLE table_name_64 (time_retired VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT MIN(laps) FROM table_name_58 WHERE driver = \"jo siffert\"",
    "question_en": "What is the least number of laps for the driver Jo Siffert?",
    "question_th": "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_en": "What is the least number of laps for the constructor Ferrari and where the grid number was less than 4?",
    "question_th": "จำนวนรอบน้อยที่สุดสำหรับคอนสตรัคเตอร์ Ferrari คือเท่าใด และหมายเลขกริดที่น้อยกว่า 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_en": "What is the total amount of grid when the laps amount was smaller than 68 and the time/retired was injection?",
    "question_th": "จำนวนรอบรวมของกริดเมื่อจำนวนรอบน้อยกว่า 68 และเวลา / เลิกใช้คือเท่าใด",
    "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_en": "What is the gender of Congresswoman Jaime Herrera Beutler's baby?",
    "question_th": "ทารกของสมาชิกสภาผู้แทนราษฎร Jaime Herrera Beutler เป็นเพศอะไร?",
    "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_en": "What was the delivery date of Congresswoman Kirsten Gillibrand's baby boy?",
    "question_th": "วันที่คลอดบุตรของสมาชิกสภาผู้แทนราษฎร Kirsten Gillibrand คือเมื่อใด",
    "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_en": "Which player on the Bulls has a 6 May 1978 birthday?",
    "question_th": "นักเตะคนไหนในทีมบูลส์ที่มีวันเกิดวันที่ 6 พฤษภาคม 1978?",
    "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_en": "Which player has a 1 February 1982 birthday and more than 16 caps?",
    "question_th": "นักเตะคนไหนมีวันเกิดวันที่ 1 กุมภาพันธ์ 1982 และติดทีมชาติมากกว่า 16 นัด?",
    "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_en": "Which tournament has a 2011 of 1r?",
    "question_th": "ทัวร์นาเมนต์ใดที่มี 2011 ของ 1r?",
    "context": "CREATE TABLE table_name_88 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2009 FROM table_name_51 WHERE tournament = \"french open\"",
    "question_en": "Which 2009 tournament was french open?",
    "question_th": "ทัวร์นาเมนต์ใดในปี 2009 ที่เป็นเฟรนช์โอเพ่น?",
    "context": "CREATE TABLE table_name_51 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT away_team AS score FROM table_name_86 WHERE away_team = \"collingwood\"",
    "question_en": "When the away team was collingwood, what was the away team score?",
    "question_th": "เมื่อทีมเยือนเป็น คอลลิงวูด สกอร์ทีมเยือนเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_86 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_72 WHERE away_team = \"richmond\"",
    "question_en": "Who was Richmond's home team opponent?",
    "question_th": "คู่ต่อสู้เจ้าบ้านของริชมอนด์คือใคร?",
    "context": "CREATE TABLE table_name_72 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_83 WHERE away_team = \"essendon\"",
    "question_en": "Where did Essendon play as the away team?",
    "question_th": "เอสเซนดอนเล่นทีมเยือนที่ไหน?",
    "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_en": "Where did the character of Aiden Burn csi detective first appear?",
    "question_th": "ตัวละครของนักสืบ Aiden Burn csi ปรากฏตัวครั้งแรกที่ไหน?",
    "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_en": "Which Ipsos 5/25/09 has a TNS-Sofres 5/28/09 of 20%?",
    "question_th": "Ipsos 5/25/09 รุ่นใดมี TNS-Sofres 5/28/09 ถึง 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_en": "Which TNS-Sofres 5/26/09 has an Ipsos 5/25/09 of 1%?",
    "question_th": "TNS-Sofres 5/26/09 ใดมี Ipsos 5/25/09 ที่ 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_en": "Which OpinionWay 5/18/09 has an Ipsos 5/16/09 of 11%?",
    "question_th": "OpinionWay 5/18/52 ใดมี Ipsos 5/16/52 เท่ากับ 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_en": "Which Ipsos 5/16/09 has a TNS-Sofres 5/28/09 of 2.5%?",
    "question_th": "Ipsos 5/16/09 รุ่นใดมี TNS-Sofres 5/28/09 ที่ 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_en": "Which Ipsos 5/16/09 has an Ifop- La Croix 5/15/09 of 26%?",
    "question_th": "Ipsos 5/16/52 รุ่นใดมี Ifop- La Croix 5/15/52 เท่ากับ 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_en": "Which Viavoice 5/15/09 has a CSA 5/14/09 of 5%, and a TNS-Sofres 5/28/09 of 4.5%?",
    "question_th": "Viavoice 5/15/52 รุ่นใดมี CSA 5/14/09 ที่ 5% และ TNS-Sofres 5/28/09 ที่ 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_en": "What driver has 44 laps?",
    "question_th": "นักแข่งคนไหนมี 44 รอบ?",
    "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_en": "What is the average laps for a grid larger than 2, for a ferrari that got in an accident?",
    "question_th": "รอบเฉลี่ยสำหรับกริดที่ใหญ่กว่า 2 สำหรับเฟอร์รารีที่เกิดอุบัติเหตุคือเท่าใด",
    "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_en": "Name the average goal difference for draw of 7 and played more than 18",
    "question_th": "ตั้งชื่อผลต่างประตูเฉลี่ยโดยเสมอ 7 และเล่นมากกว่า 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_en": "Tell me the totla number of goal difference for goals against of 30 and played less than 18",
    "question_th": "บอกจำนวนรวมผลต่างประตูรวมสำหรับประตูต่อ 30 ประตูและเล่นน้อยกว่า 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_en": "Name the total number of draw for played more than 18",
    "question_th": "ระบุจำนวนเสมอที่เล่นเกิน 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_en": "What PBA team is the player from Ateneo college and a pick of 17?",
    "question_th": "ผู้เล่นจากวิทยาลัย Ateneo ของทีม PBA ใดและถูกเลือกจาก 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_en": "What is Mark Joseph Kong's pick?",
    "question_th": "ตัวเลือกของ Mark Joseph Kong คืออะไร?",
    "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_en": "What PBA team is the player from Ateneo college with a pick number smaller than 15 from?",
    "question_th": "ผู้เล่นจากวิทยาลัย Ateneo ทีม PBA ใดที่มีหมายเลขเลือกน้อยกว่า 15 คน",
    "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_en": "What pick number is Larry Fonacier?",
    "question_th": "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_en": "what is the rating when the rank (timeslot) is less than 3 and the rank (night) is less than 8?",
    "question_th": "เรตติ้งเท่าไหร่เมื่ออันดับ (ช่วงเวลา) น้อยกว่า 3 และอันดับ (กลางคืน) น้อยกว่า 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_en": "what is the rank (night) when the rating is more than 4.3 and the viewers (millions) is more than 10.72?",
    "question_th": "อันดับ (คืน) เรตติ้งเกิน 4.3 และคนดู (ล้าน) มากกว่า 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_en": "When was Windy Hill used as a venue?",
    "question_th": "Windy Hill ถูกใช้เป็นสถานที่จัดงานเมื่อใด",
    "context": "CREATE TABLE table_name_90 (date VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_36 WHERE venue = \"vfl park\"",
    "question_en": "Which home team plays at VFL Park?",
    "question_th": "เจ้าบ้านทีมไหนเล่นที่ 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_en": "Which team plays against Footscray as the home team?",
    "question_th": "ทีมไหนเจอฟุตสเครย์เป็นเจ้าบ้าน?",
    "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_en": "What is the total audience on may 28?",
    "question_th": "ผู้ชมทั้งหมดในวันที่ 28 พฤษภาคมเป็นเท่าใด",
    "context": "CREATE TABLE table_name_99 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(attendance) FROM table_name_93 WHERE score = \"0 – 4\"",
    "question_en": "What was the the total top attendance with a score of 0 – 4?",
    "question_th": "ผู้เข้าร่วมสูงสุดทั้งหมดด้วยคะแนน 0 – 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_en": "How many allsvenskan titles did club aik have after its introduction after 2000, with stars symbolizing the number of swedish championship titles ?",
    "question_th": "Club Aik คว้าแชมป์ Allsvenskan ได้ทั้งหมดกี่รายการหลังจากเปิดตัวหลังปี 2000 โดยมีดวงดาวเป็นสัญลักษณ์ของจำนวนแชมป์ของสวีเดน",
    "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_en": "What is the highest amount of swedish championship titles for the team that was introduced before 2006?",
    "question_th": "จำนวนแชมป์สวีเดนสูงสุดสำหรับทีมที่เปิดตัวก่อนปี 2549 คือเท่าไร?",
    "context": "CREATE TABLE table_name_62 (swedish_championship_titles INTEGER, introduced INTEGER)"
  },
  {
    "answer": "SELECT record FROM table_name_75 WHERE loss = \"r. springer\"",
    "question_en": "What is the record loss of R. Springer?",
    "question_th": "การสูญเสียสถิติของ R. Springer คืออะไร?",
    "context": "CREATE TABLE table_name_75 (record VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT streak FROM table_name_77 WHERE date = \"april 12\"",
    "question_en": "What was the streak on April 12?",
    "question_th": "สตรีคในวันที่ 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_en": "What was the date of A. Benes loss to the Rockies?",
    "question_th": "วันที่ A. Benes แพ้เทือกเขาร็อกกี้คือวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_19 (date VARCHAR, loss VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT streak FROM table_name_45 WHERE attendance = \"33,013\"",
    "question_en": "Which streak had an attendance of 33,013?",
    "question_th": "สตรีคใดมีผู้เข้าร่วม 33,013 คน?",
    "context": "CREATE TABLE table_name_45 (streak VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT wicket_partnership FROM table_name_91 WHERE season = \"1928\"",
    "question_en": "What was the partnership in the season of 1928",
    "question_th": "ความเป็นหุ้นส่วนกันในฤดูกาล พ.ศ. 2471 คืออะไร",
    "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_en": "What are the earnings for jim colbert with under 4 wins?",
    "question_th": "จิม โคลเบิร์ตที่ชนะต่ำกว่า 4 ครั้งมีรายได้เท่าไร",
    "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_en": "How many events for bob murphy?",
    "question_th": "บ๊อบ เมอร์ฟี่ มีงานกี่งาน?",
    "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_en": "What is the rank for bob murphy with under 4 wins?",
    "question_th": "Bob murphy ที่ชนะต่ำกว่า 4 ครั้งมีอันดับเท่าไหร่?",
    "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_en": "When the club is flamengo in the 2009 season, and they scored more than 0 goals, what's the sum of the Apps?",
    "question_th": "เมื่อสโมสรคือฟลาเมงโกในฤดูกาล 2009 และพวกเขายิงได้มากกว่า 0 ประตู ผลรวมของ 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_en": "In the 2010 season what club has 0 goals and more than 0 Apps?",
    "question_th": "ในฤดูกาล 2010 สโมสรใดมี 0 ประตูและมีแอปมากกว่า 0 รายการ",
    "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_en": "What Round is the Event cage rage 17?",
    "question_th": "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_en": "What Event is at the Time 1:16?",
    "question_th": "เหตุการณ์อะไร ณ เวลา 1:16?",
    "context": "CREATE TABLE table_name_70 (event VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_93 WHERE track > 11",
    "question_en": "What is the title of the track after 11?",
    "question_th": "เพลงหลัง 11 ชื่อเพลงอะไรคะ?",
    "context": "CREATE TABLE table_name_93 (title VARCHAR, track INTEGER)"
  },
  {
    "answer": "SELECT original_album FROM table_name_92 WHERE performer = \"brad mehldau\"",
    "question_en": "On the title feature brad mehldau as the performer, what is the original album?",
    "question_th": "ในชื่อเรื่องที่มีแบรด เมห์ลเดาเป็นนักแสดง อัลบั้มต้นฉบับคืออะไร?",
    "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_en": "Which track has the original album turbulent indigo?",
    "question_th": "เพลงไหนมีอัลบั้มต้นฉบับ ครามคราม?",
    "context": "CREATE TABLE table_name_59 (track INTEGER, original_album VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_8 WHERE position = \"center\"",
    "question_en": "What Utah Jazz player played Center?",
    "question_th": "ผู้เล่น Utah Jazz คนไหนที่เล่นเซ็นเตอร์?",
    "context": "CREATE TABLE table_name_8 (player VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_41 WHERE years_for_jazz = \"1987-88\"",
    "question_en": "What is the nationality of all Utah Jazz Players, that played 1987-88?",
    "question_th": "นักเตะ Utah Jazz ที่เล่นในฤดูกาล 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_en": "What is the nationality of all Utah Jazz Players, that played 2011-present?",
    "question_th": "ผู้เล่น Utah Jazz ทั้งหมดที่เล่นในปี 2011-ปัจจุบันมีสัญชาติอะไร",
    "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_en": "What Utah Jazz Forward played for Southern Methodist?",
    "question_th": "Utah Jazz Forward คนไหนเล่นให้ 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_en": "What years did the Utah Jazz Player from Southern Methodist, Play?",
    "question_th": "ผู้เล่น Utah Jazz จาก 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_en": "Who was the home team at MCG?",
    "question_th": "ทีมเหย้าของเอ็มซีจีคือใคร?",
    "context": "CREATE TABLE table_name_40 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_16 WHERE home_team = \"carlton\"",
    "question_en": "Who was Carlton's away team opponents?",
    "question_th": "คู่ต่อสู้ทีมเยือนของคาร์ลตันคือใคร?",
    "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_en": "What was home team South Melbourne's opponents score?",
    "question_th": "คู่แข่งของเซาธ์ เมลเบิร์น เจ้าบ้านได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_67 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_72 WHERE attendance = \"4,516\"",
    "question_en": "When the Attendance was 4,516, what was the Record?",
    "question_th": "เมื่อผู้เข้าร่วมอยู่ที่ 4,516 คน บันทึกคืออะไร?",
    "context": "CREATE TABLE table_name_72 (record VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_13 WHERE score = \"4-10\"",
    "question_en": "When the Score was 4-10, what was the Attendance?",
    "question_th": "เมื่อสกอร์อยู่ที่ 4-10 ผู้เข้าร่วมเป็นเท่าใด",
    "context": "CREATE TABLE table_name_13 (attendance VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_40 WHERE record = \"9-24\"",
    "question_en": "With a Record of 9-24, what was the Score?",
    "question_th": "ด้วยสถิติ 9-24 คะแนนเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_40 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_16 WHERE score = \"6-2\"",
    "question_en": "When the Score was 6-2, which Opponent was played?",
    "question_th": "เมื่อสกอร์เป็น 6-2 ฝ่ายตรงข้ามคนไหนเล่น?",
    "context": "CREATE TABLE table_name_16 (opponent VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_82 WHERE attendance = \"16,212\"",
    "question_en": "On what Date was the Attendance 16,212?",
    "question_th": "มีผู้เข้าร่วม 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_en": "What was the Attendance on May 12, when the New York Yankees were the Opponent?",
    "question_th": "ผู้เข้าร่วมในวันที่ 12 พฤษภาคมเมื่อนิวยอร์กแยงกี้เป็นฝ่ายตรงข้ามคืออะไร?",
    "context": "CREATE TABLE table_name_71 (attendance VARCHAR, opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_39 WHERE venue = \"junction oval\"",
    "question_en": "Which Date has a Venue of junction oval?",
    "question_th": "วันที่ใดมีสถานที่ของทางแยกวงรี?",
    "context": "CREATE TABLE table_name_39 (date VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(crowd) FROM table_name_79 WHERE home_team = \"melbourne\"",
    "question_en": "Which total number of Crowd has a Home team of melbourne?",
    "question_th": "Crowd ที่มีทีมเหย้าของเมลเบิร์นมีจำนวนทั้งหมดเท่าใด?",
    "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_en": "What is the lowest 1st prize for florida tournaments and a Score of 200 (-16)?",
    "question_th": "รางวัลที่ 1 ต่ำสุดสำหรับทัวร์นาเมนต์ฟลอริดาและคะแนน 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_en": "Which grid has a time/retired of +27.347?",
    "question_th": "ตารางใดมีเวลา/เกษียณที่ +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_en": "Who was the Singles Champions in Trieste, Italy?",
    "question_th": "ใครคือแชมป์คนโสดในเมืองทริเอสเต ประเทศอิตาลี?",
    "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_en": "On what Surface will the Venezuela F5 Futures in Caracas be played?",
    "question_th": "Venezuela F5 Futures ในการากัสจะเล่นบน Surface ใด",
    "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_en": "What is the type of Surface for the New Zealand F1 Futures Tournament?",
    "question_th": "Surface ประเภทใดสำหรับ 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ömke\" AND tournament = \"germany f13 futures\"",
    "question_en": "In what Country will Dennis Blömke play the Germany F13 Futures Tournament?",
    "question_th": "Dennis Blömke จะเล่นในรายการ 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_en": "What are the average laps for jackie stewart?",
    "question_th": "รอบเฉลี่ยของแจ็กกี้สจ๊วตคือเท่าไร?",
    "context": "CREATE TABLE table_name_77 (laps INTEGER, driver VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_19 WHERE venue = \"fort lauderdale, florida\"",
    "question_en": "What is the result in fort lauderdale, florida?",
    "question_th": "ผลการค้นหาในฟอร์ตลอเดอร์เดล ฟลอริดาเป็นอย่างไรบ้าง",
    "context": "CREATE TABLE table_name_19 (result VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_80 WHERE goal < 2",
    "question_en": "What venue had less than 2 goals?",
    "question_th": "สนามใดมีประตูน้อยกว่า 2 ประตู?",
    "context": "CREATE TABLE table_name_80 (venue VARCHAR, goal INTEGER)"
  },
  {
    "answer": "SELECT AVG(crowd) FROM table_name_8 WHERE away_team = \"fitzroy\"",
    "question_en": "What was the attendance when Fitzroy played as the away team?",
    "question_th": "การเข้าร่วมงานเมื่อฟิตซ์รอยเล่นเป็นทีมเยือนเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_8 (crowd INTEGER, away_team VARCHAR)"
  },
  {
    "answer": "SELECT trainer FROM table_name_8 WHERE owner = \"robert courtney\"",
    "question_en": "Who was the trainer with Robert Courtney was owner?",
    "question_th": "ใครคือเทรนเนอร์ที่มี Robert Courtney เป็นเจ้าของ?",
    "context": "CREATE TABLE table_name_8 (trainer VARCHAR, owner VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_name_36 WHERE trainer = \"jeff mullins\"",
    "question_en": "What year was Jeff Mullins?",
    "question_th": "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_en": "In what grid did Richard Robarts make 36 laps?",
    "question_th": "Richard Robarts ทำ 36 รอบในตารางใด",
    "context": "CREATE TABLE table_name_48 (grid INTEGER, driver VARCHAR, laps VARCHAR)"
  },
  {
    "answer": "SELECT SUM(laps) FROM table_name_20 WHERE grid = 18",
    "question_en": "How many laps were completed in grid 18?",
    "question_th": "จบไปแล้วกี่รอบในตารางที่ 18?",
    "context": "CREATE TABLE table_name_20 (laps INTEGER, grid VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_73 WHERE result = \"12th\"",
    "question_en": "What was the venue where the result was 12th?",
    "question_th": "สนามไหนซึ่งผลการแข่งขันคืออันดับที่ 12?",
    "context": "CREATE TABLE table_name_73 (venue VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT species FROM table_name_22 WHERE genes > 2 OFFSET 030",
    "question_en": "What species has more than 2,030 genes?",
    "question_th": "สายพันธุ์ใดมียีนมากกว่า 2,030 ยีน",
    "context": "CREATE TABLE table_name_22 (species VARCHAR, genes INTEGER)"
  },
  {
    "answer": "SELECT genes FROM table_name_47 WHERE species = \"rubrobacter xylanophilus\"",
    "question_en": "How many genes in the species Rubrobacter Xylanophilus?",
    "question_th": "มียีนกี่ยีนในสายพันธุ์ 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_en": "What is the lowest number of genes in Rubrobacter Xylanophilus?",
    "question_th": "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_en": "What is the average number of base pairs with 784 genes?",
    "question_th": "จำนวนคู่เบสโดยเฉลี่ยที่มี 784 ยีนคือเท่าใด",
    "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_en": "How many points are obtained when a standing broad jump is 207-215 cm?",
    "question_th": "กระโดดไกลแบบยืนสูง 207-215 ซม. จะได้กี่คะแนน?",
    "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_en": "How many points are there, when the grade is A?",
    "question_th": "แล้วเกรด A มีกี่คะแนน?",
    "context": "CREATE TABLE table_name_92 (points INTEGER, grade VARCHAR)"
  },
  {
    "answer": "SELECT grade FROM table_name_43 WHERE chin_up__reps_ = \"3\"",
    "question_en": "If a person does 3 chin-up reps, what grade do they obtain?",
    "question_th": "ถ้าทำ chin-up reps 3 ครั้ง จะได้เกรดเท่าไหร่?",
    "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_en": "How many seconds is a shuttle run that give 2 points?",
    "question_th": "ลูกขนไก่วิ่งได้กี่วินาทีจะได้ 2 คะแนน?",
    "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_en": "Tell me the outgoing manager for resigned and replaced by manolo villanova for real zaragoza",
    "question_th": "บอกฉันเกี่ยวกับผู้จัดการทีมที่ลาออกและมาโนโล วิลลาโนวาเข้ามาแทนที่เรอัล ซาราโกซ่า",
    "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_en": "Name the replaced by for racing santander",
    "question_th": "ตั้งชื่อการแทนที่ด้วยสำหรับการแข่งรถซานตานเดร์",
    "context": "CREATE TABLE table_name_64 (replaced_by VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT AVG(grid) FROM table_name_64 WHERE laps = 14",
    "question_en": "What Grid had 14 laps completed?",
    "question_th": "กริดคนไหนที่วิ่งครบ 14 รอบ?",
    "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_en": "What is the lowest Grid with 25 laps manufactured by Honda with a time of +54.103?",
    "question_th": "กริดต่ำสุดที่มี 25 รอบที่ผลิตโดย Honda ด้วยเวลา +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_en": "How many laps were timed at +1:02.315?",
    "question_th": "จับเวลาได้กี่รอบที่ +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_en": "What is the points ranking of Chicago Fire?",
    "question_th": "อันดับคะแนนของ 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_en": "Who is the opponent with a time of 1:16?",
    "question_th": "คู่ต่อสู้ด้วยเวลา 1:16 คือใคร?",
    "context": "CREATE TABLE table_name_58 (opponent VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_64 WHERE method = \"submission\"",
    "question_en": "What round has a method of submission?",
    "question_th": "รอบไหนมีช่องทางการยื่น?",
    "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_en": "Which competition did he win on August 15, 2012?",
    "question_th": "เขาชนะการแข่งขันใดในวันที่ 15 สิงหาคม 2555?",
    "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_en": "Where was the competition on August 15, 2012?",
    "question_th": "แข่งขันที่ไหนในวันที่ 15 สิงหาคม 2555?",
    "context": "CREATE TABLE table_name_60 (venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_34 WHERE score = \"3-0\"",
    "question_en": "When was the competition that had a score of 3-0?",
    "question_th": "การแข่งขันที่มีสกอร์ 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_en": "What was the result of the UEFA Euro 2008 Qualifying competition?",
    "question_th": "ผลการแข่งขันรอบคัดเลือกยูฟ่า ยูโร 2008 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_97 (result VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_88 WHERE player = \"steven anthony\"",
    "question_en": "What nationality is Steven Anthony?",
    "question_th": "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_en": "What is the highest pick number from Slovakia?",
    "question_th": "หมายเลขเลือกสูงสุดจากสโลวาเกียคือหมายเลขใด",
    "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_en": "What is the lowest pick number for the Russian Major League?",
    "question_th": "หมายเลขเลือกต่ำสุดสำหรับ 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_en": "What team is from the Russian Major League?",
    "question_th": "ทีมใดมาจาก 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_en": "Which league has a pick number larger than 204 from Canada and LW as the position?",
    "question_th": "ลีกใดมีหมายเลขตัวเลือกมากกว่า 204 จากแคนาดาและมี LW ดำรงตำแหน่ง",
    "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_en": "Who is the player from Aurillac?",
    "question_th": "นักเตะจากโอริลแลคคือใคร?",
    "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_en": "what is the points when the rank is more than 1 and the places is 33?",
    "question_th": "เมื่ออันดับมากกว่า 1 และอันดับที่ 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_en": "what is the highest rank for east germany with points of 128.98 and places less than 70?",
    "question_th": "เยอรมนีตะวันออกมีคะแนน 128.98 และอันดับที่ต่ำกว่า 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_en": "what is the points for rank 12?",
    "question_th": "คะแนนสำหรับอันดับ 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_en": "What is the average PI GP when the pick is smaller tha 70 and the reg GP is 97?",
    "question_th": "PI GP เฉลี่ยเป็นเท่าใดเมื่อตัวเลือกมีขนาดเล็กกว่า 70 และ reg GP คือ 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 = \"[χdəm]\"",
    "question_en": "Name the gloss for [χdəm]",
    "question_th": "ตั้งชื่อความเงาให้กับ [χdəm]",
    "context": "CREATE TABLE table_name_69 (gloss VARCHAR, pronunciation VARCHAR)"
  },
  {
    "answer": "SELECT realization FROM table_name_71 WHERE gloss = \"'to be, to do'\"",
    "question_en": "Name the realization for 'to be, to do'",
    "question_th": "ตั้งชื่อการตระหนักรู้สำหรับ '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_en": "What is the lowest number of places for Sherri Baier / Robin Cowan when ranked lower than 1?",
    "question_th": "จำนวนอันดับที่ต่ำที่สุดสำหรับ Sherri Baier / Robin Cowan เมื่ออยู่ในอันดับที่ต่ำกว่า 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_en": "What platform is nds4droid on for the nintendo ds?",
    "question_th": "nds4droid บนแพลตฟอร์มใดสำหรับ 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_en": "Who has a license of proprietary (available on inquiry)?",
    "question_th": "ใครมีใบอนุญาตกรรมสิทธิ์ (สอบถามได้)",
    "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_en": "What platform is nds4droid on for the nintendo ds with a license of gpl v2?",
    "question_th": "nds4droid บนแพลตฟอร์มใดสำหรับ nintendo ds ที่มีลิขสิทธิ์ 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_en": "What system has a current version of 1.4e?",
    "question_th": "ระบบใดที่มีเวอร์ชันปัจจุบันเป็น 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_en": "Who has a licence of gpl v2 and a current version of 0.9.9?",
    "question_th": "ใครมีใบอนุญาต gpl v2 และเวอร์ชันปัจจุบัน 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_en": "What was the performance length of the 1999 season in bydgoszcz, poland?",
    "question_th": "การแสดงในฤดูกาล 1999 ที่เมืองบิดกอชช์ ประเทศโปแลนด์ มีความยาวเท่าใด",
    "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_en": "What were the performance lengths in the 3000 m events in and after 2003?",
    "question_th": "ระยะเวลาการแสดงในการแข่งขัน 3000 ม. ในและหลังปี 2546 เป็นเท่าใด",
    "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_en": "How many seasons took place in santiago de chile, chile?",
    "question_th": "มีกี่ฤดูกาลเกิดขึ้นในซันติอาโกเดอชิลี ประเทศชิลี?",
    "context": "CREATE TABLE table_name_19 (season VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_90 WHERE date = \"may 11, 2002\"",
    "question_en": "During which Season did the may 11, 2002 event take place?",
    "question_th": "เหตุการณ์ 11 พฤษภาคม 2545 เกิดขึ้นในช่วงฤดูกาลใด",
    "context": "CREATE TABLE table_name_90 (season VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT AVG(round) FROM table_name_16 WHERE college = \"california\"",
    "question_en": "What is the average round for players from california?",
    "question_th": "รอบเฉลี่ยสำหรับผู้เล่นจากแคลิฟอร์เนียคือเท่าไร?",
    "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_en": "What's the Nationality of Round 8 Vancouver Canucks NHL Team of Swift Current Broncos (WHL)?",
    "question_th": "สัญชาติของรอบที่ 8 Vancouver Canucks ทีม NHL ของ 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_en": "When the Away team of essendon was playing, what was the Home team's score?",
    "question_th": "เมื่อทีมเยือนเอสเซนดอนเล่นสกอร์ของเจ้าบ้านได้เท่าไหร่?",
    "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_en": "For the Venue of western oval, what's the Away team playing?",
    "question_th": "สำหรับสนามเวสเทิร์นโอวัล ทีมเยือนเล่นอะไรบ้าง?",
    "context": "CREATE TABLE table_name_71 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_82 WHERE week = \"7\"",
    "question_en": "Who was the opponent on week 7?",
    "question_th": "คู่ต่อสู้ในสัปดาห์ที่ 7 คือใคร?",
    "context": "CREATE TABLE table_name_82 (opponent VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_4 WHERE week = \"5\"",
    "question_en": "Who was the opponent on week 5?",
    "question_th": "คู่ต่อสู้ในสัปดาห์ที่ 5 คือใคร?",
    "context": "CREATE TABLE table_name_4 (opponent VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT leading_scorer FROM table_name_26 WHERE score = \"107–97\"",
    "question_en": "Who was the leading scorer of the game that had a score of 107–97?",
    "question_th": "ใครคือผู้ทำประตูสูงสุดของเกมที่มีคะแนน 107–97",
    "context": "CREATE TABLE table_name_26 (leading_scorer VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_39 WHERE home = \"suns\"",
    "question_en": "Who was the visiting team when the Suns were the home team?",
    "question_th": "ทีมเยือนคือใครเมื่อเดอะซันส์เป็นเจ้าบ้าน?",
    "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_en": "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?",
    "question_th": "คือจำนวนเสมอโดยเฉลี่ยของทีม Detroit Lions เมื่อพวกเขาชนะน้อยกว่า 5 ครั้ง แพ้น้อยกว่า 3 ครั้ง และเปอร์เซ็นต์การชนะที่ 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–6, 6–3, 7–5\"",
    "question_en": "What is the most recent year in which the score was 4–6, 6–3, 7–5?",
    "question_th": "ปีล่าสุดที่คะแนนคือ 4–6, 6–3, 7–5 คือปีใด",
    "context": "CREATE TABLE table_name_91 (year INTEGER, score VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_5 WHERE height = \"6-7\"",
    "question_en": "Which player has a height of 6-7?",
    "question_th": "ผู้เล่นคนไหนที่มีส่วนสูง 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_en": "What is the NBA draft result of the player from Washington, DC?",
    "question_th": "ผลร่าง NBA ของผู้เล่นจากวอชิงตัน ดี.ซี. เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_97 (nba_draft VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT nba_draft FROM table_name_48 WHERE college = \"kansas\"",
    "question_en": "What is the NBA draft result of the player from the College of Kansas?",
    "question_th": "ผลดราฟต์ NBA ของผู้เล่นจาก 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_en": "Who is the player from La Costa Canyon High School?",
    "question_th": "ใครคือผู้เล่นจาก 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_en": "How tall is the player from Nacogdoches High School?",
    "question_th": "ผู้เล่นจากโรงเรียนมัธยม Nacogdoches สูงเท่าไหร่",
    "context": "CREATE TABLE table_name_28 (height VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_47 WHERE hometown = \"dallas, tx\"",
    "question_en": "What is the school of the player from Dallas, TX?",
    "question_th": "โรงเรียนของผู้เล่นจาก 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_en": "What is the result for world group, consolation round?",
    "question_th": "ผลบอลโลกรอบปลอบใจเป็นยังไงบ้าง?",
    "context": "CREATE TABLE table_name_31 (result VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT SUM(attendance) FROM table_name_47 WHERE tie_no = \"1\"",
    "question_en": "How many attended tie number 1?",
    "question_th": "มีผู้เข้าร่วมเน็คไทหมายเลข 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_en": "How many attended tie number 3?",
    "question_th": "มีผู้เข้าร่วมเน็คไทหมายเลข 3 กี่คน?",
    "context": "CREATE TABLE table_name_97 (attendance INTEGER, tie_no VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_name_68 WHERE player = \"tre madden\"",
    "question_en": "What is the hometown for tre madden?",
    "question_th": "บ้านเกิดของ 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_en": "What is the hometown for the player that is defensive back and went to alabama?",
    "question_th": "บ้านเกิดของผู้เล่นที่กองหลังและไปอลาบามาคืออะไร?",
    "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_en": "What is the college for the player that went to ridge community high school and is defensive back?",
    "question_th": "วิทยาลัยสำหรับผู้เล่นที่ไปโรงเรียนมัธยมชุมชนสันเขาและได้รับการป้องกันคืออะไร?",
    "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_en": "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?",
    "question_th": "ผลรวมของปีที่มีประเภทไม่เป็นทางการ และสถานที่ที่มีอาคาร justus lipius บรัสเซลส์ และวันที่ 23 พฤษภาคมเป็นเท่าใด",
    "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_en": "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?",
    "question_th": "ประเภทที่มีที่ตั้งกับอาคาร justus lipius บรัสเซลส์ และปี 2012 และประธานาธิบดีกับ Herman van Rompuy (สมัยที่ 1) และวันที่ 23 พฤษภาคมคืออะไร?",
    "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–19 october\"",
    "question_en": "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–19 october?",
    "question_th": "ประธานาธิบดีซึ่งมีที่ตั้งของอาคาร justus lipius บรัสเซลส์ และประเภทที่มีกำหนดการ และหนึ่งปีที่ใหญ่กว่าปี 2011 และวันที่คือวันที่ 18–19 ตุลาคมคืออะไร?",
    "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–29 june\" AND type = \"scheduled\"",
    "question_en": "What is the Location with a Year larger than 2011, and a President with herman van rompuy (2nd term), and a Date of 28–29 june, and a Type with scheduled?",
    "question_th": "สถานที่ที่มีหนึ่งปีใหญ่กว่าปี 2011 และประธานาธิบดีกับ Herman van Rompuy (สมัยที่ 2) และวันที่ 28–29 มิถุนายน และประเภทที่มีกำหนดคืออะไร",
    "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_en": "What is the President with a Year larger than 2011, and a Date with 23 may?",
    "question_th": "ประธานาธิบดีที่มีปีใหญ่กว่าปี 2554 และวันที่ 23 พฤษภาคมคืออะไร?",
    "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–29 june\"",
    "question_en": "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–29 june?",
    "question_th": "ประเภทใดที่มีหนึ่งปีมากกว่าปี 2010 และสถานที่ที่มีอาคาร justus lipius บรัสเซลส์ และประธานาธิบดีของ Herman van rompuy (สมัยที่ 2) และวันที่ 28–29 มิถุนายน",
    "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_en": "What competition has a goal number of 13?",
    "question_th": "รายการใดมีประตูหมายเลข 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_en": "What is the total of yards when asst. is 19, totaltk is 60 and sack is more than 0?",
    "question_th": "เมื่อ asst. ระยะรวมเป็นเท่าใด คือ 19, ผลรวมคือ 60 และกระสอบมากกว่า 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_en": "what is the total sack for mike green when fumr is less than 0?",
    "question_th": "ค่ากระสอบรวมของไมค์ กรีนเมื่อ fumr น้อยกว่า 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_en": "what is the total sack when totaltk is 1 and asst. is more than 0?",
    "question_th": "เมื่อผลรวมเป็น 1 และคสช. จะมียอดรวมเป็นเท่าใด มากกว่า 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_en": "what is the total number of tackles when fumr is 0, totaltk is 54 and yards is less than 0?",
    "question_th": "จำนวนการสกัดกั้นทั้งหมดคือเท่าไรเมื่อ fumer เป็น 0, Totaltk คือ 54 และหลาน้อยกว่า 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_en": "what is the sum of totaltk when yards is less than 0?",
    "question_th": "ผลรวมของผลรวมเมื่อหลาน้อยกว่า 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_en": "What class is after 1973 with 41 points?",
    "question_th": "หลังปี 1973 คลาสไหนมี 41 คะแนน?",
    "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_en": "How many wins for bikes with under 54 points, team yamaha, a 250cc bike, and before 1977?",
    "question_th": "มอเตอร์ไซค์ที่มีคะแนนต่ำกว่า 54 แต้ม ทีม Yamaha มอเตอร์ไซค์ 250cc และก่อนปี 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_en": "What distance did giovanni lombardi win after stage 5?",
    "question_th": "จิโอวานนี ลอมบาร์ดี ชนะระยะใดหลังจากสเตจที่ 5",
    "context": "CREATE TABLE table_name_10 (distance VARCHAR, stage VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT gc_leader FROM table_name_51 WHERE course = \"ávila - segovia\"",
    "question_en": "Who is the GC leader at ávila - segovia?",
    "question_th": "ใครคือผู้นำ GC ที่ ávila - 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_en": "How many grids have less than 41 laps and a Driver of pedro de la rosa?",
    "question_th": "มีกี่กริดที่มีรอบน้อยกว่า 41 รอบและมีนักแข่งเปโดร เด ลา โรซา 1 คน?",
    "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äkkinen\"",
    "question_en": "Which Time/Retired has a Grid smaller than 3, and a Driver of mika häkkinen?",
    "question_th": "เวลา/เกษียณอายุใดที่มีตารางน้อยกว่า 3 และไดรเวอร์ของ mika häkkinen",
    "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_en": "What are toranosuke takagi's average laps?",
    "question_th": "รอบเฉลี่ยของ Toranosuke Takagi คืออะไร?",
    "context": "CREATE TABLE table_name_14 (laps INTEGER, driver VARCHAR)"
  },
  {
    "answer": "SELECT MIN(grid) FROM table_name_95 WHERE time_retired = \"+5.004\"",
    "question_en": "Which grid has a Time/Retired of +5.004?",
    "question_th": "ตารางใดมีเวลา/เกษียณเป็น +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_en": "What was the score of the game on November 9 when Atlanta was the visiting team?",
    "question_th": "สกอร์ของเกมวันที่ 9 พ.ย. เมื่อแอตแลนต้าเป็นทีมเยือนเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_73 (score VARCHAR, visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_56 WHERE home = \"tampa bay\"",
    "question_en": "What was the score of the home game at Tampa Bay?",
    "question_th": "เกมเหย้าที่แทมปา เบย์สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_56 (score VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_32 WHERE visitor = \"atlanta\" AND home = \"ottawa\"",
    "question_en": "What was the date of the game where Ottawa was the home team and Atlanta is the visiting team?",
    "question_th": "เกมวันที่เท่าไหร่ที่ออตตาวาเป็นเจ้าบ้านและแอตแลนต้าเป็นทีมเยือนคือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_32 (date VARCHAR, visitor VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_39 WHERE team = \"giants\"",
    "question_en": "I want the result for team of giants",
    "question_th": "อยากได้ผลงานทีมยักษ์ใหญ่",
    "context": "CREATE TABLE table_name_39 (result VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT pitcher FROM table_name_8 WHERE date = \"september 6, 2006\"",
    "question_en": "Tell me the pitcher on september 6, 2006",
    "question_th": "บอกฉันเหยือกวันที่ 6 กันยายน 2549",
    "context": "CREATE TABLE table_name_8 (pitcher VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_66 WHERE team = \"rockies\"",
    "question_en": "I want the date for rockies",
    "question_th": "ฉันต้องการเดทสำหรับร็อคกี้",
    "context": "CREATE TABLE table_name_66 (date VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_58 WHERE pitcher = \"aníbal sánchez\"",
    "question_en": "I want the date for aníbal sánchez",
    "question_th": "ฉันอยากได้เดทของอานิบัล ซานเชซ",
    "context": "CREATE TABLE table_name_58 (date VARCHAR, pitcher VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_63 WHERE team = \"giants\"",
    "question_en": "I want the result for team of giants",
    "question_th": "อยากได้ผลงานทีมยักษ์ใหญ่",
    "context": "CREATE TABLE table_name_63 (result VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT site FROM table_name_51 WHERE date = \"september 29, 2013\"",
    "question_en": "I want the site for september 29, 2013",
    "question_th": "ฉันต้องการเว็บไซต์สำหรับวันที่ 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_en": "When the apparent magnitude is 10.5, what is the right ascension?",
    "question_th": "เมื่อขนาดปรากฏคือ 10.5 แล้วค่าการขึ้นที่ถูกต้องจะเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_71 (right_ascension___j2000__ VARCHAR, apparent_magnitude VARCHAR)"
  },
  {
    "answer": "SELECT livery FROM table_name_57 WHERE date = \"1919\"",
    "question_en": "Which livery is from 1919?",
    "question_th": "องค์ใดมาจากปี 1919?",
    "context": "CREATE TABLE table_name_57 (livery VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(attendance) FROM table_name_89 WHERE record = \"80-81\"",
    "question_en": "Of the games with a record of 80-81, what was the highest attendance?",
    "question_th": "จากเกมที่มีสถิติ 80-81 มีผู้ชมมากที่สุดคือเกมไหน?",
    "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_en": "How many entries have a HK viewers of 2.23 million, and a Rank below 2?",
    "question_th": "มีกี่รายการที่มีผู้ชม HK 2.23 ล้านคนและมีอันดับต่ำกว่า 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 = \"學警雄心\"",
    "question_en": "What premiere has a finale of less than 41, peak less than 40, average above 31, and a Chinese title of 學警雄心?",
    "question_th": "รอบปฐมทัศน์เรื่องใดที่มีตอนจบน้อยกว่า 41 จุดสูงสุดน้อยกว่า 40 ค่าเฉลี่ยสูงกว่า 31 และมีชื่อภาษาจีนว่า 學警雄heart",
    "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_en": "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?",
    "question_th": "อะไรคือค่าเฉลี่ยสูงสุดที่มีตอนจบมากกว่า 35 คน ผู้ชมฮ่องกง 2.12 ล้านคน และพีคมากกว่า 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_en": "What is the score for the home team when the venue is Junction Oval?",
    "question_th": "เจ้าบ้านได้สกอร์เท่าไหร่เมื่อสนามจังชั่นโอวัล?",
    "context": "CREATE TABLE table_name_96 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT MIN(crowd) FROM table_name_73 WHERE venue = \"mcg\"",
    "question_en": "What is the lowest crowd number at the venue MCG?",
    "question_th": "จำนวนฝูงชนต่ำสุดในสถานที่จัดงาน MCG คือเท่าใด",
    "context": "CREATE TABLE table_name_73 (crowd INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT AVG(round) FROM table_name_89 WHERE place = \"jacksonville\"",
    "question_en": "Name the average round for jacksonville",
    "question_th": "ตั้งชื่อรอบเฉลี่ยสำหรับแจ็กสันวิลล์",
    "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_en": "I want the standing for january 29 and finished of 3rd and total points less than 248",
    "question_th": "อยากได้อันดับ 29 ม.ค. จบอันดับ 3 มีคะแนนรวมน้อยกว่า 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_en": "What was the result and score of the game on February 22?",
    "question_th": "ผลการแข่งขันและสกอร์ของเกมวันที่ 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_en": "What is the largest Rd# for a PI GP greater than 0 and a Reg GP less than 62?",
    "question_th": "Rd# ที่ใหญ่ที่สุดสำหรับ PI GP ที่มากกว่า 0 และ Reg GP น้อยกว่า 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_en": "Which team has a Reg GP over 62?",
    "question_th": "ทีมใดมี Reg GP มากกว่า 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_en": "What is the total year with a Position of 12th?",
    "question_th": "รวมปีที่ตำแหน่งที่ 12 คือเท่าไร?",
    "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_en": "When a race had less than 18 laps and time/retired of accident, what was the smallest grid?",
    "question_th": "เมื่อการแข่งขันมีน้อยกว่า 18 รอบและเวลา/ออกจากอุบัติเหตุ เส้นกริดที่เล็กที่สุดคือเท่าใด",
    "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_en": "What is the time/retired for a grid over 17 with 74 laps?",
    "question_th": "เวลา/เกษียณสำหรับกริดที่เกิน 17 โดยมี 74 รอบคือเท่าไร?",
    "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_en": "What is the grid total for david coulthard?",
    "question_th": "ตารางรวมของ 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_en": "What day did Chris Maddocks compete in the 35000 m?",
    "question_th": "Chris Maddocks แข่งขันในระยะ 35,000 ม. วันใด",
    "context": "CREATE TABLE table_name_83 (date VARCHAR, athlete VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT athlete FROM table_name_66 WHERE data = \"214.061km\"",
    "question_en": "Who has a walking data of 214.061km?",
    "question_th": "ใครมีข้อมูลการเดิน 214.061 กม.?",
    "context": "CREATE TABLE table_name_66 (athlete VARCHAR, data VARCHAR)"
  },
  {
    "answer": "SELECT athlete FROM table_name_11 WHERE data = \"3:10:48+\"",
    "question_en": "Who has a walking data of 3:10:48+?",
    "question_th": "ใครมีข้อมูลการเดิน 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_en": "what is the title of the episode with the original air date of october2,2002?",
    "question_th": "ตอนที่ออกอากาศตอนแรกวันที่ 2 ตุลาคม 2545 ชื่อตอนอะไรคะ?",
    "context": "CREATE TABLE table_name_57 (title VARCHAR, original_air_date VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_1 WHERE production_code = \"ad1a22\"",
    "question_en": "what is the title of the episode with the production code of ad1a22?",
    "question_th": "ตอนที่มีรหัสการผลิต 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_en": "who was the director of the episode with production code ad1a26?",
    "question_th": "ใครเป็นผู้กำกับตอนที่มีรหัสการผลิต 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_en": "Who is the constructor whose circuit was Oulton Park?",
    "question_th": "ใครคือผู้สร้างซึ่งมีวงจรคือ Oulton Park?",
    "context": "CREATE TABLE table_name_71 (constructor VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT race_name FROM table_name_37 WHERE circuit = \"snetterton\"",
    "question_en": "What is the name of the race for which the circuit was Snetterton?",
    "question_th": "การแข่งขันชื่อ 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_en": "During what years did the Guard from Oklahoma with a height of 6-6 play for the Rockets?",
    "question_th": "การ์ดจากโอคลาโฮมาที่มีส่วนสูง 6-6 เล่นให้กับร็อคเก็ตส์ในช่วงกี่ปี?",
    "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_en": "how many times what the position 6th, the competition was super league xvii and played was larger than 27?",
    "question_th": "กี่ครั้งแล้วที่ตำแหน่งที่ 6 การแข่งขันคือซูเปอร์ลีก xvii และเล่นใหญ่กว่า 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–1998\"",
    "question_en": "What is the average cap number in scotland in 1986–1998 leass than 69?",
    "question_th": "จำนวนหมวกเฉลี่ยในสกอตแลนด์ในปี 1986–1998 น้อยกว่า 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–1923\"",
    "question_en": "Which caps was in scotland in 1920–1923?",
    "question_th": "หมวกตัวไหนอยู่ในสกอตแลนด์ในปี 1920–1923?",
    "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_en": "What is the goal low with caps less than 38 and an average less than 1.083?",
    "question_th": "เป้าหมายต่ำที่มีแคปน้อยกว่า 38 และค่าเฉลี่ยน้อยกว่า 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_en": "What is the goal top with caps of 38 and an average less than 0.579?",
    "question_th": "เป้าหมายสูงสุดด้วยแคป 38 และค่าเฉลี่ยน้อยกว่า 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_en": "What is the low goal for kenny miller with an average smaller than 0.261?",
    "question_th": "เป้าหมายต่ำของเคนนี มิลเลอร์ที่มีค่าเฉลี่ยน้อยกว่า 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_en": "What home team plays at victoria park?",
    "question_th": "ทีมเหย้าทีมใดเล่นที่วิคตอเรีย พาร์ค?",
    "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_en": "When north melbourne played as the home team, what was the away team score?",
    "question_th": "เมื่อนอร์ธ เมลเบิร์น เล่นเป็นเจ้าบ้าน สกอร์ ทีมเยือนเท่าไหร่?",
    "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_en": "What is the away team score at victoria park?",
    "question_th": "คะแนนทีมเยือน วิคตอเรีย พาร์ค คืออะไร?",
    "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_en": "What is the high goal against associated with 18 wins, a Goal Difference of 43, and under 6 draws?",
    "question_th": "อะไรคือประตูที่สูงหากเทียบกับชัยชนะ 18 นัด ผลต่างประตู 43 ประตู และเสมอต่ำกว่า 6 นัด?",
    "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_en": "What is the average win total associated with under 4 draws, and under 15 goals?",
    "question_th": "ผลรวมชนะโดยเฉลี่ยที่เสมอน้อยกว่า 4 ประตู และต่ำกว่า 15 ประตูเป็นเท่าใด",
    "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_en": "Who was the home team that played at Moorabbin Oval?",
    "question_th": "ทีมเจ้าบ้านที่เล่นที่ 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_en": "How large was the crowd when Carlton was the away team?",
    "question_th": "ฝูงชนเยอะแค่ไหนเมื่อคาร์ลตันเป็นทีมเยือน?",
    "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_en": "I want the sum of year for mark barron",
    "question_th": "ฉันอยากได้ผลรวมของปีของมาร์ค บาร์รอน",
    "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_en": "Tell me the year for defensive tackle and college of lsu",
    "question_th": "บอกฉันปีสำหรับการป้องกันและวิทยาลัยของ 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_en": "On April 28, what was the average number of people attending?",
    "question_th": "วันที่ 28 เมษายน มีผู้เข้าร่วมโดยเฉลี่ยกี่คน?",
    "context": "CREATE TABLE table_name_6 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_50 WHERE position = \"centre\"",
    "question_en": "Which player is a centre?",
    "question_th": "นักเตะคนไหนเป็นเซนเตอร์?",
    "context": "CREATE TABLE table_name_50 (player VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_49 WHERE away_team = \"collingwood\"",
    "question_en": "What was the venue when Collingwood was the away team?",
    "question_th": "สนามที่คอลลิงวูดเป็นทีมเยือนคือที่ไหน?",
    "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_en": "Where did Brian Hightower play when he has the Conv of 0?",
    "question_th": "Brian Hightower เล่นที่ไหนเมื่อเขามี Conv เป็น 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_en": "What was Dick Hyland's conv?",
    "question_th": "Conv. ของ Dick Hyland คืออะไร?",
    "context": "CREATE TABLE table_name_37 (conv VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT tries FROM table_name_16 WHERE date = \"06/07/1996\"",
    "question_en": "How many tries took place on 06/07/1996?",
    "question_th": "มีความพยายามกี่ครั้งในวันที่ 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_en": "Which player played on 07/06/1997?",
    "question_th": "ผู้เล่นคนไหนที่เล่นเมื่อ 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_en": "When the Away team is melbourne, what venue do they play at?",
    "question_th": "เมื่อทีมเยือนอยู่เมลเบิร์นเล่นที่สนามไหน?",
    "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_en": "What is the lowest interview of Texas, with an average larger than 9.531?",
    "question_th": "บทสัมภาษณ์ต่ำสุดของเท็กซัสโดยมีค่าเฉลี่ยมากกว่า 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_en": "What is the total interviews of Iowa, and with an evening gown smaller than 9.625?",
    "question_th": "ผลสัมภาษณ์ไอโอวากับชุดราตรีเล็กกว่า 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_en": "What is the sum of the average of Hawaii, with an interviewer larger than 9.636?",
    "question_th": "ผลรวมของค่าเฉลี่ยของฮาวายกับผู้สัมภาษณ์มากกว่า 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_en": "What is the highest evening gown with an average of 9.531 and swimsuit smaller than 9.449?",
    "question_th": "ชุดราตรีสูงสุดเฉลี่ย 9.531 และชุดว่ายน้ำเล็กกว่า 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_en": "What is the sum of swimsuit with an evening gown of 9.773 and average larger than 9.674?",
    "question_th": "ผลรวมของชุดว่ายน้ำกับชุดราตรี 9.773 และค่าเฉลี่ยมากกว่า 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_en": "What is the average of the swimsuit smaller than 9.545 , of Iowa, with an evening gown larger than 9.625?",
    "question_th": "ค่าเฉลี่ยของชุดว่ายน้ำที่เล็กกว่า 9.545 ของรัฐไอโอวา และชุดราตรีที่ใหญ่กว่า 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_en": "Name the leading scorer for 1 april 2008",
    "question_th": "รายชื่อผู้ทำประตูสูงสุดประจำวันที่ 1 เมษายน 2551",
    "context": "CREATE TABLE table_name_82 (leading_scorer VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_11 WHERE date = \"16 april 2008\"",
    "question_en": "Name the home for 16 april 2008",
    "question_th": "ตั้งชื่อบ้านวันที่ 16 เมษายน 2551",
    "context": "CREATE TABLE table_name_11 (home VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_56 WHERE visitor = \"bucks\" AND home = \"timberwolves\"",
    "question_en": "Name the score for bucks with timberwolves",
    "question_th": "ตั้งชื่อคะแนน bucks ด้วย 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_en": "Which sail is in the America 3 Foundation syndicate on the America 3 yacht?",
    "question_th": "ใบใดอยู่ในองค์กร America 3 Foundation บนเรือยอทช์ America 3",
    "context": "CREATE TABLE table_name_96 (sail VARCHAR, syndicate VARCHAR, yacht VARCHAR)"
  },
  {
    "answer": "SELECT syndicate FROM table_name_8 WHERE yacht = \"stars & stripes\"",
    "question_en": "Which syndicate is associated with the stars & stripes yacht?",
    "question_th": "องค์กรใดที่เกี่ยวข้องกับเรือยอทช์ stars & stripes?",
    "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_en": "Which Yacht Club is part of the America 3 Foundation syndicate on the America 3 yacht?",
    "question_th": "Yacht Club ใดที่เป็นส่วนหนึ่งขององค์กร America 3 Foundation บนเรือยอทช์ America 3",
    "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_en": "Which nation has the America 3 Foundation syndicate and the jayhawk yacht?",
    "question_th": "ประเทศใดมีองค์กร America 3 Foundation และเรือยอทช์ jayhawk",
    "context": "CREATE TABLE table_name_81 (nation VARCHAR, syndicate VARCHAR, yacht VARCHAR)"
  },
  {
    "answer": "SELECT nation FROM table_name_91 WHERE sail = \"usa-18\"",
    "question_en": "Which Nation has the USA-18 sail?",
    "question_th": "ประเทศใดมีใบเรือ USA-18?",
    "context": "CREATE TABLE table_name_91 (nation VARCHAR, sail VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(crowd) FROM table_name_46 WHERE away_team = \"collingwood\"",
    "question_en": "How big was the crowd when collingwood visited?",
    "question_th": "ฝูงชนมีขนาดใหญ่แค่ไหนเมื่อคอลลิงวูดมาเยี่ยม?",
    "context": "CREATE TABLE table_name_46 (crowd VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_19 WHERE venue = \"moorabbin oval\"",
    "question_en": "What away team is based in moorabbin oval?",
    "question_th": "ทีมเยือนทีมใดประจำอยู่ในมูแรบบินรี?",
    "context": "CREATE TABLE table_name_19 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_40 WHERE player = \"af giles\"",
    "question_en": "What date did af giles play?",
    "question_th": "af giles เล่นวันไหน?",
    "context": "CREATE TABLE table_name_40 (date VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT catches FROM table_name_59 WHERE player = \"hh dippenaar\"",
    "question_en": "How many catches does hh dippenaar have?",
    "question_th": "hh dippenaar จับได้กี่ตัว?",
    "context": "CREATE TABLE table_name_59 (catches VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_98 WHERE date = \"12-02-2003\"",
    "question_en": "What player has a date of 12-02-2003?",
    "question_th": "นักเตะคนไหนมีวันที่ 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_en": "Who had a versus of sri lanka?",
    "question_th": "ใครมีปะทะกับศรีลังกา?",
    "context": "CREATE TABLE table_name_18 (player VARCHAR, versus VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_23 WHERE date = \"19-02-2003\"",
    "question_en": "Who had a date of 19-02-2003?",
    "question_th": "ใครมีวันที่ 19-02-2546?",
    "context": "CREATE TABLE table_name_23 (player VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_93 WHERE versus = \"source: cricinfo.com\"",
    "question_en": "What date had a versus of source: cricinfo.com?",
    "question_th": "วันที่ใดเทียบกับแหล่งที่มา: 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_en": "When south Melbourne was the home team, what was the away team?",
    "question_th": "เมื่อเมลเบิร์นใต้เป็นเจ้าบ้าน ทีมเยือนคือทีมอะไร?",
    "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_en": "What was the smallest crowd size for away team st kilda?",
    "question_th": "จำนวนผู้ชมที่เล็กที่สุดสำหรับทีมเยือนเซนต์คิลดาคือเท่าใด?",
    "context": "CREATE TABLE table_name_25 (crowd INTEGER, away_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_9 WHERE visitor = \"milwaukee\"",
    "question_en": "What was the score of the game against Milwaukee?",
    "question_th": "ในเกมกับมิลวอกีมีสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_9 (score VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_87 WHERE third_place = \"yannick noah\"",
    "question_en": "Was the third place winner Yannick Noah?",
    "question_th": "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_en": "What was the away team score when the home team essendon was playing?",
    "question_th": "สกอร์ทีมเยือนเมื่อเจ้าบ้านเอสเซนดอนเล่นเป็นเท่าไหร่?",
    "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_en": "Who set the record for youngest nominee?",
    "question_th": "ใครเป็นผู้กำหนดสถิติผู้ได้รับการเสนอชื่อที่อายุน้อยที่สุด?",
    "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_en": "After the year 2011, who was the youngest nominee?",
    "question_th": "หลังปี 2554 ใครเป็นผู้เข้าชิงอายุน้อยที่สุด?",
    "context": "CREATE TABLE table_name_24 (record_set VARCHAR, year VARCHAR, superlative VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_name_76 WHERE actress = \"quvenzhané wallis\"",
    "question_en": "When did Quvenzhané Wallis first win?",
    "question_th": "Quvenzhané Wallis ชนะครั้งแรกเมื่อใด?",
    "context": "CREATE TABLE table_name_76 (year INTEGER, actress VARCHAR)"
  },
  {
    "answer": "SELECT MAX(year) FROM table_name_20 WHERE actress = \"katharine hepburn\"",
    "question_en": "When was the last year when Katharine Hepburn won?",
    "question_th": "ปีที่แล้วที่ Katharine Hepburn ชนะคือเมื่อไหร่?",
    "context": "CREATE TABLE table_name_20 (year INTEGER, actress VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_53 WHERE year = \"2003\"",
    "question_en": "who was the winner in 2003?",
    "question_th": "ใครเป็นผู้ชนะในปี 2546?",
    "context": "CREATE TABLE table_name_53 (winner VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_90 WHERE winner = \"marie-laure taya\"",
    "question_en": "where did marie-laure taya win?",
    "question_th": "marie-laure taya ชนะที่ไหน?",
    "context": "CREATE TABLE table_name_90 (venue VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_17 WHERE score = \"285\"",
    "question_en": "what venue saw a score of 285?",
    "question_th": "สนามไหนมีคะแนน 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_en": "What is the largest laps for Time/Retired of + 2 laps, and a Grid of 13?",
    "question_th": "รอบที่ใหญ่ที่สุดสำหรับเวลา/เกษียณ + 2 รอบ และตาราง 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_en": "What company constructed the car with more than 0 laps and shows 5 for grid?",
    "question_th": "บริษัทใดสร้างรถที่มีรอบมากกว่า 0 รอบและแสดงตารางกริด 5 รอบ",
    "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_en": "What is the sum of laps for Derek Warwick?",
    "question_th": "ผลรวมของรอบของ 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_en": "What years runner-up is Birmingham city, with over 1 runners-up?",
    "question_th": "เมืองเบอร์มิงแฮม รองแชมป์ปีไหน โดยมีรองแชมป์มากกว่า 1 คน?",
    "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_en": "Which Home team score has an Away team of st kilda?",
    "question_th": "สกอร์ทีมเหย้าใดมีทีมเยือนเซนต์คิลดา?",
    "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_en": "Which Home team has a Venue of victoria park?",
    "question_th": "ทีมเจ้าบ้านไหนมีสนามวิคตอเรีย พาร์คบ้าง?",
    "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_en": "Who was the center from Washington State?",
    "question_th": "ใครคือศูนย์กลางจากรัฐวอชิงตัน?",
    "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_en": "What school did Paul Dawkins play for?",
    "question_th": "Paul Dawkins เล่นให้กับโรงเรียนอะไร",
    "context": "CREATE TABLE table_name_34 (school_club_team VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_93 WHERE building = \"victoria hall\"",
    "question_en": "Name the place with building of victoria hall",
    "question_th": "ตั้งชื่อสถานที่ด้วยอาคารวิคตอเรีย ฮอลล์",
    "context": "CREATE TABLE table_name_93 (place VARCHAR, building VARCHAR)"
  },
  {
    "answer": "SELECT MIN(date) FROM table_name_37 WHERE building = \"victoria hall\"",
    "question_en": "Name the least date for the place which has a building of victoria hall",
    "question_th": "ตั้งชื่อวันที่น้อยที่สุดของสถานที่ซึ่งมีอาคารวิคตอเรีย ฮอลล์",
    "context": "CREATE TABLE table_name_37 (date INTEGER, building VARCHAR)"
  },
  {
    "answer": "SELECT size FROM table_name_94 WHERE date > 2000",
    "question_en": "Name the size which is past 2000",
    "question_th": "ตั้งชื่อขนาดที่เกิน 2000",
    "context": "CREATE TABLE table_name_94 (size VARCHAR, date INTEGER)"
  },
  {
    "answer": "SELECT country FROM table_name_2 WHERE place = \"mänttä\"",
    "question_en": "Name the country that has mänttä",
    "question_th": "ตั้งชื่อประเทศที่มีคำว่า mänttä",
    "context": "CREATE TABLE table_name_2 (country VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_32 WHERE player = \"nick gillis\"",
    "question_en": "What round was Nick Gillis?",
    "question_th": "Nick Gillis เข้ารอบไหน?",
    "context": "CREATE TABLE table_name_32 (round VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT distance__km_ FROM table_name_85 WHERE station = \"funao\"",
    "question_en": "What is the distance to funao?",
    "question_th": "ระยะทางไปฟูนาโอะคือเท่าไร?",
    "context": "CREATE TABLE table_name_85 (distance__km_ VARCHAR, station VARCHAR)"
  },
  {
    "answer": "SELECT station FROM table_name_91 WHERE rapid = \"↑\" AND distance__km_ > 3.4 AND japanese = \"下鴨生\"",
    "question_en": "What station has a Rapid of ↑, is 3.4 km away, and has a Japanese title of 下鴨生?",
    "question_th": "สถานีใดมีทางด่วน ↑ อยู่ห่างออกไป 3.4 กม. และมีชื่อภาษาญี่ปุ่นว่า 下鴨生",
    "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 = \"●\"",
    "question_en": "What location is less than 7.1 km away, and has a Rapid of ●?",
    "question_th": "สถานที่ใดที่อยู่ห่างออกไปไม่ถึง 7.1 กม. และมีทางด่วนที่ ●?",
    "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_en": "What is the name of the father who was born in 1204 and married ottokar ii?",
    "question_th": "พ่อที่เกิดในปี 1204 และแต่งงานกับออตโตการ์ที่ 2 ชื่ออะไร?",
    "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_en": "What is the birth date of the woman who ceased to be Queen on 18 Jun 1297?",
    "question_th": "วันเกิดของสตรีผู้สิ้นพระชนม์เมื่อวันที่ 18 มิถุนายน พ.ศ. 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_en": "Leopold VI, Duke of Austria is the father-in-law of which person?",
    "question_th": "ลีโอโปลด์ที่ 6 ดยุคแห่งออสเตรียเป็นพ่อตาของบุคคลใด?",
    "context": "CREATE TABLE table_name_26 (spouse VARCHAR, father VARCHAR)"
  },
  {
    "answer": "SELECT birth FROM table_name_94 WHERE death = \"18 october 1335\"",
    "question_en": "What is the birth date of the person who died on 18 October 1335?",
    "question_th": "บุคคลที่เสียชีวิตในวันที่ 18 ตุลาคม พ.ศ. 1335 คือวันเดือนปีเกิดอะไร?",
    "context": "CREATE TABLE table_name_94 (birth VARCHAR, death VARCHAR)"
  },
  {
    "answer": "SELECT marriage FROM table_name_59 WHERE death = \"6 dec 1240\"",
    "question_en": "When did the person who died on 6 Dec 1240 get married?",
    "question_th": "บุคคลที่เสียชีวิตในวันที่ 6 ธันวาคม ค.ศ. 1240 แต่งงานกันเมื่อใด?",
    "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_en": "What time/retired for a grid less than 19, under 21 laps, and made by aprilia?",
    "question_th": "เวลาใด/เลิกใช้แล้วสำหรับกริดที่น้อยกว่า 19, ต่ำกว่า 21 รอบ และผลิตโดย 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_en": "What is the grid for dirk heidolf?",
    "question_th": "ตารางของเดิร์ก ไฮดอล์ฟคืออะไร?",
    "context": "CREATE TABLE table_name_25 (grid INTEGER, rider VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_60 WHERE venue = \"victoria park\"",
    "question_en": "What away team plays at Victoria Park?",
    "question_th": "ทีมเยือนทีมไหนเล่นที่วิคตอเรีย พาร์ค?",
    "context": "CREATE TABLE table_name_60 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT SUM(caps) FROM table_name_96 WHERE player = \"stephen hoiles\"",
    "question_en": "How many caps does stephen hoiles have?",
    "question_th": "Stephen Hoiles มีกี่แคป?",
    "context": "CREATE TABLE table_name_96 (caps INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_19 WHERE home_team = \"st kilda\"",
    "question_en": "Which Date has a Home team of st kilda?",
    "question_th": "ซึ่งเดตมีทีมเหย้าของเซนต์คิลดา?",
    "context": "CREATE TABLE table_name_19 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_6 WHERE away_team = \"footscray\"",
    "question_en": "Which Venue has an Away team of footscray?",
    "question_th": "สนามไหนมีทีมฟุตสเครย์ทีมเยือน?",
    "context": "CREATE TABLE table_name_6 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT crowd FROM table_name_86 WHERE home_team = \"geelong\"",
    "question_en": "Which Crowd has a Home team of geelong?",
    "question_th": "Crowd คนไหนมีทีมเหย้าของจีหลง?",
    "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_en": "What is the most silver medals a team with 3 total medals and less than 1 bronze has?",
    "question_th": "ทีมที่ได้เหรียญเงินทั้งหมด 3 เหรียญแต่น้อยกว่า 1 เหรียญทองแดงได้มากที่สุดคือเหรียญอะไร?",
    "context": "CREATE TABLE table_name_13 (silver INTEGER, total VARCHAR, bronze VARCHAR)"
  },
  {
    "answer": "SELECT MIN(silver) FROM table_name_68 WHERE gold < 0",
    "question_en": "What is the least amount of silver medals a team with less than 0 gold medals has?",
    "question_th": "ทีมที่ได้เหรียญทองน้อยกว่า 0 เหรียญมีจำนวนเหรียญเงินน้อยที่สุดคือเท่าใด?",
    "context": "CREATE TABLE table_name_68 (silver INTEGER, gold INTEGER)"
  },
  {
    "answer": "SELECT MAX(bronze) FROM table_name_22 WHERE silver > 2",
    "question_en": "What is the most bronze a team with more than 2 silvers has?",
    "question_th": "ทีมที่มีเงินมากกว่า 2 เหรียญทองแดงมากที่สุดคืออะไร?",
    "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_en": "What is the total amount of bronze medals a team with 1 gold and more than 3 silver medals has?",
    "question_th": "ทีมที่ได้ 1 เหรียญทอง และมากกว่า 3 เหรียญเงิน จะได้เหรียญทองแดงรวมเป็นจำนวนเท่าใด?",
    "context": "CREATE TABLE table_name_67 (bronze INTEGER, gold VARCHAR, silver VARCHAR)"
  },
  {
    "answer": "SELECT AVG(draw) FROM table_name_86 WHERE points = 59",
    "question_en": "What is the draw number that has 59 points?",
    "question_th": "งวดที่มี 59 แต้ม คืออะไร?",
    "context": "CREATE TABLE table_name_86 (draw INTEGER, points VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_62 WHERE artist = \"roger pontare\"",
    "question_en": "What place for roger pontare?",
    "question_th": "Roger Pontare มีที่ไหนน่าไป?",
    "context": "CREATE TABLE table_name_62 (place VARCHAR, artist VARCHAR)"
  },
  {
    "answer": "SELECT song FROM table_name_41 WHERE draw < 2",
    "question_en": "What song has draw number less than 2?",
    "question_th": "เพลงอะไรที่มีเลขรางวัลน้อยกว่า 2?",
    "context": "CREATE TABLE table_name_41 (song VARCHAR, draw INTEGER)"
  },
  {
    "answer": "SELECT COUNT(crowd) FROM table_name_42 WHERE home_team = \"essendon\"",
    "question_en": "What was the attendance when Essendon played as the home team?",
    "question_th": "การเข้าร่วมงานเมื่อเอสเซนดอนเล่นเป็นเจ้าบ้านเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_42 (crowd VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_3 WHERE venue = \"windy hill\"",
    "question_en": "Who played the home team at Windy Hill?",
    "question_th": "ใครเล่นทีมเหย้าที่วินดี้ฮิลล์?",
    "context": "CREATE TABLE table_name_3 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_41 WHERE decision = \"wall\"",
    "question_en": "What was the date of the game that had a decision of wall?",
    "question_th": "เกมที่มีการตัดสินของวอลล์คือวันที่เท่าไหร่?",
    "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_en": "What is the name of the circuit when Jack Brabham is in the pole position and Graham Hill has the fastest lap?",
    "question_th": "เซอร์กิตชื่ออะไรเมื่อ Jack Brabham อยู่ในตำแหน่งโพลและ Graham Hill ทำรอบได้เร็วที่สุด?",
    "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_en": "What race contains the Monaco circuit?",
    "question_th": "สนามใดประกอบด้วยสนามโมนาโก",
    "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_en": "What is the date of the race when Jack Brabham is in the pole position and the circuit is Spa-Francorchamps?",
    "question_th": "แข่งขันวันไหนที่ แจ็ค บราแบม อยู่ในตำแหน่งโพลโพซิชั่น และ เซอร์กิต สปา-ฟรองคอร์ช็องป์ส ?",
    "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_en": "What is the name of the circuit when Phil Hill has the fastest lap?",
    "question_th": "เซอร์กิตชื่ออะไรเมื่อ Phil Hill ทำรอบได้เร็วที่สุด?",
    "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_en": "What is the sum of every REG GP that Peter Andersson played as a pick# less than 143?",
    "question_th": "ผลรวมของ REG GP ทุกตัวที่ Peter Andersson เล่นเป็นตัวเลือก # น้อยกว่า 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_en": "What is the total of PI GP played by Anton Rodin with a Reg GP less than 0?",
    "question_th": "จำนวน PI GP ที่เล่นโดย Anton Rodin โดยมี Reg GP น้อยกว่า 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_en": "What is the total pick# played by Anton Rodin with a Reg GP over 0?",
    "question_th": "ตัวเลือก # ทั้งหมดที่เล่นโดย Anton Rodin โดยมี Reg GP มากกว่า 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_en": "What is the lowest grid that has over 67 laps with stefan bellof driving?",
    "question_th": "ตารางต่ำสุดที่มีมากกว่า 67 รอบโดยที่ Stefan Bellof ขับรถคือข้อใด",
    "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_en": "How many laps have a grid under 14 and a time/retired of out of fuel?",
    "question_th": "กี่รอบมีตารางที่ต่ำกว่า 14 และเวลา / หมดเชื้อเพลิง?",
    "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_en": "Who drove the renault that went over 23 laps and had a grid under 11?",
    "question_th": "ใครเป็นผู้ขับเรโนลต์ที่วิ่งเกิน 23 รอบและมีกริดต่ำกว่า 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_en": "What is the average NGC number that has a Apparent magnitude greater than 14.2?",
    "question_th": "หมายเลข NGC เฉลี่ยที่มีขนาดปรากฏมากกว่า 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__ = \"°04′58″\" AND apparent_magnitude > 7.3",
    "question_en": "What is the highest NGC number that has a Declination ( J2000 ) of °04′58″ and a Apparent magnitude larger than 7.3?",
    "question_th": "หมายเลข NGC สูงสุดที่มีการปฏิเสธ ( J2000 ) ที่°04′58″ และขนาดปรากฏมากกว่า 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_en": "What Constellation has a Object type of globular cluster and a NGC number of 5986?",
    "question_th": "กลุ่มดาวใดมีกระจุกดาวทรงกลมประเภทวัตถุและหมายเลข NGC เท่ากับ 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_en": "For clubs that have 0 gold and less than 5 points, what is the average amount of bronze medals?",
    "question_th": "สำหรับสโมสรที่มี 0 เหรียญทองและน้อยกว่า 5 แต้ม เหรียญทองแดงโดยเฉลี่ยคือเท่าใด",
    "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_en": "Club aik had over 9 small silver medals and more than 8 bronze medals, how many total points did they have?",
    "question_th": "คลับไอค์ได้เหรียญเงินเล็กมากกว่า 9 เหรียญ และเหรียญทองแดงมากกว่า 8 เหรียญ สรุปได้กี่คะแนน?",
    "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_en": "How many points did landskrona bois get when they were ranked below 18?",
    "question_th": "Landkrona Bois ได้คะแนนเท่าไรเมื่อพวกเขาอยู่อันดับต่ำกว่า 18?",
    "context": "CREATE TABLE table_name_68 (points VARCHAR, club VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_29 WHERE game = 5",
    "question_en": "Who was the opponent for game 5?",
    "question_th": "ใครคือคู่ต่อสู้ในเกมที่ 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_en": "Name the team for pick more than 30 and position of c with round more than 4",
    "question_th": "ตั้งชื่อทีมที่เลือกมากกว่า 30 และตำแหน่ง c ที่มีรอบมากกว่า 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_en": "What's the number of decimal digits when the total bits is more than 32 and the exponent is less than 15?",
    "question_th": "จำนวนหลักทศนิยมเมื่อบิตรวมมากกว่า 32 และเลขชี้กำลังน้อยกว่า 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_en": "What's the total number of signicand with ~34.0 decimal digits and more than 128 total bits?",
    "question_th": "จำนวนซิกนิแคนด์ทั้งหมดที่มีทศนิยมประมาณ 34.0 หลักและมากกว่า 128 บิตคือเท่าใด",
    "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_en": "What's the sum of sign with more than 53 bits precision, double extended (80-bit) type, and more than 80 total bits?",
    "question_th": "ผลรวมของเครื่องหมายที่มีความแม่นยำมากกว่า 53 บิต, ประเภทขยายสองเท่า (80 บิต) และมากกว่า 80 บิตทั้งหมดเป็นเท่าใด",
    "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_en": "What's the lowest bits precision when the total bits are less than 16?",
    "question_th": "ความแม่นยำของบิตต่ำสุดเมื่อจำนวนบิตทั้งหมดน้อยกว่า 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_en": "How many years did the team that has a Singles win-Loss of 4-9 and first played before 1999?",
    "question_th": "ทีมที่มีซิงเกิลชนะ-แพ้ 4-9 และเล่นครั้งแรกก่อนปี 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_en": "What is the highest game number with a record of 12-8-1?",
    "question_th": "หมายเลขเกมสูงสุดที่มีสถิติ 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_en": "What is the record when the decision was valiquette on November 23?",
    "question_th": "บันทึกเมื่อการตัดสินใจคือ Valquette เมื่อวันที่ 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_en": "I want the driver for Laps more than 8 and ferrari with Grid of 8",
    "question_th": "ฉันต้องการคนขับสำหรับรอบมากกว่า 8 และเฟอร์รารีที่มีกริด 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_en": "Which title has the Translation of vesoul?",
    "question_th": "ชื่อใดมีคำแปลของ 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_en": "What was the orignal title for the winner and nominee, Breaking the Waves, in 1996 (11th)?",
    "question_th": "อะไรคือตำแหน่งดั้งเดิมของผู้ชนะและผู้ได้รับการเสนอชื่อจาก Breaking the Waves ในปี 1996 (อันดับที่ 11)?",
    "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_en": "What is the original title for the winner and nominees 'Secrets & Lies'?",
    "question_th": "ชื่อดั้งเดิมของผู้ชนะและผู้ได้รับการเสนอชื่อ '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_en": "The winner and nominee 'Hidden Agenda' is from which country?",
    "question_th": "ผู้ชนะและผู้ได้รับการเสนอชื่อ 'Hidden Agenda' มาจากประเทศใด?",
    "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’s_model = \"u28c\"",
    "question_en": "What is the total amount of freight produced of u28c?",
    "question_th": "u28c มีจำนวนการขนส่งสินค้าทั้งหมดเท่าไร?",
    "context": "CREATE TABLE table_name_49 (total_produced VARCHAR, service VARCHAR, builder’s_model VARCHAR)"
  },
  {
    "answer": "SELECT build_date FROM table_name_80 WHERE prr_class = \"gf30a\"",
    "question_en": "What is the build date for PRR Class gf30a?",
    "question_th": "วันที่สร้างสำหรับ 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_en": "What is the PRR class for wheel arrangement c-c and total less than 15?",
    "question_th": "ระดับ PRR สำหรับการจัดเรียงล้อ cc และรวมน้อยกว่า 15 คืออะไร?",
    "context": "CREATE TABLE table_name_80 (prr_class VARCHAR, wheel_arrangement VARCHAR, total_produced VARCHAR)"
  },
  {
    "answer": "SELECT builder’s_model FROM table_name_61 WHERE service = \"freight\" AND prr_class = \"gf28a\"",
    "question_en": "What was the model for PRR class of gf28a freight?",
    "question_th": "อะไรคือโมเดลของคลาส PRR ของการขนส่งสินค้า gf28a?",
    "context": "CREATE TABLE table_name_61 (builder’s_model VARCHAR, service VARCHAR, prr_class VARCHAR)"
  },
  {
    "answer": "SELECT queens FROM table_name_21 WHERE manhattan = \"189,524\"",
    "question_en": "Who got 189,524 votes?",
    "question_th": "ใครได้คะแนนโหวต 189,524 เสียง?",
    "context": "CREATE TABLE table_name_21 (queens VARCHAR, manhattan VARCHAR)"
  },
  {
    "answer": "SELECT owner FROM table_name_51 WHERE frequency = \"103.3 fm\"",
    "question_en": "Which owner has the frequency of 103.3 FM?",
    "question_th": "เจ้าของคนไหนมีความถี่ 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_en": "What is the call sign of the Classic Country Music station?",
    "question_th": "สัญญาณเรียกขานของสถานี Classic Country Music คืออะไร?",
    "context": "CREATE TABLE table_name_25 (call_sign VARCHAR, format VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_88 WHERE call_sign = \"kdsu\"",
    "question_en": "Which owner has the call sign of KDSU?",
    "question_th": "เจ้าของคนไหนมีสัญญาณเรียกขานของ 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_en": "What is the call sign for Thunder 106.1?",
    "question_th": "สัญญาณเรียกขานของ 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_en": "Which owner has a Contemporary Christian music station on 97.9 FM?",
    "question_th": "เจ้าของร้านคนไหนมีสถานีเพลงคริสเตียนร่วมสมัยทาง 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_en": "Who was the leading scorer in the game where the visiting team was the Pistons?",
    "question_th": "ใครคือผู้ทำประตูสูงสุดในเกมที่ทีมเยือนคือพิสตันส์?",
    "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_en": "How many people attended the game where the leading scorer was Tim Duncan (24), and the home team was the Spurs?",
    "question_th": "มีกี่คนที่เข้าร่วมเกมซึ่งผู้ทำประตูนำคือทิม ดันแคน (24 ปี) และทีมเหย้าคือสเปอร์ส",
    "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_en": "What is the mean number of laps where Time/retired was a water leak and the grid number was bigger than 12?",
    "question_th": "จำนวนรอบเฉลี่ยที่เวลา/เกษียณคือน้ำรั่วและจำนวนกริดมากกว่า 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_en": "What is the mean number of laps when time/retired was spun off and the driver was Nick Heidfeld?",
    "question_th": "จำนวนรอบเฉลี่ยเมื่อเวลา/เกษียณถูกปั่นออกไปและคนขับคือนิค ไฮด์เฟลด์คือเท่าใด",
    "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_en": "What is the sum grid number when the driver was Luciano Burti?",
    "question_th": "หมายเลขตารางรวมเมื่อคนขับคือ 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_en": "Which constructor had a laps number bigger than 3 when the driver was Jarno Trulli?",
    "question_th": "ตัวสร้างคนใดมีจำนวนรอบมากกว่า 3 เมื่อคนขับคือ 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–$208,850\"",
    "question_en": "Name the head of household for married filing jointly or qualified widow(er) being $137,051–$208,850",
    "question_th": "ตั้งชื่อหัวหน้าครัวเรือนสำหรับการยื่นเรื่องสมรสร่วมกันหรือหญิงม่ายที่มีคุณสมบัติเหมาะสมเป็น $137,051–$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–$190,200\"",
    "question_en": "Name the married filing jointly or qualified widow(er) with head of household being $117,451–$190,200",
    "question_th": "ตั้งชื่อคู่สมรสที่ยื่นร่วมกันหรือเป็นม่ายที่มีคุณสมบัติเหมาะสม โดยมีหัวหน้าครัวเรือนอยู่ที่ 117,451–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–$8,350\"",
    "question_en": "Name the married filing separately for single of $0–$8,350",
    "question_th": "ตั้งชื่อการจดทะเบียนสมรสแยกกันเป็นจำนวนเงิน $0–$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–$186,475\"",
    "question_en": "Name the head of household that has married filing separately of $104,426–$186,475",
    "question_th": "ตั้งชื่อหัวหน้าครัวเรือนที่แต่งงานแล้ว โดยยื่นแยกเป็นเงิน $104,426–$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_en": "Name the marginal ordinary income tax rate that has a head of household of $372,951+",
    "question_th": "ตั้งชื่ออัตราภาษีเงินได้ส่วนเพิ่มที่มีหัวหน้าครัวเรือนอยู่ที่ 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_en": "What is the point average for the game that has FGM-FGA of 11-28 and a number smaller than 7?",
    "question_th": "ค่าเฉลี่ยคะแนนสำหรับเกมที่มี FGM-FGA อยู่ที่ 11-28 และตัวเลขที่น้อยกว่า 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_en": "What is the lowest number of floors recorded for buildings built by Dubai Marriott Harbour Hotel & Suites?",
    "question_th": "จำนวนชั้นต่ำสุดที่บันทึกไว้สำหรับอาคารที่สร้างโดย 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_en": "What is the name of the building housing more than 101 floors, that was built after 2006?",
    "question_th": "อาคารที่อยู่อาศัยมากกว่า 101 ชั้นที่สร้างขึ้นหลังปี 2549 ชื่ออะไร",
    "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_en": "What was the crowd size on 4 july 1981, and a Away team of essendon?",
    "question_th": "ขนาดฝูงชนในวันที่ 4 กรกฎาคม พ.ศ. 2524 และทีมเยือนของเอสเซนดอนคือเท่าใด?",
    "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_en": "When did essendon play away?",
    "question_th": "เอสเซนดอนลงเล่นนอกบ้านเมื่อไหร่?",
    "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_en": "Which category won the Sundance Film Festival award in 1998?",
    "question_th": "หมวดหมู่ใดได้รับรางวัล Sundance Film Festival ในปี 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_en": "Which award category was the film series The Wire nominated for after 2005?",
    "question_th": "ภาพยนตร์ซีรีส์ The Wire ได้รับการเสนอชื่อเข้าชิงรางวัลประเภทใดหลังปี 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_en": "What was the result for the nominee for Outstanding Supporting Actress in a Drama Series in 2009?",
    "question_th": "ผลการเสนอชื่อเข้าชิงนักแสดงสมทบหญิงยอดเยี่ยมประเภทละครปี 2552 เป็นอย่างไร",
    "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_en": "When st kilda played as the away team, what date was that?",
    "question_th": "ตอนที่เซนต์คิลดาเล่นเป็นทีมเยือน วันนั้นคือวันไหน?",
    "context": "CREATE TABLE table_name_67 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_74 WHERE home_team = \"fitzroy\"",
    "question_en": "On what date did Fitzroy play as the home team?",
    "question_th": "ฟิตซ์รอยเล่นเป็นเจ้าบ้านวันไหน?",
    "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_en": "Name the antonio thomas for Hikaru Sato of tanaka (8:09)",
    "question_th": "ตั้งชื่ออันโตนิโอ โทมัสสำหรับฮิคารุ ซาโตะ แห่งทานากะ (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_en": "Tell me the block A for antonio thomas of kondo (13:24)",
    "question_th": "บอกบล็อก A สำหรับ 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_en": "Name the minoru that has a hikaru sato of x and super crazy of yang (8:36)",
    "question_th": "ตั้งชื่อ minoru ที่มี hikaru sato ของ x และ super crazy ของ 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_en": "Atlanta was a visitor on December 8, what was their record?",
    "question_th": "แอตแลนต้าเป็นผู้มาเยือนเมื่อวันที่ 8 ธันวาคม ประวัติของพวกเขาเป็นอย่างไร",
    "context": "CREATE TABLE table_name_68 (record VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_43 WHERE matches = 13",
    "question_en": "Tell me the team which has matches of 13",
    "question_th": "บอกทีมที่มี 13 นัดมาด้วย",
    "context": "CREATE TABLE table_name_43 (team VARCHAR, matches VARCHAR)"
  },
  {
    "answer": "SELECT SUM(win__percentage) FROM table_name_55 WHERE drawn > 35",
    "question_en": "Tell me the sum of win % for drawn being larger than 35",
    "question_th": "บอกผลรวมของ % ชนะสำหรับการสุ่มที่มากกว่า 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_en": "Name the most win % for 13 drawn",
    "question_th": "ตั้งชื่อ % ชนะมากที่สุดสำหรับ 13 งวด",
    "context": "CREATE TABLE table_name_91 (win__percentage INTEGER, drawn VARCHAR)"
  },
  {
    "answer": "SELECT AVG(lost) FROM table_name_53 WHERE matches = 6",
    "question_en": "Name the average lost for matches of 6",
    "question_th": "ตั้งชื่อค่าเฉลี่ยที่แพ้สำหรับการแข่งขัน 6 นัด",
    "context": "CREATE TABLE table_name_53 (lost INTEGER, matches VARCHAR)"
  },
  {
    "answer": "SELECT time_retired FROM table_name_89 WHERE grid = 18",
    "question_en": "What was the time recorded for grid 18?",
    "question_th": "เวลาที่บันทึกไว้สำหรับตาราง 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_en": "What catalogue has a track less than 16 and 2/3/56 recorded with a song titled Lawdy Miss Clawdy?",
    "question_th": "แคตตาล็อกใดมีเพลงน้อยกว่า 16 และ 2/3/56 ที่บันทึกด้วยเพลงชื่อ 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_en": "What is the highest track for the song Rip it Up?",
    "question_th": "เพลงไหนคือเพลงสูงสุด 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_en": "What is the sum of every track with a catalogue of EPA 4054 with a 2:05 length?",
    "question_th": "ผลรวมของทุกแทร็กที่มีแคตตาล็อก EPA 4054 ที่มีความยาว 2:05 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_12 (track INTEGER, catalogue VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT catalogue FROM table_name_82 WHERE time = \"2:10\"",
    "question_en": "What catalogue has a length of 2:10?",
    "question_th": "แคตตาล็อกใดมีความยาว 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_en": "When was the release date of a track greater than 4, 1/12/57 recorded, and a length of 2:31?",
    "question_th": "วันที่เผยแพร่ของแทร็กที่บันทึกไว้มากกว่า 4, 12/12/57 และมีความยาว 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_en": "When was the cataglogue EPA 4054 released with a 1/12/57 recorded?",
    "question_th": "แค็ตตาล็อก EPA 4054 ออกพร้อมบันทึก 1/12/57 เมื่อใด",
    "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_en": "Tell me the school with a height of 6-9",
    "question_th": "บอกโรงเรียนที่มีส่วนสูง 6-9 หน่อยสิ",
    "context": "CREATE TABLE table_name_82 (school VARCHAR, height VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_65 WHERE height = \"6-4\"",
    "question_en": "Which school did the player have a height of 6-4?",
    "question_th": "ผู้เล่นโรงเรียนไหนมีความสูง 6-4?",
    "context": "CREATE TABLE table_name_65 (school VARCHAR, height VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_32 WHERE player = \"paul davis\"",
    "question_en": "Tell me the college that paul davis went to",
    "question_th": "บอกฉันหน่อยว่าวิทยาลัยที่พอล เดวิสเคยเรียนอยู่",
    "context": "CREATE TABLE table_name_32 (college VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_14 WHERE player = \"jason fraser\"",
    "question_en": "Tell me the school that jason fraser went to",
    "question_th": "บอกโรงเรียนที่เจสัน เฟรเซอร์เคยเรียนมาหน่อยสิ",
    "context": "CREATE TABLE table_name_14 (school VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_98 WHERE attendance = \"68,436\"",
    "question_en": "What is the result of the game with 68,436 attending?",
    "question_th": "ผลการแข่งขันมีผู้เข้าร่วม 68,436 คนเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_98 (result VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT nba_draft FROM table_name_38 WHERE college = \"lsu\"",
    "question_en": "What is the NBA Draft status of the person who went to college at LSU?",
    "question_th": "สถานะ NBA Draft ของบุคคลที่ไปเรียนวิทยาลัยที่ LSU คืออะไร",
    "context": "CREATE TABLE table_name_38 (nba_draft VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT height FROM table_name_53 WHERE player = \"kenny williams\"",
    "question_en": "What is Player Kenny Williams' Height?",
    "question_th": "ความสูงของผู้เล่น Kenny Williams คืออะไร?",
    "context": "CREATE TABLE table_name_53 (height VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_37 WHERE player = \"billy owens\"",
    "question_en": "What School did Player Billy Owens attend?",
    "question_th": "ผู้เล่น Billy Owens เข้าเรียนที่โรงเรียนใด",
    "context": "CREATE TABLE table_name_37 (school VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_74 WHERE player = \"alonzo mourning\"",
    "question_en": "What School did Player Alonzo Mourning attend?",
    "question_th": "ผู้เล่น Alonzo Mourning เข้าเรียนที่โรงเรียนใด",
    "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_en": "How many bronze's on average for nations with over 1 total, less than 2 golds, ranked 2nd?",
    "question_th": "โดยเฉลี่ยแล้วประเทศที่มีมากกว่า 1 เหรียญทอง น้อยกว่า 2 เหรียญทอง อยู่ในอันดับที่ 2 โดยเฉลี่ยจะมีกี่เหรียญทองแดง?",
    "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_en": "How many silvers on average for nations with less than 3 total, ranked 6, and over 1 bronze?",
    "question_th": "โดยเฉลี่ยแล้วประเทศที่มีคะแนนรวมน้อยกว่า 3 อันดับ อันดับที่ 6 และมากกว่า 1 เหรียญทองแดงมีกี่เหรียญเงินโดยเฉลี่ย",
    "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_en": "What is the date of the Cubs game when the Cubs had a record of 1-0?",
    "question_th": "เกมเดอะคับส์วันที่เท่าไหร่ที่เดอะคับส์มีสถิติ 1-0?",
    "context": "CREATE TABLE table_name_2 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_56 WHERE record = \"4-4\"",
    "question_en": "Who did the Cubs play when they had a record of 4-4?",
    "question_th": "Cubs เล่นใครเมื่อพวกเขามีสถิติ 4-4?",
    "context": "CREATE TABLE table_name_56 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT frequency FROM table_name_21 WHERE call_letters = \"wmad\"",
    "question_en": "What is the frequency of WMAD?",
    "question_th": "ความถี่ของ 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_en": "Name the lfop 5/11/09 with opinion way of 5/11/09 of 2% and lpsos 3/14/09 of 2%",
    "question_th": "ตั้งชื่อ lfop 5/11/52 ด้วยวิธีความคิดเห็น 5/11/52 ของ 2% และ lpsos 3/14/59 ของ 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_en": "Name the lfop 4/24/09 for opinionway of 4/17/09 of 5% for party of left front",
    "question_th": "ตั้งชื่อ lfop 4/24/09 สำหรับความคิดเห็นของ 17/4/09 จาก 5% สำหรับพรรคแนวหน้าซ้าย",
    "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_en": "Name the lfop for 5/11/09 with lfop 1/9/09 of 5%",
    "question_th": "ตั้งชื่อ lfop สำหรับ 5/11/52 ด้วย lfop 1/9/52 จาก 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_en": "Name the csa 4/16/09 for opinionway being 4/17/09 of 12%",
    "question_th": "ตั้งชื่อ csa 4/16/52 สำหรับความคิดเห็นเป็น 4/17/52 ของ 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_en": "Name the lpsos 3/14/09 for opinionway of 4/17/09 of 5% and lfof 11/12/08 of 7%",
    "question_th": "ตั้งชื่อ lpsos 3/14/52 สำหรับความคิดเห็น 17/4/52 ของ 5% และ lfof 11/12/51 ของ 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_en": "Name the 2004 results for npa",
    "question_th": "ตั้งชื่อผลลัพธ์ปี 2004 สำหรับ npa",
    "context": "CREATE TABLE table_name_18 (results_2004 VARCHAR, party VARCHAR)"
  },
  {
    "answer": "SELECT decision FROM table_name_14 WHERE visitor = \"tampa bay\"",
    "question_en": "What was the decision when Tampa Bay was the visitor?",
    "question_th": "การตัดสินใจเมื่อแทมปาเบย์เป็นผู้มาเยือนคืออะไร?",
    "context": "CREATE TABLE table_name_14 (decision VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_14 WHERE date = \"february 21\"",
    "question_en": "Which visitor visited on February 21?",
    "question_th": "ผู้เข้าชมคนใดเข้าเยี่ยมชมในวันที่ 21 กุมภาพันธ์",
    "context": "CREATE TABLE table_name_14 (visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_3 WHERE venue = \"victoria park\"",
    "question_en": "What date is the Victoria Park venue?",
    "question_th": "สถานที่จัดงาน Victoria Park คือวันไหน?",
    "context": "CREATE TABLE table_name_3 (date VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_16 WHERE home_team = \"fitzroy\"",
    "question_en": "What Away team is from Fitzroy?",
    "question_th": "ทีมเยือนทีมไหนมาจากฟิตซ์รอย?",
    "context": "CREATE TABLE table_name_16 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_85 WHERE visitor = \"lakers\"",
    "question_en": "Who was the home team that played the Lakers?",
    "question_th": "ทีมเหย้าที่เล่นเลเกอร์สคือใคร?",
    "context": "CREATE TABLE table_name_85 (home VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_85 WHERE 2006 = \"a\" AND 2008 = \"1r\"",
    "question_en": "Which tournament had a 2008 result of 1R?",
    "question_th": "ทัวร์นาเมนต์ใดที่มีผลการแข่งขัน 1R ในปี 2008",
    "context": "CREATE TABLE table_name_85 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2012 FROM table_name_91 WHERE 2007 = \"a\" AND 2011 = \"a\"",
    "question_en": "Which tournament in 2012 had a 2007 and 2011 finishes of \"A\"?",
    "question_th": "ทัวร์นาเมนต์ใดในปี 2012 ที่จบ \"A\" ในปี 2550 และ 2554",
    "context": "CREATE TABLE table_name_91 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2013 FROM table_name_44 WHERE 2006 = \"a\" AND 2010 = \"1r\"",
    "question_en": "Which tournament in 2013 had a 2010 finish of 1R?",
    "question_th": "ทัวร์นาเมนต์ใดในปี 2013 ที่จบอันดับ 1R ในปี 2010",
    "context": "CREATE TABLE table_name_44 (Id VARCHAR)"
  },
  {
    "answer": "SELECT home_team AS score FROM table_name_71 WHERE away_team = \"melbourne\"",
    "question_en": "Which home team score has an Away team of melbourne?",
    "question_th": "สกอร์ทีมเหย้าไหนมีทีมเยือนเมลเบิร์น?",
    "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_en": "What is the highest crowd for Home team of geelong?",
    "question_th": "ทีมเหย้าของจีลองมีผู้ชมมากที่สุดคือทีมใด?",
    "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_en": "What is the year when the performance is 60.73m and the age (years) is more than 45?",
    "question_th": "ปีไหนที่มีผลงาน 60.73m และอายุ (ปี) มากกว่า 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_en": "What is the highest age (years) that the 1st place had a performance of 62.20m?",
    "question_th": "อายุสูงสุด (ปี) ที่อันดับ 1 มีผลงาน 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_en": "What is the place when the performance is 60.73m?",
    "question_th": "สถานที่ใดที่มีผลงาน 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_en": "Name the kaz hayashi with block A of Shuji Kondo",
    "question_th": "ตั้งชื่อคาซ ฮายาชิด้วยบล็อก A ของชูจิ คอนโดะ",
    "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_en": "Name the block A for shuji kondo",
    "question_th": "ตั้งชื่อบล็อก A สำหรับชูจิ คอนโดะ",
    "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_en": "Name the NOSAWA Rongai for petey williams",
    "question_th": "ตั้งชื่อ NOSAWA Rongai เพื่อเรียก 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_en": "What was the score when Nannette Hill was the champion?",
    "question_th": "เมื่อแนนเน็ตต์ ฮิลล์ เป็นแชมป์ ได้คะแนนเท่าไหร่?",
    "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_en": "What score did the opposing home team have against Melbourne",
    "question_th": "เจ้าบ้านฝ่ายตรงข้ามได้คะแนนเท่าไหร่กับเมลเบิร์น",
    "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_en": "Name the venue where St Kilda was the opposing away team",
    "question_th": "ตั้งชื่อสนามที่เซนต์คิลดาเป็นทีมเยือนของฝ่ายตรงข้าม",
    "context": "CREATE TABLE table_name_76 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_36 WHERE venue = \"lake oval\"",
    "question_en": "Which Date has a Venue of lake oval?",
    "question_th": "วันไหนมีสถานที่จัดงานทะเลสาบรูปไข่?",
    "context": "CREATE TABLE table_name_36 (date VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT SUM(crowd) FROM table_name_79 WHERE away_team = \"collingwood\"",
    "question_en": "Which Crowd has an Away team of collingwood?",
    "question_th": "Crowd คนไหนมีทีมเยือนของ 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_en": "When Steve Hazlett is the Player, and the PI GP is under 0, what is the average Rd #?",
    "question_th": "เมื่อ Steve Hazlett เป็นผู้เล่น และ PI GP ต่ำกว่า 0 แล้ว 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_en": "Which Player has a PI GP over 0 and a Rd # of 1?",
    "question_th": "ผู้เล่นคนใดมี PI GP มากกว่า 0 และ Rd # เป็น 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_en": "Which Pick # is the highest and has the Rd # is under 1?",
    "question_th": "Pick # ตัวไหนสูงที่สุดและมี Rd # ต่ำกว่า 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_en": "What is the lowest PI GP when the Reg GP is 1, Murray Bannerman is the Player, and the Pick # is under 58?",
    "question_th": "PI GP ต่ำสุดคืออะไรเมื่อ Reg GP คือ 1, Murray Bannerman เป็นผู้เล่น และ Pick # ต่ำกว่า 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_en": "Tell me the average top 25 with events of 5 and cuts madde less than 3",
    "question_th": "บอกค่าเฉลี่ย 25 อันดับแรกที่มีเหตุการณ์ 5 และลด Madde น้อยกว่า 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_en": "Tell me the highest cuts made with wins more than 1",
    "question_th": "บอกฉันว่าการตัดสูงสุดที่ทำได้ด้วยการชนะมากกว่า 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_en": "I want to know the highest wins for cuts made more than 5",
    "question_th": "ฉันต้องการทราบชัยชนะสูงสุดสำหรับการตัดมากกว่า 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_en": "Tell me the sum of top 5 with events less than 12 and top 25 less than 0",
    "question_th": "บอกผลรวมของ 5 อันดับแรกที่มีเหตุการณ์น้อยกว่า 12 และ 25 อันดับแรกน้อยกว่า 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_en": "What was the biggest crowd when South Melbourne was an away team?",
    "question_th": "แฟนบอลมากที่สุดเมื่อเซาท์ เมลเบิร์น เป็นทีมเยือนคือกลุ่มใด?",
    "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_en": "How many people attended the game on 8 March 2008?",
    "question_th": "มีผู้เข้าร่วมการแข่งขันในวันที่ 8 มีนาคม พ.ศ. 2551 กี่คน",
    "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_en": "What is the Away team score when they played Geelong as the Home team?",
    "question_th": "คะแนนของทีมเยือนเมื่อเจอจีลองเป็นทีมเหย้าเป็นเท่าไหร่?",
    "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_en": "What did Carlton score when they were the Home team?",
    "question_th": "คาร์ลตันทำประตูได้เท่าไหร่ตอนเป็นทีมเหย้า?",
    "context": "CREATE TABLE table_name_73 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_53 WHERE away_team = \"fitzroy\"",
    "question_en": "What is the name of the Home team that played Fitzroy as the Away team?",
    "question_th": "ทีมเจ้าบ้านที่เล่นฟิตซ์รอยเป็นทีมเยือนชื่ออะไร?",
    "context": "CREATE TABLE table_name_53 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT SUM(points) FROM table_name_31 WHERE grade = \"a\"",
    "question_en": "What is the total number of points when the grade was A?",
    "question_th": "เมื่อเกรดเป็น 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_en": "Which standing broad jump (cm) had the b grade?",
    "question_th": "การยืนกระโดดไกล (ซม.) ใดได้เกรด b?",
    "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_en": "Which grade did the chin-up (reps) 9-10 receive?",
    "question_th": "Chin-up (reps) 9-10 ได้เกรดไหน?",
    "context": "CREATE TABLE table_name_54 (grade VARCHAR, chin_up__reps_ VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_99 WHERE comp = \"33\"",
    "question_en": "What year was the comp 33?",
    "question_th": "คอมพ์33ปีไหนครับ?",
    "context": "CREATE TABLE table_name_99 (year VARCHAR, comp VARCHAR)"
  },
  {
    "answer": "SELECT ravg FROM table_name_51 WHERE year = \"1984\"",
    "question_en": "In 1984, what was the RAvg?",
    "question_th": "ในปี 1984 RAvg คืออะไร?",
    "context": "CREATE TABLE table_name_51 (ravg VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT ratt FROM table_name_85 WHERE year = \"1983\"",
    "question_en": "In 1983, what was the RAtt?",
    "question_th": "ในปี พ.ศ. 2526 RAtt คืออะไร?",
    "context": "CREATE TABLE table_name_85 (ratt VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_67 WHERE rate = \"94.1\"",
    "question_en": "What team has a 94.1 rating?",
    "question_th": "ทีมใดมีเรตติ้ง 94.1?",
    "context": "CREATE TABLE table_name_67 (team VARCHAR, rate VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_60 WHERE ratt = \"1\" AND comp = \"49\"",
    "question_en": "What year has a RAtt of 1 and a comp of 49?",
    "question_th": "ปีใดมี RAtt เป็น 1 และคอมพ์เป็น 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_en": "Who recorded the loss on august 7?",
    "question_th": "ใครเป็นผู้บันทึกการสูญเสียในวันที่ 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_en": "When the away team was st kilda, what did the home team score?",
    "question_th": "เมื่อทีมเยือนเจอเซนท์คิลดาเจ้าบ้านได้คะแนนเท่าไหร่?",
    "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_en": "When the home team was geelong, what did the away team score?",
    "question_th": "เมื่อเจ้าบ้านเป็นจีลอง ทีมเยือนได้คะแนนเท่าไหร่?",
    "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_en": "Which Artist has an Issue Price of $8,159.95?",
    "question_th": "ศิลปินคนไหนมีราคาจำหน่ายอยู่ที่ 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_en": "What is the lowest Mintage for the Artist Royal Canadian Mint Engravers, in the Year 2009, with an Issue Price of $10,199.95?",
    "question_th": "คือจำนวนเหรียญกษาปณ์ที่ต่ำที่สุดสำหรับศิลปินช่างแกะสลักเหรียญกษาปณ์แคนาดาในปี 2009 ด้วยราคาเสนอขายที่ 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_en": "What is the sum of Artist Steve Hepburn's Mintage?",
    "question_th": "ผลรวมของเหรียญกษาปณ์ของศิลปิน Steve Hepburn คือเท่าไร?",
    "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_en": "What is the average Year for the Royal Canadian Mint Engravers Artist when the Mintage is under 200?",
    "question_th": "ปีเฉลี่ยของศิลปินช่างแกะสลักเหรียญกษาปณ์แคนาดาคือเท่าไร เมื่อเหรียญกษาปณ์ต่ำกว่า 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_en": "When the Year is over 2008, what is the highest Mintage for the Royal Canadian Mint Engravers Artist?",
    "question_th": "เมื่อสิ้นปี 2008 เหรียญกษาปณ์สูงสุดสำหรับศิลปินช่างแกะสลักเหรียญกษาปณ์แคนาดาคือเท่าใด",
    "context": "CREATE TABLE table_name_46 (mintage INTEGER, artist VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT until FROM table_name_76 WHERE name = \"josé luis sánchez solá\"",
    "question_en": "When did José Luis Sánchez Solá end his term of coaching?",
    "question_th": "โฆเซ่ หลุยส์ ซานเชซ โซลา สิ้นสุดระยะเวลาการเป็นโค้ชเมื่อใด?",
    "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_en": "What is the class of the locomotive with an Eastleigh Works manufacturer, made in 1914, and withdrawn in 1959?",
    "question_th": "หัวรถจักรของผู้ผลิต Eastleigh Works อยู่ในประเภทใด ซึ่งผลิตในปี 1914 และถอนออกในปี 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_en": "What is the class of the locomotive with a wheel arrangement of 4-6-0 and a quantity made of 14?",
    "question_th": "รถจักรประเภทไหนที่มีการจัดล้อ 4-6-0 และมีปริมาณ 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_en": "What is the fleet number of the locomotive with 1 quantity made?",
    "question_th": "รถจักรจำนวน 1 ขบวน สร้างจำนวนเท่าใด?",
    "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_en": "In games where st kilda was the away team, what was the smallest crowd?",
    "question_th": "ในเกมที่เซนต์คิลดาเป็นทีมเยือน จำนวนผู้ชมน้อยที่สุดคือทีมใด",
    "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_en": "In fitzroy's match where they were the home team, how much did they score?",
    "question_th": "ในเกมฟิตซ์รอยที่พวกเขาเป็นเจ้าบ้านทำสกอร์ได้เท่าไหร่?",
    "context": "CREATE TABLE table_name_7 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team AS score FROM table_name_4 WHERE venue = \"mcg\"",
    "question_en": "What was the score for the home team who plays their matches at the mcg venue?",
    "question_th": "สกอร์ของเจ้าบ้านที่ลงเล่นที่สนามเอ็มซีจีเป็นเท่าไหร่?",
    "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_en": "Which player has the lowest earnings and has at least 4 wins and is ranked higher than 4?",
    "question_th": "ผู้เล่นคนใดมีรายได้ต่ำที่สุดและชนะอย่างน้อย 4 ครั้งและมีอันดับสูงกว่า 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_en": "How many wins do the players that earned more than 720,134 have?",
    "question_th": "ผู้เล่นที่ได้รับชัยชนะมากกว่า 720,134 ครั้งมีกี่ครั้ง?",
    "context": "CREATE TABLE table_name_8 (wins INTEGER, earnings__$__ INTEGER)"
  },
  {
    "answer": "SELECT MAX(rank) FROM table_name_70 WHERE earnings__$__ < 395 OFFSET 386",
    "question_en": "Who is the highest ranked player that has earnings below 395,386?",
    "question_th": "ใครคือผู้เล่นอันดับสูงสุดที่มีรายได้ต่ำกว่า 395,386?",
    "context": "CREATE TABLE table_name_70 (rank INTEGER, earnings__$__ INTEGER)"
  },
  {
    "answer": "SELECT game FROM table_name_82 WHERE rams_points = 0",
    "question_en": "In what Game did Rams Points equal 0?",
    "question_th": "Rams Points เท่ากับ 0 ในเกมใด",
    "context": "CREATE TABLE table_name_82 (game VARCHAR, rams_points VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_54 WHERE record = \"6-0\"",
    "question_en": "What Opponent has a 6-0 Record?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีสถิติ 6-0?",
    "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_en": "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?",
    "question_th": "ผลรวมของคะแนนสัมภาษณ์จากนอร์ทดาโคตาที่มีค่าเฉลี่ยน้อยกว่า 8.697 คะแนนชุดราตรีน้อยกว่า 8.73 และคะแนนชุดว่ายน้ำมากกว่า 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_en": "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?",
    "question_th": "ผลรวมของคะแนนชุดว่ายน้ำจากมิสซูรีที่มีคะแนนชุดราตรีน้อยกว่า 8.77 และคะแนนเฉลี่ยน้อยกว่า 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_en": "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?",
    "question_th": "คะแนนชุดว่ายน้ำทั้งหมดที่มีคะแนนเฉลี่ยน้อยกว่า 8.823 คะแนนชุดราตรีน้อยกว่า 8.69 และคะแนนสัมภาษณ์เท่ากับ 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_en": "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?",
    "question_th": "คะแนนชุดว่ายน้ำต่ำสุดที่ผู้เข้าแข่งขันได้คะแนนในการให้สัมภาษณ์น้อยกว่า 8.56 และมากกว่า 8.54 ในชุดราตรีคือเท่าใด",
    "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_en": "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?",
    "question_th": "ผลรวมคะแนนชุดราตรีโดยคะแนนสัมภาษณ์น้อยกว่า 8.77 คะแนนชุดว่ายน้ำเท่ากับ 7.8 และคะแนนเฉลี่ยน้อยกว่า 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_en": "What was the attendance for the game that has a tie number of 13?",
    "question_th": "ผู้เข้าชมเกมที่เสมอกันที่ 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_en": "What is the average attendance when the Forest Green Rovers is the away team?",
    "question_th": "ผู้เข้าชมโดยเฉลี่ยเมื่อฟอเรสต์ กรีน โรเวอร์สเป็นทีมเยือนคือเท่าใด?",
    "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_en": "What is the grid number for troy corser with under 22 laps?",
    "question_th": "หมายเลขกริดของทรอย คอร์เซอร์ที่วิ่งต่ำกว่า 22 รอบคือเท่าไร?",
    "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_en": "What rider went under 22 laps with grid number 2?",
    "question_th": "นักบิดคนไหนที่ทำได้ต่ำกว่า 22 รอบด้วยกริดหมายเลข 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_en": "What country speaks Vietnamese?",
    "question_th": "ประเทศอะไรพูดภาษาเวียดนาม?",
    "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_en": "What ranking did Team 250cc Honda end up in when it finished a race with a time of 1:27.57.28?",
    "question_th": "ทีม Honda 250cc อยู่ในอันดับที่ใดเมื่อจบการแข่งขันด้วยเวลา 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_en": "Tell me the constructor for grid of 8",
    "question_th": "บอกตัวสร้างสำหรับกริด 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_en": "I want the total number of Grids for heinz-harald frentzen",
    "question_th": "ฉันต้องการจำนวนกริดทั้งหมดสำหรับไฮนซ์-ฮาราลด์ เฟรนต์เซน",
    "context": "CREATE TABLE table_name_10 (grid VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT AVG(crowd) FROM table_name_97 WHERE home_team = \"north melbourne\"",
    "question_en": "What is the average crowd for the home team of North Melbourne?",
    "question_th": "ฝูงชนโดยเฉลี่ยของทีมเจ้าบ้าน นอร์ธ เมลเบิร์น คือเท่าใด?",
    "context": "CREATE TABLE table_name_97 (crowd INTEGER, home_team VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_77 WHERE date = \"12 march 2008\"",
    "question_en": "Who was the visiting team on 12 March 2008?",
    "question_th": "ทีมเยือนเมื่อวันที่ 12 มีนาคม พ.ศ. 2551 คือใคร?",
    "context": "CREATE TABLE table_name_77 (visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_70 WHERE visitor = \"trail blazers\"",
    "question_en": "Who was the home team where Trail Blazers were the visitor?",
    "question_th": "ทีมเหย้าที่เทรลเบลเซอร์เป็นผู้มาเยือนคือใคร?",
    "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_en": "In the game on 11 March 2008 with a visiting team of Bucks, who was the home team?",
    "question_th": "ในเกมวันที่ 11 มีนาคม 2551 กับทีมเยือน บัคส์ เจ้าบ้านคือใคร?",
    "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_en": "How many laps for robin montgomerie-charrington, and a Grid smaller than 15?",
    "question_th": "กี่รอบสำหรับ robin montgomerie-charrington และกริดที่เล็กกว่า 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_en": "What is the mean number of totals with no silvers and a bronze number less than 0?",
    "question_th": "จำนวนรวมเฉลี่ยที่ไม่มีเหรียญเงินและเลขทองแดงน้อยกว่า 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_en": "What is the least number of Silvers with a ranking of less than 4 where the bronze number was larger than 9?",
    "question_th": "จำนวน Silvers น้อยที่สุดที่มีอันดับน้อยกว่า 4 โดยที่หมายเลขทองแดงมากกว่า 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_en": "Which mean rank had a silver number smaller than 0?",
    "question_th": "อันดับเฉลี่ยใดมีเลขเงินน้อยกว่า 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_en": "What is the least total number with a rank of 4 and a total silver number bigger than 3?",
    "question_th": "หมายเลขรวมน้อยที่สุดที่มีอันดับ 4 และหมายเลขเงินรวมมากกว่า 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_en": "Name the category for 2nd melon music awards",
    "question_th": "ตั้งชื่อหมวดหมู่รางวัล Melon Music Awards ครั้งที่ 2",
    "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_en": "Name the award won in the hall of fame",
    "question_th": "ตั้งชื่อรางวัลที่ได้รับในหอเกียรติยศ",
    "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_en": "Name the nomination in 2011 that won",
    "question_th": "เสนอชื่อเข้าชิงในปี 2554 ที่ได้รับรางวัล",
    "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_en": "Name the result in 2010 for bgm cyworld",
    "question_th": "ตั้งชื่อผลลัพธ์ในปี 2010 สำหรับ 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_en": "What is the car # of the Chevrolet that complete 363 laps?",
    "question_th": "รถ # ของเชฟโรเลตที่วิ่งครบ 363 รอบคือรถอะไร?",
    "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_en": "How many points did the driver who won $127,541 driving car #31 get?",
    "question_th": "ผู้ขับขี่ที่ชนะรางวัลรถยนต์หมายเลข 31 มูลค่า 127,541 ดอลลาร์ได้รับคะแนนเท่าใด",
    "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_en": "What is the english title of the film before 1999 with a role of kim da-rim?",
    "question_th": "ชื่อเรื่องภาษาอังกฤษของหนังก่อนปี 1999 ที่รับบทเป็น คิม ดาริม คืออะไร?",
    "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_en": "What English title for the Romanization of lee jae-su-eui nan?",
    "question_th": "ชื่อภาษาอังกฤษของการถอดอักษรโรมันของ 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_en": "What is the Romanization for my old sweetheart?",
    "question_th": "Romanization สำหรับคนรักเก่าของฉันคืออะไร?",
    "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_en": "What is the English of chae soo-yeon?",
    "question_th": "แชซูยอนภาษาอังกฤษว่าอะไรคะ?",
    "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_en": "What is the lowest high position for 10 years of hits, and over 870,000 sales?",
    "question_th": "ตำแหน่งสูงสุดต่ำสุดในรอบ 10 ปีและยอดขายมากกว่า 870,000 คืออะไร?",
    "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_en": "What is the average high position for the album unwritten?",
    "question_th": "ตำแหน่งสูงสุดโดยเฉลี่ยของอัลบั้มที่ไม่ได้เขียนคือเท่าใด",
    "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_en": "When did the Grand Prix de Monaco race?",
    "question_th": "การแข่งขันกรังด์ปรีซ์ เดอ โมนาโก จัดขึ้นเมื่อใด?",
    "context": "CREATE TABLE table_name_13 (date VARCHAR, race_title VARCHAR)"
  },
  {
    "answer": "SELECT circuit FROM table_name_79 WHERE round = 16",
    "question_en": "What circuit had 16 rounds?",
    "question_th": "สนามไหนมี 16 รอบ?",
    "context": "CREATE TABLE table_name_79 (circuit VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT grand_prix FROM table_name_82 WHERE round = 9",
    "question_en": "Which Grand Prix had 9 rounds?",
    "question_th": "กรังด์ปรีซ์ใดมี 9 รอบ?",
    "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_en": "What is the Base Fare in the senior/disabled category?",
    "question_th": "ค่าโดยสารพื้นฐานในประเภทผู้อาวุโส/ผู้ทุพพลภาพคือเท่าใด",
    "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_en": "Which 30-day Pass has a Base Fare of $3?",
    "question_th": "บัตรผ่านแบบ 30 วันใดที่มีค่าโดยสารพื้นฐานอยู่ที่ 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_en": "What is the length for years 2012-2013?",
    "question_th": "ปี 2555-2556 มีความยาวเท่าไร?",
    "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_en": "If length is ft (m) with numbers of 6600-6684 (84 buses) for 2003, what is the engine type?",
    "question_th": "ถ้ายาวเป็นฟุต (ม.) มีหมายเลข 6600-6684 (84 คัน) ปี 2546 เครื่องยนต์เป็นประเภทใด?",
    "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_en": "For numbers of 2600-2825 (223 buses), what is the length?",
    "question_th": "สำหรับหมายเลข 2600-2825 (223 รถเมล์) ความยาวเท่าไร?",
    "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_en": "What is the lenth of a 2003 Make & Model of nabi 35-lfw?",
    "question_th": "ยี่ห้อและรุ่นของ nabi 35-lfw ปี 2003 คือเท่าใด",
    "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_en": "What is the length for a diesel engine with numbers of tbd (13 buses)?",
    "question_th": "เครื่องยนต์ดีเซลที่มีจำนวน tbd (13 คัน) มีความยาวเท่าใด?",
    "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_en": "What year has a make & model of mci d4000n?",
    "question_th": "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_en": "What type has a Date of 8 dec 16, and a Ship of duchess of cornwall?",
    "question_th": "ประเภทใดมีวันที่ 8 ธันวาคม 59 และเรือของดัชเชสแห่งคอร์นวอลล์",
    "context": "CREATE TABLE table_name_75 (type VARCHAR, date VARCHAR, ship VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_62 WHERE ship = \"minteh\"",
    "question_en": "Which nationality has a Ship of minteh?",
    "question_th": "เรือมินเทห์มีสัญชาติใด?",
    "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_en": "What is the total Tonnage GRT with a Type of cargo ship, and a Nationality of norway?",
    "question_th": "น้ำหนัก GRT รวมของประเภทเรือบรรทุกสินค้าและสัญชาตินอร์เวย์เป็นเท่าใด",
    "context": "CREATE TABLE table_name_23 (tonnage_grt INTEGER, type VARCHAR, nationality VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_87 WHERE ship = \"hallbjorg\"",
    "question_en": "Which Date has a Ship of hallbjorg?",
    "question_th": "วันไหนมีเรือของ HallBJorg?",
    "context": "CREATE TABLE table_name_87 (date VARCHAR, ship VARCHAR)"
  },
  {
    "answer": "SELECT set_3 FROM table_name_24 WHERE total = \"45–31\"",
    "question_en": "What is the score of set 3 when the total is 45–31?",
    "question_th": "คะแนนของเซต 3 เมื่อคะแนนรวม 45–31 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_24 (set_3 VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT set_2 FROM table_name_61 WHERE set_3 = \"15–6\"",
    "question_en": "What is the score for set 2 when set 3 was 15–6?",
    "question_th": "คะแนนของชุดที่ 2 เมื่อชุดที่ 3 คือ 15–6 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_61 (set_2 VARCHAR, set_3 VARCHAR)"
  },
  {
    "answer": "SELECT total FROM table_name_68 WHERE set_1 = \"15–11\"",
    "question_en": "What is the total when the score of set 1 was 15–11?",
    "question_th": "คะแนนรวมของเซต 1 อยู่ที่ 15–11 จะเป็นเท่าใด",
    "context": "CREATE TABLE table_name_68 (total VARCHAR, set_1 VARCHAR)"
  },
  {
    "answer": "SELECT total FROM table_name_5 WHERE set_1 = \"15–11\"",
    "question_en": "What is the total when the score of set 1 is 15–11?",
    "question_th": "คะแนนรวมของเซต 1 คือ 15–11 จะเป็นเท่าใด",
    "context": "CREATE TABLE table_name_5 (total VARCHAR, set_1 VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_50 WHERE total = \"25–45\"",
    "question_en": "On what date was the total 25–45?",
    "question_th": "ทั้งหมด 25–45 คือวันไหน?",
    "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_en": "What was St Kilda's score as the Away team?",
    "question_th": "คะแนนของเซนต์คิลดาในฐานะทีมเยือนคือเท่าไร?",
    "context": "CREATE TABLE table_name_59 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team AS score FROM table_name_5 WHERE venue = \"vfl park\"",
    "question_en": "At the venue Vfl Park, what was the Home team score?",
    "question_th": "ที่สนามวีเอฟแอล พาร์ค สกอร์ทีมเหย้าเท่าไหร่?",
    "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_en": "How many Reg GP does daniel rahimi have with a rd # greater than 3?",
    "question_th": "daniel rahimi มี Reg GP จำนวนเท่าใดโดยมีค่า rd # มากกว่า 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_en": "What is the lowest Pick # with michael grabner and less than 20 Reg GP?",
    "question_th": "Pick # ต่ำสุดที่มี michael Grabner และน้อยกว่า 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_en": "Which class has a peak named fountains fell south top?",
    "question_th": "คลาสใดมียอดเขาชื่อน้ำพุตกลงไปทางใต้?",
    "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_en": "What is the total of Prom in M for Peak great knoutberry hill?",
    "question_th": "Prom in M for Peak 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_en": "What is the average height for hewitt class, with prom less than 86, and a Peak of gragareth?",
    "question_th": "ความสูงเฉลี่ยของคลาสฮิววิตต์ โดยพรหมน้อยกว่า 86 และจุดสูงสุดของกรากาเร็ธคือเท่าใด",
    "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_en": "In which movie is Selva Nambi a co-singer?",
    "question_th": "Selva Nambi เป็นนักร้องร่วมในภาพยนตร์เรื่องใด",
    "context": "CREATE TABLE table_name_20 (movie VARCHAR, co_singers VARCHAR)"
  },
  {
    "answer": "SELECT music_director FROM table_name_3 WHERE year = 1994",
    "question_en": "Who was the music director in 1994?",
    "question_th": "ใครเป็นผู้กำกับเพลงในปี 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_en": "What years was Denis Lawson nominated for an award?",
    "question_th": "เดนิส ลอว์สันได้รับการเสนอชื่อเข้าชิงรางวัลในปีใด",
    "context": "CREATE TABLE table_name_45 (year VARCHAR, nominee VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_14 WHERE nominee = \"jason pennycooke\"",
    "question_en": "Did Jason Pennycooke win the award he was nominated for?",
    "question_th": "Jason Pennycooke ชนะรางวัลที่เขาได้รับการเสนอชื่อเข้าชิงหรือไม่?",
    "context": "CREATE TABLE table_name_14 (result VARCHAR, nominee VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_name_60 WHERE nominee = \"best musical revival\"",
    "question_en": "How many years was Best Musical Revival nominated?",
    "question_th": "Best Musical Revival ได้รับการเสนอชื่อเข้าชิงกี่ปี?",
    "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_en": "What award was Denis Lawson nominated for in the Best Actor in a Musical category?",
    "question_th": "เดนิส ลอว์สันได้รับการเสนอชื่อเข้าชิงรางวัลนักแสดงนำชายยอดเยี่ยมประเภทละครเพลงเรื่องใด",
    "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_en": "Which opponent has an Outcome of winner, and a Date of 5 november 2011?",
    "question_th": "คู่ต่อสู้คนใดมีผลลัพธ์เป็นผู้ชนะ และวันที่ 5 พฤศจิกายน 2554?",
    "context": "CREATE TABLE table_name_26 (opponent VARCHAR, outcome VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_92 WHERE score = \"4–6, 2–6\"",
    "question_en": "Which date has a Score of 4–6, 2–6?",
    "question_th": "วันไหนมีคะแนน 4–6, 2–6?",
    "context": "CREATE TABLE table_name_92 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_60 WHERE opponent = \"juan mónaco\" AND score = \"6–2, 4–6, 7–6 (7–3)\"",
    "question_en": "Which date has a Opponent of juan mónaco, and a Score of 6–2, 4–6, 7–6 (7–3)?",
    "question_th": "วันไหนที่มีคู่ต่อสู้ของฆวน โมนาโก และสกอร์ 6–2, 4–6, 7–6 (7–3)?",
    "context": "CREATE TABLE table_name_60 (date VARCHAR, opponent VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_16 WHERE opponent = \"fernando verdasco\"",
    "question_en": "Which outcome has a Opponent of fernando verdasco?",
    "question_th": "ผลการแข่งขันใดมีคู่ต่อสู้ของ Fernando Verdasco?",
    "context": "CREATE TABLE table_name_16 (outcome VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_41 WHERE opponent = \"fernando verdasco\"",
    "question_en": "Which surface has an Opponent of fernando verdasco?",
    "question_th": "พื้นผิวใดมีฝ่ายตรงข้ามของ 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_en": "Which surface has a Date of 5 november 2011?",
    "question_th": "พื้นผิวใดมีวันที่ 5 พฤศจิกายน 2554",
    "context": "CREATE TABLE table_name_40 (surface VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT SUM(crowd) FROM table_name_16 WHERE venue = \"mcg\"",
    "question_en": "When the Venue was mcg what was the sum of all Crowds for that venue?",
    "question_th": "เมื่อสถานที่จัดงานเป็น mcg ผลรวมของฝูงชนทั้งหมดสำหรับสถานที่นั้นคือเท่าใด",
    "context": "CREATE TABLE table_name_16 (crowd INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_62 WHERE away_team = \"essendon\"",
    "question_en": "If the Away team is essendon, what was the Date they played?",
    "question_th": "ถ้าทีมเยือนเป็นเอสเซนดอน ลงเล่นวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_62 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_11 WHERE away_team = \"essendon\"",
    "question_en": "On what Date did the Away team essendon play?",
    "question_th": "เอสเซนดอนทีมเยือนลงเล่นวันไหน?",
    "context": "CREATE TABLE table_name_11 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_49 WHERE home_team = \"north melbourne\"",
    "question_en": "When the Home team was north melbourne what was the Date of the game?",
    "question_th": "เมื่อทีมเหย้าอยู่เมลเบิร์นเหนือ แข่งขันวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_49 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_72 WHERE date = \"september 1\"",
    "question_en": "What was the record as of September 1?",
    "question_th": "บันทึก ณ วันที่ 1 กันยายนเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_72 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_48 WHERE date = \"september 1\"",
    "question_en": "What was the losing score on September 1?",
    "question_th": "คะแนนแพ้ในวันที่ 1 กันยายน เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_48 (loss VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT 1988 FROM table_name_88 WHERE 1987 = \"1r\"",
    "question_en": "What is the 1988 value when the 1987 value was 1r?",
    "question_th": "ค่าปี 1988 คืออะไรเมื่อค่าปี 1987 เป็น 1r",
    "context": "CREATE TABLE table_name_88 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1981 FROM table_name_97 WHERE tournament = \"wimbledon\"",
    "question_en": "What is the 1981 value at the Tournament of Wimbledon?",
    "question_th": "มูลค่าปี 1981 ในการแข่งขันวิมเบิลดันเป็นเท่าใด",
    "context": "CREATE TABLE table_name_97 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_86 WHERE opened = \"2004\" AND park = \"bobbejaanland\"",
    "question_en": "What is the name of the rollercoaster that opened in 2004 in bobbejaanland?",
    "question_th": "รถไฟเหาะที่เปิดในปี 2004 ที่เมืองบ็อบบีจานแลนด์ชื่ออะไร",
    "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_en": "What is the status of the junior coaster model that opened in 2008?",
    "question_th": "รถไฟเหาะรุ่นจูเนียร์ที่เปิดในปี 2551 มีสถานะเป็นอย่างไร?",
    "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_en": "What is the model for Thor's Hammer which is listed as operating?",
    "question_th": "Thor's Hammer รุ่นใดที่ระบุว่าใช้งานอยู่คืออะไร",
    "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_en": "What is the name of the coaster that opened in 2011 and is a euro-fighter model?",
    "question_th": "รถไฟเหาะที่เปิดในปี 2554 ชื่ออะไรและเป็นรุ่นยูโรไฟท์เตอร์?",
    "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_en": "Which driver won the iv j.c.c. jersey road race?",
    "question_th": "นักแข่งคนไหนชนะการแข่งขัน iv jcc 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_en": "What's the total number of games that had more than 34 points and exactly 3 losses?",
    "question_th": "จำนวนเกมทั้งหมดที่มีมากกว่า 34 แต้มและแพ้ 3 นัดพอดีคือเท่าใด",
    "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_en": "What's the total number of losses with less than 19 points and more than 36 games?",
    "question_th": "เสียรวมน้อยกว่า 19 แต้ม และเกิน 36 เกมเป็นจำนวนเท่าใด?",
    "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_en": "Which season has less than 26 points, more than 18 games, and exactly 13 losses?",
    "question_th": "ฤดูกาลใดมีน้อยกว่า 26 แต้ม มากกว่า 18 เกม แพ้ 13 นัดพอดี?",
    "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_en": "What is the highest crowd number of the game where the away team was south melbourne?",
    "question_th": "จำนวนผู้เข้าชมสูงสุดในเกมที่ทีมเยือนคือเซาท์เมลเบิร์นคือเท่าใด?",
    "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_en": "What is the home team score that played the away team of north melbourne?",
    "question_th": "สกอร์เจ้าบ้านเจอทีมเยือนเมลเบิร์นเหนือเป็นเท่าไหร่?",
    "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_en": "What is the away team score of the game that was played at princes park?",
    "question_th": "คะแนนทีมเยือนของเกมที่เล่นที่ 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_en": "If the Home team is carlton, what's the lowest Crowd found?",
    "question_th": "ถ้าทีมเหย้าคือคาร์ลตัน พบ Crowd ต่ำสุดคือเท่าใด",
    "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_en": "What is the Block A value for an El NOSAWA Mendoza value of kondo (7:08)?",
    "question_th": "ค่า Block A สำหรับค่า El NOSAWA Mendoza ของ 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_en": "What is the PEPE Michinoku value for a Ryuji Hijikata value of sabin (12:33)?",
    "question_th": "ค่า PEPE Michinoku สำหรับค่า Sabin ของ Ryuji Hijikata คืออะไร (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_en": "What is the Shuji Kondo value related to a PEPE Michinoku value of sabin (14:43)?",
    "question_th": "ค่า Shuji Kondo เกี่ยวข้องกับค่า PEPE Michinoku ของ 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_en": "Tell me the declination with NGC number larger than 5750",
    "question_th": "บอกการปฏิเสธด้วยหมายเลข NGC ที่มากกว่า 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_en": "Tell me the final position for fa community shield",
    "question_th": "บอกตำแหน่งสุดท้ายของฟ้าชุมชนโล่",
    "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_en": "Name the first match for 11 may 2008",
    "question_th": "นัดแรกวันที่ 11 พฤษภาคม 2551",
    "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_en": "What is the total number of Lifetime India Distributor share earlier than 2009?",
    "question_th": "จำนวนส่วนแบ่งของผู้จัดจำหน่ายตลอดชีพในอินเดียก่อนปี 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_en": "When did South Melbourne play as the home team?",
    "question_th": "เซาท์ เมลเบิร์น เล่นเป็นเจ้าบ้านเมื่อใด?",
    "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_en": "What was the largest amount of spectators when St Kilda was the away team?",
    "question_th": "จำนวนผู้ชมมากที่สุดเมื่อเซนต์คิลดาเป็นทีมเยือนคือเท่าไร?",
    "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_en": "What was Richmond's score when it was the away team?",
    "question_th": "ริชมอนด์สกอร์เป็นไงเมื่อเป็นทีมเยือน?",
    "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_en": "what is the declination (j2000) that has a constellation of hydra and a right ascension (j2000) of 10h46m44.9s?",
    "question_th": "ค่าเสื่อม (j2000) ที่มีกลุ่มดาวไฮดราและการขึ้นทางขวา (j2000) ที่ 10h46m44.9 วินาที คืออะไร",
    "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_en": "What is the ngc number when the object type is lenticular galaxy and the constellation is hydra?",
    "question_th": "หมายเลข ngc คืออะไรเมื่อประเภทของวัตถุคือกาแล็กซีเลนส์และกลุ่มดาวคือไฮดรา",
    "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_en": "what is the object type when the ngc number is 3314?",
    "question_th": "ประเภทของวัตถุคืออะไรเมื่อหมายเลข ngc คือ 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__ = \"°42′13″\"",
    "question_en": "what is the ngc number when the constellation is leo and the declination (j2000) is °42′13″?",
    "question_th": "หมายเลข ngc คืออะไรเมื่อกลุ่มดาวคือราศีสิงห์และการเบี่ยงเบน (j2000) คือ°42′13″",
    "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_en": "what is the right ascension (j2000) with the ngc number less than 3384, the constellation is hydra and the object type is spiral galaxy?",
    "question_th": "อะไรคือการขึ้นสู่สวรรค์ที่ถูกต้อง (j2000) โดยมีเลข ngc น้อยกว่า 3384 กลุ่มดาวคือไฮดรา และประเภทของวัตถุคือกาแล็กซีกังหัน",
    "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_en": "What competition was played on October 7, 2011?",
    "question_th": "การแข่งขันใดที่เล่นในวันที่ 7 ตุลาคม 2554?",
    "context": "CREATE TABLE table_name_95 (competition VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_65 WHERE year = 1992 AND result = \"loss\"",
    "question_en": "What's the score for 1992, with the result of a loss?",
    "question_th": "สกอร์ปี 1992 มีผลแพ้เท่าไหร่?",
    "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_en": "What national league has limoges csp, and french basketball cup?",
    "question_th": "ลีกระดับประเทศใดมีลิโมจส์ csp และบาสเก็ตบอลฝรั่งเศส",
    "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_en": "What is the club that has the turkish basketball cup and fiba eurochallenge (3rd tier)?",
    "question_th": "สโมสรใดที่มีถ้วยบาสเก็ตบอลตุรกีและ fiba eurochallenge (ชั้น 3) คืออะไร?",
    "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_en": "What national cup has fc barcelona?",
    "question_th": "เอฟซี บาร์เซโลน่า มีถ้วยระดับชาติอะไรบ้าง?",
    "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_en": "Name the average DDR3 speed for model e-350",
    "question_th": "ตั้งชื่อความเร็วเฉลี่ย DDR3 สำหรับรุ่น 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_en": "who lost on august 21?",
    "question_th": "ใครแพ้วันที่ 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_en": "On August 10, what was the record against the Expos?",
    "question_th": "เมื่อวันที่ 10 ส.ค. มีสถิติต่อต้านงาน 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_en": "What is the average laps for lorenzo bandini with a grid under 3?",
    "question_th": "รอบเฉลี่ยของลอเรนโซ บันดินี่ที่มีกริดต่ำกว่า 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_en": "What driver has under 53 laps, a grid smaller than 14, and a time/retired of differential?",
    "question_th": "นักแข่งคนไหนที่วิ่งได้ต่ำกว่า 53 รอบ มีกริดน้อยกว่า 14 รอบ และเวลา/ออกจากเฟืองท้าย?",
    "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_en": "What music is in the film with an Uncut run time of 95 minutes?",
    "question_th": "เพลงอะไรในภาพยนตร์ที่มีความยาว Uncut 95 นาที?",
    "context": "CREATE TABLE table_name_63 (music VARCHAR, uncut_run_time VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_10 WHERE music = \"nino oliviero\"",
    "question_en": "What country is the film that has music of nino oliviero?",
    "question_th": "หนังเรื่องไหนมีเพลงของ nino oliviero ครับ?",
    "context": "CREATE TABLE table_name_10 (country VARCHAR, music VARCHAR)"
  },
  {
    "answer": "SELECT music FROM table_name_53 WHERE year < 1963",
    "question_en": "What music is in the film before 1963?",
    "question_th": "เพลงอะไรในภาพยนตร์ก่อนปี 1963?",
    "context": "CREATE TABLE table_name_53 (music VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT music FROM table_name_23 WHERE year = 1962",
    "question_en": "What music is in the film before 1962?",
    "question_th": "เพลงอะไรในภาพยนตร์ก่อนปี 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_en": "Which team played as the home team when north melbourne played as away?",
    "question_th": "ทีมไหนเล่นเป็นเจ้าบ้าน ตอน เมลเบิร์นเหนือ เล่นเป็นทีมเยือน?",
    "context": "CREATE TABLE table_name_75 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_37 WHERE pick__number = 53",
    "question_en": "what is the position of pick #53?",
    "question_th": "ตำแหน่งของผู้เลือก #53 คืออะไร?",
    "context": "CREATE TABLE table_name_37 (position VARCHAR, pick__number VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_54 WHERE player = \"andrew paopao\"",
    "question_en": "what is the position for andrew paopao?",
    "question_th": "แอนดรูว์ เปาเป่า ดำรงตำแหน่งอะไร?",
    "context": "CREATE TABLE table_name_54 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_11 WHERE home_team = \"south melbourne\"",
    "question_en": "In which venue is South Melbourne the home team?",
    "question_th": "เซาธ์ เมลเบิร์น เป็นเจ้าบ้านที่สนามไหน?",
    "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_en": "When South Melbourne was the home team, who was the away team?",
    "question_th": "เมื่อเซาท์เมลเบิร์นเป็นเจ้าบ้านใครเป็นทีมเยือน?",
    "context": "CREATE TABLE table_name_80 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_16 WHERE home_team = \"hawthorn\"",
    "question_en": "What venue is Hawthorn the home team at?",
    "question_th": "ฮอว์ธอร์นเจ้าบ้านอยู่สนามไหน?",
    "context": "CREATE TABLE table_name_16 (venue VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT capacity FROM table_name_97 WHERE city_area = \"chester\"",
    "question_en": "What is the capacity for the arena in Chester?",
    "question_th": "สนามที่เชสเตอร์จุได้เท่าไหร่?",
    "context": "CREATE TABLE table_name_97 (capacity VARCHAR, city_area VARCHAR)"
  },
  {
    "answer": "SELECT arena FROM table_name_8 WHERE capacity = \"1,100\"",
    "question_en": "Which arena has a capactiy of 1,100?",
    "question_th": "สนามไหนจุคนได้ 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_en": "What is the last season that the Scottish Rocks played?",
    "question_th": "ฤดูกาลล่าสุดที่ Scottish Rocks เล่นคือฤดูกาลใด?",
    "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_en": "Which arena has the Milton Keynes Lions and a capacity of 800?",
    "question_th": "สนามไหนมีมิลตัน คียนส์ ไลออนส์ และความจุ 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_en": "What is the last season the Worcester Wolves played?",
    "question_th": "ฤดูกาลที่แล้วที่วูสเตอร์ วูล์ฟส์เล่นคือฤดูกาลใด?",
    "context": "CREATE TABLE table_name_65 (last_season VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_17 WHERE city_area = \"birmingham & telford\"",
    "question_en": "Which team is from Birmingham & Telford?",
    "question_th": "ทีมไหนมาจากเบอร์มิงแฮม & เทลฟอร์ด?",
    "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_en": "Who has the least wins when ranked above 3 with over 10 events?",
    "question_th": "ใครชนะน้อยที่สุดเมื่อติดอันดับ 3 มากกว่า 10 รายการ?",
    "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_en": "How many wins for billy casper over 8 events and uner $71,979 in earnings?",
    "question_th": "บิลลี่ แคสเปอร์ ชนะ 8 รายการและมีรายได้ไม่เกิน 71,979 ดอลลาร์เท่าไร",
    "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_en": "What is the lowest rank for a player earning $71,979?",
    "question_th": "อันดับต่ำสุดสำหรับผู้เล่นที่มีรายได้ $71,979 คืออะไร?",
    "context": "CREATE TABLE table_name_11 (rank INTEGER, earnings___$__ INTEGER)"
  },
  {
    "answer": "SELECT gdp___bn__ FROM table_name_67 WHERE capital = \"ioannina\"",
    "question_en": "What was the Gdp (bn) for the region that has ioannina as its Capital?",
    "question_th": "Gdp (พันล้าน) สำหรับภูมิภาคที่มี ioannina เป็นเมืองหลวงคือเท่าใด",
    "context": "CREATE TABLE table_name_67 (gdp___bn__ VARCHAR, capital VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_name_65 WHERE area__km²_ = \"9,451\"",
    "question_en": "Which Region has an Area of 9,451km²?",
    "question_th": "ภูมิภาคใดมีพื้นที่ 9,451 ตารางกิโลเมตร",
    "context": "CREATE TABLE table_name_65 (region VARCHAR, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT capital FROM table_name_73 WHERE population = \"308,610\"",
    "question_en": "Which capital has a population of 308,610?",
    "question_th": "เมืองหลวงใดมีประชากร 308,610 คน",
    "context": "CREATE TABLE table_name_73 (capital VARCHAR, population VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_name_70 WHERE area__km²_ = \"14,037\"",
    "question_en": "Which Region has an area of 14,037km²?",
    "question_th": "ภูมิภาคใดมีพื้นที่ 14,037 ตารางกิโลเมตร",
    "context": "CREATE TABLE table_name_70 (region VARCHAR, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT gdp___bn__ FROM table_name_74 WHERE area__sq_mi_ = \"7,263\"",
    "question_en": "What is the GDP for the region with an area of 7,263 sq. mi.?",
    "question_th": "GDP ของภูมิภาคที่มีพื้นที่ 7,263 ตร.ไมล์ เป็นเท่าใด",
    "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_en": "What is the population for the region with an area of 6,004 sq. Mi.?",
    "question_th": "ภูมิภาคที่มีพื้นที่ 6,004 ตร.มิ. มีประชากรเท่าใด",
    "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_en": "What is the lowest episode # with an air date of October 31, 2001?",
    "question_th": "ตอนที่ต่ำสุดคือเรื่องใด #ที่ออกอากาศวันที่ 31 ตุลาคม 2544?",
    "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_en": "What is the average episode # located in Tanzania and whose # in season is larger than 5?",
    "question_th": "ตอนเฉลี่ย # ที่อยู่ในแทนซาเนียคือเท่าใด และ # ในฤดูกาลใดมากกว่า 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_en": "What is the average episode # with a name of the origin of Donnie (part 1)?",
    "question_th": "ตอนเฉลี่ย #ชื่อที่มาของดอนนี่ (ตอนที่ 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_en": "Which air date has 5 for # in season?",
    "question_th": "วันไหนที่ออกอากาศมี 5 เรื่อง #ในซีซั่น?",
    "context": "CREATE TABLE table_name_50 (airdate VARCHAR, _number_in_season VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_60 WHERE home_team = \"melbourne\"",
    "question_en": "What venue is home for the Melbourne team?",
    "question_th": "สนามไหนคือบ้านของทีมเมลเบิร์น?",
    "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_en": "Which License has a System of amiga, and a Name of pocketuae?",
    "question_th": "ใบอนุญาตใดที่มีระบบ Amiga และชื่อของ 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_en": "What name has a License of gpl, and an Actual version of 0.8.29wip4?",
    "question_th": "ชื่ออะไรมีใบอนุญาตของ gpl และเวอร์ชันจริงของ 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_en": "Which platform has an Actual version of 0.147?",
    "question_th": "แพลตฟอร์มใดมีเวอร์ชันจริงเป็น 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_en": "Which name has a License of gpl, and a Platform of windows?",
    "question_th": "ชื่อใดมีใบอนุญาตของ gpl และแพลตฟอร์มของ windows",
    "context": "CREATE TABLE table_name_47 (name VARCHAR, license VARCHAR, platform VARCHAR)"
  },
  {
    "answer": "SELECT system FROM table_name_80 WHERE name = \"mess\"",
    "question_en": "Which system is named mess?",
    "question_th": "ระบบไหนชื่อระเบียบ?",
    "context": "CREATE TABLE table_name_80 (system VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT platform FROM table_name_96 WHERE actual_version = \"0.8.29\"",
    "question_en": "Which Platform has an Actual version of 0.8.29?",
    "question_th": "แพลตฟอร์มใดมีเวอร์ชันจริงเป็น 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_en": "What's the earliest year that had a category of best supporting actress at the asian film awards?",
    "question_th": "ปีแรกสุดที่มีประเภทนักแสดงสมทบหญิงยอดเยี่ยมในงาน 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_en": "Which award show had the category of best supporting actress?",
    "question_th": "งานประกาศรางวัลใดมีประเภทนักแสดงสมทบหญิงยอดเยี่ยม?",
    "context": "CREATE TABLE table_name_22 (award VARCHAR, category VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_61 WHERE nominated_work = \"white valentine\"",
    "question_en": "Did the nominated work of white valentine win an award?",
    "question_th": "ผลงานที่ได้รับการเสนอชื่อเข้าชิงไวท์วาเลนไทน์ได้รับรางวัลหรือไม่?",
    "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_en": "Which category was the berlin file up to win in 2013?",
    "question_th": "เบอร์ลินประเภทใดที่จะคว้าแชมป์ในปี 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_en": "What is the final position/round of the UEFA cup?",
    "question_th": "ตำแหน่งสุดท้ายของยูฟ่าคัพคือตำแหน่งใด?",
    "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_en": "When the final position/round is group stage, when is the last match?",
    "question_th": "เมื่อตำแหน่งสุดท้าย/รอบคือรอบแบ่งกลุ่ม นัดสุดท้ายคือเมื่อใด?",
    "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_en": "When did the DC Comics title that debuted in 1937 end?",
    "question_th": "ชื่อ DC Comics ที่เปิดตัวในปี 1937 สิ้นสุดลงเมื่อใด",
    "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_en": "Who published Weird War Tales?",
    "question_th": "ใครเป็นผู้ตีพิมพ์ 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_en": "When did the comic which came out in 1982 end?",
    "question_th": "การ์ตูนที่ออกในปี 1982 จบลงเมื่อไหร่?",
    "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_en": "Which EC Comics title ran from 1950 to 1953?",
    "question_th": "ชื่อการ์ตูน EC Comics เรื่องใดตั้งแต่ปี 1950 ถึง 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_en": "What is the first year for Popgun?",
    "question_th": "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_en": "What's the region for an item on November 10, 2007 that's a cd?",
    "question_th": "ภูมิภาคสำหรับรายการในวันที่ 10 พฤศจิกายน 2550 ซึ่งเป็นซีดีคืออะไร",
    "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_en": "What's the catalog number for a record from columbia formatted in a cd/dvd that's from the United States region?",
    "question_th": "หมายเลขแค็ตตาล็อกสำหรับบันทึกจากโคลัมเบียที่จัดรูปแบบเป็นซีดี/ดีวีดีที่มาจากภูมิภาคสหรัฐอเมริกาคือข้อใด",
    "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_en": "What's the catalog number for a December 11, 2007 record from columbia formatted in a that's from Canada?",
    "question_th": "หมายเลขแค็ตตาล็อกสำหรับบันทึกวันที่ 11 ธันวาคม 2550 จากโคลัมเบียซึ่งจัดรูปแบบในรูปแบบที่มาจากแคนาดาคืออะไร",
    "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_en": "What is the average crowd size at Princes Park?",
    "question_th": "ขนาดฝูงชนโดยเฉลี่ยที่ 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_en": "who is the constructor when the free practice driver(s) is n/a, the chassis is 005 and the driver is takuma sato?",
    "question_th": "ใครคือผู้สร้างเมื่อไดร์เวอร์ฝึกซ้อมฟรีไม่มี แชสซีคือ 005 และไดร์เวอร์คือทาคุมะ ซาโตะ",
    "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_en": "what is the rounds when the entrant is scuderia ferrari marlboro?",
    "question_th": "ผู้เข้าแข่งขันคือสคูเดอเรีย เฟอร์รารี มาร์ลโบโร ในรอบใด",
    "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_en": "what is the chassis when the entrant is mild seven renault f1 team and the driver is jarno trulli?",
    "question_th": "แชสซีจะเป็นอย่างไรเมื่อผู้เข้าร่วมคือทีม Mild Seven renault F1 และคนขับคือ Jarno Trulli",
    "context": "CREATE TABLE table_name_3 (chassis VARCHAR, entrant VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT engine_† FROM table_name_34 WHERE tyre = \"m\" AND driver = \"fernando alonso\"",
    "question_en": "what is the engine when the tyre is m and the driver is fernando alonso?",
    "question_th": "เครื่องยนต์คืออะไรเมื่อยางเป็นขนาด m และคนขับคือเฟอร์นันโด อลอนโซ่?",
    "context": "CREATE TABLE table_name_34 (engine_† VARCHAR, tyre VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_41 WHERE driver = \"juan pablo montoya\"",
    "question_en": "who is the constructor when the driver is juan pablo montoya?",
    "question_th": "ใครคือผู้สร้างเมื่อคนขับคือ 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_en": "How many people attended the game with a record of 86-56",
    "question_th": "มีผู้เข้าชมเกมกี่คนด้วยสถิติ 86-56",
    "context": "CREATE TABLE table_name_39 (attendance VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_31 WHERE record = \"90-60\"",
    "question_en": "Name the date that had a record of 90-60",
    "question_th": "ตั้งชื่อวันที่ที่มีบันทึก 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_en": "What was the highest Sinclair Total that had a rank of 3, but a World Record smaller than 217?",
    "question_th": "อะไรคือ Sinclair Total สูงสุดที่มีอันดับ 3 แต่มีสถิติโลกน้อยกว่า 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_en": "What is the name of the venue that they away team Collingwood played at?",
    "question_th": "สนามที่พวกเขาเล่นให้กับทีมเยือนคอลลิงวูดชื่ออะไร?",
    "context": "CREATE TABLE table_name_95 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_54 WHERE away_team = \"carlton\"",
    "question_en": "What date did Carlton play as the away team?",
    "question_th": "คาร์ลตันลงเล่นเป็นทีมเยือนวันไหน?",
    "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_en": "What was the home team's score at Windy Hill?",
    "question_th": "เจ้าบ้านทำสกอร์ที่วินดี้ ฮิลล์ได้เท่าไหร่?",
    "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_en": "What is the lowest grid value with fewer than 17 laps and constructor Sauber - Petronas?",
    "question_th": "ค่ากริดต่ำสุดที่มีรอบน้อยกว่า 17 รอบและตัวสร้าง 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_en": "Which Time/Retired entry has greater than 51 laps and driver Cristiano da Matta?",
    "question_th": "รายการเวลา/เกษียณใดที่มีรอบมากกว่า 51 รอบและนักแข่ง 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_en": "How many ties did the Montreal Victorias have with a GA of less than 24?",
    "question_th": "Montreal Victorias มีความผูกพันกับ GA น้อยกว่า 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_en": "How many years was the record 3:40.8?",
    "question_th": "สถิติ 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ászló tábori gunnar nielsen\"",
    "question_en": "What event is before 1964 and has an athlete of lászló tábori gunnar nielsen?",
    "question_th": "เหตุการณ์ใดเกิดขึ้นก่อนปี 1964 และมีนักกีฬาของ lászló tábori 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_en": "Who is the leading scorer of the game where the Kings is the home team?",
    "question_th": "ใครคือผู้ทำประตูสูงสุดในเกมที่มีคิงส์เป็นเจ้าบ้าน?",
    "context": "CREATE TABLE table_name_27 (leading_scorer VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_19 WHERE date = \"march 2, 2008\"",
    "question_en": "Who is the visitor team of the game on March 2, 2008?",
    "question_th": "ทีมเยือนของเกมวันที่ 2 มีนาคม 2551 คือใคร?",
    "context": "CREATE TABLE table_name_19 (visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(attendance) FROM table_name_67 WHERE home = \"lakers\"",
    "question_en": "What is the attendance total of the game with the Lakers as the home team?",
    "question_th": "จำนวนผู้เข้าชมเกมทั้งหมดโดยมีเลเกอร์สเป็นเจ้าบ้านคือเท่าไร?",
    "context": "CREATE TABLE table_name_67 (attendance VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_89 WHERE attendance = \"39,056\"",
    "question_en": "Which week had 39,056 people in attendance?",
    "question_th": "สัปดาห์ไหนมีผู้เข้าร่วม 39,056 คน?",
    "context": "CREATE TABLE table_name_89 (week VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT kickoff_[a_] FROM table_name_25 WHERE week = \"3\"",
    "question_en": "What is the kickoff time for week 3?",
    "question_th": "เวลาคิกออฟสำหรับสัปดาห์ที่ 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_en": "What is the kickoff time for the Hubert H. Humphrey Metrodome?",
    "question_th": "เวลาคิกออฟของ 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_en": "Who was the opponent on September 13, 1992?",
    "question_th": "คู่ต่อสู้เมื่อวันที่ 13 กันยายน 2535 คือใคร?",
    "context": "CREATE TABLE table_name_10 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_53 WHERE date = \"november 1, 1992\"",
    "question_en": "What is the result on November 1, 1992?",
    "question_th": "ผลเมื่อวันที่ 1 พฤศจิกายน 2535 เป็นอย่างไร?",
    "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_en": "What was the away score when the home team was Melbourne?",
    "question_th": "สกอร์ทีมเยือนเมื่อเจ้าบ้านเป็นเมลเบิร์นเป็นเท่าไหร่?",
    "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_en": "Who played Collingwood?",
    "question_th": "ใครเล่นคอลลิงวูด?",
    "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_en": "How big was the crowd for Essendon?",
    "question_th": "ฝูงชนของเอสเซนดอนมีมากขนาดไหน?",
    "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_en": "Which team played against North Melbourne as the home team?",
    "question_th": "ทีมใดเล่นกับ นอร์ท เมลเบิร์น ในฐานะทีมเหย้า?",
    "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_en": "Which home team plays at Punt Road Oval?",
    "question_th": "เจ้าบ้านทีมไหนเล่นที่ 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_en": "Which team plays at Punt Road Oval?",
    "question_th": "ทีมใดเล่นที่ 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_en": "What did the away team score at corio oval?",
    "question_th": "ทีมเยือนทำประตูได้ที่โคริโอโอวัล?",
    "context": "CREATE TABLE table_name_58 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_54 WHERE attendance = \"65,537\"",
    "question_en": "Who did the cowboys play when 65,537 attended?",
    "question_th": "คาวบอยส์เล่นใครเมื่อมีผู้เข้าร่วม 65,537 คน?",
    "context": "CREATE TABLE table_name_54 (opponent VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_13 WHERE opponents = \"antonia xenia tout nataša zorić\"",
    "question_en": "What is the name of the tournament when antonia xenia tout nataša zorić was the opponenet?",
    "question_th": "ชื่อของทัวร์นาเมนต์คืออะไรเมื่อ Antonia Xenia tout nataša zorić เป็นฝ่ายตรงข้าม?",
    "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_en": "What date was georgie stoop emily webley-smith the opponent?",
    "question_th": "จอร์จีก้มลงพบเอมิลี่ เวบลีย์-สมิธฝ่ายตรงข้ามวันไหน?",
    "context": "CREATE TABLE table_name_33 (date VARCHAR, opponents VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_44 WHERE opponents = \"iryna bremond valeria savinykh\"",
    "question_en": "What is the surface of the match when the opponent was iryna bremond valeria savinykh?",
    "question_th": "พื้นผิวของการแข่งขันเมื่อคู่ต่อสู้คือ 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_en": "What is the name of the opponent for the Sutton tournament?",
    "question_th": "คู่ต่อสู้ในการแข่งขันซัตตันชื่ออะไร?",
    "context": "CREATE TABLE table_name_19 (opponents VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT opponents FROM table_name_15 WHERE partner = \"anastasia pivovarova\"",
    "question_en": "What is the name of the opponent when anastasia pivovarova was the partner?",
    "question_th": "คู่ต่อสู้ชื่ออะไรเมื่ออนาสตาเซีย pivovarova เป็นหุ้นส่วน?",
    "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_en": "What is south melbourne's home side score?",
    "question_th": "สกอร์ฝั่งเจ้าบ้านของเซาธ์ เมลเบิร์นเป็นเท่าไหร่?",
    "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_en": "What rounds did Roy Salvadori drive for David Brown Corporation?",
    "question_th": "Roy Salvadori ขับรถให้กับ 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_en": "What are the results for years after 2007?",
    "question_th": "ผลลัพธ์สำหรับปีหลังปี 2550 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_17 (result VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT character FROM table_name_1 WHERE result = \"won\" AND year > 2003",
    "question_en": "Which characters after 2003 won?",
    "question_th": "ตัวละครตัวไหนหลังจากปี 2546 ชนะ?",
    "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_en": "For 2006 what category has the Show of kasautii zindagii kay?",
    "question_th": "สำหรับปี 2549 การแสดงของ 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_en": "What is the character for 2005?",
    "question_th": "ตัวละครในปี 2548 คืออะไร?",
    "context": "CREATE TABLE table_name_43 (character VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT category FROM table_name_21 WHERE year < 2012",
    "question_en": "What is a category before 2012?",
    "question_th": "หมวดหมู่คืออะไรก่อนปี 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_en": "What is natural change with a crude death rate of 8.7 and less than 472 live births?",
    "question_th": "การเปลี่ยนแปลงตามธรรมชาติที่มีอัตราการเสียชีวิตอย่างหยาบอยู่ที่ 8.7 และการเกิดมีชีพน้อยกว่า 472 ครั้งคืออะไร?",
    "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_en": "What owner or owners have an operational description?",
    "question_th": "เจ้าของหรือเจ้าของรายใดมีคำอธิบายการปฏิบัติงาน?",
    "context": "CREATE TABLE table_name_34 (owner_s_ VARCHAR, description VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_51 WHERE livery = \"operational\"",
    "question_en": "What is the date for the Operational Livery?",
    "question_th": "กำหนดการปฏิบัติงานคือวันที่เท่าไร?",
    "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_en": "What is the date listed for the item that has undergoing overhaul, restoration or repairs listed under description?",
    "question_th": "วันที่ระบุไว้สำหรับสินค้าที่อยู่ระหว่างการยกเครื่อง บูรณะ หรือซ่อมแซมที่ระบุไว้ภายใต้คำอธิบายคือวันที่ใด",
    "context": "CREATE TABLE table_name_62 (date VARCHAR, description VARCHAR)"
  },
  {
    "answer": "SELECT home_team AS score FROM table_name_43 WHERE venue = \"mcg\"",
    "question_en": "Who is the home team that played at MCG?",
    "question_th": "ทีมเจ้าบ้านที่เล่นที่เอ็มซีจีคือใคร?",
    "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_en": "What is the size of the smallest crowd that watched a game at Arden Street Oval?",
    "question_th": "ขนาดของฝูงชนที่เล็กที่สุดที่ดูเกมที่ 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_en": "What is the score of the away team who played home team Hawthorn?",
    "question_th": "ทีมเยือนเล่นเจ้าบ้านฮอว์ธอร์นสกอร์เท่าไหร่?",
    "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_en": "Who is the away team that played home team Footscray?",
    "question_th": "ทีมเยือนที่เล่นทีมเหย้าฟุตสเครย์คือใคร?",
    "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_en": "How many people attended the game where Fitzroy was the away team?",
    "question_th": "มีผู้ชมกี่คนที่ฟิตซ์รอยเป็นทีมเยือน?",
    "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_en": "I want the NGC number for leo of irregular galaxy",
    "question_th": "ฉันต้องการหมายเลข NGC สำหรับราศีสิงห์ของกาแล็กซีที่ไม่ปกติ",
    "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_en": "Tell me the highest NGC number for right ascension of 09h40m28.5s",
    "question_th": "บอกหมายเลข NGC สูงสุดสำหรับการขึ้นที่ถูกต้องที่ 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_en": "What is the constellation for open cluster?",
    "question_th": "กลุ่มดาวสำหรับกระจุกดาวเปิดคืออะไร?",
    "context": "CREATE TABLE table_name_37 (constellation VARCHAR, object_type VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_75 WHERE athlete = \"tatyana lebedeva\"",
    "question_en": "Which event was Tatyana Lebedeva in?",
    "question_th": "Tatyana Lebedeva อยู่ในเหตุการณ์ใด",
    "context": "CREATE TABLE table_name_75 (event VARCHAR, athlete VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_25 WHERE athlete = \"fatima whitbread trine hattestad\"",
    "question_en": "What event was Fatima Whitbread Trine Hattestad in?",
    "question_th": "Fatima Whitbread Trine Hattestad อยู่ในเหตุการณ์ใด",
    "context": "CREATE TABLE table_name_25 (event VARCHAR, athlete VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_80 WHERE athlete = \"milcah chemos\"",
    "question_en": "What is Milcah Chemos' record?",
    "question_th": "บันทึกของ Milcah Chemos คืออะไร?",
    "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_en": "What is the record for the 400 m event on 4 september 2009?",
    "question_th": "บันทึกของการแข่งขัน 400 ม. เมื่อวันที่ 4 กันยายน พ.ศ. 2552 เป็นอย่างไรบ้าง",
    "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_en": "What event was on 26 August 2005?",
    "question_th": "วันที่ 26 สิงหาคม พ.ศ. 2548 เป็นเหตุการณ์อะไร?",
    "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_en": "What was the date of the discus throw for Bulgaria?",
    "question_th": "วันที่ขว้างจักรให้บัลแกเรียคือวันที่เท่าไหร่?",
    "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_en": "What is the date ground A and Cartagena as an opponent?",
    "question_th": "วันที่พื้นดิน A และ Cartagena เป็นคู่ต่อสู้คืออะไร?",
    "context": "CREATE TABLE table_name_50 (date VARCHAR, ground VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT ground FROM table_name_16 WHERE match < 2",
    "question_en": "What ground has a match smaller than 2?",
    "question_th": "พื้นใดที่มีไม้ขีดน้อยกว่า 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_en": "What is the score of the competition of friendly, at match 7?",
    "question_th": "ผลการแข่งขันกระชับมิตรนัดที่ 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_en": "What was the lowest Pick number of Player Brian Bradley from Canada, in a Draft year before 1985?",
    "question_th": "หมายเลขเลือกต่ำสุดของผู้เล่น Brian Bradley จากแคนาดาใน Draft ปีก่อนปี 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_en": "Which Round was Player Adam Cracknell Picked after 231 in a Draft year after 1988?",
    "question_th": "ผู้เล่น Adam Cracknell เลือกรอบใดหลังจาก 231 ใน Draft ปีหลังปี 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_en": "Name the total number of yards for avg of 9 and rec of 1",
    "question_th": "ตั้งชื่อจำนวนหลาทั้งหมดสำหรับค่าเฉลี่ย 9 และระยะ 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_en": "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?",
    "question_th": "จำนวนการแพ้สูงสุดที่ทีมเกิดขึ้นขณะทำคะแนนน้อยกว่า 79 แต้มใน 10 เกมโดยมีแต้มต่างน้อยกว่า 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_en": "Which Player has a Date of Birth (Age When Delisted) of 13 February 1987 (aged 24)?",
    "question_th": "ผู้เล่นคนใดมีวันเกิด (อายุเมื่อถูกเพิกถอน) วันที่ 13 กุมภาพันธ์ พ.ศ. 2530 (อายุ 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_en": "What is listed under Senior List for Date of Birth (Age When Delisted) of 5 June 1984 (aged 23)?",
    "question_th": "มีอะไรอยู่ในรายชื่ออาวุโสสำหรับวันเดือนปีเกิด (อายุเมื่อถูกเพิกถอน) ของวันที่ 5 มิถุนายน 1984 (อายุ 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_en": "What is the average year to begin making autos for a brand that joined GM in 1917?",
    "question_th": "ปีเฉลี่ยที่จะเริ่มผลิตรถยนต์ให้กับแบรนด์ที่เข้าร่วมกับ GM ในปี 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_en": "Name the date with a home team of melbourne",
    "question_th": "ตั้งชื่อเดทกับทีมเจ้าบ้านเมลเบิร์น",
    "context": "CREATE TABLE table_name_74 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_40 WHERE home_team = \"collingwood\"",
    "question_en": "Name the venue for collingwood home team",
    "question_th": "ตั้งชื่อสถานที่ของทีมเหย้าคอลลิงวูด",
    "context": "CREATE TABLE table_name_40 (venue VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_7 WHERE gen_secretary = \"silvana jansen\"",
    "question_en": "Which year has a Gen.-Secretary of silvana jansen?",
    "question_th": "ปีไหนมีพล.อ.-เลขาธิการ ซิลวาน่า แจนเซ่น?",
    "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_en": "Which Vice President has a President of daniel masny, and a Treasurer of rebecca t. altmann?",
    "question_th": "รองประธานาธิบดีคนไหนมีประธานของแดเนียล มาสนี่ และเหรัญญิกของรีเบคก้า ที. อัลท์มันน์?",
    "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_en": "Who was president Year of 2002-2003, second semester?",
    "question_th": "ใครเป็นประธานาธิบดี ปี พ.ศ. 2545-2546 ภาคการศึกษาที่ 2?",
    "context": "CREATE TABLE table_name_89 (president VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT treasurer FROM table_name_74 WHERE president = \"sebastian ihler\"",
    "question_en": "Which treasurer has a President of sebastian ihler?",
    "question_th": "เหรัญญิกคนไหนมีประธานของเซบาสเตียน อิห์เลอร์?",
    "context": "CREATE TABLE table_name_74 (treasurer VARCHAR, president VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_1 WHERE surface = \"grass\"",
    "question_en": "Which opponent used a grass surface?",
    "question_th": "ฝ่ายตรงข้ามคนใดใช้พื้นผิวหญ้า?",
    "context": "CREATE TABLE table_name_1 (opponent VARCHAR, surface VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_3 WHERE score = \"6–7 (0–7) , 6–2, 4–6\"",
    "question_en": "Which tournament had a score of  6–7 (0–7) , 6–2, 4–6?",
    "question_th": "ทัวร์นาเมนต์ใดมีคะแนน 6–7 (0–7) , 6–2, 4–6?",
    "context": "CREATE TABLE table_name_3 (tournament VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(points) FROM table_name_72 WHERE lost < 4",
    "question_en": "Tell me the total number of points for lost less than 4",
    "question_th": "บอกจำนวนคะแนนรวมที่เสียน้อยกว่า 4",
    "context": "CREATE TABLE table_name_72 (points VARCHAR, lost INTEGER)"
  },
  {
    "answer": "SELECT SUM(drawn) FROM table_name_81 WHERE lost < 0",
    "question_en": "I want the sum of drawn for lost less than 0",
    "question_th": "ฉันต้องการผลรวมของการสูญเสียน้อยกว่า 0",
    "context": "CREATE TABLE table_name_81 (drawn INTEGER, lost INTEGER)"
  },
  {
    "answer": "SELECT points_difference FROM table_name_29 WHERE points = 14",
    "question_en": "I want the points difference for points of 14",
    "question_th": "ฉันต้องการคะแนนส่วนต่างของ 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_en": "Tell me the sum of rank for when gold is more than 0 and silver less than 23 with total more than 32",
    "question_th": "บอกผลรวมอันดับเมื่อทองมากกว่า 0 และเงินน้อยกว่า 23 รวมมากกว่า 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_en": "Tell me the sum of silver for liechtenstein and bronze more than 4",
    "question_th": "บอกผลรวมของเงินสำหรับลิกเตนสไตน์และทองแดงมากกว่า 4",
    "context": "CREATE TABLE table_name_34 (silver INTEGER, nation VARCHAR, bronze VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_70 WHERE score = \"6–4, 4–6, 7–5\"",
    "question_en": "Which tournament had a score of 6–4, 4–6, 7–5?",
    "question_th": "ทัวร์นาเมนต์ใดมีคะแนน 6–4, 4–6, 7–5?",
    "context": "CREATE TABLE table_name_70 (tournament VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_7 WHERE score = \"7–5, 2–6, 7–6\"",
    "question_en": "Which tournament had a score of 7–5, 2–6, 7–6?",
    "question_th": "ทัวร์นาเมนต์ใดมีคะแนน 7–5, 2–6, 7–6?",
    "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–3, 3–6, 7–5\"",
    "question_en": "Who was the opponent in the final in which the court surface was hard and the score was 6–3, 3–6, 7–5?",
    "question_th": "คู่ต่อสู้ในรอบชิงชนะเลิศคือใครที่พื้นผิวสนามยากและสกอร์ 6–3, 3–6, 7–5?",
    "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–4, 6–1\"",
    "question_en": "What was the court surface when the score was 6–4, 6–1?",
    "question_th": "พื้นผิวของสนามเป็นอย่างไรเมื่อสกอร์เป็น 6–4, 6–1?",
    "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_en": "On what date was the opponent in the final Gwinyai Tongoona?",
    "question_th": "คู่ต่อสู้ในรอบชิงชนะเลิศ กวินยาย ตองอูน่า ตรงกับวันไหน?",
    "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_en": "What was the record from the Golden State Warriors on 11/18?",
    "question_th": "บันทึกของ Golden State Warriors เมื่อวันที่ 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_en": "What class has 4-4-0 wheels and was less than number 40 built?",
    "question_th": "คลาสใดมีล้อ 4-4-0 และถูกสร้างขึ้นน้อยกว่าหมายเลข 40?",
    "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_en": "Name the space crusade when the english is of finnish",
    "question_th": "ตั้งชื่อสงครามครูเสดอวกาศเมื่อภาษาอังกฤษเป็นภาษาฟินแลนด์",
    "context": "CREATE TABLE table_name_7 (space_crusade VARCHAR, english VARCHAR)"
  },
  {
    "answer": "SELECT space_crusade FROM table_name_92 WHERE genestealers = \"genrøvere (gene robbers)\"",
    "question_en": "Name the space crusade which has Genestealers of genrøvere (gene robbers)",
    "question_th": "ตั้งชื่อสงครามครูเสดอวกาศซึ่งมี Genestealers ของgenrøvere (โจรยีน)",
    "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_en": "What was Galatasaray score when when he won in 1990 and Trabzonspor was the runner-up?",
    "question_th": "คะแนนของกาลาตาซารายคือเท่าไรตอนที่เขาชนะในปี 1990 และแทรบซอนสปอร์ได้รองแชมป์?",
    "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 = \"£1,000,000\"",
    "question_en": "How many matches were there in the round with £1,000,000 in prize money?",
    "question_th": "มีการแข่งขันกี่นัดในรอบนี้พร้อมเงินรางวัล 1,000,000 ปอนด์?",
    "context": "CREATE TABLE table_name_15 (matches VARCHAR, prize_money VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_36 WHERE matches = 1",
    "question_en": "What was the date for a round that only had 1 match?",
    "question_th": "รอบที่มีเพียงนัดเดียวคือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_36 (date VARCHAR, matches VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_87 WHERE away_team = \"hawthorn\"",
    "question_en": "What date did Hawthorn play as the away team?",
    "question_th": "ฮอว์ธอร์นลงเล่นเป็นทีมเยือนวันไหน?",
    "context": "CREATE TABLE table_name_87 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_name_43 WHERE college = \"wisconsin\"",
    "question_en": "What is the hometown for a college in Wisconsin?",
    "question_th": "บ้านเกิดของวิทยาลัยในรัฐวิสคอนซินคืออะไร?",
    "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_en": "Which college has a linebacker from Lessburg High School?",
    "question_th": "วิทยาลัยใดมีทีมบร็องโกจาก 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_en": "Which opponent has a week of 11?",
    "question_th": "คู่ต่อสู้คนใดมีสัปดาห์ที่ 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_en": "Which December 4, 1976 week has an attendance less than 57,366?",
    "question_th": "สัปดาห์ที่ 4 ธันวาคม 1976 ใดที่มีผู้เข้าร่วมน้อยกว่า 57,366 คน?",
    "context": "CREATE TABLE table_name_46 (week INTEGER, date VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT comune FROM table_name_52 WHERE total__km²_ > 70.99",
    "question_en": "Who has a larger than 70.99 km2?",
    "question_th": "ใครมีขนาดใหญ่กว่า 70.99 km2?",
    "context": "CREATE TABLE table_name_52 (comune VARCHAR, total__km²_ INTEGER)"
  },
  {
    "answer": "SELECT MIN(area__km²_) FROM table_name_26 WHERE province = \"napoli\" AND comune = \"piano di sorrento\" AND total__km²_ < 121.14",
    "question_en": "What is the Piano di Sorrento, Napoli lowest km2 with a total smaller than 121.14 km2?",
    "question_th": "Piano di Sorrento, Napoli ต่ำสุด km2 คืออะไรโดยมีจำนวนรวมน้อยกว่า 121.14 km2?",
    "context": "CREATE TABLE table_name_26 (area__km²_ INTEGER, total__km²_ VARCHAR, province VARCHAR, comune VARCHAR)"
  },
  {
    "answer": "SELECT writer FROM table_name_85 WHERE producer_executive_producer = \"dka, jl, as\"",
    "question_en": "Which writer had a producer DKA, JL, AS?",
    "question_th": "นักเขียนคนไหนมีโปรดิวเซอร์ 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_en": "Name the film that Lu directed.",
    "question_th": "ตั้งชื่อภาพยนตร์ที่หลู่กำกับ",
    "context": "CREATE TABLE table_name_68 (film_title VARCHAR, director VARCHAR)"
  },
  {
    "answer": "SELECT writer FROM table_name_22 WHERE film_title = \"toy story\"",
    "question_en": "Who wrote Toy Story?",
    "question_th": "ใครเป็นคนเขียนเรื่องทอยสตอรี่?",
    "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_en": "Which writer had voice characters of JDR, BB, TN, LR, PS?",
    "question_th": "นักเขียนคนไหนมีเสียงพากย์เป็น 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_en": "Who was the sound producer that worked under Executive Producer JL?",
    "question_th": "ใครคือโปรดิวเซอร์เสียงที่ทำงานภายใต้ 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_en": "What was the away team at mcg?",
    "question_th": "ทีมเยือนที่เอ็มซีจีเป็นทีมไหน?",
    "context": "CREATE TABLE table_name_44 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_17 WHERE country = \"nga\"",
    "question_en": "What is the name of the player from NGA?",
    "question_th": "นักเตะจาก 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_en": "Where is Odjidja-Ofoe, with an undisclosed transfer fee, moving to?",
    "question_th": "ออดจิดจา-โอโฟพร้อมค่าธรรมเนียมการโอนที่ไม่เปิดเผยย้ายไปไหน?",
    "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_en": "What country is the player, with an undisclosed transfer fee and moving to Nacional, from?",
    "question_th": "นักเตะคือประเทศอะไร โดยมีค่าตัวในการโอนที่ไม่เปิดเผยและย้ายไปนาซิอองนาล มาจาก?",
    "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_en": "What is Odjidja-Ofoe's transfer fee?",
    "question_th": "ค่าธรรมเนียมการโอนของ ออดจิดจา-โอโฟ คืออะไร?",
    "context": "CREATE TABLE table_name_82 (transfer_fee VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_2 WHERE country = \"cod\"",
    "question_en": "What is the name of the player from Cod?",
    "question_th": "นักเตะจาก Cod ชื่ออะไรครับ?",
    "context": "CREATE TABLE table_name_2 (name VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_36 WHERE moving_to = \"hamburger sv\"",
    "question_en": "What country is the player moving to Hamburger SV from?",
    "question_th": "ผู้เล่นจะย้ายไปฮัมบูร์ก เอสวี จากประเทศใด?",
    "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_en": "Which Driver has an Entrant of Arrows Racing Team and Rounds 1-3?",
    "question_th": "นักแข่งคนไหนที่มีผู้เข้าร่วมทีม Arrows Racing และรอบ 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_en": "Which Constructor has Rounds, All and Driver, Bruno Giacomelli?",
    "question_th": "Constructor คนไหนที่มีรอบ ทั้งหมด และไดร์เวอร์ 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_en": "What was the winning score when Damien McGrane was runner-up?",
    "question_th": "คะแนนชนะเมื่อ Damien McGrane คว้ารองแชมป์คืออะไร?",
    "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_en": "Who were the runners-up at the Alfred Dunhill Links Championship?",
    "question_th": "ใครคือรองชนะเลิศในการแข่งขัน 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_en": "Name the highest grid for Laps more than 137 and rank is less than 8",
    "question_th": "ตั้งชื่อตารางสูงสุดสำหรับรอบที่มากกว่า 137 และอันดับน้อยกว่า 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_en": "I want the total number of rank for Grid less than 20 and dick rathmann and Qual more than 130.92",
    "question_th": "ฉันต้องการจำนวนอันดับรวมของกริดน้อยกว่า 20 และดิ๊ก ราธมันน์และควอมากกว่า 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_en": "Which nation won 1 gold medal and 1 bronze, for a total of 2 medals?",
    "question_th": "ชาติใดได้ 1 เหรียญทอง 1 เหรียญทองแดง รวม 2 เหรียญ?",
    "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_en": "What is the name of the Leading scorer when the Home was the Trail blazers?",
    "question_th": "ผู้ทำประตูสูงสุดในสมัยที่เจ้าบ้านเป็นทีมเทรลเบลเซอร์ชื่ออะไร?",
    "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_en": "I want the sum of NGC number for spiral galaxy and right acension of 08h14m40.4s",
    "question_th": "ฉันต้องการผลรวมของเลข NGC สำหรับดาราจักรกังหันและค่าความเบี่ยงเบนทางขวาของ 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_en": "Tell me the right ascension for open cluster and NGC number more than 2547",
    "question_th": "บอกการขึ้นสวรรค์ที่ถูกต้องสำหรับคลัสเตอร์เปิดและหมายเลข NGC มากกว่า 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__ = \"°45′\" AND right_ascension___j2000__ = \"07h58m\"",
    "question_en": "I want the constellation for declination for °45′ and right ascension of 07h58m",
    "question_th": "ฉันต้องการกลุ่มดาวสำหรับการเบี่ยงที่°45′ และการขึ้นทางขวาที่ 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_en": "I want the NGC number for right ascension of 08h11m13.6s",
    "question_th": "ฉันต้องการหมายเลข NGC สำหรับการขึ้นที่ถูกต้องที่ 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_en": "What is the average crowd when the home team is north melbourne?",
    "question_th": "ฝูงชนโดยเฉลี่ยเมื่อเจ้าบ้านอยู่เมลเบิร์นเหนือคือเท่าไร?",
    "context": "CREATE TABLE table_name_31 (crowd INTEGER, home_team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(crowd) FROM table_name_45 WHERE venue = \"mcg\"",
    "question_en": "What is the crowd total at mcg?",
    "question_th": "จำนวนฝูงชนทั้งหมดที่ 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_en": "How many Red Breasted Nuthatch coins created before 2007 were minted, on average?",
    "question_th": "โดยเฉลี่ยแล้วเหรียญ Red Breasted Nutatch ที่สร้างขึ้นก่อนปี 2007 มีกี่เหรียญ",
    "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_en": "What year was the downy woodpecker coin created?",
    "question_th": "เหรียญนกหัวขวานขนอ่อนสร้างขึ้นในปีใด",
    "context": "CREATE TABLE table_name_46 (year INTEGER, animal VARCHAR)"
  },
  {
    "answer": "SELECT artist FROM table_name_40 WHERE year < 2010",
    "question_en": "Which artist created coins before 2010?",
    "question_th": "ศิลปินคนไหนสร้างเหรียญก่อนปี 2010",
    "context": "CREATE TABLE table_name_40 (artist VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT COUNT(game) FROM table_name_3 WHERE team = \"boston\"",
    "question_en": "What is the game number against the team Boston?",
    "question_th": "เกมกับทีมบอสตันหมายเลขอะไร?",
    "context": "CREATE TABLE table_name_3 (game VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_27 WHERE game = 23",
    "question_en": "What is the date of game 23?",
    "question_th": "เกมที่ 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_en": "What percentage of Slovenes lived in the village of Roach in 1951?",
    "question_th": "ชาวสโลวีเนียกี่เปอร์เซ็นต์ที่อาศัยอยู่ในหมู่บ้าน Roach ในปี 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_en": "Which Venue has an Away team of south melbourne?",
    "question_th": "สนามไหนมีทีมเยือนเมลเบิร์นใต้?",
    "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_en": "What did the Melbourne team score in their away game?",
    "question_th": "ทีมเมลเบิร์นทำคะแนนอะไรในเกมเยือน?",
    "context": "CREATE TABLE table_name_3 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_91 WHERE venue = \"arden street oval\"",
    "question_en": "Which Home team plays at the arden street oval Venue?",
    "question_th": "ทีมเหย้าทีมใดเล่นที่สนามอาร์เดน สตรีท โอวัล?",
    "context": "CREATE TABLE table_name_91 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_58 WHERE home_team = \"hawthorn\"",
    "question_en": "What is Home team Venue for the hawthorn team?",
    "question_th": "ทีมเหย้า สถานที่สำหรับทีมฮอว์ธอร์นคืออะไร?",
    "context": "CREATE TABLE table_name_58 (venue VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_29 WHERE venue = \"princes park\"",
    "question_en": "What Home team plays at the princes park Venue?",
    "question_th": "ทีมเหย้าทีมใดเล่นที่สนาม Princes Park?",
    "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_en": "Was the game against the Rattlers at the United Sports Training Center a home game or an away game?",
    "question_th": "เกมกับเดอะ แรทเลอร์ส ที่ยูไนเต็ด สปอร์ต เทรนนิ่ง เซ็นเตอร์ เป็นเกมเหย้าหรือเกมเยือน?",
    "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_en": "What was the opponent for the game at Multi-sport Field?",
    "question_th": "คู่ต่อสู้ในเกมที่ 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_en": "What is the result of the away game played on August 4?",
    "question_th": "เกมเยือนเล่นวันที่ 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_en": "On which field was the game played on July 12?",
    "question_th": "เกมนี้เล่นบนสนามใดในวันที่ 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_en": "At what venue did Sigurd Rushfeldt score 1 point in the 2006 FIFA World Cup Qualification competition?",
    "question_th": "Sigurd Rushfeldt ทำคะแนนได้ 1 คะแนนในการแข่งขันฟุตบอลโลกรอบคัดเลือกปี 2006 ที่สถานที่ใด",
    "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_en": "What date did Sigurd Rushfeldt score less than 2 points in the UEFA Euro 2004 qualifying competition?",
    "question_th": "ซีเกิร์ด รัชเฟลด์ทำคะแนนน้อยกว่า 2 แต้มในการแข่งขันรอบคัดเลือกยูฟ่า ยูโร 2004 วันไหน",
    "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_en": "What is the tournament on February 17, 2002?",
    "question_th": "การแข่งขันวันที่ 17 กุมภาพันธ์ 2545 คืออะไร?",
    "context": "CREATE TABLE table_name_21 (tournament VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(goals) FROM table_name_87 WHERE player = \"mitsuo kato\"",
    "question_en": "How many goals does mitsuo kato have?",
    "question_th": "มิตสึโอะ คาโตะ มีกี่ประตู?",
    "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_en": "Which engine has the entrant scuderia ferrari and is driven by Raymond Sommer?",
    "question_th": "เครื่องยนต์ใดที่มีผู้เข้าแข่งขันอย่าง Scuderia Ferrari และขับเคลื่อนโดย 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_en": "What Chassis does Reg Parnell drive?",
    "question_th": "Reg Parnell ขับแชสซีอะไร",
    "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_en": "What is Ryan McCay's speed that has a rank better than 8?",
    "question_th": "ความเร็วของ Ryan McCay ที่มีอันดับดีกว่า 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_en": "What's the name of the team that went 113.316mph?",
    "question_th": "ทีมที่วิ่งด้วยความเร็ว 113.316 ไมล์ต่อชั่วโมงชื่ออะไร",
    "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_en": "What's Matts Nilsson's team that's ranked better than 7?",
    "question_th": "ทีมของ Matts Nilsson คืออะไรที่มีอันดับดีกว่า 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_en": "What is the average drop zone time in the N drop zone for the 1st Pathfinder Prov.?",
    "question_th": "เวลาดรอปโซนเฉลี่ยในโซนดรอป N สำหรับ 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_en": "Which UK Base has an airborne unit of Pathfinders?",
    "question_th": "ฐานทัพใดในอังกฤษมีหน่วย 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_en": "What was the number of high assists for game 1?",
    "question_th": "จำนวนแอสซิสต์สูงในเกมที่ 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_en": "Tell me the chief judge which has reason for termination of retirement",
    "question_th": "บอกหัวหน้าผู้พิพากษาซึ่งมีเหตุให้พ้นจากตำแหน่งด้วย",
    "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_en": "For boozer (13) what is the high assists and high rebounds?",
    "question_th": "สำหรับ Boozer (13) แอสซิสต์สูงและรีบาวด์สูงคือเท่าไร?",
    "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_en": "What is the score for the game that is less than 4 and a high points of williams (28)?",
    "question_th": "คะแนนของเกมที่น้อยกว่า 4 และแต้มสูงของวิลเลียมส์ (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_en": "Which athlete in the 76 kg class, did not advance at the end of Round 3.",
    "question_th": "นักกีฬาคนไหนรุ่น 76 กก. ไม่ผ่านเข้ารอบ 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_en": "Who owns the horse with a post position of less than 4 with jockey todd pletcher?",
    "question_th": "ใครเป็นเจ้าของม้าที่มีตำแหน่งโพสต์น้อยกว่า 4 กับจ๊อกกี้ ทอดด์ เพลทเชอร์?",
    "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_en": "What jockey is on hard spun?",
    "question_th": "จ๊อกกี้คนไหนที่ปั่นยาก?",
    "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_en": "What horse does todd pletcher ride with odds of 14.20-1?",
    "question_th": "ทอดด์ เพลทเชอร์ ขี่ม้าตัวไหนด้วยอัตราต่อรอง 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½\"",
    "question_en": "Who the Owner that has a Lengths Behind of 5½?",
    "question_th": "ใครเป็นเจ้าของที่มีความยาวด้านหลัง5½?",
    "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_en": "What is the date of birth and age of Gabriel Quak Jun Yi with 3 caps?",
    "question_th": "กาเบรียล กวก จุน ยี่ เกิดและอายุเท่าไหร่ 3 แคป?",
    "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_en": "Which club is associated with Hafiz Abu Sujad?",
    "question_th": "สโมสรใดมีความเกี่ยวข้องกับฮาฟิซ อาบู ซูจัด?",
    "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_en": "What is the sum of a rank whose nation is West Germany and has bronze larger than 0?",
    "question_th": "ผลรวมของอันดับที่ประเทศเป็นเยอรมนีตะวันตกและมีเหรียญทองแดงมากกว่า 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_en": "What is the total of Bronze with a total smaller than 3, and a nation of Poland, and a rank larger than 4?",
    "question_th": "ทองแดงที่มีคะแนนรวมน้อยกว่า 3 และประเทศโปแลนด์และมีอันดับมากกว่า 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_en": "How much money was spent in 2Q when the total receipts were $1,117,566?",
    "question_th": "มีการใช้จ่ายเงินไปเท่าใดในไตรมาส 2 เมื่อรายรับรวมอยู่ที่ 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_en": "How much money was raised in the 2Q when the total receipts were $63,075,927?",
    "question_th": "ระดมทุนได้เท่าไรในไตรมาส 2 โดยมีรายรับรวม 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_en": "When the driver peter gethin has a grid less than 25, what is the average number of laps?",
    "question_th": "เมื่อนักแข่ง ปีเตอร์ เกธิน มีกริดน้อยกว่า 25 จำนวนรอบโดยเฉลี่ยคือเท่าใด",
    "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_en": "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?",
    "question_th": "เมื่อนักแข่ง mike hailwood มีกริดมากกว่า 12 และเวลา/เกษียณเป็น + 2 รอบ จำนวนรอบโดยเฉลี่ยคือเท่าใด",
    "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_en": "Which team was the home team when playing South Melbourne?",
    "question_th": "ทีมไหนเป็นเจ้าบ้านเมื่อเจอกับเซาธ์ เมลเบิร์น?",
    "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_en": "What did the home team when they played Richmond?",
    "question_th": "เจ้าบ้านได้อะไรเมื่อเล่นริชมอนด์?",
    "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_en": "What is the stage reached for venue edmonton green?",
    "question_th": "เวที 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_en": "What is the average round for Club team of garmisch-partenkirchen riessersee sc (germany 2)?",
    "question_th": "ค่าเฉลี่ยรอบของทีม garmisch-partenkirchen riessersee sc (เยอรมนี 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_en": "What richmond player played against st kilda?",
    "question_th": "นักเตะริชมอนด์คนไหนที่เจอกับเซนต์คิลดา?",
    "context": "CREATE TABLE table_name_15 (player VARCHAR, opponent VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_66 WHERE year = 2000",
    "question_en": "What player played in 2000?",
    "question_th": "นักเตะคนไหนเล่นในปี 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_en": "What year for geelong player john roberts?",
    "question_th": "จอห์น โรเบิร์ตส์ ผู้เล่นจีลองปีไหน?",
    "context": "CREATE TABLE table_name_77 (year VARCHAR, opponent VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT authority FROM table_name_7 WHERE roll = 40",
    "question_en": "What's the authority when the roll is 40?",
    "question_th": "อำนาจเมื่อม้วนอายุ 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_en": "What's the authority when the roll is less than 234 for the massey east area?",
    "question_th": "อำนาจเมื่อม้วนน้อยกว่า 234 สำหรับพื้นที่แมสซีตะวันออกคืออะไร?",
    "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_en": "What's the roll for summerland primary when decile is over 6?",
    "question_th": "อะไรคือสิ่งที่จะเกิดขึ้นสำหรับ Summerland Primary เมื่อ Decile เกิน 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_en": "What is the name where the delivered date is 1839/08?",
    "question_th": "วันที่จัดส่งคือ 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_en": "What is the Original U.S. air-date for the Original Canadian air-date of december 9, 2007?",
    "question_th": "วันที่ออกอากาศดั้งเดิมของสหรัฐอเมริกาสำหรับวันที่ออกอากาศดั้งเดิมของแคนาดาในวันที่ 9 ธันวาคม 2550 คืออะไร",
    "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_en": "What is the Original Canadian air-date that was directed by Michael Tolkin?",
    "question_th": "วันที่ออกอากาศดั้งเดิมของแคนาดาที่กำกับโดย 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_en": "What was the Original Canadian air-date for the episode directed by mark rydell?",
    "question_th": "วันที่ออกอากาศดั้งเดิมของแคนาดาสำหรับตอนที่กำกับโดย 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_en": "Which home team's venue is junction oval?",
    "question_th": "สนามของทีมเจ้าบ้านใดคือจังก์ชันรี?",
    "context": "CREATE TABLE table_name_71 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_56 WHERE away_team = \"melbourne\"",
    "question_en": "Which venue was melbourne the away team of?",
    "question_th": "เมลเบิร์นเป็นทีมเยือนสนามไหน?",
    "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_en": "What was the home teams score against the away team footscray?",
    "question_th": "ทีมเหย้าทำคะแนนกับฟุตสเครย์ของทีมเยือนเป็นเท่าไหร่?",
    "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_en": "What is the average long that Ramon Richardson played and an average greater than 5.5?",
    "question_th": "ระยะเวลาเฉลี่ยที่ Ramon Richardson เล่นคือเท่าใด และค่าเฉลี่ยมากกว่า 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_en": "Which has and average less than 3 and the lowest yards?",
    "question_th": "ซึ่งมีและเฉลี่ยน้อยกว่า 3 และหลาต่ำสุด?",
    "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_en": "What is the average rec that is greater than 10 and has 40 yards?",
    "question_th": "Rec เฉลี่ยที่มากกว่า 10 และมี 40 หลาเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_2 (rec INTEGER, yards VARCHAR, avg VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_name_52 WHERE game = 31",
    "question_en": "What was the high assists for game 31?",
    "question_th": "แอสซิสต์สูงในเกมที่ 31 คืออะไร?",
    "context": "CREATE TABLE table_name_52 (high_assists VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_79 WHERE game = 39",
    "question_en": "What team played in game 39?",
    "question_th": "ทีมใดเล่นในเกมที่ 39?",
    "context": "CREATE TABLE table_name_79 (team VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_name_30 WHERE game = 42",
    "question_en": "How many people attended game 42?",
    "question_th": "มีผู้เข้าร่วมเกม 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_en": "What is the highest Shooting Total with a Bronze less than 0?",
    "question_th": "คะแนนรวมการยิงสูงสุดโดยมีค่าทองแดงน้อยกว่า 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_en": "What is the lowest Silver in the Total Sport has less than 1 Gold and more than 1 Bronze?",
    "question_th": "เงินที่ต่ำที่สุดใน Total Sport คืออะไรที่มีน้อยกว่า 1 เหรียญทองและมากกว่า 1 ทองแดง?",
    "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_en": "What is the football Bronze with more than 1 Silver?",
    "question_th": "ฟุตบอลสีบรอนซ์ที่มีมากกว่า 1 เหรียญเงินคืออะไร?",
    "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_en": "With 1 Gold, more than 2 Bronze and Total greater than 1, what is the Silver?",
    "question_th": "1 เหรียญทอง มากกว่า 2 ทองแดง และคะแนนรวมมากกว่า 1 เงินคืออะไร",
    "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_en": "With more than 1 Gold and Silver and Total Sport, what is the Total?",
    "question_th": "ด้วยทองและเงินมากกว่า 1 รายการ และ Total Sport ผลรวมคืออะไร?",
    "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_en": "What year does robin buck go 44 laps?",
    "question_th": "โรบินบัควิ่งได้ 44 รอบในปีใด",
    "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_en": "How many years does Team wal-mart / tide participate?",
    "question_th": "Team wal-mart / tide เข้าร่วมกี่ปี?",
    "context": "CREATE TABLE table_name_94 (year VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_65 WHERE result = \"11–0\"",
    "question_en": "Which score has a Result of 11–0?",
    "question_th": "คะแนนใดมีผล 11–0",
    "context": "CREATE TABLE table_name_65 (score VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_23 WHERE score = \"1–1\"",
    "question_en": "Which result has a Score of 1–1?",
    "question_th": "ผลลัพธ์ใดมีคะแนน 1–1",
    "context": "CREATE TABLE table_name_23 (result VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_73 WHERE result = \"11–0\"",
    "question_en": "Which score has a Result of 11–0?",
    "question_th": "คะแนนใดมีผล 11–0",
    "context": "CREATE TABLE table_name_73 (score VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_40 WHERE record = \"11-32-11\"",
    "question_en": "What is the score of the game with an 11-32-11 record?",
    "question_th": "สกอร์เกมด้วยสถิติ 11-32-11 เป็นอย่างไรบ้าง?",
    "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_en": "What is the home team of the game where New Jersey was the visitor team and the record was 11-35-12?",
    "question_th": "เกมนี้เจ้าบ้านเป็นทีมไหนที่นิวเจอร์ซี่เป็นทีมเยือนและสถิติ 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_en": "What is the visitor team of the game with Chicago as the home team?",
    "question_th": "ทีมเยือนของเกมที่มีชิคาโก้เป็นเจ้าบ้านคือทีมไหน?",
    "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_en": "What is the score of the game on February 27 with New Jersey as the visitor team?",
    "question_th": "สกอร์เกมวันที่ 27 ก.พ. มีนิว เจอร์ซี่ย์เป็นทีมเยือนเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_25 (score VARCHAR, visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_72 WHERE date = \"february 3\"",
    "question_en": "What is the home team of the game on February 3?",
    "question_th": "เจ้าบ้านจะเป็นอย่างไรในเกมวันที่ 3 กุมภาพันธ์นี้?",
    "context": "CREATE TABLE table_name_72 (home VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_29 WHERE home = \"buffalo\"",
    "question_en": "Who is the visitor team of the game where Buffalo was the home team?",
    "question_th": "ทีมเยือนในเกมที่บัฟฟาโลเป็นเจ้าบ้านคือใคร?",
    "context": "CREATE TABLE table_name_29 (visitor VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_98 WHERE grid = 18",
    "question_en": "What driver has grid number 18?",
    "question_th": "คนขับคนไหนมีตารางหมายเลข 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_en": "What is the time or retired time for timo glock with under 70 laps and a grid number greater than 15?",
    "question_th": "เวลาใดหรือเวลาเลิกใช้สำหรับ timo glock ที่มีรอบต่ำกว่า 70 รอบและจำนวนกริดมากกว่า 15 คือเท่าไร?",
    "context": "CREATE TABLE table_name_72 (time_retired VARCHAR, driver VARCHAR, laps VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT SUM(area_in_km²) FROM table_name_68 WHERE original_name = \"kecamatan bogor timur\" AND number_of_settlements_and_villages > 6",
    "question_en": "Kecamatan Bogor Timur has more than 6 villages, what is the area in km²?",
    "question_th": "Kecamatan Bogor Timur มีหมู่บ้านมากกว่า 6 หมู่บ้าน พื้นที่มีหน่วยเป็น km² คือเท่าใด",
    "context": "CREATE TABLE table_name_68 (area_in_km² INTEGER, original_name VARCHAR, number_of_settlements_and_villages VARCHAR)"
  },
  {
    "answer": "SELECT SUM(area_in_km²) FROM table_name_78 WHERE original_name = \"kecamatan bogor tengah\" AND number_of_settlements_and_villages < 11",
    "question_en": "There are less than 11 settlements in Kecamatan Bogor Tengah, what is the area in km²?",
    "question_th": "มีการตั้งถิ่นฐานน้อยกว่า 11 แห่งใน Kecamatan Bogor Tengah พื้นที่มีหน่วยเป็น km² คือเท่าใด",
    "context": "CREATE TABLE table_name_78 (area_in_km² INTEGER, original_name VARCHAR, number_of_settlements_and_villages VARCHAR)"
  },
  {
    "answer": "SELECT AVG(gold) FROM table_name_9 WHERE nation = \"luxembourg\"",
    "question_en": "Luxembourg received how many gold medals?",
    "question_th": "ลักเซมเบิร์กได้กี่เหรียญทอง?",
    "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_en": "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?",
    "question_th": "น้ำหนักรวมของเรือเป็นเท่าใดเมื่อชนิดของเรือเป็นยานยนต์ ro-ro สกรูคู่ และเข้าประจำการคือ 11 กุมภาพันธ์ 2526?",
    "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_en": "what is the least tonnage for the ship(s) that entered service on 11 february 1983?",
    "question_th": "น้ำหนักที่น้อยที่สุดสำหรับเรือที่เข้าประจำการในวันที่ 11 กุมภาพันธ์ พ.ศ. 2526 คือเท่าใด",
    "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_en": "What's the sum of gold where silver is more than 2 and the total is 12?",
    "question_th": "ผลรวมของทองคำโดยที่เงินมากกว่า 2 และผลรวมคือ 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_en": "What's the lowest gold with a total of 4 and less than 2 silver for liechtenstein?",
    "question_th": "ทองคำต่ำสุดที่มีทั้งหมด 4 และน้อยกว่า 2 เงินสำหรับลิกเตนสไตน์คือเท่าไร?",
    "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_en": "What's the total number of gold where the total is less than 23 and the rank is over 10?",
    "question_th": "ทองรวมทั้งหมดน้อยกว่า 23 และอันดับเกิน 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_en": "What's the sum of total where the rank is over 9 and the gold is less than 1?",
    "question_th": "ผลรวมที่อันดับมากกว่า 9 และทองน้อยกว่า 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_en": "What was the attendance number for the Timberwolves game?",
    "question_th": "จำนวนผู้เข้าร่วมเกม Timberwolves คืออะไร?",
    "context": "CREATE TABLE table_name_69 (location_attendance INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(crowd) FROM table_name_91 WHERE home_team = \"richmond\"",
    "question_en": "What is the combined of Crowd when richmond played at home?",
    "question_th": "อะไรคือการรวมกันของ Crowd เมื่อริชมอนด์เล่นในบ้าน?",
    "context": "CREATE TABLE table_name_91 (crowd VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_74 WHERE result = \"3–6, 6–2, 4–6\"",
    "question_en": "What opponent has a result of 3–6, 6–2, 4–6?",
    "question_th": "คู่ต่อสู้คนใดมีผล 3–6, 6–2, 4–6?",
    "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_en": "When was the 1991 world group I with the opponent of Li Fang?",
    "question_th": "เวิลด์กรุ๊ป 1 ปี 1991 พบกับหลี่ ฟาง เมื่อไร?",
    "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_en": "On July 15, 1984 what surface was used?",
    "question_th": "วันที่ 15 กรกฎาคม พ.ศ. 2527 ใช้พื้นผิวอะไร?",
    "context": "CREATE TABLE table_name_15 (surface VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_95 WHERE opponent = \"mercedes paz\" AND result = \"4–6, 6–1, 6–3\"",
    "question_en": "For what round was the opponent mercedes paz with a result of 4–6, 6–1, 6–3?",
    "question_th": "คู่ต่อสู้คือ เมอร์เซเดส ปาซ ด้วยสกอร์ 4–6, 6–1, 6–3 ในรอบใด?",
    "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_en": "What surface was used on July 17, 1983?",
    "question_th": "พื้นผิวใดที่ใช้ในวันที่ 17 กรกฎาคม พ.ศ. 2526",
    "context": "CREATE TABLE table_name_30 (surface VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_58 WHERE date = \"october 8, 1985\"",
    "question_en": "What was the result on October 8, 1985?",
    "question_th": "ผลลัพธ์เมื่อวันที่ 8 ตุลาคม พ.ศ. 2528 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_58 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(pick__number) FROM table_name_28 WHERE pl_gp > 55",
    "question_en": "Name the highest pick number for PI GP more than 55",
    "question_th": "ตั้งชื่อหมายเลขเลือกสูงสุดสำหรับ PI GP มากกว่า 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_en": "Name the least RD number that has PI GP more than 0 and pick # more than 51",
    "question_th": "ตั้งชื่อหมายเลข RD น้อยที่สุดที่มี PI GP มากกว่า 0 และเลือก # มากกว่า 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_en": "What day did Footscray play as the away team?",
    "question_th": "ฟุตสเครย์ลงเล่นเป็นทีมเยือนวันไหน?",
    "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_en": "What was Hawthorn's away teams opponents score?",
    "question_th": "คู่แข่งทีมเยือนของฮอว์ธอร์นทำคะแนนได้เท่าไร?",
    "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_en": "What was the attendance of april 17?",
    "question_th": "วันที่ 17 เมษายนมีผู้เข้าร่วมอะไรบ้าง?",
    "context": "CREATE TABLE table_name_83 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_98 WHERE record = \"21-34\"",
    "question_en": "What was the loss of the Mariners game when they had a record of 21-34?",
    "question_th": "อะไรคือความพ่ายแพ้ของเกมกะลาสีเรือเมื่อพวกเขามีสถิติ 21-34?",
    "context": "CREATE TABLE table_name_98 (loss VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_30 WHERE record = \"33-45\"",
    "question_en": "Who did the Mariners play when they had a record of 33-45?",
    "question_th": "กะลาสีเรือเล่นใครเมื่อมีสถิติ 33-45?",
    "context": "CREATE TABLE table_name_30 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_96 WHERE record = \"22-35\"",
    "question_en": "What was the loss of the Mariners game when they had a record of 22-35?",
    "question_th": "อะไรคือความพ่ายแพ้ของเกมกะลาสีเรือเมื่อพวกเขามีสถิติ 22-35?",
    "context": "CREATE TABLE table_name_96 (loss VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_65 WHERE attendance = \"35,614\"",
    "question_en": "What was the record for the game attended by 35,614 spectators?",
    "question_th": "อะไรคือสถิติของเกมนี้ที่มีผู้ชมเข้าร่วม 35,614 คน?",
    "context": "CREATE TABLE table_name_65 (record VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_5 WHERE date = \"april 8\"",
    "question_en": "What is the record for April 8?",
    "question_th": "บันทึกประจำวันที่ 8 เมษายน คืออะไร?",
    "context": "CREATE TABLE table_name_5 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_53 WHERE record = \"1-1\"",
    "question_en": "What was the attendance for the game that has a record of 1-1?",
    "question_th": "ผู้เข้าชมเกมที่มีสถิติ 1-1 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_53 (attendance VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_79 WHERE attendance = \"35,305\"",
    "question_en": "What is the record for the game with an attendance of 35,305?",
    "question_th": "สถิติของเกมนี้ด้วยผู้เข้าชม 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_en": "what is the grid when the driver is louis rosier and the laps is more than 78?",
    "question_th": "เส้นกริดเป็นอย่างไรเมื่อคนขับหลุยส์ โรเซียร์และรอบมากกว่า 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_en": "what is the time/retired when the driver is toulo de graffenried?",
    "question_th": "เวลาใด / เกษียณอายุเมื่อคนขับ 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_en": "what is the laps when the driver is tony rolt and the grid is less than 10?",
    "question_th": "รอบจะเป็นอย่างไรเมื่อคนขับเป็นโทนี่ โรต์ และกริดน้อยกว่า 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_en": "what is the time/retired when the constructor is maserati and the laps is 90?",
    "question_th": "เวลาใด/เลิกใช้แล้วเมื่อคอนสตรัคเตอร์คือมาเซราติและรอบคือ 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_en": "What is the average Attendance at Venue A on 16 October 2004?",
    "question_th": "ผู้เข้าร่วมโดยเฉลี่ยที่สถานที่ A ในวันที่ 16 ตุลาคม พ.ศ. 2547 เป็นเท่าใด",
    "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_en": "What is the lowest Attendance when Middlesbrough played at Venue A?",
    "question_th": "ผู้เข้าชมต่ำที่สุดเมื่อมิดเดิลสโบรห์เล่นที่สนาม 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_en": "Who was the sponsor for the bill introduced February 28, 2005 with cosponsors less than 200?",
    "question_th": "ใครคือผู้สนับสนุนร่างกฎหมายที่ประกาศใช้เมื่อวันที่ 28 กุมภาพันธ์ พ.ศ. 2548 โดยมีผู้ร่วมสนับสนุนน้อยกว่า 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_en": "What year was Herself nominated at the MTV Movie Awards?",
    "question_th": "ตัวเธอเองได้รับการเสนอชื่อเข้าชิงรางวัล 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_en": "What is the average amount of spectators when Essendon played as the home team?",
    "question_th": "จำนวนผู้ชมโดยเฉลี่ยเมื่อเอสเซนดอนเล่นเป็นเจ้าบ้านคือเท่าใด?",
    "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_en": "What did the away team score at MCG?",
    "question_th": "ทีมเยือนทำคะแนนที่ MCG ได้เท่าไหร่?",
    "context": "CREATE TABLE table_name_96 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_28 WHERE away_team = \"geelong\"",
    "question_en": "Where was the game when Geelong was the away team?",
    "question_th": "เกมไหนที่จีลองเป็นทีมเยือน?",
    "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_en": "What team was the away team at Arden Street Oval?",
    "question_th": "ทีมเยือนอาร์เดน สตรีท โอวัลคือทีมใด?",
    "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_en": "What in Xenia's Diameter in km, with a latitude of 14 and a longitude of 249.4?",
    "question_th": "เส้นผ่านศูนย์กลางของเซเนียมีหน่วยเป็นกม. โดยมีละติจูด 14 และลองจิจูด 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_en": "What is the latitude for a crater with a diameter of 12.8 km and a longitude of 208?",
    "question_th": "ละติจูดของปล่องภูเขาไฟที่มีเส้นผ่านศูนย์กลาง 12.8 กม. และลองจิจูด 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_en": "Who was the Runner(s)-up in the race with a winning score of 67-66-65-69=267?",
    "question_th": "ใครคือรองชนะเลิศในการแข่งขันด้วยคะแนนชนะ 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_en": "When was the Masters Tournament?",
    "question_th": "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_en": "What is the margin of victory in the race where Justin Rose was the runner-up?",
    "question_th": "อะไรคือส่วนต่างของชัยชนะในการแข่งขันที่จัสติน โรส เป็นรองแชมป์?",
    "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_en": "What tournament took place on 7 Aug 2011?",
    "question_th": "การแข่งขันใดเกิดขึ้นในวันที่ 7 สิงหาคม 2554?",
    "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_en": "For the team that had 4:05.096, what was their day 2?",
    "question_th": "สำหรับทีมที่ทำเวลาได้ 4:05.096 วันที่ 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_en": "Which team had 3:18.513 on day 1?",
    "question_th": "ทีมไหนทำเวลาได้ 3:18.513 ในวันที่ 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_en": "For the team with a class of gt2 and 3:59.820 on day 2, what was the behind?",
    "question_th": "สำหรับทีมที่มีคลาส gt2 และ 3:59.820 ในวันที่ 2 เบื้องหลังคืออะไร?",
    "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_en": "Which team was 3:47.761 on day 2?",
    "question_th": "ทีมไหนทำเวลาได้ 3:47.761 ในวันที่ 2?",
    "context": "CREATE TABLE table_name_78 (team VARCHAR, day_2 VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_name_18 WHERE behind = \"+44.780\"",
    "question_en": "What is the class of the team that has a behind of +44.780?",
    "question_th": "ทีมระดับไหนที่ตามหลัง +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_en": "For the team with 3:42.162 on day 2, what was the behind?",
    "question_th": "สำหรับทีมที่ทำเวลา 3:42.162 วันที่ 2 เบื้องหลังคืออะไร?",
    "context": "CREATE TABLE table_name_72 (behind VARCHAR, day_2 VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_42 WHERE 1996 = \"qf\"",
    "question_en": "Which one of the tournaments had a QF in 1996?",
    "question_th": "ทัวร์นาเมนต์ใดมี QF ในปี 1996?",
    "context": "CREATE TABLE table_name_42 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 1996 FROM table_name_92 WHERE tournament = \"wimbledon\"",
    "question_en": "What is the value for the Wimbledon tournament in 1996?",
    "question_th": "มูลค่าของการแข่งขันวิมเบิลดันในปี 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_en": "What year is center Ann Wauters?",
    "question_th": "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_en": "What is the earliest year that includes a Seattle Storm guard?",
    "question_th": "ปีแรกสุดที่มีเจ้าหน้าที่รักษาความปลอดภัยของ Seattle Storm คือปีใด",
    "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_en": "Regarding players before 2000, what is the USC player's position?",
    "question_th": "ส่วนนักเตะก่อนปี 2000 นักเตะ USC อยู่ตำแหน่งไหน?",
    "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_en": "What is the earliest year a Baylor player made the list?",
    "question_th": "ปีแรกสุดที่ผู้เล่นของ Baylor ทำรายชื่อคือปีใด",
    "context": "CREATE TABLE table_name_79 (year INTEGER, college_country VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_93 WHERE player = \"sue bird\"",
    "question_en": "What is Sue Bird's position?",
    "question_th": "ซูเบิร์ดมีจุดยืนอย่างไร?",
    "context": "CREATE TABLE table_name_93 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT builder FROM table_name_52 WHERE class = \"terrier\"",
    "question_en": "Which Builder has a Class of Terrier?",
    "question_th": "ช่างก่อสร้างคนไหนที่มีคลาสเทอร์เรีย?",
    "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_en": "who is the constructor when the laps is less than 68, the grid is more than 20 and the driver is thierry boutsen?",
    "question_th": "ใครคือผู้สร้างเมื่อรอบน้อยกว่า 68, ตารางมากกว่า 20 และนักแข่งกำลังแข่งขัน?",
    "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_en": "what is the laps when the time/retired is turbo and the grid is less than 14?",
    "question_th": "รอบจะเป็นอย่างไรเมื่อเวลา/เลิกใช้งานเป็นเทอร์โบและกริดน้อยกว่า 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_en": "what is the time/retired when the laps is less than 4?",
    "question_th": "เวลา/เกษียณเมื่อรอบน้อยกว่า 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_en": "Name the most goals for total club and apps less than 120",
    "question_th": "ตั้งชื่อเป้าหมายสูงสุดสำหรับสโมสรและแอปทั้งหมดน้อยกว่า 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_en": "How many goals are associated with 75 games?",
    "question_th": "มีกี่ประตูที่เกี่ยวข้องกับ 75 เกม?",
    "context": "CREATE TABLE table_name_51 (goals INTEGER, games VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_75 WHERE years_for_rockets = \"2004-05\"",
    "question_en": "What is the position for the Rockets years of 2004-05?",
    "question_th": "ร็อคเก็ตส์ดำรงตำแหน่งอะไรในปี 2547-2548?",
    "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_en": "What is the average number of years for the Houston Rockets 2004-05?",
    "question_th": "จำนวนปีเฉลี่ยของฮุสตัน ร็อคเก็ตส์ 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_en": "For the years 1992-93, what position did he play for the Houston Rockets?",
    "question_th": "ในปี 1992-93 เขาเล่นตำแหน่งอะไรให้กับทีมฮุสตัน ร็อคเก็ตส์?",
    "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_en": "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?",
    "question_th": "เขาเล่นในตำแหน่งกองหน้าทั้งหมดกี่ปี และเขาเล่นในโรงเรียน/สโมสร/ทีม/ประเทศใดในรัฐออริกอนเป็นเวลาเท่าใด",
    "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_en": "How many wins for bruce fleisher with over 31 events?",
    "question_th": "บรูซ เฟลเชอร์ ชนะมากกว่า 31 รายการได้กี่ครั้ง?",
    "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_en": "What is the average rank for players with under 26 events and less than 2 wins?",
    "question_th": "อันดับเฉลี่ยสำหรับผู้เล่นที่อายุต่ำกว่า 26 รายการและชนะน้อยกว่า 2 ครั้งคือเท่าไร?",
    "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_en": "What is the high earnings for players with 34 events and over 2 wins?",
    "question_th": "รายได้ที่สูงสำหรับผู้เล่นที่มี 34 กิจกรรมและชัยชนะมากกว่า 2 ครั้งคืออะไร?",
    "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_en": "Which tournament had a 2R categorization in 2009 and SF in 2010?",
    "question_th": "ทัวร์นาเมนต์ใดมีการจัดประเภท 2R ในปี 2009 และ SF ในปี 2010",
    "context": "CREATE TABLE table_name_83 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2009 FROM table_name_14 WHERE 2008 = \"2r\" AND 2011 = \"2r\"",
    "question_en": "What is the categorization in 2009 when it was 2R in 2008 and 2011?",
    "question_th": "การจัดหมวดหมู่ในปี 2552 เมื่อเป็น 2R ในปี 2551 และ 2554 คืออะไร?",
    "context": "CREATE TABLE table_name_14 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2012 FROM table_name_13 WHERE 2008 = \"a\" AND 2011 = \"1r\"",
    "question_en": "What is the categorization in 2012 when it was A in 2008 and 1R in 2011?",
    "question_th": "การจัดหมวดหมู่ในปี 2555 เมื่อเป็น A ในปี 2551 และ 1R ในปี 2554 คืออะไร?",
    "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_en": "What is the categorization in 2010 when it was A in 2008 and 20011 while being QF in 2012?",
    "question_th": "การจัดหมวดหมู่ในปี 2010 เป็น A ในปี 2008 และ 20011 และ QF ในปี 2012 คืออะไร?",
    "context": "CREATE TABLE table_name_10 (Id VARCHAR)"
  },
  {
    "answer": "SELECT away_team AS score FROM table_name_28 WHERE home_team = \"richmond\"",
    "question_en": "What was the score against home team, Richmond?",
    "question_th": "เจ้าบ้านได้สกอร์เท่าไหร่ ริชมอนด์?",
    "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_en": "What is Fitzroy's smallest crowd size?",
    "question_th": "ขนาดฝูงชนที่เล็กที่สุดของ Fitzroy คือเท่าใด",
    "context": "CREATE TABLE table_name_3 (crowd INTEGER, home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_19 WHERE opponent = \"naomi cavaday\"",
    "question_en": "When was naomi cavaday the opponent?",
    "question_th": "นาโอมิ คาวาเดย์เป็นคู่ต่อสู้เมื่อใด",
    "context": "CREATE TABLE table_name_19 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_97 WHERE opponent = \"andrea gámiz\"",
    "question_en": "When was andrea gámiz the opponent?",
    "question_th": "แอนเดรีย กามิซ เป็นคู่แข่งเมื่อใด?",
    "context": "CREATE TABLE table_name_97 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_94 WHERE score = \"6–4, 6–2\" AND surface = \"clay\"",
    "question_en": "Who is the opponent when the score was 6–4, 6–2 and the surface was clay?",
    "question_th": "คู่ต่อสู้คือใครเมื่อสกอร์เป็น 6–4, 6–2 และพื้นผิวเป็นดินเหนียว?",
    "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_en": "What was the smallest crowd at a home game for essendon?",
    "question_th": "ฝูงชนที่น้อยที่สุดในเกมเหย้าของเอสเซนดอนคือกลุ่มใด?",
    "context": "CREATE TABLE table_name_97 (crowd INTEGER, home_team VARCHAR)"
  },
  {
    "answer": "SELECT time_retired FROM table_name_70 WHERE driver = \"riccardo patrese\"",
    "question_en": "Tell me the time/retired for riccardo patrese",
    "question_th": "บอกเวลา/เกษียณสำหรับ 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_en": "I want the time/retired for grid of 24",
    "question_th": "ฉันต้องการเวลา/เกษียณสำหรับตารางที่ 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_en": "I want the driver for ferrari who made Laps less than 26 and grids more than 9",
    "question_th": "ฉันต้องการคนขับสำหรับเฟอร์รารีที่ทำรอบน้อยกว่า 26 และกริดมากกว่า 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_en": "Tell me the total number of grid for laps of 52",
    "question_th": "บอกจำนวนตารางทั้งหมดสำหรับรอบ 52 หน่อยสิ",
    "context": "CREATE TABLE table_name_60 (grid VARCHAR, laps VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_48 WHERE date = \"january 10\"",
    "question_en": "What's the record for january 10?",
    "question_th": "บันทึกของวันที่ 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_en": "What's the score on january 5 with a hasek decision?",
    "question_th": "วันที่ 5 มกราคม กับการตัดสินใจ hasek เป็นเท่าไหร่?",
    "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_en": "What Club team has an average of 8, plays kaj linna, and has an overall larger than 131?",
    "question_th": "ทีมสโมสรใดมีค่าเฉลี่ย 8 คน รับบทเป็น คาจ ลินนา และมีจำนวนโดยรวมมากกว่า 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_en": "What round does Bryan Berard do?",
    "question_th": "Bryan Berard ทำรอบไหน?",
    "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_en": "Tell me the average gross tonnage for april 1919 entered service",
    "question_th": "บอกน้ำหนักรวมเฉลี่ยของเดือนเมษายน พ.ศ. 2462 ที่เข้าประจำการ",
    "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_en": "I want the total number of gross tonnage when entered service was 1903",
    "question_th": "ฉันต้องการจำนวนตันรวมเมื่อเข้าประจำการคือ 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_en": "what is the rank when the player is henry shefflin and the matches is higher than 4?",
    "question_th": "นักเตะคือเฮนรี่ เชฟฟลิน และแมตช์สูงกว่า 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_en": "what is the rank when the total is 39 in the county of dublin and the matches is less than 4?",
    "question_th": "อันดับที่เท่าไหร่เมื่อผลรวมเป็น 39 ในเขตดับลินและการแข่งขันน้อยกว่า 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_en": "Who was the opponent on November 12, 1972?",
    "question_th": "คู่ต่อสู้เมื่อวันที่ 12 พฤศจิกายน พ.ศ. 2515 คือใคร?",
    "context": "CREATE TABLE table_name_19 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT builder’s_model FROM table_name_83 WHERE total_produced > 40 AND build_date = \"1966\"",
    "question_en": "Who built the train in 1966 with over 40 produced?",
    "question_th": "ใครเป็นคนสร้างรถไฟขบวนนี้ในปี พ.ศ. 2509 โดยผลิตได้มากกว่า 40 ขบวน?",
    "context": "CREATE TABLE table_name_83 (builder’s_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_en": "What is the PRR class of the freight train built in 1967 with a b-b wheel arrangement?",
    "question_th": "รถไฟบรรทุกสินค้าประเภท PRR ที่สร้างขึ้นในปี 1967 โดยมีการจัดเรียงล้อ bb คืออะไร",
    "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_en": "What PRR class has a Wheel arrangement of a1a-a1a?",
    "question_th": "คลาส PRR ใดที่มีการจัดเรียงล้อเป็น 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_en": "Which Zone is the lowest when Managed By Southern and has Platforms under 2?",
    "question_th": "โซนใดต่ำที่สุดเมื่อจัดการโดย Southern และมีชานชาลาต่ำกว่า 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_en": "What would be the highest Platforms for the Centrale Tram Stop Stations?",
    "question_th": "ชานชาลาที่สูงที่สุดสำหรับสถานีหยุดรถราง Centrale คืออะไร?",
    "context": "CREATE TABLE table_name_15 (platforms INTEGER, stations VARCHAR)"
  },
  {
    "answer": "SELECT SUM(grid) FROM table_name_9 WHERE laps > 61",
    "question_en": "How many grids had more than 61 laps?",
    "question_th": "มีกี่กริดที่มีมากกว่า 61 รอบ?",
    "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_en": "When parnell dickinson was the player and the rounds were under 7, what's the highest pick?",
    "question_th": "เมื่อพาร์เนล ดิกคินสันเป็นผู้เล่นและรอบนั้นต่ำกว่า 7 คน ตัวเลือกสูงสุดคือตัวใด",
    "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_en": "When the school picking is utah state for the position of linebacker, what's the sum of those rounds?",
    "question_th": "เมื่อการเลือกโรงเรียนเป็นรัฐยูทาห์สำหรับตำแหน่งไลน์แบ็คเกอร์ ผลรวมของรอบเหล่านั้นจะเป็นเท่าใด",
    "context": "CREATE TABLE table_name_51 (round INTEGER, position VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT laps FROM table_name_38 WHERE grid < 2",
    "question_en": "what is the laps when the grid is less than 2?",
    "question_th": "รอบเมื่อกริดน้อยกว่า 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_en": "who is the constructor when the grid is more than 23 and the driver is piercarlo ghinzani?",
    "question_th": "ใครคือผู้สร้างเมื่อกริดมากกว่า 23 และคนขับคือ ปิแอร์คาร์โล กินซานี?",
    "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_en": "When is the latest year the venue is in gothenburg, sweden?",
    "question_th": "สถานที่จัดงานในเมืองโกเธนเบิร์ก ประเทศสวีเดน ปีล่าสุดคือเมื่อไหร่?",
    "context": "CREATE TABLE table_name_36 (year INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_name_69 WHERE venue = \"gothenburg, sweden\"",
    "question_en": "When is the earliest year the venue is in gothenburg, sweden?",
    "question_th": "สถานที่จัดงานในเมืองโกเธนเบิร์ก ประเทศสวีเดน ปีแรกคือเมื่อไหร่?",
    "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_en": "What is the result of the european indoor championships after 1974?",
    "question_th": "อะไรคือผลลัพธ์ของการแข่งขันชิงแชมป์ในร่มยุโรปหลังปี 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_en": "In Western Oval, what was the away team score?",
    "question_th": "ในเวสเทิร์นโอวัล สกอร์ทีมเยือนเท่าไหร่?",
    "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_en": "What is the place number for adrian vasile with less than 127.74 points?",
    "question_th": "อาเดรียน วาซิเล น้อยกว่า 127.74 แต้ม เบอร์ไหน?",
    "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_en": "What is the highest SP+FS that has 131.02 Points, and a Rank larger than 15?",
    "question_th": "SP+FS สูงสุดที่มี 131.02 คะแนน และอันดับมากกว่า 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_en": "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?",
    "question_th": "คะแนนชุดราตรีสูงสุดของผู้เข้าแข่งขันจากเทนเนสซีที่มีคะแนนสัมภาษณ์มากกว่า 9.36 และค่าเฉลี่ยมากกว่า 9.75 คือเท่าใด",
    "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_en": "What is the average of the contestant with a swimsuit less than 9.32?",
    "question_th": "ผู้เข้าแข่งขันที่มีชุดว่ายน้ำน้อยกว่า 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_en": "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?",
    "question_th": "คะแนนชุดว่ายน้ำสูงสุดของผู้เข้าแข่งขันด้วยคะแนนสัมภาษณ์สูงกว่า 9.55 และชุดราตรี 9.75 และค่าเฉลี่ยสูงกว่า 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_en": "What is the country of the contestant with a swimsuit of 9.46?",
    "question_th": "ผู้เข้าแข่งขันสวมชุดว่ายน้ำ 9.46 อยู่ประเทศอะไร?",
    "context": "CREATE TABLE table_name_19 (country VARCHAR, swimsuit VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_76 WHERE goal = 24",
    "question_en": "On what date did Goal 24 take place?",
    "question_th": "Goal 24 จัดขึ้นวันไหน?",
    "context": "CREATE TABLE table_name_76 (date VARCHAR, goal VARCHAR)"
  },
  {
    "answer": "SELECT team_2 FROM table_name_60 WHERE team_1 = \"valletta\"",
    "question_en": "What is the team 2 for team 1 of Valletta?",
    "question_th": "ทีม 2 สำหรับทีม 1 ของวัลเลตตาคืออะไร?",
    "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_en": "Who played defensive when the rookie Craig Point was playing during week 6?",
    "question_th": "ใครเล่นแนวรับเมื่อมือใหม่ Craig Point เล่นในช่วงสัปดาห์ที่ 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_en": "What was the first week that had a transition with Pat Mccready?",
    "question_th": "สัปดาห์แรกที่มีการเปลี่ยนแปลงกับ 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_en": "Who was the rookie who played when Matt Vinc was defensive and Pat Maddalena was offensive?",
    "question_th": "ใครคือมือใหม่ที่เล่นเมื่อ Matt Vinc เป็นฝ่ายรับและ Pat Maddalena เป็นฝ่ายรุก?",
    "context": "CREATE TABLE table_name_6 (rookie VARCHAR, defensive VARCHAR, offensive VARCHAR)"
  },
  {
    "answer": "SELECT overall FROM table_name_16 WHERE transition = \"josh sims\"",
    "question_en": "Who played as overall when Josh Sims was transition?",
    "question_th": "ใครเล่นโดยรวมเมื่อ Josh Sims อยู่ในช่วงเปลี่ยนผ่าน?",
    "context": "CREATE TABLE table_name_16 (overall VARCHAR, transition VARCHAR)"
  },
  {
    "answer": "SELECT SUM(crowd) FROM table_name_98 WHERE venue = \"glenferrie oval\"",
    "question_en": "How large was the crowd at Glenferrie Oval?",
    "question_th": "Glenferrie Oval มีฝูงชนมากขนาดไหน?",
    "context": "CREATE TABLE table_name_98 (crowd INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT actor FROM table_name_62 WHERE character = \"ariadne oliver\"",
    "question_en": "who is the actor of the character ariadne oliver?",
    "question_th": "ใครคือนักแสดงของตัวละคร 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_en": "What is the largest grid with a Driver of ralph firman, and a Lap smaller than 18?",
    "question_th": "ตารางที่ใหญ่ที่สุดที่มีไดรเวอร์ของ Ralph Firman และ Lap เล็กกว่า 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äikkönen\"",
    "question_en": "What time/retired has a Grid larger than 3, and a Driver of kimi räikkönen?",
    "question_th": "เวลาใด/เกษียณอายุมีกริดมากกว่า 3 และไดรเวอร์ของ kimi räikkönen?",
    "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_en": "What is the score on December 31?",
    "question_th": "คะแนนวันที่ 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_en": "What's the lowest team 1 number that had asolo fonte (veneto b) as the Agg.?",
    "question_th": "หมายเลข 1 ของทีมต่ำสุดที่มี asolo Fonte (veneto b) เป็น 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_en": "What is the grid total for kazuyoshi hoshino with under 71 laps?",
    "question_th": "ผลรวมกริดของคาซูโยชิ โฮชิโนะที่ทำได้ต่ำกว่า 71 รอบเป็นเท่าใด",
    "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_en": "What driver has grid 2 and over 72 laps?",
    "question_th": "นักแข่งคนไหนที่มีกริด 2 และมากกว่า 72 รอบ?",
    "context": "CREATE TABLE table_name_35 (driver VARCHAR, laps VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT time_retired FROM table_name_88 WHERE grid = 23",
    "question_en": "What is the time/retired for grid 23?",
    "question_th": "เวลา/เกษียณสำหรับกริด 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_en": "What is the average of the top-25 of those with less than 35 events in the Open Championship?",
    "question_th": "ค่าเฉลี่ยของผู้เข้า 25 อันดับแรกที่มีกิจกรรมน้อยกว่า 35 รายการใน 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_en": "What is the total number of events the Open Championship has with less than 0 cuts?",
    "question_th": "จำนวนกิจกรรมทั้งหมดที่ Open Championship มีการตัดน้อยกว่า 0 ครั้งคือเท่าใด",
    "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_en": "What is the total number of events with a top-25 less than 0?",
    "question_th": "จำนวนกิจกรรมทั้งหมดที่มี 25 อันดับแรกน้อยกว่า 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_en": "What is the total number of top-25 with a top-10 bigger than 2 and less than 29 cuts?",
    "question_th": "จำนวนรวมของ 25 อันดับแรกที่มี 10 อันดับแรกมากกว่า 2 และน้อยกว่า 29 ครั้งคือเท่าใด",
    "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_en": "What is the lowest number of events the Open Championship has with a less than 0 top-10?",
    "question_th": "จำนวนเหตุการณ์ต่ำสุดที่ Open Championship มีน้อยกว่า 0 อันดับแรกคือเท่าใด",
    "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_en": "What is the score for the away team when they played Hawthorn?",
    "question_th": "ทีมเยือนได้สกอร์เท่าไหร่เมื่อเจอฮอว์ธอร์น?",
    "context": "CREATE TABLE table_name_46 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_51 WHERE score = \"30-44\"",
    "question_en": "Which result has a Score of 30-44?",
    "question_th": "ผลลัพธ์ใดมีคะแนน 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_en": "Which venue has h.paul 8/9 goals?",
    "question_th": "สนามไหนมีสกอร์ 8/9 ของ ฮ.พอล?",
    "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_en": "What is the score at valley parade on 10/6/01?",
    "question_th": "คะแนนขบวนพาเหรดหุบเขาวันที่ 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_en": "Which competition has a Date of 16/4/01?",
    "question_th": "การแข่งขันรายการใดมีวันที่ 16/4/01?",
    "context": "CREATE TABLE table_name_31 (competition VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT occupation FROM table_name_11 WHERE riding = \"labrador\"",
    "question_en": "What is the occupation of the candidate that has a riding of labrador?",
    "question_th": "ผู้สมัครที่ขี่ลาบราดอร์มีอาชีพอะไร?",
    "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_en": "What is the average sinclair coefficient with a Sinclair Total of 477.2772023, and a Weight Class (kg) larger than 105?",
    "question_th": "ค่าสัมประสิทธิ์ซินแคลร์เฉลี่ยที่มีผลรวมซินแคลร์เท่ากับ 477.2772023 และระดับน้ำหนัก (กก.) มากกว่า 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_en": "Name the least attendance for may 6",
    "question_th": "รายชื่อผู้เข้าร่วมน้อยที่สุดในวันที่ 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_en": "Which ESPN international sports owner speaks English?",
    "question_th": "เจ้าของกีฬานานาชาติ ESPN คนใดที่พูดภาษาอังกฤษได้",
    "context": "CREATE TABLE table_name_26 (owner VARCHAR, language VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_56 WHERE group = \"animated\"",
    "question_en": "Which type is filed under the Group Animated?",
    "question_th": "ประเภทใดจัดอยู่ใน 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–1\"",
    "question_en": "Which Date has an Opponent of newcastle united, and a Result of 2–1?",
    "question_th": "วันใดที่มีคู่ต่อสู้ของนิวคาสเซิ่ลยูไนเต็ดและผลการแข่งขัน 2–1",
    "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_en": "Which Date has an Opponent of manchester united, and a Venue A?",
    "question_th": "วันที่ใดมีฝ่ายตรงข้ามของแมนเชสเตอร์ยูไนเต็ดและสถานที่ 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_en": "In the game where Collingwood is the home team what is the score of the away team?",
    "question_th": "ในเกมที่คอลลิงวูดเป็นเจ้าบ้านสกอร์ของทีมเยือนเท่าไหร่?",
    "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_en": "What is the home teamscore for Richmond?",
    "question_th": "คะแนนทีมเหย้าของริชมอนด์เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_11 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT contestant FROM table_name_10 WHERE start_bmi = 42.2",
    "question_en": "What contestant had a starting BMI of 42.2?",
    "question_th": "ผู้เข้าแข่งขันคนใดมีค่าดัชนีมวลกายเริ่มต้นที่ 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_en": "What is the recent BMI on season 8 for the person who's BMI started under 46.3?",
    "question_th": "ค่าดัชนีมวลกายล่าสุดในฤดูกาลที่ 8 สำหรับผู้ที่มีค่าดัชนีมวลกายเริ่มต้นต่ำกว่า 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_en": "Which college has a pick below 6 for the PBA team the Shell Turbo Chargers?",
    "question_th": "วิทยาลัยใดมีตัวเลือกต่ำกว่า 6 สำหรับทีม PBA อย่าง 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_en": "What's the crowd population of the home team located in Richmond?",
    "question_th": "จำนวนฝูงชนของทีมเหย้าในริชมอนด์คือเท่าไร?",
    "context": "CREATE TABLE table_name_5 (crowd INTEGER, home_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_24 WHERE home_team = \"footscray\"",
    "question_en": "What is the visiting team that has a home team related to footscray?",
    "question_th": "ทีมเยือนที่มีเจ้าบ้านเกี่ยวข้องกับฟุตสเครย์คือทีมไหน?",
    "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_en": "Which Home team has an Away team of fitzroy?",
    "question_th": "เจ้าบ้านทีมไหนมีทีมเยือนฟิตซ์รอย?",
    "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_en": "What did the home team score when the away team was South Melbourne?",
    "question_th": "เจ้าบ้านได้คะแนนเท่าไหร่เมื่อทีมเยือนเป็นเซาท์เมลเบิร์น?",
    "context": "CREATE TABLE table_name_31 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_46 WHERE home_team = \"richmond\"",
    "question_en": "What venue is the home field of Richmond?",
    "question_th": "สนามเหย้าของริชมอนด์คือสนามใด?",
    "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_en": "What was the score of the away team in the match at Princes Park?",
    "question_th": "ทีมเยือนในแมตช์ที่ปริ้นเซส ปาร์ค ทำได้สกอร์เท่าไหร่?",
    "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_en": "What was the score of the home team in the match at Western Oval?",
    "question_th": "เจ้าบ้านสกอร์เท่าไหร่ในนัดที่เวสเทิร์นโอวัล?",
    "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_en": "Who had an Iflop of 2.5%?",
    "question_th": "ใครมี Iflop ที่ 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_en": "When BVA was 3%, what was the Ipsos?",
    "question_th": "เมื่อ BVA อยู่ที่ 3% 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_en": "Who had an Ipsos of 27%?",
    "question_th": "ใครมี Ipsos 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_en": "What was the TNS-Sofres when the Iflop was 5%?",
    "question_th": "TNS-Sofres คืออะไรเมื่อ Iflop อยู่ที่ 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_en": "Who had 0.00% in 2004?",
    "question_th": "ใครมี 0.00% ในปี 2547",
    "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_en": "What's the TNS-Sofres when Ipsos was 27%?",
    "question_th": "TNS-Sofres คืออะไรเมื่อ Ipsos อยู่ที่ 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_en": "In the match where fitzroy was the away team, where was the venue?",
    "question_th": "แมตช์ที่ฟิตซ์รอยเป็นทีมเยือน สนามอยู่ที่ไหน?",
    "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_en": "Which Stage (Winner) has a Vladimir Karpets General classification and a Team classification of relax-gam, and a Points classification of Denis Menchov?",
    "question_th": "สเตจใด (ผู้ชนะ) มีประเภท Vladimir Karpets General และประเภททีมเป็น Relax-gam และประเภทคะแนนของ 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_en": "Which Team classification has a General classification of Vladimir Karpets and a Mountains classification of No Award?",
    "question_th": "การจัดประเภททีมใดมีประเภททั่วไปของ Vladimir Karpets และประเภท Mountains ที่ไม่มีรางวัล",
    "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_en": "What Sprints classification has the Points classification, Mark Cavendish and Team classification, Caisse D'epargne?",
    "question_th": "การจัดประเภท Sprints ใดที่มีการจัดประเภทคะแนน, Mark Cavendish และการจัดประเภททีม, 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_en": "What is the total Until when the Titles was 5?",
    "question_th": "ยอดรวมจนถึงเมื่อชื่อเป็น 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_en": "When Team 1 is Aalborg BK, what is the 1st Leg?",
    "question_th": "เมื่อทีม 1 คือ Aalborg BK เลกที่ 1 คืออะไร?",
    "context": "CREATE TABLE table_name_53 (team_1 VARCHAR)"
  },
  {
    "answer": "SELECT agg FROM table_name_47 WHERE team_2 = \"partizan\"",
    "question_en": "When Partizan is Team 2, what is the Agg?",
    "question_th": "เมื่อ Partizan เป็นทีมที่ 2 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_en": "When Aalborg BK is Team 1, what is the 1st leg?",
    "question_th": "เมื่อ Aalborg BK เป็นทีม 1 เลกแรกจะเป็นเท่าไหร่?",
    "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_en": "What is the story timeline that was published first prior to 1984?",
    "question_th": "ไทม์ไลน์ของเรื่องที่เผยแพร่ครั้งแรกก่อนปี 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_en": "How many total publications were the first of the series?",
    "question_th": "มีสิ่งพิมพ์ชุดแรกทั้งหมดกี่ฉบับ?",
    "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_en": "Who did the play-by-play before 1998 on Fox network?",
    "question_th": "ใครเล่นแบบเล่นต่อเล่นก่อนปี 1998 บนเครือข่าย Fox?",
    "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_en": "Who did the play-by-play before 1992 with the Ice level reporter Mike Emrick?",
    "question_th": "ใครเล่นแบบเล่นต่อเล่นก่อนปี 1992 กับนักข่าว Ice Level 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_en": "Who is the Ice level reporter after 1992 with the color commentator John Davidson and the play-by-play Marv Albert?",
    "question_th": "ใครคือนักข่าวระดับน้ำแข็งหลังปี 1992 พร้อมด้วยนักวิจารณ์สี จอห์น เดวิดสัน และมาร์ฟ อัลเบิร์ตแบบเล่นต่อบท?",
    "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_en": "What is the network with the play-by-play Marv Albert before 1994?",
    "question_th": "เครือข่ายของ Marv Albert แบบเล่นต่อเกมก่อนปี 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_en": "What was the total crowd of the Carlton game?",
    "question_th": "ฝูงชนทั้งหมดในเกมคาร์ลตันคือเท่าไร?",
    "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_en": "What was the highest long of Charles Pauley with fewer than 60 yards?",
    "question_th": "Charles Pauley ที่มีความยาวน้อยกว่า 60 หลามีความยาวสูงสุดคือเท่าใด",
    "context": "CREATE TABLE table_name_83 (long INTEGER, player VARCHAR, yards VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_14 WHERE date = \"may 26\"",
    "question_en": "﻿What is the score of the game on May 26?",
    "question_th": "﻿ผลการแข่งขันวันที่ 26 พ.ค. เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_14 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_name_13 WHERE date = \"may 22\"",
    "question_en": "What was the location and attendance on the May 22 game?",
    "question_th": "สถานที่และผู้เข้าชมในเกมวันที่ 22 พฤษภาคมเป็นอย่างไร?",
    "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_en": "What is the final placing of the team with 0 ples, more than 16 races, and 16 podiums?",
    "question_th": "อันดับสุดท้ายของทีมที่มี 0 คน มากกว่า 16 การแข่งขัน และ 16 โพเดียม คืออะไร?",
    "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_en": "What is the sum of podiums of the teams with a final placing of 14th, seasons after 2008, and less than 1 races?",
    "question_th": "ผลรวมของโพเดียมของทีมที่ได้อันดับที่ 14 สุดท้าย ฤดูกาลหลังปี 2008 และน้อยกว่า 1 การแข่งขันเป็นเท่าใด",
    "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_en": "What is the total number of seasons with more than 0 wins and a 1st final placing?",
    "question_th": "จำนวนฤดูกาลทั้งหมดที่มีการชนะมากกว่า 0 ครั้งและการได้เข้าชิงอันดับที่ 1 เป็นจำนวนเท่าใด?",
    "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_en": "What is the average wins of a team with more than 0 ples and less than 3 podiums?",
    "question_th": "ชัยชนะโดยเฉลี่ยของทีมที่มีคะแนนมากกว่า 0 คะแนนและน้อยกว่า 3 โพเดียมเป็นเท่าใด",
    "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_en": "I want the ends for transfer fee of free and goals being 0 for roy carroll",
    "question_th": "ฉันต้องการจบค่าธรรมเนียมการย้ายทีมแบบฟรีๆ และประตูเป็น 0 สำหรับรอย แคร์โรลล์",
    "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 šebo\" AND goals > 2",
    "question_en": "I want the total number of ends for filip šebo and Goals more than 2",
    "question_th": "ฉันต้องการจำนวนจบของฟิลิป เชโบและประตูมากกว่า 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_en": "How big was the crowd of away team Richmond?",
    "question_th": "ทีมเยือนริชมอนด์มีคนเยอะมากขนาดไหน?",
    "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_en": "How much did the away team Geelong score?",
    "question_th": "ทีมเยือนจีลองทำสกอร์ได้เท่าไหร่?",
    "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_en": "What is the average year for releases on Friday and weeks larger than 2 days?",
    "question_th": "ปีเฉลี่ยสำหรับการเผยแพร่ในวันศุกร์และสัปดาห์ที่มากกว่า 2 วันคือเท่าใด",
    "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_en": "What number of win% has a postseason of did not qualify and rank larger than 8?",
    "question_th": "จำนวน win% ใดที่มีช่วงหลังฤดูกาลที่ไม่ผ่านเข้ารอบและอันดับมากกว่า 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_en": "What year ranked larger than 5?",
    "question_th": "ปีไหนมีอันดับมากกว่า 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_en": "What postseason has a win% between 0.40700000000000003 and 108 with a rank of 1?",
    "question_th": "ฤดูหลังใดมีเปอร์เซ็นต์การชนะระหว่าง 0.40700000000000003 ถึง 108 ด้วยอันดับ 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_en": "How many laps in total does the driver named Eddie Irvine have?",
    "question_th": "นักแข่งชื่อ เอ็ดดี้ เออร์ไวน์ มีรอบทั้งหมดกี่รอบ",
    "context": "CREATE TABLE table_name_7 (laps VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT AVG(crowd) FROM table_name_91 WHERE venue = \"western oval\"",
    "question_en": "What's the average crowd size when the venue is western oval?",
    "question_th": "ขนาดฝูงชนโดยเฉลี่ยคือเท่าใดเมื่อสถานที่จัดงานเป็นรูปวงรีตะวันตก?",
    "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ánchez\"",
    "question_en": "What team has Carlos Sánchez as a goalkeeper and an average below 1.12?",
    "question_th": "ทีมไหนมี คาร์ลอส ซานเชซ เป็นผู้รักษาประตูและมีค่าเฉลี่ยต่ำกว่า 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_en": "What is the average of the team who has Jacobo as a goalkeeper and has played more than 32 matches?",
    "question_th": "ค่าเฉลี่ยของทีมที่มีจาโคโบเป็นผู้รักษาประตูและลงเล่นมากกว่า 32 นัดเป็นเท่าใด?",
    "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_en": "What home team played Fitzroy?",
    "question_th": "ทีมเหย้าทีมไหนเล่นฟิตซ์รอย?",
    "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_en": "Which network has a play-by-play announcer of John Wells?",
    "question_th": "เครือข่ายใดมีผู้ประกาศแบบเล่นต่อเกมของ 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_en": "On CBC, who was the colour commentator in 1987?",
    "question_th": "ในรายการ CBC ใครคือผู้บรรยายเรื่องสีในปี 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_en": "Who was the colour commentator when the play-by-play announcer was Bob Cole?",
    "question_th": "ใครคือผู้บรรยายสีเมื่อบ็อบ โคล ผู้ประกาศทีละรายการคือใคร",
    "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_en": "Who is the studio host that has a play-by-play announcer of Bob Cole and a colour commentator of Harry Neale?",
    "question_th": "ใครคือพิธีกรในสตูดิโอที่มีผู้ประกาศแบบทีละบทของบ็อบ โคล และผู้บรรยายสีของแฮร์รี่ นีล?",
    "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_en": "In 1981, with a studio host of Dave Hodge, who was the colour commentator?",
    "question_th": "ในปี 1981 โดยมีพิธีกรในสตูดิโอของ Dave Hodge ใครเป็นผู้บรรยายเรื่องสี?",
    "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 ötesi\"",
    "question_en": "What Song is by the Artist 'mor ve ötesi'?",
    "question_th": "ศิลปิน 'mor ve ötesi' คือเพลงอะไร",
    "context": "CREATE TABLE table_name_19 (song VARCHAR, artist VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_34 WHERE home_team = \"richmond\"",
    "question_en": "What date did the home team Richmond play?",
    "question_th": "เจ้าบ้านริชมอนด์ลงเล่นวันไหน?",
    "context": "CREATE TABLE table_name_34 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(crowd) FROM table_name_95 WHERE home_team = \"hawthorn\"",
    "question_en": "What size was the biggest crowd that watched the home team Hawthorn play?",
    "question_th": "ฝูงชนที่ใหญ่ที่สุดที่ดูทีมเหย้าฮอว์ธอร์นเล่นมีขนาดเท่าใด",
    "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_en": "What is the high cap total for a lock with the vicenza rangers?",
    "question_th": "ขีดจำกัดสูงสุดสำหรับล็อคกับวิเชนซา เรนเจอร์คือเท่าใด?",
    "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_en": "When was nese malifa born?",
    "question_th": "นีส มาลิฟาเกิดเมื่อไหร่?",
    "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_en": "What position for jj gagiano?",
    "question_th": "jj gagiano ตำแหน่งไหนครับ?",
    "context": "CREATE TABLE table_name_3 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT club_province FROM table_name_66 WHERE caps = 41",
    "question_en": "What club/province has 41 caps?",
    "question_th": "สโมสร/จังหวัดใดมี 41 แคป?",
    "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_en": "Name the date for the australian grand prix.",
    "question_th": "ตั้งชื่อวันที่สำหรับ 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_en": "Who did the fastest lap when pole position was damon hill and the location was magny-cours?",
    "question_th": "ใครทำรอบได้เร็วที่สุดเมื่อตำแหน่งโพลโพซิชั่นคือเดมอน ฮิลล์ และตำแหน่งคือแมกนี-คอร์ต?",
    "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_en": "What was the date for the canadian grand prix?",
    "question_th": "วันที่สำหรับกรังด์ปรีซ์ของแคนาดาคือวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_65 (date VARCHAR, grand_prix VARCHAR)"
  },
  {
    "answer": "SELECT SUM(foundation) FROM table_name_79 WHERE japanese_orthography = \"国立看護大学校\"",
    "question_en": "What is the number of the Foundation with Japanese orthography of 国立看護大学校?",
    "question_th": "เลขมูลนิธิที่มีการสะกดคำภาษาญี่ปุ่นของ 中立看護大学校 คือเลขอะไร",
    "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_en": "what is the least yards when the average is 7 and the long is less than 7?",
    "question_th": "ระยะน้อยที่สุดคือเท่าใดเมื่อค่าเฉลี่ยคือ 7 และความยาวน้อยกว่า 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_en": "What is the average laps for ralph firman with a grid of over 19?",
    "question_th": "รอบเฉลี่ยของ Ralph Firman ที่มีตารางเกิน 19 คือเท่าไร?",
    "context": "CREATE TABLE table_name_32 (laps INTEGER, driver VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT grid FROM table_name_53 WHERE laps = 6",
    "question_en": "What grid features 6 laps?",
    "question_th": "ตารางใดมี 6 รอบ?",
    "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_en": "What's the sum of asts for boston college with a rebs over 63?",
    "question_th": "ผลรวมของ ass สำหรับวิทยาลัยบอสตันที่มี rebs มากกว่า 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_en": "What's the pos for an asts less than 117?",
    "question_th": "ตำแหน่งสำหรับ ass น้อยกว่า 117 คืออะไร?",
    "context": "CREATE TABLE table_name_52 (pos VARCHAR, asts INTEGER)"
  },
  {
    "answer": "SELECT COUNT(release_date) FROM table_name_7 WHERE country = \"canada\"",
    "question_en": "How many release dates has Canada had?",
    "question_th": "แคนาดามีวันวางจำหน่ายกี่วัน?",
    "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_en": "What constructor is grid 1 with a time/retired of engine?",
    "question_th": "ตัวสร้างใดคือกริด 1 ที่มีเวลา / หมดอายุการใช้งานของเครื่องยนต์",
    "context": "CREATE TABLE table_name_67 (constructor VARCHAR, time_retired VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_34 WHERE grid = 14",
    "question_en": "Who constructed grid 14?",
    "question_th": "ใครเป็นคนสร้างกริด 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_en": "I want to know the 2001 that has a 2004 of a and 2003 of a with 2012 of 3r",
    "question_th": "ฉันต้องการทราบปี 2001 ที่มีปี 2004 ของ a และ 2003 ของ a โดยมีปี 2012 เป็น 3r",
    "context": "CREATE TABLE table_name_53 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2008 FROM table_name_87 WHERE 2001 = \"wta premier 5 tournaments\"",
    "question_en": "Tell me the 2008 for when 2001 of wta premier 5 tournaments",
    "question_th": "บอกปี 2008 สำหรับการแข่งขัน wta premier 5 ปี 2001 หน่อยสิ",
    "context": "CREATE TABLE table_name_87 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2013 FROM table_name_87 WHERE 2001 = \"wta premier 5 tournaments\"",
    "question_en": "I want to know the 2013 when 2001 was wta premier 5 tournaments",
    "question_th": "ฉันต้องการทราบปี 2013 เมื่อปี 2001 เป็น wta premier 5 ทัวร์นาเมนต์",
    "context": "CREATE TABLE table_name_87 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2007 FROM table_name_14 WHERE 2010 = \"olympic games\"",
    "question_en": "Tell me the 2007 for 2010 olympic games",
    "question_th": "บอกฉันเกี่ยวกับกีฬาโอลิมปิกปี 2007 สำหรับปี 2010",
    "context": "CREATE TABLE table_name_14 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2004 FROM table_name_61 WHERE 2012 = \"21\"",
    "question_en": "Tell me the 2004 for 2012 of 21",
    "question_th": "บอกฉันปี 2004 สำหรับ 2012 จาก 21",
    "context": "CREATE TABLE table_name_61 (Id VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_97 WHERE home_team = \"richmond\"",
    "question_en": "When Richmond was the Home team, who was the away team?",
    "question_th": "เมื่อริชมอนด์เป็นเจ้าบ้าน ใครเป็นทีมเยือน?",
    "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_en": "Which home team plays in the Corio Oval venue?",
    "question_th": "เจ้าบ้านทีมไหนเล่นที่สนามโคริโอโอวัล?",
    "context": "CREATE TABLE table_name_29 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_60 WHERE venue = \"emcg\"",
    "question_en": "When the game was played at the EMCG venue, who was the away team?",
    "question_th": "เมื่อเกมเล่นที่สนาม EMCG ทีมเยือนคือใคร?",
    "context": "CREATE TABLE table_name_60 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_55 WHERE driver = \"jenson button\"",
    "question_en": "who is the constructor when the driver is jenson button?",
    "question_th": "ใครคือคอนสตรัคเตอร์เมื่อไดรเวอร์คือปุ่มเจนสัน?",
    "context": "CREATE TABLE table_name_55 (constructor VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT grid FROM table_name_79 WHERE time_retired = \"+27.112\"",
    "question_en": "what is the grid when the time/retired is +27.112?",
    "question_th": "ตารางเมื่อเวลา/เกษียณคือ +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_en": "I want the fewest Laps for Huub Rothengatter and grid less than 24",
    "question_th": "ฉันต้องการรอบน้อยที่สุดสำหรับ Huub Rothengatter และกริดน้อยกว่า 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é arnoux\"",
    "question_en": "Tell me the time/retired with Laps of 47 and driver of rené arnoux",
    "question_th": "บอกเวลา/เกษียณด้วยรอบ 47 และนักแข่งของ rené 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_en": "Which Oricon has a Romaji title of nakitakunalu?",
    "question_th": "Oricon ใดมีชื่อโรมาจิว่า 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_en": "Which Reference has a Release date of 1996/10/10?",
    "question_th": "ข้อมูลอ้างอิงใดมีวันวางจำหน่าย 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_en": "What is the occupation of the candidate that resides in Windsor Junction?",
    "question_th": "ผู้สมัครที่อาศัยอยู่ใน 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_en": "How many votes did 3rd ranking candidate Mary Louise Lorefice receive?",
    "question_th": "Mary Louise Lorefice ผู้สมัครอันดับที่ 3 ได้รับคะแนนเสียงทั้งหมดกี่คะแนน",
    "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_en": "What occupation does Mary Louise Lorefice have?",
    "question_th": "Mary Louise Lorefice มีอาชีพอะไร?",
    "context": "CREATE TABLE table_name_35 (occupation VARCHAR, candidate VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_83 WHERE away_team = \"essendon\"",
    "question_en": "When was the game at Essendon?",
    "question_th": "เกมที่เอสเซนดอนคือเมื่อไหร่?",
    "context": "CREATE TABLE table_name_83 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_25 WHERE grid = 8",
    "question_en": "Who is the constructor with the grid of 8?",
    "question_th": "ใครคือคอนสตรัคเตอร์ที่มีตาราง 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_en": "what is the time/retired when the grid is less than 3 and 45 laps?",
    "question_th": "เวลา/เลิกใช้เมื่อกริดน้อยกว่า 3 และ 45 รอบคือเท่าไร?",
    "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_en": "what is the most laps for driver jackie stewart?",
    "question_th": "แจ็กกี้ สจ๊วต นักแข่งมีรอบมากที่สุดคือเท่าไร?",
    "context": "CREATE TABLE table_name_43 (laps INTEGER, driver VARCHAR)"
  },
  {
    "answer": "SELECT time_retired FROM table_name_56 WHERE driver = \"richard attwood\"",
    "question_en": "what is the time/retired for driver richard attwood?",
    "question_th": "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_en": "Tell me the D 41 and R 51 of r 11",
    "question_th": "บอก D 41 และ R 51 ของ 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_en": "I want the D 46 which has a D 44 of r 17",
    "question_th": "ฉันต้องการ D 46 ซึ่งมี D 44 เท่ากับ 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_en": "Tell me the D 41 for D 43 of d 18",
    "question_th": "บอก D 41 สำหรับ D 43 ของ 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_en": "Tell me the D 47 for D 46 of r 35",
    "question_th": "บอก D 47 สำหรับ D 46 ของ 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_en": "I want the D 42 with R 51 of r 11",
    "question_th": "ฉันต้องการ D 42 กับ R 51 ของ 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_en": "I want the R 53 of D 41 of r 21",
    "question_th": "ฉันต้องการ R 53 ของ D 41 ของ 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_en": "What is the low silver total for switzerland with over 0 golds?",
    "question_th": "เงินรวมต่ำสำหรับสวิตเซอร์แลนด์ที่มีมากกว่า 0 เหรียญทองคือเท่าไร?",
    "context": "CREATE TABLE table_name_30 (silver INTEGER, gold VARCHAR, nation VARCHAR)"
  },
  {
    "answer": "SELECT SUM(silver) FROM table_name_93 WHERE bronze = 10",
    "question_en": "What is the silver total for nations with 10 bronze medals?",
    "question_th": "เงินรวมของประเทศที่ได้ 10 เหรียญทองแดงเป็นเท่าใด",
    "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_en": "What is the gold total for lithuania with under 2 silvers?",
    "question_th": "ลิทัวเนียมีทองรวมไม่เกิน 2 เหรียญเงินเป็นเท่าใด",
    "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_en": "What was the score for the home team that played at Moorabbin Oval?",
    "question_th": "เจ้าบ้านเล่นที่มูราบบินโอวัลได้สกอร์เท่าไหร่?",
    "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_en": "Name the size of the screen that came out in 2006 and is iliad",
    "question_th": "ตั้งชื่อขนาดของหน้าจอที่ออกมาในปี 2549 และเป็นอีเลียด",
    "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_en": "Which Report includes the Belgian Grand Prix Race?",
    "question_th": "รายงานใดรวมถึงการแข่งขัน 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_en": "Which Report includes Monaco?",
    "question_th": "รายงานใดรวมถึงโมนาโก",
    "context": "CREATE TABLE table_name_95 (report VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_38 WHERE fastest_lap = \"gunnar nilsson\"",
    "question_en": "On what date did Gunnar Nilsson make the fastest lap?",
    "question_th": "กุนนาร์ นิลส์สัน ทำเวลาต่อรอบได้เร็วที่สุดในวันที่เท่าไร?",
    "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_en": "Who had the fastest lap for the German Grand Prix?",
    "question_th": "ใครมีรอบเร็วที่สุดสำหรับ 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_en": "What is the format for the album under the label, luaka bop, that had a catalog number of 3645 and dated after 1981?",
    "question_th": "อัลบั้มภายใต้ค่าย luaka bop มีหมายเลขแค็ตตาล็อก 3645 และลงวันที่หลังปี 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_en": "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?",
    "question_th": "วันที่เร็วที่สุดของอัลบั้มที่มีหมายเลขแค็ตตาล็อก 3645 มีรูปแบบเป็นซีดีและอยู่ภายใต้ป้ายกำกับ luaka bop คือเมื่อใด",
    "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_en": "Under what label was the album with the catalog of 3645 and came out later than 1987?",
    "question_th": "อัลบั้มที่มีแคตตาล็อก 3645 และออกช้ากว่าปี 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_en": "What is the points where Toronto was the home team and the game number was larger than 63?",
    "question_th": "แต้มที่โตรอนโตเป็นเจ้าบ้านและเลขเกมมากกว่า 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_en": "How many laps did mike spence complete grids above 12?",
    "question_th": "ไมค์ สเปนซ์ทำกริดเกิน 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_en": "How many average laps did brm complete in grids larger than 12?",
    "question_th": "brm ทำได้เฉลี่ยกี่รอบในกริดที่ใหญ่กว่า 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_en": "Who drove in grids more than 3 and exited in an accident?",
    "question_th": "ใครขับรถเข้าเส้นกริดเกิน 3 เส้นแล้วเกิดอุบัติเหตุ?",
    "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_en": "In what grid did jim clark drive in?",
    "question_th": "จิม คลาร์กขับรถเข้าไปในกริดใด",
    "context": "CREATE TABLE table_name_21 (grid VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_3 WHERE date = \"21 jul 2007\"",
    "question_en": "Which opponent has a date 21 jul 2007?",
    "question_th": "คู่ต่อสู้คนใดมีวันที่ 21 กรกฎาคม 2550?",
    "context": "CREATE TABLE table_name_3 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_91 WHERE home_team = \"melbourne\"",
    "question_en": "What was the venue of the Melbourne team?",
    "question_th": "สถานที่ของทีมเมลเบิร์นคือที่ไหน?",
    "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_en": "What was the race that featured stirling moss winning with a maserati at aintree?",
    "question_th": "การแข่งขันที่มีมอสสเตอร์ลิงชนะด้วยมาเซราติที่อินทรีคืออะไร?",
    "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_en": "What does the Circuit of caen report?",
    "question_th": "Circuit of Caen รายงานอะไรบ้าง?",
    "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_en": "Who is the winning drive of iv grand prix de caen?",
    "question_th": "ใครคือผู้ชนะของ 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_en": "What types of ships were made at the Froemming Brothers ship yard?",
    "question_th": "เรือประเภทใดบ้างที่ถูกสร้างขึ้นที่อู่ต่อเรือ Froemming Brothers",
    "context": "CREATE TABLE table_name_32 (ship_types_delivered VARCHAR, yard_name VARCHAR)"
  },
  {
    "answer": "SELECT appearances FROM table_name_5 WHERE goals = 36",
    "question_en": "What is the amount of apperances of the person who had 36 goals?",
    "question_th": "บุคคลที่ทำประตูได้ 36 ประตู เท่าไหร่?",
    "context": "CREATE TABLE table_name_5 (appearances VARCHAR, goals VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_7 WHERE points = 151.66",
    "question_en": "Tell me the name with points of 151.66",
    "question_th": "บอกชื่อด้วยคะแนน 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_en": "Tell me the total number of rank for places less than 94 and points less than 169.8 for japan",
    "question_th": "บอกจำนวนอันดับทั้งหมดสำหรับสถานที่น้อยกว่า 94 และคะแนนน้อยกว่า 169.8 สำหรับญี่ปุ่น",
    "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_en": "Tell me the total number of SP+FS with rank more than 8 for the netherlands and points more than 127.26",
    "question_th": "บอกจำนวน SP+FS ทั้งหมดที่มีอันดับมากกว่า 8 สำหรับเนเธอร์แลนด์และคะแนนมากกว่า 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_en": "Name the total number of SP+FS for places of 60 and points more than 151.66",
    "question_th": "ตั้งชื่อจำนวนรวม SP+FS สำหรับอันดับที่ 60 และคะแนนมากกว่า 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_en": "Name the average SP+FS with places less tha 94 for renata baierova",
    "question_th": "ตั้งชื่อค่าเฉลี่ย SP+FS ด้วยตำแหน่งที่น้อยกว่า 94 สำหรับ 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_en": "What color is model # pd-kb400w?",
    "question_th": "รุ่น #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_en": "What's the lowest average for a swimsuit over 6.89, evening gown over 7.76, and an interview over 8.57 in illinois?",
    "question_th": "ค่าเฉลี่ยต่ำสุดสำหรับชุดว่ายน้ำมากกว่า 6.89 ชุดราตรีมากกว่า 7.76 และการสัมภาษณ์มากกว่า 8.57 ในรัฐอิลลินอยส์คือเท่าใด",
    "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_en": "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?",
    "question_th": "ชุดว่ายน้ำสูงสุดสำหรับค่าเฉลี่ยน้อยกว่า 8.073 ชุดราตรีน้อยกว่า 8.31 และการสัมภาษณ์มากกว่า 8.23 ในจอร์เจียคือข้อใด",
    "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_en": "What's utah's lowest swimsuit with an interview over 8.53?",
    "question_th": "ชุดว่ายน้ำต่ำสุดของยูทาห์กับบทสัมภาษณ์มากกว่า 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_en": "What week was October 9, 1938?",
    "question_th": "วันที่ 9 ตุลาคม พ.ศ. 2481 เป็นสัปดาห์อะไร",
    "context": "CREATE TABLE table_name_66 (week VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_42 WHERE away_team = \"collingwood\"",
    "question_en": "What home team played Collingwood as the away team?",
    "question_th": "ทีมเจ้าบ้านใดที่เล่นคอลลิงวูดเป็นทีมเยือน?",
    "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_en": "What was the score of the away team at Junction Oval?",
    "question_th": "ทีมเยือนจังชั่นโอวัลได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_77 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_96 WHERE driver = \"giancarlo fisichella\"",
    "question_en": "Who built giancarlo fisichella's car?",
    "question_th": "ใครเป็นคนสร้างรถของจิอันคาร์โล ฟิซิเชลลา?",
    "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_en": "What is the high lap total for mika salo with a grid greater than 17?",
    "question_th": "ผลรวมรอบสูงของมิก้า ซาโลที่มีกริดมากกว่า 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_en": "Where was the location with Muirfield in Scotland?",
    "question_th": "สถานที่ของ Muirfield ในสกอตแลนด์อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_4 (location VARCHAR, country VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_46 WHERE name = \"pieroni\"",
    "question_en": "Name the country for pieroni",
    "question_th": "ตั้งชื่อประเทศสำหรับปิโรนี",
    "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_en": "Name the country for 6-month loan and moving from of lens",
    "question_th": "ตั้งชื่อประเทศให้ยืม 6 เดือน และย้ายมาจากเลนส์",
    "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_en": "Name the transfer fee with a transfer window of summer for schollen",
    "question_th": "ตั้งชื่อค่าธรรมเนียมการโอนพร้อมหน้าต่างโอนย้ายของซัมเมอร์สำหรับโชลเลน",
    "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ürnberg\"",
    "question_en": "Name the name that has moving of 1. fc nürnberg.",
    "question_th": "ตั้งชื่อที่มีการย้าย 1.เอฟซี เนิร์นแบร์ก.",
    "context": "CREATE TABLE table_name_9 (name VARCHAR, moving_from VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_4 WHERE name = \"polák\"",
    "question_en": "Name the country with polák",
    "question_th": "ตั้งชื่อประเทศด้วย polák",
    "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_en": "What was the home team score at North Melbourne's away game?",
    "question_th": "สกอร์ทีมเหย้าในเกมเยือนของ นอร์ท เมลเบิร์น เป็นเท่าไหร่?",
    "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_en": "What was Collingwood's score at the home match against Richmond?",
    "question_th": "คะแนนของคอลลิงวูดในเกมเหย้ากับริชมอนด์เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_47 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT MIN(laps) FROM table_name_14 WHERE grid > 24",
    "question_en": "What is the lowest number of laps with a grid larger than 24?",
    "question_th": "จำนวนรอบต่ำสุดที่มีตารางมากกว่า 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_en": "For Jo Siffert, what was the highest grid with the number of laps above 12?",
    "question_th": "สำหรับ Jo Siffert อะไรคือตารางสูงสุดที่มีจำนวนรอบมากกว่า 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_en": "What is the average number of laps when Gerhard Berger is the driver?",
    "question_th": "จำนวนรอบเฉลี่ยที่ Gerhard Berger เป็นนักขับคือเท่าไร?",
    "context": "CREATE TABLE table_name_23 (laps INTEGER, driver VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_9 WHERE laps > 50 AND grid = 7",
    "question_en": "What is the name of the constructor who has more than 50 laps and a grid of 7?",
    "question_th": "ชื่อของคอนสตรัคเตอร์ที่มีมากกว่า 50 รอบและตาราง 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_en": "What is the title of the episode with a production code of ad1b04?",
    "question_th": "ชื่อเรื่องของตอนที่มีรหัสการผลิต ad1b04 คืออะไร",
    "context": "CREATE TABLE table_name_50 (title VARCHAR, production_code VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_22 WHERE event = \"tfc 21\"",
    "question_en": "Name the time for event of tfc 21",
    "question_th": "ตั้งชื่อเวลาจัดงาน 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_en": "What sport has a Gold larger than 0, and a Silver of 2?",
    "question_th": "กีฬาประเภทใดที่มีทองคำมากกว่า 0 และเงินเป็น 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_en": "What is the lowest Bronze that has a Total larger than 18 and a Silver smaller than 143?",
    "question_th": "บรอนซ์ต่ำสุดที่มีค่ารวมมากกว่า 18 และเงินน้อยกว่า 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_en": "How many total Silver has a Bronze larger than 19 and a Total smaller than 125?",
    "question_th": "เงินทั้งหมดมีกี่เหรียญทองแดงที่มีขนาดใหญ่กว่า 19 และคะแนนรวมน้อยกว่า 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_en": "What is the highest total Bronze larger than 10, Silver larger than 28, and a Gold of 58?",
    "question_th": "เหรียญทองแดงรวมสูงสุดที่มากกว่า 10 เหรียญเงินมากกว่า 28 เหรียญ และทองคำ 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_en": "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?",
    "question_th": "ค่ารวมต่ำสุดที่มีทองคำมากกว่า 0, เงินน้อยกว่า 4, กีฬาฟุตบอล และเหรียญทองแดงมากกว่า 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_en": "what is the time/retired when the grid is 9?",
    "question_th": "เวลาใด / เกษียณเมื่อตารางเป็น 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_en": "what is the number of laps when the driver is ron flockhart?",
    "question_th": "รอน ฟล็อคฮาร์ต คนขับคือกี่รอบ?",
    "context": "CREATE TABLE table_name_5 (laps VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT engine FROM table_name_72 WHERE power = \"114hp (85kw)\"",
    "question_en": "What Engine has a Power of 114hp (85kw)?",
    "question_th": "เครื่องยนต์ใดมีกำลัง 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_en": "What Torque has an AMC Power Tech I6 Engine?",
    "question_th": "แรงบิดเท่าใดที่มีเครื่องยนต์ AMC Power Tech I6",
    "context": "CREATE TABLE table_name_68 (torque VARCHAR, engine VARCHAR)"
  },
  {
    "answer": "SELECT displacement FROM table_name_57 WHERE power = \"185hp (138kw)\"",
    "question_en": "What Displacement has 185hp (138kw) Power o",
    "question_th": "ดิสเพลสเมนต์อะไรมีกำลัง 185hp (138kw) o",
    "context": "CREATE TABLE table_name_57 (displacement VARCHAR, power VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_47 WHERE home_team = \"collingwood\"",
    "question_en": "What venue features collingwood as the home side?",
    "question_th": "สนามใดที่มีคอลลิงวูดเป็นเจ้าบ้าน?",
    "context": "CREATE TABLE table_name_47 (venue VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_17 WHERE game_site = \"veterans stadium\"",
    "question_en": "What's the attendance numbers for veterans stadium?",
    "question_th": "จำนวนผู้เข้าร่วมสนามกีฬาทหารผ่านศึกคือเท่าไร?",
    "context": "CREATE TABLE table_name_17 (attendance VARCHAR, game_site VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_79 WHERE player = \"michael dunigan\"",
    "question_en": "What is the name of the school that has a player named Michael Dunigan?",
    "question_th": "โรงเรียนที่มีผู้เล่นชื่อ 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_en": "Name the religion for Former Experience of commissioner of health and assumed office before 2005",
    "question_th": "ตั้งชื่อศาสนาตามประสบการณ์เดิมของอธิบดีกรมอนามัยและเข้ารับตำแหน่งก่อนปี 2548",
    "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_en": "Tell me the loewst assume office for madeleine bordallo",
    "question_th": "บอกฉันหน่อยว่าใครรับตำแหน่งแมดเดอลีน บอร์ดัลโล",
    "context": "CREATE TABLE table_name_60 (assumed_office INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_60 WHERE game = 82",
    "question_en": "Which team had a game of 82?",
    "question_th": "ทีมใดมีเกม 82 เกม?",
    "context": "CREATE TABLE table_name_60 (team VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT crowd FROM table_name_77 WHERE venue = \"junction oval\"",
    "question_en": "How many people attended the game at Junction Oval?",
    "question_th": "มีผู้เข้าร่วมการแข่งขันที่ 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_en": "What was the score for Boston's Home game that had Gerber as the decision?",
    "question_th": "คะแนนในเกมเหย้าของบอสตันที่มีเกอร์เบอร์เป็นผู้ตัดสินคือเท่าไร?",
    "context": "CREATE TABLE table_name_34 (score VARCHAR, decision VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_27 WHERE date = \"march 25\"",
    "question_en": "What was the record for the game on March 25?",
    "question_th": "สถิติของเกมเมื่อวันที่ 25 มีนาคมเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_27 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT decision FROM table_name_51 WHERE home = \"anaheim\"",
    "question_en": "Who was the Decision at Anaheim's home game?",
    "question_th": "ใครคือผู้ตัดสินในเกมเหย้าของอนาไฮม์?",
    "context": "CREATE TABLE table_name_51 (decision VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_79 WHERE chassis = \"tg183b tg184\"",
    "question_en": "Who is the driver of the chassis that is tg183b tg184?",
    "question_th": "ใครคือคนขับแชสซีที่เป็น 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_en": "What was the engine belonging to Pierluigi Martini with a Tyre of P?",
    "question_th": "เครื่องยนต์ของ Pierluigi Martini ที่มียาง 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_en": "What was the featured in Engine through rounds 10-13?",
    "question_th": "มีอะไรนำเสนอใน Engine ตลอดรอบ 10-13?",
    "context": "CREATE TABLE table_name_85 (engine VARCHAR, rounds VARCHAR)"
  },
  {
    "answer": "SELECT entrant FROM table_name_22 WHERE driver = \"nigel mansell\"",
    "question_en": "Nigel Mansell was the driver in what Entrant?",
    "question_th": "Nigel Mansell เป็นคนขับรถในรายการใด",
    "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_en": "What Date does the Name (location) Belyanitsky, Ivanovo, and Balino have?",
    "question_th": "ชื่อ (สถานที่) Belyanitsky, Ivanovo และ Balino มีวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_28 (date VARCHAR, name__location_ VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_52 WHERE home_team = \"north melbourne\"",
    "question_en": "What day did North Melbourne play as the home team?",
    "question_th": "นอร์ธ เมลเบิร์น ลงเล่นเป็นเจ้าบ้านวันไหน?",
    "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_en": "Who was the away team at Arden Street Oval?",
    "question_th": "ทีมเยือนที่ 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_en": "What is the ordinary income rate when short-term capital gain rate is 28%?",
    "question_th": "อัตรารายได้ปกติเมื่ออัตรากำไรระยะสั้นคือ 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_en": "What is short-term capital gain rate with long-term gain on collectibles at 15%?",
    "question_th": "อัตราการเพิ่มทุนระยะสั้นโดยมีกำไรระยะยาวจากของสะสมที่ 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_en": "What long-term gain for collectibles coincides with ordinary income rate 15%?",
    "question_th": "กำไรสะสมระยะยาวอะไรเกิดขึ้นพร้อมกับอัตรารายได้ปกติ 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_en": "What is the Decile with a State Authority and a roll of 120?",
    "question_th": "Decile กับหน่วยงานของรัฐและม้วน 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_en": "What is the highest Roll of Orere School with a Decile less than 8 with a State Authority?",
    "question_th": "โรงเรียน Roll of Orere ที่สูงที่สุดที่มี Decile น้อยกว่า 8 กับหน่วยงานของรัฐคืออะไร?",
    "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_en": "What home team score has a Away team of melbourne?",
    "question_th": "สกอร์ทีมเหย้าไหนมีทีมเยือนเมลเบิร์น?",
    "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_en": "What away team is the home team richmond?",
    "question_th": "ทีมเยือนคือทีมเจ้าบ้านริชมอนด์?",
    "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_en": "When Giancarlo Fisichella was the Driver and there were less than 52 Laps, what was the highest Grid?",
    "question_th": "เมื่อ Giancarlo Fisichella เป็นนักแข่งและมีรอบสนามไม่ถึง 52 รอบ สนามสูงสุดคือเส้นไหน?",
    "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_en": "Which Constructor has a Grid less than 17, Laps under 52, and Olivier Panis as the Driver?",
    "question_th": "Constructor คนใดมีกริดน้อยกว่า 17 รอบ รอบต่ำกว่า 52 และมีโอลิเวียร์ ปานิส เป็นผู้ขับ",
    "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_en": "Which 2006 cfl draft pick played college ball at Idaho state?",
    "question_th": "ตัวเลือกร่าง cfl ปี 2006 ใดที่เล่นบอลวิทยาลัยที่รัฐไอดาโฮ",
    "context": "CREATE TABLE table_name_91 (pick__number VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_22 WHERE college = \"toronto\"",
    "question_en": "What position did the CFL player drafted out of college of toronto in 2007 play?",
    "question_th": "ผู้เล่น CFL ที่ร่างมาจากวิทยาลัยโตรอนโตในปี 2550 เล่นในตำแหน่งใด",
    "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_en": "What was the Date of Death of the person whose Date of Birth was 28 May 1371?",
    "question_th": "วันเดือนปีเกิดของบุคคลซึ่งวันเกิดคือ 28 พฤษภาคม 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_en": "What was the Reign of the person whose Date of Birth was 22 March 1459?",
    "question_th": "รัชสมัยของบุคคลที่เกิดคือวันที่ 22 มีนาคม พ.ศ. 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_en": "Tell me the average year with a record of 33-33",
    "question_th": "บอกปีเฉลี่ยด้วยสถิติ 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_en": "Name the total number of years for a 39-31 record",
    "question_th": "ตั้งชื่อจำนวนปีทั้งหมดสำหรับบันทึก 39-31",
    "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_en": "Name the least year for gene hassell manager and 6th finish",
    "question_th": "ตั้งชื่อปีน้อยที่สุดสำหรับผู้จัดการยีนแฮสเซลล์และการจบอันดับที่ 6",
    "context": "CREATE TABLE table_name_98 (year INTEGER, manager VARCHAR, finish VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_64 WHERE record = \"39-31\"",
    "question_en": "Name the finish for a 39-31 record",
    "question_th": "ตั้งชื่อการจบสกอร์สำหรับสถิติ 39-31",
    "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_en": "What is the lowest goal difference for the club ud alzira, with a played larger than 38?",
    "question_th": "อะไรคือผลต่างประตูต่ำสุดของสโมสร อุด อัลซิร่า โดยที่ทำได้มากกว่า 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_en": "What is the goal difference sum that has goals against smaller than 33, draws larger than 13?",
    "question_th": "ผลรวมผลต่างประตูที่มีประตูน้อยกว่า 33 เสมอมากกว่า 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_en": "Name the transfer fee for damia",
    "question_th": "ตั้งชื่อค่าธรรมเนียมการโอนดาเมีย",
    "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_en": "Name the moving to with a transfer fee of free with a transfer status for rodri",
    "question_th": "ตั้งชื่อการย้ายไปพร้อมค่าธรรมเนียมการโอนฟรีพร้อมสถานะการโอนโรดรี้",
    "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_en": "When was the game played at the Western Oval venue?",
    "question_th": "เกมนี้เล่นที่สนามเวสเทิร์นโอวัลเมื่อใด?",
    "context": "CREATE TABLE table_name_23 (date VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT livery FROM table_name_33 WHERE serial_no = \"83-1010\"",
    "question_en": "What is the livery of the locomotive with a serial number 83-1010?",
    "question_th": "องค์ของหัวรถจักรหมายเลข 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_en": "What is the livery on the locomotive with a serial number 83-1011?",
    "question_th": "องค์บนหัวรถจักรหมายเลข 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_en": "What is the locomotive with a standard gauge and a serial number of 83-1015?",
    "question_th": "หัวรถจักรที่มีเกจมาตรฐานและหมายเลขซีเรียล 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_en": "What is the date of entered service for the locomotive with a broad gauge and a serial no of 83-1018?",
    "question_th": "รถจักรชนิดความกว้างและหมายเลขประจำเครื่อง 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_en": "What was the venue on October 16, 1996?",
    "question_th": "วันที่ 16 ตุลาคม พ.ศ. 2539 จัดขึ้นที่ใด?",
    "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_en": "What's the score at the October 30, 1996 1998 fifa world cup qualification with a result of win?",
    "question_th": "คะแนน ณ 30 ตุลาคม 1996 ฟุตบอลโลก 1998 รอบคัดเลือก และผลชนะเป็นเท่าไหร่?",
    "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_en": "When was the friendship cup?",
    "question_th": "ถ้วยมิตรภาพมีเมื่อไหร่?",
    "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_en": "What is the smallest number for Cars per Set built in 1977-1979 larger than 32?",
    "question_th": "จำนวนรถยนต์ที่น้อยที่สุดต่อชุดที่สร้างขึ้นในปี 1977-1979 ที่มากกว่า 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_en": "What is the largest number of cars per set that is less than 9?",
    "question_th": "จำนวนรถยนต์สูงสุดต่อชุดที่น้อยกว่า 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_en": "What year was the class 253 larger than 18 built?",
    "question_th": "คลาส 253 ใหญ่กว่า 18 สร้างขึ้นในปีใด",
    "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_en": "What is the margin for the Masters Tournament (2) championship?",
    "question_th": "มาร์จิ้นสำหรับการแข่งขัน Masters Tournament (2) คืออะไร?",
    "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_en": "What is the round of 54 holes in which Phil Mickelson was the runner-up?",
    "question_th": "รอบ 54 หลุมที่ฟิล มิคเคลสันเป็นรองแชมป์คือรอบไหน?",
    "context": "CREATE TABLE table_name_33 (runner_s__up VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_27 WHERE date = \"april 14\"",
    "question_en": "What is the home team of the April 14 game?",
    "question_th": "เจ้าบ้านเกม 14 เม.ย.จะเป็นทีมไหน?",
    "context": "CREATE TABLE table_name_27 (home VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_23 WHERE visitor = \"detroit\"",
    "question_en": "What is the date of the game with Detroit as the visitor team?",
    "question_th": "วันที่เกมกับดีทรอยต์เป็นทีมเยือนคือวันที่เท่าไหร่?",
    "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_en": "How many vieweres for the episode with a share of 1, a Rating larger than 0.7000000000000001, and a Rank (#) of 100/102?",
    "question_th": "มีผู้ชมกี่คนสำหรับตอนนี้ที่มีส่วนแบ่ง 1 เรตติ้งมากกว่า 0.7000000000000001 และอันดับ (#) 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_en": "Name the lead tpt for bass of kevin tomanka and alto 1 of alan moffett",
    "question_th": "ตั้งชื่อลีด tpt สำหรับเบสของ kevin tomanka และ alto 1 ของ 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_en": "What was the crowd size at the moorabbin oval venue?",
    "question_th": "ขนาดฝูงชนในสถานที่มูแรบบินรีคือเท่าไร?",
    "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_en": "What did the home team score against the away team collingwood?",
    "question_th": "เจ้าบ้านได้คะแนนอะไรกับทีมเยือน คอลลิงวูด?",
    "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_en": "what is the 1-letter for the amino acid asparagine?",
    "question_th": "ตัวอักษร 1 ตัวของกรดอะมิโนแอสพาราจีนคืออะไร",
    "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_en": "What was home team North Melbourne's opponents score?",
    "question_th": "คะแนนของฝ่ายตรงข้ามของทีมเจ้าบ้าน นอร์ธ เมลเบิร์น คือเท่าไร?",
    "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_en": "What was Melbourne's score as the home team?",
    "question_th": "เมลเบิร์นทำสกอร์เป็นเจ้าบ้านเท่าไหร่?",
    "context": "CREATE TABLE table_name_16 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_63 WHERE venue = \"junction oval\"",
    "question_en": "Who was the away team at Junction Oval?",
    "question_th": "ทีมเยือนจังชั่นโอวัลคือใคร?",
    "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_en": "What is the USCA that's Total is smaller than 14, with 1 Joint Music Award, MRHMA of 2, and RTHK of 3?",
    "question_th": "USCA ที่ Total น้อยกว่า 14 คืออะไร โดยมี 1 Joint Music Award, MRHMA ที่ 2 และ RTHK ที่ 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_en": "What is the Total with a Joint Music Award of 1, RTHK of 4, and USCA of 4?",
    "question_th": "รางวัลรวมที่มีรางวัลเพลงร่วม 1 รางวัล RTHK 4 รางวัล และ USCA 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_en": "How many Joint Music Awards were there with a RTHK of 1, in a Year before 2006?",
    "question_th": "มี Joint Music Awards กี่รางวัลที่มี RTHK 1 ในหนึ่งปีก่อนปี 2549",
    "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_en": "How many Joint Music Awards are there when the Total is larger than 18, in a Year after 2007?",
    "question_th": "มีรางวัล Joint Music Awards กี่รางวัลเมื่อมียอดรวมมากกว่า 18 ในหนึ่งปีหลังจากปี 2550",
    "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_en": "Which lane did the athlete swim in who had a semi-final time of 49.19?",
    "question_th": "นักกีฬาว่ายน้ำในเลนใดที่มีเวลารอบรองชนะเลิศ 49.19 น.",
    "context": "CREATE TABLE table_name_47 (lane INTEGER, semi VARCHAR)"
  },
  {
    "answer": "SELECT species FROM table_name_70 WHERE gender = \"male\"",
    "question_en": "Which species is male?",
    "question_th": "พันธุ์ไหนเป็นผู้ชาย?",
    "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_en": "What was the home teams score at Junction Oval?",
    "question_th": "คะแนนของทีมเหย้าที่ Junction Oval คืออะไร?",
    "context": "CREATE TABLE table_name_71 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT president FROM table_name_6 WHERE presidency > 7",
    "question_en": "What President has a Presidency greater than 7?",
    "question_th": "ประธานาธิบดีคนใดมีตำแหน่งประธานาธิบดีมากกว่า 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_en": "What is the highest Presidency that Took Office after 1974 and Left Office in 1998?",
    "question_th": "ตำแหน่งประธานาธิบดีสูงสุดที่เข้ารับตำแหน่งหลังปี 1974 และลาออกจากตำแหน่งในปี 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_en": "What is the Took Office Date of the Presidency that Left Office Incumbent?",
    "question_th": "วันที่เข้ารับตำแหน่งประธานาธิบดีที่ออกจากตำแหน่งดำรงตำแหน่งคือเมื่อใด",
    "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_en": "What was the greatest Took Office dates that Left Office in 1998?",
    "question_th": "วันที่เข้ารับตำแหน่งที่ยิ่งใหญ่ที่สุดที่ออกจากตำแหน่งในปี 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_en": "What is the average Laps for andrea de cesaris?",
    "question_th": "รอบเฉลี่ยของ 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_en": "What is the lowest Grid for jj lehto with over 51 laps?",
    "question_th": "ตารางต่ำสุดสำหรับ jj lehto ที่มีมากกว่า 51 รอบคืออะไร?",
    "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_en": "What is the average Grid that has a Time/Retired of +2 laps, and under 51 laps?",
    "question_th": "ตารางเฉลี่ยที่มีเวลา/เกษียณเป็น +2 รอบ และต่ำกว่า 51 รอบเป็นเท่าใด",
    "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_en": "What's the Home teams Venue near Victoria Park?",
    "question_th": "สถานที่ของทีมเจ้าบ้านใกล้กับ 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_en": "What is the Home team with a crowd relevant to footscray?",
    "question_th": "ทีมเหย้าที่มีฝูงชนเกี่ยวข้องกับรอยเท้าคืออะไร?",
    "context": "CREATE TABLE table_name_33 (crowd VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_91 WHERE home = \"nashville\"",
    "question_en": "What is the team's record when they play nashville at home?",
    "question_th": "สถิติของทีมตอนเล่นแนชวิลล์ในบ้านเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_91 (record VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT decision FROM table_name_22 WHERE visitor = \"phoenix\"",
    "question_en": "What is the decision when they're at phoenix?",
    "question_th": "การตัดสินใจเมื่อพวกเขาอยู่ที่ฟีนิกซ์คืออะไร?",
    "context": "CREATE TABLE table_name_22 (decision VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_66 WHERE tournament = \"frankfurt\"",
    "question_en": "What was the score in the Tournament of Frankfurt?",
    "question_th": "คะแนนในการแข่งขันแฟรงก์เฟิร์ตเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_66 (score VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_56 WHERE tournament = \"graz-seiersberg\"",
    "question_en": "Who was the winner in the Tournament of Graz-Seiersberg?",
    "question_th": "ใครคือผู้ชนะในการแข่งขัน 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_en": "Who earned third place when the winner was Paul Haarhuis?",
    "question_th": "ใครได้อันดับที่สามเมื่อผู้ชนะคือ 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_en": "what is the most laps with the time/retired is differential and the grid is more than 2?",
    "question_th": "รอบที่มีเวลามากที่สุด/เกษียณคือค่าส่วนต่างและกริดมากกว่า 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_en": "what is the least laps when the grid is 5?",
    "question_th": "รอบที่น้อยที่สุดคือเท่าไรเมื่อกริดเป็น 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_en": "On what date was Anniston Army Depot (SE Industrial Area) deleted?",
    "question_th": "Anniston Army Depot (เขตอุตสาหกรรม SE) ถูกลบเมื่อใด",
    "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_en": "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?",
    "question_th": "รายการที่มีวันที่ก่อสร้างแล้วเสร็จคือ 07/19/2000 และวันที่จดทะเบียนคือ 09/21/1984 อยู่ในเขตใด",
    "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_en": "On what date was Stauffer Chemical Company (Lemoyne Plant), which was listed on 09/21/1984, deleted?",
    "question_th": "บริษัท Stauffer Chemical (โรงงาน Lemoyne) ซึ่งจดทะเบียนเมื่อวันที่ 09/21/1984 ถูกลบออกเมื่อใด",
    "context": "CREATE TABLE table_name_35 (deleted VARCHAR, listed VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT proposed FROM table_name_56 WHERE cerclis_id = \"al0001058056\"",
    "question_en": "What was the Proposed date of the entry that has a CERCLIS ID of al0001058056?",
    "question_th": "วันที่เสนอของรายการที่มี CERCLIS ID เป็น 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_en": "What first appeared in 1966 in the comic X-2-Y?",
    "question_th": "อะไรปรากฏตัวครั้งแรกในปี 1966 ในการ์ตูนเรื่อง 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_en": "Which baseball team is class AAA?",
    "question_th": "ทีมเบสบอลทีมไหนระดับ 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_en": "Where does Collingwood play their games?",
    "question_th": "Collingwood เล่นเกมของพวกเขาที่ไหน?",
    "context": "CREATE TABLE table_name_55 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_20 WHERE player = \"robert nkemdiche\"",
    "question_en": "Which position does Robert Nkemdiche play?",
    "question_th": "โรเบิร์ต เอ็นเคมดิเช่ เล่นตำแหน่งไหน?",
    "context": "CREATE TABLE table_name_20 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_59 WHERE player = \"reuben foster\"",
    "question_en": "What is Reuben Foster's college?",
    "question_th": "วิทยาลัยของ Reuben Foster คืออะไร",
    "context": "CREATE TABLE table_name_59 (college VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_68 WHERE hometown = \"muscle shoals, alabama\"",
    "question_en": "Which position does the player from Muscle Shoals, Alabama play?",
    "question_th": "นักเตะจาก Muscle Shoals, Alabama เล่นตำแหน่งไหน?",
    "context": "CREATE TABLE table_name_68 (position VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_43 WHERE college = \"virginia\"",
    "question_en": "Which player is attending college at Virginia?",
    "question_th": "ผู้เล่นคนไหนกำลังเข้าเรียนที่วิทยาลัยที่เวอร์จิเนีย?",
    "context": "CREATE TABLE table_name_43 (player VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_94 WHERE school = \"hoover high school\"",
    "question_en": "Which player attended Hoover High School?",
    "question_th": "ผู้เล่นคนไหนที่เข้าเรียนที่ 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_en": "What is the team's record on may 12 when they play the giants?",
    "question_th": "สถิติของทีมเมื่อวันที่ 12 พ.ค. เจอกับยักษ์ใหญ่เป็นอย่างไรบ้าง?",
    "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_en": "What is the attendance at the game where San Jose was the visitor on May 4?",
    "question_th": "การเข้าร่วมงานในเกมที่ซาน โฮเซ่ เป็นผู้มาเยือนในวันที่ 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_en": "Who was the home team on the May 2 game?",
    "question_th": "เจ้าบ้านในเกมวันที่ 2 พฤษภาคมคือใคร?",
    "context": "CREATE TABLE table_name_30 (home VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_56 WHERE crowd > 20 OFFSET 000",
    "question_en": "What date is the crowd larger than 20,000?",
    "question_th": "ฝูงชนจะเกิน 20,000 คนในวันไหน?",
    "context": "CREATE TABLE table_name_56 (date VARCHAR, crowd INTEGER)"
  },
  {
    "answer": "SELECT record FROM table_name_85 WHERE score = \"11-10\"",
    "question_en": "What was the record when the score was 11-10?",
    "question_th": "สถิติเมื่อสกอร์ 11-10 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_85 (record VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_9 WHERE attendance = \"22,713\"",
    "question_en": "What was the record when the attendance was 22,713?",
    "question_th": "มีสถิติผู้เข้าร่วม 22,713 คนเป็นประวัติการณ์อย่างไร?",
    "context": "CREATE TABLE table_name_9 (record VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_14 WHERE record = \"49-61\"",
    "question_en": "What was the attendance at the game when the record was 49-61?",
    "question_th": "ผู้เข้าชมเกมเมื่อสถิติอยู่ที่ 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_en": "On what date was there a game in which the opponent was the Detroit Tigers, and the attendance was 38,639?",
    "question_th": "มีเกมวันที่ใดที่คู่ต่อสู้คือดีทรอยต์ไทเกอร์สและมีผู้เข้าชม 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_en": "What is the free sotware with the latest stable date version of 1.1?",
    "question_th": "ซอฟต์แวร์ฟรีที่มีเวอร์ชันเสถียรล่าสุดคือ 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_en": "Name the software with the latest stable date of 0.6.1",
    "question_th": "ตั้งชื่อซอฟต์แวร์ด้วยวันที่เสถียรล่าสุดคือ 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_en": "Name the cost for latest stable date of online",
    "question_th": "ตั้งชื่อต้นทุนสำหรับวันที่คงที่ล่าสุดของออนไลน์",
    "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_en": "What is the birth place of the prime minister who served George V and entered office on 23 October 1922?",
    "question_th": "บ้านเกิดของนายกรัฐมนตรีซึ่งรับใช้พระเจ้าจอร์จที่ 5 และเข้ารับตำแหน่งเมื่อวันที่ 23 ตุลาคม พ.ศ. 2465 คือที่ใด",
    "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_en": "To which political party did the prime minister who served under George V and was born in Manchester belong?",
    "question_th": "นายกรัฐมนตรีซึ่งดำรงตำแหน่งภายใต้การนำของจอร์จที่ 5 และเกิดในแมนเชสเตอร์สังกัดพรรคการเมืองใด",
    "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_en": "What date did the prime minister who entered office on 7 December 1916 leave office?",
    "question_th": "นายกรัฐมนตรีที่เข้ารับตำแหน่งเมื่อวันที่ 7 ธันวาคม พ.ศ. 2459 ออกจากตำแหน่งเมื่อใด",
    "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_en": "What monarch(s) did Stanley Baldwin (1st ministry) serve?",
    "question_th": "Stanley Baldwin (พันธกิจที่ 1) รับใช้กษัตริย์องค์ใด",
    "context": "CREATE TABLE table_name_18 (monarchs_served VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_60 WHERE game_site = \"rich stadium\"",
    "question_en": "What is the date of the game played at rich stadium?",
    "question_th": "แข่งที่ริช สเตเดี้ยมวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_60 (date VARCHAR, game_site VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_38 WHERE player = \"chito victolero\"",
    "question_en": "What college has Chito Victolero?",
    "question_th": "วิทยาลัยใดมี Chito Victolero?",
    "context": "CREATE TABLE table_name_38 (college VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_43 WHERE player = \"jojo manalo\"",
    "question_en": "What college has Jojo Manalo?",
    "question_th": "วิทยาลัยใดมี 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_en": "What is the pick number for the College of Perpetual help with the Coca-Cola Tigers as a PBA team?",
    "question_th": "หมายเลขเลือกสำหรับความช่วยเหลือจาก College of Perpetual กับ Coca-Cola Tigers ในฐานะทีม PBA คืออะไร",
    "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_en": "What is the score of the game on May 5?",
    "question_th": "สกอร์เกมวันที่ 5 พ.ค. เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_50 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_1 WHERE attendance = \"18,084\"",
    "question_en": "What is the record of the game with 18,084 in attendance?",
    "question_th": "สถิติเกมที่มีผู้เข้าชม 18,084 คนเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_1 (record VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_36 WHERE date = \"may 30\"",
    "question_en": "What is the record of the game on May 30?",
    "question_th": "สถิติเกมวันที่ 30 พ.ค. เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_36 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT third_place FROM table_name_34 WHERE tournament = \"zurich\"",
    "question_en": "Who won third place in the Zurich Tournament?",
    "question_th": "ใครได้อันดับสามในการแข่งขันซูริก?",
    "context": "CREATE TABLE table_name_34 (third_place VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_79 WHERE score = \"7–6 (7–3) , 2–6, [10–6]\"",
    "question_en": "Who was the winner with a score of 7–6 (7–3) , 2–6, [10–6]?",
    "question_th": "ใครเป็นผู้ชนะด้วยคะแนน 7–6 (7–3) , 2–6, [10–6]?",
    "context": "CREATE TABLE table_name_79 (winner VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_23 WHERE winner = \"thomas enqvist\"",
    "question_en": "Which tournament did Thomas Enqvist win?",
    "question_th": "Thomas Enqvist ชนะการแข่งขันใด",
    "context": "CREATE TABLE table_name_23 (tournament VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_59 WHERE runner_up = \"tim henman\"",
    "question_en": "Which tournament was Tim Henman the runner-up in?",
    "question_th": "Tim Henman เป็นรองแชมป์ทัวร์นาเมนต์ใด",
    "context": "CREATE TABLE table_name_59 (tournament VARCHAR, runner_up VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_40 WHERE runs = \"153\"",
    "question_en": "What is the venue where 153 runs were scored?",
    "question_th": "สนามไหนที่ทำคะแนนได้ 153 รัน?",
    "context": "CREATE TABLE table_name_40 (venue VARCHAR, runs VARCHAR)"
  },
  {
    "answer": "SELECT partnerships FROM table_name_17 WHERE versus = \"namibia\" AND runs = \"166*\"",
    "question_en": "What is the partnership in the game with 166* runs and an opponent of Namibia?",
    "question_th": "ความร่วมมือในเกมด้วยการวิ่ง 166* ครั้งและเป็นคู่ต่อสู้ของนามิเบียคืออะไร?",
    "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_en": "What is the date of the game against South Africa and 2nd wickets?",
    "question_th": "เกมกับแอฟริกาใต้และประตูที่ 2 ตรงกับวันที่เท่าไหร่?",
    "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_en": "Who was the Away team that played at Carlton on 11 June 1966?",
    "question_th": "ทีมเยือนที่เล่นให้กับคาร์ลตันเมื่อวันที่ 11 มิถุนายน พ.ศ. 2509 คือใคร?",
    "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_en": "What was the smallest crowd at a home game of carlton?",
    "question_th": "ฝูงชนที่น้อยที่สุดในเกมเหย้าของคาร์ลตันคือกลุ่มใด?",
    "context": "CREATE TABLE table_name_93 (crowd INTEGER, home_team VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_43 WHERE year = \"n.m.\"",
    "question_en": "What's the title for year n.m.?",
    "question_th": "ชื่อปี nm คืออะไร?",
    "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_en": "What is the language for translators ritah meltser and amatsyah porat?",
    "question_th": "ภาษาสำหรับนักแปล ritah Meltser และ 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_en": "What's the fewest number of pages for the title al-jiniral fi matahatihi?",
    "question_th": "ชื่อเรื่อง 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_en": "What is the date for Zouave?",
    "question_th": "Zouave วันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_99 (date VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_39 WHERE name = \"granville\"",
    "question_en": "What is the date for the name of Granville?",
    "question_th": "ชื่อแกรนวิลล์คือวันที่เท่าไหร่?",
    "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_en": "What is the name of the ship sunk by U-305 on 17 March 1943?",
    "question_th": "เรือลำดังกล่าวจมโดย U-305 เมื่อวันที่ 17 มีนาคม พ.ศ. 2486 ชื่ออะไร",
    "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_en": "Which date's visitor was jazz, when the leading scorer was Mehmet Okur (22)?",
    "question_th": "ผู้มาเยือนคือแจ๊สในวันไหน เมื่อผู้ทำประตูสูงสุดคือ 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_en": "What Club has Fiba European Champion's Cup and an Italian Cup?",
    "question_th": "สโมสรใดมี Fiba European Champion's Cup และ 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_en": "What European Cup is in Israeli Premier League?",
    "question_th": "European Cup อะไรอยู่ใน 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_en": "Which season is Euroleague with Greek Cup?",
    "question_th": "Euroleague กับ 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_en": "Which European Cup is in the 1990-91 season?",
    "question_th": "ยูโรเปียนคัพรายการใดในฤดูกาล 1990-91?",
    "context": "CREATE TABLE table_name_78 (european_cup VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT european_cup FROM table_name_91 WHERE season = \"2006-07\"",
    "question_en": "Which European Cup is in the 2006-07 season?",
    "question_th": "ยูโรเปียนคัพรายการใดในฤดูกาล 2549-50?",
    "context": "CREATE TABLE table_name_91 (european_cup VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT national_league FROM table_name_7 WHERE season = \"1969-70\"",
    "question_en": "Which National League is in 1969-70 season?",
    "question_th": "ลีกแห่งชาติใดอยู่ในฤดูกาล 1969-70?",
    "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_en": "what is the right ascension (j2000) when the apparent magnitude is 13?",
    "question_th": "การขึ้นสู่สวรรค์ที่ถูกต้อง (j2000) คืออะไรเมื่อขนาดปรากฏคือ 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_en": "what is the constellation when the right ascension (j2000) is 09h51m54.0s?",
    "question_th": "กลุ่มดาวเมื่อการขึ้นสู่สวรรค์ที่ถูกต้อง (j2000) คือ 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_en": "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?",
    "question_th": "อะไรคือขนาดที่ปรากฏต่ำสุดเมื่อประเภทของวัตถุคือกาแลคซีกังหัน กลุ่มดาวคือลีโอไมเนอร์ และเลข ngc มากกว่า 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_en": "Name the total number of Draws when goals for is 58 and losses is 12 when goal differences is less than 21",
    "question_th": "ตั้งชื่อจำนวนเสมอเมื่อประตูคือ 58 และแพ้คือ 12 เมื่อผลต่างประตูน้อยกว่า 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_en": "How many goals for where there when draws are less than 11, points of is 54+16 and goals against are less than 39?",
    "question_th": "มีกี่ประตูที่เสมอน้อยกว่า 11 แต้ม 54+16 และประตูที่เสียน้อยกว่า 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_en": "Name the total number of played when points of is 31-7, position is 16 and goals for is less than 35",
    "question_th": "ตั้งชื่อจำนวนที่เล่นทั้งหมดเมื่อแต้มคือ 31-7 อันดับคือ 16 และประตูน้อยกว่า 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_en": "Name the total number of goal difference when the position is more than 20",
    "question_th": "ตั้งชื่อจำนวนผลต่างประตูรวมเมื่อตำแหน่งมากกว่า 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_en": "Name the sum of draws when the position is less than 17 and wins is less than 11",
    "question_th": "ตั้งชื่อผลรวมเสมอเมื่อตำแหน่งน้อยกว่า 17 และชนะน้อยกว่า 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_en": "what is the position is 2012 when the last title is n/a and the first season is 2011?",
    "question_th": "ตำแหน่งอะไรคือปี 2012 เมื่อตำแหน่งสุดท้ายไม่มีและฤดูกาลแรกคือปี 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_en": "what is the last title when the titles is more than 12 and the position in 2012 is 7th",
    "question_th": "ชื่อสุดท้ายคืออะไรเมื่อชื่อมากกว่า 12 และตำแหน่งในปี 2555 อยู่ที่ 7",
    "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_en": "What is the rank number for a placing of 28.5 and a total less than 92.7?",
    "question_th": "อันดับที่ 28.5 และคะแนนรวมน้อยกว่า 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_en": "What is the placing value for a total less than 96.07 in the United States?",
    "question_th": "ค่าวางสำหรับผลรวมน้อยกว่า 96.07 ในสหรัฐอเมริกาคือเท่าใด",
    "context": "CREATE TABLE table_name_15 (placings VARCHAR, total VARCHAR, nation VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(total) FROM table_name_57 WHERE rank = 11",
    "question_en": "What is the total for Rank 11?",
    "question_th": "อันดับ 11 มียอดรวมเท่าไหร่?",
    "context": "CREATE TABLE table_name_57 (total VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT SUM(total) FROM table_name_25 WHERE nation = \"switzerland\"",
    "question_en": "What is the sum of all total values for Switzerland?",
    "question_th": "ผลรวมของมูลค่ารวมทั้งหมดของสวิตเซอร์แลนด์เป็นเท่าใด",
    "context": "CREATE TABLE table_name_25 (total INTEGER, nation VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_66 WHERE total = 92.7",
    "question_en": "What rank goes to a total of 92.7?",
    "question_th": "คะแนนรวม 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_en": "Who has a rank great than 3 and a placing of 64?",
    "question_th": "ใครมีอันดับดีกว่า 3 และอันดับ 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_en": "How many Horizontal Bars have a Team of japan (jpn), and Parallel Bars smaller than 38.924?",
    "question_th": "แท่งแนวนอนมีทีมญี่ปุ่น (jpn) กี่แท่ง และแท่งขนานที่เล็กกว่า 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_en": "How many pommel Horses have Rings of 37.461, and a Total smaller than 229.507?",
    "question_th": "มีม้าอานม้ากี่ตัวที่มีวงแหวน 37.461 และผลรวมน้อยกว่า 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_en": "What is the sum of totals with a Vault of 38.437, and a Floor Exercise smaller than 37.524?",
    "question_th": "ผลรวมของห้องนิรภัยที่ 38.437 และการออกกำลังกายบนพื้นน้อยกว่า 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_en": "How many pommel horses have a Total smaller than 230.019, a Team of china (chn), and a Vault smaller than 38.437?",
    "question_th": "มีม้าปอมเมลกี่ตัวที่มีคะแนนรวมน้อยกว่า 230.019 ทีมจีน (chn) และห้องนิรภัยเล็กกว่า 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_en": "What is the title where the studio was RKO, the role was Dolly, and the year was later than 1943?",
    "question_th": "ชื่อสตูดิโอคือ RKO บทบาทคือ Dolly และปีต่อมาคือปี 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_en": "Who was the director for To Have and Have Not, earlier than 1945 with WB studio?",
    "question_th": "ใครเป็นผู้กำกับ To Have and Have Not ก่อนปี 1945 กับ 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_en": "What year was The Horn Blows at Midnight, directed by Raoul Walsh?",
    "question_th": "The Horn Blows at Midnight กำกับโดย 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_en": "What title was directed by Raoul Walsh later than 1945?",
    "question_th": "ราอูล วอลช์ กำกับชื่อเรื่องอะไรภายหลังปี 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_en": "What was the studio for The Hard Way in 1943?",
    "question_th": "สตูดิโอสำหรับ The Hard Way ในปี 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_en": "Which team plays at Lake Oval?",
    "question_th": "ทีมใดเล่นที่ 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_en": "What was the away score when they played at Brunswick Street Oval?",
    "question_th": "สกอร์ทีมเยือนตอนเล่นที่บรันสวิค สตรีท โอวัลเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_92 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_13 WHERE home_team = \"south melbourne\"",
    "question_en": "Where was South Melbourne played?",
    "question_th": "เซาท์ เมลเบิร์น เล่นที่ไหน?",
    "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_en": "Where week is greater than 14 and Opponent is Dallas Cowboys, what is the result?",
    "question_th": "สัปดาห์ไหนมากกว่า 14 และฝ่ายตรงข้ามคือ Dallas Cowboys ผลลัพธ์จะเป็นอย่างไร?",
    "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_en": "Where week is greater than 7 and attendance is 66,251 what is the result?",
    "question_th": "โดยที่สัปดาห์มากกว่า 7 และผู้เข้าร่วม 66,251 ผลลัพธ์คืออะไร?",
    "context": "CREATE TABLE table_name_31 (result VARCHAR, week VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_61 WHERE attendance = \"79,431\"",
    "question_en": "Where attendance is 79,431 what is date?",
    "question_th": "ผู้เข้าร่วมอยู่ที่ไหน 79,431 วันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_61 (date VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_89 WHERE date = \"september 13, 1998\"",
    "question_en": "Where Date is september 13, 1998 what is result?",
    "question_th": "โดยวันที่ 13 กันยายน 2541 ผลเป็นอย่างไร?",
    "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_en": "What did the away team score at Junction oval?",
    "question_th": "ทีมเยือนทำประตูที่จังชั่นโอวัลได้เท่าไหร่?",
    "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_en": "Name the score when the home is ny islanders and the visitor is montreal",
    "question_th": "ตั้งชื่อคะแนนเมื่อบ้านเป็นชาวเกาะและผู้มาเยือนคือมอนทรีออล",
    "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_en": "Name the score when the decision is dipietro and the visitor is philadelphia",
    "question_th": "ตั้งชื่อคะแนนเมื่อการตัดสินใจคือไดปิเอโตร และผู้มาเยือนคือฟิลาเดลเฟีย",
    "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_en": "Name the score when it had a decision of dipietro and visitor of ny islanders with home of colorado",
    "question_th": "ตั้งชื่อคะแนนเมื่อมีการตัดสินใจของดิปิเอโตรและผู้มาเยือนชาวเกาะใด ๆ ที่มีบ้านในโคโลราโด",
    "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_en": "Name the least attendance with carolina visitor",
    "question_th": "ตั้งชื่อการเข้าร่วมน้อยที่สุดกับผู้เยี่ยมชมแคโรไลนา",
    "context": "CREATE TABLE table_name_97 (attendance INTEGER, visitor VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_29 WHERE away_team = \"carlton\"",
    "question_en": "What Venue had Carlton has the Away team?",
    "question_th": "สถานที่ใดที่คาร์ลตันมีทีมเยือน?",
    "context": "CREATE TABLE table_name_29 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_14 WHERE high_points = \"clippers\"",
    "question_en": "What is the record when Clippers have the high points?",
    "question_th": "คลิปเปอร์สมีแต้มสูงมีสถิติเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_14 (record VARCHAR, high_points VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_name_51 WHERE high_rebounds = \"ot\"",
    "question_en": "What had the high points when OT had high rebounds?",
    "question_th": "อะไรคือจุดสูงสุดเมื่อ OT มีการรีบาวด์สูง?",
    "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–13\"",
    "question_en": "On what date did the Suns have high points with a record of 33–13?",
    "question_th": "Suns มีคะแนนสูงสุดด้วยสถิติ 33–13 ในวันที่ใด",
    "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_en": "Who has the high assists when location attendance is 20,562?",
    "question_th": "ใครเป็นผู้ช่วยเหลือได้สูงเมื่อผู้เข้าร่วมสถานที่คือ 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_en": "Which Bronze has a Silver smaller than 1, and a Total larger than 3?",
    "question_th": "บรอนซ์ใดมีเงินน้อยกว่า 1 และผลรวมมากกว่า 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_en": "Which Gold has a Nation of united states, and a Total larger than 5?",
    "question_th": "ทองคำใดมีประเทศเป็นสหรัฐอเมริกาและมียอดรวมมากกว่า 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_en": "Which Bronze has a Nation of argentina, and a Silver smaller than 0?",
    "question_th": "เหรียญทองแดงใดมีประเทศอาร์เจนตินา และเหรียญเงินมีค่าน้อยกว่า 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_en": "Which Bronze has a Silver of 2, and a Total smaller than 5?",
    "question_th": "บรอนซ์ใดมีเงินเท่ากับ 2 และผลรวมน้อยกว่า 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_en": "How many spectators were at the away team Carlton?",
    "question_th": "ทีมเยือนคาร์ลตันมีผู้ชมกี่คน?",
    "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_en": "What school colors for the friends' school with over 1000 enrolled?",
    "question_th": "โรงเรียนของเพื่อนที่มีผู้ลงทะเบียนเรียนมากกว่า 1,000 คนมีสีอะไรสำหรับโรงเรียนนี้?",
    "context": "CREATE TABLE table_name_70 (school VARCHAR, enrolment VARCHAR)"
  },
  {
    "answer": "SELECT MIN(enrolment) FROM table_name_67 WHERE founded > 1995",
    "question_en": "What is the low enrolment for schools founded after 1995?",
    "question_th": "โรงเรียนที่ก่อตั้งหลังปี 1995 มีการลงทะเบียนต่ำเพียงใด",
    "context": "CREATE TABLE table_name_67 (enrolment INTEGER, founded INTEGER)"
  },
  {
    "answer": "SELECT location FROM table_name_65 WHERE school = \"the friends' school\"",
    "question_en": "WHere is the friends' school?",
    "question_th": "โรงเรียนของเพื่อนอยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_65 (location VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT system FROM table_name_58 WHERE current_version = \"3.0.0\"",
    "question_en": "What is the System with the Current version 3.0.0?",
    "question_th": "ระบบที่เป็นเวอร์ชันปัจจุบัน 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_en": "What is the Name when the License is gpl and the Current Version is 1.72?",
    "question_th": "ชื่ออะไรเมื่อใบอนุญาตเป็น gpl และเวอร์ชันปัจจุบันคือ 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_en": "What is the System when the Licence is gpl and the Current Version is 1.72?",
    "question_th": "ระบบจะเป็นอย่างไรเมื่อใบอนุญาตเป็น gpl และเวอร์ชันปัจจุบันคือ 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_en": "What is the System with a freeware License?",
    "question_th": "ระบบที่มีลิขสิทธิ์ฟรีแวร์คืออะไร?",
    "context": "CREATE TABLE table_name_9 (system VARCHAR, license VARCHAR)"
  },
  {
    "answer": "SELECT license FROM table_name_98 WHERE platform = \"windows\" AND name = \"altirra\"",
    "question_en": "What is the License when the Platform is windows and the Name is Altirra?",
    "question_th": "ใบอนุญาตคืออะไรเมื่อแพลตฟอร์มเป็น windows และชื่อคือ 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_en": "What Platform has a Current Version 0.6.2?",
    "question_th": "แพลตฟอร์มใดมีเวอร์ชันปัจจุบัน 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_en": "What is the average attendance on October 9, 1983?",
    "question_th": "ผู้เข้าร่วมโดยเฉลี่ยในวันที่ 9 ตุลาคม พ.ศ. 2526 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_11 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT MIN(attendance) FROM table_name_19 WHERE date = \"september 4, 1983\"",
    "question_en": "What is the lowest attendance on September 4, 1983?",
    "question_th": "ผู้เข้าร่วมต่ำสุดในวันที่ 4 กันยายน พ.ศ. 2526 คือเท่าใด",
    "context": "CREATE TABLE table_name_19 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT mascot FROM table_name_51 WHERE year_opened = \"1970\"",
    "question_en": "What is the mascot whose school opened in 1970?",
    "question_th": "มาสคอตตัวไหนที่โรงเรียนเปิดในปี 1970?",
    "context": "CREATE TABLE table_name_51 (mascot VARCHAR, year_opened VARCHAR)"
  },
  {
    "answer": "SELECT principal FROM table_name_92 WHERE mascot = \"patriots\"",
    "question_en": "What principal has a school mascot of the patriots?",
    "question_th": "อาจารย์ใหญ่คนไหนมีตัวนำโชคประจำโรงเรียนของผู้รักชาติ?",
    "context": "CREATE TABLE table_name_92 (principal VARCHAR, mascot VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_43 WHERE score = \"24–28\"",
    "question_en": "What was the venue when the score was 24–28?",
    "question_th": "สถานที่จัดงานเมื่อสกอร์อยู่ที่ 24–28 คือที่ไหน?",
    "context": "CREATE TABLE table_name_43 (venue VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT MIN(pick) FROM table_name_96 WHERE school = \"stanford university\"",
    "question_en": "What is the lowest pick when the School is Stanford University?",
    "question_th": "อะไรคือตัวเลือกที่ต่ำที่สุดเมื่อโรงเรียนคือมหาวิทยาลัยสแตนฟอร์ด?",
    "context": "CREATE TABLE table_name_96 (pick INTEGER, school VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_67 WHERE pick = 40",
    "question_en": "What Team has a Pick of 40?",
    "question_th": "ทีมใดมีตัวเลือก 40?",
    "context": "CREATE TABLE table_name_67 (team VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_78 WHERE away_team = \"hawthorn\"",
    "question_en": "What date was the away team Hawthorn?",
    "question_th": "ฮอว์ธอร์นทีมเยือนจัดวันไหน?",
    "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_en": "What is the high loss total for players with zero wins and a win % greater than 0?",
    "question_th": "อะไรคือผลรวมการสูญเสียที่สูงสำหรับผู้เล่นที่ชนะเป็นศูนย์และมี % ชนะมากกว่า 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_en": "What is the win % for the QB with 3 starts?",
    "question_th": "% การชนะสำหรับ QB ที่มีการออกสตาร์ท 3 ครั้งเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_7 (win__percentage VARCHAR, starts VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_90 WHERE away_team = \"geelong\"",
    "question_en": "What venue did geelong play an away game?",
    "question_th": "จีลองเล่นเกมเยือนที่สนามไหน?",
    "context": "CREATE TABLE table_name_90 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_28 WHERE away_team = \"melbourne\"",
    "question_en": "What home team played an away team of melbourne?",
    "question_th": "เจ้าบ้านทีมไหนเล่นทีมเยือนเมลเบิร์น?",
    "context": "CREATE TABLE table_name_28 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_53 WHERE overall = \"130\"",
    "question_en": "Which player had an overall pick of 130?",
    "question_th": "ผู้เล่นคนใดมีคะแนนรวม 130 คะแนน?",
    "context": "CREATE TABLE table_name_53 (player VARCHAR, overall VARCHAR)"
  },
  {
    "answer": "SELECT AVG(round) FROM table_name_8 WHERE player = \"corey cowick\"",
    "question_en": "What round was Corey Cowick picked?",
    "question_th": "Corey Cowick เลือกรอบใด",
    "context": "CREATE TABLE table_name_8 (round INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_20 WHERE club_team = \"miami university (ccha)\"",
    "question_en": "What position does the player from the Miami University (CCHA) club team play?",
    "question_th": "ผู้เล่นจากทีมสโมสรมหาวิทยาลัยไมอามี (CCHA) เล่นตำแหน่งใด",
    "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_en": "What most recent year had North Melbourne as a team and Hamish Mcintosh as a player?",
    "question_th": "ล่าสุดปีที่แล้วมีนอร์ธ เมลเบิร์นเป็นทีมและมีฮามิช แมคอินทอชเป็นผู้เล่น?",
    "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_en": "Which score had Essendon as an opponent and Steven Clark as a player?",
    "question_th": "เอสเซนดอนเป็นคู่ต่อสู้และสตีเว่น คลาร์กเป็นผู้เล่นทำคะแนนใด?",
    "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_en": "Which team got a Behind outcome and had an opponent of Brisbane Bears?",
    "question_th": "ทีมไหนได้คะแนน Behind และมีคู่ต่อสู้ของ 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_en": "When did the north melbourne team play?",
    "question_th": "ทีมนอร์ธ เมลเบิร์น ลงเล่นเมื่อไหร่?",
    "context": "CREATE TABLE table_name_7 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_81 WHERE venue = \"junction oval\"",
    "question_en": "Who was the away team at junction oval?",
    "question_th": "ทีมเยือนที่จังก์ชั่นโอวัลคือใคร?",
    "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_en": "What was the home team's score at junction oval?",
    "question_th": "สกอร์เจ้าบ้านที่จังชั่นโอวัลเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_17 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_20 WHERE away_team = \"essendon\"",
    "question_en": "What venue was essendon the away team?",
    "question_th": "เอสเซนดอนเป็นทีมเยือนที่สนามไหน?",
    "context": "CREATE TABLE table_name_20 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_16 WHERE venue = \"kardinia park\"",
    "question_en": "Who is the home team at kardinia park?",
    "question_th": "เจ้าบ้านคาร์ดิเนีย พาร์ค คือใคร?",
    "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_en": "What is the storage stability of Arsine with a toxicity of 8, and field stability less than 5?",
    "question_th": "ความคงตัวในการเก็บรักษาของอาร์ซีนที่มีความเป็นพิษเท่ากับ 8 และความเสถียรของสนามน้อยกว่า 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_en": "What is the field stability of Cyanogen Bromide that has an effectiveness of 9?",
    "question_th": "ความเสถียรของสนามของไซยาโนเจนโบรไมด์ที่มีประสิทธิผลเท่ากับ 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_en": "When the Venue is mcg what is the Home team?",
    "question_th": "เมื่อสถานที่จัดงานเป็น mcg ทีมเหย้าคืออะไร?",
    "context": "CREATE TABLE table_name_47 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_84 WHERE away_team = \"hawthorn\"",
    "question_en": "When the Away team was hawthorn, what's the Home team?",
    "question_th": "เมื่อทีมเยือนเป็นฮอว์ธอร์นทีมเหย้าคือทีมอะไร?",
    "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_en": "What is the total associated with a Clean & jerk of 135, and a Snatch of 115?",
    "question_th": "ยอดรวมที่เกี่ยวข้องกับ Clean & Jerk 135 และ Snatch 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_en": "What is the highest Bodyweight associated with a Clean & jerk larger than 120, and a Total (kg) of 245?",
    "question_th": "น้ำหนักตัวสูงสุดที่เกี่ยวข้องกับ Clean & Jerk ที่มีขนาดใหญ่กว่า 120 และน้ำหนักรวม (กก.) เท่ากับ 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_en": "What is the sum Total (kg) associated with a Snatch less than 110, and a Clean & jerk larger than 120?",
    "question_th": "ผลรวมทั้งหมด (กก.) ที่เกี่ยวข้องกับ Snatch ที่น้อยกว่า 110 และ Clean & Jerk ที่ใหญ่กว่า 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_en": "How many people have a Clean & jerk smaller than 142.5, a Bodyweight smaller than 55.58, and a Total (kg) larger than 210?",
    "question_th": "มีกี่คนที่น้ำหนักตัวน้อยกว่า 142.5 น้ำหนักตัวน้อยกว่า 55.58 และน้ำหนักรวม (กก.) มากกว่า 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__ = \"°44′07″\"",
    "question_en": "Tell me the object type which has an apparent magnitude more than 10.6 and declination of °44′07″",
    "question_th": "บอกประเภทของวัตถุที่มีขนาดปรากฏมากกว่า 10.6 และค่าความลาดเอียง °44′07″",
    "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_en": "Tell me the declination with apparent magnitude more than 10.4 and NGC number of 5112",
    "question_th": "บอกความเสื่อมที่มีขนาดปรากฏมากกว่า 10.4 และเลข NGC 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_en": "Which event has a Method of submission (triangle choke), and an Opponent of thiago tavares?",
    "question_th": "รายการใดมีวิธีการยอมแพ้ (Triangle Choke) และฝ่ายตรงข้ามของ 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_en": "What is the result with a Round of 3, and an Opponent of keith wisniewski?",
    "question_th": "ผลการแข่งขันรอบ 3 ทีมสุดท้าย และฝ่ายตรงข้ามของคีธ วิสเนียฟสกี้เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_32 (res VARCHAR, round VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_11 WHERE opponent = \"eddie miller\"",
    "question_en": "Which time has eddie miller as opponent?",
    "question_th": "เอ็ดดี้ มิลเลอร์เป็นคู่ต่อสู้เวลาไหน?",
    "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_en": "What's the average Rd number for dane jackson with a pick number over 44?",
    "question_th": "หมายเลขถัวเฉลี่ยของเดน แจ็คสันที่หมายเลขเลือกมากกว่า 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_en": "What's the largest pick number for corrie d'alessio with a rd number over 6?",
    "question_th": "หมายเลขเลือกที่ใหญ่ที่สุดสำหรับ Corrie d'alessio ที่มีหมายเลขมากกว่า 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–85\"",
    "question_en": "Who was the visiting team at the Cavaliers game that had a score of 121–85?",
    "question_th": "ใครคือทีมเยือนในเกมคาวาเลียร์สที่มีคะแนน 121–85?",
    "context": "CREATE TABLE table_name_29 (visitor VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_45 WHERE home_team = \"melbourne\"",
    "question_en": "On what date did Melbourne play as the home team?",
    "question_th": "เมลเบิร์นลงเล่นเป็นเจ้าบ้านวันไหน?",
    "context": "CREATE TABLE table_name_45 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_52 WHERE venue = \"western oval\"",
    "question_en": "What team owns the Venue of western oval?",
    "question_th": "ทีมใดเป็นเจ้าของสถานที่จัดงานวงรีตะวันตก?",
    "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_en": "What did the Victoria park home team score?",
    "question_th": "ทีมเหย้า วิคตอเรีย พาร์ค ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_1 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(crowd) FROM table_name_98 WHERE home_team = \"geelong\"",
    "question_en": "What was the crowd size when geelong played home?",
    "question_th": "ขนาดฝูงชนเมื่อจีลองเล่นในบ้านคือเท่าไร?",
    "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_en": "Name the most that attendend when the venue was td banknorth garden and the series of montreal leads 3-1",
    "question_th": "ตั้งชื่อผู้เข้าร่วมมากที่สุดเมื่อสถานที่คือ td banknorth garden และซีรีส์ของมอนทรีออลนำ 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_en": "Name the decision for boston bruins visitor",
    "question_th": "ตั้งชื่อการตัดสินใจสำหรับผู้มาเยือนบอสตันบรูอินส์",
    "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_en": "What is the average total medals Egypt, who has less than 2 gold, has?",
    "question_th": "เหรียญรางวัลรวมเฉลี่ยของอียิปต์ที่มีน้อยกว่า 2 เหรียญทองมีเท่าไหร่?",
    "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_en": "What is the total number of gold medals Egypt, who has less than 0 silver, has?",
    "question_th": "อียิปต์ที่ได้เหรียญทองน้อยกว่า 0 เหรียญมีทั้งหมดกี่เหรียญ?",
    "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_en": "What is the highest gold a team with less than 3 silver and more than 5 bronze medals has?",
    "question_th": "ทีมที่ได้เหรียญทองน้อยกว่า 3 เหรียญเงินและมากกว่า 5 เหรียญทองแดงมีเหรียญทองสูงสุดเท่าใด",
    "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_en": "What is the rank of the team with 1 bronze and 0 gold medals?",
    "question_th": "ทีมอันดับไหนได้ 1 เหรียญทองแดง 0 เหรียญทอง?",
    "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_en": "What is the average % of population Tunisia, which has an average relative annual growth smaller than 1.03?",
    "question_th": "% เฉลี่ยของประชากรตูนิเซียซึ่งมีการเติบโตโดยเฉลี่ยต่อปีน้อยกว่า 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_en": "Who was the home team at Kardinia Park?",
    "question_th": "ทีมเหย้าที่คาร์ดิเนีย พาร์คคือใคร?",
    "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_en": "What was Footscray's score as the home team?",
    "question_th": "ฟุตสเครย์ทำแต้มในบ้านเท่าไหร่?",
    "context": "CREATE TABLE table_name_15 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_17 WHERE home = \"suns\"",
    "question_en": "On what date was there a competition in which the home team was the Suns?",
    "question_th": "มีแข่งวันไหนเจ้าบ้านเป็นเดอะซันส์?",
    "context": "CREATE TABLE table_name_17 (date VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT leading_scorer FROM table_name_41 WHERE visitor = \"suns\"",
    "question_en": "In the competition in which the visiting team was the Suns, who was the leading scorer?",
    "question_th": "ในการแข่งขันที่ทีมเยือนคือเดอะซันส์ใครเป็นผู้ทำประตูสูงสุด?",
    "context": "CREATE TABLE table_name_41 (leading_scorer VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_11 WHERE home = \"mavericks\"",
    "question_en": "What was the record in the competition in which the home team was the Mavericks?",
    "question_th": "แมฟเวอริกส์มีสถิติในการแข่งขันที่เจ้าบ้านเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_11 (record VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT AVG(year) FROM table_name_33 WHERE movie = \"rangam\"",
    "question_en": "What's the average year a Rangam movie came out?",
    "question_th": "ปีเฉลี่ยที่ภาพยนตร์ Rangam ออกฉายคือเท่าไร?",
    "context": "CREATE TABLE table_name_33 (year INTEGER, movie VARCHAR)"
  },
  {
    "answer": "SELECT song_title FROM table_name_84 WHERE movie = \"amma cheppindi\"",
    "question_en": "What was the name of the song in Amma Cheppindi?",
    "question_th": "เพลงใน 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_en": "What was the average year that Thuppakki movies came out?",
    "question_th": "โดยเฉลี่ยแล้วภาพยนตร์ทัพปักกิออกฉายคือปีใด?",
    "context": "CREATE TABLE table_name_12 (year INTEGER, movie VARCHAR)"
  },
  {
    "answer": "SELECT SUM(games_played) FROM table_name_89 WHERE goals_scored = \"2\"",
    "question_en": "How many games had 2 goals scored?",
    "question_th": "มีกี่เกมที่ยิงได้ 2 ประตู?",
    "context": "CREATE TABLE table_name_89 (games_played INTEGER, goals_scored VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_74 WHERE week = 11",
    "question_en": "What was the result week 11?",
    "question_th": "สัปดาห์ที่ 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_en": "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",
    "question_th": "ระบุจำนวนคะแนนเสียงประชาธิปไตยทั้งหมด เมื่อคะแนนเสียงอื่น ๆ น้อยกว่า 18 และเปอร์เซ็นต์ของคะแนนเสียง R คือ 52.63% และคะแนนเสียงตั้งแต่ปี พ.ศ. 2399 น้อยกว่า 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_en": "On what Date was the Opponent Panathinaikos?",
    "question_th": "ฝ่ายตรงข้ามพานาธิไนกอสจัดวันไหน?",
    "context": "CREATE TABLE table_name_14 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT SUM(crowd) FROM table_name_57 WHERE home_team = \"st kilda\"",
    "question_en": "How many people attended games with st kilda as the home side?",
    "question_th": "มีกี่คนที่เข้าชมเกมโดยมีเซนต์คิลดาเป็นเจ้าบ้าน?",
    "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_en": "Who is the home team when the crowd is over 32,485?",
    "question_th": "เจ้าบ้านใครเมื่อฝูงชนทะลุ 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_en": "What is the average number of floors for buildings in mecca ranked above 12?",
    "question_th": "จำนวนชั้นเฉลี่ยของอาคารในเมกกะที่มีอันดับสูงกว่า 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_en": "What city is the lamar tower 1, ranked above 5?",
    "question_th": "หอคอยลามาร์ 1 อยู่ในอันดับที่ 5 เหนือเมืองใด",
    "context": "CREATE TABLE table_name_87 (city VARCHAR, rank VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_33 WHERE floors > 57",
    "question_en": "What city has a building with over 57 floors?",
    "question_th": "เมืองใดมีอาคารมากกว่า 57 ชั้น?",
    "context": "CREATE TABLE table_name_33 (city VARCHAR, floors INTEGER)"
  },
  {
    "answer": "SELECT COUNT(laps) FROM table_name_32 WHERE driver = \"antônio pizzonia\"",
    "question_en": "How many laps did antônio pizzonia do?",
    "question_th": "อันโตนิโอ พิซซ่าเนียทำไปกี่รอบ?",
    "context": "CREATE TABLE table_name_32 (laps VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_99 WHERE time_retired = \"handling\"",
    "question_en": "What is the constructor for time/retired of handling?",
    "question_th": "ตัวสร้างสำหรับเวลา/การเลิกใช้งานในการจัดการคืออะไร?",
    "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_en": "What was the away team's score at windy hill?",
    "question_th": "ทีมเยือนวินดี้ ฮิลล์สกอร์เท่าไหร่?",
    "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_en": "What is the highest round of a player from Sweden who plays right wing?",
    "question_th": "ผู้เล่นจากสวีเดนที่เล่นปีกขวารอบสูงสุดคือทีมใด?",
    "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_en": "What is the position of a player from a round less than 4 and an overall of 17?",
    "question_th": "ตำแหน่งผู้เล่นจากรอบที่น้อยกว่า 4 และคะแนนรวม 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_en": "What is the average round of a player with an overall of 138?",
    "question_th": "รอบเฉลี่ยของผู้เล่นที่มีคะแนนรวม 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_en": "Who is the player from Sweden from a round after 3?",
    "question_th": "นักเตะจากสวีเดนในรอบหลัง 3 คนนั้นคือใคร?",
    "context": "CREATE TABLE table_name_77 (player VARCHAR, nationality VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_52 WHERE club_team = \"linköpings hc (se)\"",
    "question_en": "What is the nationality of a player from linköpings hc (se)?",
    "question_th": "ผู้เล่นจาก linköpings 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_en": "What is the crowd size for st kilda as the home team?",
    "question_th": "ขนาดฝูงชนของเซนต์คิลดาในฐานะเจ้าบ้านคือเท่าใด?",
    "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_en": "I want the sum of pages for thistle among roses",
    "question_th": "ฉันต้องการผลรวมของหน้าดอกธิสเซิลท่ามกลางดอกกุหลาบ",
    "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_en": "Who is the manager for FMC Corporation pension fund?",
    "question_th": "ใครเป็นผู้จัดการกองทุนบำเหน็จบำนาญของ FMC Corporation?",
    "context": "CREATE TABLE table_name_3 (manager VARCHAR, fund VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_28 WHERE character = \"frank tripp\"",
    "question_en": "What was the position of Frank Tripp?",
    "question_th": "ตำแหน่ง 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_en": "What was the final episode credited of 187?",
    "question_th": "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_en": "Which class at 55 built?",
    "question_th": "ปี55สร้างคลาสไหนครับ?",
    "context": "CREATE TABLE table_name_66 (class VARCHAR, no_built VARCHAR)"
  },
  {
    "answer": "SELECT loco_nos FROM table_name_80 WHERE class = \"e3\"",
    "question_en": "What is the Loco Nos of the e3 class?",
    "question_th": "Loco Nos ของคลาส e3 คืออะไร?",
    "context": "CREATE TABLE table_name_80 (loco_nos VARCHAR, class VARCHAR)"
  },
  {
    "answer": "SELECT SUM(crowd) FROM table_name_17 WHERE venue = \"junction oval\"",
    "question_en": "How many people attended Junction Oval?",
    "question_th": "มีผู้เข้าร่วม 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_en": "What was the score of the team that played against Fitzroy?",
    "question_th": "ทีมที่เล่นกับฟิตซ์รอยได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_97 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT stadium FROM table_name_7 WHERE city = \"melfi\"",
    "question_en": "What is the name of the stadium for the city of melfi?",
    "question_th": "สนามกีฬาของเมืองเมลฟีชื่ออะไร?",
    "context": "CREATE TABLE table_name_7 (stadium VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT SUM(capacity) FROM table_name_96 WHERE stadium = \"pasquale ianniello\"",
    "question_en": "What is the total capacity for the stadium of pasquale ianniello?",
    "question_th": "ความจุรวมของสนามของ Pasquale Ianniello คือเท่าไร?",
    "context": "CREATE TABLE table_name_96 (capacity INTEGER, stadium VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_25 WHERE airport = \"jaffna airport\"",
    "question_en": "What city is Jaffna Airport in?",
    "question_th": "สนามบินจาฟนาตั้งอยู่ในเมืองใด",
    "context": "CREATE TABLE table_name_25 (city VARCHAR, airport VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_84 WHERE icao = \"tba\"",
    "question_en": "Which city has an ICAO of TBA?",
    "question_th": "เมืองใดมี ICAO ของ TBA?",
    "context": "CREATE TABLE table_name_84 (city VARCHAR, icao VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_99 WHERE college = \"wyoming\"",
    "question_en": "Which player went to the College of Wyoming?",
    "question_th": "ผู้เล่นคนไหนไปเรียนที่วิทยาลัยไวโอมิง?",
    "context": "CREATE TABLE table_name_99 (player VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT MIN(crowd) FROM table_name_6 WHERE away_team = \"richmond\"",
    "question_en": "What was the smallest crowd at a game when Richmond was the away team?",
    "question_th": "คนดูน้อยที่สุดในเกมเมื่อริชมอนด์เป็นทีมเยือนคือทีมใด?",
    "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_en": "Who was the home team at the game that had a crowd of over 24,520?",
    "question_th": "เจ้าบ้านในเกมที่มีผู้ชมกว่า 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_en": "Name the total number of since for belletti",
    "question_th": "ตั้งชื่อจำนวนทั้งหมดตั้งแต่สำหรับเบลเล็ตติ",
    "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_en": "Name the highest goals for youth system and ita",
    "question_th": "ระบุเป้าหมายสูงสุดสำหรับระบบเยาวชนและอิตะ",
    "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_en": "What is the time/retired for eddie irvine with a grid of greater than 3?",
    "question_th": "เวลา/เกษียณสำหรับ Eddie Irvine ที่มีตารางมากกว่า 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_en": "How many laps had a grid of greater than 17 and retired due to collision?",
    "question_th": "มีกี่รอบที่มีตารางมากกว่า 17 และเลิกใช้เนื่องจากการชนกัน",
    "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_en": "How many silvers for south korea with under 1 gold medal?",
    "question_th": "เกาหลีใต้ต่ำกว่า 1 เหรียญทองได้กี่เหรียญ?",
    "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_en": "How many golds for uganda with under 3 total medals?",
    "question_th": "อูกันดามีเหรียญทั้งหมดไม่เกิน 3 เหรียญได้กี่เหรียญทอง",
    "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_en": "How many bronzes for nations ranked above 7, under 3 golds, and under 10 total medals?",
    "question_th": "มีกี่เหรียญทองแดงสำหรับประเทศที่มีอันดับสูงกว่า 7 ต่ำกว่า 3 เหรียญทอง และต่ำกว่า 10 เหรียญทั้งหมด",
    "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_en": "Which week has a result showing L 24-10?",
    "question_th": "สัปดาห์ไหนมีผลแสดง 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_en": "Which week has a Kickoff time of 1:00 with a record of 4-5-1?",
    "question_th": "สัปดาห์ใดมีเวลาคิกออฟ 1:00 น. ด้วยสถิติ 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_en": "Which week has a record of 5-7-1?",
    "question_th": "สัปดาห์ไหนมีสถิติ 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_en": "Who is the opponent on the game that will be played at metropolitan stadium?",
    "question_th": "คู่ต่อสู้ในเกมที่จะเล่นที่สนามกีฬาเมโทรโพลิแทนคือใคร?",
    "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_en": "What did the away team score at Kardinia Park?",
    "question_th": "ทีมเยือนทำประตูที่คาร์ดิเนีย ปาร์คได้เท่าไหร่?",
    "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_en": "What was the away team's score in Junction Oval?",
    "question_th": "ทีมเยือนในจังค์ชั่นโอวัลได้คะแนนเท่าไหร่?",
    "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_en": "What did the away team score at Moorabbin Oval?",
    "question_th": "ทีมเยือนทำประตูที่มูรับบินโอวัลได้เท่าไหร่?",
    "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_en": "Who constructed the car that has a Time/Retired of engine, and over 50 laps?",
    "question_th": "ใครเป็นคนสร้างรถที่มีเวลา/หมดอายุเครื่องยนต์ และวิ่งเกิน 50 รอบ?",
    "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_en": "What is the time/retired for ronnie peterson with under 75 laps and a grid under 15?",
    "question_th": "เวลา/เกษียณสำหรับรอนนี่ ปีเตอร์สันที่ทำรอบต่ำกว่า 75 รอบและกริดต่ำกว่า 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_en": "What is the location of the tournament with more than 6 OWGR points and Ryu Hyun-Woo as the winner?",
    "question_th": "สถานที่ใดของทัวร์นาเมนต์ที่มีคะแนน OWGR มากกว่า 6 คะแนนและมีรยูฮยอนวูเป็นผู้ชนะ?",
    "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_en": "Who was the away team at Arden Street Oval?",
    "question_th": "ทีมเยือนที่ 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_en": "I want the team with assists greater than 118 and rank less than 2",
    "question_th": "ฉันต้องการทีมที่มีแอสซิสต์มากกว่า 118 และอันดับน้อยกว่า 2",
    "context": "CREATE TABLE table_name_10 (team VARCHAR, assists VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_name_25 WHERE rank = 5",
    "question_en": "What region has a 5 rank?",
    "question_th": "ภูมิภาคใดมีอันดับ 5?",
    "context": "CREATE TABLE table_name_25 (region VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT mountain_peak FROM table_name_29 WHERE mountain_range = \"spanish peaks\"",
    "question_en": "Which mountain peak has spanish peaks?",
    "question_th": "ยอดเขาใดมียอดเขาสเปน",
    "context": "CREATE TABLE table_name_29 (mountain_peak VARCHAR, mountain_range VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_83 WHERE home_team = \"essendon\"",
    "question_en": "What date did Essendon play as the home team?",
    "question_th": "เอสเซนดอนลงเล่นเป็นเจ้าบ้านวันไหน?",
    "context": "CREATE TABLE table_name_83 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(crowd) FROM table_name_27 WHERE venue = \"windy hill\"",
    "question_en": "What was the attendance at Windy Hill?",
    "question_th": "การเข้าร่วมที่ 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_en": "What was the smallest crowd of vfl park?",
    "question_th": "คนกลุ่มเล็กที่สุดใน 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_en": "What was the away team score at kardinia park?",
    "question_th": "สกอร์ทีมเยือนที่คาร์ดิเนีย พาร์คเป็นเท่าไหร่?",
    "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_en": "Who was the away team at the home game of north melbourne?",
    "question_th": "ทีมเยือนในเกมเหย้าของ นอร์ธ เมลเบิร์น คือใคร?",
    "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_en": "What is the average number of yards on a red tee that has a hole of 1 and a par above 4?",
    "question_th": "ระยะเฉลี่ยของแท่นทีสีแดงที่มีหลุม 1 และพาร์สูงกว่า 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_en": "How many bronzes did netherlands win?",
    "question_th": "เนเธอร์แลนด์ได้กี่เหรียญทองแดง?",
    "context": "CREATE TABLE table_name_9 (bronze VARCHAR, nation VARCHAR)"
  },
  {
    "answer": "SELECT nation FROM table_name_13 WHERE total = 6",
    "question_en": "What is the nation for 6 total?",
    "question_th": "รวม 6 ประเทศคือประเทศอะไร?",
    "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_en": "What is the bronze when silver is 4 and gold is 1 and the total is more than 2",
    "question_th": "บรอนซ์คืออะไรเมื่อเงินเป็น 4 และทองเป็น 1 และผลรวมมากกว่า 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_en": "Tell me the gold for netherlands",
    "question_th": "บอกทองของเนเธอร์แลนด์หน่อยสิ",
    "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_en": "Which Away team score has a Home team of richmond?",
    "question_th": "สกอร์ทีมเยือนไหนมีเจ้าบ้านริชมอนด์?",
    "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_en": "Which Home team score has an Away team of carlton?",
    "question_th": "สกอร์ทีมเหย้าใดมีทีมเยือนของคาร์ลตัน?",
    "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_en": "What is the total series numbers that is directed by Jefferson Kibbee and has a production code of 2398191?",
    "question_th": "หมายเลขซีรีส์ทั้งหมดที่กำกับโดย Jefferson Kibbee และมีรหัสการผลิต 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_en": "What is the 1st Edition for the Episode 4?",
    "question_th": "ฉบับที่ 1 สำหรับตอนที่ 4 คืออะไร?",
    "context": "CREATE TABLE table_name_77 (episode VARCHAR)"
  },
  {
    "answer": "SELECT 1 AS st_edition FROM table_name_16 WHERE episode = \"11\"",
    "question_en": "What is the 1st Edition for Episode 11?",
    "question_th": "ตอนที่ 11 เล่มที่ 1 คืออะไร?",
    "context": "CREATE TABLE table_name_16 (episode VARCHAR)"
  },
  {
    "answer": "SELECT 3 AS rd_edition FROM table_name_90 WHERE episode = \"4\"",
    "question_en": "What is the 3rd Edition for Episode 4?",
    "question_th": "ฉบับที่ 3 สำหรับตอนที่ 4 คืออะไร?",
    "context": "CREATE TABLE table_name_90 (episode VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_25 WHERE crowd > 4 OFFSET 000",
    "question_en": "Which home teams had crowds larger than 4,000?",
    "question_th": "ทีมเจ้าบ้านใดมีฝูงชนมากกว่า 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_en": "I want to know the date for western oval venue",
    "question_th": "อยากทราบวันจัดงานวงรีตะวันตกครับ",
    "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_en": "What is the declination with a right ascension of 11h53m41.9s?",
    "question_th": "การปฏิเสธด้วยการขึ้นทางขวาที่ 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_en": "What is the 1st leg when team 1 is Chelsea?",
    "question_th": "เลก 1 เมื่อทีม 1 คือ เชลซี คืออะไร?",
    "context": "CREATE TABLE table_name_58 (team_1 VARCHAR)"
  },
  {
    "answer": "SELECT away_team AS score FROM table_name_32 WHERE away_team = \"fitzroy\"",
    "question_en": "What was the away team score, when the away team was Fitzroy?",
    "question_th": "สกอร์ทีมเยือนเมื่อทีมเยือนคือฟิตซ์รอยเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_32 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_70 WHERE away_team = \"melbourne\"",
    "question_en": "What is the name of the home team when the away team was Melbourne?",
    "question_th": "เจ้าบ้านชื่ออะไรเมื่อทีมเยือนเมลเบิร์น?",
    "context": "CREATE TABLE table_name_70 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_50 WHERE venue = \"emcg\"",
    "question_en": "What is the name of the home team that has a venue called EMCG?",
    "question_th": "เจ้าบ้านที่มีสนามเรียกว่า EMCG ชื่ออะไร?",
    "context": "CREATE TABLE table_name_50 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_5 WHERE away_team = \"melbourne\"",
    "question_en": "What is the name of the venue where the game played had an away team of Melbourne?",
    "question_th": "สนามที่เล่นเกมนี้มีทีมเยือนเมลเบิร์นชื่ออะไร?",
    "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_en": "What is the average number lost with a difference of -16, 19 points, and more than 24 against?",
    "question_th": "ตัวเลขเฉลี่ยที่เสียไปมีผลต่าง -16, 19 แต้ม และมากกว่า 24 แต้มเป็นเท่าใด?",
    "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_en": "What is the highest number of losses with 25 points?",
    "question_th": "จำนวนการขาดทุนสูงสุดที่มี 25 คะแนนคือเท่าไร?",
    "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_en": "What is the sum of the difference for 9 draws and over 18 played?",
    "question_th": "ผลรวมของผลต่างจากการเสมอ 9 ครั้งและการเล่นเกิน 18 ครั้งเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_48 (diff INTEGER, drawn VARCHAR, played VARCHAR)"
  },
  {
    "answer": "SELECT MIN(drawn) FROM table_name_36 WHERE lost < 2",
    "question_en": "What is the lowest number drawn with less than 2 lost?",
    "question_th": "เลขต่ำสุดที่จับฉลากได้น้อยกว่า 2 ตัวคือเลขอะไร?",
    "context": "CREATE TABLE table_name_36 (drawn INTEGER, lost INTEGER)"
  },
  {
    "answer": "SELECT SUM(points) FROM table_name_40 WHERE played < 18",
    "question_en": "What is the sum of all points when number played is less than 18?",
    "question_th": "ผลรวมของแต้มทั้งหมดเมื่อหมายเลขที่เล่นน้อยกว่า 18 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_40 (points INTEGER, played INTEGER)"
  },
  {
    "answer": "SELECT date FROM table_name_48 WHERE score = \"6–4, 6–3\"",
    "question_en": "Which date has a Score of 6–4, 6–3?",
    "question_th": "วันไหนมีคะแนน 6–4, 6–3?",
    "context": "CREATE TABLE table_name_48 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(pl_gp) FROM table_name_79 WHERE reg_gp > 3",
    "question_en": "What is the total PI GP that a Reg GP has larger than 3?",
    "question_th": "PI GP ทั้งหมดที่ Reg GP มีขนาดใหญ่กว่า 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_en": "What average Reg GP has a pick # larger than 210?",
    "question_th": "Reg GP เฉลี่ยใดที่มีตัวเลือก # มากกว่า 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_en": "Which result has a Goal of deacon 2/5?",
    "question_th": "ผลลัพธ์ใดมีเป้าหมายของดีคอน 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_en": "Which date has a Goal of deacon 4/4, withers 1 dg?",
    "question_th": "วันไหนมีเป้าหมายของมัคนายก 4/4 เหี่ยวเฉา 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_en": "What are the goals for 8/4/04?",
    "question_th": "เป้าหมายในวันที่ 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_en": "Which venue has a Result of w, and a Goal of deacon 5/5?",
    "question_th": "สนามใดมีผลการแข่งขัน w และประตูของดีคอน 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_en": "Which result has a Goal of deacon 3/5, bridge 2/2?",
    "question_th": "ผลอันไหนมีประตูของดีคอน 3/5 บริดจ์ 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–12\"",
    "question_en": "Which competition has a Goal of deacon 10/10, and a Score of 40–12?",
    "question_th": "การแข่งขันใดมีเป้าหมายเป็นมัคนายก 10/10 และคะแนน 40–12",
    "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_en": "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?",
    "question_th": "จำนวนเกมเพลย์ออฟทั้งหมดที่เล่นโดยทีม Seattle Thunderbirds โดยจำนวนเกมปกติที่เล่นน้อยกว่า 5 เกมและหมายเลขเลือกน้อยกว่า 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_en": "What player has a number of playoff games played greater than 0?",
    "question_th": "ผู้เล่นคนใดมีเกมเพลย์ออฟจำนวนหนึ่งที่เล่นมากกว่า 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_en": "What is the sum of the number of regular games played by Morgan Clark with the number of road games less than 7?",
    "question_th": "ผลรวมของจำนวนเกมปกติที่เล่นโดย Morgan Clark โดยจำนวนเกมบนท้องถนนน้อยกว่า 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_en": "What player has a number of playoff games played greater than 0?",
    "question_th": "ผู้เล่นคนใดมีเกมเพลย์ออฟจำนวนหนึ่งที่เล่นมากกว่า 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_en": "What is the pick number for the player from higher than round 3 and a PI GP bigger than 0?",
    "question_th": "หมายเลขเลือกสำหรับผู้เล่นที่สูงกว่ารอบ 3 และ PI GP ที่มากกว่า 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_en": "What is the lowest regular GP Larry Courville, who has a PI GP smaller than 0, has?",
    "question_th": "Larry Courville GP ปกติต่ำสุดที่มี PI GP น้อยกว่า 0 คืออะไร?",
    "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_en": "What was Essendon's opponents away score?",
    "question_th": "คะแนนทีมเยือนของคู่แข่งของเอสเซนดอนเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_40 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT crowd FROM table_name_9 WHERE venue = \"corio oval\"",
    "question_en": "What was the attendance at Corio Oval?",
    "question_th": "การเข้าร่วมที่ 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_en": "When collingwood played as the away team what did they score?",
    "question_th": "ตอนที่คอลลิงวูดเล่นเป็นทีมเยือน พวกเขาทำประตูได้เท่าไหร่?",
    "context": "CREATE TABLE table_name_3 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_64 WHERE name = \"evans\"",
    "question_en": "What was the locaction of the Evans test blast?",
    "question_th": "สถานที่ทดสอบระเบิดของอีแวนส์อยู่ที่ใด",
    "context": "CREATE TABLE table_name_64 (location VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT yield FROM table_name_39 WHERE location = \"nts area 3s\"",
    "question_en": "What was the yield for a blast that was in nts area 3s?",
    "question_th": "ผลลัพธ์ของการระเบิดที่อยู่ในพื้นที่ nts 3 คืออะไร?",
    "context": "CREATE TABLE table_name_39 (yield VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT purpose FROM table_name_54 WHERE name = \"quay\"",
    "question_en": "What was the purpose of the Quay test blast?",
    "question_th": "จุดประสงค์ของการระเบิดทดสอบที่คีย์คืออะไร?",
    "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_en": "For an apparent magnitude greater than 11.8 what Right ascension value is assigned?",
    "question_th": "สำหรับขนาดปรากฏที่มากกว่า 11.8 ค่าการขึ้นสู่ตำแหน่งขวาถูกกำหนดไว้เท่าใด",
    "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_en": "What is the least apparent magnitude for all constellations from hydra?",
    "question_th": "ขนาดที่ชัดเจนน้อยที่สุดสำหรับกลุ่มดาวทั้งหมดจากไฮดราคือเท่าใด",
    "context": "CREATE TABLE table_name_31 (apparent_magnitude INTEGER, constellation VARCHAR)"
  },
  {
    "answer": "SELECT MAX(car) FROM table_name_56 WHERE yards > 155",
    "question_en": "What is the highest Car with more than 155 yards?",
    "question_th": "รถที่สูงที่สุดที่มีระยะมากกว่า 155 หลาคืออะไร?",
    "context": "CREATE TABLE table_name_56 (car INTEGER, yards INTEGER)"
  },
  {
    "answer": "SELECT page_count FROM table_name_39 WHERE author = \"stefano d'arrigo\"",
    "question_en": "How many pages were in the book by Stefano D'Arrigo?",
    "question_th": "หนังสือของ 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_en": "Which author wrote Sironia, Texas in English?",
    "question_th": "ผู้เขียนคนไหนเขียน Sironia, Texas เป็นภาษาอังกฤษ",
    "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_en": "Who is the edition/publisher for Xavier Herbert?",
    "question_th": "ใครคือผู้จัดพิมพ์/ผู้จัดพิมพ์ของ 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_en": "What language is the book Miss Macintosh, My Darling in?",
    "question_th": "หนังสือ 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_en": "Who published in Italian with a page size of 8 inches (20cm) x 5.4 inches (14cm)?",
    "question_th": "ใครตีพิมพ์เป็นภาษาอิตาลีโดยมีขนาดหน้า 8 นิ้ว (20 ซม.) x 5.4 นิ้ว (14 ซม.)",
    "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_en": "What is the total average for long 10?",
    "question_th": "ค่าเฉลี่ยรวมสำหรับระยะยาว 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_en": "Name the college that has 7 rounds and boston celtics team",
    "question_th": "ตั้งชื่อวิทยาลัยที่มี 7 รอบ และทีมบอสตัน เซลติกส์",
    "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_en": "Name the position that has baltimore bullets and college of texas tech",
    "question_th": "ตั้งชื่อตำแหน่งที่มีกระสุนบัลติมอร์และวิทยาลัยเทคโนโลยีเท็กซัส",
    "context": "CREATE TABLE table_name_86 (position VARCHAR, team VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_91 WHERE team = \"milwaukee hawks\"",
    "question_en": "What is the nationality for milwaukee hawks?",
    "question_th": "มิลวอกีฮอว์กส์มีสัญชาติอะไร?",
    "context": "CREATE TABLE table_name_91 (nationality VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_99 WHERE proposed = \"06/24/1988\"",
    "question_en": "What is the name of the superfund that was proposed on 06/24/1988?",
    "question_th": "กองทุนซุปเปอร์ที่เสนอเมื่อวันที่ 06/24/1988 ชื่ออะไร",
    "context": "CREATE TABLE table_name_99 (name VARCHAR, proposed VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_40 WHERE game = 4",
    "question_en": "Which team was played against in game 4?",
    "question_th": "ทีมใดที่เล่นกับในเกมที่ 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_en": "What is the location attendance of the game with A. Horford (10) as the highest rebounds and J. Johnson (21) as the highest points?",
    "question_th": "ตำแหน่งที่ผู้เข้าชมเกมมีเอ. ฮอร์ฟอร์ด (10) รีบาวด์สูงสุดและเจ. จอห์นสัน (21) แต้มสูงสุด?",
    "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_en": "During what Championship was the Opponent Jeff Borowiak?",
    "question_th": "เจฟฟ์ โบโรเวียก คู่ต่อสู้ในแชมเปี้ยนชิพรายการใด?",
    "context": "CREATE TABLE table_name_53 (championship VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT SUM(date) FROM table_name_76 WHERE score = \"3–6, 6–4, 3–6, 6–1, 6–2\"",
    "question_en": "On what Date was the Score of 3–6, 6–4, 3–6, 6–1, 6–2",
    "question_th": "สกอร์ 3–6, 6–4, 3–6, 6–1, 6–2 ตรงกับวันไหน",
    "context": "CREATE TABLE table_name_76 (date INTEGER, score VARCHAR)"
  },
  {
    "answer": "SELECT entrant FROM table_name_80 WHERE engine = \"talbot l6\" AND driver = \"eugène chaboud\"",
    "question_en": "What is the Entrant with a Engine of talbot l6, and Eugène Chaboud was the driver?",
    "question_th": "ผู้เข้าแข่งขันที่มีเครื่องยนต์ทัลบอต l6 คืออะไร และเออแฌน ชาบูดเป็นคนขับ",
    "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_en": "What entrant has a P tyre and was constructed by Alfa Romeo?",
    "question_th": "ผู้เข้าแข่งขันคนใดมียาง P และถูกสร้างโดย 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ément\"",
    "question_en": "I want the country for score of 274 and runner-up of virginie lagoutte-clément",
    "question_th": "ฉันอยากให้ประเทศได้คะแนน 274 และรองแชมป์ virginie lagoutte-clément",
    "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_en": "Tell me the date for 2004",
    "question_th": "บอกวันที่ปี 2547 ให้ฉันหน่อย",
    "context": "CREATE TABLE table_name_35 (date VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT margin_of_victory FROM table_name_7 WHERE winner = \"nikki garrett\"",
    "question_en": "What is the margin of victory for nikki garrett?",
    "question_th": "ส่วนต่างของชัยชนะสำหรับนิกกี้ การ์เร็ตต์คืออะไร?",
    "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_en": "I want to see the result for venue of n and attendance more than 20,664",
    "question_th": "อยากเห็นผลสถานที่จัดงาน n และผู้เข้าร่วมเกิน 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_en": "Tell me the result for venue of a",
    "question_th": "แจ้งผลสถานที่จัดงานก",
    "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_en": "I want to know the average attendance for n venue and f round",
    "question_th": "อยากทราบจำนวนผู้เข้าชมเฉลี่ยทั้งสถานที่และรอบ",
    "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_en": "In grid 15, how many laps were there before ending with a time of exhaust?",
    "question_th": "ในกริดที่ 15 มีกี่รอบก่อนที่จะหมดเวลา?",
    "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_en": "What year was class of undine?",
    "question_th": "คลาส 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_en": "What was the quantity preserved for quantity made of 15?",
    "question_th": "ปริมาณที่เก็บรักษาไว้สำหรับปริมาณที่สร้างจาก 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_en": "Name the year for hercules",
    "question_th": "ตั้งชื่อปีสำหรับเฮอร์คิวลีส",
    "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_en": "When did the tom smith built train enter service with a number under 7007?",
    "question_th": "ทอม สมิธ สร้างรถไฟหมายเลขต่ำกว่า 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_en": "Who is the opponent for the 1985 World Group i edition?",
    "question_th": "ใครคือคู่ต่อสู้ของ World Group i edition ปี 1985?",
    "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_en": "What is the amount of cash on hand that has an after debt of $327,094",
    "question_th": "เงินสดในมือที่มีหนี้หลังหักหนี้จำนวน 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_en": "How many receipts does Mike Gravel have?",
    "question_th": "ไมค์ กรวด มีใบเสร็จกี่ใบ?",
    "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_en": "How much money has been raised that has $5,821,587 cash on hand?",
    "question_th": "ระดมทุนได้เท่าไหร่และมีเงินสดในมือ 5,821,587 ดอลลาร์?",
    "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_en": "What is the after debt has receipts of $379,794?",
    "question_th": "หลังหนี้มีรายรับ $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_en": "How much money has Candidate Dennis Kucinich spent?",
    "question_th": "ผู้สมัคร Dennis Kucinich ใช้เงินไปเท่าไหร่?",
    "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_en": "What is the crowd size when the away team was South Melbourne?",
    "question_th": "ขนาดฝูงชนเมื่อทีมเยือนคือเซาธ์ เมลเบิร์น คือเท่าใด?",
    "context": "CREATE TABLE table_name_15 (crowd INTEGER, away_team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(crowd) FROM table_name_78 WHERE venue = \"junction oval\"",
    "question_en": "What was the crowd size at Junction Oval?",
    "question_th": "ขนาดฝูงชนที่ Junction Oval คือเท่าไร?",
    "context": "CREATE TABLE table_name_78 (crowd INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_3 WHERE venue = \"junction oval\"",
    "question_en": "What was the date of the game at Junction Oval?",
    "question_th": "เกมที่ 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_en": "What was the away score for Carlton?",
    "question_th": "คาร์ลตันสกอร์เยือนเท่าไหร่?",
    "context": "CREATE TABLE table_name_41 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_12 WHERE venue = \"mcg\"",
    "question_en": "Who was the away team at MCG?",
    "question_th": "ทีมเยือนของเอ็มซีจีคือใคร?",
    "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_en": "What is the D 48 when the D 50 is d 30?",
    "question_th": "D 48 คืออะไรเมื่อ D 50 คือ 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_en": "What is the D 47 when the D 49 is r 32?",
    "question_th": "D 47 คืออะไรเมื่อ D 49 คือ 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_en": "What is the D 50 when the D 43 is r 43?",
    "question_th": "D 50 คืออะไรเมื่อ D 43 คือ 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_en": "What is the D 42 when the D 50 is d 31?",
    "question_th": "D 42 คืออะไรเมื่อ D 50 คือ 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_en": "What is the D 50 when the D 41 is d 41?",
    "question_th": "D 50 คืออะไรเมื่อ D 41 คือ 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_en": "What is the D 50 when the D 41 is d 41?",
    "question_th": "D 50 คืออะไรเมื่อ D 41 คือ 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_en": "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?",
    "question_th": "ชื่อลานคืออะไรเมื่อประเภทเรือที่ส่งมอบเป็นประเภท n3, ประเภท v4 และจำนวนเรือทั้งหมดที่สร้างขึ้นสำหรับ usmc คือ 13 ลำสำหรับ 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_en": "what is the ship types delivered when the total vessels built for usmc is 13 ships for usmc (plus 37 more for usn)?",
    "question_th": "ประเภทเรือที่ส่งมอบคืออะไรเมื่อจำนวนเรือทั้งหมดที่สร้างขึ้นสำหรับ usmc คือ 13 ลำสำหรับ usmc (บวกอีก 37 ลำสำหรับ 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_en": "Who were the co drivers past 1994 in the WSC class?",
    "question_th": "ใครคือนักแข่งร่วมในคลาส WSC ที่ผ่านมาในปี 1994",
    "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_en": "What day did Footscray play as the home team?",
    "question_th": "ฟุตสเครย์ลงเล่นเป็นเจ้าบ้านวันไหน?",
    "context": "CREATE TABLE table_name_20 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT report FROM table_name_13 WHERE date = \"10 october\"",
    "question_en": "What is the report for 10 october?",
    "question_th": "รายงานวันที่ 10 ตุลาคม คืออะไร?",
    "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_en": "Who was the race winner with a pole position james hunt, and a Fastest Lap of james hunt, and a Date of 15 august?",
    "question_th": "ใครคือผู้ชนะการแข่งขันด้วยตำแหน่งโพลโพซิชั่น เจมส์ ฮันท์ และรอบที่เร็วที่สุดของ เจมส์ ฮันท์ และวันที่ 15 สิงหาคม?",
    "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_en": "What race has a Pole Position of Jacques Laffite?",
    "question_th": "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_en": "What is the Pole Position of the Swedish Grand Prix?",
    "question_th": "ตำแหน่งโพลของ 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_en": "What was the date when the location was Zandvoort?",
    "question_th": "วันที่คือสถานที่คือ Zandvoort?",
    "context": "CREATE TABLE table_name_72 (date VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(chapters) FROM table_name_86 WHERE director = \"elmer clifton\"",
    "question_en": "How many chapters did Elmer Clifton direct?",
    "question_th": "Elmer Clifton กำกับกี่บท?",
    "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_en": "Who is the spouse of the queen who is the daughter of Ferdinand I of the two sicilies?",
    "question_th": "ใครคือคู่สมรสของพระราชินีซึ่งเป็นธิดาของเฟอร์ดินานด์ที่ 1 แห่งซิซิลีทั้งสอง?",
    "context": "CREATE TABLE table_name_54 (spouse VARCHAR, father VARCHAR)"
  },
  {
    "answer": "SELECT entered_service FROM table_name_29 WHERE serial_no = \"85-1222\"",
    "question_en": "What is the entered service date for serial number 85-1222?",
    "question_th": "วันที่เข้ารับบริการสำหรับหมายเลขซีเรียล 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_en": "What is the locomotive for the city of Benalla?",
    "question_th": "หัวรถจักรสำหรับเมืองเบนัลล่าคืออะไร?",
    "context": "CREATE TABLE table_name_44 (locomotive VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_95 WHERE locomotive = \"n464\"",
    "question_en": "What is the name for the locomotive n464?",
    "question_th": "หัวรถจักร n464 ชื่ออะไร?",
    "context": "CREATE TABLE table_name_95 (name VARCHAR, locomotive VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_9 WHERE locomotive = \"n474\"",
    "question_en": "What is the name for the locomotive n474?",
    "question_th": "หัวรถจักร 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_en": "What is the home team score at windy hill?",
    "question_th": "สกอร์ทีมเจ้าบ้านที่วินดี้ ฮิลล์เป็นเท่าไหร่?",
    "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_en": "What is the largest crowd for an Away team of st kilda?",
    "question_th": "ฝูงชนที่ใหญ่ที่สุดสำหรับทีมเยือนเซนต์คิลดาคือกลุ่มใด?",
    "context": "CREATE TABLE table_name_32 (crowd INTEGER, away_team VARCHAR)"
  },
  {
    "answer": "SELECT played_in FROM table_name_55 WHERE points_for = \"119\"",
    "question_en": "Where was the match that had 119 points for played?",
    "question_th": "นัดไหนมี 119 แต้มให้เล่น?",
    "context": "CREATE TABLE table_name_55 (played_in VARCHAR, points_for VARCHAR)"
  },
  {
    "answer": "SELECT played_in FROM table_name_36 WHERE matches = \"16\"",
    "question_en": "Where were 16 matches played?",
    "question_th": "16 นัดเล่นที่ไหน?",
    "context": "CREATE TABLE table_name_36 (played_in VARCHAR, matches VARCHAR)"
  },
  {
    "answer": "SELECT matches FROM table_name_81 WHERE points_for = \"240\"",
    "question_en": "What match had 240 points for?",
    "question_th": "นัดไหนมี 240 แต้ม?",
    "context": "CREATE TABLE table_name_81 (matches VARCHAR, points_for VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_62 WHERE date = \"26 july 1930\"",
    "question_en": "What was the score on 26 July 1930?",
    "question_th": "คะแนนเมื่อวันที่ 26 กรกฎาคม พ.ศ. 2473 เป็นเท่าใด",
    "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_en": "How many laps did Innes Ireland make when he had a grid more than 15?",
    "question_th": "Innes Ireland ทำกี่รอบเมื่อเขามีกริดมากกว่า 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_en": "What is the grid for Jack Brabham with more than 65 laps?",
    "question_th": "ตารางของ Jack Brabham ที่มากกว่า 65 รอบเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_34 (grid INTEGER, driver VARCHAR, laps VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_92 WHERE grid = 5",
    "question_en": "Who drove grid 5?",
    "question_th": "ใครขับรถกริด 5?",
    "context": "CREATE TABLE table_name_92 (driver VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_3 WHERE visitor = \"rockets\"",
    "question_en": "What is the date of the game with the Rockets as the visitor team?",
    "question_th": "เกมกับร็อคเก็ตส์เป็นทีมเยือนวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_3 (date VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_88 WHERE years_for_rockets = \"1981\"",
    "question_en": "What was the position of the player who played for the Rockets during 1981?",
    "question_th": "ตำแหน่งของผู้เล่นที่เล่นให้กับร็อคเก็ตส์ในปี 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_en": "What school, club team, or country did the player with a number smaller than 4 come from?",
    "question_th": "ผู้เล่นที่มีหมายเลขน้อยกว่า 4 มาจากโรงเรียน ทีมสโมสร หรือประเทศใด",
    "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_en": "What is the number of the player who came from Virginia?",
    "question_th": "นักเตะที่มาจากเวอร์จิเนียเบอร์อะไรครับ?",
    "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_en": "What is the Time/Retired with over 56 laps and a grid of 5?",
    "question_th": "เวลา/เกษียณที่มีมากกว่า 56 รอบและตาราง 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_en": "Who is the driver when the tyre is p and the entrant is officine alfieri maserati?",
    "question_th": "ใครคือคนขับเมื่อยางเป็น p และผู้เข้าร่วมคือ 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_en": "Who is the constructor when the chassis is talbot-lago t26c and the driver is charles pozzi?",
    "question_th": "ใครคือผู้สร้างเมื่อแชสซีคือ talbot-lago t26c และคนขับคือ 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_en": "What is the tyre when the entrant is sa alfa romeo and the driver is luigi fagioli?",
    "question_th": "ยางคืออะไรเมื่อผู้เข้าร่วมคือ sa alfa romeo และคนขับคือ 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_en": "Who is the entrant when the engine is talbot l6 and the driver is pierre levegh?",
    "question_th": "ใครคือผู้เข้าแข่งขันเมื่อเครื่องยนต์เป็นทัลบอต L6 และคนขับคือปิแอร์ เลฟ?",
    "context": "CREATE TABLE table_name_90 (entrant VARCHAR, engine VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT entrant FROM table_name_88 WHERE chassis = \"ferrari 125\"",
    "question_en": "Who is the entrant when the chassis is ferrari 125?",
    "question_th": "ใครคือผู้เข้าแข่งขันเมื่อแชสซีส์คือ 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_en": "what is the engine when the tyre is d, the constructor is era and the driver is bob gerard?",
    "question_th": "เครื่องยนต์คืออะไรเมื่อยางเป็น d ตัวสร้างคือยุค และคนขับคือบ็อบ เจอราร์ด",
    "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_en": "What was the score when the record was 39-62?",
    "question_th": "เมื่อสถิติอยู่ที่ 39-62 สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_29 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_14 WHERE record = \"35-57\"",
    "question_en": "What was the date when the record was 35-57?",
    "question_th": "สถิติ 35-57 คือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_14 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_20 WHERE record = \"34-56\"",
    "question_en": "What was the loss when the record was 34-56?",
    "question_th": "การสูญเสียเมื่อบันทึกเป็น 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_en": "What is the name of the away team that played Geelong?",
    "question_th": "ทีมเยือนที่เล่นจีลองชื่ออะไร",
    "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_en": "What is the smallest crowd size for away team Fitzroy?",
    "question_th": "ขนาดฝูงชนที่เล็กที่สุดสำหรับทีมเยือน Fitzroy คือเท่าใด?",
    "context": "CREATE TABLE table_name_40 (crowd INTEGER, away_team VARCHAR)"
  },
  {
    "answer": "SELECT builder FROM table_name_71 WHERE br_no = 30782",
    "question_en": "Which Builder has BR No. 30782?",
    "question_th": "ช่างก่อสร้างคนไหนมี 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_en": "What is the title of the episode with a production code of K1504?",
    "question_th": "ชื่อเรื่องของตอนที่มีรหัสการผลิต 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_en": "What is the average of the Series #s that were directed by Matthew Penn?",
    "question_th": "ค่าเฉลี่ยของซีรีส์ #s ที่กำกับโดย 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_en": "How many episodes did Matthew Penn direct before season 22?",
    "question_th": "Matthew Penn กำกับกี่ตอนก่อนซีซั่น 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_en": "What Visiting Team(s) had an Attendance of over 18,680",
    "question_th": "ทีมเยือนทีมใดมีผู้เข้าร่วมมากกว่า 18,680 คน",
    "context": "CREATE TABLE table_name_90 (visitor VARCHAR, attendance INTEGER)"
  },
  {
    "answer": "SELECT MIN(attendance) FROM table_name_34 WHERE visitor = \"nashville\"",
    "question_en": "When Nashville was the visiting team what was the lowest Attendance shown?",
    "question_th": "เมื่อแนชวิลล์เป็นทีมเยือน มีผู้เข้าร่วมน้อยที่สุดคือเท่าใด",
    "context": "CREATE TABLE table_name_34 (attendance INTEGER, visitor VARCHAR)"
  },
  {
    "answer": "SELECT time_retired FROM table_name_81 WHERE grid = 16",
    "question_en": "What is the time/retired for the driver with 16 grids?",
    "question_th": "เวลา/เกษียณสำหรับผู้ขับขี่ที่มี 16 กริดคือเท่าไร?",
    "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_en": "What is the smallest grid for a time/retired of 1:56:18.22?",
    "question_th": "ตารางที่เล็กที่สุดสำหรับช่วงเวลา/เกษียณที่ 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_en": "Who was the opponent on September 28?",
    "question_th": "คู่ต่อสู้ในวันที่ 28 กันยายนคือใคร?",
    "context": "CREATE TABLE table_name_18 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_58 WHERE save = \"||33,389||87–62\"",
    "question_en": "Who was the opponent in the game with save ||33,389||87–62?",
    "question_th": "คู่ต่อสู้ในเกมที่เซฟได้ ||33,389||87–62 คือใคร?",
    "context": "CREATE TABLE table_name_58 (opponent VARCHAR, save VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_76 WHERE save = \"||33,723||93–64\"",
    "question_en": "Who was the opponent in the game with save ||33,723||93–64?",
    "question_th": "คู่ต่อสู้ในเกมที่เซฟได้ ||33,723||93–64 คือใคร?",
    "context": "CREATE TABLE table_name_76 (opponent VARCHAR, save VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_52 WHERE date = \"september 8\"",
    "question_en": "What was the score on September 8?",
    "question_th": "คะแนนวันที่ 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_en": "Which nationality has Years for Jazz of 1984-85?",
    "question_th": "สัญชาติใดที่มีปีสำหรับดนตรีแจ๊สในปี 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_en": "Which position has a Nationality of united states, and a Player of roger powell?",
    "question_th": "ตำแหน่งใดมีสัญชาติสหรัฐอเมริกา และเป็นผู้เล่นของ โรเจอร์ พาวเวลล์?",
    "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_en": "What years does milt palacio play?",
    "question_th": "มิ้นท์ ปาลาซิโอ เล่นกี่ปี?",
    "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_en": "Which years have a School/Club Team of colorado state?",
    "question_th": "ปีใดบ้างที่มีทีมโรงเรียน/สโมสรของรัฐโคโลราโด",
    "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_en": "During which years was the Model 318td (diesel) with the Engine code of m47d20 manufactured?",
    "question_th": "Model 318td (ดีเซล) รหัสเครื่องยนต์ m47d20 ผลิตขึ้นในช่วงปีใดบ้าง",
    "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_en": "What is the Torque of the model with the engine code of M54B25?",
    "question_th": "แรงบิดของรุ่นที่มีรหัสเครื่องยนต์ M54B25 เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_73 (torque VARCHAR, engine_code VARCHAR)"
  },
  {
    "answer": "SELECT torque FROM table_name_27 WHERE model = \"320td (diesel)\"",
    "question_en": "What is the Torque of the Model 320td (diesel)?",
    "question_th": "แรงบิดของรุ่น 320td (ดีเซล) เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_27 (torque VARCHAR, model VARCHAR)"
  },
  {
    "answer": "SELECT years FROM table_name_11 WHERE engine_code = \"m54b25\"",
    "question_en": "During which years was the model with the Engine code of m54b25 manufactured?",
    "question_th": "รุ่นที่มีรหัสเครื่องยนต์ m54b25 ผลิตในช่วงปีใด",
    "context": "CREATE TABLE table_name_11 (years VARCHAR, engine_code VARCHAR)"
  },
  {
    "answer": "SELECT model FROM table_name_72 WHERE years = \"2001–2004\" AND torque = \"n·m (lb·ft) @ 3750\" AND engine_code = \"n42b18 / n46b18\"",
    "question_en": "Which model was made from 2001–2004, with a Torque of n·m (lb·ft) @ 3750, and an Engine code of n42b18 / n46b18?",
    "question_th": "รุ่นใดที่ผลิตตั้งแต่ปี 2544-2547 โดยมีแรงบิด n·m (lb·ft) @ 3750 และรหัสเครื่องยนต์ 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_en": "What was the date of the Mariners game that had a score of 1-12?",
    "question_th": "เกมกะลาสีเรือที่มีสกอร์ 1-12 คือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_96 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_8 WHERE attendance = \"6,707\"",
    "question_en": "What was the date of the Mariners game that had an attendance of 6,707?",
    "question_th": "การแข่งขันกะลาสีเรือที่มีผู้เข้าร่วม 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_en": "What was the date of the Mariners game that had a loss of Segui (0-5)?",
    "question_th": "เกมกะลาสีเรือที่แพ้เซกี (0-5) คือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_77 (date VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_91 WHERE attendance = \"9,065\"",
    "question_en": "What was the loss of the Mariners game that had an attendance of 9,065?",
    "question_th": "การสูญเสียเกมกะลาสีเรือที่มีผู้เข้าร่วม 9,065 คนเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_91 (loss VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_49 WHERE attendance = \"7,893\"",
    "question_en": "Who was the Mariners opponent at the game attended by 7,893?",
    "question_th": "ใครคือคู่ต่อสู้กะลาสีเรือในเกมที่มีผู้เข้าร่วม 7,893 คน?",
    "context": "CREATE TABLE table_name_49 (opponent VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_88 WHERE tournament = \"aptos\"",
    "question_en": "What is the tournament surface at Aptos?",
    "question_th": "พื้นผิวทัวร์นาเมนต์ที่ 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_en": "What was the final score of the Paul Goldstein match?",
    "question_th": "คะแนนสุดท้ายของการแข่งขัน Paul Goldstein คืออะไร?",
    "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_en": "Who played the final match on November 23, 1998?",
    "question_th": "ใครลงเล่นนัดสุดท้ายเมื่อวันที่ 23 พฤศจิกายน พ.ศ. 2541?",
    "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_en": "What date did Paul Goldstein play the final?",
    "question_th": "Paul Goldstein เล่นรอบชิงชนะเลิศวันที่เท่าไหร่?",
    "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_en": "What was the surface type at Takao Suzuki?",
    "question_th": "พื้นผิวของ 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_en": "What were the scores on September 11, 2006?",
    "question_th": "คะแนนเมื่อวันที่ 11 กันยายน 2549 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_95 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_83 WHERE date = \"may 9\"",
    "question_en": "Who did they lose to on may 9?",
    "question_th": "พวกเขาแพ้ใครในวันที่ 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_en": "What is Pedro De La Rosa's total number of Grid?",
    "question_th": "จำนวนกริดทั้งหมดของเปโดร เด ลา โรซาคือเท่าใด",
    "context": "CREATE TABLE table_name_27 (grid VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_91 WHERE time_retired = \"+37.311\"",
    "question_en": "Which constructor has a Time/Retired of +37.311?",
    "question_th": "ตัวสร้างตัวใดมีเวลา/เกษียณที่ +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äkkinen\"",
    "question_en": "What is the time/retired for mika häkkinen",
    "question_th": "เมื่อไหร่/เกษียณสำหรับ mika häkkinen",
    "context": "CREATE TABLE table_name_38 (time_retired VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_68 WHERE audience = \"4.629.000\"",
    "question_en": "Which title had an audience of 4.629.000?",
    "question_th": "ชื่อเรื่องใดมีผู้ชม 4.629.000 คน",
    "context": "CREATE TABLE table_name_68 (title VARCHAR, audience VARCHAR)"
  },
  {
    "answer": "SELECT audience FROM table_name_36 WHERE episode = \"21\"",
    "question_en": "What was the audience for Episode 21?",
    "question_th": "ผู้ชมตอนที่ 21 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_36 (audience VARCHAR, episode VARCHAR)"
  },
  {
    "answer": "SELECT share FROM table_name_82 WHERE audience = \"3.944.000\"",
    "question_en": "What was the share when the audience was 3.944.000?",
    "question_th": "ส่วนแบ่งเมื่อผู้ชมอยู่ที่ 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_en": "What was the audience for Mi Amigo el Monstruo?",
    "question_th": "ผู้ชมของ 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_en": "Which title has a share of 19,9%",
    "question_th": "ชื่อใดมีส่วนแบ่ง 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_en": "Which share had an audience of 4.693.000?",
    "question_th": "ส่วนแบ่งใดมีผู้ชม 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_en": "what was the venue that hosted Carlton as the away team?",
    "question_th": "สนามที่คาร์ลตันเป็นทีมเยือนคือสนามใด?",
    "context": "CREATE TABLE table_name_24 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_38 WHERE away_team = \"collingwood\"",
    "question_en": "What was the date of the Collingwood away game?",
    "question_th": "เกมเยือนคอลลิงวูดวันที่เท่าไหร่?",
    "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_en": "Who is the player that plays position c on the New York Knicks?",
    "question_th": "ใครคือผู้เล่นที่เล่นตำแหน่ง c ในทีม 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_en": "What is the position of the pick 1 player?",
    "question_th": "ผู้เล่นที่เลือก 1 ตำแหน่งคืออะไร?",
    "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_en": "Who is the player that plays position f from Fort Wayne Pistons?",
    "question_th": "ใครคือผู้เล่นที่เล่นตำแหน่ง f ของ 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_en": "Which round is the player from Oregon from?",
    "question_th": "ผู้เล่นจากโอเรกอนมาจากรอบไหน?",
    "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_en": "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?",
    "question_th": "มีกี่ประตูที่เกิดขึ้นเมื่อประตูที่ทำได้น้อยกว่า 56 ประตูและเกมที่เล่นมากกว่า 7 โดยชนะน้อยกว่า 6 ครั้ง",
    "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_en": "What is the smallest number of wins with 7 games played and goals against less than 46 when goals for is more than 34?",
    "question_th": "จำนวนชัยชนะที่น้อยที่สุดโดยลงเล่น 7 เกมและประตูต่อน้อยกว่า 46 เมื่อประตูมากกว่า 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_en": "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?",
    "question_th": "คือจำนวนเฉลี่ยของความสัมพันธ์เมื่อประตูต่อน้อยกว่า 56 สำหรับ Ottawa Hockey Club และประตูมากกว่า 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_en": "How many losses occurred with less than 8 games played and less than 3 wins?",
    "question_th": "มีการสูญเสียเกิดขึ้นกี่ครั้งโดยเล่นน้อยกว่า 8 เกมและชนะน้อยกว่า 3 เกม?",
    "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_en": "How many goals against were scored when the goals for is less than 48 with 0 ties?",
    "question_th": "เสียประตูไปกี่ประตูเมื่อสกอร์น้อยกว่า 48 และเสมอ 0 เสมอ?",
    "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_en": "Name the position for the player that is from valparaiso",
    "question_th": "ตั้งชื่อตำแหน่งผู้เล่นที่มาจากบัลปาไรโซ",
    "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_en": "Name the height in feet for the guard from north carolina-charlotte",
    "question_th": "บอกชื่อส่วนสูงเป็นฟุตของผู้พิทักษ์จากนอร์ธแคโรไลนา-ชาร์ล็อตต์",
    "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_en": "Name the height in feet for the player from valparaiso",
    "question_th": "บอกชื่อนักเตะส่วนสูงเป็นฟุตจากบัลปาไรโซ",
    "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_en": "Name the school/club team/country for the player that is 6-5 ft",
    "question_th": "ตั้งชื่อโรงเรียน/ทีมสโมสร/ประเทศสำหรับผู้เล่นที่สูง 6-5 ฟุต",
    "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_en": "Name the numbers for the player with a height in ft of 6-7 for the guard",
    "question_th": "ตั้งชื่อหมายเลขของผู้เล่นที่มีส่วนสูงเป็นฟุต 6-7 สำหรับผู้พิทักษ์",
    "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_en": "Name the height in ft for the player from wyoming",
    "question_th": "ตั้งชื่อความสูงเป็นฟุตสำหรับผู้เล่นจากไวโอมิง",
    "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_en": "Which college did the Calgary Stampeders recruit from?",
    "question_th": "Calgary Stampeders รับสมัครจากวิทยาลัยใด",
    "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_en": "Which year has the Co-singer solo and a Film name of bhagya debata?",
    "question_th": "ปีไหนที่มีนักร้องเดี่ยวเดี่ยวและชื่อภาพยนตร์ของ 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_en": "What date is the Portuguese Grand Prix?",
    "question_th": "โปรตุเกส กรังด์ปรีซ์ คือวันไหน?",
    "context": "CREATE TABLE table_name_30 (date VARCHAR, grand_prix VARCHAR)"
  },
  {
    "answer": "SELECT winning_driver FROM table_name_48 WHERE location = \"imola\"",
    "question_en": "Which winning driver is located in Imola?",
    "question_th": "นักแข่งคนไหนที่ชนะอยู่ในอีโมลา",
    "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_en": "What is the Pole Position of the Portuguese Grand Prix?",
    "question_th": "ตำแหน่งโพลของรายการโปรตุเกสกรังด์ปรีซ์คืออะไร?",
    "context": "CREATE TABLE table_name_98 (pole_position VARCHAR, grand_prix VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_76 WHERE location = \"long beach\"",
    "question_en": "On what date did a race occur at Long Beach?",
    "question_th": "การแข่งขันที่ลองบีชจัดขึ้นวันไหน?",
    "context": "CREATE TABLE table_name_76 (date VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT race FROM table_name_63 WHERE pole_position = \"jody scheckter\"",
    "question_en": "What race had Jody Scheckter hold pole position?",
    "question_th": "Jody Scheckter ดำรงตำแหน่งโพลโพสิชันในการแข่งขันประเภทใด",
    "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_en": "Who won the South African Grand Prix?",
    "question_th": "ใครเป็นผู้ชนะการแข่งขัน 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_en": "Who had the fastest lap at the German Grand Prix?",
    "question_th": "ใครมีรอบเร็วที่สุดในการแข่งขันเยอรมันกรังด์ปรีซ์?",
    "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_en": "What is the Tyre for the united states grand prix?",
    "question_th": "ยางสำหรับ 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_en": "What was the result of the 1948 og competition?",
    "question_th": "ผลลัพธ์ของการแข่งขัน og ในปี 1948 คืออะไร?",
    "context": "CREATE TABLE table_name_59 (result VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT MIN(grid) FROM table_name_48 WHERE driver = \"rolf stommelen\"",
    "question_en": "I want the lowest Grid for Rolf Stommelen",
    "question_th": "ฉันต้องการกริดที่ต่ำที่สุดสำหรับ 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_en": "I want the constructor for grid less than 20 and Laps of 6",
    "question_th": "ฉันต้องการตัวสร้างสำหรับกริดน้อยกว่า 20 และรอบ 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_en": "What is the german total population after 1910 with an other total of 143 and 32 hungarians?",
    "question_th": "ประชากรชาวเยอรมันทั้งหมดหลังปี 1910 เป็นเท่าใด โดยมีชาวฮังการีทั้งหมด 143 และ 32 คน",
    "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_en": "What year did Naoki Tsukahara finish 3rd in the 200 m race?",
    "question_th": "Naoki Tsukahara จบอันดับ 3 ในการแข่งขัน 200 ม. ในปีใด",
    "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_en": "What is the attendance at the Dallas home game on may 12?",
    "question_th": "การเข้าร่วมเกมเหย้าดัลลัสในวันที่ 12 พฤษภาคมจะเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_67 (attendance VARCHAR, home VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_83 WHERE rank = 2",
    "question_en": "What nationality is the player ranked 2?",
    "question_th": "ผู้เล่นอันดับที่ 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_en": "How many wins for mike hill ranked below 4?",
    "question_th": "ไมค์ ฮิลล์ อันดับต่ำกว่า 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_en": "What is Trevor Cann's nationality?",
    "question_th": "สัญชาติของ Trevor Cann คืออะไร?",
    "context": "CREATE TABLE table_name_10 (nationality VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_60 WHERE player = \"kent patterson\"",
    "question_en": "What is Kent Patterson's nationality?",
    "question_th": "สัญชาติของ Kent Patterson คืออะไร?",
    "context": "CREATE TABLE table_name_60 (nationality VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT unit FROM table_name_27 WHERE pennant_number = 82",
    "question_en": "Which unit has a Pennant Number of 82?",
    "question_th": "หน่วยใดมีธงเลข 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_en": "What is the highest pennant number with ships in raahe class?",
    "question_th": "หมายเลขชายธงสูงสุดที่มีเรือในระดับ raahe คืออะไร?",
    "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_en": "What is the highest pennant number with ships in pori class?",
    "question_th": "หมายเลขชายธงสูงสุดที่มีเรือในระดับ pori คืออะไร?",
    "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_en": "What is the name of the competition that ended with a score of 2-1?",
    "question_th": "การแข่งขันที่จบลงด้วยสกอร์ 2-1 ชื่ออะไร?",
    "context": "CREATE TABLE table_name_90 (competition VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_63 WHERE score = \"1-3\"",
    "question_en": "What is the name of the competition that ended with a score of 1-3?",
    "question_th": "การแข่งขันที่จบลงด้วยสกอร์ 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_en": "At which venue did the game on 28 october 2013 take place?",
    "question_th": "เกมวันที่ 28 ตุลาคม 2556 จัดขึ้นที่สถานที่ใด?",
    "context": "CREATE TABLE table_name_5 (venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_74 WHERE score = \"2-1\"",
    "question_en": "What is the Competition name of the competition that ended with a score of 2-1?",
    "question_th": "การแข่งขันชื่อการแข่งขันที่จบลงด้วยสกอร์ 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_en": "In what year did a car have a yamaha v12 engine and a brabham bt60y chassis",
    "question_th": "รถยนต์มีเครื่องยนต์ Yamaha v12 และแชสซี Brabham bt60y ในปีใด",
    "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_en": "waht is the last year with a mclaren mp4/10b chassis",
    "question_th": "ปีนั้นเป็นปีสุดท้ายที่มีแชสซีของ mclaren mp4/10b",
    "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_en": "before 1995 waht is the aveage pts for a mclaren mp4/10b chassis",
    "question_th": "ก่อนปี 1995 คือคะแนนเฉลี่ยสำหรับแชสซี mclaren mp4/10b",
    "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_en": "what is the most recent year for a ligier gitanes blondes",
    "question_th": "ปีล่าสุดคือปีใดสำหรับผมบลอนด์ ligier gitanes",
    "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_en": "What is the total number of averages with an interview of 8.75 when the evening gown number was bigger than 8.75?",
    "question_th": "ค่าเฉลี่ยรวมสัมภาษณ์ 8.75 เมื่อเลขชุดราตรีมากกว่า 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_en": "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?",
    "question_th": "สัมภาษณ์ทั้งหมดกี่คนครับ โดยเบอร์ชุดราตรีน้อยกว่า 8.82 รัฐคือเคนตักกี้ และค่าเฉลี่ยมากกว่า 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_en": "How many averages had a swimsuit number of 8.42 and an evening gown number that was less than 8.71?",
    "question_th": "ค่าเฉลี่ยจำนวนเท่าใดที่มีชุดว่ายน้ำหมายเลข 8.42 และชุดราตรีที่น้อยกว่า 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_en": "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?",
    "question_th": "รัฐใดมีคะแนนเฉลี่ยน้อยกว่า 8.67 คะแนนชุดว่ายน้ำ 8.27 คะแนน ชุดราตรี 8.78 และหมายเลขสัมภาษณ์ 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_en": "What is the record when the visitor was Nashville?",
    "question_th": "บันทึกเมื่อผู้มาเยือนคือแนชวิลล์คืออะไร?",
    "context": "CREATE TABLE table_name_82 (record VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_83 WHERE venue = \"pietermaritzburg\"",
    "question_en": "When was a competition held at Pietermaritzburg?",
    "question_th": "การแข่งขันจัดขึ้นที่ 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_en": "What were the bowling figures for the competition at Pietermaritzburg?",
    "question_th": "นักกีฬาโบว์ลิ่งในการแข่งขันที่ปีเตอร์มาริตซ์เบิร์กมีอะไรบ้าง",
    "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_en": "Who was the opponent during the competition in which the bowling figures were 5-33 (10)?",
    "question_th": "คู่ต่อสู้คือใครในระหว่างการแข่งขันซึ่งตัวเลขโบว์ลิ่งอยู่ที่ 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_en": "What were GD Mcgrath's bowling figures?",
    "question_th": "ตัวเลขการเล่นโบว์ลิ่งของ GD Mcgrath คืออะไร?",
    "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_en": "During the competition at Port Elizabeth, where the opponent was Australia, what were the bowling figures?",
    "question_th": "ระหว่างการแข่งขันที่พอร์ตเอลิซาเบธ ซึ่งคู่ต่อสู้คือ ออสเตรเลีย โบว์ลิ่งเป็นอย่างไรบ้าง?",
    "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_en": "What is the lowest amount of floors after rank 1 in the Trillium (residential) building?",
    "question_th": "จำนวนชั้นต่ำสุดหลังจากอันดับที่ 1 ในอาคาร Trillium (ที่พักอาศัย) คือเท่าไร?",
    "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_en": "What is the lowest amount of floors in the building completed before 1970 ranked more than 14?",
    "question_th": "จำนวนชั้นต่ำสุดในอาคารที่สร้างเสร็จก่อนปี 1970 อยู่ในอันดับที่มากกว่า 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_en": "What is the largest amount of floors in the 70m (233ft) Tupper building (educational)?",
    "question_th": "อาคาร Tupper สูง 70 เมตร (233 ฟุต) (เพื่อการศึกษา) มีชั้นจำนวนมากที่สุดคือเท่าใด",
    "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_en": "Which manufacturer has 23 laps and a time of +45.195?",
    "question_th": "ผู้ผลิตรายใดทำได้ 23 รอบและเวลา +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_en": "What is the sum of Sylvain Guintoli's laps?",
    "question_th": "ผลรวมของรอบของ Sylvain Guintoli เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_8 (laps INTEGER, rider VARCHAR)"
  },
  {
    "answer": "SELECT runs FROM table_name_75 WHERE strike_rate = \"101.42\"",
    "question_en": "How many runs were scored when the strike rate was 101.42?",
    "question_th": "มีคะแนนวิ่งกี่ครั้งเมื่ออัตราการนัดหยุดงานคือ 101.42",
    "context": "CREATE TABLE table_name_75 (runs VARCHAR, strike_rate VARCHAR)"
  },
  {
    "answer": "SELECT 2001 FROM table_name_4 WHERE product = \"grain\"",
    "question_en": "What was the amount of grain in 2001?",
    "question_th": "ปริมาณธัญพืชในปี 2544 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_4 (product VARCHAR)"
  },
  {
    "answer": "SELECT 2004 FROM table_name_51 WHERE product = \"oil terminal\"",
    "question_en": "What is the amount of oil terminal in 2004?",
    "question_th": "คลังน้ำมันในปี 2547 มีปริมาณเท่าใด?",
    "context": "CREATE TABLE table_name_51 (product VARCHAR)"
  },
  {
    "answer": "SELECT 2003 FROM table_name_34 WHERE 2001 = \"514,000 tonnes\"",
    "question_en": "What is the 2003 statistic for the product that had 514,000 tonnes in 2001?",
    "question_th": "สถิติในปี 2546 ของผลิตภัณฑ์ที่มี 514,000 ตันในปี 2544 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_34 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2002 FROM table_name_7 WHERE 2001 = \"452,000 tonnes\"",
    "question_en": "What is the 2002 statistic for the product that had 452,000 tonnes in 2001?",
    "question_th": "สถิติในปี 2545 ของผลิตภัณฑ์ที่มี 452,000 ตันในปี 2544 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_7 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2001 FROM table_name_91 WHERE 2002 = \"2,360,000 tonnes\"",
    "question_en": "What is the 2001 statistic for the product that had 2,360,000 tonnes in 2002?",
    "question_th": "สถิติในปี 2544 ของผลิตภัณฑ์ที่มี 2,360,000 ตันในปี 2545 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_91 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2003 FROM table_name_94 WHERE product = \"general cargo\"",
    "question_en": "What is the 2003 statistic for general cargo?",
    "question_th": "สถิติสินค้าทั่วไปในปี 2546 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_94 (product VARCHAR)"
  },
  {
    "answer": "SELECT home_team AS score FROM table_name_30 WHERE venue = \"mcg\"",
    "question_en": "What did the home team score at MCG?",
    "question_th": "เจ้าบ้านทำคะแนนที่เอ็มซีจีได้เท่าไหร่?",
    "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_en": "What did the away team score when playing South Melbourne?",
    "question_th": "ทีมเยือนได้คะแนนเท่าไหร่เมื่อเจอกับ เซาธ์ เมลเบิร์น?",
    "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_en": "When did the game with North Melbourne as the away team take place?",
    "question_th": "เกมกับนอร์ท เมลเบิร์น ในฐานะทีมเยือนเกิดขึ้นเมื่อใด?",
    "context": "CREATE TABLE table_name_89 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_57 WHERE away_team = \"south melbourne\"",
    "question_en": "If the Away team was south melbourne what Date did they play?",
    "question_th": "ถ้าทีมเยือนอยู่เซาธ์ เมลเบิร์น พวกเขาเล่นนัดไหน?",
    "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_en": "When the Home team of essendon is playing what is the Away team score?",
    "question_th": "เมื่อทีมเหย้าเอสเซนดอนเล่นสกอร์ทีมเยือนเป็นเท่าไหร่?",
    "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_en": "I wan the date of vacancy for departure of resigned and outgoing manager of gordon wylde",
    "question_th": "ฉันต้องการทราบวันที่ว่างสำหรับการจากไปของผู้จัดการที่ลาออกและลาออกของกอร์ดอน ไวล์ด",
    "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_en": "I want the replaced for date of appointment being 12 october 2007",
    "question_th": "ฉันต้องการเปลี่ยนวันที่นัดหมายเป็น 12 ตุลาคม 2550",
    "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_en": "I want the team for date of vacancy being 28 february",
    "question_th": "ผมอยากให้ทีมงานว่างวันที่ 28 กุมภาพันธ์ครับ",
    "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_en": "I want the manner of departure for date of appointment being 12 october 2007",
    "question_th": "ฉันต้องการกำหนดวันออกเดินทางสำหรับวันที่นัดหมายเป็น 12 ตุลาคม 2550",
    "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_en": "Which date was the syracuse circuit?",
    "question_th": "วงจรซีราคิวส์คือวันไหน?",
    "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_en": "Which date was the x gran premio di napoli?",
    "question_th": "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_en": "What report happened on 22 september?",
    "question_th": "มีรายงานอะไรบ้างเมื่อวันที่ 22 กันยายน?",
    "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_en": "Which report has a Winning driver of peter collins, and a Circuit of syracuse?",
    "question_th": "รายงานใดมีตัวขับเคลื่อนผู้ชนะของปีเตอร์ คอลลินส์ และวงจรของซีราคิวส์",
    "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_en": "Who appointed Judge Edward E. Cushman?",
    "question_th": "ใครเป็นผู้แต่งตั้งผู้พิพากษา 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_en": "Who was Judge Jack Edward Tanner's chief judge?",
    "question_th": "ใครคือหัวหน้าผู้พิพากษาของ Jack Edward Tanner?",
    "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_en": "What is the date of birth of the player that has 11 caps and plays the prop position?",
    "question_th": "นักเตะที่มี 11 แคป และเล่นตำแหน่งพร็อพเกิดวันที่เท่าไหร่?",
    "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_en": "What club or province is the player with 12 caps from?",
    "question_th": "นักเตะ 12 แคป มาจากสโมสรหรือจังหวัดไหน?",
    "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_en": "What position does Toby Flood, who is from Newcastle and has fewer than 24 caps, play?",
    "question_th": "โทบี้ ฟลัด มาจากนิวคาสเซิ่ลและติดทีมชาติไม่ถึง 24 นัดลงเล่นตำแหน่งไหน?",
    "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_en": "Which team beat the Newcastle Breakers?",
    "question_th": "ทีมไหนเอาชนะ นิวคาสเซิ่ล เบรคเกอร์ส ได้บ้าง?",
    "context": "CREATE TABLE table_name_76 (winningteam VARCHAR, losingteam VARCHAR)"
  },
  {
    "answer": "SELECT losingteam FROM table_name_82 WHERE cup_finaldate = \"20 august 1989\"",
    "question_en": "What team lost on 20 August 1989?",
    "question_th": "ทีมใดแพ้เมื่อวันที่ 20 สิงหาคม พ.ศ. 2532?",
    "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_en": "On what date did the Brisbane Lions (1) win?",
    "question_th": "บริสเบน ไลออนส์ (1) ชนะวันไหน?",
    "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_en": "What was the winning team with the 8,132 final attendance?",
    "question_th": "ทีมใดที่ชนะโดยมีผู้เข้าชมรอบสุดท้าย 8,132 คน?",
    "context": "CREATE TABLE table_name_20 (winningteam VARCHAR, cup_final_attendance VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_48 WHERE date = \"august 2\"",
    "question_en": "What was the attendance on August 2?",
    "question_th": "ผู้เข้าร่วมในวันที่ 2 สิงหาคมมีอะไรบ้าง?",
    "context": "CREATE TABLE table_name_48 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_62 WHERE attendance = \"31,220\"",
    "question_en": "What is the date where the attendance was 31,220?",
    "question_th": "มีผู้เข้าร่วม 31,220 คน วันที่เท่าไร?",
    "context": "CREATE TABLE table_name_62 (date VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_8 WHERE date = \"august 4\"",
    "question_en": "What was the team's record on August 4?",
    "question_th": "สถิติของทีมเมื่อวันที่ 4 สิงหาคมเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_8 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_84 WHERE attendance = \"48,041\"",
    "question_en": "What was the date when the attendance was 48,041?",
    "question_th": "มีผู้เข้าร่วม 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_en": "Who are the finals opponents for the match with partner Ricardo Hocevar?",
    "question_th": "คู่ต่อสู้ในรอบชิงชนะเลิศของการแข่งขันกับคู่หูริคาร์โด้ โฮเซวาร์คือใคร?",
    "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_en": "Who were the opponents of the final on June 23, 2003?",
    "question_th": "ใครคือคู่ต่อสู้ของรอบชิงชนะเลิศเมื่อวันที่ 23 มิถุนายน พ.ศ. 2546?",
    "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_en": "Who was the home side at glenferrie oval?",
    "question_th": "ทีมเจ้าบ้านที่เกลนเฟอร์รี่โอวัลคือใคร?",
    "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_en": "Who is the author of Episode 38 (16)?",
    "question_th": "ใครเป็นผู้เขียนตอนที่ 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_en": "When did Episode 29 (7) originally air?",
    "question_th": "ตอนที่ 29 (7) ออกอากาศครั้งแรกเมื่อไหร่?",
    "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_en": "What is the episode # of the episode that aired on April 5, 1998?",
    "question_th": "ตอนที่ # ของตอนที่ออกอากาศวันที่ 5 เมษายน 2541 คือตอนอะไร?",
    "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_en": "Who wrote the episode that originally aired on March 1, 1998?",
    "question_th": "ใครเป็นคนเขียนตอนที่ออกอากาศครั้งแรกเมื่อวันที่ 1 มีนาคม พ.ศ. 2541",
    "context": "CREATE TABLE table_name_42 (written_by VARCHAR, original_airdate VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_35 WHERE 2000 = \"3r\"",
    "question_en": "what tournament has 2000 of 3r?",
    "question_th": "ทัวร์นาเมนต์ใดที่มี 2000 จาก 3r?",
    "context": "CREATE TABLE table_name_35 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2001 FROM table_name_42 WHERE 1991 = \"4r\"",
    "question_en": "what 2001 has 1991 of 4r?",
    "question_th": "ปี 2544 มี 1991 เป็น 4r อะไร?",
    "context": "CREATE TABLE table_name_42 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1989 FROM table_name_22 WHERE 2002 = \"4r\" AND 2005 = \"4r\"",
    "question_en": "what 1989 has 2002 of 4r and 2005 of 4r?",
    "question_th": "อะไร 1989 มี 2002 ของ 4r และ 2005 ของ 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_en": "What team played in front of 28,536 at an away stadium?",
    "question_th": "ทีมใดเล่นต่อหน้าผู้ชม 28,536 คนในสนามเยือน?",
    "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_en": "What was Fitzroy score at their home stadium?",
    "question_th": "คะแนนฟิตซ์รอยที่สนามเหย้าของพวกเขาคือเท่าไร?",
    "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_en": "Who faced off against St Kilda at their home?",
    "question_th": "ใครบ้างที่จะเผชิญหน้ากับเซนต์คิลดาที่บ้านของพวกเขา?",
    "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_en": "What is the low number of top 25s in an event with over 15 appearances?",
    "question_th": "จำนวนผู้เข้ารอบ 25 อันดับแรกที่น้อยที่สุดในการแข่งขันที่มีการปรากฏตัวมากกว่า 15 ครั้งคือเท่าใด",
    "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_en": "What is the average rank of the Reliance Entertainment movie with an opening day on Wednesday before 2012?",
    "question_th": "อันดับเฉลี่ยของภาพยนตร์ Reliance Entertainment ที่มีวันเข้าฉายในวันพุธก่อนปี 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_en": "What is the opening day net gross a Reliance Entertainment movie before 2011 had?",
    "question_th": "วันเปิดตัวสุทธิของภาพยนตร์ Reliance Entertainment ก่อนปี 2554 มียอดเท่าใด",
    "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_en": "What is the studio of ra.one?",
    "question_th": "สตูดิโอของ 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_en": "What is the year of the movie with an opening day on Friday with a rank 10?",
    "question_th": "หนังปีไหนที่มีวันเปิดฉายวันศุกร์อันดับ 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_en": "What is the lowest Sack with a Solo of 24, with Tackles larger than 25.5, with Yards larger than 0?",
    "question_th": "แซ็คที่ต่ำที่สุดที่มีโซโล 24 โดยแท็กเกิลมากกว่า 25.5 และหลามากกว่า 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_en": "What is the total number of Solo with a Player with sean mcinerney, and Yards larger than 0?",
    "question_th": "จำนวนรวมของโซโลกับผู้เล่นที่มีฌอน แมคซิเนอร์นีย์ และจำนวนหลาที่มากกว่า 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_en": "At the power plant located in ramakkalmedu, what is the sum of the total capacity (MWe)?",
    "question_th": "ที่โรงไฟฟ้าที่รามัคกัลเมฑุ กำลังผลิตรวม (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_en": "What company is the producer in the chennai mohan power plant?",
    "question_th": "บริษัทใดเป็นผู้ผลิตในโรงไฟฟ้าเจนไนโมฮัน",
    "context": "CREATE TABLE table_name_79 (producer VARCHAR, power_plant VARCHAR)"
  },
  {
    "answer": "SELECT producer FROM table_name_99 WHERE location = \"poolavadi\"",
    "question_en": "What company is the producer at the poolavadi location",
    "question_th": "บริษัทใดเป็นผู้ผลิตที่สถานที่พูลลาวดี",
    "context": "CREATE TABLE table_name_99 (producer VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT producer FROM table_name_64 WHERE location = \"kethanur\"",
    "question_en": "What company is known as the producer at the kethanur location?",
    "question_th": "บริษัทใดที่เรียกว่าผู้ผลิตที่ที่ตั้งเกธานุร์?",
    "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_en": "When the duration was 11 min, 34 sec, what was the feathered (Fxx)?",
    "question_th": "เมื่อระยะเวลาคือ 11 นาที 34 วินาที ขนนก (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_en": "I want to know the city for guelferbytanus b and the 5th",
    "question_th": "ฉันอยากรู้จักเมืองของ guelferbytanus b และวันที่ 5",
    "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_en": "Name the country for the 9th and sign of g e",
    "question_th": "ตั้งชื่อประเทศวันที่ 9 และสัญลักษณ์ GE",
    "context": "CREATE TABLE table_name_51 (country VARCHAR, date VARCHAR, sign VARCHAR)"
  },
  {
    "answer": "SELECT content FROM table_name_54 WHERE sign = \"g e\"",
    "question_en": "Name the content for sign of g e",
    "question_th": "ตั้งชื่อเนื้อหาสำหรับสัญลักษณ์ของ ge",
    "context": "CREATE TABLE table_name_54 (content VARCHAR, sign VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_22 WHERE name = \"athous lavrensis\"",
    "question_en": "Name the city for athous lavrensis",
    "question_th": "ตั้งชื่อเมืองตามชื่อเอธัส ลาเวนซิส",
    "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_en": "Which race had a distance of 4 miles where the runner-up was not known?",
    "question_th": "การแข่งขันรายการใดมีระยะทาง 4 ไมล์ โดยไม่ทราบตำแหน่งรองชนะเลิศ?",
    "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_en": "What date did the Jazz play the Bulls at home?",
    "question_th": "แจ๊สเล่นบูลส์ในบ้านวันไหน?",
    "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_en": "On February 26, who was the leading scorer?",
    "question_th": "วันที่ 26 กุมภาพันธ์ ใครเป็นผู้ทำประตูสูงสุด?",
    "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_en": "What's the record of Carlos Boozer (23) as the leading scorer?",
    "question_th": "คาร์ลอส บูเซอร์ (23) เป็นผู้ทำประตูสูงสุดมีสถิติเท่าไร?",
    "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_en": "What date was Carlos Boozer (23) the leading scorer?",
    "question_th": "คาร์ลอส บูเซอร์ (23) เป็นผู้ทำประตูสูงสุดในวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_50 (date VARCHAR, leading_scorer VARCHAR)"
  },
  {
    "answer": "SELECT leading_scorer FROM table_name_96 WHERE date = \"february 9\"",
    "question_en": "Who was the leading scorer on February 9?",
    "question_th": "ใครคือผู้ทำประตูสูงสุดในวันที่ 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_en": "While the Hornets were visiting, what date was Deron Williams (29) the leading scorer?",
    "question_th": "ขณะที่เดอะฮอร์เน็ตส์มาเยือน เดรอน วิลเลียมส์ (29) เป็นผู้ทำประตูสูงสุดในวันที่เท่าไร?",
    "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_en": "Tell me the ships in classs for kuha class",
    "question_th": "บอกเรือในชั้นเรียนสำหรับชั้น kuha ให้ฉันหน่อย",
    "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_en": "How many grids have a Constructor of talbot-lago - talbot, a Laps under 83, and a driver of johnny claes?",
    "question_th": "มีกี่กริดที่มี Constructor ของ talbot-lago - talbot, รอบที่ต่ำกว่า 83 และตัวขับของ 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_en": "When the away team is Geelong, what is the highest crowd count?",
    "question_th": "เมื่อทีมเยือนคือจีลองจำนวนคนดูสูงสุดคือเท่าไหร่?",
    "context": "CREATE TABLE table_name_86 (crowd INTEGER, away_team VARCHAR)"
  },
  {
    "answer": "SELECT SUM(crowd) FROM table_name_23 WHERE venue = \"princes park\"",
    "question_en": "What is the total crowd count for the venue Princes Park?",
    "question_th": "จำนวนฝูงชนทั้งหมดที่ Princes Park คือเท่าไร?",
    "context": "CREATE TABLE table_name_23 (crowd INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT home_port FROM table_name_62 WHERE pennant = \"m40\"",
    "question_en": "What is the home port of m40?",
    "question_th": "พอร์ตบ้านของ 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_en": "What is the navy for middleton with a home port of portsmouth after 1983?",
    "question_th": "กองทัพเรือสำหรับมิดเดิลตันที่มีท่าเรือบ้านพอร์ตสมัธหลังปี 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_en": "When did Charles III die?",
    "question_th": "พระเจ้าชาร์ลส์ที่ 3 สิ้นพระชนม์เมื่อใด",
    "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_en": "What is the fastest lap of the race where Giuseppe Farina was the winning driver?",
    "question_th": "รอบที่เร็วที่สุดของการแข่งขันที่ Giuseppe Farina เป็นนักแข่งที่ชนะคืออะไร?",
    "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_en": "What is the report status of the race with Ferrari as the constructor and a monza circuit?",
    "question_th": "สถานะการรายงานการแข่งขันโดยมี Ferrari เป็นผู้สร้างและวงจร Monza คืออะไร?",
    "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_en": "What is the constructor of the race with Juan Manuel Fangio as the fastest lap and Giuseppe Farina as the winning driver?",
    "question_th": "อะไรคือผู้สร้างการแข่งขันที่มี Juan Manuel Fangio เป็นรอบที่เร็วที่สุดและ Giuseppe Farina เป็นนักแข่งที่ชนะ?",
    "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_en": "Who was the winning driver of the British Grand Prix where Giuseppe Farina had the fastest lap?",
    "question_th": "ใครคือนักแข่งที่ชนะรายการ British Grand Prix โดยที่ Giuseppe Farina มีรอบเร็วที่สุด?",
    "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_en": "What is the race that had a tyre of p and Juan Manuel Fangio as the winning driver?",
    "question_th": "รถแข่งอะไรที่มียาง พี และ ฮวน มานูเอล ฟานจิโอ เป็นนักแข่งที่ชนะ?",
    "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_en": "What is the Quantity of Type 2-4-2t?",
    "question_th": "ประเภท 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_en": "What was the Quantity on Date 1900?",
    "question_th": "ปริมาณในวันที่ 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_en": "What is the Quantity of type 2-4-2t?",
    "question_th": "ประเภท 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_en": "What is the smallest grid with a Time/Retired of engine, and a qual of less than 138.75?",
    "question_th": "กริดที่เล็กที่สุดที่มีเวลา/เลิกใช้เครื่องยนต์และค่าคุณสมบัติน้อยกว่า 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_en": "What laps have a rank larger than 13 and the Time/Retired is accident, and a Qual smaller than 136.98?",
    "question_th": "รอบใดที่มีอันดับมากกว่า 13 และเวลา/เกษียณคืออุบัติเหตุ และรอบคัดเลือกน้อยกว่า 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_en": "What position is Sal Martinez?",
    "question_th": "ซัล มาร์ติเนซ อยู่ตำแหน่งไหน?",
    "context": "CREATE TABLE table_name_32 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_67 WHERE time_retired = \"+2:06.0\"",
    "question_en": "Who constructed the car that has a Time/Retired of +2:06.0?",
    "question_th": "ใครเป็นคนสร้างรถที่มีเวลา/เกษียณเป็น +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_en": "What is the lap total for the grid under 15 that retired due to transmission?",
    "question_th": "จำนวนรอบรวมของกริดที่อายุต่ำกว่า 15 ปี ที่เลิกใช้เนื่องจากการส่งสัญญาณคือเท่าใด",
    "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_en": "Who constructed juan manuel fangio's car with over 76 laps and a grid under 10?",
    "question_th": "ใครเป็นคนสร้างรถของฮวน มานูเอล ฟานจิโอด้วยระยะทาง 76 รอบและกริดต่ำกว่า 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_en": "what is the sum of laps when grid is less than 20 and johnny herbert is driving?",
    "question_th": "ผลรวมของรอบเมื่อกริดน้อยกว่า 20 และจอห์นนี่ เฮอร์เบิร์ตกำลังขับรถอยู่เป็นเท่าใด",
    "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_en": "who is the driver for the car constructed by ferrari with a time/retired of +1:06.683?",
    "question_th": "ใครคือคนขับรถที่สร้างโดยเฟอร์รารีโดยมีเวลา/เกษียณอยู่ที่ +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_en": "who is the driver when grid is 11?",
    "question_th": "ใครคือคนขับเมื่อกริดคือ 11?",
    "context": "CREATE TABLE table_name_81 (driver VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_72 WHERE result = \"30-12\"",
    "question_en": "Who was the opponent with a score of 30-12?",
    "question_th": "คู่ต่อสู้ที่มีสกอร์ 30-12 คือใคร?",
    "context": "CREATE TABLE table_name_72 (opponent VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_89 WHERE result = \"40-20\"",
    "question_en": "Who was the opponent with a score of 40-20?",
    "question_th": "คู่ต่อสู้ที่มีสกอร์ 40-20 คือใคร?",
    "context": "CREATE TABLE table_name_89 (opponent VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_31 WHERE away_team = \"geelong\"",
    "question_en": "When did Geelong play as the away team?",
    "question_th": "จีลองลงเล่นเป็นทีมเยือนเมื่อไหร่?",
    "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_en": "What is the total capacity (MW) of the farm that is noted as being under construction?",
    "question_th": "กำลังการผลิตรวม (MW) ของฟาร์มที่ถูกระบุว่าอยู่ระหว่างการก่อสร้างคือเท่าใด",
    "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_en": "Which state is Tehachapi Pass Wind Farm located in?",
    "question_th": "ฟาร์มกังหันลม Tehachapi Pass ตั้งอยู่ในรัฐใด",
    "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_en": "Which wind farm is in the USA and is noted as having multiple farms?",
    "question_th": "ฟาร์มกังหันลมใดอยู่ในสหรัฐอเมริกาและขึ้นชื่อว่ามีหลายฟาร์ม",
    "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_en": "What special notes are included for the windfarm with a capacity (MW) of 343?",
    "question_th": "มีหมายเหตุพิเศษอะไรบ้างสำหรับกังหันลมที่มีความจุ (MW) 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_en": "What is the total capacity (MW) of the windfarm located in the state/province of Gansu?",
    "question_th": "กำลังการผลิตรวม (MW) ของฟาร์มกังหันลมที่ตั้งอยู่ในรัฐ/จังหวัดกานซูคือเท่าใด",
    "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_en": "In the game held at Arden Street Oval, what was the score of the home team?",
    "question_th": "ในเกมที่จัดขึ้นที่ อาร์เดน สตรีท โอวัล เจ้าบ้านได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_23 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT SUM(crowd) FROM table_name_93 WHERE venue = \"kardinia park\"",
    "question_en": "How many people in total have attended games at Kardinia Park?",
    "question_th": "มีผู้เข้าร่วมการแข่งขันที่ 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_en": "Which game at Arden Street Oval had the lowest attendance?",
    "question_th": "เกมใดที่ Arden Street Oval มีผู้ชมน้อยที่สุด?",
    "context": "CREATE TABLE table_name_96 (crowd INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_49 WHERE away_team = \"footscray\"",
    "question_en": "Where was the game against the away team Footscray held?",
    "question_th": "เกมกับทีมเยือน ฟุตสเครย์ จัดขึ้นที่ไหน?",
    "context": "CREATE TABLE table_name_49 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT AVG(points) FROM table_name_96 WHERE played > 42",
    "question_en": "What is the average number of points for clubs that have played more than 42 times?",
    "question_th": "จำนวนคะแนนเฉลี่ยของสโมสรที่เล่นมากกว่า 42 ครั้งคือเท่าไร?",
    "context": "CREATE TABLE table_name_96 (points INTEGER, played INTEGER)"
  },
  {
    "answer": "SELECT COUNT(goals_against) FROM table_name_68 WHERE played > 42",
    "question_en": "What is the total number of goals scored against clubs that have played more than 42 times?",
    "question_th": "จำนวนประตูทั้งหมดที่ทำได้ต่อสโมสรที่เล่นมากกว่า 42 ครั้งคือเท่าใด?",
    "context": "CREATE TABLE table_name_68 (goals_against VARCHAR, played INTEGER)"
  },
  {
    "answer": "SELECT date FROM table_name_74 WHERE home_team = \"geelong\"",
    "question_en": "On which date did Geelong play at home?",
    "question_th": "จีลองเล่นที่บ้านวันไหน?",
    "context": "CREATE TABLE table_name_74 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_32 WHERE venue = \"windy hill\"",
    "question_en": "Which home team has a venue of windy hill?",
    "question_th": "ทีมเจ้าบ้านไหนมีสนามวินดี้ฮิลล์?",
    "context": "CREATE TABLE table_name_32 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_87 WHERE home_team = \"essendon\"",
    "question_en": "If essendon is the home team, what venue did they play at?",
    "question_th": "ถ้าเอสเซนดอนเป็นเจ้าบ้าน พวกเขาเล่นที่สนามไหน?",
    "context": "CREATE TABLE table_name_87 (venue VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_3 WHERE home_team = \"richmond\"",
    "question_en": "When the home team is richmond, what was the away team playing?",
    "question_th": "เมื่อเจ้าบ้าน ริชมอนด์ ทีมเยือนเล่นอะไร?",
    "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_en": "When was the lock with 10 caps born?",
    "question_th": "ล็อคที่มี 10 แคปเกิดเมื่อไหร่?",
    "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_en": "What were the laps of driver Jean-Christophe Boullion?",
    "question_th": "นักแข่ง 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_en": "What Playoffs were held during the years of 2007-08?",
    "question_th": "รอบตัดเชือกใดที่จัดขึ้นในช่วงปี 2550-51?",
    "context": "CREATE TABLE table_name_70 (playoffs VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_4 WHERE away_team = \"richmond\"",
    "question_en": "On which date did Richmond play as an away team?",
    "question_th": "ริชมอนด์ลงเล่นเป็นทีมเยือนวันไหน?",
    "context": "CREATE TABLE table_name_4 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_61 WHERE home_team = \"melbourne\"",
    "question_en": "What away team did Melbourne play as the home team?",
    "question_th": "เมลเบิร์นเล่นทีมเยือนทีมไหนเป็นเจ้าบ้าน?",
    "context": "CREATE TABLE table_name_61 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT chapter FROM table_name_14 WHERE founding_date > 2012",
    "question_en": "Which chapter was founded later than 2012?",
    "question_th": "บทที่ใดก่อตั้งขึ้นช้ากว่าปี 2012?",
    "context": "CREATE TABLE table_name_14 (chapter VARCHAR, founding_date INTEGER)"
  },
  {
    "answer": "SELECT chapter FROM table_name_65 WHERE city = \"lubbock\"",
    "question_en": "What is the chapter in Lubbock?",
    "question_th": "บทในลับบ็อกคืออะไร?",
    "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_en": "What was the highest Interview score from a contestant who had a swimsuit score of 8.857 and an Average score over 9.097?",
    "question_th": "คะแนนสัมภาษณ์สูงสุดของผู้เข้าแข่งขันที่ได้คะแนนชุดว่ายน้ำ 8.857 และคะแนนเฉลี่ยมากกว่า 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_en": "What year has a Top 25 of 0, and a Earnings ($) larger than 0?",
    "question_th": "ปีใดมี 25 อันดับแรกจาก 0 และรายได้ ($) มากกว่า 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_en": "What is the highest Top 25 with a Money list rank of 232 and Cuts smaller than 2?",
    "question_th": "25 อันดับแรกสูงสุดที่มีอันดับ Money list 232 และ Cuts น้อยกว่า 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_en": "What is the smallest Earnings that has a Money list rank of 6 and Starts smaller than 22?",
    "question_th": "รายได้ที่น้อยที่สุดที่มีรายการเงินอันดับ 6 และเริ่มต้นน้อยกว่า 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_en": "What is the highest number of Cuts made that has a Top 10 smaller than 8 and Wins larger than 0?",
    "question_th": "จำนวนการตัดสูงสุดที่มี 10 อันดับแรกน้อยกว่า 8 และชัยชนะมากกว่า 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_en": "How many Starts that have Cuts made of 2, Top 25 larger than 0, and Earnings ($) smaller than 338,067?",
    "question_th": "มีการเริ่มต้นกี่ครั้งที่มีการตัด 2 รายการ 25 อันดับแรกมากกว่า 0 และรายได้ ($) น้อยกว่า 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_en": "Which event was in round 1, resulted in a win, and a record of 15-4?",
    "question_th": "รายการไหนเข้ารอบ 1 ชนะและสถิติ 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_en": "What is the result when the time was 5:00 and a record of 14-4?",
    "question_th": "ผลเมื่อเวลา 05.00 น. และสถิติ 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_en": "How many wins did Ayr United have?",
    "question_th": "อายร์ ยูไนเต็ด ชนะได้กี่ครั้ง?",
    "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_en": "When was the final loss of the club last won in 2001 and has a total of 3 wins?",
    "question_th": "ความพ่ายแพ้ครั้งสุดท้ายของสโมสรคือครั้งสุดท้ายเมื่อปี 2544 และชนะทั้งหมด 3 ครั้ง?",
    "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_en": "When was the last win for the club that had a final loss in 2011?",
    "question_th": "ชัยชนะครั้งสุดท้ายของสโมสรที่แพ้ครั้งสุดท้ายในปี 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_en": "How many wins did the 8 time runner-up have?",
    "question_th": "รองชนะเลิศ 8 สมัยได้ชัยชนะไปกี่ครั้ง?",
    "context": "CREATE TABLE table_name_33 (wins VARCHAR, runners_up VARCHAR)"
  },
  {
    "answer": "SELECT wins FROM table_name_42 WHERE last_win = \"2000\"",
    "question_en": "How many wins did the club have with the last win in 2000?",
    "question_th": "สโมสรเก็บชัยชนะได้กี่ครั้งจากชัยชนะครั้งล่าสุดในปี 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_en": "What are the carries of the player Jeremiah Pope?",
    "question_th": "นักเตะเยเรมีย์ โป๊ป มีคุณสมบัติอะไรบ้าง?",
    "context": "CREATE TABLE table_name_83 (car INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(crowd) FROM table_name_58 WHERE home_team = \"fitzroy\"",
    "question_en": "What was the largest crowd that was in attendance for fitzroy?",
    "question_th": "ฝูงชนที่ใหญ่ที่สุดที่เข้าร่วมงานฟิตซ์รอยคือกลุ่มใด?",
    "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_en": "Who plays g position for the st. louis bombers?",
    "question_th": "ใครเล่นตำแหน่ง g สำหรับเซนต์ หลุยส์ บอมเบอร์ส?",
    "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_en": "Who plays f position for depauw?",
    "question_th": "ใครเล่นตำแหน่ง f ให้กับ 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_en": "What position does the saint louis player play?",
    "question_th": "นักเตะแซงต์หลุยส์เล่นตำแหน่งอะไร?",
    "context": "CREATE TABLE table_name_39 (position VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_79 WHERE college = \"sam houston state\"",
    "question_en": "Who plays for sam houston state?",
    "question_th": "ใครเล่นให้กับแซม ฮิวสตัน สเตต?",
    "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_en": "How many positions have Points of 30-8 and more than 25 goals?",
    "question_th": "มีกี่ตำแหน่งที่มีคะแนน 30-8 และมากกว่า 25 ประตู?",
    "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_en": "What is the lowest play with ue figueres club and a goal difference more than 16?",
    "question_th": "อะไรคือการเล่นต่ำสุดของสโมสร ue figueres และประตูได้เสียมากกว่า 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_en": "How many played have 8 wins and more than 58 goals against?",
    "question_th": "มีกี่คนที่เล่นชนะ 8 ครั้งและเสียประตูมากกว่า 58 ประตู?",
    "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_en": "What is withdrawn with a GSR Class of 296?",
    "question_th": "อะไรจะถูกถอนออกด้วย GSR Class 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_en": "What Inchicore Class has a GSR Class of 235?",
    "question_th": "Inchicore Class ใดที่มี GSR Class 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_en": "What Inchicore Class has a GSWR Class smaller than 268, and a Type of 0-4-2t?",
    "question_th": "คลาส Inchicore ใดที่มีคลาส GSWR เล็กกว่า 268 และมีประเภท 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_en": "Which GSWR Class is from 1893?",
    "question_th": "คลาส GSWR ใดที่มาจากปี 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_en": "On the episode that had a run time of 24:57, how many million viewers were there?",
    "question_th": "ตอนที่มีความยาว 24:57 มีผู้ชมกี่ล้านคน?",
    "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_en": "What year had a record of 4-21?",
    "question_th": "ปีไหนมีสถิติ 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_en": "What regular season had a record of 16-12?",
    "question_th": "ฤดูกาลปกติใดที่มีสถิติ 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_en": "What is the regular season info that had a record of 20-10?",
    "question_th": "ข้อมูลฤดูกาลปกติที่มีสถิติ 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_en": "Tell me the 1st leg for asfa rabat",
    "question_th": "บอกขาที่ 1 ของอัสฟาราบัตหน่อยสิ",
    "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_en": "Tell me the 2nd leg for alemannia aachen",
    "question_th": "บอกขาที่ 2 ของ 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_en": "Tell me the 1st leg for antwerp bc",
    "question_th": "บอกขาที่ 1 ของแอนต์เวิร์ปก่อนค่ะ",
    "context": "CREATE TABLE table_name_10 (team__number2 VARCHAR)"
  },
  {
    "answer": "SELECT team__number2 FROM table_name_78 WHERE team__number1 = \"handelsministerium vienna\"",
    "question_en": "Tell me the team 2 for handelsministerium vienna",
    "question_th": "บอกทีม 2 ของกระทรวงฮันเดลส์เวียนนาหน่อยสิ",
    "context": "CREATE TABLE table_name_78 (team__number2 VARCHAR, team__number1 VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_83 WHERE away_team = \"melbourne\"",
    "question_en": "On what date did the away team Melbourne play?",
    "question_th": "เมลเบิร์นทีมเยือนลงเล่นวันไหน?",
    "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_en": "What home team played the away team South Melbourne?",
    "question_th": "เจ้าบ้านทีมไหนเจอกับทีมเยือน เซาธ์ เมลเบิร์น?",
    "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_en": "Which is the largest area in Greenville County, by square mile?",
    "question_th": "พื้นที่ใดที่ใหญ่ที่สุดใน Greenville County โดยตารางไมล์",
    "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_en": "Which is the total number in the 2010 Census in Oconee County where the area in square miles was less than 674?",
    "question_th": "ข้อใดคือจำนวนทั้งหมดในการสำรวจสำมะโนประชากรปี 2010 ในเทศมณฑล Oconee ซึ่งพื้นที่ในตารางไมล์น้อยกว่า 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_en": "Which Particle has a Rest mass MeV/c 2 of 1192.642(24)?",
    "question_th": "อนุภาคใดมีมวลนิ่ง MeV/c 2 เท่ากับ 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 + + π 0 or n 0 + π +\"",
    "question_en": "Which Particle has an Isospin I of 1 and Commonly decays to p + + π 0 or n 0 + π +?",
    "question_th": "อนุภาคใดมีไอโซสปิน I เป็น 1 และโดยทั่วไปจะสลายตัวเป็น p + + π 0 หรือ n 0 + π +",
    "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⁄2 +\"",
    "question_en": "When the Makeup is u s s and the Spin (Parity) J P of 3⁄2 +, what is the Rest mass MeV/C2?",
    "question_th": "เมื่อแต่งหน้าเป็น uss และ Spin (Parity) JP เท่ากับ 3⁄2 + มวล Rest 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⁄2\" AND symbol = \"ξ ∗0 (1530)\"",
    "question_en": "Which Particle has an Isospin I of 1⁄2, and a Symbol of ξ ∗0 (1530)?",
    "question_th": "อนุภาคใดมีไอโซสปิน I เป็น 1⁄2 และสัญลักษณ์เป็น ξ ∗0 (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⁄2 +\"",
    "question_en": "Which Particle has a Makeup of d s s and a Spin (Parity) J P of 3⁄2 +?",
    "question_th": "อนุภาคใดมีส่วนประกอบของ dss และ Spin (Parity) JP เท่ากับ 3⁄2 +",
    "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±1.0\"",
    "question_en": "Which Particle has a Rest mass MeV/c 2 of 1383.7±1.0?",
    "question_th": "อนุภาคใดมีมวลนิ่ง MeV/c 2 เท่ากับ 1383.7±1.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_en": "What was the title of Ashanti's 2003 rap song?",
    "question_th": "เพลงแร็พของ Ashanti ในปี 2003 ชื่อเพลงอะไร",
    "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_en": "How many tries did the player Paul Sykes take when he earned 0 points?",
    "question_th": "ผู้เล่น Paul Sykes พยายามกี่ครั้งเมื่อเขาได้รับ 0 คะแนน",
    "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_en": "Mike Forshaw had 0 goals and 28 points. What is his position?",
    "question_th": "ไมค์ ฟอร์ชอว์ ทำได้ 0 ประตู มี 28 แต้ม ตำแหน่งของเขาคืออะไร?",
    "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_en": "How big is the Venue of Brunswick Street Oval?",
    "question_th": "สถานที่จัดงาน 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_en": "What is the Away Team score of North Melbourne?",
    "question_th": "คะแนนทีมเยือนของ นอร์ท เมลเบิร์น คืออะไร?",
    "context": "CREATE TABLE table_name_24 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT killed FROM table_name_55 WHERE unit = \"personal staff\"",
    "question_en": "What was the number of Personal Staff Units Killed?",
    "question_th": "จำนวนเจ้าหน้าที่ส่วนบุคคลที่ถูกสังหารคือเท่าไร?",
    "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_en": "What was the Complement of Artillery Corps Units that had 0 off 0 men Killed or Wounded?",
    "question_th": "อะไรคือหน่วยเสริมของหน่วยปืนใหญ่ที่มี 0 จาก 0 คนที่ถูกฆ่าหรือได้รับบาดเจ็บ?",
    "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_en": "How many were Wounded while in a Unit with a Complement of 83 off 9 Men?",
    "question_th": "มีผู้ได้รับบาดเจ็บกี่คนในขณะที่อยู่ในหน่วยที่มีกำลังเสริม 83 คนจาก 9 คน",
    "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_en": "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?",
    "question_th": "มีหน่วยรถไฟ Royal Waggon Train ที่หายไปกี่คน ในขณะที่มีผู้เสียชีวิต 0 คนจาก 0 คน และบาดเจ็บ 0 คนจาก 0 คน",
    "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_en": "How many were Wounded in the Artillery Corps unit while having 0 off 0 men Killed?",
    "question_th": "มีผู้ได้รับบาดเจ็บจำนวนเท่าใดในหน่วยปืนใหญ่ในขณะที่มีผู้เสียชีวิต 0 คนจาก 0 คน",
    "context": "CREATE TABLE table_name_24 (wounded VARCHAR, killed VARCHAR, unit VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_38 WHERE opponent = \"yevgeny kafelnikov\"",
    "question_en": "What suface during the game that had Yevgeny Kafelnikov as an opponent?",
    "question_th": "มีอะไรเกิดขึ้นระหว่างเกมที่มี Yevgeny Kafelnikov เป็นคู่ต่อสู้?",
    "context": "CREATE TABLE table_name_38 (surface VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT MIN(week) FROM table_name_63 WHERE opponent = \"san jose sabercats\"",
    "question_en": "What was the earliest week that the Storm played the San Jose Sabercats?",
    "question_th": "สัปดาห์แรกสุดที่ Storm เล่นกับ San Jose Sabercats คืออะไร?",
    "context": "CREATE TABLE table_name_63 (week INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_33 WHERE score = \"† 4–4 †\"",
    "question_en": "How many were in attendance when the score was † 4–4 †?",
    "question_th": "มีผู้เข้าร่วมกี่คนเมื่อคะแนนเป็น † 4–4 †",
    "context": "CREATE TABLE table_name_33 (attendance VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_95 WHERE runner_up = \"livingston\"",
    "question_en": "How many people were watching when Livingston was the runner-up?",
    "question_th": "มีกี่คนที่รับชมตอนที่ลิฟวิงสตันเป็นรองแชมป์?",
    "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_en": "what average grid has laps larger than 52 and contains the driver of andrea de adamich?",
    "question_th": "ตารางเฉลี่ยใดที่มีรอบมากกว่า 52 และมีคนขับของ 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_en": "what's the highest lap that contains the driver of graham hill and a grid that is larger than 18?",
    "question_th": "รอบที่สูงที่สุดที่มีนักแข่ง Graham Hill และกริดที่ใหญ่กว่า 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_en": "what's the average grid that has a time/retired piston and laps smaller than 15?",
    "question_th": "ตารางเฉลี่ยที่มีเวลา/ลูกสูบที่เลิกใช้และรอบที่น้อยกว่า 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_en": "Who is the tuner after season 2004 with Gaurav Gill as the driver, Team MRF, and Mai governing body?",
    "question_th": "ใครคือผู้ปรับแต่งหลังฤดูกาล 2004 โดยมี Gaurav Gill เป็นนักแข่ง, ทีม MRF และหน่วยงานกำกับดูแลของ Mai?",
    "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_en": "Who is the driver in season 2003 with a tuner of N. Leelakrishnan and a Mai governing body?",
    "question_th": "ใครคือนักแข่งในฤดูกาล 2003 ที่มีจูนเนอร์ เอ็น. ลีลากฤษณะ และ องค์การปกครองใหม่?",
    "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_en": "Who is the turner on Team MRF?",
    "question_th": "ใครคือผู้เปลี่ยนทีม MRF?",
    "context": "CREATE TABLE table_name_23 (tuner VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT MIN(season) FROM table_name_34 WHERE driver = \"farad bathena\"",
    "question_en": "What is the earliest season with driver Farad Bathena?",
    "question_th": "ฤดูกาลแรกสุดกับนักแข่ง 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_en": "Which Major League Soccer team for the 2005 season has the lowest goals?",
    "question_th": "ทีมในเมเจอร์ลีกซอกเกอร์ทีมใดในฤดูกาล 2005 ที่ทำประตูได้ต่ำที่สุด?",
    "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_en": "What are the average apps for the Major League Soccer team club for the Seattle Sounders FC that has goals less than 0?",
    "question_th": "แอปเฉลี่ยสำหรับสโมสรทีม Major League Soccer สำหรับ Seattle Sounders FC ที่มีเป้าหมายน้อยกว่า 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åt/blå\"",
    "question_en": "Which Icelandic has a Danish of blåt/blå?",
    "question_th": "ภาษาไอซ์แลนด์ใดมีภาษาเดนมาร์กเป็น blåt/blå?",
    "context": "CREATE TABLE table_name_59 (icelandic VARCHAR, danish VARCHAR)"
  },
  {
    "answer": "SELECT icelandic FROM table_name_47 WHERE norwegian__nynorsk_ = \"kvitt/kvit\"",
    "question_en": "Which Icelandic has a Norwegian (nynorsk) of kvitt/kvit?",
    "question_th": "ภาษาไอซ์แลนด์ใดมีภาษานอร์เวย์ (nynorsk) เป็น kvitt/kvit?",
    "context": "CREATE TABLE table_name_47 (icelandic VARCHAR, norwegian__nynorsk_ VARCHAR)"
  },
  {
    "answer": "SELECT faroese FROM table_name_83 WHERE english = \"white\"",
    "question_en": "Which Faroese has an English of white?",
    "question_th": "ชาวแฟโรคนใดมีภาษาอังกฤษเป็นสีขาว",
    "context": "CREATE TABLE table_name_83 (faroese VARCHAR, english VARCHAR)"
  },
  {
    "answer": "SELECT norwegian__nynorsk_ FROM table_name_12 WHERE danish = \"farvel\"",
    "question_en": "Which Norwegian (nynorsk) has a Danish of farvel?",
    "question_th": "ชาวนอร์เวย์คนไหน (nynorsk) มีภาษาเดนมาร์กเป็น Farvel?",
    "context": "CREATE TABLE table_name_12 (norwegian__nynorsk_ VARCHAR, danish VARCHAR)"
  },
  {
    "answer": "SELECT english FROM table_name_69 WHERE danish = \"rødt/rød\"",
    "question_en": "Which English has a Danish of rødt/rød?",
    "question_th": "ภาษาอังกฤษข้อใดเป็นภาษาเดนมาร์กว่า rødt/rød?",
    "context": "CREATE TABLE table_name_69 (english VARCHAR, danish VARCHAR)"
  },
  {
    "answer": "SELECT congress FROM table_name_97 WHERE _number_of_cosponsors = 44",
    "question_en": "What number of Congress has 44 cosponsors?",
    "question_th": "สภาคองเกรสมีผู้ร่วมสนับสนุน 44 คนจำนวนเท่าใด",
    "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_en": "Who was the sponsor on April 22, 2004?",
    "question_th": "ใครเป็นผู้สนับสนุนเมื่อวันที่ 22 เมษายน พ.ศ. 2547",
    "context": "CREATE TABLE table_name_43 (sponsor VARCHAR, date_introduced VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_98 WHERE home = \"new york rangers\"",
    "question_en": "What is the score of the game when the New York Rangers were the home team?",
    "question_th": "เกมเมื่อ นิวยอร์ก เรนเจอร์ส เป็นเจ้าบ้าน สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_98 (score VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_26 WHERE date = \"8 october 1961\"",
    "question_en": "What was the result on 8 October 1961?",
    "question_th": "วันที่ 8 ต.ค. 61 มีผลเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_26 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_33 WHERE date = \"27 april 1964\"",
    "question_en": "What was the venue of the game on 27 April 1964?",
    "question_th": "วันที่ 27 เมษายน พ.ศ. 2507 สถานที่จัดการแข่งขันคือที่ไหน?",
    "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_en": "What is the home team score when the away team was Hawthorn?",
    "question_th": "เมื่อเจ้าบ้านเป็นฮอว์ธอร์นสกอร์เท่าไหร่?",
    "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_en": "What was the score of the game against Divij Sharan?",
    "question_th": "เกมนี้กับดิวิช ชารานมีสกอร์เท่าไหร่?",
    "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_en": "What was the score of the match that was a played on a hard surface against Peter Gojowczyk?",
    "question_th": "แมตช์ที่เล่นบนพื้นผิวแข็งกับ 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_en": "How many attended the game with a record of 43-34?",
    "question_th": "มีกี่คนที่เข้าร่วมเกมด้วยสถิติ 43-34?",
    "context": "CREATE TABLE table_name_59 (attendance VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT opponents FROM table_name_81 WHERE partner = \"michelle strebel\"",
    "question_en": "Who was Manuela Maleeva opponent when she played a match partnered with michelle strebel?",
    "question_th": "ใครคือคู่ต่อสู้ของ Manuela Maleeva เมื่อเธอเล่นแมตช์ร่วมกับ 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_en": "When the percent is larger than 0.685, what is the average number of points scored?",
    "question_th": "เมื่อเปอร์เซ็นต์มากกว่า 0.685 จะได้คะแนนเฉลี่ยเท่าใด",
    "context": "CREATE TABLE table_name_61 (points INTEGER, pct__percentage INTEGER)"
  },
  {
    "answer": "SELECT MIN(pct__percentage) FROM table_name_90 WHERE points < 37",
    "question_en": "When less than 37 points are scored, what's the lowest Pct % found?",
    "question_th": "เมื่อได้คะแนนน้อยกว่า 37 คะแนน พบ Pct % ต่ำสุดเท่าใด",
    "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_en": "How many rounds did the event rings: king of kings 2000 block a have with a record of 6-1?",
    "question_th": "เหตุการณ์ดังขึ้นกี่รอบ: king of kings 2000 สกัดกั้นด้วยสถิติ 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_en": "How long was the fight 'adrenaline mma 3'?",
    "question_th": "ศึก 'อะดรีนาลีน mma 3' นานแค่ไหน?",
    "context": "CREATE TABLE table_name_72 (time VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_60 WHERE opponent = \"john salter\"",
    "question_en": "What was roberto travern's record when he fought against john salter?",
    "question_th": "บันทึกของโรแบร์โต ทราเวิร์นเมื่อเขาต่อสู้กับจอห์น ซอลเตอร์คืออะไร",
    "context": "CREATE TABLE table_name_60 (record VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT away_team AS score FROM table_name_16 WHERE venue = \"mcg\"",
    "question_en": "What was the score of the away team at the MCG?",
    "question_th": "ทีมเยือนเอ็มซีจีได้สกอร์เท่าไหร่?",
    "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_en": "Who constructed the car with a grid larger than 20 that got in an accident?",
    "question_th": "ใครเป็นคนสร้างรถที่มีตะแกรงใหญ่กว่า 20 ที่เกิดอุบัติเหตุ?",
    "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_en": "Which Position has a CFL Team of montreal alouettes (via edmonton)?",
    "question_th": "ตำแหน่งใดมีทีม CFL ของ montreal alouettes (ผ่าน 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_en": "Which Player has a CFL Team of montreal alouettes (via hamilton via winnipeg)?",
    "question_th": "ผู้เล่นคนไหนมีทีม CFL ของ montreal alouettes (ผ่าน hamilton ผ่าน winnipeg)?",
    "context": "CREATE TABLE table_name_23 (player VARCHAR, cfl_team VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_35 WHERE player = \"patrick macdonald\"",
    "question_en": "Which Position has a Player of patrick macdonald?",
    "question_th": "ตำแหน่งใดที่มีผู้เล่นของแพทริค แมคโดนัลด์?",
    "context": "CREATE TABLE table_name_35 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT SUM(series) FROM table_name_54 WHERE sixth_place = \"joan tena\"",
    "question_en": "What series had Joan Tena in sixth place?",
    "question_th": "Joan Tena อยู่ในอันดับที่หกในซีรีส์เรื่องใด",
    "context": "CREATE TABLE table_name_54 (series INTEGER, sixth_place VARCHAR)"
  },
  {
    "answer": "SELECT sixth_place FROM table_name_34 WHERE series = 7",
    "question_en": "Who was in sixth place in series 7?",
    "question_th": "ใครอยู่อันดับที่หกในซีรีส์ 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_en": "Who was sixth place when Hugo Salazar was fifth place?",
    "question_th": "ใครเป็นอันดับหกเมื่อ Hugo Salazar อยู่อันดับที่ห้า?",
    "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_en": "Who was third place when Fran Dieli was fifth place?",
    "question_th": "ใครคือคนที่สามเมื่อ Fran Dieli อยู่อันดับที่ห้า?",
    "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_en": "What is the Order and Title with an Elevated with 1261, december 17, and a Faction with angevin?",
    "question_th": "อะไรคือลำดับและตำแหน่งที่มีการยกระดับด้วย 1261, 17 ธันวาคม และฝ่ายที่มีแองเจวิน?",
    "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_en": "What is the Elector with a Nationality with roman, and an Elevator of urban iv, and an Elevated with 1261, december 17?",
    "question_th": "อะไรคือผู้มีสิทธิเลือกตั้งที่มีสัญชาติแบบโรมัน และลิฟต์ของเมือง iv และยกระดับด้วย 1261 วันที่ 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_en": "What is the Nationality with an Elector with bertrand de saint-martin?",
    "question_th": "สัญชาติที่มีผู้มีสิทธิเลือกตั้งกับ 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_en": "What is the Order and Title with a Nationality with roman, and an Elector with matteo orsini rosso?",
    "question_th": "อะไรคือลำดับและตำแหน่งที่มีสัญชาติแบบโรมัน และผู้มีสิทธิเลือกตั้งที่มีมัตเตโอ ออร์ซินี รอสโซ?",
    "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_en": "What is the Elector with a Faction of roman, and an Elevated with 1244, may 28?",
    "question_th": "อะไรคือผู้มีสิทธิเลือกตั้งที่มีฝ่ายโรมันและยกระดับด้วย 1244 ในวันที่ 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_en": "What is the mult value of the microprocessor with a release date q4 2007 and model number pentium dual-core t2310?",
    "question_th": "ไมโครโปรเซสเซอร์ซึ่งมีวันวางจำหน่ายในไตรมาสที่ 4 ปี 2550 และหมายเลขรุ่น 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_en": "What is the L2 cache of the microprocessor with model number pentium dual-core t3400?",
    "question_th": "แคช L2 ของไมโครโปรเซสเซอร์ที่มีหมายเลขรุ่น 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_en": "What is the release price (USD) of the microprocessor with a model number pentium dual-core t2330?",
    "question_th": "ราคาวางจำหน่าย (USD) ของไมโครโปรเซสเซอร์ที่มีหมายเลขรุ่น 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_en": "What day did Patrick Tambay have the fastest lap?",
    "question_th": "Patrick Tambay มีรอบเร็วที่สุดในวันใด",
    "context": "CREATE TABLE table_name_35 (date VARCHAR, fastest_lap VARCHAR)"
  },
  {
    "answer": "SELECT pole_position FROM table_name_41 WHERE location = \"spa-francorchamps\"",
    "question_en": "Who held the pole position in SPA-Francorchamps?",
    "question_th": "ใครดำรงตำแหน่งโพลโพซิชั่นใน 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_en": "Who was the Long Beach constructor?",
    "question_th": "ใครคือผู้สร้างลองบีช?",
    "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_en": "What did St Kilda score when they were the home team?",
    "question_th": "เซนต์คิลดาทำประตูอะไรตอนเป็นเจ้าบ้าน?",
    "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_en": "What did the home team score when South Melbourne was the away team?",
    "question_th": "เจ้าบ้านได้คะแนนอะไรเมื่อเซาธ์ เมลเบิร์น เป็นทีมเยือน?",
    "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_en": "Name the leading scorer for april 12, 2008",
    "question_th": "รายชื่อผู้ทำประตูสูงสุดประจำวันที่ 12 เมษายน พ.ศ. 2551",
    "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_en": "What was the score for the home team that played at Brunswick Street Oval?",
    "question_th": "เจ้าบ้านที่เล่นที่บรันสวิก สตรีท โอวัล ได้คะแนนเท่าไหร่?",
    "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_en": "what is the name for seasons 1981 and an order more than 807?",
    "question_th": "ซีซั่น 1981 และมียอดสั่งซื้อมากกว่า 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_en": "What away team played in Lake Oval?",
    "question_th": "ทีมเยือนทีมไหนเล่นในเลคโอวัล?",
    "context": "CREATE TABLE table_name_63 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_30 WHERE 2009 = \"11\"",
    "question_en": "Which tournament was on 2009 with 11?",
    "question_th": "ทัวร์นาเมนต์ใดคือปี 2009 โดยมี 11 รายการ",
    "context": "CREATE TABLE table_name_30 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_57 WHERE laps = 59 AND grid = 11",
    "question_en": "What driver went 59 laps on grid 11?",
    "question_th": "นักแข่งคนไหนวิ่งได้ 59 รอบในตาราง 11?",
    "context": "CREATE TABLE table_name_57 (driver VARCHAR, laps VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_38 WHERE grid = \"22\"",
    "question_en": "Which driver has a grid value of 22?",
    "question_th": "ไดรเวอร์ใดมีค่ากริดเท่ากับ 22",
    "context": "CREATE TABLE table_name_38 (driver VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT time_retired FROM table_name_29 WHERE driver = \"jean alesi\"",
    "question_en": "What is the value of time/retired for Jean Alesi?",
    "question_th": "มูลค่าของเวลา/เกษียณสำหรับ 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_en": "When the time/retired is electrical how many laps did Rubens Barrichello have?",
    "question_th": "เมื่อเวลา/เกษียณเป็นแบบไฟฟ้า Rubens Barrichello มีกี่รอบ?",
    "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_en": "How many laps did Eddie Irvine have?",
    "question_th": "Eddie Irvine ไปได้กี่รอบ?",
    "context": "CREATE TABLE table_name_73 (laps VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_9 WHERE home = \"hornets\" AND visitor = \"clippers\"",
    "question_en": "In the game where the Hornets were the home team and Clippers the visiting team, what is the score?",
    "question_th": "ในเกมที่ ฮอร์เน็ตส์ เป็นเจ้าบ้าน และ คลิปเปอร์ส เป็นทีมเยือน สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_9 (score VARCHAR, home VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_13 WHERE qual = \"99.550\"",
    "question_en": "Which finish has a 99.550 Qual?",
    "question_th": "เส้นชัยใดมีคุณสมบัติ 99.550?",
    "context": "CREATE TABLE table_name_13 (finish VARCHAR, qual VARCHAR)"
  },
  {
    "answer": "SELECT qual FROM table_name_4 WHERE laps < 200 AND start = \"11\"",
    "question_en": "Which Qual with laps less than 200 and an 11 start?",
    "question_th": "รอบคัดเลือกใดที่มีรอบน้อยกว่า 200 และ 11 ออกสตาร์ท?",
    "context": "CREATE TABLE table_name_4 (qual VARCHAR, laps VARCHAR, start VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_78 WHERE start = \"totals\"",
    "question_en": "Which rank is the start of totals?",
    "question_th": "อันดับไหนคือจุดเริ่มต้นของผลรวม?",
    "context": "CREATE TABLE table_name_78 (rank VARCHAR, start VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_31 WHERE laps = 112",
    "question_en": "Which year has 112 laps?",
    "question_th": "ปีไหนมี 112 รอบ?",
    "context": "CREATE TABLE table_name_31 (year VARCHAR, laps VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_47 WHERE score_in_the_final = \"0–6, 4–6\"",
    "question_en": "On what surface was the score in the final 0–6, 4–6?",
    "question_th": "คะแนนในรอบสุดท้าย 0–6, 4–6 อยู่ที่พื้นผิวใด",
    "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_en": "What score in the final had a tournament of $25,000 Glasgow, Great Britain?",
    "question_th": "การแข่งขันชิงเงินรางวัล 25,000 เหรียญสหรัฐในรอบชิงชนะเลิศมีคะแนนอยู่ที่เมืองกลาสโกว์ บริเตนใหญ่?",
    "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–6, 3–6\"",
    "question_en": "Which surface has a score in the final of 4–6, 3–6?",
    "question_th": "พื้นผิวใดมีคะแนนในรอบสุดท้าย 4–6, 3–6?",
    "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_en": "how many times is the nation listed as united states with the total more than 1?",
    "question_th": "กี่ครั้งแล้วที่ประเทศถูกระบุว่าเป็นสหรัฐอเมริกาและมียอดรวมมากกว่า 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_en": "what is the lowest total when the rank is less than 2 and bronze is more than 0?",
    "question_th": "ผลรวมต่ำสุดเมื่ออันดับน้อยกว่า 2 และทองแดงมากกว่า 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_en": "what is the nation with a total of 1, bronze smaller than 1 and a rank of 3?",
    "question_th": "ประเทศใดที่มีคะแนนรวม 1 ทองแดงน้อยกว่า 1 และอันดับ 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_en": "what is the rank when silver is less than 0?",
    "question_th": "อันดับเมื่อเงินน้อยกว่า 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_en": "what is the amount of silver when gold is 2 and the rank is more than 1?",
    "question_th": "เงินเมื่อทองเป็น 2 และอันดับมากกว่า 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_en": "Which home has a Decision of kolzig, and a Date of november 5?",
    "question_th": "บ้านไหนมีคำตัดสินของโคลซิก และวันที่ 5 พฤศจิกายน?",
    "context": "CREATE TABLE table_name_9 (home VARCHAR, decision VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_29 WHERE decision = \"johnson\"",
    "question_en": "Which score has a Decision of johnson?",
    "question_th": "คะแนนไหนมีการตัดสินใจของจอห์นสัน?",
    "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_en": "Which date has a Home of washington, a Visitor of florida, and a Record of 8-15-2?",
    "question_th": "วันที่ใดมีบ้านของวอชิงตัน ผู้มาเยือนฟลอริดา และบันทึก 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_en": "What is the total of attendance with a Record of 5-9-0?",
    "question_th": "ผู้เข้าร่วมทั้งหมดด้วยสถิติ 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_en": "Which score has a Date of november 2?",
    "question_th": "สกอร์ไหนมีวันที่ 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_en": "What's the length of route FM 2895 with junctions sh 359 us 59?",
    "question_th": "ความยาวของเส้นทาง FM 2895 พร้อมทางแยก 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_en": "What's the termini of the route with junctions of i-35 fm 3338 sh 255?",
    "question_th": "ปลายทางของเส้นทางที่มีทางแยกของ 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_en": "What are the junctions of the route with termini aguilares, texas us 59?",
    "question_th": "ทางแยกของเส้นทางกับเทอร์มินีอากีลาเรส, เท็กซัส 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_en": "What route has termini of fm 1472 sh 255?",
    "question_th": "เส้นทางใดมีจุดสิ้นสุดของ 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_en": "What termini does the route with a population Area of aguilares have?",
    "question_th": "เส้นทางที่มีจุดสิ้นสุดของประชากร พื้นที่อากีลาเรส มีจุดสิ้นสุดใด?",
    "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_en": "What's the length of the route with junctions of ur 1472 sh 255?",
    "question_th": "ความยาวของเส้นทางพร้อมทางแยกของ 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_en": "Which champion was from the location of Morrisville, NC, and whose SemiFinalist #2 of Clemson?",
    "question_th": "แชมป์คนไหนมาจากเมืองมอร์ริสวิลล์ รัฐนอร์ทแคโรไลนา และใครเข้ารอบรองชนะเลิศอันดับ 2 ของเคลมสัน",
    "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_en": "Which champion got a score of 12-1?",
    "question_th": "แชมป์คนไหนได้สกอร์ 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_en": "Who was champion in 2005 where the semi-finalist was #1 in western Carolina?",
    "question_th": "ใครคือแชมป์ในปี 2548 โดยที่ผู้เข้ารอบรองชนะเลิศเป็นอันดับ 1 ในภาคตะวันตกของแคโรไลนา",
    "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_en": "Which runner-up placed in a year prior to 2006 and whose Champion was Elon?",
    "question_th": "รองชนะเลิศคนไหนในหนึ่งปีก่อนปี 2549 และแชมป์ของใครคือ Elon",
    "context": "CREATE TABLE table_name_66 (runner_up VARCHAR, year VARCHAR, champion VARCHAR)"
  },
  {
    "answer": "SELECT wheel_arrangement FROM table_name_5 WHERE builder’s_model = \"cf-16-4\" AND total_produced = 16",
    "question_en": "What is the wheel arrangement of cf-16-4, and 16 produced?",
    "question_th": "การจัดเรียงล้อของ cf-16-4, และ 16 ผลิตเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_5 (wheel_arrangement VARCHAR, builder’s_model VARCHAR, total_produced VARCHAR)"
  },
  {
    "answer": "SELECT power_output FROM table_name_88 WHERE wheel_arrangement = \"b-b\" AND build_date = \"1952\"",
    "question_en": "What is the power of b-b wheel arrangement, built in 1952?",
    "question_th": "พลังของการจัดเรียงล้อ bb ที่สร้างขึ้นในปี 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_en": "When was the build date for c-c wheel arrangement and freight service?",
    "question_th": "วันที่จัดทำสำหรับการจัดเตรียมล้อซีซีและบริการขนส่งสินค้าคือเมื่อใด",
    "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’s_model = \"erie built\"",
    "question_en": "When was the build date for ff20 PRR class and erie built builder's model?",
    "question_th": "วันที่สร้างสำหรับคลาส ff20 PRR และโมเดลของผู้สร้างที่สร้างคือเมื่อใด",
    "context": "CREATE TABLE table_name_14 (build_date VARCHAR, prr_class VARCHAR, builder’s_model VARCHAR)"
  },
  {
    "answer": "SELECT AVG(debut) FROM table_name_33 WHERE player = \"radoslava topalova\" AND years_played < 2",
    "question_en": "what is the debut when the play er is radoslava topalova and the years played is less than 2?",
    "question_th": "การเปิดตัวครั้งแรกคืออะไรเมื่อผู้เล่นคือ radoslava topalova และจำนวนปีที่เล่นน้อยกว่า 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_en": "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?",
    "question_th": "ผู้เข้าชมโดยเฉลี่ยของฤดูกาล 2011 ที่มีเกมน้อยกว่า 519 เกมโดยมีหลายทีมที่ใหญ่กว่า 14 เกมซึ่งเป็นส่วนหนึ่งของกีฬาฟุตบอลประจำฤดูกาลเป็นเท่าใด",
    "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_en": "What was the total number of average attendance for games of 1311?",
    "question_th": "จำนวนผู้เข้าร่วมโดยเฉลี่ยสำหรับเกม 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_en": "When was the season that had more teams larger than 14 in the super rugby league?",
    "question_th": "เมื่อใดคือฤดูกาลที่มีทีมมากกว่า 14 ทีมในซูเปอร์รักบี้ลีก",
    "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_en": "What is the label for the album with a catalog number of 83061-2?",
    "question_th": "ป้ายกำกับของอัลบั้มที่มีหมายเลขแค็ตตาล็อก 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_en": "What is the catalog number of the album whose region is the United Kingdom?",
    "question_th": "หมายเลขแค็ตตาล็อกของอัลบั้มที่มีภูมิภาคคือสหราชอาณาจักรคือหมายเลขใด",
    "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_en": "What is the region for the album with a catalog number of 7567-83061-2?",
    "question_th": "ภูมิภาคของอัลบั้มที่มีหมายเลขแค็ตตาล็อก 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_en": "What is the label for the album with a catalog number of 83061-4?",
    "question_th": "ป้ายกำกับของอัลบั้มที่มีหมายเลขแค็ตตาล็อก 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_en": "What is the catalog number of the album whose label is Atlantic Records and region is the United States?",
    "question_th": "หมายเลขแคตตาล็อกของอัลบั้มที่มีป้ายชื่อ Atlantic Records และภูมิภาคคือสหรัฐอเมริกาคือหมายเลขใด",
    "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újo\"",
    "question_en": "What school/club team did the center Rafael Araújo play for?",
    "question_th": "เซ็นเตอร์ ราฟาเอล อาราอูโฮ เล่นให้กับทีมโรงเรียน/สโมสรใด",
    "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_en": "What is the nationality of the guard who played for Florida International?",
    "question_th": "การ์ดที่เล่นให้กับทีม 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_en": "What player had the position guard/forward?",
    "question_th": "ผู้เล่นคนไหนมีตำแหน่งผู้พิทักษ์/กองหน้า?",
    "context": "CREATE TABLE table_name_83 (player VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_62 WHERE laps = 45",
    "question_en": "Who is the driver for laps of 45",
    "question_th": "ใครเป็นคนขับในรอบ 45",
    "context": "CREATE TABLE table_name_62 (driver VARCHAR, laps VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_90 WHERE date = \"december 17\"",
    "question_en": "Who was the visiting team on December 17?",
    "question_th": "ทีมเยือนวันที่ 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_en": "How many people were at Washington's home game against Miami?",
    "question_th": "ในเกมเหย้าของวอชิงตันกับไมอามีมีคนกี่คน?",
    "context": "CREATE TABLE table_name_31 (attendance VARCHAR, visitor VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_63 WHERE visitor = \"minnesota\"",
    "question_en": "Who was the home team that played against the visiting team Minnesota?",
    "question_th": "ทีมเจ้าบ้านที่เล่นกับทีมเยือนมินนิโซตาคือใคร?",
    "context": "CREATE TABLE table_name_63 (home VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(attendance) FROM table_name_17 WHERE record = \"17-7\"",
    "question_en": "What was total attendance on the day they went 17-7?",
    "question_th": "ผู้เข้าร่วมทั้งหมดในวันที่พวกเขาไป 17-7 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_17 (attendance VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_53 WHERE date = \"april 22\"",
    "question_en": "What was the score on April 22?",
    "question_th": "คะแนนวันที่ 22 เมษายน เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_53 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_88 WHERE quarterfinal = \"zhamash l 1–2\"",
    "question_en": "What event had zhamash l 1–2 in the quarterfinal?",
    "question_th": "เหตุการณ์ใดที่ zhamash l 1–2 ในรอบก่อนรองชนะเลิศ?",
    "context": "CREATE TABLE table_name_88 (event VARCHAR, quarterfinal VARCHAR)"
  },
  {
    "answer": "SELECT semifinal FROM table_name_4 WHERE athlete = \"hossein ojaghi\"",
    "question_en": "Hossein Ojaghi participated in what semifinal.",
    "question_th": "Hossein Ojaghi เข้าร่วมในรอบรองชนะเลิศรายการใด",
    "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_en": "Alireza Rouzbahani did not advance to the quarterfinal in what event?",
    "question_th": "อาลีเรซ่า รูซบาฮานี่ไม่ผ่านเข้ารอบก่อนรองชนะเลิศในงานอะไร?",
    "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_en": "How many games have more than 288 goals and less than 34 losses?",
    "question_th": "มีกี่เกมที่มีมากกว่า 288 ประตูและแพ้น้อยกว่า 34 นัด?",
    "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_en": "What is the lowest tie with less than 100 points and 277 goals?",
    "question_th": "เสมอกันต่ำสุดที่น้อยกว่า 100 แต้ม 277 ประตูคือแต้มไหน?",
    "context": "CREATE TABLE table_name_57 (tied INTEGER, points VARCHAR, goals_for VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_94 WHERE position = \"g\"",
    "question_en": "What is the team with position G?",
    "question_th": "ทีมตำแหน่ง G คืออะไร?",
    "context": "CREATE TABLE table_name_94 (team VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_33 WHERE college = \"illinois\"",
    "question_en": "What is the player from Illinois?",
    "question_th": "ผู้เล่นจากอิลลินอยส์คืออะไร?",
    "context": "CREATE TABLE table_name_33 (player VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT phone FROM table_name_46 WHERE address = \"53 dayton road\"",
    "question_en": "What is the phone number of the station located at 53 Dayton Road?",
    "question_th": "หมายเลขโทรศัพท์ของสถานีที่ 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_en": "What is the name of the engine company that is located at 89 Rope Ferry Road?",
    "question_th": "บริษัทเครื่องยนต์ซึ่งตั้งอยู่ที่ 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_en": "What was the Record of the game in which the Trail Blazers was the visiting team?",
    "question_th": "อะไรคือสถิติของเกมที่เทรลเบลเซอร์เป็นทีมเยือน?",
    "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_en": "What was the date of the friendly match, ending in a result of 1-1?",
    "question_th": "นัดกระชับมิตรจบลงด้วยสกอร์ 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_en": "What was the result of the game held at the As-Salt venue?",
    "question_th": "ผลการแข่งขันที่จัดขึ้นที่สนาม As-Salt เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_28 (result VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_56 WHERE date = \"may 17\"",
    "question_en": "What was the team's record on May 17?",
    "question_th": "บันทึกของทีมเมื่อวันที่ 17 พฤษภาคมเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_56 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT zone FROM table_name_30 WHERE opponents = \"mădălina gojnea monica niculescu\"",
    "question_en": "Which zone had mădălina gojnea monica niculescu as the opponent?",
    "question_th": "โซนไหนที่มี mădălina gojnea monica niculescu เป็นคู่ต่อสู้?",
    "context": "CREATE TABLE table_name_30 (zone VARCHAR, opponents VARCHAR)"
  },
  {
    "answer": "SELECT against FROM table_name_94 WHERE opponents = \"mădălina gojnea monica niculescu\"",
    "question_en": "Who was against the opponents, mădălina gojnea monica niculescu?",
    "question_th": "ใครเป็นศัตรูกับคู่แข่ง mădălina gojnea monica niculescu?",
    "context": "CREATE TABLE table_name_94 (against VARCHAR, opponents VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_7 WHERE opponents = \"margit rüütel anett schutting\"",
    "question_en": "What was the surface on the game with margit rüütel anett schutting as the opponent?",
    "question_th": "พื้นผิวของเกมเป็นอย่างไรเมื่อ Margit rüütel anett schutting เป็นคู่ต่อสู้?",
    "context": "CREATE TABLE table_name_7 (surface VARCHAR, opponents VARCHAR)"
  },
  {
    "answer": "SELECT zone FROM table_name_64 WHERE against = \"estonia\"",
    "question_en": "What is the zone of the game played against Estonia?",
    "question_th": "เกมนี้เล่นกับเอสโตเนียโซนไหน?",
    "context": "CREATE TABLE table_name_64 (zone VARCHAR, against VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_name_36 WHERE date = \"february 24\"",
    "question_en": "Who had the high rebounds on February 24?",
    "question_th": "วันที่ 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_en": "On February 10, what was the location attendance?",
    "question_th": "วันที่ 10 กุมภาพันธ์ มีงานสถานที่อะไรบ้าง?",
    "context": "CREATE TABLE table_name_49 (location_attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_40 WHERE econ = \"4.23\"",
    "question_en": "Tell me the player with econ of 4.23",
    "question_th": "บอกผู้เล่นที่มี Econ 4.23 หน่อยสิ",
    "context": "CREATE TABLE table_name_40 (player VARCHAR, econ VARCHAR)"
  },
  {
    "answer": "SELECT runs FROM table_name_15 WHERE player = \"b lee\"",
    "question_en": "Tell me the runs for b lee",
    "question_th": "บอกฉันหน่อยสิว่าบีลีจะวิ่งยังไง",
    "context": "CREATE TABLE table_name_15 (runs VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_91 WHERE overs = \"87.4\"",
    "question_en": "Tell me the player with overs of 87.4",
    "question_th": "บอกผู้เล่นที่มีโอเวอร์ 87.4 หน่อยสิ",
    "context": "CREATE TABLE table_name_91 (player VARCHAR, overs VARCHAR)"
  },
  {
    "answer": "SELECT runs FROM table_name_80 WHERE econ = \"3.63\"",
    "question_en": "Tell me the runs for econ of 3.63",
    "question_th": "บอกฉันหน่อยว่าการวิ่งเพื่อประหยัด 3.63",
    "context": "CREATE TABLE table_name_80 (runs VARCHAR, econ VARCHAR)"
  },
  {
    "answer": "SELECT wkts FROM table_name_13 WHERE econ = \"4.23\"",
    "question_en": "Tell me the wkts for econ of 4.23",
    "question_th": "บอกฉันว่า wkts สำหรับ econ ของ 4.23",
    "context": "CREATE TABLE table_name_13 (wkts VARCHAR, econ VARCHAR)"
  },
  {
    "answer": "SELECT overs FROM table_name_66 WHERE mdns = \"4\"",
    "question_en": "Tell me the overs for mdns of 4",
    "question_th": "บอกฉันถึงโอเวอร์สำหรับ mdns ของ 4",
    "context": "CREATE TABLE table_name_66 (overs VARCHAR, mdns VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_43 WHERE away_team = \"collingwood\"",
    "question_en": "If collingwood is playing away, who played as the home team?",
    "question_th": "ถ้าคอลลิงวูดเล่นทีมเยือน ใครเล่นเป็นเจ้าบ้าน?",
    "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_en": "What was the away teams score when they played at kardinia park?",
    "question_th": "ทีมเยือนได้คะแนนเท่าไหร่เมื่อเล่นที่คาร์ดิเนีย พาร์ก?",
    "context": "CREATE TABLE table_name_7 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT MAX(crowd) FROM table_name_29 WHERE away_team = \"carlton\"",
    "question_en": "What's the highest turnout when carlton was playing as the away team?",
    "question_th": "จำนวนผู้ออกมาเล่นสูงสุดเมื่อคาร์ลตันเล่นเป็นทีมเยือนคืออะไร?",
    "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_en": "What away team played when the crowd was over 27,463 people?",
    "question_th": "ทีมเยือนทีมไหนเล่นตอนคนดูเกิน 27,463 คน?",
    "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_en": "On waht date did Antoinette Jeanne Yvonne Boegner get married?",
    "question_th": "Antoinette Jeanne Yvonne Boegner แต่งงานเมื่อวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_28 (marriage VARCHAR, spouse VARCHAR)"
  },
  {
    "answer": "SELECT MAX(crowd) FROM table_name_3 WHERE home_team = \"north melbourne\"",
    "question_en": "What is the largest Crowd number for the Home team of North Melbourne?",
    "question_th": "จำนวนฝูงชนที่ใหญ่ที่สุดสำหรับทีมเหย้าของ นอร์ท เมลเบิร์น คืออะไร?",
    "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_en": "What home team did South Melbourne play as the away team?",
    "question_th": "เซาธ์ เมลเบิร์น ทีมเหย้าทีมใดเล่นเป็นทีมเยือน?",
    "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_en": "What did the home team score against the away team Hawthorn?",
    "question_th": "เจ้าบ้านทำประตูกับทีมเยือนฮอว์ธอร์นได้เท่าไหร่?",
    "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_en": "In the Western Oval venue, what is the average crowd?",
    "question_th": "ในสถานที่จัดงาน Western Oval ฝูงชนโดยเฉลี่ยคือเท่าไร?",
    "context": "CREATE TABLE table_name_38 (crowd INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT crowd FROM table_name_23 WHERE away_team = \"richmond\"",
    "question_en": "When Richmond is the away team, what is the crowd size?",
    "question_th": "เมื่อริชมอนด์เป็นทีมเยือน ฝูงชนขนาดไหน?",
    "context": "CREATE TABLE table_name_23 (crowd VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_60 WHERE round = 8",
    "question_en": "Who is the person from round 8?",
    "question_th": "คนจากรอบ 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_en": "What is the round for Arizona with a pick over 100?",
    "question_th": "รอบสำหรับแอริโซนาที่มีตัวเลือกเกิน 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_en": "What pick had a wide receiver named johnny holloway?",
    "question_th": "ตัวเลือกอะไรที่มีตัวรับสัญญาณกว้างชื่อจอห์นนี่ฮอลโลเวย์?",
    "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_en": "Which score has a Home Team of saskatoon accelerators?",
    "question_th": "สกอร์ไหนมีทีมเหย้าของซัสคาทูน แอคเซอเลอเรเตอร์?",
    "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_en": "Which Visiting Team has a Stadium of servus centre on march 7?",
    "question_th": "ทีมเยือนทีมไหนมีสนามเซอร์วัสเซ็นเตอร์ในวันที่ 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_en": "Which Visiting Team has a Stadium of servus centre?",
    "question_th": "ทีมเยือนทีมไหนมีสนามเซอร์วัสเซนเตอร์?",
    "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_en": "How many heavy attacks did the 450 Luftflotte 2 conduct?",
    "question_th": "450 Luftflotte 2 มีการโจมตีหนักกี่ครั้ง?",
    "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_en": "What is the time/retired for grid 19?",
    "question_th": "เวลา/เกษียณสำหรับกริด 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_en": "What is the grid total for bruce mclaren with over 73 laps?",
    "question_th": "ตารางรวมของบรูซ แม็คลาเรนที่เกิน 73 รอบเป็นเท่าใด",
    "context": "CREATE TABLE table_name_14 (grid INTEGER, laps VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT film FROM table_name_66 WHERE year = 1971",
    "question_en": "What film was released in 1971?",
    "question_th": "ภาพยนตร์เรื่องใดออกฉายในปี 1971?",
    "context": "CREATE TABLE table_name_66 (film VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT MAX(pick) FROM table_name_79 WHERE player = \"steve bartalo\"",
    "question_en": "When was steve bartalo picked?",
    "question_th": "สตีฟ บาร์ตาโลถูกเลือกเมื่อใด?",
    "context": "CREATE TABLE table_name_79 (pick INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_57 WHERE position = \"cornerback\"",
    "question_en": "What player is a cornerback?",
    "question_th": "นักเตะคนไหนคือกองหลัง?",
    "context": "CREATE TABLE table_name_57 (player VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_85 WHERE venue = \"windy hill\"",
    "question_en": "Windy hill is the home to what team?",
    "question_th": "วินดี้ ฮิลล์ เป็นบ้านของทีมอะไร?",
    "context": "CREATE TABLE table_name_85 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_49 WHERE score = \"1-5\"",
    "question_en": "What is the name of the competition with a score of 1-5?",
    "question_th": "การแข่งขันชื่ออะไรที่มีคะแนน 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_en": "What is the name of the competition with opponents of Sv Werder Bremen and a score of 1-2?",
    "question_th": "การแข่งขันกับคู่ต่อสู้ของ เอสวี แวร์เดอร์ เบรเมน ด้วยสกอร์ 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_en": "What regular season result had an average attendance less than 942?",
    "question_th": "ผลการแข่งขันในฤดูกาลปกติใดที่มีผู้เข้าชมเฉลี่ยน้อยกว่า 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_en": "Which league had a playoffs result of a lost semifinal?",
    "question_th": "ลีกใดมีผลการแข่งขันรอบตัดเชือกและแพ้รอบรองชนะเลิศ?",
    "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_en": "What regular season result had an average attendance bigger than 3,170?",
    "question_th": "ผลการแข่งขันประจำฤดูกาลใดที่มีผู้เข้าชมเฉลี่ยมากกว่า 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_en": "what is the length (miles) when the east or north terminus is ne 2 in lincoln?",
    "question_th": "ความยาว (ไมล์) คือเท่าใดเมื่อปลายทางทิศตะวันออกหรือทิศเหนือมีค่าเท่ากับ 2 ในลินคอล์น",
    "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_en": "what is the length (miles) when the name is l-56g?",
    "question_th": "ชื่อ 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_en": "what is the name when the west or south terminus is ne 112 west of blue springs?",
    "question_th": "ปลายทางทิศตะวันตกหรือทิศใต้อยู่ที่ 112 ทางตะวันตกของบลูสปริงชื่ออะไร",
    "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_en": "What is the Time/Retired value for Driver Johnny Herbert with Constructor Benetton - Renault",
    "question_th": "ค่าเวลา/เกษียณสำหรับไดรเวอร์ Johnny Herbert กับ 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_en": "What is the Time/Retired value for constructor Jordan - Peugeot with 66 laps and grid value 5?",
    "question_th": "ค่าเวลา/เลิกใช้สำหรับคอนสตรัคเตอร์ Jordan - Peugeot ที่มี 66 รอบและค่ากริด 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_en": "What is the Time/Retired value of driver Pedro Diniz?",
    "question_th": "มูลค่าเวลา/เกษียณของนักแข่ง Pedro Diniz คือเท่าไร?",
    "context": "CREATE TABLE table_name_7 (time_retired VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_45 WHERE grid = \"18\"",
    "question_en": "Which driver has grid value of 18?",
    "question_th": "ไดรเวอร์ใดมีค่ากริดเท่ากับ 18",
    "context": "CREATE TABLE table_name_45 (driver VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_54 WHERE grid = \"5\"",
    "question_en": "What is the constructor with grid value 5?",
    "question_th": "ตัวสร้างที่มีค่ากริด 5 คืออะไร?",
    "context": "CREATE TABLE table_name_54 (constructor VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT grid FROM table_name_57 WHERE time_retired = \"accident\"",
    "question_en": "What is the grid value which has Time/Retired value of accident?",
    "question_th": "ค่ากริดซึ่งมีค่าเวลา/ค่าเกษียณอายุของอุบัติเหตุเป็นเท่าใด",
    "context": "CREATE TABLE table_name_57 (grid VARCHAR, time_retired VARCHAR)"
  },
  {
    "answer": "SELECT leading_scorer FROM table_name_35 WHERE visitor = \"trail blazers\"",
    "question_en": "Who was the leading scorer that was a visitor of the Trail Blazers?",
    "question_th": "ใครคือผู้ทำประตูสูงสุดที่มาเยือนทีมเทรลเบลเซอร์?",
    "context": "CREATE TABLE table_name_35 (leading_scorer VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT leading_scorer FROM table_name_51 WHERE home = \"clippers\"",
    "question_en": "Who is the leading scorer when they were at home of the Clippers?",
    "question_th": "ใครคือผู้ทำประตูสูงสุดเมื่ออยู่ที่บ้านของคลิปเปอร์ส?",
    "context": "CREATE TABLE table_name_51 (leading_scorer VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_38 WHERE date = \"january 19, 2008\"",
    "question_en": "Who was the visitor on January 19, 2008?",
    "question_th": "ใครคือผู้เยี่ยมชมเมื่อวันที่ 19 มกราคม 2551",
    "context": "CREATE TABLE table_name_38 (visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_54 WHERE visitor = \"magic\" AND home = \"clippers\"",
    "question_en": "What was the score when there was a visitor of Magic and at home with the Clippers?",
    "question_th": "ตอนที่มีคนมาเยี่ยมเมจิคและอยู่บ้านกับคลิปเปอร์สเป็นอย่างไรบ้าง?",
    "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_en": "How many games for keith j. miller, who debuted after 1974 with less than 1 goal?",
    "question_th": "กี่เกมสำหรับคีธ เจ. มิลเลอร์ที่ประเดิมสนามหลังปี 1974 โดยยิงได้น้อยกว่า 1 ประตู?",
    "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_en": "What is the highest crowd when carlton is the away team?",
    "question_th": "คาร์ลตันเป็นทีมเยือนมีผู้ชมมากที่สุดคือทีมไหน?",
    "context": "CREATE TABLE table_name_62 (crowd INTEGER, away_team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(crowd) FROM table_name_72 WHERE venue = \"mcg\"",
    "question_en": "What is the highest crowd at mcg?",
    "question_th": "ฝูงชนสูงสุดใน 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_en": "How many grids are associated with a Time/Retired of +1.837?",
    "question_th": "มีกี่กริดที่เกี่ยวข้องกับเวลา/เกษียณอายุ +1.837",
    "context": "CREATE TABLE table_name_87 (grid VARCHAR, time_retired VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_name_99 WHERE college = \"ucla\"",
    "question_en": "What is the hometown of the player that attends UCLA?",
    "question_th": "บ้านเกิดของผู้เล่นที่เข้าเรียนที่ 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_en": "What college is getting a player that attends Wichita Heights High School?",
    "question_th": "วิทยาลัยใดกำลังรับผู้เล่นที่เข้าเรียนที่ 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_en": "What is the hometown of Cody Zeller?",
    "question_th": "บ้านเกิดของ Cody Zeller คืออะไร?",
    "context": "CREATE TABLE table_name_83 (hometown VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_83 WHERE hometown = \"washington, in\"",
    "question_en": "What player's hometown is Washington, IN?",
    "question_th": "บ้านเกิดของผู้เล่นคนใดคือ 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_en": "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?",
    "question_th": "%2006 ที่มีที่นั่งน้อยกว่า 23 ที่นั่งในที่นั่งปี 2001 มีที่นั่งมากกว่า 4 ที่นั่งในปี 2549 และ % ในปี 2544 ของ 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_en": "When the %2001 is more than 61.4, and the %2006 fewer than 54.1, how many Seats in 2001 were there?",
    "question_th": "เมื่อ %2001 มากกว่า 61.4 และ %2006 น้อยกว่า 54.1 จะมีกี่ที่นั่งในปี 2001",
    "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_en": "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?",
    "question_th": "จำนวนที่นั่งสูงสุดในปี 2549 ที่จัดขึ้นโดย Christian Democratic Union of Germany Party/Voter Community คือเท่าใด โดยที่ %2006 สูงกว่า 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ürger für groß-rohrheim\" AND _percentage_2006 < 21.3",
    "question_en": "What is the highest number of Seats 2006 held by the communities of Bürger Für Groß-Rohrheim Party/Voter Community, with a %2006 less than 21.3?",
    "question_th": "จำนวนที่นั่งสูงสุดในปี 2006 ที่จัดขึ้นโดยชุมชนของพรรค Bürger Für Groß-Rohrheim Party/ชุมชนผู้มีสิทธิเลือกตั้ง คือเท่าใด โดยที่ %2006 น้อยกว่า 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_en": "What is the %2006 when the %2001 was more than 62.5?",
    "question_th": "%2006 คืออะไรเมื่อ %2001 มากกว่า 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_en": "What is the sum of the losses by the Montreal Hockey Club, who have more than 15 Goals Against?",
    "question_th": "ผลรวมของการสูญเสียโดย Montreal Hockey Club ซึ่งทำประตูได้มากกว่า 15 ประตูคือเท่าไร?",
    "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_en": "What is the largest Goals For by a team that has more than 0 ties?",
    "question_th": "เป้าหมายที่ใหญ่ที่สุดของทีมที่เสมอกันมากกว่า 0 คืออะไร?",
    "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_en": "How many ties do teams with 25 Goals For and more than 5 wins have?",
    "question_th": "ทีมที่ทำประตูได้ 25 ประตูและชนะมากกว่า 5 ครั้งมีความสัมพันธ์กันกี่ทีม?",
    "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_en": "What is the lowest Goals Against by a team with more than 5 wins?",
    "question_th": "จำนวนประตูที่น้อยที่สุดโดยทีมที่ชนะมากกว่า 5 ครั้งคืออะไร?",
    "context": "CREATE TABLE table_name_18 (goals_against INTEGER, wins INTEGER)"
  },
  {
    "answer": "SELECT COUNT(ties) FROM table_name_98 WHERE losses < 3",
    "question_en": "What is the total number of ties a team with less than 3 losses have?",
    "question_th": "ทีมที่แพ้น้อยกว่า 3 นัดจะเสมอกันเป็นจำนวนเท่าใด?",
    "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_en": "Tell me the race name where stirling moss won on 16 april",
    "question_th": "บอกชื่อการแข่งขันที่สเตอร์ลิงมอสชนะวันที่ 16 เมษายนหน่อยสิ",
    "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_en": "Tell me the report for circuit of modena",
    "question_th": "บอกฉันรายงานวงจรของโมเดน่า",
    "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_en": "Tell me the race name for ferrari on 25 april",
    "question_th": "บอกชื่อแข่งเฟอร์รารี่วันที่ 25 เมษายนครับ",
    "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_en": "Name the constructor for vii kanonloppet",
    "question_th": "ตั้งชื่อตัวสร้างสำหรับ 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_en": "Who is the opponent on May 7?",
    "question_th": "คู่ต่อสู้ในวันที่ 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_en": "When the Home team was Carlton, what was the Away team score?",
    "question_th": "เมื่อทีมเจ้าบ้านเป็นคาร์ลตันทีมเยือนได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_90 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_37 WHERE chassis = \"fw20\"",
    "question_en": "Who was the constructor for a FW20 chassis?",
    "question_th": "ใครคือผู้สร้างแชสซี FW20",
    "context": "CREATE TABLE table_name_37 (constructor VARCHAR, chassis VARCHAR)"
  },
  {
    "answer": "SELECT engine_† FROM table_name_86 WHERE chassis = \"mp4-13\" AND driver = \"david coulthard\"",
    "question_en": "What engine did David Coulthard have in his mp4-13 chassis?",
    "question_th": "David Coulthard มีเครื่องยนต์อะไรในแชสซี mp4-13 ของเขา",
    "context": "CREATE TABLE table_name_86 (engine_† VARCHAR, chassis VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_86 WHERE outcome = \"runner-up\" AND opponent_in_the_final = \"gilles simon\"",
    "question_en": "Which date has an Outcome of runner-up, and an Opponent in the final of gilles simon?",
    "question_th": "วันที่ใดมีผลลัพธ์เป็นรองชนะเลิศ และเป็นคู่ต่อสู้ในรอบชิงชนะเลิศของกิลเลส ไซมอน?",
    "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_en": "Who was the opponent on the 28 july 2013 final?",
    "question_th": "คู่ต่อสู้ในรอบชิงชนะเลิศวันที่ 28 กรกฎาคม 2556 คือใคร?",
    "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–6, 3–6\"",
    "question_en": "Which date has a Score in the final of 4–6, 3–6?",
    "question_th": "วันไหนมีสกอร์เข้ารอบสุดท้าย 4–6, 3–6?",
    "context": "CREATE TABLE table_name_11 (date VARCHAR, score_in_the_final VARCHAR)"
  },
  {
    "answer": "SELECT prefix FROM table_name_75 WHERE formula = \"rsor'\"",
    "question_en": "What is the prefix for the formula of Rsor'?",
    "question_th": "คำนำหน้าสูตร รศ. คืออะไร?",
    "context": "CREATE TABLE table_name_75 (prefix VARCHAR, formula VARCHAR)"
  },
  {
    "answer": "SELECT group FROM table_name_66 WHERE formula = \"rncs\"",
    "question_en": "Which group has the RNCS formula?",
    "question_th": "กลุ่มใดมีสูตร RNCS",
    "context": "CREATE TABLE table_name_66 (group VARCHAR, formula VARCHAR)"
  },
  {
    "answer": "SELECT formula FROM table_name_13 WHERE chemical_class = \"thial\"",
    "question_en": "Which formula has a thial as a chemical class?",
    "question_th": "สูตรใดมีไทอัลเป็นคลาสเคมี",
    "context": "CREATE TABLE table_name_13 (formula VARCHAR, chemical_class VARCHAR)"
  },
  {
    "answer": "SELECT suffix FROM table_name_17 WHERE prefix = \"isothiocyanato- (-ncs)\"",
    "question_en": "Which suffix has the prefix of isothiocyanato- (-ncs)?",
    "question_th": "ข้อใดมีคำนำหน้าเป็น isothiocyanato- (-ncs)",
    "context": "CREATE TABLE table_name_17 (suffix VARCHAR, prefix VARCHAR)"
  },
  {
    "answer": "SELECT suffix FROM table_name_77 WHERE prefix = \"thiocyanato- (-scn)\"",
    "question_en": "Which item has the suffix containing thiocyanato- (-scn) as a prefix?",
    "question_th": "รายการใดมีคำต่อท้ายที่มี thiocyanato- (-scn) เป็นคำนำหน้า",
    "context": "CREATE TABLE table_name_77 (suffix VARCHAR, prefix VARCHAR)"
  },
  {
    "answer": "SELECT formula FROM table_name_7 WHERE chemical_class = \"thial\"",
    "question_en": "Which formula has thial as a chemical class?",
    "question_th": "สูตรใดมีไทอัลเป็นคลาสเคมี",
    "context": "CREATE TABLE table_name_7 (formula VARCHAR, chemical_class VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_97 WHERE away_team = \"fitzroy\"",
    "question_en": "If fitzroy is the Away team, what Date did they play?",
    "question_th": "ถ้าฟิตซ์รอยเป็นทีมเยือนจะลงเล่นวันที่เท่าไร?",
    "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_en": "When the Away team is fitzroy on the Date of 15 july 1967, what was the Home team playing?",
    "question_th": "เมื่อทีมเยือนพบกับฟิตซ์รอยในวันที่ 15 ก.ค. 1967 ทีมเจ้าบ้านกำลังเล่นอะไรอยู่?",
    "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_en": "Which Venue has an Away team of st kilda?",
    "question_th": "สนามไหนมีทีมเยือนเซนต์คิลดา?",
    "context": "CREATE TABLE table_name_5 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT AVG(place) FROM table_name_90 WHERE draw < 2",
    "question_en": "What place has a draw smaller than 2?",
    "question_th": "สถานที่ใดที่มีเสมอน้อยกว่า 2?",
    "context": "CREATE TABLE table_name_90 (place INTEGER, draw INTEGER)"
  },
  {
    "answer": "SELECT launch_date__utc_ FROM table_name_32 WHERE cospar_id_satcat_№ = \"1995-022a\"",
    "question_en": "What is the launch date of the satellite with a COSPAR ID of 1995-022a?",
    "question_th": "วันที่ปล่อยดาวเทียมด้วย COSPAR ID ปี 1995-022a คือเมื่อใด",
    "context": "CREATE TABLE table_name_32 (launch_date__utc_ VARCHAR, cospar_id_satcat_№ VARCHAR)"
  },
  {
    "answer": "SELECT cospar_id_satcat_№ FROM table_name_20 WHERE launch_vehicle = \"titan iv(401)a\"",
    "question_en": "What is the COSPAR ID of the satellite with a titan iv(401)a launch vehicle?",
    "question_th": "COSPAR ID ของดาวเทียมที่มียานปล่อยไททัน iv (401) คืออะไร",
    "context": "CREATE TABLE table_name_20 (cospar_id_satcat_№ VARCHAR, launch_vehicle VARCHAR)"
  },
  {
    "answer": "SELECT launch_designation FROM table_name_53 WHERE cospar_id_satcat_№ = \"2009-001a\"",
    "question_en": "What is the launch designation of the satellite with a 2009-001a COSPAR ID?",
    "question_th": "ดาวเทียมที่มีรหัส COSPAR 2009-001a มีกำหนดการเปิดตัวคืออะไร",
    "context": "CREATE TABLE table_name_53 (launch_designation VARCHAR, cospar_id_satcat_№ VARCHAR)"
  },
  {
    "answer": "SELECT launch_site FROM table_name_71 WHERE cospar_id_satcat_№ = \"2003-041a\"",
    "question_en": "What is the launch site of the satellite with a 2003-041a COSPAR ID?",
    "question_th": "ตำแหน่งปล่อยดาวเทียมที่มีรหัส COSPAR 2003-041a คืออะไร",
    "context": "CREATE TABLE table_name_71 (launch_site VARCHAR, cospar_id_satcat_№ VARCHAR)"
  },
  {
    "answer": "SELECT construction_completed FROM table_name_1 WHERE cerclis_id = \"ard092916188\"",
    "question_en": "What construction has a CERCLIS ID of ard092916188?",
    "question_th": "โครงสร้างใดมี CERCLIS ID 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_en": "What CERCLIS ID is Deleted of 04/07/2008?",
    "question_th": "CERCLIS ID ใดที่ถูกลบในวันที่ 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 = \"–\" AND name = \"mid-south wood products\"",
    "question_en": "What construction has a Listed 09/08/1983, and a Deleted of –, and a Name of mid-south wood products?",
    "question_th": "สิ่งก่อสร้างใดที่มีการจดทะเบียนเมื่อ 09/08/1983 และรายการที่ถูกลบของ – และชื่อผลิตภัณฑ์ไม้กลางใต้",
    "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_en": "What is the Construction that has a Listed 09/08/1983, and a Name of cecil lindsey?",
    "question_th": "สิ่งก่อสร้างที่มีรายการเมื่อ 09/08/1983 คืออะไร และชื่อของเซซิล ลินด์ซีย์คืออะไร",
    "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_en": "What was the attendance at Kardinia Park?",
    "question_th": "ผู้เข้าร่วมที่ Kardinia Park คืออะไร?",
    "context": "CREATE TABLE table_name_63 (crowd INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_43 WHERE week = 16",
    "question_en": "What was the Date of Week 16?",
    "question_th": "สัปดาห์ที่ 16 คือวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_43 (date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_85 WHERE home = \"colorado\"",
    "question_en": "What date was Colorado the home team?",
    "question_th": "โคโลราโดเป็นเจ้าบ้านวันที่เท่าไหร่?",
    "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_en": "What was the record for the game on November 28 when the decision was Backstrom?",
    "question_th": "สถิติเกมวันที่ 28 พ.ย. คือ แบ็คสตรอม ตัดสินเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_69 (record VARCHAR, decision VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_26 WHERE record = \"11–8–2\"",
    "question_en": "What team was the home team when the record was 11–8–2?",
    "question_th": "ทีมใดคือทีมเจ้าบ้านเมื่อสถิติคือ 11–8–2?",
    "context": "CREATE TABLE table_name_26 (home VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_10 WHERE home = \"edmonton\"",
    "question_en": "What was the score when Edmonton was the home team?",
    "question_th": "เมื่อเอดมันตันเป็นเจ้าบ้านสกอร์เท่าไหร่?",
    "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_en": "Tell me the highest PI GP with pick # greater than 159 and reg GP more than 0",
    "question_th": "บอก PI GP สูงสุดโดยเลือก # มากกว่า 159 และ reg GP มากกว่า 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_en": "In the match where south melbourne was the away team, who was the home team?",
    "question_th": "แมตช์ที่เซาธ์ เมลเบิร์นเป็นทีมเยือน เจ้าบ้านคือใคร?",
    "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_en": "Which Team 2 faced Team 1 from Barcelona?",
    "question_th": "ทีมไหน 2 เจอกับทีม 1 จากบาร์เซโลน่า?",
    "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_en": "Which first leg had Galatasaray as Team 1?",
    "question_th": "เลกแรกมีกาลาตาซารายเป็นทีม 1?",
    "context": "CREATE TABLE table_name_34 (team_1 VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_8 WHERE time = \"2:19\"",
    "question_en": "What was the name of the Event with a time of 2:19?",
    "question_th": "เหตุการณ์ชื่ออะไรในเวลา 2:19 น.?",
    "context": "CREATE TABLE table_name_8 (event VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_76 WHERE opponent = \"joe lauzon\"",
    "question_en": "Where was match which had Joe Lauzon as an opponent?",
    "question_th": "นัดไหนที่มีโจ เลาซอนเป็นคู่ต่อสู้?",
    "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–1997\"",
    "question_en": "What is the name of the building that was the tallest from 1990–1997 in Frankfurt?",
    "question_th": "อาคารที่สูงที่สุดในแฟรงก์เฟิร์ตระหว่างปี 1990–1997 ชื่ออะไร",
    "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_en": "For a height less than 122 meters, what is the greatest height in feet?",
    "question_th": "ส่วนสูงน้อยกว่า 122 เมตร ความสูงสูงสุดมีหน่วยเป็นฟุตคือเท่าใด",
    "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_en": "How high was the highest building in feet in the city of cologne?",
    "question_th": "อาคารที่สูงที่สุดในเมืองโคโลญสูงเท่าไร?",
    "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_en": "What is the smallest height (ft) of a building in Frankfurt with a height (m) of 257 and less than 55 floors?",
    "question_th": "ความสูงที่เล็กที่สุด (ฟุต) ของอาคารในแฟรงก์เฟิร์ตที่มีความสูง (ม.) 257 และน้อยกว่า 55 ชั้นคือเท่าใด",
    "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_en": "What is the height in meters for a building in Frankfurt that is 850 feet tall?",
    "question_th": "อาคารในแฟรงก์เฟิร์ตซึ่งมีความสูง 850 ฟุตมีความสูงเป็นเมตรเท่าใด",
    "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_en": "What is the mintage of the coin with a Toronto Maple Leafs theme and an issue price below 24.95?",
    "question_th": "เหรียญที่มีธีม Toronto Maple Leafs มีราคาผลิตต่ำกว่า 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_en": "What was Collingwood's score in their away game?",
    "question_th": "คอลลิงวูดทำคะแนนในเกมเยือนได้เท่าไหร่?",
    "context": "CREATE TABLE table_name_39 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_14 WHERE away_team = \"geelong\"",
    "question_en": "Where did Geelong play as the away team?",
    "question_th": "จีลองเล่นเป็นทีมเยือนที่ไหน?",
    "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_en": "On what date was the I Dessau Autobahnspinne race?",
    "question_th": "การแข่งขัน I Dessau Autobahnspinne จัดขึ้นวันไหน?",
    "context": "CREATE TABLE table_name_66 (date VARCHAR, race_name VARCHAR)"
  },
  {
    "answer": "SELECT winning_driver FROM table_name_8 WHERE circuit = \"sachsenring\"",
    "question_en": "Who was the winning driver in the Sachsenring circuit?",
    "question_th": "ใครคือนักแข่งที่ชนะในสนามซัคเซนริง?",
    "context": "CREATE TABLE table_name_8 (winning_driver VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_name_98 WHERE player = \"terry mills\"",
    "question_en": "Where is Terry Mills from?",
    "question_th": "เทอร์รี่ มิลส์ มาจากไหน?",
    "context": "CREATE TABLE table_name_98 (hometown VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_24 WHERE race = \"mexican grand prix\"",
    "question_en": "When is the Mexican grand prix?",
    "question_th": "เม็กซิกันกรังด์ปรีซ์จะจัดขึ้นเมื่อไหร่?",
    "context": "CREATE TABLE table_name_24 (date VARCHAR, race VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_67 WHERE height = \"6-8\"",
    "question_en": "The person with a Height of 6-8 went to which School?",
    "question_th": "คนสูง 6-8 เข้าเรียนโรงเรียนไหน?",
    "context": "CREATE TABLE table_name_67 (school VARCHAR, height VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_68 WHERE player = \"dorian finney-smith\"",
    "question_en": "What College did Player Dorian Finney-Smith play for?",
    "question_th": "ผู้เล่น Dorian Finney-Smith เล่นให้กับวิทยาลัยใด",
    "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_en": "Which Player has a height of 6-10, and went to College at LSU?",
    "question_th": "ผู้เล่นคนไหนที่มีส่วนสูง 6-10 และได้เข้าเรียนที่วิทยาลัยที่ 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_en": "Which School did Player Tyrone Johnson attend?",
    "question_th": "ผู้เล่น Tyrone Johnson เข้าเรียนที่โรงเรียนใด",
    "context": "CREATE TABLE table_name_41 (school VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_42 WHERE player = \"tyrone johnson\"",
    "question_en": "Which School did Player Tyrone Johnson attend?",
    "question_th": "ผู้เล่น Tyrone Johnson เข้าเรียนที่โรงเรียนใด",
    "context": "CREATE TABLE table_name_42 (school VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT rider FROM table_name_17 WHERE time = \"1:23.32.41\"",
    "question_en": "Who had the time of 1:23.32.41?",
    "question_th": "ใครมีเวลา 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_en": "What is the time of the rider who has a rank smaller than 8 and speed of 104.567mph?",
    "question_th": "ผู้ขับขี่ที่มีอันดับน้อยกว่า 8 และความเร็ว 104.567 ไมล์ต่อชั่วโมง คือเวลาใด?",
    "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_en": "What is the home team at the Junction Oval venue?",
    "question_th": "เจ้าบ้านที่สนามจังชั่นโอวัลคือทีมอะไร?",
    "context": "CREATE TABLE table_name_14 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_30 WHERE away_team = \"richmond\"",
    "question_en": "What is the date where the away team is Richmond?",
    "question_th": "ทีมเยือนคือริชมอนด์วันที่เท่าไหร่?",
    "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_en": "Name the circuit when the fastest lap was john surtees and the winning driver was john surtees.",
    "question_th": "ตั้งชื่อวงจรว่ารอบที่เร็วที่สุดคือ john surtees และนักแข่งที่ชนะคือ 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_en": "Name the winning driver with circuit of monza",
    "question_th": "ตั้งชื่อนักแข่งที่ชนะด้วย 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_en": "Name the pole position for 8 september",
    "question_th": "ตั้งชื่อตำแหน่งโพลโพซิชั่น 8 ก.ย",
    "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_en": "Name the winning driver for belgian grand prix",
    "question_th": "ตั้งชื่อนักแข่งที่ชนะการแข่งขัน 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_en": "Name the circuit for italian grand prix",
    "question_th": "ตั้งชื่อสนามแข่งสำหรับกรังด์ปรีซ์อิตาลี",
    "context": "CREATE TABLE table_name_97 (circuit VARCHAR, race VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(grid) FROM table_name_3 WHERE driver = \"giancarlo fisichella\"",
    "question_en": "How many grid numbers were there for the driver Giancarlo Fisichella?",
    "question_th": "จานคาร์โล ฟิซิเชลลา ผู้ขับขี่มีหมายเลขกริดกี่หมายเลข",
    "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_en": "What is the mean number of laps for the constructor Ferrari when the time/retired was fuel pressure?",
    "question_th": "จำนวนรอบเฉลี่ยของผู้สร้างเฟอร์รารีเมื่อเวลา/เลิกใช้คือแรงดันน้ำมันเชื้อเพลิงคือเท่าใด",
    "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_en": "What is the grid when the driver was Michael Schumacher?",
    "question_th": "ตารางคืออะไรเมื่อคนขับคือ Michael Schumacher?",
    "context": "CREATE TABLE table_name_20 (grid VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT SUM(laps) FROM table_name_99 WHERE grid = 7",
    "question_en": "How many laps had a grid number of 7?",
    "question_th": "กี่รอบมีตารางหมายเลข 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_en": "Which lap number had a grid number of less than 17 when the driver was Giancarlo Fisichella?",
    "question_th": "หมายเลขรอบใดที่มีหมายเลขกริดน้อยกว่า 17 เมื่อนักแข่งคือ 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_en": "Name the winning driver for circuit of monza",
    "question_th": "ตั้งชื่อนักแข่งที่ชนะการแข่งขัน 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_en": "Tell me the date for jody scheckter being the fastest lap at the french grand prix",
    "question_th": "บอกวันที่ที่ jody scheckter จะเป็นรอบที่เร็วที่สุดในการแข่งขัน 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_en": "Name the date for circuit of interlagos",
    "question_th": "ตั้งชื่อวันที่สำหรับวงจรอินเตอร์ลากอส",
    "context": "CREATE TABLE table_name_50 (date VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_74 WHERE opponent = \"vinny magalhães\"",
    "question_en": "What was the event for vinny magalhães?",
    "question_th": "วินนี่ มากัลเฮสจัดงานอะไร?",
    "context": "CREATE TABLE table_name_74 (event VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_9 WHERE opponent = \"renato ferreira\"",
    "question_en": "What was the date for renato ferreira?",
    "question_th": "เรนาโต เฟอร์เรร่า วันที่เท่าไหร่?",
    "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_en": "What was the event with leonardo chocolate in 2009?",
    "question_th": "เหตุการณ์ที่เกิดขึ้นกับช็อกโกแลตของเลโอนาร์โดในปี 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_en": "What was the result for the opponent being gerardi rinaldi in 2009?",
    "question_th": "ผลลัพธ์ของคู่ต่อสู้ที่เป็นเจอราร์ดี้ รินัลดีในปี 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_en": "Tell me the eastern #1 for week of 5",
    "question_th": "บอกฉันทางทิศตะวันออก #1 สำหรับสัปดาห์ที่ 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_en": "Tell me the eastern #2 for western #2 of oakland",
    "question_th": "บอกทางทิศตะวันออก #2 สำหรับทางตะวันตก #2 ของโอ๊คแลนด์",
    "context": "CREATE TABLE table_name_23 (eastern__number2 VARCHAR, western__number2 VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_37 WHERE eastern__number2 = \"houston\"",
    "question_en": "Tell me the wekk for eastern #2 of houston",
    "question_th": "บอกฉันหน่อยว่า wekk สำหรับ #2 ทางทิศตะวันออกของฮูสตัน",
    "context": "CREATE TABLE table_name_37 (week VARCHAR, eastern__number2 VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_74 WHERE away_team = \"carlton\"",
    "question_en": "Which home team played against the away team Carlton?",
    "question_th": "เจ้าบ้านทีมไหนเล่นกับทีมเยือน คาร์ลตัน?",
    "context": "CREATE TABLE table_name_74 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_29 WHERE home_team = \"collingwood\"",
    "question_en": "Where was the game played where the home team was Collingwood?",
    "question_th": "เกมนี้เล่นที่ไหนโดยที่เจ้าบ้านคือคอลลิงวูด?",
    "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_en": "What is the home score with a crowd larger than 25,603?",
    "question_th": "สกอร์เจ้าบ้านที่มีผู้ชมมากกว่า 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_en": "What is the date of the home team from South Melbourne?",
    "question_th": "เจ้าบ้านจากเซาธ์ เมลเบิร์น วันที่เท่าไหร่?",
    "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_en": "What is the score of the away team with the home team Fitzroy?",
    "question_th": "ทีมเยือนกับเจ้าบ้านฟิตซ์รอยสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_88 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_63 WHERE away_team = \"footscray\"",
    "question_en": "What venue did the away team footscray play at?",
    "question_th": "ฟุตสเครย์ทีมเยือนเล่นที่สนามไหน?",
    "context": "CREATE TABLE table_name_63 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT MIN(crowd) FROM table_name_75 WHERE away_team = \"melbourne\"",
    "question_en": "When melbourne was the away team, what was the lowest crowd turnout they had?",
    "question_th": "เมื่อเมลเบิร์นเป็นทีมเยือน มีผู้เข้าชมน้อยที่สุดที่พวกเขามีคือทีมใด",
    "context": "CREATE TABLE table_name_75 (crowd INTEGER, away_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_63 WHERE venue = \"glenferrie oval\"",
    "question_en": "Which away team plays at the venue glenferrie oval?",
    "question_th": "ทีมเยือนทีมใดเล่นที่สนาม 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_en": "Tell me the lowest 2005 for 2010 less than 21 for 2009 being 19",
    "question_th": "บอกฉันว่าต่ำสุดในปี 2548 สำหรับปี 2553 น้อยกว่า 21 ในปี 2552 คือ 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_en": "Name the total number of 2010 for when 2009 is less than 14, 2008 is less than 15 and 2005 is 3",
    "question_th": "ตั้งชื่อจำนวนรวมของปี 2010 โดยที่ปี 2009 น้อยกว่า 14 ปี 2008 น้อยกว่า 15 และปี 2005 คือ 3",
    "context": "CREATE TABLE table_name_85 (Id VARCHAR)"
  },
  {
    "answer": "SELECT AVG(2008) FROM table_name_21 WHERE year = \"beijing\" AND 2005 > 2",
    "question_en": "Name the average 2008 for beijing and 2005 more than 2",
    "question_th": "ตั้งชื่อค่าเฉลี่ยปี 2008 สำหรับปักกิ่งและปี 2005 มากกว่า 2",
    "context": "CREATE TABLE table_name_21 (year VARCHAR)"
  },
  {
    "answer": "SELECT MIN(2008) FROM table_name_45 WHERE year = \"guizhou\" AND 2005 < 31",
    "question_en": "Name the lowest 2008 for guizhou when 2005 is less than 31",
    "question_th": "ตั้งชื่อปี 2008 ที่ต่ำที่สุดสำหรับกุ้ยโจว เมื่อปี 2005 น้อยกว่า 31",
    "context": "CREATE TABLE table_name_45 (year VARCHAR)"
  },
  {
    "answer": "SELECT SUM(2010) FROM table_name_53 WHERE 2000 = 17 AND 2005 > 16",
    "question_en": "Name the sum of 2010 for 2000 of 17 and 2005 more than 16",
    "question_th": "ตั้งชื่อผลรวมของปี 2010 สำหรับปี 2000 จาก 17 และ 2005 มากกว่า 16",
    "context": "CREATE TABLE table_name_53 (Id VARCHAR)"
  },
  {
    "answer": "SELECT SUM(crowd) FROM table_name_7 WHERE venue = \"mcg\"",
    "question_en": "What is the total of crowd at Venue of mcg?",
    "question_th": "จำนวนฝูงชนที่ 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_en": "Tell me the number of regions with an area of 58.81",
    "question_th": "บอกจำนวนภูมิภาคที่มีพื้นที่ 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_en": "what is the rank when the bronze is less than 0?",
    "question_th": "เมื่อบรอนซ์น้อยกว่า 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_en": "what is the highest rank when the bronze is less than 1 and the total is less than 1?",
    "question_th": "อันดับสูงสุดเมื่อทองแดงน้อยกว่า 1 และผลรวมน้อยกว่า 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_en": "what is the lowest amount of silver when the gold is less than 0?",
    "question_th": "เงินต่ำสุดเมื่อทองน้อยกว่า 0 คือเท่าไร?",
    "context": "CREATE TABLE table_name_70 (silver INTEGER, gold INTEGER)"
  },
  {
    "answer": "SELECT AVG(gold) FROM table_name_5 WHERE rank > 5",
    "question_en": "what is the average number of gold when the rank is more than 5?",
    "question_th": "ถ้าอันดับเกิน 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_en": "what is the highest amount of silver when gold is 0 for soviet union?",
    "question_th": "เงินสูงสุดเมื่อทองเป็น 0 สำหรับสหภาพโซเวียตคือเท่าใด",
    "context": "CREATE TABLE table_name_50 (silver INTEGER, gold VARCHAR, nation VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_35 WHERE player = \"adam rachel\"",
    "question_en": "What position does adam rachel play?",
    "question_th": "อดัม ราเชล เล่นตำแหน่งอะไร?",
    "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_en": "What player has over 1 first apperance and over 32 first team goals?",
    "question_th": "นักเตะคนไหนที่ลงเล่นนัดแรกเกิน 1 นัด และยิงประตูให้ทีมชุดใหญ่ได้มากกว่า 32 ประตู?",
    "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_en": "What is the average speed for ships before 1974 with over 1.73 passengers?",
    "question_th": "ความเร็วเฉลี่ยของเรือก่อนปี 1974 ที่มีผู้โดยสารมากกว่า 1.73 คนคือเท่าใด",
    "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_en": "How many vessels are named aqua jewel?",
    "question_th": "มีกี่ลำที่ชื่ออัญมณีน้ำ?",
    "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_en": "How many districts in Baltimore City does Cheryl Glenn dictate?",
    "question_th": "Cheryl Glenn กำหนดเขตในบัลติมอร์กี่เขต",
    "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_en": "Which party belongs to district 41, and is delegated by Jill P. Carter?",
    "question_th": "พรรคใดอยู่ในเขต 41 และได้รับมอบหมายจากจิล พี. คาร์เตอร์",
    "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_en": "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?",
    "question_th": "สถานที่เกิดของผู้แทนที่เข้ารับตำแหน่งหลังปี 1982 มอบหมายเขตที่เล็กกว่า 43 และเป็นสมาชิกของคณะกรรมการปฏิบัติการด้านสุขภาพและรัฐบาลอยู่ที่ไหน",
    "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_en": "Where was the delegate belonging to the Judiciary committee of district 43 born?",
    "question_th": "ผู้แทนคณะกรรมการตุลาการเขต 43 เกิดที่ไหน?",
    "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_en": "What is the largest district for delegate Cheryl Glenn, that she had taken after 2006?",
    "question_th": "เขตใดที่ใหญ่ที่สุดสำหรับตัวแทน Cheryl Glenn ที่เธอเข้าร่วมหลังปี 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_en": "What is the highest placing for  marie mcneil / robert mccall, with less than 168.58?",
    "question_th": "ตำแหน่งสูงสุดสำหรับ marie mcneil / robert mccall โดยน้อยกว่า 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_en": "What was the date of the Mavericks home game?",
    "question_th": "เกมเหย้าของ Mavericks จัดขึ้นวันที่เท่าไร?",
    "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_en": "What is the highest displacement value for the R Fwd Auto Phase1?",
    "question_th": "ค่าการกระจัดสูงสุดสำหรับ 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_en": "What team played at lake oval while away?",
    "question_th": "ทีมใดเล่นที่ Lake Oval ขณะไม่อยู่?",
    "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_en": "Name the number of silver when gold is less than 1 and bronze is 0 when total is less than 2",
    "question_th": "ตั้งชื่อหมายเลขเงินเมื่อทองน้อยกว่า 1 และทองแดงเป็น 0 เมื่อรวมน้อยกว่า 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_en": "What is the traffic direction of 70th street?",
    "question_th": "ทิศทางการจราจรของถนน 70th คืออะไร?",
    "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_en": "What is the traffic direction of 64th street with 2nd avenue to the west and 1 lane?",
    "question_th": "ทิศทางการจราจรของถนนหมายเลข 64 โดยมีถนนสายที่ 2 ไปทางทิศตะวันตกและ 1 เลนเป็นอย่างไร?",
    "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_en": "What is the traffic direction of 97th street?",
    "question_th": "ทิศทางการจราจรของถนน 97th คืออะไร?",
    "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_en": "What is the # of lanes on 20th street?",
    "question_th": "# เลนบนถนนสาย 20 คืออะไร?",
    "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_en": "Who drove the Marlboro Mclaren Peugeot?",
    "question_th": "ใครขับรถ 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_en": "What tyre did Mika Salo use for team Lotus?",
    "question_th": "มิก้า ซาโล ใช้ยางอะไรให้ทีมโลตัส?",
    "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_en": "Which driver drove the Tourtel Larrousse F1?",
    "question_th": "คนขับคนไหนขับรถ 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_en": "Who constructed Gerhard Berger car that went all rounds?",
    "question_th": "ใครเป็นคนสร้างรถ Gerhard Berger ที่วิ่งได้รอบด้าน?",
    "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–5–0\"",
    "question_en": "Who visited phoenix with a Record of 2–5–0?",
    "question_th": "ใครไปเยี่ยมฟีนิกซ์ด้วยสถิติ 2–5–0?",
    "context": "CREATE TABLE table_name_64 (visitor VARCHAR, home VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT decision FROM table_name_17 WHERE record = \"3–5–0\"",
    "question_en": "What decision had a Record of 3–5–0?",
    "question_th": "การตัดสินใจอะไรมีสถิติ 3–5–0?",
    "context": "CREATE TABLE table_name_17 (decision VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT MIN(attendance) FROM table_name_38 WHERE home = \"phoenix\" AND record = \"1–0–0\"",
    "question_en": "What is the low attendance was based in phoenix with a Record of 1–0–0?",
    "question_th": "ผู้เข้าร่วมที่ต่ำคืออะไรในฟีนิกซ์ด้วยสถิติ 1–0–0?",
    "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–6–0\"",
    "question_en": "What was the score did phoenix have with a Record of 3–6–0 at home?",
    "question_th": "ฟีนิกซ์มีคะแนนเท่าไรกับสถิติ 3–6–0 ในบ้าน?",
    "context": "CREATE TABLE table_name_88 (score VARCHAR, home VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_95 WHERE home = \"anaheim\"",
    "question_en": "What was the record while at home in Anaheim?",
    "question_th": "บันทึกขณะอยู่ที่บ้านในอนาไฮม์คืออะไร?",
    "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_en": "Which inning were the Minnesota Twins in on 06-07-1961?",
    "question_th": "Minnesota Twins มีโอกาสใดบ้างในวันที่ 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_en": "Who was the away team at the game held at Arden Street Oval?",
    "question_th": "ทีมเยือนในเกมที่จัดขึ้นที่อาร์เดน สตรีท โอวัลคือใคร?",
    "context": "CREATE TABLE table_name_16 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_91 WHERE away_team = \"footscray\"",
    "question_en": "What is the name of the venue that away team footscray played at?",
    "question_th": "สนามที่ฟุตสเครย์ทีมเยือนเล่นชื่ออะไร?",
    "context": "CREATE TABLE table_name_91 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_74 WHERE venue = \"princes park\"",
    "question_en": "What date was the game played at princes park?",
    "question_th": "เกมนี้เล่นวันที่เท่าไหร่ที่ 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_en": "How many tracks were Recorded 1964-01-08?",
    "question_th": "มีการบันทึกกี่เพลงในปี 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_en": "WhatTranslation has a Composer of jacques brel, rod mckuen?",
    "question_th": "WhatTranslation มีผู้แต่งเพลงของ 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_en": "Which recording has a Track larger than 2, and a Translation of the last meal?",
    "question_th": "บันทึกใดมีแทร็กที่ใหญ่กว่า 2 และคำแปลของมื้อสุดท้าย",
    "context": "CREATE TABLE table_name_31 (recorded VARCHAR, track VARCHAR, translation VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_90 WHERE track = 3",
    "question_en": "Which title has a Track of 3?",
    "question_th": "ชื่อใดมีแทร็ก 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_en": "When was the home game when the New Jersey team's record became 7-23-7?",
    "question_th": "เกมในบ้านคือเมื่อไหร่ที่สถิติของทีมนิวเจอร์ซี่ย์กลายเป็น 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_en": "What college has a pick of 11?",
    "question_th": "วิทยาลัยใดมีให้เลือก 11 แห่ง?",
    "context": "CREATE TABLE table_name_86 (college VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT AVG(pick) FROM table_name_28 WHERE college = \"florida state\"",
    "question_en": "What is the average pick of Florida State?",
    "question_th": "การเลือกเฉลี่ยของรัฐฟลอริดาคืออะไร?",
    "context": "CREATE TABLE table_name_28 (pick INTEGER, college VARCHAR)"
  },
  {
    "answer": "SELECT AVG(pick) FROM table_name_63 WHERE college = \"san diego state\"",
    "question_en": "What is the average pick of San Diego State?",
    "question_th": "การเลือกเฉลี่ยของรัฐซานดิเอโกคืออะไร?",
    "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_en": "What is the lowest value for SP+FS for Miljan Begovic with a greater than 189 place?",
    "question_th": "ค่า SP+FS ต่ำสุดสำหรับ มิลยาน เบโกวิช ที่มากกว่า 189 อันดับคือเท่าไร?",
    "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_en": "What is the average points value for a rank less than 12 for David Santee?",
    "question_th": "ค่าคะแนนเฉลี่ยสำหรับอันดับต่ำกว่า 12 ของเดวิด สันติคือเท่าใด",
    "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_en": "What is the total number for Rank with 185.16 points and a SP+FS value greater than 5?",
    "question_th": "จำนวนรวมของอันดับที่มี 185.16 คะแนน และค่า SP+FS มากกว่า 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_en": "What is the largest value for SP+FS with more than 164.56 points for Mitsuru Matsumura in a Rank greater than 1?",
    "question_th": "ค่า SP+FS ที่มีค่ามากกว่า 164.56 แต้มสำหรับ Mitsuru Matsumura ในอันดับมากกว่า 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_en": "When phonetic realisation is [[[|u]]], what is the variant with niqqud?",
    "question_th": "เมื่อการรับรู้การออกเสียงคือ [[[|u]]] อะไรคือตัวแปรที่มี 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: וו\"",
    "question_en": "When a variant without niqqud is as middle letter: וו with a phonemic value of /v/, what is the variant with niqqud?",
    "question_th": "เมื่อตัวแปรที่ไม่มี niqqud กลายเป็นอักษรกลาง: וו ที่มีค่าสัทศาสตร์เป็น /v/ ตัวแปรที่มี 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: ו\"",
    "question_en": "What is the phonetic realisation if the phonemic value is /v/ and the without niqqud is as initial letter: ו?",
    "question_th": "การใช้สัทศาสตร์จะเป็นอย่างไรหากค่าสัทศาสตร์เป็น /v/ และไม่มี niqqud เป็นตัวอักษรเริ่มต้น: ו?",
    "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__ = \"וֹ\"",
    "question_en": "Give me an english example of a variant with niqqud of וֹ?",
    "question_th": "ขอตัวอย่างภาษาอังกฤษของตัวแปรที่มี niqqud เป็น וָหลาม หน่อยได้ไหม?",
    "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_en": "What is the variant with niqqud for a phonetic realisation of [[[|v]]]?",
    "question_th": "อะไรคือตัวแปรที่มี niqqud สำหรับการรับรู้การออกเสียงของ [[[|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: ו or יו\"",
    "question_en": "If a variant without niqqud is as final letter: ו or יו, what is the phonetic realisation?",
    "question_th": "หากตัวแปรที่ไม่มี niqqud เป็นอักษรตัวสุดท้าย: ו หรือ יו อะไรคือการรับรู้สัทศาสตร์?",
    "context": "CREATE TABLE table_name_61 (phonetic_realisation VARCHAR, without_niqqud VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_96 WHERE pick = 113",
    "question_en": "What position does pick 113 play?",
    "question_th": "ปิ๊ก 113 เล่นตำแหน่งไหน?",
    "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_en": "What is the school of Victor Jones, who was picked further than number 225?",
    "question_th": "โรงเรียนของวิคเตอร์ โจนส์ ที่ถูกเลือกมากกว่าหมายเลข 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_en": "What is the total pick number of Virginia Tech?",
    "question_th": "หมายเลขเลือกทั้งหมดของ Virginia Tech คือเท่าไร?",
    "context": "CREATE TABLE table_name_68 (pick VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_57 WHERE school = \"north carolina\"",
    "question_en": "What is the position of a player from North Carolina?",
    "question_th": "ตำแหน่งผู้เล่นจากนอร์ธแคโรไลนาคืออะไร?",
    "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_en": "What is the home team score of St Kilda?",
    "question_th": "สกอร์เจ้าบ้าน เซนต์คิลดา คืออะไร?",
    "context": "CREATE TABLE table_name_4 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_19 WHERE home_team = \"collingwood\"",
    "question_en": "What is the date for home team Collingwood?",
    "question_th": "คอลลิงวูด เจ้าบ้านจัดวันที่เท่าไร?",
    "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_en": "What is the home team score for St Kilda?",
    "question_th": "คะแนนเจ้าบ้านของ เซนต์ คิลดา คืออะไร?",
    "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_en": "Tell me the named after for diameter less than 19.2 and latitude more than -37.5 with longitude less than 67.3",
    "question_th": "บอกชื่อตามเส้นผ่านศูนย์กลางน้อยกว่า 19.2 และละติจูดมากกว่า -37.5 และลองจิจูดน้อยกว่า 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_en": "Tell me the named for latitude of 6.4",
    "question_th": "บอกชื่อละติจูด 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_en": "Tell me the name for longitude more than 103.8 and latitude of -11.4",
    "question_th": "บอกชื่อลองจิจูดมากกว่า 103.8 และละติจูด -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_en": "Tell me the sum of longitude for diameter being 22.6 and latitude less than -12.4",
    "question_th": "บอกผลรวมของลองจิจูดสำหรับเส้นผ่านศูนย์กลางเป็น 22.6 และละติจูดน้อยกว่า -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_en": "What was the overall pick for Doug Sproule of the United States?",
    "question_th": "ตัวเลือกโดยรวมของ Doug Sproule จากสหรัฐอเมริกาคืออะไร",
    "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_en": "what is the lowest viewers (m) when the share is more than 13?",
    "question_th": "ผู้ชมต่ำสุด (m) เมื่อส่วนแบ่งมากกว่า 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_en": "what is the average rating when the air date is november 23, 2007?",
    "question_th": "เรตติ้งเฉลี่ยเมื่อออกอากาศวันที่ 23 พฤศจิกายน 2550 คือเท่าไร?",
    "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_en": "what is the total viewers (m) when the rating is 6.4 and the share is more than 11?",
    "question_th": "ยอดคนดูทั้งหมด (m) เมื่อเรตติ้ง 6.4 และส่วนแบ่งเกิน 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_en": "Who wrote the episode that was directed by Terry Ingram?",
    "question_th": "ใครเป็นคนเขียนตอนที่กำกับโดย 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_en": "What is the title of the episode that was directed by Roy Dupuis?",
    "question_th": "ตอนที่กำกับโดย 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_en": "Who directed the episode that originally aired on February 25, 2001?",
    "question_th": "ใครเป็นผู้กำกับตอนที่ออกอากาศครั้งแรกเมื่อวันที่ 25 กุมภาพันธ์ พ.ศ. 2544",
    "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_en": "What is the episode # of the episode that originally aired on January 21, 2001?",
    "question_th": "ตอนที่ # ของตอนที่ออกอากาศครั้งแรกเมื่อวันที่ 21 มกราคม 2544 คืออะไร?",
    "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_en": "Who directed episode # 92 (4)?",
    "question_th": "ใครกำกับตอนที่ #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_en": "what is the stream(s) and / or lake(s) when the date founded is 1959?",
    "question_th": "ลำธารและ/หรือทะเลสาบเมื่อก่อตั้งคือปี 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_en": "What is the area in acres (ha) for the park bald eagle state park?",
    "question_th": "อุทยานแห่งรัฐนกอินทรีหัวล้านมีพื้นที่เป็นเอเคอร์ (ฮ่า) เท่าใด",
    "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_en": "what is the most recent date founded in elk county?",
    "question_th": "วันที่ล่าสุดก่อตั้งขึ้นใน 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_en": "how many parks are name beltzville state park?",
    "question_th": "อุทยานแห่งรัฐเบลต์ซวิลล์มีสวนสาธารณะกี่แห่ง",
    "context": "CREATE TABLE table_name_77 (date_founded VARCHAR, park_name VARCHAR)"
  },
  {
    "answer": "SELECT AVG(rank) FROM table_name_23 WHERE total < 1",
    "question_en": "Which rank has a total smaller than 1?",
    "question_th": "อันดับใดมีคะแนนรวมน้อยกว่า 1",
    "context": "CREATE TABLE table_name_23 (rank INTEGER, total INTEGER)"
  },
  {
    "answer": "SELECT year FROM table_name_47 WHERE english_title = \"the ocean\"",
    "question_en": "What is the year for the ocean?",
    "question_th": "มหาสมุทรคือปีอะไร?",
    "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_en": "Name the representation for om fjorten dage",
    "question_th": "ตั้งชื่อตัวแทนสำหรับ 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_en": "Name the representing for englar alheimsins",
    "question_th": "ตั้งชื่อตัวแทนของ 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_en": "Name the original title for years before 1977 and author of lagercrantz olof lagercrantz",
    "question_th": "ตั้งชื่อชื่อต้นฉบับเมื่อหลายปีก่อนปี 1977 และผู้แต่ง 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ör andrées luftfärd\"",
    "question_en": "Name the representating for ingenjör andrées luftfärd",
    "question_th": "ตั้งชื่อตัวแทนของ ingenjör andrées luftfärd",
    "context": "CREATE TABLE table_name_82 (representing VARCHAR, original_title VARCHAR)"
  },
  {
    "answer": "SELECT distance FROM table_name_26 WHERE type = \"team time trial\"",
    "question_en": "What is the distance for the team time trial?",
    "question_th": "ไทรอัลของทีมมีระยะทางเท่าใด?",
    "context": "CREATE TABLE table_name_26 (distance VARCHAR, type VARCHAR)"
  },
  {
    "answer": "SELECT course FROM table_name_99 WHERE date = \"13 may\"",
    "question_en": "What was the course on 13 may?",
    "question_th": "วันที่ 13 พ.ค. มีหลักสูตรอะไรบ้าง?",
    "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_en": "What type has rest day as a course and was on 21 may?",
    "question_th": "ประเภทใดมีวันพักเป็นหลักสูตรและเป็นวันที่ 21 พฤษภาคม?",
    "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_en": "What's the race name that the driver Innes Ireland won?",
    "question_th": "ชื่อการแข่งขันที่นักแข่ง Innes Ireland ชนะคืออะไร?",
    "context": "CREATE TABLE table_name_3 (race_name VARCHAR, winning_driver VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_48 WHERE visitor = \"charlotte bobcats\"",
    "question_en": "What's the score in the home game against the Charlotte Bobcats?",
    "question_th": "ในเกมเหย้ากับชาร์ลอตต์ บ็อบแคทส์สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_48 (score VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_80 WHERE venue = \"victoria park\"",
    "question_en": "What was the date of the game played at Victoria Park?",
    "question_th": "วันที่เล่นเกมที่ 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_en": "Who was the home team when the crowd was larger than 13,557?",
    "question_th": "เจ้าบ้านคือใครเมื่อคนดูมากกว่า 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_en": "Where did Richmond play as the away team?",
    "question_th": "ริชมอนด์เล่นทีมเยือนที่ไหน?",
    "context": "CREATE TABLE table_name_57 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT years_competed FROM table_name_97 WHERE nickname = \"panthers\"",
    "question_en": "Tell me the years competed for panthers",
    "question_th": "บอกฉันหน่อยว่าหลายปีที่แข่งขันเพื่อเสือดำ",
    "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_en": "What is the release date of the CD by EG Records in the UK?",
    "question_th": "วันที่วางจำหน่ายซีดีโดย EG Records ในสหราชอาณาจักรคือเมื่อใด",
    "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_en": "What is the release date by Editions EG in the Netherlands?",
    "question_th": "วันที่วางจำหน่ายโดย Editions EG ในเนเธอร์แลนด์คือเมื่อใด",
    "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_en": "What is the music label with the catalogue number enocd 10?",
    "question_th": "ค่ายเพลงที่มีหมายเลขแค็ตตาล็อก 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_en": "What is the release date by Virgin?",
    "question_th": "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_en": "Which team has Yuriy Hruznov as coach?",
    "question_th": "ทีมไหนมี ยูริ ฮรูซนอฟ เป็นโค้ช?",
    "context": "CREATE TABLE table_name_49 (team VARCHAR, coach VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_38 WHERE team = \"dynamo-2\"",
    "question_en": "Where is Dynamo-2 located?",
    "question_th": "ไดนาโม-2 ตั้งอยู่ที่ไหน",
    "context": "CREATE TABLE table_name_38 (location VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_81 WHERE team = \"shakhtar-2\"",
    "question_en": "Where is Shakhtar-2 located?",
    "question_th": "ชัคตาร์-2 ตั้งอยู่ที่ไหน",
    "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_en": "For the gte northwest classic with the score of 207 (-9), what is the average 1st prize ($)",
    "question_th": "สำหรับ gte northwest classic ด้วยคะแนน 207 (-9) รางวัลที่ 1 เฉลี่ยเท่าไหร่ ($)",
    "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_en": "For sep 18 what is the total number of 1 prize ($)",
    "question_th": "วันที่ 18 ก.ย. มีรางวัลทั้งหมด 1 รางวัล ($)",
    "context": "CREATE TABLE table_name_56 (date VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_99 WHERE location = \"virginia\"",
    "question_en": "What is the winner for Virginia?",
    "question_th": "ผู้ชนะของเวอร์จิเนียคืออะไร?",
    "context": "CREATE TABLE table_name_99 (winner VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_81 WHERE tournament = \"gte north classic\"",
    "question_en": "On what date was the gte north classic tournament?",
    "question_th": "การแข่งขัน gte north classic จัดขึ้นวันไหน?",
    "context": "CREATE TABLE table_name_81 (date VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_81 WHERE venue = \"princes park\"",
    "question_en": "What home team plays at princes park?",
    "question_th": "เจ้าบ้านทีมไหนเล่นที่ 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_en": "Where does the home team fitzroy play?",
    "question_th": "เจ้าบ้านฟิตซ์รอยเล่นที่ไหน?",
    "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_en": "Which extra resulted in 2nd before 2005?",
    "question_th": "ผลพิเศษใดที่ 2 ก่อนปี 2548",
    "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_en": "Which venue resulted in 2nd before 2005?",
    "question_th": "สนามใดส่งผลให้เป็นที่ 2 ก่อนปี 2548",
    "context": "CREATE TABLE table_name_27 (venue VARCHAR, result VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_22 WHERE loss = \"wakefield (7–10)\"",
    "question_en": "What was the attendance at the Red Sox game that had a loss of Wakefield (7–10)?",
    "question_th": "การเข้าร่วมในเกม Red Sox ที่แพ้ Wakefield (7–10) คืออะไร?",
    "context": "CREATE TABLE table_name_22 (attendance VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_74 WHERE record = \"77–67\"",
    "question_en": "What was the loss of the Red Sox game when they had a record of 77–67?",
    "question_th": "อะไรคือความพ่ายแพ้ของเกมเรดซอกซ์เมื่อพวกเขามีสถิติ 77–67?",
    "context": "CREATE TABLE table_name_74 (loss VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_36 WHERE runner_up = \"pat cash\"",
    "question_en": "Which Tournament has Pat Cash as a runner-up?",
    "question_th": "ทัวร์นาเมนต์ใดที่มี Pat Cash เป็นรองแชมป์?",
    "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_en": "Who is the winner for the Tournament in Hong Kong with a third place winner named Mikael Pernfors?",
    "question_th": "ใครคือผู้ชนะการแข่งขันทัวร์นาเมนต์ที่ฮ่องกง โดยมีผู้ชนะอันดับสามชื่อ 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_en": "What was the nationality of the athlete that ran the 10000 m event?",
    "question_th": "นักกีฬาที่วิ่ง 10,000 ม. มีสัญชาติอะไร?",
    "context": "CREATE TABLE table_name_75 (nationality VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(points) FROM table_name_60 WHERE wins < 21 AND club = \"palamós cf\" AND goals_for < 40",
    "question_en": "What is the number of points of palamós cf, which has less than 21 wins and less than 40 goals?",
    "question_th": "ปาลามอส ซีเอฟ ชนะน้อยกว่า 21 แต้ม และยิงน้อยกว่า 40 ประตู ได้กี่แต้ม?",
    "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_en": "Which club has more than 46 goals, 10 wins, and a goal difference of -24?",
    "question_th": "สโมสรใดยิงได้มากกว่า 46 ประตู ชนะ 10 ครั้ง และผลต่างประตูต่างกัน -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_en": "What is Richmond score as the away team?",
    "question_th": "ริชมอนด์สกอร์เป็นทีมเยือนเท่าไหร่?",
    "context": "CREATE TABLE table_name_11 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT pole_position FROM table_name_97 WHERE round < 2",
    "question_en": "Tell me the pole position with round less than 2",
    "question_th": "บอกตำแหน่งโพลที่มีรอบน้อยกว่า 2 ครับ",
    "context": "CREATE TABLE table_name_97 (pole_position VARCHAR, round INTEGER)"
  },
  {
    "answer": "SELECT fastest_lap FROM table_name_18 WHERE round = 16",
    "question_en": "I want the fastest lap for round of 16",
    "question_th": "ฉันต้องการรอบ 16 ทีมที่เร็วที่สุด",
    "context": "CREATE TABLE table_name_18 (fastest_lap VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_72 WHERE home = \"nashville\"",
    "question_en": "Which Record has a home of Nashville?",
    "question_th": "บันทึกใดมีบ้านของแนชวิลล์?",
    "context": "CREATE TABLE table_name_72 (record VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_67 WHERE date = \"january 17\"",
    "question_en": "Which Visitor played on January 17?",
    "question_th": "ผู้เข้าชมคนไหนเล่นในวันที่ 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_en": "Which game later than number 32 had both Ellis for the decision and Nashville as the visiting team?",
    "question_th": "เกมไหนช้ากว่านัดที่ 32 มีทั้งเอลลิสเป็นฝ่ายตัดสินและมีแนชวิลล์เป็นทีมเยือน?",
    "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_en": "Who was the visiting team in the game sometime after number 29 that had 18,584 atttendees?",
    "question_th": "ใครคือทีมเยือนในเกมหลังจากหมายเลข 29 ที่มีผู้เข้าร่วม 18,584 คน?",
    "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_en": "If there is a VCPC of 75km/h (47mph) what is the VCA?",
    "question_th": "หากมี VCPC ที่ 75 กม./ชม. (47 ไมล์ต่อชั่วโมง) 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_en": "If there is a VCRT of 7.62mm (0.3in) fn mag 60-20 machine gun, what is the VCTP of that?",
    "question_th": "หากมี VCRT ขนาด 7.62 มม. (0.3 นิ้ว) fn mag 60-20 ปืนกล VCTP ของสิ่งนั้นคืออะไร",
    "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_en": "What is the airing date for a modern drama with more than 21 episodes?",
    "question_th": "ละครสมัยใหม่ที่มีมากกว่า 21 ตอน ออกอากาศวันไหน?",
    "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_en": "What was the Constructor for the German Grand Prix Race?",
    "question_th": "ผู้สร้างสำหรับการแข่งขัน German Grand Prix คืออะไร?",
    "context": "CREATE TABLE table_name_33 (constructor VARCHAR, race VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_36 WHERE fastest_lap = \"derek warwick\"",
    "question_en": "What was the Constructor for the race that had Derek Warwick as its Fastest Lap?",
    "question_th": "อะไรคือตัวสร้างสำหรับการแข่งขันที่มี Derek Warwick เป็นรอบที่เร็วที่สุด?",
    "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_en": "What Brands Hatch race had Niki Lauda as its Fastest Lap?",
    "question_th": "การแข่งขัน Brands Hatch ใดที่ Niki Lauda เป็นรอบที่เร็วที่สุด?",
    "context": "CREATE TABLE table_name_78 (race VARCHAR, fastest_lap VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT report FROM table_name_32 WHERE location = \"monaco\"",
    "question_en": "What was the Report for the Monaco race?",
    "question_th": "รายงานสำหรับการแข่งขันโมนาโกคืออะไร?",
    "context": "CREATE TABLE table_name_32 (report VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT nation FROM table_name_75 WHERE total = 59",
    "question_en": "What was the nation that had 59 totals?",
    "question_th": "ชาติไหนมีทั้งหมด 59 ชาติ?",
    "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_en": "On what date did Ayrton Senna win at Imola?",
    "question_th": "Ayrton Senna ชนะที่ 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_en": "Who had the fastest lap of the race that Ayrton Senna won on 23 April?",
    "question_th": "ใครมีรอบเร็วที่สุดในการแข่งขันที่ Ayrton Senna ชนะเมื่อวันที่ 23 เมษายน?",
    "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_en": "Which Grand Prix is located in Jerez?",
    "question_th": "Grand Prix ใดที่ตั้งอยู่ใน Jerez?",
    "context": "CREATE TABLE table_name_25 (grand_prix VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT pole_position FROM table_name_82 WHERE location = \"jerez\"",
    "question_en": "Who had the pole position in Jerez?",
    "question_th": "ใครได้ตำแหน่งโพลโพซิชั่นในเฮเรซ?",
    "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_en": "What is the report for the race that Ayrton Senna won on 27 August?",
    "question_th": "รายงานผลการแข่งขันที่ ไอร์ตัน เซนน่า คว้าชัยเมื่อวันที่ 27 ส.ค. มีอะไรบ้าง?",
    "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_en": "What is the sum of gold medals for the United States with silver medal count greater than 3?",
    "question_th": "ผลรวมของเหรียญทองสำหรับสหรัฐอเมริกาที่มีเหรียญเงินมากกว่า 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_en": "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?",
    "question_th": "จำนวนเหรียญทั้งหมดของนอร์เวย์โดยมีจำนวนเหรียญเงินมากกว่า 6 และเหรียญทองมากกว่า 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_en": "What is the lowest bronze medal count for Italy with fewer than 6 gold medals and greater than 10 total medals?",
    "question_th": "จำนวนเหรียญทองแดงต่ำสุดของอิตาลีโดยมีน้อยกว่า 6 เหรียญทองและมากกว่า 10 เหรียญรวมคือเท่าใด",
    "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_en": "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?",
    "question_th": "โดยเฉลี่ยแล้ว ประเทศที่ได้อันดับที่สูงกว่า 7 ได้เหรียญเงินจำนวนเท่าใด โดยมีทั้งหมด 6 เหรียญ และน้อยกว่า 2 เหรียญทองแดง เป็นเท่าใด",
    "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_en": "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?",
    "question_th": "สำหรับสหรัฐอเมริกา หากมีมากกว่า 2 เหรียญทองแดง มากกว่า 3 เหรียญเงิน และอันดับสูงกว่า 3 เหรียญรางวัลรวมสูงสุดคือเท่าใด",
    "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_en": "Which player was active in Jazz in 1975-79?",
    "question_th": "นักเตะคนไหนที่เล่นให้กับทีมแจ๊สในปี 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_en": "What is the nationality for the guard position from Bowling Green?",
    "question_th": "ตำแหน่งการ์ดจากโบว์ลิ่งกรีนมีสัญชาติอะไร?",
    "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_en": "Who is the player from Auburn?",
    "question_th": "ใครคือผู้เล่นจากออเบิร์น?",
    "context": "CREATE TABLE table_name_86 (player VARCHAR, school_club_team VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_81 WHERE position = \"shooting guard\"",
    "question_en": "Which player is a shooting guard?",
    "question_th": "ผู้เล่นคนไหนเป็นการ์ดยิงปืน?",
    "context": "CREATE TABLE table_name_81 (player VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_59 WHERE years_for_jazz = \"2002-03\"",
    "question_en": "Which position was active in Jazz in 2002-03?",
    "question_th": "ตำแหน่งใดที่เคยทำงานใน Jazz ในปี 2545-2546?",
    "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_en": "Name the total number of swimsuits when evening gown is 8.329 and average is less than 8.497",
    "question_th": "บอกจำนวนชุดว่ายน้ำทั้งหมดเมื่อชุดราตรี 8.329 และเฉลี่ยน้อยกว่า 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_en": "Name the sum of swimsuit when the evening gown is less than 6.983 and the average is less than 7.362",
    "question_th": "ตั้งชื่อผลรวมชุดว่ายน้ำเมื่อชุดราตรีน้อยกว่า 6.983 และค่าเฉลี่ยน้อยกว่า 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_en": "Name the most interview for minnesota and average more than 7.901",
    "question_th": "ระบุชื่อการสัมภาษณ์มากที่สุดสำหรับมินนิโซตาและเฉลี่ยมากกว่า 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_en": "Name the highest Decile for roll more than 325 and area of warkworth",
    "question_th": "ตั้งชื่อ Decile สูงสุดสำหรับการหมุนมากกว่า 325 และพื้นที่ของ warkworth",
    "context": "CREATE TABLE table_name_70 (decile INTEGER, roll VARCHAR, area VARCHAR)"
  },
  {
    "answer": "SELECT authority FROM table_name_22 WHERE roll = 54",
    "question_en": "Name the authority for roll of 54",
    "question_th": "ตั้งชื่อผู้มีอำนาจสำหรับม้วน 54",
    "context": "CREATE TABLE table_name_22 (authority VARCHAR, roll VARCHAR)"
  },
  {
    "answer": "SELECT score1 FROM table_name_69 WHERE match = 2",
    "question_en": "What was the score of Match 2?",
    "question_th": "นัดที่ 2 สกอร์เท่าไหร่ครับ?",
    "context": "CREATE TABLE table_name_69 (score1 VARCHAR, match VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_15 WHERE home_team = \"essendon\"",
    "question_en": "When did Essendon play at home?",
    "question_th": "เอสเซนดอนเล่นในบ้านเมื่อไหร่?",
    "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_en": "What was Collingwood's score when they played against North Melbourne at home?",
    "question_th": "คอลลิงวูดทำคะแนนได้เท่าไหร่เมื่อพวกเขาเล่นกับนอร์ท เมลเบิร์น ในบ้าน?",
    "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_en": "What was the home team score at Melbourne's away match?",
    "question_th": "สกอร์ทีมเหย้าในเกมเยือนของเมลเบิร์นเป็นเท่าไหร่?",
    "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_en": "How many people were in attendance at Hawthorn's home match?",
    "question_th": "มีผู้เข้าร่วมการแข่งขันในบ้านของฮอว์ธอร์นกี่คน",
    "context": "CREATE TABLE table_name_60 (crowd INTEGER, home_team VARCHAR)"
  },
  {
    "answer": "SELECT capital FROM table_name_1 WHERE voivodeship_separate_city = \"białostockie\"",
    "question_en": "what is the capital with the Voivodeship Separate city of białostockie?",
    "question_th": "เมืองหลวงที่มีเมืองbiałostockieแยกจากวอยโวเดชิปคืออะไร?",
    "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_en": "between car plates of 80-84 what is the population in 1000 in year 1931?",
    "question_th": "ระหว่างป้ายทะเบียนรถ 80-84 ปี พ.ศ. 2474 จำนวนประชากรในปี 1,000 เป็นเท่าใด",
    "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_en": "tell me the population in 1000(1931) that has car plates since 1937 of 35-39.",
    "question_th": "บอกจำนวนประชากรในปี 1000(1931) ที่มีป้ายทะเบียนรถตั้งแต่ปี 1937 จำนวน 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²__1930_ = \"20,4\"",
    "question_en": "tell me the name of the capital with an area of 20,4.",
    "question_th": "บอกชื่อเมืองหลวงที่มีพื้นที่ 20,4 หน่อยสิ",
    "context": "CREATE TABLE table_name_7 (capital VARCHAR, area_in_1000km²__1930_ VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_41 WHERE opponent = \"wales\"",
    "question_en": "When did they play against Wales?",
    "question_th": "พวกเขาเล่นกับเวลส์เมื่อไหร่?",
    "context": "CREATE TABLE table_name_41 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_14 WHERE date = \"29/09/07\"",
    "question_en": "What was the result on 29/09/07?",
    "question_th": "ผลลัพธ์เมื่อวันที่ 29/09/50 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_14 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_52 WHERE date = \"25/08/07\"",
    "question_en": "What was the competition on 25/08/07?",
    "question_th": "การแข่งขันวันที่ 25/08/50 มีอะไรบ้าง?",
    "context": "CREATE TABLE table_name_52 (competition VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT AVG(pos) FROM table_name_42 WHERE time = \"20:39.171\"",
    "question_en": "What position is associated with a Time of 20:39.171?",
    "question_th": "ตำแหน่งใดสัมพันธ์กับเวลา 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_en": "How many points associated with a Best time of 01:46.367?",
    "question_th": "มีกี่คะแนนที่เกี่ยวข้องกับเวลาที่ดีที่สุดคือ 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_en": "What is the total reg gp of Ilya Krikunov, who has a round of 7 and a pick number larger than 223?",
    "question_th": "reg gp ทั้งหมดของ Ilya Krikunov ที่มีรอบ 7 และหมายเลขการเลือกมากกว่า 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_en": "What is the total PI GP of the player with a pick number 49 and a reg gp less than 0?",
    "question_th": "PI GP ทั้งหมดของผู้เล่นที่มีหมายเลขตัวเลือก 49 และ reg gp น้อยกว่า 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_en": "What is the pick # of the player with a PI GP less than 0?",
    "question_th": "ตัวเลือก # ของผู้เล่นที่มี PI GP น้อยกว่า 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_en": "What is the reg gp of the player with a round number less than 2?",
    "question_th": "reg gp ของผู้เล่นที่มีหมายเลขรอบน้อยกว่า 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_en": "What is the average PI GP of the player from round 5 with a pick # larger than 151?",
    "question_th": "PI GP เฉลี่ยของผู้เล่นจากรอบ 5 ที่มีตัวเลือก # มากกว่า 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__ = \"°32′39″\"",
    "question_en": "What constellation has a Declination ( J2000 ) of °32′39″?",
    "question_th": "กลุ่มดาวใดมีค่าเสื่อม (J2000) ที่°32′39″",
    "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_en": "What is the lowest pick from Elitserien (Sweden)?",
    "question_th": "ตัวเลือกที่ถูกที่สุดจาก Elitserien (สวีเดน) คืออะไร?",
    "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_en": "How many spectators were at the game where Richmond was the away team?",
    "question_th": "มีผู้ชมกี่คนในเกมที่ริชมอนด์เป็นทีมเยือน?",
    "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_en": "What is the location of the kanyakumari government medical college?",
    "question_th": "ที่ตั้งของ วิทยาลัยแพทย์รัฐบาลกันยากุมารี อยู่ที่ไหน?",
    "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_en": "Where is the coimbatore affilation that was established in 1982?",
    "question_th": "สังกัดโคอิมบาโตร์ที่ก่อตั้งในปี 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_en": "What is the location of the salem district?",
    "question_th": "ที่ตั้งของ อำเภอสเลม คืออะไร?",
    "context": "CREATE TABLE table_name_16 (location VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_73 WHERE district = \"tiruchirappalli district\"",
    "question_en": "What is the location of the tiruchirappalli district?",
    "question_th": "อำเภอติรุจิรัปปัลลิ อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_73 (location VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_name_93 WHERE college_name = \"thanjavur medical college\"",
    "question_en": "What is the district where the thanjavur medical college is located?",
    "question_th": "วิทยาลัยแพทย์ธนบุรีตั้งอยู่เขตใด?",
    "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_en": "Where is the location of the coimbatore medical college?",
    "question_th": "ที่ตั้งของ วิทยาลัยการแพทย์โคอิมบาโตร์ อยู่ที่ไหน?",
    "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_en": "What is the Time/Retired when the grid is larger than 9 and Rolf Stommelen is the driver?",
    "question_th": "เวลา/เกษียณเมื่อกริดมีขนาดใหญ่กว่า 9 และ Rolf Stommelen เป็นผู้ขับคือเท่าใด",
    "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_en": "What is the highest number of laps when the Time/Retired is differential?",
    "question_th": "จำนวนรอบสูงสุดเมื่อเวลา/เกษียณคือส่วนต่าง?",
    "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_en": "Who is the driver when the laps are smaller than 14, the grid is smaller than 16, and the Time/retired is not classified?",
    "question_th": "ใครคือคนขับเมื่อรอบน้อยกว่า 14, ตารางน้อยกว่า 16, และเวลา/เกษียณไม่ได้ถูกจัดประเภท?",
    "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_en": "What is the average grid when the laps are smaller than 14 and Reine Wisell is the driver?",
    "question_th": "ตารางเฉลี่ยเมื่อรอบน้อยกว่า 14 และ Reine Wisell เป็นผู้ขับคือเท่าใด",
    "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_en": "Who is the entrant with a driver Damon Hill and a Renault RS8 3.0 V10 engine?",
    "question_th": "ใครคือผู้เข้าแข่งขันพร้อมคนขับ Damon Hill และเครื่องยนต์ Renault RS8 3.0 V10?",
    "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_en": "Who is the constructor of the car with a Peugeot A12 EV5 3.0 V10 engine that competed in all rounds?",
    "question_th": "ใครคือผู้สร้างรถด้วยเครื่องยนต์ Peugeot A12 EV5 3.0 V10 ที่ลงแข่งขันทุกรอบ?",
    "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_en": "What kind of engine is in the car for Scuderia Ferrari that went all rounds?",
    "question_th": "เครื่องยนต์แบบไหนในรถของ Scuderia Ferrari ที่ลุยได้ทุกรอบ?",
    "context": "CREATE TABLE table_name_28 (engine VARCHAR, rounds VARCHAR, entrant VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_50 WHERE chassis = \"196\"",
    "question_en": "Who is the constructor of the 196 chassis?",
    "question_th": "ใครคือผู้สร้างแชสซี 196?",
    "context": "CREATE TABLE table_name_50 (constructor VARCHAR, chassis VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_81 WHERE visitor = \"kings\"",
    "question_en": "Name the home with visitor of kings",
    "question_th": "ตั้งชื่อบ้านที่มีผู้มาเยี่ยมเยือนของกษัตริย์",
    "context": "CREATE TABLE table_name_81 (home VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(attendance) FROM table_name_84 WHERE visitor = \"cavaliers\"",
    "question_en": "Name the total number of attendance when the cavaliers visited",
    "question_th": "ระบุจำนวนผู้เข้าร่วมทั้งหมดเมื่อทหารม้ามาเยี่ยม",
    "context": "CREATE TABLE table_name_84 (attendance VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT mixed_doubles FROM table_name_93 WHERE year = 2006",
    "question_en": "Which mixed doubles was featured in 2006?",
    "question_th": "คู่ผสมใดที่เข้าร่วมในปี 2549?",
    "context": "CREATE TABLE table_name_93 (mixed_doubles VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT MAX(crowd) FROM table_name_62 WHERE venue = \"corio oval\"",
    "question_en": "In the games at corio oval, what was the highest crowd?",
    "question_th": "ในเกมที่โคริโอโอวัล คนดูเยอะที่สุดคือคนไหน?",
    "context": "CREATE TABLE table_name_62 (crowd INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_29 WHERE venue = \"corio oval\"",
    "question_en": "In the match as corio oval, who was the away team?",
    "question_th": "ในเกมที่โคริโอโอวัลทีมเยือนคือใคร?",
    "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_en": "How many communes associated with over 10 cantons and an area (Square km) of 1,589?",
    "question_th": "มีชุมชนกี่แห่งที่เกี่ยวข้องกับมากกว่า 10 มณฑล และพื้นที่ (ตารางกิโลเมตร) 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_en": "Which team won the game on January 12?",
    "question_th": "ทีมใดชนะเกมเมื่อวันที่ 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_en": "Who was the home team against Geelong?",
    "question_th": "เจ้าบ้านเจอกับจีลองคือใคร?",
    "context": "CREATE TABLE table_name_70 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(crowd) FROM table_name_70 WHERE venue = \"mcg\"",
    "question_en": "What was the attendance when the VFL played MCG?",
    "question_th": "การเข้าร่วมเมื่อ VFL เล่น MCG เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_70 (crowd VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT security_forces FROM table_name_15 WHERE civilians = \"67\"",
    "question_en": "Name the security forces with civilians of 67",
    "question_th": "ตั้งชื่อกองกำลังรักษาความปลอดภัยด้วยพลเรือนจำนวน 67 คน",
    "context": "CREATE TABLE table_name_15 (security_forces VARCHAR, civilians VARCHAR)"
  },
  {
    "answer": "SELECT insurgents FROM table_name_75 WHERE civilians = \"49\"",
    "question_en": "Name the insurgents for civilians being 49",
    "question_th": "ตั้งชื่อผู้ก่อความไม่สงบสำหรับพลเรือนอายุ 49 ปี",
    "context": "CREATE TABLE table_name_75 (insurgents VARCHAR, civilians VARCHAR)"
  },
  {
    "answer": "SELECT security_forces FROM table_name_81 WHERE civilians = \"67\"",
    "question_en": "Name the security forces with civilians being 67",
    "question_th": "ตั้งชื่อกองกำลังรักษาความปลอดภัย โดยพลเรือนอายุ 67 ปี",
    "context": "CREATE TABLE table_name_81 (security_forces VARCHAR, civilians VARCHAR)"
  },
  {
    "answer": "SELECT security_forces FROM table_name_82 WHERE year = \"2009\"",
    "question_en": "Name the security forces for 2009",
    "question_th": "ตั้งชื่อกองกำลังรักษาความปลอดภัยประจำปี 2552",
    "context": "CREATE TABLE table_name_82 (security_forces VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT tyre FROM table_name_85 WHERE chassis = \"p57 p61\"",
    "question_en": "What tyre has a chassis of p57 p61?",
    "question_th": "ยางอะไรมีแชสซีของ p57 p61?",
    "context": "CREATE TABLE table_name_85 (tyre VARCHAR, chassis VARCHAR)"
  },
  {
    "answer": "SELECT MAX(laps) FROM table_name_94 WHERE grid = 1",
    "question_en": "what is the highest laps when the grid is 1?",
    "question_th": "รอบสูงสุดเมื่อกริดอยู่ที่ 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_en": "How many athletes had a Swimming Time (pts) of 2:20.93 (1232)?",
    "question_th": "นักกีฬากี่คนมีเวลาว่ายน้ำ (pts) 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_en": "What is the riding penaltie (pts) for the athlete that has a Swimming Time (pts) of 2:18.16 (1264)?",
    "question_th": "การลงโทษขณะขี่ (pts) สำหรับนักกีฬาที่มีเวลาว่ายน้ำ (pts) เท่ากับ 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_en": "Which owner has a description of Mark 1 pos and is dated 1956?",
    "question_th": "เจ้าของคนไหนมีคำอธิบายของ Mark 1 pos และลงวันที่ 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_en": "Which owner has a description of Mark 1 CK and is dated 1953?",
    "question_th": "เจ้าของคนไหนมีคำอธิบายของ Mark 1 CK และลงวันที่ปี 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_en": "Who was the athlete who had SEMI of 1:43.79?",
    "question_th": "นักกีฬาคนไหนมี SEMI 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_en": "What were the final time for the swimmer on lane 4?",
    "question_th": "ครั้งสุดท้ายสำหรับนักว่ายน้ำบนเลน 4 คืออะไร?",
    "context": "CREATE TABLE table_name_1 (final VARCHAR, lane VARCHAR)"
  },
  {
    "answer": "SELECT final_score FROM table_name_21 WHERE stadium = \"lambeau field\"",
    "question_en": "What is the final score of the game at lambeau field?",
    "question_th": "คะแนนสุดท้ายของเกมที่สนามแลมโบคือเท่าไร?",
    "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_en": "What rank is aliyya qadi with less than 1421 votes?",
    "question_th": "Aliyya Qadi มีคะแนนโหวตน้อยกว่า 1,421 คะแนนอยู่ในอันดับใด",
    "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 = \"♀\" AND list = \"al-ahd\"",
    "question_en": "Which candidate has more than 279 votes, rank less than 50, is ♀ and al-ahd?",
    "question_th": "ผู้สมัครคนใดมีคะแนนเสียงมากกว่า 279 เสียง อันดับน้อยกว่า 50 คือ ε และ 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_en": "What is the first year that the Favorite Male Replacement category had Ben Vereen as a nominee?",
    "question_th": "ในปีแรกที่สาขา Favorite Male Replacement มี Ben Vereen เป็นผู้ได้รับการเสนอชื่อคือปีใด",
    "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_en": "What year was Kristin Chenoweth nominated in the category of outstanding actress in a musical?",
    "question_th": "Kristin Chenoweth ได้รับการเสนอชื่อเข้าชิงสาขานักแสดงละครเพลงดีเด่นในปีใด",
    "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_en": "What year was Aaron Tveit nominated in the Favorite Male Replacement category?",
    "question_th": "Aaron Tveit ได้รับการเสนอชื่อเข้าชิงในสาขา Favorite Male Replacement ในปีใด",
    "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_en": "Tell me the sum of rank for placings of 58",
    "question_th": "บอกผลรวมอันดับอันดับ 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_en": "Tell me the lowest placings for United Kingdom and rank less than 13",
    "question_th": "บอกตำแหน่งที่ต่ำที่สุดสำหรับสหราชอาณาจักรและอันดับต่ำกว่า 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_en": "I want to know the highest rank with placings more than 123 and points greater than 88.06",
    "question_th": "ฉันต้องการทราบอันดับสูงสุดที่มีอันดับมากกว่า 123 และคะแนนมากกว่า 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_en": "Who is the drive for an Entrant of Scuderia Ambrosiana?",
    "question_th": "ใครคือแรงผลักดันสำหรับผู้เข้าแข่งขันของ 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_en": "Which of the Rounds has an Entrant of automobiles Talbot-Darracq, and Pierre Levegh as the driver?",
    "question_th": "รอบใดที่มีผู้เข้าแข่งขันเป็นรถยนต์ Talbot-Darracq และ Pierre Levegh เป็นคนขับ",
    "context": "CREATE TABLE table_name_72 (rounds VARCHAR, entrant VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_80 WHERE entrant = \"enrico platé\"",
    "question_en": "Who is the driver for the Entract of Enrico Platé?",
    "question_th": "ใครคือคนขับรถ Entract of Enrico Platé?",
    "context": "CREATE TABLE table_name_80 (driver VARCHAR, entrant VARCHAR)"
  },
  {
    "answer": "SELECT entrant FROM table_name_79 WHERE driver = \"luigi fagioli\"",
    "question_en": "Which of the entrants had Luigi Fagioli as a driver?",
    "question_th": "ผู้เข้าแข่งขันคนไหนที่มีลุยจิ ฟาจิโอลีเป็นคนขับ?",
    "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_en": "Who is the driver whose Constructor was Era, and whose entrant was T.A.S.O. Mathieson?",
    "question_th": "ใครคือคนขับรถที่ Constructor คือ Era และใครคือ TASO 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_en": "Which chassis had Rounds of 7, and an Entrant of Ecurie Rosier?",
    "question_th": "แชสซีใดมีรอบ 7 ทีมและผู้เข้าแข่งขันของ 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_en": "Who is the winner constructor with driver riccardo patrese?",
    "question_th": "ใครคือผู้สร้างผู้ชนะพร้อมคนขับ ริคคาร์โด้ ปาเทรเซ?",
    "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_en": "What is the highest round on 5 april?",
    "question_th": "รอบสูงสุดวันที่ 5 เมษายน คือรอบไหน?",
    "context": "CREATE TABLE table_name_42 (round INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_37 WHERE location = \"hermanos rodríguez\"",
    "question_en": "Which date was hermanos rodríguez the location?",
    "question_th": "Hermanos rodríguez สถานที่คือวันไหน?",
    "context": "CREATE TABLE table_name_37 (date VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_92 WHERE date = \"may 3\"",
    "question_en": "Name the record for may 3",
    "question_th": "ตั้งชื่อบันทึกสำหรับวันที่ 3 พฤษภาคม",
    "context": "CREATE TABLE table_name_92 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(attendance) FROM table_name_68 WHERE date = \"may 1\"",
    "question_en": "Name the total number in attendance for may 1",
    "question_th": "แจ้งจำนวนผู้เข้าร่วมทั้งหมดสำหรับวันที่ 1 พฤษภาคม",
    "context": "CREATE TABLE table_name_68 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_20 WHERE date = \"may 29\"",
    "question_en": "Name the loss on may 29",
    "question_th": "ตั้งชื่อขาดทุนวันที่ 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_en": "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?",
    "question_th": "มีการตัดออกกี่ครั้งเมื่อไม่มีการชนะใดๆ แต่มี 5 อันดับแรกจาก 1 และ 10 อันดับแรกมากกว่า 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_en": "Which college has a Player of shabazz muhammad?",
    "question_th": "วิทยาลัยไหนมีผู้เล่น Shabazz Muhammad บ้าง?",
    "context": "CREATE TABLE table_name_36 (college VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT height FROM table_name_11 WHERE player = \"nerlens noel\"",
    "question_en": "How tall is nerlens noel?",
    "question_th": "เนอร์เลนส์ โนเอลสูงเท่าไหร่?",
    "context": "CREATE TABLE table_name_11 (height VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_47 WHERE hometown = \"flower mound, tx\"",
    "question_en": "Who is from flower mound, tx?",
    "question_th": "ใครมาจากกองดอกไม้เท็กซัส?",
    "context": "CREATE TABLE table_name_47 (player VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_name_58 WHERE player = \"shabazz muhammad\"",
    "question_en": "Where is shabazz muhammad from?",
    "question_th": "ชาบัซ มูฮัมหมัด มาจากไหน?",
    "context": "CREATE TABLE table_name_58 (hometown VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_35 WHERE date = \"july 21\"",
    "question_en": "What was the opponent for july 21?",
    "question_th": "คู่ต่อสู้ในวันที่ 21 กรกฎาคมคืออะไร?",
    "context": "CREATE TABLE table_name_35 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_95 WHERE date = \"july 24\"",
    "question_en": "What was the record on july 24?",
    "question_th": "บันทึกเมื่อวันที่ 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_en": "Who constructed the car with a grid under 15, 77 laps, and a Time/Retired of + 0.771?",
    "question_th": "ใครเป็นคนสร้างรถที่มีกริดต่ำกว่า 15, 77 รอบ และเวลา/เกษียณที่ + 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_en": "What is the average grid for damon hill with over 74 laps?",
    "question_th": "ตารางเฉลี่ยของเดมอน ฮิลล์ที่วิ่งเกิน 74 รอบเป็นเท่าใด",
    "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_en": "Which position has a School/club team of jacksonville?",
    "question_th": "ตำแหน่งใดมีทีมโรงเรียน/สโมสรของแจ็กสันวิลล์",
    "context": "CREATE TABLE table_name_81 (pos VARCHAR, school_club_team VARCHAR)"
  },
  {
    "answer": "SELECT SUM(round) FROM table_name_21 WHERE pick = 13",
    "question_en": "How many rounds have a Pick of 13?",
    "question_th": "มีกี่รอบให้เลือก 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_en": "How many rounds have School/club team of pan american?",
    "question_th": "ทีมโรงเรียน/ชมรมแพนอเมริกันมีกี่รอบ?",
    "context": "CREATE TABLE table_name_91 (round INTEGER, school_club_team VARCHAR)"
  },
  {
    "answer": "SELECT chassis FROM table_name_41 WHERE points = \"25\"",
    "question_en": "What is the chassis when there is 25 points?",
    "question_th": "แชสซีคืออะไรเมื่อมี 25 คะแนน?",
    "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_en": "How many points were there before 1979 with a ferrari 312b2 chassis?",
    "question_th": "ก่อนปี 1979 ด้วยแชสซีของเฟอร์รารี 312b2 มีกี่คะแนน?",
    "context": "CREATE TABLE table_name_3 (points VARCHAR, year VARCHAR, chassis VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_3 WHERE points = \"29 (32)\"",
    "question_en": "What year were there 29 (32) points?",
    "question_th": "ปีไหนมี 29 (32) คะแนน?",
    "context": "CREATE TABLE table_name_3 (year VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_87 WHERE round = \"4 leg 2\"",
    "question_en": "What result occurs when the round is 4 leg 2?",
    "question_th": "เมื่อยกเป็น 4 เลก 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_en": "What did fitzroy score at their home game?",
    "question_th": "ฟิตซ์รอยทำคะแนนได้ในเกมเหย้าของพวกเขาอย่างไร?",
    "context": "CREATE TABLE table_name_98 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_16 WHERE venue = \"western oval\"",
    "question_en": "Which away team played at western oval?",
    "question_th": "ทีมเยือนทีมไหนเล่นที่เวสเทิร์นโอวัล?",
    "context": "CREATE TABLE table_name_16 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_83 WHERE partner = \"yew-ming si\"",
    "question_en": "Which surface had Yew-Ming Si as a partner?",
    "question_th": "พื้นผิวใดที่มี Yew-Ming Si เป็นหุ้นส่วน?",
    "context": "CREATE TABLE table_name_83 (surface VARCHAR, partner VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_73 WHERE rank = 1",
    "question_en": "What was the result of rank 1?",
    "question_th": "อันดับ 1 เป็นยังไงบ้างคะ?",
    "context": "CREATE TABLE table_name_73 (result VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_70 WHERE date = \"1 june\"",
    "question_en": "What type has a date of 1 june?",
    "question_th": "ประเภทใดมีวันที่ 1 มิถุนายน?",
    "context": "CREATE TABLE table_name_70 (type VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_16 WHERE type = \"hilly stage\"",
    "question_en": "What was the date with a hilly stage?",
    "question_th": "เวทีที่เป็นเนินเขาคือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_16 (date VARCHAR, type VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_21 WHERE date = \"18 may\"",
    "question_en": "What is the name of the winner on 18 may?",
    "question_th": "ผู้ชนะในวันที่ 18 พ.ค. ชื่ออะไร?",
    "context": "CREATE TABLE table_name_21 (winner VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_13 WHERE course = \"moena to aprica\"",
    "question_en": "What date was moena to aprica the course?",
    "question_th": "หลักสูตร Moena ถึง Aprica คือวันไหน?",
    "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_en": "What is the name of the winner with a type of plain stage and a Course of nola to sora?",
    "question_th": "ผู้ชนะประเภทเวทีธรรมดาและหลักสูตรของโนลาถึงโซระชื่ออะไร",
    "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_en": "Which sign has a red border and a warning sign?",
    "question_th": "ป้ายใดมีขอบสีแดงและป้ายเตือน",
    "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_en": "Which sign had a yellow background and a triangular shape?",
    "question_th": "ป้ายใดมีพื้นหลังสีเหลืองและเป็นรูปสามเหลี่ยม",
    "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_en": "Which sign has a red border?",
    "question_th": "ป้ายใดมีขอบสีแดง",
    "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_en": "Which color is the background of the mandatory instructions?",
    "question_th": "พื้นหลังของคำแนะนำบังคับคือสีใด",
    "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_en": "What is the color of the background of the white border and sign of information?",
    "question_th": "พื้นหลังเส้นขอบสีขาวและสัญลักษณ์ข้อมูลเป็นสีอะไร",
    "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_en": "What is the average total of Italy and has a bronze larger than 1?",
    "question_th": "ผลรวมโดยเฉลี่ยของอิตาลีและมีเหรียญทองแดงมากกว่า 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_en": "What amount of Gold does Russia have and have a rank larger than 1?",
    "question_th": "รัสเซียมีทองคำจำนวนเท่าใดและมีอันดับมากกว่า 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_en": "What is the sum of the ranks with a total of 1 and silver less than 0.",
    "question_th": "ผลรวมของอันดับที่มีทั้งหมด 1 และเงินน้อยกว่า 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_en": "Which Player is linebacker and has a pick larger than 28?",
    "question_th": "ผู้เล่นคนไหนที่เป็นทีมบร็องโกและมีตัวเลือกมากกว่า 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_en": "What was the lowest round that Melvin Johnson played?",
    "question_th": "Melvin Johnson เล่นรอบต่ำสุดคือเท่าไร?",
    "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_en": "Who was the runner-up at the South Florida Semi-Finalist #1?",
    "question_th": "ใครคือรองชนะเลิศในรอบรองชนะเลิศเซาท์ฟลอริดา #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_en": "Who was the Champion in Snellville, GA in 2006?",
    "question_th": "ใครคือแชมป์ใน Snellville, GA ในปี 2549",
    "context": "CREATE TABLE table_name_46 (champion VARCHAR, location VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT champion FROM table_name_53 WHERE runner_up = \"elon\"",
    "question_en": "Who won when Elon was the runner-up?",
    "question_th": "ใครชนะเมื่ออีลอนเป็นรองชนะเลิศ?",
    "context": "CREATE TABLE table_name_53 (champion VARCHAR, runner_up VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_9 WHERE score = \"8-5\"",
    "question_en": "What year saw a score of 8-5?",
    "question_th": "ปีไหนเห็นคะแนน 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_en": "Who was the Semi-Finalist #2 in 2007?",
    "question_th": "ใครคือผู้เข้ารอบรองชนะเลิศอันดับ 2 ในปี 2550",
    "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_en": "Who was the Semi-Finalist #2 in 2001?",
    "question_th": "ใครคือผู้เข้ารอบรองชนะเลิศอันดับ 2 ในปี 2544",
    "context": "CREATE TABLE table_name_26 (semi_finalist__number2 VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_70 WHERE location = \"arizona\"",
    "question_en": "What tournament is in Arizona?",
    "question_th": "การแข่งขันอะไรในแอริโซนา?",
    "context": "CREATE TABLE table_name_70 (tournament VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_60 WHERE crowd > 21 OFFSET 000",
    "question_en": "Which away team had a crowd bigger than 21,000?",
    "question_th": "ทีมเยือนทีมไหนมีผู้ชมมากกว่า 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_en": "What is the rank for points less than 166.96, and a Places of 166?",
    "question_th": "คะแนนที่ต่ำกว่า 166.96 และอันดับ 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_en": "What is the rank for more than 120.44 points in East Germany and a SP+FS of 3?",
    "question_th": "เยอรมนีตะวันออกมากกว่า 120.44 คะแนนมากกว่า 120.44 คะแนน และ SP+FS ที่ 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_en": "What is the rank when 233 shows for places and SP+FS smaller than 27?",
    "question_th": "อันดับคือเท่าไรเมื่อ 233 แสดงสถานที่และ SP+FS ที่น้อยกว่า 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_en": "What is the average SP+FS for Denise Biellmann, and a Rank larger than 5?",
    "question_th": "SP+FS เฉลี่ยสำหรับ Denise Biellmann คือเท่าใด และอันดับมากกว่า 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_en": "What is the number of points for east germany, and a Places of 88?",
    "question_th": "เยอรมนีตะวันออกได้คะแนนเท่าไร และอันดับที่ 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_en": "what is the years for engin 5.7l hemi v8?",
    "question_th": "เครื่อง 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_en": "what is the years when the notes is laredo, limited, overland and the engine is 5.7l hemi v8?",
    "question_th": "ปีไหนที่โน้ตคือ laredo, Limited, โอเวอร์แลนด์ และเครื่องยนต์เป็น 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_en": "what is the torque when the notes are laredo, limited, overland and the engine is 5.7l hemi v8?",
    "question_th": "แรงบิดเป็นเท่าใดเมื่อโน้ตเป็นลาเรโด ลิมิเต็ด โอเวอร์แลนด์ และเครื่องยนต์เป็น 5.7 ลิตรครึ่ง 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_en": "Who drove the ferrari that went 57 laps?",
    "question_th": "ใครขับเฟอร์รารีที่วิ่งได้ 57 รอบ?",
    "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_en": "What place did R. Wenzel, who was active after 1934, have?",
    "question_th": "อาร์. เวนเซลซึ่งประจำการหลังปี 1934 มีสถานที่ใดบ้าง?",
    "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_en": "What's the time for a round of n/a when the opponent is mikhail ilyukhin?",
    "question_th": "กี่โมงคะ n/a เมื่อคู่ต่อสู้คือ 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_en": "What is the pole position of the Portuguese Grand Prix?",
    "question_th": "ตำแหน่งโพลโพซิชั่นของโปรตุเกส กรังด์ปรีซ์ คืออะไร?",
    "context": "CREATE TABLE table_name_54 (pole_position VARCHAR, grand_prix VARCHAR)"
  },
  {
    "answer": "SELECT pole_position FROM table_name_93 WHERE round = 1",
    "question_en": "What is the pole position of the grand prix with 1 round?",
    "question_th": "ตำแหน่งโพลโพซิชั่นของกรังด์ปรีซ์ 1 รอบคืออะไร?",
    "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_en": "What is the pole position of the Hungarian Grand Prix?",
    "question_th": "ตำแหน่งโพลโพซิชั่นของฮังการี กรังด์ปรีซ์ คืออะไร?",
    "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_en": "What is the pole position of the Belgian Grand Prix?",
    "question_th": "ตำแหน่งโพลโพซิชั่นของ 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_en": "What is the grand prix with Gerhard Berger as the fastest lap and Michael Schumacher as the pole position?",
    "question_th": "อะไรคือกรังปรีซ์ที่มี Gerhard Berger เป็นรอบที่เร็วที่สุดและ Michael Schumacher ในตำแหน่งโพล?",
    "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_en": "Tell me the declination for consellaion of ophiuchus and apparent magnitude less than 8.6 with right ascension of 16h47m14.5s",
    "question_th": "บอกความเสื่อมของกลุ่มดาว ophiuchus และขนาดที่ปรากฏน้อยกว่า 8.6 โดยมีการขึ้นทางขวาที่ 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_en": "Tell me the right ascensuon for object type of globular cluster and apparent magnitude of 8.5 and NGC number of 6273",
    "question_th": "บอกลางสังหรณ์ที่ถูกต้องสำหรับประเภทวัตถุของกระจุกดาวทรงกลมและขนาดปรากฏที่ 8.5 และหมายเลข NGC ที่ 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_en": "When was the game played where St Kilda was the home team?",
    "question_th": "เกมนี้เล่นเมื่อไหร่โดยที่เซนต์คิลดาเป็นเจ้าบ้าน?",
    "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_en": "What was the home team score with an away team of Melbourne?",
    "question_th": "สกอร์ของเจ้าบ้านกับทีมเยือนเมลเบิร์นเป็นเท่าไหร่?",
    "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_en": "Which away team played the home team of Footscray?",
    "question_th": "ทีมเยือนทีมไหนเล่นทีมเจ้าบ้าน ฟุตสเครย์?",
    "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_en": "How old was the conservative party member that left the house in 2001?",
    "question_th": "สมาชิกพรรคอนุรักษ์นิยมที่ออกจากบ้านในปี 2544 อายุเท่าไหร่",
    "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_en": "What was the lowest Attendance for the Staples Center Arena when the Points were over 14?",
    "question_th": "ผู้เข้าชม Staples Center Arena ต่ำที่สุดเมื่อคะแนนมากกว่า 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_en": "Name the leading scorer for 12 january 2008",
    "question_th": "รายชื่อผู้ทำประตูสูงสุดประจำวันที่ 12 มกราคม พ.ศ. 2551",
    "context": "CREATE TABLE table_name_40 (leading_scorer VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_4 WHERE date = \"21 january 2008\"",
    "question_en": "Name the record for 21 january 2008",
    "question_th": "ตั้งชื่อบันทึกสำหรับวันที่ 21 มกราคม พ.ศ. 2551",
    "context": "CREATE TABLE table_name_4 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_48 WHERE away_team = \"melbourne\"",
    "question_en": "what is the date when the away team is melbourne?",
    "question_th": "ทีมเยือนเมลเบิร์นวันไหนคะ?",
    "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_en": "What is the score for the home team for the venue glenferrie oval?",
    "question_th": "สกอร์ของเจ้าบ้านสำหรับสนามเกลนเฟอร์รี่โอวัลคือเท่าไร?",
    "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_en": "What was South Melbourne's score when they played as the away team?",
    "question_th": "เซาธ์ เมลเบิร์น ได้สกอร์เท่าไหร่เมื่อเล่นเป็นทีมเยือน?",
    "context": "CREATE TABLE table_name_5 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT crowd FROM table_name_31 WHERE home_team = \"north melbourne\"",
    "question_en": "What was the attendance for the North Melbourne's home game?",
    "question_th": "ผู้เข้าชมเกมเหย้าของนอร์ท เมลเบิร์นเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_31 (crowd VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_83 WHERE home_team = \"st kilda\"",
    "question_en": "What is the name of the venue where home team st kilda played?",
    "question_th": "สนามที่ทีมเจ้าบ้านเซนต์คิลดาเล่นชื่ออะไร?",
    "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_en": "What is the home team score that played away team carlton?",
    "question_th": "สกอร์ทีมเจ้าบ้าน เจอ ทีมเยือน คาร์ลตัน เป็นเท่าไหร่?",
    "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_en": "When the Year is smaller than 2004, and Mike Joy is the Lap-by-lap, what are the Ratings?",
    "question_th": "เมื่อปีนั้นเล็กกว่าปี 2004 และ Mike Joy เป็นแบบ Lap-by-lap เรตติ้งจะเป็นเท่าใด",
    "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_en": "Which Network has Bill Weber for the Lap-by-lap?",
    "question_th": "เครือข่ายใดที่มี Bill Weber สำหรับการตักต่อรอบ?",
    "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_en": "Who was the Pre-Race Host when Mike Joy was the Lap-by-lap in the Year 2005?",
    "question_th": "ใครคือเจ้าภาพก่อนการแข่งขันในตอนที่ Mike Joy เป็นผู้ตักต่อรอบในปี 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_en": "How many Years have Ratings of 10.9/23?",
    "question_th": "กี่ปีมีเรตติ้ง 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_en": "What is the home team of lake oval's score?",
    "question_th": "คะแนนของทีมเจ้าบ้าน เลคโอวัล เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_57 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_18 WHERE venue = \"victoria park\"",
    "question_en": "When was victoria park used as a venue?",
    "question_th": "วิคตอเรีย พาร์ค ถูกใช้เป็นสถานที่จัดงานเมื่อใด",
    "context": "CREATE TABLE table_name_18 (date VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_67 WHERE away_team = \"fitzroy\"",
    "question_en": "Which date has an Away team of fitzroy?",
    "question_th": "นัดเยือนทีมฟิตซ์รอยมีวันไหน?",
    "context": "CREATE TABLE table_name_67 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(crowd) FROM table_name_96 WHERE home_team = \"carlton\"",
    "question_en": "What is the largest crowd for a Home team of carlton?",
    "question_th": "ฝูงชนที่ใหญ่ที่สุดสำหรับทีมเหย้าของคาร์ลตันคือกลุ่มใด?",
    "context": "CREATE TABLE table_name_96 (crowd INTEGER, home_team VARCHAR)"
  },
  {
    "answer": "SELECT MIN(crowd) FROM table_name_42 WHERE away_team = \"melbourne\"",
    "question_en": "When the Away team is melbourne, what's the lowest Crowd attended?",
    "question_th": "เมื่อทีมเยือนอยู่ที่เมลเบิร์น จำนวนผู้เข้าร่วมน้อยที่สุดคือทีมใด",
    "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_en": "When the Away team is essendon, what's the Home team score?",
    "question_th": "เมื่อทีมเยือนเป็นเอสเซนดอน ทีมเจ้าบ้านได้คะแนนเท่าไหร่?",
    "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_en": "If the Venue is brunswick street oval, what date was the game played ?",
    "question_th": "หากสถานที่จัดงานเป็นสนามบรันสวิกสตรีทโอวัล จะแข่งขันกันวันที่ใด ?",
    "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_en": "Name the first for countries of trinidad and tobago for hutchinson for years before 2004",
    "question_th": "ตั้งชื่อเป็นชื่อแรกสำหรับประเทศตรินิแดดและโตเบโกสำหรับฮัทชินสันหลายปีก่อนปี 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_en": "Name the sport for canada in 2004",
    "question_th": "ตั้งชื่อกีฬาให้กับประเทศแคนาดาในปี พ.ศ. 2547",
    "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_en": "Name the last for softball before 2000",
    "question_th": "ตั้งชื่อคนสุดท้ายสำหรับซอฟต์บอลก่อนปี 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_en": "Name the sum of year for swimming and first of mike",
    "question_th": "ตั้งชื่อผลรวมของปีว่ายน้ำและชื่อไมค์",
    "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_en": "Name the sport for puerto rico and year of 2000",
    "question_th": "ตั้งชื่อกีฬาสำหรับเปอร์โตริโกและปี พ.ศ. 2543",
    "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_en": "Cumulative point total for all teams playing on the Discovery Channel?",
    "question_th": "คะแนนสะสมรวมสำหรับทุกทีมที่เล่นทาง Discovery Channel?",
    "context": "CREATE TABLE table_name_67 (points VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_44 WHERE nationality = \"belgium\"",
    "question_en": "Which player is from Belgium?",
    "question_th": "นักเตะคนไหนมาจากเบลเยี่ยม?",
    "context": "CREATE TABLE table_name_44 (name VARCHAR, nationality VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_42 WHERE home = \"kings\"",
    "question_en": "Who was the visiting team that played against the Kings?",
    "question_th": "ทีมเยือนที่เล่นกับคิงส์คือใคร?",
    "context": "CREATE TABLE table_name_42 (visitor VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_25 WHERE round > 5 AND position = \"c\"",
    "question_en": "Tell me the player for round more than 5 and position of c",
    "question_th": "บอกผู้เล่นรอบมากกว่า 5 และตำแหน่งของค",
    "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_en": "Tell me the college for carl hagelin",
    "question_th": "บอกวิทยาลัยของคาร์ล ฮาเกลินมาหน่อยสิ",
    "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_en": "Which year has a total of 0 points and a chassis of Toleman tg181?",
    "question_th": "ปีไหนมีคะแนนรวม 0 แต้ม และตัวถังของ 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_en": "What is the latest year that has more than 5 points and a renault ef15 1.5 v6 t engine?",
    "question_th": "ปีล่าสุดที่มีเกิน 5 แต้ม กับเครื่องยนต์ renault ef15 1.5 v6 t คือปีไหนครับ?",
    "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_en": "Which year had a toleman tg183 chassis?",
    "question_th": "ปีไหนมีแชสซี toleman tg183?",
    "context": "CREATE TABLE table_name_36 (year VARCHAR, chassis VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_13 WHERE rider = \"tony myres\"",
    "question_en": "What is the time for tony myres?",
    "question_th": "โทนี่ ไมเรสกี่โมง?",
    "context": "CREATE TABLE table_name_13 (time VARCHAR, rider VARCHAR)"
  },
  {
    "answer": "SELECT speed FROM table_name_41 WHERE rider = \"andy reynolds\"",
    "question_en": "Name the speed for andy reynolds",
    "question_th": "ตั้งชื่อความเร็วให้กับ 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_en": "Name the total number of rank for 348cc petty manx",
    "question_th": "ตั้งชื่อจำนวนยศทั้งหมดสำหรับ 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_en": "Name the speed for 1:36.46.93",
    "question_th": "ตั้งชื่อความเร็วเป็น 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_en": "What is the away team score of Melbourne?",
    "question_th": "เมลเบิร์น สกอร์ทีมเยือนเท่าไหร่?",
    "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_en": "What is the away team score for South Melbourne?",
    "question_th": "คะแนนทีมเยือน เซาธ์ เมลเบิร์น เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_86 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT prime_mover FROM table_name_87 WHERE model = \"fm cfa-16-4\"",
    "question_en": "What is Prime Mover of Model FM CFA-16-4?",
    "question_th": "Prime Mover ของรุ่น 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_en": "what was the purse ($) in illinois?",
    "question_th": "กระเป๋าเงิน ($) ในรัฐอิลลินอยส์คืออะไร?",
    "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_en": "who won with a score of 199 (-14) on oct 31?",
    "question_th": "ใครจะชนะด้วยคะแนน 199 (-14) เมื่อวันที่ 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_en": "How many years did he play in santiago de compostela?",
    "question_th": "เขาเล่นในซานติอาโก เด กอมโปสเตลา กี่ปี?",
    "context": "CREATE TABLE table_name_6 (year INTEGER, city VARCHAR)"
  },
  {
    "answer": "SELECT SUM(finale) FROM table_name_64 WHERE chinese_title = \"女人唔易做\"",
    "question_en": "What is the Total Finale of 女人唔易做?",
    "question_th": "Total Finale ของ 女人唔易做 คืออะไร?",
    "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_en": "What is the lowest Premiere peaking at more than 35 with a Rank of 10 and Finale greater than 33?",
    "question_th": "รอบปฐมทัศน์ต่ำสุดที่มีจุดสูงสุดมากกว่า 35 โดยมีอันดับ 10 และตอนจบมากกว่า 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_en": "What is the Chinese Title Premiering 32 with 2.07 million HK viewers?",
    "question_th": "อะไรคือ Chinese Title Premiering 32 ที่มีผู้ชม 2.07 ล้านคนฮ่องกง?",
    "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_en": "What is the Average of Men in Pain with a Finale of less than 33?",
    "question_th": "ค่าเฉลี่ยของผู้ชายที่เจ็บปวดโดยมีตอนจบน้อยกว่า 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_en": "What Chinese Title Ranking #7 has an Average of 32 and Peak less than 38?",
    "question_th": "อันดับอันดับ 7 ของจีนรายการใดที่มีค่าเฉลี่ย 32 และจุดสูงสุดน้อยกว่า 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_en": "What is the average crowd size for corio oval?",
    "question_th": "ขนาดฝูงชนโดยเฉลี่ยสำหรับ 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_en": "What is the average crowd size for Brunswick street oval?",
    "question_th": "ขนาดฝูงชนโดยเฉลี่ยสำหรับ 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_en": "What day did the team play in murcia with a score of 0-3 after 1992?",
    "question_th": "ทีมเล่นที่มูร์เซียด้วยสกอร์ 0-3 วันไหนหลังปี 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_en": "What location did the team win before 1998 in the europe/africa zone, group i, round robin?",
    "question_th": "ทีมชนะตำแหน่งใดก่อนปี 1998 ในโซนยุโรป/แอฟริกา, กลุ่ม ไอ, ราวด์โรบิน?",
    "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_en": "What day did they record a score of 1-2 in 1994?",
    "question_th": "พวกเขาทำสถิติสกอร์ 1-2 ในปี 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_en": "When the country is austria germany and the rank is kept under 5, what's the average number of matches played?",
    "question_th": "เมื่อประเทศคือออสเตรีย เยอรมนี และอันดับต่ำกว่า 5 โดยเฉลี่ยจะลงเล่นเป็นจำนวนเท่าใด",
    "context": "CREATE TABLE table_name_91 (matches INTEGER, country VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_85 WHERE name = \"pele\"",
    "question_en": "Which country does the player pele belong to?",
    "question_th": "นักเตะเปเล่เป็นคนประเทศไหน?",
    "context": "CREATE TABLE table_name_85 (country VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT MIN(game) FROM table_name_94 WHERE attendance = 42 OFFSET 707",
    "question_en": "What is the earliest game that had 42,707 attending?",
    "question_th": "เกมแรกสุดที่มีผู้เข้าร่วม 42,707 คนคืออะไร?",
    "context": "CREATE TABLE table_name_94 (game INTEGER, attendance VARCHAR)"
  },
  {
    "answer": "SELECT SUM(figures) FROM table_name_13 WHERE total < 117.78",
    "question_en": "What is the sum of the figure skating scores whose total is less than 117.78?",
    "question_th": "ผลรวมของคะแนนสเก็ตลีลาที่มีคะแนนรวมน้อยกว่า 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_en": "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?",
    "question_th": "คะแนนรวมต่ำสุดในหมู่นักสเก็ตจากเยอรมนีตะวันตกที่มีอันดับ 20 และคะแนนสเก็ตลีลาน้อยกว่า 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_en": "How many placings did Jacqueline du Bief earn where her total score is greater than 131.26?",
    "question_th": "Jacqueline du Bief ได้อันดับที่เท่าไรโดยคะแนนรวมของเธอมากกว่า 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_en": "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?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมถึงตำแหน่งที่มี Free น้อยกว่า 524.3 และ Total น้อยกว่า 1170.1 และชื่อของ 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_en": "Can you tell me the average Figures that has the Placings of 34, and the Total larger than 1247.51?",
    "question_th": "คุณช่วยบอกฉันถึงตัวเลขเฉลี่ยที่มีอันดับ 34 และผลรวมมากกว่า 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_en": "What is the result where the opponent is Columbus Destroyers?",
    "question_th": "ผลลัพธ์ที่คู่ต่อสู้คือโคลัมบัสพิฆาตคืออะไร?",
    "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_en": "What is the date of the away game in week 8?",
    "question_th": "เกมเยือนในสัปดาห์ที่ 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_en": "Which grand prix had gerhard berger in his fastest lap and a jacques villeneuve pole position?",
    "question_th": "กรังด์ปรีซ์ใดที่มี Gerhard Berger ในรอบที่เร็วที่สุดของเขาและตำแหน่งโพลของ Jacques Villeneuve?",
    "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_en": "What's the 2003 result for the falkirk council?",
    "question_th": "ผลลัพธ์ของสภาฟัลเคิร์กในปี 2546 เป็นอย่างไรบ้าง",
    "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_en": "On which date was the manager fired and replaced by Albert Cartier?",
    "question_th": "ผู้จัดการทีมถูกไล่ออกและถูกแทนที่โดยอัลเบิร์ต คาร์เทียร์เมื่อวันไหน?",
    "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_en": "What was the manner of departure for the team Anderlecht?",
    "question_th": "การจากไปของทีมอันเดอร์เลชท์เป็นอย่างไร?",
    "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_en": "What was the manner of depature when the date of appointment was 27 December 2007?",
    "question_th": "การถอนตัวเมื่อได้รับการแต่งตั้งเป็นวันที่ 27 ธันวาคม 2550 เป็นอย่างไร?",
    "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_en": "Who was the replacement for the Brussels team with a date of vacancy of 22 December 2007?",
    "question_th": "ใครคือผู้เข้ามาแทนที่ทีมบรัสเซลส์ โดยมีตำแหน่งว่างในวันที่ 22 ธันวาคม พ.ศ. 2550",
    "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_en": "What was the date of vacancy where the replacement was Albert Cartier and the manager was fired?",
    "question_th": "วันที่ตำแหน่งว่างคือเมื่อใดที่อัลเบิร์ต คาร์เทียร์ เข้ามาแทนที่และผู้จัดการถูกไล่ออก คือเมื่อใด",
    "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_en": "What is the Tallangatta DFL losses greater than 2 and an against greater than 1013",
    "question_th": "อะไรคือสิ่งที่ Tallangatta DFL เสียมากกว่า 2 และต่อมากกว่า 1,013",
    "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_en": "What are the average byes that are greater than 1479, wins greater than 5 and 0 draws?",
    "question_th": "บายเฉลี่ยที่มากกว่า 1479 ชนะมากกว่า 5 และเสมอ 0 เป็นเท่าไหร่?",
    "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_en": "Tell me the average year for rank more than 3 and 28 floors",
    "question_th": "บอกปีเฉลี่ยสำหรับอันดับมากกว่า 3 และ 28 ชั้น",
    "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_en": "I want the name for rank less than 6 and year more than 1974",
    "question_th": "อยากได้ชื่อยศน้อยกว่า 6 และปีมากกว่า 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_en": "What is the average rank of Great Britain when their total is over 4?",
    "question_th": "อันดับเฉลี่ยของบริเตนใหญ่เมื่อคะแนนรวมมากกว่า 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_en": "What is the total number of Silvers held by France when their rank was over 14?",
    "question_th": "จำนวนเหรียญเงินทั้งหมดที่ถือโดยฝรั่งเศสเมื่ออันดับมากกว่า 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_en": "Who was the home team at the game held at Princes Park?",
    "question_th": "ทีมเจ้าบ้านในเกมที่จัดขึ้นที่ 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_en": "Who was the home team when Hawthorn was the away team?",
    "question_th": "เมื่อฮอว์ธอร์นเป็นทีมเยือนคือใคร?",
    "context": "CREATE TABLE table_name_39 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_21 WHERE loss = \"hernandez (3–5)\"",
    "question_en": "What was the Rockies record at their game that had a loss of Hernandez (3–5)?",
    "question_th": "อะไรคือสถิติของ Rockies ในเกมของพวกเขาที่แพ้ Hernandez (3–5)?",
    "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_en": "What engine has g tyres and is driven by elio de angelis?",
    "question_th": "เครื่องยนต์อะไรที่มียาง g และขับเคลื่อนโดย 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_en": "What rounds does elio de angelis drive?",
    "question_th": "เอลิโอ เด แองเจลิส ขับรอบไหน?",
    "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_en": "Who is the constructor for driver alan jones using a chassis of fw06 fw07?",
    "question_th": "ใครคือผู้สร้างไดรเวอร์ Alan Jones ที่ใช้แชสซี 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_en": "What engine does driver james hunt have?",
    "question_th": "คนขับ เจมส์ ฮันท์ มีเครื่องยนต์อะไร?",
    "context": "CREATE TABLE table_name_94 (engine VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT engine FROM table_name_1 WHERE rounds = \"5-6\"",
    "question_en": "What's the engine used for rounds 5-6?",
    "question_th": "รอบ 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_en": "Who was the home team at Princes Park?",
    "question_th": "ทีมเหย้าที่ 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_en": "Tell me the city/state for the holden racing team with winner of mark skaife todd kelly",
    "question_th": "บอกเมือง/รัฐของทีมแข่งรถโฮลเดนกับผู้ชนะของมาร์ค สกายเฟ ท็อดด์ เคลลี่มาหน่อยสิ",
    "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_en": "What is the engine configuration of the 1.2 mpi engine?",
    "question_th": "การกำหนดค่าเครื่องยนต์ของเครื่องยนต์ 1.2 mpi คืออะไร?",
    "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_en": "What is the max torque of the 1.2 mpi engine?",
    "question_th": "แรงบิดสูงสุดของเครื่องยนต์ 1.2 mpi คือเท่าไร?",
    "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_en": "Tell me the long for charles frederick",
    "question_th": "บอกฉันหน่อยสิว่าชาร์ลส์ เฟรเดอริกจะยาวแค่ไหน",
    "context": "CREATE TABLE table_name_93 (long VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT avg FROM table_name_65 WHERE yards = \"1\"",
    "question_en": "Tell me the average for 1 yards",
    "question_th": "บอกค่าเฉลี่ย 1 หลามาครับ",
    "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_en": "Which time/retired had 75 laps and Pedro de la Rosa as a driver?",
    "question_th": "ครั้งไหน/เกษียณแล้วมี 75 รอบและมี Pedro de la Rosa เป็นนักขับ?",
    "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_en": "What is the total number in the season for the #30 Robert Berlinger series?",
    "question_th": "หมายเลขรวมในฤดูกาลของซีรีส์ #30 Robert Berlinger คือเท่าใด",
    "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_en": "When did Julie gets Validated originally air?",
    "question_th": "Julie gets Validated ออกอากาศครั้งแรกเมื่อใด",
    "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_en": "Who was the number 24 series written by?",
    "question_th": "ซีรีส์หมายเลข 24 เขียนโดยใคร?",
    "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_en": "When did Boyd Hale's Julie gets Validated originally air?",
    "question_th": "Julie ของ Boyd Hale ได้รับการตรวจสอบความถูกต้องเมื่อใดที่ออกอากาศครั้งแรก",
    "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_en": "What was the Queens number when Brooklyn was 201,866?",
    "question_th": "หมายเลขควีนส์เมื่อบรูคลินอยู่ที่ 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_en": "Which Manhattan number appeared when Richmond (Staten Island) was 78%?",
    "question_th": "หมายเลขแมนฮัตตันใดปรากฏเมื่อริชมอนด์ (เกาะสแตเทน) อยู่ที่ 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_en": "What did the home team score against Fitzroy?",
    "question_th": "เจ้าบ้านได้คะแนนอะไรกับฟิตซ์รอย?",
    "context": "CREATE TABLE table_name_61 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_24 WHERE week = 2",
    "question_en": "Who is the listed opponent in Week 2?",
    "question_th": "คู่ต่อสู้ที่ระบุไว้ในสัปดาห์ที่ 2 คือใคร?",
    "context": "CREATE TABLE table_name_24 (opponent VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_11 WHERE attendance = \"45,024\"",
    "question_en": "What date has attendance listed as 45,024?",
    "question_th": "วันที่ใดที่มีผู้เข้าร่วมระบุว่าเป็น 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_en": "What numbered pick was mattias ohlund, with over 52 PL GP, and also a round under 11?",
    "question_th": "Mattias Ohlund ตัวเลือกหมายเลขใดที่มีมากกว่า 52 PL GP และรอบที่ต่ำกว่า 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_en": "How many reg GP for mattias ohlund?",
    "question_th": "Mattias Ohlund มี reg GP กี่อัน?",
    "context": "CREATE TABLE table_name_35 (reg_gp VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT AVG(attendance) FROM table_name_57 WHERE opponent = \"expos\"",
    "question_en": "What is the average attendance against the expos?",
    "question_th": "ผู้เข้าร่วมงานโดยเฉลี่ยเทียบกับงานแสดงสินค้าคือเท่าไร?",
    "context": "CREATE TABLE table_name_57 (attendance INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_11 WHERE date = \"april 12\"",
    "question_en": "What is the team's record on april 12?",
    "question_th": "บันทึกของทีมเมื่อวันที่ 12 เมษายนเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_11 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_2 WHERE date = \"april 19\"",
    "question_en": "Who did the team play on april 19?",
    "question_th": "วันที่ 19 เมษายน แข่งกับใครบ้าง?",
    "context": "CREATE TABLE table_name_2 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT aspect FROM table_name_23 WHERE channel = 26.5",
    "question_en": "What is the Aspect of Channel 26.5?",
    "question_th": "แง่มุมของช่อง 26.5 คืออะไร?",
    "context": "CREATE TABLE table_name_23 (aspect VARCHAR, channel VARCHAR)"
  },
  {
    "answer": "SELECT programming FROM table_name_98 WHERE channel = 26.5",
    "question_en": "Which Programming is on Channel 26.5?",
    "question_th": "รายการไหนออกช่อง 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_en": "Which Programming is on a channel less than 26.5, has a Video of 480i and a PSIP Short Name of jtv?",
    "question_th": "รายการใดที่อยู่ในช่องน้อยกว่า 26.5 มีวิดีโอ 480i และชื่อย่อ PSIP ของ 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_en": "What number of laps were done by driver Ronnie Peterson?",
    "question_th": "รอนนี่ ปีเตอร์สัน นักแข่งทำไปกี่รอบ?",
    "context": "CREATE TABLE table_name_56 (laps VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_2 WHERE time_retired = \"fuel system\"",
    "question_en": "Which driver had a time/retired of fuel system?",
    "question_th": "คนขับคนไหนมีอายุการใช้งาน/หมดระบบเชื้อเพลิง?",
    "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_en": "What is the sum of grids with an engine in Time/Retired with less than 45 laps for Giancarlo Baghetti?",
    "question_th": "ผลรวมของกริดที่มีเครื่องยนต์ในเวลา/เลิกใช้โดยมีรอบน้อยกว่า 45 รอบสำหรับ 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_en": "I want the Grid for Laps of 35",
    "question_th": "ฉันต้องการกริดสำหรับรอบ 35",
    "context": "CREATE TABLE table_name_97 (grid VARCHAR, laps VARCHAR)"
  },
  {
    "answer": "SELECT batting_style FROM table_name_95 WHERE player = \"jonty rhodes\"",
    "question_en": "What is Jonty Rhodes's batting style?",
    "question_th": "สไตล์การตีบอลของ Jonty Rhodes คืออะไร?",
    "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_en": "What bowling style does First Class Team, Griqualand West have?",
    "question_th": "First Class Team, Griqualand West มีรูปแบบการเล่นโบว์ลิ่งแบบใด?",
    "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_en": "What is the batting style of Makhaya Ntini?",
    "question_th": "ลีลาการตีบอลของ มาคายา นตินี่ เป็นอย่างไร?",
    "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_en": "What region is the host university of southern california located?",
    "question_th": "มหาวิทยาลัยเจ้าภาพทางตอนใต้ของแคลิฟอร์เนียตั้งอยู่ภูมิภาคใด",
    "context": "CREATE TABLE table_name_1 (region VARCHAR, host VARCHAR)"
  },
  {
    "answer": "SELECT state FROM table_name_81 WHERE city = \"knoxville\"",
    "question_en": "In which state is the city of knoxville?",
    "question_th": "เมืองน็อกซ์วิลล์อยู่ในรัฐใด",
    "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_en": "Which city in Texas hosts the Frank Erwin center?",
    "question_th": "เมืองใดในเท็กซัสที่ตั้งศูนย์ Frank Erwin",
    "context": "CREATE TABLE table_name_58 (city VARCHAR, state VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_name_36 WHERE city = \"austin\"",
    "question_en": "In what region is the city of Austin?",
    "question_th": "เมืองออสตินอยู่ในภูมิภาคใด",
    "context": "CREATE TABLE table_name_36 (region VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT chuck_devore FROM table_name_97 WHERE other = \"4%\"",
    "question_en": "What is the polling result for Chuck DeVore which has a corresponding polling result of 4% for Other?",
    "question_th": "ผลการลงคะแนนของ Chuck DeVore ซึ่งมีผลการลงคะแนนที่สอดคล้องกัน 4% สำหรับรายการอื่นๆ คืออะไร",
    "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_en": "What is the total when silver is less than 1 and rank larger than 3?",
    "question_th": "ผลรวมเมื่อเงินน้อยกว่า 1 และอันดับมากกว่า 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_en": "What is the number of bronze for Canada and silver is less than 0?",
    "question_th": "หมายเลขทองแดงสำหรับแคนาดาและเงินน้อยกว่า 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_en": "What is the largest gold when silver is less than 1 for Canada and bronze is less than 0?",
    "question_th": "ทองคำที่ใหญ่ที่สุดเมื่อเงินน้อยกว่า 1 สำหรับแคนาดาและทองแดงน้อยกว่า 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_en": "What is the silver for Germany and less than 2?",
    "question_th": "เงินของเยอรมนีและน้อยกว่า 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_en": "Tell me the score for december 3",
    "question_th": "บอกคะแนนวันที่ 3 ธันวาคม หน่อยสิ",
    "context": "CREATE TABLE table_name_4 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_47 WHERE date = \"december 3\"",
    "question_en": "Tell me the record for december 3",
    "question_th": "บอกฉันบันทึกสำหรับวันที่ 3 ธันวาคม",
    "context": "CREATE TABLE table_name_47 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_86 WHERE visitor = \"dallas\"",
    "question_en": "Name the record for dallas visitor",
    "question_th": "ตั้งชื่อบันทึกสำหรับผู้เยี่ยมชมดัลลัส",
    "context": "CREATE TABLE table_name_86 (record VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_36 WHERE date = \"december 5\"",
    "question_en": "Name the score for december 5",
    "question_th": "ตั้งชื่อคะแนนสำหรับวันที่ 5 ธันวาคม",
    "context": "CREATE TABLE table_name_36 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_6 WHERE venue = \"princes park\"",
    "question_en": "Who is Princes Park's home team?",
    "question_th": "ทีมเหย้าของ Princes Park คือใคร?",
    "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_en": "Who is North Melbourne's home team?",
    "question_th": "ทีมเหย้าของนอร์ท เมลเบิร์นคือใคร?",
    "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_en": "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?",
    "question_th": "ใน Crews หลังจากปี 2006 อะไรคือ Quads 1 ปีที่ 8 ที่มีอยู่ในแถวเดียวกันกับที่มีปี 9 2nd Quads ของ 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_en": "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?",
    "question_th": "สำหรับลูกเรือที่มี Year 9 2nd Quads of STM, Year 9 1st Quads of SOM และ Year 8 3rd Quads of STA อะไรคือ 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_en": "Which character was in the sexiest female category of the British Soap Awards?",
    "question_th": "ตัวละครใดอยู่ในหมวดหมู่ผู้หญิงที่เซ็กซี่ที่สุดของ 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_en": "Which film or series was nominated in the category of best fansite?",
    "question_th": "ภาพยนตร์หรือซีรีส์เรื่องใดที่ได้รับการเสนอชื่อเข้าชิงประเภทแฟนไซต์ยอดเยี่ยม?",
    "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_en": "Where does Essendon play their home games?",
    "question_th": "เอสเซนดอนเล่นเกมเหย้าที่ไหน?",
    "context": "CREATE TABLE table_name_38 (venue VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_30 WHERE venue = \"victoria park\"",
    "question_en": "What team plays their home games in Victoria Park?",
    "question_th": "ทีมใดเล่นเกมเหย้าที่วิคตอเรีย พาร์ค?",
    "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–1\" AND date = \"14 apr 2001\"",
    "question_en": "What is the total attendance with a Report of sd.hr, and a Score of 3–1, and a Date of 14 apr 2001?",
    "question_th": "ผู้เข้าร่วมทั้งหมดตามรายงาน sd.hr และคะแนน 3–1 และวันที่ 14 เมษายน 2544 เป็นเท่าใด",
    "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_en": "What is the highest production code when the writer was brian egeston after season 5?",
    "question_th": "รหัสการผลิตสูงสุดเมื่อผู้เขียนคือ Brian Egeston หลังจากซีซั่น 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_en": "What was the record when chicago was the home team?",
    "question_th": "เมื่อชิคาโกเป็นเจ้าบ้านมีสถิติอะไรบ้าง?",
    "context": "CREATE TABLE table_name_63 (record VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT SUM(crowd) FROM table_name_58 WHERE home_team = \"hawthorn\"",
    "question_en": "How many people were in the crowd when the Home Team was Hawthorn?",
    "question_th": "ตอนที่เจ้าบ้านเป็นฮอว์ธอร์นมีคนอยู่กี่คน?",
    "context": "CREATE TABLE table_name_58 (crowd INTEGER, home_team VARCHAR)"
  },
  {
    "answer": "SELECT AVG(grid) FROM table_name_66 WHERE laps = 88",
    "question_en": "What's the average Grid with Laps of 88?",
    "question_th": "กริดเฉลี่ยที่มีรอบ 88 คือเท่าไร?",
    "context": "CREATE TABLE table_name_66 (grid INTEGER, laps VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_21 WHERE time_retired = \"+6 laps\"",
    "question_en": "Which driver has a Time/Retired of +6 laps?",
    "question_th": "นักแข่งคนไหนมีเวลา/เกษียณ +6 รอบ?",
    "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_en": "What did Hawthorn score as the home team?",
    "question_th": "ฮอว์ธอร์นทำประตูให้เจ้าบ้านได้เท่าไร?",
    "context": "CREATE TABLE table_name_21 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_22 WHERE home_team = \"south melbourne\"",
    "question_en": "What team played South Melbourne at their home game?",
    "question_th": "ทีมใดเล่นเซาท์เมลเบิร์นในเกมเหย้าของพวกเขา?",
    "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_en": "What team played Geelong at their away game?",
    "question_th": "ทีมใดเล่นจีลองในเกมเยือน?",
    "context": "CREATE TABLE table_name_59 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT 1989 FROM table_name_60 WHERE 1991 = \"4r\"",
    "question_en": "What is the 1989 result of the tournament in which Katerina Maleeva finished 4r in 1991?",
    "question_th": "ผลการแข่งขันในปี 1989 ที่ Katerina Maleeva จบอันดับ 4 ในปี 1991 คืออะไร?",
    "context": "CREATE TABLE table_name_60 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1989 FROM table_name_94 WHERE 1986 = \"nh\"",
    "question_en": "What is the 1989 result of the tournament in which Katerina finished nh in 1986?",
    "question_th": "ผลการแข่งขันปี 1989 ที่ Katerina จบการแข่งขันในปี 1986 คืออะไร?",
    "context": "CREATE TABLE table_name_94 (Id VARCHAR)"
  },
  {
    "answer": "SELECT total FROM table_name_88 WHERE rank = \"did not participate\"",
    "question_en": "What is the total of the ranks that did not participate?",
    "question_th": "อันดับที่ไม่ได้เข้าร่วมมีทั้งหมดกี่อันดับ?",
    "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_en": "What is the decile for Westminster Christian School with a state integrated authority?",
    "question_th": "อะไรคือความเสื่อมทรามของโรงเรียนคริสเตียนเวสต์มินสเตอร์ที่มีอำนาจบูรณาการของรัฐ?",
    "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_en": "What are the years when the authority was state integrated and a decile of 9?",
    "question_th": "กี่ปีที่ผู้มีอำนาจถูกรวมรัฐและมีเดซิลที่ 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_en": "What did the team score while away in moorabbin oval?",
    "question_th": "ทีมทำคะแนนได้เท่าไรขณะเยือนในมูแรบบินรี?",
    "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_en": "When was the general foods pga seniors' championship tournament?",
    "question_th": "การแข่งขันชิงแชมป์ General Foods PGA Seniors จัดขึ้นเมื่อไหร่?",
    "context": "CREATE TABLE table_name_66 (date VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_name_86 WHERE record = \"3–16\"",
    "question_en": "What was the attendance on location when the record was 3–16?",
    "question_th": "ผู้เข้าร่วมที่สถานที่เป็นเท่าใดเมื่อบันทึกคือ 3–16 ปี",
    "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_en": "On what date was a two-way tie (8) the high rebound?",
    "question_th": "เสมอกันสองทาง (8) เด้งสูงวันไหน?",
    "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_en": "What is the home team score with Away team Richmond?",
    "question_th": "สกอร์เจ้าบ้านกับทีมเยือน ริชมอนด์ เป็นเท่าไหร่?",
    "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_en": "What is the smallest crowd for victoria park?",
    "question_th": "วิคตอเรีย พาร์ค มีคนจำนวนน้อยที่สุดคือเท่าไร?",
    "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_en": "what is the highest clean & jerk when total (kg) is 200.0 and snatch is more than 87.5?",
    "question_th": "ค่า Clean & Jerk สูงสุดเมื่อรวม (กก.) คือ 200.0 และค่า Snatch มากกว่า 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_en": "what is the average bodyweight when snatch is 80?",
    "question_th": "น้ำหนักตัวเฉลี่ยเมื่อ Snatch อยู่ที่ 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_en": "What did the home team score at Windy Hill?",
    "question_th": "เจ้าบ้านทำประตูที่ วินดี้ ฮิลล์ ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_92 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT MAX(crowd) FROM table_name_49 WHERE home_team = \"richmond\"",
    "question_en": "When the home team was Richmond, what was the largest crowd?",
    "question_th": "เมื่อเจ้าบ้านเป็นริชมอนด์ฝูงชนมากที่สุดคือทีมใด?",
    "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_en": "Tell me the average 1st prize for tennessee",
    "question_th": "บอกรางวัลที่ 1 เฉลี่ยของรัฐเทนเนสซีมาหน่อยสิ",
    "context": "CREATE TABLE table_name_55 (location VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_97 WHERE tournament = \"comfort classic\"",
    "question_en": "Tell me the winner of the comfort classic",
    "question_th": "บอกผู้ชนะของ 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_en": "How many percentages have losses fewer than 1 with finals appearances of 4?",
    "question_th": "มีกี่เปอร์เซ็นต์ที่ขาดทุนน้อยกว่า 1 และเข้ารอบชิงชนะเลิศ 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_en": "Name the least age for the 1st dose for 3 doses of 2-3 drops",
    "question_th": "ตั้งชื่ออายุน้อยที่สุด เข็มที่ 1 จำนวน 3 โดส ครั้งละ 2-3 หยด",
    "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érin\"",
    "question_en": "How many doses for the bacillus calmette-guérin?",
    "question_th": "Bacillus Calmette-guérin รับประทานได้กี่โดส?",
    "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_en": "What team did team carlton play while away?",
    "question_th": "ทีมคาร์ลตันเล่นทีมใดขณะเยือน?",
    "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_en": "What home team plays at Windy Hill?",
    "question_th": "ทีมเหย้าทีมไหนเล่นที่วินดี้ ฮิลล์?",
    "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_en": "What was the 2nd Party in the 1918 Election?",
    "question_th": "พรรคที่ 2 ในการเลือกตั้งปี 1918 คืออะไร?",
    "context": "CREATE TABLE table_name_66 (election VARCHAR)"
  },
  {
    "answer": "SELECT 3 AS rd_party FROM table_name_35 WHERE election = \"1922\"",
    "question_en": "What was the 3rd Party in the Election of 1922?",
    "question_th": "พรรคที่ 3 ในการเลือกตั้งปี 1922 คืออะไร?",
    "context": "CREATE TABLE table_name_35 (election VARCHAR)"
  },
  {
    "answer": "SELECT MAX(erp_w) FROM table_name_6 WHERE frequency_mhz < 91.1",
    "question_en": "What is the ERP W number where the frequency is smaller than 91.1?",
    "question_th": "หมายเลข ERP W ที่ความถี่น้อยกว่า 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_en": "What was the score of Collingwood?",
    "question_th": "คอลลิงวูด ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_69 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_83 WHERE away_team = \"south melbourne\"",
    "question_en": "Where did South Melbourne play?",
    "question_th": "เซาท์ เมลเบิร์น เล่นที่ไหน?",
    "context": "CREATE TABLE table_name_83 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_79 WHERE home_team = \"north melbourne\"",
    "question_en": "What is the venue of North Melbourne?",
    "question_th": "สนาม North Melbourne อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_79 (venue VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_20 WHERE opponent = \"coyotes\"",
    "question_en": "What was the loss from the coyotes as opponents?",
    "question_th": "อะไรคือการสูญเสียจากโคโยตี้ในฐานะคู่ต่อสู้?",
    "context": "CREATE TABLE table_name_20 (loss VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT final_episode FROM table_name_93 WHERE actor = \"rob estes\"",
    "question_en": "What was the last episode featuring Rob Estes?",
    "question_th": "ตอนสุดท้ายที่มี 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_en": "What block has a COSPAR ID of 1995-060a?",
    "question_th": "บล็อกใดมี COSPAR ID เป็น 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_en": "What rocket has a Block of block i and a COSPAR ID of 1995-060a?",
    "question_th": "จรวดใดที่มีบล็อกของบล็อก i และรหัส COSPAR ของปี 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_en": "What name has a Rocket of titan iv(401)b and a Block of block i/ii hybrid?",
    "question_th": "Rocket of titan iv(401)b และ 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_en": "What rocket has a block i/ii hybrid?",
    "question_th": "จรวดใดมีบล็อก i/ii ไฮบริด",
    "context": "CREATE TABLE table_name_30 (rocket VARCHAR, block VARCHAR)"
  },
  {
    "answer": "SELECT rocket FROM table_name_31 WHERE cospar_id = \"2002-001a\"",
    "question_en": "What rocket has a COSPAR ID of 2002-001a?",
    "question_th": "จรวดใดมี COSPAR ID เป็น 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_en": "What COSPAR ID has a Launch date/time (UTC) of 1995-11-06, 05:15:01?",
    "question_th": "COSPAR ID ใดมีวันที่/เวลาเปิดตัว (UTC) 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_en": "On 15/04/07 in the competition Super League XII, what was the score?",
    "question_th": "เมื่อวันที่ 15/04/50 ในรายการซุปเปอร์ลีก 12 สกอร์เท่าไหร่?",
    "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_en": "On 21/07/07, what was the score?",
    "question_th": "วันที่ 21/07/50 คะแนนเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_12 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_48 WHERE season = \"1907\"",
    "question_en": "What was the venue of season 1907?",
    "question_th": "สถานที่จัดงานของฤดูกาล 1907 คืออะไร?",
    "context": "CREATE TABLE table_name_48 (venue VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT bowling FROM table_name_23 WHERE season = \"1907\"",
    "question_en": "What is the bowling score of season 1907?",
    "question_th": "คะแนนโบว์ลิ่งของฤดูกาล 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_en": "Which season did Tich Freeman play against opponent V Warwickshire?",
    "question_th": "ทิช ฟรีแมน เล่นกับคู่ต่อสู้ วี วอร์ริคเชียร์ ในฤดูกาลใด",
    "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_en": "What was South Melbourne's score as the home team?",
    "question_th": "เซาธ์ เมลเบิร์น ของเจ้าบ้านมีสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_45 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team AS score FROM table_name_4 WHERE home_team = \"essendon\"",
    "question_en": "How many points did the home team Essendon score?",
    "question_th": "เอสเซนดอนเจ้าบ้านทำคะแนนได้กี่แต้ม?",
    "context": "CREATE TABLE table_name_4 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT character FROM table_name_91 WHERE episodes > 22",
    "question_en": "What character is in over 22 episodes?",
    "question_th": "ตัวละครใดมีมากกว่า 22 ตอน?",
    "context": "CREATE TABLE table_name_91 (character VARCHAR, episodes INTEGER)"
  },
  {
    "answer": "SELECT MIN(episodes) FROM table_name_35 WHERE actor = \"anabel barnston\"",
    "question_en": "What is the lowest number of episodes for anabel barnston?",
    "question_th": "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_en": "What character is played by dani harmer for under 23 episodes?",
    "question_th": "ดานี ฮาร์เมอร์ รับบทเป็นตัวละครใดในความยาวต่ำกว่า 23 ตอน",
    "context": "CREATE TABLE table_name_51 (character VARCHAR, episodes VARCHAR, actor VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(episodes) FROM table_name_35 WHERE duration = \"3\"",
    "question_en": "How many episodes have a duration of 3?",
    "question_th": "มีทั้งหมดกี่ตอนคะ 3 ตอนคะ?",
    "context": "CREATE TABLE table_name_35 (episodes VARCHAR, duration VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_7 WHERE home_team = \"collingwood\"",
    "question_en": "What is the name of the away team who play Collingwood?",
    "question_th": "ทีมเยือนที่เล่นคอลลิงวูดชื่ออะไร?",
    "context": "CREATE TABLE table_name_7 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_75 WHERE home_team = \"collingwood\"",
    "question_en": "What date did Collingwood play as the home team?",
    "question_th": "คอลลิงวูดเล่นเป็นเจ้าบ้านวันที่เท่าไหร่?",
    "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_en": "What is the most recent year of disaffiliation of a CHCH-TV station that affiliated after 2001?",
    "question_th": "ปีล่าสุดของการแยกทางกับสถานี CHCH-TV ที่เป็นพันธมิตรหลังปี 2544 คือปีใด",
    "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_en": "What is the earliest year of disaffiliation of a CHCH-TV station, licensed in Hamilton, Ontario?",
    "question_th": "ปีแรกสุดของการยกเลิกความร่วมมือกับสถานี CHCH-TV ที่ได้รับอนุญาตในเมืองแฮมิลตัน รัฐออนแทรีโอคือปีใด",
    "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_en": "How many bronze medals did west germany win when they had less than 2 silver medals?",
    "question_th": "เยอรมนีตะวันตกได้เหรียญทองแดงกี่เหรียญในเมื่อพวกเขามีเหรียญเงินน้อยกว่า 2 เหรียญ",
    "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_en": "How many bronze medals were won when the total was larger than 2 and the more than 2 gold medals were won?",
    "question_th": "เมื่อรวมมากกว่า 2 เหรียญและได้รับเหรียญทองมากกว่า 2 เหรียญ จะได้รับเหรียญทองแดงทั้งหมดกี่เหรียญ?",
    "context": "CREATE TABLE table_name_70 (bronze INTEGER, total VARCHAR, gold VARCHAR)"
  },
  {
    "answer": "SELECT SUM(gold) FROM table_name_62 WHERE bronze > 2",
    "question_en": "How many gold medals were won when more than 2 bronze medals were won?",
    "question_th": "เมื่อได้มากกว่า 2 เหรียญทองแดง จะได้รับเหรียญทองกี่เหรียญ?",
    "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_en": "What was the PI GP fpr pick# 235 for Rd# larger than 12?",
    "question_th": "PI GP fpr เลือก # 235 สำหรับ Rd # ที่มีขนาดใหญ่กว่า 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_en": "What was the largest crowd when South Melbourne was the away team?",
    "question_th": "เซาท์เมลเบิร์นเป็นทีมเยือนมีผู้ชมมากที่สุดคือทีมใด?",
    "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_en": "What is richmond's scores when they are the home team?",
    "question_th": "ริชมอนด์สกอร์เป็นไงเมื่อเจ้าบ้าน?",
    "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_en": "What is south melbourne's scores when they are the away team?",
    "question_th": "เซาท์ เมลเบิร์น สกอร์เป็นไงเมื่อเป็นทีมเยือน?",
    "context": "CREATE TABLE table_name_32 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_1 WHERE venue = \"windy hill\"",
    "question_en": "What dates were the matches at windy hill?",
    "question_th": "แข่งขันที่ 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_en": "What is the average number of laps for the driver Piero Taruffi?",
    "question_th": "จำนวนรอบเฉลี่ยของนักแข่ง 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_en": "Which driver has 12 laps and a grid of less than 10?",
    "question_th": "นักแข่งคนไหนมี 12 รอบและตารางน้อยกว่า 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_en": "What is the Illustration with a Design of tim nokes, and a First Day Cover Cancellation with calgary, alberta?",
    "question_th": "ภาพประกอบที่มีการออกแบบของ tim nokes และการยกเลิกปกวันแรกกับคาลการี อัลเบอร์ตาคืออะไร?",
    "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_en": "What is the Date of Issue with a Theme with mental health?",
    "question_th": "วันที่ออกหัวข้อเกี่ยวกับสุขภาพจิตคือเมื่อใด",
    "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_en": "What is the Theme with a Design with sputnik design partners?",
    "question_th": "ธีมที่มีการออกแบบร่วมกับพันธมิตรการออกแบบสปุตนิกคืออะไร",
    "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_en": "What is the Paper Type with a First Day Cover Cancellation with ottawa, on?",
    "question_th": "ประเภทกระดาษที่มีการยกเลิกปกวันแรกกับออตตาวาคืออะไร?",
    "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_en": "What is the Paper Type with an Illustration with martin dee, ubc public affairs?",
    "question_th": "ประเภทกระดาษที่มีภาพประกอบของ 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_en": "What is the Theme with a Paper Type of tullis russell coatings, and a Date with Issue of 1 october 2008?",
    "question_th": "ธีมที่มีประเภทกระดาษของการเคลือบทัลลิสรัสเซลล์ และวันที่ออกวันที่ 1 ตุลาคม 2551 คืออะไร",
    "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_en": "What is the tie number when the away team is Lewes?",
    "question_th": "เลขเสมอกันเมื่อทีมเยือนคือลูอิส?",
    "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_en": "What is the away team when the home team is Cheltenham Town?",
    "question_th": "ทีมเยือนจะเป็นอย่างไรเมื่อเจ้าบ้านคือเชลท์แน่มทาวน์?",
    "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_en": "What is the home team of the game with tie number 34?",
    "question_th": "เจ้าบ้านของเจ้าบ้านเสมอหมายเลข 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_en": "What is the away team of the game with tie number 31?",
    "question_th": "ทีมเยือนของเกมนี้เสมอกันหมายเลข 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_en": "How many goals for were scored for the team(s) that won fewer than 4 games and lost more than 6?",
    "question_th": "มีกี่ประตูที่ทำได้สำหรับทีมที่ชนะน้อยกว่า 4 เกมและแพ้มากกว่า 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_en": "What is the average losses for the team(s) that played more than 8 games?",
    "question_th": "อะไรคือความสูญเสียโดยเฉลี่ยของทีมที่เล่นมากกว่า 8 เกม?",
    "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_en": "What is the fleet size of the Vanguard 0-6-0dh class?",
    "question_th": "กองเรือของ Vanguard 0-6-0dh มีขนาดเท่าใด?",
    "context": "CREATE TABLE table_name_73 (fleet_size VARCHAR, class VARCHAR)"
  },
  {
    "answer": "SELECT introduced FROM table_name_64 WHERE type = \"electro-diesel locomotive\"",
    "question_en": "What is the year of introduction for the Electro-Diesel locomotive?",
    "question_th": "รถจักรไฟฟ้าดีเซลเปิดตัวปีใด",
    "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_en": "What is the average fleet size for the Shunter type introduced in 1959?",
    "question_th": "ขนาดกองเรือเฉลี่ยสำหรับประเภท Shunter ที่เปิดตัวในปี 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_en": "What is the smallest fleet size with a type of shunter introduced in 1953?",
    "question_th": "ขนาดกองเรือที่เล็กที่สุดพร้อมประเภทของเครื่องสับเปลี่ยนที่เปิดตัวในปี 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_en": "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?",
    "question_th": "รายการใดที่ออกอากาศเมื่อวันที่ 24 มกราคม พ.ศ. 2551 โดยมีเรตติ้งมากกว่า 3.6 มีผู้ชมน้อยที่สุด มีผู้ชมกี่คนในล้าน?",
    "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_en": "Which round has a car with a chassis of sf01?",
    "question_th": "รอบไหนมีรถแชสซี 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_en": "Which country has swimsuit more than 9.46 and interview more than 9.22 with average less than 9.6?",
    "question_th": "ประเทศใดมีชุดว่ายน้ำมากกว่า 9.46 และสัมภาษณ์มากกว่า 9.22 โดยมีค่าเฉลี่ยน้อยกว่า 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_en": "Which is the total number of evening gowns for swimsui less than 9.36 and average less than 9.23?",
    "question_th": "จำนวนชุดราตรีสำหรับว่ายน้ำน้อยกว่า 9.36 และเฉลี่ยน้อยกว่า 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_en": "Name the lowest average for interview more than 9.57 and delaware and evening gown more than 9.77",
    "question_th": "ระบุค่าเฉลี่ยต่ำสุดสำหรับการสัมภาษณ์มากกว่า 9.57 และเดลาแวร์และชุดราตรีมากกว่า 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_en": "Name the sum of swimsuit for average more than 9.23 for delaware for interview more than 9.73",
    "question_th": "ระบุผลรวมชุดว่ายน้ำ เฉลี่ยมากกว่า 9.23 สำหรับเดแวร์ สัมภาษณ์มากกว่า 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_en": "Name the sum of average for interview more than 9.57 and swimsuit more than 9.65",
    "question_th": "ระบุผลรวมเฉลี่ยสัมภาษณ์มากกว่า 9.57 และชุดว่ายน้ำมากกว่า 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_en": "Name the evening gown for swimsuit more than 9.51 for maryland",
    "question_th": "ตั้งชื่อชุดราตรีชุดว่ายน้ำมากกว่า 9.51 สำหรับแมรีแลนด์",
    "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_en": "What points awarded are higher than 6 but smaller than 9",
    "question_th": "คะแนนที่ได้รับนั้นสูงกว่า 6 แต่น้อยกว่า 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_en": "In the Canadian Grand Prix, what tyre was used when Jacky Ickx held pole position?",
    "question_th": "ในการแข่งขัน Canadian Grand Prix Jacky Ickx ดำรงตำแหน่งโพลโพซิชั่นใช้ยางอะไร",
    "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_en": "When Jackie Stewart had the fastest lap and Jochen Rindt held the pole position with a D tyre, what was the circuit?",
    "question_th": "เมื่อ Jackie Stewart ทำเวลาต่อรอบได้เร็วที่สุด และ Jochen Rindt ขึ้นโพลโพซิชั่นด้วยยาง D วงจรจะเป็นเช่นไร?",
    "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_en": "What was the circuit when Jochen Rindt won?",
    "question_th": "วงจรที่ Jochen Rindt ชนะเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_28 (circuit VARCHAR, winning_driver VARCHAR)"
  },
  {
    "answer": "SELECT tyre FROM table_name_81 WHERE circuit = \"kyalami\"",
    "question_en": "What tyre was used in Kyalami?",
    "question_th": "Kyalami ใช้ยางอะไร?",
    "context": "CREATE TABLE table_name_81 (tyre VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_11 WHERE grid = 10",
    "question_en": "Which driver had a grid number of 10?",
    "question_th": "นักแข่งคนไหนมีเลขตารางเป็น 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_en": "Which constructor had a grid number of less than 3 and where the Time/Retired was 1:34:31.522?",
    "question_th": "ตัวสร้างใดมีจำนวนตารางน้อยกว่า 3 และเวลา/เกษียณคือ 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_en": "Which constructor had a Time/Retired of collision, where the grid number was less than 18 and Nick Heidfeld was the driver?",
    "question_th": "คอนสตรัคเตอร์คนใดมีเวลา/เกษียณของการชน โดยที่หมายเลขกริดน้อยกว่า 18 และนิค ไฮด์เฟลด์เป็นคนขับ",
    "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_en": "What was the record on May 20?",
    "question_th": "บันทึกเมื่อวันที่ 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_en": "What is the height in feet of player number 24?",
    "question_th": "นักเตะหมายเลข 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_en": "Who is the school, club, team or country that the Rockets played for 1967-68?",
    "question_th": "โรงเรียน สโมสร ทีม หรือประเทศที่ร็อคเก็ตส์เล่นในปี 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_en": "Which player has a Position of infielder, and a Hometown of atlanta, ga?",
    "question_th": "ผู้เล่นคนไหนมีตำแหน่งอินฟิลเดอร์ และมีบ้านเกิดที่แอตแลนตา จอร์เจีย?",
    "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_en": "What MLB draft has a School of green valley high school?",
    "question_th": "MLB ฉบับร่างใดมี 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_en": "Which position has a School of green valley high school?",
    "question_th": "ตำแหน่งใดมีโรงเรียนมัธยมปลาย Green Valley?",
    "context": "CREATE TABLE table_name_26 (position VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_61 WHERE player = \"chad hutchinson\"",
    "question_en": "Which position has a Player of chad hutchinson?",
    "question_th": "นักเตะ แชด ฮัทชินสัน มีตำแหน่งไหน?",
    "context": "CREATE TABLE table_name_61 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_71 WHERE school = \"petal high school\"",
    "question_en": "Which position has a School of petal high school?",
    "question_th": "ตำแหน่งใดมีโรงเรียนมัธยมปลายกลีบดอก?",
    "context": "CREATE TABLE table_name_71 (position VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_23 WHERE week = 8",
    "question_en": "What is the date of week 8?",
    "question_th": "สัปดาห์ที่ 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_en": "Which week has the lowest attendance of 48,102?",
    "question_th": "สัปดาห์ใดมีผู้เข้าร่วมน้อยที่สุดที่ 48,102?",
    "context": "CREATE TABLE table_name_4 (week INTEGER, attendance VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_68 WHERE runs = \"144\"",
    "question_en": "What was the year with runs of 144?",
    "question_th": "ปีที่วิ่งได้ 144 คือปีอะไร?",
    "context": "CREATE TABLE table_name_68 (year VARCHAR, runs VARCHAR)"
  },
  {
    "answer": "SELECT city_country FROM table_name_51 WHERE venue = \"adelaide oval\"",
    "question_en": "Name the place where adelaide oval is",
    "question_th": "ตั้งชื่อสถานที่ซึ่งเป็นที่ตั้งของวงรีแอดิเลด",
    "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_en": "Name the average zone for waddon marsh tram stop",
    "question_th": "ตั้งชื่อโซนเฉลี่ยสำหรับป้ายรถราง Waddon Marsh",
    "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_en": "Name the stations for zone 5 and 1 platform by tramlink",
    "question_th": "ตั้งชื่อสถานีสำหรับชานชาลาโซน 5 และ 1 ด้วยรถรางเชื่อม",
    "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_en": "Name the total number of platforms that waddon railway station has",
    "question_th": "ระบุจำนวนชานชาลาทั้งหมดที่สถานีรถไฟ Waddon มี",
    "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_en": "Name the average zone for waddon railway station and has more than 2 platforms",
    "question_th": "ตั้งชื่อโซนเฉลี่ยของสถานีรถไฟ Waddon และมีมากกว่า 2 ชานชาลา",
    "context": "CREATE TABLE table_name_54 (zone INTEGER, stations VARCHAR, platforms VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_20 WHERE opponent = \"bob ostovich\"",
    "question_en": "What is Bob Ostovich's opponents record?",
    "question_th": "บันทึกคู่ต่อสู้ของ Bob Ostovich คืออะไร?",
    "context": "CREATE TABLE table_name_20 (record VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_72 WHERE opponent = \"jimmy smith\"",
    "question_en": "What location is Jimmy Smith fighting in?",
    "question_th": "Jimmy Smith ต่อสู้ในสถานที่ใด",
    "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_en": "What is the away score with a record of 7-4, win% of 0.637, and 2010 season?",
    "question_th": "สกอร์ทีมเยือนด้วยสถิติ 7-4, ชนะ% 0.637 และฤดูกาล 2010 เป็นเท่าไหร่?",
    "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_en": "What was the lowest win% with an away score of 3-2 in 2011 season?",
    "question_th": "เปอร์เซ็นต์การชนะต่ำสุดด้วยสกอร์ทีมเยือน 3-2 ในฤดูกาล 2011 คืออะไร?",
    "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_en": "What is the lowest win% in the 1999-2013 season?",
    "question_th": "เปอร์เซ็นต์การชนะต่ำสุดในฤดูกาล 1999-2013 คือเท่าใด?",
    "context": "CREATE TABLE table_name_66 (win__percentage INTEGER, season VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_99 WHERE year = 1925",
    "question_en": "What's the record during 1925?",
    "question_th": "บันทึกในช่วงปี 1925 คืออะไร?",
    "context": "CREATE TABLE table_name_99 (record VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_name_2 WHERE event = \"discus throw\"",
    "question_en": "What is the earliest year that the discus throw event occur?",
    "question_th": "กิจกรรมขว้างจักรเกิดขึ้นในปีแรกสุดคือปีใด?",
    "context": "CREATE TABLE table_name_2 (year INTEGER, event VARCHAR)"
  },
  {
    "answer": "SELECT haydon FROM table_name_68 WHERE ben_tahir = \"33\"",
    "question_en": "What Haydon had a 33 Ben-Tahir?",
    "question_th": "Haydon มี 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_en": "What Gauthier had a 15 Liscumb?",
    "question_th": "Gauthier คนใดมี 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_en": "What Ben-Tahir has a 6 Liscumb and 3 Libweshya?",
    "question_th": "Ben-Tahir ใดมี 6 Liscumb และ 3 Libwesya?",
    "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_en": "What Bello has a 27 Liscumb and 6539 Libweshya?",
    "question_th": "Bello ตัวใดมี 27 Liscumb และ 6539 Libwesya?",
    "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_en": "What is the Furtenbacher with a 6 Liscumb, 10 Lawrance, and a 24 Ben-Tahir?",
    "question_th": "Furtenbacher ที่มี 6 Liscumb, 10 Lawrance และ 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_en": "What is the Ben-Tahir with a 3269 Doucet?",
    "question_th": "Ben-Tahir กับ 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_en": "How many attended the game that was a Loss of k. gross (1-1)?",
    "question_th": "มีกี่คนที่เข้าร่วมเกมที่แพ้เค ขั้นต้น (1-1)?",
    "context": "CREATE TABLE table_name_68 (attendance INTEGER, loss VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_23 WHERE tie_no = \"65\"",
    "question_en": "What is the score of the game with tie number 65?",
    "question_th": "สกอร์ของเกมเสมอกันที่ 65 คืออะไร?",
    "context": "CREATE TABLE table_name_23 (score VARCHAR, tie_no VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_91 WHERE attendance = \"160\"",
    "question_en": "Which Home team had attendance 160?",
    "question_th": "ทีมเจ้าบ้านใดมีผู้เข้าชม 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_en": "What is the record of the game with a decision of Ellis and Vancouver as the visitor?",
    "question_th": "สถิติของเกมเป็นอย่างไรด้วยการตัดสินของเอลลิสและแวนคูเวอร์ในฐานะผู้มาเยือน?",
    "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_en": "What is the record of the game with Mason as the decision and Nashville as the home team?",
    "question_th": "สถิติของเกมโดยมีเมสันเป็นผู้ตัดสินและแนชวิลล์เป็นเจ้าบ้านเป็นอย่างไร?",
    "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_en": "What is the date with Ellis as the decision and St. Louis as the visitor?",
    "question_th": "วันที่เอลลิสเป็นผู้ตัดสินใจ และเซนต์หลุยส์เป็นผู้มาเยือนคือวันที่ใด",
    "context": "CREATE TABLE table_name_27 (date VARCHAR, decision VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_67 WHERE record = \"31–31–8\"",
    "question_en": "Which visiting team had a record of 31–31–8?",
    "question_th": "ทีมเยือนทีมใดมีสถิติ 31–31–8?",
    "context": "CREATE TABLE table_name_67 (visitor VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_name_45 WHERE player = \"jeff lebo\"",
    "question_en": "Where is Jeff Lebo's hometown?",
    "question_th": "บ้านเกิดของ Jeff Lebo อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_45 (hometown VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_49 WHERE hometown = \"houston, tx\"",
    "question_en": "Who is the player from Houston, TX?",
    "question_th": "ใครคือผู้เล่นจากฮูสตัน เท็กซัส?",
    "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_en": "What is the earliest year with an entry from Rotary Watches Stanley BRM and a BRM P207 with more than 0 points?",
    "question_th": "ปีแรกสุดที่มีรายการจาก Rotary Watches Stanley BRM และ BRM P207 ที่มีมากกว่า 0 คะแนนคือปีใด",
    "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_en": "How many points were there in a year earlier than 1977, a Cosworth V8 engine, and an entry from HB Bewaking alarm systems?",
    "question_th": "ในหนึ่งปีก่อนหน้าปี 1977 มีกี่คะแนน เครื่องยนต์ Cosworth V8 และการเข้ามาจากระบบเตือนภัย HB Bewaking",
    "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_en": "What is the report for the race of Argentine Grand Prix?",
    "question_th": "รายงานผลการแข่งขัน 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_en": "What is the Tyre when Jerry Hoyt was the pole position?",
    "question_th": "ยางคืออะไรเมื่อ Jerry Hoyt ดำรงตำแหน่งโพล?",
    "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_en": "Who was the constructor when Eugenio Castellotti was the pole position and the race had a C tyre?",
    "question_th": "ใครคือผู้สร้างเมื่อ Eugenio Castellotti ดำรงตำแหน่งโพลโพซิชั่นและการแข่งขันใช้ยาง C?",
    "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_en": "What was the fastest lap time at the British Grand Prix with Mercedes as the constructor?",
    "question_th": "เวลาต่อรอบที่เร็วที่สุดในการแข่งขัน British Grand Prix โดยมี Mercedes เป็นคนสร้างคืออะไร?",
    "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_en": "Who scored the High points in the game with High rebounds by Nick Collison (14)?",
    "question_th": "ใครทำคะแนนสูงสุดในเกมด้วยการรีบาวด์สูงโดย 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_en": "What is henry transfer fee at fcbarcelona.cat in fra?",
    "question_th": "ค่าธรรมเนียมการโอนของเฮนรี่ที่ fcbarcelona.cat เป็นเท่าไหร่?",
    "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_en": "What was the Grid with a hydraulics time/required?",
    "question_th": "กริดที่มีเวลา/จำเป็นต้องใช้ไฮดรอลิกคืออะไร?",
    "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_en": "What is the grid with a Toyota constructor and +1:09.718 as time/retired?",
    "question_th": "ตารางที่มีตัวสร้างของ Toyota และ +1:09.718 ตามเวลา/เลิกใช้คืออะไร",
    "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_en": "What is the grid with 71 laps and the driver, Allan McNish.",
    "question_th": "ตารางการแข่งขัน 71 รอบเป็นอย่างไร และนักแข่ง อัลลัน แม็คนิช",
    "context": "CREATE TABLE table_name_55 (grid VARCHAR, laps VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT laps FROM table_name_60 WHERE driver = \"jacques villeneuve\"",
    "question_en": "How many laps did Jacques Villeneuve have?",
    "question_th": "Jacques Villeneuve มีกี่รอบ?",
    "context": "CREATE TABLE table_name_60 (laps VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_50 WHERE driver = \"heinz-harald frentzen\"",
    "question_en": "What is the constructor of the driver Heinz-Harald Frentzen?",
    "question_th": "คอนสตรัคเตอร์ของไดรเวอร์ 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_en": "Tell me the rank for year of 2012 and out of larger than 176",
    "question_th": "บอกอันดับประจำปี 2555 และจากอันดับมากกว่า 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_en": "Tell me the year for rank more than 35 and out of 167",
    "question_th": "บอกปีอันดับมากกว่า 35 และจาก 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_en": "How many UCI points did Rabobank score?",
    "question_th": "Rabobank ได้คะแนน UCI กี่คะแนน?",
    "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_en": "What team in France had 15 UCi points?",
    "question_th": "ทีมใดในฝรั่งเศสมี 15 คะแนน UCI?",
    "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_en": "Which country has assets of x, an inception of 2007, and an abbreviation of adic?",
    "question_th": "ประเทศใดมีทรัพย์สินของ x ก่อตั้งปี 2550 และตัวย่อของ 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_en": "What's the abbreviation for libya?",
    "question_th": "อักษรย่อของลิเบียคืออะไร?",
    "context": "CREATE TABLE table_name_88 (abbreviation VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT origin FROM table_name_1 WHERE abbreviation = \"atf\"",
    "question_en": "What's the origin for the country abbreviated atf?",
    "question_th": "ประเทศชื่อย่อ 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_en": "What's the inception for the country with 25.5 billion USD in assets and an abbreviation of psf?",
    "question_th": "จุดเริ่มต้นของประเทศที่มีสินทรัพย์ 25.5 พันล้านดอลลาร์สหรัฐ และตัวย่อของ 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_en": "Which country has an abbreviation of kia?",
    "question_th": "ประเทศใดมีอักษรย่อว่า 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_en": "What's the abbreviation for the country with an inception of 1999 and US$Billion assets of 7.1?",
    "question_th": "อักษรย่อของประเทศที่มีการเริ่มต้นปี 1999 และมีสินทรัพย์ 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_en": "What was the opponent of the home team of essendon?",
    "question_th": "คู่ต่อสู้ของเจ้าบ้านเอสเซนดอนคืออะไร?",
    "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_en": "Tell me the cast for b. reeves eason and joseph kane",
    "question_th": "บอกนักแสดงของบีหน่อยสิ รีฟส์ อีสัน และโจเซฟ เคน",
    "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_en": "I want the director for heroes of the wild",
    "question_th": "ฉันต้องการผู้กำกับสำหรับ 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_en": "I want the year for the three musketeers",
    "question_th": "ฉันต้องการปีของสามทหารเสือ",
    "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_en": "I want the cast for director of colbert clark and armand schaefer for burn 'em up barnes",
    "question_th": "ฉันอยากได้นักแสดงของผู้กำกับโคลเบิร์ต คลาร์ก และอาร์มันด์ เชฟเฟอร์จาก 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_en": "How large was the crowd at the Kardinia Park venue games?",
    "question_th": "ฝูงชนที่สนามแข่งขัน Kardinia Park มีมากขนาดไหน?",
    "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_en": "What was the score of the Home team that played against Carlton's Away game?",
    "question_th": "เจ้าบ้านที่เล่นกับเกมเยือนของคาร์ลตันมีสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_3 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT pick FROM table_name_42 WHERE player = \"mark hayes\"",
    "question_en": "What was the pick number when mark hayes was drafted?",
    "question_th": "หมายเลขที่เลือกเมื่อมาร์ค เฮย์สถูกร่างคือหมายเลขใด",
    "context": "CREATE TABLE table_name_42 (pick VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT school_club_team FROM table_name_93 WHERE pick = 63",
    "question_en": "Which team had a pick of 63?",
    "question_th": "ทีมไหนเลือกได้ 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_en": "Which team had a position of linebacker with a pick smaller of 288?",
    "question_th": "ทีมใดมีตำแหน่งไลน์แบ็คเกอร์ที่มีตัวเลือกน้อยกว่า 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_en": "What player did louisville pick when the round was below 8?",
    "question_th": "หลุยส์วิลล์เลือกผู้เล่นคนใดเมื่อรอบต่ำกว่า 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–6, 6–3, 6–0\"",
    "question_en": "What was the outcome of the game that had a score of 3–6, 6–3, 6–0?",
    "question_th": "ผลลัพธ์ของเกมที่มีคะแนน 3–6, 6–3, 6–0 เป็นอย่างไรบ้าง",
    "context": "CREATE TABLE table_name_81 (outcome VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_77 WHERE score = \"7–5, 6–3\" AND date = \"27 july 2003\"",
    "question_en": "On 27 July 2003 what was the outcome of the game that resulted in a score of 7–5, 6–3?",
    "question_th": "วันที่ 27 กรกฎาคม พ.ศ. 2546 ผลการแข่งขันที่ได้คะแนนเป็น 7–5, 6–3 เป็นอย่างไรบ้าง?",
    "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á\"",
    "question_en": "What was the final score of the game against Lenka Novotná?",
    "question_th": "คะแนนสุดท้ายของเกมกับเลนก้า โนโวตนาคือเท่าไร?",
    "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–4, 6–4\"",
    "question_en": "In the surface of clay who was the opponent in the game resulting in a score of 6–4, 6–4?",
    "question_th": "บนพื้นดินเหนียวใครเป็นคู่ต่อสู้ในเกมส่งผลให้สกอร์ 6–4, 6–4?",
    "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_en": "What was the final score of the game against opponent Ana Ivanovic?",
    "question_th": "คะแนนสุดท้ายของเกมกับคู่ต่อสู้ อนา อิวาโนวิช คืออะไร?",
    "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_en": "What is the total grid number where the time/retired is +58.182 and the lap number is less than 67?",
    "question_th": "หมายเลขกริดรวมโดยเวลา/เกษียณคือ +58.182 และหมายเลขรอบน้อยกว่า 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_en": "What horse was induced in 2011 with a sire of cowboy p-12?",
    "question_th": "ม้าตัวไหนที่ถูกเลี้ยงในปี 2554 ด้วยพ่อพันธุ์คาวบอย 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_en": "Who was the home team that played against hawthorn?",
    "question_th": "ทีมเจ้าบ้านที่เล่นกับฮอว์ธอร์นคือใคร?",
    "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_en": "Who was the away team playing against collingwood?",
    "question_th": "ทีมเยือนเล่นกับคอลลิงวูดคือใคร?",
    "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_en": "What was the biggest crowd at punt road oval?",
    "question_th": "ฝูงชนที่ใหญ่ที่สุดที่ 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_en": "Who is the home team based at windy hill?",
    "question_th": "ทีมเหย้าที่วินด์ดี้ฮิลล์คือใคร?",
    "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_en": "What is the low gold total for nations with under 23 silvers, ranked beloe 5, and 6 bronzes?",
    "question_th": "ทองคำรวมที่ต่ำสำหรับประเทศที่มีเหรียญเงินต่ำกว่า 23 เหรียญเงิน อันดับที่ต่ำกว่า 5 และ 6 เหรียญทองแดงเป็นเท่าใด",
    "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_en": "What is the high silver total for nations with 3 golds and under 5 bronzes?",
    "question_th": "เงินรวมที่สูงสำหรับประเทศที่มี 3 เหรียญทองและต่ำกว่า 5 เหรียญทองแดงคือเท่าใด",
    "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_en": "How many silvers for nations with over 3 golds and under 6 bronzes?",
    "question_th": "ชาติที่มีมากกว่า 3 เหรียญทองและต่ำกว่า 6 เหรียญทองแดงมีกี่เหรียญเงิน?",
    "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_en": "What was the smallest crowd in games at the corio oval?",
    "question_th": "ฝูงชนที่เล็กที่สุดในเกมที่ 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_en": "In the match where Melbourne was the away team, how much did they score?",
    "question_th": "แมตช์ที่เมลเบิร์นเป็นทีมเยือนทำสกอร์ได้เท่าไหร่?",
    "context": "CREATE TABLE table_name_52 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT decision FROM table_name_99 WHERE visitor = \"buffalo\"",
    "question_en": "Who had the decision when buffalo was the visitor?",
    "question_th": "ใครเป็นผู้ตัดสินใจเมื่อควายเป็นผู้มาเยือน?",
    "context": "CREATE TABLE table_name_99 (decision VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_85 WHERE away_team = \"north melbourne\"",
    "question_en": "Tell me the venue for north melbourne",
    "question_th": "บอกสถานที่ทางตอนเหนือของเมลเบิร์นหน่อยสิ",
    "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_en": "What name has a listed of 03/31/1989 in spartanburg county?",
    "question_th": "ชื่ออะไรมีรายการของ 03/31/1989 ในเขตสปาร์ตันเบิร์ก?",
    "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_en": "What date was proposed when the listed date was 12/16/1994 in the County of beaufort?",
    "question_th": "วันที่เสนอคือวันที่ 16/12/1994 ในเขตโบฟอร์ต",
    "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_en": "What name was listed 02/21/1990, and a CERCLIS ID of scd980844005?",
    "question_th": "มีชื่ออะไรบ้างเมื่อวันที่ 21/02/1990 และรหัส CERCLIS เป็น 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_en": "What county has a CERCLIS ID of scd037405362?",
    "question_th": "เคาน์ตีใดมีรหัส CERCLIS เป็น 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_en": "What is the name for Charleston County with a CERCLIS ID of scd980711279?",
    "question_th": "ชื่อของชาร์ลสตันเคาน์ตี้ซึ่งมีรหัส CERCLIS เป็น 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_en": "What is the name for the listed date of 11/21/1989?",
    "question_th": "ชื่อของวันที่จดทะเบียนในวันที่ 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_en": "Which category was Gene Barry nominated in?",
    "question_th": "Gene Barry ได้รับการเสนอชื่อเข้าชิงในประเภทใด",
    "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_en": "What year was the Drama Desk award won by nominee George Hearn?",
    "question_th": "รางวัล Drama Desk ได้รับรางวัลจากผู้ได้รับการเสนอชื่อเข้าชิงรางวัล 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_en": "What is the time/retired for grid 5?",
    "question_th": "เวลา / เกษียณสำหรับกริด 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_en": "When was the event that had Liberia as an opponent and resulted in a 1-0 score?",
    "question_th": "เหตุการณ์ที่มีไลบีเรียเป็นคู่ต่อสู้และสกอร์ 1-0 คือเมื่อใด?",
    "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_en": "When was the 2014 World Cup Qualification in Kampala that had Angola as an opponent",
    "question_th": "ฟุตบอลโลก 2014 รอบคัดเลือกที่กัมปาลาคือเมื่อใดที่มีแองโกลาเป็นคู่ต่อสู้",
    "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_en": "Who was the Europe/Africa group i's opponent?",
    "question_th": "ใครคือคู่ต่อสู้ของกลุ่มยุโรป/แอฟริกา i?",
    "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_en": "What zone was the Semifinal game played against Israel with Anna Smashnova as the opponent?",
    "question_th": "เกมรอบรองชนะเลิศเล่นกับอิสราเอลในโซนใดโดยมี Anna Smashnova เป็นคู่ต่อสู้",
    "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_en": "What surface was played on against Shahar Pe'er?",
    "question_th": "พื้นผิวใดที่เล่นกับ 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_en": "I want the years for marathon distance and wins of 3",
    "question_th": "ฉันต้องการปีสำหรับระยะมาราธอนและชนะ 3",
    "context": "CREATE TABLE table_name_15 (years VARCHAR, distance VARCHAR, wins VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_72 WHERE athlete = \"ziedonis zaļkalns\"",
    "question_en": "Name the country for athlete of ziedonis zaļkalns",
    "question_th": "ตั้งชื่อประเทศสำหรับนักกีฬาของซีโดนิส ซัคคาล์น",
    "context": "CREATE TABLE table_name_72 (country VARCHAR, athlete VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_12 WHERE result = \"l 49–21\"",
    "question_en": "I want the attendance which has a result of l 49–21",
    "question_th": "ฉันต้องการเข้าร่วมซึ่งมีผล l 49–21",
    "context": "CREATE TABLE table_name_12 (attendance VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_12 WHERE result = \"l 26–3\"",
    "question_en": "Tell me the attendance with a result of l 26–3",
    "question_th": "บอกจำนวนผู้เข้าร่วมด้วยผล l 26–3 ให้ฉันทราบ",
    "context": "CREATE TABLE table_name_12 (attendance VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT MIN(week) FROM table_name_26 WHERE date = \"december 19, 2004\"",
    "question_en": "I want to know the lowest week with a date of december 19, 2004",
    "question_th": "ฉันต้องการทราบสัปดาห์ต่ำสุดคือวันที่ 19 ธันวาคม 2547",
    "context": "CREATE TABLE table_name_26 (week INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_name_81 WHERE team = \"new orleans\"",
    "question_en": "What is the attendance of the location where New Orleans's team plays?",
    "question_th": "สถานที่ซึ่งทีมของนิวออร์ลีนส์ลงเล่นจะเข้าชมได้แค่ไหน?",
    "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_en": "Which team has the high points of Raymond Felton (26)?",
    "question_th": "ทีมไหนมีแต้มสูงเท่ากับ เรย์มอนด์ เฟลตัน (26)?",
    "context": "CREATE TABLE table_name_30 (team VARCHAR, high_points VARCHAR)"
  },
  {
    "answer": "SELECT time_retired FROM table_name_48 WHERE grid = 7",
    "question_en": "What is the time of the driver on grid 7?",
    "question_th": "คนขับในตารางที่ 7 กี่โมง?",
    "context": "CREATE TABLE table_name_48 (time_retired VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_75 WHERE grid = 2",
    "question_en": "Which Constructor has grid 2?",
    "question_th": "ตัวสร้างตัวใดมีกริด 2",
    "context": "CREATE TABLE table_name_75 (constructor VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT MAX(grid) FROM table_name_1 WHERE laps = 55",
    "question_en": "What is the highest grid that has 55 laps?",
    "question_th": "ตารางสูงสุดที่มี 55 รอบคืออะไร?",
    "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_en": "Who was Richmond's away team opponent?",
    "question_th": "คู่ต่อสู้ทีมเยือนของริชมอนด์คือใคร?",
    "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_en": "What was the away score at VFL Park?",
    "question_th": "สกอร์ทีมเยือนที่ วีเอฟแอล พาร์ค คืออะไร?",
    "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_en": "Tell me the home team score for richmond home team",
    "question_th": "บอกคะแนนทีมเหย้าของทีมเหย้าริชมอนด์หน่อย",
    "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_en": "Tell me the venue for 8 june 1931 for st kilda away team",
    "question_th": "บอกสถานที่นัดที่ 8 มิถุนายน 1931 ของทีมเยือนเซนต์คิลดาหน่อยสิ",
    "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_en": "When fitzroy was the home team, how much did the away team score?",
    "question_th": "เมื่อฟิตซ์รอยเป็นเจ้าบ้านทีมเยือนได้สกอร์เท่าไหร่?",
    "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_en": "When essendon was the home team, how much did they score?",
    "question_th": "เมื่อเอสเซนดอนเป็นเจ้าบ้านทำประตูได้เท่าไหร่?",
    "context": "CREATE TABLE table_name_56 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_6 WHERE opponent = \"shintaro ishiwatari\"",
    "question_en": "What is shintaro ishiwatari's time?",
    "question_th": "ชินทาโร่ อิชิวาตาริ กี่โมงคะ?",
    "context": "CREATE TABLE table_name_6 (time VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(round) FROM table_name_90 WHERE opponent = \"sakae kasuya\"",
    "question_en": "How many rounds have an Opponent of sakae kasuya?",
    "question_th": "ฝ่ายตรงข้ามซาคาเอะ คาซึยะ มีกี่รอบ?",
    "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_en": "Which time has a Method of decision(majority), and an Opponent of keisuke yamada?",
    "question_th": "เวลาใดมีวิธีการตัดสินใจ (ส่วนใหญ่) และฝ่ายตรงข้ามของเคสุเกะ ยามาดะ?",
    "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_en": "Which method has an Event of shooto, a Round of 2, and an Opponent of issei tamura?",
    "question_th": "วิธีใดมีเหตุการณ์ของชูโต, รอบ 2 และฝ่ายตรงข้ามของอิซเซ ทามูระ",
    "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_en": "What is the away team that played at punt road oval?",
    "question_th": "ทีมเยือนที่เล่นในสนามพันท์โรดโอวัลคือทีมใด?",
    "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_en": "What is the home team score that played at windy hill?",
    "question_th": "สกอร์ทีมเจ้าบ้านเล่นที่วินดี้ ฮิลล์เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_81 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT SUM(crowd) FROM table_name_31 WHERE away_team = \"geelong\"",
    "question_en": "How big was the crowd at the game the away team geelong played at?",
    "question_th": "ฝูงชนในเกมที่ทีมเยือนจีลองเล่นมีมากขนาดไหน?",
    "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_en": "Which constructor has a race called I News of the World Trophy?",
    "question_th": "คอนสตรัคเตอร์คนไหนที่มีการแข่งขันที่เรียกว่า 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_en": "Which Constructor has the goodwood circuit?",
    "question_th": "Constructor ตัวไหนมีวงจร goodwood?",
    "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_en": "What driver won the VII Rand Grand Prix?",
    "question_th": "นักแข่งคนไหนที่ชนะการแข่งขัน 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_en": "What is the name of the race that has the pergusa Circuit?",
    "question_th": "สนาม 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_en": "What is the scoreof the away team Collingwood?",
    "question_th": "สกอร์ของทีมเยือน คอลลิงวูด คืออะไร?",
    "context": "CREATE TABLE table_name_83 (away_team VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_68 WHERE driver = \"jean alesi\" AND engine_† = \"acer 01a\"",
    "question_en": "Jean Alesi, drives the Acer 01A engine for which team?",
    "question_th": "Jean Alesi ขับเครื่อง Acer 01A ให้ทีมไหน?",
    "context": "CREATE TABLE table_name_68 (team VARCHAR, driver VARCHAR, engine_† VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_84 WHERE driver = \"alex yoong\"",
    "question_en": "Who built Alex Yoong's car?",
    "question_th": "ใครเป็นคนสร้างรถของ Alex Yoong?",
    "context": "CREATE TABLE table_name_84 (constructor VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT MAX(rank) FROM table_name_60 WHERE player = \"jim colbert\"",
    "question_en": "What's jim colbert's highest rank?",
    "question_th": "อันดับสูงสุดของจิม โคลเบิร์ตคืออะไร?",
    "context": "CREATE TABLE table_name_60 (rank INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT AVG(rank) FROM table_name_7 WHERE player = \"hale irwin\"",
    "question_en": "What's hale irwin's average rank?",
    "question_th": "อันดับเฉลี่ยของเฮล เออร์วินอยู่ที่เท่าไร?",
    "context": "CREATE TABLE table_name_7 (rank INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT SUM(avg) FROM table_name_70 WHERE long = 32",
    "question_en": "What is the sum of averages with a long value of 32?",
    "question_th": "ผลรวมของค่าเฉลี่ยที่มีค่ายาว 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_en": "Which Track time has a Disc larger than 2, a Track smaller than 22, and an English title of younger girl?",
    "question_th": "เวลาแทร็กใดที่มีดิสก์ใหญ่กว่า 2 แทร็กเล็กกว่า 22 และชื่อภาษาอังกฤษของสาวน้อย",
    "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ōzō murashita\"",
    "question_en": "Which Japanese title has a Disc smaller than 12, and an Artist of kōzō murashita?",
    "question_th": "ชื่อภาษาญี่ปุ่นใดที่มีแผ่นดิสก์เล็กกว่า 12 และศิลปินของ kōzō 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 = \"メロディー\"",
    "question_en": "Which track has a Japanese title of メロディー?",
    "question_th": "เพลงใดมีชื่อภาษาญี่ปุ่นว่า メロデジー",
    "context": "CREATE TABLE table_name_12 (track INTEGER, japanese_title VARCHAR)"
  },
  {
    "answer": "SELECT SUM(grid) FROM table_name_2 WHERE time_retired = \"clutch\"",
    "question_en": "What Grid has a Time/Retired of clutch?",
    "question_th": "กริดใดมีเวลา/หมดคลัตช์?",
    "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_en": "What is the Time/Retired with more Laps than 34, a Grid smaller than 15, and Driver Damon Hill?",
    "question_th": "เวลา/เกษียณอายุที่มีรอบมากกว่า 34, ตารางที่เล็กกว่า 15 และนักแข่ง 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_en": "How many Laps Did Driver David Coulthard have on a Grid smaller than 11?",
    "question_th": "นักแข่ง David Coulthard ทำไปได้กี่รอบในกริดที่เล็กกว่า 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_en": "What type of race took place on the course Orta San Giulio to Milan?",
    "question_th": "การแข่งขันประเภทใดที่เกิดขึ้นในเส้นทาง Orta San Giulio ไปยังมิลาน",
    "context": "CREATE TABLE table_name_14 (type VARCHAR, course VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_25 WHERE course = \"vasto to campitello matese\"",
    "question_en": "When did the course Vasto to Campitello Matese took place?",
    "question_th": "หลักสูตร Vasto ถึง Campitello Matese จัดขึ้นเมื่อใด",
    "context": "CREATE TABLE table_name_25 (date VARCHAR, course VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_49 WHERE course = \"brescia\"",
    "question_en": "Who won the course Brescia?",
    "question_th": "ใครชนะหลักสูตรเบรสชา?",
    "context": "CREATE TABLE table_name_49 (winner VARCHAR, course VARCHAR)"
  },
  {
    "answer": "SELECT league FROM table_name_90 WHERE year = \"1996\"",
    "question_en": "Name the league for 1996",
    "question_th": "ตั้งชื่อลีกปี 1996",
    "context": "CREATE TABLE table_name_90 (league VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT league FROM table_name_16 WHERE year = \"1994\"",
    "question_en": "Name the league for 1994",
    "question_th": "ตั้งชื่อลีกปี 1994",
    "context": "CREATE TABLE table_name_16 (league VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT league FROM table_name_2 WHERE reg_season = \"1st\"",
    "question_en": "Tell me the league with a regular 1st season",
    "question_th": "บอกลีกฤดูกาลที่ 1 เป็นประจำ",
    "context": "CREATE TABLE table_name_2 (league VARCHAR, reg_season VARCHAR)"
  },
  {
    "answer": "SELECT LNER AS class FROM table_name_31 WHERE class = \"6db\"",
    "question_en": "What LNER Class has a Class of 6db?",
    "question_th": "LNER Class ใดที่มีคลาส 6db",
    "context": "CREATE TABLE table_name_31 (LNER VARCHAR, class VARCHAR)"
  },
  {
    "answer": "SELECT LNER AS class FROM table_name_86 WHERE class = \"3\"",
    "question_en": "What LNER Class has a Class of 3?",
    "question_th": "LNER Class ใดที่มีคลาส 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_en": "Which mean pick number had a Reg GP of 0, and a Pl GP that was bigger than 0?",
    "question_th": "หมายเลขการเลือกเฉลี่ยใดมี Reg GP เป็น 0 และ Pl GP ที่มากกว่า 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_en": "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?",
    "question_th": "หมายเลข Pick สูงสุดที่มีหมายเลขถนนน้อยกว่า 6 มี Bob Dailey เป็นผู้เล่น และหมายเลขใดที่มี Reg GP ใหญ่กว่า 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_en": "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?",
    "question_th": "จำนวนรวมของ Pl GP เมื่อ Reg GP เป็น 0 หมายเลข Rd มากกว่า 8 และหมายเลขการเลือกมากกว่า 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_en": "What was the birth state of Charles Cotesworth Pinckney who was elected in 1808?",
    "question_th": "สถานะกำเนิดของ Charles Cotesworth Pinckney ที่ได้รับเลือกในปี 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_en": "How many postseason titles has Nebraska received?",
    "question_th": "Nebraska ได้รับตำแหน่งหลังฤดูกาลกี่รายการ?",
    "context": "CREATE TABLE table_name_20 (postseason VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_3 WHERE date = \"august 20\"",
    "question_en": "What is the lost On August 20",
    "question_th": "สิ่งที่หายไปเมื่อวันที่ 20 สิงหาคม",
    "context": "CREATE TABLE table_name_3 (loss VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT AVG(attendance) FROM table_name_70 WHERE save = \"–\" AND record = \"94–36\"",
    "question_en": "WHAT IS THE NUMBER OF Attendance  WITH A RECORD 94–36",
    "question_th": "จำนวนผู้เข้าร่วมด้วยสถิติ 94–36 คืออะไร",
    "context": "CREATE TABLE table_name_70 (attendance INTEGER, save VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT MAX(attendance) FROM table_name_99 WHERE loss = \"paniagua (3–3)\"",
    "question_en": "WHICH Attendance that has a Loss of paniagua (3–3)?",
    "question_th": "ผู้เข้าร่วมใดที่สูญเสีย paniagua (3–3)?",
    "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_en": "How many points did the away team score at Arden Street Oval?",
    "question_th": "ทีมเยือนทำประตูที่อาร์เดน สตรีท โอวัลได้กี่แต้ม?",
    "context": "CREATE TABLE table_name_59 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_16 WHERE home_team = \"footscray\"",
    "question_en": "In what venue does Footscray play?",
    "question_th": "Footscray เล่นที่ไหน?",
    "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_en": "What position did Co-driver Jackie Oliver finish in the 24 hours of Le Mans?",
    "question_th": "Jackie Oliver นักแข่งร่วมจบการแข่งขันใน 24 ชั่วโมงของ 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_en": "Who was the co-driver in 1970 for the race of Targa Florio?",
    "question_th": "ใครคือนักแข่งร่วมในการแข่งขัน Targa Florio ในปี 1970",
    "context": "CREATE TABLE table_name_46 (co_driver VARCHAR, year VARCHAR, race VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_5 WHERE grid = 13",
    "question_en": "Which vehicle has a Grid of 13?",
    "question_th": "รถคันใดมีตาราง 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_en": "What's the Time/Retired of 80 laps with a Grid larger than 2?",
    "question_th": "เวลา/เกษียณของ 80 รอบด้วยตารางที่ใหญ่กว่า 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_en": "Tell me the date for detroit and game more than 3",
    "question_th": "บอกวันที่ดีทรอยต์และเกมมากกว่า 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_en": "Name the team with high assists of nelson (5)",
    "question_th": "ตั้งชื่อทีมที่มีแอสซิสต์สูงของเนลสัน (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_en": "Name the score for howard (8) high rebounds",
    "question_th": "ตั้งชื่อสกอร์ของฮาวเวิร์ด (8) รีบาวด์สูง",
    "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_en": "Where Date is october 11, and game greater than 4 what is the lowest attendance?",
    "question_th": "โดยที่วันที่คือวันที่ 11 ตุลาคม และเกมที่มากกว่า 4 คือจำนวนผู้เข้าร่วมต่ำสุดคือเท่าใด",
    "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_en": "Where date is october 7 and game greater than 1, what is the highest attendance?",
    "question_th": "วันที่คือวันที่ 7 ตุลาคม และเกมมากกว่า 1 ผู้เข้าชมสูงสุดคือเท่าใด",
    "context": "CREATE TABLE table_name_43 (attendance INTEGER, date VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_40 WHERE date = \"october 14\"",
    "question_en": "Where Date is october 14 what is the attendance?",
    "question_th": "วันที่คือ 14 ตุลาคม ผู้เข้าร่วมมีอะไรบ้าง?",
    "context": "CREATE TABLE table_name_40 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_90 WHERE venue = \"mcg\"",
    "question_en": "Which away team had a venue of mcg?",
    "question_th": "ทีมเยือนทีมไหนมีสนาม 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_en": "When did the away team score at Punt Road Oval?",
    "question_th": "ทีมเยือนทำประตูได้ที่ พันท์ โร้ด โอวัล เมื่อไร?",
    "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_en": "How many points did North Melbourne score?",
    "question_th": "นอร์ท เมลเบิร์น ทำคะแนนได้กี่คะแนน?",
    "context": "CREATE TABLE table_name_12 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_22 WHERE date = \"march 4\"",
    "question_en": "What was the score on March 4?",
    "question_th": "คะแนนเมื่อวันที่ 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_en": "On which date was Raymond Felton (6) the high assists and Jason Richardson (42) the high points?",
    "question_th": "เรย์มอนด์ เฟลตัน (6) แอสซิสต์สูงที่สุด และเจสัน ริชาร์ดสัน (42) แต้มสูงสุดในวันไหน?",
    "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_en": "What is the location attendance when the team is Golden State?",
    "question_th": "การเข้าร่วมสถานที่เป็นอย่างไรเมื่อทีมคือ Golden State?",
    "context": "CREATE TABLE table_name_32 (location_attendance VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_89 WHERE visitor = \"magic\"",
    "question_en": "Which record has a Visitor of magic?",
    "question_th": "บันทึกใดมีผู้มาเยือนแห่งเวทมนตร์?",
    "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_en": "Which score has a Home of grizzlies, and a Leading scorer of rudy gay (18)?",
    "question_th": "คะแนนใดมีบ้านหมีกริซลี่และผู้ทำประตูชั้นนำของเกย์รูดี้ (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–28\"",
    "question_en": "Which leading scorer has a Home of grizzlies, and a Record of 10–28?",
    "question_th": "ผู้ทำประตูชั้นนำคนใดที่มีบ้านหมีกริซลี่ส์ และมีสถิติ 10–28",
    "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_en": "If the Away team was carlton, what Date did they play?",
    "question_th": "ถ้าทีมเยือนคือคาร์ลตันเค้าลงเล่นวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_97 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_34 WHERE home = \"chicago\" AND score = \"3 – 2\"",
    "question_en": "What is the Visitor with a Home with chicago, and a Score of 3 – 2?",
    "question_th": "ผู้เยี่ยมชมที่มีบ้านกับชิคาโกคืออะไร และคะแนน 3 – 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_en": "What is the Score with a Date with may 2?",
    "question_th": "คะแนนที่มีวันที่ 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_en": "What is the Score with a Home of colorado, and a Date with may 11?",
    "question_th": "คะแนนกับบ้านโคโลราโดและวันที่ 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 – 2\"",
    "question_en": "What is the Home with a Visitor of chicago, and a Series with 3 – 2?",
    "question_th": "อะไรคือบ้านที่มีผู้มาเยือนชิคาโก และซีรีส์ที่มี 3 – 2?",
    "context": "CREATE TABLE table_name_82 (home VARCHAR, visitor VARCHAR, series VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_50 WHERE series = \"3 – 2\"",
    "question_en": "What is the Visitor with a Series with 3 – 2?",
    "question_th": "ผู้เยี่ยมชมที่มีซีรี่ส์ 3 – 2 คืออะไร?",
    "context": "CREATE TABLE table_name_50 (visitor VARCHAR, series VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_35 WHERE score = \"4 – 3\"",
    "question_en": "What is the Visitor with a Score with 4 – 3?",
    "question_th": "ผู้เข้าชมที่มีคะแนน 4 – 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_en": "What is the 2007 value with 1r in 2011 and 1r in 2010?",
    "question_th": "ค่าปี 2550 โดยมี 1r ในปี 2554 และ 1r ในปี 2553 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_84 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2012 FROM table_name_13 WHERE 2010 = \"1r\" AND 2006 = \"2r\"",
    "question_en": "What is the 2012 value with 1r in 2010 and 2r in 2006?",
    "question_th": "ค่า 2012 โดยมี 1r ในปี 2010 และ 2r ในปี 2549 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_13 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2010 FROM table_name_28 WHERE tournament = \"australian open\"",
    "question_en": "What is the 2010 value for the Australian Open?",
    "question_th": "Australian Open มีมูลค่าเท่าไรในปี 2010?",
    "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_en": "What is the 2006 value of the 2009 A value, 2011 A value, and A as the 2007 value?",
    "question_th": "ค่า 2006 ของค่า A ปี 2009, ค่า A ปี 2011 และ A เป็นค่าปี 2007 คืออะไร",
    "context": "CREATE TABLE table_name_68 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2006 FROM table_name_8 WHERE 2007 = \"3r\"",
    "question_en": "What is the 2006 value with 3r in 2007?",
    "question_th": "ค่าปี 2549 กับ 3r ในปี 2550 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_8 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2012 FROM table_name_22 WHERE 2008 = \"479\"",
    "question_en": "What is the 2012 value with 479 in 2008?",
    "question_th": "ค่าปี 2555 กับ 479 ในปี 2551 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_22 (Id VARCHAR)"
  },
  {
    "answer": "SELECT builder FROM table_name_16 WHERE pennant = \"r90\"",
    "question_en": "What is the building for the r90 pennant?",
    "question_th": "ตึกสำหรับชายธง r90 คืออะไร?",
    "context": "CREATE TABLE table_name_16 (builder VARCHAR, pennant VARCHAR)"
  },
  {
    "answer": "SELECT pennant FROM table_name_8 WHERE builder = \"denny, dumbarton\"",
    "question_en": "What is the pennant with Denny, Dumbarton as the builder?",
    "question_th": "ธงที่มีเดนนี่ ดัมบาร์ตันเป็นผู้สร้างคืออะไร?",
    "context": "CREATE TABLE table_name_8 (pennant VARCHAR, builder VARCHAR)"
  },
  {
    "answer": "SELECT laid_down FROM table_name_37 WHERE pennant = \"r29\"",
    "question_en": "What is the laid down date of the destroyer with a r29 pennant?",
    "question_th": "เรือพิฆาตพร้อมธง r29 มีกำหนดวางเมื่อใด?",
    "context": "CREATE TABLE table_name_37 (laid_down VARCHAR, pennant VARCHAR)"
  },
  {
    "answer": "SELECT location___state FROM table_name_92 WHERE date = \"16 jun\"",
    "question_en": "What is the location/state of the race on 16 Jun?",
    "question_th": "สถานที่/สถานะการแข่งขันวันที่ 16 มิ.ย. คืออะไร?",
    "context": "CREATE TABLE table_name_92 (location___state VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MIN(heat) FROM table_name_65 WHERE race_title = \"lakeside\"",
    "question_en": "What is the lowest heat of the Lakeside race?",
    "question_th": "ความร้อนต่ำสุดของการแข่งขัน Lakeside คืออะไร?",
    "context": "CREATE TABLE table_name_65 (heat INTEGER, race_title VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_42 WHERE away_team = \"footscray\"",
    "question_en": "When the Away team is footscray, what is the Home team playing?",
    "question_th": "เมื่อทีมเยือนตีเท้าเจ้าบ้านเล่นอะไร?",
    "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_en": "Which Away team plays at the Venue vfl park?",
    "question_th": "ทีมเยือนทีมไหนเล่นที่ 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_en": "Name the least week for opponent of washington redskins",
    "question_th": "ตั้งชื่อสัปดาห์ที่น้อยที่สุดสำหรับฝ่ายตรงข้ามของวอชิงตันอินเดียนแดง",
    "context": "CREATE TABLE table_name_87 (week INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT tv_time FROM table_name_49 WHERE week = 10",
    "question_en": "Name the tv time for week 10",
    "question_th": "ตั้งชื่อเวลาทีวีสำหรับสัปดาห์ที่ 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_en": "What is the Time/Retired for a Grid larger than 6, and 57 laps?",
    "question_th": "เวลา/เลิกใช้สำหรับกริดที่มีขนาดใหญ่กว่า 6 และ 57 รอบเป็นเท่าใด",
    "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_en": "What grid for denny hulme?",
    "question_th": "ตารางอะไรสำหรับ 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_en": "How many laps for a Time/Retired of tyre, and a Grid larger than 10?",
    "question_th": "กี่รอบสำหรับเวลา/ยางที่หมด และตารางที่ใหญ่กว่า 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_en": "What Outcome has a Rocket launch of rehnuma-11?",
    "question_th": "Rocket เปิดตัว 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_en": "Which Institutional authority has a Rocket launch of rehnuma-10?",
    "question_th": "หน่วยงานของสถาบันใดที่มีการเปิดตัว Rocket 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_en": "Which Derivative has a Launch Date of july 15, 1970; 15:05 gmt?",
    "question_th": "อนุพันธ์ใดมีวันเปิดตัวในวันที่ 15 กรกฎาคม พ.ศ. 2513 15:05 น.?",
    "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_en": "Which Outcome has a Launch Date of march 18, 1964; 14:50 gmt?",
    "question_th": "ผลลัพธ์ใดมีวันเปิดตัววันที่ 18 มีนาคม 2507 14:50 น.?",
    "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_en": "Which Mission has a Launch Date of december 30, 1970; 14:50 gmt?",
    "question_th": "ภารกิจใดมีกำหนดเปิดตัวในวันที่ 30 ธันวาคม พ.ศ. 2513 14:50 น.?",
    "context": "CREATE TABLE table_name_47 (mission VARCHAR, launch_date VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_72 WHERE date = \"3/2\"",
    "question_en": "What team was the visitor on 3/2?",
    "question_th": "ทีมไหนเป็นผู้มาเยือนในวันที่ 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_en": "What is the home team score for kardinia park?",
    "question_th": "สกอร์ทีมเจ้าบ้าน คาร์ดิเนีย พาร์ค เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_56 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT realization FROM table_name_5 WHERE phoneme = \"/i/\" AND example = \"/idːa/\"",
    "question_en": "Name the realization for phoneme of /i/ and example of /idːa/",
    "question_th": "ตั้งชื่อหน่วยเสียงของ /i/ และตัวอย่างของ /idːa/",
    "context": "CREATE TABLE table_name_5 (realization VARCHAR, phoneme VARCHAR, example VARCHAR)"
  },
  {
    "answer": "SELECT phoneme FROM table_name_13 WHERE realization = \"[ɪj]\"",
    "question_en": "Name the phoneme for realizaiton of [ɪj]",
    "question_th": "ตั้งชื่อหน่วยเสียงสำหรับการรับรู้ของ [əj]",
    "context": "CREATE TABLE table_name_13 (phoneme VARCHAR, realization VARCHAR)"
  },
  {
    "answer": "SELECT example FROM table_name_46 WHERE environment = \"#_x\"",
    "question_en": "Name the example when the environment is #_x",
    "question_th": "ตั้งชื่อตัวอย่างเมื่อสภาพแวดล้อมเป็น #_x",
    "context": "CREATE TABLE table_name_46 (example VARCHAR, environment VARCHAR)"
  },
  {
    "answer": "SELECT example FROM table_name_36 WHERE realization = \"[ɐ]\"",
    "question_en": "Name the example when the realization is [ɐ]",
    "question_th": "ตั้งชื่อตัวอย่างเมื่อการรับรู้เป็น [ɐ]",
    "context": "CREATE TABLE table_name_36 (example VARCHAR, realization VARCHAR)"
  },
  {
    "answer": "SELECT phoneme FROM table_name_78 WHERE example = \"/umsʁ/\"",
    "question_en": "Name the phoneme when the example is /umsʁ/",
    "question_th": "ตั้งชื่อหน่วยเสียงเมื่อตัวอย่างคือ /umsʁ/",
    "context": "CREATE TABLE table_name_78 (phoneme VARCHAR, example VARCHAR)"
  },
  {
    "answer": "SELECT phoneme FROM table_name_16 WHERE realization = \"[ɑ]\"",
    "question_en": "Name the phoneme when the realizationis [ɑ]",
    "question_th": "ตั้งชื่อหน่วยเสียงเมื่อการรับรู้คือ [ɑ]",
    "context": "CREATE TABLE table_name_16 (phoneme VARCHAR, realization VARCHAR)"
  },
  {
    "answer": "SELECT power FROM table_name_84 WHERE engine_code = \"m44b19\"",
    "question_en": "What is the power of the engine with an engine code m44b19?",
    "question_th": "เครื่องยนต์ที่มีรหัสเครื่องยนต์ 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_en": "What is the highest numbered grid for piercarlo ghinzani with over 3 laps?",
    "question_th": "ตารางที่มีหมายเลขสูงสุดสำหรับปิแอร์คาร์โล กินซานีที่วิ่งเกิน 3 รอบคืออะไร?",
    "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_en": "How many laps for a grid of over 18 and retired due to electrical failure?",
    "question_th": "กี่รอบสำหรับตารางที่เกิน 18 และเลิกใช้เนื่องจากไฟฟ้าขัดข้อง?",
    "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_en": "What was the average crowd attendance for the Junction Oval venue?",
    "question_th": "ฝูงชนที่เข้าชมสถานที่จัดงาน Junction Oval โดยเฉลี่ยคือเท่าใด",
    "context": "CREATE TABLE table_name_36 (crowd INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_87 WHERE venue = \"princes park\"",
    "question_en": "What is the home team for the Princes Park venue?",
    "question_th": "ทีมเหย้าสำหรับสนามพรินซ์ พาร์คคือทีมใด?",
    "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_en": "What is the average home team score for Footscray?",
    "question_th": "คะแนนเฉลี่ยของเจ้าบ้านของ ฟุตสเครย์ คือเท่าไหร่?",
    "context": "CREATE TABLE table_name_36 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_19 WHERE away_team = \"geelong\"",
    "question_en": "Which home teams had Geelong as the away team?",
    "question_th": "เจ้าบ้านทีมไหนมี จีลอง เป็นทีมเยือน?",
    "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_en": "When did the Rockies play the Giants with an attendance over 24,100?",
    "question_th": "เทือกเขาร็อกกี้เล่นกับไจแอนต์ด้วยผู้เข้าร่วมมากกว่า 24,100 คนเมื่อใด",
    "context": "CREATE TABLE table_name_35 (date VARCHAR, opponent VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_91 WHERE record = \"61–66\"",
    "question_en": "What is the date of the game when the Rockies had a record of 61–66?",
    "question_th": "วันที่ของเกมคือวันที่เทือกเขาร็อกกี้มีสถิติ 61–66?",
    "context": "CREATE TABLE table_name_91 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(seasons) FROM table_name_71 WHERE coach = \"john mcfadden\"",
    "question_en": "How many seasons has John Mcfadden coached?",
    "question_th": "จอห์น แม็คฟาดเดนเป็นโค้ชมาแล้วกี่ฤดูกาล?",
    "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_en": "What is the number of annual ridership with a station that has more than 13 stations and larger than 4 lines?",
    "question_th": "จำนวนผู้โดยสารต่อปีของสถานีที่มีมากกว่า 13 สถานีและมากกว่า 4 สายคือเท่าใด",
    "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_en": "How many lines have fewer than 44 stations and fewer than 881 riders per mile?",
    "question_th": "มีกี่สายที่มีน้อยกว่า 44 สถานีและมีผู้โดยสารน้อยกว่า 881 คนต่อไมล์?",
    "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_en": "What is the highest season for the 7th position?",
    "question_th": "ฤดูกาลสูงสุดสำหรับอันดับที่ 7 คืออะไร?",
    "context": "CREATE TABLE table_name_61 (season INTEGER, position VARCHAR)"
  },
  {
    "answer": "SELECT opponent_in_the_final FROM table_name_42 WHERE tournament = \"blenheim\"",
    "question_en": "Who is the opponent in the final of the Tournament of Blenheim?",
    "question_th": "คู่ต่อสู้ในรอบสุดท้ายของทัวร์นาเมนท์ออฟเบลนไฮม์คือใคร?",
    "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_en": "Who is the opponent in the final on August 14, 2006?",
    "question_th": "คู่ต่อสู้ในรอบชิงชนะเลิศวันที่ 14 สิงหาคม 2549 คือใคร?",
    "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_en": "Who is the opponent in the final with a clay surface at the Tournament of Lyneham?",
    "question_th": "คู่ต่อสู้ในรอบชิงชนะเลิศที่มีพื้นผิวดินเหนียวในทัวร์นาเมนต์ของลีนแฮมคือใคร?",
    "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–2, 6–1\"",
    "question_en": "On what surface was the score 6–2, 6–1?",
    "question_th": "คะแนน 6–2, 6–1 บนพื้นผิวใด",
    "context": "CREATE TABLE table_name_46 (surface VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_12 WHERE tournament = \"cordenons\"",
    "question_en": "What is the score for the Tournament of Cordenons?",
    "question_th": "คะแนนสำหรับ 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_en": "On what date was the surface clay with Cyril Saulnier as the opponent in the final?",
    "question_th": "พื้นผิวดินเหนียวที่มี Cyril Saulnier เป็นคู่ต่อสู้ในรอบชิงชนะเลิศคือวันใด?",
    "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_en": "Which artist has a Mintage of 500?",
    "question_th": "ศิลปินคนไหนมีเหรียญกษาปณ์ 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_en": "Which Artist has an Issue Price of $1,541.95?",
    "question_th": "ศิลปินคนไหนมีราคาจำหน่ายอยู่ที่ 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–3 7–6(5)\"",
    "question_en": "Who is the opponent in the final on a hard surface with a score of 6–3 7–6(5)?",
    "question_th": "คู่ต่อสู้ในรอบชิงชนะเลิศบนพื้นแข็งด้วยคะแนน 6–3 7–6(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_en": "Who is the opponent in the Tournament of Lahore final?",
    "question_th": "คู่ต่อสู้ใน Tournament of Lahore รอบชิงชนะเลิศคือใคร?",
    "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_en": "On what date did the opponent in the Toshiaki Sakai final play on a grass surface?",
    "question_th": "คู่ต่อสู้ในโทชิอากิ ซากาอิ ลงเล่นบนพื้นหญ้าครั้งสุดท้ายเมื่อใด?",
    "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–6 6–3 6–4\"",
    "question_en": "On what surface did a score of 4–6 6–3 6–4 occur at the Tournament of Lahore?",
    "question_th": "คะแนน 4–6 6–3 6–4 เกิดขึ้นบนพื้นผิวใดที่การแข่งขันลาฮอร์",
    "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_en": "Which tournament had Toshiaki Sakai as an opponent in the final on a grass surface?",
    "question_th": "ทัวร์นาเมนต์ใดที่มีโทชิอากิ ซากาอิเป็นคู่ต่อสู้ในรอบชิงชนะเลิศบนพื้นหญ้า",
    "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_en": "what was the score on the game that happened on May 15?",
    "question_th": "คะแนนในเกมที่เกิดขึ้นเมื่อวันที่ 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_en": "What is the status of bel with a Transfer window of winter?",
    "question_th": "สถานะของเบลพร้อมหน้าต่างโอนย้ายของฤดูหนาวเป็นอย่างไร?",
    "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_en": "What is the union moving name and is from cmr?",
    "question_th": "ชื่อสหภาพการย้ายคืออะไรและมาจาก 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_en": "What is the transfer window for bel?",
    "question_th": "หน้าต่างการโอนของเบลคืออะไร?",
    "context": "CREATE TABLE table_name_78 (transfer_window VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT transfer_window FROM table_name_16 WHERE name = \"habarugira\"",
    "question_en": "What is the transfer period for habarugira?",
    "question_th": "ระยะเวลาการโอนเงินสำหรับฮาบารูจิระคือเมื่อใด?",
    "context": "CREATE TABLE table_name_16 (transfer_window VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT crowd FROM table_name_76 WHERE away_team = \"north melbourne\"",
    "question_en": "How big was the crowd in game that featured the visiting team of north melbourne?",
    "question_th": "ฝูงชนในเกมที่มีทีมเยือนจากนอร์ธ เมลเบิร์น มีขนาดใหญ่แค่ไหน?",
    "context": "CREATE TABLE table_name_76 (crowd VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(bronze) FROM table_name_79 WHERE total < 1",
    "question_en": "How many bronze medals for the nation with less than 1 total?",
    "question_th": "รวมไม่ถึง 1 เหรียญทองแดงของชาติได้กี่เหรียญ?",
    "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_en": "How many bronze medals for the nation ranked above 2, and under 0 golds?",
    "question_th": "มีเหรียญทองแดงสำหรับประเทศที่มีอันดับมากกว่า 2 และต่ำกว่า 0 เหรียญทองกี่เหรียญ?",
    "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_en": "How many silvers for japan (1 gold)?",
    "question_th": "ญี่ปุ่นได้กี่เหรียญเงิน (1 ทอง)?",
    "context": "CREATE TABLE table_name_30 (silver INTEGER, nation VARCHAR, gold VARCHAR)"
  },
  {
    "answer": "SELECT authority FROM table_name_18 WHERE roll = 651",
    "question_en": "Which authority had a role of 651?",
    "question_th": "หน่วยงานใดมีบทบาท 651?",
    "context": "CREATE TABLE table_name_18 (authority VARCHAR, roll VARCHAR)"
  },
  {
    "answer": "SELECT MIN(decile) FROM table_name_79 WHERE roll = 651",
    "question_en": "For the roll of 651, what was the lowest Decile?",
    "question_th": "สำหรับการทอย 651 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_en": "What were the years for Redhill school, authority of state?",
    "question_th": "โรงเรียน Redhill ผู้มีอำนาจของรัฐมีอายุกี่ปี?",
    "context": "CREATE TABLE table_name_1 (years VARCHAR, authority VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT SUM(roll) FROM table_name_53 WHERE area = \"karaka\"",
    "question_en": "What was the sum roll of Karaka area?",
    "question_th": "ผลรวมของพื้นที่การากาคืออะไร?",
    "context": "CREATE TABLE table_name_53 (roll INTEGER, area VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_50 WHERE away_team = \"north melbourne\"",
    "question_en": "What home team played North Melbourne?",
    "question_th": "ทีมเหย้าทีมไหนเล่น นอร์ท เมลเบิร์น?",
    "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_en": "What is the nationality of the player with a round after 4 and plays right wing?",
    "question_th": "ผู้เล่นสัญชาติใดที่ออกรอบหลังตี 4 และเล่นปีกขวา?",
    "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_en": "What is the college/junior/club team (league) of left wing Ondrej Roman?",
    "question_th": "ทีมวิทยาลัย/จูเนียร์/สโมสร (ลีก) ของออนเดรจ โรมัน ปีกซ้ายคืออะไร?",
    "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_en": "Who played in lake oval while away?",
    "question_th": "ใครเคยเล่น Lake Oval ระหว่างไม่อยู่บ้าง?",
    "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_en": "What week number saw a w 31-16 result?",
    "question_th": "เลขสัปดาห์ไหนเห็นผล 31-16 อ.?",
    "context": "CREATE TABLE table_name_21 (week INTEGER, result VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_44 WHERE week < 8 AND result = \"bye\"",
    "question_en": "When was the game before week 8 with a result of bye?",
    "question_th": "เกมก่อนสัปดาห์ที่ 8 กับผลลาก่อนคือเมื่อไหร่?",
    "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_en": "What week number had the New York Giants as opponent?",
    "question_th": "New York Giants เป็นคู่ต่อสู้ที่หมายเลขสัปดาห์ใด",
    "context": "CREATE TABLE table_name_21 (week VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_94 WHERE grid < 6 AND laps < 49",
    "question_en": "Who built the under grid 6 car with under 49 laps?",
    "question_th": "ใครเป็นคนสร้างรถ Under Grid 6 โดยมีรอบต่ำกว่า 49 รอบ?",
    "context": "CREATE TABLE table_name_94 (constructor VARCHAR, grid VARCHAR, laps VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_40 WHERE grid = 2",
    "question_en": "Who built the grid 2 car?",
    "question_th": "ใครเป็นคนสร้างรถกริด 2?",
    "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_en": "Who built the car that retired due to suspension before 65 laps?",
    "question_th": "ใครเป็นคนสร้างรถที่เลิกใช้เพราะช่วงล่างก่อน 65 รอบ?",
    "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_en": "What Valley Vista has a Dysart of 1668?",
    "question_th": "Valley Vista ใดมี Dysart ในปี 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_en": "What Valley Vista has a Willow Canyon of 2169?",
    "question_th": "Valley Vista ใดมี Willow Canyon ปี 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_en": "How many people were in the crowd at Lake Oval?",
    "question_th": "มีกี่คนที่อยู่ในฝูงชนที่ 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_en": "What team was the home team on 27 june 1981, at vfl park?",
    "question_th": "ทีมใดเป็นเจ้าบ้านเมื่อวันที่ 27 มิถุนายน พ.ศ. 2524 ที่วีเอฟแอลพาร์ค?",
    "context": "CREATE TABLE table_name_88 (home_team VARCHAR, date VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT tyre FROM table_name_99 WHERE chassis = \"56\"",
    "question_en": "What is the tyre with a 56 chassis?",
    "question_th": "ยางพร้อมแชสซี 56 คืออะไร?",
    "context": "CREATE TABLE table_name_99 (tyre VARCHAR, chassis VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_20 WHERE gdp__nominal_ = \"$29.9 billion\"",
    "question_en": "Which country has a GDP (nominal) of $29.9 billion?",
    "question_th": "ประเทศใดมี GDP (ระบุ) อยู่ที่ 29.9 พันล้านดอลลาร์",
    "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_en": "Which country has a GDP (nominal) of $29.9 billion?",
    "question_th": "ประเทศใดมี GDP (ระบุ) อยู่ที่ 29.9 พันล้านดอลลาร์",
    "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_en": "Which GDP (nominal) has a Population of 5,550,239?",
    "question_th": "GDP ใด (ระบุ) มีประชากร 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_en": "Which population has a GDP (nominal) of $6.4 billion?",
    "question_th": "ประชากรใดมี GDP (ระบุ) อยู่ที่ 6.4 พันล้านดอลลาร์",
    "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_en": "Which country has a GDP (nominal) of $29.9 billion?",
    "question_th": "ประเทศใดมี GDP (ระบุ) อยู่ที่ 29.9 พันล้านดอลลาร์",
    "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_en": "What is the GDP (nominal) with Population of 5,125,693?",
    "question_th": "GDP (ระบุ) ที่มีประชากร 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_en": "What is the earliest year for 9 points?",
    "question_th": "9 แต้มปีแรกสุดคือปีใด?",
    "context": "CREATE TABLE table_name_79 (year INTEGER, points VARCHAR)"
  },
  {
    "answer": "SELECT MIN(points) FROM table_name_90 WHERE chassis = \"jaguar r3\"",
    "question_en": "What is the low score for the jaguar r3 chasis?",
    "question_th": "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_en": "What is the notes when the displacement is 220cid (3,604cc)?",
    "question_th": "ข้อสังเกตเมื่อมีการกระจัดคือ 220cid (3,604cc)?",
    "context": "CREATE TABLE table_name_78 (notes VARCHAR, displacement VARCHAR)"
  },
  {
    "answer": "SELECT engine FROM table_name_91 WHERE notes = \"srt8\"",
    "question_en": "What is then engine when the notes state srt8?",
    "question_th": "แล้วเอ็นจิ้นจะเป็นอย่างไรเมื่อโน้ตระบุ 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_en": "What is the power when the displacement is 182cid (2,988cc) and the notes are eu spec?",
    "question_th": "ขุมพลังเมื่อความจุอยู่ที่ 182cid (2,988cc) และโน๊ตเป็น 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_en": "What is the engine for year 2012-?",
    "question_th": "เครื่องยนต์ปี 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_en": "What is the record of the match with Columbus as the home team on March 7?",
    "question_th": "สถิติแมตช์กับโคลัมบัสเป็นเจ้าบ้านในวันที่ 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_en": "What is the record of the game on March 18?",
    "question_th": "สถิติเกมวันที่ 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_en": "Which height has a College of wyoming, and a Name of guy frazier?",
    "question_th": "วิทยาลัยไวโอมิงที่มีความสูงเท่าใดและมีชื่อของผู้ชายที่เก่งกว่า?",
    "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_en": "Which season's winner is Panathinaikos and is located in Athens?",
    "question_th": "ผู้ชนะในฤดูกาลใดคือพานาธิไนกอสและอยู่ในเอเธนส์",
    "context": "CREATE TABLE table_name_33 (season VARCHAR, location VARCHAR, winners VARCHAR)"
  },
  {
    "answer": "SELECT recorded FROM table_name_34 WHERE translation = \"hate\"",
    "question_en": "What is the date recorded of Hate?",
    "question_th": "วันที่บันทึกของ Hate คืออะไร?",
    "context": "CREATE TABLE table_name_34 (recorded VARCHAR, translation VARCHAR)"
  },
  {
    "answer": "SELECT composer FROM table_name_36 WHERE track < 4",
    "question_en": "Who is the composer on the tracks less than 4?",
    "question_th": "ใครคือผู้แต่งเพลงในเพลงที่ต่ำกว่า 4?",
    "context": "CREATE TABLE table_name_36 (composer VARCHAR, track INTEGER)"
  },
  {
    "answer": "SELECT title FROM table_name_83 WHERE track = 7",
    "question_en": "What is the title of track 7?",
    "question_th": "เพลงที่ 7 ชื่ออะไรคะ?",
    "context": "CREATE TABLE table_name_83 (title VARCHAR, track VARCHAR)"
  },
  {
    "answer": "SELECT recorded FROM table_name_73 WHERE track = 8",
    "question_en": "What is the recorded date of track 8?",
    "question_th": "วันที่บันทึกของแทร็ก 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_en": "How many number Builts had unit numbers of 375301-310?",
    "question_th": "บิวท์มีกี่หมายเลข 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–24–6\"",
    "question_en": "What was the score of the game where Montreal was the home team and the Devils had a record of 40–24–6?",
    "question_th": "อะไรคือคะแนนของเกมที่มอนทรีออลเป็นเจ้าบ้านและเดวิลส์มีสถิติ 40–24–6?",
    "context": "CREATE TABLE table_name_91 (score VARCHAR, home VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_29 WHERE stores = \"140\"",
    "question_en": "Which location has 140 stores?",
    "question_th": "พิกัดไหนมี 140 ร้านค้า?",
    "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_en": "Which year did the Short Pump Town Center Mall open?",
    "question_th": "ห้าง Short Pump Town Centre เปิดปีไหน?",
    "context": "CREATE TABLE table_name_4 (year_opened VARCHAR, mall_name VARCHAR)"
  },
  {
    "answer": "SELECT retail_space_sq_feet__m²_ FROM table_name_70 WHERE mall_name = \"stony point fashion park\"",
    "question_en": "What is the retail space of the Stony Point Fashion Park Mall?",
    "question_th": "พื้นที่ค้าปลีกของ Stony Point Fashion Park Mall คืออะไร?",
    "context": "CREATE TABLE table_name_70 (retail_space_sq_feet__m²_ VARCHAR, mall_name VARCHAR)"
  },
  {
    "answer": "SELECT mall_name FROM table_name_3 WHERE stores = \"140\"",
    "question_en": "Which Mall has 140 stores?",
    "question_th": "ห้างไหนมี 140 ร้านค้า?",
    "context": "CREATE TABLE table_name_3 (mall_name VARCHAR, stores VARCHAR)"
  },
  {
    "answer": "SELECT match FROM table_name_33 WHERE date = \"30 january 1938\"",
    "question_en": "What match was on 30 january 1938?",
    "question_th": "นัดใดคือวันที่ 30 มกราคม พ.ศ. 2481?",
    "context": "CREATE TABLE table_name_33 (match VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_75 WHERE match = \"napoli-roma\"",
    "question_en": "What was the result of the napoli-roma match?",
    "question_th": "ผลการแข่งขันนาโปลี-โรม่าเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_75 (result VARCHAR, match VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_15 WHERE school = \"seattle prep\"",
    "question_en": "What is the player that is from seattle prep?",
    "question_th": "นักเตะที่มาจากซีแอตเทิลคือใคร?",
    "context": "CREATE TABLE table_name_15 (player VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_name_31 WHERE height = \"6-0\"",
    "question_en": "What is the hometown of the player which has a height of 6-0?",
    "question_th": "บ้านเกิดของผู้เล่นที่มีส่วนสูง 6-0 คืออะไร?",
    "context": "CREATE TABLE table_name_31 (hometown VARCHAR, height VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_name_54 WHERE college = \"washington\"",
    "question_en": "What is the hometown for the player that went to the college of washington",
    "question_th": "บ้านเกิดของผู้เล่นที่ไปเรียนที่วิทยาลัยวอชิงตันคืออะไร",
    "context": "CREATE TABLE table_name_54 (hometown VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_3 WHERE venue = \"princes park\"",
    "question_en": "What was the away team's score at Princes Park?",
    "question_th": "ทีมเยือนที่ปริ้นซ์ ปาร์คได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_3 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_36 WHERE away_team = \"richmond\"",
    "question_en": "When did Richmond play an away game against Collingwood?",
    "question_th": "ริชมอนด์เล่นเกมเยือนกับคอลลิงวูดเมื่อไหร่?",
    "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_en": "How many league cup goals on average for players with over 0 FA cup and 5 league goals?",
    "question_th": "โดยเฉลี่ยแล้วผู้เล่นที่มีเอฟเอคัพมากกว่า 0 ประตูและในลีกมากกว่า 5 ประตูโดยเฉลี่ยในลีกคัพมีกี่ประตู?",
    "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_en": "What is the low FA cup goals for viduka with under 2 europe goals?",
    "question_th": "ประตูเอฟเอคัพที่ต่ำสำหรับวิดูก้าที่ทำได้ต่ำกว่า 2 ประตูยุโรปคืออะไร?",
    "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_en": "Who won the most recent favorite rap/hip-hop new artist at the American music awards?",
    "question_th": "ใครชนะศิลปินหน้าใหม่แร็พ/ฮิปฮอปยอดนิยมล่าสุดในงาน 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–105\"",
    "question_en": "What is the Date with a Leading scorer with maurice williams (25), and a Score with 102–105?",
    "question_th": "วันที่ผู้ทำประตูนำกับมอริซ วิลเลียมส์ (25) คืออะไร และคะแนน 102–105 คืออะไร",
    "context": "CREATE TABLE table_name_24 (date VARCHAR, leading_scorer VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_54 WHERE home = \"hornets\"",
    "question_en": "What is the Score with a Home with hornets?",
    "question_th": "คะแนนของเจ้าบ้านที่มีแตนคืออะไร?",
    "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_en": "What is the Score with a Visitor of bucks, and a Leading scorer with maurice williams (25)?",
    "question_th": "คะแนนของผู้มาเยือนเป็นเงิน และผู้ทำประตูนำกับมอริส วิลเลียมส์ (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_en": "What is the Record with a Leading scorer with andrew bogut (29)?",
    "question_th": "สถิติผู้ทำประตูสูงสุดกับแอนดรูว์ โบกุต (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_en": "What is the Record with a Leading scorer with maurice williams (25), and a Date with 27 january 2008?",
    "question_th": "อะไรคือสถิติของผู้ทำประตูสูงสุดกับมอริซ วิลเลียมส์ (25) และวันที่ 27 มกราคม 2551?",
    "context": "CREATE TABLE table_name_38 (record VARCHAR, leading_scorer VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_12 WHERE score = \"80–87\" AND visitor = \"bucks\"",
    "question_en": "What is the Record with a Score with 80–87, and a Visitor with bucks?",
    "question_th": "สถิติที่มีคะแนน 80–87 และผู้เยี่ยมชมที่มีเหรียญคืออะไร?",
    "context": "CREATE TABLE table_name_12 (record VARCHAR, score VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_74 WHERE player = \"tom boswell\"",
    "question_en": "What is the nationality of the player Tom Boswell?",
    "question_th": "นักเตะสัญชาติอะไร ทอม บอสเวลล์?",
    "context": "CREATE TABLE table_name_74 (nationality VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_18 WHERE school_club_team = \"duke\"",
    "question_en": "What is the nationality of the player from Duke?",
    "question_th": "ผู้เล่นจาก 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_en": "What position did the player from Florida International play?",
    "question_th": "นักเตะจาก Florida International เล่นตำแหน่งอะไร?",
    "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_en": "What is the nationality of the player from UCLA?",
    "question_th": "นักเตะจาก 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_en": "What was Attendance/G with Tms more than 18?",
    "question_th": "Attendance/G ที่มี Tms มากกว่า 18 คืออะไร",
    "context": "CREATE TABLE table_name_48 (attendance_g INTEGER, tms INTEGER)"
  },
  {
    "answer": "SELECT chassis FROM table_name_37 WHERE entrant = \"john mecom\"",
    "question_en": "Which chassis had an entrant of John Mecom?",
    "question_th": "แชสซีใดที่มีผู้เข้ามาเป็น 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_en": "What tyre was used for an entrant of Ecurie Nationale Suisse?",
    "question_th": "ยางชนิดใดที่ผู้เข้าร่วมการแข่งขัน 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_en": "Which rounds was Hap Sharp a driver in?",
    "question_th": "ฮาป ชาร์ป ลงแข่งรอบไหน?",
    "context": "CREATE TABLE table_name_40 (rounds VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT SUM(year) FROM table_name_38 WHERE title = \"jotei\"",
    "question_en": "what is the year when the title is jotei?",
    "question_th": "ชื่อโจเทคือปีอะไร?",
    "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_en": "what is the original channel when the year is before 2006 and the note is supporting?",
    "question_th": "ช่องเดิมคือปีก่อนปี 2549 และโน้ตรองรับคือช่องอะไร?",
    "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_en": "what is the original channel when the note is co-star in year 2012?",
    "question_th": "ช่องต้นฉบับเมื่อโน้ตร่วมแสดงในปี 2555 คืออะไร?",
    "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_en": "what is the original channel when the year is after 2012?",
    "question_th": "ช่องเดิมคือปีหลัง 2555 คือช่องไหนคะ?",
    "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_en": "what is the year when the note is supporting and the title is rokumeikan?",
    "question_th": "ปีไหนที่โน้ตรองรับและชื่อโรคุเมอิคัง?",
    "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_en": "what is the title when the year is after 2011 and the original channel is nhk?",
    "question_th": "ชื่ออะไรคือปีหลัง 2554 และช่องเดิมคือ 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_en": "On which circuit does lorenzo bandini have the fastest lap as well as the pole position?",
    "question_th": "ลอเรนโซ บันดินี่ มีรอบเร็วที่สุดและตำแหน่งโพลโพซิชั่นในสนามใด?",
    "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_en": "At what race does jim clark has a Pole position on the Circuit of monaco?",
    "question_th": "จิม คลาร์ก มีตำแหน่งโพลบนสนามแข่งโมนาโกในการแข่งขันรายการใด",
    "context": "CREATE TABLE table_name_72 (race VARCHAR, pole_position VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT report FROM table_name_32 WHERE circuit = \"reims\"",
    "question_en": "Which Report is on the Circuit of reims?",
    "question_th": "รายงานใดที่อยู่ใน 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_en": "On what Date is there a race on the Circuit of brands hatch?",
    "question_th": "มีการแข่งขันใน Circuit of Brands ฟักไข่วันไหน?",
    "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_en": "Who is the Winnning driver in which lorenzo bandini has the fastest lap as well as the Pole position?",
    "question_th": "ใครคือนักแข่งที่ชนะ ซึ่งลอเรนโซ บันดินี่ทำเวลาต่อรอบได้เร็วที่สุดและได้ตำแหน่งโพล?",
    "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_en": "On what date is there a Tryre of d at the Circuit of monaco?",
    "question_th": "Tryre of d จะมีการแข่งขันที่ 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_en": "What's the date that Morocco has an Against along with a surface of hard?",
    "question_th": "วันที่โมร็อกโกมีการแข่งขันกับพื้นผิวแข็งคือวันที่เท่าไร?",
    "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_en": "What's Round has a Surface of hard and Opponent of Jelena Simic?",
    "question_th": "What's Round มีพื้นผิวแข็งและเป็นคู่ต่อสู้ของ 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_en": "What driver won in the xv grand prix de l'albigeois in a vehicle by ferrari?",
    "question_th": "นักแข่งคนไหนที่ชนะการแข่งขัน xv grand prix de l'albigeois ในรถยนต์ของเฟอร์รารี",
    "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_en": "What is the latest death with a description of BR-Built inspection saloon?",
    "question_th": "การเสียชีวิตล่าสุดพร้อมคำอธิบายของห้องตรวจสอบ BR-Built คืออะไร?",
    "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_en": "What is the identifying number for a description of Stanier (Period III) full brake?",
    "question_th": "หมายเลขประจำตัวของคำอธิบายของเบรกเต็ม Stanier (Period III) คืออะไร?",
    "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_en": "What is the date with identifying number of No. 37817?",
    "question_th": "เลขที่ประจำตัว 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_en": "What is the release date for the standard cd release format in north america?",
    "question_th": "วันที่วางจำหน่ายซีดีมาตรฐานในอเมริกาเหนือคือวันที่เท่าไร?",
    "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_en": "What is  the cat no for the label mute and the standard cd format?",
    "question_th": "cat no สำหรับป้ายกำกับปิดเสียงและรูปแบบซีดีมาตรฐานคืออะไร",
    "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_en": "What is the rating for the episode with the night rank of 11 and timeslot rank is larger than 4?",
    "question_th": "เรตติ้งสำหรับตอนที่มีอันดับกลางคืนอยู่ที่ 11 และอันดับช่วงเวลามากกว่า 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_en": "What is the smallest share for a timeslot ranking less than 4 and fewer viewers than 8.78 million?",
    "question_th": "อะไรคือส่วนแบ่งที่น้อยที่สุดสำหรับช่วงเวลาที่มีอันดับน้อยกว่า 4 และมีผู้ชมน้อยกว่า 8.78 ล้านคน?",
    "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_en": "What is the rating of the episode with 13.47 million viewers and overall rank larger than 6?",
    "question_th": "เรตติ้งของตอนที่มีผู้ชม 13.47 ล้านคน และอันดับโดยรวมมากกว่า 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_en": "What is the rank of the episode with a share of 6 and timeslot rank smaller than 4?",
    "question_th": "ตอนที่มีส่วนแบ่ง 6 และช่วงเวลาน้อยกว่า 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_en": "How many premierships for the queensland raceway?",
    "question_th": "มีพรีเมียร์ชิปกี่ลำสำหรับสนามแข่งควีนส์แลนด์?",
    "context": "CREATE TABLE table_name_40 (premierships VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT premierships FROM table_name_25 WHERE league = \"commonwealth bank trophy\"",
    "question_en": "How many premierships for the commonwealth bank trophy league?",
    "question_th": "มีพรีเมียร์ชิพกี่สมัยสำหรับลีกถ้วยรางวัลธนาคารเครือจักรภพ?",
    "context": "CREATE TABLE table_name_25 (premierships VARCHAR, league VARCHAR)"
  },
  {
    "answer": "SELECT MAX(round) FROM table_name_66 WHERE pick = 4",
    "question_en": "In which round was there a pick of 4?",
    "question_th": "ในรอบไหนมีผู้ถูกเลือก 4 คน?",
    "context": "CREATE TABLE table_name_66 (round INTEGER, pick VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(round) FROM table_name_66 WHERE position = \"offensive tackle\"",
    "question_en": "How many rounds were there an offensive tackle position?",
    "question_th": "มีตำแหน่งแท็คเกิ้ลฝ่ายรุกกี่รอบ?",
    "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_en": "What was the pick number in round 228 for Mike Ford?",
    "question_th": "หมายเลขเลือกในรอบ 228 สำหรับ 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_en": "What year was E. Meyer the driver?",
    "question_th": "อี. เมเยอร์เป็นคนขับรถปีไหน?",
    "context": "CREATE TABLE table_name_9 (year VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_2 WHERE constructor = \"bugatti\" AND location = \"anfa\"",
    "question_en": "What is the name of the driver of the vehicle constructed by Bugatti in Anfa?",
    "question_th": "คนขับรถที่สร้างโดย Bugatti ใน 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_en": "What company constructed the vehicle in the location not held in 1933?",
    "question_th": "บริษัทใดสร้างยานพาหนะในสถานที่ซึ่งไม่ได้จัดขึ้นในปี 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_en": "What company constructed the vehicle when the driver shows as not held?",
    "question_th": "บริษัทใดสร้างรถยนต์คันนี้ขึ้นมาเมื่อคนขับแสดงสถานะว่าไม่ได้ถูกควบคุม?",
    "context": "CREATE TABLE table_name_61 (constructor VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_18 WHERE year = \"1955\"",
    "question_en": "What is the name of the driver in 1955?",
    "question_th": "คนขับชื่ออะไรในปี 2498?",
    "context": "CREATE TABLE table_name_18 (driver VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_48 WHERE \"report\" = \"report\" AND year = \"1955\"",
    "question_en": "What is the name of the constructor when report shows report in 1955?",
    "question_th": "ชื่อของ Constructor เมื่อรายงานแสดงรายงานในปี 1955 คืออะไร?",
    "context": "CREATE TABLE table_name_48 (constructor VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT induction FROM table_name_93 WHERE years = \"1975–1976\"",
    "question_en": "What is the inductioin for 1975–1976?",
    "question_th": "การเหนี่ยวนำสำหรับปี 1975–1976 คืออะไร?",
    "context": "CREATE TABLE table_name_93 (induction VARCHAR, years VARCHAR)"
  },
  {
    "answer": "SELECT power FROM table_name_73 WHERE years = \"1972\"",
    "question_en": "What is the power of an engine of 1972?",
    "question_th": "พลังของเครื่องยนต์ปี 1972 คืออะไร?",
    "context": "CREATE TABLE table_name_73 (power VARCHAR, years VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_99 WHERE away_team = \"richmond\"",
    "question_en": "In the game where richmond was the away team, what venue was it played at?",
    "question_th": "ในเกมที่ริชมอนด์เป็นทีมเยือน แข่งที่สนามไหน?",
    "context": "CREATE TABLE table_name_99 (venue VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_90 WHERE home_team = \"fitzroy\"",
    "question_en": "On what date did the match where fitzroy was the home team occur?",
    "question_th": "แมตช์ที่ฟิตซ์รอยเป็นเจ้าบ้านเกิดขึ้นวันไหน?",
    "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_en": "What is the smallest apps in Honduras with less than 2 goals for Club Deportivo Victoria in a division over 1?",
    "question_th": "แอพที่เล็กที่สุดในฮอนดูรัสที่มีน้อยกว่า 2 ประตูให้กับ Club Deportivo Victoria ในดิวิชั่นมากกว่า 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_en": "What grid for jacques villeneuve with over 36 laps?",
    "question_th": "ตารางอะไรของ ฌาค วิลล์เนิฟ ที่วิ่งเกิน 36 รอบ?",
    "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_en": "What were the lowest laps of Tarso Marques?",
    "question_th": "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_en": "What's the average Grid for those who spun off after Lap 64?",
    "question_th": "ตารางเฉลี่ยของคนที่แยกตัวหลังจากรอบที่ 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_en": "What is the grid total that has a Time/Retired of + 1:33.141, and under 70 laps?",
    "question_th": "ผลรวมของกริดที่มีเวลา/เกษียณเป็น + 1:33.141 และต่ำกว่า 70 รอบเป็นเท่าใด",
    "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_en": "What is the high lap total for tyrrell - yamaha, and a Time/Retired of + 1 lap?",
    "question_th": "ผลรวมรอบสูงสำหรับ Tyrrell - Yamaha และเวลา/เกษียณ + 1 รอบเป็นเท่าใด",
    "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_en": "What is the low lap total for a grid of 14?",
    "question_th": "ผลรวมรอบต่ำสำหรับกริด 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_en": "How many laps for martin brundle with a grid of less than 10?",
    "question_th": "Martin Brundle มีกริดน้อยกว่า 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_en": "What was the average points in the quarterfinals domestic cup?",
    "question_th": "คะแนนเฉลี่ยในรอบก่อนรองชนะเลิศถ้วยในประเทศคือเท่าไร?",
    "context": "CREATE TABLE table_name_72 (points INTEGER, domestic_cup VARCHAR)"
  },
  {
    "answer": "SELECT level FROM table_name_22 WHERE domestic_cup = \"quarterfinals\"",
    "question_en": "Which level is quarterfinals domestic cup?",
    "question_th": "ถ้วยในประเทศรอบก่อนรองชนะเลิศระดับใด?",
    "context": "CREATE TABLE table_name_22 (level VARCHAR, domestic_cup VARCHAR)"
  },
  {
    "answer": "SELECT format FROM table_name_78 WHERE catalogue = \"148615\"",
    "question_en": "What format is catalogue 148615 in?",
    "question_th": "แคตตาล็อก 148615 อยู่ในรูปแบบใด",
    "context": "CREATE TABLE table_name_78 (format VARCHAR, catalogue VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_name_7 WHERE date = \"june 8, 2004\"",
    "question_en": "Which region was on June 8, 2004?",
    "question_th": "ภูมิภาคใดคือวันที่ 8 มิถุนายน พ.ศ. 2547",
    "context": "CREATE TABLE table_name_7 (region VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT format FROM table_name_94 WHERE catalogue = \"wpcr13504\"",
    "question_en": "What format is catalogue WPCR13504 in?",
    "question_th": "แคตตาล็อก WPCR13504 อยู่ในรูปแบบใด",
    "context": "CREATE TABLE table_name_94 (format VARCHAR, catalogue VARCHAR)"
  },
  {
    "answer": "SELECT format FROM table_name_79 WHERE catalogue = \"9362486152\" AND region = \"australia\"",
    "question_en": "What format is the Catalogue 9362486152 from the region of Australia in?",
    "question_th": "แคตตาล็อก 9362486152 จากภูมิภาคออสเตรเลียอยู่ในรูปแบบใด",
    "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_en": "What region is the catalogue number 9362486152 that was from September 3, 2004 from?",
    "question_th": "แค็ตตาล็อกหมายเลข 9362486152 ของวันที่ 3 กันยายน 2547 มาจากภูมิภาคใด",
    "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_en": "What region is the catalogue released on June 8, 2004 from?",
    "question_th": "แค็ตตาล็อกที่เผยแพร่เมื่อวันที่ 8 มิถุนายน พ.ศ. 2547 มาจากภูมิภาคใด",
    "context": "CREATE TABLE table_name_88 (region VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_87 WHERE home_team = \"carlton\"",
    "question_en": "What day is carlton the home side?",
    "question_th": "คาร์ลตัน ฝั่งเจ้าบ้านวันไหน?",
    "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_en": "What is the home team's score when south melbourne is away?",
    "question_th": "เจ้าบ้านสกอร์เท่าไหร่เมื่อเซาธ์ เมลเบิร์น เยือน?",
    "context": "CREATE TABLE table_name_23 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT listed FROM table_name_17 WHERE cerclis_id = \"msd004006995\"",
    "question_en": "Tell me the listed when cerclis id is msd004006995",
    "question_th": "บอกฉันในรายการเมื่อ cerclis id คือ 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_en": "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?",
    "question_th": "อันดับของเวลาสำหรับตอนที่มีเรตติ้งมากกว่า 2.9, เรตติ้ง/ส่วนแบ่ง 2.6/8 และอันดับสำหรับคืนที่สูงกว่า 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_en": "What is the smallest rating with nightly rank smaller than 7, timeslot rank smaller than 5 and eposide after episode 6?",
    "question_th": "เรตติ้งที่น้อยที่สุดที่มีอันดับต่อคืนน้อยกว่า 7, ช่วงเวลาอันดับน้อยกว่า 5 และออกใหม่หลังตอนที่ 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_en": "What is the lowest nightly rank for an episode after episode 1 with a rating/share of 2.6/8?",
    "question_th": "อันดับต่อคืนต่ำสุดของตอนต่อจากตอนที่ 1 ด้วยเรตติ้ง/แชร์ 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_en": "What is the timeslot rank when the rating is smaller than 2.6 and the share is more than 4?",
    "question_th": "อันดับของช่วงเวลาคืออะไรเมื่อเรตติ้งน้อยกว่า 2.6 และส่วนแบ่งมากกว่า 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_en": "What is the smallest timeslot rank when the rating is smaller than 2.6?",
    "question_th": "อันดับช่วงเวลาที่เล็กที่สุดเมื่อเรตติ้งน้อยกว่า 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_en": "What away team played at Kardinia Park?",
    "question_th": "ทีมเยือนทีมไหนเล่นที่คาร์ดิเนีย พาร์ก?",
    "context": "CREATE TABLE table_name_24 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_82 WHERE home_team = \"hawthorn\"",
    "question_en": "What team played Hawthorn?",
    "question_th": "ทีมใดเล่นฮอว์ธอร์น?",
    "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_en": "What is the total wins with less than 21 goals taken?",
    "question_th": "ชัยชนะทั้งหมดที่ทำได้น้อยกว่า 21 ประตูคือเท่าไร?",
    "context": "CREATE TABLE table_name_19 (wins INTEGER, goals_against INTEGER)"
  },
  {
    "answer": "SELECT date FROM table_name_96 WHERE game = 59",
    "question_en": "What is the date of game 59?",
    "question_th": "เกมปี 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_en": "What player is a lock with 1 cap?",
    "question_th": "ผู้เล่นคนไหนล็อค 1 แคป?",
    "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_en": "What position does ceri sweeney with under 87 caps of the newport gwent dragons play?",
    "question_th": "เซรี สวีนีย์ที่ลงเล่นต่ำกว่า 87 แคปของนิวพอร์ต เกวนท์ ดรากอนส์ เล่นตำแหน่งใด?",
    "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_en": "What player has 12 caps?",
    "question_th": "นักเตะคนไหนมี 12 แคป?",
    "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_en": "Tell me the Shuji Kondo for MAZADA of X with Ryuji Hijikata of hijikata (14:24)",
    "question_th": "บอก Shuji Kondo สำหรับ MAZADA ของ X กับ Ryuji Hijikata แห่ง 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_en": "Name the El samurai with MAZADA of x for Ryuji Hijikata of draw (30:00)",
    "question_th": "ตั้งชื่อเอลซามูไรด้วย MAZADA ของ x สำหรับ Ryuji Hijikata ของการจับฉลาก (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_en": "Name the MAZADA for El Samurai of mazada (16:22)",
    "question_th": "ตั้งชื่อ MAZADA สำหรับ El Samurai ของ 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_en": "Name the Shuji Kondo for MAZADA of hijikata (14:24)",
    "question_th": "ตั้งชื่อ Shuji Kondo สำหรับ MAZADA ของ 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_en": "when was the building withdrawn when the builder was ac cars and was introduced before 1958?",
    "question_th": "อาคารนี้ถูกถอนออกเมื่อใดตอนที่ผู้สร้างเป็นรถ ac และเปิดตัวก่อนปี 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_en": "What was the decision on october 5?",
    "question_th": "การตัดสินใจในวันที่ 5 ตุลาคมคืออะไร?",
    "context": "CREATE TABLE table_name_44 (decision VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_41 WHERE venue = \"victoria park\"",
    "question_en": "Who played home team at Victoria Park?",
    "question_th": "ใครเล่นทีมเหย้าที่วิคตอเรีย พาร์ค?",
    "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_en": "What Season has Goals greater than 0 and less than 33 Apps?",
    "question_th": "ฤดูกาลใดมีเป้าหมายมากกว่า 0 และน้อยกว่า 33 แอป",
    "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_en": "How many carries for the RB averaging 4.7, and a long of over 30 yards?",
    "question_th": "มีกี่ลูกสำหรับ RB เฉลี่ย 4.7 และยาวกว่า 30 หลา?",
    "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_en": "How many yards did kevin swayne average, with a long carry over 7?",
    "question_th": "เควิน สเวย์น เฉลี่ยได้กี่หลา โดยตีไกลได้มากกว่า 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_en": "What is the catalogue for Harbor Lights as a title?",
    "question_th": "แคตตาล็อกของ Harbor Lights เป็นชื่ออะไร?",
    "context": "CREATE TABLE table_name_59 (catalogue VARCHAR, song_title VARCHAR)"
  },
  {
    "answer": "SELECT catalogue FROM table_name_51 WHERE track = 27",
    "question_en": "What cataglogue has 27 tracks?",
    "question_th": "แคตตาล็อกใดมี 27 เพลง?",
    "context": "CREATE TABLE table_name_51 (catalogue VARCHAR, track VARCHAR)"
  },
  {
    "answer": "SELECT first_year_played FROM table_name_12 WHERE doubles_w_l = \"8–3\"",
    "question_en": "Which year first played with Double W-L of 8–3?",
    "question_th": "ปีไหนที่เล่นกับ Double WL ที่ 8–3 เป็นครั้งแรก?",
    "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_en": "What is the height that has a year after 1983 and is named Phoenix Tower?",
    "question_th": "ความสูงหนึ่งปีหลังจากปี 1983 และมีชื่อว่า 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_en": "What is the oldest year listed with the 1500 Louisiana Street name?",
    "question_th": "ปีที่เก่าแก่ที่สุดที่ระบุด้วยชื่อ 1500 Louisiana Street คือปีใด",
    "context": "CREATE TABLE table_name_87 (year INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT height_ft___m FROM table_name_32 WHERE rank = \"11\"",
    "question_en": "What is the Height of rank 11?",
    "question_th": "อันดับ 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_en": "What is the largest enrollment for anglican day schools founded after 1929?",
    "question_th": "การลงทะเบียนที่ใหญ่ที่สุดสำหรับโรงเรียนสอนภาษาอังกฤษแบบไปเช้าเย็นกลับที่ก่อตั้งหลังปี 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_en": "What city of license is associated with call sign w244bk?",
    "question_th": "เมืองใบอนุญาตใดที่เกี่ยวข้องกับสัญญาณเรียก 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_en": "What city of license has a Frequency under 107.7, and a call sign of w247aq?",
    "question_th": "เมืองที่ได้รับใบอนุญาตใดมีความถี่ต่ำกว่า 107.7 และมีสัญญาณเรียกขานเป็น 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_en": "Which team was played against on the game where Earl Watson (6) had the highest assists on January 19?",
    "question_th": "ทีมใดที่เล่นกับในเกมที่เอิร์ล วัตสัน (6) ทำแอสซิสต์สูงสุดเมื่อวันที่ 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_en": "A singular abbreviation of p. is used for what singular word?",
    "question_th": "คำย่อเอกพจน์ของ p ใช้กับคำเอกพจน์อะไร?",
    "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_en": "A plural abbreviation of pp. is used for what singular word?",
    "question_th": "คำย่อพหูพจน์ของ pp. ใช้กับคำใดเป็นเอกพจน์?",
    "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_en": "The plural word of hands uses what singular word?",
    "question_th": "คำพหูพจน์ของมือใช้คำเอกพจน์อะไร?",
    "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_en": "The plural word of following lines or pages has what plural abbreviation?",
    "question_th": "คำพหูพจน์ของบรรทัดหรือหน้าต่อไปนี้มีตัวย่อพหูพจน์ข้อใด",
    "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_en": "The plural abbreviation of ll. uses what plural word?",
    "question_th": "ตัวย่อพหูพจน์ของ ll ใช้คำอะไรเป็นพหูพจน์?",
    "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_en": "The singular word of hand uses what plural word?",
    "question_th": "คำเอกพจน์ของมือใช้คำอะไรเป็นพหูพจน์?",
    "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_en": "How much did the home team st kilda score?",
    "question_th": "เจ้าบ้านเซนต์คิลดาทำสกอร์ได้เท่าไหร่?",
    "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_en": "When the crowd was larger than 7,500 what was the away teams score?",
    "question_th": "เมื่อคนดูเกิน 7,500 คะแนน ทีมเยือนได้เท่าไหร่?",
    "context": "CREATE TABLE table_name_84 (away_team VARCHAR, crowd INTEGER)"
  },
  {
    "answer": "SELECT COUNT(crowd) FROM table_name_42 WHERE venue = \"junction oval\"",
    "question_en": "What's the total number of people to attend games at junction oval?",
    "question_th": "จำนวนคนที่เข้าร่วมการแข่งขันที่วงรีชุมทางคือเท่าไร?",
    "context": "CREATE TABLE table_name_42 (crowd VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(crowd) FROM table_name_62 WHERE venue = \"victoria park\"",
    "question_en": "How many people have attended victoria park?",
    "question_th": "มีคนไปวิคตอเรียพาร์คกี่คน?",
    "context": "CREATE TABLE table_name_62 (crowd VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT number_of_votes FROM table_name_79 WHERE election = 1941",
    "question_en": "How many people voted in the election of 1941?",
    "question_th": "การเลือกตั้งปี 2484 มีผู้ลงคะแนนกี่คน?",
    "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_en": "Which candidate lost the election that 770,046 people voted in?",
    "question_th": "ผู้สมัครคนใดแพ้การเลือกตั้งที่มีผู้ลงคะแนน 770,046 คน?",
    "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_en": "Which candidate won 61.47% of the votes?",
    "question_th": "ผู้สมัครคนใดได้รับคะแนนเสียง 61.47%?",
    "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_en": "What percentage of votes did the candidate win in the election of 1969?",
    "question_th": "ผู้สมัครได้รับคะแนนเสียงเท่าใดในการเลือกตั้งปี 2512",
    "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_en": "Which GWR numbers had a quantity less than 2 when the M&SWJ number was 9?",
    "question_th": "หมายเลข GWR ใดมีปริมาณน้อยกว่า 2 เมื่อหมายเลข M&SWJ คือ 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_en": "Which manucfaturer's type was 2-6-0?",
    "question_th": "ผู้ผลิตรายไหนคือ 2-6-0?",
    "context": "CREATE TABLE table_name_68 (manufacturer VARCHAR, type VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_61 WHERE record = \"14–10–2\"",
    "question_en": "What was the score of the game when the Devils had a record of 14–10–2?",
    "question_th": "เมื่อปีศาจมีสถิติ 14–10–2 ในเกมนั้นสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_61 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_49 WHERE record = \"21–14–3\"",
    "question_en": "What was the date of the game when the Devils had a record of 21–14–3?",
    "question_th": "วันที่ของเกมคือวันที่ปีศาจมีสถิติ 21–14–3?",
    "context": "CREATE TABLE table_name_49 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT distance FROM table_name_7 WHERE winning_horse = \"summer doldrums\"",
    "question_en": "What distance did the winning horse run in the Summer Doldrums.",
    "question_th": "ม้าที่ชนะวิ่งได้ไกลแค่ไหนในช่วง 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_en": "Who is the jockey for the winning horse Rafael Bejarano?",
    "question_th": "ใครคือผู้จัดม้าของราฟาเอล เบจาราโน ม้าผู้ชนะ?",
    "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_en": "What is the race with the track distance of 6 furlongs and spectacular bid stakes?",
    "question_th": "การแข่งขันที่มีระยะการติดตาม 6 ระยะและการเดิมพันอันน่าทึ่งคืออะไร?",
    "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_en": "what race did Dominican win with a distance of 1-1/16 miles?",
    "question_th": "โดมินิกันชนะการแข่งขันอะไรด้วยระยะทาง 1-1/16 ไมล์",
    "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_en": "What tournament since 1973 has a result of 1st?",
    "question_th": "การแข่งขันใดตั้งแต่ปี 1973 มีผลการแข่งขันที่ 1?",
    "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_en": "In what tournament was there an extra of 400 m hurdles?",
    "question_th": "มีอุปสรรค์เพิ่มอีก 400 ม. ในทัวร์นาเมนต์ใด?",
    "context": "CREATE TABLE table_name_31 (tournament VARCHAR, extra VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_97 WHERE year = 1973",
    "question_en": "What was the Result in Year 1973?",
    "question_th": "ผลลัพธ์ในปี 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_en": "In which year was the Tournament of european indoor championships played where the Extra was 800 m and the Result was 2nd?",
    "question_th": "การแข่งขันชิงแชมป์ในร่มยุโรปเล่นในปีใดโดยที่ Extra อยู่ที่ 800 ม. และผลการแข่งขันคือที่ 2",
    "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_en": "What player is from Chula Vista, Ca?",
    "question_th": "นักเตะคนไหนมาจาก 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_en": "What MLB draft has Shaun Boyd?",
    "question_th": "Shaun Boyd มีร่าง MLB อะไรบ้าง?",
    "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_en": "what is the college/junior/club team (league) when the round is more than 2 and the player is bert robertsson (d)?",
    "question_th": "ทีมวิทยาลัย/จูเนียร์/สโมสร (ลีก) คืออะไร เมื่อรอบเกิน 2 และผู้เล่นคือ เบิร์ต โรเบิร์ตสัน (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_en": "what is the college/junior/club team (league) when the round is less than 7?",
    "question_th": "ทีมวิทยาลัย/จูเนียร์/สโมสร (ลีก) คือทีมไหนเมื่อรอบไม่ถึง 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_en": "what is the nhl team for round 10?",
    "question_th": "ทีม nhl สำหรับรอบ 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_en": "what is the highest round when the player is troy creurer (d)?",
    "question_th": "รอบสูงสุดเมื่อผู้เล่นคือ troy creurer (d) คืออะไร?",
    "context": "CREATE TABLE table_name_90 (round INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_10 WHERE week = 3",
    "question_en": "Who was the opponent on week 3?",
    "question_th": "คู่ต่อสู้ในสัปดาห์ที่ 3 คือใคร?",
    "context": "CREATE TABLE table_name_10 (opponent VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT chapter FROM table_name_65 WHERE location = \"normal, illinois\"",
    "question_en": "What chapter is located in Normal, Illinois?",
    "question_th": "มีบทใดบ้างที่ตั้งอยู่ในนอร์มัล รัฐอิลลินอยส์",
    "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_en": "What is the average position for tb2l teams promoted champion?",
    "question_th": "ตำแหน่งเฉลี่ยของทีม tb2l ที่ได้เลื่อนตำแหน่งแชมป์คือเท่าไร?",
    "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_en": "How many teams were promoted in the postseason in a tier above 2?",
    "question_th": "มีกี่ทีมที่ได้รับการเลื่อนชั้นในช่วงหลังฤดูกาลในระดับที่สูงกว่า 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_en": "What is the Home team score At Windy Hill?",
    "question_th": "สกอร์ทีมเหย้าที่วินดี้ ฮิลล์เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_48 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT partner FROM table_name_10 WHERE score_in_the_final = \"2–6, 7–6, 7–6\"",
    "question_en": "Who is the partner in the final with a score of 2–6, 7–6, 7–6?",
    "question_th": "ใครคือคู่ครองในรอบชิงชนะเลิศด้วยสกอร์ 2–6, 7–6, 7–6?",
    "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–6, 6–7\"",
    "question_en": "On what surface was Ivan Lendl a partner with a runner-up outcome and final score of 2–6, 6–7?",
    "question_th": "Ivan Lendl เป็นคู่หูที่มีผลการแข่งขันรองชนะเลิศและคะแนนสุดท้าย 2–6, 6–7 บนพื้นผิวใด",
    "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_en": "What was the highest crowd at the venue MCG?",
    "question_th": "ผู้เข้าชมงาน 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_en": "What is the away team score at the Windy Hill venue?",
    "question_th": "คะแนนทีมเยือนที่วินดี้ ฮิลล์เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_8 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_53 WHERE away_team = \"melbourne\"",
    "question_en": "Where was the game when Melbourne was the away team?",
    "question_th": "เกมไหนเมื่อเมลเบิร์นเป็นทีมเยือน?",
    "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_en": "What was the away score when the game was at Brunswick Street Oval?",
    "question_th": "สกอร์ทีมเยือนเมื่อเกมที่บรันสวิค สตรีท โอวัลเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_70 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(round) FROM table_name_28 WHERE circuit = \"calder park\"",
    "question_en": "How many rounds were run at Calder Park?",
    "question_th": "วิ่งที่คาลเดอร์พาร์คกี่รอบ?",
    "context": "CREATE TABLE table_name_28 (round VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT state FROM table_name_74 WHERE circuit = \"sandown\"",
    "question_en": "In which state can you find the Sandown circuit?",
    "question_th": "คุณจะพบวงจร Sandown ในสถานะใด",
    "context": "CREATE TABLE table_name_74 (state VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(round) FROM table_name_84 WHERE state = \"new south wales\"",
    "question_en": "How many rounds were run in New South Wales?",
    "question_th": "นิวเซาธ์เวลส์จัดไปกี่รอบ?",
    "context": "CREATE TABLE table_name_84 (round VARCHAR, state VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_42 WHERE year = \"1969\"",
    "question_en": "Who is the driver from 1969?",
    "question_th": "ใครคือคนขับจากปี 1969?",
    "context": "CREATE TABLE table_name_42 (driver VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_83 WHERE year = \"1964\"",
    "question_en": "Who was the driver in 1964?",
    "question_th": "ใครคือคนขับในปี 2507?",
    "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_en": "What is the highest diff with drawn of 6 and play larger than 18?",
    "question_th": "อะไรคือความแตกต่างสูงสุดเมื่อเสมอ 6 และเล่นมากกว่า 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_en": "How many games were played when the loss is less than 5 and points greater than 41?",
    "question_th": "มีการเล่นกี่เกมเมื่อแพ้น้อยกว่า 5 และแต้มมากกว่า 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_en": "How many genes are in species burkholderia pseudomallei with 4,126,292 base pairs?",
    "question_th": "Burkholderia pseudomallei มียีนจำนวนกี่ยีนที่มีคู่เบส 4,126,292 คู่",
    "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_en": "Which strain has 1,312 genes?",
    "question_th": "สายพันธุ์ใดมียีน 1,312 ยีน",
    "context": "CREATE TABLE table_name_50 (strain VARCHAR, genes VARCHAR)"
  },
  {
    "answer": "SELECT genes FROM table_name_94 WHERE base_pairs = \"4,895,836\"",
    "question_en": "Which gene has 4,895,836 base pairs?",
    "question_th": "ยีนใดมีคู่เบส 4,895,836 คู่",
    "context": "CREATE TABLE table_name_94 (genes VARCHAR, base_pairs VARCHAR)"
  },
  {
    "answer": "SELECT species FROM table_name_58 WHERE genes = \"3,441\"",
    "question_en": "Which species has 3,441 genes?",
    "question_th": "สัตว์ชนิดใดมียีน 3,441 ยีน",
    "context": "CREATE TABLE table_name_58 (species VARCHAR, genes VARCHAR)"
  },
  {
    "answer": "SELECT base_pairs FROM table_name_90 WHERE strain = \"tohamai\"",
    "question_en": "How many base pairs are there in the tohamai strain?",
    "question_th": "โทฮาไมมีคู่เบสกี่คู่?",
    "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_en": "What was the home team score at junction oval?",
    "question_th": "สกอร์ของเจ้าบ้านที่จังชั่นโอวัลเป็นเท่าไหร่?",
    "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_en": "What was the away team score at western oval?",
    "question_th": "คะแนนทีมเยือนที่เวสเทิร์นโอวัลเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_46 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT MIN(crowd) FROM table_name_50 WHERE venue = \"kardinia park\"",
    "question_en": "what is the lowest crowd at kardinia park",
    "question_th": "คนเยอะที่สุดในคาร์ดิเนียพาร์คคือคนไหน",
    "context": "CREATE TABLE table_name_50 (crowd INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_14 WHERE tournament = \"budapest\"",
    "question_en": "What was the score for the tournament in Budapest?",
    "question_th": "คะแนนของทัวร์นาเมนต์ที่บูดาเปสต์เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_14 (score VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_96 WHERE winner = \"patrick rafter\"",
    "question_en": "Which tournament did Patrick Rafter win?",
    "question_th": "Patrick Rafter ชนะการแข่งขันใด",
    "context": "CREATE TABLE table_name_96 (tournament VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_60 WHERE score = \"6–7(4), 7–6(3), [11–9]\"",
    "question_en": "Which winner won by a score of 6–7(4), 7–6(3), [11–9]?",
    "question_th": "ผู้ชนะคนใดชนะด้วยคะแนน 6–7(4), 7–6(3), [11–9]?",
    "context": "CREATE TABLE table_name_60 (winner VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_53 WHERE runner_up = \"goran ivanišević\" AND tournament = \"algarve\"",
    "question_en": "what was the score when goran ivanišević was runner up and the tournament was in algarve?",
    "question_th": "คะแนนเมื่อ goran ivanišević รองแชมป์และทัวร์นาเมนต์อยู่ที่ 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_en": "What was the score when Stefan Edberg won?",
    "question_th": "สกอร์เท่าไหร่เมื่อ Stefan Edberg ชนะ?",
    "context": "CREATE TABLE table_name_64 (score VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_42 WHERE away_team = \"south melbourne\"",
    "question_en": "Which Date has an Away team of south melbourne?",
    "question_th": "นัดไหนมีทีมเยือนเมลเบิร์นใต้?",
    "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_en": "What is the Away team score for mcg?",
    "question_th": "คะแนนทีมเยือนสำหรับ 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_en": "What is the total Crowd with a Home team of collingwood?",
    "question_th": "ฝูงชนทั้งหมดที่มีทีมเหย้าของคอลลิงวูดเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_98 (crowd INTEGER, home_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_99 WHERE venue = \"mcg\"",
    "question_en": "When mcg is the Venue what's the Away team?",
    "question_th": "เมื่อ mcg เป็นที่จัดงาน ทีมเยือนคือทีมไหน?",
    "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_en": "When the Away team footscray played on the Date of 19 july 1980, what was the amount of people in the Crowd?",
    "question_th": "ตอนที่ฟุตสเครย์ทีมเยือนลงเล่นในวันที่ 19 กรกฎาคม 1980 คนในฝูงชนเป็นจำนวนเท่าไร?",
    "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_en": "When the Home team of collingwood played, what was the opposing Away team score?",
    "question_th": "เมื่อทีมเหย้า คอลลิงวูด ลงเล่น ทีมเยือนของฝ่ายตรงข้ามได้คะแนนเท่าไหร่?",
    "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_en": "When the Crowd is larger than 23,327, what Home team is playing?",
    "question_th": "เมื่อฝูงชนมากกว่า 23,327 ทีมเหย้าเล่นอะไร?",
    "context": "CREATE TABLE table_name_65 (home_team VARCHAR, crowd INTEGER)"
  },
  {
    "answer": "SELECT away_team FROM table_name_81 WHERE venue = \"vfl park\"",
    "question_en": "When vfl park is the venue what's the Away team playing?",
    "question_th": "เมื่อ vfl park เป็นสถานที่ที่ทีมเยือนเล่นอะไร?",
    "context": "CREATE TABLE table_name_81 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_71 WHERE home_team = \"collingwood\"",
    "question_en": "If collingwood was the Home team, what Date did they play?",
    "question_th": "ถ้าคอลลิงวูดเป็นทีมเจ้าบ้าน พวกเขาจะลงเล่นนัดไหน?",
    "context": "CREATE TABLE table_name_71 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_name_4 WHERE capacity = \"25138\"",
    "question_en": "Which club has a capacity of 25138?",
    "question_th": "สโมสรใดมีความจุ 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_en": "What Rank in Respective Divisions has a capacity of 4100?",
    "question_th": "อันดับใดในดิวิชั่นตามลำดับที่มีความจุ 4100?",
    "context": "CREATE TABLE table_name_60 (Rank VARCHAR, capacity VARCHAR)"
  },
  {
    "answer": "SELECT stadium FROM table_name_76 WHERE club = \"west ham united\"",
    "question_en": "What stadium has a club of west ham united?",
    "question_th": "สนามใดมีสโมสรเวสต์แฮมยูไนเต็ด?",
    "context": "CREATE TABLE table_name_76 (stadium VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_73 WHERE week = 16",
    "question_en": "What was the result of week 16?",
    "question_th": "สัปดาห์ที่ 16 ผลลัพธ์เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_73 (result VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_41 WHERE score = \"4-3\"",
    "question_en": "What is the date of the game with a score of 4-3?",
    "question_th": "สกอร์ 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_en": "What is the score of the game on 8 Sep 1990?",
    "question_th": "คะแนนของเกมวันที่ 8 ก.ย. 2533 เป็นเท่าไหร่?",
    "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_en": "Who is the opposition on the division 1 game at Stamford Bridge?",
    "question_th": "คู่แข่งในเกมดิวิชั่น 1 ที่สแตมฟอร์ด บริดจ์คือใคร?",
    "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_en": "Which rank has a total less than 9, less than 2 bronze, and from France?",
    "question_th": "อันดับไหนมีคะแนนรวมน้อยกว่า 9 น้อยกว่า 2 เหรียญทองแดง และจากฝรั่งเศส?",
    "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_en": "Which rank has more than 1 silver, more than 1 gold, and more than 4 bronze?",
    "question_th": "อันดับไหนมีมากกว่า 1 เหรียญเงิน มากกว่า 1 เหรียญทอง และมากกว่า 4 เหรียญทองแดง?",
    "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_en": "How many silver have a Total smaller than 3, a Bronze of 1, and a Gold larger than 0?",
    "question_th": "เงินจำนวนเท่าใดที่มีคะแนนรวมน้อยกว่า 3, ทองแดงเท่ากับ 1 และทองคำมากกว่า 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_en": "How many gold have a National of New Zealand with a total less than 2?",
    "question_th": "พลเมืองของประเทศนิวซีแลนด์มีทองคำจำนวนเท่าใดและมียอดรวมน้อยกว่า 2 เหรียญทอง",
    "context": "CREATE TABLE table_name_15 (gold INTEGER, nation VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_19 WHERE year = 2003",
    "question_en": "Who won in 2003?",
    "question_th": "ใครชนะในปี 2546?",
    "context": "CREATE TABLE table_name_19 (winner VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT AVG(year) FROM table_name_58 WHERE winner = \"scatman\"",
    "question_en": "What is the average year for scatman winning?",
    "question_th": "ปีเฉลี่ยที่ scatman ชนะคือเท่าไร?",
    "context": "CREATE TABLE table_name_58 (year INTEGER, winner VARCHAR)"
  },
  {
    "answer": "SELECT trainer FROM table_name_24 WHERE time = \"1:09.40\"",
    "question_en": "Who trained the horse with time of 1:09.40?",
    "question_th": "ใครฝึกม้าด้วยเวลา 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_en": "Where was the mediterranean games held?",
    "question_th": "กีฬาเมดิเตอร์เรเนียนจัดขึ้นที่ไหน?",
    "context": "CREATE TABLE table_name_83 (venue VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT MAX(year) FROM table_name_75 WHERE venue = \"turin, italy\"",
    "question_en": "When was the last time a venue was held in turin, italy?",
    "question_th": "ครั้งสุดท้ายที่จัดขึ้นที่เมืองตูริน ประเทศอิตาลี คือเมื่อใด",
    "context": "CREATE TABLE table_name_75 (year INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_3 WHERE tournament = \"universiade\" AND year = 1959",
    "question_en": "Where was the universiade held in 1959?",
    "question_th": "มหาวิทยาลัยจัดขึ้นที่ไหนในปี พ.ศ. 2502?",
    "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_en": "How many year was the venue in stockholm, sweden used?",
    "question_th": "สถานที่จัดงานในกรุงสตอกโฮล์ม สวีเดน ใช้มากี่ปีแล้ว?",
    "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_en": "What is a report for a race with Baconin Borzacchini in Tripoli in a year after 1928?",
    "question_th": "รายงานการแข่งขันกับ Baconin Borzacchini ในตริโปลีในหนึ่งปีหลังปี 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_en": "What was the constructor of the car that Achille Varzi drove before 1937?",
    "question_th": "อะไรคือผู้สร้างรถยนต์ที่ Achille Varzi ขับก่อนปี 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_en": "What was the constructor of the car that Hermann Lang drove after 1935?",
    "question_th": "ผู้สร้างรถยนต์ที่ Hermann Lang ขับหลังปี 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_en": "What is the Works Number that has a Number of 153 in 1916?",
    "question_th": "หมายเลขผลงานที่มีหมายเลข 153 ในปี 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_en": "On what Date was the Works Number 7?",
    "question_th": "งานหมายเลข 7 ออกวันไหน?",
    "context": "CREATE TABLE table_name_18 (date VARCHAR, works_number VARCHAR)"
  },
  {
    "answer": "SELECT builder FROM table_name_86 WHERE works_number = \"16272\"",
    "question_en": "Which Builder has a Works Number of 16272?",
    "question_th": "ช่างก่อสร้างคนไหนมีหมายเลขผลงาน 16272?",
    "context": "CREATE TABLE table_name_86 (builder VARCHAR, works_number VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_99 WHERE works_number = \"12\"",
    "question_en": "On what Date was the Works Number 12?",
    "question_th": "งานหมายเลข 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_en": "Where did South Melbourne play as the home team?",
    "question_th": "เซาธ์ เมลเบิร์น เล่นเป็นเจ้าบ้านที่ไหน?",
    "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_en": "What was the attendance when St Kilda played as the home team?",
    "question_th": "การเข้าร่วมงานเมื่อเซนต์คิลดาเล่นเป็นเจ้าบ้าน?",
    "context": "CREATE TABLE table_name_66 (crowd VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_55 WHERE grid = \"18\"",
    "question_en": "Which driver had a grid number of 18?",
    "question_th": "นักแข่งคนไหนมีหมายเลขกริดเป็น 18",
    "context": "CREATE TABLE table_name_55 (driver VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_71 WHERE driver = \"shinji nakano\"",
    "question_en": "Which constructor had Shinji Nakano as a driver?",
    "question_th": "คอนสตรัคเตอร์คนไหนที่มีชินจิ นากาโนะเป็นคนขับรถ?",
    "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_en": "What was the home team score at Glenferrie Oval?",
    "question_th": "สกอร์ทีมเหย้าที่ 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_en": "What date has a Data of 19:29?",
    "question_th": "วันที่ใดมีข้อมูล 19:29?",
    "context": "CREATE TABLE table_name_39 (date VARCHAR, data VARCHAR)"
  },
  {
    "answer": "SELECT athlete FROM table_name_74 WHERE event = \"35 km\"",
    "question_en": "Which athlete has a 35 km event?",
    "question_th": "นักกีฬาคนไหนมีการแข่งขัน 35 กม.?",
    "context": "CREATE TABLE table_name_74 (athlete VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT nation FROM table_name_22 WHERE team = \"discovery channel\"",
    "question_en": "What nation is the cyclist from team discovery channel?",
    "question_th": "นักปั่นจากช่อง team Discovery เป็นคนประเทศไหนครับ?",
    "context": "CREATE TABLE table_name_22 (nation VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT nation FROM table_name_95 WHERE uci_protour_points = 25",
    "question_en": "What nation is the cyclist hat has a UCI ProTour Points of 25?",
    "question_th": "หมวกนักปั่นของประเทศใดมีคะแนน UCI ProTour 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_en": "What day did the VFL play Punt Road Oval?",
    "question_th": "VFL เล่น 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_en": "What was the home teams score at Western Oval?",
    "question_th": "คะแนนของเจ้าบ้านที่เวสเทิร์น โอวัลเป็นเท่าไหร่?",
    "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_en": "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?",
    "question_th": "รางวัลที่ 1 ของผู้ที่มีคะแนน 207 (-9) และเงินรางวัลมากกว่า 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_en": "What is the ISBN of the book with a first edition in May 2011?",
    "question_th": "ISBN ของหนังสือที่พิมพ์ครั้งแรกในเดือนพฤษภาคม 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_en": "Which first edition has an ISBN of 978-0785166252?",
    "question_th": "ฉบับพิมพ์ครั้งแรกใดมี ISBN 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_en": "Which first edition has 264 pages and the ISBN of 978-0785111832?",
    "question_th": "ฉบับพิมพ์ครั้งแรกใดมี 264 หน้าและ ISBN 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_en": "How many people were in the crowd at collingwood's home game?",
    "question_th": "มีกี่คนที่อยู่ในฝูงชนในเกมเหย้าของคอลลิงวูด?",
    "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_en": "What did the away team score when playing against fitzroy?",
    "question_th": "ทีมเยือนได้คะแนนเท่าไหร่เมื่อเจอกับฟิตซ์รอย?",
    "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_en": "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?",
    "question_th": "หมายเลขประจำเครื่องของรถนำร่องที่เป็นสีดำ มีหมายเลขรถนำร่องมากกว่า 2 และหมายเลขเครื่องยนต์ 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_en": "What is the low lap total that has a Time or Retired of accident?",
    "question_th": "ผลรวมรอบต่ำที่มีเวลาหรือเกษียณจากอุบัติเหตุคือเท่าใด",
    "context": "CREATE TABLE table_name_35 (laps INTEGER, time_retired VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_79 WHERE position = \"fly-half\"",
    "question_en": "Which player was a fly-half?",
    "question_th": "ผู้เล่นคนไหนที่เป็นฟลายฮาล์ฟ?",
    "context": "CREATE TABLE table_name_79 (player VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT AVG(caps) FROM table_name_36 WHERE player = \"ryota asano\"",
    "question_en": "What is the mean number of caps for Ryota Asano?",
    "question_th": "จำนวนแคปเฉลี่ยของ เรียวตะ อาซาโนะ คือเท่าไร?",
    "context": "CREATE TABLE table_name_36 (caps INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT AVG(caps) FROM table_name_67 WHERE player = \"ryota asano\"",
    "question_en": "What is the mean number of caps for Ryota Asano?",
    "question_th": "จำนวนแคปเฉลี่ยของ เรียวตะ อาซาโนะ คือเท่าไร?",
    "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_en": "Who is the forward from Grambling State?",
    "question_th": "ใครคือกองหน้าจาก 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_en": "What is the nationality of the guard who plays at Utah?",
    "question_th": "ผู้พิทักษ์ที่เล่นที่ยูทาห์มีสัญชาติอะไร?",
    "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_en": "What is the position of the player from Tampa?",
    "question_th": "นักเตะจากแทมปาอยู่ตำแหน่งไหน?",
    "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_en": "What is the nationality of the player on the Jazz from 1974-79?",
    "question_th": "นักเตะแจ๊สตั้งแต่ปี 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_en": "Who is the player who went to school at Tampa?",
    "question_th": "นักเตะที่ไปเรียนที่แทมปาคือใคร?",
    "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_en": "What is the nationality of the player on the Jazz from 1974-79?",
    "question_th": "นักเตะแจ๊สตั้งแต่ปี 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_en": "What was the score of the away team at the the glenferrie oval?",
    "question_th": "ทีมเยือนที่เกลนเฟอร์รี่โอวัลได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_67 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT institution FROM table_name_55 WHERE location = \"athens, ga, us\"",
    "question_en": "What institution is located in athens, ga, us?",
    "question_th": "สถาบันใดตั้งอยู่ในเอเธนส์ จอร์เจีย เรา?",
    "context": "CREATE TABLE table_name_55 (institution VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_64 WHERE founded = 1996",
    "question_en": "What is the status of the institution that was founded in 1996?",
    "question_th": "สถานะของสถาบันที่ก่อตั้งในปี 1996 คืออะไร?",
    "context": "CREATE TABLE table_name_64 (status VARCHAR, founded VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_60 WHERE runs = \"332\"",
    "question_en": "During runs 332, what was the venue?",
    "question_th": "ระหว่างวิ่ง 332 สนามอะไร?",
    "context": "CREATE TABLE table_name_60 (venue VARCHAR, runs VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_43 WHERE runs = \"270\"",
    "question_en": "Which player's runs are 270?",
    "question_th": "การวิ่งของผู้เล่นคนไหนคือ 270?",
    "context": "CREATE TABLE table_name_43 (player VARCHAR, runs VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_92 WHERE season = \"1935\"",
    "question_en": "During season 1935, what was the venue?",
    "question_th": "ในระหว่างฤดูกาล พ.ศ. 2478 สถานที่จัดงานคือที่ใด?",
    "context": "CREATE TABLE table_name_92 (venue VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_29 WHERE player = \"les ames\"",
    "question_en": "For player Les Ames, what was the venue?",
    "question_th": "สำหรับนักเตะเลส์ อาเมส สนามคือที่ไหน?",
    "context": "CREATE TABLE table_name_29 (venue VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_7 WHERE grand_prix = \"austrian grand prix\"",
    "question_en": "When was the Austrian Grand Prix?",
    "question_th": "ออสเตรียกรังด์ปรีซ์จัดขึ้นเมื่อไหร่?",
    "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_en": "How many points has a draw greater than 3 and 3rd place?",
    "question_th": "เสมอมากกว่าอันดับ 3 และอันดับ 3 มีกี่แต้ม?",
    "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_en": "Name the average events for miller barber",
    "question_th": "ตั้งชื่อเหตุการณ์โดยเฉลี่ยสำหรับ 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_en": "Name the most wins for earnings of 130,002",
    "question_th": "ตั้งชื่อชัยชนะมากที่สุดสำหรับรายได้ 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_en": "What year was Neverchanger with the label of Latenight weeknight?",
    "question_th": "Neverchanger มีชื่อเพลงว่า 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_en": "What year was Ethereal 77, which has a CD album release type?",
    "question_th": "Ethereal 77 คือปีไหน ซึ่งมีรูปแบบการจำหน่ายซีดีอัลบั้ม?",
    "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_en": "what is the platform when the frequency (per hour) is 4 and the destination is west croydon?",
    "question_th": "แพลตฟอร์มคืออะไรเมื่อความถี่ (ต่อชั่วโมง) คือ 4 และปลายทางคือเวสต์ครอยดอน?",
    "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_en": "what is the highest platform number when the frequency (per hour) is 4, the operator is london overground and the destination is west croydon?",
    "question_th": "หมายเลขชานชาลาที่สูงที่สุดคืออะไรเมื่อความถี่ (ต่อชั่วโมง) คือ 4 ผู้ดำเนินการอยู่บนพื้นดินลอนดอน และปลายทางคือเวสต์ครอยดอน",
    "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_en": "What is the name of the team with a qual 1 time of 1:17.481?",
    "question_th": "ทีมที่เข้ารอบ 1 คูณ 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_en": "What is the qual 1 for the best of 1:18.067?",
    "question_th": "คะแนน 1 ที่ดีที่สุดสำหรับ 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_en": "What is the qual 1 when the qual 2 has no time and the best is 1:16.776?",
    "question_th": "อะไรคือรอบคัดเลือก 1 เมื่อรอบ 2 ไม่มีเวลาและดีที่สุดคือ 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_en": "What person on team Minardi Team USA with a qual of 1:17.481?",
    "question_th": "คนไหนในทีม Minardi Team USA ที่ทำได้ 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_en": "What is the name of the person with a qual 1 time of 1:16.850?",
    "question_th": "คนที่ได้คะแนน 1 คูณ 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_en": "What is the qual 2 when the qual 1 is 1:16.841?",
    "question_th": "อะไรคือคุณสมบัติ 2 เมื่อคุณสมบัติ 1 คือ 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_en": "Who is the Monarch whose Heir is Robert Curthose when the Reason is that the father became king?",
    "question_th": "กษัตริย์คือใครซึ่งรัชทายาทคือโรเบิร์ต เคอร์โธส ในเมื่อเหตุผลคือบิดาขึ้นเป็นกษัตริย์?",
    "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_en": "Which Monarch has succession unclear 1100-1103 as his Status?",
    "question_th": "พระมหากษัตริย์องค์ใดมีสถานะสืบราชบัลลังก์ไม่แน่ชัดระหว่าง ค.ศ. 1100-1103?",
    "context": "CREATE TABLE table_name_60 (monarch VARCHAR, status VARCHAR)"
  },
  {
    "answer": "SELECT reason FROM table_name_7 WHERE became_heir = \"1103\"",
    "question_en": "Which Reason is given when 1103 is the date for Became heir?",
    "question_th": "เหตุใดให้ไว้เมื่อ 1103 เป็นวันที่ได้เป็นรัชทายาท?",
    "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_en": "What is the Status when Henry I is the Monarch and the Reason is succession unclear 1100-1103?",
    "question_th": "สถานะเมื่อพระเจ้าเฮนรีที่ 1 เป็นกษัตริย์และเหตุผลในการสืบทอดไม่ชัดเจนในปี 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_en": "Name the tyre for hb bewaking team ensign with rounds of 13",
    "question_th": "ตั้งชื่อยางให้กับธงทีม HB Bewaking รอบ 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_en": "Name the round for engine of ford cosworth dfv 3.0 v8 with chassis fo 751",
    "question_th": "ตั้งชื่อรอบเครื่องยนต์ของ ford cosworth dfv 3.0 v8 พร้อมแชสซีสำหรับ 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_en": "Name the chassis for tyre of g and carlos reutemann",
    "question_th": "ตั้งชื่อแชสซีสำหรับยางของ g และ 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_en": "Name the entrant for chassis of gh1",
    "question_th": "ตั้งชื่อผู้เข้าร่วมแชสซีของ gh1",
    "context": "CREATE TABLE table_name_27 (entrant VARCHAR, chassis VARCHAR)"
  },
  {
    "answer": "SELECT rounds FROM table_name_82 WHERE entrant = \"stanley brm\"",
    "question_en": "Name the rounds for stanley brm",
    "question_th": "ตั้งชื่อรอบสำหรับ 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_en": "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?",
    "question_th": "อาชีพของท็อตแน่ม ฮ็อตสเปอร์สำหรับนักเตะที่ทำไป 10 ประตูจากอังกฤษ ลงเล่นในตำแหน่ง DF และมีแอปสโมสร 118 นัดในช่วงหลายปีที่ผ่านมาคือกี่ปี?",
    "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_en": "What is the position of the player from England with 62 goals?",
    "question_th": "ตำแหน่งนักเตะทีมชาติอังกฤษ 62 ประตู อยู่ตำแหน่งไหน?",
    "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_en": "How many goals did the player from England who played the position of mf and had 170 club apps had?",
    "question_th": "นักเตะจากอังกฤษที่เล่นตำแหน่ง MF และมี 170 แอพของสโมสรทำได้กี่ประตู?",
    "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_en": "How many goals did the player with 229 club apps have?",
    "question_th": "ผู้เล่นที่มี 229 แอพสโมสรทำได้กี่ประตู?",
    "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_en": "For which Award Ceremony was Emilio Pichardo as Bobby Strong nominated?",
    "question_th": "เอมิลิโอ พิชาร์โด ได้รับการเสนอชื่อเข้าชิงรางวัลบ็อบบี้ สตรองในพิธีมอบรางวัลใด",
    "context": "CREATE TABLE table_name_18 (award_ceremony VARCHAR, nominee VARCHAR)"
  },
  {
    "answer": "SELECT nominee FROM table_name_38 WHERE category = \"best female performer\"",
    "question_en": "Who was nominated for best female performer?",
    "question_th": "ใครได้รับการเสนอชื่อเข้าชิงนักแสดงนำหญิงยอดเยี่ยม?",
    "context": "CREATE TABLE table_name_38 (nominee VARCHAR, category VARCHAR)"
  },
  {
    "answer": "SELECT area FROM table_name_76 WHERE decile = \"8\"",
    "question_en": "What area is the school with a decile of 8 in?",
    "question_th": "โรงเรียนที่มีเดซิล 8 อยู่ในเขตใด?",
    "context": "CREATE TABLE table_name_76 (area VARCHAR, decile VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_27 WHERE authority = \"state\" AND roll = 318",
    "question_en": "Which school has a state authority and a roll of 318?",
    "question_th": "โรงเรียนไหนมีหน่วยงานของรัฐและมีม้วน 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_en": "In what area is torbay school with a state authority?",
    "question_th": "โรงเรียนทอร์เบย์มีหน่วยงานของรัฐอยู่ในพื้นที่ใด?",
    "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_en": "How many regular season titles did Kansas receive when they received fewer than 2 tournament titles and more than 0 total titles?",
    "question_th": "แคนซัสได้รับตำแหน่งในฤดูกาลปกติกี่รายการเมื่อพวกเขาได้รับรายการทัวร์นาเมนต์น้อยกว่า 2 รายการและรวมมากกว่า 0 รายการ",
    "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_en": "What is the time of retirement with Laps smaller than 66, a grid less than 10, and a Driver of heinz-harald frentzen?",
    "question_th": "เวลาเกษียณอายุโดยมีรอบสนามน้อยกว่า 66, ตารางน้อยกว่า 10 และนักแข่งของ 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_en": "How many laps does olivier panis have?",
    "question_th": "โอลิเวียร์ ปานิส มีกี่รอบ?",
    "context": "CREATE TABLE table_name_96 (laps VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_39 WHERE away_team = \"geelong\"",
    "question_en": "Which home team played against Geelong?",
    "question_th": "เจ้าบ้านทีมไหนเล่นกับจีลอง?",
    "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_en": "How large was the crowd when North Melbourne played as the away team?",
    "question_th": "นอร์ท เมลเบิร์น เล่นเป็นทีมเยือนมีจำนวนผู้ชมมากขนาดไหน?",
    "context": "CREATE TABLE table_name_62 (crowd VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_13 WHERE home_team = \"hawthorn\"",
    "question_en": "Who is the away team that played home team Hawthorn?",
    "question_th": "ทีมเยือนที่เล่นทีมเหย้าฮอว์ธอร์นคือใคร?",
    "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_en": "What is the name of the home team that played away team Footscray?",
    "question_th": "เจ้าบ้านที่เล่นทีมเยือนฟุตสเครย์ชื่ออะไร?",
    "context": "CREATE TABLE table_name_46 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_3 WHERE venue = \"mcg\"",
    "question_en": "Who is the home team that played at venue MCG?",
    "question_th": "ทีมเหย้าที่เล่นที่สนามเอ็มซีจีคือใคร?",
    "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_en": "What is the name of the first appearance when Chad Williams is a portrayal?",
    "question_th": "การปรากฏตัวครั้งแรกเมื่อแชด วิลเลียมส์รับบทเป็นชื่ออะไร?",
    "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_en": "Which character is portrayed by Elias Koteas?",
    "question_th": "ตัวละครใดที่รับบทโดย 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_en": "What is the Home Team Score at VFL Park?",
    "question_th": "คะแนนทีมเหย้าที่ 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_en": "What is the Home Team Score at Windy Hill?",
    "question_th": "คะแนนทีมเหย้าที่วินดี้ฮิลล์เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_64 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_98 WHERE away_team = \"carlton\"",
    "question_en": "On what Date is Carlton the Away Team?",
    "question_th": "คาร์ลตันจะเป็นทีมเยือนวันไหน?",
    "context": "CREATE TABLE table_name_98 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_68 WHERE result = \"3-1\"",
    "question_en": "Which competition with a result of 3-1?",
    "question_th": "การแข่งขันรายการไหนที่ผลสกอร์ 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_en": "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",
    "question_th": "ฉันต้องการทราบตำแหน่งลีกเอิง 1 ต่ำสุดสำหรับตำแหน่งในปี 2555-2556 010 12 และจำนวนฤดูกาลในลีกเอิง 1 มากกว่า 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_en": "Tell me the position in 2012-13 and number of seasons in leigue 1 of 30 with ligue 1 titles of 1",
    "question_th": "บอกตำแหน่งในฤดูกาล 2012-13 และจำนวนฤดูกาลในลีก 1 จาก 30 รายการ กับลีกเอิง 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_en": "What is the NBA draft result of the player from Kingston, PA?",
    "question_th": "ผลร่าง NBA ของผู้เล่นจาก 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_en": "What is the NBA draft result of the player with a height of 6-7?",
    "question_th": "ผลการดราฟต์ NBA ของผู้เล่นที่มีส่วนสูง 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_en": "What is the NBA draft result of Dwayne Washington?",
    "question_th": "ผลดราฟท์ NBA ของ 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_en": "What is the NBA draft result of the player from Dunbar High School?",
    "question_th": "ผลร่าง NBA ของผู้เล่นจาก 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_en": "What is the school of the player from the College of Michigan?",
    "question_th": "โรงเรียนของผู้เล่นจากวิทยาลัยมิชิแกนคืออะไร?",
    "context": "CREATE TABLE table_name_35 (school VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT away_team AS score FROM table_name_89 WHERE venue = \"mcg\"",
    "question_en": "What was the away team score for the game played at MCG?",
    "question_th": "คะแนนทีมเยือนในเกมที่เล่นที่เอ็มซีจีเป็นเท่าไหร่?",
    "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_en": "What was the home team's score at Victoria Park?",
    "question_th": "สกอร์ของเจ้าบ้านที่ วิคตอเรีย พาร์ค เท่าไหร่?",
    "context": "CREATE TABLE table_name_27 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_96 WHERE venue = \"shay stadium\"",
    "question_en": "What is the score at shay stadium?",
    "question_th": "ที่สนามเชย์สกอร์เท่าไหร่ครับ?",
    "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_en": "What is the result at valley parade on 4/7/02?",
    "question_th": "ผลขบวนพาเหรดหุบเขาวันที่ 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_en": "Which competition has a Goal of deacon 8/8 and a Score of 32-14?",
    "question_th": "การแข่งขันใดที่มีประตูของดีคอน 8/8 และคะแนน 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_en": "What is the top grid that is driven by martin brundle?",
    "question_th": "กริดบนสุดที่ขับเคลื่อนโดย Martin Brundle คืออะไร?",
    "context": "CREATE TABLE table_name_78 (grid INTEGER, driver VARCHAR)"
  },
  {
    "answer": "SELECT time_retired FROM table_name_88 WHERE grid = 13",
    "question_en": "What is the grid 13 time score?",
    "question_th": "คะแนนเวลากริด 13 คืออะไร?",
    "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_en": "Which grid is lower for thierry boutsen which laps less than 44?",
    "question_th": "ตารางใดที่ต่ำกว่าสำหรับ Thierry Boutsen ที่รอบน้อยกว่า 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_en": "Which player is 6-2?",
    "question_th": "ผู้เล่นคนไหนคือ 6-2?",
    "context": "CREATE TABLE table_name_9 (player VARCHAR, height VARCHAR)"
  },
  {
    "answer": "SELECT laid_down FROM table_name_55 WHERE ship = \"hyperion\"",
    "question_en": "What is the Laid down for the Hyperion ship?",
    "question_th": "Laid down สำหรับเรือ Hyperion คืออะไร?",
    "context": "CREATE TABLE table_name_55 (laid_down VARCHAR, ship VARCHAR)"
  },
  {
    "answer": "SELECT ship FROM table_name_48 WHERE pennant_number = \"h55\"",
    "question_en": "What is the name of the ship that had a Pennant number of h55?",
    "question_th": "เรือที่มีธงเลข 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_en": "How did the jab tak hai jaan movie gross worldwide?",
    "question_th": "หนังจับ ตาก ไห่จาน ทำรายได้ทั่วโลกได้อย่างไร?",
    "context": "CREATE TABLE table_name_60 (worldwide_gross VARCHAR, movie VARCHAR)"
  },
  {
    "answer": "SELECT AVG(year) FROM table_name_29 WHERE director = \"ayan mukerji\"",
    "question_en": "What is average year for ayan mukerji?",
    "question_th": "ปีเฉลี่ยของ อายัน มูเคอร์จี คือเท่าไร?",
    "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_en": "When melbourne was the home team what was their score?",
    "question_th": "เมื่อเมลเบิร์นเป็นเจ้าบ้านสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_46 (home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_25 WHERE time = \"20:10\"",
    "question_en": "What date had a time of 20:10?",
    "question_th": "วันที่ใดมีเวลา 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_en": "What is the title of the episode that originally aired on March 31, 2008?",
    "question_th": "ตอนที่ออกอากาศครั้งแรกเมื่อวันที่ 31 มีนาคม 2551 ชื่อว่าอะไร",
    "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_en": "What is the episode number of the episode that originally aired on February 4, 2008?",
    "question_th": "ตอนที่ออกอากาศครั้งแรกเมื่อวันที่ 4 กุมภาพันธ์ 2551 มีจำนวนตอนเท่าใด",
    "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_en": "at kardinia park, what was the away team's score?",
    "question_th": "ที่คาร์ดิเนีย พาร์ก ทีมเยือนได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_22 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT MAX(crowd) FROM table_name_74 WHERE venue = \"kardinia park\"",
    "question_en": "what was the largest attendance at kardinia park?",
    "question_th": "ผู้เข้าร่วมที่ 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_en": "Who was the Home team at the Western Oval location?",
    "question_th": "ทีมเหย้าที่สนามเวสเทิร์นโอวัลคือใคร?",
    "context": "CREATE TABLE table_name_62 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT AVG(laps) FROM table_name_64 WHERE driver = \"patrick tambay\"",
    "question_en": "What's the average of the amount of laps for the driver patrick tambay?",
    "question_th": "แพทริก แทมเบย์ คนขับมีรอบเฉลี่ยกี่รอบ?",
    "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_en": "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?",
    "question_th": "เมื่อเรโนลต์เป็นตัวสร้าง ตารางมีมากกว่า 6 และเวลามีป้ายกำกับว่าการจุดระเบิด จำนวนรอบที่มากที่สุดเป็นประวัติการณ์คือเท่าใด",
    "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_en": "In 2008, what was the world ranking that ranked 5th in L.A.?",
    "question_th": "ในปี 2008 อันดับที่ 5 ของโลกในแอลเออยู่ที่เท่าไร?",
    "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_en": "what is the total number of played when the goals for is more than 34 and goals against is more than 63?",
    "question_th": "จำนวนการเล่นทั้งหมดเมื่อประตูมากกว่า 34 และประตูที่เสียมากกว่า 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_en": "what is the total number of goal different when the club is cf extremadura and the played is less than 38?",
    "question_th": "จำนวนประตูรวมที่แตกต่างกันเมื่อสโมสรคือ cf extremadura และจำนวนที่เล่นน้อยกว่า 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_en": "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?",
    "question_th": "อะไรคือคะแนนเฉลี่ยเมื่อผลต่างประตูน้อยกว่า 17, สโมสรเป็นเกตาเฟ่ cf และประตูมากกว่า 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_en": "what is the sum of goals for when the position is less than 8, the losses is less than 10 the goals against is less than 35 and played is less than 38?",
    "question_th": "ผลรวมของประตูเมื่อตำแหน่งน้อยกว่า 8 แพ้น้อยกว่า 10 ประตูต่อน้อยกว่า 35 และเล่นน้อยกว่า 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_en": "what is the highest gold when the rank is 12 for the nation vietnam?",
    "question_th": "ทองสูงสุดเมื่ออันดับที่ 12 ของประเทศเวียดนามคือเท่าไร?",
    "context": "CREATE TABLE table_name_18 (gold INTEGER, rank VARCHAR, nation VARCHAR)"
  },
  {
    "answer": "SELECT total FROM table_name_88 WHERE rank = \"4\"",
    "question_en": "what is the total when the rank is 4?",
    "question_th": "เมื่ออันดับ 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_en": "what is the nation when the gold is 1 and bronze is larger than 0?",
    "question_th": "ชาติอะไรเมื่อทองเป็น 1 และทองแดงมากกว่า 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_en": "Which entrant has Ferrari 038 3.5 v12 engine?",
    "question_th": "ผู้เข้าแข่งขันรายใดมีเครื่องยนต์ Ferrari 038 3.5 v12?",
    "context": "CREATE TABLE table_name_72 (entrant VARCHAR, engine VARCHAR)"
  },
  {
    "answer": "SELECT founded FROM table_name_69 WHERE institution = \"lynn university\"",
    "question_en": "What is the date that the Institution of Lynn University was founded on?",
    "question_th": "Institution of Lynn University ก่อตั้งขึ้นเมื่อใด?",
    "context": "CREATE TABLE table_name_69 (founded VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_60 WHERE score = \"5-1\"",
    "question_en": "What's the Loss listed with a Score of 5-1?",
    "question_th": "การสูญเสียที่ระบุด้วยคะแนน 5-1 คืออะไร?",
    "context": "CREATE TABLE table_name_60 (loss VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_76 WHERE record = \"3-5\"",
    "question_en": "Which Date has a record of 3-5?",
    "question_th": "วันไหนมีสถิติ 3-5?",
    "context": "CREATE TABLE table_name_76 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_86 WHERE record = \"6-9\"",
    "question_en": "Which Date has a Record of 6-9?",
    "question_th": "วันที่ใดมีบันทึก 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_en": "What's the Loss listed for the Opponent of California Angels and has an Attendance of 57,762?",
    "question_th": "การสูญเสียที่ระบุไว้สำหรับฝ่ายตรงข้ามของ California Angels และมีผู้เข้าร่วม 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_en": "Which Date has an Attendance of 9,535?",
    "question_th": "วันไหนมีผู้เข้าร่วม 9,535 คน?",
    "context": "CREATE TABLE table_name_73 (date VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_69 WHERE date = \"april 23\"",
    "question_en": "What is the Score for the Date of April 23?",
    "question_th": "คะแนนประจำวันที่ 23 เมษายน เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_69 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT AVG(crowd) FROM table_name_22 WHERE venue = \"victoria park\"",
    "question_en": "What was the average crowd size at Victoria Park?",
    "question_th": "ขนาดฝูงชนโดยเฉลี่ยที่ 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_en": "What is the crowd size of the match featuring North Melbourne as the away team?",
    "question_th": "จำนวนผู้ชมในแมตช์ที่มีนอร์ท เมลเบิร์น เป็นทีมเยือนคือเท่าใด?",
    "context": "CREATE TABLE table_name_40 (crowd INTEGER, away_team VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_96 WHERE high_rebounds = \"smith (10)\"",
    "question_en": "Name the team which has high rebounds of smith (10)",
    "question_th": "ตั้งชื่อทีมที่มีสมิธรีบาวด์สูง (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_en": "What team was the home team against Melbourne?",
    "question_th": "ทีมเจ้าบ้านเจอเมลเบิร์นคือทีมอะไร?",
    "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_en": "What did the home team score when Carlton played as the Away team?",
    "question_th": "เจ้าบ้านได้คะแนนเท่าไหร่เมื่อคาร์ลตันเล่นเป็นทีมเยือน?",
    "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_en": "How many people attended the home game for South Melbourne?",
    "question_th": "มีกี่คนที่เข้าชมเกมเหย้าของเซาธ์ เมลเบิร์น?",
    "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_en": "What was the home team score at VFL Park?",
    "question_th": "สกอร์ทีมเหย้าที่วีเอฟแอล พาร์ค เป็นเท่าไหร่?",
    "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_en": "How many grids have a Time/Retired of gearbox, and Laps smaller than 3?",
    "question_th": "มีกี่กริดมีเวลา/เลิกใช้กระปุกเกียร์ และรอบน้อยกว่า 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_en": "What is masten gregory's average lap?",
    "question_th": "รอบเฉลี่ยของ Masten Gregory คืออะไร?",
    "context": "CREATE TABLE table_name_70 (laps INTEGER, driver VARCHAR)"
  },
  {
    "answer": "SELECT time_retired FROM table_name_21 WHERE grid = 2",
    "question_en": "Which Time/Retired has a Grid of 2?",
    "question_th": "เวลาใด/เกษียณอายุมีตารางเป็น 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_en": "When the engine Ford Cosworth DFV 3.0 v8 has a chassis of m23 and in rounds 14-15, what is its Tyre?",
    "question_th": "เมื่อเครื่องยนต์ Ford Cosworth DFV 3.0 v8 มีแชสซีส์ m23 และในรอบ 14-15 ยางของมันคืออะไร?",
    "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_en": "Which driver uses the ts16 chassis?",
    "question_th": "ไดร์เวอร์ตัวไหนใช้แชสซี ts16?",
    "context": "CREATE TABLE table_name_7 (driver VARCHAR, chassis VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_95 WHERE date = \"april 20\"",
    "question_en": "What is the home team of the game on April 20?",
    "question_th": "เจ้าบ้านจะเป็นอย่างไรในเกมวันที่ 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_en": "What is the series score of the game with Vancouver as the visiting team on April 16?",
    "question_th": "คะแนนซีรีส์ของเกมกับแวนคูเวอร์เป็นทีมเยือนในวันที่ 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_en": "What is the series score of the game on April 16?",
    "question_th": "คะแนนซีรีส์ของเกมวันที่ 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_en": "Tell me the away team score for 27 april 1974 and veue of mcg",
    "question_th": "บอกคะแนนทีมเยือนวันที่ 27 เมษายน 1974 และฉาก 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_en": "I want to see the away team the has a home team of richmond",
    "question_th": "อยากเห็นทีมเยือนมีทีมเหย้าริชมอนด์",
    "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_en": "What venue did group g play at on Mar 8, 1998?",
    "question_th": "วันที่ 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_en": "Which stage was being played in Romania?",
    "question_th": "โรมาเนียเล่นเวทีไหน?",
    "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_en": "What was the score of the 1999 fifa world cup qualification (uefa) on Nov 23, 1997?",
    "question_th": "คะแนนฟุตบอลโลก 1999 รอบคัดเลือก (ยูฟ่า) เมื่อวันที่ 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_en": "What was being played on Nov 23, 2006?",
    "question_th": "กำลังเล่นอะไรในวันที่ 23 พฤศจิกายน พ.ศ. 2549",
    "context": "CREATE TABLE table_name_79 (competition VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MIN(crowd) FROM table_name_28 WHERE venue = \"windy hill\"",
    "question_en": "What is the lowest crowd at windy hill?",
    "question_th": "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_en": "What is the lowest crowd with home team richmond?",
    "question_th": "เจ้าบ้านริชมอนด์มีฝูงชนน้อยที่สุดคือเท่าไร?",
    "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_en": "When there are more than 12 total medals and less than 5 gold medals, how many bronze medals are there?",
    "question_th": "เมื่อมีทั้งหมดมากกว่า 12 เหรียญ แต่ไม่ถึง 5 เหรียญทอง จะมีเหรียญทองแดงกี่เหรียญ?",
    "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_en": "When the united states won a total number of medals larger than 25, what was the lowest amount of Bronze medals won?",
    "question_th": "เมื่อสหรัฐอเมริกาได้รับเหรียญทองแดงมากกว่า 25 เหรียญ จำนวนเหรียญทองแดงที่ได้รับน้อยที่สุดคือเท่าใด",
    "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_en": "When the nation of poland had less than 17 medals but more than 1 gold medal, what's the Highest number of bronze medals?",
    "question_th": "เมื่อประเทศโปแลนด์มีเหรียญน้อยกว่า 17 เหรียญ แต่มีมากกว่า 1 เหรียญทอง เหรียญทองแดงมากที่สุดคือเท่าใด",
    "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_en": "If there are more than 0 Silver medals, less than 5 gold medals, and no bronze medals, what was the total number of medals?",
    "question_th": "หากมีเหรียญเงินมากกว่า 0 เหรียญ น้อยกว่า 5 เหรียญทอง และไม่มีเหรียญทองแดง จำนวนเหรียญทั้งหมดจะเป็นเท่าใด",
    "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__ = \"°15′55″\" AND apparent_magnitude > 10",
    "question_en": "What's the total number of NGC that has a Declination ( J2000 ) of °15′55″, and an Apparent magnitude greater than 10?",
    "question_th": "จำนวน NGC ทั้งหมดที่มีค่าเสื่อม ( J2000 ) ที่ °15′55″ และขนาดปรากฏมากกว่า 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_en": "Which object has an Apparent magnitude larger than 9.6, and a Right ascension ( J2000 ) of 17h59m02.0s?",
    "question_th": "วัตถุใดมีขนาดปรากฏที่ใหญ่กว่า 9.6 และค่าการขึ้นทางขวา ( J2000 ) ที่ 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_en": "Which species of bacteria has 5,566 genes?",
    "question_th": "แบคทีเรียชนิดใดมียีน 5,566 ยีน",
    "context": "CREATE TABLE table_name_35 (strain VARCHAR, genes VARCHAR)"
  },
  {
    "answer": "SELECT strain FROM table_name_24 WHERE species = \"thiomicrospira crunogena\"",
    "question_en": "What is the Strain name of Species Thiomicrospira crunogena?",
    "question_th": "ชื่อสายพันธุ์ของ Thiomicrospira crunogena คืออะไร?",
    "context": "CREATE TABLE table_name_24 (strain VARCHAR, species VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_21 WHERE record = \"5-3\"",
    "question_en": "Name the location of record 5-3",
    "question_th": "ตั้งชื่อที่ตั้งของบันทึก 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_en": "What's the rank for a team that has a percentage of 56% and a loss smaller than 4?",
    "question_th": "อันดับของทีมที่มีเปอร์เซ็นต์ 56% และแพ้น้อยกว่า 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_en": "Name the lowest yards for 34 long and avg less than 12.6",
    "question_th": "ตั้งชื่อหลาต่ำสุดสำหรับความยาว 34 และเฉลี่ยน้อยกว่า 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_en": "What team is sponsored by chameleon sunglasses?",
    "question_th": "ทีมใดได้รับการสนับสนุนจากแว่นกันแดดกิ้งก่า?",
    "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_en": "What team does bobby hillin jr. (r) drive a buick regal for?",
    "question_th": "บ๊อบบี้ ฮิลลิน จูเนียร์ อยู่ทีมไหน (r) ขับรถ buick regal เพื่อ?",
    "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_en": "What team is sponsored by w.h. bolin?",
    "question_th": "WH โบลิน สนับสนุนทีมไหน?",
    "context": "CREATE TABLE table_name_14 (team VARCHAR, sponsor VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_82 WHERE sponsor = \"w.h. bolin\"",
    "question_en": "Who drives for the sponsor w.h. bolin?",
    "question_th": "ใครเป็นผู้ผลักดันสปอนเซอร์ wh bolin?",
    "context": "CREATE TABLE table_name_82 (driver VARCHAR, sponsor VARCHAR)"
  },
  {
    "answer": "SELECT sponsor FROM table_name_18 WHERE driver = \"neil bonnett\"",
    "question_en": "Who sponsors driver neil bonnett?",
    "question_th": "ใครเป็นผู้สนับสนุนคนขับนีล บอนเน็ตต์?",
    "context": "CREATE TABLE table_name_18 (sponsor VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT channel FROM table_name_82 WHERE description = \"public broadcaster\"",
    "question_en": "What channel has a description of the public broadcaster?",
    "question_th": "ช่องใดมีคำอธิบายของสถานีโทรทัศน์สาธารณะ?",
    "context": "CREATE TABLE table_name_82 (channel VARCHAR, description VARCHAR)"
  },
  {
    "answer": "SELECT channel FROM table_name_39 WHERE financed_by = \"commercials\"",
    "question_en": "What was the channel that was financed by commercials?",
    "question_th": "ช่องทางใดที่ได้รับทุนจากโฆษณา?",
    "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é\" AND grid > 20",
    "question_en": "Which entry has the highest laps of those with constructor Minardi - Fondmetal, driver Marc Gené, and a grid larger than 20?",
    "question_th": "รายการใดมีรอบสูงที่สุดในบรรดาผู้สร้าง Minardi - Fondmetal, นักแข่ง Marc Gené และกริดที่ใหญ่กว่า 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_en": "What is the sum of grid values of driver Michael Schumacher with lap counts larger than 66?",
    "question_th": "ผลรวมของค่ากริดของนักแข่ง Michael Schumacher ที่มีจำนวนรอบมากกว่า 66 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_7 (grid INTEGER, laps VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_17 WHERE laps = 62",
    "question_en": "Which driver has 62 laps?",
    "question_th": "นักแข่งคนไหนมี 62 รอบ?",
    "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_en": "What is the highest grid value with constructor Mclaren - Mercedes, driver David Coulthard, and has fewer than 66 laps?",
    "question_th": "ค่ากริดสูงสุดที่มีคอนสตรัคเตอร์ Mclaren - Mercedes, นักแข่ง David Coulthard และมีรอบน้อยกว่า 66 รอบคือเท่าใด",
    "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_en": "What is the highest number of laps for grid 17?",
    "question_th": "จำนวนรอบสูงสุดสำหรับกริด 17 คือเท่าใด?",
    "context": "CREATE TABLE table_name_99 (laps INTEGER, grid VARCHAR)"
  },
  {
    "answer": "SELECT rounds FROM table_name_8 WHERE driver = \"roger williamson\"",
    "question_en": "None of the rounds has Roger Williamson as a driver.",
    "question_th": "ไม่มีรอบใดที่มี Roger Williamson เป็นนักขับ",
    "context": "CREATE TABLE table_name_8 (rounds VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT time_retired FROM table_name_60 WHERE driver = \"alain prost\"",
    "question_en": "What is the time/retired for alain prost?",
    "question_th": "เวลา / เกษียณสำหรับ 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_en": "What is the time/retired for grid 9?",
    "question_th": "เวลา/เกษียณสำหรับกริด 9 คืออะไร?",
    "context": "CREATE TABLE table_name_30 (time_retired VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_65 WHERE time_retired = \"suspension\"",
    "question_en": "Who had to retire due to suspension?",
    "question_th": "ใครต้องเกษียณเนื่องจากการถูกพักงาน?",
    "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_en": "What class is volleyball in 2000?",
    "question_th": "วอลเลย์บอลปี 2543 จัดอยู่ในประเภทใด",
    "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_en": "What is the team's record in 3a volleyball?",
    "question_th": "สถิติของทีมในวอลเลย์บอล 3a คืออะไร?",
    "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_en": "Who was the away team at Melbourne's home game?",
    "question_th": "ทีมเยือนในเกมเหย้าของเมลเบิร์นคือใคร?",
    "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_en": "What was the away team score at Corio Oval?",
    "question_th": "สกอร์ทีมเยือนที่โคริโอ โอวัลเป็นเท่าไหร่?",
    "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_en": "Which Call Sign that has a Tail Code of oy belong to Weapon Systems Officer Capt Charles B. Debellevue?",
    "question_th": "สัญญาณเรียกขานใดที่มีรหัสหางเป็นของ กัปตัน 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_en": "Which Tail Code belongs to Weapon Systems Officer Capt Charles B. Debellevue?",
    "question_th": "รหัสหางใดเป็นของเจ้าหน้าที่ระบบอาวุธ กัปตัน 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_en": "Which Aircraft has the Call Sign Paula 01?",
    "question_th": "เครื่องบินลำใดมีสัญญาณเรียกขาน 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_en": "Which Call Sign that has Tail Code ed?",
    "question_th": "Call Sign ตัวไหนที่มี 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_en": "Which aircraft Weapon Systems Officer Capt Charles B. Debellevue belongs on?",
    "question_th": "กัปตัน Charles B. Debellevue เจ้าหน้าที่ระบบอาวุธของเครื่องบินลำใดสังกัดอยู่",
    "context": "CREATE TABLE table_name_27 (aircraft VARCHAR, weapon_systems_officer VARCHAR)"
  },
  {
    "answer": "SELECT MIN(wins) FROM table_name_96 WHERE losses = 2",
    "question_en": "What is the lowest amount of wins of someone who has 2 losses?",
    "question_th": "ผู้ชนะที่แพ้ 2 ครั้งน้อยที่สุดคือเท่าไร?",
    "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_en": "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?",
    "question_th": "จำนวนการชนะที่ใหญ่ที่สุดของผู้ที่มีคะแนนต่อมากกว่า 1249 และจำนวนการแพ้น้อยกว่า 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_en": "What is the name of race that has a winning driver of Stirling moss and a Circuit of oulton park?",
    "question_th": "การแข่งขันที่มีนักแข่งที่ชนะคือ Stirling moss และ 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_en": "Who is the winning driver that has a construction of brm?",
    "question_th": "ใครคือนักแข่งที่ชนะที่มีการก่อสร้าง brm?",
    "context": "CREATE TABLE table_name_27 (winning_driver VARCHAR, constructor VARCHAR)"
  },
  {
    "answer": "SELECT MAX(bronze) FROM table_name_15 WHERE rank = \"12\"",
    "question_en": "What is the high bronze total for nations ranked 12?",
    "question_th": "คะแนนทองแดงรวมสูงสำหรับประเทศอันดับที่ 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_en": "What was the winning score on May 3, 1998?",
    "question_th": "คะแนนชนะเมื่อวันที่ 3 พฤษภาคม พ.ศ. 2541 เป็นเท่าใด",
    "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_en": "What is the role of the aircraft that has a registration of s5-hpg s5-hpc?",
    "question_th": "เครื่องบินที่มีทะเบียน 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_en": "What is the country of origin of the aircraft with a registration s5-hpb?",
    "question_th": "เครื่องบินที่มีทะเบียน s5-hpb มาจากประเทศใด",
    "context": "CREATE TABLE table_name_67 (origin VARCHAR, registration VARCHAR)"
  },
  {
    "answer": "SELECT role FROM table_name_41 WHERE origin = \"european union\"",
    "question_en": "What is the role of the aircraft that originates from the European Union?",
    "question_th": "เครื่องบินที่มาจากสหภาพยุโรปมีบทบาทอย่างไร?",
    "context": "CREATE TABLE table_name_41 (role VARCHAR, origin VARCHAR)"
  },
  {
    "answer": "SELECT role FROM table_name_51 WHERE registration = \"s5-hpb\"",
    "question_en": "What is the role of the aircraft that has a registration of s5-hpb?",
    "question_th": "เครื่องบินที่มีทะเบียน s5-hpb มีหน้าที่อะไรบ้าง?",
    "context": "CREATE TABLE table_name_51 (role VARCHAR, registration VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_name_90 WHERE height = \"6-10\"",
    "question_en": "Which Hometown has a Height of 6-10?",
    "question_th": "บ้านเกิดใดมีความสูง 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_en": "What is the NBA Draft for the School Bishop O'Connell High School?",
    "question_th": "NBA Draft สำหรับ 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_en": "Which School is located in Winter Park, FL (Hometown)?",
    "question_th": "โรงเรียนใดตั้งอยู่ใน Winter Park, FL (บ้านเกิด)",
    "context": "CREATE TABLE table_name_65 (school VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_name_83 WHERE school = \"bishop luers high school\"",
    "question_en": "When the School is Bishop Luers High School, what is the Hometown?",
    "question_th": "เมื่อโรงเรียนเป็นโรงเรียนมัธยมบิชอปลูเออร์ บ้านเกิดคืออะไร?",
    "context": "CREATE TABLE table_name_83 (hometown VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_name_11 WHERE college = \"villanova\"",
    "question_en": "What is the Hometown for Villanova College?",
    "question_th": "บ้านเกิดของวิทยาลัย Villanova คืออะไร",
    "context": "CREATE TABLE table_name_11 (hometown VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_31 WHERE record = \"18–18–1\"",
    "question_en": "Who was the home team at the game when the Thrashers had a record of 18–18–1?",
    "question_th": "ใครคือเจ้าบ้านในเกมเมื่อ Thrashers มีสถิติ 18–18–1?",
    "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_en": "What was the date of the game with a decision of Lehtonen and attended by more than 17,731 people?",
    "question_th": "ในเกมวันที่เท่าไหร่ที่มีการตัดสินของเลห์โตเนนและมีผู้เข้าร่วมมากกว่า 17,731 คน?",
    "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_en": "What is the average grid for johnny herbert with a Time/Retired of +1 lap?",
    "question_th": "ตารางเฉลี่ยของจอห์นนี่ เฮอร์เบิร์ตที่มีเวลา/เกษียณ +1 รอบคือเท่าใด",
    "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_en": "Who was the away team at mcg?",
    "question_th": "ทีมเยือนของเอ็มซีจีคือใคร?",
    "context": "CREATE TABLE table_name_25 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_25 WHERE venue = \"princes park\"",
    "question_en": "Who was the home team at princes park?",
    "question_th": "ทีมเหย้าที่ 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__ = \"°48′06″\"",
    "question_en": "Which Object type has a Constellation of orion, and an NGC number larger than 2174, and a Declination (J2000) of °48′06″?",
    "question_th": "วัตถุประเภทใดที่มีกลุ่มดาวนายพราน และหมายเลข NGC มากกว่า 2174 และค่าความเสื่อม (J2000) ที่°48′06″",
    "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_en": "Which Right ascension (J2000) has a Constellation of mensa, and an NGC number larger than 2171?",
    "question_th": "Right ascension (J2000) ใดที่มีกลุ่มดาวบุรุษ และหมายเลข NGC ที่มากกว่า 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_en": "Which NGC number has an Object type of open cluster, and a Right ascension (J2000) of 06h01m06s?",
    "question_th": "หมายเลข NGC ใดที่มีประเภทออบเจ็กต์ของคลัสเตอร์เปิดและการขึ้นสู่ตำแหน่งขวา (J2000) ที่ 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_en": "Which Object type has an NGC number of 2171?",
    "question_th": "วัตถุประเภทใดมีหมายเลข NGC 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–1889\"",
    "question_en": "What is the end date of the term for Governor of richard j. oglesby, and a Term of 1885–1889?",
    "question_th": "วันสิ้นสุดวาระของผู้ว่าการริชาร์ด เจ. oglesby และวาระปี พ.ศ. 2428–2432?",
    "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_en": "What site has an orbit of Leo, a decay (UTC) of still in orbit, and a magnetosphere research?",
    "question_th": "ไซต์ใดมีวงโคจรราศีสิงห์ การเสื่อมสลาย (UTC) ยังอยู่ในวงโคจร และการวิจัยสนามแม่เหล็ก",
    "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_en": "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?",
    "question_th": "วันที่และเวลาใดมีวงโคจรย่อย มีหน้าที่ในการวิจัยด้านอากาศศาสตร์ และจรวด Nike Orion รวมถึงไซต์ Poker Flat",
    "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_en": "what is the tournament when the winning score is 2 and 1?",
    "question_th": "การแข่งขันจะเป็นอย่างไรเมื่อคะแนนชนะคือ 2 และ 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_en": "what is the margin of victory for the tournament travelers championship?",
    "question_th": "ชัยชนะของทัวร์นาเมนต์ Traveler 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_en": "what is the margin of victory for the waste management phoenix open tournament?",
    "question_th": "ชัยชนะของการจัดการขยะ phoenix open คือเท่าไร?",
    "context": "CREATE TABLE table_name_69 (margin_of_victory VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT runner_up FROM table_name_26 WHERE winning_score = −16(68 - 70 - 65 - 65 = 268)",
    "question_en": "who is the runner-up when the winning score is −16 (68-70-65-65=268)?",
    "question_th": "รองชนะเลิศเมื่อคะแนนชนะคือ −16 (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_en": "For which Game 4 did Michael O'Connor play wing position?",
    "question_th": "Michael O'Connor เล่นตำแหน่งปีกในเกมที่ 4 เกมใด",
    "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_en": "For which Game 4, did David Boyle play in Game 3?",
    "question_th": "David Boyle เล่นเกมที่ 3 ในเกมที่ 4 ของเกมใด",
    "context": "CREATE TABLE table_name_41 (game_4 VARCHAR, game_3 VARCHAR)"
  },
  {
    "answer": "SELECT game_1 FROM table_name_88 WHERE position = \"fullback\"",
    "question_en": "Which Game 1 has a fullback?",
    "question_th": "เกมที่ 1 มีกองหลังตัวไหน?",
    "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_en": "For which Game 4 did Michael O'Connor play during Game 1?",
    "question_th": "Michael O'Connor เล่นเกมที่ 4 ในเกมที่ 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_en": "During Game 2, which position did Andrew Farrar play?",
    "question_th": "ระหว่างเกมที่ 2 แอนดรูว์ ฟาร์ราร์เล่นตำแหน่งไหน",
    "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_en": "During which Game 4, did Brett Kenny play Game 2?",
    "question_th": "ในระหว่างเกมที่ 4 Brett Kenny เล่นเกมที่ 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_en": "Where was the former private member that was founded in 1891 and left in 1975?",
    "question_th": "อดีตสมาชิกส่วนตัวที่ก่อตั้งในปี พ.ศ. 2434 และลาออกในปี พ.ศ. 2518 อยู่ที่ไหน?",
    "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_en": "what is the places when for the soviet union with a rank more than 11?",
    "question_th": "สหภาพโซเวียตที่มีอันดับมากกว่า 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_en": "what is the name when the nation is soviet union and the points is 185?",
    "question_th": "ชื่อเมื่อประเทศคือสหภาพโซเวียตและคะแนนคือ 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_en": "What constructor has less than 3 laps and grid 15?",
    "question_th": "Constructor ใดที่มีน้อยกว่า 3 รอบและกริด 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_en": "Which Home team has an Away team of collingwood?",
    "question_th": "เจ้าบ้านทีมไหนมีทีมเยือนของคอลลิงวูด?",
    "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_en": "Name the lowest against for when wins are greater than 14, draws is 0 and losses are 4",
    "question_th": "ตั้งชื่อต่ำสุดเทียบกับเมื่อชนะมากกว่า 14 เสมอคือ 0 และแพ้คือ 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_en": "Name the sum against for byes less than 0",
    "question_th": "ตั้งชื่อผลรวมเทียบกับสำหรับบายน้อยกว่า 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_en": "Name the sum of draws for losses less than 2 and wins of 16",
    "question_th": "ตั้งชื่อผลรวมเสมอหากแพ้น้อยกว่า 2 และชนะ 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_en": "How few laps were finished in 17?",
    "question_th": "กี่รอบจบในปี 17?",
    "context": "CREATE TABLE table_name_48 (laps INTEGER, finish VARCHAR)"
  },
  {
    "answer": "SELECT qual FROM table_name_55 WHERE year = \"1966\"",
    "question_en": "What is 1966's Qual rating?",
    "question_th": "คะแนน Qual ของปี 1966 คืออะไร?",
    "context": "CREATE TABLE table_name_55 (qual VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT start FROM table_name_78 WHERE finish = \"10\"",
    "question_en": "What race has a finish time of 10?",
    "question_th": "การแข่งขันใดมีเวลาสิ้นสุด 10?",
    "context": "CREATE TABLE table_name_78 (start VARCHAR, finish VARCHAR)"
  },
  {
    "answer": "SELECT MIN(laps) FROM table_name_85 WHERE rank = \"30\"",
    "question_en": "What is the lowest lap with a rank of 30?",
    "question_th": "รอบต่ำสุดด้วยอันดับ 30 คืออะไร?",
    "context": "CREATE TABLE table_name_85 (laps INTEGER, rank VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_9 WHERE start = \"32\"",
    "question_en": "What finish time started at 32?",
    "question_th": "เริ่มเวลา 32.00 น. เลิกกี่โมงคะ?",
    "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_en": "Who is the lowest ranked player from the United States that has less than 3 Wins?",
    "question_th": "ใครคือผู้เล่นอันดับต่ำสุดจากสหรัฐอเมริกาที่ชนะน้อยกว่า 3 ครั้ง?",
    "context": "CREATE TABLE table_name_59 (rank INTEGER, country VARCHAR, wins VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_93 WHERE visitor = \"edmonton\"",
    "question_en": "What is the score of the game that had a visiting team of Edmonton?",
    "question_th": "เกมที่ทีมเยือนเอดมันตันมีสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_93 (score VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_59 WHERE home = \"colorado\" AND visitor = \"winnipeg\"",
    "question_en": "What is the record of the game that had a home team of Colorado, and a visiting team of Winnipeg?",
    "question_th": "สถิติเกมที่มีทีมเจ้าบ้าน โคโลราโด และทีมเยือน วินนิเพก เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_59 (record VARCHAR, home VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_85 WHERE date = \"february 15\"",
    "question_en": "What team was visiting on February 15?",
    "question_th": "ทีมใดไปเยือนเมื่อวันที่ 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_en": "What theme had an issue price of $489.95 after 2005?",
    "question_th": "ธีมใดมีราคาจำหน่ายอยู่ที่ 489.95 ดอลลาร์หลังปี 2548",
    "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_en": "What year was the timber trade?",
    "question_th": "การค้าไม้เกิดขึ้นในปีใด?",
    "context": "CREATE TABLE table_name_61 (year INTEGER, theme VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_name_9 WHERE issue_price = \"$697.95\"",
    "question_en": "What year has an issue price of $697.95?",
    "question_th": "ปีใดมีราคาจำหน่ายอยู่ที่ 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_en": "What was the engine driven by Jean-Pierre Jarier and has a chassis of PC4?",
    "question_th": "Jean-Pierre Jarier ใช้เครื่องยนต์อะไรและมีแชสซี 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_en": "What Season had Dundee United as a Winner?",
    "question_th": "ฤดูกาลใดที่ Dundee United เป็นผู้ชนะ?",
    "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_en": "What is the Score of the Rangers' Runner-ups and Hibernian Winners in Hampden Park?",
    "question_th": "คะแนนของรองชนะเลิศของ Rangers และผู้ชนะ Hibernian ใน 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_en": "What Runners-up have a Venue in Broadwood Stadium?",
    "question_th": "รองชนะเลิศคนใดมีสถานที่ใน 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_en": "When is the completed date of the destroyer with a pennant number h63?",
    "question_th": "เรือพิฆาตที่มีชายธงหมายเลข h63 จะครบกำหนดวันไหน?",
    "context": "CREATE TABLE table_name_91 (completed VARCHAR, pennant_number VARCHAR)"
  },
  {
    "answer": "SELECT completed FROM table_name_50 WHERE pennant_number = \"h59\"",
    "question_en": "When is the completed date of the destroyer with a pennant number h59?",
    "question_th": "เรือพิฆาตหมายเลขชายธง h59 จะครบกำหนดวันไหน?",
    "context": "CREATE TABLE table_name_50 (completed VARCHAR, pennant_number VARCHAR)"
  },
  {
    "answer": "SELECT ship FROM table_name_89 WHERE pennant_number = \"h05\"",
    "question_en": "What ship has a pennant number h05?",
    "question_th": "เรือลำใดมีชายธงหมายเลข h05?",
    "context": "CREATE TABLE table_name_89 (ship VARCHAR, pennant_number VARCHAR)"
  },
  {
    "answer": "SELECT ship FROM table_name_5 WHERE pennant_number = \"h05\"",
    "question_en": "What ship has a pennant number h05?",
    "question_th": "เรือลำใดมีชายธงหมายเลข 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_en": "What is the launched date of the destroyer completed 25 February 1936?",
    "question_th": "เรือพิฆาตสร้างเสร็จเมื่อ 25 กุมภาพันธ์ พ.ศ. 2479 มีกำหนดปล่อยเมื่อใด",
    "context": "CREATE TABLE table_name_13 (launched VARCHAR, completed VARCHAR)"
  },
  {
    "answer": "SELECT launched FROM table_name_28 WHERE completed = \"1 july 1936\"",
    "question_en": "What is the launched date of the destroyer completed 1 July 1936?",
    "question_th": "เรือพิฆาตสร้างเสร็จเมื่อวันที่ 1 กรกฎาคม พ.ศ. 2479 มีกำหนดปล่อยเมื่อใด?",
    "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_en": "What was the home team score when the VFL played at Western Oval?",
    "question_th": "คะแนนทีมเหย้าเมื่อ VFL เล่นที่ 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_en": "Who was North Melbourne's home opponent?",
    "question_th": "คู่ต่อสู้เจ้าบ้านของนอร์ท เมลเบิร์นคือใคร?",
    "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_en": "What was the home team score when the VFL played at Princes Park?",
    "question_th": "คะแนนทีมเจ้าบ้านเมื่อ VFL เล่นที่ 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_en": "Which sum of AVE-No has a Name of albula alps, and a Height (m) larger than 3418?",
    "question_th": "ผลรวมของ AVE-No ใดที่มีชื่อของอัลบูลาแอลป์ และส่วนสูง (m) มากกว่า 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_en": "Which Height (m) has a Name of plessur alps, and a AVE-No larger than 63?",
    "question_th": "ความสูงใด (ม.) มีชื่อของ Plessur Alps และ AVE-ไม่เกิน 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_en": "Which Name has a Height (m) of 2980?",
    "question_th": "ชื่อใดมีความสูง (ม.) เท่ากับ 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_en": "Which AVE-No has a Name of livigno alps?",
    "question_th": "AVE-No ใดมีชื่อของ 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_en": "Who was the winning driver when pole position was jenson button, the fastest lap was michael schumacher and the car was ferrari?",
    "question_th": "ใครคือนักแข่งที่ชนะเมื่อตำแหน่งโพลโพซิชั่นคือ เจนสัน บัตตัน รอบที่เร็วที่สุดคือ ไมเคิล ชูมัคเกอร์ และรถคือเฟอร์รารี",
    "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_en": "What was the pole position at the san marino grand prix with michael schumacher as winning driver?",
    "question_th": "ตำแหน่งโพลโพซิชั่นที่ซานมาริโนกรังด์ปรีซ์โดยมีไมเคิล ชูมัคเกอร์เป็นนักขับที่ชนะคืออะไร",
    "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äikkönen\"",
    "question_en": "Name the Grand Prix for pole position of kimi räikkönen",
    "question_th": "ตั้งชื่อกรังด์ปรีซ์สำหรับตำแหน่งโพลโพซิชั่นของ kimi räikkönen",
    "context": "CREATE TABLE table_name_23 (grand_prix VARCHAR, pole_position VARCHAR)"
  },
  {
    "answer": "SELECT category FROM table_name_8 WHERE established = 1990",
    "question_en": "Which is the category of the group was establishe in 1990?",
    "question_th": "กลุ่มใดที่ก่อตั้งขึ้นเมื่อปี พ.ศ. 2533?",
    "context": "CREATE TABLE table_name_8 (category VARCHAR, established VARCHAR)"
  },
  {
    "answer": "SELECT category FROM table_name_76 WHERE event_name = \"touchdown atlantic\"",
    "question_en": "What is the category of the touchdown atlantic?",
    "question_th": "ทัชดาวน์แอตแลนติกอยู่ในประเภทใด?",
    "context": "CREATE TABLE table_name_76 (category VARCHAR, event_name VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_85 WHERE date = \"13 october 2004\"",
    "question_en": "Name the result for 13 october 2004",
    "question_th": "ตั้งชื่อผลลัพธ์สำหรับวันที่ 13 ตุลาคม พ.ศ. 2547",
    "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_en": "Name the date that has a friendly competition at rheinpark stadion, vaduz",
    "question_th": "ตั้งชื่อวันที่มีการแข่งขันกระชับมิตรที่ 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_en": "Who is the constructor of John Surtees's Oulton Park circuit car?",
    "question_th": "ใครคือผู้สร้างเซอร์กิตคาร์ Oulton Park ของ John Surtees",
    "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_en": "Which race was Matra the constructor?",
    "question_th": "Matra เป็นคนสร้างเผ่าพันธุ์ใด",
    "context": "CREATE TABLE table_name_90 (race_name VARCHAR, constructor VARCHAR)"
  },
  {
    "answer": "SELECT race_name FROM table_name_74 WHERE circuit = \"hockenheim\"",
    "question_en": "Which race was at Hockenheim circuit?",
    "question_th": "การแข่งขันครั้งใดที่สนาม 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_en": "Who was the winner of the XII Spring Trophy race with BRM as the constructor?",
    "question_th": "ใครคือผู้ชนะการแข่งขัน XII Spring Trophy โดยมี BRM เป็นคนสร้าง",
    "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_en": "What is the away team at victoria park?",
    "question_th": "วิคตอเรีย พาร์ค ทีมเยือนเป็นทีมไหน?",
    "context": "CREATE TABLE table_name_69 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_38 WHERE venue = \"junction oval\"",
    "question_en": "Which away team is from junction oval?",
    "question_th": "ทีมเยือนทีมไหนมาจากทางแยกวงรี?",
    "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_en": "What was the term of Hon Peter Morris?",
    "question_th": "คำว่า 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_en": "What party is the member that has an electorate of Lindsay?",
    "question_th": "พรรคใดคือสมาชิกที่มีเขตเลือกตั้งของลินด์ซีย์?",
    "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_en": "What is the low lap total for the under 4 grid car driven by juan pablo montoya?",
    "question_th": "ผลรวมรอบต่ำของรถกริดต่ำกว่า 4 เส้นที่ขับโดยฮวน ปาโบล มอนโตยาเป็นเท่าใด",
    "context": "CREATE TABLE table_name_65 (laps INTEGER, grid VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_43 WHERE grid = 11",
    "question_en": "Who drove the grid 11 car?",
    "question_th": "ใครขับรถกริด 11 บ้าง?",
    "context": "CREATE TABLE table_name_43 (driver VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(grid) FROM table_name_34 WHERE laps > 69",
    "question_en": "What is the grid total for cars with over 69 laps?",
    "question_th": "รถยนต์ที่มีรอบมากกว่า 69 รอบมีตารางรวมเป็นเท่าใด",
    "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_en": "What is the time/retired with 22 laps and a grid of 29?",
    "question_th": "เวลา / เกษียณด้วย 22 รอบและตาราง 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_en": "What is the highest number of laps with a time of +6.643 and grid less than 2?",
    "question_th": "จำนวนรอบสูงสุดด้วยเวลา +6.643 และกริดน้อยกว่า 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_en": "When was there 204 deaths?",
    "question_th": "มีผู้เสียชีวิต 204 รายเมื่อใด?",
    "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_en": "When is the birth date of player with right arm fast style?",
    "question_th": "นักเตะสไตล์เร็วแขนขวาเกิดเมื่อใด?",
    "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_en": "What batting style corresponds to a bowling style of right arm medium for Stuart Williams?",
    "question_th": "รูปแบบการตีลูกแบบใดที่สอดคล้องกับรูปแบบการเล่นโบว์ลิ่งของแขนขวาของ 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_en": "What is the birth date for Mervyn Dillon?",
    "question_th": "เมอร์วิน ดิลลอนเกิดวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_11 (date_of_birth VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_98 WHERE player = \"michael ruffin\"",
    "question_en": "What position does Michael Ruffin play?",
    "question_th": "Michael Ruffin เล่นตำแหน่งอะไร?",
    "context": "CREATE TABLE table_name_98 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_72 WHERE position = \"center\"",
    "question_en": "What is the nationality of the center?",
    "question_th": "ศูนย์มีสัญชาติอะไร?",
    "context": "CREATE TABLE table_name_72 (nationality VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_30 WHERE years_for_jazz = \"1977-79\"",
    "question_en": "What is the nationality of the Jazz player 1977-79?",
    "question_th": "นักเตะแจ๊ส ฤดูกาล 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_en": "Tell me the School/Club team of the player from the United States that play'de guard?",
    "question_th": "บอกทีมโรงเรียน/สโมสรของนักเตะจากอเมริกาที่เล่นการ์ดหน่อยสิ?",
    "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_en": "What nationality is Bill Robinzine?",
    "question_th": "บิล โรบินซีนเป็นคนสัญชาติอะไร",
    "context": "CREATE TABLE table_name_69 (nationality VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT AVG(season) FROM table_name_95 WHERE position = \"10th\"",
    "question_en": "What is the average of seasons for 10th place finishes?",
    "question_th": "ค่าเฉลี่ยของฤดูกาลสำหรับการจบอันดับที่ 10 เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_95 (season INTEGER, position VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_81 WHERE position = \"2nd\"",
    "question_en": "What season was there a 2nd place finish?",
    "question_th": "ฤดูกาลไหนจบอันดับ 2 ครับ?",
    "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_en": "What level for seasons after 2003, a Division of kakkonen (second division), and a Position of 12th?",
    "question_th": "ระดับใดของฤดูกาลหลังปี 2003, ดิวิชั่นของ kakkonen (ดิวิชั่น 2) และอันดับที่ 12?",
    "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_en": "What was the streak on April 2?",
    "question_th": "สตรีคในวันที่ 2 เมษายนเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_61 (streak VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_9 WHERE leading_scorer = \"jones : 20\"",
    "question_en": "Who was the visiting team when the leading scorer was Jones : 20?",
    "question_th": "ทีมเยือนคือใครเมื่อผู้ทำประตูนำคือโจนส์ : 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_en": "How many people watched season 1?",
    "question_th": "มีคนดูซีซั่น 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_en": "What is the PI GP of Rob Flockhart, who has a pick # less than 122 and a round # less than 3?",
    "question_th": "PI GP ของ Rob Flockhart คืออะไร ใครมีตัวเลือก # น้อยกว่า 122 และรอบ # น้อยกว่า 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_en": "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?",
    "question_th": "reg gp ต่ำสุดของผู้เล่นที่มีรอบ # มากกว่า 2, ตัวเลือก # จาก 80 และ PI GP ที่ใหญ่กว่า 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_en": "Name the highest FIPS code for coordinates of 41.827547, -74.118478 and land less than 1.196",
    "question_th": "ตั้งชื่อรหัส FIPS สูงสุดสำหรับพิกัด 41.827547, -74.118478 และที่ดินน้อยกว่า 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_en": "Name the CDP name for FIPS code of 3659708",
    "question_th": "ตั้งชื่อชื่อ CDP สำหรับรหัส FIPS 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_en": "Name the FIPS code for county of wyoming and CDP name of pike",
    "question_th": "ตั้งชื่อรหัส FIPS สำหรับเคาน์ตีไวโอมิงและชื่อ CDP ของหอก",
    "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_en": "Name the sum of land for ANSI code of 2390496 and population less than 7,284",
    "question_th": "ตั้งชื่อผลรวมที่ดินสำหรับรหัส ANSI 2390496 และจำนวนประชากรน้อยกว่า 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_en": "How many sacks for the player with over 1 tackle, under 3 assisted tackles, and over 0 yards?",
    "question_th": "จำนวนกระสอบสำหรับผู้เล่นที่เข้าปะทะมากกว่า 1 ครั้ง, แอสซิสต์แท็กเกิลน้อยกว่า 3 ครั้ง และระยะเกิน 0 หลามีกี่กระสอบ",
    "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_en": "What stamp design has a denomination of $1.18?",
    "question_th": "แสตมป์แบบใดมีราคา 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_en": "What is the denomination for the stamp issued 8 January 2009?",
    "question_th": "แสตมป์ที่ออกเมื่อวันที่ 8 มกราคม พ.ศ. 2552 มีราคาเท่าใด",
    "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_en": "What date was the John Belisle, Kosta Tsetsekas stamp issued?",
    "question_th": "แสตมป์ John Belisle, Kosta Tsetsekas ออกวันที่เท่าไหร่?",
    "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_en": "What is the first day cover cancellation for the Karen Smith Design stamp?",
    "question_th": "การยกเลิกปกแสตมป์วันแรกสำหรับแสตมป์ Karen Smith Design คือเมื่อใด",
    "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_en": "What is the date of Competition of 2008 africa cup of nations?",
    "question_th": "การแข่งขันแอฟริกันคัพออฟเนชั่นส์ 2008 วันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_37 (date VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_88 WHERE date = \"22 january 2008\"",
    "question_en": "What is the score on 22 january 2008?",
    "question_th": "คะแนนเมื่อวันที่ 22 มกราคม 2551 เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_88 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_86 WHERE date = \"22 january 2008\"",
    "question_en": "Which venue was used 22 january 2008?",
    "question_th": "สถานที่ใดถูกใช้เมื่อวันที่ 22 มกราคม พ.ศ. 2551",
    "context": "CREATE TABLE table_name_86 (venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_47 WHERE score = \"1–0\" AND competition = \"2014 fifa world cup qualification\"",
    "question_en": "What result has a Score of 1–0, and a Competition of 2014 fifa world cup qualification?",
    "question_th": "ผลการแข่งขันใดมีคะแนน 1–0 และการแข่งขันฟุตบอลโลก 2014 รอบคัดเลือก?",
    "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–0\"",
    "question_en": "What date was the Competition of 2014 fifa world cup qualification, with a Score of 1–0?",
    "question_th": "การแข่งขันฟุตบอลโลก 2014 รอบคัดเลือก วันที่เท่าไหร่ ด้วยสกอร์ 1–0",
    "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_en": "what is the object type when the right ascension (j2000) is 11h10m42.8s?",
    "question_th": "ประเภทของวัตถุคืออะไรเมื่อการขึ้นที่ถูกต้อง (j2000) คือ 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_en": "what is the declination (j2000) when the ngc number is higher than 3593?",
    "question_th": "ค่าเสื่อม (j2000) เมื่อเลข ngc สูงกว่า 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_en": "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?",
    "question_th": "กลุ่มดาวคืออะไรเมื่อประเภทของวัตถุคือกาแลคซีกังหัน เลข ngc น้อยกว่า 3593 และค่าการขึ้นที่ถูกต้อง (j2000) คือ 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_en": "what is the right ascension (j2000) when the ngc number is 3576?",
    "question_th": "การขึ้นสู่สวรรค์ที่ถูกต้อง (j2000) คืออะไรเมื่อหมายเลข ngc คือ 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_en": "Who is the driver when the grid is 18?",
    "question_th": "ใครคือคนขับเมื่อกริดอายุ 18?",
    "context": "CREATE TABLE table_name_18 (driver VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT time_retired FROM table_name_42 WHERE grid = \"19\"",
    "question_en": "What is the time/retired when the grid is 19?",
    "question_th": "เมื่อกริดอายุ 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_en": "What was St Kilda's home team opponents score?",
    "question_th": "ฝ่ายตรงข้ามเจ้าบ้านของเซนต์คิลดาได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_56 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_27 WHERE home_team = \"hawthorn\"",
    "question_en": "When did Hawthorn play at home?",
    "question_th": "ฮอว์ธอร์นเล่นในบ้านเมื่อไหร่?",
    "context": "CREATE TABLE table_name_27 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT crowd FROM table_name_18 WHERE away_team = \"st kilda\"",
    "question_en": "How many people were in attendance at St Kilda's away match?",
    "question_th": "มีคนเข้าร่วมในเกมเยือนของเซนต์คิลดากี่คน?",
    "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_en": "What is the date of the British Rail class 111 tslrb description?",
    "question_th": "วันที่ของคำอธิบาย British Rail class 111 tslrb คือเมื่อใด",
    "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_en": "What is the number & name with an Undergoing overhaul, restoration or repairs date?",
    "question_th": "หมายเลขและชื่อที่มีวันที่อยู่ระหว่างการยกเครื่อง บูรณะ หรือซ่อมแซมคืออะไร?",
    "context": "CREATE TABLE table_name_65 (number_ VARCHAR, _name VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT number_ & _name FROM table_name_78 WHERE date = \"1958\"",
    "question_en": "What is the number & name of the livery in 1958?",
    "question_th": "องค์นี้หมายเลขและชื่อองค์ไหนครับ ปี 2501 ครับ?",
    "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_en": "What is the lowest rank for a nation with 29 total medals, over 5 silvers, and under 16 bronze?",
    "question_th": "อันดับต่ำสุดของประเทศที่ได้ทั้งหมด 29 เหรียญ มากกว่า 5 เหรียญเงิน และต่ำกว่า 16 เหรียญทองแดง คืออะไร?",
    "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_en": "What is the highest rank for a nation with 26 golds and over 17 silvers?",
    "question_th": "อันดับสูงสุดของประเทศที่มี 26 เหรียญทองและมากกว่า 17 เหรียญเงินคืออะไร?",
    "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_en": "What is the catalog number with the date November 16, 2004?",
    "question_th": "แค็ตตาล็อกหมายเลขใดวันที่ 16 พฤศจิกายน 2547",
    "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_en": "What is the date of the item with a label of Sony BMG, Epic and a Catalog number 5187482?",
    "question_th": "สินค้าที่มีป้ายกำกับ Sony BMG, Epic และหมายเลขแคตตาล็อก 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_en": "Which Catalog has a Region of Canada and a Format of cd/dvd?",
    "question_th": "แคตตาล็อกใดมีภูมิภาคของแคนาดาและมีรูปแบบเป็น 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_en": "What is the date for a CD format with a Region of Europe?",
    "question_th": "วันที่สำหรับรูปแบบซีดีกับภูมิภาคยุโรปคือเมื่อใด",
    "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_en": "What nationality is the la salle team?",
    "question_th": "ทีมลาซาลสัญชาติอะไรคะ?",
    "context": "CREATE TABLE table_name_28 (nationality VARCHAR, school_club_team VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_24 WHERE player = \"jim les\"",
    "question_en": "What's the nationality of jim les?",
    "question_th": "จิม เลสเป็นคนสัญชาติอะไร?",
    "context": "CREATE TABLE table_name_24 (nationality VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_24 WHERE nationality = \"spain\"",
    "question_en": "Which player has a nationality of spain?",
    "question_th": "นักเตะคนไหนมีสัญชาติสเปน?",
    "context": "CREATE TABLE table_name_24 (player VARCHAR, nationality VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_75 WHERE school_club_team = \"nebraska\"",
    "question_en": "What position is listed for the nebraska team?",
    "question_th": "ตำแหน่งใดที่ระบุไว้สำหรับทีมเนแบรสกา?",
    "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_en": "On October 24, who played at home when there was a decision of Ward?",
    "question_th": "วันที่ 24 ต.ค. ใครเล่นในบ้านตอนมีการตัดสินใจของวอร์ด?",
    "context": "CREATE TABLE table_name_95 (home VARCHAR, decision VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT laps FROM table_name_53 WHERE grid = 8",
    "question_en": "How many laps are there for grid 8?",
    "question_th": "ตารางที่ 8 มีกี่รอบ?",
    "context": "CREATE TABLE table_name_53 (laps VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_46 WHERE grid = 8",
    "question_en": "What is the driver for Grid 8?",
    "question_th": "ไดรเวอร์สำหรับ 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_en": "What is the average grid for Clay Regazzoni?",
    "question_th": "ตารางเฉลี่ยของ 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_en": "What is the average laps for the grid smaller than 21 for Renzo Zorzi?",
    "question_th": "รอบเฉลี่ยของกริดที่เล็กกว่า 21 สำหรับ 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_en": "What is the average laps for Grid 9?",
    "question_th": "รอบเฉลี่ยของกริด 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_en": "Name the constituted for labor and scullin ministry",
    "question_th": "ตั้งชื่อที่จัดตั้งขึ้นเพื่อกระทรวงแรงงานและสกัลลิน",
    "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_en": "Who was South Melbourne's away team opponents?",
    "question_th": "ใครคือคู่แข่งของทีมเยือนของเซาธ์ เมลเบิร์น?",
    "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_en": "Who was the leading scorer on November 2, 2007?",
    "question_th": "ใครคือผู้ทำประตูสูงสุดในวันที่ 2 พฤศจิกายน พ.ศ. 2550?",
    "context": "CREATE TABLE table_name_62 (leading_scorer VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(attendance) FROM table_name_24 WHERE home = \"hawks\"",
    "question_en": "What was the attendance when the Hawks played?",
    "question_th": "การเข้าร่วมเมื่อ Hawks เล่นคืออะไร?",
    "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_en": "How many bronzes are there for the total nation with 112 silver and a total of 72?",
    "question_th": "มีเหรียญทองแดงทั้งหมดกี่เหรียญสำหรับชาติทั้งหมด 112 เหรียญเงิน และทั้งหมด 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_en": "What is the highest bronze for San Marino with less than 82 total and less than 3 golds?",
    "question_th": "เหรียญทองแดงสูงสุดสำหรับซานมารีโนโดยมีจำนวนรวมน้อยกว่า 82 และน้อยกว่า 3 เหรียญทองคืออะไร?",
    "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_en": "How many golds were there when there was more than 11 bronze and 29 in total?",
    "question_th": "มีทองอยู่กี่เหรียญในเมื่อมีทองแดงมากกว่า 11 เหรียญ รวม 29 เหรียญ?",
    "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_en": "What was Montenegro's average bronze with less than 7 silver and more than 4 golds?",
    "question_th": "บรอนซ์โดยเฉลี่ยของมอนเตเนโกรที่มีเงินน้อยกว่า 7 เหรียญเงินและมากกว่า 4 เหรียญทองคือเท่าใด",
    "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_en": "How many golds were there for Iceland with more than 15 silver?",
    "question_th": "ไอซ์แลนด์มีทองมากกว่า 15 เหรียญเงินกี่เหรียญทอง?",
    "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_en": "What was Andorra's total with less than 10 silver and more than 5 bronze?",
    "question_th": "ผลรวมของอันดอร์ราที่มีน้อยกว่า 10 เหรียญเงินและมากกว่า 5 เหรียญทองแดงเป็นเท่าใด",
    "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_en": "What is the roll number of Poroti school, which has a 6 decile?",
    "question_th": "โรงเรียนโปโรติมีเลข 6 เดซิล์เลขเท่าไหร่?",
    "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_en": "What is the roll number of the school with a state authority in Waiotira?",
    "question_th": "โรงเรียนที่มีหน่วยงานของรัฐใน 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_en": "What is the area of the school with a decile of 2 and a roll number 222?",
    "question_th": "พื้นที่ของโรงเรียนที่มีทศนิยม 2 และเลข 222 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_33 (area VARCHAR, decile VARCHAR, roll VARCHAR)"
  },
  {
    "answer": "SELECT decile FROM table_name_38 WHERE area = \"purua\"",
    "question_en": "WHat is the decile of the school in Purua?",
    "question_th": "ความเสื่อมโทรมของโรงเรียนในปุรัวคืออะไร?",
    "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_en": "what is the away team score when the home team is essendon?",
    "question_th": "สกอร์ทีมเยือนตอนเจ้าบ้านเป็นเอสเซนดอนเป็นเท่าไหร่?",
    "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_en": "How many total ties had less than 1183 total games, 121 years, and more than 541 losses?",
    "question_th": "มีกี่ความสัมพันธ์ที่มีเกมทั้งหมดน้อยกว่า 1,183 เกม 121 ปีและแพ้มากกว่า 541 ครั้ง?",
    "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_en": "How many losses had more than 122 years and more than 1244 total games?",
    "question_th": "มีการสูญเสียกี่ครั้งในระยะเวลามากกว่า 122 ปีและมีเกมทั้งหมดมากกว่า 1,244 เกม?",
    "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_en": "What is the lowest earnings for a player with over 24 wins?",
    "question_th": "รายได้ต่ำสุดสำหรับผู้เล่นที่ชนะมากกว่า 24 ครั้งคือเท่าไร?",
    "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_en": "Which constructor has Chuck Weyant as a driver, 45 laps, and a qual of less than 142.29?",
    "question_th": "คอนสตรัคเตอร์คนไหนที่มี Chuck Weyant เป็นนักขับ 45 รอบและควอลิตี้น้อยกว่า 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_en": "Which time/retired has a qual of 144.02?",
    "question_th": "เวลาใด/เกษียณอายุมีคุณสมบัติเท่ากับ 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_en": "Which rounds did Vic Elford with a Ford cosworth dfv 3.0 v8 engine have?",
    "question_th": "Vic Elford กับเครื่องยนต์ Ford cosworth dfv 3.0 v8 มีรอบใดบ้าง",
    "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_en": "What is the chassis for Bruce Mclaren with all rounds and a g tyre?",
    "question_th": "แชสซีของ Bruce Mclaren พร้อมยางทุกรอบและยาง Ag คืออะไร?",
    "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_en": "What is the NHL team that has a team (League) of Mississauga Icedogs (ohl)?",
    "question_th": "ทีม NHL ที่มีทีม (ลีก) ของ 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_en": "Im the match where the home team is Melbourne Victory, what was the crowd attendance?",
    "question_th": "ผมเป็นแมตช์ที่เจ้าบ้านคือ เมลเบิร์น วิคตอรี่ ผู้ชมเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_97 (crowd VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_31 WHERE round = \"playoff\"",
    "question_en": "What was the score of the match that took place in the playoff round?",
    "question_th": "การแข่งขันในรอบเพลย์ออฟมีสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_31 (score VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT crowd FROM table_name_79 WHERE away_team = \"newcastle jets\"",
    "question_en": "In the match where newcastle jets was the away team, what was the crown attendance?",
    "question_th": "แมตช์ที่นิวคาสเซิ่ล เจ็ตส์ เป็นทีมเยือน มงกุฎผู้เข้าชมมีเท่าไร?",
    "context": "CREATE TABLE table_name_79 (crowd VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_97 WHERE date = \"1990-10-21\"",
    "question_en": "What team was the opponent on 1990-10-21?",
    "question_th": "ทีมใดคือคู่ต่อสู้ในฤดูกาล 1990-10-21?",
    "context": "CREATE TABLE table_name_97 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_42 WHERE year < 1987",
    "question_en": "What was the competition earlier than 1987?",
    "question_th": "การแข่งขันอะไรก่อนปี 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_en": "What event placed bronze earlier than 1987?",
    "question_th": "เหตุการณ์ใดที่ทำให้ได้เหรียญทองแดงก่อนปี 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_en": "What was the score for the match on November 13, 2005?",
    "question_th": "คะแนนของการแข่งขันเมื่อวันที่ 13 พฤศจิกายน พ.ศ. 2548 เป็นเท่าใด?",
    "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_en": "What tournament took place on July 17, 2005, with a clay surface?",
    "question_th": "การแข่งขันใดเกิดขึ้นเมื่อวันที่ 17 กรกฎาคม พ.ศ. 2548 โดยมีพื้นผิวเป็นดินเหนียว",
    "context": "CREATE TABLE table_name_70 (tournament VARCHAR, surface VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(grid) FROM table_name_8 WHERE laps > 72",
    "question_en": "What is the highest Grid with over 72 laps?",
    "question_th": "กริดสูงสุดที่มีเวลามากกว่า 72 รอบคืออะไร?",
    "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_en": "What is the average number of laps associated with a Time/Retired of +1:14.801?",
    "question_th": "จำนวนรอบเฉลี่ยที่เกี่ยวข้องกับเวลา/เกษียณที่ +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_en": "What date is the circuit at wanneroo park?",
    "question_th": "วงจรที่ wanneroo park จัดขึ้นวันไหน?",
    "context": "CREATE TABLE table_name_64 (date VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_5 WHERE race_title = \"calder\"",
    "question_en": "What team has a title of calder?",
    "question_th": "ทีมใดมีชื่อเป็นคาลเดอร์?",
    "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_en": "Tell me the Laps for time/retired of +1:08.491",
    "question_th": "บอกเวลารอบ/เลิกใช้ของ +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_en": "Tell me the highest laps for toyota and grid of 13",
    "question_th": "บอกรอบสูงสุดสำหรับโตโยต้าและตารางที่ 13 หน่อยสิ",
    "context": "CREATE TABLE table_name_56 (laps INTEGER, constructor VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_48 WHERE laps = 20",
    "question_en": "I want the Driver with Laps of 20",
    "question_th": "ฉันต้องการคนขับที่มีรอบ 20",
    "context": "CREATE TABLE table_name_48 (driver VARCHAR, laps VARCHAR)"
  },
  {
    "answer": "SELECT SUM(grid) FROM table_name_84 WHERE driver = \"giancarlo fisichella\"",
    "question_en": "Tell me the sum of Grid for giancarlo fisichella",
    "question_th": "บอกผลรวมของกริดสำหรับจานคาร์โล ฟิซิเชลลามาหน่อยสิ",
    "context": "CREATE TABLE table_name_84 (grid INTEGER, driver VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_97 WHERE venue = \"vfl park\"",
    "question_en": "What date was the venue at VFL park?",
    "question_th": "สนาม 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_en": "What was the crowd attendance when the home team was Melbourne?",
    "question_th": "ฝูงชนเข้าร่วมเมื่อทีมเหย้าอยู่ที่เมลเบิร์นเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_73 (crowd VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_30 WHERE venue = \"lake oval\"",
    "question_en": "What was the away team when the venue was Lake Oval?",
    "question_th": "ทีมเยือนคือทีมใดเมื่อสนามคือเลคโอวัล?",
    "context": "CREATE TABLE table_name_30 (away_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_7 WHERE home_team = \"carlton\"",
    "question_en": "What was the away team when the home team was Carlton?",
    "question_th": "ทีมเยือนเมื่อเจ้าบ้านเป็นคาร์ลตันคือทีมอะไร?",
    "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_en": "What player is picked 302 in round 11?",
    "question_th": "ผู้เล่นคนใดที่ถูกเลือก 302 ในรอบ 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_en": "How many laps did Jackie Oliver do?",
    "question_th": "Jackie Oliver ทำไปกี่รอบ?",
    "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_en": "How many laps with a grid larger than 7 did a Lotus - Ford do with a Time/Retired of + 2 laps?",
    "question_th": "Lotus - Ford ทำได้กี่รอบโดยมีตารางที่ใหญ่กว่า 7 โดยมีเวลา/เกษียณ + 2 รอบ",
    "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_en": "What is the name of the constellation that has a NGC number smaller tha 5457?",
    "question_th": "กลุ่มดาวที่มีหมายเลข NGC น้อยกว่า 5457 ชื่ออะไร",
    "context": "CREATE TABLE table_name_19 (constellation VARCHAR, ngc_number INTEGER)"
  },
  {
    "answer": "SELECT MIN(apparent_magnitude) FROM table_name_67 WHERE declination___j2000__ = \"°39′45″\"",
    "question_en": "What is the Apparent magnitude of a Declination (J2000) of °39′45″?",
    "question_th": "ขนาดปรากฏของการลดลง (J2000) ที่ °39′45″ คือเท่าใด",
    "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_en": "Which supercharger gear ratio has a Octane rating of 68?",
    "question_th": "อัตราทดเกียร์ซุปเปอร์ชาร์จเจอร์ใดที่มีค่าออกเทนอยู่ที่ 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_en": "What is the elite eight result for the big west?",
    "question_th": "ผลลัพธ์แปดยอดสำหรับบิ๊กเวสต์คืออะไร?",
    "context": "CREATE TABLE table_name_56 (elite_eight VARCHAR, conference VARCHAR)"
  },
  {
    "answer": "SELECT votes__percentage FROM table_name_24 WHERE candidate = \"cliff breitkreuz\"",
    "question_en": "What is the vote % for Cliff Breitkreuz?",
    "question_th": "คลิฟ ไบรท์ครอยซ์ โหวตกี่เปอร์เซ็นต์คะ?",
    "context": "CREATE TABLE table_name_24 (votes__percentage VARCHAR, candidate VARCHAR)"
  },
  {
    "answer": "SELECT time_retired FROM table_name_36 WHERE driver = \"damon hill\"",
    "question_en": "What is the time/retired for damon hill?",
    "question_th": "เดม่อน ฮิลล์ เลิกงานกี่โมง?",
    "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_en": "Who constructed olivier panis' car that retired after +1 lap?",
    "question_th": "ใครเป็นคนสร้างรถของ Olivier Panis ที่เลิกใช้งานหลัง +1 รอบ?",
    "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_en": "What is the high assists of Hamilton (24)?",
    "question_th": "แฮมิลตัน (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_en": "What series had a high points of Prince (23)?",
    "question_th": "ซีรีส์เรื่องไหนมีคะแนนสูงเท่ากับ 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_en": "What category of the British Soap Awards resulted in nominated?",
    "question_th": "รางวัล British Soap Awards ประเภทใดที่ได้รับการเสนอชื่อเข้าชิง?",
    "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_en": "What category was nominated in 2010 fo the British Soap Awards?",
    "question_th": "หมวดหมู่ใดที่ได้รับการเสนอชื่อเข้าชิงรางวัล British Soap Awards ในปี 2010",
    "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_en": "Which country is Dyer from?",
    "question_th": "ดายเออร์มาจากประเทศไหน?",
    "context": "CREATE TABLE table_name_14 (country VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_32 WHERE moving_from = \"everton\"",
    "question_en": "What country is the athlete moving from Everton from?",
    "question_th": "นักกีฬาที่ย้ายจากเอฟเวอร์ตัน มาจากประเทศใด?",
    "context": "CREATE TABLE table_name_32 (country VARCHAR, moving_from VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_32 WHERE 2009 = \"2r\"",
    "question_en": "Name the tournament for 2009 2r",
    "question_th": "ตั้งชื่อการแข่งขันสำหรับปี 2009 2r",
    "context": "CREATE TABLE table_name_32 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_7 WHERE 2009 = \"2r\" AND tournament = \"wimbledon\"",
    "question_en": "Name the 2011 for 2009 being 2r at wimbledon",
    "question_th": "ตั้งชื่อปี 2011 สำหรับปี 2009 ให้เป็นที่ 2r ที่วิมเบิลดัน",
    "context": "CREATE TABLE table_name_7 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2012 FROM table_name_19 WHERE 2009 = \"1r\"",
    "question_en": "Name the 2012 for 2009 of 1r",
    "question_th": "ตั้งชื่อปี 2012 สำหรับปี 2009 จาก 1r",
    "context": "CREATE TABLE table_name_19 (Id VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_7 WHERE home_team = \"south melbourne\"",
    "question_en": "Who was the away team when the home team was South Melbourne?",
    "question_th": "ทีมเยือนตอนเจ้าบ้านคือทีมเซาท์เมลเบิร์นคือใคร?",
    "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_en": "What is the total swimsuit number with gowns larger than 9.48 with interviews larger than 8.94 in florida?",
    "question_th": "หมายเลขชุดว่ายน้ำรวมที่มีชุดคลุมขนาดใหญ่กว่า 9.48 และมีการสัมภาษณ์มากกว่า 8.94 ในฟลอริดาคือเท่าใด",
    "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_en": "What is the total average for swimsuits smaller than 9.62 in Colorado?",
    "question_th": "ค่าเฉลี่ยรวมสำหรับชุดว่ายน้ำที่มีขนาดเล็กกว่า 9.62 ในโคโลราโดคือเท่าใด",
    "context": "CREATE TABLE table_name_70 (average INTEGER, swimsuit VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT AVG(bronze) FROM table_name_86 WHERE total = 47",
    "question_en": "What was the bronze medal count of the team that finished with 47 total medals?",
    "question_th": "ทีมที่ได้เหรียญทองแดงครบ 47 เหรียญ ได้เหรียญทองแดงเป็นจำนวนเท่าใด",
    "context": "CREATE TABLE table_name_86 (bronze INTEGER, total VARCHAR)"
  },
  {
    "answer": "SELECT SUM(silver) FROM table_name_41 WHERE bronze = 8",
    "question_en": "What is the silver medal count of the team that finished with 8 bronze medals?",
    "question_th": "ทีมที่คว้า 8 เหรียญทองแดงได้เหรียญเงินเป็นจำนวนเท่าใด",
    "context": "CREATE TABLE table_name_41 (silver INTEGER, bronze VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_10 WHERE athlete = \"rené hoppe\"",
    "question_en": "What is the status of rené hoppe?",
    "question_th": "สถานะของเรอเน่ ฮอปเป้เป็นอย่างไร?",
    "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_en": "How many times does Switzerland have under 7 golds and less than 3 silvers?",
    "question_th": "สวิตเซอร์แลนด์มีทองต่ำกว่า 7 เหรียญทองและน้อยกว่า 3 เหรียญเงินกี่ครั้ง?",
    "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_en": "What athlete has less than 7 gold and 14 total medals?",
    "question_th": "นักกีฬาคนใดมีเหรียญทองน้อยกว่า 7 เหรียญและเหรียญรางวัลทั้งหมด 14 เหรียญ?",
    "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_en": "What is the average crowd size for the home team hawthorn?",
    "question_th": "ขนาดฝูงชนเฉลี่ยของทีมเจ้าบ้านฮอว์ธอร์นคือเท่าใด?",
    "context": "CREATE TABLE table_name_13 (crowd INTEGER, home_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_48 WHERE home_team = \"st kilda\"",
    "question_en": "Where does St Kilda play?",
    "question_th": "เซนต์คิลดาเล่นที่ไหน?",
    "context": "CREATE TABLE table_name_48 (venue VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_76 WHERE away_team = \"fitzroy\"",
    "question_en": "Who was the home team when Fitzroy was the away team?",
    "question_th": "เมื่อฟิตซ์รอยเป็นทีมเยือนคือใคร?",
    "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_en": "What was the home team score at Kardinia Park?",
    "question_th": "สกอร์ทีมเหย้าที่คาร์ดิเนีย พาร์คเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_43 (home_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT MIN(crowd) FROM table_name_2 WHERE home_team = \"carlton\"",
    "question_en": "What was the lowest crowd size for the Carlton at home?",
    "question_th": "ขนาดฝูงชนต่ำสุดสำหรับคาร์ลตันที่บ้านคือเท่าไร?",
    "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_en": "Name the engine with rounds of 7 with geki driver",
    "question_th": "ตั้งชื่อเครื่องยนต์ด้วยเลข 7 พร้อมไดรเวอร์เกกิ",
    "context": "CREATE TABLE table_name_57 (engine VARCHAR, rounds VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_24 WHERE rounds = \"3\"",
    "question_en": "Name the driver for 3 rounds",
    "question_th": "ตั้งชื่อนักแข่ง 3 รอบ",
    "context": "CREATE TABLE table_name_24 (driver VARCHAR, rounds VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(crowd) FROM table_name_6 WHERE home_team = \"north melbourne\"",
    "question_en": "What was the attendance of the North Melbourne's home game?",
    "question_th": "การแข่งขันในบ้านของนอร์ท เมลเบิร์น เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_6 (crowd VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT SUM(crowd) FROM table_name_36 WHERE home_team = \"fitzroy\"",
    "question_en": "What was the attendance at the Fitzroy home game?",
    "question_th": "การเข้าร่วมในเกมเหย้าของฟิตซ์รอยเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_36 (crowd INTEGER, home_team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(crowd) FROM table_name_46 WHERE home_team = \"richmond\"",
    "question_en": "What was Richmond's highest attendance?",
    "question_th": "ผู้เข้าร่วมสูงสุดของริชมอนด์คืออะไร?",
    "context": "CREATE TABLE table_name_46 (crowd INTEGER, home_team VARCHAR)"
  },
  {
    "answer": "SELECT ground FROM table_name_49 WHERE match = 4",
    "question_en": "Which ground is match 4 held on?",
    "question_th": "นัดที่ 4 จัดขึ้นที่สนามใด?",
    "context": "CREATE TABLE table_name_49 (ground VARCHAR, match VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_name_15 WHERE team = \"chicago\"",
    "question_en": "Which game number did they play the Chicago team?",
    "question_th": "พวกเขาเล่นเกมหมายเลขไหนกับทีมชิคาโก?",
    "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_en": "What was the season record when the location attendance was Air Canada Centre 19,800?",
    "question_th": "บันทึกฤดูกาลคืออะไรเมื่อมีผู้เข้าร่วมสถานที่คือ Air Canada Center 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_en": "Name the visitor for home of ny rangers",
    "question_th": "ตั้งชื่อผู้มาเยือนบ้านของทหารพรานป่า",
    "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_en": "What is the label for a CD released in 2004?",
    "question_th": "ซีดีที่ออกในปี 2547 ชื่ออะไร",
    "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_en": "Who made a release in the US in 1982?",
    "question_th": "ใครเป็นผู้ออกฉายในสหรัฐอเมริกาในปี 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_en": "In the match where the venue was arden street oval, what was the crowd attendance?",
    "question_th": "ในการแข่งขันที่สถานที่คือ arden street oval ผู้ชมเข้าชมเป็นจำนวนเท่าใด?",
    "context": "CREATE TABLE table_name_88 (crowd INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT SUM(crowd) FROM table_name_58 WHERE venue = \"punt road oval\"",
    "question_en": "What was the crowd attendance in the match at punt road oval?",
    "question_th": "ฝูงชนที่เข้าร่วมการแข่งขันที่ 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_en": "What was the score when the home team had a crowd larger than 21,188?",
    "question_th": "เมื่อเจ้าบ้านมีจ่าฝูงมากกว่า 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_en": "Where did north melbourne play while away?",
    "question_th": "นอร์ธ เมลเบิร์น เล่นที่ไหนระหว่างเยือน?",
    "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_en": "What did the team score at home in north melbourne?",
    "question_th": "ทีมทำประตูในบ้านที่เมลเบิร์นตอนเหนือได้เท่าไหร่?",
    "context": "CREATE TABLE table_name_10 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT time_retired FROM table_name_54 WHERE grid < 2",
    "question_en": "What was the time of the driver in grid 2?",
    "question_th": "คนขับในตารางที่ 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_en": "What time did Carroll Shelby have in Grid 14?",
    "question_th": "Carroll Shelby มีเวลาเท่าไรใน 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_en": "What time did the ferrari car that finished 62 laps have?",
    "question_th": "รถเฟอร์รารีที่จบ 62 รอบมีเวลาเท่าไหร่?",
    "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_en": "What is the date of the game where the vistor team was the Knicks and more than 18,165 were in attendance?",
    "question_th": "วันที่ของเกมที่ทีมเยือนคือทีมนิกส์และมีผู้ชมมากกว่า 18,165 คนคือวันที่ใด?",
    "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_en": "Whats teo fabi average lap time while having less than 9 grids?",
    "question_th": "เวลาต่อรอบเฉลี่ยของ teo fabi คือเท่าไรในขณะที่มีกริดน้อยกว่า 9 เส้น?",
    "context": "CREATE TABLE table_name_79 (laps INTEGER, driver VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_12 WHERE grid = 19",
    "question_en": "Which driver drove in grid 19?",
    "question_th": "คนขับคนไหนขับในกริด 19?",
    "context": "CREATE TABLE table_name_12 (driver VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_5 WHERE date = \"april 29\"",
    "question_en": "Who was the opponent on April 29?",
    "question_th": "คู่ต่อสู้ในวันที่ 29 เมษายนคือใคร?",
    "context": "CREATE TABLE table_name_5 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT SUM(attendance) FROM table_name_50 WHERE date = \"april 17\"",
    "question_en": "How many attended the game on April 17?",
    "question_th": "มีกี่คนที่เข้าร่วมเกมในวันที่ 17 เมษายน?",
    "context": "CREATE TABLE table_name_50 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_86 WHERE date = \"april 3\"",
    "question_en": "What is the record on April 3?",
    "question_th": "บันทึกเมื่อวันที่ 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_en": "What is the weight of the display that has an internal storage of 16-64 GB and uses a wi-fi, 3G wireless network?",
    "question_th": "น้ำหนักของจอแสดงผลที่มีที่เก็บข้อมูลภายใน 16-64 GB และใช้เครือข่ายไร้สาย wi-fi, 3G คือเท่าใด",
    "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_en": "Which wireless network did LCD displays with 4 GB of internal storage use?",
    "question_th": "เครือข่ายไร้สายใดที่จอ LCD แสดงพร้อมพื้นที่เก็บข้อมูลภายใน 4 GB",
    "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_en": "What's the lowest number of draws when the wins are less than 15, and against is 1228?",
    "question_th": "จำนวนเสมอต่ำสุดเมื่อชนะน้อยกว่า 15 และต่อคือ 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_en": "What's the sum of draws for against larger than 1228 with fewer than 1 wins?",
    "question_th": "ผลรวมของการเสมอกับมากกว่า 1228 ที่ชนะน้อยกว่า 1 ครั้งเป็นเท่าใด",
    "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_en": "On what dates did Jim Jarmusch win the Lifetime Achievement?",
    "question_th": "Jim Jarmusch ชนะรางวัล 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–15–9\"",
    "question_en": "Which team was the home team when Colorado was the visitor and the record became 26–15–9?",
    "question_th": "ทีมใดเป็นเจ้าบ้านเมื่อโคโลราโดเป็นผู้มาเยือนและทำสถิติเป็น 26–15–9",
    "context": "CREATE TABLE table_name_45 (home VARCHAR, visitor VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_78 WHERE record = \"25–14–9\"",
    "question_en": "What was the score when the record became 25–14–9?",
    "question_th": "คะแนนเมื่อบันทึกกลายเป็น 25–14–9 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_78 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_35 WHERE record = \"26–14–9\"",
    "question_en": "What was the date the record became 26–14–9?",
    "question_th": "วันที่บันทึกเป็น 26–14–9 คืออะไร",
    "context": "CREATE TABLE table_name_35 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_88 WHERE visitor = \"colorado\" AND record = \"22–13–6\"",
    "question_en": "What team was the home team when Colorado was the visitor and the record became 22–13–6?",
    "question_th": "ทีมใดเป็นเจ้าบ้านเมื่อโคโลราโดเป็นผู้มาเยือนและทำสถิติเป็น 22–13–6",
    "context": "CREATE TABLE table_name_88 (home VARCHAR, visitor VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_55 WHERE tournament = \"asian games\"",
    "question_en": "What's the venue for the asian games tournament?",
    "question_th": "สถานที่จัดการแข่งขันเอเชียนเกมส์คือที่ไหน?",
    "context": "CREATE TABLE table_name_55 (venue VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_48 WHERE result = \"6th\"",
    "question_en": "Which tournament resulted in 6th place?",
    "question_th": "การแข่งขันใดส่งผลให้อันดับที่ 6?",
    "context": "CREATE TABLE table_name_48 (tournament VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT MAX(year) FROM table_name_19 WHERE venue = \"doha, qatar\"",
    "question_en": "What's the latest year that Doha, Qatar hosted a tournament?",
    "question_th": "ล่าสุดที่กรุงโดฮา ประเทศกาตาร์เป็นเจ้าภาพจัดการแข่งขันคือปีใด",
    "context": "CREATE TABLE table_name_19 (year INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT AVG(year) FROM table_name_81 WHERE venue = \"doha, qatar\"",
    "question_en": "What's the average of all years tournaments were hosted in Doha, Qatar?",
    "question_th": "ค่าเฉลี่ยของการแข่งขันทุกปีที่จัดขึ้นที่โดฮา กาตาร์ คือเท่าใด",
    "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_en": "What is the overall draft number for the running back drafted after round 1 from fresno state?",
    "question_th": "รันนิ่งแบ็กดราฟท์หลังยกที่ 1 จากเฟรสโนสเตทหมายเลขดราฟท์รวมเป็นเท่าไร?",
    "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_en": "What is the overall total for players drafted from notre dame?",
    "question_th": "ยอดรวมของผู้เล่นที่ร่างจากนอเทรอดามคือเท่าไร?",
    "context": "CREATE TABLE table_name_25 (overall INTEGER, college VARCHAR)"
  },
  {
    "answer": "SELECT SUM(gold) FROM table_name_23 WHERE silver > 1",
    "question_en": "Name the sum of gold which has a silver more than 1",
    "question_th": "ตั้งชื่อผลรวมของทองคำที่มีเงินมากกว่า 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_en": "Name the average rank for west germany when gold is more than 1",
    "question_th": "ตั้งชื่ออันดับเฉลี่ยของเยอรมนีตะวันตกเมื่อทองคำมากกว่า 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_en": "Name the average rank for when bronze is more than 1",
    "question_th": "ตั้งชื่ออันดับเฉลี่ยเมื่อทองแดงมากกว่า 1",
    "context": "CREATE TABLE table_name_86 (rank INTEGER, bronze INTEGER)"
  },
  {
    "answer": "SELECT SUM(gold) FROM table_name_87 WHERE silver < 0",
    "question_en": "I want the sum of gold for silver being less than 0",
    "question_th": "ฉันต้องการให้ผลรวมของทองคำสำหรับเงินน้อยกว่า 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_en": "What dates does Alex Munter have 25% and the polling firm of Decima?",
    "question_th": "Alex Munter มีคะแนนเสียง 25% และสำนักงานสำรวจความคิดเห็นของ 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_en": "What are the polling dates for polling firm Holinshed when Terry Kilrea dropped out and Bob Chiarelli has 22.5%?",
    "question_th": "วันเลือกตั้งของสำนักงานเลือกตั้ง Holinshed เมื่อ Terry Kilrea ลาออกและ Bob Chiarelli มี 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_en": "What is Date, when Outcome is \"Runner Up\", and when Opponent is \"Lu Jiaxiang\"?",
    "question_th": "วันที่คืออะไร เมื่อผลลัพธ์คือ \"รองชนะเลิศ\" และเมื่อฝ่ายตรงข้ามคือ \"หลู่เจียเซียง\"?",
    "context": "CREATE TABLE table_name_91 (date VARCHAR, outcome VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_8 WHERE tournament = \"phuket , thailand\"",
    "question_en": "What is Opponent, when Tournament is \"Phuket , Thailand\"?",
    "question_th": "คู่ต่อสู้คืออะไร เมื่อทัวร์นาเมนต์คือ \"ภูเก็ต ประเทศไทย\"?",
    "context": "CREATE TABLE table_name_8 (opponent VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_87 WHERE tournament = \"saint joseph , united states\"",
    "question_en": "What is Surface, when Tournament is \"Saint Joseph , United States\"?",
    "question_th": "Surface คืออะไร เมื่อการแข่งขันคือ \"Saint Joseph สหรัฐอเมริกา\"",
    "context": "CREATE TABLE table_name_87 (surface VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_98 WHERE opponent = \"lu jiaxiang\"",
    "question_en": "What is Tournament, when Opponent is \"Lu Jiaxiang\"?",
    "question_th": "Tournament คืออะไร เมื่อคู่ต่อสู้คือ \"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_en": "What is Outcome, when Tournament is \"Chiang Mai , Thailand\"?",
    "question_th": "ผลลัพธ์คืออะไรเมื่อทัวร์นาเมนต์คือ \"เชียงใหม่ ประเทศไทย\"?",
    "context": "CREATE TABLE table_name_90 (outcome VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_97 WHERE date = \"19 september 2012\"",
    "question_en": "What is Outcome, when Date is \"19 September 2012\"?",
    "question_th": "ผลลัพธ์คืออะไร เมื่อวันที่คือ \"19 กันยายน 2555\"",
    "context": "CREATE TABLE table_name_97 (outcome VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT AVG(poles) FROM table_name_59 WHERE races < 4",
    "question_en": "What Poles have Races smaller than 4?",
    "question_th": "ชาวโปแลนด์คนใดที่มีเชื้อชาติเล็กกว่า 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_en": "What is the sum of Points with a Series of italian formula renault 2.0, and Poles smaller than 0?",
    "question_th": "ผลรวมของคะแนนกับซีรี่ส์ของสูตรอิตาลี renault 2.0 และเสาที่เล็กกว่า 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_en": "What is the total number of Points with Wins larger than 0, a Position of 12th, and Poles larger than 0?",
    "question_th": "จำนวนคะแนนรวมที่ชนะมากกว่า 0, อันดับที่ 12 และโปแลนด์มากกว่า 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_en": "What is the smallest Wins with a Position of 20th, and Poles smaller than 0?",
    "question_th": "การชนะที่น้อยที่สุดด้วยตำแหน่งที่ 20 และโพลที่น้อยกว่า 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_en": "What is the date of the match located in Madrid, Esp?",
    "question_th": "แมตช์ที่เมืองมาดริด สเปน ตรงกับวันที่เท่าไหร่?",
    "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_en": "Can you tell me the Miss Pilipinas that has the Second runner-up of maria penson?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่านางสาวพิลิพินัสที่ได้รองอันดับ 2 มาเรีย เพนสัน?",
    "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_en": "Can you tell me the Miss Maja Pilipinas that has the Year of 1969?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่า น.ส.มาจา พิลิปินัส ประจำปี พ.ศ. 2512?",
    "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_en": "Can you tell me the Third runner-up that has the Year of 1969?",
    "question_th": "คุณช่วยบอกหน่อยได้ไหมว่ารองอันดับสามที่มีปี 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_en": "Which Byes have an Against smaller than 1466, and Losses smaller than 6?",
    "question_th": "Byes ใดมีค่า Against น้อยกว่า 1466 และ Loss น้อยกว่า 6",
    "context": "CREATE TABLE table_name_91 (byes VARCHAR, against VARCHAR, losses VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_47 WHERE week = 2",
    "question_en": "What was week 2's opponent?",
    "question_th": "คู่ต่อสู้ของสัปดาห์ที่ 2 คืออะไร?",
    "context": "CREATE TABLE table_name_47 (opponent VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT MAX(week) FROM table_name_91 WHERE attendance = 20 OFFSET 112",
    "question_en": "Which Week has an Attendance of 20,112?",
    "question_th": "สัปดาห์ใดมีผู้เข้าร่วม 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_en": "What is the margin of victory of the Dodge Intrepid?",
    "question_th": "ชัยชนะของ 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_en": "What is the lowest car number sponsored by UPS before 2001?",
    "question_th": "หมายเลขรถยนต์ต่ำสุดที่ UPS สนับสนุนก่อนปี 2544 คือเท่าใด",
    "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_en": "Who sponsored Greg Biffle's win on April 14?",
    "question_th": "ใครเป็นผู้สนับสนุนชัยชนะของ Greg Biffle เมื่อวันที่ 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_en": "What is the highest car number sponsored by Post-It / National Guard?",
    "question_th": "หมายเลขรถสูงสุดที่สนับสนุนโดย 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_en": "How many seasons has UPS sponsored a car with a number larger than 17?",
    "question_th": "UPS สนับสนุนรถยนต์ที่มีหมายเลขมากกว่า 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–27\"",
    "question_en": "What shows for set 2 when Set 1 is 29–27?",
    "question_th": "สิ่งที่จะแสดงสำหรับชุดที่ 2 เมื่อชุดที่ 1 คือ 29–27?",
    "context": "CREATE TABLE table_name_61 (set_2 VARCHAR, set_1 VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_48 WHERE set_1 = \"21–25\"",
    "question_en": "What is the time when the set 1 is 21–25?",
    "question_th": "เซต 1 คือ 21–25 กี่โมงคะ?",
    "context": "CREATE TABLE table_name_48 (time VARCHAR, set_1 VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_5 WHERE set_3 = \"26–28\"",
    "question_en": "What is the score when the set 3 is 26–28?",
    "question_th": "คะแนนเมื่อเซต 3 คือ 26–28 เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_5 (score VARCHAR, set_3 VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_68 WHERE set_3 = \"26–28\"",
    "question_en": "What is the Score when the set 3 is 26–28?",
    "question_th": "คะแนนเมื่อเซต 3 คือ 26–28 คืออะไร?",
    "context": "CREATE TABLE table_name_68 (score VARCHAR, set_3 VARCHAR)"
  },
  {
    "answer": "SELECT set_3 FROM table_name_95 WHERE total = \"78–92\"",
    "question_en": "What is the set 3 when the total is 78–92?",
    "question_th": "ชุดที่ 3 คืออะไรเมื่อผลรวมเป็น 78–92?",
    "context": "CREATE TABLE table_name_95 (set_3 VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT total FROM table_name_95 WHERE set_1 = \"21–25\"",
    "question_en": "What is the total when the set 1 is 21–25?",
    "question_th": "ยอดรวมเมื่อเซต 1 เท่ากับ 21–25 เป็นเท่าไหร่?",
    "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_en": "How many total losses were with less than 51 draws but more than 6 wins?",
    "question_th": "แพ้ทั้งหมดกี่ครั้งโดยเสมอน้อยกว่า 51 ครั้ง แต่ชนะมากกว่า 6 ครั้ง?",
    "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_en": "How many matches has 51 draws and more than 6 against?",
    "question_th": "มีกี่นัดที่เสมอ 51 นัดและแพ้มากกว่า 6 นัด?",
    "context": "CREATE TABLE table_name_86 (matches INTEGER, against VARCHAR, draw VARCHAR)"
  },
  {
    "answer": "SELECT MAX(wins) FROM table_name_80 WHERE against > 165",
    "question_en": "How many wins has more than 165 against?",
    "question_th": "ชนะกี่ครั้งมีมากกว่า 165 ต่อ?",
    "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_en": "How many draws have less than 35 losses with 136 matches and less than 146 against?",
    "question_th": "มีกี่เสมอที่แพ้น้อยกว่า 35 นัดจาก 136 นัดและแพ้น้อยกว่า 146 นัด?",
    "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_en": "How many Againsts have more than 15 wins?",
    "question_th": "Againsts มีกี่คนที่ชนะมากกว่า 15 ครั้ง?",
    "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_en": "Which Byes have Losses larger than 0, and an Against larger than 3049?",
    "question_th": "Byes ใดที่มีการสูญเสียมากกว่า 0 และ Against มากกว่า 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_en": "What is the total number of Points 1, when Position is \"7\", and when Drawn is greater than 6?",
    "question_th": "จำนวนแต้มรวม 1 แต้มเมื่อตำแหน่งคือ \"7\" และเมื่อจั่วได้มากกว่า 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_en": "What is the highest Goals For, when Team is \"Cheadle Town\", and when Drawn is greater than 7?",
    "question_th": "เป้าหมายสูงสุดสำหรับเมื่อทีมคือ \"Cheadle Town\" และเมื่อเสมอมากกว่า 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_en": "What is the sum of Position, when Points 1 is greater than 23, and when Goals For is \"77\"?",
    "question_th": "ผลรวมของตำแหน่ง เมื่อคะแนน 1 มากกว่า 23 และเมื่อเป้าหมายสำหรับคือ \"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_en": "What is Played, when Goal Difference is \"+51\"?",
    "question_th": "สิ่งที่เล่นเมื่อผลต่างประตูคือ \"+51\"?",
    "context": "CREATE TABLE table_name_91 (played VARCHAR, goal_difference VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_24 WHERE surface = \"carpet\"",
    "question_en": "What is Date, when Surface is \"Carpet\"?",
    "question_th": "วันที่คืออะไรเมื่อ Surface เป็น \"พรม\"",
    "context": "CREATE TABLE table_name_24 (date VARCHAR, surface VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_82 WHERE date = \"6 october 2008\"",
    "question_en": "What is Tournament, when Date is \"6 October 2008\"?",
    "question_th": "การแข่งขันคืออะไร เมื่อถึงวันที่ \"6 ตุลาคม 2551\"?",
    "context": "CREATE TABLE table_name_82 (tournament VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_4 WHERE tournament = \"sunderland , united kingdom\"",
    "question_en": "What is Surface, when Tournament is \"Sunderland , United Kingdom\"?",
    "question_th": "Surface คืออะไร เมื่อการแข่งขันคือ \"ซันเดอร์แลนด์ สหราชอาณาจักร\"",
    "context": "CREATE TABLE table_name_4 (surface VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT replaced_by FROM table_name_58 WHERE outgoing_manager = \"istván sándor\"",
    "question_en": "Who replaced István Sándor?",
    "question_th": "ใครเข้ามาแทนที่อิตวาน ซานดอร์?",
    "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ászló dajka\"",
    "question_en": "What is the position that has the outgoing manager lászló Dajka?",
    "question_th": "ลาสซโล ดาจก้า ผู้จัดการทีมที่กำลังจะลาออก ดำรงตำแหน่งอะไร?",
    "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án varga\"",
    "question_en": "When was outgoing manager Zoltán Varga appointed?",
    "question_th": "ซอลตัน วาร์กา ผู้จัดการทีมที่กำลังจะหมดวาระได้รับการแต่งตั้งเมื่อใด?",
    "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_en": "Can you tell me the Score that has the Date of 05 dec?",
    "question_th": "คุณช่วยบอกคะแนนที่มีวันที่ 05 ธันวาคมหน่อยได้ไหม",
    "context": "CREATE TABLE table_name_28 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT AVG(points__pts_) FROM table_name_26 WHERE won__pg_ > 17",
    "question_en": "What is the average number of points of the team with more than 17 pg won?",
    "question_th": "คะแนนเฉลี่ยของทีมที่มากกว่า 17 pg ชนะคือเท่าไร?",
    "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_en": "What is the total number of pg won of the team with 64 goals conceded and more than 33 goals scored?",
    "question_th": "จำนวน pg ชนะทั้งหมดของทีมโดยเสีย 64 ประตูและทำได้มากกว่า 33 ประตูคือเท่าไร?",
    "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_en": "What is the sum of the pe draw of team plaza amador, who has less than 6 pg won?",
    "question_th": "ผลรวมของการจับสลาก PE ของทีม Plaza Amador ใครได้น้อยกว่า 6 PG ชนะเป็นเท่าใด",
    "context": "CREATE TABLE table_name_28 (draw__pe_ INTEGER, team__equipo_ VARCHAR, won__pg_ VARCHAR)"
  },
  {
    "answer": "SELECT SUM(place__posición_) FROM table_name_70 WHERE points__pts_ > 49 AND goals_scored__gf_ < 54",
    "question_en": "What is the sum of the places of the team with more than 49 points and less than 54 goals scored?",
    "question_th": "ผลรวมอันดับของทีมที่มีคะแนนมากกว่า 49 คะแนน แต่ทำได้น้อยกว่า 54 ประตูเป็นเท่าใด",
    "context": "CREATE TABLE table_name_70 (place__posición_ INTEGER, points__pts_ VARCHAR, goals_scored__gf_ VARCHAR)"
  },
  {
    "answer": "SELECT away FROM table_name_15 WHERE home = \"2-2\"",
    "question_en": "WHAT IS THE AWAY WITH HOME AT 2-2?",
    "question_th": "เกมเยือนเสมอ 2-2 คืออะไร?",
    "context": "CREATE TABLE table_name_15 (away VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT league FROM table_name_63 WHERE home = \"1-1\"",
    "question_en": "WHAT IS THE LEAGUE WITH HOME 1-1?",
    "question_th": "ลีกกับเหย้า 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_en": "What is the Weight of the person born 1981-02-24 from the Uralochka Zlatoust club ?",
    "question_th": "น้ำหนักของบุคคลที่เกิด 1981-02-24 จากสโมสร Uralochka Zlatoust คือเท่าไร ?",
    "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_en": "What is the sum of households that makes a median household income of $44,718?",
    "question_th": "ผลรวมของครัวเรือนที่มีรายได้เฉลี่ยของครัวเรือนอยู่ที่ 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_en": "What is the highest population for Baraga County with less than 3,444 households?",
    "question_th": "ประชากรสูงสุดสำหรับ Baraga County ที่มีน้อยกว่า 3,444 ครัวเรือนคือข้อใด",
    "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_en": "Which golfer had a score of 68-70-68-66=272?",
    "question_th": "นักกอล์ฟคนไหนมีคะแนน 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_en": "What place was the golfer with a score of 67-67-66-68=268 ranked in?",
    "question_th": "นักกอล์ฟที่มีคะแนน 67-67-66-68=268 อยู่ในอันดับที่ใด",
    "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_en": "Which category was Maite Perroni nominated for earlier than 2009?",
    "question_th": "Maite Perroni ได้รับการเสนอชื่อเข้าชิงประเภทใดก่อนปี 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_en": "In what year was there an award for TV Adicto Golden Awards and the category Female Revelation?",
    "question_th": "ได้รับรางวัล TV Adicto Golden Awards และประเภท 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_en": "What winner has silence-lotto as the team classification?",
    "question_th": "ผู้ชนะคนใดมี Silent-Lotto เป็นประเภททีม?",
    "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_en": "What general classification has david de la fuente as mountains classification, and thor hushovd as points classification?",
    "question_th": "การจำแนกทั่วไปแบบใดที่ David de la fuente เป็นการจำแนกภูเขา และ thor hushovd เป็นการจำแนกคะแนน",
    "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_en": "What general classification has levi leipheimer as points classification?",
    "question_th": "การจำแนกทั่วไปแบบใดที่ลีวายส์ ไลป์ไฮเมอร์ เป็นการจำแนกคะแนน",
    "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_en": "What team classification has alejandro valverde as points classification, with alejandro valverde as the winner, with 3 as the stage?",
    "question_th": "การแบ่งประเภททีมใดที่อเลฮานโดร บัลเบร์เดเป็นการแบ่งคะแนน โดยอเลฮานโดร บัลเบร์เดเป็นผู้ชนะ โดยมี 3 แต้มเป็นเวที",
    "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_en": "What winner has pierre rolland as mountains classification, with 7 as the stage?",
    "question_th": "ผู้ชนะคนใดมีปิแอร์โรลลองเป็นประเภทภูเขา โดยมี 7 คนเป็นเวที",
    "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_en": "What general classification has 4 as the stage?",
    "question_th": "การจำแนกทั่วไปประเภทใดที่มี 4 เป็นเวที?",
    "context": "CREATE TABLE table_name_96 (general_classification VARCHAR, stage VARCHAR)"
  },
  {
    "answer": "SELECT MIN(lost) FROM table_name_9 WHERE goals_against = 111",
    "question_en": "What are the lowest lost has 111 as the goals against?",
    "question_th": "แพ้น้อยที่สุดที่มี 111 เป็นประตูต่ออะไร?",
    "context": "CREATE TABLE table_name_9 (lost INTEGER, goals_against VARCHAR)"
  },
  {
    "answer": "SELECT MAX(goals_against) FROM table_name_4 WHERE position = 15",
    "question_en": "What is the highest goals against that has 15 as position?",
    "question_th": "เป้าหมายสูงสุดเทียบกับที่มี 15 ตำแหน่งคืออะไร?",
    "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_en": "Hiw many losses have 30 for the goals with points greater than 24?",
    "question_th": "มีการสูญเสียมากเพียงใดที่มี 30 สำหรับประตูที่มีคะแนนมากกว่า 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_en": "How many draws have goals for less than 56, 10 as the postion, with goals against less than 45?",
    "question_th": "มีกี่เสมอที่มีประตูน้อยกว่า 56 มี 10 ในตำแหน่ง โดยมีเป้าหมายต่อน้อยกว่า 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_en": "What is the highest draws that have 31 for points, wins greater than 12, with a goal difference less than 11?",
    "question_th": "เสมอสูงสุดที่มี 31 แต้ม ชนะมากกว่า 12 โดยมีผลต่างประตูน้อยกว่า 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_en": "Name Road Team of Game of game 4?",
    "question_th": "ชื่อทีม Road ของเกมภาค 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_en": "Which Date has a Road Team of chicago, and a Result of 88-85 (ot)?",
    "question_th": "วันที่ใดมีทีม Road ของชิคาโกและผลการแข่งขัน 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_en": "Which Home Team is on june 12?",
    "question_th": "เจ้าบ้านทีมไหนออกวันที่ 12 มิถุนายน?",
    "context": "CREATE TABLE table_name_3 (home_team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_79 WHERE date = \"june 5\"",
    "question_en": "Which Result that is on june 5?",
    "question_th": "ผลลัพธ์ใดคือวันที่ 5 มิถุนายน?",
    "context": "CREATE TABLE table_name_79 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_58 WHERE result = \"86-87\"",
    "question_en": "Which Date has Result of 86-87?",
    "question_th": "วันที่ใดมีผลลัพธ์เป็น 86-87?",
    "context": "CREATE TABLE table_name_58 (date VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_86 WHERE game = \"game 1\"",
    "question_en": "Which Result has a Game of game 1?",
    "question_th": "ผลลัพธ์ใดมีเกมของเกมที่ 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_en": "What Miss Maja Pilipinas has a Binibining Pilipinas-Tourism of not awarded, and a Binibining Pilipinas-Universe of anjanette abayari?",
    "question_th": "Miss Maja Pilipinas อะไรที่มี Binibining Pilipinas-Tourism ที่ไม่ได้รับรางวัล และ Binibining Pilipinas-Universe ของ 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_en": "What Binibining Pilipinas-International has a Year larger than 1990, and a Binibining Pilipinas-Universe of maria lourdes gonzalez?",
    "question_th": "สิ่งที่ Binibining Pilipinas-International มีหนึ่งปีใหญ่กว่าปี 1990 และ 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_en": "What First runner-up has a Miss Maja Pilipinas of nanette prodigalidad?",
    "question_th": "รองชนะเลิศอันดับ 1 ได้แก่ น.ส.มาจา พิลิพินัส จาก นันทน์ โปรดิกาลิดาด?",
    "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_en": "What is the smallest Year with a Binibining Pilipinas-International of jessie alice salones dixson?",
    "question_th": "ปีที่เล็กที่สุดกับ Binibining Pilipinas-International ของ 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_en": "What Binibining Pilipinas-International has a Year of 1975?",
    "question_th": "Binibining Pilipinas-International มีปี 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_en": "What is To par, when Player is \"Jesper Parnevik\"?",
    "question_th": "To par คืออะไร เมื่อผู้เล่นคือ \"Jesper Parnevik\"?",
    "context": "CREATE TABLE table_name_47 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_43 WHERE place = \"1\"",
    "question_en": "What is Player, when Place is \"1\"?",
    "question_th": "Player คืออะไร เมื่ออันดับคือ \"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_en": "What is To par, when Country is \"United States\", and when Player is \"Mark Brooks\"?",
    "question_th": "อะไรคือค่าพาร์ เมื่อประเทศคือ \"สหรัฐอเมริกา\" และเมื่อผู้เล่นคือ \"มาร์ค บรูคส์\"?",
    "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_en": "What is Place, when Player is \"Phil Mickelson\"?",
    "question_th": "Place คืออะไร เมื่อผู้เล่นคือ \"Phil Mickelson\"?",
    "context": "CREATE TABLE table_name_17 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_68 WHERE player = \"brad faxon\"",
    "question_en": "What is Score, when Player is \"Brad Faxon\"?",
    "question_th": "Score คืออะไร เมื่อผู้เล่นคือ \"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š\" AND runner_up = \"sileks\"",
    "question_en": "What was the edition after 2003 when the Third was Tikveš and Sileks was the runner-up?",
    "question_th": "หลังปี 2003 รุ่นที่สามคือ Tikveš และ Sileks เป็นรุ่นรองชนะเลิศคืออะไรหลังจากปี 2003",
    "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_en": "What was the latest year with an edition of 14?",
    "question_th": "ล่าสุดมีฉบับที่ 14 คือปีไหนคะ?",
    "context": "CREATE TABLE table_name_7 (year INTEGER, edition VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_28 WHERE date = \"18/03/2006\"",
    "question_en": "What was the venue for the game on 18/03/2006?",
    "question_th": "สถานที่จัดการแข่งขันในวันที่ 18/03/2549 คือที่ไหน?",
    "context": "CREATE TABLE table_name_28 (venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_96 WHERE place = \"t8\"",
    "question_en": "What was the score when the place was t8?",
    "question_th": "คะแนนเมื่อตอนที่อยู่ที่ 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_en": "What country scored 71-66-66-71=274?",
    "question_th": "ประเทศใดได้คะแนน 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_en": "What country scored 66-65-66-72=269?",
    "question_th": "ประเทศใดได้คะแนน 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_en": "What was the money for place t3 and United States?",
    "question_th": "เงินสำหรับอันดับ t3 และสหรัฐอเมริกาเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_94 (money___$__ VARCHAR, place VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_52 WHERE player = \"jeff sluman\"",
    "question_en": "What country does Jeff Sluman play for?",
    "question_th": "Jeff Sluman เล่นให้กับประเทศใด?",
    "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_en": "What was the to par for place t8 and a score of 71-66-66-71=274?",
    "question_th": "คะแนนพาร์สำหรับอันดับ t8 คืออะไร และคะแนน 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_en": "What home team played against Fleetwood Town?",
    "question_th": "เจ้าบ้านทีมไหนเล่นกับฟลีตวู้ด ทาวน์?",
    "context": "CREATE TABLE table_name_47 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT callsign FROM table_name_66 WHERE frequency = 1300",
    "question_en": "What callsign has 1300 as the frequency?",
    "question_th": "Callsign ใดมีความถี่ 1300?",
    "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_en": "What's the name of the stadium when the club was F.C. Igea Virtus Barcellona?",
    "question_th": "สนามกีฬาเมื่อสโมสรคือ FC 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_en": "What was the largest capacity when the club was F.C. Igea Virtus Barcellona?",
    "question_th": "ความจุที่ใหญ่ที่สุดเมื่อสโมสรคือ FC Igea Virtus Barcellona คืออะไร?",
    "context": "CREATE TABLE table_name_30 (capacity INTEGER, club VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_90 WHERE total = 34",
    "question_en": "Who had a total of 34?",
    "question_th": "ใครมีทั้งหมด 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ōriki\"",
    "question_en": "What rank is Takatōriki having less than 30 total?",
    "question_th": "ทาคาโทริกิมีคะแนนรวมไม่ถึง 30 อันดับไหน",
    "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_en": "What was the total when the first was November 1966?",
    "question_th": "ยอดรวมเมื่อครั้งแรกคือเดือนพฤศจิกายน 2509 เป็นเท่าใด",
    "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_en": "What is the last when the first was January 2001 and more than 26 total?",
    "question_th": "ล่าสุดเมื่อครั้งแรกคือมกราคม 2544 และรวมมากกว่า 26 คืออะไร?",
    "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_en": "What is the greatest total when the last was September 1970?",
    "question_th": "ยอดรวมสูงสุดเมื่อครั้งสุดท้ายคือเดือนกันยายน 1970 คืออะไร?",
    "context": "CREATE TABLE table_name_87 (total INTEGER, last VARCHAR)"
  },
  {
    "answer": "SELECT highest_rank FROM table_name_53 WHERE name = \"takatōriki\"",
    "question_en": "What rank is Takatōriki?",
    "question_th": "ทาคาโทริกิอยู่อันดับไหน?",
    "context": "CREATE TABLE table_name_53 (highest_rank VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT SUM(year) FROM table_name_55 WHERE pts = \"54 (73)\"",
    "question_en": "What year has 54 (73) points?",
    "question_th": "ปีไหนมี 54 (73) คะแนน?",
    "context": "CREATE TABLE table_name_55 (year INTEGER, pts VARCHAR)"
  },
  {
    "answer": "SELECT chassis FROM table_name_90 WHERE year > 1967",
    "question_en": "What is the chassis more recent than 1967?",
    "question_th": "แชสซีอะไรใหม่กว่าปี 1967?",
    "context": "CREATE TABLE table_name_90 (chassis VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT AVG(year) FROM table_name_19 WHERE chassis = \"lotus 25\"",
    "question_en": "What is the year of the Lotus 25 chassis?",
    "question_th": "ตัวถัง Lotus 25 ปีอะไรครับ?",
    "context": "CREATE TABLE table_name_19 (year INTEGER, chassis VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_name_97 WHERE chassis = \"lotus 18\"",
    "question_en": "What is the year of the Lotus 18 chassis?",
    "question_th": "ตัวถัง Lotus 18 ปีอะไรครับ?",
    "context": "CREATE TABLE table_name_97 (year VARCHAR, chassis VARCHAR)"
  },
  {
    "answer": "SELECT first_elected FROM table_name_16 WHERE district = \"minnesota 2\"",
    "question_en": "What is First Elected, when District is \"Minnesota 2\"?",
    "question_th": "อะไรคือการเลือกตั้งครั้งแรก เมื่อเขตคือ \"มินนิโซตา 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_en": "What is the lowest First Elected, when Party is \"Republican\", and when District is \"Minnesota 1\"?",
    "question_th": "อะไรคือการเลือกตั้งครั้งแรกที่ต่ำที่สุด เมื่อพรรคคือ \"รีพับลิกัน\" และเมื่อเขตคือ \"มินนิโซตา 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_en": "What is Party, when Results is \"Re-Elected\", when First Elected is greater than 1990, and when District is \"Minnesota 4\"?",
    "question_th": "พรรคคืออะไร เมื่อผลลัพธ์คือ \"การเลือกตั้งใหม่\" เมื่อการเลือกตั้งครั้งแรกมากกว่าปี 1990 และเมื่อเขตคือ \"มินนิโซตา 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_en": "What is Incumbent, when Results is \"Re-Elected\", when Party is \"Democratic\", and when District is \"Minnesota 7\"?",
    "question_th": "ผู้ดำรงตำแหน่งคืออะไร เมื่อผลลัพธ์คือ \"การเลือกตั้งใหม่\" เมื่อพรรคคือ \"ประชาธิปไตย\" และเมื่อเขตคือ \"มินนิโซตา 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_en": "Which Score has a Place of t5, and a Country of united states?",
    "question_th": "คะแนนใดมีอันดับ t5 และประเทศเป็นสหรัฐอเมริกา",
    "context": "CREATE TABLE table_name_30 (score VARCHAR, place VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_86 WHERE player = \"seve ballesteros\"",
    "question_en": "Name The Score of Player of seve ballesteros?",
    "question_th": "ชื่อคะแนนของผู้เล่นเซเว บาเยสเตรอส?",
    "context": "CREATE TABLE table_name_86 (score VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_60 WHERE place = \"2\"",
    "question_en": "Which Country has a Place of 2?",
    "question_th": "ประเทศใดมีสถานที่ 2 แห่ง?",
    "context": "CREATE TABLE table_name_60 (country VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT wins FROM table_name_80 WHERE losses = 5",
    "question_en": "How many wins did they have when they had 5 losses?",
    "question_th": "พวกเขาชนะได้กี่ครั้งเมื่อพวกเขาแพ้ 5 ครั้ง?",
    "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_en": "How many byes did they have against smaller than 1544, 13 wins, and draws larger than 0?",
    "question_th": "พวกเขามีบายกี่นัดกับแต้มที่น้อยกว่า 1544 ชนะ 13 ครั้งและเสมอมากกว่า 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_en": "How many byes has a draw larger than 0?",
    "question_th": "มีกี่ไบต์ที่เสมอกันมากกว่า 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_en": "What is the lowest against that has less than 9 wins, and draws smaller than 0?",
    "question_th": "ค่าต่ำสุดเทียบกับที่ชนะน้อยกว่า 9 ครั้งและเสมอน้อยกว่า 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_en": "What is the total number of wins that has byes less than 0?",
    "question_th": "จำนวนชนะทั้งหมดที่มีการบายน้อยกว่า 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_en": "What is the most money for the score 75-74-72-67=288?",
    "question_th": "คะแนน 75-74-72-67=288 ได้เงินมากที่สุดเท่าไหร่?",
    "context": "CREATE TABLE table_name_16 (money___ INTEGER, score VARCHAR)"
  },
  {
    "answer": "SELECT american FROM table_name_11 WHERE australian = \"əʉ\"",
    "question_en": "What's the American pronunciation when the Australian is əʉ?",
    "question_th": "การออกเสียงแบบอเมริกันเมื่อภาษาออสเตรเลียเป็น əʉ คืออะไร?",
    "context": "CREATE TABLE table_name_11 (american VARCHAR, australian VARCHAR)"
  },
  {
    "answer": "SELECT 17 AS th_c FROM table_name_68 WHERE british = \"əʊ\"",
    "question_en": "What is the 17th c. pronunciation when the british is əʊ?",
    "question_th": "ศตวรรษที่ 17 คืออะไร การออกเสียงเมื่ออังกฤษเป็น əʊ?",
    "context": "CREATE TABLE table_name_68 (british VARCHAR)"
  },
  {
    "answer": "SELECT british FROM table_name_44 WHERE american = \"i\" AND australian = \"i\"",
    "question_en": "What's the British pronunciation when the American and Australian is i?",
    "question_th": "การออกเสียงภาษาอังกฤษเมื่ออเมริกันและออสเตรเลียคือ 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_en": "What is the Height if the weight is kg (lb), the club is Sainte-foy and the pos is cf?",
    "question_th": "ความสูงจะเป็นเท่าใดหากน้ำหนักเป็นกิโลกรัม (ปอนด์) ไม้กอล์ฟคือแซงต์ฟอย และตำแหน่งคือ 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érie dionne\"",
    "question_en": "What is the height of valérie dionne at Club Sainte-Foy?",
    "question_th": "valérie dionne ที่ 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_en": "Who has a Date of Birth 1980-07-29?",
    "question_th": "ใครมีวันเกิด 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_en": "What is the name of the team from cisne fairfield school?",
    "question_th": "ทีมจาก 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_en": "What is the name of the team from goreville vienna school?",
    "question_th": "ทีมจาก 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_en": "What are the colors of the team hosted by Christopher?",
    "question_th": "คริสโตเฟอร์เป็นเจ้าภาพทีมสีอะไร?",
    "context": "CREATE TABLE table_name_77 (colors VARCHAR, host VARCHAR)"
  },
  {
    "answer": "SELECT team_1 FROM table_name_99 WHERE team_2 = \"renova\"",
    "question_en": "What is team 1 if Renova is team 2?",
    "question_th": "ทีม 1 คืออะไร ถ้า Renova เป็นทีม 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_en": "What is the highest to par for the 76-70-76-76=298 score?",
    "question_th": "พาร์สูงสุดสำหรับสกอร์ 76-70-76-76=298 คือเท่าไหร่?",
    "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_en": "What score has a to par of 12 and is from Jersey?",
    "question_th": "สกอร์ไหนถึงพาร์ 12 และมาจากเจอร์ซีย์?",
    "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_en": "What is the average money for a to par of 15, and is from the United States?",
    "question_th": "เงินเฉลี่ยสำหรับพาร์ 15 และมาจากสหรัฐอเมริกาคือเท่าไร?",
    "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_en": "What is the total amount of money that has a t2 place, is from the United States for player Leo Diegel?",
    "question_th": "จำนวนเงินทั้งหมดที่มีอันดับ 2 มาจากสหรัฐอเมริกาสำหรับผู้เล่น 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_en": "What county has less than $188 and a score of 74-76-73-75=298?",
    "question_th": "เทศมณฑลใดมีเงินน้อยกว่า $188 และคะแนน 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_en": "What is Opponent, when Location is \"Winnipeg, Manitoba , Canada\"?",
    "question_th": "คู่ต่อสู้คืออะไร เมื่อตำแหน่งคือ \"วินนิเพก แมนิโทบา แคนาดา\"?",
    "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_en": "What is Res., when Location is \"Butte, Montana , United States\", and when Opponent is \"Jerome Smith\"?",
    "question_th": "Res. คืออะไร เมื่อ Location คือ \"Butte, Montana , United States\" และเมื่อฝ่ายตรงข้ามคือ \"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_en": "What is Method, when Time is \"3:20\"?",
    "question_th": "Method คืออะไร เมื่อเวลาคือ \"3:20\"",
    "context": "CREATE TABLE table_name_40 (method VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_86 WHERE opponent = \"mario rinaldi\"",
    "question_en": "What is Location, when Opponent is \"Mario Rinaldi\"?",
    "question_th": "Location คืออะไร เมื่อคู่ต่อสู้คือ \"มาริโอ รินัลดี\"?",
    "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_en": "How much Grid has a Time/Retired of +0.785, and Laps larger than 29?",
    "question_th": "กริดมีเวลา/เกษียณเป็น +0.785 และรอบมากกว่า 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_en": "Which Grid has more than 8 Laps, and a Manufacturer of honda, and a Time/Retired of retirement?",
    "question_th": "กริดใดที่มีรอบมากกว่า 8 รอบ และเป็นผู้ผลิตฮอนด้า และเวลา/เกษียณอายุของการเกษียณอายุ?",
    "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_en": "How many Laps have a Grid smaller than 5, and a Time/Retired of retirement?",
    "question_th": "มีกี่รอบที่มีตารางที่เล็กกว่า 5 และเวลา/เกษียณอายุของการเกษียณ",
    "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_en": "Which Time/Retired has Laps smaller than 14, and a Rider of darren barton?",
    "question_th": "เวลาใด/เกษียณแล้วที่มีรอบน้อยกว่า 14 และ 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_en": "What was the lowest lost entry for a team with fewer than 21 goals for?",
    "question_th": "การเสียประตูน้อยที่สุดสำหรับทีมที่ทำประตูได้น้อยกว่า 21 ประตูเพื่ออะไร?",
    "context": "CREATE TABLE table_name_39 (lost INTEGER, goals_for INTEGER)"
  },
  {
    "answer": "SELECT COUNT(position) FROM table_name_68 WHERE played > 24",
    "question_en": "What was the position has a played entry of more than 24?",
    "question_th": "ตำแหน่งใดที่มีจำนวนการเล่นมากกว่า 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_en": "What is the highest position for Nelson, with a played entry of more than 24?",
    "question_th": "ตำแหน่งสูงสุดของเนลสันโดยลงเล่นมากกว่า 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_en": "What was the average Lost entry for Newton, for games with a drawn less than 5?",
    "question_th": "ค่าเข้าแพ้โดยเฉลี่ยของนิวตันสำหรับเกมที่เสมอน้อยกว่า 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_en": "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?",
    "question_th": "รายการใดที่เสียไปสูงสุดที่เสมอกันน้อยกว่า 6 ประตูเสียน้อยกว่า 44 และได้ 1 แต้มจาก 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_en": "Who has a Snatch of 157.0?",
    "question_th": "ใครมี Snatch อยู่ที่ 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_en": "What is the total bodyweight of everyone that has a Snatch of 153.0?",
    "question_th": "น้ำหนักตัวรวมของทุกคนที่มี Snatch เท่ากับ 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_en": "What ranking is the Battersea Power Station?",
    "question_th": "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_en": "What ranking is the structure with 01.0 87 floors?",
    "question_th": "โครงสร้างที่มี 01.0 87 ชั้น อยู่ในอันดับที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_51 (rank VARCHAR, floors VARCHAR)"
  },
  {
    "answer": "SELECT MAX(attendance) FROM table_name_25 WHERE date = \"oct. 26\"",
    "question_en": "What is the highest Attendance, when Date is \"Oct. 26\"?",
    "question_th": "ผู้เข้าร่วมสูงสุดคือวันที่ \"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_en": "What is the lowest Opponents, when Raiders Poinsts is greater than 38, and when Attendance is greater than 51,267?",
    "question_th": "ฝ่ายตรงข้ามที่ต่ำที่สุดคืออะไร เมื่อคะแนน Raiders มากกว่า 38 และเมื่อผู้เข้าร่วมมากกว่า 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_en": "What is the total number of Opponents, when Raiders Points is \"42\", when Attendance is less than 52,505?",
    "question_th": "จำนวนฝ่ายตรงข้ามทั้งหมดเป็นเท่าใด เมื่อคะแนน Raiders คือ \"42\" เมื่อผู้เข้าร่วมน้อยกว่า 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_en": "What is the total number of Raiders First Downs, when Date is \"Nov. 2\", and when Raiders Points is greater than 42?",
    "question_th": "จำนวน Raiders First Downs ทั้งหมดเมื่อวันที่คือ \"2 พฤศจิกายน\" และเมื่อ Raiders Points มากกว่า 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_en": "What is the average Tournaments, when Highest Rank is \"Maegashira 1\"?",
    "question_th": "การแข่งขันโดยเฉลี่ยคือเท่าไร เมื่ออันดับสูงสุดคือ \"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_en": "What is Top Division Debut, when Tournaments is \"12\", and when Name is \"Yamamotoyama\"?",
    "question_th": "อะไรคือการเปิดตัวของ Top Division เมื่อทัวร์นาเมนต์คือ \"12\" และเมื่อชื่อคือ \"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_en": "What is the lowest Tournaments, when Name is \"Baruto\"?",
    "question_th": "ทัวร์นาเมนต์ที่ต่ำที่สุดคืออะไรเมื่อชื่อ \"บารูโตะ\"?",
    "context": "CREATE TABLE table_name_76 (tournaments INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT MAX(tournaments) FROM table_name_13 WHERE pro_debut = \"july 2002\"",
    "question_en": "What is the highest Tournaments, when Pro Debut is \"July 2002\"?",
    "question_th": "ทัวร์นาเมนต์สูงสุดคือเมื่อ Pro Debut คือ \"กรกฎาคม 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_en": "What is Pro Debut, when Tournament is greater than 11, and when Highest Rank is \"Maegashira 1\"?",
    "question_th": "Pro Debut คืออะไร เมื่อ Tournament มากกว่า 11 และเมื่ออันดับสูงสุดคือ \"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_en": "How many League Cup Goals have 0 as the total goals, with delroy facey as the name?",
    "question_th": "ประตูลีกคัพทั้งหมดมี 0 ประตู โดยมีหน้าเดลรอยเป็นชื่อ?",
    "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_en": "How many total goals have 0 (3) as total apps, with league goals less than 0?",
    "question_th": "แอปทั้งหมดมี 0 (3) ประตูรวมทั้งหมดกี่ประตู โดยมีเป้าหมายในลีกน้อยกว่า 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_en": "What is the lowest league goals that have 0 as the FA Cup Apps, with 1 (3) as totals apps?",
    "question_th": "ประตูลีกต่ำสุดที่มี 0 เป็นแอป FA Cup โดยมี 1 (3) เป็นแอปรวมคืออะไร?",
    "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ö = \"2\"",
    "question_en": "What was Stockholm's score when Malmo scored 2?",
    "question_th": "สตอกโฮล์มได้คะแนนเท่าไหร่เมื่อมัลโม่ยิง 2?",
    "context": "CREATE TABLE table_name_54 (stockholm VARCHAR, malmö VARCHAR)"
  },
  {
    "answer": "SELECT växjö FROM table_name_53 WHERE karlstad = \"1\"",
    "question_en": "What did Vaxjo score when Karlstad scored 1?",
    "question_th": "แวซโจทำคะแนนได้เมื่อคาร์ลสตัดยิง 1 ประตู?",
    "context": "CREATE TABLE table_name_53 (växjö VARCHAR, karlstad VARCHAR)"
  },
  {
    "answer": "SELECT sundsvall FROM table_name_94 WHERE falun = \"2\"",
    "question_en": "What did Sundsvall score when Falun scored 2?",
    "question_th": "ซุนด์สวาลล์ทำประตูอะไรเมื่อฟาลุนยิง 2?",
    "context": "CREATE TABLE table_name_94 (sundsvall VARCHAR, falun VARCHAR)"
  },
  {
    "answer": "SELECT MAX(total) FROM table_name_21 WHERE norrköping = \"12\"",
    "question_en": "What was the highest total when Norrkoping scored 12?",
    "question_th": "คะแนนรวมสูงสุดเมื่อนอร์คอปิงทำคะแนนได้ 12 คืออะไร?",
    "context": "CREATE TABLE table_name_21 (total INTEGER, norrköping VARCHAR)"
  },
  {
    "answer": "SELECT örebro FROM table_name_67 WHERE umeå = \"2\"",
    "question_en": "What did Orebro score when Umea scored 2?",
    "question_th": "โอเรโบรทำคะแนนอะไรเมื่ออูเมอายิง 2?",
    "context": "CREATE TABLE table_name_67 (örebro VARCHAR, umeå VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_38 WHERE attendance = \"80,886\"",
    "question_en": "What was the result of the game that was attended by 80,886 people?",
    "question_th": "ผลการแข่งขันที่มีคนเข้าร่วมถึง 80,886 คน เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_38 (result VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_76 WHERE attendance = \"72,703\"",
    "question_en": "What was the result of the game that was attended by 72,703 people?",
    "question_th": "ผลการแข่งขันที่มีคนเข้าร่วม 72,703 คนเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_76 (result VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_56 WHERE attendance = \"41,650\"",
    "question_en": "What was the result of the game that was attended by 41,650 people?",
    "question_th": "ผลการแข่งขันที่มีคนเข้าร่วม 41,650 คนเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_56 (result VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_78 WHERE opponent_number = \"indiana\"",
    "question_en": "When was the game against Indiana?",
    "question_th": "เกมกับอินเดียนาคือเมื่อไหร่?",
    "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_en": "Which country is Brian Henninger from, who had a score larger than 69?",
    "question_th": "Brian Henninger มาจากประเทศใดซึ่งมีคะแนนมากกว่า 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_en": "What is Darren Clarke's total score?",
    "question_th": "คะแนนรวมของ Darren Clarke คืออะไร?",
    "context": "CREATE TABLE table_name_45 (score VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_3 WHERE date = \"9 february 1988\"",
    "question_en": "Who was the away team on 9 February 1988?",
    "question_th": "ทีมเยือนเมื่อวันที่ 9 กุมภาพันธ์ พ.ศ. 2531 คือใคร?",
    "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_en": "Who was the away team on 30 January 1988, when the home team was Everton?",
    "question_th": "ทีมเยือนคือใครเมื่อวันที่ 30 มกราคม พ.ศ. 2531 เมื่อเจ้าบ้านคือเอฟเวอร์ตัน?",
    "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_en": "On which date was the Tie no 2?",
    "question_th": "ไทหมายเลข 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_en": "What was the Tie no when Manchester United was the home team?",
    "question_th": "Tie no คืออะไรเมื่อแมนเชสเตอร์ยูไนเต็ดเป็นเจ้าบ้าน?",
    "context": "CREATE TABLE table_name_51 (tie_no VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_56 WHERE tie_no = \"9\"",
    "question_en": "What was the score when the Tie no was 9?",
    "question_th": "เมื่อเสมอหมายเลข 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_en": "Which away team goes against the home team Mauritius?",
    "question_th": "ทีมเยือนทีมไหนเจอกับเจ้าบ้าน มอริเชียส?",
    "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_en": "Who is the away team that goes against Team Zambia?",
    "question_th": "ทีมเยือนที่จะพบกับทีมแซมเบียคือใคร?",
    "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_en": "Which away team has Tie no 3?",
    "question_th": "ทีมเยือนทีมใดเสมออันดับ 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_en": "What is the away team playing at Everton?",
    "question_th": "ทีมเยือนเล่นที่เอฟเวอร์ตันเป็นทีมอะไร?",
    "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_en": "What is the home team that Bradford City is playing against?",
    "question_th": "เจ้าบ้านที่ แบรดฟอร์ด ซิตี้ กำลังเจอกับทีมอะไร?",
    "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_en": "Which Location has a Method of decision (unanimous), and Res of win x?",
    "question_th": "ตำแหน่งใดมีวิธีการตัดสินใจ (เป็นเอกฉันท์) และ Res ของ 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_en": "Which Round has a Time of 0:37?",
    "question_th": "รอบใดมีเวลา 0:37?",
    "context": "CREATE TABLE table_name_26 (round VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT res FROM table_name_20 WHERE record = \"16-6\"",
    "question_en": "Which result has a Record of 16-6?",
    "question_th": "ผลการแข่งขันใดมีสถิติ 16-6?",
    "context": "CREATE TABLE table_name_20 (res VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT champion FROM table_name_82 WHERE score = \"9–1\"",
    "question_en": "What Champion had a Score of 9–1?",
    "question_th": "แชมป์เปี้ยนคนใดมีคะแนน 9–1",
    "context": "CREATE TABLE table_name_82 (champion VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_87 WHERE place = \"3\"",
    "question_en": "What score has 3 as the place?",
    "question_th": "อันดับที่ 3 มีคะแนนเท่าไหร่?",
    "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_en": "What player has t7 as the place, with tje United States as the country?",
    "question_th": "ผู้เล่นคนไหนที่มี t7 เป็นสถานที่ โดยมี tje United States เป็นประเทศ?",
    "context": "CREATE TABLE table_name_12 (player VARCHAR, place VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_17 WHERE player = \"hal sutton\"",
    "question_en": "What score has hal sutton as the player?",
    "question_th": "ฮาล ซัตตัน เป็นผู้เล่นได้คะแนนเท่าไหร่?",
    "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_en": "Who was the artist after 2012 with CD, LP as the format?",
    "question_th": "ศิลปินคนไหนหลังจากปี 2012 โดยมี CD, LP เป็นรูปแบบ?",
    "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_en": "What year had a title of Die Shaolin Affen EP and EP as the type?",
    "question_th": "ปีใดที่มีชื่อ Die Shaolin Affen EP และ EP เป็นประเภท?",
    "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_en": "What is the title of the Misfits with a CD format?",
    "question_th": "Misfits ที่มีรูปแบบซีดีชื่ออะไร",
    "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_en": "What was the highest number of bronze medals for the entry with rank 2 and fewer than 3 silver medals?",
    "question_th": "จำนวนเหรียญทองแดงสูงสุดสำหรับรายการที่มีอันดับ 2 และน้อยกว่า 3 เหรียญเงินคือเท่าใด",
    "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_en": "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?",
    "question_th": "จำนวนเหรียญทองโดยเฉลี่ยที่บราซิลได้รับจากผลงานที่มีมากกว่า 1 เหรียญทองแดงแต่รวมน้อยกว่า 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_en": "What is the sum of silver medals for the entry with rank 3 and a total of 4 medals?",
    "question_th": "ผลรวมของเหรียญเงินสำหรับรายการอันดับ 3 และทั้งหมด 4 เหรียญเป็นเท่าใด",
    "context": "CREATE TABLE table_name_43 (silver INTEGER, total VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_98 WHERE goals = \"1\"",
    "question_en": "What season had a goal of 1?",
    "question_th": "ฤดูกาลใดมีเป้าหมายที่ 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_en": "What club was in Netherlands and had 22 goals?",
    "question_th": "สโมสรใดอยู่ในเนเธอร์แลนด์และทำได้ 22 ประตู?",
    "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_en": "What season had Belgium and 1 goal?",
    "question_th": "เบลเยี่ยมมี 1 ประตูในฤดูกาลไหน?",
    "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_en": "Which Year has a Category of best film?",
    "question_th": "ปีใดมีหมวดหมู่ภาพยนตร์ที่ดีที่สุด?",
    "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_en": "Who is the incumbent from the democratic party in the washington 7 district?",
    "question_th": "ใครคือผู้ดำรงตำแหน่งจากพรรคประชาธิปัตย์ในเขตวอชิงตัน 7?",
    "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_en": "When was the earliest incumbent dave reichert was first elected?",
    "question_th": "Dave Reichert ผู้ดำรงตำแหน่งแรกสุดได้รับเลือกครั้งแรกเมื่อใด",
    "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_en": "What is the total of the first elected year of incumbent norm dicks?",
    "question_th": "ผลรวมของปีแรกที่ได้รับการเลือกตั้งของจู๋มาตรฐานคืออะไร?",
    "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_en": "What is the total of the first elected year of the incumbent from the washington 8 district?",
    "question_th": "ผลรวมของปีที่ได้รับการเลือกตั้งแรกของผู้ดำรงตำแหน่งจากเขตวอชิงตัน 8 เป็นเท่าใด",
    "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_en": "WHAT IS THE START THAT HAS A FINISH BIGGER THAN 3, FROM FORD, AFTER 1969?",
    "question_th": "อะไรคือจุดเริ่มต้นที่มีเส้นชัยใหญ่กว่า 3 จากฟอร์ดหลังปี 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_en": "WHAT MANUFACTURER AFTER 1966 HAD A START SMALLER THAN 5, A WOOD TEAM AND FINISHED 35?",
    "question_th": "ผู้ผลิตรายใดหลังจากปี 1966 มีจุดเริ่มต้นน้อยกว่า 5 ทีมไม้และเสร็จสิ้น 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_en": "WHAT WAS THE FINISH NUMBER WITH A START SMALLER THAN 20 IN 1969?",
    "question_th": "หมายเลขเข้าเส้นชัยโดยเริ่มต้นน้อยกว่า 20 ในปี 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_en": "What is the total number of Pleasure(s), when Psychological Dependence is greater than 1.9, and when Drug is \"Benzodiazepines\"?",
    "question_th": "จำนวนความสุขทั้งหมดเป็นเท่าใด เมื่อการพึ่งพาทางจิตวิทยามากกว่า 1.9 และเมื่อใดที่ยาคือ \"เบนโซไดอะซีพีน\"?",
    "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_en": "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?",
    "question_th": "การพึ่งพาทางจิตวิทยาสูงสุดคืออะไร เมื่อความสุขน้อยกว่า 2.3 เมื่อยาเสพติดคือ \"กัญชา\" และเมื่อการพึ่งพาทางกายภาพน้อยกว่า 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_en": "What is the average Mean, when Drug is \"Alcohol\", and when Psychological Dependence is greater than 1.9?",
    "question_th": "ค่าเฉลี่ยเฉลี่ยคือเท่าใด เมื่อยาเสพติดคือ \"แอลกอฮอล์\" และเมื่อค่าการพึ่งพาทางจิตวิทยามากกว่า 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_en": "What is the total number of Psychological Dependence, when Pleasure is \"2.3\", and when Mean is less than 1.9300000000000002?",
    "question_th": "จำนวนการพึ่งพาทางจิตวิทยาทั้งหมดเป็นเท่าใด เมื่อความสุขคือ \"2.3\" และเมื่อค่าเฉลี่ยน้อยกว่า 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_en": "What is the sum of Pleasure, when Drug is \"LSD\", and when Psychological Dependence is greater than 1.1?",
    "question_th": "อะไรคือผลรวมของความสุข เมื่อยาคือ \"LSD\" และเมื่อการพึ่งพาทางจิตวิทยามากกว่า 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_en": "What Country's team is Rajasthan Royals at the 2008 Indian Premier League?",
    "question_th": "Rajasthan Royals ทีมของประเทศใดในพรีเมียร์ลีกอินเดียปี 2008?",
    "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_en": "What is the Domestic Tournament with Chennai Super Kings Team?",
    "question_th": "การแข่งขันในประเทศกับทีม Chennai Super Kings คืออะไร?",
    "context": "CREATE TABLE table_name_42 (domestic_tournament VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT group FROM table_name_42 WHERE team = \"dolphins\"",
    "question_en": "What is the Dolphins Group?",
    "question_th": "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_en": "Who is the player that won in the year 1978?",
    "question_th": "ใครคือผู้เล่นที่ชนะในปี 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_en": "What is the Country of the Player with a Score of 73-71-76-70=290?",
    "question_th": "ประเทศของผู้เล่นที่มีคะแนน 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_en": "What is Lawson Little's Money ($) amount?",
    "question_th": "Lawson Little's Money ($) คือเท่าไร?",
    "context": "CREATE TABLE table_name_30 (money___$__ VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT money___$__ FROM table_name_2 WHERE to_par = \"e\"",
    "question_en": "What is the Money ($) amount of the Player with a To par of e?",
    "question_th": "จำนวนเงิน ($) ของผู้เล่นที่มีค่า To par เท่ากับเท่าไร?",
    "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_en": "What Country has a Player with Playoff Money with a Score of 72-69-73-73=287?",
    "question_th": "ประเทศใดมีผู้เล่นที่มีเงินเพลย์ออฟด้วยคะแนน 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_en": "What is Ben Hogan's Place?",
    "question_th": "สถานที่ของเบน โฮแกนคืออะไร?",
    "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_en": "What is the Place of the Player with a Score of 73-75-71-73=292?",
    "question_th": "ผู้เล่นที่มีคะแนน 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_en": "How many byes when there are 11 wins and fewer than 5 losses?",
    "question_th": "บายกี่ครั้งเมื่อมีการชนะ 11 ครั้งและแพ้น้อยกว่า 5 ครั้ง?",
    "context": "CREATE TABLE table_name_63 (byes INTEGER, wins VARCHAR, losses VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(losses) FROM table_name_90 WHERE wins < 0",
    "question_en": "How many losses when there are less than 0 wins?",
    "question_th": "แพ้กี่ครั้งเมื่อชนะน้อยกว่า 0?",
    "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_en": "What are the most againsts with more than 11 losses and central murray is Nyah Nyah West Utd?",
    "question_th": "Nyah Nyah West Utd แพ้มากกว่า 11 นัดกับตัวไหนมากที่สุด?",
    "context": "CREATE TABLE table_name_83 (against INTEGER, central_murray VARCHAR, losses VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_19 WHERE money___£__ > 7 OFFSET 750",
    "question_en": "What is the To par of the player with Money of 7,750 or more?",
    "question_th": "ค่าพาร์ของผู้เล่นที่มีเงิน 7,750 ขึ้นไปคืออะไร?",
    "context": "CREATE TABLE table_name_19 (to_par VARCHAR, money___£__ INTEGER)"
  },
  {
    "answer": "SELECT provider FROM table_name_10 WHERE up__up_to_kbit_s_ = 1180",
    "question_en": "who is the provider when up (up to kbit/s) is 1180?",
    "question_th": "ใครคือผู้ให้บริการเมื่อถึง (สูงสุด kbit/s) คือ 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_en": "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?",
    "question_th": "ค่าต่ำสุดสูงสุด (สูงถึง kbits/s) เมื่อขายต่อคือใช่ ค่าสูงสุด (สูงถึง kbit/s) คือ 1180 และผู้ให้บริการคือ 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_en": "what is the resale when the down (up to kbit/s) is 24000?",
    "question_th": "ขายต่อเมื่อดาวน์ (สูงสุด kbit/s) คือ 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_en": "What is the average down (up to kbit/s) when the provider is willy.tel and the up (kbit/s) is more than 1984?",
    "question_th": "ค่าเฉลี่ยลดลง (สูงถึง kbit/s) เป็นเท่าใดเมื่อผู้ให้บริการคือ willy.tel และสูงสุด (kbit/s) มากกว่า 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_en": "How many totals have a Gold larger than 0, and a Bronze smaller than 0?",
    "question_th": "มีทองคำมากกว่า 0 และทองแดงน้อยกว่า 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_en": "Which Total has a Bronze larger than 1, and a Gold larger than 0?",
    "question_th": "ผลรวมใดที่มีทองแดงมากกว่า 1 และทองมากกว่า 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_en": "What country is Eugene McDowell from?",
    "question_th": "Eugene McDowell มาจากประเทศใด",
    "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_en": "When was Mario Elie picked in a round before 7?",
    "question_th": "มาริโอ เอลี ถูกเลือกในรอบก่อน 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_en": "In what round did someone from North Carolina State get picked larger than 91?",
    "question_th": "ในรอบใดที่คนจากรัฐนอร์ทแคโรไลนาได้รับเลือกให้มีขนาดใหญ่กว่า 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_en": "Which Results have a Category of the best new actor in lead role(female)?",
    "question_th": "ผลลัพธ์ใดมีหมวดหมู่ของนักแสดงหน้าใหม่ที่ดีที่สุดในบทบาทนำ (หญิง)?",
    "context": "CREATE TABLE table_name_32 (results VARCHAR, category VARCHAR)"
  },
  {
    "answer": "SELECT category FROM table_name_72 WHERE year = 2008",
    "question_en": "What was the category in 2008?",
    "question_th": "หมวดหมู่ในปี 2551 คืออะไร?",
    "context": "CREATE TABLE table_name_72 (category VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT character FROM table_name_68 WHERE category = \"favourite naya sadasya\"",
    "question_en": "Which Character has a Category of favourite naya sadasya?",
    "question_th": "ตัวละครตัวใดมีหมวดหมู่ของญาณะซาดาสยาที่ชื่นชอบ?",
    "context": "CREATE TABLE table_name_68 (character VARCHAR, category VARCHAR)"
  },
  {
    "answer": "SELECT show FROM table_name_77 WHERE award = \"indian television academy awards\"",
    "question_en": "Which Show has an Award of indian television academy awards?",
    "question_th": "รายการใดที่ได้รับรางวัลจากสถาบันโทรทัศน์อินเดีย?",
    "context": "CREATE TABLE table_name_77 (show VARCHAR, award VARCHAR)"
  },
  {
    "answer": "SELECT award FROM table_name_77 WHERE year > 2008",
    "question_en": "What award was won after 2008?",
    "question_th": "หลังจากปี 2551 ได้รับรางวัลอะไร?",
    "context": "CREATE TABLE table_name_77 (award VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT date FROM table_name_73 WHERE injured = \"21\"",
    "question_en": "On what Date did the massacre result with 21 Injured?",
    "question_th": "การสังหารหมู่ครั้งนี้ส่งผลให้มีผู้บาดเจ็บ 21 รายเมื่อใด",
    "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_en": "What is City / State, when Winner is \"Rohan Onslow\", and when Circuit is \"Oran Park Raceway\"?",
    "question_th": "เมือง / รัฐคืออะไร เมื่อผู้ชนะคือ \"Rohan Onslow\" และเมื่อ Circuit คือ \"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_en": "What is Winner, when City / State is \"Mallala , South Australia\", and when Team is \"Elfin Sports Cars\"?",
    "question_th": "ผู้ชนะคืออะไร เมื่อเมือง/รัฐคือ \"Mallala , South Australia\" และเมื่อทีมคือ \"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_en": "What is Circuit, when Team is \"R.J.MacArthur Onslow\", and when City / State is \"Sydney , New South Wales\"?",
    "question_th": "Circuit คืออะไร เมื่อทีมคือ \"RJMacArthur Onslow\" และเมื่อเมือง / รัฐคือ \"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_en": "What is Winner, when Team is \"R.J.MacArthur Onslow\", and when Circuit is \"Oran Park Raceway\"?",
    "question_th": "ผู้ชนะคืออะไร เมื่อทีมคือ \"RJMacArthur Onslow\" และเมื่อ Circuit คือ \"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_en": "What is Date, when City / State is \"Mallala , South Australia\", and when Team is \"R.J.MacArthur Onslow\"?",
    "question_th": "วันที่คืออะไร เมื่อเมือง / รัฐคือ \"Mallala , South Australia\" และเมื่อทีมคือ \"RJMacArthur 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_en": "What is Winner, when Date is \"20 August\"?",
    "question_th": "ผู้ชนะคืออะไร เมื่อวันที่คือ \"20 สิงหาคม\"?",
    "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_en": "What actor was nominated for best actress?",
    "question_th": "นักแสดงคนไหนที่ได้รับการเสนอชื่อเข้าชิงนักแสดงนำหญิงยอดเยี่ยม?",
    "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_en": "What year was Jennifer Tilly's Film of Bullets Over Broadway up in the best supporting actress category?",
    "question_th": "ภาพยนตร์ Bullets Over Broadway ของเจนนิเฟอร์ ทิลลี่ ติดอันดับนักแสดงสมทบหญิงยอดเยี่ยมในปีใด",
    "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_en": "What is the result of Samantha Morton being up for best supporting actress in a year later than 1989?",
    "question_th": "อะไรคือผลลัพธ์ของการที่ Samantha Morton ขึ้นเป็นนักแสดงสมทบหญิงยอดเยี่ยมในอีกหนึ่งปีต่อมาหลังปี 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_en": "What film was Dianne Wiest in?",
    "question_th": "Dianne Wiest อยู่ในภาพยนตร์เรื่องใด",
    "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_en": "Which class has fewer than 10 and number(s) names?",
    "question_th": "ชั้นเรียนใดมีชื่อและตัวเลขน้อยกว่า 10",
    "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_en": "What is the type with a quantity of fewer than 6 and number(s) 5201?",
    "question_th": "ประเภทใดที่มีปริมาณน้อยกว่า 6 และหมายเลข 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_en": "How many byes were then when there were less than 737 against?",
    "question_th": "มีกี่บายแล้วเมื่อมีน้อยกว่า 737 ต่อต้าน?",
    "context": "CREATE TABLE table_name_13 (byes INTEGER, against INTEGER)"
  },
  {
    "answer": "SELECT COUNT(wins) FROM table_name_27 WHERE byes > 3",
    "question_en": "How many wins were there when the byes were more than 3?",
    "question_th": "มีชัยชนะกี่ครั้งเมื่อบายมากกว่า 3?",
    "context": "CREATE TABLE table_name_27 (wins VARCHAR, byes INTEGER)"
  },
  {
    "answer": "SELECT MIN(wins) FROM table_name_5 WHERE draws > 0",
    "question_en": "How many wins were there when draws were more than 0?",
    "question_th": "มีชัยชนะกี่ครั้งเมื่อเสมอมากกว่า 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_en": "How many wins did Glenelg FL of bahgallah have when there were more than 3 byes?",
    "question_th": "Glenelg FL จาก bahgallah ชนะได้กี่ครั้งเมื่อมีเวลาบายมากกว่า 3 ครั้ง?",
    "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_en": "What is Date, when Opponent in Final is \"Guy Forget\"?",
    "question_th": "วันที่คืออะไรเมื่อฝ่ายตรงข้ามในรอบชิงชนะเลิศคือ \"Guyลืม\"?",
    "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_en": "What is Opponent in Final, when Date is \"13 January 1992\"?",
    "question_th": "คู่ต่อสู้ในรอบชิงชนะเลิศคืออะไร เมื่อวันที่คือ \"13 มกราคม 2535\"?",
    "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_en": "What is Opponent in Final, when Surface is \"Hard\", and when Date is \"13 January 1992\"?",
    "question_th": "Opponent ใน Final คืออะไร เมื่อ Surface เป็น \"Hard\" และเมื่อใดคือ \"13 มกราคม 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_en": "What is the Height of the Player with a Date of Birth of 1979-06-12?",
    "question_th": "ความสูงของผู้เล่นที่มีวันเกิด 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_en": "What is the Height of the Player with a Date of Birth of 1982-07-05?",
    "question_th": "ความสูงของผู้เล่นที่มีวันเกิด 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_en": "What is the Height of the Player with a Date of Birth of 1982-07-05?",
    "question_th": "ความสูงของผู้เล่นที่มีวันเกิด 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_en": "What is the Weight of the Player with a Date of Birth of 1979-09-26?",
    "question_th": "น้ำหนักของผู้เล่นที่มีวันเดือนปีเกิด 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_en": "What is Elise Norwood's Pos.?",
    "question_th": "ตำแหน่งของ Elise Norwood คืออะไร?",
    "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_en": "What is the Club of the Player with a Date of Birth of 1977-02-03?",
    "question_th": "สโมสรของผู้เล่นที่มีวันเกิด 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_en": "What home has 1-5 as the away?",
    "question_th": "บ้านไหนมี 1-5 เป็นทีมเยือน?",
    "context": "CREATE TABLE table_name_69 (home VARCHAR, away VARCHAR)"
  },
  {
    "answer": "SELECT league FROM table_name_18 WHERE away = \"2-3\"",
    "question_en": "What league has 2-3 as the away?",
    "question_th": "ลีกไหนมี 2-3 เป็นทีมเยือน?",
    "context": "CREATE TABLE table_name_18 (league VARCHAR, away VARCHAR)"
  },
  {
    "answer": "SELECT away FROM table_name_82 WHERE home = \"1-4\"",
    "question_en": "What away has 1-4 as the home?",
    "question_th": "อะไรที่มี 1-4 เป็นบ้าน?",
    "context": "CREATE TABLE table_name_82 (away VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT teams FROM table_name_96 WHERE away = \"1-5\"",
    "question_en": "What teams has 1-5 as the away?",
    "question_th": "ทีมไหนมี 1-5 เป็นทีมเยือน?",
    "context": "CREATE TABLE table_name_96 (teams VARCHAR, away VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_28 WHERE series = \"atcc round 6\"",
    "question_en": "What Date had a Series of ATCC Round 6?",
    "question_th": "ATCC รอบ 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_en": "Who was the Winner in the AMC Round 4 at Lakeside International Raceway?",
    "question_th": "ใครคือผู้ชนะในการแข่งขัน AMC รอบที่ 4 ที่สนามแข่งรถ 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_en": "What is the week 15 result for the team that had a week 9 result of Washington (6-1)?",
    "question_th": "ผลลัพธ์สัปดาห์ที่ 15 ของทีมที่มีผลสัปดาห์ที่ 9 ของวอชิงตัน (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_en": "What is the week 10 result for the tean when the week 15 result is Illinois (10-1)?",
    "question_th": "ผลลัพธ์สัปดาห์ที่ 10 สำหรับ Tean คืออะไรเมื่อผลลัพธ์สัปดาห์ที่ 15 คืออิลลินอยส์ (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_en": "What is the week 10 result where the week 9 result was Dropped: Maryland South Carolina?",
    "question_th": "ผลลัพธ์สัปดาห์ที่ 10 ที่ผลลัพธ์สัปดาห์ที่ 9 ถูกยกเลิกคืออะไร: แมริแลนด์เซาท์แคโรไลนา",
    "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_en": "What is the week 13 result where the week 14 resulted in Maryland (10-1)?",
    "question_th": "ผลลัพธ์ของสัปดาห์ที่ 13 คืออะไร โดยที่ผลลัพธ์ของสัปดาห์ที่ 14 ในแมริแลนด์ (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_en": "What happened in week 14 when week 11's result was Michigan (7-2)?",
    "question_th": "เกิดอะไรขึ้นในสัปดาห์ที่ 14 เมื่อผลลัพธ์ของสัปดาห์ที่ 11 คือมิชิแกน (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_en": "What happened in week 12 when week 13 resulted in Tennessee (9-1)?",
    "question_th": "เกิดอะไรขึ้นในสัปดาห์ที่ 12 เมื่อสัปดาห์ที่ 13 ส่งผลให้เทนเนสซี (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_en": "What is the fewest bronze medals when the total medals is less than 10, and the gold medals less than 0?",
    "question_th": "เหรียญทองแดงได้น้อยที่สุดเมื่อเหรียญรวมน้อยกว่า 10 และเหรียญทองน้อยกว่า 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_en": "With 8 as the rank, and a total of more than 2 medals what is the average bronze medals?",
    "question_th": "โดยมีอันดับ 8 และรวมมากกว่า 2 เหรียญ โดยเฉลี่ยเหรียญทองแดงคือเท่าไร?",
    "context": "CREATE TABLE table_name_34 (bronze INTEGER, rank VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT MAX(total) FROM table_name_64 WHERE rank = \"8\"",
    "question_en": "What is the maximum total medals when the rank is 8?",
    "question_th": "เหรียญรางวัลรวมสูงสุดเมื่ออันดับ 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_en": "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?",
    "question_th": "จำนวนเหรียญทองมากที่สุดเมื่อได้เหรียญทองแดงน้อยกว่า 49 เหรียญและมี 22 เหรียญเงิน และรวมน้อยกว่า 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_en": "When the number of gold medals is greater than 59, and the rank is total, what is the average bronze medals?",
    "question_th": "เมื่อจำนวนเหรียญทองมากกว่า 59 และอันดับรวม เฉลี่ยเหรียญทองแดงเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_89 (bronze INTEGER, rank VARCHAR, gold VARCHAR)"
  },
  {
    "answer": "SELECT MIN(total) FROM table_name_78 WHERE silver > 14",
    "question_en": "What is the smallest number of medals a country with more than 14 silver has?",
    "question_th": "ประเทศที่มีเหรียญเงินมากกว่า 14 เหรียญมีจำนวนน้อยที่สุดเท่าไร?",
    "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_en": "What is the rank of a country with more than 2 gold, less than 5 silver, and less than 31 total medals?",
    "question_th": "ประเทศที่มีมากกว่า 2 เหรียญทอง น้อยกว่า 5 เหรียญเงิน และเหรียญทั้งหมดน้อยกว่า 31 เหรียญมีอันดับเท่าไหร่?",
    "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_en": "WHat was the score for Phil Mickelson when he placed t3?",
    "question_th": "คะแนนของฟิล มิคเคลสันเมื่อเขาอยู่อันดับ 3 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_60 (score VARCHAR, place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_72 WHERE country = \"south africa\"",
    "question_en": "What place did the golfer take whose country is South Africa?",
    "question_th": "นักกอล์ฟไปอยู่ที่ไหนในประเทศของตนคือแอฟริกาใต้?",
    "context": "CREATE TABLE table_name_72 (place VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_95 WHERE game_site = \"jeppesen stadium\"",
    "question_en": "What was the result of the game played at Jeppesen Stadium?",
    "question_th": "ผลของเกมที่เล่นที่ เจพเพอเซ่น สเตเดี้ยม เป็นอย่างไร?",
    "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_en": "What week was the game played on November 12, 1961, with an attendance of 7,859 played?",
    "question_th": "เกมนี้เล่นสัปดาห์ใดในวันที่ 12 พฤศจิกายน พ.ศ. 2504 มีผู้เข้าร่วมเล่น 7,859 คน?",
    "context": "CREATE TABLE table_name_71 (week INTEGER, date VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT decade FROM table_name_92 WHERE artist = \"the replacements\"",
    "question_en": "What decade is the artist the replacements?",
    "question_th": "ศิลปินมาทดแทนในทศวรรษใด?",
    "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_en": "What is the number of households in the county with median income of $65,240 and population greater than 744,344?",
    "question_th": "จำนวนครัวเรือนในเทศมณฑลที่มีรายได้เฉลี่ย 65,240 ดอลลาร์และมีประชากรมากกว่า 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_en": "What is the population of Tioga county?",
    "question_th": "ประชากรของเทศมณฑลทิโอกาคือเท่าไร?",
    "context": "CREATE TABLE table_name_93 (population VARCHAR, county VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_7 WHERE laps > 9 AND grid < 2",
    "question_en": "Which Constructor has Laps larger than 9, and a Grid smaller than 2?",
    "question_th": "Constructor ใดที่มี Laps มากกว่า 9 และ Grid เล็กกว่า 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_en": "What's filiberto rivera's height?",
    "question_th": "ฟิลิแบร์โต ริเวร่าสูงเท่าไหร่?",
    "context": "CREATE TABLE table_name_54 (height VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_86 WHERE position = \"sg\"",
    "question_en": "Who has a position of sg?",
    "question_th": "ใครมีตำแหน่ง sg?",
    "context": "CREATE TABLE table_name_86 (player VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_41 WHERE height = 2.16",
    "question_en": "Who has a height of 2.16?",
    "question_th": "ใครสูง 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_en": "What's the tallest height for c position in current club unicaja malaga?",
    "question_th": "ตำแหน่ง c ที่สูงที่สุดในสโมสรปัจจุบันคือเท่าไร?",
    "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_en": "What was the attendance when the Southend United was the home team?",
    "question_th": "การเข้าร่วมงานเมื่อเซาธ์เอนด์ยูไนเต็ดเป็นเจ้าบ้าน?",
    "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_en": "Who was the away team that played Northampton Town at home with a tie number of replay?",
    "question_th": "ทีมเยือนที่เล่นนอร์ธแฮมป์ตัน ทาวน์ ในบ้านด้วยจำนวนรีเพลย์เสมอกันคือใคร?",
    "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_en": "Which Outcome has an Opponent in the final of simone colombo?",
    "question_th": "ผลการแข่งขันใดมีคู่ต่อสู้ในรอบชิงชนะเลิศของซิโมน โคลัมโบ?",
    "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_en": "What is the sum of the glyph with a binary less than 111001, an octal less than 65, and a hexadecimal less than 30?",
    "question_th": "ผลรวมของสัญลักษณ์ที่มีเลขฐานสองน้อยกว่า 111001 เลขฐานแปดน้อยกว่า 65 และเลขฐานสิบหกน้อยกว่า 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_en": "What is the average hexadecimal with a decimal less than 53, an octal less than 61, and a glyph greater than 0?",
    "question_th": "เลขฐานสิบหกเฉลี่ยที่มีทศนิยมน้อยกว่า 53, ฐานแปดน้อยกว่า 61 และสัญลักษณ์ที่มากกว่า 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_en": "What is the lowest octal with a 30 hexadecimal and less than 0 glyphs?",
    "question_th": "เลขฐานแปดต่ำสุดที่มีเลขฐานสิบหก 30 ตัวและสัญลักษณ์น้อยกว่า 0 คืออะไร",
    "context": "CREATE TABLE table_name_82 (octal INTEGER, hexadecimal VARCHAR, glyph VARCHAR)"
  },
  {
    "answer": "SELECT AVG(hexadecimal) FROM table_name_2 WHERE decimal > 57",
    "question_en": "What is the average hexadecimal with a decimal greater than 57?",
    "question_th": "เลขฐานสิบหกเฉลี่ยที่มีทศนิยมมากกว่า 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_en": "What is the average decimal with a 110010 binary and a glyph greater than 2?",
    "question_th": "ทศนิยมเฉลี่ยที่มีไบนารี 110010 และสัญลักษณ์ที่มากกว่า 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_en": "What is the sum of the glyph with a 38 hexadecimal and a binary less than 111000?",
    "question_th": "ผลรวมของสัญลักษณ์ที่มีเลขฐานสิบหก 38 และเลขฐานสองน้อยกว่า 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_en": "What was the record in the game where the opponent wasd the atlanta falcons?",
    "question_th": "อะไรคือสถิติในเกมที่คู่ต่อสู้เสียแอตแลนต้า ฟอลคอนส์?",
    "context": "CREATE TABLE table_name_40 (record VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT MAX(attendance) FROM table_name_63 WHERE game_site = \"tulane stadium\"",
    "question_en": "What was the highest attendance at a game that was played in tulane stadium?",
    "question_th": "อะไรคือผู้เข้าร่วมสูงสุดในเกมที่เล่นในสนามกีฬาทูเลน?",
    "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_en": "What is the category for the year when Brioude started and the stage is less than 7?",
    "question_th": "หมวดหมู่สำหรับปีที่ Brioude เริ่มต้นและเวทีน้อยกว่า 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_en": "What is the stage number when the category is less than 1?",
    "question_th": "หมายเลขสเตจเมื่อหมวดหมู่น้อยกว่า 1 คืออะไร?",
    "context": "CREATE TABLE table_name_74 (stage VARCHAR, category INTEGER)"
  },
  {
    "answer": "SELECT home FROM table_name_31 WHERE season = \"1948-49\"",
    "question_en": "For the 1948-49 season, what was the At Home record?",
    "question_th": "สำหรับฤดูกาล 1948-49 สถิติในบ้านเป็นอย่างไร?",
    "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_en": "In which season was the Away record 2-2 and At Home record 1-0?",
    "question_th": "สถิติทีมเยือน 2-2 และสถิติในบ้าน 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_en": "In the 1958-59 season, what league did the team play in?",
    "question_th": "ในฤดูกาล 1958-59 ทีมเล่นอยู่ในลีกใด?",
    "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_en": "What team played in the Bundesliga league with an Away record of 2-1?",
    "question_th": "ทีมใดเล่นในลีกบุนเดสลีกาด้วยสถิติทีมเยือน 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_en": "What team(s) played in the 1995-96 season?",
    "question_th": "ทีมใดเล่นในฤดูกาล 1995-96?",
    "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_en": "Playing in the Bundesliga league, what was the Away record for the team with an At Home record of 1-2?",
    "question_th": "การเล่นในลีกบุนเดสลีกา สถิติทีมเยือน กับสถิติในบ้าน 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_en": "Which Date performed has a Main contestant of karanvir bohra?",
    "question_th": "การแสดงวันใดที่มีผู้เข้าแข่งขันหลักของ 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_en": "Which Date performed has a Position of bottom 3, and Scores by each individual judge of 5 + 5 + 4 = 14?",
    "question_th": "วันที่ใดที่ดำเนินการมีตำแหน่ง 3 อันดับสุดท้าย และคะแนนโดยผู้ตัดสินแต่ละคนคือ 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_en": "Which Status has a Co-contestant (Yaar vs. Pyaar) of tina sachdev?",
    "question_th": "สถานะใดมีผู้เข้าแข่งขันร่วม (Yaar vs. Pyaar) ของ 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_en": "Which Status has a Co-contestant (Yaar vs. Pyaar) of tina parekh?",
    "question_th": "สถานะใดมีผู้เข้าแข่งขันร่วม (Yaar vs. Pyaar) ของ 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_en": "Which Total score/week has a Status of eliminated, and Scores by each individual judge of 5 + 5 + 4 = 14?",
    "question_th": "คะแนนรวม/สัปดาห์ใดที่มีสถานะตกรอบ และคะแนนโดยผู้ตัดสินแต่ละคนคือ 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_en": "Which Scores by each individual judge has a Date performed of august 7, and a Main contestant of karanvir bohra?",
    "question_th": "คะแนนใดของผู้ตัดสินแต่ละคนมีวันที่แสดงในวันที่ 7 สิงหาคม และผู้แข่งขันหลักของ 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_en": "Who is moving to Triestina?",
    "question_th": "ใครกำลังจะย้ายไป 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_en": "What is the transfer window of the player moving to Panionios?",
    "question_th": "หน้าต่างการถ่ายโอนของผู้เล่นที่ย้ายไป 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_en": "What is the type for the Panionios moving to?",
    "question_th": "Panionios ย้ายไปอยู่ประเภทไหน?",
    "context": "CREATE TABLE table_name_91 (type VARCHAR, moving_to VARCHAR)"
  },
  {
    "answer": "SELECT moving_to FROM table_name_15 WHERE nat = \"arg esp\"",
    "question_en": "Where is the nationality of Arg Esp moving to?",
    "question_th": "สัญชาติ อาร์ก เอสพี ย้ายไปอยู่ที่ไหน?",
    "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_en": "Who is moving to Chelsea on loan?",
    "question_th": "ใครกำลังจะย้ายไปเชลซีแบบยืมตัว?",
    "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_en": "What is the digital of Virgin [analogue]?",
    "question_th": "ดิจิทัลของ Virgin [อะนาล็อก] คืออะไร?",
    "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_en": "Which provider is pay with analogue cable?",
    "question_th": "ผู้ให้บริการรายใดที่ชำระเงินด้วยสายอะนาล็อก?",
    "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_en": "How many analogue satellite channels does Sky [Analogue] have?",
    "question_th": "Sky [Analog] มีดาวเทียมแบบอะนาล็อกกี่ช่อง?",
    "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_en": "What years are listed for analogue cable with 35 channels?",
    "question_th": "เคเบิลอะนาล็อก 35 ช่องระบุปีใดบ้าง",
    "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_en": "What was Week 14 when Week 13 was Nebraska (8-2)?",
    "question_th": "สัปดาห์ที่ 14 คืออะไรเมื่อสัปดาห์ที่ 13 คือเนบราสกา (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_en": "What was Week 15 when Week 12 was Notre Dame (7-2)?",
    "question_th": "สัปดาห์ที่ 15 คืออะไร เมื่อสัปดาห์ที่ 12 เป็นมหาวิหารน็อทร์-ดาม (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_en": "What was Week 11 when Week 10 had Nebraska (7-1)?",
    "question_th": "สัปดาห์ที่ 11 คืออะไรเมื่อสัปดาห์ที่ 10 มีเนบราสก้า (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_en": "What was Week 15 when Week 12 was Washington (9-1)?",
    "question_th": "สัปดาห์ที่ 15 คืออะไรเมื่อสัปดาห์ที่ 12 คือวอชิงตัน (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_en": "What Surface has a Date of 15 february 1988?",
    "question_th": "Surface ใดมีวันที่ 15 กุมภาพันธ์ 1988",
    "context": "CREATE TABLE table_name_64 (surface VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_4 WHERE score_in_the_final = \"3–6, 2–6, 4–6\"",
    "question_en": "What Date has a Score in the final of 3–6, 2–6, 4–6?",
    "question_th": "วันที่ใดมีคะแนนในรอบชิงชนะเลิศ 3–6, 2–6, 4–6?",
    "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_en": "What Opponent in the final has a Date of 19 september 1988?",
    "question_th": "ฝ่ายตรงข้ามคนใดในรอบชิงชนะเลิศมีวันที่ 19 กันยายน 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_en": "What Championship has a Date of 26 may 1986?",
    "question_th": "แชมป์รายการใดมีวันที่ 26 พฤษภาคม 1986?",
    "context": "CREATE TABLE table_name_66 (championship VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT championship FROM table_name_16 WHERE score_in_the_final = \"2–6, 6–2, 7–5\"",
    "question_en": "What Championship has a Score in the final of 2–6, 6–2, 7–5?",
    "question_th": "แชมเปี้ยนชิพใดมีคะแนนในรอบชิงชนะเลิศ 2–6, 6–2, 7–5?",
    "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_en": "What was the lowest pick number with an overall 86?",
    "question_th": "หมายเลขเลือกต่ำสุดโดยรวม 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_en": "What is the name of a pick more than 5 at Washington College?",
    "question_th": "ตัวเลือกมากกว่า 5 ที่ 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_en": "What is the sum of the Pick # Anthony Maddox?",
    "question_th": "ผลรวมของ 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 = \"國殤\"",
    "question_en": "Which number is 國殤?",
    "question_th": "國殤 คือเลขอะไร?",
    "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 = \"国殇\"",
    "question_en": "What is the Traditional Chinese of 国殇 which is over 9?",
    "question_th": "ภาษาจีนตัวเต็มของ 中殇 ซึ่งมากกว่า 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 = \"山鬼\"",
    "question_en": "What is the English translation of 山鬼?",
    "question_th": "คำว่า yama鬼 ภาษาอังกฤษแปลว่าอะไรคะ?",
    "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_en": "What is the total where there are 4 MLS Cups and more US Open Cups than 1?",
    "question_th": "ผลรวมที่มี 4 MLS Cups และ US Open Cups มากกว่า 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_en": "Which race 3 has points greater than 36, and 2 as the race 1?",
    "question_th": "การแข่งขัน 3 รายการใดมีคะแนนมากกว่า 36 และ 2 เป็นการแข่งขัน 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_en": "How many race 1's have 5 as the race 3, with points less than 59?",
    "question_th": "สนามที่ 1 มี 5 เท่ากับสนามที่ 3 โดยมีคะแนนน้อยกว่า 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_en": "What driver has points less than 17?",
    "question_th": "นักแข่งคนไหนมีคะแนนน้อยกว่า 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_en": "Who is from south africa and has a score of 76-75-73-71=295?",
    "question_th": "ใครมาจากแอฟริกาใต้ และมีคะแนน 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_en": "What is the lowest to par of a player from australia with a score of 76-70-75-72=293?",
    "question_th": "อะไรคือพาร์ต่ำสุดของผู้เล่นจากออสเตรเลียด้วยคะแนน 76-70-75-72=293?",
    "context": "CREATE TABLE table_name_96 (to_par INTEGER, country VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT money___£__ FROM table_name_68 WHERE score = 76 - 70 - 75 - 72 = 293",
    "question_en": "What is the money with a Score of 76-70-75-72=293?",
    "question_th": "เงินที่มีคะแนน 76-70-75-72=293 เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_68 (money___£__ VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_91 WHERE developer = \"2play mobile\" AND genre = \"action\"",
    "question_en": "What is Title, when Developer is \"2Play Mobile\", and when Genre is \"Action\"?",
    "question_th": "ชื่อคืออะไร เมื่อผู้พัฒนาเป็น \"2Play Mobile\" และเมื่อประเภทเป็น \"แอ็คชั่น\"",
    "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_en": "What is the highest Version, when Release Date is \"2011-04-01\"?",
    "question_th": "เวอร์ชันสูงสุดคืออะไร เมื่อวันวางจำหน่ายคือ \"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_en": "What is Version, when Genre is \"Action\", and when Title is \"Hairball\"?",
    "question_th": "เวอร์ชันคืออะไร เมื่อประเภทคือ \"แอ็คชั่น\" และเมื่อชื่อคือ \"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_en": "What is the Set 1 of the 45:40 Total?",
    "question_th": "ชุดที่ 1 ของเวลาทั้งหมด 45:40 คืออะไร?",
    "context": "CREATE TABLE table_name_73 (set_1 VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT total FROM table_name_41 WHERE set_1 = \"24:26\"",
    "question_en": "What is the Total of the 24:26 Set 1?",
    "question_th": "ผลรวมของ 24:26 เซ็ต 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_en": "What is the Total of Set 2 of 21:12?",
    "question_th": "ผลรวมของเซ็ต 2 ของ 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_en": "What is the Total of Set 2 of 24:22?",
    "question_th": "ผลรวมของชุดที่ 2 ของเวลา 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_en": "What is the date of the 21:12 Set 2?",
    "question_th": "นาทีที่ 21:12 ชุดที่ 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_en": "What is the torque of the 5.8l v12 engine?",
    "question_th": "เครื่องยนต์ 5.8 ลิตร v12 แรงบิดเท่าไหร่?",
    "context": "CREATE TABLE table_name_15 (torque VARCHAR, engine VARCHAR)"
  },
  {
    "answer": "SELECT torque FROM table_name_72 WHERE engine = \"6.3l v12\"",
    "question_en": "What is the torque of the 6.3l v12 engine?",
    "question_th": "เครื่องยนต์ 6.3 ลิตร v12 แรงบิดเท่าไหร่?",
    "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_en": "What is the 0-100km/h (62mph) of the supercharged 5.4l v8 engine?",
    "question_th": "เครื่องยนต์ supercharged 5.4l v8 มีอัตราเร่ง 0-100 กม./ชม. (62 ไมล์/ชม.) เท่าใด",
    "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_en": "What is the population when the  Per capita income of $18,884, and a Number of households smaller than 14,485?",
    "question_th": "ประชากรเป็นเท่าใดเมื่อมีรายได้ต่อหัวของ $18,884 และจำนวนครัวเรือนน้อยกว่า 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_en": "What is Place, when Player is \"Ben Crenshaw\"?",
    "question_th": "สถานที่คืออะไร เมื่อผู้เล่นคือ \"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_en": "What is the highest kneel with a stand less than 187, and a 197 prone, and a qual more than 576?",
    "question_th": "คุกเข่าสูงสุดที่มีขาตั้งน้อยกว่า 187 และคว่ำ 197 และมีคุณสมบัติมากกว่า 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_en": "What is the sum of the stand with a qual more than 589?",
    "question_th": "ผลรวมของแต้มที่ควอมากกว่า 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_en": "What is the 1st leg in the match where Remo (PA) is team 1?",
    "question_th": "เลกแรกคืออะไรในแมตช์ที่ Remo (PA) เป็นทีม 1?",
    "context": "CREATE TABLE table_name_26 (team_1 VARCHAR)"
  },
  {
    "answer": "SELECT team_1 FROM table_name_17 WHERE team_2 = \"fluminense (rj)\"",
    "question_en": "Who is team 1 where team 2 is Fluminense (RJ)?",
    "question_th": "ทีม 1 คือใคร โดยทีม 2 คือ ฟลูมิเนนเซ่ (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_en": "What is the venue for the friendly competition at Dreisamstadion, Freiburg?",
    "question_th": "สถานที่สำหรับการแข่งขันกระชับมิตรที่ 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_en": "What is the result at Dreisamstadion, Freiburg?",
    "question_th": "ผลการแข่งขันที่ ไดรซัมสตาดิโอน ไฟร์บวร์ก เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_96 (result VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_16 WHERE position = \"lhp\" AND pick = 23",
    "question_en": "What is Team, when Position is \"LHP\", and when Pick is \"23\"?",
    "question_th": "ทีมคืออะไร เมื่อตำแหน่งคือ \"LHP\" และเมื่อเลือกคือ \"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_en": "What is the highest Pick, when Player is \"Todd Van Poppel\"?",
    "question_th": "อะไรคือตัวเลือกที่สูงที่สุด เมื่อผู้เล่นคือ \"ท็อดด์ แวน ป๊อปเพล\"?",
    "context": "CREATE TABLE table_name_86 (pick INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_48 WHERE pick = 26",
    "question_en": "What is Player, when Pick is \"26\"?",
    "question_th": "Player คืออะไร เมื่อ Pick คือ \"26\"?",
    "context": "CREATE TABLE table_name_48 (player VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_15 WHERE hometown_school = \"westlake, california\"",
    "question_en": "What is Posititon, when Hometown/School is \"Westlake, California\"?",
    "question_th": "ตำแหน่งคืออะไร เมื่อบ้านเกิด/โรงเรียนคือ \"เวสต์เลค แคลิฟอร์เนีย\"",
    "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_en": "What is Player, when Position is \"SS\", and when Pick is \"11\"?",
    "question_th": "ผู้เล่นคืออะไร เมื่อตำแหน่งคือ \"SS\" และเมื่อเลือกคือ \"11\"",
    "context": "CREATE TABLE table_name_61 (player VARCHAR, position VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT population FROM table_name_38 WHERE county = \"sargent\"",
    "question_en": "What is the Population of Sargent County?",
    "question_th": "ประชากรของเทศมณฑลซาร์เจนท์คืออะไร?",
    "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_en": "What is the rank for the nation with 0 silver medals and a total larger than 2?",
    "question_th": "ประเทศที่ได้ 0 เหรียญเงิน และยอดรวมมากกว่า 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_en": "What is the least silvers where there are 39 bronzes and the total is less than 120?",
    "question_th": "เงินน้อยที่สุดที่มี 39 เหรียญทองแดง และรวมน้อยกว่า 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_en": "What's the general classification of stage 3 with David Loosli as the mountains classification?",
    "question_th": "การจัดประเภททั่วไปของระยะที่ 3 โดยที่ David Loosli เป็นการจัดประเภทภูเขาคืออะไร",
    "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_en": "What's the points classification when the stage was final?",
    "question_th": "การแบ่งประเภทคะแนนเมื่อรอบสุดท้ายเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_42 (points_classification VARCHAR, stage VARCHAR)"
  },
  {
    "answer": "SELECT stage FROM table_name_29 WHERE team_classification = \"gerolsteiner\"",
    "question_en": "What is the stage of Gerolsteiner?",
    "question_th": "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_en": "What's the mountains classification of Stage 7 when Kim Kirchen was the general classification?",
    "question_th": "การจำแนกประเภทภูเขาของระยะที่ 7 เมื่อ Kim Kirchen อยู่ในประเภททั่วไปคืออะไร?",
    "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_en": "What was Kim Kirchen's team classification?",
    "question_th": "การจัดประเภททีมของ Kim Kirchen คืออะไร?",
    "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_en": "What Player has a To par of +1 and a Score of 73-71-71=217?",
    "question_th": "ผู้เล่นคนใดมีพาร์ถึง +1 และคะแนน 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_en": "What Player's had a To par of +1 and a Score of 73-71-73=217?",
    "question_th": "ผู้เล่นคนไหนมีพาร์ถึง +1 และมีคะแนน 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_en": "What is Fuzzy Zoeller's Score?",
    "question_th": "คะแนนของ Fuzzy Zoeller คืออะไร?",
    "context": "CREATE TABLE table_name_56 (score VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_85 WHERE score = 71 - 73 - 71 = 215",
    "question_en": "What is the Country of the Player with a Score of 71-73-71=215?",
    "question_th": "ประเทศของผู้เล่นที่มีคะแนน 71-73-71=215 คืออะไร?",
    "context": "CREATE TABLE table_name_85 (country VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_72 WHERE to_par = \"–4\"",
    "question_en": "What is the Country of the Player with a To par of –4?",
    "question_th": "ประเทศของผู้เล่นที่มีพาร์ถึง –4 คืออะไร?",
    "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_en": "What is the Country of the Player with a To par of +1 and a Score of 75-69-73=217?",
    "question_th": "ประเทศของผู้เล่นที่มีพาร์ถึง +1 และคะแนน 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_en": "Which Position has 24 Goals against, and a Played smaller than 30?",
    "question_th": "ตำแหน่งใดที่มี 24 ประตู และตำแหน่งที่เล่นน้อยกว่า 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_en": "Which Points have a Club of cf calvo sotelo, and a Goal Difference larger than -3?",
    "question_th": "แต้มใดมีคลับของ cf calvo sotelo และผลต่างประตูมากกว่า -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_en": "Which Draws have a Position of 16, and less than 58 Goals against?",
    "question_th": "เสมอใดมีตำแหน่ง 16 และน้อยกว่า 58 ประตูต่อ?",
    "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_en": "Which Losses have Draws larger than 6, and a Club of cd mestalla, and Goals against larger than 44?",
    "question_th": "การแพ้ใดที่มีการเสมอมากกว่า 6 และคลับของ cd mestalla และประตูต่อมากกว่า 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_en": "How many Goals against have Goals for smaller than 33, and Points smaller than 16?",
    "question_th": "มีกี่ประตูที่เสียประตูน้อยกว่า 33 และแต้มน้อยกว่า 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_en": "What Date was the Game at Griffith Stadium?",
    "question_th": "เกมที่ Griffith Stadium จัดขึ้นวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_9 (date VARCHAR, game_site VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_4 WHERE date = \"bye\"",
    "question_en": "What attendance is listed against the date of bye?",
    "question_th": "รายการเข้าร่วมรายการใดเทียบกับวันที่ลาก่อน?",
    "context": "CREATE TABLE table_name_4 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_77 WHERE week = 3",
    "question_en": "What date is week 3?",
    "question_th": "สัปดาห์ที่ 3 คือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_77 (date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT floors FROM table_name_89 WHERE location = \"tower hill\"",
    "question_en": "Which Floors has a Location of tower hill?",
    "question_th": "ชั้นไหนมีที่ตั้งของทาวเวอร์ฮิลล์?",
    "context": "CREATE TABLE table_name_89 (floors VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_18 WHERE floors = \"03.0 n/a\"",
    "question_en": "Which Location has a Floors of 03.0 n/a?",
    "question_th": "สถานที่ใดมีชั้น 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_en": "Name the Height metres / ft of Floors of 05.0 n/a?",
    "question_th": "ตั้งชื่อความสูง เมตร/ฟุต ของชั้น 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_en": "Name the Years as tallest that has Height metres / ft of 01.0 27 / 90?",
    "question_th": "ตั้งชื่อปีให้สูงที่สุดที่มีส่วนสูง เมตร/ฟุต 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_en": "Name the Years as tallest has a Height metres / ft of 07.0 150 / 493 [b ]?",
    "question_th": "ชื่อปีที่สูงที่สุด มีความสูง เมตร / ฟุต 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–1310\"",
    "question_en": "Name the Height metres / ft of Years with tallest of 1098–1310?",
    "question_th": "ตั้งชื่อส่วนสูง เมตร / ฟุต ของปีที่สูงที่สุดระหว่าง 1,098–1,310 ไหม?",
    "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_en": "How many scores have a Place of t5?",
    "question_th": "คะแนน 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_en": "Which To Par has a Score smaller than 70, and a Player of matt kowal?",
    "question_th": "พาร์ใดที่มีคะแนนน้อยกว่า 70 และผู้เล่นของ 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 = \"–1\"",
    "question_en": "Which Score has a To Par of –1?",
    "question_th": "คะแนนใดมีพาร์ถึง –1?",
    "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_en": "what is the date for catolog 88697185162 when the region is canada?",
    "question_th": "วันที่สำหรับแค็ตตาล็อก 88697185162 เมื่อภูมิภาคเป็นแคนาดาคือเมื่อใด",
    "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_en": "Which parish has a church named Vangsnes Kyrkje?",
    "question_th": "เขตใดมีโบสถ์ชื่อ 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_en": "Which Sub-Parish has a church built in 1866?",
    "question_th": "เขตตำบลใดมีโบสถ์ที่สร้างขึ้นในปี พ.ศ. 2409",
    "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_en": "When was the Hopperstad Stavkyrkje built?",
    "question_th": "Hopperstad Stavkyrkje สร้างขึ้นเมื่อใด",
    "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_en": "When was the church in Arnafjord built?",
    "question_th": "โบสถ์ในอาร์นาฟจอร์ดสร้างขึ้นเมื่อใด?",
    "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_en": "What is the Sub-Parish called that has a church located in Fresvik?",
    "question_th": "Sub-Parish เรียกว่าอะไรซึ่งมีโบสถ์ตั้งอยู่ใน 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_en": "What is the church in the Sub-Parish of Fresvik called?",
    "question_th": "โบสถ์ในเขตตำบลเฟรสวิคเรียกว่าอะไร?",
    "context": "CREATE TABLE table_name_94 (church_name VARCHAR, sub_parish__sokn_ VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_15 WHERE city = \"sheffield\"",
    "question_en": "What is the time for Sheffield?",
    "question_th": "เชฟฟิลด์ กี่โมง?",
    "context": "CREATE TABLE table_name_15 (time VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT total FROM table_name_33 WHERE slalom_points = \"3.18\"",
    "question_en": "What are the total points for the skier with 3.18 slalom points?",
    "question_th": "คะแนนรวมของนักสกีที่ได้ 3.18 คะแนนสลาลม คือเท่าไร?",
    "context": "CREATE TABLE table_name_33 (total VARCHAR, slalom_points VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_38 WHERE downhill_points = 7.73",
    "question_en": "What place is the skier with 7.73 downhill points?",
    "question_th": "นักเล่นสกีที่มีคะแนนดาวน์ฮิลล์ 7.73 อยู่ที่ใด?",
    "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_en": "What are the downhill points for the skier with total of 9.31 points?",
    "question_th": "คะแนนลงเนินสำหรับนักเล่นสกีรวม 9.31 คะแนนมีอะไรบ้าง?",
    "context": "CREATE TABLE table_name_50 (downhill_points INTEGER, total VARCHAR)"
  },
  {
    "answer": "SELECT rank_points FROM table_name_87 WHERE score_points = \"11\"",
    "question_en": "What is the rank for the player where there are 11 points?",
    "question_th": "ผู้เล่นที่มี 11 แต้มอยู่อันดับไหน?",
    "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_en": "Which shooter had a total of 11 at the WC Munich with a score of 6?",
    "question_th": "นักกีฬาคนไหนมีคะแนนรวม 11 คะแนนที่ WC มิวนิกด้วยคะแนน 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_en": "What is the event where there are 10 score points?",
    "question_th": "งานอะไรมี 10 คะแนน?",
    "context": "CREATE TABLE table_name_10 (event VARCHAR, score_points VARCHAR)"
  },
  {
    "answer": "SELECT shooter FROM table_name_63 WHERE total = \"defending champion\"",
    "question_en": "Who is the shooter that is the Defending Champion?",
    "question_th": "ใครคือมือปืนที่เป็นแชมป์ป้องกัน?",
    "context": "CREATE TABLE table_name_63 (shooter VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT owner FROM table_name_73 WHERE name = \"mrt 1 hd\"",
    "question_en": "Which owner had MRT 1 HD?",
    "question_th": "เจ้าของคนไหนมี MRT 1HD?",
    "context": "CREATE TABLE table_name_73 (owner VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT programming FROM table_name_71 WHERE name = \"mrt sobraniski kanal\"",
    "question_en": "What is the programming for mrt sobraniski kanal?",
    "question_th": "การเขียนโปรแกรมสำหรับ 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_en": "What is the type for a general programming and the owner tv kanal 5?",
    "question_th": "รายการทั่วไปและเจ้าของรายการ 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_en": "What is the programming for Kanal 5?",
    "question_th": "การเขียนโปรแกรมสำหรับ 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_en": "What was the surface on march 2, 1997?",
    "question_th": "พื้นผิวในวันที่ 2 มีนาคม พ.ศ. 2540 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_91 (surface VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_16 WHERE partner = \"magdalena maleeva\"",
    "question_en": "What was the result when the partner was magdalena maleeva?",
    "question_th": "ผลลัพธ์คืออะไรเมื่อ Magdalena Maleeva เป็นหุ้นส่วน?",
    "context": "CREATE TABLE table_name_16 (result VARCHAR, partner VARCHAR)"
  },
  {
    "answer": "SELECT edition FROM table_name_34 WHERE partner = \"magdalena maleeva\"",
    "question_en": "What edition had magdalena maleeva as partner?",
    "question_th": "Magdalena Maleeva ฉบับใดเป็นคู่หู?",
    "context": "CREATE TABLE table_name_34 (edition VARCHAR, partner VARCHAR)"
  },
  {
    "answer": "SELECT partner FROM table_name_23 WHERE edition = \"1988 world group i\"",
    "question_en": "Who was partner for the 1988 world group i edition?",
    "question_th": "ใครเป็นหุ้นส่วนสำหรับ World Group I Edition ปี 1988?",
    "context": "CREATE TABLE table_name_23 (partner VARCHAR, edition VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_4 WHERE date = \"july 16, 1992\"",
    "question_en": "What was the result on july 16, 1992?",
    "question_th": "ผลลัพธ์เมื่อวันที่ 16 กรกฎาคม 1992 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_4 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_70 WHERE position = \"8th\"",
    "question_en": "What is the event that is in 8th position?",
    "question_th": "เหตุการณ์ที่อยู่ในอันดับที่ 8 คืออะไร?",
    "context": "CREATE TABLE table_name_70 (event VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_37 WHERE year < 1989",
    "question_en": "What is the event in a year before 1989?",
    "question_th": "เหตุการณ์ในหนึ่งปีก่อนปี 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_en": "What is the total medals in 1964?",
    "question_th": "ปี 64 รวมเหรียญทั้งหมดเท่าไรครับ?",
    "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_en": "How many kills when percentage is more than 0.313, attempts are more than 1035 and assists are larger than 57?",
    "question_th": "ฆ่าได้กี่ครั้งเมื่อเปอร์เซ็นต์มากกว่า 0.313 ความพยายามมากกว่า 1,035 ครั้ง และการช่วยเหลือมากกว่า 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_en": "What is the highest percentage when there are more than 361 blocks?",
    "question_th": "เปอร์เซ็นต์สูงสุดเมื่อมีมากกว่า 361 บล็อกคือเท่าใด",
    "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_en": "What is the total blocks when there are less than 210 digs and the total attempts are more than 1116?",
    "question_th": "จำนวนบล็อกทั้งหมดเมื่อมีน้อยกว่า 210 digs และความพยายามทั้งหมดมากกว่า 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_en": "Which English has German of leben?",
    "question_th": "ภาษาอังกฤษใดมีภาษาเยอรมันของเลเบน?",
    "context": "CREATE TABLE table_name_26 (english VARCHAR, german VARCHAR)"
  },
  {
    "answer": "SELECT plautdietsch FROM table_name_61 WHERE dutch = \"maken\"",
    "question_en": "Which Plautdietsch has Dutch of maken?",
    "question_th": "Plautdietsch ใดที่มีภาษาดัตช์ maken?",
    "context": "CREATE TABLE table_name_61 (plautdietsch VARCHAR, dutch VARCHAR)"
  },
  {
    "answer": "SELECT english FROM table_name_26 WHERE dutch = \"tong\"",
    "question_en": "Which English has Dutch of tong?",
    "question_th": "ภาษาใดเป็นภาษาดัตช์ของ tong?",
    "context": "CREATE TABLE table_name_26 (english VARCHAR, dutch VARCHAR)"
  },
  {
    "answer": "SELECT english FROM table_name_64 WHERE plautdietsch = \"aupel\"",
    "question_en": "Which English has Plautdietsch of aupel?",
    "question_th": "ภาษาอังกฤษข้อใดมี Plautdietsch of aupel?",
    "context": "CREATE TABLE table_name_64 (english VARCHAR, plautdietsch VARCHAR)"
  },
  {
    "answer": "SELECT english FROM table_name_37 WHERE dutch = \"maken\"",
    "question_en": "Which English has Dutch of maken?",
    "question_th": "ภาษาใดเป็นภาษาดัตช์ของ maken",
    "context": "CREATE TABLE table_name_37 (english VARCHAR, dutch VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_21 WHERE year_s__won = \"1988\"",
    "question_en": "Can you tell me the Country that has the Year(s) Won of 1988?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าประเทศใดได้รับรางวัลปี 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_en": "Can you tell me the average Total that has the To par smaller than 10, and the Country of south korea?",
    "question_th": "คุณช่วยบอกฉันถึงผลรวมเฉลี่ยที่มีพาร์ To น้อยกว่า 10 และประเทศเกาหลีใต้ได้ไหม",
    "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_en": "Can you tell me the Year(s) Won that has the Country of united states, and the Total larger than 152?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าปีที่ชนะซึ่งมีประเทศสหรัฐอเมริกาและผลรวมมากกว่า 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_en": "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?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าปีวอนที่มีพาร์ To มากกว่า 5 และผลรวมน้อยกว่า 155 และประเทศของสหรัฐอเมริกา",
    "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_en": "What golfer has a greater than 293 total, and won in 1989?",
    "question_th": "นักกอล์ฟคนใดที่มียอดรวมมากกว่า 293 และชนะในปี 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_en": "What is the maximum total when the To par is +3?",
    "question_th": "ผลรวมสูงสุดเมื่อ To par คือ +3 คือเท่าใด?",
    "context": "CREATE TABLE table_name_16 (total INTEGER, to_par VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_52 WHERE total = 281",
    "question_en": "What golfer has 281 as their total?",
    "question_th": "นักกอล์ฟคนใดมี 281 รวมเป็นของพวกเขา?",
    "context": "CREATE TABLE table_name_52 (player VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT MAX(capacity) FROM table_name_95 WHERE stadium = \"tsentral stadium (batumi)\"",
    "question_en": "What is the highest capacity of the tsentral stadium (batumi)?",
    "question_th": "สนามกีฬาเซนทรัล (บาตูมี) มีความจุสูงสุดคือเท่าใด?",
    "context": "CREATE TABLE table_name_95 (capacity INTEGER, stadium VARCHAR)"
  },
  {
    "answer": "SELECT clubs FROM table_name_17 WHERE stadium = \"evgrapi shevardnadze stadium\"",
    "question_en": "What clubs are in the evgrapi shevardnadze stadium?",
    "question_th": "มีสโมสรใดบ้างในสนามกีฬาเอฟกราปี เชวาร์ดนาดเซ่?",
    "context": "CREATE TABLE table_name_17 (clubs VARCHAR, stadium VARCHAR)"
  },
  {
    "answer": "SELECT stadium FROM table_name_27 WHERE clubs = \"zooveti tbilisi\"",
    "question_en": "What is the stadium of the zooveti tbilisi club?",
    "question_th": "สนามกีฬาของซูเวติ ทบิลิซี คลับ คืออะไร?",
    "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_en": "What college had Jim Leonhard Category:articles with hcards?",
    "question_th": "Jim Leonhard วิทยาลัยใดมีหมวดหมู่:บทความที่มี 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_en": "Who's the original team for Rashied Davis Category:articles with hcards?",
    "question_th": "ใครคือทีมดั้งเดิมของ Rashied Davis Category:บทความที่มี 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_en": "What college has Lance Moore Category:articles with hcards?",
    "question_th": "วิทยาลัยใดมี Lance Moore หมวดหมู่:บทความที่มี 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_en": "What's the original NFL team when the POS is S and college is Georgia Tech?",
    "question_th": "ทีม NFL ดั้งเดิมคืออะไรเมื่อ POS คือ S และวิทยาลัยคือ 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_en": "What is the date of birth of Oliver Buell's child?",
    "question_th": "ลูกของ Oliver Buell เกิดวันไหน?",
    "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_en": "Who is the father that was born on January 2, 1842?",
    "question_th": "พ่อที่เกิดเมื่อวันที่ 2 มกราคม พ.ศ. 2385 คือใคร?",
    "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_en": "Who is the father of the child whose mother is Presendia Huntington Buell?",
    "question_th": "ใครคือพ่อของเด็กที่แม่คือ 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_en": "What was the place in Germany with a score of 69-69=138?",
    "question_th": "สถานที่ใดในเยอรมนีที่มีคะแนน 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_en": "What is the country that has a place of T6 that Eduardo Romero plays for?",
    "question_th": "ประเทศใดที่มีตำแหน่ง T6 ที่เอดูอาร์โด้ โรเมโรเล่นอยู่?",
    "context": "CREATE TABLE table_name_73 (country VARCHAR, place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_96 WHERE country = \"scotland\"",
    "question_en": "What is the to par for Scotland?",
    "question_th": "ค่าพาร์สำหรับสกอตแลนด์คืออะไร?",
    "context": "CREATE TABLE table_name_96 (to_par VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_73 WHERE player = \"darren clarke\"",
    "question_en": "What is the score for Darren Clarke?",
    "question_th": "ดาร์เรน คลาร์ก ได้คะแนนเท่าไหร่?",
    "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_en": "What is the country that has a place of T6, a socre of 69-69=138, and where Niclas Fasth played?",
    "question_th": "ประเทศใดที่มีอันดับ T6 คะแนน 69-69=138 และ Niclas Fasth เล่นที่ไหน?",
    "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_en": "What's the total losses that has more than 12 wins and 1017 against?",
    "question_th": "การสูญเสียทั้งหมดที่มีการชนะมากกว่า 12 ครั้งและแพ้ 1,017 ครั้งคือเท่าใด?",
    "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_en": "What's the most wins of Tatong?",
    "question_th": "ต้าตงชนะอะไรมากที่สุด?",
    "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_en": "What's the most number of byes for Longwood having less than 1944 against?",
    "question_th": "ลองวูดที่ทำได้น้อยกว่าปี 1944 มีโอกาสบายมากที่สุดคือเท่าไร?",
    "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_en": "What is the smallest number against when the draws are less than 0?",
    "question_th": "ตัวเลขที่น้อยที่สุดเทียบกับเมื่อเสมอน้อยกว่า 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_en": "What are the average byes of Bonnie Doon having more than 16 wins?",
    "question_th": "ลาก่อนโดยเฉลี่ยของ Bonnie Doon ที่ชนะมากกว่า 16 ครั้งเป็นเท่าใด",
    "context": "CREATE TABLE table_name_54 (byes INTEGER, benalla_dfl VARCHAR, wins VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_name_91 WHERE city = \"rovigo\"",
    "question_en": "What is Rovigo's Club?",
    "question_th": "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_en": "What 2007-08 had A.S. Gubbio 1910 Club?",
    "question_th": "สโมสร AS Gubbio 1910 มีสโมสรอะไรในปี 2550-51",
    "context": "CREATE TABLE table_name_15 (club VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_49 WHERE total = 295",
    "question_en": "Which country had a total of 295?",
    "question_th": "ประเทศใดมีทั้งหมด 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_en": "On what Date is West Ham United the Home team?",
    "question_th": "เวสต์แฮมยูไนเต็ดเป็นเจ้าบ้านวันไหน?",
    "context": "CREATE TABLE table_name_35 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_76 WHERE score = \"4–1\"",
    "question_en": "On what Date was the Score 4–1?",
    "question_th": "คะแนน 4–1 คือวันไหน?",
    "context": "CREATE TABLE table_name_76 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_68 WHERE tie_no = \"1\"",
    "question_en": "What is the Away team of Tie no 1?",
    "question_th": "ทีมเยือนของเสมออันดับ 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_en": "What is the Tie no when Crystal Palace is the Away team?",
    "question_th": "เสมอไม่คืออะไรเมื่อคริสตัล พาเลซเป็นทีมเยือน?",
    "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_en": "What is the Home team of Tie no 11?",
    "question_th": "ทีมเหย้าของเสมอหมายเลข 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_en": "On what Date is West Ham United the Home team?",
    "question_th": "เวสต์แฮมยูไนเต็ดเป็นเจ้าบ้านวันไหน?",
    "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_en": "What kind of Week 4 has a Week 1 of sheila levell?",
    "question_th": "สัปดาห์ที่ 4 ประเภทใดที่มีระดับชีล่าระดับสัปดาห์ที่ 1",
    "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_en": "What kind of Week 2 has a Week 4 of araya robinson?",
    "question_th": "สัปดาห์ที่ 2 มีอารยา โรบินสัน สัปดาห์ที่ 4 แบบไหน?",
    "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_en": "What kind of Week 4 has a Week 2 of tiffany logan?",
    "question_th": "สัปดาห์ที่ 4 มีสัปดาห์ที่ 2 ของทิฟฟานี่ โลแกนแบบไหน?",
    "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_en": "what kind of Week 5 that has a Week 1 of mandy ashford?",
    "question_th": "สัปดาห์ที่ 5 แบบไหนที่มีสัปดาห์ที่ 1 ของแมนดี้ แอชฟอร์ด",
    "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_en": "What kind of Week 2 that has a Week 1 of mandy ashford?",
    "question_th": "สัปดาห์ที่ 2 แบบไหนที่มีสัปดาห์ที่ 1 ของแมนดี้ แอชฟอร์ด?",
    "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_en": "What Week 2 that has a Week 1 of mackenzie ryan?",
    "question_th": "สัปดาห์ที่ 2 ที่มีสัปดาห์ที่ 1 ของ 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_en": "What is the name when weight shows head coach: Aleksandr Kabanov?",
    "question_th": "ชื่ออะไรเมื่อน้ำหนักแสดงหัวหน้าโค้ช: 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_en": "What is the park & ride lot for the Temple Square station?",
    "question_th": "จุดจอดและรถสำหรับสถานี Temple Square คืออะไร?",
    "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_en": "For the Temple Square station, what is the park & ride lot name?",
    "question_th": "สำหรับสถานี Temple Square ที่จอดรถและเครื่องเล่นชื่ออะไร?",
    "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_en": "Which station was opened in 2013, with no park & ride lot?",
    "question_th": "สถานีใดที่เปิดในปี 2013 โดยไม่มีลานจอดรถ",
    "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_en": "Where is the free fare zone for the Arena station?",
    "question_th": "โซนค่าโดยสารฟรีของสถานี Arena อยู่ที่ไหน?",
    "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_en": "Calvin Abueva Calvin Abueva had what statistic?",
    "question_th": "คาลวิน อาบูเอวา คาลวิน อาบูเอวา มีสถิติเท่าไหร่?",
    "context": "CREATE TABLE table_name_70 (statistic VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT statistic FROM table_name_79 WHERE opponent = \"ssc-r\"",
    "question_en": "When the opposing team was SSC-R what was the statistic?",
    "question_th": "เมื่อทีมตรงข้ามเป็น SSC-R มีสถิติเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_79 (statistic VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_70 WHERE opponent = \"ssc-r\"",
    "question_en": "When SSC-R is the opponent what is the name?",
    "question_th": "เมื่อ SSC-R เป็นคู่ต่อสู้ชื่ออะไร?",
    "context": "CREATE TABLE table_name_70 (name VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT stage FROM table_name_7 WHERE statistic = \"most points\"",
    "question_en": "With a statistic of most points, what is the stage?",
    "question_th": "ด้วยสถิติแต้มมากที่สุดขั้นไหน?",
    "context": "CREATE TABLE table_name_7 (stage VARCHAR, statistic VARCHAR)"
  },
  {
    "answer": "SELECT total FROM table_name_49 WHERE opponent = \"csb uphds\"",
    "question_en": "When the opposing team was CSB UPHDS what was the total?",
    "question_th": "เมื่อทีมตรงข้ามเป็น CSB UPHDS รวมเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_49 (total VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_93 WHERE statistic = \"most assists\"",
    "question_en": "Who had the statistic of most assists?",
    "question_th": "ใครมีสถิติแอสซิสต์มากที่สุด?",
    "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_en": "What is Swimmer, when Year is less than 2011, and when Time is \"53.06\"?",
    "question_th": "Swimmer คืออะไร เมื่อปีน้อยกว่า 2011 และเมื่อใดคือ \"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_en": "What is School, when Event is \"100 Backstroke\"?",
    "question_th": "โรงเรียนคืออะไร เมื่อกิจกรรมคือ \"100 กรรเชียง\"?",
    "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_en": "What is School, when Year is less than 2013, and when Event is \"100 Breaststroke\"?",
    "question_th": "โรงเรียนคืออะไร เมื่อปีน้อยกว่าปี 2013 และเมื่อใดคือกิจกรรม \"100 ท่ากบ\"",
    "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_en": "What is Time, when Year is greater than 2011, and when Event is \"800 Freestyle Relay\"?",
    "question_th": "เวลาคืออะไร เมื่อปีมากกว่าปี 2011 และเมื่อใดที่กิจกรรมคือ \"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_en": "What is Year, when Time is \"1:47.55\"?",
    "question_th": "ปีคืออะไร เมื่อเวลาเป็น \"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_en": "What is the Surface of the match against Yaroslava Shvedova?",
    "question_th": "พื้นผิวของแมตช์กับ ยาโรสลาวา ชเวโดวา เป็นอย่างไร?",
    "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–7, 6–7 (2–7)\"",
    "question_en": "What is the Surface of the match with a Score in the final of 5–7, 6–7 (2–7)?",
    "question_th": "พื้นผิวของการแข่งขันด้วยคะแนนในรอบสุดท้ายของ 5–7, 6–7 (2–7) คืออะไร?",
    "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–6, 3–6\"",
    "question_en": "Who is the Opponent in the final of the match played on Clay Surface with a Score in the final of 4–6, 3–6?",
    "question_th": "ใครคือฝ่ายตรงข้ามในรอบชิงชนะเลิศของการแข่งขันที่เล่นบน Clay Surface ด้วยคะแนนในรอบสุดท้าย 4–6, 3–6?",
    "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–2, 7–5\"",
    "question_en": "On what Date is the match played on Clay Surface with a Score in the final of 6–2, 7–5?",
    "question_th": "การแข่งขันจะเล่นบน Clay Surface ด้วยคะแนนในรอบสุดท้าย 6–2, 7–5 ในวันใด",
    "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_en": "WHAT IS THE NHL TEAM OF FINLAND?",
    "question_th": "ทีม NHL ของฟินแลนด์คืออะไร?",
    "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_en": "What's the to Iran with fewer than 9 survivors, more than 3 damaged, and an ussr an-26 aircraft?",
    "question_th": "จะเกิดอะไรขึ้นกับอิหร่านที่มีผู้รอดชีวิตน้อยกว่า 9 คน เสียหายมากกว่า 3 คน และเครื่องบินรุ่น ussr an-26 หนึ่งลำ?",
    "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_en": "What's the average destroyed with a 1990 over 12, more than 1 damaged, 6 survivors, and a to Iran less than 4?",
    "question_th": "ค่าเฉลี่ยที่ทำลายด้วยปี 1990 มากกว่า 12 ครั้ง เสียหายมากกว่า 1 ครั้ง ผู้รอดชีวิต 6 ราย และอิหร่านน้อยกว่า 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_en": "What's the average survived with a to Iran less than 1, more than 1 destroyed, and a brazil tucano aircraft?",
    "question_th": "โดยเฉลี่ยแล้วรอดชีวิตมาได้โดยมีเครื่องบินไปอิหร่านน้อยกว่า 1 ลำ ถูกทำลายมากกว่า 1 ลำ และเครื่องบิน tucano ของบราซิลเป็นเท่าใด",
    "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_en": "What home team played when there was an attendance of 568?",
    "question_th": "เจ้าบ้านทีมไหนเล่นเมื่อมีผู้ชม 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_en": "What away team did Horsham play?",
    "question_th": "ฮอร์ชัมเล่นทีมเยือนทีมใด?",
    "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_en": "What home team played Hinckley United?",
    "question_th": "ทีมเจ้าบ้านใดที่เล่นฮิงค์ลีย์ ยูไนเต็ด?",
    "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_en": "How many points have an Engine of ferrari tipo 033 v6 tc, and a Year larger than 1987?",
    "question_th": "เครื่องยนต์ของ ferrari tipo 033 v6 tc มีกี่คะแนน และหนึ่งปีใหญ่กว่าปี 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_en": "Which Team/Chassis has a Year larger than 1987?",
    "question_th": "ทีม/แชสซีใดที่มีปีใหญ่กว่าปี 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_en": "How many points have an Engine of ferrari tipo 033 v6 tc, and a Year smaller than 1987?",
    "question_th": "เครื่องยนต์ของ ferrari tipo 033 v6 tc มีกี่คะแนน และปีที่เล็กกว่าปี 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_en": "Which Team/Chassis has less than 65 points?",
    "question_th": "ทีม/แชสซีใดมีคะแนนน้อยกว่า 65 คะแนน?",
    "context": "CREATE TABLE table_name_66 (team_chassis VARCHAR, pts INTEGER)"
  },
  {
    "answer": "SELECT score FROM table_name_99 WHERE tie_no = \"32\"",
    "question_en": "What is the score if the Tie no is 32?",
    "question_th": "ถ้าเลขเสมอกันคือ 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_en": "What is the Tie no for Scunthorpe United?",
    "question_th": "Tie no สำหรับสคันธอร์ป ยูไนเต็ด คืออะไร?",
    "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_en": "Which home team played against Stoke City?",
    "question_th": "เจ้าบ้านทีมไหนเล่นกับสโต๊คซิตี้?",
    "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_en": "Which away team has a Tie no of 14?",
    "question_th": "ทีมเยือนใดเสมอกันที่ 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_en": "On what date does Watford have a Tie no of 2?",
    "question_th": "วัตฟอร์ดเสมออันดับ 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_en": "Which L1 Cache has an FSB speed of 800mhz and a clock speed of 1.2ghz?",
    "question_th": "L1 Cache ใดมีความเร็ว FSB 800mhz และความเร็วสัญญาณนาฬิกา 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_en": "What is the score of Player Tom Kite?",
    "question_th": "นักเตะ ทอม ไคท์ ได้คะแนนเท่าไหร่?",
    "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_en": "What is the To Par that has a 69-69-73=211 score?",
    "question_th": "To Par ที่มีคะแนน 69-69-73=211 คืออะไร?",
    "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_en": "What is the Top that has a 66-71-66=203 score and a place of t1?",
    "question_th": "อันดับสูงสุดที่มีคะแนน 66-71-66=203 และอันดับที่ 1 คืออะไร?",
    "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_en": "What player has a To Par of +1 with a score of 71-67-73=211?",
    "question_th": "ผู้เล่นคนใดมี To Par +1 ด้วยคะแนน 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_en": "Which Player has a Score of 72-68-78-71=289?",
    "question_th": "ผู้เล่นคนไหนมีคะแนน 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_en": "What is the Place for the 66 Score?",
    "question_th": "สถานที่สำหรับคะแนน 66 คืออะไร?",
    "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_en": "What Country has a 67 score by Phil Mickelson?",
    "question_th": "ประเทศใดมีคะแนน 67 โดย 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_en": "When Cathi O'Malley was featured in Week 3, who was the cyber girl for Week 5?",
    "question_th": "เมื่อ Cathi O'Malley แสดงในสัปดาห์ที่ 3 ใครคือสาวไซเบอร์ในสัปดาห์ที่ 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_en": "When Star Zemba was featured in Week 3, who was the cyber girl for Week 2?",
    "question_th": "เมื่อ Star Zemba แสดงในสัปดาห์ที่ 3 ใครคือสาวไซเบอร์ในสัปดาห์ที่ 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_en": "When Heather Christensen was featured in Week 2, who was the cyber girl for Week 3?",
    "question_th": "เมื่อ Heather Christensen แสดงในสัปดาห์ที่ 2 ใครคือสาวไซเบอร์ในสัปดาห์ที่ 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_en": "When Audra Lynn was featured in Week 2, who was the cyber girl for Week 5?",
    "question_th": "เมื่อ Audra Lynn ปรากฏตัวในสัปดาห์ที่ 2 ใครคือสาวไซเบอร์ในสัปดาห์ที่ 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_en": "What is Agg., when Team 1 is \"Tirana\"?",
    "question_th": "Agg. คืออะไร เมื่อทีม 1 คือ \"ติรานา\"?",
    "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_en": "What is 2nd Leg, when Team 2 is \"Dunaferr\"?",
    "question_th": "เลกที่ 2 คืออะไร เมื่อทีม 2 คือ \"ดูนาเฟอร์\"?",
    "context": "CREATE TABLE table_name_57 (team_2 VARCHAR)"
  },
  {
    "answer": "SELECT elimination FROM table_name_74 WHERE time = \"13:43\"",
    "question_en": "What is the elimination number for the time 13:43?",
    "question_th": "เลขคัดออกเวลา 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_en": "What Elimination number is listed againt Eliminated by Sonjay Dutt?",
    "question_th": "หมายเลขใดที่ถูกคัดออกอีกครั้งที่ 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_en": "What Elimination number is listed againt Eliminated by Sonjay Dutt?",
    "question_th": "หมายเลขใดที่ถูกคัดออกอีกครั้งที่ 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_en": "What time is listed against the Wrestler Jimmy Rave?",
    "question_th": "รายการแข่งขันกับนักมวยปล้ำ Jimmy Rave กี่โมง?",
    "context": "CREATE TABLE table_name_15 (time VARCHAR, wrestler VARCHAR)"
  },
  {
    "answer": "SELECT wrestler FROM table_name_63 WHERE elimination = \"5\"",
    "question_en": "Which Wrestler has an Elimination of 5?",
    "question_th": "นักมวยปล้ำคนไหนตกรอบ 5 คน?",
    "context": "CREATE TABLE table_name_63 (wrestler VARCHAR, elimination VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_21 WHERE elimination = \"2\"",
    "question_en": "What time is listed against Elimination number 2?",
    "question_th": "รายการเทียบกับรอบคัดออกหมายเลข 2 กี่โมง",
    "context": "CREATE TABLE table_name_21 (time VARCHAR, elimination VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_78 WHERE place = \"2\"",
    "question_en": "What score has 2 as the place?",
    "question_th": "อันดับที่ 2 มีคะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_78 (score VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT AVG(money___) AS £__ FROM table_name_8 WHERE to_par = \"+8\" AND score = 73 - 72 - 72 - 71 = 288",
    "question_en": "What is the average money (£) that has +8 as the to par, with 73-72-72-71=288 as the score?",
    "question_th": "เงินเฉลี่ย (ปอนด์) ที่มี +8 เป็นพาร์ โดยมีคะแนน 73-72-72-71=288 เป็นเท่าใด",
    "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_en": "What country has t6 as the place, with seve ballesteros as the player?",
    "question_th": "ประเทศใดมี t6 เป็นสถานที่ โดยมีเซเว บาเลสเตรอสเป็นผู้เล่น?",
    "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_en": "What year weas John McEnroe the champion?",
    "question_th": "John McEnroe เป็นแชมป์ปีไหน?",
    "context": "CREATE TABLE table_name_64 (year INTEGER, champion VARCHAR)"
  },
  {
    "answer": "SELECT runner_up FROM table_name_66 WHERE champion = \"björn borg\" AND year > 1978",
    "question_en": "Who was the runner-up, when the champion was Björn Borg after 1978?",
    "question_th": "ใครคือรองชนะเลิศ เมื่อแชมป์คือ Björn Borg หลังปี 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_en": "Who was the champion earlier than 1978 when the runner-up was Jimmy Connors?",
    "question_th": "ใครคือแชมป์ก่อนปี 1978 เมื่อรองชนะเลิศคือจิมมี่ คอนเนอร์ส",
    "context": "CREATE TABLE table_name_90 (champion VARCHAR, runner_up VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT municipality FROM table_name_84 WHERE code = 2401",
    "question_en": "Which municipality has the code 2401?",
    "question_th": "เทศบาลใดมีรหัส 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_en": "What is the population of Danderyd municipality in Stockholm County with a code lower than 162?",
    "question_th": "ประชากรของเทศบาล Danderyd ในเขตปกครองสตอกโฮล์มที่มีรหัสต่ำกว่า 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_en": "What is the total area for a code less than 1862 and a density (per km 2 land) of 21.6?",
    "question_th": "พื้นที่รวมสำหรับรหัสที่น้อยกว่า 1862 และความหนาแน่น (ต่อกิโลเมตร 2 ที่ดิน) คือ 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_en": "what total was the lowest and had a to par of e?",
    "question_th": "จำนวนรวมต่ำสุดและมีค่าเท่ากับ 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_en": "Which player played in the united states and scored a total of 144 points?",
    "question_th": "นักเตะคนไหนเล่นที่อเมริกาและทำคะแนนได้ทั้งหมด 144 แต้ม?",
    "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_en": "What is Trailing Party % Votes, when Party Won is \"Bharatiya Janta Party\", and when Trailing Party is \"Indian National Congress\"?",
    "question_th": "% การโหวตของพรรคต่อท้ายคืออะไร เมื่อพรรคที่ชนะคือ \"พรรค Bharatiya Janta\" และเมื่อพรรคต่อท้ายคือ \"สภาแห่งชาติอินเดีย\"",
    "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_en": "What is Members of Parliament, when Trailing Party is \"Bharatiya Lok Dal\"?",
    "question_th": "ส.ส. คืออะไร ในเมื่อพรรคท้ายคือ \"ภารติยา โลกดาล\"?",
    "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_en": "What is Trailing Party, when Party Won is \"Janata Dal\", and when Year is \"1996\"?",
    "question_th": "Trailing Party คืออะไร เมื่อ Party Won คือ \"Janata Dal\" และเมื่อใดคือ \"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_en": "What is the lowest Year, when Lok Sabha is \"4th Lok Sabha\"?",
    "question_th": "ปีต่ำสุดคือเมื่อโลกสภาคือ \"โลกสภาที่ 4\" คือปีใด",
    "context": "CREATE TABLE table_name_53 (year INTEGER, lok_sabha VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_96 WHERE score = 68",
    "question_en": "Who scored a 68?",
    "question_th": "ใครได้ 68 คะแนน?",
    "context": "CREATE TABLE table_name_96 (player VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT SUM(grid) FROM table_name_91 WHERE rider = \"ryuichi kiyonari\"",
    "question_en": "How many  Grid has a Rider of ryuichi kiyonari?",
    "question_th": "กริดมีไรเดอร์ของริวอิจิ คิโยนาริกี่คน?",
    "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_en": "Name the lowest Grid which has a Bike of ducati 1098 rs 08 and a Rider of max biaggi?",
    "question_th": "ตั้งชื่อ Grid ต่ำสุดซึ่งมี Bike of ducati 1098 rs 08 และ 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_en": "Name the Rider which has a Time of +59.304?",
    "question_th": "ตั้งชื่อไรเดอร์ซึ่งมีเวลา +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_en": "Name the Rider which has Laps smaller than 11 and a Bike of kawasaki zx-10r, and a Grid of 8?",
    "question_th": "ตั้งชื่อไรเดอร์ที่มีรอบน้อยกว่า 11 และจักรยานของ kawasaki zx-10r และกริดที่ 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_en": "What is the total for player karrie webb?",
    "question_th": "ยอดรวมของผู้เล่น แคร์รี่ เวบบ์ เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_1 (total VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT year_s__won FROM table_name_75 WHERE total > 157",
    "question_en": "What years did the player with a total larger than 157 have wins?",
    "question_th": "ผู้เล่นที่มียอดรวมมากกว่า 157 ชนะในปีใด",
    "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_en": "What is the sum of the to par of player meg mallon, who had a total greater than 157?",
    "question_th": "ผลรวมของพาร์ของผู้เล่น เม็ก มอลลอน ที่มีคะแนนรวมมากกว่า 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_en": "What is the highest total of the player with a 7 to par?",
    "question_th": "ผู้เล่นที่มีพาร์ 7 แต้มรวมสูงสุดคือเท่าไร?",
    "context": "CREATE TABLE table_name_71 (total INTEGER, to_par VARCHAR)"
  },
  {
    "answer": "SELECT assists FROM table_name_4 WHERE player = \"steve walker\"",
    "question_en": "How many assists did Steve Walker have?",
    "question_th": "สตีฟ วอล์คเกอร์ แอสซิสต์ได้กี่ครั้ง?",
    "context": "CREATE TABLE table_name_4 (assists VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT goals FROM table_name_84 WHERE assists = \"33\" AND games = \"85\"",
    "question_en": "How many goals did the player score who had 33 assists in 85 games?",
    "question_th": "ผู้เล่นทำประตูได้กี่ประตูโดยมี 33 แอสซิสต์ใน 85 เกม?",
    "context": "CREATE TABLE table_name_84 (goals VARCHAR, assists VARCHAR, games VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_name_79 WHERE player = \"denis pederson\"",
    "question_en": "How many points did Denis Pederson have?",
    "question_th": "เดนิส เพเดอร์สัน มีกี่แต้ม?",
    "context": "CREATE TABLE table_name_79 (points VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT xenon FROM table_name_29 WHERE helium = \"5.1\"",
    "question_en": "Which Xenon has a Helium of 5.1?",
    "question_th": "ซีนอนใดมีฮีเลียม 5.1",
    "context": "CREATE TABLE table_name_29 (xenon VARCHAR, helium VARCHAR)"
  },
  {
    "answer": "SELECT neon FROM table_name_95 WHERE argon = \"−189.6\"",
    "question_en": "Which Neon has a Argon of −189.6?",
    "question_th": "นีออนใดมีอาร์กอนเท่ากับ −189.6",
    "context": "CREATE TABLE table_name_95 (neon VARCHAR, argon VARCHAR)"
  },
  {
    "answer": "SELECT physical_property FROM table_name_13 WHERE helium = \"0.0693\"",
    "question_en": "Which Physical property has a Helium of 0.0693?",
    "question_th": "สมบัติทางกายภาพข้อใดมีฮีเลียมเท่ากับ 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_en": "Name the Argon which has a Neon of 0.484?",
    "question_th": "ตั้งชื่ออาร์กอนซึ่งมีนีออนเท่ากับ 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_en": "Which Krypton has a Physical property of critical pressure (atm)?",
    "question_th": "คริปทอนใดมีคุณสมบัติทางกายภาพของความดันวิกฤติ (atm)",
    "context": "CREATE TABLE table_name_36 (krypton VARCHAR, physical_property VARCHAR)"
  },
  {
    "answer": "SELECT helium FROM table_name_54 WHERE argon = \"−189.6\"",
    "question_en": "which Helium has a Argon of −189.6?",
    "question_th": "ฮีเลียมตัวใดมีอาร์กอนเท่ากับ −189.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_en": "What is Venue, when Opposing Teams is \"South Africa\", and when Date is \"17/06/2000\"?",
    "question_th": "สถานที่จัดงานคืออะไร เมื่อทีมตรงข้ามคือ \"แอฟริกาใต้\" และวันที่คือ \"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_en": "What is the sum of Against, when Opposing Teams is \"South Africa\", and when Status is \"First Test\"?",
    "question_th": "ผลรวมของ Against เมื่อทีมตรงข้ามคือ \"แอฟริกาใต้\" และเมื่อสถานะคือ \"การทดสอบครั้งแรก\" คืออะไร?",
    "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_en": "What is Opposing Teams, when Status is \"Test Match\", and when Date is \"25/11/2000\"?",
    "question_th": "ทีมตรงข้ามคืออะไร เมื่อสถานะเป็น \"แมตช์ทดสอบ\" และวันที่คือ \"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_en": "What is Against, when Venue is \"Twickenham , London\", and when Date is \"04/03/2000\"?",
    "question_th": "What is Against เมื่อสถานที่คือ \"Twickenham , London\" และวันที่คือ \"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_en": "What is the Statue, when Venue is \"Stadio Flaminio , Rome\"?",
    "question_th": "รูปปั้นคืออะไร เมื่อสถานที่คือ \"สตาดิโอ ฟลามินิโอ โรม\"?",
    "context": "CREATE TABLE table_name_63 (status VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT h___a FROM table_name_50 WHERE date = \"24 january 2009\"",
    "question_en": "What is the H/A of the game on 24 january 2009?",
    "question_th": "H/A ของเกมในวันที่ 24 มกราคม 2552 เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_50 (h___a VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_90 WHERE rank_final = \"6\"",
    "question_en": "What year was the rank final of 6?",
    "question_th": "อันดับ 6 เข้ารอบสุดท้ายปีไหนคะ?",
    "context": "CREATE TABLE table_name_90 (year VARCHAR, rank_final VARCHAR)"
  },
  {
    "answer": "SELECT rank_final FROM table_name_41 WHERE year < 2007",
    "question_en": "What was the rank final before 2007?",
    "question_th": "อันดับสุดท้ายก่อนปี 2550 คืออะไร?",
    "context": "CREATE TABLE table_name_41 (rank_final VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT district FROM table_name_8 WHERE incumbent = \"richard neal\"",
    "question_en": "What is District, when Incumbent is \"Richard Neal\"?",
    "question_th": "District คืออะไร ในเมื่อผู้ดำรงตำแหน่งคือ \"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_en": "What is the lowest First Elected, when District is \"Massachusetts 10\"?",
    "question_th": "ผู้ได้รับเลือกครั้งแรกที่ต่ำที่สุดคืออะไร เมื่อเขตคือ \"แมสซาชูเซตส์ 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_en": "What is the average First Elected, when District is \"Massachusetts 3\"?",
    "question_th": "การเลือกตั้งครั้งแรกโดยเฉลี่ยคือเท่าใด เมื่อเขตคือ \"แมสซาชูเซตส์ 3\"",
    "context": "CREATE TABLE table_name_49 (first_elected INTEGER, district VARCHAR)"
  },
  {
    "answer": "SELECT lost FROM table_name_35 WHERE tries_against = \"30\"",
    "question_en": "What team lost with 30 tries against?",
    "question_th": "ทีมใดแพ้จากการลองเล่นถึง 30 ครั้ง?",
    "context": "CREATE TABLE table_name_35 (lost VARCHAR, tries_against VARCHAR)"
  },
  {
    "answer": "SELECT lost FROM table_name_73 WHERE points_for = \"142\"",
    "question_en": "Who lost with 142 points for?",
    "question_th": "ใครเสียไป 142 แต้มเพื่อ?",
    "context": "CREATE TABLE table_name_73 (lost VARCHAR, points_for VARCHAR)"
  },
  {
    "answer": "SELECT tries_against FROM table_name_83 WHERE tries_for = \"67\"",
    "question_en": "How many tries against for the team with 67 tries for?",
    "question_th": "ทีมพยายามกี่ครั้งโดยพยายาม 67 ครั้ง?",
    "context": "CREATE TABLE table_name_83 (tries_against VARCHAR, tries_for VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_name_79 WHERE tries_for = \"101\"",
    "question_en": "Which club has 101 tries for?",
    "question_th": "สโมสรไหนมีความพยายาม 101 ครั้ง?",
    "context": "CREATE TABLE table_name_79 (club VARCHAR, tries_for VARCHAR)"
  },
  {
    "answer": "SELECT try_bonus FROM table_name_16 WHERE tries_for = \"67\"",
    "question_en": "What is the try bonus for the team with 67 tries for?",
    "question_th": "โบนัสการลองสำหรับทีมที่มีการลอง 67 ครั้งคืออะไร?",
    "context": "CREATE TABLE table_name_16 (try_bonus VARCHAR, tries_for VARCHAR)"
  },
  {
    "answer": "SELECT lost FROM table_name_5 WHERE tries_against = \"77\"",
    "question_en": "What is the team that lost with 77 tries against?",
    "question_th": "ทีมไหนที่แพ้โดยพยายามถึง 77 ครั้ง?",
    "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_en": "Which Fighting Spirit has a Name of tsurugamine, and a Technique smaller than 10?",
    "question_th": "จิตวิญญาณแห่งการต่อสู้ใดที่มีชื่อว่าสึรุกามิเนะ และเทคนิคที่น้อยกว่า 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_en": "How much Technique has the Highest rank of yokozuna, and a Total larger than 11?",
    "question_th": "เทคนิคเท่าไหร่ที่มีอันดับสูงสุดของโยโกะสึนะ และผลรวมมากกว่า 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_en": "How much Fighting Spirit has a Total of 13, and a Technique smaller than 1?",
    "question_th": "จิตวิญญาณแห่งการต่อสู้มีทั้งหมด 13 แต้ม และเทคนิคที่น้อยกว่า 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_en": "What are asashio's years?",
    "question_th": "อาซาชิโอะอายุเท่าไหร่?",
    "context": "CREATE TABLE table_name_31 (years VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT county FROM table_name_88 WHERE precincts = \"33/33\"",
    "question_en": "Which County has a Precincts of 33/33?",
    "question_th": "มณฑลใดมีเขต 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_en": "Name the T. Wyka has a Precincts of 51/55?",
    "question_th": "ชื่อ T. Wyka มีพื้นที่ 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_en": "Which Precincts has a G. Hager of 2,260 (15%)?",
    "question_th": "เขตใดมี G. Hager อยู่ที่ 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_en": "Name the G. Hager of E. Greenberg of 266 (14%)?",
    "question_th": "ตั้งชื่อ G. Hager จาก E. Greenberg จำนวน 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_en": "Which Precincts has a County of passaic?",
    "question_th": "จังหวัดใดมีเขตพาสเซก?",
    "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_en": "Which E. Greenberg has a T. Wyka of 10,793 (70%)?",
    "question_th": "E. Greenberg คนใดมี T. Wyka อยู่ที่ 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_en": "Which player from England finished in T41?",
    "question_th": "นักเตะคนไหนจากอังกฤษจบใน 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_en": "From which country is the player that won in 1998?",
    "question_th": "นักเตะที่คว้าแชมป์ในปี 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_en": "In 1997, what was the final total?",
    "question_th": "ในปี 1997 ยอดรวมสุดท้ายเป็นเท่าไร?",
    "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_en": "What was the To Par score for player Justin Leonard?",
    "question_th": "คะแนน To Par ของผู้เล่น Justin Leonard คืออะไร?",
    "context": "CREATE TABLE table_name_14 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_name_30 WHERE games = \"348\"",
    "question_en": "How many points were scored by the player who played 348 games?",
    "question_th": "ผู้เล่นที่เล่น 348 เกมได้คะแนนกี่คะแนน?",
    "context": "CREATE TABLE table_name_30 (points VARCHAR, games VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_name_86 WHERE games = \"363\"",
    "question_en": "How many points were scored by the player who played 363 games?",
    "question_th": "ผู้เล่นที่เล่น 363 เกมได้คะแนนกี่คะแนน?",
    "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_en": "What kind of Replaced has a Manner of departure of end of contract on dec. 16, 2008?",
    "question_th": "การเปลี่ยนประเภทใดมีลักษณะการสิ้นสุดสัญญาในวันที่ 1 ธันวาคม 16 ต.ค. 2551?",
    "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_en": "What kind of Replaced has a Outgoing manager of guillermo sanguinetti?",
    "question_th": "ผู้จัดการทีมของ กิเยร์โม ซานกุยเน็ตติ ที่ถูกแทนที่ประเภทใด?",
    "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_en": "What kind of Replaced has a Team of gimnasia y esgrima (lp)?",
    "question_th": "ทีมทดแทนประเภทใดที่มี 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_en": "Which Team has a Position in table of 15th (c)?",
    "question_th": "ทีมใดมีตำแหน่งในตารางที่ 15 (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_en": "Which Team that has a Position in table of 15th (a) and a Outgoing manager of claudio borghi?",
    "question_th": "ทีมใดที่มีตำแหน่งในตารางอันดับที่ 15 (ก) และผู้จัดการทีมที่กำลังจะลาออกของเคลาดิโอ บอร์กี?",
    "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_en": "Which Team has a Date of appointment on sep. 20, 2008?",
    "question_th": "ทีมไหนมีนัดวันที่กันยายน 20 ต.ค. 2551?",
    "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_en": "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?",
    "question_th": "อะไรคือจำนวนการสูญเสียสูงสุดสำหรับตำแหน่งที่น้อยกว่า 6 โดยชนะมากกว่า 11 ครั้งและ 36 แต้มโดยมีจำนวนการเล่นมากกว่า 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_en": "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?",
    "question_th": "จำนวนชัยชนะทั้งหมดสำหรับรายการที่ทำได้น้อยกว่า 49 ประตู, 39 ประตู, เสมอ 9 และน้อยกว่า 31 แต้มคือเท่าใด?",
    "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_en": "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?",
    "question_th": "จำนวนประตูเฉลี่ยสำหรับผลงานที่แพ้มากกว่า 12 ครั้ง ชนะมากกว่า 10 ครั้ง เสมอมากกว่า 3 ครั้ง และน้อยกว่า 29 แต้มคือเท่าใด",
    "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_en": "What is the highest number of wins for club Cd Orense, with points greater than 36 and more than 4 draws?",
    "question_th": "สโมสร ซีดี โอเรนเซ คว้าชัยชนะสูงสุดด้วยคะแนนมากกว่า 36 และเสมอมากกว่า 4 คือเท่าใด?",
    "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_en": "What is the total number of played for the entry with a position of less than 1?",
    "question_th": "จำนวนการเล่นทั้งหมดสำหรับรายการที่มีตำแหน่งน้อยกว่า 1 คือเท่าใด?",
    "context": "CREATE TABLE table_name_65 (played INTEGER, position INTEGER)"
  },
  {
    "answer": "SELECT record FROM table_name_99 WHERE time = \"3:53\"",
    "question_en": "For the match that lasted 3:53 minutes, what was the final record?",
    "question_th": "แมตช์ที่กินเวลา 3:53 นาที สถิติสุดท้ายเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_99 (record VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_18 WHERE event = \"ufc 154\"",
    "question_en": "Where was the UFC 154 match held?",
    "question_th": "การแข่งขัน UFC 154 จัดขึ้นที่ไหน?",
    "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_en": "What is the 1st leg that has a Rc Cannes Team 1?",
    "question_th": "เลกแรกที่มีทีม Rc Cannes 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_en": "What is the lowest positioned club with points greater than 40, 16 wins and losses less than 3?",
    "question_th": "สโมสรที่มีตำแหน่งต่ำสุดที่มีคะแนนมากกว่า 40, ชนะ 16 ครั้งและแพ้น้อยกว่า 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_en": "What is the lowest positioned team with 2 wins and losses greater than 13?",
    "question_th": "ทีมที่มีตำแหน่งต่ำสุดโดยชนะ 2 ครั้งและแพ้มากกว่า 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_en": "What is the smallest number of wins where goals conceded are below 26, draws are 1 and goals scored are below 74?",
    "question_th": "จำนวนชัยชนะที่น้อยที่สุดโดยเสียประตูต่ำกว่า 26 เสมอ 1 และประตูที่ทำได้ต่ำกว่า 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_en": "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?",
    "question_th": "สำหรับสโมสรมินิจา เครติงก้า จำนวนชัยชนะต่ำสุดโดยมีคะแนนน้อยกว่า 25 ประตูที่ 22 ประตู และเสียประตูต่ำกว่า 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_en": "In which Place was the Silver won by valeri postoianov ( urs ) later than 1969 and the Bronze won by alexander gazov ( urs )?",
    "question_th": "สถานที่ใดที่ valeri postoianov ( urs ) ได้เหรียญเงินมาหลังจากปี 1969 และเหรียญทองแดงชนะโดย 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_en": "Who won the Bronze at Melbourne?",
    "question_th": "ใครได้รับรางวัลเหรียญทองแดงที่เมลเบิร์น?",
    "context": "CREATE TABLE table_name_59 (bronze VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_3 WHERE silver = \"vladimir vesselov ( urs )\"",
    "question_en": "In what Place was the Silver won by vladimir vesselov ( urs )?",
    "question_th": "วลาดิเมียร์ เวลอฟ ( 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_en": "What is Award, when Result is \"Nominated\", and when Film is \"Sankranthi\"?",
    "question_th": "รางวัลคืออะไร เมื่อผลลัพธ์คือ \"ได้รับการเสนอชื่อเข้าชิง\" และเมื่อภาพยนตร์คือ \"สันกรานธี\"",
    "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_en": "What is Award, when Category is \"Best Actor\", and when Year is less than 1988?",
    "question_th": "รางวัลคืออะไร เมื่อหมวดหมู่เป็น \"นักแสดงนำชายยอดเยี่ยม\" และเมื่อปีน้อยกว่าปี 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_en": "What is the total number of Year, when Award is \"Vamsi Berkley Award\", and when Category is \"Best Actor\"?",
    "question_th": "จำนวนปีทั้งหมดคือเท่าไร เมื่อรางวัลคือ \"รางวัล Vamsi Berkley\" และเมื่อหมวดหมู่คือ \"นักแสดงนำชายยอดเยี่ยม\"",
    "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_en": "What is Result, when Film is \"Dharma Chakram\", and when Award is \"Nandi Award for Best Actor\"?",
    "question_th": "ผลลัพธ์จะเป็นเช่นไร เมื่อภาพยนตร์คือ \"ธรรมจักระ\" และเมื่อรางวัลคือ \"รางวัลนันทิสาขานักแสดงนำชายยอดเยี่ยม\"?",
    "context": "CREATE TABLE table_name_87 (result VARCHAR, film VARCHAR, award VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_11 WHERE date = \"dec 8\"",
    "question_en": "What is Opponent, when Date is \"Dec 8\"?",
    "question_th": "คู่ต่อสู้คืออะไร เมื่อวันที่คือ \"8 ธันวาคม\"?",
    "context": "CREATE TABLE table_name_11 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_30 WHERE date = \"nov 28\"",
    "question_en": "What is Score, when Date is \"Nov 28\"?",
    "question_th": "คะแนนคืออะไร เมื่อวันที่คือ \"28 พ.ย.\"",
    "context": "CREATE TABLE table_name_30 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_8 WHERE score = \"80-79\"",
    "question_en": "What is Date, when Score is \"80-79\"?",
    "question_th": "วันที่คือเมื่อใดที่คะแนนเป็น \"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_en": "What is Record, when Opponent is \"New York Knicks\"?",
    "question_th": "Record คืออะไร เมื่อฝ่ายตรงข้ามคือ \"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_en": "What is Score, when Opponent is \"@ New York Knicks\"?",
    "question_th": "Score คืออะไร เมื่อฝ่ายตรงข้ามคือ \"@ 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_en": "What is Result, when Opponent is \"Rochester Royals\"?",
    "question_th": "ผลลัพธ์จะเป็นอย่างไรเมื่อฝ่ายตรงข้ามคือ \"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_en": "What was the Result at Strathclyde Homes Stadium?",
    "question_th": "ผลลัพธ์ที่ Strathclyde Homes Stadium เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_59 (result VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_99 WHERE country = \"spain\"",
    "question_en": "Name the Score of spain?",
    "question_th": "ชื่อคะแนนของสเปน?",
    "context": "CREATE TABLE table_name_99 (score VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_20 WHERE to_par = \"−2\"",
    "question_en": "Which Country has a To par of −2? Question 2",
    "question_th": "ประเทศใดมี To par −2? คำถามที่ 2",
    "context": "CREATE TABLE table_name_20 (country VARCHAR, to_par VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_1 WHERE to_par = \"−1\" AND player = \"don pooley\"",
    "question_en": "Which Place has a To par of −1 and don pooley?",
    "question_th": "สถานที่ใดมี To par ของ −1 และ 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_en": "What is week 15's result?",
    "question_th": "ผลลัพธ์ของสัปดาห์ที่ 15 คืออะไร?",
    "context": "CREATE TABLE table_name_24 (result VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT AVG(week) FROM table_name_31 WHERE opponent = \"cleveland browns\"",
    "question_en": "What week did Cleveland Browns played?",
    "question_th": "Cleveland Browns เล่นสัปดาห์ไหน?",
    "context": "CREATE TABLE table_name_31 (week INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT MAX(goals) FROM table_name_43 WHERE name = \"grella\"",
    "question_en": "What is the Highest Goals for Grella?",
    "question_th": "เป้าหมายสูงสุดสำหรับเกรลล่าคืออะไร?",
    "context": "CREATE TABLE table_name_43 (goals INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_name_67 WHERE name = \"grella\"",
    "question_en": "What is in the Notes for Player Name Grella?",
    "question_th": "มีอะไรอยู่ในหมายเหตุสำหรับชื่อผู้เล่น เกรลล่า?",
    "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_en": "Who position did matthew tassone who was drafted after round 5 play?",
    "question_th": "แมทธิว ทาสโซน ที่ถูกดราฟท์หลังเล่นรอบ 5 อยู่ตำแหน่งใคร?",
    "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_en": "what is the highest % hydropower when the % oil is less than 24.5, country is united arab emirates and the % nuclear power is 0?",
    "question_th": "อะไรคือ % พลังน้ำสูงสุด เมื่อ % น้ำมันน้อยกว่า 24.5, ประเทศคือสหรัฐอาหรับเอมิเรตส์ และ % พลังงานนิวเคลียร์คือ 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_en": "what is the highest % hydropower when % coal is 4.9 and % nuclear power is more than 0?",
    "question_th": "% พลังงานน้ำสูงสุดคือเท่าใด เมื่อ % ถ่านหินคือ 4.9 และ % พลังงานนิวเคลียร์มากกว่า 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_en": "what is the highest electricity production (kw/h, billion) when the % other renewable is 0.4, % coal is 0 and % hydropower is more than 99?",
    "question_th": "การผลิตไฟฟ้าสูงสุด (kw/h, พันล้าน) คือเท่าใด เมื่อ % พลังงานทดแทนอื่นๆ คือ 0.4, % ถ่านหินคือ 0 และ % ไฟฟ้าพลังน้ำมากกว่า 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_en": "Who is the player in round 6?",
    "question_th": "ใครคือผู้เล่นในรอบที่ 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_en": "What college did Louis LeBlanc attend?",
    "question_th": "Louis LeBlanc เข้าเรียนที่วิทยาลัยใด",
    "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_en": "How many goals against total did the team with more than 52 goals and fewer than 10 losses have?",
    "question_th": "ทีมที่ยิงได้มากกว่า 52 ประตูและแพ้น้อยกว่า 10 ประตูมีกี่ประตูต่อผลรวม?",
    "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_en": "What was the low number of draws for Levante Ud when their goal difference was smaller than 6?",
    "question_th": "จำนวนการเสมอที่ต่ำของเลบานเต้ อูดเมื่อผลต่างประตูของพวกเขาน้อยกว่า 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_en": "What is the average entry in the against column with draws smaller than 0?",
    "question_th": "รายการเฉลี่ยในคอลัมน์ต่อที่เสมอกันน้อยกว่า 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_en": "What is the total number of losses that has draws larger than 1 and a Portland DFL of westerns?",
    "question_th": "จำนวนการสูญเสียทั้งหมดที่เสมอมากกว่า 1 และ Portland DFL ของเวสเทิร์นคือเท่าใด?",
    "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_en": "What is the sum of draws for all byes larger than 0?",
    "question_th": "ผลรวมของการเสมอสำหรับบายทั้งหมดที่มากกว่า 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_en": "What is the sum of byes for losses larger than 14 for a Portland DFL of westerns?",
    "question_th": "ผลรวมของการบายสำหรับการสูญเสียที่มากกว่า 14 สำหรับ Portland DFL ของฝั่งตะวันตกคือเท่าใด",
    "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_en": "What was the result when the opponent was at 2 usc?",
    "question_th": "ผลลัพธ์จะเป็นเช่นไรเมื่อคู่ต่อสู้อยู่ที่ 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_en": "What was the result on 10/08/1988?",
    "question_th": "ผลลัพธ์เมื่อวันที่ 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_en": "What was the rank# of the opponent when the result of the game was w42-14?",
    "question_th": "อันดับ # ของคู่ต่อสู้เมื่อผลการแข่งขันคือ 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_en": "What was the result of the game that had 56,500 in attendance?",
    "question_th": "อะไรคือผลลัพธ์ของเกมที่มีผู้เข้าร่วม 56,500 คน?",
    "context": "CREATE TABLE table_name_15 (result VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT rank__number FROM table_name_57 WHERE attendance = \"93,829\"",
    "question_en": "What was the rank# of the opponent when there was 93,829 in attendance?",
    "question_th": "ฝ่ายตรงข้ามมีอันดับ # อะไรเมื่อมีผู้เข้าร่วม 93,829 คน?",
    "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_en": "On what date was the game played where the opponent was Stanford, ranked #5?",
    "question_th": "แข่งวันไหนที่คู่ต่อสู้คือสแตนฟอร์ดอันดับ 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_en": "Which Number of electorates (2009) has a Reserved for (SC / ST /None) of total:?",
    "question_th": "ผู้มีสิทธิเลือกตั้งจำนวนใด (2009) สงวนไว้สำหรับ (SC / ST /None) จากทั้งหมด:?",
    "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_en": "What tournament took place after 1973?",
    "question_th": "การแข่งขันใดเกิดขึ้นหลังปี 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_en": "What tournament took place before 1972 with an extra of 200 m?",
    "question_th": "ทัวร์นาเมนต์ใดเกิดขึ้นก่อนปี 1972 โดยมีความพิเศษ 200 ม.",
    "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_en": "What is the current code for the club trophy, in 1867 only?",
    "question_th": "รหัสปัจจุบันสำหรับถ้วยรางวัลสโมสรในปี 1867 เท่านั้นคืออะไร?",
    "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_en": "What is the location of the original code for victorian rules?",
    "question_th": "ที่ตั้งของรหัสต้นฉบับสำหรับกฎแห่งชัยชนะคืออะไร?",
    "context": "CREATE TABLE table_name_64 (location VARCHAR, original_code VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_69 WHERE type = \"club trophy\"",
    "question_en": "What is the location for the club trophy?",
    "question_th": "ถ้วยรางวัลสโมสรอยู่ที่ไหน?",
    "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_en": "What is the location for the club trophy from the year 1867 only?",
    "question_th": "ถ้วยรางวัลสโมสรตั้งแต่ปี พ.ศ. 2410 เท่านั้น อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_52 (location VARCHAR, type VARCHAR, years VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_24 WHERE tournament = \"tampere , finland\"",
    "question_en": "What is Score, when Tournament is \"Tampere , Finland\"?",
    "question_th": "คะแนนคืออะไร เมื่อการแข่งขันคือ \"ตัมเปเร ฟินแลนด์\"?",
    "context": "CREATE TABLE table_name_24 (score VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_31 WHERE opponent = \"jiří vaněk\"",
    "question_en": "What is Surface, when Opponent is \"Jiří Vaněk\"?",
    "question_th": "Surface คืออะไร เมื่อฝ่ายตรงข้ามคือ \"Jiří Vaněk\"",
    "context": "CREATE TABLE table_name_31 (surface VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_52 WHERE opponent = \"ivo minář\"",
    "question_en": "What is Score, when Opponent is \"Ivo Minář\"?",
    "question_th": "Score คืออะไร เมื่อฝ่ายตรงข้ามคือ \"Ivo Minář\"?",
    "context": "CREATE TABLE table_name_52 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_38 WHERE opponent = \"daniel gimeno-traver\"",
    "question_en": "What is Score, when Opponent is \"Daniel Gimeno-Traver\"?",
    "question_th": "Score คืออะไร เมื่อคู่ต่อสู้คือ \"ดาเนียล จิเมโน-ทราเวอร์\"?",
    "context": "CREATE TABLE table_name_38 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_50 WHERE moves = 37 AND result = \"½–½\"",
    "question_en": "What is Tournament, when Moves is \"37\", and when Result is \"½–½\"?",
    "question_th": "ทัวร์นาเมนต์คืออะไร เมื่อการเคลื่อนไหวเป็น \"37\" และเมื่อผลลัพธ์เป็น \"½–½\"",
    "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_en": "What is Result, when Year is greater than 1999, when White is \"Kramnik\", and when Tournament is \"Mainz CC Champions Duel (5)\"?",
    "question_th": "ผลลัพธ์คืออะไร เมื่อ Year มากกว่าปี 1999 เมื่อ White คือ \"Kramnik\" และเมื่อทัวร์นาเมนต์คือ \"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_en": "What is Opening, when White is Kramnik, when Year is less than 2001, and when Tournament is \"Siemens Giants\"?",
    "question_th": "อะไรคือ Opening เมื่อ White คือ Kramnik เมื่อปีน้อยกว่าปี 2001 และเมื่อ Tournament คือ \"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 = \"½–½\" AND moves = 40",
    "question_en": "What is Tournament, when Black is \"Kramnik\", when Result is \"½–½\", and when Moves is \"40\"?",
    "question_th": "การแข่งขันคืออะไร เมื่อสีดำคือ \"ครามนิค\" เมื่อผลลัพธ์คือ \"½–½\" และเมื่อเคลื่อนที่คือ \"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_en": "What was the location where the opponent was Jae Young Kim?",
    "question_th": "ตำแหน่งที่คู่ต่อสู้คือแจยองคิมคืออะไร?",
    "context": "CREATE TABLE table_name_9 (location VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_46 WHERE opponent = \"jose carlos oliveira\"",
    "question_en": "Which event was the opponent jose carlos oliveira?",
    "question_th": "เหตุการณ์ใดคือคู่ต่อสู้ โฮเซ่ คาร์ลอส โอลิเวร่า?",
    "context": "CREATE TABLE table_name_46 (event VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_87 WHERE opponent = \"bobby rehman\"",
    "question_en": "How many rounds was the bout against bobby rehman?",
    "question_th": "ไฟต์กับบ๊อบบี้ เรห์แมน กี่ยก?",
    "context": "CREATE TABLE table_name_87 (round VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_89 WHERE record = \"12-5\"",
    "question_en": "Where was the location when the record was 12-5?",
    "question_th": "ตำแหน่งอยู่ที่ไหนเมื่อบันทึกคือ 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_en": "Which DVD Title has a Region 1 of n/a and greater than 3 in No. of Discs?",
    "question_th": "ชื่อดีวีดีใดที่มีภูมิภาค 1 n/a และมากกว่า 3 ในจำนวนดิสก์",
    "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_en": "Which region 1 has 12 Episodes and a Region 2 of 18 August 2008?",
    "question_th": "ภูมิภาคใด 1 มี 12 ตอนและภูมิภาค 2 ของวันที่ 18 สิงหาคม 2551",
    "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_en": "WHAT TRIES HAVE TRIES AGAINST AT 140?",
    "question_th": "มีความพยายามอะไรเทียบกับที่ 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_en": "WHAT IS THE TRIES AGAINST WITH PLAYED 22, POINTS AGAINST 784?",
    "question_th": "อะไรคือการพยายามเทียบกับการเล่น 22 แต้มกับ 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_en": "WHAT IS THE TRIES WITH POINTS 190?",
    "question_th": "การทดลองด้วยคะแนน 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_en": "WHAT IS THE POINTS WITH 55 TRIES?",
    "question_th": "คะแนนจากการลอง 55 ครั้งคืออะไร?",
    "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_en": "WHAT IS THE LOST WITH 1 LOSING BONUS, 148 POINTS?",
    "question_th": "โบนัสที่เสียไป 1 ครั้งคืออะไร 148 คะแนน?",
    "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_en": "WHAT IS THE LOSING BONUS WITH 190 POINTS?",
    "question_th": "โบนัสที่สูญเสียด้วย 190 แต้มคืออะไร?",
    "context": "CREATE TABLE table_name_31 (losing_bonus VARCHAR, points_for VARCHAR)"
  },
  {
    "answer": "SELECT SUM(pick) FROM table_name_99 WHERE position = \"guard\"",
    "question_en": "What is the sum of the pick of the guard position player?",
    "question_th": "ผลรวมของการเลือกผู้เล่นตำแหน่งป้องกันเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_99 (pick INTEGER, position VARCHAR)"
  },
  {
    "answer": "SELECT nfl_club FROM table_name_60 WHERE pick = 153",
    "question_en": "What is the NFL club with pick # 153?",
    "question_th": "สโมสร NFL ที่มีตัวเลือก # 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_en": "Who is the player from a round less than 13 and has a pick of 74?",
    "question_th": "ใครคือผู้เล่นจากรอบที่น้อยกว่า 13 และเลือกได้ 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_en": "Who is the player from round 13 that plays center?",
    "question_th": "นักเตะรอบ 13 ที่เล่นเซนเตอร์คือใคร?",
    "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_en": "What is the NFL club with a pick less than 74 and a round greater than 2?",
    "question_th": "สโมสร NFL ที่มีตัวเลือกน้อยกว่า 74 และรอบที่มากกว่า 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–27\"",
    "question_en": "Which Conference Semifinals has a Record of 55–27?",
    "question_th": "รอบรองชนะเลิศการประชุมใดที่มีสถิติ 55–27",
    "context": "CREATE TABLE table_name_73 (conference_semifinals VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT conference_semifinals FROM table_name_57 WHERE conference_finals = \"† denotes division championship\"",
    "question_en": "Which Conference Semifinals has a Conference Finals of † denotes division championship?",
    "question_th": "Conference Semifinals ใดที่มี Conference Finals ของ † หมายถึงแชมป์ดิวิชั่น",
    "context": "CREATE TABLE table_name_57 (conference_semifinals VARCHAR, conference_finals VARCHAR)"
  },
  {
    "answer": "SELECT conference_finals FROM table_name_32 WHERE seed = \"† denotes division championship\"",
    "question_en": "Which Conference Finals has a Seed of † denotes division championship?",
    "question_th": "Conference Finals ใดที่มี Seed of † หมายถึงการแข่งขันชิงแชมป์ระดับดิวิชั่น",
    "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_en": "What rank is the publication the observer music monthly?",
    "question_th": "สิ่งพิมพ์ของผู้สังเกตการณ์เพลงรายเดือนอยู่ในอันดับใด?",
    "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_en": "What is the publication the observer music monthly highest year?",
    "question_th": "สิ่งพิมพ์ของผู้สังเกตการณ์เพลงรายเดือนปีสูงสุดคืออะไร?",
    "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_en": "What is the average Attendance, when Venue is \"Candlestick Park\", and when Date is \"December 27\"?",
    "question_th": "ผู้เข้าร่วมโดยเฉลี่ยคือเท่าใด เมื่อสถานที่คือ \"สวนแท่งเทียน\" และวันที่คือ \"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_en": "What is Result, when Date is \"November 22\"?",
    "question_th": "ผลลัพธ์คืออะไร เมื่อวันที่คือ \"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_en": "What is the average Attendance, when Venue is \"Candlestick Park\", and when Date is \"November 25\"?",
    "question_th": "ผู้เข้าร่วมโดยเฉลี่ยคือเท่าใด เมื่อสถานที่คือ \"สวนแท่งเทียน\" และวันที่คือ \"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_en": "What bronze has tatiana ryabkina as the silver, anne margrethe hausken as the gold?",
    "question_th": "บรอนซ์ใดที่มีทาเทียนา รยาบคินาเป็นเงิน แอนน์ มาร์เกรเธอ เฮาสเกนเป็นทองคำ",
    "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_en": "What label is in CD format in Australia?",
    "question_th": "ฉลากใดอยู่ในรูปแบบซีดีในออสเตรเลีย",
    "context": "CREATE TABLE table_name_14 (label VARCHAR, format VARCHAR, region VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_96 WHERE catalog = \"crg3p-90054\"",
    "question_en": "What is the label for catalog number CRG3P-90054?",
    "question_th": "ป้ายแค็ตตาล็อกหมายเลข CRG3P-90054 คืออะไร",
    "context": "CREATE TABLE table_name_96 (label VARCHAR, catalog VARCHAR)"
  },
  {
    "answer": "SELECT format FROM table_name_40 WHERE label = \"mca\"",
    "question_en": "What is the format for the MCA label?",
    "question_th": "ป้าย MCA จะอยู่ในรูปแบบใด",
    "context": "CREATE TABLE table_name_40 (format VARCHAR, label VARCHAR)"
  },
  {
    "answer": "SELECT catalog FROM table_name_33 WHERE label = \"grilled cheese\"",
    "question_en": "What is the catalog number for the Grilled Cheese label?",
    "question_th": "หมายเลขแค็ตตาล็อกของฉลาก Grilled Cheese คืออะไร",
    "context": "CREATE TABLE table_name_33 (catalog VARCHAR, label VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_name_15 WHERE format = \"cd\" AND label = \"mca\"",
    "question_en": "Which region has the format CD and label MCA?",
    "question_th": "ภูมิภาคใดมีรูปแบบซีดีและมีป้ายกำกับ 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_en": "What is the format for the label Mightier than Sword on January 12, 2010 in the United States?",
    "question_th": "รูปแบบสำหรับป้ายกำกับ Mightier than Sword เมื่อวันที่ 12 มกราคม 2010 ในสหรัฐอเมริกา คืออะไร?",
    "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_en": "Which station that sat 54m above seal level is now Closed?",
    "question_th": "สถานีใดที่อยู่เหนือระดับซีล 54 ม. ตอนนี้ปิดแล้ว?",
    "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_en": "Opened prior to 1877 only 2.44km from Wellington, when did this station close?",
    "question_th": "เปิดก่อนปี 1877 ห่างจากเวลลิงตันเพียง 2.44 กม. สถานีนี้ปิดเมื่อใด",
    "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_en": "What is the height above sea level for the station opened 175.67km from Wellington prior to 1887?",
    "question_th": "ความสูงเหนือระดับน้ำทะเลสำหรับสถานีที่เปิด 175.67 กม. จากเวลลิงตันก่อนปี 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_en": "For the station opened after 1876 at 604.53km from Wellington, what is the height above sea level?",
    "question_th": "สำหรับสถานีที่เปิดหลังปี พ.ศ. 2419 ที่ระยะทาง 604.53 กม. จากเวลลิงตัน ความสูงเหนือระดับน้ำทะเลคือเท่าใด",
    "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_en": "Who was the opponent at the game attended by 70,012?",
    "question_th": "คู่ต่อสู้ในเกมที่มีผู้เข้าร่วม 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–10\"",
    "question_en": "What is the date of the post-week 2 game with a result of l 16–10?",
    "question_th": "วันที่ของเกมหลังสัปดาห์ที่ 2 ซึ่งผลการแข่งขัน l 16–10 คือวันที่ใด",
    "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_en": "What is the highest to par number for Justin Leonard when the total is less than 297?",
    "question_th": "จัสติน ลีโอนาร์ด พาร์สูงสุดคือเท่าไร เมื่อผลรวมน้อยกว่า 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_en": "What is the total when the finish was t44?",
    "question_th": "เมื่อจบที่ 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_en": "What country has a total larger than 293, and a to par less than 17?",
    "question_th": "ประเทศใดมีคะแนนรวมมากกว่า 293 และ a น้อยกว่า 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_en": "When Karaorman is Team 1, what is the Agg.?",
    "question_th": "เมื่อ Karaorman อยู่ทีม 1 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_en": "What is week 3 when week 6 is 26.05?",
    "question_th": "สัปดาห์ที่ 3 คืออะไร เมื่อสัปดาห์ที่ 6 คือ 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_en": "What is week 5 when week 2 is 36.80, and week 4 is 39.75?",
    "question_th": "สัปดาห์ที่ 5 คือเท่าใด เมื่อสัปดาห์ที่ 2 คือ 36.80 และสัปดาห์ที่ 4 คือ 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_en": "What is week 4 if week 3 is 35.40?",
    "question_th": "สัปดาห์ที่ 4 คือเท่าใด ถ้าสัปดาห์ที่ 3 คือ 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_en": "What is week 7 when week 3 is 35.90?",
    "question_th": "สัปดาห์ที่ 7 คืออะไร เมื่อสัปดาห์ที่ 3 คือ 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_en": "What is week 6 when week 7, week 4, and week 3 are evicted and week 2 29.35?",
    "question_th": "สัปดาห์ที่ 6 คืออะไร เมื่อสัปดาห์ที่ 7 สัปดาห์ที่ 4 และสัปดาห์ที่ 3 ถูกไล่ออก และสัปดาห์ที่ 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_en": "What is week 5 when week 6 is evicted, and week 2 is 34.55?",
    "question_th": "สัปดาห์ที่ 5 คืออะไรเมื่อสัปดาห์ที่ 6 ถูกไล่ออก และสัปดาห์ที่ 2 คือ 34.55",
    "context": "CREATE TABLE table_name_3 (week_5 VARCHAR, week_6 VARCHAR, week_2 VARCHAR)"
  },
  {
    "answer": "SELECT SUM(purse__) AS ¥_ FROM table_name_42 WHERE year > 2012",
    "question_en": "How much is the purse worth (¥) after 2012?",
    "question_th": "กระเป๋าเงินมูลค่าเท่าไหร่ (¥) หลังจากปี 2012?",
    "context": "CREATE TABLE table_name_42 (purse__ INTEGER, year INTEGER)"
  },
  {
    "answer": "SELECT place FROM table_name_72 WHERE score = 67 - 67 = 134",
    "question_en": "What place had a score of 67-67=134?",
    "question_th": "สถานที่ใดมีคะแนน 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_en": "What country placed t3 with a score of 70-65=135?",
    "question_th": "ประเทศใดอยู่อันดับที่ 3 ด้วยคะแนน 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_en": "What player placed t6 for the United States with a score of 67-69=136?",
    "question_th": "ผู้เล่นคนใดวาง T6 ให้กับสหรัฐอเมริกาด้วยคะแนน 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_en": "What is Competition, when Round is \"Group A - Match 1\"?",
    "question_th": "การแข่งขันคืออะไร เมื่อรอบคือ \"กลุ่ม A - นัดที่ 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_en": "What is Date and Time, when Competition is \"Serie A\", and when Result is \"0-3\"?",
    "question_th": "วันที่และเวลาคืออะไร เมื่อการแข่งขันคือ \"เซเรียอา\" และเมื่อผลการแข่งขันคือ \"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_en": "What is Competition, when Round is \"8 A\"?",
    "question_th": "การแข่งขันคืออะไร เมื่อรอบคือ \"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_en": "What is City of License, when Frequency is greater than 1380?",
    "question_th": "City of License คืออะไร เมื่อความถี่มากกว่า 1380",
    "context": "CREATE TABLE table_name_80 (city_of_license VARCHAR, frequency INTEGER)"
  },
  {
    "answer": "SELECT brand FROM table_name_68 WHERE frequency = 640",
    "question_en": "What is Brand, when Frequency is \"640\"?",
    "question_th": "ยี่ห้อคืออะไร เมื่อความถี่เป็น \"640\"",
    "context": "CREATE TABLE table_name_68 (brand VARCHAR, frequency VARCHAR)"
  },
  {
    "answer": "SELECT AVG(frequency) FROM table_name_87 WHERE type = \"norteño\" AND brand = \"la cotorra\"",
    "question_en": "What is the average Frequency, when Type is \"Norteño\", and when Brand is \"La Cotorra\"?",
    "question_th": "ความถี่เฉลี่ยคือเท่าใด เมื่อประเภทคือ \"Norteño\" และเมื่อแบรนด์คือ \"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_en": "What is Type, when Frequency is \"1480\"?",
    "question_th": "Type คืออะไร เมื่อความถี่เป็น \"1480\"",
    "context": "CREATE TABLE table_name_97 (type VARCHAR, frequency VARCHAR)"
  },
  {
    "answer": "SELECT SUM(frequency) FROM table_name_13 WHERE type = \"christian pop\"",
    "question_en": "What is the sum of Frequency, when Type is \"Christian Pop\"?",
    "question_th": "ผลรวมของความถี่เมื่อประเภทคือ \"คริสเตียนป๊อป\" คืออะไร?",
    "context": "CREATE TABLE table_name_13 (frequency INTEGER, type VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_50 WHERE callsign = \"xetam\"",
    "question_en": "What is the Type, when Callsign is \"Xetam\"?",
    "question_th": "ประเภทคืออะไร เมื่อ Callsign คือ \"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_en": "Which Chief Judge has Appointed by of reagan category:articles with hcards?",
    "question_th": "หัวหน้าผู้พิพากษาคนใดได้รับการแต่งตั้งจากหมวดหมู่เรแกน:บทความที่มี hcards",
    "context": "CREATE TABLE table_name_42 (chief_judge VARCHAR, appointed_by VARCHAR)"
  },
  {
    "answer": "SELECT senior_status FROM table_name_18 WHERE chief_judge = \"—\" AND reason_for_termination = \"death\" AND active_service = \"1967–1983\"",
    "question_en": "Which Senior status has a Chief Judge of —, a Reason for termination of death, and Active service of 1967–1983?",
    "question_th": "สถานะอาวุโสใดมีหัวหน้าผู้พิพากษาของ — เหตุผลในการยุติการเสียชีวิต และการรับราชการประจำในปี 1967–1983",
    "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–2009\"",
    "question_en": "Which Senior status has Appointed by of l. johnson category:articles with hcards, and Born/Died of 1918–2009?",
    "question_th": "ซึ่งสถานะอาวุโสได้รับการแต่งตั้งจากล. หมวดหมู่จอห์นสัน:บทความที่มี hcards และ เกิด/เสียชีวิตระหว่างปี 1918–2009?",
    "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–1875\"",
    "question_en": "Which Chief Judge has Active service of 1873–1875?",
    "question_th": "หัวหน้าผู้พิพากษาคนใดที่ประจำการในปี พ.ศ. 2416-2418",
    "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_en": "Which Reason for termination has Appointed by of eisenhower category:articles with hcards?",
    "question_th": "เหตุผลใดในการยกเลิกได้รับการแต่งตั้งโดยหมวดหมู่ไอเซนฮาวร์: บทความที่มี 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–1995\"",
    "question_en": "Which Senior status has a Chief Judge of 1991–1995?",
    "question_th": "สถานะอาวุโสคนใดที่มีหัวหน้าผู้พิพากษาในปี 1991–1995",
    "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_en": "When did the Wolverhampton Wanderers play at home?",
    "question_th": "วูล์ฟแฮมป์ตันเล่นในบ้านเมื่อไหร่?",
    "context": "CREATE TABLE table_name_52 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_name_88 WHERE year = 2004",
    "question_en": "What are 2004's notes?",
    "question_th": "บันทึกของปี 2004 คืออะไร?",
    "context": "CREATE TABLE table_name_88 (notes VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_57 WHERE silver = \"yuri omeltchenko\"",
    "question_en": "What year did Yuri Omeltchenko win Silver?",
    "question_th": "Yuri Omeltchenko ได้รับรางวัลเหรียญเงินในปีใด",
    "context": "CREATE TABLE table_name_57 (year VARCHAR, silver VARCHAR)"
  },
  {
    "answer": "SELECT silver FROM table_name_53 WHERE year = 2000",
    "question_en": "Who won Silver in 2000?",
    "question_th": "ใครได้รับรางวัลเหรียญเงินในปี 2543?",
    "context": "CREATE TABLE table_name_53 (silver VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_88 WHERE date = \"april 12\"",
    "question_en": "What is the score on April 12?",
    "question_th": "คะแนนวันที่ 12 เมษายน เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_88 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_64 WHERE date = \"april 5\"",
    "question_en": "What is the score on April 5?",
    "question_th": "คะแนนวันที่ 5 เมษายน เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_64 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_13 WHERE matches = \"6\"",
    "question_en": "What was the result when there were 6 matches?",
    "question_th": "แข่งไป 6 นัด ผลเป็นยังไงบ้าง?",
    "context": "CREATE TABLE table_name_13 (result VARCHAR, matches VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_85 WHERE result = \"did not qualify\"",
    "question_en": "What year was the result did not qualify?",
    "question_th": "ผลสอบปีไหนไม่เข้ารอบ?",
    "context": "CREATE TABLE table_name_85 (year VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_99 WHERE year = \"2008\"",
    "question_en": "What was the result in 2008?",
    "question_th": "ผลลัพธ์ในปี 2551 เป็นอย่างไร?",
    "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_en": "What was the to par score for Tim Herron, who had a score of 69-72=141?",
    "question_th": "คะแนนพาร์ของทิม เฮอรอน ที่มีคะแนน 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_en": "Which golfer finished with a score of 70-71=141?",
    "question_th": "นักกอล์ฟคนไหนจบด้วยคะแนน 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_en": "In what place did Adam Scott, who had a to par score of +1, finish?",
    "question_th": "อดัม สก็อตต์ ซึ่งมีคะแนนพาร์ +1 จบอันดับที่ใด",
    "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_en": "In what place did the golfer that scored 66-74=140 finish?",
    "question_th": "นักกอล์ฟที่ทำคะแนนได้ 66-74=140 จบการแข่งขันในตำแหน่งใด",
    "context": "CREATE TABLE table_name_19 (place VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_4 WHERE place = \"t2\"",
    "question_en": "Which player has a place of t2?",
    "question_th": "ผู้เล่นคนไหนมีตำแหน่ง t2?",
    "context": "CREATE TABLE table_name_4 (player VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_83 WHERE player = \"nick faldo\"",
    "question_en": "What is the score for Nick Faldo?",
    "question_th": "นิค ฟัลโด้ ได้คะแนนเท่าไหร่?",
    "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_en": "What's the average against of Leopold with more than 11 wins?",
    "question_th": "ค่าเฉลี่ยของลีโอโปลด์ที่ชนะมากกว่า 11 ครั้งเป็นเท่าใด?",
    "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_en": "How many total wins for Leopold that had fewer than 1706 against?",
    "question_th": "ลีโอโปลด์ชนะทั้งหมดกี่ครั้งโดยน้อยกว่า 1706?",
    "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_en": "What is the largest number of draws of St Josephs with losses greater than 6 and less than 1250 against?",
    "question_th": "จำนวนการเสมอที่ใหญ่ที่สุดของ St Josephs โดยขาดทุนมากกว่า 6 และน้อยกว่า 1250 คืออะไร?",
    "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_en": "What is the total number of against when they had 14 losses and more than 0 byes?",
    "question_th": "เมื่อพวกเขาแพ้ 14 ครั้งและบายมากกว่า 0 ครั้งมีจำนวนเท่าใด?",
    "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_en": "What is Classification, when Dennis Kucinich is \"3%\", and when % of All is \"53%\"?",
    "question_th": "การจัดประเภทคืออะไร เมื่อ Dennis Kucinich คือ \"3%\" และเมื่อ % ของทั้งหมดคือ \"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_en": "What is Dennis Kucinich, when % of All is \"53%\"?",
    "question_th": "Dennis Kucinich คืออะไร เมื่อ % ของทั้งหมดคือ \"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_en": "What is John Edwards, when John Kerry is \"70%\"?",
    "question_th": "John Edwards คืออะไร เมื่อ John Kerry อยู่ที่ \"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_en": "What is Dennis Kucinich, when Classification is \"Democrat\"?",
    "question_th": "Dennis Kucinich คืออะไร เมื่อจำแนกเป็น \"พรรคเดโมแครต\"?",
    "context": "CREATE TABLE table_name_48 (dennis_kucinich VARCHAR, classification VARCHAR)"
  },
  {
    "answer": "SELECT john_kerry FROM table_name_94 WHERE john_edwards = \"20%\"",
    "question_en": "What is John Kerry, when John Edwards is \"20%\"?",
    "question_th": "John Kerry คืออะไร เมื่อ John Edwards อยู่ที่ \"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_en": "What is % of All, when Dennis Kucinich is \"5%\"?",
    "question_th": "% ของทั้งหมดคือเท่าใด เมื่อ Dennis Kucinich คือ \"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_en": "What is the date of the second round?",
    "question_th": "รอบสองวันที่เท่าไหร่คะ?",
    "context": "CREATE TABLE table_name_66 (date VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_52 WHERE date = \"26 august 1995\"",
    "question_en": "What is the round on 26 August 1995?",
    "question_th": "วันที่ 26 สิงหาคม 2538 รอบอะไร?",
    "context": "CREATE TABLE table_name_52 (round VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_41 WHERE date = \"13 october 1984\"",
    "question_en": "What is the round played on 13 October 1984?",
    "question_th": "วันที่ 13 ตุลาคม พ.ศ.2527 แข่งรอบอะไร?",
    "context": "CREATE TABLE table_name_41 (round VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_75 WHERE home = \"ssv ulm 1846\"",
    "question_en": "What is the result for SSV ULM 1846?",
    "question_th": "ผลลัพธ์ของ 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ético\" AND name = \"v. zapata\"",
    "question_en": "What is the transfer window when moving to alianza atlético by the name of v. zapata?",
    "question_th": "หน้าต่างการถ่ายโอนเมื่อย้ายไป alianza atlético ด้วยชื่อ 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_en": "Where is moving to the type loaned out under the name tragodara?",
    "question_th": "จะย้ายไปประเภทยืมตัวในชื่อ ทราโกดารา ที่ไหน?",
    "context": "CREATE TABLE table_name_74 (moving_to VARCHAR, type VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_19 WHERE moving_to = \"atlético minero\"",
    "question_en": "What is the name when moving to atlético minero?",
    "question_th": "เมื่อย้ายไป แอตเลติโก มิเนโร ชื่ออะไร?",
    "context": "CREATE TABLE table_name_19 (name VARCHAR, moving_to VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_28 WHERE moving_to = \"alianza atlético\"",
    "question_en": "what is the type movinig to alianza atlético?",
    "question_th": "ประเภทของการย้ายไปยัง alianza atlético คืออะไร?",
    "context": "CREATE TABLE table_name_28 (type VARCHAR, moving_to VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_74 WHERE moving_to = \"atlético minero\"",
    "question_en": "what is the name moving to atlético minero?",
    "question_th": "ย้ายไปแอตเลติโก มิเนโรชื่ออะไร",
    "context": "CREATE TABLE table_name_74 (name VARCHAR, moving_to VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_45 WHERE date = \"15 august 2009\"",
    "question_en": "What is the surface on 15 August 2009?",
    "question_th": "พื้นผิวในวันที่ 15 สิงหาคม 2552 เป็นอย่างไรบ้าง?",
    "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_en": "How many seats does the party of others have with a change of -1 and more than 0% votes?",
    "question_th": "พรรคอื่นมีที่นั่งกี่ที่นั่งโดยเปลี่ยน -1 และคะแนนมากกว่า 0%?",
    "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_en": "What are the fewest seats with a -3.7% change and more than 4.7% votes?",
    "question_th": "ที่นั่งใดน้อยที่สุดที่มีการเปลี่ยนแปลง -3.7% และคะแนนโหวตมากกว่า 4.7% คือที่นั่งใด",
    "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_en": "What is the change number with fewer than 4.7% votes and more than 0 seats?",
    "question_th": "หมายเลขการเปลี่ยนแปลงที่มีคะแนนเสียงน้อยกว่า 4.7% และมากกว่า 0 ที่นั่งคืออะไร?",
    "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_en": "What are the fewest seats with fewer than 5.4% seats and more than -1 change?",
    "question_th": "ที่นั่งน้อยที่สุดที่มีที่นั่งน้อยกว่า 5.4% และการเปลี่ยนแปลงมากกว่า -1 คือที่นั่งใด",
    "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_en": "What was the score where Olga Lugina played in the Tournament of poitiers , france itf $25,000?",
    "question_th": "คะแนนที่ Olga Lugina เล่นใน Tournament of poitiers ที่ฝรั่งเศสมีมูลค่า 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_en": "What surface did Ruxandra Dragomir play on?",
    "question_th": "Ruxandra Dragomir เล่นบนพื้นผิวใด?",
    "context": "CREATE TABLE table_name_13 (surface VARCHAR, partner VARCHAR)"
  },
  {
    "answer": "SELECT partner FROM table_name_72 WHERE opponents_in_the_final = \"lenka cenková kateřina šišková\"",
    "question_en": "Who had the opponent of Lenka Cenková kateřina šišková in the final?",
    "question_th": "ใครคือคู่ต่อสู้ของ Lenka Cenková kateřina šišková ในรอบชิงชนะเลิศ?",
    "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_en": "What tournament had an opponent of Els Callens Nancy Feber?",
    "question_th": "การแข่งขันใดที่มีคู่ต่อสู้ของ 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_en": "What kind of Winning driver has a Winning constructor of mercer?",
    "question_th": "Winning driver ประเภทใดที่มี Winning Constructor ของ 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_en": "Which Winning driver has a Winning constructor of mercedes, and a Name of elgin trophy?",
    "question_th": "นักแข่งที่ชนะคนใดมี Winning Constructor ของ Mercedes และชื่อ 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_en": "Name the Report of tourist trophy?",
    "question_th": "ตั้งชื่อรายงานถ้วยรางวัลนักท่องเที่ยว?",
    "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_en": "Name the Winning constructor on 31 may and a Circuit of madonie?",
    "question_th": "ตั้งชื่อคอนสตรัคเตอร์ที่ชนะในวันที่ 31 พฤษภาคมและ 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_en": "Name the Date of mercedes, and a Circuit of elgin?",
    "question_th": "ตั้งชื่อวันที่ของเมอร์เซเดสและวงจรของเอลจินใช่ไหม?",
    "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_en": "Name the Winning driver of mercedes on 22 august?",
    "question_th": "ตั้งชื่อผู้ขับ Mercedes ที่ชนะในวันที่ 22 สิงหาคม?",
    "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_en": "Which stadium did Rashid Budaj coach?",
    "question_th": "ราชิด บูดาจเป็นโค้ชในสนามใด",
    "context": "CREATE TABLE table_name_76 (stadium VARCHAR, coach VARCHAR)"
  },
  {
    "answer": "SELECT coach FROM table_name_67 WHERE city = \"al farwaniyah\"",
    "question_en": "Who coached for al farwaniyah?",
    "question_th": "ใครเป็นโค้ชให้กับอัล ฟาร์วานิยาห์?",
    "context": "CREATE TABLE table_name_67 (coach VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT coach FROM table_name_58 WHERE club = \"qadsia\"",
    "question_en": "Who was the coach for qadsia?",
    "question_th": "ใครคือโค้ชของกัดเซีย?",
    "context": "CREATE TABLE table_name_58 (coach VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT stadium FROM table_name_3 WHERE club = \"kuwait\"",
    "question_en": "Which stadium had the club Kuwait?",
    "question_th": "สนามไหนมีสโมสรคูเวต?",
    "context": "CREATE TABLE table_name_3 (stadium VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_29 WHERE year = \"1990\"",
    "question_en": "What's the score in 1990?",
    "question_th": "คะแนนในปี 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ánchez\"",
    "question_en": "Who was the champion of the Philips Open with a runner-up of Javier Sánchez?",
    "question_th": "ใครคือแชมป์รายการ Philips Open กับรองแชมป์ Javier Sánchez?",
    "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örn borg\"",
    "question_en": "What's the score of the Nice International Championships where Björn Borg was the champion?",
    "question_th": "คะแนนของการแข่งขัน Nice International Championships ที่ Björn Borg เป็นแชมป์คือเท่าไร?",
    "context": "CREATE TABLE table_name_93 (score VARCHAR, name VARCHAR, champion VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_58 WHERE score = \"6–2, 2–6, 5–7, 7–6, 8–6\"",
    "question_en": "What year had a score of 6–2, 2–6, 5–7, 7–6, 8–6?",
    "question_th": "ปีใดมีคะแนน 6–2, 2–6, 5–7, 7–6, 8–6",
    "context": "CREATE TABLE table_name_58 (year VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_88 WHERE champion = \"henrik sundström\"",
    "question_en": "What's the name when Henrik Sundström was champion?",
    "question_th": "Henrik Sundström เป็นแชมป์ชื่ออะไร",
    "context": "CREATE TABLE table_name_88 (name VARCHAR, champion VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_83 WHERE away_team = \"bolton wanderers\"",
    "question_en": "When the away team was Bolton Wanderers, what was the score?",
    "question_th": "เมื่อทีมเยือนเป็นโบลตัน วันเดอเรอร์ส สกอร์เท่าไหร่?",
    "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_en": "On the date of 30/01/1991, when the away team was Liverpool, what was the score?",
    "question_th": "วันที่ 30/01/1991 เมื่อทีมเยือนเป็น ลิเวอร์พูล สกอร์เท่าไหร่?",
    "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_en": "When the tie no was 1, what was the score?",
    "question_th": "เมื่อเสมอกันที่ 1 สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_44 (score VARCHAR, tie_no VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_54 WHERE home_team = \"shrewsbury town\"",
    "question_en": "When the home team was Shrewsbury town, what was the score?",
    "question_th": "เมื่อเจ้าบ้านเป็นชรูว์สบิวรี่ทาวน์สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_54 (score VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT tie_no FROM table_name_12 WHERE home_team = \"woking\"",
    "question_en": "When the home team was Woking, what was the tie no?",
    "question_th": "เมื่อเจ้าบ้านเป็นวอคกิ้ง เสมอกันอะไร?",
    "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_en": "How many people attended the game against away team Cambridge City?",
    "question_th": "มีกี่คนที่เข้าร่วมเกมกับทีมเยือนเคมบริดจ์ ซิตี้?",
    "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_en": "Who was the home team that played against Aylesbury Vale?",
    "question_th": "ทีมเจ้าบ้านที่เล่นกับเอลส์บิวรี เวลคือใคร?",
    "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_en": "Which home team has 44 ties?",
    "question_th": "เจ้าบ้านทีมไหนเสมอกัน 44 นัด?",
    "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_en": "How many people attended the game with home team Witton Albion?",
    "question_th": "มีคนเข้าร่วมเกมกับทีมเจ้าบ้าน วิทตัน อัลเบี้ยน กี่คน?",
    "context": "CREATE TABLE table_name_74 (attendance VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_51 WHERE home_team = \"billericay town\"",
    "question_en": "What was the attendance at the Billericay Town home game?",
    "question_th": "การมีส่วนร่วมในเกมเหย้าของบิลเลอร์เคย์ ทาวน์เป็นอย่างไรบ้าง?",
    "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_en": "What was the tie number of the away game for Ashford Town (Middx)?",
    "question_th": "เกมเยือนของแอชฟอร์ด ทาวน์ (มิดดซ์) เสมอกันที่เท่าไร?",
    "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_en": "What was the attendance at the Billericay Town home game?",
    "question_th": "การมีส่วนร่วมในเกมเหย้าของบิลเลอร์เคย์ ทาวน์เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_34 (attendance VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_6 WHERE attendance = \"81\"",
    "question_en": "Who was the away team at the game attended by 81?",
    "question_th": "ใครคือทีมเยือนในเกมที่ 81 เข้าร่วม?",
    "context": "CREATE TABLE table_name_6 (away_team VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_55 WHERE tie_no = \"5\"",
    "question_en": "What score has a tie of 5?",
    "question_th": "คะแนนใดมี 5 เสมอกัน?",
    "context": "CREATE TABLE table_name_55 (score VARCHAR, tie_no VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_56 WHERE tie_no = \"3\"",
    "question_en": "What was the date of the game that tied at 3?",
    "question_th": "เกมที่เสมอกันที่ 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_en": "What is European Release Date, when North American Release Date is \"2013-03-05\"?",
    "question_th": "วันที่วางจำหน่ายในยุโรปคือวันที่วางจำหน่ายในอเมริกาเหนือคือ \"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_en": "What is Japanese Release Date, when Australia Release Date is \"2006-03-23\"?",
    "question_th": "วันที่วางจำหน่ายในญี่ปุ่นคือวันที่วางจำหน่ายในออสเตรเลียคือ \"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_en": "What is North American Release Date, when Japanese Release Date is \"2011-06-23\"?",
    "question_th": "วันที่วางจำหน่ายในอเมริกาเหนือคือวันที่วางจำหน่ายในญี่ปุ่นคือ \"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_en": "What is the goal difference when there are fewer than 12 wins, 32 goals against and 8 draws?",
    "question_th": "อะไรคือผลต่างประตูที่แตกต่างเมื่อชนะน้อยกว่า 12 ครั้ง เสียประตู 32 ประตู และเสมอ 8 ครั้ง?",
    "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_en": "What's the lowest goal difference when the position is higher than 16?",
    "question_th": "อะไรคือผลต่างประตูต่ำสุดเมื่ออันดับสูงกว่า 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_en": "Which venue was the opposing team New Zealand on 22/11/1997?",
    "question_th": "สนามใดคือทีมตรงข้ามนิวซีแลนด์เมื่อวันที่ 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_en": "What day was the opposing team Australia and the against 25?",
    "question_th": "ทีมตรงข้ามออสเตรเลียกับ 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_en": "What was the status for the opposing team South Africa?",
    "question_th": "สถานะของทีมตรงข้ามแอฟริกาใต้คืออะไร?",
    "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_en": "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?",
    "question_th": "ประตูของลีกคืออะไรเมื่อประตู FA Cup เป็น 0, ตำแหน่งคือ mf, แอปลีกคัพเป็น 0 และชื่อ 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_en": "What is the Total Apps when League Cup Apps is 0 (1), and position is df?",
    "question_th": "Total Apps คืออะไรเมื่อ League Cup Apps เป็น 0 (1) และตำแหน่งคือ 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_en": "What is the total goals for Mark Ward?",
    "question_th": "ประตูรวมของมาร์ค วอร์ดคือเท่าไหร่?",
    "context": "CREATE TABLE table_name_64 (total_goals INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_name_85 WHERE name = \"jackie goldberg\"",
    "question_en": "What is the political party of Jackie Goldberg?",
    "question_th": "พรรคการเมืองของ 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_en": "During what years was Christine Kehoe in Assembly?",
    "question_th": "Christine Kehoe อยู่ในสภาในช่วงปีใด?",
    "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_en": "What were the San Francisco resident's years in assembly?",
    "question_th": "ชาวซานฟรานซิสโกมีการชุมนุมกี่ปี?",
    "context": "CREATE TABLE table_name_54 (years_in_assembly VARCHAR, residence VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_name_75 WHERE residence = \"san diego\"",
    "question_en": "What political party does the person from San Diego belong to?",
    "question_th": "บุคคลจากซานดิเอโกเป็นสมาชิกพรรคการเมืองใด",
    "context": "CREATE TABLE table_name_75 (party VARCHAR, residence VARCHAR)"
  },
  {
    "answer": "SELECT opposing_teams FROM table_name_18 WHERE date = \"06/02/1988\"",
    "question_en": "Which Opposing Teams is on 06/02/1988?",
    "question_th": "ทีมตรงข้ามทีมใดในวันที่ 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_en": "When Status of five nations, and a Venue of twickenham , london, and a Opposing Teams of ireland are in?",
    "question_th": "เมื่อสถานะของห้าชาติ และสถานที่จัดงานทวิกเคนแฮม ลอนดอน และทีมตรงข้ามของไอร์แลนด์เข้ามาแล้ว?",
    "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_en": "What's the attendance when the opponents are cambridge united?",
    "question_th": "การเข้าร่วมเป็นอย่างไรบ้างเมื่อฝ่ายตรงข้ามเป็นเคมบริดจ์ยูไนเต็ด?",
    "context": "CREATE TABLE table_name_12 (attendance VARCHAR, opponents VARCHAR)"
  },
  {
    "answer": "SELECT AVG(attendance) FROM table_name_85 WHERE opponents = \"dundalk\"",
    "question_en": "What's the average attendance when the opponents are dundalk?",
    "question_th": "ผู้เข้าร่วมโดยเฉลี่ยเมื่อฝ่ายตรงข้ามเป็นดันดอล์กคือเท่าใด?",
    "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_en": "What's the total attendance for H/A of A and opponents of wolverhampton wanderers?",
    "question_th": "การเข้าชมรวมของ H/A ของ A และคู่ต่อสู้ของ 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_en": "Which Total has a Gold smaller than 4?",
    "question_th": "ผลรวมใดที่มีทองคำน้อยกว่า 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_en": "Which Rank has a Nation of china (chn), and a Bronze smaller than 4?",
    "question_th": "อันดับใดที่มี Nation of china (chn) และ Bronze น้อยกว่า 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_en": "How much Total has a Bronze smaller than 13, and a Nation of netherlands (ned), and a Gold larger than 4?",
    "question_th": "Total มีเหรียญทองแดงที่น้อยกว่า 13 เหรียญและมี Nation of Netherlands (ned) และทองที่ใหญ่กว่า 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_en": "Which website was founded before 1897, and is located in Adaminaby?",
    "question_th": "เว็บไซต์ใดก่อตั้งก่อนปี พ.ศ. 2440 และตั้งอยู่ใน 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_en": "What is the average year founded that is located in Broken Hill and has school years of k-6?",
    "question_th": "ปีเฉลี่ยที่ก่อตั้งซึ่งตั้งอยู่ในโบรคเกนฮิลล์ และมีปีการศึกษาระดับอนุบาลถึงมัธยมศึกษาปีที่ 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_en": "What suburb/town has school years of k-6, was founded before 1875, and has Ashfield Public School as its school?",
    "question_th": "ชานเมือง/เมืองใดที่มีปีการศึกษาในระดับอนุบาลถึงมัธยมศึกษาปีที่ 6 ก่อตั้งขึ้นก่อนปี พ.ศ. 2418 และมีโรงเรียน Ashfield Public 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_en": "What is the year Airds High School was founded?",
    "question_th": "Airds High School ก่อตั้งในปีใด",
    "context": "CREATE TABLE table_name_65 (founded VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT website FROM table_name_76 WHERE founded = 1921",
    "question_en": "Which website has 1921 as the year founded?",
    "question_th": "เว็บไซต์ใดมีปี 1921 ก่อตั้ง?",
    "context": "CREATE TABLE table_name_76 (website VARCHAR, founded VARCHAR)"
  },
  {
    "answer": "SELECT score_points FROM table_name_80 WHERE rank_points = \"defending champion\"",
    "question_en": "What Score points has a Rank points of defending champion?",
    "question_th": "คะแนนคะแนนใดมีคะแนนอันดับการป้องกันแชมป์?",
    "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_en": "What Rank points has an Event of wc beijing, and Score points of 11?",
    "question_th": "คะแนนอันดับใดที่มีเหตุการณ์ของ WC Beijing และคะแนนคะแนน 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_en": "What Shooter has a Total of 28?",
    "question_th": "Shooter ใดมีทั้งหมด 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_en": "What Shooter has an Event of wc beijing, a Total of 16, and Rank points of 4?",
    "question_th": "Shooter อะไรมีอีเว้นท์ของ wc ปักกิ่ง รวม 16 คะแนน และคะแนนอันดับ 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_en": "What is the average against of Murrayfield, Edinburgh?",
    "question_th": "ค่าเฉลี่ยต่อ เมอร์เรย์ฟิลด์, เอดินบะระ อยู่ที่เท่าไร?",
    "context": "CREATE TABLE table_name_13 (against INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_70 WHERE opposing_teams = \"wales\"",
    "question_en": "What is the status of the Wales opposing team?",
    "question_th": "สถานะของทีมตรงข้ามเวลส์เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_70 (status VARCHAR, opposing_teams VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_95 WHERE against = 7",
    "question_en": "What date has an against of 7?",
    "question_th": "วันที่ใดมีกับ 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_en": "What District was Incumbent Steve Israel First elected after 1998 in the Democratic party?",
    "question_th": "สตีฟ อิสราเอล ผู้ดำรงตำแหน่งเขตใดได้รับเลือกครั้งแรกหลังปี 1998 ในพรรคเดโมแครต",
    "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_en": "What are the results of a first elected prior to year 1982?",
    "question_th": "ผลการเลือกตั้งครั้งแรกก่อนปี 2525 เป็นอย่างไร?",
    "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_en": "Who is the Incumbent of the Democratic Party at an election after 1992 in the New York 1 District who was Re-elected?",
    "question_th": "ใครคือผู้ดำรงตำแหน่งพรรคประชาธิปัตย์ในการเลือกตั้งหลังปี 1992 ในเขตนิวยอร์ก 1 ที่ได้รับการเลือกตั้งใหม่?",
    "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_en": "What is Gene Sauers' to par?",
    "question_th": "Gene Sauers' มีค่าเท่าไร?",
    "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_en": "Where is john daly of united states from?",
    "question_th": "john daly จากสหรัฐอเมริกามาจากไหน?",
    "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_en": "What is the average rank of the city of el paso, which has a population greater than 672,538?",
    "question_th": "อันดับเฉลี่ยของเมืองเอลปาโซซึ่งมีประชากรมากกว่า 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_en": "What is the state of the city of denver, which has a rank less than 10?",
    "question_th": "เมืองเดนเวอร์ซึ่งมีอันดับต่ำกว่า 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_en": "What is the result when the round is less than 3, the location is in Auckland, New Zealand, and tko is the method?",
    "question_th": "ผลคือเมื่อรอบน้อยกว่า 3 สถานที่อยู่ที่โอ๊คแลนด์ นิวซีแลนด์ และวิธี tko เป็นอย่างไร?",
    "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_en": "What is the smallest round to have a record of 4-0?",
    "question_th": "รอบที่เล็กที่สุดที่มีสถิติ 4-0 คือรอบไหน?",
    "context": "CREATE TABLE table_name_95 (round INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_55 WHERE round > 3",
    "question_en": "What is the result of a round greater than 3?",
    "question_th": "ผลลัพธ์ของรอบที่มากกว่า 3 คืออะไร?",
    "context": "CREATE TABLE table_name_55 (result VARCHAR, round INTEGER)"
  },
  {
    "answer": "SELECT event FROM table_name_92 WHERE opponent = \"toa naketoatama\"",
    "question_en": "Which event has Toa Naketoatama as an opponent?",
    "question_th": "งานไหนมีโทอา นาเคโตทามะเป็นคู่ต่อสู้?",
    "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_en": "How many kills have 15 as the injured, with a year prior to 1987?",
    "question_th": "มีผู้บาดเจ็บ 15 รายที่เสียชีวิตไปกี่ราย โดยหนึ่งปีก่อนปี 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_en": "What is Date, when Opposing Teams is \"South Africa\", and when Venus is \"Vodacom Park , Bloemfontein\"?",
    "question_th": "วันที่คือเมื่อใดเมื่อทีมตรงข้ามคือ \"แอฟริกาใต้\" และเมื่อใดดาวศุกร์คือ \"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_en": "What is the average Against, when Status is \"2007 Rugby World Cup\", and when Opposing Teams is \"U.S.A.\"?",
    "question_th": "ค่าเฉลี่ยของฝ่ายตรงข้ามเมื่อสถานะคือ \"2007 Rugby World Cup\" และเมื่อทีมตรงข้ามคือ \"USA\"?",
    "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_en": "What is Venue, when Status is \"2007 Rugby World Cup\", when Against is less than 22, and when Date is \"08/09/2007\"?",
    "question_th": "สถานที่จัดงานคืออะไร เมื่อสถานะเป็น \"2007 Rugby World Cup\" เมื่อต่อต้านน้อยกว่า 22 และเมื่อใดคือวันที่ \"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_en": "What is the lowest Against, when Status is \"First Test\", and when Date is \"26/05/2007\"?",
    "question_th": "ค่าต่ำสุดที่ต่อต้าน เมื่อสถานะเป็น \"การทดสอบครั้งแรก\" และเมื่อวันที่คือ \"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_en": "What is Opposing Teams, when Against is \"20\", and when Venue is \"Twickenham , London\"?",
    "question_th": "ทีมตรงข้ามคืออะไร เมื่อต่อต้านคือ \"20\" และเมื่อสถานที่คือ \"ทวิคเกนแฮม ลอนดอน\"?",
    "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_en": "What is the record when Danilo Pereira was the opponent?",
    "question_th": "สถิติเมื่อดานิโล เปเรร่าเป็นคู่ต่อสู้เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_58 (record VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_55 WHERE opponent = \"edson claas vieira\"",
    "question_en": "Which event had Edson Claas Vieira as an opponent?",
    "question_th": "เหตุการณ์ใดที่มี Edson Claas Vieira เป็นคู่ต่อสู้?",
    "context": "CREATE TABLE table_name_55 (event VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT method FROM table_name_2 WHERE opponent = \"rafael cavalcante\"",
    "question_en": "Which method was used when Rafael Cavalcante was the opponent?",
    "question_th": "ราฟาเอล คาวาลคานเต้ เป็นคู่ต่อสู้ใช้วิธีใด?",
    "context": "CREATE TABLE table_name_2 (method VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT method FROM table_name_38 WHERE opponent = \"alessio sakara\"",
    "question_en": "Which method was used when Alessio Sakara was the opponent?",
    "question_th": "เมื่ออเลสซิโอ ซาคาร่า เป็นคู่ต่อสู้ใช้วิธีใด?",
    "context": "CREATE TABLE table_name_38 (method VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_53 WHERE record = \"3-8\"",
    "question_en": "Who is the opponent when the record is 3-8?",
    "question_th": "คู่ต่อสู้เมื่อสถิติ 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_en": "What was the 2006 population for the local government area of alexandrina council whose rank was smaller than 19?",
    "question_th": "ประชากรในปี 2549 ในเขตปกครองท้องถิ่นของสภาอเล็กซานดรีนาซึ่งมีอันดับน้อยกว่า 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 = \"°c ()\" AND saturated_fat = \"25g\"",
    "question_en": "What is the total fat with a smoke point of °c (), 25g of saturated fat?",
    "question_th": "ไขมันทั้งหมดที่มีจุดควัน°c () ไขมันอิ่มตัว 25 กรัมเป็นเท่าใด",
    "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_en": "What is the total fat when the polyunsaturated fat is 11g, and Monounsaturated fat is 73g?",
    "question_th": "ไขมันทั้งหมดเมื่อไขมันไม่อิ่มตัวเชิงซ้อนคือ 11 กรัม และไขมันไม่อิ่มตัวเชิงเดี่ยวคือ 73 กรัม",
    "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_en": "What is the smoke point with a total fat of 100g, and monounsaturated fat of 46g?",
    "question_th": "จุดควันที่มีไขมันรวม 100 กรัม และไขมันไม่อิ่มตัวเชิงเดี่ยว 46 กรัม คืออะไร?",
    "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_en": "What shows for monounsaturated fat when the saturated fat is 39g?",
    "question_th": "ไขมันไม่อิ่มตัวเชิงเดี่ยวเมื่อไขมันอิ่มตัวอยู่ที่ 39 กรัม จะแสดงให้เห็นอะไร?",
    "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_en": "What is the smoke point when the polyunsaturated fat is 69g (4g in high oleic variety)?",
    "question_th": "จุดเกิดควันเมื่อไขมันไม่อิ่มตัวเชิงซ้อนอยู่ที่ 69 กรัม (4 กรัมในพันธุ์โอเลอิกสูง) คืออะไร?",
    "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_en": "What is the saturated fat when the total fat is 100g, and polyunsaturated fat is 69g (4g in high oleic variety)?",
    "question_th": "ไขมันอิ่มตัวจะเป็นอย่างไรเมื่อไขมันทั้งหมดคือ 100 กรัม และไขมันไม่อิ่มตัวเชิงซ้อนคือ 69 กรัม (4 กรัมในพันธุ์โอเลอิกสูง)",
    "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–2\"",
    "question_en": "What is the Tie No with a Score of 2–2?",
    "question_th": "Tie No ที่มีคะแนน 2–2 คืออะไร?",
    "context": "CREATE TABLE table_name_26 (tie_no VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_33 WHERE away_team = \"crystal palace\"",
    "question_en": "What is the Date of the Crystal Palace Away game?",
    "question_th": "เกมเยือนของคริสตัล พาเลซ นัดเยือนคือวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_33 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_20 WHERE tie_no = \"2\"",
    "question_en": "What is the Home team of Tie no 2?",
    "question_th": "ทีมเหย้าของเสมอหมายเลข 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_en": "What is the Home team of tie no 2?",
    "question_th": "ทีมเจ้าบ้านเสมอหมายเลข 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_en": "What is the average Grid, when Laps is less than 24, when Bike is \"Honda CBR1000RR\", and when Rider is \"Jason Pridmore\"?",
    "question_th": "อะไรคือค่าเฉลี่ยกริด เมื่อรอบน้อยกว่า 24 เมื่อไบค์คือ \"Honda CBR1000RR\" และเมื่อไรเดอร์คือ \"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_en": "What is the highest Laps, when Bike is \"Yamaha YZF-R1\", when Rider is \"David Checa\", and when Grid is greater than 18?",
    "question_th": "รอบสูงสุดคือเท่าไร เมื่อไบค์คือ \"Yamaha YZF-R1\" เมื่อไรเดอร์คือ \"David Checa\" และเมื่อกริดมากกว่า 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_en": "What is the sum of Grid, when Time is \"+16.687\"?",
    "question_th": "ผลรวมของกริดเมื่อเวลาเป็น \"+16.687\" เป็นเท่าใด",
    "context": "CREATE TABLE table_name_60 (grid INTEGER, time VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(grid) FROM table_name_78 WHERE laps > 24",
    "question_en": "What is the total number of Grid, when Laps is greater than 24?",
    "question_th": "จำนวนกริดทั้งหมดเมื่อรอบมากกว่า 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_en": "Who was the runner-up after season 2 when the total prize money was $108,000?",
    "question_th": "ใครคือรองชนะเลิศหลังจากซีซั่น 2 โดยมีเงินรางวัลรวม 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_en": "What was the highest season number with a total prize of $108,000?",
    "question_th": "หมายเลขฤดูกาลสูงสุดที่มีเงินรางวัลรวม 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_en": "What is the earliest season where Aisha Jefcoate was the runner-up?",
    "question_th": "ฤดูกาลแรกสุดที่ Aisha Jefcoate เป็นรองแชมป์คืออะไร?",
    "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_en": "When the Mole was Petrina Edge, what was the potential prize money?",
    "question_th": "เมื่อตัวตุ่นเป็น Petrina Edge เงินรางวัลที่เป็นไปได้คือเท่าใด",
    "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_en": "Which Share has a weekly Rank of 8 and is dated 15 June?",
    "question_th": "หุ้นตัวไหนมีอันดับ 8 รายสัปดาห์ และลงวันที่ 15 มิ.ย.?",
    "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_en": "Which Weekly Rank has an Official ratings (millions) of 11.58?",
    "question_th": "อันดับรายสัปดาห์ใดที่มีเรตติ้งอย่างเป็นทางการ (ล้าน) ที่ 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_en": "Which Show is dated 9 June?",
    "question_th": "รายการไหนคือวันที่ 9 มิถุนายน?",
    "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_en": "Which Weekly Rank for a Live Final Show has an Official Ratings (millions) greater than 5.2?",
    "question_th": "อันดับรายสัปดาห์ใดสำหรับการแสดงสดรอบชิงชนะเลิศที่มีเรตติ้งอย่างเป็นทางการ (ล้าน) มากกว่า 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_en": "What is the status with the opposing team of Scotland?",
    "question_th": "สถานะกับทีมตรงข้ามสกอตแลนด์เป็นอย่างไร?",
    "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_en": "What is the lowest against score for Twickenham, London with the status of Five Nations against Ireland?",
    "question_th": "อะไรคือคะแนนที่ต่ำที่สุดเมื่อเทียบกับคะแนนของทวิคเกนแฮม ลอนดอนที่มีสถานะ Five Nations ต่อไอร์แลนด์?",
    "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_en": "Which Venue has a Against smaller than 7?",
    "question_th": "สถานที่ใดที่มี Against น้อยกว่า 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_en": "When has a Status of five nations, and a Against of 7?",
    "question_th": "เมื่อใดจะมีสถานะเป็นห้าชาติและต่อต้าน 7?",
    "context": "CREATE TABLE table_name_71 (date VARCHAR, status VARCHAR, against VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_16 WHERE against > 13",
    "question_en": "Which Venue has a Against larger than 13?",
    "question_th": "สถานที่ใดมีผู้ต่อต้านมากกว่า 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_en": "Name the Against which has a Venue of wembley stadium , london?",
    "question_th": "ตั้งชื่อ The Against ซึ่งมีสถานที่จัดงานในสนามกีฬาเวมบลีย์ในลอนดอนไหม?",
    "context": "CREATE TABLE table_name_91 (against INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT MAX(wins) FROM table_name_29 WHERE byes < 1",
    "question_en": "Which wins have less than 1 bye?",
    "question_th": "ชัยชนะใดมีน้อยกว่า 1 บาย?",
    "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_en": "Which Against has Losses larger than 10, and Wins smaller than 4, and a Club of dunolly?",
    "question_th": "ซึ่ง Against มีการสูญเสียมากกว่า 10 และชนะน้อยกว่า 4 และ 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_en": "Which Byes has an Against smaller than 1297, and a Club of avoca, and Wins larger than 12?",
    "question_th": "Byes ใดที่มี Against น้อยกว่า 1297 และ Club of avoca และชนะมากกว่า 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_en": "What Kit/Factory has a J250 model made by Jabiru?",
    "question_th": "Kit/Factory ใดมีรุ่น J250 ที่ผลิตโดย 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_en": "When was the duchess, who was married on 11 july 1643, born?",
    "question_th": "ดัชเชสซึ่งอภิเษกสมรสเมื่อวันที่ 11 กรกฎาคม พ.ศ. 2186 ประสูติเมื่อใด?",
    "context": "CREATE TABLE table_name_12 (birth VARCHAR, marriage VARCHAR)"
  },
  {
    "answer": "SELECT birth FROM table_name_91 WHERE name = \"anne of lorraine\"",
    "question_en": "When was anne of lorraine born?",
    "question_th": "แอนน์แห่งลอเรนเกิดเมื่อไหร่?",
    "context": "CREATE TABLE table_name_91 (birth VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT death FROM table_name_56 WHERE spouse = \"philippe\"",
    "question_en": "When did the duchess, who was married to philippe, die?",
    "question_th": "ดัชเชสที่แต่งงานกับฟิลิปป์สิ้นพระชนม์เมื่อใด",
    "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_en": "When did the woman, who was married 22 may 1657, cease to be the duchess?",
    "question_th": "ผู้หญิงซึ่งแต่งงานเมื่อวันที่ 22 พฤษภาคม พ.ศ. 2200 ยุติการเป็นดัชเชสเมื่อใด",
    "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_en": "What is the score of the game with a tie no of 3?",
    "question_th": "เกมนี้สกอร์เสมอกันที่ 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_en": "Who did home team sunderland play on 23 january 1982?",
    "question_th": "ทีมเหย้าซันเดอร์แลนด์เล่นกับใครในวันที่ 23 มกราคม 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_en": "What is the score of the game against away team queens park rangers on 23 january 1982?",
    "question_th": "คะแนนของเกมกับทีมเยือน ควีนส์ปาร์ค เรนเจอร์ส เมื่อวันที่ 23 มกราคม 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_en": "What is the score of the game with a tie no of 6?",
    "question_th": "เกมนี้สกอร์เสมอกันที่ 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_en": "What is the score of the game home team gillingham played on 23 january 1982?",
    "question_th": "จิลลิ่งแฮม เจ้าบ้านเล่นเมื่อวันที่ 23 มกราคม พ.ศ. 2525 ในเกมเหย้ามีคะแนนเท่าไหร่?",
    "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_en": "What is the tie no of the game that home team huddersfield town played?",
    "question_th": "ฮัดเดอร์สฟิลด์ ทาวน์ เจ้าบ้านเสมอกันในเกมที่เท่าไร?",
    "context": "CREATE TABLE table_name_15 (tie_no VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_89 WHERE record = \"2-0\"",
    "question_en": "What is the home team of the game with a 2-0 record?",
    "question_th": "เจ้าบ้านเกมไหนมีสถิติ 2-0 บ้าง?",
    "context": "CREATE TABLE table_name_89 (home VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_67 WHERE record = \"3-0\"",
    "question_en": "What is the score of the game with a 3-0 record?",
    "question_th": "เกมนี้สกอร์ 3-0 เป็นยังไงบ้าง?",
    "context": "CREATE TABLE table_name_67 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_98 WHERE date = \"april 4\"",
    "question_en": "What is the visitor team on April 4?",
    "question_th": "ทีมเยือนวันที่ 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_en": "What is the score of the game with the chicago black hawks as the visitor and a 3-1 record?",
    "question_th": "เกมนี้ชิคาโก้ แบล็ก ฮอว์กส์ เป็นผู้มาเยือนได้สกอร์เท่าไหร่ และสกอร์ 3-1 ?",
    "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_en": "What is Instant Messaging, when Telephony is \"Yes with integrated Sametime\"?",
    "question_th": "Instant Messaging คืออะไร เมื่อ Telephony เป็น \"ใช่กับ 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_en": "What is Videoconferencing, when Synchronous Conferencing is \"No\", when Web Conferencing is \"No\", and when Faxing is \"Yes\"?",
    "question_th": "Videoconferencing คืออะไร เมื่อ Synchronous Conferencing เป็น \"No\" เมื่อ Web Conferencing เป็น \"No\" และเมื่อ Faxing เป็น \"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_en": "What is Videoconferencing, when Data Conferencing is \"No\", and when Web Conferencing is \"No\"?",
    "question_th": "การประชุมทางวิดีโอคืออะไร เมื่อการประชุมทางข้อมูลเป็น \"ไม่\" และเมื่อการประชุมทางเว็บเป็น \"ไม่\"",
    "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_en": "What is Application Sharing, when Web Conferencing is \"Web Conferencing\"?",
    "question_th": "Application Sharing คืออะไร เมื่อ Web Conferencing คือ \"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_en": "What is Instant Messaging, when Electronic Meeting System is \"Yes\", and when Name is \"Microsoft Sharepoint\"?",
    "question_th": "Instant Messaging คืออะไร เมื่อระบบการประชุมทางอิเล็กทรอนิกส์เป็น \"ใช่\" และเมื่อชื่อเป็น \"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_en": "What is Instant Messaging, when Telephony is \"Yes with integrated Sametime\"?",
    "question_th": "Instant Messaging คืออะไร เมื่อ Telephony เป็น \"ใช่กับ 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_en": "What Tournament has an Outcome of winner, and Opponents of eddie dibbs harold solomon?",
    "question_th": "การแข่งขันใดมีผลลัพธ์เป็นผู้ชนะ และฝ่ายตรงข้ามของเอ็ดดี้ ดิบส์ ฮาโรลด์ โซโลมอน",
    "context": "CREATE TABLE table_name_78 (tournament VARCHAR, outcome VARCHAR, opponents VARCHAR)"
  },
  {
    "answer": "SELECT partner FROM table_name_59 WHERE score = \"3–6, 2–6\"",
    "question_en": "What Partner has a Score of 3–6, 2–6?",
    "question_th": "พันธมิตรคนใดมีคะแนน 3–6, 2–6",
    "context": "CREATE TABLE table_name_59 (partner VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_65 WHERE partner = \"tom gorman\"",
    "question_en": "What Tournament has a Partner of tom gorman?",
    "question_th": "ทัวร์นาเมนท์ใดมีคู่หูของทอม กอร์แมน?",
    "context": "CREATE TABLE table_name_65 (tournament VARCHAR, partner VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_2 WHERE opponents = \"bob hewitt frew mcmillan\"",
    "question_en": "What Outcome has Opponents of bob hewitt frew mcmillan?",
    "question_th": "ฝ่ายตรงข้ามของ 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_en": "Who was the name of the opposing team on 11/02/1961?",
    "question_th": "ชื่อทีมฝ่ายตรงข้ามเมื่อ 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_en": "Which Opposing team had an Against smaller Than 5?",
    "question_th": "ทีมตรงข้ามทีมใดมีแต้มต่อน้อยกว่า 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_en": "What is the status for 07/01/1961?",
    "question_th": "สถานะวันที่ 07/01/61 คืออะไร?",
    "context": "CREATE TABLE table_name_91 (status VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_22 WHERE player = \"karl singer\"",
    "question_en": "What position does Karl Singer play?",
    "question_th": "คาร์ล ซิงเกอร์ เล่นตำแหน่งอะไร?",
    "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_en": "Which player is an offensive tackle for the New York Jets?",
    "question_th": "ผู้เล่นคนไหนที่เข้าสกัดแนวรุกให้กับทีม 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_en": "What position does Mike Dennis play?",
    "question_th": "ไมค์ เดนนิส เล่นตำแหน่งอะไร?",
    "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_en": "Which AFL team has a pick 4 for the offensive tackle position?",
    "question_th": "ทีมแอฟใดมีตัวเลือก 4 สำหรับตำแหน่งแท็คเกิ้ลแนวรุก?",
    "context": "CREATE TABLE table_name_14 (afl_team VARCHAR, position VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_88 WHERE name = \"sodje\"",
    "question_en": "From which country was Sodje loaned?",
    "question_th": "Sodje ถูกยืมมาจากประเทศใด?",
    "context": "CREATE TABLE table_name_88 (country VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT loan_club FROM table_name_35 WHERE name = \"c. dickinson\"",
    "question_en": "From which club is player C. Dickinson?",
    "question_th": "นักเตะซี. ดิกคินสันมาจากสโมสรไหน?",
    "context": "CREATE TABLE table_name_35 (loan_club VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT fate FROM table_name_26 WHERE ship = \"bremen\"",
    "question_en": "What is the fate for the Bremen ship?",
    "question_th": "ชะตากรรมของเรือเบรเมินคืออะไร?",
    "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_en": "Who is the original operator for the AG Vulcan builder and the Prinzess Irene ship?",
    "question_th": "ใครคือผู้ดำเนินการดั้งเดิมของผู้สร้าง AG Vulcan และเรือ Prinzess Irene",
    "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_en": "What is the Tonnage that has builder AG Vulcan, and the original operator NDL, and the ship, Prinzess Irene?",
    "question_th": "น้ำหนักบรรทุกคืออะไรที่มีผู้สร้าง AG Vulcan และผู้ดำเนินการดั้งเดิม NDL และเรือ 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_en": "Who has a Score of 68-71-70=208?",
    "question_th": "ใครมีคะแนน 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_en": "Which country has -9 to par with a Score of 70-69-68=207?",
    "question_th": "ประเทศใดมี -9 เสมอด้วยคะแนน 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_en": "What is Tiger Woods' to par?",
    "question_th": "ไทเกอร์ วูดส์ จะได้พาร์เท่าไหร่?",
    "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_en": "Which away team played against Peterborough United, with a tie no of replay?",
    "question_th": "ทีมเยือนทีมใดเล่นกับปีเตอร์โบโรห์ ยูไนเต็ด โดยไม่มีการเล่นซ้ำ?",
    "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_en": "What are the lowest matches that have wickets greater than 16, 3/15 as the best, and an econ less than 8?",
    "question_th": "การแข่งขันต่ำสุดที่มีประตูมากกว่า 16, 3/15 ดีที่สุด และอีคอนน้อยกว่า 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_en": "How many econs have 13.76 as the S/Rate, with runs less than 325?",
    "question_th": "มีกี่ Econ ที่มี S/Rate ที่ 13.76 โดยมีค่ารันน้อยกว่า 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_en": "What is the average wickets that have overs greater than 44, danish kaneria as the player, with an average greater than 13.8?",
    "question_th": "วิคเก็ตเฉลี่ยที่มีโอเวอร์มากกว่า 44 ซึ่งเป็นคาเนเรียของเดนมาร์กในฐานะผู้เล่น โดยมีค่าเฉลี่ยมากกว่า 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_en": "How many 5+/inns have tyron henderson as the player, with wickets less than 21?",
    "question_th": "ผู้เล่นที่มี 5+/โรงขนาดเล็กมีไทรอน เฮนเดอร์สันเป็นผู้เล่นกี่แห่ง โดยมีจำนวนประตูน้อยกว่า 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_en": "What is the surface when the partner was Robert Haybittel?",
    "question_th": "พื้นผิวเมื่อหุ้นส่วนคือ 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_en": "What was the rating of the episode Wonder Drug?",
    "question_th": "เรตติ้งของตอน 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_en": "Who was the winning team on May 12?",
    "question_th": "ทีมใดเป็นผู้ชนะในวันที่ 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_en": "Who was the winning team for circuit zolder?",
    "question_th": "ใครคือทีมที่ชนะการแข่งขัน 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_en": "Who was the winning team for round 3?",
    "question_th": "ทีมใดเป็นผู้ชนะในรอบที่ 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_en": "Who was the winning team on July 13?",
    "question_th": "ทีมใดเป็นผู้ชนะในวันที่ 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_en": "Name the highest Year which has a Venue of narbonne , france?",
    "question_th": "ตั้งชื่อปีสูงสุดซึ่งมีสถานที่จัดงานนาร์บอนน์ ประเทศฝรั่งเศส?",
    "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_en": "Which Competition has a Year larger than 1990 in seville , spain?",
    "question_th": "การแข่งขันใดที่มีปีใหญ่กว่าปี 1990 ในเมืองเซบียา ประเทศสเปน?",
    "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_en": "COunt the Year which has a Venue of latakia , syria?",
    "question_th": "นับปีที่มีสถานที่ของลาตาเกีย ซีเรีย?",
    "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_en": "Which  Position has an Event of 4x400 m relay, and a Venue of stuttgart , germany?",
    "question_th": "ตำแหน่งใดมีการแข่งขันวิ่งผลัด 4x400 ม. และสถานที่จัดงานที่เมืองสตุ๊ตการ์ท ประเทศเยอรมนี",
    "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_en": "Which Year has a Competition of european indoor championships, and a Venue of budapest , hungary?",
    "question_th": "ปีใดที่มีการแข่งขันชิงแชมป์ในร่มยุโรป และสถานที่จัดงานที่บูดาเปสต์ ประเทศฮังการี?",
    "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_en": "How many rounds did satrio hermanto go with an opc-challenge engine?",
    "question_th": "Satrio Hermanto ใช้เครื่องยนต์ opc-challenge กี่รอบ?",
    "context": "CREATE TABLE table_name_84 (rounds VARCHAR, engine VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT rounds FROM table_name_27 WHERE driver = \"frédéric vervisch\"",
    "question_en": "How many rounds did frédéric vervisch go?",
    "question_th": "เฟรเดริก เวอร์วิสช์ไปกี่รอบ?",
    "context": "CREATE TABLE table_name_27 (rounds VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT rounds FROM table_name_46 WHERE driver = \"shirley van der lof\"",
    "question_en": "How many rounds did shirley van der lof go?",
    "question_th": "เชอร์ลีย์ ฟาน เดอร์ ลอฟไปกี่รอบ?",
    "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_en": "What c class engine did philipp eng and team hs technik motorsport use?",
    "question_th": "philipp eng และ team hs technik motorsport ใช้เครื่องยนต์ c class อะไร",
    "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_en": "What is the chassis of rahel frey's volkswagen engine?",
    "question_th": "แชสซีของเครื่องยนต์ Volkswagen ของ Rahel Frey คืออะไร?",
    "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_en": "What is the greatest number of losses when the against is 1465 and there are more than 7 wins?",
    "question_th": "จำนวนการแพ้มากที่สุดเมื่อต่อคือ 1465 และมีการชนะมากกว่า 7 ครั้งคือเท่าใด",
    "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_en": "What is the total of against matches when there are less than 12 wins, less than 0 draws, and Moulamein is the golden river?",
    "question_th": "ผลรวมของนัดเจอเมื่อชนะน้อยกว่า 12 เสมอน้อยกว่า 0 และมูลาเมนคือแม่น้ำสีทองเป็นเท่าไหร่?",
    "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_en": "What is the total losses when Hay is the golden river and there are more than 2 byes?",
    "question_th": "เมื่อเฮย์เป็นแม่น้ำสีทองแล้วมีบายเกิน 2 ครั้งจะขาดทุนทั้งหมดเป็นเท่าใด?",
    "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_en": "What is the total number of draws when there are 1465 against matches and less than 2 byes?",
    "question_th": "เสมอกันทั้งหมด 1465 นัด และบายน้อยกว่า 2 นัดเป็นเท่าไหร่?",
    "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_en": "What is the greatest number of losses when there are more than 0 draws and 1390 against matches?",
    "question_th": "จำนวนการแพ้มากที่สุดเมื่อเสมอมากกว่า 0 และ 1390 ต่อแมตช์คือเท่าไร?",
    "context": "CREATE TABLE table_name_22 (losses INTEGER, draws VARCHAR, against VARCHAR)"
  },
  {
    "answer": "SELECT MAX(wins) FROM table_name_76 WHERE byes > 2",
    "question_en": "What is the highest number of wins when there are more than 2 byes?",
    "question_th": "จำนวนการชนะสูงสุดเมื่อมีมากกว่า 2 บายคือเท่าใด?",
    "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_en": "Which percent has Wins larger than 72, and a Name of john yovicsin?",
    "question_th": "เปอร์เซ็นต์ใดที่มีการชนะมากกว่า 72 และชื่อของ 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–1925\" AND pct > 0.734",
    "question_en": "How many Ties have Years of 1919–1925, and a Pct larger than 0.734?",
    "question_th": "มีกี่ความสัมพันธ์ที่มีปี 1919–1925 และมีเปอร์เซ็นต์ที่มากกว่า 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–1970\" AND wins < 78",
    "question_en": "Which Pct has Years of 1957–1970, and Wins smaller than 78?",
    "question_th": "เปอร์เซ็นต์ใดที่มีปี 1957–1970 และชนะน้อยกว่า 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_en": "Which Wins have Years of 1881, and a Pct larger than 0.75?",
    "question_th": "ชัยชนะใดที่มีปี 1881 และเปอร์เซ็นต์ที่มากกว่า 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_en": "What's the genre of the song recorded in 1929?",
    "question_th": "ประเภทของเพลงที่บันทึกในปี 1929 คืออะไร?",
    "context": "CREATE TABLE table_name_41 (genre VARCHAR, year_recorded VARCHAR)"
  },
  {
    "answer": "SELECT year_inducted FROM table_name_59 WHERE \"label\" = \"label\"",
    "question_en": "What's the year inducted for the label of label?",
    "question_th": "แต่งตั้งให้เป็นฉลากของฉลากปีใด",
    "context": "CREATE TABLE table_name_59 (year_inducted VARCHAR)"
  },
  {
    "answer": "SELECT genre FROM table_name_26 WHERE year_recorded = \"1929\"",
    "question_en": "What genre is the song recorded in 1929?",
    "question_th": "เพลงประเภทใดที่บันทึกในปี 1929?",
    "context": "CREATE TABLE table_name_26 (genre VARCHAR, year_recorded VARCHAR)"
  },
  {
    "answer": "SELECT genre FROM table_name_56 WHERE year_recorded = \"1926\"",
    "question_en": "What genre is the song recorded in 1926?",
    "question_th": "เพลงประเภทใดที่บันทึกในปี 1926?",
    "context": "CREATE TABLE table_name_56 (genre VARCHAR, year_recorded VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_name_23 WHERE residence = \"san diego\"",
    "question_en": "Which Party has a Residence of san diego?",
    "question_th": "พรรคใดมีถิ่นที่อยู่ของซานดิเอโก?",
    "context": "CREATE TABLE table_name_23 (party VARCHAR, residence VARCHAR)"
  },
  {
    "answer": "SELECT years_in_senate FROM table_name_23 WHERE years_in_assembly = \"2010–present\" AND name = \"toni atkins\"",
    "question_en": "Which Years in Senate  has a Years in Assembly of 2010–present, and toni atkins?",
    "question_th": "ปีใดในวุฒิสภาที่มีปีในการประชุมสภาปี 2553-ปัจจุบัน และโทนี่ แอตกินส์?",
    "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 = \"—\" AND years_in_assembly = \"2012–present\"",
    "question_en": "Which Party has Years in Senate of —, and  Years in Assembly of 2012–present?",
    "question_th": "ฝ่ายใดมีปีในวุฒิสภา — และปีในสภาปี 2012–ปัจจุบัน",
    "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_en": "Show the Residence whose Name is rich gordon?",
    "question_th": "แสดงที่อยู่อาศัยที่มีชื่อริชกอร์ดอน?",
    "context": "CREATE TABLE table_name_60 (residence VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT years_in_assembly FROM table_name_27 WHERE name = \"toni atkins\"",
    "question_en": "Which Years in Assembly has a Name of toni atkins?",
    "question_th": "ปีใดในสภามีชื่อของโทนี แอตกินส์",
    "context": "CREATE TABLE table_name_27 (years_in_assembly VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_name_77 WHERE years_in_assembly = \"2008–present\" AND name = \"tom ammiano\"",
    "question_en": "Which Party has Years in Assembly of 2008–present, and a Name of tom ammiano?",
    "question_th": "พรรคใดมีปีในการประชุมสภาปี 2551-ปัจจุบัน และชื่อของทอม แอมมิอาโน",
    "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_en": "In what year(s) did Raymond Floyd have a total of less than 291 and a To par of +10?",
    "question_th": "เรย์มอนด์ ฟลอยด์มีคะแนนรวมน้อยกว่า 291 และพาร์ถึง +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_en": "What was Jeff Sluman's To par when his total was smaller than 284?",
    "question_th": "To par ของ Jeff Sluman เป็นเท่าใดเมื่อผลรวมของเขาน้อยกว่า 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_en": "What was the finish for Lanny Wadkins of the United States?",
    "question_th": "การจบสกอร์ของ Lanny Wadkins จากสหรัฐอเมริกาเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_83 (finish VARCHAR, country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_55 WHERE to_par = \"+11\"",
    "question_en": "Which player had a To par of +11?",
    "question_th": "ผู้เล่นคนไหนมีพาร์ถึง +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_en": "From which country was the player whose year(s) won was 1983?",
    "question_th": "ผู้เล่นที่ชนะในปี 1983 จากประเทศใดคือ?",
    "context": "CREATE TABLE table_name_9 (country VARCHAR, year_s__won VARCHAR)"
  },
  {
    "answer": "SELECT total FROM table_name_70 WHERE finish = \"t66\"",
    "question_en": "What is the total for the player whose finish was t66?",
    "question_th": "ยอดรวมของผู้เล่นที่เข้าเส้นชัยเป็น t66 เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_70 (total VARCHAR, finish VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_7 WHERE delivered = \"1857-59\"",
    "question_en": "What is the type of the locomotive which was delivered in 1857-59?",
    "question_th": "หัวรถจักรที่ส่งมอบในปี พ.ศ. 2400-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_en": "What is the lowest quantity of the 1b n2 type, which was retired in 1907-12?",
    "question_th": "ปริมาณต่ำสุดของประเภท 1b n2 ซึ่งเลิกใช้ในปี 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_en": "What district is Jim Moran the incumbent for.",
    "question_th": "จิม มอแรน ดำรงตำแหน่งในเขตใด",
    "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_en": "What was the election result before 2004 where Eric Cantor was the incumbent?",
    "question_th": "ผลการเลือกตั้งก่อนปี 2547 โดยเอริค คันเทอร์ ดำรงตำแหน่งเป็นอย่างไรบ้าง?",
    "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_en": "What is the common English for the Italian word san gallo?",
    "question_th": "ภาษาอังกฤษทั่วไปสำหรับคำภาษาอิตาลีว่า 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_en": "What is the italian word for Glarus?",
    "question_th": "กลารัสเป็นภาษาอิตาลีว่าอะไร?",
    "context": "CREATE TABLE table_name_44 (italian VARCHAR, common_english VARCHAR)"
  },
  {
    "answer": "SELECT common_english FROM table_name_81 WHERE abbr = \"ai\"",
    "question_en": "What is the common english word with the abbr of ai?",
    "question_th": "คำภาษาอังกฤษทั่วไปที่มีตัวย่อของ ai คืออะไร?",
    "context": "CREATE TABLE table_name_81 (common_english VARCHAR, abbr VARCHAR)"
  },
  {
    "answer": "SELECT abbr FROM table_name_65 WHERE italian = \"argovia\"",
    "question_en": "What is the abbr of argovia?",
    "question_th": "อาร์โกเวีย มีอักษรย่อว่าอะไร?",
    "context": "CREATE TABLE table_name_65 (abbr VARCHAR, italian VARCHAR)"
  },
  {
    "answer": "SELECT french FROM table_name_72 WHERE common_english = \"fribourg\"",
    "question_en": "What is the french word for fribourg?",
    "question_th": "ฟรีบูร์กมีคำภาษาฝรั่งเศสว่าอะไร",
    "context": "CREATE TABLE table_name_72 (french VARCHAR, common_english VARCHAR)"
  },
  {
    "answer": "SELECT abbr FROM table_name_75 WHERE common_english = \"zug\"",
    "question_en": "What is the abbr for zug?",
    "question_th": "อักษรย่อของ 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_en": "What is the Finish on June 1, 2008?",
    "question_th": "การสิ้นสุดในวันที่ 1 มิถุนายน 2551 คืออะไร?",
    "context": "CREATE TABLE table_name_61 (finish VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT track FROM table_name_56 WHERE location = \"louisville, kentucky\"",
    "question_en": "What is the Track in Louisville, Kentucky?",
    "question_th": "เส้นทางใน 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_en": "What is the Location of the Event on March 30, 2008?",
    "question_th": "สถานที่จัดงานวันที่ 30 มีนาคม 2551 คือที่ไหน?",
    "context": "CREATE TABLE table_name_73 (location VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT race FROM table_name_43 WHERE purse = \"$300,000\"",
    "question_en": "What Race has a Purse of $300,000?",
    "question_th": "เผ่าพันธุ์ใดมีเงิน 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_en": "What is the Purse on January 3, 2010?",
    "question_th": "กระเป๋าเงินในวันที่ 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_en": "What did United States place when the score was 71-70-72-68=281?",
    "question_th": "สหรัฐอเมริกาได้อันดับที่เท่าไหร่เมื่อคะแนนอยู่ที่ 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_en": "What was the average money for United States when Lanny Wadkins played?",
    "question_th": "จำนวนเงินเฉลี่ยสำหรับสหรัฐอเมริกาเมื่อ Lanny Wadkins เล่นคือเท่าไร?",
    "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_en": "What was the to par when the score was 71-70-72-68=281?",
    "question_th": "เมื่อสกอร์เป็น 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_en": "What is the away team of the game with an attendance of 117?",
    "question_th": "ทีมเยือนของทีมใดที่มีผู้ชม 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_en": "Madrid (Stuttgart) tournament with a 1996 of A has this for a Career SR?",
    "question_th": "ทัวร์นาเมนต์ที่มาดริด (สตุ๊ตการ์ท) กับ A ปี 1996 มีสิ่งนี้สำหรับ 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_en": "Which election has a conservative first party, Rowland Smith as first member, and Sir Henry Wilmot, Bt as second member?",
    "question_th": "การเลือกตั้งใดมีพรรคอนุรักษ์นิยมที่หนึ่ง โดยมี Rowland Smith เป็นสมาชิกคนแรก และ Sir Henry Wilmot สมาชิกคนที่สอง",
    "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_en": "Which of the first parties has second member as  Charles Robert Colvile, and a liberal second party?",
    "question_th": "พรรคใดในฝ่ายแรกมีสมาชิกคนที่สองคือ Charles Robert Colvile และพรรคที่สองที่มีแนวคิดเสรีนิยม",
    "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_en": "Which election has second member Charles Robert Colvile, a conservative first party, and first member William Mundy?",
    "question_th": "การเลือกตั้งใดมีสมาชิกคนที่สอง Charles Robert Colvile พรรคอนุรักษ์นิยมที่หนึ่ง และสมาชิกคนแรก 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_en": "Which of the second parties has second member Charles Robert Colvile, a conservative first party, and first member William Mundy?",
    "question_th": "พรรคที่สองคนใดมีสมาชิกคนที่สอง Charles Robert Colvile ซึ่งเป็นพรรคที่หนึ่งสายอนุรักษ์นิยม และสมาชิกคนแรก 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_en": "Who is the first member in the 1868 election?",
    "question_th": "ใครคือสมาชิกคนแรกในการเลือกตั้ง พ.ศ. 2411?",
    "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_en": "WHAT IS THE SOURCE WITH A TYPE OF TRANSFER AND MEX?",
    "question_th": "แหล่งที่มาของประเภทการโอนและ 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_en": "WHAT IS THE NAME WITH BAYER LEVERKUSEN?",
    "question_th": "ไบเออร์ เลเวอร์คูเซ่น ชื่ออะไร?",
    "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_en": "WHAT NAME HAS A FREE TRANSFER FREE AND RETIRED?",
    "question_th": "ชื่ออะไรที่มีการโอนฟรีและเลิกใช้แล้ว?",
    "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_en": "WHAT TRANSFER FEE HAS A TYPE OF TRANSFER FOR DOS SANTOS?",
    "question_th": "ค่าธรรมเนียมการโอนมีประเภทการโอนสำหรับ 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_en": "What is the sum of the all around with a 37.75 total?",
    "question_th": "ผลรวมของทั้งหมดรอบตัวกับผลรวม 37.75 เป็นเท่าไหร่?",
    "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_en": "What is the average final with an all around larger than 19.4 and total more than 39.9?",
    "question_th": "ค่าเฉลี่ยสุดท้ายโดยรวมมากกว่า 19.4 และรวมมากกว่า 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_en": "What is the name of the storm active during season aggregates?",
    "question_th": "พายุที่เกิดขึ้นระหว่างการรวมฤดูกาลมีชื่อว่าอะไร?",
    "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_en": "What report has tour match as the status, with an against less than 22?",
    "question_th": "รายงานใดที่มีสถานะการแข่งขันทัวร์นาเมนต์โดยมีคะแนนต่อน้อยกว่า 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_en": "How many againsts have asba park, kimberley as the venue?",
    "question_th": "สนามแข่งแอสบาพาร์ค, คิมเบอร์ลีย์มีผู้แพ้กี่คน?",
    "context": "CREATE TABLE table_name_66 (against INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_2 WHERE opposing_team = \"gauteng falcons\"",
    "question_en": "What status has gauteng falcons as the opposing team?",
    "question_th": "เหยี่ยวกัวเต็งเป็นทีมตรงข้ามมีสถานะอะไร?",
    "context": "CREATE TABLE table_name_2 (status VARCHAR, opposing_team VARCHAR)"
  },
  {
    "answer": "SELECT opposing_team FROM table_name_12 WHERE status = \"second test\"",
    "question_en": "What opposing team has second test as the status?",
    "question_th": "ทีมตรงข้ามทีมใดมีการทดสอบครั้งที่สองเป็นสถานะ?",
    "context": "CREATE TABLE table_name_12 (opposing_team VARCHAR, status VARCHAR)"
  },
  {
    "answer": "SELECT report FROM table_name_81 WHERE opposing_team = \"gauteng falcons\"",
    "question_en": "What report has gauteng falcons as the opposing team?",
    "question_th": "รายงานอะไรมีเหยี่ยวกัวเต็งเป็นทีมตรงข้าม?",
    "context": "CREATE TABLE table_name_81 (report VARCHAR, opposing_team VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_34 WHERE against = 18",
    "question_en": "What status has 18 as the against?",
    "question_th": "สถานะอะไรที่มี 18 เป็นตัวต่อต้าน?",
    "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_en": "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?",
    "question_th": "จำนวนการรับต่อการมาถึงในปี 2010 (col 2)/(col 1) USD เป็นเท่าใด โดยมีโคลอมเบีย (1) เป็นประเทศแคริบเบียนและละตินอเมริกาที่เลือกเป็นจำนวนเท่าใด",
    "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 /ɵ/\"",
    "question_en": "What is 17th c., when Initial-Syllable Open/Semi-Open Unstressed Vowels is \"o /ɵ/\"?",
    "question_th": "ศตวรรษที่ 17 คืออะไร เมื่อสระเสียงสระไม่เน้นเสียงเปิด/กึ่งเปิดของพยางค์เริ่มต้นคือ \"o /ɵ/\"",
    "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_en": "What is British, when Examples is \"November, rotunda, colossus, proscenium\"?",
    "question_th": "บริติชคืออะไรเมื่อตัวอย่างคือ \"พฤศจิกายน, หอก, ยักษ์ใหญ่, proscenium\"?",
    "context": "CREATE TABLE table_name_12 (british VARCHAR, examples VARCHAR)"
  },
  {
    "answer": "SELECT american FROM table_name_23 WHERE british = \"ɪ, ə\" AND initial_syllable_open_semi_open_unstressed_vowels = \"æ /ɨ/\"",
    "question_en": "What is American, when British is \"ɪ, ə\", and when Initial-Syllable Open/Semi-Open Unstressed Vowels is \"æ /ɨ/\"?",
    "question_th": "อะไรคือคำว่าอเมริกัน เมื่อภาษาอังกฤษคือ \"ə, ə\" และเมื่อสระเสียงหนักเปิด/กึ่งเปิดของพยางค์เริ่มต้นคือ \"æ /ɨ/\"",
    "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 = \"ə\"",
    "question_en": "What is Initial-Syllable Open/Semi-Open Unstresses Vowels, when Australian is \"ə\"?",
    "question_th": "สระเสียงหนักเสียงสระเปิด/กึ่งเปิดพยางค์เริ่มต้นคืออะไร เมื่อภาษาออสเตรเลียคือ \"ə\"",
    "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ɪ, ɪ, ə\"",
    "question_en": "What is Australian, when British is \"aɪ, ɪ, ə\"?",
    "question_th": "ภาษาออสเตรเลียคืออะไร เมื่อภาษาอังกฤษคือ \"aə, ə, ə\"",
    "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ɪ, ɨ/\"",
    "question_en": "What is American, when Initial-Syllable Open/Semi-Open Unstressed Vowels is \"y /aɪ, ɨ/\"?",
    "question_th": "ภาษาอเมริกันคืออะไร เมื่อสระไม่หนักเสียงพยางค์เริ่มต้นเปิด/กึ่งเปิดคือ \"y /aɪ, ɨ/\"",
    "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_en": "What is the date for catalog RCD 10160?",
    "question_th": "วันที่สำหรับแคตตาล็อก 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_en": "What country has CD format and catalog RCD 10523?",
    "question_th": "ประเทศใดมีรูปแบบซีดีและแคตตาล็อก 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_en": "Which country is dated October 20, 1976?",
    "question_th": "ประเทศใดคือวันที่ 20 ตุลาคม 2519",
    "context": "CREATE TABLE table_name_83 (country VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_65 WHERE catalog = \"cdzap22\"",
    "question_en": "Which label has the catalog CDZAP22?",
    "question_th": "ป้ายใดมีแคตตาล็อก 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_en": "What is the date for the catalog CDZAP22 in the United Kingdom?",
    "question_th": "วันที่สำหรับแค็ตตาล็อก CDZAP22 ในสหราชอาณาจักรคือเมื่อใด",
    "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_en": "What is Place, when Score is \"66\", when Country is \"United States\", and when Player is \"Dudley Hart\"?",
    "question_th": "สถานที่คืออะไร เมื่อคะแนนคือ \"66\" เมื่อประเทศคือ \"สหรัฐอเมริกา\" และเมื่อผู้เล่นคือ \"ดัดลีย์ ฮาร์ต\"",
    "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_en": "What is the lowest Score, when Place is \"1\"?",
    "question_th": "คะแนนต่ำสุดคือเท่าไร เมื่ออันดับคือ \"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_en": "What is To Par, when Score is \"66\", and when Player is \"Brad Faxon\"?",
    "question_th": "To Par คืออะไร เมื่อสกอร์คือ \"66\" และเมื่อผู้เล่นคือ \"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_en": "What is the Opponent in the final after 2008 at the Paul Hunter Classic?",
    "question_th": "คู่ต่อสู้ในรอบชิงชนะเลิศหลังปี 2008 ที่ 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_en": "What is the latest year for first elected with john hostettler as incumbent and a result of lost re-election democratic gain?",
    "question_th": "ปีล่าสุดคือปีใดที่ได้รับเลือกครั้งแรกโดยมีจอห์น โฮสเต็ตเลอร์ ดำรงตำแหน่ง และเป็นผลจากการแพ้การเลือกตั้งใหม่ตามระบอบประชาธิปไตย",
    "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_en": "Who is the owner/operator of the line from Kambalda to Esperance?",
    "question_th": "ใครคือเจ้าของ/ผู้ดำเนินการสายจาก Kambalda ถึง 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_en": "What is the name of the line from Karratha to Port Hedland?",
    "question_th": "ชื่อของเส้นทางจากคาร์ราธาไปพอร์ตเฮดแลนด์คืออะไร?",
    "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_en": "What is the maximum diameter of the Mid West Gas Pipeline (1999)?",
    "question_th": "ท่อส่งก๊าซมิดเวสต์ (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_en": "Who is the owner operator who has license number PL 59?",
    "question_th": "ใครคือผู้ประกอบการเจ้าของที่มีใบอนุญาตหมายเลข 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_en": "What is the license number where the maximum diameter is 400 mm?",
    "question_th": "หมายเลขใบอนุญาตที่มีเส้นผ่านศูนย์กลางสูงสุดคือ 400 มม. คืออะไร",
    "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_en": "What is the name where the license number is PL 22?",
    "question_th": "ชื่ออะไรที่มีหมายเลขใบอนุญาต 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_en": "Which venue has 16 against?",
    "question_th": "สถานที่ใดมี 16 ต่อ?",
    "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_en": "What is the against for the opposing team of Wales with the status of Five Nations?",
    "question_th": "การต่อต้านของทีมตรงข้ามจากเวลส์ที่มีสถานะ 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_en": "Can you tell me the average Average that has the Rank larger than 4, and the Player of dean minors?",
    "question_th": "คุณช่วยบอกค่าเฉลี่ยเฉลี่ยที่มีอันดับมากกว่า 4 และผู้เล่นของคณบดีผู้เยาว์ได้ไหม?",
    "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_en": "What is the venue where john zibnack was the runner-up?",
    "question_th": "สนามไหนที่ จอห์น ซิบแนค เป็นรองแชมป์?",
    "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_en": "Who is the winner in des moines, iowa where p.h. finkbank was the runner-up?",
    "question_th": "ใครคือผู้ชนะในดิมอยน์ รัฐไอโอวา โดยที่ ph finkbank เป็นรองแชมป์?",
    "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_en": "What is the location where ed c. kingsley was the runner-up in 1939?",
    "question_th": "ที่ตั้งของ ed c. คืออะไร? คิงสลีย์เป็นรองแชมป์ในปี 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_en": "Who is the winner when mark fuller was the runner-up?",
    "question_th": "ใครคือผู้ชนะเมื่อมาร์ค ฟูลเลอร์เป็นรองแชมป์?",
    "context": "CREATE TABLE table_name_81 (winner VARCHAR, runner_up VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_86 WHERE year = \"2002\"",
    "question_en": "What is the venue in 2002?",
    "question_th": "สถานที่จัดงานในปี 2545 คืออะไร?",
    "context": "CREATE TABLE table_name_86 (venue VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT runner_up FROM table_name_78 WHERE year = \"1901\"",
    "question_en": "Who is the runner-up in 1901?",
    "question_th": "ใครคือรองชนะเลิศในปี 1901?",
    "context": "CREATE TABLE table_name_78 (runner_up VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT australian FROM table_name_81 WHERE short_vowels = \"e /ɛ/\"",
    "question_en": "What Australian sound is equivalent to e /ɛ/?",
    "question_th": "เสียงภาษาออสเตรเลียใดเทียบเท่ากับ e /ɛ/?",
    "context": "CREATE TABLE table_name_81 (australian VARCHAR, short_vowels VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_99 WHERE home = \"new york islanders\"",
    "question_en": "What was the score of the game when they played at new york islanders?",
    "question_th": "ตอนที่พวกเขาเล่นให้กับชาวเกาะนิวยอร์กได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_99 (score VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT r_epp FROM table_name_90 WHERE j_thiessen = \"tjoatj\"",
    "question_en": "Which of the R. Epp, has J Thiessen of Tjoatj?",
    "question_th": "R.Epp คนไหนมี J Thiessen จาก 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_en": "Which of the R. Epp, has Ed Zacharias from Rollen, Jerolt, Golt?",
    "question_th": "R. Epp คนไหนที่มี Ed Zacharias จาก 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_en": "Which of the A. Dyck has J. Thiessen of Du?",
    "question_th": "A. Dyck คนไหนมี J. Thiessen จาก 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_en": "Which of the H. Rempel has J. J. Neufeld of Sajen?",
    "question_th": "H. Rempel คนไหนมี JJ Neufeld แห่ง 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_en": "What is the sum of Against, when Status is \"Six Nations\", and when Date is \"30/03/2003\"?",
    "question_th": "ผลรวมของ Against เมื่อสถานะเป็น \"Six Nations\" และเมื่อวันที่คือ \"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_en": "What is Opposing Teams, when Against is less than 6?",
    "question_th": "ทีมตรงข้ามคืออะไร เมื่อต่อต้านน้อยกว่า 6?",
    "context": "CREATE TABLE table_name_86 (opposing_teams VARCHAR, against INTEGER)"
  },
  {
    "answer": "SELECT date FROM table_name_87 WHERE against = 22",
    "question_en": "What is Date, when Against is \"22\"?",
    "question_th": "วันที่คืออะไร เมื่อต่อต้านคือ \"22\"",
    "context": "CREATE TABLE table_name_87 (date VARCHAR, against VARCHAR)"
  },
  {
    "answer": "SELECT MAX(money___) AS £__ FROM table_name_44 WHERE country = \"south africa\"",
    "question_en": "What shows for money (£) when South Africa is the country?",
    "question_th": "อะไรแสดงให้เห็นเงิน (ปอนด์) เมื่อแอฟริกาใต้เป็นประเทศ?",
    "context": "CREATE TABLE table_name_44 (money___ INTEGER, country VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_66 WHERE player = \"lanny wadkins\"",
    "question_en": "What is the To par when Lanny Wadkins is the player?",
    "question_th": "อะไรคือค่าพาร์เมื่อ Lanny Wadkins เป็นผู้เล่น?",
    "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_en": "What was the score of the marco island tournament match when Kathleen Horvath won runner-up?",
    "question_th": "แมตช์การแข่งขันมาร์โก ไอส์แลนด์ ที่แคธลีน ฮอร์วาธ คว้ารองแชมป์ได้คะแนนเท่าไหร่?",
    "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_en": "What was the tournament that was on july 6, 1987?",
    "question_th": "การแข่งขันในวันที่ 6 กรกฎาคม พ.ศ. 2530 คืออะไร?",
    "context": "CREATE TABLE table_name_55 (tournament VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_94 WHERE pick = 246",
    "question_en": "What is pick 246's position?",
    "question_th": "ตำแหน่งของ Pick 246 คืออะไร?",
    "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_en": "Which Pick has a Player of chuck bryant, and an NFL Club of san diego chargers?",
    "question_th": "นักเตะคนไหนที่มีผู้เล่นของชัค ไบรอันท์ และทีม NFL Club ของทีมซานดิเอโก?",
    "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_en": "What is the position of the pittsburgh steelers?",
    "question_th": "พิตต์สเบิร์ก สตีลเลอร์ส อยู่ตำแหน่งไหน?",
    "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_en": "Which NFL Club has a Player of sam tidmore, and a Pick of 81?",
    "question_th": "NFL Club ใดที่มีผู้เล่นของ sam tidmore และเลือกจาก 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_en": "Which club had round of group stage round 1 and 5?",
    "question_th": "สโมสรใดมีรอบแบ่งกลุ่มรอบ 1 และ 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_en": "What is the aggregate for the first round for K.S.V. Waregem?",
    "question_th": "ผลรวมสำหรับรอบแรกของ KSV 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_en": "What is the away where the round is the second round?",
    "question_th": "เยือนอะไรรอบสองเป็นรอบไหน?",
    "context": "CREATE TABLE table_name_40 (away VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT broadcast_date FROM table_name_60 WHERE run_time = \"24:44\"",
    "question_en": "What was the broadcaste date for the episode with a run time of 24:44?",
    "question_th": "ออกอากาศวันที่เท่าไร เวลา 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_en": "Which Episode had 9.1 million viewers?",
    "question_th": "ตอนไหนมีผู้ชม 9.1 ล้านคน?",
    "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_en": "What is Country, when Previous Team (League) is \"Kingston Frontenacs ( OHL )\", and when Player is \"Anthony Stewart Category:Articles with hCards\"?",
    "question_th": "ประเทศคืออะไร เมื่อทีมก่อนหน้า (ลีก) คือ \"Kingston Frontenacs ( OHL )\" และเมื่อผู้เล่นคือ \"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_en": "What is Player, when Pick is \"3\", when Position is \"Defense\", and when Year is less than 2010?",
    "question_th": "ผู้เล่นคืออะไร เมื่อเลือกเป็น \"3\" เมื่อตำแหน่งเป็น \"ฝ่ายรับ\" และเมื่อปีน้อยกว่า 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_en": "What is Position, when Year is less than 2000, and when Player is \"Radek Dvorak Category:Articles with hCards\"?",
    "question_th": "ตำแหน่งคืออะไร เมื่อปีน้อยกว่า 2000 และเมื่อผู้เล่นเป็น \"Radek Dvorak หมวดหมู่:บทความที่มี 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_en": "What is Player, when Previous Team (League) is \"Medicine Hat Tigers ( WHL )\", and when Year is less than 2002?",
    "question_th": "ผู้เล่นคืออะไร เมื่อทีมก่อนหน้า (ลีก) คือ \"Medicine Hat Tigers ( WHL )\" และเมื่อใดคือปีน้อยกว่า 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_en": "What is Country, when Year is \"1994\"?",
    "question_th": "ประเทศคืออะไร เมื่อถึงปี \"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_en": "What episode has 7.8 million viewers?",
    "question_th": "ตอนไหนมีผู้ชม 7.8 ล้านคน?",
    "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_en": "What episode has a run time of 25:12?",
    "question_th": "ตอนไหนมีเรื่อง 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_en": "What is the broadcast date with 7.0 million viewers?",
    "question_th": "มีผู้ชม 7.0 ล้านคนออกอากาศวันไหน?",
    "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_en": "What is the average total for Dave Stockton?",
    "question_th": "ยอดรวมเฉลี่ยของ 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_en": "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?",
    "question_th": "ผลรวมของพาร์สำหรับสหรัฐอเมริกาในปีที่ชนะปี 1967 และมีคะแนนรวมมากกว่า 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_en": "What is the score for the game in which Arsenal was the away team?",
    "question_th": "เกมที่อาร์เซนอลเป็นทีมเยือนได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_42 (score VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_13 WHERE tie_no = \"15\"",
    "question_en": "What is the score for the tie number 15?",
    "question_th": "คะแนนเสมอกันหมายเลข 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_en": "What Outgoing manager left at his end of tenure as caretaker and was Replaced by Jesper Hansen?",
    "question_th": "ผู้จัดการทีมคนใดที่เหลืออยู่เมื่อหมดวาระในตำแหน่งผู้ดูแล และถูกแทนที่โดยเจสเปอร์ แฮนเซน?",
    "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_en": "What Team's Pre-Season Manager's manner of departure was the end of tenure as caretaker?",
    "question_th": "ลักษณะการจากไปของผู้จัดการทีมปรีซีซั่นของทีมใดคือการสิ้นสุดตำแหน่งผู้ดูแล?",
    "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_en": "What place is Fredrik Jacobson from?",
    "question_th": "Fredrik Jacobson มาจากที่ไหน?",
    "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_en": "What is the to par of Tiger Woods, where his score was less than 67, and he was in t1 place?",
    "question_th": "ไทเกอร์ วูดส์ มีแต้มเสมอกันเท่าไร โดยที่คะแนนของเขาน้อยกว่า 67 และเขาอยู่อันดับที่ 1?",
    "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_en": "What place is player Brad Faxon from?",
    "question_th": "แบรด แฟกซ์สัน นักเตะจากที่ไหน?",
    "context": "CREATE TABLE table_name_33 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MIN(score) FROM table_name_90 WHERE country = \"sweden\"",
    "question_en": "What is Sweden's lowest score?",
    "question_th": "คะแนนต่ำสุดของสวีเดนคืออะไร?",
    "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_en": "Which Sub-Parish (Sogn) was built after 1894 in the Parish (Prestegjeld) of jostedal parish?",
    "question_th": "เขตตำบลย่อย (Sogn) แห่งใดที่ถูกสร้างขึ้นหลังปี พ.ศ. 2437 ในเขตตำบล (Prestegjeld) ของตำบล jostedal",
    "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_en": "Which Sub-Parish (Sogn) is in the Parish (Prestegjeld) of hafslo parish and has a church called Hafslo Kyrkje?",
    "question_th": "เขตตำบลย่อย (Sogn) แห่งใดอยู่ในเขตตำบล (Prestegjeld) ของตำบล hafslo และมีโบสถ์ชื่อ 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_en": "Which Sub-Parish (Sogn) is in the Parish (Prestegjeld) of hafslo parish and is located in the Church of Urnes?",
    "question_th": "เขตตำบลย่อย (Sogn) แห่งใดอยู่ในเขตตำบล (Prestegjeld) ของตำบล hafslo และตั้งอยู่ในโบสถ์ 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_en": "Which Sub-Parish (Sogn) was built before 1883 in the Parish (Prestegjeld) of jostedal parish and is located in the Church of Gaupne?",
    "question_th": "เขตตำบลย่อย (Sogn) แห่งใดที่ถูกสร้างขึ้นก่อนปี 1883 ในตำบล (Prestegjeld) ของตำบล jostedal และตั้งอยู่ในโบสถ์ 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_en": "Which Sub-Parish (Sogn) has a church named Jostedal Kyrkje?",
    "question_th": "เขตตำบลใด (Sogn) มีโบสถ์ชื่อ 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_en": "What's the national title of miss international ikumi yoshimatsu?",
    "question_th": "อิคุมิ โยชิมัตสึ มิสอินเตอร์เนชันแนล ได้ตำแหน่งอะไร",
    "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_en": "What's the earliest year the philippines won?",
    "question_th": "ฟิลิปปินส์ชนะปีแรกสุดคือปีใด?",
    "context": "CREATE TABLE table_name_6 (year INTEGER, country_territory VARCHAR)"
  },
  {
    "answer": "SELECT AVG(year) FROM table_name_51 WHERE country_territory = \"lebanon\"",
    "question_en": "What's the average year lebanon won?",
    "question_th": "ปีเฉลี่ยที่เลบานอนชนะคือเท่าไร?",
    "context": "CREATE TABLE table_name_51 (year INTEGER, country_territory VARCHAR)"
  },
  {
    "answer": "SELECT country_territory FROM table_name_33 WHERE miss_international = \"małgorzata rożniecka\"",
    "question_en": "What country or territory is małgorzata rożniecka from?",
    "question_th": "małgorzata rożniecka มาจากประเทศหรือดินแดนใด?",
    "context": "CREATE TABLE table_name_33 (country_territory VARCHAR, miss_international VARCHAR)"
  },
  {
    "answer": "SELECT teams FROM table_name_84 WHERE league = \"regionalliga süd\"",
    "question_en": "Which team had a league of regionalliga süd?",
    "question_th": "ทีมใดได้เล่นลีกระดับภูมิภาค ซูด?",
    "context": "CREATE TABLE table_name_84 (teams VARCHAR, league VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_79 WHERE season = \"1949-50\"",
    "question_en": "What was the home for season 1949-50?",
    "question_th": "ฤดูกาล 1949-50 อยู่บ้านอะไร?",
    "context": "CREATE TABLE table_name_79 (home VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_2 WHERE home = \"2-3\"",
    "question_en": "Which season had a home 2-3?",
    "question_th": "ฤดูกาลใดมีบ้าน 2-3?",
    "context": "CREATE TABLE table_name_2 (season VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT teams FROM table_name_80 WHERE season = \"1954-55\"",
    "question_en": "Which team had a season 1954-55?",
    "question_th": "ทีมใดมีฤดูกาล 1954-55?",
    "context": "CREATE TABLE table_name_80 (teams VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_33 WHERE away = \"2-0\"",
    "question_en": "What season has an away 2-0?",
    "question_th": "ฤดูกาลไหนมีเกมเยือน 2-0?",
    "context": "CREATE TABLE table_name_33 (season VARCHAR, away VARCHAR)"
  },
  {
    "answer": "SELECT teams FROM table_name_75 WHERE home = \"2-3\"",
    "question_en": "What team has a home of 2-3?",
    "question_th": "ทีมใดมีเจ้าบ้าน 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_en": "What is the total that wehn Lithuania is the nation, and Silver is more than 0?",
    "question_th": "จำนวนรวมของประเทศลิทัวเนียเป็นเท่าใด และเงินมีค่ามากกว่า 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_en": "What is the rank when bronze was more than 0, gold more than 1, Nation is japan, and silver less than 0?",
    "question_th": "อันดับที่เท่าไหร่คือเมื่อทองแดงมากกว่า 0 ทองมากกว่า 1 ชาติคือญี่ปุ่น และเงินน้อยกว่า 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_en": "What is the rank when the total is less than 1?",
    "question_th": "อันดับเมื่อยอดรวมน้อยกว่า 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_en": "What is the total when silver is more than 0, and bronze less than 0?",
    "question_th": "ผลรวมเมื่อเงินมากกว่า 0 และทองแดงน้อยกว่า 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_en": "What is the rank that when Serbia is the nation, and gold is larger than 0?",
    "question_th": "ยศอะไรเมื่อเซอร์เบียเป็นชาติและทองมีค่ามากกว่า 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_en": "Which Year(s) won has a To par smaller than 12, and a Player of john daly?",
    "question_th": "ปีไหนที่ชนะจะมีพาร์ต่ำกว่า 12 และมีผู้เล่นของจอห์น ดาลี?",
    "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_en": "Which Player has a To par of 12, and a Country of fiji?",
    "question_th": "ผู้เล่นคนไหนมีพาร์ถึง 12 และมีประเทศฟิจิ?",
    "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_en": "Which Total has a To par larger than 12?",
    "question_th": "ผลรวมใดที่มีพาร์ To มากกว่า 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_en": "How much To par has a Total larger than 149, and a Country of united states, and a Year(s) won of 1997?",
    "question_th": "To par มียอดรวมมากกว่า 149 และประเทศสหรัฐอเมริกาและหนึ่งปีชนะในปี 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_en": "Which Network has a Rank larger than 5, a Show of 2012 summer olympics closing ceremony in london?",
    "question_th": "เครือข่ายใดมีอันดับมากกว่า 5 ซึ่งเป็นพิธีปิดการแข่งขันกีฬาโอลิมปิกฤดูร้อน 2012 ที่ลอนดอน",
    "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_en": "Which Rank has a Network of bbc one, and a Number of Viewers of 30.15million? Question 2",
    "question_th": "อันดับไหนมีเครือข่าย bbc one และจำนวนผู้ชม 30.15 ล้านคน? คำถามที่ 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_en": "When has a Rank larger than 2 and a Network of itv?",
    "question_th": "เมื่อใดจะมีอันดับมากกว่า 2 และมีเครือข่ายของ 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_en": "What is the Term of office for Leonard Reynolds of NSW?",
    "question_th": "ระยะเวลาการดำรงตำแหน่งของ Leonard Reynolds จาก 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_en": "What state shows for Cunningham?",
    "question_th": "รัฐใดแสดงให้เห็นสำหรับคันนิงแฮม?",
    "context": "CREATE TABLE table_name_3 (state VARCHAR, electorate VARCHAR)"
  },
  {
    "answer": "SELECT electorate FROM table_name_16 WHERE term_of_office = \"1955–1972\" AND member = \"peter howson\"",
    "question_en": "What is the Electorate when the term of office was 1955–1972, for Peter Howson?",
    "question_th": "ผู้มีสิทธิเลือกตั้งคืออะไรเมื่อวาระการดำรงตำแหน่งคือปี 1955–1972 สำหรับปีเตอร์ ฮาวสัน",
    "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–1966\" AND state = \"sa\"",
    "question_en": "What party has a term of office of 1951–1966, and a State of sa?",
    "question_th": "พรรคใดมีวาระการดำรงตำแหน่งระหว่างปี 1951–1966 และมีรัฐ 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_en": "What was the Attendance at Jobing.com Arena?",
    "question_th": "ผู้เข้าร่วมที่ Jobing.com Arena เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_48 (attendance VARCHAR, arena VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_75 WHERE loss = \"leneveu (1–0–1)\"",
    "question_en": "What is the Date of the game with a Loss of Leneveu (1–0–1)?",
    "question_th": "วันที่ของเกมที่แพ้เลเนวู (1–0–1) คืออะไร?",
    "context": "CREATE TABLE table_name_75 (date VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_68 WHERE record = \"2–1–1\"",
    "question_en": "What is the Date with a game with a Record of 2–1–1?",
    "question_th": "วันที่กับเกมที่มีสถิติ 2–1–1 คืออะไร?",
    "context": "CREATE TABLE table_name_68 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_30 WHERE arena = \"jobing.com arena\"",
    "question_en": "What is the Score at Jobing.com Arena?",
    "question_th": "คะแนนที่ 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_en": "What is the Opponent of the game on September 26?",
    "question_th": "ฝ่ายตรงข้ามของเกมวันที่ 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_en": "What Label has a Region of united states, and a Format of cassette?",
    "question_th": "ป้ายใดมีภูมิภาคของสหรัฐอเมริกาและมีรูปแบบของเทปคาสเซ็ต",
    "context": "CREATE TABLE table_name_68 (label VARCHAR, region VARCHAR, format VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_25 WHERE label = \"grilled cheese\"",
    "question_en": "What Date has a Label of grilled cheese?",
    "question_th": "วันที่เท่าไหร่มีฉลากชีสย่าง?",
    "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_en": "What Catalog has a Label of geffen records / universal music special markets?",
    "question_th": "แคตตาล็อกใดมีป้ายกำกับของแผ่นเสียงเกฟเฟน / ตลาดพิเศษดนตรีสากล?",
    "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_en": "What Label has a Format of cd, and a Catalog of crgd 86136?",
    "question_th": "ป้ายใดมีรูปแบบเป็น cd และแคตตาล็อกเป็น 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_en": "What Region has a Catalog of crgd 86136?",
    "question_th": "ภูมิภาคใดมีแคตตาล็อก 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_en": "What Label has a Catalog of 486 136-2?",
    "question_th": "ป้ายใดมีแคตตาล็อก 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_en": "Which Opponent has a Result of 0-3?",
    "question_th": "คู่ต่อสู้คนใดมีผล 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_en": "What is the total attendance with a 1-0 result, at Venue H, and Round SF?",
    "question_th": "ผู้เข้าร่วมทั้งหมดด้วยผล 1-0 ที่สถานที่ H และ 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_en": "What is the lowest attendance at Venue H in Round R2?",
    "question_th": "ผู้เข้าร่วมที่ Venue H ต่ำที่สุดในรอบ 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_en": "What is the highest attendance for the opponents Club Brugge in Venue A?",
    "question_th": "คลับบรูซฝ่ายตรงข้ามเข้าชมสนาม 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_en": "What is the round for the opponent CSKA Sofia in Venue A?",
    "question_th": "คู่ต่อสู้ CSKA Sofia ในสนาม A จะเป็นรอบใด?",
    "context": "CREATE TABLE table_name_67 (round VARCHAR, opponent VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_17 WHERE place = \"t10\"",
    "question_en": "What player placed t10?",
    "question_th": "ผู้เล่นคนไหนวาง t10?",
    "context": "CREATE TABLE table_name_17 (player VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT MAX(score) FROM table_name_93 WHERE player = \"bernhard langer\"",
    "question_en": "What was Bernhard Langer's highest score?",
    "question_th": "คะแนนสูงสุดของ Bernhard Langer คืออะไร?",
    "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_en": "What was Craig Stadler's lowest score for United states?",
    "question_th": "คะแนนต่ำสุดของ Craig Stadler ในประเทศสหรัฐอเมริกาคือเท่าไร",
    "context": "CREATE TABLE table_name_35 (score INTEGER, country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT money___£__ FROM table_name_96 WHERE country = \"ireland\"",
    "question_en": "What Money (£) has a Country of ireland?",
    "question_th": "ประเทศไอร์แลนด์มีเงินอะไร (ปอนด์)?",
    "context": "CREATE TABLE table_name_96 (money___£__ VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_2 WHERE place = \"t10\"",
    "question_en": "What Player has a Place of t10?",
    "question_th": "ผู้เล่นคนใดมีตำแหน่ง 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_en": "What To par has a Score of 71-73-71-71=286?",
    "question_th": "พาร์อะไรมีคะแนน 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 = \"–4\"",
    "question_en": "What Place has a To par of –4?",
    "question_th": "สถานที่ใดมีพาร์ถึง –4?",
    "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_en": "What Score has a Place of t8, and a Country of scotland?",
    "question_th": "คะแนนใดมีสถานที่ t8 และประเทศสกอตแลนด์",
    "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_en": "What To par has a Country of united states, and a Score of 67-66-78-77=288?",
    "question_th": "What To par มีประเทศเป็นประเทศสหรัฐอเมริกา และคะแนน 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_en": "What is the average Money ( $ ), when Country is \"United States\", and when To par is \"+3\"?",
    "question_th": "เงินเฉลี่ย ($ ) คือเท่าไร เมื่อประเทศคือ \"สหรัฐอเมริกา\" และเมื่อพาร์คือ \"+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_en": "What is Money ( $ ), when Player is \"Morgan Pressel\"?",
    "question_th": "เงิน ($ ) คืออะไรเมื่อผู้เล่นคือ \"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_en": "What is Place, when Player is \"Mi Hyun Kim\"?",
    "question_th": "สถานที่คืออะไร เมื่อผู้เล่นคือ \"มิฮยอนคิม\"?",
    "context": "CREATE TABLE table_name_94 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT AVG(tonnage) FROM table_name_78 WHERE date = \"30 march 1943\"",
    "question_en": "What was the tonnage on 30 march 1943?",
    "question_th": "น้ำหนักของวันที่ 30 มีนาคม พ.ศ. 2486 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_78 (tonnage INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT fate FROM table_name_44 WHERE date = \"27 june 1942\"",
    "question_en": "What was the fate on 27 june 1942?",
    "question_th": "ชะตากรรมเมื่อวันที่ 27 มิถุนายน พ.ศ. 2485 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_44 (fate VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT tonnage FROM table_name_91 WHERE date = \"12 september 1942\"",
    "question_en": "What was the tonnage on 12 september 1942?",
    "question_th": "น้ำหนักของวันที่ 12 กันยายน พ.ศ. 2485 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_91 (tonnage VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT fate FROM table_name_56 WHERE nationality = \"yugoslavia\"",
    "question_en": "What was Yugoslavia's fate?",
    "question_th": "ชะตากรรมของยูโกสลาเวียคืออะไร?",
    "context": "CREATE TABLE table_name_56 (fate VARCHAR, nationality VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_95 WHERE name = \"ins ranvir\"",
    "question_en": "What is the status of the ship INS Ranvir?",
    "question_th": "สถานะของเรือ INS Ranvir คืออะไร?",
    "context": "CREATE TABLE table_name_95 (status VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT builder FROM table_name_69 WHERE name = \"ins rana\"",
    "question_en": "Who was the builder of the ship INS Rana?",
    "question_th": "ใครคือผู้สร้างเรือ 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_en": "What year shows 248 (sf: 217) points?",
    "question_th": "ปีไหนแสดง 248 (sf: 217) คะแนน?",
    "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_en": "What is the place later than 2007, with 141 (sf:83) points?",
    "question_th": "สถานที่ใดหลังจากปี 2550 โดยมี 141 (sf:83) คะแนน",
    "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_en": "What artist shows 2007 and composer of Hayko?",
    "question_th": "ศิลปินคนไหนแสดงในปี 2550 และผู้แต่ง 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_en": "What place is Corey Pavin in?",
    "question_th": "Corey Pavin อยู่ที่ไหน?",
    "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_en": "How many Points have an Average smaller than 1, a Played larger than 38, and a Team of gimnasia de la plata?",
    "question_th": "มีกี่คะแนนที่มีค่าเฉลี่ยน้อยกว่า 1, เล่นได้มากกว่า 38 และมีทีม 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_en": "Which Atomic property has Helium of 4.16?",
    "question_th": "สมบัติอะตอมใดมีฮีเลียมเท่ากับ 4.16",
    "context": "CREATE TABLE table_name_57 (atomic_property VARCHAR, helium VARCHAR)"
  },
  {
    "answer": "SELECT krypton FROM table_name_4 WHERE neon = \"10\"",
    "question_en": "Which Krypton has Neon of 10?",
    "question_th": "คริปทอนใดมีนีออนถึง 10",
    "context": "CREATE TABLE table_name_4 (krypton VARCHAR, neon VARCHAR)"
  },
  {
    "answer": "SELECT radon FROM table_name_62 WHERE neon = \"4.79\"",
    "question_en": "Which Radon has Neon of 4.79?",
    "question_th": "เรดอนใดมีนีออนเท่ากับ 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_en": "Which Neon has Atomic property of average valence electron energy (avee)?",
    "question_th": "นีออนในข้อใดมีคุณสมบัติอะตอมของพลังงานเวเลนซ์อิเล็กตรอนเฉลี่ย (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_en": "Which Radon has Atomic property of outer shell electron configuration?",
    "question_th": "เรดอนในข้อใดมีคุณสมบัติอะตอมมิกของการจัดเรียงอิเล็กตรอนของเปลือกนอก",
    "context": "CREATE TABLE table_name_65 (radon VARCHAR, atomic_property VARCHAR)"
  },
  {
    "answer": "SELECT xenon FROM table_name_25 WHERE neon = \"20.1797(6)\"",
    "question_en": "Which Xenon has Neon of 20.1797(6)?",
    "question_th": "ซีนอนใดที่มีนีออนเท่ากับ 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_en": "What is the highest attendance of the game with eastwood town as the away team?",
    "question_th": "เกมนี้จะมีผู้เข้าชมมากที่สุดโดยอีสต์วู้ดทาวน์เป็นทีมเยือน?",
    "context": "CREATE TABLE table_name_46 (attendance INTEGER, away_team VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_4 WHERE player = \"scott mccarron\"",
    "question_en": "What place is Scott McCarron in?",
    "question_th": "Scott McCarron อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_4 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT weight FROM table_name_59 WHERE name = \"alexandr elke\"",
    "question_en": "What is Alexandr Elke's Weight?",
    "question_th": "น้ำหนักของ Alexandr Elke คืออะไร?",
    "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_en": "What is the Name of the D Player from the Dinamo Moscow Club?",
    "question_th": "ชื่อของผู้เล่น D จากสโมสร Dinamo Moscow คืออะไร?",
    "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_en": "What is the Date of Birth of the Player from the CSK VMF Moscow Club?",
    "question_th": "วันเกิดของผู้เล่นจาก 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_en": "What is the Weight of the Player from DSHNK Almaty Club with a Height of m (ft 6in)?",
    "question_th": "น้ำหนักของผู้เล่นจาก DSHNK Almaty Club ที่มีส่วนสูงเป็นเมตร (ฟุต 6 นิ้ว) คือเท่าใด",
    "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_en": "Which Position has Goals against smaller than 43, and Wins larger than 14, and Played larger than 38?",
    "question_th": "ตำแหน่งใดมีเป้าหมายต่อเป้าหมายที่น้อยกว่า 43 และชนะมากกว่า 14 และเล่นได้มากกว่า 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_en": "Which Goals for has a Position smaller than 16, and Wins smaller than 19, and Goals against smaller than 32?",
    "question_th": "ประตูใดที่มีตำแหน่งน้อยกว่า 16 และชนะน้อยกว่า 19 และประตูเทียบกับที่น้อยกว่า 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_en": "Which Points have Goals against of 32, and Played larger than 38?",
    "question_th": "แต้มใดที่มีประตูต่อ 32 และเล่นได้มากกว่า 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_en": "Which Position has Goals against smaller than 59, and Goals for larger than 32, and Draws larger than 9, and Points larger than 35?",
    "question_th": "ตำแหน่งใดที่มีประตูต่อแต้มที่น้อยกว่า 59 และประตูที่มากกว่า 32 และเสมอมากกว่า 9 และแต้มมากกว่า 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_en": "What district re-elected a Republican?",
    "question_th": "เขตใดได้รับเลือกให้เป็นพรรครีพับลิกันอีกครั้ง",
    "context": "CREATE TABLE table_name_21 (district VARCHAR, party VARCHAR, results VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_name_84 WHERE first_elected = 1987",
    "question_en": "Which incumbent was first elected in 1987?",
    "question_th": "ผู้ดำรงตำแหน่งใดได้รับเลือกครั้งแรกในปี 2530",
    "context": "CREATE TABLE table_name_84 (incumbent VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_63 WHERE money___$__ < 216",
    "question_en": "From which country is the player who made less than $216?",
    "question_th": "ผู้เล่นที่ทำรายได้น้อยกว่า $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_en": "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?",
    "question_th": "ผู้เล่นวางตำแหน่งที่มาจากสหรัฐอเมริกาซึ่งทำเงินได้มากกว่า 216 ดอลลาร์ และมีคะแนน 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_en": "Which player placed in t5 and had a score of 72-71-73-78=294?",
    "question_th": "ผู้เล่นคนไหนที่อยู่ใน t5 และมีคะแนน 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_en": "What is the year that a record was recorded with Libor Pesek as conductor?",
    "question_th": "ปีที่บันทึกโดย Libor Pesek เป็นผู้ควบคุมวงคือปีใด",
    "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_en": "What record company did pianist Solomon Cutner record for?",
    "question_th": "นักเปียโน Solomon Cutner บันทึกเสียงให้กับบริษัทแผ่นเสียงแห่งใด",
    "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_en": "What record company did conductor Mikhail Snitko record for after 1996?",
    "question_th": "มิคาอิล สนิตโก วาทยากรของบริษัทแผ่นเสียงใดที่บันทึกเสียงหลังปี 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_en": "Which event had a total of 28?",
    "question_th": "เหตุการณ์ใดมีทั้งหมด 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_en": "Who was the shooter when the rank points was 8 and the event was WC Kerrville?",
    "question_th": "ใครคือมือปืนเมื่อคะแนนอันดับเป็น 8 และงานคือ 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_en": "What was the total when the score points was 12 and the rank points was 15?",
    "question_th": "คะแนนรวมเมื่อคะแนนคือ 12 และคะแนนอันดับคือ 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_en": "What is the score at the Champions League, when the result shows win?",
    "question_th": "คะแนนในแชมเปี้ยนส์ลีกเป็นเท่าไหร่เมื่อผลปรากฏว่าชนะ?",
    "context": "CREATE TABLE table_name_25 (score VARCHAR, competition VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_8 WHERE opponent = \"randers\"",
    "question_en": "What was the competition when the opponent was the Randers?",
    "question_th": "การแข่งขันคืออะไรเมื่อคู่ต่อสู้คือแรนเดอร์ส?",
    "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_en": "What is the result of the UEFA Cup, against Palermo?",
    "question_th": "ผลการแข่งขันยูฟ่า คัพ กับ ปาแลร์โม่ เป็นอย่างไร?",
    "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_en": "What date was the UEFA Cup against Panathinaikos?",
    "question_th": "ยูฟ่า คัพ กับ พานาธิไนกอส ตรงกับวันไหน?",
    "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_en": "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?",
    "question_th": "จำนวนผู้เสียชีวิตจากการโจมตีทั้งหมด โดยมีชาวอิสราเอลหรือชาวต่างชาติได้รับบาดเจ็บ 0 ราย ผู้เสียชีวิตอีก 0 ราย และผู้เสียชีวิตรวม 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_en": "How many Israelis and or foreigners were wounded in the attack with more than 1 Israeli death?",
    "question_th": "มีชาวอิสราเอลและหรือชาวต่างชาติได้รับบาดเจ็บกี่คนจากการโจมตี และมีชาวอิสราเอลเสียชีวิตมากกว่า 1 คน?",
    "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_en": "How many other deaths were in the attack with 242 Israelis and/or foreigners wounded?",
    "question_th": "มีผู้เสียชีวิตอีกกี่คนในการโจมตี โดยมีชาวอิสราเอลและ/หรือชาวต่างชาติได้รับบาดเจ็บ 242 คน",
    "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_en": "What is the total number of Israeli deaths in the attack with 0 total casulaties and 0 total deaths?",
    "question_th": "จำนวนผู้เสียชีวิตทั้งหมดของอิสราเอลในการโจมตี โดยมีผู้เสียชีวิตทั้งหมด 0 ราย และผู้เสียชีวิตทั้งหมด 0 ราย เป็นเท่าใด",
    "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_en": "What place did the golfer who had a score of 69-68-69-70=276 finish in?",
    "question_th": "นักกอล์ฟที่มีคะแนน 69-68-69-70=276 จบอันดับที่ใด",
    "context": "CREATE TABLE table_name_11 (place VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_14 WHERE player = \"mike weir\"",
    "question_en": "What was the to par score for Mike Weir?",
    "question_th": "ไมค์ เวียร์ ได้สกอร์พาร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_14 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_77 WHERE player = \"jay haas\"",
    "question_en": "What country was Jay Haas representing?",
    "question_th": "Jay Haas เป็นตัวแทนประเทศใด",
    "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_en": "What country has the t7 place, and player Peter Oosterhuis?",
    "question_th": "ประเทศใดมีอันดับที่ 7 และผู้เล่น ปีเตอร์ อูสเตอร์เฮาส์?",
    "context": "CREATE TABLE table_name_48 (country VARCHAR, place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_93 WHERE player = \"sandy lyle\"",
    "question_en": "What is the score for Sandy Lyle?",
    "question_th": "แซนดี้ ไลล์ คะแนนเท่าไหร่?",
    "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_en": "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?",
    "question_th": "นักเตะคนไหนที่ยิงประตูลีกคัพได้มากกว่า 0 ประตู แต่ยิงรวมเกิน 13 ประตู และลงเล่นลีกคัพรวม 4 นัด?",
    "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_en": "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?",
    "question_th": "ใครทำประตูรวมในลีกน้อยที่สุด โดยทำได้ 0 ประตู เอฟเอ คัพ และไม่ลงเล่น เอฟเอ คัพ ลงเล่นในตำแหน่ง DF และลงเล่นทั้งหมด 3 ครั้ง?",
    "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_en": "What is the lowest # Of Episodes, when Date Released is \"15 December 2011\"?",
    "question_th": "# ตอนที่ต่ำที่สุดคือเท่าใด ซึ่งวันที่เผยแพร่คือ \"15 ธันวาคม 2554\"?",
    "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_en": "What Date Released, when # Of Discs is greater than 4?",
    "question_th": "วันที่วางจำหน่ายเมื่อจำนวนแผ่นมากกว่า 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_en": "What is Season, when # Of Episodes is \"10\", and when Date Released is \"1 April 2010\"?",
    "question_th": "ซีซั่นคืออะไร เมื่อ # ของตอนคือ \"10\" และวันที่เผยแพร่คือ \"1 เมษายน 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_en": "What was the score when Sheffield United was the home team?",
    "question_th": "เมื่อเชฟฟิลด์ยูไนเต็ดเป็นเจ้าบ้านสกอร์เท่าไหร่?",
    "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_en": "Who was the away team against Newton Heath?",
    "question_th": "ทีมเยือนกับนิวตัน ฮีธคือใคร?",
    "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_en": "What is the home team when the tie is 11?",
    "question_th": "เจ้าบ้านเสมอกัน 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_en": "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?",
    "question_th": "ผลรวมของประตูลีก เมื่อตำแหน่งเป็น \"DF\" เมื่อแอปลีกคัพเป็น \"0\" เมื่อแอปทั้งหมดเป็น \"7\" และเมื่อเป้าหมาย FLT น้อยกว่า 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_en": "What is the total number of FA Cup Goals, when FLT Goals is greater than 0?",
    "question_th": "จำนวนประตู FA Cup ทั้งหมดเป็นเท่าใด เมื่อ FLT ประตูมากกว่า 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_en": "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?",
    "question_th": "ประตู FA Cup ต่ำสุดคืออะไร เมื่อประตูรวมมากกว่า 0 เมื่อประตูลีกคือ \"4\" เมื่อแอป FA Cup คือ \"1\" และเมื่อประตูลีกคัพมากกว่า 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_en": "How many points for Newman/Haas Racing with fewer than 40 laps?",
    "question_th": "Newman/Haas Racing ที่วิ่งน้อยกว่า 40 รอบได้กี่คะแนน?",
    "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_en": "Which driver has fewer than 2 points, larger grid that 4 and is on American Spirit Team Johansson?",
    "question_th": "นักแข่งคนไหนมีคะแนนน้อยกว่า 2 คะแนน ตารางใหญ่กว่า 4 และอยู่ในทีม American Spirit 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_en": "What is the week 11 nov 16 standing with wisconsin (10-1) on week 13 Nov 30?",
    "question_th": "สัปดาห์ที่ 11 พ.ย. 59 พบกับวิสคอนซิน (10-1) ในสัปดาห์ที่ 13 พ.ย. 59 คืออะไร?",
    "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_en": "What is the week 13 Nov 30 standing with USC (7-3) on week 11 Nov 16?",
    "question_th": "สัปดาห์ที่ 13 พ.ย. 59 ยืนอยู่กับ USC (7-3) ในสัปดาห์ที่ 11 พ.ย. 59 คืออะไร?",
    "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_en": "What is the week 8 Oct 26 standing with georgia tech (8-2) on week 12 Nov 23?",
    "question_th": "สัปดาห์ที่ 8 ต.ค. 26 ยืนอยู่กับเทคโนโลยีจอร์เจีย (8-2) ในสัปดาห์ที่ 12 พ.ย. 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_en": "What is the week 14 (final) dec 7 standing with Florida (6-1) on week 8 Oct 26?",
    "question_th": "สัปดาห์ที่ 14 (สุดท้าย) 7 ธันวาคมยืนหยัดกับฟลอริดา (6-1) ในสัปดาห์ที่ 8 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_en": "What player is associated with soenderjyske.dk?",
    "question_th": "ผู้เล่นคนใดที่เกี่ยวข้องกับ 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_en": "What is the transfer fee for Gravgaard?",
    "question_th": "ค่าธรรมเนียมการโอน 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_en": "What's the result when there's more than 41 moves with an opening of c42 petrov's defence in 2007?",
    "question_th": "จะเกิดอะไรขึ้นเมื่อมีการเคลื่อนไหวมากกว่า 41 ครั้งพร้อมการเปิดการป้องกันของ c42 เปตรอฟในปี 2550?",
    "context": "CREATE TABLE table_name_50 (result VARCHAR, opening VARCHAR, moves VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(moves) FROM table_name_52 WHERE result = \"½–½\" AND year < 1999 AND black = \"anand\"",
    "question_en": "What's the total number of moves with a result of  ½–½ and a black of Anand before 1999?",
    "question_th": "จำนวนการเคลื่อนไหวทั้งหมดโดยผลลัพธ์ของ ½–½ และสีดำของอานันท์ก่อนปี 2542 เป็นเท่าใด",
    "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_en": "What's the black with 24 moves in the dortmund tournament?",
    "question_th": "สีดำที่มี 24 การเคลื่อนไหวในทัวร์นาเมนต์ดอร์ทมุนด์คืออะไร?",
    "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 = \"½–½\"",
    "question_en": "What's the opening when white is Anand with fewer than 61 moves for a result of  ½–½?",
    "question_th": "อะไรคือช่องเปิดเมื่ออานันท์สีขาวเคลื่อนไหวน้อยกว่า 61 ครั้งด้วยผล 1/2?",
    "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 = \"½–½\" AND moves = 39 AND opening = \"d37 queen's gambit declined\"",
    "question_en": "What's the white for a black of Anand, a result of  ½–½, 39 moves, and an opening of d37 queen's gambit declined?",
    "question_th": "อะไรคือสีขาวสำหรับสีดำของอานันท์ซึ่งเป็นผลมาจากการเคลื่อนไหว 39 ครั้งและการเปิดกลเม็ดของราชินี d37 ลดลง?",
    "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_en": "What is the lowest draw that has We The Lovers for the english translation, with a place greater than 1?",
    "question_th": "การจับฉลากต่ำสุดที่มี We The Lovers สำหรับการแปลภาษาอังกฤษ โดยมีอันดับมากกว่า 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_en": "How many draws have french as the language, with a place less than 1?",
    "question_th": "มีกี่งวดที่มีภาษาฝรั่งเศสเป็นภาษาที่มีสถานที่น้อยกว่า 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_en": "What is the Tonnage of the ship from Canada?",
    "question_th": "น้ำหนักของเรือจากแคนาดาคือเท่าไร?",
    "context": "CREATE TABLE table_name_73 (tonnage INTEGER, flag VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_60 WHERE country = \"zimbabwe\"",
    "question_en": "In what place did the golfer representing Zimbabwe finish?",
    "question_th": "นักกอล์ฟที่เป็นตัวแทนของซิมบับเวจบการแข่งขันที่ใด",
    "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_en": "In what place did Des Smyth, who scored less than 71, finish?",
    "question_th": "เดส สมิธ ซึ่งทำคะแนนน้อยกว่า 71 จบอันดับที่ใด",
    "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_en": "What is the spaceport location that houses the LC34 complex and uses the Saturn IB launcher?",
    "question_th": "ตำแหน่งของยานอวกาศซึ่งเป็นที่ตั้งของ LC34 complex และใช้ 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_en": "Which spacecraft were launched by the Titan II?",
    "question_th": "Titan II ปล่อยยานอวกาศลำใด",
    "context": "CREATE TABLE table_name_7 (spacecraft VARCHAR, launcher VARCHAR)"
  },
  {
    "answer": "SELECT launcher FROM table_name_80 WHERE spacecraft = \"apollo-soyuz\"",
    "question_en": "What was the launcher vehicle for Apollo-Soyuz?",
    "question_th": "ยานพาหนะยิงจรวดของ 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_en": "Which complex used the Soyuz (r) launcher to facilitate 14 orbital flights?",
    "question_th": "คอมเพล็กซ์ใดที่ใช้เครื่องยิง Soyuz (r) เพื่ออำนวยความสะดวกในการบินในวงโคจร 14 ครั้ง",
    "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_en": "what is 2008 when the tournament is year end ranking?",
    "question_th": "2008 เมื่อทัวร์นาเมนต์มีอันดับสิ้นปีคืออะไร?",
    "context": "CREATE TABLE table_name_79 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2012 FROM table_name_66 WHERE tournament = \"cincinnati masters\"",
    "question_en": "what is 2012 when the tournament is cincinnati masters?",
    "question_th": "ปี 2012 คืออะไรเมื่อทัวร์นาเมนต์คือ Cincinnati Masters?",
    "context": "CREATE TABLE table_name_66 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2008 FROM table_name_79 WHERE 2012 = \"3r\" AND 2009 = \"2r\"",
    "question_en": "what is 2008 when 2012 is 3r and 2009 is 2r?",
    "question_th": "2008 คืออะไรเมื่อ 2012 เป็น 3r และ 2009 เป็น 2r",
    "context": "CREATE TABLE table_name_79 (Id VARCHAR)"
  },
  {
    "answer": "SELECT height_ft__m_ FROM table_name_51 WHERE year = 1907",
    "question_en": "How tall is the structure built in 1907?",
    "question_th": "โครงสร้างที่สร้างขึ้นในปี 1907 มีความสูงเท่าไร?",
    "context": "CREATE TABLE table_name_51 (height_ft__m_ VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_90 WHERE floors > 34",
    "question_en": "Which building has more than 34 floors?",
    "question_th": "อาคารใดมีมากกว่า 34 ชั้น?",
    "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_en": "Which rank has 0 bronze and 2 silver?",
    "question_th": "อันดับไหนมี 0 ทองแดง และ 2 เงิน?",
    "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_en": "How much silver does the rank have that has gold smaller than 4, and a total of 1 and a rank larger than 6?",
    "question_th": "อันดับมีเงินเท่าไรที่มีทองคำน้อยกว่า 4 และรวม 1 และอันดับมากกว่า 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_en": "Which rank has a more than 0 silver, 4 bronze, and a total smaller than 10?",
    "question_th": "อันดับไหนมีมากกว่า 0 เหรียญเงิน 4 เหรียญทองแดง และคะแนนรวมน้อยกว่า 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_en": "How much gold does the tank have that has 3 silver and more than 3 bronze?",
    "question_th": "รถถังที่มี 3 เงินและมากกว่า 3 ทองสัมฤทธิ์มีทองคำเท่าไหร่?",
    "context": "CREATE TABLE table_name_19 (gold VARCHAR, silver VARCHAR, bronze VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(total) FROM table_name_14 WHERE silver < 0",
    "question_en": "What is the total number that 0 silver?",
    "question_th": "เลข 0 เงินมีทั้งหมดกี่ตัวครับ?",
    "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_en": "Which Score has a To par larger than 17, and a Player of mike brady?",
    "question_th": "สกอร์ใดที่มีพาร์ To มากกว่า 17 และผู้เล่นของ 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_en": "Which Place that has Money of 150, and a Player of bobby cruickshank?",
    "question_th": "สถานที่ใดที่มีเงิน 150 และผู้เล่นของ 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_en": "Which Place has a To par smaller than 15, and a Score of 74-74-74-75=297?",
    "question_th": "สถานที่ใดมีพาร์ To น้อยกว่า 15 และคะแนน 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_en": "What is the score when the tie number is 8?",
    "question_th": "เมื่อเลขเสมอกันคือ 8 คะแนนเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_84 (score VARCHAR, tie_no VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_58 WHERE tie_no = \"6\"",
    "question_en": "What is the score when the tie number is 6?",
    "question_th": "เมื่อเลขเสมอกันคือ 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_en": "What is the tie number for Middlesbrough?",
    "question_th": "มิดเดิ้ลสโบรช์มีเลขเสมอกันเท่าไร?",
    "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_en": "What status has 15/04/1967 as the date?",
    "question_th": "สถานะอะไรที่มีวันที่ 15/04/1967?",
    "context": "CREATE TABLE table_name_33 (status VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_95 WHERE opposing_teams = \"scotland\"",
    "question_en": "What venue has Scotland as the opposing teams?",
    "question_th": "สนามไหนมีสกอตแลนด์เป็นทีมตรงข้าม?",
    "context": "CREATE TABLE table_name_95 (venue VARCHAR, opposing_teams VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_71 WHERE opposing_teams = \"france\"",
    "question_en": "What status has France as the opposing teams?",
    "question_th": "ฝรั่งเศสมีสถานะเป็นทีมตรงข้ามอย่างไร?",
    "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_en": "What kind of Week 4  has a Week 9 of all housemates?",
    "question_th": "สัปดาห์ที่ 4 ประเภทใดที่มีสัปดาห์ที่ 9 ของเพื่อนร่วมบ้านทั้งหมด",
    "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_en": "Which Week 3 has a Week 9 of ejected (day 3)?",
    "question_th": "สัปดาห์ที่ 3 ใดที่มีสัปดาห์ที่ 9 ที่ถูกดีดออก (วันที่ 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_en": "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",
    "question_th": "สัปดาห์ที่ 1 ประเภทใดที่มีสัปดาห์ที่ 8 ที่ไม่มีสิทธิ์ และสัปดาห์ที่ 9 ไม่มีการเสนอชื่อ และสัปดาห์ที่ 3 ของซีริล คำถามที่ 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_en": "What kind of Week 7 has a Week 5 of evicted (day 15)?",
    "question_th": "สัปดาห์ที่ 7 ประเภทใดที่มีการขับไล่สัปดาห์ที่ 5 (วันที่ 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_en": "What kind of Week 6 has a Week 2 of see notes 2 , 3 , 4?",
    "question_th": "สัปดาห์ที่ 6 มีสัปดาห์ที่ 2 อะไรบ้าง ดูหมายเหตุ 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_en": "Which Against has more than 11 wins, and a Geelong FL of st josephs?",
    "question_th": "Against ใดที่มีชัยชนะมากกว่า 11 ครั้งและ Geelong FL ของ 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–2)\"",
    "question_en": "What is the Attendance of the game with a Loss of Hiller (3–2)?",
    "question_th": "ผู้เข้าร่วมเกมที่แพ้ฮิลเลอร์ (3–2) คืออะไร?",
    "context": "CREATE TABLE table_name_17 (attendance INTEGER, loss VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_85 WHERE home_team = \"tottenham hotspur\"",
    "question_en": "Who is the away team that tottenham hotspur played?",
    "question_th": "ทีมเยือนที่ ท็อตแน่ม ฮ็อทสเปอร์ เล่นคือใคร?",
    "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_en": "What was the score of the game with away team chelsea on 29 january 1983?",
    "question_th": "เกมกับทีมเยือนเชลซีเมื่อวันที่ 29 มกราคม 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_en": "What date was the game that home team torquay united played?",
    "question_th": "เกมที่ทีมเหย้า ทอร์คีย์ ยูไนเต็ด ลงเล่นคือวันไหน?",
    "context": "CREATE TABLE table_name_76 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_9 WHERE away_team = \"watford\"",
    "question_en": "Who is the team that played away team watford?",
    "question_th": "ทีมที่เล่นทีมเยือนวัตฟอร์ดคือทีมใด?",
    "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_en": "What date was the game when home team crystal palace played?",
    "question_th": "เกมที่ทีมเจ้าบ้าน คริสตัล พาเลซ ลงเล่นคือวันไหน?",
    "context": "CREATE TABLE table_name_93 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_18 WHERE player = \"retief goosen\"",
    "question_en": "What country is Retief Goosen from?",
    "question_th": "Retief Goosen มาจากประเทศใด",
    "context": "CREATE TABLE table_name_18 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_27 WHERE place = \"1\"",
    "question_en": "What Player is in Place 1?",
    "question_th": "ผู้เล่นคนไหนอยู่ในอันดับ 1?",
    "context": "CREATE TABLE table_name_27 (player VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_39 WHERE place = \"1\"",
    "question_en": "What is the Country of the Player in Place 1?",
    "question_th": "ประเทศของผู้เล่นอันดับที่ 1 คืออะไร?",
    "context": "CREATE TABLE table_name_39 (country VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_89 WHERE to_par = \"–10\" AND score = 67 - 67 - 66 = 200",
    "question_en": "What is the Place of the Player with a To par of –10 and a Score of 67-67-66=200?",
    "question_th": "ตำแหน่งผู้เล่นที่มีพาร์ถึง –10 และคะแนน 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_en": "Can you tell me the total number of Rank that has the Points larger than 99, and the Club of barcelona?",
    "question_th": "คุณช่วยบอกจำนวนอันดับทั้งหมดที่มีคะแนนมากกว่า 99 และสโมสรบาร์เซโลนาได้ไหม",
    "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_en": "How many people on average attended when Eastwood Town was the away team, and the tie number was less than 8?",
    "question_th": "อีสต์วู้ด ทาวน์ เป็นทีมเยือน โดยเฉลี่ยมีผู้เข้าร่วมกี่คน และเสมอกันน้อยกว่า 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_en": "The game with home team Crowborough Athletic, with an attendance less than 848 had what as the score?",
    "question_th": "เกมกับเจ้าบ้าน โครว์โบโร่ แอธเลติก มีผู้ชมน้อยกว่า 848 สกอร์เป็นอย่างไรบ้าง?",
    "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_en": "The game with Bashley as the home team had what maximum attendance?",
    "question_th": "เกมที่แบชลีย์เป็นเจ้าบ้านมีผู้เข้าชมสูงสุดเท่าใด?",
    "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_en": "What is the tie number total when Harlow Town is the away team?",
    "question_th": "ผลรวมเสมอกันเมื่อ ฮาร์โลว์ ทาวน์ เป็นทีมเยือนคือเท่าไร?",
    "context": "CREATE TABLE table_name_5 (tie_no VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT artist FROM table_name_58 WHERE draw > 15",
    "question_en": "Which artist has a draw greater than 15?",
    "question_th": "ศิลปินคนไหนมียอดวาดมากกว่า 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_en": "What was the highest place a song by Jacques Raymond reached, with a draw over 14?",
    "question_th": "เพลงของ Jacques Raymond ไปถึงจุดสูงสุดโดยเสมอกันเกิน 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_en": "What is the Craft used at Coniston Water?",
    "question_th": "Craft ที่ใช้ใน Coniston Water คืออะไร?",
    "context": "CREATE TABLE table_name_15 (craft VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT speed FROM table_name_80 WHERE location = \"lake mead\"",
    "question_en": "What is the Speed at Lake Mead?",
    "question_th": "ความเร็วที่ Lake Mead คืออะไร?",
    "context": "CREATE TABLE table_name_80 (speed VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT goals FROM table_name_16 WHERE ratio = 0.29",
    "question_en": "Which Goals have a Ratio of 0.29?",
    "question_th": "เป้าหมายใดมีอัตราส่วน 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_en": "Which Goals have a Current Club of real madrid, and a Ratio smaller than 1.08, and a Rank smaller than 5?",
    "question_th": "ประตูใดที่มีสโมสรปัจจุบันของเรอัล มาดริด และมีอัตราส่วนน้อยกว่า 1.08 และมีอันดับน้อยกว่า 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_en": "Which Current Club has a Rank of 4?",
    "question_th": "สโมสรใดในปัจจุบันมีอันดับ 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_en": "What is the second party that has a conservative first party in the 1834 election?",
    "question_th": "พรรคที่สองที่มีพรรคแรกอนุรักษ์นิยมในการเลือกตั้งปี พ.ศ. 2377 คืออะไร?",
    "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_en": "Who is the second member with first member Sir Rowland Hill, BT, and a conservative second party?",
    "question_th": "ใครคือสมาชิกคนที่สองกับสมาชิกคนแรก เซอร์ โรว์แลนด์ ฮิลล์ บีที และพรรคอนุรักษ์นิยมคนที่สอง?",
    "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_en": "What is the first party with second member Hon. Rowland Hill, in the 1857 election?",
    "question_th": "งานปาร์ตี้ครั้งแรกกับสมาชิกคนที่สองคืออะไรที่รัก โรว์แลนด์ ฮิลล์ ในการเลือกตั้งปี 1857?",
    "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_en": "Who is the second member that is a second party Whig in the 1834 election?",
    "question_th": "สมาชิกคนที่สองที่เป็นพรรคกฤตคนที่สองในการเลือกตั้งปี พ.ศ. 2377 คือใคร?",
    "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_en": "What is the second party that has a conservative first party and second member John Cotes?",
    "question_th": "พรรคที่ 2 ที่มีพรรคที่หนึ่งที่เป็นอนุรักษ์นิยมและสมาชิกคนที่สองคือจอห์น โคตส์?",
    "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_en": "What place is the player with a score of 69-68=137?",
    "question_th": "นักเตะที่มีคะแนน 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_en": "What's the score for the t10 player from zimbabwe?",
    "question_th": "นักเตะ t10 จากซิมบับเว ได้คะแนนเท่าไหร่?",
    "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_en": "What's the score of the t10 player from australia?",
    "question_th": "นักเตะ t10 จากออสเตรเลีย ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_61 (score VARCHAR, place VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_51 WHERE player = \"bob tway\"",
    "question_en": "What's bob tway's score?",
    "question_th": "คะแนนของ Bob Tway คืออะไร?",
    "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_en": "What Player has a Place of t10, a Country of united states, and a Score of 67-73=140?",
    "question_th": "ผู้เล่นคนใดมีอันดับ t10 ประเทศสหรัฐอเมริกา และคะแนน 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_en": "What Place has a Player of seve ballesteros?",
    "question_th": "สถานที่ใดมีผู้เล่นของเจ็ด ballesteros?",
    "context": "CREATE TABLE table_name_89 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_74 WHERE player = \"nick faldo\"",
    "question_en": "What Country has a Player of nick faldo?",
    "question_th": "ประเทศใดมีผู้เล่นของ 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_en": "What To par has a Place of t10, and a Score of 67-73=140?",
    "question_th": "What To par มีอันดับ t10 และคะแนน 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_en": "What Score has a Place of t6, a Country of united states, and a Player of fred couples?",
    "question_th": "คะแนนอะไรที่มีอันดับ t6 ประเทศของสหรัฐอเมริกา และผู้เล่นของคู่เฟรด?",
    "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_en": "What To par has a Score of 68-66=134?",
    "question_th": "พาร์อะไรมีคะแนน 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–\" AND transmission = \"iptv and digital terrestrial\"",
    "question_en": "Name the  Provider that has a pay in 2006–, and a Transmission of iptv and digital terrestrial?",
    "question_th": "ตั้งชื่อผู้ให้บริการที่จ่ายเงินในปี 2549– และการส่ง IPTV และภาคพื้นดินดิจิทัล?",
    "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_en": "Name the Years which have Transmission of digital satellite, an On demand of no, and a Free or pay of free + ppv?",
    "question_th": "ตั้งชื่อปีที่มีการส่งผ่านดาวเทียมดิจิทัล ตามความต้องการ และฟรีหรือจ่ายฟรี + 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–\" AND provider = \"bt tv (formerly bt vision)\"",
    "question_en": "What kind of Free or pay has Years of 2006– and a Provider of bt tv (formerly bt vision)?",
    "question_th": "ฟรีหรือจ่ายเงินประเภทใดในปี 2549 และผู้ให้บริการ bt tv (เดิมคือ 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_en": "Name the Years that have a  free + pay?",
    "question_th": "ตั้งชื่อปีที่มีฟรี + จ่าย?",
    "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_en": "Which On demandhas a Free or pay of free and a Provider of freesat?",
    "question_th": "ตามความต้องการใดที่มีบริการฟรีหรือจ่ายเงินฟรีและเป็นผู้ให้บริการ 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_en": "Which On demand has a pay and a Provider of virgin media (formerly ntl:telewest)?",
    "question_th": "ออนดีมานด์คนไหนที่จ่ายเงินและเป็นผู้ให้บริการสื่อบริสุทธิ์ (เดิมชื่อ 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_en": "What is the region for tv uskana?",
    "question_th": "ภูมิภาคสำหรับทีวี uskana คืออะไร?",
    "context": "CREATE TABLE table_name_5 (region VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_name_69 WHERE name = \"tv vtv\"",
    "question_en": "What is the region for tv vtv?",
    "question_th": "ภูมิภาคสำหรับ 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_en": "What is the highest Week with the Opponent Buffalo Bills?",
    "question_th": "สัปดาห์ที่สูงที่สุดกับฝ่ายตรงข้ามบัฟฟาโลบิลคืออะไร?",
    "context": "CREATE TABLE table_name_67 (week INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_60 WHERE result = \"france 46-16 scotland\"",
    "question_en": "Which Competition has a Result of france 46-16 scotland?",
    "question_th": "การแข่งขันใดมีผลการแข่งขัน ฝรั่งเศส 46-16 สก็อตแลนด์?",
    "context": "CREATE TABLE table_name_60 (competition VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT percentage FROM table_name_86 WHERE district > 2 AND party = \"independent\"",
    "question_en": "Which Percentage has a District larger than 2, and a Party of independent?",
    "question_th": "เปอร์เซ็นต์ใดที่มีเขตใหญ่กว่า 2 และมีพรรคอิสระ?",
    "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_en": "How many votes have a Seat of house A, and a Percentage of 75.44%, and a District smaller than 11?",
    "question_th": "จำนวนเสียงที่มีที่นั่งของบ้าน A และร้อยละ 75.44% และเขตที่เล็กกว่า 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_en": "What nation has more than 1 bronze and less than 3 silver?",
    "question_th": "ชาติใดมีมากกว่า 1 เหรียญทองแดง และน้อยกว่า 3 เหรียญเงิน?",
    "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_en": "What's the highest number of silver for 9 bronze and less than 27 total?",
    "question_th": "จำนวนเงินสูงสุดสำหรับ 9 เหรียญทองแดง และทั้งหมดน้อยกว่า 27 คือเท่าใด",
    "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_en": "What is the Market Share that has Assets of 25 Million and a rank of 23?",
    "question_th": "ส่วนแบ่งการตลาดที่มีสินทรัพย์ 25 ล้านและอันดับที่ 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_en": "What is the highest Assets (USD) Millions from Equity Bank and less than 44 branches?",
    "question_th": "สินทรัพย์สูงสุด (USD) ล้านจาก Equity Bank และสาขาน้อยกว่า 44 คืออะไร?",
    "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_en": "What is Score, when Attendance is \"349\"?",
    "question_th": "คะแนนคืออะไร เมื่อผู้เข้าร่วมคือ \"349\"",
    "context": "CREATE TABLE table_name_66 (score VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_18 WHERE away_team = \"newcastle benfield\"",
    "question_en": "What is Score, when Away Team is \"Newcastle Benfield\"?",
    "question_th": "Score คืออะไร เมื่อทีมเยือนคือ \"นิวคาสเซิ่ล เบนฟิลด์\"?",
    "context": "CREATE TABLE table_name_18 (score VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_82 WHERE tie_no = \"30\"",
    "question_en": "What is Score, when Tie No is \"30\"?",
    "question_th": "Score คืออะไร เมื่อ Tie No คือ \"30\"?",
    "context": "CREATE TABLE table_name_82 (score VARCHAR, tie_no VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_67 WHERE tie_no = \"109\"",
    "question_en": "What is Score, when Tie No is \"109\"?",
    "question_th": "Score คืออะไร เมื่อ Tie No คือ \"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_en": "What is Away Team, when Tie No is \"37\"?",
    "question_th": "ทีมเยือนคืออะไร เมื่อเสมอหมายเลขคือ \"37\"?",
    "context": "CREATE TABLE table_name_23 (away_team VARCHAR, tie_no VARCHAR)"
  },
  {
    "answer": "SELECT australian FROM table_name_79 WHERE american = \"ɑ\"",
    "question_en": "What is the Australian for the American ɑ?",
    "question_th": "ชาวออสเตรเลียสำหรับชาวอเมริกัน ɑ คืออะไร?",
    "context": "CREATE TABLE table_name_79 (australian VARCHAR, american VARCHAR)"
  },
  {
    "answer": "SELECT australian FROM table_name_79 WHERE letter = \"i /ɪ/\"",
    "question_en": "What is the Australian equivalent to i /ɪ/?",
    "question_th": "ชาวออสเตรเลียเทียบเท่ากับ i /ɪ/ คืออะไร?",
    "context": "CREATE TABLE table_name_79 (australian VARCHAR, letter VARCHAR)"
  },
  {
    "answer": "SELECT british FROM table_name_93 WHERE australian = \"ɔ\"",
    "question_en": "What is the British for the Australian ɔ?",
    "question_th": "อังกฤษสำหรับชาวออสเตรเลีย ɔ คืออะไร?",
    "context": "CREATE TABLE table_name_93 (british VARCHAR, australian VARCHAR)"
  },
  {
    "answer": "SELECT american FROM table_name_62 WHERE british = \"ə\"",
    "question_en": "What is the American version of the British ə?",
    "question_th": "British ə เวอร์ชันอเมริกันคืออะไร?",
    "context": "CREATE TABLE table_name_62 (american VARCHAR, british VARCHAR)"
  },
  {
    "answer": "SELECT examples FROM table_name_51 WHERE australian = \"æ\"",
    "question_en": "What are the examples for the Australian æ?",
    "question_th": "ตัวอย่างภาษาออสเตรเลีย æ มีอะไรบ้าง",
    "context": "CREATE TABLE table_name_51 (examples VARCHAR, australian VARCHAR)"
  },
  {
    "answer": "SELECT letter FROM table_name_74 WHERE british = \"ɒ\"",
    "question_en": "What is the letter for the Brisish ɒ?",
    "question_th": "ตัวอักษรของ Brisish ɒ คืออะไร?",
    "context": "CREATE TABLE table_name_74 (letter VARCHAR, british VARCHAR)"
  },
  {
    "answer": "SELECT 2 AS nd_member FROM table_name_34 WHERE elected = \"1555\"",
    "question_en": "Who is the second member that was elected in 1555?",
    "question_th": "สมาชิกคนที่สองที่ได้รับเลือกในปี พ.ศ. 1555 คือใคร?",
    "context": "CREATE TABLE table_name_34 (elected VARCHAR)"
  },
  {
    "answer": "SELECT dissolved FROM table_name_95 WHERE elected = \"1553\"",
    "question_en": "Who was dissolved that was elected in 1553?",
    "question_th": "ใครถูกยุบซึ่งได้รับเลือกในปี 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_en": "Which Pick has a Nationality of canada, and a Player of dennis maxwell?",
    "question_th": "นักเตะคนไหนมีสัญชาติแคนาดา และเป็นผู้เล่นของ เดนนิส แม็กซ์เวลล์?",
    "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_en": "Which Player has a Draft of 1994, a Pick larger than 8, a Round of 10, and a Nationality of canada?",
    "question_th": "ผู้เล่นคนไหนที่มีดราฟท์ปี 1994, ดราฟต์มากกว่า 8, รอบ 10 คน และมีสัญชาติแคนาดา",
    "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_en": "Which Player has a Round of 7, a Pick larger than 187, a Nationality of united states, and a Draft larger than 2000?",
    "question_th": "ผู้เล่นคนใดที่มีรอบ 7 ทีม ตัวเลือกที่มากกว่า 187 มีสัญชาติของสหรัฐอเมริกา และดราฟท์ที่มากกว่า 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_en": "Which Player has a Round of 9, and a Pick of 263?",
    "question_th": "ผู้เล่นคนไหนมีรอบ 9 และเลือกได้ 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_en": "Which Draft has a Round of 1, a Nationality of canada, a Pick of 1, and a Player of vincent lecavalier?",
    "question_th": "Draft ใดที่มีรอบ 1, สัญชาติของแคนาดา, ตัวเลือก 1 และผู้เล่นของ 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_en": "What penalties has P.I.M. of 34.5?",
    "question_th": "PIM 34.5 มีบทลงโทษอะไรบ้าง",
    "context": "CREATE TABLE table_name_88 (penalties VARCHAR, pim VARCHAR)"
  },
  {
    "answer": "SELECT wins FROM table_name_82 WHERE wpct = \"0.2\"",
    "question_en": "What wins has WPct of 0.2?",
    "question_th": "WPct ชนะอะไร 0.2?",
    "context": "CREATE TABLE table_name_82 (wins VARCHAR, wpct VARCHAR)"
  },
  {
    "answer": "SELECT wpct FROM table_name_7 WHERE \"wins\" = \"wins\"",
    "question_en": "What WPct has wins of wins?",
    "question_th": "WPct ใดมีชัยชนะจากการชนะ?",
    "context": "CREATE TABLE table_name_7 (wpct VARCHAR)"
  },
  {
    "answer": "SELECT assists FROM table_name_11 WHERE points = \"10\"",
    "question_en": "What assists has points of 10?",
    "question_th": "แอสซิสต์อะไรมี 10 แต้ม?",
    "context": "CREATE TABLE table_name_11 (assists VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT losses FROM table_name_13 WHERE team = \"japan\"",
    "question_en": "What losses consist of the team of japan?",
    "question_th": "การสูญเสียอะไรบ้างของทีมญี่ปุ่น?",
    "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_en": "How many wins have more than 1 loss and a team of chiefs?",
    "question_th": "ชนะกี่ครั้งมีแพ้มากกว่า 1 ครั้งและมีหัวหน้าทีม?",
    "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_en": "What was the total yards lost by antwon bailey when he gained 227?",
    "question_th": "แอนวอน เบลีย์ เสียไปทั้งหมดกี่หลาเมื่อเขาได้ 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_en": "How many wins when points are more than 51, goals against are more than 23 and losses are 5?",
    "question_th": "ชนะกี่ครั้งเมื่อคะแนนมากกว่า 51 ประตูมากกว่า 23 และแพ้ 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_en": "How many wins when there are more than 19 points, place smaller than 12, and fewer than 30 played?",
    "question_th": "ชนะกี่ครั้งเมื่อมีมากกว่า 19 แต้ม, อันดับน้อยกว่า 12 และเล่นน้อยกว่า 30?",
    "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_en": "What is the number played by the team in place greater than 16?",
    "question_th": "จำนวนที่ทีมเล่นมากกว่า 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_en": "What are the 2nd round results for the match with Girondins de Bordeaux (d1) as Team 2?",
    "question_th": "ผลการแข่งขันรอบ 2 นัดที่ ฌีรอนแดงส์ เดอ บอร์กโดซ์ (d1) เป็นทีม 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_en": "What was the 1st round result that had US Valenciennes (d1) as Team 2?",
    "question_th": "ผลการแข่งขันรอบแรกที่มี US Valenciennes (d1) เป็นทีม 2 คืออะไร?",
    "context": "CREATE TABLE table_name_6 (team_2 VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_87 WHERE team_2 = \"usl dunkerque (d2)\"",
    "question_en": "What was the Score of the match with USL Dunkerque (d2) as Team 2?",
    "question_th": "คะแนนของแมตช์กับ USL Dunkerque (d2) ในฐานะทีม 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_en": "What club does Manuel Fernandes coach?",
    "question_th": "มานูเอล เฟอร์นานเดส เป็นโค้ชให้กับสโมสรใด?",
    "context": "CREATE TABLE table_name_88 (club VARCHAR, head_coach VARCHAR)"
  },
  {
    "answer": "SELECT head_coach FROM table_name_17 WHERE city = \"estoril\"",
    "question_en": "Who is the head coach for the club from Estoril?",
    "question_th": "ใครคือหัวหน้าโค้ชของสโมสรจากเอสโตริล?",
    "context": "CREATE TABLE table_name_17 (head_coach VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT head_coach FROM table_name_71 WHERE city = \"aveiro\"",
    "question_en": "Who is the head coach for the club from Aveiro?",
    "question_th": "ใครคือหัวหน้าโค้ชของสโมสรจากอาวีโร?",
    "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_en": "What is Team 1, when Team 2 is \"Iskra Odintsovo\"?",
    "question_th": "ทีม 1 คืออะไร เมื่อทีม 2 คือ \"อิสครา โอดินต์โซโว\"?",
    "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_en": "What is 1st Leg, when Team 1 is \"Portol Palma Mallorca\"?",
    "question_th": "เลก 1 คืออะไร เมื่อทีม 1 คือ \"ปอร์ตอล พัลมา มายอร์กา\"?",
    "context": "CREATE TABLE table_name_45 (team_1 VARCHAR)"
  },
  {
    "answer": "SELECT agg FROM table_name_35 WHERE team_1 = \"noliko maaseik\"",
    "question_en": "What is Agg., when Team 1 is \"Noliko Maaseik\"?",
    "question_th": "Agg. คืออะไร ในเมื่อทีม 1 คือ \"โนลิโกะ มาเซอิก\"?",
    "context": "CREATE TABLE table_name_35 (agg VARCHAR, team_1 VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_60 WHERE players = \"jake johnson\"",
    "question_en": "What is Jake Johnson's position?",
    "question_th": "เจค จอห์นสัน ดำรงตำแหน่งอะไร?",
    "context": "CREATE TABLE table_name_60 (position VARCHAR, players VARCHAR)"
  },
  {
    "answer": "SELECT bats_throws FROM table_name_87 WHERE players = \"clayton allison\"",
    "question_en": "What side does Clayton Allison Bat/Throw from?",
    "question_th": "Clayton Allison Bat/Throw จากทีมไหน?",
    "context": "CREATE TABLE table_name_87 (bats_throws VARCHAR, players VARCHAR)"
  },
  {
    "answer": "SELECT bats_throws FROM table_name_9 WHERE players = \"ryan overland\"",
    "question_en": "What side does Ryan Overland Bat/Throws from?",
    "question_th": "Ryan Overland Bat/Throws จากทีมไหน?",
    "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_en": "What is the 2nd leg of pelister team 2?",
    "question_th": "ขาที่ 2 ของทีม Pelister 2 คืออะไร?",
    "context": "CREATE TABLE table_name_90 (team_2 VARCHAR)"
  },
  {
    "answer": "SELECT team_1 FROM table_name_20 WHERE team_2 = \"cementarnica\"",
    "question_en": "What is the team 1 with cementarnica as team 2?",
    "question_th": "ทีม 1 คืออะไร โดยมี Cementarnica เป็นทีม 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_en": "What is the team 2 with turnovo as team 1?",
    "question_th": "ทีม 2 ที่มี Turnovo เป็นทีม 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š\"",
    "question_en": "What is the team 1 with tikveš as team 2?",
    "question_th": "ทีม 1 คืออะไร โดยมี tikveš เป็นทีม 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_en": "What is Place, when Score is \"69-69=138\", and when Country is \"United States\"?",
    "question_th": "สถานที่คืออะไร เมื่อคะแนนคือ \"69-69=138\" และเมื่อประเทศคือ \"สหรัฐอเมริกา\"",
    "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_en": "What is Country, when Score is \"69-69=138\", and when Player is \"Ian Poulter\"?",
    "question_th": "ประเทศคืออะไร เมื่อคะแนนคือ \"69-69=138\" และเมื่อผู้เล่นคือ \"เอียน โพลเตอร์\"",
    "context": "CREATE TABLE table_name_20 (country VARCHAR, player VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_47 WHERE country = \"scotland\"",
    "question_en": "What is Score, when Country is \"Scotland\"?",
    "question_th": "Score คืออะไร เมื่อประเทศคือ \"สกอตแลนด์\"",
    "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_en": "What is Score, when Country is \"United States\", and when Player is \"Bob Tway\"?",
    "question_th": "Score คืออะไร เมื่อประเทศคือ \"สหรัฐอเมริกา\" และเมื่อผู้เล่นคือ \"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_en": "What is Score, when Player is \"Ernie Els\"?",
    "question_th": "Score คืออะไร เมื่อผู้เล่นคือ \"Ernie Els\"?",
    "context": "CREATE TABLE table_name_15 (score VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MIN(pick) FROM table_name_33 WHERE overall = 244",
    "question_en": "What is the smallest Pick with Overall of 244?",
    "question_th": "Pick ที่เล็กที่สุดโดยรวม 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_en": "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?",
    "question_th": "อะไรคือตัวเลือกที่เล็กที่สุดโดยโดยรวมมากกว่า 17 ชื่อผู้เล่นในหมวดหมู่ Dave Adams:บทความที่มี hcard และหนึ่งปีที่มากกว่าปี 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_en": "What is the greatest Year with a Player name of dave adams category:articles with hcards, and a Round smaller than 23?",
    "question_th": "ปีที่ยิ่งใหญ่ที่สุดที่มีชื่อผู้เล่นในหมวดหมู่ Dave Adams: บทความที่มี hcards และรอบที่เล็กกว่า 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_en": "Name the Round that has Res of win and an Opponent of demian maia?",
    "question_th": "ตั้งชื่อรอบที่มี Res of win และฝ่ายตรงข้ามของ 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_en": "which Event that has an Opponent of kendall grove?",
    "question_th": "เหตุการณ์ใดที่มีคู่ต่อสู้ของเคนดัลล์โกรฟ?",
    "context": "CREATE TABLE table_name_2 (event VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_61 WHERE event = \"ufc 123\"",
    "question_en": "When has an Event of ufc 123?",
    "question_th": "ufc 123 มีอีเว้นท์เมื่อไหร่?",
    "context": "CREATE TABLE table_name_61 (time VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_name_77 WHERE country = \"laos\"",
    "question_en": "The country of Laos is in what region?",
    "question_th": "ประเทศลาวอยู่ภาคใด",
    "context": "CREATE TABLE table_name_77 (region VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_80 WHERE internetlists = \"—\" AND onisecurityfiltering = \"—\"",
    "question_en": "What is the name of the country that has internetlists of —, and ONIsecurityfiltering of —?",
    "question_th": "ชื่อประเทศที่มีรายการอินเตอร์เน็ตของ — และ ONIsecurityfiltering ของ — คืออะไร?",
    "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_en": "With a FHFreepressreport of 54, and ne as ONIsocialfiltering, what is the ONItoolsfiltering?",
    "question_th": "ด้วย FHFreepressreport ที่ 54 และ ne ในฐานะ ONIsocialfiltering 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_en": "What were the Results in Arizona 1 District?",
    "question_th": "ผลลัพธ์ในเขตแอริโซนา 1 คืออะไร",
    "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_en": "What Republican District had Incumbent First Elected in 2000 then Re-elected?",
    "question_th": "เขตใดของพรรครีพับลิกันได้รับเลือกครั้งแรกในปี 2000 แล้วได้รับการเลือกตั้งใหม่?",
    "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_en": "What is John Shadegg's First Elected date?",
    "question_th": "วันที่ได้รับเลือกครั้งแรกของ John Shadegg คืออะไร?",
    "context": "CREATE TABLE table_name_18 (first_elected INTEGER, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_92 WHERE opponent = \"lamine ouahab\"",
    "question_en": "On which date was the opponent lamine ouahab?",
    "question_th": "คู่ต่อสู้คือลามีนอูอาฮับวันไหน?",
    "context": "CREATE TABLE table_name_92 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_62 WHERE round = \"1r\" AND result = \"2–6, 5–7, 2–6\"",
    "question_en": "On what date did the match take place in a round of 1r and have a result 2–6, 5–7, 2–6?",
    "question_th": "การแข่งขันจัดขึ้นในวันที่ใดในรอบ 1r และมีผล 2–6, 5–7, 2–6?",
    "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_en": "What is the result of the match in round 1r against tunisia and on a hard surface?",
    "question_th": "ผลการแข่งขันในรอบ 1r กับตูนิเซียและบนพื้นผิวแข็งเป็นอย่างไร?",
    "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_en": "Who was the match against when on a clay surface during round 2r?",
    "question_th": "ใครคือแมตช์กับใครเมื่ออยู่บนพื้นดินในระหว่างรอบที่ 2?",
    "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_en": "What round had a amtch against cyprus and an edition of 2010 davis cup europe/africa group ii?",
    "question_th": "รอบใดที่มีการแข่งกับไซปรัสและเดวิสคัพยุโรป/แอฟริกากลุ่ม 2 ประจำปี 2010?",
    "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_en": "What is the most recent year with a time of 10.56?",
    "question_th": "ปีที่ล่าสุดด้วยเวลา 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_en": "When was the game played against Astley Bridge 'a'?",
    "question_th": "เกมนี้เล่นกับแอสต์ลีย์ บริดจ์ 'เอ' เมื่อใด?",
    "context": "CREATE TABLE table_name_56 (date VARCHAR, opponents VARCHAR)"
  },
  {
    "answer": "SELECT week_5 FROM table_name_93 WHERE week_4 = \"nicole woodruff\"",
    "question_en": "Who was the girl of the week after nicole woodruff in the same month?",
    "question_th": "ใครคือเด็กหญิงยอดเยี่ยมประจำสัปดาห์รองจากนิโคล ดุจดังในเดือนเดียวกัน",
    "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_en": "Who was the girl of the week 3 weeks after brianne bailey in the same month?",
    "question_th": "ใครคือผู้หญิงยอดเยี่ยมประจำสัปดาห์หลังจากบริแอนน์ เบลีย์ 3 สัปดาห์ในเดือนเดียวกัน",
    "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_en": "Who was the girl of the week 2 weeks before terri lynn farrow in the same month?",
    "question_th": "ใครคือผู้หญิงประจำสัปดาห์ 2 สัปดาห์ก่อนเทอร์รี ลินน์ ฟาร์โรว์ในเดือนเดียวกัน",
    "context": "CREATE TABLE table_name_47 (week_2 VARCHAR, week_4 VARCHAR)"
  },
  {
    "answer": "SELECT tries FROM table_name_13 WHERE points = 20",
    "question_en": "How many tries did the player have which ended with 20 Points?",
    "question_th": "ผู้เล่นพยายามกี่ครั้งซึ่งจบลงด้วย 20 แต้ม",
    "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_en": "What is the average Points, when Date is \"February 2\", and when Attendance is less than 16,874?",
    "question_th": "คะแนนเฉลี่ยคือเท่าใด เมื่อวันที่คือ \"2 กุมภาพันธ์\" และเมื่อผู้เข้าร่วมน้อยกว่า 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_en": "What is the lowest Attendance, when Date is \"February 4\", and when Points is less than 57?",
    "question_th": "จำนวนผู้เข้าร่วมต่ำสุดคือวันที่ \"4 กุมภาพันธ์\" และเมื่อคะแนนน้อยกว่า 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_en": "For a total of 1 and the sport of softball what were the years?",
    "question_th": "รวม 1 และกีฬาซอฟต์บอลมีกี่ปี?",
    "context": "CREATE TABLE table_name_93 (years VARCHAR, total VARCHAR, sport VARCHAR)"
  },
  {
    "answer": "SELECT total FROM table_name_39 WHERE years = \"1925\"",
    "question_en": "What was the total for the year of 1925?",
    "question_th": "รวมในปี พ.ศ. 2468 เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_39 (total VARCHAR, years VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_19 WHERE format = \"limited edition cd/dvd\"",
    "question_en": "Which label is in a limited edition cd/dvd format?",
    "question_th": "ค่ายเพลงใดที่อยู่ในรูปแบบซีดี/ดีวีดีรุ่นจำกัด",
    "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_en": "What is the date for the United Kingdom with an LP format?",
    "question_th": "วันที่สำหรับสหราชอาณาจักรในรูปแบบ LP คือวันที่เท่าไร",
    "context": "CREATE TABLE table_name_88 (date VARCHAR, country VARCHAR, format VARCHAR)"
  },
  {
    "answer": "SELECT format FROM table_name_37 WHERE country = \"japan\"",
    "question_en": "Which format is in Japan?",
    "question_th": "ญี่ปุ่นอยู่ในรูปแบบไหน?",
    "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_en": "What is the format of catalog number 886973273913 (gowow012) in the United Kingdom?",
    "question_th": "รูปแบบของแคตตาล็อกหมายเลข 886973273913 (gowow012) ในสหราชอาณาจักรคืออะไร?",
    "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_en": "Which Apps have a Club of barcelona, and a Season of 1996/97, and a Rank smaller than 7?",
    "question_th": "แอพใดมี Club of Barcelona และฤดูกาล 1996/97 และมีอันดับน้อยกว่า 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_en": "Which Season has a Club of real madrid, and a Rank smaller than 6, and less than 121 goals?",
    "question_th": "ฤดูกาลใดที่มีสโมสรเรอัล มาดริด และมีอันดับน้อยกว่า 6 และน้อยกว่า 121 ประตู?",
    "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_en": "How many Apps have a Rank larger than 2, and Goals smaller than 102?",
    "question_th": "มีแอปกี่แอปที่มีอันดับมากกว่า 2 และเป้าหมายน้อยกว่า 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_en": "Which Season has a Rank smaller than 4, and a Club of barcelona, and less than 115 goals?",
    "question_th": "ฤดูกาลใดมีอันดับน้อยกว่า 4 และมีสโมสรบาร์เซโลนาและน้อยกว่า 115 ประตู?",
    "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_en": "What player has a 147 total from Spain?",
    "question_th": "นักเตะคนไหนมีคะแนนรวม 147 จากสเปน?",
    "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_en": "What year was the 146 total?",
    "question_th": "ทั้งหมด 146 คือปีไหน?",
    "context": "CREATE TABLE table_name_58 (year_s__won VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_39 WHERE player = \"paul lawrie\"",
    "question_en": "What country is Paul Lawrie from?",
    "question_th": "Paul Lawrie มาจากประเทศใด",
    "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_en": "Which Fuel has an Output of ps (kw; hp) @6000 rpm?",
    "question_th": "เชื้อเพลิงใดมีกำลัง ps (kw; hp) ที่ 6,000 รอบต่อนาที",
    "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_en": "Which Torque has a Volume of 1896 cc, and a CO 2 of 140 g/km?",
    "question_th": "แรงบิดใดมีปริมาตร 1,896 ซีซี และ CO 2 เท่ากับ 140 กรัม/กม.",
    "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_en": "What Venue has a Year smaller than 1986, and a Position of 6th?",
    "question_th": "สถานที่ใดที่มีปีที่เล็กกว่าปี 1986 และอันดับที่ 6",
    "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_en": "What Position has a Time of 3:01.78?",
    "question_th": "ตำแหน่งใดมีเวลา 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_en": "What Event has a Competition of world championships?",
    "question_th": "รายการใดมีการแข่งขันชิงแชมป์โลก?",
    "context": "CREATE TABLE table_name_77 (event VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_77 WHERE year = 1984",
    "question_en": "What Time has a Year of 1984?",
    "question_th": "ปี 1984 มีเวลาเท่าไหร่?",
    "context": "CREATE TABLE table_name_77 (time VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_52 WHERE year < 1983",
    "question_en": "What Competition has a Year smaller than 1983?",
    "question_th": "การแข่งขันใดที่มีปีที่เล็กกว่าปี 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–10\"",
    "question_en": "What is the Weight of the Senior Player with a Height of 6–10?",
    "question_th": "ผู้เล่นอาวุโสที่มีส่วนสูง 6–10 มีน้ำหนักเท่าไร?",
    "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_en": "What is the Year of the Player with a Weight of 230 or less from San Antonio, Texas?",
    "question_th": "ปีของผู้เล่นที่มีน้ำหนัก 230 หรือน้อยกว่าจากซานอันโตนิโอ เท็กซัสคือปีใด",
    "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_en": "What is the Height of the Sophomore Guard weighing 185?",
    "question_th": "ความสูงขององครักษ์ปีที่สองที่มีน้ำหนัก 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_en": "What is the Year of the Player weighing 185?",
    "question_th": "ผู้เล่นที่มีน้ำหนัก 185 ปีคือปีใด?",
    "context": "CREATE TABLE table_name_45 (year VARCHAR, weight VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_name_15 WHERE location = \"thomson, victoria\"",
    "question_en": "Which club is located in Thomson, Victoria?",
    "question_th": "สโมสรใดตั้งอยู่ในเมืองทอมสัน รัฐวิกตอเรีย",
    "context": "CREATE TABLE table_name_15 (club VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT nickname FROM table_name_25 WHERE years_in_gfl = \"1986-1988\"",
    "question_en": "What is the nickname of the team who was in the GFL from 1986-1988?",
    "question_th": "ชื่อเล่นของทีมที่อยู่ใน GFL ตั้งแต่ปี 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_en": "Which location did the Tigers have?",
    "question_th": "เสือมีตำแหน่งไหน?",
    "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_en": "What was the nickname of the team in the Geelong West Cricket & Football Club?",
    "question_th": "ชื่อเล่นของทีมใน 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_en": "What GLF Premiership did the Magpies have?",
    "question_th": "Magpies มี GLF Premiership อะไรบ้าง?",
    "context": "CREATE TABLE table_name_70 (gfl_premierships VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT nickname FROM table_name_93 WHERE club = \"east geelong\"",
    "question_en": "What was the nickname of the team in the East Geelong club?",
    "question_th": "ชื่อเล่นของทีมในสโมสร East Geelong คืออะไร?",
    "context": "CREATE TABLE table_name_93 (nickname VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT year_s__won FROM table_name_6 WHERE finish = \"t27\"",
    "question_en": "What year has a winning finish of T27?",
    "question_th": "T27 เข้าเส้นชัยเป็นปีไหน?",
    "context": "CREATE TABLE table_name_6 (year_s__won VARCHAR, finish VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_76 WHERE country = \"england\"",
    "question_en": "What was the finish for England?",
    "question_th": "อังกฤษจบแบบไหน?",
    "context": "CREATE TABLE table_name_76 (finish VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_14 WHERE year_s__won = \"1991\"",
    "question_en": "What county won in 1991?",
    "question_th": "มณฑลใดชนะในปี 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_en": "What is the highest total to par of +9?",
    "question_th": "ผลรวมสูงสุดของพาร์ +9 คือเท่าใด?",
    "context": "CREATE TABLE table_name_40 (total INTEGER, to_par VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_77 WHERE against = 12",
    "question_en": "What Status has Against of 12?",
    "question_th": "สถานะใดที่มีกับ 12?",
    "context": "CREATE TABLE table_name_77 (status VARCHAR, against VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_46 WHERE date = \"17/03/1990\"",
    "question_en": "What Venue has a Date of 17/03/1990?",
    "question_th": "สถานที่ใดมีวันที่ 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_en": "How many weeks had an Attendance of 43,272?",
    "question_th": "มีผู้เข้าร่วม 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_en": "Who played on december 12, 1993?",
    "question_th": "ใครเล่นเมื่อวันที่ 12 ธันวาคม พ.ศ. 2536?",
    "context": "CREATE TABLE table_name_37 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_92 WHERE opposing_team = \"united states\"",
    "question_en": "What day was United States the opposing team?",
    "question_th": "สหรัฐอเมริกาเป็นทีมตรงข้ามวันไหน?",
    "context": "CREATE TABLE table_name_92 (date VARCHAR, opposing_team VARCHAR)"
  },
  {
    "answer": "SELECT opposing_team FROM table_name_5 WHERE status = \"second test\"",
    "question_en": "What was the opposing team for the second test?",
    "question_th": "ทีมตรงข้ามในการทดสอบครั้งที่สองคือทีมใด",
    "context": "CREATE TABLE table_name_5 (opposing_team VARCHAR, status VARCHAR)"
  },
  {
    "answer": "SELECT opposing_team FROM table_name_30 WHERE status = \"second test\"",
    "question_en": "What was the opposing team for the second test?",
    "question_th": "ทีมตรงข้ามในการทดสอบครั้งที่สองคือทีมใด",
    "context": "CREATE TABLE table_name_30 (opposing_team VARCHAR, status VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_40 WHERE venue = \"canberra stadium\"",
    "question_en": "What round was in canberra stadium?",
    "question_th": "ที่แคนเบอร์รา สเตเดี้ยม รอบไหนคะ?",
    "context": "CREATE TABLE table_name_40 (round VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_87 WHERE opponent = \"cronulla sharks\"",
    "question_en": "What is the venue of the match with cronulla sharks as the opponent?",
    "question_th": "สนามไหนของแมตช์ที่มีฉลามโครนัลล่าเป็นคู่ต่อสู้?",
    "context": "CREATE TABLE table_name_87 (venue VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_75 WHERE venue = \"toyota stadium\"",
    "question_en": "Who is the opponent at toyota stadium?",
    "question_th": "คู่ต่อสู้ที่สนามโตโยต้าคือใคร?",
    "context": "CREATE TABLE table_name_75 (opponent VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_83 WHERE opponent = \"sydney roosters\"",
    "question_en": "What is the score of the match with the sydney roosters as the opponent?",
    "question_th": "แมตช์นี้ซิดนี่ย์เจื้อยแจ้วเป็นคู่ต่อสู้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_83 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_49 WHERE opponent = \"cronulla sharks\"",
    "question_en": "What is the venue of the match with the cronulla sharks as the opponent?",
    "question_th": "สนามแห่งใดของแมตช์ที่มีฉลามโครนัลลาเป็นคู่ต่อสู้?",
    "context": "CREATE TABLE table_name_49 (venue VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_name_9 WHERE game = \"4\"",
    "question_en": "What Location Attendance has a Game of 4?",
    "question_th": "การเข้าร่วมสถานที่ใดที่มีเกม 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_en": "What Date has a Location Attendance of reunion arena?",
    "question_th": "มีสถานที่เข้าร่วมงานเรอูนียงอารีน่าวันไหน?",
    "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_en": "What Record has a Location Attendance of delta center, and an Opponent of vs vancouver grizzlies?",
    "question_th": "บันทึกใดที่มีตำแหน่งผู้เข้าร่วมของเดลต้าเซ็นเตอร์ และเป็นฝ่ายตรงข้ามของ vs แวนคูเวอร์ กริซลี่ส์?",
    "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_en": "What Location Attendance has an Opponent of at denver nuggets?",
    "question_th": "การเข้าร่วมสถานที่ใดที่มีฝ่ายตรงข้ามของนักเก็ตเดนเวอร์?",
    "context": "CREATE TABLE table_name_66 (location_attendance VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_99 WHERE opponent = \"vs washington wizards\"",
    "question_en": "What Record has an Opponent of vs washington wizards?",
    "question_th": "สถิติใดที่มีฝ่ายตรงข้ามของ 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_en": "What Location Attendance has a Game of 14?",
    "question_th": "สถานที่ใดที่ผู้เข้าร่วมมีเกม 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_en": "What was the final score of the game against shingo kunieda maikel scheffers when robin ammerlaan was Ronald Vink's partner?",
    "question_th": "อะไรคือคะแนนสุดท้ายของเกมที่พบกับชินโก คูเนียดา ไมเคล เชฟเฟอร์ส เมื่อโรบิน อัมเมอร์ลานเป็นคู่หูของโรนัลด์ วิงค์?",
    "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_en": "What championship tournament did Ronald Vink play in with maikel scheffers as his partner in 2007 against stephane houdet nicolas peiffer?",
    "question_th": "Ronald Vink ลงเล่นในทัวร์นาเมนต์ชิงแชมป์รายการใดโดยมี Maikel Scheffers เป็นคู่หูของเขาในปี 2007 พบกับ 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_en": "What is the screen size of the s45 (Australia only) Model with no bluetooth?",
    "question_th": "หน้าจอของ s45 (ออสเตรเลียเท่านั้น) รุ่นที่ไม่มีบลูทูธมีขนาดหน้าจอเท่าไร?",
    "context": "CREATE TABLE table_name_8 (screen_size VARCHAR, bluetooth VARCHAR, model VARCHAR)"
  },
  {
    "answer": "SELECT bluetooth FROM table_name_31 WHERE model = \"s90i\"",
    "question_en": "Does the S90i model have bluetooth?",
    "question_th": "รุ่น S90i มีบลูทูธมั้ย?",
    "context": "CREATE TABLE table_name_31 (bluetooth VARCHAR, model VARCHAR)"
  },
  {
    "answer": "SELECT bluetooth FROM table_name_31 WHERE model = \"s35\"",
    "question_en": "Does the s35 model have bluetooth?",
    "question_th": "รุ่นs35มีบลูทูธมั้ยคะ?",
    "context": "CREATE TABLE table_name_31 (bluetooth VARCHAR, model VARCHAR)"
  },
  {
    "answer": "SELECT height FROM table_name_49 WHERE club = \"havk mladost\"",
    "question_en": "What is the height for club Havk Mladost?",
    "question_th": "สโมสร Havk Mladost มีส่วนสูงเท่าไร?",
    "context": "CREATE TABLE table_name_49 (height VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT height FROM table_name_45 WHERE name = \"nikola franković\"",
    "question_en": "What is the height for Nikola Franković?",
    "question_th": "Nikola Franković ส่วนสูงเท่าไหร่?",
    "context": "CREATE TABLE table_name_45 (height VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT weight FROM table_name_95 WHERE name = \"damir burić\"",
    "question_en": "What is the weight of Damir Burić?",
    "question_th": "ดามีร์ บุริช หนักเท่าไหร่?",
    "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_en": "What is Total, when Rank Points is \"15\", and when Event is \"WC Beijing\"?",
    "question_th": "คะแนนรวมคืออะไร เมื่อคะแนนอันดับคือ \"15\" และเมื่อเหตุการณ์คือ \"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_en": "What is Score Points, when Event is \"WC Rio De Janeiro\", and when Rank Points is \"10\"?",
    "question_th": "คะแนนคะแนนคืออะไร เมื่ออีเวนต์คือ \"WC ริโอ เด จาเนโร\" และเมื่อคะแนนอันดับคือ \"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_en": "What is Shooter, when Total is \"21\"?",
    "question_th": "Shooter คืออะไร เมื่อผลรวมคือ \"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_en": "What is Score Points, when Shooter is \"Sandra Kolly ( SUI )\"?",
    "question_th": "Score Points คืออะไร เมื่อ Shooter คือ \"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_en": "What is Rank Points, when Event is \"WC Milan\", and when Shooter is \"Lalita Yauhleuskaya ( AUS )\"?",
    "question_th": "คะแนนอันดับคืออะไร เมื่อกิจกรรมคือ \"WC Milan\" และเมื่อผู้ยิงคือ \"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_en": "What is Rank Points, when Total is \"17\", and when Shooter is \"Lalita Yauhleuskaya ( AUS )\"?",
    "question_th": "คะแนนอันดับคืออะไร เมื่อคะแนนรวมคือ \"17\" และเมื่อนักกีฬาคือ \"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_en": "Which Artist is listed as having Top 6 in Week",
    "question_th": "ศิลปินคนไหนที่มีรายชื่อติด 6 อันดับแรกในสัปดาห์",
    "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_en": "Which song was sung by Artist Luther Vandross in the Week Top 20?",
    "question_th": "เพลงใดที่ร้องโดยศิลปิน Luther Vandross ใน 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_en": "Which Artist has a Week of Top 12?",
    "question_th": "ศิลปินคนไหนมีสัปดาห์ติด 12 อันดับแรก?",
    "context": "CREATE TABLE table_name_54 (artist VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_32 WHERE artist = \"freddie jackson\"",
    "question_en": "What Status does Freddie Jackson have?",
    "question_th": "Freddie Jackson มีสถานะอะไร?",
    "context": "CREATE TABLE table_name_32 (status VARCHAR, artist VARCHAR)"
  },
  {
    "answer": "SELECT song_sung FROM table_name_14 WHERE status = \"eliminated\"",
    "question_en": "Which Song Sung has a Status of Eliminated?",
    "question_th": "ซงซองคนไหนที่มีสถานะถูกคัดออก?",
    "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_en": "What is the place of the player with a 71-69-66=206 score?",
    "question_th": "นักเตะที่มีคะแนน 71-69-66=206 อยู่อันดับที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_95 (place VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_44 WHERE score = 71 - 66 - 64 = 201",
    "question_en": "What is the place of the player with a 71-66-64=201 score?",
    "question_th": "นักเตะที่มีคะแนน 71-66-64=201 อยู่ในอันดับที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_44 (place VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_91 WHERE player = \"peter senior\"",
    "question_en": "What is the to par of player peter senior?",
    "question_th": "อะไรคือสิ่งที่ดีกว่าของนักเตะปีเตอร์ ซีเนียร์?",
    "context": "CREATE TABLE table_name_91 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT finalist FROM table_name_30 WHERE year = 2008",
    "question_en": "What is Finalist, when Year is \"2008\"?",
    "question_th": "Finalist คืออะไร เมื่อปี \"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_en": "What is Place, when Year is greater than 2006, and when Champion is \"Asvel\"?",
    "question_th": "สถานที่คืออะไร เมื่อปีมากกว่าปี 2006 และเมื่อแชมป์คือ \"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_en": "What is Champion, when Year is greater than 2007, and when Finalist is \"Asvel\"?",
    "question_th": "Champion คืออะไร เมื่อปีมากกว่าปี 2007 และเมื่อผู้เข้ารอบสุดท้ายคือ \"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_en": "What is 2nd Party, when Election is \"1865\"?",
    "question_th": "พรรคที่ 2 คืออะไร เมื่อการเลือกตั้งคือ \"พ.ศ. 2408\"?",
    "context": "CREATE TABLE table_name_82 (election VARCHAR)"
  },
  {
    "answer": "SELECT first_member FROM table_name_95 WHERE election = \"1871 by-election\"",
    "question_en": "What is First Member, when Election is \"1871 by-election\"?",
    "question_th": "สมาชิกคนแรกคืออะไร เมื่อการเลือกตั้งคือ \"การเลือกตั้งซ่อม พ.ศ. 2414\"?",
    "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_en": "What is 1st Party, when First Member is \"Peter John Locke King\", and when Second Member is \"James Watney\"?",
    "question_th": "บุคคลที่ 1 คืออะไร เมื่อสมาชิกคนแรกคือ \"ปีเตอร์ จอห์น ล็อค คิง\" และเมื่อสมาชิกคนที่สองคือ \"เจมส์ วัตนีย์\"",
    "context": "CREATE TABLE table_name_18 (first_member VARCHAR, second_member VARCHAR)"
  },
  {
    "answer": "SELECT second_member FROM table_name_99 WHERE election = \"1835\"",
    "question_en": "What is Second Member, when Election is \"1835\"?",
    "question_th": "สมาชิกคนที่สองคืออะไร เมื่อการเลือกตั้งคือ \"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_en": "How much Played has Goals Against of 45, and Goals For smaller than 65?",
    "question_th": "เท่าไหร่ที่เล่นได้ประตูต่อ 45 และประตูสำหรับน้อยกว่า 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_en": "How many Goals Against have a Position of 4?",
    "question_th": "จำนวนประตูที่ต่อต้านมีตำแหน่ง 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_en": "What is the highest total when bronze is less than 1 and gold more than 0?",
    "question_th": "ผลรวมสูงสุดเมื่อทองแดงน้อยกว่า 1 และทองมากกว่า 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_en": "what is the sum of bronze when the rank is 5, the nation is poland and gold is less than 0?",
    "question_th": "ผลรวมของทองแดงเมื่ออันดับ 5 ประเทศคือโปแลนด์และทองน้อยกว่า 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_en": "what is the sum of silver when the rank is 3, nation is france and bronze is less than 0?",
    "question_th": "ผลรวมของเงินเมื่ออันดับ 3, ประเทศคือฝรั่งเศส และทองแดงน้อยกว่า 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_en": "How many times is the nation china and bronze more than 0?",
    "question_th": "ชาติจีนและบรอนซ์มีค่ามากกว่า 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_en": "How many times is the rank higher than 3 and bronze more than 1?",
    "question_th": "อันดับสูงกว่า 3 และทองแดงมากกว่า 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_en": "what is the least silver when bronze is 1, rank is less than 2 and gold is more than 4?",
    "question_th": "เงินน้อยที่สุดคืออะไรเมื่อทองแดงเป็น 1 อันดับน้อยกว่า 2 และทองมากกว่า 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_en": "What is the average value for Draws, when Against is \"2177\", and when Byes is less than 4?",
    "question_th": "ค่าเฉลี่ยของการเสมอคือเท่าไร เมื่อต่อต้านคือ \"2177\" และเมื่อบายน้อยกว่า 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_en": "What is the total number of Losses, when Wins is \"16\", and when Against is less than 772?",
    "question_th": "จำนวนการแพ้ทั้งหมดคือเท่าไร เมื่อชนะคือ \"16\" และเมื่อต่อต้านน้อยกว่า 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_en": "What is the lowest value for Draws, when Losses is \"0\", and when Byes is greater than 4?",
    "question_th": "ค่าต่ำสุดสำหรับการเสมอ เมื่อการแพ้คือ \"0\" และเมื่อ Byes มากกว่า 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_en": "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?",
    "question_th": "ค่าสูงสุดสำหรับ Byes คือเมื่อชนะน้อยกว่า 16 เมื่อ Benalla DFL คือ \"Swanpool\" และเมื่อ Against น้อยกว่า 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_en": "What is the highest value for Byes, when Against is less than 1794, when Losses is \"6\", and when Draws is less than 0?",
    "question_th": "ค่าสูงสุดสำหรับ Byes คือเมื่อ Against น้อยกว่า 1794 เมื่อแพ้คือ \"6\" และเมื่อเสมอน้อยกว่า 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_en": "what is the teams for season 1950-51?",
    "question_th": "ฤดูกาล 1950-51 มีทีมอะไรบ้าง?",
    "context": "CREATE TABLE table_name_89 (teams VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT league FROM table_name_93 WHERE season = \"1955-56\"",
    "question_en": "What is the league for season 1955-56?",
    "question_th": "ลีกฤดูกาล 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_en": "What is the drafted year when the FCSL Team was Winter Park, in the 4th round?",
    "question_th": "ทีม FCSL คือ Winter Park ในรอบที่ 4 ดราฟท์ปีอะไรคะ?",
    "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_en": "What is the FCSL Team when the MLB Team is Toronto Blue Jays, in the 4th round?",
    "question_th": "ทีม FCSL คืออะไร ในเมื่อทีม MLB คือ Toronto Blue Jays ในรอบที่ 4?",
    "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_en": "What was John Fought's score?",
    "question_th": "คะแนนของ John Fought คืออะไร?",
    "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_en": "What is the to par of the player from Argentina with a t8 place?",
    "question_th": "อะไรคือความได้เปรียบของผู้เล่นจากอาร์เจนตินาที่อันดับ 8?",
    "context": "CREATE TABLE table_name_5 (to_par VARCHAR, place VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT money___£__ FROM table_name_62 WHERE score = 68 - 67 - 69 - 71 = 275",
    "question_en": "How much money does the player with a 68-67-69-71=275 score have?",
    "question_th": "ผู้เล่นที่มีคะแนน 68-67-69-71=275 มีเงินเท่าไหร่?",
    "context": "CREATE TABLE table_name_62 (money___£__ VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_9 WHERE place = \"t1\" AND player = \"wayne grady\"",
    "question_en": "What is the country of t1 place player wayne grady?",
    "question_th": "เวย์น เกรดี้ ผู้เล่นอันดับ 1 ประเทศอะไร?",
    "context": "CREATE TABLE table_name_9 (country VARCHAR, place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT money___£__ FROM table_name_78 WHERE score = 68 - 71 - 68 - 72 = 279",
    "question_en": "How much money does the player with a 68-71-68-72=279 score have?",
    "question_th": "ผู้เล่นที่มีคะแนน 68-71-68-72=279 มีเงินเท่าไหร่?",
    "context": "CREATE TABLE table_name_78 (money___£__ VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT money___£__ FROM table_name_20 WHERE score = 69 - 70 - 72 - 64 = 275",
    "question_en": "How much money does the player with a 69-70-72-64=275 score have?",
    "question_th": "ผู้เล่นที่มีคะแนน 69-70-72-64=275 มีเงินเท่าไหร่?",
    "context": "CREATE TABLE table_name_20 (money___£__ VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT money___$__ FROM table_name_21 WHERE place = \"t8\" AND score = 74 - 72 - 75 - 71 = 292",
    "question_en": "What was the money when the place was t8 and the score was 74-72-75-71=292?",
    "question_th": "เงินเป็นเท่าไหร่เมื่อสถานที่คือ t8 และคะแนนเป็น 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_en": "What was the average money when the score was 74-72-75-71=292?",
    "question_th": "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_en": "What was Tim Simpson's place?",
    "question_th": "สถานที่ของ Tim Simpson คืออะไร?",
    "context": "CREATE TABLE table_name_94 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_16 WHERE place = \"3\"",
    "question_en": "What country placed 3?",
    "question_th": "อันดับ 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_en": "What is the average Barrow Island Australia when Draugen north sea is 17 and Mutineer-Exeter Australia is smaller than 6?",
    "question_th": "ค่าเฉลี่ยของเกาะ Barrow Island Australia คือเท่าไร เมื่อ Draugen ทะเลเหนืออายุ 17 ปี และ Mutineer-Exeter Australia มีขนาดเล็กกว่า 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_en": "What is the highest CPC blend Kazakhstan number when Barrow Island Australia is smaller than 12?",
    "question_th": "CPC สูงสุดผสมผสานหมายเลขคาซัคสถานเมื่อ Barrow Island Australia น้อยกว่า 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_en": "What is the lowest CPC Blend Kazakhstan number when Draugen North Sea is 17?",
    "question_th": "หมายเลข CPC Blend คาซัคสถานต่ำที่สุดเมื่อ Draugen North Sea คือ 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_en": "What race did eugenio silvani win?",
    "question_th": "ยูเจนิโอ ซิลวานี ชนะการแข่งขันรายการใด",
    "context": "CREATE TABLE table_name_7 (name VARCHAR, winning_driver VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_19 WHERE winning_constructor = \"mercedes\"",
    "question_en": "Which race did Mercedes win?",
    "question_th": "Mercedes ชนะการแข่งขันรายการใด",
    "context": "CREATE TABLE table_name_19 (name VARCHAR, winning_constructor VARCHAR)"
  },
  {
    "answer": "SELECT circuit FROM table_name_41 WHERE winning_constructor = \"alfa romeo\"",
    "question_en": "Which circuit did alfa romeo win?",
    "question_th": "Alfa Romeo ชนะสนามไหน?",
    "context": "CREATE TABLE table_name_41 (circuit VARCHAR, winning_constructor VARCHAR)"
  },
  {
    "answer": "SELECT number_range FROM table_name_60 WHERE quantity = \"56\"",
    "question_en": "What is the number range for the 56 quantity?",
    "question_th": "จำนวน 56 มีช่วงหมายเลขเท่าใด",
    "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_en": "Which team in 1987 had a start of 28 and drove a chrysler?",
    "question_th": "ทีมใดในปี 1987 ที่ออกสตาร์ทด้วยคะแนน 28 และขับไครสเลอร์?",
    "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_en": "What is Party, when District is \"Tennessee 8\"?",
    "question_th": "ปาร์ตี้คืออะไร เมื่อเขตคือ \"เทนเนสซี 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_en": "What is the total number of First Elected, when Party is \"Democratic\", and when District is \"Tennessee 5\"?",
    "question_th": "จำนวนผู้ได้รับเลือกครั้งแรกทั้งหมดเป็นเท่าใด เมื่อพรรคเป็น \"ประชาธิปไตย\" และเมื่อเขตเป็น \"เทนเนสซี 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_en": "What is the lowest First Elected, when Results is \"Re-elected\", and when Incumbent is \"Lincoln Davis\"?",
    "question_th": "อะไรคือการเลือกตั้งครั้งแรกที่ต่ำที่สุด เมื่อผลลัพธ์คือ \"ได้รับการเลือกตั้งใหม่\" และเมื่อผู้ดำรงตำแหน่งคือ \"ลินคอล์น เดวิส\"",
    "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_en": "What is the highest First Elected, when Results is \"Re-elected\", and when Incumbent is \"Lincoln Davis\"?",
    "question_th": "การเลือกตั้งครั้งแรกที่สูงที่สุดคืออะไร เมื่อผลลัพธ์คือ \"ได้รับการเลือกตั้งใหม่\" และเมื่อผู้ดำรงตำแหน่งคือ \"ลินคอล์น เดวิส\"",
    "context": "CREATE TABLE table_name_24 (first_elected INTEGER, results VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_86 WHERE against = 44",
    "question_en": "What is the Status of the 44 Against?",
    "question_th": "สถานะของ 44 ต่อคืออะไร?",
    "context": "CREATE TABLE table_name_86 (status VARCHAR, against VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_8 WHERE against = 42",
    "question_en": "What is the date of the 42 Against?",
    "question_th": "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_en": "What is the total number for Seve Ballesteros?",
    "question_th": "เซเว บาเยสเตรอส มีจำนวนรวมเท่าไร?",
    "context": "CREATE TABLE table_name_24 (total VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MIN(to_par) FROM table_name_91 WHERE player = \"bob charles\"",
    "question_en": "What is the lowest to par for Bob Charles?",
    "question_th": "พาร์ต่ำสุดสำหรับ 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_en": "Who is born on 1982-01-29?",
    "question_th": "ใครเกิดวันที่ 29-01-2525?",
    "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_en": "What is the position played by the man born on 1976-09-20?",
    "question_th": "ผู้ชายที่เกิดวันที่ 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_en": "What country was the golfer with a score of 72-72-72=216 representing?",
    "question_th": "นักกอล์ฟที่มีคะแนน 72-72-72=216 เป็นตัวแทนประเทศใด",
    "context": "CREATE TABLE table_name_78 (country VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT division_two FROM table_name_26 WHERE premier_division = \"leominster town\"",
    "question_en": "Which Division Two team were champions as the same time the Premier Division Leominster town team were champs?",
    "question_th": "ทีมดิวิชั่น 2 ทีมใดเป็นแชมป์ในขณะที่ทีมเมืองลีโอมินสเตอร์ของพรีเมียร์ดิวิชั่นเป็นแชมป์?",
    "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_en": "Which Season was the Division Three Hampton Park Rangers champions?",
    "question_th": "ฤดูกาลใดที่เป็นแชมป์ดิวิชั่น 3 ของแฮมป์ตัน ปาร์ค เรนเจอร์ส?",
    "context": "CREATE TABLE table_name_63 (season VARCHAR, division_three VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_92 WHERE division_two = \"fownhope reserves\"",
    "question_en": "Which Season was the Division Two Fownhope Reserves champions?",
    "question_th": "ฤดูกาลใดที่เป็นแชมป์ดิวิชั่น 2 Fownhope Reserves?",
    "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_en": "What Division One team were champions at the same time the Division Two Hereford Lads Club Colts were champs?",
    "question_th": "ทีมดิวิชั่นหนึ่งทีมใดเป็นแชมป์ในเวลาเดียวกันกับทีมดิวิชั่นสอง Hereford Lads Club Colts เป็นแชมป์?",
    "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_en": "Which year were both the Premier Division Ewyas Harold and Division Three Stoke Prior champions?",
    "question_th": "ปีไหนที่ทั้งแชมป์พรีเมียร์ดิวิชั่นเอวิยาส ฮาโรลด์และดิวิชั่นสามสโต๊คไพรเออร์เป็นแชมป์?",
    "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_en": "What engine has an output of ps (kw; hp) @4700 rpm?",
    "question_th": "เครื่องยนต์ใดที่มีกำลัง ps (kw; hp) @4700 รอบต่อนาที?",
    "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_en": "What is the 0–100km/h,s for the output of ps (kw; hp) @4000 rpm?",
    "question_th": "0–100 กม./ชม. สำหรับเอาท์พุต 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_en": "Who were the opposing teams on 08/02/1969?",
    "question_th": "ทีมตรงข้ามเมื่อวันที่ 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_en": "What is the highest number against on 12/04/1969?",
    "question_th": "เลขสูงสุดเทียบกับวันที่ 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_en": "What is the venue of the match with more than 8 against and ireland as the opposing team?",
    "question_th": "สนามใดของแมตช์ที่มีมากกว่า 8 นัด และไอร์แลนด์เป็นทีมตรงข้าม?",
    "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_en": "which Place has a Player of mark brooks?",
    "question_th": "สถานที่ใดมีผู้เล่นของมาร์ค บรูคส์",
    "context": "CREATE TABLE table_name_30 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_48 WHERE player = \"justin leonard\"",
    "question_en": "Which Place has a Player of justin leonard?",
    "question_th": "สถานที่ใดที่มีผู้เล่นของจัสติน ลีโอนาร์ด?",
    "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_en": "Name the Place which has a Score of 67-71=138, united states?",
    "question_th": "ตั้งชื่อสถานที่ซึ่งมีคะแนน 67-71=138 สหรัฐอเมริกาใช่ไหม?",
    "context": "CREATE TABLE table_name_17 (place VARCHAR, country VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_99 WHERE to_par = \"–6\"",
    "question_en": "Name the Player which has a To par of –6?",
    "question_th": "ตั้งชื่อผู้เล่นที่มีพาร์ถึง –6 หรือไม่?",
    "context": "CREATE TABLE table_name_99 (player VARCHAR, to_par VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_15 WHERE week = 11",
    "question_en": "What was their record on week 11?",
    "question_th": "บันทึกของพวกเขาในสัปดาห์ที่ 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_en": "Who did they play at Atlanta-Fulton County Stadium?",
    "question_th": "พวกเขาเล่นกับใครที่ 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_en": "What was their record when they played at Riverfront Stadium?",
    "question_th": "สถิติของพวกเขาเมื่อเล่นที่ริเวอร์ฟรอนต์ สเตเดี้ยมคืออะไร?",
    "context": "CREATE TABLE table_name_25 (record VARCHAR, game_site VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_41 WHERE english_title = \"another she\"",
    "question_en": "What is Another She's Label?",
    "question_th": "ป้ายชื่อของเธออีกคืออะไร?",
    "context": "CREATE TABLE table_name_41 (label VARCHAR, english_title VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_92 WHERE chinese__simplified_ = \"你 朋友\"",
    "question_en": "What is 你 朋友's Label?",
    "question_th": "ป้ายกำกับของคุณ 朋友 คืออะไร?",
    "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_en": "What Label was Released on December 7, 2012?",
    "question_th": "ป้ายกำกับใดที่เปิดตัวเมื่อวันที่ 7 ธันวาคม 2555",
    "context": "CREATE TABLE table_name_27 (label VARCHAR, release_date VARCHAR)"
  },
  {
    "answer": "SELECT english_title FROM table_name_11 WHERE chinese__simplified_ = \"你 朋友\"",
    "question_en": "What is 你 朋友's English title?",
    "question_th": "ชื่อภาษาอังกฤษของคุณคืออะไร?",
    "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_en": "What is the Release date of the Album Your Friend?",
    "question_th": "อัลบั้ม 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_en": "What was the runner-up when champion is 0, 4th place is 0 and rank is 6?",
    "question_th": "รองชนะเลิศคืออะไรเมื่อแชมป์เป็น 0 อันดับที่ 4 เป็น 0 และอันดับเป็น 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_en": "What is the runner-up for rank of 7?",
    "question_th": "รองชนะเลิศอันดับที่ 7 คืออะไร?",
    "context": "CREATE TABLE table_name_12 (runner_up VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT runner_up FROM table_name_51 WHERE total = 5",
    "question_en": "What is the runner-up when the total is 5?",
    "question_th": "รองชนะเลิศคืออะไรเมื่อรวมเป็น 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_en": "What was the score of team 2 Stade Lavallois (D1)?",
    "question_th": "ทีมที่ 2 สตาด ลาวาลัวส์ (D1) ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_5 (score VARCHAR, team_2 VARCHAR)"
  },
  {
    "answer": "SELECT displacement_cc FROM table_name_94 WHERE year = \"1965\"",
    "question_en": "What is the CC displacement for 1965?",
    "question_th": "การกระจัดของ CC ในปี 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_en": "What year was the Grand Prix with an i8 engine and a cc displacement of 1500?",
    "question_th": "กรังด์ปรีซ์ที่มีเครื่องยนต์ i8 และปริมาตรกระบอกสูบ 1,500 ซีซีเป็นปีใด",
    "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_en": "What type of car has the model 6cm?",
    "question_th": "รถรุ่นอะไรที่มีขนาด 6 ซม.?",
    "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_en": "What cc displacement has an i6 engine in 1936?",
    "question_th": "ความจุกระบอกสูบใดที่มีเครื่องยนต์ i6 ในปี 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_en": "What type of car has the v16 engine?",
    "question_th": "รถรุ่นไหนมีเครื่องยนต์ v16?",
    "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_en": "What is the total number of years won by Justin Leonard with a to par under 9?",
    "question_th": "จัสติน ลีโอนาร์ด ชนะโดยมีพาร์ต่ำกว่า 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_en": "What is the highest total for Scotland with a year won of 1985?",
    "question_th": "ผลรวมสูงสุดสำหรับสกอตแลนด์โดยชนะในปี 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_en": "What is Date (Opening), when Opening Film is \"Another Myanmar, Mae Sot\"?",
    "question_th": "วันไหน (เปิด) เมื่อหนังเปิดคือ \"อีกพม่า แม่สอด\"?",
    "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_en": "What is Date (Closing), when Opening Film is \"Deconstruction of Korean Housewife\"?",
    "question_th": "วันที่ (ปิด) คือเมื่อภาพยนตร์เปิดเรื่องเป็น \"การรื้อโครงสร้างแม่บ้านเกาหลี\"?",
    "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_en": "What is the total number of Year(s), when Date (Opening) is \"September 21\"?",
    "question_th": "จำนวนปีทั้งหมดคือวันที่ (เปิดทำการ) คือ \"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_en": "What is Date (Opening), when Year is less than 2010, and when Date (Closing) is \"September 28\"?",
    "question_th": "วันที่ (เปิด) คืออะไร โดยปีน้อยกว่า 2010 และเมื่อใด (ปิด) คือ \"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_en": "What is Date (Closing), when Year is greater than 2011?",
    "question_th": "วันที่ (ปิด) คืออะไร โดยปีมากกว่าปี 2554",
    "context": "CREATE TABLE table_name_83 (date__closing_ VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT COUNT(earnings_per_share__) AS ¢_ FROM table_name_38 WHERE net_profit__us_$m_ > 66 AND year_to_april < 2010",
    "question_en": "Name the number of Earnings per share (¢) which has a Net profit (US $m) larger than 66, and a Year to April smaller than 2010?",
    "question_th": "ตั้งชื่อจำนวนกำไรต่อหุ้น (¢) ซึ่งมีกำไรสุทธิ (US $m) มากกว่า 66 และปีถึงเดือนเมษายนน้อยกว่าปี 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__¢_ > 47",
    "question_en": "Name the total number of EBIT (US $m) in 2011 and a Earnings per share (¢) larger than 47?",
    "question_th": "ตั้งชื่อจำนวน EBIT ทั้งหมด (US $m) ในปี 2554 และกำไรต่อหุ้น (¢) มากกว่า 47?",
    "context": "CREATE TABLE table_name_46 (ebit__us_ VARCHAR, year_to_april VARCHAR, earnings_per_share__¢_ VARCHAR)"
  },
  {
    "answer": "SELECT SUM(earnings_per_share__) AS ¢_ FROM table_name_34 WHERE year_to_april < 2012 AND revenue__us_$million_ = 432.6 AND ebit__us_$m_ < 150.5",
    "question_en": "Count the  Earnings per share (¢) in April smaller than 2012, a Revenue (US $million) of 432.6 and a EBIT (US $m) smaller than 150.5?",
    "question_th": "นับกำไรต่อหุ้น (¢) ในเดือนเมษายนที่น้อยกว่าปี 2012 รายได้ (ล้านเหรียญสหรัฐ) ที่ 432.6 และ EBIT (ล้านเหรียญสหรัฐ) น้อยกว่า 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_en": "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?",
    "question_th": "นับ EBIT (US $m) ซึ่งมีรายได้ (US $ million) มากกว่า 434.8 และกำไรสุทธิ (US $m) มากกว่า 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_en": "What position does Barry Richter play?",
    "question_th": "แบร์รี่ ริชเตอร์ เล่นตำแหน่งอะไร?",
    "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_en": "What nationality is Mark Hirth from Michigan State University (NCAA)?",
    "question_th": "Mark Hirth จาก 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_en": "What NHL team does Rob White play on?",
    "question_th": "Rob White เล่นกับทีมใดของ NHL",
    "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_en": "What is the pick number for position of D from the University of Maine (NCAA)?",
    "question_th": "หมายเลขเลือกสำหรับตำแหน่ง D จากมหาวิทยาลัยเมน (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_en": "What college/junior/club team is a left wing from Canada?",
    "question_th": "ทีมวิทยาลัย/จูเนียร์/สโมสรใดที่เป็นปีกซ้ายจากแคนาดา",
    "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_en": "What is the average last cf of the st. louis blues, who has less than 4 cf appearances and less than 1 cf wins?",
    "question_th": "cf สุดท้ายโดยเฉลี่ยของเซนต์เป็นเท่าใด หลุยส์ บลูส์ ใครลงเล่นน้อยกว่า 4 CF และน้อยกว่า 1 CF ชนะ?",
    "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_en": "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?",
    "question_th": "จำนวนการชนะ CF ต่ำสุดของ Chicago Blackhawks ซึ่งมีการลงเล่น CF มากกว่า 4 นัด ครั้งล่าสุดในปี 2013 และการชนะบอลถ้วยมากกว่า 2 ครั้งคือเท่าใด",
    "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_en": "What is the lowest number of last cfs of the team with 2 cf appearances, 0 cup wins, and less than 0 cf wins?",
    "question_th": "จำนวน CF ล่าสุดของทีมที่ลงเล่น 2 นัด, ชนะ 0 คัพ, และชนะน้อยกว่า 0 CF คือเท่าใด?",
    "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_en": "What position did the driver from Audi Sport North America finish in the race after 2008?",
    "question_th": "นักแข่งจาก Audi Sport North America จบการแข่งขันหลังปี 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_en": "What event has 8 as the rank points, with 20 as the total?",
    "question_th": "เหตุการณ์ใดมี 8 คะแนนเป็นคะแนนรวม 20 คะแนน?",
    "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_en": "What shooter has wc munich as the event, and 8 as the rank points?",
    "question_th": "นักกีฬาคนใดมี WC มิวนิคเป็นกิจกรรม และมี 8 คะแนนเป็นคะแนนอันดับ",
    "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_en": "What score points have olympic gold medalist as the rank points?",
    "question_th": "คะแนนคะแนนใดที่มีผู้ชนะเลิศเหรียญทองโอลิมปิกเป็นคะแนนอันดับ",
    "context": "CREATE TABLE table_name_19 (score_points VARCHAR, rank_points VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_95 WHERE to_par = \"–5\" AND player = \"nick faldo\"",
    "question_en": "With a To par of –5, what is Nick Faldo's Place?",
    "question_th": "ด้วยพาร์ถึง –5 แล้วตำแหน่งของ Nick Faldo คืออะไร?",
    "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_en": "What is Fuzzy Zoeller's To par?",
    "question_th": "To par ของ Fuzzy Zoeller คืออะไร?",
    "context": "CREATE TABLE table_name_29 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT governments FROM table_name_23 WHERE party = \"kadima\"",
    "question_en": "What is the Government the has the Kadima Party?",
    "question_th": "รัฐบาลมีพรรคกะดีมาอะไร?",
    "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_en": "Which Rank points has a Score points of olympic silver medalist?",
    "question_th": "คะแนนอันดับใดมีคะแนนคะแนนของผู้ชนะเลิศเหรียญเงินโอลิมปิก",
    "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_en": "Which Shooter has a Rank points of 8 and a Event of wc milan?",
    "question_th": "Shooter คนไหนมีคะแนนอันดับ 8 และเหตุการณ์ของ 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_en": "Which Score points has an Event of og beijing, and Rank points of olympic gold medalist?",
    "question_th": "คะแนนคะแนนใดมีงานของ OG Beijing และคะแนนอันดับผู้ชนะเลิศเหรียญทองโอลิมปิก?",
    "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_en": "Name Event of wc milan and a Total of 23?",
    "question_th": "ตั้งชื่อเหตุการณ์ของ wc มิลานและรวม 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_en": "which Score points has a Rank points of 10, and an Event of wc milan?",
    "question_th": "คะแนนคะแนนใดมีคะแนนอันดับ 10 และเหตุการณ์ของ 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_en": "What was willie goggin's score?",
    "question_th": "วิลลี่ ก็อกกินได้คะแนนเท่าไหร่?",
    "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_en": "Which Place has a Country of united states, and a Money ($) larger than 0, and a Player of craig wood?",
    "question_th": "สถานที่ใดที่มีประเทศสหรัฐอเมริกา และเงิน ($) มากกว่า 0 และผู้เล่นจาก 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_en": "What is the home team on March 7?",
    "question_th": "เจ้าบ้านวันที่ 7 มีนาคมจะเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_61 (home VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_74 WHERE date = \"october 30\"",
    "question_en": "What is the record on October 30?",
    "question_th": "บันทึกประจำวันที่ 30 ตุลาคม คืออะไร?",
    "context": "CREATE TABLE table_name_74 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_39 WHERE date = \"february 19\"",
    "question_en": "What is the record on February 19?",
    "question_th": "บันทึกประจำวันที่ 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_en": "What was d. a. weibring's to par?",
    "question_th": "ดา ไวบริงส์ได้พาร์เท่าไหร่?",
    "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_en": "For which to par was the score 71-74-68=213?",
    "question_th": "คะแนนพาร์ไหน 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_en": "What player scored 70-72-70=212?",
    "question_th": "นักเตะคนไหนทำคะแนนได้ 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_en": "What is the to par for the score 72-69-68=209?",
    "question_th": "คะแนนพาร์ 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_en": "What was Australia's to par when the place was t9?",
    "question_th": "สิ่งที่ออสเตรเลียจะต้องได้เปรียบเมื่อสถานที่นั้นอยู่ที่ 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_en": "Wht did Mark O'Meara place when the to par was +2?",
    "question_th": "Mark O'Meara วางพาร์ไว้ที่ไหนเมื่อพาร์คือ +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_en": "What is the total number of losses for entries with 15 wins and a position larger than 3?",
    "question_th": "จำนวนการสูญเสียทั้งหมดสำหรับรายการที่ชนะ 15 ครั้งและตำแหน่งที่มากกว่า 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_en": "What is the goal difference for entries with more than 6 draws, a position lower than 12, and fewer than 9 wins?",
    "question_th": "อะไรคือผลต่างประตูสำหรับรายการที่เสมอกันมากกว่า 6 ครั้ง ตำแหน่งต่ำกว่า 12 และชนะน้อยกว่า 9 ครั้ง?",
    "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_en": "What is the position of club Melilla CF, with a goal difference smaller than -10?",
    "question_th": "ตำแหน่งของสโมสร เมลิญา ซีเอฟ โดยมีผลต่างประตูน้อยกว่า -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_en": "What is the sum of goals against for positions higher than 14, with fewer than 30 played?",
    "question_th": "ผลรวมของประตูสำหรับตำแหน่งที่สูงกว่า 14 โดยเล่นน้อยกว่า 30 เป็นเท่าใด",
    "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_en": "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?",
    "question_th": "จำนวนชัยชนะโดยเฉลี่ยสำหรับรายการที่มากกว่า 32 แต้ม ผลต่างประตูน้อยกว่า 23 ประตู และประตูต่อ 36 ประตู และจำนวนการเล่นน้อยกว่า 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–3, 6–3\"",
    "question_en": "Which Location has a Year larger than 2006, and a Score of 6–3, 6–3?",
    "question_th": "สถานที่ใดมีหนึ่งปีมากกว่าปี 2549 และมีคะแนน 6–3, 6–3",
    "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ël monfils\"",
    "question_en": "Which Score has a Year larger than 2004, and a Champion of gaël monfils?",
    "question_th": "คะแนนใดที่มีหนึ่งปีมากกว่าปี 2004 และเป็นแชมป์ของgaël 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é acasuso\"",
    "question_en": "Which Runner-up has a Year smaller than 2008, and a Champion of josé acasuso?",
    "question_th": "รองชนะเลิศคนไหนที่มีปีที่น้อยกว่าปี 2008 และเป็นแชมป์ของ josé 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–6(6), 4–6, 7–5\"",
    "question_en": "Which Champion has a Runner-up of florian mayer, and a Score of 7–6(6), 4–6, 7–5?",
    "question_th": "แชมป์เปี้ยนคนใดมีรองแชมป์ฟลอเรียน เมเยอร์ และคะแนน 7–6(6), 4–6, 7–5",
    "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_en": "WHAT IS THE SCORE WITH A WINNER AND OPPONENT BYRON BLACK?",
    "question_th": "คะแนนของผู้ชนะและฝ่ายตรงข้ามของ 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_en": "What is the number of points of the match with less than 22 games played?",
    "question_th": "แมตช์ที่เล่นน้อยกว่า 22 เกมมีแต้มกี่แต้ม?",
    "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_en": "What is the total number of loses of the club with a 4 position and less than 23 goals conceded?",
    "question_th": "จำนวนการแพ้ทั้งหมดของสโมสรที่ 4 อันดับและเสียประตูน้อยกว่า 23 ประตูคือเท่าไร?",
    "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_en": "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?",
    "question_th": "จำนวนเกมที่เล่นน้อยที่สุดของสโมสรโดยเสียมากกว่า 25 ประตู ทำได้มากกว่า 17 ประตู และอันดับ 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_en": "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?",
    "question_th": "จำนวนการแพ้ต่ำสุดของสโมสรโดยทำได้มากกว่า 42 ประตู, เสียมากกว่า 20 ประตู, และเสมอน้อยกว่า 3 ครั้ง คือเท่าไร?",
    "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_en": "What is the average number of points of the club with more than 23 goals conceded and a position larger than 12?",
    "question_th": "จำนวนคะแนนเฉลี่ยของสโมสรที่เสียประตูมากกว่า 23 ประตูและตำแหน่งที่มากกว่า 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_en": "How many goals did coe get?",
    "question_th": "Coe ทำได้กี่ประตู?",
    "context": "CREATE TABLE table_name_80 (goals INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(ends) FROM table_name_80 WHERE transfer_fee = \"dkk 14m\"",
    "question_en": "What is the total number of ends when the transfer fee was dkk 14m?",
    "question_th": "จำนวนการสิ้นสุดทั้งหมดเมื่อค่าธรรมเนียมการโอนอยู่ที่ 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_en": "Who had a transfer fee of dkk 6m?",
    "question_th": "ใครมีค่าธรรมเนียมการโอน 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_en": "Craig Parry with a score of 68-68=136 is in what place?",
    "question_th": "Craig Parry ด้วยคะแนน 68-68=136 อยู่อันดับไหน?",
    "context": "CREATE TABLE table_name_83 (place VARCHAR, player VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_21 WHERE country = \"spain\"",
    "question_en": "What place is the golfer in who is from Spain?",
    "question_th": "นักกอล์ฟที่มาจากสเปนอยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_21 (place VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_47 WHERE score = 72 - 65 = 137",
    "question_en": "For what country does the golfer play who has a score of 72-65=137?",
    "question_th": "นักกอล์ฟที่เล่นให้กับประเทศใดที่มีคะแนน 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_en": "Golfer Steve Pate is in what place?",
    "question_th": "นักกอล์ฟ Steve Pate อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_6 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT bolton_wanderers_career FROM table_name_77 WHERE apps = 293",
    "question_en": "Which Bolton Wanderers career has 293 Apps?",
    "question_th": "อาชีพใดของโบลตัน วันเดอร์เรอร์สมี 293 แอป",
    "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_en": "Which Bolton Wanderers career has a Total larger than 404, and a Position of fw, and Apps less than 492, and 79 Goals?",
    "question_th": "อาชีพใดของโบลตัน วันเดอเรอร์สที่มีคะแนนรวมมากกว่า 404 และตำแหน่ง fw และแอปน้อยกว่า 492 และ 79 ประตู",
    "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_en": "How many apps have 28 goals, and a Total smaller than 191?",
    "question_th": "มีกี่แอปที่มี 28 เป้าหมาย และผลรวมน้อยกว่า 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_en": "On what Date is Sheffield Wednesday the Home team?",
    "question_th": "เชฟฟิลด์ เว้นส์เดย์ จะเป็นเจ้าบ้านวันไหน?",
    "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_en": "What is the Tie no of the Blackburn Rovers Away game?",
    "question_th": "ผลเสมอของเกมเยือนแบล็คเบิร์น โรเวอร์สคืออะไร?",
    "context": "CREATE TABLE table_name_61 (tie_no VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_33 WHERE score = \"2–0\" AND home_team = \"wolverhampton wanderers\"",
    "question_en": "What is the Away team at the Wolverhampton Wanderers Home game with a Score of 2–0?",
    "question_th": "ทีมเยือนในเกมเหย้าวูล์ฟแฮมป์ตันคือทีมใดด้วยสกอร์ 2–0?",
    "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_en": "What is the Home team at the Blackburn Rovers Away game?",
    "question_th": "เจ้าบ้านในเกมเยือนแบล็คเบิร์น โรเวอร์สเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_70 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_17 WHERE score = \"2–3\"",
    "question_en": "What is the Home team in the game with a Score of 2–3?",
    "question_th": "เจ้าบ้านในเกมที่มีสกอร์ 2–3 คืออะไร?",
    "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_en": "What is the 1st leg with Team 2 Lyon?",
    "question_th": "เลก 1 กับทีม 2 ลียง คืออะไร?",
    "context": "CREATE TABLE table_name_98 (team_2 VARCHAR)"
  },
  {
    "answer": "SELECT team_1 FROM table_name_81 WHERE team_2 = \"sporting cp\"",
    "question_en": "Which team is Team 1 with a Team 2 being Sporting CP?",
    "question_th": "ทีมใดคือทีม 1 โดยทีม 2 เป็น 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_en": "What is the second leg for Team 1 Servette?",
    "question_th": "เลกที่สองของทีม 1 เสิร์ฟเว็ตต์คืออะไร?",
    "context": "CREATE TABLE table_name_54 (team_1 VARCHAR)"
  },
  {
    "answer": "SELECT 1999 FROM table_name_47 WHERE tournament = \"us open\"",
    "question_en": "What was the 1999 Tournament at the US Open?",
    "question_th": "การแข่งขันปี 1999 ที่ US Open คืออะไร?",
    "context": "CREATE TABLE table_name_47 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_38 WHERE 1988 = \"a\" AND 1999 = \"2r\"",
    "question_en": "What tournament was an A 1988, and a 2R 1999?",
    "question_th": "ทัวร์นาเมนต์ใดคือ A 1988 และ 2R 1999",
    "context": "CREATE TABLE table_name_38 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 1991 FROM table_name_92 WHERE 1999 = \"2r\"",
    "question_en": "What is the 1991 for 2R 1999?",
    "question_th": "1991 สำหรับ 2R 1999 คืออะไร?",
    "context": "CREATE TABLE table_name_92 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1999 FROM table_name_45 WHERE 1991 = \"a\" AND 1997 = \"1r\"",
    "question_en": "What is the 1999 for an A 1991, and a 1r 1997?",
    "question_th": "ปี 1999 สำหรับ A ปี 1991 และ 1r ปี 1997 คืออะไร?",
    "context": "CREATE TABLE table_name_45 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1991 FROM table_name_34 WHERE 1996 = \"2r\"",
    "question_en": "What is the 1991 with a 2r 1996?",
    "question_th": "ปี 1991 กับ 2r 1996 คืออะไร?",
    "context": "CREATE TABLE table_name_34 (Id VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_36 WHERE attendance > 74 OFFSET 382",
    "question_en": "When was the Attendance larger than 74,382?",
    "question_th": "เมื่อใดที่มีผู้เข้าร่วมมากกว่า 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_en": "Which venue has a status of Five Nations and an against of 22?",
    "question_th": "สนามใดมีสถานะเป็น Five Nations และต่อ 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_en": "What is the sum of the rounds of the match with brett chism as the opponent?",
    "question_th": "ผลรวมของรอบแมตช์ที่มี เบรตต์ ชิสม์ เป็นคู่ต่อสู้เป็นเท่าใด?",
    "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_en": "What is the lwoest round of wild bill's fight night 21 at 5:00?",
    "question_th": "รอบที่แย่ที่สุดของการต่อสู้ของ Wild Bill คืนที่ 21 เวลา 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_en": "Which Country has a To par smaller than 7, and a Place of 1?",
    "question_th": "ประเทศใดมี To par น้อยกว่า 7 และอันดับที่ 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_en": "Which Place has a Country of australia, and a Score of 70-70-72=212?",
    "question_th": "สถานที่ใดมีประเทศออสเตรเลีย และคะแนน 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_en": "What was sweden's score in T9 place?",
    "question_th": "คะแนนของสวีเดนในอันดับ T9 คืออะไร?",
    "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_en": "Which To par has a Country of england, and a Place of t9, and a Player of graeme storm?",
    "question_th": "To par ใดมีประเทศอังกฤษ และสถานที่ t9 และผู้เล่นของ 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_en": "What is Distance, when Venue is \"Belgrade\"?",
    "question_th": "ระยะทางคืออะไร เมื่อสถานที่คือ \"เบลเกรด\"?",
    "context": "CREATE TABLE table_name_39 (distance VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_15 WHERE athlete = \"yussuf alli\"",
    "question_en": "What is Date, when Athlete is \"Yussuf Alli\"?",
    "question_th": "วันที่เท่าไหร่เมื่อนักกีฬาคือ \"ยุสซุฟ อัลลี\"?",
    "context": "CREATE TABLE table_name_15 (date VARCHAR, athlete VARCHAR)"
  },
  {
    "answer": "SELECT distance FROM table_name_57 WHERE athlete = \"irving saladino\"",
    "question_en": "What is Distance, when Athlete is \"Irving Saladino\"?",
    "question_th": "ระยะทางเมื่อนักกีฬาคือ \"Irving Saladino\" คืออะไร?",
    "context": "CREATE TABLE table_name_57 (distance VARCHAR, athlete VARCHAR)"
  },
  {
    "answer": "SELECT athlete FROM table_name_12 WHERE nation = \"nigeria\"",
    "question_en": "What is Athlete, when Nation is \"Nigeria\"?",
    "question_th": "นักกีฬาคืออะไร ในเมื่อชาติคือ \"ไนจีเรีย\"?",
    "context": "CREATE TABLE table_name_12 (athlete VARCHAR, nation VARCHAR)"
  },
  {
    "answer": "SELECT nation FROM table_name_67 WHERE date = \"2004-07-22\"",
    "question_en": "What is Nation, when Date is \"2004-07-22\"?",
    "question_th": "Nation คืออะไร เมื่อวันที่คือ \"22-07-2547\"",
    "context": "CREATE TABLE table_name_67 (nation VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT distance FROM table_name_18 WHERE date = \"2008-01-12\"",
    "question_en": "What is Distance, when Date is \"2008-01-12\"?",
    "question_th": "ระยะทางคืออะไร เมื่อวันที่คือ \"2008-01-12\"",
    "context": "CREATE TABLE table_name_18 (distance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_58 WHERE result = \"w 48–20\"",
    "question_en": "What is the Week of the game with a Result of w 48–20?",
    "question_th": "สัปดาห์ของเกมที่มีผลการแข่งขัน w 48–20 คืออะไร?",
    "context": "CREATE TABLE table_name_58 (week VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_82 WHERE result = \"l 14–16\"",
    "question_en": "What is the Record of the game with a Result of l 14–16?",
    "question_th": "บันทึกของเกมด้วยผลการแข่งขัน l 14–16 คืออะไร?",
    "context": "CREATE TABLE table_name_82 (record VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_86 WHERE record = \"2–3–1\"",
    "question_en": "What is the Date of the game with a Record of 2–3–1?",
    "question_th": "วันที่ของเกมที่มีสถิติ 2–3–1 คืออะไร?",
    "context": "CREATE TABLE table_name_86 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_41 WHERE round = \"32\"",
    "question_en": "What opponent has 32 as the round?",
    "question_th": "ฝ่ายตรงข้ามคนใดมี 32 เป็นรอบ?",
    "context": "CREATE TABLE table_name_41 (opponent VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT year_ceremony FROM table_name_53 WHERE english_title = \"kelin\"",
    "question_en": "What year was Kelin nominated?",
    "question_th": "Kelin ได้รับการเสนอชื่อเข้าชิงในปีใด",
    "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_en": "What was the to par score in the match that had a score of 76-71-78-67=292?",
    "question_th": "คะแนนพาร์ในการแข่งขันที่มีคะแนน 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_en": "What is Robert Allenby's average to par score?",
    "question_th": "คะแนนพาร์เฉลี่ยของ Robert Allenby คืออะไร?",
    "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_en": "Can you tell me the Tournament that has the 2009 of 1r, and the 2012 of w?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าการแข่งขันที่มีปี 2009 ของ 1r และ 2012 ของ w?",
    "context": "CREATE TABLE table_name_1 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2010 FROM table_name_44 WHERE 2008 = \"grand slam tournaments\"",
    "question_en": "Can you tell me the 2010 that has the 2008 of grand slam tournaments?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าปี 2010 ที่มีการแข่งขันแกรนด์สแลมปี 2008?",
    "context": "CREATE TABLE table_name_44 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2009 FROM table_name_50 WHERE 2011 = \"a\"",
    "question_en": "Can you tell me the 2009 that has the 2011 of A?",
    "question_th": "คุณช่วยบอกฉันปี 2009 ที่มีปี 2011 ของ A ได้ไหม",
    "context": "CREATE TABLE table_name_50 (Id VARCHAR)"
  },
  {
    "answer": "SELECT AVG(to_par) FROM table_name_28 WHERE total = 155",
    "question_en": "What is the to par for the player with total of 155?",
    "question_th": "พาร์สำหรับผู้เล่นที่มีคะแนนรวม 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_en": "Who won Bronze with Notes of 2.5km, 16controls?",
    "question_th": "ใครได้รับรางวัลเหรียญทองแดงด้วยคะแนน 2.5 กม. 16 คอนโทรล",
    "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_en": "Who won Gold later than 2004 with Notes of 2.73km, 14controls?",
    "question_th": "ใครได้รับรางวัลเหรียญทองในช่วงปลายปี 2004 ด้วยระยะทาง 2.73 กม. การควบคุม 14 ครั้ง",
    "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_en": "Who won Bronze with notes of 2.5km, 14controls?",
    "question_th": "ใครชนะเหรียญทองแดงด้วยโน้ต 2.5 กม. 14 คอนโทรล?",
    "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_en": "What are the Notes against a Silver for Jenny Johansson earlier than 2006?",
    "question_th": "Notes Against a Silver สำหรับ Jenny Johansson ก่อนปี 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_en": "What is the Constituency number for Meerut?",
    "question_th": "มีรัตมีเขตเลือกตั้งหมายเลขอะไร?",
    "context": "CREATE TABLE table_name_8 (constituency_number VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_38 WHERE constituency_number = \"48\"",
    "question_en": "What is the name for the constituency at number 48?",
    "question_th": "เขตเลือกตั้งที่ 48 ชื่ออะไร?",
    "context": "CREATE TABLE table_name_38 (name VARCHAR, constituency_number VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_19 WHERE bronze > 3",
    "question_en": "When bronze is more than 3, what is the rank?",
    "question_th": "เมื่อทองแดงเกิน 3 อยู่อันดับเท่าไหร่?",
    "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_en": "When rank is 7 and silver is less than 0, what is the total gold?",
    "question_th": "เมื่ออันดับ 7 และเงินน้อยกว่า 0 ทองทั้งหมดเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_17 (gold INTEGER, rank VARCHAR, silver VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_84 WHERE country = \"wales\"",
    "question_en": "What player is from Wales?",
    "question_th": "นักเตะคนไหนมาจากเวลส์?",
    "context": "CREATE TABLE table_name_84 (player VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_78 WHERE score = 73 - 68 - 66 = 207",
    "question_en": "What player scored 73-68-66=207?",
    "question_th": "นักเตะคนไหนทำคะแนนได้ 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_en": "What Seve Ballesteros's score?",
    "question_th": "เซเว บาเยสเตรอสได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_82 (score VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_59 WHERE player = \"craig parry\"",
    "question_en": "What country is Craig Parry from?",
    "question_th": "Craig Parry มาจากประเทศใด",
    "context": "CREATE TABLE table_name_59 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_69 WHERE score = 66 - 73 - 69 = 208",
    "question_en": "What country has a score of 66-73-69=208?",
    "question_th": "ประเทศใดมีคะแนน 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_en": "What is Road Team, when Result is \"74-71\"?",
    "question_th": "Road Team คืออะไร เมื่อผลลัพธ์คือ \"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_en": "What is Result, when Date is \"April 3\"?",
    "question_th": "ผลลัพธ์คืออะไร เมื่อวันที่คือ \"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_en": "What is Game, when Road Team is \"Syracuse\", and when Result is \"96-89\"?",
    "question_th": "เกมคืออะไร เมื่อทีม Road คือ \"Syracuse\" และเมื่อผลลัพธ์คือ \"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_en": "What is Home Team, when Date is \"April 10\"?",
    "question_th": "ทีมเหย้าคืออะไร เมื่อเป็นวันที่ \"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_en": "What is Game, when Road Team is \"Syracuse\", and when Result is \"109-82\"?",
    "question_th": "เกมคืออะไร เมื่อทีม Road คือ \"Syracuse\" และเมื่อผลลัพธ์คือ \"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_en": "What is Road Team, when Date is \"April 10\"?",
    "question_th": "Road Team คืออะไร เมื่อถึงวันที่ \"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_en": "What was the earliest round with Neil Colzie and a pick smaller than 24?",
    "question_th": "รอบแรกสุดกับ Neil Colzie และตัวเลือกที่น้อยกว่า 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_en": "What was the score of the replay game when watford was the away team?",
    "question_th": "เกมรีเพลย์เมื่อวัตฟอร์ดเป็นทีมเยือนได้สกอร์เท่าไหร่?",
    "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_en": "Who was the home team when walsall was the away team?",
    "question_th": "เจ้าบ้านคือใครเมื่อวอลซอลล์เป็นทีมเยือน?",
    "context": "CREATE TABLE table_name_8 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_15 WHERE venue = \"hong kong\"",
    "question_en": "What is Name, when Venue is \"Hong Kong\"?",
    "question_th": "ชื่ออะไร เมื่อสถานที่คือ \"ฮ่องกง\"?",
    "context": "CREATE TABLE table_name_15 (name VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_71 WHERE venue = \"motherwell\"",
    "question_en": "What is Name, when Venue is \"Motherwell\"?",
    "question_th": "ชื่ออะไร เมื่อสถานที่คือ \"มาเธอร์เวลล์\"",
    "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_en": "In 1987, what is the Runners-up when Stefan Edberg is Champion?",
    "question_th": "ในปี 1987 รองชนะเลิศคืออะไรเมื่อ Stefan Edberg เป็นแชมป์?",
    "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_en": "What were the Runners-up prior to 1990 when Ivan Lendl was Champion in the Seiko Super Tennis Tournament?",
    "question_th": "ผู้ชนะเลิศได้แก่ใครก่อนปี 1990 เมื่อ Ivan Lendl เป็นแชมป์ในการแข่งขัน 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–6, 6–4\"",
    "question_en": "In What Tournament did Boris Becker have a Score of 7–6, 6–4?",
    "question_th": "ในการแข่งขันใดที่ Boris Becker มีคะแนน 7–6, 6–4",
    "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_en": "What is the external weapon with the falcon shield animal?",
    "question_th": "อาวุธภายนอกของสัตว์โล่เหยี่ยวคืออะไร?",
    "context": "CREATE TABLE table_name_17 (external_weapon VARCHAR, shield_animal VARCHAR)"
  },
  {
    "answer": "SELECT cart FROM table_name_47 WHERE shield_animal = \"serpent\"",
    "question_en": "What cart has a serpent shield animal?",
    "question_th": "เกวียนอะไรมีสัตว์โล่งู?",
    "context": "CREATE TABLE table_name_47 (cart VARCHAR, shield_animal VARCHAR)"
  },
  {
    "answer": "SELECT external_weapon FROM table_name_26 WHERE knight = \"zeke\"",
    "question_en": "What is the external weapon of knight zeke?",
    "question_th": "อาวุธภายนอกของอัศวินซีคคืออะไร?",
    "context": "CREATE TABLE table_name_26 (external_weapon VARCHAR, knight VARCHAR)"
  },
  {
    "answer": "SELECT shield_animal FROM table_name_57 WHERE knight = \"phil\"",
    "question_en": "What is the shield animal of knight phil?",
    "question_th": "สัตว์โล่ของอัศวินฟิลคืออะไร?",
    "context": "CREATE TABLE table_name_57 (shield_animal VARCHAR, knight VARCHAR)"
  },
  {
    "answer": "SELECT external_weapon FROM table_name_59 WHERE cart = \"ramhead cart\"",
    "question_en": "What is the external weapon with a ramhead cart?",
    "question_th": "อาวุธภายนอกที่มีรถเข็น ramhead คืออะไร?",
    "context": "CREATE TABLE table_name_59 (external_weapon VARCHAR, cart VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_51 WHERE away_team = \"sheffield wednesday\"",
    "question_en": "On what date was the away team Sheffield Wednesday?",
    "question_th": "ทีมเยือน เชฟฟิลด์ เว้นส์เดย์ แข่งขันวันไหน?",
    "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_en": "What was the tie number for the game with an away team of Hartlepool United?",
    "question_th": "เกมนี้เสมอกับทีมเยือน ฮาร์ทลี่พูล ยูไนเต็ด เลขไหน?",
    "context": "CREATE TABLE table_name_81 (tie_no VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_16 WHERE tie_no = \"16\"",
    "question_en": "What was the score in Tie number 16?",
    "question_th": "คะแนนเสมอกันที่ 16 คืออะไร?",
    "context": "CREATE TABLE table_name_16 (score VARCHAR, tie_no VARCHAR)"
  },
  {
    "answer": "SELECT duration FROM table_name_47 WHERE province = \"zeeland\"",
    "question_en": "What is the duration of the commissioner from the zeeland province?",
    "question_th": "ระยะเวลาของกรรมาธิการจากจังหวัดซีแลนด์คือเท่าไร?",
    "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_en": "Rich round has an H/A of A and the opponent Sheffield United?",
    "question_th": "รอบรวยมี H/A เท่ากับ A และคู่ต่อสู้ เชฟฟิลด์ ยูไนเต็ด?",
    "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_en": "What is the population (2008) when the capital was Sanniquellie, created later than 1964?",
    "question_th": "จำนวนประชากร (พ.ศ. 2551) เมื่อเมืองหลวงคือซานนิเควลลี สร้างขึ้นหลังปี พ.ศ. 2507",
    "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_en": "What is the highest population (2008) created earlier than 1857, and the county was Sinoe?",
    "question_th": "ประชากรสูงสุด (พ.ศ. 2551) สร้างขึ้นก่อนปี พ.ศ. 2400 คือเท่าใด และเขตคือ 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_en": "What is the earliest created year when the map# was 10?",
    "question_th": "ปีที่สร้างเร็วที่สุดเมื่อแผนที่# คือ 10 คือปีใด",
    "context": "CREATE TABLE table_name_33 (created INTEGER, map_number VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_47 WHERE score = \"0–0\"",
    "question_en": "What is the Venue of the game with a Score of 0–0?",
    "question_th": "สถานที่ของเกมที่มีคะแนน 0–0 คืออะไร?",
    "context": "CREATE TABLE table_name_47 (venue VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_58 WHERE competition = \"friendly\" AND score = \"1–4\"",
    "question_en": "What is the Venue of the Friendly Competition with a Score of 1–4?",
    "question_th": "สถานที่จัดการแข่งขันกระชับมิตรด้วยคะแนน 1–4 คือที่ไหน?",
    "context": "CREATE TABLE table_name_58 (venue VARCHAR, competition VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_49 WHERE competition = \"wcq5\"",
    "question_en": "What is the Venue of the WCQ5 Competition?",
    "question_th": "สถานที่จัดการแข่งขัน WCQ5 คืออะไร?",
    "context": "CREATE TABLE table_name_49 (venue VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_96 WHERE score = \"2–0\"",
    "question_en": "What is the Date of the Competition with a Score of 2–0?",
    "question_th": "การแข่งขันวันที่เท่าไหร่ด้วยคะแนน 2–0?",
    "context": "CREATE TABLE table_name_96 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_1 WHERE score = \"0–2\"",
    "question_en": "What is the Venue of the Competition with a Score of 0–2?",
    "question_th": "สถานที่จัดการแข่งขันที่มีคะแนน 0–2 คืออะไร?",
    "context": "CREATE TABLE table_name_1 (venue VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_89 WHERE score = \"2–0\"",
    "question_en": "What is the Venue of the Competition with a Score of 2–0?",
    "question_th": "สถานที่จัดการแข่งขันที่มีคะแนน 2–0 คืออะไร?",
    "context": "CREATE TABLE table_name_89 (venue VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT binary_meaning FROM table_name_91 WHERE symbol = \"p\"",
    "question_en": "What is the binary meaning for symbol p?",
    "question_th": "เลขฐานสองของสัญลักษณ์ p คืออะไร?",
    "context": "CREATE TABLE table_name_91 (binary_meaning VARCHAR, symbol VARCHAR)"
  },
  {
    "answer": "SELECT si_meaning FROM table_name_40 WHERE symbol = \"m\"",
    "question_en": "What;s the SI Meaning for symbol m?",
    "question_th": "SI ความหมายของสัญลักษณ์ m คืออะไร?",
    "context": "CREATE TABLE table_name_40 (si_meaning VARCHAR, symbol VARCHAR)"
  },
  {
    "answer": "SELECT size_difference FROM table_name_29 WHERE prefix = \"exa\"",
    "question_en": "What is the size difference for exa?",
    "question_th": "exa ต่างกันขนาดไหนคะ?",
    "context": "CREATE TABLE table_name_29 (size_difference VARCHAR, prefix VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_32 WHERE champion = \"masahiro kawamura\"",
    "question_en": "What is the score of champion masahiro kawamura?",
    "question_th": "แชมป์ มาซาฮิโระ คาวามูระ ได้สกอร์เท่าไหร่?",
    "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_en": "What dates was champion masahiro kawamura at the ibaraki country club tournament?",
    "question_th": "มาซาฮิโระ คาวามูระ แชมป์เปี้ยนชิพ ในการแข่งขันอิบารากิ คันทรี คลับ วันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_6 (dates VARCHAR, tournament_location VARCHAR, champion VARCHAR)"
  },
  {
    "answer": "SELECT champion FROM table_name_96 WHERE purse = \"¥200,000,000\"",
    "question_en": "Who is the champion with a ¥200,000,000 purse?",
    "question_th": "ใครคือแชมป์ที่มีกระเป๋าเงิน 200,000,000 เยน?",
    "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_en": "What round had Canada with a draft of 1970 and a pick of 7?",
    "question_th": "แคนาดามีร่างปี 1970 และเลือกได้ 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_en": "Which Placement in Miss Universe has a Delegate of janine mari raymundo tugonon?",
    "question_th": "ตำแหน่งใดใน Miss Universe ที่มีตัวแทนของ 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_en": "Which Placement in Miss Universe is  armi barbara quiray crespo?",
    "question_th": "Armi barbara quiray crespo ได้ตำแหน่งใดใน Miss Universe?",
    "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_en": "Which Delegate has a Placement in Miss Universe of fourth runner-up, and a Hometown of makati , rizal?",
    "question_th": "ผู้แทนคนไหนได้ตำแหน่งรองอันดับ 4 ใน Miss Universe และเป็นบ้านเกิดของมากาตี ริซาล?",
    "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_en": "What kind of Placement in Miss Universe that rosita cornell capuyon is in?",
    "question_th": "โรสิตา คอร์เนล คาปูยอน อยู่ในตำแหน่ง Miss Universe แบบไหน?",
    "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_en": "Which Year jennifer tarol barrientos is in?",
    "question_th": "เจนนิเฟอร์ ทาโรล บาร์ริเอนตอสอยู่ปีไหน?",
    "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_en": "WHAT YEAR WAS THE WORLD CHAMPIONSHIPS IN WITH NOTES OF 39.01?",
    "question_th": "การแข่งขันชิงแชมป์โลกด้วยคะแนน 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_en": "What's the sum of money ($) that angela park has won?",
    "question_th": "จำนวนเงิน ($) ที่แองเจล่า พาร์ค ชนะคือเท่าไร?",
    "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_en": "What number was the pick for the position of DT in 1952, after round 1, where the overall was less than 155?",
    "question_th": "เบอร์ไหนคือตัวเลือกสำหรับตำแหน่ง DT ในปี 1952 หลังจากยกที่ 1 โดยที่คะแนนรวมยังน้อยกว่า 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_en": "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?",
    "question_th": "ทีม NFL ทีมใดเลือกตำแหน่ง DE เมื่อตัวเลือกมากกว่า 9 หลังจากรอบที่ 5 และคะแนนโดยรวมมากกว่า 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_en": "What is 2006, when 2007 is \"1R\", and when 2002 is \"Q2\"?",
    "question_th": "ปี 2549 คืออะไร เมื่อปี 2550 คือ \"1R\" และเมื่อใดคือ \"Q2\" เมื่อปี 2545",
    "context": "CREATE TABLE table_name_63 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2001 FROM table_name_99 WHERE 2007 = \"1r\" AND 2008 = \"q1\"",
    "question_en": "What is 2001, when 2007 is \"1R\", and when 2008 is \"Q1\"?",
    "question_th": "ปี 2544 คืออะไร เมื่อปี 2550 คือ \"1R\" และเมื่อใดคือ \"Q1\" เมื่อใด",
    "context": "CREATE TABLE table_name_99 (Id VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_90 WHERE 2003 = \"a\"",
    "question_en": "What is Tournament, when 2003 is \"A\"?",
    "question_th": "Tournament คืออะไร เมื่อปี 2003 เป็น \"A\"",
    "context": "CREATE TABLE table_name_90 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2012 FROM table_name_55 WHERE tournament = \"french open\"",
    "question_en": "What is 2012, when Tournament is \"French Open\"?",
    "question_th": "ปี 2012 คืออะไร เมื่อทัวร์นาเมนท์คือ \"เฟรนช์โอเพ่น\"?",
    "context": "CREATE TABLE table_name_55 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_35 WHERE 2012 = \"grand slam tournaments\"",
    "question_en": "What is Tournament, when 2012 is \"Grand Slam Tournaments\"?",
    "question_th": "Tournament คืออะไร เมื่อปี 2012 เป็น \"Grand Slam Tournaments\"",
    "context": "CREATE TABLE table_name_35 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2004 FROM table_name_81 WHERE 2010 = \"grand slam tournaments\"",
    "question_en": "What is 2004, when 2010 is \"Grand Slam Tournaments\"?",
    "question_th": "ปี 2004 คืออะไร เมื่อปี 2010 เป็น \"แกรนด์สแลมทัวร์นาเมนท์\"?",
    "context": "CREATE TABLE table_name_81 (Id VARCHAR)"
  },
  {
    "answer": "SELECT member FROM table_name_36 WHERE electorate = \"southern melbourne\"",
    "question_en": "Which Member has an Electorate of southern melbourne?",
    "question_th": "สมาชิกคนใดที่มีเขตเลือกตั้งในเมลเบิร์นตอนใต้",
    "context": "CREATE TABLE table_name_36 (member VARCHAR, electorate VARCHAR)"
  },
  {
    "answer": "SELECT first_elected FROM table_name_7 WHERE member = \"h.b. higgins\"",
    "question_en": "When was H.B. Higgins first elected?",
    "question_th": "HB Higgins ได้รับเลือกครั้งแรกเมื่อใด",
    "context": "CREATE TABLE table_name_7 (first_elected VARCHAR, member VARCHAR)"
  },
  {
    "answer": "SELECT MAX(byes) FROM table_name_37 WHERE draws > 0",
    "question_en": "What is the highest number of byes when draws are larger than 0?",
    "question_th": "จำนวนบายสูงสุดเมื่อการจับรางวัลมีค่ามากกว่า 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_en": "What is the lowest amount of losses when the goldne rivers is quambatook, wins are smaller than 15 and draws larger than 0?",
    "question_th": "อะไรคือจำนวนการสูญเสียที่ต่ำที่สุดเมื่อแม่น้ำ goldne ถูก quambatook ชนะน้อยกว่า 15 และเสมอมากกว่า 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_en": "How many losses did the golden rivers of ultima have when wins were less than 12 and byes larger than 2?",
    "question_th": "แม่น้ำสีทองแห่งอัลติมาสูญเสียไปกี่ครั้งแล้วเมื่อชัยชนะน้อยกว่า 12 และบายมากกว่า 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_en": "How many losses did the Golden rivers of hay have?",
    "question_th": "หญ้าแห้งสีทองสูญเสียไปกี่ครั้ง?",
    "context": "CREATE TABLE table_name_2 (losses INTEGER, golden_rivers VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(byes) FROM table_name_59 WHERE wins = 9",
    "question_en": "What is the total number of byes when the wins were 9?",
    "question_th": "จำนวนบายทั้งหมดเมื่อชนะคือ 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_en": "What is th average dras when wins are less than 12 and the against is 989?",
    "question_th": "ดราสเฉลี่ยจะเป็นเท่าใดเมื่อชนะน้อยกว่า 12 และต่อคือ 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_en": "What is the highest pole for class 125 cc and a WChmp more than 1?",
    "question_th": "เสาที่สูงที่สุดสำหรับคลาส 125 cc และ WChmp มากกว่า 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_en": "What is the highest flap for class 500 cc?",
    "question_th": "ฝาสูงสุดสำหรับคลาส 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_en": "Name the Result F – A that has a League position of 1st on  4 january 1994?",
    "question_th": "ตั้งชื่อผลการแข่งขัน F – A ที่มีอันดับลีกที่ 1 เมื่อวันที่ 4 มกราคม 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 = \"มี.ค.\"",
    "question_en": "What is the Thai name for the word abbreviated มี.ค.?",
    "question_th": "คำว่า มี.ค. มีชื่อภาษาไทยว่าอะไร?",
    "context": "CREATE TABLE table_name_75 (thai_name VARCHAR, abbr VARCHAR)"
  },
  {
    "answer": "SELECT english_name FROM table_name_23 WHERE abbr = \"พ.ย.\"",
    "question_en": "What is the English word that is abbreviated พ.ย.?",
    "question_th": "คำว่า พ.ย. ในภาษาอังกฤษเรียกว่าอะไร?",
    "context": "CREATE TABLE table_name_23 (english_name VARCHAR, abbr VARCHAR)"
  },
  {
    "answer": "SELECT transcription FROM table_name_11 WHERE english_name = \"march\"",
    "question_en": "What is the transcription for the English word March?",
    "question_th": "คำว่า 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_en": "What is the zodiac sign for the English March?",
    "question_th": "ราศีใดในเดือนมีนาคมของอังกฤษ?",
    "context": "CREATE TABLE table_name_81 (zodiac_sign VARCHAR, english_name VARCHAR)"
  },
  {
    "answer": "SELECT abbr FROM table_name_22 WHERE zodiac_sign = \"capricorn\"",
    "question_en": "What is the abbreviation for the sign of Capricorn?",
    "question_th": "อักษรย่อของราศีมังกรคืออะไร?",
    "context": "CREATE TABLE table_name_22 (abbr VARCHAR, zodiac_sign VARCHAR)"
  },
  {
    "answer": "SELECT transcription FROM table_name_98 WHERE english_name = \"march\"",
    "question_en": "What is the transcription for the English March?",
    "question_th": "การถอดเสียงภาษาอังกฤษเดือนมีนาคมคืออะไร?",
    "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–6 (7–5) , 6–3\"",
    "question_en": "What date was the 1988 world group i edition with a result of 7–6 (7–5) , 6–3?",
    "question_th": "เวิลด์กรุ๊ป 1 ปี 1988 เป็นวันที่ใดโดยผลสกอร์ 7–6 (7–5) , 6–3 คือวันที่ใด",
    "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_en": "Who was the opponent on april 24, 1999?",
    "question_th": "คู่ต่อสู้เมื่อวันที่ 24 เมษายน 2542 คือใคร?",
    "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_en": "What's the result for the clay surface edition on july 17, 1992?",
    "question_th": "ฉบับพื้นผิวดินเมื่อวันที่ 17 กรกฎาคม 2535 มีผลอย่างไร?",
    "context": "CREATE TABLE table_name_97 (result VARCHAR, surface VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_83 WHERE result = \"6–7 (6–8) , 1–6\"",
    "question_en": "What round had a result of 6–7 (6–8) , 1–6?",
    "question_th": "ผลการแข่งขันรอบใดคือ 6–7 (6–8) , 1–6?",
    "context": "CREATE TABLE table_name_83 (round VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_75 WHERE result = \"7–6 (7–5) , 6–3\"",
    "question_en": "Who was the opponent when the result was 7–6 (7–5) , 6–3?",
    "question_th": "คู่ต่อสู้คือใครเมื่อผลการแข่งขันคือ 7–6 (7–5) , 6–3?",
    "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_en": "What clay surface edition had an opponent of miho saeki?",
    "question_th": "ดินเหนียวรุ่นใดที่มีคู่ต่อสู้ของมิโฮะ ซาเอกิ?",
    "context": "CREATE TABLE table_name_2 (edition VARCHAR, surface VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_47 WHERE country = \"spain\"",
    "question_en": "What is To par, when Country is \"Spain\"?",
    "question_th": "อะไรคือ To par เมื่อประเทศคือ \"สเปน\"?",
    "context": "CREATE TABLE table_name_47 (to_par VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_55 WHERE player = \"josé maría olazábal\"",
    "question_en": "What is Country, when Player is \"José María Olazábal\"?",
    "question_th": "ประเทศคืออะไร เมื่อผู้เล่นคือ \"José María Olazábal\"?",
    "context": "CREATE TABLE table_name_55 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_49 WHERE player = \"john cook\"",
    "question_en": "What is Place, when Player is \"John Cook\"?",
    "question_th": "สถานที่คืออะไร เมื่อผู้เล่นคือ \"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_en": "What is Score, when Country is \"United States\", and when Player is \"Raymond Floyd\"?",
    "question_th": "สกอร์คืออะไร เมื่อประเทศคือ \"สหรัฐอเมริกา\" และเมื่อผู้เล่นคือ \"เรย์มอนด์ ฟลอยด์\"",
    "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_en": "What is To par, when Player is \"Larry Rinker\"?",
    "question_th": "To par คืออะไร เมื่อผู้เล่นคือ \"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_en": "What is Country, when Place is \"T8\", and when Score is \"70-67=137\"?",
    "question_th": "ประเทศคืออะไร เมื่อสถานที่คือ \"T8\" และเมื่อคะแนนคือ \"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_en": "What Country is player Sandy Lyle from when she scored less than 69?",
    "question_th": "แซนดี้ ไลล์ เป็นผู้เล่นจากประเทศใดเมื่อเธอทำคะแนนได้น้อยกว่า 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_en": "What is the to par of Philip Parkin?",
    "question_th": "ค่าพาร์ของฟิลิป พาร์กินคืออะไร?",
    "context": "CREATE TABLE table_name_64 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MIN(attendance) FROM table_name_68 WHERE opponent = \"chelsea\"",
    "question_en": "What was the lowest attendance was the opponent was chelsea?",
    "question_th": "คู่แข่งคือเชลซีที่มีผู้เข้าร่วมน้อยที่สุดคือทีมใด",
    "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_en": "What is the Date of Birth of the CB Player with a Height of m (ft 4in)?",
    "question_th": "วันเกิดของผู้เล่น CB ที่มีส่วนสูงเป็นเมตร (ฟุต 4 นิ้ว) คืออะไร?",
    "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_en": "Which country had a t4 place and scored 66-73=139?",
    "question_th": "ประเทศใดได้อันดับที่ 4 และได้คะแนน 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_en": "Who placed t1 in Scotland?",
    "question_th": "ใครเป็นผู้วาง t1 ในสกอตแลนด์?",
    "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_en": "Who had a to par of e and scored 71-69=140?",
    "question_th": "ใครมีพาร์ของ e และได้คะแนน 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_en": "What is the to par for t10 and Colin Montgomerie?",
    "question_th": "ค่าพาร์ของ t10 และ 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_en": "What country scored 71-69=140?",
    "question_th": "ประเทศใดได้คะแนน 71-69=140",
    "context": "CREATE TABLE table_name_97 (country VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_67 WHERE result = \"bye\"",
    "question_en": "What week's game had a result of bye?",
    "question_th": "เกมประจำสัปดาห์ไหนมีผลการบาย?",
    "context": "CREATE TABLE table_name_67 (week VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_26 WHERE week = \"9\"",
    "question_en": "What was the record at week 9?",
    "question_th": "บันทึกในสัปดาห์ที่ 9 คืออะไร?",
    "context": "CREATE TABLE table_name_26 (record VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_31 WHERE player = \"vijay singh\"",
    "question_en": "What is the to par of player vijay singh?",
    "question_th": "อะไรคือสิ่งที่จะได้เปรียบของผู้เล่นวีเจย์ ซิงห์?",
    "context": "CREATE TABLE table_name_31 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_87 WHERE money___£__ = \"playoff\" AND country = \"united states\"",
    "question_en": "Who is the player with playoff money from the United States?",
    "question_th": "ใครคือผู้เล่นที่ได้เงินเพลย์ออฟจากสหรัฐอเมริกา?",
    "context": "CREATE TABLE table_name_87 (player VARCHAR, money___£__ VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_82 WHERE country = \"new zealand\"",
    "question_en": "What is the place of the player from New Zealand?",
    "question_th": "สถานที่ของผู้เล่นจากนิวซีแลนด์คืออะไร?",
    "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_en": "What is the to par of the player from the United States with a t1 place?",
    "question_th": "อะไรคือความได้เปรียบของผู้เล่นจากสหรัฐอเมริกาที่มีอันดับ t1?",
    "context": "CREATE TABLE table_name_76 (to_par VARCHAR, country VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT money___£__ FROM table_name_54 WHERE score = 72 - 70 - 71 - 72 = 285",
    "question_en": "How much money does the player with a 72-70-71-72=285 score have?",
    "question_th": "ผู้เล่นที่มีคะแนน 72-70-71-72=285 มีเงินเท่าไหร่?",
    "context": "CREATE TABLE table_name_54 (money___£__ VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT save FROM table_name_67 WHERE score = \"7-6\"",
    "question_en": "What is the save of the game with a 7-6 score?",
    "question_th": "เซฟของเกมด้วยสกอร์ 7-6 คืออะไร?",
    "context": "CREATE TABLE table_name_67 (save VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT save FROM table_name_79 WHERE loss = \"moran (1-2)\"",
    "question_en": "What is the save of the game where moran (1-2) lost?",
    "question_th": "เซฟของเกมที่โมแรน (1-2) แพ้คืออะไร?",
    "context": "CREATE TABLE table_name_79 (save VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_71 WHERE date = \"june 15\"",
    "question_en": "Who was the opponent on June 15?",
    "question_th": "คู่ต่อสู้ในวันที่ 15 มิถุนายนคือใคร?",
    "context": "CREATE TABLE table_name_71 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT save FROM table_name_49 WHERE opponent = \"rice\"",
    "question_en": "What is the save of the game with rice as the opponent?",
    "question_th": "เซฟของเกมที่มีข้าวเป็นคู่ต่อสู้คืออะไร?",
    "context": "CREATE TABLE table_name_49 (save VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT MIN(goals_against) FROM table_name_38 WHERE played > 34",
    "question_en": "What is the lowest Goals Agains, when Played is greater than 34?",
    "question_th": "อะไรคือจำนวนประตูต่ำสุดเมื่อเล่นมากกว่า 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_en": "What is the lowest Lost, when Goals For is greater than 52, when Points 1 is \"44\", and when Drawn is less than 8?",
    "question_th": "ค่าที่เสียไปต่ำสุดคือเมื่อประตูมากกว่า 52 เมื่อแต้ม 1 คือ \"44\" และเมื่อเสมอน้อยกว่า 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_en": "What is the total number of Lost, when Played is less than 34?",
    "question_th": "จำนวนการแพ้ทั้งหมดเมื่อเล่นน้อยกว่า 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_en": "Which song has a U.S. R&B 100 in 2010?",
    "question_th": "เพลงใดมี US R&B 100 ในปี 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–4, 6–7(7), 6–3\"",
    "question_en": "What is the Champion at Sopot prior to 2006 with a Score of 6–4, 6–7(7), 6–3?",
    "question_th": "แชมป์ที่โซพอตคืออะไรก่อนปี 2549 ด้วยคะแนน 6–4, 6–7(7), 6–3",
    "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–6, 6–2, 6–3\"",
    "question_en": "In what Year was the match at Sopot with a Score of 2–6, 6–2, 6–3?",
    "question_th": "การแข่งขันที่โซพอตในปีใดด้วยคะแนน 2–6, 6–2, 6–3?",
    "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†\"",
    "question_en": "Which Team has Podiums of 0, and a Position of nc†?",
    "question_th": "ทีมใดมีโพเดียมเป็น 0 และตำแหน่ง nc†",
    "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_en": "Which Wins has a Team of scuderia toro rosso, Poles of 0, and Races of 16?",
    "question_th": "ผู้ชนะคนใดมีทีม scuderia toro rosso, เสา 0 และการแข่งขัน 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_en": "Which Season has Podiums of 0, and Races of 16?",
    "question_th": "ฤดูกาลใดมีโพเดียม 0 และการแข่งขัน 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_en": "Which Wins has Podiums of 0, and a Series of masters of formula 3?",
    "question_th": "ผู้ชนะคนไหนมีโพเดียมเป็น 0 และซีรีส์ปรมาจารย์สูตร 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_en": "What was the method used when the time was 4:52?",
    "question_th": "เวลา 4:52 ใช้วิธีอะไร?",
    "context": "CREATE TABLE table_name_49 (method VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT res FROM table_name_66 WHERE time = \"4:15\"",
    "question_en": "What was the result when the time was 4:15?",
    "question_th": "เมื่อเวลา 4:15 น. ผลเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_66 (res VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_65 WHERE player = \"jani hakanpaa\"",
    "question_en": "What is the nationality of player Jani Hakanpaa?",
    "question_th": "นักเตะ เจนี่ ฮาคานปา สัญชาติอะไร?",
    "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_en": "From which league is the player chosen by the Atlanta Thrashers (from Dallas) 6?",
    "question_th": "ผู้เล่นที่ Atlanta Thrashers (จากดัลลัส) เลือกจากลีกใด 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_en": "How many households have yadkin as the county?",
    "question_th": "มีกี่ครัวเรือนที่มี yadkin เป็นเคาน์ตี?",
    "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_en": "What is the highest pick for a year after 2010, and a round smaller than 1?",
    "question_th": "อะไรคือตัวเลือกสูงสุดในหนึ่งปีหลังจากปี 2010 และรอบที่เล็กกว่า 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_en": "What is the highest pick for a year after 2010 and a round larger than 1?",
    "question_th": "อะไรคือตัวเลือกสูงสุดสำหรับหนึ่งปีหลังจากปี 2010 และรอบที่มากกว่า 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_en": "What is the sum for the pick of the year 2009, and a round smaller than 2 and an NBA Club Denver Nuggets?",
    "question_th": "ผลรวมสำหรับการเลือกของปี 2009 และรอบที่เล็กกว่า 2 และ 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_en": "Can you tell me the total number of Total that has the First round of 0, and the Finals smaller than 5?",
    "question_th": "คุณช่วยบอกจำนวนรวมที่มีรอบแรกเป็น 0 และรอบชิงชนะเลิศน้อยกว่า 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_en": "Can you tell me the average Conference Finals that has Finals smaller than 5?",
    "question_th": "คุณช่วยบอกฉันถึงค่าเฉลี่ยของ Conference Finals ที่มี Finals น้อยกว่า 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_en": "Can you tell me the Finals that has the Conference Finals smaller than 12, and the Semifinals of 0, and the Total of 3?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่ารอบชิงชนะเลิศที่มี Conference Finals น้อยกว่า 12 และรอบรองชนะเลิศ 0 และผลรวม 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_en": "Which have more than $80k and a total percent of 2.2%?",
    "question_th": "ซึ่งมีมากกว่า $80,000 และมีเปอร์เซ็นต์รวม 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_en": "Which Label has a Country of canada, and a Format of cd/digital download?",
    "question_th": "ค่ายเพลงใดมีประเทศแคนาดา และมีรูปแบบการดาวน์โหลดซีดี/ดิจิทัล",
    "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_en": "Which Format has a Date of 14 october 2008, and a Label of eagle eye media?",
    "question_th": "รูปแบบใดที่มีวันที่ 14 ตุลาคม 2551 และป้ายกำกับของสื่อ Eagle Eye",
    "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_en": "Which Label has a Country of united kingdom, a Date of 22 september 2008, and a Catalogue number(s) of eredv711?",
    "question_th": "ป้ายใดมีประเทศในสหราชอาณาจักร วันที่ 22 กันยายน 2551 และหมายเลขแค็ตตาล็อก 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_en": "Which Country has a Catalogue number(s) of eredv711?",
    "question_th": "ประเทศใดมีหมายเลขแคตตาล็อก 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_ = \"—\" AND country = \"united states\"",
    "question_en": "Which Format has a Label of eagle eye media, a Catalogue number(s) of —, and a Country of united states?",
    "question_th": "รูปแบบใดมีป้ายกำกับสื่อ Eagle Eye หมายเลขแคตตาล็อกของ — และประเทศของสหรัฐอเมริกา",
    "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_en": "Which Format has a Label of eagle records, and a Catalogue number(s) of edgcd391?",
    "question_th": "รูปแบบใดมีป้ายกำกับบันทึกนกอินทรีและหมายเลขแคตตาล็อก 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_en": "What is the Height of the Player with a Date of Birth of 1978-02-16?",
    "question_th": "ความสูงของผู้เล่นที่มีวันเกิด 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_en": "What is the Name of the D Player born on 1983-07-19?",
    "question_th": "ดีเพลเยอร์ที่เกิดวันที่ 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_en": "What is Eftychia Karagianni Pos.?",
    "question_th": "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_en": "What is the track that from lcd soundsystem?",
    "question_th": "แทร็กจากระบบเสียง lcd คืออะไร?",
    "context": "CREATE TABLE table_name_28 (track VARCHAR, artist VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(uefa_cup) FROM table_name_44 WHERE total > 3",
    "question_en": "What is the total number of UEFA Cup(s), when Total is greater than 3?",
    "question_th": "จำนวนยูฟ่าคัพทั้งหมดเป็นเท่าใด เมื่อผลรวมมากกว่า 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ć\" AND ekstraklasa < 1",
    "question_en": "What is the lowest Polish Cup, when Position is \"Midfielder\", when Player is \"Miroslav Radović\", and when Ekstraklasa is less than 1?",
    "question_th": "ถ้วยโปแลนด์ที่ต่ำที่สุดคืออะไร เมื่อตำแหน่งคือ \"กองกลาง\" เมื่อผู้เล่นคือ \"มิโรสลาฟ ราโดวิช\" และเมื่อเอ็คสตรัคลาซ่าน้อยกว่า 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ński\" AND ekstraklasa < 1",
    "question_en": "What is the sum of Polish Cup, when Player is \"Maciej Iwański\", and when Ekstraklasa is less than 1?",
    "question_th": "ผลรวมของ Polish Cup เมื่อผู้เล่นคือ \"Maciej Iwański\" และเมื่อ Ekstraklasa น้อยกว่า 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_en": "What 2nd Party has an Election of 1885?",
    "question_th": "พรรคที่ 2 ใดมีการเลือกตั้งในปี พ.ศ. 2428",
    "context": "CREATE TABLE table_name_53 (election VARCHAR)"
  },
  {
    "answer": "SELECT 2 AS nd_party FROM table_name_11 WHERE election = \"1834\"",
    "question_en": "What 2nd Party has an Election of 1834?",
    "question_th": "พรรคใดที่ 2 มีการเลือกตั้งในปี พ.ศ. 2377",
    "context": "CREATE TABLE table_name_11 (election VARCHAR)"
  },
  {
    "answer": "SELECT 2 AS nd_member FROM table_name_43 WHERE election = \"1833 by-election\"",
    "question_en": "What 2nd Member has an Election of 1833 by-election?",
    "question_th": "สมาชิกคนที่ 2 คนใดที่ได้รับการเลือกตั้งซ่อมในปี พ.ศ. 2376",
    "context": "CREATE TABLE table_name_43 (election VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_66 WHERE player = \"steve pate\"",
    "question_en": "Golfer Steve Pate has what To par?",
    "question_th": "นักกอล์ฟ Steve Pate มีอะไรจะพาร์?",
    "context": "CREATE TABLE table_name_66 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_91 WHERE opponent = \"boston patriots\"",
    "question_en": "What was the score when they played the Boston Patriots?",
    "question_th": "ตอนที่พวกเขาเล่นกับ 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_en": "How many apps for the rank of 8 in the 2012/13 season?",
    "question_th": "มีกี่แอพสำหรับอันดับ 8 ในฤดูกาล 2012/56?",
    "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_en": "What was the score when Nacional was the champion, River Plate was the runner-up, and the venue was Centenario?",
    "question_th": "คะแนนเมื่อนาซิอองนาลเป็นแชมป์ ริเวอร์เพลทเป็นรองแชมป์ และสถานที่จัดคือเซนเทนาริโอ?",
    "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ético wanderers\"",
    "question_en": "Who was the champion when atlético wanderers was the runner-up?",
    "question_th": "ใครคือแชมป์เมื่อแอตเลติโก แวนเดอเรอร์สได้รองแชมป์?",
    "context": "CREATE TABLE table_name_57 (champion VARCHAR, runner_up VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_55 WHERE venue = \"san lorenzo centenario\"",
    "question_en": "In which city is the San Lorenzo Centenario venue located?",
    "question_th": "สนาม San Lorenzo Centenario ตั้งอยู่ในเมืองใด?",
    "context": "CREATE TABLE table_name_55 (city VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_98 WHERE date = \"31 may 2010\"",
    "question_en": "The game played 31 May 2010 was played on what surface?",
    "question_th": "เกมที่เล่นเมื่อวันที่ 31 พฤษภาคม พ.ศ. 2553 เล่นบนพื้นผิวใด?",
    "context": "CREATE TABLE table_name_98 (surface VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_63 WHERE date = \"16 september 2012\"",
    "question_en": "What tournament was played 16 September 2012?",
    "question_th": "ทัวร์นาเมนต์ใดที่เล่นในวันที่ 16 กันยายน 2555?",
    "context": "CREATE TABLE table_name_63 (tournament VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_22 WHERE date = \"26 july 2010\"",
    "question_en": "What is the score of the game played 26 July 2010?",
    "question_th": "คะแนนของเกมที่เล่นเมื่อวันที่ 26 กรกฎาคม พ.ศ. 2553 เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_22 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_92 WHERE opponent = \"paul-henri mathieu\"",
    "question_en": "The match against Paul-Henri Mathieu had what outcome?",
    "question_th": "แมตช์กับพอล-อองรี มาติเยอให้ผลลัพธ์เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_92 (outcome VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_35 WHERE country = \"south africa\"",
    "question_en": "What is South Africa's to par?",
    "question_th": "แอฟริกาใต้จะพาร์อะไร?",
    "context": "CREATE TABLE table_name_35 (to_par VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_20 WHERE finish = \"t20\"",
    "question_en": "Who had a finish of t20?",
    "question_th": "ใครจบ t20 บ้าง?",
    "context": "CREATE TABLE table_name_20 (player VARCHAR, finish VARCHAR)"
  },
  {
    "answer": "SELECT AVG(pujehun) FROM table_name_10 WHERE measure = \"female enrollment\"",
    "question_en": "What is the average pjehun measured by female enrollment?",
    "question_th": "พเจฮุนโดยเฉลี่ยวัดจากการลงทะเบียนสตรีเป็นเท่าใด?",
    "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_en": "What is the highest pjuehun with a kenema greater than 559, a kambia of 45,653, and a tonkolili greater than 113,926?",
    "question_th": "พจูฮุนสูงสุดที่มีคีมามากกว่า 559, คัมเบีย 45,653 และโทนโคลิลีมากกว่า 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_en": "What is the sum of the kono with a bonthe greater than 21,238?",
    "question_th": "ผลรวมของโคโนะที่มีแต้มมากกว่า 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_en": "What party is the person who was first elected in 2000 and was re-elected?",
    "question_th": "บุคคลที่ได้รับเลือกครั้งแรกในปี พ.ศ. 2543 และได้รับเลือกอีกครั้งคือพรรคใด",
    "context": "CREATE TABLE table_name_50 (party VARCHAR, results VARCHAR, first_elected VARCHAR)"
  },
  {
    "answer": "SELECT report FROM table_name_93 WHERE set_3 = \"21–25\"",
    "question_en": "Which report has a Set 3 value of 21–25?",
    "question_th": "รายงานใดมีค่าชุดที่ 3 เท่ากับ 21–25",
    "context": "CREATE TABLE table_name_93 (report VARCHAR, set_3 VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_70 WHERE set_3 = \"25–14\"",
    "question_en": "What was the Time when Set 3 was 25–14?",
    "question_th": "เวลาที่ชุด 3 คือ 25–14 คืออะไร?",
    "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–25\"",
    "question_en": "When was there a Time of 18:00, and a Set 1 of 22–25?",
    "question_th": "มีเวลา 18:00 น. และชุดที่ 1 จาก 22–25 เมื่อใด",
    "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_en": "How many Totals have a CONCACAF of 0, and an MLS Cup smaller than 6?",
    "question_th": "ผลรวมทั้งหมดมี CONCACAF เท่ากับ 0 และ MLS Cup น้อยกว่า 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_en": "Which MLS Cup has another larger than 9, and a Total smaller than 72?",
    "question_th": "MLS Cup ใดมีขนาดใหญ่กว่า 9 และผลรวมน้อยกว่า 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_en": "What year has a not nominated result and a nomination title of \"the color of fame\"?",
    "question_th": "ปีใดที่มีผลงานไม่ได้รับการเสนอชื่อเข้าชิงและมีชื่อเข้าชิง \"สีสันแห่งชื่อเสียง\"?",
    "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_en": "What's the original title of the nomination title, \"brecha en el silencio\"?",
    "question_th": "ชื่อดั้งเดิมของชื่อที่ได้รับการเสนอชื่อ \"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_en": "What year has a nomination title of \"sangrador\"?",
    "question_th": "ปีใดที่ได้รับการเสนอชื่อเข้าชิงตำแหน่ง \"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_en": "What year has a original title of \"el tinte de la fama\"?",
    "question_th": "ปีใดมีชื่อดั้งเดิมว่า \"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_en": "What's the result for director elia schneider's punto y raya?",
    "question_th": "ผลลัพธ์ของ 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_en": "What is the score points when the total is 20?",
    "question_th": "คะแนนรวม 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_en": "What is the score points in WC Kerrville, when rank was points of 8?",
    "question_th": "คะแนนใน WC Kerrville คือเท่าไร เมื่ออันดับอยู่ที่ 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_en": "What is the score points when the total is 16?",
    "question_th": "คะแนนรวม 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_en": "What is the score points when the rank points is 3?",
    "question_th": "คะแนนเมื่อคะแนนอันดับเป็น 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_en": "What is the total when the score points show Olympic bronze medalist?",
    "question_th": "คะแนนรวมแสดงผู้ชนะเลิศเหรียญทองแดงโอลิมปิกเป็นเท่าใด",
    "context": "CREATE TABLE table_name_50 (total VARCHAR, score_points VARCHAR)"
  },
  {
    "answer": "SELECT winning_constructor FROM table_name_82 WHERE circuit = \"lasarte\"",
    "question_en": "What Winning constructor has a Circuit of lasarte?",
    "question_th": "คอนสตรัคเตอร์ที่ชนะอะไรมีวงจรลาซาร์ต?",
    "context": "CREATE TABLE table_name_82 (winning_constructor VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_61 WHERE winning_driver = \"ugo sivocci\"",
    "question_en": "What Date has a Winning driver of ugo sivocci?",
    "question_th": "คนขับที่ชนะของ 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_en": "What Report has a Winning driver of mario razzauti?",
    "question_th": "รายงานอะไรมีตัวขับเคลื่อนที่ชนะของ mario razzauti?",
    "context": "CREATE TABLE table_name_72 (report VARCHAR, winning_driver VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_36 WHERE circuit = \"cremona\"",
    "question_en": "What Date has a Circuit of cremona?",
    "question_th": "Cremona มีวงจรวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_36 (date VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_56 WHERE winning_constructor = \"ansaldo\"",
    "question_en": "What Name has a Winning constructor of ansaldo?",
    "question_th": "ชื่ออะไรมีตัวสร้างที่ชนะของ 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_en": "What Winning driver has a Winning constructor of sunbeam?",
    "question_th": "ไดรเวอร์ที่ชนะอะไรมีตัวสร้างแสงตะวันที่ชนะ?",
    "context": "CREATE TABLE table_name_43 (winning_driver VARCHAR, winning_constructor VARCHAR)"
  },
  {
    "answer": "SELECT AVG(total) FROM table_name_98 WHERE bronze < 0",
    "question_en": "What is the average total for 0 bronze?",
    "question_th": "ค่าเฉลี่ยรวมของ 0 ทองแดงคือเท่าไร?",
    "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_en": "What is the title of the track with lyricist ROZ and arranger Yongmin Lee?",
    "question_th": "เพลงที่มีผู้แต่งเนื้อร้อง ROZ และผู้เรียบเรียงชื่อเพลงว่าอะไร ลียงมิน?",
    "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_en": "Who was the lyricist for composer Haewon Park?",
    "question_th": "ใครคือผู้แต่งเนื้อร้องของนักแต่งเพลง 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_en": "What are the lengths of the tracks arranged by ROZ?",
    "question_th": "รางรถไฟที่ 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_en": "How many years did caroline lubrez win?",
    "question_th": "แคโรไลน์ ลูเบรซ ชนะมากี่ปี?",
    "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_en": "Which Area km 2 has an Official Name of stanley, and a Population larger than 1,817?",
    "question_th": "พื้นที่ใด กม. 2 มีชื่ออย่างเป็นทางการว่า stanley และมีประชากรมากกว่า 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_en": "How much Area km 2 have a Population of 1,215?",
    "question_th": "พื้นที่ กม.2 มีประชากร 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_en": "Which Census Ranking has a Population smaller than 879, and an Area km 2 larger than 537.62?",
    "question_th": "การจัดอันดับสำมะโนประชากรใดมีประชากรน้อยกว่า 879 และพื้นที่ กม. 2 มากกว่า 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_en": "Which Census Ranking has an Area km 2 larger than 753.06, and an Official Name of stanley?",
    "question_th": "การจัดอันดับการสำรวจสำมะโนประชากรใดมีพื้นที่ กม. 2 มากกว่า 753.06 และมีชื่ออย่างเป็นทางการว่า สแตนลีย์",
    "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_en": "Which Area km 2 has an Official Name of southampton, and a Population larger than 1,601?",
    "question_th": "พื้นที่ใด กม. 2 มีชื่อทางการของเซาแธมป์ตัน และมีประชากรมากกว่า 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_en": "What is Kirkby Town's lowest lost with more than 83 goals?",
    "question_th": "เคิร์กบี ทาวน์ เสียประตูน้อยที่สุดโดยเสียมากกว่า 83 ประตูคืออะไร?",
    "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_en": "What is the lowest position with points 1 of 27 2 and fewer than 9 drawn?",
    "question_th": "ตำแหน่งต่ำสุดโดยมีแต้ม 1 จาก 27 2 และเสมอน้อยกว่า 9 คือตำแหน่งใด?",
    "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_en": "What is the goal difference number with a position of 15?",
    "question_th": "จำนวนผลต่างประตูที่ทำได้ในตำแหน่ง 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_en": "What is English Translation, when Lyricist(s) is \"Giorgos Moukidis\", and when Original Album is \"Ena (New Edition)\"",
    "question_th": "การแปลภาษาอังกฤษคืออะไร เมื่อผู้แต่งบทเพลงคือ \"Giorgos Moukidis\" และเมื่ออัลบั้มต้นฉบับคือ \"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_en": "What is Original Album, when Time is \"3:39\"?",
    "question_th": "อัลบั้มต้นฉบับคืออะไร เมื่อเวลาเป็น \"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_en": "What is Time, when Composer(s) is \"Kyriakos Papadopoulos\"?",
    "question_th": "เวลาคืออะไรเมื่อผู้แต่งคือ \"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_en": "Who was the visitor on March 27?",
    "question_th": "ใครคือผู้เยี่ยมชมในวันที่ 27 มีนาคม?",
    "context": "CREATE TABLE table_name_9 (visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_34 WHERE date = \"february 8\"",
    "question_en": "What was the score of the game on February 8?",
    "question_th": "สกอร์เกมวันที่ 8 กุมภาพันธ์ เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_34 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_1 WHERE date = \"december 4\"",
    "question_en": "What was their record on December 4?",
    "question_th": "บันทึกของพวกเขาในวันที่ 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_en": "What was the score on February 21 when the home team was the Pittsburgh Penguins?",
    "question_th": "เมื่อวันที่ 21 ก.พ. เจ้าบ้านเป็น พิตส์เบิร์ก เพนกวินส์ แต้มเท่าไหร่?",
    "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_en": "WHAT IS THE LOWEST MONEY WITH TO PAR LARGER THAN 26?",
    "question_th": "เงินต่ำสุดที่มีพาร์มากกว่า 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_en": "WHAT IS THE SCORE WITH $85 FOR CLARENCE HACKNEY?",
    "question_th": "คะแนน $85 สำหรับ 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_en": "WHAT IS THE LOWEST MONEY WITH 74-74-76-74=298 SCORE?",
    "question_th": "เงินต่ำสุดที่มีคะแนน 74-74-76-74=298 คืออะไร?",
    "context": "CREATE TABLE table_name_2 (money___ INTEGER, score VARCHAR)"
  },
  {
    "answer": "SELECT MAX(week) FROM table_name_96 WHERE date = \"september 14, 1980\"",
    "question_en": "What is the week number for the date of September 14, 1980?",
    "question_th": "เลขที่สัปดาห์ของวันที่ 14 กันยายน 1980 คืออะไร?",
    "context": "CREATE TABLE table_name_96 (week INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_48 WHERE result = \"l 14–9\"",
    "question_en": "What week was the result l 14–9?",
    "question_th": "ผลลัพธ์ในสัปดาห์ที่ 14–9 คืออะไร?",
    "context": "CREATE TABLE table_name_48 (week VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(week) FROM table_name_2 WHERE attendance = 44 OFFSET 132",
    "question_en": "What is the week number with attendance of 44,132?",
    "question_th": "สัปดาห์ที่เท่าไหร่ที่มีผู้เข้าร่วม 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_en": "Who was the winner for the circuit Eastern Creek Raceway?",
    "question_th": "ใครคือผู้ชนะการแข่งขัน 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_en": "What was the city for the winner Darren Hossack at the circuit of phillip island grand prix circuit?",
    "question_th": "เมืองใดสำหรับผู้ชนะ Darren Hossack ที่สนามแข่งรถ 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_en": "What city was the circuit of mallala motor sport park?",
    "question_th": "สนามแข่งรถมัลลาลามอเตอร์สปอร์ตปาร์คคือเมืองใด",
    "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_en": "Which To par has a Place of t1, and a Country of india?",
    "question_th": "To par ไหนมีอันดับ t1 และประเทศอินเดีย?",
    "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_en": "What is Brian Gay's place?",
    "question_th": "บ้านของ Brian Gay อยู่ที่ไหน?",
    "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és romero\"",
    "question_en": "Which Country has a Score smaller than 70, and a Place of t3, and a Player of andrés romero?",
    "question_th": "ประเทศใดมีคะแนนน้อยกว่า 70 และอันดับ 3 และเป็นผู้เล่นของ andrés 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_en": "What order year has a 30 Length (ft.) and 05.505 model?",
    "question_th": "ปีอะไรมีรุ่น 30 ยาว (ฟุต) และ 05.505 ครับ?",
    "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_en": "What builder has a 2001-02 order year?",
    "question_th": "ช่างก่อสร้างรายใดมีปีสั่งซื้อปี 2544-02?",
    "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_en": "What is the order year of obi builder and 05.505 model that is 30 feet long?",
    "question_th": "obi builder และรุ่น 05.505 ที่มีความยาว 30 ฟุต สั่งปีอะไร?",
    "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_en": "What is the career of player serhiy konovalov, who has less than 1 pct.?",
    "question_th": "อาชีพของผู้เล่น Serhiy Konovalov ที่มีน้อยกว่า 1 เปอร์เซ็นต์คืออะไร?",
    "context": "CREATE TABLE table_name_23 (career VARCHAR, pct VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT career FROM table_name_38 WHERE player = \"andriy husyn\"",
    "question_en": "What is the career of player andriy husyn?",
    "question_th": "อาชีพของนักเตะ อังเดร ฮุสซิน คืออะไร?",
    "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_en": "What is the earliest year that has fewer than 3852.1 cows and 3900.1 working horses?",
    "question_th": "ปีแรกสุดที่มีวัวน้อยกว่า 3,852.1 ตัว และม้าทำงาน 3,900.1 ตัว คือปีใด",
    "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_en": "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?",
    "question_th": "อะไรคือจำนวนวัวที่มีวัวมากกว่า 113.8 ตัว แกะและแพะตัวใหญ่กว่า 4533.4 ตัว และวัวตัวเล็กกว่า 3987 ตัว และม้ารวมมากกว่า 5,056.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_en": "How many years had fewer than 2089.2 pigs?",
    "question_th": "กี่ปีมีสุกรน้อยกว่า 2,089.2 ตัว?",
    "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_en": "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?",
    "question_th": "อะไรคือจำนวนม้ารวมต่ำสุดที่มีวัวทั้งหมดน้อยกว่า 6,274.1 ตัว และวัวตัวหนึ่งน้อยกว่า 156.5 ตัว และวัวตัวผู้ 40.0 ตัว และวัวน้อยกว่า 3,377 ตัว คืออะไร?",
    "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_en": "What is the lowest number of sheep and goats after 1931, with fewer than 2518 cows and more than 2604.8 horses?",
    "question_th": "อะไรคือจำนวนแกะและแพะที่ต่ำที่สุดหลังปี 1931 โดยมีวัวน้อยกว่า 2,518 ตัว และม้ามากกว่า 2,604.8 ตัว",
    "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_en": "For the game ending with a record of 31-43-2, what was the decision?",
    "question_th": "สำหรับเกมที่จบลงด้วยสถิติ 31-43-2 ตัดสินใจอย่างไร?",
    "context": "CREATE TABLE table_name_10 (decision VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT decision FROM table_name_22 WHERE record = \"28-35-1\"",
    "question_en": "For the game that ended with a record of 28-35-1, what was the decision?",
    "question_th": "สำหรับเกมที่จบลงด้วยสถิติ 28-35-1 ตัดสินกันอย่างไร?",
    "context": "CREATE TABLE table_name_22 (decision VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT MAX(attendance) FROM table_name_76 WHERE opponent = \"phoenix coyotes\"",
    "question_en": "WHAT IS THE HIGHEST ATTENDANCE FOR THE PHOENIX COYOTES?",
    "question_th": "การเข้าร่วมสูงสุดสำหรับ PHOENIX COYOTES คืออะไร?",
    "context": "CREATE TABLE table_name_76 (attendance INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT decision FROM table_name_10 WHERE date = \"november 28\"",
    "question_en": "WHAT IS THE DECISION FOR NOVEMBER 28?",
    "question_th": "การตัดสินใจในวันที่ 28 พฤศจิกายนคืออะไร?",
    "context": "CREATE TABLE table_name_10 (decision VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT mission FROM table_name_13 WHERE location = \"rome\"",
    "question_en": "what is the mission when the location is rome?",
    "question_th": "ภารกิจคืออะไรเมื่อสถานที่คือกรุงโรม?",
    "context": "CREATE TABLE table_name_13 (mission VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_42 WHERE type = \"embassy\" AND mission = \"panama\"",
    "question_en": "what is the location when the type is embassy and the mission is panama?",
    "question_th": "ที่ตั้งไหนคะประเภทสถานทูตและภารกิจปานามาคะ?",
    "context": "CREATE TABLE table_name_42 (location VARCHAR, type VARCHAR, mission VARCHAR)"
  },
  {
    "answer": "SELECT mission FROM table_name_18 WHERE location = \"brasilia\"",
    "question_en": "what is the mission when the location is brasilia?",
    "question_th": "ภารกิจคืออะไรเมื่อสถานที่คือบราซิเลีย?",
    "context": "CREATE TABLE table_name_18 (mission VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_62 WHERE position = \"ambassador\" AND location = \"rabat\"",
    "question_en": "what is the type when the position is ambassador and the location is rabat?",
    "question_th": "ตำแหน่งเอกอัครราชทูตและตำแหน่งราบัตเป็นประเภทไหน?",
    "context": "CREATE TABLE table_name_62 (type VARCHAR, position VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT wins FROM table_name_19 WHERE pct = \".848\"",
    "question_en": "How many wins when the pct, is .848?",
    "question_th": "กี่เปอร์เซ็นต์ที่ชนะคือ .848?",
    "context": "CREATE TABLE table_name_19 (wins VARCHAR, pct VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_35 WHERE losses = \"34\"",
    "question_en": "Which season had 34 losses?",
    "question_th": "ฤดูกาลใดมีการสูญเสีย 34 ครั้ง?",
    "context": "CREATE TABLE table_name_35 (season VARCHAR, losses VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_17 WHERE season = \"playoffs\"",
    "question_en": "What was the finish in the playoffs season?",
    "question_th": "การจบฤดูกาลในรอบตัดเชือกเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_17 (finish VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT wins FROM table_name_10 WHERE league = \"playoffs\"",
    "question_en": "What is the number of wins in the playoffs league?",
    "question_th": "ชัยชนะในรอบตัดเชือกลีกเป็นจำนวนเท่าใด?",
    "context": "CREATE TABLE table_name_10 (wins VARCHAR, league VARCHAR)"
  },
  {
    "answer": "SELECT league FROM table_name_47 WHERE losses = \"0\"",
    "question_en": "What is the league with 0 losses?",
    "question_th": "ลีกที่แพ้ 0 คืออะไร?",
    "context": "CREATE TABLE table_name_47 (league VARCHAR, losses VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_13 WHERE score = 72 - 66 - 75 = 213",
    "question_en": "In what place is the player with a score of 72-66-75=213?",
    "question_th": "นักเตะที่มีคะแนน 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_en": "From what country is the player with a score of 68-71-76=215?",
    "question_th": "นักเตะจากประเทศไหนที่มีคะแนน 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_en": "Which player has a score of 68-69-73=210",
    "question_th": "ผู้เล่นคนไหนมีคะแนน 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_en": "Who has a finish of t66?",
    "question_th": "ใครมีจบt66บ้าง?",
    "context": "CREATE TABLE table_name_89 (player VARCHAR, finish VARCHAR)"
  },
  {
    "answer": "SELECT SUM(total) FROM table_name_93 WHERE player = \"wayne grady\"",
    "question_en": "What is Wayne Grady's total?",
    "question_th": "ยอดรวมของ Wayne Grady คืออะไร?",
    "context": "CREATE TABLE table_name_93 (total INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT grüne FROM table_name_14 WHERE rettö = \"0.6%\" AND state = \"tyrol\"",
    "question_en": "What percent did GRÜNE get in Tyrol where RETTÖ got 0.6%?",
    "question_th": "GRÜNE ได้เปอร์เซ็นต์ใน Tyrol โดยที่ RETTÖ ได้ 0.6%",
    "context": "CREATE TABLE table_name_14 (grüne VARCHAR, rettö VARCHAR, state VARCHAR)"
  },
  {
    "answer": "SELECT rettö FROM table_name_81 WHERE linke = \"0.1%\" AND fritz = \"1.3%\"",
    "question_en": "What percent did RETTÖ get in the state where LINKE got 0.1%, and FRITZ got 1.3%?",
    "question_th": "RETTÖ อยู่ในสถานะที่ LINKE ได้ 0.1% และ FRITZ ได้ 1.3% เป็นเปอร์เซ็นต์เท่าใด",
    "context": "CREATE TABLE table_name_81 (rettö VARCHAR, linke VARCHAR, fritz VARCHAR)"
  },
  {
    "answer": "SELECT grüne FROM table_name_14 WHERE fritz = \"1.3%\"",
    "question_en": "What percent did GRÜNE get in the state where FRITZ got 1.3%?",
    "question_th": "GRÜNE อยู่ในสถานะที่ FRITZ ได้ 1.3% กี่เปอร์เซ็นต์",
    "context": "CREATE TABLE table_name_14 (grüne VARCHAR, fritz VARCHAR)"
  },
  {
    "answer": "SELECT linke FROM table_name_99 WHERE state = \"tyrol\"",
    "question_en": "What percent did LINKE get in Tyrol?",
    "question_th": "LINKE ได้รับใน Tyrol กี่เปอร์เซ็นต์",
    "context": "CREATE TABLE table_name_99 (linke VARCHAR, state VARCHAR)"
  },
  {
    "answer": "SELECT stark FROM table_name_58 WHERE state = \"upper austria\"",
    "question_en": "What percent did STARK get in upper austria?",
    "question_th": "STARK ได้กำไรในออสเตรียตอนบนกี่เปอร์เซ็นต์?",
    "context": "CREATE TABLE table_name_58 (stark VARCHAR, state VARCHAR)"
  },
  {
    "answer": "SELECT MIN(against) FROM table_name_45 WHERE date = \"27/03/1971\"",
    "question_en": "What's the lowest against on 27/03/1971?",
    "question_th": "ค่าต่ำสุดเทียบกับวันที่ 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_en": "What venue has an against over 14, an opposing team of scotland, and a status of five nations?",
    "question_th": "สนามใดที่มีการแข่งมากกว่า 14 ทีม ทีมตรงข้ามจากสกอตแลนด์ และมีสถานะเป็น 5 ชาติ?",
    "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_en": "What is the T4 Place Player with a Score of 71-74-66=211?",
    "question_th": "ผู้เล่นอันดับ T4 คืออะไรที่มีคะแนน 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 = \"–1\" AND player = \"henrik stenson\"",
    "question_en": "With a To par of –1, what is Player Henrik Stenson's Score?",
    "question_th": "ด้วยพาร์ถึง –1 คะแนนของผู้เล่นเฮนริก สเตนสันคือเท่าไร?",
    "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_en": "What is the To par of the Player with a Score of 73-67-68=208?",
    "question_th": "ค่าพาร์ของผู้เล่นที่มีคะแนน 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_en": "WHAT IS THE PM THAT HAS NO BLOGS, NO XML Forms Management and workflow, NO SEARCH, AND NO SOCIAL SOFTWARE?",
    "question_th": "PM ที่ไม่มีบล็อก ไม่มีการจัดการแบบฟอร์ม XML และเวิร์กโฟลว์ คืออะไร ไม่มีการค้นหา และไม่มีซอฟต์แวร์ทางสังคม",
    "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_en": "WHAT CHARTING HAS NO BLOGS OR DISCUSSION?",
    "question_th": "แผนภูมิใดที่ไม่มีบล็อกหรือการอภิปราย?",
    "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_en": "WHAT IS THE SOCIAL SOFTWARE WITH NO DISCUSSION, NO TIME TRACKING, AND NO CHARTING?",
    "question_th": "ซอฟต์แวร์โซเชียลที่ไม่มีการอภิปราย ไม่มีการติดตามเวลา และไม่มีแผนภูมิคืออะไร",
    "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_en": "WHAT IS THE BOOKMARKING, TAGGING, RATING AND COMMENTS WITH NO LIST MANAGEMENT, NO CHARTING, NO WEB PUBLISHING, OF MICROSOFT EXCHANGE SERVER?",
    "question_th": "การบุ๊กมาร์ก การแท็ก การให้คะแนน และความคิดเห็นโดยไม่มีการจัดการรายการ ไม่มีการสร้างแผนภูมิ ไม่มีการเผยแพร่เว็บ ของ 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_en": "What is Constellation, when Date Sent is \"September 4, 2001\", and when Distance ( ly ) is less than 57.4?",
    "question_th": "Constellation คืออะไร เมื่อวันที่ส่งคือ \"4 กันยายน 2544\" และเมื่อระยะทาง (ly) น้อยกว่า 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_en": "What is Date, when Constellation is \"Delphinus\"?",
    "question_th": "วันที่คืออะไรเมื่อกลุ่มดาวเป็น \"เดลฟีนัส\"?",
    "context": "CREATE TABLE table_name_71 (date_sent VARCHAR, constellation VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(distance___ly__) FROM table_name_34 WHERE constellation = \"draco\"",
    "question_en": "What is the total number of Distance ( ly ), when Constellation is \"Draco\"?",
    "question_th": "จำนวนระยะทางทั้งหมด ( ly ) เมื่อกลุ่มดาวคือ \"เดรโก\" เป็นเท่าใด",
    "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_en": "What is Date Sent, when Signal Power ( kW ) is less than 126, when Arrival Date is \"January 2059\", and when HD Designation is \"HD193664\"?",
    "question_th": "วันที่ส่งคืออะไร เมื่อกำลังสัญญาณ (kW) น้อยกว่า 126 เมื่อวันที่มาถึงคือ \"มกราคม 2059\" และเมื่อการกำหนด HD คือ \"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_en": "What is Constellation, when HD Designation is \"HD197076\"?",
    "question_th": "Constellation คืออะไร เมื่อการกำหนด HD คือ \"HD197076\"",
    "context": "CREATE TABLE table_name_82 (constellation VARCHAR, hd_designation VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_4 WHERE score = \"6–4, 6–4\" AND opponent = \"leonardo tavares\"",
    "question_en": "What date was the match against leonardo tavares with a score of 6–4, 6–4?",
    "question_th": "แมตช์กับเลโอนาร์โด ทาวาเรสด้วยสกอร์ 6–4, 6–4 ตรงกับวันไหน?",
    "context": "CREATE TABLE table_name_4 (date VARCHAR, score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_9 WHERE opponent = \"adrián menéndez-maceiras\"",
    "question_en": "What date was the match against adrián menéndez-maceiras?",
    "question_th": "แข่งกับ อาเดรียน เมเนนเดซ-มาเซราส วันที่เท่าไหร่?",
    "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_en": "What is the highest number of wins for Quambatook when Against is less than 1129?",
    "question_th": "จำนวนชัยชนะสูงสุดสำหรับ Quambatook เมื่อ Against น้อยกว่า 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_en": "What is the total number of draws when there are fewer than 3 wins?",
    "question_th": "จำนวนเสมอทั้งหมดเมื่อมีการชนะน้อยกว่า 3 ครั้งเป็นเท่าใด?",
    "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_en": "What is the total number of draws for Wakool when there are more than 11 losses and fewer than 4 wins?",
    "question_th": "วาคูล แพ้เกิน 11 นัด ชนะน้อยกว่า 4 นัด รวมกันได้เท่าไร?",
    "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_en": "Which Country has a Score of 69-74=143?",
    "question_th": "ประเทศใดมีคะแนน 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_en": "Which Player has a To Par smaller than 5, and a Score of 70-72=142?",
    "question_th": "ผู้เล่นคนใดที่มี To Par น้อยกว่า 5 และคะแนน 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_en": "What was Frank Moore's score?",
    "question_th": "คะแนนของ Frank Moore คืออะไร?",
    "context": "CREATE TABLE table_name_81 (score VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_84 WHERE home_team = \"birmingham city\"",
    "question_en": "What was the score of the game that home team birmingham city played?",
    "question_th": "เกมที่เจ้าบ้าน เบอร์มิงแฮม ซิตี้ เล่นสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_84 (score VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_43 WHERE away_team = \"northampton town\"",
    "question_en": "What date was the game when away team northampton town played?",
    "question_th": "แมตช์ที่ทีมเยือน นอร์ธแธมป์ตัน ลงเล่นคือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_43 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_16 WHERE home_team = \"woking\"",
    "question_en": "Who was the team who played home team woking?",
    "question_th": "ทีมไหนเล่นทีมเหย้าวอกกิ้ง?",
    "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_en": "What is the home for the league 3rd liga (iii)?",
    "question_th": "สนามเหย้าของลีก ลีกา 3 (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_en": "What is the home for league 3rd liga, and an away of 4-0?",
    "question_th": "ลีก 3 ลีก 3 เจ้าบ้านเป็นทีมไหน และทีมเยือน 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_en": "What is the home for the away of 4-0?",
    "question_th": "เจ้าบ้านนำ 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_en": "What season has a league 3rd liga, and away of 1-0?",
    "question_th": "ลีกลีกาที่ 3 ฤดูกาลใด และทีมเยือนเสมอ 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_en": "What team has a season of 2009-10?",
    "question_th": "ทีมใดมีฤดูกาล 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_en": "What is the highest Goals Against, when Points is greater than 25, when Club is \"SD Indautxu\", and when Position is greater than 3?",
    "question_th": "เป้าหมายสูงสุดต่อคืออะไร เมื่อคะแนนมากกว่า 25 เมื่อคลับคือ \"SD Indautxu\" และเมื่อตำแหน่งมากกว่า 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_en": "What is the total number of Wins, when Draws is less than 2?",
    "question_th": "จำนวนชนะทั้งหมดคือเท่าไร เมื่อเสมอน้อยกว่า 2?",
    "context": "CREATE TABLE table_name_48 (wins VARCHAR, draws INTEGER)"
  },
  {
    "answer": "SELECT AVG(wins) FROM table_name_96 WHERE played < 30",
    "question_en": "What is the average Wins, when Played is less than 30?",
    "question_th": "ชัยชนะโดยเฉลี่ยเมื่อเล่นน้อยกว่า 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_en": "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?",
    "question_th": "จำนวนชนะทั้งหมดคือเท่าไร เมื่อเสมอน้อยกว่า 5 เมื่อประตูมากกว่า 49 และเมื่อเล่นมากกว่า 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_en": "What is the lowest Goal Difference, when Position is \"7\", and when Played is greater than 30?",
    "question_th": "อะไรคือผลต่างประตูที่ต่ำที่สุด เมื่อตำแหน่งคือ \"7\" และเมื่อเล่นมากกว่า 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_en": "What is the week 3, prior to the when the week 4 was Laura Nicole?",
    "question_th": "สัปดาห์ที่ 3 คือสัปดาห์ที่ 4 คือลอร่า นิโคล",
    "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_en": "What was the week 2 prior to the when Miranda Jordan was the week 4?",
    "question_th": "สัปดาห์ที่ 2 คืออะไรก่อนที่มิแรนดา จอร์แดนจะเป็นสัปดาห์ที่ 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_en": "What was the week 2 prior to the when Brittany Alyse was week 3?",
    "question_th": "สัปดาห์ที่ 2 ก่อนหน้าที่ Brittany Alyse เป็นสัปดาห์ที่ 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_en": "What is the week 5 after Dani Dior as week 1?",
    "question_th": "สัปดาห์ที่ 5 หลังจาก Dani Dior เป็นสัปดาห์ที่ 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_en": "What was the week 2 before Lara Leverence was week 3?",
    "question_th": "สัปดาห์ที่ 2 ก่อนที่ Lara Leverence จะเป็นสัปดาห์ที่ 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_en": "What is the total number of bronzes that is less than 1 in total?",
    "question_th": "จำนวนเหรียญทองแดงที่น้อยกว่า 1 ทั้งหมดเป็นจำนวนเท่าใด?",
    "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_en": "What is the total number of bronze that has less than 2 gold, and more than 1 silver?",
    "question_th": "จำนวนทองแดงทั้งหมดที่มีน้อยกว่า 2 ทองคำ และมากกว่า 1 เงินคือเท่าใด",
    "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_en": "What is the lowest rank with less than 1 gold, 0 silver, 1 bronze, and a total less than 1?",
    "question_th": "อันดับต่ำสุดที่มีน้อยกว่า 1 เหรียญทอง 0 เหรียญเงิน 1 เหรียญทองแดง และรวมน้อยกว่า 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_en": "What is the average bronze for less than 0 gold?",
    "question_th": "บรอนซ์โดยเฉลี่ยสำหรับน้อยกว่า 0 ทองคือเท่าใด?",
    "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_en": "What is the total number for less than 8 bronze, the Netherlands nation, and is ranked less than 16?",
    "question_th": "ต่ำกว่า 8 เหรียญทองแดง เนเธอร์แลนด์ และอันดับต่ำกว่า 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_en": "What California city has an active status and a greek designation of established colony?",
    "question_th": "เมืองใดในแคลิฟอร์เนียที่มีสถานะใช้งานอยู่และมีการกำหนดอาณานิคมแบบกรีก",
    "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_en": "What's the greek designation of the new york chapter with a charter date of april 23, 2005?",
    "question_th": "บทนิวยอร์กที่มีกฎบัตรวันที่ 23 เมษายน 2548 มีการกำหนดในภาษากรีกว่าอย่างไร",
    "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_en": "What collegiate institution has an active status and a charter date of march 30, 2002?",
    "question_th": "สถาบันวิทยาลัยใดที่มีสถานะใช้งานอยู่และมีกฎบัตรวันที่ 30 มีนาคม 2545",
    "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_en": "What's the greek designation of the city riverside?",
    "question_th": "เมืองริมแม่น้ำมีอักษรกรีกว่าอะไร",
    "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_en": "What city has a charter date of november 24, 1999?",
    "question_th": "เมืองใดมีกฎบัตรวันที่ 24 พฤศจิกายน 2542?",
    "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_en": "What state or district has a charter date of april 17, 2011?",
    "question_th": "รัฐหรือเขตใดมีกฎบัตรวันที่ 17 เมษายน 2554?",
    "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_en": "What is the smallest all around when the total is 19.85 and the hoop is less than 9.85?",
    "question_th": "อะไรคือสิ่งที่เล็กที่สุดเมื่อผลรวมคือ 19.85 และห่วงน้อยกว่า 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_en": "What is the average hoop when the all around is less than 9.7?",
    "question_th": "ห่วงเฉลี่ยเมื่อรอบด้านน้อยกว่า 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_en": "What is Median Family Income, when Median Household Income is \"$50,717\"?",
    "question_th": "รายได้เฉลี่ยของครอบครัวคือเท่าใด เมื่อรายได้เฉลี่ยของครัวเรือนคือ \"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_en": "What is the highest Number of Households, when Per Capita Income is \"$25,557\", and when Population is less than \"22,330\"?",
    "question_th": "จำนวนครัวเรือนสูงสุดคือเท่าใด เมื่อรายได้ต่อหัวคือ \"25,557 ดอลลาร์\" และเมื่อประชากรน้อยกว่า \"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_en": "What is the lowest Population, when Per Capita Income is \"$16,330\"?",
    "question_th": "ประชากรต่ำสุดคือเท่าไร เมื่อรายได้ต่อหัวคือ \"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_en": "What is the highest Population, when Per Capita Income is \"$17,168\", and when Number of Households is greater than 3,287?",
    "question_th": "ประชากรสูงสุดคือเท่าใด เมื่อรายได้ต่อหัวคือ \"17,168 ดอลลาร์\" และเมื่อจำนวนครัวเรือนมากกว่า 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_en": "What is Place, when Score is \"70-68=138\", and when Player is \"Andrew Magee\"?",
    "question_th": "สถานที่คืออะไร เมื่อคะแนนคือ \"70-68=138\" และเมื่อผู้เล่นคือ \"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_en": "What is To par, when Place is \"T5\", and when Score is \"70-68=138\"?",
    "question_th": "To par คืออะไร เมื่ออันดับคือ \"T5\" และเมื่อคะแนนคือ \"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_en": "What is Score, when Place is \"T5\", when Country is \"United States\", and when Player is \"Davis Love III\"?",
    "question_th": "คะแนนคืออะไร เมื่ออันดับคือ \"T5\" เมื่อประเทศคือ \"สหรัฐอเมริกา\" และเมื่อผู้เล่นคือ \"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_en": "What is Player, when Country is \"United States\", when Place is \"T10\", and when Score is \"68-71=139\"?",
    "question_th": "ผู้เล่นคืออะไร เมื่อประเทศคือ \"สหรัฐอเมริกา\" เมื่ออันดับคือ \"T10\" และเมื่อคะแนนคือ \"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_en": "What is Score, when Player is \"Vijay Singh\"?",
    "question_th": "Score คืออะไร เมื่อผู้เล่นคือ \"Vijay Singh\"?",
    "context": "CREATE TABLE table_name_81 (score VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_7 WHERE to_par = \"–2\" AND country = \"wales\"",
    "question_en": "Which Player has a To par of –2, and a Country of wales?",
    "question_th": "ผู้เล่นคนใดมีพาร์ถึง –2 และประเทศเวลส์?",
    "context": "CREATE TABLE table_name_7 (player VARCHAR, to_par VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_69 WHERE to_par = \"–3\" AND player = \"santiago luna\"",
    "question_en": "Which Score has a To par of –3, and a Player of santiago luna?",
    "question_th": "สกอร์ไหนมีพาร์ถึง –3 และเป็นผู้เล่นของซานติอาโก ลูน่า?",
    "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_en": "Which Player has a Score of 67 in united states?",
    "question_th": "ผู้เล่นคนใดมีคะแนน 67 ในสหรัฐอเมริกา?",
    "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_en": "What are the Opponents at the Schenectady, U.S. Tournament?",
    "question_th": "ฝ่ายตรงข้ามในการแข่งขัน Schenectady, US 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_en": "What was the outcome of the August 20, 2007 match?",
    "question_th": "ผลการแข่งขันวันที่ 20 สิงหาคม 2550 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_29 (outcome VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_2 WHERE date = \"august 20, 2007\"",
    "question_en": "What was the score in the August 20, 2007 match?",
    "question_th": "คะแนนในการแข่งขันวันที่ 20 สิงหาคม พ.ศ. 2550 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_2 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_20 WHERE date = \"july 13, 2008\"",
    "question_en": "Which tournament was held on July 13, 2008?",
    "question_th": "การแข่งขันใดจัดขึ้นในวันที่ 13 กรกฎาคม พ.ศ. 2551?",
    "context": "CREATE TABLE table_name_20 (tournament VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_49 WHERE date = \"september 20, 2010\"",
    "question_en": "Who was the opponent in the September 20, 2010 match?",
    "question_th": "คู่ต่อสู้ในการแข่งขันวันที่ 20 กันยายน พ.ศ. 2553 คือใคร?",
    "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_en": "What date was the Izmir Cup in which İlhan played against Somdev Devvarman?",
    "question_th": "อิซมีร์ คัพ ซึ่งอิลฮานลงเล่นพบกับ ซอมเดฟ เดฟวาร์มาน คือวันที่ใด?",
    "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_en": "What years did Tom Lehman win?",
    "question_th": "Tom Lehman ชนะกี่ปี?",
    "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_en": "What was the total To Par for the winner in 1995?",
    "question_th": "ทูพาร์ทั้งหมดสำหรับผู้ชนะในปี 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_en": "How many years had a 100 m hurdles event at the world championships in Osaka, Japan?",
    "question_th": "การแข่งขันวิ่งข้ามรั้ว 100 ม. ในการแข่งขันชิงแชมป์โลกที่เมืองโอซาก้า ประเทศญี่ปุ่น มีกี่ปีแล้ว?",
    "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_en": "What was the position of the event held in Valencia, Spain?",
    "question_th": "งานจัดขึ้นที่เมืองบาเลนเซีย ประเทศสเปน จัดขึ้นในตำแหน่งใด",
    "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_en": "What was the earliest year that an event held in Berlin, Germany had a 100 m hurdles event?",
    "question_th": "ปีแรกสุดที่งานวิ่งข้ามรั้ว 100 ม. ในกรุงเบอร์ลิน ประเทศเยอรมนี คือปีใด",
    "context": "CREATE TABLE table_name_98 (year INTEGER, venue VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_3 WHERE venue = \"valencia, spain\"",
    "question_en": "What even was held in Valencia, Spain?",
    "question_th": "ได้มีการจัดงานอะไรขึ้นที่เมืองบาเลนเซีย ประเทศสเปน ?",
    "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_en": "What is the time of the tim trophy competition where juventus was the opponent?",
    "question_th": "การแข่งขัน Tim Trophy ที่ยูเวนตุสเป็นคู่แข่งคือกี่โมง?",
    "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_en": "What is the competition on 15 August 2008?",
    "question_th": "การแข่งขันวันที่ 15 สิงหาคม 2551 มีอะไรบ้าง?",
    "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_en": "What is the score of the friendly match competition on 24 July 2008?",
    "question_th": "ผลการแข่งขันนัดกระชับมิตรวันที่ 24 กรกฎาคม 2551 เป็นอย่างไร?",
    "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_en": "What is the ground of the tim trophy competition, which had a time of 23:00 cet?",
    "question_th": "เหตุผลของการแข่งขัน Tim Trophy ซึ่งมีเวลา 23.00 น. คืออะไร?",
    "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_en": "What competition is at 23:00 cet?",
    "question_th": "แข่งขันรายการไหน เวลา 23.00 น.?",
    "context": "CREATE TABLE table_name_91 (competition VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_89 WHERE date = \"march 20, 1994\"",
    "question_en": "What is the outcome on March 20, 1994?",
    "question_th": "ผลลัพธ์เมื่อวันที่ 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_en": "What tournament had a hard surface on February 25, 1996?",
    "question_th": "ทัวร์นาเมนต์ใดมีพื้นผิวแข็งในวันที่ 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_en": "What is the score in the final with a hard surface and is against Hiromi Nagano?",
    "question_th": "รอบชิงชนะเลิศที่มีพื้นผิวแข็งและเทียบกับฮิโรมินากาโนะเป็นอย่างไรบ้าง?",
    "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_en": "What is the total outcome for the clay surface on April 21, 1996?",
    "question_th": "ผลลัพธ์รวมของพื้นผิวดินเหนียวในวันที่ 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_en": "What aircraft is located at S of Avion?",
    "question_th": "เครื่องบินอะไรอยู่ที่ 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_en": "What is the Unit for the Aircraft F.e.2b, located in Logeast?",
    "question_th": "หน่วยของเครื่องบิน Fe2b ซึ่งตั้งอยู่ใน 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_en": "What is the name of the place that has a census ranking of 1,229 of 5,008?",
    "question_th": "สถานที่ที่มีการสำรวจสำมะโนประชากร 1,229 จาก 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_en": "How large, in square kilometers, is Sackville?",
    "question_th": "แซกวิลล์มีขนาดใหญ่แค่ไหนในตารางกิโลเมตร?",
    "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_en": "What is the name(s) of the place(s) with a population of less than 1,429?",
    "question_th": "สถานที่ที่มีประชากรน้อยกว่า 1,429 คนชื่ออะไร",
    "context": "CREATE TABLE table_name_38 (official_name VARCHAR, population INTEGER)"
  },
  {
    "answer": "SELECT score FROM table_name_93 WHERE points = 33",
    "question_en": "What score has 33 as the points?",
    "question_th": "คะแนนอะไรมี 33 คะแนน?",
    "context": "CREATE TABLE table_name_93 (score VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_53 WHERE arena = \"joe louis arena\"",
    "question_en": "What date has joe louis arena as the arena?",
    "question_th": "Joe Louis Arena เป็นสนามวันไหน?",
    "context": "CREATE TABLE table_name_53 (date VARCHAR, arena VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_4 WHERE date = \"2 june 1992\"",
    "question_en": "What competition was played on 2 June 1992?",
    "question_th": "การแข่งขันใดที่เล่นในวันที่ 2 มิถุนายน พ.ศ. 2535?",
    "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_en": "What date was a friendly match played that ended in a 3-0 score?",
    "question_th": "นัดกระชับมิตรที่จบลงด้วยสกอร์ 3-0 เป็นนัดวันไหน?",
    "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_en": "What was the score of the match played on 5 September 2001?",
    "question_th": "คะแนนของแมตช์ที่เล่นในวันที่ 5 กันยายน พ.ศ. 2544 เป็นเท่าใด?",
    "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_en": "In what stadium was the friendly match on 2 June 1992 played in?",
    "question_th": "นัดกระชับมิตรเมื่อวันที่ 2 มิถุนายน พ.ศ. 2535 ลงเล่นที่สนามใด?",
    "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_en": "What was the score of the 1998 FIFA World Cup qualification competition?",
    "question_th": "คะแนนของการแข่งขันฟุตบอลโลกรอบคัดเลือก 1998 เป็นเท่าใด",
    "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_en": "Name the Date has a Competition of welsh rugby union challenge trophy and a Result of 34-34? Question 1",
    "question_th": "ชื่อวันที่มีการแข่งขันถ้วยรางวัลท้าทายสหภาพรักบี้เวลส์และผลการแข่งขัน 34-34? คำถามที่ 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_en": "Name the Result of new zealand Nationality / Opponent?",
    "question_th": "ตั้งชื่อผลการถือสัญชาตินิวซีแลนด์ / ฝ่ายตรงข้าม?",
    "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_en": "Name Nationality / Opponent on 10 january 1998?",
    "question_th": "ชื่อ สัญชาติ / คู่ต่อสู้ เมื่อวันที่ 10 มกราคม 2541?",
    "context": "CREATE TABLE table_name_25 (nationality___opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT ground FROM table_name_25 WHERE date = \"18 january 1998\"",
    "question_en": "Name The Ground on 18 january 1998?",
    "question_th": "ตั้งชื่อ The Ground เมื่อวันที่ 18 มกราคม 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_en": "Name the Nationality / Opponent of the Competition of welsh rugby union challenge trophy and a Result of 38-29?",
    "question_th": "ตั้งชื่อสัญชาติ / ฝ่ายตรงข้ามการแข่งขันถ้วยรางวัลท้าทายสหภาพรักบี้เวลส์และผลการแข่งขัน 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_en": "Name the Nationality / Opponent of rosario?",
    "question_th": "ตั้งชื่อสัญชาติ / ฝ่ายตรงข้ามของโรซาริโอ?",
    "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_en": "What team 1 has a team 2 of universidad nacional?",
    "question_th": "ทีม 1 มีทีม 2 ของ Universidad National อะไรคะ?",
    "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_en": "What team 2 has a team 1 of harbour view?",
    "question_th": "ทีม 2 ไหนมีทีม 1 ฮาร์เบอร์วิวบ้างคะ?",
    "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_en": "What's the 2nd leg for team 2 san francisco?",
    "question_th": "เลกที่ 2 ของทีม 2 ซานฟรานซิสโกคือเท่าไร",
    "context": "CREATE TABLE table_name_62 (team_2 VARCHAR)"
  },
  {
    "answer": "SELECT 1 AS st_leg FROM table_name_50 WHERE team_1 = \"alajuelense\"",
    "question_en": "What's the 1st leg of team 1 alajuelense?",
    "question_th": "เลกแรกของทีม 1 อลาจูเลนเซ่ เป็นยังไง?",
    "context": "CREATE TABLE table_name_50 (team_1 VARCHAR)"
  },
  {
    "answer": "SELECT format FROM table_name_51 WHERE catalog = \"660-51-015\"",
    "question_en": "What was the format for catalog 660-51-015?",
    "question_th": "แคตตาล็อก 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_en": "Which region had the year May 1974?",
    "question_th": "ภูมิภาคใดมีปีเดือนพฤษภาคม พ.ศ. 2517",
    "context": "CREATE TABLE table_name_77 (region VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_name_17 WHERE year = \"march 10, 1998\"",
    "question_en": "Which region had a year March 10, 1998?",
    "question_th": "ภูมิภาคใดมีปี 10 มีนาคม 2541?",
    "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_en": "What is the first party for Lord John Hay earlier than 1857?",
    "question_th": "งานเลี้ยงแรกของลอร์ดจอห์น เฮย์ ก่อนปี 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_en": "Who is the second member more recently than 1790 when John Williams is the first member?",
    "question_th": "สมาชิกคนที่สองคือใครล่าสุดกว่าปี 1790 เมื่อจอห์น วิลเลียมส์เป็นสมาชิกคนแรก?",
    "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_en": "Who is the second member ewarlier than 1804 when Tory Henry Isherwood is the first member?",
    "question_th": "ใครคือสมาชิกคนที่สองที่ฉลาดกว่าปี 1804 เมื่อ Tory Henry Isherwood เป็นสมาชิกคนแรก?",
    "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_en": "Who is the second member when RT Hon. Edward Stanley is the first member?",
    "question_th": "ใครคือสมาชิกคนที่สองเมื่อ RT Hon. Edward Stanley เป็นสมาชิกคนแรก?",
    "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_en": "What is the second party where the first party is Tory and the year is 1820?",
    "question_th": "ฝ่ายที่ 2 คือฝ่ายที่ 1 คือ ส.ส. และปี พ.ศ. 2363?",
    "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_en": "Who is the player who won in 1993?",
    "question_th": "ใครคือผู้เล่นที่ชนะในปี 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_en": "What years did the player with a t71 finish win?",
    "question_th": "ผู้เล่นที่จบการแข่งขัน t71 ชนะมาได้กี่ปี?",
    "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_en": "What year did player payne stewart win?",
    "question_th": "ผู้เล่นเพย์นสจ๊วตชนะในปีใด",
    "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_en": "What year did the player with a t3 finish win?",
    "question_th": "ผู้เล่นที่จบ T3 ชนะในปีใด",
    "context": "CREATE TABLE table_name_84 (year_s__won VARCHAR, finish VARCHAR)"
  },
  {
    "answer": "SELECT MIN(total) FROM table_name_25 WHERE finish = \"t41\"",
    "question_en": "What is the lowest total of the player with a t41 finish?",
    "question_th": "จำนวนรวมต่ำสุดของผู้เล่นที่จบสกอร์ t41 คือเท่าไร?",
    "context": "CREATE TABLE table_name_25 (total INTEGER, finish VARCHAR)"
  },
  {
    "answer": "SELECT battle FROM table_name_24 WHERE bulgarian_commander = \"gavril radomir\"",
    "question_en": "In what Battle was Bulgarian Commander of Gavril Radomir?",
    "question_th": "ผู้บัญชาการชาวบัลแกเรียของ 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_en": "What is the Date of the Bulgarian Victory at the Battle of Arcadiopolis?",
    "question_th": "วันที่ชัยชนะของบัลแกเรียที่ 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_en": "What is the Bulgarian Commander in Autumn 1040 at the Battle of Thessalonica?",
    "question_th": "ผู้บัญชาการบัลแกเรียในฤดูใบไม้ร่วงปี 1040 ที่ยุทธการเทสซาโลนิกาคืออะไร?",
    "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_en": "What is the Byzantine Commander with a Bulgarian Victory at the Siege of Lovech?",
    "question_th": "ผู้บัญชาการไบเซนไทน์คืออะไรกับชัยชนะของบัลแกเรียที่ 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_en": "What is the Result of the Battle of Marcellae in 756?",
    "question_th": "ผลลัพธ์ของการรบที่ Marcellae ในปี 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_en": "What is the date of Gavril Radomir's Bulgarian Victory?",
    "question_th": "ชัยชนะของบัลแกเรียของ Gavril Radomir คือวันที่เท่าไหร่?",
    "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_en": "What was the wind at New York City when the rank was smaller than 6?",
    "question_th": "ลมที่นิวยอร์กซิตี้เมื่ออันดับน้อยกว่า 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_en": "What was the highest rink for Kingston?",
    "question_th": "ลานสเก็ตที่สูงที่สุดสำหรับคิงส์ตันคืออะไร?",
    "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_en": "What is the average first elected for the district South Carolina 2?",
    "question_th": "ค่าเฉลี่ยที่ได้รับเลือกครั้งแรกสำหรับเขต 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_en": "Who was the first elected for the republican party?",
    "question_th": "ใครคือคนแรกที่ได้รับเลือกให้เข้าร่วมพรรครีพับลิกัน?",
    "context": "CREATE TABLE table_name_82 (first_elected VARCHAR, party VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_name_91 WHERE district = \"south carolina 2\"",
    "question_en": "What party has the South Carolina 2 district?",
    "question_th": "พรรคใดมีเขตเซาท์แคโรไลนา 2?",
    "context": "CREATE TABLE table_name_91 (party VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_46 WHERE name = \"cassano\"",
    "question_en": "What is the type for Cassano?",
    "question_th": "Cassano เป็นประเภทไหนครับ?",
    "context": "CREATE TABLE table_name_46 (type VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT nat FROM table_name_53 WHERE name = \"diogo\"",
    "question_en": "What nationality is Diogo?",
    "question_th": "ดิโอโก้เป็นคนสัญชาติอะไร?",
    "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_en": "What is the name of the player with a winter transfer window moving from Roma?",
    "question_th": "นักเตะที่ย้ายจากโรมาช่วงหน้าหนาวชื่ออะไร?",
    "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_en": "What pressure is Ken?",
    "question_th": "เคนกดดันขนาดไหน?",
    "context": "CREATE TABLE table_name_80 (pressure VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_84 WHERE loser = \"barbara hawcroft\"",
    "question_en": "In which round was Barbara Hawcroft the loser?",
    "question_th": "Barbara Hawcroft เป็นผู้แพ้ในรอบใด",
    "context": "CREATE TABLE table_name_84 (round VARCHAR, loser VARCHAR)"
  },
  {
    "answer": "SELECT AVG(year) FROM table_name_13 WHERE loser = \"nerida gregory\"",
    "question_en": "In which year is Nerida Gregory listed as the loser?",
    "question_th": "Nerida Gregory ถูกระบุเป็นผู้แพ้ในปีใด",
    "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_en": "In which year did Misaki Doi lose the Australian Open Grand Slam?",
    "question_th": "มิซากิ โดอิ แพ้แกรนด์สแลมออสเตรเลียนโอเพ่นในปีใด",
    "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_en": "Which Polish Cup has a Puchat Ligi larger than 0?",
    "question_th": "โปลิช คัพ ใดมี Puchat Ligi มากกว่า 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_en": "Which Player has a Total of 3, and an Ekstraklasa smaller than 3, and a UEFA Cup of 2?",
    "question_th": "ผู้เล่นคนไหนที่มีคะแนนรวม 3 คะแนน และ Ekstraklasa น้อยกว่า 3 คะแนน และยูฟ่าคัพมี 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_en": "Which Puchat Ligi has a UEFA Cup smaller than 2, and a Player of takesure chinyama?",
    "question_th": "Puchat Ligi คนใดที่มีถ้วยยูฟ่าคัพเล็กกว่า 2 ถ้วยและมีผู้เล่นของ 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_en": "How much Ekstraklasa has a Total smaller than 3?",
    "question_th": "Ekstraklasa มีผลรวมน้อยกว่า 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_en": "How much Puchat Ligi has a Total smaller than 5, and an Ekstraklasa larger than 1?",
    "question_th": "Puchat Ligi มีคะแนนรวมน้อยกว่า 5 และ Ekstraklasa มากกว่า 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_en": "Which player has a to par greater than 11, with a total less than 155?",
    "question_th": "ผู้เล่นคนใดมีพาร์มากกว่า 11 โดยมีคะแนนรวมน้อยกว่า 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_en": "What country has a to par less than 13, with wayne grady as the player?",
    "question_th": "ประเทศใดที่มีพาร์น้อยกว่า 13 โดยมีเวย์น เกรดี้เป็นผู้เล่น?",
    "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_en": "Which Points 1 has Drawn of 5, and a Goal Difference of +58, and a Lost larger than 4?",
    "question_th": "แต้มไหนที่ 1 เสมอได้ 5 แต้ม และผลต่างประตูที่ +58 และแต้มที่แพ้มากกว่า 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_en": "Which Lost has Goals Against larger than 92?",
    "question_th": "แพ้คนไหนที่มีประตูมากกว่า 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_en": "Which Points 1 has a Team of atherton collieries, and a Position smaller than 8?",
    "question_th": "จุดที่ 1 ใดมีทีมของ Atherton Collieries และตำแหน่งที่น้อยกว่า 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_en": "How much Played has a Position of 7, and a Drawn smaller than 7?",
    "question_th": "จำนวนการเล่นที่เล่นมีตำแหน่ง 7 และเสมอน้อยกว่า 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_en": "How much Drawn has Points 1 of 51, and a Lost larger than 5?",
    "question_th": "สุ่มได้เท่าไหร่มีแต้ม 1 จาก 51 และแพ้มากกว่า 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_en": "When was the aircraft introduced that could seat 115 people?",
    "question_th": "เครื่องบินลำนี้สามารถรองรับคนได้ 115 คนเปิดตัวเมื่อใด",
    "context": "CREATE TABLE table_name_30 (introduced INTEGER, seating VARCHAR)"
  },
  {
    "answer": "SELECT retired FROM table_name_91 WHERE notes = \"replaced by 737-300s\"",
    "question_en": "What year was the aircraft retired when it was replaced by 737-300s?",
    "question_th": "เครื่องบินลำนี้เลิกใช้ในปีใดเมื่อถูกแทนที่ด้วย 737-300",
    "context": "CREATE TABLE table_name_91 (retired VARCHAR, notes VARCHAR)"
  },
  {
    "answer": "SELECT aircraft FROM table_name_83 WHERE retired = \"—\" AND introduced = 2004",
    "question_en": "What aircraft was introduced in 2004 and has a retired of —?",
    "question_th": "เครื่องบินลำใดที่เปิดตัวในปี 2004 และได้เลิกใช้ไปแล้ว —?",
    "context": "CREATE TABLE table_name_83 (aircraft VARCHAR, retired VARCHAR, introduced VARCHAR)"
  },
  {
    "answer": "SELECT aircraft FROM table_name_88 WHERE seating = \"148/9\"",
    "question_en": "Which aircraft has 148/9 seating?",
    "question_th": "เครื่องบินลำใดมีที่นั่ง 148/9",
    "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_en": "How many people can be seated on the aircraft that was introduced in 2008 and has notes of in service?",
    "question_th": "สามารถนั่งบนเครื่องบินที่เปิดตัวในปี 2551 และมีบันทึกการให้บริการได้กี่คน",
    "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_en": "What is the nationality of the player who was previously with the Detroit Pistons?",
    "question_th": "นักเตะที่เคยเล่นให้กับทีม 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_en": "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?",
    "question_th": "อาชีพอะไรกับแฟรนไชส์ของผู้เล่น f/c ที่มีประสบการณ์ NBA น้อยกว่า 9 ปีซึ่งเคยเล่นให้กับ 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_en": "What was the tie number when Bournemouth was the home team?",
    "question_th": "บอร์นมัธเป็นเจ้าบ้านเสมอกันที่หมายเลขอะไร?",
    "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_en": "Who was the away team when the home team was Norwich City?",
    "question_th": "ทีมเยือนคือใครเมื่อเจ้าบ้านเป็นนอริชซิตี้?",
    "context": "CREATE TABLE table_name_83 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_81 WHERE home_team = \"wimbledon\"",
    "question_en": "On what date was Wimbledon the home team?",
    "question_th": "วิมเบิลดันจัดเจ้าบ้านวันไหน?",
    "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_en": "On what date was the away team West Ham United?",
    "question_th": "นัดเยือน เวสต์แฮม ยูไนเต็ด นัดวันไหน?",
    "context": "CREATE TABLE table_name_70 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_24 WHERE away_team = \"bournemouth\"",
    "question_en": "On what date was the away team Bournemouth?",
    "question_th": "ทีมเยือนบอร์นมัธจัดวันไหน?",
    "context": "CREATE TABLE table_name_24 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_name_41 WHERE name = \"abhayapuri south\"",
    "question_en": "What district has abhayapuri south as the name?",
    "question_th": "อำเภอใดมีชื่ออภัยปุรีใต้?",
    "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_en": "Which Bronze has a Gold larger than 1, and a Silver smaller than 3, and a Rank smaller than 5?",
    "question_th": "ทองแดงใดที่มีทองคำมากกว่า 1 และเงินน้อยกว่า 3 และมีอันดับน้อยกว่า 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_en": "Which Rank has a Gold larger than 1, and a Bronze of 4, and a Silver smaller than 1?",
    "question_th": "อันดับใดที่มีทองคำมากกว่า 1 และทองแดง 4 และเงินน้อยกว่า 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_en": "Which Rank has a Gold of 3, and a Bronze of 4, and a Total larger than 8?",
    "question_th": "อันดับใดมีเหรียญทอง 3 เหรียญทองแดง 4 เหรียญและผลรวมมากกว่า 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_en": "How much Total has a Rank smaller than 10, and a Silver larger than 3, and a Gold larger than 3?",
    "question_th": "ยอดรวมเท่าไหร่ที่มีอันดับน้อยกว่า 10 และเงินมากกว่า 3 และทองมากกว่า 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_en": "Which Total has a Rank of 9, and a Silver smaller than 2?",
    "question_th": "คะแนนรวมใดมีอันดับ 9 และเงินน้อยกว่า 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_en": "What event had Xu Zhilin competing?",
    "question_th": "Xu Zhilin ลงแข่งขันรายการใดบ้าง?",
    "context": "CREATE TABLE table_name_21 (event VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT sport FROM table_name_26 WHERE name = \"ma yuxi\"",
    "question_en": "What sport has Ma Yuxi in it?",
    "question_th": "Ma Yuxi มีกีฬาอะไรบ้าง?",
    "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_en": "How many years is Antonio Pompa-Baldi Italy first?",
    "question_th": "อันโตนิโอ ปอมปา-บัลดี อิตาลี อยู่อันดับ 1 กี่ปี?",
    "context": "CREATE TABLE table_name_36 (year VARCHAR, first VARCHAR)"
  },
  {
    "answer": "SELECT fourth FROM table_name_98 WHERE second = \"anders martinson usa\"",
    "question_en": "Who is fourth when Anders Martinson USA is second?",
    "question_th": "ใครเป็นอันดับสี่เมื่อ Anders Martinson USA เป็นอันดับสอง?",
    "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_en": "Can you tell me the sum of Wins that has the Club of abuls smiltene, and the Goals smaller than 18?",
    "question_th": "คุณช่วยบอกฉันถึงผลรวมของชัยชนะที่มี Club of abuls smiltene และ Goals ที่น้อยกว่า 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_en": "Can you tell me the average Wins that has the Goal Difference larger than -24, and the Draws larger than 7?",
    "question_th": "คุณช่วยบอกฉันได้ไหมถึงชัยชนะโดยเฉลี่ยที่มีผลต่างประตูมากกว่า -24 และเสมอมากกว่า 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_en": "Can you tell me the highest Draws that has the Goal Difference smaller than 64, and the Played larger than 30?",
    "question_th": "คุณช่วยบอกฉันได้ไหมว่าผลเสมอสูงสุดที่มีผลต่างประตูน้อยกว่า 64 และผลต่างประตูที่เล่นมากกว่า 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_en": "Can you tell me the highest Points that has the Played smaller than 30?",
    "question_th": "คุณช่วยบอกฉันได้ไหมว่าคะแนนสูงสุดที่เล่นน้อยกว่า 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_en": "What rank was the country with no bronze but at least 1 silver medals?",
    "question_th": "ประเทศที่ไม่มีเหรียญทองแดงแต่ได้เหรียญเงินอย่างน้อย 1 เหรียญอยู่ในอันดับไหน?",
    "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_en": "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?",
    "question_th": "ประเทศที่ได้ 1 เหรียญทองแดงน้อยที่สุดมีจำนวนเหรียญทองเท่าใด และมีทั้งหมด 3 เหรียญซึ่งต่ำกว่าอันดับ 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_en": "What is the smallest number of gold medals a country with 7 medals has?",
    "question_th": "ประเทศที่มี 7 เหรียญได้เหรียญทองน้อยที่สุดคือเท่าไร?",
    "context": "CREATE TABLE table_name_23 (gold INTEGER, total VARCHAR)"
  },
  {
    "answer": "SELECT host_city FROM table_name_35 WHERE games = \"vii\"",
    "question_en": "Can you tell me the Host City that has the Games of vii?",
    "question_th": "คุณช่วยบอกเมืองเจ้าภาพที่มี 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_en": "What was the nominated work after 2006, that was awarded the Drama Desk award and the Outstanding featured actor in a musical?",
    "question_th": "ผลงานที่ได้รับการเสนอชื่อเข้าชิงหลังปี 2549 ที่ได้รับรางวัล Drama Desk และนักแสดงนำชายดีเด่นในละครเพลงคืออะไร",
    "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_en": "What year was Evita nominated for outstanding featured actor in a musical?",
    "question_th": "เอวิต้าได้รับการเสนอชื่อเข้าชิงนักแสดงละครเพลงดีเด่นในปีใด",
    "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_en": "What was the nominated work, nominated for the drama league award before 2007?",
    "question_th": "ผลงานที่ได้รับการเสนอชื่อเข้าชิงรางวัล Drama League ก่อนปี 2550 มีอะไรบ้าง?",
    "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_en": "Who had the pole position on 7 August?",
    "question_th": "ใครได้ตำแหน่งโพลโพซิชั่นวันที่ 7 ส.ค.?",
    "context": "CREATE TABLE table_name_2 (pole_position VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT winning_team FROM table_name_6 WHERE circuit = \"zandvoort\"",
    "question_en": "Who was the winning team at Zandvoort?",
    "question_th": "ทีมใดเป็นผู้ชนะที่ 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_en": "Which Losses have Wins smaller than 6, and a South West DFL of sandford?",
    "question_th": "การแพ้ใดที่มีชัยชนะน้อยกว่า 6 และ Sandford ทางตะวันตกเฉียงใต้ของ 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_en": "How much Against has Draws of 2, and Losses smaller than 4?",
    "question_th": "เสมอกับ 2 และแพ้น้อยกว่า 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_en": "How many Losses have South West DFL of coleraine, and an Against smaller than 891?",
    "question_th": "มีการสูญเสียกี่ครั้งที่มีโคเลอเรนทางตะวันตกเฉียงใต้ของ DFL และต่อต้านที่น้อยกว่า 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_en": "What is the lowest played number when goals for is 47, and wins is smaller than 14?",
    "question_th": "หมายเลขที่เล่นต่ำสุดเมื่อประตูคือ 47 และชัยชนะน้อยกว่า 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_en": "What Club has 13 wins, goals against less than 48, and a position of 4?",
    "question_th": "สโมสรใดชนะ 13 ประตู เสียประตูน้อยกว่า 48 ประตู และอันดับ 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_en": "What is the lowest position number when goals against was 59, and a goals for is smaller than 24?",
    "question_th": "หมายเลขตำแหน่งต่ำสุดเมื่อประตูต่อคือ 59 และประตูน้อยกว่า 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_en": "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?",
    "question_th": "ประตูสูงสุดเทียบกับอะไรเมื่อมีคะแนนมากกว่า 31 ผลต่างประตูน้อยกว่า 9 ชนะ 13 และเสมอมากกว่า 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_en": "What is the lowest played number when points are larger than 32, and a wins are larger than 18?",
    "question_th": "หมายเลขที่เล่นต่ำสุดเมื่อแต้มมากกว่า 32 และการชนะมากกว่า 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_en": "Can you tell me the highest Against that has the Status of six nations, and the Date of 02/03/2002?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าค่าสูงสุดต่อต้านที่มีสถานะของหกชาติและวันที่ 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_en": "Can you tell me the average Against thaylt has the Date of 23/03/2002?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าค่าเฉลี่ยของ Thaylt มีวันที่ 23/03/2002?",
    "context": "CREATE TABLE table_name_44 (against INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT population FROM table_name_15 WHERE area = \"11\"",
    "question_en": "What is the population of area of 11?",
    "question_th": "พื้นที่ 11 มีประชากรกี่คน?",
    "context": "CREATE TABLE table_name_15 (population VARCHAR, area VARCHAR)"
  },
  {
    "answer": "SELECT traditional FROM table_name_14 WHERE population = \"44,803\"",
    "question_en": "What shows for traditional when the population was 44,803?",
    "question_th": "อะไรแสดงให้เห็นแบบดั้งเดิมเมื่อมีประชากร 44,803 คน?",
    "context": "CREATE TABLE table_name_14 (traditional VARCHAR, population VARCHAR)"
  },
  {
    "answer": "SELECT population FROM table_name_8 WHERE area = \"4,575\"",
    "question_en": "What is the population when the area is 4,575?",
    "question_th": "ประชากรเมื่อพื้นที่เป็น 4,575 คือเท่าไร?",
    "context": "CREATE TABLE table_name_8 (population VARCHAR, area VARCHAR)"
  },
  {
    "answer": "SELECT simplified FROM table_name_13 WHERE density = \"52\"",
    "question_en": "What shows for simplified when the density is 52?",
    "question_th": "อะไรแสดงให้เห็นอย่างง่ายเมื่อความหนาแน่นเป็น 52",
    "context": "CREATE TABLE table_name_13 (simplified VARCHAR, density VARCHAR)"
  },
  {
    "answer": "SELECT density FROM table_name_33 WHERE simplified = \"南山区\"",
    "question_en": "What is the density when simplified shows 南山区?",
    "question_th": "ความหนาแน่นเมื่อแสดงแบบง่าย 南yama区 คืออะไร?",
    "context": "CREATE TABLE table_name_33 (density VARCHAR, simplified VARCHAR)"
  },
  {
    "answer": "SELECT pinyin FROM table_name_22 WHERE simplified = \"南山区\"",
    "question_en": "What is the pinyin when the simplified shows 南山区?",
    "question_th": "พินอินเมื่อตัวย่อแสดง 南yama区 ต้องใช้พินอินอะไร?",
    "context": "CREATE TABLE table_name_22 (pinyin VARCHAR, simplified VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_26 WHERE player = \"greg norman\"",
    "question_en": "What country does Greg Norman represent?",
    "question_th": "เกร็ก นอร์แมน เป็นตัวแทนประเทศใด",
    "context": "CREATE TABLE table_name_26 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT year_s__won FROM table_name_11 WHERE total = 286",
    "question_en": "What years won have a total of 286?",
    "question_th": "ชนะปีไหนมีทั้งหมด 286 อัน?",
    "context": "CREATE TABLE table_name_11 (year_s__won VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_22 WHERE total = 295",
    "question_en": "Which player had a total of 295?",
    "question_th": "ผู้เล่นคนไหนมีทั้งหมด 295 คน?",
    "context": "CREATE TABLE table_name_22 (player VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_10 WHERE total = 291",
    "question_en": "What is the To par when there was a total of 291?",
    "question_th": "To par คืออะไรเมื่อมีทั้งหมด 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_en": "What is the year of daylight service when the builder was Alco?",
    "question_th": "ปีที่ให้บริการช่วงกลางวันเมื่อผู้สร้างคืออัลโคคือเมื่อใด?",
    "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ë kosova\"",
    "question_en": "What is 2006-07 Season, when Team is \"KF Fushë Kosova\"?",
    "question_th": "ฤดูกาล 2006-07 คืออะไร เมื่อทีมคือ \"KF Fushë 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_en": "What is Year(s) Won, when Total is \"145\", and when Country is \"United States\"?",
    "question_th": "ปีที่ชนะคืออะไร เมื่อผลรวมคือ \"145\" และเมื่อประเทศคือ \"สหรัฐอเมริกา\"",
    "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_en": "What is the lowest To par, when Total is greater than 148, and when Year(s) Won is \"1959 , 1968 , 1974\"?",
    "question_th": "ค่าพาร์ต่ำสุดคือเท่าไร เมื่อผลรวมมากกว่า 148 และเมื่อปีที่ชนะคือ \"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_en": "What is Country, when To par is \"1\", and when Player is \"Seve Ballesteros\"?",
    "question_th": "ประเทศคืออะไร เมื่อพาร์คือ \"1\" และเมื่อผู้เล่นคือ \"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_en": "What is the sum of Total, when Year(s) Won is \"1966 , 1970 , 1978\", and when To par is less than 4?",
    "question_th": "ผลรวมของผลรวมเมื่อปีที่ชนะคือ \"1966 , 1970 , 1978\" และเมื่อพาร์น้อยกว่า 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_en": "What is Country, when Total is less than 148, and when Player is \"Gary Player\"?",
    "question_th": "ประเทศคืออะไร เมื่อผลรวมน้อยกว่า 148 และเมื่อผู้เล่นคือ \"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_en": "What is To par, when Total is less than 148, and when Country is \"South Africa\"?",
    "question_th": "ค่าพาร์คืออะไร เมื่อผลรวมน้อยกว่า 148 และเมื่อประเทศคือ \"แอฟริกาใต้\"",
    "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_en": "What is the average age at appointment of those attached to security?",
    "question_th": "อายุเฉลี่ยเมื่อได้รับการแต่งตั้งของผู้ที่แนบมากับความปลอดภัยคือเท่าไร?",
    "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_en": "What was the distance of the race on saturday, august 23?",
    "question_th": "วันเสาร์ที่ 23 ส.ค. แข่งระยะทางเท่าไร?",
    "context": "CREATE TABLE table_name_59 (distance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_70 WHERE distance = \"175.6km\"",
    "question_en": "Who was the winner of the race that had a distance of 175.6km?",
    "question_th": "ใครเป็นผู้ชนะการแข่งขันระยะทาง 175.6 กม.?",
    "context": "CREATE TABLE table_name_70 (winner VARCHAR, distance VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_18 WHERE date = \"wednesday, august 27\"",
    "question_en": "Who won the race on wednesday, august 27?",
    "question_th": "ใครชนะการแข่งขันวันพุธที่ 27 สิงหาคม?",
    "context": "CREATE TABLE table_name_18 (winner VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT distance FROM table_name_71 WHERE route = \"maldegem > brussels\"",
    "question_en": "What is the distance of the maldegem > brussels route?",
    "question_th": "ระยะทางของเส้นทางมัลเดเจม > บรัสเซลส์คือเท่าไร?",
    "context": "CREATE TABLE table_name_71 (distance VARCHAR, route VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_63 WHERE route = \"mechelen > mechelen\"",
    "question_en": "Who was the winner of the mechelen > mechelen route?",
    "question_th": "ใครคือผู้ชนะเส้นทางเมเคอเลน > เมเคอเลิน",
    "context": "CREATE TABLE table_name_63 (winner VARCHAR, route VARCHAR)"
  },
  {
    "answer": "SELECT imap_shared FROM table_name_93 WHERE web_ui = \"web ui\"",
    "question_en": "What IMAP sharing options exist for software with a web UI?",
    "question_th": "มีตัวเลือกการแชร์ IMAP ใดบ้างสำหรับซอฟต์แวร์ที่มี 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_en": "What's the total for the wc belgrade event with 10 rank points?",
    "question_th": "ผลรวมของงาน wc เบลเกรดที่มี 10 คะแนนอันดับเป็นเท่าใด",
    "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_en": "That's the total for rank points of olympic gold medalist?",
    "question_th": "นั่นคือคะแนนรวมของผู้ชนะเลิศเหรียญทองโอลิมปิกใช่ไหม",
    "context": "CREATE TABLE table_name_72 (total VARCHAR, rank_points VARCHAR)"
  },
  {
    "answer": "SELECT shooter FROM table_name_51 WHERE score_points = \"defending champion\"",
    "question_en": "Who's the shooter with score points of defending champion?",
    "question_th": "ใครคือมือปืนที่มีคะแนนป้องกันแชมป์?",
    "context": "CREATE TABLE table_name_51 (shooter VARCHAR, score_points VARCHAR)"
  },
  {
    "answer": "SELECT shooter FROM table_name_57 WHERE total = \"25\"",
    "question_en": "Who's the shooter with a total of 25?",
    "question_th": "ใครคือมือปืนที่มีทั้งหมด 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_en": "Who's the shooter with 13 score points and 10 rank points?",
    "question_th": "ใครคือมือปืนที่มี 13 คะแนน และ 10 คะแนนอันดับ?",
    "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_en": "What is the highest points when the top goal scorer was Khaled Msakni (10), and the final standing is less than 12?",
    "question_th": "อะไรคือแต้มสูงสุดเมื่อผู้ทำประตูสูงสุดคือคาเลด เอ็มซาคนี (10) และอันดับสุดท้ายน้อยกว่า 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–82\"",
    "question_en": "What is the final standing in 1981–82?",
    "question_th": "อันดับสุดท้ายในปี 1981–82 คืออะไร?",
    "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_en": "Which event had 4th place and took place in the year 2007?",
    "question_th": "งานใดได้อันดับที่ 4 และเกิดขึ้นในปี 2550?",
    "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_en": "What runner-up has 4 & 3 as the score, with michael bonallack as the winner?",
    "question_th": "รองชนะเลิศคนใดมีคะแนน 4 และ 3 โดยมีไมเคิล โบนัลแล็คเป็นผู้ชนะ",
    "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_en": "What venue has 3 & 2 as the score, and 1965 as the year?",
    "question_th": "สถานที่ใดมีคะแนน 3 & 2 เป็นคะแนน และปี 1965 เป็นปี",
    "context": "CREATE TABLE table_name_83 (venue VARCHAR, score VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT runner_up FROM table_name_95 WHERE year = \"2008\"",
    "question_en": "What runner-up has 2008 as the year?",
    "question_th": "รองชนะเลิศอันดับใดคือปี 2551?",
    "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_en": "What winner has royal st george's golf club as the venue, and 1969 as the year?",
    "question_th": "ผู้ชนะคนใดมีสนามกอล์ฟ Royal St George's เป็นสถานที่จัดงาน และปี 1969 เป็นปี?",
    "context": "CREATE TABLE table_name_70 (winner VARCHAR, venue VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT runner_up FROM table_name_6 WHERE year = \"1925\"",
    "question_en": "What runner-up has 1925 as the year?",
    "question_th": "รองชนะเลิศอันดับใดคือปี 1925?",
    "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_en": "What year has John Davies as the runner-up, with warren humphreys as the winner?",
    "question_th": "จอห์น เดวีส์เป็นรองชนะเลิศในปีใด โดยมีวอร์เรน ฮัมฟรีย์เป็นผู้ชนะในปีใด",
    "context": "CREATE TABLE table_name_3 (year VARCHAR, runner_up VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_71 WHERE goals = 27",
    "question_en": "What country is the player who scored 27 goals from?",
    "question_th": "นักเตะที่ยิงได้ 27 ประตูมาจากประเทศใด?",
    "context": "CREATE TABLE table_name_71 (nationality VARCHAR, goals VARCHAR)"
  },
  {
    "answer": "SELECT years FROM table_name_62 WHERE goals = 27",
    "question_en": "For the player that scored 27 goals, what years did he score them?",
    "question_th": "สำหรับนักเตะที่ยิงได้ 27 ประตู เขาทำประตูได้กี่ปี?",
    "context": "CREATE TABLE table_name_62 (years VARCHAR, goals VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_33 WHERE total < 282",
    "question_en": "In what place(s) did the player(s) with a total less than 282 finish?",
    "question_th": "ผู้เล่นที่มีคะแนนรวมน้อยกว่า 282 จบที่จุดใด",
    "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_en": "In what place did Nick Faldo, who had more than 284 points and a to par score of +5, finish?",
    "question_th": "Nick Faldo ซึ่งมีคะแนนมากกว่า 284 คะแนนและคะแนนพาร์ +5 จบอันดับที่ใด",
    "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_en": "When did Prime Minister Agathe Uwilingiyimana's mandate end?",
    "question_th": "คำสั่งของนายกรัฐมนตรี อากาเท อุวิลิงจิมานา สิ้นสุดลงเมื่อใด?",
    "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_en": "What is the power output for class 5?",
    "question_th": "กำลังขับของคลาส 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_en": "Which class has a power output larger than 700 and a class of 48?",
    "question_th": "คลาสใดมีกำลังขับมากกว่า 700 และคลาส 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_en": "What is the Week 8 result of the team that lost to syarcuse (4-2) in Week 7?",
    "question_th": "ผลลัพธ์สัปดาห์ที่ 8 ของทีมที่แพ้ซียาคิวส์ (4-2) ในสัปดาห์ที่ 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_en": "What is the Week 1 result of Colorado State?",
    "question_th": "ผลลัพธ์สัปดาห์ที่ 1 ของรัฐโคโลราโดคืออะไร?",
    "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_en": "Who is the incumbent for the Colorado 4 district?",
    "question_th": "ใครคือผู้ดำรงตำแหน่งในเขตโคโลราโด 4",
    "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_en": "What district is the incumbent Republican and the incumbent retired to run for governor democratic gain?",
    "question_th": "เขตใดที่ดำรงตำแหน่งของพรรครีพับลิกันและผู้ดำรงตำแหน่งที่เกษียณอายุราชการเพื่อลงสมัครชิงตำแหน่งผู้ว่าการรัฐได้รับผลประโยชน์ตามระบอบประชาธิปไตย",
    "context": "CREATE TABLE table_name_41 (district VARCHAR, party VARCHAR, results VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_name_66 WHERE district = \"colorado 6\"",
    "question_en": "In Colorado 6 district what is the party?",
    "question_th": "ในเขตโคโลราโด 6 ปาร์ตี้อะไร?",
    "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–1, 3–6, 6–2\"",
    "question_en": "Which tournament had a clay surface and a score of 6–1, 3–6, 6–2?",
    "question_th": "ทัวร์นาเมนต์ใดมีพื้นผิวดินเหนียวและมีคะแนน 6–1, 3–6, 6–2",
    "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–6, 4–6\"",
    "question_en": "How many days had a score of 4–6, 4–6?",
    "question_th": "กี่วันมีคะแนน 4–6, 4–6?",
    "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_en": "What was the To Par of Tiger Woods who won in 1988?",
    "question_th": "To Par ของ Tiger Woods ที่ชนะในปี 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_en": "What is the team sites entry for Microsoft Sharepoint?",
    "question_th": "รายการไซต์ทีมสำหรับ 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_en": "If the intranet entry is Yes, what is the extranet entry for Microsoft Exchange server?",
    "question_th": "หากรายการอินทราเน็ตเป็นใช่ รายการเอ็กซ์ทราเน็ตสำหรับเซิร์ฟเวอร์ Microsoft Exchange คืออะไร",
    "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_en": "What is the team sites entry that has a public entry of No and a developer entry of Yes?",
    "question_th": "รายการไซต์ทีมที่มีรายการสาธารณะเป็น No และรายการนักพัฒนาเป็น 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_en": "What is the name for the entry that has a public of Yes, a personal sites of No, and a team sites of No?",
    "question_th": "ชื่อของรายการที่มีสาธารณะเป็นใช่ ไซต์ส่วนตัวของไม่ใช่ และไซต์ทีมของไม่ใช่คืออะไร",
    "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_en": "What is the name of the entry that has a developer entry of Yes and a personal sites entry of No?",
    "question_th": "ชื่อของรายการที่มีรายการนักพัฒนาเป็นใช่และรายการไซต์ส่วนบุคคลเป็นไม่ใช่คืออะไร",
    "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_en": "What Line has Ohakune Junction as its NIMT?",
    "question_th": "สายใดมีแยก Ohakune เป็น 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_en": "What line has Newmarket Junction terminus?",
    "question_th": "ปลายทาง Newmarket Junction มีสายใดบ้าง?",
    "context": "CREATE TABLE table_name_4 (line_name VARCHAR, terminus VARCHAR)"
  },
  {
    "answer": "SELECT terminus FROM table_name_37 WHERE length = \"3.5km\"",
    "question_en": "What terminus is 3.5km in lenght?",
    "question_th": "ปลายทางใดยาว 3.5 กม.",
    "context": "CREATE TABLE table_name_37 (terminus VARCHAR, length VARCHAR)"
  },
  {
    "answer": "SELECT line_name FROM table_name_7 WHERE nimt_junction = \"huntly\"",
    "question_en": "What line has Junction of Huntly NIMT",
    "question_th": "เส้นไหนมีทางแยกฮันท์ลี่ มว",
    "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_en": "What is the average final with an all around greater than 19.35 and a total over 40?",
    "question_th": "ค่าเฉลี่ยสุดท้ายที่มีคะแนนรวมมากกว่า 19.35 และคะแนนรวมมากกว่า 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_en": "What is the sum of the final for finland, who placed greater than 2 and had an all around larger than 18.9?",
    "question_th": "ผลรวมของรอบชิงชนะเลิศสำหรับฟินแลนด์ที่ได้คะแนนมากกว่า 2 และมีคะแนนรวมมากกว่า 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___£__ = \"140,000\" AND score = 68 - 68 - 75 - 68 = 279",
    "question_en": "What is the place of the player with £140,000 and a 68-68-75-68=279 score?",
    "question_th": "นักเตะที่มีเงิน 140,000 ปอนด์ และคะแนน 68-68-75-68=279 อยู่อันดับไหน?",
    "context": "CREATE TABLE table_name_66 (place VARCHAR, money___£__ VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_61 WHERE place = \"t1\" AND player = \"stuart appleby\"",
    "question_en": "What is the country of player stuart appleby, who has a t1 place?",
    "question_th": "ผู้เล่น stuart appleby อยู่ที่ประเทศอะไร ใครได้อันดับ 1?",
    "context": "CREATE TABLE table_name_61 (country VARCHAR, place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_45 WHERE money___£__ = \"77,500\" AND player = \"sergio garcía\"",
    "question_en": "What is the place of player sergio garcía, who has £77,500?",
    "question_th": "นักเตะเซร์คิโอ การ์เซีย ที่มีเงิน 77,500 ปอนด์ อยู่ตำแหน่งไหน?",
    "context": "CREATE TABLE table_name_45 (place VARCHAR, money___£__ VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_92 WHERE score = 73 - 70 - 70 - 65 = 278",
    "question_en": "What is the to par of the player with a 73-70-70-65=278 score?",
    "question_th": "แต้มพาร์ของผู้เล่นที่มีคะแนน 73-70-70-65=278 คือเท่าไร?",
    "context": "CREATE TABLE table_name_92 (to_par VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_97 WHERE money___£__ = \"140,000\"",
    "question_en": "Who is the player with £140,000?",
    "question_th": "นักเตะที่มีเงิน 140,000 ปอนด์คือใคร?",
    "context": "CREATE TABLE table_name_97 (player VARCHAR, money___£__ VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_90 WHERE time = \"56.49\"",
    "question_en": "What is Date, when Time is \"56.49\"?",
    "question_th": "วันที่คืออะไร เมื่อเวลาเป็น \"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_en": "What is Event, when Date is \"19 December 2009\"?",
    "question_th": "เหตุการณ์คืออะไร เมื่อเป็นวันที่ \"19 ธันวาคม 2552\"?",
    "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_en": "What is Time, when Meet is \"Duel in the Pool\", and when Date is \"19 December 2009\"?",
    "question_th": "เวลาคือเมื่อใด Meet คือ \"ดวลในสระน้ำ\" และวันที่คือ \"19 ธันวาคม 2552\"",
    "context": "CREATE TABLE table_name_62 (time VARCHAR, meet VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_72 WHERE event = \"100m butterfly\"",
    "question_en": "What is the Location, when Event is \"100m Butterfly\"?",
    "question_th": "สถานที่คือที่ไหน เมื่องาน \"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_en": "What is Date, when Meet is \"World Championships\", when Nationality is \"United States\", and when Time is \"1:46.68\"?",
    "question_th": "วันที่คืออะไร เมื่อ Meet คือ \"การแข่งขันชิงแชมป์โลก\" เมื่อสัญชาติคือ \"สหรัฐอเมริกา\" และเวลาคือ \"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_en": "What is Event, when Meet is \"World Championships\", and when Time is \"20.51\"?",
    "question_th": "กิจกรรมคืออะไร เมื่อ Meet คือ \"การแข่งขันชิงแชมป์โลก\" และเมื่อใดคือ \"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_en": "What is the highest number of households with a median household income of $31,176, and a population of 25,607?",
    "question_th": "จำนวนครัวเรือนสูงสุดที่มีรายได้เฉลี่ยครัวเรือนอยู่ที่ 31,176 ดอลลาร์ และมีประชากร 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_en": "What is the median household income for Cape Girardeau?",
    "question_th": "รายได้เฉลี่ยของครัวเรือนของ 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_en": "Who is the Colourist that has a Story Title of Broken Glass (part 3) and a Letterer of Albers?",
    "question_th": "ใครคือนักระบายสีที่มีชื่อเรื่องว่า Broken Glass (ตอนที่ 3) และ 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_en": "What is the Cover Date of the Story Title Spacehikers (Part 2)?",
    "question_th": "วันที่ปกของชื่อเรื่อง Spacehikers (ตอนที่ 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_en": "What is the Story Title that has Albers as the Letterer?",
    "question_th": "ชื่อเรื่องที่มี Albers เป็น 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_en": "Who are the drivers with 133 laps in OC class?",
    "question_th": "ใครคือนักแข่งที่ทำ 133 รอบในคลาส OC?",
    "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_en": "What are the most laps for the Qual position of 7 in the OC class?",
    "question_th": "รอบคัดเลือกที่ 7 ในคลาส OC มีรอบมากที่สุดคือเท่าใด",
    "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_en": "What are Perkins Engineering's fewest laps?",
    "question_th": "รอบน้อยที่สุดของ Perkins Engineering คือเท่าใด",
    "context": "CREATE TABLE table_name_17 (laps INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_name_48 WHERE qual_pos = 30",
    "question_en": "Which class has a Qual position of 30?",
    "question_th": "คลาสไหนมีตำแหน่ง Qual 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_en": "What Release date has a Version of 1.0, a Category of utilities, a Developer of microsoft, and a Title of msn money?",
    "question_th": "วันที่วางจำหน่ายใดที่มีเวอร์ชัน 1.0, หมวดหมู่ยูทิลิตี้, ผู้พัฒนา Microsoft และชื่อ 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_en": "What Release date has a Category of utilities, a Developer of microsoft, and a Title of chord finder?",
    "question_th": "วันที่วางจำหน่ายใดที่มีหมวดหมู่ของยูทิลิตี้, ผู้พัฒนาของ microsoft และชื่อของ 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_en": "What Developer has a Release date of 2010-12-16, and a Title of facebook?",
    "question_th": "นักพัฒนาคนใดมีวันวางจำหน่าย 2553-12-59 และชื่อ 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_en": "What Title has a Version of 1.0.0.3?",
    "question_th": "ชื่ออะไรที่มีเวอร์ชัน 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_en": "What Version has a Title of alarm clock?",
    "question_th": "นาฬิกาปลุกมีชื่อรุ่นอะไร",
    "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_en": "What Version has a Developer of dino games, and a Title of metronome?",
    "question_th": "ผู้พัฒนาเกมไดโนเวอร์ชันใดและมีชื่อเครื่องเมตรอนอม",
    "context": "CREATE TABLE table_name_34 (version VARCHAR, developer VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_39 WHERE opposing_teams = \"wales\"",
    "question_en": "Where did Wales play?",
    "question_th": "เวลส์เล่นที่ไหน?",
    "context": "CREATE TABLE table_name_39 (venue VARCHAR, opposing_teams VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_47 WHERE against = 19",
    "question_en": "What venue has 19 against?",
    "question_th": "สถานที่ใดมี 19 ต่อ?",
    "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_en": "Which Award Ceremony has a Nominee of sarah travis, and a Category of the best orchestrations?",
    "question_th": "พิธีมอบรางวัลใดที่มีผู้ได้รับการเสนอชื่อเข้าชิง Sarah Travis และประเภทของการจัดเรียบเรียงที่ดีที่สุด",
    "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 = \"†\" AND year_separated = \"1997\"",
    "question_en": "What is the most current year signed for separation of † and a separation year of 1997?",
    "question_th": "ปีปัจจุบันที่ลงนามเพื่อแยก † และปีที่แยกคือ 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_en": "What is the Chinese name for the English name Andy Lau?",
    "question_th": "ชื่อภาษาอังกฤษของชื่อภาษาอังกฤษ 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_en": "What year was Wilfred Lau separated because Capital stopped recording music?",
    "question_th": "Wilfred Lau แยกทางกันในปีใดเนื่องจาก Capital หยุดบันทึกเพลง",
    "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 = \"蘇永康\"",
    "question_en": "What is the English name for the Chinese name of 蘇永康 later than 1974?",
    "question_th": "ชื่อภาษาอังกฤษของ 蘇永康 ภายหลังปี 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 = \"蘇永康\"",
    "question_en": "What was the signed year for the Chinese name 蘇永康 who separated in 1987?",
    "question_th": "ชื่อภาษาจีน 蘇永康 ซึ่งแยกทางกันในปี 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_en": "WHAT IS THE SITE ON OCTOBER 7?",
    "question_th": "เว็บไซต์ในวันที่ 7 ตุลาคมคืออะไร?",
    "context": "CREATE TABLE table_name_44 (site VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_51 WHERE rank__number = \"6\"",
    "question_en": "WHAT DATE HAD 6 RANK?",
    "question_th": "วันที่เท่าไหร่มีอันดับ 6?",
    "context": "CREATE TABLE table_name_51 (date VARCHAR, rank__number VARCHAR)"
  },
  {
    "answer": "SELECT opponent_number FROM table_name_37 WHERE date = \"october 7\"",
    "question_en": "WHAT OPPONENT WAS ON OCTOBER 7?",
    "question_th": "ฝ่ายตรงข้ามคนไหนในวันที่ 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_en": "WHAT RANK HAD A RESULT OF W13-3?",
    "question_th": "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_en": "What is the original NFL team of the College of Oregon DT Player?",
    "question_th": "ทีม NFL ดั้งเดิมของ 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_en": "What Player is from Iowa State?",
    "question_th": "ผู้เล่นคนไหนมาจากรัฐไอโอวา?",
    "context": "CREATE TABLE table_name_6 (player VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_35 WHERE attendance = \"77,702\"",
    "question_en": "What was the result of the game that had 77,702 people in attendance?",
    "question_th": "อะไรคือผลลัพธ์ของเกมที่มีผู้เข้าร่วม 77,702 คน?",
    "context": "CREATE TABLE table_name_35 (result VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_26 WHERE opponent = \"indianapolis colts\"",
    "question_en": "On what day did the team play the Indianapolis Colts?",
    "question_th": "ทีมจะเล่นกับ 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_en": "What is the average Played, when Goals Against is less than 63, when Team is \"Nelson\", and when Lost is greater than 16?",
    "question_th": "ค่าเฉลี่ยการเล่นคือเท่าไร เมื่อจำนวนประตูที่เสียน้อยกว่า 63 เมื่อทีมคือ \"เนลสัน\" และเมื่อแพ้มีค่ามากกว่า 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_en": "What is the total number of Goals For, when Points 1 is \"41\"?",
    "question_th": "จำนวนประตูทั้งหมดที่ทำได้ เมื่อคะแนน 1 คือ \"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_en": "What is the lowest Position, when Lost is greater than 15, when Team is Cheadle Town, and when Drawn is greater than 8?",
    "question_th": "ตำแหน่งต่ำสุดคืออะไร เมื่อแพ้มากกว่า 15 เมื่อทีมคือ Cheadle Town และเมื่อจั่วได้มากกว่า 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_en": "What is the lowest Position, when Points 1 is \"39\", and when Goals Against is greater than 49?",
    "question_th": "ตำแหน่งต่ำสุดคือเมื่อแต้ม 1 คือ \"39\" และเมื่อแต้มต่อมากกว่า 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_en": "WHAT SEASON HAD COACH JONAS KAZLAUSKAS AT champions cup group stage?",
    "question_th": "ฤดูกาลใดที่มีโค้ช โยนาส คาซลอสกัส ในการแข่งขันแชมเปี้ยนส์ คัพ รอบแบ่งกลุ่ม?",
    "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_en": "WHAT IS THE LKF CUP WITH euroleague group stage AND bbl elite division finalist?",
    "question_th": "LKF CUP กับรอบแบ่งกลุ่มยูโรลีกและผู้เข้ารอบสุดท้ายใน BBL Elite คืออะไร?",
    "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_en": "WHAT IS THE ERUPE WITH HEAD COACH vainauskas , sakalauskas AND WITH NEBL FINALIST?",
    "question_th": "ERUPE กับ HEAD COACH vainauskas, sakalauskas และ 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_en": "What is the entry for the Australian sound that has an example of illyria, cf. cirrhosis?",
    "question_th": "คำใดเป็นเสียงภาษาออสเตรเลียที่มีตัวอย่าง illyria, cf. โรคตับแข็ง?",
    "context": "CREATE TABLE table_name_79 (australian VARCHAR, examples VARCHAR)"
  },
  {
    "answer": "SELECT examples FROM table_name_73 WHERE american = \"ɪ, ə\" AND semi_closed_initial_unstressed_vowels = \"y /ɨ/\"",
    "question_en": "What is the example for the American of ɪ, ə, and a Semi-closed initial unstressed vowels of y /ɨ/?",
    "question_th": "อะไรคือตัวอย่างสำหรับเสียงสระอเมริกันของ ə, ə และสระไม่เน้นเสียงหนักเริ่มต้นแบบกึ่งปิดของ y /ɨ/?",
    "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_en": "What field is an opponent of cannons and resulted with w 16-11?",
    "question_th": "คู่ต่อสู้ของปืนใหญ่สนามใดและผลด้วย 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_en": "what is the result from texas stadium?",
    "question_th": "ผลการแข่งขันจากเท็กซัสสเตเดียมเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_89 (result VARCHAR, field VARCHAR)"
  },
  {
    "answer": "SELECT field FROM table_name_46 WHERE result = \"w 18-12\"",
    "question_en": "What field resulted with w 18-12?",
    "question_th": "สนามใดส่งผลให้มี 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_en": "What field had results of w 18-12?",
    "question_th": "สนามใดมีผลลัพธ์ของ 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_en": "WHAT ARE THE HIGHEST POINTS WITH GOALS LARGER THAN 48, WINS LESS THAN 19, GOALS AGAINST SMALLER THAN 44, DRAWS LARGER THAN 5?",
    "question_th": "อะไรคือคะแนนสูงสุดโดยมีเป้าหมายมากกว่า 48 ชนะน้อยกว่า 19 ประตูต่อเป้าหมายน้อยกว่า 44 และเสมอมากกว่า 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_en": "WHAT ARE THE TOTAL NUMBER OF POINTS WITH WINS SMALLER THAN 14, AT SD INDAUCHU, POSITION BIGGER THAN 12?",
    "question_th": "จำนวนคะแนนทั้งหมดที่ชนะน้อยกว่า 14 ที่ SD INDAUCHU ตำแหน่งที่ใหญ่กว่า 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_en": "WHAT ARE THE GOALS WITH DRAWS SMALLER THAN 6, AND LOSSES SMALLER THAN 7?",
    "question_th": "เป้าหมายที่มีแต้มน้อยกว่า 6 และขาดทุนน้อยกว่า 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_en": "How many 2010s have a 2007 greater than 4.6, and 8.2 as a 2006?",
    "question_th": "มีกี่ปี 2010 ที่มีปี 2550 มากกว่า 4.6 และ 8.2 เป็นปี 2549",
    "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_en": "What 2010 has a 2006 less than 6.9, a 2008 greater than 1.6, and 2 for 2007?",
    "question_th": "ปี 2010 ใดที่มีปี 2549 น้อยกว่า 6.9 ปี 2551 มากกว่า 1.6 และ 2 สำหรับปี 2550",
    "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_en": "How many 2008s have 6.9 as a 2006, with a 2007 less than 7.1?",
    "question_th": "มีกี่ปี 2008 ที่มี 6.9 ในปี 2549 โดยปี 2550 น้อยกว่า 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_en": "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?",
    "question_th": "อะไรคือปี 2010 ที่สูงที่สุดที่มีปี 2009 น้อยกว่า 6.5, 0.4 เท่ากับปี 2008 และปี 2007 น้อยกว่า 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_en": "How many 2007s have 0.2 as a 2006, with a 2010 less than 0.1?",
    "question_th": "มีกี่ปี 2550 ที่มี 0.2 ในปี 2549 โดยปี 2010 น้อยกว่า 0.1",
    "context": "CREATE TABLE table_name_71 (Id VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_41 WHERE outcome = \"runner-up\" AND score = \"4–6, 3–6\"",
    "question_en": "What Tournament has an Outcome of runner-up, and a Score of 4–6, 3–6?",
    "question_th": "การแข่งขันใดมีผลลัพธ์เป็นรองชนะเลิศ และมีคะแนน 4–6, 3–6",
    "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_en": "What Surface has a Date of 1 september 2008?",
    "question_th": "Surface ใดมีวันที่ 1 กันยายน 2551",
    "context": "CREATE TABLE table_name_18 (surface VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_58 WHERE opponent = \"nina bratchikova\"",
    "question_en": "What Score has an Opponent of nina bratchikova?",
    "question_th": "ฝ่ายตรงข้ามของ nina bratchikova มีคะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_58 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_61 WHERE tournament = \"pune, india\"",
    "question_en": "What Surface has a Tournament of pune, india?",
    "question_th": "Surface ใดมี Tournament of Pune ประเทศอินเดีย?",
    "context": "CREATE TABLE table_name_61 (surface VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_64 WHERE date = \"20 december 2010\"",
    "question_en": "What Tournament has a Date of 20 december 2010?",
    "question_th": "การแข่งขันใดมีวันที่ 20 ธันวาคม 2010?",
    "context": "CREATE TABLE table_name_64 (tournament VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_6 WHERE score = \"5–7, 2–6\"",
    "question_en": "What Tournament has a Score of 5–7, 2–6?",
    "question_th": "ทัวร์นาเมนต์ใดมีคะแนน 5–7, 2–6",
    "context": "CREATE TABLE table_name_6 (tournament VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_7 WHERE score = 71 - 70 = 141",
    "question_en": "Which Place has a Score of 71-70=141?",
    "question_th": "สถานที่ใดมีคะแนน 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_en": "Which Country has a Score of 69-66=135?",
    "question_th": "ประเทศใดมีคะแนน 69-66=135?",
    "context": "CREATE TABLE table_name_76 (country VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_33 WHERE to_par = \"–9\"",
    "question_en": "Which Country has a To par of –9?",
    "question_th": "ประเทศใดมีพาร์ถึง –9?",
    "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_en": "Which To par has a Country of united states, and a Score of 71-70=141?",
    "question_th": "To par ใดที่มีประเทศเป็นสหรัฐอเมริกา และคะแนน 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 = \"–5\" AND country = \"england\"",
    "question_en": "Which Player has a To par of –5, and a Country of england?",
    "question_th": "ผู้เล่นคนใดมีพาร์ถึง –5 และมีประเทศอังกฤษ?",
    "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_en": "Which Category has an Award of monte carlo tv festival awards, and a Year larger than 2010?",
    "question_th": "หมวดหมู่ใดได้รับรางวัล Award of monte carlo tv festival awards และหนึ่งปีมากกว่าปี 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_en": "How many years have a Result of nominated?",
    "question_th": "มีผลการเสนอชื่อกี่ปี?",
    "context": "CREATE TABLE table_name_42 (year VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_82 WHERE category = \"outstanding actor (drama)\"",
    "question_en": "Which Result has a Category of outstanding actor (drama)?",
    "question_th": "ผลใดมีหมวดหมู่นักแสดงนำชาย (ละคร) ดีเด่น?",
    "context": "CREATE TABLE table_name_82 (result VARCHAR, category VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_45 WHERE award = \"virgin media tv awards\"",
    "question_en": "Which Result has an Award of virgin media tv awards?",
    "question_th": "ผลรางวัลไหนได้รางวัล 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_en": "What is the prize money for the second round qualifying that is listed?",
    "question_th": "เงินรางวัลสำหรับรอบคัดเลือกรอบสองที่ระบุไว้คือเท่าไร?",
    "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_en": "How many years have runner-up as the outcome, and indian wells as the championship?",
    "question_th": "ผลการแข่งขันได้รองชนะเลิศมากี่ปีและมีบ่ออินเดียเป็นแชมป์?",
    "context": "CREATE TABLE table_name_83 (year INTEGER, outcome VARCHAR, championship VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_80 WHERE year = 2000",
    "question_en": "What score has 2000 as the year?",
    "question_th": "คะแนนปี 2000 เป็นเท่าไหร่?",
    "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_en": "What surface has indian wells as the championship, with winner as the outcome?",
    "question_th": "พื้นผิวใดที่มีบ่อน้ำอินเดียเป็นแชมป์ โดยมีผู้ชนะเป็นผลลัพธ์",
    "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_en": "Which average money has a To par larger than 12?",
    "question_th": "เงินเฉลี่ยใดที่มี To par มากกว่า 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_en": "Which Country has a To par smaller than 6, and a Money ($) larger than 700, and a Score of 69-73-70-71=283?",
    "question_th": "ประเทศใดมีพาร์ To น้อยกว่า 6 และเงิน ($) มากกว่า 700 และคะแนน 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_en": "Which average money has a Place of t10, and a Player of denny shute, and a To par larger than 12?",
    "question_th": "เงินเฉลี่ยใดที่มีอันดับ t10 และผู้เล่นของ denny Shute และ To Par มากกว่า 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_en": "Which Country has a Money ($) of 0, and a Place of t10?",
    "question_th": "ประเทศใดมีเงิน ($) เท่ากับ 0 และอันดับที่ 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_en": "What is the highest FLap by a Honda NSR500 bike after Race 16?",
    "question_th": "FLap สูงสุดโดยมอเตอร์ไซค์ Honda NSR500 หลังการแข่งขัน 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_en": "How much tonnage Tonnage (GRT) has a Nationality of united kingdom, and a Date of 27 june 1941?",
    "question_th": "น้ำหนักบรรทุกเท่าไร (GRT) มีสัญชาติสหราชอาณาจักร และวันที่ 27 มิถุนายน พ.ศ. 2484",
    "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_en": "Which Nationality has a Date of 8 may 1942?",
    "question_th": "สัญชาติใดมีวันที่ 8 พฤษภาคม พ.ศ. 2485",
    "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_en": "What is Canada's highest round before 1973?",
    "question_th": "รอบสูงสุดของแคนาดาก่อนปี 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_en": "What year was The Saber nominated for best action?",
    "question_th": "The Saber ได้รับการเสนอชื่อเข้าชิงสาขาภาพยนตร์ยอดเยี่ยมในปีใด",
    "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_en": "What was awarded before 2013 to the Saber in the category of Best Action?",
    "question_th": "ก่อนปี 2013 กระบี่ได้รับรางวัลอะไรในประเภท 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_en": "What date had the patent number US plant patent 12098?",
    "question_th": "สิทธิบัตรพืชของสหรัฐฯ เลขที่ 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_en": "What's the mutated having a patent number of US plant patent 9645?",
    "question_th": "พันธุ์กลายมีเลขสิทธิบัตรสิทธิบัตรพืช US 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_en": "What's the patent number when it was mutated from Yakata 7001 and a standard habit?",
    "question_th": "หมายเลขสิทธิบัตรเมื่อดัดแปลงจาก Yakata 7001 และนิสัยมาตรฐานคืออะไร?",
    "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_en": "What's the patent number of Fukuda?",
    "question_th": "สิทธิบัตรของ 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_en": "Who's the inventor when it was mutated from Redsport Type 2, has a stripe pattern and a spur habit?",
    "question_th": "ใครคือผู้ประดิษฐ์เมื่อกลายพันธุ์จาก Redsport Type 2 มีลายเป็นแถบและมีลักษณะเป็นเดือย",
    "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_en": "What's the mutated of Auvil?",
    "question_th": "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_en": "Which model has a top speed of 231km/h (143mph)?",
    "question_th": "รุ่นใดมีความเร็วสูงสุด 231 กม./ชม. (143 ไมล์/ชม.)",
    "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_en": "How fast can the SLK200K, with a top speed of 236km/h (147mph), accelerate to 100km/h (62mph)?",
    "question_th": "SLK200K ที่ความเร็วสูงสุด 236 กม./ชม. (147 ไมล์/ชม.) สามารถเร่งความเร็วได้ถึง 100 กม./ชม. (62 ไมล์/ชม.) ได้เร็วแค่ไหน",
    "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_en": "What is the 0–100km/h (62mph) acceleration of the model with a top speed of 208km/h (129mph)?",
    "question_th": "อัตราเร่ง 0–100 กม./ชม. (62 ไมล์/ชม.) ของรุ่นด้วยความเร็วสูงสุด 208 กม./ชม. (129 ไมล์/ชม.) เป็นเท่าใด",
    "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_en": "What is the top speed of the SLK200K that produces 122kw (163hp)?",
    "question_th": "ความเร็วสูงสุดของ SLK200K ที่ผลิต 122kw (163hp) คืออะไร?",
    "context": "CREATE TABLE table_name_4 (top_speed VARCHAR, model VARCHAR, power VARCHAR)"
  },
  {
    "answer": "SELECT latin FROM table_name_80 WHERE greek = \"μ\"",
    "question_en": "What is the Latin term for the Greek symbol μ?",
    "question_th": "คำภาษาละตินสำหรับสัญลักษณ์กรีก μ คืออะไร?",
    "context": "CREATE TABLE table_name_80 (latin VARCHAR, greek VARCHAR)"
  },
  {
    "answer": "SELECT role FROM table_name_78 WHERE closing_broadway_cast = \"adam grupper\"",
    "question_en": "Which role had a closing broadway cast of Adam Grupper?",
    "question_th": "บทบาทใดที่มีนักแสดงบรอดเวย์ปิดท้ายของ 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_en": "What was the original US Tour cast when the original broadway was Kevin Chamberlin?",
    "question_th": "นักแสดงใน US Tour ดั้งเดิมคืออะไรเมื่อนักแสดงบรอดเวย์ดั้งเดิมคือ 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_en": "What was the original nonequity tour when the original broadway was Kevin Chamberlin?",
    "question_th": "อะไรคือทัวร์ที่ไม่มีความยุติธรรมดั้งเดิมเมื่อเควินแชมเบอร์ลินแสดงละครบรอดเวย์ดั้งเดิม?",
    "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_en": "What was the role when the original broadway was Adam Riegler?",
    "question_th": "บทบาทในบรอดเวย์ดั้งเดิมคือ 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_en": "What is the number for the international with 669 domestic earlier than 2005?",
    "question_th": "หมายเลขระหว่างประเทศที่มี 669 ในประเทศก่อนปี 2548 เป็นเท่าใด",
    "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_en": "What was the score on 14 march 2004?",
    "question_th": "คะแนนเมื่อวันที่ 14 มีนาคม พ.ศ. 2547 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_39 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_75 WHERE winners = \"hibernian\" AND finalists = \"kilmarnock\"",
    "question_en": "In what season was Kilmarnock a finalist and Hibernian the winner?",
    "question_th": "คิลมาร์น็อคเข้ารอบสุดท้ายและฮิเบอร์เนียนเป็นผู้ชนะในฤดูกาลใด",
    "context": "CREATE TABLE table_name_75 (season VARCHAR, winners VARCHAR, finalists VARCHAR)"
  },
  {
    "answer": "SELECT finalists FROM table_name_53 WHERE season = \"1972–73\"",
    "question_en": "Who were the finalists in the 1972–73 season?",
    "question_th": "ใครคือผู้เข้ารอบสุดท้ายในฤดูกาล 1972–73?",
    "context": "CREATE TABLE table_name_53 (finalists VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_21 WHERE score = \"2–1\" AND winners = \"rangers\"",
    "question_en": "In which season did the Rangers win with a score of 2–1?",
    "question_th": "เรนเจอร์สชนะด้วยสกอร์ 2–1 ในฤดูกาลใด?",
    "context": "CREATE TABLE table_name_21 (season VARCHAR, score VARCHAR, winners VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_15 WHERE winners = \"motherwell\"",
    "question_en": "When did Motherwell win?",
    "question_th": "มาเธอร์เวลล์ชนะเมื่อไหร่?",
    "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_en": "What is the smallest rate of burglary when forcible rape is 39.1 and motor vehicle theft is less than 568.8?",
    "question_th": "อัตราการลักขโมยที่เล็กที่สุดเมื่อการบังคับข่มขืนคือ 39.1 และการโจรกรรมรถยนต์น้อยกว่า 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_en": "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?",
    "question_th": "อัตราการฆาตกรรมและการฆ่าโดยไม่เจตนาโดยประมาท เมื่อลักทรัพย์-ลักขโมย อยู่ที่ 3,693.9 และลักทรัพย์ มากกว่า 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_en": "What is the name for district total:?",
    "question_th": "อำเภอรวมชื่ออะไร:?",
    "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_en": "What is the electorates in 2009 for Modi Nagar?",
    "question_th": "ผู้มีสิทธิเลือกตั้งในปี 2009 สำหรับ 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_en": "Who was the opponent on 12 May, when the match day was more than 33?",
    "question_th": "คู่ต่อสู้วันที่ 12 พ.ค. เมื่อวันแข่งขันเกิน 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_en": "What is the largest issue date for an album that reached position of 3?",
    "question_th": "วันที่ออกมากที่สุดสำหรับอัลบั้มที่ขึ้นถึงอันดับที่ 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_en": "What is the record on March 16?",
    "question_th": "บันทึกประจำวันที่ 16 มีนาคม คืออะไร?",
    "context": "CREATE TABLE table_name_66 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_51 WHERE date = \"january 23\"",
    "question_en": "What was the score on January 23?",
    "question_th": "คะแนนเมื่อวันที่ 23 มกราคม เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_51 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(to_par) FROM table_name_17 WHERE total = 157",
    "question_en": "How many strokes off par was the player who scored 157?",
    "question_th": "นักเตะที่ทำสกอร์ได้ 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_en": "Which player who won in 1977 and scored great than 155 was the closest to par?",
    "question_th": "ผู้เล่นคนไหนที่ชนะในปี 1977 และทำคะแนนได้ดีกว่า 155 คนที่มีพาร์ใกล้เคียงที่สุด?",
    "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_en": "What country was the player who was 11 off par from?",
    "question_th": "นักเตะที่ห่างพาร์ 11 มาจากประเทศอะไร?",
    "context": "CREATE TABLE table_name_88 (country VARCHAR, to_par VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_90 WHERE tie_no = \"16\"",
    "question_en": "What was the Home team in Tie no 16?",
    "question_th": "ทีมเหย้าในเสมอหมายเลข 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_en": "What is the Date of Tie no 9?",
    "question_th": "วันที่ผูกหมายเลข 9 คืออะไร?",
    "context": "CREATE TABLE table_name_61 (date VARCHAR, tie_no VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_4 WHERE tie_no = \"2\"",
    "question_en": "What is the Score in Tie 2?",
    "question_th": "คะแนนใน 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_en": "What is the Tie no when Scarborough is the Home team?",
    "question_th": "Tie no คืออะไรเมื่อ Scarborough เป็นเจ้าบ้าน?",
    "context": "CREATE TABLE table_name_98 (tie_no VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT tie_no FROM table_name_75 WHERE score = \"2–2\" AND away_team = \"swansea city\"",
    "question_en": "What is the Tie no when Swansea City is the Away team with a Score of 2–2?",
    "question_th": "เสมอไม่คืออะไรเมื่อสวอนซีซิตี้เป็นทีมเยือนด้วยสกอร์ 2–2?",
    "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_en": "What is the name of constituency 5?",
    "question_th": "เขตเลือกตั้งที่ 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_en": "What label is released on September 20, 2005?",
    "question_th": "ป้ายกำกับใดที่ออกเมื่อวันที่ 20 กันยายน พ.ศ. 2548",
    "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_en": "What is the lowest total with an all around of 10 and a rope higher than 10?",
    "question_th": "ผลรวมต่ำสุดที่มีทั้งหมดประมาณ 10 และเชือกที่สูงกว่า 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_en": "What is Bianka Panova's highest total with lower than place 1?",
    "question_th": "ผลรวมสูงสุดของ Bianka Panova โดยต่ำกว่าอันดับ 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_en": "What is Milena Reljin's place with a smaller than 9.8 rope?",
    "question_th": "สถานที่ของ Milena Reljin ที่มีเชือกเล็กกว่า 9.8 คืออะไร?",
    "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_en": "What is the highest game with a 24-23 record?",
    "question_th": "เกมสูงสุดที่มีสถิติ 24-23 คืออะไร?",
    "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_en": "What is the highest game with a 1-0 record, and the Hornets scored more than 100?",
    "question_th": "เกมไหนมีสถิติสกอร์ 1-0 สูงสุด และ ฮอร์เน็ตส์ ยิงได้มากกว่า 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_en": "When was Daniel Moro born?",
    "question_th": "แดเนียล โมโรเกิดเมื่อไหร่?",
    "context": "CREATE TABLE table_name_63 (date_of_birth VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_64 WHERE money___$__ = 450",
    "question_en": "What was the score for the player than won $450?",
    "question_th": "คะแนนสำหรับผู้เล่นมากกว่าชนะ $450 คืออะไร?",
    "context": "CREATE TABLE table_name_64 (score VARCHAR, money___$__ VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_21 WHERE money___$__ = 350",
    "question_en": "What place did the player that took won $350 finish in?",
    "question_th": "ผู้เล่นที่คว้าเงินรางวัล 350 ดอลลาร์เข้าเส้นชัยในอันดับที่ใด",
    "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_en": "Which player had a score of 71-73-68-75=287?",
    "question_th": "นักเตะคนไหนมีคะแนน 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 (董世侯)\"",
    "question_en": "What is Year, when Name is \"Dong Shihou, 29 (董世侯)\"?",
    "question_th": "ชื่อ \"ตง ซื่อโหว 29 (董世侯)\" คืออะไร?",
    "context": "CREATE TABLE table_name_93 (year VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_23 WHERE location = \"dz\"",
    "question_en": "What is Name, when Location is \"DZ\"?",
    "question_th": "ชื่อคืออะไร เมื่อที่ตั้งคือ \"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_en": "What is Injured, when Date is \"09.15 Sep. 15\"?",
    "question_th": "ผู้ได้รับบาดเจ็บคืออะไร เมื่อวันที่ \"09.15 ก.ย. 58\"?",
    "context": "CREATE TABLE table_name_98 (injured VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_48 WHERE name = \"guay, albert , 32\"",
    "question_en": "What is Date, when Name is \"Guay, Albert , 32\"?",
    "question_th": "วันที่ชื่อ \"ก๊วย อัลเบิร์ต 32\" คืออะไร?",
    "context": "CREATE TABLE table_name_48 (date VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT MAX(grid) FROM table_name_7 WHERE rider = \"fonsi nieto\"",
    "question_en": "What is the highest grid for rider Fonsi Nieto?",
    "question_th": "เส้นกริดสูงสุดสำหรับนักบิด 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_en": "What was the total number of Laps for the rider whose time was +7.951?",
    "question_th": "จำนวนรอบรวมของนักแข่งที่มีเวลา +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_en": "What was the highest number of laps for rider Shuhei Aoyama in a grid higher than 24?",
    "question_th": "จำนวนรอบสูงสุดของนักบิด Shuhei Aoyama ในตารางที่สูงกว่า 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_en": "What was the grid for rider Russell Holland, riding a Honda CBR1000rr?",
    "question_th": "ตารางการแข่งขันของนักบิด Russell Holland ที่ขี่ 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_en": "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?",
    "question_th": "ใครคือนักบิดที่ขี่ Honda CBR1000rr ไป 14 รอบ ด้วยเวลา +1'04.877 บนกริดที่มากกว่า 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_en": "What is the earliest year with a Drama Desk award when the Mineola Twins was a nominated work?",
    "question_th": "ปีแรกสุดที่ได้รับรางวัล Drama Desk คืองาน Mineola Twins ได้รับการเสนอชื่อเข้าชิง?",
    "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_en": "Which nominated work is in the category of best performance by a leading actress in a play earlier than 2007?",
    "question_th": "ผลงานที่ได้รับการเสนอชื่อเข้าชิงข้อใดอยู่ในประเภทการแสดงที่ดีที่สุดโดยนักแสดงนำในละครก่อนปี 2550",
    "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_en": "What is the most recent year that the Mineola Twins was nominated for outstanding actress in a play and a Drama Desk award?",
    "question_th": "ปีล่าสุดที่ Mineola Twins ได้รับการเสนอชื่อเข้าชิงนักแสดงนำหญิงยอดเยี่ยมในละครและรางวัล Drama Desk คืออะไร?",
    "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_en": "What is the result for the Outer Critics Circle award earlier than 2004?",
    "question_th": "ผลลัพธ์ของรางวัล Outer Critics Circle ก่อนหน้าปี 2547 คืออะไร?",
    "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_en": "In what year was The House of Blue Leaves nominated for outstanding actress in a play?",
    "question_th": "The House of Blue Leaves ได้รับการเสนอชื่อเข้าชิงนักแสดงนำหญิงยอดเยี่ยมในละครในปีใด",
    "context": "CREATE TABLE table_name_62 (year INTEGER, nominated_work VARCHAR, category VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_75 WHERE total < 284",
    "question_en": "Which Country has a Total smaller than 284?",
    "question_th": "ประเทศใดมียอดรวมน้อยกว่า 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_en": "Which To par  has a Year(s) won of 1983?",
    "question_th": "พาร์ใดที่ชนะในปี 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_en": "How many Total has a Player of dave stockton?",
    "question_th": "เดฟ สต็อกตันมีผู้เล่นทั้งหมดกี่คน",
    "context": "CREATE TABLE table_name_53 (total VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_73 WHERE year = 1973 AND surface = \"clay\"",
    "question_en": "What was the result in 1973 when the surface was clay?",
    "question_th": "ผลที่ตามมาในปี 1973 เมื่อพื้นผิวเป็นดินเหนียวคืออะไร?",
    "context": "CREATE TABLE table_name_73 (outcome VARCHAR, year VARCHAR, surface VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_25 WHERE year = 1975",
    "question_en": "What was the outcome in 1975?",
    "question_th": "ผลลัพธ์ในปี 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_en": "Who was Margaret Court's opponent on clay in 1975?",
    "question_th": "ใครคือคู่ต่อสู้ของ Margaret Court บนดินในปี 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_en": "What is the number of against when Central Murray is Tooleybuc Manangatang and there are fewer than 13 wins?",
    "question_th": "เซ็นทรัล เมอร์เรย์ เป็น ทูเลย์บัค มานังกาตัง สู้กับจำนวนเท่าไหร่และชนะน้อยกว่า 13 นัด?",
    "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_en": "How many byes when the draws are fewer than 0?",
    "question_th": "บายกี่บาทเมื่องวดน้อยกว่า 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_en": "What is the byes for Woorineen when losses are more than 13?",
    "question_th": "อะไรคือลาก่อนสำหรับ Woorineen เมื่อแพ้มากกว่า 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_en": "How many wins when there are 4 losses and against are fewer than 1281?",
    "question_th": "ชนะกี่ครั้งเมื่อแพ้ 4 ครั้งและแพ้น้อยกว่า 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_en": "How many against when losses are 11 and wins are fewer than 5?",
    "question_th": "เมื่อแพ้คือ 11 และชนะน้อยกว่า 5 มีกี่ครั้ง?",
    "context": "CREATE TABLE table_name_24 (against INTEGER, losses VARCHAR, wins VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_67 WHERE to_par = \"–7\" AND country = \"spain\"",
    "question_en": "which Player has a To par of –7, and a Country of spain?",
    "question_th": "ผู้เล่นคนไหนมีพาร์ถึง –7 และประเทศสเปน?",
    "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_en": "What doctor published on June 2003?",
    "question_th": "แพทย์คนไหนตีพิมพ์เมื่อเดือนมิถุนายน พ.ศ. 2546?",
    "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_en": "What title was published on November 2001 and has a 1st Doctor?",
    "question_th": "ชื่ออะไรตีพิมพ์เมื่อเดือนพฤศจิกายน พ.ศ. 2544 และมีหมอคนที่ 1?",
    "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_en": "What is the title of the 8th doctor published in January 2003?",
    "question_th": "แพทย์คนที่ 8 ที่ตีพิมพ์ในเดือนมกราคม พ.ศ. 2546 มีชื่อว่าอะไร?",
    "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_en": "What is the companion for the author Dave Stone?",
    "question_th": "สหายของผู้แต่ง 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_en": "What Player won the PGA in 1989?",
    "question_th": "ผู้เล่นคนใดได้รับรางวัล PGA ในปี 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_en": "Which player is from Northern Ireland?",
    "question_th": "นักเตะคนไหนมาจากไอร์แลนด์เหนือ?",
    "context": "CREATE TABLE table_name_42 (player VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_43 WHERE score = 69 - 68 - 68 = 205",
    "question_en": "What player has a score of 69-68-68=205?",
    "question_th": "นักเตะคนไหนมีคะแนน 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_en": "Which Week has an Attendance larger than 63,369?",
    "question_th": "สัปดาห์ใดมีผู้เข้าร่วมมากกว่า 63,369 คน?",
    "context": "CREATE TABLE table_name_90 (week INTEGER, attendance INTEGER)"
  },
  {
    "answer": "SELECT result FROM table_name_43 WHERE date = \"september 26\"",
    "question_en": "What was the result on september 26?",
    "question_th": "ผลประกอบการวันที่ 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_en": "Which Week has a Game site of oakland-alameda county coliseum, and an Attendance larger than 52,169?",
    "question_th": "สัปดาห์ใดที่มีสถานที่เล่นเกมของสนามกีฬาโอ๊คแลนด์-อาลาเมดาเคาน์ตี และมีผู้เข้าร่วมมากกว่า 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_en": "What is Player, when Score is \"68-71=139\"?",
    "question_th": "Player คืออะไร เมื่อคะแนนเป็น \"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_en": "What is Country, when Player is \"Tom Watson\"?",
    "question_th": "ประเทศคืออะไร เมื่อผู้เล่นคือ \"ทอม วัตสัน\"?",
    "context": "CREATE TABLE table_name_99 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT SUM(against) FROM table_name_64 WHERE date = \"08/06/1985\"",
    "question_en": "How many against on the date of  08/06/1985?",
    "question_th": "กี่ต่อต้านในวันที่ 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_en": "What is the venue for the match on 30/03/1985?",
    "question_th": "สถานที่จัดการแข่งขันวันที่ 30/03/1985 คือที่ไหน?",
    "context": "CREATE TABLE table_name_80 (venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_19 WHERE against = 24",
    "question_en": "What is the status of the match with 24 against?",
    "question_th": "สถานะของการแข่งขันกับ 24 ต่อคืออะไร?",
    "context": "CREATE TABLE table_name_19 (status VARCHAR, against VARCHAR)"
  },
  {
    "answer": "SELECT opposing_teams FROM table_name_76 WHERE status = \"second test\"",
    "question_en": "Who was the opposing team when the status is second test?",
    "question_th": "ใครคือทีมตรงข้ามเมื่อสถานะเป็นการทดสอบครั้งที่สอง?",
    "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_en": "What is the status when Wales is the opposing team and there are more than 13 against?",
    "question_th": "สถานะเมื่อเวลส์เป็นทีมตรงข้ามมีมากกว่า 13 นัดเป็นอย่างไร?",
    "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_en": "What is the lowest number of households for the entry with a median income of $41,778 and a population greater than 38,319?",
    "question_th": "จำนวนครัวเรือนต่ำสุดสำหรับการเข้าประเทศโดยมีรายได้เฉลี่ย 41,778 ดอลลาร์และมีประชากรมากกว่า 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_en": "Which Church has 27 stops?",
    "question_th": "โบสถ์ใดมี 27 จุดจอด?",
    "context": "CREATE TABLE table_name_71 (church VARCHAR, stops VARCHAR)"
  },
  {
    "answer": "SELECT opponents FROM table_name_12 WHERE round = \"round 6\"",
    "question_en": "Who is the opponent(s) in round 6?",
    "question_th": "คู่ต่อสู้ในรอบที่ 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_en": "In what year was the winner a soccer player from Virginia?",
    "question_th": "ผู้ชนะคือนักฟุตบอลจากเวอร์จิเนียในปีใด",
    "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_en": "In what year did Morgan Brian win?",
    "question_th": "Morgan Brian ชนะในปีใด",
    "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_en": "Who is the winner who attended college at Connecticut and is from North Syracuse, NY?",
    "question_th": "ใครคือผู้ชนะที่เข้าเรียนวิทยาลัยที่คอนเนตทิคัตและมาจากนอร์ธซีราคิวส์ รัฐนิวยอร์ก",
    "context": "CREATE TABLE table_name_63 (winner VARCHAR, college VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_name_33 WHERE college = \"usc\"",
    "question_en": "What is the hometown of the player who went to college at USC?",
    "question_th": "บ้านเกิดของผู้เล่นที่ไปเรียนมหาวิทยาลัยที่ 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_en": "What is the lowest Draws, when Against is \"1547\", and when Wins is greater than 3?",
    "question_th": "เสมอต่ำสุดคืออะไร เมื่อต่อต้านคือ \"1547\" และเมื่อชนะมากกว่า 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_en": "What is the total number of Wins, when Losses is \"6\", and when Draws is greater than \"0\"?",
    "question_th": "จำนวนชนะทั้งหมดคือเท่าไร เมื่อการแพ้คือ \"6\" และเมื่อการเสมอมากกว่า \"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_en": "What is the lowest Draws, when Byes is less than 2?",
    "question_th": "การเสมอต่ำสุดคือเท่าไร เมื่อ Byes น้อยกว่า 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_en": "What is the total number of Draws, when Against is \"1134\", and when Byes is less than 2?",
    "question_th": "จำนวนเสมอทั้งหมดคือเท่าไร เมื่อต่อต้านคือ \"1134\" และเมื่อบายน้อยกว่า 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_en": "What is the sum of Wins, when Against is less than 1033, when Golden Rivers is \"Nullawil\", and when Byes is less than 2?",
    "question_th": "ผลรวมของการชนะเมื่อ Against น้อยกว่า 1,033 เมื่อ Golden Rivers คือ \"Nullawil\" และเมื่อ Byes น้อยกว่า 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_en": "Which Year has a Competition of european championships, and Notes of 66.81 m?",
    "question_th": "ปีใดที่มีการแข่งขันชิงแชมป์ยุโรปและหมายเหตุ 66.81 ม.?",
    "context": "CREATE TABLE table_name_26 (year INTEGER, competition VARCHAR, notes VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_3 WHERE venue = \"berlin, germany\"",
    "question_en": "Which Position has a Venue of berlin, germany?",
    "question_th": "ตำแหน่งใดมีสถานที่จัดงานในกรุงเบอร์ลิน ประเทศเยอรมนี",
    "context": "CREATE TABLE table_name_3 (position VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_87 WHERE venue = \"arles, france\"",
    "question_en": "Which competition was held in Arles, France?",
    "question_th": "การแข่งขันใดจัดขึ้นที่เมืองอาร์ลส์ ประเทศฝรั่งเศส",
    "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_en": "What is the M1A1 when the M60A3 was T (Short Tons)?",
    "question_th": "M1A1 เมื่อ M60A3 เป็น 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_en": "What is the M60A3 when the M1A1 is T (Short Tons)?",
    "question_th": "M60A3 คืออะไรเมื่อ M1A1 เป็น 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_en": "What is the M60A3 that has an M1A1 of Km (mi)?",
    "question_th": "M60A3 ที่มี M1A1 เป็น 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_en": "What is the M60A3 that has 40 rounds as Leclerc?",
    "question_th": "M60A3 ที่มี 40 รอบเหมือน Leclerc คืออะไร?",
    "context": "CREATE TABLE table_name_28 (m60a3_patton VARCHAR, leclerc VARCHAR)"
  },
  {
    "answer": "SELECT lince FROM table_name_8 WHERE leclerc = \"hp (kw)\"",
    "question_en": "What's the lince when Leclerc was Hp (kw)?",
    "question_th": "แววตาเมื่อ Leclerc เป็น 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_en": "What is the M1A1 when the Lince was T (Short Tons)?",
    "question_th": "M1A1 คืออะไรเมื่อ Lince เป็น 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_en": "Which Distance has a Time of 2:20.00?",
    "question_th": "ระยะทางใดมีเวลา 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_en": "Which Distance has an Event of breaststroke, and a Location of beijing, chn?",
    "question_th": "ระยะทางใดที่มีเหตุการณ์ว่ายท่ากบ และตำแหน่งของปักกิ่ง 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_en": "What Meet has a Time of 1:04.84?",
    "question_th": "Meet ใดมีเวลา 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_en": "What season had a viewer rank of #4?",
    "question_th": "ซีซั่นใดมีผู้ชมอันดับ 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_en": "Which season had less than 25.4 viewers and had a viewer rank of #6?",
    "question_th": "ซีซันใดมีผู้ชมน้อยกว่า 25.4 คนและมีผู้ชมอันดับ 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_en": "When did the season premiere that had a viewer rank of #6?",
    "question_th": "ซีซั่นแรกที่มีผู้ชมอันดับ 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_en": "What is the total number of gold medals of the ranked 2nd nation, which has less than 2 silvers?",
    "question_th": "เหรียญทองอันดับ 2 ของประเทศอันดับที่ 2 น้อยกว่า 2 เหรียญเงินมีจำนวนเท่าไร?",
    "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_en": "What is the total number of gold medals of the nation with 0 silver and more than 1 bronze?",
    "question_th": "เหรียญทองของประเทศทั้งหมด 0 เหรียญเงิน และมากกว่า 1 เหรียญทองแดง คือเท่าไร?",
    "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_en": "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?",
    "question_th": "จำนวนเหรียญทองแดงต่ำสุดของประเทศที่ได้ทั้งหมดมากกว่า 13 เหรียญ เหรียญทองมากกว่า 10 เหรียญ และน้อยกว่า 22 เหรียญเงิน คือข้อใด",
    "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_en": "What was the main date of the round with 20 fixtures?",
    "question_th": "วันหลักของรอบที่มี 20 นัดคือเมื่อใด?",
    "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_en": "What were the new entries for the Semi-Finals round with fewer than 8 fixtures?",
    "question_th": "รายการใหม่สำหรับรอบรองชนะเลิศที่มีการแข่งขันน้อยกว่า 8 นัดมีอะไรบ้าง",
    "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_en": "What was the club when home ground was Central Reserve?",
    "question_th": "สโมสรอะไรในสมัยที่สนามเหย้าคือเซ็นทรัลรีเสิร์ฟ?",
    "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_en": "What's the GFL Premiership when the home ground was Leopold Memorial Park?",
    "question_th": "GFL Premiership จะเป็นอย่างไรเมื่อสนามเหย้าคือ 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_en": "What's the location where the Years in GFL was 1988-?",
    "question_th": "ตำแหน่งปีใน GFL คือปี 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_en": "What's the home ground of the Lions?",
    "question_th": "บ้านเกิดของสิงโตคืออะไร?",
    "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_en": "What is the location of the Saints having 1979- as Years in GFL?",
    "question_th": "ที่ตั้งของวิสุทธิชนในปี 1979- เป็นปีใน 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_en": "What is the type of the player who ended in 2013, had a summer transfer window, and moved from kalmar ff?",
    "question_th": "นักเตะประเภทไหนที่จบปี 2013 มีตลาดซื้อขายช่วงซัมเมอร์ และย้ายจากคาลมาร์ เอฟเอฟ?",
    "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_en": "Where did the player with a transfer type, a summer transfer window, and ended before 2013 move from?",
    "question_th": "นักเตะที่มีประเภทการย้ายทีม ช่วงตลาดซื้อขายช่วงซัมเมอร์ และจบก่อนปี 2013 ย้ายจากไหน?",
    "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_en": "What is the transfer window for larsson?",
    "question_th": "หน้าต่างการถ่ายโอนของลาร์สสันคืออะไร?",
    "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_en": "What is the average end year of the player from swe and a summer transfer window?",
    "question_th": "ปีสิ้นสุดโดยเฉลี่ยของผู้เล่นจากสวีเดนและตลาดซื้อขายช่วงซัมเมอร์คือเท่าไร?",
    "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_en": "What was the outcome on 2 December 2012?",
    "question_th": "ผลลัพธ์เมื่อวันที่ 2 ธันวาคม 2555 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_26 (outcome VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score_in_final FROM table_name_97 WHERE tournament = \"$10,000 – tarakan , indonesia f2\"",
    "question_en": "What is the score of the final in $10,000 – tarakan , indonesia f2?",
    "question_th": "คะแนนของรอบชิงชนะเลิศในเงิน $10,000 – tarakan อินโดนีเซีย 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_en": "What was the place for the score 70-72-69=211?",
    "question_th": "คะแนน 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_en": "What was the player for t9 and a score of 73-69-74=216?",
    "question_th": "ผู้เล่นใน t9 คืออะไรและคะแนน 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_en": "What was Stacy Lewis' place?",
    "question_th": "สถานที่ของ Stacy Lewis คืออะไร?",
    "context": "CREATE TABLE table_name_50 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_87 WHERE tie_no = \"13\"",
    "question_en": "What was the score when the tie no was 13?",
    "question_th": "เมื่อเสมอกันที่ 13 สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_87 (score VARCHAR, tie_no VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_31 WHERE away_team = \"burnley\"",
    "question_en": "What was the score when Burnley was the away team?",
    "question_th": "เมื่อเบิร์นลี่ย์เป็นทีมเยือนสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_31 (score VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_32 WHERE finish = \"66\"",
    "question_en": "What is the To par when the finish is 66?",
    "question_th": "ค่าพาร์เมื่อจบสกอร์ 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_en": "When the year won is 1981, 1987, and the finish is t46, what is the lowest total?",
    "question_th": "เมื่อปีที่ชนะคือปี 1981, 1987 และจบที่ t46 ผลรวมต่ำสุดคือเท่าไร?",
    "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_en": "Which year was won with a finish of 68",
    "question_th": "ปีไหนชนะจบด้วยสกอร์ 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_en": "WHTA IS THE SNATCH WITH A TOTAL OF LARGER THAN 318 KG AND BODY WEIGHT OF 84.15?",
    "question_th": "ลูกฉี่ที่มีน้ำหนักรวมมากกว่า 318 กิโลกรัม และน้ำหนักตัว 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_en": "WHAT IS THE SNATCH WITH TOTAL KG SMALLER THAN 318, AND CLEAN JERK LARGER THAN 175?",
    "question_th": "อะไรคือ SNATCH ที่มีน้ำหนักรวม KG น้อยกว่า 318 และ CLEAN JERK ที่ใหญ่กว่า 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_en": "What date has 2 for killed, and jaffa as the location?",
    "question_th": "วันไหนที่มีผู้ถูกฆ่า 2 ราย และจาฟฟาเป็นสถานที่?",
    "context": "CREATE TABLE table_name_44 (date VARCHAR, killed VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT injured FROM table_name_9 WHERE location = \"skierlik\"",
    "question_en": "What is the injured that has skierlik as the location?",
    "question_th": "ผู้ได้รับบาดเจ็บที่มีนักเล่นสกีเป็นสถานที่คืออะไร?",
    "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_en": "What is the 2nd leg that Team 1 is Union Berlin?",
    "question_th": "นัดที่ 2 ที่ทีม 1 คือ ยูเนี่ยน เบอร์ลิน คืออะไร?",
    "context": "CREATE TABLE table_name_46 (team_1 VARCHAR)"
  },
  {
    "answer": "SELECT apps FROM table_name_81 WHERE ratio = 0.52 AND goals = 150",
    "question_en": "What is the Apps for the player with 150 Goals and a Ratio of 0.52?",
    "question_th": "แอพสำหรับผู้เล่นที่มี 150 ประตูและอัตราส่วน 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_en": "Which team won at the symmons plains raceway?",
    "question_th": "ทีมใดชนะที่สนามแข่งรถ Symmons Plains?",
    "context": "CREATE TABLE table_name_42 (team VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_5 WHERE circuit = \"winton motor raceway\"",
    "question_en": "Which team won at winton motor raceway?",
    "question_th": "ทีมไหนชนะที่สนามวินตัน มอเตอร์ เรซเวย์?",
    "context": "CREATE TABLE table_name_5 (team VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT circuit FROM table_name_71 WHERE series = \"atcc round 7\"",
    "question_en": "Which circuit was the atcc round 7 at?",
    "question_th": "ATCC รอบ 7 อยู่ที่วงจรไหน?",
    "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_en": "Which circuit did winfield team nissan win for the tooheys 1000?",
    "question_th": "ทีมวินฟิลด์นิสสันชนะการแข่งขัน 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_en": "What is the date for the tooheys 1000?",
    "question_th": "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_en": "what series was in sydney, new south wales?",
    "question_th": "มีซีรีส์อะไรในซิดนีย์ นิวเซาท์เวลส์?",
    "context": "CREATE TABLE table_name_49 (series VARCHAR, city___state VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(rank) FROM table_name_86 WHERE ø_pts > 1.26 AND games = 1458",
    "question_en": "What was the rank for 1.26 Ø-Pts in game 1458?",
    "question_th": "1.26 Ø-Pts ในเกม 1458 มีอันดับเท่าไหร่?",
    "context": "CREATE TABLE table_name_86 (rank VARCHAR, ø_pts VARCHAR, games VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_61 WHERE partner = \"marcella mesker\" AND score = \"6–4, 4–6, 4–6\"",
    "question_en": "What is the Outcome of the match with Partner Marcella Mesker and a Score of 6–4, 4–6, 4–6?",
    "question_th": "ผลการแข่งขันกับคู่หูมาร์เชลลา เมสเกอร์และสกอร์ 6–4, 4–6, 4–6 คืออะไร?",
    "context": "CREATE TABLE table_name_61 (outcome VARCHAR, partner VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_30 WHERE score = \"2–6, 6–4, 7–6\"",
    "question_en": "What is the Surface of the match with a Score of 2–6, 6–4, 7–6?",
    "question_th": "พื้นผิวของการแข่งขันด้วยคะแนน 2–6, 6–4, 7–6 คืออะไร?",
    "context": "CREATE TABLE table_name_30 (surface VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_77 WHERE date = \"october 5, 1987\"",
    "question_en": "What is the Surface of the match played on October 5, 1987?",
    "question_th": "Surface ของแมตช์ที่เล่นในวันที่ 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–6, 2–6\"",
    "question_en": "What is the Date of the match with a Score of 0–6, 2–6 with Partner Marcella Mesker?",
    "question_th": "วันที่แข่งขันด้วยสกอร์ 0–6, 2–6 กับคู่หู 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_en": "Who is the Opponents on May 3, 1982?",
    "question_th": "ใครคือฝ่ายตรงข้ามในวันที่ 3 พฤษภาคม พ.ศ. 2525",
    "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_en": "What is the Score of the match on May 21, 1984 with Outcome of runner-up?",
    "question_th": "ผลการแข่งขันวันที่ 21 พ.ค. 2527 กับรองแชมป์เป็นอย่างไร?",
    "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_en": "What is the date of the 200m individual medley?",
    "question_th": "วิ่งเดี่ยวผสม 200 ม. วันที่เท่าไหร่?",
    "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_en": "Which team was team 1 in the match where team 2 was olympique lyonnais (d2)?",
    "question_th": "ทีมใดเป็นทีมที่ 1 ในการแข่งขัน โดยทีมที่ 2 คือโอลิมปิกลียง (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_en": "What was the score of the match where paris sg (d1) was team 1?",
    "question_th": "แมตช์ที่ปารีส sg (d1) เป็นทีม 1 มีผลสกอร์เท่าไร?",
    "context": "CREATE TABLE table_name_63 (score VARCHAR, team_1 VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_77 WHERE result = \"w 23–22\"",
    "question_en": "Which Week has a Result of w 23–22?",
    "question_th": "สัปดาห์ใดมีผลลัพธ์ของ w 23–22?",
    "context": "CREATE TABLE table_name_77 (week VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_32 WHERE result = \"bye\"",
    "question_en": "When was there a bye result?",
    "question_th": "มีผลลาก่อนเมื่อไหร่?",
    "context": "CREATE TABLE table_name_32 (date VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_40 WHERE attendance = \"65,806\"",
    "question_en": "When was the attendance 65,806?",
    "question_th": "ผู้เข้าร่วม 65,806 คนคือเมื่อไหร่?",
    "context": "CREATE TABLE table_name_40 (date VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_43 WHERE week > 16",
    "question_en": "Who was the opponent after week 16?",
    "question_th": "คู่ต่อสู้หลังจากสัปดาห์ที่ 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_en": "What is Commissioned, when Laid Down is \"6 September 2003\"?",
    "question_th": "Commissioned คืออะไร เมื่อ Laid Down คือ \"6 กันยายน 2546\"?",
    "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_en": "What is Launched, when Laid Down is \"31 October 1981\"?",
    "question_th": "เปิดตัวเมื่อ Laid Down คือ \"31 ตุลาคม 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_en": "What is Ship, when Commissioned is \"13 March 1982\"?",
    "question_th": "เรือคืออะไร เมื่อได้รับหน้าที่คือ \"13 มีนาคม พ.ศ. 2525\"?",
    "context": "CREATE TABLE table_name_54 (ship VARCHAR, commissioned VARCHAR)"
  },
  {
    "answer": "SELECT launched FROM table_name_50 WHERE commissioned = \"25 july 1998\"",
    "question_en": "What is Launched, when Commissioned is \"25 July 1998\"?",
    "question_th": "เปิดตัวเมื่อใด เมื่อได้รับหน้าที่คือ \"25 กรกฎาคม พ.ศ. 2541\"?",
    "context": "CREATE TABLE table_name_50 (launched VARCHAR, commissioned VARCHAR)"
  },
  {
    "answer": "SELECT laid_down FROM table_name_85 WHERE hull_number = \"cvn-69\"",
    "question_en": "What is Laid Down, when Hull Number is \"CVN-69\"?",
    "question_th": "Laid Down คืออะไร เมื่อหมายเลขตัวถังคือ \"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_en": "What is Laid Down, when Commissioned is \"11 November 1989\"?",
    "question_th": "Laid Down คืออะไร เมื่อได้รับมอบหมายให้เป็น \"11 พฤศจิกายน พ.ศ. 2532\"?",
    "context": "CREATE TABLE table_name_90 (laid_down VARCHAR, commissioned VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_67 WHERE entrant = \"j ampt\"",
    "question_en": "Can you tell me the Position that has the Entrant of j ampt?",
    "question_th": "คุณช่วยบอกตำแหน่งที่มีผู้เข้าร่วมของ j ampt หน่อยได้ไหม?",
    "context": "CREATE TABLE table_name_67 (position VARCHAR, entrant VARCHAR)"
  },
  {
    "answer": "SELECT entrant FROM table_name_77 WHERE laps = 17",
    "question_en": "Can you tell me the Entrant that has the Laps of 17?",
    "question_th": "คุณช่วยบอกผู้เข้าแข่งขันที่มีรอบ 17 หน่อยได้ไหม?",
    "context": "CREATE TABLE table_name_77 (entrant VARCHAR, laps VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_41 WHERE driver = \"bib stillwell\"",
    "question_en": "Can you tell me the Position that has the Driver of bib stillwell?",
    "question_th": "ช่วยบอกตำแหน่งที่มีคนขับเอี๊ยมยังอยู่ได้ไหม?",
    "context": "CREATE TABLE table_name_41 (position VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_70 WHERE attendance = \"41,429\"",
    "question_en": "What are the results for a game with an attendance of 41,429?",
    "question_th": "ผลการแข่งขันที่มีผู้เข้าชม 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_en": "Who were the opponents when there was an attendance of 48,165?",
    "question_th": "ใครคือฝ่ายตรงข้ามเมื่อมีผู้เข้าร่วม 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_en": "What are the results for the game with 82,113 attending?",
    "question_th": "ผลการแข่งขันที่มีผู้เข้าร่วม 82,113 คนเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_41 (result VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT week_4 FROM table_name_12 WHERE week_3 = \"mikaela james\"",
    "question_en": "Who was the girl on week 4 after week 3's Mikaela James?",
    "question_th": "Mikaela James ในสัปดาห์ที่ 4 หลังจากสัปดาห์ที่ 3 คือใคร",
    "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_en": "Who was the girl on week 1 that was previous to week 3's Ava Hart?",
    "question_th": "ผู้หญิงในสัปดาห์ที่ 1 ก่อนหน้า Ava Hart ในสัปดาห์ที่ 3 คือใคร",
    "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_en": "Who was the girl on week 2 that was previous to week 4's Chelsie Loraine?",
    "question_th": "เด็กผู้หญิงในสัปดาห์ที่ 2 ก่อนหน้าเชลซี ลอเรนในสัปดาห์ที่ 4 คือใคร",
    "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_en": "Who was the girl on week 5 that came after week 3's Mikaela James?",
    "question_th": "ผู้หญิงในสัปดาห์ที่ 5 ที่มาหลังจากมิคาเอลา เจมส์ในสัปดาห์ที่ 3 คือใคร",
    "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_en": "Who was the girl on week 1 that preceded week 2's Kamila Sulewska?",
    "question_th": "เด็กผู้หญิงในสัปดาห์ที่ 1 ที่อยู่ก่อนหน้า Kamila Sulewska ในสัปดาห์ที่ 2 คือใคร",
    "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_en": "Who was the girl on week 5 that came after week 3's Shelly Louise?",
    "question_th": "เด็กผู้หญิงในสัปดาห์ที่ 5 ที่มาหลังจากเชลลี หลุยส์ในสัปดาห์ที่ 3 คือใคร",
    "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_en": "What is 1987-88, when Points is \"136\"?",
    "question_th": "1987-88 คืออะไร เมื่อคะแนนคือ \"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_en": "Name the the highest Draw which has Points of 22 and Goals Conceded smaller than 26?",
    "question_th": "ตั้งชื่อผลเสมอสูงสุดซึ่งมีคะแนน 22 และเสียประตูน้อยกว่า 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_en": "Name the highest Played of Goals Scored smaller than 18 and a Lost larger than 10?",
    "question_th": "ตั้งชื่อการเล่นสูงสุดของจำนวนประตูที่น้อยกว่า 18 และแพ้มากกว่า 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_en": "Name the average Played with a Points of 0*?",
    "question_th": "ตั้งชื่อค่าเฉลี่ยที่เล่นด้วยคะแนน 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_en": "Count the Draw which has Lost of 0, and a Goals Scored larger than 0?",
    "question_th": "นับผลเสมอที่แพ้ 0 และประตูที่ทำได้มากกว่า 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_en": "Name the Goals Conceded  which has a Draw of 0 and a Played larger than 0?",
    "question_th": "ตั้งชื่อประตูที่ยอมรับซึ่งมีเสมอ 0 และเล่นมากกว่า 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_en": "What is the rank for the Mixed Team nation with a total of less than 13?",
    "question_th": "อันดับสำหรับทีมชาติแบบทีมผสมที่มีคะแนนรวมน้อยกว่า 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_en": "What is the total number of bronze medals for teams with less than 0 silver?",
    "question_th": "จำนวนเหรียญทองแดงทั้งหมดสำหรับทีมที่มีเงินน้อยกว่า 0 เหรียญคือเท่าใด",
    "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_en": "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?",
    "question_th": "ค่าเฉลี่ยเหรียญทองแดงของทีมมีมากกว่า 1 เหรียญ แต่รวมน้อยกว่า 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_en": "How many military or civilians were wounded in the conflict that had an unknown number of civilian and total deaths?",
    "question_th": "มีทหารหรือพลเรือนได้รับบาดเจ็บกี่คนในความขัดแย้งที่ไม่ทราบจำนวนพลเรือนและมีผู้เสียชีวิตทั้งหมด",
    "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_en": "How many civilians died in the conflict that left 231 members of the military dead?",
    "question_th": "พลเรือนเสียชีวิตไปกี่คนในความขัดแย้งที่ทำให้ทหารเสียชีวิต 231 คน?",
    "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_en": "How many civilians died in the conflict that left 178, excluding foreigners, dead?",
    "question_th": "พลเรือนเสียชีวิตไปกี่คนในความขัดแย้งที่ทำให้มีผู้เสียชีวิต 178 คน ไม่รวมชาวต่างชาติ?",
    "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_en": "How many members of the military died in the conflict that had a total of 531 casualties?",
    "question_th": "มีทหารกี่คนที่เสียชีวิตในความขัดแย้งและมีผู้เสียชีวิตทั้งหมด 531 ราย",
    "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_en": "How many civilians died in the conflict that had a total of 1,130 casualties?",
    "question_th": "มีพลเรือนเสียชีวิตกี่คนในความขัดแย้งซึ่งมีผู้เสียชีวิตทั้งหมด 1,130 ราย?",
    "context": "CREATE TABLE table_name_95 (civilian_deaths VARCHAR, total_casualties VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_7 WHERE week = 15",
    "question_en": "Which team was the opponent on week 15?",
    "question_th": "ทีมใดเป็นคู่ต่อสู้ในสัปดาห์ที่ 15?",
    "context": "CREATE TABLE table_name_7 (opponent VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT AVG(total) FROM table_name_44 WHERE finish = \"t47\"",
    "question_en": "What is the average Total, when Finish is \"T47\"?",
    "question_th": "ผลรวมเฉลี่ยคือเท่าใด เมื่อจบการแข่งขันคือ \"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_en": "What is To par, when Total is less than 297, and when Finish is \"1\"?",
    "question_th": "อะไรคือ To par เมื่อผลรวมน้อยกว่า 297 และเมื่อ Finish คือ \"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_en": "What is the Official ITV1 rating for auditions 4?",
    "question_th": "เรตติ้งอย่างเป็นทางการของ ITV1 สำหรับการออดิชั่น 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_en": "What is the lowest official ITV1 rating with 45.4% share?",
    "question_th": "คะแนน ITV1 อย่างเป็นทางการต่ำสุดที่มีส่วนแบ่ง 45.4% คืออะไร?",
    "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_en": "How many Goals against have Wins larger than 12, and a Club of ud las palmas, and a Position larger than 5?",
    "question_th": "มีกี่ประตูที่ชนะมากกว่า 12 และ Club of ud las palmas และตำแหน่งที่มากกว่า 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_en": "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?",
    "question_th": "ประตูใดที่มีคะแนนน้อยกว่า 26 และประตูสำหรับน้อยกว่า 38 และตำแหน่งที่มากกว่า 14 และผลต่างประตูน้อยกว่า -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ón\" AND points < 24",
    "question_en": "Which Goals against have a Club of cd castellón, and Points smaller than 24?",
    "question_th": "ประตูใดที่มี Club of cd Castellón และคะแนนน้อยกว่า 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_en": "How much Played has Goals against smaller than 34, and Wins smaller than 13?",
    "question_th": "เท่าไหร่ที่เล่นไปแล้วมีเป้าหมายต่อเป้าหมายที่น้อยกว่า 34 และชนะน้อยกว่า 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_en": "Which Played has a Position smaller than 4, and Wins larger than 16, and Points of 38, and Goals against larger than 35?",
    "question_th": "ผู้เล่นคนไหนที่มีตำแหน่งน้อยกว่า 4 และชนะมากกว่า 16 และแต้ม 38 และประตูต่อมากกว่า 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_en": "What is the To Par score for the player from France?",
    "question_th": "คะแนน To Par ของนักเตะจากฝรั่งเศสคือเท่าไร?",
    "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_en": "What is the name of the player with an overall score of 70-69-69=208?",
    "question_th": "นักเตะที่มีคะแนนรวม 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_en": "What is the To Par score for the player with an overall score of 71-68-69=208?",
    "question_th": "คะแนน To Par ของผู้เล่นที่มีคะแนนรวม 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_en": "What location did Anke Huber win the championship?",
    "question_th": "Anke Huber คว้าแชมป์ได้ที่ไหน?",
    "context": "CREATE TABLE table_name_68 (location VARCHAR, champion VARCHAR)"
  },
  {
    "answer": "SELECT runner_up FROM table_name_26 WHERE year = 1999",
    "question_en": "Who won the runner-up in 1999?",
    "question_th": "ใครได้รองชนะเลิศในปี 2542?",
    "context": "CREATE TABLE table_name_26 (runner_up VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_67 WHERE champion = \"flavia pennetta\"",
    "question_en": "What was the score when Flavia Pennetta won the championship?",
    "question_th": "เมื่อ ฟลาเวีย เพนเน็ตต้า คว้าแชมป์ได้สกอร์เท่าไหร่?",
    "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_en": "How many Matches have an S/Rate smaller than 133.72, and a Team of yorkshire carnegie?",
    "question_th": "มีกี่แมตช์ที่มี S/Rate น้อยกว่า 133.72 และทีมของ 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_en": "Which Team has Balls smaller than 258, and Inns of 10, and Matches smaller than 12?",
    "question_th": "ทีมใดมีลูกบอลที่เล็กกว่า 258 และโรงแรมขนาดเล็ก 10 และแมตช์ที่เล็กกว่า 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_en": "How many Matches have Balls smaller than 224, and an Average larger than 38.25, and an S/Rate larger than 139.09?",
    "question_th": "มีกี่แมตช์ที่มีลูกบอลเล็กกว่า 224 และมีค่าเฉลี่ยมากกว่า 38.25 และ S/Rate มากกว่า 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_en": "What was the fastest lap for Grand Prix dutch tt?",
    "question_th": "อะไรคือรอบที่เร็วที่สุดสำหรับ 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_en": "Who won the race circuit of sachsenring?",
    "question_th": "ใครเป็นผู้ชนะการแข่งขันวงจรซัคเซนริง?",
    "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_en": "Who won with the fastest lap of daijiro hiura on March 29?",
    "question_th": "ใครเป็นผู้ชนะด้วยรอบเร็วที่สุดของไดจิโระ ฮิอุระ เมื่อวันที่ 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_en": "What year had a total of 2 and LA matches of 0?",
    "question_th": "ปีใดมีการแข่งขันทั้งหมด 2 รายการและการแข่งขัน LA เป็น 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_en": "What year was the total 9?",
    "question_th": "ทั้งหมด 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_en": "Who is in week 4 if week 5 is [month ended] and week 2 is April Ireland?",
    "question_th": "สัปดาห์ที่ 4 คือใครถ้าสัปดาห์ที่ 5 คือ [สิ้นสุดเดือน] และสัปดาห์ที่ 2 คือเดือนเมษายนไอร์แลนด์",
    "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_en": "Who is week 3 if week 2 is Nikki Fiction?",
    "question_th": "สัปดาห์ที่ 3 คือใครถ้าสัปดาห์ที่ 2 เป็น 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_en": "Who is week 1 if week 3 is Natasha Budhi?",
    "question_th": "สัปดาห์ที่ 1 คือใคร ถ้าสัปดาห์ที่ 3 คือนาตาชา บูธี",
    "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_en": "Who is week 5 if week 2 is Jenna Jordan?",
    "question_th": "สัปดาห์ที่ 5 คือใครถ้าสัปดาห์ที่ 2 คือเจนน่า จอร์แดน",
    "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_en": "Who is week 2 if week 3 is Sara Stokes?",
    "question_th": "สัปดาห์ที่ 2 คือใคร ถ้าสัปดาห์ที่ 3 คือ 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_en": "Who is week 3 if week 1 is Amanda Batt?",
    "question_th": "สัปดาห์ที่ 3 คือใครถ้าสัปดาห์ที่ 1 คือ 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_en": "What average bronze has a total less than 1?",
    "question_th": "ทองแดงเฉลี่ยใดที่มียอดรวมน้อยกว่า 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_en": "What average gold has China (chn) as the nation with a bronze greater than 1?",
    "question_th": "ทองคำโดยเฉลี่ยใดที่จีน (chn) เป็นประเทศที่มีเหรียญทองแดงมากกว่า 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_en": "Which is the highest gold that has a bronze greater than 4?",
    "question_th": "ทองคำใดมีค่าสูงสุดที่มีทองแดงมากกว่า 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_en": "What date has fewer than 32 against and the opposing team of Australia?",
    "question_th": "วันไหนมีน้อยกว่า 32 ต่อ และทีมตรงข้ามของออสเตรเลีย?",
    "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_en": "What is the average against for a test match?",
    "question_th": "ค่าเฉลี่ยเทียบกับการแข่งขันนัดทดสอบคือเท่าใด?",
    "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_en": "Which venue has more than 9 against and a status of second test?",
    "question_th": "สถานที่ใดที่มีคะแนนมากกว่า 9 คะแนนและมีสถานะเป็นการทดสอบครั้งที่สอง",
    "context": "CREATE TABLE table_name_90 (venue VARCHAR, against VARCHAR, status VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_52 WHERE against = 35",
    "question_en": "Which status has an against of 35?",
    "question_th": "สถานะใดมีแต้มต่อ 35?",
    "context": "CREATE TABLE table_name_52 (status VARCHAR, against VARCHAR)"
  },
  {
    "answer": "SELECT music FROM table_name_64 WHERE dance = \"modern\"",
    "question_en": "What was the music for the modern dance?",
    "question_th": "ดนตรีสำหรับการเต้นรำสมัยใหม่คืออะไร?",
    "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_en": "What was the place for the tango dance when the points was jury of 24 (7,5,6,6)?",
    "question_th": "สถานที่สำหรับการเต้นแทงโก้เมื่อคะแนนเป็นคณะลูกขุน 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_en": "What is the Average Qualifying Goals for Jack Froggatt where the Final Goals is greater than 0?",
    "question_th": "ประตูรอบคัดเลือกโดยเฉลี่ยของ Jack Froggatt คืออะไร โดยที่ประตูสุดท้ายมากกว่า 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_en": "Which Player has a Total Goals greater than 1 and Qualifying Goals smaller than 3?",
    "question_th": "ผู้เล่นคนใดที่มีประตูรวมมากกว่า 1 และประตูที่มีคุณสมบัติน้อยกว่า 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_en": "What is the total number of Total Goals scored by Stan Mortensen where the Qualifying Goals is greater than 3?",
    "question_th": "จำนวนประตูรวมทั้งหมดที่ยิงโดย Stan Mortensen โดยที่ประตูเข้ารอบมากกว่า 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_en": "What is the Average Finals Goals if the Total Goals is less than 1?",
    "question_th": "ประตูรอบชิงชนะเลิศโดยเฉลี่ยจะเป็นเท่าใด หากประตูรวมน้อยกว่า 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_en": "What was Adam Scott's total score when playing in Australia with a to par of e?",
    "question_th": "คะแนนรวมของ Adam Scott เมื่อเล่นที่ออสเตรเลียโดยเสมอกับ 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_en": "What was Fredrik Jacobson's score?",
    "question_th": "คะแนนของ Fredrik Jacobson คืออะไร?",
    "context": "CREATE TABLE table_name_88 (score VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_95 WHERE away_team = \"leyton orient\"",
    "question_en": "WHAT IS THE HOME TEAM WITH AN AWAY OF LEYTON ORIENT?",
    "question_th": "ทีมเจ้าบ้านกับทีมเยือนเลย์ตัน โอเรียนท์คืออะไร?",
    "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_en": "WHAT IS NO TIE FROM brighton & hove albion?",
    "question_th": "อะไรคือสิ่งที่ไม่เสมอกันจากไบรท์ตัน แอนด์ โฮฟ อัลเบี้ยน?",
    "context": "CREATE TABLE table_name_52 (tie_no VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_11 WHERE date = \"october 5\"",
    "question_en": "What was the result for the game on October 5?",
    "question_th": "ผลการแข่งขันวันที่ 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_en": "What is the FA Cup Apps when total goals is smaller than 4, League Cup Goals is 0, and League Apps is 8 (10)?",
    "question_th": "แอป FA Cup คืออะไรเมื่อประตูรวมน้อยกว่า 4 ประตูในลีกคัพคือ 0 และแอปลีกคือ 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_en": "What is the lowest total goals when position is df, and FA Cup Goals is smaller than 0?",
    "question_th": "ประตูรวมต่ำสุดเมื่อตำแหน่งคือ df และประตู FA Cup น้อยกว่า 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_en": "What Viewers (m) has an Episode of school council?",
    "question_th": "ผู้ชมคนไหน (ม.) มีตอนของสภาโรงเรียนบ้าง?",
    "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_en": "What Viewers (m) has a Rating of 1.7, and an Episode of the game of life?",
    "question_th": "ผู้ชมคนไหน (m) มีเรตติ้ง 1.7 และตอนของเกมแห่งชีวิต?",
    "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_en": "What Viewers (m) has an Episode of 40 days?",
    "question_th": "ผู้ชมคนไหน (m) มีตอน 40 วัน?",
    "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_en": "What Episode has a Rating of 1.8, and Viewers (m) smaller than 2.73?",
    "question_th": "ตอนใดมีเรตติ้ง 1.8 และผู้ชม (m) น้อยกว่า 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_en": "What Rating has Viewers (m) of 2.73?",
    "question_th": "ผู้ชมมีเรตติ้งเท่าใด (m) ที่ 2.73",
    "context": "CREATE TABLE table_name_96 (rating VARCHAR, viewers__m_ VARCHAR)"
  },
  {
    "answer": "SELECT episode FROM table_name_17 WHERE share = \"tba\"",
    "question_en": "What Episode has a Share of tba?",
    "question_th": "ตอนไหนมีส่วนแบ่ง 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ünthardt bob hewitt\"",
    "question_en": "Name the Partner which is in 1979, and Opponents in the final of heinz günthardt bob hewitt?",
    "question_th": "ตั้งชื่อพันธมิตรซึ่งอยู่ในปี 1979 และฝ่ายตรงข้ามในรอบชิงชนะเลิศของ heinz günthardt 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_en": "which Surface has Opponents in the final of mark edmondson sherwood stewart, and a Tournament of dallas , u.s.?",
    "question_th": "Surface คนไหนมีคู่แข่งในรอบสุดท้ายของ Mark Edmondson Sherwood Stewart และ Tournament of dallas พวกเรา",
    "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_en": "Name the date of Tournament of paris indoor , france?",
    "question_th": "ตั้งชื่อวันที่จัด 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–2, 6–4\"",
    "question_en": "Name the Outcome has a Surface of hard, and a Score in the final of 6–2, 6–4?",
    "question_th": "ตั้งชื่อผลลัพธ์ที่มีพื้นผิวยากและคะแนนในรอบสุดท้าย 6–2, 6–4?",
    "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–3, 6–2\" AND opponents_in_the_final = \"mansour bahrami diego pérez\"",
    "question_en": "Name the Surface which has a Score in the final of 6–3, 6–2 and  Opponents in the final of mansour bahrami diego pérez?",
    "question_th": "ตั้งชื่อ Surface ซึ่งมีคะแนนในรอบสุดท้ายของ 6–3, 6–2 และฝ่ายตรงข้ามในรอบชิงชนะเลิศของ Mansour Bahrami Diego Pérez หรือไม่?",
    "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_en": "Which Res has a Time of 11:58?",
    "question_th": "Res ใดมีเวลา 11:58?",
    "context": "CREATE TABLE table_name_27 (res VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_33 WHERE opponent = \"jerry bohlander\"",
    "question_en": "What was jerry bohlander's time?",
    "question_th": "เวลาของเจอร์รี โบห์แลนเดอร์คืออะไร?",
    "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_en": "What was the total of Mauro Camoranesi when coppa italia was 0, champions league was 1 and less than 2 serie A?",
    "question_th": "เมาโร คาโมราเนซี ทำได้ทั้งหมดเมื่อโคปปาอิตาเลียเป็น 0, แชมเปี้ยนส์ลีกเป็น 1 และน้อยกว่า 2 ซีรีส์เอ",
    "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_en": "What's the Serie A when the coppa italia was 5?",
    "question_th": "กัลโช่เซเรียอาตอนโคปปาอิตาเลียอายุ 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_en": "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?",
    "question_th": "ผลรวมเมื่อแชมเปี้ยนส์ลีกเป็น 0 โคปปาอิตาเลียน้อยกว่า 0 และเซเรียอามากกว่า 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_en": "What is the championsleague when the total was greater than 1, the coppa italia was more than 2, and the Serie A was 1?",
    "question_th": "แชมเปี้ยนส์ลีกจะเป็นอย่างไรเมื่อผลรวมมากกว่า 1 โคปปาอิตาเลียมากกว่า 2 และเซเรียอาเป็น 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_en": "Can you tell me the Combined that has the Victories of 14?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่า Combined ที่มีชัยชนะ 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_en": "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?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าไจแอนต์สลาลอมที่มีคะแนนรวม 1 และประเทศของสหรัฐอเมริกาและชัยชนะที่มากกว่า 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_en": "What is Bob Charles' To par?",
    "question_th": "พาร์ของ Bob Charles คืออะไร?",
    "context": "CREATE TABLE table_name_84 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(total) FROM table_name_17 WHERE to_par = \"+11\"",
    "question_en": "What is the Total for the Player with a To par of +11?",
    "question_th": "ผลรวมของผู้เล่นที่มีค่าพาร์ถึง +11 เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_17 (total INTEGER, to_par VARCHAR)"
  },
  {
    "answer": "SELECT SUM(total) FROM table_name_24 WHERE to_par = \"–13\"",
    "question_en": "What is the Total of the Player with a To par of –13?",
    "question_th": "ผลรวมของผู้เล่นที่มีพาร์ถึง –13 เป็นเท่าใด?",
    "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_en": "What is Guard Kerri Shields Hometown?",
    "question_th": "Guard Kerri Shields บ้านเกิดคืออะไร?",
    "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_en": "What is the Name of the Player from Albuquerque, New Mexico?",
    "question_th": "ผู้เล่นจากอัลบูเคอร์คี นิวเม็กซิโกชื่ออะไร",
    "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_en": "What was the score of the 2nd leg when Newell's Old Boys played at home?",
    "question_th": "เลกที่ 2 เมื่อนีเวลล์ โอลด์ บอยส์เล่นในบ้านสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_19 (home__2nd_leg_ VARCHAR)"
  },
  {
    "answer": "SELECT home__2nd_leg_ FROM table_name_19 WHERE aggregate = \"2-0\"",
    "question_en": "Which team played at home for the second leg and has aggregate score of 2-0?",
    "question_th": "ทีมใดเล่นในบ้านในเลกที่สองและสกอร์รวม 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_en": "What was the score on the first leg when gimnasia de mendoza played at home for the second leg?",
    "question_th": "เลกแรกเมื่อกิมนาเซีย เด เมนโดซ่าเล่นในบ้านในเลกที่สองได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_57 (home__2nd_leg_ VARCHAR)"
  },
  {
    "answer": "SELECT home__2nd_leg_ FROM table_name_39 WHERE aggregate = \"2-4\"",
    "question_en": "Which team played at home for the second leg and has an aggregate score of 2-4?",
    "question_th": "ทีมใดเล่นในบ้านในเลกที่สองและมีสกอร์รวม 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ético tucumán\"",
    "question_en": "What was the 2nd leg score when atlético tucumán played at home?",
    "question_th": "สกอร์เลกที่ 2 เมื่อ แอตเลติโก ทูคูมัน เล่นในบ้านเป็นเท่าไหร่?",
    "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_en": "What is the record of the match with a win res., a 5:00 time, and more than 3 rounds?",
    "question_th": "สถิติการแข่งที่ชนะต่อเวลา 5.00 น. และมากกว่า 3 รอบเป็นอย่างไรบ้าง?",
    "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_en": "What is the method of opponent georges st-pierre?",
    "question_th": "ฝ่ายตรงข้าม George 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_en": "What is the location of fightfest 2, which has 3 rounds?",
    "question_th": "fightfest 2 มี 3 รอบ อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_46 (location VARCHAR, round VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_21 WHERE time = \"1:19\"",
    "question_en": "Who is the opponent with a time of 1:19?",
    "question_th": "คู่ต่อสู้ด้วยเวลา 1:19 คือใคร?",
    "context": "CREATE TABLE table_name_21 (opponent VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_81 WHERE record = \"0-1\"",
    "question_en": "Who is the opponent with a 0-1 record?",
    "question_th": "คู่ต่อสู้ที่มีสถิติ 0-1 คือใคร?",
    "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_en": "What is the total rank with more than 392 total points and an 24.8 average?",
    "question_th": "คะแนนรวมมากกว่า 392 คะแนน และคะแนนเฉลี่ย 24.8 อยู่ที่เท่าไร?",
    "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_en": "What is the highest average with less than 3 places, less than 433 total points, and a rank less than 2?",
    "question_th": "ค่าเฉลี่ยสูงสุดที่มีน้อยกว่า 3 อันดับ คะแนนรวมน้อยกว่า 433 คะแนน และอันดับน้อยกว่า 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_en": "What is the total average with 54 total points and a rank less than 10?",
    "question_th": "ค่าเฉลี่ยรวมที่มีคะแนนรวม 54 คะแนนและอันดับต่ำกว่า 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_en": "What is the total rank by average for 2 dances, which have more than 37 total points?",
    "question_th": "ค่าเฉลี่ยอันดับรวมของการเต้นรำ 2 ครั้งซึ่งมีคะแนนรวมมากกว่า 37 คะแนนเป็นเท่าใด",
    "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–5, 6–2\"",
    "question_en": "What Championship has an Opponent in the final of aaron krickstein, and a Score in the final of 7–5, 6–2?",
    "question_th": "การแข่งขันชิงแชมป์รายการใดมีคู่ต่อสู้ในรอบชิงชนะเลิศของ Aaron Krickstein และทำคะแนนในรอบชิงชนะเลิศ 7–5, 6–2?",
    "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_en": "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?",
    "question_th": "คะแนนใดในรอบชิงชนะเลิศที่มี Surface of hard, Championship of washington, dc, us และฝ่ายตรงข้ามในรอบชิงชนะเลิศของ 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_en": "What is the highest Number of seasons in Liga MX for Club cruz azul?",
    "question_th": "จำนวนฤดูกาลสูงสุดใน Liga MX สำหรับ 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_en": "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?",
    "question_th": "จำนวนฤดูกาลสูงสุดใน Liga MX สำหรับ Club cruz azul คืออะไร เมื่อฤดูกาลในดิวิชั่นสูงสุดสูงกว่า 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_en": "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?",
    "question_th": "จำนวนแชมป์ดิวิชั่นสูงสุดสำหรับสโมสรที่มีมากกว่า 40 ฤดูกาลในดิวิชั่นสูงสุด, ฤดูกาลแรกของคาถาปัจจุบันในดิวิชั่นสูงสุดของปี 1943-44 และมากกว่า 89 ฤดูกาลใน 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_en": "How many top division titles does Club Guadalajara have, with more than 42 seasons in Liga MX?",
    "question_th": "Club Guadalajara มีแชมป์ดิวิชั่นสูงสุดกี่รายการ โดยมากกว่า 42 ฤดูกาลใน 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_en": "Which club has fewer than 40 seasons in Liga MX and 65 seasons in the top division?",
    "question_th": "สโมสรใดมีน้อยกว่า 40 ฤดูกาลใน Liga MX และ 65 ฤดูกาลในดิวิชั่นสูงสุด?",
    "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_en": "What number is in Bois de Warville with a time less than 810?",
    "question_th": "บัวส์ เดอ วาร์วีล มีจำนวนเท่าใด เวลาน้อยกว่า 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_en": "What is number 21's highest time?",
    "question_th": "เวลาสูงสุดของหมายเลข 21 คืออะไร?",
    "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_en": "What number with the opponent Fokker D.vii have with a time of 1655?",
    "question_th": "คู่ต่อสู้ ฟอกเกอร์ ดี.วี มีเลขอะไรด้วยเวลา 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_en": "Who is the opponent with a time higher than 1040, a Spad xiii aircraft in Dun-Sur-Meuse with a lower number than 22?",
    "question_th": "คู่ต่อสู้ที่มีเวลามากกว่า 1,040 เครื่องบิน Spad xiii ใน Dun-Sur-Meuse ที่มีจำนวนน้อยกว่า 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_en": "What number has the opponent Fokker d.vii with a time of 600?",
    "question_th": "คู่ต่อสู้ Fokker d.vii หมายเลขใดด้วยเวลา 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–1992\"",
    "question_en": "What is the Name of the Building with 36 or more Floors with Years as tallest of 1986–1992?",
    "question_th": "อาคารที่มี 36 ชั้นขึ้นไปและมีอายุสูงสุดในปี 1986-1992 ชื่อว่าอะไร",
    "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_en": "What is the Years as tallest of the Building with a Height ft (m) of 145 (44)?",
    "question_th": "ปีที่สูงที่สุดของอาคารที่มีความสูง 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_en": "What is the Street Address of the Building with 17 Floors?",
    "question_th": "ที่อยู่ของอาคาร 17 ชั้นคืออะไร?",
    "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_en": "What is the Name of the Building at 100 North Tampa Street?",
    "question_th": "อาคารที่ 100 ถนนแทมปาเหนือชื่ออะไร",
    "context": "CREATE TABLE table_name_28 (name VARCHAR, street_address VARCHAR)"
  },
  {
    "answer": "SELECT away FROM table_name_68 WHERE round = \"q3\"",
    "question_en": "What away is there for the q3 round?",
    "question_th": "รอบ Q3 จะมีอะไรบ้าง?",
    "context": "CREATE TABLE table_name_68 (away VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT aggregate FROM table_name_56 WHERE opponents = \"bayer leverkusen\"",
    "question_en": "What is the Aggregate of Bayer Leverkusen opponents?",
    "question_th": "ผลรวมคู่แข่งของไบเออร์ เลเวอร์คูเซ่นคืออะไร?",
    "context": "CREATE TABLE table_name_56 (aggregate VARCHAR, opponents VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_80 WHERE venue = \"serravalle, san marino\"",
    "question_en": "What is the competition that was at serravalle, san marino?",
    "question_th": "การแข่งขันที่ 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_en": "Where was the friendly competition that Andriy Yarmolenko won on 28 may 2012?",
    "question_th": "การแข่งขันกระชับมิตรที่ Andriy Yarmolenko ชนะเมื่อวันที่ 28 พฤษภาคม 2555 อยู่ที่ไหน?",
    "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_en": "What is the result of the game at kyiv, ukraine?",
    "question_th": "ผลการแข่งขันที่เคียฟ ประเทศยูเครน เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_2 (result VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT style FROM table_name_59 WHERE choreographer = \"luda and oliver\"",
    "question_en": "What is the Style of the dance by Choreographer Luda and Oliver?",
    "question_th": "สไตล์การเต้นของนักออกแบบท่าเต้น Luda และ Oliver คืออะไร?",
    "context": "CREATE TABLE table_name_59 (style VARCHAR, choreographer VARCHAR)"
  },
  {
    "answer": "SELECT results FROM table_name_44 WHERE choreographer = \"kelly aykers\"",
    "question_en": "What is the Result of the dance Choreographed by Kelly Aykers?",
    "question_th": "ผลลัพธ์ของการเต้นรำที่ออกแบบโดย 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_en": "What is the Style of the dance Choreographed by Nacho Pop with result of safe?",
    "question_th": "ลีลาการเต้นที่ออกแบบโดยนาโช่ป๊อปมีผลลัพท์แบบปลอดภัยเป็นอย่างไร?",
    "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_en": "What is the rank with a higher than 2 total, 21 gold and more than 12 bronze?",
    "question_th": "อันดับที่มีมากกว่า 2 รวม 21 เหรียญทอง และมากกว่า 12 เหรียญทองแดง คืออะไร?",
    "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_en": "How many golds does Germany have with more than 1 silver?",
    "question_th": "เยอรมนีมีเหรียญทองกี่เหรียญและมีเงินมากกว่า 1 เหรียญ?",
    "context": "CREATE TABLE table_name_74 (gold INTEGER, silver VARCHAR, nation VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(round) FROM table_name_87 WHERE pick = 20",
    "question_en": "What is the total number of rounds of the player with a pick of 20?",
    "question_th": "ผู้เล่นที่เลือกได้ 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_en": "Who is the player from the 1971 draft with a pick greater than 7?",
    "question_th": "ใครคือผู้เล่นจากร่างปี 1971 ที่มีตัวเลือกมากกว่า 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_en": "What is the total number of Premier, when Second is \"55\"?",
    "question_th": "จำนวนพรีเมียร์ทั้งหมดเป็นเท่าใด เมื่อที่สองคือ \"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_en": "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?",
    "question_th": "จำนวนวินาทีทั้งหมดเป็นเท่าใด เมื่อครั้งแรกมากกว่า 18 เมื่อฤดูกาลคือปี 1992-93 และเมื่อพรีเมียร์มากกว่า 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_en": "What is the lowest Total, when Second is \"55\"?",
    "question_th": "ผลรวมต่ำสุดคือเท่าใด เมื่ออันดับสองคือ \"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_en": "What is the highest Total, when Season is \"1996-97\", and when Second is less than 33?",
    "question_th": "ผลรวมสูงสุดคือเท่าใด เมื่อฤดูกาลคือ \"1996-97\" และเมื่อวินาทีน้อยกว่า 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_en": "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?",
    "question_th": "ผลรวมของ Second คืออะไร เมื่อผลรวมน้อยกว่า 70 เมื่อ Premier น้อยกว่า 20 และเมื่อ First มากกว่า 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_en": "In what season were there 27 goals and 58 points?",
    "question_th": "ในฤดูกาลใดที่มี 27 ประตู 58 แต้ม?",
    "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_en": "What are the points in the season with 47 games and 28 goals?",
    "question_th": "ฤดูกาลนี้ 47 นัด 28 ประตูมีแต้มอะไรบ้าง?",
    "context": "CREATE TABLE table_name_38 (points VARCHAR, goals VARCHAR, games VARCHAR)"
  },
  {
    "answer": "SELECT goals FROM table_name_29 WHERE games = \"47\"",
    "question_en": "How many goals were there in game 47?",
    "question_th": "ในเกมที่ 47 มีกี่ประตู?",
    "context": "CREATE TABLE table_name_29 (goals VARCHAR, games VARCHAR)"
  },
  {
    "answer": "SELECT SUM(snatch) FROM table_name_79 WHERE total__kg_ < 257",
    "question_en": "How much Snatch has a Total (kg) smaller than 257?",
    "question_th": "Snatch มียอดรวม (กก.) น้อยกว่า 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_en": "Which Snatch has a Clean & Jerk of 180, and a Bodyweight smaller than 69.83?",
    "question_th": "Snatch ตัวไหนมีค่า Clean & Jerk 180 และน้ำหนักตัวน้อยกว่า 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_en": "What is the total number of military deaths when there are 78 military and/or civilian wounded and more than 27 total deaths?",
    "question_th": "จำนวนผู้เสียชีวิตของทหารทั้งหมดเมื่อมีทหารและ/หรือพลเรือนได้รับบาดเจ็บ 78 ราย และผู้เสียชีวิตรวมมากกว่า 27 รายเป็นเท่าใด",
    "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_en": "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?",
    "question_th": "จำนวนผู้เสียชีวิตโดยเฉลี่ยของทหารเมื่อมีพลเรือนเสียชีวิตน้อยกว่า 38 ราย (รวมชาวต่างชาติ) และบาดเจ็บทางทหารและ/หรือพลเรือน 33 รายคือเท่าใด",
    "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_en": "What is the total number of casualties when there are 12 total deaths and more than 1 military death?",
    "question_th": "จำนวนผู้เสียชีวิตทั้งหมดเมื่อมีผู้เสียชีวิตทั้งหมด 12 ราย และการเสียชีวิตของทหารมากกว่า 1 รายเป็นเท่าใด",
    "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_en": "which Total has a Score points of 11?",
    "question_th": "คะแนนรวมใดมีคะแนนเท่ากับ 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_en": "Which Total has an olympic bronze medalist?",
    "question_th": "Total คนใดมีผู้ชนะเลิศเหรียญทองแดงโอลิมปิก",
    "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_en": "Which Shooter has Score points of olympic silver medalist?",
    "question_th": "Shooter คนไหนมีคะแนนผู้ชนะเลิศเหรียญเงินโอลิมปิก?",
    "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_en": "Name the Rank points which have an Event of wc beijing, and Score points of 13, and a Total of 18?",
    "question_th": "ตั้งชื่อคะแนนอันดับซึ่งมีเหตุการณ์ของ wc ปักกิ่ง และคะแนนคะแนน 13 และคะแนนรวม 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ēka bērns\"",
    "question_en": "What is the Film title used in nomination of Cilvēka Bērns?",
    "question_th": "ชื่อภาพยนตร์ที่ใช้ในการเสนอชื่อ Cilvēka Bērns คืออะไร",
    "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_en": "What is the Original Title of the 1992 (65th) Film",
    "question_th": "ชื่อดั้งเดิมของภาพยนตร์ปี 1992 (ฉบับที่ 65) คืออะไร",
    "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_en": "What is the Director of Gulf Stream Under the Iceberg?",
    "question_th": "ผู้อำนวยการของกัลฟ์สตรีมใต้ภูเขาน้ำแข็งคืออะไร?",
    "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_en": "What is the Original Title of the movie directed by Aigars Grauba?",
    "question_th": "ชื่อดั้งเดิมของภาพยนตร์ที่กำกับโดย Aigars Grauba คืออะไร?",
    "context": "CREATE TABLE table_name_36 (original_title VARCHAR, director VARCHAR)"
  },
  {
    "answer": "SELECT british FROM table_name_55 WHERE letter = \"o /oʊ/\"",
    "question_en": "What is the British letter with o /oʊ/?",
    "question_th": "ตัวอักษรอังกฤษที่มี o /oʊ/ คืออะไร?",
    "context": "CREATE TABLE table_name_55 (british VARCHAR, letter VARCHAR)"
  },
  {
    "answer": "SELECT letter FROM table_name_40 WHERE british = \"aɪ\"",
    "question_en": "Which letter has the British aɪ?",
    "question_th": "ตัวอักษรใดมีอักษร aə ของอังกฤษ?",
    "context": "CREATE TABLE table_name_40 (letter VARCHAR, british VARCHAR)"
  },
  {
    "answer": "SELECT american FROM table_name_65 WHERE australian = \"əʉ\"",
    "question_en": "What does American have if Australia has əʉ?",
    "question_th": "คนอเมริกันจะมีอะไรถ้าออสเตรเลียมี əʉ?",
    "context": "CREATE TABLE table_name_65 (american VARCHAR, australian VARCHAR)"
  },
  {
    "answer": "SELECT british FROM table_name_10 WHERE american = \"ə\"",
    "question_en": "What is the British letter if American is ə?",
    "question_th": "ตัวอักษรอังกฤษคืออะไรถ้า American คือ ə?",
    "context": "CREATE TABLE table_name_10 (british VARCHAR, american VARCHAR)"
  },
  {
    "answer": "SELECT australian FROM table_name_67 WHERE british = \"ɪ\" AND letter = \"æ /i/\"",
    "question_en": "What is the Australian letter with a British of ɪ and a letter of æ /i/??",
    "question_th": "ตัวอักษรออสเตรเลียที่มีอักษรอังกฤษเป็น ɪ และตัวอักษร æ /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_en": "What is sheffield united's away team?",
    "question_th": "ทีมเยือนของเชฟฟิลด์ ยูไนเต็ด คืออะไร?",
    "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_en": "How many people attended the Away team of middlesbrough?",
    "question_th": "มีผู้เข้าร่วมทีมเยือนมิดเดิ้ลสโบรช์กี่คน?",
    "context": "CREATE TABLE table_name_67 (attendance VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_98 WHERE away_team = \"middlesbrough\"",
    "question_en": "Which Score has an Away team of middlesbrough?",
    "question_th": "สกอร์ไหนมีทีมเยือนมิดเดิ้ลสโบรช์?",
    "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_en": "WHAT IS THE YEARS AS TALLEST WITH 01.0 10 light street?",
    "question_th": "ปีที่สูงที่สุดด้วย 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_en": "WHAT IS THE FLOOR NUMBERS WITH 01.0 10 light street?",
    "question_th": "เลขที่พื้น 01.0 10 ถนนสว่างคืออะไร?",
    "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_en": "WHAT IS THE YEAR'S TALLEST VALUE WITH FLOORS LESS THAN 24, AND 05.0 210 north charles street?",
    "question_th": "มูลค่าที่สูงที่สุดของปีโดยมีพื้นน้อยกว่า 24 คือเท่าใด และ 05.0 210 ถนนชาร์ลส์เหนือ",
    "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_en": "WHAT IS THE NAME WITH 01.0 10 light street?",
    "question_th": "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_en": "What is the Name of the Player with a Height of m (ft 1in)?",
    "question_th": "ผู้เล่นที่มีส่วนสูง เมตร (ฟุต 1 นิ้ว) ชื่ออะไร?",
    "context": "CREATE TABLE table_name_20 (name VARCHAR, height VARCHAR)"
  },
  {
    "answer": "SELECT weight FROM table_name_43 WHERE name = \"tatyana gubina\"",
    "question_en": "What is Tatyana Gubina's Weight?",
    "question_th": "น้ำหนักของ Tatyana Gubina คืออะไร?",
    "context": "CREATE TABLE table_name_43 (weight VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT pos FROM table_name_86 WHERE name = \"alyona klimenko\"",
    "question_en": "What is Alyona Klimenko's Pos.?",
    "question_th": "ตำแหน่งของ Alyona Klimenko คืออะไร?",
    "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_en": "How many third places has a total greater than 2 and a rank less than 2?",
    "question_th": "อันดับสามมีกี่อันดับที่มีคะแนนรวมมากกว่า 2 และมีอันดับน้อยกว่า 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_en": "What is the number for R Bacon in Passaic County?",
    "question_th": "หมายเลขโทรศัพท์ของ R Bacon ใน 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_en": "What is the number for D. Shulman if C. Abate has 728 (43%)",
    "question_th": "ตัวเลขของ D. Shulman คืออะไร ถ้า C. Abate มี 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_en": "Which county has 728 (43%) listed under C. Abate?",
    "question_th": "เคาน์ตีใดมี 728 (43%) อยู่ในรายการภายใต้ 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_en": "What are the numbers for D. Shulman in Warren County?",
    "question_th": "ตัวเลขของ D. Shulman ใน 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_en": "Which County has Precincts of 90/90?",
    "question_th": "มณฑลใดมีพื้นที่ 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_en": "Which county has 438 (4%) listed under R. Bacon?",
    "question_th": "มณฑลใดมี 438 (4%) อยู่ในรายการภายใต้อาร์เบคอน",
    "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_en": "What is the format of the album Pacific Ocean Blue in 1991?",
    "question_th": "รูปแบบของอัลบั้ม Pacific Ocean Blue ในปี 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_en": "Who is the artist with catalog number ZK 34354?",
    "question_th": "ศิลปินที่มีหมายเลขแคตตาล็อก 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_en": "How tall is player James Stanton?",
    "question_th": "ผู้เล่น 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_en": "Which player is on the roster for the Sydney University Lions?",
    "question_th": "ผู้เล่นคนใดที่อยู่ในบัญชีรายชื่อของทีม 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_en": "What is the height of player James Stanton?",
    "question_th": "เจมส์ สแตนตัน นักเตะส่วนสูงเท่าไหร่?",
    "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_en": "What is the highest draft after round 2, is from the United States and has picked less than 113?",
    "question_th": "ดราฟท์สูงสุดหลังรอบ 2 มาจากอเมริกาและเลือกไม่ถึง 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_en": "What is the average draft with a pick larger than 42, and player Grant Eakin after round 8?",
    "question_th": "ร่างเฉลี่ยที่มีตัวเลือกมากกว่า 42 และผู้เล่น Grant Eakin หลังจากรอบ 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_en": "What venue was the 2000 AFC Asian Cup qualification held at?",
    "question_th": "การแข่งขันฟุตบอลเอเชียนคัพ 2000 รอบคัดเลือก จัดขึ้นที่ใด?",
    "context": "CREATE TABLE table_name_9 (venue VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT MIN(goals) FROM table_name_40 WHERE matches < 29",
    "question_en": "What were the lowest goals when the matches were smaller than 29?",
    "question_th": "อะไรคือประตูที่ต่ำที่สุดเมื่อการแข่งขันมีขนาดเล็กกว่า 29?",
    "context": "CREATE TABLE table_name_40 (goals INTEGER, matches INTEGER)"
  },
  {
    "answer": "SELECT MIN(matches) FROM table_name_42 WHERE goals > 36",
    "question_en": "What is the lowest match for goals larger than 36?",
    "question_th": "การแข่งขันต่ำสุดสำหรับประตูที่มากกว่า 36 คืออะไร?",
    "context": "CREATE TABLE table_name_42 (matches INTEGER, goals INTEGER)"
  },
  {
    "answer": "SELECT SUM(sno) FROM table_name_53 WHERE completion_schedule = \"2013\"",
    "question_en": "For the 2013 completion schedule, what is the total S.no.?",
    "question_th": "สำหรับกำหนดการแล้วเสร็จในปี 2013 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_en": "What is the completion schedule for himachal pradesh state with a total capacity (MW) of 800?",
    "question_th": "กำหนดการก่อสร้างให้แล้วเสร็จของรัฐหิมาจัลประเทศด้วยกำลังการผลิตรวม (MW) 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_en": "When the completion schedule is 2016 for the state of jammu & kashmir, what is the smallest S.no.?",
    "question_th": "เมื่อกำหนดการแล้วเสร็จคือปี 2016 สำหรับรัฐชัมมูและแคชเมียร์ 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_en": "What is the 2009 value of the shanghai masters, which was A in 2012 and 1r in 2011?",
    "question_th": "มูลค่าของ Shanghai Masters ในปี 2009 ซึ่งเป็น A ในปี 2012 และอันดับที่ 1 ในปี 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_en": "What is the 2011 value of the paris masters, which had A in 2008, A in 2012, A in 2009?",
    "question_th": "มูลค่าของปารีสมาสเตอร์สในปี 2554 เป็นเท่าใด ซึ่งมี A ในปี 2551, A ในปี 2555, A ในปี 2552 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_34 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2012 FROM table_name_45 WHERE tournament = \"hamburg masters\"",
    "question_en": "What is the 2012 of the hamburg masters?",
    "question_th": "ปริญญาโทฮัมบูร์กปี 2012 คืออะไร?",
    "context": "CREATE TABLE table_name_45 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2008 FROM table_name_30 WHERE tournament = \"hamburg masters\"",
    "question_en": "What is the 2008 value of the hamburg masters?",
    "question_th": "มูลค่าของแฮมเบิร์กมาสเตอร์ในปี 2551 เป็นเท่าใด?",
    "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_en": "What is the 2009 value with lq in 2012, 2r in 2011, and lq in 2008?",
    "question_th": "ค่าปี 2009 โดยมี lq ในปี 2012, 2r ในปี 2011 และ lq ในปี 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_en": "What is the 2010 value of the monte carlo masters, which had A in 2012?",
    "question_th": "มูลค่าของ monte carlo masters ในปี 2010 ซึ่งมี A ในปี 2012 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_97 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(quantity) FROM table_name_93 WHERE drg_number_s_ = \"e 62 01–e 62 05\"",
    "question_en": "What is the quantity when the DRG was E 62 01–E 62 05?",
    "question_th": "ปริมาณเมื่อ DRG คือ E 62 01–E 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_en": "Which Opponent in the final has a Partnering of graydon oliver?",
    "question_th": "คู่ต่อสู้คนใดในรอบชิงชนะเลิศมีคู่หูของเกรย์ดอน โอลิเวอร์?",
    "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_en": "which Score has a Partnering of dmitry tursunov?",
    "question_th": "คะแนนใดที่มีการจับคู่ของ 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_en": "Which Score has an Opponent in the final of chris haggard robbie koenig?",
    "question_th": "สกอร์ใดที่มีคู่ต่อสู้ในรอบชิงชนะเลิศของคริส แฮกการ์ด ร็อบบี้ โคนิก?",
    "context": "CREATE TABLE table_name_17 (score VARCHAR, opponent_in_the_final VARCHAR)"
  },
  {
    "answer": "SELECT partnering FROM table_name_11 WHERE score = \"7–6 7 , 6–1\"",
    "question_en": "Which Partnering has a Score of 7–6 7 , 6–1?",
    "question_th": "คู่หูคนไหนมีคะแนน 7–6 7 , 6–1?",
    "context": "CREATE TABLE table_name_11 (partnering VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_92 WHERE tournament = \"valencia , spain\"",
    "question_en": "Name the Surface that of Tournament of valencia , spain?",
    "question_th": "ตั้งชื่อพื้นผิวของ Tournament of valencia ประเทศสเปนไหม?",
    "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_en": "Name the Opponent in the final on july 4, 2005?",
    "question_th": "ตั้งชื่อฝ่ายตรงข้ามในรอบชิงชนะเลิศวันที่ 4 กรกฎาคม 2548?",
    "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_en": "What was the Result F–A on 21 February 2009, when the league position was 1st?",
    "question_th": "ผลการแข่งขัน F–A เป็นอย่างไรในวันที่ 21 กุมภาพันธ์ พ.ศ. 2552 เมื่ออันดับลีกอยู่ที่ 1?",
    "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_en": "What club does John Westin play for?",
    "question_th": "จอห์น เวสตินเล่นให้กับสโมสรใด?",
    "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_en": "In what round was a left wing drafted?",
    "question_th": "ปีกซ้ายถูกดราฟในรอบไหน?",
    "context": "CREATE TABLE table_name_58 (round VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_30 WHERE round = 5",
    "question_en": "What player was drafted in Round 5?",
    "question_th": "ผู้เล่นคนใดที่ถูกดราฟต์ในรอบที่ 5?",
    "context": "CREATE TABLE table_name_30 (player VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_1 WHERE year_s__won = \"1991\"",
    "question_en": "Where did the player who won in 1991 finish?",
    "question_th": "ผู้เล่นที่ชนะในปี 1991 จบที่ไหน?",
    "context": "CREATE TABLE table_name_1 (finish VARCHAR, year_s__won VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_24 WHERE country = \"scotland\"",
    "question_en": "Which player is from scotland?",
    "question_th": "นักเตะคนไหนมาจากสกอตแลนด์?",
    "context": "CREATE TABLE table_name_24 (player VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT lyrics__l____music__m_ FROM table_name_60 WHERE draw = 5",
    "question_en": "What are the Lyrics (l) / Music (m) when the draw was 5?",
    "question_th": "เนื้อเพลง (l) / เพลง (m) ตอนหวยออก 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_en": "What score has friendly as the competition?",
    "question_th": "มีคะแนนกระชับมิตรเท่ากับการแข่งขันขนาดไหน?",
    "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_en": "Playing against Chelmsford City on 15 November 1986, who was the home team?",
    "question_th": "เล่นกับเชล์มสฟอร์ดซิตี้เมื่อวันที่ 15 พฤศจิกายน พ.ศ. 2529 เจ้าบ้านคือใคร?",
    "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_en": "When Lincoln City was the away team what is the tie number?",
    "question_th": "เมื่อลินคอล์น ซิตี้ เป็นทีมเยือน เสมอกันเบอร์อะไร?",
    "context": "CREATE TABLE table_name_21 (tie_no VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_95 WHERE away_team = \"rochdale\"",
    "question_en": "When was the game played that had Rochdale as the away team?",
    "question_th": "เกมนี้เล่นเมื่อไหร่ที่มีโรชเดลเป็นทีมเยือน?",
    "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_en": "Scunthorpe United as the home team has what tie number?",
    "question_th": "สคันธอร์ป ยูไนเต็ด เจ้าบ้านมีเลขเสมอกันอะไร?",
    "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_en": "The game played on 6 December 1986 had what score?",
    "question_th": "เกมที่เล่นเมื่อวันที่ 6 ธันวาคม พ.ศ. 2529 ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_12 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_56 WHERE quantity = \"124\"",
    "question_en": "WHAT IS THE TYPE WITH 124?",
    "question_th": "124 เป็นประเภทอะไร?",
    "context": "CREATE TABLE table_name_56 (type VARCHAR, quantity VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_32 WHERE total = \"28:42\"",
    "question_en": "What is Score, when Total is \"28:42\"?",
    "question_th": "คะแนนคืออะไร เมื่อผลรวมคือ \"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_en": "What is Date, when Set 1 is \"20:22\"?",
    "question_th": "วันที่คือเมื่อชุดที่ 1 คือ \"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_en": "What is Set 1, when Set 2 is \"21:18\"?",
    "question_th": "ชุดที่ 1 คืออะไร เมื่อชุดที่ 2 คือ \"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_en": "What is Set 2, when Total is \"52:44\"?",
    "question_th": "ชุดที่ 2 คืออะไร เมื่อผลรวมคือ \"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_en": "What is the away team with a 4 tie no.?",
    "question_th": "ทีมเยือน เสมอ 4 นัด คืออะไร?",
    "context": "CREATE TABLE table_name_57 (away_team VARCHAR, tie_no VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_52 WHERE away_team = \"southampton\"",
    "question_en": "What is the date southampton was the away team?",
    "question_th": "เซาแธมป์ตันเป็นทีมเยือนวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_52 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_94 WHERE home_team = \"tottenham hotspur\"",
    "question_en": "What is the score of the home team tottenham hotspur?",
    "question_th": "ท็อตแน่ม ฮ็อตสเปอร์สกอร์ของเจ้าบ้านเท่าไหร่?",
    "context": "CREATE TABLE table_name_94 (score VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_36 WHERE date = \"16 december 1987\"",
    "question_en": "What was the score of the game on 16 december 1987?",
    "question_th": "คะแนนของเกมเมื่อวันที่ 16 ธันวาคม พ.ศ. 2530 เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_36 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_16 WHERE away_team = \"hereford united\"",
    "question_en": "Who played against the away team hereford united?",
    "question_th": "ใครเล่นกับทีมเยือน เฮริฟอร์ด ยูไนเต็ด?",
    "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_en": "Who played against away team hereford united?",
    "question_th": "ใครเล่นกับทีมเยือน เฮริฟอร์ด ยูไนเต็ด?",
    "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_en": "Which club was in Position 1 in 1959-1960?",
    "question_th": "สโมสรใดอยู่ในตำแหน่งที่ 1 ในปี 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 = \"évora\"",
    "question_en": "In which season did the évora settlements join the league?",
    "question_th": "การตั้งถิ่นฐานของเอโวราเข้าร่วมลีกในฤดูกาลใด",
    "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_en": "What was the position in 1959-1960 for the club that had 14 seasons at this level?",
    "question_th": "ตำแหน่งอะไรในปี 1959-1960 ของสโมสรที่มี 14 ฤดูกาลในระดับนี้?",
    "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_en": "What was the position in 1959-1960 for the Sporting De Braga club?",
    "question_th": "ตำแหน่งอะไรในปี 1959-1960 ให้กับสโมสรสปอร์ติ้ง เดอ บรากา?",
    "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_en": "What is the \"season joined league\" for the club that had 15 seasons at this level?",
    "question_th": "\"ฤดูกาลที่เข้าร่วมลีก\" สำหรับสโมสรที่มี 15 ฤดูกาลในระดับนี้คืออะไร?",
    "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_en": "What country has a score of 71-66-72-72=281?",
    "question_th": "ประเทศใดมีคะแนน 71-66-72-72=281?",
    "context": "CREATE TABLE table_name_79 (country VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT SUM(money___) AS £__ FROM table_name_90 WHERE player = \"payne stewart\"",
    "question_en": "What is the total amount of money that Payne Stewart has?",
    "question_th": "จำนวนเงินทั้งหมดที่ Payne Stewart มีคือเท่าไร?",
    "context": "CREATE TABLE table_name_90 (money___ INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_92 WHERE player = \"nick faldo\"",
    "question_en": "What country has player Nick Faldo?",
    "question_th": "นิค ฟัลโด มีผู้เล่นประเทศใดบ้าง?",
    "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_en": "What is the to par for the score 64-73-74-69=280?",
    "question_th": "คะแนนพาร์ 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_en": "What is the lowest rank for China Eastern Airlines, Korean Air with more passengers than 97,055?",
    "question_th": "อันดับต่ำสุดของ China Eastern Airlines, Korean Air ที่มีผู้โดยสารมากกว่า 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_en": "What is the smallest rank for passengers more than 73,754?",
    "question_th": "อันดับที่เล็กที่สุดสำหรับผู้โดยสารมากกว่า 73,754 คืออะไร?",
    "context": "CREATE TABLE table_name_45 (rank INTEGER, passengers INTEGER)"
  },
  {
    "answer": "SELECT carriers FROM table_name_19 WHERE rank = 20",
    "question_en": "Which carrier is ranked 20?",
    "question_th": "สายการบินใดอยู่ในอันดับที่ 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_en": "What is the highest rank when there are fewer than 124,296 passengers?",
    "question_th": "อันดับสูงสุดเมื่อมีผู้โดยสารน้อยกว่า 124,296 คนคืออะไร?",
    "context": "CREATE TABLE table_name_4 (rank INTEGER, passengers INTEGER)"
  },
  {
    "answer": "SELECT 2013 FROM table_name_76 WHERE tournament = \"grand slam tournaments\"",
    "question_en": "What's the 2013 result for the grand slam tournaments?",
    "question_th": "ผลการแข่งขันแกรนด์สแลมปี 2013 เป็นอย่างไรบ้าง",
    "context": "CREATE TABLE table_name_76 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2010 FROM table_name_20 WHERE 2006 = \"a\"",
    "question_en": "What's the 2010 result when 2006 is a?",
    "question_th": "ผลลัพธ์ปี 2010 คืออะไรเมื่อปี 2549 เป็น a",
    "context": "CREATE TABLE table_name_20 (Id VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_47 WHERE 2003 = \"a\"",
    "question_en": "What tournament has a 2003 of a?",
    "question_th": "การแข่งขันอะไรมี 2003 ของ?",
    "context": "CREATE TABLE table_name_47 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2007 FROM table_name_83 WHERE 2003 = \"a\"",
    "question_en": "What's the 2007 result when 2003 is a?",
    "question_th": "ผลลัพธ์ในปี 2550 คืออะไรเมื่อปี 2546 เป็น a",
    "context": "CREATE TABLE table_name_83 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_25 WHERE 2010 = \"2r\" AND 2013 = \"w\"",
    "question_en": "What's the 2011 result when 2010 is 2r and 2013 is w?",
    "question_th": "ผลลัพธ์ปี 2011 คืออะไรเมื่อปี 2010 คือ 2r และ 2013 คือ w",
    "context": "CREATE TABLE table_name_25 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2005 FROM table_name_64 WHERE 2001 = \"sf\"",
    "question_en": "What's the 2005 result when 2001 is sf?",
    "question_th": "ผลลัพธ์ในปี 2548 คืออะไรเมื่อปี 2544 เป็น 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_en": "Which Binibining Pilipinas-World has a Second runner-up of sonia santiago?",
    "question_th": "Binibining Pilipinas-World คนไหนได้รองอันดับสองจาก 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_en": "Which Year has a Binibining Pilipinas International of alma concepcion?",
    "question_th": "ปีใดที่มี Binibining Pilipinas International ของ 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_en": "Which Binibining Pilipinas International has a Binibining Pilipinas-World of sharmaine gutierrez?",
    "question_th": "Binibining Pilipinas International ใดที่มี 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 • houston, tx\"",
    "question_en": "Which Result has a Site of rice stadium • houston, tx?",
    "question_th": "ผลลัพธ์ใดมีที่ตั้งของสนามกีฬาข้าว • ฮิวสตัน, เท็กซัส?",
    "context": "CREATE TABLE table_name_9 (result VARCHAR, site VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_29 WHERE site = \"razorback stadium • fayetteville, ar\" AND date = \"october 7, 1967\"",
    "question_en": "What Opponent has a Site of razorback stadium • fayetteville, ar, and a Date of october 7, 1967?",
    "question_th": "ฝ่ายตรงข้ามคนใดที่มีที่ตั้งของสนามเรเซอร์แบ็ค • ฟาเยตต์วิลล์ อาร์ และวันที่ 7 ตุลาคม พ.ศ. 2510?",
    "context": "CREATE TABLE table_name_29 (opponent VARCHAR, site VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_63 WHERE site = \"war memorial stadium • little rock, ar\" AND result = \"l6–7\"",
    "question_en": "What Opponent has a Site of war memorial stadium • little rock, ar, and a Result of l6–7?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีที่ตั้งของสนามกีฬาอนุสรณ์สงคราม • หินก้อนเล็ก ar และผลลัพธ์ของ l6–7?",
    "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_en": "What Result has a Date of october 14, 1967?",
    "question_th": "ผลลัพธ์อะไรมีวันที่ 14 ตุลาคม 2510?",
    "context": "CREATE TABLE table_name_86 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_13 WHERE result = \"l12–21\"",
    "question_en": "What Attendance has a Result of l12–21?",
    "question_th": "ผู้เข้าร่วมมีผลคะแนน l12–21 อะไรบ้าง",
    "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_en": "What Site has Attendance of 53,000, and a Date of october 21, 1967?",
    "question_th": "ไซต์ใดมีผู้เข้าร่วม 53,000 คน และวันที่ 21 ตุลาคม 2510",
    "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_en": "What region is the toshiba emi label with a cd format?",
    "question_th": "ฉลาก toshiba emi ที่มีรูปแบบซีดีคือภูมิภาคใด",
    "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_en": "What is the dage of catalog asw 28033?",
    "question_th": "แคตตาล็อก asw 28033 มีอายุเท่าใด",
    "context": "CREATE TABLE table_name_68 (date VARCHAR, catalog VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_70 WHERE region = \"japan\"",
    "question_en": "What is the date with a Japan region?",
    "question_th": "ภูมิภาคญี่ปุ่นคือวันที่เท่าไหร่?",
    "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_en": "What region has a lp format on 4 August 2008?",
    "question_th": "ภูมิภาคใดมีรูปแบบ lp ในวันที่ 4 สิงหาคม 2551",
    "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_en": "What region is on 11 August 2008?",
    "question_th": "วันที่ 11 สิงหาคม 2551 ภูมิภาคใด?",
    "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_en": "What is the position with a neutral H/A/N and more than 2 innings?",
    "question_th": "ตำแหน่งที่มี H/A/N ที่เป็นกลางและมากกว่า 2 อินนิ่งคือตำแหน่งใด?",
    "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_en": "Which venue has a neutral H/A/N, lower than position 3 and a score of 141?",
    "question_th": "สถานที่ใดมี H/A/N ที่เป็นกลาง ต่ำกว่าอันดับ 3 และมีคะแนน 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*♠\"",
    "question_en": "Which H/A/N has a score of 105*♠?",
    "question_th": "H/A/N ใดมีคะแนน 105* ♣?",
    "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_en": "What is the average goals scored when less than 34 were played and there were more than 2 draws?",
    "question_th": "ประตูเฉลี่ยที่ทำได้เมื่อเล่นน้อยกว่า 34 และเสมอกันมากกว่า 2 ครั้งคือเท่าไร?",
    "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_en": "What is the average goals scored of the team who scored 44 points and placed higher than 5?",
    "question_th": "คะแนนเฉลี่ยของทีมที่ทำคะแนนได้ 44 คะแนนและอันดับที่สูงกว่า 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_en": "What is the lowest place of the team who conceded 36 goals and lost more than 6 times?",
    "question_th": "อันดับต่ำสุดของทีมที่เสีย 36 ประตู แพ้เกิน 6 ครั้ง คืออันดับไหน?",
    "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_en": "what is games when the losses is more than 1, percent is 0.5 and wins is 2?",
    "question_th": "เกมคืออะไรเมื่อแพ้มากกว่า 1 เปอร์เซ็นต์คือ 0.5 และชนะคือ 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_en": "what is the average wins when percent is more than 0.4 and teams is chargers~?",
    "question_th": "ค่าเฉลี่ยชนะเมื่อเปอร์เซ็นต์มากกว่า 0.4 และทีมชาร์จอยู่เป็นเท่าไหร่~?",
    "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_en": "What is the average wins when teams is lions and the percent is more than 0?",
    "question_th": "ชัยชนะโดยเฉลี่ยเมื่อทีมเป็นสิงโตและเปอร์เซ็นต์มากกว่า 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_en": "what is the highest wins when the losses is less than 1, team is rams and the games is more than 8?",
    "question_th": "อะไรคือชัยชนะสูงสุดเมื่อแพ้น้อยกว่า 1 ทีมเป็นแรมส์ และเกมมีมากกว่า 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_en": "What category is Matthew Barton?",
    "question_th": "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_en": "When did the ship commissioned in November 1975 with a bow number of ps-18 launch?",
    "question_th": "เมื่อใดที่เรือลำนี้เข้าประจำการในเดือนพฤศจิกายน พ.ศ. 2518 ด้วยการยิงธนูหมายเลข ps-18?",
    "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_en": "When did the ship that was commissioned July 1948 with a bow number of ps-31 launch?",
    "question_th": "เรือที่เข้าประจำการในเดือนกรกฎาคม พ.ศ. 2491 ด้วยการยิงธนูหมายเลข ps-31 เมื่อใด",
    "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_en": "When was the ship BRP Miguel Malvar commissioned?",
    "question_th": "เรือ BRP Miguel Malvar เข้าประจำการเมื่อใด",
    "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_en": "What is the population of northfield parish that has an area less than 342.4?",
    "question_th": "ตำบลนอร์ธฟิลด์ที่มีพื้นที่น้อยกว่า 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_en": "What is the population of the parish with a census ranking of 579 of 5,008?",
    "question_th": "ประชากรในตำบลที่มีอันดับการสำรวจสำมะโนประชากร 579 คนจาก 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_en": "What is the population of the parish that has an area of 304.06?",
    "question_th": "ตำบลที่มีพื้นที่ 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_en": "What is the earliest year the world junior championships has 1500 m notes?",
    "question_th": "World Junior Championships มีโน้ต 1,500 ม. เร็วที่สุดในปีใด?",
    "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_en": "Which venue had 5000 m notes in 2009 with a 1st position?",
    "question_th": "สถานที่ใดมีธนบัตร 5,000 เมตรในปี 2552 และอันดับที่ 1",
    "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_en": "What is the average year with 7th (heats) position?",
    "question_th": "ปีเฉลี่ยที่มีตำแหน่งที่ 7 (ฮีต) คือเท่าไร?",
    "context": "CREATE TABLE table_name_50 (year INTEGER, position VARCHAR)"
  },
  {
    "answer": "SELECT method FROM table_name_55 WHERE opponent = \"kenneth allen\"",
    "question_en": "What Method was used with opponent Kenneth Allen?",
    "question_th": "เคนเนธ อัลเลน ฝ่ายตรงข้ามใช้วิธีใด",
    "context": "CREATE TABLE table_name_55 (method VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT remarks FROM table_name_38 WHERE country_of_origin = \"norway\"",
    "question_en": "What is the remark for Norway?",
    "question_th": "ข้อสังเกตสำหรับนอร์เวย์คืออะไร?",
    "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_en": "How many people attended the game against the Kaizer Chiefs?",
    "question_th": "มีกี่คนที่เข้าร่วมเกมกับไกเซอร์ ชีฟ?",
    "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_en": "What is the result F-A with an H/A of h and more than 31,727 attending?",
    "question_th": "ผลลัพธ์ของ FA ที่มี H/A เป็น h และมีผู้เข้าร่วมมากกว่า 31,727 คนเป็นอย่างไร?",
    "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_en": "What is Player, when College/Junior/Club Team (League) is \"Val d'Or Foreurs ( QMJHL )\"?",
    "question_th": "ผู้เล่นคืออะไร เมื่อทีมวิทยาลัย/จูเนียร์/คลับ (ลีก) คือ \"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_en": "What is the Position, when Player is \"Magnus Nygren\"?",
    "question_th": "ตำแหน่งเมื่อผู้เล่นคือ \"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_en": "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 )\"?",
    "question_th": "ตำแหน่งคืออะไร เมื่อรอบน้อยกว่า 5 เมื่อสัญชาติคือ \"แคนาดา\" และเมื่อทีมวิทยาลัย/จูเนียร์/คลับ (ลีก) คือ \"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_en": "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\"?",
    "question_th": "ทีมวิทยาลัย/จูเนียร์/คลับ (ลีก) คืออะไร เมื่อตำแหน่งคือ \"ฝ่ายป้องกัน\" เมื่อสัญชาติคือ \"แคนาดา\" เมื่อรอบน้อยกว่า 5 และเมื่อผู้เล่นคือ \"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_en": "count the  the average Total of ian baker-finch?",
    "question_th": "นับผลรวมเฉลี่ยของ 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_en": "Which Country has a Year(s) won of 1963?",
    "question_th": "ประเทศใดชนะปี 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_en": "What is the money for the player with a score of 68-69-67-73=277?",
    "question_th": "ผู้เล่นที่มีคะแนน 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_en": "What is the to par of the player with a 72-71-65-69=277 score?",
    "question_th": "แต้มพาร์ของผู้เล่นที่มีคะแนน 72-71-65-69=277 คืออะไร?",
    "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_en": "What is the country of the player with playoff money and a score of 66-67-70-67=270?",
    "question_th": "ผู้เล่นที่ได้เงินเพลย์ออฟคือประเทศอะไร และคะแนน 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_en": "How much money does the player with a score of 76-70-65-68=279 have?",
    "question_th": "ผู้เล่นที่มีคะแนน 76-70-65-68=279 มีเงินเท่าไหร่?",
    "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_en": "What is the score of player darren clarke, who has $112,500?",
    "question_th": "นักเตะดาร์เรน คลาร์กที่มีเงิน 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_en": "What is the to par of player notah begay iii from the United States?",
    "question_th": "อะไรคือสิ่งที่จะได้เปรียบของผู้เล่น notah begay iii จากสหรัฐอเมริกา?",
    "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_en": "What song has a draw more than 4 in 1st place?",
    "question_th": "เพลงไหนโดนใจมากกว่า 4 อันดับ 1 ?",
    "context": "CREATE TABLE table_name_65 (song VARCHAR, draw VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT weight FROM table_name_96 WHERE name = \"ádám steinmetz category:articles with hcards\"",
    "question_en": "Name the Weight of ádám steinmetz category:articles with hcards?",
    "question_th": "ตั้งชื่อน้ำหนักของหมวดหมู่ ádám steinmetz: บทความที่มี hcards?",
    "context": "CREATE TABLE table_name_96 (weight VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT weight FROM table_name_10 WHERE name = \"balázs hárai category:articles with hcards\"",
    "question_en": "Name the Weight which has a Name of balázs hárai category:articles with hcards?",
    "question_th": "ตั้งชื่อน้ำหนักซึ่งมีชื่ออยู่ในหมวดหมู่ balázs hárai:บทความที่มี hcards?",
    "context": "CREATE TABLE table_name_10 (weight VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT 2012 AS _club FROM table_name_23 WHERE name = \"norbert hosnyánszky category:articles with hcards\"",
    "question_en": "Name the 012 club which has of norbert hosnyánszky category:articles with hcards?",
    "question_th": "ตั้งชื่อสโมสร 012 ซึ่งมีหมวดหมู่ของ norbert hosnyánszky:บทความที่มี 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_en": "What is the lowest Against, when Venue is \"Twickenham , London\", when Status is \"Six Nations\", and when Opposing Teams is \"France\"?",
    "question_th": "อะไรคือสิ่งที่ต่ำที่สุดในการต่อต้าน เมื่อสถานที่คือ \"ทวิคเกนแฮม ลอนดอน\" เมื่อสถานะคือ \"Six Nations\" และเมื่อทีมตรงข้ามคือ \"ฝรั่งเศส\"?",
    "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_en": "What is the total number of Against, when Date is \"27/02/2005\"?",
    "question_th": "จำนวนต่อต้านทั้งหมดคือเท่าไร เมื่อวันที่คือ \"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_en": "What is the highest Against, when Date is \"27/02/2005\"?",
    "question_th": "ค่าสูงสุดต่อต้านเมื่อวันที่คือ \"27/02/2548\"?",
    "context": "CREATE TABLE table_name_29 (against INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_16 WHERE opposing_teams = \"italy\"",
    "question_en": "What is Status, when Opposing Teams is \"Italy\"?",
    "question_th": "สถานะคืออะไร เมื่อทีมตรงข้ามคือ \"อิตาลี\"?",
    "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_en": "Which Name has Apparent Magnitude smaller than 11.4, and R.A. (J2000) of 04h17m35.8s?",
    "question_th": "ชื่อใดที่มีขนาดปรากฏน้อยกว่า 11.4 และ RA (J2000) ที่ 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_en": "Which R.A. (J2000) has a Name of ngc 1543?",
    "question_th": "RA (J2000) ใดมีชื่อ 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 ± 3\"",
    "question_en": "Which Dec. (J2000) has a Redshift (km/ s) of 1331 ± 3?",
    "question_th": "ธันวาคมใด (J2000) มี Red Shift (กม./วินาที) เท่ากับ 1331 ± 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_en": "Which R.A. (J2000) has a Name of ngc 1515?",
    "question_th": "RA (J2000) ใดมีชื่อ 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__ = \"°07′06″\"",
    "question_en": "Which R.A. (J2000) has Apparent Magnitude of 11.7, and Dec. (J2000) of °07′06″?",
    "question_th": "RA (J2000) ใดมีขนาดปรากฏที่ 11.7 และ Dec. (J2000) ที่ °07′06″",
    "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_en": "Which player had a To par of +11?",
    "question_th": "ผู้เล่นคนไหนมีพาร์ถึง +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_en": "Who won in 1997 with a finish of t48?",
    "question_th": "ใครชนะในปี 1997 ด้วยการจบสกอร์ 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_en": "What player from the United States had a total of 297?",
    "question_th": "นักเตะคนไหนจากอเมริกามีทั้งหมด 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_en": "Which country won in 1988?",
    "question_th": "ประเทศใดชนะในปี 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_en": "Which party had a term start of 5 august 1999?",
    "question_th": "พรรคใดมีวาระเริ่มตั้งแต่วันที่ 5 สิงหาคม 2542?",
    "context": "CREATE TABLE table_name_95 (party VARCHAR, term_start VARCHAR)"
  },
  {
    "answer": "SELECT term_end FROM table_name_40 WHERE minister = \"danny ayalon\"",
    "question_en": "What term end had minister Danny Ayalon?",
    "question_th": "รัฐมนตรี 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_en": "Which goverment had a party of yisrael beiteinu?",
    "question_th": "รัฐบาลใดมีพรรคอิสราเอลเบเทนู?",
    "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_en": "Who was the minister of the labor party and had 26 goverments?",
    "question_th": "ใครเป็นรัฐมนตรีพรรคแรงงานและมีรัฐบาล 26 คณะ?",
    "context": "CREATE TABLE table_name_82 (minister VARCHAR, party VARCHAR, governments VARCHAR)"
  },
  {
    "answer": "SELECT category FROM table_name_44 WHERE year < 2011",
    "question_en": "What is the category that came before 2011?",
    "question_th": "หมวดหมู่ที่มาก่อนปี 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_en": "What is the year of the Premios Carlos Gardel 2009 award?",
    "question_th": "รางวัล Premios Carlos Gardel 2009 จัดขึ้นในปีใด",
    "context": "CREATE TABLE table_name_58 (year VARCHAR, award VARCHAR)"
  },
  {
    "answer": "SELECT height FROM table_name_25 WHERE contestant = \"andrea suarez lazaro\"",
    "question_en": "What is Andrea Suarez Lazaro's height?",
    "question_th": "อันเดรีย ซัวเรซ ลาซาโรมีส่วนสูงเท่าไหร่?",
    "context": "CREATE TABLE table_name_25 (height VARCHAR, contestant VARCHAR)"
  },
  {
    "answer": "SELECT height FROM table_name_95 WHERE contestant = \"niurbi encarnación ynoa\"",
    "question_en": "What is niurbi encarnación ynoa's height?",
    "question_th": "ความสูงของ niurbi encarnación ynoa คืออะไร?",
    "context": "CREATE TABLE table_name_95 (height VARCHAR, contestant VARCHAR)"
  },
  {
    "answer": "SELECT province, _community FROM table_name_13 WHERE hometown = \"jamao afuera\"",
    "question_en": "What is the province for Jamao Afuera?",
    "question_th": "จาเมา อาฟวยรา อยู่จังหวัดอะไร?",
    "context": "CREATE TABLE table_name_13 (province VARCHAR, _community VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT geographical_regions FROM table_name_1 WHERE hometown = \"imbert\"",
    "question_en": "What is the geographical region for hometown Imbert?",
    "question_th": "ภูมิภาคทางภูมิศาสตร์ของบ้านเกิดของอิมเบิร์ตคืออะไร?",
    "context": "CREATE TABLE table_name_1 (geographical_regions VARCHAR, hometown VARCHAR)"
  },
  {
    "answer": "SELECT name_of_ship FROM table_name_64 WHERE date = \"20february1942\"",
    "question_en": "What is the Name of the Ship attacked on 20February1942?",
    "question_th": "เรือที่ถูกโจมตีเมื่อวันที่ 20 กุมภาพันธ์ พ.ศ. 2485 ชื่ออะไร",
    "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_en": "Which ship was sunk at 01:00?",
    "question_th": "เรือลำใดจมเมื่อเวลา 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_en": "What is the to par for the 68-72-73=213 score?",
    "question_th": "สกอร์ 68-72-73=213 ได้พาร์เท่าไหร่?",
    "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_en": "What is the to par for the 69-70-72=211 score?",
    "question_th": "คะแนนพาร์ 69-70-72=211 คืออะไร?",
    "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_en": "What is the to par for the United States with a 67-71-73=211 score?",
    "question_th": "พาร์สำหรับสหรัฐอเมริกาด้วยคะแนน 67-71-73=211 คืออะไร?",
    "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_en": "What country has t4 place and a 67-71-73=211 score?",
    "question_th": "ประเทศใดมีอันดับ T4 และคะแนน 67-71-73=211?",
    "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_en": "What is the to par for Australia and a 73-69-71=213 score?",
    "question_th": "ออสเตรเลียได้พาร์เท่าไหร่ และสกอร์ 73-69-71=213 คืออะไร?",
    "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_en": "What Location has a Partner of app, a Population Served larger than 2000, and a Design flow (LPM) of 375?",
    "question_th": "สถานที่ใดมีพาร์ทเนอร์ของแอป จำนวนประชากรที่ให้บริการมากกว่า 2,000 คน และขั้นตอนการออกแบบ (LPM) 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_en": "What Construction Start has an Inauguration Date of 2010 june?",
    "question_th": "การก่อสร้างใดที่เริ่มมีวันเปิดตัวในเดือนมิถุนายน 2553?",
    "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_en": "What Construction Start has a Design flow (LPM) of 1300?",
    "question_th": "การเริ่มต้นการก่อสร้างใดมี Design Flow (LPM) อยู่ที่ 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_en": "What Location has a Design flow (LPM) smaller than 1900, and a Construction Start of 2006 june?",
    "question_th": "สถานที่ใดมี Design Flow (LPM) เล็กกว่าปี 1900 และเริ่มการก่อสร้างในเดือนมิถุนายน 2549",
    "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_en": "What Partner has a Construction Start of 2008 january?",
    "question_th": "พันธมิตรรายใดที่เริ่มก่อสร้างในเดือนมกราคม 2551?",
    "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_en": "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?",
    "question_th": "ขั้นตอนการออกแบบทั้งหมด (LPM) กับพันธมิตรของแอปคือเท่าไร เริ่มการก่อสร้างเดือนมกราคม 2551 และจำนวนประชากรที่ให้บริการมากกว่า 3,500 คน",
    "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_en": "What is Sandy Lyle's To Par?",
    "question_th": "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_en": "What is Australia's score where they were in place t1?",
    "question_th": "คะแนนของออสเตรเลียที่พวกเขาอยู่อันดับที่ 1 เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_43 (score VARCHAR, country VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_16 WHERE country = \"wales\"",
    "question_en": "What place has Wales as a country?",
    "question_th": "เวลส์เป็นประเทศสถานที่ใด",
    "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_en": "What is the To Par of Peter Senior from Australia?",
    "question_th": "To Par ของ Peter Senior จากออสเตรเลียคืออะไร?",
    "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_en": "What is the score of Howard Clark from England with a To Par of +1?",
    "question_th": "Howard Clark จากอังกฤษมี To Par ที่ +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_en": "What is the score of the player with a To Par of +1 from Spain?",
    "question_th": "นักเตะที่มี To Par +1 จากสเปนมีสกอร์เท่าไหร่?",
    "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_en": "Who won the event against U.S.A.?",
    "question_th": "ใครชนะการแข่งขันกับสหรัฐอเมริกา?",
    "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_en": "Where was the match on 10/11/2001 against 15?",
    "question_th": "นัดที่ 10/11/2544 แข่งกับ 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_en": "What is the lowest against team in the Six Nations status in Lansdowne Road, Dublin?",
    "question_th": "อะไรคือทีมที่ต่ำที่สุดเมื่อเทียบกับทีมในสถานะ Six Nations ใน 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_en": "What 2008 has 1r as a 2010, A as the 2007, and 1r as the 2009?",
    "question_th": "อะไรในปี 2008 ที่มี 1r เป็นปี 2010, A เป็นปี 2007 และ 1r เป็นปี 2009",
    "context": "CREATE TABLE table_name_54 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2008 FROM table_name_40 WHERE 2007 = \"a\" AND 2010 = \"2r\"",
    "question_en": "What 2008 has A as the 2007, and 2r as the 2010?",
    "question_th": "ปี 2008 ใดมี A เป็นปี 2007 และ 2r เป็นปี 2010",
    "context": "CREATE TABLE table_name_40 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2009 FROM table_name_58 WHERE 2011 = \"lq\"",
    "question_en": "What 2009 has lq as the 2011?",
    "question_th": "ปี 2552 อะไรมี lq เท่ากับปี 2554?",
    "context": "CREATE TABLE table_name_58 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2009 FROM table_name_33 WHERE 2007 = \"345\"",
    "question_en": "What 2009 has 345 as the 2007?",
    "question_th": "อะไร 2009 มี 345 เป็น 2007?",
    "context": "CREATE TABLE table_name_33 (Id VARCHAR)"
  },
  {
    "answer": "SELECT nation FROM table_name_24 WHERE sport = \"weightlifting\" AND pinyin = \"kùkè qúndǎo\"",
    "question_en": "What nation has a sport of weightlifting and a pinyin of kùkè qúndǎo?",
    "question_th": "ประเทศใดมีกีฬายกน้ำหนักและมีพินอินว่า kùkè qúndǎo?",
    "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_en": "What day did Glentoran play at Windsor Park, Belfast?",
    "question_th": "Glentoran เล่นที่ 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_en": "What day was the score 1-0?",
    "question_th": "สกอร์ 1-0 วันไหน?",
    "context": "CREATE TABLE table_name_39 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_40 WHERE score = \"2-1\"",
    "question_en": "Which team scored 2-1?",
    "question_th": "ทีมไหนทำสกอร์ 2-1?",
    "context": "CREATE TABLE table_name_40 (team VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT 1998 FROM table_name_60 WHERE 2003 = \"2r\"",
    "question_en": "What is the 1998 value with 2r in 2003?",
    "question_th": "ค่าปี 1998 กับ 2r ในปี 2003 คืออะไร?",
    "context": "CREATE TABLE table_name_60 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2004 FROM table_name_60 WHERE 1994 = \"2r\"",
    "question_en": "What is the 2004 value with 2r in 1994?",
    "question_th": "ค่า 2004 กับ 2r ในปี 1994 คืออะไร?",
    "context": "CREATE TABLE table_name_60 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2003 FROM table_name_10 WHERE 1994 = \"1r\" AND tournament = \"french open\"",
    "question_en": "What is the 2003 value for the french open, which has a 1r in 1994?",
    "question_th": "ค่าเฟรนช์โอเพ่นในปี 2003 ซึ่งมี 1r ในปี 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_en": "What is the 2003 value with a 1r in 1998, a 14 in 1994, and a 7-12 career?",
    "question_th": "มูลค่าปี 2003 ด้วย 1r ในปี 1998, 14 ในปี 1994 และอาชีพ 7-12 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_50 (career VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_50 WHERE fin_pos = 8",
    "question_en": "Which driver finished in position 8?",
    "question_th": "นักแข่งคนไหนจบอันดับที่ 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_en": "What is the average grid for Marco Andretti with a finishing position higher than 19?",
    "question_th": "ตารางเฉลี่ยของ Marco Andretti ที่มีตำแหน่งจบสกอร์สูงกว่า 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_en": "What is Car number 98's lowest grid?",
    "question_th": "ตารางต่ำสุดของรถหมายเลข 98 คืออะไร?",
    "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_en": "What is the highest Laps Led with a grid of less than 4 and a finishing position of 15?",
    "question_th": "รอบนำสูงสุดที่มีตารางน้อยกว่า 4 และตำแหน่งจบที่ 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_en": "What is the average Qiangshu lower than rank 4 and less than 9.22 Jianshu?",
    "question_th": "เฉิงซูโดยเฉลี่ยต่ำกว่าอันดับ 4 และน้อยกว่า 9.22 เจี้ยนซูเป็นเท่าใด",
    "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_en": "What is the average Jianshu higher than rank 2, with a Qiangshu smaller than 9.85?",
    "question_th": "อะไรคือค่าเฉลี่ยของ Jianshu ที่สูงกว่าอันดับ 2 โดยที่ Qiangshu น้อยกว่า 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_en": "On what date did the woman married to Louis II become consort?",
    "question_th": "ผู้หญิงที่แต่งงานกับพระเจ้าหลุยส์ที่ 2 กลายเป็นมเหสีเมื่อใด",
    "context": "CREATE TABLE table_name_86 (became_consort VARCHAR, spouse VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_8 WHERE record = \"32–31–6\"",
    "question_en": "What is the Date of the game when the Record is 32–31–6?",
    "question_th": "วันที่ของเกมคือเมื่อใดที่สถิติคือ 32–31–6?",
    "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_en": "What is the Opponent at the Honda Center on March 29?",
    "question_th": "คู่ต่อสู้ที่ศูนย์ฮอนด้า วันที่ 29 มี.ค. คืออะไร?",
    "context": "CREATE TABLE table_name_66 (opponent VARCHAR, arena VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_3 WHERE record = \"34–31–6\"",
    "question_en": "What is the Opponent when the Record is 34–31–6?",
    "question_th": "ฝ่ายตรงข้ามคืออะไรเมื่อบันทึกคือ 34–31–6?",
    "context": "CREATE TABLE table_name_3 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_13 WHERE away_team = \"minehead\"",
    "question_en": "What is Date, when Away Team is \"Minehead\"?",
    "question_th": "วันที่คือเมื่อทีมเยือนคือ \"ไมน์เฮด\"?",
    "context": "CREATE TABLE table_name_13 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_7 WHERE away_team = \"barnet\"",
    "question_en": "What is Date, when Away Team is \"Barnet\"?",
    "question_th": "วันที่คือเมื่อทีมเยือนคือ \"บาร์เน็ต\"?",
    "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_en": "What is Tie no, when Home Team is \"Hull City\"?",
    "question_th": "เสมอไม่ คืออะไร เมื่อทีมเจ้าบ้านคือ ฮัลล์ ซิตี้?",
    "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_en": "What is Away Team, when Home Team is \"Swindon Town\"?",
    "question_th": "ทีมเยือนคืออะไร เมื่อทีมเจ้าบ้านคือ \"สวินดอน ทาวน์\"?",
    "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_en": "What is Away Team, when Home Team is \"Boston United\"?",
    "question_th": "ทีมเยือนคืออะไร เมื่อทีมเจ้าบ้านคือ \"บอสตัน ยูไนเต็ด\"?",
    "context": "CREATE TABLE table_name_30 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_73 WHERE player = \"nick faldo\"",
    "question_en": "What was Nick Faldo's score?",
    "question_th": "คะแนนของ Nick Faldo คืออะไร?",
    "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_en": "What country placed t8 and scored 71-71-71=213?",
    "question_th": "ประเทศใดวาง T8 และได้คะแนน 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_en": "What was the place when the score was 67-73-73=213?",
    "question_th": "คะแนนอยู่ที่ 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_en": "What was the place when the score was 70-69-74=213?",
    "question_th": "คะแนนอยู่ที่ 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_en": "What was United States place when the player was Fred Couples?",
    "question_th": "สถานที่ใดที่สหรัฐอเมริกาเมื่อผู้เล่นเป็น 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_en": "WHAT IS THE TOURNAMENT WITH 2008 AND 2011 WITH A?",
    "question_th": "การแข่งขันในปี 2008 และ 2011 กับ A คืออะไร?",
    "context": "CREATE TABLE table_name_82 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2012 FROM table_name_35 WHERE 2005 = \"1r\"",
    "question_en": "WHAT IS THE 2012 WITH 2005 OF 1R?",
    "question_th": "2012 กับ 2005 ของ 1R คืออะไร?",
    "context": "CREATE TABLE table_name_35 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2010 FROM table_name_93 WHERE 2012 = \"2r\" AND tournament = \"miami masters\"",
    "question_en": "WHAT IS THE 2010 WITH 2012 OF 2R AT MIAMI MASTERS?",
    "question_th": "ปี 2010 กับ 2012 ของ 2R ที่ 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_en": "WHAT IS THE 2008 WITH TOURNAMENT OF WIN-LOSS, AND 2005 A?",
    "question_th": "การแข่งขัน WIN-LOSS ปี 2008 และปี 2005 A คืออะไร?",
    "context": "CREATE TABLE table_name_84 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2007 FROM table_name_5 WHERE tournament = \"madrid masters\"",
    "question_en": "WHAT IS THE 2007 AT MADRID MASTERS?",
    "question_th": "2007 ที่ MADRID MASTERS คืออะไร?",
    "context": "CREATE TABLE table_name_5 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_67 WHERE 2007 = \"a\" AND 2008 = \"3r\"",
    "question_en": "WHAT IS THE 2011 WITH 2007 AT A AND2 008 AT 3R?",
    "question_th": "ปี 2011 กับปี 2007 ที่ A AND2 008 ที่ 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_en": "What game was released before 2010 with a Metacritic of 85/100?",
    "question_th": "เกมใดที่เปิดตัวก่อนปี 2010 โดยมี Metacritic 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_en": "What is the Metacritic released after 2005, with a Platform of playstation 3 and a GameRankings of 84.44%?",
    "question_th": "Metacritic คืออะไรที่เปิดตัวหลังปี 2548 โดยมีแพลตฟอร์ม PlayStation 3 และ GameRankings 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_en": "What is the GameRankings Released of 2011 with a Metacritic of 83/100?",
    "question_th": "GameRankings ที่เปิดตัวในปี 2554 โดยมี Metacritic อยู่ที่ 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_en": "How many weeks have an attendance less than 26,048?",
    "question_th": "กี่สัปดาห์มีผู้เข้าร่วมน้อยกว่า 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_en": "What was the record when the Denver Broncos played the New York Titans at Bears Stadium?",
    "question_th": "อะไรคือสถิติเมื่อเดนเวอร์ บรองโกส์ เล่นกับนิวยอร์ก ไททันส์ที่สนามแบร์ส สเตเดียม?",
    "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_en": "What was the result of the match on December 9, 1962?",
    "question_th": "ผลการแข่งขันวันที่ 9 ธันวาคม 2505 เป็นอย่างไร?",
    "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_en": "What is To par, when Score is \"70-68-68-71=277\"?",
    "question_th": "To par คืออะไร เมื่อสกอร์คือ \"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_en": "What is the score of the match on 12 September 1990?",
    "question_th": "แมตช์วันที่ 12 กันยายน 1990 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_29 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT league_from FROM table_name_87 WHERE position = \"g\"",
    "question_en": "For what league was the player in G position drafted?",
    "question_th": "ผู้เล่นในตำแหน่ง G ถูกดราฟท์ให้กับลีกใด?",
    "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_en": "What pick number was player Greg McKegg?",
    "question_th": "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_en": "What Place has a Player of tony jacklin?",
    "question_th": "ผู้เล่นของ Tony Jacklin มีสถานที่ใดบ้าง?",
    "context": "CREATE TABLE table_name_28 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_49 WHERE player = \"bernhard langer\"",
    "question_en": "What Place has a Player of bernhard langer?",
    "question_th": "ผู้เล่นของ Bernhard Langer มีที่ไหนบ้าง?",
    "context": "CREATE TABLE table_name_49 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_86 WHERE country = \"west germany\"",
    "question_en": "What Player has a Country of west germany?",
    "question_th": "ผู้เล่นคนใดมีประเทศเยอรมนีตะวันตก?",
    "context": "CREATE TABLE table_name_86 (player VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_20 WHERE to_par = \"–2\"",
    "question_en": "What Player has a To par of –2?",
    "question_th": "ผู้เล่นคนไหนมีพาร์ถึง –2?",
    "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_en": "What To par has a Place of t2, and a Country of united states?",
    "question_th": "What To par มีสถานที่ t2 และประเทศของสหรัฐอเมริกา?",
    "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_en": "What Score has a Place of t2, and a Country of england?",
    "question_th": "คะแนนใดที่มีอันดับ t2 และประเทศอังกฤษ",
    "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_en": "How many tries were there for club cwmtwrch rfc?",
    "question_th": "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_en": "What is the draw when the tries against was 69?",
    "question_th": "เสมอเมื่อพยายามต่อต้านคือ 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_en": "What is the try bonus when the loss is 13 and the draw is 2?",
    "question_th": "โบนัสการลองคืออะไรเมื่อแพ้คือ 13 และเสมอคือ 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_en": "What is the average Finish, when Team is \"Buck Baker\", and when Start is less than 13?",
    "question_th": "การเข้าเส้นชัยโดยเฉลี่ยเมื่อทีมคือ \"Buck Baker\" และเมื่อ Start น้อยกว่า 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_en": "What is the average Year, when Start is \"11\"?",
    "question_th": "ปีเฉลี่ยคือเท่าไร เมื่อเริ่มต้นคือ \"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_en": "What is the lowest Year, when Finish is \"29\", and when Start is less than 24?",
    "question_th": "ปีที่ต่ำสุดคือเมื่อสิ้นสุดคือ \"29\" และเมื่อเริ่มต้นน้อยกว่า 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_en": "What is the highest Year, when Finish is \"51\", and when Start is less than 64?",
    "question_th": "ปีสูงสุดคือปีใด เมื่อเสร็จสิ้นคือ \"51\" และเมื่อเริ่มต้นน้อยกว่า 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_en": "What is Manufacturer, when Finish is greater than 29, when Start is less than 23, and when Year is \"1973\"?",
    "question_th": "ผู้ผลิตคืออะไร เมื่อ Finish มากกว่า 29 เมื่อ Start น้อยกว่า 23 และเมื่อปีคือ \"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_en": "What is the opposing team with 11 against?",
    "question_th": "ทีมตรงข้ามที่มี 11 ต่อคืออะไร?",
    "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_en": "What is the venue where Argentina was the opposing team in a test match?",
    "question_th": "สนามที่อาร์เจนตินาเป็นทีมตรงข้ามในนัดทดสอบคือที่ไหน?",
    "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_en": "What is the status of the game against France with more than 16 against?",
    "question_th": "สถานะของเกมกับฝรั่งเศสที่เกิน 16 เป็นอย่างไร?",
    "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_en": "On what date is there a status of Five Nations and an against of 23?",
    "question_th": "วันที่ใดที่สถานะเป็น Five Nations และต่อ 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_en": "What model has a number built smaller than 6.526, and the Chassis code w109.015?",
    "question_th": "รุ่นใดมีตัวเลขที่สร้างขึ้นน้อยกว่า 6.526 และรหัสแชสซี 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_en": "What was the record at Tiger Stadium?",
    "question_th": "สถิติที่ไทเกอร์ สเตเดี้ยม เป็นอย่างไรบ้าง?",
    "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_en": "What was the attendance on September 19, 1971, after week 1?",
    "question_th": "ผู้เข้าร่วมประชุมในวันที่ 19 กันยายน พ.ศ. 2514 หลังจากสัปดาห์ที่ 1 เป็นอย่างไรบ้าง",
    "context": "CREATE TABLE table_name_38 (attendance INTEGER, date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT bronze FROM table_name_32 WHERE rank = \"1\"",
    "question_en": "How many Bronze medals did the team ranked 1 win?",
    "question_th": "ทีมอันดับที่ 1 คว้าเหรียญทองแดงได้กี่เหรียญ?",
    "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_en": "What is the date for the MF position and player Jennison Myrie-Williams?",
    "question_th": "วันที่สำหรับตำแหน่ง MF และผู้เล่น 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_en": "What Goals has a Team of zamora, and Average larger than 0.89?",
    "question_th": "เป้าหมายใดมีทีมซาโมรา และค่าเฉลี่ยมากกว่า 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_en": "What is the sum of Goals win an Average larger than 1?",
    "question_th": "ผลรวมของเป้าหมายที่ชนะโดยเฉลี่ยมากกว่า 1 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_94 (goals VARCHAR, average INTEGER)"
  },
  {
    "answer": "SELECT MIN(matches) FROM table_name_26 WHERE goalkeeper = \"josé bermúdez\" AND goals > 18",
    "question_en": "What is the smallest Matches with a Goalkeeper of josé bermúdez, and Goals larger than 18?",
    "question_th": "นัดที่เล็กที่สุดกับผู้รักษาประตูของโฮเซ่ เบอร์มูเดซ และประตูที่มากกว่า 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_en": "What is the total of Matches with Goals of 18, and an Average larger than 0.55?",
    "question_th": "ผลรวมของแมตช์ที่มีประตู 18 ประตู และค่าเฉลี่ยมากกว่า 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_en": "What is the largest Average with Goals smaller than 34, Matches larger than 30, and a Team of cultural leonesa?",
    "question_th": "ค่าเฉลี่ยที่ใหญ่ที่สุดโดยมีเป้าหมายน้อยกว่า 34 นัดที่มากกว่า 30 และทีม 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_en": "Which To par has a Score of 78-74-71-75=298?",
    "question_th": "พาร์ใดมีคะแนน 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_en": "How much To par has a Country of united states, and a Money ($) of 90?",
    "question_th": "ประเทศของสหรัฐอเมริกามี To par เท่าไหร่ และเงิน ($) เท่ากับ 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 = \"£5,000\"",
    "question_en": "What is are the highest matches with £5,000 in prize money?",
    "question_th": "การแข่งขันสูงสุดที่มีเงินรางวัล 5,000 ปอนด์คืออะไร?",
    "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_en": "What is the prize money amount after match 1, with 102 new entries to the round?",
    "question_th": "จำนวนเงินรางวัลหลังแมตช์ที่ 1 เป็นจำนวนเท่าใด โดยมีผู้เข้าแข่งขันใหม่ 102 รายในรอบนี้",
    "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_en": "In what place did Darren Clarke finish?",
    "question_th": "ดาร์เรน คลาร์ก จบที่จุดไหน?",
    "context": "CREATE TABLE table_name_23 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_86 WHERE player = \"ernie els\"",
    "question_en": "What was Ernie Els's score?",
    "question_th": "คะแนนของ Ernie Els คืออะไร?",
    "context": "CREATE TABLE table_name_86 (score VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_29 WHERE player = \"tom lehman\"",
    "question_en": "In what place did Tom Lehman finish?",
    "question_th": "Tom Lehman จบที่จุดไหน?",
    "context": "CREATE TABLE table_name_29 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_59 WHERE score = 68 - 70 - 69 = 207",
    "question_en": "In what place did the golfer that scored 68-70-69=207 finish?",
    "question_th": "นักกอล์ฟที่ทำคะแนนได้ 68-70-69=207 จบการแข่งขันที่ใด",
    "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_en": "What were the highest laps for glenn seton gregg hansford?",
    "question_th": "อะไรคือรอบสูงสุดของ 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_en": "What driver had 101 laps?",
    "question_th": "นักแข่งคนไหนวิ่งได้ 101 รอบ?",
    "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_en": "Gary Barnett who has been in 0 FA Cups plays what position?",
    "question_th": "แกรี่ บาร์เน็ตต์ที่เคยอยู่ในเอฟเอ คัพ 0 สมัยเล่นตำแหน่งอะไร?",
    "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_en": "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?",
    "question_th": "ประตูลีกคัพสูงสุดเมื่อลงเล่นเอฟเอ คัพ 0 นัด และ MF คือตำแหน่ง โดยลงเล่นในลีก 1 นัด และประตูรวมน้อยกว่า 0 ประตูคือเท่าใด",
    "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_en": "How many FLT appearances for the player with less than 5 total goals, and 3 FA Cup appearances, 4 league goals, and plays MF?",
    "question_th": "ลงเล่น FLT กี่ครั้งสำหรับผู้เล่นที่ทำประตูรวมน้อยกว่า 5 ประตู, ลงเล่น FA Cup 3 นัด, 4 ประตูในลีก และเล่น 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_en": "Who was the opponent when the attendance was 87,453?",
    "question_th": "คู่ต่อสู้คือใครเมื่อมีผู้เข้าร่วม 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_en": "What was the attendance when they had a ranking of #4?",
    "question_th": "การเข้าร่วมงานเมื่อพวกเขาอยู่ในอันดับที่ 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_en": "What's the average Played for a draw of 5 and more than 43 points?",
    "question_th": "ค่าเฉลี่ยการเล่นเสมอ 5 และมากกว่า 43 แต้มคือเท่าไร?",
    "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_en": "What is the government salary of the Undersecretary with a Romanised name of Chen Wei-On, Kenneth?",
    "question_th": "เงินเดือนรัฐบาลของปลัดกระทรวงที่มีชื่อโรมันว่า 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 = \"梁鳳儀\"",
    "question_en": "What is the portfolio attachment of the Undersecretary appointed at age 48 with a Chinese name of 梁鳳儀?",
    "question_th": "เอกสารแนบของปลัดกระทรวงที่ได้รับการแต่งตั้งเมื่ออายุ 48 ปี โดยใช้ชื่อภาษาจีนว่า 梁鳳儀 คืออะไร?",
    "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_en": "What is the Romanised name of the Undersecretary with an education portfolio attachment?",
    "question_th": "ชื่ออักษรโรมันของปลัดกระทรวงพร้อมแนบแฟ้มผลงานการศึกษาคืออะไร?",
    "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_en": "What is the best top 10 when there are fewer than 0 wins?",
    "question_th": "10 อันดับแรกที่ดีที่สุดเมื่อมีการชนะน้อยกว่า 0 คืออะไร?",
    "context": "CREATE TABLE table_name_30 (top_10s INTEGER, wins INTEGER)"
  },
  {
    "answer": "SELECT moving_from FROM table_name_31 WHERE name = \"naylor\"",
    "question_en": "Where did naylor move from?",
    "question_th": "เนย์เลอร์ย้ายมาจากไหน?",
    "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_en": "What type ends in 2011, has a free transfer fee, and is sourced in leeds united?",
    "question_th": "แบบไหนจบปี 2011 ฟรีค่าธรรมเนียมการโอน และมีที่มาจาก ลีดส์ ยูไนเต็ด?",
    "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_en": "What is the type of sco country?",
    "question_th": "ประเทศสโกเป็นประเภทใด?",
    "context": "CREATE TABLE table_name_92 (type VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_32 WHERE ends = \"2009\"",
    "question_en": "What is the type that ends in 2009?",
    "question_th": "ประเภทที่สิ้นสุดในปี 2552 คืออะไร?",
    "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_en": "What is the transfer fee of assoumani, who has a summer transfer window?",
    "question_th": "ค่าโอนของอัสซูมานี่ที่มีหน้าต่างโอนย้ายในช่วงซัมเมอร์คือเท่าไร?",
    "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_en": "What is the ends with a free transfer fee and was moved from middlesbrough?",
    "question_th": "จบด้วยค่าตัวฟรีและถูกย้ายจากมิดเดิ้ลสโบรห์เป็นอย่างไรบ้าง?",
    "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_en": "Which Week has Attendance of 51,558?",
    "question_th": "สัปดาห์ใดมีผู้เข้าร่วม 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_en": "Which Attendance has a Result of w 24-14, and a Week smaller than 7?",
    "question_th": "ผู้เข้าร่วมคนใดมีผลลัพธ์เป็น w 24-14 และหนึ่งสัปดาห์น้อยกว่า 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_en": "Which Attendance has an Opponent of at los angeles rams, and a Week larger than 12?",
    "question_th": "ผู้เข้าร่วมคนใดมีฝ่ายตรงข้ามที่ los angeles rams และหนึ่งสัปดาห์มากกว่า 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_en": "Which method has a record of 4-0?",
    "question_th": "วิธีไหนมีสถิติ 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_en": "What is the record when the method is decision and the location is Martigues, France?",
    "question_th": "บันทึกเมื่อวิธีตัดสินใจและสถานที่คือ Martigues ประเทศฝรั่งเศสคืออะไร?",
    "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_en": "Which location has a method of decision and Nikos Tsoukalas for an opponent?",
    "question_th": "ตำแหน่งใดมีวิธีการตัดสินใจ และ Nikos Tsoukalas สำหรับคู่ต่อสู้?",
    "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_en": "What is the method when the location is Auckland, New Zealand, Darren Berry as the opponent, and resulted in a win?",
    "question_th": "วิธีการที่จะเป็นเมื่อตำแหน่งคือโอ๊คแลนด์นิวซีแลนด์ดาร์เรนเบอร์รี่เป็นคู่ต่อสู้และส่งผลให้ชนะ?",
    "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_en": "What is the location when the record is 9-7?",
    "question_th": "ตำแหน่งเมื่อบันทึกคือ 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_en": "What is the location when KO is the method, the result is a win, and the record is 2-0?",
    "question_th": "ตำแหน่งไหนที่ KO เป็นวิธีผลชนะและสถิติเป็น 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_en": "What are the total casualties with 1,200+ military and/or civilian wounded?",
    "question_th": "จำนวนผู้เสียชีวิตทั้งหมดที่มีทหารและ/หรือพลเรือนบาดเจ็บมากกว่า 1,200 รายเป็นเท่าใด?",
    "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_en": "How many military deaths were there when there were 1,615 total casualties?",
    "question_th": "มีทหารเสียชีวิตกี่รายเมื่อมีผู้เสียชีวิตทั้งหมด 1,615 ราย?",
    "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_en": "How many military deaths were there when there were 1,200+ military and/or civilian wounded?",
    "question_th": "มีทหารเสียชีวิตกี่คนเมื่อมีทหารและ/หรือพลเรือนบาดเจ็บมากกว่า 1,200 คน?",
    "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_en": "How many deaths were there when the total casualties were 6?",
    "question_th": "มีผู้เสียชีวิตกี่ราย รวมผู้เสียชีวิตทั้งหมด 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_en": "Which country scored 70-68-71-71=280?",
    "question_th": "ประเทศใดได้คะแนน 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_en": "What champions have 1 (2009) as the semi-finalists?",
    "question_th": "แชมป์คนใดมี 1 (2009) เป็นผู้เข้ารอบรองชนะเลิศ?",
    "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_en": "What fourth-place has 2 (1999, 2005) as the runner(s)-up?",
    "question_th": "อันดับที่สี่แห่งใดที่มี 2 (1999, 2005) เป็นรองแชมป์?",
    "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_en": "What semi-finalists has 2 (1993, 2003) as the fourth-place?",
    "question_th": "ผู้เข้ารอบรองชนะเลิศคนใดที่มี 2 (1993, 2003) เป็นที่สี่?",
    "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_en": "What runner(s)-up has 1 (2013) as the champions?",
    "question_th": "รองชนะเลิศคนไหนมี 1 (2556) เป็นแชมป์?",
    "context": "CREATE TABLE table_name_75 (runners_up VARCHAR, champions VARCHAR)"
  },
  {
    "answer": "SELECT date_of_vacancy FROM table_name_78 WHERE team = \"vitória de guimarães\"",
    "question_en": "What was the day of vacancy for vitória de guimarães?",
    "question_th": "วันว่างของวิตอเรีย เด กิมาไรส์คือวันไหน?",
    "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ácio\"",
    "question_en": "Who was the outgoing manager when the incoming manager was augusto inácio?",
    "question_th": "ใครคือผู้จัดการทีมที่จะลาออกเมื่อผู้จัดการทีมที่เข้ามาคือ ออกุสโต อินาซิโอ?",
    "context": "CREATE TABLE table_name_53 (outgoing_manage VARCHAR, incoming_manager VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(matches) FROM table_name_71 WHERE team = \"atlético ciudad\" AND average > 0.61",
    "question_en": "How many matches did Atlético Ciudad have with an average higher than 0.61?",
    "question_th": "แอตเลติโก ซิวดัดลงเล่นกี่นัดโดยมีค่าเฉลี่ยสูงกว่า 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_en": "Who is the goalkeeper with fewer than 24 goals?",
    "question_th": "ผู้รักษาประตูที่ยิงได้น้อยกว่า 24 ประตูคือใคร?",
    "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_en": "What was the highest amount of losses when there were 45 goals and the play was smaller than 38?",
    "question_th": "อะไรคือจำนวนเงินที่เสียมากที่สุดเมื่อมี 45 ประตูและการเล่นน้อยกว่า 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_en": "What were the lowest goals when there were mor than 15 wins and the goal difference was larger than 35?",
    "question_th": "อะไรคือประตูที่ต่ำที่สุดเมื่อชนะมากกว่า 15 ครั้งและผลต่างประตูมากกว่า 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_en": "What were the highest losses when the goal was smaller than 45 and the points was smaller than 18?",
    "question_th": "อะไรคือความสูญเสียสูงสุดเมื่อประตูน้อยกว่า 45 และแต้มน้อยกว่า 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_en": "What were the highest goals against when the position was larger than 19 and the goals smaller than 36?",
    "question_th": "อะไรคือเป้าหมายสูงสุดเมื่อตำแหน่งมากกว่า 19 และเป้าหมายน้อยกว่า 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_en": "What is the to par for the player with fewer than 148 total points?",
    "question_th": "พาร์สำหรับผู้เล่นที่มีแต้มรวมน้อยกว่า 148 แต้มจะต้องพาร์เท่าไร?",
    "context": "CREATE TABLE table_name_53 (to_par INTEGER, total INTEGER)"
  },
  {
    "answer": "SELECT years FROM table_name_10 WHERE school = \"vaucluse public school\"",
    "question_en": "What school year is vaucluse public school?",
    "question_th": "โรงเรียนของรัฐโวคลูสอยู่ชั้นปีใด",
    "context": "CREATE TABLE table_name_10 (years VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT website FROM table_name_11 WHERE founded = 1872",
    "question_en": "What are the websites of schools that were founded in 1872?",
    "question_th": "เว็บไซต์ของโรงเรียนที่ก่อตั้งในปี พ.ศ. 2415 มีอะไรบ้าง?",
    "context": "CREATE TABLE table_name_11 (website VARCHAR, founded VARCHAR)"
  },
  {
    "answer": "SELECT AVG(founded) FROM table_name_13 WHERE suburb_town = \"vineyard\"",
    "question_en": "On average, when were vineyard schools founded?",
    "question_th": "โดยเฉลี่ยแล้ว โรงเรียนไร่องุ่นก่อตั้งขึ้นเมื่อใด",
    "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–6, 6–2, 6–2\"",
    "question_en": "What was the surface later than 1979, for the Melbourne Indoor, Australia, and the score was 2–6, 6–2, 6–2?",
    "question_th": "พื้นผิวเป็นอย่างไรหลังปี 1979 สำหรับเมลเบิร์นอินดอร์ ออสเตรเลีย และสกอร์ 2–6, 6–2, 6–2",
    "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_en": "What is the earliest date when the championship was Monterrey WCT, Mexico?",
    "question_th": "การแข่งขันชิงแชมป์คือวันที่ใดคือเมืองมอนเตร์เรย์ WCT ประเทศเม็กซิโก",
    "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_en": "What is the score when the outcome was runner-up, earlier than 1975?",
    "question_th": "เมื่อผลการแข่งขันได้รองแชมป์ก่อนปี 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_en": "How many Losses have a Geelong FL of newtown & chilwell, and more than 11 wins?",
    "question_th": "Newtown & Chilwell มีการสูญเสีย Geelong FL กี่ครั้ง และชนะมากกว่า 11 ครั้ง?",
    "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_en": "When were the shares 39.1%?",
    "question_th": "เมื่อไรหุ้นถึง 39.1%?",
    "context": "CREATE TABLE table_name_84 (date VARCHAR, share VARCHAR)"
  },
  {
    "answer": "SELECT show FROM table_name_81 WHERE date = \"19 april\"",
    "question_en": "Which show aired on 19 april?",
    "question_th": "รายการไหนออกอากาศวันที่ 19 เมษายน?",
    "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_en": "What was the original title for the film used in nomination of street days?",
    "question_th": "ชื่อดั้งเดิมของภาพยนตร์ที่ใช้ในการเสนอชื่อ 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_en": "What was the original title for the film used in nomination of keep smiling?",
    "question_th": "ชื่อเรื่องเดิมของภาพยนตร์ที่ใช้ในการเสนอชื่อ Keep Smile คืออะไร?",
    "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_en": "How many tickets were sold and how many were available for the shows that grossed $348,674?",
    "question_th": "ขายตั๋วได้กี่ใบและมีกี่ใบสำหรับการแสดงที่ทำรายได้ 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_en": "Which Production in 2009 had a Result of Nominated at the Helpmann awards Award Ceremony?",
    "question_th": "การผลิตใดในปี 2009 ที่มีผลการเสนอชื่อเข้าชิงรางวัล Helpmann ในพิธีมอบรางวัล",
    "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_en": "Which Award Ceremony in 2009 has a Role of Glinda?",
    "question_th": "พิธีมอบรางวัลใดในปี 2552 ที่มีบทบาทเป็นกลินดา?",
    "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_en": "Which Year saw the Production of Wicked at the Helpmann Awards Award ceremony?",
    "question_th": "ปีใดที่ได้เห็นการผลิต Wicked ในพิธีมอบรางวัล Helpmann Awards?",
    "context": "CREATE TABLE table_name_13 (year VARCHAR, production VARCHAR, award_ceremony VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_48 WHERE year = 2013",
    "question_en": "What was the Result in 2013?",
    "question_th": "ผลลัพธ์ในปี 2556 เป็นอย่างไรบ้าง?",
    "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_en": "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?",
    "question_th": "ใครคือนักบิดที่ขี่ Kawasaki ZX-6r ซึ่งขี่น้อยกว่า 22 รอบ และกริดมากกว่า 19 และถึงเวลาเกษียณแล้ว?",
    "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_en": "What is the maximum grid when the laps were greater than 22?",
    "question_th": "เส้นกริดสูงสุดเมื่อรอบมากกว่า 22 คือเท่าใด",
    "context": "CREATE TABLE table_name_44 (grid INTEGER, laps INTEGER)"
  },
  {
    "answer": "SELECT MIN(grid) FROM table_name_83 WHERE laps > 22",
    "question_en": "What is the minimum grid when there was more than 22 laps?",
    "question_th": "กริดขั้นต่ำเมื่อมีมากกว่า 22 รอบคือเท่าใด?",
    "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_en": "How many total laps were ridden when the grid was 7 and the rider rode the Honda CBR600RR?",
    "question_th": "ขี่ไปแล้วทั้งหมดกี่รอบตอนที่กริดอยู่ที่ 7 และนักบิดขี่ 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_en": "Which sign has a fall of Venus?",
    "question_th": "ราศีใดมีการล่มสลายของดาวศุกร์?",
    "context": "CREATE TABLE table_name_5 (sign VARCHAR, fall VARCHAR)"
  },
  {
    "answer": "SELECT exaltation FROM table_name_21 WHERE fall = \"moon\"",
    "question_en": "Which exaltation has a fall of moon?",
    "question_th": "ความสูงส่งใดมีพระจันทร์ตก?",
    "context": "CREATE TABLE table_name_21 (exaltation VARCHAR, fall VARCHAR)"
  },
  {
    "answer": "SELECT exaltation FROM table_name_98 WHERE domicile = \"saturn\" AND fall = \"jupiter\"",
    "question_en": "Which exaltation has a domicile of Saturn and a fall of Jupiter?",
    "question_th": "ความสูงส่งใดมีภูมิลำเนาของดาวเสาร์และการล่มสลายของดาวพฤหัสบดี?",
    "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_en": "Which exaltation has a domicile of Saturn and Capricorn as a sign?",
    "question_th": "ความสูงส่งใดที่มีภูมิลำเนาของดาวเสาร์และราศีมังกรเป็นสัญลักษณ์?",
    "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_en": "Which detriment has a domicile of mercury and Virgo as a sign?",
    "question_th": "ความเสียหายใดที่มีภูมิลำเนาของปรอทและราศีกันย์เป็นสัญญาณ?",
    "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_en": "Which exaltation has a detriment of Saturn and Cancer as a sign?",
    "question_th": "ความสูงส่งใดมีความเสียหายต่อดาวเสาร์และราศีกรกฎเป็นสัญญาณ?",
    "context": "CREATE TABLE table_name_75 (exaltation VARCHAR, detriment VARCHAR, sign VARCHAR)"
  },
  {
    "answer": "SELECT drawn FROM table_name_96 WHERE points_against = \"234\"",
    "question_en": "What was the draw when the points against was 234?",
    "question_th": "เสมอกันเมื่อแต้มต่อคือ 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_en": "What was the try bonus when the points for was 608?",
    "question_th": "โบนัสการลองคืออะไรเมื่อคะแนนคือ 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_en": "Which Team has a Previous team of san diego rockets, and a Position of f?",
    "question_th": "ทีมใดมีทีมจรวดซานดิเอโกรุ่นก่อน และตำแหน่ง 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_en": "Which Nationality has a Previous team of new york knicks, and more than 3 Years of NBA experience?",
    "question_th": "สัญชาติใดมีทีมนิวยอร์กนิกส์ก่อนหน้านี้ และมีประสบการณ์ใน NBA มากกว่า 3 ปี",
    "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_en": "What is team 1 when team 2 is Manchester United?",
    "question_th": "ทีม 1 คืออะไร เมื่อทีม 2 คือ แมนเชสเตอร์ ยูไนเต็ด?",
    "context": "CREATE TABLE table_name_45 (team_1 VARCHAR, team_2 VARCHAR)"
  },
  {
    "answer": "SELECT agg FROM table_name_70 WHERE team_1 = \"milan\"",
    "question_en": "What is the agg when team 1 is Milan?",
    "question_th": "agg จะเป็นอย่างไรเมื่อทีม 1 คือ มิลาน?",
    "context": "CREATE TABLE table_name_70 (agg VARCHAR, team_1 VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_74 WHERE rank = 10",
    "question_en": "Which team is ranked #10?",
    "question_th": "ทีมไหนอยู่อันดับที่ 10?",
    "context": "CREATE TABLE table_name_74 (team VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT cyclist FROM table_name_96 WHERE uci_protour_points = 40",
    "question_en": "Which cyclist has UCI ProTour points of 40?",
    "question_th": "นักปั่นคนไหนมีคะแนน UCI ProTour อยู่ที่ 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_en": "What is the province with a contestant of tatiana vargas rosales?",
    "question_th": "จังหวัดใดที่มีผู้เข้าแข่งขัน 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_en": "Which province has the contestant elixandra tobias carasco?",
    "question_th": "จังหวัดใดมีผู้เข้าแข่งขัน 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_en": "What is 2011, when 2009 is \"A\"?",
    "question_th": "ปี 2554 คืออะไร เมื่อปี 2552 คือ \"A\"",
    "context": "CREATE TABLE table_name_59 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2009 FROM table_name_77 WHERE tournament = \"year-end ranking\"",
    "question_en": "What is 2009, when Tournament is \"Year-End Ranking\"?",
    "question_th": "ปี 2009 คืออะไร เมื่อการแข่งขันเป็น \"อันดับสิ้นปี\"?",
    "context": "CREATE TABLE table_name_77 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_73 WHERE 2012 = \"1r\"",
    "question_en": "What is 2011, when 2012 is \"1R\"?",
    "question_th": "2011 คืออะไร เมื่อ 2012 คือ \"1R\"",
    "context": "CREATE TABLE table_name_73 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2012 FROM table_name_44 WHERE 2009 = \"a\"",
    "question_en": "What is 2012, when 2009 is \"A\"?",
    "question_th": "ปี 2012 คืออะไร เมื่อปี 2009 คือ \"A\"",
    "context": "CREATE TABLE table_name_44 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_99 WHERE 2012 = \"a\" AND tournament = \"french open\"",
    "question_en": "What is 2011, when 2012 is \"A\", and when Tournament is \"French Open\"?",
    "question_th": "ปี 2011 คืออะไร เมื่อปี 2012 เป็น \"A\" และเมื่อใดที่ทัวร์นาเมนต์เป็น \"French Open\"",
    "context": "CREATE TABLE table_name_99 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT MAX(against) FROM table_name_71 WHERE opposing_teams = \"wales\"",
    "question_en": "What is the largest Against with an Opposing Teams of wales?",
    "question_th": "อะไรคือสิ่งที่ยิ่งใหญ่ที่สุดในการต่อต้านกับทีมตรงข้ามของเวลส์?",
    "context": "CREATE TABLE table_name_71 (against INTEGER, opposing_teams VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_49 WHERE date = \"18/03/1989\"",
    "question_en": "What Status has a Date of 18/03/1989?",
    "question_th": "สถานะอะไรมีวันที่ 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_en": "What Venue has a Status of five nations, and Against of 0?",
    "question_th": "สถานที่ใดมีสถานะเป็น 5 ประเทศ และต่อต้าน 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_en": "What is the smallest Against with a Date of 18/02/1989?",
    "question_th": "อะไรคือสิ่งที่เล็กที่สุดเทียบกับวันที่ 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_en": "What are the additional notes for Cotabato?",
    "question_th": "หมายเหตุเพิ่มเติมสำหรับ Cotabato คืออะไร?",
    "context": "CREATE TABLE table_name_79 (additional_notes VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_46 WHERE location = \"kunlong\"",
    "question_en": "What country in Kunlong in?",
    "question_th": "คุนหลงอยู่ประเทศอะไรคะ?",
    "context": "CREATE TABLE table_name_46 (country VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT perpetrator FROM table_name_85 WHERE location = \"baghdad\"",
    "question_en": "Who went on a rampage in Baghdad?",
    "question_th": "ใครก่อเหตุอาละวาดในกรุงแบกแดด?",
    "context": "CREATE TABLE table_name_85 (perpetrator VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT SUM(rank) FROM table_name_19 WHERE total < 1",
    "question_en": "What's the rank that has a total of less than 1?",
    "question_th": "อันดับที่มีคะแนนรวมน้อยกว่า 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_en": "What's the bronze medal count when the silver is less than 3 and the gold is 1?",
    "question_th": "เหรียญทองแดงจะนับเท่าไหร่เมื่อเงินน้อยกว่า 3 และทองคือ 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_en": "What's the gold medal count ranked 2 with a total of more than 21?",
    "question_th": "เหรียญทองอันดับที่ 2 มีจำนวนเท่าใด รวมเกิน 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_en": "What's the smallest total with a bronze count of 5 and a gold count less than 8?",
    "question_th": "อะไรคือผลรวมที่น้อยที่สุดโดยมีจำนวนทองแดงเท่ากับ 5 และจำนวนทองคำน้อยกว่า 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_en": "What is the party for the representative who was first elected before 2002 and the results were re-elected?",
    "question_th": "พรรคของผู้แทนที่ได้รับเลือกครั้งแรกก่อน พ.ศ. 2545 และผลการเลือกตั้งใหม่เป็นพรรคอะไร?",
    "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_en": "Incumbent John Sullivan has what as biggest first elected?",
    "question_th": "ผู้ดำรงตำแหน่ง John Sullivan มีสิ่งใดบ้างที่ได้รับเลือกครั้งแรกที่ใหญ่ที่สุด?",
    "context": "CREATE TABLE table_name_71 (first_elected INTEGER, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_24 WHERE years_member = \"1963–1968\"",
    "question_en": "What Location has Years Member of 1963–1968?",
    "question_th": "ตำแหน่งใดที่มีสมาชิกปี พ.ศ. 2506-2511",
    "context": "CREATE TABLE table_name_24 (location VARCHAR, years_member VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_17 WHERE colors = \"navy blue orange\"",
    "question_en": "What School has Colors of navy blue orange?",
    "question_th": "โรงเรียนไหนมีสี น้ำเงิน ส้ม บ้างคะ?",
    "context": "CREATE TABLE table_name_17 (school VARCHAR, colors VARCHAR)"
  },
  {
    "answer": "SELECT years_member FROM table_name_47 WHERE school = \"cairo high school\"",
    "question_en": "What Years Member has a School of cairo high school?",
    "question_th": "สมาชิกปีใดมีโรงเรียนมัธยมแห่งไคโร?",
    "context": "CREATE TABLE table_name_47 (years_member VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT colors FROM table_name_61 WHERE school = \"sesser high school\"",
    "question_en": "What Colors has a School of sesser high school?",
    "question_th": "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_en": "What Colors has a School of zeigler high school?",
    "question_th": "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_en": "What Nickname(s) has a Location of elkville, illinois?",
    "question_th": "ชื่อเล่นใดที่มีที่ตั้งของ elkville, อิลลินอยส์?",
    "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_en": "Which Season 1 has a Season 7 of david chilton?",
    "question_th": "ซีซั่น 1 ไหนมี David Chilton ซีซั่น 7 บ้างคะ?",
    "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_en": "Which Seat has a Season 6 of kevin o'leary?",
    "question_th": "ที่นั่งไหนมี kevin o'leary ซีซั่น 6 บ้าง?",
    "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_en": "Which Season 7 has a Season 6 of jim treliving?",
    "question_th": "ซีซั่น 7 ใดที่มีซีซั่น 6 ของ 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_en": "Which Season 7 has a Seat larger than 1, and a Season 3 of w. brett wilson?",
    "question_th": "ซึ่งซีซั่น 7 มีที่นั่งมากกว่า 1 และซีซั่น 3 ของ w. เบรตต์ วิลสัน?",
    "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_en": "Which Season 3 has a Season 7 of jim treliving?",
    "question_th": "ซีซั่น 3 ใดที่มีซีซั่น 7 ของ 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_en": "What is Weekly Winner, when Air Date is \"July 4, 2008\"?",
    "question_th": "Weekly Winner คืออะไร เมื่อออกอากาศคือ \"4 กรกฎาคม 2551\"?",
    "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_en": "What is Rating, when Air Date is \"July 24, 2008*\", and when Weekly Winner is \"Sales Rep. Oscar Ledezma\"?",
    "question_th": "เรตติ้งคืออะไร เมื่อวันออกอากาศคือ \"24 กรกฎาคม 2551*\" และเมื่อผู้ชนะประจำสัปดาห์คือ \"ตัวแทนฝ่ายขาย 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_en": "What is 18-49, when Weekly Winner is \"Youth Counselor Justin Meece\"?",
    "question_th": "18-49 คืออะไร เมื่อผู้ชนะประจำสัปดาห์คือ \"Youth Counsellor 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_en": "What is Viewers, when Air Date is \"July 4, 2008\"?",
    "question_th": "ผู้ชมคืออะไร เมื่อออกอากาศคือ \"4 กรกฎาคม 2551\"?",
    "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_en": "What is Air Date, when Rating is \"N/A\", and when Weekly Winner is \"Wedding DJ Chris Dixon\"?",
    "question_th": "วันที่ออกอากาศคืออะไร เมื่อเรตติ้งเป็น \"N/A\" และเมื่อผู้ชนะประจำสัปดาห์คือ \"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_en": "What was the record for Dec 16?",
    "question_th": "บันทึกของวันที่ 16 ธันวาคมเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_36 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT 2010 FROM table_name_9 WHERE 2011 = \"qf\"",
    "question_en": "What is the 2010 with a qf in 2011?",
    "question_th": "ปี 2010 กับ qf ในปี 2011 คืออะไร?",
    "context": "CREATE TABLE table_name_9 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2013 FROM table_name_71 WHERE tournament = \"grand slam tournaments\"",
    "question_en": "What is the 2013 of the grand slam tournaments?",
    "question_th": "การแข่งขันแกรนด์สแลมปี 2013 คืออะไร?",
    "context": "CREATE TABLE table_name_71 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2013 FROM table_name_49 WHERE 2010 = \"2r\" AND 2011 = \"qf\"",
    "question_en": "What is the 2013 with a 2r in 2010 and a qf in 2011?",
    "question_th": "2013 กับ 2r ในปี 2010 และ qf ในปี 2011 คืออะไร?",
    "context": "CREATE TABLE table_name_49 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_32 WHERE 2010 = \"1r\"",
    "question_en": "What is the 2011 with 1r in 2010?",
    "question_th": "2011 กับ 1r ในปี 2010 คืออะไร?",
    "context": "CREATE TABLE table_name_32 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2012 FROM table_name_96 WHERE 2009 = \"a\" AND 2010 = \"2r\"",
    "question_en": "What is the 2012 with A in 2009 and 2r in 2010?",
    "question_th": "2012 กับ A ในปี 2009 และ 2r ในปี 2010 คืออะไร?",
    "context": "CREATE TABLE table_name_96 (Id VARCHAR)"
  },
  {
    "answer": "SELECT poison_klesha FROM table_name_29 WHERE pali = \"moha avijja\"",
    "question_en": "What is the poison/klesha word for moha avijja in pali?",
    "question_th": "คำว่า พิษ/เคลษะ ของ โมหะ อวิชชา ในภาษาบาลีคืออะไร?",
    "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_en": "What is the poision/klesha word for the tibetan word gti mug ma rig pa?",
    "question_th": "คำ poision/klesha สำหรับคำภาษาทิเบต 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_en": "What is the pali word for pride in poison/klesha?",
    "question_th": "ภาษาบาลี แปลว่า ความภาคภูมิใจในยาพิษ หรือ เคลษะ แปลว่าอะไร?",
    "context": "CREATE TABLE table_name_87 (pali VARCHAR, poison_klesha VARCHAR)"
  },
  {
    "answer": "SELECT pali FROM table_name_64 WHERE tibetan = \"phrag dog\"",
    "question_en": "What is the pali word for phrag dog in tibetan?",
    "question_th": "ภาษาบาลี แปลว่า phrag dog ในภาษาธิเบต แปลว่าอะไร?",
    "context": "CREATE TABLE table_name_64 (pali VARCHAR, tibetan VARCHAR)"
  },
  {
    "answer": "SELECT pali FROM table_name_77 WHERE sanskrit = \"rāga\"",
    "question_en": "What is the pali word for rāga in sanskrit?",
    "question_th": "คำว่า ราคะ ในภาษาสันสกฤต ในภาษาบาลีแปลว่าอะไร?",
    "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_en": "What is the attendance total when Southend Manor is the away team and there are less than 93 ties?",
    "question_th": "เซาธ์เอนด์ แมเนอร์ เป็นทีมเยือนและเสมอกันน้อยกว่า 93 นัด ผู้เข้าชมรวมเป็นเท่าใด?",
    "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_en": "What is the score when the attendance is less than 83 and Raunds Town is the away team?",
    "question_th": "สกอร์เท่าไหร่เมื่อผู้ชมน้อยกว่า 83 และ รานด์ส ทาวน์ เป็นทีมเยือน?",
    "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_en": "Who was the player that was picked at a number less than 205 from the Michigan State Spartans?",
    "question_th": "ใครคือผู้เล่นที่ได้รับเลือกให้มีจำนวนน้อยกว่า 205 จาก Michigan State Spartans?",
    "context": "CREATE TABLE table_name_46 (player VARCHAR, pick__number VARCHAR, team_from VARCHAR)"
  },
  {
    "answer": "SELECT AVG(density__per_km²_) FROM table_name_40 WHERE no_munic = 53",
    "question_en": "What is the average Density of 53 No. munic.?",
    "question_th": "ความหนาแน่นเฉลี่ยของ 53 No. munic. คือเท่าไร?",
    "context": "CREATE TABLE table_name_40 (density__per_km²_ INTEGER, no_munic VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_46 WHERE venue = \"sydney sports ground , sydney\"",
    "question_en": "Name the Status of Venue of sydney sports ground , sydney?",
    "question_th": "ตั้งชื่อสถานะสถานที่ของสนามกีฬาซิดนีย์ ซิดนีย์ไหม?",
    "context": "CREATE TABLE table_name_46 (status VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_16 WHERE opposing_teams = \"wales\"",
    "question_en": "Which Status has a Opposing Teams of wales?",
    "question_th": "สถานะใดมีทีมตรงข้ามของเวลส์?",
    "context": "CREATE TABLE table_name_16 (status VARCHAR, opposing_teams VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_14 WHERE venue = \"lancaster park , christchurch\"",
    "question_en": "WHICH Date has a Venue of lancaster park , christchurch?",
    "question_th": "วันที่มีสถานที่ของ lancaster park ไครสต์เชิร์ช?",
    "context": "CREATE TABLE table_name_14 (date VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_32 WHERE player = \"dave coggin\"",
    "question_en": "WHAT IS THE TEAM WITH DAVE COGGIN?",
    "question_th": "ทีมของ 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_en": "WHAT IS THE TEAM WITH AN OF POSITION AND PICK OF 24?",
    "question_th": "ทีมใดที่มีตำแหน่งและเลือก 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_en": "WHAT IS THE POSITION WITH BOSTON RED SOX FOR COREY JENKINS?",
    "question_th": "ตำแหน่งของ BOSTON RED SOX สำหรับ 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_en": "WHAT PLAYER HAS UPLAND HIGH SCHOOL?",
    "question_th": "ผู้เล่นคนไหนมีโรงเรียนมัธยมปลายบ้าง?",
    "context": "CREATE TABLE table_name_88 (player VARCHAR, hometown_school VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_55 WHERE team = \"oakland athletics\"",
    "question_en": "WHAT PLAYER HAS THE OAKLAND ATHLETICS?",
    "question_th": "ผู้เล่นคนใดที่มีทีมโอ๊คแลนด์กรีฑา?",
    "context": "CREATE TABLE table_name_55 (player VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_59 WHERE pick > 29",
    "question_en": "WHAT TEAM HAS A PICK LARGER THAN 29?",
    "question_th": "ทีมใดมีตัวเลือกมากกว่า 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_en": "Which rampage killed 8 in Israel?",
    "question_th": "อาละวาดครั้งใดที่คร่าชีวิตผู้คนไป 8 คนในอิสราเอล?",
    "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_en": "What coutry had a rampaged killing 14 in 1965?",
    "question_th": "ประเทศใดที่มีการสังหารอย่างอาละวาด 14 คนในปี 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_en": "What is Club, when Drawn is \"0\", and when Try Bonus is \"5\"?",
    "question_th": "คลับคืออะไร เมื่อสุ่มเป็น \"0\" และเมื่อลองโบนัสเป็น \"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_en": "What is Club, when Points is \"82\"?",
    "question_th": "Club คืออะไร เมื่อคะแนนคือ \"82\"?",
    "context": "CREATE TABLE table_name_15 (club VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT played FROM table_name_62 WHERE points_against = \"374\"",
    "question_en": "What is Played, when Points Against is \"374\"?",
    "question_th": "จะเล่นอะไรเมื่อแต้มต่อคือ \"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_en": "What is Points Against, when Try Bonus is \"Try bonus\"?",
    "question_th": "Points Against คืออะไร เมื่อ Try Bonus คือ \"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_en": "What is Try Bonus, when Losing Bonus is \"1\", and when Points For is \"179\"?",
    "question_th": "Try Bonus คืออะไร เมื่อโบนัสที่แพ้คือ \"1\" และเมื่อ Points For คือ \"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_en": "What is Points For, when Club is \"Tycroes RFC\"?",
    "question_th": "คะแนนสำหรับอะไร เมื่อ Club คือ \"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_en": "When has a cause of gas explosion, a Death toll smaller than 63, and a Location of penygraig?",
    "question_th": "เหตุใดจึงเกิดแก๊สระเบิด ยอดผู้เสียชีวิตน้อยกว่า 63 ราย และตำแหน่งของเพนนีเกรก?",
    "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_en": "Where has a cause of gas explosion, a Death toll larger than 38 on 10 june?",
    "question_th": "เหตุแก๊สระเบิดมีผู้เสียชีวิตกว่า 38 ราย เมื่อวันที่ 10 มิ.ย.?",
    "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_en": "Which Year has a Location of dinas on 13 january?",
    "question_th": "ปีใดมีที่ตั้งของไดนาสในวันที่ 13 มกราคม?",
    "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_en": "Which Year has a cause of firedamp and a Death toll larger than 11?",
    "question_th": "ปีใดมีสาเหตุของเพลิงไหม้และมีผู้เสียชีวิตมากกว่า 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_en": "Count the lowest Year which has gas explosion, Colliery of tylorstown colliery, and a Death toll larger than 57?",
    "question_th": "นับปีต่ำสุดที่มีแก๊สระเบิด เหมืองถ่านหินในไทเลอร์สทาวน์ และยอดผู้เสียชีวิตมากกว่า 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_en": "Which Colliery has a Death toll of 7?",
    "question_th": "เหมืองถ่านหินใดมีผู้เสียชีวิต 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_en": "What is the Score 1 of Tie no 6?",
    "question_th": "คะแนน 1 ของเสมอหมายเลข 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_en": "What is the Attendance of Tie no 3?",
    "question_th": "การเข้าร่วมของ 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_en": "What is the Attendance at the Hereford United Away game?",
    "question_th": "ผู้เข้าชมเกมเยือนเฮริฟอร์ด ยูไนเต็ด เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_94 (attendance VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_19 WHERE tie_no = \"11\"",
    "question_en": "What is the Home team of Tie no 11?",
    "question_th": "ทีมเหย้าของเสมอหมายเลข 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_en": "What is the Tie no of Hereford United's Away game?",
    "question_th": "ผลเสมอของเกมเยือนของเฮริฟอร์ด ยูไนเต็ด คืออะไร?",
    "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_en": "What is the Score 1 of the game with Attendance of 2,571?",
    "question_th": "คะแนนที่ 1 ของเกมที่มีผู้เข้าร่วม 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_en": "What is the sum of the clubs remaining with 34 new entries this round and more than 34 clubs involved?",
    "question_th": "ผลรวมของสโมสรที่เหลืออยู่กับ 34 สโมสรใหม่ในรอบนี้ และสโมสรที่เกี่ยวข้องมากกว่า 34 สโมสรเป็นเท่าใด",
    "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_en": "What are the clubs involved with 16 clubs remaining?",
    "question_th": "สโมสรใดบ้างที่เกี่ยวข้องกับอีก 16 สโมสรที่เหลืออยู่?",
    "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_en": "What is the total rank of the athlete with a total larger than 19.42 and a taijiquan less than 9.87?",
    "question_th": "นักกีฬาที่มีคะแนนรวมมากกว่า 19.42 และมวยไท่จี๋น้อยกว่า 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_en": "What is the lowest rank of the athlete with a taijiquan greater than 9.42 and a 19.02 total?",
    "question_th": "นักกีฬาที่มีมวยไท่จี๋มากกว่า 9.42 และคะแนนรวม 19.02 อยู่ในอันดับที่ต่ำสุดคือข้อใด",
    "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_en": "What is the highest taijijian with a 9.87 taijiquan and a total less than 19.77?",
    "question_th": "ไท่จี๋เจี้ยนสูงสุดที่มีไท่จี๋ 9.87 และรวมน้อยกว่า 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_en": "Who is the cyber girl in week 3 when Demi Jessica was the cyber girl in week 1?",
    "question_th": "สาวไซเบอร์ในสัปดาห์ที่ 3 คือใคร เมื่อ Demi Jessica เป็นสาวไซเบอร์ในสัปดาห์ที่ 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_en": "What is the name of the cyber girl in week 4 when Lexi Lombardelli was the cyber girl in week 2?",
    "question_th": "สาวไซเบอร์ในสัปดาห์ที่ 4 ชื่ออะไรเมื่อ Lexi Lombardelli เป็นสาวไซเบอร์ในสัปดาห์ที่ 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_en": "When Alinna D Penta was the cyber girl in week 3, who was the cyber girl in week 1?",
    "question_th": "เมื่อ Alinna D Penta เป็นสาวไซเบอร์ในสัปดาห์ที่ 3 ใครคือสาวไซเบอร์ในสัปดาห์ที่ 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_en": "Felicia Taylor was cyber girl in week 3, so who was the cyber girl in week 5?",
    "question_th": "Felicia Taylor เป็นสาวไซเบอร์ในสัปดาห์ที่ 3 แล้วใครคือสาวไซเบอร์ในสัปดาห์ที่ 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_en": "Who is the cyber girl in week 3 when Ashley Lowe was the cyber girl in week 2?",
    "question_th": "สาวไซเบอร์ในสัปดาห์ที่ 3 คือใครเมื่อ Ashley Lowe เป็นสาวไซเบอร์ในสัปดาห์ที่ 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_en": "When Diane Deluna was the cyber girl in week 4 who was the cyber girl in week 2?",
    "question_th": "เมื่อ Diane Deluna เป็นสาวไซเบอร์ในสัปดาห์ที่ 4 ใครคือสาวไซเบอร์ในสัปดาห์ที่ 2",
    "context": "CREATE TABLE table_name_90 (week_2 VARCHAR, week_4 VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_54 WHERE year > 2011",
    "question_en": "Which Round has a Year later than 2011?",
    "question_th": "รอบใดมีหนึ่งปีหลังจากปี 2011?",
    "context": "CREATE TABLE table_name_54 (round VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT date FROM table_name_72 WHERE result = \"3–2\" AND score = \"6–0, 6–4\"",
    "question_en": "When was the Result of 3–2, with a Score of 6–0, 6–4?",
    "question_th": "เมื่อใดที่ผลการแข่งขัน 3–2 โดยมีคะแนน 6–0, 6–4?",
    "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önefeld tatjana malek\"",
    "question_en": "Which Surface has an Opponent(s) of anna-lena grönefeld tatjana malek?",
    "question_th": "Surface ใดมีฝ่ายตรงข้ามของ anna-lena grönefeld Tatjana Malek",
    "context": "CREATE TABLE table_name_8 (surface VARCHAR, opponent_s_ VARCHAR)"
  },
  {
    "answer": "SELECT AVG(year) FROM table_name_12 WHERE date = \"5–6 february\"",
    "question_en": "Which Year has a Date of 5–6 february?",
    "question_th": "ปีใดมีวันที่ 5-6 กุมภาพันธ์",
    "context": "CREATE TABLE table_name_12 (year INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_64 WHERE tie_no = \"27\"",
    "question_en": "What home team has 27 as the tie no.?",
    "question_th": "ทีมเจ้าบ้านใดมี 27 เสมอกัน?",
    "context": "CREATE TABLE table_name_64 (home_team VARCHAR, tie_no VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_60 WHERE tie_no = \"1\"",
    "question_en": "What date has 1 as the tie no.?",
    "question_th": "วันที่ใดที่เลข 1 เสมอกัน?",
    "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_en": "What score has west ham united as the away team?",
    "question_th": "เวสต์แฮมยูไนเต็ดเป็นทีมเยือนได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_46 (score VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_71 WHERE away_team = \"southampton\"",
    "question_en": "What home team has Southampton as the away team?",
    "question_th": "เจ้าบ้านทีมไหนมีเซาแธมป์ตันเป็นทีมเยือน?",
    "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_en": "What current club has a Height of 1.96?",
    "question_th": "ไม้กอล์ฟใดในปัจจุบันที่มีความสูง 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_en": "What is the Age of f/c Posiiton?",
    "question_th": "ตำแหน่ง f/c มีอายุเท่าใด",
    "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_en": "Who is the player with a score of 70-68-70=208?",
    "question_th": "นักเตะคนไหนที่มีคะแนน 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_en": "What place is the player with score of 70-68-70=208 from?",
    "question_th": "นักเตะที่มีคะแนน 70-68-70=208 มาจากที่ไหน?",
    "context": "CREATE TABLE table_name_38 (place VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT name_in_malay FROM table_name_55 WHERE foundation = \"iptura\"",
    "question_en": "What is the name for Malay with a foundation in Iptura?",
    "question_th": "ภาษามลายูที่มีรากฐานเป็นภาษา 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_en": "What is the acronym for the name Malay of Kolej Komuniti Sungai Petani?",
    "question_th": "ชื่อภาษามาเลย์ของ 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_en": "What is the acronym for the English name Northern management and technological institute?",
    "question_th": "สถาบันการจัดการและเทคโนโลยีภาคเหนือ ย่อมาจากอะไร?",
    "context": "CREATE TABLE table_name_21 (acronym VARCHAR, name_in_english VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_85 WHERE foundation = \"kkspe\"",
    "question_en": "What is the location of the Kkspe Foundation?",
    "question_th": "ที่ตั้งของ มูลนิธิเคเคเอสพี อยู่ที่ไหน?",
    "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_en": "What is Country, when Place is \"T3\", and when Score is \"67-70=137\"?",
    "question_th": "ประเทศคืออะไร เมื่ออันดับคือ \"T3\" และเมื่อคะแนนคือ \"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_en": "What is Score, when Player is \"David Toms\"?",
    "question_th": "Score คืออะไร เมื่อผู้เล่นคือ \"David Toms\"?",
    "context": "CREATE TABLE table_name_64 (score VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_1 WHERE player = \"tom lehman\"",
    "question_en": "What is Score, when Player is \"Tom Lehman\"?",
    "question_th": "Score คืออะไร เมื่อผู้เล่นคือ \"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_en": "What is the Title of the Pye Label mono LP release?",
    "question_th": "Pye Label mono LP มีชื่อว่าอะไร?",
    "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_en": "What is the Catalog-Nr of the Epic Label Stereo LP named For Little Ones?",
    "question_th": "Catalog-Nr ของ Epic Label Stereo LP ชื่อ 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_en": "What is the total area with the census ranking of 3,129 of 5,008, and a Population smaller than 460?",
    "question_th": "พื้นที่ทั้งหมดที่มีการจัดอันดับสำมะโนประชากร 3,129 จาก 5,008 คน และจำนวนประชากรน้อยกว่า 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_en": "What is the total area with the Census Ranking of 3,129 of 5,008, and a Population larger than 460?",
    "question_th": "พื้นที่ทั้งหมดที่มีการจัดอันดับการสำรวจสำมะโนประชากร 3,129 จาก 5,008 และจำนวนประชากรมากกว่า 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_en": "What census ranking has an area greater than 578.28 km2?",
    "question_th": "อันดับการสำรวจสำมะโนประชากรใดมีพื้นที่มากกว่า 578.28 ตารางกิโลเมตร",
    "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_en": "What is the position for Jani Lajunen?",
    "question_th": "ยานี่ ลาจูเนน ทำหน้าที่อะไร?",
    "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_en": "What is the round number when nationality was United States, and player is Jeffrey Foss?",
    "question_th": "หมายเลขรอบคืออะไรเมื่อสัญชาติคือสหรัฐอเมริกา และผู้เล่นคือเจฟฟรีย์ ฟอสส์?",
    "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_en": "What player has a round larger than 2, and position of (d)?",
    "question_th": "ผู้เล่นคนใดที่มีรอบที่ใหญ่กว่า 2 และตำแหน่ง (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_en": "What is the nationality for the position of (d), and college was SC Bern ( Swiss )?",
    "question_th": "ตำแหน่ง (d) มีสัญชาติอะไร และวิทยาลัยคือ SC Bern (สวิส)",
    "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_en": "Who is the athlete with a run 1 larger than 54.95 and a 56.19 run 2?",
    "question_th": "นักกีฬาที่มีรัน 1 ใหญ่กว่า 54.95 และ 56.19 รัน 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_en": "What is the highest run 2 of athlete eric neilson, who has a run 3 larger than 55.97?",
    "question_th": "นักกีฬา eric Neilson นักวิ่ง 2 คนที่มีระยะวิ่งสูงสุด 2 คน ใครมีนักวิ่ง 3 คนมากกว่า 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_en": "What is the highest run 3 of the athlete with a 55.44 run 2?",
    "question_th": "นักวิ่ง 3 คนที่วิ่งสูงสุดด้วยเวลา 55.44 รัน 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_en": "Who is the athlete with a run 1 less than 54.13 and a 55.21 run 3?",
    "question_th": "นักกีฬาที่วิ่ง 1 น้อยกว่า 54.13 และ 55.21 วิ่ง 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_en": "What is the sum of the run 1 of athlete matthias guggenberger, who has a run 2 greater than 55.24?",
    "question_th": "ผลรวมของรัน 1 ของนักกีฬา Matthias Guggenberger ที่วิ่ง 2 มากกว่า 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_en": "What is the dissolved date of the parliament assembled on 3 June 1467?",
    "question_th": "วันยุบสภาเมื่อวันที่ 3 มิถุนายน พ.ศ. 1467 คือเมื่อใด",
    "context": "CREATE TABLE table_name_31 (dissolved VARCHAR, assembled VARCHAR)"
  },
  {
    "answer": "SELECT dissolved FROM table_name_58 WHERE assembled = \"4 november 1461\"",
    "question_en": "What is the dissolved date of the parliament assembled on 4 November 1461?",
    "question_th": "วันที่ยุบสภาเมื่อวันที่ 4 พฤศจิกายน พ.ศ. 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_en": "Who is the 2nd member elected in 1461?",
    "question_th": "สมาชิกคนที่ 2 ได้รับเลือกเมื่อ พ.ศ. 1461 คือใคร?",
    "context": "CREATE TABLE table_name_46 (elected VARCHAR)"
  },
  {
    "answer": "SELECT dissolved FROM table_name_53 WHERE summoned = \"28 february 1467\"",
    "question_en": "What is the dissolved date of the parliament summoned on 28 February 1467?",
    "question_th": "รัฐสภาเรียกประชุมวันที่ 28 กุมภาพันธ์ พ.ศ. 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_en": "What is 2nd Member, when Assembled is \"30 March 1298\"?",
    "question_th": "สมาชิกคนที่ 2 คืออะไร เมื่อประกอบแล้วคือ \"30 มีนาคม 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_en": "What is 1st Member, when Summoned is \"14 July 1302\"?",
    "question_th": "สมาชิกคนที่ 1 คืออะไร เมื่อถูกอัญเชิญคือ \"14 กรกฎาคม 1302\"?",
    "context": "CREATE TABLE table_name_82 (summoned VARCHAR)"
  },
  {
    "answer": "SELECT assembled FROM table_name_55 WHERE summoned = \"6 october 1297\"",
    "question_en": "What is Assembled, when Summoned is \"6 October 1297\"?",
    "question_th": "อะไรคือ Assembled เมื่อถูกอัญเชิญคือ \"6 ตุลาคม 1297\"?",
    "context": "CREATE TABLE table_name_55 (assembled VARCHAR, summoned VARCHAR)"
  },
  {
    "answer": "SELECT summoned FROM table_name_23 WHERE elected = \"march 1298\"",
    "question_en": "What is Summoned, when Elected is \"March 1298\"?",
    "question_th": "สิ่งที่ถูกอัญเชิญเมื่อได้รับเลือกคือ \"มีนาคม 1298\"?",
    "context": "CREATE TABLE table_name_23 (summoned VARCHAR, elected VARCHAR)"
  },
  {
    "answer": "SELECT planet FROM table_name_31 WHERE sanskrit_word = \"budha\"",
    "question_en": "Which Planet has a Sanskrit word of budha?",
    "question_th": "ดาวเคราะห์ดวงใดมีคำภาษาสันสกฤตว่า พุทธะ?",
    "context": "CREATE TABLE table_name_31 (planet VARCHAR, sanskrit_word VARCHAR)"
  },
  {
    "answer": "SELECT thai_name FROM table_name_55 WHERE transcription = \"wan phruehatsabodi\"",
    "question_en": "WHich Thai name has a Transcription of wan phruehatsabodi?",
    "question_th": "ชื่อไทยใดมีอักษรว่า วัน พฤหัสบดี?",
    "context": "CREATE TABLE table_name_55 (thai_name VARCHAR, transcription VARCHAR)"
  },
  {
    "answer": "SELECT thai_name FROM table_name_29 WHERE transcription = \"wan phruehatsabodi\"",
    "question_en": "Show the Thai name of wan phruehatsabodi?",
    "question_th": "แสดงชื่อไทยว่า วัน พฤหัสบดี ?",
    "context": "CREATE TABLE table_name_29 (thai_name VARCHAR, transcription VARCHAR)"
  },
  {
    "answer": "SELECT color FROM table_name_19 WHERE thai_name = \"วันพฤหัสบดี\"",
    "question_en": "Show the Color which has a Thai name of วันพฤหัสบดี?",
    "question_th": "แสดงสีซึ่งมีชื่อไทยว่า พฤหัสบดี?",
    "context": "CREATE TABLE table_name_19 (color VARCHAR, thai_name VARCHAR)"
  },
  {
    "answer": "SELECT color FROM table_name_16 WHERE transcription = \"wan suk\"",
    "question_en": "Which Color has a Transcription of wan suk?",
    "question_th": "สีไหนมีอักษรว่า วรรณสุข ?",
    "context": "CREATE TABLE table_name_16 (color VARCHAR, transcription VARCHAR)"
  },
  {
    "answer": "SELECT english_name FROM table_name_54 WHERE color = \"green\"",
    "question_en": "Which English name has a Color of green?",
    "question_th": "ชื่อภาษาอังกฤษใดมีสีเขียว?",
    "context": "CREATE TABLE table_name_54 (english_name VARCHAR, color VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_70 WHERE player = \"gil morgan\"",
    "question_en": "What is Gil Morgan's Place?",
    "question_th": "กิล มอร์แกนส์ เพลส คืออะไร",
    "context": "CREATE TABLE table_name_70 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_43 WHERE to_par = \"–5\"",
    "question_en": "What is the Place of the Player with a To par of –5?",
    "question_th": "ตำแหน่งผู้เล่นที่มีพาร์ถึง –5 คืออะไร?",
    "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_en": "Which Player has a Money ($) of 137, and a Score of 73-70-73-74=290?",
    "question_th": "ผู้เล่นคนไหนมีเงิน ($) 137 และคะแนน 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_en": "Which To Par has a Money ($) of 350, and a Player of henry picard?",
    "question_th": "พาร์ไหนมีเงิน ($) 350 และผู้เล่นของเฮนรี่ พิการ์ด?",
    "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_en": "What year had Best Actor in a Musical as a category?",
    "question_th": "รางวัลนักแสดงนำชายยอดเยี่ยม สาขาละครเพลง ประจำปีใด",
    "context": "CREATE TABLE table_name_15 (year INTEGER, category VARCHAR)"
  },
  {
    "answer": "SELECT secretary FROM table_name_12 WHERE social_ao = \"lieke de boer\"",
    "question_en": "What Secretary has a Social AO of lieke de boer?",
    "question_th": "เลขานุการคนไหนมี Social AO ของ 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_en": "What Social AO has an External CO of elena buscher, and a President of harm van leeuwen?",
    "question_th": "Social AO ใดมี CO ภายนอกของ elena buscher และประธานของ 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_en": "What Social AO has an External CO of simonas savickas, and an Internal CO of pieter kuijsten?",
    "question_th": "Social AO ใดมี CO ภายนอกของ simonas savickas และ CO ภายในของ 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_en": "What Secretary has an Internal CO of isabel voets?",
    "question_th": "เลขานุการคนไหนมี CO ภายในของ 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_en": "What Academic AO has a President of harm van leeuwen?",
    "question_th": "AO นักวิชาการคนไหนมีประธานของ 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_en": "What Social AO has a President of harm van leeuwen?",
    "question_th": "AO สังคมอะไรมีประธานของอันตราย 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_en": "Which country has a to par of +2 for Bernhard Langer?",
    "question_th": "ประเทศใดมีคะแนนเท่ากับ +2 สำหรับ 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_en": "Which country has a score of 72 by Andrew Brooks?",
    "question_th": "ประเทศใดได้คะแนน 72 โดย 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_en": "What is Anders Forsbrand's score with a to par of +1?",
    "question_th": "คะแนนของ Anders Forsbrand โดยมีพาร์ +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_en": "What is the rad number for the dead end in rank 22?",
    "question_th": "หมายเลข rad ของทางตันในอันดับ 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_en": "What is the name of the dead end type ranked 22?",
    "question_th": "อันดับ 22 ประเภททางตันชื่ออะไร?",
    "context": "CREATE TABLE table_name_42 (name VARCHAR, type VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_6 WHERE rank = \"13\"",
    "question_en": "What is the type ranked 13?",
    "question_th": "อันดับที่ 13 ประเภทอะไร?",
    "context": "CREATE TABLE table_name_6 (type VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_79 WHERE points = 1344",
    "question_en": "Who had 1344 points?",
    "question_th": "ใครมี 1,344 คะแนน?",
    "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_en": "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?",
    "question_th": "จำนวนชัยชนะทั้งหมดที่มีการชนะมากกว่า 1136 แต่แพ้น้อยกว่า 15 ด้วย Ultima โดยใช้เวลาน้อยกว่า 2 ครั้งคือเท่าใด",
    "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_en": "What's the average number of wins for those with less than 2 byes?",
    "question_th": "จำนวนชัยชนะโดยเฉลี่ยสำหรับผู้ที่ผ่านไปน้อยกว่า 2 ครั้งคือเท่าใด",
    "context": "CREATE TABLE table_name_62 (wins INTEGER, byes INTEGER)"
  },
  {
    "answer": "SELECT MAX(losses) FROM table_name_20 WHERE wins > 13",
    "question_en": "What's the greatest losses for those with more than 13 wins?",
    "question_th": "อะไรคือความสูญเสียที่ยิ่งใหญ่ที่สุดสำหรับผู้ที่ชนะมากกว่า 13 ครั้ง?",
    "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_en": "What was the greatest number of wins for a team that had 7 losses and more than 0 draws?",
    "question_th": "จำนวนชัยชนะสูงสุดสำหรับทีมที่แพ้ 7 นัดและเสมอมากกว่า 0 ครั้งคือเท่าใด",
    "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_en": "What's the number of byes for someone who had 7 wins and an against number greater than 1412?",
    "question_th": "จำนวนบายสำหรับคนที่ชนะ 7 ครั้งและมากกว่า 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_en": "What's the total wins of a team with more than 2 byes?",
    "question_th": "ผลรวมชัยชนะของทีมที่บายมากกว่า 2 ครั้งคือเท่าไร?",
    "context": "CREATE TABLE table_name_11 (wins VARCHAR, byes INTEGER)"
  },
  {
    "answer": "SELECT player FROM table_name_81 WHERE finish = \"t16\"",
    "question_en": "Who had a finish of t16?",
    "question_th": "ใครจบ T16 บ้าง?",
    "context": "CREATE TABLE table_name_81 (player VARCHAR, finish VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_75 WHERE player = \"jack nicklaus\"",
    "question_en": "What country is jack nicklaus from?",
    "question_th": "แจ็ค นิคลอส มาจากประเทศอะไร?",
    "context": "CREATE TABLE table_name_75 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_46 WHERE total = 272",
    "question_en": "Who has a total of 272?",
    "question_th": "ใครมีทั้งหมด 272 บ้าง?",
    "context": "CREATE TABLE table_name_46 (player VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_46 WHERE year_s__won = \"1977\"",
    "question_en": "What country won in 1977?",
    "question_th": "ประเทศใดชนะในปี 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_en": "Can you tell me the total number of Draw that has the Artist of de spelbrekers, and the Points smaller than 0?",
    "question_th": "คุณช่วยบอกจำนวน Draw ทั้งหมดที่มี Artist of de spelbrekers และคะแนนน้อยกว่า 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_en": "Can you tell me the Artist that has the Draw smaller than 16, and the English translation of lullaby?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าศิลปินที่มี Draw เล็กกว่า 16 และเพลงกล่อมเด็กแปลเป็นภาษาอังกฤษ?",
    "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_en": "Can you tell me the English translation that has the Artist of camillo felgen?",
    "question_th": "คุณช่วยบอกฉันคำแปลภาษาอังกฤษที่มีศิลปินของ 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_en": "What is the population of the town with an area larger than 3.09?",
    "question_th": "จำนวนประชากรของเมืองที่มีพื้นที่มากกว่า 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_en": "What is the area of the community with a census ranking of 636 of 5,008?",
    "question_th": "พื้นที่ของชุมชนที่มีการสำรวจสำมะโนประชากร 636 จาก 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_en": "What is the area of drummond village?",
    "question_th": "หมู่บ้านดรัมมอนด์ มีพื้นที่เท่าไร?",
    "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_en": "What is the status of the community with a census ranking of 2,418 of 5,008?",
    "question_th": "สถานะของชุมชนที่มีการสำรวจสำมะโนประชากร 2,418 จาก 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_en": "What is the area of the village with a census ranking of 1,442 of 5,008 and a population less than 1,778?",
    "question_th": "พื้นที่ของหมู่บ้านที่มีการสำรวจสำมะโนประชากร 1,442 จาก 5,008 คน และมีประชากรน้อยกว่า 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_en": "WHAT YEAR HAS A TO PAR SMALLER THAN 16, TOTAL 151?",
    "question_th": "ปีใดที่มีค่าพาร์น้อยกว่า 16 รวม 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_en": "WHAT IS THE TOTAL WITH A TO PAR OF 10?",
    "question_th": "ยอดรวมถึงพาร์ 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_en": "WHAT IS THE PLAYER WITH TOTAL LESS THAN 151, TO PAR OF 8?",
    "question_th": "ผู้เล่นที่มีค่ารวมน้อยกว่า 151 ถึงพาร์ 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_en": "Who is the player who has a total less than 4, no scottish cups, and a league cup greater than 0?",
    "question_th": "ใครคือผู้เล่นที่มีแต้มรวมน้อยกว่า 4 ไม่มีสก็อตติชคัพ และลีกคัพมากกว่า 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_en": "What is the sum of the scottish cup of the forward player with less than 2 league cups and a total greater than 6?",
    "question_th": "ผลรวมของสกอตติช คัพ ของนักเตะกองหน้าที่น้อยกว่า 2 ลีกคัพ และรวมมากกว่า 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_en": "What was Kilgore's percentage when Potts (I) had 4% and Kaine (D) 47%, in the poll from October 30, 2005?",
    "question_th": "เปอร์เซ็นต์ของ Kilgore เป็นเท่าใดเมื่อ Potts (I) มี 4% และ Kaine (D) 47% ในการสำรวจความคิดเห็นตั้งแต่วันที่ 30 ตุลาคม 2548",
    "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_en": "On which date did Potts (I) poll at 9%?",
    "question_th": "Potts (I) สำรวจความคิดเห็นที่ 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_en": "What was Kaine's (D) percentage in the Rasmussen poll on October 24, 2005?",
    "question_th": "เปอร์เซ็นต์ของ Kaine (D) ในการสำรวจความคิดเห็นของ Rasmussen เมื่อวันที่ 24 ตุลาคม พ.ศ. 2548 เป็นเท่าใด",
    "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_en": "What was Kaine's (D) percentage in the poll on October 30, 2005?",
    "question_th": "เปอร์เซ็นต์ของ Kaine (D) ในการสำรวจความคิดเห็นเมื่อวันที่ 30 ตุลาคม พ.ศ. 2548 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_55 (kaine__d_ VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT kilgore__r_ FROM table_name_95 WHERE potts__i_ = \"1%\"",
    "question_en": "What was Kilgore's (R) percentage when Potts (I) polled at 1%?",
    "question_th": "เปอร์เซ็นต์ของ Kilgore (R) เป็นเท่าใดเมื่อ Potts (I) ถึงขนาดที่ 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_en": "What was Kaine's (D) percentage in the poll on september 19, 2005?",
    "question_th": "เปอร์เซ็นต์ของ Kaine (D) ในการสำรวจความคิดเห็นเมื่อวันที่ 19 กันยายน พ.ศ. 2548 เป็นเท่าใด",
    "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_en": "What is To par, when Country is \"United States\", and when Player is \"Jay Haas\"?",
    "question_th": "อะไรคือ To par เมื่อประเทศคือ \"สหรัฐอเมริกา\" และเมื่อผู้เล่นคือ \"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_en": "What is Player, when Score is \"68-67-75-70=280\"?",
    "question_th": "Player คืออะไร เมื่อคะแนนเป็น \"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_en": "What is the result of the friendly competition on 23 January 2010?",
    "question_th": "ผลการแข่งขันกระชับมิตรวันที่ 23 มกราคม 2553 เป็นอย่างไร?",
    "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_en": "What is the venue of the match with a w result on 3 March 2010?",
    "question_th": "สนามที่จัดการแข่งขันและผลการแข่งขันในวันที่ 3 มีนาคม พ.ศ. 2553 คือที่ใด?",
    "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_en": "What is the lowest Year, when Notes is \"5.19km, 18controls\"?",
    "question_th": "ปีต่ำสุดคือปีใดที่ Notes อยู่ที่ \"5.19 กม. 18 คอนโทรล\"?",
    "context": "CREATE TABLE table_name_24 (year INTEGER, notes VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_name_96 WHERE year = 2010",
    "question_en": "What is Notes, when Year is \"2010\"?",
    "question_th": "Notes คืออะไร เมื่อปีคือ \"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_en": "What winning score has in-kyung kim as the runner(s)-up?",
    "question_th": "อินคยองคิมมีคะแนนชนะอะไรบ้าง?",
    "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_en": "What winning score has kraft nabisco championship as the tournament?",
    "question_th": "การแข่งขันคราฟท์ นาบิสโก แชมเปี้ยนชิพ เป็นทัวร์นาเมนต์ที่ชนะคะแนนอะไร?",
    "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_en": "What Winning constructor has a Name of grand prix de la marne?",
    "question_th": "คอนสตรัคเตอร์ที่ชนะอะไรมีชื่อว่ากรังด์ปรีซ์เดอลามาร์น?",
    "context": "CREATE TABLE table_name_97 (winning_constructor VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT winning_driver FROM table_name_11 WHERE circuit = \"saint-raphaël\"",
    "question_en": "What kind of the Winning driver has a Circuit of saint-raphaël?",
    "question_th": "นักแข่ง Winning แบบไหนที่มี Circuit of saint-raphaël?",
    "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_en": "Name the Report with Winning constructor of maserati, and a Name of monza grand prix?",
    "question_th": "ตั้งชื่อรายงานด้วย Winning Constructor ของ maserati และชื่อของ 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_en": "Name the Report has a Name of lyon grand prix?",
    "question_th": "ตั้งชื่อรายงานว่ามีชื่อของ 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_en": "Name the Report which has heinrich-joachim von morgen?",
    "question_th": "ตั้งชื่อรายงานซึ่งมี 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_en": "Which player had a draft before 1975 and before round 6?",
    "question_th": "ผู้เล่นคนไหนมีดราฟท์ก่อนปี 1975 และก่อนรอบ 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_en": "What is Score, when Opponent Team is Belgium, and when Opponent is Kirsten Flipkens?",
    "question_th": "Score คืออะไร เมื่อทีมฝ่ายตรงข้ามคือเบลเยียม และเมื่อฝ่ายตรงข้ามคือ 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_en": "What is Opponent, when Round is World Group?",
    "question_th": "คู่ต่อสู้คืออะไร เมื่อ Round คือ 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_en": "What is Surface, when Edition is 2012, and when Outcome is Winner?",
    "question_th": "Surface คืออะไร เมื่อเป็น Edition คือปี 2012 และเมื่อใด Outcome จะเป็นผู้ชนะ",
    "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_en": "What is Score, when Outcome is Loser, and when Edition is 2011?",
    "question_th": "Score คืออะไร เมื่อ Outcome คือ Loser และเมื่อ Edition คือ 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_en": "What is Score, when Edition is 2011, and when Surface is Hard (i)?",
    "question_th": "Score คืออะไร เมื่อเป็นรุ่นปี 2011 และเมื่อใดคือ Surface 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_en": "What is Round, when Opponent Team is Slovakia, when Outcome is Loser, and when Edition is greater than 2010?",
    "question_th": "Round คืออะไร เมื่อทีมฝ่ายตรงข้ามคือสโลวาเกีย เมื่อผลลัพธ์คือผู้แพ้ และเมื่อรุ่นมากกว่าปี 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–7–1\"",
    "question_en": "In what Week was the Record 4–7–1?",
    "question_th": "บันทึก 4–7–1 เป็นสัปดาห์ใด",
    "context": "CREATE TABLE table_name_7 (week INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_62 WHERE attendance = \"63,546\"",
    "question_en": "On what Date was the Attendance 63,546?",
    "question_th": "มีผู้เข้าร่วม 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_en": "In what Week was the Attendance 17,737?",
    "question_th": "ผู้เข้าร่วม 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_en": "What is the Result of the game after Week 10 against Philadelphia Eagles?",
    "question_th": "ผลลัพธ์ของเกมหลังสัปดาห์ที่ 10 กับฟิลาเดลเฟีย อีเกิลส์เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_26 (result VARCHAR, week VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_28 WHERE week = 11",
    "question_en": "What is the Opponent on Week 11?",
    "question_th": "ฝ่ายตรงข้ามในสัปดาห์ที่ 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_en": "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?",
    "question_th": "ค่าเฉลี่ยเกม WNBA ที่ใหญ่ที่สุดคือเท่าใด โดยที่ 9,290 (อันดับที่ 4) คือค่าเฉลี่ย และน้อยกว่า 157,934 คือผลรวมสำหรับปี",
    "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_en": "How many years in all was less than 105,005 the total for the year?",
    "question_th": "รวมทั้งหมดกี่ปีก็น้อยกว่า 105,005 ปี?",
    "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_en": "What is the maximum sellouts for the 2008 year, with less than 161,369 total for year?",
    "question_th": "ยอดขายสูงสุดในปี 2551 โดยมีจำนวนรวมน้อยกว่า 161,369 รายการต่อปีคือเท่าใด",
    "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_en": "What is the highest First Elected, when Party is \"Republican\", and when District is \"Louisiana 7\"?",
    "question_th": "การเลือกตั้งสูงสุดครั้งแรกคืออะไร เมื่อพรรคเป็น \"รีพับลิกัน\" และเมื่อเขตคือ \"ลุยเซียนา 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_en": "What is Party, when Results is \"Re-Elected\", and when District is \"Louisiana 5\"?",
    "question_th": "พรรคคืออะไร เมื่อผลลัพธ์คือ \"การเลือกตั้งใหม่\" และเมื่อเขตคือ \"ลุยเซียนา 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_en": "What is Party, when Incumbent is \"Rodney Alexander\"?",
    "question_th": "Party คืออะไร ในเมื่อผู้ดำรงตำแหน่งคือ \"Rodney Alexander\"?",
    "context": "CREATE TABLE table_name_52 (party VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT results FROM table_name_93 WHERE first_elected < 1988",
    "question_en": "What is Results, when First Elected is less than 1988?",
    "question_th": "ผลลัพธ์คืออะไร เมื่อการเลือกตั้งครั้งแรกน้อยกว่าปี 1988",
    "context": "CREATE TABLE table_name_93 (results VARCHAR, first_elected INTEGER)"
  },
  {
    "answer": "SELECT incumbent FROM table_name_7 WHERE district = \"louisiana 4\"",
    "question_en": "What is Incumbent, when District is \"Louisiana 4\"?",
    "question_th": "ผู้ดำรงตำแหน่งคืออะไร เมื่อเขตคือ \"ลุยเซียนา 4\"?",
    "context": "CREATE TABLE table_name_7 (incumbent VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_33 WHERE car_number = \"6\"",
    "question_en": "What's the finish for car number 6?",
    "question_th": "รถหมายเลข 6 จบแบบไหน?",
    "context": "CREATE TABLE table_name_33 (finish VARCHAR, car_number VARCHAR)"
  },
  {
    "answer": "SELECT speed_rank FROM table_name_11 WHERE year = \"1963\"",
    "question_en": "What's the speed rank in 1963?",
    "question_th": "อันดับความเร็วในปี 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_en": "What is the total of Losses with a Result of runner-up, Wins of 1, and a Year smaller than 2006?",
    "question_th": "ผลรวมของการแพ้โดยผลการแข่งขันรองชนะเลิศ ชัยชนะ 1 ครั้ง และน้อยกว่าปี 2549 หนึ่งปีเป็นเท่าใด",
    "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_en": "What is the smallest Draws with a Result of runner-up, and Losses larger than 1?",
    "question_th": "การเสมอที่น้อยที่สุดพร้อมผลการแข่งขันรองชนะเลิศและการแพ้ที่มากกว่า 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_en": "What is the number of Year with a Result of champions, and Matches larger than 5?",
    "question_th": "จำนวนปีที่มีผลลัพธ์ของแชมป์เปี้ยนและแมตช์ที่มากกว่า 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_en": "What is the greatest Wins with Losses larger than 1?",
    "question_th": "การชนะที่ยิ่งใหญ่ที่สุดและการสูญเสียมากกว่า 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_en": "What is the total number of Year with Wins of 1, and Losses smaller than 1?",
    "question_th": "จำนวนปีทั้งหมดที่ชนะ 1 และแพ้น้อยกว่า 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_en": "What is the greatest Wins with Matches smaller than 5, and a Year of 1994?",
    "question_th": "ชัยชนะที่ยิ่งใหญ่ที่สุดโดยมีแมตช์น้อยกว่า 5 และปี 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_en": "On what date was Motherwell the opponent at Fir Park?",
    "question_th": "Motherwell เป็นคู่ต่อสู้ที่ 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_en": "What is the round at St. Mirren Park with more than 4,555 people attending?",
    "question_th": "รอบที่ St. Mirren Park ที่มีผู้เข้าร่วมมากกว่า 4,555 คนคือรอบใด",
    "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_en": "What's the sum of attendance when banbury united is the away team and tie no is over 102?",
    "question_th": "ผลรวมของการเข้าเล่นเมื่อบันเบอรี ยูไนเต็ด เป็นทีมเยือน และเสมอไม่มากกว่า 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_en": "What's the sum of tie no for home team burgess hill town?",
    "question_th": "ผลรวมของการเสมอไม่สำหรับทีมเหย้า เบอร์เกส ฮิลล์ ทาวน์ เป็นเท่าไหร่?",
    "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_en": "What is the highest population of Deuel county's 1,819 households?",
    "question_th": "ประชากร 1,819 ครัวเรือนในเทศมณฑล Deuel มีจำนวนมากที่สุดคือเท่าใด",
    "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_en": "When the venue is away and the opponents are the bracknell bees, what is the competition?",
    "question_th": "เมื่อสนามไม่อยู่และฝ่ายตรงข้ามคือผึ้งแบร็กเนลล์ การแข่งขันจะเป็นอย่างไร?",
    "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_en": "What opponent played on the 28th with a venue of away?",
    "question_th": "คู่ต่อสู้คนใดเล่นในวันที่ 28 ด้วยสนามเยือน?",
    "context": "CREATE TABLE table_name_76 (opponent VARCHAR, venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_29 WHERE date = \"20th\"",
    "question_en": "What was the venue on the 20th?",
    "question_th": "วันที่ 20 จัดขึ้นที่ไหนบ้าง?",
    "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_en": "When did the peterborough phantoms play at a venue of home?",
    "question_th": "เหล่าภูตผีปีเตอร์โบโร่เล่นในบ้านเมื่อไหร่?",
    "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_en": "Which opponent has a result of 2-0 l?",
    "question_th": "คู่ต่อสู้คนไหนมีผล 2-0 ลิตร?",
    "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_en": "Which opponent completed a challenge competition with a result of 8-2 w?",
    "question_th": "คู่ต่อสู้คนใดจบการแข่งขันที่ท้าทายด้วยสกอร์ 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ücken\"",
    "question_en": "What shows for round when the race was Int. Adac Preis Von Zweibrücken?",
    "question_th": "สิ่งที่แสดงให้เห็นในรอบเมื่อการแข่งขันเป็น Int. อแดค พริส ฟอน ซไวบรึคเคิน?",
    "context": "CREATE TABLE table_name_43 (round VARCHAR, race VARCHAR)"
  },
  {
    "answer": "SELECT AVG(round) FROM table_name_43 WHERE circuit = \"norisring\"",
    "question_en": "What is the round for the Norisring circuit?",
    "question_th": "วงจร Norisring มีรอบเท่าไร?",
    "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_en": "What race was a round smaller than 8,  on 6 july?",
    "question_th": "การแข่งขันรอบใดที่มีรอบน้อยกว่า 8 ในวันที่ 6 กรกฎาคม?",
    "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_en": "What is the round for the Int. Adac-Preis Der Tourenwagen Von Sachsen-Anhalt?",
    "question_th": "รอบ Int. จะเป็นอย่างไร อแดค-เปรส์ แดร์ ตูเรนวาเกน ฟอน ซัคเซ่น-อันฮัลท์?",
    "context": "CREATE TABLE table_name_92 (round VARCHAR, race VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(week) FROM table_name_29 WHERE attendance = 56 OFFSET 023",
    "question_en": "What week were there 56,023 people in attendance?",
    "question_th": "มีผู้เข้าร่วม 56,023 คนในสัปดาห์ใด?",
    "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_en": "What is the attendance number later than week 9 on November 20, 1983?",
    "question_th": "จำนวนผู้เข้าร่วมหลังสัปดาห์ที่ 9 เมื่อวันที่ 20 พฤศจิกายน 2526 เป็นเท่าใด",
    "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_en": "What is Surface, when Date is less than 1979, and when Opponent in the Final is \"Bill Scanlon\"?",
    "question_th": "Surface คืออะไร เมื่อ Date น้อยกว่าปี 1979 และเมื่อฝ่ายตรงข้ามในรอบชิงชนะเลิศคือ \"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_en": "What is Score in The Final, when Opponent in The Final is \"John McEnroe\", and when Championship is \"Los Angeles , U.S.\"?",
    "question_th": "คะแนนในรอบชิงชนะเลิศคืออะไร เมื่อฝ่ายตรงข้ามในรอบชิงชนะเลิศคือ \"John McEnroe\" และเมื่อการแข่งขันชิงแชมป์คือ \"Los Angeles , US\"",
    "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_en": "What is Outcome, when Opponent in The Final is \"Bill Scanlon\"?",
    "question_th": "ผลลัพธ์คืออะไรเมื่อคู่ต่อสู้ในรอบชิงชนะเลิศคือ \"บิล สแคนลอน\"?",
    "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_en": "Which To par has a Player of bernhard langer?",
    "question_th": "นักเตะของแบร์นฮาร์ด แลงเกอร์มีพาร์ไหน?",
    "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_en": "Which Score has a Country of united states, and a Player of raymond floyd?",
    "question_th": "Score ใดมีประเทศเป็นสหรัฐอเมริกา และเป็นผู้เล่นของ 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_en": "Which To par has a Place of t6, and a Player of nick faldo?",
    "question_th": "ทูพาร์ใดมีอันดับ t6 และผู้เล่นของนิค ฟัลโด?",
    "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_en": "Which To par has a Place of t2, and a Player of mark james?",
    "question_th": "พาร์ไหนมีอันดับ t2 และผู้เล่นของมาร์ค เจมส์?",
    "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_en": "Which Country has a Place of t10, and a Player of tony jacklin?",
    "question_th": "ประเทศใดมีอันดับ t10 และมีผู้เล่นของ 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_en": "Which Country has a Score of 71-74-70=215?",
    "question_th": "ประเทศใดมีคะแนน 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_en": "How many losses for the team with less than 4 wins, more than 0 byes and 2510 against?",
    "question_th": "ทีมที่ชนะน้อยกว่า 4 แพ้ 0 มากกว่าและแพ้ 2510 กี่ครั้ง?",
    "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_en": "How many wins for team with 1800 Against and more than 0 byes?",
    "question_th": "ทีมที่ชนะ 1800 Against และบายมากกว่า 0 ชนะกี่ครั้ง?",
    "context": "CREATE TABLE table_name_64 (wins INTEGER, against VARCHAR, draws VARCHAR)"
  },
  {
    "answer": "SELECT MIN(wins) FROM table_name_42 WHERE against < 814",
    "question_en": "What is the least wins for a team with against less than 814?",
    "question_th": "ชัยชนะน้อยที่สุดสำหรับทีมที่แพ้น้อยกว่า 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_en": "How many losses for the team with 3 wins and more than 1919 against?",
    "question_th": "แพ้ไปกี่ครั้งสำหรับทีมที่ชนะ 3 ครั้งและแพ้มากกว่าปี 1919?",
    "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_en": "What is the 2002 result where 2011 and 2000 are 1R?",
    "question_th": "ผลลัพธ์ปี 2545 คืออะไรโดยที่ปี 2554 และ 2543 เป็น 1R",
    "context": "CREATE TABLE table_name_22 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2008 FROM table_name_34 WHERE 2003 = \"325\"",
    "question_en": "What is the 2008 result where 2003 is 325?",
    "question_th": "ผลลัพธ์ปี 2008 คืออะไรโดยที่ปี 2003 คือ 325",
    "context": "CREATE TABLE table_name_34 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2002 FROM table_name_38 WHERE 2006 = \"a\" AND 2010 = \"q1\"",
    "question_en": "What is the 2002 result when 2006 is A and 2010 is Q1?",
    "question_th": "ผลลัพธ์ในปี 2545 คืออะไรเมื่อปี 2549 เป็น A และปี 2553 คือไตรมาสที่ 1",
    "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_en": "Which Year completed has a Dam type of concrete gravity, and an Impounded body of water of deep creek reservoir?",
    "question_th": "ปีใดที่สร้างเสร็จมีเขื่อนคอนกรีตแรงโน้มถ่วง และมีแหล่งกักเก็บน้ำจากลำห้วยลึก",
    "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_en": "Which dam type was completed in 1961?",
    "question_th": "เขื่อนประเภทใดที่สร้างเสร็จในปี พ.ศ. 2504?",
    "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_en": "Which Year completed has a Dam type of earthfill embankment, and a Dam constructed of khancoban dam?",
    "question_th": "ปีใดที่สร้างเสร็จมีเขื่อนแบบถมดิน และเขื่อนสร้างเขื่อนคานโคบัน?",
    "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_en": "Which Reservoir capacity has an Impounded body of water of tumut two pondage?",
    "question_th": "อ่างเก็บน้ำใดมีความจุกักเก็บน้ำได้ 2 บ่อ?",
    "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 −0.0104\"",
    "question_en": "What Companion (in order from star) has a Semimajor axis (AU) of 0.1886 +0.083 −0.0104?",
    "question_th": "คู่หูใด (เรียงตามดาว) มีแกนเซมิเจอร์ (AU) เท่ากับ 0.1886 +0.083 −0.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 −0.11\"",
    "question_en": "What Inclination has Eccentricity of 0.06 +0.06 −0.11?",
    "question_th": "ความเอียงใดมีความเยื้องศูนย์ที่ 0.06 +0.06 −0.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 −0.0049\"",
    "question_en": "What Companion (in order from star) has an Orbital period (s day) of 9.6184 +0.0050 −0.0049?",
    "question_th": "คู่หูใด (เรียงตามดาว) มีคาบการโคจร (s วัน) เท่ากับ 9.6184 +0.0050 −0.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 = \"≥ 6.6 +1.1 −1.0 m⊕\"",
    "question_en": "What Inclination has a Mass of ≥ 6.6 +1.1 −1.0 m⊕?",
    "question_th": "ความโน้มเอียงใดมีมวล ≥ 6.6 +1.1 −1.0 m⊕",
    "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_en": "What Semimajor axis (AU) has a Companion (in order from star) of g?",
    "question_th": "แกนเซมิเมเจอร์ (AU) ใดที่มีคู่หู (เรียงตามดาว) เป็น 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 = \"≥ 3.5 ± 1.4 m⊕\"",
    "question_en": "What Semimajor axis (AU) has a Mass of ≥ 3.5 ± 1.4 m⊕?",
    "question_th": "แกนเซมิเมเจอร์ (AU) ใดมีมวล ≥ 3.5 ± 1.4 m⊕",
    "context": "CREATE TABLE table_name_73 (semimajor_axis___au__ VARCHAR, mass VARCHAR)"
  },
  {
    "answer": "SELECT slalom FROM table_name_2 WHERE country = \"switzerland\"",
    "question_en": "What Slalom was Switzerland in?",
    "question_th": "สวิตเซอร์แลนด์อยู่สลาลมอะไร?",
    "context": "CREATE TABLE table_name_2 (slalom VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT package_version FROM table_name_74 WHERE carrier = \"telus mobility\"",
    "question_en": "WHAT IS THE PACKAGE VERSION WITH TELUS MOBILITY?",
    "question_th": "แพ็คเกจที่มี 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_en": "WHAT IS THE PACKAGE VERSION FOR blackberry storm 9530, APPLICATION 5.0.0.419, AND MTS MOBILITY?",
    "question_th": "แพ็คเกจเวอร์ชันสำหรับ blackberry storm 9530, แอปพลิเคชัน 5.0.0.419 และ 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_en": "WHAT IS THE CARRIER WITH 5.0.0.742 VERSION?",
    "question_th": "ผู้ให้บริการเวอร์ชัน 5.0.0.742 คืออะไร?",
    "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_en": "WHAT IS THE CARRIER FOR 4.7.0.208 VERSION?",
    "question_th": "ผู้ให้บริการสำหรับเวอร์ชัน 4.7.0.208 คืออะไร?",
    "context": "CREATE TABLE table_name_25 (carrier VARCHAR, package_version VARCHAR)"
  },
  {
    "answer": "SELECT device FROM table_name_18 WHERE carrier = \"mts mobility\"",
    "question_en": "WHAT IS THE DEVICE WITH MTS MOBILITY?",
    "question_th": "อุปกรณ์ที่มีความคล่องตัว MTS คืออะไร?",
    "context": "CREATE TABLE table_name_18 (device VARCHAR, carrier VARCHAR)"
  },
  {
    "answer": "SELECT SUM(money___) AS $__ FROM table_name_93 WHERE to_par = 15",
    "question_en": "How much money was there when the to par was 15?",
    "question_th": "ตอนที่พาร์ 15 มีเงินเท่าไหร่?",
    "context": "CREATE TABLE table_name_93 (money___ INTEGER, to_par VARCHAR)"
  },
  {
    "answer": "SELECT years FROM table_name_97 WHERE model = \"250\"",
    "question_en": "What are the years for the 250 model?",
    "question_th": "รุ่น 250 คือปีไหนคะ?",
    "context": "CREATE TABLE table_name_97 (years VARCHAR, model VARCHAR)"
  },
  {
    "answer": "SELECT power FROM table_name_67 WHERE chassis_code = \"w123.130\"",
    "question_en": "What is the power of the Chassis code w123.130?",
    "question_th": "พลังของรหัสแชสซี 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_en": "What Engine does the w123.026 chassis have?",
    "question_th": "แชสซี w123.026 มีเครื่องยนต์อะไรบ้าง?",
    "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_en": "What Chassis code has a 200d model and a Power of ps (kw; hp) @ 4200?",
    "question_th": "รหัสแชสซีใดมีรุ่น 200d และกำลัง 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_en": "What is the height in ft and m of the regions bank building?",
    "question_th": "อาคารธนาคารภูมิภาคมีความสูงเป็นฟุตและเมตรเท่าไหร่?",
    "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_en": "What is the street address of the van antwerp building?",
    "question_th": "ที่อยู่ของอาคาร van antwerp คืออะไร?",
    "context": "CREATE TABLE table_name_9 (street_address VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT height_ft__m_ FROM table_name_12 WHERE floors < 11",
    "question_en": "What is the hight in ft and m of the building with less than 11 floors?",
    "question_th": "อาคารที่มีความสูงน้อยกว่า 11 ชั้นมีความสูงเป็นฟุตและเมตรเป็นเท่าใด",
    "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_en": "What is the against when the opposing team is Italy?",
    "question_th": "จะต่อต้านอะไรเมื่อทีมตรงข้ามคืออิตาลี?",
    "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_en": "What is Cha Bum-Kun's average number of goals per match?",
    "question_th": "ค่าเฉลี่ยประตูของ ชา บุ๋ม-กุล คือเท่าไร?",
    "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_en": "How many caps does Jon Dahl Tomasson, who has less than 0.46 goals per match, have?",
    "question_th": "จอน ดาห์ล โทมัสสัน ที่ยิงน้อยกว่า 0.46 ประตูต่อนัด ลงเล่นได้กี่แคป?",
    "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_en": "What is the club from Vila Do Conde?",
    "question_th": "สโมสรจาก Vila Do Conde คืออะไร?",
    "context": "CREATE TABLE table_name_61 (club VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT stadium FROM table_name_88 WHERE city = \"braga\"",
    "question_en": "What is the stadium for the city of Braga?",
    "question_th": "สนามกีฬาของเมืองบรากาคืออะไร?",
    "context": "CREATE TABLE table_name_88 (stadium VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_16 WHERE player = \"kelsey tessier\"",
    "question_en": "In what round was Kelsey Tessier drafted?",
    "question_th": "Kelsey Tessier ถูกดราฟท์ในรอบไหน?",
    "context": "CREATE TABLE table_name_16 (round VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT Local AS mission FROM table_name_8 WHERE mission = \"mauritius\"",
    "question_en": "What is Local Mission, when Mission is \"Mauritius\"?",
    "question_th": "ภารกิจท้องถิ่นคืออะไร เมื่อภารกิจคือ \"มอริเชียส\"",
    "context": "CREATE TABLE table_name_8 (Local VARCHAR, mission VARCHAR)"
  },
  {
    "answer": "SELECT local_position FROM table_name_92 WHERE mission = \"paraguay\"",
    "question_en": "What is Local Position, when Mission is \"Paraguay\"?",
    "question_th": "ตำแหน่งท้องถิ่นคืออะไร เมื่อภารกิจคือ \"ปารากวัย\"?",
    "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_en": "What is Local Location, when Resident Country is \"Belgium\", and when Mission is \"Poland\"?",
    "question_th": "ตำแหน่งท้องถิ่นคืออะไร เมื่อประเทศถิ่นที่อยู่คือ \"เบลเยียม\" และเมื่อใดภารกิจคือ \"โปแลนด์\"",
    "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_en": "What is Resident Country, when Local Location is \"Copenhagen\"?",
    "question_th": "Resident Country คืออะไร เมื่อตำแหน่งท้องถิ่นคือ \"โคเปนเฮเกน\"",
    "context": "CREATE TABLE table_name_79 (resident_country VARCHAR, local_location VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_66 WHERE place = \"1\"",
    "question_en": "What is Player, when Place is \"1\"?",
    "question_th": "Player คืออะไร เมื่ออันดับคือ \"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_en": "What is Score, when Country is \"United States\", when Place is \"T3\", and when Player is \"Phil Blackmar\"?",
    "question_th": "คะแนนคืออะไร เมื่อประเทศคือ \"สหรัฐอเมริกา\" เมื่ออันดับคือ \"T3\" และเมื่อผู้เล่นคือ \"ฟิล แบล็คมาร์\"",
    "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_en": "What is To Par, when Country is \"Australia\"?",
    "question_th": "To Par คืออะไร เมื่อประเทศคือ \"ออสเตรเลีย\"?",
    "context": "CREATE TABLE table_name_25 (to_par VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_41 WHERE player = \"vijay singh\"",
    "question_en": "What is Score, when Player is \"Vijay Singh\"?",
    "question_th": "Score คืออะไร เมื่อผู้เล่นคือ \"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_en": "What type of surface did they play on 23 October 2000?",
    "question_th": "พวกเขาเล่นพื้นผิวประเภทใดในวันที่ 23 ตุลาคม พ.ศ. 2543?",
    "context": "CREATE TABLE table_name_67 (surface VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_14 WHERE date = \"21 july 1997\"",
    "question_en": "What type of surface did they play on 21 July 1997",
    "question_th": "พวกเขาเล่นพื้นผิวประเภทใดในวันที่ 21 กรกฎาคม พ.ศ. 2540",
    "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_en": "what was the score of the Championship match played in Estoril, Portugal?",
    "question_th": "แมตช์ชิงแชมป์ที่เล่นที่เมืองเอสโตริล ประเทศโปรตุเกส ได้คะแนนเท่าไหร่?",
    "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_en": "What was the name of the opponent Tommy Haas played in the Championship?",
    "question_th": "ชื่อคู่แข่งของ Tommy Haas ที่เล่นในการแข่งขัน 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_en": "What was the score of the match played on 18 January 1999?",
    "question_th": "แมตช์ที่เล่นเมื่อวันที่ 18 มกราคม พ.ศ. 2542 เป็นคะแนนเท่าใด?",
    "context": "CREATE TABLE table_name_48 (outcome VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_15 WHERE opponent = \"roma\"",
    "question_en": "What season has roma as the opponent?",
    "question_th": "ฤดูกาลไหนที่โรม่าเป็นคู่แข่ง?",
    "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_en": "What is the Ship Type of the Prize Disposition of ship and a tonnage less than 151?",
    "question_th": "ประเภทเรือของการจัดการรางวัลของเรือคืออะไรและมีน้ำหนักน้อยกว่า 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_en": "What is the highest tonnage of the Brig Ship Type and the disposition of Ship of Prize?",
    "question_th": "น้ำหนักสูงสุดของเรือสำเภาประเภท Brig Ship และการจัดการ 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_en": "What's the to par for england when the score is less than 71?",
    "question_th": "อังกฤษจะได้พาร์เท่าไหร่เมื่อสกอร์ต่ำกว่า 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_en": "What is the lowest total for 1985-1986 when the total points are 124?",
    "question_th": "คะแนนรวมต่ำสุดในปี 1985-1986 เมื่อคะแนนรวมคือ 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_en": "Which Year born (Age) has a Current Club of sporting al riyadi beirut, and a Position of pf?",
    "question_th": "ปีเกิด (อายุ) ใดมีสโมสรกีฬาอัลริยาดีเบรุตในปัจจุบัน และตำแหน่ง 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_en": "Which Current Club has a Player of bassem balaa?",
    "question_th": "สโมสรใดในปัจจุบันที่มีผู้เล่นของบาสเซม บาลา?",
    "context": "CREATE TABLE table_name_97 (current_club VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_43 WHERE year = 1968",
    "question_en": "What was the round in 1968?",
    "question_th": "ปี 1968 รอบนี้เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_43 (round VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_19 WHERE year < 1987",
    "question_en": "What is the round for a year earlier than 1987?",
    "question_th": "หนึ่งปีก่อนหน้าปี 1987 มีรอบอะไรบ้าง?",
    "context": "CREATE TABLE table_name_19 (round VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT round FROM table_name_92 WHERE grand_slam = \"davis cup\"",
    "question_en": "What is the round when Grand Slam was the Davis Cup?",
    "question_th": "แกรนด์สแลมเป็นเดวิสคัพรอบอะไร?",
    "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_en": "What is the grand slam in 1987, when round shows first round, and Ivan Lendl won?",
    "question_th": "แกรนด์สแลมในปี 1987 คืออะไรเมื่อรอบแสดงรอบแรกและ Ivan Lendl ชนะ?",
    "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ávez\" AND lost < 4",
    "question_en": "What is the highes win % that manager juan carlos chávez's team had when they lost less than 4 times?",
    "question_th": "เปอร์เซ็นต์ชัยชนะสูงสุดที่ทีมของผู้จัดการทีม ฮวน คาร์ลอส ชาเวซ มีเมื่อพวกเขาแพ้น้อยกว่า 4 ครั้งเป็นเท่าใด?",
    "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_en": "In which district is the incumbent a republican first elected in 1998?",
    "question_th": "ผู้ดำรงตำแหน่งพรรครีพับลิกันได้รับการเลือกตั้งครั้งแรกในเขตใดในปี 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_en": "What is the party affiliation of Virginia Foxx?",
    "question_th": "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_en": "What is Event, when Winning Driver is \"Laurent Aiello Laurent Aiello\", when Round is greater than 1, and when Circuit is \"Wunstorf\"?",
    "question_th": "เหตุการณ์คืออะไร เมื่อนักแข่งที่ชนะคือ \"Laurent Aiello Laurent Aiello\" เมื่อรอบมีค่ามากกว่า 1 และเมื่อ Circuit คือ \"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_en": "What is Date, when Round is \"2\"?",
    "question_th": "วันที่คืออะไร เมื่อรอบเป็น \"2\"?",
    "context": "CREATE TABLE table_name_38 (date VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_62 WHERE round = 10",
    "question_en": "What is Event, when Round is \"10\"?",
    "question_th": "เหตุการณ์คืออะไร เมื่อรอบคือ \"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_en": "What is Date, when Round is less than 10, and when Circuit is \"Norisring\"?",
    "question_th": "วันที่คืออะไร เมื่อรอบน้อยกว่า 10 และเมื่อใดที่ Circuit เป็น \"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_en": "What is the highest goal difference of the club with more than 34 played?",
    "question_th": "อะไรคือผลต่างประตูสูงสุดของสโมสรที่เล่นมากกว่า 34 ประตู?",
    "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_en": "What is the total number of points of the club with a goal difference greater than 17 and more than 34 played?",
    "question_th": "จำนวนคะแนนรวมของสโมสรที่มีประตูเสียมากกว่า 17 และมากกว่า 34 แต้มคือเท่าไร?",
    "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_en": "What is the lowest goal difference of club real betis, who has less than 18 wins?",
    "question_th": "อะไรคือผลต่างประตูต่ำสุดของสโมสรเรอัลเบติสที่ชนะน้อยกว่า 18 ครั้ง?",
    "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_en": "What is the sum of the points of the club with more than 34 played?",
    "question_th": "คะแนนรวมของสโมสรที่เล่นเกิน 34 แต้มเป็นเท่าใด?",
    "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_en": "What is the lowest number played of the club with more than 15 wins and less than 42 goals against?",
    "question_th": "หมายเลขใดที่เล่นน้อยที่สุดของสโมสรโดยชนะมากกว่า 15 ประตูและเสียประตูน้อยกว่า 42 ประตูคือหมายเลขใด?",
    "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_en": "What is the total number of wins of the club with a goal difference less than 21, 4 draws, and less than 21 losses?",
    "question_th": "จำนวนชัยชนะรวมของสโมสรโดยมีผลต่างประตูน้อยกว่า 21, เสมอ 4 และแพ้น้อยกว่า 21 คือเท่าใด?",
    "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_en": "What is the round for the qualifying phase with a draw date on 16 July 2010?",
    "question_th": "รอบคัดเลือกรอบคัดเลือกวันที่ 16 กรกฎาคม 2553 มีรอบอะไรบ้าง?",
    "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_en": "Jack Nicklaus finished in what place?",
    "question_th": "แจ็ค นิคลอส จบที่จุดไหน?",
    "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_en": "What year (s) won was +2 the To par, and t22 the finish?",
    "question_th": "ปีไหนที่ชนะคือ +2 พาร์ และ t22 เข้าเส้นชัย?",
    "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_en": "Lee Trevino of the United States with a total greater than 294 had what To par?",
    "question_th": "Lee Trevino จากสหรัฐอเมริกาที่มีคะแนนรวมมากกว่า 294 จะต้องพาร์อะไร?",
    "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_en": "The golfer from Spain with a total less than 294 won in what year (s)?",
    "question_th": "นักกอล์ฟจากสเปนที่ทำเงินรวมน้อยกว่า 294 วอนในปีใด?",
    "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_en": "Which Nationality has a Pick # smaller than 130 and a Player of tyler bunz? Question 1",
    "question_th": "สัญชาติใดมี Pick # น้อยกว่า 130 และผู้เล่นของ tyler bunz? คำถามที่ 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_en": "Which League from has a Player of louis domingue?",
    "question_th": "ลีกไหนมีนักเตะ หลุยส์ โดมิงเก้ บ้าง?",
    "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_en": "Which League from has a NHL team of san jose sharks (from carolina) 3?",
    "question_th": "ลีกใดจากที่มีทีม NHL ของ San Jose Sharks (จาก 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ödertälje sk\"",
    "question_en": "Name the Nationality of södertälje sk?",
    "question_th": "ตั้งชื่อสัญชาติของ södertälje 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_en": "Which Team has a Pick # of 148?",
    "question_th": "ทีมใดมีสิทธิเลือก # จาก 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_en": "Which team has a League from of ontario hockey league, and a Player of tony dehart?",
    "question_th": "ทีมใดมีลีกจากออนแทรีโอฮอกกี้ลีก และมีผู้เล่นของ 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_en": "What is T4 Place Player Nick Price's Money?",
    "question_th": "เงินของ Nick Price's T4 Place Player คืออะไร?",
    "context": "CREATE TABLE table_name_40 (money___$__ VARCHAR, place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_44 WHERE place = \"1\"",
    "question_en": "What is the To par of the Place 1 Player?",
    "question_th": "To par ของผู้เล่นอันดับ 1 คืออะไร?",
    "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_en": "What Player's Score is 69-68-66-70=273?",
    "question_th": "คะแนนของผู้เล่นคือ 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 = \"−6\"",
    "question_en": "What Player's To par is −6?",
    "question_th": "พาร์ของผู้เล่นคนใดคือ −6?",
    "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_en": "Which Country has a To par larger than 3, and a Year(s) won of 1979? Question 1",
    "question_th": "ประเทศใดมี To par มากกว่า 3 และหนึ่งปีชนะในปี 1979? คำถามที่ 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_en": "Which To par has a Country of australia, and a Year(s) won of 1990?",
    "question_th": "To par ใดมีประเทศออสเตรเลีย และชนะปี 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_en": "Which city is in Cantabria?",
    "question_th": "เมืองใดอยู่ในกันตาเบรีย",
    "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_en": "What is the name of the city with the Socialist Party of the Extremadurian People?",
    "question_th": "ชื่อเมืองร่วมกับพรรคสังคมนิยมแห่งประชาชนเอ็กเตรมาดูเรียนคืออะไร?",
    "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ño\"",
    "question_en": "Which province has the partido Socialista del Pueblo Extremeño party?",
    "question_th": "จังหวัดใดมีพรรค Partido Socialista del Pueblo Extremeño?",
    "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_en": "When was the Partido radical party in Madrid registered?",
    "question_th": "พรรคหัวรุนแรง Partido ในมาดริดจดทะเบียนเมื่อใด",
    "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_en": "Which province is Pamplona located in?",
    "question_th": "ปัมโปลนาตั้งอยู่ในจังหวัดใด",
    "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_en": "On what date was the Canarian Workers Socialist Union registered?",
    "question_th": "สหภาพแรงงานสังคมนิยม Canarian Workers Socialist Union จดทะเบียนเมื่อใด",
    "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_en": "What is the lowest rank of Hungary where there was a total of 8 medals, including 2 silver?",
    "question_th": "อันดับต่ำสุดของฮังการีมีทั้งหมด 8 เหรียญ รวม 2 เหรียญเงินคือประเทศอะไร",
    "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_en": "What is the highest rank of Great Britain who has less than 16 bronze?",
    "question_th": "อันดับสูงสุดของบริเตนใหญ่ที่มีน้อยกว่า 16 เหรียญทองแดงคืออะไร?",
    "context": "CREATE TABLE table_name_11 (rank INTEGER, nation VARCHAR, bronze VARCHAR)"
  },
  {
    "answer": "SELECT injured FROM table_name_98 WHERE killed = \"29\"",
    "question_en": "What was the injured entry for the row with a killed entry of 29?",
    "question_th": "รายการที่ได้รับบาดเจ็บสำหรับแถวที่มีผู้เสียชีวิต 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_en": "What location has a killed of 100.9, and a year later than 1993?",
    "question_th": "สถานที่ใดมีผู้เสียชีวิต 100.9 คน และอีกหนึ่งปีต่อมาหลังจากปี 1993?",
    "context": "CREATE TABLE table_name_81 (location VARCHAR, year VARCHAR, killed VARCHAR)"
  },
  {
    "answer": "SELECT injured FROM table_name_16 WHERE country = \"venezuela\"",
    "question_en": "What was the injured entry for Venezuela?",
    "question_th": "การเข้ามาของเวเนซุเอลาที่ได้รับบาดเจ็บคืออะไร?",
    "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_en": "How old were Mitchell & Jessica when they danced the Cha-Cha-Cha?",
    "question_th": "Mitchell และ Jessica อายุเท่าไหร่เมื่อพวกเขาเต้น 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_en": "Who danced the Cha-Cha-Cha on November 18, 2008?",
    "question_th": "ใครเป็นคนเต้นชะชะช่า เมื่อวันที่ 18 พฤศจิกายน พ.ศ. 2551?",
    "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_en": "Who danced the Samba on October 14, 2008?",
    "question_th": "ใครเป็นคนเต้นแซมบ้าเมื่อวันที่ 14 ตุลาคม 2551",
    "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_en": "What was the pic for Canada for player Yvon Bouillon earlier than 1974?",
    "question_th": "รูปของนักเตะอีวอน บูยงที่แคนาดาก่อนปี 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_en": "What was the competition when the score was 3-0?",
    "question_th": "การแข่งขันเป็นอย่างไรเมื่อสกอร์เป็น 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_en": "Akin Ayodele drafted before round 7 plays what position?",
    "question_th": "อคิน อโยเดล ดราฟก่อนรอบ 7 ลงเล่นตำแหน่งอะไร?",
    "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_en": "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?",
    "question_th": "ผลรวมโดยรวมสำหรับการเลือกที่ไปก่อนรอบที่ 4 ซึ่งไปเรียนต่อวิทยาลัยในรัฐเทนเนสซี และได้รับเลือกด้วยตัวเลขที่มากกว่า 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_en": "What is the pick number average for the player who was drafted before round 7, and went to college at Tennessee?",
    "question_th": "ค่าเฉลี่ยการเลือกสำหรับผู้เล่นที่ถูกดราฟท์ก่อนรอบ 7 และไปเรียนวิทยาลัยที่เทนเนสซีคือเท่าใด",
    "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_en": "What visiting team played at the home of the Chicago Black Hawks with a record of 1-1?",
    "question_th": "ทีมเยือนทีมไหนเล่นในบ้านของชิคาโก แบล็ค ฮอว์กส์ ด้วยสถิติ 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_en": "What home team has a record of 4-3?",
    "question_th": "เจ้าบ้านทีมไหนมีสถิติ 4-3?",
    "context": "CREATE TABLE table_name_7 (home VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_49 WHERE record = \"4-3\"",
    "question_en": "What visiting team has a record of 4-3?",
    "question_th": "ทีมเยือนทีมไหนมีสถิติ 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_en": "What is the highest league up with less than 3 championships, a total less than 2, and a FA cup larger than 0?",
    "question_th": "อะไรคือลีกสูงสุดที่มีแชมป์น้อยกว่า 3 สมัย รวมน้อยกว่า 2 สมัย และเอฟเอ คัพ มากกว่า 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_en": "What is the average total for less than 1 championship?",
    "question_th": "ผลรวมเฉลี่ยสำหรับน้อยกว่า 1 แชมป์คือเท่าไร?",
    "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_en": "What i the total number of championships less than 2, and a league cup larger than 1?",
    "question_th": "จำนวนแชมป์ทั้งหมดที่น้อยกว่า 2 และลีกคัพที่มากกว่า 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–1\" AND away_team = \"telford united\"",
    "question_en": "What home team has a score of 2–1, when the away team was Telford United?",
    "question_th": "เจ้าบ้านใดมีสกอร์ 2–1 เมื่อทีมเยือนคือ เทลฟอร์ด ยูไนเต็ด?",
    "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_en": "What was the score when the way team was Wrexham?",
    "question_th": "ตอนที่ทีมเป็นเร็กซ์แฮมสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_12 (score VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_32 WHERE tie_no = \"1\"",
    "question_en": "What is the home team when the Tie no is 1?",
    "question_th": "เจ้าบ้านจะเป็นอย่างไรเมื่อเสมอหมายเลข 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_en": "What was Eduardo Romero's score?",
    "question_th": "เอดูอาร์โด้ โรเมโรทำสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_59 (score VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_26 WHERE score = 67 - 71 - 70 = 208",
    "question_en": "Where was the score 67-71-70=208?",
    "question_th": "คะแนน 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_en": "What was the score when Fred Couples played in the United States and placed t9?",
    "question_th": "เมื่อ Fred Couples เล่นที่สหรัฐอเมริกาและอันดับ 9 ได้คะแนนเท่าไหร่?",
    "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_en": "What country does Gary Koch play for?",
    "question_th": "Gary Koch เล่นให้กับประเทศใด?",
    "context": "CREATE TABLE table_name_15 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_7 WHERE country = \"zimbabwe\"",
    "question_en": "Who plays for Zimbabwe?",
    "question_th": "ใครเล่นให้ซิมบับเว?",
    "context": "CREATE TABLE table_name_7 (player VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_60 WHERE place = \"4\"",
    "question_en": "What was the To par when the place was 4?",
    "question_th": "To par คืออะไรเมื่ออันดับที่ 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_en": "What is the current club with a position of sg/sf and a height less than 1.96?",
    "question_th": "ไม้กอล์ฟปัจจุบันที่มีตำแหน่ง sg/sf และส่วนสูงน้อยกว่า 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_en": "What year was Rowan Barrett born?",
    "question_th": "โรวัน บาร์เร็ตต์เกิดปีอะไร",
    "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_en": "What is the lowest height for Rans Brempong?",
    "question_th": "รานส์ เบรมปง ความสูงต่ำสุดคือเท่าไร?",
    "context": "CREATE TABLE table_name_37 (height INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_48 WHERE result = \"0–3\"",
    "question_en": "When was the result 0–3?",
    "question_th": "ผลลัพธ์ 0–3 คือเมื่อใด",
    "context": "CREATE TABLE table_name_48 (date VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_95 WHERE date = \"9 september 2009\"",
    "question_en": "What is the result of the match on 9 September 2009?",
    "question_th": "ผลการแข่งขันวันที่ 9 กันยายน 2552 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_95 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_34 WHERE date_from = \"13 august 2008\"",
    "question_en": "What is the name of the player that was loaned out on 13 August 2008 ?",
    "question_th": "นักเตะที่ถูกยืมตัวเมื่อวันที่ 13 สิงหาคม พ.ศ. 2551 ชื่ออะไร?",
    "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_en": "When was febian brandy loaned out until, when was loaned out on 2 february 2009.?",
    "question_th": "เมื่อใดที่เฟเบียนบรั่นดีถูกยืมออกไป จนกระทั่งเมื่อใดที่จะถูกยืมออกในวันที่ 2 กุมภาพันธ์ พ.ศ. 2552?",
    "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_en": "When was james chester loaned out until ?",
    "question_th": "เจมส์ เชสเตอร์ ถูกยืมตัวจนถึงเมื่อไหร่ ?",
    "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_en": "Where did the player loaned out on 27 november 2008 move to ?",
    "question_th": "ผู้เล่นที่ถูกยืมตัวเมื่อวันที่ 27 พฤศจิกายน พ.ศ. 2551 ย้ายไปอยู่ที่ไหน?",
    "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_en": "When was ron-robert zieler loaned out until ?",
    "question_th": "รอน-โรเบิร์ต ซีเลอร์ถูกยืมตัวจนถึงเมื่อใด ?",
    "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_en": "Where did the player in Pos mf, move to until 30 june 2009 ?",
    "question_th": "นักเตะใน Pos MF ย้ายไปไหนจนถึงวันที่ 30 มิถุนายน 2552 ?",
    "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_en": "What is the name of the manager who was replaced by michael skibbe?",
    "question_th": "ผู้จัดการทีมที่ถูกแทนที่ด้วย ไมเคิล สกิบเบ้ ชื่ออะไร?",
    "context": "CREATE TABLE table_name_87 (name VARCHAR, replacement VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_name_22 WHERE replacement = \"aykut kocaman\"",
    "question_en": "What is the club the used aykut kocaman as the replacement?",
    "question_th": "มีสโมสรอะไรที่ใช้ อายกุต โคคามาน เข้ามาทดแทนบ้าง?",
    "context": "CREATE TABLE table_name_22 (club VARCHAR, replacement VARCHAR)"
  },
  {
    "answer": "SELECT date_of_appointment FROM table_name_80 WHERE name = \"nejat biyedić\"",
    "question_en": "What is the date of appointment of nejat biyedić?",
    "question_th": "เนจัต บิเยดิช ได้รับการแต่งตั้งเมื่อใด?",
    "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_en": "When did they play at the wachovia center?",
    "question_th": "พวกเขาเล่นที่วาโชเวียเซ็นเตอร์เมื่อไหร่?",
    "context": "CREATE TABLE table_name_75 (date VARCHAR, location_attendance VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_name_86 WHERE location_attendance = \"amway arena\"",
    "question_en": "What game number was played at amway arena?",
    "question_th": "สนามแอมเวย์เล่นหมายเลขอะไร",
    "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_en": "How many medals were won total for the country that won 1 silver and was ranked 2 or lower?",
    "question_th": "ประเทศที่ได้ 1 เหรียญเงินและอยู่ในอันดับที่ 2 หรือต่ำกว่าได้รับเหรียญรางวัลทั้งหมดกี่เหรียญ?",
    "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_en": "How many silvers did the country with more than 0 gold and a rank above 1 win that had a total less than 4?",
    "question_th": "ประเทศที่มีมากกว่า 0 เหรียญทองและมีอันดับสูงกว่า 1 ชนะไปกี่เหรียญและมีทั้งหมดน้อยกว่า 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_en": "How many bronzes were won by the country with a total higher than 5?",
    "question_th": "ประเทศนี้คว้าเหรียญทองแดงได้กี่เหรียญ โดยคะแนนรวมสูงกว่า 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_en": "How many bronzes were won for the country that had a larger than 3 rank and a silver win count above 0?",
    "question_th": "ประเทศที่มีอันดับมากกว่า 3 และเหรียญเงินได้รับชัยชนะมากกว่า 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_en": "What is the highest value for Other that has CONCACAF value of 0 a U.S. Open Cup larger than 0?",
    "question_th": "ค่าสูงสุดสำหรับ Other ที่มีค่า CONCACAF เป็น 0 คือ US Open Cup ที่มากกว่า 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²_ = 534",
    "question_en": "Which Subregion has a No P. of 4, and a Pop/Area (1/km²) of 534?",
    "question_th": "ภูมิภาคย่อยใดมีหมายเลข P. เป็น 4 และป๊อป/พื้นที่ (1/กม.²) เท่ากับ 534",
    "context": "CREATE TABLE table_name_41 (subregion VARCHAR, no_p VARCHAR, pop_area__1_km²_ VARCHAR)"
  },
  {
    "answer": "SELECT AVG(pop_area__1_km²_) FROM table_name_84 WHERE no_p > 1 AND name = \"albergaria-a-velha\"",
    "question_en": "Which Pop/Area (1/km²) has a No P. larger than 1, and a Name of albergaria-a-velha?",
    "question_th": "ป๊อป/พื้นที่ใด (1/กม.²) มี No P. มากกว่า 1 และชื่อของ albergaria-a-velha?",
    "context": "CREATE TABLE table_name_84 (pop_area__1_km²_ INTEGER, no_p VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT MIN(area__km²_) FROM table_name_39 WHERE pop = 17 OFFSET 089",
    "question_en": "Which Area (km²) is the lowest one that has a Population of 17,089?",
    "question_th": "พื้นที่ใด (กม. ²) เป็นพื้นที่ต่ำสุดที่มีประชากร 17,089 คน",
    "context": "CREATE TABLE table_name_39 (area__km²_ 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_en": "Who was the home team on 4 February 1987 when Luton Town was away team and there was no replay?",
    "question_th": "ใครคือเจ้าบ้านในวันที่ 4 กุมภาพันธ์ พ.ศ. 2530 เมื่อลูตัน ทาวน์เป็นทีมเยือนและไม่มีการเล่นซ้ำ?",
    "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_en": "Who was the away team on 31 January 1987 when the home team was Wimbledon?",
    "question_th": "ทีมเยือนคือใครเมื่อวันที่ 31 มกราคม พ.ศ. 2530 เมื่อเจ้าบ้านคือวิมเบิลดัน?",
    "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_en": "How high is Macedonia's highest point?",
    "question_th": "จุดสูงสุดของมาซิโดเนียสูงแค่ไหน?",
    "context": "CREATE TABLE table_name_53 (height__ft_ VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT theme FROM table_name_96 WHERE winner = \"dani\"",
    "question_en": "What is the theme with dani as the winner?",
    "question_th": "ธีมที่มีดานีเป็นผู้ชนะคืออะไร?",
    "context": "CREATE TABLE table_name_96 (theme VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_name_76 WHERE theme = \"patience\"",
    "question_en": "What are the notes of the patience theme?",
    "question_th": "อะไรคือบันทึกของธีมความอดทน?",
    "context": "CREATE TABLE table_name_76 (notes VARCHAR, theme VARCHAR)"
  },
  {
    "answer": "SELECT MAX(round) FROM table_name_85 WHERE position = \"(c)\"",
    "question_en": "what is the round when the position is (c)?",
    "question_th": "ตำแหน่ง (c) จะเป็นรอบอะไร?",
    "context": "CREATE TABLE table_name_85 (round INTEGER, position VARCHAR)"
  },
  {
    "answer": "SELECT AVG(round) FROM table_name_3 WHERE player = \"jake gardiner\"",
    "question_en": "what is the round for jake gardiner?",
    "question_th": "เจค การ์ดิเนอร์ รอบไหนคะ?",
    "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_en": "what is the college/junior/club team (league) when the round is higher than 1, the nationality is canada and the position is (d)?",
    "question_th": "ทีมวิทยาลัย/จูเนียร์/สโมสร (ลีก) คืออะไร เมื่อรอบสูงกว่า 1 สัญชาติ คือ แคนาดา และตำแหน่งคือ (ง)?",
    "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_en": "what is the position when the round is higher than 3, the nationality is united states and the player is nick pryor?",
    "question_th": "ตำแหน่งไหนเมื่อรอบสูงกว่า 3 สัญชาติเป็นสหรัฐอเมริกา และผู้เล่นคือ นิค ไพรเออร์?",
    "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_en": "what is the college/junior/club team (league) when the position is (c) and the round is higher than 2?",
    "question_th": "ทีมวิทยาลัย/จูเนียร์/สโมสร (ลีก) คือทีมไหน เมื่อตำแหน่ง (c) และรอบสูงกว่า 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_en": "When the team Heathmere of the South West DFL won more than 11 games, what is the maximum byes?",
    "question_th": "เมื่อทีมฮีธเมียร์แห่งเซาท์เวสต์ ดีเอฟแอล ชนะเกิน 11 นัด บายสูงสุดได้เท่าไร?",
    "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_en": "What is the most games lost when the against is greater than 1401, and the draws greater than 0?",
    "question_th": "เกมไหนที่แพ้มากที่สุดเมื่อผลการแข่งขันมากกว่า 1401 และผลเสมอมากกว่า 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_en": "What is the maximum draws when less than 2514 is the against, and less than 0 byes?",
    "question_th": "การจับรางวัลสูงสุดเมื่อน้อยกว่า 2514 คือการต่อต้านและน้อยกว่า 0 บาย?",
    "context": "CREATE TABLE table_name_52 (draws INTEGER, against VARCHAR, byes VARCHAR)"
  },
  {
    "answer": "SELECT AVG(wins) FROM table_name_83 WHERE losses = 17",
    "question_en": "What is the wins average when 17 games were lost?",
    "question_th": "ค่าเฉลี่ยการชนะเมื่อแพ้ 17 เกมเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_83 (wins INTEGER, losses VARCHAR)"
  },
  {
    "answer": "SELECT stadium FROM table_name_81 WHERE city = \"debrecen\"",
    "question_en": "What stadium is in the city of Debrecen?",
    "question_th": "สนามกีฬาอะไรในเมืองเดเบรเซน?",
    "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_en": "What is the number of silver when rank was 5, and a bronze was smaller than 14?",
    "question_th": "หมายเลขเงินเมื่ออันดับ 5 เป็นเท่าใด และเหรียญทองแดงมีขนาดเล็กกว่า 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_en": "What is the highest bronze number when silver is 0, and the total is smaller than 1?",
    "question_th": "เลขทองแดงสูงสุดเมื่อเงินเป็น 0 และผลรวมน้อยกว่า 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_en": "What is the total when the nation was Argentina, and a Goldwas smaller than 0?",
    "question_th": "จำนวนรวมเมื่อประเทศคืออาร์เจนตินา และทองคำมีค่าน้อยกว่า 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_en": "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?",
    "question_th": "ประเทศอะไรเมื่อทองแดงน้อยกว่า 7 ทองมากกว่า 0 ผลรวมมากกว่า 7 และเงินน้อยกว่า 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_en": "What date was the game against manchester city when they had a league position of 2nd?",
    "question_th": "เกมกับแมนเชสเตอร์ ซิตี้วันที่เท่าไหร่ที่พวกเขารั้งอันดับ 2 ในลีก?",
    "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_en": "What is the result F-A of the game on 6 march 1993?",
    "question_th": "ผลการแข่งขัน FA ของเกมเมื่อวันที่ 6 มีนาคม 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_en": "What is the result F-A of the game on 3 may 1993?",
    "question_th": "ผลการแข่งขัน FA ของเกมวันที่ 3 พฤษภาคม 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_en": "What is Tie no, when Date is \"18 Nov 1989\", and when Home Team is \"Doncaster Rovers\"?",
    "question_th": "Tie no คืออะไร เมื่อวันที่คือ \"18 พ.ย. 1989\" และเมื่อทีมเหย้าคือ \"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_en": "What is Score, when Away Team is \"Yeovil Town\"?",
    "question_th": "Score คืออะไร เมื่อทีมเยือนคือ \"เยโอวิล ทาวน์\"?",
    "context": "CREATE TABLE table_name_43 (score VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_46 WHERE tie_no = \"27\"",
    "question_en": "What is Home Team, when Tie no is \"27\"?",
    "question_th": "ทีมเหย้าคืออะไร เมื่อเสมอหมายเลข \"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_en": "What is Date, when Tie no is \"37\"?",
    "question_th": "วันที่คืออะไร เมื่อ Tie no คือ \"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_en": "What is Home Team, when Date is \"22 Nov 1989\", and when Away Team is \"Bath City\"?",
    "question_th": "ทีมเหย้าคืออะไร วันที่คือ \"22 พ.ย. 1989\" และเมื่อทีมเยือนคือ \"บาธ ซิตี้\"",
    "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_en": "What year was the play-by-play for Don Earle?",
    "question_th": "การเล่นโดยการเล่นของดอน เอิร์ลคือปีใด",
    "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_en": "What is Tom Kite with a Score of 68's To Par?",
    "question_th": "Tom Kite ที่มีคะแนนพาร์ 68 คืออะไร?",
    "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_en": "What is Tom Kite's Place?",
    "question_th": "ทอม ไคท์ส์ เพลส คืออะไร?",
    "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_en": "What is the televote points for 0 jury points and 23 draws?",
    "question_th": "คะแนนโทรทัศน์สำหรับ 0 คะแนนจากคณะลูกขุนและ 23 เสมอคืออะไร?",
    "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_en": "What district was a republican first elected in 2000?",
    "question_th": "เขตใดที่ได้รับเลือกเป็นพรรครีพับลิกันครั้งแรกในปี พ.ศ. 2543",
    "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_en": "In what district was incumbent Russ Carnahan elected after 2000?",
    "question_th": "Russ Carnahan ผู้ดำรงตำแหน่งในเขตใดได้รับเลือกหลังปี 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_en": "For which venue did Leicester City lose?",
    "question_th": "เลสเตอร์ ซิตี้ แพ้สนามไหน?",
    "context": "CREATE TABLE table_name_29 (venue VARCHAR, loser VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_13 WHERE winner = \"stoke city\"",
    "question_en": "What season did Stoke City win?",
    "question_th": "สโต๊ค ซิตี้ คว้าแชมป์ฤดูกาลไหน?",
    "context": "CREATE TABLE table_name_13 (season VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_17 WHERE venue = \"st andrew's\"",
    "question_en": "What was the attendance for St Andrew's?",
    "question_th": "การเข้าร่วมงานของ 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_en": "What season did Wolverhampton Wanderers win?",
    "question_th": "วูล์ฟแฮมป์ตัน วันเดอเรอร์ส คว้าแชมป์ฤดูกาลใด?",
    "context": "CREATE TABLE table_name_5 (season VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT call_sign FROM table_name_23 WHERE erp_w = 75",
    "question_en": "Which Call sign has an ERP W of 75?",
    "question_th": "Call sign ใดที่มี ERP W เท่ากับ 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_en": "Which Class has a Facility ID greater than 85076 and a Call Sign of K289au?",
    "question_th": "คลาสใดมี ID สิ่งอำนวยความสะดวกมากกว่า 85076 และมีสัญญาณเรียกขานเป็น 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_en": "What year was jack cole nominated?",
    "question_th": "แจ็ค โคลได้รับการเสนอชื่อเข้าชิงในปีใด",
    "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_en": "What award ceremony was howard bay and patton campbell nominated?",
    "question_th": "Howard Bay และ Patton Campbell ได้รับการเสนอชื่อเข้าชิงรางวัลในพิธีมอบรางวัลอะไร",
    "context": "CREATE TABLE table_name_10 (award_ceremony VARCHAR, nominee VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_13 WHERE date = \"may 9\"",
    "question_en": "What is Visitor, when Date is \"May 9\"?",
    "question_th": "Visitor คืออะไร เมื่อวันที่คือ \"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_en": "What is Score, when Home is \"Montreal Canadiens\", and when Date is \"May 16\"?",
    "question_th": "สกอร์ คืออะไร เมื่อทีมเหย้าคือ \"มอนทรีออล คานาเดียนส์\" และวันที่คือ \"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_en": "What is Score, when Date is \"May 11\"?",
    "question_th": "Score คืออะไร เมื่อวันที่คือ \"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_en": "What is Visitor, when Home is \"Chicago Black Hawks\", and when Date is \"May 4\"?",
    "question_th": "ผู้เยี่ยมชมคืออะไร เมื่อบ้านคือ \"ชิคาโกแบล็กฮอกส์\" และวันที่คือ \"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_en": "What is Score, when Record is \"2-0\"?",
    "question_th": "Score คืออะไร เมื่อสถิติเป็น \"2-0\"?",
    "context": "CREATE TABLE table_name_95 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_70 WHERE date = \"14 may\"",
    "question_en": "Which tournament included the round played on 14 May?",
    "question_th": "ทัวร์นาเมนต์ใดรวมรอบที่เล่นในวันที่ 14 พฤษภาคม?",
    "context": "CREATE TABLE table_name_70 (tournament VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_91 WHERE date = \"10 may\"",
    "question_en": "Which round was played on 10 May?",
    "question_th": "วันที่ 10 พ.ค. เล่นรอบไหน?",
    "context": "CREATE TABLE table_name_91 (round VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT language FROM table_name_24 WHERE points > 119 AND place > 5",
    "question_en": "what is the language when the points is more than 119 and the place is higher than 5?",
    "question_th": "เป็นภาษาอะไรเมื่อคะแนนมากกว่า 119 และอันดับที่สูงกว่า 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_en": "what is the highest place when the national final is 4th and the points is less than 139?",
    "question_th": "รอบชิงชนะเลิศระดับประเทศอันดับที่ 4 และคะแนนต่ำกว่า 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_en": "what is the lowest place when the language is croatian?",
    "question_th": "สถานที่ต่ำสุดเมื่อภาษาโครเอเชียคือที่ไหน?",
    "context": "CREATE TABLE table_name_95 (place INTEGER, language VARCHAR)"
  },
  {
    "answer": "SELECT language FROM table_name_18 WHERE english_translation = \"come to me\"",
    "question_en": "what is the language when the english translation is come to me?",
    "question_th": "เวลาแปลภาษาอังกฤษมาหาฉันเป็นภาษาอะไร?",
    "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_en": "what is the song when the points is more than 64, the national final is 4th and draw is more than 3?",
    "question_th": "เพลงอะไรคะเมื่อคะแนนเกิน 64 รอบชิงชนะเลิศระดับประเทศที่ 4 และเสมอเกิน 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_en": "What is Category, when Result is \"Nominated\", when Award is \"Drama Desk Award\", and when Nominee is \"Nathan Lane\"?",
    "question_th": "หมวดหมู่คืออะไร เมื่อผลลัพธ์เป็น \"ได้รับการเสนอชื่อเข้าชิง\" เมื่อรางวัลคือ \"Drama Desk Award\" และเมื่อผู้ได้รับการเสนอชื่อคือ \"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_en": "What is Category, when Result is \"Won\", and when Nominee is \"Bebe Neuwirth\"?",
    "question_th": "หมวดหมู่คืออะไร เมื่อผลลัพธ์คือ \"ชนะ\" และเมื่อผู้ท้าชิงคือ \"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_en": "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\"?",
    "question_th": "จำนวนปีทั้งหมดคือเท่าไร เมื่อผลลัพธ์เป็น \"ได้รับการเสนอชื่อเข้าชิง\" เมื่อหมวดหมู่เป็น \"นักแสดงนำชายยอดเยี่ยมในละครเพลง\" และเมื่อรางวัลเป็น \"รางวัล Drama Desk\"",
    "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_en": "What is the sum of Year, when Award is \"Outer Critics Circle Award\", and when Nominee is \"Nathan Lane\"?",
    "question_th": "ผลรวมของปีคือเท่าไร เมื่อรางวัลคือ \"รางวัล Outer Critics Circle\" และเมื่อผู้ได้รับการเสนอชื่อคือ \"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_en": "What is Name, when Builder is \"Kerr Stuart\"?",
    "question_th": "ชื่อคืออะไร เมื่อ Builder คือ \"Kerr Stuart\"",
    "context": "CREATE TABLE table_name_54 (name VARCHAR, builder VARCHAR)"
  },
  {
    "answer": "SELECT built FROM table_name_42 WHERE works_number = \"717\"",
    "question_en": "What is Built, when Works Number is \"717\"?",
    "question_th": "สร้างขึ้นเมื่อหมายเลขผลงานคือ \"717\" คืออะไร?",
    "context": "CREATE TABLE table_name_42 (built VARCHAR, works_number VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_50 WHERE works_number = \"unknown\"",
    "question_en": "What is Type, when Works Number is \"unknown\"?",
    "question_th": "Type คืออะไร เมื่อ Works Number เป็น \"ไม่ทราบ\"",
    "context": "CREATE TABLE table_name_50 (type VARCHAR, works_number VARCHAR)"
  },
  {
    "answer": "SELECT circuit FROM table_name_27 WHERE race = \"adac großer preis der tourenwagen\"",
    "question_en": "What is the circuit for the ADAC großer preis der tourenwagen race?",
    "question_th": "สนามแข่งรถ ADAC großer preis der tourenwagen คืออะไร?",
    "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_en": "What is the date that Fabrizio Giovanardi Christian Abt won?",
    "question_th": "วันที่ Fabrizio Giovanardi Christian Abt ชนะคือวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_12 (date VARCHAR, winning_driver VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_83 WHERE tie_no = \"16\"",
    "question_en": "What home team has 16 as the tie no.?",
    "question_th": "ทีมเจ้าบ้านใดมี 16 เสมอกัน?",
    "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_en": "What score has hull city as the away team?",
    "question_th": "ฮัลล์ซิตี้เป็นทีมเยือนมีสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_9 (score VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_89 WHERE tie_no = \"12\"",
    "question_en": "What away team has 12 as the tie no.?",
    "question_th": "ทีมเยือนทีมใดมี 12 เสมอกัน?",
    "context": "CREATE TABLE table_name_89 (away_team VARCHAR, tie_no VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_48 WHERE tie_no = \"11\"",
    "question_en": "What date has 11 as the tie no.?",
    "question_th": "เลข 11 เสมอกันคือวันไหน?",
    "context": "CREATE TABLE table_name_48 (date VARCHAR, tie_no VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_80 WHERE away_team = \"blackpool\"",
    "question_en": "What home team has blackpool as the away team?",
    "question_th": "เจ้าบ้านทีมไหนมีแบล็คพูลเป็นทีมเยือน?",
    "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_en": "What was the surface when the opponent was sergiy stakhovsky mikhail youzhny?",
    "question_th": "พื้นผิวเป็นอย่างไรเมื่อคู่ต่อสู้คือ sergiy stakhovsky mikhail youzhny?",
    "context": "CREATE TABLE table_name_24 (surface VARCHAR, opponents VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_75 WHERE opponents = \"lukáš dlouhý leander paes\"",
    "question_en": "What was the score for the opponent lukáš dlouhý leander paes?",
    "question_th": "ฝ่ายตรงข้าม lukáš dlouhý 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_en": "What day was there a hard surface when the partner was Marc Gicquel?",
    "question_th": "วันไหนที่มีพื้นผิวแข็งเมื่อคู่หูคือ 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_en": "What is the total (kg) when the snatch was 84, and bodyweight was less than 57.35?",
    "question_th": "น้ำหนักทั้งหมด (กก.) เป็นเท่าใดเมื่อลูกฉกได้ 84 และน้ำหนักตัวน้อยกว่า 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_en": "What is the clean & jerk when the total (kg) is more than 204, and snatch is more than 98?",
    "question_th": "Clean & Jerk คืออะไรเมื่อผลรวม (กก.) มากกว่า 204 และ Snatch มากกว่า 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_en": "What is the total (kg when the bodyweight is more than 57.8, and the clean & jerk is less than 103?",
    "question_th": "ทั้งหมดคือเท่าไร (กก. เมื่อน้ำหนักตัวมากกว่า 57.8 และ Clean & Jerk น้อยกว่า 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_en": "What is the Overall of the pick less than 20?",
    "question_th": "ภาพรวมของตัวเลือกที่น้อยกว่า 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_en": "What is the name of the cornerback from Wisconsin college?",
    "question_th": "cornerback จากวิทยาลัยวิสคอนซินชื่ออะไร?",
    "context": "CREATE TABLE table_name_45 (name VARCHAR, position VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_77 WHERE name = \"pat thomas\"",
    "question_en": "What college is Pat Thomas from?",
    "question_th": "แพท โธมัส มาจากวิทยาลัยอะไร",
    "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_en": "What is the best top-10 result when events are fewer than 39, top-5 is 1 and more than 5 cuts are made?",
    "question_th": "อะไรคือผลลัพธ์ที่ดีที่สุด 10 อันดับแรกเมื่อมีกิจกรรมน้อยกว่า 39, 5 อันดับแรกคือ 1 และมีการตัดมากกว่า 5 ครั้ง?",
    "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_en": "How many cuts made when the top-5 is greater than 1?",
    "question_th": "มีการตัดกี่ครั้งเมื่อ 5 อันดับแรกมากกว่า 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_en": "What is the best top-5 when top-10 is 1 and there are more than 0 wins?",
    "question_th": "อะไรคือ 5 อันดับแรกที่ดีที่สุด ในเมื่อ 10 อันดับแรกคือ 1 และมีชัยชนะมากกว่า 0 ครั้ง?",
    "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_en": "What is the number of cuts made when the top-5 is 0, top-10 is 1 and events are fewer than 12?",
    "question_th": "จำนวนการตัดที่เกิดขึ้นเมื่อ 5 อันดับแรกคือ 0, 10 อันดับแรกคือ 1 และเหตุการณ์น้อยกว่า 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_en": "What was the 1st leg for Team 2, Leeds United?",
    "question_th": "เลกแรกของทีม 2 ลีดส์ ยูไนเต็ด คืออะไร?",
    "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_en": "What was the 1st leg for Team 2, Slovan Liberec?",
    "question_th": "เลกแรกของทีม 2 สโลวาน ลิเบเรช คืออะไร?",
    "context": "CREATE TABLE table_name_79 (team_2 VARCHAR)"
  },
  {
    "answer": "SELECT team_1 FROM table_name_13 WHERE team_2 = \"slovan liberec\"",
    "question_en": "Which Team 1, has Team 2, Slovan Liberec?",
    "question_th": "ทีมไหน 1 มีทีม 2 สโลวาน ลิเบเรซ?",
    "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_en": "What is the date of the match with west bromwich albion as the home team?",
    "question_th": "แมตช์กับเวสต์บรอมมิชอัลเบียนเป็นเจ้าบ้านวันที่เท่าไหร่?",
    "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_en": "What is the highest Apps of kairat after 2008 and a Level smaller than 1?",
    "question_th": "แอพสูงสุดของ kairat หลังจากปี 2551 และระดับที่เล็กกว่า 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_en": "What is the total Level with 27 Apps after 2006?",
    "question_th": "ระดับรวมที่มี 27 แอปหลังปี 2549 คือเท่าใด",
    "context": "CREATE TABLE table_name_90 (level INTEGER, apps VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT MIN(apps) FROM table_name_22 WHERE level > 1",
    "question_en": "What is the lowest Apps with more than 1 level?",
    "question_th": "แอพที่ต่ำที่สุดที่มีมากกว่า 1 ระดับคืออะไร?",
    "context": "CREATE TABLE table_name_22 (apps INTEGER, level INTEGER)"
  },
  {
    "answer": "SELECT SUM(level) FROM table_name_7 WHERE season = 2007",
    "question_en": "what is the total levels in 2007?",
    "question_th": "ระดับทั้งหมดในปี 2550 เป็นเท่าใด?",
    "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_en": "How many times is the award ceremony laurence olivier award, result is won and the nominee is imelda staunton?",
    "question_th": "พิธีมอบรางวัลมีกี่ครั้ง ลอเรนซ์ โอลิเวียร์ อวอร์ด ผลชนะและผู้เข้าชิงคือ อิเมลดา สตอนตัน?",
    "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_en": "what is the result when the category is best sound design?",
    "question_th": "ผลลัพธ์จะเป็นเช่นไรเมื่อหมวดหมู่คือการออกแบบเสียงที่ดีที่สุด?",
    "context": "CREATE TABLE table_name_28 (result VARCHAR, category VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(byes) FROM table_name_74 WHERE draws > 1",
    "question_en": "What's the total byes for more than 1 draw?",
    "question_th": "รวมบายมากกว่า 1 งวดเป็นเท่าไหร่?",
    "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_en": "What Hometown/School had a pick above 30, position of OF and team of Cleveland Indians?",
    "question_th": "บ้านเกิด/โรงเรียนใดที่มีตัวเลือกมากกว่า 30 ตำแหน่ง 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_en": "What's the highest pick for SS position?",
    "question_th": "ตัวเลือกสูงสุดสำหรับตำแหน่ง SS คืออะไร?",
    "context": "CREATE TABLE table_name_76 (pick INTEGER, position VARCHAR)"
  },
  {
    "answer": "SELECT AVG(pick) FROM table_name_68 WHERE team = \"minnesota twins\"",
    "question_en": "What pick did the Minnesota Twins have?",
    "question_th": "Minnesota Twins มีตัวเลือกอะไรบ้าง?",
    "context": "CREATE TABLE table_name_68 (pick INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT AVG(draws) FROM table_name_97 WHERE losses < 2",
    "question_en": "What is the average Draws, when Losses is less than 2?",
    "question_th": "ค่าเฉลี่ยเสมอเมื่อแพ้น้อยกว่า 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_en": "What is the average Wins, when Against is less than 1786, when Losses is less than 4, and when Byes is less than 2?",
    "question_th": "ค่าเฉลี่ยการชนะคือเท่าใด เมื่อ Against น้อยกว่า 1786 เมื่อ Losses น้อยกว่า 4 และเมื่อ Byes น้อยกว่า 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_en": "What is Country, when Class / Type is \"Three masted full rigged ship\"?",
    "question_th": "ประเทศคืออะไร เมื่อคลาส / ประเภทคือ \"เรือสามเสากระโดงเต็มลำ\"?",
    "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_en": "What is Builder, when Country is \"United Kingdom\", and when Location is \"Chatham, Kent\"?",
    "question_th": "Builder คืออะไร เมื่อประเทศคือ \"สหราชอาณาจักร\" และเมื่อที่ตั้งคือ \"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_en": "What is Builder, when Ship is \"Arizona\"?",
    "question_th": "Builder คืออะไร เมื่อ Ship คือ \"Arizona\"?",
    "context": "CREATE TABLE table_name_67 (builder VARCHAR, ship VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_33 WHERE class___type = \"sloop\"",
    "question_en": "What is Location, when Class / Type is \"Sloop\"?",
    "question_th": "ตำแหน่งคืออะไร เมื่อคลาส / ประเภทคือ \"Sloop\"",
    "context": "CREATE TABLE table_name_33 (location VARCHAR, class___type VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_38 WHERE builder = \"sheerness dockyard\"",
    "question_en": "What is Country, when Builder is \"Sheerness Dockyard\"?",
    "question_th": "ประเทศคืออะไร เมื่อผู้สร้างคือ \"อู่ต่อเรือเชียร์เนส\"",
    "context": "CREATE TABLE table_name_38 (country VARCHAR, builder VARCHAR)"
  },
  {
    "answer": "SELECT builder FROM table_name_80 WHERE location = \"govan , scotland\"",
    "question_en": "What is Builder, when Location is \"Govan , Scotland\"?",
    "question_th": "Builder คืออะไร เมื่อตำแหน่งคือ \"Govan สกอตแลนด์\"",
    "context": "CREATE TABLE table_name_80 (builder VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT britain__2013_ FROM table_name_1 WHERE us__2013_ = \"ruby\"",
    "question_en": "What was Britain's (2013) birthstone when the U.S (2013) birthstone was ruby?",
    "question_th": "อัญมณีประจำวันเกิดของอังกฤษ (2013) คืออะไร เมื่ออัญมณีประจำวันเกิดของสหรัฐอเมริกา (2013) เป็นทับทิม",
    "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_en": "What was the U.S birthstone in 1912 when in 2013 the birthstone was amethyst?",
    "question_th": "อัญมณีประจำวันเกิดของสหรัฐอเมริกาในปี 1912 คืออะไร และในปี 2013 อัญมณีประจำวันเกิดคืออเมทิสต์?",
    "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_en": "What was the U.S birthstone in the 15th-20th century when in 2013 it was amethyst?",
    "question_th": "อัญมณีประจำวันเกิดของสหรัฐอเมริกาในศตวรรษที่ 15-20 คืออเมทิสต์ในปี 2556?",
    "context": "CREATE TABLE table_name_34 (us__2013_ VARCHAR)"
  },
  {
    "answer": "SELECT month FROM table_name_76 WHERE us__2013_ = \"ruby\"",
    "question_en": "Which month in 2013 did the U.S. use the ruby birthstone?",
    "question_th": "ในเดือนใดในปี 2013 สหรัฐอเมริกาใช้อัญมณีประจำวันเกิดของทับทิม?",
    "context": "CREATE TABLE table_name_76 (month VARCHAR, us__2013_ VARCHAR)"
  },
  {
    "answer": "SELECT hindu FROM table_name_77 WHERE us__1912_ = \"sapphire\"",
    "question_en": "In 1912 when the U.S used sapphire, what was the Hindu birthstone?",
    "question_th": "เมื่อสหรัฐอเมริกาใช้แซฟไฟร์ในปี 1912 อัญมณีประจำวันเกิดของชาวฮินดูคืออะไร?",
    "context": "CREATE TABLE table_name_77 (hindu VARCHAR, us__1912_ VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_name_67 WHERE delegate = \"rachel muyot soriano\"",
    "question_en": "What's the hometown of rachel muyot soriano?",
    "question_th": "บ้านเกิดของ 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_en": "What's the latest year the miss internet www pageant had a result of second runner-up?",
    "question_th": "ล่าสุดการประกวด miss internet www คว้ารองอันดับ 2 เมื่อปีไหนคะ?",
    "context": "CREATE TABLE table_name_80 (year INTEGER, pageant VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_36 WHERE tie_no = \"19\"",
    "question_en": "On what Date is Tie no 19?",
    "question_th": "เสมอหมายเลข 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_en": "What is the Ti no of the Walsall Home game?",
    "question_th": "Ti no ของเกม Walsall Home คืออะไร?",
    "context": "CREATE TABLE table_name_38 (tie_no VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_13 WHERE tie_no = \"21\"",
    "question_en": "What is the Date of Tie no 21?",
    "question_th": "วันที่เสมอกันครั้งที่ 21 คืออะไร?",
    "context": "CREATE TABLE table_name_13 (date VARCHAR, tie_no VARCHAR)"
  },
  {
    "answer": "SELECT race_title FROM table_name_26 WHERE year = 1948",
    "question_en": "Which race happened in 1948?",
    "question_th": "การแข่งขันใดเกิดขึ้นในปี 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_en": "Was the Grand Prix Watkins GLen that Miles Collier raced in before 1952 a championship?",
    "question_th": "Grand Prix Watkins GLen ที่ Miles Collier เคยแข่งก่อนปี 1952 จะเป็นแชมป์หรือไม่?",
    "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_en": "Who drove in races in 1949?",
    "question_th": "ใครขับรถในการแข่งขันในปี 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_en": "What is the lowest Total, when Silver is greater than 7, and when Gold is greater than 73?",
    "question_th": "ค่ารวมต่ำสุดคืออะไร เมื่อเงินมากกว่า 7 และเมื่อทองมากกว่า 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_en": "What is Total, when Silver is less than 65, when Bronze is greater than 4, and when Rank is \"4\"?",
    "question_th": "Total คืออะไร เมื่อ Silver น้อยกว่า 65 เมื่อ Bronze มากกว่า 4 และเมื่อ Rank คือ \"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_en": "What is the average Silver, when Gold is less than 0?",
    "question_th": "เงินโดยเฉลี่ยคือเท่าใด เมื่อทองคำน้อยกว่า 0?",
    "context": "CREATE TABLE table_name_47 (silver INTEGER, gold INTEGER)"
  },
  {
    "answer": "SELECT height FROM table_name_95 WHERE name = \"manuela zanchi\"",
    "question_en": "What is Height, when Name is \"Manuela Zanchi\"?",
    "question_th": "ความสูงคืออะไรเมื่อชื่อ \"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_en": "What is Pos., when Height is \"m (ft 6in)\", and when Name is \"Martina Miceli\"?",
    "question_th": "ตำแหน่งคืออะไร เมื่อความสูงคือ \"m (ฟุต 6 นิ้ว)\" และเมื่อชื่อคือ \"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_en": "How many kills did basobas, florentino have?",
    "question_th": "บาโซบาส ฟลอเรนติโน่ ฆ่าไปกี่คน?",
    "context": "CREATE TABLE table_name_34 (killed INTEGER, perpetrator VARCHAR)"
  },
  {
    "answer": "SELECT AVG(killed) FROM table_name_54 WHERE perpetrator = \"wirjo, 42\"",
    "question_en": "What is the average number of people killed with a Perpetrator of wirjo, 42?",
    "question_th": "จำนวนผู้เสียชีวิตโดยเฉลี่ยโดยผู้ก่อเหตุ wirjo, 42 คือเท่าไร?",
    "context": "CREATE TABLE table_name_54 (killed INTEGER, perpetrator VARCHAR)"
  },
  {
    "answer": "SELECT injured FROM table_name_68 WHERE location = \"borneo\"",
    "question_en": "How many are injured in Borneo?",
    "question_th": "มีผู้ได้รับบาดเจ็บกี่รายในเกาะบอร์เนียว?",
    "context": "CREATE TABLE table_name_68 (injured VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_name_32 WHERE goals = \"79\" AND games = \"38\"",
    "question_en": "How many points were scored by the player with 79 goals and who played 38 games?",
    "question_th": "ผู้เล่นทำคะแนนได้กี่คะแนนโดยทำได้ 79 ประตูและใครลงเล่น 38 เกม?",
    "context": "CREATE TABLE table_name_32 (points VARCHAR, goals VARCHAR, games VARCHAR)"
  },
  {
    "answer": "SELECT games FROM table_name_61 WHERE assists = \"127\"",
    "question_en": "How many games were played by the player with 127 assists?",
    "question_th": "ผู้เล่นเล่นเกมไปกี่เกมและทำแอสซิสต์ได้ 127 ครั้ง?",
    "context": "CREATE TABLE table_name_61 (games VARCHAR, assists VARCHAR)"
  },
  {
    "answer": "SELECT games FROM table_name_52 WHERE pen_min = \"22\"",
    "question_en": "How many games were played by the player who had 22 penalty minutes?",
    "question_th": "ผู้เล่นที่ได้จุดโทษ 22 นาทีเล่นไปกี่เกม?",
    "context": "CREATE TABLE table_name_52 (games VARCHAR, pen_min VARCHAR)"
  },
  {
    "answer": "SELECT assists FROM table_name_45 WHERE pen_min = \"54\"",
    "question_en": "How many assists did the player with 54 penalty minutes have?",
    "question_th": "ผู้เล่นที่ทำ 54 นาทีจุดโทษได้กี่แอสซิสต์?",
    "context": "CREATE TABLE table_name_45 (assists VARCHAR, pen_min VARCHAR)"
  },
  {
    "answer": "SELECT hometown FROM table_name_95 WHERE name = \"john davis\"",
    "question_en": "What is John Davis's home town?",
    "question_th": "บ้านเกิดของ John Davis คืออะไร?",
    "context": "CREATE TABLE table_name_95 (hometown VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_91 WHERE event = \"1500m freestyle\"",
    "question_en": "What is the date of the 1500m freestyle event?",
    "question_th": "ฟรีสไตล์ 1,500 ม. วันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_91 (date VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_66 WHERE time = \"1:51.51\"",
    "question_en": "What is the nationality of the event with a 1:51.51 time?",
    "question_th": "รายการนี้สัญชาติอะไร เวลา 1:51.51?",
    "context": "CREATE TABLE table_name_66 (nationality VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_54 WHERE event = \"100m freestyle\"",
    "question_en": "What is the time of the 100m freestyle event?",
    "question_th": "ฟรีสไตล์ 100 เมตร จัดขึ้นกี่โมง?",
    "context": "CREATE TABLE table_name_54 (time VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_25 WHERE time = \"1:54.00\"",
    "question_en": "What is the date of the event with a 1:54.00 time?",
    "question_th": "จัดงานวันที่เท่าไหร่ เวลา 1:54.00 น.?",
    "context": "CREATE TABLE table_name_25 (date VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_59 WHERE date = \"18 december 2009\"",
    "question_en": "What event is on 18 December 2009?",
    "question_th": "วันที่ 18 ธันวาคม 2552 มีงานอะไรบ้าง?",
    "context": "CREATE TABLE table_name_59 (event VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT album FROM table_name_44 WHERE composer_s_ = \"jimmie lee sloas\"",
    "question_en": "Jimmie Lee Sloas was the composer for what album?",
    "question_th": "Jimmie Lee Sloas เป็นผู้แต่งเพลงให้กับอัลบั้มใด",
    "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_en": "Which composer had a CHR chart peak at #2?",
    "question_th": "นักแต่งเพลงคนใดมีชาร์ต CHR สูงสุดที่อันดับ 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_en": "What was the date for Westport?",
    "question_th": "เวสต์พอร์ตจัดวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_33 (date VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_61 WHERE week = \"1\"",
    "question_en": "What is the home team in week 1?",
    "question_th": "ทีมเหย้าในสัปดาห์ที่ 1 คืออะไร?",
    "context": "CREATE TABLE table_name_61 (home_team VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_92 WHERE away_team = \"auckland\"",
    "question_en": "In what week was the away team Auckland?",
    "question_th": "ทีมเยือนโอ๊คแลนด์อยู่ในสัปดาห์ใด?",
    "context": "CREATE TABLE table_name_92 (week VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_58 WHERE week = \"1\"",
    "question_en": "What is the venue for week 1?",
    "question_th": "สัปดาห์ที่ 1 สถานที่จัดงานคือที่ไหน?",
    "context": "CREATE TABLE table_name_58 (venue VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_79 WHERE year = \"1991\"",
    "question_en": "What is the title in 1991?",
    "question_th": "ชื่อเรื่องในปี 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_en": "In what City/State did the ATCC Round 4 series take place?",
    "question_th": "ATCC Round 4 series จัดขึ้นที่เมือง/รัฐใด",
    "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_en": "In what City/State did the ATCC Round 4 series take place?",
    "question_th": "ATCC Round 4 series จัดขึ้นที่เมือง/รัฐใด",
    "context": "CREATE TABLE table_name_62 (city___state VARCHAR, series VARCHAR)"
  },
  {
    "answer": "SELECT series FROM table_name_16 WHERE winner = \"paul morris\"",
    "question_en": "Which series was won by Paul Morris?",
    "question_th": "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_en": "On which date did the Winfield Triple Challenge series take place?",
    "question_th": "Winfield Triple Challenge series จัดขึ้นวันไหน?",
    "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_en": "What was the circuit for Team Peter Jackson Racing in the ATCC Round 4 series?",
    "question_th": "วงจรของทีม Peter Jackson Racing ในซีรีส์ ATCC Round 4 เป็นอย่างไรบ้าง",
    "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_en": "Which Player has a Team from of south shore kings?",
    "question_th": "ผู้เล่นคนไหนมีทีมจากราชาฝั่งใต้?",
    "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_en": "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?",
    "question_th": "ทีม NHL ใดมีลีกจากลีกฮอกกี้ตะวันตก และ Pick # ที่เล็กกว่า 23 และทีมจาก 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_en": "Which Position has a Pick # smaller than 26 and a Player of jack campbell?",
    "question_th": "ตำแหน่งใดมี Pick # น้อยกว่า 26 และผู้เล่นของ 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_en": "How much money did Willie Klein take home from the game in which he had a to par score larger than 13?",
    "question_th": "วิลลี่ ไคลน์ นำเงินกลับบ้านไปเท่าไหร่จากเกมที่เขาทำสกอร์พาร์ได้มากกว่า 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_en": "What was the attendance on September 11, 1988?",
    "question_th": "ผู้เข้าร่วมในวันที่ 11 กันยายน พ.ศ. 2531 เป็นอย่างไรบ้าง",
    "context": "CREATE TABLE table_name_21 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_41 WHERE week = 1",
    "question_en": "What was the attendance on week 1?",
    "question_th": "สัปดาห์ที่ 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_en": "What was the lowest win when there were 34 points and more than 13 draws?",
    "question_th": "ชนะน้อยที่สุดตอนมี 34 แต้ม เสมอเกิน 13 แต้มเท่าไหร่?",
    "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_en": "What was the highest win when there were more than 64 goals scored and a position smaller than 2?",
    "question_th": "อะไรคือชัยชนะสูงสุดเมื่อมีประตูมากกว่า 64 ประตูและตำแหน่งที่น้อยกว่า 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_en": "Who is the Outgoing Manager replaced by Sandy Clark?",
    "question_th": "ใครคือผู้จัดการขาออกที่ถูกแทนที่โดย 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_en": "What is the Date of vacancy for Tommy McLean?",
    "question_th": "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_en": "What is the total number of Goals scored that has more than 45 Points?",
    "question_th": "จำนวนประตูทั้งหมดที่ทำได้มากกว่า 45 คะแนนคือเท่าใด",
    "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_en": "What was the total number of Goals conceded when there were more than 4 losses, less than 5 draws, and more than 9 wins?",
    "question_th": "จำนวนประตูทั้งหมดที่เสียเมื่อแพ้มากกว่า 4 ครั้ง เสมอน้อยกว่า 5 ครั้ง และชนะมากกว่า 9 ครั้งเป็นเท่าใด",
    "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_en": "What is the sum of Goals scored when there was less than 20 Games played?",
    "question_th": "ผลรวมของประตูที่ทำได้เมื่อมีการแข่งขันน้อยกว่า 20 เกมเป็นเท่าใด",
    "context": "CREATE TABLE table_name_79 (goals_scored INTEGER, games_played INTEGER)"
  },
  {
    "answer": "SELECT country FROM table_name_32 WHERE to_par = \"–2\" AND player = \"jim thorpe\"",
    "question_en": "Which Country has a To par of –2, and a Player of jim thorpe?",
    "question_th": "ประเทศใดมีคะแนน To par –2 และมีผู้เล่นของ 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 = \"–5\"",
    "question_en": "Name the  Place which has To par of –5, in united states?",
    "question_th": "ตั้งชื่อสถานที่ซึ่งมีพาร์ถึง –5 ในสหรัฐอเมริกาหรือไม่?",
    "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_en": "Name the To par of payne stewart?",
    "question_th": "ตั้งชื่อ To par ของ 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 = \"–3\"",
    "question_en": "WHo has a Country of united states and a To par of –3?",
    "question_th": "ใครมีประเทศสหรัฐอเมริกาและถึงพาร์ที่ –3?",
    "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_en": "What power plant was commissioned in 2008?",
    "question_th": "โรงไฟฟ้าใดที่เริ่มดำเนินการในปี 2551?",
    "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_en": "What is the Nominated work of popularity award (actor in a motion picture)?",
    "question_th": "รางวัลผลงานที่ได้รับการเสนอชื่อเข้าชิงรางวัล Popularity Award (นักแสดงในภาพยนตร์) คืออะไร?",
    "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_en": "What is the game site of the game with the san diego chargers as the opponent?",
    "question_th": "เว็บไซต์เกมของเกมที่มีทีมชาร์จซานดิเอโกเป็นคู่ต่อสู้คืออะไร?",
    "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_en": "What is the first round when team 1 was toulouse fc (d1)?",
    "question_th": "รอบแรกทีม 1 เป็น ตูลูส เอฟซี (d1) คืออะไร?",
    "context": "CREATE TABLE table_name_44 (team_1 VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_57 WHERE player = \"shahar pe'er\"",
    "question_en": "What is Shahar Pe'er's record?",
    "question_th": "ประวัติของ Shahar Pe'er คืออะไร?",
    "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_en": "Which country placed t3 and had the player Fred Couples?",
    "question_th": "ประเทศใดติดอันดับ 3 และมีผู้เล่น 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_en": "What is the to par for Fred Couples when the score is 68-66=134?",
    "question_th": "พาร์ของ Fred Couples คือเท่าไร เมื่อสกอร์ 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_en": "Which country scored 66-68=134?",
    "question_th": "ประเทศใดได้คะแนน 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_en": "What did Fred Couples place?",
    "question_th": "Fred Couples วางอะไร?",
    "context": "CREATE TABLE table_name_61 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_50 WHERE score = 68 - 66 = 134",
    "question_en": "What player scored 68-66=134?",
    "question_th": "นักเตะคนไหนทำคะแนนได้ 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_en": "What Player has a To par of +5 with a Score of 70-70-71-74=285?",
    "question_th": "ผู้เล่นคนใดมีพาร์ถึง +5 ด้วยคะแนน 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_en": "What is the Place of the Player with a Score of 73-67-74-71=285?",
    "question_th": "ผู้เล่นที่มีคะแนน 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_en": "What T9 Place Player had a Score of 73-67-74-71=285?",
    "question_th": "ผู้เล่น T9 Place คนใดมีคะแนน 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_en": "Who is the player with a t8 place?",
    "question_th": "ใครคือผู้เล่นอันดับ t8?",
    "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_en": "What is the average amount of money of players in t8 place with a 68-71-69-72=280 score?",
    "question_th": "จำนวนเงินเฉลี่ยของผู้เล่นในอันดับ 8 ที่มีคะแนน 68-71-69-72=280 คือเท่าไร?",
    "context": "CREATE TABLE table_name_53 (money___ INTEGER, place VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_59 WHERE player = \"vijay singh\"",
    "question_en": "What is the country of player vijay singh?",
    "question_th": "นักเตะวีเจย์ ซิงห์อยู่ประเทศอะไร?",
    "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_en": "What is the Result F-A that was the quarter-final first leg round with a H/A of h?",
    "question_th": "ผลการแข่งขัน FA ที่เป็นรอบก่อนรองชนะเลิศรอบเลกแรกโดยมี H/A เป็น 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_en": "What was the opponent when the score was 3 - 2,  and the decision was Raycroft, with a record of 25-29-1?",
    "question_th": "คู่ต่อสู้คืออะไรเมื่อสกอร์เป็น 3 - 2 และการตัดสินใจคือ Raycroft ด้วยสถิติ 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_en": "Which Position has a League from of western hockey league, and a Team from of everett silvertips?",
    "question_th": "ตำแหน่งใดมีลีกจากลีกฮอกกี้ตะวันตก และทีมจาก 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_en": "Which Player has a Position of rw, and a League from of western hockey league?",
    "question_th": "ผู้เล่นคนไหนที่มีตำแหน่ง rw และมีลีกจากลีกฮอกกี้ตะวันตก",
    "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_en": "Which Pick # has a Nationality of canada, and a Team from of sudbury wolves?",
    "question_th": "ตัวเลือก # ใดมีสัญชาติแคนาดา และทีมจาก 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_en": "Which Pick # has a League from of ontario hockey league, a Nationality of united states, and a Team from of brampton battalion?",
    "question_th": "ตัวเลือก # ใดที่มีลีกจากลีกฮอกกี้ออนแทรีโอ สัญชาติของสหรัฐอเมริกา และทีมจากกองพันแบรมป์ตัน",
    "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_en": "Which League from has a Position of lw, a Pick # larger than 34, and a Player of bradley ross?",
    "question_th": "ลีกใดจากลีกที่มีตำแหน่ง lw, ตัวเลือก # มากกว่า 34 และผู้เล่นของ 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_en": "Which Position has a Team from of ottawa 67's, and a Pick # smaller than 47?",
    "question_th": "ตำแหน่งใดที่มีทีมจากออตตาวา 67 และเลือก # น้อยกว่า 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_en": "Who is the republican Incumbent for Pennsylvania 9?",
    "question_th": "ใครคือผู้ดำรงตำแหน่งพรรครีพับลิกันในเพนซิลเวเนีย 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_en": "What are the results for Bill Shuster?",
    "question_th": "ผลลัพธ์ของ 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_en": "What is the greatest first elected for Pennsylvania 10?",
    "question_th": "อะไรคือสิ่งที่ยิ่งใหญ่ที่สุดที่ได้รับเลือกครั้งแรกสำหรับเพนซิลเวเนีย 10?",
    "context": "CREATE TABLE table_name_56 (first_elected INTEGER, district VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_59 WHERE finish = \"t8\"",
    "question_en": "What country had a Finish of t8?",
    "question_th": "ประเทศใดเข้าเส้นชัยเป็น t8?",
    "context": "CREATE TABLE table_name_59 (country VARCHAR, finish VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_78 WHERE to_par = \"+2\"",
    "question_en": "What Player had a To Par of +2?",
    "question_th": "ผู้เล่นคนไหนมีพาร์ +2?",
    "context": "CREATE TABLE table_name_78 (player VARCHAR, to_par VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_32 WHERE finish = \"t8\"",
    "question_en": "What is the To Par of the player with a t8 Finish?",
    "question_th": "To Par ของผู้เล่นที่จบสกอร์ t8 คืออะไร?",
    "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_en": "How tall is the building built in 1985 with 22 floors?",
    "question_th": "อาคารที่สร้างขึ้นในปี 1985 มี 22 ชั้นสูงแค่ไหน?",
    "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_en": "How tall is the building ranked #13?",
    "question_th": "ตึกนี้อยู่ในอันดับที่ 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ño\" AND binibining_pilipinas_world = \"janina san miguel\"",
    "question_en": "Who won Miss Universe Philippines when the first runner-up was Danielle Castaño and Janina San Miguel won Binibining Pilipinas-World?",
    "question_th": "ใครชนะการประกวดมิสยูนิเวิร์สฟิลิปปินส์ เมื่อรองชนะเลิศคนแรกคือ Danielle Castaño และ Janina San Miguel ได้รับรางวัล 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_en": "Who won Miss Universe Philippines when Regina Hahn was second runner-up?",
    "question_th": "ใครชนะมิสยูนิเวิร์สฟิลิปปินส์ เมื่อเรจิน่า ฮาห์น รองอันดับสอง?",
    "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_en": "When Bianca Manalo won Miss Universe Philippines who was the second runner-up?",
    "question_th": "เมื่อ Bianca Manalo คว้า Miss Universe Philippines ใครได้รองอันดับ 2 ?",
    "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_en": "What order has the title Deacon of SS. Cosma E Damiano?",
    "question_th": "คำสั่งใดมีชื่อ Deacon of SS คอสมา เอ ดามิอาโน?",
    "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_en": "What is 2009, when 2008 is \"A\", when 2011 is \"A\", and when Tournament is \"Paris Masters\"?",
    "question_th": "ปี 2009 คืออะไร เมื่อปี 2008 คือ \"A\" เมื่อปี 2011 คือ \"A\" และเมื่อใดที่ Tournament คือ \"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_en": "What is 2008, when 2009 is \"A\", and when Tournament is \"Madrid Masters\"?",
    "question_th": "ปี 2008 คืออะไร เมื่อปี 2009 เป็น \"A\" และเมื่อใดที่ทัวร์นาเมนต์คือ \"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_en": "What is Tournament, when 2012 is \"A\", when 2011 is \"A\", and when 2008 is \"A\"?",
    "question_th": "การแข่งขันคืออะไร เมื่อปี 2012 คือ \"A\" เมื่อปี 2011 คือ \"A\" และเมื่อใดคือ \"A\" เมื่อ พ.ศ. 2551",
    "context": "CREATE TABLE table_name_16 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2009 FROM table_name_62 WHERE 2011 = \"q2\"",
    "question_en": "What is 2009, when 2011 is \"Q2\"?",
    "question_th": "ปี 2552 คืออะไร เมื่อปี 2554 เป็น \"ไตรมาส 2\"",
    "context": "CREATE TABLE table_name_62 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_39 WHERE tournament = \"year-end ranking\"",
    "question_en": "What is 2011, when Tournament is \"Year-End Ranking\"?",
    "question_th": "ปี 2011 คืออะไร เมื่อการแข่งขันเป็น \"อันดับสิ้นปี\"?",
    "context": "CREATE TABLE table_name_39 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT total FROM table_name_40 WHERE player = \"mark o'meara\"",
    "question_en": "What was Mark O'Meara's total?",
    "question_th": "ยอดรวมของ Mark O'Meara เป็นเท่าใด",
    "context": "CREATE TABLE table_name_40 (total VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT year_s__won FROM table_name_87 WHERE player = \"tom watson\"",
    "question_en": "What year did Tom Watson win?",
    "question_th": "Tom Watson ชนะในปีไหน?",
    "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_en": "Who was the 1st member elected in 1511/12?",
    "question_th": "สมาชิกคนที่ 1 ที่ได้รับเลือกในปี 1511/55 คือใคร?",
    "context": "CREATE TABLE table_name_53 (elected VARCHAR)"
  },
  {
    "answer": "SELECT 1 AS st_member FROM table_name_51 WHERE dissolved = \"23 february 1510\"",
    "question_en": "Who was the 1st member of the parliament that was dissolved 23 february 1510?",
    "question_th": "สมาชิกรัฐสภาคนแรกที่ถูกยุบในวันที่ 23 กุมภาพันธ์ ค.ศ. 1510 คือใคร?",
    "context": "CREATE TABLE table_name_51 (dissolved VARCHAR)"
  },
  {
    "answer": "SELECT 1 AS st_member FROM table_name_44 WHERE elected = \"1541/42\"",
    "question_en": "Who was the 1st member that was elected in 1541/42?",
    "question_th": "สมาชิกคนแรกที่ได้รับเลือกเมื่อ พ.ศ. 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_en": "Who was the 2nd member of the parliament that was assembled on 3 november 1529?",
    "question_th": "สมาชิกสภาผู้แทนราษฎรคนที่ 2 ที่มาประชุมเมื่อวันที่ 3 พฤศจิกายน พ.ศ. 2072 คือใคร?",
    "context": "CREATE TABLE table_name_19 (assembled VARCHAR)"
  },
  {
    "answer": "SELECT 2 AS nd_member FROM table_name_37 WHERE assembled = \"3 november 1529\"",
    "question_en": "Who was the 2nd member of the parliament that was assembled on 3 november 1529?",
    "question_th": "สมาชิกสภาผู้แทนราษฎรคนที่ 2 ที่มาประชุมเมื่อวันที่ 3 พฤศจิกายน พ.ศ. 2072 คือใคร?",
    "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_en": "What date was the competition of the Emerging Nations Tournament and a result of Scotland 34-9 Russia?",
    "question_th": "การแข่งขัน Emerging Nations Tournament และผลการแข่งขันของสกอตแลนด์ 34-9 รัสเซียคือวันใด",
    "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_en": "What number was manufactured 1 in 1841?",
    "question_th": "1 ผลิตขึ้นในปี พ.ศ. 2384 มีหมายเลขอะไรบ้าง?",
    "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_en": "What is the quantity of class B V?",
    "question_th": "Class BV มีปริมาณเท่าใด?",
    "context": "CREATE TABLE table_name_55 (quantity VARCHAR, class VARCHAR)"
  },
  {
    "answer": "SELECT number_s_ FROM table_name_50 WHERE quantity = \"24\"",
    "question_en": "What number corresponds to the quantity of 24?",
    "question_th": "ตัวเลขใดตรงกับปริมาณของ 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_en": "What is Tim Wollthan's Date of Birth?",
    "question_th": "วันเกิดของ Tim Wollthan คืออะไร",
    "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_en": "What D Player with a Height of m (ft 4in) is in the Spandau 04 Club?",
    "question_th": "Spandau 04 Club มีผู้เล่น D คนไหนที่มีส่วนสูง (ฟุต 4 นิ้ว) บ้าง?",
    "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_en": "What is the Club of the Player with a Date of Birth of 1979-01-29?",
    "question_th": "สโมสรของผู้เล่นที่มีวันเกิด 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_en": "What is the Weight of the Spandau 04 Player with a Height of m (ft 5in)?",
    "question_th": "น้ำหนักของผู้เล่น Spandau 04 ที่มีส่วนสูง m (ฟุต 5 นิ้ว) คือเท่าไร?",
    "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_en": "What is Spandau 04 Player Jens Pohlmann's Pos.?",
    "question_th": "ตำแหน่งผู้เล่น Spandau 04 Jens Pohlmann คืออะไร?",
    "context": "CREATE TABLE table_name_1 (pos VARCHAR, club VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_62 WHERE country = \"ireland\"",
    "question_en": "Which play is from Ireland?",
    "question_th": "ละครเรื่องใดมาจากไอร์แลนด์?",
    "context": "CREATE TABLE table_name_62 (player VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_18 WHERE player = \"howard clark\"",
    "question_en": "Which country is Howard Clark from?",
    "question_th": "ฮาวเวิร์ด คลาร์ก มาจากประเทศใด",
    "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_en": "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?",
    "question_th": "อะไรคือเหรียญเงินที่ได้รับมากที่สุดในบรรดาประเทศที่ได้รับทั้งหมดมากกว่า 40 เหรียญ น้อยกว่า 25 เหรียญเป็นเหรียญทอง และมากกว่า 15 เหรียญเป็นเหรียญทองแดง",
    "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_en": "Of the 1978 winners, who had finish totals smaller than 292?",
    "question_th": "จากผู้ชนะในปี 1978 ใครที่ทำคะแนนรวมได้น้อยกว่า 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_en": "What were the finishes by David Graham with totals lower than 292?",
    "question_th": "David Graham เข้าเส้นชัยด้วยคะแนนรวมต่ำกว่า 292 ได้อย่างไร",
    "context": "CREATE TABLE table_name_19 (finish VARCHAR, total VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_79 WHERE country = \"australia\"",
    "question_en": "What is Australia´s finish?",
    "question_th": "การสิ้นสุดของออสเตรเลียคืออะไร?",
    "context": "CREATE TABLE table_name_79 (finish VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT church_name FROM table_name_29 WHERE location_of_the_church = \"florø\"",
    "question_en": "What is the name of the church that is located in florø?",
    "question_th": "โบสถ์ที่ตั้งอยู่ในฟลอโรชื่ออะไร?",
    "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_en": "What is the name of the church that is located in eikefjord?",
    "question_th": "โบสถ์ที่ตั้งอยู่ในเอเกฟยอร์ดชื่ออะไรคะ?",
    "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_en": "In which Parish (Prestegjeld) is the church called Stavang Kyrkje?",
    "question_th": "โบสถ์ชื่อ Stavang Kyrkje อยู่ที่ตำบลใด (Prestegjeld)",
    "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_en": "What is the Sub-Parish (Sokn) that was built in 1957 in the location of Stavang?",
    "question_th": "Sub-Parish (Sokn) ที่สร้างขึ้นเมื่อปี พ.ศ. 2500 ในบริเวณสตาวังคืออะไร?",
    "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ø\"",
    "question_en": "In what year was the church located in florø built?",
    "question_th": "โบสถ์ที่เมืองฟลอโรสร้างขึ้นในปีใด",
    "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_en": "Which Parish (Prestegjeld) was built in 1907?",
    "question_th": "เขตตำบลใด (Prestegjeld) ถูกสร้างขึ้นในปี 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_en": "What's the average year that sara orlesky and farhan lalji are the sideline reporters?",
    "question_th": "ปีโดยเฉลี่ยที่ซารา ออร์เลสกี้และฟาร์ฮาน ลาลจีเป็นนักข่าวนอกรอบคือปีใด",
    "context": "CREATE TABLE table_name_65 (year INTEGER, sideline_reporters VARCHAR)"
  },
  {
    "answer": "SELECT MAX(attendance) FROM table_name_83 WHERE date = \"september 29\"",
    "question_en": "What was the attendance on september 29?",
    "question_th": "ผู้เข้าร่วมในวันที่ 29 กันยายนมีอะไรบ้าง?",
    "context": "CREATE TABLE table_name_83 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT AVG(attendance) FROM table_name_71 WHERE date = \"september 8\"",
    "question_en": "What was the attendance on september 8?",
    "question_th": "ผู้เข้าร่วมในวันที่ 8 กันยายนมีอะไรบ้าง?",
    "context": "CREATE TABLE table_name_71 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT AVG(week) FROM table_name_84 WHERE result = \"l 10–30\" AND attendance > 57 OFFSET 312",
    "question_en": "Which Week has a Result of l 10–30, and an Attendance larger than 57,312?",
    "question_th": "สัปดาห์ใดมีผลลัพธ์ l 10–30 และมีผู้เข้าร่วมมากกว่า 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_en": "What is Date, when Tie no is \"3\"?",
    "question_th": "วันที่คืออะไร เมื่อ Tie no คือ \"3\"?",
    "context": "CREATE TABLE table_name_33 (date VARCHAR, tie_no VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_62 WHERE away_team = \"brentford\"",
    "question_en": "What is Date, when Away Team is \"Brentford\"?",
    "question_th": "วันที่เท่าไหร่เมื่อทีมเยือนคือ \"เบรนท์ฟอร์ด\"?",
    "context": "CREATE TABLE table_name_62 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_6 WHERE home_team = \"everton\"",
    "question_en": "What is Date, when Home Team is \"Everton\"?",
    "question_th": "วันที่เท่าไหร่ เมื่อเจ้าบ้านเป็น “เอฟเวอร์ตัน”?",
    "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_en": "What is Away Team, when Home Team is \"West Ham United\"?",
    "question_th": "ทีมเยือนคืออะไร เมื่อทีมเจ้าบ้านคือ “เวสต์แฮม ยูไนเต็ด”?",
    "context": "CREATE TABLE table_name_83 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_22 WHERE balls = 148",
    "question_en": "What is Venue, when Balls is \"148\"?",
    "question_th": "Venue คืออะไร เมื่อ Balls คือ \"148\"?",
    "context": "CREATE TABLE table_name_22 (venue VARCHAR, balls VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_63 WHERE score = \"101\"",
    "question_en": "What is Name, when Score is \"101\"?",
    "question_th": "ชื่อคืออะไร เมื่อคะแนนคือ \"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_en": "What is Date, when Venue is \"Taunton\", and when Name is \"SC Ganguly\"?",
    "question_th": "วันที่คือเมื่อใด เมื่อสถานที่คือ \"ทอนตัน\" และเมื่อใดชื่อคือ \"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_en": "What is Balls, when Venue is \"Bristol\", and when Score is \"104*\"?",
    "question_th": "Balls คืออะไร เมื่อสถานที่คือ \"Bristol\" และเมื่อคะแนนคือ \"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_en": "What is the number of silver when bronze is less than 0?",
    "question_th": "ถ้าบรอนซ์น้อยกว่า 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_en": "What is the gold when silver is less than 1, rank is 12, and total is less than 3?",
    "question_th": "ทองคำจะเป็นอย่างไรเมื่อเงินน้อยกว่า 1 อันดับคือ 12 และผลรวมน้อยกว่า 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_en": "What shows for gold when the rank is less than 3, and silver less than 1?",
    "question_th": "อะไรจะแสดงให้เห็นทองคำเมื่ออันดับน้อยกว่า 3 และเงินน้อยกว่า 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_en": "What is the total when gold is 1, and rank is more than 4, and bronze is 0?",
    "question_th": "เมื่อทองเป็น 1 และอันดับมากกว่า 4 และทองแดงเป็น 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_en": "What shows for bronze when silver is 1, rank is smaller than 4, and gold is larger than 1?",
    "question_th": "อะไรจะแสดงให้เห็นทองแดงเมื่อเงินเป็น 1 อันดับน้อยกว่า 4 และทองมากกว่า 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_en": "What is the gold when silver is 1, rank is larger than 3, total is smaller than 2, bronze is smaller than 0?",
    "question_th": "ทองคำคืออะไรเมื่อเงินเป็น 1 อันดับมากกว่า 3 รวมน้อยกว่า 2 บรอนซ์น้อยกว่า 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_en": "What player is from France?",
    "question_th": "นักเตะคนไหนมาจากฝรั่งเศส?",
    "context": "CREATE TABLE table_name_63 (player VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_93 WHERE player = \"s.k. ho\"",
    "question_en": "What place is S.K. Ho in?",
    "question_th": "เอสเคโฮอยู่ที่ไหน?",
    "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_en": "What player is from Scotland and has a score of 74-70=144?",
    "question_th": "นักเตะคนไหนมาจากสกอตแลนด์และมีคะแนน 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_en": "Which player is from South Africa?",
    "question_th": "นักเตะคนไหนมาจากแอฟริกาใต้?",
    "context": "CREATE TABLE table_name_79 (player VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_97 WHERE score = 72 - 72 = 144",
    "question_en": "What country is the player with a score of 72-72=144 from?",
    "question_th": "นักเตะที่มีคะแนน 72-72=144 มาจากประเทศใด?",
    "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_en": "Which Geelong DFL has 8 losses and more than 4 wins?",
    "question_th": "Geelong DFL คนไหนที่แพ้ 8 ครั้งและชนะมากกว่า 4 ครั้ง?",
    "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_en": "What number of examines after 2005 has a pass percentage of 78.35% with less than 297 students?",
    "question_th": "ข้อสอบหลังปี 2548 มีคะแนนสอบผ่าน 78.35% จำนวนเท่าใด โดยมีนักเรียนน้อยกว่า 297 คน",
    "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_en": "Which venue was founded after 1967 and had the league North American Soccer League?",
    "question_th": "สนามใดก่อตั้งหลังปี 1967 และมีลีก 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_en": "Which venue was fouded before 2000 for basketball?",
    "question_th": "สถานที่ใดถูกปกคลุมไปด้วยบาสเก็ตบอลก่อนปี 2000",
    "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_en": "Which club had football at Mitchel Athletic Field?",
    "question_th": "สโมสรไหนเคยเล่นฟุตบอลที่ 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_en": "Which club was founded in 1962?",
    "question_th": "สโมสรใดก่อตั้งในปี 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_en": "What is the total sum of the player from the United States who won in 1986?",
    "question_th": "ผลรวมของผู้เล่นจากสหรัฐอเมริกาที่ชนะในปี 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_en": "What year did the player with a total less than 300 and a to par of 9 have a win?",
    "question_th": "ผู้เล่นที่มีคะแนนรวมน้อยกว่า 300 และพาร์ 9 ชนะในปีใด",
    "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_en": "What is total number of the to par of player john mahaffey, who has a total less than 298?",
    "question_th": "จำนวนพาร์รวมของผู้เล่น จอห์น มาฮาฟฟีย์ ที่มีคะแนนรวมน้อยกว่า 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_en": "What is the sum of the total of the player who won in 1979?",
    "question_th": "ผลรวมของผู้เล่นที่ชนะในปี 1979 เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_90 (total INTEGER, year_s__won VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_70 WHERE total > 300",
    "question_en": "What is the country of the player who has a total larger than 300?",
    "question_th": "ประเทศของผู้เล่นที่มียอดรวมมากกว่า 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_en": "What is the Shropshire Senior Cup when points are greater than 78 and FA Cup is pre?",
    "question_th": "Shropshire Senior Cup จะเป็นอย่างไรเมื่อมีคะแนนมากกว่า 78 และ FA Cup อยู่ก่อน?",
    "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_en": "What season had 78 points?",
    "question_th": "ฤดูกาลใดมี 78 แต้ม?",
    "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_en": "For the match against Arema Malang that ended in a draw, what was the final score?",
    "question_th": "แมตช์กับ อาเรมา มาลัง จบลงด้วยการเสมอกัน สกอร์สุดท้ายเป็นอย่างไรบ้าง?",
    "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_en": "What was the final score for the match held on April 11, 2007?",
    "question_th": "คะแนนสุดท้ายของการแข่งขันที่จัดขึ้นเมื่อวันที่ 11 เมษายน พ.ศ. 2550 เป็นเท่าใด",
    "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_en": "What was the location for the match held on April 11, 2007, which ended with a score of 0-0?",
    "question_th": "แมตช์ที่จัดขึ้นเมื่อวันที่ 11 เมษายน พ.ศ. 2550 จบลงที่ใดด้วยสกอร์ 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_en": "What was the location for the match held on March 7, 2007, which ended with a score of 0-0?",
    "question_th": "แมตช์ที่จัดขึ้นเมื่อวันที่ 7 มีนาคม พ.ศ. 2550 จบลงที่ใดด้วยสกอร์ 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_en": "Amritpur has what constituency number?",
    "question_th": "อมฤตปุระมีเขตเลือกตั้งอะไร?",
    "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_en": "Kaimganj has what reserved for (SC / ST /None)?",
    "question_th": "Kaimganj มีอะไรสงวนไว้สำหรับ (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_en": "Which country is bob tway from?",
    "question_th": "Bob tway มาจากประเทศไหน?",
    "context": "CREATE TABLE table_name_30 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_59 WHERE year_s__won = \"1986\"",
    "question_en": "Which country won in 1986?",
    "question_th": "ประเทศใดชนะในปี 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_en": "What is Fiji's lowest total?",
    "question_th": "ผลรวมต่ำสุดของฟิจิคือเท่าไร?",
    "context": "CREATE TABLE table_name_63 (total INTEGER, country VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_17 WHERE score = 72 - 66 - 72 = 210",
    "question_en": "What Country had a Player with a Score of 72-66-72=210?",
    "question_th": "ประเทศใดมีผู้เล่นที่มีคะแนน 72-66-72=210?",
    "context": "CREATE TABLE table_name_17 (country VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_96 WHERE to_par = \"–6\"",
    "question_en": "What is the Place of the Player with a To par of –6?",
    "question_th": "ตำแหน่งผู้เล่นที่มีพาร์ถึง –6 คืออะไร?",
    "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_en": "What is the Place of the Player with a Score of 68-73-76=217?",
    "question_th": "ผู้เล่นที่มีคะแนน 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_en": "What is Justin Leonard's To par?",
    "question_th": "พาร์ของ Justin Leonard คืออะไร?",
    "context": "CREATE TABLE table_name_59 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT architecture_version FROM table_name_10 WHERE model = \"1b\"",
    "question_en": "What is the architecture version of Model 1b?",
    "question_th": "เวอร์ชันสถาปัตยกรรมของโมเดล 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_en": "What is the name of the architecture version of the MIPS-III 64-bit, and model 2b?",
    "question_th": "เวอร์ชันสถาปัตยกรรมของ MIPS-III 64 บิต และรุ่น 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_en": "What is the event with a 2:08 time?",
    "question_th": "เหตุการณ์เวลา 2:08 คืออะไร?",
    "context": "CREATE TABLE table_name_1 (event VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT wheels FROM table_name_99 WHERE builder = \"baldwin locomotive works\"",
    "question_en": "What type of wheels did the locomotive have that was built by Baldwin Locomotive Works?",
    "question_th": "หัวรถจักรมีล้อประเภทใดที่สร้างโดย Baldwin Locomotive Works",
    "context": "CREATE TABLE table_name_99 (wheels VARCHAR, builder VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_89 WHERE against = 25",
    "question_en": "Which Venue has Against of 25?",
    "question_th": "สถานที่ใดมีต่อ 25?",
    "context": "CREATE TABLE table_name_89 (venue VARCHAR, against VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_82 WHERE against < 6",
    "question_en": "Which Venue has Against smaller than 6?",
    "question_th": "สถานที่ใดที่มีจำนวนน้อยกว่า 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_en": "What's the value for utah when colorado and new mexico are bush?",
    "question_th": "รัฐยูทาห์มีมูลค่าเท่าไรเมื่อโคโลราโดและเม็กซิโกใหม่อยู่ในภาวะบุช?",
    "context": "CREATE TABLE table_name_7 (utah VARCHAR, colorado VARCHAR, new_mexico VARCHAR)"
  },
  {
    "answer": "SELECT oklahoma FROM table_name_6 WHERE texas = \"kennedy\"",
    "question_en": "What's the value for oklahoma when texas is kennedy?",
    "question_th": "โอคลาโฮมาจะมีมูลค่าเท่าไรเมื่อเท็กซัสเป็นเคนเนดี้",
    "context": "CREATE TABLE table_name_6 (oklahoma VARCHAR, texas VARCHAR)"
  },
  {
    "answer": "SELECT utah FROM table_name_80 WHERE texas = \"humphrey\"",
    "question_en": "What's the value for utah when texas is humphrey?",
    "question_th": "รัฐยูทาห์มีมูลค่าเท่าไรเมื่อเท็กซัสคือฮัมฟรีย์?",
    "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_en": "What's the value for arizona when colorado and nevada are nixon, and texas is humphrey?",
    "question_th": "รัฐแอริโซนามีมูลค่าเท่าไร เมื่อโคโลราโดและเนวาดาเป็นนิกสัน และเท็กซัสคือฮัมฟรีย์",
    "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_en": "What's the value for oklahoma when nevada and colorado are clinton?",
    "question_th": "โอคลาโฮมามีมูลค่าเท่าไรเมื่อเนวาดาและโคโลราโดอยู่คลินตัน",
    "context": "CREATE TABLE table_name_94 (oklahoma VARCHAR, nevada VARCHAR, colorado VARCHAR)"
  },
  {
    "answer": "SELECT arizona FROM table_name_50 WHERE utah = \"eisenhower\"",
    "question_en": "What's the value for arizona when utah is eisenhower?",
    "question_th": "รัฐแอริโซนามีมูลค่าเท่าไรเมื่อยูทาห์เป็นไอเซนฮาวร์",
    "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_en": "How often are there ads during American Top 40?",
    "question_th": "มีโฆษณาในช่วง 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_en": "When does Classic Hits air?",
    "question_th": "Classic Hits ออกอากาศเมื่อใด",
    "context": "CREATE TABLE table_name_94 (time VARCHAR, show_name VARCHAR)"
  },
  {
    "answer": "SELECT role FROM table_name_4 WHERE pick__number = 18",
    "question_en": "What is Pick #18's Role?",
    "question_th": "บทบาทของ Pick #18 คืออะไร?",
    "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_en": "What is the foundation for the institution whose name in English is tanjung puteri technical secondary school?",
    "question_th": "มูลนิธิสำหรับสถาบันที่มีชื่อเป็นภาษาอังกฤษว่า 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_en": "What is the location of the institution whose name in Malay is kolej kemahiran belia nasional, pontian?",
    "question_th": "สถาบันที่มีชื่อในภาษามลายูคือ 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_en": "What was the average money when the score was 68-69-68-72=277?",
    "question_th": "เงินเฉลี่ยเมื่อได้คะแนน 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_en": "What was the highest money when the score was 69-68-67-69=273?",
    "question_th": "เงินสูงสุดเมื่อคะแนนคือ 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_en": "What did South Africa place?",
    "question_th": "แอฟริกาใต้วางอะไร?",
    "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_en": "What county placed t2 and scored 68-69-68-72=277?",
    "question_th": "จังหวัดใดวาง t2 และได้คะแนน 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ège_bastogne_liège = \"danilo di luca ( ita )\"",
    "question_en": "Name the Milan – San Remo which has a Liège–Bastogne–Liège of danilo di luca ( ita )?",
    "question_th": "ตั้งชื่อมิลาน – ซานเรโมซึ่งมีอักษร Liège – Bastogne – Liège ของ danilo di luca (ita) หรือไม่?",
    "context": "CREATE TABLE table_name_81 (milan___san_remo VARCHAR, liège_bastogne_liège VARCHAR)"
  },
  {
    "answer": "SELECT giro_di_lombardia FROM table_name_38 WHERE paris_roubaix = \"servais knaven ( ned )\"",
    "question_en": "Which Giro di Lombardia has a Paris–Roubaix of servais knaven ( ned )?",
    "question_th": "Giro di Lombardia คนไหนมี Paris–Roubaix 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_en": "what kind of Giro di Lombardiahas a Tour of Flanders of tom boonen ( bel ), and a Paris–Roubaix of fabian cancellara ( sui )?",
    "question_th": "Giro di Lombardia มีทัวร์ Flanders ของ Tom Boonen (เบล) แบบไหนและ Paris-Roubaix ของ 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_en": "What are the cargo tonnes when the international (non-CIS) is 297 421?",
    "question_th": "ตันขนส่งสินค้าระหว่างประเทศ (ไม่ใช่ CIS) คือ 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_en": "How manu aircraft landings when the cargo tonnes are 18 344?",
    "question_th": "เครื่องบินของมนูลงจอดอย่างไรเมื่อตันสินค้าอยู่ที่ 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_en": "What is the domestic figure when cargo tonnes equal 25 866?",
    "question_th": "ตัวเลขในประเทศเมื่อตันสินค้าเท่ากับ 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_en": "What is the year that saw a passenger change of +32,9%?",
    "question_th": "ปีใดที่ผู้โดยสารเปลี่ยนแปลง +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_en": "What year had cargo tonnes of 13 585?",
    "question_th": "ปีไหนมีตันบรรทุกสินค้า 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_en": "What round did the event UFC 86 take place?",
    "question_th": "UFC 86 จัดขึ้นรอบใด?",
    "context": "CREATE TABLE table_name_31 (round VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT method FROM table_name_25 WHERE round = \"1\" AND location = \"aruba\"",
    "question_en": "What method was there in round 1 when the location was Aruba?",
    "question_th": "ในรอบที่ 1 มีวิธีการอย่างไรเมื่อตำแหน่งคือ 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_en": "What location was the event ufc: fight for the troops?",
    "question_th": "งาน ufc: สู้เพื่อทัพ จัดขึ้นที่ใด?",
    "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_en": "When was the game that had the St. Louis Rams as visiting team and resulted in a score of 26-0?",
    "question_th": "เกมที่มีเซนต์หลุยส์ แรมส์เป็นทีมเยือนและสกอร์ 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_en": "What date(s) was the game(s) at Candlestick Park?",
    "question_th": "เกมที่ 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_en": "What year was the opponent in the final john higgins category:articles with hcards?",
    "question_th": "คู่ต่อสู้อยู่ในหมวดหมู่สุดท้ายของจอห์น ฮิกกินส์:บทความที่มี 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_en": "Which church was built in 1600?",
    "question_th": "โบสถ์ใดสร้างขึ้นในปี 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_en": "What is the Location of the Church that was built in the year 1914?",
    "question_th": "ที่ตั้งของโบสถ์ที่สร้างขึ้นเมื่อปี พ.ศ. 2457 คือที่ใด?",
    "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_en": "Where is the Church that has a Sub-Parish (Sokn) of rugsund?",
    "question_th": "คริสตจักรที่มีตำบลย่อย (Sokn) ของ 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_en": "Which Year Built has a Parish (Prestegjeld) of bremanger parish, and a Location of the Church of bremanger?",
    "question_th": "ปีใดที่สร้างขึ้นมีตำบล (Prestegjeld) ของตำบล bremanger และที่ตั้งของโบสถ์ 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_en": "Who is the required actor when Robert Austin was the actor in the original production?",
    "question_th": "ใครคือนักแสดงที่ต้องการเมื่อโรเบิร์ต ออสตินเป็นนักแสดงในการผลิตดั้งเดิม",
    "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_en": "Who is the actor in the original production when Troy Stephens is the GamePlan?",
    "question_th": "ใครคือนักแสดงในการผลิตดั้งเดิมเมื่อ Troy Stephens เป็น 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_en": "Who is the GamePlan when Jacqueline King is the actor in the original production?",
    "question_th": "GamePlan คือใครเมื่อ Jacqueline King เป็นนักแสดงในการผลิตดั้งเดิม",
    "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_en": "Who is the GamePlan when Arabella Lazenby is the RolePlay actor?",
    "question_th": "GamePlan คือใครเมื่อ Arabella Lazenby เป็นนักแสดงสวมบทบาท?",
    "context": "CREATE TABLE table_name_29 (gameplan VARCHAR, roleplay VARCHAR)"
  },
  {
    "answer": "SELECT actor_required FROM table_name_24 WHERE flatspin = \"edna stricken\"",
    "question_en": "Who is the actor required when Edna Stricken is the FlatSpin actor?",
    "question_th": "นักแสดงคือใครที่ต้องการเมื่อ Edna Stricken เป็นนักแสดง FlatSpin",
    "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âteauroux (d2)\"",
    "question_en": "What shows for the 1st round when the team 1 was Lb Châteauroux (d2)?",
    "question_th": "รอบแรกจะโชว์อะไรบ้างเมื่อทีม 1 คือ แอลบี ชาโตรูซ์ (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_en": "What shows for 2nd round when the team 1 was Rc Strasbourg (d1)?",
    "question_th": "อะไรแสดงให้เห็นในรอบที่ 2 เมื่อทีม 1 คือ 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_en": "Who was the Home team in Tie #23?",
    "question_th": "ทีมเหย้าในชุดหมายเลข 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_en": "What was the final score in Tie #28?",
    "question_th": "คะแนนสุดท้ายในการเสมอ #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_en": "What score has a to par greater than 15, money ($) greater than 116, with billy burke as the player?",
    "question_th": "คะแนนใดที่มีพาร์มากกว่า 15, เงิน ($) มากกว่า 116 โดยมีบิลลี่ เบิร์กเป็นผู้เล่น?",
    "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_en": "What player has t3 as the place, with england united states as the country?",
    "question_th": "ผู้เล่นคนไหนที่มี t3 เป็นสถานที่ โดยมีอังกฤษเป็นประเทศ?",
    "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_en": "What is the lowest money ($) that has t8 as the place, with a to par greater than 19?",
    "question_th": "เงินต่ำสุด ($) คืออะไรที่มี t8 เป็นจุด โดยมีพาร์มากกว่า 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_en": "What score has money ($) greater than 400, with gene sarazen as the player?",
    "question_th": "คะแนนอะไรที่มีเงิน ($) มากกว่า 400 โดยมียีน sarazen เป็นผู้เล่น?",
    "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_en": "Which Country has a To par smaller than 7, and a Total of 148?",
    "question_th": "ประเทศใดมีพาร์ To น้อยกว่า 7 และผลรวมเป็น 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_en": "Which player is from south africa?",
    "question_th": "นักเตะคนไหนมาจากแอฟริกาใต้?",
    "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_en": "Which Year(s) won has a Total larger than 148, and a To par smaller than 17, and a Country of new zealand?",
    "question_th": "ปีใดที่ชนะมีคะแนนรวมมากกว่า 148 และ To par น้อยกว่า 17 และประเทศนิวซีแลนด์",
    "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_en": "In what Event did Dorcus Inzikuru compete?",
    "question_th": "Dorcus Inzikuru แข่งขันในรายการใด?",
    "context": "CREATE TABLE table_name_86 (event VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT games FROM table_name_60 WHERE name = \"patrick etolu\"",
    "question_en": "In what Games did Patrick Etolu compete?",
    "question_th": "Patrick Etolu ลงแข่งขันในเกมใดบ้าง",
    "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_en": "What Medal did James Odwori receive for Boxing in the 1970 Edinburgh Games?",
    "question_th": "James Odwori ได้รับเหรียญอะไรจากการชกมวยในเกมเอดินบะระปี 1970",
    "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_en": "What is the Medal for the Player in the Light Heavyweight event?",
    "question_th": "เหรียญสำหรับผู้เล่นในรุ่นไลท์เฮฟวี่เวทคืออะไร?",
    "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_en": "At what Games did the competitor win a Silver medal in the light heavyweight event?",
    "question_th": "ผู้เข้าแข่งขันได้รับรางวัลเหรียญเงินในการแข่งขันรุ่นไลต์เฮฟวี่เวทในงานใดบ้าง",
    "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_en": "What is the Tie no for Away Team Ipswich Town?",
    "question_th": "ผลเสมอไม่สำหรับทีมเยือนอิปสวิช ทาวน์คืออะไร?",
    "context": "CREATE TABLE table_name_26 (tie_no VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_42 WHERE home_team = \"middlesbrough\"",
    "question_en": "What is the Date of the Middlesbrough Home game?",
    "question_th": "เกมเหย้าของมิดเดิ้ลสโบรช์คือเกมอะไร?",
    "context": "CREATE TABLE table_name_42 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_40 WHERE score = \"1–0\"",
    "question_en": "What is the Home team in the Game with a Score of 1–0?",
    "question_th": "ทีมเจ้าบ้านในเกมที่มีสกอร์ 1–0 คือทีมใด?",
    "context": "CREATE TABLE table_name_40 (home_team VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_95 WHERE away_team = \"everton\"",
    "question_en": "What is the Date of the Everton Away game?",
    "question_th": "เกมเยือนเอฟเวอร์ตันคือเกมวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_95 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_28 WHERE finish = \"t31\"",
    "question_en": "When the finish was t31 what was the To par?",
    "question_th": "เมื่อจบที่ t31 To par คืออะไร?",
    "context": "CREATE TABLE table_name_28 (to_par VARCHAR, finish VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_67 WHERE finish = \"t15\"",
    "question_en": "Who had a finish of t15?",
    "question_th": "ใครจบ T15 บ้าง?",
    "context": "CREATE TABLE table_name_67 (player VARCHAR, finish VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_59 WHERE total = 290",
    "question_en": "When the total was 290 what was the To par?",
    "question_th": "เมื่อผลรวมเป็น 290 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_en": "What is the Total for Seve Ballesteros?",
    "question_th": "ยอดรวมของ Seve Ballesteros คืออะไร?",
    "context": "CREATE TABLE table_name_47 (total INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_23 WHERE nominee = \"declan donnellan\"",
    "question_en": "What was the result of Declan Donnellan's nomination?",
    "question_th": "อะไรคือผลลัพธ์ของการเสนอชื่อ Declan Donnellan?",
    "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_en": "What was the result of the Best Actor in a Musical category?",
    "question_th": "ผลรางวัลนักแสดงนำชายยอดเยี่ยมประเภทดนตรีเป็นอย่างไร",
    "context": "CREATE TABLE table_name_81 (result VARCHAR, category VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_26 WHERE total = 287",
    "question_en": "WHAT IS THE PLAYER WITH 287?",
    "question_th": "ผู้เล่นที่มี 287 คืออะไร?",
    "context": "CREATE TABLE table_name_26 (player VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_25 WHERE player = \"jack nicklaus\"",
    "question_en": "WHAT COUNTRY HAS A PLAYER NAMED JACK NICKLAUS?",
    "question_th": "ผู้เล่นชื่อ 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_en": "What is Player, when Country is \"United States\", and when Place is \"6\"?",
    "question_th": "Player คืออะไร เมื่อประเทศคือ \"สหรัฐอเมริกา\" และเมื่อสถานที่คือ \"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_en": "What is the average Money ( $ ), when Score is \"69-69-76-69=283\"?",
    "question_th": "เงินเฉลี่ย ($ ) คือเท่าใดเมื่อคะแนนคือ \"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_en": "What is Country, when To par is \"+1\", and when Score is \"72-71-70-72=285\"?",
    "question_th": "ประเทศคืออะไร เมื่อพาร์คือ \"+1\" และเมื่อสกอร์คือ \"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_en": "What is Place, when Score is \"70-70-68-70=278\"?",
    "question_th": "สถานที่คืออะไร เมื่อคะแนนคือ \"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_en": "For which network was Chris Walby the color commentator after 1990?",
    "question_th": "Chris Walby เป็นผู้วิจารณ์สีสำหรับเครือข่ายใดหลังปี 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_en": "Who was the pregame host before 1992 when there was a play by play of Bob Irving?",
    "question_th": "ใครคือพิธีกรก่อนเกมก่อนปี 1992 เมื่อมีการเล่นต่อโดยการเล่นของ 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_en": "What is the total of the player who won before 1991 and has a to par less than 14?",
    "question_th": "นักเตะที่ชนะก่อนปี 1991 และมีพาร์น้อยกว่า 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_en": "What is the total to par of player jeff sluman, who won before 1993 and has a total greater than 154?",
    "question_th": "จำนวนพาร์ของผู้เล่น เจฟฟ์ สลูแมน ที่ชนะก่อนปี 1993 และมีคะแนนรวมมากกว่า 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_en": "What is the sum of the total of player rich beem, who has a to par greater than 17?",
    "question_th": "ผลรวมของผู้เล่นริชบีมที่มีพาร์มากกว่า 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_en": "Who was the away team in the semifinals?",
    "question_th": "ทีมเยือนในรอบรองชนะเลิศคือใคร?",
    "context": "CREATE TABLE table_name_34 (away VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_34 WHERE club = \"auxerre\"",
    "question_en": "What is the home record for the Auxerre club?",
    "question_th": "สถิติในบ้านของสโมสรโอแซร์เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_34 (home VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_85 WHERE club = \"maccabi tel-aviv\"",
    "question_en": "What is the home record for the Maccabi Tel-Aviv club?",
    "question_th": "สถิติในบ้านของสโมสรมัคคาบี้ เทล-อาวีฟ คืออะไร?",
    "context": "CREATE TABLE table_name_85 (home VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(against) FROM table_name_88 WHERE date = \"16/03/1996\"",
    "question_en": "What is the total number of Against, when Date is \"16/03/1996\"?",
    "question_th": "จำนวนต่อต้านทั้งหมดคือเท่าไร เมื่อวันที่คือ \"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_en": "What is Venue, when Against is greater than 9, and when Date is \"03/02/1996\"?",
    "question_th": "Venue คืออะไร เมื่อ Against มากกว่า 9 และเมื่อใดคือ \"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_en": "What is Status, when Opposing Teams is \"Scotland\"?",
    "question_th": "สถานะคืออะไร เมื่อทีมตรงข้ามคือ \"สกอตแลนด์\"?",
    "context": "CREATE TABLE table_name_16 (status VARCHAR, opposing_teams VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_44 WHERE date = \"14/12/1996\"",
    "question_en": "What is Venue, when Date is \"14/12/1996\"?",
    "question_th": "Venue คืออะไร เมื่อวันที่คือ \"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_en": "What is the average Against, when Status is \"Five Nations\", and when Date is \"16/03/1996\"?",
    "question_th": "ค่าเฉลี่ยต่อต้านคือเท่าใด เมื่อสถานะเป็น \"ห้าชาติ\" และเมื่อวันที่คือ \"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_en": "In what year did the team of aston martin racing have a position of 6th?",
    "question_th": "ทีม aston martin racing ขึ้นอันดับ 6 ในปีใด?",
    "context": "CREATE TABLE table_name_35 (year VARCHAR, team VARCHAR, pos VARCHAR)"
  },
  {
    "answer": "SELECT highest_rank FROM table_name_44 WHERE name = \"yoshiazuma\"",
    "question_en": "Which Rank is Highest for Yoshiazuma?",
    "question_th": "อันดับไหนสูงที่สุดสำหรับ 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_en": "Which Top Division debut for Kitazakura has Tournaments less than 88?",
    "question_th": "Top Division ของ Kitazakura ตัวไหนที่มีทัวร์นาเมนต์น้อยกว่า 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_en": "What is the lowest Tournaments with Highest Rank of Maegashira 13?",
    "question_th": "ทัวร์นาเมนต์ต่ำสุดที่มีอันดับสูงสุดของ 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_en": "What was the city where Hallescher FC won in 2008?",
    "question_th": "เมืองที่ Hallescher FC ชนะในปี 2008 คือเมืองใด?",
    "context": "CREATE TABLE table_name_74 (city VARCHAR, winner VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_58 WHERE finalist = \"fc grün-weiß wolfen\"",
    "question_en": "Who was the winner of fc grün-weiß wolfen?",
    "question_th": "ใครคือผู้ชนะของ เอฟซี กรุน-ไวส์ โวลเฟน?",
    "context": "CREATE TABLE table_name_58 (winner VARCHAR, finalist VARCHAR)"
  },
  {
    "answer": "SELECT stadium FROM table_name_31 WHERE year > 2012",
    "question_en": "What was the stadium past 2012?",
    "question_th": "สนามกีฬาอะไรในอดีตปี 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_en": "What is the average Year, when Country is \"U.S.\", and when Location is \"Edmond , OK\"?",
    "question_th": "ปีเฉลี่ยคือเท่าไร เมื่อประเทศคือ \"US\" และเมื่อสถานที่คือ \"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_en": "What is the lowest Killed, when Perpetrator is \"Sherrill, Patrick Henry , 44\"?",
    "question_th": "ค่าฆ่าที่ต่ำที่สุดคืออะไร เมื่อผู้กระทำผิดคือ \"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_en": "What was the highest goals with fewer than 16 losses, fewer than 11 wins, and a goal difference greater than -9?",
    "question_th": "ประตูสูงสุดโดยแพ้น้อยกว่า 16 นัด ชนะน้อยกว่า 11 ครั้ง และผลต่างประตูมากกว่า -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_en": "What is the highest wins entry with fewer than 51 goals, more than 39 points, and a goal difference smaller than 13?",
    "question_th": "รายการใดที่ชนะสูงสุดโดยทำได้น้อยกว่า 51 ประตู มากกว่า 39 แต้ม และผลต่างประตูน้อยกว่า 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_en": "What is the lowest wins entry that has a goal difference less than 33, position higher than 13, and 42 goals?",
    "question_th": "รายการชนะต่ำสุดที่มีผลต่างประตูน้อยกว่า 33, อันดับสูงกว่า 13 และ 42 ประตูคืออะไร?",
    "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_en": "What is the total number of goals for entries that have more than 7 draws, 8 wins, and more than 5 losses?",
    "question_th": "จำนวนประตูรวมสำหรับรายการที่เสมอมากกว่า 7 ครั้ง ชนะ 8 ครั้ง และแพ้มากกว่า 5 ครั้งเป็นเท่าใด",
    "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ádio dr. magalhães pessoa\"",
    "question_en": "What city is the Stadium estádio dr. magalhães pessoa in?",
    "question_th": "สนามกีฬา estádio dr. อยู่ที่เมืองใด มากัลเฮส pessoa ใน?",
    "context": "CREATE TABLE table_name_86 (city VARCHAR, stadium VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_93 WHERE stadium = \"estádio cidade de barcelos\"",
    "question_en": "What city is the Stadium estádio cidade de barcelos in?",
    "question_th": "Stadium estádio cidade de barcelos ตั้งอยู่ในเมืองใด?",
    "context": "CREATE TABLE table_name_93 (city VARCHAR, stadium VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_name_36 WHERE head_coach = \"casemiro mior\"",
    "question_en": "Head Coach casemiro mior is at which Club?",
    "question_th": "เฮดโค้ช คาเซมิโร่ มิออร์ อยู่สโมสรไหน?",
    "context": "CREATE TABLE table_name_36 (club VARCHAR, head_coach VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_79 WHERE club = \"braga\"",
    "question_en": "What City is the Club braga in?",
    "question_th": "คลับบรากาอยู่เมืองไหน?",
    "context": "CREATE TABLE table_name_79 (city VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT 2002 AS _2003_season FROM table_name_20 WHERE city = \"aveiro\"",
    "question_en": "What place is listed in the 2002-2003 season for the City of Aveiro?",
    "question_th": "สถานที่ใดที่ระบุไว้ในฤดูกาล 2545-2546 สำหรับเมืองอาวีโร?",
    "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_en": "What is the 1st round with fc nantes (d1) as team 1?",
    "question_th": "รอบแรกมีเอฟซี น็องต์ (d1) เป็นทีม 1 คืออะไร?",
    "context": "CREATE TABLE table_name_25 (team_1 VARCHAR)"
  },
  {
    "answer": "SELECT team_1 FROM table_name_66 WHERE team_2 = \"nîmes olympique (d2)\"",
    "question_en": "What is the team 1 with nîmes olympique (d2) as team 2?",
    "question_th": "ทีม 1 โดยมีนีมส์โอลิมปิก (d2) เป็นทีม 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_en": "In what language is the Lyrics of the release on August 10, 2005 with Catalog number of TOCP-66427?",
    "question_th": "เนื้อเพลงที่ออกเมื่อวันที่ 10 สิงหาคม พ.ศ. 2548 หมายเลขแคตตาล็อก 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_en": "What is the Label of the CD released in Germany on June 6, 2005?",
    "question_th": "ฉลากของซีดีที่วางจำหน่ายในเยอรมนีเมื่อวันที่ 6 มิถุนายน พ.ศ. 2548 คืออะไร",
    "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_en": "What is the Region of the EMI 4 x vinyl release bearing Catalog number 560 6111?",
    "question_th": "ภูมิภาคของ EMI 4 x ตลับลูกปืนปล่อยไวนิลหมายเลขแค็ตตาล็อก 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_en": "What language is the Lyrics of the release with Catalog number 560 6111?",
    "question_th": "เนื้อเพลงของการเปิดตัวที่มีหมายเลขแคตตาล็อก 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_en": "What is the Region of the release with Catalog number 3 12046 2?",
    "question_th": "ภูมิภาคที่วางจำหน่ายพร้อมหมายเลขแคตตาล็อก 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_en": "What is the Label of the September 19, 2008 release in Germany?",
    "question_th": "ป้ายชื่อของการวางจำหน่ายวันที่ 19 กันยายน พ.ศ. 2551 ในเยอรมนีคืออะไร",
    "context": "CREATE TABLE table_name_25 (label VARCHAR, date VARCHAR, region VARCHAR)"
  },
  {
    "answer": "SELECT edition_s_ FROM table_name_82 WHERE region = \"germany\"",
    "question_en": "What is the Edition of the release in Germany?",
    "question_th": "รุ่นของการเปิดตัวในเยอรมนีคืออะไร?",
    "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_en": "What is the Format(s) of the release on September 23, 2008?",
    "question_th": "รูปแบบของการเปิดตัวในวันที่ 23 กันยายน 2551 คืออะไร?",
    "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_en": "What is the Label of the release on April 24, 2009 in Germany?",
    "question_th": "ฉลากของการวางจำหน่ายเมื่อวันที่ 24 เมษายน พ.ศ. 2552 ในเยอรมนีคืออะไร",
    "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_en": "What is the L2 Cache for Model Number nano u3400 with an Idle Power of 100mw?",
    "question_th": "L2 Cache สำหรับหมายเลขรุ่น nano u3400 ที่มีกำลังไฟว่าง 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_en": "What is the total Cores with a Clock Speed of 1.3ghz?",
    "question_th": "Cores ทั้งหมดที่มีความเร็วสัญญาณนาฬิกา 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_en": "What's the to par for the score of 68-74-71-77=290?",
    "question_th": "คะแนนพาร์ 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_en": "What's the money ($) for the t3 place and the score of 74-74-71-69=288?",
    "question_th": "เงิน ($) สำหรับอันดับที่ 3 คือเท่าไร และคะแนน 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_en": "What's the score for $22,500?",
    "question_th": "คะแนนสำหรับ $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_en": "What's the to par for the t1 place with a score of 70-72-73-72=287?",
    "question_th": "อันดับ 1 ด้วยสกอร์ 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_en": "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?",
    "question_th": "การแลกเปลี่ยนเฉลี่ยต่อปีสำหรับอันดับที่มากกว่า 26 ในลิเวอร์พูลโดยมีค่าเข้า/ออกน้อยกว่า 14.209 และมากกว่า 10 แพลตฟอร์มเป็นเท่าใด",
    "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_en": "What's the highest annual interchange for wimbledon railway station?",
    "question_th": "การแลกเปลี่ยนสถานีรถไฟวิมเบิลดันประจำปีสูงสุดคือเท่าใด",
    "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_en": "What's the lowest number of total passengers (millions) for an annual entry/exit of 36.609?",
    "question_th": "จำนวนผู้โดยสารทั้งหมดต่ำสุด (ล้าน) สำหรับการเข้า/ออกประจำปีที่ 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_en": "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?",
    "question_th": "อันดับใดมีการแลกเปลี่ยนระหว่างกันน้อยกว่า 1.99 ล้านคนต่อปี การเข้า/ออกน้อยกว่า 13.835 ล้านคนต่อปี และมีผู้โดยสารรวมมากกว่า 13.772 ล้านคน",
    "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_en": "How many ranks are in liverpool with more than 3 platforms and an annual interchange less than 0.778 million?",
    "question_th": "ลิเวอร์พูลมีกี่อันดับที่มีมากกว่า 3 แพลตฟอร์มและมีการแลกเปลี่ยนน้อยกว่า 0.778 ล้านต่อปี?",
    "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_en": "Which Number of households has Per capita income of $21,571, and a Population smaller than 9,783?",
    "question_th": "จำนวนครัวเรือนใดที่มีรายได้ต่อหัวอยู่ที่ 21,571 ดอลลาร์ และมีประชากรน้อยกว่า 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_en": "Which Number of households has a County of cook, and Population smaller than 5,176?",
    "question_th": "จำนวนครัวเรือนใดที่มีเขตปรุงอาหาร และมีประชากรน้อยกว่า 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_en": "What Per capita income has a Median family income of $50,755?",
    "question_th": "รายได้ต่อหัวของรายได้ครอบครัวเฉลี่ยอยู่ที่ 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_en": "What Number of households have a Median family income of $58,491?",
    "question_th": "จำนวนครัวเรือนใดที่มีรายได้เฉลี่ยของครอบครัวอยู่ที่ 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_en": "What was the to par score of the golfer that had a score of 68-70=138?",
    "question_th": "คะแนนพาร์ของนักกอล์ฟที่มีคะแนน 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_en": "Which golfer had a score of 69-71=140?",
    "question_th": "นักกอล์ฟคนไหนมีคะแนน 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_en": "Which country is t3 finisher billy mayfair from?",
    "question_th": "บิลลี่ เมย์แฟร์ หมัดเด็ดของ T3 มาจากประเทศใด?",
    "context": "CREATE TABLE table_name_37 (country VARCHAR, place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_62 WHERE player = \"jodie mudd\"",
    "question_en": "Which Country has a Player of jodie mudd?",
    "question_th": "ประเทศใดมีผู้เล่นของ jodie mudd?",
    "context": "CREATE TABLE table_name_62 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(money___) AS £__ FROM table_name_72 WHERE player = \"jodie mudd\"",
    "question_en": "Which Money (£) has a Player of jodie mudd?",
    "question_th": "เงิน (ปอนด์) ใดที่มีผู้เล่นของ jodie mudd?",
    "context": "CREATE TABLE table_name_72 (money___ VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT SUM(money___) AS £__ FROM table_name_56 WHERE player = \"nick faldo\"",
    "question_en": "What is the total Money (£) of Player of nick faldo?",
    "question_th": "เงินทั้งหมด (ปอนด์) ของผู้เล่นของ nick faldo คือเท่าไร?",
    "context": "CREATE TABLE table_name_56 (money___ INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(money___) AS £__ FROM table_name_61 WHERE place = \"t6\" AND player = \"ian baker-finch\"",
    "question_en": "What is the total Money (£) with a Place of t6, and a Player of ian baker-finch?",
    "question_th": "เงินทั้งหมด (ปอนด์) ที่มีอันดับ t6 และผู้เล่นของ 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_en": "What position was the team who had less then 63 goals against and less than 6 losses?",
    "question_th": "ตำแหน่งใดคือทีมที่ยิงได้น้อยกว่า 63 ประตูและแพ้น้อยกว่า 6 นัด?",
    "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_en": "How many times did the team lose who had 1 of 37 points and less than 60 goals against?",
    "question_th": "กี่ครั้งแล้วที่ทีมแพ้ 1 ใน 37 แต้มและยิงได้น้อยกว่า 60 ประตูต่อ?",
    "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_en": "How many times did the team lose who had a goal difference of +2, 52 goals for, and less than 9 draws?",
    "question_th": "กี่ครั้งแล้วที่ทีมแพ้ประตูได้เสีย +2 เสีย 52 ประตู และเสมอน้อยกว่า 9 นัด?",
    "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_en": "How many draws did clitheroe have when their position was less than 12 and they lost less than 4 times?",
    "question_th": "คลิเธอโรเสมอกันกี่ครั้งเมื่ออันดับต่ำกว่า 12 และแพ้น้อยกว่า 4 ครั้ง?",
    "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_en": "What is the reserved for (ST/ST/None) when it was Uklana?",
    "question_th": "สงวนไว้สำหรับอะไร (ST/ST/ไม่มี) เมื่อเป็น 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_en": "Bhiwani district have what constituency number?",
    "question_th": "อำเภอพิวนีมีเขตเลือกตั้งอะไร?",
    "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_en": "What is the constituency number with electorates (2009) number larger than 152,958?",
    "question_th": "หมายเลขเขตเลือกตั้งที่มีจำนวนผู้มีสิทธิเลือกตั้ง (2009) มากกว่า 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_en": "What is the date of the performance by Jatin Shah and co-contestant is Shalini Chandran?",
    "question_th": "การแสดงของ Jatin Shah และผู้เข้าแข่งขันร่วมคือ 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_en": "What are the scores when total score/week is 41/60 and co-contestant is Shalini Chandran?",
    "question_th": "คะแนนรวม/สัปดาห์คือ 41/60 และผู้เข้าแข่งขันร่วมคือ ชาลินี จันดราน คะแนนเป็นเท่าใด",
    "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_en": "What position is there when the main contestant is Vishal Singh and the scores are 1 + 7 + 5 = 13?",
    "question_th": "จะมีตำแหน่งไหนเมื่อผู้เข้าแข่งขันหลักคือ วิชาล สิงห์ และคะแนนเป็น 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_en": "Who is the main contestant when the co-contestant (yaar vs. pyaar) is Shalini Chandran?",
    "question_th": "ผู้เข้าแข่งขันหลักคือใครเมื่อผู้เข้าแข่งขันร่วม (yaar กับ pyaar) คือ 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_en": "Who is the main contestant eliminated with a score of 1 + 7 + 5 = 13?",
    "question_th": "ผู้เข้าแข่งขันหลักตกรอบด้วยคะแนน 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_en": "What shows for series 4 when the seat shows 1?",
    "question_th": "สิ่งที่แสดงให้เห็นสำหรับซีรีส์ 4 เมื่อที่นั่งแสดง 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érová\"",
    "question_en": "What is the seat number when Series 3 shows Dana Bérová?",
    "question_th": "หมายเลขที่นั่งเมื่อ Series 3 แสดง Dana Bérová คืออะไร",
    "context": "CREATE TABLE table_name_81 (seat INTEGER, series_3 VARCHAR)"
  },
  {
    "answer": "SELECT partner FROM table_name_2 WHERE tournament = \"algiers 2, algeria\"",
    "question_en": "Who was the Partner in the Algiers 2, Algeria Tournament?",
    "question_th": "ใครคือหุ้นส่วนในการแข่งขัน 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_en": "Who were the Opponents in the Match with Partner Rushmi Chakravarthi?",
    "question_th": "ใครคือฝ่ายตรงข้ามในการแข่งขันกับคู่หู รัชมี จักราวาร์ธี?",
    "context": "CREATE TABLE table_name_80 (opponents VARCHAR, partner VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_27 WHERE score = \"6–4, 7–5\"",
    "question_en": "What is the Date of the Match with a Score of 6–4, 7–5?",
    "question_th": "วันที่แข่งขันด้วยคะแนน 6–4, 7–5 คืออะไร?",
    "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_en": "What is the fewest loses for the club that is below 8 in position, and had played less than 30 games?",
    "question_th": "อะไรคือความพ่ายแพ้น้อยที่สุดสำหรับสโมสรที่อยู่ในตำแหน่งต่ำกว่า 8 และลงเล่นน้อยกว่า 30 เกม?",
    "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_en": "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?",
    "question_th": "ผลรวมการแพ้เมื่อเสมอน้อยกว่า 4 ครั้ง เสียประตูน้อยกว่า 105 ประตู ทำได้น้อยกว่า 38 ประตู และสโมสรอยู่ในตำแหน่งที่มากกว่า 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_en": "How many total goals conceded are there when the points are greater than 58, less than 27 wins, and less than 1 draws?",
    "question_th": "มีเสียประตูทั้งหมดกี่ประตูเมื่อคะแนนมากกว่า 58 ชนะน้อยกว่า 27 และเสมอน้อยกว่า 1 ครั้ง?",
    "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_en": "How many total goals scored when less than 30 games have been played?",
    "question_th": "จำนวนประตูทั้งหมดที่ทำได้เมื่อเล่นน้อยกว่า 30 เกม?",
    "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_en": "When less than 30 games have been played what is the average goals scored?",
    "question_th": "เมื่อเล่นน้อยกว่า 30 เกม ค่าเฉลี่ยประตูที่ทำได้คืออะไร?",
    "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_en": "What is the league cup app with league cup goals more than 0?",
    "question_th": "แอพลีกคัพที่มีประตูลีกคัพมากกว่า 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_en": "What is the fa cup apps with 0 league cup goals, and a total of 43 apps?",
    "question_th": "แอพเอฟเอคัพที่มี 0 ประตูในลีกคัพรวม 43 แอพคืออะไร?",
    "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_en": "What is the highest FLT goals with 0 league cup goals, a GK position, and 2 league cup apps?",
    "question_th": "อะไรคือประตูสูงสุดของ FLT โดยมีเป้าหมายในลีกคัพ 0 ประตู ตำแหน่ง GK และแอปลีกคัพ 2 รายการ?",
    "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_en": "On what date is the venue Sam Nujoma Stadium, Windhoek, Namibia?",
    "question_th": "สนาม 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_en": "Who was in third place when the Winner was Dalian Shide, Chongqing Longxin was 4th and 14 clubs?",
    "question_th": "ใครอยู่ในอันดับที่สามเมื่อผู้ชนะคือ Dalian Shide, Chongqing Longxin อยู่ที่ 4 และ 14 สโมสร?",
    "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_en": "What season had Dalian Wanda as the winner with Yanbian Aodong winning 4th?",
    "question_th": "ฤดูกาลใดที่ Dalian Wanda เป็นผู้ชนะ โดย Yanbian Aodong ชนะอันดับที่ 4?",
    "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_en": "What is the number of clubs before 2003 with a 4th place winner of Shenzhen Jianlibao?",
    "question_th": "ก่อนปี 2003 มีสโมสรที่ชนะอันดับ 4 ของเซินเจิ้น เจี้ยนหลี่เป่า มีจำนวนเท่าใด",
    "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_en": "What is the number of clubs when Dalian Shide won and Sichuan Quanxing won 4th?",
    "question_th": "ต้าเหลียน ซื่อเต๋อ ชนะ และ เสฉวน ฉวนซิง ชนะอันดับ 4 มีกี่สโมสร?",
    "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_en": "Who was the winner when the runner-up was Guangzhou Apollo?",
    "question_th": "ใครเป็นผู้ชนะเมื่อรองชนะเลิศคือ 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_en": "How many Byes have an Against of 972, and more than 11 wins?",
    "question_th": "Byes มีกี่คนที่ต่อต้าน 972 และชนะมากกว่า 11 ครั้ง?",
    "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_en": "Which Byes have a Lexton Plains of skipton?",
    "question_th": "Byes ใดมี 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_en": "What is the value for Lost when Drawn is 0, and Tries against is 41?",
    "question_th": "ค่าของแพ้เมื่อจั่วเป็น 0 และพยายามต่อคือ 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_en": "What is the drawn value for furnace united rfc?",
    "question_th": "ค่าที่ดึงออกมาสำหรับ 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_en": "What tries against value does burry port rfc have?",
    "question_th": "Burry port rfc พยายามต่อต้านค่าอะไร",
    "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_en": "Of the ships with diesel-electric hybrid engines, length of 443 feet, and over 190 guests, what is the lowest number of staterooms?",
    "question_th": "ในบรรดาเรือที่ใช้เครื่องยนต์ไฮบริดดีเซล-ไฟฟ้า ความยาว 443 ฟุต และแขกมากกว่า 190 คน อะไรคือจำนวนห้องนอนต่ำสุด?",
    "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_en": "How many wins for the year that is later than 1987 and has points less than 188?",
    "question_th": "ปีที่อยู่หลังปี 1987 และมีคะแนนน้อยกว่า 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_en": "What is the name of the machine that ranked  4th and has 2 wins?",
    "question_th": "เครื่องที่อันดับ 4 ชื่ออะไร ชนะ 2 รายการ?",
    "context": "CREATE TABLE table_name_59 (machine VARCHAR, rank VARCHAR, wins VARCHAR)"
  },
  {
    "answer": "SELECT SUM(wins) FROM table_name_20 WHERE year = 1994",
    "question_en": "How many wins were there in 1994?",
    "question_th": "มีชัยชนะกี่ครั้งในปี 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_en": "What is the rank associated with the team that has more than 2 wins and has greater than 204 points?",
    "question_th": "อันดับที่เกี่ยวข้องกับทีมที่ชนะมากกว่า 2 ครั้งและมีคะแนนมากกว่า 204 คะแนนคืออะไร?",
    "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_en": "How many picks have a Player of pong escobal?",
    "question_th": "ผู้เล่นปิงปองเอสโคบอลมีกี่คน?",
    "context": "CREATE TABLE table_name_80 (pick INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT pba_team FROM table_name_61 WHERE college = \"nu\"",
    "question_en": "Which PBA team has a College of nu?",
    "question_th": "ทีม PBA ไหนมีวิทยาลัยนู?",
    "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_en": "What is the birth place for someone elevated by Lucius III, and has the Cardinalatial title of Deacon of S. Giorgio in Velabro?",
    "question_th": "สถานที่เกิดของบุคคลที่ได้รับการยกระดับโดยลูเซียสที่ 3 และมีตำแหน่งพระคาร์ดินาลาเชียลเป็นมัคนายกแห่งเอส. จอร์โจในเมืองเวลาโบร",
    "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_en": "What is the place of birth for the elector Laborante de Panormo?",
    "question_th": "สถานที่เกิดของผู้มีสิทธิเลือกตั้ง 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_en": "Who is the elector that has the cardinalatial title of Deacon of SS. Cosma e Damiano?",
    "question_th": "ใครคือผู้มีสิทธิเลือกตั้งที่มีตำแหน่งพระคาร์ดินัลเป็น Deacon แห่ง SS คอสมา เอ ดามิอาโน?",
    "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_en": "Who is the elevator with the cardinalatial title of Deacon of SS. Sergio e Bacco?",
    "question_th": "ใครคือลิฟต์ที่มีตำแหน่งสำคัญคือ Deacon of SS เซร์คิโอ เอ บัคโก้?",
    "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_en": "How much Premier League has an FA Cup of 0, and a Total of 1, and a UEFA Cup larger than 1?",
    "question_th": "พรีเมียร์ลีกมีเอฟเอ คัพ 0 ผลรวม 1 และยูฟ่า คัพ มากกว่า 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_en": "How many totals have a Premier League smaller than 6, and a League Cup larger than 0?",
    "question_th": "ผลรวมทั้งหมดมีกี่รายการที่มีพรีเมียร์ลีกที่เล็กกว่า 6 และลีกคัพที่ใหญ่กว่า 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_en": "Which FA Cup has a Total smaller than 1?",
    "question_th": "เอฟเอ คัพ ใดมีแต้มรวมน้อยกว่า 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_en": "What week is the opponent the Indianapolis Colts with an attendance of 68,932?",
    "question_th": "สัปดาห์ไหนที่คู่ต่อสู้อย่าง Indianapolis Colts มีผู้ชม 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_en": "What was the attendance for the week before 10 with a result of L 12-15",
    "question_th": "ผู้เข้าร่วมในสัปดาห์ก่อนวันที่ 10 โดยผล 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_en": "What week has a result of L 17-31 first?",
    "question_th": "สัปดาห์ไหนมีผล L 17-31 ก่อน?",
    "context": "CREATE TABLE table_name_17 (week INTEGER, result VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_24 WHERE attendance = \"70,721\"",
    "question_en": "What was the score for the game that attendance was 70,721?",
    "question_th": "คะแนนของเกมที่มีผู้เข้าร่วม 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_en": "What week was she safe for a salsa dance?",
    "question_th": "สัปดาห์ไหนที่เธอปลอดภัยสำหรับการเต้นรำซัลซ่า?",
    "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_en": "Who was the opponent with the loss in Westbury, NY?",
    "question_th": "ใครคือคู่ต่อสู้ที่พ่ายแพ้ในเวสต์บิวรี นิวยอร์ก?",
    "context": "CREATE TABLE table_name_37 (opponent VARCHAR, result VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_4 WHERE \"type\" = \"type\"",
    "question_en": "What is the date where the type is type?",
    "question_th": "ประเภทคือวันที่เท่าไหร่?",
    "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_en": "What is the total rank for the player with less than 2 silvers, 4 golds, and more than 2 bronze?",
    "question_th": "อันดับรวมของผู้เล่นที่มีน้อยกว่า 2 เหรียญเงิน 4 เหรียญทอง และมากกว่า 2 เหรียญทองแดง คือเท่าไร?",
    "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_en": "What is the sum of rank with more than 1 silver medal, 1 gold medal, and less than 6?",
    "question_th": "ผลรวมอันดับที่มีมากกว่า 1 เหรียญเงิน 1 เหรียญทอง และน้อยกว่า 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_en": "What's the date of the circuit Winton Motor Raceway?",
    "question_th": "สนามแข่งรถ 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_en": "What's the city/state of Hidden Valley Raceway?",
    "question_th": "สนามแข่งรถ 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_en": "What's the date of Bahrain International Circuit?",
    "question_th": "สนามแข่งบาห์เรน อินเตอร์เนชันแนล เซอร์กิต จัดขึ้นวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_95 (date VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT circuit FROM table_name_11 WHERE winner = \"event cancelled\"",
    "question_en": "What's the circuit that had an event cancelled?",
    "question_th": "วงจรอะไรที่มีเหตุการณ์ถูกยกเลิก?",
    "context": "CREATE TABLE table_name_11 (circuit VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT distance FROM table_name_57 WHERE feature = \"ridge\"",
    "question_en": "what is the distance for ridge?",
    "question_th": "สันเขาอยู่ไกลแค่ไหน?",
    "context": "CREATE TABLE table_name_57 (distance VARCHAR, feature VARCHAR)"
  },
  {
    "answer": "SELECT latitude FROM table_name_70 WHERE distance = \"42.5km\"",
    "question_en": "what is the latitude when the distance is 42.5km?",
    "question_th": "ละติจูดเท่าไหร่เมื่อระยะทางคือ 42.5 กม.?",
    "context": "CREATE TABLE table_name_70 (latitude VARCHAR, distance VARCHAR)"
  },
  {
    "answer": "SELECT feature FROM table_name_60 WHERE name = \"bird ridge\"",
    "question_en": "what is the feature named bird ridge?",
    "question_th": "คุณลักษณะที่เรียกว่าเบิร์ดริดจ์คืออะไร?",
    "context": "CREATE TABLE table_name_60 (feature VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT distance FROM table_name_89 WHERE name = \"mjåkollen\"",
    "question_en": "what is the distance for mjåkollen?",
    "question_th": "mjåkollen ระยะทางเท่าไหร่?",
    "context": "CREATE TABLE table_name_89 (distance VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT distance FROM table_name_27 WHERE bearing = \"297°\"",
    "question_en": "what is the distance for bearing 297°?",
    "question_th": "ระยะห่างของแบริ่ง 297° คืออะไร?",
    "context": "CREATE TABLE table_name_27 (distance VARCHAR, bearing VARCHAR)"
  },
  {
    "answer": "SELECT platform_s_ FROM table_name_8 WHERE year = 2007",
    "question_en": "What platform has a year of 2007?",
    "question_th": "ปี 2550 มีแพลตฟอร์มใด",
    "context": "CREATE TABLE table_name_8 (platform_s_ VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_name_13 WHERE year = 2011",
    "question_en": "Which game was released in 2011?",
    "question_th": "เกมใดที่ออกในปี 2554?",
    "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_en": "What platform came out before 2009 with the game wii sports?",
    "question_th": "แพลตฟอร์มใดที่ออกมาก่อนปี 2009 ด้วยเกม 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_en": "What nationality has a lane less than 6, with 1 as the rank?",
    "question_th": "สัญชาติใดมีเลนน้อยกว่า 6 โดยมี 1 เป็นอันดับที่?",
    "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_en": "What time has a lane less than 5, with Poland as the nationality?",
    "question_th": "เวลาใดที่มีเลนน้อยกว่า 5 โดยมีโปแลนด์เป็นสัญชาติ?",
    "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_en": "How many lanes have 1:53.70 as the time?",
    "question_th": "มีกี่เลนที่มีเวลา 1:53.70?",
    "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_en": "How many ranks have chen yin as the name, with a lane greater than 8?",
    "question_th": "ชื่อเฉินหยินมีกี่อันดับและมีเลนมากกว่า 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_en": "What nationality has 1:55.35 as the time?",
    "question_th": "สัญชาติอะไรมีเวลา 1:55.35 น.?",
    "context": "CREATE TABLE table_name_96 (nationality VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT SUM(lane) FROM table_name_25 WHERE rank > 8",
    "question_en": "How many lanes have a rank greater than 8?",
    "question_th": "มีกี่เลนที่มีอันดับมากกว่า 8?",
    "context": "CREATE TABLE table_name_25 (lane INTEGER, rank INTEGER)"
  },
  {
    "answer": "SELECT home FROM table_name_14 WHERE country = \"sweden\"",
    "question_en": "Where in Sweden is the home of the Swedish team?",
    "question_th": "บ้านของทีมสวีเดนอยู่ที่ไหนในสวีเดน?",
    "context": "CREATE TABLE table_name_14 (home VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT third FROM table_name_23 WHERE second = \"xu xiaoming\"",
    "question_en": "Who is third to Xu Xiaoming at second?",
    "question_th": "ใครเป็นอันดับสามรองจาก Xu Xiaoming ในอันดับที่สอง?",
    "context": "CREATE TABLE table_name_23 (third VARCHAR, second VARCHAR)"
  },
  {
    "answer": "SELECT lead FROM table_name_84 WHERE home = \"saskatoon, saskatchewan\"",
    "question_en": "Who is the lead for the team from Saskatoon, Saskatchewan?",
    "question_th": "ใครเป็นหัวหน้าทีมจากซัสคาทูน ซัสแคตเชวัน?",
    "context": "CREATE TABLE table_name_84 (lead VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT second FROM table_name_38 WHERE lead = \"euan byers\"",
    "question_en": "Who is second on the team with Euan Byers at lead?",
    "question_th": "ใครเป็นอันดับสองในทีมโดยมี Euan Byers เป็นผู้นำ?",
    "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_en": "Who is the third on the team from Madison, Wisconsin that has Craig Brown as skip?",
    "question_th": "ใครคือคนที่สามในทีมจากเมดิสัน วิสคอนซินที่มีเครก บราวน์เป็นสกิป?",
    "context": "CREATE TABLE table_name_23 (third VARCHAR, home VARCHAR, skip VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_54 WHERE opponent = \"chicago bears\"",
    "question_en": "On which date was the opponent the Chicago Bears?",
    "question_th": "คู่ต่อสู้ของ 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_en": "Which week was on october 30, 1983?",
    "question_th": "สัปดาห์ใดคือวันที่ 30 ตุลาคม 2526",
    "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_en": "What is the Mascot for the team from leo that had a Previous Conference value of independent?",
    "question_th": "มาสคอตของทีมลีโอที่มีมูลค่าการประชุมอิสระครั้งก่อนคืออะไร?",
    "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_en": "What School had 3a/2a as the value for IHSAA Class/ Football Class?",
    "question_th": "โรงเรียนใดมีค่า 3a/2a เป็นค่าสำหรับคลาส IHSAA/ คลาสฟุตบอล",
    "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_en": "How many July 1, 2013 projections have a Rank of 27?",
    "question_th": "การคาดการณ์ในวันที่ 1 กรกฎาคม 2013 มีอันดับ 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_en": "What is the format for the one which has a call sign of cite-fm-1?",
    "question_th": "รูปแบบที่มีสัญญาณเรียก 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_en": "What'd the total Dolphin points when there was an attendance of 52,860?",
    "question_th": "คะแนน Dolphin ทั้งหมดเมื่อมีผู้เข้าร่วม 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_en": "What's the most in attendance when the Dolphins points were less than 24 and, they played the New England Patriots?",
    "question_th": "อะไรคือผู้เข้าร่วมมากที่สุดเมื่อคะแนน Dolphins น้อยกว่า 24 และพวกเขาเล่นกับ 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_en": "Which district had SC reserved and 169 Constituents?",
    "question_th": "เขตใดมี คสช. สงวนไว้ และมีผู้มีสิทธิเลือกตั้ง 169 คน?",
    "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_en": "What was reserved in the district that has 169 constituents?",
    "question_th": "เขตที่มีผู้มีสิทธิเลือกตั้ง 169 คนจองไว้อะไรบ้าง?",
    "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_en": "What is 1995 Grand Slam Tournament if 1997 is LQ and 1989 is 1R?",
    "question_th": "การแข่งขันแกรนด์สแลมปี 1995 คืออะไร หากปี 1997 คือ LQ และปี 1989 คือ 1R",
    "context": "CREATE TABLE table_name_81 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1996 FROM table_name_4 WHERE 1994 = \"lq\" AND 1992 = \"3r\"",
    "question_en": "What is 1996 Grand Slam Tournament if 1994 is LQ and 1992 is 3R?",
    "question_th": "การแข่งขันแกรนด์สแลมปี 1996 คืออะไร หากปี 1994 คือ LQ และปี 1992 คือ 3R",
    "context": "CREATE TABLE table_name_4 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1994 FROM table_name_88 WHERE 1993 = \"grand slam tournaments\"",
    "question_en": "What is 1994 Grand Slam Tournament if 1993 is also grand slam tournaments?",
    "question_th": "การแข่งขันแกรนด์สแลมปี 1994 คืออะไร หากปี 1993 เป็นทัวร์นาเมนต์แกรนด์สแลมด้วย",
    "context": "CREATE TABLE table_name_88 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1995 FROM table_name_96 WHERE 1990 = \"lq\"",
    "question_en": "What is 1995 Grand Slam Tournament if 1990 is LQ?",
    "question_th": "การแข่งขัน Grand Slam ปี 1995 คืออะไร ถ้าปี 1990 เป็น LQ?",
    "context": "CREATE TABLE table_name_96 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1990 FROM table_name_33 WHERE 1996 = \"grand slam tournaments\"",
    "question_en": "What is 1995 Grand Slam Tournament if 1996 is also grand slam tournaments?",
    "question_th": "การแข่งขันแกรนด์สแลมปี 1995 คืออะไร หากปี 1996 เป็นทัวร์นาเมนต์แกรนด์สแลมด้วย",
    "context": "CREATE TABLE table_name_33 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1987 FROM table_name_71 WHERE 1989 = \"grand slam tournaments\"",
    "question_en": "What is 1987 Grand Slam Tournament if 1989 is also grand slam tournaments?",
    "question_th": "การแข่งขันแกรนด์สแลมปี 1987 คืออะไร หากปี 1989 เป็นทัวร์นาเมนต์แกรนด์สแลมด้วย",
    "context": "CREATE TABLE table_name_71 (Id VARCHAR)"
  },
  {
    "answer": "SELECT SUM(attendance) FROM table_name_61 WHERE opponent = \"new york jets\"",
    "question_en": "How many people attended the home game against the New York Jets?",
    "question_th": "มีกี่คนที่เข้าชมเกมเหย้ากับนิวยอร์ก เจ็ตส์?",
    "context": "CREATE TABLE table_name_61 (attendance INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(attendance) FROM table_name_28 WHERE date = \"september 14, 1968\"",
    "question_en": "How many people attended the September 14, 1968 game?",
    "question_th": "มีผู้เข้าร่วมเกมวันที่ 14 กันยายน พ.ศ. 2511 กี่คน",
    "context": "CREATE TABLE table_name_28 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT director FROM table_name_51 WHERE production_number = \"9368\"",
    "question_en": "Who is the director of the production number 9368?",
    "question_th": "ผู้อำนวยการสร้างหมายเลข 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_en": "What is the title with chuck jones as the director and the production number 9537?",
    "question_th": "ชื่อเรื่องว่า ชัค โจนส์ เป็นผู้กำกับและมีผลงานหมายเลข 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_en": "What is the release date of the mm series, which has the title tom thumb in trouble?",
    "question_th": "วันที่วางจำหน่ายของซีรีย์ mm ซึ่งมีปัญหาเรื่อง tom thumb?",
    "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_en": "What is the release date of the mm series which has the title confederate honey?",
    "question_th": "ซีรีส์ mm ซึ่งมีชื่อว่า 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_en": "What is the start of the Team of Andretti Green Racing with a finish higher than 3 in a year before 2007?",
    "question_th": "อะไรคือจุดเริ่มต้นของทีม Andretti Green Racing ด้วยการจบสกอร์สูงกว่า 3 ในหนึ่งปีก่อนปี 2550?",
    "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_en": "What is the lowest start in a year after 2008?",
    "question_th": "จุดเริ่มต้นต่ำสุดในรอบหนึ่งปีหลังจากปี 2551 คืออะไร?",
    "context": "CREATE TABLE table_name_62 (start INTEGER, year INTEGER)"
  },
  {
    "answer": "SELECT finish FROM table_name_73 WHERE start < 25",
    "question_en": "What finish has a start smaller than 25?",
    "question_th": "จบแบบไหนที่สตาร์ทได้น้อยกว่า 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_en": "Where did the team of Rahal Letterman in 2006 start?",
    "question_th": "ทีมของ Rahal Letterman ในปี 2549 เริ่มต้นที่ไหน?",
    "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_en": "What year did Team of Andretti Green Racing have a finish smaller than 8 with a Dallara chassis?",
    "question_th": "ทีม Andretti Green Racing เข้าเส้นชัยน้อยกว่า 8 ด้วยแชสซี Dallara ในปีใด",
    "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_en": "What director has 2004-03-31 as the release date, with daffy (as duck dodgers) as the character?",
    "question_th": "ผู้กำกับคนไหนกำหนดให้วันที่ 31-03-2547 เป็นวันที่เข้าฉาย โดยมีแดฟฟี่ (รับบทเป็น Duck Dodgers) เป็นตัวละคร",
    "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_en": "What title has daffy (as duck dodgers) as the character?",
    "question_th": "ชื่อเรื่องอะไรที่มีตัวละครแดฟฟี่ (ในฐานะ Duck Dodgers) เป็นตัวละคร?",
    "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_en": "What series has dan povenmire as the director, with museum scream as the title?",
    "question_th": "ซีรีส์เรื่องใดที่มี แดน โพเวนไมร์ เป็นผู้กำกับ โดยมีชื่อเรื่องเป็น Museum Scream?",
    "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_en": "What was the highest number of 2009 electorates for Raisen when the consituency number was 142?",
    "question_th": "จำนวนผู้มีสิทธิเลือกตั้งสูงสุดในปี 2552 สำหรับ Raisen เมื่อจำนวนผู้มีสิทธิเลือกตั้งคือ 142 คือเท่าใด",
    "context": "CREATE TABLE table_name_86 (number_of_electorates__2009_ INTEGER, district VARCHAR, constituency_number VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(population_density__per_km²_) FROM table_name_98 WHERE name = \"total northern villages\" AND population__2006_ > 11414",
    "question_en": "How much Population density (per km²) has a Name of total northern villages, and a Population (2006) larger than 11414?",
    "question_th": "ความหนาแน่นของประชากร (ต่อตารางกิโลเมตร) มีชื่อหมู่บ้านทางตอนเหนือทั้งหมดเท่าใด และจำนวนประชากร (2549) มากกว่า 11414",
    "context": "CREATE TABLE table_name_98 (population_density__per_km²_ VARCHAR, name VARCHAR, population__2006_ VARCHAR)"
  },
  {
    "answer": "SELECT MAX(population_density__per_km²_) FROM table_name_90 WHERE change___percentage_ > 4.9 AND land_area__km²_ < 15.59 AND population__2011_ > 790",
    "question_en": "Which Population density (per km²) has a Change (%) larger than 4.9, and a Land area (km²) smaller than 15.59, and a Population (2011) larger than 790?",
    "question_th": "ความหนาแน่นของประชากร (ต่อ กม.²) ใดที่มีการเปลี่ยนแปลง (%) มากกว่า 4.9 และพื้นที่ดิน (กม. ²) น้อยกว่า 15.59 และประชากร (2554) มากกว่า 790",
    "context": "CREATE TABLE table_name_90 (population_density__per_km²_ INTEGER, population__2011_ VARCHAR, change___percentage_ VARCHAR, land_area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT SUM(population__2011_) FROM table_name_28 WHERE land_area__km²_ > 15.69 AND population_density__per_km²_ > 57.3",
    "question_en": "How much Population (2011) has a Land area (km²) larger than 15.69, and a Population density (per km²) larger than 57.3?",
    "question_th": "จำนวนประชากร (2554) มีพื้นที่ดิน (กม. ²) มากกว่า 15.69 และความหนาแน่นของประชากร (ต่อกม. ²) มากกว่า 57.3",
    "context": "CREATE TABLE table_name_28 (population__2011_ INTEGER, land_area__km²_ VARCHAR, population_density__per_km²_ VARCHAR)"
  },
  {
    "answer": "SELECT MAX(land_area__km²_) FROM table_name_12 WHERE population_density__per_km²_ > 112.6 AND population__2006_ > 785 AND name = \"pinehouse\"",
    "question_en": "Which Land area (km²) has a Population density (per km²) larger than 112.6, and a Population (2006) larger than 785, and a Name of pinehouse?",
    "question_th": "พื้นที่ใด (กม. ²) มีความหนาแน่นของประชากร (ต่อกม. ²) มากกว่า 112.6 และประชากร (2549) มากกว่า 785 และชื่อของบ้านสน",
    "context": "CREATE TABLE table_name_12 (land_area__km²_ INTEGER, name VARCHAR, population_density__per_km²_ VARCHAR, population__2006_ VARCHAR)"
  },
  {
    "answer": "SELECT MAX(withdrawn) FROM table_name_18 WHERE number = \"32 (2nd)\" AND converted < 1966",
    "question_en": "With a converted less than 1966 and a number of 32 (2nd), what is the largest number listed for withdrawn?",
    "question_th": "ด้วยการแปลงน้อยกว่าปี 1966 และจำนวน 32 (อันดับ 2) หมายเลขใดมากที่สุดในรายการที่จะถอนออก?",
    "context": "CREATE TABLE table_name_18 (withdrawn INTEGER, number VARCHAR, converted VARCHAR)"
  },
  {
    "answer": "SELECT average FROM table_name_47 WHERE matches = \"11\"",
    "question_en": "What is the average when the matches are 11?",
    "question_th": "ค่าเฉลี่ยเมื่อการแข่งขันคือ 11 คืออะไร?",
    "context": "CREATE TABLE table_name_47 (average VARCHAR, matches VARCHAR)"
  },
  {
    "answer": "SELECT overs FROM table_name_88 WHERE matches = \"10\"",
    "question_en": "What is the overs when the matches are 10?",
    "question_th": "โอเวอร์เมื่อแมตช์คือ 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_en": "Which Car # has a Driver of ryan newman, and a Position larger than 10?",
    "question_th": "รถคันใด # มีคนขับของ Ryan Newman และมีตำแหน่งมากกว่า 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_en": "Which Car # has a Team of hendrick motorsports, and a Driver of mark martin, and a Position larger than 4?",
    "question_th": "รถคันไหน # มีทีมเฮนดริกมอเตอร์สปอร์ต และนักขับของมาร์ค มาร์ติน และมีตำแหน่งมากกว่า 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_en": "Which time has a local/networked value of Local, ad frequency of every 20 minutes, and news frequency of n/a after 7PM news?",
    "question_th": "เวลาใดมีค่าท้องถิ่น/เครือข่ายเป็นท้องถิ่น ความถี่โฆษณาทุกๆ 20 นาที และความถี่ข่าวสารเป็นไม่มีหลัง 19.00 น. ข่าว",
    "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_en": "Which time has a news frequency of 1 hour and show name of Best Mix Overnight?",
    "question_th": "ซึ่งรายการไหนมีความถี่ข่าว 1 ชั่วโมง และรายการ 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_en": "What is the ad frequency for the show named Health Matters?",
    "question_th": "ความถี่ของโฆษณาสำหรับรายการที่ชื่อว่า 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_en": "What is the news frequency for the show Locker Room?",
    "question_th": "รายการ 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_en": "What is the local/networked value for the show with an ad frequency of N/A?",
    "question_th": "ค่าท้องถิ่น/เครือข่ายสำหรับการแสดงที่มีความถี่โฆษณา 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_en": "When france had a rank larger than 2, what was their time?",
    "question_th": "เมื่อฝรั่งเศสมีอันดับมากกว่า 2 เมื่อไหร่?",
    "context": "CREATE TABLE table_name_94 (time VARCHAR, rank VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_13 WHERE country = \"kazakhstan\"",
    "question_en": "What was the time for the country of kazakhstan?",
    "question_th": "ประเทศคาซัคสถานกี่โมง?",
    "context": "CREATE TABLE table_name_13 (time VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT athletes FROM table_name_82 WHERE country = \"germany\"",
    "question_en": "What athletes represented the country of germany?",
    "question_th": "นักกีฬาคนใดเป็นตัวแทนของประเทศเยอรมนี?",
    "context": "CREATE TABLE table_name_82 (athletes VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT AVG(rank) FROM table_name_38 WHERE time = \"1:42.054\"",
    "question_en": "What was the rank for the finish time of 1:42.054?",
    "question_th": "เวลาเข้าเส้นชัย 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_en": "Which country had a rank smaller than 7 and a time of 1:43.189?",
    "question_th": "ประเทศใดมีอันดับน้อยกว่า 7 และมีเวลา 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_en": "what is the club when the runners-up is 1 and the last final won is 1999?",
    "question_th": "สโมสรอะไรครับเมื่อรองชนะเลิศคือ 1 และรอบชิงชนะเลิศล่าสุดคือปี 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_en": "what is the last final won when runners-up is 1 and club is rijeka?",
    "question_th": "อะไรคือชัยชนะครั้งสุดท้ายเมื่อรองชนะเลิศคือ 1 และสโมสรคือริเยก้า?",
    "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_en": "How many times is runners-up less than 0?",
    "question_th": "รองชนะเลิศน้อยกว่า 0 กี่ครั้ง?",
    "context": "CREATE TABLE table_name_11 (winners VARCHAR, runners_up INTEGER)"
  },
  {
    "answer": "SELECT COUNT(game) FROM table_name_29 WHERE result = \"4–0\" AND attendance > 12 OFFSET 256",
    "question_en": "How many games have a Result of 4–0, and an Attendance larger than 12,256?",
    "question_th": "มีกี่เกมที่มีผลการแข่งขัน 4–0 และมีผู้เข้าร่วมมากกว่า 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_en": "Which Result has a Venue of away, and a Game smaller than 43, and an Opponent of bournemouth?",
    "question_th": "ผลการแข่งขันใดมีสนามเยือน และเกมที่น้อยกว่า 43 และฝ่ายตรงข้ามของบอร์นมัธ?",
    "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_en": "Which Result has a Venue of home, and a Date of 3 october 1987?",
    "question_th": "ผลลัพธ์ใดมีสถานที่จัดงานที่บ้าน และวันที่ 3 ตุลาคม 1987",
    "context": "CREATE TABLE table_name_54 (result VARCHAR, venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_91 WHERE year = \"1993\"",
    "question_en": "What is the score of 1993?",
    "question_th": "คะแนนของปี 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_en": "What is the Name when the runner-up was Sania Mirza Elena Vesnina?",
    "question_th": "ชื่ออะไรเมื่อรองชนะเลิศคือ 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–3, 6–3\"",
    "question_en": "What is the name with a Score of 6–3, 6–3?",
    "question_th": "ชื่ออะไรที่มีคะแนน 6–3, 6–3?",
    "context": "CREATE TABLE table_name_97 (name VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_50 WHERE year = \"2009\"",
    "question_en": "What was the location in 2009?",
    "question_th": "เมื่อปี 2552 ตั้งอยู่ที่ใด?",
    "context": "CREATE TABLE table_name_50 (location VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT railway_number_s_ FROM table_name_28 WHERE class = \"d(rebuild)\"",
    "question_en": "What's the railway number of a D(rebuild) class?",
    "question_th": "หมายเลขรถไฟของคลาส D (สร้างใหม่) คืออะไร?",
    "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_en": "What the least quantity having a T2A class?",
    "question_th": "ระดับ T2A มีปริมาณน้อยที่สุดคือเท่าใด",
    "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_en": "Which lane did the swimmer who had a Reaction time of 0.185 and a time of 20.9 swim in?",
    "question_th": "นักว่ายน้ำที่มีเวลาตอบสนอง 0.185 และเวลา 20.9 ว่ายน้ำในเลนใด",
    "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_en": "What was the 200-metre time for the swimmer from Slovenia in lane 9?",
    "question_th": "นักว่ายน้ำจากสโลวีเนียในเลน 9 ระยะทาง 200 เมตรใช้เวลาเท่าไร",
    "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_en": "Who was the swimmer from Dominica who had a time of 21.2 and swam in lane 7?",
    "question_th": "ใครคือนักว่ายน้ำจากโดมินิกาที่ทำเวลาได้ 21.2 และว่ายน้ำในเลน 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_en": "What player had a pick higher than 53, and a position of defensive tackle?",
    "question_th": "นักเตะคนไหนที่มีโอกาสเลือกสูงกว่า 53 และตำแหน่งในแนวรับ?",
    "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_en": "What team is Jim Garcia category:Articles with Hcards on?",
    "question_th": "Jim Garcia จัดอยู่ในทีมใด: บทความที่มี Hcards อยู่",
    "context": "CREATE TABLE table_name_95 (team VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT pick FROM table_name_90 WHERE college = \"purdue\"",
    "question_en": "Who is the pick from the Purdue College?",
    "question_th": "ใครคือตัวเลือกจากวิทยาลัย Purdue?",
    "context": "CREATE TABLE table_name_90 (pick VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT marcin_dołęga___pol__ FROM table_name_76 WHERE world_record = \"olympic record\" AND snatch = \"total\"",
    "question_en": "What shows for Marcin Dołęga ( POL )when the world record shows olympic record, and a Snatch of total?",
    "question_th": "อะไรแสดงให้เห็นสำหรับ Marcin Dołęga (POL) เมื่อสถิติโลกแสดงสถิติโอลิมปิก และ Snatch of Total?",
    "context": "CREATE TABLE table_name_76 (marcin_dołęga___pol__ VARCHAR, world_record VARCHAR, snatch VARCHAR)"
  },
  {
    "answer": "SELECT snatch FROM table_name_1 WHERE marcin_dołęga___pol__ = \"430kg\"",
    "question_en": "What is the snatch when Marcin Dołęga ( POL ) was 430kg?",
    "question_th": "อะไรคือการแย่งชิงเมื่อ Marcin Dołęga (POL) หนัก 430 กก.?",
    "context": "CREATE TABLE table_name_1 (snatch VARCHAR, marcin_dołęga___pol__ VARCHAR)"
  },
  {
    "answer": "SELECT władysławowo_, _poland FROM table_name_85 WHERE world_record = \"clean & jerk\"",
    "question_en": "What shows for Władysławowo, Poland when the world record was clean & jerk?",
    "question_th": "อะไรแสดงให้เห็นสำหรับ Władysławowo ประเทศโปแลนด์ เมื่อสถิติโลก Clean & Jerk?",
    "context": "CREATE TABLE table_name_85 (władysławowo_ VARCHAR, _poland VARCHAR, world_record VARCHAR)"
  },
  {
    "answer": "SELECT władysławowo_, _poland FROM table_name_83 WHERE world_record = \"olympic record\" AND marcin_dołęga___pol__ = \"olympic standard\" AND snatch = \"clean & jerk\"",
    "question_en": "What shows for Władysławowo, Poland when the world record shows olympic record, a Marcin Dołęga (POL) is olympic standard, and Snatch is clean & jerk?",
    "question_th": "อะไรแสดงให้เห็นสำหรับ Władysławowo ประเทศโปแลนด์ เมื่อสถิติโลกแสดงสถิติโอลิมปิก Marcin Dołęga (POL) คือมาตรฐานโอลิมปิก และ Snatch นั้นสะอาดและกระตุก",
    "context": "CREATE TABLE table_name_83 (władysławowo_ VARCHAR, _poland VARCHAR, snatch VARCHAR, world_record VARCHAR, marcin_dołęga___pol__ VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_88 WHERE catalog = \"0-6700-30838-2-9\"",
    "question_en": "What date has 0-6700-30838-2-9 for a catalog?",
    "question_th": "แค็ตตาล็อกมีวันที่เท่าไหร่คะ 0-6700-30838-2-9?",
    "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_en": "What's the date in the United Kingdom having a catalog of reveal50cd/lp?",
    "question_th": "วันที่ในสหราชอาณาจักรมีแค็ตตาล็อกเปิดเผย50cd/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_en": "What day was king's cup 1996?",
    "question_th": "คิงส์คัพ 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_en": "What was the score for king's cup 1996?",
    "question_th": "คิงส์คัพ 1996 ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_50 (score VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_61 WHERE score = \"5-1\"",
    "question_en": "What was the result when the score was 5-1?",
    "question_th": "ผลสกอร์เป็น 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_en": "What tournament had an A in 2012 and Q2 in 2010?",
    "question_th": "ทัวร์นาเมนต์ใดมี A ในปี 2012 และ Q2 ในปี 2010",
    "context": "CREATE TABLE table_name_4 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2010 FROM table_name_10 WHERE 2009 = \"q2\"",
    "question_en": "What's the 2010 when they had a Q2 in 2009?",
    "question_th": "ไตรมาสที่ 2 ปี 2552 คือปี 2010 อะไร?",
    "context": "CREATE TABLE table_name_10 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2012 FROM table_name_83 WHERE 2008 = \"q3\" AND tournament = \"wimbledon\"",
    "question_en": "What's the 2012 during Wimbledon and had a Q3 in 2008?",
    "question_th": "ปี 2012 ระหว่างวิมเบิลดันคืออะไรและมีไตรมาสที่ 3 ในปี 2551?",
    "context": "CREATE TABLE table_name_83 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_74 WHERE 2012 = \"a\" AND 2011 = \"a\"",
    "question_en": "What's the tournament name when they had an A in 2011 & 2012?",
    "question_th": "การแข่งขันชื่ออะไรเมื่อพวกเขาได้ A ในปี 2011 และ 2012?",
    "context": "CREATE TABLE table_name_74 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2012 FROM table_name_22 WHERE 2009 = \"205\"",
    "question_en": "What's the 2012 when 2009 was 205?",
    "question_th": "2012 เมื่อ 2009 เป็น 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_en": "How much Col (m) has a Prominence (m) of 2,344?",
    "question_th": "Col (m) มีความโดดเด่น (m) เท่ากับ 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_en": "Which Prominence (m) has a Col (m) of 350?",
    "question_th": "ความโดดเด่น (m) ใดมี Col (m) เท่ากับ 350?",
    "context": "CREATE TABLE table_name_21 (prominence__m_ INTEGER, col__m_ VARCHAR)"
  },
  {
    "answer": "SELECT athlete FROM table_name_87 WHERE country = \"lithuania\"",
    "question_en": "Who was the athlete from Lithuania?",
    "question_th": "นักกีฬาจากลิทัวเนียคือใคร?",
    "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_en": "How many votes did Jeannemarie Devolites Davis get in 1995-Special?",
    "question_th": "Jeannemarie Devolites Davis ได้รับคะแนนเสียงเท่าใดในปี 1995-รุ่นพิเศษ",
    "context": "CREATE TABLE table_name_90 (votes VARCHAR, opponent VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT subject FROM table_name_35 WHERE year = \"2007\"",
    "question_en": "Who was the subject for the year of 2007?",
    "question_th": "หัวข้อปี 2550 คือใคร?",
    "context": "CREATE TABLE table_name_35 (subject VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_name_51 WHERE votes > 4 OFFSET 478",
    "question_en": "Which party has a voting total greater than 4,478?",
    "question_th": "พรรคใดมีคะแนนเสียงรวมมากกว่า 4,478 เสียง?",
    "context": "CREATE TABLE table_name_51 (party VARCHAR, votes INTEGER)"
  },
  {
    "answer": "SELECT type FROM table_name_58 WHERE nat = \"geo\"",
    "question_en": "Which Type has a Nat of geo?",
    "question_th": "ประเภทใดมี Nat ทางภูมิศาสตร์?",
    "context": "CREATE TABLE table_name_58 (type VARCHAR, nat VARCHAR)"
  },
  {
    "answer": "SELECT moving_from FROM table_name_26 WHERE nat = \"ned\"",
    "question_en": "Which Moving from has a Nat of ned?",
    "question_th": "ซึ่ง Move from มีแนทของเน็ด?",
    "context": "CREATE TABLE table_name_26 (moving_from VARCHAR, nat VARCHAR)"
  },
  {
    "answer": "SELECT MAX(ends) FROM table_name_41 WHERE name = \"zambrano\"",
    "question_en": "Which Ends have a Name of zambrano?",
    "question_th": "ปลายใดมีชื่อของ 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_en": "Which Transfer fee has a Moving from of youth system, and a Nat of mar?",
    "question_th": "ค่าธรรมเนียมการโอนใดมีการย้ายจากระบบเยาวชนและแนทมาร์?",
    "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_en": "Which Transfer fee has Ends larger than 2011, and a Moving from of psv?",
    "question_th": "ค่าธรรมเนียมการโอนใดที่สิ้นสุดมากกว่าปี 2554 และการย้ายจาก 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_en": "What is the result for the Toscane Horse in the freestyle test?",
    "question_th": "ผลลัพธ์ของ Toscane Horse ในการทดสอบฟรีสไตล์คืออะไร?",
    "context": "CREATE TABLE table_name_60 (result VARCHAR, horse VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT horse FROM table_name_69 WHERE result = \"66.452\"",
    "question_en": "What horse has a 66.452 result?",
    "question_th": "ม้าตัวใดมีผล 66.452?",
    "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_en": "What event did Sjerstin Vermeulen receive a 66.452 result?",
    "question_th": "Sjerstin Vermeulen ทำได้ 66.452 เหตุการณ์ใด",
    "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_en": "What class had a Championship Test event with a 62.516 result?",
    "question_th": "คลาสใดมีกิจกรรม Championship Test ด้วยคะแนน 62.516",
    "context": "CREATE TABLE table_name_66 (class VARCHAR, event VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT horse FROM table_name_18 WHERE result = \"65.863\"",
    "question_en": "What horse has a 65.863 result?",
    "question_th": "ม้าตัวใดมีผล 65.863?",
    "context": "CREATE TABLE table_name_18 (horse VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT displacement FROM table_name_88 WHERE model = \"1400\"",
    "question_en": "What is the displacement for the model 1400?",
    "question_th": "การกระจัดของรุ่น 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_en": "What is the displacement when the fuel system is carburettor, and a power of ps (kw; hp), and also has a model of 2000?",
    "question_th": "การกระจัดคืออะไรเมื่อระบบเชื้อเพลิงเป็นคาร์บูเรเตอร์และมีกำลัง ps (kw; hp) และยังมีรุ่นปี 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_en": "What engine with the years of 1975-84 has a model of 1600?",
    "question_th": "เครื่องยนต์อะไรในปี 1975-84 มีรุ่น 1600?",
    "context": "CREATE TABLE table_name_29 (engine VARCHAR, model VARCHAR, years VARCHAR)"
  },
  {
    "answer": "SELECT displacement FROM table_name_78 WHERE model = \"2000\"",
    "question_en": "What displacement has a model of 2000?",
    "question_th": "การกระจัดใดมีแบบจำลองปี 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_en": "What engine with years of 1975-84 has a displacement of 1585cc?",
    "question_th": "เครื่องยนต์อะไรในปี 1975-84 ที่มีปริมาตรกระบอกสูบ 1,585cc?",
    "context": "CREATE TABLE table_name_9 (engine VARCHAR, years VARCHAR, displacement VARCHAR)"
  },
  {
    "answer": "SELECT power FROM table_name_40 WHERE years = \"1975-84\"",
    "question_en": "What is the power for the years 1975-84?",
    "question_th": "อำนาจในปี 2518-27 คืออะไร?",
    "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_en": "What is the 2nd leg in match with team 2 of Teram?",
    "question_th": "เลกที่ 2 แมตช์กับทีมที่ 2 ของเทรัมคืออะไร?",
    "context": "CREATE TABLE table_name_92 (team_2 VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_66 WHERE date = \"december 15, 2002\"",
    "question_en": "What was the result of the December 15, 2002 game?",
    "question_th": "ผลการแข่งขันวันที่ 15 ธันวาคม 2545 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_66 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_52 WHERE attendance = \"69,024\"",
    "question_en": "What date was the game that was attended by 69,024?",
    "question_th": "เกมที่มีผู้เข้าร่วม 69,024 คนคือวันไหน?",
    "context": "CREATE TABLE table_name_52 (date VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_37 WHERE week = 17",
    "question_en": "On what date was the week 17 game?",
    "question_th": "เกมสัปดาห์ที่ 17 คือวันไหน?",
    "context": "CREATE TABLE table_name_37 (date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT model FROM table_name_85 WHERE seats = 29 AND built = \"1941–1942\"",
    "question_en": "What is the Model of the Engine with 29 Seats Built in 1941–1942?",
    "question_th": "เครื่องยนต์ 29 ที่นั่งรุ่นใดที่ผลิตในปี พ.ศ. 2484-2485",
    "context": "CREATE TABLE table_name_85 (model VARCHAR, seats VARCHAR, built VARCHAR)"
  },
  {
    "answer": "SELECT quantity FROM table_name_65 WHERE model = \"pg-2901\"",
    "question_en": "What is the Quantity of the engine Model PG-2901?",
    "question_th": "เครื่องยนต์รุ่น 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_en": "Why did the manager who departed on August 1, 2008 leave?",
    "question_th": "เหตุใดผู้จัดการที่จากไปเมื่อวันที่ 1 สิงหาคม 2551 จึงลาออก?",
    "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_en": "On what date did the manager for PSIS Semarang take over for the manager that was sacked?",
    "question_th": "ผู้จัดการของ PSIS Semarang เข้ามารับตำแหน่งแทนผู้จัดการที่ถูกไล่ออกเมื่อใด",
    "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_en": "Why did the manager who departed on August 1, 2008 leave?",
    "question_th": "เหตุใดผู้จัดการที่จากไปเมื่อวันที่ 1 สิงหาคม 2551 จึงลาออก?",
    "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_en": "When did Peter Butler leave his team?",
    "question_th": "ปีเตอร์ บัตเลอร์ ออกจากทีมเมื่อไหร่?",
    "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_en": "When did the manager take over for the manager that left on August 20, 2008?",
    "question_th": "ผู้จัดการเข้ารับตำแหน่งแทนผู้จัดการที่ออกจากตำแหน่งเมื่อวันที่ 20 สิงหาคม พ.ศ. 2551 เมื่อใด",
    "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_en": "In which competition(s) did Iljuštšenko jump 1.90 m?",
    "question_th": "Iljuštšenko กระโดด 1.90 ม. ในการแข่งขันรายการใด?",
    "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_en": "In which position did Iljuštšenko finish in the European Championships held prior to 2008?",
    "question_th": "Iljuštšenkoจบในตำแหน่งใดในการแข่งขันชิงแชมป์ยุโรปที่จัดขึ้นก่อนปี 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_en": "In what year did Iljuštšenko compete in Barcelona, Spain?",
    "question_th": "Iljuštšenko ลงแข่งขันที่เมืองบาร์เซโลนา ประเทศสเปน ในปีใด",
    "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_en": "What's the number of electorates for constituency number 56?",
    "question_th": "เขตเลือกตั้งที่ 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_en": "What is the tour Apps when the career caps show 15?",
    "question_th": "แอพทัวร์คืออะไรเมื่อแคปอาชีพแสดง 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_en": "What is the number of career caps for a full back, when tour Apps is smaller than 29?",
    "question_th": "จำนวนแคปอาชีพของฟูลแบ็คเมื่อแอพทัวร์น้อยกว่า 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_en": "What is the career caps for half-back, when tests is more than 3?",
    "question_th": "ขีดจำกัดอาชีพของฮาล์ฟแบ็กคืออะไร เมื่อการทดสอบมากกว่า 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_en": "What name has tour Apps larger than 7, tests larger than 4, and a Career caps of 20?",
    "question_th": "ชื่ออะไรที่มีแอปทัวร์มากกว่า 7 รายการ การทดสอบมากกว่า 4 รายการ และ Career Caps อยู่ที่ 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_en": "What constructor has a grid less than 21, and time/retired of engine?",
    "question_th": "ตัวสร้างใดมีกริดน้อยกว่า 21 และเวลา/การเลิกใช้งานของเครื่องยนต์",
    "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_en": "When the entrant is fred saunders what is the driver?",
    "question_th": "เมื่อผู้เข้าแข่งขันคือ เฟรด ซอนเดอร์ส คนขับคือใคร?",
    "context": "CREATE TABLE table_name_11 (driver VARCHAR, entrant VARCHAR)"
  },
  {
    "answer": "SELECT MIN(grid) FROM table_name_47 WHERE entrant = \"fred saunders\"",
    "question_en": "What's the lowest grid with and entrant of fred saunders?",
    "question_th": "ตารางต่ำสุดที่มีและเข้ามาของเฟรด ซอนเดอร์สคือเท่าไร?",
    "context": "CREATE TABLE table_name_47 (grid INTEGER, entrant VARCHAR)"
  },
  {
    "answer": "SELECT time_retired FROM table_name_55 WHERE driver = \"emerson fittipaldi\"",
    "question_en": "What is the time/retired for the driver emerson fittipaldi?",
    "question_th": "เวลา/เกษียณสำหรับคนขับคือเท่าไร 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_en": "Which Artist has the Label of Columbia and the Standard number of COCC-72073?",
    "question_th": "ศิลปินคนไหนมีตราสัญลักษณ์ Columbia และหมายเลขมาตรฐาน 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_en": "What Type has the Artist of Hiroyuki Takami?",
    "question_th": "ศิลปินของฮิโรยูกิ ทาคามิมีประเภทไหน?",
    "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_en": "What Title has the Label of Columbia and Standard number of CODC-8760?",
    "question_th": "ชื่ออะไรมีฉลากของโคลัมเบียและหมายเลขมาตรฐานของ 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_en": "What is the type of Kuang-Hsing?",
    "question_th": "กวงซิงมีประเภทใดบ้าง?",
    "context": "CREATE TABLE table_name_71 (type VARCHAR, name__wade_giles_ VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_25 WHERE characters = \"廣丙\"",
    "question_en": "What type has the characters 廣丙?",
    "question_th": "廣丙มีอักขระประเภทใด?",
    "context": "CREATE TABLE table_name_25 (type VARCHAR, characters VARCHAR)"
  },
  {
    "answer": "SELECT name__wade_giles_ FROM table_name_87 WHERE characters = \"廣亨\"",
    "question_en": "What's the name that has the characters 廣亨?",
    "question_th": "ชื่ออะไรที่มีตัวอักษร 廣亨?",
    "context": "CREATE TABLE table_name_87 (name__wade_giles_ VARCHAR, characters VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_48 WHERE characters = \"廣利\"",
    "question_en": "What type has the characters 廣利?",
    "question_th": "廣利 มีอักขระประเภทใด?",
    "context": "CREATE TABLE table_name_48 (type VARCHAR, characters VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_50 WHERE name__pinyin_ = \"guangjia\"",
    "question_en": "What is the type of Guangjia?",
    "question_th": "กวงเจี่ยประเภทใด?",
    "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_en": "What soap opera has a rank larger than 1, and a Character named Emily Bishop?",
    "question_th": "ละครเรื่องใดที่มีอันดับมากกว่า 1 และมีตัวละครชื่อ 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—\"",
    "question_en": "What is the highest Rank 1960—?",
    "question_th": "อันดับสูงสุดในปี 1960 คืออะไร?",
    "context": "CREATE TABLE table_name_81 (rank INTEGER, years VARCHAR)"
  },
  {
    "answer": "SELECT actor FROM table_name_84 WHERE duration = \"61 years\"",
    "question_en": "What is the name of the actor with a duration of 61 years?",
    "question_th": "นักแสดงที่มีอายุ 61 ปีชื่ออะไร?",
    "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_en": "What are the years for Eileen Derbyshire with a duration of 52 years?",
    "question_th": "Eileen Derbyshire มีระยะเวลา 52 ปีกี่ปี?",
    "context": "CREATE TABLE table_name_4 (years VARCHAR, duration VARCHAR, actor VARCHAR)"
  },
  {
    "answer": "SELECT soap_opera FROM table_name_33 WHERE years = \"1960–1965, 1965–1983, 1984–2010\"",
    "question_en": "What soap opera was on 1960–1965, 1965–1983, 1984–2010?",
    "question_th": "ละครเรื่องใดเกิดขึ้นในปี พ.ศ. 2503–2508, 2508–2526, 2527–2553?",
    "context": "CREATE TABLE table_name_33 (soap_opera VARCHAR, years VARCHAR)"
  },
  {
    "answer": "SELECT rowers FROM table_name_54 WHERE country = \"australia\"",
    "question_en": "Who are the rowers for Australia?",
    "question_th": "ใครคือนักพายเรือของออสเตรเลีย?",
    "context": "CREATE TABLE table_name_54 (rowers VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT SUM(rank) FROM table_name_36 WHERE country = \"italy\"",
    "question_en": "What's Italy's rank?",
    "question_th": "อิตาลีอยู่อันดับไหน?",
    "context": "CREATE TABLE table_name_36 (rank INTEGER, country VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_89 WHERE home = \"linköpings hc\" AND round > 20 AND date = \"saturday, november 22\"",
    "question_en": "Who is the visitor team on Saturday, November 22 when linköpings hc was the home team and there were more than 20 rounds?",
    "question_th": "ทีมเยือนวันเสาร์ที่ 22 พ.ย. คือใคร เมื่อ ลิงเชอปิงส์ เอชซี เป็นเจ้าบ้าน และผ่านเข้ารอบ 20 กว่ารอบ?",
    "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öpings hc\" AND date = \"monday, november 10\" AND round > 18",
    "question_en": "What is the lowest attendance on Monday, November 10 when linköpings hc was the home team and there were more than 18 rounds?",
    "question_th": "วันจันทร์ที่ 10 พฤศจิกายน มีผู้เข้าชมน้อยที่สุดคือเมื่อ ลิโคปิงส์ เอชซี เป็นเจ้าบ้านและมีเกิน 18 รอบ?",
    "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_en": "Who is the visitor at the axa sports center in round 20?",
    "question_th": "แขกรับเชิญที่ศูนย์กีฬาแอกซ่า รอบ 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_en": "What is the Attendance of the game on November 6, 1966?",
    "question_th": "ผู้เข้าร่วมการแข่งขันในวันที่ 6 พฤศจิกายน 2509 คืออะไร?",
    "context": "CREATE TABLE table_name_7 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_78 WHERE date = \"november 6, 1966\"",
    "question_en": "What is the Result of the game on November 6, 1966?",
    "question_th": "ผลการแข่งขันวันที่ 6 พฤศจิกายน 2509 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_78 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_name_91 WHERE time = \"4:03.63\"",
    "question_en": "Who is the club with a 4:03.63 time?",
    "question_th": "สโมสรไหนด้วยเวลา 4:03.63?",
    "context": "CREATE TABLE table_name_91 (club VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT green_communist FROM table_name_59 WHERE socialist = \"41.0%\"",
    "question_en": "What was the Green-Communist percentage in the poll in which the Socialist Party earned 41.0%?",
    "question_th": "เปอร์เซ็นต์กรีน-คอมมิวนิสต์ในการสำรวจความคิดเห็นที่พรรคสังคมนิยมได้รับ 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_en": "What is the Green-Communist percentage in the poll showing a 9.7% lead?",
    "question_th": "เปอร์เซ็นต์กรีน-คอมมิวนิสต์ในการสำรวจความคิดเห็นที่แสดงให้เห็นว่ามีผู้นำ 9.7% เป็นเท่าใด",
    "context": "CREATE TABLE table_name_1 (green_communist VARCHAR, lead VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_87 WHERE date = \"9 october 2012\"",
    "question_en": "what is the result on 9 october 2012?",
    "question_th": "ผลการค้นหาวันที่ 9 ตุลาคม 2555 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_87 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_32 WHERE venue = \"stade général seyni kountché, niamey\" AND competition = \"friendly\" AND date = \"9 october 2012\"",
    "question_en": "what is the score when the venue is stade général seyni kountché, niamey, the competition is friendly and the date is 9 october 2012?",
    "question_th": "คะแนนเป็นเท่าใดเมื่อสถานที่จัดงานคือ stade général seyni kountché, นีอาเม, การแข่งขันกระชับมิตร และวันที่ 9 ตุลาคม 2555?",
    "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énéral seyni kountché, niamey\" AND competition = \"friendly\" AND date = \"9 october 2012\"",
    "question_en": "what is the result when the venue is stade général seyni kountché, niamey, the competition is friendly and the date is 9 october 2012?",
    "question_th": "ผลจะเป็นอย่างไรเมื่อสนามที่ stade général seyni kountché, นีอาเม, การแข่งขันกระชับมิตร และวันที่ 9 ตุลาคม 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_en": "what is the competition on 10 august 2011?",
    "question_th": "การแข่งขันในวันที่ 10 สิงหาคม 2554 คืออะไร?",
    "context": "CREATE TABLE table_name_75 (competition VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_10 WHERE venue = \"stade général seyni kountché , niamey\"",
    "question_en": "what is the date when the venue is stade général seyni kountché , niamey?",
    "question_th": "สถานที่จัดงานคือ stade général seyni kountché , niamey วันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_10 (date VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_7 WHERE athlete = \"manfred kokot\"",
    "question_en": "What place has manfred kokot as the athlete?",
    "question_th": "แมนเฟรด โคกต เป็นนักกีฬาคนไหน?",
    "context": "CREATE TABLE table_name_7 (place VARCHAR, athlete VARCHAR)"
  },
  {
    "answer": "SELECT athlete FROM table_name_73 WHERE place = \"reno\"",
    "question_en": "What athlete has reno as the place?",
    "question_th": "นักกีฬาคนไหนมีรีโนเวทเป็นสถานที่?",
    "context": "CREATE TABLE table_name_73 (athlete VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT campus FROM table_name_12 WHERE year_opened = \"1970\"",
    "question_en": "What campus opened in 1970?",
    "question_th": "วิทยาเขตใดเปิดในปี 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_en": "What year was the school opened that has a size of 10 acres and students of na?",
    "question_th": "โรงเรียนขนาด 10 ไร่เปิดในปีใดและมีนักเรียนของนา?",
    "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_en": "What location was the campus that has a size of 245 acres?",
    "question_th": "วิทยาเขตที่มีขนาด 245 เอเคอร์ตั้งอยู่ที่ใด",
    "context": "CREATE TABLE table_name_86 (location VARCHAR, size VARCHAR)"
  },
  {
    "answer": "SELECT campus FROM table_name_79 WHERE year_opened = \"1977\"",
    "question_en": "What campus was opened in 1977?",
    "question_th": "วิทยาเขตใดเปิดในปี พ.ศ. 2520",
    "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_en": "What location was the campus opened in 2005 with students listed as na?",
    "question_th": "วิทยาเขตแห่งนี้เปิดทำการในปี พ.ศ. 2548 โดยมีนักศึกษาชื่อ 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_en": "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?",
    "question_th": "ประเภทไหนเมื่อยศน้อยกว่า 70 จังหวัดคือบริติชโคลัมเบีย และความจุ (mw) มากกว่า 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_en": "what is the least capacity (mw) when the rank is less than 46 and the province is newfoundland and labrador?",
    "question_th": "ความจุน้อยที่สุด (mw) คือเท่าไร เมื่ออันดับน้อยกว่า 46 และจังหวัดคือ 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_en": "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?",
    "question_th": "ชนิดพลังน้ำชื่อสถานีผลิตไฟฟ้าแกรนด์แรพส์มีพิกัดต่ำสุดเท่าใด และขนาดความจุ (mw) มากกว่า 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_en": "what is the province when the rank is higher than 24 and the name is laforge-2?",
    "question_th": "แล้วจังหวัดไหนอันดับสูงกว่า 24 และชื่อ ลาฟอร์จ-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_en": "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?",
    "question_th": "เมื่อชนิดเป็นพลังน้ำ,ความจุ(mw)น้อยกว่า478,อันดับมากกว่า85และจังหวัดควิเบกชื่ออะไร?",
    "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_en": "How many years have toyota team tom's as the team, with Laps greater than 64?",
    "question_th": "ทอมมีทีมโตโยต้าอยู่ทีมมากี่ปีแล้ว โดยรอบมากกว่า 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_en": "What round was on 11/11/1992?",
    "question_th": "วันที่ 11/11/2535 รอบไหนครับ?",
    "context": "CREATE TABLE table_name_91 (round VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT SUM(against) FROM table_name_82 WHERE date = \"08/12/1992\"",
    "question_en": "What is the total against on 08/12/1992?",
    "question_th": "ยอดรวมเทียบกับวันที่ 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_en": "What is the venue of 24/11/1992?",
    "question_th": "วันที่ 24/11/1992 จัดขึ้นที่ใด?",
    "context": "CREATE TABLE table_name_6 (venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_37 WHERE against < 1",
    "question_en": "What round has less than 1 against?",
    "question_th": "รอบใดมีน้อยกว่า 1 ต่อ?",
    "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_en": "How many gold medals for germany (GER) having a rank less than 15?",
    "question_th": "เยอรมนี (GER) ที่มีอันดับต่ำกว่า 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_en": "How many silver medals when the bronze is more than 2 and having a rank more than 5?",
    "question_th": "เมื่อทองแดงมากกว่า 2 และมีอันดับมากกว่า 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_en": "What's the average number of silver medals when bronze is less than 0?",
    "question_th": "เหรียญเงินเฉลี่ยน้อยกว่า 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_en": "What's the average number of silver medals for germany (GER) having more than 3 bronze?",
    "question_th": "ค่าเฉลี่ยของเหรียญเงินของเยอรมนี (GER) ที่มีมากกว่า 3 เหรียญทองแดงคือเท่าใด",
    "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_en": "What are the notes for 6:31.16?",
    "question_th": "บันทึกของ 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_en": "What rowers have a 6:29.56 time?",
    "question_th": "นักพายเรือคนไหนมีเวลา 6:29.56 นาที?",
    "context": "CREATE TABLE table_name_64 (rowers VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_43 WHERE notes = \"fb\" AND country = \"canada\"",
    "question_en": "What is the time with FB notes for Canada?",
    "question_th": "เวลาที่มีบันทึกย่อของ FB สำหรับแคนาดาคือเมื่อใด",
    "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_en": "What country has a time of 6:49.28?",
    "question_th": "ประเทศใดมีเวลา 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_en": "Which Tries for has Points against larger than 87, and Tries against smaller than 28, and Points diff of +63?",
    "question_th": "การพยายามครั้งใดมีแต้มต่อมากกว่า 87 และการพยายามต่อแต้มที่น้อยกว่า 28 และแต้มต่างจาก +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_en": "Which Points for has Points against smaller than 93, and Tries for larger than 25?",
    "question_th": "แต้มใดมีแต้มต่อแต้มที่น้อยกว่า 93 และพยายามให้แต้มมากกว่า 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_en": "Which Tries for has Points against smaller than 124, and Points for smaller than 241, and Tries against smaller than 11?",
    "question_th": "การพยายามครั้งใดมีแต้มน้อยกว่า 124 และแต้มน้อยกว่า 241 และพยายามเทียบกับแต้มที่น้อยกว่า 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şti\" AND tries_for < 19",
    "question_en": "How many Tries against have a Team of dinamo bucureşti, and Tries for smaller than 19?",
    "question_th": "ทีมดินาโม บูคูเรสติ มีความพยายามกี่ครั้ง และพยายามน้อยกว่า 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_en": "What week had attendance of 48,667?",
    "question_th": "สัปดาห์ใดมีผู้เข้าร่วม 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_en": "What Song has a Draw of less than 4 with a Percentage of 32.22%?",
    "question_th": "เพลงใดที่มีคะแนนน้อยกว่า 4 โดยมีเปอร์เซ็นต์ 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_en": "What Artist has a Place of 3 or less with a Percentage of 38.60%?",
    "question_th": "ศิลปินคนใดมีอันดับ 3 หรือน้อยกว่าโดยมีเปอร์เซ็นต์ 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_en": "What is the Place of Draw 1 by Artist Monika Kirovska?",
    "question_th": "สถานที่วาด 1 โดยศิลปิน 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_en": "What were the most byes of Terang-Mortlake when they had more than 11 wins and more than 1118 against?",
    "question_th": "Terang-Mortlake ลาก่อนมากที่สุดเมื่อพวกเขาชนะมากกว่า 11 ครั้งและแพ้มากกว่า 1118 ครั้ง?",
    "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_en": "How many wins did South Warrambool have?",
    "question_th": "South Warrambool ชนะได้กี่ครั้ง?",
    "context": "CREATE TABLE table_name_91 (wins INTEGER, hampden_fl VARCHAR)"
  },
  {
    "answer": "SELECT AVG(byes) FROM table_name_50 WHERE wins > 16",
    "question_en": "How many byes when there are more than 16 wins?",
    "question_th": "กี่บายเมื่อมีมากกว่า 16 ชนะ?",
    "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_en": "What is the least amount of Byes when there are more than 2 wins and 1946 against?",
    "question_th": "Byes จำนวนน้อยที่สุดคือเท่าใดเมื่อมีการชนะมากกว่า 2 ครั้งและ 1946 ต่อ?",
    "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_en": "How many wins when the draws are less than 1 and more than 4 losses?",
    "question_th": "ชนะกี่ครั้งเมื่อเสมอน้อยกว่า 1 และแพ้มากกว่า 4 ครั้ง?",
    "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_en": "What was the lowest population of the GEO ID 3805373380 and the water square mileage smaller than 5.729?",
    "question_th": "จำนวนประชากรต่ำสุดของ GEO ID 3805373380 และระยะทางตารางน้ำน้อยกว่า 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_en": "What is the lowest GEO ID for the longitude of -102.158045 and the water in square miles larger than 0.979?",
    "question_th": "GEO ID ต่ำสุดสำหรับลองจิจูดที่ -102.158045 และน้ำในตารางไมล์ที่ใหญ่กว่า 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_en": "What is the average ANSI code for the town of Sherman and the smaller of the water area in square miles than 0.005?",
    "question_th": "รหัส ANSI เฉลี่ยสำหรับเมืองเชอร์แมนและพื้นที่น้ำเล็กกว่าในตารางไมล์คือ 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_en": "What is the average longitude for the water area of 0.093 and has a GEO ID tag larger than 3808174460?",
    "question_th": "ลองจิจูดเฉลี่ยของพื้นที่น้ำที่ 0.093 คืออะไร และมีแท็ก GEO ID ที่มีขนาดใหญ่กว่า 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_en": "Which Country's Author is based on Sophocles and Euripides?",
    "question_th": "ผู้แต่งของประเทศใดมีพื้นฐานมาจาก Sophocles และ 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_en": "Which Author's Company is Ruth Kanner Theatre Group?",
    "question_th": "บริษัทผู้แต่งคนใดคือ 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_en": "Which Play is from Cyprus, from the Company Magdalena Zira Theatre?",
    "question_th": "ละครเรื่องใดมาจากไซปรัสจากโรงละคร Company Magdalena Zira",
    "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_en": "Which Country is the Play Electra and Orestes, The Trial from?",
    "question_th": "Play Electra และ Orestes, The Trial มาจากประเทศใด",
    "context": "CREATE TABLE table_name_82 (country VARCHAR, play VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(time) FROM table_name_66 WHERE lane = 4",
    "question_en": "How much total time was in lane 4?",
    "question_th": "เลน 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_en": "Which Rank has a Reaction time larger than 0.20400000000000001, and a Time larger than 45.56?",
    "question_th": "อันดับใดมีเวลาตอบสนองมากกว่า 0.20400000000000001 และมีเวลามากกว่า 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_en": "How many ranks have more than 7 lanes, and an Athlete of michael mathieu, and a Reaction time larger than 0.203?",
    "question_th": "มีกี่อันดับที่มีมากกว่า 7 เลน และมีนักกีฬาของไมเคิล มาติเยอ และเวลาตอบสนองมากกว่า 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_en": "Which Time has a Reaction smaller than 0.20400000000000001, and a Rank of 1?",
    "question_th": "เวลาใดมีปฏิกิริยาน้อยกว่า 0.20400000000000001 และอันดับ 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_en": "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?",
    "question_th": "อะไรคือค่าเฉลี่ยของ 25 อันดับแรก ที่มีเหตุการณ์ที่น้อยกว่า 12 และมี 5 อันดับแรกที่มากกว่า 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_en": "What's the listed average of Cuts made that has a Top-5 of 3, and a Top-10 that's smaller than 5?",
    "question_th": "อะไรคือค่าเฉลี่ยของรายการ Cuts ที่มี 5 อันดับแรกจาก 3 และ 10 อันดับแรกที่น้อยกว่า 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_en": "What's the sum of Top-25 that has an Events that is smaller than 10?",
    "question_th": "ผลรวมของ 25 อันดับแรกที่มีเหตุการณ์ที่น้อยกว่า 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_en": "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?",
    "question_th": "อะไรคือผลรวมของ 10 อันดับแรกที่มีกิจกรรมที่มากกว่า 16 และมี 5 อันดับแรกที่มากกว่า 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_en": "What is the lowest Cuts made that has a Tournament of PGA Championship, and has a Top-5 that is smaller than 2?",
    "question_th": "อะไรคือการตัดที่ต่ำที่สุดที่มีการแข่งขัน PGA Championship และมี 5 อันดับแรกที่เล็กกว่า 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_en": "When the nominee(s) is john wells what is the episode for a year before 2004?",
    "question_th": "เมื่อผู้ได้รับการเสนอชื่อคือ จอห์น เวลส์ เรื่องราวในหนึ่งปีก่อนปี 2547 จะเป็นอย่างไร?",
    "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_en": "What is the result when the nominee(s) of janine sherman?",
    "question_th": "จะเกิดอะไรขึ้นเมื่อผู้ได้รับการเสนอชื่อจาก 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_en": "What is the result for a year after 2003, when the nominee(s) is john wells?",
    "question_th": "ผลลัพธ์ในหนึ่งปีหลังจากปี 2003 เมื่อผู้ได้รับการเสนอชื่อคือ จอห์น เวลส์ คืออะไร?",
    "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_en": "What is the purse in 2003, which had a 1-1/16 distance?",
    "question_th": "กระเป๋าเงินในปี 2546 ซึ่งมีระยะ 1-1/16 คืออะไร?",
    "context": "CREATE TABLE table_name_94 (purse VARCHAR, distance VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT trainer FROM table_name_5 WHERE winner = \"skylighter\"",
    "question_en": "Who is the trainer of the winner skylighter?",
    "question_th": "ใครคือผู้ฝึกสอนของผู้ชนะสกายไลท์เตอร์?",
    "context": "CREATE TABLE table_name_5 (trainer VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT distance FROM table_name_85 WHERE time = \"1:46.32\"",
    "question_en": "What is the distance with a 1:46.32 time?",
    "question_th": "เวลา 1:46.32 ระยะทางเท่าไหร่?",
    "context": "CREATE TABLE table_name_85 (distance VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT AVG(year) FROM table_name_81 WHERE time = \"1:42.85\"",
    "question_en": "What is the average year with a 1:42.85 time?",
    "question_th": "ปีเฉลี่ยที่เวลา 1:42.85 คือเท่าไร?",
    "context": "CREATE TABLE table_name_81 (year INTEGER, time VARCHAR)"
  },
  {
    "answer": "SELECT distance FROM table_name_18 WHERE year = 2006",
    "question_en": "What is the distance in 2006?",
    "question_th": "ระยะทางในปี 2549 เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_18 (distance VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT director FROM table_name_12 WHERE title = \"clean pastures\"",
    "question_en": "Who was the director of Clean Pastures?",
    "question_th": "ใครเป็นผู้อำนวยการของ 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_en": "What was the release date for Production Number 8181?",
    "question_th": "วันที่วางจำหน่ายสำหรับหมายเลขการผลิต 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_en": "What series was directed by Frank Tashlin and has the production number, 8053?",
    "question_th": "ซีรีส์เรื่องใดที่กำกับโดย Frank Tashlin และมีหมายเลขการผลิต 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_en": "What series was called Egghead Rides Again?",
    "question_th": "ซีรีส์เรื่องใดชื่อ 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_en": "What is the Tie no of the Port Vale Away game?",
    "question_th": "ผลเสมอของเกมเยือนพอร์ทเวลคืออะไร?",
    "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_en": "What is the Score of the Halifax Town Home game?",
    "question_th": "คะแนนของเกมในบ้านของแฮลิแฟกซ์ทาวน์คืออะไร?",
    "context": "CREATE TABLE table_name_30 (score VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_72 WHERE home_team = \"scarborough\"",
    "question_en": "What is the Score of the Scarborough Home game?",
    "question_th": "สกอร์เกมเหย้าสการ์โบโรห์มีคะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_72 (score VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_8 WHERE team = \"boston patriots\"",
    "question_en": "Which college did the player who went to the Boston Patriots go to?",
    "question_th": "ผู้เล่นที่ไปทีม Boston Patriots เข้าเรียนที่วิทยาลัยใด",
    "context": "CREATE TABLE table_name_8 (college VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(pick) FROM table_name_20 WHERE college = \"lsu\"",
    "question_en": "What was the highest pick number of the player who went to LSU in college?",
    "question_th": "หมายเลขเลือกสูงสุดของผู้เล่นที่ไป LSU ในวิทยาลัยคือเท่าใด",
    "context": "CREATE TABLE table_name_20 (pick INTEGER, college VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_54 WHERE pick = 136",
    "question_en": "Which college did the player picked number 136 go to?",
    "question_th": "ผู้เล่นเลือกหมายเลข 136 ไปวิทยาลัยไหน",
    "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_en": "Which college did the player picked larger than 130 by the New York Jets go to?",
    "question_th": "ผู้เล่นเลือกวิทยาลัยใดที่ใหญ่กว่า 130 โดย New York Jets ไป?",
    "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_en": "What lane was Emily Seebohm in?",
    "question_th": "เอมิลี่ ซีโบห์มอยู่ในเลนไหน",
    "context": "CREATE TABLE table_name_2 (lane VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT quantity FROM table_name_50 WHERE railway_number_s_ = \"263\"",
    "question_en": "What is the quantity for railway 263?",
    "question_th": "รางรถไฟสาย 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) …63 (ii) , 188–193\"",
    "question_en": "What are the year(s) of manufacture for railway number(s) 26 (ii) …63 (ii) , 188–193?",
    "question_th": "ปีที่ผลิตสำหรับหมายเลขรถไฟ 26 (ii) …63 (ii) , 188–193 คือ?",
    "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–1906\"",
    "question_en": "What are the railway number(s) for year(s) of manufacture of 1905–1906?",
    "question_th": "หมายเลขรถไฟสำหรับปีที่ผลิตปี 1905–1906 คืออะไร",
    "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_en": "Who is the rb player from team oakland?",
    "question_th": "ใครคือผู้เล่น RB จากทีมโอ๊คแลนด์?",
    "context": "CREATE TABLE table_name_69 (player VARCHAR, position VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_93 WHERE college = \"ohio state\"",
    "question_en": "What is the team of the player from ohio state?",
    "question_th": "นักเตะจากรัฐโอไฮโอคือทีมอะไร?",
    "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_en": "What is the highest rank in Uzbekistan with a time larger than 11.44?",
    "question_th": "อันดับสูงสุดใน อุซเบกิสถาน ด้วยเวลามากกว่า 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_en": "What is the average heat ranked at 30?",
    "question_th": "ความร้อนเฉลี่ยอยู่ที่ 30 เท่าไหร่?",
    "context": "CREATE TABLE table_name_54 (heat INTEGER, rank VARCHAR)"
  },
  {
    "answer": "SELECT AVG(time) FROM table_name_29 WHERE rank = 61",
    "question_en": "What is the average time in a rank of 61?",
    "question_th": "เวลาเฉลี่ยในอันดับ 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_en": "How much Capacity has a Vehicle of 2003 holden commodore ute?",
    "question_th": "รถยนต์โฮลเดน คอมโมดอร์ ยูท ปี 2003 มีความจุเท่าใด",
    "context": "CREATE TABLE table_name_97 (capacity VARCHAR, vehicle VARCHAR)"
  },
  {
    "answer": "SELECT navigator FROM table_name_37 WHERE total_time = \"08:29\"",
    "question_en": "Which Navigator has a Total Time of 08:29?",
    "question_th": "Navigator ใดมีเวลารวม 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_en": "Which Capacity has a Class of cm22, and a Vehicle of 1999 subaru impreza wrx sti?",
    "question_th": "ความจุใดมีคลาส cm22 และยานพาหนะปี 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_en": "Which Driver has a Capacity smaller than 5700, and a Total Time of 08:29?",
    "question_th": "ไดรเวอร์ใดที่มีความจุน้อยกว่า 5700 และเวลารวม 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_en": "What is the total number of losses for teams with more than 0 byes?",
    "question_th": "จำนวนการสูญเสียทั้งหมดสำหรับทีมที่มีการบายมากกว่า 0 คือเท่าใด?",
    "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_en": "What is the sum of draws for teams with against of 1731 and under 10 losses?",
    "question_th": "ผลรวมของการเสมอกันของทีมที่แพ้ในปี 1731 และต่ำกว่า 10 ครั้งเป็นเท่าใด?",
    "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_en": "When was Tree Cornered Tweety, directed by Friz Freleng, released?",
    "question_th": "Tree Cornered Tweety กำกับโดย Friz Freleng ออกฉายเมื่อใด",
    "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_en": "When was Too Hop to Handle released?",
    "question_th": "Too Hop to Handle เปิดตัวเมื่อไหร่?",
    "context": "CREATE TABLE table_name_68 (release_date VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT series FROM table_name_85 WHERE title = \"barbary coast bunny\"",
    "question_en": "From which series is the title Barbary Coast Bunny?",
    "question_th": "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_en": "Who did the Lyrics (l) / Music (m) for the song in 23 Place?",
    "question_th": "ใครเป็นคนทำเนื้อเพลง (l) / ดนตรี (m) สำหรับเพลงใน 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_en": "What are the Votes for the Song by Artist Filipa Batista?",
    "question_th": "คะแนนโหวตสำหรับเพลงของศิลปิน Filipa Batista คืออะไร",
    "context": "CREATE TABLE table_name_11 (votes VARCHAR, artist VARCHAR)"
  },
  {
    "answer": "SELECT votes FROM table_name_6 WHERE place = \"9\"",
    "question_en": "What is the Votes for the Song in Place 9?",
    "question_th": "คะแนนโหวตสำหรับเพลงอันดับที่ 9 คืออะไร?",
    "context": "CREATE TABLE table_name_6 (votes VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT artist FROM table_name_28 WHERE place = \"withdrawn\"",
    "question_en": "What is the Artist of the Song with a Place of withdrawn?",
    "question_th": "ศิลปินเพลงที่มีสถานที่ถอนตัวคืออะไร?",
    "context": "CREATE TABLE table_name_28 (artist VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_91 WHERE result = \"l 38-21\"",
    "question_en": "Which week had a result of L 38-21?",
    "question_th": "สัปดาห์ไหนมีผล 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_en": "Who was the opponent after week 8 that had 72,190 people in attendance?",
    "question_th": "ใครคือคู่ต่อสู้หลังจากสัปดาห์ที่ 8 ที่มีผู้เข้าร่วม 72,190 คน?",
    "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_en": "Who won the Gold Medal in Moscow after the year 1982?",
    "question_th": "ใครได้รับรางวัลเหรียญทองในมอสโกหลังปี 2525",
    "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_en": "What is the lowest total that has a rank less than 8, a silver greater than 6, and 20 as the bronze?",
    "question_th": "ผลรวมต่ำสุดที่มีอันดับน้อยกว่า 8 เงินมากกว่า 6 และ 20 เป็นเหรียญทองแดงคืออะไร?",
    "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_en": "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?",
    "question_th": "เงินโดยเฉลี่ยที่มีทองคำมากกว่า 3 โดยมีสหภาพโซเวียตเป็นประเทศและมีทองสัมฤทธิ์มากกว่า 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_en": "What is the highest silver that has 57 as the total, with a bronze greater than 20?",
    "question_th": "เงินสูงสุดที่มียอดรวม 57 โดยมีเหรียญทองแดงมากกว่า 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_en": "What rank has a gold greater than 0, 0 as the bronze, with germany (ger) as the nation?",
    "question_th": "อันดับใดที่มีทองคำมากกว่า 0, 0 เป็นเหรียญทองแดง โดยมีเยอรมนี (ger) เป็นประเทศ?",
    "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_en": "How many bronzes have 1 as the total, with spain (esp) as the nation, and a gold greater than 0?",
    "question_th": "มีเหรียญทองแดงทั้งหมดกี่เหรียญที่มี 1 โดยที่สเปน (esp) เป็นชาติ และทองคำ 1 อันมีค่ามากกว่า 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_en": "Which Prominence (m) has a Peak of nakanai mountains high point, and an Elevation (m) smaller than 2,316?",
    "question_th": "จุดเด่น (ม.) ใดที่มียอดเขานาคาไนสูง และมีระดับความสูง (ม.) น้อยกว่า 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_en": "What position Jason Fitzgerald played?",
    "question_th": "เจสัน ฟิตซ์เจอรัลด์เล่นตำแหน่งอะไร?",
    "context": "CREATE TABLE table_name_89 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_9 WHERE player = \"jason romano\"",
    "question_en": "Jason Romano played for what team?",
    "question_th": "เจสัน โรมาโน่เล่นให้กับทีมอะไร?",
    "context": "CREATE TABLE table_name_9 (team VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT dimensions FROM table_name_96 WHERE output = \"180w\"",
    "question_en": "What are the dimensions of the amp with a 180W output?",
    "question_th": "แอมป์ที่มีเอาต์พุต 180W มีขนาดเท่าใด",
    "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_en": "Which player was from Fermanagh and had an average score of 22?",
    "question_th": "นักเตะคนไหนมาจากเฟอร์มานาห์และมีคะแนนเฉลี่ย 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_en": "How many total points did Oisin McConville have from his 5 matches?",
    "question_th": "Oisin McConville มีคะแนนรวมกี่คะแนนจาก 5 นัดของเขา?",
    "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_en": "How many attendances have October 30, 1977 as the date, with a week greater than 7?",
    "question_th": "วันที่ 30 ตุลาคม 1977 มีผู้เข้าร่วมกี่คน โดยหนึ่งสัปดาห์มากกว่า 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_en": "What is the lowest attendance that has l 42-35 as the result, with a week less than 13?",
    "question_th": "ผู้เข้าร่วมต่ำสุดที่มี l 42-35 โดยหนึ่งสัปดาห์น้อยกว่า 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_en": "Who is from south korea and has a heat less than 3?",
    "question_th": "ใครมาจากเกาหลีใต้และมีความร้อนน้อยกว่า 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_en": "What is the highest heat of the athlete from spain with a lane less than 7?",
    "question_th": "ความร้อนสูงสุดของนักกีฬาจากสเปนที่มีเลนน้อยกว่า 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_en": "What is the average lane of the athlete from japan with a time of 4:37.35 and a heat less than 3?",
    "question_th": "เลนเฉลี่ยของนักกีฬาจากญี่ปุ่นด้วยเวลา 4:37.35 และฮีตน้อยกว่า 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_en": "What is the lowest Gold count if the Bronze is 4 and Silver is greater than 5?",
    "question_th": "จำนวนทองคำต่ำสุดคือเท่าใดหากทองแดงคือ 4 และเงินมากกว่า 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_en": "What is the Average for Silver medals that have more than 17 Golds?",
    "question_th": "ค่าเฉลี่ยของเหรียญเงินที่มีมากกว่า 17 เหรียญทองคือเท่าไร?",
    "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_en": "What is the highest number of Silver medals with a Total greater than 14 and more than 15 Bronze medals?",
    "question_th": "จำนวนเหรียญเงินสูงสุดที่มีคะแนนรวมมากกว่า 14 และมากกว่า 15 เหรียญทองแดง คือเท่าใด",
    "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_en": "Who is the music-director for the song from the film khaleja who had a co-singer of hemachandra?",
    "question_th": "ใครเป็นผู้กำกับเพลงสำหรับเพลงจากภาพยนตร์เรื่อง Khaleja ซึ่งมีนักร้องร่วมของ Hemacandra?",
    "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_en": "What was the score for the matchup having attendance of 354?",
    "question_th": "คะแนนสำหรับการจับคู่ที่มีผู้เข้าร่วม 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_en": "What nation had a medal total of less than 10, less than 1 bronze medal, in rank 11?",
    "question_th": "ประเทศใดมีเหรียญรวมน้อยกว่า 10 เหรียญทองแดงน้อยกว่า 1 เหรียญในอันดับที่ 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_en": "How many gold medals did the team that won a total of 10 medals and 3 silver medals win?",
    "question_th": "ทีมที่คว้าเหรียญทองได้ทั้งหมด 10 เหรียญ และ 3 เหรียญเงิน ได้ทั้งหมดกี่เหรียญทอง?",
    "context": "CREATE TABLE table_name_44 (gold VARCHAR, silver VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(total) FROM table_name_41 WHERE bronze > 11",
    "question_en": "What is the total number of medals won by teams that won more than 11 bronze medals?",
    "question_th": "จำนวนเหรียญทั้งหมดที่ทีมได้รับมากกว่า 11 เหรียญทองแดงเป็นเท่าใด",
    "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_en": "What is the lowest react of the athlete from the United States who has a lane less than 4?",
    "question_th": "ปฏิกิริยาต่ำสุดของนักกีฬาจากสหรัฐอเมริกาที่มีเลนน้อยกว่า 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_en": "What is the lowest of the athlete from sri lanka who has a lane greater than 8?",
    "question_th": "นักกีฬาจากศรีลังกาที่มีเลนมากกว่า 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_en": "What is the average react of athlete muna lee, who is ranked greater than 3?",
    "question_th": "ค่าเฉลี่ยปฏิกิริยาของนักกีฬา มูนา ลี ที่ติดอันดับมากกว่า 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_en": "What is the average lane of the athlete from cuba who has a time greater than 22.57 and react less than 0.245?",
    "question_th": "เลนเฉลี่ยของนักกีฬาจากคิวบาที่มีเวลามากกว่า 22.57 และตอบสนองน้อยกว่า 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_en": "What is the average react of the athlete with a time less than 22.29 and a rank greater than 1?",
    "question_th": "ปฏิกิริยาเฉลี่ยของนักกีฬาที่มีเวลาน้อยกว่า 22.29 และอันดับมากกว่า 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_en": "Who is the Opponent on December 7, 2003?",
    "question_th": "ฝ่ายตรงข้ามในวันที่ 7 ธันวาคม พ.ศ. 2546 คือใคร?",
    "context": "CREATE TABLE table_name_22 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT tv_time FROM table_name_40 WHERE attendance = \"73,578\"",
    "question_en": "What is the Tv Time of the game with an Attendance of 73,578?",
    "question_th": "รายการทีวีของเกมที่มีผู้เข้าชม 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_en": "What is the highest result for Wallace Spearmon when the reaction time is greater than 0.167?",
    "question_th": "ผลลัพธ์สูงสุดของ Wallace Spearmon เมื่อเวลาตอบสนองมากกว่า 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_en": "What was the result for Lane 3?",
    "question_th": "ผลลัพธ์ของเลน 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_en": "What is the lowest result for Christian Malcolm with a reaction time greater than 0.185 and a lane higher than 3?",
    "question_th": "ผลลัพธ์ต่ำสุดสำหรับ Christian Malcolm ที่มีเวลาตอบสนองมากกว่า 0.185 และเลนสูงกว่า 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_en": "What are the lowest conceded with 1 draw, and a score larger than 14?",
    "question_th": "เสียน้อยที่สุดเมื่อเสมอ 1 ครั้ง และสกอร์มากกว่า 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_en": "What are the lowest losses with more than 13 scored, and more than 7 draws?",
    "question_th": "อะไรคือการแพ้ต่ำสุดที่มีมากกว่า 13 คะแนนและเสมอมากกว่า 7 ครั้ง?",
    "context": "CREATE TABLE table_name_38 (losses INTEGER, scored VARCHAR, draws VARCHAR)"
  },
  {
    "answer": "SELECT AVG(played) FROM table_name_37 WHERE points < 8",
    "question_en": "What is the average played for less than 8 points?",
    "question_th": "ค่าเฉลี่ยการเล่นต่ำกว่า 8 แต้มเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_37 (played INTEGER, points INTEGER)"
  },
  {
    "answer": "SELECT competition FROM table_name_73 WHERE result = \"1–2\"",
    "question_en": "What competition has a Result of 1–2?",
    "question_th": "การแข่งขันใดมีผลการแข่งขัน 1–2?",
    "context": "CREATE TABLE table_name_73 (competition VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT moving_from FROM table_name_33 WHERE country = \"hun\"",
    "question_en": "What is moving from fee in Hun country?",
    "question_th": "ค่าธรรมเนียมในประเทศฮั่นย้ายจากอะไร?",
    "context": "CREATE TABLE table_name_33 (moving_from VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_81 WHERE country = \"aut\"",
    "question_en": "What is thr type in Aut country?",
    "question_th": "thr type ในประเทศ Aut คืออะไร?",
    "context": "CREATE TABLE table_name_81 (type VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT owner FROM table_name_8 WHERE format = \"adult hits\"",
    "question_en": "Who is the owner of the radio station that plays adult hits?",
    "question_th": "เจ้าของสถานีวิทยุที่เปิดเพลงฮิตสำหรับผู้ใหญ่คือใคร?",
    "context": "CREATE TABLE table_name_8 (owner VARCHAR, format VARCHAR)"
  },
  {
    "answer": "SELECT call_sign FROM table_name_7 WHERE owner = \"astral media\"",
    "question_en": "What is the call sign for the radio owned by astral media?",
    "question_th": "สัญญาณเรียกขานของวิทยุที่เป็นของสื่อดวงดาวคืออะไร?",
    "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_en": "What is the frequency for the radio owned by bell media with a call sign of chsu-fm?",
    "question_th": "ความถี่ของวิทยุที่เป็นของ bell media ที่มีสัญญาณเรียกขาน 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_en": "What is the branding for the radio with a frequency of 1150 am?",
    "question_th": "ตราสินค้าสำหรับวิทยุความถี่ 1150 น. คืออะไร?",
    "context": "CREATE TABLE table_name_44 (branding VARCHAR, frequency VARCHAR)"
  },
  {
    "answer": "SELECT format FROM table_name_8 WHERE frequency = \"00 96.3 fm\"",
    "question_en": "What was the format for the radio with a frequency of 00 96.3 fm?",
    "question_th": "รูปแบบของวิทยุที่มีความถี่ 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_en": "Who is the owner of the radio frequency of 0 101.5 fm?",
    "question_th": "เจ้าของคลื่นความถี่ 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_en": "how many times is the name matt targett and the lane higher than 7?",
    "question_th": "ชื่อ Matt Targett และเลนสูงกว่า 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_en": "what is the highest time when the rank is less than 5 and the name is eamon sullivan?",
    "question_th": "เวลาสูงสุดคืออันดับไม่ถึง 5 และชื่อเอมอน ซัลลิแวน?",
    "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_en": "what is the average rank when the lane is more than 4 and the name is dominik meichtry?",
    "question_th": "อันดับเฉลี่ยคือเท่าไรเมื่อเลนมากกว่า 4 และชื่อ 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_en": "What is the 2012 Employees (Total) when the rank (2012) is 7?",
    "question_th": "พนักงานปี 2555 (ทั้งหมด) เป็นเท่าใดเมื่ออันดับ (ปี 2555) คือ 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_en": "What shows for 2010 Employees (Total) when the employer is University of Alberta?",
    "question_th": "สิ่งที่แสดงให้เห็นสำหรับพนักงานปี 2010 (ทั้งหมด) เมื่อนายจ้างคือมหาวิทยาลัยอัลเบอร์ตา?",
    "context": "CREATE TABLE table_name_1 (employer VARCHAR)"
  },
  {
    "answer": "SELECT MAX(year) FROM table_name_9 WHERE name = \"190 south lasalle street\"",
    "question_en": "What year was the 190 South Lasalle Street?",
    "question_th": "190 ถนนลาซาลใต้ เมื่อปีไหน?",
    "context": "CREATE TABLE table_name_9 (year INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_94 WHERE time = \"4:00.191\"",
    "question_en": "What rank has a Time of 4:00.191?",
    "question_th": "อันดับไหนมีเวลา 4:00.191?",
    "context": "CREATE TABLE table_name_94 (rank VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_5 WHERE country = \"brazil\"",
    "question_en": "What is the time for Brazil?",
    "question_th": "บราซิลกี่โมง?",
    "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_en": "what is the date when the format is cd (limited edition steel-box) from united kingdom?",
    "question_th": "เป็นซีดี(กล่องเหล็กรุ่นลิมิเต็ด)จากอังกฤษวันไหนครับ?",
    "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_en": "What is the country that has the format of cd, the label of sony music and the catalogue no sicp-2055?",
    "question_th": "ประเทศใดที่มีรูปแบบซีดี ค่ายเพลง sony และแค็ตตาล็อก 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_en": "what is the format for the country united kingdom on 20 october 2008?",
    "question_th": "รูปแบบของสหราชอาณาจักรในวันที่ 20 ตุลาคม 2551 เป็นอย่างไร?",
    "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_en": "what is the catalogue no when the format is cd (limited edition steel-box) and the country is germany?",
    "question_th": "แค็ตตาล็อกหมายเลขอะไรเมื่ออยู่ในรูปแบบ cd (กล่องเหล็กรุ่นลิมิเต็ด) และประเทศคือเยอรมนี?",
    "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_en": "Which Total has a Rank of 4, and a Silver larger than 2?",
    "question_th": "คะแนนรวมใดมีอันดับ 4 และเงินมากกว่า 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_en": "How much Total has a Rank of 5, and a Bronze larger than 3?",
    "question_th": "คะแนนรวมมีอันดับ 5 และเหรียญทองแดงมากกว่า 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_en": "Which Silver has a Nation of total, and a Bronze smaller than 18?",
    "question_th": "เงินใดมี Nation รวมกันและ Bronze น้อยกว่า 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_en": "How much Silver has a Nation of total, and a Total smaller than 54?",
    "question_th": "จำนวน Silver มีจำนวน Nation ทั้งหมด และจำนวนรวมน้อยกว่า 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_en": "What was the result for the award for best current affairs presenter?",
    "question_th": "ผลรางวัลผู้นำเสนอเหตุการณ์ปัจจุบันดีเด่นเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_68 (result VARCHAR, award VARCHAR)"
  },
  {
    "answer": "SELECT award FROM table_name_84 WHERE organisation = \"lianhe zaobao\"",
    "question_en": "Which award was given to Lianhe Zaobao?",
    "question_th": "รางวัลใดที่มอบให้กับ 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_en": "What's the release date of Feather Finger with an MM Series?",
    "question_th": "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–1\" AND date = \"29 august 1998\"",
    "question_en": "Which Opponent has a Venue of h, and a Result of 0–1, and a Date of 29 august 1998?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีสถานที่เป็น h และผลการแข่งขันเป็น 0–1 และวันที่ 29 สิงหาคม 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–1\" AND date = \"28 november 1998\"",
    "question_en": "Which Opponent has a Result of 1–1, and a Date of 28 november 1998?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีผลการแข่งขัน 1–1 และวันที่ 28 พฤศจิกายน พ.ศ. 2541",
    "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_en": "What was the venue on 14 november 1998?",
    "question_th": "วันที่ 14 พฤศจิกายน พ.ศ. 2541 จัดขึ้นที่ใด?",
    "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_en": "Which Place is the highest one that has a Draw larger than 1, and 49 Points?",
    "question_th": "ตำแหน่งใดคือตำแหน่งสูงสุดที่มีเสมอมากกว่า 1 และ 49 แต้ม?",
    "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_en": "Which Song has Points smaller than 54, and a Draw smaller than 4, and a Place smaller than 10?",
    "question_th": "เพลงใดมีคะแนนน้อยกว่า 54 และเสมอน้อยกว่า 4 และอันดับที่น้อยกว่า 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_en": "What is the bronze number when the total is 54/",
    "question_th": "เลขทองแดงเมื่อรวมเป็น 54/ จะเป็นเลขอะไร",
    "context": "CREATE TABLE table_name_30 (bronze INTEGER, total VARCHAR)"
  },
  {
    "answer": "SELECT MIN(bronze) FROM table_name_34 WHERE silver < 0",
    "question_en": "What is the least bronze number when the silver is less than 0?",
    "question_th": "เลขทองแดงน้อยที่สุดเมื่อเงินน้อยกว่า 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_en": "What is the least silver when the total is more than 2, bronze is 3, gold is more than 0, and rank is 1?",
    "question_th": "เงินน้อยที่สุดคืออะไรเมื่อผลรวมมากกว่า 2, ทองแดงคือ 3, ทองมากกว่า 0 และอันดับคือ 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_en": "What is the number of silver when the total is more than 2, and bronze is less than 3, with  a rank of 7?",
    "question_th": "จำนวนเงินเมื่อรวมมากกว่า 2 และทองแดงน้อยกว่า 3 ด้วยอันดับ 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_en": "Which Time has a Lane smaller than 4, and a Rank larger than 6?",
    "question_th": "เวลาใดที่มีเลนเล็กกว่า 4 และอันดับมากกว่า 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_en": "Which Rank has a Nationality of france, and a Name of alain bernard, and a Lane smaller than 6?",
    "question_th": "ตำแหน่งใดที่มีสัญชาติฝรั่งเศส และชื่อของอแลง เบอร์นาร์ด และเลนที่เล็กกว่า 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_en": "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?",
    "question_th": "สัญชาติใดมีอันดับมากกว่า 1 และเวลาน้อยกว่า 22.12 และมีเลนน้อยกว่า 4 และชื่อของแอชลีย์แคลลัส",
    "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_en": "When the date is 8 october 2008 what is the sum of attendance?",
    "question_th": "เมื่อเป็นวันที่ 8 ตุลาคม 2551 มีผู้เข้าร่วมงานเป็นจำนวนเท่าใด",
    "context": "CREATE TABLE table_name_62 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_2 WHERE against = \"pohang steelers\"",
    "question_en": "What date has an against of pohang steelers?",
    "question_th": "โปฮัง สตีลเลอร์ส ดวลกันวันไหน?",
    "context": "CREATE TABLE table_name_2 (date VARCHAR, against VARCHAR)"
  },
  {
    "answer": "SELECT weekday FROM table_name_68 WHERE against = \"kashima antlers\"",
    "question_en": "What weekday has an against of kashima antlers?",
    "question_th": "วันธรรมดาใดที่มีการต่อต้านเขากวางคาชิมะ?",
    "context": "CREATE TABLE table_name_68 (weekday VARCHAR, against VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_14 WHERE game = 4",
    "question_en": "What was the final score of Game #4?",
    "question_th": "คะแนนสุดท้ายของเกม #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_en": "Which Level has a Leading scorer 1 of tom greaves 8?",
    "question_th": "ระดับใดที่มีผู้ทำคะแนนนำ 1 จาก 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–11\"",
    "question_en": "Which Leading scorer 1 has a Season of 2010–11?",
    "question_th": "ผู้ทำประตูสูงสุดคนใดที่มีฤดูกาล 2010–11?",
    "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_en": "Which Leading scorer 1 has a League Contested of northern premier league premier division, and an FA Cup of 2q?",
    "question_th": "ผู้ทำประตูสูงสุด 1 คนใดที่มีการแข่งขันลีกในพรีเมียร์ลีกภาคเหนือ และ FA Cup จำนวน 2 คิว",
    "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–12\"",
    "question_en": "Which Level has a League Contested of northern premier league premier division, and a Season of 2011–12?",
    "question_th": "ระดับใดที่มีการแข่งขันลีกของพรีเมียร์ลีกทางตอนเหนือ พรีเมียร์ดิวิชั่น และฤดูกาลปี 2554–55?",
    "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_en": "What is the least Top-5 when 1 is the cuts made?",
    "question_th": "อะไรคือ Top-5 ที่น้อยที่สุดเมื่อมีการตัด 1?",
    "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_en": "With events less than 0, what is the fewest Top-5?",
    "question_th": "ด้วยเหตุการณ์ที่น้อยกว่า 0 อะไรคือ 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_en": "How many wins of average has cuts made less than 0?",
    "question_th": "ชัยชนะโดยเฉลี่ยมีกี่ครั้งที่การตัดน้อยกว่า 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_en": "How many events total is the Top-5 2, and 4 is the cuts made, and less than 0 wins?",
    "question_th": "5 อันดับสูงสุด 2 รายการมีทั้งหมดกี่รายการ และมีการตัด 4 รายการ และชนะน้อยกว่า 0 รายการ",
    "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_en": "In the Open Championship with more than 3 cuts made, what is the average wins?",
    "question_th": "ในการแข่งขัน Open Championship ที่มีการตัดมากกว่า 3 ครั้ง ชัยชนะโดยเฉลี่ยคือเท่าใด",
    "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_en": "What lane did the barbados swimmer compete in before heat 3?",
    "question_th": "นักว่ายน้ำชาวบาร์เบโดสแข่งขันในเลนใดก่อนฮีต 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_en": "What was the time of the 5th ranked swimmer who swam after heat 3 and was in a lane under 5?",
    "question_th": "เวลาที่เท่าไหร่ของนักว่ายน้ำอันดับ 5 ที่ว่ายน้ำหลังฮีต 3 และอยู่ในเลนต่ำกว่า 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_en": "What is the average population for an area less than 433.7km and a 23013 code?",
    "question_th": "ประชากรโดยเฉลี่ยสำหรับพื้นที่น้อยกว่า 433.7 กม. และรหัส 23013 คือเท่าใด",
    "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_en": "What is the total code number for Amadiba?",
    "question_th": "หมายเลขรหัสทั้งหมดของ Amadiba คืออะไร?",
    "context": "CREATE TABLE table_name_54 (code VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(capacity) FROM table_name_61 WHERE club = \"leicester tigers\"",
    "question_en": "What is the total capacity for the Leicester Tigers?",
    "question_th": "ความจุรวมของเลสเตอร์ ไทเกอร์คือเท่าไร?",
    "context": "CREATE TABLE table_name_61 (capacity VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT city_town FROM table_name_3 WHERE stadium = \"welford road\"",
    "question_en": "What town has the Welford Road Stadium?",
    "question_th": "สนามกีฬา Welford Road อยู่ที่เมืองใด",
    "context": "CREATE TABLE table_name_3 (city_town VARCHAR, stadium VARCHAR)"
  },
  {
    "answer": "SELECT SUM(year) FROM table_name_97 WHERE player = \"david rose\"",
    "question_en": "What year was the player David Rose?",
    "question_th": "ผู้เล่น 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_en": "What is the median family income when the per capita is $24,114?",
    "question_th": "รายได้เฉลี่ยของครอบครัวคือเท่าใดเมื่อรายได้ต่อหัวอยู่ที่ 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_en": "What is the median household income when the per capita is $21,585?",
    "question_th": "รายได้เฉลี่ยของครัวเรือนเมื่อรายได้ต่อหัวอยู่ที่ 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_en": "What is the population where the median family income is $48,446 and there are more than 35,343 households?",
    "question_th": "ประชากรที่รายได้เฉลี่ยของครอบครัวอยู่ที่ 48,446 ดอลลาร์และมีมากกว่า 35,343 ครัวเรือนคือเท่าใด",
    "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_en": "What is the population where the median household income is $87,832 and there are fewer than 64,886 households?",
    "question_th": "ประชากรที่มีรายได้เฉลี่ยของครัวเรือนอยู่ที่ 87,832 ดอลลาร์สหรัฐฯ และมีครัวเรือนน้อยกว่า 64,886 ครัวเรือนคือเท่าใด",
    "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_en": "What is the score 1 for the major league soccer all-star game?",
    "question_th": "คะแนน 1 ของเกมเมเจอร์ลีกซอกเกอร์ออลสตาร์คือเท่าไร?",
    "context": "CREATE TABLE table_name_20 (score1 VARCHAR, competition_or_tour VARCHAR)"
  },
  {
    "answer": "SELECT score1 FROM table_name_85 WHERE ground = \"h\"",
    "question_en": "What is the score 1 with a h ground?",
    "question_th": "คะแนน 1 กับ อากราวด์ คืออะไร?",
    "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_en": "Who are the scorers on 1 August 2008, where the ground was A?",
    "question_th": "ใครคือผู้ทำประตูในวันที่ 1 สิงหาคม พ.ศ. 2551 ซึ่งพื้นคือ 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_en": "What ground had Portsmouth reserves as an opponent?",
    "question_th": "เหตุผลอะไรที่ทำให้พอร์ทสมัธสำรองเป็นคู่ต่อสู้?",
    "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_en": "What ground had a match smaller than 6 and Chelsea Reserves as the opponent?",
    "question_th": "สนามใดมีนัดที่เล็กกว่า 6 และมีทีมสำรองของเชลซีเป็นคู่ต่อสู้?",
    "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_en": "Which Team has Losses larger than 5, and a Position of 12?",
    "question_th": "ทีมใดที่มีการแพ้มากกว่า 5 และตำแหน่ง 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_en": "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?",
    "question_th": "มีกี่คะแนนที่มีตำแหน่งมากกว่า 4 และแพ้มากกว่า 5 และยอมรับ 15 และคะแนนมากกว่า 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_en": "How many positions have Played smaller than 12?",
    "question_th": "มีกี่ตำแหน่งที่เล่นน้อยกว่า 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_en": "Who was the Prato Elector with a faction of Italian?",
    "question_th": "ใครคือผู้มีสิทธิเลือกตั้งปราโตที่มีฝ่ายอิตาลี",
    "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_en": "What's the elevator of Jacques D'euse?",
    "question_th": "ลิฟต์ของ 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_en": "What's the nationality for Nicholas III?",
    "question_th": "นิโคลัสที่ 3 มีสัญชาติอะไร",
    "context": "CREATE TABLE table_name_97 (nationality VARCHAR, elevator VARCHAR)"
  },
  {
    "answer": "SELECT MIN(mintage) FROM table_name_93 WHERE artist = \"dora de pédery-hunt\" AND year < 2002",
    "question_en": "What is the fewest mintage from Dora de Pédery-Hunt, and the year was before 2002?",
    "question_th": "อะไรคือสิ่งที่ผลิตน้อยที่สุดจาก Dora de Pédery-Hunt และปีก่อนปี 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_en": "What is the most mintage with common eider as the theme, and the year less than 2008?",
    "question_th": "อะไรคือสิ่งที่สร้างเสร็จมากที่สุดโดยมีอีเดอร์ทั่วไปเป็นธีม และปีน้อยกว่าปี 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_en": "What is the earliest year when the 25th Anniversary Loonie was the theme, and the mintage was less than 35,000?",
    "question_th": "ปีแรกสุดที่มีธีม Loonie ครบรอบ 25 ปี และจำนวนผลิตน้อยกว่า 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_en": "Who was the artist that had $49.95 as the issue price for the 2010 year?",
    "question_th": "ศิลปินคนไหนที่มีเงิน 49.95 ดอลลาร์เป็นราคาจำหน่ายในปี 2010",
    "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_en": "What is the score for the southern home team?",
    "question_th": "สกอร์ทีมเหย้าใต้เท่าไหร่?",
    "context": "CREATE TABLE table_name_78 (score VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_82 WHERE home_team = \"southern\"",
    "question_en": "What time is it for the southern home team?",
    "question_th": "ทีมเหย้าใต้กี่โมง?",
    "context": "CREATE TABLE table_name_82 (time VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_78 WHERE date = \"november 24, 1946\"",
    "question_en": "What is the Result of the game on November 24, 1946?",
    "question_th": "ผลการแข่งขันวันที่ 24 พฤศจิกายน พ.ศ. 2489 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_78 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT SUM(week) FROM table_name_48 WHERE date = \"september 6, 1946\"",
    "question_en": "What is the Week number on September 6, 1946?",
    "question_th": "เลขที่สัปดาห์ของวันที่ 6 กันยายน พ.ศ. 2489 คืออะไร?",
    "context": "CREATE TABLE table_name_48 (week INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_53 WHERE record = \"5-3\"",
    "question_en": "What is the Date of the game with a Record of 5-3?",
    "question_th": "วันที่ของเกมที่มีสถิติ 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_en": "What was the lowest ranking rower from Great Britain?",
    "question_th": "อะไรคือนักพายเรือที่มีอันดับต่ำที่สุดจากบริเตนใหญ่?",
    "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_en": "What are the notes for the rower in ranks over 2 and having a time of 7:00:46?",
    "question_th": "หมายเหตุสำหรับนักพายอันดับมากกว่า 2 และมีเวลา 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_en": "Which Programming has a Video of audio only?",
    "question_th": "รายการใดมีเฉพาะวิดีโอเสียงเท่านั้น",
    "context": "CREATE TABLE table_name_62 (programming VARCHAR, video VARCHAR)"
  },
  {
    "answer": "SELECT video FROM table_name_49 WHERE channel = 25.3",
    "question_en": "Which Video has a Channel of 25.3?",
    "question_th": "วิดีโอใดมีช่อง 25.3",
    "context": "CREATE TABLE table_name_49 (video VARCHAR, channel VARCHAR)"
  },
  {
    "answer": "SELECT video FROM table_name_14 WHERE aspect = \"16:9\"",
    "question_en": "Which Video has an Aspect of 16:9?",
    "question_th": "วิดีโอใดที่มีอัตราส่วน 16:9",
    "context": "CREATE TABLE table_name_14 (video VARCHAR, aspect VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_62 WHERE michael_signer = \"4%\"",
    "question_en": "On which date did Michael Signer earn 4%?",
    "question_th": "Michael Signer ได้รับ 4% วันไหน?",
    "context": "CREATE TABLE table_name_62 (date VARCHAR, michael_signer VARCHAR)"
  },
  {
    "answer": "SELECT source FROM table_name_54 WHERE michael_signer = \"5%\"",
    "question_en": "Which polling source gave Michael Signer 5%?",
    "question_th": "แหล่งสำรวจใดที่ให้ 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_en": "Which date had the undecided percentage at 42%?",
    "question_th": "วันไหนที่มีเปอร์เซ็นต์ไม่แน่ใจอยู่ที่ 42%?",
    "context": "CREATE TABLE table_name_10 (date VARCHAR, undecided VARCHAR)"
  },
  {
    "answer": "SELECT rich_savage FROM table_name_90 WHERE jody_wagner = \"30%\"",
    "question_en": "What is the Rich Savage percentage in the poll with Jody Wagner at 30%?",
    "question_th": "เปอร์เซ็นต์ Rich Savage ในแบบสำรวจความคิดเห็นของ Jody Wagner ที่ 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_en": "What is the Rich Savage percentage in the poll that had undecideds at 68%?",
    "question_th": "เปอร์เซ็นต์ Rich Savage ในแบบสำรวจความคิดเห็นที่ยังไม่ได้ตัดสินใจอยู่ที่ 68% เป็นเท่าใด",
    "context": "CREATE TABLE table_name_82 (rich_savage VARCHAR, undecided VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_40 WHERE record = \"31-24\"",
    "question_en": "Who was the opponent when the record was 31-24?",
    "question_th": "คู่ต่อสู้เมื่อทำสถิติ 31-24 คือใคร?",
    "context": "CREATE TABLE table_name_40 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_43 WHERE game = \"48\"",
    "question_en": "What was the score of Game 48?",
    "question_th": "เกมที่ 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_en": "Who was the opponent at the game at Madison Square Garden?",
    "question_th": "คู่ต่อสู้ในเกมที่เมดิสัน สแควร์ การ์เดนคือใคร?",
    "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_en": "What was the score of the game at Great Western Forum?",
    "question_th": "คะแนนของเกมที่ 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 = \"花より男子2（リターンズ）\"",
    "question_en": "Which Romaji Title has a Japanese Title of 花より男子2（リターンズ）?",
    "question_th": "ชื่ออักษรโรมันจิใดมีชื่อภาษาญี่ปุ่นว่า HANより男子2（リTAーンズ）?",
    "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_en": "Which Romaji Title has a TV Station of fuji tv, and Average Ratings of 12.41%?",
    "question_th": "ชื่อเรื่องโรมาจิเรื่องใดที่มีสถานีโทรทัศน์ของ fuji tv และมีเรตติ้งเฉลี่ย 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_en": "Which Japanese Title has more than 9 Episodes, and a Romaji Title of haikei, chichiue-sama?",
    "question_th": "ชื่อเรื่องภาษาญี่ปุ่นเรื่องใดที่มีมากกว่า 9 ตอน และชื่อเรื่องแบบโรมันจิของ 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_en": "Which Romaji Title has 11 Episodes, and a TV Station of fuji tv, and Average Ratings of 14.9%?",
    "question_th": "ชื่อเรื่องโรมาจิเรื่องใดมี 11 ตอน และสถานีโทรทัศน์ของ fuji tv และมีเรตติ้งเฉลี่ย 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_en": "What was the result of nomination for Season 6 after 1995?",
    "question_th": "ผลลัพธ์ของการเสนอชื่อสำหรับซีซั่น 6 หลังปี 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_en": "What was the category of the award that John Frank Levey was nominated for after 1995?",
    "question_th": "รางวัลประเภทใดที่ John Frank Levey ได้รับการเสนอชื่อเข้าชิงหลังปี 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_en": "What is the English Translation for the French song by the Artist Rachel?",
    "question_th": "เพลงภาษาฝรั่งเศสของศิลปิน 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_en": "What is the Song by Artist Robert Cogoi?",
    "question_th": "เพลงของศิลปิน 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_en": "How many Points were awarded to Sabahudin Kurt with a Draw is greater than 7?",
    "question_th": "ซาบาฮูดิน เคิร์ต เสมอมากกว่า 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_en": "How much Converted has a Number of 35, and a Withdrawn smaller than 1952?",
    "question_th": "การแปลงมีจำนวนเท่าใด 35 และการถอนออกน้อยกว่าปี 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_en": "What is the average latitude for townships in Dickey county with water under 2.106 sqmi and population under 95?",
    "question_th": "ละติจูดเฉลี่ยสำหรับเมืองในเขต Dickey ที่มีน้ำต่ำกว่า 2.106 ตร.ไมล์ และประชากรต่ำกว่า 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_en": "What is the highest GEO ID for land masses over 38.117 sq mi and over 2.065 sq mi of water?",
    "question_th": "GEO ID สูงสุดสำหรับมวลที่ดินมากกว่า 38.117 ตารางไมล์ และน้ำมากกว่า 2.065 ตารางไมล์ คืออะไร",
    "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_en": "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?",
    "question_th": "หมายเลข GEO ID สำหรับพื้นที่ในเมืองริกกินที่มีพื้นที่น้ำมากกว่า 0.587 ตร.ไมล์ และรหัส ANSI มากกว่า 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_en": "What's the class when the identifier is cbf-fm-14?",
    "question_th": "คลาสคืออะไรเมื่อตัวระบุคือ 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_en": "What's the frequency when the identifier is cbf-fm-9?",
    "question_th": "ความถี่เมื่อตัวระบุคือ 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_en": "What's the RECNet when the identifier is cbf-fm-20?",
    "question_th": "RECNet คืออะไรเมื่อตัวระบุคือ 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_en": "What's the RECNet when the power is 199 watts?",
    "question_th": "RECNet ได้เท่าไรเมื่อกำลังไฟ 199 วัตต์?",
    "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_en": "What's the frequency when the identifier is cbf-fm-14 having a class of A?",
    "question_th": "ความถี่ที่ตัวระบุคือ cbf-fm-14 มีคลาส 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_en": "What is the A.G. value associated with D3&4 of 46 and transmitter of Seaham?",
    "question_th": "ค่า AG ที่เกี่ยวข้องกับ D3&4 ของ 46 และเครื่องส่งของ 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_en": "What is the AG value associated with a D3&4 of 41?",
    "question_th": "ค่า AG ที่เกี่ยวข้องกับ D3&4 ของ 41 คืออะไร",
    "context": "CREATE TABLE table_name_71 (ag VARCHAR, d3 VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_45 WHERE date = \"15 december 1992\"",
    "question_en": "which Label is in 15 december 1992?",
    "question_th": "ฉลากใดอยู่ใน 15 ธันวาคม 2535?",
    "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_en": "Which Album has an Artist of various artists (compilation), and a Label of laface?",
    "question_th": "อัลบั้มไหนมีศิลปินของศิลปินหลากหลาย (รวบรวม) และ 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êche pas l'autre\"",
    "question_en": "When has an Album of l'un n'empêche pas l'autre?",
    "question_th": "อัลบั้มของ l'un n'empêche 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_en": "Which Track(s) is on 18 november 1985?",
    "question_th": "แทร็กใดคือวันที่ 18 พฤศจิกายน พ.ศ. 2528",
    "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_en": "Which Label that has an Album of so red the rose?",
    "question_th": "ค่ายไหนที่มีอัลบั้ม 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_en": "What is the least lane number that Natalie Coughlin was in when she was ranked greater than 1?",
    "question_th": "หมายเลขเลนน้อยที่สุดที่ Natalie Coughlin อยู่เมื่อเธออยู่ในอันดับที่มากกว่า 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_en": "Who is the Athlete with a rowing Time of 6:36.05?",
    "question_th": "นักกีฬาคนใดที่มีเวลาพายเรือ 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_en": "What song was made by the sex pistols?",
    "question_th": "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_en": "What song has the band tour vnue of 6. tool (usa) encore?",
    "question_th": "วงดนตรีทัวร์ vnue ของ 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_en": "What is the total when the A score was less than 6.6, and the B score was 8.925?",
    "question_th": "คะแนนรวมเมื่อคะแนน A น้อยกว่า 6.6 และคะแนน B เท่ากับ 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_en": "What total has a position smaller than 4, a B score higher than 9.125, and an A score less than 6.6?",
    "question_th": "คะแนนรวมใดที่มีตำแหน่งน้อยกว่า 4 คะแนน B สูงกว่า 9.125 และคะแนน A น้อยกว่า 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_en": "What is the score when watford was the away team?",
    "question_th": "เมื่อวัตฟอร์ดเป็นทีมเยือนสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_59 (score VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_91 WHERE home_team = \"york city\"",
    "question_en": "What is the score when york city was the home team?",
    "question_th": "เมื่อยอร์คซิตี้เป็นเจ้าบ้านสกอร์เท่าไหร่?",
    "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_en": "What score has a game greater than 29, with 24-6 as the record?",
    "question_th": "คะแนนใดที่มีเกมมากกว่า 29 โดยมี 24-6 เป็นสถิติ?",
    "context": "CREATE TABLE table_name_6 (score VARCHAR, game VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_61 WHERE opponent = \"@ detroit\"",
    "question_en": "What record has @ detroit as the opponent?",
    "question_th": "มีสถิติอะไร @ดีทรอยต์เป็นคู่ต่อสู้?",
    "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_en": "What high assists have McWilliams-franklin (22) as the high points?",
    "question_th": "แม็ควิลเลียมส์-แฟรงคลิน (22) มีแอสซิสต์สูงแค่ไหน?",
    "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_en": "What high assists have uic pavilion 3,520 as the location/attendance?",
    "question_th": "uic Pavilion 3,520 มีผู้ช่วยสูงแค่ไหนในตำแหน่ง/การเข้างาน?",
    "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_en": "What game has jones (10) as the high rebounds?",
    "question_th": "เกมไหนที่โจนส์ (10) รีบาวด์สูง?",
    "context": "CREATE TABLE table_name_94 (game VARCHAR, high_rebounds VARCHAR)"
  },
  {
    "answer": "SELECT cores FROM table_name_28 WHERE release_price___usd__ = \"$426\"",
    "question_en": "How many cores does the processor with a release price of $426 have?",
    "question_th": "โปรเซสเซอร์ที่มีราคาวางจำหน่ายที่ 426 ดอลลาร์มีกี่คอร์",
    "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_en": "What was the frequency of the Core i7-3610QE?",
    "question_th": "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_en": "How many cores does the processor released in April 2012 with a price of $393 and part number av8063801117503 have?",
    "question_th": "โปรเซสเซอร์จำนวนกี่คอร์ที่เปิดตัวในเดือนเมษายน 2012 ราคา 393 ดอลลาร์และมีหมายเลขชิ้นส่วน av8063801117503 มีกี่คอร์",
    "context": "CREATE TABLE table_name_3 (cores VARCHAR, part_number_s_ VARCHAR, release_date VARCHAR, release_price___usd__ VARCHAR)"
  },
  {
    "answer": "SELECT area_km² FROM table_name_45 WHERE country = \"japan\"",
    "question_en": "What is Japan's Area km²?",
    "question_th": "พื้นที่ของญี่ปุ่น ตารางกิโลเมตร คืออะไร?",
    "context": "CREATE TABLE table_name_45 (area_km² VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT island FROM table_name_98 WHERE density__per_km²_ = \"1,368\"",
    "question_en": "Which island has a density (per km²) of 1,368?",
    "question_th": "เกาะใดมีความหนาแน่น (ต่อกิโลเมตร²) 1,368",
    "context": "CREATE TABLE table_name_98 (island VARCHAR, density__per_km²_ VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_32 WHERE density__per_km²_ = \"6,814\"",
    "question_en": "Which country has a density (per km²) of 6,814?",
    "question_th": "ประเทศใดมีความหนาแน่น (ต่อกิโลเมตร²) 6,814",
    "context": "CREATE TABLE table_name_32 (country VARCHAR, density__per_km²_ VARCHAR)"
  },
  {
    "answer": "SELECT island FROM table_name_20 WHERE population = \"9,520 (2000)\"",
    "question_en": "Which island has a population of 9,520 (2000)?",
    "question_th": "เกาะใดมีประชากร 9,520 คน (พ.ศ. 2543)",
    "context": "CREATE TABLE table_name_20 (island VARCHAR, population VARCHAR)"
  },
  {
    "answer": "SELECT area_km² FROM table_name_99 WHERE population = \"99,685 (2008)\"",
    "question_en": "What is the area km² for a population of 99,685 (2008)?",
    "question_th": "พื้นที่ km² สำหรับประชากร 99,685 คน (พ.ศ. 2551) คือเท่าใด",
    "context": "CREATE TABLE table_name_99 (area_km² VARCHAR, population VARCHAR)"
  },
  {
    "answer": "SELECT island FROM table_name_43 WHERE country = \"united kingdom\"",
    "question_en": "Which island is in the United Kingdom?",
    "question_th": "เกาะใดอยู่ในสหราชอาณาจักร",
    "context": "CREATE TABLE table_name_43 (island VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT pitcher FROM table_name_40 WHERE location = \"kingdome\" AND season = \"1983\"",
    "question_en": "Who is the pitcher from the 1983 season in location Kingdome?",
    "question_th": "ใครคือเหยือกจากฤดูกาล 1983 ในตำแหน่ง 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_en": "Who is the pitcher from the 1994 season that had the Cleveland Indians as an opponent?",
    "question_th": "ใครคือเหยือกจากฤดูกาล 1994 ที่มีคลีฟแลนด์อินเดียนส์เป็นคู่ต่อสู้?",
    "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_en": "Who is the opponent for the 2011 season with a decision of W?",
    "question_th": "ใครคือคู่ต่อสู้ในฤดูกาล 2011 ด้วยการตัดสินของ 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_en": "What season was played at Safeco Field, against the Boston Red Sox, with a decision of L?",
    "question_th": "ฤดูกาลใดที่เล่นที่เซฟโคฟิลด์ พบกับทีมบอสตัน เรดซอกซ์ โดยมีการตัดสินเป็น แอล?",
    "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_en": "What was the decision for the 1983 season for the game played against the New York Yankees?",
    "question_th": "อะไรคือการตัดสินใจสำหรับเกมที่พบกับนิวยอร์ก แยงกี้ในฤดูกาล 1983?",
    "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_en": "what is the encoding when the tracks/side is 80  and sectors/track is 11?",
    "question_th": "การเข้ารหัสคืออะไรเมื่อแทร็ก/ด้านข้างเป็น 80 และเซกเตอร์/แทร็กเป็น 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_en": "What is the highest bronze for less than 2 total trophies?",
    "question_th": "เหรียญทองแดงสูงสุดสำหรับถ้วยรางวัลรวมน้อยกว่า 2 ถ้วยรางวัลคืออะไร?",
    "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_en": "Which Total has a Finish of t64, and a Year won larger than 2006?",
    "question_th": "ผลรวมใดที่มีเส้นชัยเป็น t64 และหนึ่งปีชนะมากกว่าปี 2549",
    "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_en": "Which year won has a Finish of t24, and a Country of england?",
    "question_th": "ปีใดที่ชนะมีเส้นชัยเป็น t24 และประเทศอังกฤษ?",
    "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_en": "What is the smallest bronze value for countries with totals over 2, golds of 0, silvers under 1, and ranks over 10?",
    "question_th": "ค่าทองแดงที่น้อยที่สุดสำหรับประเทศที่มีคะแนนรวมมากกว่า 2 เหรียญทอง 0 เหรียญเงินต่ำกว่า 1 และอันดับมากกว่า 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_en": "Which school has an enrollment of A and had lost river as their previous conference?",
    "question_th": "โรงเรียนใดมีการลงทะเบียน A และสูญเสียแม่น้ำไปในการประชุมครั้งก่อน",
    "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_en": "What is the average year joined of the 277 county?",
    "question_th": "ปีเฉลี่ยที่เข้าร่วมของ 277 เคาน์ตีคือเท่าไร?",
    "context": "CREATE TABLE table_name_43 (year_joined INTEGER, county VARCHAR)"
  },
  {
    "answer": "SELECT ihsaa_class FROM table_name_71 WHERE county < 228",
    "question_en": "What is the IHSAA class of the county that is less than 228?",
    "question_th": "IHSAA class ของเคาน์ตีที่น้อยกว่า 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_en": "What is the engine when the transmission was 4-speed automatic, and acceleration 0–100km/h (0–62mph) was 10.4 s?",
    "question_th": "เครื่องยนต์คืออะไรเมื่อระบบส่งกำลังเป็นแบบอัตโนมัติ 4 สปีด และความเร่ง 0–100 กม./ชม. (0–62 ไมล์ต่อชั่วโมง) อยู่ที่ 10.4 วินาที",
    "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_en": "What is the Power when the acceleration 0–100km/h (0–62mph) is 9.1 s?",
    "question_th": "กำลังคืออะไรเมื่อเร่งความเร็ว 0–100 กม./ชม. (0–62 ไมล์ต่อชั่วโมง) อยู่ที่ 9.1 วินาที",
    "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_en": "What is the transmission when the engine is 2.0l, and acceleration 0–100km/h (0–62mph) is 10.5 s?",
    "question_th": "ระบบส่งกำลังเป็นอย่างไรเมื่อเครื่องยนต์ขนาด 2.0 ลิตร และความเร่ง 0–100 กม./ชม. (0–62 ไมล์ต่อชั่วโมง) อยู่ที่ 10.5 วินาที",
    "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_en": "What is the production when engine is 2.7l, and acceleration 0–100km/h (0–62mph) is 8.5 s?",
    "question_th": "จะเกิดอะไรขึ้นเมื่อเครื่องยนต์มีขนาด 2.7 ลิตร และความเร่ง 0–100 กม./ชม. (0–62 ไมล์ต่อชั่วโมง) อยู่ที่ 8.5 วินาที",
    "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_en": "What is the transmission when the production was 2002-2005?",
    "question_th": "เกียร์อะไรครับตอนผลิตปี 2545-2548?",
    "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_en": "What is the acceleration 0–100km/h (0–62mph) when the transmission is 5-speed manual?",
    "question_th": "อัตราเร่ง 0–100 กม./ชม. (0–62 ไมล์ต่อชั่วโมง) เมื่อเกียร์ธรรมดา 5 สปีดเป็นเท่าใด",
    "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_en": "What is the highest year for the Bethesda Game Studios Developer?",
    "question_th": "ปีสูงสุดสำหรับนักพัฒนา Bethesda Game Studios คือปีใด",
    "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_en": "What is the lowest year for the game called The Elder Scrolls v: Skyrim?",
    "question_th": "ปีต่ำสุดของเกมที่เรียกว่า 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_en": "What game was developed by Naughty Dog?",
    "question_th": "เกมอะไรพัฒนาโดย 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_en": "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?",
    "question_th": "imed/avicenna คืออะไรที่ระบุไว้สำหรับโรงเรียนแพทย์นอกชายฝั่งในเซนต์คิตส์และเนวิสซึ่งก่อตั้งขึ้นก่อนปี 2000 และจะให้ 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_en": "What country has a medical school established in 1969 with both an IMED and avicenna?",
    "question_th": "ประเทศใดมีโรงเรียนแพทย์ที่จัดตั้งขึ้นในปี 1969 โดยมีทั้ง IMED และ 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_en": "What is the average year that the medical school in dominican republic was established?",
    "question_th": "ปีเฉลี่ยที่โรงเรียนแพทย์ในสาธารณรัฐโดมินิกันก่อตั้งขึ้นคือปีใด",
    "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_en": "What are the most wins with byes more than 0 and 1637 against?",
    "question_th": "อะไรชนะมากที่สุดโดยบายมากกว่า 0 และ 1637 ต่อ?",
    "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_en": "What are the total byes for the Red Cliffs with more than 4 losses and more than 2422 against?",
    "question_th": "ผลบายบายของผาแดงที่แพ้มากกว่า 4 ครั้งและเสียมากกว่า 2422 ครั้งเป็นเท่าไหร่?",
    "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_en": "What's the total wins for Wentworth with less than 0 byes?",
    "question_th": "ชัยชนะทั้งหมดของ Wentworth ด้วยการบายน้อยกว่า 0 เป็นเท่าใด",
    "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_en": "Which venue had an opponent of Sunderland and a result of a 1-1 draw?",
    "question_th": "สนามไหนเจอกับซันเดอร์แลนด์และผลเสมอ 1-1?",
    "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_en": "What is the number of attendance values for ties having an opponent of Middlesbrough and result of 3-1?",
    "question_th": "จำนวนการเข้าชมสำหรับเสมอกับคู่ต่อสู้ของมิดเดิ้ลสโบรช์และผล 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_en": "Which venue ended in a 3-0 result?",
    "question_th": "สนามไหนจบลงด้วยผล 3-0?",
    "context": "CREATE TABLE table_name_35 (venue VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_7 WHERE result = \"0-5\"",
    "question_en": "Where was a 0-5 game played?",
    "question_th": "เล่นเกม 0-5 ที่ไหน?",
    "context": "CREATE TABLE table_name_7 (venue VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT AVG(rank) FROM table_name_38 WHERE matches < 3",
    "question_en": "What is the average rank of a player with fewer than 3 matches?",
    "question_th": "อันดับเฉลี่ยของผู้เล่นที่มีการแข่งขันน้อยกว่า 3 นัดคือเท่าไร?",
    "context": "CREATE TABLE table_name_38 (rank INTEGER, matches INTEGER)"
  },
  {
    "answer": "SELECT opponent FROM table_name_24 WHERE date = \"april 21\"",
    "question_en": "Who was the opponent on April 21?",
    "question_th": "คู่ต่อสู้ในวันที่ 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_en": "What's the record on April 12 when the location was The Omni?",
    "question_th": "บันทึกเมื่อวันที่ 12 เมษายน เมื่อสถานที่คือ 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_en": "What date was the score \"score\"?",
    "question_th": "คะแนน “คะแนน” คือวันไหน?",
    "context": "CREATE TABLE table_name_91 (date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_20 WHERE game = \"77\"",
    "question_en": "What's the score of game 77?",
    "question_th": "เกมที่ 77 ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_20 (score VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_17 WHERE record = \"43-34\"",
    "question_en": "What date had a record of 43-34?",
    "question_th": "วันที่เท่าไหร่มีบันทึก 43-34?",
    "context": "CREATE TABLE table_name_17 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT artist FROM table_name_5 WHERE percentage = \"17.14%\"",
    "question_en": "What Artist had a Percentage of 17.14%?",
    "question_th": "ศิลปินคนใดมีเปอร์เซ็นต์ 17.14%",
    "context": "CREATE TABLE table_name_5 (artist VARCHAR, percentage VARCHAR)"
  },
  {
    "answer": "SELECT percentage FROM table_name_73 WHERE place = 5",
    "question_en": "What Percentage has a Place of 5?",
    "question_th": "เปอร์เซ็นต์มีตำแหน่ง 5 หรือไม่?",
    "context": "CREATE TABLE table_name_73 (percentage VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT br_number FROM table_name_5 WHERE lms_number > 14768",
    "question_en": "Which BR number has an LMS number over 14768?",
    "question_th": "หมายเลข BR ใดมีหมายเลข LMS มากกว่า 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_en": "what is the frequency when the city of license is belleville?",
    "question_th": "เมืองแห่งใบอนุญาตคือเมืองเบลล์วิลล์ความถี่เท่าไร?",
    "context": "CREATE TABLE table_name_42 (frequency VARCHAR, city_of_license VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_name_17 WHERE power = \"22500 watts\"",
    "question_en": "what is the class when the power is 22500 watts?",
    "question_th": "กำลังไฟ 22500 วัตต์ คลาสอะไรครับ?",
    "context": "CREATE TABLE table_name_17 (class VARCHAR, power VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_name_60 WHERE identifier = \"cjbc-1-fm\"",
    "question_en": "what is the class when the identifier is cjbc-1-fm?",
    "question_th": "คลาสคืออะไรเมื่อตัวระบุเป็น 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_en": "what is the recnet when the city of license is peterborough?",
    "question_th": "เมืองที่ได้รับใบอนุญาตคือปีเตอร์โบโรห์จะเป็นอย่างไร",
    "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_en": "what is the power when the city of license is belleville?",
    "question_th": "อำนาจอะไรเมื่อเมืองใบอนุญาตคือเบลล์วิลล์?",
    "context": "CREATE TABLE table_name_71 (power VARCHAR, city_of_license VARCHAR)"
  },
  {
    "answer": "SELECT identifier FROM table_name_17 WHERE power = \"22500 watts\"",
    "question_en": "what is the identifier when the power is 22500 watts?",
    "question_th": "ตัวระบุเมื่อกำลังไฟ 22500 วัตต์คืออะไร?",
    "context": "CREATE TABLE table_name_17 (identifier VARCHAR, power VARCHAR)"
  },
  {
    "answer": "SELECT MIN(opponents) FROM table_name_80 WHERE date = \"nov. 25\"",
    "question_en": "What is the Opponents in the game with a Date of nov. 25?",
    "question_th": "ฝ่ายตรงข้ามในเกมคืออะไรโดยมีวันที่ 1 พ.ย. 25?",
    "context": "CREATE TABLE table_name_80 (opponents INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT games FROM table_name_96 WHERE name = \"leandro love\"",
    "question_en": "How many games does leandro love have?",
    "question_th": "Leandro Love มีกี่เกม?",
    "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_en": "What is the lowest number of goals joe keenan, who has more than 1 assists, had in 2007/08?",
    "question_th": "จำนวนประตูต่ำสุดที่โจ คีนัน ซึ่งทำได้มากกว่า 1 แอสซิสต์ในฤดูกาล 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_en": "What is the lowest number of goals of the player with 9 (0) games and less than 0 assists?",
    "question_th": "จำนวนประตูต่ำสุดของผู้เล่นโดยทำได้ 9 (0) เกมและน้อยกว่า 0 แอสซิสต์คือเท่าใด?",
    "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_en": "How many finals had more than 0 goals and 8 assists?",
    "question_th": "รอบชิงชนะเลิศกี่ครั้งที่มีมากกว่า 0 ประตูและ 8 แอสซิสต์?",
    "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_en": "When the nationality is united states, and the time is 58.06, and the heat is larger than 5 what is the lowest rank?",
    "question_th": "เมื่อสัญชาติเป็นสหรัฐอเมริกาและเวลาคือ 58.06 และความร้อนมากกว่า 5 อันดับต่ำสุดคือเท่าใด",
    "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_en": "What is the highest rank when the lane is larger than 6, and the heat is 3, and the nationality is colombia?",
    "question_th": "อันดับสูงสุดคืออะไรเมื่อเลนมากกว่า 6 และความร้อนคือ 3 และสัญชาติคือโคลอมเบีย?",
    "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_en": "What is the total lane for a heat larger than 7?",
    "question_th": "เลนรวมสำหรับความร้อนที่มากกว่า 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_en": "What is the highest heat when the nationality is poland, and the lane is smaller than 6?",
    "question_th": "สัญชาติโปแลนด์และเลนเล็กกว่า 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_en": "Which Lead Pitch/mm has a Body Width/mm larger than 10.16?",
    "question_th": "Lead Pitch/mm ใดที่มีความกว้างของตัวถัง/mm มากกว่า 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_en": "How much Body Width/mm has a Part Number of tsop40/44, and a Body Length/mm smaller than 18.42?",
    "question_th": "ความกว้างตัวถัง/มม. มีหมายเลขชิ้นส่วน tsop40/44 เท่าใด และความยาวตัวถัง/มม. เล็กกว่า 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_en": "Which Lead Pitch/mm has a Part Number of tsop24/28?",
    "question_th": "Lead Pitch/mm ใดมีหมายเลขชิ้นส่วน 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_en": "What is the highest amount of silver when gold is 1 and bronze larger than 0?",
    "question_th": "อะไรคือปริมาณเงินสูงสุดเมื่อทองคำเป็น 1 และทองแดงมากกว่า 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_en": "What is the Time of the Athlete with a Reaction time of 0.164?",
    "question_th": "เวลาของนักกีฬาที่มีเวลาตอบสนอง 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_en": "What is the Time of the Athlete in Lane 4?",
    "question_th": "เวลาของนักกีฬาในเลน 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_en": "What is the Lane of the Athlete from Great Britain with a Reaction time of less than 0.218 and a Time larger than 44.74?",
    "question_th": "Lane of the Athlete จากบริเตนใหญ่ที่มีเวลาตอบสนองน้อยกว่า 0.218 และเวลาที่มากกว่า 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_en": "What is the time in week 3?",
    "question_th": "สัปดาห์ที่ 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_en": "What is the week with attendance of 73,572?",
    "question_th": "สัปดาห์ใดที่มีผู้เข้าร่วม 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_en": "What week was the opponent the San Diego Chargers?",
    "question_th": "คู่ต่อสู้ของซานดิเอโกชาร์จเจอร์สคือสัปดาห์ใด?",
    "context": "CREATE TABLE table_name_94 (week VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT MAX(week) FROM table_name_63 WHERE result = \"l 38–21\"",
    "question_en": "What week was the result of l 38–21?",
    "question_th": "สัปดาห์ที่ผลลัพธ์ของ l 38–21 คืออะไร?",
    "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_en": "What's the total of Rank for the County of Galway and has a Total that's larger than 13?",
    "question_th": "อันดับรวมของเคาน์ตี้กัลเวย์และมีคะแนนรวมมากกว่า 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_en": "What County has an Opposition of Antrim and the Player Bernie Forde?",
    "question_th": "เคาน์ตี้ใดมีฝ่ายค้านกับแอนทริมและผู้เล่นเบอร์นี ฟอร์ด?",
    "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_en": "What's the highest Rank for the County of Offaly, the Player of Mark Corrigan, and the Total that is smaller than 8?",
    "question_th": "ตำแหน่งสูงสุดสำหรับ County of Offaly, ผู้เล่นของ Mark Corrigan และคะแนนรวมที่น้อยกว่า 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_en": "Which Channel has an Opponent of washington redskins?",
    "question_th": "ช่องใดมีฝ่ายตรงข้ามของวอชิงตันอินเดียนแดง?",
    "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_en": "Which attendance has a Channel of espn, and a Date of september 5, 2002?",
    "question_th": "ผู้เข้าร่วมคนไหนมี Channel ของ espn และวันที่ 5 กันยายน 2545?",
    "context": "CREATE TABLE table_name_57 (attendance VARCHAR, channel VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_30 WHERE result = \"w 27–20\"",
    "question_en": "Which Date has a Result of w 27–20?",
    "question_th": "วันที่ใดมีผลลัพธ์เป็น w 27–20",
    "context": "CREATE TABLE table_name_30 (date VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_35 WHERE attendance = \"63,447\"",
    "question_en": "Which Week has an Attendance of 63,447?",
    "question_th": "สัปดาห์ใดมีผู้เข้าร่วม 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_en": "Which Date has a Stadium of giants stadium, and a Week smaller than 13, and an Opponent of seattle seahawks?",
    "question_th": "วันที่ใดมีสนามกีฬาของยักษ์ใหญ่และหนึ่งสัปดาห์ที่เล็กกว่า 13 และเป็นฝ่ายตรงข้ามของซีแอตเทิลซีฮอว์ก?",
    "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_en": "Who was the athlete with react of 0.185?",
    "question_th": "นักกีฬาที่มีคะแนนปฏิกิริยา 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_en": "What's the smallest react of Zimbabwe, ranked after 1 in a lane after 3 and a time less than 20.3?",
    "question_th": "อะไรคือปฏิกิริยาที่เล็กที่สุดของซิมบับเว อันดับที่ 1 ในเลนหลัง 3 และเวลาที่น้อยกว่า 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_en": "What is the total number of white (Hispanic/Non-Hispanic) having a black (Hispanic/Non-Hispanic) of 9.9 and Hispanic under 99.5?",
    "question_th": "จำนวนคนผิวขาว (ฮิสแปนิก/ไม่ใช่ฮิสแปนิก) ทั้งหมดที่มีสีดำ (ฮิสแปนิก/ไม่ใช่ฮิสแปนิก) 9.9 และฮิสแปนิกต่ำกว่า 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_en": "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?",
    "question_th": "อะไรคือค่าสีดำโดยเฉลี่ย (ฮิสแปนิก/ไม่ใช่ฮิสแปนิก) โดยมีค่าสีขาว (ฮิสแปนิก/ไม่ใช่ฮิสแปนิก) ต่ำกว่า 61.9, หลายเชื้อชาติ (ฮิสแปนิก/ไม่ใช่ฮิสแปนิก) ต่ำกว่า 12.5 และฮิสแปนิกต่ำกว่า 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_en": "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?",
    "question_th": "ค่าสูงสุดของ Amerindian (ฮิสแปนิก/ไม่ใช่ฮิสแปนิก) คือค่าของคนผิวดำ (ฮิสแปนิก/ไม่ใช่ฮิสแปนิก) ที่ 15.7 และสีขาว (ฮิสแปนิก/ไม่ใช่ฮิสแปนิก) มากกว่า 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_en": "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?",
    "question_th": "ค่าสีดำ (ฮิสแปนิก/ไม่ใช่ฮิสแปนิก) คืออะไร โดยมีค่าสีขาว (ฮิสแปนิก/ไม่ใช่ฮิสแปนิก) ต่ำกว่า 80.6, เอเชีย (ฮิสแปนิก/ไม่ใช่ฮิสแปนิก) 0.1, อเมรินเดียน (ฮิสแปนิก/ไม่ใช่ฮิสแปนิก) ต่ำกว่า 0.6000000000000001 และเขตเทศบาลของ เวก้า บาจา?",
    "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_en": "What season had 3rd position, a 36 pld, and a bbl div?",
    "question_th": "ฤดูกาลใดมีอันดับ 3, 36 คน และ 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_en": "What season has 36 pld, a bbl div, and 6th position?",
    "question_th": "ฤดูกาลใดมี 36 คน, bbl div และอันดับที่ 6?",
    "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_en": "What season had 6th position and 36 points?",
    "question_th": "ฤดูกาลไหนได้อันดับ 6 และมี 36 แต้ม?",
    "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_en": "What season had 1st position, 33 pld, and 58 points?",
    "question_th": "ฤดูกาลใดมีอันดับ 1, 33 คะแนน, 58 แต้ม?",
    "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_en": "Which School has a Mascot of generals?",
    "question_th": "โรงเรียนไหนมีมาสคอตของนายพลบ้าง?",
    "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_en": "Which School has an IHSAA Class of aaa, and a Mascot of saints?",
    "question_th": "โรงเรียนใดมีระดับ aaa ของ IHSAA และมีตัวนำโชคของนักบุญ",
    "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_en": "What is the highest enrollment in Lagrange where the mascot is panthers?",
    "question_th": "การลงทะเบียนสูงสุดในลากรองจ์ซึ่งมีมาสคอตเป็นเสือดำคืออะไร",
    "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_en": "What is the enrollment at the school of Hamilton community?",
    "question_th": "การลงทะเบียนที่โรงเรียนของชุมชนแฮมิลตันเป็นอย่างไร?",
    "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_en": "What school that has a IHSAA Class of AA, in Butler?",
    "question_th": "โรงเรียนใดที่มีระดับ IHSAA ระดับ AA ใน 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_en": "What is the mascot at Hamilton Community?",
    "question_th": "มาสคอตของ 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_en": "What school is in Lagrange, with an IHSAA Class of aaa?",
    "question_th": "โรงเรียนใดบ้างในลากรองจ์ ที่มีระดับ aaa ของ IHSAA",
    "context": "CREATE TABLE table_name_80 (school VARCHAR, location VARCHAR, ihsaa_class VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_11 WHERE location = \"ligonier\"",
    "question_en": "What school is in Ligonier?",
    "question_th": "โรงเรียนอะไรในลิโกเนียร์?",
    "context": "CREATE TABLE table_name_11 (school VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT SUM(total) FROM table_name_71 WHERE years = \"2000–2012\" AND silver > 2 AND bronze = 0 AND rank < 70",
    "question_en": "What is the total in 2000–2012, with more than 2 silver, 0 Bronze, and a Rank smaller than 70?",
    "question_th": "ยอดรวมในปี 2000–2012 เป็นเท่าใด โดยมีมากกว่า 2 เหรียญเงิน 0 เหรียญทองแดง และอันดับน้อยกว่า 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_en": "What nation scored 7 in shooting in 1920?",
    "question_th": "ประเทศใดได้คะแนน 7 ในการยิงปืนในปี 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_en": "What's the average Round of Pete Laframboise?",
    "question_th": "รอบเฉลี่ยของ Pete Laframboise คือเท่าไร?",
    "context": "CREATE TABLE table_name_59 (round INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_97 WHERE pick = 100",
    "question_en": "What country is Pick 100?",
    "question_th": "Pick 100 คือประเทศอะไร?",
    "context": "CREATE TABLE table_name_97 (nationality VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT rowers FROM table_name_50 WHERE country = \"great britain\"",
    "question_en": "Who were the rowers for Great britain?",
    "question_th": "ใครคือฝีพายของบริเตนใหญ่?",
    "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_en": "What country has a time of 7:28.66 and a rank less than 3?",
    "question_th": "ประเทศใดมีเวลา 7:28.66 และอันดับต่ำกว่า 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_en": "What are the notes when the time was 7:42.92 and the rank is more than 1?",
    "question_th": "โน้ตเมื่อเวลา 7:42.92 และอันดับมากกว่า 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_en": "What's the score of Tie number 11?",
    "question_th": "เสมอหมายเลข 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_en": "What's the tie number when the away team was Mansfield Town?",
    "question_th": "แมนส์ฟิลด์ ทาวน์ เสมอกันเลขไหน?",
    "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_en": "What date was Newcastle United the away team?",
    "question_th": "นิวคาสเซิ่ล ยูไนเต็ด จัดทีมเยือนวันไหน?",
    "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_en": "Who was the away team when Brighton & Hove Albion was home?",
    "question_th": "ทีมเยือนเมื่อไบรท์ตัน แอนด์ โฮฟ อัลเบี้ยน กลับบ้านคือใคร?",
    "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_en": "What's the tie number of Chelsea when they were home?",
    "question_th": "เชลซีตอนอยู่บ้านเสมอกันคือเท่าไร?",
    "context": "CREATE TABLE table_name_96 (tie_no VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_10 WHERE home_team = \"orient\"",
    "question_en": "What's the score when Orient was home?",
    "question_th": "สกอร์ตอนโอเรียนท์ถึงบ้านเป็นไงบ้าง?",
    "context": "CREATE TABLE table_name_10 (score VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT designer FROM table_name_42 WHERE restaurant_name = \"the citizen\"",
    "question_en": "What designer has a restaurant named The Citizen?",
    "question_th": "ดีไซเนอร์คนไหนมีร้านอาหารชื่อ 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_en": "What is the original name of the place by designer Glen Peloso with a Location of n/a?",
    "question_th": "ชื่อเดิมของสถานที่โดยนักออกแบบ Glen Peloso โดยมีสถานที่ตั้งไม่มีข้อมูลคืออะไร",
    "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_en": "What chef that has a location in Toronto, ON, that has n/a as the original name, and a Restaurant Name of Bagel World?",
    "question_th": "เชฟคนไหนที่มีที่ตั้งในโตรอนโต รัฐออนตาริโอ ซึ่งไม่มีชื่อเดิม และชื่อร้านอาหารของ 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_en": "What is the name of the restaurant originally named Essence?",
    "question_th": "ร้านอาหารเดิมชื่อเอสเซ้นส์ชื่ออะไร?",
    "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_en": "What designer has a restaurant named of Cork & Cabbage?",
    "question_th": "ดีไซเนอร์คนไหนมีร้านอาหารชื่อ 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_en": "Which athlete had a six month suspension from IIHF?",
    "question_th": "นักกีฬาคนใดที่ถูกระงับการแข่งขัน 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_en": "How many bronze medals did the team have with 0 total silver and less than 3 total medals?",
    "question_th": "ทีมได้เหรียญทองแดงทั้งหมดกี่เหรียญ รวม 0 เหรียญเงิน และน้อยกว่า 3 เหรียญ?",
    "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_en": "What is the total number of bronze medals for the team with more than 4 silver and less than 30 gold medals?",
    "question_th": "จำนวนเหรียญทองแดงรวมของทีมที่ได้มากกว่า 4 เหรียญเงินและน้อยกว่า 30 เหรียญทองคือเท่าใด",
    "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_en": "what is the least penalty points when the judge e is 72.22?",
    "question_th": "จุดโทษน้อยที่สุดเมื่อผู้ตัดสิน e คือ 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_en": "what is the judge e when judge c is 56.67 and the rider is dag albert?",
    "question_th": "ผู้พิพากษา e คืออะไรเมื่อผู้พิพากษา c เท่ากับ 56.67 และผู้ขับขี่คือ 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_en": "what is the nation when the penalty points is less than 40.2 and judge e is 82.22?",
    "question_th": "ชาติอะไรเมื่อจุดโทษน้อยกว่า 40.2 และตัดสิน e เท่ากับ 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_en": "what is the rank when judge m is 65.93 and judge e is 65.56?",
    "question_th": "อันดับคือเมื่อผู้พิพากษา m เท่ากับ 65.93 และผู้พิพากษา e เท่ากับ 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_en": "what is the horse that ranked 69?",
    "question_th": "ม้าตัวไหนอันดับที่ 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_en": "Name the Production Number with a Director of friz freleng, and a Title of wacky worm, the?",
    "question_th": "ตั้งชื่อหมายเลขการผลิตด้วยผู้อำนวยการของ friz freleng และชื่อเรื่องของหนอนแปลกประหลาด 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_en": "Name the Series  with Production Number of 95, br 1254?",
    "question_th": "ตั้งชื่อซีรี่ส์ด้วยจำนวนการผลิต 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_en": "Name the Series with a Title of elmer's pet rabbit?",
    "question_th": "ตั้งชื่อซีรีส์ด้วยชื่อกระต่ายสัตว์เลี้ยงของเอลเมอร์ใช่ไหม?",
    "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_en": "What is the Boarding/Day value for a type of old and house of Saunderites?",
    "question_th": "ค่าขึ้นเครื่อง/วันสำหรับประเภทบ้านเก่าและบ้านของชาวซอนเดอไรต์คือเท่าไร?",
    "context": "CREATE TABLE table_name_36 (boarding_day VARCHAR, type VARCHAR, house VARCHAR)"
  },
  {
    "answer": "SELECT house FROM table_name_60 WHERE abbr = \"g\"",
    "question_en": "Which house has an abbreviation of G?",
    "question_th": "บ้านไหนมีอักษรย่อว่า G?",
    "context": "CREATE TABLE table_name_60 (house VARCHAR, abbr VARCHAR)"
  },
  {
    "answer": "SELECT house FROM table_name_31 WHERE boarding_day = \"day\"",
    "question_en": "Which house has a Boarding/Day value of Day?",
    "question_th": "บ้านหลังใดมีค่าค่าการขึ้นเครื่อง/วันเป็นวัน",
    "context": "CREATE TABLE table_name_31 (house VARCHAR, boarding_day VARCHAR)"
  },
  {
    "answer": "SELECT house FROM table_name_24 WHERE abbr = \"d\"",
    "question_en": "Which house has an abbreviation of D?",
    "question_th": "บ้านใดมีอักษรย่อว่า ง.",
    "context": "CREATE TABLE table_name_24 (house VARCHAR, abbr VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_91 WHERE colour = \"dark blue\"",
    "question_en": "Which type has a color of Dark Blue?",
    "question_th": "ชนิดใดมีสีเป็นสีน้ำเงินเข้ม?",
    "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_en": "what is the total tackles when the games is 16 and solo is 88?",
    "question_th": "การสกัดบอลทั้งหมดเมื่อเกมอายุ 16 ปี และโซโลได้ 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_en": "what is the team when sacks is 0 and the season is earlier than 1998?",
    "question_th": "ทีมจะเป็นอย่างไรเมื่อกระสอบเป็น 0 และฤดูกาลเร็วกว่าปี 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_en": "what is solo when total tackles is 6?",
    "question_th": "Solo จะเป็นอย่างไรเมื่อจำนวนการโหม่งทั้งหมดคือ 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_en": "How many FA cup goals did dick taylor score in the year that he had 0 league goals?",
    "question_th": "ดิ๊ก เทย์เลอร์ ทำประตูในเอฟเอ คัพ ได้กี่ประตูในปีที่เขาเสีย 0 ประตูในลีก?",
    "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_en": "What is the goals number of goals for the player who had 2 league cup apps and 0 FA cup goals?",
    "question_th": "จำนวนประตูของผู้เล่นที่ลงเล่นในลีกคัพ 2 นัด และเอฟเอ คัพ 0 ประตูคือเท่าไร?",
    "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_en": "What was the result of week 11?",
    "question_th": "สัปดาห์ที่ 11 ผลลัพธ์เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_76 (result VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(time) FROM table_name_32 WHERE name = \"lisbeth trickett\"",
    "question_en": "What is Lisbeth Trickett's time?",
    "question_th": "เวลาของ Lisbeth Trickett คืออะไร?",
    "context": "CREATE TABLE table_name_32 (time VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT AVG(rank) FROM table_name_61 WHERE time < 57.05",
    "question_en": "What is the average rank for 57.05 time?",
    "question_th": "อันดับเฉลี่ย 57.05 เท่าเท่าไหร่?",
    "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_en": "What lane is from Great Britain and a 57.78 time?",
    "question_th": "เลนใดมาจากบริเตนใหญ่และเวลา 57.78?",
    "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_en": "Who's the owner of Sanam Pao as the broadcasting area?",
    "question_th": "เจ้าของสนามเป้าเป็นพื้นที่กระจายเสียงคือใคร?",
    "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_en": "Who's the owner of channel 3/32 (vhf/uhf) broadcasting 24-hours?",
    "question_th": "ใครคือเจ้าของช่อง 3/32 (vhf/uhf) ออกอากาศ 24 ชั่วโมง?",
    "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_en": "Who's the owner of Thai PBS?",
    "question_th": "ใครคือเจ้าของไทยพีบีเอส?",
    "context": "CREATE TABLE table_name_28 (owner VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT network FROM table_name_99 WHERE name = \"bbtv channel 7\"",
    "question_en": "What's the network of BBTV Channel 7?",
    "question_th": "BBTV ช่อง 7 มีเครือข่ายอะไรบ้าง?",
    "context": "CREATE TABLE table_name_99 (network VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_65 WHERE channel___bkk__ = \"29 (uhf)\"",
    "question_en": "What's the name of Channel 29 (UHF)?",
    "question_th": "ช่อง 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_en": "What's the broadcasting hours of NBT?",
    "question_th": "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_en": "Who were the runners-up in the tournament on May 26, 1996?",
    "question_th": "ใครคือรองชนะเลิศในการแข่งขันเมื่อวันที่ 26 พฤษภาคม พ.ศ. 2539?",
    "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_en": "Which tournament had a runner-up of Val Skinner?",
    "question_th": "ทัวร์นาเมนต์ใดที่มีรองแชมป์ 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_en": "What was Rosie's winning score on Apr 29, 2001?",
    "question_th": "คะแนนชนะของโรซี่เมื่อวันที่ 29 เมษายน พ.ศ. 2544 เป็นเท่าใด",
    "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_en": "What was the release date of the feature with a production number of 1018, BR 1352?",
    "question_th": "วันที่วางจำหน่ายของฟีเจอร์นี้โดยมีหมายเลขการผลิต 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_en": "what is the name when the constituency number is 150?",
    "question_th": "เขตเลือกตั้งคือ 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_en": "what is the total number of electorates (2009) when the name is govindpura?",
    "question_th": "จำนวนผู้มีสิทธิเลือกตั้งทั้งหมด (2552) ในชื่อ 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_en": "What is the rank of Si Sa Ket province with less than 14 bronze medals?",
    "question_th": "จังหวัดศรีสะเกษได้ไม่ถึง 14 เหรียญทองแดง อันดับเท่าไหร่?",
    "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_en": "How many total medals does rank 3 with less than 40 silver medals?",
    "question_th": "อันดับที่ 3 เหรียญเงินไม่ถึง 40 เหรียญมีทั้งหมดกี่เหรียญ?",
    "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_en": "How many average gold medals for provinces higher than rank 9 with 25 bronzes?",
    "question_th": "เหรียญทองเฉลี่ยสำหรับจังหวัดที่สูงกว่าอันดับ 9 ด้วย 25 เหรียญทองแดง มีกี่เหรียญทอง?",
    "context": "CREATE TABLE table_name_26 (gold INTEGER, bronze VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT engine_code FROM table_name_76 WHERE model = \"xdrive25i\"",
    "question_en": "What is the engine code for the Xdrive25i?",
    "question_th": "รหัสเครื่องยนต์ของ 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_en": "What is the torque on the model with power of hp (kw; ps)@5800?",
    "question_th": "แรงบิดของรุ่นที่มีกำลัง 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_en": "What is the torque when engine code is N46B20 and power is ps (kw; hp)@6400?",
    "question_th": "แรงบิดเมื่อรหัสเครื่องยนต์คือ N46B20 และกำลังเป็น 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_en": "What is the power for the model xdrive28i sdrive28i?",
    "question_th": "ขุมพลังของรุ่น xdrive28i sdrive28i คืออะไร?",
    "context": "CREATE TABLE table_name_18 (power VARCHAR, model VARCHAR)"
  },
  {
    "answer": "SELECT model FROM table_name_27 WHERE years = \"2011 2012-\"",
    "question_en": "What is the model that was made in the years 2011 2012-?",
    "question_th": "รุ่นที่ผลิตในปี 2011 2012- คืออะไร?",
    "context": "CREATE TABLE table_name_27 (model VARCHAR, years VARCHAR)"
  },
  {
    "answer": "SELECT engine_code FROM table_name_9 WHERE model = \"xdrive35i\"",
    "question_en": "What is the engine code for the model  xdrive35i?",
    "question_th": "รหัสเครื่องยนต์ของรุ่น 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_en": "What is the Athlete from Burbank High School?",
    "question_th": "นักกีฬาจาก 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_en": "What is the Date of the Athlete from Ferris High School?",
    "question_th": "วันที่ของนักกีฬาจากโรงเรียนมัธยม Ferris คืออะไร?",
    "context": "CREATE TABLE table_name_17 (date VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT athlete FROM table_name_67 WHERE city = \"riverbank, california\"",
    "question_en": "What is the Athlete from Riverbank, California?",
    "question_th": "นักกีฬาจากริเวอร์แบงค์ แคลิฟอร์เนียคืออะไร",
    "context": "CREATE TABLE table_name_67 (athlete VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_63 WHERE school = \"marshfield high school\"",
    "question_en": "What is the Date of the Player from Marshfield High School?",
    "question_th": "วันที่ของผู้เล่นจาก 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_en": "What is the School of the Player with a Date of June 4, 2011?",
    "question_th": "โรงเรียนของผู้เล่นที่มีวันที่ 4 มิถุนายน 2554 คืออะไร?",
    "context": "CREATE TABLE table_name_72 (school VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT episodes FROM table_name_62 WHERE tv_station = \"tbs\" AND japanese_title = \"クロサギ\"",
    "question_en": "What episodes was the show クロサギ shown on TBS?",
    "question_th": "รายการ Кロサギ ฉายทาง 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_en": "What is the Romanji Title of a show on TBS with less than 11 episodes?",
    "question_th": "ชื่อ Romanji ของรายการทาง TBS ที่มีน้อยกว่า 11 ตอนคืออะไร",
    "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 = \"クロサギ\"",
    "question_en": "What is the total number of episodes for クロサギ?",
    "question_th": "Кロサギมีทั้งหมดกี่ตอนคะ?",
    "context": "CREATE TABLE table_name_13 (episodes VARCHAR, japanese_title VARCHAR)"
  },
  {
    "answer": "SELECT average_ratings FROM table_name_24 WHERE japanese_title = \"プリマダム\"",
    "question_en": "What are the average ratings for プリマダム?",
    "question_th": "คะแนนเฉลี่ยของ プラマダム คืออะไร?",
    "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_en": "Which Score-Final has a Rank-Final of 2, and a Year smaller than 2008?",
    "question_th": "Score-Final ใดที่มีอันดับ Final ที่ 2 และหนึ่งปีที่น้อยกว่าปี 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_en": "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?",
    "question_th": "กี่ปีที่มีอันดับรอบชิงชนะเลิศน้อยกว่า 7 และคำอธิบายการแข่งขันของเกมโอลิมปิก และคะแนนรอบชิงชนะเลิศน้อยกว่า 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_en": "Which Score-Final has an Apparatus of floor exercise?",
    "question_th": "Score-Final ใดมีอุปกรณ์ออกกำลังกายบนพื้น?",
    "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_en": "Which Year is the first one that has an Apparatus of uneven bars, and a Rank-Final smaller than 3?",
    "question_th": "ปีไหนเป็นปีแรกที่มีอุปกรณ์แท่งไม่เท่ากันและมีอันดับสุดท้ายน้อยกว่า 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_en": "Who has a constituency of 84?",
    "question_th": "ใครมีเขตเลือกตั้ง 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_en": "What the round with the time 1:15?",
    "question_th": "อะไรจะเกิดขึ้นกับเวลา 1:15?",
    "context": "CREATE TABLE table_name_99 (round INTEGER, time VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_15 WHERE opponent = \"lyoto machida\"",
    "question_en": "What's the location when the opponent was Lyoto Machida?",
    "question_th": "ตำแหน่งไหนที่คู่ต่อสู้คือเลียวโตะ มาชิดะ?",
    "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_en": "What is the 2007 result when the 2010 result was 2r, at the US Open?",
    "question_th": "ผลการแข่งขันในปี 2550 คืออะไรเมื่อผลการแข่งขันปี 2553 อยู่ที่ 2r ที่ 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_en": "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?",
    "question_th": "คะแนน A ของบุคคลที่มีคะแนนรวมน้อยกว่า 15.95 ตำแหน่งน้อยกว่า 7 และคะแนน B มากกว่า 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_en": "What is the B score for the person with a total of 16.325 and an A score of more than 7.3?",
    "question_th": "คะแนน B ของบุคคลที่มีคะแนนรวม 16.325 และคะแนน A มากกว่า 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_en": "What is the Position of the person with a total less than 16.65 and an A score of 7.4?",
    "question_th": "ตำแหน่งบุคคลที่มีคะแนนรวมน้อยกว่า 16.65 และคะแนน A 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_en": "What's the network in Pachuca, Hidalgo?",
    "question_th": "เครือข่ายใน Pachuca, Hidalgo คืออะไร?",
    "context": "CREATE TABLE table_name_14 (network VARCHAR, city_of_license VARCHAR)"
  },
  {
    "answer": "SELECT network FROM table_name_1 WHERE d_erp = \"•\" AND callsign = \"xhtm\"",
    "question_en": "What's the network that has a callsign of XHTM and a D ERP of •?",
    "question_th": "เครือข่ายใดที่มีสัญญาณเรียก XHTM และ D ERP เป็น •?",
    "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_en": "What's the city of license having a D ERP of 100kw?",
    "question_th": "เมืองที่ได้รับใบอนุญาตซึ่งมี D ERP 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_en": "What's the D ERP in San Martin Texmelucan, Puebla?",
    "question_th": "D ERP ใน 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_en": "What district has 98 constituencies?",
    "question_th": "เขตใดมี 98 เขตเลือกตั้ง?",
    "context": "CREATE TABLE table_name_54 (district VARCHAR, constituency_number VARCHAR)"
  },
  {
    "answer": "SELECT MAX(points) FROM table_name_70 WHERE year = \"2012\"",
    "question_en": "What are the highest points with 2012 as the year?",
    "question_th": "จุดสูงสุดโดยปี 2555 คืออะไร?",
    "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_en": "What are the highest matches that have points less than 88, and goals less than 0?",
    "question_th": "การแข่งขันสูงสุดที่มีคะแนนน้อยกว่า 88 และประตูน้อยกว่า 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_en": "How many tries have goals greater than 0?",
    "question_th": "ความพยายามกี่ครั้งมีเป้าหมายที่มากกว่า 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_en": "What are the lowest points with 2013 as the year, and goals less than 0?",
    "question_th": "อะไรคือจุดต่ำสุดโดยปี 2013 และเป้าหมายน้อยกว่า 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_en": "How many goals have 28 as the points, and matches greater than 11?",
    "question_th": "มีกี่ประตูที่มีคะแนนเป็น 28 และแมตช์ที่มากกว่า 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_en": "Which Laps have a Rider of russell holland, and a Grid smaller than 10?",
    "question_th": "รอบใดมี Rider of russell holland และ Grid เล็กกว่า 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_en": "Which Laps have a Bike of kawasaki zx-6r, and a Time of +26.891?",
    "question_th": "รอบใดที่มีรถ kawasaki zx-6r และเวลา +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_en": "Which Rider has a Time of retirement, and a Grid larger than 5?",
    "question_th": "ไรเดอร์คนไหนมีเวลาเกษียณและมีกริดมากกว่า 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_en": "Which Rider has less than 18 laps, and a Grid of 24?",
    "question_th": "ไรเดอร์คนไหนมีรอบน้อยกว่า 18 รอบและมีตาราง 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_en": "What is the date of the 2nd round 2nd leg?",
    "question_th": "รอบ 2 รอบ 2 วันที่เท่าไหร่คะ?",
    "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_en": "What is the Round against Gillingham with an Against smaller than 3?",
    "question_th": "รอบกับจิลลิงแฮมที่มีค่าต่อแต้มน้อยกว่า 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_en": "What's the draw that's played less than 36 and has 42 points?",
    "question_th": "งวดที่เล่นน้อยกว่า 36 มี 42 แต้ม คืออะไร?",
    "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_en": "What the lost that has less than 10 points and less than 38 goals scored?",
    "question_th": "สิ่งที่แพ้ที่มีน้อยกว่า 10 คะแนนและทำได้น้อยกว่า 38 ประตู?",
    "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_en": "what the most lost for Alianza with a draw less than 6?",
    "question_th": "อลิอันซ่าแพ้อะไรมากที่สุดโดยเสมอน้อยกว่า 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_en": "What the lost in place less than 3 and having more than 63 goals scored?",
    "question_th": "แพ้น้อยกว่า 3 ประตูและยิงได้มากกว่า 63 ประตูล่ะ?",
    "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 = \"ümit karan\" AND rate > 0.58",
    "question_en": "What is the total Rank for ümit karan when Apps is more than 39 and Rate is more than 0.58?",
    "question_th": "อันดับรวมสำหรับ ümit karan เมื่อแอปมากกว่า 39 และอัตรามากกว่า 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_en": "When rank is more than 10, what is the total rate?",
    "question_th": "เมื่ออันดับเกิน 10 อัตรารวมเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_43 (rate INTEGER, rank INTEGER)"
  },
  {
    "answer": "SELECT winning_amount FROM table_name_51 WHERE contestant_name = \"himesh reshammiya\"",
    "question_en": "What winning amount has himesh reshammiya as the contestant name?",
    "question_th": "ฮิเมช เรชามมิยะเป็นชื่อผู้เข้าแข่งขันที่ชนะรางวัลจำนวนเท่าใด",
    "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_en": "What eliminated contestant has October 10, 2009 as the date premiered?",
    "question_th": "ผู้เข้าแข่งขันที่ถูกคัดออกมีวันที่ 10 ตุลาคม พ.ศ. 2552 เป็นวันฉายรอบปฐมทัศน์?",
    "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_en": "What date premiered (2009) has kareena kapoor as the contestant name?",
    "question_th": "ฉายรอบปฐมทัศน์วันไหน (2552) มีคารีณา กาปูร์เป็นชื่อผู้เข้าแข่งขัน?",
    "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_en": "What episode # has govinda & david dhawan as the eliminated contestant?",
    "question_th": "#ตอนไหนที่โกวินดา & เดวิด ดาวัน เป็นผู้เข้าแข่งขันตกรอบ?",
    "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_en": "What is the winning amount that has May 30, 2009 as the date premiered?",
    "question_th": "จำนวนเงินที่ชนะในวันที่ 30 พฤษภาคม 2552 เป็นวันที่เปิดตัวคือเท่าใด",
    "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_en": "What is the Reserved For of Lahar?",
    "question_th": "ลาฮาร์สงวนไว้เพื่ออะไร?",
    "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_en": "What is the least clock speed (MHz) with January 1986 as introduced?",
    "question_th": "ความเร็วสัญญาณนาฬิกาน้อยที่สุด (MHz) ในเดือนมกราคม 1986 ตามที่แนะนำคือเท่าใด",
    "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_en": "With April 1986 as the introduced, what is the least clock speed (MHz)?",
    "question_th": "ตั้งแต่เดือนเมษายน พ.ศ. 2529 เป็นต้นมา ความเร็วสัญญาณนาฬิกา (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_en": "The Powerbook 100 model has what processor?",
    "question_th": "Powerbook 100 รุ่นมีโปรเซสเซอร์อะไร",
    "context": "CREATE TABLE table_name_58 (processor VARCHAR, model VARCHAR)"
  },
  {
    "answer": "SELECT discontinued FROM table_name_45 WHERE model = \"lisa 2\"",
    "question_en": "When was the Lisa 2 model discontinued?",
    "question_th": "รุ่น Lisa 2 เลิกผลิตเมื่อไหร่?",
    "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_en": "Who are the rowers with a time of 6:41.45 and notes of FA?",
    "question_th": "ฝีพายเวลา 6:41.45 น. และบันทึกของ 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_en": "Who are the rowers from the United States?",
    "question_th": "ใครคือนักพายเรือจากสหรัฐอเมริกา?",
    "context": "CREATE TABLE table_name_6 (rowers VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_76 WHERE country = \"ukraine\"",
    "question_en": "What time did the team from Ukraine have?",
    "question_th": "ทีมจากยูเครนแข่งกี่โมง?",
    "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_en": "What is the rank for the team that had a time of 6:41.45 and note FA?",
    "question_th": "ทีมที่ทำเวลาได้ 6:41.45 น. และ เอฟเอ อันดับเท่าไหร่?",
    "context": "CREATE TABLE table_name_26 (rank INTEGER, notes VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(rank) FROM table_name_77 WHERE country = \"australia\"",
    "question_en": "What rank was the team from Australia?",
    "question_th": "ทีมจากออสเตรเลียอยู่อันดับไหน?",
    "context": "CREATE TABLE table_name_77 (rank VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT MAX(game) FROM table_name_6 WHERE date = \"july 31\"",
    "question_en": "What is the highest game that has July 31 as the date?",
    "question_th": "เกมใดที่มีวันที่ 31 กรกฎาคม เป็นวันที่สูงที่สุด?",
    "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_en": "What is the total of the River Mile in Greenup, Kentucky?",
    "question_th": "River Mile ใน 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_en": "What is the River Mile with a RDB lock side and a pool length of 55.4?",
    "question_th": "River Mile ที่มีด้านล็อค RDB และความยาวสระ 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_en": "What is the highest River Mile that has a pool length of 42.2 miles or a lock/lift drop of 21 feet?",
    "question_th": "River Mile ที่สูงที่สุดที่มีความยาวสระน้ำ 42.2 ไมล์หรือความสูงล็อค/ลิฟท์ 21 ฟุตคืออะไร?",
    "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_en": "What is the location of the river mile that is larger than 938.9, and Olmsted Locks and Dam?",
    "question_th": "ที่ตั้งของแม่น้ำไมล์ที่มีขนาดใหญ่กว่า 938.9 และ 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_en": "What is the lowest ranking for 8:13.67?",
    "question_th": "อันดับต่ำสุดสำหรับ 8:13.67 คืออะไร?",
    "context": "CREATE TABLE table_name_4 (rank INTEGER, time VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_57 WHERE country = \"kazakhstan\"",
    "question_en": "What is the time for Kazakhstan?",
    "question_th": "คาซัคสถานกี่โมง?",
    "context": "CREATE TABLE table_name_57 (time VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_name_8 WHERE country = \"south africa\"",
    "question_en": "What are the notes for South Africa?",
    "question_th": "หมายเหตุสำหรับแอฟริกาใต้มีอะไรบ้าง",
    "context": "CREATE TABLE table_name_8 (notes VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_29 WHERE rank > 5",
    "question_en": "What country is ranked higher than 5?",
    "question_th": "ประเทศใดมีอันดับสูงกว่า 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_en": "What is the total rank and fc notes from South Africa?",
    "question_th": "อันดับและบันทึก fc ทั้งหมดจากแอฟริกาใต้คือเท่าไร?",
    "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_en": "From what series was the title with a production number of 1614 that was directed by Friz Freleng?",
    "question_th": "ชื่อซีรีส์ใดที่มีจำนวนการผลิต 1614 ที่กำกับโดย 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_en": "What is the Result of the event with a Record of 1-3?",
    "question_th": "ผลลัพธ์ของเหตุการณ์ที่มีสถิติ 1-3 คืออะไร?",
    "context": "CREATE TABLE table_name_39 (result VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_61 WHERE record = \"5-4\"",
    "question_en": "What is the Round of the event with a Record of 5-4?",
    "question_th": "รอบของงานที่มีสถิติ 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_en": "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?",
    "question_th": "ละติจูดสำหรับมิเตอร์รถตู้ที่มีพื้นที่ (ตร.ม.) ใหญ่กว่า 35.747 น้ำ (ตร.ม.) เป็น 0 และ GEO ID เล็กกว่า 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_en": "What was the population fo the township with a Latitude of 48.853051, and a Water (sqmi) smaller than 0.9590000000000001?",
    "question_th": "ประชากรของเมืองที่มีละติจูด 48.853051 และน้ำ (ตร.ม.) เล็กกว่า 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_en": "Van Meter has a water(sqmi) of 0 and a longitude larger than -98.444062, what was their highest ANSI code?",
    "question_th": "Van Meter มีน้ำ(ตร.ม.) เท่ากับ 0 และลองจิจูดมากกว่า -98.444062 รหัส ANSI สูงสุดคืออะไร",
    "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_en": "What was the lowest water(sqmi) in the county of dickey where the longitude was smaller than -98.444062?",
    "question_th": "น้ำต่ำสุด (ตารางเมตร) ในเขต Dickey ซึ่งลองจิจูดเล็กกว่า -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_en": "Who is the coach for the Northamptonshire Steelbacks?",
    "question_th": "ใครคือโค้ชของทีม Northamptonshire Steelbacks?",
    "context": "CREATE TABLE table_name_36 (coach VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_36 WHERE location = \"leicester\"",
    "question_en": "Which team is located in Leicester?",
    "question_th": "ทีมไหนอยู่เลสเตอร์?",
    "context": "CREATE TABLE table_name_36 (team VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_5 WHERE county = \"sussex\"",
    "question_en": "Which team is in Sussex county?",
    "question_th": "ทีมไหนอยู่เขตซัสเซ็กซ์?",
    "context": "CREATE TABLE table_name_5 (team VARCHAR, county VARCHAR)"
  },
  {
    "answer": "SELECT home_ground FROM table_name_96 WHERE location = \"canterbury\"",
    "question_en": "What is the home ground for the team located in Canterbury?",
    "question_th": "สนามเหย้าของทีมที่แคนเทอร์เบอรีคืออะไร?",
    "context": "CREATE TABLE table_name_96 (home_ground VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT captain FROM table_name_28 WHERE coach = \"giles white\"",
    "question_en": "Who is the captain of the team coached by Giles White?",
    "question_th": "ใครคือกัปตันทีมที่ไจล์ส ไวท์เป็นโค้ช?",
    "context": "CREATE TABLE table_name_28 (captain VARCHAR, coach VARCHAR)"
  },
  {
    "answer": "SELECT division FROM table_name_68 WHERE team = \"derbyshire falcons\"",
    "question_en": "Which division is the Derbyshire Falcons in?",
    "question_th": "Derbyshire Falcons อยู่ดิวิชั่นใด?",
    "context": "CREATE TABLE table_name_68 (division VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT tie_no FROM table_name_52 WHERE home_team = \"derby county\"",
    "question_en": "Which tie number had a home team of Derby County?",
    "question_th": "หมายเลขเสมอกันทีมเหย้าของ ดาร์บี้ เคาน์ตี้ ?",
    "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_en": "What was the score of the tie with an away team of Stoke City?",
    "question_th": "เสมอกับทีมเยือนสโต๊คซิตี้สกอร์เท่าไหร่?",
    "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_en": "Which Artist has a Draw smaller than 14, and Points less than 73, and a Language of turkish?",
    "question_th": "ศิลปินคนใดที่มีการวาดน้อยกว่า 14 และคะแนนน้อยกว่า 73 และภาษาตุรกี",
    "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_en": "How many points does mia martini have?",
    "question_th": "เมียมาร์ตินี่มีกี่คะแนน?",
    "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_en": "Which Artist has an English translation of all this is music?",
    "question_th": "ศิลปินคนไหนมีคำแปลภาษาอังกฤษเกี่ยวกับดนตรีทั้งหมดนี้?",
    "context": "CREATE TABLE table_name_92 (artist VARCHAR, english_translation VARCHAR)"
  },
  {
    "answer": "SELECT athlete FROM table_name_96 WHERE place = \"grenoble\"",
    "question_en": "What athlete has a Grenoble place?",
    "question_th": "นักกีฬาคนไหนมีตำแหน่งเกรอน็อบล์?",
    "context": "CREATE TABLE table_name_96 (athlete VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT pick FROM table_name_76 WHERE college = \"syracuse\"",
    "question_en": "What is the Pick number of the Player from Syracuse?",
    "question_th": "หมายเลขเลือกของผู้เล่นจาก 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_en": "What is the Offensive Guard Player from Mississippi State College with a Pick number larter than 44?",
    "question_th": "ผู้เล่น Offensive Guard จาก Mississippi State College ที่มีหมายเลข Pick มากกว่า 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_en": "What is the College of the Pick from Denver Broncos?",
    "question_th": "College of the Pick จาก 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_en": "What's the 2008 Status of Rosa Delauro?",
    "question_th": "สถานะปี 2008 ของ Rosa Delauro คืออะไร?",
    "context": "CREATE TABLE table_name_15 (democratic VARCHAR)"
  },
  {
    "answer": "SELECT incumbent FROM table_name_63 WHERE republican = \"bo itshaky\"",
    "question_en": "Who was the incumbent when Bo Itshaky was the Republican?",
    "question_th": "ใครเป็นผู้ดำรงตำแหน่งเมื่อ Bo Itshaky เป็นพรรครีพับลิกัน?",
    "context": "CREATE TABLE table_name_63 (incumbent VARCHAR, republican VARCHAR)"
  },
  {
    "answer": "SELECT republican FROM table_name_49 WHERE district > 4",
    "question_en": "Who was the Republican in the district more than 4?",
    "question_th": "ใครคือพรรครีพับลิกันในเขตมากกว่า 4?",
    "context": "CREATE TABLE table_name_49 (republican VARCHAR, district INTEGER)"
  },
  {
    "answer": "SELECT republican FROM table_name_27 WHERE green = \"harold burbank\"",
    "question_en": "Who was the Republican when the green was Harold Burbank?",
    "question_th": "ใครคือพรรครีพับลิกันเมื่อกรีนคือแฮโรลด์เบอร์แบงก์?",
    "context": "CREATE TABLE table_name_27 (republican VARCHAR, green VARCHAR)"
  },
  {
    "answer": "SELECT democratic FROM table_name_40 WHERE incumbent = \"christopher shays\"",
    "question_en": "Who was the Democratic when then Incumbent was Christopher Shays?",
    "question_th": "ใครคือพรรคเดโมแครตในตอนนั้นผู้ดำรงตำแหน่งคือคริสโตเฟอร์ เชย์ส?",
    "context": "CREATE TABLE table_name_40 (democratic VARCHAR, incumbent VARCHAR)"
  },
  {
    "answer": "SELECT director FROM table_name_35 WHERE title = \"antz\"",
    "question_en": "Who is the director of Antz?",
    "question_th": "ใครเป็นผู้กำกับของ 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_en": "What studio has the director Philip Frank Messina?",
    "question_th": "สตูดิโอใดมีผู้กำกับ 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_en": "What are the club number for the first round?",
    "question_th": "รอบแรกเบอร์อะไรครับ?",
    "context": "CREATE TABLE table_name_43 (clubs VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT new_entries_this_round FROM table_name_82 WHERE clubs = \"48 → 32\"",
    "question_en": "when there were 48 → 32 clubs?",
    "question_th": "เมื่อไหร่จะมี 48 → 32 คลับ?",
    "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_en": "Where was the fight that took a time of 1:37?",
    "question_th": "การต่อสู้ที่ใช้เวลา 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_en": "What was the resolution of the fight against kiuma kunioku with a time of 15:00?",
    "question_th": "ปณิธานในการชก คิอุมะ คุนิโอกุ เมื่อเวลา 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_en": "What is the average number of bronze medals won by Poland?",
    "question_th": "โปแลนด์ได้เหรียญทองแดงโดยเฉลี่ยกี่เหรียญ?",
    "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_en": "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?",
    "question_th": "สวิตเซอร์แลนด์ได้รับเหรียญทองโดยเฉลี่ยเท่าใดเมื่ออยู่ในอันดับที่มากกว่าที่ 1 และได้รับน้อยกว่า 10 เหรียญทองแดง และมากกว่า 1 เหรียญเงิน",
    "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_en": "What is the rank when the col is larger than 0?",
    "question_th": "อันดับเมื่อคอลัมน์มีขนาดใหญ่กว่า 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_en": "What is the elevation of Vanuatu, when the rank is smaller than 3?",
    "question_th": "ระดับความสูงของวานูอาตูเมื่ออันดับน้อยกว่า 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_en": "What's the platform of Super Mario All-Stars?",
    "question_th": "แพลตฟอร์มของ 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_en": "What is the average number of losses when there are more than 4 wins, and the against matches is more than 1728?",
    "question_th": "จำนวนการสูญเสียโดยเฉลี่ยเมื่อชนะมากกว่า 4 ครั้งและการแข่งขันต่อมากกว่า 1,728 ครั้งเป็นเท่าใด",
    "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_en": "What is the total number of draws when there is 1 Win, and less than 1728 against matches?",
    "question_th": "จำนวนเสมอทั้งหมดเมื่อมีการชนะ 1 ครั้ง และน้อยกว่า 1,728 ต่อแมตช์คือเท่าใด?",
    "context": "CREATE TABLE table_name_41 (draws VARCHAR, wins VARCHAR, against VARCHAR)"
  },
  {
    "answer": "SELECT MAX(wins) FROM table_name_80 WHERE losses < 2",
    "question_en": "What is the highest number of wins when there are less than 2 losses?",
    "question_th": "จำนวนการชนะสูงสุดเมื่อแพ้น้อยกว่า 2 ครั้งคือเท่าใด",
    "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_en": "What is the highest number of losses for the Cobden club when there is less than 1 win?",
    "question_th": "จำนวนการแพ้สูงสุดสำหรับสโมสร Cobden เมื่อชนะน้อยกว่า 1 ครั้งคือเท่าใด",
    "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_en": "What is the average number of wins for the Terang Club, when there are less than 0 draws?",
    "question_th": "จำนวนชัยชนะโดยเฉลี่ยของ Terang Club เมื่อเสมอน้อยกว่า 0 คือเท่าใด?",
    "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_en": "Who was the 2nd place team when the location was Tulsa, OK before 1956?",
    "question_th": "ใครคือทีมอันดับที่ 2 เมื่อสถานที่คือทัลซา โอเค ก่อนปี 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_en": "In what Year is the Location of the Festival Koror, Palau?",
    "question_th": "ที่ตั้งของเทศกาลคอรอร์ ประเทศปาเลา ในปีใด?",
    "context": "CREATE TABLE table_name_9 (year INTEGER, location VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_40 WHERE iteration = \"10th\"",
    "question_en": "What is the Location of the 10th Iteration?",
    "question_th": "สถานที่ของการทำซ้ำครั้งที่ 10 คืออะไร?",
    "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_en": "How many counties have people before profit as the party, and a borough greater than 0?",
    "question_th": "มีกี่มณฑลที่มีคนก่อนได้กำไรเป็นพรรค และเขตเลือกตั้งที่มากกว่า 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_en": "How many counties have 2 as the total, 0 as the city with a town less than 1?",
    "question_th": "มีกี่มณฑลที่มีทั้งหมด 2 และ 0 เป็นเมืองที่มีเมืองน้อยกว่า 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_en": "What average city has a total less than 2, with a borough greater than 0?",
    "question_th": "เมืองใดโดยเฉลี่ยที่มีจำนวนรวมน้อยกว่า 2 โดยมีเขตเลือกตั้งมากกว่า 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_en": "What is the rank # of the swimmer in Lane 5?",
    "question_th": "นักว่ายน้ำอันดับ 5 ในเลน 5 คืออะไร?",
    "context": "CREATE TABLE table_name_21 (rank VARCHAR, lane VARCHAR)"
  },
  {
    "answer": "SELECT total_fat FROM table_name_33 WHERE smoke_point = \"°c ()\" AND polyunsaturated_fat = \"37g\"",
    "question_en": "What is the total fat with a smoke point of °c () and 37g of polyunsaturated fat?",
    "question_th": "ไขมันทั้งหมดที่มีจุดเกิดควัน °c () และไขมันไม่อิ่มตัวเชิงซ้อน 37 กรัมเป็นเท่าใด",
    "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_en": "What is the saturated fat with 28g of polyunsaturated fat?",
    "question_th": "ไขมันอิ่มตัวที่มีไขมันไม่อิ่มตัวเชิงซ้อน 28 กรัมคืออะไร?",
    "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_en": "What is the monounsaturated fat with 15g of saturated fat?",
    "question_th": "ไขมันไม่อิ่มตัวเชิงเดี่ยวกับไขมันอิ่มตัว 15 กรัม คืออะไร?",
    "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_en": "What is the saturated fat with a total fat of 100g and 11g of polyunsaturated fat?",
    "question_th": "ไขมันอิ่มตัวที่มีไขมันรวม 100 กรัม และไขมันไม่อิ่มตัวเชิงซ้อน 11 กรัม คืออะไร?",
    "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 = \"°c ()\" AND total_fat = \"100g\" AND polyunsaturated_fat = \"11g\" AND saturated_fat = \"14g\"",
    "question_en": "What is the monounsaturated fat with a smoke point of °c (), a total fat of 100g, 11g of polyunsaturated fat, and 14g of saturated fat?",
    "question_th": "ไขมันไม่อิ่มตัวเชิงเดี่ยวที่มีจุดเกิดควัน °c () ไขมันรวม 100 กรัม ไขมันไม่อิ่มตัวเชิงซ้อน 11 กรัม และไขมันอิ่มตัว 14 กรัม คืออะไร",
    "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 = \"°c ()\" AND total_fat = \"100g\" AND monounsaturated_fat = \"63g\"",
    "question_en": "What is the polyunsaturated fat with a smoke point of °c (), a total fat of 100g and 63g of monounsaturated fat?",
    "question_th": "ไขมันไม่อิ่มตัวเชิงซ้อนที่มีจุดเกิดควัน °c () คือไขมันรวม 100 กรัม และไขมันไม่อิ่มตัวเชิงเดี่ยว 63 กรัม",
    "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_en": "What is the win % of the 2003 atp world tour finals?",
    "question_th": "เปอร์เซ็นต์การชนะของเอทีพี เวิลด์ ทัวร์ รอบชิงชนะเลิศ ปี 2003 เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_14 (win__percentage VARCHAR)"
  },
  {
    "answer": "SELECT 2006 FROM table_name_64 WHERE 2011 = \"grand slam tournaments\"",
    "question_en": "What is the 2006 value of the 2011 grand slam tournaments?",
    "question_th": "มูลค่าการแข่งขันแกรนด์สแลมปี 2549 ปี 2554 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_64 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2007 FROM table_name_38 WHERE 2009 = \"1r\"",
    "question_en": "What is the 2007 value with a 1r in 2009?",
    "question_th": "ค่าปี 2550 ด้วย 1r ในปี 2552 เป็นเท่าใด",
    "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_en": "What is the 2007 value with a 4r in 2006, a 1r in 2004, and a 4r in 2009?",
    "question_th": "ค่าปี 2550 โดยมี 4r ในปี 2549, 1r ในปี 2547 และ 4r ในปี 2552 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_48 (Id VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_91 WHERE away_team = \"rivercity rage\"",
    "question_en": "who is the home team when the away team is rivercity rage?",
    "question_th": "เจ้าบ้านใครเป็นเมื่อทีมเยือนเดือดริเวอร์ซิตี้?",
    "context": "CREATE TABLE table_name_91 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_64 WHERE score = \"71-62\"",
    "question_en": "who is the winner when the score is 71-62?",
    "question_th": "เมื่อสกอร์ 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_en": "who is the winner when the home team is sioux falls storm and the year is earlier than 2012?",
    "question_th": "ใครเป็นผู้ชนะเมื่อเจ้าบ้านเจอพายุซูฟอลส์และปีนั้นเร็วกว่าปี 2555?",
    "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_en": "what is the score when the away team is rivercity rage?",
    "question_th": "เมื่อทีมเยือน ริเวอร์ซิตี้ เรจ ได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_99 (score VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT SUM(year) FROM table_name_37 WHERE score = \"59-32\"",
    "question_en": "what is the year when the score is 59-32?",
    "question_th": "คะแนนเป็น 59-32 ปีไหนคะ?",
    "context": "CREATE TABLE table_name_37 (year INTEGER, score VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_77 WHERE established > 1948",
    "question_en": "What is the venue established after 1948?",
    "question_th": "สถานที่จัดงานนี้ก่อตั้งขึ้นหลังปี 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_en": "What is the league established before 1930 with the rayo vallecano club?",
    "question_th": "ลีกที่ก่อตั้งก่อนปี 1930 กับสโมสร rayo vallecano คืออะไร?",
    "context": "CREATE TABLE table_name_26 (league VARCHAR, established VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT sport FROM table_name_64 WHERE club = \"rayo vallecano\"",
    "question_en": "What sport is the rayo vallecano club in?",
    "question_th": "สโมสร rayo vallecano อยู่ในกีฬาประเภทใด?",
    "context": "CREATE TABLE table_name_64 (sport VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT sport FROM table_name_46 WHERE club = \"cb estudiantes\"",
    "question_en": "What sport is the cb estudiantes club in?",
    "question_th": "สโมสร cb estudiantes อยู่ในกีฬาประเภทใด?",
    "context": "CREATE TABLE table_name_46 (sport VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_57 WHERE catalogue__number = \"cad 2014 cd\"",
    "question_en": "What is the label for CAD 2014 CD?",
    "question_th": "ฉลากสำหรับซีดี CAD 2014 คืออะไร",
    "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_en": "What is the format for the catalogue number GAD 2014 CD on July 6, 1998?",
    "question_th": "แคตตาล็อกหมายเลข GAD 2014 CD วันที่ 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_en": "How many wins are there when the draws are less than 0?",
    "question_th": "เสมอน้อยกว่า 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_en": "What are the most losses when there are 5 wins and draws less than 0?",
    "question_th": "อะไรคือความสูญเสียมากที่สุดเมื่อชนะ 5 ครั้งและเสมอน้อยกว่า 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_en": "What are the most wins of Terang with the draws less than 0?",
    "question_th": "ตรังชนะมากที่สุดโดยเสมอน้อยกว่า 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_en": "What is the lowest against when the draws are more than 0 and the losses are less than 3?",
    "question_th": "ค่าต่ำสุดเมื่อเทียบกับเมื่อเสมอมากกว่า 0 และขาดทุนน้อยกว่า 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_en": "What are the least losses of Warrnambool with more than 6 wins and less than 630 against?",
    "question_th": "อะไรคือความสูญเสียน้อยที่สุดของวอร์นัมบูลที่ชนะมากกว่า 6 ครั้งและแพ้น้อยกว่า 630 ครั้ง?",
    "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_en": "What are the draws of Cobden when there are more than 3 losses?",
    "question_th": "Cobden จะเสมอได้อย่างไรเมื่อแพ้มากกว่า 3 ครั้ง?",
    "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_en": "What average bronze has 0 as the silver, 17 as the rank, and a gold less than 1?",
    "question_th": "บรอนซ์โดยเฉลี่ยใดที่มี 0 เป็นเงิน 17 เป็นอันดับ และทองน้อยกว่า 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_en": "What is the lowest silver that has 2 as the bronze, with a total greater than 4?",
    "question_th": "เงินต่ำสุดที่มี 2 เป็นทองสัมฤทธิ์ โดยมียอดรวมมากกว่า 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_en": "How many bronzes have a total less than 11, with 11 as the rank, and a gold less than 1?",
    "question_th": "มีกี่เหรียญทองแดงที่มีคะแนนรวมน้อยกว่า 11 โดยมี 11 เป็นอันดับ และทองหนึ่งใบน้อยกว่า 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_en": "What is the memory with a socket g1 and a 1/1/6/9 turbo?",
    "question_th": "หน่วยความจำที่มีซ็อกเก็ต g1 และเทอร์โบ 1/1/6/9 คืออะไร?",
    "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_en": "What is the release date of the 6 mb L3 cache with the part number by80607005259aabx80607i7740qm?",
    "question_th": "วันที่วางจำหน่ายแคช L3 ขนาด 6 mb พร้อมหมายเลขชิ้นส่วน 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_en": "What was the lowest draw for Beathoven when the place was smaller than 16?",
    "question_th": "อะไรคือสิ่งที่เสมอต่ำสุดสำหรับบีโธเฟนเมื่ออันดับน้อยกว่า 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_en": "What Luca Barbarossa song had a draw smaller than 20?",
    "question_th": "เพลง Luca Barbarossa ใดที่มีคะแนนน้อยกว่า 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_en": "Who did they play at sec tournament?",
    "question_th": "พวกเขาเล่นใครในทัวร์นาเมนต์วินาที?",
    "context": "CREATE TABLE table_name_17 (opponent VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_10 WHERE record = \"9-1-0\"",
    "question_en": "Where was the game played when their record was 9-1-0?",
    "question_th": "เกมนี้เล่นที่ไหนเมื่อสถิติของพวกเขาคือ 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_en": "Who was the director of the episode written by Russell T Davies and James Moran?",
    "question_th": "ใครคือผู้กำกับตอนที่เขียนโดย Russell T Davies และ 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_en": "Which Points have Drawn of 1, and a Played larger than 14?",
    "question_th": "แต้มใดที่เสมอได้ 1 และแต้มที่เล่นมากกว่า 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_en": "Which Position has Drawn larger than 1, and a Played smaller than 14?",
    "question_th": "ตำแหน่งใดที่จั่วได้มากกว่า 1 และตำแหน่งที่เล่นน้อยกว่า 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_en": "Which Lost has Drawn larger than 1, and a Played larger than 14?",
    "question_th": "ผู้แพ้คนไหนที่จั่วได้มากกว่า 1 และไพ่ที่เล่นได้มากกว่า 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_en": "How much Lost has Points larger than 15, and a Name of ev pegnitz?",
    "question_th": "แพ้เท่าไหร่มีคะแนนมากกว่า 15 และมีชื่อของ 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_en": "what is the english translation when the artist is ann christine?",
    "question_th": "ศิลปินคือแอน คริสติน ภาษาอังกฤษแปลว่าอะไร?",
    "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_en": "What player was picked earlier than 126 by the Houston Oilers?",
    "question_th": "ผู้เล่นคนใดที่ถูกเลือกเร็วกว่า 126 โดย 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_en": "What college was picked later than 122 by the Boston Patriots?",
    "question_th": "วิทยาลัยใดที่ได้รับเลือกหลังจาก 122 โดย 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_en": "what is the to par for geoff ogilvy?",
    "question_th": "เจฟฟ์ โอกิลวีจะได้พาร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_65 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_88 WHERE player = \"geoff ogilvy\"",
    "question_en": "what is the country for geoff ogilvy?",
    "question_th": "เจฟฟ์ โอกิลวี่อยู่ประเทศอะไร?",
    "context": "CREATE TABLE table_name_88 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_93 WHERE player = \"retief goosen\"",
    "question_en": "what is the to par for retief goosen?",
    "question_th": "ค่าพาร์สำหรับการบรรเทาอาการห่านคืออะไร?",
    "context": "CREATE TABLE table_name_93 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(total) FROM table_name_55 WHERE player = \"jim furyk\"",
    "question_en": "how many times is the player jim furyk?",
    "question_th": "ผู้เล่น 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_en": "What is the lowest lane in which an athlete got a time larger than 20.75 and a react smaller than 0.166?",
    "question_th": "เลนต่ำสุดที่นักกีฬามีเวลามากกว่า 20.75 และปฏิกิริยาตอบสนองน้อยกว่า 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_en": "What is Christian Malcolm´s highest react when his time was below 20.58?",
    "question_th": "ปฏิกิริยาสูงสุดของ Christian Malcolm เมื่อเวลาของเขาต่ำกว่า 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_en": "what is the position when the year [A} is after 2011 and the pick is 28?",
    "question_th": "ตำแหน่งอะไรคือปี [A} หลังปี 2554 และเลือกเป็น 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_en": "Who is the player when the pick is 22 and the year [A] is after 1979?",
    "question_th": "ใครคือผู้เล่นเมื่อตัวเลือกคือ 22 และปี [A] คือหลังปี 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_en": "who is the player when the pick is 15 and the year [A] is 2000?",
    "question_th": "ใครคือผู้เล่นเมื่อตัวเลือกคือ 15 และปี [A] คือ 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_en": "Which country was the player from who scored 66-72-70=207?",
    "question_th": "นักเตะจากประเทศไหนที่ทำคะแนนได้ 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_en": "What place was the player who scored 70-69-68=207?",
    "question_th": "นักเตะที่ทำคะแนนได้ 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_en": "What country was the player in t10 place with a score of 66-72-70=207?",
    "question_th": "ผู้เล่นอันดับที่ 10 ของประเทศใดด้วยคะแนน 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_en": "What is the to par of United States' Cristie Kerr?",
    "question_th": "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_en": "Who is the original artist of the 3:00 song?",
    "question_th": "ใครคือศิลปินต้นฉบับของเพลงนาทีที่ 3:00?",
    "context": "CREATE TABLE table_name_87 (original_artist VARCHAR, length VARCHAR)"
  },
  {
    "answer": "SELECT song FROM table_name_59 WHERE length = \"3:34\"",
    "question_en": "Which song lasts 3:34?",
    "question_th": "เพลงไหนนาทีที่ 3:34 ครับ?",
    "context": "CREATE TABLE table_name_59 (song VARCHAR, length VARCHAR)"
  },
  {
    "answer": "SELECT song FROM table_name_86 WHERE length = \"4:08\"",
    "question_en": "Which song lasts 4:08?",
    "question_th": "เพลงไหนนาทีที่ 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_en": "How many bronze medals for Romania when the silver count is more than 1?",
    "question_th": "โรมาเนียได้เหรียญทองแดงกี่เหรียญเมื่อนับเงินมากกว่า 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_en": "Which manager had less than 287 losses, less than 80 wins, a win percentage of 0.296, and was employed in 1904?",
    "question_th": "ผู้จัดการคนใดที่แพ้น้อยกว่า 287 ครั้ง ชนะน้อยกว่า 80 ครั้ง เปอร์เซ็นต์การชนะ 0.296 และทำงานในปี 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_en": "Which U.S. Hot has 13 as the U.S. R&B?",
    "question_th": "US Hot ตัวไหนมี 13 อันดับเป็น US 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_en": "What U.S. Rap has life in the concrete jungle as the album?",
    "question_th": "US Rap คนไหนมีชีวิตในป่าคอนกรีตเป็นอัลบั้ม?",
    "context": "CREATE TABLE table_name_15 (us_rap VARCHAR, album VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_name_27 WHERE built = \"19th century\"",
    "question_en": "What are the Notes of the Mill Built in the 19th Century?",
    "question_th": "Notes of the Mill ที่สร้างขึ้นในศตวรรษที่ 19 คืออะไร?",
    "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_en": "What is the Type of Mill at Molen de Stud?",
    "question_th": "ประเภทของโรงสีที่ 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_en": "What is the Name of the Mill Built in 1802?",
    "question_th": "ชื่อของโรงสีที่สร้างขึ้นในปี 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_en": "What is the Location of the Mill Built in the Early 19th Century?",
    "question_th": "ที่ตั้งของโรงสีที่สร้างขึ้นในช่วงต้นศตวรรษที่ 19 คืออะไร?",
    "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_en": "What was the record for the game played by the home team San Francisco 49ers and visitor Philadelphia Eagles?",
    "question_th": "อะไรคือสถิติของเกมที่เล่นโดยทีมเหย้าซานฟรานซิสโก โฟร์ตีไนเนอร์ส และผู้มาเยือน ฟิลาเดลเฟีย อีเกิลส์?",
    "context": "CREATE TABLE table_name_58 (record VARCHAR, home VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_26 WHERE date = \"september 27\"",
    "question_en": "What is the record for the game played on September 27?",
    "question_th": "สถิติเกมที่เล่นเมื่อวันที่ 27 กันยายน เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_26 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(place) FROM table_name_6 WHERE artist = \"henri dès\" AND points < 8",
    "question_en": "What is the highest place of a song by Henri Dès that has fewer than 8 points?",
    "question_th": "เพลงของ Henri Dès ที่มีคะแนนน้อยกว่า 8 คะแนนสูงสุดคือเพลงใด",
    "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_en": "What team was 2 on November 22, 2008 when the result was 1-0?",
    "question_th": "เมื่อวันที่ 22 พฤศจิกายน พ.ศ. 2551 ทีมใดเป็นอันดับที่ 2 เมื่อผลการแข่งขันเป็น 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_en": "What team was 2 when Tatung was team 1 at National Pei Men Senior High School?",
    "question_th": "ตอนที่ตาตุงเป็นทีมที่ 1 ของโรงเรียนมัธยมปลายแห่งชาติเป่ยเหมิน ทีมอะไรคือ 2?",
    "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_en": "Where was the game played that has a result of 0-4?",
    "question_th": "เกมนี้เล่นที่ไหนที่ผลสกอร์ 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_en": "What team is 2 when 1 is Taipower and the result is 0-1?",
    "question_th": "ทีมไหนเป็น 2 เมื่อ 1 คือ ไทพาวเวอร์ และผลเสมอ 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_en": "What team is 2 when the game result is 0-4 at Pailing Sport Park?",
    "question_th": "ทีมไหนเป็น 2 เมื่อผลการแข่งขัน 0-4 ที่ 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_en": "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?",
    "question_th": "แต้มรวมน้อยกว่า 12 เสมอ อันดับน้อยกว่า 17 และ Philipp Kirkorov เป็นศิลปินเป็นเท่าใด",
    "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_en": "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?",
    "question_th": "คะแนนรวมไม่ถึง 16 งวด ไม่ถึง 1 แต้ม แปลอังกฤษโดนใจคุณแค่ไหน?",
    "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_en": "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?",
    "question_th": "หวยสูงสุดเมื่อได้เกิน 31 แต้ม อันดับมากกว่า 6 และแปลภาษาอังกฤษฟังแล้วได้อะไร?",
    "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_en": "What was the population of Green County?",
    "question_th": "ประชากรของกรีนเคาน์ตี้คือเท่าไร?",
    "context": "CREATE TABLE table_name_15 (population INTEGER, county VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_69 WHERE opponent = \"minnesota\"",
    "question_en": "What was the score of the game against Minnesota?",
    "question_th": "คะแนนของเกมกับมินนิโซตาคือเท่าไร?",
    "context": "CREATE TABLE table_name_69 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT high_points FROM table_name_21 WHERE date = \"july 7\"",
    "question_en": "What player had the high point on July 7?",
    "question_th": "ผู้เล่นคนไหนมีจุดสูงสุดในวันที่ 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_en": "What's the format of the single, I Can't Stay?",
    "question_th": "ซิงเกิล 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_en": "What's the Backed after 2008 with a label of Wild World?",
    "question_th": "อะไรคือ Backed หลังปี 2008 ที่มีป้ายกำกับ 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_en": "What's the date for Details of 1000 copies?",
    "question_th": "รายละเอียด 1,000 ชุด คือวันไหนคะ?",
    "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_en": "What nation has paavo nurmi as the athlete, with a medal count less than 12?",
    "question_th": "ประเทศใดมี ปาโว นูร์มี เป็นนักกีฬา โดยมีจำนวนเหรียญน้อยกว่า 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_en": "Which sport has 17 as the medal count?",
    "question_th": "กีฬาใดมี 17 เหรียญเป็นจำนวนเหรียญ?",
    "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_en": "What record medal event has athletics as the sport, with robert garrett as the athlete, and a medal count less than 3?",
    "question_th": "งานชิงเหรียญรางวัลใดที่มีกรีฑาเป็นกีฬา โดยมีโรเบิร์ต การ์เร็ตต์เป็นนักกีฬา และเหรียญหนึ่งมีน้อยกว่า 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_en": "What is the Opponent of the game in Week 3?",
    "question_th": "ฝ่ายตรงข้ามของเกมในสัปดาห์ที่ 3 คืออะไร?",
    "context": "CREATE TABLE table_name_21 (opponent VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_84 WHERE date = \"december 12, 2004\"",
    "question_en": "What is the Attendance of the game on December 12, 2004?",
    "question_th": "ผู้เข้าร่วมเกมในวันที่ 12 ธันวาคม พ.ศ. 2547 คืออะไร?",
    "context": "CREATE TABLE table_name_84 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_53 WHERE opponent = \"jacksonville jaguars\"",
    "question_en": "What is the Attendance of the game against Jacksonville Jaguars?",
    "question_th": "ผู้เข้าชมเกมกับ แจ็กสันวิลล์ จากัวร์ส เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_53 (attendance VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_38 WHERE money___£__ = \"90,400\" AND country = \"south africa\" AND player = \"thomas aiken\"",
    "question_en": "Which Score has a Money ( £ ) of 90,400, and a Country of south africa, and a Player of thomas aiken? Question 1",
    "question_th": "สกอร์ใดมีเงิน (ปอนด์) 90,400 และประเทศแอฟริกาใต้ และผู้เล่นของ Thomas Aiken? คำถามที่ 1",
    "context": "CREATE TABLE table_name_38 (score VARCHAR, player VARCHAR, money___£__ VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT money___£__ FROM table_name_11 WHERE country = \"australia\"",
    "question_en": "How much Money( £ )australia has ?",
    "question_th": "ออสเตรเลียมีเงินเท่าไหร่( £ )?",
    "context": "CREATE TABLE table_name_11 (money___£__ VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT money___£__ FROM table_name_50 WHERE country = \"south africa\" AND to_par = \"+1\" AND player = \"ernie els\"",
    "question_en": "Count the Money ( £ ) of south africa with a To par of +1, and a Player of ernie els?",
    "question_th": "นับเงิน (ปอนด์) ของแอฟริกาใต้ด้วยพาร์ +1 และผู้เล่นของเออร์นี่เอลส์?",
    "context": "CREATE TABLE table_name_50 (money___£__ VARCHAR, player VARCHAR, country VARCHAR, to_par VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_22 WHERE player = \"tom watson\"",
    "question_en": "Where has a Player of tom watson?",
    "question_th": "นักเตะทอม วัตสันอยู่ไหน?",
    "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_en": "Which Score has a To par of +1 in sweden?",
    "question_th": "สกอร์ใดมีพาร์ถึง +1 ในสวีเดน?",
    "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_en": "Which To par is of thomas aiken?",
    "question_th": "Topar อันไหนของ 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_en": "What is the average expenditures on R&D for Croatia after 2007?",
    "question_th": "ค่าใช้จ่ายเฉลี่ยด้านการวิจัยและพัฒนาสำหรับโครเอเชียหลังปี 2550 เป็นเท่าใด",
    "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_en": "What is the lowest expenditures on R&D for Poland after 2011?",
    "question_th": "ค่าใช้จ่ายด้านการวิจัยและพัฒนาในโปแลนด์ต่ำที่สุดหลังปี 2554 คือเท่าใด",
    "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–1 (h), 2–0 (a)\"",
    "question_en": "What is the Opposition in the First Round of the UEFA Cup with a Score of 3–1 (h), 2–0 (a)?",
    "question_th": "ฝ่ายค้านในรอบแรกของยูฟ่าคัพรอบแรกด้วยสกอร์ 3–1 (h), 2–0 (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–2 (a), 3–1 (h)\"",
    "question_en": "What is the Season of the game with a Score of 0–2 (a), 3–1 (h)?",
    "question_th": "ฤดูกาลของเกมที่มีคะแนน 0–2 (a), 3–1 (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_en": "Which Location has a Year Joined of 1966, and a Previous Conference of noble county, and a School of wawaka?",
    "question_th": "สถานที่ใดที่มีปีเข้าร่วมในปี 1966 และการประชุมครั้งก่อนของเทศมณฑลขุนนาง และโรงเรียนวาวากา?",
    "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_en": "How much Year Left has a Location of howe?",
    "question_th": "เหลืออีกกี่ปีมีที่ตั้งของฮาว?",
    "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_en": "Which School has a Year Left of 1966, and a Mascot of indians?",
    "question_th": "โรงเรียนไหนมีปีเหลือของปี 1966 และมาสค็อตของชาวอินเดียนแดง?",
    "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_en": "Who was the Elevator of Giacomo Colonna?",
    "question_th": "ลิฟต์ของ 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_en": "What is the date of elevation for the Cardinal elevated by Nicholas III to the title of Cardinal-Deacon of S. Eustachio?",
    "question_th": "วันที่ใดที่พระคาร์ดินัลได้รับการยกระดับโดยนิโคลัสที่ 3 ให้ดำรงตำแหน่งพระคาร์ดินัล-สังฆานุกรแห่งเอส. อุสตาชิโอ",
    "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_en": "What was the date of elevation for the cardinal given the order and title of Cardinal-Priest of S. Pudenziana?",
    "question_th": "พระคาร์ดินัลขึ้นรับตำแหน่งและตำแหน่งพระคาร์ดินัล-ปุโรหิตแห่งเอส. ปูเดนเซียนาเมื่อใด",
    "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_en": "What are the games behind for the Oklahoma City Thunder division?",
    "question_th": "เกมเบื้องหลังของทีมโอคลาโฮมา ซิตี้ ธันเดอร์มีอะไรบ้าง?",
    "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_en": "What is the highest elevation of a place where the lowest point is the Allaine River, National border?",
    "question_th": "ระดับความสูงสูงสุดของสถานที่ที่จุดต่ำสุดคือแม่น้ำอัลเลน ชายแดนแห่งชาติ คือข้อใด",
    "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_en": "What is the lowest elevation value whose highest point is Mont Raimeux?",
    "question_th": "ค่าระดับความสูงต่ำสุดที่มีจุดสูงสุดคือ 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_en": "What rank is Vaud with the lowest point is Lake Geneva?",
    "question_th": "Vaud มีจุดต่ำสุดคือทะเลสาบเจนีวาอันดับใด",
    "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_en": "Wich rank is given to the Canton of Schaffhausen?",
    "question_th": "รัฐชาฟฟ์เฮาเซินมีอันดับใด",
    "context": "CREATE TABLE table_name_4 (rank INTEGER, canton VARCHAR)"
  },
  {
    "answer": "SELECT highest_elevation FROM table_name_7 WHERE highest_point = \"schnebelhorn\"",
    "question_en": "What is the highest elevation for the highest point of Schnebelhorn?",
    "question_th": "ระดับความสูงสูงสุดสำหรับจุดสูงสุดของ 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_en": "What is the Canton of Vaud's highest point?",
    "question_th": "จุดสูงสุดของ Canton of Vaud คืออะไร?",
    "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_en": "What type of ship is a Kobben class vessel that has been in service longer than 2?",
    "question_th": "เรือประเภทใดที่เป็นเรือประเภท Kobben ที่ให้บริการนานกว่า 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_en": "What is the unit for a submarine type ship from Norway?",
    "question_th": "เรือประเภทเรือดำน้ำจากประเทศนอร์เวย์มีหน่วยอะไร",
    "context": "CREATE TABLE table_name_74 (unit VARCHAR, type VARCHAR, origin VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_50 WHERE record = \"32-25\"",
    "question_en": "Who was the opponent with a 32-25 record?",
    "question_th": "คู่ต่อสู้ที่มีสถิติ 32-25 คือใคร?",
    "context": "CREATE TABLE table_name_50 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_name_4 WHERE record = \"35-28\"",
    "question_en": "What is the location/ attendance for a 35-28 record?",
    "question_th": "สถานที่/การเข้างานสำหรับบันทึก 35-28 คืออะไร?",
    "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_en": "What is the latest year when Neal Baer was a nominee, and the result was nominated?",
    "question_th": "ปีล่าสุดที่นีล แบร์ ได้รับการเสนอชื่อเข้าชิง และผลการเสนอชื่อเข้าชิงคือปีใด",
    "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_en": "That is the total year that Neal Baer is a nominee?",
    "question_th": "นั่นคือปีที่นีล แบร์ได้รับการเสนอชื่อเข้าชิงทั้งหมดกี่ปี?",
    "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_en": "For what episode was the nominee (s) Walon Green, Joe Sachs nominated as a result?",
    "question_th": "ผู้ได้รับการเสนอชื่อเข้าชิง Walon Green, Joe Sachs ได้รับการเสนอชื่อในตอนใด?",
    "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_en": "Nominee Neal Baer had what result?",
    "question_th": "ผู้ท้าชิงนีล แบร์ ได้ผลลัพธ์อะไร?",
    "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_en": "What episode after 1998 had John Wells as the nominee?",
    "question_th": "ตอนใดหลังจากปี 1998 มี John Wells เป็นผู้ได้รับการเสนอชื่อ?",
    "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_en": "Who has the world record of 153kg in the clean & jerk?",
    "question_th": "ใครมีสถิติโลก 153 กก. ในประเภท 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_en": "What's the release date for the processor spec number SLBEQ(d0)?",
    "question_th": "วันที่วางจำหน่ายสำหรับหมายเลขข้อมูลจำเพาะโปรเซสเซอร์ 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_en": "What's the release date of model number CORE I7-940?",
    "question_th": "หมายเลขรุ่น 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 × 6.4 gt/s qpi\" AND part_number_s_ = \"bx80601975at80601002274aa\"",
    "question_en": "What's the release price of the processor with the part number bx80601975at80601002274aa, and has 1 × 6.4 gt/s qpi I/O?",
    "question_th": "ราคาวางจำหน่ายของโปรเซสเซอร์ที่มีหมายเลขชิ้นส่วน bx80601975at80601002274aa และมี 1 × 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 × 6.4 gt/s qpi\"",
    "question_en": "What's the release price of a processor that has a frequency of 3.2 ghz and 1 × 6.4 gt/s qpi I/O?",
    "question_th": "ราคาเปิดตัวของโปรเซสเซอร์ที่มีความถี่ 3.2 ghz และ 1 × 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_en": "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?",
    "question_th": "จำนวนเด็กกำพร้าโรคเอดส์เป็น % ของเด็กกำพร้าเมื่อจำนวนสองเท่า (ที่เกี่ยวข้องกับโรคเอดส์) คือ 41,000 และจำนวนบิดา (ทั้งหมด) มากกว่า 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_en": "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?",
    "question_th": "หมายเลข Total Orphans คืออะไร เมื่อจำนวนเด็กกำพร้าทั้งหมด (ที่เกี่ยวข้องกับโรคเอดส์) คือ < 100 และจำนวนมารดา (ทั้งหมด) น้อยกว่า 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_en": "What's the term start date for Meretz?",
    "question_th": "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_en": "How many clubs are involved when the clubs remaining are 2?",
    "question_th": "มีไม้กอล์ฟกี่อันที่เกี่ยวข้องเมื่อเหลือไม้กอล์ฟ 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_en": "How many new entries when the leagues entering in the round are tff third league & turkish regional amateur league?",
    "question_th": "มีรายการใหม่กี่รายการเมื่อลีกที่เข้าสู่รอบเป็นลีกที่สามและลีกสมัครเล่นระดับภูมิภาคของตุรกี?",
    "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_en": "What is the number of clubs remaining in the second round?",
    "question_th": "เหลือไม้กอล์ฟในรอบที่ 2 จำนวนเท่าไร?",
    "context": "CREATE TABLE table_name_65 (clubs_remaining INTEGER, round VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_51 WHERE clubs_involved = 4",
    "question_en": "Which round has 4 clubs involved?",
    "question_th": "รอบไหนมี 4 สโมสรเข้าร่วม?",
    "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_en": "How many clubs are involved when there are 4 winners from the previous rounds and more than 4 clubs remaining?",
    "question_th": "มีกี่สโมสรที่เกี่ยวข้องเมื่อมีผู้ชนะ 4 คนจากรอบที่แล้วและเหลืออีกมากกว่า 4 สโมสร?",
    "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 – 2\"",
    "question_en": "What is the Away team at the game with a Score of 4 – 2?",
    "question_th": "ทีมเยือนในเกมที่มีสกอร์ 4 – 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_en": "What is the Tie no of the game with an Attendance of 4,658?",
    "question_th": "Tie no ของเกมคืออะไรโดยมีผู้เข้าร่วม 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_en": "What is the Home team at the Lincoln City Away game?",
    "question_th": "ทีมเหย้าในเกมเยือนลินคอล์น ซิตี้ คืออะไร?",
    "context": "CREATE TABLE table_name_80 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_4 WHERE score = \"1 – 0\" AND attendance = \"1,791\"",
    "question_en": "What is the Away team at the game with a Score of 1 – 0 and Attendance of 1,791?",
    "question_th": "ในเกมเยือนทีมไหนมีสกอร์ 1 – 0 และมีผู้ชม 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 – 2\"",
    "question_en": "What is the Home team of the game with a Score of 2 – 2?",
    "question_th": "ทีมเหย้าของเกมที่มีสกอร์ 2 – 2 คืออะไร?",
    "context": "CREATE TABLE table_name_98 (home_team VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_94 WHERE score = \"0 – 0\"",
    "question_en": "What is the Attendance of the game with a Score of 0 – 0?",
    "question_th": "ผู้เข้าร่วมเกมด้วยคะแนน 0 – 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_en": "What year had Nintendo EAD, Monolith Soft as developers?",
    "question_th": "Nintendo EAD, Monolith Soft เป็นผู้พัฒนาในปีใด",
    "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_en": "what is the location when the designer is glen peloso and the restaurant is joe boo's cookoos?",
    "question_th": "นักออกแบบคือ Glen Peloso และร้านอาหารคือ 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_en": "What year did the team from City of Aurora join?",
    "question_th": "ทีมจาก City of Aurora เข้าร่วมปีไหน?",
    "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_en": "What was the total enrollment 08-09 of Franklin County?",
    "question_th": "การลงทะเบียนทั้งหมด 08-09 ของแฟรงคลินเคาน์ตี้เป็นเท่าใด",
    "context": "CREATE TABLE table_name_93 (enrollment_08_09 VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_79 WHERE team_name = \"pirates\"",
    "question_en": "What school has a team called the Pirates?",
    "question_th": "โรงเรียนไหนมีทีมชื่อ 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_en": "What is the rank of the team with a time of 1:00.61?",
    "question_th": "ทีมอันดับเท่าไหร่ด้วยเวลา 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_en": "What's the lane with a time of 1:00.66?",
    "question_th": "เลนไหนเวลา 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_en": "What's the rank when the time was 59.65?",
    "question_th": "เมื่อเวลา 59.65 อยู่อันดับเท่าไหร่?",
    "context": "CREATE TABLE table_name_43 (rank VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_64 WHERE opponent = \"new york\"",
    "question_en": "What is the record when they played New York?",
    "question_th": "พวกเขาเล่นนิวยอร์กมีสถิติอะไรบ้าง?",
    "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_en": "Can you tell me the County that has the Year Joined of 1964, and the Location of montezuma?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าเคาน์ตี้ที่มีปีรวมปี 1964 และที่ตั้งของมอนเตซูมา?",
    "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_en": "Can you tell me the Conference Joined that has the Location of terre haute, and the Mascot of golden bears?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าการประชุมที่เข้าร่วมซึ่งมีที่ตั้งของ terre haute และตัวนำโชคของหมีทองคำ?",
    "context": "CREATE TABLE table_name_67 (conference_joined VARCHAR, location VARCHAR, mascot VARCHAR)"
  },
  {
    "answer": "SELECT mascot FROM table_name_70 WHERE school = \"rosedale\"",
    "question_en": "Can you tell me the Mascot that has the School of rosedale?",
    "question_th": "คุณช่วยบอกมาสคอตที่มีโรงเรียนโรสเดลหน่อยได้ไหม?",
    "context": "CREATE TABLE table_name_70 (mascot VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT conference_joined FROM table_name_88 WHERE mascot = \"little sycamores\"",
    "question_en": "Can you tell me the Conference Joined that has the Mascot of little sycamores?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าการประชุมที่เข้าร่วมซึ่งมีมาสคอตของมะเดื่อตัวน้อย?",
    "context": "CREATE TABLE table_name_88 (conference_joined VARCHAR, mascot VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_69 WHERE mascot = \"lakers\"",
    "question_en": "Can you tell me the Location that has the Mascot of lakers?",
    "question_th": "คุณช่วยบอกสถานที่ที่มีมาสคอตของเลเกอร์สหน่อยได้ไหม?",
    "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_en": "What is the time of the rider from the 348cc K4 Honda team with a speed of 97.743mph?",
    "question_th": "เวลาที่นักบิดจากทีม K4 Honda ขนาด 348cc ด้วยความเร็ว 97.743 ไมล์ต่อชั่วโมงคือเวลาใด?",
    "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_en": "What is the Lane of the swimmer with a Time of 8:34.25?",
    "question_th": "เลนของนักว่ายน้ำด้วยเวลา 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_en": "What is the Name of the swimmer with a Time of 9:04.86 in Heat 2?",
    "question_th": "นักว่ายน้ำชื่ออะไรด้วยเวลา 9:04.86 ในฮีตที่ 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_en": "What is the Location of the Event in Round 1 with a Time of 1:25?",
    "question_th": "สถานที่จัดงานในรอบที่ 1 ด้วยเวลา 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_en": "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?",
    "question_th": "ประตูเฉลี่ยเมื่อปรากฏตัวครั้งสุดท้ายคือก่อนปี 1984 มีจำนวนมากกว่า 17 นัด การปรากฏตัวครั้งแรกคือก่อนปี 1961 และตำแหน่งคือ 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_en": "what is the school that left in 1966?",
    "question_th": "โรงเรียนที่เหลือในปี 2509 คืออะไร?",
    "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_en": "what is the mascot for moores hill that joined later than 1952?",
    "question_th": "มาสคอตของ Moores Hill ที่เข้าร่วมภายหลังปี 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_en": "what is the conference joined for the county 69 ripley in 1952 in versailles?",
    "question_th": "การประชุมที่เข้าร่วมสำหรับเคาน์ตี 69 ริปลีย์ในปี 1952 ในแวร์ซายคืออะไร?",
    "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_en": "who is the mascot of the county 78 switzerland?",
    "question_th": "มาสคอตของเขต 78 สวิตเซอร์แลนด์คือใคร?",
    "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_en": "What is the total time of the athlete from Canada with a lane less than 8 and a rank less than 8?",
    "question_th": "เวลารวมของนักกีฬาจากแคนาดาที่มีเลนน้อยกว่า 8 และอันดับน้อยกว่า 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_en": "What is the total react number with a time less than 20.05 and a lane less than 6?",
    "question_th": "จำนวนการตอบสนองทั้งหมดที่มีเวลาน้อยกว่า 20.05 และเลนน้อยกว่า 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_en": "What is the average react of bryan barnett, who has a lane less than 2?",
    "question_th": "ปฏิกิริยาเฉลี่ยของไบรอัน บาร์เน็ตต์ ที่มีเลนน้อยกว่า 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_en": "What year did the Hornets leave the conference?",
    "question_th": "Hornets ออกจากการประชุมในปีใด",
    "context": "CREATE TABLE table_name_68 (year_left VARCHAR, team_name VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_65 WHERE year_left = \"1949\"",
    "question_en": "In what city was the team that left the conference in 1949 based?",
    "question_th": "ทีมที่ออกจากการประชุมในปี 1949 ตั้งอยู่ในเมืองใด",
    "context": "CREATE TABLE table_name_65 (city VARCHAR, year_left VARCHAR)"
  },
  {
    "answer": "SELECT year_joined FROM table_name_6 WHERE city = \"winamac\"",
    "question_en": "What year did the team based in the city of Winamac join the conference?",
    "question_th": "ทีมงานในเมือง Winamac เข้าร่วมการประชุมในปีใด",
    "context": "CREATE TABLE table_name_6 (year_joined VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT county FROM table_name_3 WHERE year_left = \"1993\"",
    "question_en": "From what county was the team that left the conference in 1993?",
    "question_th": "ทีมที่ออกจากการประชุมในปี 1993 มาจากเขตใด",
    "context": "CREATE TABLE table_name_3 (county VARCHAR, year_left VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_63 WHERE year_left = \"1992\"",
    "question_en": "From what school was the team that left the conference in 1992?",
    "question_th": "ทีมที่ออกจากการประชุมในปี 1992 จากโรงเรียนใด",
    "context": "CREATE TABLE table_name_63 (school VARCHAR, year_left VARCHAR)"
  },
  {
    "answer": "SELECT year_joined FROM table_name_10 WHERE school = \"western\"",
    "question_en": "In what year did the team from the Western school join the conference?",
    "question_th": "ทีมงานจากโรงเรียนเวสเทิร์นเข้าร่วมการประชุมในปีใด",
    "context": "CREATE TABLE table_name_10 (year_joined VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT AVG(place) FROM table_name_77 WHERE points < 1",
    "question_en": "What is the place when less than 1 point is scored?",
    "question_th": "คะแนนน้อยกว่า 1 แต้มอยู่ตำแหน่งไหน?",
    "context": "CREATE TABLE table_name_77 (place INTEGER, points INTEGER)"
  },
  {
    "answer": "SELECT MAX(draw) FROM table_name_36 WHERE points = 23",
    "question_en": "What is the highest draw number when 23 points are scored?",
    "question_th": "แต้มสูงสุดเมื่อได้ 23 แต้มคือเลขอะไร?",
    "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_en": "What is the lowest heat that had a time of 1:02.85 in a lane larger than 7?",
    "question_th": "ความร้อนต่ำสุดที่มีเวลา 1:02.85 ในเลนที่ใหญ่กว่า 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_en": "What is the sum of the lanes before heat 7 that elizabeth simmonds swam?",
    "question_th": "ผลรวมของเลนก่อนฮีต 7 ที่เอลิซาเบธ ซิมมอนด์ว่ายเป็นเท่าใด",
    "context": "CREATE TABLE table_name_75 (lane INTEGER, heat VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT südbayern FROM table_name_27 WHERE year = 1928",
    "question_en": "What's the Südbayern in 1928?",
    "question_th": "Südbayern ในปี 1928 คืออะไร?",
    "context": "CREATE TABLE table_name_27 (südbayern VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT württemberg FROM table_name_51 WHERE baden = \"karlsruher fv\" AND year > 1931",
    "question_en": "What's the Württemberg for Karlsruher FV happening after 1931?",
    "question_th": "Württemberg สำหรับ Karlsruher FV เกิดอะไรขึ้นหลังปี 1931",
    "context": "CREATE TABLE table_name_51 (württemberg VARCHAR, baden VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_name_78 WHERE baden = \"freiburger fc\"",
    "question_en": "What's the year that has a Baden Freiburger FC?",
    "question_th": "ปีไหนที่มี Baden Freiburger FC?",
    "context": "CREATE TABLE table_name_78 (year VARCHAR, baden VARCHAR)"
  },
  {
    "answer": "SELECT württemberg FROM table_name_42 WHERE year < 1929",
    "question_en": "What's the Württemberg in the year before 1929?",
    "question_th": "Württemberg ในปีก่อนปี 1929 คืออะไร?",
    "context": "CREATE TABLE table_name_42 (württemberg VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT nordbayern FROM table_name_92 WHERE year < 1932 AND württemberg = \"union böckingen\"",
    "question_en": "What's the Nordbayern with a Württemberg of Union Böckingen in the year before 1932?",
    "question_th": "Nordbayern กับ Württemberg ของ Union Böckingen คืออะไรในปีก่อนปี 1932?",
    "context": "CREATE TABLE table_name_92 (nordbayern VARCHAR, year VARCHAR, württemberg VARCHAR)"
  },
  {
    "answer": "SELECT high_rebounds FROM table_name_83 WHERE score = \"w 76-66\"",
    "question_en": "What was the high rebounds for the game that had a score of w 76-66?",
    "question_th": "เกมที่มีสกอร์ 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_en": "What was the location/attendance for the game with a record of 16-6?",
    "question_th": "สถานที่/การเข้าร่วมเกมด้วยสถิติ 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_en": "What is the nationality with a lane larger than 1, and a rank larger than 5, for Hsu Chi-Chieh?",
    "question_th": "สัญชาติใดที่มีเลนใหญ่กว่า 1 และอันดับมากกว่า 5 สำหรับ 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_en": "What is the lane with a time of 1:56.64, and a tank smaller than 7?",
    "question_th": "เลนใดที่มีเวลา 1:56.64 และรถถังเล็กกว่า 7 คืออะไร?",
    "context": "CREATE TABLE table_name_31 (lane VARCHAR, time VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_84 WHERE nationality = \"japan\"",
    "question_en": "What is the rank of Japan?",
    "question_th": "ญี่ปุ่นอยู่อันดับไหนคะ?",
    "context": "CREATE TABLE table_name_84 (rank VARCHAR, nationality VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_54 WHERE nationality = \"russia\"",
    "question_en": "What is the time for Russia?",
    "question_th": "รัสเซียกี่โมง?",
    "context": "CREATE TABLE table_name_54 (time VARCHAR, nationality VARCHAR)"
  },
  {
    "answer": "SELECT nation FROM table_name_27 WHERE silver > 0 AND rank = \"1\"",
    "question_en": "What nation has more than 0 silver medals and is ranked 1?",
    "question_th": "ประเทศใดมีเหรียญเงินมากกว่า 0 เหรียญและได้อันดับที่ 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_en": "What is the rank of the country with total more than 3 and more than 6 silver?",
    "question_th": "ประเทศที่มีคะแนนรวมมากกว่า 3 และมากกว่า 6 เหรียญเงินอยู่อันดับที่เท่าไร?",
    "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_en": "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?",
    "question_th": "อะไรคือเงินที่ประเทศได้รับมากที่สุดโดยมีมากกว่า 1 เหรียญทอง 3 เหรียญทองแดง อันดับ 1 และรวมน้อยกว่า 12 เหรียญ?",
    "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_en": "What nation has a total less than 11, more than 1 silver and less than 1 bronze?",
    "question_th": "ประเทศใดมียอดรวมน้อยกว่า 11 เหรียญเงิน มากกว่า 1 เหรียญเงิน และน้อยกว่า 1 เหรียญทองแดง?",
    "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_en": "What is the most silver won by Norway?",
    "question_th": "นอร์เวย์ได้เงินมากที่สุดคือเท่าไร?",
    "context": "CREATE TABLE table_name_76 (silver INTEGER, nation VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_name_27 WHERE constituency_number = \"60\"",
    "question_en": "What district has a constituency of 60?",
    "question_th": "อำเภอใดมีเขตเลือกตั้ง 60 คน?",
    "context": "CREATE TABLE table_name_27 (district VARCHAR, constituency_number VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_name_88 WHERE name = \"rajnagar\"",
    "question_en": "What is district has a name of Rajnagar?",
    "question_th": "อำเภอมีชื่อว่าราชนครคืออะไร?",
    "context": "CREATE TABLE table_name_88 (district VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_25 WHERE away_team = \"brentford\"",
    "question_en": "What was the score for the away team of Brentford?",
    "question_th": "ทีมเยือน เบรนท์ฟอร์ด ทำได้สกอร์เท่าไหร่?",
    "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_en": "What was the score of the tied game or the away team of Crewe Alexandra?",
    "question_th": "เกมเสมอกันหรือทีมเยือน ครูว์ อเล็กซานดร้า ทำได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_13 (tie_no VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_17 WHERE away_team = \"wrexham\"",
    "question_en": "What was the date of the game for the Wrexham away team?",
    "question_th": "เกมเยือนของทีมเยือนเร็กซ์แฮมคือวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_17 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_27 WHERE home_team = \"hartlepool united\"",
    "question_en": "What was the date of the game for the HartlePool United team?",
    "question_th": "เกมของทีม HartlePool United ตรงกับวันที่เท่าไร?",
    "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_en": "What is the number of tickets sold and available for the concert at Long Beach Arena?",
    "question_th": "บัตรที่จำหน่ายและมีจำหน่ายสำหรับคอนเสิร์ตที่ 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_en": "Which city has a venue of the Arco Arena?",
    "question_th": "เมืองใดมีสถานที่จัดเป็น 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_en": "What is the lowest round that has kazushi sakuraba as the opponent?",
    "question_th": "รอบต่ำสุดที่มีคาซึชิ ซากุระบะเป็นคู่ต่อสู้คืออะไร?",
    "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_en": "Japan (JPN) with a total of less than 5, has what average gold medals?",
    "question_th": "ญี่ปุ่น (JPN) รวมน้อยกว่า 5 ได้เหรียญทองเฉลี่ยเท่าไหร่?",
    "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_en": "What is the average bronze medal when gold is greater than 0, and there is less than 0 silver medals?",
    "question_th": "เหรียญทองแดงเฉลี่ยเท่าไหร่เมื่อทองมากกว่า 0 และมีเหรียญเงินน้อยกว่า 0?",
    "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_en": "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?",
    "question_th": "ผลรวมของเหรียญทองแดงเมื่ออันดับมากกว่า 2 และน้อยกว่า 2 เหรียญโดยที่เหรียญเงินมากกว่า 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_en": "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?",
    "question_th": "ด้วยอันดับมากกว่า 4 และเหรียญเงินมากกว่า 0 และเหรียญทองแดงน้อยกว่า 1 ผลรวมเฉลี่ยเป็นเท่าใด",
    "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_en": "What is the fewest gold medals when the bronze medals is greater than 5?",
    "question_th": "เหรียญทองน้อยที่สุดเมื่อเหรียญทองแดงมากกว่า 5 คืออะไร?",
    "context": "CREATE TABLE table_name_49 (gold INTEGER, bronze INTEGER)"
  },
  {
    "answer": "SELECT player FROM table_name_89 WHERE team = \"oakland raiders\"",
    "question_en": "What is the player when the team is oakland raiders?",
    "question_th": "นักเตะจะเป็นอะไรในเมื่อทีมโอ๊คแลนด์ เรดเดอร์ส?",
    "context": "CREATE TABLE table_name_89 (player VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_30 WHERE college = \"virginia tech\"",
    "question_en": "What is the team when the college is virginia tech?",
    "question_th": "เมื่อวิทยาลัยเวอร์จิเนียเทคอยู่ทีมอะไร?",
    "context": "CREATE TABLE table_name_30 (team VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_74 WHERE team = \"new york jets\"",
    "question_en": "What college has a team of new york jets?",
    "question_th": "วิทยาลัยไหนมีทีมนิวยอร์คเจ็ตส์บ้าง?",
    "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_en": "What team has a pick larger than 30, when the college is saginaw valley state?",
    "question_th": "ทีมใดมีตัวเลือกมากกว่า 30 เมื่อวิทยาลัยอยู่ในรัฐ Saginaw Valley?",
    "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_en": "What is the highest pick when the college is saginaw valley state?",
    "question_th": "อะไรคือตัวเลือกที่สูงที่สุดเมื่อวิทยาลัยอยู่ในรัฐ Saginaw Valley?",
    "context": "CREATE TABLE table_name_61 (pick INTEGER, college VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_37 WHERE opponent = \"akiko inoue\"",
    "question_en": "what is the record when the opponent is akiko inoue?",
    "question_th": "บันทึกเมื่อคู่ต่อสู้คืออากิโกะ อิโนะอุเอะเป็นอย่างไรบ้าง?",
    "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_en": "what is the even when the location is tokyo, japan and the record is 6-1?",
    "question_th": "จะเป็นอย่างไรแม้ว่าสถานที่คือโตเกียว ญี่ปุ่น และสถิติ 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_en": "Which range includes Mount Fukushima, and is ranked 38?",
    "question_th": "เทือกเขาใดรวมถึงภูเขาฟุกุชิมะด้วยและอยู่ในอันดับที่ 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_en": "What is the altitude (meters) is associated with the Name Mount Launoit, with the range as Belgica Mountains?",
    "question_th": "ระดับความสูง (เมตร) สัมพันธ์กับชื่อ Mount Launoit ซึ่งมีระยะเท่ากับเทือกเขา Belgica หรือไม่",
    "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ühlig-hofmann mountains\" AND rank < 10",
    "question_en": "What is the Altitude (meters) associated with a rank smaller than 10, and the range Mühlig-Hofmann Mountains?",
    "question_th": "ระดับความสูง (เมตร) ที่เกี่ยวข้องกับอันดับที่น้อยกว่า 10 และเทือกเขา Mühlig-Hofmann คืออะไร",
    "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_en": "What name is associated with a rank greater than 69, an altitude (meters) smaller than 2154, and a range of Sivorgfjella?",
    "question_th": "ชื่ออะไรที่เกี่ยวข้องกับอันดับมากกว่า 69 ความสูง (เมตร) น้อยกว่า 2154 และช่วงของ 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_en": "What name is associated with a rank of less than 24, and an altitude (meters) of 3085?",
    "question_th": "ชื่ออะไรเกี่ยวข้องกับอันดับน้อยกว่า 24 และความสูง (เมตร) 3,085",
    "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_en": "What is the primary conference with a IHSAA Football Class of A, at South Decatur school?",
    "question_th": "การประชุมเบื้องต้นกับ IHSAA Football Class of A ที่โรงเรียน South Decatur คืออะไร",
    "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_en": "What is the Location with a county of 30 Hancock?",
    "question_th": "ที่ตั้งของเขต 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_en": "What county has an IHSAA Football Class of A, and a Mascot of royals?",
    "question_th": "เขตใดมี IHSAA Football Class ระดับ A และมีตัวนำโชคของราชวงศ์",
    "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_en": "What school has a county of 69 ripley?",
    "question_th": "โรงเรียนใดมีเขต 69 ริปลีย์?",
    "context": "CREATE TABLE table_name_74 (school VARCHAR, county VARCHAR)"
  },
  {
    "answer": "SELECT enrollment FROM table_name_9 WHERE mascot = \"fighting '59ers\"",
    "question_en": "What is the enrollment for the school with the mascot of the Fighting '59ers?",
    "question_th": "การลงทะเบียนของโรงเรียนที่มีมาสคอตของ 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_en": "What nation has a total less than 2, silver of 1 and bronze less than 1?",
    "question_th": "ประเทศใดมีคะแนนรวมน้อยกว่า 2 เงิน 1 และทองแดงน้อยกว่า 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_en": "What's the total with silver being less than 0, less than 1 gold, and 3 bronze?",
    "question_th": "เงินทั้งหมดน้อยกว่า 0 น้อยกว่า 1 เหรียญทอง และ 3 เหรียญทองแดงเป็นเท่าใด",
    "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_en": "What's Australia's time in the heat more than 4?",
    "question_th": "ออสเตรเลียจะร้อนเกิน 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č\"",
    "question_en": "What's Sara Isakovič's lane number that had a heat of 3?",
    "question_th": "หมายเลขเลนของ Sara Isakovič ที่มีฮีต 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_en": "What's the heat that was timed 2:08.54?",
    "question_th": "นาทีที่ 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_en": "Who is the Director of Fish Tales?",
    "question_th": "ใครเป็นผู้อำนวยการเรื่อง 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_en": "What was released on 1936-08-29?",
    "question_th": "มีอะไรเผยแพร่เมื่อ 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_en": "What is the release date of Milk and Money?",
    "question_th": "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_en": "What is the release date of I Wanna Play House?",
    "question_th": "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_en": "Who is the director of Little Beau Porky?",
    "question_th": "ใครเป็นผู้กำกับ น้องโบ พอร์กี้ ?",
    "context": "CREATE TABLE table_name_31 (director VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT release_date FROM table_name_59 WHERE title = \"the blow out\"",
    "question_en": "What is the release date of The Blow Out?",
    "question_th": "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_en": "Who was the author for company Buzz Productions Theater?",
    "question_th": "ใครเป็นผู้เขียนให้กับบริษัท Buzz Productions Theatre?",
    "context": "CREATE TABLE table_name_18 (author VARCHAR, company VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_15 WHERE play = \"cyclops\"",
    "question_en": "What country had the play Cyclops?",
    "question_th": "ประเทศใดมีละคร Cyclops?",
    "context": "CREATE TABLE table_name_15 (country VARCHAR, play VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_5 WHERE play = \"medea\"",
    "question_en": "What country had the play Medea?",
    "question_th": "ประเทศใดมีการเล่น Medea?",
    "context": "CREATE TABLE table_name_5 (country VARCHAR, play VARCHAR)"
  },
  {
    "answer": "SELECT play FROM table_name_18 WHERE country = \"belgium\"",
    "question_en": "What play is from the country Belgium?",
    "question_th": "การเล่นอะไรจากประเทศเบลเยี่ยม?",
    "context": "CREATE TABLE table_name_18 (play VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT play FROM table_name_67 WHERE author = \"aeschylus\" AND base = \"athens\"",
    "question_en": "What play has a base of Athens and was written by Aeschylus?",
    "question_th": "ละครเรื่องใดมีรากฐานมาจากกรุงเอเธนส์และเขียนโดยเอสคิลุส",
    "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_en": "What is the company from Greece with author Aeschylus?",
    "question_th": "บริษัท จากประเทศกรีซกับผู้แต่ง 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_en": "What is the coaster name that was opened in 1978, and have wooden track?",
    "question_th": "รถไฟเหาะที่เปิดในปี 1978 และมีรางไม้ชื่ออะไร?",
    "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_en": "Which year opened has le monstre coaster?",
    "question_th": "ปีไหนเปิดมี 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_en": "Which coaster is located in sandusky, Ohio?",
    "question_th": "รถไฟเหาะใดที่ตั้งอยู่ในเมืองแซนดัสกี รัฐโอไฮโอ",
    "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_en": "Which year opened is located in west mifflin, pennsylvania?",
    "question_th": "ปีใดที่เปิดตั้งอยู่ในเวสต์มิฟฟลิน รัฐเพนซิลวาเนีย",
    "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_en": "What is the lowest league cup goals for the entry with fa cup goals greater than 0 and FA cup apps larger than 2?",
    "question_th": "ประตูลีกคัพต่ำสุดสำหรับรายการที่มีประตูเอฟเอคัพมากกว่า 0 และแอปเอฟเอคัพมากกว่า 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_en": "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?",
    "question_th": "ผลรวมของการลงเล่นในลีกคัพสำหรับผู้เล่นโดยมีเป้าหมายเอฟเอ คัพ มากกว่า 0 และเอฟเอ คัพ น้อยกว่า 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_en": "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?",
    "question_th": "นักเตะที่ลงเล่นในลีก คัพ มากที่สุดโดยทำประตูในลีก คัพ 0 ประตู และเอฟเอ คัพ 2 ประตู และ 4 ประตูในลีกคือเท่าไร?",
    "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_en": "What game was played at Omni Coliseum with a w 105-95 score?",
    "question_th": "ออมนิ โคลีเซียม เล่นเกมอะไรด้วยสกอร์ 105-95?",
    "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_en": "When did the team have a 10-8 record?",
    "question_th": "ทีมมีสถิติ 10-8 เมื่อใด?",
    "context": "CREATE TABLE table_name_26 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_43 WHERE record = \"11-8\"",
    "question_en": "When was 11-8 the record?",
    "question_th": "11-8 เป็นสถิติเมื่อไหร่?",
    "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_en": "What is the total number for the position that has less than 2 draws, less than 9 losses and more than 24?",
    "question_th": "จำนวนรวมของตำแหน่งที่มีการเสมอน้อยกว่า 2 ครั้ง แพ้น้อยกว่า 9 ครั้ง และมากกว่า 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_en": "What is the highest played with more than 0 draws, less than 3 losses, and less than 27 points?",
    "question_th": "การเล่นสูงสุดโดยเสมอมากกว่า 0 แพ้น้อยกว่า 3 และน้อยกว่า 27 แต้มคืออะไร?",
    "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_en": "What is the total number played with 8 points and a position more than 6?",
    "question_th": "แต้มรวมที่เล่นได้ 8 แต้ม และตำแหน่งเกิน 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_en": "What is the total number played with 1 drawn, and less than 7 points?",
    "question_th": "เสมอกัน 1 แต้มรวมเล่นได้น้อยกว่า 7 แต้มเป็นเท่าไหร่?",
    "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_en": "What is the most silver when bronze is more than 1 and total is more than 48?",
    "question_th": "เงินมากที่สุดคืออะไรเมื่อทองแดงมากกว่า 1 และรวมมากกว่า 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_en": "what is the most bronze when the total is 9?",
    "question_th": "บรอนซ์มากที่สุดเมื่อรวมเป็น 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_en": "what is the least bronze when the nation is soviet union and the total is less than 11?",
    "question_th": "บรอนซ์น้อยที่สุดเมื่อประเทศเป็นสหภาพโซเวียตและรวมน้อยกว่า 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_en": "What is the category when Hy Conrad nominated in 2003?",
    "question_th": "หมวดหมู่คืออะไรเมื่อ Hy Conrad ได้รับการเสนอชื่อเข้าชิงในปี 2546?",
    "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_en": "What is the long figure when gain is less than 0?",
    "question_th": "ตัวเลขยาวเมื่อกำไรน้อยกว่า 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_en": "What is the loss when the average/gain is less than 16.7, gain is 104 and long is larger than 4?",
    "question_th": "อะไรคือการสูญเสียเมื่อค่าเฉลี่ย/กำไรน้อยกว่า 16.7, กำไรคือ 104 และระยะยาวมากกว่า 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_en": "What is the time for Estonia with sc/d notes?",
    "question_th": "เวลาเอสโตเนียที่มีบันทึก sc/d คืออะไร?",
    "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_en": "What is the time for the rank after 5 with sc/d notes?",
    "question_th": "อันดับหลัง 5 พร้อมโน้ต sc/d กี่โมงคะ?",
    "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_en": "What was Law Hiu Fung's time?",
    "question_th": "เวลาของ Law Hiu Fung คืออะไร?",
    "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_en": "What is the time for the rank after 5 with sc/d notes?",
    "question_th": "อันดับหลัง 5 พร้อมโน้ต sc/d กี่โมงคะ?",
    "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_en": "What is the highest rank for a 6:52.70 time and notes of sa/b?",
    "question_th": "อันดับสูงสุดสำหรับเวลา 6:52.70 และบันทึกของ 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_en": "What is the lowest rank that has paul biedermann as the name?",
    "question_th": "อันดับต่ำสุดที่มีชื่อ Paul Bidermann คืออะไร?",
    "context": "CREATE TABLE table_name_31 (rank INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_32 WHERE rank = 2",
    "question_en": "What nationality has 2 as the rank?",
    "question_th": "สัญชาติอะไรมี 2 อันดับ?",
    "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_en": "What is the highest lane that has nimrod shapira bar-or as the name?",
    "question_th": "เลนที่สูงที่สุดที่มีแถบนิโรดชาปิราหรือชื่อคืออะไร?",
    "context": "CREATE TABLE table_name_38 (lane INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT MAX(year) FROM table_name_44 WHERE result = \"nominated\"",
    "question_en": "What is the latest year they were nominated?",
    "question_th": "พวกเขาได้รับการเสนอชื่อเข้าชิงปีล่าสุดคือปีใด?",
    "context": "CREATE TABLE table_name_44 (year INTEGER, result VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_22 WHERE category = \"choice tv actor: drama\"",
    "question_en": "What is the result of the choice tv actor: drama category?",
    "question_th": "ผลการคัดเลือกนักแสดงโทรทัศน์ประเภทละครเป็นอย่างไร?",
    "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_en": "Which Drawn has a Position smaller than 8, and a Played smaller than 14?",
    "question_th": "การจับฉลากใดที่มีตำแหน่งน้อยกว่า 8 และตำแหน่งที่เล่นน้อยกว่า 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örishofen\"",
    "question_en": "Which Points have a Drawn smaller than 2, and a Lost of 12, and a Name of ev bad wörishofen?",
    "question_th": "คะแนนใดที่มีการเสมอน้อยกว่า 2 และแพ้ 12 และชื่อของ ev bad wörishofen?",
    "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_en": "What place did Lee Westwood finish in?",
    "question_th": "Lee Westwood จบอันดับที่ไหน?",
    "context": "CREATE TABLE table_name_74 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_15 WHERE score = 67 - 68 = 135",
    "question_en": "What is the to par score of the player that had a score of 67-68=135?",
    "question_th": "คะแนนพาร์ของผู้เล่นที่มีคะแนน 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_en": "What Televote Points had a Final Points score of 2?",
    "question_th": "คะแนน Televote ใดที่มีคะแนนสุดท้ายคือ 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_en": "Which Draw had 8 Televote Points?",
    "question_th": "งวดไหนมี 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_en": "What was the Jury Points value when there were 3 Televote Points?",
    "question_th": "คะแนนคณะลูกขุนมีมูลค่าเท่าใดเมื่อมีคะแนน Televote 3 คะแนน",
    "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_en": "Which player was +4 to par and won the Open in 1995?",
    "question_th": "ผู้เล่นคนไหนได้ +4 พาร์และคว้าแชมป์โอเพ่นในปี 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_en": "Which player has a to par of +8?",
    "question_th": "ผู้เล่นคนไหนมีพาร์ถึง +8?",
    "context": "CREATE TABLE table_name_81 (player VARCHAR, to_par VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_16 WHERE rank < 2",
    "question_en": "What country is ranked smaller than 2?",
    "question_th": "ประเทศใดมีอันดับน้อยกว่า 2?",
    "context": "CREATE TABLE table_name_16 (country VARCHAR, rank INTEGER)"
  },
  {
    "answer": "SELECT rank FROM table_name_70 WHERE time = \"6:50.48\"",
    "question_en": "What is the rank when the time is 6:50.48?",
    "question_th": "เวลา 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_en": "What is the highest rank with the notes of sa/b, and a time of 6:39.07?",
    "question_th": "อันดับสูงสุดด้วยโน้ต sa/b คือเวลา 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_en": "What shows for notes when rank is more than 4, and country is South Korea?",
    "question_th": "อะไรจะแสดงหมายเหตุเมื่ออันดับมากกว่า 4 และประเทศคือเกาหลีใต้",
    "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_en": "What is the First Issue date of Bamboo Blade?",
    "question_th": "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_en": "What is the First issue date of the title with a Last Issue of July 2010?",
    "question_th": "วันที่ออกครั้งแรกของชื่อเรื่องกับฉบับสุดท้ายของเดือนกรกฎาคม 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_en": "What is the First Issue date of Soul Eater?",
    "question_th": "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_en": "What is the Author of the Title with a First Issue of September 2010?",
    "question_th": "ผู้แต่งชื่อเรื่องฉบับแรกของเดือนกันยายน 2010 คือใคร?",
    "context": "CREATE TABLE table_name_87 (author VARCHAR, first_issue VARCHAR)"
  },
  {
    "answer": "SELECT author FROM table_name_1 WHERE last_issue = \"ongoing\"",
    "question_en": "What is the Author of the Title with an Ongoing Last Issue?",
    "question_th": "ผู้แต่งชื่อเรื่องที่มีฉบับล่าสุดที่กำลังดำเนินอยู่คืออะไร?",
    "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_en": "What is the highest number of losses for Presidente Hayes, when the draws were more than 4?",
    "question_th": "จำนวนการสูญเสียสูงสุดของประธานาธิบดีเฮย์สเมื่อเสมอมากกว่า 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_en": "What is the number of wins when position was larger than 6, and conceded was smaller than 19?",
    "question_th": "จำนวนชัยชนะเมื่อตำแหน่งมากกว่า 6 และยอมรับน้อยกว่า 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_en": "What is the number of losses when there were less than 4 draws, and points were 9?",
    "question_th": "เสมอน้อยกว่า 4 นัด มี 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_en": "What is the number of wins when scored was less than 26, and conceded was larger than 23?",
    "question_th": "จำนวนชัยชนะเมื่อคะแนนน้อยกว่า 26 และยอมรับมากกว่า 23 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_25 (wins INTEGER, scored VARCHAR, conceded VARCHAR)"
  },
  {
    "answer": "SELECT series FROM table_name_61 WHERE season = 2009",
    "question_en": "What was the series in season 2009?",
    "question_th": "ซีรีส์อะไรในซีซั่น 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_en": "What was the lowest amount of wins before season 2009 for 97 points?",
    "question_th": "จำนวนชัยชนะที่ต่ำที่สุดก่อนฤดูกาล 2009 คือ 97 แต้ม?",
    "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_en": "How many wins had a podium larger than 6 after season 2008?",
    "question_th": "มีชัยชนะกี่ครั้งที่มีโพเดี้ยมมากกว่า 6 หลังฤดูกาล 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_en": "what is the date for the week larger than 1 and the opponent detroit lions?",
    "question_th": "วันที่ในสัปดาห์ที่มากกว่า 1 และฝ่ายตรงข้ามดีทรอยต์ไลออนส์คือวันที่เท่าไร?",
    "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_en": "what is the lowest week when the attendance is 54,714?",
    "question_th": "สัปดาห์ใดต่ำสุดที่มีผู้เข้าร่วม 54,714 คน?",
    "context": "CREATE TABLE table_name_41 (week INTEGER, attendance VARCHAR)"
  },
  {
    "answer": "SELECT athlete FROM table_name_9 WHERE react = 0.248",
    "question_en": "Which Athlete has a Reaction of 0.248?",
    "question_th": "นักกีฬาคนใดมีปฏิกิริยา 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_en": "Which Rank has a Reaction of 0.198, and a Time smaller than 46.3?",
    "question_th": "อันดับใดมีปฏิกิริยา 0.198 และเวลาที่น้อยกว่า 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_en": "Which Lane has a Time larger than 47.83?",
    "question_th": "เลนใดมีเวลามากกว่า 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_en": "Which Reaction has a Rank smaller than 4, and a Nationality of trinidad and tobago, and a Time larger than 45.13?",
    "question_th": "ปฏิกิริยาใดมีอันดับน้อยกว่า 4 และมีสัญชาติตรินิแดดและโตเบโก และมีเวลามากกว่า 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_en": "Count the Rank-Final which has a Year larger than 2008, and an Apparatus of balance beam, and a Rank-Qualifying larger than 4?",
    "question_th": "นับอันดับสุดท้ายซึ่งมีปีใหญ่กว่าปี 2008 และอุปกรณ์ของคานสมดุล และอันดับที่มีคุณสมบัติมากกว่า 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_en": "Which the lowest Score-Fina has a Rank-Final of 7 and a Year larger than 2009?",
    "question_th": "คะแนนต่ำสุดใดที่ Fina มีอันดับรอบชิงชนะเลิศที่ 7 และหนึ่งปีที่มากกว่าปี 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_en": "Name the Year with a Rank-Final smaller than 2, an Apparatus of team, and a Score-Qualifying smaller than 248.275?",
    "question_th": "ตั้งชื่อปีด้วยอันดับสุดท้ายที่น้อยกว่า 2 เครื่องมือของทีม และคะแนนที่ผ่านการคัดเลือกน้อยกว่า 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_en": "What's the pick for the New York jets with a defensive end?",
    "question_th": "ตัวเลือกสำหรับเครื่องบินไอพ่นของนิวยอร์กที่มีแนวรับคืออะไร?",
    "context": "CREATE TABLE table_name_54 (pick VARCHAR, position VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT pick FROM table_name_94 WHERE college = \"georgia tech\"",
    "question_en": "What's the pick for Georgia tech?",
    "question_th": "ตัวเลือกสำหรับเทคโนโลยีจอร์เจียคืออะไร?",
    "context": "CREATE TABLE table_name_94 (pick VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_54 WHERE position = \"halfback\"",
    "question_en": "Who plays halfback?",
    "question_th": "ใครเล่นกองหลังบ้าง?",
    "context": "CREATE TABLE table_name_54 (player VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_1 WHERE college = \"washington\"",
    "question_en": "Who is the team for Washington College?",
    "question_th": "ทีมของ 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_en": "What is the Rank of the game with an Attendance of 93,039?",
    "question_th": "อันดับของเกมที่มีผู้เข้าร่วม 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_en": "What fuel system does the diesel engines model have?",
    "question_th": "เครื่องยนต์ดีเซลรุ่นมีระบบเชื้อเพลิงแบบใด?",
    "context": "CREATE TABLE table_name_60 (fuel_system VARCHAR, model VARCHAR)"
  },
  {
    "answer": "SELECT displacement FROM table_name_64 WHERE model = \"petrol engines\"",
    "question_en": "What is the displacement for the petrol engines model?",
    "question_th": "เครื่องยนต์เบนซินมีระยะการกระจัดเท่าไร?",
    "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_en": "What is the size of the 2009 electorate for Gwalior Rural?",
    "question_th": "เขตเลือกตั้งสำหรับเขต Gwalior Rural ในปี 2009 มีขนาดเท่าใด",
    "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_en": "Who was eliminated that entered after number 3 and lasted 35:55?",
    "question_th": "ใครตกรอบที่เข้ามาหลังหมายเลข 3 และอยู่ได้ 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_en": "What is the average year in which the finish position was 13th?",
    "question_th": "ค่าเฉลี่ยปีที่เข้าเส้นชัยคืออันดับที่ 13 คือเท่าไร?",
    "context": "CREATE TABLE table_name_30 (year INTEGER, position VARCHAR)"
  },
  {
    "answer": "SELECT AVG(year) FROM table_name_68 WHERE competition = \"olympic games\"",
    "question_en": "What is the average year for the Olympic Games?",
    "question_th": "ปีเฉลี่ยของการแข่งขันกีฬาโอลิมปิกคือเท่าไร?",
    "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_en": "What is the Label of the September 20, 2008 release with Catalog number RTRADCD491?",
    "question_th": "ป้ายชื่อของการวางจำหน่ายวันที่ 20 กันยายน 2551 โดยมีหมายเลขแค็ตตาล็อก 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_en": "What is the Format of the September 22, 2008 release with Catalog number RTRADCD491?",
    "question_th": "รูปแบบของการเปิดตัววันที่ 22 กันยายน 2551 โดยมีหมายเลขแค็ตตาล็อก RTRADCD491 คืออะไร",
    "context": "CREATE TABLE table_name_41 (format VARCHAR, catalog VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT format FROM table_name_15 WHERE catalog = \"rtradlp491\"",
    "question_en": "What is the Format of the release with Catalog number RTRADLP491?",
    "question_th": "รูปแบบของการเปิดตัวที่มีหมายเลขแคตตาล็อก RTRADLP491 คืออะไร?",
    "context": "CREATE TABLE table_name_15 (format VARCHAR, catalog VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_51 WHERE catalog = \"2508668\"",
    "question_en": "What is the Label of the Release with Catalog number 2508668?",
    "question_th": "ฉลากการวางจำหน่ายพร้อมหมายเลขแค็ตตาล็อก 2508668 คืออะไร",
    "context": "CREATE TABLE table_name_51 (label VARCHAR, catalog VARCHAR)"
  },
  {
    "answer": "SELECT format FROM table_name_86 WHERE catalog = \"2508668\"",
    "question_en": "What is the Format of the release with Catalog number 2508668?",
    "question_th": "รูปแบบของการเปิดตัวที่มีหมายเลขแคตตาล็อก 2508668 คืออะไร?",
    "context": "CREATE TABLE table_name_86 (format VARCHAR, catalog VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_name_29 WHERE label = \"warner music canada\"",
    "question_en": "What is the Region of the Warner Music Canada Label release?",
    "question_th": "การเปิดตัวค่ายเพลง Region of the Warner Music Canada คืออะไร?",
    "context": "CREATE TABLE table_name_29 (region VARCHAR, label VARCHAR)"
  },
  {
    "answer": "SELECT developer_s_ FROM table_name_68 WHERE game = \"portal\"",
    "question_en": "Who were the developers for Portal?",
    "question_th": "ใครคือผู้พัฒนาพอร์ทัล?",
    "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_en": "Who were the developers for the Action RPG made after 2010?",
    "question_th": "ใครคือผู้พัฒนาเกม Action RPG ที่สร้างขึ้นหลังปี 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_en": "Which Callsign has an IATA of tr?",
    "question_th": "Callsign ใดมี IATA เป็น tr",
    "context": "CREATE TABLE table_name_4 (callsign VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT commenced_operations FROM table_name_10 WHERE airline = \"valuair\"",
    "question_en": "Which Commenced operations have an Airline of valuair?",
    "question_th": "ซึ่งเริ่มดำเนินการแล้วมีสายการบินของ 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_en": "Which Commenced operations have an Airline of valuair?",
    "question_th": "ซึ่งเริ่มดำเนินการแล้วมีสายการบินของ valuair?",
    "context": "CREATE TABLE table_name_39 (commenced_operations INTEGER, airline VARCHAR)"
  },
  {
    "answer": "SELECT iata FROM table_name_14 WHERE icao = \"slk\"",
    "question_en": "Which IATA has a ICAO of slk?",
    "question_th": "IATA ใดมี ICAO เป็น slk",
    "context": "CREATE TABLE table_name_14 (iata VARCHAR, icao VARCHAR)"
  },
  {
    "answer": "SELECT SUM(viewers) FROM table_name_71 WHERE rank < 2",
    "question_en": "How many Viewers have a Rank smaller than 2?",
    "question_th": "มีผู้ชมกี่คนที่อันดับน้อยกว่า 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_en": "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?",
    "question_th": "ลองจิจูดสำหรับเขตการปกครองท้องถิ่นที่มีรหัส ANSI น้อยกว่า 1036534, น้ำ (ตร.ม.) เท่ากับ 0 และ GEO ID มากกว่า 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_en": "What is the population in 2010 for the longitude of -97.578927?",
    "question_th": "จำนวนประชากรในปี 2010 สำหรับลองจิจูดที่ -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_en": "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?",
    "question_th": "จำนวนประชากรทั้งหมดในปี 2010 สำหรับเขตเมืองที่ตั้งอยู่ใน Mountrail ซึ่งมีที่ดินน้อยกว่า 34.424 ตารางไมล์ และ GEO ID น้อยกว่า 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_en": "What is the highest recorded latitude for the township that has an ANSI code greater than 1759541 and a population in 2010 of 72?",
    "question_th": "ละติจูดสูงสุดที่บันทึกไว้สำหรับเมืองที่มีรหัส ANSI มากกว่า 1759541 และจำนวนประชากรในปี 2010 จาก 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_en": "Which Athlete has a Rank larger than 1, and a Lane larger than 7, and a Nationality of china?",
    "question_th": "นักกีฬาคนใดที่มีอันดับมากกว่า 1 และเลนมากกว่า 7 และมีสัญชาติจีน",
    "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_en": "How many Lanes have a Time larger than 13.59, and a Rank larger than 8?",
    "question_th": "มีกี่เลนที่มีเวลามากกว่า 13.59 และมีอันดับมากกว่า 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_en": "How many lanes have a Nationality of france, and a Rank larger than 8?",
    "question_th": "มีกี่เลนที่มีสัญชาติฝรั่งเศสและมีอันดับมากกว่า 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_en": "What game was developed by Nintendo for the Gamecube platform?",
    "question_th": "เกมใดที่ Nintendo พัฒนาขึ้นสำหรับแพลตฟอร์ม Gamecube",
    "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_en": "What is the genre of Super Mario Galaxy?",
    "question_th": "ประเภทของคืออะไร 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_en": "What is the highest population for the province having a rank under 5?",
    "question_th": "จังหวัดที่มีอันดับต่ำกว่า 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_en": "What's the comp for 1998-04-22?",
    "question_th": "คอมพ์สำหรับปี 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_en": "What's the score at Olympic Stadium Tokyo, Japan?",
    "question_th": "สนามกีฬาโอลิมปิก สเตเดี้ยม โตเกียว ประเทศญี่ปุ่น คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_49 (score VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT comp FROM table_name_60 WHERE venue = \"olympic stadium tokyo, japan\"",
    "question_en": "What's the comp in Olympic Stadium Tokyo, Japan?",
    "question_th": "คอมพ์ที่สนามกีฬาโอลิมปิกโตเกียว ประเทศญี่ปุ่นมีอะไรบ้าง?",
    "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_en": "What's the report in King Baudouin Stadium Brussels, Belgium?",
    "question_th": "รายงานที่สนามคิง โบดวง สเตเดี้ยม บรัสเซลส์ ประเทศเบลเยียม ว่าไงบ้าง?",
    "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_en": "What is the Percentage Lost for the contestant with a starting weight above 102 kg who lost 46.9 kg?",
    "question_th": "เปอร์เซ็นต์การสูญเสียของผู้แข่งขันที่มีน้ำหนักเริ่มต้นมากกว่า 102 กก. และลดน้ำหนักได้ 46.9 กก. เป็นเท่าใด",
    "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_en": "What lane has a time of 1:57.71?",
    "question_th": "เลนใดมีเวลา 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_en": "Who had a larger rank than 3, less than 6 lanes, and a time of 1:58.15?",
    "question_th": "ใครมีอันดับมากกว่า 3 น้อยกว่า 6 เลน และเวลา 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_en": "Which Crude death rate (per 1000) has Deaths of 768, and a Crude birth rate (per 1000) smaller than 29.7?",
    "question_th": "อัตราการเสียชีวิตแบบหยาบ (ต่อ 1,000) ใดที่มีการเสียชีวิต 768 ราย และอัตราการเกิดแบบหยาบ (ต่อ 1,000) น้อยกว่า 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_en": "Which Attendance has an Opponent of perth glory, and a Round of 9?",
    "question_th": "การเข้าร่วมทีมใดที่มีคู่ต่อสู้แห่งความรุ่งโรจน์จากเพิร์ธ และรอบ 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_en": "What is the lowest rank of rider darren gilpin?",
    "question_th": "อันดับต่ำสุดของไรเดอร์ ดาร์เรน กิลพิน คือเท่าไร?",
    "context": "CREATE TABLE table_name_91 (rank INTEGER, rider VARCHAR)"
  },
  {
    "answer": "SELECT MAX(rank) FROM table_name_66 WHERE rider = \"colin martin\"",
    "question_en": "What is the highest rank of rider colin martin?",
    "question_th": "คอลิน มาร์ติน นักบิดที่มียศสูงที่สุดคืออะไร?",
    "context": "CREATE TABLE table_name_66 (rank INTEGER, rider VARCHAR)"
  },
  {
    "answer": "SELECT tuesday FROM table_name_77 WHERE monday = \"fox sports primetime\"",
    "question_en": "What is shown on Tuesday when Monday is showing Fox Sports Primetime?",
    "question_th": "สิ่งที่แสดงในวันอังคารเมื่อวันจันทร์แสดง 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_en": "What is shown on Friday when Tuesday is Jay Mohr Sports?",
    "question_th": "สิ่งที่แสดงในวันศุกร์เมื่อวันอังคารคือ 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_en": "What is shown on Friday when Monday is Fox Sports Primetime?",
    "question_th": "สิ่งที่แสดงในวันศุกร์เมื่อวันจันทร์เป็น 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_en": "What is shown on Tuesday when Thursday shows Fox Sports Tonight (ends 1 am next day)?",
    "question_th": "สิ่งที่แสดงในวันอังคารเมื่อวันพฤหัสบดีแสดง Fox Sports Tonight (สิ้นสุด 01.00 น. ของวันถัดไป)?",
    "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_en": "What is shown on Tuesday when Wednesday is Fox Sports Tonight (ends 1 am next day)?",
    "question_th": "สิ่งที่แสดงในวันอังคารเมื่อวันพุธเป็น Fox Sports Tonight (สิ้นสุด 01.00 น. ของวันถัดไป)?",
    "context": "CREATE TABLE table_name_59 (tuesday VARCHAR, wednesday VARCHAR)"
  },
  {
    "answer": "SELECT capacity FROM table_name_37 WHERE class = \"4c3h\"",
    "question_en": "Which capacity has the class 4c3h?",
    "question_th": "ความจุใดมีคลาส 4c3h?",
    "context": "CREATE TABLE table_name_37 (capacity VARCHAR, class VARCHAR)"
  },
  {
    "answer": "SELECT navigator FROM table_name_3 WHERE driver = \"james\"",
    "question_en": "What is the navigator for James?",
    "question_th": "เครื่องนำทางสำหรับเจมส์คืออะไร?",
    "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_en": "How much time did Coad make when the margin was 04:02?",
    "question_th": "Coad ทำเวลาได้เท่าไหร่เมื่อระยะขอบคือ 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_en": "What class has a capacity smaller than 3384 for Ferguson?",
    "question_th": "คลาสใดมีความจุน้อยกว่า 3384 สำหรับเฟอร์กูสัน?",
    "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_en": "What is the total number of places for a song with a draw of 21 and more than 36 points?",
    "question_th": "เพลงหนึ่งได้ 21 คะแนนและมากกว่า 36 คะแนนรวมได้อันดับที่เท่าไร?",
    "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_en": "What is the lowest numbered game against Phoenix with a record of 29-17?",
    "question_th": "เกมไหนที่มีเลขน้อยที่สุดกับฟีนิกซ์ด้วยสถิติ 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_en": "what is the soap opera when the duration is 18 years and the character is miley byrne?",
    "question_th": "ละครคืออะไรเมื่อมีความยาว 18 ปี และตัวละครคือ ไมลีย์ เบิร์น?",
    "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_en": "what is the years when the duration is 13 years and the character is renee phelan?",
    "question_th": "กี่ปีที่มีระยะเวลา 13 ปี และตัวละครคือ เรเน่ ฟีแลน?",
    "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_en": "what is the years when the soap opera is glenroe and the actor is mick lally?",
    "question_th": "กี่ปีที่ละครคือ Glenroe และนักแสดงคือ 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_en": "who is the actor when the character is dinny byrne?",
    "question_th": "ใครคือนักแสดงเมื่อตัวละครคือดินนี่ เบิร์น?",
    "context": "CREATE TABLE table_name_8 (actor VARCHAR, character VARCHAR)"
  },
  {
    "answer": "SELECT soap_opera FROM table_name_11 WHERE actor = \"dave duffy\"",
    "question_en": "what is the soap opera when the actor is dave duffy?",
    "question_th": "ละครคืออะไรเมื่อนักแสดงคือเดฟ ดัฟฟี่?",
    "context": "CREATE TABLE table_name_11 (soap_opera VARCHAR, actor VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_50 WHERE tie_no = \"11\"",
    "question_en": "What is the score for the game with an 11 tie number?",
    "question_th": "เกมนี้เลข 11 เสมอกันมีสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_50 (score VARCHAR, tie_no VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_76 WHERE away_team = \"ipswich town\"",
    "question_en": "What date was Ipswich Town the away team?",
    "question_th": "อิปสวิช ทาวน์ เป็นทีมเยือนวันไหน?",
    "context": "CREATE TABLE table_name_76 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT owner FROM table_name_29 WHERE format = \"hot adult contemporary\"",
    "question_en": "Who is the owner with a Hot Adult Contemporary format?",
    "question_th": "ใครเป็นเจ้าของรูปแบบ Hot Adult Contemporary?",
    "context": "CREATE TABLE table_name_29 (owner VARCHAR, format VARCHAR)"
  },
  {
    "answer": "SELECT call_sign FROM table_name_43 WHERE branding = \"the q\"",
    "question_en": "What's the call sign of The Q?",
    "question_th": "สัญญาณเรียกขานของ 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_en": "What's the call sign for Jack FM?",
    "question_th": "สัญญาณเรียกขานของ 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_en": "What is the average year for a Saar of FK Pirmasens and Hessen of Wormatia Worms?",
    "question_th": "ปีเฉลี่ยของ Saar of FK Pirmasens และ 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_en": "What is the smallest year for a Main of Eintracht Frankfurt, Rhein of Waldhof Mannheim, Sarr of FK Pirmasens, and Hessen of Wormatia Worms?",
    "question_th": "ปีที่เล็กที่สุดสำหรับตัวหลักอย่างไอน์ทรัค แฟรงก์เฟิร์ต, ไรน์ของวัลด์ฮอฟ มันน์ไฮม์, ซาร์ของเอฟเค เพียร์มาเซินส์ และเฮสเซินของวอร์มาเทียเวิร์มคือปีใด",
    "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_en": "Which year has a Main of Eintracht Frankfurt and Hessen of FSV Mainz 05?",
    "question_th": "ปีไหนที่มีตัวหลักของไอน์ทรัค แฟร้งค์เฟิร์ต และเฮสเซ่นของ 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_en": "Who was the Hessen the year that Saar was FK Pirmasens?",
    "question_th": "เฮสเซ่นคือใครในปีที่ซาร์คือ 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_en": "What's the series of Buddy The Woodsman by director Jack King?",
    "question_th": "Buddy The Woodsman ผลงานของผู้กำกับ แจ็ค คิง คือซีรีส์เรื่องใด",
    "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_en": "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?",
    "question_th": "ใครคือผู้กำกับภาพยนตร์เรื่องนี้ซึ่งมีกำหนดออกฉายคือ 1934-09-15, ซีรีส์ MM และจำนวนการผลิตน้อยกว่า 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_en": "Who's the director of Buddy of the Apes?",
    "question_th": "ใครเป็นผู้กำกับ 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_en": "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?",
    "question_th": "ชื่อของภาพยนตร์ที่กำกับโดย Friz Freleng ในซีรีส์ MM จำนวนการผลิตมากกว่า 6209 และวันที่ออกฉายคือ 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_en": "What is the lowest time for Paulo Villar in lane 9?",
    "question_th": "เวลาต่ำสุดของ Paulo Villar ในเลน 9 คือเวลาใด?",
    "context": "CREATE TABLE table_name_85 (time INTEGER, athlete VARCHAR, lane VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_78 WHERE lane = 4",
    "question_en": "What is the nationality of lane 4?",
    "question_th": "เลน 4 มีสัญชาติอะไร?",
    "context": "CREATE TABLE table_name_78 (nationality VARCHAR, lane VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_55 WHERE time = 13.21",
    "question_en": "What is the nationality with a 13.21 time?",
    "question_th": "เวลา 13.21 น. สัญชาติอะไร?",
    "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_en": "What increase in net assets also has $5,617,236 as the total expenses?",
    "question_th": "สินทรัพย์สุทธิที่เพิ่มขึ้นใดที่มีค่าใช้จ่ายรวม $5,617,236?",
    "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_en": "How many Gold medals did Puerto Rico receive with 1 Silver and a Total of 1 or less?",
    "question_th": "เปอร์โตริโกได้รับเหรียญทองจำนวนเท่าใดด้วย 1 เหรียญเงินและรวม 1 เหรียญหรือน้อยกว่า",
    "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_en": "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?",
    "question_th": "จำนวนเหรียญทั้งหมดของประเทศที่มี 7 เหรียญทองแดงหรือน้อยกว่า และ 1 เหรียญเงินที่มีอันดับ 9 ขึ้นไปคือเท่าใด",
    "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_en": "How many Silver medals did the Nation with 10 or more Bronze receive?",
    "question_th": "ประเทศชาติที่มี 10 เหรียญทองแดงขึ้นไปได้รับเหรียญเงินกี่เหรียญ?",
    "context": "CREATE TABLE table_name_73 (silver INTEGER, bronze INTEGER)"
  },
  {
    "answer": "SELECT AVG(wins) FROM table_name_72 WHERE draws < 0",
    "question_en": "what is the average wins when draws is less than 0?",
    "question_th": "ชัยชนะโดยเฉลี่ยเมื่อเสมอน้อยกว่า 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_en": "what is the average losses when the club is warrnambool and wins is less than 12?",
    "question_th": "การสูญเสียโดยเฉลี่ยเมื่อสโมสรอยู่ที่วาร์นัมบุลและชนะน้อยกว่า 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_en": "what is the most losses when the club is terang and draws is less than 0?",
    "question_th": "สโมสรตรังและเสมอน้อยกว่า 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_en": "What is the sum of losses when wins is more than 6, club is camperdown and against is more than 1238?",
    "question_th": "ผลรวมของการสูญเสียเมื่อชนะมากกว่า 6 สโมสรอยู่แคมป์และต่อต้านมากกว่า 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_en": "What is the drew for the 1999-2000 season when they were in third place?",
    "question_th": "อะไรคือผลเสมอในฤดูกาล 1999-2000 เมื่อพวกเขาอยู่อันดับสาม?",
    "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_en": "What competition did they have 1 lost, 3 draws, and played 9 games?",
    "question_th": "ในรายการไหนที่พวกเขาแพ้ 1 เสมอ 3 ลงเล่น 9 นัด?",
    "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_en": "What is the number of draws when the played 9 and lost 3?",
    "question_th": "เสมอกันเมื่อเล่น 9 แพ้ 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_en": "How many cable channels have callsign CBFT-DT?",
    "question_th": "เคเบิลทีวีมีสัญญาณเรียก 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_en": "What is the lowest Digital PSIP for channels over 29 with callsign CFTU-DT?",
    "question_th": "Digital PSIP ต่ำสุดสำหรับช่องสัญญาณมากกว่า 29 ที่มีสัญญาณเรียก 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_en": "What is the Digital PSIP for channels over 15 with callsign CFTU-DT?",
    "question_th": "Digital PSIP สำหรับช่องสัญญาณมากกว่า 15 ช่องที่มีสัญญาณเรียก 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_en": "Where was the location of the Mong Kok Stadium?",
    "question_th": "ที่ตั้งของ สนามกีฬามงก๊ก อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_12 (location VARCHAR, home_ground VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_name_95 WHERE home_ground = \"n/a\"",
    "question_en": "Which club, had a home ground of n/a?",
    "question_th": "สโมสรใดมีสนามเหย้าไม่มี?",
    "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_en": "What is the location for the first division, Sun Pegasus Club?",
    "question_th": "ที่ตั้งของดิวิชั่น 1 ซันเพกาซัสคลับอยู่ที่ไหน?",
    "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_en": "What division is Sai Kung in?",
    "question_th": "ไซกุงอยู่แผนกไหนครับ?",
    "context": "CREATE TABLE table_name_29 (league_division VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT league_division FROM table_name_6 WHERE club = \"sun source\"",
    "question_en": "What league is Sun Source in?",
    "question_th": "Sun Source อยู่ในลีกใด?",
    "context": "CREATE TABLE table_name_6 (league_division VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT model FROM table_name_26 WHERE years = \"2004-\"",
    "question_en": "What was the model that had years 2004-?",
    "question_th": "รุ่นปี 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_en": "What was the torque@rpm of the sl 65 amg?",
    "question_th": "แรงบิด@รอบต่อนาทีของ sl 65 amg เป็นเท่าใด",
    "context": "CREATE TABLE table_name_75 (torque VARCHAR, model VARCHAR)"
  },
  {
    "answer": "SELECT model FROM table_name_67 WHERE years = \"2004-\"",
    "question_en": "What was the model that had years 2004-?",
    "question_th": "รุ่นปี 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_en": "What is the IHSAA Class for football for the team joining in 1968?",
    "question_th": "IHSAA Class สำหรับฟุตบอลสำหรับทีมที่เข้าร่วมในปี 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_en": "What is the IHSAA class for Tipton?",
    "question_th": "ระดับ IHSAA สำหรับ 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_en": "What is the rank for the person with time 11.14?",
    "question_th": "คนเวลา 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_en": "What is the rank when time is 11.15 and lane is bigger than 7 with notes Q, PB?",
    "question_th": "อันดับเมื่อเวลา 11.15 น. และเลนใหญ่กว่า 7 โดยมีโน้ต 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_en": "What is the lane for notes Q, SB and time less than 11.22?",
    "question_th": "เลนสำหรับบันทึก Q, SB และเวลาน้อยกว่า 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_en": "Which athlete is ranked less than 5 with time over 11.22?",
    "question_th": "นักกีฬาคนไหนอันดับต่ำกว่า 5 ด้วยเวลาเกิน 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_en": "How many lanes does Australia have with a reaction smaller than 0.138?",
    "question_th": "ออสเตรเลียมีกี่เลนและมีปฏิกิริยาน้อยกว่า 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_en": "Who had a reaction larger than 0.17400000000000002 and a lane larger than 6?",
    "question_th": "ใครมีปฏิกิริยาที่ใหญ่กว่า 0.17400000000000002 และเลนที่ใหญ่กว่า 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_en": "The ship MS Vistafjord has what in service for NAL?",
    "question_th": "เรือ MS Vistafjord มีบริการอะไรบ้างสำหรับ 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_en": "The ship SSBergensfjord built before 1973 has what tonnage?",
    "question_th": "เรือ SSBergensfjord สร้างขึ้นก่อนปี 1973 มีน้ำหนักเท่าไร?",
    "context": "CREATE TABLE table_name_90 (tonnage VARCHAR, built VARCHAR, ship VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_52 WHERE time = 50.92",
    "question_en": "Which nationality has a time of 50.92?",
    "question_th": "สัญชาติใดมีเวลา 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_en": "What is the time with fewer than 5 lanes for the United States?",
    "question_th": "เวลาที่มีน้อยกว่า 5 เลนสำหรับสหรัฐอเมริกาคือกี่โมง?",
    "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_en": "Which Att-Cmp has a GP-GS of 7-1?",
    "question_th": "Att-Cmp ตัวไหนมี GP-GS 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_en": "Which Att-Cmp has a TD-INT of 7-8?",
    "question_th": "Att-Cmp ตัวใดมี TD-INT เท่ากับ 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_en": "Which TD-INT has an Effic larger than 111.4?",
    "question_th": "TD-INT ใดมีประสิทธิภาพมากกว่า 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_en": "What is the total number of losses with less than 6 wins and less than 0 draws?",
    "question_th": "จำนวนการแพ้ทั้งหมดโดยชนะน้อยกว่า 6 ครั้งและเสมอน้อยกว่า 0 เป็นเท่าใด?",
    "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_en": "What is the average number of against with less than 10 losses, more than 0 draws, and more than 7 wins?",
    "question_th": "จำนวนเฉลี่ยของการแพ้น้อยกว่า 10 ครั้ง เสมอมากกว่า 0 และชนะมากกว่า 7 ครั้งเป็นเท่าใด",
    "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_en": "What is the total number of byes with more than 0 losses and 1526 against?",
    "question_th": "จำนวนบายทั้งหมดที่มีการขาดทุนมากกว่า 0 และ 1526 เทียบกับอะไร?",
    "context": "CREATE TABLE table_name_31 (byes VARCHAR, losses VARCHAR, against VARCHAR)"
  },
  {
    "answer": "SELECT MIN(draws) FROM table_name_81 WHERE byes > 2",
    "question_en": "What is the lowest number of draws with more than 2 byes?",
    "question_th": "จำนวนเสมอต่ำสุดที่มากกว่า 2 บายคือเท่าไร?",
    "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_en": "What is the lowest against of the wimmera fl warrack eagles, which have less than 16 wins?",
    "question_th": "อะไรคือสิ่งที่ต่ำที่สุดเมื่อเทียบกับ Wimmera fl warrack eagles ซึ่งชนะน้อยกว่า 16 ครั้ง?",
    "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_en": "How many races did the German racer that won less than 10 races ride?",
    "question_th": "นักแข่งชาวเยอรมันที่ชนะการแข่งขันน้อยกว่า 10 รายการขี่ไปกี่การแข่งขัน?",
    "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_en": "What is the average win as a percentage of German racer Rudi Altig, who has ridden in over 79 races?",
    "question_th": "ชัยชนะโดยเฉลี่ยเป็นเปอร์เซ็นต์ของนักแข่งชาวเยอรมัน Rudi Altig ที่ขี่ในการแข่งขันมากกว่า 79 ครั้งเป็นเท่าใด",
    "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_en": "what is the highest top-5 when cuts made is more than 39?",
    "question_th": "5 อันดับแรกสูงสุดเมื่อตัดมากกว่า 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_en": "what is the highest events when wins is more than 0 and cuts made is more than 14?",
    "question_th": "เหตุการณ์สูงสุดคืออะไรเมื่อชนะมากกว่า 0 และตัดได้มากกว่า 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_en": "what is the highest top-5 when wins is more than 1?",
    "question_th": "5 อันดับแรกสูงสุดเมื่อชนะมากกว่า 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_en": "How many times is the tournament the masters tournament and the top-10 is less than 2?",
    "question_th": "ทัวร์นาเมนต์ Masters Tournament กี่ครั้งแล้วและ 10 อันดับแรกน้อยกว่า 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_en": "What ran has noel patterson as the rider?",
    "question_th": "โนเอล แพตเตอร์สัน เป็นคนขี่อะไรวิ่ง?",
    "context": "CREATE TABLE table_name_40 (rank VARCHAR, rider VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_15 WHERE rider = \"jules croft\"",
    "question_en": "What time has jules croft as the rider?",
    "question_th": "จูลส์ ครอฟท์ เป็นคนขี่กี่โมง?",
    "context": "CREATE TABLE table_name_15 (time VARCHAR, rider VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_79 WHERE rider = \"adam barclay\"",
    "question_en": "What team has adam barclay as the rider?",
    "question_th": "ทีมไหนมีอดัม บาร์เคลย์เป็นคนขี่?",
    "context": "CREATE TABLE table_name_79 (team VARCHAR, rider VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_26 WHERE h___a = \"hurst\"",
    "question_en": "What Round has h/a hurst",
    "question_th": "What Round มี 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_en": "what game ended f-a with a round of round 1 replay",
    "question_th": "เกมไหนจบลงด้วยการเล่นซ้ำรอบ 1",
    "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_en": "what is the h/a round of round 2",
    "question_th": "รอบที่ 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_en": "What was the Role/Episode after 2006 with Ellen Burstyn as a recipient and nominee?",
    "question_th": "บทบาท/ตอนหลังจากปี 2549 คืออะไร โดยมี Ellen Burstyn เป็นผู้รับและผู้ได้รับการเสนอชื่อ",
    "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_en": "For which Category was Outstanding Main Title Design a Recipient and nominee?",
    "question_th": "ประเภทใดที่เป็นผู้รับและผู้ได้รับการเสนอชื่อในการออกแบบหัวข้อหลักดีเด่น",
    "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_en": "Which Category was from before 2009 with a Role/Episode of Libby Goldstein and Junie Lowry-Johnson?",
    "question_th": "หมวดหมู่ใดที่มาจากก่อนปี 2009 โดยมีบทบาท/ตอนของ Libby Goldstein และ 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_en": "Which Category were Libby Goldstein and Junie Lowry-Johnson recipients and nominees for?",
    "question_th": "หมวดหมู่ใดที่เป็นผู้รับและผู้ได้รับการเสนอชื่อเข้าชิง Libby Goldstein และ Junie Lowry-Johnson",
    "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_en": "what is the highest runners when the jockey is frankie dettori and the placing is higher than 1?",
    "question_th": "นักวิ่งที่สูงที่สุดคืออะไรเมื่อนักจัดรายการคือแฟรงกี้ เดตโทริ และอันดับสูงกว่า 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_en": "what is the race when the jockey is frankie dettori, the margin is more than 3 and the course is yarmouth?",
    "question_th": "การแข่งขันจะเป็นอย่างไรเมื่อจ๊อกกี้คือแฟรงกี้ เดตโตริ ระยะขอบมากกว่า 3 และสนามคือยาร์เมาท์?",
    "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_en": "Who is the Partner in the match with a Score of 6-4, 2-6, 7-6?",
    "question_th": "คู่หูในการแข่งขันด้วยสกอร์ 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_en": "what is the competition when the result is won and the date is september 13, 1996?",
    "question_th": "แข่งขันอะไรคะเมื่อผลชนะเลิศและวันที่ 13 กันยายน 2539?",
    "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_en": "what is the date when the competition is 1996 tiger cup and the result is drew?",
    "question_th": "แข่งขันไทเกอร์คัพ 1996 และผลการจับสลากวันที่เท่าไหร่?",
    "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_en": "what is the score when the competition is 1995 southeast asian games?",
    "question_th": "ในการแข่งขันกีฬาเอเชี่ยนเกมส์ 1995 ได้คะแนนเท่าไหร่?",
    "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_en": "what is the result when the venue is singapore on september 8, 1996?",
    "question_th": "ผลเป็นอย่างไรเมื่อสถานที่จัดงานในสิงคโปร์เมื่อวันที่ 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_en": "what is the competition when the result is won and the score is 8-0?",
    "question_th": "การแข่งขันจะเป็นเช่นไรเมื่อผลชนะและสกอร์ 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_en": "Waht laps have points smaller than 1, and a team of dale coyne racing, and the grid larger than 13?",
    "question_th": "รอบมีคะแนนน้อยกว่า 1 และทีมแข่งเดลคอยน์และกริดใหญ่กว่า 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_en": "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?",
    "question_th": "จำนวนรอบรวมสำหรับทีมผู้เล่นในทีม และมีตาราง 9 และคะแนนมากกว่า 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_en": "What is the lowest points for a time/retired of +30.7 secs, and laps smaller than 165?",
    "question_th": "จุดต่ำสุดสำหรับเวลา/เกษียณที่ +30.7 วินาที และรอบน้อยกว่า 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_en": "Who was the team 2 in the game with a team 1 of Liege Basket?",
    "question_th": "ใครคือทีมที่ 2 ในเกมกับทีมที่ 1 ของลีแอช บาสเก็ต?",
    "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_en": "What was the 2nd leg score in the matchup with a team 2 of KK Borac?",
    "question_th": "คะแนนเลกที่ 2 ในการแข่งขันกับทีมที่ 2 ของ KK Borac คืออะไร?",
    "context": "CREATE TABLE table_name_77 (team__number2 VARCHAR)"
  },
  {
    "answer": "SELECT serial_numbers FROM table_name_28 WHERE class = \"4-8-4 — oooooooo — northern\"",
    "question_en": "What are the serial numbers for the locomotives of Class 4-8-4 — oooooooo — northern?",
    "question_th": "หมายเลขซีเรียลของตู้รถไฟชั้น 4-8-4 — ooo — ภาคเหนือ คืออะไร?",
    "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_en": "What is the fleet number for the model with Serial number 68056?",
    "question_th": "หมายเลขประจำเครื่องสำหรับรุ่นที่มีหมายเลขประจำเครื่อง 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_en": "What is the serial number of the model made in 1930?",
    "question_th": "หมายเลขซีเรียลของรุ่นที่ผลิตในปี 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_en": "What is the wheel arrangement for the model that was retired in 1955?",
    "question_th": "การจัดเรียงล้อสำหรับรุ่นที่เลิกใช้ในปี 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 → 32\"",
    "question_en": "What is the lowest number of matches that has a Clubs of 46 → 32?",
    "question_th": "จำนวนแมตช์ต่ำสุดที่มีไม้กอล์ฟ 46 → 32 คืออะไร?",
    "context": "CREATE TABLE table_name_99 (matches INTEGER, clubs VARCHAR)"
  },
  {
    "answer": "SELECT MAX(matches) FROM table_name_22 WHERE round = \"third round\"",
    "question_en": "What is the highest number of matches that has a round of Third Round?",
    "question_th": "จำนวนการแข่งขันสูงสุดที่มีรอบที่สามคือเท่าใด?",
    "context": "CREATE TABLE table_name_22 (matches INTEGER, round VARCHAR)"
  },
  {
    "answer": "SELECT prize_money FROM table_name_58 WHERE round = \"final\"",
    "question_en": "What is the prize money for the final round?",
    "question_th": "เงินรางวัลรอบสุดท้ายเป็นเท่าไหร่?",
    "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_en": "What is the date for the row with a new entries this round of 44?",
    "question_th": "แถวที่มีรายการใหม่รอบ 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_en": "Which Against has Wins of 11, and Losses smaller than 7?",
    "question_th": "ฝ่ายไหนชนะ 11 และแพ้น้อยกว่า 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_en": "Which Draws have Losses larger than 8, and a Hampden FL of terang-mortlake?",
    "question_th": "งวดใดที่มีการขาดทุนมากกว่า 8 และ Hampden FL ของ 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_en": "Which Byes have Losses smaller than 4?",
    "question_th": "Byes ใดที่มีการสูญเสียน้อยกว่า 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_en": "What's the total draws when the losses are less than 10, less than 2 byes, and 13 wins?",
    "question_th": "ผลเสมอเสมอเมื่อแพ้น้อยกว่า 10 น้อยกว่า 2 บาย และชนะ 13 ครั้งเป็นเท่าไหร่?",
    "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_en": "What's the total draws for Ararat when the byes are less than 2?",
    "question_th": "อารารัตเมื่อบายน้อยกว่า 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_en": "What's the total losses when there are 8 wins and less than 2 byes?",
    "question_th": "การสูญเสียทั้งหมดเมื่อชนะ 8 ครั้งและบายน้อยกว่า 2 ครั้งเป็นเท่าใด?",
    "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_en": "What's the least losses for Horsham Saints with more than 13 wins and less than 1211 against?",
    "question_th": "อะไรคือความพ่ายแพ้น้อยที่สุดของ Horsham Saints ที่ชนะมากกว่า 13 ครั้งและแพ้น้อยกว่า 1211 ครั้ง?",
    "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_en": "What are the draws when the losses are less than 1?",
    "question_th": "เสมอเมื่อขาดทุนน้อยกว่า 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_en": "What are the amount of wins when the draws are less than 0 and the against is 1348?",
    "question_th": "เมื่อเสมอน้อยกว่า 0 และต่อคือ 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_en": "What was the total city area for vehari city with a serial number bigger than 36?",
    "question_th": "พื้นที่เมืองทั้งหมดของเมืองเวฮารีที่มีหมายเลขซีเรียลมากกว่า 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_en": "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?",
    "question_th": "เมืองที่มีประชากรน้อยที่สุดสำหรับเขต Rajanpur ซึ่งมีพื้นที่ 6 ตารางกิโลเมตรและหมายเลขลำดับน้อยกว่า 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_en": "What is the sum of the serial numbers for narowal city?",
    "question_th": "ผลรวมเลขลำดับของเมืองนโรวัลเป็นเท่าใด?",
    "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_en": "What is the sum of the area for the bahawalnagar district with a population more than 134,936?",
    "question_th": "อำเภอบางพลีที่มีประชากรมากกว่า 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_en": "What district was the city with an area smaller than 12 square kilometers and a serial number of 35?",
    "question_th": "อำเภอใดคือเมืองที่มีพื้นที่น้อยกว่า 12 ตารางกิโลเมตร และเลขลำดับ 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_en": "After pick number 158, what is the next round a USC player was picked?",
    "question_th": "หลังจากเลือกหมายเลข 158 แล้ว ผู้เล่น USC จะถูกเลือกในรอบต่อไปคือเท่าไร?",
    "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_en": "Jim Obradovich, picked after round 2, but before pick 183, plays what position?",
    "question_th": "จิม โอบราโดวิช เลือกหลังยกที่ 2 แต่ก่อนเลือก 183 เล่นตำแหน่งอะไร?",
    "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_en": "What time has q as the notes, and Australia as the country?",
    "question_th": "เวลาใดมี q เป็นบันทึก และออสเตรเลียเป็นประเทศ",
    "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_en": "What notes have a rank greater than 2, with mexico as the country?",
    "question_th": "หมายเหตุใดมีอันดับมากกว่า 2 โดยมีเม็กซิโกเป็นประเทศ",
    "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_en": "What is the sum of bronzes for teams with more than 0 silver and a total under 1?",
    "question_th": "ผลรวมของเหรียญทองแดงสำหรับทีมที่มีมากกว่า 0 เหรียญเงินและผลรวมต่ำกว่า 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_en": "What is the average number of golds for teams with 1 bronze, less than 3 silver, and a total over 2?",
    "question_th": "จำนวนเหรียญทองโดยเฉลี่ยสำหรับทีมที่มี 1 เหรียญทองแดง น้อยกว่า 3 เหรียญเงิน และรวมมากกว่า 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_en": "What type of yacht has a LOA of 15.15 metres?",
    "question_th": "เรือยอทช์ประเภทใดที่มี LOA 15.15 เมตร",
    "context": "CREATE TABLE table_name_94 (yacht VARCHAR, loa__metres_ VARCHAR)"
  },
  {
    "answer": "SELECT soap_opera FROM table_name_81 WHERE character = \"teemu luotola\"",
    "question_en": "What Soap Opera with the character Teemu Luotola?",
    "question_th": "Soap Opera กับตัวละคร 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_en": "What beer has a record of 4.08?",
    "question_th": "เบียร์อะไรมีสถิติ 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_en": "Which round has an Opposing Team of manchester united?",
    "question_th": "รอบไหนมีทีมตรงข้ามแมนเชสเตอร์ ยูไนเต็ด?",
    "context": "CREATE TABLE table_name_64 (round VARCHAR, opposing_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_28 WHERE against > 0",
    "question_en": "Which Date has an Against larger than 0?",
    "question_th": "วันที่ใดมีค่า Against มากกว่า 0?",
    "context": "CREATE TABLE table_name_28 (date VARCHAR, against INTEGER)"
  },
  {
    "answer": "SELECT MIN(against) FROM table_name_69 WHERE round = \"fourth round\"",
    "question_en": "Which Against has a Round of fourth round?",
    "question_th": "ทีมไหนมีรอบสี่รอบ?",
    "context": "CREATE TABLE table_name_69 (against INTEGER, round VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_1 WHERE date = \"17/02/2008\"",
    "question_en": "What was the venue on 17/02/2008?",
    "question_th": "วันที่ 17/02/2551 จัดขึ้นที่ใด?",
    "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_en": "What is the average quantity for coaches manufactured in 1921/23, and had 40 seats?",
    "question_th": "ปริมาณเฉลี่ยของรถโค้ชที่ผลิตในปี 1921/23 และมี 40 ที่นั่งคือเท่าใด",
    "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_en": "Which class to 1928 value had years of manufacture of 1921/23 and class from 1928 of BCi-21?",
    "question_th": "ค่าคลาสใดจนถึงปี 1928 มีปีที่ผลิตปี 1921/23 และคลาสตั้งแต่ปี 1928 ของ 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_en": "What is the smallest quantity having a Class to 1928 of BDi-21?",
    "question_th": "ปริมาณที่น้อยที่สุดที่มีระดับ BDi-21 ถึงปี 1928 คือเท่าใด",
    "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_en": "Which class from 1928 had a class to 1928 of BDi-21?",
    "question_th": "คลาสใดตั้งแต่ปี 1928 มีคลาสถึงปี 1928 เป็น 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_en": "What were the remarks for the coach having a class from 1928 of Cid-21B?",
    "question_th": "อะไรคือข้อสังเกตสำหรับโค้ชที่มีคลาสจากปี 1928 ของ 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_en": "Which B Score has a Total larger than 15.325, and an A Score smaller than 6.4?",
    "question_th": "คะแนน B ใดที่มีคะแนนรวมมากกว่า 15.325 และคะแนน A น้อยกว่า 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_en": "Which Total has an A Score of 6.5, and a Position larger than 5?",
    "question_th": "ผลรวมใดที่มีคะแนน A 6.5 และตำแหน่งที่มากกว่า 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_en": "What is the date of week 11?",
    "question_th": "สัปดาห์ที่ 11 คือวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_20 (date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT MAX(week) FROM table_name_27 WHERE opponent = \"chicago bears\"",
    "question_en": "What is the latest week when the chicago bears are the opponent?",
    "question_th": "สัปดาห์ล่าสุดที่ชิคาโก้หมีเป็นคู่ต่อสู้คือสัปดาห์ไหน?",
    "context": "CREATE TABLE table_name_27 (week INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT song FROM table_name_41 WHERE place > 4",
    "question_en": "What song placed higher than#4?",
    "question_th": "เพลงไหนที่ติดอันดับสูงกว่าอันดับ 4?",
    "context": "CREATE TABLE table_name_41 (song VARCHAR, place INTEGER)"
  },
  {
    "answer": "SELECT artist FROM table_name_33 WHERE draw > 4",
    "question_en": "Who is the artist that drew higher than 4?",
    "question_th": "ศิลปินที่วาดได้สูงกว่า 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_en": "What's the total starts with more points than 1 and the driver is Nasser Al-Attiyah?",
    "question_th": "ผลรวมเริ่มต้นด้วยคะแนนมากกว่า 1 แต้ม และนักแข่งคือ นัสเซอร์ อัล-อัตติยาห์ คือเท่าไร?",
    "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_en": "What's the smallest number of podiums having more than 6 starts and 5 finishes?",
    "question_th": "จำนวนโพเดียมที่น้อยที่สุดที่มีการออกสตาร์ทมากกว่า 6 ครั้งและเข้าเส้นชัย 5 ครั้งคือเท่าใด",
    "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_en": "What's the number of stage wins for Federico Villagra having more than 1 finish, less than 8 starts and less than 1 podium?",
    "question_th": "จำนวนสเตจที่ชนะสำหรับ Federico Villagra โดยเข้าเส้นชัยมากกว่า 1 ครั้ง การออกสตาร์ทน้อยกว่า 8 ครั้ง และน้อยกว่า 1 โพเดียมคือเท่าใด",
    "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_en": "What's the finishes for Lambros Athanassoulas having 0 podiums and 0 stage wins?",
    "question_th": "อะไรคือเส้นชัยของ Lambros Athanassoulas ที่มี 0 โพเดียม และ 0 สเตจที่ชนะ?",
    "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_en": "What is the average number of electorates (2003) reserved for sc with a constituency number of 50?",
    "question_th": "จำนวนผู้มีสิทธิเลือกตั้งโดยเฉลี่ย (2546) ที่สงวนไว้สำหรับ sc ที่มีจำนวนเขตเลือกตั้ง 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_en": "Which Finals have a Pre-Season larger than 0?",
    "question_th": "รอบชิงชนะเลิศใดที่มีช่วงปรีซีซั่นมากกว่า 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_en": "How much A-League has a Pre-Season larger than 0?",
    "question_th": "A-League มีปรีซีซั่นมากกว่า 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_en": "What is the last issue entry for Aron's Absurd Armada?",
    "question_th": "รายการฉบับสุดท้ายของ 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_en": "What is the title that was first published in August 2010?",
    "question_th": "ชื่อเรื่องที่ตีพิมพ์ครั้งแรกในเดือนสิงหาคม 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_en": "What is the title that was first published in February 2009 and is still ongoing?",
    "question_th": "ชื่อที่ตีพิมพ์ครั้งแรกในเดือนกุมภาพันธ์ พ.ศ. 2552 และยังคงดำเนินอยู่คืออะไร?",
    "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_en": "What is the last issue entry of Time and Again?",
    "question_th": "รายการฉบับล่าสุดของ 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_en": "What the rank of the Virgin Islands athlete with react under 0.168?",
    "question_th": "นักกีฬาหมู่เกาะเวอร์จินที่มีคะแนนปฏิกิริยาต่ำกว่า 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_en": "What is the lowest rank for Chris Brown with react greater than 0.244?",
    "question_th": "อันดับต่ำสุดของ Chris Brown ที่มีการตอบสนองมากกว่า 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_en": "What is the highest rank of an athlete from Belgium with react greater than 0.162?",
    "question_th": "นักกีฬาจากเบลเยียมที่มีคะแนนปฏิกิริยามากกว่า 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_en": "What's the 2008 that has 3.4 in 2009 and more than 2.9 in 2005?",
    "question_th": "ปี 2551 ที่มี 3.4 ในปี 2552 และมากกว่า 2.9 ในปี 2548 คืออะไร",
    "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_en": "What's the 2006 if there's less than 6.7 in 2007 and less than 3.4 in 2009?",
    "question_th": "ปี 2549 จะเป็นอย่างไรหากมีน้อยกว่า 6.7 ในปี 2550 และน้อยกว่า 3.4 ในปี 2552",
    "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_en": "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?",
    "question_th": "จำนวนรวมในปี 2548 จะเท่ากับเท่าใด หากมีมากกว่า 10.2 ในปี 2549 น้อยกว่า 29.5 ในปี 2550 มากกว่า 4.9 ในปี 2552 และน้อยกว่า 43.8 ในปี 2553",
    "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_en": "What is the 2009 when there's 11.8 in 2005 and less than 12.6 in 2006?",
    "question_th": "ปี 2552 คืออะไรเมื่อมี 11.8 ในปี 2548 และน้อยกว่า 12.6 ในปี 2549",
    "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_en": "What's the 2005 of TV3 when there is less than 42 in 2007 and less than 29.5 in 2010?",
    "question_th": "อะไรคือปี 2548 ของ TV3 ที่มีน้อยกว่า 42 ในปี 2550 และน้อยกว่า 29.5 ในปี 2553",
    "context": "CREATE TABLE table_name_36 (tv_station__operator_ VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_2 WHERE partner = \"alexander krasnorutskiy\" AND score = \"6–3, 4–6, 6–2\"",
    "question_en": "What date had Alexander Krasnorutskiy as a partner with a score of 6–3, 4–6, 6–2?",
    "question_th": "Alexander Krasnorutskiy เป็นคู่หูด้วยคะแนน 6–3, 4–6, 6–2 ในวันไหน?",
    "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_en": "Which IHSAA Class has a Mascot of eagles, and a City of evansville?",
    "question_th": "IHSAA Class ใดมีสัญลักษณ์รูปนกอินทรี และเมืองเอวานส์วิลล์",
    "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_en": "Which City has a School of indianapolis brebeuf?",
    "question_th": "เมืองใดมี 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_en": "How much Enrollment has a School of indianapolis tindley?",
    "question_th": "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_en": "Which County has an IHSAA Class of aaaa, and a Mascot of cardinals?",
    "question_th": "เทศมณฑลใดมีระดับ AAAA ของ IHSAA และมีตัวนำโชคของพระคาร์ดินัล",
    "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_en": "How many Total Goals values have 0 League Cup Goals?",
    "question_th": "ประตูรวมทั้งหมดมี 0 ประตูในลีกคัพ?",
    "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_en": "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?",
    "question_th": "จำนวนประตูเอฟเอ คัพ ที่น้อยที่สุดสำหรับผู้เล่นที่ลงเล่นเอฟเอ คัพ 4 นัด, รวมประตูทั้งหมด 49 นัด และประตูรวมมากกว่า 17 ประตูคือเท่าใด",
    "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_en": "What is the average number of League Goals for palyers with 0 FA Cup Goals?",
    "question_th": "จำนวนประตูลีกเฉลี่ยสำหรับผู้จ่ายที่มี 0 ประตูเอฟเอคัพคือเท่าใด?",
    "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_en": "what is the highest silver when the total is 4 and bronze is less than 1?",
    "question_th": "เงินสูงสุดเมื่อรวมเป็น 4 และทองแดงน้อยกว่า 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_en": "what is the gold when the bronze is 1, total is 6 and silver is less than 3?",
    "question_th": "ทองคืออะไรเมื่อทองแดงเป็น 1 รวมเป็น 6 และเงินน้อยกว่า 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_en": "What is province of community with height larger than 1.8 and is in el cibao region?",
    "question_th": "จังหวัดชุมชนที่มีความสูงมากกว่า 1.8 และอยู่ในภูมิภาคเอลซิเบาคืออะไร?",
    "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_en": "What contestant is from santo domingo este and has height smaller than 1.79?",
    "question_th": "ผู้เข้าแข่งขันคนใดมาจากซานโตโดมิงโกเอสเตและมีความสูงน้อยกว่า 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_en": "what is the previous conference when the year joined is 1932 and the mascot is tigers?",
    "question_th": "การประชุมครั้งก่อนๆ เมื่อปีที่เข้าร่วมคือ พ.ศ. 2475 และตัวนำโชคคือเสือ?",
    "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_en": "what is the school when the location is rochester?",
    "question_th": "โรงเรียนอะไรตอนที่อยู่ที่โรเชสเตอร์?",
    "context": "CREATE TABLE table_name_60 (school VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_71 WHERE school = \"muncie burris\"",
    "question_en": "what is the location when the school is muncie burris?",
    "question_th": "โรงเรียนมันซี เบอร์ริส อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_71 (location VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT mascot FROM table_name_25 WHERE school = \"warsaw\"",
    "question_en": "what is the mascot when the school is warsaw?",
    "question_th": "ตัวนำโชคคืออะไรเมื่อโรงเรียนวอร์ซอ?",
    "context": "CREATE TABLE table_name_25 (mascot VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT mascot FROM table_name_82 WHERE county = \"43 kosciusko\"",
    "question_en": "what is the mascot when the county is 43 kosciusko?",
    "question_th": "ตัวนำโชคคืออะไรเมื่อเขตคือ 43 kosciusko?",
    "context": "CREATE TABLE table_name_82 (mascot VARCHAR, county VARCHAR)"
  },
  {
    "answer": "SELECT county FROM table_name_36 WHERE year_left = \"1998\"",
    "question_en": "what is the county when the year left is 1998?",
    "question_th": "เคาน์ตีคือที่ไหน ปีที่เหลือคือ 1998?",
    "context": "CREATE TABLE table_name_36 (county VARCHAR, year_left VARCHAR)"
  },
  {
    "answer": "SELECT film FROM table_name_23 WHERE category = \"best actress – musical or comedy\" AND lost_to = \"nicole kidman ( moulin rouge! )\"",
    "question_en": "which Film has a Category of best actress – musical or comedy, and a Lost to of nicole kidman ( moulin rouge! )?",
    "question_th": "ภาพยนตร์เรื่องใดที่มีหมวดหมู่นักแสดงนำหญิงยอดเยี่ยม - ละครเพลงหรือตลก และ 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_en": "which Category has a Result of nominated, and a Lost to of jennifer westfeldt ( kissing jessica stein )?",
    "question_th": "หมวดหมู่ใดมีผลการเสนอชื่อเข้าชิง และแพ้เจนนิเฟอร์ เวสต์เฟลดต์ (จูบเจสสิก้า สไตน์)",
    "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_en": "Which the Lost to is in 2000",
    "question_th": "ซึ่ง Lost to คือในปี 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_en": "What is the average attendance for games against the Pittsburgh Steelers when the opponents scored more than 0 points?",
    "question_th": "ผู้เข้าชมโดยเฉลี่ยในเกมกับ Pittsburgh Steelers เมื่อฝ่ายตรงข้ามทำคะแนนมากกว่า 0 แต้มคือเท่าใด?",
    "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_en": "Who is the team that has a pick less than 154 and an offensive guard position?",
    "question_th": "ทีมใดที่มีให้เลือกน้อยกว่า 154 และตำแหน่งตัวรุก?",
    "context": "CREATE TABLE table_name_8 (team VARCHAR, position VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT SUM(attendance) FROM table_name_94 WHERE game = 24",
    "question_en": "What is the Attendance of Game 24?",
    "question_th": "การเข้าร่วมของเกมที่ 24 คืออะไร?",
    "context": "CREATE TABLE table_name_94 (attendance INTEGER, game VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_91 WHERE score_f_a = \"1–2\" AND game = 41",
    "question_en": "What is the Venue of Game 41 with a Score F–A of 1–2?",
    "question_th": "สนามของเกม 41 ที่มีคะแนน F–A เท่ากับ 1–2 คืออะไร?",
    "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_en": "Who are the opponents in the February 19, 1996 final?",
    "question_th": "คู่ต่อสู้ในรอบชิงชนะเลิศวันที่ 19 กุมภาพันธ์ 1996 คือใคร?",
    "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_en": "What was the final score on March 22, 1993?",
    "question_th": "คะแนนสุดท้ายเมื่อวันที่ 22 มีนาคม พ.ศ. 2536 เป็นเท่าใด",
    "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_en": "What is the outcome on June 9, 1997?",
    "question_th": "ผลลัพธ์ในวันที่ 9 มิถุนายน 2540 เป็นอย่างไร?",
    "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_en": "What school has an  IHSAA Class of aaa, and their mascot is Tiger Cubs?",
    "question_th": "โรงเรียนใดมีระดับ aaa ของ IHSAA และมีตัวนำโชคคือ 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_en": "What is the IHSAA Football Class for county 67 putnam at Greencastle?",
    "question_th": "IHSAA Football Class สำหรับพัตเคาน์ตี้ 67 ที่ 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_en": "What school has more than 533 enrolled and is an IHSAA Football Class of aa?",
    "question_th": "โรงเรียนใดมีผู้ลงทะเบียนมากกว่า 533 คนและเป็น IHSAA Football Class ของ 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_en": "Where is the IHSAA Class of aaa school with more than 590 enrolled?",
    "question_th": "IHSAA Class ของโรงเรียน aaa ที่มีผู้ลงทะเบียนมากกว่า 590 คนอยู่ที่ไหน",
    "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_en": "Which location has 111 as the days held?",
    "question_th": "สถานที่ใดมี 111 เป็นวันที่จัดขึ้น?",
    "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_en": "What days held has 1 as the reign with eden black as the wrestlers?",
    "question_th": "จัดขึ้นวันไหนมี 1 รัชกาล โดยมีเอเดน แบล็คเป็นนักมวยปล้ำ?",
    "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_en": "What wrestlers have summer brawl 2006 as the event?",
    "question_th": "นักมวยปล้ำคนไหนที่มีการทะเลาะวิวาทในฤดูร้อนปี 2549 เป็นงานนี้?",
    "context": "CREATE TABLE table_name_71 (wrestlers VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT AVG(points) FROM table_name_87 WHERE laps > 154",
    "question_en": "What is the average amount of points larger than 154 laps?",
    "question_th": "จำนวนคะแนนเฉลี่ยที่มากกว่า 154 รอบคือเท่าใด",
    "context": "CREATE TABLE table_name_87 (points INTEGER, laps INTEGER)"
  },
  {
    "answer": "SELECT home_team FROM table_name_68 WHERE away_team = \"crystal palace\"",
    "question_en": "What home team played against Crystal Palace?",
    "question_th": "ทีมเหย้าทีมใดเล่นกับคริสตัล พาเลซ?",
    "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_en": "What is the lowest win % with a 0-2 record and more than 2 apps?",
    "question_th": "ชนะ % ต่ำสุดด้วยสถิติ 0-2 และมากกว่า 2 แอพคือเท่าไร?",
    "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_en": "What is the lowest apps for rank 3 and 0% wins?",
    "question_th": "แอพที่ต่ำที่สุดสำหรับอันดับ 3 และ 0% ชนะคืออะไร?",
    "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_en": "What artist had a peak position under 2, and more than 200,000 in sales?",
    "question_th": "ศิลปินคนไหนที่มีตำแหน่งสูงสุดต่ำกว่า 2 ขวบและมียอดขายมากกว่า 200,000 ราย?",
    "context": "CREATE TABLE table_name_87 (artist VARCHAR, peak_position VARCHAR, sales VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_name_39 WHERE place < 2",
    "question_en": "Which points has place smaller than 2?",
    "question_th": "จุดใดมีตำแหน่งน้อยกว่า 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_en": "What's the size of Centerville in 89 Wayne county with an IHSAA class of AA in the year before 1974?",
    "question_th": "เมือง Centreville ใน 89 Wayne County ที่มีระดับ AA ของ IHSAA ในปี 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_en": "What's the year that Hagerstown joined?",
    "question_th": "Hagerstown เข้าร่วมในปีใด?",
    "context": "CREATE TABLE table_name_66 (year_joined VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT _number___county FROM table_name_8 WHERE location = \"fountain city\"",
    "question_en": "What county is Fountain City?",
    "question_th": "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_en": "What's the previous conference of Fountain City with a size more than 287?",
    "question_th": "การประชุมครั้งก่อนของ Fountain City ที่มีขนาดมากกว่า 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_en": "What is the social democrat released on October 10, 1999?",
    "question_th": "โซเชียลเดโมแครตเปิดตัวเมื่อวันที่ 10 ตุลาคม พ.ศ. 2542 คืออะไร?",
    "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_en": "What is the green-communist with a 15.5% lead?",
    "question_th": "คอมมิวนิสต์สีเขียวที่มีผู้นำ 15.5% คืออะไร?",
    "context": "CREATE TABLE table_name_82 (green_communist VARCHAR, lead VARCHAR)"
  },
  {
    "answer": "SELECT left_bloc FROM table_name_33 WHERE socialist = \"49.0%\"",
    "question_en": "What is the left bloc with a 49.0% socialist?",
    "question_th": "กลุ่มซ้ายที่มีนักสังคมนิยม 49.0% คืออะไร?",
    "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_en": "Which polling institute has a 30.7% for social democratic?",
    "question_th": "สถาบันการเลือกตั้งใดมีคะแนน 30.7% สำหรับสังคมประชาธิปไตย?",
    "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_en": "What is the week with w 31-21 result?",
    "question_th": "สัปดาห์ที่ผล w 31-21 คืออะไร?",
    "context": "CREATE TABLE table_name_7 (week VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT AVG(attendance) FROM table_name_74 WHERE week = 7",
    "question_en": "In week 7, what was the average attendance?",
    "question_th": "ในสัปดาห์ที่ 7 ผู้เข้าร่วมโดยเฉลี่ยคือเท่าใด",
    "context": "CREATE TABLE table_name_74 (attendance INTEGER, week VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_28 WHERE date = \"september 10, 1979\"",
    "question_en": "Who was the opponent on september 10, 1979?",
    "question_th": "คู่ต่อสู้เมื่อวันที่ 10 กันยายน พ.ศ. 2522 คือใคร?",
    "context": "CREATE TABLE table_name_28 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date_of_release FROM table_name_16 WHERE title = \"twenty\"",
    "question_en": "When was twenty released?",
    "question_th": "ยี่สิบออกเมื่อไร?",
    "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_en": "On what date was god & guns released?",
    "question_th": "God & Guns ออกวันไหนคะ?",
    "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_en": "What was the Billboard peak for the album released on September 12, 2000 by sanctuary?",
    "question_th": "จุดสูงสุดของ Billboard สำหรับอัลบั้มที่วางจำหน่ายเมื่อวันที่ 12 กันยายน พ.ศ. 2543 โดย 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_en": "Where did god & guns peak on the Billboard?",
    "question_th": "God & Guns ขึ้นอันดับไหนบน 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_en": "What was the Billboard peak for the album released on February 2, 1976 by MCA?",
    "question_th": "จุดสูงสุดของ Billboard สำหรับอัลบั้มที่วางจำหน่ายเมื่อวันที่ 2 กุมภาพันธ์ พ.ศ. 2519 โดย 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_en": "What venue was the tour match against eastern province played at with more than 0 against?",
    "question_th": "การแข่งขันทัวร์กับจังหวัดทางตะวันออกที่เล่นที่สนามใดโดยมีมากกว่า 0 ต่อ?",
    "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_en": "What is the status of the game where there was more than 22 against?",
    "question_th": "สถานะของเกมที่มีมากกว่า 22 ต่อคืออะไร?",
    "context": "CREATE TABLE table_name_20 (status VARCHAR, against INTEGER)"
  },
  {
    "answer": "SELECT game FROM table_name_41 WHERE opponents = \"14\"",
    "question_en": "In which game did the opponents score 14 points?",
    "question_th": "ฝ่ายตรงข้ามทำคะแนนได้ 14 แต้มในเกมใด?",
    "context": "CREATE TABLE table_name_41 (game VARCHAR, opponents VARCHAR)"
  },
  {
    "answer": "SELECT streak FROM table_name_18 WHERE date = \"dec. 12\"",
    "question_en": "What was the streak after the game on Dec. 12?",
    "question_th": "สตรีคหลังเกมวันที่ 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_en": "What's the AMT 3.0 when it has a feature of Vlan Settings for Intel AMT Network Interfaces?",
    "question_th": "AMT 3.0 คืออะไรเมื่อมีคุณสมบัติของการตั้งค่า Vlan สำหรับ 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_en": "What is the number of silver when bronze is 0, and rank is less than 2?",
    "question_th": "หมายเลขเงินเมื่อทองแดงเป็น 0 และอันดับน้อยกว่า 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_en": "What is the silver when the Total is 1, and Gold is 1?",
    "question_th": "เงินจะเป็นอย่างไรเมื่อผลรวมคือ 1 และทองคือ 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_en": "What is the number of silver when the total is less than 1?",
    "question_th": "จำนวนเงินเมื่อยอดรวมน้อยกว่า 1 จะเป็นเท่าใด",
    "context": "CREATE TABLE table_name_35 (silver VARCHAR, total INTEGER)"
  },
  {
    "answer": "SELECT MAX(silver) FROM table_name_92 WHERE rank < 1",
    "question_en": "What is the largest silver number when the rank is smaller than 1?",
    "question_th": "หมายเลขเงินที่ใหญ่ที่สุดเมื่ออันดับน้อยกว่า 1 คืออะไร?",
    "context": "CREATE TABLE table_name_92 (silver INTEGER, rank INTEGER)"
  },
  {
    "answer": "SELECT AVG(bronze) FROM table_name_58 WHERE total < 1",
    "question_en": "What is the number of bronze when the total is smaller than 1?",
    "question_th": "จำนวนของทองแดงเมื่อผลรวมน้อยกว่า 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_en": "What is the highest number of bronze when silver is larger than 0, rank is larger than 3?",
    "question_th": "จำนวนทองแดงสูงสุดเมื่อเงินมากกว่า 0 และอันดับมากกว่า 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_en": "What is the lowest number of silvers for countries in rank 12 with more than 0 bronze?",
    "question_th": "ประเทศในอันดับ 12 ที่มีเหรียญทองแดงมากกว่า 0 เหรียญทองแดงมีจำนวนเหรียญเงินต่ำที่สุดเท่าใด?",
    "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_en": "What is the most number of silvers for teams in rank 5 with more than 6 total medals?",
    "question_th": "จำนวนเหรียญเงินมากที่สุดสำหรับทีมอันดับ 5 และมีเหรียญรางวัลรวมมากกว่า 6 เหรียญคือเท่าใด",
    "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_en": "What is the fewest number of golds for teams with a total of 3 and fewer than 2 silvers?",
    "question_th": "จำนวนเหรียญทองน้อยที่สุดสำหรับทีมที่มีทั้งหมด 3 เหรียญและน้อยกว่า 2 เหรียญเงินคือเท่าใด",
    "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_en": "What's the number of wins when the flags were less than 8 and 52.11% of wins?",
    "question_th": "จำนวนชัยชนะเมื่อธงน้อยกว่า 8 และ 52.11% ของการชนะคือเท่าใด",
    "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_en": "What's the most flags that had 473 wins and less than 633 losses?",
    "question_th": "ธงใดมากที่สุดที่ชนะ 473 ครั้งและแพ้น้อยกว่า 633 ครั้ง?",
    "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_en": "How many wins did South Warrnambool have that had more than 6 flags and a draw greater than 10?",
    "question_th": "เซาท์วอร์นัมบูลชนะกี่ครั้งที่มีธงมากกว่า 6 ธงและเสมอมากกว่า 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_en": "What are the losses of Warrnambool with a draw less than 19?",
    "question_th": "วอร์นัมบูลแพ้น้อยกว่า 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_en": "What is the Location of the Competition with a Rank-Final of 10?",
    "question_th": "สถานที่จัดการแข่งขันที่มีอันดับเข้ารอบ 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_en": "How many gold medals for Bulgaria (BUL) with 2 silvers and a less than 18 rank?",
    "question_th": "บัลแกเรีย (BUL) ได้ 2 เหรียญเงินและอันดับต่ำกว่า 18 ได้กี่เหรียญทอง?",
    "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_en": "What's the most bronze medals for Great Britain (GBR) with more than 1 silver and ranked more than 6?",
    "question_th": "เหรียญทองแดงมากที่สุดสำหรับบริเตนใหญ่ (GBR) ที่มีมากกว่า 1 เหรียญเงินและอันดับที่มากกว่า 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_en": "What's the total silver medals having less than 2 gold and 2 bronze?",
    "question_th": "เหรียญเงินทั้งหมดที่มีน้อยกว่า 2 เหรียญทองและ 2 เหรียญทองแดงคือเท่าใด",
    "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_en": "Which Name has a Championship larger than 2, and a Total larger than 4, and an FA Cup larger than 0?",
    "question_th": "ชื่อใดที่มีแชมป์มากกว่า 2 และผลรวมมากกว่า 4 และ FA Cup มากกว่า 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_en": "Which Video has a Channel smaller than 35.66, and a Programming of nhk world?",
    "question_th": "วิดีโอใดที่มีช่องเล็กกว่า 35.66 และมีรายการของ 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_en": "Which Video has a PSIP Short Name of rt?",
    "question_th": "วิดีโอใดมีชื่อย่อ PSIP เป็น 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_en": "Which Programming has a Channel of 35.4?",
    "question_th": "รายการใดมี Channel 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_en": "How many times is the country ireland and points more than 4?",
    "question_th": "ประเทศไอร์แลนด์มีกี่ครั้งและคะแนนมากกว่า 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_en": "What is the format for the MHCP-66 Catalog?",
    "question_th": "แคตตาล็อก MHCP-66 อยู่ในรูปแบบใด",
    "context": "CREATE TABLE table_name_24 (format VARCHAR, catalog VARCHAR)"
  },
  {
    "answer": "SELECT catalog FROM table_name_21 WHERE date = \"august 20, 1965\"",
    "question_en": "What Catalog came out on August 20, 1965?",
    "question_th": "แคตตาล็อกใดที่ออกมาเมื่อวันที่ 20 สิงหาคม 2508",
    "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_en": "What is the catalog with an LP Format and under the Simply Vinyl label?",
    "question_th": "แคตตาล็อกที่มีรูปแบบ LP และอยู่ภายใต้ป้ายกำกับ Simply Vinyl คืออะไร",
    "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_en": "What date had a CD format, under Columbia/Legacy from the UK?",
    "question_th": "วันที่ใดมีรูปแบบซีดีภายใต้ Columbia/Legacy จากสหราชอาณาจักร",
    "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_en": "What country has an LP format, catalog s 31503?",
    "question_th": "ประเทศใดมีรูปแบบ LP แค็ตตาล็อก 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_en": "What is the format for Catalog CL 2372?",
    "question_th": "แคตตาล็อก 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_en": "What event has european championships as the tournament, with 2006 as the year?",
    "question_th": "งานใดที่มีการแข่งขันชิงแชมป์ยุโรปเป็นทัวร์นาเมนต์ โดยมีปี 2549 เป็นปี",
    "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_en": "What average year has international meeting & national championships as the tournament?",
    "question_th": "ปีเฉลี่ยใดที่มีการประชุมระดับนานาชาติและการชิงแชมป์ระดับประเทศเป็นทัวร์นาเมนต์?",
    "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_en": "What is the lowest year that has hypo-meeting as the tournament, with 8002 as the points?",
    "question_th": "ปีต่ำสุดที่มีการประชุมแบบไฮโป-มิตติ้งเท่ากับทัวร์นาเมนต์ โดยมี 8002 แต้มเป็นปีใด",
    "context": "CREATE TABLE table_name_52 (year INTEGER, tournament VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_58 WHERE time = \"4:17\"",
    "question_en": "Who was the opponent in the match that lasted 4:17?",
    "question_th": "คู่ต่อสู้คือใครในการแข่งขันที่กินเวลา 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_en": "Where was the match that lasted less than 3 rounds and was won by submission (triangle choke)?",
    "question_th": "นัดไหนที่แข่งไม่ถึง 3 รอบ แพ้ซับมิชชั่น (โช๊คสามเหลี่ยม)?",
    "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_en": "Which event had Carlos Alexandre Pereira as opponent?",
    "question_th": "เหตุการณ์ใดที่มี คาร์ลอส อเล็กซานเดร เปเรร่า เป็นคู่ต่อสู้?",
    "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_en": "Where was the match that resulted in a win in 4:16 held?",
    "question_th": "นัดไหนที่ชนะในนาทีที่ 4:16 ?",
    "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_en": "What's the population that has a median family income of $50,553?",
    "question_th": "ประชากรที่มีรายได้เฉลี่ยของครอบครัวอยู่ที่ 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_en": "What is the highest rank for the team of egypt?",
    "question_th": "อันดับสูงสุดของทีมอียิปต์คือทีมไหน?",
    "context": "CREATE TABLE table_name_58 (rank INTEGER, country VARCHAR)"
  },
  {
    "answer": "SELECT athlete FROM table_name_50 WHERE notes = \"q\" AND country = \"egypt\"",
    "question_en": "Who was the athlete from egypt with q in the notes?",
    "question_th": "นักกีฬาจากอียิปต์ที่มีคิวอยู่ในโน้ตคือใคร?",
    "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_en": "What is the 2FM for SW Ireland?",
    "question_th": "2FM สำหรับ 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_en": "Name Event of Medal of gold and a Name of duncan white?",
    "question_th": "ตั้งชื่อเหตุการณ์เหรียญทองและชื่อของดันแคนไวท์?",
    "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_en": "Name the Event of the Games of 1950 auckland and a Medal of bronze?",
    "question_th": "ตั้งชื่อเหตุการณ์ของเกมปี 1950 โอ๊คแลนด์และเหรียญทองแดงหรือไม่?",
    "context": "CREATE TABLE table_name_60 (event VARCHAR, games VARCHAR, medal VARCHAR)"
  },
  {
    "answer": "SELECT medal FROM table_name_14 WHERE name = \"alex obeyesekera\"",
    "question_en": "Which Medal has a Name of alex obeyesekera?",
    "question_th": "เหรียญใดมีชื่อ 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_en": "Which Event has a Medal of gold and a Name of barney henricus?",
    "question_th": "เหตุการณ์ใดมีเหรียญทองและมีชื่อบาร์นีย์ เฮนริคัส",
    "context": "CREATE TABLE table_name_69 (event VARCHAR, medal VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_93 WHERE name = \"sudesh peiris\"",
    "question_en": "Name the Event of sudesh peiris?",
    "question_th": "ตั้งชื่อเหตุการณ์ 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_en": "What year was the developer(s) Bioware?",
    "question_th": "ผู้พัฒนา 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_en": "What is the genre for 2009 on Playstation 3?",
    "question_th": "ประเภทของปี 2009 บน 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_en": "Which result has a recipients and nominees of outstanding achievement in drama with 1995 as the year?",
    "question_th": "ซึ่งผลงานมีผู้ได้รับและเสนอชื่อเข้าชิงผลงานละครดีเด่น โดยให้ปี 2538 เป็นปี?",
    "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_en": "What recipients and nominees have outstanding achievement in drama as the category with 1994 as the year?",
    "question_th": "ผู้รับและผู้ได้รับการเสนอชื่อคนใดมีผลงานโดดเด่นด้านละครเป็นประเภท โดยมีปี 2537 เป็นปี?",
    "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_en": "What result has outstanding achievement in drama, as the role/episode with a year prior to 1995?",
    "question_th": "ผลงานละครมีผลงานโดดเด่นทั้งบท/ตอนเมื่อปีก่อน พ.ศ. 2538 อย่างไร?",
    "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_en": "What is the total for Danny Pinheiro Rodrigues ( fra ), in a Position smaller than 7?",
    "question_th": "ผลรวมของ Danny Pinheiro Rodrigues ( fra ) ในตำแหน่งที่น้อยกว่า 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_en": "What is the total for Chen Yibing ( chn ), when his B Score was smaller than 9.225?",
    "question_th": "เฉิน อี้ปิง ( chn ) มีคะแนนรวมทั้งหมดเป็นเท่าใด เมื่อคะแนน B ของเขาน้อยกว่า 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_en": "What is the A Score when the B Score is more than 9.05, and the total is less than 16.525?",
    "question_th": "คะแนน A คืออะไร เมื่อคะแนน B มากกว่า 9.05 และคะแนนรวมน้อยกว่า 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_en": "What is the position for Oleksandr Vorobiov ( ukr ), when the total was larger than 16.25?",
    "question_th": "ตำแหน่งใดของ Oleksandr Vorobiov (ukr) เมื่อผลรวมมากกว่า 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_en": "What is the total for Robert Stanescu ( rou ), when the B Score is larger than 8.75?",
    "question_th": "ผลรวมของ Robert Stanescu ( rou ) เป็นเท่าใด เมื่อคะแนน B มากกว่า 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_en": "Poland has what notes?",
    "question_th": "โปแลนด์มีบันทึกอะไรบ้าง?",
    "context": "CREATE TABLE table_name_75 (notes VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_85 WHERE country = \"croatia\"",
    "question_en": "What is Croatia's rank?",
    "question_th": "อันดับของโครเอเชียคืออะไร?",
    "context": "CREATE TABLE table_name_85 (rank VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT rowers FROM table_name_32 WHERE rank = 5",
    "question_en": "When rank is 5, what is the rowers?",
    "question_th": "เมื่ออันดับ 5 ฝีพายเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_32 (rowers VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT AVG(rank) FROM table_name_33 WHERE country = \"denmark\"",
    "question_en": "What is the average rank for Denmark?",
    "question_th": "อันดับเฉลี่ยของ เดนมาร์ก คือเท่าไร?",
    "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_en": "What is the end of the term for Kadima that started on 18 January 2006?",
    "question_th": "อะไรคือจุดสิ้นสุดของวาระของ Kadima ที่เริ่มต้นเมื่อวันที่ 18 มกราคม 2549?",
    "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_en": "Whose term started on 4 May 2006?",
    "question_th": "วาระของใครเริ่มตั้งแต่วันที่ 4 พฤษภาคม พ.ศ. 2549?",
    "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_en": "What's the number of bronze when they are ranked 29, had a total more than 3 and less than 2 golds?",
    "question_th": "อันดับที่ 29 มีทองแดงจำนวนเท่าใด มียอดรวมมากกว่า 3 และน้อยกว่า 2 ทอง?",
    "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_en": "What's the bronze medal count for Rank 33 when the silver count was less than 2 and the total was more than 4?",
    "question_th": "เหรียญทองแดงอันดับที่ 33 มีจำนวนเหรียญเงินน้อยกว่า 2 และรวมมากกว่า 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_en": "How many silver for rank 22 when gold count was more than 0 and Bronze count was less than 5?",
    "question_th": "จำนวนเงินสำหรับอันดับ 22 เมื่อจำนวนทองคำมากกว่า 0 และจำนวนทองแดงน้อยกว่า 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_en": "What's the bronze count for South Africa (RSA) with a total more than 16?",
    "question_th": "แอฟริกาใต้ (RSA) มีคะแนนรวมมากกว่า 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_en": "What was the lowest election result for President Leonardo Marras with an area smaller than 227,063 people?",
    "question_th": "ผลการเลือกตั้งต่ำสุดของประธานาธิบดี Leonardo Marras โดยมีพื้นที่น้อยกว่า 227,063 คนคืออะไร?",
    "context": "CREATE TABLE table_name_29 (election INTEGER, president VARCHAR, inhabitants VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_name_33 WHERE president = \"stefano baccelli\"",
    "question_en": "What is the party affiliation for President Stefano Baccelli?",
    "question_th": "ประธานาธิบดีสเตฟาโน บัคเชลลี สังกัดพรรคอะไร?",
    "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_en": "What is the average election result for the province of Grosseto from 1766 and prior?",
    "question_th": "ผลการเลือกตั้งโดยเฉลี่ยสำหรับจังหวัดกรอสเซโตตั้งแต่ปี 1766 และก่อนหน้านั้นเป็นเท่าใด",
    "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_en": "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?",
    "question_th": "เป็นจำนวนรวมของร่างกฎหมายทั้งหมดที่สนับสนุนร่วมกันที่เกี่ยวข้องกับการแก้ไขทั้งหมดที่สนับสนุนภายใต้ 15, ร่างกฎหมายทั้งหมดที่ได้รับการสนับสนุน 6 และ 0 การแก้ไขที่ได้รับการสนับสนุนร่วมเป็นเท่าใด",
    "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_en": "What is the fewest amendments sponsored associated with 150 bills originally cosponsored and over 247 bills cosponsored?",
    "question_th": "อะไรคือการแก้ไขน้อยที่สุดที่ได้รับการสนับสนุนที่เกี่ยวข้องกับตั๋วเงิน 150 ใบที่ได้รับการสนับสนุน แต่เดิมและตั๋วเงินมากกว่า 247 ใบที่ได้รับการสนับสนุน?",
    "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_en": "What is the highest number of bills cosponsored associated with under 24 bills sponsored and under 16 amendments sponsored?",
    "question_th": "จำนวนตั๋วเงินสูงสุดที่สนับสนุนร่วมกับตั๋วเงินต่ำกว่า 24 ฉบับที่ได้รับการสนับสนุนและต่ำกว่า 16 การแก้ไขที่ได้รับการสนับสนุนคือเท่าใด",
    "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_en": "What is the highest number of amendments cosponsored associated with 53 amendments originally cosponsored and over 54 bills sponsored?",
    "question_th": "จำนวนการแก้ไขสูงสุดที่ร่วมสนับสนุนซึ่งเกี่ยวข้องกับการแก้ไข 53 รายการที่ได้รับการสนับสนุนร่วมกัน แต่เดิมและใบเรียกเก็บเงินมากกว่า 54 รายการได้รับการสนับสนุนคือเท่าใด",
    "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_en": "What is the number of bills sponsored associated with over 113 bills originally cosponsored and under 47 amendments cosponsored?",
    "question_th": "จำนวนตั๋วเงินที่ได้รับการสนับสนุนที่เกี่ยวข้องกับตั๋วเงินมากกว่า 113 ฉบับที่ได้รับการสนับสนุนตั้งแต่แรกและภายใต้การแก้ไข 47 รายการที่ได้รับการสนับสนุนเป็นจำนวนเท่าใด",
    "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_en": "What is the Lane of the swimmer from Uzbekistan in Heat 1?",
    "question_th": "Lane ของนักว่ายน้ำจากอุซเบกิสถานในฮีต 1 คืออะไร?",
    "context": "CREATE TABLE table_name_88 (lane VARCHAR, heat VARCHAR, nationality VARCHAR)"
  },
  {
    "answer": "SELECT station FROM table_name_18 WHERE frequency = \"873khz\"",
    "question_en": "Which station has a frequency of 873khz?",
    "question_th": "สถานีใดมีความถี่ 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_en": "Where is the transmitter located for the station voice of vietnam",
    "question_th": "เครื่องส่งสัญญาณสำหรับสถานีเสียงของเวียดนามอยู่ที่ไหน",
    "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_en": "Which station is from China and has a frequency of 684khz?",
    "question_th": "สถานีใดที่มาจากประเทศจีนและมีความถี่ 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_en": "Name the Tally of an Opposition of westmeath?",
    "question_th": "ตั้งชื่อการนับจำนวนฝ่ายค้านของเวสต์มีธไหม?",
    "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_en": "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?",
    "question_th": "คะแนนแท่งแนวนอนที่มีม้าอานม้าเท่ากับ n/a และตำแหน่งน้อยกว่า 27 และคะแนนแท่งขนานคือ 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_en": "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?",
    "question_th": "คะแนนของชั้นคือเท่าไรเมื่อตำแหน่งน้อยกว่า 21 และคะแนนรวมน้อยกว่า 81.2 และคะแนนม้าอานม้าคือ 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_en": "Who is the gymnast with a floor score of 14.800?",
    "question_th": "ใครคือนักกายกรรมที่มีคะแนนพื้น 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_en": "What horizontal bar score also has a pommel horse score of 15.250?",
    "question_th": "คะแนนแถบแนวนอนใดที่มีคะแนนม้าอานม้าเท่ากับ 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_en": "With a parallel bars score of 14.625 what is the average total?",
    "question_th": "ด้วยคะแนนแท่งขนาน 14.625 คะแนนรวมเฉลี่ยเท่าไหร่?",
    "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_en": "What is the Rank of the Athletes with a Time of 3:43.491?",
    "question_th": "อันดับนักกีฬาด้วยเวลา 3:43.491 คืออะไร?",
    "context": "CREATE TABLE table_name_21 (rank VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_name_41 WHERE country = \"germany\"",
    "question_en": "What are the Notes of the Athletes from Germany?",
    "question_th": "หมายเหตุของนักกีฬาจากเยอรมนีคืออะไร?",
    "context": "CREATE TABLE table_name_41 (notes VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(rank) FROM table_name_65 WHERE country = \"ukraine\"",
    "question_en": "What is the Rank of the Athletes from Ukraine?",
    "question_th": "อันดับของนักกีฬาจากยูเครนคืออะไร?",
    "context": "CREATE TABLE table_name_65 (rank VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_13 WHERE winning_skip = \"sherry middaugh\"",
    "question_en": "What location did Sherry Middaugh win in?",
    "question_th": "Sherry Middaugh ชนะในตำแหน่งใด",
    "context": "CREATE TABLE table_name_13 (location VARCHAR, winning_skip VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_11 WHERE winning_skip = \"patti lank\"",
    "question_en": "What event did Patti Lank have the winning skip?",
    "question_th": "Patti Lank ชนะการข้ามรายการใด",
    "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_en": "What date shows Binia Feltscher-Beeli as the runner-up skip?",
    "question_th": "Binia Feltscher-Beeli เป็นผู้ชนะเลิศการกระโดดข้ามวันใด",
    "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_en": "What person was the runner-up skip when Julie Reddick was the winning skip?",
    "question_th": "คนใดเป็นผู้ชนะการกระโดดข้ามเมื่อ Julie Reddick เป็นผู้ชนะเลิศ?",
    "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_en": "What's the Yellow fertility rate when Brazil is 0,43407?",
    "question_th": "อัตราการเจริญพันธุ์ของสีเหลืองเมื่อบราซิลคือ 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_en": "What is the sum of the area in km with a population of 110 in 2011?",
    "question_th": "ผลรวมของพื้นที่เป็นกิโลเมตรที่มีประชากร 110 คนในปี 2554 เป็นเท่าใด",
    "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_en": "What is the average population in 2006 that has more than 5 people in 2011 and an area 5.84km?",
    "question_th": "ประชากรเฉลี่ยในปี 2549 ที่มีมากกว่า 5 คนในปี 2554 และพื้นที่ 5.84 กม. คือเท่าใด",
    "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_en": "What is the lowest lane with a 0.216 react?",
    "question_th": "เลนต่ำสุดที่มีการตอบสนอง 0.216 คืออะไร?",
    "context": "CREATE TABLE table_name_67 (lane INTEGER, react VARCHAR)"
  },
  {
    "answer": "SELECT SUM(rank) FROM table_name_87 WHERE lane < 2",
    "question_en": "What is the total rank for the lane before 2?",
    "question_th": "อันดับรวมของเลนก่อน 2 เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_87 (rank INTEGER, lane INTEGER)"
  },
  {
    "answer": "SELECT genre FROM table_name_29 WHERE year = 2007",
    "question_en": "What genre is the game from the year 2007?",
    "question_th": "เกมประเภทใดในปี 2550?",
    "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_en": "What is the Game that came out before the year 2009 for the Playstation 3?",
    "question_th": "เกมที่ออกก่อนปี 2009 สำหรับ 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_en": "What is the earliest year that had the Legend of Zelda: Twilight Princess game?",
    "question_th": "ปีแรกสุดที่มีเกม Legend of Zelda: Twilight Princess คือปีใด",
    "context": "CREATE TABLE table_name_90 (year INTEGER, game VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_70 WHERE date = \"november 15, 1981\"",
    "question_en": "Who was the opponent on November 15, 1981?",
    "question_th": "คู่ต่อสู้เมื่อวันที่ 15 พฤศจิกายน 2524 คือใคร?",
    "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_en": "Which Debut year has a Player of noel carroll, and Games smaller than 12?",
    "question_th": "ปีเปิดตัวใดที่มีผู้เล่นของ noel carroll และเกมที่เล็กกว่า 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_en": "Which Goals have a Player of noel carroll?",
    "question_th": "ประตูใดที่มีผู้เล่นของโนเอล แคร์โรลล์?",
    "context": "CREATE TABLE table_name_4 (goals INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT SUM(debut_year) FROM table_name_39 WHERE years_at_club = \"1950–1951\" AND games > 14",
    "question_en": "How many debut years have Years at club of 1950–1951, and Games larger than 14?",
    "question_th": "สโมสรในปี พ.ศ. 2493–2494 มีกี่ปีและเกมมากกว่า 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_en": "Which title has origianal sound entertainment as its label?",
    "question_th": "ชื่อใดที่มีความบันเทิงเสียงต้นฉบับเป็นชื่อ?",
    "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_en": "What was the latest year of release for the greatest hits title?",
    "question_th": "ปีล่าสุดที่วางจำหน่ายสำหรับชื่อเพลงฮิตที่ยิ่งใหญ่ที่สุดคืออะไร?",
    "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_en": "When the country of release is EU, what is the label name?",
    "question_th": "เมื่อประเทศที่วางจำหน่ายคือ EU ฉลากชื่ออะไร?",
    "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_en": "what is the highest latitude when the township is kingsley and the geo id is higher than 3803942820?",
    "question_th": "ละติจูดสูงสุดเมื่อเขตการปกครองคือคิงสลีย์และรหัสทางภูมิศาสตร์สูงกว่า 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_en": "what is the latitude when water (sqmi) is 0.058 and the ansi code is less than 1759683?",
    "question_th": "ละติจูดเมื่อน้ำ (ตร.ม.) เท่ากับ 0.058 และรหัส ansi น้อยกว่า 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_en": "what is the geo id when the longitude is -98.435797 and the land (sqmi) is less than 36.039?",
    "question_th": "รหัสทางภูมิศาสตร์คืออะไรเมื่อลองจิจูดคือ -98.435797 และที่ดิน (ตร.ม.) น้อยกว่า 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_en": "Name the lowest Year Joined which has a Mascot of pioneers?",
    "question_th": "ตั้งชื่อปีที่ต่ำสุดที่เข้าร่วมซึ่งมีตัวนำโชคของผู้บุกเบิก?",
    "context": "CREATE TABLE table_name_93 (year_joined INTEGER, mascot VARCHAR)"
  },
  {
    "answer": "SELECT ihsaa_class FROM table_name_32 WHERE mascot = \"pioneers\"",
    "question_en": "Name the IHSAA Class of Mascot of pioneers?",
    "question_th": "ตั้งชื่อมาสคอตของผู้บุกเบิกระดับ IHSAA ไหม",
    "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_en": "Name the IHSAA Class of 55 morgan and a School of mooresville?",
    "question_th": "ตั้งชื่อ IHSAA Class of 55 morgan และ 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_en": "where is Mascot of quakers?",
    "question_th": "มาสคอตของเควกเกอร์อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_35 (location VARCHAR, mascot VARCHAR)"
  },
  {
    "answer": "SELECT ihsaa_class FROM table_name_2 WHERE school = \"decatur central\"",
    "question_en": "What kind of IHSAA Class has a School of decatur central?",
    "question_th": "ชั้นเรียน IHSAA ประเภทใดที่มี School of Decatur เป็นศูนย์กลาง",
    "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_en": "What studio had the director Peter Lord Nick Park before 2004?",
    "question_th": "สตูดิโอใดมีผู้กำกับ Peter Lord Nick Park ก่อนปี 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_en": "What studio did Paul Greengrass direct in 2007?",
    "question_th": "สตูดิโอใดที่ Paul Greengrass กำกับในปี 2550",
    "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_en": "What is the A score when the B score is more than 9.15 and the gymnast was in the 2nd position?",
    "question_th": "คะแนน A คือเท่าใด เมื่อคะแนน B มากกว่า 9.15 และนักกายกรรมอยู่ในตำแหน่งที่ 2 เป็นเท่าใด",
    "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_en": "what is the quantity when the year of manufacture is 1900 and the class is mc?",
    "question_th": "ปีที่ผลิตคือ 1900 และคลาสคือ 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_en": "what is the class when the quantity is 4?",
    "question_th": "เมื่อปริมาณเป็น 4 คลาสอะไร?",
    "context": "CREATE TABLE table_name_96 (class VARCHAR, quantity VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_89 WHERE week = 8",
    "question_en": "Who were the opponents on Week 8?",
    "question_th": "ใครคือคู่ต่อสู้ในสัปดาห์ที่ 8?",
    "context": "CREATE TABLE table_name_89 (opponent VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT change__12_11_ FROM table_name_8 WHERE city = \"agadir\"",
    "question_en": "When the city is agadir what is the change (12/11)?",
    "question_th": "เมื่อเมืองอากาดีร์มีการเปลี่ยนแปลงอะไรบ้าง (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_en": "What is the catalog number of Venus Demilo's A-side?",
    "question_th": "หมายเลขแค็ตตาล็อกของ A-side ของ Venus Demilo คืออะไร?",
    "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_en": "What year did the B-Side of Just Squeeze Me come out?",
    "question_th": "B-Side ของ Just Squeeze Me ออกฉายในปีไหน?",
    "context": "CREATE TABLE table_name_46 (year VARCHAR, b_side VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_92 WHERE catalog_number = \"817\"",
    "question_en": "What label has the 817 catalog?",
    "question_th": "ฉลากใดมีแคตตาล็อก 817",
    "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_en": "What is the A-side for it Never Entered My Mind, Part 2?",
    "question_th": "อะไรคือด้าน A ของมันที่ไม่เคยเข้ามาในใจฉัน ตอนที่ 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_en": "What is the A-side for catalog 902?",
    "question_th": "A-side สำหรับแค็ตตาล็อก 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_en": "What is the class of the a1 bm type?",
    "question_th": "a1 bm เป็นคลาสอะไร?",
    "context": "CREATE TABLE table_name_10 (class VARCHAR, type VARCHAR)"
  },
  {
    "answer": "SELECT quantity FROM table_name_5 WHERE class = \"aw\"",
    "question_en": "What is the quantity of the aw class?",
    "question_th": "คลาส aw มีปริมาณเท่าใด",
    "context": "CREATE TABLE table_name_5 (quantity VARCHAR, class VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_name_6 WHERE quantity = \"1\"",
    "question_en": "What is the class with 1 quantity?",
    "question_th": "ปริมาณ 1 ชิ้นมีคลาสอะไรบ้าง?",
    "context": "CREATE TABLE table_name_6 (class VARCHAR, quantity VARCHAR)"
  },
  {
    "answer": "SELECT railway_number_s_ FROM table_name_3 WHERE class = \"aw\"",
    "question_en": "What is the railway number of the aw class?",
    "question_th": "หมายเลขรถไฟของชั้น aw คืออะไร?",
    "context": "CREATE TABLE table_name_3 (railway_number_s_ VARCHAR, class VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_name_80 WHERE record = \"31-15\"",
    "question_en": "What was the game when the record was 31-15?",
    "question_th": "เกมอะไรตอนที่สถิติ 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_en": "What was the date of the game with a score of W 106-100?",
    "question_th": "แข่งกันวันที่เท่าไหร่ด้วยสกอร์ W 106-100?",
    "context": "CREATE TABLE table_name_2 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT speed FROM table_name_26 WHERE rank = \"1\"",
    "question_en": "What is the speed for rank 1?",
    "question_th": "ความเร็วของอันดับ 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_en": "What team has a Rank Ret, and rider Frank A Applebee?",
    "question_th": "ทีมใดมี Rank Ret และนักบิด 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_en": "What internet explorer has 29.07% for the chrome?",
    "question_th": "Internet Explorer ใดที่มี Chrome 29.07%",
    "context": "CREATE TABLE table_name_91 (internet_explorer VARCHAR, chrome VARCHAR)"
  },
  {
    "answer": "SELECT other_mozilla FROM table_name_71 WHERE safari = \"9.41%\"",
    "question_en": "What is the other mozilla that has 9.41% for the safari?",
    "question_th": "โมซิลล่าตัวอื่นที่มี 9.41% สำหรับซาฟารีคืออะไร?",
    "context": "CREATE TABLE table_name_71 (other_mozilla VARCHAR, safari VARCHAR)"
  },
  {
    "answer": "SELECT other_mozilla FROM table_name_80 WHERE period = \"january 2010\"",
    "question_en": "What other mozilla has January 2010 as the period?",
    "question_th": "โมซิลล่าตัวอื่นที่มีเดือนมกราคม 2010 เป็นช่วงเวลาคืออะไร?",
    "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_en": "What internet explorer has 7.89% as the safari, and 8.22% as the chrome?",
    "question_th": "Internet Explorer ใดที่มีซาฟารี 7.89% และโครเมียม 8.22%",
    "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_en": "What period has 0.25% as the other mozilla?",
    "question_th": "ช่วงไหนมี 0.25% เหมือนกับโมซิลล่าตัวอื่น?",
    "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_en": "Which socket goes with the item with release price of $378 and turbo of 6/6/8/9?",
    "question_th": "ซ็อกเก็ตใดที่เหมาะกับสินค้าที่มีราคาวางจำหน่าย 378 ดอลลาร์และเทอร์โบ 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_en": "What is the L2 cache for the core i7-2635QM?",
    "question_th": "L2 cache สำหรับ 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_en": "What is the release price for the GPU frequency of standard power, embedded?",
    "question_th": "ราคาเปิดตัวความถี่ GPU ของกำลังมาตรฐานแบบฝังอยู่ที่เท่าไร?",
    "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_en": "What is the socked when the turbo is 8/8/10/11?",
    "question_th": "เมื่อเทอร์โบเป็น 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_en": "Which round did the bout that led to a 1-0 record end in?",
    "question_th": "การแข่งขันที่นำสถิติ 1-0 จบลงด้วยรอบใด",
    "context": "CREATE TABLE table_name_42 (round VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_73 WHERE lane < 2 AND nationality = \"spain\"",
    "question_en": "Which Time has a Lane smaller than 2, and a Nationality of spain?",
    "question_th": "เวลาใดที่มีเลนเล็กกว่า 2 และมีสัญชาติสเปน",
    "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_en": "How many Heats have a Name of miguel molina?",
    "question_th": "มิเกล โมลินามีชื่อฮีตกี่คน",
    "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_en": "what is the league when the fa cup is qr4 and the fa trophy is qf?",
    "question_th": "ลีกคืออะไรเมื่อเอฟเอคัพคือ QR4 และถ้วยรางวัลเอฟเอคือ 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_en": "what is the fa trophy when the leading scorer is lee gregory (8)?",
    "question_th": "รางวัลฟ้าคืออะไร เมื่อผู้ทำประตูนำคือ ลี เกรกอรี่ (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_en": "what is the year when the position is 1/22 promoted and the leading scorer is james dean (27)?",
    "question_th": "ปีไหนที่เลื่อนตำแหน่ง 1/22 และผู้ทำประตูสูงสุดคือ เจมส์ ดีน (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_en": "When the Altrincham was the home team what was the tie no?",
    "question_th": "เมื่ออัลทริงแคมเป็นเจ้าบ้าน เสมอกันอย่างไร?",
    "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_en": "Crawley Town as the home team has what as the tie no?",
    "question_th": "ครอว์ลีย์ ทาวน์ เจ้าบ้านไม่เสมอกัน?",
    "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_en": "What is the nationality of the swimmer with a rank over 2 with a time of 55.77?",
    "question_th": "นักว่ายน้ำที่มีอันดับมากกว่า 2 สัญชาติใด ด้วยเวลา 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_en": "What is the earliest heat with a finisher from the Czech Republic and a rank over 41?",
    "question_th": "ฮีตแรกสุดที่มีตัวจบสกอร์จากสาธารณรัฐเช็กและอันดับมากกว่า 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_en": "What is the total number of heats with a finisher named Gregor Tait in lanes over 6?",
    "question_th": "จำนวนฮีททั้งหมดที่มีหมัดเด็ดชื่อ Gregor Tait ในเลนที่มากกว่า 6 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_38 (heat VARCHAR, name VARCHAR, lane VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_47 WHERE rank = 40",
    "question_en": "What is the time of the swimmer in rank 40?",
    "question_th": "นักว่ายน้ำอันดับ 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_en": "From what series was Tokio Jokio, directed by Norm McCabe?",
    "question_th": "Tokio Jokio กำกับโดย 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_en": "When was Inki and the Minah Bird released?",
    "question_th": "Inki และ Minah Bird เปิดตัวเมื่อไหร่?",
    "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_en": "From what series is Peck Up Your Troubles?",
    "question_th": "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_en": "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?",
    "question_th": "เมื่อประธานาธิบดีคือ โยเวรี มูเซเวนี และปี 1993 มียศ 6 ตำแหน่งภายใต้สิทธิทางการเมือง เสรีภาพของพลเมืองทั้งหมดเป็นเท่าใด",
    "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_en": "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?",
    "question_th": "โดยเฉลี่ยแล้วปีที่ไม่เป็นอิสระคือสถานะ และน้อยกว่า 7 คือเสรีภาพของพลเมือง และน้อยกว่า 6 สิทธิทางการเมือง",
    "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_en": "What is the least political rights rank in 1976?",
    "question_th": "สิทธิทางการเมืองมีอันดับน้อยที่สุดในปี 2519 คือข้อใด",
    "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 = \"ホタルノヒカリ\"",
    "question_en": "What is average ratings for Japanese title of ホタルノヒカリ, with episodes larger than 9?",
    "question_th": "เรตติ้งเฉลี่ยของชื่อภาษาญี่ปุ่น ホタルノヒカラ ที่มีตอนมากกว่า 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_en": "Which episodes has the lowest average ratings of 8.7%?",
    "question_th": "ตอนใดมีเรตติ้งเฉลี่ยต่ำสุดที่ 8.7%?",
    "context": "CREATE TABLE table_name_65 (episodes INTEGER, average_ratings VARCHAR)"
  },
  {
    "answer": "SELECT romaji_title FROM table_name_94 WHERE japanese_title = \"菊次郎とさき 3\"",
    "question_en": "Which romaji title, has Japanese title of 菊次郎とさき 3?",
    "question_th": "ชื่อโรมาจิใดมีชื่อภาษาญี่ปุ่นว่า 菊次郎とさKN 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_en": "Which TV station, has romaji title of tantei gakuen q and episodes larger than 10?",
    "question_th": "สถานีโทรทัศน์ใดที่มีชื่อ tantei gakuen q แบบโรมันจิและมีตอนมากกว่า 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_en": "What is the Almaty, Kazakhstan when Sergey Filimonov ( KAZ ) is 210kg?",
    "question_th": "อัลมาตี, คาซัคสถานคืออะไรเมื่อ Sergey Filimonov (KAZ) มีน้ำหนัก 210 กก.",
    "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_en": "What shows for Sergey Filimonov (KAZ) when the Snatch shows snatch?",
    "question_th": "Sergey Filimonov (KAZ) แสดงให้เห็นอะไรเมื่อ 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_en": "What is the Almaty, Kazakhstan when the Sergey Filimonov (KAZ) is 210kg?",
    "question_th": "อัลมาตี, คาซัคสถานคืออะไรเมื่อ Sergey Filimonov (KAZ) มีน้ำหนัก 210 กก.",
    "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 (關羽)\"",
    "question_en": "What year was the main role a character named Guan Yu (關羽)?",
    "question_th": "ตัวละครชื่อกวนอู (關羽) รับบทหลักในปีใด",
    "context": "CREATE TABLE table_name_89 (year INTEGER, role VARCHAR, character VARCHAR)"
  },
  {
    "answer": "SELECT english FROM table_name_88 WHERE character = \"lin ming kuan (林明寬)\"",
    "question_en": "What is the English character for Lin Ming Kuan (林明寬)?",
    "question_th": "ตัวอักษรภาษาอังกฤษของ Lin Ming Kuan (林明寬) คืออะไร?",
    "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 = \"戀夏38℃\"",
    "question_en": "What character has a Year larger than 2010 with a lead role, and Chinese Title of 戀夏38℃?",
    "question_th": "ตัวละครใดที่มีปีใหญ่กว่าปี 2010 โดยมีบทบาทนำและมีชื่อภาษาจีนว่า 戀夏38℃?",
    "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 (無極威)\"",
    "question_en": "What is the year that has a character named Wu Ji Wei (無極威)?",
    "question_th": "ปีใดที่มีตัวละครชื่ออู๋จีเว่ย (無極威)",
    "context": "CREATE TABLE table_name_27 (year INTEGER, character VARCHAR)"
  },
  {
    "answer": "SELECT MIN(round) FROM table_name_81 WHERE opponent = \"aleksandr pitchkounov\"",
    "question_en": "Which Round has an Opponent of aleksandr pitchkounov?",
    "question_th": "รอบไหนมีคู่ต่อสู้ของอเล็กซานเดอร์ พิตคูนอฟ?",
    "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_en": "Which Result has a Round of 5, and an Event of mt one?",
    "question_th": "ผลการแข่งขันใดมีรอบ 5 รอบ และมีเหตุการณ์ที่ 1 ?",
    "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_en": "Mortlake club has more than 924 against, less than 14 losses, and how many total draws?",
    "question_th": "สโมสร Mortlake แพ้มากกว่า 924 นัด แพ้น้อยกว่า 14 นัด และเสมอกันทั้งหมดกี่นัด?",
    "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_en": "What is the total number of wins for Cobden club when there are more than 2 draws?",
    "question_th": "จำนวนชัยชนะของค็อบเดนคลับเมื่อเสมอมากกว่า 2 ครั้งคือเท่าใด?",
    "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_en": "When against is 797 and wins is more than 10, what is the sum of draws?",
    "question_th": "เมื่อต่อต้านคือ 797 และชนะมากกว่า 10 ผลรวมของเสมอเป็นเท่าใด",
    "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_en": "Club warrnambool has less than 9 wins and what average of draws?",
    "question_th": "คลับ วอร์นัมบูล ชนะน้อยกว่า 9 นัด และเสมอเฉลี่ยเท่าไหร่?",
    "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_en": "What is the average number of draws for Mortlake club when they have less than 0 wins?",
    "question_th": "จำนวนเสมอโดยเฉลี่ยของสโมสร Mortlake เมื่อพวกเขาชนะน้อยกว่า 0 คือเท่าใด?",
    "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_en": "Which Foreign population has a Population (2004) larger than 234733?",
    "question_th": "ประชากรต่างชาติคนใดมีประชากร (2004) มากกว่า 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_en": "Which Population (2004) has a Moroccan population larger than 234506?",
    "question_th": "ประชากรใด (2004) มีประชากรโมร็อกโกมากกว่า 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_en": "What date was the opponent VFL Sindelfingen?",
    "question_th": "คู่ต่อสู้ VFL Sindelfingen คือวันไหน?",
    "context": "CREATE TABLE table_name_98 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_44 WHERE attendance = \"1,804\"",
    "question_en": "What date was the attendance 1,804?",
    "question_th": "เข้าร่วมประชุมวันที่เท่าไร 1,804?",
    "context": "CREATE TABLE table_name_44 (date VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_98 WHERE attendance = \"628\"",
    "question_en": "Who was the opponent with an attendance of 628?",
    "question_th": "คู่ต่อสู้คนไหนมีผู้เข้าร่วม 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_en": "What bike has a grid greater than 17, laps less than 8, with milos cihak as the rider?",
    "question_th": "จักรยานคันใดที่มีกริดมากกว่า 17 รอบน้อยกว่า 8 โดยมี milos cihak เป็นคนขี่?",
    "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_en": "What is the highest grid that has gregorio lavilla as the rider?",
    "question_th": "ตารางสูงสุดที่มี Gregorio Lavilla เป็นนักบิดคืออะไร?",
    "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_en": "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?",
    "question_th": "ผู้ขับขี่คนใดที่มีรอบน้อยกว่า 20, ducati 1098 rs 08 เป็นจักรยานยนต์, โดยมีอุบัติเหตุเป็นเวลา, และตารางน้อยกว่า 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_en": "How many overs when there are 5231 runs and fewer than 37 matches?",
    "question_th": "มีจำนวนโอเวอร์กี่โอเวอร์เมื่อมีการวิ่ง 5231 ครั้งและการแข่งขันน้อยกว่า 37 นัด?",
    "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_en": "What are the fewest wickets when player's career spanned 1946-1960 and maidens were more than 419?",
    "question_th": "อะไรคือประตูที่น้อยที่สุดเมื่ออาชีพของผู้เล่นครอบคลุมระหว่างปี 1946-1960 และหญิงสาวมีมากกว่า 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_en": "What is the largest number of wickets when there are more than 630 maidens and a best of 7/72?",
    "question_th": "จำนวนวิกเก็ตที่ใหญ่ที่สุดเมื่อมีหญิงสาวมากกว่า 630 คนและจำนวนประตูที่ดีที่สุดคือ 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_en": "Who has fewer than 2047.3 overs, more than 200 wickets and an average of 29.02?",
    "question_th": "ใครมีโอเวอร์น้อยกว่า 2,047.3 โอเวอร์ มากกว่า 200 ประตู และเฉลี่ย 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_en": "How many people attended the Scottish Cup on 29.02.2000?",
    "question_th": "มีผู้เข้าร่วมการแข่งขัน Scottish Cup ในวันที่ 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_en": "What was the score of the league cup in the 2007-08 season?",
    "question_th": "คะแนนลีกคัพในฤดูกาล 2550-51 เป็นเท่าไหร่?",
    "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–0\"",
    "question_en": "What is the attendance in the game in the 2010-11 season, when the score was 2–0?",
    "question_th": "การมีส่วนร่วมในเกมในฤดูกาล 2010-11 เมื่อสกอร์ 2-0 คืออะไร?",
    "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_en": "What team was in 1st plate in a year later than 1956?",
    "question_th": "ทีมใดอยู่ในจานที่ 1 ในหนึ่งปีหลังจากปี 1956?",
    "context": "CREATE TABLE table_name_84 (year INTEGER)"
  },
  {
    "answer": "SELECT base FROM table_name_59 WHERE company = \"theatro technis karolos koun\"",
    "question_en": "Which base has a company of Theatro Technis Karolos Koun?",
    "question_th": "ฐานใดมีบริษัทของ 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_en": "Which company has an author of Aristophanes and play of Plutus?",
    "question_th": "บริษัทไหนมีนักเขียนอริสโตเฟนและบทละครพลูตัส?",
    "context": "CREATE TABLE table_name_74 (company VARCHAR, author VARCHAR, play VARCHAR)"
  },
  {
    "answer": "SELECT author FROM table_name_22 WHERE company = \"semeio theatre\"",
    "question_en": "Which author has a company of the Semeio Theatre?",
    "question_th": "ผู้เขียนคนไหนมีบริษัทของ 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_en": "Which play was done by the Radu Stanca National Theatre company?",
    "question_th": "ละครเรื่องใดที่ดำเนินการโดยคณะละครแห่งชาติ Radu Stanca",
    "context": "CREATE TABLE table_name_47 (play VARCHAR, company VARCHAR)"
  },
  {
    "answer": "SELECT play FROM table_name_96 WHERE base = \"aosta\"",
    "question_en": "Which play had a base of Aosta?",
    "question_th": "ละครเรื่องใดมีฐานของออสต้า?",
    "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_en": "What is the country of the play based in Athens at the Attis Theatre company?",
    "question_th": "ประเทศใดที่ละครของบริษัท Attis Theatre ในกรุงเอเธนส์เป็นประเทศใด",
    "context": "CREATE TABLE table_name_33 (country VARCHAR, base VARCHAR, company VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_name_14 WHERE quantity > 96",
    "question_en": "Which Class has a Quantity larger than 96?",
    "question_th": "คลาสใดมีปริมาณมากกว่า 96",
    "context": "CREATE TABLE table_name_14 (class VARCHAR, quantity INTEGER)"
  },
  {
    "answer": "SELECT COUNT(quantity) FROM table_name_11 WHERE type = \"1′c1′ h2t\"",
    "question_en": "How much Quantity has a Type of 1′c1′ h2t?",
    "question_th": "ปริมาณเท่าใดมีประเภท 1′c1′ h2t?",
    "context": "CREATE TABLE table_name_11 (quantity VARCHAR, type VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_name_85 WHERE type = \"1′c n2t\"",
    "question_en": "Which Class has a Type of 1′c n2t?",
    "question_th": "คลาสใดมีประเภท 1′c 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′c1′ h2t\"",
    "question_en": "Which Year(s) of manufacture has a Quantity larger than 39, and a Type of 1′c1′ h2t?",
    "question_th": "ปีใดที่ผลิตมีปริมาณมากกว่า 39 และมีประเภท 1′c1′ 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_en": "Which Year(s) of manufacture has a Quantity of 2, and a Type of b n2t?",
    "question_th": "ปีใดที่ผลิตมีปริมาณ 2 และประเภทเป็น 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ético veragüense\"",
    "question_en": "what is the highest place when lost is more than 4, points is less than 18 and team is Team of atlético veragüense?",
    "question_th": "สถานที่สูงสุดเมื่อแพ้มากกว่า 4 คะแนนน้อยกว่า 18 และทีมคือทีม atlético veragüense?",
    "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_en": "what is the least lost when the place is higher than 4, goals scored is 12 and points is more than 4?",
    "question_th": "อะไรจะแพ้น้อยที่สุดเมื่ออันดับสูงกว่า 4 ประตูที่ทำได้คือ 12 และคะแนนมากกว่า 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_en": "how many times is the team tauro and played less than 18?",
    "question_th": "กี่ครั้งแล้วที่ทีมเทาโรและเล่นไม่ถึง 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_en": "what is the least played when points is 36 and place is more than 2?",
    "question_th": "อะไรคือสิ่งที่เล่นน้อยที่สุดเมื่อแต้มคือ 36 และอันดับมากกว่า 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_en": "what is the average points when goals conceded is 14 and goals scored is less than 32?",
    "question_th": "คะแนนเฉลี่ยเมื่อประตูที่เสียคือ 14 และประตูที่ทำได้น้อยกว่า 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_en": "Playing against the Seattle Seahawks in a week after week 1 before 69,149 people what was the result of the game?",
    "question_th": "เล่นกับ Seattle Seahawks ในสัปดาห์แล้วสัปดาห์เล่า 1 ก่อนมีคน 69,149 คน ผลลัพธ์ของเกมเป็นอย่างไร?",
    "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_en": "How many weeks in total has bye as the date?",
    "question_th": "ครบกำหนดบายแล้วกี่สัปดาห์คะ?",
    "context": "CREATE TABLE table_name_23 (week VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_58 WHERE player = \"tiger woods\"",
    "question_en": "What country does Tiger Woods come from?",
    "question_th": "Tiger Woods มาจากประเทศอะไร?",
    "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_en": "What's the Ri Song-Hui when the olympic record is the world record and snatch was snatch?",
    "question_th": "รีซองฮุยจะเป็นยังไงเมื่อสถิติโอลิมปิกเป็นสถิติโลกและฉกฉวย?",
    "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_en": "What's the 102kg when the Ri Song-Hui was 226kg?",
    "question_th": "102กก. เมื่อรีซองฮุยหนัก 226กก. เป็นเท่าไหร่?",
    "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_en": "What's the 102kg when the snatch was snatch and the olympic record was the world record?",
    "question_th": "อะไรคือ 102 กิโลกรัมเมื่อฉกถูกฉกและสถิติโอลิมปิกคือสถิติโลก?",
    "context": "CREATE TABLE table_name_56 (world_record VARCHAR)"
  },
  {
    "answer": "SELECT AVG(pick) FROM table_name_82 WHERE team = \"texas rangers\"",
    "question_en": "What was the average pick made by the Texas Rangers?",
    "question_th": "การเลือกเฉลี่ยของ 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_en": "What was the home town of Bob Geren, picked by the San Diego Padres?",
    "question_th": "บ้านเกิดของ Bob Geren ที่ถูกเลือกโดย 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_en": "What was the position of Jon Perlman?",
    "question_th": "จอน เพิร์ลแมน ดำรงตำแหน่งอะไร?",
    "context": "CREATE TABLE table_name_94 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_73 WHERE position = \"tackle\" AND pick < 87",
    "question_en": "What college has a pick smaller than 87 for the position of tackle?",
    "question_th": "วิทยาลัยใดมีตัวเลือกน้อยกว่า 87 สำหรับตำแหน่งต่อสู้?",
    "context": "CREATE TABLE table_name_73 (college VARCHAR, position VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_51 WHERE pick = 85",
    "question_en": "What college had the pick of 85?",
    "question_th": "วิทยาลัยใดได้รับเลือก 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_en": "What are the least losses of Mortlake having less than 970 against?",
    "question_th": "อะไรคือการสูญเสียน้อยที่สุดของ Mortlake ที่มีคะแนนน้อยกว่า 970 ต่อ?",
    "context": "CREATE TABLE table_name_96 (losses INTEGER, club VARCHAR, against VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(against) FROM table_name_30 WHERE draws > 0",
    "question_en": "What's the total against when the draws are more than 0?",
    "question_th": "ผลรวมเมื่อเสมอมากกว่า 0 จะเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_30 (against VARCHAR, draws INTEGER)"
  },
  {
    "answer": "SELECT COUNT(wins) FROM table_name_92 WHERE draws < 0",
    "question_en": "What's the total wins when the draws are less than 0?",
    "question_th": "ผลรวมชนะเมื่อเสมอน้อยกว่า 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_en": "What's the least against number for Cobden with draws more than 0?",
    "question_th": "น้อยที่สุดเมื่อเทียบกับตัวเลขของ Cobden ที่เสมอมากกว่า 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_en": "What's the most against when the draws are more than 0?",
    "question_th": "เจออะไรมากที่สุดเมื่อผลเสมอมากกว่า 0?",
    "context": "CREATE TABLE table_name_43 (against INTEGER, draws INTEGER)"
  },
  {
    "answer": "SELECT SUM(wins) FROM table_name_46 WHERE against = 1261",
    "question_en": "What are the total wins when there are 1261 against?",
    "question_th": "ชัยชนะทั้งหมดเมื่อมี 1261 ต่อคืออะไร?",
    "context": "CREATE TABLE table_name_46 (wins INTEGER, against VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_name_33 WHERE time = \"1:42.309\"",
    "question_en": "What is the notes entry for the row with a Time of 1:42.309?",
    "question_th": "รายการบันทึกย่อสำหรับแถวที่มีเวลา 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_en": "What is the rank for China?",
    "question_th": "จีนอยู่อันดับไหนคะ?",
    "context": "CREATE TABLE table_name_96 (rank INTEGER, country VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_54 WHERE notes = \"qs\" AND country = \"cuba\"",
    "question_en": "What is the time for Cuba, with a notes entry of QS?",
    "question_th": "เวลาใดสำหรับคิวบาโดยต้องบันทึกรายการ 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_en": "What is the Week number on October 10, 1976?",
    "question_th": "เลขที่สัปดาห์ของวันที่ 10 ตุลาคม 2519 คืออะไร?",
    "context": "CREATE TABLE table_name_17 (week VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_89 WHERE result = \"l 33–14\"",
    "question_en": "What is the Date of the game with a Result of L 33–14?",
    "question_th": "วันที่ของเกมซึ่งผลการแข่งขัน L 33–14 คือเมื่อใด",
    "context": "CREATE TABLE table_name_89 (date VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT augmented_fifth FROM table_name_48 WHERE major_third = \"d\"",
    "question_en": "The Major third of D has what for the Augmented fifth?",
    "question_th": "Major Third ของ D มีอะไรสำหรับ Augmented Five?",
    "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_en": "A major third of C has what listed for the Minor seventh?",
    "question_th": "หนึ่งในสามที่สำคัญของ C มีสิ่งที่ระบุไว้สำหรับผู้เยาว์ที่เจ็ดหรือไม่?",
    "context": "CREATE TABLE table_name_29 (minor_seventh VARCHAR, major_third VARCHAR)"
  },
  {
    "answer": "SELECT chord FROM table_name_23 WHERE minor_seventh = \"f\"",
    "question_en": "What is the listed chord for a Minor seventh of F?",
    "question_th": "คอร์ดสำหรับ Minor Seventh ของ F คืออะไร?",
    "context": "CREATE TABLE table_name_23 (chord VARCHAR, minor_seventh VARCHAR)"
  },
  {
    "answer": "SELECT episode FROM table_name_71 WHERE rank = 1",
    "question_en": "Which Episode has a Rank of 1?",
    "question_th": "ภาคไหนมีอันดับ 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_en": "Where was adac rally deutschland's rally HQ?",
    "question_th": "สำนักงานใหญ่การชุมนุมของ ADAC rally deutschland อยู่ที่ไหน",
    "context": "CREATE TABLE table_name_62 (rally_hq VARCHAR, rally_name VARCHAR)"
  },
  {
    "answer": "SELECT rally_hq FROM table_name_9 WHERE round = 1",
    "question_en": "Where was the Rally HQ for Round 1?",
    "question_th": "กองบัญชาการแรลลี่สำหรับรอบที่ 1 อยู่ที่ไหน",
    "context": "CREATE TABLE table_name_9 (rally_hq VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT support_category FROM table_name_67 WHERE round = 9",
    "question_en": "Which Support Category had a Round score of 9?",
    "question_th": "หมวดสนับสนุนใดมีคะแนนรอบ 9?",
    "context": "CREATE TABLE table_name_67 (support_category VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_58 WHERE rally_hq = \"salou\"",
    "question_en": "What Surface had a Rally HQ of salou?",
    "question_th": "Surface ใดมีสำนักงานใหญ่ Rally ของ 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_en": "What is the lowest lane in the Czech Republic and a time larger than 21.05?",
    "question_th": "เลนต่ำสุดในสาธารณรัฐเช็กคืออะไรและเวลาที่มากกว่า 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_en": "What is the highest lane with a rank larger than 2 in Guyana?",
    "question_th": "เลนที่สูงที่สุดที่มีอันดับมากกว่า 2 ในกายอานาคืออะไร?",
    "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_en": "What is the sum rank of Solomon Bayoh when his time was smaller than 22.16?",
    "question_th": "อันดับรวมของโซโลมอน บายอห์ เมื่อเวลาของเขาน้อยกว่า 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_en": "Who is the artist of the album Soul?",
    "question_th": "ศิลปินในอัลบั้ม 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_en": "who is the athlete when the time is less than 11.13 and the country is belgium?",
    "question_th": "นักกีฬาคนไหนเมื่อเวลาไม่ถึง 11.13 น. และประเทศคือ เบลเยี่ยม ?",
    "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_en": "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?",
    "question_th": "นักกีฬาคนไหนอันดับต่ำกว่า 13 เวลามากกว่า 11.13 ประเทศคือบาฮามาสและฮีตเกิน 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_en": "what is the heat when the athlete is anita pistone?",
    "question_th": "เมื่อนักกีฬาเป็นแอนนิต้า พิสตันจะร้อนขนาดไหน?",
    "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_en": "how many times is the rank more than 29, the athlete is barbara pierre and the heat less than 5?",
    "question_th": "อันดับเกิน 29 กี่ครั้ง นักกีฬาคือ บาร์บาร่า ปิแอร์ และฮีตน้อยกว่า 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_en": "Which IHSAA Class has a Location of linton?",
    "question_th": "ชั้นเรียน IHSAA ใดที่มีที่ตั้งของลินตัน",
    "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_en": "What is the sum of matches played for teams with more than 10 losses and under 5 points?",
    "question_th": "ผลรวมของแมตช์ที่เล่นให้กับทีมที่แพ้มากกว่า 10 นัดและต่ำกว่า 5 แต้มคือเท่าไร?",
    "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_en": "What is the total number of positions for teams with more than 5 points, 3 draws, and under 2 losses?",
    "question_th": "จำนวนตำแหน่งทั้งหมดสำหรับทีมที่มีมากกว่า 5 แต้ม, เสมอ 3 และแพ้น้อยกว่า 2 คือเท่าใด?",
    "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_en": "What is the average number of losses for teams with under 4 losses and under 21 points?",
    "question_th": "จำนวนการแพ้โดยเฉลี่ยสำหรับทีมที่แพ้น้อยกว่า 4 ครั้งและต่ำกว่า 21 แต้มคือเท่าใด",
    "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_en": "What is the home team at the game with an Attendance of 2,029?",
    "question_th": "เจ้าบ้านในเกมนี้มีผู้เข้าร่วม 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_en": "What is the away team at the game with an Attendance of 1,730?",
    "question_th": "ทีมเยือนในเกมนี้มีผู้เข้าชม 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_en": "What is the away team at the game with a Tie no of 2?",
    "question_th": "ทีมเยือนในเกมที่เสมอ 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_en": "What F/Laps listing has entries of n/a Points, 1 Poles, and 0 Wins?",
    "question_th": "รายการ F/Laps ใดที่มีคะแนนไม่มีคะแนน 1 เสาและชนะ 0 ครั้ง",
    "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_en": "What Series has a season that is older than 2003 with a Podiums entry of 1 and a Points entry that is n/a?",
    "question_th": "ซีรีส์ใดมีฤดูกาลที่เก่ากว่าปี 2003 โดยมีการขึ้นโพเดี้ยมที่ 1 และการเข้าใช้คะแนนซึ่งไม่มีข้อมูล",
    "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_en": "What Podiums listing has a World Rally Championship series entry?",
    "question_th": "รายการบนโพเดียมรายการใดบ้างที่มีรายการรายการ World Rally Championship",
    "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_en": "What races have n/a Points, 0 Wins, and 6th Position entries?",
    "question_th": "การแข่งขันใดบ้างที่ไม่มีคะแนน ชนะ 0 ครั้ง และได้อันดับที่ 6",
    "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_en": "What is the most recent season for the Prema Powerteam with a Masters of Formula Three series?",
    "question_th": "ฤดูกาลล่าสุดของทีม Prema Power ที่มีซีรีส์ Masters of Formula Three คืออะไร?",
    "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_en": "What listing for Podiums has 0 F/laps and 39 points?",
    "question_th": "รายการใดสำหรับโพเดียมที่มี 0 F/รอบและ 39 คะแนน",
    "context": "CREATE TABLE table_name_38 (podiums VARCHAR, f_laps VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_75 WHERE record = \"20–16–9\"",
    "question_en": "Which Loss has a Record of 20–16–9?",
    "question_th": "การแพ้ใดมีสถิติ 20–16–9",
    "context": "CREATE TABLE table_name_75 (loss VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_43 WHERE record = \"19–16–8\"",
    "question_en": "Which Date has a Record of 19–16–8?",
    "question_th": "วันใดมีบันทึก 19–16–8?",
    "context": "CREATE TABLE table_name_43 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_35 WHERE lane = 8",
    "question_en": "Can you tell me the Time that has the Lane of 8?",
    "question_th": "คุณช่วยบอกเวลาที่มีเลน 8 หน่อยได้ไหม?",
    "context": "CREATE TABLE table_name_35 (time VARCHAR, lane VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(rank) FROM table_name_67 WHERE lane = 4",
    "question_en": "Can you tell me the Total number of Rankthat has the Lane of 4?",
    "question_th": "คุณช่วยบอกจำนวนอันดับทั้งหมดที่มีเลนเป็น 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_en": "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?",
    "question_th": "คุณช่วยบอกอันดับต่ำสุดที่มีสัญชาติออสเตรเลีย และชื่อของไลเซลโจนส์ และเลนที่ใหญ่กว่า 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_en": "Can you tell me the Name that has the Rank of 4?",
    "question_th": "คุณช่วยบอกฉันชื่อที่มีอันดับ 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_en": "What is the highest Against for a game against Bristol City?",
    "question_th": "ค่าต่อต้านสูงสุดในเกมกับบริสตอล ซิตี้คือเท่าไหร่?",
    "context": "CREATE TABLE table_name_7 (against INTEGER, opposing_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_87 WHERE opposing_team = \"oxford united\"",
    "question_en": "What was the date of the game against Oxford United?",
    "question_th": "เกมกับ อ็อกซ์ฟอร์ด ยูไนเต็ด วันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_87 (date VARCHAR, opposing_team VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_41 WHERE rank = 4",
    "question_en": "What country is ranked number 4?",
    "question_th": "ประเทศใดอยู่ในอันดับที่ 4?",
    "context": "CREATE TABLE table_name_41 (country VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_name_47 WHERE rank = 1",
    "question_en": "What are the notes from the rank of 1?",
    "question_th": "โน้ตจากอันดับ 1 คืออะไร?",
    "context": "CREATE TABLE table_name_47 (notes VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT rowers FROM table_name_41 WHERE notes = \"fa\"",
    "question_en": "What rowers have FA as the notes?",
    "question_th": "นักพายคนไหนมี FA เป็นบันทึก?",
    "context": "CREATE TABLE table_name_41 (rowers VARCHAR, notes VARCHAR)"
  },
  {
    "answer": "SELECT MIN(rank) FROM table_name_81 WHERE time = \"7:09.06\"",
    "question_en": "What is the lowest rank has 7:09.06 as the time?",
    "question_th": "อันดับต่ำสุด ณ เวลา 7:09.06 คืออะไร?",
    "context": "CREATE TABLE table_name_81 (rank INTEGER, time VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_name_62 WHERE rank = 2",
    "question_en": "What notes have 2 as the rank?",
    "question_th": "โน้ตตัวไหนมี 2 เป็นยศ?",
    "context": "CREATE TABLE table_name_62 (notes VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT match FROM table_name_91 WHERE opponent = \"bishop's stortford\"",
    "question_en": "What was the match that happened in Bishop's Stortford?",
    "question_th": "การแข่งขันที่เกิดขึ้นที่ Bishop's Stortford เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_91 (match VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT score1 FROM table_name_99 WHERE opponent = \"thurrock\"",
    "question_en": "What was the final score for the Thurrock?",
    "question_th": "คะแนนสุดท้ายของ Thurrock คืออะไร?",
    "context": "CREATE TABLE table_name_99 (score1 VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT ihsaa_class FROM table_name_80 WHERE mascot = \"raiders\"",
    "question_en": "Which IHSAA class has a mascot of the Raiders?",
    "question_th": "ชั้นเรียน IHSAA ใดที่มีมาสคอตของทีม Raiders",
    "context": "CREATE TABLE table_name_80 (ihsaa_class VARCHAR, mascot VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_25 WHERE mascot = \"panthers\"",
    "question_en": "Which school has a mascot of the Panthers?",
    "question_th": "โรงเรียนไหนมีมาสคอตของแพนเทอร์ส?",
    "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_en": "What's Italy's time when the notes were SA/B?",
    "question_th": "เมื่อใดที่อิตาลีมีธนบัตรเป็น 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_en": "What is Italy's rank?",
    "question_th": "อิตาลีอยู่อันดับไหน?",
    "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_en": "How many appearances did the player for the Rayo Vallecano club that scored more than 37 goals make?",
    "question_th": "นักเตะรายนี้ลงเล่นให้สโมสรราโย บาเยกาโน่ซึ่งยิงได้มากกว่า 37 ประตูไปกี่นัด?",
    "context": "CREATE TABLE table_name_15 (appearances VARCHAR, club VARCHAR, goals VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_32 WHERE eliminated = \"episode 4\"",
    "question_en": "Who's the player that was eliminated on episode 4?",
    "question_th": "ใครคือผู้เล่นที่ถูกคัดออกในตอนที่ 4?",
    "context": "CREATE TABLE table_name_32 (player VARCHAR, eliminated VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_65 WHERE placing = \"20th place\"",
    "question_en": "Who is the player in 20th place?",
    "question_th": "ใครคือผู้เล่นอันดับที่ 20?",
    "context": "CREATE TABLE table_name_65 (player VARCHAR, placing VARCHAR)"
  },
  {
    "answer": "SELECT original_season FROM table_name_15 WHERE placing = \"11th place\"",
    "question_en": "What's the original season in 11th place?",
    "question_th": "ฤดูกาลดั้งเดิมในอันดับที่ 11 คืออะไร?",
    "context": "CREATE TABLE table_name_15 (original_season VARCHAR, placing VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_50 WHERE eliminated = \"episode 5\"",
    "question_en": "Who's the player eliminated on episode 5?",
    "question_th": "ใครคือผู้เล่นที่ถูกคัดออกในตอนที่ 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_en": "Who's the player that's male and on the original season of RW: Key West?",
    "question_th": "ใครคือผู้เล่นที่เป็นผู้ชายและอยู่ในซีซั่นดั้งเดิมของ 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_en": "Who's the player eliminated on episode 8 of Fresh Meat?",
    "question_th": "ใครคือผู้เล่นที่ถูกคัดออกในตอนที่ 8 ของ 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_en": "The boat named Agamemnon has what status?",
    "question_th": "เรือชื่ออากามัมนอนมีสถานะอะไร?",
    "context": "CREATE TABLE table_name_94 (status VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_54 WHERE name = \"ajax\"",
    "question_en": "What status does the boat Ajax have?",
    "question_th": "เรืออาแจ็กซ์มีสถานะอะไร?",
    "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_en": "What is the average upper index MJ/Nm 3 for the upper index Kcal/Nm 3 entry of 19,376?",
    "question_th": "ดัชนีบนเฉลี่ย MJ/Nm 3 สำหรับรายการดัชนี Kcal/Nm 3 บนคือ 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_en": "What is the Upper index Kcal/ Nm 3 of iso-butane, and a Lower index MJ/ Nm 3 smaller than 84.71?",
    "question_th": "ดัชนีบน Kcal/ Nm 3 ของ iso-butane คืออะไร และดัชนีล่าง MJ/ Nm 3 น้อยกว่า 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_en": "What is the Lower index Kcal/ Nm 3 entry, for the row with entries of an Upper index Kcal/ Nm 3 smaller than 19,376, and a Lower index MJ/ Nm 3 of 74.54?",
    "question_th": "รายการดัชนีล่าง Kcal/ Nm 3 คืออะไร สำหรับแถวที่มีรายการดัชนีด้านบน Kcal/ Nm 3 น้อยกว่า 19,376 และดัชนีล่าง MJ/ Nm 3 คือ 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_en": "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?",
    "question_th": "รายการสำหรับดัชนีบน Kcal/ Nm 3 สำหรับแถวที่มีรายการที่มีดัชนีล่าง MJ/ Nm 3 เป็น 47.91 และดัชนีบน MJ/ Nm 3 มากกว่า 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_en": "What is the entry for Upper index Kcal/ Nm 3 for the row with an entry that has a Lower index MJ/ Nm 3 larger than 47.91, for propylene, and an Upper index MJ/ Nm 3 larger than 77.04?",
    "question_th": "รายการสำหรับดัชนีบน Kcal/ Nm 3 สำหรับแถวที่มีรายการที่มีดัชนีล่าง MJ/ Nm 3 มากกว่า 47.91 สำหรับโพรพิลีน และดัชนีบน MJ/ Nm 3 มากกว่า 77.04 คืออะไร",
    "context": "CREATE TABLE table_name_1 (upper_index_kcal__nm_3 INTEGER, upper_index_mj__nm_3 VARCHAR, lower_index_mj__nm_3 VARCHAR, fuel_gas VARCHAR)"
  },
  {
    "answer": "SELECT AVG(match) FROM table_name_37 WHERE ground = \"h\" AND opponent = \"chelsea under 18s\"",
    "question_en": "What match number has a ground of H and the opponent Chelsea under 18s?",
    "question_th": "หมายเลขนัดใดมีพื้นเป็น H และคู่ต่อสู้ Chelsea อายุต่ำกว่า 18 ปี?",
    "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_en": "On what date is there a match lower than 14 with a ground of H and the opponent Aston Villa under 18s?",
    "question_th": "นัดที่ต่ำกว่า 14 โดยมีพื้น H และคู่ต่อสู้ Aston Villa อายุต่ำกว่า 18 ปีจะมีการแข่งขันวันไหน?",
    "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_en": "On what date is there a score1 of 2 - 4 with the opponent Chelsea under 18s?",
    "question_th": "มีสกอร์ 1 จาก 2 – 4 กับคู่ต่อสู้ เชลซี รุ่นอายุต่ำกว่า 18 ปี ในวันไหน?",
    "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_en": "What is the ticket price at Canadian National Exhibition Stadium?",
    "question_th": "ราคาตั๋วที่ 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_en": "What was the ticket price at Red Rocks Amphitheatre?",
    "question_th": "ราคาตั๋วที่ 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_en": "What was the ticket price on September 16, 1986?",
    "question_th": "ราคาตั๋วเมื่อวันที่ 16 กันยายน 2529 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_56 (ticket_price_s_ VARCHAR, date_s_ VARCHAR)"
  },
  {
    "answer": "SELECT opposition FROM table_name_72 WHERE total = 10",
    "question_en": "Who was the opposition for the player who has a total of 10 points?",
    "question_th": "ใครเป็นฝ่ายค้านสำหรับนักเตะที่มีคะแนนรวม 10 แต้ม?",
    "context": "CREATE TABLE table_name_72 (opposition VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_89 WHERE county = \"dublin\"",
    "question_en": "Which player is from County Dublin?",
    "question_th": "นักเตะคนไหนมาจากเคาน์ตี้ดับลิน?",
    "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_en": "What is the average 2006 metropolitan population of Lima with a GDP per capita over $13,100?",
    "question_th": "ประชากรในเมืองลิมาโดยเฉลี่ยในปี 2549 โดยมี GDP ต่อหัวมากกว่า 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_en": "Who placed highest with a time of 1:47.70?",
    "question_th": "ใครได้อันดับสูงสุดด้วยเวลา 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_en": "Which Prominence (m) has an Elevation (m) of 3,095?",
    "question_th": "ความโดดเด่นใด (ม.) มีระดับความสูง (ม.) เท่ากับ 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_en": "How long did Witold Latoszek character lasted?",
    "question_th": "ตัวละคร Witold Latoszek อยู่ได้นานแค่ไหน?",
    "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_en": "Which episode was the last written by chris hawkshaw this season?",
    "question_th": "ตอนไหนที่เขียนโดย Chris Hawkshaw ในฤดูกาลนี้?",
    "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_en": "What is the greatest 2007 when the change 06-07 was 14.7%?",
    "question_th": "อะไรคือสิ่งที่ยิ่งใหญ่ที่สุดในปี 2550 เมื่อการเปลี่ยนแปลง 06-07 คือ 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_en": "when was the ship completed when laid down is 21 august 1925?",
    "question_th": "เรือสร้างเสร็จเมื่อใดเมื่อวางลงคือวันที่ 21 สิงหาคม พ.ศ. 2468",
    "context": "CREATE TABLE table_name_32 (completed VARCHAR, laid_down VARCHAR)"
  },
  {
    "answer": "SELECT completed FROM table_name_25 WHERE name = \"satsuki dd-27\"",
    "question_en": "When was satsuki dd-27 completed?",
    "question_th": "ซัตสึกิ dd-27 สร้างเสร็จเมื่อไร?",
    "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_en": "when was the ship launched when it was laid down 20 october 1924 and built by fujinagata shipyards, japan?",
    "question_th": "เรือลำนี้เปิดตัวเมื่อใดเมื่อวางลงเมื่อวันที่ 20 ตุลาคม พ.ศ. 2467 และสร้างโดยอู่ต่อเรือฟูจินากาตะ ประเทศญี่ปุ่น",
    "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_en": "when was the ship completed that was laid down on 23 march 1926?",
    "question_th": "เรือที่วางเมื่อวันที่ 23 มีนาคม พ.ศ. 2469 เสร็จสมบูรณ์เมื่อใด",
    "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_en": "when was the ship laid down when it was completed on 3 july 1926?",
    "question_th": "เรือถูกวางเมื่อใดเมื่อสร้างเสร็จในวันที่ 3 กรกฎาคม พ.ศ. 2469",
    "context": "CREATE TABLE table_name_43 (laid_down VARCHAR, completed VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_38 WHERE location_attendance = \"chicago stadium\"",
    "question_en": "What was the score of the game at the Chicago Stadium?",
    "question_th": "เกมนี้ที่ชิคาโก สเตเดี้ยมมีสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_38 (score VARCHAR, location_attendance VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_9 WHERE record = \"46-31\"",
    "question_en": "What was the date of the game when the record was 46-31?",
    "question_th": "เกมวันที่เท่าไหร่ที่มีสถิติ 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_en": "What was the score of the game at the Chicago Stadium?",
    "question_th": "เกมนี้ที่ชิคาโก สเตเดี้ยมมีสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_67 (score VARCHAR, location_attendance VARCHAR)"
  },
  {
    "answer": "SELECT AVG(rank) FROM table_name_16 WHERE lane = 5",
    "question_en": "What is the Rank of the Swimmer in Lane 5?",
    "question_th": "อันดับนักว่ายน้ำในเลน 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_en": "What is the Rank of the swimmer with a Time of 49 in Lane 7 or larger?",
    "question_th": "อันดับนักว่ายน้ำด้วยเวลา 49 ในเลน 7 ขึ้นไปคือเท่าไร?",
    "context": "CREATE TABLE table_name_41 (rank VARCHAR, time VARCHAR, lane VARCHAR)"
  },
  {
    "answer": "SELECT MAX(lane) FROM table_name_24 WHERE rank = 8",
    "question_en": "What is the Lane of the swimmer with a Rank of 8?",
    "question_th": "Lane ของนักว่ายน้ำที่มีอันดับ 8 คืออะไร?",
    "context": "CREATE TABLE table_name_24 (lane INTEGER, rank VARCHAR)"
  },
  {
    "answer": "SELECT level FROM table_name_54 WHERE season > 2010",
    "question_en": "What Level has a Season larger than 2010?",
    "question_th": "ระดับใดที่มีฤดูกาลใหญ่กว่าปี 2010?",
    "context": "CREATE TABLE table_name_54 (level VARCHAR, season INTEGER)"
  },
  {
    "answer": "SELECT administration FROM table_name_56 WHERE season = 2000",
    "question_en": "What Adminstration has a Season of 2000?",
    "question_th": "ฝ่ายบริหารใดมีฤดูกาลปี 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_en": "What Position has a Season larger than 2000 with a Level of Tier 3?",
    "question_th": "ตำแหน่งใดที่มีฤดูกาลมากกว่า 2000 และมีระดับระดับ 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_en": "What Position has a Level of tier 4 with a Season smaller than 2003?",
    "question_th": "ตำแหน่งใดมีระดับเทียร์ 4 และมีฤดูกาลน้อยกว่าปี 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_en": "Who had the most rebounds in the game against New York?",
    "question_th": "ใครมีการรีบาวน์มากที่สุดในเกมกับนิวยอร์ก?",
    "context": "CREATE TABLE table_name_74 (high_rebounds VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_10 WHERE game = 30",
    "question_en": "Who was the opponent for game 30?",
    "question_th": "ใครคือคู่ต่อสู้ในเกมที่ 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_en": "Who had the most rebounds in the game at the Mohegan Sun Arena that led to a 24-7 record?",
    "question_th": "ใครมีรีบาวด์มากที่สุดในเกมที่ Mohegan Sun Arena ซึ่งทำสถิติ 24-7?",
    "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_en": "How many people attended the September 21, 1980 game?",
    "question_th": "มีผู้เข้าร่วมเกมวันที่ 21 กันยายน พ.ศ. 2523 กี่คน",
    "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_en": "Which Total has a Date of 1602, and Greater Doubles smaller than 16?",
    "question_th": "ผลรวมใดมีวันที่ 1602 และจำนวนสองเท่าที่น้อยกว่า 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_en": "What is the value of the size (steps) that has just ratio 10:9 and a size (cents) more than 160",
    "question_th": "ค่าขนาด (ขั้น) ที่มีเพียงอัตราส่วน 10:9 และขนาด (เซ็นต์) มากกว่า 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_en": "what is the value of the audio with a just ratio 21:20",
    "question_th": "ค่าเสียงที่มีอัตราส่วนเพียง 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_en": "What is the error that has a size (steps) more than 5 and a just (cents) value 536.95",
    "question_th": "ข้อผิดพลาดที่มีขนาด (ขั้นตอน) มากกว่า 5 และค่าเพียง (เซนต์) 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_en": "What is the average size (cents) with an interval of major third and size (steps) more than 5",
    "question_th": "คือขนาดเฉลี่ย (เซนต์) ที่มีช่วงเวลาหลักที่สามและขนาด (ขั้นตอน) มากกว่า 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_en": "What is the average number of points for places over 7 and having a draw order of 4?",
    "question_th": "จำนวนคะแนนเฉลี่ยสำหรับอันดับที่มากกว่า 7 และมีลำดับเสมอกันที่ 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_en": "How many league goals did the player with 10 league apps and 0 FA cup goals have?",
    "question_th": "ผู้เล่นที่ลงเล่นในลีก 10 นัด และเอฟเอ คัพ 0 ประตู ทำได้กี่ประตูในลีก?",
    "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_en": "What was the sum of league goals where the toal was 8 and league cup goals were larger than 0?",
    "question_th": "ผลรวมของประตูในลีกโดยที่ประตูคือ 8 และประตูในลีกคัพมากกว่า 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 = \"サプリ\"",
    "question_en": "For the Japanese title サプリ that had 11 episodes, what is the average ratings?",
    "question_th": "ชื่อเรื่องภาษาญี่ปุ่น サプリ มี 11 ตอน เรตติ้งเฉลี่ยอยู่ที่เท่าไร?",
    "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_en": "When the average ratings is 10.3%, what is the average episodes?",
    "question_th": "เมื่อเรตติ้งเฉลี่ย 10.3% เฉลี่ยตอนเท่าไหร่คะ?",
    "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_en": "What is the fewest episodes with the Romaji title Regatta~Kimi to Ita Eien~?",
    "question_th": "ตอนที่น้อยที่สุดที่มีชื่อว่า 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_en": "With the Romaji title of Hanayome Wa Yakudoshi!, what is the Japanese title?",
    "question_th": "ด้วยชื่อโรมาจิของ Hanayome Wa Yakudoshi! ชื่อภาษาญี่ปุ่นคืออะไร?",
    "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_en": "For what Japanese title is there less than 11 episodes and the Romaji title is Regatta~Kimi to Ita Eien~?",
    "question_th": "ชื่อภาษาญี่ปุ่นเรื่องไหนที่มีไม่ถึง 11 ตอน และชื่อโรมาจิคือ 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_en": "what is the most episodes when the average ratings is 18.8%?",
    "question_th": "เรตติ้งเฉลี่ย 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 = \"たったひとつの恋\"",
    "question_en": "How many episodes when the tv station is ntv and the japanese title is たったひとつの恋?",
    "question_th": "มีกี่ตอนที่สถานีโทรทัศน์เป็น ntv และชื่อภาษาญี่ปุ่นคือ たったひとつの恋?",
    "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・otto no sonzai~\"",
    "question_en": "what is the tv station when the romaji title is kazoku~tsuma no fuzai・otto no sonzai~?",
    "question_th": "สถานีโทรทัศน์ชื่อโรมาจิคือ kazoku~tsuma no fuzai・otto 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_en": "what is the tv station when the average ratings is 19.5%?",
    "question_th": "สถานีโทรทัศน์ไหนเรตติ้งเฉลี่ย 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_en": "Of all the schools that left before 2003, what is the average year joined?",
    "question_th": "ในบรรดาโรงเรียนทั้งหมดที่ออกจากโรงเรียนก่อนปี พ.ศ. 2546 ปีเฉลี่ยที่เข้าร่วมคือเท่าใด",
    "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_en": "What year did the Ingots, who left after 2007, join?",
    "question_th": "Ingots ซึ่งจากไปหลังปี 2550 เข้าร่วมในปีใด",
    "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_en": "What is the original Release date of the Track written by Dallas Frazier?",
    "question_th": "เพลงต้นฉบับที่เขียนโดย 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_en": "What is the Original Artis of the Track with a Length of 2:38?",
    "question_th": "ศิลปินดั้งเดิมของแทร็กที่มีความยาว 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_en": "What Song has a Length of 2:50?",
    "question_th": "เพลงอะไรมีความยาว 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_en": "What's the title when the genre is drama and network of KBS2 happening before 2011?",
    "question_th": "ชื่อเรื่องว่าละครและเครือข่ายของ KBS2 ก่อนปี 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_en": "What's the title when the genre is drama with a network of KBS2 happening in 2011?",
    "question_th": "แนวละครที่มีเครือข่าย KBS2 เกิดขึ้นในปี 2554 ชื่อเรื่องว่าอะไร?",
    "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_en": "What's the network in 2011?",
    "question_th": "เครือข่ายในปี 2554 คืออะไร?",
    "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_en": "What's the Hangul/Japanese that happened before 2014 having a role of Baek Seung-Jo?",
    "question_th": "อังกูล/ญี่ปุ่นที่เกิดขึ้นก่อนปี 2014 ที่รับบทเป็นเบคซึงโจคืออะไร?",
    "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_en": "What's the Hangul/Japanese of Boys Over Flowers that's drama?",
    "question_th": "อังกูล/ภาษาญี่ปุ่นของ Boys Over Flowers คืออะไร?",
    "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_en": "What is the IHSAA class in monon?",
    "question_th": "คลาส IHSAA ในภาษา monon คืออะไร",
    "context": "CREATE TABLE table_name_56 (ihsaa_class VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT ihsaa_class FROM table_name_69 WHERE enrollment = 395",
    "question_en": "What is the IHSAA class with 395 in enrollment?",
    "question_th": "ชั้นเรียน IHSAA ที่มี 395 ในการลงทะเบียนคืออะไร",
    "context": "CREATE TABLE table_name_69 (ihsaa_class VARCHAR, enrollment VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_8 WHERE mascot = \"rebels\"",
    "question_en": "What school has rebels as their mascot?",
    "question_th": "โรงเรียนไหนมีพวกกบฏเป็นตัวนำโชค?",
    "context": "CREATE TABLE table_name_8 (school VARCHAR, mascot VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(enrollment) FROM table_name_61 WHERE ihsaa_class = \"aa\"",
    "question_en": "What is the total enrollment of the aa IHSAA class?",
    "question_th": "การลงทะเบียนทั้งหมดของชั้นเรียน aa IHSAA เป็นเท่าใด",
    "context": "CREATE TABLE table_name_61 (enrollment VARCHAR, ihsaa_class VARCHAR)"
  },
  {
    "answer": "SELECT MIN(enrollment) FROM table_name_39 WHERE school = \"pioneer\"",
    "question_en": "What is the lowest enrollment at the pioneer school?",
    "question_th": "การลงทะเบียนต่ำสุดในโรงเรียนบุกเบิกคืออะไร?",
    "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_en": "What is the average enrollment of the IHSAA A class in wolcott?",
    "question_th": "การลงทะเบียนเรียน IHSAA A ในวอลคอตต์โดยเฉลี่ยคือเท่าใด",
    "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_en": "What is the Shirt No for Henry Bell Cisnero whose height is less than 190?",
    "question_th": "เสื้อเบอร์ของ Henry Bell Cisnero สูงไม่เกิน 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_en": "What is the Shirt No for the person whose height is 188?",
    "question_th": "เสื้อเบอร์สำหรับคนสูง 188 คืออะไร?",
    "context": "CREATE TABLE table_name_9 (shirt_no INTEGER, height VARCHAR)"
  },
  {
    "answer": "SELECT MAX(height) FROM table_name_15 WHERE position = \"libero\"",
    "question_en": "What is the height of the person whose position is Libero?",
    "question_th": "คนที่ตำแหน่งลิเบอโรมีความสูงเท่าไร?",
    "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_en": "What is the total for the person with free of 47.667, and technical less than 47.417?",
    "question_th": "ยอดรวมของบุคคลที่ฟรี 47.667 และทางเทคนิคน้อยกว่า 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_en": "What is the technical number for Jiang Tingting & Jiang Wenwen, and the total was more than 96.334?",
    "question_th": "หมายเลขทางเทคนิคของเจียงถิงถิงและเจียงเหวินเหวินคือหมายเลขใด และยอดรวมมากกว่า 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_en": "What is the free of Apolline Dreyfuss & Lila Meesseman-Bakir, when the total was larger than 90.333?",
    "question_th": "อะไรคือสิ่งที่ฟรีของ Apolline Dreyfuss และ Lila Meesseman-Bakir เมื่อผลรวมมากกว่า 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_en": "What is the average number of games drawn among teams that played over 14 games?",
    "question_th": "จำนวนเกมโดยเฉลี่ยระหว่างทีมที่เล่นมากกว่า 14 เกมคือเท่าไร?",
    "context": "CREATE TABLE table_name_53 (drawn INTEGER, played INTEGER)"
  },
  {
    "answer": "SELECT COUNT(points) FROM table_name_52 WHERE played > 14",
    "question_en": "What is the total number of points combined from the teams that played over 14 games?",
    "question_th": "จำนวนคะแนนรวมจากทีมที่เล่นมากกว่า 14 เกมเป็นเท่าใด?",
    "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_en": "How many points did the ESC Riverrats Geretsried, who lost more than 3 games, score?",
    "question_th": "ESC Riverrats Geretsried ที่แพ้เกิน 3 เกมทำคะแนนได้กี่แต้ม?",
    "context": "CREATE TABLE table_name_17 (points INTEGER, lost VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT AVG(drawn) FROM table_name_37 WHERE lost > 13",
    "question_en": "What is the average number of games drawn among the teams that lost over 13 games?",
    "question_th": "จำนวนเกมโดยเฉลี่ยระหว่างทีมที่แพ้เกิน 13 เกมคือเท่าไร?",
    "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_en": "What is the date of vacancy when the manner of departure is sacked and the team is nejapa?",
    "question_th": "วันที่ว่างคือเมื่อไรที่ลักษณะการลาออกและทีมเนจาปา?",
    "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_en": "what is the date of vacancy when the date of appointment is 1 january 2009?",
    "question_th": "ตำแหน่งว่างคือวันที่ 1 มกราคม 2552 คือวันที่เท่าไร?",
    "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_en": "what is the date of vacancy when the position in table is 10th and the team is balboa?",
    "question_th": "ตำแหน่งว่างในตารางคือวันที่ 10 และทีมบัลบัวว่างวันที่เท่าไร?",
    "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_en": "Who replaced when the position in table is 5th?",
    "question_th": "ใครเข้ามาแทนที่เมื่อตำแหน่งในตารางอยู่ที่ 5?",
    "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_en": "Who is the outgoing manager when they were replaced by pablo centrone?",
    "question_th": "ใครคือผู้จัดการทีมที่จะลาออกเมื่อพวกเขาถูกแทนที่โดยปาโบล เซนโตรเน่?",
    "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_en": "what is the date of vacancy when the team is firpo and replaced by is oscar benitez?",
    "question_th": "วันที่ทีมว่างคือเฟอร์โป และออสการ์ เบนิเตซ เข้ามาแทนที่คือวันที่เท่าไร?",
    "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_en": "Which country was ranked 8 and noted as qs?",
    "question_th": "ประเทศใดอยู่ในอันดับที่ 8 และถูกระบุว่าเป็น qs",
    "context": "CREATE TABLE table_name_15 (country VARCHAR, notes VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_name_80 WHERE rank = 1",
    "question_en": "What are the notes for the contestants that were ranked #1?",
    "question_th": "หมายเหตุสำหรับผู้เข้าแข่งขันที่อยู่ในอันดับที่ 1 คืออะไร?",
    "context": "CREATE TABLE table_name_80 (notes VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_52 WHERE date = \"12/21/1973\"",
    "question_en": "Who did the Hawks play on 12/21/1973?",
    "question_th": "Hawks เล่นกับใครในวันที่ 21/12/1973",
    "context": "CREATE TABLE table_name_52 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_22 WHERE name = \"tricia flores\"",
    "question_en": "What rank does Tricia Flores have?",
    "question_th": "Tricia Flores มีอันดับเท่าไหร่?",
    "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_en": "Who is in group B and has a mark of 6.33?",
    "question_th": "ใครอยู่กลุ่ม B และมีคะแนน 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_en": "What is the mark for Grenada in group A?",
    "question_th": "เกรเนดาในกลุ่ม 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_en": "Who has a mark of 6.17 in group B?",
    "question_th": "ใครได้คะแนน 6.17 ในกลุ่ม 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_en": "What rank does Tatyana Lebedeva have?",
    "question_th": "Tatyana Lebedeva มีอันดับอะไร?",
    "context": "CREATE TABLE table_name_7 (rank VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_85 WHERE mark = \"nm\" AND nationality = \"india\"",
    "question_en": "What rank has a mark of NM and is from India?",
    "question_th": "อันดับไหนมีเครื่องหมาย NM และมาจากอินเดีย?",
    "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_en": "What is the sum of totals for ranks under 3 with tallies of 2-5?",
    "question_th": "ผลรวมของอันดับต่ำกว่า 3 และคะแนนรวม 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_en": "Which player had a rank of 8 and tally of 1-5?",
    "question_th": "ผู้เล่นคนไหนที่มีอันดับ 8 และคะแนน 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_en": "What is the sum of the numbers in series written by sam meikle, which have 21 numbers in the season?",
    "question_th": "ผลรวมของตัวเลขในชุดที่เขียนโดย แซม ไมเคิล ซึ่งมี 21 หมายเลขในฤดูกาลเป็นเท่าใด",
    "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_en": "What was the score for the game played in Alexander Memorial Coliseum when the record was 0-1?",
    "question_th": "เกมนี้เล่นในอเล็กซานเดอร์ เมมโมเรียล โคลีเซียม เมื่อสกอร์ 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_en": "When was the game played that was at the Seattle Center Coliseum?",
    "question_th": "เกมนี้เล่นที่ 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_en": "What is the least game that was played in Alexander Memorial Coliseum on October 16?",
    "question_th": "เกมใดที่เล่นน้อยที่สุดใน Alexander Memorial Coliseum เมื่อวันที่ 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_en": "What average game was played on October 16?",
    "question_th": "เกมที่เล่นโดยเฉลี่ยในวันที่ 16 ตุลาคมคือเกมใด",
    "context": "CREATE TABLE table_name_87 (game INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_56 WHERE game = 2",
    "question_en": "On what day was game 2 played?",
    "question_th": "เกมที่ 2 เล่นวันไหนครับ?",
    "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_en": "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?",
    "question_th": "รายรับจากการท่องเที่ยวโดยเฉลี่ยเป็นล้านเหรียญสหรัฐในปี 2554 โดยมีจำนวนนักท่องเที่ยวน้อยกว่า 1.141 ล้านคนในปี 2554 และรายรับจากการท่องเที่ยวมากกว่า 1,449 รายในปี 2554 เป็นเท่าใด",
    "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_en": "What is the tourism competitiveness in 2011 of venezuela?",
    "question_th": "ความสามารถในการแข่งขันด้านการท่องเที่ยวในปี 2554 ของเวเนซุเอลาเป็นอย่างไร?",
    "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_en": "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?",
    "question_th": "รายรับจากการท่องเที่ยวสูงสุดในปี 2554 ดอลลาร์สหรัฐต่อหัว โดยคิดเป็น 19.4 % ของ GDP ในปี 2546 รายรับจากการท่องเที่ยว และน้อยกว่า 655 ดอลลาร์สหรัฐ ต่อการมาถึงในปี 2554 รายรับจากการท่องเที่ยว",
    "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_en": "What is the lowest tourism arrivals in 2011 in millions with 507 US $ per arrival in 2011 tourism receipts and less than 11,869 million of US $ in 2011 tourism receipts?",
    "question_th": "จำนวนนักท่องเที่ยวที่เข้ามาท่องเที่ยวต่ำสุดในปี 2554 ในหน่วยล้านคือเท่าใด โดยมีรายรับจากการท่องเที่ยวปี 2554 อยู่ที่ 507 เหรียญสหรัฐต่อการท่องเที่ยว และรายรับจากการท่องเที่ยวในปี 2554 น้อยกว่า 11,869 ล้านเหรียญสหรัฐ",
    "context": "CREATE TABLE table_name_95 (tourist_arrivals__2011___millions_ INTEGER, tourism_receipts__2011___us$_per_arrival_ VARCHAR, tourism_receipts__2011___millions_of_us$_ VARCHAR)"
  },
  {
    "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_en": "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?",
    "question_th": "จำนวนนักท่องเที่ยวที่เข้ามาท่องเที่ยวในปี 2554 สูงสุดเป็นจำนวนเท่าใด โดยมีความสามารถในการแข่งขันด้านการท่องเที่ยวที่ 3.82 ในปี 2554 และมากกว่า 1,102 เหรียญสหรัฐฯ ต่อการเดินทางมาถึงในปี 2554 รายรับจากการท่องเที่ยว",
    "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_en": "In what year was Wisconsin the runner-up?",
    "question_th": "วิสคอนซินได้รองชนะเลิศในปีใด",
    "context": "CREATE TABLE table_name_36 (year VARCHAR, runner_up VARCHAR)"
  },
  {
    "answer": "SELECT arena FROM table_name_43 WHERE runner_up = \"north dakota\"",
    "question_en": "In what arena was the North Dakota the runner-up?",
    "question_th": "นอร์ทดาโคตาเป็นรองแชมป์ในเวทีใด",
    "context": "CREATE TABLE table_name_43 (arena VARCHAR, runner_up VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_38 WHERE arena = \"broadmoor arena\"",
    "question_en": "What was the score of the game at the Broadmoor Arena?",
    "question_th": "เกมนี้ที่บรอดมัวร์ อารีน่า ทำได้สกอร์เท่าไหร่?",
    "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_en": "Who was the runner-up at the Broadmoor Arena before 2008?",
    "question_th": "ใครคือรองแชมป์ที่บรอดมัวร์อารีน่าก่อนปี 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_en": "In what year was the competition at the Pepsi Arena?",
    "question_th": "การแข่งขันที่ Pepsi Arena จัดขึ้นในปีใด?",
    "context": "CREATE TABLE table_name_41 (year VARCHAR, arena VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_56 WHERE record = \"53-24\"",
    "question_en": "Which opponent has a 53-24 record?",
    "question_th": "คู่ต่อสู้คนไหนมีสถิติ 53-24?",
    "context": "CREATE TABLE table_name_56 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_10 WHERE game = \"73\"",
    "question_en": "Who was the opponent for game 73?",
    "question_th": "ใครคือคู่ต่อสู้ในเกมที่ 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_en": "who is the replacement when the team is milton keynes dons?",
    "question_th": "ใครจะเข้ามาแทนเมื่อทีมคือ มิลตัน คียนส์ ดอนส์?",
    "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_en": "what is the team with the position in table of 24th and the date of appointment 15 september 2008?",
    "question_th": "ทีมอันดับที่ 24 ของตารางวันที่ 15 กันยายน 2551 คือทีมอะไร?",
    "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_en": "what is the position in table when the team is hartlepool united?",
    "question_th": "ฮาร์ทลี่พูล ยูไนเต็ด อยู่ตำแหน่งไหนในตาราง?",
    "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_en": "what is the team geraint williams is the replacement?",
    "question_th": "เจเรนต์ วิลเลียมส์ จะเข้ามาแทนทีมอะไร?",
    "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_en": "what is the date of vacancy when the position in table is 16th and the outgoing manager is russell slade?",
    "question_th": "วันที่ตำแหน่งว่างเมื่อตำแหน่งในตารางคือวันที่ 16 และผู้จัดการที่จะออกไปคือรัสเซล สเลด คือวันที่เท่าไร?",
    "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_en": "What years have 10 (0) in the finals?",
    "question_th": "รอบชิงชนะเลิศมี 10 (0) ปีไหน?",
    "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_en": "What A-League has 6 (1) for the finals, and leigh broxham as the name?",
    "question_th": "A-League ใดมี 6 (1) สำหรับรอบชิงชนะเลิศและมี leigh broxham เป็นชื่อ?",
    "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_en": "What finals have grant brebner as the name?",
    "question_th": "รอบชิงชนะเลิศมี brebner เป็นชื่ออะไร?",
    "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_en": "What years have 9 (0) as the finals and 133 (1) as the A-League?",
    "question_th": "ปีไหนที่มี 9 (0) เป็นรอบชิงชนะเลิศ และ 133 (1) เป็น 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_en": "What years have 9 (3) as the finals?",
    "question_th": "ปีไหนที่ 9 (3) เป็นรอบชิงชนะเลิศ?",
    "context": "CREATE TABLE table_name_77 (years VARCHAR, finals VARCHAR)"
  },
  {
    "answer": "SELECT years FROM table_name_74 WHERE total = \"101 (16)\"",
    "question_en": "What years have 101 (16) as the total?",
    "question_th": "ปีใดมีทั้งหมด 101 (16)?",
    "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_en": "Who has a time of 7:26.85 and notes of sc/d?",
    "question_th": "ใครมีเวลา 7:26.85 และโน๊ต 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_en": "Ioannis Christou with a rank smaller than 6 has what notes?",
    "question_th": "Ioannis Christou ที่มีอันดับน้อยกว่า 6 มีข้อสังเกตอะไรบ้าง",
    "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_en": "Which Notes have a Distance larger than 7, and a Location of aplin?",
    "question_th": "หมายเหตุใดที่มีระยะทางมากกว่า 7 และตำแหน่งของ 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_en": "How much Distance has a County of faulkner, and a Total smaller than 1.5?",
    "question_th": "ระยะทางมีเคาน์ตี้ฟอล์กเนอร์เท่าใด และผลรวมน้อยกว่า 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_en": "How much Distance has Notes of north end terminus of ar 155?",
    "question_th": "หมายเหตุของปลายทางทิศเหนือสุดของ 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_en": "How much Latitude has a Water (sqmi) smaller than 0?",
    "question_th": "ละติจูดมีน้ำ (ตารางเมตร) น้อยกว่า 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_en": "Which Land (sqmi) has a GEO ID smaller than 3800587900?",
    "question_th": "ที่ดินใด (ตร.ม.) มี GEO ID เล็กกว่า 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_en": "Which Water (sqmi) has a Township of yorktown, and a GEO ID smaller than 3802187940?",
    "question_th": "Water (ตร.ม.) ใดที่มีเขตการปกครองท้องถิ่นของยอร์กทาวน์ และ GEO ID เล็กกว่า 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_en": "What school had Jeff Urban playing at the p position?",
    "question_th": "โรงเรียนไหนที่ Jeff Urban เล่นตำแหน่ง p?",
    "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_en": "What school has the Kansas City Royals for a team?",
    "question_th": "โรงเรียนใดมี Kansas City Royals สำหรับทีม?",
    "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_en": "What is the date of the match where vampiro was the winner in Mexico City?",
    "question_th": "แมตช์ที่แวมไพร์เป็นผู้ชนะที่เม็กซิโกซิตี้คือวันที่เท่าไหร่?",
    "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_en": "What is the wager on August 23, 1992 where vampiro was the winner?",
    "question_th": "การเดิมพันในวันที่ 23 สิงหาคม 1992 คืออะไร โดยที่แวมไพร์เป็นผู้ชนะ?",
    "context": "CREATE TABLE table_name_94 (wager VARCHAR, winner VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_14 WHERE winner = \"shocker\"",
    "question_en": "What is the location where shocker was the winner?",
    "question_th": "สถานที่ใดที่ผู้ช็อคเกอร์เป็นผู้ชนะ?",
    "context": "CREATE TABLE table_name_14 (location VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_27 WHERE loser = \"aaron grundy\"",
    "question_en": "What is the location where aaron grundy was the loser?",
    "question_th": "ตำแหน่งที่แอรอน กรันดี้ เป็นผู้แพ้คือที่ไหน?",
    "context": "CREATE TABLE table_name_27 (location VARCHAR, loser VARCHAR)"
  },
  {
    "answer": "SELECT 1994 FROM table_name_4 WHERE 1999 = \"qf\"",
    "question_en": "What is the 1994 when QF is 1999?",
    "question_th": "1994 คืออะไร เมื่อ QF คือ 1999?",
    "context": "CREATE TABLE table_name_4 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1991 FROM table_name_26 WHERE 1997 = \"18\"",
    "question_en": "What is the 1991 when 1997 is 18?",
    "question_th": "1991 คืออะไรเมื่อ 1997 อายุ 18 ปี?",
    "context": "CREATE TABLE table_name_26 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1991 FROM table_name_25 WHERE 1999 = \"14\"",
    "question_en": "What's the 1991 when 1999 is 14?",
    "question_th": "ปี 1991 คืออะไรเมื่อปี 1999 อายุ 14 ปี?",
    "context": "CREATE TABLE table_name_25 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1996 FROM table_name_44 WHERE 1997 = \"3r\"",
    "question_en": "What's the 1996 when 1997 is 3R?",
    "question_th": "ปี 1996 คืออะไรเมื่อปี 1997 เป็น 3R?",
    "context": "CREATE TABLE table_name_44 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1994 FROM table_name_46 WHERE 1996 = \"3r\"",
    "question_en": "What is 1994 when 1996 is 3R?",
    "question_th": "1994 คืออะไรเมื่อ 1996 เป็น 3R?",
    "context": "CREATE TABLE table_name_46 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1996 FROM table_name_72 WHERE tournament = \"us open\"",
    "question_en": "What is 1996 during the US Open?",
    "question_th": "ปี 1996 ระหว่าง 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_en": "What's the standard name with an ADSL2 version and a 01.5 1.5 mbit/s downstream rate?",
    "question_th": "ชื่อมาตรฐานของเวอร์ชัน ADSL2 และอัตราดาวน์สตรีม 01.5 1.5 mbit/s คืออะไร",
    "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_en": "What's the downstream rate for the Itu g.992.2 having a version of ADSL?",
    "question_th": "อัตราดาวน์สตรีมสำหรับ Itu g.992.2 ที่มีเวอร์ชันของ 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_en": "What's the version of Itu g.992.3 Annex J?",
    "question_th": "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_en": "What's the version that has a 20.0 mbit/s downstream rate?",
    "question_th": "เวอร์ชันใดที่มีอัตราการดาวน์สตรีม 20.0 mbit/s",
    "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_en": "What's the upstream rate for Itu g.992.2 with a version of ADSL?",
    "question_th": "อัตราอัปสตรีมสำหรับ Itu g.992.2 พร้อม 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_en": "How many games does the player with 1 (0) finals and a w-league of 28 (1) have?",
    "question_th": "ผู้เล่นที่มี 1 (0) รอบชิงชนะเลิศและ w-ลีก 28 (1) มีกี่เกม?",
    "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_en": "What year had more than 2 goals and 11 (2) games?",
    "question_th": "ปีใดที่มีมากกว่า 2 ประตูและ 11 (2) เกม?",
    "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_en": "What is the lowest number of goals with 8 (2) w-leagues?",
    "question_th": "จำนวนประตูต่ำสุดด้วย 8 (2) W-ลีกคือเท่าใด?",
    "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_en": "Which UEFA Champions League has a La Liga of 17, and a Copa del Rey larger than 0?",
    "question_th": "ยูฟ่าแชมเปียนส์ลีกใดที่มีลาลีกา 17 และโกปาเดลเรย์มากกว่า 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_en": "Which Copa del Rey has a Name of guti, and a FIFA Club World Championship smaller than 0?",
    "question_th": "Copa del Rey ใดมีชื่อ guti และ FIFA Club World Championship น้อยกว่า 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_en": "Which Copa del Rey has a La Liga smaller than 0?",
    "question_th": "โคปา เดล เรย์ ไหนมีลาลีกาน้อยกว่า 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_en": "Which FIFA Club World Championship has a UEFA Champions League of 0, and a Total smaller than 3, and a Name of geremi?",
    "question_th": "FIFA Club World Championship รายการใดที่มียูฟ่าแชมเปียนส์ลีกเป็น 0 และผลรวมน้อยกว่า 3 และชื่อของเจเรมี",
    "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_en": "What is the average rank for Hungary?",
    "question_th": "อันดับเฉลี่ยของ ฮังการี คือเท่าไร?",
    "context": "CREATE TABLE table_name_82 (rank INTEGER, country VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_36 WHERE time = \"3:19.167\"",
    "question_en": "What country has a time of 3:19.167?",
    "question_th": "ประเทศใดมีเวลา 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_en": "What are the notes for the time at 3:19.167?",
    "question_th": "บันทึกของเวลาที่ 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_en": "What was the album Closer: The Best of Sarah Mclachlan certified as?",
    "question_th": "อัลบั้ม Closer: The Best of Sarah Mclachlan ได้รับการรับรองว่าเป็นอัลบั้มอะไร",
    "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_en": "What is the average Laps that have gregorio lavilla as the rider, with a grid greater than 13?",
    "question_th": "อะไรคือรอบเฉลี่ยที่มี Gregorio Lavilla เป็นนักบิด โดยมีกริดมากกว่า 13 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_95 (laps INTEGER, rider VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT bike FROM table_name_20 WHERE grid = 26",
    "question_en": "What bike has 26 as the grid?",
    "question_th": "จักรยานคันไหนมี 26 เป็นกริด?",
    "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_en": "What is the highest grid that has +44.866 as the time, with laps greater than 25?",
    "question_th": "ตารางสูงสุดที่มีเวลา +44.866 โดยมีรอบมากกว่า 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_en": "who has the high points on june 16?",
    "question_th": "ใครมีคะแนนสูงสุดในวันที่ 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_en": "What was the attendance on november 2, 2003?",
    "question_th": "การเข้าร่วมในวันที่ 2 พฤศจิกายน พ.ศ. 2546 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_84 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT 193 FROM table_name_77 WHERE height = 2.05",
    "question_en": "What is the 1.93 that is 2.05 in height?",
    "question_th": "1.93 สูง 2.05 คืออะไร?",
    "context": "CREATE TABLE table_name_77 (height VARCHAR)"
  },
  {
    "answer": "SELECT 193 FROM table_name_69 WHERE name = \"svetlana shkolina\"",
    "question_en": "What is the 1.93 for Svetlana Shkolina?",
    "question_th": "1.93 สำหรับ Svetlana Shkolina คืออะไร?",
    "context": "CREATE TABLE table_name_69 (name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_50 WHERE nationality = \"ukraine\" AND 193 = \"xxo\"",
    "question_en": "What is the name for the play from the Ukraine, and a 1.93 xxo?",
    "question_th": "ละครจากยูเครนชื่ออะไรและ 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_en": "What country in Europe is ranked 4, with top goal scorer Karl-Heinz Rummenigge with 14 goals?",
    "question_th": "ประเทศใดในยุโรปอันดับที่ 4 โดยคาร์ล-ไฮนซ์ รุมเมนิกเก้ ผู้ทำประตูสูงสุดที่ทำได้ 14 ประตู",
    "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_en": "Wha is the rank for 52 574 avg. att?",
    "question_th": "อันดับ 52 574 เฉลี่ยอยู่ที่เท่าไร อัท?",
    "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_en": "What european country had more than 14 goals, and 52 538 avg att?",
    "question_th": "ประเทศใดในยุโรปที่มีมากกว่า 14 ประตูและ 52,538 อัฒจันทร์เฉลี่ย?",
    "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_en": "What's the least amount of wins for Germany in the 1999 season having 0 points?",
    "question_th": "ชัยชนะน้อยที่สุดของเยอรมนีในฤดูกาล 1999 โดยมี 0 แต้มคือเท่าใด",
    "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_en": "How many wins when the points are 0 and podiums are less than 0?",
    "question_th": "ชนะกี่ครั้งเมื่อแต้มเป็น 0 และโพเดียมน้อยกว่า 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_en": "What's the fastest laps during the 1995 season having poles & podiums at 0?",
    "question_th": "รอบที่เร็วที่สุดในฤดูกาล 1995 โดยมีโพลและโพเดียมอยู่ที่ 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_en": "How many years have an Award of venice film festival, and a Title of lust, caution?",
    "question_th": "กี่ปีได้รับรางวัลเทศกาลภาพยนตร์เวนิสและชื่อเรื่องของตัณหาข้อควรระวัง?",
    "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_en": "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?",
    "question_th": "หมวดหมู่ใดที่มีปีมากกว่าปี 1996 และผลการชนะ และตำแหน่งภูเขาโบรคแบ็ค และรางวัลลูกโลกทองคำ",
    "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_en": "Which Title has a Year smaller than 2001, and an Award of independent spirit awards?",
    "question_th": "ชื่อใดที่มีปีที่เล็กกว่าปี 2544 และรางวัล 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_en": "Which chassis has 17 points?",
    "question_th": "แชสซีตัวไหนมี 17 แต้ม?",
    "context": "CREATE TABLE table_name_30 (chassis VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT AVG(draw) FROM table_name_33 WHERE total_games = 186",
    "question_en": "What is the average draw for 186 games?",
    "question_th": "ค่าเฉลี่ยเสมอสำหรับ 186 เกมคือเท่าไร?",
    "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_en": "What is the number of games for less than 2 seasons and more than 7 draws?",
    "question_th": "น้อยกว่า 2 ฤดูกาลและเสมอกันมากกว่า 7 เกมจำนวนเกมเป็นเท่าใด?",
    "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_en": "What is the total number of losses for less than 48 games, and less than 7 draws?",
    "question_th": "จำนวนการแพ้ทั้งหมดน้อยกว่า 48 เกมและเสมอน้อยกว่า 7 คือเท่าใด?",
    "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_en": "What is the total number of games with more than 18 loses, a Total League, and more than 317 draws?",
    "question_th": "จำนวนเกมทั้งหมดที่มีการแพ้มากกว่า 18 เกม, Total League หนึ่งเกม และเสมอมากกว่า 317 เกมเป็นเท่าใด",
    "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_en": "What is Bobby Ryan's nationality?",
    "question_th": "บ๊อบบี้ ไรอันมีสัญชาติอะไร?",
    "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_en": "What's the location of the team Peter Stuyvesant International Racing?",
    "question_th": "ที่ตั้งของทีม ปีเตอร์ สตุยเวสันต์ อินเตอร์เนชั่นแนล เรซซิ่ง อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_65 (city___state VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_27 WHERE circuit = \"adelaide international raceway\"",
    "question_en": "Who was the winner of the Adelaide International Raceway circuit?",
    "question_th": "ใครคือผู้ชนะของสนามแข่งรถ Adelaide International Raceway",
    "context": "CREATE TABLE table_name_27 (winner VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_52 WHERE circuit = \"surfers paradise international raceway\"",
    "question_en": "What date has the Surfers Paradise International Raceway circuit?",
    "question_th": "สนามแข่งรถนานาชาติ Surfers Paradise มีวันไหน?",
    "context": "CREATE TABLE table_name_52 (date VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT race_title FROM table_name_73 WHERE team = \"dick johnson racing\"",
    "question_en": "What is the race title of Dick Johnson Racing?",
    "question_th": "ชื่อการแข่งขันของ 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_en": "What is the career win-loss for the ATP Masters Series?",
    "question_th": "การชนะ-แพ้ในอาชีพของ 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_en": "What's the Home ground(s) listed for the Name Melville Cricket Club?",
    "question_th": "สนามเหย้าที่ระบุไว้ในชื่อ 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_en": "What Name has the Captain Aaron Heal?",
    "question_th": "กัปตันแอรอนฮีลชื่ออะไร",
    "context": "CREATE TABLE table_name_4 (name VARCHAR, captain VARCHAR)"
  },
  {
    "answer": "SELECT nickname FROM table_name_40 WHERE name = \"university cricket club\"",
    "question_en": "What's the Nickname listed for the Name of University Cricket Club?",
    "question_th": "ชื่อเล่นที่ระบุไว้ในชื่อของ 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_en": "What Nickname has a Location of Southern River?",
    "question_th": "ชื่อเล่นใดมีที่ตั้งของแม่น้ำทางใต้?",
    "context": "CREATE TABLE table_name_82 (nickname VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_74 WHERE nickname = \"storm\"",
    "question_en": "What is the Name listed for the Nickname of Storm?",
    "question_th": "ชื่อที่แสดงเป็นชื่อเล่นของพายุคืออะไร?",
    "context": "CREATE TABLE table_name_74 (name VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_67 WHERE location = \"bayswater\"",
    "question_en": "What Name has the Location of Bayswater?",
    "question_th": "ที่ตั้งของ 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_en": "How many years have a Form album of the thing?",
    "question_th": "กี่ปีมีอัลบั้มฟอร์มของสิ่งนั้น?",
    "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_en": "Which Label-Nr has a Year smaller than 1968, and a Label of world pacific, and an album of chile con soul?",
    "question_th": "Label-Nr ใดที่มีปีที่เล็กกว่าปี 1968 และมี Label of world pacific และอัลบั้มของ 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_en": "Which Year has a Label-Nr of 88146?",
    "question_th": "ปีใดมีป้ายกำกับ-Nr เท่ากับ 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_en": "How many years were there albums by heat wave?",
    "question_th": "อัลบั้ม 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_en": "Which Title has an album of tough talk, and a Label-Nr of x-371?",
    "question_th": "Title ไหนมีอัลบั้มที่พูดถึงยากๆ และ Label-Nr ที่ 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_en": "What is the lowest number of floors for the number 2 ranked Joyus Housing?",
    "question_th": "จำนวนชั้นต่ำสุดของ Joyus Housing อันดับ 2 คือเท่าไร?",
    "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_en": "What is the number of floors when the r Rank larger than 41, and a City of parel?",
    "question_th": "จำนวนชั้นเมื่ออันดับ r มากกว่า 41 และเมืองพาเรลเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_72 (floors VARCHAR, rank VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(rank) FROM table_name_46 WHERE city = \"sewri\"",
    "question_en": "What is the rank for the city of sewri?",
    "question_th": "เมืองเซอรีอยู่อันดับไหน?",
    "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_en": "What rank has a status of proposed, with 80 floors for Celestia Spaces 4?",
    "question_th": "ตำแหน่งใดที่มีสถานะเสนอ มี 80 ชั้นสำหรับ 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 = \"бяха чули\"",
    "question_en": "What's the English Pluperfect when the Bulgarian is бяха чули?",
    "question_th": "What's English Pluperfect เมื่อภาษาบัลแกเรียคือ бяха чули?",
    "context": "CREATE TABLE table_name_48 (english VARCHAR, bulgarian VARCHAR)"
  },
  {
    "answer": "SELECT italian FROM table_name_83 WHERE english = \"we had heard\"",
    "question_en": "What's the Italian Pluperfect when the English is We Had Heard?",
    "question_th": "อะไรคือคำว่าสมรู้ร่วมคิดของอิตาลีเมื่อเราได้ยินภาษาอังกฤษ?",
    "context": "CREATE TABLE table_name_83 (italian VARCHAR, english VARCHAR)"
  },
  {
    "answer": "SELECT portuguese FROM table_name_25 WHERE french = \"ils/elles avaient entendu\"",
    "question_en": "What is the Portuguese Pluperfect when the French is Ils/Elles Avaient Entendu?",
    "question_th": "อะไรคือ Pluperfect ของโปรตุเกสเมื่อภาษาฝรั่งเศสคือ Ils/Elles Avaient Entendu?",
    "context": "CREATE TABLE table_name_25 (portuguese VARCHAR, french VARCHAR)"
  },
  {
    "answer": "SELECT german FROM table_name_85 WHERE macedonian = \"беше слушнал/-а/-о\"",
    "question_en": "What's the German Pluperfect when the Macedonian is беше слушнал/-а/-о?",
    "question_th": "What's the German Pluperfect เมื่อภาษามาซิโดเนียคือ беше слушнал/-а/-о?",
    "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_en": "What is the least amount of silver for Italy with a total less than 5?",
    "question_th": "อิตาลีมีเงินน้อยที่สุดโดยมีจำนวนรวมน้อยกว่า 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_en": "What is the total for Austria when there is less than 1 bronze?",
    "question_th": "เมื่อออสเตรียมีน้อยกว่า 1 เหรียญทองแดง มีจำนวนรวมเป็นเท่าใด",
    "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_en": "What is the total when silver is more than 3, and rank is 2?",
    "question_th": "ผลรวมเมื่อเงินมากกว่า 3 และอันดับที่ 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_en": "What is the gold number when total is more than 1, and bronze is 0, and rank is 5?",
    "question_th": "เลขทองเมื่อผลรวมมากกว่า 1 และทองแดงเป็น 0 และอันดับเป็น 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_en": "What date was the episode that aired at 7:30 pm ET?",
    "question_th": "ตอนที่ออกอากาศเวลา 19.30 น. ET คือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_26 (date VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_38 WHERE episode = \"one\"",
    "question_en": "What date did episode one air on?",
    "question_th": "ตอนที่ 1 ออกอากาศวันไหนคะ?",
    "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_en": "At what venue was the 2010 FIFA World Cup Qualification?",
    "question_th": "ฟุตบอลโลก 2010 รอบคัดเลือก จัดขึ้นที่ใด?",
    "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_en": "What is the discipline for the summer Olympics in 2008?",
    "question_th": "ระเบียบวินัยสำหรับโอลิมปิกฤดูร้อนปี 2551 คืออะไร?",
    "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_en": "What venue has an extra of 45.08 S?",
    "question_th": "สถานที่ใดมี 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_en": "What is the extra when the result is 4th at the NCAA Championships?",
    "question_th": "มีอะไรพิเศษเมื่อผลการแข่งขันเป็นอันดับ 4 ในการแข่งขัน 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_en": "What tournament had an extra of 3:06.94 s?",
    "question_th": "ทัวร์นาเมนต์ใดมีเวลาเพิ่มเป็น 3:06.94 วินาที?",
    "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_en": "Name the lowest Time of jamaica with a Lane larger than 4 and a Rank smaller than 1?",
    "question_th": "ตั้งชื่อเวลาต่ำสุดของประเทศจาเมกาด้วยเลนที่ใหญ่กว่า 4 และอันดับน้อยกว่า 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_en": "Name the lowest Rank with a Lane of 5 and a Time smaller than 11.06?",
    "question_th": "ตั้งชื่ออันดับต่ำสุดด้วยเลน 5 และเวลาที่น้อยกว่า 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_en": "Name the lowest Rank of carmelita jeter with a Time smaller than 11.08?",
    "question_th": "ตั้งชื่ออันดับต่ำสุดของเครื่องบินเจ็ตคาร์เมลิตาด้วยเวลาที่น้อยกว่า 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_en": "When the points are 98 what is the draw?",
    "question_th": "เมื่อแต้มอยู่ 98 เสมอกันอย่างไร?",
    "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_en": "For what 188kg is the world record clean & jerk?",
    "question_th": "สถิติโลก Clean & Jerk ยกน้ำหนัก 188 กก. ได้เท่าไหร่?",
    "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–7(5), 2–6\"",
    "question_en": "What year had a score of 6–7(5), 2–6 and opponent of Brenda Schultz-Mccarthy?",
    "question_th": "ปีใดมีคะแนน 6–7 (5), 2–6 และคู่ต่อสู้ของ 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–6, 7–6, 7–5\"",
    "question_en": "What year had a score of 4–6, 7–6, 7–5?",
    "question_th": "ปีใดมีคะแนน 4–6, 7–6, 7–5",
    "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_en": "Who was the away team for the match with a home team of Citizen Team A?",
    "question_th": "ทีมเยือนนัดพบกับทีมเจ้าบ้านทีมซิติเซ่น เอ คือใคร?",
    "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_en": "What was the score for the match with a home team of Citizen Team A?",
    "question_th": "แมตช์กับเจ้าบ้านทีมซิติเซ่น เอ ได้สกอร์เท่าไหร่?",
    "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_en": "Who was the home team in the match that had an away team of Convoy Sun Hei Team B?",
    "question_th": "แมตช์นี้เจ้าบ้านใครเป็นทีมเยือนที่มีทีมเยือน คอนวอย ซัน เฮ่ย ทีมบี ?",
    "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_en": "What time did the match with an away team of Happy Valley Team B start?",
    "question_th": "แมตช์กับทีมเยือน Happy Valley Team B เริ่มกี่โมง?",
    "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_en": "What is the 2nd leg when second team is Sumykhimprom?",
    "question_th": "เลกที่ 2 เมื่อทีมรองคือ ซูมีคิมพรหม คืออะไร?",
    "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_en": "What is the 1st leg when team number 1 is CSU SIBIU?",
    "question_th": "เลก 1 คืออะไรเมื่อทีมหมายเลข 1 คือ 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_en": "Which Time/Retired has Laps smaller than 100, and Points larger than 0?",
    "question_th": "เวลา/เกษียณใดที่มีรอบน้อยกว่า 100 และคะแนนมากกว่า 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_en": "Which Laps have a Time/Retired of + 4 laps, and a Grid larger than 18?",
    "question_th": "รอบใดมีเวลา/เกษียณเป็น + 4 รอบ และตารางที่ใหญ่กว่า 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_en": "Which Team has Laps of 100, and a Time/Retired of +8.6 secs?",
    "question_th": "ทีมใดมีรอบ 100 และเวลา/เกษียณ +8.6 วินาที?",
    "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_en": "What strike rate is 9 the matches?",
    "question_th": "อัตราการนัดหยุดงานคือ 9 นัด?",
    "context": "CREATE TABLE table_name_97 (strike_rate VARCHAR, matches VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_89 WHERE strike_rate = \"79.62\"",
    "question_en": "Which player has 79.62 as the strike rate?",
    "question_th": "ผู้เล่นคนไหนมีอัตราการหยุดงาน 79.62?",
    "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_en": "With 10 as matches, and 469 runs, what is the strike rate?",
    "question_th": "เมื่อมีการแข่งขัน 10 นัด และวิ่งได้ 469 ครั้ง อัตราการหยุดงานจะเป็นเท่าใด?",
    "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_en": "When the strike rate is 70.10, what is the balls?",
    "question_th": "เมื่ออัตราการตีเป็น 70.10 ได้ลูกเท่าไหร่?",
    "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_en": "What nation has a time of 51.35 in the final heat?",
    "question_th": "ชาติใดมีเวลา 51.35 ในฮีตสุดท้าย?",
    "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_en": "Which heat, semifinal or final has a time of 48.97?",
    "question_th": "ฮีตไหนรอบรองชนะเลิศหรือรอบชิงชนะเลิศมีเวลา 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_en": "What heat, semifinal or final has a time of 25.00?",
    "question_th": "ฮีตใดรอบรองชนะเลิศหรือรอบชิงชนะเลิศมีเวลา 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_en": "What date was the men's 100m breaststroke in heat 6?",
    "question_th": "กบ 100 เมตรชาย ฮีต 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_en": "Marion Buisson with a 4.00 of o had what result?",
    "question_th": "Marion Buisson ด้วยสกอร์ 4.00 มีผลอย่างไร?",
    "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_en": "Anastasija Reiberger from Germany had what 4.00?",
    "question_th": "Anastasija Reiberger จากเยอรมนีได้เท่าไหร่ 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_en": "Alana Boyd of group B with a 4.30 result has what nationality?",
    "question_th": "อลาน่า บอยด์ กลุ่มบี ผลการแข่งขัน 4.30 มีสัญชาติอะไร?",
    "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_en": "Roslinda Samsu has what nationality?",
    "question_th": "โรสลินดา ซัมซู มีสัญชาติอะไร?",
    "context": "CREATE TABLE table_name_87 (nationality VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_49 WHERE name = \"marion buisson\"",
    "question_en": "What nation is Marion Buisson playing for?",
    "question_th": "Marion Buisson ลงเล่นให้กับทีมชาติใด?",
    "context": "CREATE TABLE table_name_49 (nationality VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT rowers FROM table_name_80 WHERE country = \"canada\"",
    "question_en": "Who is the rower from Canada?",
    "question_th": "ใครคือนักพายเรือจากแคนาดา?",
    "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_en": "What is the sum of the rank of the rower with an r note from Australia?",
    "question_th": "อันดับนักพายกับโน้ต r จากออสเตรเลียมีผลรวมเท่าไหร่?",
    "context": "CREATE TABLE table_name_6 (rank INTEGER, notes VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_98 WHERE rank < 2",
    "question_en": "What is the country with a rank less than 2?",
    "question_th": "ประเทศใดที่มีอันดับต่ำกว่า 2 คือประเทศใด",
    "context": "CREATE TABLE table_name_98 (country VARCHAR, rank INTEGER)"
  },
  {
    "answer": "SELECT notes FROM table_name_41 WHERE athlete = \"gabriella bascelli\"",
    "question_en": "What notes did Gabriella Bascelli receive?",
    "question_th": "Gabriella Bascelli ได้รับโน้ตอะไรบ้าง",
    "context": "CREATE TABLE table_name_41 (notes VARCHAR, athlete VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(rank) FROM table_name_62 WHERE time = \"7:31.90\"",
    "question_en": "What rank did the time of 7:31.90 receive?",
    "question_th": "เวลา 7:31.90 ได้อันดับไหน?",
    "context": "CREATE TABLE table_name_62 (rank VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT romaji_title FROM table_name_64 WHERE japanese_title = \"女王の教室\"",
    "question_en": "Which Romaji Title has a Japanese Title of 女王の教室?",
    "question_th": "ชื่ออักษรโรมันจิใดมีชื่อภาษาญี่ปุ่นว่า 女王の教室?",
    "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_en": "How many Episodes have a Romaji Title of slow dance?",
    "question_th": "มีกี่ตอนที่มีชื่อการเต้นรำช้าแบบโรมาจิ?",
    "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_en": "How many Episodes have a Romaji Title of dragon zakura?",
    "question_th": "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_en": "Which Format has a Label of columbia, and a Catalog smaller than 88697411432, and a Date of october 24, 2008?",
    "question_th": "รูปแบบใดมีป้ายกำกับของโคลัมเบีย และแค็ตตาล็อกเล็กกว่า 88697411432 และวันที่ 24 ตุลาคม 2551",
    "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_en": "Which Catalog has a Date of july 15, 2011?",
    "question_th": "แค็ตตาล็อกใดมีวันที่ 15 กรกฎาคม 2554",
    "context": "CREATE TABLE table_name_73 (catalog INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_57 WHERE date = \"july 21, 2008\"",
    "question_en": "Which opponent was on July 21, 2008?",
    "question_th": "คู่ต่อสู้คนใดคือวันที่ 21 กรกฎาคม พ.ศ. 2551",
    "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_en": "What was the date of the tournament with a clay surface and an opponent of Irina Falconi?",
    "question_th": "วันที่ของทัวร์นาเมนต์ที่มีพื้นผิวดินและคู่ต่อสู้ของ 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_en": "Who was the opponent on May 10, 2009?",
    "question_th": "คู่ต่อสู้เมื่อวันที่ 10 พฤษภาคม 2552 คือใคร?",
    "context": "CREATE TABLE table_name_5 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_16 WHERE home_team = \"bath city\"",
    "question_en": "What is the score of the home team, bath city?",
    "question_th": "สกอร์ของเจ้าบ้าน บาธ ซิตี้ เป็นยังไง?",
    "context": "CREATE TABLE table_name_16 (score VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_13 WHERE away_team = \"southport\"",
    "question_en": "What was the score for the away team southport?",
    "question_th": "ทีมเยือน เซาธ์ปอร์ท ได้สกอร์เท่าไหร่?",
    "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_en": "What is the home team that had an away team of lincoln city?",
    "question_th": "เจ้าบ้านกับทีมเยือนลินคอล์นซิตี้คือทีมไหน?",
    "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_en": "What date had a game with wycombe wanderers as the away team?",
    "question_th": "นัดไหนกับวีคอมบ์ วันเดอร์เรอร์สเป็นทีมเยือน?",
    "context": "CREATE TABLE table_name_28 (date VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(place) FROM table_name_80 WHERE artist = \"augustė\" AND draw < 6",
    "question_en": "How many places have an Artist of augustė, and a Draw smaller than 6?",
    "question_th": "มีศิลปินแห่งเดือนสิงหาคมกี่แห่งและวาดน้อยกว่า 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_en": "What is the latest year the world championships were held in Thun?",
    "question_th": "การแข่งขันชิงแชมป์โลกที่จัดขึ้นที่เมืองทูนคือปีใด?",
    "context": "CREATE TABLE table_name_71 (year INTEGER, place VARCHAR)"
  },
  {
    "answer": "SELECT gold FROM table_name_21 WHERE place = \"phoenix\"",
    "question_en": "Who won gold when the world championships were held in Phoenix?",
    "question_th": "ใครได้รับรางวัลเหรียญทองเมื่อการแข่งขันชิงแชมป์โลกจัดขึ้นที่ฟีนิกซ์?",
    "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_en": "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?",
    "question_th": "รหัส ANSI ที่เล็กที่สุดสำหรับเมือง Adler คืออะไร เมื่อลองจิจูดมากกว่า -101.333926, GEO ID น้อยกว่า 3806700900 และ Land ( sqmi ) มากกว่า 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_en": "Cass county has 0.008 Water (sqmi), less than 35.874 Land (sqmi), more than 35 Pop. (2010), and what average latitude?",
    "question_th": "เทศมณฑล Cass มีน้ำ 0.008 (ตร.ม.) น้อยกว่า 35.874 ที่ดิน (ตร.ม.) มากกว่า 35 ป๊อป (2553) และละติจูดเฉลี่ยเท่าใด",
    "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_en": "In what county is the latitude less than 46.935364 and GEO ID is 3801700500?",
    "question_th": "ในเขตใดที่ละติจูดน้อยกว่า 46.935364 และ GEO ID คือ 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_en": "Who was the opponent at the game with a score of 35-14?",
    "question_th": "คู่ต่อสู้ในเกมนี้คือใครด้วยสกอร์ 35-14?",
    "context": "CREATE TABLE table_name_33 (opponent VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_21 WHERE record = \"5-1\"",
    "question_en": "What was the result of the game when the record was 5-1?",
    "question_th": "ผลของเกมเมื่อสถิติเป็น 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_en": "What was the result of the game against the Los Angeles Dons?",
    "question_th": "ผลการแข่งขันกับลอสแอนเจลิส ดอนส์เป็นอย่างไร?",
    "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_en": "Which Year has a Venue of bydgoszcz, poland, and an Event of junior team?",
    "question_th": "ปีใดมีสถานที่จัดงาน Bydgoszcz ประเทศโปแลนด์ และงานของทีมรุ่นน้อง?",
    "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_en": "Which Venue has a Year smaller than 2009, and an Event of 3000 m, and a Competition of world youth championships?",
    "question_th": "สถานที่ใดที่มีหนึ่งปีน้อยกว่าปี 2009 และมีกิจกรรมระยะทาง 3,000 ม. และการแข่งขันชิงแชมป์เยาวชนโลก",
    "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_en": "Which Year has a Competition of commonwealth youth games?",
    "question_th": "ปีใดที่มีการแข่งขันกีฬาเยาวชนเครือจักรภพ?",
    "context": "CREATE TABLE table_name_94 (year INTEGER, competition VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(rank) FROM table_name_86 WHERE year = 1986",
    "question_en": "What is the total for 1986?",
    "question_th": "รวมปี 2529 เป็นเท่าไร?",
    "context": "CREATE TABLE table_name_86 (rank VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_61 WHERE year < 1954 AND floors > 15",
    "question_en": "What is the name before 1954 with more than 15 floors?",
    "question_th": "ชื่อก่อนปี 1954 ที่มีมากกว่า 15 ชั้นคืออะไร?",
    "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_en": "What is the lowest rank for El Paso Natural Gas Company Building?",
    "question_th": "อันดับต่ำสุดของอาคารบริษัท El Paso Natural Gas Company คือที่ใด",
    "context": "CREATE TABLE table_name_86 (rank INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_64 WHERE province = \"gauteng\"",
    "question_en": "What is the rank of the gauteng province?",
    "question_th": "จังหวัดกัวเต็งมีอันดับเท่าไหร่?",
    "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_en": "What is the lowest 2013 population estimate of the province with a 23.7 percentage?",
    "question_th": "การประมาณจำนวนประชากรต่ำสุดในปี 2013 ของจังหวัดที่มีเปอร์เซ็นต์ 23.7 คือเท่าใด",
    "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_en": "What year(s) was Duisburg runner-up?",
    "question_th": "ดุยส์บวร์กได้รองแชมป์ปีไหน?",
    "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_en": "What was the earliest year with a note of 18.04 m wl?",
    "question_th": "ปีแรกสุดที่มีโน้ต 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_en": "What venue had a competition of World Junior Championships before 2011?",
    "question_th": "สถานที่ใดมีการแข่งขัน World Junior Championships ก่อนปี 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_en": "Who was the developer of Call of Duty: Black Ops?",
    "question_th": "ใครเป็นผู้พัฒนา 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_en": "What is the platform for the game of the third-person shooter genre?",
    "question_th": "แพลตฟอร์มสำหรับเกมประเภทยิงบุคคลที่สามคืออะไร?",
    "context": "CREATE TABLE table_name_65 (platform_s_ VARCHAR, genre VARCHAR)"
  },
  {
    "answer": "SELECT platform_s_ FROM table_name_95 WHERE year = 2007",
    "question_en": "What is the platform of the game from 2007?",
    "question_th": "แพลตฟอร์มของเกมตั้งแต่ปี 2550 คืออะไร?",
    "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_en": "Who was the developer of Resident Evil 4?",
    "question_th": "ใครเป็นผู้พัฒนา 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_en": "What was the rank of flori lang when his time was less than 22.27",
    "question_th": "ฟลอรี หลาง ยศอะไร เมื่อเวลาของเขาน้อยกว่า 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_en": "What lane had a heat after 12, a rank of 38 and a time larger than 22.67?",
    "question_th": "เลนใดมีความร้อนหลังจาก 12, อันดับ 38 และเวลาที่มากกว่า 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_en": "What game has 27-12 record?",
    "question_th": "เกมอะไรมีสถิติ 27-12?",
    "context": "CREATE TABLE table_name_14 (game VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_43 WHERE record = \"21-11\"",
    "question_en": "What date was the record 21-11?",
    "question_th": "บันทึกวันที่ 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_en": "What is the location/attendance for the w 95-93 score?",
    "question_th": "สถานที่/การเข้างานของคะแนน w 95-93 คืออะไร?",
    "context": "CREATE TABLE table_name_33 (location_attendance VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_name_95 WHERE record = \"26-11\"",
    "question_en": "What is the location/attendance with a 26-11 record?",
    "question_th": "สถานที่/การเข้าร่วมที่มีบันทึก 26-11 คืออะไร?",
    "context": "CREATE TABLE table_name_95 (location_attendance VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_44 WHERE record = \"26-12\"",
    "question_en": "Which opponent has a 26-12 record?",
    "question_th": "คู่ต่อสู้คนไหนมีสถิติ 26-12?",
    "context": "CREATE TABLE table_name_44 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_95 WHERE rower = \"lee ka man\"",
    "question_en": "What is Lee Ka Man's Time?",
    "question_th": "เวลาของลีกะมันคืออะไร?",
    "context": "CREATE TABLE table_name_95 (time VARCHAR, rower VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(rank) FROM table_name_35 WHERE time = \"8:23.02\"",
    "question_en": "What is the Rank of the rower with a Time of 8:23.02?",
    "question_th": "อันดับนักพายเรือด้วยเวลา 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_en": "What is the most gold when the rank is 7 and bronze is less than 0?",
    "question_th": "ทองคำมากที่สุดเมื่ออันดับ 7 และทองแดงน้อยกว่า 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_en": "what is the most gold when the total is 7?",
    "question_th": "ทองมากที่สุดเมื่อรวมเป็น 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_en": "what is the least gold when the rank is 10 and silver is less than 0?",
    "question_th": "ทองคำน้อยที่สุดเมื่ออันดับ 10 และเงินน้อยกว่า 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_en": "what is the lowest total when the nation is sweden (swe) and silver is less than 0?",
    "question_th": "ผลรวมต่ำสุดเมื่อประเทศคือสวีเดน (swe) และเงินน้อยกว่า 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_en": "what is the average total when silver is more than 2, bronze is 12 and gold is less than 12?",
    "question_th": "ค่าเฉลี่ยทั้งหมดเมื่อเงินมากกว่า 2 ทองแดงคือ 12 และทองน้อยกว่า 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_en": "What is the longitude with a latitude of 48.930222 with a Geo ID smaller than 3806755660?",
    "question_th": "ลองจิจูดที่มีละติจูด 48.930222 โดยมี Geo ID เล็กกว่า 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_en": "What is the latitude that has a sqmi smaller than 34.401, a Geo ID smaller than 3807157722, and a Longitude of -98.475995?",
    "question_th": "ละติจูดที่มี sqmi เล็กกว่า 34.401, Geo ID เล็กกว่า 3807157722 และลองจิจูด -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_en": "What is the total longitude of Nogosek and a GEO ID larger than 3809357060?",
    "question_th": "ลองจิจูดรวมของ Nogosek และ GEO ID ที่ใหญ่กว่า 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_en": "What Band number has a Power (W) of 400 or less?",
    "question_th": "แบนด์เบอร์ใดมีกำลัง (W) 400 หรือน้อยกว่า?",
    "context": "CREATE TABLE table_name_46 (band INTEGER, power__w_ INTEGER)"
  },
  {
    "answer": "SELECT MAX(band) FROM table_name_33 WHERE power__w_ > 400",
    "question_en": "What Band's Power (W) is 400 or less?",
    "question_th": "พลังของวงใด (W) คือ 400 หรือน้อยกว่า?",
    "context": "CREATE TABLE table_name_33 (band INTEGER, power__w_ INTEGER)"
  },
  {
    "answer": "SELECT wavelength FROM table_name_53 WHERE frequency__mhz_ = \"14.050–14.150\"",
    "question_en": "What is the Wavelength of Frequency (MHz) 14.050–14.150?",
    "question_th": "ความยาวคลื่นความถี่ (MHz) 14.050–14.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_en": "Who are the recipients in 1994?",
    "question_th": "ใครคือผู้รับในปี 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_en": "Who are the recipients that won for David Duchovny role/episode?",
    "question_th": "ใครคือผู้รับรางวัลบทบาท/ตอนของ David Duchovny",
    "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_en": "What's the category in 1998 with the role/episode of David Duchovny?",
    "question_th": "หมวดหมู่ใดในปี 1998 ที่มีบทบาท/ตอนของ 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_en": "Which network has more than 31.4 channels with a 4:3 aspect?",
    "question_th": "เครือข่ายใดที่มีช่องสัญญาณ 4:3 มากกว่า 31.4 ช่อง?",
    "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_en": "Which video is on channel 31.2 with a 4:3 aspect?",
    "question_th": "คลิปไหนอยู่ช่อง 31.2 แบบ 4:3 ครับ?",
    "context": "CREATE TABLE table_name_97 (video VARCHAR, aspect VARCHAR, channel VARCHAR)"
  },
  {
    "answer": "SELECT video FROM table_name_77 WHERE aspect = \"16:9\"",
    "question_en": "Which video has a 16:9 aspect?",
    "question_th": "วิดีโอใดมีอัตราส่วน 16:9",
    "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_en": "What's the constituency number of the Seoni district and has none reserved?",
    "question_th": "เขตโสนีมีเขตเลือกตั้งอะไรและไม่มีสำรองไว้เลย?",
    "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_en": "What is the district of Paraswada with none reserved?",
    "question_th": "อำเภอปารัสวาดาที่ไม่มีเขตสงวนคืออะไร?",
    "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_en": "What's the reserved number for constituency number 108?",
    "question_th": "เลขจองเขตเลือกตั้ง 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_en": "What's the name of Constituency number 108?",
    "question_th": "เขตเลือกตั้งหมายเลข 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_en": "What is the lowest total medals when there were 0 gold medals, 0 silver medals, and more than 1 bronze medal?",
    "question_th": "เหรียญรวมต่ำสุดเมื่อมี 0 เหรียญทอง 0 เหรียญเงิน และมากกว่า 1 เหรียญทองแดง คือเท่าใด",
    "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_en": "What is the sum of the bronze medals when there were less than 8 total medals, 0 silver medals and a rank of 9?",
    "question_th": "ผลรวมของเหรียญทองแดงเมื่อมีทั้งหมดน้อยกว่า 8 เหรียญ, 0 เหรียญเงิน และอันดับ 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_en": "What nation had a rank higher than 4, a total of 2 medals and more than 0 silver medals?",
    "question_th": "ประเทศใดมีอันดับสูงกว่า 4 รวม 2 เหรียญ และเหรียญเงินมากกว่า 0 เหรียญ?",
    "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_en": "What was the average rank for the team that had more than 5 medals and more than 6 gold medals?",
    "question_th": "อันดับเฉลี่ยของทีมที่ได้มากกว่า 5 เหรียญและมากกว่า 6 เหรียญทองคือเท่าไร?",
    "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_en": "Which artist has a draw higher than 4 and fewer than 5 points?",
    "question_th": "ศิลปินคนไหนมีแต้มมากกว่า 4 และน้อยกว่า 5 แต้ม?",
    "context": "CREATE TABLE table_name_7 (artist VARCHAR, draw VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT artist FROM table_name_42 WHERE points = 13",
    "question_en": "Which artist has 13 points?",
    "question_th": "ศิลปินคนไหนมี 13 คะแนน?",
    "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_en": "What is the greatest B score when the A score was less than 6.5?",
    "question_th": "คะแนน B สูงสุดเมื่อคะแนน A น้อยกว่า 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_en": "What is the Time of the Great Britain players with Notes of SA/B?",
    "question_th": "ผู้เล่น Time of the Great Britain ที่มี 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_en": "What is the Rowers of the race with a Time of 7:41.97 and Notes of FC?",
    "question_th": "ฝีพายของการแข่งขันคืออะไรด้วยเวลา 7:41.97 และหมายเหตุของ 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_en": "What is the Week of the game against the Minnesota Vikings?",
    "question_th": "สัปดาห์ของเกมกับ 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_en": "What is the Week of the game against Green Bay Packers?",
    "question_th": "สัปดาห์ของเกมกับ 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_en": "What is the Attendance of the game with a Result of L 20-14?",
    "question_th": "ผู้เข้าร่วมการแข่งขันด้วยผล 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_en": "What is the Week number on October 5, 2003?",
    "question_th": "เลขที่สัปดาห์ของวันที่ 5 ตุลาคม 2546 คืออะไร?",
    "context": "CREATE TABLE table_name_93 (week INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(week) FROM table_name_78 WHERE attendance = \"62,123\"",
    "question_en": "What is the Week number with an Attendance of 62,123?",
    "question_th": "หมายเลขสัปดาห์ที่มีผู้เข้าร่วม 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_en": "How many households are in Ottawa?",
    "question_th": "ออตตาวามีกี่ครัวเรือน?",
    "context": "CREATE TABLE table_name_58 (number_of_households INTEGER, county VARCHAR)"
  },
  {
    "answer": "SELECT SUM(enrollment) FROM table_name_28 WHERE location = \"culver\"",
    "question_en": "What is the sum of enrollments for schools located in Culver?",
    "question_th": "จำนวนการลงทะเบียนสำหรับโรงเรียนที่ตั้งอยู่ใน Culver เป็นจำนวนเท่าใด",
    "context": "CREATE TABLE table_name_28 (enrollment INTEGER, location VARCHAR)"
  },
  {
    "answer": "SELECT year_joined FROM table_name_46 WHERE enrollment = 413",
    "question_en": "Which year did the school with enrollment of 413 join?",
    "question_th": "โรงเรียนที่มีการลงทะเบียน 413 เข้าร่วมในปีใด",
    "context": "CREATE TABLE table_name_46 (year_joined VARCHAR, enrollment VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_name_83 WHERE category = \"best play\"",
    "question_en": "How many years was Reasons to be Pretty nominated for best play?",
    "question_th": "Reasons to be Pretty ได้รับการเสนอชื่อเข้าชิงบทละครยอดเยี่ยมกี่ปี?",
    "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_en": "What is the first year that Reasons to be Pretty had a nominee for best performance by a leading actor in a play?",
    "question_th": "ปีแรกที่ Reasons to be Pretty ได้รับการเสนอชื่อเข้าชิงรางวัลนักแสดงนำในละครยอดเยี่ยมคือปีใด",
    "context": "CREATE TABLE table_name_56 (year INTEGER, category VARCHAR)"
  },
  {
    "answer": "SELECT match_report FROM table_name_23 WHERE date = \"28 february 2009\"",
    "question_en": "What is the match report from the game played on 28 february 2009?",
    "question_th": "รายงานการแข่งขันจากเกมที่เล่นเมื่อวันที่ 28 กุมภาพันธ์ 2552 เป็นอย่างไรบ้าง?",
    "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_en": "What is the match report from the game played on 25 april 2009?",
    "question_th": "รายงานการแข่งขันจากเกมที่เล่นเมื่อวันที่ 25 เมษายน 2552 เป็นอย่างไรบ้าง?",
    "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_en": "Where was the game played on 3 january 2009 against east fife?",
    "question_th": "เกมนี้เล่นที่ไหนในวันที่ 3 มกราคม พ.ศ. 2552 พบกับ อีสต์ ไฟฟ์?",
    "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_en": "What is the match report for the game that was played on 23 august 2008 in stark's park during the second division competition?",
    "question_th": "รายงานการแข่งขันของเกมที่เล่นเมื่อวันที่ 23 สิงหาคม 2551 ที่สตาร์คพาร์คระหว่างการแข่งขันดิวิชั่น 2 คืออะไร?",
    "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_en": "What is the match report for the game played at forthbank stadium against stirling albion?",
    "question_th": "รายงานการแข่งขันของเกมที่เล่นที่สนามฟอร์ธแบงก์ พบกับ สเตอร์ลิง อัลเบียน เป็นอย่างไรบ้าง?",
    "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_en": "What is average quantity, when DRG number is 99 011?",
    "question_th": "ปริมาณเฉลี่ยคือเท่าใด เมื่อหมายเลข DRG คือ 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_en": "Which railway number has 3 quantity?",
    "question_th": "รถไฟหมายเลขใดมี 3 ปริมาณ?",
    "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_en": "Which DRG number has xxx railway number?",
    "question_th": "หมายเลข DRG ใดที่มีหมายเลขรถไฟ xxx",
    "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_en": "Which quantity has Axle arrangement (UIC)bauart of c n2t, and DRG number 99 093?",
    "question_th": "ปริมาณใดที่มีการจัดเรียงเพลา (UIC)bauart ของ c n2t และ DRG เบอร์ 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_en": "What song came out on March 8, 2008?",
    "question_th": "เพลงอะไรออกมาเมื่อวันที่ 8 มีนาคม 2551?",
    "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_en": "What was the topic of the show on March 15, 2008?",
    "question_th": "หัวข้อของการแสดงในวันที่ 15 มีนาคม 2551 คืออะไร?",
    "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_en": "When against is more than 1244 with less than 8 losses, what is the average of wins?",
    "question_th": "เมื่อต่อมากกว่า 1244 โดยแพ้น้อยกว่า 8 ครั้ง ค่าเฉลี่ยของการชนะคือเท่าไร?",
    "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_en": "What is the name of the mill located on Anawan Street with a reference number larger than 8?",
    "question_th": "โรงสีที่ตั้งอยู่บนถนนอนาวันที่มีหมายเลขอ้างอิงมากกว่า 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_en": "What is the name of the mill constructed of red brick in 1910 with a reference number lower than 55?",
    "question_th": "โรงสีที่สร้างด้วยอิฐแดงในปี พ.ศ. 2453 มีหมายเลขอ้างอิงต่ำกว่า 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_en": "What is the location of the Durfee Mill No. 1, built before 1872 ?",
    "question_th": "ที่ตั้งของโรงสีเดอร์ฟีหมายเลข 1 สร้างขึ้นก่อนปี พ.ศ. 2415 อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_7 (location VARCHAR, built VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_99 WHERE ref_number = 44",
    "question_en": "What is the location of the mill with a reference number of 44?",
    "question_th": "ที่ตั้งของโรงสีหมายเลขอ้างอิง 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_en": "Which Construction is named of fu-hsing?",
    "question_th": "สิ่งก่อสร้างใดมีชื่อว่า 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_en": "which Construction is named heng-hai?",
    "question_th": "สิ่งก่อสร้างใดชื่อเฮงไห่?",
    "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_en": "Who  has a Construction of 1873, foochow navy yard?",
    "question_th": "ใครมีการก่อสร้างปี 1873 ลานกองทัพเรือ foochow?",
    "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_en": "Which Name (pinyin) is named fu-ching?",
    "question_th": "ชื่อไหน (พินอิน) ชื่อ ฟู่จิง?",
    "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_en": "Who has a Construction of 1870, foochow navy yard, and a Name (Wade Giles) of fu-hsing?",
    "question_th": "ใครมีการก่อสร้างในปี 1870 ลานกองทัพเรือ foochow และชื่อ (Wade Giles) ของ 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üsse aus ost-berlin\"",
    "question_en": "Which Label has a Release of liebesgrüsse aus ost-berlin?",
    "question_th": "ป้ายใดมีการเปิดตัว liebesgrüsse 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_en": "What is the rank of the person with more than 5 games played?",
    "question_th": "คนที่เล่นเกิน 5 เกมมีอันดับเท่าไหร่?",
    "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_en": "How many golds have a bronze greater than 1, a silver greater than 1, with total as the rank?",
    "question_th": "มีทองกี่เหรียญที่มีเหรียญทองแดงมากกว่า 1 เหรียญเงินมากกว่า 1 รวมเป็นอันดับ?",
    "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_en": "How many golds have a bronze greater than 1, total as the nation, and a silver less than 18?",
    "question_th": "มีกี่เหรียญทองที่มีเหรียญทองแดงมากกว่า 1 รวมเป็นประเทศและมีเงินน้อยกว่า 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_en": "How many bronzes have west germany as the nation?",
    "question_th": "เยอรมนีตะวันตกเป็นประเทศกี่เหรียญทองแดง?",
    "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_en": "How many golds have denmark as the nation, with a total less than 1?",
    "question_th": "เดนมาร์กมีกี่เหรียญทองรวมน้อยกว่า 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_en": "How many totals have 1 for the gold, 12 for the rank, and a sliver greater than 0?",
    "question_th": "มีทั้งหมดกี่ตัวที่มี 1 สำหรับทองคำ 12 สำหรับอันดับ และเศษที่มากกว่า 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_en": "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?",
    "question_th": "เงินต่ำสุดที่มี 1 สำหรับทองแดง คือ 1 รวม 17 เป็นอันดับ โดยมีทองน้อยกว่า 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_en": "What is the First Publisher prior to 1999?",
    "question_th": "ผู้จัดพิมพ์รายแรกก่อนปี 1999 คืออะไร?",
    "context": "CREATE TABLE table_name_31 (first_publisher VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT isbn FROM table_name_48 WHERE year = 1999",
    "question_en": "What is the ISBN in 1999?",
    "question_th": "ISBN ในปี 1999 คืออะไร?",
    "context": "CREATE TABLE table_name_48 (isbn VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT isbn FROM table_name_54 WHERE japanese_title = \"霧の訪問者 (kiri no hōmonsha)\"",
    "question_en": "What is the ISBN of Japanese Title of 霧の訪問者 (kiri no hōmonsha)?",
    "question_th": "ISBN ของหัวข้อภาษาญี่ปุ่น 霧の訪問者 (kiri no hōmonsha) คืออะไร",
    "context": "CREATE TABLE table_name_54 (isbn VARCHAR, japanese_title VARCHAR)"
  },
  {
    "answer": "SELECT first_publisher FROM table_name_8 WHERE year = 2007",
    "question_en": "What is the First Publisher in 2007?",
    "question_th": "ผู้จัดพิมพ์รายแรกในปี 2550 คืออะไร?",
    "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_en": "What is the Year of Kodansha Novels' Tokyo Nightmare?",
    "question_th": "ปีฝันร้ายแห่งโตเกียวของนวนิยาย Kodansha คืออะไร?",
    "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_en": "What Year has an ISBN OF ISBN 4-06-182042-7?",
    "question_th": "ISBN ของ 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_en": "What is the bronze number for the nation with less than 0 gold?",
    "question_th": "เลขทองแดงของประเทศที่มีน้อยกว่า 0 ทอง คือเลขอะไร?",
    "context": "CREATE TABLE table_name_53 (bronze INTEGER, gold INTEGER)"
  },
  {
    "answer": "SELECT january FROM table_name_26 WHERE region = \"eastman\"",
    "question_en": "What is the January climate figure for Eastman?",
    "question_th": "ตัวเลขสภาพภูมิอากาศเดือนมกราคมของอีสต์แมนเป็นเท่าใด",
    "context": "CREATE TABLE table_name_26 (january VARCHAR, region VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_49 WHERE july = \"23/9°c (73/48°f)\"",
    "question_en": "In what city is the July temperature 23/9°c (73/48°f)?",
    "question_th": "อุณหภูมิเดือนกรกฎาคมอยู่ที่เมืองใด 23/9°c (73/48°f)",
    "context": "CREATE TABLE table_name_49 (city VARCHAR, july VARCHAR)"
  },
  {
    "answer": "SELECT july FROM table_name_23 WHERE annual_precipitation = \"514mm (20.2in)\"",
    "question_en": "What is the July temperature where the annual precipitation is 514mm (20.2in)?",
    "question_th": "อุณหภูมิเดือนกรกฎาคมที่ปริมาณน้ำฝนรายปีอยู่ที่ 514 มม. (20.2 นิ้ว) คือเท่าใด",
    "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 = \"−12/−23°c (10-9°f)\"",
    "question_en": "What is the July temperature where plant hardiness zone is 2B and January figure is −12/−23°c (10-9°f)?",
    "question_th": "อุณหภูมิเดือนกรกฎาคมที่โซนความแข็งแกร่งของพืชอยู่ที่ 2B และตัวเลขเดือนมกราคมอยู่ที่ −12/−23°c (10-9°f)",
    "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_en": "What is the plant hardiness zone in the Northern region where the annual precipitation is 443mm (17.4in)?",
    "question_th": "เขตความเข้มแข็งของพืชในภาคเหนือที่มีปริมาณน้ำฝนต่อปีอยู่ที่ 443 มม. (17.4 นิ้ว) คือเขตใด",
    "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 = \"−12/−23°c (10/-9°f)\"",
    "question_en": "In what city is the plant hardiness zone 2B and January temp is −12/−23°c (10/-9°f)?",
    "question_th": "เมืองใดที่เขตปลูกพืชแข็งแรงโซน 2B และอุณหภูมิเดือนมกราคมอยู่ที่ -12/−23°c (10/-9°f)",
    "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_en": "What is the Total Apps listing for Paul Wilson?",
    "question_th": "รายการ Total Apps ของ 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_en": "Who was the winner at Milan Circuit Race?",
    "question_th": "ใครคือผู้ชนะที่ 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_en": "Who was the winner at Rest Day course?",
    "question_th": "ใครคือผู้ชนะในหลักสูตร Rest Day?",
    "context": "CREATE TABLE table_name_67 (winner VARCHAR, course VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_39 WHERE course = \"sestri levante to riomaggiore\"",
    "question_en": "What's the type on Sestri Levante to Riomaggiore?",
    "question_th": "Sestri Levante ถึง Riomaggiore ประเภทไหน?",
    "context": "CREATE TABLE table_name_39 (type VARCHAR, course VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_49 WHERE events = 12",
    "question_en": "Which player competed in 12 events?",
    "question_th": "ผู้เล่นคนไหนลงแข่งขัน 12 รายการ?",
    "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_en": "what is the highest finishes when the points is less than 337, the stage wins is 2 and the wins is more than 0?",
    "question_th": "จบสูงสุดเมื่อคะแนนน้อยกว่า 337 ด่านชนะ 2 และชนะมากกว่า 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_en": "what is the average starts when the chassis is focus rs wrc 08 and finishes is more than 27?",
    "question_th": "ค่าเฉลี่ยเริ่มต้นเมื่อแชสซีคือ focus rs wrc 08 และเสร็จสิ้นมากกว่า 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_en": "what is the finishes when points is more than 337 and starts is more than 26?",
    "question_th": "การจบสกอร์เมื่อคะแนนมากกว่า 337 และเริ่มมากกว่า 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_en": "what is the average starts when the podiums is more than 0, stage wins is more than 39 and points is more than 456?",
    "question_th": "ค่าเฉลี่ยเริ่มต้นเป็นเท่าใดเมื่อโพเดียมมากกว่า 0, สเตจชนะมากกว่า 39 และคะแนนมากกว่า 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_en": "Which School has a Mascot of squires?",
    "question_th": "โรงเรียนไหนมีมาสค็อตของอัศวิน?",
    "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_en": "Which School has a #/ County of 85 wabash, and an IHSAA Football Class of A, and a Mascot of norsemen?",
    "question_th": "โรงเรียนใดมี #/ เคาน์ตี้ 85 wabash และ IHSAA Football Class ระดับ A และตัวนำโชคของทหารนอร์ส",
    "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_en": "Which IHSAA Football Class has a School of whitko?",
    "question_th": "IHSAA Football Class ใดที่มีโรงเรียนของ 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_en": "Which IHSAA Football Class has a Location of wabash, and a School of wabash?",
    "question_th": "IHSAA Football Class ใดที่มีที่ตั้งของ Wabash และ 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_en": "With a Total of more than 149, what is Davis Love III's To par?",
    "question_th": "ด้วยคะแนนรวมมากกว่า 149 คะแนน To par ของ Davis Love III คืออะไร?",
    "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_en": "What is the Total of the Player with a To par of 6 and Year won after 1993?",
    "question_th": "ผลรวมของผู้เล่นที่มีพาร์ถึง 6 และปีที่ชนะหลังปี 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_en": "What is the Year won of Davis Love III with a Total of less than 149?",
    "question_th": "ปีที่ชนะของ Davis Love III ด้วยผลรวมน้อยกว่า 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_en": "What is the genre of the Mass Effect game?",
    "question_th": "ประเภทของเกม Mass Effect คืออะไร?",
    "context": "CREATE TABLE table_name_14 (genre VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT genre FROM table_name_72 WHERE year = \"2006\"",
    "question_en": "What is the genre of the game from 2006?",
    "question_th": "เกมประเภทใดตั้งแต่ปี 2549?",
    "context": "CREATE TABLE table_name_72 (genre VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT genre FROM table_name_85 WHERE developer_s_ = \"nintendo ead\"",
    "question_en": "What is the genre of the game developed by Nintendo EAD?",
    "question_th": "ประเภทของเกมที่พัฒนาโดย 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_en": "What is the platform of the game built in 2006?",
    "question_th": "แพลตฟอร์มของเกมที่สร้างขึ้นในปี 2549 คืออะไร?",
    "context": "CREATE TABLE table_name_53 (platform_s_ VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_name_53 WHERE developer_s_ = \"ubisoft montreal\"",
    "question_en": "What game was developed by Ubisoft Montreal?",
    "question_th": "เกมอะไรที่พัฒนาโดย 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_en": "What is the genre for Portal 2?",
    "question_th": "ประเภทของพอร์ทัล 2 คืออะไร?",
    "context": "CREATE TABLE table_name_32 (genre VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT platform_s_ FROM table_name_88 WHERE game = \"portal 2\"",
    "question_en": "Which platforms can you play Portal 2 on?",
    "question_th": "คุณสามารถเล่น Portal 2 บนแพลตฟอร์มใดได้บ้าง",
    "context": "CREATE TABLE table_name_88 (platform_s_ VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT meet FROM table_name_4 WHERE event = \"1500m freestyle\"",
    "question_en": "What event had the 1500m freestyle?",
    "question_th": "ฟรีสไตล์ 1,500 เมตร มีรายการอะไรบ้าง?",
    "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_en": "Who is from italy has 0 giro wins, 0 young rider and less than 3 maglia rosa?",
    "question_th": "ใครมาจากอิตาลีที่ชนะ 0 giro, นักบิดรุ่นเยาว์ 0 คน และ maglia rosa น้อยกว่า 3 ครั้ง?",
    "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_en": "How many bronze medals for the United Kingdom when the silver was less than 0?",
    "question_th": "สหราชอาณาจักรได้เหรียญทองแดงกี่เหรียญเมื่อเงินน้อยกว่า 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_en": "How many bronze medals for West Germany having a total more than 2?",
    "question_th": "เยอรมนีตะวันตกได้เหรียญทองแดงทั้งหมดกี่เหรียญมากกว่า 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_en": "What is the amount of silver for rank 11 having less than 0 gold?",
    "question_th": "จำนวนเงินสำหรับอันดับ 11 ที่มีทองน้อยกว่า 0 คือเท่าใด",
    "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_en": "What rank is Bulgaria with less than 3 silver and more than 1 bronze?",
    "question_th": "บัลแกเรียมีอันดับน้อยกว่า 3 เหรียญเงินและมากกว่า 1 เหรียญทองแดง?",
    "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_en": "What is the mountains classification when stage is 17?",
    "question_th": "การจำแนกประเภทภูเขาเมื่อถึงระยะ 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é rujano\"",
    "question_en": "Who was the winner when points classification is Robbie Mcewen, and a Mountains classification is José Rujano?",
    "question_th": "ใครคือผู้ชนะเมื่อการจัดประเภทคะแนนคือ Robbie Mcewen และประเภท Mountains คือ José 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_en": "What is the Trofeo Fast Team when stage is 19?",
    "question_th": "Trofeo Fast Team คืออะไรเมื่ออายุ 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ß\" AND mountains_classification = \"koldo gil\" AND trofeo_super_team = \"liquigas-bianchi\" AND stage = \"9\"",
    "question_en": "What is the points classification when the Intergiro classification is Sven Krauß, and the mountains classification is koldo gil, Trofeo Super Team is Liquigas-Bianchi, and stage is 9?",
    "question_th": "การจัดประเภทคะแนนจะเป็นอย่างไร เมื่อประเภท Intergiro คือ Sven Krauß และประเภทภูเขาคือ koldo gil, Trofeo Super Team คือ Liquigas-Bianchi และระยะที่ 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é rujano\"",
    "question_en": "What is the Intergiro classification when the points classification is Paolo Bettini, Trofeo Super Team is Davitamon-Lotto, and the Mountains classification is José Rujano?",
    "question_th": "การจัดประเภท Intergiro คืออะไร เมื่อการจัดประเภทคะแนนคือ Paolo Bettini, Trofeo Super Team คือ Davitamon-Lotto และการจัดประเภท Mountains คือ José 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é rujano\" AND general_classification = \"danilo di luca\"",
    "question_en": "What is the Stage when the points classification is Danilo Di Luca, Mountains classification is José Rujano, and general classification is Danilo Di Luca?",
    "question_th": "ขั้นตอนคืออะไรเมื่อการแบ่งประเภทคะแนนคือ Danilo Di Luca, ประเภทภูเขาคือ José Rujano และการจัดประเภททั่วไปคือ 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_en": "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?",
    "question_th": "GEO ID เฉลี่ยที่มีละติจูดน้อยกว่า 46.57958 ละติจูด -102.109898 และพื้นที่มากกว่า 35.99 ตารางไมล์คือเท่าใด",
    "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_en": "What GEO ID has a longitude of -102.693028?",
    "question_th": "GEO ID ใดมีลองจิจูด -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_en": "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?",
    "question_th": "ละติจูดสูงสุดเมื่อมีน้ำมากกว่า 0.518 ตารางไมล์ ลองจิจูดน้อยกว่า -99.830606 และมีประชากร 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_en": "What is the average lane for Australia?",
    "question_th": "เลนเฉลี่ยของออสเตรเลียคือเท่าไร?",
    "context": "CREATE TABLE table_name_30 (lane INTEGER, nationality VARCHAR)"
  },
  {
    "answer": "SELECT MAX(rank) FROM table_name_54 WHERE name = \"josefin lillhage\"",
    "question_en": "What is the highest rank for Josefin Lillhage?",
    "question_th": "โฆเซฟิน ลิลฮาจอยู่อันดับสูงสุดเท่าไหร่?",
    "context": "CREATE TABLE table_name_54 (rank INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_97 WHERE final = \"quarter (1)\"",
    "question_en": "What was the attendance for the final quarter (1)?",
    "question_th": "การเข้าร่วมในไตรมาสสุดท้าย (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_en": "What stadium had the score 1 - 1 dodd 38'?",
    "question_th": "สนามไหนมีสกอร์ 1 - 1 ดอดด์ 38'?",
    "context": "CREATE TABLE table_name_21 (stadium VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT method FROM table_name_78 WHERE event = \"pride 17\"",
    "question_en": "What method was used in the Pride 17 event?",
    "question_th": "งาน Pride 17 ใช้วิธีการใด?",
    "context": "CREATE TABLE table_name_78 (method VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_57 WHERE highest_floor > 50",
    "question_en": "What is the Rank of the building that has a Highest floor larger than 50?",
    "question_th": "อันดับของอาคารที่มีชั้นสูงสุดมากกว่า 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_en": "what is the most free when the total is 81.167 and the rank is higher than 23?",
    "question_th": "อะไรฟรีที่สุดเมื่อผลรวมคือ 81.167 และอันดับสูงกว่า 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_en": "How many tracks have an unformatted capacity per side of 2000kb?",
    "question_th": "มีกี่แทร็กที่มีความจุที่ไม่ได้ฟอร์แมตต่อด้านที่ 2,000kb",
    "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_en": "What is the unformatted capacity per side if the size is 8in?",
    "question_th": "ความจุที่ไม่ได้ฟอร์แมตต่อด้านคือเท่าใด หากขนาด 8 นิ้ว",
    "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_en": "How many tracks have a single density?",
    "question_th": "ความหนาแน่นเดียวมีกี่แทร็ก?",
    "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_en": "What's listed for Elevatated that has Cardinalatial title of Priest of SS. XII Apostoli?",
    "question_th": "สิ่งที่ระบุไว้สำหรับ Elevatated ที่มีตำแหน่งพระคาร์ดินัลเป็น Priest of SS อัครสาวกสิบสอง?",
    "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_en": "What Elector has the Place of birth of San Severino?",
    "question_th": "ผู้มีสิทธิเลือกตั้งคนใดมีสถานที่เกิดของ 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_en": "What's the Cardinalatial Title has the Elevated of December 18, 1182, the Place of birth of Lucca, and the Electo rof Pandolfo?",
    "question_th": "ตำแหน่งพระคาร์ดินัลมีการยกระดับขึ้นในวันที่ 18 ธันวาคม ค.ศ. 1182 สถานที่ประสูติของลุกกา และ 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_en": "What's listed for the Elevated with a Cardinalatial title of Priest of S. Eusebio and Archbishop of Benevento?",
    "question_th": "มีอะไรอยู่ในรายการสำหรับผู้ยกระดับด้วยตำแหน่งพระคาร์ดินัลของพระสงฆ์แห่งเอส. ยูเซบิโอและอัครสังฆราชแห่งเบเนเวนโต?",
    "context": "CREATE TABLE table_name_25 (elevated VARCHAR, cardinalatial_title VARCHAR)"
  },
  {
    "answer": "SELECT elector FROM table_name_4 WHERE place_of_birth = \"bavaria\"",
    "question_en": "What Elector has the Place of Birth listed as Bavaria?",
    "question_th": "ผู้มีสิทธิเลือกตั้งคนใดที่มีสถานที่เกิดอยู่ในรายการเป็นบาวาเรีย",
    "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_en": "What are the total apps that have 41 as the League apps, with total goals greater than 1?",
    "question_th": "แอพทั้งหมดที่มี 41 เป็นแอพ League โดยมีเป้าหมายรวมมากกว่า 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_en": "What are the average league goals that have 2 (1) as the total apps?",
    "question_th": "เป้าหมายลีกเฉลี่ยที่มี 2 (1) เป็นแอปทั้งหมดคือเท่าใด",
    "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_en": "What is the highest league goals that have barry endean as the name, wirh FA cup apps greater than 0?",
    "question_th": "ประตูสูงสุดในลีกที่มีชื่อ แบร์รี่ เอ็นเดียน โดยมีแอป FA Cup มากกว่า 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_en": "Which school left in 1968 and has the team name of Panthers?",
    "question_th": "โรงเรียนไหนออกจากโรงเรียนในปี พ.ศ. 2511 และมีชื่อทีมว่า แพนเทอร์ส?",
    "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_en": "What year did a team from North Dearborn leave?",
    "question_th": "ทีมจากนอร์ธ เดียร์บอร์นออกเดินทางในปีใด",
    "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_en": "Which city has a school of North Vernon and a county of 40 Jennings?",
    "question_th": "เมืองใดมีโรงเรียนใน North Vernon และเขต 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_en": "What year did a school from Jennings County join?",
    "question_th": "โรงเรียนจาก Jennings County เข้าร่วมในปีใด",
    "context": "CREATE TABLE table_name_5 (year_joined VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_24 WHERE team_name = \"red devils\"",
    "question_en": "Which school are the Red Devils from?",
    "question_th": "ปีศาจแดงมาจากโรงเรียนไหน?",
    "context": "CREATE TABLE table_name_24 (school VARCHAR, team_name VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_57 WHERE city = \"brookville\"",
    "question_en": "Which school comes from Brookville?",
    "question_th": "โรงเรียนไหนมาจากบรู๊ควิลล์?",
    "context": "CREATE TABLE table_name_57 (school VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT MIN(rank) FROM table_name_70 WHERE lane = 3",
    "question_en": "What's the lowest rank of Lane 3?",
    "question_th": "อันดับต่ำสุดของเลน 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_en": "What's the highest lane of rank 4 with a time less than 24.72?",
    "question_th": "เลนที่สูงที่สุดของอันดับ 4 ที่มีเวลาน้อยกว่า 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_en": "What's the time of Britta Steffen in a lane less than 4?",
    "question_th": "Britta Steffen ในเลนน้อยกว่า 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_en": "What's the lowest rank of the United States with a time less than 24.63?",
    "question_th": "อันดับต่ำสุดของสหรัฐอเมริกาด้วยเวลาน้อยกว่า 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_en": "What's the duration of the Archers with Norman Painting as an actor?",
    "question_th": "Archers กับ Norman Painting จะอยู่ในวงการนักแสดงได้นานแค่ไหน?",
    "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_en": "What's the duration of the Archers with Pauline Seville acting?",
    "question_th": "The Archers กับ Pauline Seville แสดงอยู่นานแค่ไหน?",
    "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_en": "Who's the actor for the Archers having a character of Martha Woodford?",
    "question_th": "ใครคือนักแสดงจากเรื่อง Archers ที่มีตัวละครเป็น 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_en": "Who's the character when Margot Boyd was acting?",
    "question_th": "ใครคือตัวละครตอนที่ Margot Boyd แสดง?",
    "context": "CREATE TABLE table_name_34 (character VARCHAR, actor VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_name_56 WHERE time = \"6:34.51\"",
    "question_en": "What were the notes for the time of 6:34.51?",
    "question_th": "บันทึกของเวลา 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_en": "What is the rank for the rowers with the time of 6:24.35?",
    "question_th": "นักพายเวลา 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_en": "Which rowers represented portugal and had notes of r?",
    "question_th": "นักพายเรือคนไหนเป็นตัวแทนของโปรตุเกสและมีโน้ตตัว r?",
    "context": "CREATE TABLE table_name_14 (rowers VARCHAR, notes VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT rowers FROM table_name_4 WHERE country = \"portugal\"",
    "question_en": "Which rowers represented the country of portugal?",
    "question_th": "นักพายเรือคนไหนเป็นตัวแทนของประเทศโปรตุเกส?",
    "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_en": "what is the average races when points is 9 and poles is less than 0?",
    "question_th": "การแข่งขันโดยเฉลี่ยคือเท่าไรเมื่อคะแนนคือ 9 และโพลน้อยกว่า 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_en": "what is the series when wins is less than 3, points is 9 and podiums is 1?",
    "question_th": "ซีรีส์จะเป็นอย่างไรเมื่อชนะน้อยกว่า 3 แต้มคือ 9 และโพเดียมคือ 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_en": "how many times is races more than 14, position is 9th and wins less than 0?",
    "question_th": "กี่ครั้งแล้วที่การแข่งขันมากกว่า 14 ครั้ง อันดับที่ 9 และชนะน้อยกว่า 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_en": "Who was the runner-up during the Mac Ice Classic?",
    "question_th": "ใครคือรองชนะเลิศระหว่างการแข่งขัน 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_en": "What's the date when Stu Harris was the Runner-up?",
    "question_th": "วันที่ Stu Harris เป็นรองชนะเลิศคือวันที่เท่าไหร่?",
    "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_en": "What's the location of the Ramada Perth Masters event?",
    "question_th": "งาน Ramada Perth Masters จัดขึ้นที่ใด",
    "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_en": "What's the location of the National event with Kevin Martin winning?",
    "question_th": "สถานที่จัดงานระดับชาติที่เควิน มาร์ตินเป็นผู้ชนะอยู่ที่ใด",
    "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_en": "What's the event that happened in Gander, Newfoundland and Labrador with Randy Ferbey runner-up?",
    "question_th": "เหตุการณ์ที่เกิดขึ้นที่เมืองกันเดอร์ รัฐนิวฟันด์แลนด์และลาบราดอร์ กับรองแชมป์ แรนดี เฟอร์บี คืออะไร",
    "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_en": "What's the location of the National event?",
    "question_th": "งานระดับชาติจัดขึ้นที่ใด?",
    "context": "CREATE TABLE table_name_97 (location VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT arena FROM table_name_13 WHERE date = \"october 10\"",
    "question_en": "Which Arena has a Date of october 10?",
    "question_th": "อารีน่าใดมีวันที่ 10 ตุลาคม",
    "context": "CREATE TABLE table_name_13 (arena VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(attendance) FROM table_name_13 WHERE score = \"4–3\" AND points < 5",
    "question_en": "Which Attendance has a Score of 4–3, and Points smaller than 5?",
    "question_th": "ผู้เข้าร่วมคนใดมีคะแนน 4–3 และคะแนนน้อยกว่า 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_en": "Which Attendance has an Arena of arrowhead pond of anaheim, and Points smaller than 5?",
    "question_th": "ผู้เข้าร่วมคนใดมีสนามประลองสระน้ำหัวลูกศรแห่งอนาไฮม์ และคะแนนน้อยกว่า 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_en": "How much Attendance has an Arena of arrowhead pond of anaheim, and Points of 5?",
    "question_th": "Arena of arrowhead Pond of anaheim มีผู้เข้าร่วมเท่าไหร่ และคะแนน 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_en": "How much 1969 has a 1967 smaller than 0.73, and a 1964 larger than 0.07?",
    "question_th": "1969 มีจำนวนเท่าใด 1967 เล็กกว่า 0.73 และ 1964 ใหญ่กว่า 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_en": "Which 1964 has a Country of united states, and a 1969 smaller than 7.3?",
    "question_th": "ปี 1964 ใดมีประเทศเป็นสหรัฐอเมริกา และปี 1969 เล็กกว่า 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_en": "Which 1965 has a 1962 of 0.35000000000000003, and a 1967 smaller than 0.53?",
    "question_th": "ปี 1965 ใดมี 1962 เป็น 0.35000000000000003 และ 1967 เล็กกว่า 0.53",
    "context": "CREATE TABLE table_name_38 (Id VARCHAR)"
  },
  {
    "answer": "SELECT cross_code_debut FROM table_name_68 WHERE player = \"bev risman\"",
    "question_en": "What is Bev Risman's Cross Code Debut?",
    "question_th": "การเปิดตัว Cross Code ของ Bev Risman คืออะไร",
    "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_en": "What is the Player with a Cross Code Debut of RL Test GB v France?",
    "question_th": "ผู้เล่นที่มีการเปิดตัว Cross Code ของ 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_en": "In what Year is Keith Smith's Cross Code Debut RL Test v Wales?",
    "question_th": "Cross Code Debut RL Test ของ Keith Smith กับ 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_en": "What is the Date of the Int'l Debut of 1967?",
    "question_th": "วันที่เปิดตัวครั้งแรกในปี 1967 คืออะไร?",
    "context": "CREATE TABLE table_name_66 (date VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_41 WHERE year = \"1974\"",
    "question_en": "What is the Player in the Int'l Debut of 1974?",
    "question_th": "ผู้เล่นในการเปิดตัวครั้งแรกในปี 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_en": "What lane has a time of 24.83 and a heat less than 11?",
    "question_th": "เลนใดมีเวลา 24.83 และความร้อนน้อยกว่า 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_en": "What is the total number of heat for Chinyere Pigot?",
    "question_th": "จำนวนความร้อนทั้งหมดของ 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_en": "What is the name for lane 1, from Mauritius?",
    "question_th": "เลน 1 มาจากมอริเชียสชื่ออะไร",
    "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_en": "Who won in 1988 with a total less than 287?",
    "question_th": "ใครชนะในปี 1988 ด้วยคะแนนรวมน้อยกว่า 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_en": "What country is Larry Mize from?",
    "question_th": "แลร์รี่ ไมซ์ มาจากประเทศใด",
    "context": "CREATE TABLE table_name_21 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MIN(bronze) FROM table_name_87 WHERE total < 1",
    "question_en": "What is the lowest number of bronze medals for a nation with fewer than 1 total medal?",
    "question_th": "จำนวนเหรียญทองแดงต่ำสุดของประเทศที่มีเหรียญรวมน้อยกว่า 1 เหรียญคือเท่าใด",
    "context": "CREATE TABLE table_name_87 (bronze INTEGER, total INTEGER)"
  },
  {
    "answer": "SELECT team FROM table_name_26 WHERE rider = \"frank hulbert\"",
    "question_en": "What team is Frank Hulbert on?",
    "question_th": "แฟรงก์ ฮัลเบิร์ตอยู่ทีมใด",
    "context": "CREATE TABLE table_name_26 (team VARCHAR, rider VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_95 WHERE rider = \"martin geiger\"",
    "question_en": "What was Martin Geiger's rank?",
    "question_th": "อันดับของ Martin Geiger คืออะไร?",
    "context": "CREATE TABLE table_name_95 (rank VARCHAR, rider VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_86 WHERE rider = \"tom silver\"",
    "question_en": "What was Tom Silver's rank?",
    "question_th": "ทอม ซิลเวอร์ มีอันดับเท่าไหร่?",
    "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_en": "Who was the player with a debut of age 18 v plymouth , 14 august 2012, and born in Portsmouth?",
    "question_th": "นักเตะคนไหนที่ประเดิมสนามเมื่ออายุ 18 ปี พบพลีมัธ เมื่อวันที่ 14 สิงหาคม 2012 และเกิดที่พอร์ทสมัธ?",
    "context": "CREATE TABLE table_name_97 (player VARCHAR, debut VARCHAR, born VARCHAR)"
  },
  {
    "answer": "SELECT born FROM table_name_63 WHERE current_club = \"elfsborg\"",
    "question_en": "Where was the player whose Current Club Elfsborg born?",
    "question_th": "ผู้เล่นที่สโมสรปัจจุบันเอลฟ์สบอร์กเกิดอยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_63 (born VARCHAR, current_club VARCHAR)"
  },
  {
    "answer": "SELECT debut FROM table_name_82 WHERE born = \"poole\"",
    "question_en": "What is the debut for the person born in Poole?",
    "question_th": "วันเกิดของคนเกิดพูลคืออะไร?",
    "context": "CREATE TABLE table_name_82 (debut VARCHAR, born VARCHAR)"
  },
  {
    "answer": "SELECT current_club FROM table_name_9 WHERE player = \"sam magri\"",
    "question_en": "What is the club for Sam Magri?",
    "question_th": "สโมสรสำหรับ Sam Magri คืออะไร?",
    "context": "CREATE TABLE table_name_9 (current_club VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT manager FROM table_name_54 WHERE current_club = \"atlético baleares\"",
    "question_en": "What is the name of the manager of the Atlético Baleares?",
    "question_th": "ผู้จัดการทีมแอตเลติโก บาเลอาเรส ชื่ออะไร?",
    "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_en": "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)?",
    "question_th": "ใครคือตัวบล็อกที่ดีที่สุดสำหรับปีที่มีแชมป์ลีกแห่งราชินีแห่งความเจ็บปวด และรางวัล CANTSLEEP Award จากแชสซีแครส (บรูคลิน)",
    "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_en": "Which Arena has Points larger than 28, and a Date of december 14?",
    "question_th": "สนามประลองใดมีคะแนนมากกว่า 28 และวันที่ 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_en": "How many Points have an Arena of bell centre?",
    "question_th": "ลานประลองแห่งระฆังมีกี่แต้ม?",
    "context": "CREATE TABLE table_name_39 (points VARCHAR, arena VARCHAR)"
  },
  {
    "answer": "SELECT SUM(attendance) FROM table_name_86 WHERE loss = \"divis (0–3–0)\" AND points < 38",
    "question_en": "How much Attendance has a Loss of divis (0–3–0), and Points smaller than 38?",
    "question_th": "ผู้เข้าร่วมมีการสูญเสียดิวิชั่นเท่าใด (0–3–0) และคะแนนน้อยกว่า 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_en": "What 2nd run has a less than 6 rank, and 3 as the total?",
    "question_th": "การวิ่งครั้งที่ 2 ใดที่มีอันดับน้อยกว่า 6 และมีทั้งหมด 3 อันดับ",
    "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_en": "What is the sum number of year when Call of Duty 4: Modern Warfare was the game?",
    "question_th": "จำนวนปีที่เกม Call of Duty 4: Modern Warfare เป็นเกมคือเท่าไร?",
    "context": "CREATE TABLE table_name_55 (year VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_name_35 WHERE genre = \"action\"",
    "question_en": "What is the earliest year when action was the genre?",
    "question_th": "ปีแรกสุดที่แนวแอ็คชั่นเป็นแนวคือปีใด?",
    "context": "CREATE TABLE table_name_35 (year INTEGER, genre VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_name_38 WHERE developer_s_ = \"ubisoft montreal\"",
    "question_en": "What is the smallest year when Ubisoft Montreal was the developer (s)?",
    "question_th": "ปีที่เล็กที่สุดเมื่อ Ubisoft Montreal เป็นผู้พัฒนาคือปีใด?",
    "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_en": "What is the latest year when Call of Duty 4: Modern Warfare was the game?",
    "question_th": "ปีล่าสุดที่เกม Call of Duty 4: Modern Warfare คือปีใด?",
    "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_en": "Who was Lieutenant Governor to the governor that left office on January 14, 1929?",
    "question_th": "ใครคือรองผู้ว่าราชการจังหวัดที่ออกจากตำแหน่งเมื่อวันที่ 14 มกราคม พ.ศ. 2472",
    "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_en": "Which governor took office on January 8, 1877?",
    "question_th": "ผู้ว่าการคนใดเข้ารับตำแหน่งเมื่อวันที่ 8 มกราคม พ.ศ. 2420",
    "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_en": "Who was lieutenant governor to the governor that left office on October 16, 2000?",
    "question_th": "ใครคือรองผู้ว่าราชการจังหวัดที่ออกจากตำแหน่งเมื่อวันที่ 16 ตุลาคม พ.ศ. 2543",
    "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_en": "How many terms did the governor that left office on August 4, 1825 serve?",
    "question_th": "ผู้ว่าราชการจังหวัดที่ออกจากตำแหน่งเมื่อวันที่ 4 สิงหาคม พ.ศ. 2368 ดำรงตำแหน่งกี่วาระ?",
    "context": "CREATE TABLE table_name_46 (terms VARCHAR, left_office VARCHAR)"
  },
  {
    "answer": "SELECT ihsaa_class FROM table_name_84 WHERE school = \"shakamak\"",
    "question_en": "Which IHSAA Class has a School of shakamak?",
    "question_th": "ชั้นเรียน IHSAA ใดมีโรงเรียน Shakamak",
    "context": "CREATE TABLE table_name_84 (ihsaa_class VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT county FROM table_name_32 WHERE school = \"bloomfield\"",
    "question_en": "Which County has a School of bloomfield?",
    "question_th": "มณฑลใดมีโรงเรียนบลูมฟิลด์?",
    "context": "CREATE TABLE table_name_32 (county VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(enrollment) FROM table_name_56 WHERE school = \"shakamak\"",
    "question_en": "How much Enrollment has a School of shakamak?",
    "question_th": "โรงเรียนชากามัคมีการลงทะเบียนเท่าไหร่?",
    "context": "CREATE TABLE table_name_56 (enrollment VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT ihsaa_class FROM table_name_10 WHERE mascot = \"bulldogs\"",
    "question_en": "Which IHSAA Class has a Mascot of bulldogs?",
    "question_th": "IHSAA Class ใดมีมาสคอตของบูลด็อก",
    "context": "CREATE TABLE table_name_10 (ihsaa_class VARCHAR, mascot VARCHAR)"
  },
  {
    "answer": "SELECT 1996 FROM table_name_53 WHERE 1986 = \"1r\"",
    "question_en": "What's the 1996 if 1986 has a 1R?",
    "question_th": "ปี 1996 คืออะไรถ้าปี 1986 มี 1R?",
    "context": "CREATE TABLE table_name_53 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1986 FROM table_name_51 WHERE 1991 = \"qf\" AND 1998 = \"3r\"",
    "question_en": "What's the 1986 if 1991 has a QF and 1998 has a 3R?",
    "question_th": "อะไรคือปี 1986 ถ้าปี 1991 มี QF และปี 1998 มี 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_en": "What's the 1997 if 1993 has a 1R, 1995 has a 3R, and 1999 has a 1R?",
    "question_th": "อะไรคือปี 1997 ถ้าปี 1993 มี 1R, ปี 1995 มี 3R และปี 1999 มี 1R?",
    "context": "CREATE TABLE table_name_99 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1994 FROM table_name_84 WHERE 1995 = \"1r\"",
    "question_en": "What's the 1994 if 1995 has a 1R?",
    "question_th": "ปี 1994 คืออะไรถ้าปี 1995 มี 1R?",
    "context": "CREATE TABLE table_name_84 (Id VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_6 WHERE 1992 = \"a\"",
    "question_en": "What's the tournament when 1992 is A?",
    "question_th": "การแข่งขันเมื่อปี 1992 เป็น 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_en": "What's the 1997 when 1992 is QF, 1995 is 1R, and 1999 is 1R?",
    "question_th": "อะไรคือปี 1997 เมื่อปี 1992 คือ QF, ปี 1995 คือ 1R และปี 1999 คือ 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_en": "What's the most league cup apps for Jimmy Lawson having 0 league cup goals?",
    "question_th": "แอพลีกคัพใดที่จิมมี่ ลอว์สันยิงได้ 0 ประตูในลีกคัพมากที่สุด?",
    "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_en": "What's the total goals for Alan Sweeney having 0 FA Cup goals and fewer than 0 League Cup apps?",
    "question_th": "ประตูรวมของอลัน สวีนีย์ที่ทำได้ 0 ประตูในเอฟเอ คัพ และน้อยกว่า 0 นัดในลีก คัพ คือเท่าใด",
    "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_en": "What's the total number of league cup apps when the league goals were less than 0?",
    "question_th": "จำนวนแอปลีกคัพทั้งหมดเมื่อประตูลีกน้อยกว่า 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_en": "Where was the September 3 game?",
    "question_th": "เกมวันที่ 3 กันยายนอยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_15 (location VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_name_2 WHERE date = \"september 12\"",
    "question_en": "Which game was on September 12?",
    "question_th": "เกมไหนคือวันที่ 12 กันยายน?",
    "context": "CREATE TABLE table_name_2 (game VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_4 WHERE county = \"cork\"",
    "question_en": "What is cork's rank?",
    "question_th": "อันดับของคอร์กคืออะไร?",
    "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_en": "How many totals does cork have whose rank is larger than 2?",
    "question_th": "ไม้ก๊อกมีทั้งหมดกี่อันซึ่งมีอันดับมากกว่า 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_en": "Which Matches have a Tally of 1-38?",
    "question_th": "นัดใดมีแต้มรวม 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_en": "How many silver medals did spain have when they had more than 0 bronze medals and less than 54 total medals?",
    "question_th": "สเปนได้เหรียญเงินกี่เหรียญในเมื่อพวกเขามีเหรียญทองแดงมากกว่า 0 เหรียญและมีเหรียญทั้งหมดน้อยกว่า 54 เหรียญ",
    "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_en": "What was the highest number of gold medals when there were 0 silver medals?",
    "question_th": "จำนวนเหรียญทองสูงสุดเมื่อมี 0 เหรียญเงินคือเท่าใด",
    "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_en": "What's Brazil's rank when it has notes of R?",
    "question_th": "บราซิลมีโน้ตตัว 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_en": "Which Peak Position has a Date of 10 june 1998?",
    "question_th": "ตำแหน่งสูงสุดใดมีวันที่ 10 มิถุนายน 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_en": "What Report is on June 3, 2000?",
    "question_th": "รายงานอะไรในวันที่ 3 มิถุนายน พ.ศ. 2543",
    "context": "CREATE TABLE table_name_85 (report VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT report FROM table_name_18 WHERE date = \"november 15, 2000\"",
    "question_en": "What is the Report on November 15, 2000?",
    "question_th": "รายงานวันที่ 15 พฤศจิกายน 2543 คืออะไร?",
    "context": "CREATE TABLE table_name_18 (report VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_45 WHERE date = \"october 7, 2000\"",
    "question_en": "What is the Score on October 7, 2000?",
    "question_th": "คะแนนในวันที่ 7 ตุลาคม 2543 เป็นเท่าใด",
    "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_en": "What is the figure for Santo Domingo, Dominican for the world record in the clean & jerk?",
    "question_th": "ตัวเลขของซานโตโดมิงโก โดมินิกัน สำหรับสถิติโลกในรายการ 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_en": "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?",
    "question_th": "รหัส FIPS สำหรับเทศบาลที่มีพื้นที่ 114.76 ตารางไมล์ (297.23 ตารางกิโลเมตร) และมีประชากรน้อยกว่า 166,327 คนในปี 2010 คืออะไร",
    "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_en": "In what year was Yauco, which had over 42,043 people in 2010, founded?",
    "question_th": "Yauco ก่อตั้งขึ้นเมื่อปีใดซึ่งมีผู้คนมากกว่า 42,043 คนในปี 2010",
    "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_en": "What is the attendance for a week smaller than 9 with a result of L 38-20?",
    "question_th": "การเข้างานในหนึ่งสัปดาห์ที่น้อยกว่า 9 โดยผลลัพธ์ของ 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_en": "Can you tell me the School that has the IHSAA Class of a, and the Enrollment 08-09 off 244?",
    "question_th": "คุณช่วยบอกฉันเกี่ยวกับโรงเรียนที่มี IHSAA Class of a และ 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_en": "Can you tell me the County that has the Location of shelbyville?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าเคาน์ตีที่มีที่ตั้งของเชลบีวิลล์คือที่ไหน?",
    "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_en": "How many Deaths have a Fate of damaged, and a Tonnage (GRT) smaller than 4,917?",
    "question_th": "มีผู้เสียชีวิตกี่รายที่ได้รับความเสียหาย และน้ำหนัก (GRT) น้อยกว่า 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_en": "Which Tonnage has a Fate of sunk, and Deaths smaller than 17, and a Date of 16 november 1940?",
    "question_th": "ระวางน้ำหนักใดมีชะตากรรมของการจม และการเสียชีวิตน้อยกว่า 17 และวันที่ 16 พฤศจิกายน พ.ศ. 2483",
    "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_en": "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?",
    "question_th": "ชะตากรรมของการจม และธงบริเตนใหญ่ และวันที่ 26 กันยายน พ.ศ. 2483 และการเสียชีวิตของ 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_en": "Which tonnage has a Date of 26 september 1940, and a Ship Name of ashantian?",
    "question_th": "น้ำหนักใดมีวันที่ 26 กันยายน พ.ศ. 2483 และชื่อเรือของ 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_en": "What is the highest lane for Brazil, ranked less than 8?",
    "question_th": "เลนที่สูงที่สุดของบราซิลอันดับที่ต่ำกว่า 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_en": "What is the total population with less than 789 males?",
    "question_th": "จำนวนประชากรทั้งหมดที่มีชายน้อยกว่า 789 คนเป็นเท่าใด",
    "context": "CREATE TABLE table_name_12 (total_population VARCHAR, male INTEGER)"
  },
  {
    "answer": "SELECT MIN(female) FROM table_name_66 WHERE district = \"hiroo 1-chōme\" AND number_of_households > 1 OFFSET 666",
    "question_en": "What is the lowest female number of the hiroo 1-chōme district, which has more than 1,666 households?",
    "question_th": "จำนวนเพศหญิงต่ำสุดของเขต hiroo 1-chome ซึ่งมีมากกว่า 1,666 ครัวเรือนคือเท่าใด",
    "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_en": "What is the total number of females where the total population is less than 2,195?",
    "question_th": "จำนวนผู้หญิงทั้งหมดที่มีประชากรทั้งหมดน้อยกว่า 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_en": "What was the outcome when the partner was Iryna Bremond?",
    "question_th": "ผลลัพธ์จะเป็นเช่นไรเมื่อคู่หูคือ Iryna Bremond?",
    "context": "CREATE TABLE table_name_13 (outcome VARCHAR, partner VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_90 WHERE score = \"6–3, 2–6, [10–8]\"",
    "question_en": "What tournament had a Score of 6–3, 2–6, [10–8]?",
    "question_th": "ทัวร์นาเมนต์ใดมีคะแนน 6–3, 2–6, [10–8]?",
    "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–6, 1–6\"",
    "question_en": "Who was the partner when the surface was clay, and outcome was runner-up, with a score of 4–6, 1–6?",
    "question_th": "ใครคือคู่หูเมื่อพื้นผิวเป็นดินเหนียว และผลลัพธ์ได้รองชนะเลิศ ด้วยคะแนน 4–6, 1–6",
    "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ínez\"",
    "question_en": "What is the rank of Manuel Cortina Martínez?",
    "question_th": "มานูเอล คอร์ติน่า มาร์ติเนซ อันดับไหน?",
    "context": "CREATE TABLE table_name_46 (rank VARCHAR, athletes VARCHAR)"
  },
  {
    "answer": "SELECT SUM(rank) FROM table_name_23 WHERE time = \"1:40.626\"",
    "question_en": "What is the rank if the person with a time of 1:40.626?",
    "question_th": "ถ้าคนที่มีเวลา 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_en": "What is the rank of the person with a time of 1:44.757?",
    "question_th": "คนที่มีเวลา 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_en": "What is the rank of Israel?",
    "question_th": "อิสราเอลอยู่อันดับไหน?",
    "context": "CREATE TABLE table_name_97 (rank INTEGER, country VARCHAR)"
  },
  {
    "answer": "SELECT athletes FROM table_name_97 WHERE country = \"myanmar\"",
    "question_en": "What is the name of the athlete from Myanmar?",
    "question_th": "นักกีฬาจากเมียนมาร์ชื่ออะไร",
    "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_en": "What are the notes for the person ranked larger than 2, and a time of 1:48.179?",
    "question_th": "หมายเหตุสำหรับบุคคลที่มีอันดับมากกว่า 2 และเวลา 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_en": "What is the lowest Chorley with a 6 Preston and a 4 for West Lancashire?",
    "question_th": "Chorley ต่ำสุดที่มี 6 Preston และ 4 สำหรับ 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_en": "What is the average rating for a Flyde that has a Burnley less than 0?",
    "question_th": "เรตติ้งเฉลี่ยของ Flyde ที่ Burnley น้อยกว่า 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_en": "What is the highest rated West Lancashire with a Pendle greater than 1 and a Rossendale more than 2?",
    "question_th": "West Lancashire ที่มีคะแนนสูงสุดโดย Pendle มากกว่า 1 และ Rossendale มากกว่า 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_en": "What was the average Chorley for the Labour party that had a Rossendale greater than 0 and a Pendle less than 1?",
    "question_th": "Chorley โดยเฉลี่ยสำหรับพรรคแรงงานที่มี Rossendale มากกว่า 0 และ Pendle น้อยกว่า 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ädlich\"",
    "question_en": "In what season was Schädlich the top goalscorer?",
    "question_th": "เชดลิชเป็นผู้ทำประตูสูงสุดในฤดูกาลใด?",
    "context": "CREATE TABLE table_name_79 (season VARCHAR, top_goalscorer VARCHAR)"
  },
  {
    "answer": "SELECT avgatt FROM table_name_90 WHERE rank = \"5\"",
    "question_en": "What is the average attendance when the rank is 5?",
    "question_th": "ผู้เข้าร่วมโดยเฉลี่ยเมื่ออยู่ในอันดับที่ 5 คือเท่าใด",
    "context": "CREATE TABLE table_name_90 (avgatt VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT speed FROM table_name_13 WHERE rider = \"chris swallow\"",
    "question_en": "What is the Speed for Chris Swallow?",
    "question_th": "ความเร็วของ 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_en": "What is the speed when the rank is larger than 2, and team is 500cc norton manx?",
    "question_th": "ความเร็วเมื่ออันดับมากกว่า 2 และทีมคือ 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_en": "What is the time for Alan Oversby?",
    "question_th": "อลัน โอเวอร์สบี้ กี่โมง?",
    "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_en": "What is the Speed when the rank is smaller than 3, and time is 1:06.19.90?",
    "question_th": "ความเร็วเมื่ออันดับน้อยกว่า 3 และเวลาคือ 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_en": "What is the team when the time is 1:11.19.89?",
    "question_th": "เวลา 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_en": "Which actor plays the character Helga Beimer?",
    "question_th": "นักแสดงคนไหนที่รับบทเป็น เฮลกา ไบเมอร์?",
    "context": "CREATE TABLE table_name_83 (actor VARCHAR, character VARCHAR)"
  },
  {
    "answer": "SELECT character FROM table_name_13 WHERE actor = \"nadine spruß\"",
    "question_en": "How long did the soap opera run in which Nadine Spruß acted in?",
    "question_th": "ละครที่ Nadine Sprußแสดงมีความยาวนานแค่ไหน?",
    "context": "CREATE TABLE table_name_13 (character VARCHAR, actor VARCHAR)"
  },
  {
    "answer": "SELECT duration FROM table_name_2 WHERE character = \"clemens richter\"",
    "question_en": "How many years did the soap opera run in which the character Clemens Richter was included?",
    "question_th": "ละครมีความยาวกี่ปีซึ่งมีตัวละคร Clemens Richter รวมอยู่ด้วย?",
    "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_en": "What years did Marienhof run, which featured Leonore Capell and lasted 10 years?",
    "question_th": "Marienhof ดำเนินกิจการกี่ปี โดยมี Leonore Capell นำเสนอและกินเวลานานถึง 10 ปี?",
    "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_en": "Who was the opponent in week 6?",
    "question_th": "คู่ต่อสู้ในสัปดาห์ที่ 6 คือใคร?",
    "context": "CREATE TABLE table_name_89 (opponent VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_86 WHERE opponent = \"carolina panthers\"",
    "question_en": "What's the result when the Carolina Panthers were the opponent?",
    "question_th": "ผลเป็นอย่างไรเมื่อ Carolina Panthers เป็นคู่ต่อสู้?",
    "context": "CREATE TABLE table_name_86 (result VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_29 WHERE result = \"w 41-0\"",
    "question_en": "What date had a result of W 41-0?",
    "question_th": "W 41-0 มีผลวันไหน?",
    "context": "CREATE TABLE table_name_29 (date VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_95 WHERE week > 16",
    "question_en": "What's the attendance when the week was more than 16?",
    "question_th": "ผู้เข้าร่วมเมื่อสัปดาห์มีมากกว่า 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_en": "What was the year of the World Half Marathon Championships with a result of 3rd?",
    "question_th": "การแข่งขัน World Half Marathon Championships โดยผลอันดับที่ 3 ตรงกับปีใด?",
    "context": "CREATE TABLE table_name_5 (year VARCHAR, tournament VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_67 WHERE year = 2001",
    "question_en": "What was the result of the tournament in 2001?",
    "question_th": "ผลการแข่งขันในปี 2544 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_67 (result VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT AVG(capacity) FROM table_name_89 WHERE navigator = \"macneall\"",
    "question_en": "What is the average capacity for the vehicle having a navigator of Macneall?",
    "question_th": "ความจุเฉลี่ยของรถที่มีระบบนำทางของ Macneall คือเท่าไร?",
    "context": "CREATE TABLE table_name_89 (capacity INTEGER, navigator VARCHAR)"
  },
  {
    "answer": "SELECT vehicle FROM table_name_8 WHERE class = \"cm14\"",
    "question_en": "Which vehicle had a class of CM14?",
    "question_th": "รถคันไหนมีคลาส 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_en": "Who was the driver of the vehicle having class of CM22 and navigator of Macneall?",
    "question_th": "ใครเป็นผู้ขับขี่รถยนต์ประเภท CM22 และผู้นำทางของ 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_en": "What is the total time of the vehicle having a navigator of Vandenberg?",
    "question_th": "เวลารวมของยานพาหนะที่มีระบบนำทางของ 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_en": "What is the bronze with more than 2 gold and less than 14 total and 4 silver?",
    "question_th": "บรอนซ์ที่มีมากกว่า 2 ทองคำแต่น้อยกว่า 14 ทองและ 4 เงินคืออะไร?",
    "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_en": "How many silvers are there with a total of 11?",
    "question_th": "มีทั้งหมด 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_en": "How many silvers are there with more than 2 golds in Germany?",
    "question_th": "มีเงินมากกว่า 2 เหรียญทองในเยอรมนีมีกี่เหรียญ?",
    "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_en": "What is the average reaction for brigitte foster-hylton after heat 1?",
    "question_th": "ปฏิกิริยาเฉลี่ยของบริจิตต์ ฟอสเตอร์-ฮิลตัน หลังความร้อน 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_en": "What round did the home team Pohang Steelers play?",
    "question_th": "เจ้าบ้าน โปฮัง สตีลเลอร์ส เล่นรอบไหน?",
    "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_en": "What is the latest round for Pohang Steelers as the away team?",
    "question_th": "ล่าสุด โปฮัง สตีลเลอร์ส เป็นทีมเยือนรอบไหน?",
    "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_en": "what is the album when the remix is dead guys remix and the year is after 2003?",
    "question_th": "อัลบั้มอะไรคือตอนที่รีมิกซ์คือ Dead Guys และปีหลังปี 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_en": "What is Joselito Escobar's Pick number?",
    "question_th": "หมายเลข Pick ของ Joselito Escobar คืออะไร",
    "context": "CREATE TABLE table_name_96 (pick INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_67 WHERE college = \"east\" AND pick = 3",
    "question_en": "What is the Pick 3 Player from East College?",
    "question_th": "ผู้เล่น Pick 3 จาก 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_en": "What is Ateneo de Manila's PBA Team?",
    "question_th": "ทีม PBA ของ Ateneo de Manila คืออะไร?",
    "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_en": "What is the College of the Player from PBA Team Alaska Milkmen with a Pick number of 3 or less?",
    "question_th": "College of the Player จากทีม PBA Alaska Milkmen ที่มีจำนวน Pick 3 หรือน้อยกว่าคืออะไร?",
    "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_en": "What is the College of the Player from San Miguel Beermen PBA Team?",
    "question_th": "College of the Player จากทีม San Miguel Beermen PBA คืออะไร?",
    "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_en": "who is the web client when the client is x and the project is goto servers vnc java server (gsvncj)?",
    "question_th": "เว็บไคลเอ็นต์คือใครเมื่อไคลเอ็นต์คือ x และโปรเจ็กต์คือเซิร์ฟเวอร์ goto 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 = \"✓\"",
    "question_en": "what is the color quality when the relay is ✓?",
    "question_th": "คุณภาพสีเมื่อรีเลย์เป็น ✓ จะเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_9 (color_quality VARCHAR, relay VARCHAR)"
  },
  {
    "answer": "SELECT proxy FROM table_name_59 WHERE image_quality = \"✓\" AND encryption = \"ssl\" AND license = \"proprietary\"",
    "question_en": "what is the proxy when the image quality is ✓, the encryption is ssl and the license is proprietary?",
    "question_th": "พร็อกซีคืออะไรเมื่อคุณภาพของภาพเป็น ✓, การเข้ารหัสเป็น ssl และใบอนุญาตเป็นกรรมสิทธิ์",
    "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 = \"✓\" AND date = \"may 15, 2007\"",
    "question_en": "what is the image quality when the multiple sessions is x, the authentication is ✓ and the date is may 15, 2007?",
    "question_th": "คุณภาพของภาพเป็นเท่าใดเมื่อหลายเซสชันเป็น x การรับรองความถูกต้องเป็น ✓ และวันที่คือ 15 พฤษภาคม 2550",
    "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_en": "What is listed for the Cores that has the L3 cache of 8 MB and Model number of Core i7-860?",
    "question_th": "มีอะไรระบุไว้สำหรับ Cores ที่มีแคช L3 ขนาด 8 MB และหมายเลขรุ่นของ 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_en": "What Memory has a Turbo of 2/2/4/5 and the Release date of May 2010?",
    "question_th": "หน่วยความจำใดที่มี Turbo 2/2/4/5 และวันที่วางจำหน่ายในเดือนพฤษภาคม 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_en": "What Model number has the sSpec numebr of SLBJG(B1)?",
    "question_th": "หมายเลขรุ่นใดมีหมายเลข sSpec ของ 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_en": "What Turbo has the Release price (USD) of $583?",
    "question_th": "Turbo รุ่นใดมีราคาวางจำหน่าย (USD) ที่ 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_en": "What is the lowest prominence for a peak with elevation of 3,615 meters?",
    "question_th": "ยอดเขาที่มีความโดดเด่นต่ำสุดคือ 3,615 เมตร คืออะไร?",
    "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_en": "What is the Col entry for the peak with an elevation of 2,308 meters?",
    "question_th": "รายการ Col สำหรับยอดเขาที่มีความสูง 2,308 เมตร คืออะไร?",
    "context": "CREATE TABLE table_name_86 (col__m_ VARCHAR, elevation__m_ VARCHAR)"
  },
  {
    "answer": "SELECT actor FROM table_name_64 WHERE character = \"rachel mckenna\"",
    "question_en": "who is the actor that played rachel mckenna?",
    "question_th": "นักแสดงที่รับบทเป็น เรเชล แม็คเคนน่า คือใคร?",
    "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–1999, 2001–2003, 2007, 2009—\"",
    "question_en": "who is the actor for shortland street for the years 1993–1999, 2001–2003, 2007, 2009—?",
    "question_th": "ใครคือนักแสดงของ Shortland Street ในช่วงปี 1993–1999, 2001–2003, 2007, 2009—?",
    "context": "CREATE TABLE table_name_31 (actor VARCHAR, soap_opera VARCHAR, years VARCHAR)"
  },
  {
    "answer": "SELECT soap_opera FROM table_name_10 WHERE years = \"2000–2004, 2005—\"",
    "question_en": "what is the soap opera when the years are 2000–2004, 2005—?",
    "question_th": "ละครคืออะไรในช่วงปี 2543-2547, 2548—?",
    "context": "CREATE TABLE table_name_10 (soap_opera VARCHAR, years VARCHAR)"
  },
  {
    "answer": "SELECT character FROM table_name_47 WHERE duration = \"11 years\"",
    "question_en": "what is the character with the duration of 11 years?",
    "question_th": "ตัวละครที่มีระยะเวลา 11 ปีคืออะไร?",
    "context": "CREATE TABLE table_name_47 (character VARCHAR, duration VARCHAR)"
  },
  {
    "answer": "SELECT soap_opera FROM table_name_48 WHERE actor = \"elin sogn\"",
    "question_en": "what is the soap opera for elin sogn?",
    "question_th": "ละครของเอลิน ซงคืออะไร",
    "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_en": "What station was owned since 2011, and a channel (tv/rf) of 27?",
    "question_th": "สถานีใดเป็นเจ้าของตั้งแต่ปี 2554 และช่อง (tv/rf) จำนวน 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_en": "What affiliation has an owned since larger than 1991, and also has a channel (tv/rf) of 42?",
    "question_th": "สังกัดใดมีเจ้าของมาตั้งแต่ปี 1991 และยังมีช่อง (tv/rf) ที่ 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_en": "What city of license/market has an owned since before 2011,and a affiliation of abc and channel (tv/rf) of 9 (22)?",
    "question_th": "เมืองที่ได้รับใบอนุญาต/ตลาดใดมีเจ้าของตั้งแต่ก่อนปี 2011 และสังกัด abc และช่อง (tv/rf) จำนวน 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_en": "COunt the sum of Prominence (m) of an Elevation (m) of 2,024?",
    "question_th": "นับผลรวมของความโดดเด่น (ม.) ของระดับความสูง (ม.) เท่ากับ 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_en": "Count the Prominence (m) of Col (m) smaller than 0?",
    "question_th": "นับความโดดเด่น (m) ของ Col (m) น้อยกว่า 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é\" AND prominence__m_ < 3 OFFSET 011",
    "question_en": "Name the lowest Col (m) with a Peak of pico basilé, and a Prominence (m) smaller than 3,011?",
    "question_th": "ตั้งชื่อ Col ที่ต่ำที่สุด (m) ด้วยจุดสูงสุดของ pico basilé และความโดดเด่น (m) เล็กกว่า 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_en": "What is the Week of the game with TV Time of Fox 4:15ET?",
    "question_th": "สัปดาห์ของเกมกับเวลาทีวีของ 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_en": "What is the TV Time of the game on December 27, 2003?",
    "question_th": "วันที่ 27 ธันวาคม พ.ศ. 2546 ออกอากาศทางทีวีเมื่อใด",
    "context": "CREATE TABLE table_name_51 (tv_time VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_97 WHERE attendance = \"68,436\"",
    "question_en": "What is the Opponent at the game with Attendance of 68,436?",
    "question_th": "ฝ่ายตรงข้ามในเกมคืออะไรโดยมีผู้เข้าร่วม 68,436 คน?",
    "context": "CREATE TABLE table_name_97 (opponent VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_7 WHERE opponent = \"cincinnati bengals\"",
    "question_en": "What is the Attendance at the game against the Cincinnati Bengals?",
    "question_th": "ผู้เข้าร่วมในเกมกับ 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–6\"",
    "question_en": "What is the Opponent of the game after Week 3 with a Result of L 10–6?",
    "question_th": "ฝ่ายตรงข้ามของเกมหลังจากสัปดาห์ที่ 3 ที่มีผลการแข่งขัน L 10–6 คืออะไร",
    "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–16\"",
    "question_en": "What is the Date of the Game with a Result of w 22–16 in TV Time of CBS 1:00ET?",
    "question_th": "วันที่ของเกมซึ่งมีผลการแข่งขัน w 22–16 ตามเวลาทีวีของ 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_en": "At what Venue was the Attendance 47,678?",
    "question_th": "ผู้เข้าร่วม 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_en": "What is the Attendance of New Zealand Scores in bold?",
    "question_th": "คะแนนการเข้าร่วมของนิวซีแลนด์เป็นตัวหนาคืออะไร?",
    "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_en": "What is the number of lost games when 2 were drawn, and there were 6 bonus points?",
    "question_th": "จำนวนเกมที่แพ้เมื่อเสมอ 2 เกมและมี 6 คะแนนโบนัสเป็นเท่าใด",
    "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_en": "What is the number of bonus points when there are 4 drawn?",
    "question_th": "เมื่อจับได้ 4 ครั้งจะได้แต้มโบนัสเป็นจำนวนเท่าใด?",
    "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_en": "What is the number of bonus points when there are 2 drawn and the points against is 599?",
    "question_th": "เมื่อเสมอกัน 2 ครั้ง และแต้มต่อคือ 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_en": "What is the lost number when the team played 26 games and there were 83 points?",
    "question_th": "เบอร์ที่เสียไปเมื่อทีมเล่นไป 26 นัด มี 83 แต้ม เป็นเลขอะไร?",
    "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_en": "What is the lost number for the team with 2 drawn games, and 572 points against?",
    "question_th": "ทีมที่เสียไป 2 เกม เสมอ 2 นัด มี 572 แต้ม เสียเท่าไหร่?",
    "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_en": "What is the number of bonus points for the team with 2 drawn games and 475 points?",
    "question_th": "จำนวนคะแนนโบนัสสำหรับทีมที่เสมอ 2 เกมและ 475 คะแนนคือเท่าไร?",
    "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_en": "What is the transfer fee for Helguera?",
    "question_th": "ค่าธรรมเนียมการโอนของ เฮลเกรา คืออะไร?",
    "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_en": "What was the transfer fee when the moving from was celta de Vigo?",
    "question_th": "ตอนย้ายมาจากเซลต้า เด บีโก้ ค่าโอนเท่าไหร่?",
    "context": "CREATE TABLE table_name_25 (transfer_fee VARCHAR, moving_from VARCHAR)"
  },
  {
    "answer": "SELECT transfer_window FROM table_name_21 WHERE moving_from = \"fenerbahçe\"",
    "question_en": "What was the transfer window with a moving from of fenerbahçe?",
    "question_th": "หน้าต่างการโอนย้ายจากเฟเนร์บาห์เช่เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_21 (transfer_window VARCHAR, moving_from VARCHAR)"
  },
  {
    "answer": "SELECT nat FROM table_name_97 WHERE moving_from = \"espanyol\"",
    "question_en": "What nation had a moving from of espanyol?",
    "question_th": "ชาติใดที่ย้ายออกจากเอสปันญ่อล?",
    "context": "CREATE TABLE table_name_97 (nat VARCHAR, moving_from VARCHAR)"
  },
  {
    "answer": "SELECT transfer_fee FROM table_name_79 WHERE ends = 2007",
    "question_en": "What was the transfer fee for the player with an ends of 2007?",
    "question_th": "ค่าธรรมเนียมการโอนของนักเตะเมื่อสิ้นปี 2550 เป็นเท่าใด?",
    "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_en": "What is the Series of the Filmography with a Release date of 1946-03-16?",
    "question_th": "ผลงานซีรีส์เรื่องใดบ้างที่มีกำหนดออกฉายในวันที่ 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_en": "Who is the Director of the Filmography with Production Number of 11-14?",
    "question_th": "ใครคือผู้กำกับผลงานภาพยนตร์ที่มีจำนวนการผลิต 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_en": "What is the Series of the Filmography with Release date of 1946-01-05?",
    "question_th": "ผลงานซีรีส์เรื่องใดบ้างที่มีวันที่ออกฉายในปี 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_en": "What is the Series of the Filmography with a Production Number of M-4-15?",
    "question_th": "ผลงานซีรีส์ที่มีจำนวนการผลิต 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_en": "What venue has a score of 4-0 with the 2002 Tiger Cup listed as the competition?",
    "question_th": "สนามใดมีสกอร์ 4-0 โดยที่ไทเกอร์คัพปี 2002 ถูกกำหนดให้เป็นการแข่งขัน?",
    "context": "CREATE TABLE table_name_26 (venue VARCHAR, score VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_47 WHERE score = \"1-3\"",
    "question_en": "What competition has a score of 1-3?",
    "question_th": "การแข่งขันรายการใดมีคะแนน 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_en": "What competition listed is dated November 17, 2003?",
    "question_th": "การแข่งขันใดที่ระบุไว้คือวันที่ 17 พฤศจิกายน พ.ศ. 2546?",
    "context": "CREATE TABLE table_name_32 (competition VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_4 WHERE date = \"february 22, 2003\"",
    "question_en": "What venue listed is dated February 22, 2003?",
    "question_th": "สถานที่ใดที่ระบุไว้คือวันที่ 22 กุมภาพันธ์ พ.ศ. 2546",
    "context": "CREATE TABLE table_name_4 (venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_88 WHERE competition = \"friendly\"",
    "question_en": "What venue is listed as having a competition titled Friendly?",
    "question_th": "สถานที่ใดที่ถูกระบุว่ามีการแข่งขันในชื่อกระชับมิตร?",
    "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_en": "Which Notes have a Time larger than 23.34, and a Rank of 8?",
    "question_th": "Notes ใดมีเวลามากกว่า 23.34 และอันดับ 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_en": "In what week was the December 21, 1969 game?",
    "question_th": "เกมวันที่ 21 ธันวาคม 2512 จัดขึ้นในสัปดาห์ใด?",
    "context": "CREATE TABLE table_name_68 (week INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT opposing_team FROM table_name_14 WHERE venue = \"rectory ground, devonport\"",
    "question_en": "Which Opposing Team has a Venue of rectory ground, devonport?",
    "question_th": "ทีมตรงข้ามทีมใดมีสนามอธิการบดี เดวอนพอร์ท?",
    "context": "CREATE TABLE table_name_14 (opposing_team VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_72 WHERE opposing_team = \"mid-districts\"",
    "question_en": "When has an Opposing Team of mid-districts?",
    "question_th": "เมื่อไรจะมีทีมตรงข้ามภาคกลาง?",
    "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_en": "Can you tell me the Class (old) to 1868 that has the Quantity larger than 8?",
    "question_th": "คุณช่วยบอกฉันคลาส (เก่า) ถึง 1868 ที่มีปริมาณมากกว่า 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_en": "What was the date of the Cross Code debut that had an Int'l Debut in the year 2008?",
    "question_th": "วันที่เปิดตัว Cross Code และเปิดตัวครั้งแรกในปี 2008 คือเมื่อใด",
    "context": "CREATE TABLE table_name_20 (date VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_92 WHERE player = \"coenraad breytenbach\"",
    "question_en": "What year did Coenraad Breytenbach have their Int'l Debut?",
    "question_th": "Coenraad Breytenbach เปิดตัวในระดับนานาชาติในปีใด",
    "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_en": "What percent of respondents had no opinion on George H.W. Bush?",
    "question_th": "ผู้ตอบแบบสำรวจกี่เปอร์เซ็นต์ไม่มีความคิดเห็นเกี่ยวกับ George HW 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_en": "What was Christian Kubusch's lane when the heat was more than 2 and time was DNS?",
    "question_th": "เลนของ Christian Kubusch คืออะไรเมื่อความร้อนมากกว่า 2 และเวลาเป็น 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_en": "What's Bulgaria's lane?",
    "question_th": "เลนของบัลแกเรียคืออะไร?",
    "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_en": "What's Great Britain's lane with a heat less than 3?",
    "question_th": "เลนของบริเตนใหญ่ที่มีความร้อนน้อยกว่า 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_en": "What's Spain's lane with a heat less than 4?",
    "question_th": "เลนไหนของสเปนที่ความร้อนน้อยกว่า 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_en": "What's the heat in the lane less than 3 with a time of 14:48.39?",
    "question_th": "ความร้อนในเลนน้อยกว่า 3 ด้วยเวลา 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_en": "What's China's heat for Zhang Lin in a lane after 6?",
    "question_th": "จีนร้อนแรงแค่ไหนสำหรับจาง หลินในเลนหลัง 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_en": "Who won bronze in 1994?",
    "question_th": "ใครได้รับรางวัลเหรียญทองแดงในปี 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_en": "Which position was picked before 63, for Oklahoma College?",
    "question_th": "ตำแหน่งใดถูกเลือกก่อนปี 63 สำหรับวิทยาลัยโอคลาโฮมา",
    "context": "CREATE TABLE table_name_46 (position VARCHAR, pick VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_68 WHERE position = \"offensive tackle\"",
    "question_en": "Which College has a Position of Offensive Tackle?",
    "question_th": "วิทยาลัยใดมีตำแหน่งเป็นฝ่ายรุก?",
    "context": "CREATE TABLE table_name_68 (college VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_21 WHERE balls = 50",
    "question_en": "Which player had 50 balls?",
    "question_th": "ผู้เล่นคนไหนมีลูกบอล 50 ลูก?",
    "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_en": "What date was Apes of Wrath written by Friz Freleng, production number higher than 1496 from series mm released?",
    "question_th": "Apes of Wrath เขียนโดย Friz Freleng วันที่เท่าไหร่ จำนวนการผลิตสูงกว่า 1496 จากซีรีส์ mm ที่ออกฉายคือวันที่ใด",
    "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_en": "What is the production number directed by Robert McKimson in series mm titled People Are Bunny?",
    "question_th": "หมายเลขการผลิตที่กำกับโดย Robert McKimson ในซีรีส์ mm ชื่อ 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_en": "What was the series of the episode directed by Abe Levitow released on 1959-06-27?",
    "question_th": "ซีรีส์ตอนที่กำกับโดย Abe Levitow ออกอากาศเมื่อวันที่ 27-06-1959 คืออะไร",
    "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_en": "What is the release date of the episode named Mouse-Placed Kitten with an episode number less than 1495 directed by Robert McKimson?",
    "question_th": "วันที่วางจำหน่ายของตอนที่ชื่อ Mouse-Placed Kitten ซึ่งมีหมายเลขตอนน้อยกว่า 1495 กำกับโดย 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_en": "Which Player has a Round larger than 8?",
    "question_th": "ผู้เล่นคนใดมีรอบที่ใหญ่กว่า 8?",
    "context": "CREATE TABLE table_name_50 (player VARCHAR, round INTEGER)"
  },
  {
    "answer": "SELECT nationality FROM table_name_25 WHERE player = \"tom cassidy\"",
    "question_en": "What is tom cassidy's nationality?",
    "question_th": "ทอม แคสสิดี้มีสัญชาติอะไร",
    "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_en": "Which College/Junior/Club Team has a Pick larger than 70, and a Round smaller than 7?",
    "question_th": "ทีมวิทยาลัย/จูเนียร์/คลับใดที่มีตัวเลือกมากกว่า 70 และรอบที่เล็กกว่า 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_en": "Which Player has a Round larger than 8?",
    "question_th": "ผู้เล่นคนใดมีรอบที่ใหญ่กว่า 8?",
    "context": "CREATE TABLE table_name_87 (player VARCHAR, round INTEGER)"
  },
  {
    "answer": "SELECT county FROM table_name_74 WHERE location = \"edinburgh\"",
    "question_en": "Which County has a Location of edinburgh?",
    "question_th": "มณฑลใดมีที่ตั้งของเอดินบะระ?",
    "context": "CREATE TABLE table_name_74 (county VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT AVG(enrollment) FROM table_name_32 WHERE location = \"hope\"",
    "question_en": "COunt the average Enrollment in hope?",
    "question_th": "นับการลงทะเบียนเฉลี่ยด้วยความหวังหรือไม่?",
    "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_en": "Which Mascot has IHSAA Class of aa, and a Enrollment larger than 369?",
    "question_th": "มาสคอตตัวใดมีคลาส IHSAA ระดับ aa และมีการลงทะเบียนมากกว่า 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_en": "what is the lowest league goals when the league apps is 1 and the fa cup goals is more than 0?",
    "question_th": "ประตูลีกต่ำสุดเมื่อแอปลีกเป็น 1 และประตูเอฟเอคัพมากกว่า 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_en": "what is the highest fa cup goals when the total goals is more than 3 and total apps is 31 (1)?",
    "question_th": "ประตูเอฟเอคัพสูงสุดเมื่อประตูรวมมากกว่า 3 และแอปทั้งหมดคือ 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_en": "what is the league goals when the fa cup goals is higher than 0, the fa cup apps is 2 and the league apps is 45?",
    "question_th": "ประตูลีกคืออะไรเมื่อประตูเอฟเอคัพสูงกว่า 0 แอพเอฟเอคัพคือ 2 และแอพลีกคือ 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_en": "how many times is the total apps 1 and the fa cup goals less than 0 for bob mountain?",
    "question_th": "กี่ครั้งที่จำนวนแอปทั้งหมด 1 และเป้าหมายเอฟเอคัพน้อยกว่า 0 สำหรับบ็อบ เมาเท่น?",
    "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_en": "What is the highest attendance for the match against west ham united at the venue of a?",
    "question_th": "แมตช์ที่พบกับเวสต์แฮมยูไนเต็ดมีผู้เข้าชมมากที่สุดคือสนามใด?",
    "context": "CREATE TABLE table_name_42 (attendance INTEGER, venue VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_84 WHERE score = 67",
    "question_en": "Which Country has a Score of 67?",
    "question_th": "ประเทศใดมีคะแนน 67?",
    "context": "CREATE TABLE table_name_84 (country VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_64 WHERE player = \"momoko ueda\"",
    "question_en": "Which To par has a Player of momoko ueda?",
    "question_th": "พาร์ใดที่มีผู้เล่นของโมโมโกะ อูดะ?",
    "context": "CREATE TABLE table_name_64 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_87 WHERE player = \"johanna head\"",
    "question_en": "Which To par has a Player of johanna head?",
    "question_th": "พาร์ใดที่มีผู้เล่นของโจฮันนาเป็นหัวหน้า?",
    "context": "CREATE TABLE table_name_87 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_name_48 WHERE country = \"denmark\"",
    "question_en": "What is the notes for the team from Denmark?",
    "question_th": "หมายเหตุของทีมจากเดนมาร์กคืออะไร?",
    "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_en": "Which athlete had a rank of 6 and notes of sc/d?",
    "question_th": "นักกีฬาคนใดมีอันดับ 6 และบันทึก 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_en": "Which country is the athlete latt shwe zin with notes of sc/d from?",
    "question_th": "นักกีฬา latt shwe zin ที่มีโน้ต sc/d มาจากประเทศใด?",
    "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_en": "What's the HR number when the LMS number is 14758?",
    "question_th": "หมายเลข HR เมื่อหมายเลข LMS คือ 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_en": "What's the CR number that has an LMS number less than 14761 and works of Hawthorn Leslie 3100?",
    "question_th": "หมายเลข CR ที่มีหมายเลข LMS น้อยกว่า 14761 และผลงานของ 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_en": "What's the HR Number when the LMS number is 14757 and has a built of 9/1915?",
    "question_th": "หมายเลข HR คืออะไรเมื่อหมายเลข LMS คือ 14757 และสร้างขึ้นเป็น 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_en": "What's the built date when the CR number is more than 940 and the LMS number is 14760?",
    "question_th": "วันที่สร้างเมื่อหมายเลข CR มากกว่า 940 และหมายเลข LMS คือ 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_en": "What is the Home team of the event on Thursday, December 11 with Visitor Modo Hockey?",
    "question_th": "ทีมเหย้าของงานวันพฤหัสบดีที่ 11 ธันวาคมเป็นอย่างไรบ้างกับ 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_en": "What is the traditional Chinese name for the record titled Sunrise?",
    "question_th": "ชื่อภาษาจีนดั้งเดิมของแผ่นเสียงชื่อ Sunrise คืออะไร?",
    "context": "CREATE TABLE table_name_36 (chinese__traditional_ VARCHAR, english_title VARCHAR)"
  },
  {
    "answer": "SELECT chinese__traditional_ FROM table_name_66 WHERE chinese__simplified_ = \"崇拜\"",
    "question_en": "What would be the traditional Chinese name tat is simplified as 崇拜?",
    "question_th": "ชื่อภาษาจีนดั้งเดิมว่า ทท ย่อว่า 崇拜 คืออะไร?",
    "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_en": "What traditional Chinese name would the Rock Records release Grown up Overnight be given?",
    "question_th": "Rock Records จะปล่อยเพลง Grown up Overnight ชื่อภาษาจีนดั้งเดิมว่าอะไร?",
    "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_en": "What is the traditional Chinese name for the record Beautiful?",
    "question_th": "ชื่อภาษาจีนดั้งเดิมของแผ่นเสียง Beautiful คืออะไร?",
    "context": "CREATE TABLE table_name_84 (chinese__traditional_ VARCHAR, english_title VARCHAR)"
  },
  {
    "answer": "SELECT album_number FROM table_name_66 WHERE chinese__simplified_ = \"情歌没有告诉你\"",
    "question_en": "What is the album number for the record 情歌没有告诉你, simplified from the traditional Chinese name?",
    "question_th": "หมายเลขอัลบั้มของแผ่นเสียง 情歌没有告诉คุณ ย่อมาจากชื่อภาษาจีนตัวเต็มคืออะไร",
    "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_en": "What is the simplified Chinese name for the 9th album?",
    "question_th": "ชื่อภาษาจีนตัวย่อของอัลบั้มที่ 9 คืออะไร?",
    "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_en": "Which Eliminated has a Tag Team of jindrak and cade?",
    "question_th": "ซึ่ง Eliminated มีแท็กทีม จินตรัก และ เคด ?",
    "context": "CREATE TABLE table_name_18 (eliminated VARCHAR, tag_team VARCHAR)"
  },
  {
    "answer": "SELECT eliminated AS by FROM table_name_42 WHERE entered < 2",
    "question_en": "Which Eliminated has an Entered smaller than 2?",
    "question_th": "เอลิเมนต์ใดที่มีค่า Enter น้อยกว่า 2",
    "context": "CREATE TABLE table_name_42 (eliminated VARCHAR, entered INTEGER)"
  },
  {
    "answer": "SELECT tag_team FROM table_name_94 WHERE entered = 6",
    "question_en": "Name the Tag Team with Entered of 6?",
    "question_th": "ตั้งชื่อแท็กทีมด้วย 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_en": "Name Tag Team with a Eliminated of 5?",
    "question_th": "ตั้งชื่อแท็กทีมโดยตกรอบ 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_en": "Name the Tag Team with a Time of 03:34?",
    "question_th": "ตั้งชื่อแท็กทีมด้วยเวลา 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 = \"あいのうた\"",
    "question_en": "Which Episodes have a TV Station of ntv, and a Japanese Title of あいのうた?",
    "question_th": "ตอนใดที่มีสถานีโทรทัศน์ของ ntv และมีชื่อภาษาญี่ปุ่นว่า あいのうた",
    "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_en": "Which TV Station has Average Ratings of 16.89%?",
    "question_th": "สถานีโทรทัศน์ใดมีเรตติ้งเฉลี่ย 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 = \"今夜ひとりのベッドで\"",
    "question_en": "Which Episodes have a TV Station of tbs, and a Japanese Title of 今夜ひとりのベッドで?",
    "question_th": "ตอนใดมีสถานีโทรทัศน์ tbs และมีชื่อภาษาญี่ปุ่นว่า 今夜ひとりのベッドで",
    "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_en": "Which Japanese Title has a TV Station of tbs, and a Romaji Title of hana yori dango?",
    "question_th": "เรื่องญี่ปุ่นเรื่องไหนที่มีสถานีโทรทัศน์เป็น tbs และเรื่องโรมันจิเรื่อง 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_en": "Who was the away team with a tie number of 4?",
    "question_th": "ทีมเยือนที่มีเลข 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_en": "What date was the tie number of 32?",
    "question_th": "เลข 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_en": "What was the score when the tie number was a replay and the home team was mansfield town?",
    "question_th": "คะแนนเมื่อเสมอกันเป็นนัดรีเพลย์ และเจ้าบ้านคือแมนส์ฟิลด์ ทาวน์ เป็นอย่างไรบ้าง?",
    "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_en": "what is the to par when the score is 67-68-76=211?",
    "question_th": "เมื่อสกอร์เป็น 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_en": "what is the score for tom watson?",
    "question_th": "ทอม วัตสันได้คะแนนเท่าไหร่?",
    "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_en": "who is the player when the place is t10 and the score is 67-72-72=211?",
    "question_th": "ผู้เล่นคนไหนเมื่ออันดับ t10 และคะแนนคือ 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_en": "what is the place for bryce molder?",
    "question_th": "ไบรซ์ โมลเดอร์มีที่ไหน?",
    "context": "CREATE TABLE table_name_31 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_72 WHERE player = \"mathew goggin\"",
    "question_en": "what is the to par for mathew goggin?",
    "question_th": "ค่าพาร์ของแมทธิว โกกินคืออะไร?",
    "context": "CREATE TABLE table_name_72 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT AVG(quantity) FROM table_name_86 WHERE axle_arrangement = \"2′c h2\"",
    "question_en": "Which Quantity has an Axle arrangement of 2′c h2?",
    "question_th": "ปริมาณใดที่มีการจัดเรียงเพลาเป็น 2′c 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′b n2\"",
    "question_en": "Which Year(s) of manufacture has an Axle arrangement of 2′b n2?",
    "question_th": "ปีที่ผลิตใดที่มีการจัดเรียงเพลาเป็น 2′b 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_en": "Which Rank has a Time of 5:56.73?",
    "question_th": "อันดับไหนมีเวลา 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_en": "Which Rank has Notes of fb, and a Time of 5:57.31?",
    "question_th": "อันดับไหนมี Notes ของ fb และเวลา 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_en": "Which 2007 has a Country or territory of china, and a 2002 smaller than 670,099?",
    "question_th": "ปี 2550 ใดมีประเทศหรือดินแดนของจีน และปี 2545 เล็กกว่า 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_en": "what is the giro wins when jerseys is 2, country is portugal and young rider is more than 0?",
    "question_th": "ไจโรชนะเมื่อเสื้อคือ 2 ประเทศคือโปรตุเกส และนักบิดรุ่นเยาว์มากกว่า 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_en": "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?",
    "question_th": "เสื้อแข่งที่สูงที่สุดคืออะไรเมื่อคะแนนเป็น 0 เจ้าของที่แตกต่างกันน้อยกว่า 3 กีโรชนะน้อยกว่า 1 และนักบิดรุ่นเยาว์มากกว่า 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_en": "how many times is young rider more than 0, country is france and points less than 1?",
    "question_th": "กี่ครั้งแล้วที่ Young Rider มากกว่า 0 ประเทศคือฝรั่งเศส และคะแนนน้อยกว่า 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_en": "what is the least different holders when the country is ireland and giro wins is less than 1?",
    "question_th": "ผู้ถือที่แตกต่างกันน้อยที่สุดคืออะไรเมื่อประเทศคือไอร์แลนด์และ giro ชนะน้อยกว่า 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_en": "What is Brian Mateer's Speed?",
    "question_th": "ความเร็วของ Brian Mateer คืออะไร?",
    "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_en": "What is the Rank of the Rider with a Speed of 111.072mph in Team 250CC Honda?",
    "question_th": "อันดับของผู้ขับขี่ด้วยความเร็ว 111.072 ไมล์ต่อชั่วโมงในทีม 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_en": "What is the Nationality of the swimmer with a Time of 1:08.80?",
    "question_th": "นักว่ายน้ำสัญชาติอะไร เวลา 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_en": "What is Anna Khlistunova's Nationality?",
    "question_th": "สัญชาติของ Anna Khlistunova คืออะไร?",
    "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_en": "What is the penalty for the DET team player Andreas Lilja?",
    "question_th": "บทลงโทษสำหรับผู้เล่นทีม DET 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_en": "What is the penalty for Jonathan Toews?",
    "question_th": "โจนาธาน โทวส์ จุดโทษคืออะไร?",
    "context": "CREATE TABLE table_name_19 (penalty VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT period FROM table_name_49 WHERE player = \"ben eager\"",
    "question_en": "What is the period for Ben Eager?",
    "question_th": "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_en": "What is the period for the DET Team with a time of 11:27?",
    "question_th": "ทีม DET เวลา 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_en": "What player has a penalty of holding on the DET team?",
    "question_th": "ผู้เล่นคนไหนมีโทษติดทีม DET?",
    "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_en": "What time does Dustin Byfuglien have in 1st period?",
    "question_th": "Dustin Byfuglien ช่วงที่ 1 กี่โมง?",
    "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_en": "Which competition has a result of 2-0 in Ferreiras with an assist/pass by Casey Nogueira?",
    "question_th": "รายการใดที่ผลสกอร์เป็น 2-0 ที่เฟร์ไรรัส โดยมีเคซี่ย์ โนเกยร่าแอสซิสต์/จ่ายบอล?",
    "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_en": "What is the score with the Lineup match reports?",
    "question_th": "คะแนนพร้อมรายงานการแข่งขันผู้เล่นตัวจริงคืออะไร?",
    "context": "CREATE TABLE table_name_5 (score VARCHAR, lineup VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_92 WHERE assist_pass = \"shannon boxx\"",
    "question_en": "On what date is there an assist/pass by Shannon Boxx?",
    "question_th": "แชนนอน บ็อกซ์ จะมีการแอสซิสต์/จ่ายบอลวันไหน?",
    "context": "CREATE TABLE table_name_92 (date VARCHAR, assist_pass VARCHAR)"
  },
  {
    "answer": "SELECT assist_pass FROM table_name_80 WHERE location = \"ferreiras\"",
    "question_en": "Which assist/pass is in Ferreiras?",
    "question_th": "แอสซิสต์/จ่ายบอลใดในเฟอร์ไรรัส?",
    "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_en": "Willy Sagnol with a type as career end had what has the transfer fee?",
    "question_th": "วิลลี่ ซาญอล นักเตะประเภทจบอาชีพ มีค่าตัวในการโอนเท่าไร?",
    "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_en": "Marcell Jansen with a transfer window of summer, and of transfer as type is from what nation?",
    "question_th": "มาร์เซลล์ แจนเซ่น กับตลาดซื้อขายช่วงซัมเมอร์ และประเภทการย้ายทีม มาจากชาติไหน?",
    "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_en": "Marcell Jansen of the nation GER has what for the type?",
    "question_th": "Marcell Jansen แห่งประเทศ GER มีไว้เพื่ออะไร?",
    "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_en": "What player had a transfer window of winter, and free as the transfer fee?",
    "question_th": "นักเตะคนไหนมีหน้าต่างโอนย้ายช่วงหน้าหนาวและฟรีเป็นค่าธรรมเนียมการโอน?",
    "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_en": "Which player from GER has a transfer window of summer, and a transfer fee of n/a?",
    "question_th": "นักเตะคนไหนจาก GER ที่มีหน้าต่างโอนย้ายในช่วงซัมเมอร์ และค่าธรรมเนียมการโอนไม่มี?",
    "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_en": "What's the highest Year Left that's got a Conference Joined of Sagamore with a Year Joined larger than 1942?",
    "question_th": "ปีที่เหลือสูงสุดที่มีการประชุมร่วมกับ Sagamore โดยหนึ่งปีเข้าร่วมมากกว่าปี 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_en": "What's the highest Year Left for the School of Danville?",
    "question_th": "ปีที่เหลือสูงสุดสำหรับ 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_en": "What was lane 4's time?",
    "question_th": "เลน 4 เป็นเวลาเท่าไร?",
    "context": "CREATE TABLE table_name_70 (time VARCHAR, lane VARCHAR)"
  },
  {
    "answer": "SELECT part_number_s_ FROM table_name_56 WHERE l2_cache = \"2 × 256 kb\" AND frequency = \"1.8 ghz\"",
    "question_en": "What's the part number of the processor that has an 1.8 ghz frequency and 2 × 256 kb L@ Cache?",
    "question_th": "หมายเลขชิ้นส่วนของโปรเซสเซอร์ที่มีความถี่ 1.8 ghz และแคช L@ 2 × 256 kb คืออะไร",
    "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_en": "What's the sSpec number of the processor having an ultra-low power I/O?",
    "question_th": "หมายเลข sSpec ของโปรเซสเซอร์ที่มี 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_en": "What the cores with a release date of February 2011 and a BGA-1023 socket?",
    "question_th": "แกนอะไรที่มีวันวางจำหน่ายในเดือนกุมภาพันธ์ 2554 และซ็อกเก็ต BGA-1023?",
    "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_en": "What's the L3 Cache that has a standard power I/O?",
    "question_th": "L3 Cache ที่มี 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_en": "What's the release date of the processor with 2.8 ghz of frequency?",
    "question_th": "โปรเซสเซอร์ความถี่ 2.8 GHz จะวางจำหน่ายเมื่อใด",
    "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_en": "What round was the match at Westpac Stadium that had the Newcastle Jets as the away team?",
    "question_th": "แมตช์ที่สนามเวสต์แพคมีนิวคาสเซิ่ล เจ็ตส์เป็นทีมเยือนรอบไหน?",
    "context": "CREATE TABLE table_name_24 (round VARCHAR, venue VARCHAR, away VARCHAR)"
  },
  {
    "answer": "SELECT weekday FROM table_name_86 WHERE away = \"perth glory\"",
    "question_en": "On what weekday was the match that had Perth Glory as the away team?",
    "question_th": "แมตช์วันไหนที่มี เพิร์ธ กลอรี่ เป็นทีมเยือน?",
    "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_en": "What is the British record for the fish with a Guernsey record of 32-8-0?",
    "question_th": "สถิติของอังกฤษสำหรับปลาที่มีสถิติ Guernsey 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_en": "What year was the Guernsey record of 2-3-12 set?",
    "question_th": "สถิติของเกิร์นซีย์ 2-3-12 เซ็ตปีไหน?",
    "context": "CREATE TABLE table_name_75 (year VARCHAR, guernsey_record VARCHAR)"
  },
  {
    "answer": "SELECT guernsey_record FROM table_name_80 WHERE location = \"bordeaux harbour\"",
    "question_en": "What was the guernsey record set with a fish caught at Bordeaux Harbour?",
    "question_th": "บันทึกเสื้อไหมพรมที่ตั้งไว้กับปลาที่จับได้ที่ท่าเรือบอร์โดซ์คืออะไร",
    "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_en": "When was the film released that a less than 5038 production number and was of the character Bosko?",
    "question_th": "เมื่อใดที่ภาพยนตร์เรื่องนี้ออกฉายด้วยจำนวนการผลิตไม่ถึง 5,038 ชุด และเป็นของตัวละครบอสโก?",
    "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_en": "With 4645 as the production number what was the title?",
    "question_th": "โดยมีหมายเลขการผลิต 4645 ชื่อว่าอะไร?",
    "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_en": "The film titled Bosko's fox hunt had what as the smallest production number?",
    "question_th": "ภาพยนตร์เรื่อง Bosko's Fox Hunt มีการผลิตน้อยที่สุดเรื่องใด",
    "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_en": "What is the smallest production number for the LT series with the Dumb Patrol title?",
    "question_th": "หมายเลขการผลิตที่น้อยที่สุดสำหรับซีรีส์ LT ที่มีชื่อ Dumb Patrol คืออะไร",
    "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élez sársfield\"",
    "question_en": "What was the average capacity for vélez sársfield?",
    "question_th": "ความจุเฉลี่ยของ เบเลซ ซาร์สฟิลด์ คือเท่าไร?",
    "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_en": "What city was the home team Tigre?",
    "question_th": "ไทเกรเจ้าบ้านอยู่เมืองไหน?",
    "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_en": "What province is in Mendoza with a stadium feliciano gambarte?",
    "question_th": "จังหวัดใดในเมนโดซาที่มีสนามกีฬาเฟลิเซียโนกัมบาร์เต?",
    "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_en": "On what date was there a tv time of ABC 8:00pm and after week 9?",
    "question_th": "รายการทีวี ABC เวลา 20.00 น. และหลังจากสัปดาห์ที่ 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_en": "What is total number of years that has genre of first-person shooter?",
    "question_th": "จำนวนปีที่มีประเภทเกมยิงมุมมองบุคคลที่หนึ่งคือเท่าใด",
    "context": "CREATE TABLE table_name_50 (year INTEGER, genre VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_name_36 WHERE genre = \"action-adventure\"",
    "question_en": "Which year is the lowest for genre of action-adventure?",
    "question_th": "ปีใดที่ต่ำที่สุดสำหรับประเภทแอ็คชั่นผจญภัย?",
    "context": "CREATE TABLE table_name_36 (year INTEGER, genre VARCHAR)"
  },
  {
    "answer": "SELECT \"normalised\" AS _transliteration FROM table_name_9 WHERE roman_equivalent = \"i\"",
    "question_en": "what is the \"normalized\" transliteration for Roman i",
    "question_th": "การทับศัพท์ \"ปกติ\" สำหรับ 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_en": "what is the normal environment of occurrence that has a Proto-Germanic origin /ai/",
    "question_th": "สภาพแวดล้อมปกติของการเกิดขึ้นที่มีต้นกำเนิดดั้งเดิม /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_en": "Which the lowest Against has a Status of tour match, and a Venue of ravenhill , belfast?",
    "question_th": "ฝ่ายตรงข้ามที่ต่ำที่สุดมีสถานะการแข่งขันทัวร์นาเมนต์และสถานที่ของ Ravenhill เบลฟัสต์?",
    "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_en": "Name the average Against that has a Venue of twickenham , london on 25 november 1978?",
    "question_th": "ตั้งชื่อค่าเฉลี่ย Against that ที่มีสถานที่จัดงาน Twickenham ลอนดอน เมื่อวันที่ 25 พฤศจิกายน พ.ศ. 2521 หรือไม่?",
    "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_en": "Name the highest Against on 21 november 1978?",
    "question_th": "ทายชื่อสูงสุดกับวันที่ 21 พฤศจิกายน 2521?",
    "context": "CREATE TABLE table_name_30 (against INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT against FROM table_name_31 WHERE venue = \"brewery field , bridgend\"",
    "question_en": "Name the Against of Venue of brewery field , bridgend?",
    "question_th": "ตั้งชื่อต่อต้านสถานที่ของโรงเบียร์ บริดเจนด์?",
    "context": "CREATE TABLE table_name_31 (against VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_98 WHERE against > 15",
    "question_en": "Name the Status with an Against larger than 15?",
    "question_th": "ตั้งชื่อสถานะด้วย Against มากกว่า 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_en": "Who is the home team when the away team is newcastle united?",
    "question_th": "เจ้าบ้านคือใคร เมื่อทีมเยือน นิวคาสเซิ่ล ยูไนเต็ด?",
    "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_en": "who is the home team when the away team is wolverhampton wanderers?",
    "question_th": "เจ้าบ้านใครเป็นเมื่อทีมเยือนคือวูล์ฟแฮมป์ตัน?",
    "context": "CREATE TABLE table_name_20 (home_team VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_46 WHERE tie_no = \"9\"",
    "question_en": "what is the date when the tie no is 9?",
    "question_th": "เลขเสมอกันคือวันที่ 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_en": "who is the away team when the tie no is 7?",
    "question_th": "ทีมเยือนคือใครเมื่อเสมอกันที่ 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_en": "what is the score when the home team is sunderland?",
    "question_th": "เมื่อเจ้าบ้านเจอซันเดอร์แลนด์สกอร์เท่าไหร่?",
    "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_en": "What is the name of the title that was directed by Friz Freleng and has a production number of 443?",
    "question_th": "ชื่อเรื่องที่กำกับโดย Friz Freleng และมีจำนวนการผลิต 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_en": "Which title has a production number of 627?",
    "question_th": "เรื่องใดมีจำนวนการผลิต 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_en": "what is the film when the year is earlier than 2002 and the category is outstanding actress?",
    "question_th": "หนังเรื่องไหนเมื่อต้นปี 2545 และหมวดนักแสดงนำหญิงดีเด่น?",
    "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_en": "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?",
    "question_th": "ละติจูดรวมของเมืองกรีนแลนด์ที่มีพื้นที่มากกว่า 34.846 ตร.ไมล์ รหัสทางภูมิศาสตร์น้อยกว่า 3805529660 และรหัส ANSI มากกว่า 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_en": "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?",
    "question_th": "ผลรวมของพื้นที่ในตารางไมล์ที่มีรหัส ansi น้อยกว่า 1036538, ประชากรในปี 2010 น้อยกว่า 42, ลองจิจูดมากกว่า -99.442872 และปริมาณน้ำมากกว่า 0.882 ตารางไมล์ เป็นเท่าใด",
    "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_en": "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?",
    "question_th": "อะไรคือน้ำที่สูงที่สุด (ตารางไมล์) ของเมืองเกลนิลา ซึ่งมีพื้นที่มากกว่า 33.576 ตารางไมล์ และละติจูดมากกว่า 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_en": "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?",
    "question_th": "ผลรวมของประชากรปี 2010 ที่มีละติจูดมากกว่า 47.710905 ลองจิจูด -101.79876 และพื้นที่น้อยกว่า 35.695 ตารางไมล์ เป็นเท่าใด",
    "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_en": "What is the lowest land in sq mi with a longitude of -99.172785 and less than 0.973 sq mi of water?",
    "question_th": "ที่ดินต่ำสุดในตารางไมล์ที่มีลองจิจูด -99.172785 และน้ำน้อยกว่า 0.973 ตารางไมล์คือเท่าใด",
    "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_en": "Who was the head coach?",
    "question_th": "ใครเป็นหัวหน้าโค้ช?",
    "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_en": "Who has the alma mater of Dayton ('07), and was in their 1st year at CU?",
    "question_th": "ใครมีโรงเรียนเก่าของเดย์ตัน ('07) และอยู่ปี 1 ที่จุฬาฯ บ้าง?",
    "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_en": "What year at CU is the person in video services with an experience less than 1?",
    "question_th": "บุคคลในบริการวิดีโอที่มีประสบการณ์น้อยกว่า 1 ปีใน CU ปีใด",
    "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_en": "The graduate assistant who was in the 1st year at CU has what experience?",
    "question_th": "ผู้ช่วยบัณฑิตที่กำลังศึกษาอยู่ชั้นปีที่ 1 จุฬาฯ มีประสบการณ์อะไรบ้าง?",
    "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_en": "What person has the alma mater of Eastern Nazarene ('74), and greater than 19 experience?",
    "question_th": "บุคคลใดมีโรงเรียนเก่าของนาซารีนตะวันออก ('74) และมีประสบการณ์มากกว่า 19 ปี?",
    "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_en": "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?",
    "question_th": "ความจุเครื่องยนต์รวมของระบบเกียร์ a4 คือเท่าไร โดย MPG-US ในเมืองมากกว่า 19, MPG-US Extra-Urban มากกว่า 38.6 และรุ่น aveo คือเท่าใด",
    "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_en": "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?",
    "question_th": "ความจุเครื่องยนต์สูงสุดสำหรับผู้ผลิต BMW, mpg-us ในเมืองนอกเมืองที่ 52.3, 176 CO 2 กรัม/กม. และ mpg-us ในเมืองมากกว่า 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_en": "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?",
    "question_th": "mpg-uk รวมกับ mpg-uk ในเมือง (เย็น) ที่มากกว่า 26.6, ระบบส่งกำลัง m5, ประเภทเชื้อเพลิงดีเซลและความจุเครื่องยนต์น้อยกว่า 1,560 คืออะไร?",
    "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_en": "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?",
    "question_th": "ลิตร/100 กม. ในเมือง (เย็น) เป็นเท่าใด โดยมี CO 2 กรัม/กม. น้อยกว่า 222, mpg-us ในเมืองมากกว่า 17.8, mpg-uk ในเมืองนอกเมืองที่ 55.4 และความจุเครื่องยนต์มากกว่า 1,560",
    "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_en": "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?",
    "question_th": "รถรุ่นใดที่มีคะแนน ag green มีรถจี๊ปไครสเลอร์เป็นผู้ผลิต วิ่งระยะทางลิตร/100 กม. ในเมือง (เย็น) น้อยกว่า 18 และมีอัตรา mpg-uk รวมกันเป็น 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_en": "what is the league cup apps when the total goals is less than 2 and the total apps is 12?",
    "question_th": "แอพลีกคัพคืออะไรเมื่อประตูรวมน้อยกว่า 2 และรวมแอพคือ 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_en": "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?",
    "question_th": "ประตูเฉลี่ยของกาคัพคือเท่าไรเมื่อแอปลีกคัพคือ 2 แอปเอฟเอคัพคือ 3 และประตูลีกคือ 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_en": "what is the highest fa cup goals when flt goals is more than 0?",
    "question_th": "ประตูเอฟเอคัพสูงสุดเมื่อเอฟเอฟประตูมากกว่า 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_en": "what is the total apps when the league apps is 4 (2)?",
    "question_th": "เมื่อแอปลีกเป็น 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_en": "How much Silver has a Total larger than 9, and a Gold of 14?",
    "question_th": "เงินจำนวนเท่าใดที่มีผลรวมมากกว่า 9 และทอง 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_en": "Which Rank has a Total larger than 9, and a Gold larger than 6?",
    "question_th": "อันดับใดมีคะแนนรวมมากกว่า 9 และทองมากกว่า 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_en": "How much Silver has a Rank of 4, and a Bronze smaller than 12?",
    "question_th": "เงินเท่าไหร่มีอันดับ 4 และเหรียญทองแดงน้อยกว่า 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_en": "How many bronzes have a Total of 9?",
    "question_th": "มีเหรียญทองแดงทั้งหมดกี่เหรียญถึง 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_en": "How much Gold has a Nation of mongolia, and a Total larger than 18?",
    "question_th": "ประเทศมองโกเลียมีทองคำเท่าใด และยอดรวมมากกว่า 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_en": "What is the Lok Sabha for Dravida Munnetra Kazhagam, in 1999-04?",
    "question_th": "Lok Sabha สำหรับ Dravida Munnetra Kazhagam ในปี 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_en": "What is the duration when Lok Sabha shows fifth?",
    "question_th": "โลกสภาแสดงรอบที่ 5 นานแค่ไหน?",
    "context": "CREATE TABLE table_name_86 (duration VARCHAR, lok_sabha VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_50 WHERE date = \"december 20, 1970\"",
    "question_en": "What was the result for the game played on December 20, 1970?",
    "question_th": "ผลการแข่งขันที่เล่นในวันที่ 20 ธันวาคม พ.ศ. 2513 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_50 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_50 WHERE week = 2",
    "question_en": "What was the result for week 2?",
    "question_th": "สัปดาห์ที่ 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_en": "What is the rank of the athletes that have Notes of fb, and a Time of 6:47.30?",
    "question_th": "นักกีฬาที่มี Notes ของ fb อยู่ในอันดับที่เท่าไหร่ และเวลา 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_en": "What is the least rank for athletes with a time of 6:36.65?",
    "question_th": "นักกีฬาอันดับน้อยที่สุดด้วยเวลา 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_en": "What is the average react for a rank more than 8?",
    "question_th": "ปฏิกิริยาเฉลี่ยสำหรับอันดับมากกว่า 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_en": "What is the highest rank for the react of 0.198, and the time more than 20.42?",
    "question_th": "อันดับสูงสุดสำหรับปฏิกิริยา 0.198 และเวลาที่มากกว่า 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_en": "What is the sum of time with a lane larger than 6, a nationality of canada, and the react smaller than 0.151?",
    "question_th": "ผลรวมของเวลาที่มีเลนใหญ่กว่า 6, สัญชาติแคนาดา และการตอบสนองน้อยกว่า 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_en": "What human gene has a yeast ortholog of RAD26?",
    "question_th": "ยีนใดของมนุษย์มีออร์โธโลจีของยีสต์เท่ากับ 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_en": "What is the human gene that has a mouse ortholog of LIG1?",
    "question_th": "ยีนของมนุษย์ที่มีออโธโลจีของเมาส์ของ 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_en": "What is the yeast ortholog that has a subpathway of GGR and GeneCards entry CETN2?",
    "question_th": "ortholog ของยีสต์ที่มีเส้นทางย่อยของรายการ GGR และ GeneCards 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_en": "What is the yeast ortholog of mouse ortholog MMS19?",
    "question_th": "ortholog ของยีสต์ของ 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_en": "What is the Tournament against Vladimir Zednik?",
    "question_th": "การแข่งขันกับ Vladimir Zednik คืออะไร?",
    "context": "CREATE TABLE table_name_67 (tournament VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_95 WHERE score = \"4–6, 6–7, 3–6\"",
    "question_en": "What Tournament had a Score of 4–6, 6–7, 3–6?",
    "question_th": "ทัวร์นาเมนต์ใดมีคะแนน 4–6, 6–7, 3–6",
    "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_en": "What is the Score of the of the Tournament against Tim Gullikson with Outcome of runner-up?",
    "question_th": "คะแนนของการแข่งขันกับทิม กุลลิคสันและผลการแข่งขันคือเท่าไร?",
    "context": "CREATE TABLE table_name_68 (score VARCHAR, outcome VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT doha_, _qatar FROM table_name_17 WHERE snatch = \"total\"",
    "question_en": "What is the Doha, Qatar when the snatch is total?",
    "question_th": "โดฮา กาตาร์ คืออะไร เมื่อฉกได้หมด?",
    "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_en": "What is the Doha, Qatar when the snatch is clean & jerk?",
    "question_th": "โดฮา, กาตาร์คืออะไรเมื่อฉกสะอาดและกระตุก?",
    "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_en": "How many Points have a Name of stephen myler, and Tries smaller than 0?",
    "question_th": "ชื่อของ Stephen Myler มีกี่คะแนน และพยายามน้อยกว่า 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_en": "What is the pick number for New Mexico?",
    "question_th": "หมายเลขเลือกสำหรับนิวเม็กซิโกคืออะไร?",
    "context": "CREATE TABLE table_name_34 (pick INTEGER, college VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_43 WHERE team = \"denver broncos\"",
    "question_en": "What player is from the Denver Broncos?",
    "question_th": "นักเตะคนไหนจากเดนเวอร์ บรองโกส์?",
    "context": "CREATE TABLE table_name_43 (player VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_38 WHERE team = \"new york jets\"",
    "question_en": "Which college has their team as the New York Jets?",
    "question_th": "วิทยาลัยใดมีทีมเป็น 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_en": "What is the Constituency Number of Total:?",
    "question_th": "จำนวนการเลือกตั้งทั้งหมดคืออะไร:?",
    "context": "CREATE TABLE table_name_73 (constituency_number VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_name_43 WHERE constituency_number = \"22\"",
    "question_en": "Which District is Constituency number 22?",
    "question_th": "เขตเลือกตั้งหมายเลข 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_en": "What is the lowest number of Electorates (2003) in District bhind, Reserved for none, and Constituency Number 11?",
    "question_th": "จำนวนผู้มีสิทธิเลือกตั้งต่ำสุด (พ.ศ. 2546) ในเขต bhind, สงวนไว้สำหรับไม่มี และเขตเลือกตั้งหมายเลข 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_en": "What school/club had pick 33?",
    "question_th": "โรงเรียน/สโมสรไหนเลือก 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_en": "What attendance has October 16, 2005 as the date?",
    "question_th": "วันที่ 16 ตุลาคม พ.ศ. 2548 มีผู้เข้าร่วมเท่าใด",
    "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_en": "What result has a week less than 16, and October 31, 2005 as the date?",
    "question_th": "ผลลัพธ์ใดมีสัปดาห์น้อยกว่า 16 และวันที่ 31 ตุลาคม 2548 เป็นวันที่",
    "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_en": "Which Year has a Manager of bobby dews, and Playoffs of lost in 1st round?",
    "question_th": "ปีไหนมีผู้จัดการทีม Bobby Dews และ Playoffs ที่แพ้ในรอบแรก?",
    "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_en": "How many years have a Record of 73-65?",
    "question_th": "มีสถิติ 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_en": "Which Record has a Year larger than 1974, and a Finish of 3rd?",
    "question_th": "บันทึกใดที่มีปีที่ใหญ่กว่าปี 1974 และจบอันดับที่ 3?",
    "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_en": "Which Song of the Year was 42 on the UK charts prior to 1994?",
    "question_th": "เพลงไหนแห่งปีที่ติดอันดับ 42 ในชาร์ตสหราชอาณาจักรก่อนปี 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_en": "Where did Scott Fitzgerald rank on the UK charts?",
    "question_th": "Scott Fitzgerald อยู่อันดับไหนในชาร์ตเพลงของสหราชอาณาจักร?",
    "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_en": "Where did the song by Michael Ball, which placed 2nd in Eurovision prior to 1961, place on the UK charts?",
    "question_th": "เพลงของ Michael Ball ซึ่งติดอันดับ 2 ใน Eurovision ก่อนปี 1961 ติดอันดับชาร์ตของสหราชอาณาจักรที่ไหน",
    "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_en": "What is the 3rd day result for years under 2012 and a finish position of 33rd?",
    "question_th": "ผลลัพธ์วันที่ 3 สำหรับปีต่ำกว่าปี 2555 และอันดับที่ 33 คืออะไร?",
    "context": "CREATE TABLE table_name_65 (year VARCHAR, finish_position VARCHAR)"
  },
  {
    "answer": "SELECT origin FROM table_name_57 WHERE in_service = 1",
    "question_en": "For the vessel with a listed In service of 1, what is the origin given?",
    "question_th": "สำหรับเรือที่มีรายการให้บริการ 1 ลำ ให้กำเนิดมาจากอะไร?",
    "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_en": "What is the lowest listed In service for a vessel of xavery czernicki class?",
    "question_th": "รายการต่ำสุดที่ให้บริการสำหรับเรือประเภท xavery czernicki คืออะไร?",
    "context": "CREATE TABLE table_name_71 (in_service INTEGER, vessel VARCHAR)"
  },
  {
    "answer": "SELECT vessel FROM table_name_72 WHERE type = \"logistic support\"",
    "question_en": "Which vessel has a type of logistic support?",
    "question_th": "เรือลำใดมีประเภทของการสนับสนุนด้านลอจิสติกส์?",
    "context": "CREATE TABLE table_name_72 (vessel VARCHAR, type VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_77 WHERE vessel = \"lublin class\"",
    "question_en": "What is the type for a vessel of lublin class?",
    "question_th": "เรือประเภท lublin เป็นประเภทใด?",
    "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_en": "What is the highest In service for a vessel with a listed Unit of 12th minesweeper squadron?",
    "question_th": "เรือที่มีหน่วยกวาดทุ่นระเบิดที่ 12 ประจำการสูงสุดคืออะไร",
    "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_en": "What is the type for a vessel with a listed unit of naval base swinoujscie (auxiliary squadron)?",
    "question_th": "เรือที่มีหน่วยฐานทัพเรือ swinoujscie (ฝูงบินเสริม) เป็นประเภทใด?",
    "context": "CREATE TABLE table_name_49 (type VARCHAR, unit VARCHAR)"
  },
  {
    "answer": "SELECT rider FROM table_name_44 WHERE team = \"600cc yamaha\"",
    "question_en": "Which rider was on the 600cc Yamaha team?",
    "question_th": "นักบิดคนไหนที่อยู่ในทีม Yamaha 600cc?",
    "context": "CREATE TABLE table_name_44 (rider VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT speed FROM table_name_55 WHERE rider = \"john hildreth\"",
    "question_en": "What was John Hildreth's speed?",
    "question_th": "ความเร็วของ John Hildreth คืออะไร?",
    "context": "CREATE TABLE table_name_55 (speed VARCHAR, rider VARCHAR)"
  },
  {
    "answer": "SELECT AVG(draw) FROM table_name_29 WHERE time = \"22:29\"",
    "question_en": "What is the average draw number of an entrant with a time of 22:29?",
    "question_th": "เลขเด็ดเฉลี่ยของผู้เข้าแข่งขันด้วยเวลา 22:29 คือเท่าไร?",
    "context": "CREATE TABLE table_name_29 (draw INTEGER, time VARCHAR)"
  },
  {
    "answer": "SELECT brand FROM table_name_28 WHERE entrant = \"mark henry\"",
    "question_en": "What is Mark Henry's brand?",
    "question_th": "แบรนด์ของ Mark Henry คืออะไร?",
    "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_en": "Who is the Author/Editor/Source for more than 100 countries sampled and has a 35 world ranking?",
    "question_th": "ใครคือผู้แต่ง/บรรณาธิการ/แหล่งข้อมูลจากตัวอย่างมากกว่า 100 ประเทศและมีอันดับโลกอยู่ในอันดับที่ 35",
    "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_en": "How many countries sampled has a world ranking of 33 in 2010 and less than 3 ranking in Latin America?",
    "question_th": "มีกี่ประเทศในกลุ่มตัวอย่างที่มีอันดับโลกอยู่ที่ 33 ในปี 2010 และน้อยกว่า 3 อันดับในละตินอเมริกา",
    "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_en": "What's the world ranking in 2011 having more than 142 countries sampled, and more than a 3 for ranking in Latin America?",
    "question_th": "อันดับโลกในปี 2554 จากการสุ่มตัวอย่างมากกว่า 142 ประเทศคืออะไร และมากกว่า 3 ประเทศสำหรับการจัดอันดับในละตินอเมริกา",
    "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_en": "What home team has a tie no of 20?",
    "question_th": "ทีมเจ้าบ้านใดเสมอกันที่ 20?",
    "context": "CREATE TABLE table_name_44 (home_team VARCHAR, tie_no VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_96 WHERE score = \"3–3\" AND away_team = \"barnet\"",
    "question_en": "What date was the score 3–3, and away team was Barnet?",
    "question_th": "สกอร์ 3–3 คือวันไหน และทีมเยือนคือบาร์เน็ต?",
    "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_en": "What is the Tie no when Wimbledon is the home team?",
    "question_th": "Tie no คืออะไรเมื่อวิมเบิลดันเป็นเจ้าบ้าน?",
    "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_en": "What is the score when the Tie no is replay, and the away team is York City?",
    "question_th": "สกอร์เสมอกัน รีเพลย์ ทีมเยือน ยอร์ค ซิตี้ เป็นอย่างไร?",
    "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_en": "What is the Tie no when Chester is the away team?",
    "question_th": "Tie no คืออะไรเมื่อเชสเตอร์เป็นทีมเยือน?",
    "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_en": "What is the broadcast date of the episode with 9.65 million viewers?",
    "question_th": "มีผู้ชม 9.65 ล้านคน ออกอากาศวันไหน?",
    "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_en": "What is the lowest viewership in millions of the episode broadcast on 7 September 2001?",
    "question_th": "จำนวนผู้ชมต่ำสุดในล้านตอนที่ออกอากาศเมื่อวันที่ 7 กันยายน พ.ศ. 2544 คือเท่าใด",
    "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_en": "What is the episode number of the episode broadcast on 21 September 2001?",
    "question_th": "ตอนที่ออกอากาศเมื่อวันที่ 21 กันยายน พ.ศ. 2544 มีจำนวนตอนเท่าใด",
    "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_en": "How many times is the points 8 and the place larger than 8?",
    "question_th": "แต้ม 8 และสถานที่ใหญ่กว่า 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_en": "what is the average draw when the place is 5 and points more than 15?",
    "question_th": "ค่าเฉลี่ยเสมอกันเมื่ออันดับ 5 และแต้มมากกว่า 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_en": "what is the highest draw when points is less than 11 and language is norwegian?",
    "question_th": "การจับรางวัลสูงสุดเมื่อคะแนนน้อยกว่า 11 และภาษานอร์เวย์คืออะไร?",
    "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_en": "What is the total number of picks from the PBA team of purefoods tender juicy hotdogs?",
    "question_th": "จำนวนตัวเลือกทั้งหมดจากทีม PBA ของฮอทด็อกเนื้อนุ่ม Purefoods คือเท่าใด",
    "context": "CREATE TABLE table_name_62 (pick VARCHAR, pba_team VARCHAR)"
  },
  {
    "answer": "SELECT pba_team FROM table_name_50 WHERE college = \"santo tomas\"",
    "question_en": "What is the pba team for the player who went to santo tomas college?",
    "question_th": "ทีม pba สำหรับผู้เล่นที่ไปเรียนที่วิทยาลัย santo tomas คืออะไร?",
    "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_en": "What is the PBA team for roberto jabar who was picked before number 11?",
    "question_th": "ทีม PBA ของ Roberto Jabar ที่ถูกเลือกก่อนหมายเลข 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_en": "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?",
    "question_th": "ภาษาใดที่พูดมากที่สุดในสถานที่ที่มีรหัส 70403 โดยมีพื้นที่ (กม. 2) มากกว่า 3.79 และประชากรมากกว่า 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_en": "What is the Population of the Place with an Area (km 2) larger than 498.77?",
    "question_th": "ประชากรในสถานที่ที่มีพื้นที่ (กม. 2) มากกว่า 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_en": "What is the Population of Tshepiso with a Code of 70409 or smaller and an Area (km 2) smaller than 5.97?",
    "question_th": "ประชากร Tshepiso ที่มีรหัส 70409 หรือน้อยกว่าคืออะไร และพื้นที่ (กม. 2) เล็กกว่า 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_en": "What the time of Paul Hession with more than an 0.187 react?",
    "question_th": "เวลาของ Paul Hession ที่มีปฏิกิริยามากกว่า 0.187 คืออะไร?",
    "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_en": "What's the lane number when time was 20.45 and the react was less than 0.164?",
    "question_th": "หมายเลขเลนเมื่อเวลา 20.45 และการตอบสนองน้อยกว่า 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_en": "what is 1958 when 1957 is 2 and 1956 is 3?",
    "question_th": "1958 คืออะไร เมื่อ 1957 เป็น 2 และ 1956 เป็น 3",
    "context": "CREATE TABLE table_name_67 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 1955 FROM table_name_78 WHERE 1961 = \"n/a\"",
    "question_en": "what is 1955 when 1961 is n/a?",
    "question_th": "1955 คืออะไร เมื่อ 1961 ไม่มี?",
    "context": "CREATE TABLE table_name_78 (Id VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_80 WHERE tie_no = \"7\"",
    "question_en": "What date has 7 as the tie no.?",
    "question_th": "วันที่ใดที่เลข 7 เสมอกัน?",
    "context": "CREATE TABLE table_name_80 (date VARCHAR, tie_no VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_87 WHERE venue = \"beijing\"",
    "question_en": "Which year was held in beijing?",
    "question_th": "ปักกิ่งจัดปีไหนคะ?",
    "context": "CREATE TABLE table_name_87 (year VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_name_88 WHERE venue = \"eindhoven\"",
    "question_en": "How many years had a Venue of eindhoven?",
    "question_th": "สถานที่จัดงานของไอนด์โฮเฟนมีกี่ปี?",
    "context": "CREATE TABLE table_name_88 (year VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_92 WHERE venue = \"manchester\" AND year = 2009",
    "question_en": "Which Competition has a Venue of manchester in 2009?",
    "question_th": "การแข่งขันใดมีสถานที่ของแมนเชสเตอร์ในปี 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_en": "Which Year has a Position of 2nd, and Notes of -63kg, and a Venue of manchester?",
    "question_th": "ปีใดมีตำแหน่งที่ 2 และหมายเหตุ -63 กิโลกรัม และสถานที่จัดงานของแมนเชสเตอร์",
    "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ín\"",
    "question_en": "Name the the Best of rodolfo lavín",
    "question_th": "ตั้งชื่อสิ่งที่ดีที่สุดของ rodolfo lavín",
    "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_en": "Name the Qual 2 of a Team of american spirit team johansson and a Best of 59.073?",
    "question_th": "ตั้งชื่อทีม Qual 2 ของทีม American Spirit Team Johansson และ 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_en": "Name the Best which has a Qual 2 of 58.700?",
    "question_th": "ตั้งชื่อสิ่งที่ดีที่สุดซึ่งมี Qual 2 ที่ 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_en": "Which Qual 1 has a Qual 2 of 58.861?",
    "question_th": "Qual 1 ใดมี Qual 2 เท่ากับ 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_en": "Which Qual 1 has a Qual 2 of 59.822?",
    "question_th": "Qual 1 ใดมี Qual 2 เท่ากับ 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_en": "Which Qual 1 has a Team of team player's, and a Best of 58.405?",
    "question_th": "Qual 1 ใดที่มีทีมผู้เล่นเป็นทีม และ 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_en": "what is the height (m) when the nation is sweden (swe) and the weight (kg) is 102?",
    "question_th": "ส่วนสูง (m) คือเท่าไร ประเทศสวีเดน (swe) และน้ำหนัก (กก.) คือ 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_en": "what is the nation when the world rank is 2 and the birth date is 1976-12-20?",
    "question_th": "เมื่ออันดับโลกอยู่ที่ 2 และวันเกิดคือ 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_en": "what is the nation when the world rank is 6 and the birth date is 1971-07-31?",
    "question_th": "เมื่ออันดับโลกอยู่ที่ 6 และวันเกิดคือ 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_en": "what is the birth date when the weight (kg) is 100 and the world rank is 2?",
    "question_th": "วันเกิดคือวันที่น้ำหนัก (กก.) คือ 100 และอันดับโลกคือ 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_en": "what is the nation when the height (m) is 1.91 and the weight (kg) is 99?",
    "question_th": "ชาติคืออะไรเมื่อส่วนสูง (ม.) คือ 1.91 และน้ำหนัก (กก.) คือ 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_en": "what is the height (m) when the birth date is 1968-07-01?",
    "question_th": "ส่วนสูง (ม.) เมื่อวันเกิดคือ 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_en": "What is the nationality of the athlete with a time of 2:12.56?",
    "question_th": "นักกีฬาสัญชาติอะไร ทำเวลา 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_en": "What time did Sara Nordenstam get?",
    "question_th": "Sara Nordenstam ไปถึงกี่โมง?",
    "context": "CREATE TABLE table_name_40 (time VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_52 WHERE name = \"jessica pengelly\"",
    "question_en": "What nationality is Jessica Pengelly?",
    "question_th": "เจสสิก้า เพนเกลลีมีสัญชาติอะไร",
    "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_en": "What league apps with 1 flt apps, 0 goals, and more than 1 league goals?",
    "question_th": "แอพลีกใดที่มีแอพ 1 flt, 0 ประตูและมากกว่า 1 ประตูในลีก?",
    "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_en": "What is the total number of league goals for Simon Charlton?",
    "question_th": "จำนวนประตูในลีกทั้งหมดของไซมอน ชาร์ลตันคือเท่าไร?",
    "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_en": "What was the place when the score was 65-70-72=207?",
    "question_th": "คะแนน 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_en": "What was the score for place 4?",
    "question_th": "อันดับ 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_en": "Who scored 67-73-70=210?",
    "question_th": "ใครทำคะแนนได้ 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_en": "What is the lowest poles that have 0 as a win, 0 as the top 5, with 66th as the postion?",
    "question_th": "ขั้วต่ำสุดที่มี 0 เป็นผู้ชนะ 0 เป็น 5 อันดับแรก โดยมีอันดับที่ 66 เป็นตำแหน่งคืออะไร?",
    "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_en": "Who was the music director in 1971 for the movie Kalyani?",
    "question_th": "ใครคือผู้กำกับเพลงสำหรับภาพยนตร์เรื่อง Kalyani ในปี 1971?",
    "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_en": "Which county has a median family income of $50,227?",
    "question_th": "เคาน์ตีใดมีรายได้เฉลี่ยของครอบครัวอยู่ที่ $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_en": "What is the tournament when 2010 is not held?",
    "question_th": "การแข่งขันคืออะไรเมื่อปี 2010 ไม่ได้จัดขึ้น?",
    "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_en": "What shows for 2009 when 2008 is A, 2012 is 1r, 2010 is q2, and 2011 is 2r?",
    "question_th": "อะไรแสดงให้เห็นในปี 2009 เมื่อปี 2008 คือ A, 2012 คือ 1r, 2010 คือ q2 และ 2011 คือ 2r",
    "context": "CREATE TABLE table_name_98 (Id VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_93 WHERE 2010 = \"q2\" AND 2009 = \"1r\"",
    "question_en": "What is the tournament when 2010 is q2, and 2009 is 1r?",
    "question_th": "การแข่งขันจะเป็นอย่างไรเมื่อปี 2010 คือไตรมาส 2 และปี 2009 คือ 1r?",
    "context": "CREATE TABLE table_name_93 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_26 WHERE 2007 = \"wta premier 5 tournaments\"",
    "question_en": "What is the tournament when 2007 is WTA Premier 5 tournaments?",
    "question_th": "การแข่งขันจะเป็นอย่างไรเมื่อปี 2550 เป็นทัวร์นาเมนต์ WTA Premier 5?",
    "context": "CREATE TABLE table_name_26 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_64 WHERE 2012 = \"q2\"",
    "question_en": "What is the tournament when 2012 is q2?",
    "question_th": "การแข่งขันคืออะไรเมื่อไตรมาส 2 ปี 2012?",
    "context": "CREATE TABLE table_name_64 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2008 FROM table_name_2 WHERE 2010 = \"138\"",
    "question_en": "What shows for 2008 when 2010 is 138?",
    "question_th": "อะไรแสดงให้เห็นในปี 2008 เมื่อ 2010 เป็น 138?",
    "context": "CREATE TABLE table_name_2 (Id VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_55 WHERE time = \"7:03.91\"",
    "question_en": "Which country timed at 7:03.91?",
    "question_th": "ประเทศใดเวลา 7:03.91 น.?",
    "context": "CREATE TABLE table_name_55 (country VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_87 WHERE country = \"denmark\"",
    "question_en": "What did Denmark time at?",
    "question_th": "เดนมาร์กกี่โมง?",
    "context": "CREATE TABLE table_name_87 (time VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT internet_explorer FROM table_name_47 WHERE firefox = \"24.98%\"",
    "question_en": "What was the internet explorer % when firefox was 24.98%?",
    "question_th": "Internet Explorer % เป็นเท่าใดเมื่อ Firefox อยู่ที่ 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_en": "What was the percentage of firefox was chrome was 23.90%",
    "question_th": "เปอร์เซ็นต์ของ Firefox ที่เป็น Chrome คือ 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_en": "What was the percentage of safari when internet explorer was 20.27%?",
    "question_th": "เปอร์เซ็นต์ของซาฟารีเมื่อ Internet Explorer อยู่ที่ 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_en": "What was the firefox % was chrome was 25.08%?",
    "question_th": "Firefox % คือ Chrome เท่าไหร่ 25.08%?",
    "context": "CREATE TABLE table_name_86 (firefox VARCHAR, chrome VARCHAR)"
  },
  {
    "answer": "SELECT safari FROM table_name_10 WHERE firefox = \"24.66%\"",
    "question_en": "What was the percentage of safari when firefox was 24.66%",
    "question_th": "เปอร์เซ็นต์ของซาฟารีเมื่อ Firefox อยู่ที่ 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_en": "Which label released on February 18, 2009?",
    "question_th": "ป้ายกำกับใดที่ออกเมื่อวันที่ 18 กุมภาพันธ์ พ.ศ. 2552",
    "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_en": "When did Avex Entertainment release a CD?",
    "question_th": "Avex Entertainment ออกซีดีเมื่อไหร่?",
    "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_en": "When did Hollywood Records release a digital download?",
    "question_th": "Hollywood Records เผยแพร่การดาวน์โหลดแบบดิจิทัลเมื่อใด",
    "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_en": "What kind of edition was released September 23, 2008 from the United States?",
    "question_th": "ฉบับประเภทใดที่เผยแพร่เมื่อวันที่ 23 กันยายน พ.ศ. 2551 จากประเทศสหรัฐอเมริกา",
    "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_en": "What format was released April 16, 2009?",
    "question_th": "รูปแบบใดที่เผยแพร่เมื่อวันที่ 16 เมษายน 2552",
    "context": "CREATE TABLE table_name_55 (format VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT call_sign FROM table_name_6 WHERE branding = \"1062 dxki koronadal\"",
    "question_en": "What's the call sign if the branding is 1062 DXKI Koronadal?",
    "question_th": "อะไรคือสัญญาณเรียกหากแบรนด์คือ 1,062 DXKI Koronadal?",
    "context": "CREATE TABLE table_name_6 (call_sign VARCHAR, branding VARCHAR)"
  },
  {
    "answer": "SELECT branding FROM table_name_5 WHERE frequency = \"1233khz\"",
    "question_en": "What's the branding for frequency 1233khz?",
    "question_th": "แบรนด์สำหรับความถี่ 1233khz คืออะไร?",
    "context": "CREATE TABLE table_name_5 (branding VARCHAR, frequency VARCHAR)"
  },
  {
    "answer": "SELECT call_sign FROM table_name_17 WHERE power__kw_ = \"20kw\"",
    "question_en": "What's the call sign that has 20kw of power?",
    "question_th": "สัญญาณเรียกขานที่มีกำลัง 20kw คืออะไร?",
    "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_en": "What's the location when the branding is 1116 DXAS Zamboanga?",
    "question_th": "ที่ตั้งของแบรนด์คือ 1116 DXAS Zamboanga อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_89 (location VARCHAR, branding VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_22 WHERE frequency = \"1197khz\"",
    "question_en": "What's the location of the 1197khz frequency?",
    "question_th": "ความถี่ 1197khz อยู่ที่ไหน?",
    "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_en": "What's the frequency of the call sign DYFR with 10KW of power?",
    "question_th": "ความถี่ของสัญญาณเรียกขาน DYFR พร้อมกำลัง 10KW คือเท่าไร?",
    "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_en": "What is Hungary's highest Rank?",
    "question_th": "อันดับสูงสุดของฮังการีคืออะไร?",
    "context": "CREATE TABLE table_name_38 (rank INTEGER, country VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_name_31 WHERE rank = 4",
    "question_en": "What is the Notes of the Country with a Rank of 4?",
    "question_th": "หมายเหตุของประเทศที่มีอันดับ 4 คืออะไร?",
    "context": "CREATE TABLE table_name_31 (notes VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_14 WHERE time = \"6:14.84\"",
    "question_en": "What country had a Time of 6:14.84?",
    "question_th": "ประเทศใดมีเวลา 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_en": "Which Nationality has a Lane of 5, and a Time of 7:08.04?",
    "question_th": "สัญชาติใดมีเลน 5 และเวลา 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_en": "Which Heat has a Rank of 8?",
    "question_th": "ฮีตใดมีอันดับ 8?",
    "context": "CREATE TABLE table_name_16 (heat INTEGER, rank VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_88 WHERE finals = \"out of playoffs.\"",
    "question_en": "Which Season has Finals of out of playoffs.?",
    "question_th": "ฤดูกาลใดมีรอบชิงชนะเลิศจากรอบตัดเชือก?",
    "context": "CREATE TABLE table_name_88 (season VARCHAR, finals VARCHAR)"
  },
  {
    "answer": "SELECT assist_pass FROM table_name_22 WHERE location = \"albufeira\"",
    "question_en": "What's Albufeira's assist/pass?",
    "question_th": "แอสซิสต์/จ่ายบอลของอัลบูเฟราคืออะไร?",
    "context": "CREATE TABLE table_name_22 (assist_pass VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT lineup FROM table_name_42 WHERE assist_pass = \"unassisted\"",
    "question_en": "What's the lineup when the assist/pass was Unassisted?",
    "question_th": "รายชื่อผู้เล่นตัวจริงเมื่อแอสซิสต์/ส่งบอลไม่ได้รับการช่วยเหลือคืออะไร?",
    "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_en": "What date was the result 3-1 in Hague?",
    "question_th": "ผล 3-1 ที่กรุงเฮกคือวันไหน?",
    "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_en": "what is the total when the rank is total and the silver is less than 10?",
    "question_th": "ยอดรวมเมื่ออันดับรวมและเงินน้อยกว่า 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_en": "what is the least silver when gold is 0?",
    "question_th": "เงินน้อยที่สุดคืออะไรเมื่อทองคำเป็น 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_en": "what is the total silver when total is 30 and bronze is more than 10?",
    "question_th": "เงินทั้งหมดเมื่อรวมเป็น 30 และทองแดงมากกว่า 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_en": "what is the total when bronze is more than 1, nation is hong kong (hkg) and gold is less than 3?",
    "question_th": "เมื่อทองแดงมากกว่า 1 ชาติคือฮ่องกง (hkg) และทองคำน้อยกว่า 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_en": "The driver in class A with 125 laps is in what position?",
    "question_th": "นักแข่งคลาส A วิ่งได้ 125 รอบ อยู่ในตำแหน่งใด",
    "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_en": "Peter Hopwood has how many laps in all?",
    "question_th": "Peter Hopwood มีทั้งหมดกี่รอบ?",
    "context": "CREATE TABLE table_name_53 (laps VARCHAR, entrant VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_name_65 WHERE laps = 66",
    "question_en": "For what class is the laps 66?",
    "question_th": "รอบ 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_en": "What is the number of matches with an average larger than 6.33, with a rank of 1?",
    "question_th": "ค่าเฉลี่ยมากกว่า 6.33 มีอันดับ 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_en": "What is the total when matches is less than 3, and rank is smaller than 2?",
    "question_th": "ผลรวมเมื่อการแข่งขันน้อยกว่า 3 และอันดับน้อยกว่า 2 เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_41 (total INTEGER, matches VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(average) FROM table_name_27 WHERE tally = \"3–11\" AND matches > 4",
    "question_en": "What is the average when the tally is 3–11, with more than 4 matches??",
    "question_th": "ค่าเฉลี่ยคือเท่าไหร่เมื่อนับรวมเป็น 3–11 โดยมีมากกว่า 4 นัด??",
    "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_en": "What rank has an average of 6.33?",
    "question_th": "อันดับไหนมีค่าเฉลี่ย 6.33?",
    "context": "CREATE TABLE table_name_23 (rank INTEGER, average VARCHAR)"
  },
  {
    "answer": "SELECT AVG(laps) FROM table_name_6 WHERE pos = \"dnf\"",
    "question_en": "What is the average number of laps with a dnf pos.?",
    "question_th": "จำนวนรอบเฉลี่ยที่มีตำแหน่ง dnf คือเท่าใด?",
    "context": "CREATE TABLE table_name_6 (laps INTEGER, pos VARCHAR)"
  },
  {
    "answer": "SELECT MIN(rank) FROM table_name_77 WHERE country = \"guam\"",
    "question_en": "What is the lowest Rank for a Guam Player?",
    "question_th": "อันดับต่ำสุดสำหรับผู้เล่นกวมคืออะไร?",
    "context": "CREATE TABLE table_name_77 (rank INTEGER, country VARCHAR)"
  },
  {
    "answer": "SELECT AVG(rank) FROM table_name_83 WHERE country = \"guam\"",
    "question_en": "What is the Rank of the Guam Player?",
    "question_th": "อันดับของผู้เล่นกวมคืออะไร?",
    "context": "CREATE TABLE table_name_83 (rank INTEGER, country VARCHAR)"
  },
  {
    "answer": "SELECT MAX(week) FROM table_name_8 WHERE result = \"l 20–13\" AND attendance > 49 OFFSET 598",
    "question_en": "Which Week has a Result of l 20–13, and an Attendance larger than 49,598?",
    "question_th": "สัปดาห์ใดมีผลลัพธ์เป็น l 20–13 และมีผู้เข้าร่วมมากกว่า 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_en": "How many weeks have an Opponent of at san francisco 49ers, and an Attendance smaller than 34,354?",
    "question_th": "ฝ่ายตรงข้ามของ San Francisco 49ers มีกี่สัปดาห์และมีผู้เข้าร่วมน้อยกว่า 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_en": "Which Result has an Opponent of washington redskins?",
    "question_th": "ผลลัพธ์ใดมีฝ่ายตรงข้ามของวอชิงตันอินเดียนแดง?",
    "context": "CREATE TABLE table_name_3 (result VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT SUM(week) FROM table_name_78 WHERE opponent = \"dallas cowboys\"",
    "question_en": "What week did the dallas cowboys play?",
    "question_th": "Dallas Cowboys เล่นสัปดาห์ไหน?",
    "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_en": "Name the average React of the Time smaller than 20.05 in jamaica with a Lane larger than 5?",
    "question_th": "ตั้งชื่อ React of the Time โดยเฉลี่ยที่เล็กกว่า 20.05 ในจาเมกาด้วย Lane ที่ใหญ่กว่า 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_en": "Which Fencing Victories (pts) has a Shooting Score (pts) of 187 (1180) and a Total smaller than 5640? Question 1",
    "question_th": "ชัยชนะในการฟันดาบ (pts) ใดมีคะแนนการยิง (pts) 187 (1180) และผลรวมน้อยกว่า 5640 คำถามที่ 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_en": "Which Equestrian Time (pts) has an Athlete of omnia fakhry ( egy )?",
    "question_th": "Equestrian Time (pts) ใดที่มีนักกีฬาของ 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_en": "Which Shooting Score (pts) has a Total larger than 5464 and a Athlete of heather fell ( gbr )?",
    "question_th": "คะแนนการยิง (pts) ใดที่มีคะแนนรวมมากกว่า 5464 และนักกีฬาเฮเทอร์ล้มลง ( 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_en": "Which Fencing Victories (pts) that has a Equestrian Time (pts) of 67.88 (1144)?",
    "question_th": "ชัยชนะในการฟันดาบครั้งใด (pts) ที่มีเวลาการขี่ม้า (pts) 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_en": "Which Fencing Victories (pts) has a Total of 5640?",
    "question_th": "ชัยชนะในการฟันดาบใด (pts) มีทั้งหมด 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_en": "What position did the player from Rice College play who was picked under 15?",
    "question_th": "ผู้เล่นจากวิทยาลัยไรซ์เล่นตำแหน่งใดซึ่งถูกเลือกอายุต่ำกว่า 15 ปี",
    "context": "CREATE TABLE table_name_24 (position VARCHAR, pick VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_72 WHERE pick = 14",
    "question_en": "What position did pick 14 play?",
    "question_th": "เลือก 14 เล่นตำแหน่งไหน?",
    "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_en": "What pick number did the linebacker from the denver broncos get?",
    "question_th": "ผู้เล่นตัวจริงจากเดนเวอร์ บรองโกส์เลือกเบอร์อะไร?",
    "context": "CREATE TABLE table_name_34 (pick VARCHAR, position VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_3 WHERE position = \"quarterback\"",
    "question_en": "What college was the quarterback from?",
    "question_th": "ควอร์เตอร์แบ็กมาจากวิทยาลัยใด",
    "context": "CREATE TABLE table_name_3 (college VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT MIN(pick) FROM table_name_3 WHERE team = \"san diego chargers\"",
    "question_en": "What is the lowest number pick from san diego chargers?",
    "question_th": "หมายเลขต่ำสุดที่เลือกจากเครื่องชาร์จซานดิเอโกคืออะไร?",
    "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_en": "Which Years has a Type/code of cubic centimetres (cuin) v8 ( m273 )?",
    "question_th": "ปีใดมีประเภท/รหัส ลูกบาศก์เซนติเมตร (คูอิน) 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_en": "What is the total heat number of sun yang, who has a lane less than 2?",
    "question_th": "จำนวนความร้อนรวมของซุนหยางที่มีเลนน้อยกว่า 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_en": "Who has a time of 3:50.90?",
    "question_th": "ใครมีเวลา 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_en": "What is the time of lane 3 in heat 5?",
    "question_th": "เลน 3 ในฮีต 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_en": "What is the heat with a time of 3:45.57 in lane 3?",
    "question_th": "ความร้อนด้วยเวลา 3:45.57 ในเลน 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_en": "Who are the Rowers with a Time of 6:39.49?",
    "question_th": "ใครคือฝีพายที่มีเวลา 6:39.49 น.?",
    "context": "CREATE TABLE table_name_31 (rowers VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_11 WHERE rank = 4",
    "question_en": "What is the Country of the rowers with a Rank of 4?",
    "question_th": "นักพายเรือที่มีอันดับ 4 คือประเทศอะไร?",
    "context": "CREATE TABLE table_name_11 (country VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT county FROM table_name_85 WHERE mascot = \"red ramblers\"",
    "question_en": "What counties mascot are the Red Ramblers?",
    "question_th": "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_en": "What is the IHSAA class when the county was 83 vermillion?",
    "question_th": "ระดับ IHSAA เมื่อเคาน์ตีอยู่ที่ 83 สีแดงชาดคืออะไร",
    "context": "CREATE TABLE table_name_40 (ihsaa_class VARCHAR, county VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(enrollment) FROM table_name_27 WHERE location = \"rockville\"",
    "question_en": "What is the enrollment number for Rockville?",
    "question_th": "หมายเลขการลงทะเบียนของ Rockville คืออะไร?",
    "context": "CREATE TABLE table_name_27 (enrollment VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(attendance) FROM table_name_87 WHERE opponent = \"minnesota vikings\"",
    "question_en": "What is the Attendance of the game against Minnesota Vikings?",
    "question_th": "ผู้เข้าชมเกมกับ Minnesota Vikings เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_87 (attendance VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT AVG(score) FROM table_name_71 WHERE player = \"søren kjeldsen\"",
    "question_en": "what is the average score for søren kjeldsen?",
    "question_th": "คะแนนเฉลี่ยของ โซเรน เคลด์เซ่น คือเท่าไร?",
    "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_en": "What's the against of South Warrnambool when the draw is less than 0?",
    "question_th": "เซาท์ วอร์นัมบูล เจอกับอะไรเมื่อเสมอน้อยกว่า 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_en": "What's the smallest draw of Warrnambool when the against was less than 1299, more than 7 wins, and less than 2 losses?",
    "question_th": "อะไรคือผลเสมอที่น้อยที่สุดของวอร์นัมบูลเมื่อต่อน้อยกว่า 1299 ชนะมากกว่า 7 ครั้งและแพ้น้อยกว่า 2 ครั้ง?",
    "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_en": "What's the against when the draw was more than 0 and had 13 losses?",
    "question_th": "จะเกิดอะไรขึ้นเมื่อเสมอมากกว่า 0 และแพ้ 13 ครั้ง?",
    "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_en": "What's the against when there were more than 2 losses, more than 3 wins, and draws more than 0?",
    "question_th": "จะเกิดอะไรขึ้นเมื่อมีการสูญเสียมากกว่า 2 ครั้ง ชนะมากกว่า 3 ครั้ง และเสมอมากกว่า 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_en": "What's the highest amount of losses of Camperdown when the against was less than 945?",
    "question_th": "ค่าเสียหายสูงสุดของ Camperdown เมื่อค่าตัวต่อน้อยกว่า 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_en": "what is the sum of league goals when the fa cup goals is more than 0?",
    "question_th": "ผลรวมประตูในลีกเมื่อประตูเอฟเอคัพมากกว่า 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_en": "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?",
    "question_th": "ประตูลีกคัพโดยเฉลี่ยเป็นเท่าใดเมื่อแอปลีกคัพคือ 4 ประตูลีกน้อยกว่า 4 แอปเอฟเอคัพคือ 1 และรวมแอปคือ 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_en": "what is the average league cup goals when the position is df and total goals is more than 4?",
    "question_th": "ประตูลีกคัพโดยเฉลี่ยคือเท่าไรเมื่อตำแหน่ง df และประตูรวมมากกว่า 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_en": "what is the average fa cup goals when the fa cup apps is 0, total goals is less than 1 and position is df?",
    "question_th": "ประตูเอฟเอคัพโดยเฉลี่ยเป็นเท่าใดเมื่อแอปเอฟเอคัพเป็น 0 ประตูรวมน้อยกว่า 1 และตำแหน่งคือ 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_en": "What year had a score of 0.586?",
    "question_th": "ปีไหนมีคะแนน 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_en": "What's the n Africa in 2012 with an N/A as the CPLP?",
    "question_th": "แอฟริกาในปี 2555 คืออะไรโดยมี N/A เป็น 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_en": "What was the final venue for 82 delegates?",
    "question_th": "สถานที่สุดท้ายสำหรับผู้ร่วมประชุม 82 คนคือที่ไหน?",
    "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_en": "Which Artist has a Record label of vertigo?",
    "question_th": "ศิลปินคนไหนมีค่ายเพลงอาการเวียนศีรษะ?",
    "context": "CREATE TABLE table_name_86 (artist VARCHAR, record_label VARCHAR)"
  },
  {
    "answer": "SELECT president FROM table_name_57 WHERE c_span_2009 = \"21\"",
    "question_en": "Who is the president when c-span 2009 is 21?",
    "question_th": "ใครเป็นประธานาธิบดีเมื่อ c-span 2009 อายุ 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_en": "what is c-span 2009 when times 2008** is 08?",
    "question_th": "c-span 2009 คืออะไรเมื่อคูณ 2008** เป็น 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_en": "what is siena 2002 when the president is andrew jackson?",
    "question_th": "เซียนา 2002 คืออะไรเมื่อประธานาธิบดีคือแอนดรูว์ แจ็คสัน?",
    "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_en": "Which Location has a Home Ground of Mong kok stadium?",
    "question_th": "สถานที่ใดมีสนามเหย้าของสนามมงก๊ก?",
    "context": "CREATE TABLE table_name_14 (location VARCHAR, home_ground VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_name_14 WHERE league_division = \"first division\"",
    "question_en": "Which club is in the First division?",
    "question_th": "สโมสรใดอยู่ในดิวิชั่น 1?",
    "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_en": "What is the Home Ground with the Location n/a for the Club kcdrsc?",
    "question_th": "สนามเหย้าที่มีตำแหน่งไม่มีสำหรับ 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_en": "What League/Division has a Location of n/a?",
    "question_th": "ลีก/ดิวิชั่นใดมีที่ตั้งไม่มี?",
    "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_en": "What Location is in the second division and has 4th, third division (promoted) as its Position in 2012-13?",
    "question_th": "ตำแหน่งใดอยู่ในดิวิชั่น 2 และมีดิวิชั่น 4 และ 3 (เลื่อนตำแหน่ง) ในตำแหน่งในปี 2555-2556",
    "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_en": "What was the rank of the team who raced at a time of 7:16.13?",
    "question_th": "ทีมที่แข่งในเวลา 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_en": "What is the total number of rank for the country of greece?",
    "question_th": "จำนวนอันดับทั้งหมดของประเทศกรีซคือเท่าไร?",
    "context": "CREATE TABLE table_name_19 (rank VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_67 WHERE rank < 5 AND notes = \"fb\"",
    "question_en": "What country were the athletes where ranked smaller than 5 with notes listed as fb?",
    "question_th": "นักกีฬาประเทศใดที่มีอันดับต่ำกว่า 5 และมีข้อความระบุเป็น 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_en": "What is the time for the race with the United States?",
    "question_th": "แข่งกับสหรัฐฯ กี่โมง?",
    "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_en": "What shirt No has a Birth Date of April 12, 1986 (age27)?",
    "question_th": "โนเสื้อตัวไหนเกิดวันที่ 12 เมษายน 2529 (อายุ 27 ปี)",
    "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_en": "What position that has a Height larger than 179, and Player is Ezgi Arslan?",
    "question_th": "ตำแหน่งใดที่มีส่วนสูงมากกว่า 179 และผู้เล่นคือ เอซกี้ อาร์สลาน?",
    "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_en": "What is the shirt no with a position of setter, a nationality of Italy, and height larger than 172?",
    "question_th": "เสื้อเบอร์อะไร ตำแหน่งเซต สัญชาติอิตาลี และสูงเกิน 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_en": "What player that has a position of middle blocker, a Nationality of Turkey, and shirt no is 8?",
    "question_th": "นักเตะคนไหนที่มีตำแหน่งตัวบล็อกกลาง สัญชาติตุรกี และเสื้อหมายเลข 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_en": "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)?",
    "question_th": "นักเตะคนไหนที่มีสัญชาติตุรกี ส่วนสูงน้อยกว่า 183 อายุเสื้อไม่ต่ำกว่า 19 ปี และวันเกิดวันที่ 27 มิถุนายน 1993 (อายุ 20 ปี)",
    "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_en": "Which nation won 29 gold medals?",
    "question_th": "ชาติใดได้ 29 เหรียญทอง?",
    "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_en": "What is the fewest number of bronze medals won among the nations ranked 12 that won no gold medals and 1 medal overall?",
    "question_th": "อะไรคือจำนวนเหรียญทองแดงที่ได้รับน้อยที่สุดในบรรดาประเทศอันดับที่ 12 ที่ไม่ได้รับรางวัลเหรียญทองและ 1 เหรียญโดยรวม?",
    "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_en": "What is the FCC info for the translator with frequency over 89.3MHz and licensd in Portales, New Mexico?",
    "question_th": "ข้อมูล FCC สำหรับนักแปลที่มีความถี่มากกว่า 89.3MHz และใบอนุญาตใน 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_en": "Which ship was launched from Devonport, Devon?",
    "question_th": "เรือลำใดที่เปิดตัวจาก 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_en": "What country was the Pegasus, build by Royal Dockyard, from?",
    "question_th": "Pegasus สร้างโดย Royal Dockyard มาจากประเทศใด",
    "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_en": "Who was the builder of Gannet from the United Kingdom?",
    "question_th": "ใครคือผู้สร้าง Gannet จากสหราชอาณาจักร",
    "context": "CREATE TABLE table_name_60 (builder VARCHAR, country VARCHAR, ship VARCHAR)"
  },
  {
    "answer": "SELECT builder FROM table_name_12 WHERE ship = \"nor\"",
    "question_en": "Who was the builder of Nor?",
    "question_th": "ใครคือผู้สร้างนอร์?",
    "context": "CREATE TABLE table_name_12 (builder VARCHAR, ship VARCHAR)"
  },
  {
    "answer": "SELECT builder FROM table_name_37 WHERE country = \"norway\" AND ship = \"brage\"",
    "question_en": "Who was the builder of Brage from Norway?",
    "question_th": "ใครคือผู้สร้าง Brage จากประเทศนอร์เวย์",
    "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_en": "What country was Brage, built by karljohansverns verft, from?",
    "question_th": "Brage สร้างโดย karljohansverns verft จากประเทศใด",
    "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_en": "Which Silver has a Total of 11, and a Gold smaller than 8?",
    "question_th": "เงินใดมีทั้งหมด 11 และทองน้อยกว่า 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_en": "Which Silver has a Total of 1, and a Rank of 12?",
    "question_th": "เงินใดมีคะแนนรวม 1 และอันดับ 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_en": "Which IHSAA Football Class has a School of wood memorial?",
    "question_th": "IHSAA Football Class ใดที่มี 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_en": "Which IHSAA Football Class has a County of 77 sullivan, and a School of union dugger?",
    "question_th": "คลาสฟุตบอล IHSAA ใดที่มีเคาน์ตี 77 ซัลลิแวน และ 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_en": "Which IHSAA Football Class has an Enrollment of 406?",
    "question_th": "IHSAA Football Class ใดที่มีการลงทะเบียน 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_en": "Which Size has a County of 62 perry?",
    "question_th": "ไซส์ไหนมีมณฑล 62 เพอร์รี่?",
    "context": "CREATE TABLE table_name_69 (size INTEGER, county VARCHAR)"
  },
  {
    "answer": "SELECT ihsaa_class FROM table_name_84 WHERE size > 511",
    "question_en": "Which IHSAA Class has a Size larger than 511?",
    "question_th": "คลาส IHSAA ใดที่มีขนาดใหญ่กว่า 511",
    "context": "CREATE TABLE table_name_84 (ihsaa_class VARCHAR, size INTEGER)"
  },
  {
    "answer": "SELECT ihsaa_class FROM table_name_4 WHERE school = \"mitchell\"",
    "question_en": "Which IHSAA Class has a School of mitchell?",
    "question_th": "ชั้นเรียน IHSAA ใดที่มี 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_en": "Which County has a Size larger than 258, and a Mascot of commodores?",
    "question_th": "มณฑลใดมีขนาดใหญ่กว่า 258 และมีตัวนำโชคของพลเรือจัตวา?",
    "context": "CREATE TABLE table_name_95 (county VARCHAR, size VARCHAR, mascot VARCHAR)"
  },
  {
    "answer": "SELECT lineup FROM table_name_33 WHERE match = \"2\"",
    "question_en": "What was her place in the lineup on match 2?",
    "question_th": "เธออยู่ตำแหน่งไหนในรายชื่อผู้เล่นตัวจริงในนัดที่ 2?",
    "context": "CREATE TABLE table_name_33 (lineup VARCHAR, match VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_55 WHERE date = \"2/17/1974\"",
    "question_en": "What is the record of the game played on 2/17/1974?",
    "question_th": "บันทึกของเกมที่เล่นเมื่อวันที่ 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_en": "Which stadium had the opposition of 79,122?",
    "question_th": "สนามไหนมีคู่แข่ง 79,122 คน?",
    "context": "CREATE TABLE table_name_91 (stadium VARCHAR, opposition VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_name_52 WHERE rank = 1",
    "question_en": "What are the notes of the number 1 rank?",
    "question_th": "โน้ตอันดับ 1 คืออะไร?",
    "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_en": "What's the rank if the time was 5:54.57 and FB in notes?",
    "question_th": "ถ้าเวลาคือ 5:54.57 และ FB ในโน้ตจะอยู่ที่เท่าไร",
    "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_en": "Who are the rowers with the time of 5:54.57?",
    "question_th": "เวลา 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_en": "What are the notes of the United States?",
    "question_th": "หมายเหตุของสหรัฐอเมริกาคืออะไร?",
    "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_en": "What is the gold for a bronze larger than 1, with a total smaller than 10, and a silver of 3?",
    "question_th": "ทองคำสำหรับทองสัมฤทธิ์ที่มีขนาดใหญ่กว่า 1 โดยมีจำนวนรวมน้อยกว่า 10 และเงินเท่ากับ 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_en": "What is the average total when the silver is larger than 2, and a gold larger than 1, and a nation of total?",
    "question_th": "ผลรวมโดยเฉลี่ยจะเป็นอย่างไรเมื่อเงินมีขนาดใหญ่กว่า 2 และทองคำมากกว่า 1 และประเทศมีทั้งหมดเป็นเท่าใด",
    "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_en": "When the rank is 11, and bronze a smaller than 1 what is the lowest total?",
    "question_th": "เมื่ออันดับเป็น 11 และทองแดงน้อยกว่า 1 ผลรวมต่ำสุดคือเท่าใด?",
    "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_en": "What was the A Score when the B Score was 9.05, and position was larger than 6?",
    "question_th": "คะแนน A คืออะไรเมื่อคะแนน B คือ 9.05 และตำแหน่งมากกว่า 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_en": "What is the total when the B Score was 9.15 for Cheng Fei ( chn )?",
    "question_th": "คะแนน B Score ของ Cheng Fei ( chn ) อยู่ที่ 9.15 เท่าไร?",
    "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_en": "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?",
    "question_th": "ตำแหน่งของพวกเขาคืออะไรเมื่อคะแนน B น้อยกว่า 9.05 คะแนนรวมคือ 15.275 และคะแนน A มากกว่า 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_en": "What is their position when the b score is more than 8.975 for Ekaterina Kramarenko ( rus )?",
    "question_th": "ตำแหน่งของพวกเขาคืออะไรเมื่อคะแนน b มากกว่า 8.975 สำหรับ Ekaterina Kramarenko ( รัสเซีย )?",
    "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_en": "What year had Third-Person Shooter?",
    "question_th": "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_en": "What year was Portal?",
    "question_th": "พอร์ทัลปีไหน?",
    "context": "CREATE TABLE table_name_93 (year INTEGER, game VARCHAR)"
  },
  {
    "answer": "SELECT developer_s_ FROM table_name_22 WHERE genre = \"adventure\"",
    "question_en": "Who was the developer(s) of the genre Adventure?",
    "question_th": "ใครคือผู้พัฒนาประเภท Adventure?",
    "context": "CREATE TABLE table_name_22 (developer_s_ VARCHAR, genre VARCHAR)"
  },
  {
    "answer": "SELECT platform_s_ FROM table_name_80 WHERE genre = \"rpg\"",
    "question_en": "What's the platform of the genre RPG?",
    "question_th": "แพลตฟอร์มของเกมแนว 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_en": "What's the genre of developer(s) Lionhead Studios?",
    "question_th": "ประเภทของผู้พัฒนา Lionhead Studios คืออะไร?",
    "context": "CREATE TABLE table_name_41 (genre VARCHAR, developer_s_ VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_57 WHERE genre = \"adventure\"",
    "question_en": "What's year was the genre Adventure?",
    "question_th": "ประเภท 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_en": "When was Cardinal-Deacon of S. Giorgio in Velabro elevated?",
    "question_th": "พระคาร์ดินัล-มัคนายกแห่ง S. Giorgio ในเมือง Velabro ได้รับการยกระดับเมื่อใด",
    "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ínez de luna y gotor\"",
    "question_en": "What is the Cardinalatial order and title that Pedro Martínez de Luna y Gotor elevated?",
    "question_th": "ลำดับพระคาร์ดินัลและตำแหน่งที่เปโดร มาร์ติเนซ เด ลูนา y โกตอร์ยกระดับคืออะไร?",
    "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_en": "What is the nationality of the elector withe the Cardinalatial order and title of Cardinal-Priest of Ss. XII Apostoli?",
    "question_th": "ผู้มีสิทธิ์เลือกตั้งมีสัญชาติอะไรในลำดับพระคาร์ดินัลและตำแหน่งพระคาร์ดินัล-พระสงฆ์แห่งส.ส. อัครสาวกสิบสอง?",
    "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_en": "What Tournament had Jack Nicklaus as Runner(s)-up?",
    "question_th": "การแข่งขันใดที่มี Jack Nicklaus เป็นรองชนะเลิศ?",
    "context": "CREATE TABLE table_name_47 (tournament VARCHAR, runner_s__up VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_55 WHERE winning_score = −9(65 - 71 - 68 - 67 = 271)",
    "question_en": "What is the Date of the Tournament with a Winning score of −9 (65-71-68-67=271)?",
    "question_th": "วันที่จัดการแข่งขันโดยมีคะแนนชนะ −9 (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_en": "What is the Winning Score of the Tournament with Jack Nicklaus as Runner(s)-up?",
    "question_th": "คะแนนชนะของทัวร์นาเมนต์โดยมีแจ็ค นิคลอสเป็นรองแชมป์คืออะไร?",
    "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_en": "What is the Runner(s)-up of the Kemper Open Tournament?",
    "question_th": "รองชนะเลิศของ 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_en": "What week has December 19, 2004 as the date?",
    "question_th": "สัปดาห์ใดที่วันที่ 19 ธันวาคม พ.ศ. 2547 เป็นวันที่?",
    "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_en": "What is the highest week that has espn 8:30pm as the TV time?",
    "question_th": "สัปดาห์ใดที่มีเวลาออกอากาศทางทีวีในเวลา 20.30 น. สูงที่สุดคือสัปดาห์ใด",
    "context": "CREATE TABLE table_name_74 (week INTEGER, tv_time VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_36 WHERE opponent = \"miami dolphins\"",
    "question_en": "What result has miami dolphins as the opponent?",
    "question_th": "ผลที่ได้คือไมอามี่โลมาเป็นคู่ต่อสู้?",
    "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_en": "What is the Time of the swimmer from Chinese Taipei in Heat 3?",
    "question_th": "นักว่ายน้ำจากจีนไทเปในฮีต 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_en": "What's the Dolphin Points when the attendance was less than 69,313 and had an opponent of the Buffalo Bills?",
    "question_th": "Dolphin Points คืออะไรเมื่อมีผู้เข้าร่วมน้อยกว่า 69,313 คนและมีคู่ต่อสู้ของ 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_en": "What's the game with an attendance of 71,962?",
    "question_th": "เกมอะไรที่มีผู้เข้าชม 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_en": "What was the week 12 standing for the housemate that nominated Deepak P Rahul in week 1 and Amit Carol in week 3?",
    "question_th": "สัปดาห์ที่ 12 เป็นอย่างไรสำหรับเพื่อนร่วมบ้านที่ได้รับการเสนอชื่อเข้าชิง Deepak P Rahul ในสัปดาห์ที่ 1 และ Amit Carol ในสัปดาห์ที่ 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_en": "Who did the housemate that nominated Kashmera Rakhi in week 3 and Amit Bobby in week 1 nominate in week 6?",
    "question_th": "เพื่อนบ้านที่เสนอชื่อ Kashmera Rakhi ในสัปดาห์ที่ 3 และ Amit Bobby ในสัปดาห์ที่ 1 เสนอชื่อในสัปดาห์ที่ 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_en": "Who did the housemate that nominated Carol Roopali in week 1 nominate in week 8?",
    "question_th": "เพื่อนบ้านที่เสนอชื่อ Carol Roopali ในสัปดาห์ที่ 1 เสนอชื่อในสัปดาห์ที่ 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_en": "What is the IHSAA class of Centerville, which plays IHSAA class AA football?",
    "question_th": "อะไรคือ IHSAA คลาสของ Centreville ซึ่งเล่นฟุตบอลคลาส AA ของ IHSAA?",
    "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_en": "Winchester Community school, which plays IHSAA class AA football, is located where?",
    "question_th": "โรงเรียน Winchester Community ซึ่งเล่นฟุตบอลระดับ AA ของ IHSAA อยู่ที่ไหน?",
    "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_en": "What is the IHSAA class of the school with less than 400 students and a mascot of the Tigers?",
    "question_th": "ชั้นเรียน IHSAA ของโรงเรียนที่มีนักเรียนน้อยกว่า 400 คนและมีตัวนำโชคเป็นรูปเสือคืออะไร",
    "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_en": "What county has a school with less than 301 students and plays IHSAA class A football?",
    "question_th": "เขตใดมีโรงเรียนที่มีนักเรียนน้อยกว่า 301 คนและเล่นฟุตบอลคลาส A ของ IHSAA",
    "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_en": "What is the lowest game when the score is 102-104?",
    "question_th": "เกมไหนต่ำสุดที่สกอร์ 102-104 คือเกมไหน?",
    "context": "CREATE TABLE table_name_53 (game INTEGER, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_49 WHERE game = 4",
    "question_en": "what is the score for game 4?",
    "question_th": "คะแนนของเกมที่ 4 คืออะไร?",
    "context": "CREATE TABLE table_name_49 (score VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT series FROM table_name_88 WHERE game = 4",
    "question_en": "what is the series for game 4?",
    "question_th": "ซีรีส์สำหรับเกม 4 คืออะไร?",
    "context": "CREATE TABLE table_name_88 (series VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT SUM(pendle) FROM table_name_47 WHERE burnley < 0",
    "question_en": "Which Pendle has a Burnley smaller than 0?",
    "question_th": "เพนเดิลคนไหนที่เบิร์นลี่ย์เล็กกว่า 0?",
    "context": "CREATE TABLE table_name_47 (pendle INTEGER, burnley INTEGER)"
  },
  {
    "answer": "SELECT COUNT(rossendale) FROM table_name_95 WHERE fylde < 0",
    "question_en": "How much Rossendale has a Fylde smaller than 0?",
    "question_th": "Rossendale มี Fylde น้อยกว่า 0 เท่าใด",
    "context": "CREATE TABLE table_name_95 (rossendale VARCHAR, fylde INTEGER)"
  },
  {
    "answer": "SELECT SUM(hyndburn) FROM table_name_52 WHERE fylde > 3",
    "question_en": "How much Hyndburn has a Fylde larger than 3?",
    "question_th": "Hyndburn มี Fylde ใหญ่กว่า 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_en": "How much Burnley has a Fylde smaller than 1, and a Rossendale larger than 0?",
    "question_th": "เบิร์นลีย์มีฟิลด์น้อยกว่า 1 และรอสเซนเดลมากกว่า 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_en": "What are the years that have un posto al sole as the soap opera, with riccardo polizzy carbonelli as the actor?",
    "question_th": "กี่ปีที่มีละครแต่เพียงผู้เดียว โดยมีริคคาร์โด้ โปลิซซี คาร์โบเนลลี่เป็นนักแสดง?",
    "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_en": "What years have a duration of 18 years, and patrizio rispo as the actor?",
    "question_th": "ปีใดมีระยะเวลา 18 ปีและมี patrizio rispo เป็นนักแสดง?",
    "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_en": "What are the years that have a duration of 15 years and giulia poggi as the character?",
    "question_th": "กี่ปีที่มีระยะเวลา 15 ปีและมี Giulia Poggi เป็นตัวละคร?",
    "context": "CREATE TABLE table_name_33 (years VARCHAR, duration VARCHAR, character VARCHAR)"
  },
  {
    "answer": "SELECT years FROM table_name_18 WHERE actor = \"claudia ruffo\"",
    "question_en": "What years have claudia ruffo as the actor?",
    "question_th": "คลอเดีย รัฟโฟเป็นนักแสดงกี่ปี?",
    "context": "CREATE TABLE table_name_18 (years VARCHAR, actor VARCHAR)"
  },
  {
    "answer": "SELECT duration FROM table_name_42 WHERE actor = \"pietro genuardi\"",
    "question_en": "What is the duration that has pietro genuardi as the actor?",
    "question_th": "Pietro Genuardi เป็นนักแสดงระยะเวลาเท่าไร?",
    "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_en": "What is the soap opera that has a duration of 13 years, with marina giulia cavalli as the actor?",
    "question_th": "ละครเรื่องอะไรที่มีระยะเวลา 13 ปี โดยมี มาริน่า จูเลีย คาวาลี เป็นนักแสดง?",
    "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_en": "What is the lowest attendance for December 14, 1958 after week 12?",
    "question_th": "ผู้เข้าร่วมต่ำสุดในวันที่ 14 ธันวาคม พ.ศ. 2501 หลังจากสัปดาห์ที่ 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_en": "What is the total for the week in the game against the Chicago Bears",
    "question_th": "ผลรวมของสัปดาห์ในเกมกับชิคาโก้ แบร์สเป็นเท่าใด",
    "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_en": "What is the highest attendance for December 14, 1958 for after week 12",
    "question_th": "จำนวนผู้เข้าร่วมสูงสุดในวันที่ 14 ธันวาคม พ.ศ. 2501 หลังจากสัปดาห์ที่ 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–0, 6–3\"",
    "question_en": "What is the Outcome of the Match played after 2003 with a Score of 6–0, 6–3?",
    "question_th": "ผลลัพธ์ของแมตช์ที่เล่นหลังปี 2003 ด้วยสกอร์ 6–0, 6–3 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_88 (outcome VARCHAR, year VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_22 WHERE score = \"6–1, 6–1\"",
    "question_en": "What is the Outcome of the match with a Score of 6–1, 6–1?",
    "question_th": "ผลการแข่งขันด้วยสกอร์ 6–1, 6–1 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_22 (outcome VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_23 WHERE rank = 5",
    "question_en": "Who has rank 5?",
    "question_th": "ใครอยู่อันดับที่ 5 บ้าง?",
    "context": "CREATE TABLE table_name_23 (name VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_90 WHERE rank = 4",
    "question_en": "Which nationality has rank 4?",
    "question_th": "สัญชาติใดมีอันดับ 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_en": "What title was used in the nomination of Matrimonio All'Italiana?",
    "question_th": "ชื่ออะไรที่ใช้ในการเสนอชื่อ 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_en": "What language was the film Pelle Erobreren, which received the best actor nomination, in?",
    "question_th": "ภาพยนตร์เรื่อง Pelle Erobreren ซึ่งได้รับการเสนอชื่อเข้าชิงนักแสดงนำชายยอดเยี่ยมเป็นภาษาใด",
    "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_en": "What title was used in the nomination of the Spanish language film Traffic?",
    "question_th": "ชื่ออะไรที่ใช้ในการเสนอชื่อภาพยนตร์ภาษาสเปน 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_en": "What title was used in the nomination of Una Giornata Particolare?",
    "question_th": "ชื่ออะไรที่ใช้ในการเสนอชื่อ 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_en": "What date has a Position of back, later than 1964, and a Test debut of 1st rl test v new zealand?",
    "question_th": "วันที่ใดมีตำแหน่งเป็นแบ็ค หลังปี 1964 และการทดสอบเปิดตัวครั้งแรกของ 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_en": "What is the position earlier than 1907, with a cross-code debut of inaugural rl test v new zealand, and a test debut of inaugural ru test v new zealand?",
    "question_th": "ตำแหน่งก่อนหน้าปี 1907 คืออะไร โดยมีการเปิดตัว cross-code ของ rl test v new zealand ครั้งแรก และการทดสอบเปิดตัว 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_en": "What is the cross-code debut later than 1958 for Dick Thornett?",
    "question_th": "อะไรคือการเปิดตัวแบบ cross-code ภายหลังปี 1958 สำหรับ 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_en": "What position has a Cross-code debut of 1st ru test v ireland?",
    "question_th": "ตำแหน่งใดที่มีการเปิดตัว Cross-code ของ 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_en": "What was the time for the match with away team Shatin?",
    "question_th": "แมตช์กับทีมเยือน ชาติน กี่โมง?",
    "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_en": "What was the time for the match with away team Convoy Sun Hei Team A?",
    "question_th": "แมตช์กับทีมเยือน คอนวอย ซัน เฮย ทีม เอ กี่โมง?",
    "context": "CREATE TABLE table_name_47 (time VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_45 WHERE time = \"18:30\"",
    "question_en": "What was the away team for the match that had a time of 18:30?",
    "question_th": "นัดเวลา 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_en": "What was the time for the match with away team Mutual Team B?",
    "question_th": "แมตช์กับทีมเยือนรวมทีมบีกี่โมง?",
    "context": "CREATE TABLE table_name_28 (time VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_17 WHERE home_team = \"hkssf\"",
    "question_en": "What was the time for the match that had a a home team of HKSSF?",
    "question_th": "แมตช์ที่มีทีมเหย้าของ 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_en": "How many people attended on december 26, 1982?",
    "question_th": "มีผู้เข้าร่วมกี่คนในวันที่ 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_en": "How many Byes have Wins smaller than 11, and a Wimmera FL of minyip murtoa, and Losses smaller than 6?",
    "question_th": "มีกี่ Byes ที่ชนะน้อยกว่า 11 และ Wimmera FL ของ minyip murtoa และแพ้น้อยกว่า 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_en": "Which Losses have an Against smaller than 1018, and Wins smaller than 14?",
    "question_th": "การแพ้ใดมีค่า Against น้อยกว่า 1,018 และชนะน้อยกว่า 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_en": "Which Byes have an Against larger than 1018, and a Wimmera FL of horsham diggers?",
    "question_th": "Byes ใดที่มี Against มากกว่า 1,018 และ Wimmera FL ของผู้ขุด horsham?",
    "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_en": "Which Losses have a Wimmera FL of minyip murtoa?",
    "question_th": "การสูญเสียใดที่มี Wimmera FL ของ 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_en": "Which Against has Losses smaller than 5, and a Wimmera FL of warrack eagles, and Draws smaller than 0?",
    "question_th": "ซึ่งต่อต้านมีการสูญเสียน้อยกว่า 5 และ Wimmera FL ของนกอินทรี warrack และเสมอน้อยกว่า 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_en": "Which country has Spence in the name section?",
    "question_th": "ประเทศใดมี Spence อยู่ในส่วนชื่อ?",
    "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_en": "Which country has the status of transferred, moving to of released, and Solano as the listed name?",
    "question_th": "ประเทศใดมีสถานะโอนย้ายไปปล่อยและมีโซลาโนเป็นชื่อในรายการ?",
    "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_en": "What is the transfer fee for the country that has the name McCartney listed?",
    "question_th": "ค่าธรรมเนียมการโอนเงินสำหรับประเทศที่มีชื่อ McCartney ระบุไว้คือเท่าไร?",
    "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_en": "What is the name listed for the country that has a status of loaned and a moving to listed as leyton orient?",
    "question_th": "ชื่อที่ระบุไว้สำหรับประเทศที่มีสถานะเป็นเงินกู้และย้ายไปอยู่ในรายการเป็น 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_en": "What is the transfer fee for the country of Nir?",
    "question_th": "ค่าธรรมเนียมการโอนเงินไปประเทศนีร์คือเท่าไร?",
    "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_en": "Who had the fastest lap when adam christodoulou was the winning driver and had the pole position?",
    "question_th": "ใครมีรอบเร็วที่สุดเมื่อ Adam Christodoulou เป็นนักแข่งที่ชนะและได้ตำแหน่งโพลโพสิชั่น?",
    "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_en": "What date was the circuit, snetterton, when riki christodoulou had the fastest lap?",
    "question_th": "สนามแข่งวันที่เท่าไหร่ สเนทเทอร์ตัน เมื่อริกิ คริสโตดูลูทำรอบได้เร็วที่สุด?",
    "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_en": "who had the pole position at rockingham circuit with adam christodoulou having the fastest lap?",
    "question_th": "ใครมีตำแหน่งโพลที่ Rockingham Circuit โดยที่ Adam Christodoulou มีรอบเร็วที่สุด?",
    "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_en": "What bonus points have 448 as the points against?",
    "question_th": "คะแนนโบนัสอะไรที่มี 448 เป็นคะแนนเทียบกับ?",
    "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_en": "What points for have 30 as the game, and 73 as the total points?",
    "question_th": "แต้มใดที่มี 30 ในเกมและ 73 แต้มรวม?",
    "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_en": "What drawn has 416 as the points for and 533 as the points against?",
    "question_th": "สิ่งที่เสมอกันมี 416 แต้ม และ 533 แต้มต่อ?",
    "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_en": "What match points have 755 as the points against?",
    "question_th": "แต้มการแข่งขันใดที่มี 755 เป็นแต้มต่อ?",
    "context": "CREATE TABLE table_name_8 (match_points VARCHAR, points_against VARCHAR)"
  },
  {
    "answer": "SELECT games FROM table_name_47 WHERE club = \"colomiers\"",
    "question_en": "What games have colomiers as the club?",
    "question_th": "เกมใดบ้างที่มีโคโลเมียร์เป็นสโมสร?",
    "context": "CREATE TABLE table_name_47 (games VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT lost FROM table_name_52 WHERE match_points = \"84\"",
    "question_en": "Which lost has 84 as the match points?",
    "question_th": "แพ้นัดไหนมี 84 แต้มเท่ากัน?",
    "context": "CREATE TABLE table_name_52 (lost VARCHAR, match_points VARCHAR)"
  },
  {
    "answer": "SELECT constituency_number FROM table_name_37 WHERE name = \"udaipura\"",
    "question_en": "How many constituents does udaipura have?",
    "question_th": "อุไดปุระมีกี่องค์ประกอบ?",
    "context": "CREATE TABLE table_name_37 (constituency_number VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(lane) FROM table_name_14 WHERE name = \"henrique barbosa\"",
    "question_en": "What lane was Henrique Barbosa in?",
    "question_th": "เฮนริเก้ บาร์โบซ่า อยู่ในเลนไหน?",
    "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_en": "What game was before 2010 and was a role-playing game?",
    "question_th": "เกมอะไรก่อนปี 2010 และเป็นเกมเล่นตามบทบาท",
    "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_en": "What was the platform of Red Dead Redemption?",
    "question_th": "แพลตฟอร์มของ 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_en": "Who was the developer of Wii?",
    "question_th": "ใครเป็นผู้พัฒนา 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_en": "What year was The Walking Dead?",
    "question_th": "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_en": "What was the platform when the developer was Telltale Games?",
    "question_th": "ผู้พัฒนาคือ 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_en": "What is the game of developer Rockstar Games?",
    "question_th": "เกมของผู้พัฒนา 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_en": "How much Elevation (m) has a Prominence (m) larger than 2,876?",
    "question_th": "ระดับความสูง (m) มีความโดดเด่น (m) มากกว่า 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_en": "When was millwall the home team?",
    "question_th": "มิลล์วอลล์เป็นเจ้าบ้านเมื่อไหร่?",
    "context": "CREATE TABLE table_name_11 (date VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_49 WHERE away_team = \"arsenal\"",
    "question_en": "What was the score when Arsenal was the away team?",
    "question_th": "เมื่ออาร์เซนอลเป็นทีมเยือนสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_49 (score VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_53 WHERE score = \"2–0\"",
    "question_en": "Which away team had a Score of 2–0?",
    "question_th": "ทีมเยือนทีมใดมีสกอร์ 2–0?",
    "context": "CREATE TABLE table_name_53 (away_team VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_17 WHERE away_team = \"arsenal\"",
    "question_en": "When was Arsenal was the away team?",
    "question_th": "อาร์เซนอลเป็นทีมเยือนเมื่อไหร่?",
    "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_en": "What's the date released when there was 9.7% of Green communist?",
    "question_th": "วันที่เท่าไหร่ที่มีคอมมิวนิสต์สีเขียว 9.7%?",
    "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_en": "What's the green communist when Euroteste/JN is the polling Institute?",
    "question_th": "คอมมิวนิสต์สีเขียวคืออะไรเมื่อ Euroteste/JN เป็นสถาบันการเลือกตั้ง?",
    "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_en": "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?",
    "question_th": "เหรียญเงินมากที่สุดเมื่อรวมมากกว่า 2 เหรียญและมีอันดับรวมและจำนวนเหรียญทองมากกว่า 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_en": "What is the fewest gold medals when there is 0 bronze medals, and the rank is 19, and silver medals are less than 1?",
    "question_th": "เหรียญทองน้อยที่สุดเมื่อมี 0 เหรียญทองแดง อันดับ 19 และเหรียญเงินน้อยกว่า 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_en": "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?",
    "question_th": "เหรียญทองแดงมากที่สุดเมื่อเหรียญเงินน้อยกว่า 1 และเบลเยียม (BEL) คือชาติ และเหรียญทองน้อยกว่า 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_en": "With silver medals less than 1, and total medals less than 2, what is the most bronze medals?",
    "question_th": "เหรียญเงินน้อยกว่า 1 เหรียญและเหรียญรวมน้อยกว่า 2 เหรียญทองแดงมากที่สุดคือเหรียญใด",
    "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_en": "Can you tell me the total number of Byes that has the Wins of 14, and the Losses larger than 2?",
    "question_th": "คุณช่วยบอกจำนวน Byes ทั้งหมดที่มีการชนะ 14 และการแพ้ที่มากกว่า 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_en": "Can you tell me the average Wins that has the Against of 1132, and the Losses smaller than 7?",
    "question_th": "คุณช่วยบอกฉันได้ไหมว่าค่าเฉลี่ยการชนะที่มีต่อ 1132 และการแพ้น้อยกว่า 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_en": "What was the date for the game that had a Location/Attendance of the spectrum?",
    "question_th": "วันที่สำหรับเกมที่มีสถานที่/การเข้าร่วมของสเปกตรัมคือเมื่อใด",
    "context": "CREATE TABLE table_name_92 (date VARCHAR, location_attendance VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_53 WHERE location_attendance = \"skydome\"",
    "question_en": "Who was the opponent when they played at the Skydome?",
    "question_th": "คู่ต่อสู้คือใครเมื่อพวกเขาเล่นที่สกายโดม?",
    "context": "CREATE TABLE table_name_53 (opponent VARCHAR, location_attendance VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_61 WHERE date = \"january 17\"",
    "question_en": "What was the record on January 17?",
    "question_th": "บันทึกเมื่อวันที่ 17 มกราคมคืออะไร?",
    "context": "CREATE TABLE table_name_61 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_name_69 WHERE record = \"19-17\"",
    "question_en": "What was the location and attendance when the record was 19-17?",
    "question_th": "สถานที่และผู้เข้าร่วมเมื่อบันทึกคือ 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_en": "What city joined the Independents conference after 1963?",
    "question_th": "เมืองใดเข้าร่วมการประชุม Independents หลังปี 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_en": "What is the year that the Gary team with mascot of the Tornado joined?",
    "question_th": "ปีที่ทีมแกรี่กับมาสคอตของทอร์นาโดเข้าร่วมคือปีไหน?",
    "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_en": "What was the previous conference for the team with the Governors as their mascot that joined the Indiana Lake Shore conference?",
    "question_th": "การประชุมครั้งก่อนๆ ของทีมที่มี Governors เป็นมาสคอตของพวกเขาที่เข้าร่วมการประชุม Indiana Lake Shore คืออะไร",
    "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_en": "What is the year that the Roughriders left the conference?",
    "question_th": "Roughriders ออกจากการประชุมในปีใด",
    "context": "CREATE TABLE table_name_25 (year_left INTEGER, mascot VARCHAR)"
  },
  {
    "answer": "SELECT conference_joined FROM table_name_5 WHERE city = \"valparaiso\"",
    "question_en": "What conference did the city of Valparaiso join?",
    "question_th": "เมืองบัลปาไรโซเข้าร่วมการประชุมอะไร",
    "context": "CREATE TABLE table_name_5 (conference_joined VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT duration FROM table_name_93 WHERE character = \"bartha zsolt\"",
    "question_en": "What is the duration of the character Bartha Zsolt?",
    "question_th": "ตัวละคร 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_en": "How many losses have jake sharp as the name, with a long less than 30?",
    "question_th": "เจค ชาร์ป เท่าชื่อขาดทุนกี่ตัวยาวไม่ถึง 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_en": "What is the average long that has 1581 as a gain, with a loss less than 308?",
    "question_th": "อะไรคือค่าเฉลี่ยของ long ที่มีกำไร 1581 และขาดทุนน้อยกว่า 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_en": "How many gains have a long greater than 8, with avg/g of 124.9?",
    "question_th": "มีกำไรกี่ตัวที่มีความยาวมากกว่า 8 โดยมีค่าเฉลี่ย/กรัมเท่ากับ 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_en": "How many longs have a gain less than 379, and 0.8 as an avg/g?",
    "question_th": "กี่ longs ที่มีกำไรน้อยกว่า 379 และ 0.8 เป็น 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_en": "What is the lowest gain that has toben opurum as the name, with an avg/g less than 54.1?",
    "question_th": "อะไรคือกำไรต่ำสุดที่มี toben opurum เป็นชื่อ โดยมีค่าเฉลี่ย/g น้อยกว่า 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_en": "Which Driver has a Grid smaller than 17, and Points larger than 0, and a Lapse of 87, and a Time/Retired of 1:48:11.023?",
    "question_th": "นักแข่งคนใดมีตารางที่เล็กกว่า 17 และคะแนนมากกว่า 0 และแล็ปส์ที่ 87 และเวลา/เกษียณที่ 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_en": "Which Points have a Grid larger than 7, and a Driver of alex tagliani, and a Lapse smaller than 85?",
    "question_th": "คะแนนใดมีตารางที่ใหญ่กว่า 7 และไดรเวอร์ของ alex tagliani และแล็ปส์น้อยกว่า 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_en": "What date has uefa euro 2008 qualification as the competition?",
    "question_th": "ยูฟ่า ยูโร 2008 รอบคัดเลือก แข่งขันวันไหน?",
    "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_en": "What date has friendly as the competition, with pretoria, South Africa as the venue?",
    "question_th": "การแข่งขันกระชับมิตรมีวันไหน โดยมีพริทอเรีย แอฟริกาใต้เป็นสถานที่จัดการแข่งขัน?",
    "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_en": "What is the lowest final score of the American Cup competition before 2009?",
    "question_th": "คะแนนสุดท้ายของการแข่งขัน American Cup ต่ำสุดก่อนปี 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_en": "What is the result for the game before week 7 against BYE?",
    "question_th": "ผลลัพธ์ของเกมก่อนสัปดาห์ที่ 7 กับบายคืออะไร?",
    "context": "CREATE TABLE table_name_95 (result VARCHAR, week VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_74 WHERE week > 16",
    "question_en": "What was the date for the game after week 16?",
    "question_th": "วันที่สำหรับเกมหลังจากสัปดาห์ที่ 16 คืออะไร?",
    "context": "CREATE TABLE table_name_74 (date VARCHAR, week INTEGER)"
  },
  {
    "answer": "SELECT attendance FROM table_name_61 WHERE opponent = \"tampa bay buccaneers\"",
    "question_en": "What was the attendance for the game against tampa bay buccaneers?",
    "question_th": "ผู้เข้าชมเกมกับแทมปาเบย์บัคคาเนียร์สเป็นอย่างไรบ้าง?",
    "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_en": "What was the date of the game after week 5 with 62,262 fans attending?",
    "question_th": "วันที่ของเกมหลังจากสัปดาห์ที่ 5 โดยมีแฟน ๆ 62,262 คนเข้าร่วมคือเมื่อใด",
    "context": "CREATE TABLE table_name_82 (date VARCHAR, week VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_31 WHERE record = \"5–2–1\"",
    "question_en": "Which Location has a Record of 5–2–1?",
    "question_th": "สถานที่ใดมีสถิติ 5–2–1",
    "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_en": "Which Record has an Event of inoki bom-ba-ye 2002?",
    "question_th": "บันทึกใดมีงาน 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–0\"",
    "question_en": "Which Opponent has a Record of 2–0?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีสถิติ 2–0?",
    "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_en": "Which Record has a Round larger than 2, and an Event of bellator 38?",
    "question_th": "บันทึกใดมีรอบที่ใหญ่กว่า 2 และเหตุการณ์ของ 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_en": "What was John Jones's pick#?",
    "question_th": "ตัวเลือก # ของ John Jones คืออะไร",
    "context": "CREATE TABLE table_name_30 (pick INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT AVG(pick) FROM table_name_62 WHERE hometown_school = \"atlanta, ga\"",
    "question_en": "What was the pick # of the player who has a hometown/school of Atlanta, GA?",
    "question_th": "ตัวเลือก # ของผู้เล่นที่มีบ้านเกิด/โรงเรียนใน Atlanta, GA คืออะไร?",
    "context": "CREATE TABLE table_name_62 (pick INTEGER, hometown_school VARCHAR)"
  },
  {
    "answer": "SELECT monday_to_friday FROM table_name_34 WHERE mañana_es_para_siempre = \"impreuna pentru totdeauna\"",
    "question_en": "What is Mañana es para siempre of impreuna pentru totdeauna from Monday to Friday?",
    "question_th": "Mañana es para siempre of impreuna pentru totdeauna คืออะไรตั้งแต่วันจันทร์ถึงวันศุกร์?",
    "context": "CREATE TABLE table_name_34 (monday_to_friday VARCHAR, mañana_es_para_siempre VARCHAR)"
  },
  {
    "answer": "SELECT monday_to_friday FROM table_name_87 WHERE el_canal_de_las_estrellas = \"pop tv\"",
    "question_en": "When does the El Canal de las Estrellas of pop tv show from Monday to Friday?",
    "question_th": "รายการทีวีป๊อป El Canal de las Estrellas จะแสดงเมื่อใดตั้งแต่วันจันทร์ถึงวันศุกร์?",
    "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_en": "What is the enrollment for the AAAA class in IHSAA?",
    "question_th": "การลงทะเบียนสำหรับชั้นเรียน AAAA ใน 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_en": "What is the IHSAA Football class at Culver?",
    "question_th": "คลาส IHSAA Football ที่ Culver คืออะไร",
    "context": "CREATE TABLE table_name_93 (ihsaa_football_class VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_86 WHERE mascot = \"lancers\"",
    "question_en": "What school has the Lancers as their mascot?",
    "question_th": "โรงเรียนไหนมี Lancers เป็นมาสคอต?",
    "context": "CREATE TABLE table_name_86 (location VARCHAR, mascot VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(enrollment) FROM table_name_97 WHERE school = \"laville\"",
    "question_en": "What is the total enrollment at Laville?",
    "question_th": "การลงทะเบียนทั้งหมดที่ Laville เป็นเท่าใด",
    "context": "CREATE TABLE table_name_97 (enrollment VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT MAX(avg) FROM table_name_30 WHERE rank > 9",
    "question_en": "What is the highest average for teams ranked higher than 9?",
    "question_th": "ค่าเฉลี่ยสูงสุดสำหรับทีมที่มีอันดับสูงกว่า 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_en": "What is the name of the 2008 club with Nadia Centoni Category:Articles with hCards?",
    "question_th": "สโมสรปี 2008 ที่มี Nadia Centoni ชื่ออะไร:บทความที่มี 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_en": "Which 2008 club has the name Francesca Piccinini Category:Articles with hCards?",
    "question_th": "สโมสรใดในปี 2008 มีชื่อว่า 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_en": "What is the least amount of wins when against is 1314?",
    "question_th": "จำนวนชัยชนะน้อยที่สุดเมื่อเทียบกับ 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_en": "What is the number of against when the wins were 8, and a Club of South Warrnambool, with less than 0 draws?",
    "question_th": "เมื่อชนะคือ 8 และคลับ ออฟ เซาท์ วอร์นัมบูล เสมอน้อยกว่า 0 มีจำนวนเท่าใด?",
    "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_en": "What is the number of wins when the against is larger than 1155, for Warrnambool, with more than 0 draws?",
    "question_th": "จำนวนการชนะเมื่อต่อมากกว่า 1155 สำหรับวาร์นัมบุลโดยเสมอมากกว่า 0 เป็นเท่าใด?",
    "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_en": "What score has 15.0% as the 2012?",
    "question_th": "คะแนนอะไรที่มี 15.0% เป็นปี 2012?",
    "context": "CREATE TABLE table_name_87 (score VARCHAR)"
  },
  {
    "answer": "SELECT 2008 FROM table_name_31 WHERE 2009 = \"14.2%\"",
    "question_en": "What 2008 has 14.2% as the 2009?",
    "question_th": "ปี 2551 ใดมี 14.2% เท่ากับปี 2552",
    "context": "CREATE TABLE table_name_31 (Id VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_16 WHERE 2012 = \"15.0%\"",
    "question_en": "What score has 15.0% as the 2012?",
    "question_th": "คะแนนอะไรที่มี 15.0% เป็นปี 2012?",
    "context": "CREATE TABLE table_name_16 (score VARCHAR)"
  },
  {
    "answer": "SELECT 2009 FROM table_name_49 WHERE 2007 = \"18.5%\"",
    "question_en": "What 2009 has 18.5% as the 2007?",
    "question_th": "ปี 2552 ใดมี 18.5% เท่ากับปี 2550",
    "context": "CREATE TABLE table_name_49 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_33 WHERE 2010 = \"12.7%\"",
    "question_en": "What 2011 has 12.7% as the 2010?",
    "question_th": "ปี 2554 ใดมี 12.7% เท่ากับปี 2553",
    "context": "CREATE TABLE table_name_33 (Id VARCHAR)"
  },
  {
    "answer": "SELECT MAX(week) FROM table_name_44 WHERE result = \"l 24-0\"",
    "question_en": "What is the Week of the game with a Result of L 24-0?",
    "question_th": "สัปดาห์ของเกมที่ผลการแข่งขัน 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_en": "What is the Week number on December 18, 1960?",
    "question_th": "เลขประจำสัปดาห์ของวันที่ 18 ธันวาคม 1960 คืออะไร?",
    "context": "CREATE TABLE table_name_17 (week VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT pick FROM table_name_3 WHERE position = \"defensive end\"",
    "question_en": "Which pick played the Defensive End position?",
    "question_th": "ตัวเลือกใดที่เล่นตำแหน่ง Defensive End?",
    "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_en": "How many picks were taken before round 3 and played Linebacker?",
    "question_th": "ก่อนรอบ 3 จะเลือกเล่น 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_en": "What is the average number of silver medals won among nations that won 9 medals total?",
    "question_th": "จำนวนเหรียญเงินโดยเฉลี่ยที่ได้รับจากประเทศที่ได้รับทั้งหมด 9 เหรียญคือเท่าใด",
    "context": "CREATE TABLE table_name_88 (silver INTEGER, total VARCHAR)"
  },
  {
    "answer": "SELECT MAX(round) FROM table_name_63 WHERE pick > 179",
    "question_en": "Which Round has a Pick larger than 179?",
    "question_th": "รอบใดที่มีพิคมากกว่า 179?",
    "context": "CREATE TABLE table_name_63 (round INTEGER, pick INTEGER)"
  },
  {
    "answer": "SELECT MAX(pick) FROM table_name_33 WHERE player = \"jamar martin\"",
    "question_en": "What is jamar martin's highest pick?",
    "question_th": "ตัวเลือกสูงสุดของ Jamar Martin คืออะไร?",
    "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_en": "What teams rank is higher than 4 with a speed of 104.574mph?",
    "question_th": "ทีมใดที่มีอันดับสูงกว่า 4 ด้วยความเร็ว 104.574 ไมล์ต่อชั่วโมง?",
    "context": "CREATE TABLE table_name_91 (team VARCHAR, rank VARCHAR, speed VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_32 WHERE rider = \"anthony redmond\"",
    "question_en": "What team does Anthony Redmond ride for?",
    "question_th": "Anthony Redmond ขี่ให้กับทีมใด",
    "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_en": "What was the speed with a time of 1:03.41.86 and a rank smaller than 3?",
    "question_th": "ความเร็วด้วยเวลา 1:03.41.86 และอันดับน้อยกว่า 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_en": "What school in 72 Scott county has an enrollment more than 473 with an AAA IHSAA Class?",
    "question_th": "โรงเรียนใดใน 72 Scott County มีการลงทะเบียนมากกว่า 473 ด้วยชั้นเรียน AAA IHSAA",
    "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_en": "What's the mascot of Eastern Pekin having less than 627 enrolled and an AA for their IHSAA Class?",
    "question_th": "อะไรคือตัวนำโชคของ Eastern Pekin ที่มีผู้ลงทะเบียนน้อยกว่า 627 คนและ AA สำหรับชั้นเรียน IHSAA ของพวกเขา",
    "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_en": "What's the most enrolled having the dragons for a mascot and an AAA for the IHSAA Class?",
    "question_th": "อะไรคือสิ่งที่ลงทะเบียนมากที่สุดในการให้มังกรเป็นมาสคอตและ AAA สำหรับชั้นเรียน IHSAA",
    "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_en": "What's the county of Eastern Pekin school with fewer than 774 enrolled?",
    "question_th": "โรงเรียน Eastern Pekin ในเขตใดที่มีผู้ลงทะเบียนน้อยกว่า 774 คนคือที่ไหน",
    "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_en": "What's the location of the school having the panthers as a mascot with an AAA for the IHSAA Class?",
    "question_th": "โรงเรียนมีเสือดำเป็นมาสคอตที่มี AAA สำหรับชั้นเรียน IHSAA ตั้งอยู่ที่ใด",
    "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_en": "What's the IHSAA Class when the mascot was the Musketeers?",
    "question_th": "IHSAA Class คืออะไรในสมัยที่มาสคอตเป็น 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_en": "Who was the director of Chaser on the Rocks?",
    "question_th": "ใครเป็นผู้กำกับ 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_en": "What are the characters from the movie Suppressed Duck?",
    "question_th": "ตัวละครจากภาพยนตร์เรื่อง 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_en": "How many picks on average did Jay Bruchak have before round 6?",
    "question_th": "Jay Bruchak โดยเฉลี่ยเลือกได้กี่ครั้งก่อนรอบ 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_en": "How many rounds did Pierre Bland have a pick larger than 148?",
    "question_th": "ปิแอร์ บลันด์ มีตัวเลือกมากกว่า 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_en": "What was the earliest round that Purdue had a pick larger than 10?",
    "question_th": "รอบแรกสุดที่ Purdue มีตัวเลือกมากกว่า 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_en": "How many picks did Jay Bruchak have?",
    "question_th": "Jay Bruchak มีให้เลือกกี่คน?",
    "context": "CREATE TABLE table_name_31 (pick VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_85 WHERE home = \"alianza\"",
    "question_en": "In what round was the Alianza home game?",
    "question_th": "เกมเหย้าของอลิอันซาแข่งรอบไหน?",
    "context": "CREATE TABLE table_name_85 (round VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT away FROM table_name_48 WHERE round = \"round 16\"",
    "question_en": "What was the visiting team that played a round 16 game?",
    "question_th": "ทีมเยือนที่เล่นรอบ 16 ทีมคือทีมใด?",
    "context": "CREATE TABLE table_name_48 (away VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT SUM(week) FROM table_name_68 WHERE attendance = 62 OFFSET 289",
    "question_en": "How many weeks have an Attendance of 62,289?",
    "question_th": "มีผู้เข้าร่วม 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_en": "Which Week has an Attendance larger than 65,070?",
    "question_th": "สัปดาห์ใดที่มีผู้เข้าร่วมมากกว่า 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_en": "Which Week has an Opponent of atlanta falcons, and an Attendance smaller than 63,114?",
    "question_th": "สัปดาห์ใดที่มีคู่ต่อสู้ของ Atlanta Falcons และมีผู้เข้าร่วมน้อยกว่า 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_en": "which Tms has a Season of 2013?",
    "question_th": "Tms ใดมีฤดูกาลปี 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_en": "What's the population with a code more than 90902 and an area less than 1,335.47?",
    "question_th": "ประชากรที่มีรหัสมากกว่า 90902 และพื้นที่น้อยกว่า 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_en": "What's the most area of Bochum Part 2 with a population less than 15,911?",
    "question_th": "โบคุม ตอนที่ 2 มีประชากรน้อยกว่า 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_en": "What is the Original NFL team of the CB Player?",
    "question_th": "ทีม Original NFL ของ 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_en": "What is the College of the WR Player from SWC Conf?",
    "question_th": "College of the WR Player จาก 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_en": "What Player is from the College of memphis?",
    "question_th": "ผู้เล่นคนไหนจากวิทยาลัยเมมฟิส?",
    "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_en": "What is the College of the LB Player with Big Ten Conf.?",
    "question_th": "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_en": "How many draws are there when there are 11 wins, and more than 7 losses?",
    "question_th": "ชนะ 11 นัด แพ้ 7 นัด เสมอกันทั้งหมดกี่นัด?",
    "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_en": "What is the draws when there are less than 3 losses and more than 16 wins?",
    "question_th": "เสมอเมื่อแพ้น้อยกว่า 3 ครั้งและชนะมากกว่า 16 ครั้งจะเป็นอย่างไร?",
    "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_en": "What is the wins when there are 5 losses, and against is more than 1205?",
    "question_th": "ชัยชนะจะเป็นอย่างไรเมื่อแพ้ 5 ครั้งและแพ้มากกว่า 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_en": "What is the losses when Sunrayia FL is Red Cliffs, and the against is more than 2294?",
    "question_th": "อะไรคือความสูญเสียเมื่อ Sunrayia FL คือ Red Cliffs และฝ่ายตรงข้ามมากกว่า 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_en": "What is the number against when losses are smaller than 3, and wins arelarger than 16?",
    "question_th": "ตัวเลขจะเทียบกับอะไรเมื่อขาดทุนน้อยกว่า 3 และชนะมากกว่า 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_en": "What is the Notes of the Frequency with Call sign CFUN-FM-1?",
    "question_th": "หมายเหตุความถี่พร้อมสัญญาณเรียกขาน 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_en": "What is the Format of FM 100.5 Licensed to Hope?",
    "question_th": "รูปแบบของ 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_en": "What is the Notes of the Frequency with a call sign of CBUE-FM?",
    "question_th": "หมายเหตุความถี่ที่มีสัญญาณเรียกขานของ 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_en": "what is the average dynamo when draw is more than 0, played is less than 15 and spartak is more than 1?",
    "question_th": "ไดนาโมเฉลี่ยเป็นเท่าใดเมื่อเสมอมากกว่า 0 เล่นน้อยกว่า 15 และสปาร์ตักมากกว่า 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_en": "what is the highest spartak when played is less than 15 and dynamo is less than 3?",
    "question_th": "สปาร์ตักที่สูงที่สุดเมื่อเล่นน้อยกว่า 15 และไดนาโมน้อยกว่า 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_en": "what is the most draw when the competition is soviet league and dynamo is more than 34?",
    "question_th": "โซเวียตลีกและไดนาโมเกิน 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_en": "what is the sum of spartak when played is 102 and draw is less than 19?",
    "question_th": "ผลรวมของสปาร์ตักเมื่อเล่นคือ 102 และเสมอน้อยกว่า 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_en": "what is the least dynamo when spartak is more than 9, competition is totals and draw is more than 24?",
    "question_th": "อะไรคือไดนาโมที่น้อยที่สุดเมื่อสปาร์ตักมากกว่า 9 การแข่งขันคือผลรวม และเสมอมากกว่า 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_en": "What's the result when the Washington Redskins were the opponents on a week after 8?",
    "question_th": "ผลลัพธ์จะเป็นเช่นไรเมื่อวอชิงตัน เรดสกินส์เป็นคู่ต่อสู้ในหนึ่งสัปดาห์หลังจาก 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_en": "What is the 4.45 for Anna Rogowska from Poland?",
    "question_th": "4.45 สำหรับ Anna Rogowska จากโปแลนด์คือเท่าไร",
    "context": "CREATE TABLE table_name_46 (nationality VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT 445 FROM table_name_5 WHERE name = \"yelena isinbayeva\"",
    "question_en": "What is the 4.45 for Yelena Isinbayeva?",
    "question_th": "4.45 ของเยเลนา อิซินบาเยวาคือเท่าไร",
    "context": "CREATE TABLE table_name_5 (name VARCHAR)"
  },
  {
    "answer": "SELECT AVG(result) FROM table_name_7 WHERE name = \"anna rogowska\"",
    "question_en": "What is Anna Rogowska's average result?",
    "question_th": "ผลลัพธ์โดยเฉลี่ยของ Anna Rogowska คืออะไร?",
    "context": "CREATE TABLE table_name_7 (result INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_13 WHERE 445 = \"o\" AND 455 = \"xo\"",
    "question_en": "What national has 4.45 for o and 4.55 for xo?",
    "question_th": "ชาติใดมี 4.45 สำหรับ o และ 4.55 สำหรับ 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_en": "What is the sum of staterooms in with a year buit of 2008, and a crew less than 28?",
    "question_th": "ผลรวมของห้องรับแขกในปี 2551 และลูกเรือน้อยกว่า 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_en": "What is the total for guests with a ship name of rv indochina, and a crew smaller than 28?",
    "question_th": "แขกที่มีชื่อเรือ rv indochina และลูกเรือที่อายุน้อยกว่า 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_en": "what is the country when the total is 111 and the day 1 is 69?",
    "question_th": "ประเทศอะไรเมื่อยอดรวมเป็น 111 และวันที่ 1 คือ 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_en": "what is the average rank when the day 1 is less than 71 and the country is romania?",
    "question_th": "อันดับเฉลี่ยวันที่ 1 น้อยกว่า 71 และประเทศคือโรมาเนียคือเท่าไร?",
    "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_en": "how many times is the athlete jin di and the total less than 118?",
    "question_th": "นักกีฬาจินตี้กี่ครั้งแล้วรวมน้อยกว่า 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_en": "What is the highest goal for a GEO nat., that ended after 2010?",
    "question_th": "เป้าหมายสูงสุดสำหรับ GEO nat. ที่สิ้นสุดหลังปี 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_en": "what is the venue when the year is 2006, the competition is asian games and the event is 400 m?",
    "question_th": "สถานที่จัดงานเมื่อปี 2549 คือการแข่งขันเอเชียนเกมส์และงานระยะทาง 400 ม.?",
    "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_en": "what is the venue when the event is 4x400 m relay and the competition is asian championships?",
    "question_th": "สถานที่จัดงานคืองานวิ่งผลัด 4x400 ม. และการแข่งขันชิงแชมป์เอเชียคือที่ไหน?",
    "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_en": "what is the venue when the competition is asian games, the event is 4x400 m relay and the year is 2002?",
    "question_th": "สถานที่จัดการแข่งขันคือเอเชียนเกมส์ งานวิ่งผลัด 4x400 ม. และปี พ.ศ. 2545 คืออะไร?",
    "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_en": "During the voting order 11, when the commentator was pierre tchernia, who was the spokesperson?",
    "question_th": "ระหว่างลำดับการลงคะแนนเสียง 11 เมื่อผู้วิจารณ์คือ ปิแอร์ เชอร์เนีย ใครเป็นโฆษก?",
    "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_en": "What was the voting order when bunny carr was the commentator?",
    "question_th": "ลำดับการลงคะแนนเสียงคืออะไรเมื่อบันนี่ คาร์ เป็นผู้วิจารณ์?",
    "context": "CREATE TABLE table_name_50 (voting_order INTEGER, commentator VARCHAR)"
  },
  {
    "answer": "SELECT commentator FROM table_name_35 WHERE spokespersons = \"michael aspel\"",
    "question_en": "Who was the commentator when the spokesperson was michael aspel?",
    "question_th": "ใครคือผู้วิจารณ์เมื่อโฆษกคือไมเคิล แอสเปล",
    "context": "CREATE TABLE table_name_35 (commentator VARCHAR, spokespersons VARCHAR)"
  },
  {
    "answer": "SELECT voting_order FROM table_name_95 WHERE commentator = \"renato tagliani\"",
    "question_en": "What was the voting order when the commentator was renato tagliani?",
    "question_th": "ลำดับการลงคะแนนเสียงเมื่อผู้วิจารณ์คือ เรนาโต ตาเกลียนี คืออะไร?",
    "context": "CREATE TABLE table_name_95 (voting_order VARCHAR, commentator VARCHAR)"
  },
  {
    "answer": "SELECT AVG(bronze) FROM table_name_15 WHERE total < 1",
    "question_en": "Which Bronze has a Total smaller than 1?",
    "question_th": "บรอนซ์ใดมีคะแนนรวมน้อยกว่า 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_en": "How much Silver has a Bronze larger than 1, and a Gold of 0, and a Rank smaller than 4?",
    "question_th": "เงินเท่าใดที่มีเหรียญทองแดงมากกว่า 1 และทองเป็น 0 และมีอันดับน้อยกว่า 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_en": "Which Bronze has a Rank of 4, and a Gold smaller than 0?",
    "question_th": "ทองแดงใดมีอันดับ 4 และทองน้อยกว่า 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_en": "How much Gold has a Bronze smaller than 2, and a Silver of 0, and a Rank larger than 3?",
    "question_th": "ทองคำจำนวนเท่าใดที่มีทองแดงน้อยกว่า 2 และเงินเป็น 0 และอันดับมากกว่า 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_en": "What percentage of the 2011 population had a mother tongue language that was spoken by 45.22% of the population in 2006 (over 120)?",
    "question_th": "ประชากรในปี 2554 มีภาษาแม่ที่พูดโดย 45.22% ของประชากรในปี 2549 (มากกว่า 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_en": "What is the total number of people in 2011 speaking the mother tongue language spoken by 120 in 2006?",
    "question_th": "จำนวนคนทั้งหมดในปี 2554 ที่พูดภาษาแม่ 120 คนในปี 2549 เป็นเท่าใด",
    "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_en": "How many people ha Romanian as their mother tongue in 2006?",
    "question_th": "มีกี่คนที่ใช้ภาษาโรมาเนียเป็นภาษาแม่ในปี 2549",
    "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_en": "What is the mother tongue language shared by 300 people in 2006?",
    "question_th": "ภาษาแม่ที่ใช้ร่วมกันโดย 300 คนในปี 2549 คืออะไร?",
    "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_en": "What's the total number of points when the English translation is Long Live Life and the draw is less than 2?",
    "question_th": "เมื่อแปลภาษาอังกฤษ Long Live Life และเสมอกันน้อยกว่า 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_en": "What's the language of Draw number 9?",
    "question_th": "เลข 9 เป็นภาษาอะไรคะ?",
    "context": "CREATE TABLE table_name_65 (language VARCHAR, draw VARCHAR)"
  },
  {
    "answer": "SELECT MIN(points) FROM table_name_87 WHERE language = \"portuguese\"",
    "question_en": "What are the lowest points when the language is Portuguese?",
    "question_th": "อะไรคือจุดต่ำสุดเมื่อภาษาโปรตุเกส?",
    "context": "CREATE TABLE table_name_87 (points INTEGER, language VARCHAR)"
  },
  {
    "answer": "SELECT island FROM table_name_74 WHERE summit = \"haleakalā\"",
    "question_en": "What's the island with a summit of Haleakalā?",
    "question_th": "เกาะอะไรที่มียอดแหลมฮาลีกลา?",
    "context": "CREATE TABLE table_name_74 (island VARCHAR, summit VARCHAR)"
  },
  {
    "answer": "SELECT MIN(col__m_) FROM table_name_96 WHERE island = \"island of molokaʻi\" AND rank < 6",
    "question_en": "What's the lowest Col ranked less than 6 with an Island of Molokaʻi?",
    "question_th": "Col ที่ต่ำที่สุดอันดับที่น้อยกว่า 6 กับเกาะ Moloka'i คืออะไร?",
    "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_en": "What's the col (m) ranked more than 4 with a summit of Kawaikini?",
    "question_th": "คอ(ม.)อันดับ4กับยอดกาไวกินี่มีอะไรบ้าง?",
    "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ā\"",
    "question_en": "What's the rank when the col (m) is less than 33 and has a summit of Haleakalā?",
    "question_th": "เมื่อคอล (ม.) น้อยกว่า 33 และมียอดฮาลีกลาอยู่อันดับเท่าไหร่?",
    "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_en": "What's the summit when the rank is less than 2 and has a col (m) of 0?",
    "question_th": "จุดสูงสุดเมื่ออันดับน้อยกว่า 2 และมีคอลัมน์ (m) เป็น 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_en": "Which Year has an Edition of 41st?",
    "question_th": "ปีใดมีฉบับที่ 41?",
    "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_en": "How many Events have a Country of trinidad and tobago, and a Date of march 30-april 1?",
    "question_th": "มีกี่เหตุการณ์ที่มีประเทศตรินิแดดและโตเบโก และมีวันที่ 30 มีนาคม - 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_en": "Which Country has a Top Team of jam, and an Edition of 31st?",
    "question_th": "ประเทศใดมีทีมแยมอันดับต้น ๆ และรุ่นที่ 31?",
    "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_en": "What was the outcome of the final with a partner of Brett Steven?",
    "question_th": "ผลการแข่งขันรอบชิงชนะเลิศกับคู่หูของ Brett Steven เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_62 (outcome VARCHAR, partner VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_84 WHERE tournament = \"italy f28\"",
    "question_en": "On what type of surface was the tournament of Italy f28?",
    "question_th": "การแข่งขันของ 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_en": "Who was the opponent in the final of the Senegal f2 tournament>",
    "question_th": "ใครคือคู่ต่อสู้ในรอบสุดท้ายของทัวร์นาเมนต์ F2 เซเนกัล>",
    "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_en": "What's the score on December 12, 1998?",
    "question_th": "คะแนนเมื่อวันที่ 12 ธันวาคม 2541 เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_11 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_93 WHERE score = \"7-1\"",
    "question_en": "What was the venue when the score was 7-1?",
    "question_th": "สนามไหนเมื่อสกอร์เป็น 7-1?",
    "context": "CREATE TABLE table_name_93 (venue VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_18 WHERE competition = \"friendly\"",
    "question_en": "What's the score of the friendly competition?",
    "question_th": "การแข่งขันกระชับมิตรคะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_18 (score VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_59 WHERE venue = \"singapore\"",
    "question_en": "What's the competition that happened in Singapore?",
    "question_th": "การแข่งขันที่สิงคโปร์เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_59 (competition VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_97 WHERE competition = \"1995 southeast asian games\"",
    "question_en": "What's the venue of the 1995 Southeast Asian Games?",
    "question_th": "สถานที่จัดงานซีเกมส์ 1995 คือที่ไหน?",
    "context": "CREATE TABLE table_name_97 (venue VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT date_of_inauguration FROM table_name_71 WHERE \"lifespan\" = \"lifespan\"",
    "question_en": "What was the date of the inauguration in the row with an entry of lifespan in the lifespan column?",
    "question_th": "วันที่เข้ารับตำแหน่งในแถวที่มีรายการอายุขัยในคอลัมน์อายุการใช้งานคือวันที่เท่าไร?",
    "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_en": "What was the date of death entry in the row that has a date of inauguration entry of date of inauguration?",
    "question_th": "วันที่เสียชีวิตในแถวที่มีวันที่เข้ารับตำแหน่งคือวันที่เข้ารับตำแหน่ง?",
    "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_en": "What is the length of retirement for president Sharma, Shankar Shankar Dayal Sharma?",
    "question_th": "ระยะเวลาเกษียณอายุของประธานาธิบดี 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_en": "How many draw is in a place that is less than 1?",
    "question_th": "ที่ที่น้อยกว่า 1 มีเสมอกันกี่ตัว?",
    "context": "CREATE TABLE table_name_67 (draw VARCHAR, place INTEGER)"
  },
  {
    "answer": "SELECT AVG(draw) FROM table_name_31 WHERE artist = \"emilya valenti\"",
    "question_en": "Emilya Valenti has what draw average?",
    "question_th": "Emilya Valenti มีค่าเฉลี่ยการเสมอเท่าไร?",
    "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 陀槍師姐\"",
    "question_en": "What's the airing date of Armed Reaction 陀槍師姐 with 20 episodes in the Modern Action genre having an official website?",
    "question_th": "Armed Reaction 陀槍師姐 ซึ่งมี 20 ตอนประเภท Modern Action มีเว็บไซต์อย่างเป็นทางการจะออกอากาศวันไหน",
    "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_en": "What's the airing date for the show with 62 episodes?",
    "question_th": "ละครมี 62 ตอน ออกอากาศวันไหนคะ?",
    "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 烈火雄心\"",
    "question_en": "What's the official website of Burning Flame 烈火雄心 with 22 episodes?",
    "question_th": "เว็บทางการของ Burning Flame 烈火雄จิตวิญญาณ จำนวน 22 ตอนคือเว็บอะไรคะ?",
    "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_en": "what is the position for the competitor that has a score more than 7",
    "question_th": "ผู้เข้าแข่งขันที่ได้คะแนนเกิน 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_en": "what is the score for the 5th position and a score less than 7",
    "question_th": "คะแนนอันดับที่ 5 และคะแนนน้อยกว่า 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_en": "what is the total scored for the 8th position and a score more than 6.6",
    "question_th": "คะแนนรวมอันดับที่ 8 และคะแนนเกิน 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_en": "What is the Meet of the Event with a Time of 7:55.02?",
    "question_th": "การพบกันของงานคืออะไร เวลา 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_en": "What is the Location of the Event with a Time of 2:22.32?",
    "question_th": "สถานที่จัดงาน เวลา 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_en": "Which Body Width/mm has a Lead Pitch/mm smaller than 0.55, and a Body Length/mm larger than 18.4?",
    "question_th": "ความกว้างของร่างกาย/มม. ใดที่มีระยะพิทช์ตะกั่ว/มม. เล็กกว่า 0.55 และความยาวลำตัว/มม. มากกว่า 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_en": "Which Body Length/mm has a Lead Pitch/mm smaller than 0.5?",
    "question_th": "ความยาวลำตัว/มม. ใดที่มีระยะพิทช์ตะกั่ว/มม. เล็กกว่า 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_en": "How much Body Width/mm has a Body Length/mm of 18.4, and Pins of 40?",
    "question_th": "ความกว้างของร่างกาย/มม. มีความยาวลำตัว/มม. เท่ากับ 18.4 และพิน 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_en": "Which Body Width/mm has a Lead Pitch/mm smaller than 0.55, and a Part Number of tsop48?",
    "question_th": "ความกว้างของตัวเครื่อง/มม. ใดที่มีระยะพิทช์ตะกั่ว/มม. เล็กกว่า 0.55 และหมายเลขชิ้นส่วนของ 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_en": "Which Lead Pitch/mm has a Part Number of tsop40, and a Body Length/mm larger than 18.4?",
    "question_th": "Lead Pitch/mm ใดมีหมายเลขชิ้นส่วน tsop40 และความยาวตัวถัง/มม. มากกว่า 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_en": "What was the least attendance when the time was 3:15?",
    "question_th": "ผู้เข้าร่วมน้อยที่สุดเมื่อเวลา 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_en": "What date was at Oakland-Alameda County Coliseum with a time of 3:40 and a game less than 5?",
    "question_th": "ที่สนามโอ๊คแลนด์-อลาเมดา เคาน์ตี โคลิเซียม วันที่เท่าไหร่ด้วยเวลา 3:40 น. และเกมน้อยกว่า 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_en": "Which Bronze has a Gold larger than 1, and a Total larger than 11, and a Silver larger than 5?",
    "question_th": "ทองแดงใดมีทองคำมากกว่า 1 และผลรวมมากกว่า 11 และเงินมากกว่า 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_en": "How many silvers have more than 2 golds?",
    "question_th": "มีกี่เหรียญเงินที่มีมากกว่า 2 เหรียญทอง?",
    "context": "CREATE TABLE table_name_67 (silver VARCHAR, gold INTEGER)"
  },
  {
    "answer": "SELECT firefox_, _other_mozilla FROM table_name_12 WHERE chrome = \"1.93%\"",
    "question_en": "What percentage of browsers were using Firefox or other Mozilla browsers during the period in which 1.93% were using Chrome?",
    "question_th": "เปอร์เซ็นต์ของเบราว์เซอร์ที่ใช้ Firefox หรือเบราว์เซอร์ Mozilla อื่นๆ ในช่วงที่ 1.93% ใช้ 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_en": "What percentage of browsers were using Internet Explorer during the period in which 24.91% were using Chrome?",
    "question_th": "มีเบราว์เซอร์กี่เปอร์เซ็นต์ที่ใช้ Internet Explorer ในช่วงที่ 24.91% ใช้ 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_en": "What percentage of browsers were using Chrome during the period in which 72.03% were using Internet Explorer?",
    "question_th": "เปอร์เซ็นต์ของเบราว์เซอร์ที่ใช้ Chrome ในช่วงที่ 72.03% ใช้ 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_en": "What percentage of browsers were using Safari during the period in which 2.05% were using Chrome?",
    "question_th": "เปอร์เซ็นต์ของเบราว์เซอร์ที่ใช้ Safari ในช่วงที่ 2.05% ใช้ 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_en": "What percentage of browsers were using Chrome during the period in which 0.30% were using Opera and 6.77% were using Safari?",
    "question_th": "เปอร์เซ็นต์ของเบราว์เซอร์ที่ใช้ Chrome ในช่วงที่ 0.30% ใช้ Opera และ 6.77% ใช้ 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_en": "Which TV network was located in Brazil?",
    "question_th": "เครือข่ายทีวีใดตั้งอยู่ในบราซิล",
    "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_en": "What country has a series premier of unknown and mbc action as their TV network?",
    "question_th": "ประเทศใดมีซีรีส์พรีเมียร์เรื่องไม่ทราบเรื่องและรายการ MBC เป็นเครือข่ายทีวีของพวกเขา",
    "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_en": "What is the weekly schedule for the network sky italia?",
    "question_th": "ตารางรายสัปดาห์ของเครือข่าย 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_en": "How many Gold medals for the Nations with 6 or more Bronze medals and 18 or more Silver?",
    "question_th": "มีเหรียญทองกี่เหรียญสำหรับชาติที่มีเหรียญทองแดง 6 เหรียญขึ้นไป และเหรียญเงิน 18 เหรียญขึ้นไป",
    "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_en": "How many Gold medals did the Soviet Union receive?",
    "question_th": "สหภาพโซเวียตได้รับเหรียญทองกี่เหรียญ?",
    "context": "CREATE TABLE table_name_98 (gold INTEGER, nation VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_43 WHERE pos = \"cf\"",
    "question_en": "What's the name of the person in the CF Pos?",
    "question_th": "บุคคลใน 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_en": "Which league cup apps has FA as the cup apps of 5?",
    "question_th": "แอพลีกคัพไหนที่มี FA เป็นแอพบอล 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_en": "What is the lowest league goals that has fw as the position, total goals greater than 9, with league cup goals greater than 4?",
    "question_th": "ประตูลีกต่ำสุดที่มี f ในตำแหน่ง ประตูรวมมากกว่า 9 ประตูลีกคัพมากกว่า 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_en": "What is the earliest year that a team event was included at Vilamoura, Portugal?",
    "question_th": "ปีแรกสุดที่มีการรวมกิจกรรมของทีมที่เมืองวิลามูรา ประเทศโปรตุเกส คือปีใด",
    "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_en": "In which event before 2001 did the athlete place 16th?",
    "question_th": "นักกีฬาได้อันดับที่ 16 ก่อนปี 2544 ในงานใด",
    "context": "CREATE TABLE table_name_96 (event VARCHAR, year VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_24 WHERE result = \"25th\"",
    "question_en": "In which tournament was the result 25th?",
    "question_th": "ผลการแข่งขันวันที่ 25 ในรายการใด?",
    "context": "CREATE TABLE table_name_24 (tournament VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT artist FROM table_name_28 WHERE draw > 6 AND place > 14",
    "question_en": "What artist has more than 6 draws, and in a place higher than 14?",
    "question_th": "ศิลปินคนไหนมีมากกว่า 6 งวดและอยู่ในอันดับที่สูงกว่า 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_en": "What Social Democratic has a Democratic and Social Centre of 10.0% 22 seats?",
    "question_th": "พรรคสังคมนิยมประชาธิปไตยแห่งใดมีศูนย์กลางประชาธิปไตยและสังคม 10.0% 22 ที่นั่ง?",
    "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_en": "What Social Democratic has the Democratic and Social Centre of 4.4% 4 seats?",
    "question_th": "พรรคสังคมนิยมประชาธิปไตยใดมีศูนย์ประชาธิปไตยและสังคม 4.4% 4 ที่นั่ง?",
    "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_en": "How many teams were at the 2007 details tournament where there a top goalscorer was not awarded?",
    "question_th": "มีกี่ทีมในทัวร์นาเมนต์รายละเอียดปี 2007 ที่ไม่มีผู้ทำประตูสูงสุดไม่ได้รับรางวัล",
    "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_en": "What is the location of the tournament where the best goalkeeper had 164 (8.2)?",
    "question_th": "สถานที่ใดของทัวร์นาเมนต์ที่ผู้รักษาประตูที่ดีที่สุดมี 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_en": "What section were they in when there were tier 2 in 1996?",
    "question_th": "พวกเขาอยู่ในส่วนใดเมื่อมีระดับ 2 ในปี 1996?",
    "context": "CREATE TABLE table_name_30 (section VARCHAR, level VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT administration FROM table_name_21 WHERE division = \"ykkönen (first division)\" AND position = \"1st\" AND season = 1996",
    "question_en": "What is the administration when the division was Ykkönen (first division), and they were in the 1st position in 1996?",
    "question_th": "สมัยที่ดิวิชั่นคือ Ykkönen (ดิวิชั่น 1) อยู่ในสังกัดอะไร และอยู่อันดับ 1 ในปี 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_en": "What was the film title that emma thompson was the actress nominated for best supporting actress?",
    "question_th": "ชื่อภาพยนตร์ที่เอ็มมา ทอมป์สันเป็นนักแสดงที่ได้รับการเสนอชื่อเข้าชิงนักแสดงสมทบหญิงยอดเยี่ยมคืออะไร",
    "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_en": "What category was al pacino nominated for in the film, glengarry glen ross?",
    "question_th": "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_en": "What is the year when sigourney weaver was nominated for best actress?",
    "question_th": "ปีที่ Sigourney Weaver ได้รับการเสนอชื่อเข้าชิงนักแสดงนำหญิงยอดเยี่ยมคือปีใด",
    "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_en": "What year was holly hunter a nominee?",
    "question_th": "ฮอลลี่ฮันเตอร์ได้รับการเสนอชื่อเข้าชิงในปีใด",
    "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_en": "What is the per capita income of the county with a median family income of $40,492?",
    "question_th": "รายได้ต่อหัวของเทศมณฑลที่มีรายได้เฉลี่ยของครอบครัวอยู่ที่ 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_en": "what is the earliest year when the result is won and the role/episode is fox mulder?",
    "question_th": "ปีแรกสุดที่ผลการแข่งขันชนะ และบทบาท/ตอนคือ 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_en": "what is the year when the role/episode is david duchovny?",
    "question_th": "เดวิด ดูคอฟนี รับบท/ตอนในปีใด?",
    "context": "CREATE TABLE table_name_82 (year VARCHAR, role_episode VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_21 WHERE week = 9",
    "question_en": "What date has 9 as the week?",
    "question_th": "สัปดาห์ไหนมี 9 เป็นสัปดาห์?",
    "context": "CREATE TABLE table_name_21 (date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT AVG(total) FROM table_name_16 WHERE tally = \"0-8\"",
    "question_en": "What is the average total of the 0-8 tally?",
    "question_th": "คะแนนรวมเฉลี่ย 0-8 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_16 (total INTEGER, tally VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(rank) FROM table_name_6 WHERE opposition = \"tipperary\"",
    "question_en": "What is the total rank of the match with tipperary as the opposition?",
    "question_th": "อันดับรวมของแมตช์ที่มีทิปเปอร์รารีเป็นฝ่ายตรงข้ามอยู่ที่เท่าไร?",
    "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_en": "What is the lowest total of player tommy ring, who has a rank greater than 1?",
    "question_th": "ผู้เล่นทอมมี่ ริงที่มีอันดับมากกว่า 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_en": "What is the average rank of the match where offaly was the opposition and the total was greater than 9?",
    "question_th": "อันดับเฉลี่ยของแมตช์ที่ออฟฟาลีเป็นฝ่ายค้านและคะแนนรวมมากกว่า 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_en": "Which municipality has a party of Lega Friuli-VG that won elections before 2011?",
    "question_th": "เทศบาลใดมีพรรคของ Lega Friuli-VG ที่ชนะการเลือกตั้งก่อนปี 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_en": "Which party is Ettore Romoli from?",
    "question_th": "Ettore Romoli มาจากพรรคไหน?",
    "context": "CREATE TABLE table_name_99 (party VARCHAR, mayor VARCHAR)"
  },
  {
    "answer": "SELECT campus FROM table_name_59 WHERE location = \"brgy. alangilan, batangas city\"",
    "question_en": "What campus is in Brgy. Alangilan, Batangas City?",
    "question_th": "วิทยาเขตอะไรใน Brgy. อลันกิลัน เมืองบาทังกัส?",
    "context": "CREATE TABLE table_name_59 (campus VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT founded FROM table_name_41 WHERE location = \"balayan, batangas\"",
    "question_en": "When was the Balayan, Batangas campus founded?",
    "question_th": "วิทยาเขตบาลายัน วิทยาเขตบาทังกัสก่อตั้งขึ้นเมื่อใด",
    "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_en": "Who is the executive director of the Lemery, Batangas extension?",
    "question_th": "ใครคือผู้อำนวยการบริหารของส่วนขยาย Lemery, Batangas?",
    "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_en": "What is number of silver for the country with more than 0 gold, rank of 14, and more than 4 bronze?",
    "question_th": "หมายเลขเงินของประเทศที่มีมากกว่า 0 เหรียญทอง อันดับ 14 และมากกว่า 4 เหรียญทองแดง คือเท่าไร?",
    "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_en": "What is the number of gold for the country ranked 19?",
    "question_th": "ประเทศอันดับที่ 19 ได้ทองจำนวนเท่าใด?",
    "context": "CREATE TABLE table_name_19 (gold INTEGER, rank VARCHAR)"
  },
  {
    "answer": "SELECT MIN(silver) FROM table_name_83 WHERE bronze < 0",
    "question_en": "What is the least amount of silver when there is less than 0 bronze?",
    "question_th": "เงินน้อยที่สุดเมื่อมีน้อยกว่า 0 ทองแดงคือเท่าใด?",
    "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_en": "What is the most bronze when the total is 14, and there are more than 6 gold?",
    "question_th": "ทองแดงมากที่สุดเมื่อรวม 14 เหรียญทองคืออะไรและมีมากกว่า 6 เหรียญทอง?",
    "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_en": "Who has 187kg and a Snatch of Clean & Jerk?",
    "question_th": "ใครมีน้ำหนัก 187 กก. และ 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_en": "What is the Reserved for (SC / ST /None) when the constituency number is 203?",
    "question_th": "สงวนไว้สำหรับอะไร (SC / ST /ไม่มี) เมื่อหมายเลขเขตเลือกตั้งคือ 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_en": "What is the number of electorates (2009) for the Indore district, when reserved for (SC / ST /None) is none, and constituency number is 208?",
    "question_th": "จำนวนผู้มีสิทธิเลือกตั้ง (2552) สำหรับเขตอินดอร์ เมื่อจองไว้สำหรับ (SC / ST /ไม่มี) คือไม่มี และหมายเลขเขตเลือกตั้งคือ 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_en": "What percentage of users were using other browsers according to the source that reported 21.22% were using Firefox?",
    "question_th": "เปอร์เซ็นต์ของผู้ใช้ที่ใช้เบราว์เซอร์อื่นตามแหล่งที่มาที่รายงานว่า 21.22% ใช้ Firefox",
    "context": "CREATE TABLE table_name_95 (other VARCHAR, firefox VARCHAR)"
  },
  {
    "answer": "SELECT firefox FROM table_name_60 WHERE source = \"w3counter\"",
    "question_en": "According to W3Counter, what percentage of browsers used Firefox?",
    "question_th": "จากข้อมูลของ W3Counter เบราว์เซอร์ที่ใช้ Firefox มีกี่เปอร์เซ็นต์",
    "context": "CREATE TABLE table_name_60 (firefox VARCHAR, source VARCHAR)"
  },
  {
    "answer": "SELECT firefox FROM table_name_22 WHERE internet_explorer = \"21.70%\"",
    "question_en": "What percentage of users were using Firefox according to the source that reported 21.70% used Internet Explorer?",
    "question_th": "เปอร์เซ็นต์ของผู้ใช้ที่ใช้ Firefox ตามแหล่งที่มาที่รายงานว่า 21.70% ใช้ 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_en": "Which source reported 32.60% of browsers used Chrome?",
    "question_th": "แหล่งที่มาใดรายงานว่า 32.60% ของเบราว์เซอร์ใช้ Chrome",
    "context": "CREATE TABLE table_name_43 (source VARCHAR, chrome VARCHAR)"
  },
  {
    "answer": "SELECT firefox FROM table_name_66 WHERE safari = \"15.40%\"",
    "question_en": "What percentage of users were using Firefox according to the source that reported 15.40% used Safari?",
    "question_th": "ผู้ใช้ Firefox กี่เปอร์เซ็นต์ตามแหล่งที่มาที่รายงานว่า 15.40% ใช้ Safari",
    "context": "CREATE TABLE table_name_66 (firefox VARCHAR, safari VARCHAR)"
  },
  {
    "answer": "SELECT internet_explorer FROM table_name_53 WHERE firefox = \"20.01%\"",
    "question_en": "What percentage of users were using Internet Explorer according to the source that reported 20.01% used Firefox?",
    "question_th": "เปอร์เซ็นต์ของผู้ใช้ที่ใช้ Internet Explorer ตามแหล่งที่มาที่รายงานว่า 20.01% ใช้ 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_en": "How many points did team Rothmans Honda have in 1992?",
    "question_th": "ทีม Rothmans Honda มีคะแนนกี่คะแนนในปี 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_en": "What class before 1990 has points of 33?",
    "question_th": "คลาสไหนก่อนปี 1990 มี 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_en": "How many total points were in 1992?",
    "question_th": "ปี 2535 มีคะแนนรวมทั้งหมดกี่คะแนน?",
    "context": "CREATE TABLE table_name_74 (points VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_name_58 WHERE wins > 0 AND year = 1992",
    "question_en": "In 1992, what class has higher wins than 0?",
    "question_th": "ในปี 1992 คลาสใดมีชัยชนะมากกว่า 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_en": "What was the class that team Honda Britain was in with points higher than 0?",
    "question_th": "ทีม Honda Britain อยู่ในคลาสใดโดยมีคะแนนมากกว่า 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_en": "Which FA Cup Goals have League Cup Apps larger than 0, and a Name of trevor cherry?",
    "question_th": "ประตู FA Cup ใดที่มีแอป League Cup มากกว่า 0 และชื่อ 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_en": "How many League Goals have League Cup Goals smaller than 0?",
    "question_th": "ประตูลีกคัพที่มีประตูลีกคัพน้อยกว่า 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_en": "What's the 2009 of the Australian Open having a 1R in 2011?",
    "question_th": "Australian Open ปี 2009 ที่มี 1R ในปี 2011 คืออะไร?",
    "context": "CREATE TABLE table_name_56 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2008 FROM table_name_87 WHERE 2011 = \"1r\" AND tournament = \"australian open\"",
    "question_en": "What's the 2008 of the Australian Open when the 2011 was 1R?",
    "question_th": "Australian Open ปี 2008 เมื่อปี 2011 เป็น 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_en": "What's the 2008 of the US Open when 2010 was 2R and 2011 was 1R?",
    "question_th": "US Open ในปี 2008 คืออะไรในปี 2010 เป็น 2R และ 2011 เป็น 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_en": "What is the lowest number of episodes in a series with an airing date of 12 jan- 6 feb?",
    "question_th": "ซีรีส์ที่ออกอากาศระหว่างวันที่ 12 ม.ค.-6 ก.พ. มีตอนน้อยที่สุดคือเท่าใด",
    "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_en": "What tournament has petra mandula patricia wartusch as the opponent in the final?",
    "question_th": "การแข่งขันใดที่ Petra Mandula Patricia Wartusch เป็นคู่ต่อสู้ในรอบชิงชนะเลิศ?",
    "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_en": "What date has kimberly po nathalie tauziat as the opponent in the final?",
    "question_th": "Kimberly po nathalie tauziat เป็นคู่ต่อสู้ในรอบชิงชนะเลิศวันไหน?",
    "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_en": "What score has February 12, 2006 as the date?",
    "question_th": "วันที่ 12 กุมภาพันธ์ 2549 มีคะแนนเท่าไหร่?",
    "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_en": "What opponent in the final has October 9, 2005 as the date?",
    "question_th": "คู่ต่อสู้คนใดในรอบชิงชนะเลิศที่มีวันที่ 9 ตุลาคม พ.ศ. 2548 เป็นวันที่?",
    "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_en": "What is the to par for Bo Bae Song?",
    "question_th": "โบ๊เบซงต้องพาร์เท่าไร?",
    "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_en": "What is the to par for Jiyai Shin when the place is t1?",
    "question_th": "ค่าพาร์ของ Jiyai Shin คือเท่าไรเมื่ออันดับ 1 คือ?",
    "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_en": "What is the to par for Jiyai Shin in place t1?",
    "question_th": "ค่าพาร์ของ Jiyai Shin ในตำแหน่ง 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_en": "What was Laura Diaz's score for place t9?",
    "question_th": "คะแนนของลอร่า ดิแอซสำหรับอันดับที่ 9 เป็นเท่าใด",
    "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_en": "What country does Bo Bae Song play for?",
    "question_th": "โบ๊เบซ่งเล่นให้กับประเทศอะไร?",
    "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_en": "How many gold medals did Brazil win with a total of more than 55 medals?",
    "question_th": "บราซิลได้เหรียญทองทั้งหมดกี่เหรียญ รวมกว่า 55 เหรียญ",
    "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_en": "How many teams won more than 2 silver medals and fewer than 2 Bronze medals?",
    "question_th": "มีกี่ทีมที่ได้เหรียญเงินมากกว่า 2 เหรียญและเหรียญทองแดงน้อยกว่า 2 เหรียญ?",
    "context": "CREATE TABLE table_name_38 (rank VARCHAR, silver VARCHAR, bronze VARCHAR)"
  },
  {
    "answer": "SELECT MIN(gold) FROM table_name_92 WHERE nation = \"greece\"",
    "question_en": "What is the fewest gold medals won by Greece?",
    "question_th": "กรีซได้เหรียญทองน้อยที่สุดเท่าไหร่?",
    "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_en": "What is the lowest rank of the United States, with fewer than 4 bronze medals?",
    "question_th": "อันดับต่ำสุดของสหรัฐอเมริกาคือเหรียญทองแดงน้อยกว่า 4 เหรียญคืออะไร?",
    "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_en": "What is the highest number of gold medals won by a team that won fewer than 2 silver and fewer than 4 bronze medals?",
    "question_th": "จำนวนเหรียญทองสูงสุดที่ทีมชนะได้น้อยกว่า 2 เหรียญเงินและน้อยกว่า 4 เหรียญทองแดงคือเท่าใด",
    "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_en": "Which React has a Lane smaller than 4, and a Rank larger than 4, and a Time larger than 23.22?",
    "question_th": "React ใดที่มี Lane เล็กกว่า 4 และมีอันดับมากกว่า 4 และ Time มากกว่า 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_en": "What shows for against when draws are 0, and losses are 16?",
    "question_th": "จะแสดงให้เห็นอะไรเมื่อเสมอเป็น 0 และแพ้ 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_en": "What is the highest number of wins when draws are larger than 1, and byes are larger than 0?",
    "question_th": "จำนวนการชนะสูงสุดเมื่อเสมอมากกว่า 1 และบายมากกว่า 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_en": "Which team were runners-up in 2007 and had 1 under winners?",
    "question_th": "ทีมใดได้รองชนะเลิศในปี 2550 และมีผู้ชนะ 1 อันเดอร์พาร์",
    "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_en": "What is the sum of winners when 1983 is the years won?",
    "question_th": "ผลรวมของผู้ชนะในปี 1983 เป็นจำนวนปีที่ได้รับคืออะไร?",
    "context": "CREATE TABLE table_name_31 (winners VARCHAR, years_won VARCHAR)"
  },
  {
    "answer": "SELECT AVG(rank) FROM table_name_72 WHERE total = 12",
    "question_en": "Which Rank has a Total of 12?",
    "question_th": "อันดับใดมีทั้งหมด 12?",
    "context": "CREATE TABLE table_name_72 (rank INTEGER, total VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_12 WHERE opposition = \"limerick\"",
    "question_en": "Which Rank has an Opposition of limerick?",
    "question_th": "อันดับไหนมีฝ่ายค้านลิเมอริก?",
    "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_en": "How much Rank has a Tally of 0-10, and an Opposition of cork?",
    "question_th": "อันดับเท่าไหร่ที่มีคะแนน 0-10 และฝ่ายค้านคอร์ก?",
    "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_en": "Which Total has a Rank smaller than 3, and a County of cork?",
    "question_th": "Total ใดที่มีอันดับน้อยกว่า 3 และ 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_en": "Which Rank has a Tally of 4-0?",
    "question_th": "อันดับไหนมีแต้มรวม 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_en": "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?",
    "question_th": "เลนใดที่มีอันดับมากกว่า 3 และเวลาที่มากกว่า 45.63 และปฏิกิริยาที่น้อยกว่า 0.28800000000000003 และนักกีฬาของ geiner มัสยิดรา?",
    "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_en": "How many reactions have an Athlete of alleyne francique, and a Lane larger than 9?",
    "question_th": "มีกี่ปฏิกิริยาที่มีนักกีฬาของ alleyne Francique และเลนใหญ่กว่า 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_en": "What yeae has 6-08 (24) as a waterford score?",
    "question_th": "สิ่งที่ใช่มี 6-08 (24) เป็นคะแนนวอเตอร์ฟอร์ด?",
    "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_en": "What is the lowest year that has all-ireland hurling final as the competition, and 6-08 (24) as the waterford score?",
    "question_th": "ปีต่ำสุดที่ออลไอร์แลนด์ขว้างรอบชิงชนะเลิศในการแข่งขันคือปีใด และ 6-08 (24) เป็นคะแนนวอเตอร์ฟอร์ด",
    "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_en": "What is the waterford score that has a year prior to 1963, with all-ireland hurling final replay as the competition?",
    "question_th": "คะแนนวอเตอร์ฟอร์ดที่มีหนึ่งปีก่อนปี 1963 เป็นเท่าใดโดยการเล่นซ้ำรอบชิงชนะเลิศของไอร์แลนด์ทั้งหมดเป็นการแข่งขัน?",
    "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_en": "What rounds did RML Racing Silverline and James Nash compete?",
    "question_th": "RML Racing Silverline และ James Nash แข่งขันกันในรอบใด",
    "context": "CREATE TABLE table_name_28 (rounds VARCHAR, team VARCHAR, drivers VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_name_28 WHERE drivers = \"rob collard\"",
    "question_en": "What class is Rob Collard in?",
    "question_th": "Rob Collard อยู่คลาสไหน?",
    "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_en": "What is the car specs for team Airwaves BMW's driver Rob Collard?",
    "question_th": "สเปครถของร็อบ คอลลาร์ด นักแข่งของทีม Airwaves BMW เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_68 (car_spec VARCHAR, team VARCHAR, drivers VARCHAR)"
  },
  {
    "answer": "SELECT language FROM table_name_83 WHERE name = \"tv3\"",
    "question_en": "What is the language of TV3?",
    "question_th": "TV3เป็นภาษาอะไร?",
    "context": "CREATE TABLE table_name_83 (language VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT group FROM table_name_70 WHERE name = \"espn international sports\"",
    "question_en": "What is the group of ESPN International Sports?",
    "question_th": "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_en": "What is the type of station for ESPN International Sports?",
    "question_th": "สถานีประเภทใดของ ESPN International Sports คืออะไร?",
    "context": "CREATE TABLE table_name_74 (type VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_18 WHERE group = \"movies\"",
    "question_en": "What is the type of station that is in the movies group?",
    "question_th": "สถานีที่อยู่ในกลุ่มภาพยนตร์เป็นประเภทใด?",
    "context": "CREATE TABLE table_name_18 (type VARCHAR, group VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_6 WHERE total = 22",
    "question_en": "What is the name of the person with a total of 22?",
    "question_th": "คนที่มีทั้งหมด 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_en": "What's the nationality of Henry Carr having a time of 20.3y?",
    "question_th": "Henry Carr ที่มีเวลา 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_en": "What's the nationality of Livio Berruti?",
    "question_th": "ลิวิโอ เบอร์รูติมีสัญชาติอะไร",
    "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_en": "What's the nationality of Ray norton with a time of 20.6?",
    "question_th": "เรย์ นอร์ตัน เวลา 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_en": "What is the sum of the prominence in m of slovakia?",
    "question_th": "ผลรวมของความโดดเด่นในหน่วย m ของสโลวาเกียเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_39 (prominence__m_ INTEGER, country VARCHAR)"
  },
  {
    "answer": "SELECT prominence__m_ FROM table_name_57 WHERE col__m_ > 738",
    "question_en": "What is the prominence in m of a col in m greater than 738?",
    "question_th": "ความโดดเด่นใน m ของคอลัมน์ใน m มากกว่า 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ý štít\" AND elevation__m_ > 2 OFFSET 655",
    "question_en": "Whta is the lowest col in m of gerlachovský štít peak, which has an elevation greater than 2,655 m?",
    "question_th": "ค่า Col ที่ต่ำที่สุดในหน่วย m ของยอดเขา gerlachovský štít ซึ่งมีระดับความสูงมากกว่า 2,655 เมตร คืออะไร?",
    "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_en": "What is the average prominence in m of pietrosul rodnei peak, which has an elevation less than 2,303?",
    "question_th": "ค่าความโดดเด่นโดยเฉลี่ยในหน่วย m ของยอดเขา Pietrosul rodnei ซึ่งมีระดับความสูงน้อยกว่า 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_en": "What is the Score of the Shooter with a Comp of OG?",
    "question_th": "คะแนนของ Shooter กับ Comp ของ 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_en": "What is the B Score when the total is more than 16.125, and position is 3rd?",
    "question_th": "คะแนน B คืออะไรเมื่อผลรวมมากกว่า 16.125 และอันดับที่ 3?",
    "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_en": "What is the lowest A Score when the B Score is 9.15, and total is 16.05?",
    "question_th": "คะแนน A ต่ำสุดเมื่อคะแนน B คือ 9.15 และคะแนนรวมคือ 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_en": "Who had a time of 7:14.64?",
    "question_th": "ใครทำเวลาได้ 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_en": "What rank was Lassi Karonen?",
    "question_th": "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_en": "What was the rank when then time was 7:52.53?",
    "question_th": "อันดับเมื่อเวลานั้นคือ 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_en": "Who was the athlete from Germany with notes of Q?",
    "question_th": "นักกีฬาจากเยอรมนีที่มีโน้ตตัว Q คือใคร?",
    "context": "CREATE TABLE table_name_73 (athlete VARCHAR, notes VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_74 WHERE country = \"germany\"",
    "question_en": "What rank is Germany?",
    "question_th": "เยอรมนีอยู่อันดับไหน?",
    "context": "CREATE TABLE table_name_74 (rank VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT athlete FROM table_name_71 WHERE country = \"hong kong\"",
    "question_en": "Who was the athlete from Hong Kong?",
    "question_th": "นักกีฬาจากฮ่องกงคือใคร?",
    "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_en": "Which school has a mascot of the Blazers and in the Northeast Corner conference?",
    "question_th": "โรงเรียนใดมีมาสคอตของเบลเซอร์และอยู่ในการประชุมภาคตะวันออกเฉียงเหนือ?",
    "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_en": "Which mascot has an IHSAA Class and Football class of 2A/2A?",
    "question_th": "มาสคอตตัวใดมีคลาส IHSAA และคลาสฟุตบอลที่ 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_en": "Which player was selected in rounds under 3?",
    "question_th": "ผู้เล่นคนใดได้รับเลือกในรอบที่ต่ำกว่า 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_en": "Which Water (sqmi) has a Pop (2010) of 359, and a Longitude smaller than -97.176811?",
    "question_th": "น้ำใด (ตร.ม.) มีป๊อป (2010) อยู่ที่ 359 และลองจิจูดเล็กกว่า -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_en": "Which Land (sqmi) has a Water (sqmi) smaller than 0.04, and a Longitude of -96.794706?",
    "question_th": "ที่ดินใด (ตร.ม.) มีน้ำ (ตร.ม.) น้อยกว่า 0.04 และลองจิจูดที่ -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_en": "How much Latitude has a Water (sqmi) of 0.267, and an ANSI code larger than 1759605?",
    "question_th": "Latitude มีน้ำ (ตร.ม.) เท่ากับ 0.267 และรหัส ANSI ที่มีขนาดใหญ่กว่า 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_en": "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?",
    "question_th": "รหัส ANSI ใดมี GEO ID ที่ใหญ่กว่า 3809927140 และ Water ( sqmi) เล็กกว่า 0.492 และ Pop (2010) ที่ 37 และ Latitude ที่ใหญ่กว่า 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_en": "What is the Owner of Frequency 00 99.3?",
    "question_th": "เจ้าของความถี่ 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_en": "What is the Branding of Frequency 00 94.5?",
    "question_th": "การสร้างแบรนด์ของความถี่ 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_en": "What is the Call Sign of the Frequency by Owner CKUA Radio Foundation?",
    "question_th": "สัญญาณเรียกขานของความถี่โดยเจ้าของมูลนิธิวิทยุ CKUA คืออะไร?",
    "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_en": "What is the Owner of the Frequency with a Format of First Nations Community Radio?",
    "question_th": "เจ้าของความถี่ที่มีรูปแบบของวิทยุชุมชน First Nations คืออะไร?",
    "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_en": "Which School has a Previous Conference of none (new school), and a Year Joined larger than 1960, and a Location of versailles?",
    "question_th": "โรงเรียนใดไม่มีการประชุมใหญ่ครั้งก่อน (โรงเรียนใหม่) และเข้าร่วมหนึ่งปีมากกว่าปี 1960 และที่ตั้งของแวร์ซายส์?",
    "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_en": "Which Location has a Previous Conference of independents, and a Mascot of hilltoppers?",
    "question_th": "สถานที่ใดมีการประชุมอิสระครั้งก่อนและมีมาสคอตของชาวยอดเขา?",
    "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_en": "Which Year Joined has a Size larger than 93, and a Previous Conference of none (new school), and a Mascot of rebels?",
    "question_th": "ปีใดที่เข้าร่วมมีขนาดมากกว่า 93 และการประชุมครั้งก่อนไม่มีเลย (โรงเรียนใหม่) และตัวนำโชคของกลุ่มกบฏ?",
    "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_en": "How many years Joined have a Size smaller than 417, and an IHSAA Class of A, and a School of jac-cen-del?",
    "question_th": "เข้าร่วมกี่ปีมีขนาดที่เล็กกว่า 417 และ IHSAA Class ของ 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_en": "What is the 1957 number when the 1955 is smaller than 0.63, and 1952 is larger than 0.22?",
    "question_th": "ตัวเลข 1957 คืออะไรเมื่อปี 1955 น้อยกว่า 0.63 และ 1952 มากกว่า 0.22",
    "context": "CREATE TABLE table_name_71 (Id VARCHAR)"
  },
  {
    "answer": "SELECT SUM(1952) FROM table_name_37 WHERE 1954 > 4.2",
    "question_en": "What is the 1952 rate when the 1954 is more than 4.2?",
    "question_th": "อัตราปี 1952 เป็นเท่าใดเมื่อปี 1954 มากกว่า 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_en": "What is the 1955 rate when the 1956 is more than 2.9, and 1953 is larger than 4.5?",
    "question_th": "อัตราปี 1955 คืออะไรเมื่อปี 1956 มากกว่า 2.9 และปี 1953 มากกว่า 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_en": "In what Week resulting in the bottom 3 was Endre Jansen Partner?",
    "question_th": "สัปดาห์ใดที่ส่งผลให้ 3 อันดับสุดท้ายคือ 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_en": "What Dance in Week 1 resulted in Safe?",
    "question_th": "การเต้นรำใดในสัปดาห์ที่ 1 ส่งผลให้ปลอดภัย",
    "context": "CREATE TABLE table_name_16 (dance VARCHAR, result VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT MAX(week) FROM table_name_16 WHERE dance = \"locking\"",
    "question_en": "In what Week was the Locking Dance?",
    "question_th": "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_en": "What position has 7 as the round, with a pick # less than 214?",
    "question_th": "ตำแหน่งใดมี 7 เป็นรอบ โดยเลือก # น้อยกว่า 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_en": "What college has a round greater than 1, with dylan mcfarland as the player?",
    "question_th": "วิทยาลัยใดมีรอบมากกว่า 1 โดยมี dylan mcfarland เป็นผู้เล่น",
    "context": "CREATE TABLE table_name_95 (college VARCHAR, round VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_44 WHERE pick__number > 207",
    "question_en": "What player has a pick # greater than 207?",
    "question_th": "ผู้เล่นคนใดมีตัวเลือก # มากกว่า 207?",
    "context": "CREATE TABLE table_name_44 (player VARCHAR, pick__number INTEGER)"
  },
  {
    "answer": "SELECT artist FROM table_name_42 WHERE certification = \"4x platinum\"",
    "question_en": "Which artist had a 4x platinum?",
    "question_th": "ศิลปินคนไหนมีแพลตตินัม 4 เท่า?",
    "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_en": "What was the highest peak position for the album one of the boys?",
    "question_th": "ตำแหน่งสูงสุดในอัลบั้ม 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_en": "How many sales had a peak position of 1 and a certification of 6x platinum?",
    "question_th": "มียอดขายกี่รายการที่มีตำแหน่งสูงสุดที่ 1 และได้รับการรับรองระดับแพลทินัม 6x",
    "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_en": "What album had a peak position of 6 and a certification of 3x platinum?",
    "question_th": "อัลบั้มใดมีอันดับสูงสุดที่ 6 และได้รับการรับรองระดับแพลตตินัม 3 เท่า",
    "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_en": "How many sales had a peak position more than 2 and a Certification of 3x platinum?",
    "question_th": "มียอดขายกี่รายการที่มีตำแหน่งสูงสุดมากกว่า 2 และมีใบรับรอง 3x แพลทินัม?",
    "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_en": "Who were the rowers who had a time of 7:39.70?",
    "question_th": "ใครคือนักพายเรือที่ทำเวลาได้ 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_en": "Who were the rowers from china wh had a rank smaller than 4?",
    "question_th": "ใครคือฝีพายจากประเทศจีนที่มีอันดับน้อยกว่า 4?",
    "context": "CREATE TABLE table_name_51 (rowers VARCHAR, rank VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_name_26 WHERE country = \"denmark\"",
    "question_en": "What is the notes for the rowers from denmark?",
    "question_th": "บันทึกสำหรับนักพายเรือจากเดนมาร์กคืออะไร?",
    "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_en": "Which Bronze has a Nation of austria, and a Total larger than 6?",
    "question_th": "บรอนซ์ใดมีประเทศออสเตรียและมียอดรวมมากกว่า 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_en": "Which Rank has a Silver of 1, and a Gold of 0, and a Nation of austria?",
    "question_th": "อันดับใดมีเหรียญเงิน 1 เหรียญทองแดง 0 และประเทศออสเตรีย",
    "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_en": "Which Total has a Rank of 5, and a Bronze smaller than 0?",
    "question_th": "คะแนนรวมใดมีอันดับ 5 และเหรียญทองแดงน้อยกว่า 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_en": "Which Total has a Bronze of 5, and a Silver smaller than 1?",
    "question_th": "คะแนนรวมใดมีทองแดงเท่ากับ 5 และเงินน้อยกว่า 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_en": "What is the highest year with a formula of Grand Prix?",
    "question_th": "ปีสูงสุดที่มีสูตรกรังด์ปรีซ์คืออะไร?",
    "context": "CREATE TABLE table_name_25 (year INTEGER, formula VARCHAR)"
  },
  {
    "answer": "SELECT formula FROM table_name_64 WHERE driver = \"john moore-brabazon\"",
    "question_en": "Which formula had a driver of John Moore-Brabazon?",
    "question_th": "สูตรไหนมีนักขับของ จอห์น มัวร์-บราบาซอน?",
    "context": "CREATE TABLE table_name_64 (formula VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_51 WHERE year < 1905",
    "question_en": "Which driver had a year under 1905?",
    "question_th": "คนขับคนไหนมีปีต่ำกว่าปี 1905?",
    "context": "CREATE TABLE table_name_51 (driver VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_name_46 WHERE formula = \"grand prix\"",
    "question_en": "How many years had a formula of Grand Prix?",
    "question_th": "กรังด์ปรีซ์มีสูตรกี่ปี?",
    "context": "CREATE TABLE table_name_46 (year VARCHAR, formula VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_15 WHERE driver = \"george heath\"",
    "question_en": "Which location was won by George Heath?",
    "question_th": "George Heath ชนะตำแหน่งใด",
    "context": "CREATE TABLE table_name_15 (location VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(2010) FROM table_name_64 WHERE country = \"ghana\"",
    "question_en": "What is the 2010 total for ghana?",
    "question_th": "ยอดรวมสำหรับกานาในปี 2010 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_64 (country VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_73 WHERE airport = \"nnamdi azikiwe international airport\"",
    "question_en": "Which country is the nnamdi azikiwe international airport in?",
    "question_th": "สนามบินนานาชาติ nnamdi azikiwe อยู่ประเทศใด",
    "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_en": "What is the average lane for Kenya with react larger than 0.212?",
    "question_th": "เลนเฉลี่ยสำหรับเคนยาที่มีการตอบสนองมากกว่า 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_en": "what is the highest rank for tim maeyens?",
    "question_th": "ทิม เมเยนส์อยู่อันดับสูงสุดเท่าไหร่?",
    "context": "CREATE TABLE table_name_34 (rank INTEGER, athlete VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_name_24 WHERE athlete = \"andre vonarburg\"",
    "question_en": "what is the notes for andre vonarburg?",
    "question_th": "โน้ตของ Andre vonarburg คืออะไร?",
    "context": "CREATE TABLE table_name_24 (notes VARCHAR, athlete VARCHAR)"
  },
  {
    "answer": "SELECT athlete FROM table_name_13 WHERE country = \"greece\"",
    "question_en": "Who is the athlete from greece?",
    "question_th": "นักกีฬาจากกรีซคือใคร?",
    "context": "CREATE TABLE table_name_13 (athlete VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT athlete FROM table_name_10 WHERE rank < 2",
    "question_en": "who is the athlete with the rank smaller than 2?",
    "question_th": "นักกีฬาที่มียศน้อยกว่า 2 คือใคร?",
    "context": "CREATE TABLE table_name_10 (athlete VARCHAR, rank INTEGER)"
  },
  {
    "answer": "SELECT notes FROM table_name_86 WHERE time = \"7:38.87\"",
    "question_en": "what is the notes for the athlete with the time of 7:38.87?",
    "question_th": "โน้ตของนักกีฬาเวลา 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_en": "What is the sum of the gold medals of the nation with 4 silvers and more than 6 total medals?",
    "question_th": "ผลรวมเหรียญทองของประเทศได้ 4 เหรียญเงิน และรวมมากกว่า 6 เหรียญเป็นเท่าใด",
    "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_en": "What is the highest number of bronze medals of west germany, which has more than 0 golds?",
    "question_th": "เยอรมนีตะวันตกได้เหรียญทองแดงมากที่สุดซึ่งมีมากกว่า 0 เหรียญทองมากที่สุดคือเท่าใด",
    "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_en": "What is the average total medals of the soviet union, which has more than 2 bronze and more than 0 silver medals?",
    "question_th": "เหรียญรวมโดยเฉลี่ยของสหภาพโซเวียตซึ่งมีมากกว่า 2 เหรียญทองแดง และมากกว่า 0 เหรียญเงิน คือเท่าใด",
    "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 – 23 october\"",
    "question_en": "What year did the ship Europa, have the dates of 14 – 23 October?",
    "question_th": "เรือยูโรปาออกปีไหนระหว่างวันที่ 14 – 23 ตุลาคม?",
    "context": "CREATE TABLE table_name_32 (year INTEGER, ship VARCHAR, dates VARCHAR)"
  },
  {
    "answer": "SELECT days, _hours, _minutes FROM table_name_81 WHERE dates = \"21 – 26 october\"",
    "question_en": "What is the Days, hours, minutes for 21 – 26 October?",
    "question_th": "วัน ชั่วโมง นาที ของวันที่ 21 – 26 ตุลาคม คืออะไร?",
    "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_en": "Which year did the school with the mascot of the Vikings join?",
    "question_th": "โรงเรียนที่มีตัวนำโชคของชาวไวกิ้งเข้าร่วมในปีใด",
    "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_en": "Who wrote the album recorded at funhouse studios with a time of 3:27?",
    "question_th": "ใครเป็นคนเขียนอัลบั้มที่บันทึกที่ Funhouse Studios ด้วยเวลา 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_en": "Who performed the song recorded at the Cabin in the Woods Studio with a Time of 3:16?",
    "question_th": "ใครเป็นผู้แสดงเพลงที่บันทึกที่ Cabin in the Woods Studio ด้วยเวลา 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_en": "Which League Cup Goals have a League Cup Apps of 1 (1)?",
    "question_th": "ประตูลีกคัพใดที่มีแอปลีกคัพเท่ากับ 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_en": "Which FA Cup Apps have Total Goals larger than 6, and an FA Cup Goals smaller than 1?",
    "question_th": "แอป FA Cup ใดที่มีประตูรวมมากกว่า 6 และประตู FA Cup น้อยกว่า 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_en": "How many League Goals have an FA Cup Apps of 0 (1)?",
    "question_th": "มีกี่ประตูในลีกที่มีแอป FA Cup 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_en": "What is the lowest round number in which Will Wilcox was selected?",
    "question_th": "หมายเลขรอบต่ำสุดที่วิลค็อกซ์ถูกเลือกคือหมายเลขใด",
    "context": "CREATE TABLE table_name_55 (round INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_7 WHERE college = \"tennessee-chattanooga\"",
    "question_en": "Which player went to college at Tennessee-Chattanooga?",
    "question_th": "ผู้เล่นคนไหนไปเรียนวิทยาลัยที่เทนเนสซี-แชตตานูกา",
    "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_en": "Which Col (m) has an Elevation (m) smaller than 1,624?",
    "question_th": "Col (m) ใดมีระดับความสูง (m) น้อยกว่า 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_en": "How much Elevation (m) has a Prominence (m) larger than 1,754?",
    "question_th": "ระดับความสูง (m) มีความโดดเด่น (m) มากกว่า 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_en": "What is the lowest first half when the score is larger than 621 and the rank 35?",
    "question_th": "ครึ่งแรกต่ำสุดเมื่อสกอร์มากกว่า 621 และอันดับ 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_en": "Which Grid has Points larger than 10 and a Time/Retired of +13.7 secs?",
    "question_th": "กริดใดมีแต้มมากกว่า 10 และเวลา/เกษียณ +13.7 วินาที?",
    "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_en": "Which Team has Points of 0, a Grid larger than 13, and a Driver of alex yoong?",
    "question_th": "ทีมใดมีแต้ม 0, ตารางมากกว่า 13 และนักแข่งของ 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_en": "What is the hioghest amount of silver medals for a nation ranked higher than 19 and less than 2 gold medals?",
    "question_th": "เหรียญเงินสูงสุดสำหรับประเทศที่มีอันดับสูงกว่า 19 และน้อยกว่า 2 เหรียญทองคือเท่าใด",
    "context": "CREATE TABLE table_name_75 (silver INTEGER, rank VARCHAR, gold VARCHAR)"
  },
  {
    "answer": "SELECT nation FROM table_name_67 WHERE silver = 11",
    "question_en": "What nation finished with 11 silver medals?",
    "question_th": "ชาติใดได้ 11 เหรียญเงิน?",
    "context": "CREATE TABLE table_name_67 (nation VARCHAR, silver VARCHAR)"
  },
  {
    "answer": "SELECT pick FROM table_name_75 WHERE player = \"benito cheng\"",
    "question_en": "What is Benito Cheng's Pick number?",
    "question_th": "หมายเลข Pick ของ Benito Cheng คืออะไร",
    "context": "CREATE TABLE table_name_75 (pick VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT pba_team FROM table_name_42 WHERE player = \"richard bachmann\"",
    "question_en": "What is Richard Bachmann's PBA team?",
    "question_th": "ทีม PBA ของ Richard Bachmann คืออะไร",
    "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_en": "What is Far Eastern College Johnny Abarrientos' Pick number?",
    "question_th": "หมายเลข Pick ของ Far Eastern College Johnny Abarrientos คืออะไร",
    "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_en": "What home team has 10 as the tie no?",
    "question_th": "ทีมเจ้าบ้านใดมี 10 เสมอกัน?",
    "context": "CREATE TABLE table_name_14 (home_team VARCHAR, tie_no VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_7 WHERE tie_no = \"7\"",
    "question_en": "What is the game score when the tie no is 7?",
    "question_th": "คะแนนเกมเมื่อเสมอหมายเลข 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_en": "Who was the away team on 10 January 1979 who had a tie no of 17?",
    "question_th": "ทีมเยือนเมื่อวันที่ 10 มกราคม พ.ศ. 2522 เสมอกันที่ 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_en": "When was the game that has tie no 2?",
    "question_th": "เกมที่เสมอกันที่ 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_en": "What round did the match at the Golden Trophy 1999 event end?",
    "question_th": "การแข่งขันในงาน Golden Trophy 1999 สิ้นสุดรอบใด",
    "context": "CREATE TABLE table_name_44 (round INTEGER, event VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_33 WHERE record = \"8–5–1\"",
    "question_en": "What event had a record of 8–5–1?",
    "question_th": "เหตุการณ์ใดมีสถิติ 8–5–1",
    "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_en": "What's the HDR Output that has a name of name?",
    "question_th": "HDR Output ที่มีชื่อเรียกว่าอะไร?",
    "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_en": "What's the exposure fusion of Panoramaplus x4?",
    "question_th": "ค่า Exposure fusion ของ 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_en": "What's the HDR output of Photovista Panorama?",
    "question_th": "เอาต์พุต HDR ของ 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_en": "Which location has 101,119 as the capacity?",
    "question_th": "สถานที่ใดมีความจุ 101,119 แห่ง?",
    "context": "CREATE TABLE table_name_72 (location VARCHAR, capacity VARCHAR)"
  },
  {
    "answer": "SELECT MIN(rank) FROM table_name_68 WHERE location = \"university park, pa\"",
    "question_en": "What is the lowest rank that has university park, pa as the location?",
    "question_th": "อันดับต่ำสุดที่มี University Park, Pa เป็นที่ตั้งคือที่ไหน?",
    "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_en": "What home team has a rank greater than 6, and 94,392 as the capacity?",
    "question_th": "เจ้าบ้านทีมไหนมีอันดับมากกว่า 6 และความจุ 94,392?",
    "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_en": "Who was the builder for the USS cambridge?",
    "question_th": "ใครคือผู้สร้าง 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_en": "What year was the USS Cambridge laid down?",
    "question_th": "USS Cambridge ถูกวางลงในปีใด",
    "context": "CREATE TABLE table_name_17 (laid_down VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_name_82 WHERE record = \"11-12\"",
    "question_en": "What was the number of the game when the record was 11-12?",
    "question_th": "หมายเลขของเกมเมื่อบันทึกคือ 11-12 คืออะไร?",
    "context": "CREATE TABLE table_name_82 (game VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_4 WHERE game = \"16\"",
    "question_en": "What was the score of Game 16?",
    "question_th": "เกมที่ 16 คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_4 (score VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT location_attendance FROM table_name_54 WHERE record = \"9-6\"",
    "question_en": "What was the location and attendance at the game when the record was 9-6?",
    "question_th": "สถานที่และผู้เข้าชมเกมเมื่อสถิติอยู่ที่ 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_en": "What date has 3 as the round (leg)?",
    "question_th": "วันไหนมี 3 เป็นรอบ (ขา)?",
    "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_en": "What was the year of Bridget Jones: The Edge of Reason that was nominated?",
    "question_th": "Bridget Jones: The Edge of Reason ที่ได้รับการเสนอชื่อเข้าชิงคือปีใด",
    "context": "CREATE TABLE table_name_87 (year INTEGER, result VARCHAR, film VARCHAR)"
  },
  {
    "answer": "SELECT lost_to FROM table_name_74 WHERE film = \"chicago\"",
    "question_en": "Who was the loss to for the film Chicago?",
    "question_th": "ใครคือผู้แพ้สำหรับภาพยนตร์เรื่องชิคาโก?",
    "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_en": "Which IHSAA Football Class has a IHSAA Class of aaa, and a Location of nashville?",
    "question_th": "คลาสฟุตบอล IHSAA ใดที่มีคลาส IHSAA ที่ aaa และที่ตั้งของแนชวิลล์",
    "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_en": "Which Mascot has an Enrollment of 640?",
    "question_th": "มาสคอตตัวไหนมีการลงทะเบียน 640 ตัว?",
    "context": "CREATE TABLE table_name_63 (mascot VARCHAR, enrollment VARCHAR)"
  },
  {
    "answer": "SELECT ihsaa_class FROM table_name_96 WHERE location = \"brazil\"",
    "question_en": "Which IHSAA Class has a Location of brazil?",
    "question_th": "IHSAA Class ใดที่มีที่ตั้งของประเทศบราซิล",
    "context": "CREATE TABLE table_name_96 (ihsaa_class VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_55 WHERE enrollment = 908",
    "question_en": "Which School has a Enrollment of 908?",
    "question_th": "โรงเรียนใดมีการลงทะเบียน 908?",
    "context": "CREATE TABLE table_name_55 (school VARCHAR, enrollment VARCHAR)"
  },
  {
    "answer": "SELECT currency FROM table_name_34 WHERE code = \"sek\"",
    "question_en": "What type of currency has a code of SEK?",
    "question_th": "สกุลเงินประเภทใดมีรหัส SEK?",
    "context": "CREATE TABLE table_name_34 (currency VARCHAR, code VARCHAR)"
  },
  {
    "answer": "SELECT code FROM table_name_34 WHERE currency = \"croatian kuna\"",
    "question_en": "What code is used to represent the currency of Croatian Kuna?",
    "question_th": "รหัสใดที่ใช้แทนสกุลเงินของคูนาโครเอเชีย",
    "context": "CREATE TABLE table_name_34 (code VARCHAR, currency VARCHAR)"
  },
  {
    "answer": "SELECT model FROM table_name_68 WHERE chassis_code = \"w116.036\"",
    "question_en": "What's the model that has chassis code W116.036?",
    "question_th": "รหัสตัวถัง W116.036 รุ่นอะไรครับ?",
    "context": "CREATE TABLE table_name_68 (model VARCHAR, chassis_code VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_71 WHERE year = \"1992\"",
    "question_en": "What the score of the 1992 game?",
    "question_th": "ในเกมปี 1992 ทำได้กี่คะแนน?",
    "context": "CREATE TABLE table_name_71 (score VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_59 WHERE runners_up = \"tsv siegen\"",
    "question_en": "What is the score when TSV Siegen was the runner-up?",
    "question_th": "เมื่อ TSV Siegen รองแชมป์ได้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_59 (score VARCHAR, runners_up VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_30 WHERE venue = \"bad neuenahr eppelborn\"",
    "question_en": "What year was the game at Bad Neuenahr Eppelborn?",
    "question_th": "เกมที่ 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 – 2 *\"",
    "question_en": "What was the venue when the runner up was Tennis Borussia Berlin, and the score was 4 – 2 *?",
    "question_th": "สนามไหนที่รองแชมป์คือ เทนนิส โบรุสเซีย เบอร์ลิน และสกอร์ 4 – 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_en": "What team was runner-up at Bergisch Gladbach in 1983?",
    "question_th": "ทีมใดได้รองแชมป์แบร์กิชกลัดบัคในปี 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_en": "What was the time of the swimmer in lane 7?",
    "question_th": "นักว่ายน้ำในเลน 7 กี่โมง?",
    "context": "CREATE TABLE table_name_77 (time VARCHAR, lane VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_23 WHERE time = \"1:55.40\"",
    "question_en": "What was the rank of the swimmer with a time of 1:55.40?",
    "question_th": "นักว่ายน้ำอันดับเท่าไหร่ด้วยเวลา 1:55.40 น.",
    "context": "CREATE TABLE table_name_23 (rank VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_14 WHERE game = \"13\"",
    "question_en": "What was the date for game 13?",
    "question_th": "เกมที่ 13 วันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_14 (date VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_72 WHERE opponent = \"st. louis cardinals\"",
    "question_en": "What is the record for the opponent St. Louis Cardinals?",
    "question_th": "สถิติของคู่ต่อสู้ เซนต์หลุยส์ คาร์ดินัลส์ คืออะไร?",
    "context": "CREATE TABLE table_name_72 (record VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_42 WHERE game = \"8\"",
    "question_en": "What is the record for Game 8?",
    "question_th": "สถิติของเกมที่ 8 คืออะไร?",
    "context": "CREATE TABLE table_name_42 (record VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT mobile FROM table_name_31 WHERE opera = \"2.62%\"",
    "question_en": "What percentage of users were using mobile browsers during the period in which 2.62% were using Opera?",
    "question_th": "เปอร์เซ็นต์ของผู้ใช้ที่ใช้เบราว์เซอร์บนมือถือในช่วงเวลาที่ 2.62% ใช้ Opera",
    "context": "CREATE TABLE table_name_31 (mobile VARCHAR, opera VARCHAR)"
  },
  {
    "answer": "SELECT mobile FROM table_name_28 WHERE chrome = \"9.00%\"",
    "question_en": "What percentage of users were using mobile browsers during the period in which 9.00% were using Chrome?",
    "question_th": "เปอร์เซ็นต์ของผู้ใช้ที่ใช้เบราว์เซอร์บนมือถือในช่วงเวลาที่ 9.00% ใช้ Chrome",
    "context": "CREATE TABLE table_name_28 (mobile VARCHAR, chrome VARCHAR)"
  },
  {
    "answer": "SELECT safari FROM table_name_96 WHERE firefox = \"30.82%\"",
    "question_en": "What percentage of users were using Safari during the period in which 30.82% were using Firefox?",
    "question_th": "เปอร์เซ็นต์ของผู้ใช้ที่ใช้ Safari ในช่วงที่ 30.82% ใช้ Firefox",
    "context": "CREATE TABLE table_name_96 (safari VARCHAR, firefox VARCHAR)"
  },
  {
    "answer": "SELECT internet_explorer FROM table_name_66 WHERE mobile = \"2.1%\"",
    "question_en": "What percentage of users were using Internet Explorer during the period in which 2.1% were using mobile browsers?",
    "question_th": "เปอร์เซ็นต์ของผู้ใช้ใช้ Internet Explorer ในช่วงที่ 2.1% ใช้เบราว์เซอร์บนมือถือ",
    "context": "CREATE TABLE table_name_66 (internet_explorer VARCHAR, mobile VARCHAR)"
  },
  {
    "answer": "SELECT other_mozilla FROM table_name_58 WHERE chrome = \"9.00%\"",
    "question_en": "What percentage of users were using other Mozilla browsers during the period in which 9.00% were using Chrome?",
    "question_th": "เปอร์เซ็นต์ของผู้ใช้ที่ใช้เบราว์เซอร์ Mozilla อื่นๆ ในช่วงที่ 9.00% ใช้ 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_en": "What date has w 14-10 as the result?",
    "question_th": "ผลเป็น w 14-10 เป็นวันไหนคะ?",
    "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_en": "What opponent has a week less than 12, with November 25, 1965 as the date?",
    "question_th": "คู่ต่อสู้คนใดมีหนึ่งสัปดาห์น้อยกว่า 12 โดยวันที่ 25 พฤศจิกายน 2508 เป็นวันที่?",
    "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_en": "What is the lowest week that has September 19, 1965 as the date, with an attendance less than 46,941?",
    "question_th": "สัปดาห์ใดคือวันที่ 19 กันยายน 1965 เป็นวันที่ต่ำสุด โดยมีผู้เข้าร่วมน้อยกว่า 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_en": "What is the lowest week that has 51,499 as the attendance?",
    "question_th": "สัปดาห์ต่ำสุดที่มีผู้เข้าร่วม 51,499 คนคือสัปดาห์ใด?",
    "context": "CREATE TABLE table_name_66 (week INTEGER, attendance VARCHAR)"
  },
  {
    "answer": "SELECT frequency FROM table_name_18 WHERE format = \"active rock\"",
    "question_en": "What is the frequency for the active rock format?",
    "question_th": "ความถี่ของรูปแบบแอคทีฟร็อคคือเท่าไร?",
    "context": "CREATE TABLE table_name_18 (frequency VARCHAR, format VARCHAR)"
  },
  {
    "answer": "SELECT branding FROM table_name_66 WHERE frequency = \"fm 88.9\"",
    "question_en": "What is the branding for fm 88.9?",
    "question_th": "แบรนด์สำหรับ 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_en": "What is the name of the owner of rock 97.7?",
    "question_th": "เจ้าของร็อค 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_en": "What is the branding for cbxp-fm?",
    "question_th": "ตราสินค้าของ 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_en": "What is the call sign for country station fm 93.1?",
    "question_th": "สัญญาณเรียกขานของสถานีประเทศ 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_en": "What is the frequency for the country station owned by Jim Pattison Group?",
    "question_th": "ความถี่ของสถานีในประเทศที่ 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_en": "What game was located at the Los Angeles Memorial Sports Arena?",
    "question_th": "เกมใดที่จัดขึ้นที่ 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_en": "What is the location for the game with a score of w 106-81?",
    "question_th": "สกอร์ 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_en": "Where is the location of Game 4?",
    "question_th": "ที่ตั้งของ เกม 4 อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_26 (location_attendance VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT SUM(lane) FROM table_name_89 WHERE rank = 2",
    "question_en": "What is the lane total when rank is 2?",
    "question_th": "เลนทั้งหมดเมื่ออันดับเป็น 2 เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_89 (lane INTEGER, rank VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_56 WHERE name = \"gemma spofforth\"",
    "question_en": "Gemma Spofforth has what time?",
    "question_th": "Gemma Spofforth กี่โมง?",
    "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_en": "Which Floors have a Pinnacle height ft (m) of 1,136 (346), and a Pinn Rank larger than 4?",
    "question_th": "ชั้นใดมีความสูงพินนาเคิลฟุต (ม.) เท่ากับ 1,136 (346) และอันดับพินน์มากกว่า 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_en": "How much Standard Rank has a Name of 311 south wacker drive, and a Year larger than 1990?",
    "question_th": "อันดับมาตรฐานมีชื่อไดรฟ์ 311 เซาท์แวกเกอร์เท่าใด และหนึ่งปีมีขนาดใหญ่กว่าปี 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_en": "Which Floors have a Pinnacle height ft (m) of 995 (303), and an Std Rank larger than 6?",
    "question_th": "ชั้นใดมีความสูงพินนาเคิลฟุต (ม.) เท่ากับ 995 (303) และอันดับ Std มากกว่า 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_en": "What is the average time with a rank lower than 2 for Andy Turner?",
    "question_th": "เวลาเฉลี่ยของ Andy Turner ที่มีอันดับต่ำกว่า 2 คือเท่าไร?",
    "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_en": "What was the date for morocco when the year was lerger than 1981?",
    "question_th": "โมร็อกโกตรงกับปีใดมากกว่าปี 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_en": "What is the lowest year when the city is casablanca?",
    "question_th": "ปีต่ำสุดคือเมือง คาซาบลังกา คืออะไร?",
    "context": "CREATE TABLE table_name_80 (year INTEGER, city VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_name_31 WHERE city = \"san juan\"",
    "question_en": "What year was the expansion in the city of San Juan?",
    "question_th": "การขยายตัวในเมืองซานฮวนคือปีใด",
    "context": "CREATE TABLE table_name_31 (year VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_50 WHERE location = \"netherlands\"",
    "question_en": "What city was located in the Netherlands?",
    "question_th": "เมืองใดตั้งอยู่ในเนเธอร์แลนด์?",
    "context": "CREATE TABLE table_name_50 (city VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_88 WHERE year = 1971 AND city = \"tokyo\"",
    "question_en": "What location had a year of 1971 and a city of Tokyo?",
    "question_th": "สถานที่ใดมีปี 1971 และเมืองโตเกียว?",
    "context": "CREATE TABLE table_name_88 (location VARCHAR, year VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT award FROM table_name_62 WHERE year < 2005",
    "question_en": "What award did they win before 2005?",
    "question_th": "พวกเขาได้รับรางวัลอะไรก่อนปี 2548?",
    "context": "CREATE TABLE table_name_62 (award VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT date FROM table_name_44 WHERE home_team = \"southend united\"",
    "question_en": "When was Southend United the home team?",
    "question_th": "เซาธ์เอนด์ ยูไนเต็ด เป็นเจ้าบ้านเมื่อไหร่?",
    "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_en": "For the game on 13 December 1975 with Halifax Town as the away team what was the score?",
    "question_th": "สำหรับเกมวันที่ 13 ธันวาคม 1975 โดยมี ฮาลิแฟกซ์ ทาวน์ เป็นทีมเยือน สกอร์เท่าไหร่?",
    "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_en": "Who was the away team when 6 was the tie no?",
    "question_th": "ทีมเยือนคือใครเมื่อตอนที่ 6 เสมอกัน?",
    "context": "CREATE TABLE table_name_69 (away_team VARCHAR, tie_no VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_69 WHERE tie_no = \"13\"",
    "question_en": "The game with 13 as the tie no had what as the score?",
    "question_th": "เกมที่เสมอกัน 13 คะแนน ได้คะแนนเท่าไหร่?",
    "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_en": "Which conference joined in 1954 with a beavers mascot?",
    "question_th": "การประชุมใดที่เข้าร่วมในปี 1954 โดยมีมาสคอตบีเว่อร์",
    "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〜注文の多いオンナたち〜\"",
    "question_en": "What is the Romanji title for around40〜注文の多いオンナたち〜 on TBS?",
    "question_th": "ชื่อเรื่อง Romanji สำหรับประมาณ 40〜 注文の多いオンナたち〜 บน 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_en": "What station has average ratings of 14.7%?",
    "question_th": "สถานีใดมีเรตติ้งเฉลี่ย 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_en": "What is the Japanese title for the episode bigger than 10 on TBS with average ratings of 14.8%?",
    "question_th": "ชื่อเรื่องภาษาญี่ปุ่นสำหรับตอนที่ใหญ่กว่า 10 ใน TBS ด้วยเรตติ้งเฉลี่ย 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_en": "What episode has average ratings of 7.4%?",
    "question_th": "ตอนไหนมีเรตติ้งเฉลี่ย 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_en": "What is the episode on Fuji TV titled Absolute Boyfriend?",
    "question_th": "ตอนหนึ่งของ Fuji TV ชื่อ 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_en": "What is the episode on NHK with average ratings of 9.2%?",
    "question_th": "รายการ NHK ตอนไหนเรตติ้งเฉลี่ย 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_en": "Which School has a Year Joined larger than 1926, and a Mascot of vikings?",
    "question_th": "โรงเรียนใดมีปีที่เข้าร่วมมากกว่าปี 1926 และเป็นตัวนำโชคของไวกิ้ง?",
    "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_en": "Which Mascot has a School of logansport community?",
    "question_th": "มาสคอตตัวไหนมี 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_en": "Which Previous Conference has an IHSAA Class/ Football/ Soccer of 4a/5a/2a, and a Year Joined larger than 1926?",
    "question_th": "การประชุมครั้งก่อนใดที่มี IHSAA Class/ Football/ Soccer ระดับ 4a/5a/2a และเข้าร่วมหนึ่งปีมากกว่าปี 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_en": "Which #/ County has a Year Joined larger than 1926, and a Previous Conference of olympic?",
    "question_th": "#/ County ใดที่มีปีเข้าร่วมมากกว่าปี 1926 และการประชุมโอลิมปิกครั้งก่อน?",
    "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_en": "What is the Score of the 1996 Asian Cup Qualification on June 29, 1996?",
    "question_th": "คะแนนของเอเชียนคัพ รอบคัดเลือก 1996 เมื่อวันที่ 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_en": "What was the Venue of the King's Cup 1998?",
    "question_th": "คิงส์คัพ 2541 สถานที่จัดคือที่ไหน?",
    "context": "CREATE TABLE table_name_3 (venue VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_11 WHERE score = \"4-1\"",
    "question_en": "What is the Venue of the Competition with a Score of 4-1?",
    "question_th": "สถานที่จัดการแข่งขันที่มีสกอร์ 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_en": "Which Enrollment has a Primary Conference of mid-hoosier, and a County of 16 decatur, and an IHSAA Class of aa?",
    "question_th": "การลงทะเบียนใดมีการประชุมเบื้องต้นในระดับ Mid-Hoosier และเทศมณฑล 16 Decatur และ IHSAA Class ในระดับ 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_en": "Where is Indian Creek school located?",
    "question_th": "ที่ตั้งของ Indian Creek School อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_79 (location VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_73 WHERE location = \"trafalgar\"",
    "question_en": "Which school is located in trafalgar?",
    "question_th": "โรงเรียนไหนอยู่ในทราฟัลการ์?",
    "context": "CREATE TABLE table_name_73 (school VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT ihsaa_class FROM table_name_24 WHERE location = \"charlottesville\"",
    "question_en": "Which IHSAA Class is located in charlottesville?",
    "question_th": "IHSAA Class ใดที่ตั้งอยู่ในเมืองชาร์ลอตส์วิลล์",
    "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_en": "Which country had notes of sa/b and a rank of 2?",
    "question_th": "ประเทศใดมีธนบัตร sa/b และอันดับ 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_en": "What was the rank for Great Britain?",
    "question_th": "สหราชอาณาจักรอยู่อันดับไหน?",
    "context": "CREATE TABLE table_name_28 (rank VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT tv_time FROM table_name_76 WHERE week = 12",
    "question_en": "What was the tv time for the game on week 12?",
    "question_th": "รายการทีวีสำหรับเกมในสัปดาห์ที่ 12 คือเวลาใด?",
    "context": "CREATE TABLE table_name_76 (tv_time VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_68 WHERE opponent = \"miami dolphins\"",
    "question_en": "What was the attendance for the game against miami dolphins?",
    "question_th": "ผู้เข้าชมเกมกับไมอามี่ ดอลฟินมีผู้เข้าชมมากน้อยเพียงใด?",
    "context": "CREATE TABLE table_name_68 (attendance VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_54 WHERE attendance = \"67,715\"",
    "question_en": "What is the result of the game with 67,715 fans attending?",
    "question_th": "ผลการแข่งขันที่มีแฟนบอล 67,715 คนเข้าร่วมคืออะไร?",
    "context": "CREATE TABLE table_name_54 (result VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_77 WHERE attendance = \"90,287\"",
    "question_en": "Who was the opponent for the game that had 90,287 in attendance?",
    "question_th": "ใครคือคู่ต่อสู้ในเกมที่มีผู้เข้าร่วม 90,287 คน?",
    "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_en": "What is the team with 1st period at 12:37?",
    "question_th": "ทีมอะไรกับช่วงที่ 1 เวลา 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_en": "who is the athlete with the time 6:02.46?",
    "question_th": "นักกีฬาเวลา 6:02.46 น. คือใคร?",
    "context": "CREATE TABLE table_name_83 (athlete VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_3 WHERE rank = 6",
    "question_en": "what is the country for rank 6?",
    "question_th": "ประเทศอันดับที่ 6 คือประเทศอะไร?",
    "context": "CREATE TABLE table_name_3 (country VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_name_59 WHERE rank < 2",
    "question_en": "what is the notes when the rank is less than 2?",
    "question_th": "หมายเหตุเมื่ออันดับน้อยกว่า 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_en": "what is the rank for athlete hauffe, seifert, kaeufer, adamski?",
    "question_th": "นักกีฬา 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_en": "what is the notes for the time 6:05.21?",
    "question_th": "บันทึกของเวลา 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_en": "Who was the discoverer of the object with an Aphelion above 97 in 2004?",
    "question_th": "ใครคือผู้ค้นพบวัตถุที่มีเอเฟเลียนสูงกว่า 97 ในปี พ.ศ. 2547",
    "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_en": "What model number has part number cl8064701510101?",
    "question_th": "หมายเลขรุ่นอะไรมีหมายเลขชิ้นส่วน 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_en": "What is the I/O bus entry for the processor with a release price of $657?",
    "question_th": "รายการ I/O bus สำหรับโปรเซสเซอร์ที่มีราคาวางจำหน่ายอยู่ที่ 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_en": "What is the L2 cache for the processor with iris pro graphics 5200 and frequency of 2.6 ghz?",
    "question_th": "แคช L2 สำหรับโปรเซสเซอร์ที่มีกราฟิก iris pro 5200 และความถี่ 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_en": "What is the frequency of the processor released at $383, with a sSpec of sr15f(c0)?",
    "question_th": "ความถี่ของโปรเซสเซอร์ที่วางจำหน่ายที่ $383 โดยมี sSpec เป็น 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_en": "What is the GPU frequency for the processor released in June 2013, with a sSpec number of sr17l(c0)?",
    "question_th": "ความถี่ GPU สำหรับโปรเซสเซอร์ที่เปิดตัวในเดือนมิถุนายน 2013 คือเท่าใด โดยมีหมายเลข sSpec เป็น 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_en": "What is the L3 cache of the processor with a release price of $440?",
    "question_th": "แคช L3 ของโปรเซสเซอร์คือเท่าใด โดยมีราคาวางจำหน่ายที่ 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_en": "What is the OS X for the Home Media Center?",
    "question_th": "OS X สำหรับ 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_en": "What is the name when Windows is partial?",
    "question_th": "ชื่ออะไรเมื่อ Windows เป็นบางส่วน?",
    "context": "CREATE TABLE table_name_55 (name VARCHAR, windows VARCHAR)"
  },
  {
    "answer": "SELECT license FROM table_name_11 WHERE name = \"rygel\"",
    "question_en": "What is the license for Rygel?",
    "question_th": "ใบอนุญาตสำหรับ Rygel คืออะไร?",
    "context": "CREATE TABLE table_name_11 (license VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT license FROM table_name_91 WHERE name = \"jriver media center\"",
    "question_en": "What is the license for Jriver Media Center?",
    "question_th": "ใบอนุญาตสำหรับ 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_en": "Of the series that last aired August 20, 2010, what is the lowest number of seasons?",
    "question_th": "ซีรีส์ที่ออกอากาศล่าสุดเมื่อวันที่ 20 สิงหาคม 2553 มีจำนวนซีซันน้อยที่สุดคือเท่าใด",
    "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_en": "Of the series that first aired April 8, 2011, what is the total number of episodes?",
    "question_th": "ซีรีส์ที่ออกอากาศครั้งแรกเมื่อวันที่ 8 เมษายน 2554 มีทั้งหมดกี่ตอน?",
    "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_en": "What's the total when the position was more than 6 and had an A Score of less than 7.6?",
    "question_th": "ยอดรวมเมื่อตำแหน่งมากกว่า 6 และมีคะแนน A น้อยกว่า 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_en": "What's the total when A Score was less than 6.9?",
    "question_th": "คะแนนรวมเมื่อ A Score น้อยกว่า 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_en": "What's the total of Water (sqmi) with a Land (sqmi) of 35.918 and has a Longitude that is smaller than -97.115459?",
    "question_th": "น้ำทั้งหมด (ตร.ม.) ที่มีพื้นที่ (ตร.ม.) เท่ากับ 35.918 และมีลองจิจูดที่เล็กกว่า -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_en": "What;s the total of Longitude with an ANSI code of 1036573 and has Water (sqmi) that is smaller than 0.404?",
    "question_th": "ลองจิจูดทั้งหมดที่มีรหัส ANSI 1036573 และมีน้ำ (ตารางเมตร) ที่เล็กกว่า 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_en": "What's the lowest listed longitude that has a Latitude of 46.843963 and Water (sqmi) that is smaller than 0.052000000000000005?",
    "question_th": "ลองจิจูดที่แสดงต่ำสุดซึ่งมีละติจูด 46.843963 และน้ำ (ตร.ม.) ที่เล็กกว่า 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_en": "What is the total heat ranked higher than 7?",
    "question_th": "ความร้อนรวมอันดับสูงกว่า 7 เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_46 (heat INTEGER, rank INTEGER)"
  },
  {
    "answer": "SELECT cyclist FROM table_name_90 WHERE nation = \"australia\"",
    "question_en": "Which cyclist is from Australia?",
    "question_th": "นักปั่นจักรยานคนไหนมาจากออสเตรเลีย?",
    "context": "CREATE TABLE table_name_90 (cyclist VARCHAR, nation VARCHAR)"
  },
  {
    "answer": "SELECT nation FROM table_name_13 WHERE heat = 4 AND rank = 8",
    "question_en": "Which nation has a heat of 4, and is ranked 8?",
    "question_th": "ประเทศใดมีฮีตอยู่ที่ 4 และอยู่ในอันดับที่ 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_en": "What is John Curtice's position?",
    "question_th": "ตำแหน่งของจอห์น เคอร์ติซคืออะไร?",
    "context": "CREATE TABLE table_name_35 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_24 WHERE school = \"seton hall university\"",
    "question_en": "What player is from Seton Hall University?",
    "question_th": "ผู้เล่นคนไหนจากมหาวิทยาลัย Seton Hall?",
    "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_en": "What is the lowest pick of a player for the SS, P Position for the Minnesota Twins?",
    "question_th": "ตัวเลือกต่ำสุดของผู้เล่นสำหรับ SS, P Position สำหรับ 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_en": "What is the average v-band for Ka-band values under 33 and Q-bands of 1?",
    "question_th": "ค่า v-band เฉลี่ยสำหรับค่า Ka-band ต่ำกว่า 33 และ Q-band เท่ากับ 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 = \"—\"",
    "question_en": "What award has a year earlier than 2004 and the episode shows —?",
    "question_th": "หนึ่งปีก่อนหน้าปี 2547 มีรางวัลอะไรบ้างและมีตอนแสดง —?",
    "context": "CREATE TABLE table_name_90 (award VARCHAR, year VARCHAR, episode VARCHAR)"
  },
  {
    "answer": "SELECT AVG(year) FROM table_name_14 WHERE nominee = \"—\" AND result = \"nominated\"",
    "question_en": "What year has a Nominee of —, and a Result of nominated?",
    "question_th": "ผู้ได้รับการเสนอชื่อเข้าชิงในปีใด — และผลการเสนอชื่อเข้าชิง?",
    "context": "CREATE TABLE table_name_14 (year INTEGER, nominee VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_60 WHERE play = \"electra\"",
    "question_en": "What is the Country of the Play Electra?",
    "question_th": "ประเทศของ 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_en": "What is the Athens Base play with Dance Theatre Roes Company?",
    "question_th": "ละคร Athens Base กับ 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_en": "Who is the author of the Play Electra?",
    "question_th": "ใครคือผู้แต่ง Play Electra",
    "context": "CREATE TABLE table_name_24 (author VARCHAR, play VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_25 WHERE author = \"aristophanes\"",
    "question_en": "Waht is the Country of the play by Author Aristophanes?",
    "question_th": "ประเทศแห่งบทละครของผู้เขียนอริสโตเฟนคืออะไร?",
    "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_en": "What Country has the Play The Libation Bearers a Base of Mecklenburg?",
    "question_th": "ประเทศใดมี Play The Libation Bearers เป็นฐานของเมคเลนบูร์ก?",
    "context": "CREATE TABLE table_name_52 (country VARCHAR, base VARCHAR, play VARCHAR)"
  },
  {
    "answer": "SELECT series FROM table_name_78 WHERE title = \"boyhood daze\"",
    "question_en": "Which series had a title of Boyhood Daze?",
    "question_th": "ซีรีส์เรื่องใดมีชื่อว่า 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_en": "What was the release date of Rabbit Romeo?",
    "question_th": "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_en": "What was the release date of Three Little Bops?",
    "question_th": "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_en": "In 2005 the earnings is less than 615,499 with less than 2 LPGA wins and what smallest Money list rank?",
    "question_th": "ในปี 2548 รายได้น้อยกว่า 615,499 โดยคว้าแชมป์ LPGA น้อยกว่า 2 ครั้งและมีรายการเงินที่เล็กที่สุดอันดับใด",
    "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_en": "What is the team name from Hammond Bishop Noll?",
    "question_th": "ชื่อทีมของแฮมมอนด์ บิชอป โนลล์คืออะไร?",
    "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_en": "What city has a team in IHSAA class 3a, and previous conference of lake?",
    "question_th": "เมืองใดมีทีมงานใน IHSAA คลาส 3a และการประชุมทะเลสาบครั้งก่อน",
    "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_en": "What is the average enrollment 08=09, for the team that had a previous conference of lake and IHSAA class of 3A?",
    "question_th": "การลงทะเบียนเฉลี่ย 08=09 สำหรับทีมที่มีการประชุมระดับ Lake และ IHSAA ระดับ 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_en": "What is the Date of the Kroger Classic Tournament?",
    "question_th": "การแข่งขัน 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_en": "What is the Date of the Ameritech Senior Open?",
    "question_th": "วันที่ของ Ameritech Senior Open คืออะไร?",
    "context": "CREATE TABLE table_name_61 (date VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_89 WHERE winning_score = −16(66 - 64 - 67 = 197)",
    "question_en": "What Tournament has a Winning score of −16 (66-64-67=197)?",
    "question_th": "การแข่งขันใดมีคะแนนชนะที่ −16 (66-64-67=197)?",
    "context": "CREATE TABLE table_name_89 (tournament VARCHAR, winning_score VARCHAR)"
  },
  {
    "answer": "SELECT wu_xing___五行__ FROM table_name_80 WHERE korean___rr__ = \"임 (im)\"",
    "question_en": "What is Wu Xing (五行) with Korean (RR) of 임 (im)?",
    "question_th": "Wu Xing (五行) กับภาษาเกาหลี (RR) ของ 임 (im) คืออะไร?",
    "context": "CREATE TABLE table_name_80 (wu_xing___五行__ VARCHAR, korean___rr__ VARCHAR)"
  },
  {
    "answer": "SELECT manchu___möllendorff__ FROM table_name_48 WHERE wu_xing_correlations = \"南 south\" AND wuu_wuupin = \"ting44\"",
    "question_en": "What's Manchu (Möllendorff) with the Wi Xing Correltation of  南 South, along with Wuu Wuupin of ting44?",
    "question_th": "แมนจู (Möllendorff) คืออะไรกับความสัมพันธ์ Wi Xing ของ南 South พร้อมด้วย Wuu Wuupin จาก ting44?",
    "context": "CREATE TABLE table_name_48 (manchu___möllendorff__ VARCHAR, wu_xing_correlations VARCHAR, wuu_wuupin VARCHAR)"
  },
  {
    "answer": "SELECT japanese_title FROM table_name_19 WHERE tv_station = \"ntv\"",
    "question_en": "Which Japanese Title has a TV Station of ntv?",
    "question_th": "ชื่อเรื่องภาษาญี่ปุ่นเรื่องใดที่มีสถานีโทรทัศน์ของ 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_en": "Which TV Station has a Romaji Title of kegareta shita?",
    "question_th": "สถานีโทรทัศน์ใดมีชื่อโรมาจิว่า 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 = \"恋におちたら～僕の成功の秘密～\"",
    "question_en": "Which Theme Song(s) has a Japanese Title of 恋におちたら～僕の成功の秘密～?",
    "question_th": "เพลงประกอบใดที่มีชื่อภาษาญี่ปุ่นว่า 恋におちたら~僕の成功の秘密~",
    "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_en": "Churai has what as the fewest number of electorates?",
    "question_th": "จุไรมีผู้มีสิทธิเลือกตั้งน้อยที่สุด?",
    "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_en": "what is the title when the release date is 1938-12-17 and the production number is 8610?",
    "question_th": "ชื่อเรื่องว่าอะไรเมื่อวันวางจำหน่ายคือ 1938-12-17 และหมายเลขการผลิตคือ 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_en": "The match played July 8, 2007 had what outcome?",
    "question_th": "แมตช์ที่เล่นเมื่อวันที่ 8 กรกฎาคม 2550 ผลลัพธ์เป็นอย่างไร?",
    "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_en": "The final match played against Evie Dominikovic was played on what surface?",
    "question_th": "นัดชิงชนะเลิศกับเอเวีย โดมินิโควิชเล่นบนพื้นผิวใด?",
    "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á\"",
    "question_en": "Olga Blahotová was the opponent in the final at what tournament?",
    "question_th": "Olga Blahotová เป็นคู่ต่อสู้ในรอบชิงชนะเลิศในทัวร์นาเมนต์ใด",
    "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_en": "In the final against Ashley Harkleroad what was the score?",
    "question_th": "ในรอบชิงชนะเลิศกับแอชลีย์ ฮาร์เคิลโร้ด สกอร์เท่าไหร่?",
    "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_en": "At what time did the opponent Takaichi Hirayama have an event?",
    "question_th": "คู่ต่อสู้ ทาคาอิจิ ฮิรายามะ มีงานอีเว้นท์กี่โมง?",
    "context": "CREATE TABLE table_name_83 (time VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_42 WHERE opponent = \"gabriel veiga\"",
    "question_en": "In which round was Gabriel Veiga the opponent?",
    "question_th": "กาเบรียล เวก้า เป็นคู่แข่งในรอบไหน?",
    "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_en": "Which method had a 3 rounds, result in a loss and the Juiz de Fora - fight 1 event?",
    "question_th": "วิธีไหนมี 3 นัด แพ้ และ จุยซ์ เดอ ฟอร่า - ไฟต์ 1 นัด?",
    "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_en": "Which opponent has a record of 4-2?",
    "question_th": "คู่แข่งคนไหนมีสถิติ 4-2?",
    "context": "CREATE TABLE table_name_55 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_91 WHERE athlete = \"zhang xiuyun\"",
    "question_en": "what is the country for zhang xiuyun?",
    "question_th": "จางซิ่วหยุนอยู่ประเทศอะไร?",
    "context": "CREATE TABLE table_name_91 (country VARCHAR, athlete VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_56 WHERE athlete = \"fabiana beltrame\"",
    "question_en": "what is the country for fabiana beltrame?",
    "question_th": "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_en": "what is the notes when the time is 7:58.71?",
    "question_th": "โน้ตเมื่อเวลา 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_en": "what is the highest rank when the time is 7:52.65?",
    "question_th": "อันดับสูงสุดเมื่อเวลา 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_en": "what is the country when the nots is sa/b, the rank is more than 1 and the athlete is zhang xiuyun?",
    "question_th": "ประเทศอะไรเมื่อคะแนนคือ sa/b อันดับมากกว่า 1 และนักกีฬาคือจาง ซิ่วหยุน?",
    "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_en": "Who had a rank under 17 with a total of 119?",
    "question_th": "ใครมีอันดับต่ำกว่า 17 รวม 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_en": "What round has 2-1 as the result, and A as the venue?",
    "question_th": "ผลการแข่งขันรอบใดมี 2-1 และมี A เป็นเจ้าภาพ?",
    "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_en": "What is the most time for the swimmer from South Africa who was in a lane greater than 3?",
    "question_th": "เวลาใดมากที่สุดสำหรับนักว่ายน้ำจากแอฟริกาใต้ที่อยู่ในเลนมากกว่า 3?",
    "context": "CREATE TABLE table_name_64 (time INTEGER, nationality VARCHAR, lane VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_44 WHERE enrollment = 887",
    "question_en": "Which school has enrollment of 887?",
    "question_th": "โรงเรียนไหนมีผู้ลงทะเบียนเรียน 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_en": "what is the round when the pick # is less than 236 and the position is offensive guard?",
    "question_th": "เมื่อเลือก # น้อยกว่า 236 และตำแหน่งรุกจะออกรอบอะไร?",
    "context": "CREATE TABLE table_name_64 (round INTEGER, pick__number VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_9 WHERE round = 3",
    "question_en": "what is the position in round 3?",
    "question_th": "ตำแหน่งในรอบ 3 คืออะไร?",
    "context": "CREATE TABLE table_name_9 (position VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_99 WHERE pick = 8",
    "question_en": "What is the Position of the Pick 8 Player?",
    "question_th": "ตำแหน่งผู้เล่น Pick 8 คืออะไร?",
    "context": "CREATE TABLE table_name_99 (position VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT high_assists FROM table_name_85 WHERE score = \"w 71-56\"",
    "question_en": "Which High assists has a Score of w 71-56?",
    "question_th": "แอสซิสต์สูงใดที่มีคะแนน 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_en": "Which Score has a High assists of whalen (5)?",
    "question_th": "สกอร์ใดที่มีแอสซิสต์สูงของ วาเลน (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_en": "Which High rebounds has a Game smaller than 9, and a Opponent of detroit?",
    "question_th": "รีบาวด์สูงใดที่มีเกมน้อยกว่า 9 และเป็นฝ่ายตรงข้ามของดีทรอยต์?",
    "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_en": "Which High rebounds has a Score of w 81-69?",
    "question_th": "รีบาวด์สูงใดที่มีคะแนน 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_en": "Which Surface has a Result of fernando verdasco?",
    "question_th": "Surface ใดมีผลลัพธ์ของ 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_en": "How many events did clay win?",
    "question_th": "ดินชนะกี่รายการ?",
    "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_en": "Which Surface has an Opponent of rafael nadal, and an Event of 2?",
    "question_th": "Surface ใดมีคู่ต่อสู้ของ Rafael Nadal และเหตุการณ์ที่ 2",
    "context": "CREATE TABLE table_name_59 (surface VARCHAR, opponent VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_7 WHERE result = \"iván navarro\"",
    "question_en": "Who is iván navarro's opponent?",
    "question_th": "คู่ต่อสู้ของอิวาน นาวาร์โรคือใคร?",
    "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_en": "Which Event has a Surface of semifinal, and a Winner of hard (i)?",
    "question_th": "เหตุการณ์ใดมีพื้นผิวของรอบรองชนะเลิศและเป็นผู้ชนะในระดับยาก (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_en": "Who was the leader at the summit earlier than 1956, when Carcassonne shows for finish?",
    "question_th": "ใครเป็นผู้นำในการประชุมสุดยอดก่อนปี 1956 เมื่อการ์กาซอนโชว์ชัย?",
    "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_en": "What year was finish Toulouse, and stage was larger than 12?",
    "question_th": "ตูลูสจบปีไหนและเวทีใหญ่เกิน 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ères-de-bigorre\"",
    "question_en": "What is the highest stage number for a year later than 1948, leader at the summit was group, and finish was Bagnères-De-Bigorre?",
    "question_th": "หมายเลขเวทีสูงสุดในหนึ่งปีหลังจากปี 1948 คือเท่าใด ผู้นำในการประชุมสุดยอดคือกลุ่ม และจบที่ Bagnères-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_en": "which Vacator has a Reason for change of resigned november 10, 1965?",
    "question_th": "ผู้สมัครคนไหนมีเหตุผลในการเปลี่ยนแปลงผู้ลาออกเมื่อวันที่ 10 พฤศจิกายน 2508?",
    "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_en": "Which Reason has a State (class) of tennessee (2)?",
    "question_th": "เหตุผลใดที่มีรัฐ (คลาส) ของรัฐเทนเนสซี (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_en": "Which State (class) has a Successor of harry f. byrd, jr. (d)? Question",
    "question_th": "รัฐใด (ชนชั้น) มีผู้สืบทอดของแฮร์รี่ เอฟ. เบิร์ด จูเนียร์ (ง)? คำถาม",
    "context": "CREATE TABLE table_name_54 (state__class_ VARCHAR, successor VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_33 WHERE col__m_ = 1374",
    "question_en": "Which country has a Col (m) of 1374?",
    "question_th": "ประเทศใดมี Col (m) เท่ากับ 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–1974\" AND debut_year > 1971",
    "question_en": "How many Games have Years at club of 1971–1974, and a Debut year larger than 1971?",
    "question_th": "มีกี่เกมที่มีปีที่สโมสรในปี 1971–1974 และปีเปิดตัวที่ใหญ่กว่าปี 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–1975\" AND goals = 4",
    "question_en": "Which Games have Years at club of 1974–1975, and Goals of 4?",
    "question_th": "เกมใดบ้างที่มีปีที่สโมสรในปี 1974–1975 และประตูที่ 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_en": "Which Years at club have Games smaller than 7, and Goals larger than 2, and a Player of john frazer?",
    "question_th": "ปีใดที่สโมสรมีเกมที่น้อยกว่า 7 และประตูมากกว่า 2 และมีผู้เล่นของ 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_en": "Which Games have Years at club of 1977, and Goals of 17, and a Debut year smaller than 1977?",
    "question_th": "เกมใดบ้างที่มีปีที่สโมสรในปี 1977 และเป้าหมายที่ 17 และปีที่เดบิวต์น้อยกว่าปี 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_en": "Which Goals have Games smaller than 41, and a Player of mark amos?",
    "question_th": "เป้าหมายใดที่มีเกมน้อยกว่า 41 และผู้เล่นของ 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_en": "What is Melaine Walker's Rank?",
    "question_th": "อันดับของ Melaine Walker คืออะไร?",
    "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_en": "What is the Name of the Player with a Rank of 23 or less, Heat of 4 and Result of 55.91?",
    "question_th": "ชื่อของผู้เล่นที่มีอันดับ 23 หรือน้อยกว่า, ฮีต 4 และผลการแข่งขัน 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_en": "What is the Heat of the Player with a Rank of 18 or less and Result of 55.15?",
    "question_th": "อะไรคือความร้อนของผู้เล่นที่มีอันดับ 18 หรือน้อยกว่าและผลการแข่งขัน 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–3015\"",
    "question_en": "What is the quantity preserved for fleet number(s) 3000–3015?",
    "question_th": "ปริมาณที่สงวนไว้สำหรับหมายเลขกองเรือ 3000–3015 เป็นเท่าใด",
    "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_en": "What manufacturer has a wheel arrangement of 4-6-6-4, and a Class of z-7?",
    "question_th": "ผู้ผลิตรายใดมีการจัดล้อ 4-6-6-4 และคลาส 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_en": "What is the Year for fleet number 5000?",
    "question_th": "กองเรือหมายเลข 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_en": "What year made has a Quantity made of 4?",
    "question_th": "ปีไหนที่ผลิตมีปริมาณ 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_en": "What is the quantity preserved for the serial number of mallet and simple articulated locomotives?",
    "question_th": "ปริมาณที่เก็บรักษาไว้สำหรับหมายเลขประจำเครื่องของค้อนและหัวรถจักรแบบธรรมดาคือเท่าใด",
    "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_en": "How many silver medals did Estonia, which won more than 1 gold and less than 97 medals total, win?",
    "question_th": "เอสโตเนียซึ่งคว้ามากกว่า 1 เหรียญทองและน้อยกว่า 97 เหรียญได้เหรียญเงินไปทั้งหมดกี่เหรียญ",
    "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_en": "How many gold medals did Denmark win?",
    "question_th": "เดนมาร์กได้กี่เหรียญทอง?",
    "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_en": "What is the total number of gold medals won among nations that won more than 27 bronze and less than 305 medals total?",
    "question_th": "จำนวนเหรียญทองทั้งหมดที่ได้รับจากประเทศต่างๆ ที่คว้าเหรียญทองแดงมากกว่า 27 เหรียญและเหรียญทองแดงทั้งหมดน้อยกว่า 305 เหรียญเป็นเท่าใด",
    "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_en": "How many gold medals were won by the nation that won over 4 silver medals, over 14 bronze, and 97 medals total?",
    "question_th": "ประเทศได้ไปกี่เหรียญทอง โดยได้เหรียญเงินมากกว่า 4 เหรียญ เหรียญทองแดงมากกว่า 14 เหรียญ รวมทั้งหมด 97 เหรียญ",
    "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_en": "What is the highest championship that has 1 as the league cup, and 17 as the total?",
    "question_th": "แชมป์สูงสุดที่มี 1 เป็นลีกคัพ และ 17 เป็นทั้งหมดคืออะไร?",
    "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_en": "How many league cups have an FA Cup less than 0?",
    "question_th": "มีกี่ลีกคัพที่มีเอฟเอคัพน้อยกว่า 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_en": "What is the average rank of west germany (frg), which has more than 1 silver, less than 11 gold, and 2 bronze medals?",
    "question_th": "อันดับเฉลี่ยของเยอรมนีตะวันตก (frg) ซึ่งมีมากกว่า 1 เหรียญเงิน น้อยกว่า 11 เหรียญทอง และ 2 เหรียญทองแดง คือเท่าไร",
    "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_en": "What's the date when Yelena Isinbayeva for Russia was in Beijing, China?",
    "question_th": "วันที่เท่าไหร่ที่ Yelena Isinbayeva สำหรับรัสเซียอยู่ที่ปักกิ่ง ประเทศจีน?",
    "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_en": "What's the performance of Dire Tune?",
    "question_th": "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_en": "What place had 14:11.15 as the performance?",
    "question_th": "เวทีไหนที่มีเวลา 14:11.15 นาที?",
    "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_en": "What's the event that had a performance of 14:11.15 by Ethiopia?",
    "question_th": "งานที่มีการแสดง 14:11.15 โดยเอธิโอเปียมีอะไรบ้าง?",
    "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_en": "What was the position of the player picked after 94, by the Boston Patriots?",
    "question_th": "ตำแหน่งของผู้เล่นที่เลือกหลังจาก 94 โดย 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_en": "What college had the 93 pick?",
    "question_th": "วิทยาลัยใดมี 93 เลือก?",
    "context": "CREATE TABLE table_name_50 (college VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_60 WHERE competition = \"euro 2004 q.\"",
    "question_en": "What venue has euro 2004 q. as the competition?",
    "question_th": "สถานที่ใดมียูโร 2004 q. เป็นการแข่งขัน?",
    "context": "CREATE TABLE table_name_60 (venue VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT county FROM table_name_72 WHERE school = \"whiteland community\"",
    "question_en": "What county is Whiteland Community School in?",
    "question_th": "Whiteland Community School อยู่ในเคาน์ตีใด",
    "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_en": "What county has a football team in IHSAA class AAAAA and a school macot of the Grizzly Cubs?",
    "question_th": "เคาน์ตีใดมีทีมฟุตบอลในระดับ IHSAA ระดับ AAAAA และทีม Macot ของ 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_en": "What county has a school mascot of the Pioneers?",
    "question_th": "มณฑลใดมีตัวนำโชคประจำโรงเรียนของผู้บุกเบิก?",
    "context": "CREATE TABLE table_name_71 (county VARCHAR, mascot VARCHAR)"
  },
  {
    "answer": "SELECT ihsaa_class FROM table_name_34 WHERE location = \"indianapolis\"",
    "question_en": "What are the IHSAA classes of the Indianapolis schools?",
    "question_th": "ชั้นเรียน IHSAA ของโรงเรียนในอินเดียแนโพลิสมีอะไรบ้าง",
    "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_en": "Which Song has Points smaller than 53, and a Place larger than 8, and a Draw larger than 1?",
    "question_th": "เพลงใดมีคะแนนน้อยกว่า 53 และสถานที่ใหญ่กว่า 8 และเสมอมากกว่า 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_en": "What is the result for the Green-Communist party when the Left Bloc has 3.6%?",
    "question_th": "พรรคกรีน-คอมมิวนิสต์จะมีผลอย่างไรเมื่อกลุ่มฝ่ายซ้ายมี 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_en": "What is the result for the Green-Communist party when the Left Bloc has 3.0%?",
    "question_th": "พรรคกรีน-คอมมิวนิสต์จะเป็นอย่างไรเมื่อกลุ่มฝ่ายซ้ายมี 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_en": "What is the date released when the Left Bloc had 3.2%?",
    "question_th": "วันที่ประกาศเมื่อ Left Bloc มี 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_en": "What is the cardinalatial order of the elector elevated circa 1116?",
    "question_th": "ลำดับพระคาร์ดินัลของผู้มีสิทธิเลือกตั้งยกระดับประมาณ ค.ศ. 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_en": "When was the elector from pisa elevated?",
    "question_th": "ผู้มีสิทธิเลือกตั้งจากปิซาได้รับการยกระดับเมื่อใด",
    "context": "CREATE TABLE table_name_13 (elevated VARCHAR, nationality VARCHAR)"
  },
  {
    "answer": "SELECT cardinalatial_order_and_title FROM table_name_92 WHERE elector = \"bosone\"",
    "question_en": "What is the cardinalatial order and title of bosone?",
    "question_th": "ลำดับพระคาร์ดินัลเชียลและตำแหน่งของโบโซนคืออะไร?",
    "context": "CREATE TABLE table_name_92 (cardinalatial_order_and_title VARCHAR, elector VARCHAR)"
  },
  {
    "answer": "SELECT elevator FROM table_name_83 WHERE nationality = \"crema\"",
    "question_en": "Who is the elevator from crema?",
    "question_th": "ลิฟต์จากครีมาคือใคร?",
    "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_en": "What is the name of the swimmer from Australia in lane 4 with a heat larger than 4?",
    "question_th": "นักว่ายน้ำจากออสเตรเลียในเลน 4 ที่มีความร้อนมากกว่า 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_en": "What is the lowest heat number for a swimmer with a time of 2:34.94?",
    "question_th": "เลขความร้อนต่ำสุดของนักว่ายน้ำด้วยเวลา 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_en": "What is the rank of the player from Ukraine with react less than 0.26?",
    "question_th": "นักเตะยูเครนอันดับไหนที่มีรีแอคชั่นน้อยกว่า 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_en": "What was the highest week with a w 21-17 result, and more than 45,254 in attendance?",
    "question_th": "สัปดาห์ใดคือสัปดาห์สูงสุดที่มีผลการแข่งขัน aw 21-17 และมีผู้เข้าร่วมมากกว่า 45,254 คน?",
    "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_en": "What's the Proto-Germanic when the Old English is /d/?",
    "question_th": "Proto-Germanic คืออะไร เมื่อภาษาอังกฤษแบบเก่าคือ /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_en": "What's the Proto Germanic when then German is /s/ or /ts/?",
    "question_th": "Proto Germanic คืออะไรเมื่อภาษาเยอรมันคือ /s/ หรือ /ts/?",
    "context": "CREATE TABLE table_name_41 (proto_germanic VARCHAR, german VARCHAR)"
  },
  {
    "answer": "SELECT dutch FROM table_name_66 WHERE old_english = \"/d/\"",
    "question_en": "What's the Dutch when then Old English is /d/?",
    "question_th": "ภาษาดัตช์คืออะไรเมื่อภาษาอังกฤษแบบเก่าคือ /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_en": "What's the West Germanic when the German is /s/ or /ts/?",
    "question_th": "อะไรคือ West Germanic เมื่อภาษาเยอรมันคือ /s/ หรือ /ts/?",
    "context": "CREATE TABLE table_name_90 (west_germanic VARCHAR, german VARCHAR)"
  },
  {
    "answer": "SELECT proto_germanic FROM table_name_48 WHERE german = \"/t/\"",
    "question_en": "What's the Proto-Germanic when the German is /t/?",
    "question_th": "Proto-Germanic คืออะไร เมื่อภาษาเยอรมันคือ /t/?",
    "context": "CREATE TABLE table_name_48 (proto_germanic VARCHAR, german VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_49 WHERE country = \"japan\"",
    "question_en": "What is the to par for japan",
    "question_th": "สิ่งที่เทียบเท่ากับญี่ปุ่นคืออะไร",
    "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_en": "what player has $187,500 and score 66-75-71-69=281",
    "question_th": "ผู้เล่นคนไหนมีเงิน $187,500 และคะแนน 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_en": "what place has score 66-74-68-73=281",
    "question_th": "สถานที่ใดมีคะแนน 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_en": "what player has place t10",
    "question_th": "ผู้เล่นคนไหนมีตำแหน่ง 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_en": "what is the to par for $242,813 with score 68-72-74-66=280",
    "question_th": "อะไรคือพาร์สำหรับ $242,813 ด้วยคะแนน 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_en": "Which School has a Size larger than 408, and a Mascot of pacers?",
    "question_th": "โรงเรียนใดมีขนาดใหญ่กว่า 408 และมีมาสคอตของม้าแข่ง?",
    "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_en": "Which Size has an IHSAA Class of aa, and a Location of milan?",
    "question_th": "ขนาดใดมีระดับ IHSAA ของ aa และที่ตั้งของมิลาน",
    "context": "CREATE TABLE table_name_76 (size INTEGER, ihsaa_class VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT county FROM table_name_36 WHERE mascot = \"pacers\"",
    "question_en": "Which County has a Mascot of pacers?",
    "question_th": "มณฑลใดมีตัวนำโชคของ 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_en": "Which Mascot has a County of 69 ripley, and an IHSAA Class of aa, and a School of south ripley?",
    "question_th": "มาสคอตตัวใดมีเขต 69 ริปลีย์ และคลาส IHSAA อยู่ที่ aa และ 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_en": "Who was in Lane 5 and had a heat of 7?",
    "question_th": "ใครอยู่ในเลน 5 และมีความร้อนเท่ากับ 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_en": "What lane number was Hungary and had a heat of 4?",
    "question_th": "ฮังการีหมายเลขเลนใดและมีความร้อน 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_en": "What's the date when the score was 690.3?",
    "question_th": "คะแนน 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_en": "What's the place of 1989 with a comp of ECH?",
    "question_th": "ในปี 1989 ที่มีคอมพ์ของ 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_en": "Who was the shooter with a score of 686.4?",
    "question_th": "ใครคือมือปืนที่ได้คะแนน 686.4?",
    "context": "CREATE TABLE table_name_59 (shooter VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_81 WHERE game = \"borderlands 2\"",
    "question_en": "what is the year for borderlands 2?",
    "question_th": "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_en": "what is the year for the game dead space 2?",
    "question_th": "เกม 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_en": "who is the developers for demon's souls?",
    "question_th": "ใครคือผู้พัฒนาวิญญาณปีศาจ?",
    "context": "CREATE TABLE table_name_8 (developer_s_ VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_88 WHERE standalone = \"zaxxon\"",
    "question_en": "In what year is Zaxxon the Standalone?",
    "question_th": "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_en": "What is the Standalone in the year when Space Invaders is the Console?",
    "question_th": "Standalone คืออะไรในปีที่ Space Invaders เป็นคอนโซล?",
    "context": "CREATE TABLE table_name_43 (standalone VARCHAR, console VARCHAR)"
  },
  {
    "answer": "SELECT standalone FROM table_name_99 WHERE arcade = \"tron\"",
    "question_en": "What is the Standalone when Tron is the Arcade?",
    "question_th": "Standalone คืออะไรเมื่อ Tron เป็น Arcade?",
    "context": "CREATE TABLE table_name_99 (standalone VARCHAR, arcade VARCHAR)"
  },
  {
    "answer": "SELECT console FROM table_name_59 WHERE arcade = \"space invaders\"",
    "question_en": "What is the Console when Space Invaders is the Arcade?",
    "question_th": "คอนโซลคืออะไรเมื่อ Space Invaders เป็นอาร์เคด?",
    "context": "CREATE TABLE table_name_59 (console VARCHAR, arcade VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_6 WHERE team = \"arizona diamondbacks\"",
    "question_en": "What position does the player from the Arizona Diamondbacks play?",
    "question_th": "ผู้เล่นจาก Arizona Diamondbacks เล่นตำแหน่งใด?",
    "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_en": "What school did P Jay Gehrke of the Kansas City Royals attend?",
    "question_th": "P Jay Gehrke จาก Kansas City Royals เข้าเรียนที่โรงเรียนใด",
    "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_en": "What country does Adam van Koeverden play for?",
    "question_th": "อดัม ฟาน คูเวอร์เดน ลงเล่นให้กับประเทศใด?",
    "context": "CREATE TABLE table_name_31 (country VARCHAR, athletes VARCHAR)"
  },
  {
    "answer": "SELECT pick FROM table_name_63 WHERE school = \"jasper hs (jasper, texas)\"",
    "question_en": "what is the pick when the school is jasper hs (jasper, texas)?",
    "question_th": "จะเลือกอะไรเมื่อโรงเรียนอยู่ที่ 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_en": "who is the player when the position is p and the team is oakland athletics?",
    "question_th": "ใครคือผู้เล่นตำแหน่ง p และทีมโอ๊คแลนด์กรีฑา?",
    "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_en": "what is the school when the team is new york yankees?",
    "question_th": "โรงเรียนอะไรในเมื่อทีมเป็นนิวยอร์กแยงกี้?",
    "context": "CREATE TABLE table_name_1 (school VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_24 WHERE school = \"spring hs (spring, texas)\"",
    "question_en": "who is the player when the school is spring hs (spring, texas)?",
    "question_th": "ใครคือผู้เล่นเมื่อโรงเรียนเป็น 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 = \"英雄牌嬰幼兒配方乳粉\"",
    "question_en": "What's the melamine content of 英雄牌嬰幼兒配方乳粉 having more than 1 samples failed?",
    "question_th": "ปริมาณเมลามีนของ 英雄牌嬰幼兒配方乳粉 ที่มีมากกว่า 1 ตัวอย่างล้มเหลวคืออะไร",
    "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_en": "What's the most melamine content that has more than 1 samples failed and produced by Guangzhou Jinding Dairy Products Factory?",
    "question_th": "ปริมาณเมลามีนส่วนใหญ่ที่มีมากกว่า 1 ตัวอย่างล้มเหลวและผลิตโดยโรงงานผลิตภัณฑ์นม Guangzhou Jinding คืออะไร",
    "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_en": "What's the product that has less than 98.6 melamine content, more than 1 sample failed and took less than 3 samples?",
    "question_th": "ผลิตภัณฑ์ที่มีปริมาณเมลามีนน้อยกว่า 98.6 ตัวอย่างมากกว่า 1 ตัวอย่างล้มเหลวและใช้เวลาน้อยกว่า 3 ตัวอย่างคืออะไร",
    "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 = \"可淇牌嬰幼兒配方乳粉\" AND samples_taken < 1",
    "question_en": "What the most samples failed for 可淇牌嬰幼兒配方乳粉 and had less than 1 samples taken?",
    "question_th": "ตัวอย่างใดที่ล้มเหลวมากที่สุดสำหรับ 可淇牌嬰幼兒配方乳粉 และเก็บตัวอย่างน้อยกว่า 1 ตัวอย่าง?",
    "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_en": "How many samples taken from producer Qingdao Suncare Nutritional Technology with a melamine content less than 53.4?",
    "question_th": "มีกี่ตัวอย่างที่นำมาจากผู้ผลิต Qingdao Suncare Nutritional Technology ที่มีปริมาณเมลามีนน้อยกว่า 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_en": "What did the golfer from Australia score?",
    "question_th": "นักกอล์ฟจากออสเตรเลียได้คะแนนเท่าใด",
    "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_en": "Which date has an Opera usage percentage of 5.1% and Internet Explorer usage of 59.5%?",
    "question_th": "วันใดที่มีเปอร์เซ็นต์การใช้งาน Opera 5.1% และการใช้งาน Internet Explorer 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_en": "Which source has a date of June 2008?",
    "question_th": "แหล่งใดมีวันที่มิถุนายน 2551",
    "context": "CREATE TABLE table_name_28 (source VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT source FROM table_name_52 WHERE internet_explorer = \"60.2%\"",
    "question_en": "Which source date has an Internet Explorer usage of 60.2%?",
    "question_th": "วันที่ต้นทางใดมีการใช้งาน Internet Explorer 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_en": "What city has the home team of the brisbane broncos?",
    "question_th": "บริสเบน บรองโกส์ เจ้าบ้านอยู่เมืองไหน?",
    "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_en": "What is the earliest closed year in the country of france?",
    "question_th": "ปีที่ปิดเร็วที่สุดในประเทศฝรั่งเศสคือปีใด?",
    "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_en": "What is the result for the event that lasted 2:20?",
    "question_th": "เหตุการณ์ที่กินเวลา 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_en": "Who was the fight against when loss was the result at the Gladiator Challenge 87: Collision Course event?",
    "question_th": "ใครเป็นผู้ต่อสู้กับเมื่อความพ่ายแพ้เป็นผลในการแข่งขัน Gladiator Challenge 87: Collision Course?",
    "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_en": "For the Cage Combat Fighting Championships: Mayhem, what was the record?",
    "question_th": "สำหรับ Cage Combat Fighting Championships: Mayhem มีสถิติอะไรบ้าง?",
    "context": "CREATE TABLE table_name_13 (record VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT designer FROM table_name_89 WHERE restaurant_name = \"the grapefruit moon\"",
    "question_en": "Who was the designer for The Grapefruit Moon?",
    "question_th": "ใครคือผู้ออกแบบ 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_en": "Who is the chef at Lakes Bar and Grill?",
    "question_th": "ใครคือเชฟของ 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_en": "What is the name of the Cobourg, ON restaurant that had Robin de Groot as designer?",
    "question_th": "ร้านอาหาร Cobourg, ON ชื่ออะไรที่มี Robin de Groot เป็นดีไซเนอร์",
    "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_en": "What European competitions have a tier of 2 and a position of 3?",
    "question_th": "การแข่งขันระดับยุโรปรายการใดบ้างที่มีระดับ 2 และอันดับ 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_en": "Which Nation won 5 Silver, and more than 4 Gold?",
    "question_th": "ประเทศใดได้รับ 5 เหรียญเงิน และมากกว่า 4 เหรียญทอง?",
    "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_en": "What is the sum of heat for christophe lebon when lane is less than 4?",
    "question_th": "ผลรวมความร้อนของคริสตอฟ เลบอน เมื่อเลนน้อยกว่า 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_en": "Who is from the united states, has a rank less than 9, and heat more than 5?",
    "question_th": "ใครมาจากอเมริกา อันดับไม่ถึง 9 และตัวร้อนเกิน 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_en": "Serbia has a heat less than 2 and what sum of rank?",
    "question_th": "เซอร์เบียมีฮีตน้อยกว่า 2 และอันดับเท่าไหร่?",
    "context": "CREATE TABLE table_name_38 (rank VARCHAR, nationality VARCHAR, heat VARCHAR)"
  },
  {
    "answer": "SELECT MIN(lane) FROM table_name_38 WHERE rank = 33",
    "question_en": "When rank is 33, what is the smallest lane?",
    "question_th": "เมื่ออันดับ 33 เลนไหนเล็กที่สุด?",
    "context": "CREATE TABLE table_name_38 (lane INTEGER, rank VARCHAR)"
  },
  {
    "answer": "SELECT model FROM table_name_6 WHERE number_of_cpus = \"1–10\" AND performance__mips_ = \"49–447\"",
    "question_en": "Which Model has a Number of CPUs of 1–10, and a Performance (MIPS) of 49–447?",
    "question_th": "รุ่นใดมีจำนวน CPU 1–10 และประสิทธิภาพ (MIPS) 49–447",
    "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–2\"",
    "question_en": "Which Year Introduced has a Memory (GB) of 0.125–2?",
    "question_th": "เปิดตัวปีใดมีหน่วยความจำ (GB) 0.125–2",
    "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–16\"",
    "question_en": "Which Number of CPUs has a Memory (GB) of 0.5–16?",
    "question_th": "CPU จำนวนใดที่มีหน่วยความจำ (GB) 0.5–16",
    "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–6\"",
    "question_en": "Which Memory (GB) has a Number of CPUs of 1–6?",
    "question_th": "หน่วยความจำ (GB) ใดมีจำนวน CPU 1–6",
    "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_en": "Which Fuel Type that has a mpg-US Extra-Urban larger than 53.5, and a mpg-US Combined larger than 50 from renault?",
    "question_th": "ประเภทเชื้อเพลิงใดที่มี mpg-US Extra-Urban ใหญ่กว่า 53.5 และ mpg-US รวมกันมากกว่า 50 จากเรโนลต์",
    "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_en": "What is the Country of the Rowers with a Rank larger than 4 and Time of 5:59.56?",
    "question_th": "ประเทศของนักพายเรือที่มีอันดับมากกว่า 4 และเวลา 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_en": "What is the Time of the Belarus Player with a Rank larger than 2 and Notes of FB?",
    "question_th": "เวลาของผู้เล่นเบลารุสที่มีอันดับมากกว่า 2 และหมายเหตุของ 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_en": "What is the Time of the Player with a Rank of 1 or 2 and Notes of FA?",
    "question_th": "เวลาของผู้เล่นที่มีอันดับ 1 หรือ 2 และหมายเหตุของ FA คืออะไร?",
    "context": "CREATE TABLE table_name_75 (time VARCHAR, notes VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT rowers FROM table_name_66 WHERE country = \"poland\"",
    "question_en": "Who are the Rowers from Poland?",
    "question_th": "ใครคือฝีพายจากโปแลนด์?",
    "context": "CREATE TABLE table_name_66 (rowers VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT rowers FROM table_name_14 WHERE time = \"5:56.38\"",
    "question_en": "Who are the Rowers with a Time of 5:56.38?",
    "question_th": "ใครคือฝีพายที่มีเวลา 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_en": "What's the title of the film with the release date of 1954-12-18?",
    "question_th": "ชื่อเรื่องของภาพยนตร์เรื่องอะไร ซึ่งออกฉายในวันที่ 12-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_en": "What is the production number for Bell Hoppy in the MM Series?",
    "question_th": "Bell Hoppy ใน 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_en": "How much Scored has Losses smaller than 0?",
    "question_th": "คะแนนเท่าไหร่ที่มีการขาดทุนน้อยกว่า 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_en": "Which Wins have Losses smaller than 6, and a Position of 4, and Played larger than 9?",
    "question_th": "ชัยชนะใดที่มีการแพ้น้อยกว่า 6 และตำแหน่งที่ 4 และเล่นมากกว่า 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_en": "How much Conceded has Wins smaller than 3, and Points larger than 11?",
    "question_th": "เสียเงินรางวัลน้อยกว่า 3 และแต้มมากกว่า 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_en": "Which Draws has Points smaller than 15, and a Conceded larger than 10, and a Position larger than 8, and Wins of 1?",
    "question_th": "การเสมอใดมีแต้มน้อยกว่า 15 และเสียมากกว่า 10 และมีตำแหน่งมากกว่า 8 และชนะ 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_en": "How many losses have 11 points?",
    "question_th": "เสีย 11 แต้มได้กี่แต้ม?",
    "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_en": "What is the song title sung by Sonu Nigam with lyricists of Dev Kohli/Biddu, and number over 8?",
    "question_th": "ชื่อเพลงที่ร้องโดย Sonu Nigam ร่วมกับผู้แต่งเนื้อร้องของ Dev Kohli/Biddu และหมายเลขมากกว่า 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_en": "Who was the singer for the song numbered 3, with lyricist Dev Kohli?",
    "question_th": "ใครคือนักร้องในเพลงหมายเลข 3 ร่วมกับผู้แต่งเนื้อร้อง 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_en": "What is the average number for the song \"O Sudha\"?",
    "question_th": "ค่าเฉลี่ยของเพลง \"โอสุดา\" คือเท่าไร?",
    "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_en": "What is the average length for the song \"Ma Ke Jaisi\"?",
    "question_th": "ความยาวเฉลี่ยของเพลง \"มะเขือใจสี่\" คือเท่าไร?",
    "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_en": "Who had fa cup goals of 0, league cup goals less than 2, and total goals of 2?",
    "question_th": "ใครบ้างที่มีประตูเอฟเอคัพที่ 0 ประตูลีกคัพน้อยกว่า 2 และประตูรวมที่ 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_en": "what is the fa cup goals when total apps is 10 (4)?",
    "question_th": "เป้าหมายเอฟเอคัพเมื่อรวมแอปคือ 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_en": "how many times is the fa cup apps more than 0, the position mf and the league goals 4?",
    "question_th": "กี่ครั้งแล้วที่เอฟเอ คัพ มากกว่า 0 ตำแหน่ง MF และประตูในลีก 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_en": "What is the total number of electorates in 2009 with a constituency of 193?",
    "question_th": "จำนวนผู้มีสิทธิเลือกตั้งในปี 2552 โดยแบ่งเขตเลือกตั้ง 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_en": "What is the reserved for the constituency of 192?",
    "question_th": "สงวนไว้สำหรับเขตเลือกตั้ง 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_en": "Which Artist has a Percentage of 11.32%?",
    "question_th": "ศิลปินคนไหนมีเปอร์เซ็นต์ 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_en": "What is the week for November 28, 1982?",
    "question_th": "สัปดาห์ของวันที่ 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_en": "What is the attendance number when the result is l 41-37?",
    "question_th": "จำนวนการเข้างานเมื่อผลเป็น 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_en": "What is the attendance in a week earlier than 4, and result is w 31-20?",
    "question_th": "การเข้าร่วมงานในหนึ่งสัปดาห์ก่อน 4 โมงเช้าเป็นเท่าใด และผลลัพธ์คือ 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_en": "What is the opponent in a week larger than 1, with a result of l 21-20?",
    "question_th": "คู่ต่อสู้ในหนึ่งสัปดาห์มากกว่า 1 โดยผล 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_en": "What sport was played by the team founded in 2010?",
    "question_th": "ทีมที่ก่อตั้งในปี 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_en": "What club team was founded before 2011 and plays at the champion window field?",
    "question_th": "ทีมสโมสรใดก่อตั้งก่อนปี 2011 และเล่นในสนามแชมเปี้ยนวินโดว์?",
    "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_en": "How many different dates are there for founded teams for the venue of champion window field?",
    "question_th": "มีกี่วันที่ที่แตกต่างกันสำหรับทีมที่ก่อตั้งสำหรับสนามแชมเปี้ยนวินโดว์?",
    "context": "CREATE TABLE table_name_77 (founded VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_name_40 WHERE venue = \"champion window field\"",
    "question_en": "What club team plays at the champion window field?",
    "question_th": "ทีมสโมสรใดเล่นที่สนามแชมเปี้ยนวินโดว์?",
    "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_en": "Which Inflation Index (2000=100) has a Per Capita Income (as % of USA) of 10.65, and a Year smaller than 1990?",
    "question_th": "ดัชนีเงินเฟ้อใด (2000=100) มีรายได้ต่อหัว (เป็น % ของสหรัฐอเมริกา) เท่ากับ 10.65 และหนึ่งปีน้อยกว่าปี 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_en": "What release date has 6998 as the production num.?",
    "question_th": "กำหนดวางจำหน่ายวันที่เท่าไรคือหมายเลข 6998?",
    "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_en": "What director has lt as the series, with 6982 as the production num.?",
    "question_th": "ผู้กำกับคนไหนกำหนดให้เป็นซีรีส์นี้ โดยมี 6982 เป็นผู้อำนวยการสร้าง?",
    "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_en": "What series has 1935-07-13 as the release date?",
    "question_th": "ซีรีส์ใดที่มี 1935-07-13 เป็นวันวางจำหน่าย?",
    "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_en": "What title has lt as the series, ben hardaway as the director, with 6612 as the production num.?",
    "question_th": "ชื่อเรื่องอะไรเป็นซีรีส์ โดยมีเบ็น ฮาร์ดอเวย์เป็นผู้กำกับ โดยมีหมายเลขการผลิต 6612?",
    "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_en": "What is the song title from 1963 on the Pacific Jazz label, and a Label-Nr of st-81?",
    "question_th": "ชื่อเพลงจากปี 1963 บนค่ายเพลง Pacific Jazz และ Label-Nr ของ 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_en": "What is the earliest year with a label-Nr of st-43?",
    "question_th": "ปีแรกสุดที่มีป้ายกำกับ-Nr ของ 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_en": "What is the song title on the Pacific Jazz label, and a Label-Nr of st-20124?",
    "question_th": "ชื่อเพลงบนค่ายเพลง Pacific Jazz และ Label-Nr ของ 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_en": "What is the type earlier than 1968, and a Title of stretchin' out?",
    "question_th": "ประเภทใดก่อนปี 1968 และชื่อยืดออกคืออะไร?",
    "context": "CREATE TABLE table_name_42 (type VARCHAR, year VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_19 WHERE pick = 31",
    "question_en": "what is the team that is pick 31?",
    "question_th": "ทีมที่เลือก 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_en": "what is the position when the pick is higher than 32 and the team is atlanta braves?",
    "question_th": "ตำแหน่งอะไรเมื่อตัวเลือกสูงกว่า 32 และทีม 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_en": "what is the position when the pick is higher than 33 and the school is tottenville hs (staten island, ny)?",
    "question_th": "ตำแหน่งใดเมื่อตัวเลือกสูงกว่า 33 และโรงเรียนอยู่ที่ 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_en": "What is the Attendance of the game in Week 12?",
    "question_th": "ผู้เข้าร่วมเกมในสัปดาห์ที่ 12 คืออะไร?",
    "context": "CREATE TABLE table_name_99 (attendance INTEGER, week VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_25 WHERE date = \"december 3, 1979\"",
    "question_en": "What is the Opponent on December 3, 1979?",
    "question_th": "ฝ่ายตรงข้ามในวันที่ 3 ธันวาคม พ.ศ. 2522 คืออะไร?",
    "context": "CREATE TABLE table_name_25 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_62 WHERE opponent = \"philadelphia eagles\"",
    "question_en": "What is the Result of the game against Philadelphia Eagles?",
    "question_th": "ผลการแข่งขันกับฟิลาเดลเฟีย อีเกิลส์เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_62 (result VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_55 WHERE date = \"march 27\"",
    "question_en": "What is the score March 27?",
    "question_th": "คะแนนวันที่ 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_en": "What is the score for the game larger than 4 in series 3-2?",
    "question_th": "คะแนนของเกมที่มากกว่า 4 ในซีรีส์ 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_en": "What is the game number for series 4-2?",
    "question_th": "หมายเลขเกมของซีรีส์ 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_en": "What date has a game smaller than 4, and a score of 116-114?",
    "question_th": "วันที่ใดที่มีเกมน้อยกว่า 4 และคะแนน 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_en": "What is the game number on April 7?",
    "question_th": "เกมหมายเลขวันที่ 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_en": "Which Opposing Team has an Against smaller than 19, and a Date of 20/05/1979?",
    "question_th": "ทีมตรงข้ามทีมใดที่มีแต้มต่อน้อยกว่า 19 และวันที่ 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_en": "What was the production number of the episode titel of pre-hysterical hare?",
    "question_th": "ชื่อตอนของกระต่ายก่อนตีโพยตีพายมีหมายเลขการผลิตเท่าไร?",
    "context": "CREATE TABLE table_name_76 (production_number VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT director FROM table_name_27 WHERE production_number = 1490",
    "question_en": "What director had a production number of 1490?",
    "question_th": "ผู้กำกับคนไหนมีหมายเลขผลิต 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_en": "Which title was directed by chuck jones and released on 1958-04-12?",
    "question_th": "ชื่อใดที่กำกับโดยชัค โจนส์ และออกฉายเมื่อ 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_en": "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?",
    "question_th": "ชื่อใดมีเวลามากกว่า 53.06 และเลนเล็กกว่า 8 และมีอันดับมากกว่า 2 และมีสัญชาติญี่ปุ่น",
    "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_en": "How many lanes have a Time of 53.61, and a Rank larger than 3?",
    "question_th": "มีกี่เลนที่มีเวลา 53.61 และอันดับมากกว่า 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_en": "What is the finish position in the year prior to 2009?",
    "question_th": "ตำแหน่งสุดท้ายในปีก่อนปี 2552 คืออะไร?",
    "context": "CREATE TABLE table_name_64 (finish_position VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT _number___county FROM table_name_88 WHERE location = \"ossian\"",
    "question_en": "Which #/ County has a Location of ossian?",
    "question_th": "#/ เคาน์ตี้ใดมีที่ตั้งของออสเซียน",
    "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_en": "How much Enrollment has an IHSAA Class of aaaaa, and a Mascot of spartans?",
    "question_th": "การลงทะเบียนมีคลาส IHSAA ระดับ aaaa และมาสคอตของชาวสปาร์ตันจำนวนเท่าใด",
    "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_en": "How much Enrollment has a School of fort wayne homestead?",
    "question_th": "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_en": "Which IHSAA Class has a Location of columbia city?",
    "question_th": "IHSAA Class ใดที่มีที่ตั้งของเมืองโคลัมเบีย",
    "context": "CREATE TABLE table_name_49 (ihsaa_class VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_78 WHERE score = \"111-106\"",
    "question_en": "Who was the opponent at the game with a score of 111-106?",
    "question_th": "คู่ต่อสู้ในเกมนี้คือใครด้วยสกอร์ 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_en": "What was the location of the game with a score of 113-106?",
    "question_th": "เกมนี้อยู่จุดไหนด้วยคะแนน 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_en": "What is the highest pick number for a pick drafted by the denver broncos?",
    "question_th": "หมายเลขตัวเลือกสูงสุดสำหรับตัวเลือกที่ร่างโดยเดนเวอร์ บรองโกส์คือหมายเลขใด",
    "context": "CREATE TABLE table_name_52 (pick INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_83 WHERE result = \"l 27-7\"",
    "question_en": "What opponent has l 27-7 as the result?",
    "question_th": "ฝ่ายตรงข้ามคนใดมี l 27-7 เป็นผล?",
    "context": "CREATE TABLE table_name_83 (opponent VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(week) FROM table_name_87 WHERE attendance = 54 OFFSET 187",
    "question_en": "How many weeks has 54,187 as the attendance?",
    "question_th": "ผู้เข้าร่วม 54,187 คนมีกี่สัปดาห์?",
    "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_en": "What tournament had Alberta Brianti as an opponent with a score of 6-4 2-6 6-2?",
    "question_th": "การแข่งขันใดที่ Alberta Brianti เป็นคู่ต่อสู้ด้วยสกอร์ 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_en": "When was the score 3-6 4-6?",
    "question_th": "สกอร์ 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_en": "What is the Rank of the Swimmer with a Time of 2:25.65 in a Lane larger than 3?",
    "question_th": "อันดับของนักว่ายน้ำด้วยเวลา 2:25.65 ในเลนที่มากกว่า 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_en": "What is the Rank of Qi Hui?",
    "question_th": "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_en": "How many Forfeits have Wins smaller than 8, and Losses larger than 16?",
    "question_th": "มีผู้สูญเสียจำนวนเท่าใดที่มีชัยชนะน้อยกว่า 8 และการสูญเสียมากกว่า 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_en": "How many Losses have a Millewa of nangiloc?",
    "question_th": "Millewa ของ nangiloc มีการสูญเสียกี่ครั้ง?",
    "context": "CREATE TABLE table_name_13 (losses VARCHAR, millewa VARCHAR)"
  },
  {
    "answer": "SELECT MAX(losses) FROM table_name_58 WHERE draws > 0",
    "question_en": "How many Losses have Draws larger than 0?",
    "question_th": "มีการสูญเสียกี่ครั้งที่มากกว่า 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_en": "What is the average rank of Elise Matthysen in lanes under 8?",
    "question_th": "อันดับเฉลี่ยของ Elise Matthysen ในเลนต่ำกว่า 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_en": "What is the time of Yuliya Yefimova?",
    "question_th": "เวลาของ 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_en": "Who was from Great Britain in lanes under number 3?",
    "question_th": "ใครมาจากบริเตนใหญ่ในเลนต่ำกว่าหมายเลข 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_en": "What wheel arrangement was made in 1910?",
    "question_th": "มีการจัดเรียงล้อแบบใดในปี 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–27336\"",
    "question_en": "What year were the retired serial numbers 27317–27336?",
    "question_th": "หมายเลขซีเรียล 27317–27336 ที่เลิกใช้แล้วคือปีใด",
    "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_en": "Which Surface has a score of 7-5, 5-7, 6-3?",
    "question_th": "Surface ใดมีคะแนน 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_en": "Which tournament has a Score of 6-4, 6-4?",
    "question_th": "ทัวร์นาเมนต์ใดมีสกอร์ 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_en": "What was the Surface on during 10 November 2006?",
    "question_th": "Surface บนอะไรในช่วงวันที่ 10 พฤศจิกายน พ.ศ. 2549",
    "context": "CREATE TABLE table_name_41 (surface VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_79 WHERE date = \"25 may 2007\"",
    "question_en": "What was the Score on 25 May 2007?",
    "question_th": "คะแนนเมื่อวันที่ 25 พฤษภาคม 2550 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_79 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_79 WHERE date = \"10 november 2006\"",
    "question_en": "What was the score on 10 November 2006?",
    "question_th": "คะแนนเมื่อวันที่ 10 พฤศจิกายน พ.ศ. 2549 เป็นเท่าใด",
    "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_en": "Which Partnering has a Score of 6-3, 4-6, 6-4?",
    "question_th": "คู่ไหนมีคะแนน 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_en": "What is the rank for the man from China with notes of QS?",
    "question_th": "ผู้ชายจากประเทศจีนที่มีโน๊ต 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_en": "What is the rank for the competitor from Bulgaria?",
    "question_th": "ผู้เข้าแข่งขันจากบัลแกเรียอยู่อันดับไหน?",
    "context": "CREATE TABLE table_name_16 (rank INTEGER, country VARCHAR)"
  },
  {
    "answer": "SELECT athletes FROM table_name_62 WHERE rank < 5 AND country = \"china\"",
    "question_en": "Which athlete is ranked below 5 and is from China?",
    "question_th": "นักกีฬาคนไหนอันดับต่ำกว่า 5 และมาจากประเทศจีน?",
    "context": "CREATE TABLE table_name_62 (athletes VARCHAR, rank VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_name_90 WHERE genre = \"platformer\"",
    "question_en": "Which game was a Platformer?",
    "question_th": "เกมใดที่เป็น 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_en": "Who was the developer of XCom: Enemy Unknown?",
    "question_th": "ใครเป็นผู้พัฒนา 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_en": "Which platform was Red Dead Redemption for?",
    "question_th": "Red Dead Redemption มีไว้เพื่อแพลตฟอร์มใด",
    "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_en": "What is the highest total for players with under 2 Egyptian Premier League goals and 0 Egypt Cup goals?",
    "question_th": "อะไรคือผลรวมสูงสุดสำหรับผู้เล่นที่ทำได้ต่ำกว่า 2 ประตูในอียิปต์พรีเมียร์ลีก และ 0 ประตูในอียิปต์คัพ?",
    "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_en": "What is the aveage Egypt Cup value for players with 0 CAF Champions League goals, 6 Egyptian Premier League goals, and totals under 6?",
    "question_th": "ค่าเฉลี่ยของอียิปต์ คัพ สำหรับผู้เล่นที่มี 0 ประตูในซีเอเอฟแชมเปียนส์ลีก, 6 ประตูในพรีเมียร์ลีกอียิปต์ และผลรวมต่ำกว่า 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_en": "how many times is gold more than 0 and the rank less than 2?",
    "question_th": "ทองคำมากกว่า 0 และอันดับน้อยกว่า 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_en": "what is the highest total when the nation is france and silver is more than 1?",
    "question_th": "ยอดรวมสูงสุดเมื่อประเทศคือฝรั่งเศสและเงินมากกว่า 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_en": "what is the least silver for germany when gold is more than 4?",
    "question_th": "เงินน้อยที่สุดสำหรับเยอรมนีคือเท่าไรเมื่อทองคำมากกว่า 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_en": "How many times is the total less than 15, rank less than 5, bronze is 4 and gold smaller than 3?",
    "question_th": "กี่ครั้งแล้วที่คะแนนรวมน้อยกว่า 15 อันดับน้อยกว่า 5 ทองแดงได้ 4 และทองน้อยกว่า 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_en": "What venue did the game on september 5, 1998 take place at?",
    "question_th": "เกมเมื่อวันที่ 5 กันยายน พ.ศ. 2541 จัดขึ้นที่สถานที่ใด",
    "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_en": "What venue did the 2000 tiger cup take place at on November 10, 2000?",
    "question_th": "ไทเกอร์คัพ 2000 จัดขึ้นที่ใดในวันที่ 10 พฤศจิกายน พ.ศ. 2543",
    "context": "CREATE TABLE table_name_29 (venue VARCHAR, competition VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_63 WHERE score = \"5-4\"",
    "question_en": "What date had a game with a score of 5-4?",
    "question_th": "แข่งกันวันที่ไหนด้วยสกอร์ 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_en": "What is the total of Barangay with an area larger than 865.13?",
    "question_th": "พื้นที่บารังไกที่มีพื้นที่มากกว่า 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_en": "What is the lowest population density for the district of Santa Cruz and a Barangay larger than 82?",
    "question_th": "ความหนาแน่นของประชากรต่ำสุดสำหรับเขตซานตาครูซและบารังไกย์ที่มีขนาดใหญ่กว่า 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_en": "What is the average number of golds for teams in rank 17 with more than 4 silver?",
    "question_th": "จำนวนเหรียญทองโดยเฉลี่ยสำหรับทีมอันดับ 17 ที่มีเงินมากกว่า 4 เหรียญคือเท่าใด?",
    "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_en": "What is the average total for teams with under 34 bronzes, 0 silver, and under 14 gold?",
    "question_th": "ผลรวมเฉลี่ยสำหรับทีมที่ทำได้ต่ำกว่า 34 เหรียญทองแดง, 0 เหรียญเงิน และต่ำกว่า 14 เหรียญทองเป็นเท่าใด",
    "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_en": "What is the fewest number of golds for teams with 0 silver?",
    "question_th": "จำนวนเหรียญทองน้อยที่สุดสำหรับทีมที่มี 0 เหรียญเงินคือเท่าใด?",
    "context": "CREATE TABLE table_name_54 (gold INTEGER, silver INTEGER)"
  },
  {
    "answer": "SELECT nations FROM table_name_87 WHERE year = \"2007\"",
    "question_en": "What nations participated in 2007?",
    "question_th": "มีประเทศใดบ้างที่เข้าร่วมในปี 2550",
    "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_en": "What event type had BODY CMAS in 1980 and underwater hockey?",
    "question_th": "กิจกรรมประเภทใดที่มี BODY CMAS ในปี 1980 และกีฬาฮอกกี้ใต้น้ำ",
    "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_en": "What body is at the World Championship for Underwater Target shooting?",
    "question_th": "ร่างกายอะไรในการแข่งขันชิงแชมป์โลกเพื่อการยิงเป้าใต้น้ำ?",
    "context": "CREATE TABLE table_name_12 (body VARCHAR, event_type VARCHAR, sport VARCHAR)"
  },
  {
    "answer": "SELECT body FROM table_name_43 WHERE year = \"1973\"",
    "question_en": "What body participated in 1973?",
    "question_th": "องค์กรใดเข้าร่วมในปี 1973?",
    "context": "CREATE TABLE table_name_43 (body VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_76 WHERE event = \"800m freestyle\"",
    "question_en": "What was the record setting time in the 800m freestyle?",
    "question_th": "ฟรีสไตล์ 800 ม. ทำสถิติเวลาเท่าไร?",
    "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_en": "What power has A as the class, and 93.7 as the frequency?",
    "question_th": "กำลังใดที่มี A เป็นคลาส และ 93.7 เป็นความถี่",
    "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_en": "What city of license has cbon-fm-11 as the identifier?",
    "question_th": "เมืองที่ได้รับใบอนุญาตใดมี cbon-fm-11 เป็นตัวระบุ?",
    "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_en": "What power has thunder bay as the city of license?",
    "question_th": "อ่าวฟ้าร้องมีอำนาจอะไรเป็นเมืองแห่งใบอนุญาต?",
    "context": "CREATE TABLE table_name_17 (power VARCHAR, city_of_license VARCHAR)"
  },
  {
    "answer": "SELECT identifier FROM table_name_98 WHERE power = \"100000 watts\"",
    "question_en": "What identifier has 100000 watts as the power?",
    "question_th": "ตัวระบุใดมีกำลัง 100,000 วัตต์",
    "context": "CREATE TABLE table_name_98 (identifier VARCHAR, power VARCHAR)"
  },
  {
    "answer": "SELECT identifier FROM table_name_92 WHERE frequency = \"90.3\"",
    "question_en": "What identifier has 90.3 as the frequency?",
    "question_th": "ตัวระบุใดที่มีความถี่ 90.3",
    "context": "CREATE TABLE table_name_92 (identifier VARCHAR, frequency VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_name_28 WHERE identifier = \"cbon-fm-23\"",
    "question_en": "What class has cbon-fm-23 as the identifier?",
    "question_th": "คลาสใดที่มี cbon-fm-23 เป็นตัวระบุ",
    "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_en": "What is the total number of medals for West Germany with more than 1 bronze medal and more than 2 gold medals?",
    "question_th": "เยอรมนีตะวันตกได้มากกว่า 1 เหรียญทองแดง และมากกว่า 2 เหรียญทอง จำนวนเหรียญรวมของเยอรมนีเป็นเท่าใด",
    "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_en": "What is Denmark's rank?",
    "question_th": "อันดับของเดนมาร์กคืออะไร?",
    "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_en": "What country did ekaterina karsten row for with fa listed under notes?",
    "question_th": "Ekaterina Karsten พายเรือเพื่อประเทศใดโดยมีฟ้าระบุไว้ในบันทึกย่อ",
    "context": "CREATE TABLE table_name_70 (country VARCHAR, notes VARCHAR, athlete VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_37 WHERE country = \"france\"",
    "question_en": "What time was the race for the country of france?",
    "question_th": "ประเทศฝรั่งเศสแข่งกี่โมง?",
    "context": "CREATE TABLE table_name_37 (time VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_10 WHERE notes = \"fb\" AND country = \"france\"",
    "question_en": "What time was the race for the country of france with fb listed under notes?",
    "question_th": "การแข่งขันสำหรับประเทศฝรั่งเศสโดยมี FB อยู่ในบันทึกย่อคือเวลาใด",
    "context": "CREATE TABLE table_name_10 (time VARCHAR, notes VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT SUM(rank) FROM table_name_10 WHERE country = \"bulgaria\"",
    "question_en": "What is the sum of the ranks for bulgaria?",
    "question_th": "ผลรวมอันดับของบัลแกเรียเป็นเท่าไหร่?",
    "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_en": "What is the rank of the new zealand team that had fb listed under notes?",
    "question_th": "อันดับของทีมนิวซีแลนด์ที่มี fb อยู่ในบันทึกย่อคือเท่าไร?",
    "context": "CREATE TABLE table_name_31 (rank VARCHAR, notes VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_42 WHERE pick = 74",
    "question_en": "Which Position has a Pick of 74?",
    "question_th": "ตำแหน่งใดมีการเลือก 74?",
    "context": "CREATE TABLE table_name_42 (position VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_86 WHERE position = \"linebacker\"",
    "question_en": "Which Team has a Position of linebacker?",
    "question_th": "ทีมใดมีตำแหน่งไลน์แบ็คเกอร์?",
    "context": "CREATE TABLE table_name_86 (team VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_87 WHERE college = \"stanford\"",
    "question_en": "What is the Team for Stanford College?",
    "question_th": "ทีมของวิทยาลัยสแตนฟอร์ดคืออะไร?",
    "context": "CREATE TABLE table_name_87 (team VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT pick FROM table_name_2 WHERE college = \"southeastern louisiana\"",
    "question_en": "What Pick does the College Southeastern Louisiana have?",
    "question_th": "วิทยาลัย Southeastern Louisiana มีตัวเลือกอะไรบ้าง?",
    "context": "CREATE TABLE table_name_2 (pick VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT gold FROM table_name_50 WHERE total > 2 AND bronze < 1",
    "question_en": "Can you tell me the Gold that has the Total larger than 2, and the Bronze smaller than 1?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าทองคำที่มีผลรวมมากกว่า 2 และทองแดงน้อยกว่า 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_en": "Can you tell me the Nation that has the Bronze of 1, and the Gold of 0?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าประเทศที่มีทองแดงเป็น 1 และทองเป็น 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_en": "Can you tell me the average Total that has the Silver larger than 1, and the Bronze smaller than 8?",
    "question_th": "คุณช่วยบอกฉันถึงผลรวมโดยเฉลี่ยที่มีเงินมากกว่า 1 และทองแดงน้อยกว่า 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_en": "What was the highest number of bronze medals when there were a total of 4 medals, 1 silver medals, and less than 2 medals?",
    "question_th": "เหรียญทองแดงมีจำนวนมากที่สุดเมื่อมีจำนวนทั้งหมด 4 เหรียญ เหรียญเงิน 1 เหรียญ และน้อยกว่า 2 เหรียญ คือเท่าใด",
    "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_en": "Count the Pommel Horse that has Rings smaller than 59.85 and a Team Total larger than 361.2?",
    "question_th": "นับ Pommel Horse ที่มีวงแหวนน้อยกว่า 59.85 และผลรวมทีมใหญ่กว่า 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_en": "Name the highest Parallel Bars of the united states with a Vault smaller than 63.85?",
    "question_th": "ตั้งชื่อ Parallel Bars ที่สูงที่สุดในสหรัฐอเมริกาด้วย Vault ที่เล็กกว่า 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_en": "Name the highest Horizontal Bar which is in france and Rings smaller than 58.975?",
    "question_th": "ตั้งชื่อแถบแนวนอนที่สูงที่สุดในฝรั่งเศสและวงแหวนที่เล็กกว่า 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_en": "who is the artist when the televote/sms is 3.20%?",
    "question_th": "ศิลปินคือใครเมื่อ televote/sms อยู่ที่ 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_en": "what is the place when the televote/sms is 2.39%?",
    "question_th": "จุดไหนที่ televote/sms อยู่ที่ 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_en": "how many times was the televote/sms 2.39% and the place more than 9?",
    "question_th": "กี่ครั้งที่ televote/sms 2.39% และสถานที่มากกว่า 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_en": "Which Release date has a Production Num larger than 5888, and a Director of hugh harman and friz freleng?",
    "question_th": "วันที่วางจำหน่ายใดที่มีจำนวนการผลิตมากกว่า 5888 และเป็นผู้อำนวยการของ Hugh Harman และ 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_en": "How many production numbers have a Title of bosko in dutch?",
    "question_th": "มีหมายเลขการผลิตกี่หมายเลขที่มีชื่อ bosko ในภาษาดัตช์",
    "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_en": "Which Release date has a Director of tom palmer, and a Production Num larger than 5956?",
    "question_th": "วันวางจำหน่ายใดที่มีผู้อำนวยการของ tom palmer และจำนวนการผลิตมากกว่า 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–1966\" AND debut_year > 1961",
    "question_en": "How many Goals have Years at club of 1961–1966, and a Debut year larger than 1961?",
    "question_th": "สโมสรในปี 1961–1966 ยิงได้กี่ประตู และปีเปิดตัวที่ใหญ่กว่าปี 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_en": "Which Debut year has Goals of 0, and Years at club of 1963, and Games larger than 5?",
    "question_th": "ปีเปิดตัวใดมีเป้าหมายเป็น 0 และปีที่สโมสรปี 1963 และเกมที่ใหญ่กว่า 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_en": "Which Debut year has a Player of bob hayton, and Games smaller than 2?",
    "question_th": "ปีเปิดตัวใดที่มีผู้เล่นของ Bob Hayton และเกมที่เล็กกว่า 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_en": "What is the name of the player who competed in the Women's Individual Class 3 in Table Tennis?",
    "question_th": "ผู้เล่นที่เข้าแข่งขันเทเบิลเทนนิสประเภทบุคคลหญิง รุ่น 3 มีชื่อว่าอะไร?",
    "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_en": "What was the date of the Women's Individual Class 3?",
    "question_th": "ประเภทบุคคลหญิง ม.3 จัดขึ้นเมื่อใด",
    "context": "CREATE TABLE table_name_73 (date VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_88 WHERE name = \"rastislav turecek\"",
    "question_en": "What event did Rastislav Turecek participate in?",
    "question_th": "Rastislav Turecek เข้าร่วมงานอะไร",
    "context": "CREATE TABLE table_name_88 (event VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT sport FROM table_name_16 WHERE name = \"miroslav jambor richard csejtey\"",
    "question_en": "What sport did Miroslav Jambor Richard Csejtey participate in?",
    "question_th": "Miroslav Jambor Richard Csejtey เข้าร่วมกีฬาประเภทใด",
    "context": "CREATE TABLE table_name_16 (sport VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT artist FROM table_name_7 WHERE draw = 6",
    "question_en": "Which Artist has a Draw of 6?",
    "question_th": "ศิลปินคนไหนมีการจับรางวัล 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_en": "Which Song has a Draw smaller than 7, and Points larger than 41, and a Language of german?",
    "question_th": "เพลงใดที่มีการวาดน้อยกว่า 7 และคะแนนมากกว่า 41 และภาษาเยอรมัน",
    "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_en": "What was the result for the years after 2001?",
    "question_th": "ผลลัพธ์ในปีหลังปี 2544 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_15 (result VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT nominee_s_ FROM table_name_83 WHERE year = 2005",
    "question_en": "Who was the nominee for 2005?",
    "question_th": "ใครเป็นผู้ได้รับการเสนอชื่อเข้าชิงรางวัลประจำปี 2548?",
    "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_en": "what is the gp-gs when the receptions is more than 4, long is 55 and avg/g is 151?",
    "question_th": "gp-gs คืออะไรเมื่อแผนกต้อนรับมากกว่า 4, ยาวคือ 55 และ avg/g คือ 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_en": "what is the name when avg/g is 13.7?",
    "question_th": "ชื่ออะไรเมื่อ avg/g คือ 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_en": "How many times is avg/g 2?",
    "question_th": "ค่าเฉลี่ย/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_en": "what is the avg/g for john conner when long is less than 25?",
    "question_th": "ค่าเฉลี่ย/g สำหรับจอห์น คอนเนอร์เป็นเท่าใดเมื่อความยาวน้อยกว่า 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_en": "What conference did the player originally from the denver broncos play in?",
    "question_th": "ผู้เล่นที่มาจากเดนเวอร์ บรองโกส์เล่นในการประชุมใด",
    "context": "CREATE TABLE table_name_25 (conf VARCHAR, original_nfl_team VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_72 WHERE college = \"texas southern\"",
    "question_en": "Who was the player from texas southern?",
    "question_th": "ใครคือผู้เล่นจากเท็กซัสเซาเทิร์น?",
    "context": "CREATE TABLE table_name_72 (player VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT conf FROM table_name_44 WHERE pos = \"rb\"",
    "question_en": "What conference did the player with the position of rb play in?",
    "question_th": "นักเตะตำแหน่ง RB ลงเล่นใน Conference ไหนครับ?",
    "context": "CREATE TABLE table_name_44 (conf VARCHAR, pos VARCHAR)"
  },
  {
    "answer": "SELECT original_nfl_team FROM table_name_86 WHERE conf = \"midwestern\"",
    "question_en": "What was the original nfl team that the player was in from the midwestern conference?",
    "question_th": "ทีม NFL ดั้งเดิมที่ผู้เล่นอยู่จากการประชุมมิดเวสต์คืออะไร?",
    "context": "CREATE TABLE table_name_86 (original_nfl_team VARCHAR, conf VARCHAR)"
  },
  {
    "answer": "SELECT pos FROM table_name_86 WHERE college = \"tennessee state\"",
    "question_en": "What position did athlete play from Tennessee state?",
    "question_th": "นักกีฬาเล่นตำแหน่งใดจากรัฐเทนเนสซี",
    "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_en": "Which Affected area codes have an Effective date of august 30, 2014?",
    "question_th": "รหัสพื้นที่ที่ได้รับผลกระทบใดมีผลใช้บังคับในวันที่ 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_en": "Which Airing date has a Number of episodes larger than 20, and a Genre of modern drama?",
    "question_th": "ออกอากาศวันไหนมีจำนวนตอนมากกว่า 20 ตอน และประเภทละครสมัยใหม่?",
    "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 白髮魔女傳\"",
    "question_en": "Which Genre has an English title (Chinese title) of the romance of the white hair maiden 白髮魔女傳?",
    "question_th": "ประเภทใดมีชื่อภาษาอังกฤษ (ชื่อจีน) ของความโรแมนติกของหญิงสาวผมขาว 白髮魔女傳?",
    "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_en": "who is the grand finalist when the grand finalists are jonathan loh, peterson poon, nathan santos?",
    "question_th": "ใครคือผู้เข้ารอบสุดท้าย เมื่อผู้เข้ารอบสุดท้ายคือ โจนาธาน โลห์, ปีเตอร์สัน พูน, นาธาน ซานโตส",
    "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_en": "What is the highest total number of medals for a team ranked smaller than 1 and had 20 gold medals?",
    "question_th": "จำนวนเหรียญรางวัลสูงสุดสำหรับทีมอันดับน้อยกว่า 1 และมี 20 เหรียญทองคือเท่าใด",
    "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_en": "What is the nation that had more than 1 gold medal and a total of 62 medals?",
    "question_th": "ชาติใดได้เหรียญทองมากกว่า 1 เหรียญ และรวม 62 เหรียญ คือประเทศอะไร?",
    "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_en": "What is the highest total medals when there were 0 gold medals and 1 silver?",
    "question_th": "เหรียญรวมสูงสุดเมื่อมี 0 เหรียญทอง 1 เหรียญเงินคืออะไร?",
    "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_en": "What's the 123kg of the Total world record?",
    "question_th": "สถิติโลกรวม 123 กิโลกรัมคือเท่าไร?",
    "context": "CREATE TABLE table_name_41 (world_record VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_55 WHERE constituency_number = \"214\"",
    "question_en": "What is the name for the assembly segment with a constituency number of 214?",
    "question_th": "ส่วนการชุมนุมที่มีจำนวนเขตเลือกตั้ง 214 ชื่อว่าอะไร?",
    "context": "CREATE TABLE table_name_55 (name VARCHAR, constituency_number VARCHAR)"
  },
  {
    "answer": "SELECT district FROM table_name_20 WHERE name = \"mahidpur\"",
    "question_en": "What district has an assembly segment named mahidpur?",
    "question_th": "เขตใดมีส่วนการชุมนุมชื่อมหิดปุระ?",
    "context": "CREATE TABLE table_name_20 (district VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_39 WHERE wrestler = \"doug basham\"",
    "question_en": "Who is Doug Basham's team?",
    "question_th": "ทีมของดั๊ก บาแชมคือใคร?",
    "context": "CREATE TABLE table_name_39 (team VARCHAR, wrestler VARCHAR)"
  },
  {
    "answer": "SELECT elimination FROM table_name_71 WHERE wrestler = \"jorge santana\"",
    "question_en": "What's Jorge Santana's elimination?",
    "question_th": "การตกรอบของ Jorge Santana คืออะไร?",
    "context": "CREATE TABLE table_name_71 (elimination VARCHAR, wrestler VARCHAR)"
  },
  {
    "answer": "SELECT wrestler FROM table_name_6 WHERE elimination = \"1\"",
    "question_en": "Who's the wrestler with an elimination of 1?",
    "question_th": "ใครคือนักมวยปล้ำที่ตกรอบ 1?",
    "context": "CREATE TABLE table_name_6 (wrestler VARCHAR, elimination VARCHAR)"
  },
  {
    "answer": "SELECT eliminated_by FROM table_name_61 WHERE elimination = \"1\"",
    "question_en": "Who's the eliminated by when the elimination was 1?",
    "question_th": "ใครคือตกรอบเมื่อตกรอบเป็น 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_en": "What is the date where the result was L 27-10 in a week before week 9?",
    "question_th": "วันที่ผลลัพธ์คือ L 27-10 ในหนึ่งสัปดาห์ก่อนสัปดาห์ที่ 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_en": "What sum of draw had more than 22 in Jury and a Televote of 130?",
    "question_th": "ผลรวมของการเสมอกันมีมากกว่า 22 คนในคณะลูกขุนและ Televote 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_en": "What is the total of the jury that is 2nd place and the total is larger than 190?",
    "question_th": "ผลรวมคณะลูกขุนอันดับที่ 2 และผลรวมมากกว่า 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_en": "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?",
    "question_th": "ค่าเฉลี่ย L/km รวมกันเป็นเท่าใดเมื่อ L/100km Urban อยู่ที่ 13.9, mpg-UK รวมกันมากกว่า 28.5 และ mpg-UK ในเมืองพิเศษน้อยกว่า 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_en": "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?",
    "question_th": "mpg-UK รวมกันน้อยที่สุดเมื่อในเมือง mpg-UK คือ 25.4, L/100km ในเมืองพิเศษน้อยกว่า 6.9 และ L/100km ในเมืองมากกว่า 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_en": "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?",
    "question_th": "CO2 กรัม/กม. ของ Fiat ที่ใช้เครื่องยนต์ดีเซลโดย L/100km ในเมืองมากกว่า 6.3 และ mpg-UK รวมกันเป็น 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_en": "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?",
    "question_th": "อะไรคือลิตร/100 กม. พิเศษในเมืองที่เติมน้ำมันดีเซล เมื่อ mpg-UK รวมกันมากกว่า 19.2, mpg-US น้อยกว่า 50 และ L/100m รวมกันน้อยกว่า 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_en": "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?",
    "question_th": "ความจุเครื่องยนต์เป็นเท่าใดเมื่อ mpg-UK ในเมืองน้อยกว่า 12.2, mpg-UK ในเมืองพิเศษน้อยกว่า 18.8 และผ้าโพกหัว mpg-US น้อยกว่า 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_en": "What's the mpg-US urban when the mpg-UK urban is 20 and the mpg-UK extra urban is less than 37.2?",
    "question_th": "เมือง mpg-US คืออะไรเมื่อเมือง mpg-UK คือ 20 และเมืองพิเศษ mpg-UK น้อยกว่า 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_en": "What was the score on 2010-07-13 when Abby wambach had the assist/pass?",
    "question_th": "คะแนนในวันที่ 13-07-2010 แอบบี้ วัมบัค ทำแอสซิสต์/ส่งบอลได้เท่าไหร่?",
    "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_en": "What is the location on 2008-06-17 when the lineup was start?",
    "question_th": "ตำแหน่งในวันที่ 2008-06-17 เริ่มขึ้นเมื่อใด?",
    "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_en": "What is the assist/pass on 2008-01-16 when the score was 2-0?",
    "question_th": "แอสซิสต์/จ่ายบอลในฤดูกาล 2008-01-16 เมื่อสกอร์เป็น 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_en": "What is the result at match reports?",
    "question_th": "รายงานผลการแข่งขันเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_98 (result VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_name_24 WHERE goals_against = \"222\"",
    "question_en": "What's the points if the goals against were 222?",
    "question_th": "ถ้าสกอร์ที่เสียไปคือ 222 ได้แต้มอะไร?",
    "context": "CREATE TABLE table_name_24 (points VARCHAR, goals_against VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_name_95 WHERE goals_against = \"260\"",
    "question_en": "What are the points if the goals against were 260?",
    "question_th": "ถ้าประตูที่เจอคือ 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_en": "What are the games with an Involuntary suspension of Season (hurricane Rita)?",
    "question_th": "เกมใดบ้างที่มีการระงับฤดูกาลโดยไม่สมัครใจ (เฮอริเคนริต้า)?",
    "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_en": "What are the goals for a lost of Involuntary suspension of Season (hurricane Rita)?",
    "question_th": "เป้าหมายสำหรับการแพ้การระงับฤดูกาลโดยไม่สมัครใจ (เฮอริเคนริต้า) คืออะไร?",
    "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_en": "What's the season that had a lost of 9 with 72 games?",
    "question_th": "ฤดูกาลไหนที่แพ้ 9 กับ 72 เกม?",
    "context": "CREATE TABLE table_name_10 (season VARCHAR, games VARCHAR, lost VARCHAR)"
  },
  {
    "answer": "SELECT format FROM table_name_42 WHERE location = \"taipei\"",
    "question_en": "What event did he compete in at Taipei?",
    "question_th": "เขาลงแข่งขันรายการใดที่ไทเป?",
    "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_en": "In what season did he compete in the Grand Prix in Kuala Lumpur?",
    "question_th": "เขาลงแข่งขันกรังด์ปรีซ์ที่กัวลาลัมเปอร์ในฤดูกาลใด?",
    "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_en": "What is the position of the player with a pick less than 3 from team san diego?",
    "question_th": "ตำแหน่งผู้เล่นที่เลือกน้อยกว่า 3 จากทีมซานดิเอโกคือตำแหน่งใด?",
    "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_en": "What location did david mccann receive a siver and morgan fox win the gold?",
    "question_th": "David Mccann ได้รับเงินจากสถานที่ใด และ Morgan Fox ได้รับรางวัลเหรียญทองจากสถานที่ใด",
    "context": "CREATE TABLE table_name_38 (location VARCHAR, silver VARCHAR, gold VARCHAR)"
  },
  {
    "answer": "SELECT bronze FROM table_name_71 WHERE year = \"2011\"",
    "question_en": "Who received the bronze in 2011?",
    "question_th": "ใครได้รับเหรียญทองแดงในปี 2554?",
    "context": "CREATE TABLE table_name_71 (bronze VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT silver FROM table_name_31 WHERE year = \"2006\"",
    "question_en": "Who received the silver in 2006?",
    "question_th": "ใครได้รับเหรียญเงินในปี 2549?",
    "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_en": "What's the count for obese children and adolescents ranked 48?",
    "question_th": "เด็กและวัยรุ่นที่เป็นโรคอ้วนอันดับที่ 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_en": "What's the rank when the obese children and adolescent count is 14.2%?",
    "question_th": "เด็กอ้วนและวัยรุ่นมีจำนวน 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_en": "What's the rank in West Virginia when the overweight adult was 66.8%?",
    "question_th": "อันดับที่ในเวสต์เวอร์จิเนียเมื่อผู้ใหญ่ที่มีน้ำหนักเกินอยู่ที่ 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_en": "What is reserved for Jawad?",
    "question_th": "สิ่งที่สงวนไว้สำหรับ 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_en": "What is reserved for the constituency of 228?",
    "question_th": "เขตเลือกตั้ง 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_en": "Which County has an IHSAA Class of aaa, and an Enrollment smaller than 799?",
    "question_th": "มณฑลใดมีระดับ aaa ของ IHSAA และการลงทะเบียนน้อยกว่า 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_en": "Which Location has a Mascot of tigers?",
    "question_th": "ตำแหน่งใดมีตัวนำโชคของเสือ?",
    "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_en": "What's the most overall when the executive appointments were 28 and the background was smaller than 37?",
    "question_th": "อะไรโดยรวมมากที่สุดเมื่อแต่งตั้งผู้บริหารอายุ 28 ปีและพื้นหลังน้อยกว่า 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_en": "What was the record at the game with a score of 21-16?",
    "question_th": "สถิติในเกมด้วยสกอร์ 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_en": "Who was the opponent at the game with a score of 42-28 after week 4?",
    "question_th": "ใครคือคู่ต่อสู้ในเกมด้วยคะแนน 42-28 หลังจากสัปดาห์ที่ 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_en": "what is the result when the opponent is at dallas cowboys?",
    "question_th": "ผลลัพธ์จะเป็นเช่นไรเมื่อคู่ต่อสู้อยู่ที่ดัลลาสคาวบอยส์?",
    "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_en": "what is the enrollement for the year joined 1958 in clarksville?",
    "question_th": "การลงทะเบียนสำหรับปีที่เข้าร่วมปี 1958 ในคลาร์กสวิลล์เป็นเท่าใด",
    "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_en": "what is the #/county that is ihsaa class aaa, has enrollment higher than 611 and the dragons is the mascot?",
    "question_th": "#/เคาน์ตีที่เป็น ihsaa class aaa คืออะไร มีการลงทะเบียนสูงกว่า 611 และมีมังกรเป็นตัวนำโชค?",
    "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_en": "Where was the title released in 1977?",
    "question_th": "ชื่อนี้เผยแพร่ในปี 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_en": "What was the last year MCA had a Release?",
    "question_th": "ปีที่แล้ว MCA มีการเปิดตัวเมื่อใด",
    "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_en": "What is the lowest pick for the Buffalo Bills?",
    "question_th": "ตัวเลือกที่ต่ำที่สุดสำหรับบัฟฟาโลบิลคืออะไร?",
    "context": "CREATE TABLE table_name_60 (pick INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_61 WHERE team = \"boston patriots\"",
    "question_en": "Which player played for the Boston Patriots?",
    "question_th": "ผู้เล่นคนไหนเคยเล่นให้กับทีม Boston Patriots?",
    "context": "CREATE TABLE table_name_61 (player VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT SUM(attendance) FROM table_name_10 WHERE result = \"2–4\" AND visitor = \"brynäs if\"",
    "question_en": "How much Attendance has a Result of 2–4, and a Visitor of brynäs if?",
    "question_th": "จำนวนผู้เข้าร่วมมีผล 2–4 และผู้เยี่ยมชมของbrynäsหาก?",
    "context": "CREATE TABLE table_name_10 (attendance INTEGER, result VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_37 WHERE round > 17",
    "question_en": "Which Result has a Round larger than 17?",
    "question_th": "ผลลัพธ์ใดมีรอบที่ใหญ่กว่า 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_en": "What is the smallest electorate for the Conservative party in South West Devon constituency, with over 2 conservatives and a name of Plymstock Radford?",
    "question_th": "เขตเลือกตั้งที่เล็กที่สุดสำหรับพรรคอนุรักษ์นิยมในเขตเลือกตั้ง South West Devon คืออะไร โดยมีพรรคอนุรักษ์นิยมมากกว่า 2 คนและชื่อ 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_en": "What event was in a year later than 2007 and in the 88th position?",
    "question_th": "เหตุการณ์ใดเกิดขึ้นในหนึ่งปีหลังจากปี 2550 และอยู่ในอันดับที่ 88?",
    "context": "CREATE TABLE table_name_66 (event VARCHAR, year VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_name_36 WHERE year = 2005",
    "question_en": "What are the notes for 2005?",
    "question_th": "หมายเหตุสำหรับปี 2548 คืออะไร?",
    "context": "CREATE TABLE table_name_36 (notes VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT owner FROM table_name_78 WHERE call_sign = \"cklf-fm\"",
    "question_en": "Who is the owner of CKLF-FM?",
    "question_th": "ใครคือเจ้าของ 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_en": "What frequency is First Nations Community?",
    "question_th": "ชุมชน First Nations มีความถี่เท่าใด",
    "context": "CREATE TABLE table_name_78 (frequency VARCHAR, format VARCHAR)"
  },
  {
    "answer": "SELECT format FROM table_name_84 WHERE branding = \"cbc radio 2\"",
    "question_en": "What format is CBC Radio 2?",
    "question_th": "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_en": "Who owns CKSB-8-FM?",
    "question_th": "ใครเป็นเจ้าของ CKSB-8-FM?",
    "context": "CREATE TABLE table_name_72 (owner VARCHAR, call_sign VARCHAR)"
  },
  {
    "answer": "SELECT format FROM table_name_44 WHERE branding = \"première chaîne\"",
    "question_en": "What format is Première Chaîne?",
    "question_th": "Premiere Chaîne อยู่ในรูปแบบใด",
    "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_en": "What year was olympics, Canada and the Men's Eight Event ended with a silver medal?",
    "question_th": "การแข่งขันกีฬาโอลิมปิกที่แคนาดาและ Men's Eight Event ปีไหนจบลงด้วยเหรียญเงิน",
    "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_en": "What event was in 2006?",
    "question_th": "เหตุการณ์อะไรในปี 2549?",
    "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_en": "What championship was in the USA after 1994, and resulted in 5th place?",
    "question_th": "แชมป์อะไรในสหรัฐอเมริกาหลังปี 1994 และจบอันดับที่ 5",
    "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_en": "What year did Canada get a silver in the olympics in the Men's Coxless Pair event?",
    "question_th": "แคนาดาได้รับเหรียญเงินในการแข่งขันกีฬาโอลิมปิกในรายการ Men's Coxless Pair ในปีใด",
    "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_en": "Where is the lacrosse school located?",
    "question_th": "โรงเรียนลาครอสอยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_98 (location VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT ihsaa_class FROM table_name_32 WHERE mascot = \"tigers\"",
    "question_en": "Which IHSAA Class has a Mascot of tigers?",
    "question_th": "IHSAA Class ใดมีตัวนำโชคเป็นรูปเสือ",
    "context": "CREATE TABLE table_name_32 (ihsaa_class VARCHAR, mascot VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_62 WHERE enrollment > 543",
    "question_en": "Which Location has an Enrollment larger than 543?",
    "question_th": "สถานที่ใดมีการลงทะเบียนมากกว่า 543",
    "context": "CREATE TABLE table_name_62 (location VARCHAR, enrollment INTEGER)"
  },
  {
    "answer": "SELECT county FROM table_name_16 WHERE enrollment = 297",
    "question_en": "Which County has an Enrollment of 297?",
    "question_th": "มณฑลใดมีการลงทะเบียน 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_en": "Which School has an Enrollment larger than 264, and a County of 46 la porte?",
    "question_th": "โรงเรียนใดมีการลงทะเบียนมากกว่า 264 และเขต 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_en": "What is the number of silver medals when there are more than 1 gold, and more than 6 bronze?",
    "question_th": "เหรียญเงินมีมากกว่า 1 เหรียญทอง และมากกว่า 6 เหรียญทองแดง เป็นจำนวนเท่าใด",
    "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_en": "What is the total when the Yugoslavia number of silver won is more than 1?",
    "question_th": "ผลรวมเมื่อจำนวนเหรียญเงินของยูโกสลาเวียชนะมากกว่า 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_en": "What is the total attendance before week 1?",
    "question_th": "จำนวนผู้เข้าร่วมก่อนสัปดาห์ที่ 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_en": "When was sniffles and the bookworm released?",
    "question_th": "เมื่อใดที่สูดดมและหนอนหนังสือได้รับการปล่อยตัว?",
    "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_en": "When was land of the midnight fun in the mm series released?",
    "question_th": "ซีรีย์ mm ของ Land of the Midnight Fun เปิดตัวเมื่อไหร่คะ?",
    "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_en": "Which series had a release on 1939-07-15 with the 8863 production number?",
    "question_th": "ซีรีส์ใดออกฉายเมื่อ 1939-07-15 ด้วยหมายเลขการผลิต 8863?",
    "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_en": "Who directed hamateur night?",
    "question_th": "ใครกำกับ 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_en": "When was Production Number 9105 released?",
    "question_th": "หมายเลขการผลิต 9105 เปิดตัวเมื่อใด",
    "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_en": "What Class has a Frequency of 90.1 FM?",
    "question_th": "คลาสใดมีความถี่ 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_en": "What is listed for the RECNet that also has a Frequency of 91.1 FM?",
    "question_th": "รายการใดสำหรับ RECNet ที่มีความถี่ 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_en": "What Class has the Identifier fo CBFX-FM-2?",
    "question_th": "คลาสใดมีตัวระบุสำหรับ 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_en": "What is the RECNet with a Class of B and the City of License of Rouyn-Noranda?",
    "question_th": "RECNet ที่มีคลาส B และเมืองที่ได้รับอนุญาตของ 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_en": "What Class has the Identifier of CBFX-FM-6?",
    "question_th": "คลาสใดมีตัวระบุของ 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_en": "What Frequency has the Identifier of CBFX-FM-6?",
    "question_th": "ตัวระบุของ 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_en": "What is the total number of gold with less than 1 silver, from Belgium?",
    "question_th": "ทองคำที่น้อยกว่า 1 เหรียญเงินจากเบลเยี่ยมมีทั้งหมดกี่เหรียญทอง?",
    "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_en": "Which Lost has Points smaller than 15, and a Name of sc forst, and Drawn smaller than 0?",
    "question_th": "แพ้ตัวไหนมีแต้มน้อยกว่า 15 และชื่อ sc forst และจั่วได้น้อยกว่า 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_en": "How much Position has a Lost of 8, and a Played larger than 14?",
    "question_th": "ตำแหน่งเท่าไหร่ที่เสียไป 8 และตำแหน่งที่เล่นมากกว่า 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_en": "Which Drawn has a Lost larger than 8, and Points smaller than 7?",
    "question_th": "จั่วใดที่เสียมากกว่า 8 และแต้มน้อยกว่า 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_en": "How much Drawn has a Name of erc lechbruck, and Points smaller than 17?",
    "question_th": "ชื่อของ erc lechbruck ที่จั่วได้เท่าไหร่ และแต้มน้อยกว่า 17",
    "context": "CREATE TABLE table_name_13 (drawn VARCHAR, name VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT town FROM table_name_81 WHERE municipality = \"molėtai district municipality\" AND population__2001_ < 470 AND population_rank = 187",
    "question_en": "What town is from the molėtai district municipality and has a population rank of 187 and a population less than 470 in 2001?",
    "question_th": "เมืองใดมาจากเทศบาลเขตโมเลียไตและมีประชากรอันดับ 187 และมีประชากรน้อยกว่า 470 ในปี 2544",
    "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_en": "What county is the town with a rank of 205 located in?",
    "question_th": "เมืองที่มีอันดับ 205 ตั้งอยู่ในเมืองใด?",
    "context": "CREATE TABLE table_name_78 (county VARCHAR, population_rank VARCHAR)"
  },
  {
    "answer": "SELECT MIN(draw) FROM table_name_95 WHERE percentage = \"5.02%\"",
    "question_en": "What is the fewest draws for percentages of 5.02%?",
    "question_th": "การจับรางวัลน้อยที่สุดสำหรับเปอร์เซ็นต์ 5.02% คืออะไร?",
    "context": "CREATE TABLE table_name_95 (draw INTEGER, percentage VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_28 WHERE team = \"denver broncos\"",
    "question_en": "What is the position of the player from the denver broncos?",
    "question_th": "นักเตะเดนเวอร์ บรองโกส์ อยู่ตำแหน่งไหนครับ?",
    "context": "CREATE TABLE table_name_28 (position VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT AVG(pick) FROM table_name_12 WHERE team = \"kansas city chiefs\"",
    "question_en": "What is the average pick of the kansas city chiefs?",
    "question_th": "การเลือกเฉลี่ยของหัวหน้าเมืองแคนซัสคืออะไร?",
    "context": "CREATE TABLE table_name_12 (pick INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT pick FROM table_name_70 WHERE college = \"wiley\"",
    "question_en": "What is the pick of wiley college?",
    "question_th": "วิทยาลัยไวลีย์เลือกอะไร?",
    "context": "CREATE TABLE table_name_70 (pick VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_53 WHERE home_team = \"alfreton town\"",
    "question_en": "What was the attendance for the game with alfreton town as the home team?",
    "question_th": "เกมนี้มีการเข้าร่วมเป็นอย่างไรบ้างโดยมีอัลเฟรตัน ทาวน์เป็นเจ้าบ้าน?",
    "context": "CREATE TABLE table_name_53 (attendance VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_92 WHERE away_team = \"stafford rangers\"",
    "question_en": "What was the score of the game where stafford rangers was the away team?",
    "question_th": "สตาฟฟอร์ด เรนเจอร์ส เป็นทีมเยือนสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_92 (score VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT home_team FROM table_name_29 WHERE tie_no = \"1\"",
    "question_en": "Who was the home team that has a tie no of 1?",
    "question_th": "เจ้าบ้านทีมไหนเสมอกันที่ 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_en": "What is the tie no that has southport as the away team?",
    "question_th": "เสมอไม่ที่มีเซาธ์เป็นทีมเยือนคืออะไร?",
    "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_en": "What was the attendance for the game that had the king's lynn as the home team?",
    "question_th": "การเข้าร่วมงานในเกมที่มีคิงลินน์เป็นเจ้าบ้านเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_53 (attendance VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_56 WHERE tie_no = \"1\"",
    "question_en": "What was the score for the game with a tie no of 1?",
    "question_th": "เกมนี้สกอร์เสมอกันที่ 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_en": "What is the game number on December 21?",
    "question_th": "เกมวันที่ 21 ธันวาคม เลขอะไร?",
    "context": "CREATE TABLE table_name_53 (game VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT game FROM table_name_71 WHERE record = \"19-15\"",
    "question_en": "What is the Game with a Record of 19-15?",
    "question_th": "เกมที่มีสถิติ 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_en": "What is the Date of the game against Detroit in game 31 or after?",
    "question_th": "วันที่ของเกมกับดีทรอยต์ในเกมที่ 31 หรือหลังจากนั้นคือวันที่เท่าไร?",
    "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_en": "During which years did the golfer with the total of 289 win?",
    "question_th": "นักกอล์ฟที่มีคะแนนรวม 289 ชนะในช่วงปีใด",
    "context": "CREATE TABLE table_name_42 (year_s__won VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_84 WHERE finish = \"t56\"",
    "question_en": "What was the To par for the player who finished t56?",
    "question_th": "To par สำหรับผู้เล่นที่จบ t56 คืออะไร?",
    "context": "CREATE TABLE table_name_84 (to_par VARCHAR, finish VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_53 WHERE total = 294",
    "question_en": "Which county did the player with a total of 294 represent?",
    "question_th": "ผู้เล่นที่มีคะแนนรวม 294 เป็นตัวแทนของเขตใด",
    "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_en": "What was the total for united states player phil mickelson?",
    "question_th": "ฟิล มิคเคลสัน นักเตะสหรัฐมียอดรวมเท่าไหร่?",
    "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_en": "With a less than 4 rank, and a time less than 24.42 what is the smallest lane?",
    "question_th": "ด้วยอันดับที่น้อยกว่า 4 และเวลาที่น้อยกว่า 24.42 เลนที่เล็กที่สุดคืออะไร?",
    "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_en": "The swimmer from the United States in a lane less than 5, had what as the average time?",
    "question_th": "นักว่ายน้ำจากสหรัฐอเมริกาในเลนน้อยกว่า 5 มีเวลาเฉลี่ยเท่าไร?",
    "context": "CREATE TABLE table_name_8 (time INTEGER, nationality VARCHAR, lane VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_3 WHERE lane < 2",
    "question_en": "What nationality is the swimmer that is in the lane that is less than 2?",
    "question_th": "นักว่ายน้ำที่อยู่ในเลนน้อยกว่า 2 เป็นคนสัญชาติใด?",
    "context": "CREATE TABLE table_name_3 (nationality VARCHAR, lane INTEGER)"
  },
  {
    "answer": "SELECT MAX(losses) FROM table_name_15 WHERE draws < 0",
    "question_en": "Which Losses have Draws smaller than 0?",
    "question_th": "การแพ้ใดที่มีการเสมอน้อยกว่า 0?",
    "context": "CREATE TABLE table_name_15 (losses INTEGER, draws INTEGER)"
  },
  {
    "answer": "SELECT MAX(losses) FROM table_name_28 WHERE draws > 0",
    "question_en": "Which Losses have Draws larger than 0?",
    "question_th": "การแพ้ใดที่มีการเสมอมากกว่า 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_en": "How much Against has Losses smaller than 7, and a Wimmera FL of horsham?",
    "question_th": "เท่าไหร่ต่อการสูญเสียที่น้อยกว่า 7 และ Wimmera FL ของ 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_en": "How many Draws have Wins larger than 7, and a Wimmera FL of nhill, and Losses larger than 8?",
    "question_th": "มีกี่เสมอที่มีชัยชนะมากกว่า 7 และ Wimmera FL เป็น nhill และแพ้มากกว่า 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_en": "What was the outcome of the match with a score of 3-6, 2-6?",
    "question_th": "ผลการแข่งขันเป็นอย่างไรด้วยสกอร์ 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_en": "What was the tournament that had byron black playing against magnus larsson?",
    "question_th": "อะไรคือทัวร์นาเมนท์ที่ไบรอน แบล็กพบกับแมกนัส ลาร์สสัน?",
    "context": "CREATE TABLE table_name_70 (tournament VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_35 WHERE score = \"6-7, 4-6\"",
    "question_en": "What tournament had a game with a score of 6-7, 4-6?",
    "question_th": "การแข่งขันใดมีเกมด้วยสกอร์ 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_en": "what is the result when the round is less than 7 and the opponent is melbourne storm?",
    "question_th": "เมื่อรอบไม่ถึง 7 แล้วคู่ต่อสู้เป็น เมลเบิร์น สตอร์ม ผลจะเป็นอย่างไร?",
    "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_en": "what is the venue when the result is loss and the opponent is st george-illawarra dragons?",
    "question_th": "สถานที่จัดงานเมื่อผลการแข่งขันคือแพ้และคู่ต่อสู้คือเซนต์จอร์จ-อิลลาวาร์รา ดรากอนส์?",
    "context": "CREATE TABLE table_name_58 (venue VARCHAR, result VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT silver FROM table_name_15 WHERE year = 1982",
    "question_en": "Who won silver in 1982?",
    "question_th": "ใครได้รับรางวัลเหรียญเงินในปี 1982?",
    "context": "CREATE TABLE table_name_15 (silver VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_7 WHERE rank = 1",
    "question_en": "What is the Time of the Rowers in Rank 1?",
    "question_th": "เวลาของฝีพายในอันดับ 1 คืออะไร?",
    "context": "CREATE TABLE table_name_7 (time VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_36 WHERE country = \"belgium\"",
    "question_en": "What is the Time of the Rowers from Belgium?",
    "question_th": "เวลาของฝีพายจากเบลเยียมคืออะไร?",
    "context": "CREATE TABLE table_name_36 (time VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_56 WHERE lane = 7",
    "question_en": "What time does lane 7 have?",
    "question_th": "เลน 7 กี่โมง?",
    "context": "CREATE TABLE table_name_56 (time VARCHAR, lane VARCHAR)"
  },
  {
    "answer": "SELECT employed FROM table_name_74 WHERE position_held = \"mathematics & prefect master\"",
    "question_en": "What are the years employed shown for mathematics & prefect master?",
    "question_th": "คณิตศาสตร์และนายอำเภอมีงานแสดงกี่ปี?",
    "context": "CREATE TABLE table_name_74 (employed VARCHAR, position_held VARCHAR)"
  },
  {
    "answer": "SELECT citation FROM table_name_6 WHERE employed = \"1970–1996\"",
    "question_en": "What citation is shown for the employed years of 1970–1996?",
    "question_th": "มีการอ้างอิงอะไรสำหรับปีที่มีงานทำระหว่างปี 1970–1996?",
    "context": "CREATE TABLE table_name_6 (citation VARCHAR, employed VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_48 WHERE employed = \"1970–2005\"",
    "question_en": "What is the name of the person employed 1970–2005?",
    "question_th": "บุคคลที่ได้รับการว่าจ้างในปี 2513-2548 ชื่ออะไร",
    "context": "CREATE TABLE table_name_48 (name VARCHAR, employed VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_28 WHERE rank < 4 AND country = \"finland\"",
    "question_en": "What is the Time of the Rowers from Finland with a Rank of less than 4?",
    "question_th": "เวลาของฝีพายจากฟินแลนด์ที่มีอันดับน้อยกว่า 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_en": "What is the Rank of the Rowers with a Time of 7:30.92?",
    "question_th": "อันดับฝีพายด้วยเวลา 7:30.92 คือเท่าไร?",
    "context": "CREATE TABLE table_name_56 (rank INTEGER, time VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_name_16 WHERE country = \"finland\"",
    "question_en": "What are the Notes of the Country of finland?",
    "question_th": "หมายเหตุของประเทศฟินแลนด์มีอะไรบ้าง",
    "context": "CREATE TABLE table_name_16 (notes VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_31 WHERE week = 12",
    "question_en": "Who were the opponents for week 12?",
    "question_th": "ใครคือคู่แข่งในสัปดาห์ที่ 12?",
    "context": "CREATE TABLE table_name_31 (opponent VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT polling_institute FROM table_name_1 WHERE lead = \"6%\"",
    "question_en": "Which polling institute showed a lead of 6%?",
    "question_th": "สถาบันเลือกตั้งใดมีคะแนนนำ 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_en": "Which date released had a Democratic Alternative value of 1% and Labour of 34%?",
    "question_th": "วันที่เผยแพร่ใดมีค่าประชาธิปไตยทางเลือก 1% และแรงงาน 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_en": "What is the Nationalist share of the poll for the response in which Undecided/No Answer received 29.2%?",
    "question_th": "ส่วนแบ่งของชาตินิยมในการสำรวจความคิดเห็นสำหรับคำตอบที่ยังไม่ตัดสินใจ/ไม่มีคำตอบ ได้รับ 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_en": "What is the value of the Democratic Alternative for the poll released by Malta Today?",
    "question_th": "คุณค่าของทางเลือกประชาธิปไตยสำหรับการสำรวจความคิดเห็นที่ออกโดย 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_en": "Which polling institute showed a lead of 12% and a Labour share of the poll at 40.2%?",
    "question_th": "สถาบันการเลือกตั้งใดที่มีคะแนนนำ 12% และมีส่วนแบ่งแรงงานในการสำรวจที่ 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_en": "What is the lowest week that has Minnesota Vikings as the opponent?",
    "question_th": "สัปดาห์ต่ำสุดที่มี Minnesota Vikings เป็นคู่ต่อสู้คืออะไร?",
    "context": "CREATE TABLE table_name_75 (week INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_40 WHERE date = \"december 6, 1964\"",
    "question_en": "What opponent has December 6, 1964 as the date?",
    "question_th": "ฝ่ายตรงข้ามคนไหนมีวันที่ 6 ธันวาคม 2507 เป็นวันที่?",
    "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_en": "What was the attendance of the game on September 18, 1965 before week 3?",
    "question_th": "การเข้าร่วมเกมในวันที่ 18 กันยายน พ.ศ. 2508 ก่อนสัปดาห์ที่ 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_en": "What was the result of the game before week 3 with an attendance of 53,658?",
    "question_th": "ผลการแข่งขันก่อนสัปดาห์ที่ 3 มีผู้เข้าชม 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_en": "What was the earliest week on September 26, 1965?",
    "question_th": "สัปดาห์แรกสุดของวันที่ 26 กันยายน พ.ศ. 2508 คือสัปดาห์ใด?",
    "context": "CREATE TABLE table_name_3 (week INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT SUM(year) FROM table_name_79 WHERE name = \"one south broad\"",
    "question_en": "What is the total time for one south broad?",
    "question_th": "เวลาทั้งหมดสำหรับหนึ่งวงกว้างทางใต้คือเท่าไร?",
    "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_en": "What is the 123 south broad street address name before 1973?",
    "question_th": "ที่อยู่ 123 south broad street ก่อนปี 1973 คืออะไร",
    "context": "CREATE TABLE table_name_33 (name VARCHAR, year VARCHAR, address VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_98 WHERE goal < 2",
    "question_en": "Which competition has goals less than 2?",
    "question_th": "การแข่งขันใดที่มีประตูน้อยกว่า 2?",
    "context": "CREATE TABLE table_name_98 (competition VARCHAR, goal INTEGER)"
  },
  {
    "answer": "SELECT result FROM table_name_59 WHERE goal > 4",
    "question_en": "What's the result of a goal larger than 4?",
    "question_th": "ผลลัพธ์ของเป้าหมายที่มากกว่า 4 คืออะไร?",
    "context": "CREATE TABLE table_name_59 (result VARCHAR, goal INTEGER)"
  },
  {
    "answer": "SELECT type FROM table_name_44 WHERE course = \"marostica to bibione\"",
    "question_en": "tell me the type that has the marostica to bibione course.",
    "question_th": "บอกฉันประเภทที่มีหลักสูตร marostica ถึง bibione",
    "context": "CREATE TABLE table_name_44 (type VARCHAR, course VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_32 WHERE date = \"29 may\"",
    "question_en": "who won on 29 may?",
    "question_th": "ใครชนะวันที่ 29 พฤษภาคม?",
    "context": "CREATE TABLE table_name_32 (winner VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT term FROM table_name_55 WHERE hometown = \"ester creek\"",
    "question_en": "What is the term for hometown Ester Creek?",
    "question_th": "คำว่าบ้านเกิด 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_en": "What is the number of Gold medals for the Nation with a Total of 5 and Rank larger than 1?",
    "question_th": "จำนวนเหรียญทองของประเทศที่มีคะแนนรวม 5 และอันดับที่มากกว่า 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_en": "What is the total number of Silver for the Nation with more than 1 Bronze and a Rank less than 5?",
    "question_th": "จำนวนเหรียญเงินเพื่อชาติที่มีมากกว่า 1 เหรียญทองแดงและมีอันดับต่ำกว่า 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_en": "In what round was the loss at ufc 118?",
    "question_th": "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_en": "What is the smallest decile with an Area of otumoetai?",
    "question_th": "เดซิลที่เล็กที่สุดกับพื้นที่โอตูโมเอไตคือเท่าไร?",
    "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_en": "Which decile has an Area of welcome bay, and an Authority of state?",
    "question_th": "Decile ใดมีพื้นที่ต้อนรับและมีหน่วยงานของรัฐ?",
    "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_en": "How many deciles have a Gender of coed, an Authority of state, and a Name of mount maunganui school?",
    "question_th": "มีกี่ deciles ที่มีเพศนิสิต หน่วยงานของรัฐ และชื่อของโรงเรียนเมานกานุย",
    "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_en": "Which name has a Decile of 5, and an Area of tauranga?",
    "question_th": "ชื่อใดมี Decile เท่ากับ 5 และพื้นที่เป็น 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_en": "Which Authority has a Gender of coed, a Decile smaller than 6, and an Area of merivale?",
    "question_th": "หน่วยงานใดมีเพศของนิสิต Decile น้อยกว่า 6 และพื้นที่ของ 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_en": "What is the smallest decile with a Name of st mary's catholic school?",
    "question_th": "เดซิลที่เล็กที่สุดที่มีชื่อโรงเรียนคาทอลิกเซนต์แมรี่คืออะไร?",
    "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_en": "What is the average birth rate that has a total fertility rate of na, and a natural growth smaller than 2.5?",
    "question_th": "อัตราการเกิดเฉลี่ยที่มีอัตราการเจริญพันธุ์รวมเป็น na และการเติบโตตามธรรมชาติน้อยกว่า 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_en": "What was the amount of deaths that had a natural growth smaller than 3.4, and a total fertility rate of 1.63?",
    "question_th": "จำนวนการเสียชีวิตที่มีการเติบโตตามธรรมชาติน้อยกว่า 3.4 และอัตราการเจริญพันธุ์รวม 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_en": "What is the average births that had a death rate of 0.4",
    "question_th": "การเกิดโดยเฉลี่ยที่มีอัตราการเสียชีวิตเท่ากับ 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_en": "What was the amount of Births (000s) that had a death rate larger than 7.6, and a Year of 1990-2009?",
    "question_th": "จำนวนการเกิด (000) ที่มีอัตราการเสียชีวิตมากกว่า 7.6 และปี 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_en": "What was the total fertility rate that had a death rate larger than 7.8?",
    "question_th": "อัตราการเจริญพันธุ์ทั้งหมดที่มีอัตราการเสียชีวิตมากกว่า 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_en": "How many votes did the security guard get?",
    "question_th": "รปภ. ได้กี่คะแนน?",
    "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_en": "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?",
    "question_th": "ค่าเฉลี่ยสำหรับปี 2548 คืออะไร เมื่อค่าสำหรับปี 2551 มากกว่า 0 เมื่อค่าสำหรับปี 2550 มากกว่า 310 เมื่อค่าเฉลี่ยรายปีคือ 767 และเมื่อผลรวมมากกว่า 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_en": "What is the average value for 2005, when the value for Average annual is 767?",
    "question_th": "ค่าเฉลี่ยสำหรับปี 2005 คือเท่าใด เมื่อค่าของค่าเฉลี่ยรายปีคือ 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_en": "In what Year was 1st Division El Salvador with a Finish of Champion and a Team of Fas?",
    "question_th": "ดิวิชั่น 1 เอลซัลวาดอร์คว้าแชมป์และทีมฟาสได้ในปีใด",
    "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_en": "In what Year was the Finish Champions?",
    "question_th": "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_en": "During the Tournament of 1st Division El Salvador, what was the Finish for the Team of Platense Municipal Zacatecoluca?",
    "question_th": "ในระหว่างทัวร์นาเมนต์ดิวิชั่น 1 เอลซัลวาดอร์ ทีม 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_en": "What is the Role in the 1st Division Honduras Tournament?",
    "question_th": "บทบาทในการแข่งขันดิวิชั่น 1 ฮอนดูรัสคืออะไร?",
    "context": "CREATE TABLE table_name_82 (role VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_21 WHERE year = \"1986\"",
    "question_en": "What is the Tournament in the Year of 1986?",
    "question_th": "การแข่งขันในปี 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_en": "During the Tournament of Torneo Fraternidad/UNCAF Club championship, what is the Role of the Platense Municipal Zacatecoluca Team?",
    "question_th": "ในระหว่างการแข่งขันชิงแชมป์สโมสร Torneo Fraternidad/UNCAF บทบาทของทีม Platense Municipal Zacatecoluca คืออะไร?",
    "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_en": "What is the record of teams that play the yankees, and lose at mulholland (5-6)",
    "question_th": "สถิติทีมที่เล่นแยงกี้แล้วแพ้มัลฮอลแลนด์เป็นยังไงบ้าง (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_en": "Which total is highest with 0 gold and more than 0 silver, in Ukraine?",
    "question_th": "ผลรวมใดที่สูงที่สุดด้วย 0 เหรียญทองและมากกว่า 0 เงินในยูเครน?",
    "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_en": "What is the total rank with more than 2 silver and total larger than 10?",
    "question_th": "อันดับรวมที่มีมากกว่า 2 เหรียญเงินและรวมมากกว่า 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_en": "What is the total rank with a total larger than 2, and less than 0 gold",
    "question_th": "อันดับรวมที่มียอดรวมมากกว่า 2 และน้อยกว่า 0 ทองคืออะไร",
    "context": "CREATE TABLE table_name_86 (rank INTEGER, total VARCHAR, gold VARCHAR)"
  },
  {
    "answer": "SELECT MAX(bronze) FROM table_name_17 WHERE gold < 0",
    "question_en": "Which is the highest bronze with gold less than 0?",
    "question_th": "บรอนซ์สูงสุดที่มีทองน้อยกว่า 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_en": "What is the total with a rank less than 5, gold larger than 5 and bronze larger than 8?",
    "question_th": "ผลรวมที่มีอันดับน้อยกว่า 5 ทองคำมากกว่า 5 และทองแดงมากกว่า 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_en": "Result of 1st, and an Extra of 4 x 400 m relay is in what lowest year?",
    "question_th": "ผลการแข่งขันที่ 1 และรีเลย์พิเศษ 4 x 400 ม. อยู่ในปีต่ำสุดที่ใด",
    "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_en": "a Year smaller than 2007, and a Result of 1st is in what venue?",
    "question_th": "หนึ่งปีน้อยกว่าปี 2550 และผลการแข่งขันอันดับที่ 1 อยู่ที่ใด?",
    "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_en": "Venue of melbourne , australia, and a Extra of 200 m has what results?",
    "question_th": "สถานที่จัดงานเมลเบิร์น ออสเตรเลีย และระยะพิเศษ 200 ม. ให้ผลลัพธ์เป็นอย่างไร?",
    "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_en": "Result of 1st, and a Venue of melbourne , australia, and a Extra of 100 m happened in which year?",
    "question_th": "ผลการแข่งขันอันดับที่ 1 และสถานที่จัดงานที่เมลเบิร์น ออสเตรเลีย และระยะทางพิเศษ 100 เมตร เกิดขึ้นในปีใด",
    "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_en": "Name the rectifier for Det/Pre-amp of x and # tubes of 4",
    "question_th": "ตั้งชื่อวงจรเรียงกระแสสำหรับ Det/Pre-amp ของ x และ # tube ของ 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_en": "Name the det/pre-amp with # of tubes of 8",
    "question_th": "ตั้งชื่อ det/pre-amp ด้วย # หลอดจำนวน 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_en": "Name the det/pre-amp with # tubes of 4 and rectifier of x",
    "question_th": "ตั้งชื่อ det/pre-amp ด้วย # หลอด 4 และวงจรเรียงกระแส 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_en": "Name the # tubes with audio amp of x",
    "question_th": "ตั้งชื่อ # หลอด ที่มีแอมป์เสียงเป็น x",
    "context": "CREATE TABLE table_name_30 (_number_tubes VARCHAR, audio_amp VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_84 WHERE goal = 3",
    "question_en": "What type of Competition has a Goal of 3?",
    "question_th": "การแข่งขันประเภทใดมีเป้าหมายที่ 3?",
    "context": "CREATE TABLE table_name_84 (competition VARCHAR, goal VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_17 WHERE date = \"july 1, 2000\"",
    "question_en": "Which Competition has the Date July 1, 2000?",
    "question_th": "การแข่งขันใดมีวันที่ 1 กรกฎาคม พ.ศ. 2543",
    "context": "CREATE TABLE table_name_17 (competition VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT years FROM table_name_46 WHERE representative = \"james robert jones\"",
    "question_en": "Which years did James Robert Jones serve?",
    "question_th": "James Robert Jones รับราชการกี่ปี?",
    "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_en": "James Hutchins Johnson, from New Hampshire, served during what years?",
    "question_th": "James Hutchins Johnson จากนิวแฮมป์เชียร์ รับราชการในช่วงปีใดบ้าง",
    "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_en": "Who is the team that has played more than 18 games and has 6 losses?",
    "question_th": "ทีมไหนเล่นเกิน 18 นัด แพ้ 6 นัด?",
    "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_en": "Which season did the Burnaby Lakers have less than 16 points and less than 18 losses?",
    "question_th": "ฤดูกาลไหนที่เบิร์นนาบี เลเกอร์สมีน้อยกว่า 16 แต้มและแพ้น้อยกว่า 18 แต้ม?",
    "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_en": "Which team had more than 15 losses in 1988?",
    "question_th": "ทีมใดแพ้มากกว่า 15 ครั้งในปี 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_en": "How many losses did the Burnaby Lakers accumulate when they scored 8 points in 1998 playing less than 25 games?",
    "question_th": "Burnaby Lakers สูญเสียไปกี่ครั้งเมื่อพวกเขาทำคะแนนได้ 8 แต้มในปี 1998 โดยลงเล่นน้อยกว่า 25 เกม",
    "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_en": "What was the school for the player who was a DL?",
    "question_th": "โรงเรียนสำหรับผู้เล่นที่เป็น 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_en": "Which pick was used on Ian Hazlett?",
    "question_th": "เอียน ฮาซเลตต์ใช้ปิ๊กตัวไหน?",
    "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_en": "Which Thumb stick has a Basic shape of curved, a Backlit of yes, and a Supplier of genius?",
    "question_th": "Thumb Stick ตัวไหนที่มีรูปทรงพื้นฐานแบบโค้ง มีไฟ Backlit ใช่ และเป็นซัพพลายเออร์อัจฉริยะ?",
    "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_en": "Which Thumb stick has a Wrist pad of no, and a Supplier of sharkoon?",
    "question_th": "Thumb Stick ตัวไหนมีแผ่นรองข้อมือและซัพพลายเออร์ของ 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_en": "Which keys (x modes) have a Supplier of wolfking?",
    "question_th": "ปุ่มใด (โหมด x) มีซัพพลายเออร์ของ 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_en": "Which Supplier have a Basic shape of flat, a Wrist pad of no, and Keys (x modes) of 25+?",
    "question_th": "ผู้ผลิตรายใดมีรูปทรงพื้นฐานแบบแบน, แผ่นรองข้อมือไม่มี และปุ่ม (โหมด x) มากกว่า 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_en": "Who was the opponent with the time 3:59?",
    "question_th": "คู่ต่อสู้ในเวลา 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_en": "Name the Israel Bowl for march 30, 2012",
    "question_th": "ตั้งชื่อ Israel Bowl ประจำวันที่ 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_en": "Name the venue for march 28, 2008",
    "question_th": "ตั้งชื่อสถานที่จัดงานวันที่ 28 มีนาคม 2551",
    "context": "CREATE TABLE table_name_47 (venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT champion FROM table_name_33 WHERE israel_bowl = \"iv\"",
    "question_en": "Name the champion for israel bowl of iv",
    "question_th": "ตั้งชื่อแชมป์รายการ 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_en": "Name the season for runner up of judean rebels",
    "question_th": "ตั้งชื่อฤดูกาลสำหรับรองชนะเลิศกลุ่มกบฏจูเดียน",
    "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–1910) gt (1915–1922)\" AND traction_type = \"steam\"",
    "question_en": "On what date did the event begin that had a steam traction type and used the system named HSM (1883–1910) GT (1915–1922)?",
    "question_th": "เหตุการณ์เริ่มต้นในวันที่ใดซึ่งมีระบบขับเคลื่อนด้วยไอน้ำและใช้ระบบชื่อ HSM (1883–1910) GT (1915–1922)",
    "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_en": "On what date did the event at Zaltbommel begin?",
    "question_th": "งานที่ Zaltbommel เริ่มวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_66 (date__from_ VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_5 WHERE name_of_system = \"atm (1880–1911) geta (1911–1944)\" AND traction_type = \"electric\"",
    "question_en": "At what location did the event that used electric traction and system name ATM (1880–1911) GETA (1911–1944) occur?",
    "question_th": "เหตุการณ์ที่ใช้ระบบฉุดลากไฟฟ้าและชื่อระบบ ATM (1880–1911) GETA (1911–1944) เกิดขึ้นที่สถานที่ใด",
    "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_en": "What is the to par of the player from England with a t1 place?",
    "question_th": "อะไรคือความได้เปรียบของผู้เล่นจากอังกฤษที่มีอันดับ t1?",
    "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ía\"",
    "question_en": "What is the country sergio garcía, who has a score of 69-70-67=206, is from?",
    "question_th": "เซร์คิโอ การ์เซีย มีคะแนน 69-70-67=206 มาจากประเทศอะไร?",
    "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_en": "What is the to par of the player from the United States with a t5 place?",
    "question_th": "แต้มพาร์ของผู้เล่นจากสหรัฐอเมริกาที่มีอันดับ t5 คืออะไร?",
    "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_en": "What is the to par of the player from the United States with a score of 69-68-65=202?",
    "question_th": "พาร์ของผู้เล่นจากสหรัฐอเมริกาด้วยคะแนน 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_en": "How many lanes had a rank smaller than 4 and a time of 2:01.51?",
    "question_th": "มีกี่เลนที่มีอันดับน้อยกว่า 4 และเวลา 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_en": "What was the time of the person in lane 7?",
    "question_th": "คนที่อยู่ในเลน 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_en": "How many employees at nokia, ranked under 3?",
    "question_th": "มีพนักงานโนเกียกี่คนที่อยู่ในอันดับที่ต่ำกว่า 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_en": "The person with a rank of 8 moving to Shakhtar Donetsk was moving from what Ukrainian Football Club as a transfer?",
    "question_th": "คนที่มีอันดับ 8 ที่ย้ายไปชัคตาร์ โดเนตสค์ กำลังย้ายจากสโมสรฟุตบอลยูเครนแห่งใดมาโอน?",
    "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ël bangoura\"",
    "question_en": "Ismaël Bangoura with a rank larger than 5 after the year 2005 was moving to what football club?",
    "question_th": "อิสมาเอล บังกูรา ที่มีอันดับมากกว่า 5 หลังจากปี 2005 ได้ย้ายไปสโมสรฟุตบอลใด?",
    "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_en": "The player with a rank of 9, made a move from what football club?",
    "question_th": "นักเตะอันดับ 9 ย้ายมาจากสโมสรฟุตบอลอะไร?",
    "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_en": "Moving from Nancy after 2005, what is listed as the lowest rank?",
    "question_th": "ย้ายจากแนนซี่หลังปี 2548 อะไรคืออันดับต่ำสุด?",
    "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_en": "What is the listed year that has a rank smaller than 8 and moving from Olympiacos?",
    "question_th": "ปีใดที่มีอันดับน้อยกว่า 8 และย้ายจากโอลิมเปียกอส?",
    "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_en": "Which team plays in Goa, Salcette?",
    "question_th": "ทีมใดเล่นใน 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_en": "Where is the home venue of Bengaluru FC?",
    "question_th": "สนามเหย้าของ เบงกาลูรู เอฟซี อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_95 (home_venue VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT state FROM table_name_43 WHERE team = \"mumbai\"",
    "question_en": "What is the state of the team who plays in Mumbai?",
    "question_th": "สภาพทีมที่เล่นในมุมไบเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_43 (state VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_31 WHERE state = \"maharashtra\" AND team = \"pune\"",
    "question_en": "Where is the city of Maharashtra's Pune team?",
    "question_th": "ทีมปูนของเมืองมหาราษฏระอยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_31 (city VARCHAR, state VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT money_requested__£_ FROM table_name_10 WHERE company_or_product_name = \"basstoneslap\"",
    "question_en": "How much Money is requested by BassToneSlap?",
    "question_th": "BassToneSlap ร้องขอเงินเท่าไหร่?",
    "context": "CREATE TABLE table_name_10 (money_requested__£_ VARCHAR, company_or_product_name VARCHAR)"
  },
  {
    "answer": "SELECT investing_dragon_s_ FROM table_name_43 WHERE money_requested__£_ = \"100,000\" AND entrepreneur_s_ = \"kay russell\"",
    "question_en": "Which Investing Dragon has requested £100,000 and is supported by Entrepreneur Kay Russell?",
    "question_th": "Investing Dragon ตัวไหนที่ขอเงิน 100,000 ปอนด์และได้รับการสนับสนุนจากผู้ประกอบการ Kay Russell",
    "context": "CREATE TABLE table_name_43 (investing_dragon_s_ VARCHAR, money_requested__£_ 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_en": "What is the name of the Company or Product that is Episode 3 and is suppoted by Investing Dragon Deborah Meaden?",
    "question_th": "ชื่อของบริษัทหรือผลิตภัณฑ์ที่เป็นตอนที่ 3 และสนับสนุนโดย 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__£_ = \"150,000\"",
    "question_en": "Which Episode has requested £150,000?",
    "question_th": "ตอนใดที่ขอเงิน 150,000 ปอนด์?",
    "context": "CREATE TABLE table_name_38 (episode VARCHAR, money_requested__£_ VARCHAR)"
  },
  {
    "answer": "SELECT counting_method FROM table_name_89 WHERE basis = \"network-centric\"",
    "question_en": "What is the counting method for a network-centric basis?",
    "question_th": "วิธีการนับสำหรับพื้นฐานเครือข่ายเป็นศูนย์กลางคืออะไร?",
    "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_en": "What is the directed/undirected for mfinder, which has a network-centric basis?",
    "question_th": "อะไรคือ direct/undirected สำหรับ mfinder ซึ่งมีพื้นฐานที่เน้นเครือข่ายเป็นหลัก?",
    "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_en": "What is the directed/undirected of fpf (mavisto), which has an induced/non-induced of induced?",
    "question_th": "อะไรคือการกำกับ/ไม่กำหนดทิศทางของ fpf (mavisto) ซึ่งมีการชักนำ/ไม่ชักนำ?",
    "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_en": "What is the name of the algorithm with a directed/undirected of both and a subgraph-centric basis?",
    "question_th": "ชื่อของอัลกอริธึมที่มีทั้งแบบกำกับ/ไม่กำหนดทิศทางของทั้งสองแบบและแบบเน้นกราฟย่อยคืออะไร",
    "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_en": "What is the directed/undirected for mfinder, which has an induced/non-induced of induced and an exact counting method?",
    "question_th": "อะไรคือการกำกับ/ไม่กำหนดทิศทางสำหรับ mfinder ซึ่งมีวิธีการเหนี่ยวนำ/ไม่เหนี่ยวนำและวิธีการนับที่แน่นอน",
    "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_en": "Who is the opponent for the winner outcome on a hard surface on August 27, 2011?",
    "question_th": "คู่ต่อสู้ของผู้ชนะบนพื้นแข็งในวันที่ 27 สิงหาคม 2554 คือใคร?",
    "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_en": "What was the outcome on August 5, 2007?",
    "question_th": "ผลลัพธ์เมื่อวันที่ 5 สิงหาคม 2550 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_59 (outcome VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_25 WHERE date = \"january 16, 2010\"",
    "question_en": "What was the score on January 16, 2010?",
    "question_th": "คะแนนเมื่อวันที่ 16 มกราคม 2553 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_25 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_6 WHERE name = \"paul runyan\"",
    "question_en": "What country is Paul Runyan from?",
    "question_th": "พอล รันยัน มาจากประเทศอะไร",
    "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_en": "What is the To par of Willie MacFarlane from the country of Scotland?",
    "question_th": "To par ของ Willie MacFarlane จากประเทศสกอตแลนด์คืออะไร?",
    "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_en": "What country has a To par of +1 and the score of 71-76-70=217?",
    "question_th": "ประเทศใดมีพาร์ถึง +1 และคะแนน 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_en": "What player scored 143 goals?",
    "question_th": "นักเตะคนไหนยิงได้ 143 ประตู?",
    "context": "CREATE TABLE table_name_15 (player VARCHAR, goals VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_75 WHERE club = \"south melbourne\"",
    "question_en": "In what season was there a club of South Melbourne?",
    "question_th": "เซาท์เมลเบิร์นมีสโมสรในฤดูกาลใด?",
    "context": "CREATE TABLE table_name_75 (season VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_name_71 WHERE goals = \"143\"",
    "question_en": "What club scored 143 goals?",
    "question_th": "สโมสรใดยิงได้ 143 ประตู?",
    "context": "CREATE TABLE table_name_71 (club VARCHAR, goals VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_86 WHERE player = \"bob pratt\"",
    "question_en": "In what season did Bob Pratt play?",
    "question_th": "Bob Pratt เล่นในฤดูกาลใด?",
    "context": "CREATE TABLE table_name_86 (season VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT goals FROM table_name_5 WHERE club = \"hawthorn\" AND season = \"1971\"",
    "question_en": "How many goals did the club from Hawthorn score in the 1971 season?",
    "question_th": "สโมสรจากฮอว์ธอร์นทำประตูได้กี่ประตูในฤดูกาล 1971?",
    "context": "CREATE TABLE table_name_5 (goals VARCHAR, club VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_80 WHERE date = \"july 1\"",
    "question_en": "What source has july 1 as the date?",
    "question_th": "แหล่งใดมีวันที่ 1 กรกฎาคม เป็นวันที่?",
    "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² < 368 AND county = \"akershus\" AND population > 14 OFFSET 398",
    "question_en": "Which municipality's area is outer circle south and smaller than 368 km in Akershus County with more than 14,398 people?",
    "question_th": "พื้นที่ของเทศบาลใดอยู่วงแหวนรอบนอกทางใต้และเล็กกว่า 368 กม. ในเขต Akershus ที่มีประชากรมากกว่า 14,398 คน",
    "context": "CREATE TABLE table_name_2 (municipality VARCHAR, population VARCHAR, county VARCHAR, area VARCHAR, area_km² VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_80 WHERE game > 6",
    "question_en": "What was the location of the game after game 6?",
    "question_th": "สถานที่ของเกมหลังเกมที่ 6 คืออะไร?",
    "context": "CREATE TABLE table_name_80 (location VARCHAR, game INTEGER)"
  },
  {
    "answer": "SELECT february FROM table_name_13 WHERE september = \"kristine hanson\"",
    "question_en": "Who is in February where has September is kristine hanson?",
    "question_th": "ใครอยู่เดือนกุมภาพันธ์ คริสติน แฮนสัน เดือนกันยายนอยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_13 (february VARCHAR, september VARCHAR)"
  },
  {
    "answer": "SELECT january FROM table_name_71 WHERE april = \"chris cranston\"",
    "question_en": "Who is in January where April is chris cranston?",
    "question_th": "ในเดือนมกราคมใครคือคริส แครนสตันในเดือนเมษายน?",
    "context": "CREATE TABLE table_name_71 (january VARCHAR, april VARCHAR)"
  },
  {
    "answer": "SELECT july FROM table_name_7 WHERE october = \"jill de vries\"",
    "question_en": "Who is in July where October is jill de vries?",
    "question_th": "ในเดือนกรกฎาคมใครคือ 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_en": "Who is in November where February is willy rey?",
    "question_th": "เดือนพฤศจิกายนใครอยู่ไหน เดือนกุมภาพันธ์คือวิลลี่ เรย์?",
    "context": "CREATE TABLE table_name_48 (november VARCHAR, february VARCHAR)"
  },
  {
    "answer": "SELECT november FROM table_name_71 WHERE october = \"jill de vries\"",
    "question_en": "Who is in November where October is jill de vries?",
    "question_th": "ใครอยู่ในเดือนพฤศจิกายน และเดือนตุลาคมคือ 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_en": "Who is in July where February is linda forsythe?",
    "question_th": "ใครอยู่ในเดือนกรกฎาคมซึ่งลินดาฟอร์ไซธ์เดือนกุมภาพันธ์คือใคร?",
    "context": "CREATE TABLE table_name_8 (july VARCHAR, february VARCHAR)"
  },
  {
    "answer": "SELECT remarks FROM table_name_74 WHERE airline = \"dutch antilles express\"",
    "question_en": "What were the remarks for Dutch Antilles Express?",
    "question_th": "อะไรคือข้อสังเกตสำหรับ 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_en": "What were the remarks for a destination under 19 and rank less than 5?",
    "question_th": "จุดหมายปลายทางที่อายุต่ำกว่า 19 ปีและอันดับต่ำกว่า 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_en": "Name the date when the attendance is more than 45,817",
    "question_th": "ระบุวันที่เข้าร่วมประชุมเกิน 45,817 คน",
    "context": "CREATE TABLE table_name_65 (date VARCHAR, attendance INTEGER)"
  },
  {
    "answer": "SELECT score FROM table_name_93 WHERE date = \"september 25\"",
    "question_en": "Name the score for september 25",
    "question_th": "ทายผลคะแนนประจำวันที่ 25 กันยายน",
    "context": "CREATE TABLE table_name_93 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_name_83 WHERE venue = \"athens, greece\"",
    "question_en": "What is the lowest year that has athens, greece as the venue?",
    "question_th": "ปีต่ำสุดที่มีเอเธนส์ ประเทศกรีซ เป็นสถานที่จัดงานคือปีใด",
    "context": "CREATE TABLE table_name_83 (year INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_45 WHERE result = \"1st\"",
    "question_en": "Which venue has 1st as the result?",
    "question_th": "สนามไหนมีที่ 1 เป็นผล?",
    "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_en": "What extra has world championships as the tournament, and 1st as the result?",
    "question_th": "มีอะไรพิเศษอีกบ้างที่มีการแข่งขันชิงแชมป์โลกในทัวร์นาเมนต์นี้ และผลการแข่งขันเป็นที่ 1 เป็นอย่างไร?",
    "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_en": "For all countries with 7 bronze medals and a total number of medals less than 13, what's the sum of silver medals?",
    "question_th": "สำหรับทุกประเทศที่มี 7 เหรียญทองแดงและจำนวนเหรียญรวมน้อยกว่า 13 เหรียญ เหรียญเงินจะรวมกันเป็นเท่าใด",
    "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_en": "For countries with total number of medals less than 5 and more than 2 bronze medals, what's the lowest number of gold medals?",
    "question_th": "สำหรับประเทศที่มีจำนวนเหรียญรวมน้อยกว่า 5 เหรียญและมีเหรียญทองแดงมากกว่า 2 เหรียญ เหรียญทองมีจำนวนน้อยที่สุดคือเท่าใด",
    "context": "CREATE TABLE table_name_92 (gold INTEGER, total VARCHAR, bronze VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_name_74 WHERE laps = 31",
    "question_en": "Which Class has Laps of 31?",
    "question_th": "คลาสใดมีรอบ 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_en": "What country team had Thurles Sarsfields?",
    "question_th": "เธิร์ลส์ ซาร์สฟิลด์สมีทีมประเทศใดอยู่",
    "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_en": "How many club teams had more than 14 people?",
    "question_th": "มีทีมสโมสรกี่ทีมที่มีคนมากกว่า 14 คน?",
    "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_en": "Who is from Spain with a to par of e?",
    "question_th": "ใครมาจากสเปนที่มี a ถึง par ของ 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_en": "Where was Steve Stricker from?",
    "question_th": "Steve Stricker มาจากไหน?",
    "context": "CREATE TABLE table_name_10 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_41 WHERE score = 69",
    "question_en": "Which country has 69 score?",
    "question_th": "ประเทศใดมี 69 คะแนน?",
    "context": "CREATE TABLE table_name_41 (country VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(laps) FROM table_name_69 WHERE start = \"12\"",
    "question_en": "How many laps were there when the start was 12?",
    "question_th": "ตอนออกสตาร์ท 12 มีกี่รอบ?",
    "context": "CREATE TABLE table_name_69 (laps VARCHAR, start VARCHAR)"
  },
  {
    "answer": "SELECT qual FROM table_name_63 WHERE rank = \"2\"",
    "question_en": "What was the qual when the rank was 2?",
    "question_th": "เมื่ออันดับที่ 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_en": "Tell me the call sign which has a frequency Mhz more than 90.1 and ERP W of 1",
    "question_th": "บอกสัญญาณเรียกขานที่มีความถี่ Mhz มากกว่า 90.1 และ ERP W เท่ากับ 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_en": "Name the total number of ERP W when the call sign is w217bf",
    "question_th": "ตั้งชื่อจำนวนรวมของ ERP W เมื่อสัญญาณเรียกขานคือ 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_en": "Name the total number of frequency Mhz for when it has ERP W of 1 and call sign of w215bj",
    "question_th": "ตั้งชื่อจำนวนความถี่ทั้งหมด Mhz เมื่อมี ERP W เป็น 1 และสัญญาณเรียกของ 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_en": "Name the average ERP W when it has a city of license of pound, virginia and frequency mhz more than 91.3",
    "question_th": "ตั้งชื่อ ERP W โดยเฉลี่ยเมื่อมีเมืองที่ได้รับอนุญาตเป็นปอนด์ เวอร์จิเนีย และความถี่ mhz มากกว่า 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–2\" AND date = \"04 dec 2005\"",
    "question_en": "What is the Score that has a Result of 2–2 on 04 Dec 2005?",
    "question_th": "คะแนนที่มีผลการแข่งขัน 2–2 ในวันที่ 04 ธันวาคม พ.ศ. 2548 เป็นเท่าใด",
    "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_en": "What is the Result on 26 jan 2005?",
    "question_th": "ผลลัพธ์ในวันที่ 26 มกราคม 2548 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_38 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_12 WHERE date = \"26 jan 2005\"",
    "question_en": "What is the Venue on 26 jan 2005",
    "question_th": "สถานที่จัดงานในวันที่ 26 มกราคม 2548 คืออะไร",
    "context": "CREATE TABLE table_name_12 (venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_43 WHERE date = \"26 jan 2005\"",
    "question_en": "What is the Competition On 26 jan 2005",
    "question_th": "การแข่งขันวันที่ 26 มกราคม 2548 คืออะไร",
    "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_en": "What is the Score of West Asian Games 2005 on 10 dec 2005?",
    "question_th": "คะแนนของเวสต์เอเชี่ยนเกมส์ 2548 เมื่อวันที่ 10 ธันวาคม 2548 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_44 (score VARCHAR, competition VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT drawn FROM table_name_1 WHERE points_for = \"447\"",
    "question_en": "How many matches were drawn by a team with 447 points?",
    "question_th": "ทีมเสมอกันกี่นัดโดยมีคะแนน 447 แต้ม?",
    "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_en": "For teams with 22 matches played, a losing bonus of 3, and 45 tries against, what was the number of points against?",
    "question_th": "สำหรับทีมที่ลงเล่น 22 นัด แพ้โบนัส 3 นัด และลองแข่ง 45 นัด จะได้แต้มเทียบกับจำนวนเท่าใด",
    "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_en": "For a team with 332 points for, what was the try bonus?",
    "question_th": "สำหรับทีมที่ได้ 332 แต้ม โบนัสการลองคืออะไร",
    "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_en": "Which club has a try bonus of 9 and 43 tries against?",
    "question_th": "สโมสรใดมีโบนัสการลองเล่น 9 และ 43 ครั้ง?",
    "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_en": "How many matches were played by the team that has 473 points for?",
    "question_th": "ทีมที่ได้ 473 แต้มลงเล่นไปแล้วกี่นัด?",
    "context": "CREATE TABLE table_name_31 (played VARCHAR, points_for VARCHAR)"
  },
  {
    "answer": "SELECT qual FROM table_name_6 WHERE laps = 125",
    "question_en": "What is the qual when there are 125 laps?",
    "question_th": "เมื่อมี 125 รอบจะมีคุณสมบัติอะไร?",
    "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_en": "What is the rank when there are more than 107 laps and the qual is 137.825?",
    "question_th": "เมื่อมีมากกว่า 107 รอบและรอบคัดเลือกคือ 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_en": "What is the rank with more than 40 laps and a 23 finish?",
    "question_th": "อันดับที่มีมากกว่า 40 รอบและจบ 23 คืออะไร?",
    "context": "CREATE TABLE table_name_64 (rank VARCHAR, laps VARCHAR, finish VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_75 WHERE year = \"1953\"",
    "question_en": "What is the finish in 1953?",
    "question_th": "ตอนจบในปี 1953 คืออะไร?",
    "context": "CREATE TABLE table_name_75 (finish VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_96 WHERE rank = \"24\"",
    "question_en": "In what year was the rank 24?",
    "question_th": "อันดับที่ 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_en": "Which To par has $100 in money played by Vic Ghezzi?",
    "question_th": "พาร์ไหนมีเงิน 100 ดอลลาร์ที่เล่นโดย 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_en": "What is the monetary sum with a score of 75-71-75-72=293?",
    "question_th": "จำนวนเงินที่มีคะแนน 75-71-75-72=293 คืออะไร?",
    "context": "CREATE TABLE table_name_12 (money___ INTEGER, score VARCHAR)"
  },
  {
    "answer": "SELECT wednesday FROM table_name_23 WHERE saturday = \"གཟའ་སྤེན་པ།\"",
    "question_en": "Which Wednesday has a Saturday of གཟའ་སྤེན་པ།?",
    "question_th": "วันพุธไหนมีวันเสาร์ เดือน གཟའ་སྤེན་པ།?",
    "context": "CREATE TABLE table_name_23 (wednesday VARCHAR, saturday VARCHAR)"
  },
  {
    "answer": "SELECT wednesday FROM table_name_16 WHERE sunday = \"གཟའ་ཉི་མ།\"",
    "question_en": "Which Wednesday has a Sunday of གཟའ་ཉི་མ།?",
    "question_th": "วันพุธไหนมีวันอาทิตย์ วัน གཟའ་ཉི་མ།?",
    "context": "CREATE TABLE table_name_16 (wednesday VARCHAR, sunday VARCHAR)"
  },
  {
    "answer": "SELECT tuesday FROM table_name_94 WHERE saturday = \"土曜日 doyōbi\"",
    "question_en": "Which Tuesday has a Saturday of 土曜日 doyōbi?",
    "question_th": "วันอังคารไหนมีวันเสาร์ของ 土曜日 doyōbi?",
    "context": "CREATE TABLE table_name_94 (tuesday VARCHAR, saturday VARCHAR)"
  },
  {
    "answer": "SELECT thursday FROM table_name_51 WHERE wednesday = \"星期三 xingqisen\"",
    "question_en": "Which Thursday has a Wednesday of 星期三 xingqisen?",
    "question_th": "วันพฤหัสบดีใดมีวันพุธของ星期三 xingqisen?",
    "context": "CREATE TABLE table_name_51 (thursday VARCHAR, wednesday VARCHAR)"
  },
  {
    "answer": "SELECT wednesday FROM table_name_46 WHERE monday = \"月曜日 getsuyōbi\"",
    "question_en": "Which Wednesday has a Monday of 月曜日 getsuyōbi?",
    "question_th": "วันพุธไหนมีวันจันทร์ 月曜日 getsuyōbi?",
    "context": "CREATE TABLE table_name_46 (wednesday VARCHAR, monday VARCHAR)"
  },
  {
    "answer": "SELECT saturday FROM table_name_8 WHERE thursday = \"木曜日 mokuyōbi\"",
    "question_en": "Which Saturday has a Thursday of 木曜日 mokuyōbi",
    "question_th": "ซึ่งวันเสาร์มีวันพฤหัสบดีของ 木曜日 mokuyōbi",
    "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_en": "What loss was against the angels with a 50-31 record?",
    "question_th": "การสูญเสียอะไรเกิดขึ้นกับเหล่าทูตสวรรค์ด้วยสถิติ 50-31?",
    "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_en": "Who is the pilot on September 27, 1972?",
    "question_th": "ใครเป็นนักบินในวันที่ 27 กันยายน พ.ศ. 2515",
    "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_en": "What is the lowest altitude of the flight with a mach bigger than 0.905 and a duration of 00:06:17?",
    "question_th": "ระดับความสูงต่ำสุดของเที่ยวบินด้วยเครื่องที่ใหญ่กว่า 0.905 และระยะเวลา 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_en": "Which wicket had a 100 (45) Runs (balls) amount?",
    "question_th": "ประตูใดมีจำนวนเงิน 100 (45) รัน (ลูก)",
    "context": "CREATE TABLE table_name_43 (wicket VARCHAR, runs__balls_ VARCHAR)"
  },
  {
    "answer": "SELECT wicket FROM table_name_55 WHERE runs__balls_ = \"104 (69)\"",
    "question_en": "Which Wicket was it that had a 104 (69) Runs (balls) amount?",
    "question_th": "ประตูใดที่มีจำนวนรัน 104 (69) รัน (ลูกบอล)",
    "context": "CREATE TABLE table_name_55 (wicket VARCHAR, runs__balls_ VARCHAR)"
  },
  {
    "answer": "SELECT leagues_entering FROM table_name_69 WHERE clubs = \"8 → 4\"",
    "question_en": "What is the item for Leagues entering, when the value for Clubs is 8 → 4?",
    "question_th": "ไอเทมสำหรับการเข้าร่วมลีกคืออะไร เมื่อค่าไม้กอล์ฟคือ 8 → 4?",
    "context": "CREATE TABLE table_name_69 (leagues_entering VARCHAR, clubs VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_31 WHERE fixtures = 2",
    "question_en": "What is the Round when the value for Fixtures is 2?",
    "question_th": "รอบจะเป็นอย่างไรเมื่อค่าการแข่งขันคือ 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 → 2\"",
    "question_en": "What is the value for New entries, when the value for Fixtures is less than 16, and when the value for Clubs is 4 → 2?",
    "question_th": "ค่าของรายการใหม่คืออะไร เมื่อค่าของโปรแกรมการแข่งขันน้อยกว่า 16 และเมื่อค่าของไม้กอล์ฟคือ 4 → 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_en": "What is the value for New entries, when the value for Fixtures is 2?",
    "question_th": "ค่าของรายการใหม่คืออะไร เมื่อค่าของโปรแกรมการแข่งขันคือ 2",
    "context": "CREATE TABLE table_name_71 (new_entries VARCHAR, fixtures VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_31 WHERE format_s_ = \"album\"",
    "question_en": "Which date has a format's album?",
    "question_th": "อัลบั้มของฟอร์แมตมีวันไหน?",
    "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_en": "What is the title for year 1991 and a date of March 21?",
    "question_th": "ชื่อปี 1991 และวันที่ 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_en": "What is the average year with an award of platinum?",
    "question_th": "ปีเฉลี่ยที่ได้รับรางวัลแพลทินัมคือเท่าไร?",
    "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_en": "What are the results of Format single on March 21?",
    "question_th": "ผลรายการฟอร์แมตซิงเกิลวันที่ 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_en": "What are the award description with Format album?",
    "question_th": "คำอธิบายรางวัลสำหรับอัลบั้ม Format คืออะไร?",
    "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_en": "What is the largest number of goals with less than 101 assists and 172 points?",
    "question_th": "จำนวนประตูที่ใหญ่ที่สุดโดยน้อยกว่า 101 แอสซิสต์และ 172 แต้มคือเท่าไร?",
    "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_en": "How many total points does Mike Hyndman have with more than 119 assists?",
    "question_th": "ไมค์ ฮินด์แมน มีคะแนนรวมทั้งหมดกี่แต้มจาก 119 แอสซิสต์?",
    "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_en": "How many assists does David Tomlinson have?",
    "question_th": "เดวิด ทอมลินสัน มีแอสซิสต์ได้กี่ครั้ง?",
    "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_en": "How many points does Shawn Mceachern with less than 79 goals?",
    "question_th": "Shawn Mceachern ทำประตูได้น้อยกว่า 79 คะแนนได้กี่แต้ม?",
    "context": "CREATE TABLE table_name_25 (points INTEGER, player VARCHAR, goals VARCHAR)"
  },
  {
    "answer": "SELECT goals FROM table_name_6 WHERE player = \"mike eruzione\"",
    "question_en": "How many goals does Mike Eruzione have in total?",
    "question_th": "ไมค์ เอรูซิโอเน่ ทำได้ทั้งหมดกี่ประตู?",
    "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_en": "Which rider had fewer than 10 laps for the Aprilia manufacturer, finishing in retirement?",
    "question_th": "นักแข่งคนไหนที่วิ่งได้น้อยกว่า 10 รอบสำหรับผู้ผลิต Aprilia และจบการแข่งขัน?",
    "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_en": "What is the time for a grid greater than 20, fewer than 26 laps, and the Aprilia manufacturer?",
    "question_th": "เวลาที่กริดมากกว่า 20 น้อยกว่า 26 รอบ และผู้ผลิตอาพริเลียคือเมื่อใด?",
    "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_en": "Which rider had more than 23 laps, a manufacturer of Aprilia, and a grid of 14",
    "question_th": "นักแข่งคนไหนมีมากกว่า 23 รอบ ผู้ผลิต Aprilia และตารางที่ 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_en": "When was Walter Evans a representative?",
    "question_th": "วอลเตอร์ อีแวนส์ เป็นตัวแทนเมื่อใด",
    "context": "CREATE TABLE table_name_29 (years VARCHAR, representative VARCHAR)"
  },
  {
    "answer": "SELECT catalog FROM table_name_93 WHERE format = \"cd\"",
    "question_en": "Name the catalog with cd format",
    "question_th": "ตั้งชื่อแคตตาล็อกด้วยรูปแบบซีดี",
    "context": "CREATE TABLE table_name_93 (catalog VARCHAR, format VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_88 WHERE catalog = \"mhcl-20005\"",
    "question_en": "Name the label with catalog of mhcl-20005",
    "question_th": "ตั้งชื่อฉลากพร้อมแค็ตตาล็อก mhcl-20005",
    "context": "CREATE TABLE table_name_88 (label VARCHAR, catalog VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_66 WHERE catalog = \"alca-9198\"",
    "question_en": "Name the date with catalog of alca-9198",
    "question_th": "ตั้งชื่อวันที่ด้วยแค็ตตาล็อกของ alca-9198",
    "context": "CREATE TABLE table_name_66 (date VARCHAR, catalog VARCHAR)"
  },
  {
    "answer": "SELECT note FROM table_name_73 WHERE catalog = \"32xa-106\"",
    "question_en": "Name the note for catalog of 32xa-106",
    "question_th": "ตั้งชื่อหมายเหตุสำหรับแค็ตตาล็อก 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_en": "Name the catalog for alfa records and cd format",
    "question_th": "ตั้งชื่อแค็ตตาล็อกสำหรับบันทึกอัลฟ่าและรูปแบบซีดี",
    "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_en": "Name the format for 12cm note and catalog of alca-9198",
    "question_th": "ตั้งชื่อรูปแบบโน้ตขนาด 12 ซม. และแค็ตตาล็อกของ alca-9198",
    "context": "CREATE TABLE table_name_28 (format VARCHAR, note VARCHAR, catalog VARCHAR)"
  },
  {
    "answer": "SELECT monday_mona__máni FROM table_name_84 WHERE thursday_thunor___thor = \"tongersdei\"",
    "question_en": "Which Monday Mona/Mani also had a Thursday Thunor/Thor of Tongersdei?",
    "question_th": "วันจันทร์ใดที่ Mona/Mani มี Thunor/Thor of Tongersdei ในวันพฤหัสบดีด้วย",
    "context": "CREATE TABLE table_name_84 (monday_mona__máni VARCHAR, thursday_thunor___thor VARCHAR)"
  },
  {
    "answer": "SELECT tuesday_tiw__tyr FROM table_name_61 WHERE sunday_sunna_sól = \"sondag\"",
    "question_en": "Which Tuesday Tiw/Tyr has a Sunday Sunna/Sol of sondag?",
    "question_th": "วันอังคารไหน ทิว/ตีร์ มีวันอาทิตย์ ซุนนะฮ/ซอล ซนดัค?",
    "context": "CREATE TABLE table_name_61 (tuesday_tiw__tyr VARCHAR, sunday_sunna_sól VARCHAR)"
  },
  {
    "answer": "SELECT album FROM table_name_22 WHERE year = 1995",
    "question_en": "What is the 1995 Album?",
    "question_th": "อัลบั้มปี 1995 คืออะไร?",
    "context": "CREATE TABLE table_name_22 (album VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT album FROM table_name_83 WHERE record_label = \"rca\"",
    "question_en": "What album was recorded by the rca label?",
    "question_th": "อัลบั้มใดที่ค่ายเพลง rca บันทึกไว้?",
    "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_en": "What's the sum of years when the Artist of the queen were less than 1?",
    "question_th": "ผลรวมของปีที่ศิลปินของราชินีมีอายุน้อยกว่า 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_en": "What is the 1990 Album?",
    "question_th": "อัลบั้มปี 1990 คืออะไร?",
    "context": "CREATE TABLE table_name_27 (album VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_90 WHERE game_site = \"soldier field\"",
    "question_en": "What is the result of the game that was played at Soldier Field?",
    "question_th": "ผลการแข่งขันที่เล่นที่ 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_en": "Who lost the game with a record of 20-13?",
    "question_th": "ใครแพ้เกมด้วยสถิติ 20-13?",
    "context": "CREATE TABLE table_name_41 (loss VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_38 WHERE date = \"may 28\"",
    "question_en": "Who lost the game on May 28?",
    "question_th": "ใครแพ้เกมวันที่ 28 พฤษภาคม?",
    "context": "CREATE TABLE table_name_38 (loss VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_65 WHERE date = \"may 26\"",
    "question_en": "Who lost the game on May 26?",
    "question_th": "ใครแพ้เกมวันที่ 26 พฤษภาคม?",
    "context": "CREATE TABLE table_name_65 (loss VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_82 WHERE time = \"3:01\"",
    "question_en": "Which date has the record time of 3:01?",
    "question_th": "วันไหนมีสถิติเวลา 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_en": "What is the score of the Devil Rays on April 24?",
    "question_th": "เดวิล เรย์ส วันที่ 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_en": "What is Ips-provectus transmittance/contrast ratio?",
    "question_th": "อัตราส่วนการส่งผ่าน/ความคมชัดของ Ips-provectus คืออะไร",
    "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_en": "What is the average silver for a rank less than 8, were there were no more than 4 bronze and 12 in total?",
    "question_th": "เงินเฉลี่ยสำหรับอันดับต่ำกว่า 8 คือเท่าไร มีไม่เกิน 4 เหรียญทองแดง และรวมทั้งหมด 12 เหรียญหรือไม่",
    "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_en": "How many gold did Gabon have when they were ranked no higher than 17, and less than 7 in total?",
    "question_th": "กาบองมีทองคำกี่เหรียญทองเมื่ออยู่ในอันดับที่ไม่สูงกว่า 17 และรวมแล้วไม่ถึง 7 เหรียญทอง",
    "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_en": "Name the opponent for april 24",
    "question_th": "ทายชื่อคู่ต่อสู้วันที่ 24 เมษายน",
    "context": "CREATE TABLE table_name_5 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_63 WHERE attendance = \"13,617\"",
    "question_en": "Name the score for attendance of 13,617",
    "question_th": "ระบุคะแนนผู้เข้าร่วม 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_en": "Name the opponent for Score of postponed (rain) not rescheduled",
    "question_th": "ตั้งชื่อคู่ต่อสู้ด้วยคะแนนเลื่อน (ฝน) ที่ไม่ได้กำหนดใหม่",
    "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_en": "What is the H.S. Asst. principal with a Glendale principal Joyce Brace during 2002-2003?",
    "question_th": "HS Asst คืออะไร อาจารย์ใหญ่กับ Joyce Brace ครูใหญ่ของ Glendale ระหว่างปี 2545-2546?",
    "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_en": "Who is the h.s. principal with Dave Lovering as w.r. principal and Marty Pizur as m.s. principal?",
    "question_th": "ใครคืออาจารย์ใหญ่ โดยมี Dave Lovering ดำรงตำแหน่งอาจารย์ใหญ่ และ Marty Pizur ดำรงตำแหน่งอาจารย์ใหญ่",
    "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_en": "Who is the Glendale principal with Greg Smorel as m.s. principal and Joleen Reinholz as H.S. principal during 2006-2007?",
    "question_th": "ใครคืออาจารย์ใหญ่ของ Glendale โดยมี Greg Smorel ดำรงตำแหน่งอาจารย์ใหญ่ และ Joleen Reinholz ดำรงตำแหน่งอาจารย์ใหญ่ HS ในช่วงปี 2549-2550",
    "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_en": "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?",
    "question_th": "ใครคืออาจารย์ใหญ่ โดยมี Jim Haught ดำรงตำแหน่งอาจารย์ใหญ่ Charlie Taylor ดำรงตำแหน่งอาจารย์ใหญ่เมเปิ้ล และ Rich Auerbach ดำรงตำแหน่งอาจารย์ใหญ่",
    "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_en": "Who is the h.h. principal with James Finch as the superintendent and Charlie Taylor as the maplemere principal?",
    "question_th": "ใครคืออาจารย์ใหญ่ โดยมีเจมส์ ฟินช์เป็นผู้กำกับ และชาร์ลี เทย์เลอร์เป็นอาจารย์ใหญ่เมเปิ้ลเมียร์",
    "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_en": "Who is the h.s. principal during 1973-1974?",
    "question_th": "ใครเป็นอาจารย์ใหญ่ในช่วงปี 2516-2517?",
    "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_en": "what is the engine for year less than 1959 and points more than 4?",
    "question_th": "เครื่องปีน้อยกว่า 1959 และคะแนนเกิน 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_en": "what is the least year for 4 points?",
    "question_th": "ปีไหนน้อยที่สุดที่ได้ 4 คะแนน?",
    "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_en": "what is the entrant for the ferrari v8 with points less than 4?",
    "question_th": "ผู้เข้าแข่งขัน Ferrari V8 ที่มีคะแนนน้อยกว่า 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_en": "what is the average year for 0 points and ferrari v8?",
    "question_th": "ปีเฉลี่ยสำหรับ 0 คะแนนและเฟอร์รารี 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_en": "When did channel 83 in singapore launch?",
    "question_th": "ช่อง 83 ที่สิงคโปร์เปิดตัวเมื่อไหร่?",
    "context": "CREATE TABLE table_name_81 (launched VARCHAR, territory VARCHAR, channel VARCHAR)"
  },
  {
    "answer": "SELECT territory FROM table_name_86 WHERE channel = 83",
    "question_en": "Where is channel 83 broadcasted?",
    "question_th": "ช่อง 83 ออกอากาศที่ไหน?",
    "context": "CREATE TABLE table_name_86 (territory VARCHAR, channel VARCHAR)"
  },
  {
    "answer": "SELECT broadcaster FROM table_name_12 WHERE territory = \"malaysia\"",
    "question_en": "Who broadcasts in malaysia?",
    "question_th": "ใครออกอากาศในมาเลเซีย?",
    "context": "CREATE TABLE table_name_12 (broadcaster VARCHAR, territory VARCHAR)"
  },
  {
    "answer": "SELECT engine_s_ FROM table_name_19 WHERE year = 1983",
    "question_en": "What are the engines for 1983?",
    "question_th": "เครื่องยนต์สำหรับปี 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_en": "How many appearances did Gary Depalma make when he scored less than 30 goals?",
    "question_th": "แกรี่ เดปัลมาลงเล่นไปกี่ครั้งเมื่อเขายิงได้น้อยกว่า 30 ประตู?",
    "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_en": "In stage 13, what is the intergiro classification and is on the team of Asics-c.g.a.?",
    "question_th": "ในสเตจที่ 13 อะไรคือประเภท Intergiro และอยู่ในทีม Asics-cga?",
    "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_en": "Which intergiro classification is there for team Polti at stage 14?",
    "question_th": "Intergiro ประเภทใดสำหรับทีม Polti ในรอบที่ 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_en": "Who was the winner in stage 7 with a general classification of Pavel Tonkov?",
    "question_th": "ใครคือผู้ชนะในระยะที่ 7 ด้วยประเภททั่วไปของ 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_en": "Who was the winner from team Asics-c.g.a. and has a mountains classification of Mariano Piccoli?",
    "question_th": "ใครคือผู้ชนะจากทีม Asics-cga และมีประเภทภูเขาของ 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_en": "Which points classification was used in stage 15?",
    "question_th": "การจัดประเภทคะแนนใดที่ใช้ในระยะที่ 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_en": "Which winner of stage 1 was not awarded a mountains classification?",
    "question_th": "ผู้ชนะสเตจที่ 1 คนใดที่ไม่ได้รับรางวัลประเภทภูเขา",
    "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_en": "Name the muzzel device with barrel twist of 1:10",
    "question_th": "ตั้งชื่ออุปกรณ์ปากกระบอกปืนด้วยการบิดกระบอก 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_en": "Name the bayonet lug with ar-15 lightweight",
    "question_th": "ตั้งชื่อตัวดึงแบบดาบปลายปืนด้วย ar-15 น้ำหนักเบา",
    "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_en": "Name the hand guards for ar-15a2 government carbine and barrel twist of 1:9",
    "question_th": "ตั้งชื่อแฮนด์การ์ดสำหรับปืนสั้นรัฐบาล ar-15a2 และกระบอกบิด 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_en": "Name the barrel length for barrel twist of 1:7",
    "question_th": "ตั้งชื่อความยาวลำกล้องสำหรับการบิดลำกล้องที่ 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_en": "What is the three-mora word with a low tone accented mora and a one mora of 2?",
    "question_th": "คำสามโมราที่มีเสียงต่ำเน้นเสียงโมราและหนึ่งโมราเท่ากับ 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ázé]\"",
    "question_en": "What is the one mora for the three-mora word /kaze/ [kázé]?",
    "question_th": "โมราหนึ่งสำหรับคำสามโมรา /kaze/ [kázé] คืออะไร?",
    "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 = \"/˩haruꜜ/ [hàɽɯ́ ~ hàɽɯ̂]\"",
    "question_en": "What is the one mora for the three-mora word /˩haruꜜ/ [hàɽɯ́ ~ hàɽɯ̂]?",
    "question_th": "โมราหนึ่งสำหรับคำสามโมรา /˩haruꜜ/ [hàɽɯ́ ~ hàɽɯ̂] คืออะไร?",
    "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 = \"/˩kusuꜜri/ [kɯ̀sɯ́ɽì]\"",
    "question_en": "What is the two-mora word with a low tone accented mora and a gloss of /˩kusuꜜri/ [kɯ̀sɯ́ɽì]?",
    "question_th": "คำสองโมราซึ่งมีเสียงเน้นเสียงต่ำ โมรา และเงาของ /˩kusuꜜri/ [kɯ̄ɯ́ɽì] คืออะไร?",
    "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 = \"/˩okiru/ [òkìɽɯ́]\"",
    "question_en": "What is the one mora for a low tone mora with a gloss of /˩okiru/ [òkìɽɯ́]?",
    "question_th": "โมราหนึ่งสำหรับโมราเสียงต่ำที่มีความเงาของ /˩okiru/ [òkìɽɯ́] คืออะไร?",
    "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_en": "What is the highest Total Medals that has 0 Gold Medal and a Ensemble of east 80 indoor percussion?",
    "question_th": "เหรียญรวมสูงสุดที่มี 0 เหรียญทองและชุดเครื่องเพอร์คัชชันในร่ม 80 ตะวันออกคืออะไร",
    "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_en": "What is the lowest Total Medals that has madison independent and Bronze Medals larger than 0",
    "question_th": "เหรียญรวมต่ำสุดที่มีเมดิสันอิสระและเหรียญทองแดงมากกว่า 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_en": "what is Gold Medals that has  salem blue devils and a Silver Medals less than 1?",
    "question_th": "เหรียญทองที่มีซาเลมบลูเดวิลและเหรียญเงินน้อยกว่า 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_en": "What is the location of the match where the method was submission (armbar) and Mayra Conde was the opponent?",
    "question_th": "ตำแหน่งแมตช์ที่ผู้ส่งวิธี (armbar) และ Mayra Conde เป็นคู่ต่อสู้อยู่ที่ไหน?",
    "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_en": "Who is the opponent of the match with a method of submission (armbar) and a 9-3-1 record?",
    "question_th": "คู่ต่อสู้ของแมตช์นี้ด้วยวิธีการซับมิชชัน (armbar) และสถิติ 9-3-1 คือใคร?",
    "context": "CREATE TABLE table_name_86 (opponent VARCHAR, method VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT time__eest_ FROM table_name_5 WHERE stage = \"ss8\"",
    "question_en": "What is the Time (EEST), when the Stage is ss8?",
    "question_th": "เวลา (EEST) คือเมื่อใดที่สเตจคือ 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_en": "What is the Stage, when the Rally leader is C. Atkinson?",
    "question_th": "Stage คืออะไร เมื่อผู้นำ Rally คือ 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_en": "Who is the Winner, when the Name is Ouninpohja 1?",
    "question_th": "ใครคือผู้ชนะ เมื่อชื่อ อุนินโภชา 1?",
    "context": "CREATE TABLE table_name_92 (winner VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT length FROM table_name_68 WHERE name = \"himos\"",
    "question_en": "What is the Length, when the Name is Himos?",
    "question_th": "ความยาวคืออะไรเมื่อชื่อ Himos?",
    "context": "CREATE TABLE table_name_68 (length VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_95 WHERE length = \"21.27km\"",
    "question_en": "Who is the Winner when the Length is 21.27km?",
    "question_th": "ใครคือผู้ชนะเมื่อระยะทาง 21.27 กม.?",
    "context": "CREATE TABLE table_name_95 (winner VARCHAR, length VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_92 WHERE time = \"8:10.1\"",
    "question_en": "What is the Name, when the Time is 8:10.1?",
    "question_th": "ชื่ออะไร เมื่อเวลา 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_en": "In the Formula One World Championships, which entrant had 0 points with a Ferrari 156 Chassis after 1961?",
    "question_th": "ในการแข่งขัน Formula One World Championships ผู้เข้าแข่งขันคนใดมี 0 คะแนนกับแชสซี Ferrari 156 หลังจากปี 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_en": "During the Formula One World Championships, which engine was used in 1965?",
    "question_th": "ในระหว่างการแข่งขัน Formula One World Championships เครื่องยนต์ใดที่ใช้ในปี 1965",
    "context": "CREATE TABLE table_name_80 (engine VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(points) FROM table_name_78 WHERE chassis = \"ferrari 156\"",
    "question_en": "How many points were earned with a Chassis of a Ferrari 156?",
    "question_th": "ได้รับคะแนนเท่าใดจากแชสซีของ 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_en": "Where did the driver who started 9 with a qualifing speed of 152.672 and finished fewer than 197 laps finish?",
    "question_th": "นักแข่งที่ออกสตาร์ท 9 ด้วยความเร็วรอบคัดเลือก 152.672 และจบน้อยกว่า 197 รอบจบที่ไหน?",
    "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_en": "What is the location of game 7?",
    "question_th": "เกมที่ 7 อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_1 (location VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_20 WHERE game = 4",
    "question_en": "what is the location of game 4?",
    "question_th": "เกมที่ 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_en": "Who were the 2nd group scorers that were opponents of olympiacos?",
    "question_th": "ใครคือผู้ทำประตูกลุ่มที่ 2 ที่เป็นคู่แข่งกับโอลิมเปียกอส?",
    "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–0\"",
    "question_en": "Who were F–A of 1–0 scorers?",
    "question_th": "ใครคือ F–A ของผู้ทำประตู 1–0?",
    "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_en": "What was the final score of the game on November 17?",
    "question_th": "คะแนนสุดท้ายของเกมวันที่ 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_en": "What was the final score of the game on November 24 with the visiting team the Indianapolis Colts?",
    "question_th": "สกอร์สุดท้ายของเกมวันที่ 24 พ.ย. กับทีมเยือน อินเดียนาโปลิส โคลท์ส เป็นอย่างไร?",
    "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_en": "When was the game at Gillette Stadium that ended in a final score of 30-17?",
    "question_th": "เกมที่ยิลเลตต์ สเตเดี้ยม จบลงด้วยสกอร์สุดท้าย 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_en": "Who was the visiting team that played on September 15?",
    "question_th": "ทีมเยือนที่เล่นในวันที่ 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_en": "What year did the Nashville Metros have the Regular Season 2nd, central?",
    "question_th": "Nashville Metros มีซีซั่นปกติที่ 2 ภาคกลางในปีใด",
    "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_en": "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?",
    "question_th": "Nashville Metros เล่นในแผนกใดในระหว่างปีที่พวกเขาไม่ได้ผ่านเข้ารอบตัดเชือก ซึ่งอยู่ใน USL PDL League และมีฤดูกาลปกติที่ 7 ทางตะวันออกเฉียงใต้",
    "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_en": "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?",
    "question_th": "ปีโดยเฉลี่ยที่ Nashville Metros ไม่ผ่านเข้ารอบตัดเชือก ไม่ผ่านเข้ารอบ Open Cup และมีฤดูกาลปกติที่ 7 ทางตะวันออกเฉียงใต้คือปีใด",
    "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_en": "Which chassis scored 52 points?",
    "question_th": "แชสซีตัวไหนทำคะแนนได้ 52 แต้ม?",
    "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_en": "Which engine scored 6 points and used the march 88c chassis?",
    "question_th": "เครื่องยนต์ใดได้ 6 คะแนนและใช้แชสซี 88c ของเดือนมีนาคม",
    "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_en": "Name the D 43 with D 48 of d 9",
    "question_th": "ตั้งชื่อ D 43 ด้วย D 48 ของ 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_en": "Name the D 42 with D 43 of d 14",
    "question_th": "ตั้งชื่อ D 42 ด้วย D 43 ของ 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_en": "Name the D 47 when it has D 48 of d 29",
    "question_th": "ตั้งชื่อ D 47 เมื่อมี D 48 จาก 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_en": "Name the D 43 and D 48 of r 28",
    "question_th": "ตั้งชื่อ D 43 และ D 48 ของ 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_en": "Name the D 47 which has D 42 of d 22",
    "question_th": "ตั้งชื่อ D 47 ซึ่งมี D 42 จาก 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_en": "Which region had a label of Central Station?",
    "question_th": "ภูมิภาคใดมีป้ายสถานีกลาง",
    "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_en": "What NHL team has a centre and pick number of 105?",
    "question_th": "ทีม NHL ใดมีศูนย์กลางและเลือกหมายเลข 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_en": "What Pick # does the St. Louis Blues have?",
    "question_th": "St. Louis Blues มี Pick # อะไร?",
    "context": "CREATE TABLE table_name_13 (pick__number VARCHAR, nhl_team VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_18 WHERE pick__number = \"108\"",
    "question_en": "What is the position of the player with a Pick # of 108?",
    "question_th": "ตำแหน่งผู้เล่นที่มี Pick # จาก 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_en": "What position in the Vancouver Canucks has a Pick # of 101?",
    "question_th": "ตำแหน่งใดใน Vancouver Canucks ที่ได้รับเลือก # 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_en": "What was the team's record at the game attended by 30,452?",
    "question_th": "สถิติของทีมในเกมนี้มีผู้เข้าร่วม 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_en": "What was the attendance at the game that had a loss of Crabtree (0-1)?",
    "question_th": "การมีส่วนร่วมในเกมที่แพ้แครบทรี (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_en": "What races were Chi-Chi Rodriguez the runner-up in?",
    "question_th": "Chi-Chi Rodriguez เป็นรองแชมป์ในการแข่งขันรายการใดบ้าง?",
    "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_en": "What was the margin of victory for Isao Aoki when he was a runner-up?",
    "question_th": "อะไรคือชัยชนะของอิซาโอะ อาโอกิ เมื่อเขาได้รองแชมป์?",
    "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_en": "What was the winning score in the mazda senior tournament players championship?",
    "question_th": "คะแนนชนะในการแข่งขันชิงแชมป์ผู้เล่นอาวุโสของ Mazda คืออะไร?",
    "context": "CREATE TABLE table_name_5 (winning_score VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_16 WHERE winning_score = –27(65 - 68 - 64 - 64 = 261)",
    "question_en": "Which tournament ended with a winning score of –27 (65-68-64-64=261)?",
    "question_th": "การแข่งขันใดจบลงด้วยคะแนนชนะ –27 (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_en": "Who was the runner(s)-up for the Feb 18, 1996 tournament?",
    "question_th": "ใครคือรองชนะเลิศของทัวร์นาเมนต์วันที่ 18 กุมภาพันธ์ 1996?",
    "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_en": "What is Oriol Servia's average Grid on races with more than 43 laps?",
    "question_th": "ตารางเฉลี่ยของ Oriol Servia ในการแข่งขันที่มีรอบมากกว่า 43 รอบเป็นเท่าใด",
    "context": "CREATE TABLE table_name_10 (grid INTEGER, laps VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT laps FROM table_name_96 WHERE points = 19",
    "question_en": "How many laps were there in the race that netted the winner 19 points?",
    "question_th": "มีกี่รอบในการแข่งขันที่ได้คะแนนผู้ชนะ 19 แต้ม?",
    "context": "CREATE TABLE table_name_96 (laps VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_96 WHERE opponent = \"necaxa\"",
    "question_en": "In what Season is Necaxa an Opponent?",
    "question_th": "Necaxa เป็นฝ่ายตรงข้ามในฤดูกาลใด",
    "context": "CREATE TABLE table_name_96 (season VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_97 WHERE opponent = \"victoria\"",
    "question_en": "In what season is Victoria the Opponent?",
    "question_th": "วิกตอเรียเป็นฝ่ายตรงข้ามในฤดูกาลใด",
    "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_en": "Name the authority when the decile is 6 for pongaroa school",
    "question_th": "ตั้งชื่อผู้มีอำนาจเมื่อเดซิลเป็น 6 สำหรับโรงเรียนปองการัว",
    "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_en": "Name the years for dannevirke south school",
    "question_th": "ตั้งชื่อปีของโรงเรียน Dannevirke South",
    "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_en": "Name the least decile for state authority and area of eketahuna with roll more than 44",
    "question_th": "ตั้งชื่อเดซิลีน้อยที่สุดสำหรับหน่วยงานของรัฐและเขตเอเคตาหุนะที่มีม้วนมากกว่า 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_en": "Tell me the name with area of eketahuna",
    "question_th": "บอกชื่อกับเขตเอเกตะหุนะด้วย",
    "context": "CREATE TABLE table_name_16 (name VARCHAR, area VARCHAR)"
  },
  {
    "answer": "SELECT completed FROM table_name_28 WHERE launched = \"12 april 1934\"",
    "question_en": "Name what was completed on 12 april 1934",
    "question_th": "ตั้งชื่อสิ่งที่สร้างเสร็จเมื่อวันที่ 12 เมษายน พ.ศ. 2477",
    "context": "CREATE TABLE table_name_28 (completed VARCHAR, launched VARCHAR)"
  },
  {
    "answer": "SELECT launched FROM table_name_91 WHERE completed = \"13 september 1934\"",
    "question_en": "Name the launched for 13 september 1934 completion",
    "question_th": "ตั้งชื่อให้เมื่อ 13 กันยายน พ.ศ. 2477 แล้วเสร็จ",
    "context": "CREATE TABLE table_name_91 (launched VARCHAR, completed VARCHAR)"
  },
  {
    "answer": "SELECT ship FROM table_name_22 WHERE launched = \"29 may 1934\"",
    "question_en": "Name the ship launched 29 may 1934",
    "question_th": "ตั้งชื่อเรือที่ออกเมื่อ 29 พฤษภาคม พ.ศ. 2477",
    "context": "CREATE TABLE table_name_22 (ship VARCHAR, launched VARCHAR)"
  },
  {
    "answer": "SELECT laid_down FROM table_name_39 WHERE launched = \"16 february 1934\"",
    "question_en": "Name the laid down for launched being 16 february 1934",
    "question_th": "ตั้งชื่อวางกำหนดเปิดตัวเมื่อ 16 กุมภาพันธ์ พ.ศ. 2477",
    "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_en": "Name the pennant number for completion of 30 october 1934 and launched 29 march 1934",
    "question_th": "ตั้งชื่อธงให้แล้วเสร็จ 30 ตุลาคม 2477 และเปิดตัว 29 มีนาคม 2477",
    "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_en": "Name the laid down for completed of 22 october 1934",
    "question_th": "ตั้งชื่อวางผังเสร็จเมื่อ 22 ตุลาคม 2477",
    "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_en": "what is the lowest votes of the candidate ranked 5th and riding in victoria?",
    "question_th": "คะแนนโหวตต่ำสุดของผู้สมัครอันดับที่ 5 และขี่ในวิกตอเรียคืออะไร?",
    "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_en": "Which home captian has aus by 295 runs as the result?",
    "question_th": "กัปตันทีมคนไหนมี aus คูณ 295 รันด้วยผลลัพธ์?",
    "context": "CREATE TABLE table_name_21 (home_captain VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_11 WHERE venue = \"adelaide oval\"",
    "question_en": "Which result has adelaide oval as the venue?",
    "question_th": "ผลการแข่งขันใดที่มีแอดิเลดวงรีเป็นสถานที่จัดงาน?",
    "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_en": "Born in 1982, this guard has what listed as a height?",
    "question_th": "ผู้พิทักษ์คนนี้เกิดในปี 1982 ส่วนสูงระบุไว้หรือเปล่า?",
    "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_en": "Which Points Classification Navy Blue Jersey that has a  Jersey of Graeme Brown",
    "question_th": "ซึ่งจำแนกคะแนนเสื้อเจอร์ซีย์สีน้ำเงินที่มีเสื้อของ 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_en": "What is the Intermediate Sprints Classification Red Jersey that has a Green Jersey of Murilo Antonio Fischer, and  Jose Joaquin Rojas Gil?",
    "question_th": "Intermediate Sprints Classification Red Jersey คืออะไรซึ่งมีเสื้อสีเขียวของ Murilo Antonio Fischer และ 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_en": "What is General Classification Yellow Jersey that has a  Murilo Antonio Fischer, and  Lampre-Fondital?",
    "question_th": "เสื้อเหลืองประเภททั่วไปที่มี Murilo Antonio Fischer และ 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_en": "What is the Points Classification Navy Blue Jersey that has  Yoann le Boulanger, and  Gerolsteiner?",
    "question_th": "เสื้อเจอร์ซีย์น้ำเงินจำแนกคะแนนที่มี Yoann le Boulanger และ 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_en": "What was the attendance on April 7?",
    "question_th": "ผู้เข้าร่วมในวันที่ 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_en": "Who won the Northumberland Senior Benevolent Bowl, when the Northumberland Minor Cup was won by Whitley Bay 'a'?",
    "question_th": "ใครได้รับรางวัล Northumberland Senior Benevolent Bowl เมื่อ Whitley Bay 'a' ได้รับรางวัล Northumberland Minor Cup?",
    "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_en": "What was the film nomination in the Netherlands?",
    "question_th": "ภาพยนตร์ที่ได้รับการเสนอชื่อเข้าชิงในประเทศเนเธอร์แลนด์คืออะไร?",
    "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_en": "Who directed Turks Fruit?",
    "question_th": "ใครเป็นผู้กำกับ Turks Fruit?",
    "context": "CREATE TABLE table_name_6 (director VARCHAR, original_title VARCHAR)"
  },
  {
    "answer": "SELECT director FROM table_name_65 WHERE country = \"poland\"",
    "question_en": "What director is from Poland?",
    "question_th": "ผู้กำกับคนไหนมาจากโปแลนด์?",
    "context": "CREATE TABLE table_name_65 (director VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT director FROM table_name_60 WHERE language = \"romanian\"",
    "question_en": "Who directed the Romanian film?",
    "question_th": "ใครเป็นผู้กำกับภาพยนตร์โรมาเนีย?",
    "context": "CREATE TABLE table_name_60 (director VARCHAR, language VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_18 WHERE money___$__ > 400",
    "question_en": "What placement gets more than $400?",
    "question_th": "ตำแหน่งใดได้รับมากกว่า $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_en": "What's the average payout of toney penna with a +2 par?",
    "question_th": "การจ่ายเงินเฉลี่ยของ toney penna ที่มีพาร์ +2 เป็นเท่าใด",
    "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_en": "What is the attendance number of the game on April 16?",
    "question_th": "ผู้เข้าชมเกมวันที่ 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_en": "What was the average pick of northwestern state college under round 3?",
    "question_th": "วิทยาลัยรัฐนอร์ธเวสเทิร์นที่เลือกโดยเฉลี่ยในรอบที่ 3 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_81 (pick INTEGER, round VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_32 WHERE college = \"rutgers\"",
    "question_en": "Rutgers college holds what position?",
    "question_th": "วิทยาลัยรัตเกอร์สดำรงตำแหน่งอะไร",
    "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_en": "In what round smaller than 10, was the center les studdard picked in?",
    "question_th": "เซ็นเตอร์ เลส สตั๊ดดาร์ด ถูกเลือกในรอบใดที่น้อยกว่า 10?",
    "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_en": "Which college had rounds smaller than 2?",
    "question_th": "วิทยาลัยใดมีรอบน้อยกว่า 2?",
    "context": "CREATE TABLE table_name_80 (college VARCHAR, round INTEGER)"
  },
  {
    "answer": "SELECT record FROM table_name_8 WHERE score = \"7 - 2\"",
    "question_en": "What record was reached with a score of 7 - 2?",
    "question_th": "ถึงสถิติไหนด้วยสกอร์ 7 - 2?",
    "context": "CREATE TABLE table_name_8 (record VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_name_78 WHERE rank = \"5\"",
    "question_en": "What is the name of the club with a rank of 5?",
    "question_th": "สโมสรอันดับที่ 5 ชื่ออะไร",
    "context": "CREATE TABLE table_name_78 (club VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_25 WHERE games = \"276\"",
    "question_en": "What is the rank that shows 276 games?",
    "question_th": "อันดับที่แสดง 276 เกมคืออะไร?",
    "context": "CREATE TABLE table_name_25 (rank VARCHAR, games VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_64 WHERE games = \"426\"",
    "question_en": "What is the rank that shows 426 games?",
    "question_th": "อันดับที่แสดง 426 เกมคืออะไร?",
    "context": "CREATE TABLE table_name_64 (rank VARCHAR, games VARCHAR)"
  },
  {
    "answer": "SELECT games FROM table_name_39 WHERE player = \"roger merrett\"",
    "question_en": "What is the number of games for Roger Merrett?",
    "question_th": "Roger Merrett ลงเล่นกี่เกม?",
    "context": "CREATE TABLE table_name_39 (games VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT engine FROM table_name_98 WHERE finish = \"27\"",
    "question_en": "What Engine had a Finish of 27?",
    "question_th": "เครื่องยนต์ใดที่มีเส้นชัยอยู่ที่ 27?",
    "context": "CREATE TABLE table_name_98 (engine VARCHAR, finish VARCHAR)"
  },
  {
    "answer": "SELECT engine FROM table_name_72 WHERE chassis = \"march 85c\"",
    "question_en": "What Engine had a chassis of March 85c?",
    "question_th": "เครื่องยนต์ใดมีแชสซีของ March 85c?",
    "context": "CREATE TABLE table_name_72 (engine VARCHAR, chassis VARCHAR)"
  },
  {
    "answer": "SELECT engine FROM table_name_68 WHERE finish = \"21\"",
    "question_en": "What Engine has a Finish of 21?",
    "question_th": "เครื่องยนต์ใดมีเส้นชัยเท่ากับ 21?",
    "context": "CREATE TABLE table_name_68 (engine VARCHAR, finish VARCHAR)"
  },
  {
    "answer": "SELECT platform FROM table_name_84 WHERE publisher = \"mindark\"",
    "question_en": "On what platform does Mindark publish?",
    "question_th": "Mindark เผยแพร่บนแพลตฟอร์มใด",
    "context": "CREATE TABLE table_name_84 (platform VARCHAR, publisher VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_14 WHERE developer = \"avatar reality\"",
    "question_en": "What year did Avatar Reality release a game?",
    "question_th": "Avatar Reality เปิดตัวเกมในปีใด?",
    "context": "CREATE TABLE table_name_14 (year VARCHAR, developer VARCHAR)"
  },
  {
    "answer": "SELECT publisher FROM table_name_35 WHERE title = \"crysis warhead\"",
    "question_en": "What publisher created Crysis Warhead?",
    "question_th": "ผู้จัดพิมพ์รายใดสร้าง Crysis Warhead",
    "context": "CREATE TABLE table_name_35 (publisher VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT platform FROM table_name_37 WHERE publisher = \"mindark\"",
    "question_en": "For what platform does Mindark publish?",
    "question_th": "Mindark เผยแพร่บนแพลตฟอร์มใด",
    "context": "CREATE TABLE table_name_37 (platform VARCHAR, publisher VARCHAR)"
  },
  {
    "answer": "SELECT publisher FROM table_name_14 WHERE developer = \"paleo entertainment\"",
    "question_en": "What publisher does Paleo Entertainment develop for?",
    "question_th": "Paleo Entertainment พัฒนาให้ผู้จัดพิมพ์รายใด",
    "context": "CREATE TABLE table_name_14 (publisher VARCHAR, developer VARCHAR)"
  },
  {
    "answer": "SELECT developer FROM table_name_71 WHERE title = \"vigilance\"",
    "question_en": "Who was the developer for Vigilance?",
    "question_th": "ใครเป็นผู้พัฒนา 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_en": "Which player's home town is Swift Current, AB?",
    "question_th": "บ้านเกิดของผู้เล่นคนไหนคือ 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_en": "Which position does number 23 play?",
    "question_th": "หมายเลข 23 เล่นตำแหน่งไหน?",
    "context": "CREATE TABLE table_name_13 (position VARCHAR, number VARCHAR)"
  },
  {
    "answer": "SELECT number FROM table_name_22 WHERE position = \"skaters\"",
    "question_en": "Which number plays the skaters position?",
    "question_th": "ตำแหน่งนักสเก็ตหมายเลขใด?",
    "context": "CREATE TABLE table_name_22 (number VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT weight FROM table_name_31 WHERE number = \"26\"",
    "question_en": "How much does number 26 weigh?",
    "question_th": "เบอร์ 26 หนักเท่าไหร่?",
    "context": "CREATE TABLE table_name_31 (weight VARCHAR, number VARCHAR)"
  },
  {
    "answer": "SELECT family FROM table_name_40 WHERE name = \"humpback whale\"",
    "question_en": "Which family has a Name of humpback whale?",
    "question_th": "ตระกูลใดมีชื่อวาฬหลังค่อม?",
    "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épède, 1804\"",
    "question_en": "Which name has a Red List larger than 0, and a Species/Authority of balaenoptera acutorostrata lacépède, 1804?",
    "question_th": "ชื่อใดมีบัญชีแดงมากกว่า 0 และชนิด/อำนาจของ balaenoptera acutorostrata lacépède, 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_en": "Which Species/Authority has a Name of true's beaked whale?",
    "question_th": "สายพันธุ์/หน่วยงานใดมีชื่อวาฬจงอยของทรู?",
    "context": "CREATE TABLE table_name_44 (species_authority VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT engine_s_ FROM table_name_41 WHERE points = \"2\"",
    "question_en": "What engine has 2 points?",
    "question_th": "เครื่องยนต์อะไรมี 2 จุด?",
    "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_en": "What tyres are associated with a year after 1974 and 5 points?",
    "question_th": "ยางชนิดใดที่เกี่ยวข้องกับหนึ่งปีหลังจากปี 1974 และ 5 คะแนน?",
    "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_en": "What is the engine(s) on the car before 1978 with ensign n177 chassis?",
    "question_th": "รถยนต์ก่อนปี 1978 ที่มีแชสซี N177 มีเครื่องยนต์อะไร",
    "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_en": "What tyres have 1 point and an ensign n177 chassis?",
    "question_th": "ยางอะไรมี 1 จุดและแชสซี n177?",
    "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_en": "Before 1987, what is the Entrant with bmw straight-4 (t/c) as Engine and a great than 2 Pts?",
    "question_th": "ก่อนปี 1987 ผู้เข้าแข่งขันที่มี bmw straight-4 (t/c) เป็นเครื่องยนต์คืออะไรและมีกำลังมากกว่า 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_en": "What did Ku Hyo-Jin rank?",
    "question_th": "คูฮโยจินอยู่อันดับไหน?",
    "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_en": "What was the rank of the person who swam in Lane 7 with a time of 2:25.86?",
    "question_th": "คนที่ว่ายน้ำในเลน 7 ด้วยเวลา 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_en": "Which Laid down has a Ship of fearless?",
    "question_th": "เรือลำใดที่ Laid down มีเรือที่ไม่เกรงกลัวใคร?",
    "context": "CREATE TABLE table_name_57 (laid_down VARCHAR, ship VARCHAR)"
  },
  {
    "answer": "SELECT ship FROM table_name_43 WHERE pennant_number = \"h.69\"",
    "question_en": "Which ship has a Pennant number of h.69?",
    "question_th": "เรือลำใดมีชายธงเลข 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_en": "Which Launched has Commissioned 6 june 1935?",
    "question_th": "ซึ่งเปิดตัวได้รับหน้าที่ 6 มิถุนายน พ.ศ. 2478?",
    "context": "CREATE TABLE table_name_36 (launched VARCHAR, commissioned VARCHAR)"
  },
  {
    "answer": "SELECT launched FROM table_name_64 WHERE ship = \"fearless\"",
    "question_en": "What launch has a Ship of fearless?",
    "question_th": "การเปิดตัวอะไรมีเรือแห่งความไม่เกรงกลัว?",
    "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_en": "Which commission was launched 28 june 1934, and has a Pennant number of h.78?",
    "question_th": "คณะกรรมาธิการใดที่เปิดตัวเมื่อวันที่ 28 มิถุนายน พ.ศ. 2477 และมีจำนวนชายธงเป็น 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_en": "Which year has a Round of 17?",
    "question_th": "ปีไหนมีรอบ 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_en": "Which opponent has a Club of essendon, and a Score of 13.4.82?",
    "question_th": "คู่ต่อสู้คนใดมี Club of Essendon และคะแนน 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_en": "Which opponent has a Score of 15.4.94?",
    "question_th": "คู่ต่อสู้คนใดมีคะแนน 15.4.94?",
    "context": "CREATE TABLE table_name_89 (opponent VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_34 WHERE round = \"12\"",
    "question_en": "Which opponent has a Round of 12?",
    "question_th": "คู่ต่อสู้คนใดมีรอบ 12 ทีม?",
    "context": "CREATE TABLE table_name_34 (opponent VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT quarter FROM table_name_7 WHERE round = \"17\"",
    "question_en": "Which Quarter has a Round of 17?",
    "question_th": "ควอเตอร์ใดมีรอบ 17 ทีม?",
    "context": "CREATE TABLE table_name_7 (quarter VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT whenbuilt FROM table_name_32 WHERE name = \"moray firth\"",
    "question_en": "When was moray firth built?",
    "question_th": "มอเรย์ เฟิร์ธ ถูกสร้างขึ้นเมื่อใด",
    "context": "CREATE TABLE table_name_32 (whenbuilt VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT withdrawn FROM table_name_93 WHERE name = \"charles dickens\"",
    "question_en": "Name the withdrawn for charles dickens",
    "question_th": "ตั้งชื่อผู้ถอนตัวสำหรับชาร์ลส์ ดิคเกนส์",
    "context": "CREATE TABLE table_name_93 (withdrawn VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_24 WHERE date = \"july 27\"",
    "question_en": "Which opponent has a Date of july 27?",
    "question_th": "คู่ต่อสู้คนไหนมีวันที่ 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_en": "What Venue held the World Race Walking Cup tourney before 2008?",
    "question_th": "สถานที่ใดจัดการแข่งขัน World Race Walking Cup ก่อนปี 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_en": "What tournement was held in Helsinki, Finland in 2005?",
    "question_th": "การแข่งขันใดจัดขึ้นที่เฮลซิงกิ ประเทศฟินแลนด์ ในปี พ.ศ. 2548",
    "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_en": "What Venue held the Olympic games in 2012?",
    "question_th": "สถานที่ใดจัดการแข่งขันกีฬาโอลิมปิกในปี 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_en": "What's the website for the yamagata international documentary film festival?",
    "question_th": "เว็บไซต์สำหรับเทศกาลภาพยนตร์สารคดีนานาชาติยามากาตะคือที่ใด",
    "context": "CREATE TABLE table_name_27 (website VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_51 WHERE qual = \"135.328\"",
    "question_en": "How did Johnnie Parsons finish when his qualifying time was 135.328?",
    "question_th": "Johnnie Parsons จบได้อย่างไรเมื่อเวลารอบคัดเลือกของเขาคือ 135.328?",
    "context": "CREATE TABLE table_name_51 (rank VARCHAR, qual VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_67 WHERE laps > 200",
    "question_en": "What was Johnnie Parsons rank when he completed over 200 laps?",
    "question_th": "Johnnie Parsons อยู่ในอันดับที่เท่าไรเมื่อเขาทำเกิน 200 รอบ?",
    "context": "CREATE TABLE table_name_67 (rank VARCHAR, laps INTEGER)"
  },
  {
    "answer": "SELECT podiums FROM table_name_62 WHERE wins = \"2\" AND season = 2008",
    "question_en": "What is the value for Podiums when the value for Wins is 2, and when the Season is 2008?",
    "question_th": "มูลค่าของโพเดียมจะเป็นเท่าใดเมื่อมูลค่าของชัยชนะคือ 2 และเมื่อฤดูกาลคือปี 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_en": "What is the value for Position, when the Series is the Macau Grand Prix, and when the Season is before 2007?",
    "question_th": "ค่าของตำแหน่งคือเท่าใด เมื่อซีรีส์คือ Macau Grand Prix และเมื่อใดคือฤดูกาลก่อนปี 2007",
    "context": "CREATE TABLE table_name_98 (position VARCHAR, series VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT wins FROM table_name_67 WHERE position = \"7th\"",
    "question_en": "What is the value for Wins when the Position is 7th?",
    "question_th": "มูลค่าของการชนะเมื่อตำแหน่งคืออันดับที่ 7 คืออะไร?",
    "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_en": "What is the Series, when the Season is after 2008, when the value for Podiums is 3, and when the Position is 8th?",
    "question_th": "ซีรีส์นี้คืออะไร เมื่อฤดูกาลคือหลังปี 2008 เมื่อมูลค่าโพเดียมคือ 3 และเมื่อตำแหน่งคืออันดับที่ 8",
    "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_en": "What is the value for Podiums, when the Season is after 2008, and when the Series is GP2 Asia Series?",
    "question_th": "มูลค่าของโพเดียมจะเป็นเท่าใด เมื่อฤดูกาลคือหลังปี 2008 และเมื่อใดที่ซีรีส์คือ 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_en": "What is the value for Wins, when the Series is GP2 Series, and when the Season is before 2009?",
    "question_th": "มูลค่าของการชนะคือเท่าใด เมื่อซีรีส์เป็นซีรีส์ GP2 และเมื่อซีซันอยู่ก่อนปี 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_en": "What was the loss of the game against the Indians when the record was 15-15?",
    "question_th": "อะไรคือความพ่ายแพ้ของเกมกับอินเดียนแดงเมื่อสถิติอยู่ที่ 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_en": "What is the total attendance for games when the record was 23-23?",
    "question_th": "จำนวนผู้เข้าร่วมเกมทั้งหมดเมื่อสถิติอยู่ที่ 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_en": "What is the total number of points for the conference division, a league position of 9th, and a lost result less than 13?",
    "question_th": "จำนวนคะแนนรวมของดิวิชั่นการประชุม อันดับลีกที่ 9 และผลการแข่งขันที่แพ้น้อยกว่า 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_en": "What is the drawn result with a league position of 15th and a lost result that is more than 17?",
    "question_th": "ผลการจับฉลากด้วยอันดับลีกที่ 15 และผลแพ้ที่มากกว่า 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_en": "Name the competition of 2010 of dnp",
    "question_th": "ตั้งชื่อการแข่งขันประจำปี 2010 ของ dnp",
    "context": "CREATE TABLE table_name_6 (competition VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_73 WHERE visitor = \"columbus\"",
    "question_en": "Name the score for columbus visitor",
    "question_th": "ตั้งชื่อคะแนนสำหรับผู้เยี่ยมชมโคลัมบัส",
    "context": "CREATE TABLE table_name_73 (score VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT MIN(attendance) FROM table_name_98 WHERE visitor = \"edmonton\"",
    "question_en": "Name the least attendance with visitor of edmonton",
    "question_th": "ตั้งชื่อผู้เข้าร่วมน้อยที่สุดกับผู้มาเยือนเอดมันตัน",
    "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_en": "What is the lowest numbered lane of Sue Rolph with a rank under 5?",
    "question_th": "เลนหมายเลขต่ำสุดของ Sue Rolph ที่มีอันดับต่ำกว่า 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_en": "What is the lane number of the swimmer with a time of 55.69?",
    "question_th": "นักว่ายน้ำที่มีเวลา 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_en": "What is the lowest number of league cups with 4 championships?",
    "question_th": "ลีกคัพกับ 4 แชมป์น้อยที่สุดคือเท่าไหร่?",
    "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_en": "What is the highest value for FA cups, that has a total of 0 4, with less than 4 championships?",
    "question_th": "เอฟเอ คัพ ที่มีมูลค่ารวมสูงสุด 0 4 แชมป์ น้อยกว่า 4 สมัย มีมูลค่าสูงสุดเท่าใด?",
    "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_en": "How many FA cups were there without any league cups, but a total of 0 2?",
    "question_th": "มีเอฟเอคัพกี่ถ้วยที่ไม่มีลีกคัพ แต่รวมเป็น 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_en": "Who is Pick #41?",
    "question_th": "เลือก #41 คือใคร?",
    "context": "CREATE TABLE table_name_99 (player VARCHAR, pick__number VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_98 WHERE pick__number = \"40\"",
    "question_en": "Which player was Pick #40?",
    "question_th": "ผู้เล่นคนไหนคือ 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_en": "Which team picked Dave Bonter?",
    "question_th": "ทีมไหนเลือก 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_en": "Which team picked the player from the Toronto Marlboros (OHA) as Pick #32?",
    "question_th": "ทีมใดเลือกผู้เล่นจาก Toronto Marlboros (OHA) เป็น 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_en": "Name the most games for eredivisie when jurrie koolhof is manager when goals are less than 10",
    "question_th": "ตั้งชื่อเกมเอเรดิวิซี่มากที่สุดเมื่อ เจอร์รี คูลฮอฟ เป็นผู้จัดการทีมเมื่อประตูน้อยกว่า 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_en": "Name the least rank when games are more than 34 and the season is 2009-10",
    "question_th": "ตั้งชื่ออันดับน้อยที่สุดเมื่อเกมมีมากกว่า 34 เกมและฤดูกาล 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_en": "Name the least point for mv agusta and rank of 13th for wins less than 0",
    "question_th": "ตั้งชื่อแต้มน้อยที่สุดสำหรับ MV Agusta และอันดับที่ 13 หากชนะน้อยกว่า 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_en": "Name the rank for wins of 0 and points of 2",
    "question_th": "ตั้งชื่ออันดับสำหรับการชนะ 0 และคะแนน 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_en": "Name the total number of points with year less than 1955 and rank of 5th with wins less than 0",
    "question_th": "ระบุจำนวนคะแนนรวมปีน้อยกว่า พ.ศ. 2498 และอันดับที่ 5 ชนะน้อยกว่า 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_en": "What is the total decile in the area of Normanby with a roller smaller than 157?",
    "question_th": "เดไซล์รวมในพื้นที่นอร์มันบีที่มีลูกกลิ้งเล็กกว่า 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_en": "What Authority has a decile greater than 5, with a roll of 170?",
    "question_th": "ผู้มีอำนาจคนใดมีเดซิลมากกว่า 5 โดยมีทอย 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_en": "What is the average goals against average for those playing more than 78 games?",
    "question_th": "ประตูเฉลี่ยเทียบกับค่าเฉลี่ยสำหรับผู้ที่เล่นมากกว่า 78 เกมเป็นเท่าใด?",
    "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_en": "Who played over 46 games and allowed less than 195 goals?",
    "question_th": "ใครเล่นเกิน 46 เกมและเสียประตูน้อยกว่า 195 ประตูบ้าง?",
    "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_en": "Who played 44 games who averaged over 2.07 goals against?",
    "question_th": "ใครที่เล่น 44 เกมโดยมีค่าเฉลี่ยมากกว่า 2.07 ประตูต่อ?",
    "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_en": "Name how ashtagrama lyers say it for engal veetil, engal agathil",
    "question_th": "ตั้งชื่อว่า ashtagrama lyers พูดว่าอย่างไรสำหรับ 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_en": "Name the english meaning for engey poringo",
    "question_th": "ตั้งชื่อความหมายภาษาอังกฤษของ 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_en": "Name how other lyers say enga ullale",
    "question_th": "ตั้งชื่อว่าเนื้อเพลงอื่นๆ พูดว่า 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_en": "Name the pure tamil for enga athilae",
    "question_th": "ตั้งชื่อภาษาทมิฬบริสุทธิ์สำหรับ 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_en": "What company built the ship named excellent in 1998?",
    "question_th": "บริษัทใดที่สร้างเรือลำนี้ที่มีชื่อว่ายอดเยี่ยมในปี 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_en": "What's the total built by the United Kingdom and holds 1,300 passengers?",
    "question_th": "สหราชอาณาจักรสร้างทั้งหมดจำนวนเท่าใดและจุผู้โดยสารได้ 1,300 คน",
    "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_en": "Name the visiting team for stadium of ralph wilson stadium",
    "question_th": "ตั้งชื่อทีมเยือนสนาม ราล์ฟ วิลสัน สเตเดี้ยม",
    "context": "CREATE TABLE table_name_67 (visiting_team VARCHAR, stadium VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_72 WHERE visiting_team = \"denver broncos\"",
    "question_en": "Name the date for visiting team of denver broncos",
    "question_th": "แจ้งวันที่ทีมเยือนเดนเวอร์ บรองโกส์",
    "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_en": "Name the stadium with host team of san diego chargers and final score of 23-45",
    "question_th": "ตั้งชื่อสนามด้วยทีมเจ้าบ้านชาร์จเจอร์ซานดิเอโกและสกอร์สุดท้าย 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_en": "Name the stadium with final score of 20-10",
    "question_th": "ตั้งชื่อสนามด้วยสกอร์สุดท้าย 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_en": "Name the date with visiting team of philadelphia eagles",
    "question_th": "ตั้งชื่อวันที่กับทีมเยือนของนกอินทรีฟิลาเดลเฟีย",
    "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_en": "Name the host team for january 1 (2006)",
    "question_th": "ตั้งชื่อทีมเจ้าบ้าน 1 มกราคม (2549)",
    "context": "CREATE TABLE table_name_93 (host_team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_36 WHERE school = \"delmar\"",
    "question_en": "What team belongs to Delmar?",
    "question_th": "ทีมใดเป็นของเดลมาร์?",
    "context": "CREATE TABLE table_name_36 (team VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT division_record FROM table_name_63 WHERE school = \"laurel\"",
    "question_en": "What was Laurel's division record?",
    "question_th": "บันทึกการแบ่งส่วนของลอเรลคืออะไร?",
    "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_en": "What is the rank of airport with a (IATA/ICAO) of bcm/lrbc code and an amount of 240,735 in 2010?",
    "question_th": "สนามบินที่มีรหัส (IATA/ICAO) เป็นรหัส bcm/lrbc มีจำนวน 240,735 แห่งในปี 2553 อยู่ที่เท่าไร",
    "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_en": "What is the average in 2010 of the team with a code of (IATA/ICAO) or cra/lrcv?",
    "question_th": "ค่าเฉลี่ยในปี 2010 ของทีมที่มีรหัส (IATA/ICAO) หรือ 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_en": "Which state has 67% Republicans and a ratio of 24/12 of Republicans to Democrats?",
    "question_th": "รัฐใดมีพรรครีพับลิกัน 67% และมีอัตราส่วน 24/12 ของพรรครีพับลิกันต่อพรรคเดโมแครต",
    "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_en": "What state is 25% Democrats has a ratio of 6/2 of Republicans to Democrats?",
    "question_th": "รัฐใดที่พรรคเดโมแครต 25% มีอัตราส่วน 6/2 ของพรรครีพับลิกันต่อพรรคเดโมแครต?",
    "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_en": "What is the ratio of Republicans to Democrats in South Carolina?",
    "question_th": "อัตราส่วนของพรรครีพับลิกันต่อพรรคเดโมแครตในเซาท์แคโรไลนาคือเท่าไร?",
    "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_en": "What is the Republican seat plurality of the state with a ratio of 12/4 Republicans to Democrats?",
    "question_th": "จำนวนที่นั่งส่วนใหญ่ของรัฐของพรรครีพับลิกันในอัตราส่วน 12/4 ของพรรครีพับลิกันต่อพรรคเดโมแครตคือเท่าใด",
    "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_en": "What is the Republican seat plurality of North Carolina?",
    "question_th": "จำนวนที่นั่งส่วนใหญ่ของพรรครีพับลิกันในนอร์ธแคโรไลนาคืออะไร?",
    "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_en": "What is the highest score in round 4 and total of 284 in a year more recent than 1998?",
    "question_th": "คะแนนสูงสุดในรอบที่ 4 และคะแนนรวม 284 ในหนึ่งปีล่าสุดคืออะไรมากกว่าปี 1998?",
    "context": "CREATE TABLE table_name_56 (round_4 INTEGER, score VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT MAX(money__) AS ￥_ FROM table_name_65 WHERE round_2 = 65 AND round_4 < 67",
    "question_en": "What is the maximum ￥ for a round 2 score of 65 and a round 4 score smaller than 67?",
    "question_th": "ค่าสูงสุด ￥ สำหรับคะแนนรอบ 2 ที่มี 65 คะแนน และคะแนนรอบ 4 ที่น้อยกว่า 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_en": "What is the earliest year when the Dunlop Phoenix Tournament was played with a round 4 score larger than 72?",
    "question_th": "ปีแรกสุดคือปีใดที่การแข่งขัน Dunlop Phoenix Tournament มีคะแนนรอบ 4 มากกว่า 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_en": "What is the lowest round with a place of t15 in a year earlier than 1998?",
    "question_th": "รอบต่ำสุดที่มีอันดับ t15 ในหนึ่งปีก่อนหน้าปี 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_en": "Where was the BRDC International Trophy with driver Emerson Fittipaldi held?",
    "question_th": "BRDC International Trophy พร้อมนักแข่ง Emerson Fittipaldi จัดขึ้นที่ไหน",
    "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_en": "What was the most recent race at Kyalami with Keke Rosberg competing?",
    "question_th": "การแข่งขันครั้งล่าสุดที่ Kyalami กับ Keke Rosberg แข่งขันกันคืออะไร?",
    "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_en": "What year was the Spanish Grand Prix where Emerson Fittipaldi drove?",
    "question_th": "Spanish Grand Prix ที่ Emerson Fittipaldi ขับรถคือปีใด",
    "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_en": "What was the outcome for Emerson Fittipaldi in the race held at Jarama?",
    "question_th": "ผลลัพธ์ของ Emerson Fittipaldi ในการแข่งขันที่ 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_en": "How many years did Wilson Fittipaldi race?",
    "question_th": "Wilson Fittipaldi แข่งกี่ปี?",
    "context": "CREATE TABLE table_name_97 (year VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_44 WHERE loss = \"cox (6–2)\"",
    "question_en": "What was the score of the game that had a loss of Cox (6–2)?",
    "question_th": "คะแนนของเกมที่แพ้ค็อกซ์ (6–2) คืออะไร?",
    "context": "CREATE TABLE table_name_44 (score VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_74 WHERE loss = \"rojas (9–8)\"",
    "question_en": "What was the date of the game that had a loss of Rojas (9–8)?",
    "question_th": "วันที่เกมที่แพ้โรฮาส (9–8) คือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_74 (date VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_25 WHERE loss = \"coates (0–2)\"",
    "question_en": "What was the score of the game that had a loss of Coates (0–2)?",
    "question_th": "เกมที่แพ้โคตส์ (0–2) มีสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_25 (score VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_12 WHERE record = \"58–47\"",
    "question_en": "What was the score of the game when the record was 58–47?",
    "question_th": "คะแนนของเกมเมื่อสถิติอยู่ที่ 58–47 คืออะไร?",
    "context": "CREATE TABLE table_name_12 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT english_spelling FROM table_name_24 WHERE hebrew_word = \"יְהוֹשָפָט\"",
    "question_en": "How do you spell the Hebrew word יְהוֹשָפָט in English?",
    "question_th": "คุณสะกดคำภาษาฮีบรู יְהוָשָפָט ในภาษาอังกฤษว่าอย่างไร?",
    "context": "CREATE TABLE table_name_24 (english_spelling VARCHAR, hebrew_word VARCHAR)"
  },
  {
    "answer": "SELECT start FROM table_name_96 WHERE year = \"1956\"",
    "question_en": "Which start has 1956 as the year?",
    "question_th": "จุดเริ่มต้นใดที่มีปี 1956 เป็นปี?",
    "context": "CREATE TABLE table_name_96 (start VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT start FROM table_name_11 WHERE finish = \"32\" AND laps > 6",
    "question_en": "Which start has 32 as the finish and laps more than 6?",
    "question_th": "สตาร์ทคนไหนมี 32 เป็นจุดจบและรอบมากกว่า 6?",
    "context": "CREATE TABLE table_name_11 (start VARCHAR, finish VARCHAR, laps VARCHAR)"
  },
  {
    "answer": "SELECT start FROM table_name_55 WHERE rank = \"4\"",
    "question_en": "Which start has 4 as a rank?",
    "question_th": "สตาร์ทไหนมี 4 เป็นอันดับ?",
    "context": "CREATE TABLE table_name_55 (start VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(laps) FROM table_name_25 WHERE start = \"1\"",
    "question_en": "How many laps have 1 as the start?",
    "question_th": "จุดเริ่มต้นมี 1 รอบกี่รอบ?",
    "context": "CREATE TABLE table_name_25 (laps VARCHAR, start VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_24 WHERE rank = \"33\" AND laps = 200",
    "question_en": "Which finish has 33 as a rank and 200 for laps?",
    "question_th": "การจบเส้นใดมี 33 เป็นอันดับและ 200 สำหรับรอบ?",
    "context": "CREATE TABLE table_name_24 (finish VARCHAR, rank VARCHAR, laps VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_95 WHERE rank = \"1\"",
    "question_en": "Which finish has 1 as the rank?",
    "question_th": "จบไหนมีอันดับ 1 ?",
    "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_en": "What are the special notes for an issue price under 24.95 with an edmonton oilers theme?",
    "question_th": "หมายเหตุพิเศษสำหรับราคาที่ออกต่ำกว่า 24.95 ในธีม edmonton oilers คืออะไร",
    "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_en": "What theme has special notes from calgary flames gift set?",
    "question_th": "ธีมไหนมีโน้ตพิเศษจากชุดของขวัญ calgary Flames บ้าง?",
    "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_en": "What year has an issue price over 15.95, and a special notes from edmonton oilers gift set?",
    "question_th": "ปีใดที่ราคาออกเกิน 15.95 และหมายเหตุพิเศษจากชุดของขวัญ edmonton oilers",
    "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_en": "What is the site when the superintendent was John Barry?",
    "question_th": "สถานที่ใดเมื่อผู้กำกับคือจอห์น แบร์รี่?",
    "context": "CREATE TABLE table_name_28 (site VARCHAR, superintendent VARCHAR)"
  },
  {
    "answer": "SELECT guns FROM table_name_36 WHERE superintendent = \"silas talbot\"",
    "question_en": "What is the number of guns when the superintendent was Silas Talbot?",
    "question_th": "จำนวนปืนเมื่อผู้กำกับคือ สิลาส ทัลบอต เป็นจำนวนเท่าใด",
    "context": "CREATE TABLE table_name_36 (guns VARCHAR, superintendent VARCHAR)"
  },
  {
    "answer": "SELECT site FROM table_name_93 WHERE superintendent = \"james sever\"",
    "question_en": "What is the site when the superintendent was James Sever?",
    "question_th": "สถานที่ใดเมื่อผู้กำกับคือ เจมส์ เซเวอร์?",
    "context": "CREATE TABLE table_name_93 (site VARCHAR, superintendent VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_25 WHERE record = \"65-53\"",
    "question_en": "Who was the loss in the game with the record of 65-53?",
    "question_th": "ใครคือผู้แพ้ในเกมด้วยสถิติ 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_en": "On August 29, What was the record playing against the Rangers?",
    "question_th": "วันที่ 29 ส.ค. มีสถิติการเล่นกับเรนเจอร์สอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_75 (record VARCHAR, opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_39 WHERE date = \"august 22\"",
    "question_en": "On August 22, how many people came to the game?",
    "question_th": "วันที่ 22 ส.ค. มีคนมาเล่นเกมกี่คน?",
    "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_en": "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?",
    "question_th": "เมื่อหมู่เกาะอินเดียตะวันตกครองตำแหน่งในตอนท้ายของซีรีส์ในฤดูกาล 1991 โดยมีอังกฤษมากกว่า 1 แล้วหมู่เกาะอินเดียตะวันตกที่เล็กที่สุดคืออะไร?",
    "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_en": "When were the Brewers 27-31?",
    "question_th": "เมื่อใดที่ 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_en": "When did the Brewers lose 2-8?",
    "question_th": "บริวเวอร์สแพ้ 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_en": "When the Brewers score was 5-7, what was the lowest attendance?",
    "question_th": "เมื่อสกอร์ของ Brewers อยู่ที่ 5-7 มีผู้เข้าร่วมน้อยที่สุดคือเท่าใด",
    "context": "CREATE TABLE table_name_13 (attendance INTEGER, score VARCHAR)"
  },
  {
    "answer": "SELECT host_team FROM table_name_24 WHERE visiting_team = \"baltimore ravens\"",
    "question_en": "Who hosted the visiting team Baltimore Ravens?",
    "question_th": "ใครเป็นเจ้าภาพทีมเยือนบัลติมอร์ เรเวนส์?",
    "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_en": "What was the final score at Heinz Field?",
    "question_th": "สกอร์สุดท้ายที่ไฮนซ์ฟิลด์เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_25 (final_score VARCHAR, stadium VARCHAR)"
  },
  {
    "answer": "SELECT stadium FROM table_name_11 WHERE host_team = \"atlanta falcons\"",
    "question_en": "What is the home stadium of the Atlanta Falcons?",
    "question_th": "สนามเหย้าของ 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_en": "What date did the New York Giants play as a visiting team?",
    "question_th": "New York Giants เล่นเป็นทีมเยือนวันที่เท่าไหร่?",
    "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_en": "What is the score of Tim Herron, who placed t1?",
    "question_th": "คะแนนของ Tim Herron ที่ได้ที่ 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_en": "What place does Fred Funk, who has a score of 69-69=138, have?",
    "question_th": "เฟรด ฟังค์ ที่มีคะแนน 69-69=138 ได้อันดับไหน?",
    "context": "CREATE TABLE table_name_71 (place VARCHAR, player VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_1 WHERE player = \"tiger woods\"",
    "question_en": "What is Tiger Woods's score?",
    "question_th": "ไทเกอร์ วูดส์ ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_1 (score VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_55 WHERE country = \"australia\"",
    "question_en": "What is the score of Australia?",
    "question_th": "ออสเตรเลียมีคะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_55 (score VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_76 WHERE rider = \"marco melandri\"",
    "question_en": "Who was Constructor for rider Marco Melandri?",
    "question_th": "ใครคือผู้สร้างให้กับนักบิด Marco Melandri?",
    "context": "CREATE TABLE table_name_76 (constructor VARCHAR, rider VARCHAR)"
  },
  {
    "answer": "SELECT motorcycle FROM table_name_23 WHERE rider = \"anthony west\"",
    "question_en": "Anthony West ride which Motorcyle?",
    "question_th": "Anthony West ขี่มอเตอร์ไซค์คันไหน?",
    "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_en": "What team draft a player from Canada that was picked #43 and plays right wing?",
    "question_th": "ทีมใดร่างผู้เล่นจากแคนาดาที่ได้รับเลือกหมายเลข 43 และเล่นปีกขวา",
    "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_en": "What nationality is Gerry Methe?",
    "question_th": "เจอร์รี่ เมธ เป็นคนสัญชาติอะไร",
    "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_en": "What which player from Canada was picked #49 and plays left wing?",
    "question_th": "ผู้เล่นคนใดจากแคนาดาที่ถูกเลือก #49 และเล่นปีกซ้าย?",
    "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_en": "What Nationality is Dave Hynes?",
    "question_th": "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_en": "The Estevan Bruins (WCHL) are affiliated with what NHL team?",
    "question_th": "Estevan Bruins (WCHL) อยู่ในเครือของทีม NHL ใด",
    "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_en": "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?",
    "question_th": "จำนวนเกมที่มีประตูต่อน้อยกว่า 14 และชนะมากกว่า 1 และเสมอน้อยกว่า 2 และประตูสำหรับ 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_en": "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",
    "question_th": "จำนวนการชนะทั้งหมดสำหรับเกมที่น้อยกว่า 7 และประตูสำหรับมากกว่า 2 และประตูต่อน้อยกว่า 6 และเสมอ 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_en": "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?",
    "question_th": "สำหรับประตูที่ทำได้น้อยกว่า 9 และผลต่างประตูเป็น 0 และเสมอน้อยกว่า 2 และชนะ 1 ประตูทั้งหมดคือเท่าใด",
    "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_en": "What tournament happened on 12 november 2006?",
    "question_th": "การแข่งขันอะไรเกิดขึ้นในวันที่ 12 พฤศจิกายน พ.ศ. 2549?",
    "context": "CREATE TABLE table_name_88 (tournament VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_82 WHERE date = \"6 june 2010\"",
    "question_en": "what was the score on 6 june 2010?",
    "question_th": "คะแนนเมื่อวันที่ 6 มิถุนายน 2553 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_82 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date_made FROM table_name_26 WHERE type = \"railmotor\"",
    "question_en": "When was the railmotor made?",
    "question_th": "มอเตอร์รางถูกสร้างขึ้นเมื่อใด?",
    "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_en": "What are the fleet number for the 4-6-4t locomotive?",
    "question_th": "รถจักร 4-6-4t มีหมายเลขกองเรืออะไร?",
    "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_en": "How many fast laps have 0 points in the World Series by Nissan?",
    "question_th": "มีกี่รอบเร็วมี 0 คะแนนใน World Series โดย 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_en": "How many fast laps are in 6 races with 30 points in the World Series by Nissan?",
    "question_th": "มีกี่รอบเร็วในการแข่งขัน 6 รอบโดยมี 30 แต้มใน World Series โดย 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_en": "Which team has the points category of test driver?",
    "question_th": "ทีมใดมีประเภทคะแนนนักขับทดสอบ?",
    "context": "CREATE TABLE table_name_74 (team VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT pos FROM table_name_37 WHERE points = \"0\" AND season = \"2007–08\"",
    "question_en": "What is the position with 0 points in Season of 2007–08?",
    "question_th": "ตำแหน่งที่มี 0 แต้มในฤดูกาล 2550–51 คืออะไร?",
    "context": "CREATE TABLE table_name_37 (pos VARCHAR, points VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT MIN(wins) FROM table_name_69 WHERE points = 6",
    "question_en": "Name the least wins for 6 points",
    "question_th": "ตั้งชื่อชนะน้อยที่สุดได้ 6 แต้ม",
    "context": "CREATE TABLE table_name_69 (wins INTEGER, points VARCHAR)"
  },
  {
    "answer": "SELECT wins FROM table_name_15 WHERE year = 1963 AND team = \"bultaco\"",
    "question_en": "Name the wins for 1963 bultaco",
    "question_th": "ตั้งชื่อชัยชนะของปี 1963 บุลตาโก",
    "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_en": "Year larger than 2008, and a Nationality of director of lebanon is what director?",
    "question_th": "ปีที่ใหญ่กว่าปี 2008 และมีสัญชาติของผู้อำนวยการเลบานอนคือผู้อำนวยการคนใด?",
    "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_en": "ilm of taukukauppiaat has how many total number of years?",
    "question_th": "อิลม์ของเทาคุคัปเปียตมีจำนวนปีทั้งหมดกี่ปี?",
    "context": "CREATE TABLE table_name_52 (year VARCHAR, film VARCHAR)"
  },
  {
    "answer": "SELECT film FROM table_name_10 WHERE award = \"troisième prix\" AND year < 2010 AND director = \"jan komasa\"",
    "question_en": "Award of troisième prix, and a Year smaller than 2010, and a Director of jan komasa is what film?",
    "question_th": "รางวัลของtroisième prix และหนึ่งปีที่เล็กกว่าปี 2010 และผู้กำกับของ jan komasa คือภาพยนตร์เรื่องใด",
    "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_en": "Film of um sol alaranjado director is what nationality?",
    "question_th": "หนังของผู้กำกับ um sol alaranjado สัญชาติอะไรครับ?",
    "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_en": "What is the position for round 5 from alabama state?",
    "question_th": "ตำแหน่งรอบ 5 จากรัฐอลาบามาคืออะไร?",
    "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_en": "what is the pick # when overall is more than 131, position is wide receiver and the round is less than 5?",
    "question_th": "เลือก # อะไรเมื่อรวมเกิน 131 ตำแหน่งตัวรับกว้างและรอบน้อยกว่า 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_en": "what is the highest round for anthony gonzalez?",
    "question_th": "แอนโธนี กอนซาเลซ รอบที่สูงที่สุดคือเท่าไร?",
    "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_en": "How many times is brannon condren with and overall more than 131 drafted?",
    "question_th": "แบรนนอนคอนเดรนมีกี่ครั้งและโดยรวมแล้วมีร่างมากกว่า 131 รายการ?",
    "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_en": "Which rider has the time of +31.426?",
    "question_th": "นักบิดคนไหนมีเวลา +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_en": "What is the grid for the rider who rides a Suzuki and has the time of +1:01.894?",
    "question_th": "ตารางสำหรับผู้ขับขี่ที่ขี่ Suzuki และมีเวลา +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_en": "What is the score for Australia with a place of 4?",
    "question_th": "คะแนนของออสเตรเลียที่ 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_en": "What is the place of To par of e when Arron Oberholser was the player ?",
    "question_th": "ตำแหน่งของ To par of e เมื่อ Arron Oberholser เป็นผู้เล่นคืออะไร?",
    "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_en": "What is the score with a place of t6 for the player k.j. choi?",
    "question_th": "คะแนนของผู้เล่น kj choi ที่ t6 คืออะไร?",
    "context": "CREATE TABLE table_name_83 (score VARCHAR, place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_3 WHERE player = \"tiger woods\"",
    "question_en": "What is the country for the player Tiger Woods?",
    "question_th": "ประเทศสำหรับผู้เล่น 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_en": "What is the name of the player with a score of 72-68-70=210?",
    "question_th": "นักเตะที่มีคะแนน 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_en": "What is the name of the player with t6 as his place and a country of United states?",
    "question_th": "ชื่อของผู้เล่นที่มี t6 เป็นที่ของเขาและประเทศสหรัฐอเมริกาคืออะไร?",
    "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_en": "What is the fineness of the 2008 chinese cuju sport Reverse?",
    "question_th": "ความวิจิตรของ cuju sport Reverse ของจีนปี 2008 คืออะไร?",
    "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_en": "What's the diameter of the 2006 equestrian Reverse?",
    "question_th": "เส้นผ่านศูนย์กลางของ Equestrian Reverse ปี 2006 คือเท่าไร?",
    "context": "CREATE TABLE table_name_49 (diameter VARCHAR, year VARCHAR, reverse VARCHAR)"
  },
  {
    "answer": "SELECT denomination FROM table_name_80 WHERE year = 2006",
    "question_en": "What denomination was produced in 2006?",
    "question_th": "พ.ศ. 2549 มีการผลิตนิกายใด?",
    "context": "CREATE TABLE table_name_80 (denomination VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT fineness FROM table_name_28 WHERE year < 2007",
    "question_en": "What was the fineness prior to 2007?",
    "question_th": "ความวิจิตรงดงามก่อนปี 2550 คืออะไร?",
    "context": "CREATE TABLE table_name_28 (fineness VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT weight FROM table_name_73 WHERE series = \"ii series\"",
    "question_en": "What does the ii Series weigh?",
    "question_th": "ซีรีส์ ii มีน้ำหนักเท่าใด",
    "context": "CREATE TABLE table_name_73 (weight VARCHAR, series VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_83 WHERE record = \"10-16\"",
    "question_en": "What loss has 10-16 as the record?",
    "question_th": "แพ้อะไร 10-16 เป็นสถิติ?",
    "context": "CREATE TABLE table_name_83 (loss VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT MIN(attendance) FROM table_name_25 WHERE record = \"3-5\"",
    "question_en": "What is the least attendance that has 3-5 as a record?",
    "question_th": "ผู้เข้าร่วมน้อยที่สุดที่มี 3-5 เป็นประวัติการณ์คืออะไร?",
    "context": "CREATE TABLE table_name_25 (attendance INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT AVG(attendance) FROM table_name_23 WHERE date = \"april 4\"",
    "question_en": "What is the average attendance for the date of april 4?",
    "question_th": "ผู้เข้าร่วมโดยเฉลี่ยในวันที่ 4 เมษายนคือเท่าใด",
    "context": "CREATE TABLE table_name_23 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_93 WHERE date = \"april 2\"",
    "question_en": "Which opponent has april 2 as the date?",
    "question_th": "ฝ่ายตรงข้ามคนไหนที่มีวันที่ 2 เมษายนเป็นวันที่?",
    "context": "CREATE TABLE table_name_93 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT remarks FROM table_name_79 WHERE airline = \"dutch antilles express\"",
    "question_en": "What is the Remark of Airline of Dutch Antilles Express?",
    "question_th": "หมายเหตุของสายการบิน 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_en": "What Category has a Year that's smaller than 2006, has Result of Nominated, and a Title of Cold Feet?",
    "question_th": "หมวดหมู่ใดที่มีปีที่เล็กกว่าปี 2549 มีผลการเสนอชื่อเข้าชิง และชื่อ 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_en": "What is recorded as the lowest Year that has the Title of Cold Feet?",
    "question_th": "ปีใดที่ถูกบันทึกว่าเป็นปีต่ำสุดที่มีชื่อว่า 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_en": "What Category has a Result of Nominated, Year of 2006, and the Title of Pierrepoint?",
    "question_th": "ผลการเสนอชื่อเข้าชิงประเภทใด ปี 2549 และตำแหน่ง 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_en": "What Title is listed for the Year of 1999?",
    "question_th": "ชื่อเรื่องใดที่ได้รับการระบุไว้สำหรับปี 2542?",
    "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_en": "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?",
    "question_th": "จำนวนปีทั้งหมดสำหรับตำแหน่งราชินี ได้รับรางวัล British Academy Film Award และมีผลการชนะเป็นเท่าใด",
    "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_en": "What was the date of the game against Northwestern?",
    "question_th": "เกมกับนอร์ธเวสเทิร์นวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_62 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_44 WHERE city = \"louisville\"",
    "question_en": "Who was the opponent when the city was Louisville?",
    "question_th": "คู่ต่อสู้เมื่อครั้งเมืองคือหลุยส์วิลล์คือใคร?",
    "context": "CREATE TABLE table_name_44 (opponent VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_55 WHERE opponent = \"minnesota\"",
    "question_en": "What was the score of the game against Minnesota?",
    "question_th": "คะแนนของเกมกับมินนิโซตาคือเท่าไร?",
    "context": "CREATE TABLE table_name_55 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_69 WHERE competition = \"friendly\" AND result = \"3–0\"",
    "question_en": "On what date was a friendly competition and a result of 3–0?",
    "question_th": "การแข่งขันกระชับมิตรนัดไหนและผลเสมอ 3–0 คือวันไหน?",
    "context": "CREATE TABLE table_name_69 (date VARCHAR, competition VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_67 WHERE score = \"1–0\" AND result = \"4–0\"",
    "question_en": "When was the score 1–0, and the result  4–0?",
    "question_th": "เมื่อใดที่สกอร์ 1–0 และผล 4–0?",
    "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–0\"",
    "question_en": "What was the result at dakar , senegal, on 3 september 2011, and with a Score of 2–0?",
    "question_th": "ผลการแข่งขันที่ดาการ์ ประเทศเซเนกัล เมื่อวันที่ 3 กันยายน 2554 เป็นอย่างไร และด้วยสกอร์ 2–0?",
    "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_en": "Which time has a Rank larger than 3, and a Name of andrey kapralov?",
    "question_th": "เวลาใดมีอันดับมากกว่า 3 และชื่อ 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_en": "Which Nationality has a Name of igor koleda?",
    "question_th": "สัญชาติใดมีชื่ออิกอร์ โคเลดา",
    "context": "CREATE TABLE table_name_42 (nationality VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT headquarters FROM table_name_26 WHERE company = \"getinge group\"",
    "question_en": "Where is the headquarters of the getinge group located?",
    "question_th": "สำนักงานใหญ่ของกลุ่ม getinge ตั้งอยู่ที่ไหน?",
    "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_en": "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?",
    "question_th": "สินทรัพย์รวมของบริษัทที่ตั้งอยู่ในสตอกโฮล์ม ประเทศสวีเดน โดยมีมูลค่าหลักทรัพย์ตามราคาตลาดน้อยกว่า 39.8 โดยมีรายได้มากกว่า 5.8 และกำไร 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_en": "Name the date for zi yan jie zheng opponent",
    "question_th": "ตั้งชื่อวันที่ของคู่ต่อสู้จือหยานเจี๋ยเจิ้ง",
    "context": "CREATE TABLE table_name_64 (date VARCHAR, opponents VARCHAR)"
  },
  {
    "answer": "SELECT partner FROM table_name_75 WHERE date = \"14 october 2007\"",
    "question_en": "Name the partner for 14 october 2007",
    "question_th": "ตั้งชื่อหุ้นส่วนวันที่ 14 ตุลาคม 2550",
    "context": "CREATE TABLE table_name_75 (partner VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT partner FROM table_name_43 WHERE opponents = \"alexandra dulgheru magdaléna rybáriková\"",
    "question_en": "Name the partner for opponents of alexandra dulgheru magdaléna rybáriková",
    "question_th": "ตั้งชื่อคู่ต่อสู้ของ alexandra dulgheru magdaléna rybáriková",
    "context": "CREATE TABLE table_name_43 (partner VARCHAR, opponents VARCHAR)"
  },
  {
    "answer": "SELECT opponents FROM table_name_45 WHERE date = \"24 july 2011\"",
    "question_en": "Name the opponents for 24 july 2011",
    "question_th": "ทายชื่อคู่ต่อสู้วันที่ 24 กรกฎาคม 2554",
    "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_en": "What is Ken Walter's lowest pick number with an overall pick number larger than 195?",
    "question_th": "หมายเลขเลือกต่ำสุดของ Ken Walter โดยหมายเลขเลือกโดยรวมมากกว่า 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_en": "What does Polyphenyl Ether of 3- and 4-ring oxythio look like?",
    "question_th": "Polyphenyl Ether ของ oxythio 3 และ 4 วงแหวนมีลักษณะอย่างไร",
    "context": "CREATE TABLE table_name_80 (appearance VARCHAR, polyphenyl_ether VARCHAR)"
  },
  {
    "answer": "SELECT distance FROM table_name_2 WHERE course = \"naples to foggia\"",
    "question_en": "How long was the course from Naples to Foggia?",
    "question_th": "ใช้เวลาเดินทางจาก เนเปิลส์ ไป ฟอจจา นานแค่ไหน?",
    "context": "CREATE TABLE table_name_2 (distance VARCHAR, course VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_82 WHERE opponent = \"milos raonic\"",
    "question_en": "Name the score with opponent of milos raonic",
    "question_th": "ทายสกอร์กับคู่ต่อสู้ของ มิลอส ราโอนิค",
    "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_en": "Name the date with a hard surface and tournament of usa f5, brownsville",
    "question_th": "ตั้งชื่อวันที่ด้วยพื้นผิวแข็งและทัวร์นาเมนต์ของ 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ón\"",
    "question_en": "Name the outcome with tournament of mexico f12, obregón",
    "question_th": "ตั้งชื่อผลลัพธ์ด้วย ทัวร์นาเมนต์ของ mexico f12, obregón",
    "context": "CREATE TABLE table_name_57 (outcome VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_24 WHERE date = \"march 25, 2012\"",
    "question_en": "Name the tournament for march 25, 2012",
    "question_th": "ตั้งชื่อการแข่งขันวันที่ 25 มีนาคม 2555",
    "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_en": "What was the final score for the August 25, 1996 match?",
    "question_th": "คะแนนสุดท้ายของการแข่งขันวันที่ 25 สิงหาคม 1996 เป็นเท่าไหร่?",
    "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_en": "What is the average year of an entrant that had fewer than 6 points and a Maserati Straight-6 engine?",
    "question_th": "ปีเฉลี่ยของผู้เข้าแข่งขันที่มีคะแนนน้อยกว่า 6 คะแนนและเครื่องยนต์ Maserati Straight-6 คือเท่าใด",
    "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_en": "What entrant had a Maserati 250F chassis and fewer than 6 points before 1957?",
    "question_th": "ผู้เข้าแข่งขันคนใดมีแชสซีของ Maserati 250F และมีคะแนนน้อยกว่า 6 คะแนนก่อนปี 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_en": "What chassis has a year of 1951?",
    "question_th": "ตัวถังอะไรมีปี 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_en": "What is the chassis of Officine Alfieri Maserati with a Maserati Straight-6 engine and fewer than 6 points?",
    "question_th": "แชสซีส์ของ Officine Alfieri Maserati พร้อมเครื่องยนต์ Maserati Straight-6 และน้อยกว่า 6 จุดเป็นอย่างไร?",
    "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_en": "Which lane has a time less than 49.67, is from Michael Klim and less than 1 rank?",
    "question_th": "เลนใดที่มีเวลาน้อยกว่า 49.67 มาจาก Michael Klim และน้อยกว่า 1 อันดับ?",
    "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_en": "What is the lowest lane with Lorenzo Vismara and a time higher than 49.67?",
    "question_th": "เลนต่ำสุดกับลอเรนโซ วิสมาราและเวลาที่สูงกว่า 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_en": "Who was the home team on January 8?",
    "question_th": "ใครคือเจ้าบ้านในวันที่ 8 มกราคม?",
    "context": "CREATE TABLE table_name_41 (home VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_25 WHERE attendance = \"38,150\"",
    "question_en": "Who was the Opponent when the Attendance was 38,150?",
    "question_th": "ใครคือฝ่ายตรงข้ามเมื่อมีผู้เข้าร่วม 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_en": "Where is NCAA division ii Franklin Pierce University located at?",
    "question_th": "NCAA Division ii มหาวิทยาลัยแฟรงคลินเพียร์ซ ตั้งอยู่ที่ไหน",
    "context": "CREATE TABLE table_name_54 (location VARCHAR, classification VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT nickname FROM table_name_4 WHERE institution = \"post university\"",
    "question_en": "Post University has what nickname?",
    "question_th": "Post University มีชื่อเล่นว่าอะไร?",
    "context": "CREATE TABLE table_name_4 (nickname VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT current_conference FROM table_name_6 WHERE nickname = \"river hawks\"",
    "question_en": "The River Hawks belonged to what current conference?",
    "question_th": "River Hawks อยู่ในการประชุมใดในปัจจุบัน",
    "context": "CREATE TABLE table_name_6 (current_conference VARCHAR, nickname VARCHAR)"
  },
  {
    "answer": "SELECT nickname FROM table_name_54 WHERE location = \"manchester, new hampshire\"",
    "question_en": "What is the nickname of the school located in Manchester, New Hampshire?",
    "question_th": "ชื่อเล่นของโรงเรียนที่ตั้งอยู่ในเมืองแมนเชสเตอร์ รัฐนิวแฮมป์เชียร์ คืออะไร?",
    "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_en": "What is the classification for the school in the NEC Conference located in New Britain, Connecticut?",
    "question_th": "การจัดหมวดหมู่ของโรงเรียนในการประชุม NEC Conference ที่นิวบริเตน รัฐคอนเนตทิคัต เป็นอย่างไร",
    "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_en": "What institution is a NCAA Division i school and part of the NEC conference with a nickname the Blue Devils?",
    "question_th": "สถาบันใดเป็นโรงเรียนของ NCAA Division i และเป็นส่วนหนึ่งของการประชุม NEC ที่มีชื่อเล่นว่า 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_en": "What was the record at the home of the Montreal Maroons",
    "question_th": "บันทึกที่บ้านของมอนทรีออลมารูนส์คืออะไร",
    "context": "CREATE TABLE table_name_59 (record VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_49 WHERE _number___county = \"29 hamilton\"",
    "question_en": "which school shows #/county of 29 hamilton?",
    "question_th": "โรงเรียนไหนแสดง #/เคาน์ตี 29 แฮมิลตัน",
    "context": "CREATE TABLE table_name_49 (school VARCHAR, _number___county VARCHAR)"
  },
  {
    "answer": "SELECT mascot FROM table_name_73 WHERE enrollment_08_09 = 320",
    "question_en": "what is the mascot for the enrollment 08-09 of 320?",
    "question_th": "มาสคอตสำหรับการลงทะเบียน 08-09 จาก 320 คืออะไร?",
    "context": "CREATE TABLE table_name_73 (mascot VARCHAR, enrollment_08_09 VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_93 WHERE location = \"michigantown\"",
    "question_en": "what is the school in michigantown?",
    "question_th": "โรงเรียนในมิชิแกนทาวน์คืออะไร?",
    "context": "CREATE TABLE table_name_93 (school VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT episode_number FROM table_name_1 WHERE name = \"vibhav gautam\"",
    "question_en": "Which episode number was associated with Vibhav Gautam?",
    "question_th": "หมายเลขตอนใดเกี่ยวข้องกับ 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_en": "Which city/state was associated with a contestant whose status was 2nd runner-up?",
    "question_th": "เมือง/รัฐใดที่เกี่ยวข้องกับผู้เข้าแข่งขันที่มีสถานะเป็นรองอันดับ 2?",
    "context": "CREATE TABLE table_name_52 (city_state VARCHAR, status VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_30 WHERE episode_number = \"episode 34\"",
    "question_en": "Which contestant was associated with episode 34?",
    "question_th": "ผู้เข้าแข่งขันคนไหนที่เกี่ยวข้องกับตอนที่ 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_en": "What is the status of the city/state of Indor, Madhya Pradesh?",
    "question_th": "สถานะของเมือง/รัฐของอินดอร์ รัฐมัธยประเทศ คืออะไร?",
    "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_en": "What role did John Wayne play in The Trail Beyond, directed by R.N. Bradbury?",
    "question_th": "จอห์น เวย์นเล่นบทบาทอะไรใน The Trail Beyond ที่กำกับโดย RN 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_en": "Who directed the movie The Star Packer?",
    "question_th": "ใครเป็นผู้กำกับภาพยนตร์เรื่อง 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_en": "What role did John Wayne play in The Lawless Frontier, with Sheila Terry as the leading lady?",
    "question_th": "จอห์น เวย์นเล่นบทอะไรใน The Lawless Frontier โดยมีชีลา เทอร์รี่เป็นนางเอก",
    "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_en": "In what movie did John Wayne play the role of Chris Morrell?",
    "question_th": "John Wayne รับบทเป็น 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_en": "What role did John Wayne play with Verna Hillie as the leading lady?",
    "question_th": "John Wayne เล่นบทบาทอะไรกับ Verna Hillie ในฐานะนางเอก?",
    "context": "CREATE TABLE table_name_80 (role VARCHAR, leading_lady VARCHAR)"
  },
  {
    "answer": "SELECT director FROM table_name_54 WHERE role = \"john travers\"",
    "question_en": "Who directed the movie when John Wayne played the role of John Travers?",
    "question_th": "ใครเป็นผู้กำกับภาพยนตร์เรื่องนี้เมื่อ John Wayne รับบทเป็น 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_en": "What is the record for November 26, with the decision made by Prusek?",
    "question_th": "บันทึกประจำวันที่ 26 พฤศจิกายน พรูเสก ตัดสินใจอย่างไร?",
    "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_en": "What is the record for game where Columbus is visitor, Phoenix is home, and decision is made by Denis?",
    "question_th": "อะไรคือสถิติของเกมที่โคลัมบัสเป็นผู้มาเยือน ฟีนิกซ์กลับบ้าน และเดนิสเป็นผู้ตัดสินใจ?",
    "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_en": "What is the record for November 4, with a decision made by Denis?",
    "question_th": "บันทึกของวันที่ 4 พฤศจิกายนกับการตัดสินใจของเดนิสคืออะไร?",
    "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_en": "What is the Intergiro classification of Nicolaj bo Larsen, who has a Fabrizio guidi point classification?",
    "question_th": "การจำแนกประเภท Intergiro ของ Nicolaj bo Larsen คืออะไรซึ่งมีการจำแนกประเภทจุด Fabrizio guidi?",
    "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_en": "What is the mountain classification of Mario Cipollini, who has a general classification of Pavel tonkov?",
    "question_th": "การจำแนกประเภทภูเขาของ Mario Cipollini ซึ่งมีการจำแนกประเภททั่วไปของ 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_en": "What is the stage of Fabiano Fontanelli, who had a Trofeo Fast Team of Gewiss Playbus and a point classification of Fabrizio Guidi?",
    "question_th": "ฟาบริซิโอ กุยดี้ มีทีม Trofeo Fast จาก Gewiss Playbus และได้คะแนนจาก 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_en": "What is the stage with a point classification of Silvio Martinello and Davide Rebellin as the general classification?",
    "question_th": "เวทีที่มีการจำแนกคะแนนของ Silvio Martinello และ Davide Rebellin เป็นการจัดประเภททั่วไปคืออะไร?",
    "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_en": "What is the Trofeo Fast Team with a point classification of Silvio Martinello and stage 6?",
    "question_th": "Trofeo Fast Team ที่มีการแบ่งแต้มของ Silvio Martinello และสเตจที่ 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_en": "How many points did the Castres have?",
    "question_th": "คาสเตรสได้กี่คะแนน?",
    "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_en": "Who is the club that had 617 points and a draw of 0?",
    "question_th": "สโมสรไหนมี 617 แต้ม เสมอ 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çais\"",
    "question_en": "What number of bonus points did Stade Français?",
    "question_th": "Stade Français ได้คะแนนโบนัสจำนวนเท่าใด",
    "context": "CREATE TABLE table_name_38 (bonus_points VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_68 WHERE record = \"15–15\"",
    "question_en": "Who was the opponent at the game when the record was 15–15?",
    "question_th": "คู่ต่อสู้ในเกมเมื่อสถิติอยู่ที่ 15–15 คือใคร?",
    "context": "CREATE TABLE table_name_68 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_63 WHERE attendance = \"23,203\"",
    "question_en": "Who was the opponent at the game attended by 23,203?",
    "question_th": "คู่ต่อสู้ในเกมที่มีผู้เข้าร่วม 23,203 คนคือใคร?",
    "context": "CREATE TABLE table_name_63 (opponent VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_19 WHERE record = \"16–15\"",
    "question_en": "What was the loss of the game when the record was 16–15?",
    "question_th": "อะไรคือความพ่ายแพ้ของเกมเมื่อสถิติอยู่ที่ 16–15?",
    "context": "CREATE TABLE table_name_19 (loss VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_8 WHERE score = \"16–7\"",
    "question_en": "What was the attendance at the game that had a score of 16–7?",
    "question_th": "ผู้เข้าร่วมในเกมที่มีคะแนน 16–7 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_8 (attendance VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_70 WHERE attendance = \"25,022\"",
    "question_en": "What was the date of the game attended by 25,022?",
    "question_th": "วันที่ของเกมมีผู้เข้าร่วม 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_en": "Which record has an attendance larger than 28,459?",
    "question_th": "บันทึกใดมีผู้เข้าร่วมมากกว่า 28,459 คน?",
    "context": "CREATE TABLE table_name_43 (record VARCHAR, attendance INTEGER)"
  },
  {
    "answer": "SELECT score FROM table_name_92 WHERE record = \"32-37\"",
    "question_en": "When the record was 32-37 what was the score?",
    "question_th": "ตอนสถิติ 32-37 สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_92 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_31 WHERE date = \"june 7\"",
    "question_en": "On the date of june 7 what was the score?",
    "question_th": "วันที่ 7 มิถุนายน คะแนนเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_31 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_8 WHERE record = \"68-39\"",
    "question_en": "What was the score of the game when the record was 68-39?",
    "question_th": "สกอร์ของเกมเมื่อตอนที่สถิติอยู่ที่ 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_en": "What was the game of the game against the White Sox with a record of 81-48?",
    "question_th": "เกมการแข่งขันกับทีมชุดขาวด้วยสถิติ 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_en": "What was the date of the game when the record was 66-38?",
    "question_th": "เกมวันที่เท่าไหร่ที่มีสถิติ 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_en": "What category was Brian D'arcy James nominated for?",
    "question_th": "Brian D'arcy James ได้รับการเสนอชื่อเข้าชิงในประเภทใด",
    "context": "CREATE TABLE table_name_6 (category VARCHAR, nominee VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT moving_to FROM table_name_56 WHERE transfer_fee = \"£300,000\"",
    "question_en": "What is the item \"Moving to\", when the Transfer fee is £300,000?",
    "question_th": "รายการ \"ย้ายไป\" คืออะไร เมื่อค่าธรรมเนียมการโอนอยู่ที่ 300,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_en": "What is the Country, when the Transfer fee is \"loan\", and when the Name is Lynch?",
    "question_th": "ประเทศคืออะไร เมื่อค่าธรรมเนียมการโอนคือ \"เงินกู้\" และเมื่อใดชื่อคือ 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_en": "What is the Transfer window, when the Transfer fee is \"free\", and when the Name is Dugdale?",
    "question_th": "หน้าต่างการโอนคืออะไร เมื่อค่าธรรมเนียมการโอนเป็น \"ฟรี\" และเมื่อใดที่ชื่อคือ 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_en": "What is the Name, when the Transfer fee is \"loan\"?",
    "question_th": "ชื่ออะไร เมื่อค่าธรรมเนียมการโอนคือ \"เงินกู้\"?",
    "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_en": "What is the Transfer window, when the Transfer fee is \"free\", and when the item \"Moving to\" is Norwich City?",
    "question_th": "หน้าต่างการโอนย้ายคืออะไร เมื่อค่าธรรมเนียมการโอนเป็น \"ฟรี\" และเมื่อรายการ \"ย้ายไป\" คือนอริช ซิตี้",
    "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_en": "What is the Transfer fee, when the Transfer window is \"winter\", and when the item \"Moving to\" is Northwich Victoria?",
    "question_th": "ค่าธรรมเนียมการโอนคือเท่าไร เมื่อหน้าต่างการโอนคือ \"ฤดูหนาว\" และเมื่อรายการ \"ย้ายไป\" คือ 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_en": "What companyw as the constructor when the Time/Retired was collision, and a Grid of 11?",
    "question_th": "บริษัทใดที่เป็นตัวสร้างเมื่อเวลา/เกษียณอายุเกิดการชนกัน และตารางที่ 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_en": "What shows as the Time/Retired for Grid 8?",
    "question_th": "สิ่งที่แสดงเป็นเวลา/เกษียณสำหรับตารางที่ 8",
    "context": "CREATE TABLE table_name_2 (time_retired VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT laps FROM table_name_36 WHERE grid = \"3\"",
    "question_en": "What is the number of laps for Grid 3?",
    "question_th": "ตารางที่ 3 มีรอบกี่รอบ?",
    "context": "CREATE TABLE table_name_36 (laps VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT constructor FROM table_name_50 WHERE driver = \"nick heidfeld\"",
    "question_en": "What company was the constructor when Nick Heidfeld was the driver/",
    "question_th": "บริษัทใดเป็นผู้ก่อสร้างในสมัยที่นิค ไฮด์เฟลด์เป็นคนขับรถ/",
    "context": "CREATE TABLE table_name_50 (constructor VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT laps FROM table_name_48 WHERE time_retired = \"+1:08.577\"",
    "question_en": "What shows for laps when the Time/Retired was +1:08.577?",
    "question_th": "สิ่งที่แสดงสำหรับรอบเมื่อเวลา/เกษียณคือ +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_en": "What is the name of the constructor for Grid 1?",
    "question_th": "ชื่อของตัวสร้างสำหรับ 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_en": "When was Mushfiqur Rahim's test career?",
    "question_th": "อาชีพทดสอบของ Mushfiqur Rahim คือเมื่อไหร่?",
    "context": "CREATE TABLE table_name_98 (test_career VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT SUM(points) FROM table_name_95 WHERE year < 1984",
    "question_en": "Name the sum of points for 1984",
    "question_th": "ตั้งชื่อผลรวมคะแนนสำหรับปี 1984",
    "context": "CREATE TABLE table_name_95 (points INTEGER, year INTEGER)"
  },
  {
    "answer": "SELECT points FROM table_name_99 WHERE engine = \"chevrolet 265c\"",
    "question_en": "Name the points for Engine of chevrolet 265c",
    "question_th": "ตั้งชื่อคะแนนสำหรับเครื่องยนต์ของเชฟโรเลต 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_en": "Name the chassis of 147 points and engine of ford cosworth dfx",
    "question_th": "บอกชื่อแชสซีส์ 147 จุด และเครื่องยนต์ของ 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_en": "Which term had a Democratic representative from district 7?",
    "question_th": "ผู้แทนพรรคประชาธิปัตย์จากเขต 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_en": "What was the term of Bruce Biers Kendall whose hometown is Anchorage?",
    "question_th": "Bruce Biers Kendall ซึ่งมีบ้านเกิดคือ 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_en": "What is the hometown of the representative that served the twenty-sixth legislature?",
    "question_th": "บ้านเกิดของตัวแทนที่ทำหน้าที่สภานิติบัญญัติที่ยี่สิบหกคืออะไร?",
    "context": "CREATE TABLE table_name_22 (hometown VARCHAR, legislatures VARCHAR)"
  },
  {
    "answer": "SELECT qual FROM table_name_28 WHERE rank = \"19\"",
    "question_en": "What is the qual with a 19 rank?",
    "question_th": "รอบคัดเลือกกับอันดับ 19 คืออะไร?",
    "context": "CREATE TABLE table_name_28 (qual VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_33 WHERE finish = \"25\"",
    "question_en": "What rank has a 25 finish?",
    "question_th": "อันดับไหนมี 25 จบ?",
    "context": "CREATE TABLE table_name_33 (rank VARCHAR, finish VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_69 WHERE qual = \"143.056\"",
    "question_en": "What finish has a 143.056 qual?",
    "question_th": "จบอะไรมีคุณสมบัติ 143.056?",
    "context": "CREATE TABLE table_name_69 (finish VARCHAR, qual VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_17 WHERE laps > 165 AND finish = \"5\"",
    "question_en": "What rank had more than 165 laps and a finish of 5?",
    "question_th": "อันดับใดมีมากกว่า 165 รอบและจบที่ 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–3)\"",
    "question_en": "What was the record at the game against the Blue Jays with a loss of Batista (0–3)?",
    "question_th": "อะไรคือสถิติในเกมกับบลูเจย์สโดยแพ้บาติสตา (0–3)?",
    "context": "CREATE TABLE table_name_22 (record VARCHAR, opponent VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_90 WHERE record = \"14–8\"",
    "question_en": "What was the loss of the game when the record was 14–8?",
    "question_th": "อะไรคือความพ่ายแพ้ของเกมเมื่อสถิติอยู่ที่ 14–8?",
    "context": "CREATE TABLE table_name_90 (loss VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_62 WHERE record = \"28–19\"",
    "question_en": "What was the score of the game when the record was 28–19?",
    "question_th": "คะแนนของเกมเมื่อทำสถิติคือ 28–19 เป็นเท่าใด",
    "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–3)\"",
    "question_en": "What was the record at the game held on May 1st with a loss of Speier (1–3)?",
    "question_th": "อะไรคือสถิติในเกมที่จัดขึ้นเมื่อวันที่ 1 พฤษภาคมโดยแพ้สเปียร์ (1–3)?",
    "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_en": "How many goes played fot hteam that lost less than 12 games, drew 5, and had over 37 points?",
    "question_th": "มีกี่คนที่ลงเล่นในทีมที่แพ้น้อยกว่า 12 เกม เสมอ 5 และมีมากกว่า 37 แต้ม?",
    "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_en": "How many games lost for the team that drew 5 times and had over 41 points?",
    "question_th": "กี่เกมที่ทีมเสมอ 5 นัดและมีมากกว่า 41 แต้ม?",
    "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_en": "How many games played for the army team with over 51 points and under 5 games drawn?",
    "question_th": "กี่เกมที่เล่นให้ทีมอาร์มี่มากกว่า 51 แต้มและเสมอไม่เกิน 5 เกม?",
    "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_en": "How many points for the navy team that lost over 11?",
    "question_th": "ทีมกองทัพเรือที่เสียเกิน 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_en": "What class of car had the XI Coppa Acerbo title?",
    "question_th": "รถประเภทใดที่มีตำแหน่ง XI Coppa Acerbo?",
    "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_en": "Who won the III Coppa Acerbo title?",
    "question_th": "ใครคว้าแชมป์โคปปาอาเซอร์โบสมัยที่ 3?",
    "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_en": "What's the name of the title for the Maserati A6GCS?",
    "question_th": "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_en": "Who won the XXIV Gran Premio di Pescara in the sports car class?",
    "question_th": "ใครชนะ XXIV Gran Premio di Pescara ในคลาสรถสปอร์ต",
    "context": "CREATE TABLE table_name_81 (driver_s VARCHAR, class VARCHAR, race_title VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_22 WHERE tournament = \"città di caltanissetta\"",
    "question_en": "What surface was the città di caltanissetta played on?",
    "question_th": "città di caltanissetta เล่นบนพื้นผิวใด?",
    "context": "CREATE TABLE table_name_22 (surface VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_1 WHERE tournament = \"volkswagen challenger\"",
    "question_en": "What was the score in Volkswagen Challenger tournament?",
    "question_th": "คะแนนในการแข่งขัน Volkswagen Challenger คืออะไร?",
    "context": "CREATE TABLE table_name_1 (score VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2010 FROM table_name_23 WHERE 2011 = \"2,240,000\"",
    "question_en": "what is the production in 2010 with 2011 production of 2,240,000?",
    "question_th": "ผลิตในปี 2553 โดยปี 2554 มีการผลิต 2,240,000 ชิ้นเป็นเท่าใด",
    "context": "CREATE TABLE table_name_23 (Id VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_52 WHERE 2010 = \"2,903,000\"",
    "question_en": "what is the ranking for 2010 production of 2,903,000?",
    "question_th": "การผลิต 2,903,000 คันในปี 2553 อยู่ที่เท่าไร?",
    "context": "CREATE TABLE table_name_52 (rank VARCHAR)"
  },
  {
    "answer": "SELECT 2010 FROM table_name_39 WHERE rank = \"8\"",
    "question_en": "what is the production in 2010 with rank of 8?",
    "question_th": "ปี 2553 มีการผลิตอันดับที่ 8 อะไรบ้าง?",
    "context": "CREATE TABLE table_name_39 (rank VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_name_95 WHERE captain = \"john hutchinson\"",
    "question_en": "What club captain is John Hutchinson in?",
    "question_th": "จอห์น ฮัตชินสัน กัปตันทีมคนไหน?",
    "context": "CREATE TABLE table_name_95 (club VARCHAR, captain VARCHAR)"
  },
  {
    "answer": "SELECT australian_marquee FROM table_name_13 WHERE captain = \"michael beauchamp\"",
    "question_en": "What Australian Marquee team is Michael Beauchamp a captain of?",
    "question_th": "Michael Beauchamp เป็นกัปตันของทีม Australian Marquee ทีมใด",
    "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_en": "What Junior Marquee team is Harry Kewell of?",
    "question_th": "แฮร์รี่ คีเวลล์ สังกัดทีมจูเนียร์มาร์คีทีมใด",
    "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_en": "What is the name of call sign that uses a Frequency MHz of 91.1 fm?",
    "question_th": "สัญญาณเรียกขานที่ใช้ความถี่ MHz 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_en": "How much is the total ERP W for an 107.9 fm freqeuncy MHz?",
    "question_th": "ERP W ทั้งหมดสำหรับความถี่ 107.9 fm 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_en": "Can you tell me what is FCC info for harmony township, new jersey?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าข้อมูล FCC สำหรับเมืองฮาร์โมนี่ รัฐนิวเจอร์ซีย์คืออะไร",
    "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_en": "What is the smallest ERP for allentown, pennsylvania?",
    "question_th": "ERP ที่เล็กที่สุดสำหรับ 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_en": "Which grid has a time/retired of +3.9 secs in less than 96 laps?",
    "question_th": "กริดใดมีเวลา/เกษียณ +3.9 วินาทีในเวลาน้อยกว่า 96 รอบ",
    "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_en": "Which driver has 7 points for team Australia?",
    "question_th": "นักแข่งคนไหนมี 7 แต้มให้ทีมออสเตรเลีย?",
    "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_en": "What is the fewest number of laps for a Dale Coyne Racing team with a mechanical time/retired and fewer than 5 points?",
    "question_th": "จำนวนรอบน้อยที่สุดสำหรับทีม Dale Coyne Racing ที่มีเวลาเครื่องกล/เกษียณแล้วและมีคะแนนน้อยกว่า 5 คะแนนคือเท่าใด",
    "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_en": "What is the highest points total scored by Dan Clarke in a grid higher than 10?",
    "question_th": "คะแนนรวมสูงสุดที่ Dan Clarke ทำได้ในตารางที่สูงกว่า 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_en": "What is the earliest episode of the series that is set in Boston, Massachusetts?",
    "question_th": "ซีรีส์เรื่องแรกสุดที่มีฉากในเมืองบอสตัน รัฐแมสซาชูเซตส์คือเรื่องใด",
    "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_en": "How many people were surveyed in the poll from June 30, 2010?",
    "question_th": "มีการสำรวจความคิดเห็นตั้งแต่วันที่ 30 มิถุนายน 2553 กี่คน",
    "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 = \"± 3.3%\"",
    "question_en": "What percentage of the vote with a margin of error of ± 3.3% did Meg Whitman (R) get?",
    "question_th": "Meg Whitman (R) ได้คะแนนเสียงกี่เปอร์เซ็นต์โดยมีค่าความคลาดเคลื่อน ± 3.3%",
    "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_en": "How many people participated in the Rasmussen Reports poll on October 13, 2010?",
    "question_th": "มีกี่คนที่เข้าร่วมในการสำรวจความคิดเห็นของ Rasmussen Reports เมื่อวันที่ 13 ตุลาคม 2553",
    "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_en": "What percent of the vote went to Meg Whitman in the poll taken on October 21, 2010.",
    "question_th": "Meg Whitman ได้คะแนนเสียงกี่เปอร์เซ็นต์ในการสำรวจความคิดเห็นเมื่อวันที่ 21 ตุลาคม พ.ศ. 2553",
    "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_en": "What is the Prize, when the Event is Ept Deauville?",
    "question_th": "รางวัลคืออะไร เมื่องาน Ept Deauville?",
    "context": "CREATE TABLE table_name_10 (prize VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_26 WHERE prize = \"€880,000\"",
    "question_en": "What is the City, when the Prize is €880,000?",
    "question_th": "เมืองคืออะไร เมื่อรางวัลอยู่ที่ 880,000 ยูโร?",
    "context": "CREATE TABLE table_name_26 (city VARCHAR, prize VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_25 WHERE winner = \"ruben visser\"",
    "question_en": "What is the City, when the Winner is Ruben Visser?",
    "question_th": "เมืองคืออะไร ในเมื่อผู้ชนะคือ รูเบน วิสเซอร์?",
    "context": "CREATE TABLE table_name_25 (city VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_98 WHERE prize = \"€880,000\"",
    "question_en": "Who is the Winner, when the Prize is €880,000?",
    "question_th": "ใครคือผู้ชนะ เมื่อเงินรางวัลอยู่ที่ €880,000?",
    "context": "CREATE TABLE table_name_98 (winner VARCHAR, prize VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_17 WHERE prize = \"$1,859,000\"",
    "question_en": "What is the City, when the Prize is $1,859,000?",
    "question_th": "เมืองคืออะไร เมื่อรางวัลอยู่ที่ 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_en": "What is the Prize, when the Event is Ept Sanremo?",
    "question_th": "รางวัลคืออะไร เมื่องาน Ept Sanremo?",
    "context": "CREATE TABLE table_name_11 (prize VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_97 WHERE venue = \"edgbaston\"",
    "question_en": "On what date was the venue at Edgbaston?",
    "question_th": "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_en": "What is the lowest image with a 20w Harrison, and less than 20 for Ashmolean?",
    "question_th": "ภาพต่ำสุดที่มี Harrison 20w และน้อยกว่า 20 สำหรับ 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_en": "What is the number of Ashmolean with 14s Harrison, and image less than 542?",
    "question_th": "จำนวนของ Ashmolean ที่มี Harrison อายุ 14 ปี และรูปภาพน้อยกว่า 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_en": "What is the cooper with an Ashmolean less than 21, and hahland smaller than 4?",
    "question_th": "คูเปอร์ที่มี Ashmolean น้อยกว่า 21 และ hahland เล็กกว่า 4 คืออะไร?",
    "context": "CREATE TABLE table_name_43 (cooper VARCHAR, ashmolean VARCHAR, hahland VARCHAR)"
  },
  {
    "answer": "SELECT smith FROM table_name_62 WHERE ashmolean = 16",
    "question_en": "What is the smith with a 16 ashmolean?",
    "question_th": "ช่างเหล็กที่มี 16 อัชโมลีนคืออะไร?",
    "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_en": "What order has the Species Authority of hydrochaeris hydrochaeris (linnaeus, 1766)?",
    "question_th": "หน่วยงานควบคุมสายพันธุ์ของ 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_en": "What is the highest Red List for the muridae family and species Authority of microtus pinetorum (le conte, 1830)?",
    "question_th": "อะไรคือรายชื่อสีแดงที่สูงที่สุดสำหรับวงศ์ muridae และสปีชีส์ 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_en": "What is the name for the species Authority of sigmodon hispidus say & ord, 1825?",
    "question_th": "ชื่อของสายพันธุ์ 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_en": "What is the largest total with a Silver of 1, and a Rank larger than 7?",
    "question_th": "อะไรคือผลรวมที่ใหญ่ที่สุดโดยมี Silver เท่ากับ 1 และอันดับมากกว่า 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_en": "How many totals have a Bronze smaller than 3, a Nation of zimbabwe, and a Silver smaller than 6?",
    "question_th": "มีทั้งหมดกี่เหรียญทองแดงที่น้อยกว่า 3, ประเทศซิมบับเว และเหรียญเงินที่เล็กกว่า 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_en": "What is the smallest silver with a Bronze smaller than 6, a Total of 3, and a Rank smaller than 9?",
    "question_th": "เงินที่เล็กที่สุดที่มีทองแดงน้อยกว่า 6 รวม 3 และอันดับน้อยกว่า 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_en": "How many ranks have 0 golds, a Nation of namibia, and a Total smaller than 1?",
    "question_th": "มีกี่อันดับที่มี 0 เหรียญทอง ประเทศนามิเบีย และผลรวมน้อยกว่า 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_en": "How many totals have a Bronze of 0, and a Gold smaller than 0?",
    "question_th": "มีทั้งหมดกี่เหรียญทองแดงเป็น 0 และทองหนึ่งอันมีค่าน้อยกว่า 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_en": "What is the total silver with a Rank larger than 9, and a Total larger than 1?",
    "question_th": "เงินทั้งหมดที่มีอันดับมากกว่า 9 และผลรวมมากกว่า 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_en": "Which language do 1% of males speak?",
    "question_th": "ผู้ชาย 1% พูดภาษาอะไร?",
    "context": "CREATE TABLE table_name_31 (percentage___percentage_ VARCHAR, males VARCHAR)"
  },
  {
    "answer": "SELECT males FROM table_name_44 WHERE percentage___percentage_ = \"87.5\"",
    "question_en": "Which language do 87.5% of males speak?",
    "question_th": "ผู้ชาย 87.5% พูดภาษาใด?",
    "context": "CREATE TABLE table_name_44 (males VARCHAR, percentage___percentage_ VARCHAR)"
  },
  {
    "answer": "SELECT females FROM table_name_10 WHERE number = \"706\"",
    "question_en": "Which language do 706 females speak?",
    "question_th": "ผู้หญิง 706 คนพูดภาษาอะไร?",
    "context": "CREATE TABLE table_name_10 (females VARCHAR, number VARCHAR)"
  },
  {
    "answer": "SELECT females FROM table_name_11 WHERE language = \"ukrainian\"",
    "question_en": "How many females speak Ukrainian?",
    "question_th": "มีผู้หญิงกี่คนที่พูดภาษายูเครน?",
    "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_en": "What was the position of the team that had a goal difference of less than -11 and played less than 38 games?",
    "question_th": "ตำแหน่งของทีมที่มีประตูเสียน้อยกว่า -11 และเล่นน้อยกว่า 38 เกมคือตำแหน่งไหน?",
    "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_en": "Which position had a goal difference of less than 27, lost more than 13 games, scored less than 42 goals and drew 6 games?",
    "question_th": "ตำแหน่งไหนมีผลต่างประตูน้อยกว่า 27 แพ้มากกว่า 13 เกม ยิงได้น้อยกว่า 42 ประตู เสมอ 6 เกม?",
    "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_en": "What was the number of wins with goals against of less than 32?",
    "question_th": "จำนวนชัยชนะโดยมีเป้าหมายต่อน้อยกว่า 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_en": "How many Antonov An-2 Colt aircraft are in service?",
    "question_th": "มีเครื่องบิน Antonov An-2 Colt ประจำการกี่ลำ?",
    "context": "CREATE TABLE table_name_37 (in_service INTEGER, aircraft VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_67 WHERE position = \"rb\"",
    "question_en": "for the position of rb what is the name?",
    "question_th": "สำหรับตำแหน่ง rb ชื่ออะไร?",
    "context": "CREATE TABLE table_name_67 (name VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT last_update FROM table_name_75 WHERE name = \"joe surratt\"",
    "question_en": "for the name of joe surratt what is the last update?",
    "question_th": "สำหรับชื่อโจ เซอร์รัตต์ อัปเดตล่าสุดคืออะไร?",
    "context": "CREATE TABLE table_name_75 (last_update VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT last_update FROM table_name_81 WHERE name = \"jamar jackson\"",
    "question_en": "for the name of jamar jackson what is the last update?",
    "question_th": "สำหรับชื่อจามาร์ แจ็คสัน อัพเดตครั้งล่าสุดคืออะไร?",
    "context": "CREATE TABLE table_name_81 (last_update VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_name_87 WHERE name = \"jamar jackson\"",
    "question_en": "for the name of jamar jackson what is the class?",
    "question_th": "จามาร์ แจ็คสันชื่ออะไรคะ?",
    "context": "CREATE TABLE table_name_87 (class VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(number) FROM table_name_99 WHERE name = \"jamar jackson\"",
    "question_en": "for the name of jamar jackson what is the total of Number?",
    "question_th": "ชื่อจามาร์ แจ็คสัน เบอร์ทั้งหมดเป็นเท่าไหร่?",
    "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_en": "What term did Stewart Mcarthur from Vic serve in office?",
    "question_th": "Stewart Mcarthur จาก Vic ดำรงตำแหน่งอะไร",
    "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_en": "What is Hon Paul Keating's Party?",
    "question_th": "งานปาร์ตี้ของ Hon Paul Keating คืออะไร?",
    "context": "CREATE TABLE table_name_70 (party VARCHAR, member VARCHAR)"
  },
  {
    "answer": "SELECT member FROM table_name_73 WHERE party = \"liberal\" AND electorate = \"bruce\"",
    "question_en": "What member is in the liberal party and has an electorate of bruce?",
    "question_th": "สมาชิกคนใดอยู่ในพรรคเสรีนิยมและมีสิทธิเลือกตั้งแบบบรูซ?",
    "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_en": "Which Electorate is from vic, a labor party, and is David Charles a member of?",
    "question_th": "เขตเลือกตั้งใดที่มาจาก Vic ซึ่งเป็นพรรคแรงงาน และ David Charles เป็นสมาชิกหรือไม่",
    "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_en": "Name the format on july 27, 1994 for alfa records",
    "question_th": "ตั้งชื่อรูปแบบในวันที่ 27 กรกฎาคม 1994 สำหรับบันทึกอัลฟ่า",
    "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_en": "Name the region for cd with catalog of alca-9203",
    "question_th": "ตั้งชื่อภูมิภาคสำหรับซีดีด้วยแค็ตตาล็อกของ 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_en": "Name the date for alfa records and catalog of alr-28045",
    "question_th": "ตั้งชื่อวันที่สำหรับบันทึก alfa และแค็ตตาล็อกของ 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_en": "Name the region for cd format on february 22, 1984",
    "question_th": "ตั้งชื่อภูมิภาคสำหรับรูปแบบซีดีเมื่อวันที่ 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_en": "Name the region for february 14, 2002",
    "question_th": "ตั้งชื่อภูมิภาคสำหรับวันที่ 14 กุมภาพันธ์ พ.ศ. 2545",
    "context": "CREATE TABLE table_name_6 (region VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT AVG(first_game) FROM table_name_16 WHERE lost > 16",
    "question_en": "What First game has a Lost greater than 16?",
    "question_th": "เกมแรกใดที่แพ้มากกว่า 16?",
    "context": "CREATE TABLE table_name_16 (first_game INTEGER, lost INTEGER)"
  },
  {
    "answer": "SELECT percentage FROM table_name_80 WHERE first_game = 1998",
    "question_en": "What Percentage did the First game of 1998 have?",
    "question_th": "เกมแรกของปี 1998 มีเปอร์เซ็นต์เท่าไร?",
    "context": "CREATE TABLE table_name_80 (percentage VARCHAR, first_game VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_97 WHERE bowling = \"4-15\"",
    "question_en": "What bowler has a record of 4-15?",
    "question_th": "นักขว้างคนใดมีสถิติ 4-15?",
    "context": "CREATE TABLE table_name_97 (player VARCHAR, bowling VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_69 WHERE player = \"james franklin\"",
    "question_en": "What ranking is james franklin?",
    "question_th": "เจมส์ แฟรงคลินอยู่ในอันดับที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_69 (rank VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_14 WHERE player = \"tim southee\"",
    "question_en": "what venue does tim southee bowl at?",
    "question_th": "ทิม สุธี โบว์ล จัดขึ้นที่สถานที่ใด?",
    "context": "CREATE TABLE table_name_14 (venue VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT regular_season FROM table_name_38 WHERE year = \"2012\"",
    "question_en": "What was the regular season for 2012?",
    "question_th": "ฤดูกาลปกติสำหรับปี 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_en": "What is the lowest division in the playoffs and did not qualify for the Open Cup in 2002?",
    "question_th": "อะไรคือดิวิชั่นที่ต่ำที่สุดในรอบตัดเชือกและไม่ผ่านเข้ารอบโอเพ่นคัพในปี 2545?",
    "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_en": "What chassis has more than 0 points?",
    "question_th": "แชสซีใดมีมากกว่า 0 คะแนน?",
    "context": "CREATE TABLE table_name_40 (chassis VARCHAR, points INTEGER)"
  },
  {
    "answer": "SELECT COUNT(points) FROM table_name_95 WHERE year < 1955",
    "question_en": "How many points were there before 1955?",
    "question_th": "ก่อนปี 2498 มีกี่คะแนน?",
    "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_en": "What is the lowest amount of points held by the Epperly Indy roadster in 1959?",
    "question_th": "คะแนนต่ำสุดที่ Epperly Indy roadster ถือครองในปี 1959 คือเท่าใด",
    "context": "CREATE TABLE table_name_5 (points INTEGER, chassis VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT chassis FROM table_name_3 WHERE points > 0",
    "question_en": "What Chassis has more than 0 points?",
    "question_th": "แชสซีใดมีมากกว่า 0 คะแนน?",
    "context": "CREATE TABLE table_name_3 (chassis VARCHAR, points INTEGER)"
  },
  {
    "answer": "SELECT date FROM table_name_15 WHERE attendance = \"4,286\"",
    "question_en": "What is the date that 4,286 attended?",
    "question_th": "จำนวน 4,286 คนเข้าร่วมวันไหน?",
    "context": "CREATE TABLE table_name_15 (date VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT game_site FROM table_name_64 WHERE opponent = \"cf pachuca\"",
    "question_en": "Where does CF Pachuca play?",
    "question_th": "CF Pachuca เล่นที่ไหน?",
    "context": "CREATE TABLE table_name_64 (game_site VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_21 WHERE game_site = \"cup quarterfinals\"",
    "question_en": "What was the attendance of the Cup Quarterfinals game?",
    "question_th": "การเข้าร่วมเกมคัพรอบก่อนรองชนะเลิศมีอะไรบ้าง?",
    "context": "CREATE TABLE table_name_21 (attendance VARCHAR, game_site VARCHAR)"
  },
  {
    "answer": "SELECT 2000 FROM table_name_19 WHERE 2013 = \"3rd\"",
    "question_en": "What shows for 2000 when 2013 shows 3rd?",
    "question_th": "อะไรจะแสดงในปี 2000 เมื่อ 2013 แสดงเป็นอันดับ 3?",
    "context": "CREATE TABLE table_name_19 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2004 FROM table_name_17 WHERE 2013 = \"3rd\"",
    "question_en": "What is the 2004 when 2013 is 3rd?",
    "question_th": "2004 คืออะไรเมื่อ 2013 เป็นอันดับ 3?",
    "context": "CREATE TABLE table_name_17 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2009 FROM table_name_39 WHERE 2013 = \"4th\"",
    "question_en": "What is the 2009 when the 2013 is 4th?",
    "question_th": "ปี 2552 คืออะไร เมื่อปี 2556 อยู่อันดับที่ 4?",
    "context": "CREATE TABLE table_name_39 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2009 FROM table_name_4 WHERE 2000 = \"–\" AND total = 3 AND 2004 = \"9th\"",
    "question_en": "What shows for 209 when the 2000 is –, and a Total of 3, and a 2004 of 9th?",
    "question_th": "อะไรที่แสดงสำหรับ 209 เมื่อปี 2000 เป็น – และผลรวมเป็น 3 และปี 2004 เป็นอันดับที่ 9",
    "context": "CREATE TABLE table_name_4 (total VARCHAR)"
  },
  {
    "answer": "SELECT winning_score FROM table_name_14 WHERE championship = \"pga championship\"",
    "question_en": "What was the winning score in the PGA Championship?",
    "question_th": "คะแนนชนะใน 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_en": "How many draws with 1 loss?",
    "question_th": "เสมอกันกี่ครั้ง แพ้ 1 ครั้ง?",
    "context": "CREATE TABLE table_name_55 (draws INTEGER, losses VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(losses) FROM table_name_98 WHERE name = \"alex wilkinson\"",
    "question_en": "How many losses does Alex Wilkinson have?",
    "question_th": "Alex Wilkinson มีการสูญเสียกี่ครั้ง?",
    "context": "CREATE TABLE table_name_98 (losses VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_53 WHERE principal_activities = \"headquarters\"",
    "question_en": "Name the type for headquarters principal activites.",
    "question_th": "ตั้งชื่อประเภทของกิจกรรมหลักของสำนักงานใหญ่",
    "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_en": "Name the incorporated for principal activites of travel agency",
    "question_th": "ตั้งชื่อบริษัทที่จัดตั้งขึ้นสำหรับกิจกรรมหลักของตัวแทนการท่องเที่ยว",
    "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_en": "Name the title with presentation of credentials of april 24, 1884",
    "question_th": "ตั้งชื่อหัวเรื่องพร้อมนำเสนอหนังสือรับรองวันที่ 24 เมษายน พ.ศ. 2427",
    "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_en": "Name the presentation of credentials for appointed by of grover cleveland and representative of charles w. buck",
    "question_th": "ตั้งชื่อการนำเสนอหนังสือรับรองสำหรับการแต่งตั้งโดยโกรเวอร์ คลีฟแลนด์ และตัวแทนของ charles w. เจ้าชู้",
    "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_en": "Name the title with presentation of credentials of april 10, 1907",
    "question_th": "ตั้งชื่อหัวเรื่องพร้อมนำเสนอหนังสือรับรองวันที่ 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_en": "Name the title with termination of mission of february 24, 1828",
    "question_th": "ตั้งชื่อตำแหน่งด้วยการสิ้นสุดภารกิจของวันที่ 24 กุมภาพันธ์ พ.ศ. 2371",
    "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_en": "Name the title with termination of mission of april 10, 1939",
    "question_th": "ตั้งชื่อตำแหน่งด้วยการสิ้นสุดภารกิจวันที่ 10 เมษายน พ.ศ. 2482",
    "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_en": "Name the termination of mission for woodrow wilson appointed by and representative of benton mcmillin",
    "question_th": "ตั้งชื่อการยุติภารกิจของวูดโรว์ วิลสัน ที่ได้รับการแต่งตั้งโดยและตัวแทนของเบนตัน แมคมิลลิน",
    "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_en": "What is the highest points gained of the match where fans took 907 and there were more than 44.9 miles one way?",
    "question_th": "อะไรคือคะแนนสูงสุดที่ได้รับจากการแข่งขันที่แฟนบอลคว้า 907 และมีระยะทางมากกว่า 44.9 ไมล์ในเที่ยวเดียวคืออะไร?",
    "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_en": "What is the points gained of the match where fans took 403 [sunday]?",
    "question_th": "แต้มที่ได้รับจากแมตช์ที่แฟนบอลทำได้ 403 [วันอาทิตย์] คืออะไร?",
    "context": "CREATE TABLE table_name_36 (points_gained INTEGER, fans_took VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_71 WHERE fans_took = \"288\"",
    "question_en": "Which team had fans took of 288?",
    "question_th": "ทีมไหนมีแฟนบอลเอาไป 288?",
    "context": "CREATE TABLE table_name_71 (team VARCHAR, fans_took VARCHAR)"
  },
  {
    "answer": "SELECT years FROM table_name_99 WHERE ranking = 1",
    "question_en": "What years had a ranking of 1?",
    "question_th": "ปีไหนมีอันดับ 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_en": "What is the nationality of the person with 50 goals and rank 3?",
    "question_th": "คนที่ทำได้ 50 ประตู อันดับ 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 박준형\"",
    "question_en": "What was the status of joon-hyung park 박준형?",
    "question_th": "ปาร์ค จุน-ฮยอง 박준형 เป็นยังไงบ้าง?",
    "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_en": "Who had a ballet style with original cast?",
    "question_th": "ใครมีสไตล์บัลเล่ต์พร้อมนักแสดงดั้งเดิม?",
    "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_en": "When was the first performance with a replacement cast?",
    "question_th": "การแสดงครั้งแรกพร้อมกับนักแสดงทดแทนคือเมื่อไหร่?",
    "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_en": "What is the latest year for the Tyrrell 018 Chassis that has less than 3 points?",
    "question_th": "ปีล่าสุดสำหรับ Tyrrell 018 Chassis ที่มีคะแนนน้อยกว่า 3 คือปีใด",
    "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_en": "Which entrant has a Honda V6 engine and a Lotus 99t chassis?",
    "question_th": "ผู้เข้าแข่งขันรายใดมีเครื่องยนต์ Honda V6 และแชสซี Lotus 99t",
    "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_en": "Name the best when runs of 1088 and matches more than 11",
    "question_th": "ตั้งชื่อสิ่งที่ดีที่สุดเมื่อรัน 1,088 และตรงกันมากกว่า 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_en": "Name the most runs for wickets of 66 and matches less than 13",
    "question_th": "ตั้งชื่อการวิ่งมากที่สุดสำหรับประตูที่ 66 และการแข่งขันที่น้อยกว่า 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_en": "What is the score of the game with the San Diego Padres as the opponent and a record of 11-23?",
    "question_th": "เกมนี้ซานดิเอโก้ เดรสเป็นคู่ต่อสู้ด้วยสกอร์เท่าไหร่และสถิติ 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_en": "What is the date of the game with a record of 14-31?",
    "question_th": "เกมวันที่เท่าไหร่ด้วยสถิติ 14-31?",
    "context": "CREATE TABLE table_name_16 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_90 WHERE record = \"17-31\"",
    "question_en": "What is the date of the game with a 17-31 record?",
    "question_th": "เกมนี้วันที่เท่าไหร่ด้วยสถิติ 17-31?",
    "context": "CREATE TABLE table_name_90 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_70 WHERE date = \"13 may\"",
    "question_en": "What is the record of the game on 13 May?",
    "question_th": "สถิติเกมวันที่ 13 พ.ค. เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_70 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT AVG(attendance) FROM table_name_63 WHERE week = 15",
    "question_en": "What was average attendance during week 15?",
    "question_th": "ผู้เข้าร่วมโดยเฉลี่ยในช่วงสัปดาห์ที่ 15 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_63 (attendance INTEGER, week VARCHAR)"
  },
  {
    "answer": "SELECT MIN(week) FROM table_name_75 WHERE result = \"t 17–17\"",
    "question_en": "What's the smallest week that had a result of t 17–17?",
    "question_th": "สัปดาห์ที่เล็กที่สุดซึ่งเป็นผลมาจาก t 17–17 คือสัปดาห์ใด",
    "context": "CREATE TABLE table_name_75 (week INTEGER, result VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_69 WHERE week = 12",
    "question_en": "Who was the opponent in week 12?",
    "question_th": "คู่ต่อสู้ในสัปดาห์ที่ 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_en": "What is the current club of the Forward who was born after 1983 and who has a height under 2.12?",
    "question_th": "สโมสรปัจจุบันของกองหน้าที่เกิดหลังปี 1983 และใครมีส่วนสูงต่ำกว่า 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_en": "What is the position of the player who is taller than 2.12?",
    "question_th": "ตำแหน่งผู้เล่นที่สูงกว่า 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_en": "How many no votes did North Dakota have?",
    "question_th": "North Dakota ไม่มีคะแนนเสียงกี่คะแนน?",
    "context": "CREATE TABLE table_name_48 (no_vote VARCHAR, state VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_92 WHERE state = \"colorado\"",
    "question_en": "What was the date for Colorado?",
    "question_th": "โคโลราโดวันที่เท่าไหร่?",
    "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_en": "How many no votes from Alaska in 1998?",
    "question_th": "ไม่มีการลงคะแนนเสียงจากอลาสกาในปี 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_en": "How many positive votes for Tennessee in 2006?",
    "question_th": "มีคะแนนเสียงเชิงบวกจำนวนเท่าใดสำหรับรัฐเทนเนสซีในปี 2549",
    "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_en": "What is the name of the song that is part of the opening theme and has a drama of the revolving doors of vengeance?",
    "question_th": "เพลงที่เป็นเพลงเปิดและมีดราม่าประตูหมุนแก้แค้นชื่ออะไรคะ?",
    "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_en": "How many floors are there at 32 n. main street?",
    "question_th": "ที่ 32 น. มีกี่ชั้น ถนนสายหลัก?",
    "context": "CREATE TABLE table_name_15 (floors INTEGER, street_address VARCHAR)"
  },
  {
    "answer": "SELECT completed FROM table_name_64 WHERE rank = \"9\"",
    "question_en": "When did the rank 9 building got completed?",
    "question_th": "อาคารอันดับ 9 สร้างเสร็จเมื่อไหร่?",
    "context": "CREATE TABLE table_name_64 (completed VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_name_46 WHERE governments = \"24\"",
    "question_en": "Which party has 24 governments?",
    "question_th": "พรรคไหนมี 24 รัฐบาล?",
    "context": "CREATE TABLE table_name_46 (party VARCHAR, governments VARCHAR)"
  },
  {
    "answer": "SELECT governments FROM table_name_43 WHERE term_start = \"24 september 1984\"",
    "question_en": "What governments did the minister with a term start on 24 September 1984 have?",
    "question_th": "รัฐมนตรีที่มีวาระดำรงตำแหน่งเมื่อวันที่ 24 กันยายน พ.ศ. 2527 มีรัฐบาลใดบ้าง?",
    "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_en": "When is the term end of Shlomo-Yisrael Ben-Meir of the National Religious Party?",
    "question_th": "ชโลโม-ยิสราเอล เบน-เมียร์ ของพรรคศาสนาแห่งชาติจะสิ้นสุดวาระเมื่อใด",
    "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_en": "Who is the minister with a term end on 10 March 1974?",
    "question_th": "ใครเป็นรัฐมนตรีที่มีวาระครบวาระในวันที่ 10 มีนาคม 2517?",
    "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_en": "Name the points classification for predictor-lotto and stage 1",
    "question_th": "ตั้งชื่อการจำแนกคะแนนสำหรับตัวทำนาย-ล็อตโต้และระยะที่ 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_en": "Name the points classification for quick step-innergetic with stage 7",
    "question_th": "ตั้งชื่อการจำแนกคะแนนสำหรับขั้นตอนที่มีพลังอย่างรวดเร็วด้วยขั้นตอนที่ 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_en": "Name the stgae with winner of robbie mcewen",
    "question_th": "ตั้งชื่อ stgae ด้วยผู้ชนะของ 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_en": "Name the winner for nick nuyens for general classification and stage of 2",
    "question_th": "ตั้งชื่อผู้ชนะสำหรับ Nick Nuyens สำหรับประเภททั่วไปและรอบที่ 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_en": "Name the team classification for stage of 6",
    "question_th": "ตั้งชื่อประเภททีมสำหรับรอบที่ 6",
    "context": "CREATE TABLE table_name_47 (team_classification VARCHAR, stage VARCHAR)"
  },
  {
    "answer": "SELECT power__kw_ FROM table_name_44 WHERE location = \"davao\"",
    "question_en": "What is the Davao's power (kW)?",
    "question_th": "กำลังของดาเวา (kW) คืออะไร?",
    "context": "CREATE TABLE table_name_44 (power__kw_ VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT branding FROM table_name_35 WHERE callsign = \"dxre\"",
    "question_en": "What is the brand of DXRE?",
    "question_th": "DXRE มียี่ห้ออะไร?",
    "context": "CREATE TABLE table_name_35 (branding VARCHAR, callsign VARCHAR)"
  },
  {
    "answer": "SELECT power__kw_ FROM table_name_74 WHERE location = \"davao\"",
    "question_en": "What is the power (kW) of Davao?",
    "question_th": "กำลัง (kW) ของดาเวาคือเท่าไร?",
    "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_en": "What is the callsign of Cagayan de Oro with 5kW?",
    "question_th": "สัญญาณเรียกขานของ Cagayan de Oro ขนาด 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_en": "What is the callsign of the 5kW Sonshine Radio Cotabato?",
    "question_th": "สัญญาณเรียกของ 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_en": "What's the average amount of Runs that has 40 innings, and Not outs larger than 6?",
    "question_th": "จำนวนรันโดยเฉลี่ยที่มี 40 อินนิง และไม่เกิน 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_en": "What's the total Innings that has Runs of 1598, and Matches less than 41?",
    "question_th": "อินนิ่งทั้งหมดที่มีการรัน 1598 และแมตช์น้อยกว่า 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_en": "What venue held the event in 2008 that has 2:13:10 in the notes?",
    "question_th": "สถานที่ใดที่จัดงานในปี 2551 โดยมีหมายเหตุอยู่ในหมายเหตุ 2:13:10",
    "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_en": "Who discovered the specimen at the Burpee Museum of Natural History?",
    "question_th": "ใครเป็นผู้ค้นพบตัวอย่างดังกล่าวที่พิพิธภัณฑ์ประวัติศาสตร์ธรรมชาติ Burpee",
    "context": "CREATE TABLE table_name_43 (discoverer VARCHAR, museum VARCHAR)"
  },
  {
    "answer": "SELECT museum AS city FROM table_name_28 WHERE discoverer = \"jane solem\"",
    "question_en": "What is the city of the Museum that houses the specimen discovered by Jane Solem?",
    "question_th": "เมืองของพิพิธภัณฑ์ซึ่งเป็นที่เก็บตัวอย่างที่ค้นพบโดย 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_en": "What city has the museum that holds the Sue specimen?",
    "question_th": "พิพิธภัณฑ์ที่เก็บตัวอย่างซูอยู่ที่เมืองใด",
    "context": "CREATE TABLE table_name_48 (museum VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_57 WHERE roll = \"637\"",
    "question_en": "With what Name does the Roll of 637 belong?",
    "question_th": "Roll of 637 มีชื่ออะไรบ้าง?",
    "context": "CREATE TABLE table_name_57 (name VARCHAR, roll VARCHAR)"
  },
  {
    "answer": "SELECT authority FROM table_name_4 WHERE roll = \"70\"",
    "question_en": "Which is the Authority that has a Roll of 70?",
    "question_th": "หน่วยงานใดที่มีม้วน 70?",
    "context": "CREATE TABLE table_name_4 (authority VARCHAR, roll VARCHAR)"
  },
  {
    "answer": "SELECT years FROM table_name_91 WHERE decile = \"6\"",
    "question_en": "The Decile of 6 has which corresponding Years?",
    "question_th": "Decile ของ 6 มีปีใดตรงกัน?",
    "context": "CREATE TABLE table_name_91 (years VARCHAR, decile VARCHAR)"
  },
  {
    "answer": "SELECT award FROM table_name_78 WHERE director_s_ = \"candida scott knight\"",
    "question_en": "Name the award for candida scott knight",
    "question_th": "ตั้งชื่อรางวัล Candida Scott Knight",
    "context": "CREATE TABLE table_name_78 (award VARCHAR, director_s_ VARCHAR)"
  },
  {
    "answer": "SELECT recipient FROM table_name_94 WHERE award = \"£6,947\" AND film = \"jamaica\"",
    "question_en": "Name the recipient for jamaica and award of £6,947",
    "question_th": "ตั้งชื่อผู้รับจาเมกาและรางวัล 6,947 ปอนด์",
    "context": "CREATE TABLE table_name_94 (recipient VARCHAR, award VARCHAR, film VARCHAR)"
  },
  {
    "answer": "SELECT film FROM table_name_98 WHERE award = \"£3,740\"",
    "question_en": "Name the film for award of £3,740",
    "question_th": "ตั้งชื่อภาพยนตร์เพื่อรับรางวัล 3,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_en": "Name the director for maya vision international ltd",
    "question_th": "เสนอชื่อผู้อำนวยการ บริษัท มายา วิชั่น อินเตอร์เนชั่นแนล จำกัด",
    "context": "CREATE TABLE table_name_81 (director_s_ VARCHAR, recipient VARCHAR)"
  },
  {
    "answer": "SELECT film FROM table_name_66 WHERE award = \"£3,386\"",
    "question_en": "Name the film for award of £3,386",
    "question_th": "ตั้งชื่อภาพยนตร์เพื่อรับรางวัล 3,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_en": "Name the venue for 2004 and position of 25th",
    "question_th": "ตั้งชื่อสถานที่จัดงานปี 2547 และอันดับที่ 25",
    "context": "CREATE TABLE table_name_4 (venue VARCHAR, position VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_1 WHERE position = \"27th\"",
    "question_en": "Name the venue for 27th position",
    "question_th": "ตั้งชื่อสถานที่สำหรับอันดับที่ 27",
    "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_en": "What was the score of the draw in the 2005 FIFA Confederations Cup?",
    "question_th": "คะแนนของการเสมอกันในฟีฟ่าคอนเฟเดอเรชันส์คัพ 2005 เป็นเท่าใด",
    "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_en": "What is the highest Peroutka with 46 others, and less than 15 electors?",
    "question_th": "Peroutka ที่สูงที่สุดกับอีก 46 คนและผู้มีสิทธิเลือกตั้งน้อยกว่า 15 คนคืออะไร?",
    "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_en": "Who came in 3rd place in 1990?",
    "question_th": "ใครได้อันดับที่ 3 ในปี 1990?",
    "context": "CREATE TABLE table_name_20 (year VARCHAR)"
  },
  {
    "answer": "SELECT class AS pos FROM table_name_71 WHERE team = \"jml team panoz\"",
    "question_en": "Which class Pos has a Team of jml team panoz?",
    "question_th": "Pos คลาสไหนมีทีม 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_en": "Which Class Pos has a Year larger than 1997, a Team of corvette racing, a Class of gt1, and 327 laps?",
    "question_th": "Class Pos ใดที่มีหนึ่งปีมากกว่าปี 1997 มีทีมแข่งคอร์เวทท์ มีคลาส gt1 และ 327 รอบ?",
    "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_en": "What is the final result of the team that has Simara as No.5?",
    "question_th": "ผลการแข่งขันนัดสุดท้ายของทีมที่มีสิมาราเป็นอันดับ 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_en": "Which Winning Driver has a Second Driver of jimmy bryan?",
    "question_th": "นักแข่งที่ชนะคนใดมีนักแข่งคนที่สองของจิมมี่ ไบรอัน",
    "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_en": "How many average Cars Entered have a Third Driver of manny ayulo?",
    "question_th": "รถยนต์ที่เข้ามาโดยเฉลี่ยมีคนขับคนที่สามจากหลาย ๆ คน 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_en": "What are the largest Cars Entered with a Season of 1958?",
    "question_th": "รถยนต์ที่ใหญ่ที่สุดที่เข้ามาในฤดูกาลปี 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_en": "What is the largest season with a Third Driver of jimmy davies?",
    "question_th": "ฤดูกาลที่ใหญ่ที่สุดที่มีนักแข่งคนที่สามของจิมมี่ เดวีส์คืออะไร?",
    "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_en": "What are the largest Cars Entered with a Winning Driver of rodger ward, and a Season smaller than 1959?",
    "question_th": "รถที่ใหญ่ที่สุดที่เข้ามาพร้อมคนขับที่ชนะของ Rodger Ward และฤดูกาลที่เล็กกว่าปี 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_en": "What engine with more than 2 points has Brabham bt58 as Chassis?",
    "question_th": "เครื่องยนต์อะไรที่มีมากกว่า 2 คะแนน มี Brabham bt58 เป็นแชสซี?",
    "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_en": "How many points did Judd v8 has in 1989?",
    "question_th": "จัดด์ v8 มีกี่คะแนนในปี 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_en": "How many years has Sasol Jordan Yamaha as an Entrant?",
    "question_th": "Sasol Jordan Yamaha เป็นผู้เข้าแข่งขันมากี่ปีแล้ว?",
    "context": "CREATE TABLE table_name_79 (year INTEGER, entrant VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_30 WHERE loss = \"williams (3-1)\"",
    "question_en": "What was the record for the game that had a loss of Williams (3-1)?",
    "question_th": "สถิติเกมที่แพ้วิลเลียมส์ (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_en": "What was the score of the game that had a loss of Embree (1-2)?",
    "question_th": "เกมที่แพ้เอ็มบรี (1-2) สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_98 (score VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT 2007 FROM table_name_55 WHERE tournament = \"olympic games\"",
    "question_en": "What shows for 2007 at the Olympic Games as tournament.",
    "question_th": "สิ่งที่แสดงให้เห็นในปี 2550 ในกีฬาโอลิมปิกเป็นทัวร์นาเมนต์",
    "context": "CREATE TABLE table_name_55 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2009 FROM table_name_5 WHERE 2012 = \"1r\"",
    "question_en": "What shows for 2009 when the 2012 is 1R?",
    "question_th": "อะไรแสดงให้เห็นในปี 2009 เมื่อปี 2012 เป็น 1R?",
    "context": "CREATE TABLE table_name_5 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2010 FROM table_name_50 WHERE 2009 = \"q1\"",
    "question_en": "What is the 2010 when the 2009 shows Q1?",
    "question_th": "2010 คืออะไรเมื่อ 2009 แสดง Q1?",
    "context": "CREATE TABLE table_name_50 (Id VARCHAR)"
  },
  {
    "answer": "SELECT gross_revenue__2011_ FROM table_name_8 WHERE state = \"mo\"",
    "question_en": "What is the gross revenue in 2011 for MO?",
    "question_th": "รายได้รวมในปี 2554 สำหรับ 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_en": "Which state has the venue Tsukisamu dome?",
    "question_th": "รัฐใดมีสถานที่จัดงานสึกิซามุโดม?",
    "context": "CREATE TABLE table_name_30 (state VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_92 WHERE gross_revenue__2011_ = \"$739,578\"",
    "question_en": "Which city had a gross revenue in 2011 of $739,578?",
    "question_th": "เมืองใดมีรายได้รวมในปี 2011 ที่ 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_en": "What is the gross revenue in 2011 with a gross revenue in 1982 of $1,988,047?",
    "question_th": "รายได้รวมในปี 2554 โดยมีรายได้รวมในปี 2525 อยู่ที่ 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_en": "What was the grid when the driver was Mark Webber?",
    "question_th": "ตารางคืออะไรเมื่อคนขับคือ 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_en": "Who was the driver, when the constructor was Renault, and when the Time/Retired was +38.600?",
    "question_th": "ใครคือคนขับ เมื่อผู้สร้างคือ Renault และเมื่อเวลา/เกษียณคือ +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_en": "How many laps were there when the Time/Retired was +1:00.003?",
    "question_th": "มีกี่รอบเมื่อเวลา/เกษียณคือ +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_en": "How many laps were there when the Time/Retired was +14.403?",
    "question_th": "มีกี่รอบเมื่อเวลา/เกษียณคือ +14.403",
    "context": "CREATE TABLE table_name_45 (laps VARCHAR, time_retired VARCHAR)"
  },
  {
    "answer": "SELECT driver FROM table_name_10 WHERE laps = \"35\"",
    "question_en": "Who was the driver when there were 35 laps?",
    "question_th": "ใครเป็นคนขับเมื่อมี 35 รอบ?",
    "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_en": "How many laps were there when the constructor was Renault, and when the Driver was Fernando Alonso?",
    "question_th": "มีกี่รอบตอนที่ผู้สร้างคือเรโนลต์ และคนขับคือเฟอร์นันโด อลอนโซเมื่อใด",
    "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_en": "What's the Street address with a Name of New York Life Insurance building?",
    "question_th": "ที่อยู่ถนนที่มีชื่ออาคาร New York Life Insurance คืออะไร?",
    "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_en": "What's the Years as tallest with a Street address of 324 E. 11th Street?",
    "question_th": "ปีไหนที่สูงที่สุดโดยมีที่อยู่ถนน 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_en": "What is listsed as the Height feet/m and has a Street address of 2345 Grand Avenue?",
    "question_th": "สิ่งที่ระบุเป็นความสูง ฟุต/ม. และมีที่อยู่ถนนที่ 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_en": "What is the average capacity of stadiums in the City of London that belong to schools with an enrollment less than 30,000?",
    "question_th": "ความจุเฉลี่ยของสนามกีฬาในเมืองลอนดอนที่เป็นของโรงเรียนที่มีผู้ลงทะเบียนน้อยกว่า 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_en": "Who had a score of 69-70=139?",
    "question_th": "ใครได้คะแนน 69-70=139 คะแนน?",
    "context": "CREATE TABLE table_name_25 (player VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_30 WHERE result = \"5–0\"",
    "question_en": "What was the score of the game that had a result of 5–0?",
    "question_th": "คะแนนของเกมที่เป็นผล 5–0 คืออะไร?",
    "context": "CREATE TABLE table_name_30 (score VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT AVG(heat) FROM table_name_99 WHERE time = \"2:23.95\"",
    "question_en": "What is the heat number of the athlete who finished in 2:23.95?",
    "question_th": "เลขฮีตของนักกีฬาที่เข้าเส้นชัยในเวลา 2:23.95 คือเท่าไร?",
    "context": "CREATE TABLE table_name_99 (heat INTEGER, time VARCHAR)"
  },
  {
    "answer": "SELECT lane FROM table_name_6 WHERE nationality = \"zambia\"",
    "question_en": "Which lane did the athlete from Zambia swim in?",
    "question_th": "นักกีฬาจากแซมเบียว่ายน้ำในเลนใด",
    "context": "CREATE TABLE table_name_6 (lane VARCHAR, nationality VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_69 WHERE record = \"4-5\"",
    "question_en": "Who was the opponent at the game when the record was 4-5?",
    "question_th": "คู่ต่อสู้ในเกมเมื่อสถิติอยู่ที่ 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_en": "What is the average for 2009 when 2001 is more than 0, 1996 is less than 1 and 2004 is more than 2",
    "question_th": "ค่าเฉลี่ยสำหรับปี 2552 คือเท่าใด เมื่อปี 2544 มากกว่า 0 ปี 2539 น้อยกว่า 1 และปี 2547 มากกว่า 2",
    "context": "CREATE TABLE table_name_60 (Id VARCHAR)"
  },
  {
    "answer": "SELECT SUM(2009) FROM table_name_5 WHERE 1989 < 0",
    "question_en": "What is the listing for 2009 when 1989 is less than 0?",
    "question_th": "รายการสำหรับปี 2009 เมื่อปี 1989 น้อยกว่า 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_en": "what is the average for 2005 when 1995 is more than 3, 1996 is less than 4, and 2011 is more than 5?",
    "question_th": "ค่าเฉลี่ยสำหรับปี 2548 คือเท่าใดเมื่อปี 1995 มากกว่า 3 ปี 1996 น้อยกว่า 4 และปี 2011 มากกว่า 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_en": "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?",
    "question_th": "รายการของปี 1999 คืออะไรเมื่อปี 1990 มากกว่า 0, 2003 คือ 3, 2007 มากกว่า 1 และ 1996 มากกว่า 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_en": "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?",
    "question_th": "รายการสำหรับปี 2555 คืออะไรเมื่อปี 2547 มากกว่า 0 ปี 2551 มากกว่า 1 ปี 1994 คือ 8 และปี 2548 น้อยกว่า 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_en": "what is the listing for 1992 when 1999 is more than 1, 2008 is less than 2 and 2003 is less than 2?",
    "question_th": "รายการสำหรับปี 1992 คืออะไรเมื่อปี 1999 มากกว่า 1, 2008 น้อยกว่า 2 และ 2003 น้อยกว่า 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_en": "How many % of 1 Rep Max(Last Set) has a Set 4 of 145lb x 5reps?",
    "question_th": "กี่ % ของ 1 Rep Max (ชุดสุดท้าย) มีชุดที่ 4 ที่ 145 ปอนด์ x 5 ครั้ง",
    "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_en": "How many lbs does a set 4 of 115lb x 8reps have?",
    "question_th": "ชุดที่ 4 ของ 115 ปอนด์ x 8 ครั้งมีกี่ปอนด์?",
    "context": "CREATE TABLE table_name_53 (volume_lbs VARCHAR, set_4 VARCHAR)"
  },
  {
    "answer": "SELECT set_3 FROM table_name_1 WHERE week = 6",
    "question_en": "What is set 3 on week 6?",
    "question_th": "ชุดที่ 3 ในสัปดาห์ที่ 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_en": "What is the per-capita GDP for the country with an overall GDP of 156.640?",
    "question_th": "GDP ต่อหัวของประเทศที่มี GDP รวมเท่ากับ 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_en": "What is the per-capita GDP of the country with an overall GDP of 80.955?",
    "question_th": "GDP ต่อหัวของประเทศที่มี GDP รวม 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²_ = \"871,980\"",
    "question_en": "Which country has an area of 871,980 square km?",
    "question_th": "ประเทศใดมีพื้นที่ 871,980 ตารางกิโลเมตร",
    "context": "CREATE TABLE table_name_15 (member_countries VARCHAR, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_74 WHERE partner = \"dora djilianova\" AND date = \"october 1, 1995\"",
    "question_en": "On October 1, 1995 with Dora Djilianova as a partner, what was the outcome of the match?",
    "question_th": "วันที่ 1 ตุลาคม 1995 โดยมี ดอร่า จิเลียโนวา เป็นคู่หู ผลการแข่งขันเป็นอย่างไรบ้าง?",
    "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_en": "With Lindsay Lee-Waters as a partner, what was the final score?",
    "question_th": "โดยมีลินด์ซีย์ ลี-วอเทอร์สเป็นคู่หู คะแนนสุดท้ายเป็นอย่างไร?",
    "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_en": "Which score has a Date of august 17?",
    "question_th": "สกอร์ไหนมีวันที่ 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_en": "Which score has an Opponent of @ athletics, and a Record of 76-57?",
    "question_th": "คะแนนใดมีคู่ต่อสู้ของ @ กรีฑา และสถิติ 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_en": "Which loss has a Record of 67-51?",
    "question_th": "แพ้นัดไหนมีสถิติ 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_en": "Which position has 2 wins in 1992?",
    "question_th": "ตำแหน่งใดมีชัยชนะ 2 ครั้งในปี 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_en": "How many wins have a Series of formula nippon, and a Position of 8th?",
    "question_th": "มีซีรีส์ Nippon สูตรชนะกี่ครั้งและมีตำแหน่งที่ 8?",
    "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_en": "What is the smallest season with 6 races, 2 wins, and a Series of all-japan gt championship>",
    "question_th": "ฤดูกาลที่เล็กที่สุดคืออะไรด้วย 6 การแข่งขัน ชัยชนะ 2 ครั้ง และ 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_en": "What was Mark Brooks total score when he finished more than 2 above par?",
    "question_th": "คะแนนรวมของ Mark Brooks เป็นเท่าใดเมื่อเขาจบมากกว่า 2 เหนือพาร์?",
    "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_en": "What was the winning to par score of the 1993 PGA Championship?",
    "question_th": "การชนะคะแนนพาร์ของ PGA Championship ปี 1993 คืออะไร?",
    "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_en": "How many constructions has a Wheel arrange- ment of 4-4-0?",
    "question_th": "โครงสร้างล้อมีกี่แบบ 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_en": "Who built the order on November 1881 of more than 54 TC&StL no. (1883–84)?",
    "question_th": "ซึ่งจัดสร้างเมื่อเดือนพฤศจิกายน พ.ศ. 2424 จำนวน TC&StL มากกว่า 54 องค์ เลขที่ (พ.ศ. 2426–2484)?",
    "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_en": "What is the Season Outcome for the Sussex Central School?",
    "question_th": "ผลลัพธ์ตามฤดูกาลของ 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_en": "What is the School of Sussex Tech's Team?",
    "question_th": "ทีมงานของ School of Sussex Tech คืออะไร?",
    "context": "CREATE TABLE table_name_31 (team VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_68 WHERE school = \"milford\"",
    "question_en": "What is the Team for the Milford School?",
    "question_th": "ทีมของโรงเรียนมิลฟอร์ดคืออะไร?",
    "context": "CREATE TABLE table_name_68 (team VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_79 WHERE rating = \"+33\"",
    "question_en": "Which season was one of the players rated +33?",
    "question_th": "ฤดูกาลใดคือหนึ่งในผู้เล่นที่มีเรต +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_en": "What is the name of the team that had 1 win and a rating of +85?",
    "question_th": "ชื่อของทีมที่ชนะ 1 ครั้งและเรตติ้ง +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_en": "Which season was one of the players rated +98?",
    "question_th": "ฤดูกาลใดคือหนึ่งในผู้เล่นที่มีเรต +98?",
    "context": "CREATE TABLE table_name_6 (season VARCHAR, rating VARCHAR)"
  },
  {
    "answer": "SELECT rating FROM table_name_62 WHERE player = \"patrice bergeron\"",
    "question_en": "What is Patrice Bergeron's rating?",
    "question_th": "เรตติ้งของ Patrice Bergeron คืออะไร?",
    "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_en": "Position of defensive tackle, and a Round of 4, and a Pick # smaller than 36 has what overall average?",
    "question_th": "ตำแหน่งสกัดกั้น และรอบ 4 ทีม และตัวเลือก # ที่น้อยกว่า 36 มีค่าเฉลี่ยโดยรวมเท่าใด",
    "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_en": "Pick # that has a Name of jaimie thomas, and a Round smaller than 7 is how many numbers?",
    "question_th": "เลือก # ที่มีชื่อ jaimie thomas และรอบที่เล็กกว่า 7 เท่ากับกี่ตัวเลข",
    "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_en": "What is the muzzle device with a 1:7 barrel twist and a stock 4th generation?",
    "question_th": "อุปกรณ์ปากกระบอกปืนที่มีการบิดลำกล้อง 1:7 และสต็อกรุ่นที่ 4 คืออะไร?",
    "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_en": "When was the opponent Poland and the match type EC -qualifier?",
    "question_th": "คู่ต่อสู้โปแลนด์คือเมื่อใดและประเภทการแข่งขัน EC -รอบคัดเลือก?",
    "context": "CREATE TABLE table_name_12 (date VARCHAR, opponenent VARCHAR, match_type VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_96 WHERE opponenent = \"germany\"",
    "question_en": "Where was the opponent Germany?",
    "question_th": "ฝ่ายตรงข้ามเยอรมนีอยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_96 (location VARCHAR, opponenent VARCHAR)"
  },
  {
    "answer": "SELECT opponenent FROM table_name_70 WHERE result = \"2-2 (draw)\"",
    "question_en": "Who was the opponent when the result was 2-2 (draw)?",
    "question_th": "คู่ต่อสู้เมื่อผลออกมาเป็น 2-2 (เสมอ) คือใคร?",
    "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_en": "What was the match type in Budapest where the opponent was Luxembourg?",
    "question_th": "ประเภทการแข่งขันในบูดาเปสต์ที่คู่ต่อสู้คือลักเซมเบิร์กคืออะไร?",
    "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_en": "Which player has the score 72-67-69=208?",
    "question_th": "ผู้เล่นคนไหนมีคะแนน 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_en": "Who has the par score of 70-76-68-214?",
    "question_th": "ใครมีคะแนนพาร์ 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_en": "Which country has the score 70-76-68-214?",
    "question_th": "ประเทศไหนมีคะแนน 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_en": "when was the first performance for the ballet with peter mazurowski in the final cast?",
    "question_th": "การแสดงบัลเล่ต์ครั้งแรกกับปีเตอร์ มาซูรอฟสกี้ ในการแสดงรอบสุดท้ายคือเมื่อใด",
    "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_en": "who had the first performance on 3 july 2011?",
    "question_th": "ใครมีการแสดงครั้งแรกในวันที่ 3 กรกฎาคม 2554?",
    "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_en": "who had a last performance of 3 july 2011?",
    "question_th": "ใครมีการแสดงครั้งสุดท้ายวันที่ 3 กรกฎาคม 2554?",
    "context": "CREATE TABLE table_name_18 (name VARCHAR, last_performance VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_73 WHERE style = \"ballet/ gymnastics\"",
    "question_en": "what's the status in the style of ballet/ gymnastics?",
    "question_th": "บัลเลต์/ยิมนาสติกมีสถานะเป็นอย่างไรบ้าง?",
    "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_en": "what's the name with final cast status and first performance on 12 november 2011?",
    "question_th": "สถานะนักแสดงรอบสุดท้ายและการแสดงครั้งแรกในวันที่ 12 พฤศจิกายน 2554 ชื่ออะไร?",
    "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_en": "what last performance has past status, ballet as style and tommy batchelor?",
    "question_th": "การแสดงครั้งล่าสุดมีสถานะในอดีต บัลเล่ต์ในฐานะสไตล์ และทอมมี่แบทช์?",
    "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_en": "How many goals was by Rix from Eng who started before 2005 in the youth system?",
    "question_th": "ริกซ์จากอังกฤษยิงได้กี่ประตูก่อนปี 2005 ในระบบเยาวชน?",
    "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_en": "Where is Rix from?",
    "question_th": "ริกซ์มาจากไหน?",
    "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_en": "What is the specification of the locomotives with a total produced more than 19 and a model of fb-1?",
    "question_th": "ตู้รถไฟที่มียอดผลิตเกิน 19 คัน และรุ่น 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_en": "What is the build date of the locomotives with a total produced less than 45 and a fb-2 model?",
    "question_th": "ตู้รถไฟที่มียอดผลิตไม่ถึง 45 และรุ่น fb-2 ผลิตเมื่อใด?",
    "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_en": "What is the prime mover of the locomotive with a fa-2 model?",
    "question_th": "อะไรคือผู้เสนอญัตติสำคัญของหัวรถจักรที่มีรุ่น fa-2?",
    "context": "CREATE TABLE table_name_16 (prime_mover VARCHAR, model VARCHAR)"
  },
  {
    "answer": "SELECT build_date FROM table_name_55 WHERE model = \"fa-2\"",
    "question_en": "What is the build date of the locomotive with a fa-2 model?",
    "question_th": "หัวรถจักรรุ่น FA-2 สร้างเมื่อใด?",
    "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_en": "What region has a transmitter located at Mount Sugarloaf?",
    "question_th": "ภูมิภาคใดมีเครื่องส่งสัญญาณอยู่ที่ 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_en": "Name the finals for prelim of out of playoffs",
    "question_th": "ตั้งชื่อรอบชิงชนะเลิศสำหรับรอบตัดเชือกเบื้องต้น",
    "context": "CREATE TABLE table_name_71 (finals VARCHAR, prelim VARCHAR)"
  },
  {
    "answer": "SELECT music_director FROM table_name_35 WHERE film = \"vettaiyaadu vilaiyaadu\"",
    "question_en": "Who is the musical director of the film Vettaiyaadu vilaiyaadu?",
    "question_th": "ใครคือผู้กำกับเพลงของภาพยนตร์เรื่อง 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_en": "What is the 2007 film in Hindi with a music director Shantanu moitra?",
    "question_th": "ภาพยนตร์เรื่องภาษาฮินดีปี 2007 ที่มีผู้กำกับเพลง 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_en": "What is the number of losses that coach John Kowalski has with a PTS smaller than 9?",
    "question_th": "จำนวนการสูญเสียที่โค้ช John Kowalski มีโดย PTS น้อยกว่า 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_en": "What is the average PCT when it has a PTS smaller than 9 a wins larger than 1?",
    "question_th": "PCT เฉลี่ยเป็นเท่าใดเมื่อมี PTS น้อยกว่า 9 และชนะมากกว่า 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_en": "What is the sum of PTS when there is a PCT smaller than 0.1?",
    "question_th": "ผลรวมของ PTS เมื่อมี PCT น้อยกว่า 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_en": "What coach has a PCT larger than 0.1, PTS larger than 9 and a loss of 19?",
    "question_th": "โค้ชคนใดมี PCT มากกว่า 0.1, PTS มากกว่า 9 และแพ้ 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_en": "What's the name of spain rank greater than 2?",
    "question_th": "ประเทศสเปนอันดับมากกว่า 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_en": "Spain had what time with lanes smaller than 4?",
    "question_th": "สเปนมีเวลาเท่าไหร่กับเลนที่เล็กกว่า 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_en": "What's the smallest rank of noriko inada?",
    "question_th": "โนริโกะ อินาดะ อันดับน้อยที่สุดคือเท่าไร?",
    "context": "CREATE TABLE table_name_76 (rank INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(lost) FROM table_name_34 WHERE played > 30",
    "question_en": "How many total losses have teams that played more than 30 games?",
    "question_th": "ทีมที่เล่นมากกว่า 30 เกมแพ้ทั้งหมดกี่ทีม?",
    "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_en": "What is the number of the rank when the time is 2:15.98, in a lane larger than 7?",
    "question_th": "อันดับเมื่อเวลา 2:15.98 น. ในเลนที่มากกว่า 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_en": "What is the number of the rank for the name of Chen Yan in a lane less than 2?",
    "question_th": "ชื่อเฉินหยานในเลนที่น้อยกว่า 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_en": "What is the smallest lane for rank 6?",
    "question_th": "เลนที่เล็กที่สุดสำหรับอันดับ 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_en": "What's the total for a league cup less than 1?",
    "question_th": "ลีกคัพน้อยกว่า 1 ผลรวมเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_30 (league VARCHAR, total INTEGER)"
  },
  {
    "answer": "SELECT SUM(fa_cup) FROM table_name_3 WHERE league < 1",
    "question_en": "What's the FA Cup that has a league less than 1?",
    "question_th": "FA Cup ที่มีลีกน้อยกว่า 1 คืออะไร?",
    "context": "CREATE TABLE table_name_3 (fa_cup INTEGER, league INTEGER)"
  },
  {
    "answer": "SELECT MAX(villages) FROM table_name_92 WHERE hanzi = \"南流乡\" AND population > 24 OFFSET 802",
    "question_en": "Which town has the most villages with the hanzi 南流乡 and a population larger than 24,802?",
    "question_th": "เมืองใดมีหมู่บ้านที่มี Hanzi 南流乡 มากที่สุด และมีประชากรมากกว่า 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_en": "What position did lap 296 come in?",
    "question_th": "รอบ 296 เข้ามาตำแหน่งไหนครับ?",
    "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_en": "How many games did the Club that has a try bonus of 4 and 391 points against play ?",
    "question_th": "คลับมีกี่เกมที่ได้รับโบนัสลองเล่น 4 และ 391 แต้มต่อการเล่น?",
    "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_en": "How many points against did Carmarthen Athletic RFC have when they played 22 games ?",
    "question_th": "คาร์มาร์เธน แอธเลติก อาร์เอฟซี ได้กี่แต้มเมื่อเล่น 22 เกม ?",
    "context": "CREATE TABLE table_name_32 (points_against VARCHAR, played VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_name_93 WHERE lost = \"10\"",
    "question_en": "Which club lost 10 games ?",
    "question_th": "สโมสรใดแพ้ 10 เกม?",
    "context": "CREATE TABLE table_name_93 (club VARCHAR, lost VARCHAR)"
  },
  {
    "answer": "SELECT points_for FROM table_name_43 WHERE tries_for = \"77\"",
    "question_en": "How many points for did the club that had 77 tries for have ?",
    "question_th": "สโมสรที่พยายาม 77 ครั้งได้กี่คะแนน?",
    "context": "CREATE TABLE table_name_43 (points_for VARCHAR, tries_for VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_name_8 WHERE try_bonus = \"2\"",
    "question_en": "Which club has a try bonus of 2 ?",
    "question_th": "สโมสรใดมีโบนัสลอง 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_en": "Name the most attendance for october 11",
    "question_th": "รายชื่อผู้เข้าร่วมมากที่สุดในวันที่ 11 ตุลาคม",
    "context": "CREATE TABLE table_name_75 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_52 WHERE date = \"october 19\"",
    "question_en": "Name the visitor for october 19",
    "question_th": "ตั้งชื่อผู้เยี่ยมชมสำหรับวันที่ 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_en": "The highest year for the series titled dragon laws ii: kidnapped is what?",
    "question_th": "ปีสูงสุดสำหรับซีรีส์เรื่อง Dragon Law II: Kidnapped คืออะไร?",
    "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_en": "The series titled dragon laws i: the undercover has what role?",
    "question_th": "ซีรีส์เรื่อง Dragon Law i: The Undercover มีบทบาทอะไรบ้าง?",
    "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_en": "Which athlete has the fastest time of 15.82?",
    "question_th": "นักกีฬาคนไหนทำเวลาได้เร็วที่สุด 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_en": "What is the total number of years that an entrant had more than 0 points?",
    "question_th": "จำนวนปีที่ผู้เข้าร่วมมีมากกว่า 0 คะแนนคือเท่าใด",
    "context": "CREATE TABLE table_name_87 (year VARCHAR, points INTEGER)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_name_65 WHERE engine = \"brm straight-4\"",
    "question_en": "Name the total number of years for brm straight-4",
    "question_th": "ตั้งชื่อจำนวนปีทั้งหมดสำหรับ brm ตรง-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_en": "Name the total number of points for chassis of bmw t269 (f2)",
    "question_th": "บอกจำนวนคะแนนรวมแชสซีของ 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_en": "Whats the highest Promotions that has a Team of Pallacanestro Messina, along with Relegations larger than 0?",
    "question_th": "อะไรคือการเลื่อนตำแหน่งสูงสุดที่มีทีมของ Pallacanestro Messina พร้อมด้วยการตกชั้นที่มากกว่า 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_en": "What are the lowest points with a Chassis of zakspeed 841, and a Year smaller than 1985?",
    "question_th": "จุดต่ำสุดด้วยแชสซีของ zakspeed 841 และหนึ่งปีที่เล็กกว่าปี 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_en": "What is the lowest year with tyres in g and less than 0 points?",
    "question_th": "ปีไหนต่ำสุดที่มียางเป็น g และน้อยกว่า 0 คะแนน?",
    "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_en": "Which year has an Engine(s) of yamaha v8?",
    "question_th": "ปีใดที่มีเครื่องยนต์ของ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_en": "What are the average points with a Chassis of zakspeed 881?",
    "question_th": "คะแนนเฉลี่ยของแชสซีของ 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_en": "Which League has a Venue of martin luther king, jr. recreation center?",
    "question_th": "ลีกไหนมีสถานที่ของ martin luther king, jr. ศูนย์นันทนาการ?",
    "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_en": "Which Championships (Years) have a League of milb, florida state league, and a Venue of ed smith stadium?",
    "question_th": "การแข่งขันชิงแชมป์ (ปี) ใดที่มี League of Milb, ลีกประจำรัฐฟลอริดา และสถานที่จัดงานของ 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_en": "Which Sport has a League of continental basketball league, and a Venue of avalon middle school?",
    "question_th": "กีฬาใดที่มีลีกบาสเกตบอลลีกระดับทวีป และสถานที่ของโรงเรียนมัธยมต้นอาวาลอน",
    "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_en": "Which Venue has a Sport of baseball, Championships (Years) of 0, a League of milb, florida state league, and a Club of jupiter hammerheads?",
    "question_th": "สถานที่ใดที่มีกีฬาเบสบอล, แชมเปี้ยนชิพ (ปี) 0, ลีกมิลค์, ลีกรัฐฟลอริดา และคลับหัวค้อนจูปิเตอร์",
    "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_en": "Which club has a League of american basketball association, and a Venue of tba?",
    "question_th": "สโมสรใดมีสมาคมบาสเกตบอลลีกอเมริกัน และสถานที่จัดงาน tba?",
    "context": "CREATE TABLE table_name_86 (club VARCHAR, league VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT area FROM table_name_71 WHERE years = \"1–8\" AND decile < 7 AND name = \"waikari school\"",
    "question_en": "Which area has Years of 1–8, a Decile smaller than 7, and a Name of waikari school?",
    "question_th": "พื้นที่ใดที่มีปี 1-8, Decile น้อยกว่า 7 และชื่อโรงเรียนไวคาริ",
    "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–8\" AND area = \"waipara\"",
    "question_en": "What is the average decile with Years of 1–8, and an Area of waipara?",
    "question_th": "Decile เฉลี่ยในช่วงปีที่ 1-8 และพื้นที่ไวปาราคือเท่าใด",
    "context": "CREATE TABLE table_name_98 (decile INTEGER, years VARCHAR, area VARCHAR)"
  },
  {
    "answer": "SELECT area FROM table_name_9 WHERE years = \"1–8\" AND name = \"broomfield school\"",
    "question_en": "Which area has Years of 1–8, and a Name of broomfield school?",
    "question_th": "พื้นที่ใดมีชั้นปีที่ 1–8 และชื่อโรงเรียนบรูมฟิลด์",
    "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_en": "What is the smallest roll with a Decile larger than 6, and a Name of broomfield school?",
    "question_th": "ม้วนที่เล็กที่สุดที่มี Decile มากกว่า 6 คืออะไร และชื่อของโรงเรียนบรูมฟิลด์คืออะไร",
    "context": "CREATE TABLE table_name_40 (roll INTEGER, decile VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_97 WHERE roll = 270",
    "question_en": "Which name has a Roll of 270?",
    "question_th": "ชื่ออะไรมีม้วน 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_en": "Who directed the episode written by Dan Serafin and aired on July 23, 2008?",
    "question_th": "ใครเป็นผู้กำกับตอนที่เขียนโดย Dan Serafin และออกอากาศเมื่อวันที่ 23 กรกฎาคม 2551",
    "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_en": "What is the title of the episode originally aired on February 2, 2008?",
    "question_th": "ตอนที่ออกอากาศครั้งแรกเมื่อวันที่ 2 กุมภาพันธ์ 2551 ชื่อว่าอะไร",
    "context": "CREATE TABLE table_name_65 (title VARCHAR, original_airdate VARCHAR)"
  },
  {
    "answer": "SELECT money_requested__£_ FROM table_name_2 WHERE entrepreneur_s_ = \"james seddon\"",
    "question_en": "How much money did James Seddon request?",
    "question_th": "James Seddon ขอเงินเท่าไหร่?",
    "context": "CREATE TABLE table_name_2 (money_requested__£_ VARCHAR, entrepreneur_s_ VARCHAR)"
  },
  {
    "answer": "SELECT entrepreneur_s_ FROM table_name_28 WHERE first_aired = \"24 august 2006\"",
    "question_en": "Which Entrepreneur(s) first aired on 24 August 2006?",
    "question_th": "ผู้ประกอบการคนไหนออกอากาศครั้งแรกเมื่อวันที่ 24 สิงหาคม พ.ศ. 2549?",
    "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_en": "Which Entrepreneur(s) have mixalbum?",
    "question_th": "ผู้ประกอบการคนไหนที่มีมิกซ์อัลบั้ม?",
    "context": "CREATE TABLE table_name_69 (entrepreneur_s_ VARCHAR, company_or_product_name VARCHAR)"
  },
  {
    "answer": "SELECT money_requested__£_ FROM table_name_78 WHERE entrepreneur_s_ = \"ian chamings\"",
    "question_en": "How much money did Ian Chamings request?",
    "question_th": "Ian Chamings ขอเงินเท่าไหร่?",
    "context": "CREATE TABLE table_name_78 (money_requested__£_ VARCHAR, entrepreneur_s_ VARCHAR)"
  },
  {
    "answer": "SELECT investing_dragon_s_ FROM table_name_74 WHERE money_requested__£_ = \"100,000\" AND company_or_product_name = \"autosafe\"",
    "question_en": "Which Investing Dragon(s) requested 100,000 in money and has autosafe?",
    "question_th": "Investing Dragon ตัวไหนที่ขอเงิน 100,000 และมีตู้เซฟอัตโนมัติ?",
    "context": "CREATE TABLE table_name_74 (investing_dragon_s_ VARCHAR, money_requested__£_ VARCHAR, company_or_product_name VARCHAR)"
  },
  {
    "answer": "SELECT height_of_bridge_structure FROM table_name_8 WHERE opened < 2011 AND name = \"anqing bridge\"",
    "question_en": "How tall is the Anqing Bridge which opened prior to 2011?",
    "question_th": "สะพาน Anqing ซึ่งเปิดก่อนปี 2554 มีความสูงเท่าไร",
    "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_en": "Where did the cable-stayed Badong Bridge  open in 2005?",
    "question_th": "สะพานปาตงที่ขึงเคเบิลเปิดที่ไหนในปี 2548",
    "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_en": "Name the average year for janaprakal chandruang",
    "question_th": "ตั้งชื่อปีเฉลี่ยของจนาภาคัลจันทรวง",
    "context": "CREATE TABLE table_name_53 (year INTEGER, performing_arts VARCHAR)"
  },
  {
    "answer": "SELECT literature FROM table_name_72 WHERE performing_arts = \"pradit prasarttong\"",
    "question_en": "Name the literature for pradit prasarttong",
    "question_th": "ตั้งชื่อวรรณกรรมของ ประดิษฐ ปราสาททอง",
    "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_en": "What was the first year Fabrice Soulier was a runner-up?",
    "question_th": "ปีแรกที่ฟาบริซ ซูลิเยร์ได้รองแชมป์คืออะไร?",
    "context": "CREATE TABLE table_name_43 (year INTEGER, runner_up VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(entrants) FROM table_name_21 WHERE year = 2011",
    "question_en": "How many entrants were there in 2011?",
    "question_th": "มีผู้เข้าร่วมกี่คนในปี 2554?",
    "context": "CREATE TABLE table_name_21 (entrants VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_95 WHERE laps = 1059",
    "question_en": "What was the rank of Bobby Grim when he finished 1059 laps?",
    "question_th": "Bobby Grim จบ 1,059 รอบได้อันดับเท่าไหร่?",
    "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_en": "What is the rd., time of the match with a win result, a tko type, and Carlos Molina as the opponent?",
    "question_th": "ถ. คืออะไร เวลาของการแข่งขันที่มีผลชนะ ประเภททีเคโอ และคาร์ลอส โมลินาเป็นคู่ต่อสู้?",
    "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_en": "What is the record of the match on 2009-07-18?",
    "question_th": "บันทึกการแข่งขันเมื่อวันที่ 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_en": "What is the type of the match with a win result and Michael Gomez as the opponent?",
    "question_th": "แมตช์ประเภทไหนที่ผลชนะและมีไมเคิล โกเมซเป็นคู่ต่อสู้?",
    "context": "CREATE TABLE table_name_79 (type VARCHAR, res VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT goals FROM table_name_66 WHERE caps = 48",
    "question_en": "What were the goals when the caps were set at 48?",
    "question_th": "เป้าหมายเมื่อตั้งแคปไว้ที่ 48 คืออะไร?",
    "context": "CREATE TABLE table_name_66 (goals VARCHAR, caps VARCHAR)"
  },
  {
    "answer": "SELECT caps FROM table_name_22 WHERE player = \"mile sterjovski\"",
    "question_en": "How many caps did the player Mile Sterjovski have?",
    "question_th": "ผู้เล่น Mile sterjovski มีแคปกี่ตัว?",
    "context": "CREATE TABLE table_name_22 (caps VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT goals FROM table_name_59 WHERE player = \"mile sterjovski\"",
    "question_en": "What are the goals of Mile Sterjovski as a player?",
    "question_th": "เป้าหมายของไมล์ สเตอร์ยอฟสกี้ในฐานะนักเตะคืออะไร?",
    "context": "CREATE TABLE table_name_59 (goals VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(caps) FROM table_name_32 WHERE player = \"mitchell duke\"",
    "question_en": "How many caps did Mitchell Duke have overall?",
    "question_th": "Mitchell Duke มีทั้งหมดกี่แคป?",
    "context": "CREATE TABLE table_name_32 (caps VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_83 WHERE date = \"16 february 2003\"",
    "question_en": "Which opponent has a Date of 16 february 2003?",
    "question_th": "คู่ต่อสู้คนใดมีวันที่ 16 กุมภาพันธ์ พ.ศ. 2546?",
    "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_en": "Which date has an A venue with an Opponent of stoke city?",
    "question_th": "วันที่ใดมีสนาม A กับฝ่ายตรงข้ามสโต๊คซิตี้?",
    "context": "CREATE TABLE table_name_61 (date VARCHAR, venue VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_51 WHERE round = \"r5\"",
    "question_en": "Which opponent has a Round of r5?",
    "question_th": "คู่ต่อสู้คนไหนมีรอบ 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_en": "Which Scorers have a Venue of A, and an Opponent of arsenal?",
    "question_th": "ผู้ทำประตูคนใดมีสนาม A และฝ่ายตรงข้ามของคลังแสง?",
    "context": "CREATE TABLE table_name_41 (scorers VARCHAR, venue VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_22 WHERE round = \"qf replay\"",
    "question_en": "Which Opponent has a Round of qf replay?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีรอบการเล่นซ้ำของ qf?",
    "context": "CREATE TABLE table_name_22 (opponent VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_84 WHERE date = \"april 6\"",
    "question_en": "Who took the loss on the April 6 game?",
    "question_th": "ใครเป็นผู้แพ้ในเกมวันที่ 6 เมษายน?",
    "context": "CREATE TABLE table_name_84 (loss VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_75 WHERE date = \"april 15\"",
    "question_en": "What was the record after the April 15 game?",
    "question_th": "สถิติหลังเกมวันที่ 15 เมษายนเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_75 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_38 WHERE record = \"10-13\"",
    "question_en": "Who was the opponent that led to a 10-13 record?",
    "question_th": "คู่ต่อสู้ที่นำสถิติ 10-13 คือใคร?",
    "context": "CREATE TABLE table_name_38 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_14 WHERE date = \"april 6\"",
    "question_en": "What is the record after the April 6 game?",
    "question_th": "สถิติหลังเกมวันที่ 6 เมษายน เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_14 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_73 WHERE date = \"april 12\"",
    "question_en": "What was the score for the April 12 game?",
    "question_th": "สกอร์เกมวันที่ 12 เมษายนเป็นอย่างไรบ้าง?",
    "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_en": "What team has the most wins with at least 18 goals and less than 5 losses?",
    "question_th": "ทีมใดชนะมากที่สุดโดยยิงอย่างน้อย 18 ประตูและแพ้น้อยกว่า 5 ครั้ง?",
    "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_en": "How many times has the Cornwall HC team, that has scored more than 18 goals, lost ?",
    "question_th": "กี่ครั้งแล้วที่ทีม Cornwall HC ที่ยิงเกิน 18 ประตู แพ้ ?",
    "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–50025\"",
    "question_en": "What is the series number that has a production code of 50021–50025?",
    "question_th": "หมายเลขซีรีส์ที่มีรหัสการผลิต 50021–50025 คืออะไร",
    "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_en": "Which county team has jimmy finn as the player?",
    "question_th": "ทีมเขตไหนมีจิมมี่ ฟินน์เป็นนักเตะ?",
    "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_en": "How many team numbers have john keane as the player?",
    "question_th": "จอห์น คีน เป็นนักเตะจำนวนกี่ทีม?",
    "context": "CREATE TABLE table_name_93 (team_number VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_15 WHERE player = \"john keane\"",
    "question_en": "Which position has john keane as the player?",
    "question_th": "ตำแหน่งไหนที่มี จอห์น คีน เป็นนักเตะ?",
    "context": "CREATE TABLE table_name_15 (position VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_61 WHERE record = \"27-17\"",
    "question_en": "What was the loss of the game when the record was 27-17?",
    "question_th": "ความพ่ายแพ้ของเกมเมื่อสถิติอยู่ที่ 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_en": "What are the smallest goals with wins smaller than 16, and a Draws larger than 14?",
    "question_th": "ประตูที่เล็กที่สุดที่ชนะน้อยกว่า 16 และเสมอมากกว่า 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_en": "What are the average wins with a Points of 42-2, and Goals against of 67, and Played smaller than 44?",
    "question_th": "ชัยชนะโดยเฉลี่ยด้วยคะแนน 42-2 และประตูต่อ 67 และเล่นน้อยกว่า 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ètic\" AND goals_for > 56",
    "question_en": "Which average wins have a Club of barcelona atlètic, and Goals for larger than 56?",
    "question_th": "ชัยชนะโดยเฉลี่ยใดที่มีสโมสรบาร์เซโลน่า แอตเลติก และประตูมากกว่า 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_en": "Which lowest position has goals against smaller than 78, Points of 42-2, and Wins larger than 15?",
    "question_th": "ตำแหน่งต่ำสุดใดที่มีประตูน้อยกว่า 78 คะแนน 42-2 และชนะมากกว่า 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_en": "Which lowest played has a Position of 2, and Goals against larger than 53?",
    "question_th": "การเล่นต่ำสุดใดที่มีตำแหน่ง 2 และประตูต่อมากกว่า 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_en": "How many goal differences have Played larger than 44?",
    "question_th": "มีกี่ประตูที่แตกต่างที่เล่นมากกว่า 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_en": "What year was the race in Vienna, Austria?",
    "question_th": "การแข่งขันที่เวียนนา ประเทศออสเตรีย จัดขึ้นในปีใด",
    "context": "CREATE TABLE table_name_72 (year INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT extra FROM table_name_80 WHERE year = 2002 AND result = \"8th\"",
    "question_en": "What event (Extra) in 2002 did the competitor compete in and place 8th?",
    "question_th": "เหตุการณ์ใด (พิเศษ) ในปี 2545 ผู้แข่งขันเข้าแข่งขันและอันดับที่ 8",
    "context": "CREATE TABLE table_name_80 (extra VARCHAR, year VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_29 WHERE tournament = \"olympic games\"",
    "question_en": "Where was the Olympic Games held?",
    "question_th": "การแข่งขันกีฬาโอลิมปิกจัดขึ้นที่ไหน?",
    "context": "CREATE TABLE table_name_29 (venue VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT try_bonus FROM table_name_82 WHERE points_for = \"418\"",
    "question_en": "That is the value for Try bonus when the value for Points is 418?",
    "question_th": "นั่นคือมูลค่าของโบนัสการลองเมื่อมูลค่าของคะแนนคือ 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_en": "What is the Club, when the value for Played is 22, and when the value for Tries is 41?",
    "question_th": "คลับคืออะไร เมื่อมูลค่าของการเล่นคือ 22 และเมื่อมูลค่าของความพยายามคือ 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_en": "What is the value for Drawn, when the value for Losing bonus is 6?",
    "question_th": "มูลค่าของ Drawn คืออะไร เมื่อมูลค่าของโบนัสที่แพ้คือ 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_en": "What is the value for Lost, when the value for Try bonus is 2, and when the value for Losing bonus is 4?",
    "question_th": "ค่าของ Lost คืออะไร เมื่อมูลค่าของโบนัส Try คือ 2 และเมื่อมูลค่าของโบนัสการแพ้คือ 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_en": "What is the Losing bonus, when the value for Points is 43?",
    "question_th": "โบนัสการแพ้คืออะไร เมื่อมูลค่าของคะแนนคือ 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_en": "What is the Club, when the value for Lost is 9, and when the value for Tries is 55?",
    "question_th": "คลับคืออะไร เมื่อค่าของ Lost คือ 9 และเมื่อค่าของ Tries คือ 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_en": "What is the largest draw with 37 games from England?",
    "question_th": "เสมอมากที่สุดจาก 37 เกมจากอังกฤษคือเกมไหน?",
    "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–2009\" AND lost < 13",
    "question_en": "How many draws have a Cambridge United career of 2008–2009 and less than 13 losses?",
    "question_th": "อาชีพของเคมบริดจ์ยูไนเต็ดในปี 2551-2552 เสมอกันกี่ครั้งและแพ้น้อยกว่า 13 นัด?",
    "context": "CREATE TABLE table_name_2 (drawn VARCHAR, cambridge_united_career VARCHAR, lost VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_66 WHERE score = \"1–0\"",
    "question_en": "What was the record at the game when the score was 1–0?",
    "question_th": "สถิติในเกมเมื่อสกอร์เป็น 1–0 คืออะไร?",
    "context": "CREATE TABLE table_name_66 (record VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_92 WHERE record = \"19–13–3\"",
    "question_en": "What was the score of the game when the record was 19–13–3?",
    "question_th": "คะแนนของเกมเมื่อบันทึกคือ 19–13–3 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_92 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_16 WHERE score = \"1–3\"",
    "question_en": "Who was the visiting team when the score was 1–3?",
    "question_th": "ทีมเยือนเมื่อสกอร์ 1–3 คือใคร?",
    "context": "CREATE TABLE table_name_16 (visitor VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_52 WHERE record = \"20–13–3\"",
    "question_en": "Who was the home team when there was a record of 20–13–3?",
    "question_th": "เจ้าบ้านคือใครเมื่อมีสถิติ 20–13–3?",
    "context": "CREATE TABLE table_name_52 (home VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_60 WHERE record = \"18–10–2\"",
    "question_en": "What was the date of the game with the record of 18–10–2?",
    "question_th": "วันที่ของเกมด้วยสถิติ 18–10–2 คือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_60 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT AVG(attendance) FROM table_name_30 WHERE visitor = \"minnesota\"",
    "question_en": "Visitor of minnesota has what average attendance?",
    "question_th": "ผู้เยี่ยมชมของ รัฐมินนิโซตา มีผู้เข้าร่วมโดยเฉลี่ยเท่าใด?",
    "context": "CREATE TABLE table_name_30 (attendance INTEGER, visitor VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_9 WHERE date = \"december 29\"",
    "question_en": "Date of december 29 has what visitor?",
    "question_th": "วันที่ 29 ธันวาคม มีแขกคนไหน?",
    "context": "CREATE TABLE table_name_9 (visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_61 WHERE score = \"2 – 3\"",
    "question_en": "Score of 2 – 3 has what attendance?",
    "question_th": "คะแนน 2 – 3 มีผู้เข้าร่วมเท่าไหร่?",
    "context": "CREATE TABLE table_name_61 (attendance VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT MIN(attendance) FROM table_name_35 WHERE record = \"48-51\"",
    "question_en": "With a record of 48-51 for the team, the lowest 2005 attendance was listed as how many?",
    "question_th": "ด้วยสถิติของทีม 48-51 ผู้เข้าร่วมต่ำสุดในปี 2548 ระบุว่ามีกี่คน?",
    "context": "CREATE TABLE table_name_35 (attendance INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT MIN(attendance) FROM table_name_36 WHERE loss = \"obermueller (1-2)\"",
    "question_en": "What would be the lowest Attendance that also showed a loss of Obermueller (1-2)?",
    "question_th": "ผู้เข้าร่วมที่ต่ำที่สุดที่แสดงให้เห็นการสูญเสีย 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_en": "What was the stadium for the game held on October 31?",
    "question_th": "สนามใดสำหรับเกมที่จัดขึ้นในวันที่ 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_en": "How many weeks in total were games played at Cleveland Browns Stadium?",
    "question_th": "การแข่งขันที่ 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_en": "What was the surface on 23 October 2011?",
    "question_th": "พื้นผิวในวันที่ 23 ตุลาคม 2554 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_97 (surface VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT coach FROM table_name_27 WHERE losses = 15",
    "question_en": "Which Notre Dame coach lost 15 games?",
    "question_th": "โค้ชนอเทรอดามคนไหนแพ้ 15 เกม?",
    "context": "CREATE TABLE table_name_27 (coach VARCHAR, losses VARCHAR)"
  },
  {
    "answer": "SELECT AVG(losses) FROM table_name_43 WHERE years = \"1904\"",
    "question_en": "How many losses did Notre Dame have in 1904?",
    "question_th": "Notre Dame สูญเสียไปกี่ครั้งในปี 1904?",
    "context": "CREATE TABLE table_name_43 (losses INTEGER, years VARCHAR)"
  },
  {
    "answer": "SELECT pct FROM table_name_86 WHERE years = \"1905\"",
    "question_en": "What was the winning percent of Notre Dame in 1905?",
    "question_th": "เปอร์เซ็นต์ชัยชนะของมหาวิหารน็อทร์-ดามในปี 1905 คือเท่าใด",
    "context": "CREATE TABLE table_name_86 (pct VARCHAR, years VARCHAR)"
  },
  {
    "answer": "SELECT home_captain FROM table_name_22 WHERE venue = \"edgbaston\"",
    "question_en": "Who is the home captain that played at Edgbaston?",
    "question_th": "ใครคือกัปตันทีมเหย้าที่เล่นให้เอ็ดจ์บาสตัน?",
    "context": "CREATE TABLE table_name_22 (home_captain VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT home_captain FROM table_name_41 WHERE venue = \"edgbaston\"",
    "question_en": "Who is the home captain that played at Edgbaston?",
    "question_th": "ใครคือกัปตันทีมเหย้าที่เล่นให้เอ็ดจ์บาสตัน?",
    "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_en": "For the matches with home captain Graham Gooch played on the dates 3,4,5,6,7 June 1993, what was the result?",
    "question_th": "แมตช์กับกัปตันทีมเหย้า เกรแฮม กูช ลงเล่นวันที่ 3,4,5,6,7 มิถุนายน 2536 ผลการแข่งขันเป็นอย่างไรบ้าง?",
    "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_en": "What was the venue for the matches played on the dates 3,4,5,6,7 June 1993?",
    "question_th": "สถานที่จัดการแข่งขันนัดที่เล่นในวันที่ 3,4,5,6,7 มิถุนายน พ.ศ. 2536 คือที่ไหน?",
    "context": "CREATE TABLE table_name_32 (venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT away_captain FROM table_name_81 WHERE venue = \"trent bridge\"",
    "question_en": "Who was the away captain for matches played at Trent Bridge?",
    "question_th": "ใครคือกัปตันทีมเยือนสำหรับเกมที่เล่นที่เทรนท์ บริดจ์?",
    "context": "CREATE TABLE table_name_81 (away_captain VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_32 WHERE club_clubs = \"hawthorn\"",
    "question_en": "Which rank is Hawthorn?",
    "question_th": "ฮอว์ธอร์นอยู่อันดับไหน?",
    "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_en": "What is the First Performance when the status is past and the style was ballet, tap?",
    "question_th": "การแสดงครั้งแรกเมื่อสถานะที่ผ่านมาและสไตล์บัลเล่ต์แทปคืออะไร?",
    "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_en": "What was the Last Performance when the status is current cast, and a Name of noah parets?",
    "question_th": "การแสดงครั้งสุดท้ายคืออะไรเมื่อสถานะเป็นนักแสดงในปัจจุบัน และชื่อของโนอาห์ พาเรตส์?",
    "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_en": "What is the style for Giuseppe Bausilio?",
    "question_th": "สไตล์ของ 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_en": "Which opponent has the event Jungle Fight 6?",
    "question_th": "คู่ต่อสู้คนไหนมีกิจกรรม 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_en": "Which is the method under the event Jungle Fight 2?",
    "question_th": "กิจกรรมภายใต้งาน 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_en": "What is the total number of points when draw is 4?",
    "question_th": "เมื่อเสมอ 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_en": "what is the goals scored when draw is less than 8, points is 19 and goals conceded is more than 26?",
    "question_th": "ประตูที่ทำได้เมื่อเสมอน้อยกว่า 8, 19 แต้ม และเสียประตูมากกว่า 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_en": "what is the points when the goals conceded is less than 24, place is less than 6 and goals scored is less than 26?",
    "question_th": "อะไรคือแต้มที่เสียประตูน้อยกว่า 24, อันดับน้อยกว่า 6 และประตูที่ทำได้น้อยกว่า 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_en": "what is the place when losses is less than 12 and points is less than 19?",
    "question_th": "จุดที่ขาดทุนน้อยกว่า 12 และแต้มน้อยกว่า 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_en": "what is the average place when lost is more than 12?",
    "question_th": "สถานที่เฉลี่ยที่หายไปมากกว่า 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_en": "In what Year were there 48 of 120 Seats and a % votes larger than 34.18?",
    "question_th": "ในปีใดที่มี 48 ที่นั่งจาก 120 ที่นั่งและ % โหวตมากกว่า 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_en": "After 1993, what is the Seats with a % votes of 38.72?",
    "question_th": "หลังจากปี 1993 ที่นั่งที่มีคะแนนโหวต 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øya\"",
    "question_en": "What is the highest Isolation (km) when the elevation was smaller than 1320, and a Municipality of hinnøya?",
    "question_th": "อะไรคือความโดดเดี่ยวสูงสุด (กม.) เมื่อระดับความสูงน้อยกว่า 1320 และเทศบาลฮินโนยา?",
    "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_en": "What is the average Isolation in the municipality of Sunndal at an elevation of more than 1850?",
    "question_th": "ค่าเฉลี่ยการแยกตัวในเขตเทศบาลซุนน์ดาลที่ระดับความสูงมากกว่า 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ål\" AND isolation__km_ > 4",
    "question_en": "What is the highest elevation for the peak daurmål, and an Isolation (km) larger than 4?",
    "question_th": "ระดับความสูงสูงสุดสำหรับยอดเขา daurmål และจุดแยก (กม.) ที่ใหญ่กว่า 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_en": "What country has an Elevation less than 1833 and an Isolation (km) larger than 18, and a Peak of store lenangstind?",
    "question_th": "ประเทศใดมีระดับความสูงน้อยกว่าปี 1833 และมีการแยก (กม.) มากกว่า 18 และจุดสูงสุดของการเก็บเลแนงสตินด์?",
    "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_en": "What country has a prominence less than 1292 and an Isolation (km) of 14?",
    "question_th": "ประเทศใดมีความโดดเด่นน้อยกว่า 1292 และมีการแยกตัว (กม.) ที่ 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_en": "Which lane did George Bovell swim in?",
    "question_th": "George Bovell ว่ายน้ำในเลนใด",
    "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_en": "What is the average of the top-25 with 16 cuts and less than 23 events?",
    "question_th": "ค่าเฉลี่ยของ 25 อันดับแรกที่มีการตัด 16 ครั้งและน้อยกว่า 23 เหตุการณ์คือเท่าใด",
    "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_en": "What is the highest top-25 with more than 9 top-10 but less than 29 events?",
    "question_th": "อะไรคือ 25 อันดับแรกที่มีมากกว่า 9 อันดับแรก แต่น้อยกว่า 29 เหตุการณ์?",
    "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_en": "What's the Overall average that has brad scioli, and a Pick # larger than 5?",
    "question_th": "ค่าเฉลี่ยโดยรวมที่มี brad scioli คืออะไร และ Pick # มากกว่า 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_en": "What's the lowest Overall average that has a College of Arkansas, and a Round larger than 3?",
    "question_th": "ค่าเฉลี่ยโดยรวมต่ำสุดที่มีวิทยาลัย Arkansas และรอบที่มากกว่า 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_en": "Which highest Overall has a Pick # of 4, and a Round larger than 7?",
    "question_th": "คะแนนรวมสูงสุดใดที่มีอันดับ #4 และรอบที่มากกว่า 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_en": "What's the overall average that has a round less than 7, and a Pick # of 4?",
    "question_th": "ค่าเฉลี่ยโดยรวมที่มีรอบน้อยกว่า 7 และเลือก # จาก 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_en": "Who is the no. 4 team that has the no. 5 player Susana Telmo?",
    "question_th": "ใครคือหมายเลข. 4 ทีมที่ไม่มี ผู้เล่น 5 คน ซูซานา เทลโม?",
    "context": "CREATE TABLE table_name_46 (no4 VARCHAR, no5 VARCHAR)"
  },
  {
    "answer": "SELECT no9 FROM table_name_85 WHERE no6 = \"paulo\"",
    "question_en": "Who is the no. 9 team that has a no. 6 player of paulo?",
    "question_th": "ใครคือหมายเลข. 9 ทีมที่ไม่มี 6 นักเตะเปาโล?",
    "context": "CREATE TABLE table_name_85 (no9 VARCHAR, no6 VARCHAR)"
  },
  {
    "answer": "SELECT no8 FROM table_name_72 WHERE no9 = \"telmo\"",
    "question_en": "Who this the no. 8 team that has a no. 9 player, Telmo?",
    "question_th": "นี่ใครครับ.. 8 ทีมที่ไม่มีหมายเลข ผู้เล่น 9 คน เทลโม่?",
    "context": "CREATE TABLE table_name_72 (no8 VARCHAR, no9 VARCHAR)"
  },
  {
    "answer": "SELECT nickname FROM table_name_73 WHERE age___ma__ = \"4.9\"",
    "question_en": "Name the nickname with age of 4.9",
    "question_th": "ตั้งชื่อเล่นด้วยอายุ 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_en": "Name the island with age ma of 1.0",
    "question_th": "ตั้งชื่อเกาะด้วยอายุ หม่า 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_en": "Name the elevation of the gathering place",
    "question_th": "ตั้งชื่อความสูงของสถานที่ชุมนุม",
    "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_en": "Game site of kingdome, and a Result of w 24-6 has what record?",
    "question_th": "เว็บไซต์เกม Kingdome และผลการแข่งขัน w 24-6 มีสถิติอะไรบ้าง?",
    "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_en": "Date of september 25, 1983 is what game site?",
    "question_th": "วันที่ 25 กันยายน 1983 เป็นเว็บไซต์เกมอะไร?",
    "context": "CREATE TABLE table_name_68 (game_site VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT stadium FROM table_name_71 WHERE score = \"6–3\"",
    "question_en": "What stadium held the game that had a score of 6–3?",
    "question_th": "สนามใดจัดการแข่งขันด้วยคะแนน 6–3",
    "context": "CREATE TABLE table_name_71 (stadium VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_29 WHERE loss = \"reed (0–2)\"",
    "question_en": "What was the date of the game that had a loss of Reed (0–2)?",
    "question_th": "วันที่ของเกมที่แพ้รีด (0–2) คือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_29 (date VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_37 WHERE record = \"11-8\"",
    "question_en": "On which Date was there a record of 11-8?",
    "question_th": "มีบันทึกวันที่ 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_en": "How many podiums associated with 1 vuelta and over 7 tours?",
    "question_th": "มีกี่โพเดียมที่เกี่ยวข้องกับ 1 วูเอลตาและทัวร์มากกว่า 7 รายการ?",
    "context": "CREATE TABLE table_name_1 (total VARCHAR, vuelta VARCHAR, tour VARCHAR)"
  },
  {
    "answer": "SELECT MIN(total) FROM table_name_33 WHERE name = \"miguel induráin\" AND vuelta > 1",
    "question_en": "What is the total for miguel induráin with a Vuelta larger than 1?",
    "question_th": "ผลรวมของ miguel induráin ที่มีวูเอลตามากกว่า 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_en": "What is the grid associated with a Time/Retired of + 1 lap, and under 7 points?",
    "question_th": "ตารางที่เกี่ยวข้องกับเวลา/เกษียณ + 1 รอบและต่ำกว่า 7 คะแนนคืออะไร",
    "context": "CREATE TABLE table_name_99 (grid INTEGER, time_retired VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT grid FROM table_name_45 WHERE laps = 67",
    "question_en": "What grid is associated with 67 laps?",
    "question_th": "ตารางใดที่เกี่ยวข้องกับ 67 รอบ?",
    "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_en": "Name the nation for 8 june 1983 for marlies gohr",
    "question_th": "ตั้งชื่อประเทศวันที่ 8 มิถุนายน พ.ศ. 2526 สำหรับ 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_en": "Name the athlete for bulgaria with rank less than 22",
    "question_th": "ตั้งชื่อนักกีฬาบัลแกเรียด้วยอันดับต่ำกว่า 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_en": "What engine was used by Ram Penthouse Rizla Racing in 1978?",
    "question_th": "Ram Penthouse Rizla Racing ใช้เครื่องยนต์อะไรในปี 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_en": "Which College has a Year smaller than 1962, and a Position of rb?",
    "question_th": "วิทยาลัยใดมีปีที่น้อยกว่าปี 1962 และมีตำแหน่ง 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_en": "Which Year has a College of nebraska, and a Pick of 2?",
    "question_th": "ปีใดที่มีวิทยาลัยเนแบรสกาและเลือกได้ 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_en": "Which Pick has a Year larger than 1983, and a Player name of brian jozwiak?",
    "question_th": "นักเตะคนไหนที่มีปีมากกว่าปี 1983 และชื่อผู้เล่นของ 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_en": "Which lowest year has a Position of rb, and a College of louisiana state?",
    "question_th": "ปีต่ำสุดใดที่มีตำแหน่ง rb และ 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_en": "How many years have a Player name of ronnie bull?",
    "question_th": "รอนนี่ บูล มีชื่อนักเตะกี่ปี?",
    "context": "CREATE TABLE table_name_75 (year INTEGER, player_name VARCHAR)"
  },
  {
    "answer": "SELECT recipient FROM table_name_22 WHERE award = \"£4,203\"",
    "question_en": "Who was the recipient of an award of £4,203?",
    "question_th": "ใครเป็นผู้รับรางวัลมูลค่า 4,203 ปอนด์?",
    "context": "CREATE TABLE table_name_22 (recipient VARCHAR, award VARCHAR)"
  },
  {
    "answer": "SELECT director_s_ FROM table_name_10 WHERE award = \"£6,245\"",
    "question_en": "Who directed the film that received an award of £6,245?",
    "question_th": "ใครเป็นผู้กำกับภาพยนตร์เรื่องนี้ที่ได้รับรางวัล 6,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_en": "Who directed the film that Avie Luthra received an award for?",
    "question_th": "ใครเป็นผู้กำกับภาพยนตร์เรื่องนี้ที่ เอวี ลูธรา ได้รับรางวัล?",
    "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_en": "Who directed the film Antonio's Breakfast?",
    "question_th": "ใครเป็นผู้กำกับภาพยนตร์เรื่อง 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_en": "Who was the director of the film that Sister Films received an award for on 2/3/05?",
    "question_th": "ใครคือผู้กำกับภาพยนตร์ที่ซิสเตอร์ฟิล์มส์ได้รับรางวัลเมื่อวันที่ 3/2/58?",
    "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_en": "What is the score of the game on June 9?",
    "question_th": "สกอร์เกมวันที่ 9 มิ.ย. เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_75 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT AVG(attendance) FROM table_name_6 WHERE date = \"july 2\"",
    "question_en": "What is the usual attendance for july 2?",
    "question_th": "การเข้าร่วมตามปกติในวันที่ 2 กรกฎาคมคือเท่าใด",
    "context": "CREATE TABLE table_name_6 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT deleted FROM table_name_53 WHERE cerclis_id = \"il0210090049\"",
    "question_en": "What was the value for deleted for CERCLIS ID of il0210090049?",
    "question_th": "ค่าสำหรับการลบสำหรับ CERCLIS ID ที่เป็น 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_en": "What is the date construction is completed in Jo Daviess county?",
    "question_th": "การก่อสร้างแล้วเสร็จในเขต Jo Daviess คือวันที่เท่าไร?",
    "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_en": "Role of narrator, and a Year larger than 2009, and a Release/Air Date of 7 october 2010 belongs to what author?",
    "question_th": "บทบาทของผู้บรรยาย และหนึ่งปีที่มากกว่าปี 2009 และวันวางจำหน่าย/ออกอากาศวันที่ 7 ตุลาคม 2010 เป็นของผู้เขียนคนใด",
    "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_en": "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?",
    "question_th": "บทบาทของผู้บรรยาย และสถานีวิทยุ/บริษัทผลิตหนังสือเสียงของ BBC และกำหนดฉาย/ออกอากาศวันที่ 13 พฤศจิกายน 2551 คือผลรวมของปีจำนวนเท่าใด",
    "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_en": "Radio Station/Production Company that has a Role of interviewee & monologues is what radio station?",
    "question_th": "สถานีวิทยุ/บริษัทผลิตภาพยนตร์ที่มีบทบาทเป็นผู้ให้สัมภาษณ์และบทพูดคนเดียวคือสถานีวิทยุใด",
    "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_en": "What was the position of the Racing Organisation Course team?",
    "question_th": "ทีมงาน Racing Organisation Course ดำรงตำแหน่งอะไร?",
    "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_en": "Who were the co-drivers for the Racing Organisation Course team in years before 2011, who had a position of DNF?",
    "question_th": "ใครคือผู้ร่วมขับเคลื่อนทีม Racing Organisation Course ในช่วงหลายปีก่อนปี 2011 ซึ่งดำรงตำแหน่ง 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_en": "Who were the co-drivers in years after 2010?",
    "question_th": "ใครคือผู้ร่วมขับในปีหลังปี 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_en": "What is the date made that has an associated fleet number of 4?",
    "question_th": "วันที่ทำกับจำนวนกองเรือที่เกี่ยวข้องคือ 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_en": "What is the withdrawal date associated with a date made of 1904?",
    "question_th": "วันที่ถอนที่เกี่ยวข้องกับวันที่สร้างปี 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_en": "Name the game site with result of l 7-38",
    "question_th": "ตั้งชื่อเว็บไซต์เกมด้วยผลลัพธ์ 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_en": "Name the result for arrowhead stadium",
    "question_th": "ตั้งชื่อผลลัพธ์สำหรับสนามแอร์โรว์เฮด",
    "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_en": "Name the least attendance for opponent of new orleans saints and week more than 2",
    "question_th": "ตั้งชื่อการเข้าร่วมน้อยที่สุดสำหรับฝ่ายตรงข้ามของนักบุญนิวออร์ลีนส์และสัปดาห์ที่มากกว่า 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_en": "What amount of earnings corresponds with a Top 10s rank of 23?",
    "question_th": "รายได้จำนวนเท่าใดที่สอดคล้องกับอันดับ 10 อันดับแรกที่ 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_en": "What 2012 amount of earnings corresponds with less than 28 tournaments played?",
    "question_th": "รายได้ในปี 2012 จำนวนเท่าใดที่สอดคล้องกับการแข่งขันน้อยกว่า 28 รายการ?",
    "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_en": "Tell me the year with Laps less than 197 and start of 2",
    "question_th": "บอกปีที่มีรอบน้อยกว่า 197 และเริ่มต้นที่ 2",
    "context": "CREATE TABLE table_name_96 (year VARCHAR, laps VARCHAR, start VARCHAR)"
  },
  {
    "answer": "SELECT qual FROM table_name_61 WHERE start = \"totals\"",
    "question_en": "Name the qual with start of totals",
    "question_th": "ตั้งชื่อคุณสมบัติด้วยการเริ่มต้นของผลรวม",
    "context": "CREATE TABLE table_name_61 (qual VARCHAR, start VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(laps) FROM table_name_90 WHERE rank = \"8\"",
    "question_en": "Name the total number of laps with rank of 8",
    "question_th": "ตั้งชื่อจำนวนรอบทั้งหมดด้วยอันดับที่ 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_en": "Name the start with Laps of 199 with qual of 224.838",
    "question_th": "ตั้งชื่อการออกสตาร์ทด้วยรอบ 199 ด้วยคะแนน 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_en": "On what date was the score 1-2 at Athens Olympic Stadium?",
    "question_th": "สกอร์ 1-2 ที่สนามกีฬาโอลิมปิก เอเธนส์ คือวันไหน?",
    "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_en": "What was the Match Report for the Euro2008q at the Athens Olympic Stadium on November 17, 2007?",
    "question_th": "รายงานการแข่งขันสำหรับยูโร 2008q ที่สนามกีฬาโอลิมปิกเอเธนส์เมื่อวันที่ 17 พฤศจิกายน 2550 เป็นอย่างไรบ้าง",
    "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_en": "What was the Match Report for the Euro2008q at the Athens Olympic Stadium and a score of 1-2?",
    "question_th": "รายงานผลการแข่งขันยูโร 2008q ที่สนามกีฬาโอลิมปิกเอเธนส์เป็นอย่างไรบ้าง และสกอร์ 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_en": "On what date was the score 2-1?",
    "question_th": "สกอร์ 2-1 วันไหน?",
    "context": "CREATE TABLE table_name_38 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_70 WHERE competition = \"friendly\"",
    "question_en": "On what date was the Competition of Friendly held?",
    "question_th": "การแข่งขันกระชับมิตรจัดขึ้นวันไหน?",
    "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_en": "What was the score at Pankritio Stadium on June 6, 2007?",
    "question_th": "สกอร์ที่สนามปันคริติโอ เมื่อวันที่ 6 มิถุนายน พ.ศ. 2550 เป็นเท่าไหร่?",
    "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_en": "On what date was there a draw at Sydney Cricket Ground?",
    "question_th": "ที่ 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_en": "In what venue was the result a draw?",
    "question_th": "ผลเสมอกันที่สนามไหน?",
    "context": "CREATE TABLE table_name_20 (venue VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_24 WHERE result = \"wi by 1 run\"",
    "question_en": "On what date was the result Wi by 1 run?",
    "question_th": "ผล Wi คูณ 1 รันเมื่อวันไหน?",
    "context": "CREATE TABLE table_name_24 (date VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_77 WHERE result = \"draw\"",
    "question_en": "What venue had a draw?",
    "question_th": "สนามไหนที่เสมอกัน?",
    "context": "CREATE TABLE table_name_77 (venue VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT SUM(pts) FROM table_name_98 WHERE chassis = \"jordan 192\"",
    "question_en": "What is the total number of points for entrants with a Jordan 192 chassis?",
    "question_th": "จำนวนคะแนนรวมของผู้เข้าแข่งขันที่ใช้แชสซี Jordan 192 คือเท่าใด",
    "context": "CREATE TABLE table_name_98 (pts INTEGER, chassis VARCHAR)"
  },
  {
    "answer": "SELECT entrant FROM table_name_20 WHERE chassis = \"march cg891\"",
    "question_en": "Which entrant had a chassis of March CG891?",
    "question_th": "ผู้เข้าแข่งขันรายใดมีแชสซีของ 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_en": "What is the lowest number of points for an entrant with a Jordan 192 chassis?",
    "question_th": "จำนวนคะแนนต่ำสุดสำหรับผู้เข้าแข่งขันที่ใช้โครงรถ Jordan 192 คือเท่าใด",
    "context": "CREATE TABLE table_name_20 (pts INTEGER, chassis VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_77 WHERE attendance = \"14,029\"",
    "question_en": "What Opponent has the Attendance of 14,029?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีผู้เข้าร่วม 14,029 คน?",
    "context": "CREATE TABLE table_name_77 (opponent VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_63 WHERE date = \"april 12\"",
    "question_en": "Can you tell me the Attendance that has the Date of april 12?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าผู้เข้าร่วมที่มีวันที่ 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_en": "Can you tell me the Score that has the Opponent of brewers, and the Attendance of 11,235?",
    "question_th": "คุณช่วยบอกคะแนนที่มีฝ่ายตรงข้ามของผู้ผลิตเบียร์และผู้เข้าร่วม 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_en": "Can you tell me the Score that has the Attendance of 4,567?",
    "question_th": "ช่วยบอกคะแนนที่มีผู้เข้าร่วม 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_en": "What is the date with the distance of km (mi) at the course of roccaraso to san giorgio del sannio?",
    "question_th": "ระยะทางกิโลเมตร (ไมล์) ที่เส้นทางรอกการาโซถึงซานจิออร์จิโอ เดล ซันนิโอคือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_20 (date VARCHAR, distance VARCHAR, course VARCHAR)"
  },
  {
    "answer": "SELECT engine FROM table_name_59 WHERE entrant = \"larrousse f1\"",
    "question_en": "Name the engine with entrant of larrousse f1",
    "question_th": "ตั้งชื่อเครื่องยนต์ด้วยชื่อ 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_en": "Name the average yeara for engine of renault v10 with points more than 4",
    "question_th": "ตั้งชื่อปีเฉลี่ยสำหรับเครื่องยนต์ของ renault v10 ด้วยคะแนนมากกว่า 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_en": "Name the sumof points for year less than 1994 and chassis of lola lc89b",
    "question_th": "ตั้งชื่อคะแนนรวมสำหรับปีน้อยกว่าปี 1994 และแชสซีของ 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_en": "Name the entrant for year more than 1991 and chassis of lotus 109",
    "question_th": "ระบุชื่อผู้เข้าแข่งขันปีมากกว่า 1991 และแชสซีของโลตัส 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_en": "Name the sum of points for 1991",
    "question_th": "ตั้งชื่อผลรวมคะแนนสำหรับปี 1991",
    "context": "CREATE TABLE table_name_79 (points INTEGER, year VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_85 WHERE course = \"turin to monza\"",
    "question_en": "Which type has turin to monza as a course?",
    "question_th": "ประเภทใดที่มีหลักสูตร Turin ถึง Monza เป็นหลักสูตร?",
    "context": "CREATE TABLE table_name_85 (type VARCHAR, course VARCHAR)"
  },
  {
    "answer": "SELECT course FROM table_name_15 WHERE type = \"km (mi)\"",
    "question_en": "Which course has km (mi) as a type?",
    "question_th": "สนามไหนมีประเภท km(mi) ?",
    "context": "CREATE TABLE table_name_15 (course VARCHAR, type VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_51 WHERE course = \"sanremo to cuneo\"",
    "question_en": "What winner has the sanremo to cuneo as the course?",
    "question_th": "ผู้ชนะคนใดที่มี Sanremo ถึง Cuneo เป็นหลักสูตร?",
    "context": "CREATE TABLE table_name_51 (winner VARCHAR, course VARCHAR)"
  },
  {
    "answer": "SELECT distance FROM table_name_5 WHERE stage = \"2\"",
    "question_en": "Name the distance for stage of 2",
    "question_th": "ตั้งชื่อระยะทางสำหรับระยะที่ 2",
    "context": "CREATE TABLE table_name_5 (distance VARCHAR, stage VARCHAR)"
  },
  {
    "answer": "SELECT route FROM table_name_27 WHERE winner = \"sébastien rosseler\"",
    "question_en": "Name the route with winner of sébastien rosseler",
    "question_th": "ตั้งชื่อเส้นทางด้วยผู้ชนะรางวัล sébastien rosseler",
    "context": "CREATE TABLE table_name_27 (route VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT route FROM table_name_14 WHERE distance = \"170.8km\"",
    "question_en": "Name the route for 170.8km distance",
    "question_th": "ตั้งชื่อเส้นทางระยะทาง 170.8 กม",
    "context": "CREATE TABLE table_name_14 (route VARCHAR, distance VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_68 WHERE winner = \"luciano pagliarini\"",
    "question_en": "Name the date for luciano pagliarini",
    "question_th": "ตั้งชื่อวันที่สำหรับ Luciano Pagliarini",
    "context": "CREATE TABLE table_name_68 (date VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_10 WHERE winner = \"mark cavendish\"",
    "question_en": "Name the date for mark cavendish",
    "question_th": "ตั้งชื่อวันที่ให้มาร์ค คาเวนดิช",
    "context": "CREATE TABLE table_name_10 (date VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT SUM(laps) FROM table_name_94 WHERE qual = \"144.665\"",
    "question_en": "Name the laps for qual of 144.665",
    "question_th": "ตั้งชื่อรอบรอบคัดเลือก 144.665",
    "context": "CREATE TABLE table_name_94 (laps INTEGER, qual VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(laps) FROM table_name_48 WHERE year = \"1961\"",
    "question_en": "Name the total number of Laps for year of 1961",
    "question_th": "ตั้งชื่อจำนวนรอบรวมของปี 1961",
    "context": "CREATE TABLE table_name_48 (laps VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_76 WHERE start = \"28\"",
    "question_en": "Name the finish for start of 28",
    "question_th": "ตั้งชื่อจุดจบสำหรับการเริ่มต้นวันที่ 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_en": "Name the laps for rank of 14 and start of 16",
    "question_th": "ตั้งชื่อรอบสำหรับอันดับที่ 14 และเริ่มอันดับที่ 16",
    "context": "CREATE TABLE table_name_67 (laps VARCHAR, rank VARCHAR, start VARCHAR)"
  },
  {
    "answer": "SELECT qual FROM table_name_25 WHERE year = \"1960\"",
    "question_en": "Name the qual for year of 1960",
    "question_th": "ตั้งชื่อคุณสมบัติประจำปี 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_en": "What is the name of the player in position lb and an overall of 128?",
    "question_th": "นักเตะในตำแหน่ง ปอนด์ และคะแนนรวม 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_en": "What is the total overall when Kenny Lewis is the player in a round after 5?",
    "question_th": "ผลรวมโดยรวมเมื่อ Kenny Lewis เป็นผู้เล่นในรอบหลัง 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_en": "What is the college when the over is larger than 15 in round 7?",
    "question_th": "มหาลัยอะไรในเมื่อโอเวอร์เกิน 15 ในรอบ 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_en": "What is the position with an overall less than 128 for Brigham Young college?",
    "question_th": "ตำแหน่งใดที่มีคะแนนรวมน้อยกว่า 128 สำหรับวิทยาลัยบริคัม ยังก์",
    "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_en": "How many attended the game on 4 February 2003?",
    "question_th": "มีกี่คนที่เข้าร่วมการแข่งขันในวันที่ 4 กุมภาพันธ์ พ.ศ. 2546",
    "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_en": "yes or no for the auckland with a yes for sydney, no for perth, yes for melbourne and yes for the gold coast?",
    "question_th": "ใช่หรือไม่สำหรับโอ๊คแลนด์ โดยใช่สำหรับซิดนีย์ ไม่สำหรับเพิร์ธ ใช่สำหรับเมลเบิร์น และใช่สำหรับโกลด์โคสต์?",
    "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_en": "yes or no for the adelaide with no for auckland, yes for melbourne, yes for the gold coast?",
    "question_th": "ใช่หรือไม่สำหรับแอดิเลด และไม่ใช่สำหรับโอ๊คแลนด์ ใช่สำหรับเมลเบิร์น ใช่สำหรับโกลด์โคสต์หรือเปล่า?",
    "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_en": "yes or no for the gold coast with yes for melbourne, yes for adelaide, yes for auckland?",
    "question_th": "ใช่หรือไม่สำหรับโกลด์โคสต์ ใช่สำหรับเมลเบิร์น ใช่สำหรับแอดิเลด ใช่สำหรับโอ๊คแลนด์?",
    "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_en": "yes or no for the melbourne with yes for gold coast, yes for adelaide, no for auckland?",
    "question_th": "ใช่หรือไม่ใช่สำหรับเมลเบิร์น ด้วยใช่สำหรับโกลด์โคสต์ ใช่สำหรับแอดิเลด ไม่สำหรับโอ๊คแลนด์?",
    "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_en": "yes or no for the sydney with yes for melbourne, no for perth, no for auckland and no for gold coast?",
    "question_th": "ใช่หรือไม่ใช่สำหรับซิดนีย์ โดยใช่สำหรับเมลเบิร์น ไม่สำหรับเพิร์ธ ไม่สำหรับโอ๊คแลนด์ และไม่ใช่สำหรับโกลด์โคสต์?",
    "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_en": "yes or no for the melbourne that has no for adelaide, no for gold coast?",
    "question_th": "ใช่หรือไม่ใช่สำหรับเมลเบิร์นที่ไม่มีสำหรับแอดิเลด ไม่มีสำหรับโกลด์โคสต์?",
    "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_en": "How many losses did the team with 0 wins and more than 72 runs allowed have?",
    "question_th": "ทีมที่ชนะ 0 ครั้งและวิ่งมากกว่า 72 ครั้งสามารถแพ้ได้กี่ครั้ง?",
    "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_en": "What is the lowest amount of losses the United States, ranked higher than 3 with more than 6 wins, have?",
    "question_th": "จำนวนการสูญเสียต่ำสุดที่สหรัฐอเมริกาซึ่งอยู่ในอันดับที่สูงกว่า 3 และชนะมากกว่า 6 ครั้งคืออะไร?",
    "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_en": "How many runs allowed did the team ranked 2 with more than 2 losses have?",
    "question_th": "ทีมอันดับ 2 ที่แพ้มากกว่า 2 นัดอนุญาตให้วิ่งได้กี่ครั้ง?",
    "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_en": "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?",
    "question_th": "ทีมที่มีอันดับต่ำกว่า 1 โดยมีอัตราการวิ่งน้อยกว่า 5.85 และแพ้มากกว่า 4 ครั้งชนะทั้งหมดกี่ครั้ง",
    "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_en": "What is the highest run ratio Japan, which has less than 58 runs and 5 wins, have?",
    "question_th": "อัตราการวิ่งสูงสุดของญี่ปุ่นซึ่งน้อยกว่า 58 รันและชนะ 5 ครั้งคืออะไร?",
    "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_en": "What is the average number of losses the team with less than 25 runs allowed and 5 wins have?",
    "question_th": "จำนวนการสูญเสียโดยเฉลี่ยของทีมที่อนุญาตให้วิ่งน้อยกว่า 25 ครั้งและชนะ 5 ครั้งเป็นเท่าใด",
    "context": "CREATE TABLE table_name_63 (losses INTEGER, runs_allowed VARCHAR, wins VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_14 WHERE opponent = \"tigers\"",
    "question_en": "Which date has tigers as the opponent?",
    "question_th": "วันไหนมีเสือเป็นคู่ต่อสู้?",
    "context": "CREATE TABLE table_name_14 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_47 WHERE date = \"october 1\"",
    "question_en": "What loss has october 1 as the date?",
    "question_th": "วันที่ 1 ตุลาคม ขาดทุนอะไร?",
    "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_en": "What year is listed that has points greater than 0 with a chassis labeled AGS JH22?",
    "question_th": "ปีใดที่มีคะแนนมากกว่า 0 โดยมีแชสซีชื่อ 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_en": "What is the total points listed that includes P listed Tyres after 1986?",
    "question_th": "คะแนนรวมที่ระบุไว้ซึ่งรวมถึงยาง P ที่ระบุไว้หลังปี 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_en": "What point is the lowest for listings of chassis labeled AGS JH23 before 1988?",
    "question_th": "จุดต่ำสุดสำหรับรายการแชสซีที่มีป้ายกำกับ AGS JH23 ก่อนปี 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_en": "What is the total point for the year listed in 1988?",
    "question_th": "จุดรวมสำหรับปีที่ระบุไว้ในปี 1988 คือเท่าไร?",
    "context": "CREATE TABLE table_name_58 (points INTEGER, year VARCHAR)"
  },
  {
    "answer": "SELECT MAX(attendance) FROM table_name_28 WHERE date = \"august 2\"",
    "question_en": "What was the attendance on August 2?",
    "question_th": "ผู้เข้าร่วมในวันที่ 2 สิงหาคมมีอะไรบ้าง?",
    "context": "CREATE TABLE table_name_28 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_54 WHERE loss = \"kinney (0-1)\"",
    "question_en": "Which opponent lost with pitcher Kinney (0-1)?",
    "question_th": "คู่ต่อสู้คนไหนแพ้พิชเชอร์ คินนีย์ (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_en": "What was the attendance on August 23?",
    "question_th": "ผู้เข้าร่วมในวันที่ 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_en": "What is the highest wins a tournament with 3 cuts and more than 4 events has?",
    "question_th": "อะไรคือชัยชนะสูงสุดในทัวร์นาเมนต์ที่มีการตัด 3 ครั้งและมีมากกว่า 4 รายการ?",
    "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_en": "What is the lowest number of events a tournament with more than 1 top-10 and more than 0 wins has?",
    "question_th": "จำนวนเหตุการณ์ต่ำสุดในทัวร์นาเมนต์ที่มีมากกว่า 1 อันดับแรกและชนะมากกว่า 0 ครั้งคืออะไร?",
    "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_en": "How many laps did the 6th placed in 1998 complete?",
    "question_th": "อันดับที่ 6 ในปี 1998 จบไปกี่รอบ?",
    "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_en": "What team was c1 class, had over 331 laps after 1990?",
    "question_th": "ทีมใดเป็นคลาส c1 มีมากกว่า 331 รอบหลังปี 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_en": "What class did eddie cheever raul boesel race in?",
    "question_th": "Eddie Cheever Raul Boesel แข่งในคลาสใด",
    "context": "CREATE TABLE table_name_16 (class VARCHAR, co_drivers VARCHAR)"
  },
  {
    "answer": "SELECT MIN(rank) FROM table_name_50 WHERE event = \"2012\"",
    "question_en": "What's the lowest rank of a player who played in 2012?",
    "question_th": "นักเตะที่เล่นน้อยที่สุดในปี 2012 คืออันดับไหนครับ?",
    "context": "CREATE TABLE table_name_50 (rank INTEGER, event VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_97 WHERE rank = 2011",
    "question_en": "What player has the rank 2011?",
    "question_th": "นักเตะคนไหนมีอันดับในปี 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_en": "What was the score of the match played on hard with a person ranked 10?",
    "question_th": "แมตช์ที่เล่นหนักกับผู้เล่นอันดับที่ 10 ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_70 (score VARCHAR, surface VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT females FROM table_name_71 WHERE language = \"romanian\"",
    "question_en": "What females speak Romanian?",
    "question_th": "ผู้หญิงคนไหนพูดภาษาโรมาเนียได้?",
    "context": "CREATE TABLE table_name_71 (females VARCHAR, language VARCHAR)"
  },
  {
    "answer": "SELECT females FROM table_name_21 WHERE males = \"1 234\"",
    "question_en": "What females have males of 1 234?",
    "question_th": "ผู้หญิงคนไหนมีผู้ชาย 1,234 คน?",
    "context": "CREATE TABLE table_name_21 (females VARCHAR, males VARCHAR)"
  },
  {
    "answer": "SELECT males FROM table_name_22 WHERE language = \"polish\"",
    "question_en": "What males speak Polish?",
    "question_th": "ผู้ชายคนไหนพูดภาษาโปแลนด์ได้?",
    "context": "CREATE TABLE table_name_22 (males VARCHAR, language VARCHAR)"
  },
  {
    "answer": "SELECT number FROM table_name_20 WHERE males = \"977 948\"",
    "question_en": "What is the number of males 977 948?",
    "question_th": "เพศผู้ 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_en": "Bowler of shane bond has what lowest overall number?",
    "question_th": "Bowler of shane Bond มีจำนวนรวมต่ำสุดคือข้อใด",
    "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_en": "Wickets of chris gayle caught kapali happened on what date?",
    "question_th": "Wickets of chris gayle catch kapali เกิดขึ้นวันไหน?",
    "context": "CREATE TABLE table_name_16 (date VARCHAR, wickets VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_34 WHERE third = \"kyle newman\"",
    "question_en": "What year did Kyle Newman place third?",
    "question_th": "Kyle Newman ได้อันดับที่สามในปีใด",
    "context": "CREATE TABLE table_name_34 (year VARCHAR, third VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_20 WHERE winner = \"jerran hart\"",
    "question_en": "What was the venue when Jerran Hart won?",
    "question_th": "สนามที่เจอร์แรน ฮาร์ท ชนะคือที่ไหน?",
    "context": "CREATE TABLE table_name_20 (venue VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT runner_up FROM table_name_82 WHERE year = 2004",
    "question_en": "Who was the runner-up in 2004?",
    "question_th": "ใครคือรองชนะเลิศในปี 2547?",
    "context": "CREATE TABLE table_name_82 (runner_up VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_63 WHERE third = \"jack hargreaves\"",
    "question_en": "What was the venue when Jack Hargreaves finished third?",
    "question_th": "สนามไหนที่แจ็ค ฮาร์กรีฟส์จบอันดับสาม?",
    "context": "CREATE TABLE table_name_63 (venue VARCHAR, third VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_65 WHERE third = \"ben barker\"",
    "question_en": "What was the venue when Ben Barker finished third?",
    "question_th": "สถานที่ใดที่ Ben Barker จบอันดับสาม?",
    "context": "CREATE TABLE table_name_65 (venue VARCHAR, third VARCHAR)"
  },
  {
    "answer": "SELECT province_region FROM table_name_91 WHERE icao = \"rjtq\"",
    "question_en": "What province/region is RJTQ located?",
    "question_th": "RJTQ ตั้งอยู่จังหวัด/ภูมิภาคใด",
    "context": "CREATE TABLE table_name_91 (province_region VARCHAR, icao VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_57 WHERE icao = \"rjsn\"",
    "question_en": "In what city is RJSN located?",
    "question_th": "RJSN ตั้งอยู่ในเมืองใด?",
    "context": "CREATE TABLE table_name_57 (city VARCHAR, icao VARCHAR)"
  },
  {
    "answer": "SELECT iata FROM table_name_76 WHERE icao = \"rjcm\"",
    "question_en": "What is RJCM's IATA?",
    "question_th": "IATA ของ RJCM คืออะไร",
    "context": "CREATE TABLE table_name_76 (iata VARCHAR, icao VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_55 WHERE province_region = \"hokkaidō\" AND airport = \"new chitose airport\"",
    "question_en": "In what country is Hokkaidō and New Chitose airport located?",
    "question_th": "สนามบินฮอกไกโดและชิโตเสะแห่งใหม่ตั้งอยู่ในประเทศใด",
    "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_en": "In what country is Hiroshima Airport located?",
    "question_th": "สนามบินฮิโรชิม่าตั้งอยู่ในประเทศใด",
    "context": "CREATE TABLE table_name_69 (country VARCHAR, airport VARCHAR)"
  },
  {
    "answer": "SELECT icao FROM table_name_89 WHERE city = \"nakashibetsu\"",
    "question_en": "What is the ICAO of Nakashibetsu?",
    "question_th": "ICAO ของ 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_en": "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?",
    "question_th": "จำนวนเกมทั้งหมดที่แพ้เมื่อเล่นไปแล้ว 22 เกม หมายเลข BP ที่แพ้คือ 2 และสโมสรคือ 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_en": "What is the number drawn when 3 have been lost?",
    "question_th": "หวยออกเลข 3 หายคือเลขอะไร?",
    "context": "CREATE TABLE table_name_74 (drawn VARCHAR, lost VARCHAR)"
  },
  {
    "answer": "SELECT drawn FROM table_name_79 WHERE try_bp = \"1\"",
    "question_en": "What is the number drawn when the try BP is 1?",
    "question_th": "ตัวเลขที่สุ่มออกมาเมื่อลอง BP คือ 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_en": "What is the try BP when the losing BP is 4 and the club is Bargoed RFC?",
    "question_th": "BP แบบลองคืออะไรเมื่อ BP ที่แพ้คือ 4 และสโมสรคือ 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_en": "What is the club that has played 22 rounds, has a drawn score of 0, has lost 14, and whose losing BP is 5?",
    "question_th": "สโมสรไหนเล่นครบ 22 นัด เสมอ 0 แพ้ 14 สโมสรไหนเสีย BP 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_en": "What average Total has a Rank of 3 and a Bronze award larger than 3?",
    "question_th": "ผลรวมเฉลี่ยใดที่มีอันดับ 3 และรางวัลทองแดงมากกว่า 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_en": "What average Total has a Gold award of 13 and a Bronze award less than 13?",
    "question_th": "คะแนนรวมเฉลี่ยเท่าใดที่ได้รับรางวัลเหรียญทอง 13 รางวัลและรางวัลทองแดงน้อยกว่า 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_en": "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?",
    "question_th": "รางวัลเหรียญทองโดยเฉลี่ยที่ได้รับรางวัลเงินมากกว่า 2 รางวัล และรางวัลทองแดงน้อยกว่า 13 รางวัล และคะแนนรวมมากกว่า 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_en": "What is the record number of the game where Guardado lost?",
    "question_th": "สถิติเกมที่ Guardado แพ้คือเท่าไร?",
    "context": "CREATE TABLE table_name_9 (record VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT MIN(attendance) FROM table_name_79 WHERE date = \"september 28\"",
    "question_en": "What was the lowest attendance recorded at a game on September 28?",
    "question_th": "จำนวนผู้ชมน้อยที่สุดที่บันทึกไว้ในเกมเมื่อวันที่ 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_en": "What is the average gold that has a total of 2 and more than 1 bronze.",
    "question_th": "ทองคำเฉลี่ยที่มีทั้งหมด 2 และมากกว่า 1 ทองแดงคือเท่าใด",
    "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_en": "What is the 2006 result of the Canada Masters tournament that is A in 2009 and A in 2010?",
    "question_th": "ผลการแข่งขัน Canada Masters ในปี 2549 ที่เป็น A ในปี 2552 และ A ในปี 2553 คืออะไร",
    "context": "CREATE TABLE table_name_88 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2006 FROM table_name_73 WHERE 2010 = \"107\"",
    "question_en": "What is the result for 2006 of a tournament that is 107 in 2010?",
    "question_th": "ผลลัพธ์สำหรับปี 2549 ของทัวร์นาเมนต์ที่ 107 ในปี 2010 คืออะไร?",
    "context": "CREATE TABLE table_name_73 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2010 FROM table_name_40 WHERE 2011 = \"a\" AND 2006 = \"a\"",
    "question_en": "What is the 2010 result of a tournament that is A in 2006 and A in 2011?",
    "question_th": "ผลลัพธ์ของปี 2010 ของทัวร์นาเมนต์ที่เป็น A ในปี 2549 และ A ในปี 2554 คืออะไร?",
    "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_en": "What is the 2012 result of a tournament that is 2R in 2007, 1R in 2008 and 1R in 2009?",
    "question_th": "ผลลัพธ์ของปี 2012 ของทัวร์นาเมนต์ที่เป็น 2R ในปี 2550, 1R ในปี 2551 และ 1R ในปี 2552 คืออะไร",
    "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_en": "What is the 2010 result of a tournament that is 1R in 2009, Q2 in 2011 and 1R in 2012?",
    "question_th": "ผลลัพธ์ของปี 2010 ของทัวร์นาเมนต์ที่เป็น 1R ในปี 2009, Q2 ในปี 2011 และ 1R ในปี 2012 คืออะไร?",
    "context": "CREATE TABLE table_name_43 (Id VARCHAR)"
  },
  {
    "answer": "SELECT MAX(match) FROM table_name_38 WHERE date = \"august 3, 2007\"",
    "question_en": "What match number took place on August 3, 2007?",
    "question_th": "การแข่งขันหมายเลขใดเกิดขึ้นในวันที่ 3 สิงหาคม พ.ศ. 2550",
    "context": "CREATE TABLE table_name_38 (match INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT 2010 FROM table_name_1 WHERE 2013 = \"grand slam tournaments\"",
    "question_en": "What is the 2010 value of the 2013 Grand Slam Tournaments?",
    "question_th": "มูลค่าปี 2010 ของการแข่งขันแกรนด์สแลมปี 2013 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_1 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2012 FROM table_name_11 WHERE 2007 = \"a\" AND 2011 = \"qf\"",
    "question_en": "What is the 2012 value with A in 2007 and qf in 2011?",
    "question_th": "ค่าปี 2555 โดยมี A ในปี 2550 และ qf ในปี 2554 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_11 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2012 FROM table_name_6 WHERE 2011 = \"1r\" AND tournament = \"australian open\"",
    "question_en": "What is the 2012 value with a 1r in 2011 in the Australian Open?",
    "question_th": "มูลค่าปี 2012 ด้วย 1r ในปี 2011 ใน Australian Open คืออะไร?",
    "context": "CREATE TABLE table_name_6 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2013 FROM table_name_68 WHERE 2011 = \"qf\"",
    "question_en": "What is the 2013 value with a qf in 2011?",
    "question_th": "ค่า 2013 กับ qf ในปี 2011 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_68 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2007 FROM table_name_26 WHERE 2012 = \"grand slam tournaments\"",
    "question_en": "What is the 2007 value at the 2012 Grand Slam Tournaments?",
    "question_th": "มูลค่าปี 2550 ในการแข่งขันแกรนด์สแลมปี 2555 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_26 (Id VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_26 WHERE 2011 = \"qf\"",
    "question_en": "Which tournament had a qf in 2011?",
    "question_th": "ทัวร์นาเมนต์ใดมี qf ในปี 2554?",
    "context": "CREATE TABLE table_name_26 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_13 WHERE competition = \"2014 fifa world cup qual.\"",
    "question_en": "What was the score for the 2014 FIFA World Cup Qual. competition?",
    "question_th": "คะแนนสำหรับฟุตบอลโลก 2014 รอบคัดเลือกคือเท่าไร การแข่งขัน?",
    "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_en": "What is the highest number of matches with less than 2 draws that had an efficiency percent of 25%?",
    "question_th": "จำนวนแมตช์สูงสุดที่เสมอน้อยกว่า 2 ครั้งและมีเปอร์เซ็นต์ประสิทธิภาพ 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_en": "What is the total number of Draws with less than 4 matches?",
    "question_th": "จำนวนเสมอทั้งหมดที่มีการแข่งขันน้อยกว่า 4 นัดคือเท่าใด?",
    "context": "CREATE TABLE table_name_27 (draws VARCHAR, matches INTEGER)"
  },
  {
    "answer": "SELECT AVG(frequency_mhz) FROM table_name_9 WHERE program = \"radio rezonans\"",
    "question_en": "What is the average MHz Frequency of radio rezonans?",
    "question_th": "ความถี่ MHz เฉลี่ยของเรโซแนนวิทยุคือเท่าใด",
    "context": "CREATE TABLE table_name_9 (frequency_mhz INTEGER, program VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_80 WHERE loss = \"lilly (2–2)\"",
    "question_en": "What date shows a Loss of lilly (2–2)?",
    "question_th": "วันที่ใดที่แสดงถึงการสูญเสียลิลลี่ (2–2)?",
    "context": "CREATE TABLE table_name_80 (date VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_74 WHERE time = \"3:16\" AND record = \"15–15\"",
    "question_en": "What is the loss when the time was 3:16, and a Record of 15–15?",
    "question_th": "การสูญเสียเมื่อเวลาคือ 3:16 และบันทึก 15–15 คืออะไร?",
    "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–5\"",
    "question_en": "What team was the opponent when the time was 2:57, and a Score of 7–5?",
    "question_th": "ทีมใดเป็นคู่ต่อสู้เมื่อเวลาคือ 2:57 และคะแนน 7–5?",
    "context": "CREATE TABLE table_name_59 (opponent VARCHAR, time VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_68 WHERE loss = \"ponson (4–3)\"",
    "question_en": "What date was the loss of ponson (4–3)?",
    "question_th": "การสูญเสียลูกปอน (4–3) คือวันใด?",
    "context": "CREATE TABLE table_name_68 (date VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_43 WHERE loss = \"sparks (0–1)\"",
    "question_en": "What date was the loss of sparks (0–1)?",
    "question_th": "การสูญเสียประกายไฟ (0–1) คือวันที่ใด?",
    "context": "CREATE TABLE table_name_43 (date VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_62 WHERE venue = \"tampere, finland\"",
    "question_en": "What is the position of the competition in Tampere, Finland?",
    "question_th": "ตำแหน่งการแข่งขันที่เมืองตัมเปเร ประเทศฟินแลนด์ คืออะไร?",
    "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_en": "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",
    "question_th": "อะไรคือผลรวมต่ำสุดที่เสมอน้อยกว่า 2 และชนะน้อยกว่า 1 แพ้มากกว่า 1 โดยมีผลต่างประตู 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_en": "What is the average number of draws that have a total of 1 and a goal difference of 2:0?",
    "question_th": "จำนวนเสมอโดยเฉลี่ยที่มีทั้งหมด 1 และผลต่างประตู 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_en": "What is the lowest number of draws that have a goal difference of 0:2 and wins greater than 0?",
    "question_th": "จำนวนเสมอต่ำสุดที่มีผลต่างประตู 0:2 และชนะมากกว่า 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_† = \"1,242\"",
    "question_en": "What regular season had an average attendance of 1,242?",
    "question_th": "ฤดูกาลปกติใดที่มีผู้เข้าชมเฉลี่ย 1,242 คน",
    "context": "CREATE TABLE table_name_89 (reg_season VARCHAR, avg_attendance_† VARCHAR)"
  },
  {
    "answer": "SELECT league FROM table_name_72 WHERE avg_attendance_† = \"244\"",
    "question_en": "What league has an average attendance of 244?",
    "question_th": "ลีกใดมีผู้ชมเฉลี่ย 244 คน?",
    "context": "CREATE TABLE table_name_72 (league VARCHAR, avg_attendance_† VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_90 WHERE opponent = \"white sox\" AND record = \"18-13\"",
    "question_en": "On what date was the opponent the White Sox and the record 18-13?",
    "question_th": "คู่ต่อสู้ของทีมไวท์ซ็อกซ์และสถิติ 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_en": "What was the average attendance when the record was 19-13?",
    "question_th": "ผู้เข้าร่วมโดยเฉลี่ยเมื่อบันทึกคือ 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_en": "What was the Loss when the opponent was the Rangers and the attendance was greater than 43,211?",
    "question_th": "แพ้อะไรเมื่อคู่ต่อสู้เป็นเรนเจอร์และมีผู้เข้าร่วมมากกว่า 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_en": "What was the 2012 result associated with a 2007 finish of 2R and a 2009 of 1R?",
    "question_th": "ผลลัพธ์ในปี 2012 เกี่ยวข้องกับการจบอันดับ 2R ในปี 2550 และอันดับ 1R ในปี 2552 คืออะไร",
    "context": "CREATE TABLE table_name_18 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2009 FROM table_name_2 WHERE 2012 = \"1r\" AND 2007 = \"2r\"",
    "question_en": "What was the 2009 result associated with a 2012 of 1R and a 2007 of 2R?",
    "question_th": "ผลลัพธ์ปี 2009 ที่เกี่ยวข้องกับปี 2012 ของ 1R และ 2007 ของ 2R คืออะไร",
    "context": "CREATE TABLE table_name_2 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2008 FROM table_name_36 WHERE 2009 = \"a\" AND 2011 = \"2r\"",
    "question_en": "What was the 2008 result associated with a 2009 of A and a 2011 of 2R?",
    "question_th": "ผลลัพธ์ในปี 2008 ที่เกี่ยวข้องกับปี 2009 ของ A และ 2011 ของ 2R คืออะไร",
    "context": "CREATE TABLE table_name_36 (Id VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_34 WHERE 2007 = \"lq\"",
    "question_en": "In which tournament did Pauline Parmentier finish LQ in 2007?",
    "question_th": "Pauline Parmentier จบ LQ ในปี 2550 ในทัวร์นาเมนต์ใด",
    "context": "CREATE TABLE table_name_34 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT player_name FROM table_name_23 WHERE matches = \"51\"",
    "question_en": "Name the player name with matches of 51",
    "question_th": "ตั้งชื่อผู้เล่นด้วยการจับคู่ 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_en": "Name the position for brazil 2008 with goals of 0 1",
    "question_th": "ตั้งชื่อตำแหน่งบราซิล 2008 โดยมีเป้าหมาย 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_en": "Name the goals with matches of 21",
    "question_th": "ตั้งชื่อประตูด้วยจำนวนนัดที่ 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_en": "Name the period with matches of 0 0 of portugal",
    "question_th": "ตั้งชื่อช่วงเวลาด้วยการแข่งขัน 0 0 ของโปรตุเกส",
    "context": "CREATE TABLE table_name_56 (period VARCHAR, matches VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT opponents FROM table_name_9 WHERE round = \"round 5\"",
    "question_en": "Name the opponents for round of round 5",
    "question_th": "ตั้งชื่อคู่ต่อสู้ในรอบที่ 5",
    "context": "CREATE TABLE table_name_9 (opponents VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_72 WHERE date = \"4 january 2004\"",
    "question_en": "Name the attendance for 4 january 2004",
    "question_th": "ตั้งชื่อการเข้าร่วมประชุมสำหรับวันที่ 4 มกราคม พ.ศ. 2547",
    "context": "CREATE TABLE table_name_72 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(attendance) FROM table_name_64 WHERE date = \"25 january 2004\"",
    "question_en": "Name the most attendance for 25 january 2004",
    "question_th": "รายชื่อผู้เข้าร่วมมากที่สุดสำหรับวันที่ 25 มกราคม พ.ศ. 2547",
    "context": "CREATE TABLE table_name_64 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT AVG(attendance) FROM table_name_54 WHERE round = \"final\"",
    "question_en": "What is the average Attendance for the final round?",
    "question_th": "ผู้เข้าร่วมโดยเฉลี่ยในรอบสุดท้ายคือเท่าใด",
    "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_en": "What is the smallest number of people to attend a game with an H/A of h and the opponent was Roma?",
    "question_th": "จำนวนคนที่น้อยที่สุดที่จะเข้าร่วมเกมโดยมีค่า H/A เป็น h และคู่ต่อสู้คือโรม่าคือเท่าไร?",
    "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_en": "Which game does the quentyn martell have?",
    "question_th": "Quentin Martell มีเกมอะไรบ้าง?",
    "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_en": "Which storm has a clash of 3 and a dance of 4?",
    "question_th": "พายุใดมีการปะทะกันที่ 3 และการเต้นรำที่ 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_en": "Name the melbourne with perth, adelaide and auckland of no with sydney of yes",
    "question_th": "ตั้งชื่อเมืองเมลเบิร์นด้วยเพิร์ธ แอดิเลด และโอ๊คแลนด์ ตามด้วยซิดนีย์ ใช่",
    "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_en": "Name the gold coast which has an auckland of no and melbourne of yes",
    "question_th": "ตั้งชื่อโกลด์โคสต์ซึ่งมีโอ๊คแลนด์เป็นไม่และเมลเบิร์นเป็นใช่",
    "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_en": "Name the sydney with perth of no, adelaide of no with melbourne of yes and gold coast of yes",
    "question_th": "ตั้งชื่อซิดนีย์ด้วย perth of no, adelaide of no กับ melbourne of yes และ 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_en": "Name the Adelaide for Sydney of yes and Perth of yes",
    "question_th": "ตั้งชื่อแอดิเลดสำหรับซิดนีย์ว่าใช่ และเพิร์ธคือใช่",
    "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_en": "Name the melbourne for adelaide of no with auckland of yes and gold coast of yes",
    "question_th": "ตั้งชื่อเมืองเมลเบิร์นว่า adelaide of no กับโอ๊คแลนด์ที่ 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_en": "Who is the Prime Minister of Antoine Wehenkel?",
    "question_th": "นายกรัฐมนตรีของ 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_en": "What is the least amount of wins earlier than 1964 with more than 7 points?",
    "question_th": "จำนวนชัยชนะน้อยที่สุดก่อนปี 2507 โดยมีมากกว่า 7 แต้มคือเท่าใด",
    "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_en": "What is the least points for class 125cc with 1 win earlier than 1961?",
    "question_th": "คลาส 125cc ชนะ 1 ครั้งก่อนปี 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_en": "What is the number of wins when there are 7 points?",
    "question_th": "เมื่อมี 7 แต้ม ชนะได้กี่แต้ม?",
    "context": "CREATE TABLE table_name_6 (wins VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT MIN(points) FROM table_name_95 WHERE wins = 1",
    "question_en": "What is the least amount of points when there is 1 win?",
    "question_th": "ชนะ 1 ครั้งได้แต้มน้อยที่สุดเท่าไหร่?",
    "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_en": "What club has more than 35 goals, more than 7 draws, and 20 losses?",
    "question_th": "สโมสรใดยิงได้มากกว่า 35 ประตู เสมอมากกว่า 7 นัด แพ้ 20 นัด?",
    "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_en": "How many goals have more than 38 played and more than 9 draws?",
    "question_th": "มีกี่ประตูที่เล่นมากกว่า 38 นัดและเสมอมากกว่า 9 นัด?",
    "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_en": "How many losses has more than 59 goals against and more than 17 position?",
    "question_th": "แพ้กี่ครั้งที่มีมากกว่า 59 ประตูและมากกว่า 17 ตำแหน่ง?",
    "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_en": "On what Date was the Meet of 2007 Pan American Games with a Time of 1:07.78?",
    "question_th": "การแข่งขัน Pan American Games 2007 มีตติ้งกันในวันที่ใด ด้วยเวลา 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_en": "What Nationality's time is 2:07.64?",
    "question_th": "เวลา 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_en": "What Event's Time is 4:01.00?",
    "question_th": "เหตุการณ์ใดเวลา 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_en": "In what Location in the United States the Time 2:25.62?",
    "question_th": "สถานที่ที่ใดในสหรัฐอเมริกา เวลา 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–11\"",
    "question_en": "Year larger than 1975, and a Record of 13–11 is what playoffs?",
    "question_th": "ปีที่ใหญ่กว่าปี 1975 และสถิติ 13–11 คือรอบตัดเชือกอะไร?",
    "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_en": "What are the venues prior to 2005 in the World Class category that resulted in a bronze?",
    "question_th": "สถานที่ใดก่อนปี 2548 ในประเภท World Class ที่ได้รับรางวัลเหรียญทองแดง",
    "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_en": "What are the competitions that occurred before 2006 in SVK Nitra?",
    "question_th": "การแข่งขันที่เกิดขึ้นก่อนปี 2549 ใน 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_en": "What are the categories of events that occurred after 2007 that were World Championships?",
    "question_th": "ประเภทเหตุการณ์ที่เกิดขึ้นหลังปี 2550 ที่เป็นการแข่งขันชิงแชมป์โลกมีอะไรบ้าง",
    "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_en": "What was the result of events held at Nor Elverum, prior to 2010?",
    "question_th": "ผลของงานที่จัดขึ้นที่ Nor Elverum ก่อนปี 2010 เป็นอย่างไร",
    "context": "CREATE TABLE table_name_22 (result VARCHAR, year VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_17 WHERE year = 2003",
    "question_en": "What was the competition held in 2003?",
    "question_th": "ปี 2546 มีการแข่งขันอะไรบ้าง?",
    "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_en": "What chassis type does a scuderia ferrari with more than 1 point have?",
    "question_th": "Scuderia Ferrari มากกว่า 1 จุดมีแชสซีประเภทใด?",
    "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_en": "A ferrari flat-12 engine with more than 1 point has what kind of chassis?",
    "question_th": "เครื่องยนต์ ferrari flat-12 มากกว่า 1 จุด มีแชสซีแบบไหน?",
    "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_en": "What is the average year for a merzario a2 chassis?",
    "question_th": "ปีเฉลี่ยสำหรับแชสซี merzario a2 คือเท่าใด",
    "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_en": "What was the team's record when they played visitor team Chicago Black Hawks on November 24?",
    "question_th": "สถิติของทีมเมื่อพวกเขาเจอกับทีมเยือน ชิคาโก้ แบล็ก ฮอว์กส์ เมื่อวันที่ 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_en": "What is the name of the visitor team who played home team Chicago Black Hawks on March 20?",
    "question_th": "ทีมเยือนที่เจอกับทีมเหย้า ชิคาโก แบล็ค ฮอว์กส์ เมื่อวันที่ 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_en": "What was the team's record on November 12?",
    "question_th": "สถิติของทีมเมื่อวันที่ 12 พฤศจิกายนเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_38 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT champion FROM table_name_33 WHERE year = \"1981\"",
    "question_en": "What champion has 1981 as the year?",
    "question_th": "แชมป์อะไรมีปี 1981 เป็นปี?",
    "context": "CREATE TABLE table_name_33 (champion VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT date_final FROM table_name_59 WHERE year = \"1982\"",
    "question_en": "What date final has 1982 as the year?",
    "question_th": "สุดท้ายนี้ให้ปี 1982 เป็นวันใด?",
    "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_en": "What prize money has michelob light challenge of champions as the commercial name?",
    "question_th": "เงินรางวัลอะไรที่มี Michelob Light Challenge of Champions เป็นชื่อทางการค้า?",
    "context": "CREATE TABLE table_name_56 (prize_money VARCHAR, commercial_name VARCHAR)"
  },
  {
    "answer": "SELECT date_final FROM table_name_90 WHERE year = \"1989\"",
    "question_en": "What date final has 1989 as the year?",
    "question_th": "สุดท้ายนี้ให้ปี 1989 เป็นวันใด?",
    "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_en": "What score in final has boris becker as the champion?",
    "question_th": "คะแนนในรอบชิงชนะเลิศมีบอริส เบกเกอร์เป็นแชมป์หรือไม่?",
    "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_en": "What is the greatest point of an Entrant of connaught engineering alta straight-4 engine before 1957",
    "question_th": "อะไรคือจุดที่ยิ่งใหญ่ที่สุดของผู้เข้าแข่งขันเครื่องยนต์อัลตาสเตรต-4 ที่เชื่อมต่อกันทางวิศวกรรมก่อนปี 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_en": "What 1957 engine has a Chassis of connaught type b?",
    "question_th": "เครื่องยนต์ปี 1957 ใดที่มีแชสซีแบบเชื่อมต่อ b",
    "context": "CREATE TABLE table_name_71 (engine VARCHAR, chassis VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_89 WHERE winning_score = −9(72 - 68 - 64 - 67 = 271)",
    "question_en": "When was the winning score −9 (72-68-64-67=271)?",
    "question_th": "คะแนนชนะคือเมื่อใด −9 (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_en": "What was the margin of victory for the Mississippi Gulf Resort Classic?",
    "question_th": "ชัยชนะของ 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_en": "What was the margin of victory when Mark Calcavecchia was the runner-up?",
    "question_th": "อะไรคือส่วนต่างของชัยชนะเมื่อมาร์ค กัลคาเวคเคีย คว้ารองแชมป์?",
    "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_en": "What was the date of the Ace Group Classic tournament with a 1 stroke margin of victory?",
    "question_th": "วันที่ของการแข่งขัน Ace Group Classic โดยมีชัยชนะ 1 สโตรกคือเมื่อใด",
    "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 = −9(72 - 68 - 64 - 67 = 271)",
    "question_en": "What was the margin of victory when the winning score was −9 (72-68-64-67=271)?",
    "question_th": "อะไรคือส่วนต่างของชัยชนะเมื่อคะแนนชนะคือ −9 (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_en": "What is the average round for te position?",
    "question_th": "รอบเฉลี่ยสำหรับตำแหน่ง te คือเท่าไร?",
    "context": "CREATE TABLE table_name_65 (round INTEGER, position VARCHAR)"
  },
  {
    "answer": "SELECT AVG(overall) FROM table_name_91 WHERE player = \"james davis\"",
    "question_en": "Name the average overall for james davis",
    "question_th": "ตั้งชื่อค่าเฉลี่ยโดยรวมของเจมส์ เดวิส",
    "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_en": "Name the most overall for james davis and round more than 5",
    "question_th": "ตั้งชื่อโดยรวมมากที่สุดสำหรับ เจมส์ เดวิส และรอบมากกว่า 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_en": "Name the total number of overall for villanova and round less than 2",
    "question_th": "ตั้งชื่อจำนวนรวมทั้งหมดสำหรับวิลลาโนวาและปัดน้อยกว่า 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_en": "Which state is Mount Chiginagak located in?",
    "question_th": "ภูเขา Chiginagak อยู่ในรัฐใด",
    "context": "CREATE TABLE table_name_8 (state VARCHAR, mountain_peak VARCHAR)"
  },
  {
    "answer": "SELECT circumstances FROM table_name_62 WHERE location = \"baghlan\"",
    "question_en": "What were the circumstances for the Baghlan location?",
    "question_th": "สถานการณ์ของที่ตั้งของ Baghlan เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_62 (circumstances VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT casualties FROM table_name_64 WHERE location = \"baghlan\"",
    "question_en": "What were the casualties in the Baghlan location?",
    "question_th": "มีผู้เสียชีวิตในพื้นที่ Baghlan อย่างไรบ้าง",
    "context": "CREATE TABLE table_name_64 (casualties VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_12 WHERE circumstances = \"natural cause\"",
    "question_en": "What was the date of natural cause situation?",
    "question_th": "เหตุธรรมชาติเกิดเมื่อใด?",
    "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_en": "Which Gold Coast has a Perth of no, a Sydney of yes, and an Auckland of yes?",
    "question_th": "เมืองโกลด์โคสต์แห่งใดมีเพิร์ธที่ใช่ ซิดนีย์ที่ใช่ และโอ๊คแลนด์ที่ใช่",
    "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_en": "Which Melbourne has an Auckland of no, and a Gold Coast of no?",
    "question_th": "เมลเบิร์นเมืองไหนมีโอ๊คแลนด์อันดับไม่ และโกลด์โคสต์อันดับไม่",
    "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_en": "Which Adelaide has a Melbourne of yes, an Auckland of yes, and a Perth of yes?",
    "question_th": "แอดิเลดแห่งไหนมีเมลเบิร์นที่ใช่ โอ๊คแลนด์ใช่ และเพิร์ธใช่",
    "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_en": "Which Sydney has a Perth of no, a Melbourne of yes, and a Gold Coast of no?",
    "question_th": "ซิดนีย์แห่งใดมีเพิร์ธที่ใช่ เมลเบิร์นที่ใช่ และโกลด์โคสต์ที่ใช่",
    "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_en": "Which Auckland has an Adelaide of no, a Melbourne of yes, and a Sydney of yes?",
    "question_th": "เมืองโอ๊คแลนด์แห่งใดมีแอดิเลดที่ใช่ เมลเบิร์นที่ใช่ และซิดนีย์ที่ใช่",
    "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_en": "Which Adelaide has an Auckland of yes, a Melbourne of yes, a Perth of yes, and a Sydney of cancelled?",
    "question_th": "แอดิเลดแห่งใดมีโอ๊คแลนด์ใช่ เมลเบิร์นใช่ เพิร์ธใช่ และซิดนีย์ถูกยกเลิก",
    "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_en": "Who is the owner of RSS Racing that driver Ryan Sieg belongs to?",
    "question_th": "ใครคือเจ้าของ RSS Racing ที่นักแข่ง Ryan Sieg เป็นเจ้าของ?",
    "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_en": "Parts Plus sponsors what driver?",
    "question_th": "Parts Plus สนับสนุนไดรเวอร์อะไร?",
    "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_en": "Who is the owner of NTS Motorsports sponsored by Qore-24?",
    "question_th": "ใครคือเจ้าของ NTS Motorsports ที่สนับสนุนโดย 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_en": "Who is the crew chief, of driver Matt kurzejewski?",
    "question_th": "ใครคือหัวหน้าลูกเรือของคนขับ 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_en": "Who is the driver that has a crew chief Gary Ritter?",
    "question_th": "ใครคือคนขับที่มีหัวหน้าลูกเรือ 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_en": "what is the award for the 2009 songwriter of the year?",
    "question_th": "รางวัลนักแต่งเพลงแห่งปี 2552 คืออะไร?",
    "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_en": "what is the category that has the people's choice awards?",
    "question_th": "รางวัล 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_en": "what year has general nominated in the category or choice breakthrough artist?",
    "question_th": "ปีใดที่มีการเสนอชื่อเข้าชิงทั่วไปในประเภทหรือศิลปินที่ก้าวหน้า?",
    "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_en": "What was the score on 6 February 2008?",
    "question_th": "คะแนนเมื่อวันที่ 6 กุมภาพันธ์ พ.ศ. 2551 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_35 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_41 WHERE date = \"14 november 2012\"",
    "question_en": "Which competition was held on 14 November 2012?",
    "question_th": "การแข่งขันใดจัดขึ้นในวันที่ 14 พฤศจิกายน 2555?",
    "context": "CREATE TABLE table_name_41 (competition VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_85 WHERE date = \"10 august 2011\"",
    "question_en": "What competition took place on 10 August 2011?",
    "question_th": "การแข่งขันใดเกิดขึ้นในวันที่ 10 สิงหาคม พ.ศ. 2554?",
    "context": "CREATE TABLE table_name_85 (competition VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT AVG(year) FROM table_name_49 WHERE chassis = \"cooper t60\"",
    "question_en": "What is the average Year with Chassis equalling cooper t60?",
    "question_th": "ปีเฉลี่ยที่แชสซีเท่ากับ 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_en": "Which Chassis has an Entrant of cooper car company, and a Year of 1963?",
    "question_th": "แชสซีใดมีผู้เข้าร่วมจากบริษัทรถคูเปอร์ และปี 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_en": "Which Entrant has an Engine of climax straight-4, and Points larger than 0?",
    "question_th": "ผู้เข้าแข่งขันคนใดมีกลไกไคลแม็กซ์ตรง 4 และคะแนนมากกว่า 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_en": "Which tournament has hard as the surface and apr. 12, 1998 as the date?",
    "question_th": "ซึ่งทัวร์นาเมนท์มีหนักทั้งผิวเผินและเม.ย. 12 พ.ย. 2541 เป็นวันที่?",
    "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_en": "Which surface has wynne prakusya as the opponent in the final?",
    "question_th": "พื้นผิวใดที่มี Wynne Prakusya เป็นคู่ต่อสู้ในรอบชิงชนะเลิศ?",
    "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_en": "What score has wynne prakusya as the opponent in the final?",
    "question_th": "วินน์ ปรากุสยา เป็นคู่ต่อสู้ในรอบชิงชนะเลิศได้คะแนนเท่าไหร่?",
    "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_en": "What tournament has nov. 21, 1999 as the date?",
    "question_th": "มีทัวร์นาเมนต์อะไรในเดือนพฤศจิกายน 21 พ.ย. 2542 เป็นวันที่?",
    "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_en": "Name the authority for coed gender and chanel college",
    "question_th": "ตั้งชื่อผู้มีอำนาจสำหรับเพศนิสิตและวิทยาลัยชาแนล",
    "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_en": "Name the average decile for state authority and area of fernridge",
    "question_th": "ตั้งชื่อเดซิลเฉลี่ยสำหรับหน่วยงานของรัฐและพื้นที่ของเฟิร์นริดจ์",
    "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_en": "What was the week on October 11, 1998?",
    "question_th": "สัปดาห์ของวันที่ 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_en": "What is the location of the game with attendance of 63,336?",
    "question_th": "สถานที่จัดการแข่งขันมีผู้เข้าร่วม 63,336 คน?",
    "context": "CREATE TABLE table_name_93 (game_site VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_96 WHERE week = 13",
    "question_en": "What was the date of the week 13 game?",
    "question_th": "เกมสัปดาห์ที่ 13 ตรงกับวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_96 (date VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT division_record FROM table_name_48 WHERE team = \"panthers\"",
    "question_en": "What is the Panthers' Division Record?",
    "question_th": "บันทึกการแบ่งของ Panthers คืออะไร?",
    "context": "CREATE TABLE table_name_48 (division_record VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT division_record FROM table_name_39 WHERE team = \"senators\"",
    "question_en": "What is the Senators' division record?",
    "question_th": "บันทึกการแบ่งส่วนของวุฒิสมาชิกคืออะไร?",
    "context": "CREATE TABLE table_name_39 (division_record VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_86 WHERE date = \"january 18\"",
    "question_en": "What was the record after the January 18 game?",
    "question_th": "สถิติหลังเกมวันที่ 18 มกราคมเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_86 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_44 WHERE date = \"january 6\"",
    "question_en": "What was the record after the January 6 game?",
    "question_th": "สถิติหลังเกมวันที่ 6 มกราคม เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_44 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT Former AS name FROM table_name_79 WHERE rank = 49",
    "question_en": "Name the former name for 49 rank",
    "question_th": "ตั้งชื่อเดิม 49 ยศ",
    "context": "CREATE TABLE table_name_79 (Former VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT nhl_team FROM table_name_66 WHERE position = \"left wing\"",
    "question_en": "Which NHL team has left wing listed as the position?",
    "question_th": "ทีม NHL ใดที่มีปีกซ้ายอยู่ในรายการในตำแหน่ง",
    "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_en": "What years does Kakahi school, with a decile of 3, have?",
    "question_th": "โรงเรียนคาคาฮิที่มีเดซิล 3 มีกี่ปี?",
    "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_en": "What is the average decile of Ruapehu college, which has a state authority?",
    "question_th": "วิทยาลัยรัวเปฮูซึ่งมีหน่วยงานของรัฐมีค่าเฉลี่ยเสื่อมเป็นเท่าใด",
    "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_en": "What is the roll number of Orautoha school in Raetihi, which has a decile smaller than 8?",
    "question_th": "โรงเรียนอรอุโตหะในราเอติฮีมีเลขเดซิล์น้อยกว่า 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_en": "On what day was Utah Blaze the opponent?",
    "question_th": "Utah Blaze ฝ่ายตรงข้ามวันไหน?",
    "context": "CREATE TABLE table_name_6 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT 2006 FROM table_name_56 WHERE 2011 = \"1r\"",
    "question_en": "What is the 2006 value with a 1r in 2011?",
    "question_th": "ค่าปี 2549 ด้วย 1r ในปี 2554 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_56 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2010 FROM table_name_85 WHERE 2004 = \"2r\" AND 2011 = \"3r\"",
    "question_en": "What is the 2010 value with a 2r in 200r and a 3r in 2011?",
    "question_th": "ค่า 2010 ที่มี 2r ใน 200r และ 3r ในปี 2011 คืออะไร",
    "context": "CREATE TABLE table_name_85 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2007 FROM table_name_53 WHERE 2012 = \"2r\" AND 2002 = \"1r\"",
    "question_en": "What is the 2007 value with a 2r in 2012 and 1r in 2002?",
    "question_th": "ค่าปี 2550 โดยมี 2r ในปี 2555 และ 1r ในปี 2545 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_53 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2004 FROM table_name_46 WHERE 2011 = \"grand slam tournaments\"",
    "question_en": "What is the 2004 value in the 2011 Grand Slam Tournaments?",
    "question_th": "มูลค่าปี 2004 ในการแข่งขันแกรนด์สแลมปี 2011 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_46 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2004 FROM table_name_4 WHERE 2010 = \"sf\"",
    "question_en": "What is the 2004 value with a sf in 2010?",
    "question_th": "ค่า 2004 กับ sf ในปี 2010 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_4 (Id VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_24 WHERE date = \"30 january 2013\"",
    "question_en": "Name the score for 30 january 2013",
    "question_th": "ตั้งชื่อคะแนนสำหรับวันที่ 30 มกราคม 2013",
    "context": "CREATE TABLE table_name_24 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_92 WHERE goal__number > 4",
    "question_en": "Name the result for goal # more than 4",
    "question_th": "ตั้งชื่อผลลัพธ์สำหรับเป้าหมาย # มากกว่า 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_en": "What is Fred Couples to par?",
    "question_th": "Fred Couples พาร์คืออะไร?",
    "context": "CREATE TABLE table_name_24 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_9 WHERE score < 68",
    "question_en": "What place has a score under 68?",
    "question_th": "สถานที่ใดมีคะแนนต่ำกว่า 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_en": "Which driver won when o.m. was the winning constructor ?",
    "question_th": "นักแข่งคนไหนชนะเมื่อ om เป็นตัวสร้างที่ชนะ ?",
    "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_en": "Which driver won when the winning constructor was bugatti at the Boulogne Grand Prix ?",
    "question_th": "นักแข่งคนไหนชนะเมื่อคอนสตรัคเตอร์ที่ชนะคือ Bugatti ที่ 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_en": "What race did Meo Constantini win at the circuit of monza ?",
    "question_th": "Meo Constantini ชนะการแข่งขันรายการใดที่ 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_en": "On what date did Aymo Maggi win the Rome Grand Prix ?",
    "question_th": "Aymo Maggi ชนะการแข่งขัน 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_en": "Name the season outcome for smyrna",
    "question_th": "ตั้งชื่อผลลัพธ์ฤดูกาลของสมีร์นา",
    "context": "CREATE TABLE table_name_89 (season_outcome VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_87 WHERE team = \"eagles\"",
    "question_en": "Name the school for eagles",
    "question_th": "ตั้งชื่อโรงเรียนสำหรับนกอินทรี",
    "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_en": "Name the school for Season Outcome of loss in first round of div. i playoffs",
    "question_th": "ตั้งชื่อโรงเรียนสำหรับ Season Outcome of loss ในรอบแรกของ div ฉันเข้ารอบตัดเชือก",
    "context": "CREATE TABLE table_name_73 (school VARCHAR, season_outcome VARCHAR)"
  },
  {
    "answer": "SELECT division_record FROM table_name_28 WHERE team = \"riders\"",
    "question_en": "Name the division record for riders",
    "question_th": "ตั้งชื่อบันทึกการแบ่งส่วนสำหรับผู้ขับขี่",
    "context": "CREATE TABLE table_name_28 (division_record VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_44 WHERE school = \"milford\"",
    "question_en": "Name the team for school of milford",
    "question_th": "ตั้งชื่อทีม 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_en": "Name the average points for chassis of stevens and year less than 1950",
    "question_th": "บอกคะแนนเฉลี่ยสำหรับแชสซีของ stevens และปีน้อยกว่า 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_en": "Name the least points for chassis of kurtis kraft 500a",
    "question_th": "ระบุคะแนนที่น้อยที่สุดสำหรับแชสซีของ 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_en": "Name the total number of year for chassis of kurtis kraft 4000 and points more than 2",
    "question_th": "ระบุจำนวนปีทั้งหมดสำหรับแชสซีของ Kurtis kraft 4000 และคะแนนมากกว่า 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_en": "Who was the visiting team on weeks under 12 and at Sports Authority Field at Mile High?",
    "question_th": "ใครคือทีมเยือนในสัปดาห์ที่อายุต่ำกว่า 12 ปีและที่ Sports Authority Field ที่ 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_en": "Who was the visiting team at Raymond James Stadium?",
    "question_th": "ทีมเยือนที่สนามเรย์มอนด์ เจมส์คือใคร?",
    "context": "CREATE TABLE table_name_36 (visiting_team VARCHAR, stadium VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_75 WHERE visiting_team = \"houston texans\"",
    "question_en": "What date had the Houston Texans as visitors?",
    "question_th": "วันที่ใดที่ Houston Texans เป็นผู้มาเยือน?",
    "context": "CREATE TABLE table_name_75 (date VARCHAR, visiting_team VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_55 WHERE percentage = \"9.66%\"",
    "question_en": "Name the year with percentage of 9.66%",
    "question_th": "ตั้งชื่อปีด้วยเปอร์เซ็นต์ 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_en": "Name the total number of popular votes for mn attorney general in 1994",
    "question_th": "ระบุจำนวนคะแนนนิยมทั้งหมดสำหรับอัยการสูงสุดในปี 2537",
    "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_en": "Name the average popular votes in years after 1990 with percentage of 4.94%",
    "question_th": "ระบุคะแนนโหวตยอดนิยมเฉลี่ยในปีหลังปี 1990 ด้วยเปอร์เซ็นต์ 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_en": "Name the least popular votes for year less than 1994 and percentage of 0.96%",
    "question_th": "ระบุชื่อคะแนนโหวตที่ได้รับความนิยมน้อยที่สุดสำหรับปีที่ต่ำกว่า พ.ศ. 2537 และร้อยละ 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_en": "What United States player holds the place of t8?`",
    "question_th": "ผู้เล่นชาวสหรัฐอเมริกาคนใดที่ครองตำแหน่ง 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_en": "What country of argentina has the To par of 68?",
    "question_th": "ประเทศอาร์เจนตินาใดมีพาร์ 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_en": "What is the To par and holds the t8 place of the United States player Tiger Woods?",
    "question_th": "To par และครองตำแหน่ง t8 ของผู้เล่น 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 ángel jiménez\"",
    "question_en": "What country does miguel ángel jiménez player for and has a score of 69?",
    "question_th": "มิเกล อังเกล ฆิเมเนซ นักเตะทีมชาติใดและมีคะแนน 69 คะแนน?",
    "context": "CREATE TABLE table_name_50 (country VARCHAR, score VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_32 WHERE track = \"truro\"",
    "question_en": "What is the date of the race at Truro?",
    "question_th": "การแข่งขันที่ทรูโรคือวันที่เท่าไร?",
    "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_en": "Which Year has a nominated outstanding actor in a musical?",
    "question_th": "ปีใดที่มีการเสนอชื่อนักแสดงดีเด่นในละครเพลง?",
    "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_en": "Which Award has a nominated, and outstanding choreography?",
    "question_th": "รางวัลใดที่ได้รับการเสนอชื่อเข้าชิงและท่าเต้นดีเด่น?",
    "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_en": "Which Award  has best performance by a leading actor in a musical",
    "question_th": "รางวัลใดที่มีการแสดงดีที่สุดโดยนักแสดงนำในละครเพลง",
    "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_en": "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?",
    "question_th": "อะไรคืออาชีพของสโมสรสำหรับผู้เล่นในตำแหน่ง DF, ยิงรวมน้อยกว่า 18 ประตู, ลงเล่นในลีกน้อยกว่า 129 นัด และยิงในลีกมากกว่า 7 ประตู?",
    "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_en": "What is the fewest total goals scored for players with under 171 league appearances, 151 total appearances, and the DF position?",
    "question_th": "ประตูรวมที่น้อยที่สุดที่ทำได้สำหรับผู้เล่นที่ลงเล่นในลีกต่ำกว่า 171 นัด, ลงเล่นทั้งหมด 151 นัด และตำแหน่ง DF คืออะไร?",
    "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_en": "What is the total number of Years that has the Group, Method Fest Independent Film Festival?",
    "question_th": "จำนวนปีทั้งหมดที่มี Group, Method Fest เทศกาลภาพยนตร์อิสระคือเท่าไร?",
    "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_en": "What is the average Year that has the Group, Logie Award, the Award, Most Outstanding Actor, and the Result, nominated?",
    "question_th": "ปีเฉลี่ยที่มีการเสนอชื่อกลุ่ม, รางวัล Logie, รางวัล, นักแสดงที่โดดเด่นที่สุด และผลงาน คือเท่าใด",
    "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_en": "Before 2012, which Group has the Result, nominated, the Film/Show, East West 101, and the Award, Best Lead Actor in A Television Drama?",
    "question_th": "ก่อนปี 2555 กลุ่มใดมีผลงานได้รับการเสนอชื่อเข้าชิง ภาพยนตร์/รายการ East West 101 และรางวัลนักแสดงนำชายยอดเยี่ยม สาขาละครโทรทัศน์?",
    "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_en": "After 2008, which Group has the Result, nominated, and the Award, Best Lead Actor in a Television Drama?",
    "question_th": "หลังปี 2551 วงไหนมีผลงาน ได้รับการเสนอชื่อเข้าชิง และรางวัลนักแสดงนำชายยอดเยี่ยม สาขาละครโทรทัศน์?",
    "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_en": "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?",
    "question_th": "รางวัลคืออะไร เมื่อภาพยนตร์/รายการคือ East West 101 และเมื่อปีก่อนปี 2009 และเมื่อกลุ่มคือ 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_en": "What is the Film/Show, when the Year is 2010?",
    "question_th": "ภาพยนตร์/รายการคืออะไร เมื่อปี พ.ศ. 2553?",
    "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_en": "Which year is that has a Entrant of belond equa-flow / calif. muffler?",
    "question_th": "ปีไหนที่มีผู้เข้าประกวด belond equa-flow/calif. ท่อไอเสีย?",
    "context": "CREATE TABLE table_name_88 (year VARCHAR, entrant VARCHAR)"
  },
  {
    "answer": "SELECT AVG(wkts) FROM table_name_95 WHERE ovrs < 2",
    "question_en": "If the Ovrs is less than 2, what's the average in Wkts?",
    "question_th": "หาก Ovrs น้อยกว่า 2 ค่าเฉลี่ยใน 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_en": "If Adam Voges had less than 28.5 Ovrs, what are his highest Wkts?",
    "question_th": "ถ้า Adam Voges มี Ovr น้อยกว่า 28.5 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_en": "How many sacks have 2006 as the year, and a solo less than 62?",
    "question_th": "ปี 2549 มีกระสอบกี่กระสอบ และกระสอบเดี่ยวน้อยกว่า 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_en": "What is the average pass def that has green bay packers as the team, 62 as the solo and sacks less than 2?",
    "question_th": "ค่ากำหนดการส่งบอลโดยเฉลี่ยที่มีกรีนเบย์แพ็คเกอร์เป็นทีม 62 แต้มโซโลและกระสอบน้อยกว่า 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_en": "How many sacks have 72 as the solo and a TTkl less than 112?",
    "question_th": "มีกี่กระสอบที่มี 72 เป็นโซโลและ TTkl น้อยกว่า 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_en": "How many TTkl have 2004 as the year, and a pass def greater than 5?",
    "question_th": "ปี 2547 มี TTkl กี่อันและค่าการส่งบอลมากกว่า 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_en": "What is the highest decile of Tarras school, which had a state authority?",
    "question_th": "จุดสูงสุดของโรงเรียน Tarras ที่มีอำนาจของรัฐคือข้อใด",
    "context": "CREATE TABLE table_name_58 (decile INTEGER, authority VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT SUM(decile) FROM table_name_36 WHERE roll > 513",
    "question_en": "What is the decile of the school with a roll larger than 513?",
    "question_th": "Decile ของโรงเรียนที่มีม้วนใหญ่กว่า 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_en": "What is the area of Cromwell Primary school, which has a state authority?",
    "question_th": "โรงเรียนประถมศึกษาครอมเวลล์ซึ่งมีหน่วยงานของรัฐมีพื้นที่ใดบ้าง?",
    "context": "CREATE TABLE table_name_96 (area VARCHAR, authority VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_46 WHERE figures = \"4/14\"",
    "question_en": "Which player has figures of 4/14?",
    "question_th": "ผู้เล่นคนไหนมีตัวเลข 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_en": "How many overs occurred at Waca Ground against Queensland?",
    "question_th": "มีโอเวอร์เกิดขึ้นกี่ครั้งที่ Waca Ground กับควีนส์แลนด์?",
    "context": "CREATE TABLE table_name_31 (overs VARCHAR, ground VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT ground FROM table_name_37 WHERE figures = \"4/23\"",
    "question_en": "At which ground did Dirk Nannes have a figure of 4/23?",
    "question_th": "Dirk Nannes มีตัวเลข 4/23 ที่จุดใด",
    "context": "CREATE TABLE table_name_37 (ground VARCHAR, figures VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_45 WHERE overs = 3.3",
    "question_en": "Who was the opponent when Steven Smith had 3.3 overs?",
    "question_th": "คู่ต่อสู้เมื่อสตีเว่น สมิธทำได้ 3.3 โอเวอร์คือใคร?",
    "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_en": "Name the average year for brookvale oval and margin more than 46",
    "question_th": "ตั้งชื่อปีเฉลี่ยสำหรับวงรี brookvale และระยะขอบมากกว่า 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_en": "Name the most year for brookvale oval",
    "question_th": "ตั้งชื่อปีมากที่สุดสำหรับ 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_en": "Name the average year for manly-warringah sea eagles",
    "question_th": "ตั้งชื่อปีเฉลี่ยของนกอินทรีทะเลลูกผู้ชาย-วาร์ริงกาห์",
    "context": "CREATE TABLE table_name_13 (year INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT partner FROM table_name_29 WHERE score = \"6–1, 6–4\"",
    "question_en": "Who is the partner with a score of 6–1, 6–4?",
    "question_th": "คู่หูที่มีคะแนน 6–1, 6–4 คือใคร?",
    "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_en": "what is the best supported club with a 25 Goal and a per game larger than 1,156?",
    "question_th": "สโมสรใดที่ซัพพอร์ตได้ดีที่สุดโดยมีเป้าหมาย 25 ประตูและประตูต่อเกมมากกว่า 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_en": "What are the age groups for the Big League World Series?",
    "question_th": "กลุ่มอายุสำหรับ 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_en": "How often is the table tennis competition held?",
    "question_th": "การแข่งขันเทเบิลเทนนิสจัดขึ้นบ่อยแค่ไหน?",
    "context": "CREATE TABLE table_name_13 (held_every VARCHAR, sport VARCHAR)"
  },
  {
    "answer": "SELECT held_every FROM table_name_97 WHERE sport = \"cricket\"",
    "question_en": "How often is the cricket competition held?",
    "question_th": "การแข่งขันคริกเก็ตจัดขึ้นบ่อยแค่ไหน?",
    "context": "CREATE TABLE table_name_97 (held_every VARCHAR, sport VARCHAR)"
  },
  {
    "answer": "SELECT SUM(attendance) FROM table_name_7 WHERE record = \"47-43\"",
    "question_en": "What was the attendance of the Blue Jays' game when their record was 47-43?",
    "question_th": "อะไรคือการเข้าร่วมในเกมของ Blue Jays เมื่อสถิติของพวกเขาอยู่ที่ 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_en": "Which year had a Cosworth V8 engine and 12 points?",
    "question_th": "ปีไหนมีเครื่องยนต์ Cosworth V8 และมี 12 แต้ม?",
    "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_en": "How many points did the ATS Wheels entrant with an ATS D2 chassis have?",
    "question_th": "ผู้เข้าร่วม ATS Wheels ที่ใช้แชสซี ATS D2 มีคะแนนเท่าไร",
    "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_en": "How many races have less than 2 podiums and 19th position before 2009?",
    "question_th": "มีกี่การแข่งขันที่มีน้อยกว่า 2 โพเดียมและอันดับที่ 19 ก่อนปี 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_en": "Which co drivers are 3rd in Joest racing?",
    "question_th": "นักแข่งร่วมคนไหนเป็นอันดับ 3 ในการแข่งขัน Joest?",
    "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_en": "When was radek necas with less than 2.04 height born?",
    "question_th": "รเดค เนะกัส ส่วนสูงไม่เกิน 2.04 เกิดเมื่อไร?",
    "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_en": "How tall was the member of Nymburk, who was born in 1982?",
    "question_th": "สมาชิกของ Nymburk ซึ่งเกิดในปี 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_en": "What Kerry number does Taylor county have with more than 65 others#?",
    "question_th": "Taylor County มีหมายเลข Kerry อะไรมากกว่า 65 รายการ#",
    "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_en": "What is the smallest bush# with 66.0% bush and less than 65 others#?",
    "question_th": "พุ่มไม้ # ที่เล็กที่สุดที่มีพุ่มไม้ 66.0% และพุ่มไม้อื่น ๆ น้อยกว่า 65 อัน # คืออะไร?",
    "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_en": "Who was the captain of the away team at Adelaide Oval?",
    "question_th": "ใครเป็นกัปตันทีมเยือนที่แอดิเลดโอวัล?",
    "context": "CREATE TABLE table_name_84 (away_captain VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_79 WHERE venue = \"melbourne cricket ground\"",
    "question_en": "What is the final score at Melbourne Cricket Ground?",
    "question_th": "คะแนนสุดท้ายที่ 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_en": "Name the score for april 28",
    "question_th": "ทายผลคะแนนประจำวันที่ 28 เมษายน",
    "context": "CREATE TABLE table_name_66 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT AVG(heat) FROM table_name_38 WHERE name = \"anjelika solovieva\"",
    "question_en": "What is the average Heat for anjelika solovieva?",
    "question_th": "ฮีตเฉลี่ยของ แอนเจลิกา โซโลเวียวา คือเท่าไร?",
    "context": "CREATE TABLE table_name_38 (heat INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT AVG(lane) FROM table_name_37 WHERE nationality = \"netherlands antilles\"",
    "question_en": "What is the average lane with Netherlands Antilles Nationality?",
    "question_th": "เลนเฉลี่ยของคนสัญชาติเนเธอร์แลนด์แอนทิลลิสคือเท่าไร?",
    "context": "CREATE TABLE table_name_37 (lane INTEGER, nationality VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_42 WHERE start = \"5\"",
    "question_en": "What is the finish of the year with start 5?",
    "question_th": "สิ้นปีกับสตาร์ท 5 คืออะไร?",
    "context": "CREATE TABLE table_name_42 (finish VARCHAR, start VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_26 WHERE year = \"1940\"",
    "question_en": "What is the rank in 1940?",
    "question_th": "อันดับในปี 1940 คืออะไร?",
    "context": "CREATE TABLE table_name_26 (rank VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT MAX(laps) FROM table_name_73 WHERE rank = \"14\"",
    "question_en": "What is the highest laps of the year when the rank was 14?",
    "question_th": "รอบสูงสุดของปีที่อันดับ 14 คืออะไร?",
    "context": "CREATE TABLE table_name_73 (laps INTEGER, rank VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_75 WHERE laps = 134",
    "question_en": "What year had 134 laps?",
    "question_th": "ปีไหนมี 134 รอบ?",
    "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_en": "What is the finish when there was more than 192 laps and a qual of 135.736?",
    "question_th": "การจบสกอร์เมื่อมีมากกว่า 192 รอบและควอลิตี้ 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_en": "Witch opponent has a loss of Glynn (0-2)?",
    "question_th": "คู่ต่อสู้แม่มดแพ้กลินน์ (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_en": "Who was the previous champion of the title won on July 7, 2010?",
    "question_th": "ใครคือแชมป์คนก่อนของตำแหน่งที่ชนะเมื่อวันที่ 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ón, puerto rico\" AND champion_s_ = \"bonecrusher\"",
    "question_en": "When did Bonecrusher win the championship at Bayamón, Puerto Rico?",
    "question_th": "Bonecrusher คว้าแชมป์ที่เมืองบายามอน ประเทศเปอร์โตริโกได้เมื่อใด",
    "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_en": "Who is the champion of the title previously held by Lash?",
    "question_th": "ใครคือแชมป์ของตำแหน่งที่ 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_en": "Which championship was won on July 7, 2010?",
    "question_th": "คว้าแชมป์รายการไหนเมื่อวันที่ 7 กรกฎาคม พ.ศ. 2553?",
    "context": "CREATE TABLE table_name_92 (championship VARCHAR, date_won VARCHAR)"
  },
  {
    "answer": "SELECT trainer FROM table_name_50 WHERE odds = \"6/1\"",
    "question_en": "Who has 6/1 odds?",
    "question_th": "ใครมีอัตราต่อรอง 6/1?",
    "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_en": "What is the total dist with Johnny Murtagh and less than 26 runners?",
    "question_th": "ระยะทางรวมของ Johnny Murtagh และนักวิ่งน้อยกว่า 26 คนเป็นเท่าใด",
    "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_en": "Who has 5/1 odds?",
    "question_th": "ใครมีอัตราต่อรอง 5/1?",
    "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_en": "What course did Fergal Lynch end up with 5/1 odds?",
    "question_th": "เฟอร์กัล ลินช์ ลงเอยด้วยอัตราต่อรอง 5/1 ในหลักสูตรใด",
    "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_en": "What place has a To par of +4 and a score of 74-70-74-74=292?",
    "question_th": "สถานที่ใดมีพาร์ To +4 และคะแนน 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_en": "What place in the United States has a To par of e?",
    "question_th": "สถานที่ใดในสหรัฐอเมริกาที่มี 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_en": "What is the To par for the place in the United States and a score of 74-69-71-74=288?",
    "question_th": "To par สำหรับอันดับในสหรัฐอเมริกาคือเท่าไร และคะแนน 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_en": "What Venue is listed that has a Year smaller than 2005 and a Position of 10th (sf)?",
    "question_th": "สถานที่ใดที่อยู่ในรายการซึ่งมีปีที่เล็กกว่าปี 2548 และอยู่ในอันดับที่ 10 (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_en": "What's the average Year for the Position of 7th (sf)?",
    "question_th": "ปีเฉลี่ยสำหรับตำแหน่งที่ 7 (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_en": "What's the highest Year for the Venue of Santiago De Chile and the Event of 800 m?",
    "question_th": "ปีที่สูงที่สุดสำหรับสถานที่ Santiago De Chile และเหตุการณ์ 800 เมตรคือปีใด",
    "context": "CREATE TABLE table_name_67 (year INTEGER, event VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_97 WHERE position = \"12th (sf)\"",
    "question_en": "What Venue has a Position of 12th (sf)?",
    "question_th": "สถานที่ใดมีตำแหน่งที่ 12 (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_en": "Which engine has an Entrant of team lotus, and a Year larger than 1962?",
    "question_th": "เครื่องยนต์ใดที่มีผู้เข้าร่วมทีมโลตัสและปีใหญ่กว่าปี 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_en": "How many points have a Year larger than 1966?",
    "question_th": "หนึ่งปีมีมากกว่าปี 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_en": "What is the smallest number of points with an Engine of climax v8, and a Year of 1966?",
    "question_th": "คะแนนที่น้อยที่สุดด้วยเครื่องยนต์ถึงไคลแม็กซ์ v8 คือเท่าใด และปี 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_en": "How many points did Team Rothmans International have after 1975 when their Chassis was a March 771?",
    "question_th": "Team Rothmans International มีคะแนนกี่คะแนนหลังจากปี 1975 เมื่อแชสซีของพวกเขาคือเดือนมีนาคม 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_en": "What Nationality of the person who has a Rank of 4",
    "question_th": "ผู้ที่มีอันดับ 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_en": "Name the score on october 14",
    "question_th": "แจ้งชื่อคะแนนวันที่ 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_en": "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?",
    "question_th": "จำนวน “ประตูเพื่อ” โดยเฉลี่ยที่ทำได้ในสโมสรเรอัล โอเบียโดที่มี “ผลต่างประตู” ต่ำกว่า -16 และชนะน้อยกว่า 9 ครั้งคือเท่าใด",
    "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_en": "How many people played at the club that had a \"goal difference\" of -8 and a position lower than 12?",
    "question_th": "มีกี่คนที่เล่นในสโมสรซึ่งมี \"ผลต่างประตู\" อยู่ที่ -8 และตำแหน่งต่ำกว่า 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_en": "How many \"goals against\" were scored at the club that had a \"goal difference\" of 0, 12 wins, and more than 44 goals?",
    "question_th": "สโมสรที่ทำ \"ประตูเสีย\" ได้กี่ประตูซึ่งมี \"ผลต่างประตู\" เป็น 0, ชนะ 12 ครั้ง และมากกว่า 44 ประตู?",
    "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_en": "What is the smallest number of \"goals for\" out of the clubs where there were 18 wins and fewer than 38 \"goals against\"?",
    "question_th": "อะไรคือ \"เป้าหมาย\" ที่น้อยที่สุดจากสโมสรที่ชนะ 18 ครั้งและ \"ประตูต่อ\" น้อยกว่า 38 ครั้ง?",
    "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_en": "When did Manny Pacquiao win his first championship?",
    "question_th": "แมนนี่ ปาเกียว คว้าแชมป์ครั้งแรกเมื่อไร?",
    "context": "CREATE TABLE table_name_37 (year INTEGER, fighter VARCHAR)"
  },
  {
    "answer": "SELECT sport FROM table_name_29 WHERE nation_represented = \"united states\"",
    "question_en": "Which sport did the United States win?",
    "question_th": "กีฬาใดที่สหรัฐอเมริกาชนะ?",
    "context": "CREATE TABLE table_name_29 (sport VARCHAR, nation_represented VARCHAR)"
  },
  {
    "answer": "SELECT MAX(year) FROM table_name_72 WHERE nation_represented = \"philippines\"",
    "question_en": "What is the latest result where a person from the Philippines won?",
    "question_th": "ผลการแข่งขันล่าสุดที่บุคคลจากฟิลิปปินส์ชนะคืออะไร?",
    "context": "CREATE TABLE table_name_72 (year INTEGER, nation_represented VARCHAR)"
  },
  {
    "answer": "SELECT nation_represented FROM table_name_1 WHERE year = 2012",
    "question_en": "Which nation won the boxing championship in 2012?",
    "question_th": "ชาติใดได้แชมป์มวยไทยในปี 2555?",
    "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_en": "What is the total number of seats of the Christian Democratic Union (CDU) party?",
    "question_th": "จำนวนที่นั่งทั้งหมดของพรรค Christian Democratic Union (CDU) คือเท่าใด",
    "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_en": "What seat has a vote percentage of 100.0%",
    "question_th": "ที่นั่งใดมีคะแนนเสียงร้อยละ 100.0%",
    "context": "CREATE TABLE table_name_41 (seat_percentage VARCHAR, vote_percentage VARCHAR)"
  },
  {
    "answer": "SELECT AVG(area__km²_) FROM table_name_24 WHERE name = \"glenella\" AND population__2011_ < 522",
    "question_en": "What was the area in Glenella with a population of 522 in 2011?",
    "question_th": "พื้นที่ในเกลเนลลาที่มีประชากร 522 คนในปี 2554 คือพื้นที่ใด",
    "context": "CREATE TABLE table_name_24 (area__km²_ INTEGER, name VARCHAR, population__2011_ VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(population_density) FROM table_name_6 WHERE name = \"siglunes\" AND change___percentage_ < -8.1",
    "question_en": "What is the population density of Siglunes when the change was smaller than -8.1 percent?",
    "question_th": "ความหนาแน่นของประชากรของ Siglunes เป็นเท่าใดเมื่อการเปลี่ยนแปลงมีขนาดเล็กกว่า -8.1 เปอร์เซ็นต์?",
    "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_en": "Who was the trainer when Crowd Pleaser won?",
    "question_th": "ใครคือเทรนเนอร์เมื่อ Crowd Pleaser ชนะ?",
    "context": "CREATE TABLE table_name_67 (trainer VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_73 WHERE jockey = \"ramon dominguez\"",
    "question_en": "What was the race time of the horse with jockey Ramon Dominguez?",
    "question_th": "เวลาแข่งม้ากับจ๊อกกี้ 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_en": "What jockey rode for Michael House before 2012",
    "question_th": "นักจัดรายการคนไหนขี่ให้ Michael House ก่อนปี 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_en": "How many UK events won for the contestant that won under 1 US event?",
    "question_th": "มีกี่กิจกรรมในสหราชอาณาจักรที่ชนะสำหรับผู้เข้าแข่งขันที่ชนะต่ำกว่า 1 รายการในสหรัฐฯ",
    "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_en": "How many US events did jason bennett win?",
    "question_th": "Jason Bennett ชนะการแข่งขันในสหรัฐฯ กี่ครั้ง",
    "context": "CREATE TABLE table_name_83 (events_won__us_series_ INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT downhill FROM table_name_90 WHERE overall = \"7\"",
    "question_en": "Which downhill has 7 overalls?",
    "question_th": "ดาวน์ฮิลล์ใดมีชุดหลวม 7 ชุด?",
    "context": "CREATE TABLE table_name_90 (downhill VARCHAR, overall VARCHAR)"
  },
  {
    "answer": "SELECT combined FROM table_name_93 WHERE overall = \"2\" AND slalom = \"5\"",
    "question_en": "What is the combined of 2 overalls and 5 slaloms?",
    "question_th": "ชุดหลวมๆ 2 ชุดและสลาลม 5 ชุดรวมกันเป็นเท่าไหร่?",
    "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_en": "How many overalls has 1 combined and 24 downhills?",
    "question_th": "ชุดหลวมมีทั้งหมด 1 ชุดและดาวน์ฮิลล์ 24 ชุด?",
    "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_en": "What Distance had a Race Leader in Km (mi)?",
    "question_th": "ผู้นำการแข่งขันมีระยะทางเท่าใดในหน่วย Km (ไมล์)?",
    "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_en": "What is the highest number of points scored when Acadie-Bathurst had 4 tied games, less than 257 goals, and over 72 games played?",
    "question_th": "คือจำนวนคะแนนสูงสุดที่อคาดี้-บาเธิร์สต์ทำได้ 4 เกมเสมอกัน น้อยกว่า 257 ประตู และลงเล่นมากกว่า 72 เกมคือเท่าใด",
    "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_en": "What is the average of games played with a percentage of 3.33% and less than 29 losses?",
    "question_th": "ค่าเฉลี่ยของเกมที่เล่นด้วยเปอร์เซ็นต์ 3.33% และแพ้น้อยกว่า 29 คือเท่าไร?",
    "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_en": "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?",
    "question_th": "จำนวนเกมที่เล่นทั้งหมดสัมพันธ์กับเกมแรกในปี 1991 เปอร์เซ็นต์ 22.22% และแพ้น้อยกว่า 7 เกมเป็นเท่าใด",
    "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_en": "What is the highest number of draws that correlates with a percentage of 0.00% and less than 1 loss?",
    "question_th": "จำนวนเสมอสูงสุดที่สัมพันธ์กับเปอร์เซ็นต์ 0.00% และแพ้น้อยกว่า 1 คืออะไร?",
    "context": "CREATE TABLE table_name_92 (drawn INTEGER, percentage VARCHAR, lost VARCHAR)"
  },
  {
    "answer": "SELECT start FROM table_name_31 WHERE rank = \"11\"",
    "question_en": "What is the start value for rank 11?",
    "question_th": "ราคาเริ่มต้นสำหรับอันดับ 11 คืออะไร?",
    "context": "CREATE TABLE table_name_31 (start VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_95 WHERE laps = 200",
    "question_en": "Which year has 200 laps?",
    "question_th": "ปีไหนมี 200 รอบ?",
    "context": "CREATE TABLE table_name_95 (year VARCHAR, laps VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_67 WHERE start = \"19\"",
    "question_en": "What is the finish value for a start of 19?",
    "question_th": "ค่าจบเริ่มต้นปี 19 เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_67 (finish VARCHAR, start VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_84 WHERE stadium = \"naghsh jahan\"",
    "question_en": "where is the naghsh jahan stadium?",
    "question_th": "สนามกีฬา naghsh jahan อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_84 (city VARCHAR, stadium VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_43 WHERE past_season = \"n/a\"",
    "question_en": "what city has a past season of n/a?",
    "question_th": "เมืองใดมีฤดูกาลที่ผ่านมาเป็น n/a?",
    "context": "CREATE TABLE table_name_43 (city VARCHAR, past_season VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_74 WHERE team = \"pegah\"",
    "question_en": "where is the pegah team located?",
    "question_th": "ทีม pegah ตั้งอยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_74 (city VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT stadium FROM table_name_8 WHERE past_season = \"7th\"",
    "question_en": "what stadium has a prior record of 7th?",
    "question_th": "สนามใดมีสถิติอันดับที่ 7 ก่อนหน้านี้?",
    "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_en": "What is the Nationality on the swimmer in Lane 4 with a Time of 1:11.58?",
    "question_th": "นักว่ายน้ำสัญชาติอะไรในเลน 4 ด้วยเวลา 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_en": "What is the lowest numbered Lane with a Time of 1:10.57 and Heat larger than 2?",
    "question_th": "เลนหมายเลขต่ำสุดที่มีเวลา 1:10.57 และความร้อนมากกว่า 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ć\"",
    "question_en": "What is the Heat for Smiljana Marinović?",
    "question_th": "อะไรคือความร้อนแรงของสมิลยานา มาริโนวิช?",
    "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_en": "In heat 4, what is Byun Hye-young's Nationality?",
    "question_th": "Heat 4 บยอนฮเยยังมีสัญชาติอะไร?",
    "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_en": "Which type of song did miriam yeung sing?",
    "question_th": "มิเรียม ยอง ร้องเพลงประเภทไหน?",
    "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 = \"實情\"",
    "question_en": "What type of song is larger than 8 and named 實情?",
    "question_th": "เพลงประเภทใดที่มีขนาดใหญ่กว่า 8 และมีชื่อว่า 實情?",
    "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_en": "Which song has a ending theme, and is sung by miriam yeung?",
    "question_th": "เพลงใดมีธีมตอนจบ และร้องโดย มิเรียม ยอง?",
    "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 = \"實情\"",
    "question_en": "What is the number of the song named 實情?",
    "question_th": "實情เพลงหมายเลขอะไรคะ?",
    "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_en": "Name the total number of start when finish is less than 4",
    "question_th": "ตั้งชื่อจำนวนการเริ่มต้นทั้งหมดเมื่อเสร็จสิ้นน้อยกว่า 4",
    "context": "CREATE TABLE table_name_21 (start VARCHAR, finish INTEGER)"
  },
  {
    "answer": "SELECT SUM(year) FROM table_name_68 WHERE start < 30",
    "question_en": "Name the sum of year when start is less than 30",
    "question_th": "ตั้งชื่อผลรวมของปีเมื่อเริ่มต้นน้อยกว่า 30",
    "context": "CREATE TABLE table_name_68 (year INTEGER, start INTEGER)"
  },
  {
    "answer": "SELECT MAX(year) FROM table_name_59 WHERE start > 2",
    "question_en": "Name the most year with start more than 2",
    "question_th": "ตั้งชื่อปีมากที่สุดโดยเริ่มต้นมากกว่า 2",
    "context": "CREATE TABLE table_name_59 (year INTEGER, start INTEGER)"
  },
  {
    "answer": "SELECT MAX(year) FROM table_name_9 WHERE start < 2",
    "question_en": "Name the most year with start less than 2",
    "question_th": "ตั้งชื่อปีมากที่สุดโดยเริ่มต้นน้อยกว่า 2",
    "context": "CREATE TABLE table_name_9 (year INTEGER, start INTEGER)"
  },
  {
    "answer": "SELECT year FROM table_name_78 WHERE start = 32",
    "question_en": "Name the year when start was 32",
    "question_th": "ตั้งชื่อปีที่เริ่มต้นคือ 32",
    "context": "CREATE TABLE table_name_78 (year VARCHAR, start VARCHAR)"
  },
  {
    "answer": "SELECT MAX(finish) FROM table_name_9 WHERE year = 2006",
    "question_en": "Name the most finish for 2006",
    "question_th": "ตั้งชื่อผลงานที่จบมากที่สุดในปี 2549",
    "context": "CREATE TABLE table_name_9 (finish INTEGER, year VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(attendance) FROM table_name_25 WHERE visitor = \"detroit\" AND record = \"36–13–5\"",
    "question_en": "What was the total attendance at games when Detroit was the visiting team and the record was 36–13–5?",
    "question_th": "จำนวนผู้เข้าร่วมในเกมทั้งหมดเมื่อดีทรอยต์เป็นทีมเยือนและมีสถิติอยู่ที่ 36–13–5 คืออะไร?",
    "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_en": "When did first minister Henry Mcleish enter office?",
    "question_th": "รัฐมนตรีคนแรก Henry Mcleish เข้ารับตำแหน่งเมื่อใด",
    "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_en": "What is the name of the minister that left office on 14 November 2006?",
    "question_th": "รัฐมนตรีที่ลาออกจากตำแหน่งเมื่อวันที่ 14 พฤศจิกายน พ.ศ. 2549 ชื่ออะไร",
    "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_en": "What is the name of the minister from the party of minister for community safety and legal affairs?",
    "question_th": "รัฐมนตรีจากพรรครัฐมนตรีว่าด้วยความปลอดภัยชุมชนและกฎหมายชื่ออะไร?",
    "context": "CREATE TABLE table_name_45 (name VARCHAR, party VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_80 WHERE entered_office = \"entered office\"",
    "question_en": "What is the name of the minister who has an entered office of entered office?",
    "question_th": "รัฐมนตรีผู้เข้ารับตำแหน่งชื่ออะไร",
    "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_en": "What is the party of the minister who left office on 26 November 2002?",
    "question_th": "รัฐมนตรีพรรคใดที่ลาออกจากตำแหน่งเมื่อวันที่ 26 พฤศจิกายน พ.ศ. 2545?",
    "context": "CREATE TABLE table_name_3 (party VARCHAR, left_office VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_name_59 WHERE name = \"richard simpson\"",
    "question_en": "What is the party of Richard Simpson?",
    "question_th": "งานปาร์ตี้ของ 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_en": "Name the sum of spectators for time more than 20.05 and team #2 of estonia",
    "question_th": "ทายผลรวมผู้ชมเวลามากกว่า 20.05 น. และทีม #2 ของเอสโตเนีย",
    "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_en": "Name the spectators for 11 november 2011",
    "question_th": "รายชื่อผู้ชมวันที่ 11 พฤศจิกายน 2554",
    "context": "CREATE TABLE table_name_57 (spectators VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_68 WHERE record = \"54-39\"",
    "question_en": "Which loss has a Record of 54-39?",
    "question_th": "แพ้นัดไหนมีสถิติ 54-39?",
    "context": "CREATE TABLE table_name_68 (loss VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_73 WHERE record = \"54-38\"",
    "question_en": "Which opponent has a Record of 54-38?",
    "question_th": "คู่ต่อสู้คนไหนมีสถิติ 54-38?",
    "context": "CREATE TABLE table_name_73 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_35 WHERE date = \"july 7\"",
    "question_en": "Which opponent has a date of July 7?",
    "question_th": "คู่ต่อสู้คนไหนมีวันที่ 7 กรกฎาคม?",
    "context": "CREATE TABLE table_name_35 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_54 WHERE loss = \"eichhorn (8-5)\"",
    "question_en": "Which record has a Loss of eichhorn (8-5)?",
    "question_th": "สถิติไหนแพ้ไอค์ฮอร์น (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_en": "What is the average attendance San Jose home games?",
    "question_th": "ผู้เข้าชมเกมเหย้าโดยเฉลี่ยของซาน โฮเซ่คือเท่าใด?",
    "context": "CREATE TABLE table_name_81 (attendance INTEGER, home VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_13 WHERE loss = \"spillner (1-8)\"",
    "question_en": "What was the record at the game that had a loss of Spillner (1-8)?",
    "question_th": "สถิติในเกมที่แพ้สปิลล์เนอร์ (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_en": "What was the score of the game that had a loss of Williams (1-1)?",
    "question_th": "เกมที่แพ้วิลเลียมส์ (1-1) เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_48 (score VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_7 WHERE record = \"63-52\"",
    "question_en": "What was the loss of the game that had a record of 63-52?",
    "question_th": "แพ้เกมที่มีสถิติ 63-52 บ้าง?",
    "context": "CREATE TABLE table_name_7 (loss VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_90 WHERE record = \"11-10\"",
    "question_en": "What was the score when the Washington Nationals had a record of 11-10?",
    "question_th": "คะแนนเมื่อ Washington Nationals มีสถิติ 11-10 คืออะไร?",
    "context": "CREATE TABLE table_name_90 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_24 WHERE record = \"8-4\"",
    "question_en": "Who was the opponent when the Washington Nationals had a record of 8-4?",
    "question_th": "ใครคือคู่ต่อสู้เมื่อ Washington Nationals มีสถิติ 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_en": "How many people were in attendance when the Washington Nationals had a score of 7-3 and a loss of Worrell (0-1)?",
    "question_th": "มีกี่คนที่เข้าร่วมเมื่อ Washington Nationals มีคะแนน 7-3 และแพ้ 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_en": "Name the Qual 2 which has the name of katherine legge",
    "question_th": "ตั้งชื่อรอบ 2 ซึ่งมีชื่อว่า แคทเธอรีน เลกจ์",
    "context": "CREATE TABLE table_name_40 (qual_2 VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_2 WHERE best = \"58.846\"",
    "question_en": "Name the team with best of 58.846",
    "question_th": "ตั้งชื่อทีมด้วยคะแนนดีที่สุด 58.846",
    "context": "CREATE TABLE table_name_2 (team VARCHAR, best VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_46 WHERE best = \"58.403\"",
    "question_en": "Tell me the name with best of 58.403",
    "question_th": "บอกชื่อด้วยดีที่สุด 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_en": "Tell me the qual 1 for jan heylen",
    "question_th": "บอกคุณสมบัติ 1 ของแจน เฮย์เลนหน่อยสิ",
    "context": "CREATE TABLE table_name_13 (qual_1 VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_8 WHERE attendance = \"24,406\"",
    "question_en": "When the attendance was 24,406 who lost?",
    "question_th": "เมื่อผู้เข้าร่วม 24,406 ใครแพ้?",
    "context": "CREATE TABLE table_name_8 (loss VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_52 WHERE record = \"17-25\"",
    "question_en": "Which of the opponents has a record of 17-25?",
    "question_th": "คู่แข่งคนไหนมีสถิติ 17-25?",
    "context": "CREATE TABLE table_name_52 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_32 WHERE date = \"may 12\"",
    "question_en": "Who was the opponent that played on may 12?",
    "question_th": "คู่ต่อสู้ที่เล่นในวันที่ 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_en": "When in the 1st league position, how many people watch as they faced West Ham United?",
    "question_th": "เมื่ออยู่อันดับ 1 ในลีก มีคนดูกี่คนเมื่อเจอกับ เวสต์แฮม ยูไนเต็ด?",
    "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_en": "What is the average bronze medals of Uganda's swimmers when they earned over 2 medals?",
    "question_th": "เหรียญทองแดงโดยเฉลี่ยของนักว่ายน้ำยูกันดาเมื่อพวกเขาได้รับมากกว่า 2 เหรียญคือเท่าใด",
    "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_en": "What is the highest number of silver medals that Ireland earned when they scored less than 3 bronze medals and earned 1 medal?",
    "question_th": "จำนวนเหรียญเงินสูงสุดที่ไอร์แลนด์ได้รับเมื่อพวกเขาทำได้น้อยกว่า 3 เหรียญทองแดงและได้รับ 1 เหรียญคือเท่าใด",
    "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_en": "What's the highest silver and 1 gold that the nation of djibouti received with a total less than 3?",
    "question_th": "เงินและ 1 เหรียญทองสูงสุดที่ชาติจิบูตีได้รับรวมน้อยกว่า 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_en": "What's the total number that had a rank larger than 17 and a gold greater than 0?",
    "question_th": "จำนวนทั้งหมดที่มีอันดับมากกว่า 17 และทองมากกว่า 0 คือเท่าใด",
    "context": "CREATE TABLE table_name_73 (total VARCHAR, rank VARCHAR, gold VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_44 WHERE week < 2",
    "question_en": "Which opponent was faced before week 2?",
    "question_th": "คู่ต่อสู้คนไหนที่ต้องเผชิญก่อนสัปดาห์ที่ 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_en": "Name the least total for 1978 years won",
    "question_th": "ตั้งชื่อผลรวมน้อยที่สุดสำหรับปี 1978 ชนะ",
    "context": "CREATE TABLE table_name_30 (total INTEGER, year_s__won VARCHAR)"
  },
  {
    "answer": "SELECT total FROM table_name_24 WHERE finish = \"t22\"",
    "question_en": "Name the total with finish of t22",
    "question_th": "ตั้งชื่อผลรวมด้วยการจบ 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_en": "Name the average total for years won of 1975",
    "question_th": "ตั้งชื่อผลรวมเฉลี่ยสำหรับปีที่ชนะในปี 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_en": "Name the finish with player lou graham",
    "question_th": "ตั้งชื่อตอนจบด้วยผู้เล่น ลู เกรแฮม",
    "context": "CREATE TABLE table_name_26 (finish VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(total) FROM table_name_7 WHERE finish = \"t45\"",
    "question_en": "Name the total number of total with finish of t45",
    "question_th": "ตั้งชื่อจำนวนรวมโดยจบที่ 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_en": "What year was the League the malaysian super league, and a Malaysia Cup of group stage?",
    "question_th": "ลีกมาเลเซียซูเปอร์ลีกคือปีใด และมาเลเซียคัพในรอบแบ่งกลุ่มคือปีใด",
    "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_en": "What is the position when the League is the malaysian super league, and a Year of 2011?",
    "question_th": "ตำแหน่งอะไรเมื่อลีกคือมาเลเซียซูเปอร์ลีก และปี 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_en": "What year was the position 6/13?",
    "question_th": "ตำแหน่ง 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_en": "What year was the League of malaysian super league, and the Position was 10/14?",
    "question_th": "ลีกมาเลเซียซุปเปอร์ลีกคือปีไหน และตำแหน่งคือ 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_en": "tell me the average roll for the featherston area and integrated authority.",
    "question_th": "บอกค่าเฉลี่ยม้วนสำหรับพื้นที่เฟเธอร์สตันและอำนาจบูรณาการ",
    "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_en": "tell me the authority that has a decile less than 6 and roll less than 65.",
    "question_th": "บอกผู้มีอำนาจที่มีเดซิลน้อยกว่า 6 และหมุนน้อยกว่า 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_en": "tell me the average roll for pirinoa school.",
    "question_th": "บอกค่าเฉลี่ยของโรงเรียนพิริโนอาหน่อยสิ",
    "context": "CREATE TABLE table_name_83 (roll INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(decile) FROM table_name_90 WHERE roll = 251",
    "question_en": "tell me the total number of decile with a roll showing 251.",
    "question_th": "บอกจำนวนเดซิลทั้งหมดด้วยม้วนแสดง 251",
    "context": "CREATE TABLE table_name_90 (decile VARCHAR, roll VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_69 WHERE year = 2004",
    "question_en": "What is the score for 2004?",
    "question_th": "คะแนนปี 2547 เป็นเท่าไหร่?",
    "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_en": "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)?",
    "question_th": "ตำแหน่งไหนที่แชมป์คือ บริกแฮม ยัง-ฮาวาย แพ้ เวสเทิร์น ออริกอน และสกอร์ 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_en": "what is the year when the location is san diego, california and defeated is houston baptist (texas)?",
    "question_th": "ปีที่สถานที่คือซานดิเอโก แคลิฟอร์เนีย และพ่ายแพ้คือฮูสตันแบ๊บติสต์ (เท็กซัส) คือปีใด?",
    "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_en": "Operation start of 2015 has what gross mw?",
    "question_th": "เริ่มดำเนินการปี 2558 มีมิลลิวัตต์รวมเท่าไร?",
    "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_en": "Gross MW of 220, and a Unit of kakrapar 1 involves what operation start?",
    "question_th": "เมกะวัตต์รวม 220 และหน่วยคักราปาร์ 1 เกี่ยวข้องกับการดำเนินการใดที่เริ่มต้น?",
    "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_en": "Type of phase ii has what gross mw?",
    "question_th": "ประเภทของเฟสที่ 2 มีมวลรวมเท่าใด",
    "context": "CREATE TABLE table_name_94 (gross_mw VARCHAR, type VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_61 WHERE construction_start = \"phase i\"",
    "question_en": "Construction start of phase i includes what type?",
    "question_th": "เริ่มก่อสร้างเฟส i รวมประเภทไหน?",
    "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_en": "Construction start of 1 december 1984 is what unit?",
    "question_th": "เริ่มก่อสร้าง 1 ธันวาคม 2527 เป็นยูนิตอะไร?",
    "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_en": "Construction start of phase ii has what operation start?",
    "question_th": "การก่อสร้างเฟสที่ 2 เริ่มดำเนินการได้เมื่อใด?",
    "context": "CREATE TABLE table_name_51 (operation_start VARCHAR, construction_start VARCHAR)"
  },
  {
    "answer": "SELECT ungegn FROM table_name_70 WHERE word_form = \"ត្រីទស\"",
    "question_en": "what's the ungen for ត្រីទស?",
    "question_th": "ungen ของ ត្រីទស คืออะไร?",
    "context": "CREATE TABLE table_name_70 (ungegn VARCHAR, word_form VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_name_59 WHERE khmer = \"២៨\"",
    "question_en": "what notes have the khmer ២៨?",
    "question_th": "มีโน้ตภาษาเขมร ២៨ อะไรบ้าง?",
    "context": "CREATE TABLE table_name_59 (notes VARCHAR, khmer VARCHAR)"
  },
  {
    "answer": "SELECT ungegn FROM table_name_23 WHERE khmer = \"១០០\"",
    "question_en": "what's the ungegn for the ១០០ khmer?",
    "question_th": "ungegn สำหรับ ១០០ เขมรคืออะไร",
    "context": "CREATE TABLE table_name_23 (ungegn VARCHAR, khmer VARCHAR)"
  },
  {
    "answer": "SELECT MAX(population___2010__) FROM table_name_22 WHERE territory = \"puerto rico\"",
    "question_en": "What was the population of Puerto Rico in 2010?",
    "question_th": "ประชากรของเปอร์โตริโกในปี 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_en": "What is the territory that was acquired past 1899 and has a capital of saipan?",
    "question_th": "ดินแดนที่ได้มาในปี พ.ศ. 2442 และมีเมืองหลวงของไซปันคืออะไร?",
    "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_en": "Name the termination of mission for appointed by of franklin pierce",
    "question_th": "แจ้งยกเลิกภารกิจแต่งตั้งโดยแฟรงคลิน เพียร์ซ",
    "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_en": "Name the representative with presentation of credentials of august 16, 1928",
    "question_th": "เสนอชื่อผู้แทนพร้อมแสดงหนังสือรับรอง เมื่อวันที่ 16 สิงหาคม พ.ศ. 2471",
    "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_en": "Name the representative appointed by george w. bush with presentation of credentials 9 november 2007",
    "question_th": "ระบุชื่อตัวแทนที่ได้รับการแต่งตั้งโดย George W. บุชพร้อมการนำเสนอหนังสือรับรอง 9 พฤศจิกายน 2550",
    "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_en": "Name the title with representative edward h. strobel",
    "question_th": "ตั้งชื่อเรื่องโดยมีตัวแทน เอ็ดเวิร์ด เอช. สโตรเบล",
    "context": "CREATE TABLE table_name_21 (title VARCHAR, representative VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_43 WHERE money___$__ = 600",
    "question_en": "Which Country that has 600?",
    "question_th": "ประเทศใดที่มี 600?",
    "context": "CREATE TABLE table_name_43 (country VARCHAR, money___$__ VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_41 WHERE player = \"macdonald smith\"",
    "question_en": "What is the to par that has macdonald smith as the player?",
    "question_th": "แต้มพาร์ที่มีแมคโดนัลด์ สมิธเป็นผู้เล่นคืออะไร?",
    "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_en": "Which country has t6 as a place and 75-70=145 as the score?",
    "question_th": "ประเทศใดมี t6 เป็นสถานที่และมีคะแนน 75-70=145",
    "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_en": "What is the to par that has jimmy hines as the player?",
    "question_th": "อะไรคือพาร์ที่จิมมี่ไฮนส์เป็นผู้เล่น?",
    "context": "CREATE TABLE table_name_46 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_27 WHERE place = \"t3\"",
    "question_en": "Which score has t3 as the place?",
    "question_th": "คะแนนไหนมี t3 เป็นตำแหน่ง?",
    "context": "CREATE TABLE table_name_27 (score VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_10 WHERE player = \"horton smith\"",
    "question_en": "Which place has horton smith as the player?",
    "question_th": "สถานที่ใดที่มีฮอร์ตัน สมิธเป็นผู้เล่น?",
    "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_en": "Which place has United States as the country and Craig Wood as the player?",
    "question_th": "สถานที่ใดที่มีสหรัฐอเมริกาเป็นประเทศและมีเครก วูดเป็นผู้เล่น?",
    "context": "CREATE TABLE table_name_88 (place VARCHAR, country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT 2013 FROM table_name_94 WHERE 2007 = \"a\"",
    "question_en": "What was the 2013 finish for the tournament that had a 2007 finish of A?",
    "question_th": "การจบการแข่งขันในปี 2013 สำหรับทัวร์นาเมนต์ที่จบ A ในปี 2007 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_94 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2012 FROM table_name_62 WHERE tournament = \"us open\"",
    "question_en": "What was the 2012 finish in the US Open?",
    "question_th": "การแข่งขัน US Open ในปี 2012 เป็นอย่างไร",
    "context": "CREATE TABLE table_name_62 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_42 WHERE 2010 = \"4r\"",
    "question_en": "Which tournament had a 2010 finish of 4R?",
    "question_th": "ทัวร์นาเมนต์ใดที่จบด้วย 4R ในปี 2010?",
    "context": "CREATE TABLE table_name_42 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT qual FROM table_name_70 WHERE rank = \"29\" AND year = \"1957\"",
    "question_en": "What is the qualification for rank of 29 in 1957?",
    "question_th": "คุณสมบัติสำหรับอันดับ 29 ในปี 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_en": "What is the Place when the To par was +3 and Score was 74-73=147?",
    "question_th": "ตำแหน่งที่พาร์ถึง +3 และสกอร์คือ 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_en": "When the To par is E, what is the Score?",
    "question_th": "เมื่อพาร์ To เป็น E แล้วสกอร์จะเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_62 (score VARCHAR, to_par VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_63 WHERE player = \"lloyd mangrum\"",
    "question_en": "What was Lloyd Mangrum's Score?",
    "question_th": "คะแนนของ Lloyd Mangrum คืออะไร",
    "context": "CREATE TABLE table_name_63 (score VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_66 WHERE player = \"dave douglas\"",
    "question_en": "What Dave Douglas' Place?",
    "question_th": "สถานที่ของ Dave Douglas คืออะไร?",
    "context": "CREATE TABLE table_name_66 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_21 WHERE player = \"chick harbert\"",
    "question_en": "What's Chick Harbert's To par?",
    "question_th": "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_en": "What United States Player has a To par of +4 and a Score of 71-77=148?",
    "question_th": "ผู้เล่น United States คนใดมีพาร์ถึง +4 และคะแนน 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_en": "What is South Korea's to par value?",
    "question_th": "มูลค่าพาร์ของเกาหลีใต้คือเท่าไร?",
    "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_en": "What are Tiger Woods' average earnings?",
    "question_th": "รายได้เฉลี่ยของ Tiger Woods คืออะไร?",
    "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_en": "What's the method for a record of 4-2 and round smaller than 3?",
    "question_th": "การบันทึก 4-2 และปัดเศษน้อยกว่า 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_en": "Where's the location for the opponent James Zikic and 3 rounds?",
    "question_th": "เจมส์ ซิคิช คู่ต่อสู้ทั้ง 3 นัดอยู่ไหน?",
    "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_en": "Name the spouse for louise of hesse-kassel",
    "question_th": "ตั้งชื่อคู่สมรสให้หลุยส์แห่งเฮสส์-คาสเซิล",
    "context": "CREATE TABLE table_name_83 (spouse VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT became_consort FROM table_name_31 WHERE spouse = \"christian ix\"",
    "question_en": "Name the became consort for christian ix spouse",
    "question_th": "ตั้งชื่อคู่สมรสของคริสเตียนที่ 9",
    "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_en": "Name the marriagefor ceased to be consort of 29 september 1898",
    "question_th": "ตั้งชื่อการอภิเษกสมรสโดยเลิกเป็นมเหสีเมื่อวันที่ 29 กันยายน พ.ศ. 2441",
    "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_en": "Tell me the name of the person married to frederick ix",
    "question_th": "บอกชื่อบุคคลที่แต่งงานกับเฟรดเดอริก ix ให้ฉันหน่อย",
    "context": "CREATE TABLE table_name_71 (name VARCHAR, spouse VARCHAR)"
  },
  {
    "answer": "SELECT birth FROM table_name_8 WHERE marriage = \"24 may 1935\"",
    "question_en": "Name the birth of the person married 24 may 1935",
    "question_th": "ตั้งชื่อวันเกิดของบุคคลที่แต่งงานแล้ว 24 พ.ค. 2478",
    "context": "CREATE TABLE table_name_8 (birth VARCHAR, marriage VARCHAR)"
  },
  {
    "answer": "SELECT AVG(rank) FROM table_name_73 WHERE lane = 6",
    "question_en": "What was the rank of the player in lane 6?",
    "question_th": "ผู้เล่นในเลน 6 มีอันดับเท่าไหร่?",
    "context": "CREATE TABLE table_name_73 (rank INTEGER, lane VARCHAR)"
  },
  {
    "answer": "SELECT AVG(year) FROM table_name_11 WHERE laps = 6",
    "question_en": "Name the average year with Laps of 6",
    "question_th": "ตั้งชื่อปีเฉลี่ยด้วยรอบ 6",
    "context": "CREATE TABLE table_name_11 (year INTEGER, laps VARCHAR)"
  },
  {
    "answer": "SELECT language FROM table_name_64 WHERE number = \"553 633\"",
    "question_en": "Which Language has a Number of 553 633?",
    "question_th": "ภาษาใดมีจำนวน 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_en": "Which Males have a percentage of 0.42?",
    "question_th": "เพศชายคนใดมีเปอร์เซ็นต์ 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_en": "What's the Language with a percentage of 6.49?",
    "question_th": "ภาษาอะไรที่มีเปอร์เซ็นต์ 6.49 คืออะไร?",
    "context": "CREATE TABLE table_name_69 (language VARCHAR, percentage___percentage_ VARCHAR)"
  },
  {
    "answer": "SELECT number FROM table_name_33 WHERE language = \"other\"",
    "question_en": "What Number has a Language listed as other?",
    "question_th": "หมายเลขใดที่มีภาษาอยู่ในรายการเป็นภาษาอื่น",
    "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_en": "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?",
    "question_th": "จำนวนทองคำสูงสุดเมื่อรวมมากกว่า 3, ทองสัมฤทธิ์น้อยกว่า 3 และประเทศเบลารุสที่มีเงินมากกว่า 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_en": "with silver count at 0, what is the lowest bronze count?",
    "question_th": "เงินอยู่ที่ 0 แล้วเหรียญทองแดงต่ำสุดคือเท่าไร?",
    "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_en": "what is the gold count with total less than 3 and more than 1 silver?",
    "question_th": "จำนวนทองคำที่มียอดรวมน้อยกว่า 3 และมากกว่า 1 เงินคือเท่าไร?",
    "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_en": "Who built the ship that is 42.8 m long and was delivered in 2007?",
    "question_th": "ใครเป็นคนสร้างเรือลำนี้ซึ่งมีความยาว 42.8 ม. และส่งมอบในปี 2550",
    "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_en": "Who was the Human Resources & Operations person between 2003-2004?",
    "question_th": "บุคลากรฝ่ายทรัพยากรบุคคลและปฏิบัติการระหว่างปี 2546-2547 คือใคร",
    "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_en": "Who was in local affairs when the Human Resources & Operations was N. Charles Hamilton?",
    "question_th": "ใครอยู่ในกิจการท้องถิ่นเมื่อฝ่ายทรัพยากรบุคคลและการปฏิบัติการคือ 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_en": "Who was in Human Resources & Operations when David Hornsby was in Academic & University Affairs?",
    "question_th": "ใครอยู่ในฝ่ายทรัพยากรบุคคลและการปฏิบัติการเมื่อ David Hornsby อยู่ในฝ่ายวิชาการและมหาวิทยาลัย",
    "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_en": "Who was in external affairs when Jakki Doyle was in Human Resources & Operations?",
    "question_th": "ใครอยู่ในกิจการภายนอกเมื่อ Jakki Doyle อยู่ในฝ่ายทรัพยากรบุคคลและการปฏิบัติการ?",
    "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_en": "Who was in local affairs in 2012-2013?",
    "question_th": "ใครอยู่ในกิจการท้องถิ่นในปี 2555-2556?",
    "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_en": "Who was in Academic & University Affairs when Andrew Langille  was in local affairs?",
    "question_th": "ใครอยู่ในฝ่ายวิชาการและมหาวิทยาลัยเมื่อ Andrew Langille อยู่ในฝ่ายกิจการท้องถิ่น?",
    "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_en": "Which Perth's gold coast and Adelaide were yes when Auckland was no?",
    "question_th": "โกลด์โคสต์ของเมืองเพิร์ทและแอดิเลดคนใดที่ใช่เมื่อโอ๊คแลนด์ไม่ใช่",
    "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_en": "Which Melbourne had a gold coast and sydney which were yes, but an adelaide that was no?",
    "question_th": "เมลเบิร์นคนไหนมีโกลด์โคสต์และซิดนีย์ที่ใช่ แต่แอดิเลดที่ไม่มี",
    "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_en": "Which Adelaide's Melbourne and Perth were yes when Auckland was no?",
    "question_th": "เมลเบิร์นและเพิร์ธของแอดิเลดคนไหนที่ใช่เมื่อโอ๊คแลนด์ไม่ใช่",
    "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_en": "Which Sydney's Melbourne was no, when Auckland was yes?",
    "question_th": "เมลเบิร์นในซิดนีย์คนไหนที่ไม่ใช่ เมื่อโอ๊คแลนด์ใช่?",
    "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_en": "Which Syndney's Gold coast, Adelaide, Melbourne, and Auckland were all no?",
    "question_th": "Gold Coast ของ Syndney, Adelaide, Melbourne และ Auckland ใดล้วนแต่ไม่ใช่",
    "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_en": "Which Adelaide's Melbourne, Sydney, and Gold Coast were all no?",
    "question_th": "เมลเบิร์น ซิดนีย์ และโกลด์โคสต์ในแอดิเลดแห่งใดที่ล้วนไม่เป็นเช่นนั้น",
    "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_en": "Name the date which has type of plain stage",
    "question_th": "ตั้งชื่อวันที่ซึ่งมีประเภทเวทีธรรมดา",
    "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_en": "Name the distance for Course of vittorio veneto to marina romea",
    "question_th": "ตั้งชื่อระยะทางสำหรับ Course of vittorio veneto ถึง Marina romea",
    "context": "CREATE TABLE table_name_3 (distance VARCHAR, course VARCHAR)"
  },
  {
    "answer": "SELECT partner FROM table_name_52 WHERE surface = \"grass\"",
    "question_en": "Who was the partner that played a match on a grass court?",
    "question_th": "ใครคือคู่หูที่เล่นแมตช์บนสนามหญ้า?",
    "context": "CREATE TABLE table_name_52 (partner VARCHAR, surface VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_72 WHERE partner = \"mardy fish\"",
    "question_en": "What was the score of the match in which mardy fish was the partner?",
    "question_th": "แมตช์นี้แมตช์ที่มาร์ดี้ ฟิชเป็นคู่ได้สกอร์เท่าไหร่?",
    "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_en": "Who were the opponents in the match that was played on a hard court and had a runner-up outcome?",
    "question_th": "ใครคือคู่ต่อสู้ในการแข่งขันที่เล่นบนฮาร์ดคอร์ตและได้รองแชมป์?",
    "context": "CREATE TABLE table_name_84 (opponents VARCHAR, surface VARCHAR, outcome VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_86 WHERE opponent = \"phil collins\"",
    "question_en": "What is the time when the opponent is phil collins?",
    "question_th": "เมื่อไหร่ที่คู่ต่อสู้คือฟิล คอลลินส์?",
    "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_en": "what is the total number of rounds when method is tko (punches) and time is 0:40?",
    "question_th": "จำนวนรอบทั้งหมดเมื่อวิธี tko (ต่อย) และเวลา 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_en": "what is the method when the time is 0:51?",
    "question_th": "เมื่อเวลา 0:51 มีวิธีใดบ้าง?",
    "context": "CREATE TABLE table_name_5 (method VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_15 WHERE event = \"bellator 89\"",
    "question_en": "what is the time when the event is bellator 89?",
    "question_th": "งาน 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_en": "Name the average debt as % of value for operating income more than -16 and % change on year being 62",
    "question_th": "ตั้งชื่อหนี้เฉลี่ยเป็น % ของมูลค่ารายได้จากการดำเนินงานมากกว่า -16 และ % การเปลี่ยนแปลงในปี 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_en": "Name the country where % change on year is 21 and value is less than 86",
    "question_th": "ตั้งชื่อประเทศโดยที่ % การเปลี่ยนแปลงในปีคือ 21 และค่าน้อยกว่า 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_en": "Name the total number of revenue for italy with team of internazionale with operating income less than 27",
    "question_th": "ตั้งชื่อจำนวนรายได้รวมของอิตาลีด้วยทีมงานจากต่างประเทศที่มีรายได้จากการดำเนินงานน้อยกว่า 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_en": "Name the most revenue for operating income more than 27 for hamburg and debt as % of value less than 0",
    "question_th": "ตั้งชื่อรายได้มากที่สุดสำหรับรายได้จากการดำเนินงานมากกว่า 27 สำหรับฮัมบูร์กและหนี้เป็น % ของมูลค่าน้อยกว่า 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_en": "What is the result for an H/A of H and a round value of R6 replay?",
    "question_th": "ผลลัพธ์ของ H/A ของ H และค่ารอบการเล่นซ้ำ R6 คืออะไร?",
    "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_en": "What was the kickoff date for the round value of R4?",
    "question_th": "วันที่เริ่มต้นสำหรับมูลค่ารอบ R4 คือเมื่อใด",
    "context": "CREATE TABLE table_name_23 (kick_off VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_22 WHERE player = \"henry picard\"",
    "question_en": "What country was Henry Picard from?",
    "question_th": "Henry Picard มาจากประเทศใด",
    "context": "CREATE TABLE table_name_22 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT SUM(inversions) FROM table_name_89 WHERE opened = \"april 20, 2002\"",
    "question_en": "Name the sum of inversions for opened of april 20, 2002",
    "question_th": "ตั้งชื่อผลรวมของการผกผันสำหรับการเปิดวันที่ 20 เมษายน พ.ศ. 2545",
    "context": "CREATE TABLE table_name_89 (inversions INTEGER, opened VARCHAR)"
  },
  {
    "answer": "SELECT opened FROM table_name_59 WHERE country = \"spain\"",
    "question_en": "Name the opened for spain",
    "question_th": "ตั้งชื่อที่เปิดสำหรับสเปน",
    "context": "CREATE TABLE table_name_59 (opened VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_29 WHERE park = \"six flags new england\"",
    "question_en": "Name the status for six flags new england",
    "question_th": "ตั้งชื่อสถานะ Six Flags New England",
    "context": "CREATE TABLE table_name_29 (status VARCHAR, park VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_30 WHERE money___£__ = \"200,000\" AND country = \"australia\"",
    "question_en": "Name the to par with money of 200,000 for australia",
    "question_th": "ตั้งชื่อพาร์ด้วยเงิน 200,000 สำหรับออสเตรเลีย",
    "context": "CREATE TABLE table_name_30 (to_par VARCHAR, money___£__ VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT money___£__ FROM table_name_73 WHERE country = \"ireland\"",
    "question_en": "Name the money for ireland",
    "question_th": "ตั้งชื่อเงินสำหรับไอร์แลนด์",
    "context": "CREATE TABLE table_name_73 (money___£__ VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT money___£__ FROM table_name_56 WHERE player = \"pádraig harrington\"",
    "question_en": "Name the money for pádraig harrington",
    "question_th": "ตั้งชื่อเงินให้พาดราก แฮร์ริงตัน",
    "context": "CREATE TABLE table_name_56 (money___£__ VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_84 WHERE score = 69 - 73 - 68 - 70 = 280",
    "question_en": "Name the to par for score of 69-73-68-70=280",
    "question_th": "ตั้งชื่อพาร์ด้วยคะแนน 69-73-68-70=280",
    "context": "CREATE TABLE table_name_84 (to_par VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT money___£__ FROM table_name_49 WHERE to_par = \"-6\"",
    "question_en": "Name the money for the to par of -6",
    "question_th": "ตั้งชื่อเงินสำหรับพาร์ของ -6",
    "context": "CREATE TABLE table_name_49 (money___£__ VARCHAR, to_par VARCHAR)"
  },
  {
    "answer": "SELECT term_end FROM table_name_85 WHERE party = \"centre party\"",
    "question_en": "On what date or dates did the term with the Centre Party end?",
    "question_th": "วาระกับพรรคกลางสิ้นสุดลงเมื่อใดหรือวันที่ใด?",
    "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_en": "When did the term end for the term that had government 27 and Minister Tzachi Hanegbi?",
    "question_th": "วาระที่มีรัฐบาล 27 และรัฐมนตรี 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_en": "What is the location/state of the race on the Wanneroo raceway?",
    "question_th": "สถานที่/สถานะของการแข่งขันบนสนามแข่ง Wanneroo คืออะไร?",
    "context": "CREATE TABLE table_name_5 (location___state VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT location___state FROM table_name_60 WHERE race_title = \"launceston\"",
    "question_en": "What is the location/state of the Launceston race?",
    "question_th": "สถานที่/สถานะของการแข่งขันลอนเซสตันคืออะไร?",
    "context": "CREATE TABLE table_name_60 (location___state VARCHAR, race_title VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_55 WHERE winner = \"dick johnson\"",
    "question_en": "What is the team of winner Dick Johnson?",
    "question_th": "ทีมของผู้ชนะ 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_en": "What is the race title of the Oran Park raceway circuit with team jps team bmw?",
    "question_th": "สนามแข่งรถ Oran Park กับทีม jps ทีม 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_en": "Name the total number of population hervey bay with population woocoo less than 640 and population of maryborough less than 19,257",
    "question_th": "ตั้งชื่อจำนวนประชากรทั้งหมด อ่าวเฮอร์วีย์ โดยมีประชากร woocoo น้อยกว่า 640 และประชากรของ maryborough น้อยกว่า 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_en": "Which manufacturer made Shoya Tomizawa's motorcycle?",
    "question_th": "ผู้ผลิตรายใดที่ผลิตรถจักรยานยนต์ของ Shoya Tomizawa?",
    "context": "CREATE TABLE table_name_20 (manufacturer VARCHAR, rider VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(laps) FROM table_name_24 WHERE time_retired = \"+37.351\"",
    "question_en": "How many laps were ridden in the race that had a Time/Retired of +37.351?",
    "question_th": "มีกี่รอบในการแข่งขันที่มีเวลา/เกษียณอยู่ที่ +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_en": "How many laps did Mattia Pasini ride?",
    "question_th": "มัตเทีย ปาซินี ขี่ไปกี่รอบ?",
    "context": "CREATE TABLE table_name_16 (laps INTEGER, rider VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_58 WHERE appearances = 244 AND leeds_career = \"1981–1989\"",
    "question_en": "What position does the player who has made 244 appearances with a Leeds career of 1981–1989 play?",
    "question_th": "ผู้เล่นที่ลงเล่นไป 244 นัดในอาชีพลีดส์ในฤดูกาล 1981–1989 ลงเล่นในตำแหน่งใด?",
    "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–1982\"",
    "question_en": "What position does the Wales player who made more than 167 appearances, had more than 0 goals, and had a Leeds career from 1977–1982 play?",
    "question_th": "นักเตะเวลส์ที่ลงสนามมากกว่า 167 นัดในตำแหน่งใด ยิงได้มากกว่า 0 ประตู และเล่นอาชีพลีดส์ตั้งแต่ปี 1977–1982?",
    "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–1964\" AND appearances < 120",
    "question_en": "What is the average number of goals for a player who had a Leeds career from 1960–1964 and made fewer than 120 appearances?",
    "question_th": "จำนวนประตูเฉลี่ยของผู้เล่นที่เคยเล่นอาชีพลีดส์ระหว่างปี 1960–1964 และลงเล่นน้อยกว่า 120 นัดคือเท่าใด",
    "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_en": "Who attended the school in 2008, that Deandria Hill attended in 2005?",
    "question_th": "ใครเข้าเรียนที่โรงเรียนในปี 2551 ซึ่ง Deandria Hill เข้าเรียนในปี 2548",
    "context": "CREATE TABLE table_name_15 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2006 FROM table_name_70 WHERE 2005 = \"jasmine wilson\"",
    "question_en": "Who attended the school in 2006, that Jasmine Wilson attended in 2005?",
    "question_th": "ใครเข้าเรียนที่โรงเรียนในปี 2549 ที่จัสมิน วิลสันเข้าเรียนในปี 2548",
    "context": "CREATE TABLE table_name_70 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2009 FROM table_name_60 WHERE 2007 = \"lakita hall\"",
    "question_en": "Who attended the school in 2009, that Lakita Hall attended in 2007?",
    "question_th": "ใครเข้าโรงเรียนในปี 2552 ที่ Lakita Hall เข้าร่วมในปี 2550",
    "context": "CREATE TABLE table_name_60 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2007 FROM table_name_20 WHERE 2008 = \"kiara spivey\"",
    "question_en": "Who attended the school in 2007, that Kiara Spivey attended in 2008?",
    "question_th": "ใครเข้าเรียนที่โรงเรียนในปี 2550 และ Kiara Spivey เข้าเรียนในปี 2551",
    "context": "CREATE TABLE table_name_20 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2006 FROM table_name_32 WHERE 2007 = \"whitney powell\"",
    "question_en": "Who attended the school in 2006, that Whitney Powell attended in 2007?",
    "question_th": "ใครเข้าเรียนที่โรงเรียนในปี 2549 ซึ่งวิทนีย์ พาวเวลล์เข้าเรียนในปี 2550",
    "context": "CREATE TABLE table_name_32 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2008 FROM table_name_42 WHERE 2006 = \"brikajdri wilson\"",
    "question_en": "Who attended the school in 2008, that Brikajdri Wilson attended in 2006?",
    "question_th": "ใครเข้าเรียนที่โรงเรียนในปี 2551 และ Brikajdri Wilson เข้าเรียนในปี 2549",
    "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_en": "What is the lowest rank of a swimmer named Elizabeth Van Welie with a lane larger than 5?",
    "question_th": "อันดับต่ำสุดของนักว่ายน้ำชื่อ Elizabeth Van Welie ที่มีเลนมากกว่า 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_en": "What is the rank of the swimmer with a time of 2:11.83?",
    "question_th": "นักว่ายน้ำอันดับเท่าไหร่ด้วยเวลา 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_en": "What is the lowest lane of a swimmer with a time of 2:07.57 and a rank larger than 1?",
    "question_th": "เลนต่ำสุดของนักว่ายน้ำด้วยเวลา 2:07.57 และอันดับที่มากกว่า 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_en": "What is the rank of the swimmer named Petria Thomas?",
    "question_th": "นักว่ายน้ำชื่อ เพเทรีย โธมัส มียศอะไร",
    "context": "CREATE TABLE table_name_34 (rank VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_56 WHERE group_position = \"3rd\"",
    "question_en": "How many people were in attendance when the group position was 3rd?",
    "question_th": "มีผู้เข้าร่วมกี่คนเมื่อตำแหน่งกลุ่มอยู่ที่ 3?",
    "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_en": "What was the final score agains Dynamo Kyiv, when the group position was 1st?",
    "question_th": "สกอร์สุดท้ายกับดินาโม เคียฟ เมื่ออันดับกลุ่มอยู่ที่ 1 คืออะไร?",
    "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_en": "What was the average attendance on 18 October 2000?",
    "question_th": "ผู้เข้าร่วมโดยเฉลี่ยในวันที่ 18 ตุลาคม พ.ศ. 2543 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_51 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_35 WHERE year_s__won = \"2007\"",
    "question_en": "In 2007, what player won player of the year?",
    "question_th": "ในปี 2550 ผู้เล่นคนใดได้รับรางวัลผู้เล่นแห่งปี?",
    "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_en": "What year(s) did Mike Weir win player of the year?",
    "question_th": "Mike Weir ได้รับรางวัลนักเตะยอดเยี่ยมแห่งปีในปีใด?",
    "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_en": "The To par of +14 was won in what year(s)?",
    "question_th": "ถึงพาร์ +14 ชนะในปีใด?",
    "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_en": "What is the result when the competition is 1982 president's cup?",
    "question_th": "เมื่อแข่งขันชิงถ้วยประธานาธิบดีปี 1982 ผลเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_5 (result VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_98 WHERE date = \"december 14, 1985\"",
    "question_en": "What is the score when the date is December 14, 1985?",
    "question_th": "คะแนนเมื่อวันที่ 14 ธันวาคม 2528 เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_98 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_32 WHERE date = \"september 24, 1980\"",
    "question_en": "What is the venue when the date is September 24, 1980?",
    "question_th": "สถานที่จัดงานคือวันที่ 24 กันยายน พ.ศ. 2523 เป็นอย่างไร?",
    "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_en": "What is the venue when the result is 2-0, and the score is 1 goal, and the competition is 1980 afc asian cup?",
    "question_th": "สนามไหนที่ผลสกอร์เป็น 2-0 และสกอร์ 1 ประตู และรายการแข่งขันคือ เอเอฟซี เอเชียน คัพ 1980?",
    "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_en": "What is the venue when the score is 1 goal, and the date is August 27, 1980?",
    "question_th": "สนามไหนมีสกอร์ 1 ประตู และวันที่ 27 สิงหาคม 2523 คือสนามไหน?",
    "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_en": "What is the result when the date is August 27, 1980?",
    "question_th": "เมื่อถึงวันที่ 27 สิงหาคม 2523 ผลเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_11 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT SUM(year) FROM table_name_15 WHERE entrant = \"bmw motorsport\"",
    "question_en": "What year shows the Entrant of bmw motorsport?",
    "question_th": "ผู้เข้าร่วมการแข่งขันมอเตอร์สปอร์ต BMW จะแสดงในปีใด",
    "context": "CREATE TABLE table_name_15 (year INTEGER, entrant VARCHAR)"
  },
  {
    "answer": "SELECT MIN(points) FROM table_name_78 WHERE entrant = \"stp march engineering\"",
    "question_en": "Which Entrant of stp march engineering scored the lowest points?",
    "question_th": "ผู้เข้าร่วมโครงการ stp March Engineering คนใดได้คะแนนต่ำที่สุด",
    "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_en": "What year had the Chassis of march 762 and more than 0 points?",
    "question_th": "ปีไหนที่แชสซีของเดือนมีนาคม 762 และมากกว่า 0 คะแนน?",
    "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_en": "Which engine of bmw had the lowest points and chassis of march 792 that is newer than 1979?",
    "question_th": "เครื่องยนต์ใดของ BMW ที่มีคะแนนต่ำสุดและแชสซีของเดือนมีนาคม 792 ที่ใหม่กว่าปี 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_en": "Which Conference has a City of boca raton, and a School of florida atlantic university?",
    "question_th": "การประชุมใดที่มีเมืองโบคา ราตัน และโรงเรียนของมหาวิทยาลัยฟลอริดาแอตแลนติก",
    "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_en": "Which School has a National Championships of 2, and a City of orlando?",
    "question_th": "โรงเรียนใดมีการแข่งขันชิงแชมป์แห่งชาติ 2 รายการ และเมืองออร์แลนโด",
    "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_en": "Which school has National Championships smaller than 2, and a Nickname of lions?",
    "question_th": "โรงเรียนใดมี National Championships น้อยกว่า 2 และมีชื่อเล่นว่า 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_en": "What is the win percentage when 2011 shows 1r in the Paris tournament?",
    "question_th": "เปอร์เซ็นต์การชนะเมื่อปี 2011 แสดงที่ 1r ในการแข่งขันปารีสเป็นเท่าใด",
    "context": "CREATE TABLE table_name_95 (win__percentage VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2009 FROM table_name_32 WHERE 2011 = \"25\"",
    "question_en": "What shows for 2009 when 25 shows for 2011?",
    "question_th": "รายการอะไรในปี 2552 เมื่อ 25 รายการในปี 2554?",
    "context": "CREATE TABLE table_name_32 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2010 FROM table_name_35 WHERE 2011 = \"1r\" AND tournament = \"us open\"",
    "question_en": "What shows for 2010 when 2011 is 1r at the US Open tournament?",
    "question_th": "มีอะไรแสดงให้เห็นในปี 2010 เมื่อปี 2011 เป็นที่ 1 ในการแข่งขัน US Open?",
    "context": "CREATE TABLE table_name_35 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT win__percentage FROM table_name_74 WHERE 2010 = \"98\"",
    "question_en": "What is the win percentage when 2010 was 98?",
    "question_th": "เปอร์เซ็นต์การชนะเมื่อปี 2010 เป็น 98 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_74 (win__percentage VARCHAR)"
  },
  {
    "answer": "SELECT 2008 FROM table_name_22 WHERE tournament = \"shanghai\"",
    "question_en": "What shows for 2008 at the Shanghai tournament?",
    "question_th": "รายการอะไรในปี 2008 ในการแข่งขันเซี่ยงไฮ้?",
    "context": "CREATE TABLE table_name_22 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT win__percentage FROM table_name_19 WHERE 2012 = \"olympic games\"",
    "question_en": "What is the win percentage for the 2012 of olympic games?",
    "question_th": "เปอร์เซ็นต์การชนะในโอลิมปิกเกมส์ 2012 เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_19 (win__percentage VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_25 WHERE time = \"1:22\"",
    "question_en": "Who was the opponent in the match that lasted 1:22?",
    "question_th": "คู่ต่อสู้ในการแข่งขันที่กินเวลา 1:22 คือใคร?",
    "context": "CREATE TABLE table_name_25 (opponent VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_36 WHERE opponent = \"jonatas novaes\"",
    "question_en": "Which round did the bout against Jonatas Novaes end in?",
    "question_th": "ไฟต์กับโจนาตัส โนเวส จบลงยกไหน?",
    "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_en": "Name the average established for championships less than 1 and club of erie seawolves",
    "question_th": "ตั้งชื่อค่าเฉลี่ยที่กำหนดสำหรับการประชันที่น้อยกว่า 1 และสโมสรของหมาป่าทะเลเอรี",
    "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_en": "Name the most championships for club of erie seawolves",
    "question_th": "ตั้งชื่อแชมป์มากที่สุดสำหรับสโมสรอีรีซีวูล์ฟ",
    "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_en": "Name the sport with championships less than 1 and club of erie bayhawks",
    "question_th": "ตั้งชื่อกีฬาที่มีแชมป์น้อยกว่า 1 และสโมสรของอีรีเบย์ฮอว์ก",
    "context": "CREATE TABLE table_name_19 (sport VARCHAR, championships VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_71 WHERE game = 3",
    "question_en": "what is the date for game 3?",
    "question_th": "เกม 3 วันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_71 (date VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT english_title FROM table_name_95 WHERE japanese_title = \"餓狼伝説バトルアーカイブズ２\"",
    "question_en": "What is the English title of 餓狼伝説バトルアーカイブズ２?",
    "question_th": "ชื่อภาษาอังกฤษของ 餓狼伝説BATORALーKAイブズ２ คืออะไร?",
    "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_en": "Who was the opponent when there was a loss of Francisco (1-1)?",
    "question_th": "คู่ต่อสู้เมื่อแพ้ฟรานซิสโก (1-1) คือใคร?",
    "context": "CREATE TABLE table_name_7 (opponent VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_36 WHERE attendance = \"17,136\"",
    "question_en": "On what date was the attendance 17,136?",
    "question_th": "เข้าร่วมประชุมวันไหน 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_en": "Who was the opponent during the game with a score of 6-5 and a loss of White (2-1)?",
    "question_th": "คู่ต่อสู้ระหว่างเกมคือใครด้วยสกอร์ 6-5 และแพ้ไวท์ (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_en": "What was the score for the game that had an attendance of 41,087?",
    "question_th": "คะแนนของเกมที่มีผู้เข้าร่วม 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_en": "When the game had a loss of Koch (0-1) what was the attendance?",
    "question_th": "เมื่อเกมแพ้โคช (0-1) ผู้ชมเป็นอย่างไรบ้าง?",
    "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_en": "What is the inegi code for mexicali with 13,700 km area?",
    "question_th": "รหัส inegi ของเม็กซิกาลีที่มีพื้นที่ 13,700 กม. คืออะไร",
    "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_en": "What is the date of the away game when the team has a league position of 9th?",
    "question_th": "เกมเยือนวันที่ทีมมีอันดับ 9 ในลีกคือวันที่เท่าไร?",
    "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_en": "On May 17, what is the highest Attendance?",
    "question_th": "วันที่ 17 พ.ค. มีผู้เข้าชมสูงสุดที่เท่าไร?",
    "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_en": "What is the highest number of points for the Modena Team Spa after 1991?",
    "question_th": "คะแนนสูงสุดของโมเดน่าทีมสปาหลังปี 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_en": "What was the earliest year for the Ligier Gitanes?",
    "question_th": "ปีแรกสุดสำหรับ Ligier Gitanes คือปีใด?",
    "context": "CREATE TABLE table_name_46 (year INTEGER, entrant VARCHAR)"
  },
  {
    "answer": "SELECT MAX(money_requested__) AS £_ FROM table_name_24 WHERE episode = \"episode 7\" AND entrepreneur_s_ = \"jerry mantalvanos & paul merker\"",
    "question_en": "In episode 7 what was the highest amount of money requested by Jerry Mantalvanos & Paul Merker ?",
    "question_th": "ในตอนที่ 7 จำนวนเงินสูงสุดที่ Jerry Mantalvanos และ Paul Merker ร้องขอคือเท่าใด",
    "context": "CREATE TABLE table_name_24 (money_requested__ INTEGER, episode VARCHAR, entrepreneur_s_ VARCHAR)"
  },
  {
    "answer": "SELECT money_requested__£_ FROM table_name_59 WHERE company_or_product_name = \"reestore\"",
    "question_en": "How much money did reestore request ?",
    "question_th": "เรียกคืนเงินจำนวนเท่าใด?",
    "context": "CREATE TABLE table_name_59 (money_requested__£_ VARCHAR, company_or_product_name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(money_requested__) AS £_ FROM table_name_6 WHERE company_or_product_name = \"gaming alerts\"",
    "question_en": "How much money did gaming alerts ask for?",
    "question_th": "การแจ้งเตือนการเล่นเกมขอเงินเท่าไหร่?",
    "context": "CREATE TABLE table_name_6 (money_requested__ VARCHAR, company_or_product_name VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_96 WHERE prize = \"€93,000\"",
    "question_en": "Who is the winner of the prize of €93,000?",
    "question_th": "ใครคือผู้ชนะรางวัล 93,000 ยูโร?",
    "context": "CREATE TABLE table_name_96 (winner VARCHAR, prize VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_50 WHERE prize = \"£200,000\"",
    "question_en": "Who is the winner of the prize of £200,000 as listed?",
    "question_th": "ใครคือผู้ชนะรางวัลมูลค่า 200,000 ปอนด์ตามที่ระบุไว้?",
    "context": "CREATE TABLE table_name_50 (winner VARCHAR, prize VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_91 WHERE winner = \"ram vaswani\"",
    "question_en": "Ram Vaswani was a winner on what date?",
    "question_th": "ราม วาสวานี เป็นผู้ชนะในวันที่เท่าไหร่?",
    "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_en": "Which race resulted in 2nd place in the 1996 season on 20-Jan-1996?",
    "question_th": "การแข่งขันใดส่งผลให้ได้อันดับที่ 2 ในฤดูกาล 1996 เมื่อวันที่ 20 มกราคม 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_en": "What is the place result of the downhill race before the 1996 season on 11-Mar-1995?",
    "question_th": "ผลการแข่งขันดาวน์ฮิลล์ก่อนฤดูกาล 1996 วันที่ 11 มี.ค. 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_en": "What place result was the 1996 season at Lake Louise, Canada?",
    "question_th": "ฤดูกาล 1996 ที่ทะเลสาบหลุยส์ ประเทศแคนาดา ส่งผลให้สถานที่ใดเป็นเช่นไร",
    "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–2\" AND date = \"december 29\"",
    "question_en": "What is the Record that has a Home of detroit red wings, and a Score of 1–2 on december 29?",
    "question_th": "อะไรคือสถิติที่มีทีมเหย้าของปีกสีแดงดีทรอยต์ และสกอร์ 1–2 ในวันที่ 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–11–5\"",
    "question_en": "Whose Visitor has a Record of 10–11–5?",
    "question_th": "ผู้เยี่ยมชมคนใดมีบันทึก 10–11–5",
    "context": "CREATE TABLE table_name_82 (visitor VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT AVG(average) FROM table_name_90 WHERE matches < 2",
    "question_en": "What is the typical match smaller than 2?",
    "question_th": "การแข่งขันทั่วไปที่เล็กกว่า 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_en": "What are the total number of matches smaller than 2 with a tally of 1-19?",
    "question_th": "จำนวนการแข่งขันทั้งหมดที่น้อยกว่า 2 โดยมีคะแนนรวม 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_en": "What is the average total in the county of tipperary with a rank less than 1?",
    "question_th": "ผลรวมโดยเฉลี่ยในเขต Tipperary ที่มีอันดับน้อยกว่า 1 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_47 (average VARCHAR, county VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT qual FROM table_name_3 WHERE laps < 68",
    "question_en": "What is the Qual with less than 68 laps?",
    "question_th": "รอบคัดเลือกที่น้อยกว่า 68 รอบคืออะไร?",
    "context": "CREATE TABLE table_name_3 (qual VARCHAR, laps INTEGER)"
  },
  {
    "answer": "SELECT year FROM table_name_15 WHERE qual = \"147.481\"",
    "question_en": "The 147.481 Qual, happened in what year?",
    "question_th": "147.481 รอบคัดเลือก เกิดขึ้นในปีใด?",
    "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_en": "Name the being for having things of language, religions, work, customs, values, norms?",
    "question_th": "ตั้งชื่อสิ่งมีชีวิตว่ามีสิ่งของภาษา ศาสนา การงาน ประเพณี ค่านิยม บรรทัดฐาน ไหม?",
    "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_en": "Name the having things for privacy, intimate spaces of togetherness",
    "question_th": "ตั้งชื่อสิ่งที่มีความเป็นส่วนตัว พื้นที่ใกล้ชิดของการอยู่ร่วมกัน",
    "context": "CREATE TABLE table_name_99 (having__things_ VARCHAR, interacting__settings_ VARCHAR)"
  },
  {
    "answer": "SELECT interacting__settings_ FROM table_name_87 WHERE need = \"protection\"",
    "question_en": "Name the interacting for need of protection",
    "question_th": "ตั้งชื่อการโต้ตอบเพื่อต้องการการปกป้อง",
    "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_en": "Name the interacting settings for co-operate, plan, take care of, help",
    "question_th": "ตั้งชื่อการตั้งค่าการโต้ตอบสำหรับความร่วมมือ วางแผน ดูแล ช่วยเหลือ",
    "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_en": "Name the being qualities for having things of language, religions, work, customs, values, norms",
    "question_th": "บอกชื่อคุณสมบัติในการมีสิ่งของทางภาษา ศาสนา การงาน ประเพณี ค่านิยม บรรทัดฐาน",
    "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_en": "Name the being qualities for having things of friendships, family, relationships with nature",
    "question_th": "ระบุคุณสมบัติในการมีสิ่งของมิตรภาพ ครอบครัว ความสัมพันธ์กับธรรมชาติ",
    "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_en": "What was the attendance for the game that went 2:42?",
    "question_th": "ผู้เข้าชมเกมในเวลา 2:42 น. เป็นเท่าใด",
    "context": "CREATE TABLE table_name_89 (attendance INTEGER, time VARCHAR)"
  },
  {
    "answer": "SELECT SUM(laps) FROM table_name_72 WHERE name = \"sébastien bourdais\" AND grid < 1",
    "question_en": "How many laps for sébastien bourdais, and a Grid smaller than 1?",
    "question_th": "กี่รอบสำหรับ sébastien bourdais และตารางที่เล็กกว่า 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_en": "What was the score in the match against Kim Tiilikainen?",
    "question_th": "แมตช์กับ คิม ทิอิลิไคเนน สกอร์เท่าไหร่?",
    "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_en": "What was the date of the match against Jean-Julien Rojer, on a clay surface?",
    "question_th": "แมตช์กับ Jean-Julien Rojer บนพื้นดินคือวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_59 (date VARCHAR, surface VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_22 WHERE surface = \"hard\"",
    "question_en": "Which tournament had a hard surface?",
    "question_th": "ทัวร์นาเมนต์ใดมีพื้นผิวแข็ง?",
    "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örges polona hercog\"",
    "question_en": "What is the surface of the match when the outcome was runner-up, and a Score of julia görges polona hercog?",
    "question_th": "พื้นผิวของการแข่งขันเมื่อผลการแข่งขันเป็นรองชนะเลิศเป็นอย่างไร และคะแนนของ Julia Görges 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_en": "What was the surface of the match when the score was akgul amanmuradova chuang chia-jung?",
    "question_th": "พื้นผิวของแมตช์เมื่อสกอร์คือ อัคกุล อมานมูราโดวา ชวง เจีย-จุง เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_60 (surface VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_40 WHERE surface = \"hard\" AND opponent = \"eva hrdinová\"",
    "question_en": "What date was the surface hard and Eva Hrdinová was the opponent?",
    "question_th": "วันที่พื้นผิวแข็งและ Eva Hrdinová เป็นคู่ต่อสู้?",
    "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_en": "What was the surface of the match against bethanie mattek-sands?",
    "question_th": "พื้นผิวของการแข่งขันกับ 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_en": "What series 1 has a Doug Richards in Series 2?",
    "question_th": "ซีรีส์ 1 ใดมี Doug Richards ในซีรีส์ 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_en": "Who in series 1 corresponds with Peter Jones in series 5?",
    "question_th": "ใครในซีรีส์ 1 ตรงกับ Peter Jones ในซีรีส์ 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_en": "Who in series 5 corresponds to Deborah Meaden in series 3?",
    "question_th": "ใครในซีรีส์ 5 ตรงกับ Deborah Meaden ในซีรีส์ 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_en": "Who in series 11 corresponds to Peter Jones in series 1?",
    "question_th": "ใครในซีรีส์ 11 ตรงกับ Peter Jones ในซีรีส์ 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_en": "Who in series 9 corresponds to Peter Jones in series 2?",
    "question_th": "ใครในซีรีส์ 9 ตรงกับ Peter Jones ในซีรีส์ 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_en": "What was the score of the game when the Blue Jays were 55-39?",
    "question_th": "ในเกมที่บลูเจย์สสกอร์ 55-39 เป็นยังไงบ้าง?",
    "context": "CREATE TABLE table_name_86 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT individual FROM table_name_33 WHERE event = \"1998 pokljuka\"",
    "question_en": "Who was the individual in the event of 1998 Pokljuka?",
    "question_th": "ใครคือบุคคลในกรณี Pokljuka ปี 1998?",
    "context": "CREATE TABLE table_name_33 (individual VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_name_26 WHERE quantity_made = 5",
    "question_en": "Which locomotive class had 5 items made?",
    "question_th": "รถจักรรุ่นใดมี 5 รายการที่สร้างขึ้น?",
    "context": "CREATE TABLE table_name_26 (class VARCHAR, quantity_made VARCHAR)"
  },
  {
    "answer": "SELECT manufacturer FROM table_name_40 WHERE type = \"4-6-4t\"",
    "question_en": "Which manufacturer made a locomotive with a type of 4-6-4t?",
    "question_th": "ผู้ผลิตรายใดที่ผลิตหัวรถจักรประเภท 4-6-4t?",
    "context": "CREATE TABLE table_name_40 (manufacturer VARCHAR, type VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(event) FROM table_name_92 WHERE round = \"radek štěpánek\" AND NOT aces < 3",
    "question_en": "What is the event year radek štěpánek was the round and there were less than 3 aces?",
    "question_th": "ปีที่จัดงานคือ radek štěpánek เป็นรอบและมีเอซน้อยกว่า 3 อัน?",
    "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_en": "How many players were in the event after 2011 with less than 9 aces?",
    "question_th": "มีผู้เล่นกี่คนในเหตุการณ์หลังปี 2011 โดยมีเอซน้อยกว่า 9 คน",
    "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_en": "Who was the opponent in the 2011 event with less than 113 players?",
    "question_th": "ใครคือคู่ต่อสู้ในงานปี 2554 ที่มีผู้เล่นน้อยกว่า 113 คน?",
    "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_en": "What is the highest number of players during 1r year with a clay set and more than 4 aces?",
    "question_th": "จำนวนผู้เล่นสูงสุดในช่วงปี 1r ที่มีชุดดินเหนียวและเอซมากกว่า 4 อันคือเท่าใด",
    "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_en": "Who played as Team 2 against Team 1 SC Gagnoa?",
    "question_th": "ใครเล่นเป็นทีม 2 พบกับทีม 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_en": "What was the 1st leg score when Mufulira Wanderers played as Team 2?",
    "question_th": "คะแนนเลกแรกเมื่อ มูฟูลิรา วันเดอเรอร์ส เล่นเป็นทีม 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_en": "What's the score of the 1st leg when Water Corporation was Team 1?",
    "question_th": "เลกแรกเมื่อวอเตอร์คอร์เปอเรชั่นเป็นทีมที่ 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_en": "What's the 1st leg score when Team 1 was Gor Mahia?",
    "question_th": "คะแนนเลกแรกเมื่อทีม 1 คือ กอร์ มาเฮีย เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_1 (team_1 VARCHAR)"
  },
  {
    "answer": "SELECT team_1 FROM table_name_8 WHERE team_2 = \"lomé i\"",
    "question_en": "Who played as Team 1 against Lomé i?",
    "question_th": "ใครเคยเล่นเป็นทีม 1 พบกับ Lomé i?",
    "context": "CREATE TABLE table_name_8 (team_1 VARCHAR, team_2 VARCHAR)"
  },
  {
    "answer": "SELECT entrant FROM table_name_39 WHERE year = 1952",
    "question_en": "Name the entrant for year of 1952",
    "question_th": "ระบุชื่อผู้เข้าประกวดปี พ.ศ. 2495",
    "context": "CREATE TABLE table_name_39 (entrant VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(points) FROM table_name_89 WHERE year = 1952",
    "question_en": "Name the total number of points for 1952",
    "question_th": "ตั้งชื่อจำนวนคะแนนรวมสำหรับปี 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_en": "Name the total number of years for talbot-lago t26c and points less than 3",
    "question_th": "ตั้งชื่อจำนวนปีทั้งหมดสำหรับ talbot-lago t26c และคะแนนน้อยกว่า 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_en": "What episode featured entrepreneur Richard Ernest?",
    "question_th": "ผู้ประกอบการ 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__£_ = \"100,000\"",
    "question_en": "What Investing Dragons had a request of £100,000?",
    "question_th": "Investing Dragons ใดขอเงิน 100,000 ปอนด์?",
    "context": "CREATE TABLE table_name_87 (investing_dragon_s_ VARCHAR, money_requested__£_ VARCHAR)"
  },
  {
    "answer": "SELECT entrepreneur_s_ FROM table_name_27 WHERE money_requested__£_ = \"60,000\"",
    "question_en": "What Entrepreneurs requested £60,000?",
    "question_th": "ผู้ประกอบการรายใดขอเงิน 60,000 ปอนด์?",
    "context": "CREATE TABLE table_name_27 (entrepreneur_s_ VARCHAR, money_requested__£_ VARCHAR)"
  },
  {
    "answer": "SELECT money_requested__£_ FROM table_name_92 WHERE investing_dragon_s_ = \"peter jones\" AND episode = \"episode 2\"",
    "question_en": "How much was requested from Investing Dragon Peter Jones request in episode 2?",
    "question_th": "คำขอของ Investing Dragon Peter Jones ในตอนที่ 2 เท่าไหร่?",
    "context": "CREATE TABLE table_name_92 (money_requested__£_ VARCHAR, investing_dragon_s_ VARCHAR, episode VARCHAR)"
  },
  {
    "answer": "SELECT investing_dragon_s_ FROM table_name_5 WHERE company_or_product_name = \"razzamataz\"",
    "question_en": "Name the investing dragon for razzamataz",
    "question_th": "ตั้งชื่อมังกรลงทุนสำหรับ 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__£_ > 85 OFFSET 000",
    "question_en": "Name the first aired with money requested more than 85,000",
    "question_th": "ตั้งชื่อออกอากาศครั้งแรกด้วยเงินร้องขอกว่า 85,000",
    "context": "CREATE TABLE table_name_86 (first_aired VARCHAR, money_requested__£_ INTEGER)"
  },
  {
    "answer": "SELECT competition FROM table_name_36 WHERE result = \"3-2\" AND score = \"2-1\"",
    "question_en": "What is the competition type of the event with a result of 3-2 and a score of 2-1?",
    "question_th": "การแข่งขันประเภทใด เสมอกัน 3-2 และสกอร์ 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_en": "Which date has a competition type of friendly and a score of 2-1?",
    "question_th": "นัดกระชับมิตรนัดไหนมีสกอร์ 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_en": "What is the score of the event with a competition type of friendly and a result of 4-5?",
    "question_th": "งานแข่งขันประเภทกระชับมิตรและสกอร์ 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_en": "Which date has a score of 2-1?",
    "question_th": "วันไหนมีสกอร์ 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_en": "Which date has a competition type of British home championship?",
    "question_th": "วันไหนมีการแข่งขันชิงแชมป์อังกฤษเหย้า?",
    "context": "CREATE TABLE table_name_81 (date VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_76 WHERE circuit = \"mallala motor sport park\"",
    "question_en": "what date was mallala motor sport park the circuit?",
    "question_th": "Mallala Motor Sport Park ที่สนามเซอร์กิตคือวันไหน?",
    "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_en": "what date did the m3 motorsport team compete at winton motor raceway?",
    "question_th": "ทีม m3 motorsport ลงแข่งขันที่ 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_en": "Name the agg for team 2 of asl sport guyanais.",
    "question_th": "ตั้งชื่อ AGG สำหรับทีม 2 ของ 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_en": "Name the agg for seba united",
    "question_th": "ตั้งชื่อ agg สำหรับ 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_en": "Name the 2nd leg for defence force",
    "question_th": "ตั้งชื่อขาที่ 2 สำหรับกองกำลังป้องกัน",
    "context": "CREATE TABLE table_name_61 (team_2 VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_67 WHERE season > 2006 AND team = \"fc atyrau\"",
    "question_en": "Which country does FC Atyrau represent after the 2006 season?",
    "question_th": "FC Atyrau เป็นตัวแทนประเทศใดหลังฤดูกาล 2006?",
    "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_en": "In which season did Fc Pakhtakor Tashkent represent the country of Uzbekistan with more than 6 apps?",
    "question_th": "Fc Pakhtakor Tashkent เป็นตัวแทนประเทศอุซเบกิสถานด้วยแอปมากกว่า 6 รายการในฤดูกาลใด",
    "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_en": "How many seasons have 1 goals and more than 11 apps?",
    "question_th": "มีกี่ฤดูกาลที่มี 1 ประตูและมากกว่า 11 แอพ?",
    "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_en": "What game that had a record of 39-44 had the lowest attendance?",
    "question_th": "เกมใดที่มีสถิติ 39-44 มีผู้ชมน้อยที่สุด?",
    "context": "CREATE TABLE table_name_44 (attendance INTEGER, record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_7 WHERE loss = \"saarloos (7-7)\"",
    "question_en": "Who was the opponent at the game that had a loss of Saarloos (7-7)?",
    "question_th": "คู่ต่อสู้ในเกมที่แพ้ซาร์ลูสคือใคร (7-7)?",
    "context": "CREATE TABLE table_name_7 (opponent VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_71 WHERE record = \"81-60\"",
    "question_en": "What was the score of the game with a record of 81-60?",
    "question_th": "เกมนี้สกอร์รวม 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_en": "What was the lowest attendance at a game that had a score of 5-4 and a loss of Williams (2-4)?",
    "question_th": "อะไรคือจำนวนผู้ชมต่ำสุดในเกมที่มีสกอร์ 5-4 และแพ้วิลเลียมส์ (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_en": "What year did the 11th place play 26 games?",
    "question_th": "อันดับ 11 ลงเล่น 26 เกมในปีไหน?",
    "context": "CREATE TABLE table_name_96 (year VARCHAR, place VARCHAR, played VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(played) FROM table_name_24 WHERE ga = \"22\"",
    "question_en": "What is the total played games of a 22 G.A.?",
    "question_th": "เกมที่เล่นทั้งหมดของ 22 GA คือเท่าไร?",
    "context": "CREATE TABLE table_name_24 (played VARCHAR, ga VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_39 WHERE course = \"genoa to livorno\"",
    "question_en": "Name the winner for genoa to livorno",
    "question_th": "ตั้งชื่อผู้ชนะสำหรับเจนัวถึงลิวอร์โน",
    "context": "CREATE TABLE table_name_39 (winner VARCHAR, course VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_80 WHERE date = \"5 june\"",
    "question_en": "Name the winner for 5 june",
    "question_th": "ประกาศชื่อผู้โชคดีวันที่ 5 มิถุนายน",
    "context": "CREATE TABLE table_name_80 (winner VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_97 WHERE race_leader = \"rest day\"",
    "question_en": "Name the winner for rest day race leader",
    "question_th": "ตั้งชื่อผู้ชนะสำหรับผู้นำการแข่งขันในวันพักผ่อน",
    "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ölker\"",
    "question_en": "Name the least rank for lane less than 5 for germany and sandra völker",
    "question_th": "ตั้งชื่ออันดับน้อยที่สุดสำหรับเลนที่น้อยกว่า 5 สำหรับเยอรมนีและ Sandra Völker",
    "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_en": "Name the total number of rank for lane 7",
    "question_th": "ตั้งชื่อจำนวนอันดับทั้งหมดสำหรับเลน 7",
    "context": "CREATE TABLE table_name_69 (rank VARCHAR, lane VARCHAR)"
  },
  {
    "answer": "SELECT MAX(time) FROM table_name_71 WHERE name = \"katrin meißner\" AND rank < 5",
    "question_en": "Name the most time for katrin meißner and rank less than 5",
    "question_th": "ตั้งชื่อเวลามากที่สุดสำหรับ katrin meißner และอันดับที่น้อยกว่า 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_en": "Tell me the name for time of 25.74",
    "question_th": "บอกชื่อเวลา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_en": "Was the University of Southern California Signed?",
    "question_th": "มหาวิทยาลัยเซาเทิร์นแคลิฟอร์เนียลงนามหรือไม่?",
    "context": "CREATE TABLE table_name_50 (signed VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT signed FROM table_name_13 WHERE school = \"university of michigan\"",
    "question_en": "Was the University of Michigan Signed?",
    "question_th": "มหาวิทยาลัยมิชิแกนลงนามหรือไม่?",
    "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_en": "What is the University of Southern California's highest Round?",
    "question_th": "รอบสูงสุดของ University of Southern California คืออะไร?",
    "context": "CREATE TABLE table_name_92 (round INTEGER, school VARCHAR)"
  },
  {
    "answer": "SELECT home_captain FROM table_name_89 WHERE venue = \"sabina park\"",
    "question_en": "Who was the home captain at Sabina Park?",
    "question_th": "ใครคือกัปตันทีมเหย้าที่ซาบีน่า พาร์ค?",
    "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_en": "What was the result of the game hosted at Queen's Park Oval?",
    "question_th": "ผลการแข่งขันที่สนาม 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_en": "Name the genre for release-year of first charted record of 1988",
    "question_th": "ตั้งชื่อแนวเพลงสำหรับปีที่ออกของสถิติติดชาร์ตครั้งแรกของปี 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_en": "What was the loss of the game with a record of 77-65?",
    "question_th": "แพ้เกมไหนด้วยสถิติ 77-65?",
    "context": "CREATE TABLE table_name_96 (loss VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_29 WHERE record = \"84-71\"",
    "question_en": "What was the loss of the game with a record of 84-71?",
    "question_th": "แพ้เกมไหนด้วยสถิติ 84-71?",
    "context": "CREATE TABLE table_name_29 (loss VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_11 WHERE record = \"34-41\"",
    "question_en": "What date was the record 34-41?",
    "question_th": "บันทึกวันที่ 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_en": "What type had a course of Grosseto To Rieti?",
    "question_th": "หลักสูตร 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_en": "In what Season were there 86 Assists in the WCJHL League?",
    "question_th": "WCJHL League มี 86 Assists ในฤดูกาลใด?",
    "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_en": "In the WCHL League,  what is the last Assists with less than 65 Goals?",
    "question_th": "ใน WCHL League แอสซิสต์สุดท้ายที่ทำได้น้อยกว่า 65 ประตูคืออะไร?",
    "context": "CREATE TABLE table_name_37 (assists INTEGER, league VARCHAR, goals VARCHAR)"
  },
  {
    "answer": "SELECT MAX(points) FROM table_name_53 WHERE assists = 46",
    "question_en": "What are the most Points with an Assist of 46?",
    "question_th": "อะไรคือคะแนนที่มี Assist มากที่สุดที่ 46?",
    "context": "CREATE TABLE table_name_53 (points INTEGER, assists VARCHAR)"
  },
  {
    "answer": "SELECT compound_name FROM table_name_2 WHERE colour = \"yellow\"",
    "question_en": "What compound is yellow?",
    "question_th": "สีเหลืองเป็นสารประกอบอะไร",
    "context": "CREATE TABLE table_name_2 (compound_name VARCHAR, colour VARCHAR)"
  },
  {
    "answer": "SELECT colour FROM table_name_31 WHERE compound_name = \"super-soft\"",
    "question_en": "What color is the super-soft compound?",
    "question_th": "สารประกอบซุปเปอร์ซอฟท์มีสีอะไร?",
    "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_en": "Which venue has Tickets Sold/ Available with a Gross Revenue (1979) of $665,232?",
    "question_th": "สถานที่ใดมีการขายตั๋ว/จำหน่ายโดยมีรายได้รวม (1979) อยู่ที่ 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_en": "What is the Gross Revenue (1979) of the Venue, lyceum theatre?",
    "question_th": "รายได้รวม (1979) ของสถานที่จัดงาน โรงละครไลเซียม คืออะไร?",
    "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_en": "What is the amount of Tickets Sold/ Available at the Venue of hippodrome?",
    "question_th": "จำนวนตั๋วที่ขาย/มีจำหน่ายที่สนามฮิปโปโดรมคือเท่าไร?",
    "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_en": "Which Venue has a Gross Revenue (2012) of $179,712?",
    "question_th": "สถานที่ใดมีรายได้รวม (2012) อยู่ที่ 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_en": "Which Venue has an amount of Tickets Sold/ Available of 4,700 / 4,700 (100%)?",
    "question_th": "สถานที่ใดมีจำนวนบัตรที่ขายได้/มีจำหน่าย 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–1)\"",
    "question_en": "What was the date of the game that had a loss of Willis (0–1)?",
    "question_th": "เกมที่แพ้วิลลิส (0–1) คือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_32 (date VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_9 WHERE loss = \"travers (0–2)\"",
    "question_en": "What was the opponent at the game that had a loss of Travers (0–2)?",
    "question_th": "คู่ต่อสู้ในเกมที่แพ้ทราเวอร์ส (0–2) คืออะไร",
    "context": "CREATE TABLE table_name_9 (opponent VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_46 WHERE record = \"50-54\"",
    "question_en": "What was the Loss when the Record was 50-54?",
    "question_th": "การสูญเสียคืออะไรเมื่อบันทึกอยู่ที่ 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_en": "Who was the opponent when the loss was Wells (4-7)?",
    "question_th": "คู่ต่อสู้ตอนแพ้คือเวลส์ (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_en": "What shows for shoots for craig peacock a?",
    "question_th": "สิ่งที่แสดงให้เห็นสำหรับการถ่ายภาพของ 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_en": "What is the average Acquired when the Number shows as 7?",
    "question_th": "ค่าเฉลี่ยที่ได้มาเมื่อตัวเลขแสดงเป็น 7 คืออะไร?",
    "context": "CREATE TABLE table_name_73 (acquired INTEGER, number VARCHAR)"
  },
  {
    "answer": "SELECT MAX(total) FROM table_name_87 WHERE 2013 = \"6th\"",
    "question_en": "What is the total of 2013 with 6th?",
    "question_th": "ยอดรวมของปี 2013 กับอันดับที่ 6 เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_87 (total INTEGER)"
  },
  {
    "answer": "SELECT 2009 FROM table_name_45 WHERE total = 1 AND 2004 = \"7th\"",
    "question_en": "Which 2009 year has a total of 1, and 2004 year of 7th?",
    "question_th": "ปี 2552 ใดมีทั้งหมด 1 และปี 2547 ปีที่ 7",
    "context": "CREATE TABLE table_name_45 (total VARCHAR)"
  },
  {
    "answer": "SELECT 2013 FROM table_name_78 WHERE total = 5 AND 2009 = \"5th\"",
    "question_en": "What is the year 2013 with a total of 5, and 5th in 2009?",
    "question_th": "ปี 2556 มีทั้งหมด 5 ปี และอันดับที่ 5 ในปี 2552 คืออะไร?",
    "context": "CREATE TABLE table_name_78 (total VARCHAR)"
  },
  {
    "answer": "SELECT 2001 FROM table_name_26 WHERE total > 1 AND 2009 = \"8\"",
    "question_en": "What is the year 2001 with a total larger than 1, and 2009 with 8?",
    "question_th": "ปี 2544 ที่มียอดรวมมากกว่า 1 และปี 2552 ที่มี 8 คืออะไร",
    "context": "CREATE TABLE table_name_26 (total VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_34 WHERE record = \"90-70\"",
    "question_en": "What opponents have a record of 90-70?",
    "question_th": "คู่แข่งคนไหนมีสถิติ 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_en": "What game had more than 50,324 in attendance?",
    "question_th": "เกมใดที่มีผู้เข้าร่วมมากกว่า 50,324 คน?",
    "context": "CREATE TABLE table_name_45 (date VARCHAR, attendance INTEGER)"
  },
  {
    "answer": "SELECT start FROM table_name_76 WHERE engine = \"offy\" AND year = 1972",
    "question_en": "What is the start of Offy engine and in 1972?",
    "question_th": "เครื่องยนต์ Offy เริ่มต้นอย่างไร และในปี 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_en": "What is the chassis for offy engine and 25th finish?",
    "question_th": "แชสซีสำหรับเครื่องยนต์ offy และเส้นชัยที่ 25 คืออะไร?",
    "context": "CREATE TABLE table_name_12 (chassis VARCHAR, engine VARCHAR, finish VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_7 WHERE chassis = \"mclaren\"",
    "question_en": "What is the finish of Mclaren chassis?",
    "question_th": "แชสซีของ Mclaren มีการตกแต่งอย่างไร?",
    "context": "CREATE TABLE table_name_7 (finish VARCHAR, chassis VARCHAR)"
  },
  {
    "answer": "SELECT wrestlers FROM table_name_83 WHERE days_held = \"428\"",
    "question_en": "Name the wrestlers with days held of 428",
    "question_th": "ตั้งชื่อนักมวยปล้ำด้วยวันที่ถือ 428",
    "context": "CREATE TABLE table_name_83 (wrestlers VARCHAR, days_held VARCHAR)"
  },
  {
    "answer": "SELECT wrestlers FROM table_name_58 WHERE days_held = \"69\"",
    "question_en": "Name the wrestlers for days held of 69",
    "question_th": "ตั้งชื่อนักมวยปล้ำวันที่จัดขึ้น 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á\" AND score = \"6–0, 6–4\"",
    "question_en": "Which opponent has a Surface of clay, an Outcome of winner, a Tournament of bogotá, and a Score of 6–0, 6–4?",
    "question_th": "คู่ต่อสู้คนใดที่มีพื้นผิวเป็นดินเหนียว, ผลลัพธ์ของผู้ชนะ, การแข่งขันของโบโกตา และสกอร์ 6–0, 6–4?",
    "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–4, 3–6, 6–3\"",
    "question_en": "Which opponent has a Score of 6–4, 3–6, 6–3?",
    "question_th": "คู่ต่อสู้คนใดมีคะแนน 6–4, 3–6, 6–3?",
    "context": "CREATE TABLE table_name_7 (opponent VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_21 WHERE date = \"04 september 2006\"",
    "question_en": "What is the score for 04 september 2006?",
    "question_th": "คะแนนของวันที่ 04 กันยายน 2549 เป็นเท่าใด",
    "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_en": "Which Tournament has a Score of 4-6 6-2 6-1?",
    "question_th": "ทัวร์นาเมนต์ใดมีสกอร์ 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–6, 7–5, 2–6\"",
    "question_en": "Which outcome has a Surface of clay and a Score of 4–6, 7–5, 2–6?",
    "question_th": "ผลลัพธ์ข้อใดมีพื้นผิวเป็นดินเหนียวและมีคะแนน 4–6, 7–5, 2–6",
    "context": "CREATE TABLE table_name_50 (outcome VARCHAR, surface VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_15 WHERE tournament = \"versmold\"",
    "question_en": "What date was versmold?",
    "question_th": "Versmold จัดขึ้นวันไหน?",
    "context": "CREATE TABLE table_name_15 (date VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_17 WHERE opponents = \"motherwell\"",
    "question_en": "Name the competition for motherwell opponents",
    "question_th": "ตั้งชื่อการแข่งขันสำหรับฝ่ายตรงข้ามของแม่",
    "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_en": "Name the home leg for uefa europa league and round of q1 with opponents of motherwell",
    "question_th": "ทายชื่อนัดเหย้า ยูฟ่า ยูโรป้า ลีก และรอบ q1 กับคู่แข่งของ มาเธอร์เวลล์",
    "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_en": "Name the aggregate with opponents of tauras",
    "question_th": "ตั้งชื่อการรวมตัวกับฝ่ายตรงข้ามของราศีพฤษภ",
    "context": "CREATE TABLE table_name_65 (aggregate VARCHAR, opponents VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_16 WHERE record = \"53-75\"",
    "question_en": "What date was 53-75 recorded?",
    "question_th": "53-75 บันทึกวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_16 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT AVG(round) FROM table_name_42 WHERE overall = 62",
    "question_en": "Overall of 62 is what average round?",
    "question_th": "สรุป 62 รอบเฉลี่ยเท่าไหร่ครับ?",
    "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_en": "College of san diego state, and a Pick # smaller than 30 is what lowest overall?",
    "question_th": "วิทยาลัยรัฐซานดิเอโก และ Pick # น้อยกว่า 30 คือค่าใดโดยรวมที่ต่ำที่สุด",
    "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_en": "College of san diego state, and a Pick # smaller than 30 has what lowest overall?",
    "question_th": "วิทยาลัยรัฐซานดิเอโก และ Pick # น้อยกว่า 30 มีค่าต่ำสุดโดยรวมเท่าใด",
    "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_en": "Which city of license has an independent network affiliation, a variety format and is station KKUP?",
    "question_th": "เมืองใบอนุญาตใดมีเครือข่ายอิสระ หลากหลายรูปแบบ และเป็นสถานี 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_en": "What is the status of the independent station KPFB?",
    "question_th": "สถานะของสถานีอิสระ 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_en": "Which city station is owned by Coyote Communications?",
    "question_th": "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_en": "What year were the Olympic Games?",
    "question_th": "การแข่งขันกีฬาโอลิมปิกปีใด?",
    "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_en": "What's the year in 5th position that happened in Osaka, Japan?",
    "question_th": "อันดับที่ 5 ที่เกิดขึ้นที่เมืองโอซาก้า ประเทศญี่ปุ่น คือปีอะไร?",
    "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_en": "What year was the venue in Barcelona, Spain?",
    "question_th": "จัดขึ้นที่เมืองบาร์เซโลนา ประเทศสเปน เมื่อปีใด",
    "context": "CREATE TABLE table_name_57 (year INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT decile FROM table_name_10 WHERE authority = \"state\" AND roll = 798",
    "question_en": "For a school with authority of state and a roll of 798, what is the decile?",
    "question_th": "สำหรับโรงเรียนที่มีอำนาจหน้าที่ของรัฐและม้วน 798 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_en": "Murupara has a roll greater than 296 for what years?",
    "question_th": "มุรุพารามีม้วนมากกว่า 296 มากี่ปี?",
    "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_en": "When a school has authority of state and a decile greater than 1, what is the roll number?",
    "question_th": "เมื่อโรงเรียนมีอำนาจหน้าที่ของรัฐและมีเดซิลมากกว่า 1 จะต้องรับหมายเลขม้วนเท่าใด",
    "context": "CREATE TABLE table_name_66 (roll VARCHAR, authority VARCHAR, decile VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_53 WHERE date = \"august 30\"",
    "question_en": "Who did the Jays play on August 30?",
    "question_th": "เจย์เล่นใครในวันที่ 30 สิงหาคม?",
    "context": "CREATE TABLE table_name_53 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_10 WHERE record = \"5-0-1\"",
    "question_en": "Which opponent has a record of 5-0-1?",
    "question_th": "คู่ต่อสู้คนไหนมีสถิติ 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_en": "What method does the opponent of Dan New use?",
    "question_th": "คู่ต่อสู้แดนนิวใช้วิธีไหน?",
    "context": "CREATE TABLE table_name_90 (method VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT method FROM table_name_27 WHERE record = \"3-0\"",
    "question_en": "Which method has a record of 3-0?",
    "question_th": "วิธีไหนมีสถิติ 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_en": "Which event is a win by an opponent of Nicolas Smith, with the round marked n/a?",
    "question_th": "เหตุการณ์ใดที่ฝ่ายตรงข้ามของ Nicolas Smith ชนะ โดยรอบดังกล่าวไม่มีข้อมูล",
    "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_en": "Which event lasted 1 round and included an opponent of Dan Spychalski?",
    "question_th": "เหตุการณ์ใดกินเวลา 1 รอบและมีคู่ต่อสู้ของ 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_en": "What is Jimmy Smith's opponent's record?",
    "question_th": "บันทึกของคู่ต่อสู้ของ Jimmy Smith คืออะไร?",
    "context": "CREATE TABLE table_name_70 (record VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT SUM(frequency) FROM table_name_47 WHERE brand = \"exa fm\"",
    "question_en": "Name the sum of frequecy with brand of exa fm",
    "question_th": "ตั้งชื่อผลรวมความถี่ด้วยยี่ห้อ exa fm",
    "context": "CREATE TABLE table_name_47 (frequency INTEGER, brand VARCHAR)"
  },
  {
    "answer": "SELECT webcast FROM table_name_5 WHERE website = \"•\" AND frequency = 103.3",
    "question_en": "Name the webcast for website of • and frequency of 103.3",
    "question_th": "ตั้งชื่อเว็บคาสต์สำหรับเว็บไซต์ • และความถี่ 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_en": "Name the lowest frequency for brand of radio manantial",
    "question_th": "ตั้งชื่อความถี่ต่ำสุดสำหรับยี่ห้อเครื่องวิทยุสื่อสาร",
    "context": "CREATE TABLE table_name_54 (frequency INTEGER, brand VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(game) FROM table_name_13 WHERE score = \"new york yankees – 2, brooklyn dodgers – 3\"",
    "question_en": "Score of new york yankees – 2, brooklyn dodgers – 3 involves how many number of games?",
    "question_th": "คะแนนของนิวยอร์ก แยงกี้ – 2, บรูคลิน ดอดเจอร์ส – 3 เกี่ยวข้องกับจำนวนเกมทั้งหมดกี่เกม?",
    "context": "CREATE TABLE table_name_13 (game VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_15 WHERE date = \"october 5\"",
    "question_en": "Date of october 5 had what score?",
    "question_th": "วันที่ 5 ตุลาคม ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_15 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT SUM(attendance) FROM table_name_47 WHERE score = \"brooklyn dodgers – 3, new york yankees – 5\" AND game > 1",
    "question_en": "brooklyn dodgers – 3, new york yankees – 5, and a Game larger than 1 had what attendance figure?",
    "question_th": "บรู๊คลิน ดอดเจอร์ส – 3 คน, นิวยอร์ก แยงกี้ – 5 คน และเกมที่มากกว่า 1 คน มีผู้เข้าร่วมเป็นเท่าใด",
    "context": "CREATE TABLE table_name_47 (attendance INTEGER, score VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT mixed_doubles FROM table_name_42 WHERE season = 2002",
    "question_en": "Who won mixed doubles in the 2002 season?",
    "question_th": "ใครชนะประเภทคู่ผสมในฤดูกาล 2545?",
    "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_en": "Name the lowest Quay cranes for Berths of 1 and operator of mtl with terminal of terminal 5 (ct5)",
    "question_th": "ตั้งชื่อเครน Quay ที่ต่ำที่สุดสำหรับท่าเทียบเรือที่ 1 และผู้ปฏิบัติงานของ mtl พร้อมเทอร์มินัลของเทอร์มินัล 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_en": "Name the operator with berths more than 1 and depth of 12.5-15.5",
    "question_th": "ตั้งชื่อผู้ปฏิบัติงานที่มีที่นอนมากกว่า 1 และลึก 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_en": "What is the average points that Centro Asegurador earned with the McLaren M23 chassis?",
    "question_th": "คะแนนเฉลี่ยที่ Centro Asegurador ได้รับจากแชสซี McLaren M23 คือเท่าใด",
    "context": "CREATE TABLE table_name_3 (points INTEGER, chassis VARCHAR, entrant VARCHAR)"
  },
  {
    "answer": "SELECT chassis FROM table_name_94 WHERE year > 1981",
    "question_en": "What was the chassis of Emilio de Villota in 1981?",
    "question_th": "แชสซีของ Emilio de Villota ในปี 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_en": "What directors won an award on 14/6/6?",
    "question_th": "ผู้กำกับคนไหนได้รับรางวัลวันที่ 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_en": "What date did Passion Pictures receive an award?",
    "question_th": "Passion Pictures ได้รับรางวัลวันไหน?",
    "context": "CREATE TABLE table_name_42 (date VARCHAR, recipient VARCHAR)"
  },
  {
    "answer": "SELECT award FROM table_name_14 WHERE recipient = \"charlie productions ltd\"",
    "question_en": "What award did Charlie Productions Ltd receive?",
    "question_th": "Charlie Productions Ltd ได้รับรางวัลอะไรบ้าง?",
    "context": "CREATE TABLE table_name_14 (award VARCHAR, recipient VARCHAR)"
  },
  {
    "answer": "SELECT film FROM table_name_75 WHERE recipient = \"bub ltd\"",
    "question_en": "What film had Bub Ltd as the recipient?",
    "question_th": "ภาพยนตร์เรื่องใดที่มี Bub Ltd เป็นผู้รับ?",
    "context": "CREATE TABLE table_name_75 (film VARCHAR, recipient VARCHAR)"
  },
  {
    "answer": "SELECT film FROM table_name_2 WHERE date = \"22/3/06\"",
    "question_en": "What film was awarded on 22/3/06?",
    "question_th": "ภาพยนตร์เรื่องใดที่ได้รับรางวัลเมื่อวันที่ 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_en": "What score resulted in a winner after 2008?",
    "question_th": "คะแนนใดส่งผลให้เป็นผู้ชนะหลังปี 2551",
    "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_en": "What score has an opponent gan teik chai lin woon fui?",
    "question_th": "คู่ต่อสู้กันเต็ก ชัย ลิน วุน ฟุย ได้คะแนนเท่าไหร่?",
    "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_en": "What tournament has an opponent gan teik chai lin woon fui?",
    "question_th": "คู่ต่อสู้กันเต็ก ชัย ลิน วุน ฟุย มีทัวร์นาเมนท์ใดบ้าง?",
    "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_en": "What tournament has an opponent jung jae-sung lee yong-dae?",
    "question_th": "จุง แจ-ซอง ลี ยง-แด มีคู่ต่อสู้ในทัวร์นาเมนท์ใดบ้าง?",
    "context": "CREATE TABLE table_name_59 (tournament VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_12 WHERE loss = \"alexander (5-2)\"",
    "question_en": "What is the record of the team that lost to Alexander (5-2)?",
    "question_th": "สถิติทีมที่แพ้อเล็กซานเดอร์ (5-2) เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_12 (record VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_86 WHERE record = \"17-11\"",
    "question_en": "Which opponent has a record of 17-11?",
    "question_th": "คู่ต่อสู้คนไหนมีสถิติ 17-11?",
    "context": "CREATE TABLE table_name_86 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_46 WHERE record = \"15-9\"",
    "question_en": "What is the score of the game that resulted in a 15-9 record?",
    "question_th": "สกอร์ของเกมที่ส่งผลให้มีสถิติ 15-9 เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_46 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_86 WHERE date = \"may 26\"",
    "question_en": "What was the attendance on May 26?",
    "question_th": "ผู้เข้าร่วมในวันที่ 26 พฤษภาคมมีอะไรบ้าง?",
    "context": "CREATE TABLE table_name_86 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_34 WHERE loss = \"dotson (2-3)\"",
    "question_en": "What is the score of the game that was a loss to Dotson (2-3)?",
    "question_th": "เกมที่แพ้ ดอทสัน (2-3) เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_34 (score VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_58 WHERE record = \"19-11\"",
    "question_en": "On what date was the record 19-11?",
    "question_th": "บันทึกวันที่ 19-11 คือวันไหน?",
    "context": "CREATE TABLE table_name_58 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT MAX(points) FROM table_name_61 WHERE year < 1974",
    "question_en": "What were the highest points before the year 1974?",
    "question_th": "จุดสูงสุดก่อนปี 2517 คืออะไร?",
    "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_en": "What was the chassis when the entrant was Lavazza March, and the points were 0.5?",
    "question_th": "แชสซีคืออะไรเมื่อผู้เข้าแข่งขันคือ Lavazza March และคะแนนอยู่ที่ 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_en": "What was the chassis when the entrant was Lavazza March, and the year was 1975?",
    "question_th": "แชสซีคืออะไรเมื่อผู้เข้าแข่งขันคือ Lavazza March และปีคือ 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_en": "What was the chassis when the points were greater than 0 and the entrant was March Engineering?",
    "question_th": "แชสซีคืออะไรเมื่อคะแนนมากกว่า 0 และผู้เข้าแข่งขันคือ 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_en": "Who had a time of 56.07?",
    "question_th": "ใครมีเวลา 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_en": "What is the original title of Madame Rosa?",
    "question_th": "ชื่อดั้งเดิมของมาดามโรซ่าคืออะไร?",
    "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_en": "What is the original title where Paul Verhoeven is the director?",
    "question_th": "ชื่อเดิมที่ Paul Verhoeven เป็นผู้กำกับคืออะไร?",
    "context": "CREATE TABLE table_name_42 (original_title VARCHAR, director VARCHAR)"
  },
  {
    "answer": "SELECT original_title FROM table_name_18 WHERE year = \"1978\"",
    "question_en": "What original title has a year of 1978?",
    "question_th": "ชื่อดั้งเดิมอะไรคือปี 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_en": "Who is the director of the best foreign film?",
    "question_th": "ใครคือผู้กำกับภาพยนตร์ต่างประเทศที่ดีที่สุด?",
    "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_en": "What is the English title for Ansikte Mot Ansikte?",
    "question_th": "ชื่อภาษาอังกฤษของ 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_en": "What happened on 2009-09-05?",
    "question_th": "เกิดอะไรขึ้นในวันที่ 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_en": "Where was the combat of 2009-09-16?",
    "question_th": "การต่อสู้ในปี 2552-52-59 อยู่ที่ไหน?",
    "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_en": "What happened on 2009-03-14?",
    "question_th": "เกิดอะไรขึ้นในวันที่ 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_en": "How many casualties from the combat in the Fayzabad area?",
    "question_th": "มีผู้เสียชีวิตจากการสู้รบในพื้นที่ไฟซาบัดกี่คน?",
    "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_en": "Where was the incident of 2009-09-05?",
    "question_th": "เหตุการณ์เมื่อ 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_en": "What is the home team of the game on January 22?",
    "question_th": "เจ้าบ้านจะเป็นอย่างไรในเกมวันที่ 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_en": "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?",
    "question_th": "สกอร์ของเกมวันที่ 26 ก.พ. เป็นอย่างไรบ้าง โดยมี ชิคาโก้ แบล็ค ฮอว์กส์ เป็นเจ้าบ้าน และ นิวยอร์ก เรนเจอร์ส เป็นทีมเยือน?",
    "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_en": "What is the home team of the game on February 4?",
    "question_th": "เจ้าบ้านจะเป็นอย่างไรในเกมวันที่ 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_en": "What Team had less than 1 point with a Zakspeed 871 chassis?",
    "question_th": "ทีมใดมีน้อยกว่า 1 แต้มด้วยแชสซี Zakspeed 871?",
    "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_en": "What is the lowest amount of points for a Ford Cosworth DFR (Mader) 3.5 V8 engine?",
    "question_th": "คะแนนต่ำสุดสำหรับเครื่องยนต์ Ford Cosworth DFR (Mader) 3.5 V8 คือเท่าใด",
    "context": "CREATE TABLE table_name_35 (points INTEGER, engine VARCHAR)"
  },
  {
    "answer": "SELECT SUM(year) FROM table_name_55 WHERE chassis = \"rial arc2\"",
    "question_en": "What year was a Rial Arc2 chassis used?",
    "question_th": "แชสซี Rial Arc2 ใช้ปีใด",
    "context": "CREATE TABLE table_name_55 (year INTEGER, chassis VARCHAR)"
  },
  {
    "answer": "SELECT bronze FROM table_name_25 WHERE silver = 1",
    "question_en": "Name the bronze when silver is 1",
    "question_th": "ตั้งชื่อบรอนซ์เมื่อเงินคือ 1",
    "context": "CREATE TABLE table_name_25 (bronze VARCHAR, silver VARCHAR)"
  },
  {
    "answer": "SELECT MIN(silver) FROM table_name_41 WHERE gold < 0",
    "question_en": "Name the least silver when gold is less than 0",
    "question_th": "ตั้งชื่อเงินน้อยที่สุดเมื่อทองน้อยกว่า 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_en": "Name the least silver for nation of total when bronze is more than 24",
    "question_th": "ตั้งชื่อเหรียญเงินที่น้อยที่สุดสำหรับประเทศทั้งหมดเมื่อทองแดงมีค่ามากกว่า 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_en": "Name the year with finish of 12th and record of 23-36",
    "question_th": "ตั้งชื่อปีจบอันดับที่ 12 และสถิติ 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_en": "Name the record for 1997",
    "question_th": "ตั้งชื่อบันทึกสำหรับปี 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_en": "Name the year for jesus alfaro and finish of 6th",
    "question_th": "ตั้งชื่อปีของพระเยซูอัลฟาโรและจบวันที่ 6",
    "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_en": "Name the manager for playoffs of missed for 1999",
    "question_th": "เสนอชื่อผู้จัดการทีมในรอบตัดเชือกที่พลาดในปี 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_en": "What was the average attendance when the record was 17-18?",
    "question_th": "ผู้เข้าร่วมโดยเฉลี่ยเมื่อบันทึกคือ 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_en": "What was marlboro brm's lowest points by using brm p160b?",
    "question_th": "จุดต่ำสุดของ marlboro brm โดยใช้ 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_en": "What is the total points in 1974?",
    "question_th": "คะแนนรวมในปี 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_en": "Who has 0 points in 1974?",
    "question_th": "ปี 1974 ใครมี 0 แต้ม?",
    "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_en": "What is the lowest points of using mclaren m14a as chassis?",
    "question_th": "จุดต่ำสุดในการใช้ mclaren m14a เป็นแชสซีคืออะไร?",
    "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_en": "Location of saint paul, and a Final-Score larger than 14.35, and a Event of all around is what sum of year?",
    "question_th": "ตำแหน่งของนักบุญพอล และคะแนนสุดท้ายมากกว่า 14.35 และเหตุการณ์ทั่วๆ ไปเป็นผลรวมของปีเท่าใด",
    "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_en": "Competition of u.s championships, and a Event of all around has what average year?",
    "question_th": "การแข่งขันชิงแชมป์ของเราและกิจกรรมรอบด้านมีปีเฉลี่ยเท่าใด?",
    "context": "CREATE TABLE table_name_61 (year INTEGER, competition VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT film FROM table_name_55 WHERE year = 1970",
    "question_en": "What film was in 1970?",
    "question_th": "ภาพยนตร์เรื่องใดในปี 1970?",
    "context": "CREATE TABLE table_name_55 (film VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT lyricist FROM table_name_14 WHERE film = \"mukti\"",
    "question_en": "Who wrote the lyrics for Mukti?",
    "question_th": "ใครเป็นคนเขียนเนื้อเพลงให้มุกติ?",
    "context": "CREATE TABLE table_name_14 (lyricist VARCHAR, film VARCHAR)"
  },
  {
    "answer": "SELECT song FROM table_name_13 WHERE music_director_s_ = \"shankar jaikishan\"",
    "question_en": "What song was directed by Shankar Jaikishan?",
    "question_th": "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_en": "What song was written after 1976 and directed by Rahul Dev Burman?",
    "question_th": "เพลงอะไรเขียนหลังปี 1976 และกำกับโดย 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_en": "What car does Scott Deware own that has rounds under 12?",
    "question_th": "Scott Deware เป็นเจ้าของรถรุ่นใดที่มีรอบต่ำกว่า 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_en": "Which City or town has a Top division titles of 17",
    "question_th": "เมืองใดมีตำแหน่งสูงสุดในดิวิชั่น 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_en": "Which City or town has top division smaller than 40 and Gaziantepspor Club ?",
    "question_th": "เมืองใดที่มีดิวิชั่นสูงสุดเล็กกว่า 40 และ 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_en": "What is the 2003 value with 2r in 2008 and 1r in 2011?",
    "question_th": "ค่า 2003 โดยมี 2r ในปี 2551 และ 1r ในปี 2554 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_59 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2007 FROM table_name_67 WHERE 2011 = \"2r\" AND 2008 = \"2r\"",
    "question_en": "What is the 2007 value with 2r in 2011 and 2r in 2008?",
    "question_th": "ค่าปี 2550 โดยมี 2r ในปี 2554 และ 2r ในปี 2551 เป็นเท่าใด",
    "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_en": "What is the 2007 value with 1r in 2009 and 2r in 2011 at the Tournament of Wimbledon?",
    "question_th": "มูลค่าปี 2550 โดยมี 1r ในปี 2552 และ 2r ในปี 2554 ในทัวร์นาเมนต์วิมเบิลดันเป็นเท่าใด",
    "context": "CREATE TABLE table_name_36 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2003 FROM table_name_16 WHERE 2009 = \"1r\" AND tournament = \"australian open\"",
    "question_en": "What is the 2003 value with 1r in 2009 at the Australian Open?",
    "question_th": "ค่า 2003 กับ 1r ในปี 2009 ที่ Australian Open เป็นเท่าใด",
    "context": "CREATE TABLE table_name_16 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT wins FROM table_name_20 WHERE stadium = \"richmond cricket ground\"",
    "question_en": "How many wins did they have at Richmond Cricket Ground Stadium?",
    "question_th": "พวกเขาชนะที่สนามริชมอนด์คริกเก็ตกราวด์ได้กี่ครั้ง?",
    "context": "CREATE TABLE table_name_20 (wins VARCHAR, stadium VARCHAR)"
  },
  {
    "answer": "SELECT AVG(played) FROM table_name_83 WHERE years = \"1905\"",
    "question_en": "How many games did they play in 1905?",
    "question_th": "พวกเขาเล่นกี่เกมในปี 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_en": "Which term in office has a qld state, a Party of labor, and an Electorate of fisher?",
    "question_th": "วาระดำรงตำแหน่งใดที่มีรัฐ qld พรรคแรงงาน และผู้มีสิทธิเลือกตั้งของชาวประมง",
    "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_en": "Which member has an Electorate of kennedy?",
    "question_th": "สมาชิกคนใดมีเขตเลือกตั้งของเคนเนดี",
    "context": "CREATE TABLE table_name_50 (member VARCHAR, electorate VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_name_75 WHERE member = \"david jull\"",
    "question_en": "Which Party has a Member of david jull?",
    "question_th": "พรรคไหนมีสมาชิกเดวิด จุล?",
    "context": "CREATE TABLE table_name_75 (party VARCHAR, member VARCHAR)"
  },
  {
    "answer": "SELECT term_in_office FROM table_name_65 WHERE electorate = \"hinkler\"",
    "question_en": "Which term in office has an Electorate of hinkler?",
    "question_th": "วาระดำรงตำแหน่งใดที่มีผู้มีสิทธิเลือกตั้งของ 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_en": "Which Electorate has a State of qld, a Party of national, and a Member of hon evan adermann?",
    "question_th": "เขตเลือกตั้งใดที่มีรัฐ qld พรรคประชาชาติ และสมาชิกของ 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–1996\" AND party = \"labor\" AND member = \"robert tickner\"",
    "question_en": "Which state has a Term in office of 1984–1996, a Party of labor, and a Member of robert tickner?",
    "question_th": "รัฐใดมีวาระดำรงตำแหน่งระหว่างปี 1984–1996 พรรคแรงงาน และสมาชิกโรเบิร์ต ทิกเนอร์",
    "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_en": "What is the total amount of decile with the authority of state around the Pokuru School and a roll smaller than 109?",
    "question_th": "รวมเดซิล์กับอำนาจรัฐรอบโรงเรียนโปกุรุและม้วนเล็กกว่า 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_en": "Name the most laps for corvette racing in 2004",
    "question_th": "ตั้งชื่อรอบการแข่งคอร์เวตต์มากที่สุดในปี 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_en": "Name the class for 4th position with year before 2006",
    "question_th": "ตั้งชื่อชั้นเป็นตำแหน่งที่ 4 ปีก่อน พ.ศ. 2549",
    "context": "CREATE TABLE table_name_67 (class VARCHAR, pos VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(laps) FROM table_name_17 WHERE pos = \"23rd\"",
    "question_en": "Name the total number of laps for 23rd position",
    "question_th": "ตั้งชื่อจำนวนรอบรวมสำหรับอันดับที่ 23",
    "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_en": "Name the team with laps less than 315 and co-drivers of david brabham franck lagorce?",
    "question_th": "ตั้งชื่อทีมที่มีรอบน้อยกว่า 315 และนักแข่งร่วมของ 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_en": "Name the team for co-drivers of david brabham mario andretti",
    "question_th": "ตั้งชื่อทีมสำหรับนักขับร่วมของ เดวิด บราแบม มาริโอ อันเดรตติ",
    "context": "CREATE TABLE table_name_15 (team VARCHAR, co_drivers VARCHAR)"
  },
  {
    "answer": "SELECT MAX(year) FROM table_name_90 WHERE points > 0",
    "question_en": "Name the highest year with points more than 0",
    "question_th": "ตั้งชื่อปีสูงสุดที่มีคะแนนมากกว่า 0",
    "context": "CREATE TABLE table_name_90 (year INTEGER, points INTEGER)"
  },
  {
    "answer": "SELECT MAX(points) FROM table_name_8 WHERE year > 1953",
    "question_en": "Name the highest points when year is more than 1953",
    "question_th": "ตั้งชื่อจุดสูงสุดเมื่อปีมากกว่า 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_en": "Name the engine when points are 0 and chassis is kuzma indy roadster for 1954",
    "question_th": "ตั้งชื่อเครื่องยนต์เมื่อคะแนนเป็น 0 และแชสซีคือ kuzma indy roadster สำหรับปี 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_en": "Name the least points with chassis of kurtis kraft 3000 and year before 1951",
    "question_th": "ระบุคะแนนน้อยที่สุดด้วยแชสซีของ Kurtis kraft 3000 และปีก่อนปี 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_en": "What is the lowest Pioneer population in 1966 with a Sarina population greater than 4,611?",
    "question_th": "ประชากร Pioneer ต่ำสุดในปี 1966 โดยมีประชากร Sarina มากกว่า 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_en": "What is the year of the TV series directed by Soroush Sehat?",
    "question_th": "ซีรีย์ทางโทรทัศน์ที่กำกับโดย Soroush Sehat คือปีใด",
    "context": "CREATE TABLE table_name_1 (year VARCHAR, director VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_54 WHERE character = \"sheyda/ashraf\"",
    "question_en": "What is the title of the TV series with a character of Sheyda/Ashraf?",
    "question_th": "ซีรีส์โทรทัศน์ที่มีตัวละครเชย์ดา/อัชราฟชื่ออะไร",
    "context": "CREATE TABLE table_name_54 (title VARCHAR, character VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_88 WHERE character = \"leiloon bala barareh\"",
    "question_en": "What is the year of the TV series that has a character of Leiloon Bala Barareh?",
    "question_th": "ทีวีซีรีส์ที่มีตัวละคร เลลูน บาลา บาราเรห์ คือปีอะไร?",
    "context": "CREATE TABLE table_name_88 (year VARCHAR, character VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_70 WHERE year = \"2012\"",
    "question_en": "What is the title of the TV series in 2012?",
    "question_th": "ชื่อเรื่องของละครโทรทัศน์ในปี 2555 คืออะไร?",
    "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_en": "Who published Star Citizen in 2014?",
    "question_th": "ใครเป็นผู้ตีพิมพ์ Star Citizen ในปี 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_en": "Which title was developed by Battlecry Studios?",
    "question_th": "ชื่อใดได้รับการพัฒนาโดย Battlecry Studios?",
    "context": "CREATE TABLE table_name_96 (title VARCHAR, developer VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_66 WHERE date = \"july 13\"",
    "question_en": "How many people were at the match on July 13/",
    "question_th": "แมตช์วันที่ 13 ก.ค. มีผู้เข้าร่วมกี่คน/",
    "context": "CREATE TABLE table_name_66 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_44 WHERE date = \"july 27\"",
    "question_en": "Who was the opponent on July 27?",
    "question_th": "คู่ต่อสู้ในวันที่ 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_en": "For Ynysybwl RFC, what was the losing bonus for 416 points?",
    "question_th": "สำหรับ Ynysybwl RFC โบนัสที่เสียไป 416 แต้มคืออะไร?",
    "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_en": "For the club that had 453 points against, losing bonus of 5 and played of 22, what is the drawn?",
    "question_th": "สโมสรที่มี 453 แต้มต่อ เสียโบนัส 5 แต้ม เล่นไป 22 แต้ม เสมอกันอย่างไร?",
    "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_en": "For the club that had tries of 50 and drawn of 0, what were the points?",
    "question_th": "สโมสรที่พยายาม 50 และเสมอ 0 ได้แต้มเท่าไหร่?",
    "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_en": "The club that had 546 points against, what was the losing bonus?",
    "question_th": "สโมสรที่มี 546 แต้มต่อ โบนัสที่แพ้คืออะไร?",
    "context": "CREATE TABLE table_name_71 (losing_bonus VARCHAR, points_against VARCHAR)"
  },
  {
    "answer": "SELECT lost FROM table_name_47 WHERE club = \"ynysybwl rfc\"",
    "question_en": "What is the lost of Ynysybwl RFC?",
    "question_th": "Ynysybwl RFC ที่หายไปคืออะไร?",
    "context": "CREATE TABLE table_name_47 (lost VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_name_41 WHERE \"club\" = \"club\"",
    "question_en": "How many points does Club have?",
    "question_th": "คลับมีกี่แต้ม?",
    "context": "CREATE TABLE table_name_41 (points VARCHAR)"
  },
  {
    "answer": "SELECT part_6 FROM table_name_89 WHERE part_4 = \"march 2, 2008\"",
    "question_en": "When is Part 6, when Part 4 is on March 2, 2008?",
    "question_th": "ตอนที่ 6 คือเมื่อไหร่ ตอนที่ 4 คือวันที่ 2 มีนาคม 2551",
    "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_en": "What is the Title, when the Episode # is after 2, and when Part 6 is on January 6, 2008?",
    "question_th": "ชื่อเรื่องคืออะไร ตอนที่ # คือหลัง 2 และตอนที่ 6 คือวันที่ 6 มกราคม 2551",
    "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_en": "When is Part 2, when Part 4 is on December 9, 2007?",
    "question_th": "ตอนที่ 2 คือเมื่อไหร่ ตอนที่ 4 คือวันที่ 9 ธันวาคม 2550",
    "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_en": "When is Part 1, when Part 4 is on February 10, 2008?",
    "question_th": "ตอนที่ 1 คือเมื่อไหร่ ตอนที่ 4 คือวันที่ 10 กุมภาพันธ์ 2551",
    "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_en": "When is Part 2, when Part 5 is on January 24, 2008?",
    "question_th": "ตอนที่ 2 คือเมื่อไหร่ ตอนที่ 5 คือวันที่ 24 มกราคม 2551",
    "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_en": "Who was the finals opponent on the hard surface tournament?",
    "question_th": "ใครคือคู่ต่อสู้รอบชิงชนะเลิศในทัวร์นาเมนต์พื้นผิวแข็ง?",
    "context": "CREATE TABLE table_name_11 (opponent_in_the_final VARCHAR, surface VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_46 WHERE tournament = \"curitiba\"",
    "question_en": "Which surface was played during Curitiba tournament?",
    "question_th": "พื้นผิวใดที่เล่นระหว่างทัวร์นาเมนต์กูรีตีบา?",
    "context": "CREATE TABLE table_name_46 (surface VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT MAX(round) FROM table_name_92 WHERE event = \"ufc 109\"",
    "question_en": "What is the highest round for UFC 109?",
    "question_th": "UFC 109 รอบสูงสุดคือรอบไหน?",
    "context": "CREATE TABLE table_name_92 (round INTEGER, event VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_92 WHERE opponent = \"manny gamburyan\"",
    "question_en": "What round was the opponent Manny Gamburyan?",
    "question_th": "แมนนี่ แกมบิวเรียน คู่ต่อสู้ในรอบไหน?",
    "context": "CREATE TABLE table_name_92 (round VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT SUM(week) FROM table_name_75 WHERE date = \"december 6, 1964\"",
    "question_en": "What was the week of the game played December 6, 1964?",
    "question_th": "สัปดาห์ของเกมที่เล่นในวันที่ 6 ธันวาคม พ.ศ. 2507 คือสัปดาห์ใด?",
    "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_en": "What is the fewest losses that had an against score of 2190 and more than 0 draws?",
    "question_th": "อะไรคือการสูญเสียน้อยที่สุดที่มีคะแนนต่อ 2190 และเสมอมากกว่า 0 คืออะไร?",
    "context": "CREATE TABLE table_name_27 (losses INTEGER, against VARCHAR, draws VARCHAR)"
  },
  {
    "answer": "SELECT MIN(draws) FROM table_name_75 WHERE byes > 0",
    "question_en": "What is the fewest number of draws for teams with more than 0 byes?",
    "question_th": "จำนวนการจับฉลากน้อยที่สุดสำหรับทีมที่มีการบายมากกว่า 0 คือเท่าใด",
    "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_en": "What is the sum of losses for Geelong Amateur, with 0 byes?",
    "question_th": "ผลรวมของการสูญเสียของ Geelong Amateur โดยได้บาย 0 เป็นเท่าใด?",
    "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_en": "What is the sum of the number of wins for teams with more than 0 draws?",
    "question_th": "ผลรวมของจำนวนชัยชนะของทีมที่เสมอมากกว่า 0 คือเท่าใด?",
    "context": "CREATE TABLE table_name_51 (wins INTEGER, draws INTEGER)"
  },
  {
    "answer": "SELECT stadium FROM table_name_1 WHERE host_team = \"jacksonville jaguars\"",
    "question_en": "What is the Stadium that hosts the team Jacksonville Jaguars?",
    "question_th": "สนามใดเป็นสนามของทีมแจ็กสันวิลล์ จากัวร์ส?",
    "context": "CREATE TABLE table_name_1 (stadium VARCHAR, host_team VARCHAR)"
  },
  {
    "answer": "SELECT stadium FROM table_name_45 WHERE date = \"november 13\"",
    "question_en": "What stadium was used on November 13?",
    "question_th": "สนามกีฬาใดที่ใช้ในวันที่ 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_en": "What is the host team with the stadium Lincoln Financial Field?",
    "question_th": "ทีมเจ้าบ้านกับสนามลินคอล์น ไฟแนนเชียล ฟิลด์ คือทีมอะไร?",
    "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_en": "What team visited the Cleveland Browns Stadium?",
    "question_th": "ทีมใดไปเยี่ยมชมสนามกีฬา Cleveland Browns?",
    "context": "CREATE TABLE table_name_22 (visiting_team VARCHAR, stadium VARCHAR)"
  },
  {
    "answer": "SELECT stadium FROM table_name_60 WHERE visiting_team = \"denver broncos\"",
    "question_en": "What stadium did the Denver Broncos visit?",
    "question_th": "Denver Broncos ไปเยือนสนามใด?",
    "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_en": "What team visited the Jacksonville Municipal Stadium?",
    "question_th": "ทีมใดไปเยี่ยมชมสนามกีฬาเทศบาลแจ็กสันวิลล์",
    "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_en": "How many people boarded and de-boarded the Amtrak in Linthicum?",
    "question_th": "มีกี่คนที่ขึ้นและลงจากรถ Amtrak ใน 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_en": "The Europe listing of 00 0 0 (0) also has what listed as the total?",
    "question_th": "รายการยุโรปของ 00 0 0 (0) ยังมีสิ่งที่แสดงเป็นยอดรวมหรือไม่",
    "context": "CREATE TABLE table_name_86 (total VARCHAR, europe VARCHAR)"
  },
  {
    "answer": "SELECT years FROM table_name_87 WHERE league = \"400 (21)\"",
    "question_en": "The league of 400 (21) has what years listed?",
    "question_th": "ลีก 400 (21) มีรายการปีใดบ้าง?",
    "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_en": "With a FA Cup of 0 44 0 (0), the other [C] is listed as what?",
    "question_th": "โดยเอฟเอ คัพ 0 44 0 (0) อีกตัว [C] ระบุว่าคืออะไร?",
    "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_en": "The Europe listing of 117 0 (8) belongs to what league?",
    "question_th": "รายการยุโรป 117 0 (8) อยู่ในลีกใด?",
    "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_en": "The other [C] of 0 12 0 (0) belongs to what FA Cup?",
    "question_th": "อีก [C] ของ 0 12 0 (0) เป็นของ 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_en": "What is the lowest VIII Edition Gold with a Silver of 4?",
    "question_th": "Gold รุ่น VIII ต่ำสุดที่มี Silver 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_en": "What is the highest Edition I Bronze with a Gold higher than 9 and a Silver higher than 10?",
    "question_th": "Edition I Bronze สูงสุดที่มี Gold สูงกว่า 9 และ Silver สูงกว่า 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_en": "What's the Total for a Mexico City game with a Gold of less than 4 and a Bronze of less than 2?",
    "question_th": "ผลรวมของเกมในเม็กซิโกซิตี้ที่มีทองน้อยกว่า 4 และทองแดงน้อยกว่า 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_en": "Which Host City has more than 6 Silver and a Total of 22?",
    "question_th": "เมืองเจ้าภาพใดมีมากกว่า 6 เหรียญเงินและมีทั้งหมด 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_en": "What was the time for tracks before 19 on 8/26/69?",
    "question_th": "เพลงก่อน 19 วันที่ 26/8/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_en": "Which venue has a note of AM?",
    "question_th": "สถานที่ใดมีโน้ต AM?",
    "context": "CREATE TABLE table_name_32 (venue VARCHAR, notes VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_12 WHERE date = \"august 16, 2008\"",
    "question_en": "What is the time associated with August 16, 2008?",
    "question_th": "วันที่ 16 สิงหาคม 2551 ตรงกับเวลาใด?",
    "context": "CREATE TABLE table_name_12 (time VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_44 WHERE venue = \"beijing\"",
    "question_en": "Which event was held in Beijing?",
    "question_th": "งานใดจัดขึ้นที่ปักกิ่ง?",
    "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_en": "For a venue of Rome on July 30, 2009, what are the notes?",
    "question_th": "สำหรับสถานที่จัดโรมในวันที่ 30 กรกฎาคม 2552 มีหมายเหตุอะไรบ้าง?",
    "context": "CREATE TABLE table_name_59 (notes VARCHAR, venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_35 WHERE date = \"october 9\"",
    "question_en": "Name the score for october 9",
    "question_th": "ตั้งชื่อคะแนนสำหรับวันที่ 9 ตุลาคม",
    "context": "CREATE TABLE table_name_35 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_90 WHERE series = \"2-2\"",
    "question_en": "Name the loss for series 2-2",
    "question_th": "ตั้งชื่อการสูญเสียสำหรับชุดที่ 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_en": "Name the total number of attendance for october 8",
    "question_th": "ตั้งชื่อจำนวนผู้เข้าร่วมทั้งหมดสำหรับวันที่ 8 ตุลาคม",
    "context": "CREATE TABLE table_name_52 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT engine FROM table_name_74 WHERE points = 0 AND entrant = \"élie bayol\"",
    "question_en": "Which engine did Élie Bayol use when they earned 0 points?",
    "question_th": "Élie Bayol ใช้เครื่องมือใดเมื่อพวกเขาได้รับ 0 คะแนน",
    "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_en": "What season had the highest attendance/g than 3,289?",
    "question_th": "ฤดูกาลใดมีผู้เข้าร่วมสูงสุด/กรัม มากกว่า 3,289 คน",
    "context": "CREATE TABLE table_name_98 (season INTEGER, attendance_g INTEGER)"
  },
  {
    "answer": "SELECT year FROM table_name_23 WHERE pts = 13",
    "question_en": "What year had 13 points?",
    "question_th": "ปีไหนมี 13 คะแนน?",
    "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_en": "Which chassis has a year later than 1964, a Ford engine, and 13 points?",
    "question_th": "แชสซีใดมีเครื่องยนต์ฟอร์ดในหนึ่งปีหลังจากปี 1964 และ 13 คะแนน?",
    "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_en": "Which entrant has fewer than 12 points, a Climax engine, and a Lotus 24 chassis?",
    "question_th": "ผู้เข้าแข่งขันคนใดมีคะแนนน้อยกว่า 12 คะแนน มีเครื่องยนต์ไคลแม็กซ์ และแชสซี Lotus 24",
    "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_en": "In 1972, what was the highest number of points with a Ford engine and an entrant of Brooke Bond Oxo Team Surtees?",
    "question_th": "ในปี 1972 อะไรคือคะแนนสูงสุดจากเครื่องยนต์ของ Ford และผู้เข้าร่วมทีม 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_en": "What year had a Ford engine and 13 points?",
    "question_th": "เครื่องยนต์ฟอร์ดปีไหนมี 13 แต้ม?",
    "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_en": "What is the ERP for the Rockhampton region?",
    "question_th": "ERP สำหรับภูมิภาค Rockhampton คืออะไร",
    "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_en": "What channels first aired on 31 December 1990 in the Southern Downs region?",
    "question_th": "ช่องใดออกอากาศครั้งแรกเมื่อวันที่ 31 ธันวาคม 2533 ในเขต Southern Downs?",
    "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_en": "What is the transmitter location for city of Maryborough?",
    "question_th": "ตำแหน่งเครื่องส่งสัญญาณสำหรับเมือง 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_en": "What is the ERP for the Mount Goonaneman transmitter?",
    "question_th": "ERP สำหรับเครื่องส่งสัญญาณ Mount Goonaneman คืออะไร",
    "context": "CREATE TABLE table_name_6 (erp__analog__digital_ VARCHAR, transmitter_location VARCHAR)"
  },
  {
    "answer": "SELECT number FROM table_name_41 WHERE males = \"11\"",
    "question_en": "Which number has 11 males?",
    "question_th": "หมายเลขใดมีชาย 11 คน?",
    "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_en": "What is the time for a lane less than 6, and a heat less than 4 for Joanne Malar?",
    "question_th": "เวลาใดที่เลนน้อยกว่า 6 และความร้อนน้อยกว่า 4 สำหรับ 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_en": "What is the largest heat with a time of 4:57.90, and a Rank larger than 22?",
    "question_th": "ฮีตที่ใหญ่ที่สุดด้วยเวลา 4:57.90 และอันดับมากกว่า 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_en": "What is the time for Adi Bichman?",
    "question_th": "อาดี บิชแมน กี่โมง?",
    "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_en": "What is the total attendance at games against the New York Mets with a record of 18-18?",
    "question_th": "จำนวนผู้เข้าร่วมในเกมกับนิวยอร์กเม็ตส์ด้วยสถิติ 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_en": "What is the total attendance at games with a score of 4-2?",
    "question_th": "ผู้เข้าร่วมเกมด้วยสกอร์ 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_en": "On what date did the New York Giants host a game?",
    "question_th": "New York Giants จัดการแข่งขันวันไหน?",
    "context": "CREATE TABLE table_name_42 (date VARCHAR, host_team VARCHAR)"
  },
  {
    "answer": "SELECT host_team FROM table_name_55 WHERE date = \"december 27\"",
    "question_en": "Who was the host team for the game on December 27?",
    "question_th": "ใครคือทีมเจ้าบ้านสำหรับเกมวันที่ 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_en": "What was the final score of the game at Texas Stadium?",
    "question_th": "คะแนนสุดท้ายของเกมที่เท็กซัส สเตเดี้ยมเป็นเท่าไหร่?",
    "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_en": "Who was the visiting team who played at the hubert h. humphrey metrodome stadium?",
    "question_th": "ทีมเยือนที่เล่นให้กับฮูเบิร์ต เอช. สนามฮัมฟรีย์ เมโทรโดม?",
    "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_en": "When did the New England Patriots play as the visiting team?",
    "question_th": "นิวอิงแลนด์ แพทริออตส์ ลงเล่นเป็นทีมเยือนเมื่อใด?",
    "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_en": "At which stadium did the Los Angeles Raiders play as the visiting team?",
    "question_th": "Los Angeles Raiders เล่นเป็นทีมเยือนที่สนามกีฬาใด?",
    "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_en": "Who is 1.92 m tall and a current club member of Montepaschi Siena",
    "question_th": "ซึ่งมีส่วนสูง 1.92 ม. และเป็นสมาชิกสโมสรปัจจุบันของมอนเตปาสชี เซียนา",
    "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_en": "Which date has a Tournament of la quinta?",
    "question_th": "วันไหนที่มีการแข่งขัน la quinta?",
    "context": "CREATE TABLE table_name_14 (date VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_44 WHERE surface = \"carpet (i)\"",
    "question_en": "Which date has a Surface of carpet (i)?",
    "question_th": "วันไหนมีพื้นผิวพรม (i)?",
    "context": "CREATE TABLE table_name_44 (date VARCHAR, surface VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_21 WHERE date = \"april 20, 1987\"",
    "question_en": "Which tournament has a Date of april 20, 1987?",
    "question_th": "การแข่งขันใดมีวันที่ 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_en": "Which Opponent has a Surface of hardcourt, an Outcome of runner-up, and a Tournament of honolulu?",
    "question_th": "ฝ่ายตรงข้ามคนใดมีพื้นผิวแบบฮาร์ดคอร์ต ผลการแข่งขันเป็นรองแชมป์ และทัวร์นาเมนต์ที่โฮโนลูลู",
    "context": "CREATE TABLE table_name_51 (opponent VARCHAR, tournament VARCHAR, surface VARCHAR, outcome VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_75 WHERE score = \"6–4, 6–4\"",
    "question_en": "Which Tournament has a Score of 6–4, 6–4?",
    "question_th": "ทัวร์นาเมนต์ใดมีคะแนน 6–4, 6–4",
    "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_en": "Which score has a Surface of hardcourt, and a Date of september 30, 1984?",
    "question_th": "คะแนนใดที่มีพื้นผิวฮาร์ดคอร์ต และวันที่ 30 กันยายน พ.ศ. 2527",
    "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_−1__ > 0.012400000000000001",
    "question_en": "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?",
    "question_th": "หมายเลขกลุ่มต่ำสุดที่มีเศษส่วนน้อยกว่า 0.000748, ครึ่งชีวิต 55.72 และค่าคงตัวการสลายตัวที่มากกว่า 0.012400000000000001 คืออะไร",
    "context": "CREATE TABLE table_name_99 (group INTEGER, decay_constant__s_−1__ VARCHAR, fraction VARCHAR, half_life__s_ VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_26 WHERE loss = \"wakefield (5-2)\"",
    "question_en": "What was the date of the game with a loss of Wakefield (5-2)?",
    "question_th": "เกมที่แพ้เวคฟิลด์ (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_en": "What is the first year of the European Championships competition?",
    "question_th": "การแข่งขันชิงแชมป์ยุโรปปีแรกคือปีใด?",
    "context": "CREATE TABLE table_name_52 (year INTEGER, competition VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_40 WHERE venue = \"helsinki, finland\"",
    "question_en": "Which position has a venue of Helsinki, Finland?",
    "question_th": "ตำแหน่งใดมีสถานที่จัดงานที่เมืองเฮลซิงกิ ประเทศฟินแลนด์?",
    "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_en": "What is the date that a hell ship sunk in the East China Sea?",
    "question_th": "เรือนรกจมในทะเลจีนตะวันออกคือวันที่เท่าไหร่?",
    "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_en": "Which nation had a battlecruiser with an estimate of 513?",
    "question_th": "ชาติใดมีเรือลาดตระเวนประจัญบานประมาณ 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_en": "What is the date that a ship sank in the South Atlantic?",
    "question_th": "เรือจมในมหาสมุทรแอตแลนติกใต้คือวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_59 (date VARCHAR, where_sunk VARCHAR)"
  },
  {
    "answer": "SELECT ship_type FROM table_name_77 WHERE name = \"shinano\"",
    "question_en": "What type of ship was the Shinano?",
    "question_th": "เรือชินาโนะเป็นเรือประเภทใด",
    "context": "CREATE TABLE table_name_77 (ship_type VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT nat FROM table_name_24 WHERE name = \"roma\"",
    "question_en": "What nation had a ship named Roma?",
    "question_th": "ประเทศใดมีเรือชื่อโรมา?",
    "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_en": "What was score of the Blue Jays' game versus the Indians when their record was 21-19?",
    "question_th": "คะแนนของเกมระหว่างทีม Blue Jays กับทีมอินเดียนแดงเมื่อสถิติของพวกเขาคือ 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_en": "During what years did the tallest building, located at 211 Union Street, have less than 31 floors?",
    "question_th": "อาคารที่สูงที่สุดซึ่งตั้งอยู่ที่ 211 Union Street มีน้อยกว่า 31 ชั้นในช่วงปีใด",
    "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_en": "What is the average number of floors at 170 Fourth Avenue North?",
    "question_th": "จำนวนชั้นเฉลี่ยอยู่ที่ 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_en": "What is the address of the Life & Casualty Tower?",
    "question_th": "ที่อยู่ของ 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_en": "What is listed as the Tie no for Home team of Gillingham?",
    "question_th": "อะไรที่ถูกระบุว่าเป็นเสมอไม่สำหรับทีมเหย้าของจิลลิ่งแฮม?",
    "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_en": "What is the Tie no listed for the Away team of Barnet?",
    "question_th": "หมายเลขเสมอไม่อยู่ในรายการของทีมเยือนของบาร์เน็ตคืออะไร?",
    "context": "CREATE TABLE table_name_13 (tie_no VARCHAR, away_team VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_97 WHERE tie_no = \"5\"",
    "question_en": "What is listed for the Attendance that has a Tie no of 5?",
    "question_th": "รายการอะไรบ้างสำหรับผู้เข้าร่วมที่มีคะแนนเสมอกันที่ 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_en": "Which Away team has a Tie no of 4?",
    "question_th": "ทีมเยือนทีมใดเสมอกันที่ 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_en": "Which Home Team has an Attendance of 1,859?",
    "question_th": "ทีมเจ้าบ้านใดมีผู้เข้าร่วม 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_en": "What is listed as the Away team for the Home team of the Bristol Rovers?",
    "question_th": "รายชื่อทีมเยือนของทีมเหย้าของบริสตอล โรเวอร์ส มีอะไรบ้าง?",
    "context": "CREATE TABLE table_name_8 (away_team VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT SUM(first_season_of_current_spell_in_segunda_división) FROM table_name_44 WHERE city = \"cañete\"",
    "question_en": "What is the total of the first season in Segunda División that has a City of cañete?",
    "question_th": "ฤดูกาลแรกใน Segunda División ที่มี City of cañete มีทั้งหมดกี่รายการ?",
    "context": "CREATE TABLE table_name_44 (first_season_of_current_spell_in_segunda_división INTEGER, city VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_69 WHERE top_division_titles > 0 AND founded > 1927 AND stadium = \"miguel grau\"",
    "question_en": "Which team has Top division titles larger than 0, a Founded larger than 1927, and a Stadium of miguel grau?",
    "question_th": "ทีมใดมีตำแหน่งในดิวิชั่นสูงสุดมากกว่า 0, ก่อตั้งมากกว่าปี 1927 และสนามกีฬาของมิเกล เกรา?",
    "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ón < 2013",
    "question_en": "Which city has a First season of current spell in Segunda División smaller than 2013?",
    "question_th": "เมืองใดมีฤดูกาลแรกของคาถาปัจจุบันใน Segunda División ที่เล็กกว่าปี 2013?",
    "context": "CREATE TABLE table_name_69 (city VARCHAR, first_season_of_current_spell_in_segunda_división INTEGER)"
  },
  {
    "answer": "SELECT MIN(capacity) FROM table_name_11 WHERE first_season_in_segunda_división = 2013 AND top_division_titles > 0",
    "question_en": "What is the smallest capacity for a First season in Segunda División of 2013, and Top division titles larger than 0?",
    "question_th": "ความจุที่น้อยที่สุดสำหรับฤดูกาลแรกใน Segunda División ปี 2013 และตำแหน่งแชมป์ดิวิชั่นสูงสุดที่มากกว่า 0 คือเท่าใด",
    "context": "CREATE TABLE table_name_11 (capacity INTEGER, first_season_in_segunda_división VARCHAR, top_division_titles VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(enrollment) FROM table_name_99 WHERE institution = \"mcgill university\" AND capacity < 25 OFFSET 012",
    "question_en": "What's the total enrollment ofr Mcgill University that has a capacity less than 25,012?",
    "question_th": "Mcgill University ที่จุคนได้น้อยกว่า 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_en": "What's the smallest season for Montreal that's greater than 5,100 for capacity?",
    "question_th": "ฤดูกาลใดที่เล็กที่สุดสำหรับมอนทรีออลที่มีความจุมากกว่า 5,100 คือฤดูใด",
    "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_en": "What's the name of the city whose first season was in 1996?",
    "question_th": "เมืองที่มีซีซั่นแรกเมื่อปี 1996 ชื่อเมืองอะไร",
    "context": "CREATE TABLE table_name_32 (city VARCHAR, first_season VARCHAR)"
  },
  {
    "answer": "SELECT football_stadium FROM table_name_55 WHERE team = \"carabins\"",
    "question_en": "What's the name of the carabins stadium?",
    "question_th": "สนามคาราบินส์ชื่ออะไร?",
    "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_en": "what team has the qual 2 of 1:44.050?",
    "question_th": "ทีมใดเข้ารอบ 2 ด้วยเวลา 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_en": "what name goes along with the team of forsythe racing, and a Qual 2 of 1:47.132?",
    "question_th": "ชื่ออะไรตรงกับทีม forsythe racing และรอบ 2 ด้วยเวลา 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_en": "what team had the 1:44.027 qual 2?",
    "question_th": "ทีมไหนทำเวลา 1:44.027 รอบ 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_en": "what is the qual 1 for alex tagliani?",
    "question_th": "อะไรคือคุณสมบัติ 1 ของอเล็กซ์ ทาเกลียนี่?",
    "context": "CREATE TABLE table_name_25 (qual_1 VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_75 WHERE best = \"1:43.134\"",
    "question_en": "what is the team with the best of 1:43.134?",
    "question_th": "ทีมไหนทำได้ดีที่สุดในเวลา 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_en": "Who was the visiting team at the matchup at the RCA Dome?",
    "question_th": "ทีมเยือนนัดชิงที่ 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_en": "What was the final score in the game in which the Detroit Lions were the home team?",
    "question_th": "คะแนนสุดท้ายของเกมที่ทีมเจ้าบ้าน Detroit Lions เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_11 (final_score VARCHAR, host_team VARCHAR)"
  },
  {
    "answer": "SELECT stadium FROM table_name_11 WHERE date = \"november 20\"",
    "question_en": "Which stadium hosted the November 20 game?",
    "question_th": "สนามใดจัดการแข่งขันวันที่ 20 พฤศจิกายน?",
    "context": "CREATE TABLE table_name_11 (stadium VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT visiting_team FROM table_name_13 WHERE host_team = \"minnesota vikings\"",
    "question_en": "Who was the visiting team against the Minnesota Vikings?",
    "question_th": "ทีมเยือนกับมินนิโซตา ไวกิ้งส์คือใคร?",
    "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_en": "Who was the host team at Candlestick Park?",
    "question_th": "ทีมเจ้าบ้านที่ 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_en": "Which date had a final score of 20-27?",
    "question_th": "วันไหนมีคะแนนสุดท้าย 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_en": "How many years have had the position of 2nd?",
    "question_th": "ครองตำแหน่งที่ 2 มากี่ปีแล้ว?",
    "context": "CREATE TABLE table_name_66 (year VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_29 WHERE notes = \"20km\" AND year < 2002",
    "question_en": "What position had notes of 20km and a year earlier than 2002?",
    "question_th": "ตำแหน่งใดมีบันทึก 20 กม. และหนึ่งปีก่อนหน้าปี 2545?",
    "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_en": "What was the venue before 2006, with the position of 10th?",
    "question_th": "ก่อนปี 2549 สถานที่ใดเป็นอันดับที่ 10?",
    "context": "CREATE TABLE table_name_26 (venue VARCHAR, year VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_name_62 WHERE venue = \"turin, italy\"",
    "question_en": "What were the notes when the Venue was Turin, Italy?",
    "question_th": "อะไรคือบันทึกเมื่อสถานที่จัดงานคือเมืองตูริน ประเทศอิตาลี?",
    "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_en": "What is Gareth Morgan's Secondary Military Specialty?",
    "question_th": "ความเชี่ยวชาญด้านการทหารรองของ Gareth Morgan คืออะไร?",
    "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_en": "What is the Code Name of the figure born in Hawaii?",
    "question_th": "ชื่อรหัสของบุคคลที่เกิดในฮาวายคืออะไร?",
    "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_en": "Name the last title for greater buenos aires and first season of 1920",
    "question_th": "ตั้งชื่อเรื่องสุดท้ายของบัวโนสไอเรสและฤดูกาลแรกของปี 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órdoba\"",
    "question_en": "Name the area for District of córdoba",
    "question_th": "ตั้งชื่อพื้นที่เป็นเขตกอร์โดบา",
    "context": "CREATE TABLE table_name_64 (area_province VARCHAR, district VARCHAR)"
  },
  {
    "answer": "SELECT last_title FROM table_name_36 WHERE club = \"quilmes\"",
    "question_en": "Name the last title for club of quilmes",
    "question_th": "ตั้งชื่อนามสกุลของ 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_en": "Name the last time for club of newell's old boys",
    "question_th": "ตั้งชื่อครั้งสุดท้ายให้กับสโมสรของนีเวลล์สโอลด์บอยส์",
    "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_en": "Name the averag scored for 2011 long teng cup and 2 october 2011",
    "question_th": "ทายผลคะแนนเฉลี่ยเต็งคัพ 2011 และ 2 ตุลาคม 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_en": "Can you tell me the Barrel twist that has the Barrel lenght of 11.5 in.?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่า Barrel twist ที่มีความยาว Barrel 11.5 นิ้ว?",
    "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_en": "What is the average year that had a value less than 2,575 in Inglewood?",
    "question_th": "ปีเฉลี่ยที่มีมูลค่าน้อยกว่า 2,575 ในอิงเกิลวูดคือปีใด",
    "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_en": "What is the nature of the incident in Kabul on 2004-01-28?",
    "question_th": "ลักษณะของเหตุการณ์ในกรุงคาบูล เมื่อวันที่ 28-01-2547 เป็นอย่างไร?",
    "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_en": "What is the nature of the incident that's a bomb attack?",
    "question_th": "ลักษณะของเหตุการณ์ที่เป็นการโจมตีด้วยระเบิดคืออะไร?",
    "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_en": "What is the nature of the incident with Casualties of 3 wia, and Circumstances of ied?",
    "question_th": "ลักษณะของเหตุการณ์ที่มีผู้เสียชีวิตจำนวน 3 วัน และพฤติการณ์ของ 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_en": "Which Casualties have a Location of kunduz, and Circumstances of suicide?",
    "question_th": "ผู้เสียชีวิตรายใดมีที่ตั้งของ Kunduz และสถานการณ์การฆ่าตัวตาย",
    "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_en": "Which Casualties have a hostile Nature of incident and Circumstances of mortar attack?",
    "question_th": "ผู้เสียชีวิตรายใดที่มีลักษณะของเหตุการณ์ที่ไม่เป็นมิตรและพฤติการณ์ของการโจมตีด้วยปูน?",
    "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_en": "When was the delegate who has previous experience as a commissioner of health born?",
    "question_th": "ผู้แทนผู้มีประสบการณ์เป็นกรรมาธิการสาธารณสุขมาก่อนเกิดเมื่อใด",
    "context": "CREATE TABLE table_name_36 (born_in VARCHAR, former_experience VARCHAR)"
  },
  {
    "answer": "SELECT airport FROM table_name_85 WHERE city = \"kota kinabalu\"",
    "question_en": "What is the name of the airport in the city of Kota Kinabalu?",
    "question_th": "ชื่อสนามบินในเมือง โคตาคินาบาลู คืออะไร?",
    "context": "CREATE TABLE table_name_85 (airport VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT iata FROM table_name_23 WHERE city = \"amsterdam\"",
    "question_en": "What is the IATA for the city of Amsterdam?",
    "question_th": "IATA สำหรับเมืองอัมสเตอร์ดัมคืออะไร?",
    "context": "CREATE TABLE table_name_23 (iata VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_3 WHERE iata = \"jfk\"",
    "question_en": "Which country has an IATA of JFK?",
    "question_th": "ประเทศใดมี IATA ของ JFK",
    "context": "CREATE TABLE table_name_3 (country VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_42 WHERE iata = \"auh\"",
    "question_en": "Which city has an IATA of AUH?",
    "question_th": "เมืองใดมี IATA เท่ากับ AUH",
    "context": "CREATE TABLE table_name_42 (city VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT airport FROM table_name_39 WHERE iata = \"ams\"",
    "question_en": "Which airport has an IATA of AMS?",
    "question_th": "สนามบินใดมี IATA ของ AMS",
    "context": "CREATE TABLE table_name_39 (airport VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_59 WHERE icao = \"kiah\"",
    "question_en": "Which city has an ICAO of Kiah?",
    "question_th": "เมืองใดมี ICAO ของ Kiah?",
    "context": "CREATE TABLE table_name_59 (city VARCHAR, icao VARCHAR)"
  },
  {
    "answer": "SELECT genre FROM table_name_88 WHERE directed_by = \"sándor simó\"",
    "question_en": "What Genre did Sándor Simó direct?",
    "question_th": "Sándor Simó กำกับประเภทใด",
    "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_en": "What is the Genre for Malina (ger.-aus.-fr.), an Original Title?",
    "question_th": "Malina (ger.-aus.-fr.) ชื่อดั้งเดิมคือประเภทใด",
    "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_en": "The Last Metro refers to which Original Title?",
    "question_th": "The Last Metro หมายถึงชื่อดั้งเดิมเรื่องใด",
    "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árnapjai (hungarian)\"",
    "question_en": "What original title, Franciska Vasárnapjai (hungarian), had an Episode Actor role which was Directed by Géza Bereményi?",
    "question_th": "ชื่อเดิมคือ Franciska Vasárnapjai (ฮังการี) มีบทบาทเป็นนักแสดงตอนซึ่งกำกับโดย Géza Bereményi",
    "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éza bereményi\"",
    "question_en": "What is the Original title for an Episode Actor role which was Directed by Géza Bereményi?",
    "question_th": "ชื่อดั้งเดิมของบทบาทนักแสดงตอนซึ่งกำกับโดย Géza Bereményi คืออะไร",
    "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_en": "What is the round for bob randall?",
    "question_th": "บ๊อบ แรนดัล รอบไหน?",
    "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_en": "what is the position when signed is yes, round is less than 24 and name is charlie hough?",
    "question_th": "ตำแหน่งที่ลงนามคือใช่ รอบน้อยกว่า 24 และชื่อชาร์ลี ฮาว?",
    "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_en": "what is the school when signed is no and round is 50?",
    "question_th": "โรงเรียนอะไรเมื่อลงนามคือไม่และรอบคือ 50?",
    "context": "CREATE TABLE table_name_26 (school VARCHAR, signed VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_68 WHERE round = 8",
    "question_en": "what is the school for round 8?",
    "question_th": "โรงเรียนรอบ 8 คืออะไร?",
    "context": "CREATE TABLE table_name_68 (school VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_25 WHERE name = \"robert johnson\"",
    "question_en": "what is the position for robert johnson?",
    "question_th": "โรเบิร์ต จอห์นสัน ดำรงตำแหน่งอะไร?",
    "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_en": "Was position ss from carson city high school signed?",
    "question_th": "ตำแหน่ง ss จากโรงเรียนมัธยมคาร์สันซิตี้ลงนามแล้วหรือยัง?",
    "context": "CREATE TABLE table_name_48 (signed VARCHAR, position VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT AVG(yards) FROM table_name_46 WHERE starts > 12",
    "question_en": "What was the average number of yards Michael Henig had in a year when he had more than 12 starts/",
    "question_th": "คือจำนวนหลาเฉลี่ยที่ Michael Henig ทำได้ในหนึ่งปีเมื่อเขาออกสตาร์ตมากกว่า 12 ครั้ง/",
    "context": "CREATE TABLE table_name_46 (yards INTEGER, starts INTEGER)"
  },
  {
    "answer": "SELECT AVG(starts) FROM table_name_54 WHERE yards > 1201",
    "question_en": "What was the average number of starts Michael Henig had in a year when he had more than 1201 yards?",
    "question_th": "Michael Henig ออกสตาร์ทโดยเฉลี่ยในหนึ่งปีเมื่อเขามีมากกว่า 1,201 หลาเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_54 (starts INTEGER, yards INTEGER)"
  },
  {
    "answer": "SELECT airport FROM table_name_64 WHERE iata = \"cxb\"",
    "question_en": "Name the airport with IATA of cxb",
    "question_th": "ตั้งชื่อสนามบินด้วย IATA ของ cxb",
    "context": "CREATE TABLE table_name_64 (airport VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT airport FROM table_name_74 WHERE iata = \"dmk\"",
    "question_en": "Name the airport with IATA of dmk",
    "question_th": "ตั้งชื่อสนามบินด้วย IATA เป็น dmk",
    "context": "CREATE TABLE table_name_74 (airport VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_15 WHERE airport = \"singapore changi airport\"",
    "question_en": "Name the city that has singapore changi airport",
    "question_th": "ตั้งชื่อเมืองที่มีสนามบินชางงีสิงคโปร์",
    "context": "CREATE TABLE table_name_15 (city VARCHAR, airport VARCHAR)"
  },
  {
    "answer": "SELECT icao FROM table_name_22 WHERE iata = \"zyl\"",
    "question_en": "Name the ICAO for when IATA is zyl",
    "question_th": "ตั้งชื่อ ICAO เมื่อ IATA เป็น zyl",
    "context": "CREATE TABLE table_name_22 (icao VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT icao FROM table_name_69 WHERE iata = \"rgn\"",
    "question_en": "Name the ICAO for IATA of rgn",
    "question_th": "ตั้งชื่อ ICAO สำหรับ IATA ของ rgn",
    "context": "CREATE TABLE table_name_69 (icao VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT icao FROM table_name_62 WHERE iata = \"ccu\"",
    "question_en": "Name the ICAO for IATA of ccu",
    "question_th": "ตั้งชื่อ ICAO สำหรับ IATA ของ ccu",
    "context": "CREATE TABLE table_name_62 (icao VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT MAX(gold) FROM table_name_90 WHERE total > 16",
    "question_en": "What is the largest gold with a Total larger than 16?",
    "question_th": "ทองคำที่ใหญ่ที่สุดที่มียอดรวมมากกว่า 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_en": "What is the largest silver with a Total smaller than 2, a Bronze smaller than 1, and a Nation of yugoslavia?",
    "question_th": "เงินที่ใหญ่ที่สุดที่มีคะแนนรวมน้อยกว่า 2, เหรียญทองแดงน้อยกว่า 1 และประเทศยูโกสลาเวียคืออะไร?",
    "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_en": "What is the smallest bronze with a Nation of west germany, and a Gold larger than 0?",
    "question_th": "เหรียญทองแดงที่เล็กที่สุดที่มีชาติเยอรมนีตะวันตกและทองคำมีค่ามากกว่า 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_en": "What was the record on July 2?",
    "question_th": "บันทึกเมื่อวันที่ 2 กรกฎาคมคืออะไร?",
    "context": "CREATE TABLE table_name_34 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(silver) FROM table_name_63 WHERE gold < 0",
    "question_en": "What is the largest silver with less than 0 gold?",
    "question_th": "เงินที่ใหญ่ที่สุดที่มีทองคำน้อยกว่า 0 คืออะไร?",
    "context": "CREATE TABLE table_name_63 (silver INTEGER, gold INTEGER)"
  },
  {
    "answer": "SELECT AVG(total_viewers) FROM table_name_96 WHERE share = \"17.6%\"",
    "question_en": "What's the average total viewers that has 17.6% Share?",
    "question_th": "ผู้ชมทั้งหมดโดยเฉลี่ยที่มีส่วนแบ่ง 17.6% คือเท่าใด",
    "context": "CREATE TABLE table_name_96 (total_viewers INTEGER, share VARCHAR)"
  },
  {
    "answer": "SELECT share FROM table_name_84 WHERE episode_no = 1",
    "question_en": "What's the share of Episode 1?",
    "question_th": "ส่วนแบ่งของตอนที่ 1 คืออะไร?",
    "context": "CREATE TABLE table_name_84 (share VARCHAR, episode_no VARCHAR)"
  },
  {
    "answer": "SELECT quantity_made FROM table_name_97 WHERE withdrawn = \"1913\"",
    "question_en": "How many locomotives were made that were withdrawn in 1913?",
    "question_th": "มีการสร้างตู้รถไฟกี่ตู้ที่ถูกถอนออกในปี พ.ศ. 2456?",
    "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_en": "What is the date of creation for the locomotive having a type of 0-4-2",
    "question_th": "วันที่สร้างรถจักรมีแบบ 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_en": "What is the date of creation of the locomotive of type 0-6-0 and GSR class of 441?",
    "question_th": "วันที่สร้างหัวรถจักรประเภท 0-6-0 และ GSR ชั้น 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_en": "In Round 19, where did Tony Lockett play?",
    "question_th": "ในรอบ 19 Tony Lockett เล่นที่ไหน?",
    "context": "CREATE TABLE table_name_20 (venue VARCHAR, round VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_17 WHERE year = \"1992\"",
    "question_en": "Who is the opponent in 1992?",
    "question_th": "คู่ต่อสู้ในปี 1992 คือใคร?",
    "context": "CREATE TABLE table_name_17 (opponent VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_name_87 WHERE score = \"18.1\"",
    "question_en": "What club had a score of 18.1?",
    "question_th": "สโมสรใดมีคะแนน 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_en": "What is the number for year built of W27 that was withdrawn in 1967 with a To LoW year earlier than 1926?",
    "question_th": "ตัวเลขของปีที่สร้างของ W27 ซึ่งถูกถอนออกในปี 1967 โดยมี To LoW ปีก่อนหน้าปี 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_en": "What is the number of the year withdrawn for a LSWR number greater than 210 and a To LoW year of 1923?",
    "question_th": "หมายเลขปีที่ถอนออกสำหรับหมายเลข LSWR ที่มากกว่า 210 และปี To LoW ปี 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_en": "What is the BR/SR number of Freshwater which was withdrawn in 1967 and built before 1892 with a To LoW year after 1927?",
    "question_th": "หมายเลข BR/SR ของน้ำจืดซึ่งถูกถอนออกในปี 1967 และสร้างขึ้นก่อนปี 1892 โดยมีค่า To LoW เท่าใดหลังจากปี 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_en": "Name the engine for year less than 1977",
    "question_th": "ชื่อเครื่องยนต์ปีน้อยกว่า 1977",
    "context": "CREATE TABLE table_name_76 (engine VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT start FROM table_name_70 WHERE year < 1977",
    "question_en": "Name the start for year less than 1977",
    "question_th": "ตั้งชื่อเริ่มต้นสำหรับปีที่น้อยกว่า 1977",
    "context": "CREATE TABLE table_name_70 (start VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_name_13 WHERE start = \"17th\"",
    "question_en": "Name the least year for start of 17th",
    "question_th": "ตั้งชื่อปีที่น้อยที่สุดสำหรับการเริ่มต้นวันที่ 17",
    "context": "CREATE TABLE table_name_13 (year INTEGER, start VARCHAR)"
  },
  {
    "answer": "SELECT start FROM table_name_39 WHERE finish = \"21st\"",
    "question_en": "Name the start for finish being 21st",
    "question_th": "ตั้งชื่อจุดเริ่มต้นเพื่อจบอันดับที่ 21",
    "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_en": "What is the Call sign of the Omni television network with a Digitial PSIP of 14.1?",
    "question_th": "สัญญาณเรียกขานของเครือข่ายโทรทัศน์ Omni ที่มี Digital PSIP เป็น 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éotron__gatineau_ = 14",
    "question_en": "What's the total number of Rogers Cable (Ottawa) channels that have a Digital PSIP greater than 9.1, and a Vidéotron (Gatineau) of channel 14?",
    "question_th": "จำนวนช่อง Rogers Cable (Ottawa) ทั้งหมดที่มี Digital PSIP มากกว่า 9.1 และ Vidéotron (Gatineau) ของช่อง 14 คือเท่าใด",
    "context": "CREATE TABLE table_name_58 (rogers_cable__ottawa_ VARCHAR, digital_psip VARCHAR, vidéotron__gatineau_ VARCHAR)"
  },
  {
    "answer": "SELECT network FROM table_name_26 WHERE vidéotron__gatineau_ < 8 AND rogers_cable__ottawa_ < 8 AND call_sign = \"cjoh-dt\"",
    "question_en": "Which Network is on a Vidéotron (Gatineau)  channel lower than 8 and a Rogers Cable (Ottawa) channel lower than 8 and has a Call Sign of cjoh-dt?",
    "question_th": "เครือข่ายใดที่อยู่บนช่อง Vidéotron (Gatineau) ต่ำกว่า 8 และช่อง Rogers Cable (Ottawa) ต่ำกว่า 8 และมีสัญญาณเรียกขานเป็น cjoh-dt",
    "context": "CREATE TABLE table_name_26 (network VARCHAR, call_sign VARCHAR, vidéotron__gatineau_ VARCHAR, rogers_cable__ottawa_ VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_35 WHERE time = \"8:17\"",
    "question_en": "What was the record after the fight that lasted 8:17?",
    "question_th": "บันทึกหลังการต่อสู้ที่กินเวลา 8:17 คืออะไร?",
    "context": "CREATE TABLE table_name_35 (record VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT res FROM table_name_27 WHERE opponent = \"tony halme\"",
    "question_en": "What was the result of the fight with Tony Halme?",
    "question_th": "ผลการต่อสู้กับ Tony Halme เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_27 (res VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_44 WHERE date = \"august 26\"",
    "question_en": "Who did they play on August 26?",
    "question_th": "พวกเขาเล่นกับใครในวันที่ 26 สิงหาคม?",
    "context": "CREATE TABLE table_name_44 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT SUM(attendance) FROM table_name_74 WHERE date = \"august 16\"",
    "question_en": "What was the attendance for the game on August 16?",
    "question_th": "ผู้เข้าชมเกมในวันที่ 16 สิงหาคมเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_74 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_60 WHERE loss = \"johnson (11-7)\"",
    "question_en": "What team did Johnson (11-7) play for?",
    "question_th": "จอห์นสัน (11-7) เล่นให้กับทีมใด?",
    "context": "CREATE TABLE table_name_60 (opponent VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT MAX(pts) FROM table_name_51 WHERE engine = \"cosworth straight-4\"",
    "question_en": "What is the highest number of points the cosworth straight-4 engine scored?",
    "question_th": "คะแนนสูงสุดของเครื่องยนต์ cosworth ตรง 4 คือเท่าใด?",
    "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_en": "What is the latest year that shadow racing team scored more than 0 points?",
    "question_th": "ล่าสุดทีม Shadow Racing ได้เกิน 0 แต้มคือปีไหน?",
    "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_en": "What round was held in palavas-les-flots , herault , france?",
    "question_th": "จัดขึ้นที่ 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_en": "What is the second leg that Valencia was on?",
    "question_th": "เลกที่สองที่บาเลนเซียอยู่คืออะไร?",
    "context": "CREATE TABLE table_name_33 (team_2 VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_68 WHERE record = \"14-19\"",
    "question_en": "Name the loss with record of 14-19",
    "question_th": "ตั้งชื่อแพ้ด้วยสถิติ 14-19",
    "context": "CREATE TABLE table_name_68 (loss VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_6 WHERE record = \"17-27\"",
    "question_en": "Name the score with record of 17-27",
    "question_th": "ตั้งชื่อสกอร์ด้วยสถิติ 17-27",
    "context": "CREATE TABLE table_name_6 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_20 WHERE record = \"12-18\"",
    "question_en": "Name the opponent with record of 12-18",
    "question_th": "ตั้งชื่อคู่ต่อสู้ด้วยสถิติ 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_en": "Who was the General classification when Pascal Richard was the winner?",
    "question_th": "ใครคือประเภททั่วไปเมื่อ Pascal Richard เป็นผู้ชนะ?",
    "context": "CREATE TABLE table_name_90 (general_classification VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT points_classification FROM table_name_20 WHERE stage = \"13\"",
    "question_en": "Who had the Points classification for Stage 13?",
    "question_th": "ใครเป็นผู้จัดประเภทคะแนนสำหรับสเตจที่ 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_en": "What was the Stage when Pascal Richard had the Mountains classification and Vladimir Poulnikov won?",
    "question_th": "อะไรคือเวทีที่ Pascal Richard อยู่ในประเภท Mountains และ Vladimir Poulnikov ชนะ?",
    "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_en": "What's the total score of Danny Edwards?",
    "question_th": "คะแนนรวมของ แดนนี่ เอ็ดเวิร์ดส์ คือเท่าไร?",
    "context": "CREATE TABLE table_name_39 (score INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_20 WHERE score = 70 AND country = \"australia\"",
    "question_en": "Where was the place in Australia that had a score of 70?",
    "question_th": "สถานที่ใดในออสเตรเลียที่มีคะแนน 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_en": "The entrepreneur Adam Weaver was featured in which episode?",
    "question_th": "ผู้ประกอบการ Adam Weaver ปรากฏตัวในตอนใด?",
    "context": "CREATE TABLE table_name_28 (episode VARCHAR, entrepreneur_s_ VARCHAR)"
  },
  {
    "answer": "SELECT episode FROM table_name_60 WHERE entrepreneur_s_ = \"layla bennett\"",
    "question_en": "The entrepreneur Layla Bennett was featured in which episode?",
    "question_th": "ผู้ประกอบการ Layla Bennett ปรากฏตัวในตอนใด",
    "context": "CREATE TABLE table_name_60 (episode VARCHAR, entrepreneur_s_ VARCHAR)"
  },
  {
    "answer": "SELECT MAX(population) FROM table_name_29 WHERE rank > 9",
    "question_en": "What is the highest population of the region with a rank bigger than 9?",
    "question_th": "ประชากรสูงสุดของภูมิภาคที่มีอันดับมากกว่า 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_en": "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?",
    "question_th": "ประชากรเฉลี่ยของภูมิภาคที่มีความหนาแน่นน้อยกว่า 487 อันดับ 9 และพื้นที่ใหญ่กว่า 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_en": "What is the TDP (w) of the chipset with a codename sb850?",
    "question_th": "TDP (w) ของชิปเซ็ตที่มีชื่อรหัส sb850 คืออะไร",
    "context": "CREATE TABLE table_name_3 (tdp___w__ VARCHAR, codename VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_46 WHERE score < 21.5",
    "question_en": "Which round is a lower score than 21.5?",
    "question_th": "รอบไหนคะแนนต่ำกว่า 21.5?",
    "context": "CREATE TABLE table_name_46 (round VARCHAR, score INTEGER)"
  },
  {
    "answer": "SELECT round FROM table_name_25 WHERE status = \"in\" AND song = \"叶良俊 - 爱你不是爱给别人看\"",
    "question_en": "Which round status is in with this song: 叶良俊 - 爱你不是爱给别人看?",
    "question_th": "เพลงนี้อยู่ในสถานะรอบไหน: 叶良俊 - 爱你不是爱给别人看?",
    "context": "CREATE TABLE table_name_25 (round VARCHAR, status VARCHAR, song VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_94 WHERE score = 21.5",
    "question_en": "Which status accompanies the score 21.5?",
    "question_th": "สถานะใดมาพร้อมกับคะแนน 21.5?",
    "context": "CREATE TABLE table_name_94 (status VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_86 WHERE score > 22 AND song = \"林俊杰 - 木乃伊\"",
    "question_en": "Wjat score is greater than 22 with this song: 林俊杰 - 木乃伊?",
    "question_th": "คะแนน Wjat มากกว่า 22 ด้วยเพลงนี้: 林俊杰 - 木乃伊?",
    "context": "CREATE TABLE table_name_86 (name VARCHAR, score VARCHAR, song VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_18 WHERE song = \"陶喆、蔡依林 - 今天你要嫁给我/曹格 - 世界唯一的你\"",
    "question_en": "What round has this song: 陶喆、蔡依林 - 今天你要嫁给我/曹格 - 世界唯一的你?",
    "question_th": "เพลงนี้มีอยู่รอบไหน: 陶喆、蔡依林 - 今天คุณ要嫁给我/曹格 - 世界唯一的คุณ?",
    "context": "CREATE TABLE table_name_18 (round VARCHAR, song VARCHAR)"
  },
  {
    "answer": "SELECT artist FROM table_name_88 WHERE draw < 2",
    "question_en": "What is the artist with less than a 2 draw?",
    "question_th": "ศิลปินคนใดที่มีการจับรางวัลน้อยกว่า 2 ครั้ง?",
    "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_en": "What is the average issue price with from Toronto maple leafs gift set, and a Mintage of 3527?",
    "question_th": "ราคาเฉลี่ยของชุดของขวัญจาก Toronto Maple Leafs และจำนวนผลิต 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_en": "What theme has a mintage of 3527?",
    "question_th": "ธีมอะไรมีเหรียญกษาปณ์ 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_en": "When was a mintage of 1264 with more than 24.95 issued?",
    "question_th": "เมื่อใดที่เหรียญกษาปณ์ 1264 ที่มีมากกว่า 24.95 ออก?",
    "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_en": "Name the most year for team motul brm and chassis of brm p201 and points less than 0",
    "question_th": "ตั้งชื่อปีมากที่สุดสำหรับทีม motul brm และแชสซีของ brm p201 และคะแนนน้อยกว่า 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_en": "Name the entrant for 1975 and chassis of hill gh1",
    "question_th": "ตั้งชื่อผู้เข้าร่วมสำหรับปี 1975 และแชสซีของ 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_en": "Name the chassis for engine of brm v12",
    "question_th": "ตั้งชื่อแชสซีสำหรับเครื่องยนต์ brm v12",
    "context": "CREATE TABLE table_name_49 (chassis VARCHAR, engine VARCHAR)"
  },
  {
    "answer": "SELECT MAX(year) FROM table_name_96 WHERE points > 0",
    "question_en": "Name the most year for points more than 0",
    "question_th": "ตั้งชื่อปีมากที่สุดสำหรับคะแนนที่มากกว่า 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_en": "Name the sum of points for chassis of brm p160e and year more than 1974",
    "question_th": "ตั้งชื่อผลรวมคะแนนแชสซีของ brm p160e และปีมากกว่า 1974",
    "context": "CREATE TABLE table_name_32 (points INTEGER, chassis VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT chassis FROM table_name_64 WHERE year > 1991",
    "question_en": "What is the chassis after 1991?",
    "question_th": "แชสซีหลังปี 1991 คืออะไร?",
    "context": "CREATE TABLE table_name_64 (chassis VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT AVG(points) FROM table_name_54 WHERE year > 1992",
    "question_en": "What are the average points after 1992?",
    "question_th": "คะแนนเฉลี่ยหลังจากปี 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_en": "What is the sum of points in 1991, for footwork a11c chassis?",
    "question_th": "ผลรวมคะแนนในปี 1991 สำหรับแชสซี footwork a11c เป็นเท่าใด",
    "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_en": "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?",
    "question_th": "ผู้เข้าร่วม Martini Racing เครื่องยนต์ของ Alfa Romeo flat-12 แชสซีของ brabham bt45 และปี 1976 ได้กี่คะแนน",
    "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_en": "Which chassis is from 1974 and was an entrant of Goldie Hexagon racing?",
    "question_th": "แชสซีใดที่มาจากปี 1974 และเป็นผู้เข้าร่วมการแข่งขัน Goldie Hexagon",
    "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_en": "What is the average points of a Cosworth v8 engine in 1973.",
    "question_th": "คะแนนเฉลี่ยของเครื่องยนต์ Cosworth v8 ในปี 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_en": "Which chassis has an Alfa Romeo flat-12 engine.",
    "question_th": "แชสซีตัวไหนมีเครื่องยนต์ Alfa Romeo flat-12",
    "context": "CREATE TABLE table_name_76 (chassis VARCHAR, engine VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_87 WHERE attendance = \"32,036\"",
    "question_en": "What was the score of the game that had an attendance of 32,036?",
    "question_th": "คะแนนของเกมที่มีผู้เข้าร่วม 32,036 คนคือเท่าไร?",
    "context": "CREATE TABLE table_name_87 (score VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_4 WHERE record = \"46-34\"",
    "question_en": "On what date did the result leave the team with a record of 46-34?",
    "question_th": "ผลออกจากทีมวันไหนด้วยสถิติ 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_en": "Name the opponent with round of 1 and time of n/a",
    "question_th": "ตั้งชื่อคู่ต่อสู้ด้วยยกที่ 1 และเวลาไม่มี",
    "context": "CREATE TABLE table_name_37 (opponent VARCHAR, round VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_71 WHERE opponent = \"christian nielson\"",
    "question_en": "Name the record with opponent of christian nielson",
    "question_th": "ตั้งชื่อสถิติกับคู่ต่อสู้ของคริสเตียน นีลสัน",
    "context": "CREATE TABLE table_name_71 (record VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_59 WHERE method = \"decision\"",
    "question_en": "Name the opponent with decision",
    "question_th": "ตั้งชื่อคู่ต่อสู้ด้วยการตัดสินใจ",
    "context": "CREATE TABLE table_name_59 (opponent VARCHAR, method VARCHAR)"
  },
  {
    "answer": "SELECT 3 AS rd_place FROM table_name_53 WHERE year = \"2011\"",
    "question_en": "What was the 3rd place value in 2011?",
    "question_th": "มูลค่าอันดับที่ 3 ในปี 2554 คืออะไร?",
    "context": "CREATE TABLE table_name_53 (year VARCHAR)"
  },
  {
    "answer": "SELECT tries_for FROM table_name_92 WHERE points_against = \"583\"",
    "question_en": "Name the tries for points against of 583",
    "question_th": "ตั้งชื่อการพยายามหาคะแนนเทียบกับ 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_en": "Nam the points for when tries for is 91 and played of 22",
    "question_th": "ตั้งชื่อแต้มเมื่อพยายามให้ได้ 91 และเล่นได้ 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_en": "Name the drawn for tries for of 42",
    "question_th": "ตั้งชื่อการจับรางวัลสำหรับความพยายามครั้งที่ 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_en": "Name the Drawn for tries against of 36 and points of 66",
    "question_th": "ตั้งชื่อ Drawn สำหรับการพยายามต่อ 36 และคะแนน 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_en": "Name the Try bonus with lost of 10",
    "question_th": "ตั้งชื่อโบนัสลองโดยเสีย 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_en": "Name the points for when points against is of 450",
    "question_th": "ตั้งชื่อแต้มเมื่อแต้มต่อเป็น 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_en": "What was the 1st leg when Team 2 was Aurora?",
    "question_th": "เลกแรกเมื่อทีม 2 เป็นออโรร่าคืออะไร?",
    "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_en": "What was the 2nd leg when Team 1 was Chicago Croatian?",
    "question_th": "เลกที่ 2 เมื่อทีม 1 เป็นทีมชิคาโกโครเอี้ยนคืออะไร?",
    "context": "CREATE TABLE table_name_57 (team_1 VARCHAR)"
  },
  {
    "answer": "SELECT team_2 FROM table_name_88 WHERE team_1 = \"américa\"",
    "question_en": "Who was Team 2 when Team 1 was América?",
    "question_th": "ทีม 2 คือใครเมื่อทีม 1 คือ America?",
    "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_en": "Which nationality do the Montreal Canadiens belong to with a pick# of 25?",
    "question_th": "ชาวแคนาดาชาวมอนทรีออลเป็นคนสัญชาติใดโดยเลือก # จาก 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_en": "What is the pick# for the California Golden Seals?",
    "question_th": "ตัวเลือก # สำหรับ 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_en": "What was the Goal in Stade Roi Baudouin, Brussels?",
    "question_th": "เป้าหมายใน Stade Roi Baudouin, บรัสเซลส์ คืออะไร?",
    "context": "CREATE TABLE table_name_81 (goal INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_48 WHERE competition = \"friendly\" AND goal > 2",
    "question_en": "What Venue had 2 or more Goals in a Friendly Competition?",
    "question_th": "สถานที่ใดที่มี 2 ประตูขึ้นไปในการแข่งขันกระชับมิตร?",
    "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_en": "Which Site that has a Sex and other data of old male?",
    "question_th": "เว็บไซต์ใดที่มีเพศและข้อมูลอื่น ๆ ของชายชรา?",
    "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_en": "What is the age group for figure skating?",
    "question_th": "กลุ่มอายุสำหรับการเล่นสเก็ตลีลาคืออะไร?",
    "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_en": "what is the sport when the age group is 21 or younger and the competition name is world youth netball championships?",
    "question_th": "กีฬาประเภทใดคือกลุ่มอายุไม่เกิน 21 ปี และชื่อการแข่งขันคือ 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_en": "what is the competition name when the age group is 17 or younger for athletics?",
    "question_th": "ชื่อการแข่งขันเมื่อกลุ่มอายุ 17 ปีหรือน้อยกว่าสำหรับกรีฑาคืออะไร?",
    "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_en": "what is the competing entities when the age group is 18 or younger, held every is one year and the sport is table tennis?",
    "question_th": "หน่วยงานที่แข่งขันกันคือกลุ่มอายุ 18 ปีหรือน้อยกว่า จัดขึ้นทุก ๆ หนึ่งปี และกีฬาเทเบิลเทนนิส?",
    "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_en": "What result did Janis Ian have in the episode of top 3?",
    "question_th": "Janis Ian ได้ผลลัพธ์อะไรในตอนที่ 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_en": "What was the result of the singer with the top 8?",
    "question_th": "นักร้องเข้ารอบ 8 มีผลอะไรบ้าง?",
    "context": "CREATE TABLE table_name_39 (result VARCHAR, episode VARCHAR)"
  },
  {
    "answer": "SELECT song_choice FROM table_name_72 WHERE episode = \"top 8\"",
    "question_en": "What song was chosen for the episode with the top 8?",
    "question_th": "เพลงอะไรที่ถูกเลือกสำหรับตอนที่ติดอันดับ 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_en": "Which episode had Hoagy carmichael safe with an order of 5?",
    "question_th": "ตอนไหนที่ Hoagy carmichael ปลอดภัยด้วยคำสั่ง 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_en": "In what order were the Bee Gees as the artist when it was a result of bottom 3?",
    "question_th": "Bee Gees ในฐานะศิลปินอยู่ในลำดับใดเมื่อเป็นผลจาก 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_en": "Name the total number of drawn for danish and mathias",
    "question_th": "ตั้งชื่อจำนวนที่จับฉลากทั้งหมดสำหรับภาษาเดนมาร์กและมาเธียส",
    "context": "CREATE TABLE table_name_37 (draw VARCHAR, language VARCHAR, artist VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_63 WHERE artist = \"linn nygård\"",
    "question_en": "Name the result for linn nygård",
    "question_th": "ตั้งชื่อผลลัพธ์สำหรับ linn nygård",
    "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_en": "Name the song for draw less than 7 and artists of martin & johannes",
    "question_th": "ตั้งชื่อเพลง วาดน้อยกว่า 7 และศิลปินของ 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_en": "Name the NP/NNP for ACDP of 1 and others of 1 and DP/DA of 5",
    "question_th": "ตั้งชื่อ NP/NNP สำหรับ ACDP ของ 1 และอื่นๆของ 1 และ DP/DA ของ 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_en": "Which player won less than $335?",
    "question_th": "ผู้เล่นคนไหนชนะรางวัลน้อยกว่า $335?",
    "context": "CREATE TABLE table_name_43 (player VARCHAR, money___$__ INTEGER)"
  },
  {
    "answer": "SELECT place FROM table_name_43 WHERE country = \"australia\"",
    "question_en": "What was the place ranking for the player from Australia?",
    "question_th": "อันดับที่เท่าไหร่สำหรับผู้เล่นจากออสเตรเลีย?",
    "context": "CREATE TABLE table_name_43 (place VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT SUM(money___) AS $__ FROM table_name_74 WHERE player = \"ed oliver\"",
    "question_en": "How much money did the player Ed Oliver win?",
    "question_th": "ผู้เล่น Ed Oliver ชนะเงินเท่าไหร่?",
    "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_en": "What competition did Parramatta Eels join after 1982?",
    "question_th": "Parramatta Eels เข้าร่วมการแข่งขันอะไรหลังปี 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_en": "When did nswrfl has a score of 8-21?",
    "question_th": "nswrfl มีคะแนน 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_en": "How many years have less than 28,505 attendance?",
    "question_th": "กี่ปีมีผู้เข้าร่วมประชุมน้อยกว่า 28,505 คน?",
    "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_en": "What Date is listed for the Region of France and Catalog of 82876-70291-2?",
    "question_th": "วันที่ใดที่ระบุไว้สำหรับภูมิภาคของฝรั่งเศสและแคตตาล็อกของ 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_en": "Which Format is listed that has a Region of China?",
    "question_th": "รูปแบบใดที่อยู่ในรายการที่มีภูมิภาคของจีน",
    "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_en": "What's the Date for the Label of Bertelsmann Music group and has a Region of Europe?",
    "question_th": "วันที่สำหรับค่ายเพลงของกลุ่มเพลง Bertelsmann และมีภูมิภาคยุโรปคือเมื่อใด",
    "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_en": "How many people attended the Royals game with a score of 17 - 6?",
    "question_th": "มีคนเข้าร่วมเกม Royals ด้วยคะแนน 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_en": "What was the result of April 27's game?",
    "question_th": "ผลการแข่งขันวันที่ 27 เมษายน เป็นอย่างไร?",
    "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_en": "For the strategy game in 1992, how many players were allowed per console?",
    "question_th": "สำหรับเกมวางแผนในปี 1992 อนุญาตให้มีผู้เล่นได้กี่คนต่อคอนโซล",
    "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_en": "Which Genre was published by Atari and developed by NuFX in 1991?",
    "question_th": "ประเภทใดที่เผยแพร่โดย Atari และพัฒนาโดย NuFX ในปี 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_en": "Which year was the game developed by Music Comp in?",
    "question_th": "เกมที่พัฒนาโดย Music Comp ในปีใด",
    "context": "CREATE TABLE table_name_88 (year VARCHAR, developer VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_65 WHERE date = \"august 31\"",
    "question_en": "Name the record for august 31",
    "question_th": "ตั้งชื่อบันทึกสำหรับวันที่ 31 สิงหาคม",
    "context": "CREATE TABLE table_name_65 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_79 WHERE date = \"august 6\"",
    "question_en": "Name the opponent for august 6",
    "question_th": "ทายชื่อคู่ต่อสู้วันที่ 6 ส.ค",
    "context": "CREATE TABLE table_name_79 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_10 WHERE record = \"52-58\"",
    "question_en": "Name the opponent with record of 52-58",
    "question_th": "ตั้งชื่อคู่ต่อสู้ด้วยสถิติ 52-58",
    "context": "CREATE TABLE table_name_10 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_name_68 WHERE quantity_made = 5",
    "question_en": "What Class has a Quantity made of 5?",
    "question_th": "คลาสใดมีปริมาณที่ประกอบด้วย 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_en": "What is listed as the Date made with a Quantity made of 13?",
    "question_th": "วันที่สร้างด้วยปริมาณที่สร้างจาก 13 คืออะไร",
    "context": "CREATE TABLE table_name_5 (date_made VARCHAR, quantity_made VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_65 WHERE points = 4",
    "question_en": "What year shows 4 points?",
    "question_th": "ปีไหนมี 4 คะแนน?",
    "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_en": "What is the most points when the entrant was Jaguar racing earlier than 2001?",
    "question_th": "อะไรคือคะแนนมากที่สุดเมื่อผู้เข้าแข่งขันคือจากัวร์แข่งก่อนปี 2544?",
    "context": "CREATE TABLE table_name_25 (points INTEGER, entrant VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT entrant FROM table_name_64 WHERE year = 1999",
    "question_en": "What is the entrant in 1999?",
    "question_th": "ผู้เข้าร่วมในปี 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_en": "What is the most points when the chassis was Jaguar R3 later than 2002?",
    "question_th": "อะไรคือคะแนนมากที่สุดเมื่อแชสซีเป็น Jaguar R3 หลังปี 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_−6_ohm_inches_ = 1.12 AND relative_permeability > 1",
    "question_en": "What is the sum of skin depth with a resistivity of 1.12 and a relative permeability larger than 1?",
    "question_th": "ผลรวมของความลึกของผิวหนังที่มีความต้านทาน 1.12 และความสามารถในการซึมผ่านสัมพัทธ์ที่มากกว่า 1 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_30 (_inches VARCHAR, skin_depth INTEGER, resistivity__10_−6_ohm_inches_ VARCHAR, relative_permeability VARCHAR)"
  },
  {
    "answer": "SELECT weight FROM table_name_2 WHERE player = \"jonathan bender\"",
    "question_en": "How much does Jonathan Bender weigh?",
    "question_th": "โจนาธาน เบนเดอร์ มีน้ำหนักเท่าไหร่?",
    "context": "CREATE TABLE table_name_2 (weight VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(weight) FROM table_name_6 WHERE height = \"7-0\"",
    "question_en": "Of those with a height of 7-0, who weighs the most?",
    "question_th": "ส่วนสูง 7-0 ใครมีน้ำหนักมากที่สุด?",
    "context": "CREATE TABLE table_name_6 (weight INTEGER, height VARCHAR)"
  },
  {
    "answer": "SELECT SUM(weight) FROM table_name_52 WHERE player = \"deshawn stevenson\"",
    "question_en": "What does DeShawn Stevenson weigh?",
    "question_th": "DeShawn Stevenson มีน้ำหนักเท่าไหร่?",
    "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_en": "Name the highest roll for coed and authority of state integrated with sacred heart school",
    "question_th": "ตั้งชื่อม้วนสูงสุดสำหรับนิสิตและอำนาจของรัฐบูรณาการกับโรงเรียนศักดิ์สิทธิ์",
    "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_en": "What is the displacement of the engine that has a Redline rpm higher than 4750, from 2005?",
    "question_th": "เครื่องยนต์ที่มี Redline rpm สูงกว่า 4750 ตั้งแต่ปี 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_en": "From what year is the engine with engine code M57D30?",
    "question_th": "เครื่องยนต์รหัสเครื่องยนต์ 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_en": "What is the average Redline RPM of engines with engine code M57TUD30, made after 2002?",
    "question_th": "เครื่องยนต์ Redline RPM เฉลี่ยที่มีรหัสเครื่องยนต์ M57TUD30 ผลิตหลังปี 2545 เป็นเท่าใด",
    "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_en": "What was the result against Beijing Hyundai?",
    "question_th": "ผลการแข่งขันกับปักกิ่งฮุนไดเป็นอย่างไร?",
    "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_en": "Was the game with Kashima antlers at home or away?",
    "question_th": "เกมกับคาชิมะ แอนท์เลอร์เป็นเกมเหย้าหรือเยือน?",
    "context": "CREATE TABLE table_name_86 (h___a VARCHAR, opponents VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_87 WHERE opponents = \"royal antwerp\"",
    "question_en": "What date was the game against Royal Antwerp?",
    "question_th": "เกมกับรอยัล แอนต์เวิร์ปคือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_87 (date VARCHAR, opponents VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_19 WHERE time = \"3:38\"",
    "question_en": "What Records Time is 3:38?",
    "question_th": "เวลาบันทึกคือ 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_en": "What Country has a number smaller than 56 in 2005 and of 14 in 2006?",
    "question_th": "ประเทศใดมีจำนวนน้อยกว่า 56 ในปี 2548 และ 14 ในปี 2549",
    "context": "CREATE TABLE table_name_47 (Id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(2006) FROM table_name_31 WHERE 2004 < 3 AND 2005 > 1",
    "question_en": "What Country has a number smaller than 3 in 2004 and larger than 1 in 2005?",
    "question_th": "ประเทศใดมีจำนวนน้อยกว่า 3 ในปี 2547 และมากกว่า 1 ในปี 2548",
    "context": "CREATE TABLE table_name_31 (Id VARCHAR)"
  },
  {
    "answer": "SELECT street_address FROM table_name_2 WHERE floors = 48",
    "question_en": "The building with 48 floors has an address in Las Vegas of what?",
    "question_th": "ตึกสูง 48 ชั้น มีที่อยู่ในลาสเวกัสของอะไร?",
    "context": "CREATE TABLE table_name_2 (street_address VARCHAR, floors VARCHAR)"
  },
  {
    "answer": "SELECT street_address FROM table_name_73 WHERE name = \"the palazzo\"",
    "question_en": "The Palazzo's street address is listed as what?",
    "question_th": "ที่อยู่ของ The Palazzo ระบุไว้ว่าอะไร",
    "context": "CREATE TABLE table_name_73 (street_address VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT song_title FROM table_name_83 WHERE artist = \"winger\"",
    "question_en": "What's the title of the song by Winger?",
    "question_th": "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_en": "What shows for 3rd place when Runner-up shows as runner-up?",
    "question_th": "สิ่งที่แสดงให้เห็นอันดับที่ 3 เมื่อรองชนะเลิศแสดงเป็นรองชนะเลิศ?",
    "context": "CREATE TABLE table_name_36 (runner_up VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_6 WHERE runner_up = \"england (24 pts)\"",
    "question_en": "What year shows as Runner-up of england (24 pts)?",
    "question_th": "รองชนะเลิศแห่งอังกฤษ (24 แต้ม) ประจำปีใด?",
    "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_en": "What shows for 3rd place when the venue was Pardubice?",
    "question_th": "สิ่งที่แสดงให้เห็นอันดับที่ 3 เมื่อสถานที่คือ Pardubice?",
    "context": "CREATE TABLE table_name_81 (venue VARCHAR)"
  },
  {
    "answer": "SELECT 3 AS rd_place FROM table_name_60 WHERE year = \"1990\"",
    "question_en": "what shows for 3rd place in 1990?",
    "question_th": "อันดับที่ 3 ในปี 1990 แสดงให้เห็นอะไร?",
    "context": "CREATE TABLE table_name_60 (year VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_51 WHERE venue = \"landshut\"",
    "question_en": "What year was the venue Landshut?",
    "question_th": "สถานที่จัดงาน Landshut คือปีไหน?",
    "context": "CREATE TABLE table_name_51 (year VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_93 WHERE visitor = \"tampa bay\"",
    "question_en": "What is the record when Tampa Bay is the visitor?",
    "question_th": "บันทึกเมื่อแทมปาเบย์เป็นผู้มาเยือนคืออะไร?",
    "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_en": "What is the date when Joseph is the decision and San Jose is the home team?",
    "question_th": "วันที่โจเซฟเป็นฝ่ายตัดสินใจและซานโฮเซ่เป็นเจ้าบ้านคือวันไหน?",
    "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_en": "What is the date of the match when Detroit is the home team and Colorado is the visiting team?",
    "question_th": "แมตช์วันที่เท่าไหร่เมื่อดีทรอยต์เป็นเจ้าบ้านและโคโลราโดเป็นทีมเยือน?",
    "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_en": "How many people were in attendance in a week over 4 on December 6, 1981?",
    "question_th": "มีผู้เข้าร่วมประชุมกี่คนในหนึ่งสัปดาห์ในช่วง 4 โมงเช้าของวันที่ 6 ธันวาคม พ.ศ. 2524",
    "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_en": "Name the least game for october 10 at shibe park",
    "question_th": "ตั้งชื่อเกมน้อยที่สุดสำหรับวันที่ 10 ตุลาคมที่สวนสาธารณะชิเบะ",
    "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_en": "What is the lowest bronze total that has a rank of 1 and more than 34 total medals?",
    "question_th": "ผลรวมทองแดงต่ำสุดที่มีอันดับ 1 และมากกว่า 34 เหรียญคืออะไร",
    "context": "CREATE TABLE table_name_83 (bronze INTEGER, rank VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT MIN(bronze) FROM table_name_72 WHERE silver = \"13\"",
    "question_en": "What is the lowest bronze total that has a silver total of 13 medals?",
    "question_th": "ผลรวมทองแดงต่ำสุดที่มีเหรียญเงินทั้งหมด 13 เหรียญคือเท่าใด",
    "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_en": "With Appearances larger than 1, what is the Wins for the Reno Aces Team?",
    "question_th": "หากมีการปรากฏตัวมากกว่า 1 ครั้ง ชัยชนะของทีม Reno Aces คืออะไร?",
    "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_en": "For the Reno Aces, what are the Losses when they had 1 Appearances and a Winning Percentage of 1?",
    "question_th": "สำหรับ Reno Aces อะไรคือความสูญเสียเมื่อพวกเขาปรากฏตัว 1 ครั้งและมีเปอร์เซ็นต์การชนะ 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_en": "In 2009, what Appearances had a Winning Percentage of less than 0?",
    "question_th": "ในปี 2009 การปรากฏตัวใดที่มีเปอร์เซ็นต์การชนะน้อยกว่า 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_en": "What is the chassis for the year of 1969?",
    "question_th": "ตัวถังปี 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_en": "Which Occupation has a Rank of 5th, a Gender of M, with a Residence of orono?",
    "question_th": "อาชีพใดมีอันดับ 5 เพศ M และมีถิ่นที่อยู่ของโอโรโน่?",
    "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_en": "Which Gender has a Residence of Haliburton?",
    "question_th": "เพศใดมีที่อยู่อาศัยของ 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_en": "What's the lowest in Votes with a Rank of 5th, has an Occupation of retired, along with a Riding of Brant?",
    "question_th": "คะแนนต่ำสุดที่มีอันดับ 5 มีอาชีพเกษียณอายุพร้อมกับ 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–7)\"",
    "question_en": "What is the sum of the people in attendance when there was a Loss of clement (5–7)?",
    "question_th": "จำนวนคนที่เข้าร่วมเมื่อมีการสูญเสียความเมตตา (5–7) เป็นเท่าใด",
    "context": "CREATE TABLE table_name_83 (attendance INTEGER, loss VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_57 WHERE player = \"corey pavin\"",
    "question_en": "What place was Corey Pavin in?",
    "question_th": "Corey Pavin อยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_57 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_45 WHERE player = \"bob tway\"",
    "question_en": "What was the two-round score for Bob Tway?",
    "question_th": "คะแนนสองรอบของ 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_en": "How many people went to the game that lasted 2:37 after game 2?",
    "question_th": "มีกี่คนที่เข้าชมเกมที่กินเวลา 2:37 หลังจากเกมที่ 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_en": "What is the FCC info of the w214ba call sign with a frequency below 96.3?",
    "question_th": "ข้อมูล FCC ของสัญญาณเรียกขาน w214ba ที่มีความถี่ต่ำกว่า 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_en": "What is the total number of the ERP W with a call sign of w242ak?",
    "question_th": "จำนวน ERP W ที่มีสัญญาณเรียกขาน 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_en": "What is the FCC info of the station with a frequency above 95.3 and an ERP W smaller than 27 in Ocala, Florida?",
    "question_th": "ข้อมูล FCC ของสถานีที่มีความถี่สูงกว่า 95.3 และ ERP W น้อยกว่า 27 ในโอกาลา ฟลอริดา คืออะไร",
    "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–4, 6–2\" AND opponents = \"gisela dulko flavia pennetta\"",
    "question_en": "What date has an outcome of runner-up, and a Score of 6–4, 6–2, and a Opponents of gisela dulko flavia pennetta?",
    "question_th": "ผลการแข่งขันรองชนะเลิศคือวันที่ใด และสกอร์ 6–4, 6–2 และฝ่ายตรงข้ามของ 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_en": "In Round 10, what was the Overall for Ed Tomlin?",
    "question_th": "ในรอบที่ 10 ผลรวมของ 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_en": "What was the Position of Pick #23 in a Round less than 5 with 23 Overall?",
    "question_th": "ตำแหน่งที่เลือก #23 ในรอบที่น้อยกว่า 5 โดยมี 23 รวมคืออะไร",
    "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_en": "What Average Pick # has an Overall of 296?",
    "question_th": "ค่าเฉลี่ย Pick # ใดที่มีคะแนนรวม 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_en": "In Round 13, what was the Pick # of the Guard Position with an Overall greater than 23?",
    "question_th": "ในรอบที่ 13 ตำแหน่ง Pick # ของตำแหน่งการ์ดที่มีคะแนนรวมมากกว่า 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_en": "With an Overall larger than 107, in what Round was Jim Duncan picked?",
    "question_th": "ด้วยคะแนนรวมที่มากกว่า 107 Jim Duncan เลือกในรอบใด",
    "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_en": "What is the highest Pick # for the College of Maryland-Eastern Shore?",
    "question_th": "ตัวเลือกสูงสุด # สำหรับ 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_en": "What is Brown Motors best point total using the Offenhauser L4 engine since 1950?",
    "question_th": "อะไรคือจุดรวมที่ดีที่สุดของ Brown Motors ที่ใช้เครื่องยนต์ Offenhauser L4 ตั้งแต่ปี 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_en": "Name the length for stage of ss6",
    "question_th": "ตั้งชื่อความยาวสำหรับสเตจของ ss6",
    "context": "CREATE TABLE table_name_41 (length VARCHAR, stage VARCHAR)"
  },
  {
    "answer": "SELECT stage FROM table_name_51 WHERE rally_leader = \"m. grönholm\" AND winner = \"s.loeb\" AND time__eest_ = \"17:57\"",
    "question_en": "Name the stage for m. grönholm and winner of s.loeb with time of 17:57",
    "question_th": "ตั้งชื่อเวทีสำหรับม. grönholm และผู้ชนะ s.loeb ด้วยเวลา 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_en": "Name the winner for schimatari 1",
    "question_th": "ตั้งชื่อผู้ชนะสำหรับ schmatari 1",
    "context": "CREATE TABLE table_name_82 (winner VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT stage FROM table_name_85 WHERE time__eest_ = \"08:46\"",
    "question_en": "Name the stage for 08:46",
    "question_th": "ตั้งชื่อเวทีเวลา 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_en": "Name the winner with rally leader of c. atkinson and name of agia sotira 1",
    "question_th": "ตั้งชื่อผู้ชนะด้วยผู้นำแรลลี่ของค. แอตกินสัน และชื่อของ อาเกีย โซทิรา 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_en": "Name the winner for ss14",
    "question_th": "ตั้งชื่อผู้ชนะสำหรับ 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_en": "Who lost when the mariners played on September 12?",
    "question_th": "ใครแพ้เมื่อกะลาสีเรือเล่นวันที่ 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_en": "On September 7 what was the record?",
    "question_th": "วันที่ 7 กันยายน มีสถิติอะไรบ้าง?",
    "context": "CREATE TABLE table_name_63 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_48 WHERE date = \"september 29\"",
    "question_en": "Who plays on the date september 29?",
    "question_th": "ใครเล่นวันที่ 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_en": "Which city of license has a wriq Call sign?",
    "question_th": "ใบอนุญาตเมืองใดมีสัญญาณเรียกขาน wriq?",
    "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_en": "What is the total of Frequency MHz with a Class of b1?",
    "question_th": "ความถี่ MHz ทั้งหมดที่มีคลาส 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_en": "Which ERP W has a Class of A, and a Call sign of wffc?",
    "question_th": "ERP W ใดมีคลาส A และมีสัญญาณเรียก 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_en": "Which class City of license of ferrum, virginia?",
    "question_th": "เมืองที่ได้รับใบอนุญาต Ferrum รัฐเวอร์จิเนียระดับใด",
    "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_en": "Which call sign has a Class of A, and a Frequency MHz of 88.7?",
    "question_th": "สัญญาณเรียกขานใดมีคลาส A และความถี่ MHz เท่ากับ 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_en": "what heat number had a time of 58.44?",
    "question_th": "เลขความร้อนใดมีเวลา 58.44?",
    "context": "CREATE TABLE table_name_49 (heat VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT lane FROM table_name_86 WHERE nationality = \"new zealand\"",
    "question_en": "what lane was new zealand in?",
    "question_th": "นิวซีแลนด์อยู่ในเลนไหน?",
    "context": "CREATE TABLE table_name_86 (lane VARCHAR, nationality VARCHAR)"
  },
  {
    "answer": "SELECT stage FROM table_name_89 WHERE course = \"reggio calabria to catanzaro\"",
    "question_en": "What stage of the race was held on the course Reggio Calabria to Catanzaro?",
    "question_th": "การแข่งขันช่วงใดที่จัดขึ้นระหว่าง Reggio Calabria ถึง Catanzaro?",
    "context": "CREATE TABLE table_name_89 (stage VARCHAR, course VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_97 WHERE course = \"rome to teramo\"",
    "question_en": "Who was the winner for the Rome to Teramo course?",
    "question_th": "ใครคือผู้ชนะหลักสูตร Rome to Teramo",
    "context": "CREATE TABLE table_name_97 (winner VARCHAR, course VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_25 WHERE stage = \"11\"",
    "question_en": "Who was the winner of stage 11?",
    "question_th": "ใครคือผู้ชนะของด่านที่ 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_en": "What is the average Apps of indonesia with Goals smaller than 1000?",
    "question_th": "แอปเฉลี่ยของอินโดนีเซียที่มีเป้าหมายน้อยกว่า 1,000 คือเท่าใด",
    "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_en": "What division is Traktor Tashkent in 2005?",
    "question_th": "Traktor Tashkent อยู่ในแผนกใดในปี 2548",
    "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_en": "How many apps does Uzbekistan have in 2003?",
    "question_th": "อุซเบกิสถานมีแอปกี่แอปในปี 2546",
    "context": "CREATE TABLE table_name_41 (apps VARCHAR, country VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_5 WHERE record = \"74-77\"",
    "question_en": "What was the attendance at the game when the record was 74-77?",
    "question_th": "ผู้เข้าชมเกมเมื่อสถิติอยู่ที่ 74-77 คืออะไร?",
    "context": "CREATE TABLE table_name_5 (attendance VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_23 WHERE record = \"72-74\"",
    "question_en": "What was score of the game when the record was 72-74?",
    "question_th": "คะแนนของเกมเมื่อสถิติอยู่ที่ 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_en": "What were the air-dates of the episodes before episode 4 that had a BBC One weekly ranking of 6?",
    "question_th": "วันที่ออกอากาศของตอนก่อนตอนที่ 4 ที่มีอันดับ BBC One รายสัปดาห์อยู่ที่ 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_en": "What was the total viewership for BBC One weekly rankings larger than 7, before episode 4?",
    "question_th": "จำนวนผู้ชมทั้งหมดสำหรับการจัดอันดับ BBC One รายสัปดาห์มากกว่า 7 ก่อนตอนที่ 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_en": "Name the most rank with bronze of 0 and silver more than 1 and gold more than 0",
    "question_th": "ตั้งชื่ออันดับสูงสุดด้วยทองแดงเป็น 0 และเงินมากกว่า 1 และทองมากกว่า 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_en": "Name the average silver with total less than 1",
    "question_th": "ตั้งชื่อเงินเฉลี่ยที่มีคะแนนรวมน้อยกว่า 1",
    "context": "CREATE TABLE table_name_5 (silver INTEGER, total INTEGER)"
  },
  {
    "answer": "SELECT AVG(year) FROM table_name_47 WHERE result = \"nominated\"",
    "question_en": "Name the average year for result of nominated",
    "question_th": "ตั้งชื่อปีเฉลี่ยสำหรับผลการเสนอชื่อ",
    "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_en": "Name the nominated work for 1996 and festival of black maria film and video festival",
    "question_th": "ตั้งชื่อผลงานที่ได้รับการเสนอชื่อเข้าชิงประจำปี 1996 และเทศกาลภาพยนตร์และวิดีโอแบล็กมาเรีย",
    "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_en": "What was the date of the away game that they lost to Accrington?",
    "question_th": "เกมเยือนที่พวกเขาแพ้แอคคริงตันคือวันที่เท่าไหร่?",
    "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_en": "What was the date of the home game against Accrington?",
    "question_th": "เกมเหย้ากับแอคคริงตันวันที่เท่าไหร่?",
    "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_en": "What was the result of the home game against Derby County?",
    "question_th": "ผลการแข่งขันในบ้านกับดาร์บี้ เคาน์ตี้เป็นอย่างไร?",
    "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_en": "What is the Standard cost (USD) by hans Oischinger Creator ?",
    "question_th": "ราคามาตรฐาน (USD) โดย 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_en": "What is the Standard cost (USD) of Kwin team creator?",
    "question_th": "ต้นทุนมาตรฐาน (USD) ของผู้สร้างทีม Kwin คือเท่าไร?",
    "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_en": "Who is the Creator that has a version of 0.5.2 (part of compiz fusion release)?",
    "question_th": "ใครคือผู้สร้างที่มีเวอร์ชัน 0.5.2 (เป็นส่วนหนึ่งของการเปิดตัว compiz fusion)",
    "context": "CREATE TABLE table_name_45 (creator VARCHAR, latest_stable_version VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_47 WHERE creator = \"hyriand\"",
    "question_en": "Who is  a Creator of hyriand?",
    "question_th": "ใครคือผู้สร้างไฮริอันด์?",
    "context": "CREATE TABLE table_name_47 (name VARCHAR, creator VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(attendance) FROM table_name_68 WHERE game > 6",
    "question_en": "What is the number of people who attended the game later than game 6?",
    "question_th": "จำนวนคนที่เข้าร่วมเกมช้ากว่าเกมที่ 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_en": "Which title has a year later than 1986 with an album as the format?",
    "question_th": "ชื่อใดมีอัลบั้มเป็นรูปแบบหนึ่งหลังจากปี 1986?",
    "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_en": "Which is the average year with the date of February 24?",
    "question_th": "ปีเฉลี่ยตรงกับวันที่ 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_en": "Which award description has a year later than 1994 with a date of December 6?",
    "question_th": "คำอธิบายรางวัลใดมีหนึ่งปีหลังจากปี 1994 โดยมีวันที่ 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_en": "How many goals have a Date of december 4, 2010, and a Score of 1-0?",
    "question_th": "มีกี่ประตูที่มีวันที่ 4 ธันวาคม 2010 และสกอร์ 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_en": "Which venue has a Competition of 2008 myanmar grand royal challenge cup?",
    "question_th": "สถานที่ใดมีการแข่งขันชิงถ้วยเมียนมาร์แกรนด์รอยัลชาเลนจ์คัพ ประจำปี 2551?",
    "context": "CREATE TABLE table_name_91 (venue VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_62 WHERE goal = 4",
    "question_en": "Which venue has a Goal of 4?",
    "question_th": "สนามใดมีเป้าหมายที่ 4?",
    "context": "CREATE TABLE table_name_62 (venue VARCHAR, goal VARCHAR)"
  },
  {
    "answer": "SELECT MAX(goal) FROM table_name_14 WHERE score = \"3-0\"",
    "question_en": "What is the largest goal with a Score of 3-0?",
    "question_th": "ประตูที่ใหญ่ที่สุดด้วยสกอร์ 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_en": "Who did Bruno Soares and a partner face in the finals on a clay surface on August 1, 2010?",
    "question_th": "บรูโน ซวาเรสและคู่ต่อสู้เผชิญหน้าใครในรอบชิงชนะเลิศบนพื้นดินเหนียวเมื่อวันที่ 1 สิงหาคม 2553",
    "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–6, 6–2, [10–7]\"",
    "question_en": "What surface was played on that resulted in a score of 4–6, 6–2, [10–7]?",
    "question_th": "เล่นบนพื้นผิวใดที่ส่งผลให้ได้คะแนน 4–6, 6–2, [10–7]",
    "context": "CREATE TABLE table_name_67 (surface VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_55 WHERE date = \"may 25, 2009\"",
    "question_en": "What was the outcome on May 25, 2009?",
    "question_th": "ผลลัพธ์เมื่อวันที่ 25 พฤษภาคม 2552 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_55 (outcome VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_55 WHERE date = \"may 18, 2008\"",
    "question_en": "What was the outcome on May 18, 2008?",
    "question_th": "ผลลัพธ์เมื่อวันที่ 18 พฤษภาคม 2551 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_55 (outcome VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_53 WHERE player = \"heath slocum\"",
    "question_en": "what is the place for Heath Slocum?",
    "question_th": "ฮีธ สโลคัมอยู่ไหน?",
    "context": "CREATE TABLE table_name_53 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_9 WHERE date = \"august 29\"",
    "question_en": "What is the attendance for august 29?",
    "question_th": "วันที่ 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_en": "Which loss has an Opponent of @ angels, and a Date of august 1?",
    "question_th": "การสูญเสียครั้งใดมีคู่ต่อสู้ของ @นางฟ้า และวันที่ 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_en": "Which score has an Attendance of 31,178?",
    "question_th": "คะแนนใดมีผู้เข้าร่วม 31,178 คน?",
    "context": "CREATE TABLE table_name_99 (score VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_8 WHERE date = \"august 28\"",
    "question_en": "Which record has a Date of august 28?",
    "question_th": "บันทึกใดมีวันที่ 28 สิงหาคม?",
    "context": "CREATE TABLE table_name_8 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_55 WHERE attendance = \"23,952\"",
    "question_en": "Which loss has an Attendance of 23,952?",
    "question_th": "การสูญเสียใดมีผู้เข้าร่วม 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_en": "Which opponent has a Loss of corcoran (4-4)?",
    "question_th": "คู่ต่อสู้คนไหนที่เสียคอร์โคแรน (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_en": "What is the location of the gold medal match?",
    "question_th": "การแข่งขันชิงเหรียญทองจัดขึ้นที่ใด?",
    "context": "CREATE TABLE table_name_30 (location VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT lineup FROM table_name_29 WHERE result = \"1-0 aet w\"",
    "question_en": "What was the lineup that resulted in 1-0 AET W?",
    "question_th": "รายชื่อผู้เล่นตัวจริงที่ส่งผลให้ 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_en": "What was the result of match 25?",
    "question_th": "ผลการแข่งขันนัดที่ 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_en": "What is the result of the London 2012 Women's Olympic Football Tournament?",
    "question_th": "ผลการแข่งขันฟุตบอลโอลิมปิกหญิงลอนดอน 2012 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_13 (result VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_7 WHERE loss = \"wegman (2-6)\"",
    "question_en": "What was the score of the game that had a loss of Wegman (2-6)?",
    "question_th": "เกมที่แพ้ เว็กแมน (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_en": "What was the record at the game that had a loss of Blyleven (4-5)?",
    "question_th": "สถิติในเกมที่แพ้บลายเลเวน (4-5) คืออะไร?",
    "context": "CREATE TABLE table_name_55 (record VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_74 WHERE jul = \"88 °f / 31.1 °c\"",
    "question_en": "Name the city with july of 88 °f / 31.1 °c",
    "question_th": "ตั้งชื่อเมืองด้วยอุณหภูมิ 88 °f / 31.1 °c กรกฎาคม",
    "context": "CREATE TABLE table_name_74 (city VARCHAR, jul VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_63 WHERE feb = \"66 °f / 18.9 °c\"",
    "question_en": "Name the city with Feb of 66 °f / 18.9 °c",
    "question_th": "ตั้งชื่อเมืองด้วยอุณหภูมิ 66 °f / 18.9 °c",
    "context": "CREATE TABLE table_name_63 (city VARCHAR, feb VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_15 WHERE sep = \"83 °f / 28.3 °c\"",
    "question_en": "Name the city with september of 83 °f / 28.3 °c",
    "question_th": "ตั้งชื่อเมืองด้วยอุณหภูมิ 83 °f / 28.3 °c กันยายน",
    "context": "CREATE TABLE table_name_15 (city VARCHAR, sep VARCHAR)"
  },
  {
    "answer": "SELECT jun FROM table_name_28 WHERE jul = \"84 °f / 28.9 °c\"",
    "question_en": "Name the june when it has july of 84 °f / 28.9 °c",
    "question_th": "ตั้งชื่อเดือนมิถุนายนเมื่อมีอุณหภูมิกรกฎาคม 84 °f / 28.9 °c",
    "context": "CREATE TABLE table_name_28 (jun VARCHAR, jul VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_84 WHERE date = \"may 9\"",
    "question_en": "What Time has Date of May 9?",
    "question_th": "วันที่ 9 พฤษภาคม มีกี่โมง?",
    "context": "CREATE TABLE table_name_84 (time VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MIN(roll) FROM table_name_37 WHERE name = \"katikati college\"",
    "question_en": "What is the lowest roll number of Katikati college?",
    "question_th": "วิทยาลัย Katikati มีจำนวนม้วนต่ำสุดคือเท่าไร?",
    "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_en": "What is the highest roll number of the school in Te puna with a decile larger than 2?",
    "question_th": "หมายเลขม้วนสูงสุดของโรงเรียนใน Te puna ที่มีเดซิลมากกว่า 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_en": "What is the roll number of Te Puke Intermediate, which has a decile of 4?",
    "question_th": "เลขทอยของ Te Puke Intermediate ซึ่งมีเดซิลเป็น 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_en": "What is the highest roll number of the school with a state authority and a decile smaller than 8?",
    "question_th": "จำนวนรายชื่อสูงสุดของโรงเรียนที่มีอำนาจของรัฐและมีเดซิลน้อยกว่า 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_en": "What is the total value for Lost, when the value for Points is greater than 21, and when the value for Draw is 2?",
    "question_th": "มูลค่ารวมของการแพ้คือเท่าไร เมื่อมูลค่าของคะแนนมากกว่า 21 และเมื่อมูลค่าของเสมอคือ 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_en": "What is the total number of Goals Scored, when the Team is San Salvador F.C., and when the Points are less than 10?",
    "question_th": "จำนวนประตูทั้งหมดที่ทำได้ เมื่อทีมคือ San Salvador FC และเมื่อคะแนนน้อยกว่า 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_en": "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?",
    "question_th": "จำนวนเงินรวมของประตูที่เสียเมื่อคะแนนน้อยกว่า 26 และเมื่อมูลค่าการเล่นน้อยกว่า 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_en": "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?",
    "question_th": "ค่าเฉลี่ยของการสูญเสียคือเท่าใด เมื่อมูลค่าของประตูที่ทำได้มากกว่า 20 และเมื่อมูลค่าของการเล่นน้อยกว่า 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_en": "What is score of the game played in place t8 with Byron Nelson playing?",
    "question_th": "คะแนนของเกมที่เล่นในอันดับที่ 8 โดยมีไบรอน เนลสันเล่นเป็นเท่าใด",
    "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_en": "What is the sum of Money of the game that was played in the United States with Sam Snead as a player?",
    "question_th": "ผลรวมของเงินของเกมที่เล่นในสหรัฐอเมริกาโดยมี Sam Snead เป็นผู้เล่นคือเท่าไร?",
    "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_en": "What is the Money ($) of the game with a score of 69-74-70-73=286?",
    "question_th": "เงิน ($) ของเกมที่มีคะแนน 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_en": "Name the mountains classification which has a young rider classification of francesco casagrande and integiro classification of not awarded with stage of 2",
    "question_th": "ตั้งชื่อประเภทภูเขาซึ่งมีประเภทนักบิดรุ่นเยาว์เป็นประเภท Francesco Casagrande และจำนวนเต็มที่ไม่ได้รับรางวัลด้วยระยะที่ 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án svorada\" AND stage = \"13\"",
    "question_en": "Name the winner for adriano baffi and integiro classification of ján svorada for stage of 13",
    "question_th": "เสนอชื่อผู้ชนะสำหรับ adriano baffi และ integiro ของ ján svorada ในรอบ 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_en": "Name trofeo fast team with young rider classification of francesco casagrande and stage of 10",
    "question_th": "ตั้งชื่อทีม trofeo fast ด้วยประเภทนักบิดรุ่นเยาว์ของ Francesco Casagrande และสเตจที่ 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_en": "What is the sum of the total for a routine score of 26.6?",
    "question_th": "ผลรวมของคะแนนปกติ 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_en": "Name the january when april is courtney rachel culkin",
    "question_th": "ตั้งชื่อเดือนมกราคมว่า เมษายน คือ คอร์ทนีย์ ราเชล คัลกิน",
    "context": "CREATE TABLE table_name_53 (january VARCHAR, april VARCHAR)"
  },
  {
    "answer": "SELECT october FROM table_name_17 WHERE november = \"buffy tyler\"",
    "question_en": "Name the october when november is buffy tyler",
    "question_th": "ตั้งชื่อเดือนตุลาคม เมื่อเดือนพฤศจิกายน คือ บัฟฟี่ไทเลอร์",
    "context": "CREATE TABLE table_name_17 (october VARCHAR, november VARCHAR)"
  },
  {
    "answer": "SELECT october FROM table_name_47 WHERE september = \"dalene kurtis\"",
    "question_en": "Name the october when the september is dalene kurtis",
    "question_th": "ตั้งชื่อเดือนตุลาคม เมื่อเดือนกันยายนคือ dalene kurtis",
    "context": "CREATE TABLE table_name_47 (october VARCHAR, september VARCHAR)"
  },
  {
    "answer": "SELECT april FROM table_name_41 WHERE june = \"candice cassidy\"",
    "question_en": "Name the april for candice cassidy",
    "question_th": "ตั้งชื่อเดือนเมษายนของแคนดิซ แคสสิดี้",
    "context": "CREATE TABLE table_name_41 (april VARCHAR, june VARCHAR)"
  },
  {
    "answer": "SELECT october FROM table_name_71 WHERE july = \"kimberley stanfield\"",
    "question_en": "Name the october for july of kimberley stanfield",
    "question_th": "ตั้งชื่อเดือนตุลาคมเป็นเดือนกรกฎาคมของคิมเบอร์ลีย์ สแตนฟิลด์",
    "context": "CREATE TABLE table_name_71 (october VARCHAR, july VARCHAR)"
  },
  {
    "answer": "SELECT representative FROM table_name_25 WHERE state = \"kentucky\" AND years = \"1855–1859\"",
    "question_en": "Which Representative was from Kentucky during the years of 1855–1859?",
    "question_th": "ผู้แทนคนใดมาจากรัฐเคนตักกี้ระหว่างปี 1855–1859",
    "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–1970\"",
    "question_en": "What was the lifespan of the Representative from the Republican Party during the years of 1953–1970?",
    "question_th": "อายุขัยของผู้แทนจากพรรครีพับลิกันในช่วงปี พ.ศ. 2496-2513 คือเท่าใด",
    "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–1942\"",
    "question_en": "What years did the Representative from Iowa with a lifespan of 1880–1942 serve?",
    "question_th": "ผู้แทนจากไอโอวาซึ่งมีอายุระหว่างปี 1880–1942 ดำรงตำแหน่งกี่ปี",
    "context": "CREATE TABLE table_name_20 (years VARCHAR, state VARCHAR, lifespan VARCHAR)"
  },
  {
    "answer": "SELECT representative FROM table_name_71 WHERE lifespan = \"1795–1866\"",
    "question_en": "Which Representative had a Lifespan of 1795–1866?",
    "question_th": "ตัวแทนคนใดมีอายุขัยระหว่าง ค.ศ. 1795–1866",
    "context": "CREATE TABLE table_name_71 (representative VARCHAR, lifespan VARCHAR)"
  },
  {
    "answer": "SELECT MIN(week) FROM table_name_47 WHERE attendance = \"bye\"",
    "question_en": "When did the Chiefs have their first bye?",
    "question_th": "หัวหน้าได้ลาก่อนครั้งแรกเมื่อไหร่?",
    "context": "CREATE TABLE table_name_47 (week INTEGER, attendance VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_76 WHERE round = 2",
    "question_en": "What is the position played for the player drafted in round 2?",
    "question_th": "ตำแหน่งที่เล่นให้กับผู้เล่นที่ร่างในรอบ 2 คืออะไร?",
    "context": "CREATE TABLE table_name_76 (position VARCHAR, round VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_54 WHERE position = \"3b\"",
    "question_en": "what is the name of the player that played position 3b?",
    "question_th": "ผู้เล่นที่เล่นตำแหน่ง 3b ชื่ออะไร?",
    "context": "CREATE TABLE table_name_54 (name VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_90 WHERE name = \"ivey armstrong\"",
    "question_en": "what is the school for Ivey armstrong?",
    "question_th": "โรงเรียนของ 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_en": "what is the position for the player from university of alabama?",
    "question_th": "ตำแหน่งผู้เล่นจากมหาวิทยาลัยอลาบามาคืออะไร?",
    "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_en": "How many days with frost were there in the City/Town of Lugo have?",
    "question_th": "ในเมือง Lugo มีน้ำค้างแข็งกี่วัน?",
    "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_en": "What is the lowest number of sunlight hours, and number of days with frost, more than 30, for the city of Ourense?",
    "question_th": "คือจำนวนชั่วโมงแสงแดดต่ำสุด และจำนวนวันที่น้ำค้างแข็งมากกว่า 30 สำหรับเมืองอูเรนเซคือเท่าใด?",
    "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_en": "What is the largest amount of sunlight hours for the City of Pontevedra?",
    "question_th": "จำนวนชั่วโมงแสงแดดที่ใหญ่ที่สุดสำหรับเมืองปอนเตเบดราคือเท่าใด?",
    "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_en": "for the rank of 3 for the united states, what is the average lane?",
    "question_th": "อันดับ 3 ของอเมริกา เลนเฉลี่ยเท่าไหร่คะ?",
    "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_en": "for the rank more than 1 and nationality of netherlands, what is the lane?",
    "question_th": "สำหรับอันดับมากกว่า 1 และสัญชาติเนเธอร์แลนด์เลนอะไร?",
    "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_en": "for the time of 49.04 and lane less than 3, what is the nationality?",
    "question_th": "ในเวลา 49.04 และเลนน้อยกว่า 3 สัญชาติอะไร?",
    "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_en": "for the rank of 8 and lane less than 3 what is the name?",
    "question_th": "อันดับ 8 และเลนน้อยกว่า 3 ชื่ออะไรครับ?",
    "context": "CREATE TABLE table_name_99 (name VARCHAR, lane VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT played FROM table_name_1 WHERE lost = \"2\"",
    "question_en": "What play has a loss of 2?",
    "question_th": "การเล่นใดมีการสูญเสีย 2?",
    "context": "CREATE TABLE table_name_1 (played VARCHAR, lost VARCHAR)"
  },
  {
    "answer": "SELECT try_bonus FROM table_name_27 WHERE club = \"caerphilly rfc\"",
    "question_en": "What try bonus has a club of caerphilly rfc?",
    "question_th": "โบนัสลองอะไรมีสโมสร 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_en": "What club has a play of 22, and losing bonus of 7?",
    "question_th": "สโมสรใดมีการเล่น 22 และเสียโบนัส 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_en": "What point against has tries against of 77, and a lost of 16?",
    "question_th": "ประเด็นใดที่พยายามต่อต้าน 77 และแพ้ 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_en": "The nll participate in what sport?",
    "question_th": "nll จะเข้าร่วมในกีฬาอะไร?",
    "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_en": "When did the Club of western new york flash begin to play?",
    "question_th": "The Club of western new york flash เริ่มเล่นเมื่อใด?",
    "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_en": "Which club plays soccer in the nwsl?",
    "question_th": "สโมสรใดเล่นฟุตบอลใน 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_en": "When did the Rochester Rhinos begin to play?",
    "question_th": "Rochester Rhinos เริ่มเล่นเมื่อใด?",
    "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_en": "The sun of total that has a tour of 7 and a Giro smaller than 3 is 12.",
    "question_th": "ดวงอาทิตย์ที่มีทัวร์ 7 และ Giro ที่น้อยกว่า 3 คือ 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_en": "What genders did Lynmore Primary School take?",
    "question_th": "โรงเรียนประถมศึกษา Lynmore รับเพศใด",
    "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_en": "Which area served coed genders at Kaharoa school and had a Decile of 9?",
    "question_th": "พื้นที่ใดที่โรงเรียน Kaharoa สามารถรองรับเพศศึกษาและมี Decile เท่ากับ 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_en": "What was the gender for the integrated authority with a roll of 142?",
    "question_th": "เพศของผู้มีอำนาจบูรณาการกับจำนวน 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_en": "Who is the authority for the coed Eastbourne school?",
    "question_th": "ใครคือผู้มีอำนาจของโรงเรียนนิสิตอีสต์บอร์น?",
    "context": "CREATE TABLE table_name_46 (authority VARCHAR, area VARCHAR, gender VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(laps) FROM table_name_99 WHERE rank = \"3\"",
    "question_en": "What is the sum of all laps with rank 3?",
    "question_th": "ผลรวมของรอบทั้งหมดที่มีอันดับที่ 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_en": "What is the sum of all laps starting at 10 and finishing at 20?",
    "question_th": "ผลรวมของรอบทั้งหมดเริ่มต้นที่ 10 และสิ้นสุดที่ 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_en": "What's the rank when the start is 10 and the laps are fewer than 192?",
    "question_th": "เมื่อออกสตาร์ทเป็น 10 และรอบน้อยกว่า 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_en": "What's the rank when the laps are fewer than 137 and the qual is 116.470?",
    "question_th": "อันดับที่เท่าไหร่เมื่อรอบน้อยกว่า 137 และรอบคัดเลือกคือ 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_en": "What director worked with Al Mackay as writer?",
    "question_th": "ผู้กำกับคนไหนทำงานร่วมกับอัล แมคเคย์ ในฐานะนักเขียน?",
    "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_en": "Which producer worked with Robert Sproul-cran as writer?",
    "question_th": "โปรดิวเซอร์คนไหนทำงานร่วมกับ Robert Sproul-cran ในฐานะนักเขียน?",
    "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_en": "Which film did Al Mackay write?",
    "question_th": "อัล แมคเคย์เขียนภาพยนตร์เรื่องใด",
    "context": "CREATE TABLE table_name_8 (film VARCHAR, writer_s_ VARCHAR)"
  },
  {
    "answer": "SELECT director_s_ FROM table_name_22 WHERE film = \"the chapel\"",
    "question_en": "Who directed the film 'The Chapel'?",
    "question_th": "ใครเป็นผู้กำกับภาพยนตร์เรื่อง '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_en": "What award did Andrew Ryder win as producer?",
    "question_th": "Andrew Ryder ได้รับรางวัลอะไรในฐานะโปรดิวเซอร์?",
    "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_en": "What is the total national rank of Canada with lanes larger than 3?",
    "question_th": "อันดับประเทศทั้งหมดของแคนาดาที่มีเลนมากกว่า 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_en": "For the team with 39+1 points and fewer than 7 draws, how many wins were scored?",
    "question_th": "สำหรับทีมที่มี 39+1 แต้มและเสมอน้อยกว่า 7 แต้มจะชนะได้กี่แต้ม?",
    "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_en": "For a goal difference greater than 3 and fewer than 8 losses, what is the most draws scored?",
    "question_th": "สำหรับผลต่างประตูมากกว่า 3 และแพ้น้อยกว่า 8 ประตู เสมอกันมากที่สุดคือประตูใด?",
    "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_en": "Which club had fewer than 29 goals against and a difference smaller than 26?",
    "question_th": "สโมสรใดยิงได้น้อยกว่า 29 ประตูและผลต่างน้อยกว่า 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_en": "What was the score when the Rangers' attendance was 23,493?",
    "question_th": "เมื่อผู้เข้าร่วมของเรนเจอร์สอยู่ที่ 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_en": "Who was the opponent on the game on April 14, 2007?",
    "question_th": "คู่ต่อสู้ในเกมเมื่อวันที่ 14 เมษายน 2550 คือใคร?",
    "context": "CREATE TABLE table_name_60 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_15 WHERE date = \"april 8, 2007\"",
    "question_en": "How many people were in attendance on the game on April 8, 2007?",
    "question_th": "มีผู้เข้าร่วมเล่นเกมนี้กี่คนในวันที่ 8 เมษายน พ.ศ. 2550",
    "context": "CREATE TABLE table_name_15 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_18 WHERE attendance = \"16,404\"",
    "question_en": "What was the date of the game with 16,404 people?",
    "question_th": "แข่งขันวันที่เท่าไหร่กับ 16,404 คน?",
    "context": "CREATE TABLE table_name_18 (date VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT category FROM table_name_61 WHERE winner_nominee_s_ = \"dev patel\"",
    "question_en": "Which category was Dev Patel nominated for?",
    "question_th": "Dev Patel ได้รับการเสนอชื่อเข้าชิงในประเภทใด",
    "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_en": "Which film was Eddie Murphy nominated for?",
    "question_th": "ภาพยนตร์เรื่องใดที่ได้รับการเสนอชื่อเข้าชิง Eddie Murphy?",
    "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_en": "When the start is 22, what is the finish?",
    "question_th": "เมื่อออกสตาร์ต 22 จบอะไร?",
    "context": "CREATE TABLE table_name_71 (finish VARCHAR, start VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_39 WHERE laps = 54",
    "question_en": "What year resulted in 54 laps?",
    "question_th": "ปีไหนมีรอบ 54 รอบ?",
    "context": "CREATE TABLE table_name_39 (year VARCHAR, laps VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_89 WHERE score = \"2–4\"",
    "question_en": "On what date was the score 2–4?",
    "question_th": "คะแนน 2–4 ออกวันไหน?",
    "context": "CREATE TABLE table_name_89 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_93 WHERE score = \"4–3\"",
    "question_en": "Who was the home team when the score was 4–3?",
    "question_th": "เจ้าบ้านคือใครเมื่อสกอร์ 4–3?",
    "context": "CREATE TABLE table_name_93 (home VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_53 WHERE record = \"2–1\"",
    "question_en": "On what date was the record 2–1?",
    "question_th": "บันทึก 2–1 คือวันไหน?",
    "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_en": "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?",
    "question_th": "ใครคือนักแข่งที่ชนะกับทีมที่ชนะ Opel Team Holzer 1 และรอบต่ำกว่า 9 โดยมีรอบที่เร็วที่สุดคือ 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_en": "What was the final number for the winning manufacturer with Mercedes-benz, and a circuit of hockenheimring?",
    "question_th": "หมายเลขสุดท้ายของผู้ผลิตที่ชนะอย่าง Mercedes-benz และสนาม 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_en": "What was the date of Circuit Hockenheimring and the winning manufacturer being Mercedes-Benz?",
    "question_th": "วันที่ของ Circuit Hockenheimring และผู้ผลิตที่ชนะคือ 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_en": "Who was the winning driver of the Circuit of Lausitzring?",
    "question_th": "ใครคือผู้ชนะการแข่งขัน 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_en": "What is the city of txdot har?",
    "question_th": "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_en": "What was radio mexicana's website?",
    "question_th": "เว็บไซต์ของ radio mexicana คืออะไร",
    "context": "CREATE TABLE table_name_22 (website VARCHAR, brand VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_11 WHERE rank > 9",
    "question_en": "Which player ranks higher than 9?",
    "question_th": "ผู้เล่นคนไหนที่มีอันดับสูงกว่า 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_en": "What was the 2011 gross revenue for the venue that had a gross revenue of $156,315 in 1982?",
    "question_th": "รายได้รวมในปี 2011 ของสถานที่ซึ่งมีรายได้รวม 156,315 ดอลลาร์ในปี 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_en": "What was the 2011 gross revenue for the venue that had a gross revenue of $156,315 in 1982?",
    "question_th": "รายได้รวมในปี 2011 ของสถานที่ซึ่งมีรายได้รวม 156,315 ดอลลาร์ในปี 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_en": "How many tickets were sold / available for the venue that had a gross revenue of $333,100 in 2011?",
    "question_th": "มีการขายตั๋วจำนวนเท่าใดสำหรับสถานที่จัดงานซึ่งมีรายได้รวม 333,100 ดอลลาร์ในปี 2554",
    "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_en": "What is the venue in the city of Brussels, Belgium?",
    "question_th": "สถานที่จัดงานในเมืองบรัสเซลส์ ประเทศเบลเยียม คือที่ไหน?",
    "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_en": "What venue had gross revenues of $1,325,153 in 2011?",
    "question_th": "สถานที่ใดมีรายได้รวม 1,325,153 ดอลลาร์ในปี 2554",
    "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_en": "What is the sum of people in the total region when more than 5,060 were in Mt. Morgan?",
    "question_th": "จำนวนคนในภูมิภาคทั้งหมดเมื่อมากกว่า 5,060 คนอยู่ในภูเขามอร์แกนเป็นเท่าใด",
    "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_en": "What is the total swimsuit with Preliminaries smaller than 8.27?",
    "question_th": "ชุดว่ายน้ำรวมรอบ Preliminaries น้อยกว่า 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_en": "What's the average interview with Preliminaries larger than 8.27, an Evening Gown of 8.85, and an Average smaller than 8.842?",
    "question_th": "การสัมภาษณ์เบื้องต้นโดยเฉลี่ยมากกว่า 8.27 ชุดราตรี 8.85 และค่าเฉลี่ยน้อยกว่า 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_en": "How many swimsuits have an Evening Gown larger than 9, and an Interview larger than 8.405?",
    "question_th": "มีกี่ชุดว่ายน้ำที่มีชุดราตรีใหญ่กว่า 9 และบทสัมภาษณ์ใหญ่กว่า 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_en": "What is the 2000 population in OK with a 1990-2000 percent change of A078 +17.22%?",
    "question_th": "ประชากรในปี 2000 ในรัฐ OK เป็นเท่าใด โดยมีการเปลี่ยนแปลงเปอร์เซ็นต์ของ A078 +17.22% ในช่วงปี 1990-2000",
    "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_en": "How many matches did goalkeeper Wilfredo Caballero have an average less than 1.11?",
    "question_th": "ผู้รักษาประตู วิลเฟรโด้ กาบาเยโร่ มีค่าเฉลี่ยน้อยกว่า 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_en": "What is the average goals less than 41 that goalkeeper Claudio Bravo had?",
    "question_th": "ประตูเฉลี่ยที่น้อยกว่า 41 ที่ผู้รักษาประตู เคลาดิโอ บราโว ทำได้คือเท่าไหร่?",
    "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_en": "What is the highest average of goals less than 45 for team Real Sociedad?",
    "question_th": "อะไรคือค่าเฉลี่ยสูงสุดของประตูที่น้อยกว่า 45 สำหรับทีมเรอัล โซเซียดาด?",
    "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_en": "When did the person born on 3 May 1446 cease to be countess?",
    "question_th": "ผู้ที่เกิดวันที่ 3 พฤษภาคม พ.ศ. 1446 พ้นจากการเป็นเคาน์เตสเมื่อใด",
    "context": "CREATE TABLE table_name_19 (ceased_to_be_countess VARCHAR, birth VARCHAR)"
  },
  {
    "answer": "SELECT father FROM table_name_97 WHERE birth = \"1363\"",
    "question_en": "Who was the father of the person born in 1363?",
    "question_th": "พ่อของคนที่เกิดในปี 1363 คือใคร?",
    "context": "CREATE TABLE table_name_97 (father VARCHAR, birth VARCHAR)"
  },
  {
    "answer": "SELECT marriage FROM table_name_90 WHERE death = \"17 december 1471\"",
    "question_en": "When was the marriage of the person who died on 17 December 1471?",
    "question_th": "การอภิเษกสมรสของบุคคลที่เสียชีวิตในวันที่ 17 ธันวาคม ค.ศ. 1471 เกิดขึ้นเมื่อใด",
    "context": "CREATE TABLE table_name_90 (marriage VARCHAR, death VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_38 WHERE against = \"poland\"",
    "question_en": "On what surface did Poland play as the against team?",
    "question_th": "โปแลนด์เล่นเป็นทีมที่เจอกับพื้นผิวใด?",
    "context": "CREATE TABLE table_name_38 (surface VARCHAR, against VARCHAR)"
  },
  {
    "answer": "SELECT against FROM table_name_99 WHERE result = \"3–6, 2–6\"",
    "question_en": "Who was played against with a result of 3–6, 2–6?",
    "question_th": "เล่นกับใครด้วยผล 3–6, 2–6?",
    "context": "CREATE TABLE table_name_99 (against VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_name_92 WHERE venue = \"paris, france\"",
    "question_en": "Name the least year for paris, france venue",
    "question_th": "ตั้งชื่อปีน้อยที่สุดสำหรับสถานที่จัดงานในปารีส ฝรั่งเศส",
    "context": "CREATE TABLE table_name_92 (year INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT SUM(pick) FROM table_name_72 WHERE school = \"mckinney high school\"",
    "question_en": "What's the total number of picks for mckinney high school?",
    "question_th": "จำนวนตัวเลือกทั้งหมดสำหรับโรงเรียนมัธยม mckinney คือเท่าใด",
    "context": "CREATE TABLE table_name_72 (pick INTEGER, school VARCHAR)"
  },
  {
    "answer": "SELECT MAX(pick) FROM table_name_31 WHERE player = \"adam jones\"",
    "question_en": "What was the highest pick for the player Adam Jones?",
    "question_th": "ตัวเลือกสูงสุดสำหรับผู้เล่นอย่าง 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_en": "What's the total number of picks for the player Matt Murton?",
    "question_th": "จำนวนตัวเลือกทั้งหมดสำหรับผู้เล่น Matt Murton คือเท่าใด",
    "context": "CREATE TABLE table_name_25 (pick INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_86 WHERE pick = 32",
    "question_en": "What position was pick 32?",
    "question_th": "เลือก 32 ตำแหน่งอะไร?",
    "context": "CREATE TABLE table_name_86 (position VARCHAR, pick VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_49 WHERE circuit = \"barbagallo raceway\"",
    "question_en": "Who won at the Barbagallo Raceway circuit?",
    "question_th": "ใครชนะที่สนามแข่งรถ Barbagallo Raceway?",
    "context": "CREATE TABLE table_name_49 (winner VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT race_title FROM table_name_72 WHERE circuit = \"oran park raceway\"",
    "question_en": "What was the title of the race at Oran Park Raceway?",
    "question_th": "สนามแข่งรถ 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_en": "Who won at the Oran Park Raceway?",
    "question_th": "ใครชนะที่สนามแข่งรถโอรันปาร์ค?",
    "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_en": "When Jim Richards won at the Winton Motor Raceway circuit, what was the city and state listed?",
    "question_th": "เมื่อ Jim Richards ชนะที่สนามแข่งรถ Winton Motor Raceway เมืองและรัฐมีรายชื่ออะไรบ้าง",
    "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_en": "What is the capacity of the mine that is operated by Cyprus Amax minerals?",
    "question_th": "กำลังการผลิตของเหมืองที่ดำเนินการโดยแร่ Cyprus Amax คือเท่าไร?",
    "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_en": "What rank is the Silver Bell mine of Pima county?",
    "question_th": "เหมือง Silver Bell ในเขต Pima อยู่ในอันดับใด",
    "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_en": "What is the capacity of the Pinto Valley mine in Gila county?",
    "question_th": "เหมือง Pinto Valley ในเขต Gila มีกำลังการผลิตเท่าใด",
    "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_en": "What is the first leg with an agg of 10-2?",
    "question_th": "เลกแรกสกอร์รวม 10-2 คืออะไร?",
    "context": "CREATE TABLE table_name_31 (agg VARCHAR)"
  },
  {
    "answer": "SELECT agg FROM table_name_38 WHERE team_2 = \"vantour club mangoungou\"",
    "question_en": "What is the agg of team 2 for Vantour Club Mangoungou?",
    "question_th": "AGG ของทีม 2 ของ 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_en": "What is the first leg of team 1 for Hardware stars?",
    "question_th": "เลกแรกของทีม 1 สำหรับดาวเด่นด้านฮาร์ดแวร์คืออะไร?",
    "context": "CREATE TABLE table_name_19 (team_1 VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_58 WHERE opponent = \"siena\" AND ground = \"home\"",
    "question_en": "On what date was the game played at home against the opponent Siena?",
    "question_th": "เกมนี้เล่นในบ้านกับเซียนาคู่ต่อสู้วันไหน?",
    "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_en": "What time was the game played against Cagliari that lasted 16 rounds?",
    "question_th": "เกมนี้เล่นกับกายารี่ที่ผ่านไป 16 นัดกี่โมง?",
    "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_en": "Where was the game played that had a score of 3-2 and a time of 15:00 cet?",
    "question_th": "เกมที่เล่นที่ไหนมีสกอร์ 3-2 และเวลา 15.00 น. ?",
    "context": "CREATE TABLE table_name_7 (ground VARCHAR, score VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_49 WHERE date = \"april 18\"",
    "question_en": "What was the score on April 18?",
    "question_th": "คะแนนวันที่ 18 เมษายน เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_49 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_77 WHERE loss = \"nakamura (0-1)\"",
    "question_en": "What was the attendance when Nakamura (0-1) lost?",
    "question_th": "นากามูระ (0-1) เสียผู้ชมเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_77 (attendance VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_6 WHERE loss = \"lilly (0-1)\"",
    "question_en": "What was their record when they lost with Lilly (0-1) pitching?",
    "question_th": "อะไรคือสถิติของพวกเขาเมื่อพวกเขาแพ้ในการขว้างลิลลี่ (0-1)?",
    "context": "CREATE TABLE table_name_6 (record VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_51 WHERE attendance = \"26,827\"",
    "question_en": "What was their record when the attendance was 26,827?",
    "question_th": "พวกเขาบันทึกอะไรเมื่อมีผู้เข้าร่วม 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_en": "Who is the December playmate with a February playmate Anne-Marie Fox?",
    "question_th": "ใครคือเพื่อนเล่นในเดือนธันวาคมกับเพื่อนเล่นในเดือนกุมภาพันธ์ของ 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_en": "Who is the August playmate with the October playmate Shannon Long?",
    "question_th": "ใครคือเพื่อนเล่นเดือนสิงหาคมกับแชนนอน ลอง เพื่อนร่วมเล่นเดือนตุลาคม?",
    "context": "CREATE TABLE table_name_51 (august VARCHAR, october VARCHAR)"
  },
  {
    "answer": "SELECT december FROM table_name_72 WHERE november = \"marlene janssen\"",
    "question_en": "Who is the December playmate with a November playmate Marlene Janssen?",
    "question_th": "ใครคือเพื่อนเล่นในเดือนธันวาคมกับ 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_en": "Who is the November playmate with the July playmate Hope Marie Carlton?",
    "question_th": "ใครคือเพื่อนเล่นเดือนพฤศจิกายนกับโฮป มารี คาร์ลตัน เพื่อนร่วมเล่นเดือนกรกฎาคม",
    "context": "CREATE TABLE table_name_66 (november VARCHAR, july VARCHAR)"
  },
  {
    "answer": "SELECT march FROM table_name_53 WHERE august = \"gianna amore\"",
    "question_en": "Who is the March playmate with an August playmate Gianna Amore?",
    "question_th": "ใครคือเพื่อนเล่นในเดือนมีนาคมกับ Gianna Amore เพื่อนร่วมเล่นในเดือนสิงหาคม?",
    "context": "CREATE TABLE table_name_53 (march VARCHAR, august VARCHAR)"
  },
  {
    "answer": "SELECT january FROM table_name_66 WHERE november = \"donna edmondson\"",
    "question_en": "Who is the January playmate with the November playmate Donna Edmondson?",
    "question_th": "ใครคือเพื่อนเล่นในเดือนมกราคมกับ 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_en": "What is the home stadium of the Tennessee Titans?",
    "question_th": "สนามเหย้าของทีม 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_en": "When were the Houston Texans the visiting team later in the season?",
    "question_th": "เมื่อใดที่ Houston Texans เป็นทีมเยือนในฤดูกาลนี้?",
    "context": "CREATE TABLE table_name_29 (week INTEGER, visiting_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_18 WHERE final_score = \"24-34\"",
    "question_en": "The final score was 24-34 on what date?",
    "question_th": "ผลสกอร์สุดท้าย 24-34 วันไหน?",
    "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_en": "What is the total number of gold medals won by nations that won 2 silver medals but fewer than 7 in total?",
    "question_th": "จำนวนเหรียญทองทั้งหมดที่ได้รับโดยประเทศที่ได้ 2 เหรียญเงินแต่น้อยกว่า 7 เหรียญเป็นเท่าใด",
    "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_en": "What is the total number of medals won by nations that had 7 bronze medals and more than 18 gold medals?",
    "question_th": "จำนวนเหรียญทั้งหมดที่ได้รับโดยชาติที่ได้ 7 เหรียญทองแดง และมากกว่า 18 เหรียญทอง เป็นเท่าใด",
    "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_en": "What nation with Rank 1 won the fewest gold medals while winning more than 11 silver but fewer than 7 bronze medals?",
    "question_th": "ประเทศใดที่มีอันดับ 1 ได้รับรางวัลเหรียญทองน้อยที่สุดโดยได้รับรางวัลมากกว่า 11 เหรียญเงินแต่น้อยกว่า 7 เหรียญทองแดง?",
    "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_en": "What is the highest total medals won by a nation that had 7 bronze but more than 12 silver medals?",
    "question_th": "อะไรคือเหรียญรางวัลรวมสูงสุดที่ประเทศได้รับ 7 เหรียญทองแดงแต่มากกว่า 12 เหรียญเงิน?",
    "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_en": "What nation won the fewest gold medals while being in Rank 1, with a total of 37 medals and more than 7 bronze medals?",
    "question_th": "ประเทศใดได้เหรียญทองน้อยที่สุดในขณะที่อยู่ในอันดับ 1 โดยมีทั้งหมด 37 เหรียญ และเหรียญทองแดงมากกว่า 7 เหรียญ?",
    "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_en": "Name the score for yuliya ustyuzhanina",
    "question_th": "ตั้งชื่อคะแนนให้ 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_en": "Name the date for hard surface and tournament of fort walton beach",
    "question_th": "ตั้งชื่อวันที่สำหรับพื้นผิวแข็งและทัวร์นาเมนต์ของฟอร์ตวอลตันบีช",
    "context": "CREATE TABLE table_name_84 (date VARCHAR, surface VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_7 WHERE score = \"1–6, 6–4, 6–4\"",
    "question_en": "Name the opponent with score of 1–6, 6–4, 6–4",
    "question_th": "ตั้งชื่อคู่ต่อสู้ด้วยคะแนน 1–6, 6–4, 6–4",
    "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_en": "Name the score for 10 april 2007 and opponent of selima sfar",
    "question_th": "ทายผลคะแนนประจำวันที่ 10 เมษายน 2550 และคู่ต่อสู้ของ เซลิมา สฟาร์",
    "context": "CREATE TABLE table_name_43 (score VARCHAR, date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(runners) FROM table_name_34 WHERE placing > 8",
    "question_en": "How many runners had placings over 8?",
    "question_th": "มีนักวิ่งกี่คนที่ได้อันดับมากกว่า 8?",
    "context": "CREATE TABLE table_name_34 (runners VARCHAR, placing INTEGER)"
  },
  {
    "answer": "SELECT course FROM table_name_22 WHERE jockey = \"royston ffrench\"",
    "question_en": "Which course had a jockey of Royston FFrench?",
    "question_th": "สนามไหนมีจ๊อกกี้ของ Royston FFrench?",
    "context": "CREATE TABLE table_name_22 (course VARCHAR, jockey VARCHAR)"
  },
  {
    "answer": "SELECT AVG(prize__) AS £k_ FROM table_name_33 WHERE race = \"buttercross limited stakes\"",
    "question_en": "What is the average prize for the Buttercross Limited Stakes?",
    "question_th": "รางวัลเฉลี่ยสำหรับเดิมพัน Buttercross Limited คือเท่าไร?",
    "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_en": "How many total runners had jockeys of Olivier Peslier with placings under 2?",
    "question_th": "มีนักวิ่งทั้งหมดกี่คนที่มีจ๊อกกี้ของ Olivier Peslier โดยได้อันดับต่ำกว่า 2",
    "context": "CREATE TABLE table_name_81 (runners INTEGER, jockey VARCHAR, placing VARCHAR)"
  },
  {
    "answer": "SELECT games FROM table_name_71 WHERE marks = \"21\"",
    "question_en": "Name the games with marks of 21",
    "question_th": "ตั้งชื่อเกมด้วยคะแนน 21",
    "context": "CREATE TABLE table_name_71 (games VARCHAR, marks VARCHAR)"
  },
  {
    "answer": "SELECT kicks FROM table_name_40 WHERE goals = \"1\"",
    "question_en": "Name the kicks with goals of 1",
    "question_th": "ตั้งชื่อลูกเตะด้วยประตู 1",
    "context": "CREATE TABLE table_name_40 (kicks VARCHAR, goals VARCHAR)"
  },
  {
    "answer": "SELECT goals FROM table_name_65 WHERE games = \"6\"",
    "question_en": "Name the goals with games of 6",
    "question_th": "ตั้งชื่อเป้าหมายด้วยเกม 6",
    "context": "CREATE TABLE table_name_65 (goals VARCHAR, games VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_35 WHERE final_score = \"7-23\"",
    "question_en": "What game had the date was it with the final score of 7-23",
    "question_th": "เกมไหนมีวันที่คือสกอร์สุดท้าย 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_en": "What was the final score of the game at the astrodome?",
    "question_th": "คะแนนสุดท้ายของเกมที่แอสโตรโดมคือเท่าไร?",
    "context": "CREATE TABLE table_name_74 (final_score VARCHAR, stadium VARCHAR)"
  },
  {
    "answer": "SELECT final_score FROM table_name_99 WHERE date = \"december 30\"",
    "question_en": "What was the final score for the date of December 30?",
    "question_th": "คะแนนสุดท้ายของวันที่ 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_en": "What was the name of the Visiting team at Jack Murphy Stadium?",
    "question_th": "ทีมเยือนที่สนามแจ็ค เมอร์ฟีย์ชื่ออะไร?",
    "context": "CREATE TABLE table_name_90 (visiting_team VARCHAR, stadium VARCHAR)"
  },
  {
    "answer": "SELECT host_team FROM table_name_1 WHERE stadium = \"texas stadium\"",
    "question_en": "What was the name of the host team at Texas stadium?",
    "question_th": "ทีมเจ้าบ้านที่สนามเท็กซัสชื่ออะไร?",
    "context": "CREATE TABLE table_name_1 (host_team VARCHAR, stadium VARCHAR)"
  },
  {
    "answer": "SELECT host_team FROM table_name_39 WHERE date = \"december 16\"",
    "question_en": "What was the name of the host team dated December 16?",
    "question_th": "ทีมเจ้าบ้านวันที่ 16 ธันวาคม ชื่ออะไร?",
    "context": "CREATE TABLE table_name_39 (host_team VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_21 WHERE year > 1997",
    "question_en": "Are there any Teams after 1997?",
    "question_th": "มีทีมหลังปี 1997 หรือไม่?",
    "context": "CREATE TABLE table_name_21 (team VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT class FROM table_name_85 WHERE laps < 77",
    "question_en": "Which class has laps under 77?",
    "question_th": "คลาสไหนมีรอบต่ำกว่า 77?",
    "context": "CREATE TABLE table_name_85 (class VARCHAR, laps INTEGER)"
  },
  {
    "answer": "SELECT boarded FROM table_name_48 WHERE class = \"first\"",
    "question_en": "Who boarded first class?",
    "question_th": "ใครขึ้นชั้นเฟิร์สคลาสบ้าง?",
    "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_en": "What was the lowest attendance at a game when there were fewer than 151 away fans and an opponent of Bury?",
    "question_th": "อะไรคือจำนวนผู้ชมน้อยที่สุดในเกมเมื่อมีแฟนทีมเยือนน้อยกว่า 151 คนและคู่ต่อสู้ของบิวรี่?",
    "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_en": "What are the lowest number of points with a Year of 1978, and a Chassis of ensign n177?",
    "question_th": "จำนวนคะแนนต่ำสุดในปี 1978 และแชสซีของธง 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_en": "What are the highest number of points with an Entrant of warsteiner brewery?",
    "question_th": "จำนวนคะแนนสูงสุดของผู้เข้าร่วมโรงเบียร์ warsteiner คืออะไร?",
    "context": "CREATE TABLE table_name_8 (points INTEGER, entrant VARCHAR)"
  },
  {
    "answer": "SELECT d_43 FROM table_name_68 WHERE d_46 = \"r 6\"",
    "question_en": "What is the D 43 when D 46 is R 6?",
    "question_th": "D 43 คืออะไร เมื่อ D 46 เป็น 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_en": "What is the D44 when D43 is R 14?",
    "question_th": "D44 คืออะไรเมื่อ D43 เป็น 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 ↑\"",
    "question_en": "What is the D48 when D 43 is plurality ↑??",
    "question_th": "D48 คืออะไรเมื่อ D 43 เป็นส่วนใหญ่↑??",
    "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_en": "What is the D44 when D41 is D 16?",
    "question_th": "D44 คืออะไรเมื่อ D41 คือ 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_en": "What gender is the team that has a decile of 5 and in the Dalefield area?",
    "question_th": "ทีมที่มีเดซิล 5 เป็นเพศอะไร และอยู่ในเขตเดลฟิลด์?",
    "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_en": "What school in Dalefield has a roll less than 81?",
    "question_th": "โรงเรียนใดในเดลฟิลด์ที่มีคะแนนน้อยกว่า 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_en": "What is the lowest Height (m) on the island of Burray?",
    "question_th": "ความสูงต่ำสุด (ม.) บนเกาะเบอร์เรย์คือเท่าไร?",
    "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_en": "What group on the island of Faray has a Height (m) of 32 and a Population of 0?",
    "question_th": "กลุ่มใดบนเกาะ Faray มีความสูง (ม.) เท่ากับ 32 และมีประชากร 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_en": "What group has a Population of see hoy?",
    "question_th": "กลุ่มใดมีประชากรซีฮอย?",
    "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_en": "What group on the island of Muckle Green Holm has a population of 0?",
    "question_th": "กลุ่มใดบนเกาะ Muckle Green Holm ที่มีประชากร 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_en": "What is the area (ha) of the group on the island of Linga Holm that has a Height (m) larger than 7?",
    "question_th": "พื้นที่ (ฮ่า) ของกลุ่มบนเกาะ Linga Holm ที่มีความสูง (m) มากกว่า 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_en": "What is the Population of the group that has a Height (m) of 15 and an Area (ha) of 00017 17?",
    "question_th": "ประชากรของกลุ่มที่มีส่วนสูง (ม.) เท่ากับ 15 และพื้นที่ (ฮ่า) เท่ากับ 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_en": "What is the roll number of the school in Aramoho with a decile of 1?",
    "question_th": "เลขทะเบียนโรงเรียนใน อาราโมโฮ ที่มีเดซิล 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_en": "What is the area of Mangamahu primary school?",
    "question_th": "โรงเรียนประถมมังคุด มีพื้นที่อะไรบ้าง?",
    "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_en": "What is the area of the coed school with a state authority and a roll number of 122?",
    "question_th": "โรงเรียนสหศึกษาที่มีหน่วยงานของรัฐและมีจำนวนม้วน 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_en": "Which result is older than 2007?",
    "question_th": "ผลลัพธ์ใดเก่ากว่าปี 2550",
    "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_en": "What year was the Album/Song Speaking louder than before?",
    "question_th": "อัลบั้ม/เพลงพูดดังกว่าเดิมในปีไหน?",
    "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_en": "What is the most recent year with the Album/Song \"the best worst-case scenario\"?",
    "question_th": "ปีล่าสุดที่มีอัลบั้ม/เพลง \"สถานการณ์ที่เลวร้ายที่สุด\" คืออะไร?",
    "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_en": "What was the score of the final in which Melanie South played with partner Remi Tezuka on a clay surface?",
    "question_th": "รอบชิงชนะเลิศที่เมลานี เซาธ์เล่นกับคู่หูเรมิ เทซูกะบนพื้นดินเหนียวคือเท่าไร",
    "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_en": "What was the score of the final in which Melanie South played with partner Ksenia Lykina during the Kurume Cup tournament?",
    "question_th": "คะแนนของรอบชิงชนะเลิศที่ Melanie South เล่นกับ Ksenia Lykina คู่หูระหว่างการแข่งขัน Kurume Cup คืออะไร?",
    "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_en": "What was the score of the final in which Melanie South played with partner Katie O'Brien?",
    "question_th": "คะแนนของรอบชิงชนะเลิศที่เมลานี เซาธ์เล่นกับคู่หูเคธี่ โอไบรอันคือเท่าไร",
    "context": "CREATE TABLE table_name_27 (score VARCHAR, partner VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_82 WHERE tournament = \"edinburgh\"",
    "question_en": "What was the outcome of the tournament in Edinburgh?",
    "question_th": "ผลการแข่งขันที่เอดินบะระเป็นอย่างไรบ้าง?",
    "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_en": "What is the total decile with an Authority of state, and a Name of newfield park school?",
    "question_th": "decile ทั้งหมดกับหน่วยงานของรัฐและชื่อของโรงเรียน newfield park คืออะไร?",
    "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_en": "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?",
    "question_th": "อะไรคือเดไซล์ที่ใหญ่ที่สุดที่มีจำนวนม้วนมากกว่า 34 เพศของนิสิต และหน่วยงานของรัฐที่บูรณาการ และพื้นที่ของจอร์จทาวน์?",
    "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_en": "What is the smallest roll with an Authority of state, a Name of newfield park school, and a Decile smaller than 2?",
    "question_th": "ม้วนที่เล็กที่สุดที่มีหน่วยงานของรัฐ ชื่อโรงเรียน newfield park และ Decile ที่เล็กกว่า 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_en": "Which name has an Area of makarewa?",
    "question_th": "ชื่อใดมีเนื้อที่ของมะกาเรวะ?",
    "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_en": "Which name has a Gender of coed, and a Decile larger than 5, and a Roll of 131?",
    "question_th": "ชื่อใดที่มีเพศของนิสิต และเดไซล์ที่มากกว่า 5 และม้วนเป็น 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_en": "Add up all the Ends columns that have goals smaller than 0.",
    "question_th": "เพิ่มคอลัมน์ Ends ทั้งหมดที่มีเป้าหมายเล็กกว่า 0",
    "context": "CREATE TABLE table_name_65 (ends INTEGER, goals INTEGER)"
  },
  {
    "answer": "SELECT competition FROM table_name_43 WHERE year = 2003",
    "question_en": "What was the competition in 2003?",
    "question_th": "การแข่งขันในปี 2546 คืออะไร?",
    "context": "CREATE TABLE table_name_43 (competition VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_76 WHERE year = 2003",
    "question_en": "What was the competition in 2003?",
    "question_th": "การแข่งขันในปี 2546 คืออะไร?",
    "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_en": "Which position has 50+12 points and fewer than 10 draws?",
    "question_th": "ตำแหน่งไหนมี 50+12 แต้ม และเสมอน้อยกว่า 10?",
    "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_en": "How many positions have goals of fewer than 40 and more than 38 played?",
    "question_th": "มีกี่ตำแหน่งที่มีประตูน้อยกว่า 40 และมากกว่า 38 ที่เล่น?",
    "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_en": "How many losses are there in the CD Sabadell club with a goal difference less than -2, and more than 38 played?",
    "question_th": "สโมสรซีดี ซาบาเดลล์ เสียประตูได้เสียน้อยกว่า -2 เสียไปกี่ครั้งและเสียไปมากกว่า 38 นัด?",
    "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_en": "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?",
    "question_th": "ค่าเฉลี่ยจำนวนการเล่นโดยเสียประตูน้อยกว่า 43 เสมอมากกว่า 9 ตำแหน่งสูงกว่า 17 และ 30-8 แต้มคือเท่าไหร่?",
    "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_en": "What is the total number of losses of the player with an avg/g smaller than -3.3 and a gain larger than 126?",
    "question_th": "จำนวนการสูญเสียทั้งหมดของผู้เล่นที่มีค่าเฉลี่ย/g น้อยกว่า -3.3 และกำไรมากกว่า 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_en": "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?",
    "question_th": "จำนวนการสูญเสียทั้งหมด Jackson, T. ซึ่งมีกำไรมากกว่า 27 กำไรเฉลี่ย/กรัมน้อยกว่า 55.9 และระยะยาวน้อยกว่า 34 คือเท่าใด",
    "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_en": "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?",
    "question_th": "จำนวนรวมของ long Dubose, E. ที่มีการขาดทุน 0 ครั้ง, กำไรน้อยกว่า 17 และค่าเฉลี่ย/g ที่มากกว่า 0 เป็นเท่าใด",
    "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–16\"",
    "question_en": "What date was the record 20–16?",
    "question_th": "บันทึกวันที่ 20–16 คือวันที่ใด",
    "context": "CREATE TABLE table_name_38 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_43 WHERE opponent = \"brewers\" AND score = \"9–6\"",
    "question_en": "What was the attendance in the gave versus the Brewers with a score of 9–6?",
    "question_th": "การเข้าร่วมในการให้เทียบกับ Brewers ด้วยคะแนน 9–6 คืออะไร?",
    "context": "CREATE TABLE table_name_43 (attendance VARCHAR, opponent VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_90 WHERE date = \"may 26\"",
    "question_en": "What was the attendance on May 26?",
    "question_th": "ผู้เข้าร่วมในวันที่ 26 พฤษภาคมมีอะไรบ้าง?",
    "context": "CREATE TABLE table_name_90 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(inns) FROM table_name_56 WHERE matches = 127",
    "question_en": "Matches of 127 has how many total number of inns?",
    "question_th": "การแข่งขัน 127 รายการมีจำนวนโรงแรมทั้งหมดกี่แห่ง?",
    "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_en": "Name of clem hill, and Inns larger than 126 has the lowest runs?",
    "question_th": "ชื่อ Clem Hill และโรงเตี๊ยมที่มีขนาดใหญ่กว่า 126 มีทางวิ่งต่ำที่สุด?",
    "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_en": "Runs smaller than 6106, and Inns smaller than 146 has what total number of matches?",
    "question_th": "มีจำนวนการแข่งขันน้อยกว่า 6106 และโรงแรมขนาดเล็กกว่า 146 มีจำนวนการแข่งขันทั้งหมดเท่าใด",
    "context": "CREATE TABLE table_name_24 (matches VARCHAR, runs VARCHAR, inns VARCHAR)"
  },
  {
    "answer": "SELECT MAX(inns) FROM table_name_64 WHERE seasons = \"1987–2007\" AND runs > 11622",
    "question_en": "Seasons of 1987–2007, and a Runs larger than 11622 is the highest inns?",
    "question_th": "ฤดูกาลปี 1987–2007 และจำนวนรันที่มากกว่า 11,622 เป็นโรงแรมที่สูงที่สุด?",
    "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šek čermák michal mertiňák\"",
    "question_en": "Name the partner for opponents of františek čermák michal mertiňák",
    "question_th": "ตั้งชื่อคู่ต่อสู้ของ františek čermák michal mertiňák",
    "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_en": "Name the score in the final for january 12, 2013",
    "question_th": "ทายผลคะแนนรอบชิงชนะเลิศ วันที่ 12 มกราคม 2556",
    "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_en": "Name the opponents for outcome of runner-up and date of august 7, 2011",
    "question_th": "รายชื่อผู้แข่งขันสำหรับผลรองชนะเลิศ และวันที่ 7 สิงหาคม 2554",
    "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ürgen melzer philipp petzschner\"",
    "question_en": "Name the partner for surface of grass and opponents of jürgen melzer philipp petzschner",
    "question_th": "ตั้งชื่อคู่สำหรับพื้นผิวหญ้าและคู่ต่อสู้ของเจอร์เก้น เมลเซอร์ ฟิลิปป์ เพตซ์ชเนอร์",
    "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ël llodra nenad zimonjić\"",
    "question_en": "Name the score in the final for runner-up and hard surface with opponents being michaël llodra nenad zimonjić",
    "question_th": "ทายสกอร์รอบชิงชนะเลิศสำหรับรองชนะเลิศและพื้นผิวแข็งโดยคู่ต่อสู้คือ michaël llodra nenad zimonjić",
    "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_en": "What date was the ship 'Wyandotte' launched?",
    "question_th": "เรือ 'Wyandotte' เปิดตัววันไหน?",
    "context": "CREATE TABLE table_name_45 (launched VARCHAR, ship VARCHAR)"
  },
  {
    "answer": "SELECT renamed FROM table_name_58 WHERE ship = \"ajax\"",
    "question_en": "What was the original name of the ship 'Ajax'?",
    "question_th": "ชื่อเดิมของเรือ 'อาแจ็กซ์' คืออะไร?",
    "context": "CREATE TABLE table_name_58 (renamed VARCHAR, ship VARCHAR)"
  },
  {
    "answer": "SELECT commissioned_or_completed_ * _ FROM table_name_60 WHERE ship = \"manhattan\"",
    "question_en": "What date was the ship named Manhattan completed?",
    "question_th": "เรือชื่อแมนฮัตตันสร้างเสร็จเมื่อใด",
    "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_en": "What class had fewer than 336 laps in 2004?",
    "question_th": "คลาสใดมีรอบน้อยกว่า 336 รอบในปี 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_en": "What is the average attendance of game 1?",
    "question_th": "ผู้เข้าร่วมเฉลี่ยของเกมที่ 1 คือเท่าไร?",
    "context": "CREATE TABLE table_name_72 (attendance INTEGER, game INTEGER)"
  },
  {
    "answer": "SELECT MAX(attendance) FROM table_name_38 WHERE time = \"2:07\"",
    "question_en": "What is the attendance amount of the race with a time of 2:07?",
    "question_th": "ผู้เข้าร่วมการแข่งขันด้วยเวลา 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_en": "What club has less than 61 goals for and 55 goals against?",
    "question_th": "สโมสรใดยิงได้น้อยกว่า 61 ประตูและเสียประตูได้ 55 ประตู?",
    "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_en": "What is the amount of Draws for the game that had a score of 45+7 and a position below 3?",
    "question_th": "จำนวนการจับสลากสำหรับเกมที่มีคะแนน 45+7 และตำแหน่งต่ำกว่า 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_en": "What was the number of draws when the Elche CF club played 38 and had a goal difference of -16?",
    "question_th": "สโมสรเอลเช่ ซีเอฟ เล่นไป 38 ประตูและมีผลต่างประตูได้เสีย -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_en": "Who was the recipient for Outstanding actress television series prior to 2008?",
    "question_th": "ใครคือผู้รับรางวัลซีรีส์โทรทัศน์นักแสดงนำหญิงดีเด่นก่อนปี 2008",
    "context": "CREATE TABLE table_name_7 (recipient VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT opponent FROM table_name_67 WHERE record = \"71-78\"",
    "question_en": "Who was the opponent at the game when the record was 71-78?",
    "question_th": "คู่ต่อสู้ในเกมเมื่อสถิติอยู่ที่ 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_en": "What was the date of the game that had a loss of Risley (0-1)?",
    "question_th": "เกมที่แพ้ริสลีย์ (0-1) คือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_2 (date VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_86 WHERE record = \"70-74\"",
    "question_en": "What was the date of the game when the record was 70-74?",
    "question_th": "วันที่ของเกมคือเมื่อใดที่มีสถิติ 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_en": "What player was moving from manchester united?",
    "question_th": "นักเตะคนไหนที่ย้ายจากแมนเชสเตอร์ ยูไนเต็ด?",
    "context": "CREATE TABLE table_name_78 (name VARCHAR, moving_from VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_92 WHERE transfer_fee = \"£210k\"",
    "question_en": "What player costs £210k to transfer?",
    "question_th": "นักเตะคนไหนมีค่าใช้จ่าย 210,000 ปอนด์ในการย้ายทีม?",
    "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_en": "Who is moving during winter from wal?",
    "question_th": "ใครจะย้ายในช่วงฤดูหนาวจากวอล?",
    "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_en": "Which original artist has a Episode of workshop #1?",
    "question_th": "ศิลปินต้นฉบับคนไหนมีตอนของเวิร์คช็อป #1?",
    "context": "CREATE TABLE table_name_32 (original_artist VARCHAR, episode VARCHAR)"
  },
  {
    "answer": "SELECT theme FROM table_name_79 WHERE episode = \"top 6\"",
    "question_en": "Which theme has a Episode of top 6?",
    "question_th": "ธีมไหนมีตอนที่ 6 อันดับแรก?",
    "context": "CREATE TABLE table_name_79 (theme VARCHAR, episode VARCHAR)"
  },
  {
    "answer": "SELECT theme FROM table_name_5 WHERE order__number = \"9\"",
    "question_en": "Which Theme has a Order # of 9?",
    "question_th": "ธีมใดมีลำดับ # จาก 9",
    "context": "CREATE TABLE table_name_5 (theme VARCHAR, order__number VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_65 WHERE date = \"august 19\"",
    "question_en": "What was the score on August 19?",
    "question_th": "คะแนนวันที่ 19 ส.ค. เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_65 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_83 WHERE time = \"2:46\"",
    "question_en": "Where the time is 2:46, what is the record?",
    "question_th": "เวลาไหน 2:46 บันทึกอะไร?",
    "context": "CREATE TABLE table_name_83 (record VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_22 WHERE home = \"ny rangers\"",
    "question_en": "What is the Date, when the home team is the NY Rangers?",
    "question_th": "วันที่เท่าไหร่เมื่อเจ้าบ้านเป็น 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_en": "Power of 220kw (299hp) @ 4000 has what torque?",
    "question_th": "กำลัง 220kw (299hp) @ 4000 มีแรงบิดเท่าไหร่?",
    "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_en": "What is the Displacement that has Power of 220kw (299hp) @ 4000, and a year larger than 2002?",
    "question_th": "อะไรคือ Displacement ที่มีกำลัง 220kw (299hp) @ 4000 และหนึ่งปีที่ใหญ่กว่าปี 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³)\" AND power = \"220kw (299hp) @ 4000\"",
    "question_en": "Displacement of 4.4l (4423cc/269in³) and a Power of 220kw (299hp) @ 4000 belongs to what engine?",
    "question_th": "ปริมาตรกระบอกสูบ 4.4 ลิตร (4423cc/269in³) และกำลัง 220kw (299hp) @ 4000 เป็นของเครื่องยนต์อะไร",
    "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_en": "What week was the Original artist, the police ?",
    "question_th": "ศิลปินต้นฉบับคือตำรวจสัปดาห์ไหน ?",
    "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_en": "Which song garnered an advanced result during top 20 week ?",
    "question_th": "เพลงใดที่ได้คะแนนสูงสุดในช่วง 20 สัปดาห์แรก",
    "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_en": "Which Malaysia Satellite tournaments were played after 1998?",
    "question_th": "ทัวร์นาเมนต์ Malaysia Satellite รายการใดบ้างที่เล่นหลังปี 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_en": "Who was the runner-up for the Bulgaria Open, before 2007?",
    "question_th": "ใครคือรองแชมป์บัลแกเรียโอเพ่นก่อนปี 2550",
    "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_en": "What was the score of the player who played against Wong Choong Hann in the Dutch Open?",
    "question_th": "นักเตะที่เล่นกับหว่องชุงฮันในดัตช์โอเพ่นคือคะแนนเท่าไหร่?",
    "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_en": "What was the outcome of the match against Nguyen Tien Minh in the Bulgaria Open?",
    "question_th": "ผลการแข่งขันกับเหงียน เทียน มินห์ ในบัลแกเรีย โอเพ่น เป็นอย่างไร?",
    "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_en": "What was the final score when the New York Jets were the Visiting Team?",
    "question_th": "คะแนนสุดท้ายเมื่อ New York Jets เป็นทีมเยือนคืออะไร?",
    "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_en": "When were the Cleveland Browns the visiting team?",
    "question_th": "คลีฟแลนด์ บราวน์ส เป็นทีมเยือนเมื่อใด?",
    "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_en": "Where were the New York Jets visiting?",
    "question_th": "New York Jets ไปเที่ยวที่ไหน?",
    "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_en": "What was the final score in Robert F. Kennedy Memorial Stadium?",
    "question_th": "คะแนนสุดท้ายใน 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_en": "What was the visiting team on November 12?",
    "question_th": "ทีมเยือนวันที่ 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_en": "In what stadium were the New England Patriots the visiting team?",
    "question_th": "ทีมเยือนนิวอิงแลนด์ แพทริออตส์เป็นทีมเยือนที่สนามใด",
    "context": "CREATE TABLE table_name_13 (stadium VARCHAR, visiting_team VARCHAR)"
  },
  {
    "answer": "SELECT MIN(goals_conceded) FROM table_name_72 WHERE played < 18",
    "question_en": "If the games played are smaller than 18, what are the lowest goals conceded?",
    "question_th": "ถ้าเกมที่เล่นน้อยกว่า 18 ประตูเสียน้อยที่สุดคือเท่าไหร่?",
    "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_en": "If the place is smaller than 8 and they played more than 18, what is the total number of goals conceded?",
    "question_th": "หากสถานที่นั้นน้อยกว่า 8 และพวกเขาเล่นมากกว่า 18 ประตู จำนวนประตูทั้งหมดที่เสียไปคือเท่าใด",
    "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_en": "What is the sum of the place that has less than 2 losses?",
    "question_th": "ผลรวมของตำแหน่งที่เสียน้อยกว่า 2 ครั้งเป็นเท่าใด?",
    "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_en": "What is the smallest width for a frame size of 5k and a height shorter than 2700?",
    "question_th": "ความกว้างที่เล็กที่สุดสำหรับขนาดเฟรม 5k และความสูงสั้นกว่า 2,700 คือเท่าใด",
    "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_en": "What was the opponent on August 29?",
    "question_th": "คู่ต่อสู้ในวันที่ 29 ส.ค. คืออะไร?",
    "context": "CREATE TABLE table_name_57 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_61 WHERE attendance = \"16,468\"",
    "question_en": "Which team had the attendance of 16,468 and lost?",
    "question_th": "ทีมไหนมีผู้เข้าชม 16,468 คน และแพ้?",
    "context": "CREATE TABLE table_name_61 (loss VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_12 WHERE loss = \"trachsel (10-11)\"",
    "question_en": "What opponent has a loss of Trachsel (10-11)?",
    "question_th": "คู่ต่อสู้คนไหนที่แพ้ 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_en": "What was the attendance on August 8?",
    "question_th": "ผู้เข้าร่วมในวันที่ 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ōmyōji\"",
    "question_en": "Which rapid has a distance in km smaller than 14.2, and a Station of kōmyōji?",
    "question_th": "กระแสน้ำเชี่ยวใดมีระยะทางเป็นกิโลเมตรน้อยกว่า 14.2 และสถานีโคเมียวจิ",
    "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_en": "What is the sum of Other, when the Name is Simon Gillett Category:Articles with hCards, and when the Total is less than 34?",
    "question_th": "ผลรวมของ Other คืออะไร เมื่อชื่อ Simon Gillett หมวดหมู่:บทความที่มี hCards และเมื่อผลรวมน้อยกว่า 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_en": "What is the sum of the value \"League Cup\", when the Total is less than 1, and when the League is less than 0?",
    "question_th": "ผลรวมของมูลค่า \"ลีกคัพ\" เมื่อผลรวมน้อยกว่า 1 และเมื่อลีกน้อยกว่า 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_en": "What is the average Total, when the Name is Simon Gillett Category:Articles with hCards, and when the Other is greater than 3?",
    "question_th": "ผลรวมโดยเฉลี่ยคือเท่าใด เมื่อชื่อคือ Simon Gillett หมวดหมู่:บทความที่มี hCards และเมื่ออื่นๆ มีค่ามากกว่า 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_en": "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?",
    "question_th": "ผลรวมของ League Cup เมื่ออีกฝ่ายมีค่าน้อยกว่า 1 เมื่อชื่อ Gareth Farrelly หมวดหมู่:บทความที่มี hCards และเมื่อลีกมีค่ามากกว่า 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_en": "Name the champion for christopher miles runner-up",
    "question_th": "ตั้งชื่อแชมป์รองชนะเลิศ คริสโตเฟอร์ ไมล์",
    "context": "CREATE TABLE table_name_52 (champion VARCHAR, runner_up VARCHAR)"
  },
  {
    "answer": "SELECT champion FROM table_name_52 WHERE year = \"2000\"",
    "question_en": "Name the champion for 2000",
    "question_th": "ตั้งชื่อแชมป์ปี 2000",
    "context": "CREATE TABLE table_name_52 (champion VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_26 WHERE year = \"1998\"",
    "question_en": "Name the location for 1998",
    "question_th": "ตั้งชื่อสถานที่ปี 2541",
    "context": "CREATE TABLE table_name_26 (location VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT gold FROM table_name_42 WHERE total > 4",
    "question_en": "How many gold medals correspond with a total over 4?",
    "question_th": "มีเหรียญทองกี่เหรียญรวมกันมากกว่า 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_en": "What is the sum of gold medals with a total of 12 medals and less than 4 bronze medals?",
    "question_th": "ผลรวมเหรียญทองรวม 12 เหรียญ และน้อยกว่า 4 เหรียญทองแดง เป็นเท่าไหร่?",
    "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_en": "What is the smallest number of gold medals corresponding to the total rank with more than 4 bronze medals?",
    "question_th": "จำนวนเหรียญทองน้อยที่สุดเมื่อเทียบกับอันดับรวมที่มีมากกว่า 4 เหรียญทองแดงคือเท่าใด",
    "context": "CREATE TABLE table_name_7 (gold INTEGER, rank VARCHAR, bronze VARCHAR)"
  },
  {
    "answer": "SELECT MIN(bronze) FROM table_name_7 WHERE gold > 4",
    "question_en": "What is the smallest number of bronze medals with more than 4 gold medals?",
    "question_th": "เหรียญทองแดงที่มีมากกว่า 4 เหรียญทอง จำนวนน้อยที่สุดคือเท่าใด?",
    "context": "CREATE TABLE table_name_7 (bronze INTEGER, gold INTEGER)"
  },
  {
    "answer": "SELECT gender FROM table_name_3 WHERE riding = \"st. john's south—mount pearl\"",
    "question_en": "The candidate with Riding of st. john's south—mount pearl is what gender?",
    "question_th": "ผู้สมัครที่มีขี่เซนต์ ไข่มุกใต้ของจอห์นเป็นเพศอะไร?",
    "context": "CREATE TABLE table_name_3 (gender VARCHAR, riding VARCHAR)"
  },
  {
    "answer": "SELECT number FROM table_name_26 WHERE percentage___percentage_ = \"0.35\"",
    "question_en": "Which number has a 0.35 percentage?",
    "question_th": "จำนวนใดมีร้อยละ 0.35?",
    "context": "CREATE TABLE table_name_26 (number VARCHAR, percentage___percentage_ VARCHAR)"
  },
  {
    "answer": "SELECT percentage___percentage_ FROM table_name_90 WHERE language = \"russian\"",
    "question_en": "What is the percentage for Russian?",
    "question_th": "รัสเซียกี่เปอร์เซ็นต์คะ?",
    "context": "CREATE TABLE table_name_90 (percentage___percentage_ VARCHAR, language VARCHAR)"
  },
  {
    "answer": "SELECT males FROM table_name_3 WHERE language = \"russian\"",
    "question_en": "How many males speak Russian?",
    "question_th": "มีผู้ชายกี่คนที่พูดภาษารัสเซียได้?",
    "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_en": "Who is the writer for Red Rose Chain LTD?",
    "question_th": "ใครคือผู้เขียน 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_en": "Which producer did Daniel Cormack direct?",
    "question_th": "โปรดิวเซอร์คนไหนที่ Daniel Cormack กำกับ?",
    "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_en": "Who produced Laura Tunstall?",
    "question_th": "ใครเป็นคนผลิตลอร่า ทันสตอลล์",
    "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_en": "Who wrote the film Jehovah's Witness?",
    "question_th": "ใครเป็นผู้เขียนภาพยนตร์เรื่อง LORD'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_en": "When did Hein Vergeer have a distance of 5,000m?",
    "question_th": "Hein Vergeer มีระยะทาง 5,000 เมตรเมื่อใด",
    "context": "CREATE TABLE table_name_7 (date VARCHAR, distance VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_name_57 WHERE distance = \"men's speed skating\"",
    "question_en": "What were the notes during the distance of Men's Speed Skating?",
    "question_th": "อะไรคือโน้ตระหว่างระยะทางของ 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_en": "What date has the competition of uefa euro 2012 qualifying?",
    "question_th": "การแข่งขัน uefa euro 2012 รอบคัดเลือก วันที่เท่าไหร่?",
    "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_en": "What is the Grade that has Turf 1600m?",
    "question_th": "เกรดที่มีสนามหญ้า 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_en": "What is the Priority-entry-rights to Derby in rank 4?",
    "question_th": "สิทธิพิเศษในการเข้าแข่งขันดาร์บี้ในอันดับ 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_en": "How many Baia Mare have an Electrica North Transylvania under 14.476, Bistrita of 643, and Zalau under 737?",
    "question_th": "Baia Mare มี Electrica North Transylvania ต่ำกว่า 14.476, Bistrita ที่ 643 และ Zalau ที่ต่ำกว่า 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_en": "What is the smallest Satu Mare value associated with Baia Mare over 523?",
    "question_th": "ค่า Satu Mare ที่เล็กที่สุดที่เกี่ยวข้องกับ Baia Mare มากกว่า 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_en": "Which Word wrap support has a Format of mobipocket?",
    "question_th": "Word Wrap ตัวไหนรองรับรูปแบบ 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_en": "Which Interactivity support has a Format of fictionbook?",
    "question_th": "การสนับสนุนแบบโต้ตอบใดที่มีรูปแบบของนิยาย?",
    "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_en": "Which Filename extension has an Interactivity support of no, an Open standard of yes, and an Image support of no?",
    "question_th": "นามสกุลไฟล์ใดที่รองรับการโต้ตอบที่ใช่ มาตรฐานเปิดที่ใช่ และรูปภาพที่สนับสนุนที่ไม่",
    "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_en": "Which Filename extension has a Word wrap support of yes, an Open standard of no, and an Interactivity support of yes?",
    "question_th": "นามสกุลไฟล์ใดที่รองรับ Word wrap ที่ใช่ มาตรฐาน Open ที่ใช่ และการสนับสนุนแบบโต้ตอบที่ใช่",
    "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_en": "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?",
    "question_th": "รูปแบบใดที่รองรับการโต้ตอบที่ใช่ รองรับ Word Wrap ที่ใช่ รองรับรูปภาพที่ใช่ และมาตรฐานเปิดที่ใช่",
    "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_en": "Position of guard, and a Pick # larger than 9 is what highest round?",
    "question_th": "ตำแหน่งผู้พิทักษ์ และ Pick # ที่มากกว่า 9 คือรอบที่สูงที่สุดคืออะไร?",
    "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_en": "Pick # smaller than 11, and a Name of von hutchins belongs to what college?",
    "question_th": "เลือก # ที่น้อยกว่า 11 แล้วชื่อของฟอน ฮัทชินส์เป็นของวิทยาลัยใด",
    "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_en": "College of idaho, and an Overall smaller than 141 is what average round?",
    "question_th": "วิทยาลัยไอดาโฮ และคะแนนรวมน้อยกว่า 141 คือรอบเฉลี่ยเท่าใด",
    "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_en": "Name of David Kimball, and an Overall smaller than 229 is what highest round?",
    "question_th": "ชื่อของ David Kimball และคะแนนรวมที่น้อยกว่า 229 คือรอบสูงสุดคือข้อใด",
    "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_en": "How many points did the car with the brm v8 engine have?",
    "question_th": "รถเครื่อง brm v8 ได้กี่คะแนน?",
    "context": "CREATE TABLE table_name_70 (points VARCHAR, engine VARCHAR)"
  },
  {
    "answer": "SELECT chassis FROM table_name_59 WHERE year < 1966 AND points > 0",
    "question_en": "Which chassis has more than 0 points and was before 1966?",
    "question_th": "แชสซีตัวไหนมีมากกว่า 0 แต้มและเป็นก่อนปี 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_en": "How many points did he average in 1964?",
    "question_th": "เขาได้คะแนนเฉลี่ยในปี 2507 กี่คะแนน?",
    "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_en": "Before the year 1963 what was the fewest points the climax v8 engine had?",
    "question_th": "ก่อนปี 1963 เครื่องยนต์ไคลแม็กซ์ v8 มีคะแนนน้อยที่สุดคือเท่าใด",
    "context": "CREATE TABLE table_name_22 (points INTEGER, engine VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_name_85 WHERE points < 1",
    "question_en": "What was the earliest year that had less than 1 point?",
    "question_th": "ปีแรกสุดที่มีน้อยกว่า 1 คะแนนคือปีใด",
    "context": "CREATE TABLE table_name_85 (year INTEGER, points INTEGER)"
  },
  {
    "answer": "SELECT MAX(attendance) FROM table_name_33 WHERE date = \"october 27, 1963\"",
    "question_en": "How many were in attendance on October 27, 1963?",
    "question_th": "วันที่ 27 ตุลาคม 2506 มีผู้เข้าร่วมกี่คน",
    "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_en": "which # / county is correct for year less than 1981 and chalmers as location?",
    "question_th": "# / เคาน์ตีใดที่ถูกต้องสำหรับปีที่น้อยกว่า 1981 และ chalmers เป็นที่ตั้ง",
    "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_en": "what is the correct year for # / county of 09 cass?",
    "question_th": "ปีที่ถูกต้องของ # / เขต 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_en": "what's the mascot for 66 pulaski 2?",
    "question_th": "มาสคอตของ 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_en": "What is the total bronze with a Silver of 2, and a Gold smaller than 0?",
    "question_th": "ทองแดงทั้งหมดที่มีเงินเท่ากับ 2 และทองคำมีค่าน้อยกว่า 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_en": "What is the average total with a Rank larger than 11, a Nation of switzerland, and a Silver smaller than 0?",
    "question_th": "ผลรวมโดยเฉลี่ยที่มีอันดับมากกว่า 11 ประเทศสวิตเซอร์แลนด์ และเหรียญเงินน้อยกว่า 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_en": "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?",
    "question_th": "ทองคำรวมที่มีทองแดงน้อยกว่า 7, รวม 1, ประเทศเคปเวิร์ด และเงินน้อยกว่า 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_en": "How powerful is the model before 1999?",
    "question_th": "รุ่นก่อนปี 1999 แรงแค่ไหน?",
    "context": "CREATE TABLE table_name_58 (power VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT displacement FROM table_name_61 WHERE year = 1999 AND torque = \"280n·m (207lb·ft) @ 1750\"",
    "question_en": "What displacement is the model in 1999 with a Torque of 280n·m (207lb·ft) @ 1750?",
    "question_th": "แบบจำลองในปี 1999 มีอัตราการกระจัดเท่าใด โดยมีแรงบิด 280n·m (207lb·ft) @ 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_en": "When is the earliest year with a Power of 90kw (121hp) @ 4000?",
    "question_th": "ปีแรกสุดที่มีกำลัง 90kw (121hp) @ 4000 คือเมื่อไหร่?",
    "context": "CREATE TABLE table_name_56 (year INTEGER, power VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_name_55 WHERE torque = \"330n·m (243lb·ft) @ 2000-2500\"",
    "question_en": "When is the earliest year with a Torque of 330n·m (243lb·ft) @ 2000-2500?",
    "question_th": "ปีแรกสุดที่มีแรงบิด 330n·m (243lb·ft) @ 2000-2500 คือเมื่อใด",
    "context": "CREATE TABLE table_name_55 (year INTEGER, torque VARCHAR)"
  },
  {
    "answer": "SELECT MIN(attendance) FROM table_name_75 WHERE week = 14",
    "question_en": "What week 14 has the lowest attendance?",
    "question_th": "สัปดาห์ที่ 14 มีผู้เข้าร่วมน้อยที่สุดคือสัปดาห์ใด",
    "context": "CREATE TABLE table_name_75 (attendance INTEGER, week VARCHAR)"
  },
  {
    "answer": "SELECT MAX(attendance) FROM table_name_84 WHERE date = \"september 14, 1986\"",
    "question_en": "What is the highest attendance on September 14, 1986?",
    "question_th": "ผู้เข้าร่วมสูงสุดในวันที่ 14 กันยายน พ.ศ. 2529 คือเท่าใด",
    "context": "CREATE TABLE table_name_84 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_29 WHERE course = \"vicenza to marostica\"",
    "question_en": "What type is the race with the vicenza to marostica course?",
    "question_th": "การแข่งขันประเภทใดที่มีหลักสูตร vicenza ถึง marostica?",
    "context": "CREATE TABLE table_name_29 (type VARCHAR, course VARCHAR)"
  },
  {
    "answer": "SELECT 2005 FROM table_name_82 WHERE 2003 = \"a\" AND 2011 = \"3r\"",
    "question_en": "Name the 2005 for 2003 of a and 2011 of 3r",
    "question_th": "ตั้งชื่อปี 2005 สำหรับปี 2003 ของ a และ 2011 ของ 3r",
    "context": "CREATE TABLE table_name_82 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2006 FROM table_name_1 WHERE 2003 = \"a\" AND 2012 = \"a\"",
    "question_en": "Name the 2006 with 2003 of a and 2012 of a",
    "question_th": "ตั้งชื่อปี 2549 ด้วย 2546 ของ a และ 2012 ของ a",
    "context": "CREATE TABLE table_name_1 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2010 FROM table_name_9 WHERE 2006 = \"2r\"",
    "question_en": "Name the 2010 for 2006 of 2r",
    "question_th": "ตั้งชื่อปี 2010 สำหรับปี 2549 จาก 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_en": "Name the 2007 for 2005 of a and 003 of a with 2009 of sf",
    "question_th": "ตั้งชื่อ 2007 สำหรับ 2005 ของ a และ 003 ของ a กับ 2009 ของ sf",
    "context": "CREATE TABLE table_name_17 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_97 WHERE 2006 = \"2r\"",
    "question_en": "Name the 2011 with 2006 of 2r",
    "question_th": "ตั้งชื่อปี 2554 ด้วยปี 2549 เป็น 2r",
    "context": "CREATE TABLE table_name_97 (Id VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_11 WHERE date = \"7 october 2011\"",
    "question_en": "what was the venue on 7 october 2011?",
    "question_th": "วันที่ 7 ตุลาคม 2554 จัดขึ้นที่ใด?",
    "context": "CREATE TABLE table_name_11 (venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MAX(number) FROM table_name_74 WHERE opponent = \"julio césar vásquez\"",
    "question_en": "What is the highest number of the match with julio césar vásquez as the opponent?",
    "question_th": "แมตช์ที่มีฮูลิโอ ซีซาร์ วาสเกซเป็นคู่ต่อสู้มีจำนวนแต้มสูงสุดที่เท่าไร?",
    "context": "CREATE TABLE table_name_74 (number INTEGER, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_47 WHERE date = \"2006-04-08\"",
    "question_en": "Who was the opponent of the match on 2006-04-08?",
    "question_th": "คู่ต่อสู้ของการแข่งขันเมื่อวันที่ 2549-04-51 คือใคร?",
    "context": "CREATE TABLE table_name_47 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_42 WHERE opponent = \"zab judah\"",
    "question_en": "What is the result of the match with Zab Judah as the opponent?",
    "question_th": "ผลการแข่งขันที่มี แซบ ยูดาห์ เป็นคู่ต่อสู้เป็นอย่างไร?",
    "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_en": "What is the date of the match with a result of ud 12/12 between Pernell Whitaker and James Mcgirt?",
    "question_th": "ผลการแข่งขันวันที่ 12/12 ระหว่าง เพอร์เนลล์ วิเทเกอร์ กับ เจมส์ แม็คเกิร์ต ตรงกับวันที่เท่าไร?",
    "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_en": "What score was on 13 June 2004?",
    "question_th": "คะแนนเมื่อวันที่ 13 มิถุนายน พ.ศ. 2547 เป็นเท่าใด",
    "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_en": "Who is the rider with less than 50 final position-tours and less than 11 final position-vuelta before 2008?",
    "question_th": "ใครคือนักบิดที่มีตำแหน่งทัวร์รอบสุดท้ายน้อยกว่า 50 ตำแหน่งและวูเอลตาตำแหน่งสุดท้ายน้อยกว่า 11 ตำแหน่งก่อนปี 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_en": "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?",
    "question_th": "ปีแรกสุดของ Valdimir Poelnikov คือปีใดที่มีตำแหน่งสุดท้าย-ทัวร์มากกว่า 72 ตำแหน่งสุดท้าย-วูเอลตาน้อยกว่า 77 และตำแหน่งสุดท้าย-giro น้อยกว่า 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_en": "What is the number of final position-tours Mariano Piccoli, who has more than 20 final position-giros, before 1999 has?",
    "question_th": "จำนวนการทัวร์ตำแหน่งสุดท้าย Mariano Piccoli ซึ่งมีตำแหน่ง-giros สุดท้ายมากกว่า 20 ครั้งก่อนปี 1999 คือเท่าใด",
    "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_en": "What year was the rider with a final position-tour of 88 and less than 11 final position-giros?",
    "question_th": "ผู้ขับขี่ที่มีตำแหน่งสุดท้าย-ทัวร์ 88 และน้อยกว่า 11 ตำแหน่งสุดท้าย-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_en": "How much did they lose by on April 26?",
    "question_th": "ในวันที่ 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_en": "What was the highest attendance when the opponent was the Indians and the record was 13-4?",
    "question_th": "อะไรคือผู้เข้าร่วมสูงสุดเมื่อคู่ต่อสู้เป็นชาวอินเดียนแดงและมีสถิติ 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_en": "What day did the record reach 15-4?",
    "question_th": "สถิติถึง 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_en": "What is the number of ranking when the nationalits is England with more than 53 goals?",
    "question_th": "อันดับเมื่อทีมชาติอังกฤษยิงได้มากกว่า 53 ประตูคือเท่าไร?",
    "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_en": "What is the lowest ranking for Paul Mctiernan?",
    "question_th": "อันดับต่ำสุดของ 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_en": "What are the years when the ranking is less than 8 with less than 66 goals and name is Paul McGee?",
    "question_th": "ปีไหนที่อันดับต่ำกว่า 8 โดยยิงได้น้อยกว่า 66 ประตู และชื่อ พอล แม็กกี้ คือปีไหน?",
    "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_en": "Which entrant has a year after 1999?",
    "question_th": "ผู้เข้าแข่งขันคนใดมีหนึ่งปีหลังจากปี 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_en": "Round 1 of beat lee janzen 3&2, and a Year smaller than 1998 has what total number of place?",
    "question_th": "รอบที่ 1 ของบีท lee janzen 3&2 และปีที่น้อยกว่าปี 1998 ได้อันดับที่เท่าไหร่",
    "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_en": "Round 1 of 71 has how many highest money?",
    "question_th": "รอบ 1 จาก 71 มีเงินสูงสุดเท่าไร?",
    "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_en": "Round 1 of 66, and a Money ($) larger than 400,000 has what sum of year?",
    "question_th": "รอบที่ 1 จาก 66 และเงิน ($) มากกว่า 400,000 จะมีผลรวมของปีเท่าใด",
    "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_en": "Round 1 of 70, and a Money ($) larger than 500,000 has the highest year?",
    "question_th": "รอบที่ 1 จาก 70 และเงิน ($) มากกว่า 500,000 มีปีสูงสุดใช่หรือไม่",
    "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_en": "When was the latest debut in Europe for Henrik Larsson, with less than 108 games?",
    "question_th": "เฮนริก ลาร์สสัน เปิดตัวในยุโรปครั้งล่าสุดเมื่อใดโดยลงสนามน้อยกว่า 108 เกม?",
    "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_en": "What were the lowest goals with a debut before 1961 in Europe?",
    "question_th": "อะไรคือประตูที่ต่ำที่สุดที่ลงประเดิมสนามในยุโรปก่อนปี 1961?",
    "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_en": "What was Thierry Henry's average goal when his rank was higher than 7?",
    "question_th": "เป้าหมายเฉลี่ยของเธียร์รี อองรีเมื่ออันดับของเขาสูงกว่า 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_en": "Name the surface for february 25, 1996",
    "question_th": "ตั้งชื่อพื้นผิวสำหรับวันที่ 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_en": "Name the tournament for may 18, 1997",
    "question_th": "ตั้งชื่อการแข่งขันวันที่ 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_en": "Name the partner for may 2, 1993",
    "question_th": "ตั้งชื่อหุ้นส่วนสำหรับ 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_en": "Name the opponents for may 18, 1997",
    "question_th": "ทายชื่อคู่ต่อสู้วันที่ 18 พฤษภาคม 2540",
    "context": "CREATE TABLE table_name_80 (opponents VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MIN(erp_w) FROM table_name_21 WHERE call_sign = \"wpib\"",
    "question_en": "When the call sign is wpib, what is lowest ERP W?",
    "question_th": "เมื่อสัญญาณเรียกขานเป็น wpib 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_en": "Which class's call sign is wokg?",
    "question_th": "สัญญาณเรียกขานของคลาสไหนคือ 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_en": "The frequency 89.3 belongs to what class?",
    "question_th": "ความถี่ 89.3 อยู่ในคลาสใด?",
    "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_en": "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?",
    "question_th": "ด้วยการฆ่าตัวตายหมู่ประเภทหนึ่งในฝรั่งเศสและมีค่าประมาณต่ำมากกว่า 16 ผลรวมของตัวเลขประมาณการสูงที่ระบุเป็นตัวเลขอะไร",
    "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_en": "What is the sum of low estimate(s) that is listed for the date of 1978?",
    "question_th": "ผลรวมของการประมาณการต่ำที่ระบุไว้สำหรับวันที่ 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_en": "What is the highest total number of finals a club with more than 2 runners-up and fewer than 1 winner went to?",
    "question_th": "จำนวนรวมสูงสุดของรอบชิงชนะเลิศที่สโมสรที่มีรองชนะเลิศมากกว่า 2 คนและมีผู้ชนะน้อยกว่า 1 คนเข้าแข่งขันคือเท่าใด",
    "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_en": "How many receptions were smaller than 161 receiving yards but also had less than 14 rushing TDs?",
    "question_th": "มีกี่การรับที่เล็กกว่า 161 หลา แต่มี TD ที่วิ่งน้อยกว่า 14 ครั้งด้วย?",
    "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_en": "What was the greatest number of rushing yards for a runner who had 283 rushes and less than 10 rushing TDs?",
    "question_th": "จำนวนระยะการวิ่งที่ใหญ่ที่สุดสำหรับนักวิ่งที่มีการวิ่ง 283 ครั้งและ TD การวิ่งน้อยกว่า 10 ครั้งคือเท่าใด",
    "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_en": "What was the Agg., when Team 1 was VSADC?",
    "question_th": "Agg. คืออะไร เมื่อทีม 1 เป็น 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_en": "How many goals were scored by the team that played less than 38 games, and had points of 47+9?",
    "question_th": "ทีมที่เล่นน้อยกว่า 38 เกม และได้คะแนน 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_en": "What is the average wins of the team with more than 13 draws, a goal difference of -14, and losses less than 14?",
    "question_th": "ชัยชนะโดยเฉลี่ยของทีมที่เสมอมากกว่า 13 ครั้ง ผลต่างประตู -14 และแพ้น้อยกว่า 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_en": "In the club of Real Oviedo, what were the points of the competitor with a goal difference less than 38, and 12 wins?",
    "question_th": "สโมสรเรอัล โอเบียโด้ คู่แข่งที่เสียประตูได้เสียน้อยกว่า 38 แต้ม ชนะ 12 แต้มเป็นอย่างไรบ้าง?",
    "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_en": "Name the record for february 25",
    "question_th": "ตั้งชื่อบันทึกสำหรับวันที่ 25 กุมภาพันธ์",
    "context": "CREATE TABLE table_name_26 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_63 WHERE appearances = 116",
    "question_en": "What nationality has 116 appearances?",
    "question_th": "ชาติอะไรลงเล่น 116 นัด?",
    "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_en": "What is the captaincy for Defender that has less than 212 appearances and 12 goals?",
    "question_th": "ตำแหน่งกัปตันทีมของกองหลังที่ลงสนามน้อยกว่า 212 นัด และยิงได้ 12 ประตูคือข้อใด?",
    "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_en": "Attendance larger than 55,189 is which average game?",
    "question_th": "ผู้เข้าร่วมมากกว่า 55,189 คนคือเกมเฉลี่ยใด",
    "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_en": "Game larger than 4, and a Time of 2:26 resulted in what score?",
    "question_th": "เกมที่ใหญ่กว่า 4 และเวลา 2:26 ส่งผลให้ได้คะแนนเท่าใด",
    "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_en": "What record does the event of dream 9 with a round of 2 hold?",
    "question_th": "งานดรีม 9 รอบ 2 มีสถิติอะไรบ้าง?",
    "context": "CREATE TABLE table_name_19 (record VARCHAR, round VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_68 WHERE opponent = \"fredson paixão\"",
    "question_en": "What time was Opponent Fredson Paixão beaten in?",
    "question_th": "ฝ่ายตรงข้าม Fredson Paixão พ่ายแพ้ในเวลาใด?",
    "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_en": "What league is entering this round with 24 clubs remaining?",
    "question_th": "ลีกใดที่จะเข้าสู่รอบนี้โดยเหลืออีก 24 สโมสร?",
    "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_en": "How many new entries are there for a second phase that has 4 winners from previous rounds?",
    "question_th": "มีผู้เข้าใหม่กี่รายสำหรับระยะที่สองซึ่งมีผู้ชนะ 4 คนจากรอบที่แล้ว",
    "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_en": "What is the highest number of laps with a 21 start?",
    "question_th": "จำนวนรอบสูงสุดเมื่อออกสตาร์ทได้ 21 ครั้งคือเท่าใด?",
    "context": "CREATE TABLE table_name_42 (laps INTEGER, start VARCHAR)"
  },
  {
    "answer": "SELECT qual FROM table_name_5 WHERE rank = \"20\"",
    "question_en": "What is the qual for rank 20?",
    "question_th": "คุณสมบัติสำหรับอันดับ 20 คืออะไร?",
    "context": "CREATE TABLE table_name_5 (qual VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT AVG(laps) FROM table_name_15 WHERE year = \"1949\"",
    "question_en": "What is the average number of laps in 1949?",
    "question_th": "จำนวนรอบเฉลี่ยในปี 1949 คือเท่าไร?",
    "context": "CREATE TABLE table_name_15 (laps INTEGER, year VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(laps) FROM table_name_29 WHERE qual = \"128.260\"",
    "question_en": "What is the total number of laps with a 128.260 qual?",
    "question_th": "จำนวนรอบทั้งหมดที่มีคุณสมบัติ 128.260 เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_29 (laps VARCHAR, qual VARCHAR)"
  },
  {
    "answer": "SELECT start FROM table_name_36 WHERE laps < 200 AND rank = \"11\"",
    "question_en": "What is the start number for a rank 11 race with less than 200 laps?",
    "question_th": "หมายเลขออกตัวของการแข่งขันอันดับ 11 ที่มีรอบน้อยกว่า 200 รอบคือเท่าใด",
    "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_en": "Name the staes on the ballot for jack herer",
    "question_th": "ตั้งชื่อสเตสบนบัตรลงคะแนนให้แจ็ค เฮเรอร์",
    "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_en": "Name the loss with record of 45-59",
    "question_th": "ตั้งชื่อขาดทุนด้วยสถิติ 45-59",
    "context": "CREATE TABLE table_name_87 (loss VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_48 WHERE record = \"38-53\"",
    "question_en": "Name the loss with record of 38-53",
    "question_th": "ตั้งชื่อขาดทุนด้วยสถิติ 38-53",
    "context": "CREATE TABLE table_name_48 (loss VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_30 WHERE record = \"33-47\"",
    "question_en": "Name the score for record 33-47",
    "question_th": "ตั้งชื่อคะแนนบันทึก 33-47",
    "context": "CREATE TABLE table_name_30 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_61 WHERE record = \"34-51\"",
    "question_en": "Name the attendance with record of 34-51",
    "question_th": "ตั้งชื่อผู้เข้าร่วมประชุมด้วยสถิติ 34-51",
    "context": "CREATE TABLE table_name_61 (attendance VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_6 WHERE attendance = \"31,777\"",
    "question_en": "Name the opponent with attendance of 31,777",
    "question_th": "ระบุชื่อคู่ต่อสู้ด้วยจำนวนผู้เข้าร่วม 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_en": "How many points drew 2 with a losing bonus of 5?",
    "question_th": "แต้มได้ 2 แต้ม เสียโบนัส 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_en": "What is the number of tries for that has 30 tries against?",
    "question_th": "จำนวนครั้งของการพยายามที่มี 30 ครั้งคือเท่าไร?",
    "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_en": "How many points did the Bridgend Athletic RFC have?",
    "question_th": "บริดเจนด์ แอธเลติก อาร์เอฟซี มีกี่แต้ม?",
    "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_en": "How many points were scored against the club that drew 3 and scored 50 points?",
    "question_th": "สโมสรที่เสมอ 3 ได้ 50 แต้มได้กี่แต้ม?",
    "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_en": "What try bonus drew 0 and scored 427 points for?",
    "question_th": "ลองโบนัสดึง 0 และได้คะแนน 427 คะแนนเพื่ออะไร?",
    "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_en": "What was the qualifying time of Jim Rathmann in 1959?",
    "question_th": "Jim Rathmann ในปี 1959 รอบคัดเลือกคือเมื่อใด",
    "context": "CREATE TABLE table_name_97 (qual VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT MAX(year) FROM table_name_26 WHERE entrant = \"fisa\"",
    "question_en": "What is the most recent championship for FISA?",
    "question_th": "การแข่งขันชิงแชมป์ล่าสุดของ FISA คืออะไร?",
    "context": "CREATE TABLE table_name_26 (year INTEGER, entrant VARCHAR)"
  },
  {
    "answer": "SELECT AVG(points) FROM table_name_12 WHERE engine = \"ats v8\"",
    "question_en": "What is the average points earned for entrants with ATS V8 engines?",
    "question_th": "คะแนนเฉลี่ยที่ได้รับสำหรับผู้เข้าแข่งขันที่ใช้เครื่องยนต์ ATS V8 คือเท่าใด",
    "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_en": "What was the outcome from the 2009 match in the final against Chong Wei Feng?",
    "question_th": "ผลลัพธ์จากการแข่งขันปี 2009 ในรอบชิงชนะเลิศกับชอง เหว่ยเฟิงเป็นอย่างไร?",
    "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_en": "What was the try bonus for the team with 25 tries for?",
    "question_th": "โบนัสการลองสำหรับทีมที่มีการลอง 25 ครั้งคืออะไร?",
    "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_en": "How many points for did Bridgend Athletic RFC score?",
    "question_th": "บริดเจนด์ แอธเลติก อาร์เอฟซี ทำคะแนนได้กี่คะแนน?",
    "context": "CREATE TABLE table_name_86 (points_for VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT tries_for FROM table_name_49 WHERE try_bonus = \"5\"",
    "question_en": "How many tries for did the team with a try bonus of 5 score?",
    "question_th": "ทีมที่ได้ลองโบนัส 5 คะแนนมีความพยายามกี่ครั้ง",
    "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_en": "How many points against did the team that allowed 42 tries against allow?",
    "question_th": "ทีมที่อนุญาตให้ลอง 42 ครั้งกับทีมได้กี่คะแนน?",
    "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_en": "What is the average number of bronze medals associated with 0 silver, 1 total, and ranks over 16?",
    "question_th": "จำนวนเหรียญทองแดงโดยเฉลี่ยที่เกี่ยวข้องกับ 0 เหรียญเงิน รวม 1 เหรียญ และอันดับมากกว่า 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_en": "What is the highest total number of medals associated with 1 gold, more than 0 silver, and 2 bronze?",
    "question_th": "จำนวนเหรียญรวมสูงสุดที่เกี่ยวข้องกับ 1 เหรียญทอง มากกว่า 0 เหรียญเงิน และ 2 เหรียญทองแดง คือเท่าใด",
    "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_en": "What is the total number of Total values associated with mroe than 3 silvers, more than 2 bronze, and a rank of 3?",
    "question_th": "มูลค่ารวมทั้งหมดที่เกี่ยวข้องกับ mroe มากกว่า 3 เหรียญเงิน, มากกว่า 2 เหรียญทองแดง และอันดับ 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_en": "What is the smallest Silver value associated with teams having more than 0 gold, 0 bronze, and a rank of 14?",
    "question_th": "ค่าเงินที่น้อยที่สุดที่เกี่ยวข้องกับทีมที่มีมากกว่า 0 เหรียญทอง 0 เหรียญทองแดง และอันดับ 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_en": "What is the qual 1 for conquest racing?",
    "question_th": "คุณสมบัติ 1 สำหรับการแข่ง Conquest คืออะไร?",
    "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_en": "Graham rahal for n/h/l racing has a qual 2 greater than 59.384 and how much lowest best?",
    "question_th": "Graham rahal สำหรับการแข่งแบบ n/h/l มีค่า 2 มากกว่า 59.384 และต่ำสุดเท่าไหร่ดีที่สุด?",
    "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_en": "What is the total best for Bruno junqueira",
    "question_th": "อะไรคือสิ่งที่ดีที่สุดสำหรับบรูโน จุนเคียร่า",
    "context": "CREATE TABLE table_name_32 (best INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT mascot FROM table_name_25 WHERE location = \"brook\"",
    "question_en": "What is the Mascot of Brook?",
    "question_th": "มิ่งขวัญของบรูคคืออะไร?",
    "context": "CREATE TABLE table_name_25 (mascot VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year_left) FROM table_name_73 WHERE location = \"fowler\"",
    "question_en": "When was the first year when Fowler joined?",
    "question_th": "ฟาวเลอร์เข้าร่วมปีแรกคือเมื่อไหร่?",
    "context": "CREATE TABLE table_name_73 (year_left INTEGER, location VARCHAR)"
  },
  {
    "answer": "SELECT molecular_target FROM table_name_10 WHERE marine_organism_α = \"bacterium\"",
    "question_en": "What is the molecular target of bacterium?",
    "question_th": "เป้าหมายระดับโมเลกุลของแบคทีเรียคืออะไร?",
    "context": "CREATE TABLE table_name_10 (molecular_target VARCHAR, marine_organism_α VARCHAR)"
  },
  {
    "answer": "SELECT marine_organism_α FROM table_name_96 WHERE disease_area = \"cancer\" AND clinical_trials_β = \"4/4\"",
    "question_en": "What is the organism that has a disease area of cancer and has 4/4 clinical trial b?",
    "question_th": "สิ่งมีชีวิตที่มีพื้นที่เป็นโรคเป็นมะเร็งและมีการทดลองทางคลินิก 4/4 b คืออะไร?",
    "context": "CREATE TABLE table_name_96 (marine_organism_α VARCHAR, disease_area VARCHAR, clinical_trials_β VARCHAR)"
  },
  {
    "answer": "SELECT molecular_target FROM table_name_45 WHERE disease_area = \"antiviral\"",
    "question_en": "What is the molecular target of the organism that has a disease area of antiviral?",
    "question_th": "เป้าหมายระดับโมเลกุลของสิ่งมีชีวิตที่มีพื้นที่เป็นโรคไวรัสคืออะไร?",
    "context": "CREATE TABLE table_name_45 (molecular_target VARCHAR, disease_area VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_38 WHERE record = \"62–84\"",
    "question_en": "On what date was the record 62–84?",
    "question_th": "บันทึก 62–84 คือวันที่ใด",
    "context": "CREATE TABLE table_name_38 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_26 WHERE date = \"september 4\"",
    "question_en": "What was the record on September 4?",
    "question_th": "บันทึกเมื่อวันที่ 4 กันยายนคืออะไร?",
    "context": "CREATE TABLE table_name_26 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_79 WHERE date = \"september 26\"",
    "question_en": "What was the record on September 26?",
    "question_th": "บันทึกเมื่อวันที่ 26 กันยายนคืออะไร?",
    "context": "CREATE TABLE table_name_79 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_35 WHERE loss = \"leal (1–4)\"",
    "question_en": "Who was the opponent with a Loss of Leal (1–4)?",
    "question_th": "คู่ต่อสู้ที่เสียลีล (1–4) คือใคร?",
    "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_en": "In the Class T, what is the total of the 1958 UTA?",
    "question_th": "ในคลาส T ยอดรวมของ UTA ปี 1958 เป็นเท่าใด",
    "context": "CREATE TABLE t (Id VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_93 WHERE date = \"13 october 1993\"",
    "question_en": "What was the result of the match played on 13 October 1993?",
    "question_th": "ผลการแข่งขันวันที่ 13 ตุลาคม พ.ศ. 2536 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_93 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_67 WHERE goal = 21",
    "question_en": "When did the team score 21 goals?",
    "question_th": "เมื่อทีมทำประตูได้ 21 ประตู?",
    "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_en": "What was the score of the match played on 14 October 1998, resulting in more than 10 goals?",
    "question_th": "แมตช์ที่เล่นเมื่อวันที่ 14 ตุลาคม 2541 ทำได้มากกว่า 10 ประตูเท่าไหร่?",
    "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_en": "What is the total number of years that Scuderia Guastalla was an entrant?",
    "question_th": "จำนวนปีที่สคูเดอเรีย กัวสตายาเข้าร่วมคือกี่ปี?",
    "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_en": "What was the earliest year that Scuderia Ferrari was an entrant with 0 points?",
    "question_th": "ปีแรกสุดที่สคูเดอเรีย เฟอร์รารีได้ 0 คะแนนคือปีใด",
    "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_en": "What is the total number of years that has a chassis of Ferrari 625 and 2 points?",
    "question_th": "จำนวนปีที่มีแชสซีของ Ferrari 625 และ 2 คะแนนคือเท่าไร?",
    "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_en": "Which 2006 Cobra Starship song has work done of guest vocals?",
    "question_th": "เพลงใดของ Cobra Starship ในปี 2006 ที่มีการร้องรับเชิญ?",
    "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_en": "What is the decile sum with a roll smaller than 25, and franz josef area?",
    "question_th": "ผลรวมเดซิลที่มีม้วนเล็กกว่า 25 และพื้นที่ฟรานซ์โจเซฟเป็นเท่าใด",
    "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_en": "What is the area with decile of 8, and a 25 roll?",
    "question_th": "พื้นที่ที่มีเดซิลเป็น 8 และ 25 ม้วนเป็นเท่าใด?",
    "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_en": "What is the overall pick average with the pick # lower than 15?",
    "question_th": "ค่าเฉลี่ยการเลือกโดยรวมโดยตัวเลือก # ต่ำกว่า 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_en": "What is the lowest rank for Spain when more than 10 medals were won, 3 of which were bronze?",
    "question_th": "อันดับที่ต่ำที่สุดสำหรับสเปนเมื่อได้รับมากกว่า 10 เหรียญ โดย 3 เหรียญเป็นเหรียญทองแดง",
    "context": "CREATE TABLE table_name_3 (rank INTEGER, bronze VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT qual FROM table_name_38 WHERE year = \"1954\"",
    "question_en": "What is the Qual listed on the Year of 1954?",
    "question_th": "Qual ระบุไว้ในปี 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_en": "Which Year has a Qual of 144.683 and Lap larger than 27?",
    "question_th": "ปีใดมีคุณสมบัติเป็น 144.683 และรอบมากกว่า 27",
    "context": "CREATE TABLE table_name_66 (year VARCHAR, laps VARCHAR, qual VARCHAR)"
  },
  {
    "answer": "SELECT qual FROM table_name_41 WHERE rank = \"27\"",
    "question_en": "What's the Qual listed with a Rank of 27?",
    "question_th": "Qual ใดที่อยู่ในอันดับ 27?",
    "context": "CREATE TABLE table_name_41 (qual VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_45 WHERE year = 1978",
    "question_en": "Which Team has a Year of 1978?",
    "question_th": "ทีมใดมีปี 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_en": "Which Engine has a Team of Chesterfield Racing and include a Chassis of March 761?",
    "question_th": "เครื่องยนต์ใดมีทีม Chesterfield Racing และมีแชสซีของ 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_en": "What is the smallest year with a Mintage smaller than 10,000?",
    "question_th": "ปีที่เล็กที่สุดที่มีจำนวนเหรียญกษาปณ์น้อยกว่า 10,000 คือปีใด?",
    "context": "CREATE TABLE table_name_37 (year INTEGER, mintage INTEGER)"
  },
  {
    "answer": "SELECT loss FROM table_name_30 WHERE date = \"april 26\"",
    "question_en": "Which loss has a Date of april 26?",
    "question_th": "แพ้ตัวไหนมีวันที่ 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–1)\"",
    "question_en": "Which date has an Opponent of angels, and a Loss of sanderson (0–1)?",
    "question_th": "วันใดที่มีฝ่ายตรงข้ามของเทวดาและการสูญเสียแซนเดอร์สัน (0–1)",
    "context": "CREATE TABLE table_name_95 (date VARCHAR, opponent VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT MAX(attendance) FROM table_name_35 WHERE loss = \"darling (0–1)\"",
    "question_en": "What is the largest Attendance with a Loss of darling (0–1)?",
    "question_th": "ผู้เข้าร่วมที่ใหญ่ที่สุดและสูญเสียที่รัก (0–1) คืออะไร?",
    "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_en": "What is the maximum capacity of the San Agustin Gym?",
    "question_th": "ความจุสูงสุดของโรงยิม San Agustin คือเท่าใด",
    "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_en": "Where is the Cagayan de Oro city located?",
    "question_th": "เมือง Cagayan de Oro อยู่ที่ไหน?",
    "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_en": "Where is the Holy Cross of Davao College campus located?",
    "question_th": "วิทยาเขต Holy Cross of Davao College อยู่ที่ไหน",
    "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_en": "Which campus has the San Agustin gym?",
    "question_th": "วิทยาเขตใดมีห้องออกกำลังกาย San Agustin",
    "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_en": "What year did the San Agustin gym open?",
    "question_th": "โรงยิม San Agustin เปิดในปีใด",
    "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_en": "Which player has a total bigger than 285 and a to par of +14?",
    "question_th": "ผู้เล่นคนไหนที่มีแต้มรวมมากกว่า 285 และพาร์ถึง +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_en": "What is the highest total with a t12 finish?",
    "question_th": "ผลรวมสูงสุดเมื่อจบ t12 คืออะไร?",
    "context": "CREATE TABLE table_name_61 (total INTEGER, finish VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_98 WHERE finish = \"t4\"",
    "question_en": "Which country has a finish of t4?",
    "question_th": "ประเทศไหนจบ T4 บ้าง?",
    "context": "CREATE TABLE table_name_98 (country VARCHAR, finish VARCHAR)"
  },
  {
    "answer": "SELECT year_s__won FROM table_name_71 WHERE total < 281",
    "question_en": "What year won has a total less than 281?",
    "question_th": "ปีไหนชนะมียอดรวมน้อยกว่า 281?",
    "context": "CREATE TABLE table_name_71 (year_s__won VARCHAR, total INTEGER)"
  },
  {
    "answer": "SELECT chassis FROM table_name_96 WHERE rank = \"24th\"",
    "question_en": "Which chassis is ranked 24th?",
    "question_th": "แชสซีใดอยู่ในอันดับที่ 24?",
    "context": "CREATE TABLE table_name_96 (chassis VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT chassis FROM table_name_94 WHERE year = 1993",
    "question_en": "Which chassis was made in 1993?",
    "question_th": "แชสซีใดที่ผลิตในปี 1993?",
    "context": "CREATE TABLE table_name_94 (chassis VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_53 WHERE year < 1994",
    "question_en": "Which team is from earlier than 1994?",
    "question_th": "ทีมใดที่มาจากก่อนปี 1994?",
    "context": "CREATE TABLE table_name_53 (team VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT rank FROM table_name_4 WHERE year > 1994",
    "question_en": "What rank is later than 1994?",
    "question_th": "อันดับไหนหลังจากปี 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_en": "What year did the King team have fewer than 10 points?",
    "question_th": "ทีมคิงได้ไม่ถึง 10 แต้มปีไหน?",
    "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_en": "What are the average points for the Project Indy team that has the Ford xb engine?",
    "question_th": "คะแนนเฉลี่ยของทีม Project Indy ที่มีเครื่องยนต์ Ford xb คือเท่าไร?",
    "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_en": "Name the became consort for marriage of 4 april 1721",
    "question_th": "ตั้งชื่อพระมเหสีที่จะอภิเษกสมรสเมื่อวันที่ 4 เมษายน พ.ศ. 2264",
    "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_en": "Name the birth of the person that has a spouse of frederick iv and became consort of 4 april 1721",
    "question_th": "ระบุชื่อการเกิดของบุคคลที่มีคู่สมรสของเฟรดเดอริกที่ 4 และได้เป็นมเหสีเมื่อวันที่ 4 เมษายน พ.ศ. 2264",
    "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_en": "Name the became consort for ceased to be consort of 4 april 1588 husband's death",
    "question_th": "ตั้งชื่อผู้เป็นมเหสีที่พ้นจากการเป็นมเหสีเมื่อวันที่ 4 เมษายน พ.ศ. 2131 สามีถึงแก่กรรม",
    "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_en": "Name the marriage of the person who is married for christian viii",
    "question_th": "ตั้งชื่อการแต่งงานของผู้ที่แต่งงานกับคริสเตียนที่ 8",
    "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_en": "Who has 48 points in the class of 500 cc?",
    "question_th": "คลาส 500 ซีซี ใครมี 48 แต้มบ้าง?",
    "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_en": "How many wins does Benelli have before 1962?",
    "question_th": "Benelli ชนะได้กี่ครั้งก่อนปี 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_en": "Which is Natural Wood Keyboard with a Model of clps306?",
    "question_th": "Natural Wood Keyboard รุ่น 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_en": "Which Graded Hammer (Non GH3)  has a Model of cvp501?",
    "question_th": "ค้อนทุบเกรด (Non GH3) รุ่นไหนมีรุ่น 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_en": "Which Natural Wood Keyboard has a CLP380 ?",
    "question_th": "คีย์บอร์ดไม้ธรรมชาติรุ่นใดที่มี 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_en": "Which Graded Hammer Three (GH3) shows Model of clp320?",
    "question_th": "Graded Hammer Three (GH3) ใดที่แสดงโมเดลของ 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_en": "What was the date for the French Grand Prix?",
    "question_th": "French Grand Prix คือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_19 (date VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_31 WHERE circuit = \"miramas\"",
    "question_en": "What was the name for the race in the Miramas circuit?",
    "question_th": "การแข่งขันในสนาม Miramas มีชื่อว่าอะไร?",
    "context": "CREATE TABLE table_name_31 (name VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT circuit FROM table_name_44 WHERE winning_constructor = \"delage\"",
    "question_en": "Which circuit was Delage the winning constructor for?",
    "question_th": "Delage เป็นคอนสตรัคเตอร์ที่ชนะในวงจรใด",
    "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_en": "What is the name for the Monza circuit race were Bugatti was the winning constructor?",
    "question_th": "การแข่งขัน Monza Circuit ชื่ออะไร โดยที่ Bugatti เป็นผู้ก่อสร้างที่ชนะ",
    "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_en": "Which report shows that Frank Lockhart was a winning driver?",
    "question_th": "รายงานใดแสดงให้เห็นว่า Frank Lockhart เป็นนักขับที่ชนะ",
    "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_en": "What Ranking has Gold less than 20 and the Event 1976 Toronto?",
    "question_th": "อันดับใดที่มีทองคำน้อยกว่า 20 และเหตุการณ์ 1976 โตรอนโต?",
    "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_en": "What Gold has a Silver greater than 30 and a Total less than 107?",
    "question_th": "ทองคำใดมีเงินมากกว่า 30 และผลรวมน้อยกว่า 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_en": "What is the highest Bronze with the Event 1972 Heidelberg and Total less than 5?",
    "question_th": "เหรียญทองแดงสูงสุดจากงาน 1972 Heidelberg และคะแนนรวมน้อยกว่า 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_en": "What is the Total with the Event 2004 Athens and Gold less than 20?",
    "question_th": "ผลรวมของกิจกรรมปี 2004 เอเธนส์และทองคำน้อยกว่า 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_en": "What is the lowest Bronze with a Ranking of 22nd of 32 and Gold larger than 4?",
    "question_th": "อะไรคือเหรียญทองแดงที่ต่ำที่สุดซึ่งมีอันดับที่ 22 จาก 32 และทองคำที่มากกว่า 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_en": "Which polling firm put T. Papadopoulos at 31%?",
    "question_th": "สำนักงานเลือกตั้งใดให้คะแนน T. Papadopoulos อยู่ที่ 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_en": "What was the percentage for T. Papadopoulos when I. Kasoulidis was 27.1%?",
    "question_th": "เปอร์เซ็นต์ของ T. Papadopoulos เมื่อ I. Kasoulidis อยู่ที่ 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_en": "What was the percentage for K. Themistokleous when I. Kasoulidis was 30.1%?",
    "question_th": "เปอร์เซ็นต์ของ K. Themistokleous เมื่อ I. Kasoulidis อยู่ที่ 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_en": "What was the percentage for T. Papadopoulos when D. Christofias was 28.4%?",
    "question_th": "เปอร์เซ็นต์ของ T. Papadopoulos เมื่อ D. Christofias อยู่ที่ 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_en": "Which tournament has a 2007 of 2r, and a 2011 of 2r?",
    "question_th": "ทัวร์นาเมนต์ใดที่มีปี 2550 เป็น 2r และปี 2554 เป็น 2r",
    "context": "CREATE TABLE table_name_93 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT SUM(titles) FROM table_name_47 WHERE city = \"győr\" AND rank > 4",
    "question_en": "What is the number of titles for the city of győr with a rank larger than 4?",
    "question_th": "จำนวนตำแหน่งของเมือง Győr ที่มีอันดับมากกว่า 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_en": "What is the Score of the Toronto Maple Leafs home game on February 1?",
    "question_th": "สกอร์เกมเหย้าโตรอนโต เมเปิล ลีฟส์ วันที่ 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_en": "What is the score of the Boston Bruins away game on March 13?",
    "question_th": "เกมเยือน บอสตัน บรูอินส์ วันที่ 13 มี.ค. สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_92 (score VARCHAR, visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_93 WHERE record = \"9–5–2\"",
    "question_en": "What visiting team has a record of 9–5–2?",
    "question_th": "ทีมเยือนทีมใดมีสถิติ 9–5–2?",
    "context": "CREATE TABLE table_name_93 (visitor VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_98 WHERE record = \"12–8–3\"",
    "question_en": "What is the score of the game with a record of 12–8–3?",
    "question_th": "คะแนนของเกมด้วยสถิติ 12–8–3 คืออะไร?",
    "context": "CREATE TABLE table_name_98 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_77 WHERE home = \"montreal canadiens\" AND record = \"14–11–3\"",
    "question_en": "What is the date that the Montreal Canadiens hosted a game with a record of 14–11–3?",
    "question_th": "วันที่ใดที่มอนทรีออลชาวแคนาดาเป็นเจ้าภาพเกมด้วยสถิติ 14–11–3 คือวันที่ใด",
    "context": "CREATE TABLE table_name_77 (date VARCHAR, home VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_65 WHERE player = \"craig stadler\"",
    "question_en": "What is the country of Craig Stadler?",
    "question_th": "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_en": "What is the average total of Gay Brewer from the United States with a to par of 9?",
    "question_th": "ยอดรวมเฉลี่ยของ Gay Brewer จากสหรัฐอเมริกาโดยมีค่าพาร์ 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_en": "What was the finish by the player from West Germany?",
    "question_th": "นักเตะจากเยอรมนีตะวันตกจบการแข่งขันด้วยอะไร?",
    "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_en": "What is the smallest goal during the 2006 fifa world cup qualification competition?",
    "question_th": "เป้าหมายที่เล็กที่สุดในการแข่งขันฟุตบอลโลกรอบคัดเลือกปี 2549 คืออะไร?",
    "context": "CREATE TABLE table_name_45 (goal INTEGER, competition VARCHAR)"
  },
  {
    "answer": "SELECT representative FROM table_name_76 WHERE party = \"whig\"",
    "question_en": "Name the representative for party of whig",
    "question_th": "เสนอชื่อผู้แทนพรรควิก",
    "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_en": "Name the total number of years for chassis of maserati 250f and points less than 0",
    "question_th": "ตั้งชื่อจำนวนปีรวมสำหรับแชสซีของ maserati 250f และคะแนนน้อยกว่า 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_en": "Name the engine with chassis of maserati 250f and entrant of luigi piotti with year less than 1957",
    "question_th": "ตั้งชื่อเครื่องยนต์พร้อมแชสซีของ maserati 250f และผู้เข้าร่วม luigi piotti ด้วยปีน้อยกว่า 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_en": "Name the sum of points for chassis of maserati 250f and entrant of officine alfieri maserati",
    "question_th": "ตั้งชื่อผลรวมคะแนนสำหรับแชสซีของ maserati 250f และผู้เข้าร่วม 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_en": "Name the lowest points for officine alfieri maserati",
    "question_th": "ตั้งชื่อจุดต่ำสุดของ 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_en": "How tall is Ye Fei?",
    "question_th": "เย่เฟยสูงเท่าไหร่?",
    "context": "CREATE TABLE table_name_36 (height VARCHAR, players VARCHAR)"
  },
  {
    "answer": "SELECT SUM(attendance) FROM table_name_1 WHERE date = \"july 26\"",
    "question_en": "What is the attendance of the game on July 26?",
    "question_th": "แมตช์การแข่งขันวันที่ 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_en": "How many years did the team place 2nd in Antwerp, Belgium?",
    "question_th": "ทีมได้อันดับ 2 ในเมืองแอนต์เวิร์ป ประเทศเบลเยียม กี่ปี?",
    "context": "CREATE TABLE table_name_21 (year VARCHAR, venue VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_23 WHERE year < 1991",
    "question_en": "What is the name of the venue that was used before 1991?",
    "question_th": "สถานที่ที่ใช้ก่อนปี 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_en": "How many years did the team place 2nd in Auckland, New Zealand?",
    "question_th": "ทีมได้อันดับ 2 ในเมืองโอ๊คแลนด์ ประเทศนิวซีแลนด์มากี่ปีแล้ว?",
    "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_en": "What was the started round for the competition that had the last match on January 16, 2008?",
    "question_th": "การแข่งขันนัดสุดท้ายเมื่อวันที่ 16 มกราคม พ.ศ. 2551 เริ่มการแข่งขันรอบใด",
    "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_en": "On what date was the first match for the competition that ended its last match on December 16, 2007?",
    "question_th": "นัดแรกของการแข่งขันคือวันที่ใดและสิ้นสุดนัดสุดท้ายเมื่อวันที่ 16 ธันวาคม พ.ศ. 2550?",
    "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_en": "What competition had a final round in the finals and the final position winners?",
    "question_th": "การแข่งขันใดมีรอบสุดท้ายในรอบชิงชนะเลิศและเป็นผู้ชนะตำแหน่งสุดท้าย?",
    "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_en": "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?",
    "question_th": "นัดแรกเกิดขึ้นวันไหนสำหรับการแข่งขันที่จบด้วยตำแหน่งผู้ชนะและรอบสุดท้ายในรอบชิงชนะเลิศ?",
    "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_en": "What competition had its first match on December 20, 2007?",
    "question_th": "การแข่งขันใดมีนัดแรกในวันที่ 20 ธันวาคม พ.ศ. 2550?",
    "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_en": "What was the date of the first match of the Fifa Club World Cup that ended with the final position as winners?",
    "question_th": "นัดแรกของ Fifa Club World Cup ที่จบลงด้วยตำแหน่งผู้ชนะคือวันที่เท่าไร?",
    "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_en": "What was Len Sutton's total number of completed laps when his qualifying time was 142.653?",
    "question_th": "จำนวนรอบที่ทำสำเร็จทั้งหมดของ Len Sutton คือเท่าไรเมื่อเวลารอบคัดเลือกของเขาคือ 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_en": "What call sign has a frequency of 91.3 MHz?",
    "question_th": "สัญญาณเรียกขานใดมีความถี่ 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_en": "What city of license has a value of k293bg for its call sign?",
    "question_th": "เมืองที่ได้รับใบอนุญาตใดมีค่าเป็น k293bg สำหรับสัญญาณเรียกขาน",
    "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_en": "When the frequency is 103.7 MHz and the ERP W is more than 10, what is the call sign?",
    "question_th": "เมื่อความถี่เป็น 103.7 MHz และ ERP W มากกว่า 10 สัญญาณเรียกขานคืออะไร?",
    "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_en": "In Los Banos, California, when the ERP W is than 10, what is the average Frequency MHz?",
    "question_th": "ในลอสบาโนส รัฐแคลิฟอร์เนีย เมื่อ ERP W มากกว่า 10 ความถี่ 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_en": "What is the call sign when the frequency is less than 95.5 MHz, and a ERP W is higher than 10?",
    "question_th": "สัญญาณเรียกขานเมื่อความถี่น้อยกว่า 95.5 MHz และ ERP W สูงกว่า 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_en": "Name the player with score of 73-69-74-71=287",
    "question_th": "ตั้งชื่อผู้เล่นด้วยคะแนน 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_en": "Name the sum To par for score of 71-74-71-72=288",
    "question_th": "ตั้งชื่อผลรวมพาร์เป็นคะแนน 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_en": "Tell me the tournament for kathy horvath opponent",
    "question_th": "บอกฉันหน่อยว่าการแข่งขันของคู่ต่อสู้ของแคธี ฮอร์วาธ",
    "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_en": "Name the date for hard surface at maybelline classic with opponent of wendy turnbull",
    "question_th": "ตั้งชื่อวันที่สำหรับพื้นผิวแข็งที่ Maybelline Classic กับคู่ต่อสู้ของ 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_en": "Name the tournament for semifinal hard surface for opponent of pam casale",
    "question_th": "ตั้งชื่อทัวร์นาเมนต์สำหรับพื้นผิวแข็งรอบรองชนะเลิศสำหรับคู่ต่อสู้ของแพม คาซาเล",
    "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_en": "Name the date for grass surface for quarterfinal at the nsw building society open tournament",
    "question_th": "ตั้งชื่อวันที่สำหรับพื้นผิวหญ้าสำหรับรอบก่อนรองชนะเลิศในการแข่งขัน nsw Building Society Open",
    "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_en": "Name the surface for united airlines tournament of champions final round",
    "question_th": "ตั้งชื่อพื้นผิวสำหรับการแข่งขัน United Airlines ของแชมเปี้ยนส์รอบสุดท้าย",
    "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_en": "Name the date for chris evert opponent and carpet surface",
    "question_th": "ตั้งชื่อวันที่ของคู่ต่อสู้ของคริส เอเวิร์ตและพื้นผิวพรม",
    "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_en": "Name the venue for 25 may 2008",
    "question_th": "ตั้งชื่อสถานที่จัดงานวันที่ 25 พฤษภาคม 2551",
    "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_en": "Name the score for 2015 afc asian cup qualification",
    "question_th": "ทายผลคะแนนเอเอฟซี เอเชียน คัพ 2015 รอบคัดเลือก",
    "context": "CREATE TABLE table_name_73 (score VARCHAR, competition VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_6 WHERE date = \"13 december 2012\"",
    "question_en": "Name the competition for 13 december 2012",
    "question_th": "ตั้งชื่อการแข่งขันวันที่ 13 ธันวาคม 2555",
    "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_en": "What was arrows racing team's highest points after 1982?",
    "question_th": "อะไรคือคะแนนสูงสุดของทีม Arrows Racing หลังปี 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_en": "How many years has 2 points?",
    "question_th": "กี่ปีมี 2 คะแนน?",
    "context": "CREATE TABLE table_name_85 (year INTEGER, points VARCHAR)"
  },
  {
    "answer": "SELECT catalogue FROM table_name_33 WHERE song_title = \"love me tonight\"",
    "question_en": "Name the catalogue with song title of love me tonight",
    "question_th": "ตั้งชื่อแคตตาล็อกด้วยชื่อเพลงรักฉันคืนนี้",
    "context": "CREATE TABLE table_name_33 (catalogue VARCHAR, song_title VARCHAR)"
  },
  {
    "answer": "SELECT song_title FROM table_name_75 WHERE time = \"1:51\"",
    "question_en": "Name the song title with time of 1:51",
    "question_th": "ตั้งชื่อเพลงด้วยเวลา 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_en": "Name the least track with song of little sister",
    "question_th": "ตั้งชื่อเพลงน้อยที่สุดด้วยเพลงของน้องสาวคนเล็ก",
    "context": "CREATE TABLE table_name_67 (track INTEGER, song_title VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_53 WHERE score = \"79\"",
    "question_en": "What player has a score of 79?",
    "question_th": "นักเตะคนไหนมีคะแนน 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_en": "Who played on waca ground and scored 79 points?",
    "question_th": "ใครเล่นบนพื้นวาก้าและทำคะแนนได้ 79 แต้ม?",
    "context": "CREATE TABLE table_name_43 (opponent VARCHAR, ground VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_8 WHERE balls = 49",
    "question_en": "What player had 49 balls?",
    "question_th": "ผู้เล่นคนไหนมีลูกบอล 49 ลูก?",
    "context": "CREATE TABLE table_name_8 (player VARCHAR, balls VARCHAR)"
  },
  {
    "answer": "SELECT MAX(attendance) FROM table_name_83 WHERE score = \"3-5\"",
    "question_en": "What was the highest attendance of a game that had a score of 3-5?",
    "question_th": "อะไรคือผู้เข้าร่วมสูงสุดในเกมที่มีคะแนน 3-5?",
    "context": "CREATE TABLE table_name_83 (attendance INTEGER, score VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_29 WHERE record = \"54-61\"",
    "question_en": "Who took the loss in the game that ended with a 54-61 record?",
    "question_th": "ใครเป็นฝ่ายแพ้ในเกมที่จบลงด้วยสถิติ 54-61?",
    "context": "CREATE TABLE table_name_29 (loss VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT 125 AS cc_winner FROM table_name_2 WHERE circuit = \"estoril\"",
    "question_en": "Name the 125cc winner with circuit of estoril",
    "question_th": "ตั้งชื่อผู้ชนะรุ่น 125cc ด้วย 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_en": "Name the date for motogp winner of casey stoner and grand prix of valencian grand prix",
    "question_th": "ตั้งชื่อวันที่ผู้ชนะ motogp ของ casey stoner และกรังด์ปรีซ์ของ 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_en": "Name the circuit for round 18",
    "question_th": "ตั้งชื่อวงจรรอบ 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_en": "Name the grand prix for casey stoner and circuit of losail",
    "question_th": "ตั้งชื่อกรังด์ปรีซ์สำหรับ casey stoner และ 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_en": "Where was the game held that was played on 2002-03-07?",
    "question_th": "เกมที่เล่นเมื่อ 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_en": "What is the total gold from New zealand and a rank less than 14?",
    "question_th": "ทองรวมจากนิวซีแลนด์และอันดับต่ำกว่า 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_en": "What is the average of the silver that has less than 0 gold",
    "question_th": "ค่าเฉลี่ยของเงินที่มีน้อยกว่า 0 ทองคือเท่าใด",
    "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_en": "Which nation has 0 gold, 0 silver and 2 total?",
    "question_th": "ชาติใดมี 0 เหรียญทอง 0 เงิน และทั้งหมด 2 อัน?",
    "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_en": "What is the total gold in Norway with more than 1 bronze?",
    "question_th": "ทองคำทั้งหมดในนอร์เวย์ที่มีมากกว่า 1 เหรียญทองแดงเป็นเท่าใด",
    "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_en": "What is the total bronze from Puerto Rico with a total of less than 1?",
    "question_th": "เหรียญทองแดงรวมจากเปอร์โตริโกรวมน้อยกว่า 1 คือเท่าไร?",
    "context": "CREATE TABLE table_name_27 (bronze INTEGER, nation VARCHAR, total VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_53 WHERE club = \"celtic\"",
    "question_en": "Which season has the Celtic club?",
    "question_th": "ฤดูกาลใดมีสโมสรเซลติก?",
    "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_en": "What was Parker Moloney's party affiliation when he was the Minister for Markets?",
    "question_th": "Parker Moloney สังกัดพรรคอะไรเมื่อเขาดำรงตำแหน่งรัฐมนตรีกระทรวงการตลาด",
    "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_en": "What was the starting date for the Minister for agriculture, fisheries and forestry that is in order number 25??",
    "question_th": "รัฐมนตรีกระทรวงเกษตร ประมง และป่าไม้ ลำดับที่ 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_en": "What was the score in the venue of Seoul that resulted in 8-0?",
    "question_th": "สกอร์ที่สนามโซลถึง 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_en": "What date had a result of 8-0?",
    "question_th": "มีผล 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_en": "On July 26, 1977, what competition played at the venue of Kuala Lumpur, resulted in 4-0?",
    "question_th": "วันที่ 26 กรกฎาคม พ.ศ. 2520 การแข่งขันรายการใดที่เล่นที่สนามกัวลาลัมเปอร์ ส่งผลให้เสมอกัน 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_en": "What venue were the 1986 Asian games resulting in 2-0 played at?",
    "question_th": "เอเชียนเกมส์ปี 1986 จบลงด้วยสกอร์ 2-0 ที่สนามใด?",
    "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_en": "How many total League goals does Player John O'Flynn have?",
    "question_th": "ผู้เล่นจอห์น โอฟลินน์ ยิงประตูในลีกได้ทั้งหมดกี่ประตู?",
    "context": "CREATE TABLE table_name_45 (league_goals INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_name_73 WHERE chassis = \"lotus 49b\"",
    "question_en": "What is the earliest year that had a Lotus 49B chassis?",
    "question_th": "ปีแรกสุดที่มีแชสซี Lotus 49B คือปีใด",
    "context": "CREATE TABLE table_name_73 (year INTEGER, chassis VARCHAR)"
  },
  {
    "answer": "SELECT MIN(lane) FROM table_name_18 WHERE name = \"lenny krayzelburg\"",
    "question_en": "Name the least lane for lenny krayzelburg",
    "question_th": "ตั้งชื่อเลนที่น้อยที่สุดสำหรับเลนนี่ เครย์เซลเบิร์ก",
    "context": "CREATE TABLE table_name_18 (lane INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_67 WHERE round = 9",
    "question_en": "Round of 9 involved what name?",
    "question_th": "รอบ 9 ทีมชื่ออะไร?",
    "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_en": "Name of calvin o'neal, and a Round smaller than 6 had what number total overall?",
    "question_th": "ชื่อของคาลวิน โอนีล และรอบที่น้อยกว่า 6 มีคะแนนรวมทั้งหมดเท่าใด",
    "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_en": "Name the work for years before 2007 that won blockbuster entertainment awards",
    "question_th": "ตั้งชื่อผลงานเมื่อหลายปีก่อนปี 2007 ที่ชนะรางวัลบล็อกบัสเตอร์เอนเตอร์เทนเมนต์",
    "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_en": "Name the Cole for years before 2009 where Dylan was nominated for big daddy at mtv movie awards",
    "question_th": "ตั้งชื่อโคลไว้หลายปีก่อนปี 2009 ซึ่ง Dylan ได้รับการเสนอชื่อเข้าชิงรางวัล Big Daddy ในงานประกาศรางวัลภาพยนตร์ MTV",
    "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_en": "Position of running back involves which college?",
    "question_th": "ตำแหน่งวิ่งกลับเกี่ยวข้องกับวิทยาลัยใด?",
    "context": "CREATE TABLE table_name_57 (college VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT college FROM table_name_6 WHERE round > 2 AND position = \"guard\"",
    "question_en": "Round larger than 2, and a Position of guard involves what college?",
    "question_th": "รอบที่ใหญ่กว่า 2 และตำแหน่งองครักษ์เกี่ยวข้องกับวิทยาลัยใด?",
    "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_en": "Pick # smaller than 46, and a Round of 5, and a Position of defensive tackle involves which college?",
    "question_th": "เลือก # ที่น้อยกว่า 46 และรอบ 5 คน และตำแหน่งการป้องกันเกี่ยวข้องกับวิทยาลัยใด",
    "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_en": "What is the percentage who speak Russian?",
    "question_th": "เปอร์เซ็นต์ที่พูดภาษารัสเซียคือเท่าไร?",
    "context": "CREATE TABLE table_name_73 (percentage___percentage_ VARCHAR, language VARCHAR)"
  },
  {
    "answer": "SELECT number FROM table_name_50 WHERE language = \"german\"",
    "question_en": "How many speak german?",
    "question_th": "พูดภาษาเยอรมันได้กี่คน?",
    "context": "CREATE TABLE table_name_50 (number VARCHAR, language VARCHAR)"
  },
  {
    "answer": "SELECT percentage___percentage_ FROM table_name_35 WHERE males = \"99\"",
    "question_en": "What is the percentage where males equal 99?",
    "question_th": "เปอร์เซ็นต์ที่ผู้ชายมีค่าเท่ากับ 99 คือเท่าไร?",
    "context": "CREATE TABLE table_name_35 (percentage___percentage_ VARCHAR, males VARCHAR)"
  },
  {
    "answer": "SELECT females FROM table_name_67 WHERE language = \"german\"",
    "question_en": "How many women speak German?",
    "question_th": "ผู้หญิงพูดภาษาเยอรมันได้กี่คน?",
    "context": "CREATE TABLE table_name_67 (females VARCHAR, language VARCHAR)"
  },
  {
    "answer": "SELECT MIN(league_cup) FROM table_name_65 WHERE fa_cup < 0",
    "question_en": "What is the lowest number of league cups associated with 0 FA cups?",
    "question_th": "จำนวนลีกคัพต่ำสุดที่เกี่ยวข้องกับ 0 FA Cup คือเท่าใด?",
    "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_en": "How many FA cups for the player with under 5 champs, 0 league cups, and over 3 total?",
    "question_th": "นักเตะที่ได้แชมป์เอฟเอคัพต่ำกว่า 5 สมัย, ลีกคัพ 0 สมัย และทั้งหมดมากกว่า 3 สมัยมีกี่เอฟเอคัพ",
    "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_en": "How many league cups associated with under 10 championships and a total of under 3?",
    "question_th": "มีถ้วยลีกกี่ถ้วยที่เกี่ยวข้องกับการแข่งขันชิงแชมป์ต่ำกว่า 10 รายการและรวมทั้งหมดต่ำกว่า 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–0\"",
    "question_en": "Result F–A of 2–0 had what group position?",
    "question_th": "ผลการแข่งขัน F–A ของ 2–0 อยู่ในตำแหน่งใดของกลุ่ม",
    "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–0\"",
    "question_en": "Result F–A of 5–0 had what group position?",
    "question_th": "ผลการแข่งขัน F–A จำนวน 5–0 มีตำแหน่งในกลุ่มใด",
    "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–0\"",
    "question_en": "Group position of 1st, and a Result F–A of 2–0 has what average attendance?",
    "question_th": "อันดับกลุ่มที่ 1 และผลการแข่งขัน F–A ที่ 2–0 มีผู้เข้าร่วมโดยเฉลี่ยเท่าใด",
    "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–0\"",
    "question_en": "Result F–A of 5–0 had what date?",
    "question_th": "ผล F–A ของ 5–0 มีวันที่เท่าไหร่?",
    "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_en": "Date of 1 october 2003 had what attendance?",
    "question_th": "วันที่ 1 ตุลาคม 2546 มีผู้เข้าร่วมประชุมอะไรบ้าง?",
    "context": "CREATE TABLE table_name_18 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_84 WHERE partner = \"tathiana garbin\"",
    "question_en": "what score is it with tathiana garbin as partner?",
    "question_th": "ได้คะแนนเท่าไหร่กับทาเธียน่า การ์บินเป็นคู่หู?",
    "context": "CREATE TABLE table_name_84 (score VARCHAR, partner VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_48 WHERE partner = \"giulia casoni\"",
    "question_en": "what date was giulia casoni the partner?",
    "question_th": "จูเลีย คาโซนีไปเดทกันวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_48 (date VARCHAR, partner VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_29 WHERE country = \"spain\" AND iata = \"ibz\"",
    "question_en": "for country of spain and iata of ibz, what's the city?",
    "question_th": "สำหรับประเทศสเปนและ iata ของ ibz เมืองอะไร",
    "context": "CREATE TABLE table_name_29 (city VARCHAR, country VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT icao FROM table_name_76 WHERE airport = \"fiumicino airport\"",
    "question_en": "for fiumicino airport what is the icao?",
    "question_th": "สำหรับสนามบินฟิวมิชิโน ไอเคาคืออะไร?",
    "context": "CREATE TABLE table_name_76 (icao VARCHAR, airport VARCHAR)"
  },
  {
    "answer": "SELECT airport FROM table_name_95 WHERE city = \"milan\" AND iata = \"lin\"",
    "question_en": "for milan and the iata of lin what is the airport?",
    "question_th": "สำหรับมิลานและ iata ของ lin สนามบินคืออะไร?",
    "context": "CREATE TABLE table_name_95 (airport VARCHAR, city VARCHAR, iata VARCHAR)"
  },
  {
    "answer": "SELECT iata FROM table_name_39 WHERE icao = \"eheh\"",
    "question_en": "what's the iata for the icao of eheh?",
    "question_th": "iata สำหรับ icao ของเอ๊ะคืออะไร?",
    "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_en": "which aiport is in the united kingdom and has iata of lcy?",
    "question_th": "สนามบินไหนอยู่ในสหราชอาณาจักรและมี iata เป็น 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_en": "Name the F. Goals for games of 22 22 and points of 012 12",
    "question_th": "ตั้งชื่อ F. Goals สำหรับเกม 22 22 และแต้ม 012 12",
    "context": "CREATE TABLE table_name_31 (games VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_name_43 WHERE games = \"16 16\"",
    "question_en": "Name the points for games of 16 16",
    "question_th": "ตั้งชื่อแต้มสำหรับเกม 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_en": "Name the tries that has a points of 008 8 and games of 27 27",
    "question_th": "ตั้งชื่อความพยายามที่มีคะแนน 008 8 และเกมที่ 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_en": "Name the F. Goals with tries of 0 0 and games of 05 5",
    "question_th": "ตั้งชื่อ F. ประตูด้วยการลอง 0 0 และเกม 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_en": "Name the player with tries of 02 2 and points of 008 8",
    "question_th": "ตั้งชื่อผู้เล่นโดยพยายาม 02 2 และคะแนน 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_en": "Which area has a Name of william colenso college?",
    "question_th": "พื้นที่ใดมีชื่อวิทยาลัยวิลเลียมโคเลนโซ",
    "context": "CREATE TABLE table_name_73 (area VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT authority FROM table_name_41 WHERE name = \"tamatea high school\"",
    "question_en": "Which authority has a Name of tamatea high school?",
    "question_th": "หน่วยงานใดมีชื่อโรงเรียนมัธยมทามาเทีย?",
    "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–13\"",
    "question_en": "Which gender has a Decile of 8, an Area of taradale, and Years of 1–13?",
    "question_th": "เพศใดมี Decile เท่ากับ 8, พื้นที่เป็น taradale และปีที่ 1–13",
    "context": "CREATE TABLE table_name_90 (gender VARCHAR, years VARCHAR, decile VARCHAR, area VARCHAR)"
  },
  {
    "answer": "SELECT decile FROM table_name_69 WHERE years = \"–\" AND gender = \"coed\"",
    "question_en": "Which Decile has Years of –, and a Gender of coed?",
    "question_th": "Decile ใดที่มีปี – และเพศของนิสิต?",
    "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_en": "Name the total number of division for apps more than 5 for greece",
    "question_th": "ตั้งชื่อจำนวนการแบ่งทั้งหมดสำหรับแอปที่มากกว่า 5 สำหรับกรีซ",
    "context": "CREATE TABLE table_name_83 (division VARCHAR, apps VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT AVG(apps) FROM table_name_73 WHERE team = \"smederevo\"",
    "question_en": "Name the average apps for smederevo",
    "question_th": "ตั้งชื่อแอปเฉลี่ยสำหรับ smederevo",
    "context": "CREATE TABLE table_name_73 (apps INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT engine FROM table_name_64 WHERE chassis = \"lotus 16\"",
    "question_en": "What model engine has a lotus 16 chassis?",
    "question_th": "เครื่องยนต์รุ่นอะไรมีแชสซีโลตัส16?",
    "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_en": "How many points after 1960 for fred tuck cars?",
    "question_th": "กี่คะแนนหลังปี 1960 สำหรับรถยนต์ fred tuck?",
    "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_en": "What is the distance for the unnamed race with 3 runners at Newcastle?",
    "question_th": "การแข่งขันที่ไม่มีชื่อ 3 คน ที่นิวคาสเซิ่ลมีระยะทางเท่าไร?",
    "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_en": "Name the score when the record was 18-25",
    "question_th": "ตั้งชื่อคะแนนเมื่อบันทึกเป็น 18-25",
    "context": "CREATE TABLE table_name_51 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_10 WHERE opponent = \"angels\"",
    "question_en": "Name the loss for the angels opponent",
    "question_th": "ตั้งชื่อการสูญเสียให้กับคู่ต่อสู้เทวดา",
    "context": "CREATE TABLE table_name_10 (loss VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(attendance) FROM table_name_32 WHERE record = \"16-22\"",
    "question_en": "Name the total number of people that went when the record was 16-22",
    "question_th": "ระบุจำนวนคนที่ไปทั้งหมดเมื่อบันทึกคือ 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_en": "Name the score for the mariners opponent on may 10",
    "question_th": "ทายผลคู่ต่อสู้กะลาสีเรือวันที่ 10 พ.ค",
    "context": "CREATE TABLE table_name_20 (score VARCHAR, opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_25 WHERE partner = \"jürgen melzer\" AND date = \"january 7, 2012\"",
    "question_en": "What was the Outcome for the Partner of Jürgen Melzer and the Date of January 7, 2012?",
    "question_th": "ผลลัพธ์สำหรับหุ้นส่วนของเจอร์เก้น เมลเซอร์ และวันที่ 7 มกราคม 2012 คืออะไร?",
    "context": "CREATE TABLE table_name_25 (outcome VARCHAR, partner VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_79 WHERE partner = \"jürgen melzer\" AND date = \"july 16, 2011\"",
    "question_en": "What was the Surface for the Partner of Jürgen Melzer, and a Date of July 16, 2011?",
    "question_th": "Surface สำหรับหุ้นส่วนของ Jürgen Melzer คืออะไร และวันที่ 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_en": "What's the Outcome for the Date of July 16, 2011?",
    "question_th": "ผลลัพธ์ของวันที่ 16 กรกฎาคม 2554 เป็นอย่างไร",
    "context": "CREATE TABLE table_name_76 (outcome VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_94 WHERE partner = \"jürgen melzer\" AND date = \"february 7, 2010\"",
    "question_en": "What's the Outcome for the Partner of Jürgen Melzer on the Date of February 7, 2010?",
    "question_th": "ผลลัพธ์สำหรับหุ้นส่วนของเจอร์เก้น เมลเซอร์ในวันที่ 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_en": "Name the nation with rank more than 9",
    "question_th": "ตั้งชื่อประเทศที่มีอันดับมากกว่า 9",
    "context": "CREATE TABLE table_name_77 (nation VARCHAR, rank INTEGER)"
  },
  {
    "answer": "SELECT MIN(bronze) FROM table_name_45 WHERE silver < 0",
    "question_en": "Name the least bronze for silver being less than 0",
    "question_th": "ตั้งชื่อทองแดงที่น้อยที่สุดสำหรับเงินที่มีค่าน้อยกว่า 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_en": "Name the sum of rank for bronze less than 1 and gold of 1 with total less than 1",
    "question_th": "ตั้งชื่อผลรวมอันดับทองแดงน้อยกว่า 1 และทอง 1 รวมน้อยกว่า 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_en": "Name the sum of rank for silver less than 0",
    "question_th": "ตั้งชื่อผลรวมอันดับสำหรับเงินที่น้อยกว่า 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_en": "Name the least rank when silver is less than 1 and bronze is less than 1 with total more than 1",
    "question_th": "ตั้งชื่ออันดับน้อยที่สุดเมื่อเงินน้อยกว่า 1 และทองแดงน้อยกว่า 1 โดยมีคะแนนรวมมากกว่า 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_en": "What was the date of the game in which the series was 1-4?",
    "question_th": "ซีรีส์วันที่ 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_en": "What is the Score that has a Home of montreal canadiens on april 11?",
    "question_th": "คะแนนที่มีบ้านของชาวแคนาดามอนทรีออลในวันที่ 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_en": "What is the Record on april 13?",
    "question_th": "บันทึกในวันที่ 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–1\"",
    "question_en": "When is Home of chicago black hawks has a Record of 0–1?",
    "question_th": "เมื่อใดที่ Home of Chicago Black Hawks มีสถิติ 0–1",
    "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–2\"",
    "question_en": "What is the Date that chicago black hawks has a Record of 2–2?",
    "question_th": "วันที่ใดที่เหยี่ยวดำชิคาโกมีสถิติ 2–2 คือวันที่ใด",
    "context": "CREATE TABLE table_name_5 (date VARCHAR, visitor VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_38 WHERE score = \"0–2\"",
    "question_en": "Which Record has a Score of 0–2?",
    "question_th": "บันทึกใดมีคะแนน 0–2",
    "context": "CREATE TABLE table_name_38 (record VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_8 WHERE date = \"april 5\"",
    "question_en": "Who is the visitor on April 5?",
    "question_th": "ใครคือผู้มาเยือนในวันที่ 5 เมษายน?",
    "context": "CREATE TABLE table_name_8 (visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_14 WHERE year = \"2011\"",
    "question_en": "What is the Team, when the Year is 2011?",
    "question_th": "ทีมคืออะไร เมื่อปี 2554 คือ?",
    "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_en": "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?",
    "question_th": "ค่าของ INT YDS คืออะไร เมื่อทีมคือ New Orleans Saints และเมื่อค่าของ Sacks มากกว่า 0 และเมื่อ Vale สำหรับ Solo คือ 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_en": "What is the value for lowest Sacks, when the Team is New Orleans Saints, and when the value for Tackles is 132?",
    "question_th": "ค่าของกระสอบที่ต่ำที่สุด เมื่อทีมคือ New Orleans Saints และเมื่อค่าของแท็กเกิลคือ 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_en": "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?",
    "question_th": "ค่าของ Tackles คืออะไร เมื่อค่าของ Solo มากกว่า 67 เมื่อค่าของ Sacks น้อยกว่า 2 และเมื่อค่าของ INT YDS มากกว่า 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_en": "What is the total value for Solo, when the value of Sacks is 2, and when the Team is New York Jets?",
    "question_th": "มูลค่ารวมของ Solo คือเท่าใด เมื่อมูลค่าของ Sacks คือ 2 และเมื่อทีมคือ 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–4, 6–1\"",
    "question_en": "What is the outcome of the match with a score of 6–4, 6–1?",
    "question_th": "ผลการแข่งขันด้วยสกอร์ 6–4, 6–1 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_39 (outcome VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_55 WHERE surface = \"clay\" AND opponent = \"andrea hlaváčková\"",
    "question_en": "What date was the match on a clay surface against Andrea Hlaváčková?",
    "question_th": "การแข่งขันบนพื้นดินกับ Andrea Hlaváčková คือวันที่ใด",
    "context": "CREATE TABLE table_name_55 (date VARCHAR, surface VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_54 WHERE tournament = \"herceg novi\"",
    "question_en": "What is the name of the opponent at the Herceg Novi tournament?",
    "question_th": "คู่ต่อสู้ในทัวร์นาเมนต์ Herceg Novi ชื่ออะไร?",
    "context": "CREATE TABLE table_name_54 (opponent VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_81 WHERE record = \"50-32\"",
    "question_en": "What was the loss of the game when the record was 50-32?",
    "question_th": "ความพ่ายแพ้ของเกมเมื่อสถิติอยู่ที่ 50-32 คืออะไร?",
    "context": "CREATE TABLE table_name_81 (loss VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_6 WHERE result = \"l 14–6\"",
    "question_en": "Who was the opponent with a result of l 14–6?",
    "question_th": "คู่ต่อสู้ที่มีผลการแข่งขัน l 14–6 คือใคร?",
    "context": "CREATE TABLE table_name_6 (opponent VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT SUM(attendance) FROM table_name_40 WHERE date = \"november 17, 1961\"",
    "question_en": "What is the sum of all attendance on November 17, 1961?",
    "question_th": "จำนวนผู้เข้าร่วมทั้งหมดในวันที่ 17 พฤศจิกายน 2504 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_40 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT MIN(attendance) FROM table_name_18 WHERE week = 5",
    "question_en": "What is the smallest attendance in week 5?",
    "question_th": "การเข้าร่วมที่น้อยที่สุดในสัปดาห์ที่ 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_en": "Name the 3rd for season less than 4 and lost of 61",
    "question_th": "ตั้งชื่อที่ 3 สำหรับฤดูกาลที่น้อยกว่า 4 และแพ้ 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_en": "What is the sum of matches played that has a year of first match before 2000, fewer than 21 lost, and 0 drawn?",
    "question_th": "ผลรวมของแมตช์ที่เล่นซึ่งมีหนึ่งปีของแมตช์แรกก่อนปี 2000 แพ้น้อยกว่า 21 นัด และเสมอ 0 เป็นเท่าใด",
    "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_en": "What is the lowest number of matches played that has more than 0 draws, a percentage of 12.50%, and fewer than 3 losses?",
    "question_th": "จำนวนแมตช์ที่เล่นน้อยที่สุดที่เสมอมากกว่า 0 เปอร์เซ็นต์ 12.50% และแพ้น้อยกว่า 3 ครั้งคือเท่าไหร่?",
    "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 = \"សាមសិប\"",
    "question_en": "What's the total value of សាមសិប?",
    "question_th": "សមសិប มีมูลค่ารวมเท่าไร?",
    "context": "CREATE TABLE table_name_2 (value INTEGER, word_form VARCHAR)"
  },
  {
    "answer": "SELECT word_form FROM table_name_30 WHERE other = \"sam sep\"",
    "question_en": "What can you say is the word from of sam sep?",
    "question_th": "สิ่งที่คุณสามารถพูดได้คือคำพูดของ 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_en": "What is smallest Khmer valued less than 90 have a kau sip ALA-LC?",
    "question_th": "เขมรที่เล็กที่สุดที่มีมูลค่าน้อยกว่า 90 คืออะไรมี 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ĕb\"",
    "question_en": "How much is the total value of kau sĕb UNGEGN ?",
    "question_th": "kau sĕb UNGEGN มีมูลค่ารวมเท่าไร?",
    "context": "CREATE TABLE table_name_73 (value INTEGER, ungegn VARCHAR)"
  },
  {
    "answer": "SELECT MIN(losses) FROM table_name_79 WHERE club = \"cádiz cf\"",
    "question_en": "What is the lowest number of losses for the club cádiz cf?",
    "question_th": "สโมสร กาดิซ ซีเอฟ แพ้น้อยที่สุดคือเท่าไหร่?",
    "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_en": "What is the name of the artist with a Single / Pack of guitar hero track pack 1?",
    "question_th": "ศิลปินที่มี 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–1)\"",
    "question_en": "What was the record at the game that had a loss of Lemanczyk (0–1)?",
    "question_th": "อะไรคือสถิติในเกมที่แพ้เลมานซีค (0–1)?",
    "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_en": "Game larger than 1, and a Location of comiskey park (i), and a Date of October 9 happened at what time?",
    "question_th": "เกมที่มีขนาดใหญ่กว่า 1 และตำแหน่งของ comiskey park (i) และวันที่ 9 ตุลาคมเกิดขึ้นในเวลาใด?",
    "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_en": "Date of october 8 happened at what time?",
    "question_th": "วันที่ 8 ตุลาคม เกิดขึ้นเวลาใด?",
    "context": "CREATE TABLE table_name_1 (time VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT SUM(attendance) FROM table_name_4 WHERE game = 1",
    "question_en": "Game 1's sum of attendance is?",
    "question_th": "ผลรวมผู้เข้าร่วมเกมที่ 1 คือ?",
    "context": "CREATE TABLE table_name_4 (attendance INTEGER, game VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_54 WHERE year_s__won = \"2000\"",
    "question_en": "What was the finish of the winner of the 2000 Masters?",
    "question_th": "ผู้ชนะรายการ Masters ปี 2000 มีจุดจบอย่างไร?",
    "context": "CREATE TABLE table_name_54 (finish VARCHAR, year_s__won VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_83 WHERE country = \"fiji\"",
    "question_en": "For the player from Fiji, what was his finish?",
    "question_th": "สำหรับนักเตะจากฟิจิ ตอนจบของเขาเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_83 (finish VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_91 WHERE to_par = \"+8\"",
    "question_en": "For the player finishing at +8, what is his nationality?",
    "question_th": "สำหรับผู้เล่นที่จบที่ +8 เขามีสัญชาติอะไร?",
    "context": "CREATE TABLE table_name_91 (country VARCHAR, to_par VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_14 WHERE record = \"52–103\"",
    "question_en": "What was the score of the game that had a record of 52–103?",
    "question_th": "คะแนนของเกมที่มีสถิติ 52–103 คืออะไร?",
    "context": "CREATE TABLE table_name_14 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_89 WHERE record = \"53–104\"",
    "question_en": "What was the date of the game when the record was 53–104?",
    "question_th": "วันที่ของเกมคือเมื่อใดที่มีสถิติ 53–104?",
    "context": "CREATE TABLE table_name_89 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_49 WHERE loss = \"huffman (6–18)\"",
    "question_en": "What was the record at the game that had a loss of Huffman (6–18)?",
    "question_th": "อะไรคือสถิติในเกมที่แพ้ฮัฟฟ์แมน (6–18)?",
    "context": "CREATE TABLE table_name_49 (record VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT format FROM table_name_72 WHERE date = \"august 29, 1998\"",
    "question_en": "Which format is released on August 29, 1998?",
    "question_th": "รูปแบบใดที่เผยแพร่ในวันที่ 29 สิงหาคม 2541",
    "context": "CREATE TABLE table_name_72 (format VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT catalog FROM table_name_5 WHERE date = \"january 25, 1987\"",
    "question_en": "What is the catalog number for the January 25, 1987 release?",
    "question_th": "หมายเลขแค็ตตาล็อกสำหรับการเผยแพร่วันที่ 25 มกราคม 1987 คืออะไร",
    "context": "CREATE TABLE table_name_5 (catalog VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT format FROM table_name_31 WHERE date = \"may 27, 2009\"",
    "question_en": "Which format is released on May 27, 2009?",
    "question_th": "รูปแบบใดที่เผยแพร่ในวันที่ 27 พฤษภาคม 2552",
    "context": "CREATE TABLE table_name_31 (format VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT catalog FROM table_name_89 WHERE date = \"may 27, 2009\"",
    "question_en": "What is the catalog number of the May 27, 2009 release?",
    "question_th": "หมายเลขแค็ตตาล็อกของการเผยแพร่วันที่ 27 พฤษภาคม 2552 คืออะไร",
    "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_en": "What is the release date of a CD with the catalog number ALCA-9206?",
    "question_th": "วันที่วางจำหน่ายซีดีที่มีหมายเลขแค็ตตาล็อก 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_en": "Which format is released on May 27, 2009?",
    "question_th": "รูปแบบใดที่เผยแพร่ในวันที่ 27 พฤษภาคม 2552",
    "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_en": "What was the average of points with ranks smaller than 7 but with total point games of 113?",
    "question_th": "อะไรคือค่าเฉลี่ยของคะแนนที่มีอันดับน้อยกว่า 7 แต่มีคะแนนรวมในเกมที่ 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_en": "What is the sum of the roll with an area of Waikaka?",
    "question_th": "ผลรวมของม้วนกับพื้นที่ไวกาก้าเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_11 (roll INTEGER, area VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(roll) FROM table_name_21 WHERE name = \"east gore school\"",
    "question_en": "What is the roll number for East Gore School?",
    "question_th": "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_en": "What is the lowest decile with 1-6 years and area of Maitland?",
    "question_th": "Decile ต่ำสุดในช่วง 1-6 ปี และพื้นที่ของ 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_en": "Which gender has 7-15 years?",
    "question_th": "เพศไหนมีอายุ 7-15 ปี?",
    "context": "CREATE TABLE table_name_74 (gender VARCHAR, years VARCHAR)"
  },
  {
    "answer": "SELECT gender FROM table_name_23 WHERE area = \"otama\"",
    "question_en": "What is the gender for Otama?",
    "question_th": "โอทามะเป็นเพศอะไร?",
    "context": "CREATE TABLE table_name_23 (gender VARCHAR, area VARCHAR)"
  },
  {
    "answer": "SELECT authority FROM table_name_46 WHERE roll = 96",
    "question_en": "What is the authority for roll of 96?",
    "question_th": "อำนาจในการม้วน 96 คืออะไร?",
    "context": "CREATE TABLE table_name_46 (authority VARCHAR, roll VARCHAR)"
  },
  {
    "answer": "SELECT years FROM table_name_86 WHERE roll = 9",
    "question_en": "When is a Roll of 9?",
    "question_th": "เมื่อไรม้วน 9?",
    "context": "CREATE TABLE table_name_86 (years VARCHAR, roll VARCHAR)"
  },
  {
    "answer": "SELECT area FROM table_name_63 WHERE roll = 26",
    "question_en": "What is the Area with 26 in Roll",
    "question_th": "พื้นที่ที่มี 26 ในม้วนเป็นเท่าใด",
    "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_en": "For nations with more than 6 silvers and more than 10 golds, what is the lowest total?",
    "question_th": "สำหรับประเทศที่มีมากกว่า 6 เหรียญเงินและมากกว่า 10 เหรียญทอง ยอดรวมต่ำสุดคือเท่าไร?",
    "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_en": "What is the lowest rank for nations with more than 3 bronze medals and more than 36 total medals?",
    "question_th": "อันดับต่ำสุดของประเทศที่มีเหรียญทองแดงมากกว่า 3 เหรียญและเหรียญรางวัลรวมมากกว่า 36 เหรียญคืออันดับใด",
    "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_en": "Which country has the most bronze and has more than one silver, 1 gold, and less than 4 total medals.",
    "question_th": "ประเทศใดมีเหรียญทองแดงมากที่สุดและมีเหรียญเงินมากกว่า 1 เหรียญ 1 เหรียญทอง และมีเหรียญทั้งหมดไม่ถึง 4 เหรียญ",
    "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_en": "What nation has the most bronze medals with over 11 total medals?",
    "question_th": "ประเทศใดมีเหรียญทองแดงมากที่สุดโดยมีทั้งหมดมากกว่า 11 เหรียญ?",
    "context": "CREATE TABLE table_name_75 (bronze INTEGER, total INTEGER)"
  },
  {
    "answer": "SELECT SUM(silver) FROM table_name_15 WHERE nation = \"cuba\"",
    "question_en": "How many silver medals does Cuba have?",
    "question_th": "คิวบามีเหรียญเงินกี่เหรียญ?",
    "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_en": "Where was the game that the Indianapolis Colts lost 24-14?",
    "question_th": "เกมที่ Indianapolis Colts แพ้ 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_en": "On what date was the game that the Indianapolis Colts lost in 2004?",
    "question_th": "เกมที่ Indianapolis Colts แพ้ในปี 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_en": "Which team won against the New England Patriots 40-21?",
    "question_th": "ทีมใดชนะนิวอิงแลนด์ แพทริออตส์ 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_en": "What was the date of the game played at Gillette Stadium with a score of 40-21?",
    "question_th": "แมตช์ที่เล่นที่ยิลเลตต์ สเตเดี้ยม เมื่อวันที่เท่าไหร่ด้วยสกอร์ 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_en": "What year was the game that ended with a score of 24-14?",
    "question_th": "เกมที่จบลงด้วยสกอร์ 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_en": "What was the score of the 3-0 Win result?",
    "question_th": "ผลการแข่งขันชนะ 3-0 สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_91 (score VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_47 WHERE date = \"10 october 2009\"",
    "question_en": "What was the result of the game from 10 October 2009?",
    "question_th": "ผลการแข่งขันตั้งแต่วันที่ 10 ตุลาคม 2552 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_47 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_91 WHERE score = \"2-0\"",
    "question_en": "What is the name of the competition that has a score of 2-0?",
    "question_th": "การแข่งขันที่มีสกอร์ 2-0 ชื่ออะไร?",
    "context": "CREATE TABLE table_name_91 (competition VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_37 WHERE home = \"dallas\"",
    "question_en": "Name the visitor for home of dallas",
    "question_th": "ตั้งชื่อผู้มาเยือนบ้านดัลลัส",
    "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_en": "Name the period for south korea with peak position of #1",
    "question_th": "ตั้งชื่อช่วงเวลาของเกาหลีใต้ด้วยอันดับสูงสุดอันดับ 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_en": "Name the period for south korea with peak position of #24",
    "question_th": "ตั้งชื่อช่วงเวลาของเกาหลีใต้ด้วยอันดับสูงสุดที่ #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_en": "Name the period for Chart of g-music j-pop/k-pop chart",
    "question_th": "ตั้งชื่อช่วงเวลาสำหรับชาร์ตเพลง j-pop/k-pop ของ g-music",
    "context": "CREATE TABLE table_name_29 (period VARCHAR, chart VARCHAR)"
  },
  {
    "answer": "SELECT sales FROM table_name_7 WHERE peak_position = \"#24\"",
    "question_en": "Name the sales with peak position of #24",
    "question_th": "ตั้งชื่อยอดขายด้วยตำแหน่งสูงสุดที่ #24",
    "context": "CREATE TABLE table_name_7 (sales VARCHAR, peak_position VARCHAR)"
  },
  {
    "answer": "SELECT aggregate FROM table_name_49 WHERE club = \"ajax\"",
    "question_en": "Which aggregate has ajax as the club?",
    "question_th": "รวมทีมไหนมีอาแจ็กซ์เป็นสโมสร?",
    "context": "CREATE TABLE table_name_49 (aggregate VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT AVG(attendance) FROM table_name_19 WHERE date = \"march 1\"",
    "question_en": "How many attended on march 1?",
    "question_th": "มีผู้เข้าร่วมกี่คนในวันที่ 1 มีนาคม?",
    "context": "CREATE TABLE table_name_19 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_96 WHERE date = \"march 21\"",
    "question_en": "Who was the visitor on march 21?",
    "question_th": "ใครคือแขกที่มาเยี่ยมในวันที่ 21 มีนาคม?",
    "context": "CREATE TABLE table_name_96 (visitor VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT cyclist FROM table_name_85 WHERE nation = \"belgium\"",
    "question_en": "Who was the cyclist from Belgium?",
    "question_th": "ใครคือนักปั่นจักรยานจากเบลเยียม?",
    "context": "CREATE TABLE table_name_85 (cyclist VARCHAR, nation VARCHAR)"
  },
  {
    "answer": "SELECT nation FROM table_name_79 WHERE team = \"csc\"",
    "question_en": "What is the nation of the person who was from the CSC team?",
    "question_th": "คนที่มาจากทีม กปปส. เป็นคนชาติอะไร?",
    "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_en": "Who is the cyclist from the GCE team and had UCI points under 20?",
    "question_th": "ใครคือนักปั่นจากทีม GCE และมีคะแนน UCI อายุต่ำกว่า 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_en": "Which nation is Danilo di Luca from?",
    "question_th": "ดานิโล ดิ ลูก้า มาจากประเทศใด",
    "context": "CREATE TABLE table_name_7 (nation VARCHAR, cyclist VARCHAR)"
  },
  {
    "answer": "SELECT nation FROM table_name_96 WHERE cyclist = \"robert gesink\"",
    "question_en": "Which nation is Robert Gesink from?",
    "question_th": "Robert Gesink มาจากชาติใด",
    "context": "CREATE TABLE table_name_96 (nation VARCHAR, cyclist VARCHAR)"
  },
  {
    "answer": "SELECT SUM(uci_points) FROM table_name_42 WHERE cyclist = \"kim kirchen\"",
    "question_en": "What is the sum of UCI points for Kim Kirchen?",
    "question_th": "ผลรวมคะแนน UCI สำหรับ 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_en": "How many games for the player that has an over 2.7 assist average and over 598 total assists?",
    "question_th": "มีกี่เกมสำหรับผู้เล่นที่มีค่าเฉลี่ยแอสซิสต์มากกว่า 2.7 และแอสซิสต์รวมมากกว่า 598 ครั้ง?",
    "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_en": "How many assists does cam long average in under 132 games?",
    "question_th": "ค่าเฉลี่ยของลูกเบี้ยวแอสซิสต์ได้กี่ครั้งใน 132 เกม?",
    "context": "CREATE TABLE table_name_28 (ast_avg INTEGER, player VARCHAR, games VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_91 WHERE stadium = \"gortakeegan\"",
    "question_en": "Where is the Stadium of Gortakeegan located?",
    "question_th": "สนามกีฬา Gortakeegan อยู่ที่ไหน",
    "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_en": "In 1972, how many points did the entrant with the March 721G Chassis have?",
    "question_th": "ในปี 1972 ผู้เข้าแข่งขันแชสซี March 721G มีคะแนนเท่าไร",
    "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_en": "In 1971, how many total points did the entrant stp march have?",
    "question_th": "ในปี 1971 ผู้เข้าประกวด stp March มีคะแนนรวมทั้งหมดกี่คะแนน",
    "context": "CREATE TABLE table_name_56 (points VARCHAR, entrant VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT chassis FROM table_name_88 WHERE year = 1971",
    "question_en": "Which Chassis was featured in the year 1971?",
    "question_th": "แชสซีใดที่นำเสนอในปี 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_en": "Which Chassis did the Entrant clarke-mordaunt-guthrie-durlacher carry?",
    "question_th": "แชสซีใดที่ผู้เข้าแข่งขัน clarke-mordaunt-guthrie-durlacher บรรทุก",
    "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_en": "What is Bartolo's Total G when his L Apps is 29 and his C Apps are larger than 5?",
    "question_th": "Total G ของ Bartolo คืออะไรเมื่อแอป L ของเขาคือ 29 และแอป C ของเขามีขนาดใหญ่กว่า 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_en": "What is the lowest round for Southern College?",
    "question_th": "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_en": "Who had the placekicker position with a round above 10?",
    "question_th": "ใครได้ตำแหน่งเพลเยอร์ที่มีรอบเกิน 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ía-lópez albert portas\"",
    "question_en": "What was the partner of the team that faced the guillermo garcía-lópez albert portas on clay?",
    "question_th": "คู่หูของทีมที่เผชิญหน้ากับกิลเลอร์โม การ์เซีย-โลเปซ อัลเบิร์ต พอร์ตัสบนดินคือใคร?",
    "context": "CREATE TABLE table_name_45 (partner VARCHAR, surface VARCHAR, opponents VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_9 WHERE opponents = \"guillermo garcía-lópez albert portas\"",
    "question_en": "What are the dates where the opponent was guillermo garcía-lópez albert portas?",
    "question_th": "วันที่คู่ต่อสู้คือ กิเยร์โม การ์เซีย-โลเปซ อัลเบิร์ต ปอร์ตัส คือวันไหน?",
    "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_en": "What is the earliest year in the 125cc class with more than 102 points and a rank of 2nd?",
    "question_th": "ปีแรกสุดในคลาส 125cc ที่มีคะแนนมากกว่า 102 คะแนน และอันดับที่ 2 คือปีใด?",
    "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_en": "Which team had fewer than 167 points in the 250cc class?",
    "question_th": "ทีมไหนมีคะแนนน้อยกว่า 167 คะแนนในคลาส 250cc?",
    "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_en": "For years before 1996, having a rank of 3rd in the 125cc class, what is the sum of the points?",
    "question_th": "หลายปีก่อนปี 1996 ขึ้นอันดับ 3 ในคลาส 125cc คะแนนรวมเท่าไหร่?",
    "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_en": "Who did the Raiders play in week 12?",
    "question_th": "Raiders เล่นกับใครในสัปดาห์ที่ 12?",
    "context": "CREATE TABLE table_name_25 (opponent VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_21 WHERE game_site = \"the kingdome\"",
    "question_en": "How many people were at the game that took place at the Kingdome?",
    "question_th": "มีกี่คนที่เล่นเกมที่ 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_en": "Which is the LMS SPR when the car number was 15?",
    "question_th": "LMS SPR คือรุ่นไหนตอนรถหมายเลข 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_en": "When the CAT FEA is 3 how many points were scored?",
    "question_th": "เมื่อ CAT FEA ได้ที่ 3 ได้กี่คะแนน?",
    "context": "CREATE TABLE table_name_88 (points VARCHAR, cat_fea VARCHAR)"
  },
  {
    "answer": "SELECT spa_fea FROM table_name_60 WHERE lms_fea = \"5\"",
    "question_en": "What was the SPA FEA when the LMS FEA was 5?",
    "question_th": "SPA FEA คืออะไรเมื่อ LMS FEA อยู่ที่ 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_en": "What was the MNZ FEA when the SIL SPR was 18?",
    "question_th": "MNZ FEA คืออะไรเมื่อ SIL SPR อายุ 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_en": "Which years did the Tampa Bay Storm win the Championships?",
    "question_th": "Tampa Bay Storm ชนะการแข่งขัน Championships กี่ปี?",
    "context": "CREATE TABLE table_name_71 (championships__years_ VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT height FROM table_name_57 WHERE year_born < 1975",
    "question_en": "What is the height of the person born before 1975?",
    "question_th": "คนที่เกิดก่อนปี 2518 มีส่วนสูงเท่าไร?",
    "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_en": "How many times did Ken Wright expired in North Western?",
    "question_th": "Ken Wright เสียชีวิตในภาคตะวันตกเฉียงเหนือกี่ครั้ง?",
    "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_en": "Name the 2010 with tournament of grand slam tournaments",
    "question_th": "ตั้งชื่อปี 2010 ด้วยทัวร์นาเมนต์การแข่งขันแกรนด์สแลม",
    "context": "CREATE TABLE table_name_33 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2008 FROM table_name_58 WHERE 2010 = \"2r\" AND tournament = \"wimbledon\"",
    "question_en": "Name the 2008 with 2010 of 2r and wimbledon tournament",
    "question_th": "ตั้งชื่อปี 2008 ด้วยการแข่งขัน 2r และวิมเบิลดันปี 2010",
    "context": "CREATE TABLE table_name_58 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2013 FROM table_name_22 WHERE 2010 = \"1r\"",
    "question_en": "Name the 2013 for 2010 of 1r",
    "question_th": "ตั้งชื่อปี 2013 สำหรับปี 2010 จาก 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_en": "Name the 2010 for 2008 of 1r and tournament of us open",
    "question_th": "ตั้งชื่อ 2010 สำหรับ 2008 ของ 1r และทัวร์นาเมนต์ของเราเปิด",
    "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_en": "Which years have a Decile of 4, an Authority of state, and a Name of mapiu school?",
    "question_th": "ปีใดบ้างที่มี Decile เท่ากับ 4 มีหน่วยงานของรัฐ และชื่อโรงเรียน Mapiu",
    "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_en": "Which years have a Decile smaller than 6, an Area of te kuiti, and an Authority of state integrated?",
    "question_th": "ปีใดที่มี Decile น้อยกว่า 6, Area of te kuiti และ 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_en": "What is the average Decile with a state authority and a Name of mapiu school?",
    "question_th": "Decile เฉลี่ยที่มีอำนาจของรัฐและชื่อโรงเรียน Mapiu คืออะไร?",
    "context": "CREATE TABLE table_name_16 (decile INTEGER, authority VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT years FROM table_name_16 WHERE area = \"rangitoto\"",
    "question_en": "Which years have an Area of rangitoto?",
    "question_th": "ปีใดมีพื้นที่เป็น rangitoto",
    "context": "CREATE TABLE table_name_16 (years VARCHAR, area VARCHAR)"
  },
  {
    "answer": "SELECT gender FROM table_name_6 WHERE name = \"rangitoto school\"",
    "question_en": "Which gender has a Name of rangitoto school?",
    "question_th": "เพศใดมีชื่อโรงเรียนรังกิโตโตะ?",
    "context": "CREATE TABLE table_name_6 (gender VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_89 WHERE player = \"ralph guldahl\"",
    "question_en": "What is the t o par for Ralph Guldahl?",
    "question_th": "ค่าพาร์ของราล์ฟ กุลดาห์ล คืออะไร?",
    "context": "CREATE TABLE table_name_89 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_22 WHERE player = \"ky laffoon\"",
    "question_en": "What is the score for Ky Laffoon?",
    "question_th": "กี ลาฟฟูน ให้คะแนนเท่าไหร่?",
    "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_en": "What is the score of Ralph Guldahl, who has more than $100?",
    "question_th": "Ralph Guldahl ที่มีเงินมากกว่า 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_en": "What is the highest amount of money a play from Scotland United States has?",
    "question_th": "จำนวนเงินสูงสุดที่ละครจากสกอตแลนด์สหรัฐอเมริกามีคือเท่าไร?",
    "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_en": "How many Goals have a Pct % larger than 0.557, a points value smaller than 90, and a games value larger than 68?",
    "question_th": "มีกี่ประตูที่มี Pct % มากกว่า 0.557 คะแนนน้อยกว่า 90 และเกมมีมูลค่ามากกว่า 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_en": "What is the draw record (%) total for clubs with more than 3 wins with 10 matches and more than 1 draw?",
    "question_th": "ผลรวมการจับสลาก (%) สำหรับสโมสรที่ชนะมากกว่า 3 ครั้งโดย 10 นัดและเสมอมากกว่า 1 ครั้งเป็นเท่าใด?",
    "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_en": "How many draws, more than 6, does Newcastle Knights have with a record (%) larger than 25?",
    "question_th": "นิวคาสเซิ่ล ไนท์ส มีเสมอมากกว่า 6 กี่ครั้งโดยสถิติ (%) มากกว่า 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_en": "Which club has the most losses with 10 matches played and more than 1 draw?",
    "question_th": "สโมสรใดแพ้มากที่สุดโดยลงเล่น 10 นัดและเสมอมากกว่า 1 นัด?",
    "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_en": "The year of 1985 which has a BB +HBP of 39 has what Number listed?",
    "question_th": "ปี 2528 ซึ่งมี BB +HBP เท่ากับ 39 มีเลขอะไรระบุไว้บ้าง?",
    "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_en": "The year that has a BB + HBP of 51 is listed as?",
    "question_th": "ปีที่มี BB + HBP เท่ากับ 51 มีรายการเป็น ?",
    "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_en": "In the year 1992 for the Seibu Lions, the BB + HBP which is larger than 49 was this as a BA (Place)?",
    "question_th": "ในปี 1992 สำหรับ Seibu Lions นั้น BB + HBP ซึ่งใหญ่กว่า 49 นี่ถือเป็น 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_en": "What team lost on May 1?",
    "question_th": "ทีมไหนแพ้ในวันที่ 1 พฤษภาคม?",
    "context": "CREATE TABLE table_name_62 (loss VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_72 WHERE date = \"may 1\"",
    "question_en": "What was the final score for the game on May 1?",
    "question_th": "คะแนนสุดท้ายของเกมวันที่ 1 พฤษภาคมเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_72 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_91 WHERE date = \"may 4\"",
    "question_en": "What was the final score for the game on May 4?",
    "question_th": "คะแนนสุดท้ายของเกมวันที่ 4 พฤษภาคมเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_91 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT 1994 FROM table_name_38 WHERE tournament = \"atp masters series\"",
    "question_en": "In 1994 what tournament held a ATP masters series",
    "question_th": "ในปี 1994 การแข่งขันใดจัด 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_en": "What is the Career SR of the year that held the masters series Sr tournament",
    "question_th": "Career SR แห่งปีที่จัดการแข่งขัน Masters Series Sr คืออะไร",
    "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_en": "WHich competition was held on Alvor with a score 1-0?",
    "question_th": "การแข่งขันใดที่จัดขึ้นที่ อัลวอร์ ด้วยสกอร์ 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_en": "Which name has a Lane of 7?",
    "question_th": "ชื่ออะไรมีเลนเป็น 7?",
    "context": "CREATE TABLE table_name_79 (name VARCHAR, lane VARCHAR)"
  },
  {
    "answer": "SELECT SUM(lane) FROM table_name_58 WHERE nationality = \"iceland\"",
    "question_en": "How many lanes have a Nationality of iceland?",
    "question_th": "มีกี่เลนที่มีสัญชาติไอซ์แลนด์?",
    "context": "CREATE TABLE table_name_58 (lane INTEGER, nationality VARCHAR)"
  },
  {
    "answer": "SELECT MIN(rank) FROM table_name_65 WHERE lane = 1",
    "question_en": "What is the smallest rank with a Lane of 1?",
    "question_th": "ตำแหน่งที่เล็กที่สุดที่มีเลน 1 คืออะไร?",
    "context": "CREATE TABLE table_name_65 (rank INTEGER, lane VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_28 WHERE game = 1",
    "question_en": "What was the final score of Game 1?",
    "question_th": "คะแนนสุดท้ายของเกมที่ 1 คืออะไร?",
    "context": "CREATE TABLE table_name_28 (score VARCHAR, game VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_48 WHERE time = \"2:48\"",
    "question_en": "What date has 2:48 as the time?",
    "question_th": "เวลา 2:48 เป็นวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_48 (date VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_91 WHERE time = \"2:57\"",
    "question_en": "Which record has 2:57 as the time?",
    "question_th": "บันทึกใดที่มีเวลา 2:57 เป็นเวลา?",
    "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_en": "Can you tell me the Losing BP that has Played of 22, and the Lost of 5?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าแพ้ BP ที่เล่นไปแล้ว 22 ครั้ง และแพ้ 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_en": "Can you tell the Lost that has the Try BP of 10, and the Club of uwic rfc?",
    "question_th": "คุณช่วยบอกพวก Lost ที่มี Try BP ไว้ที่ 10 และ 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_en": "Can you tell me the Club that has the Lost of 19?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่า Club ที่มี 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_en": "Can you tell me the Lost that has Losing BP of 5, and the Try BP of 0?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่า Lost ที่มีการสูญเสีย BP เป็น 5 และ Try BP เป็น 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_en": "Can you tell me the Played that has the Club of club?",
    "question_th": "คุณช่วยบอก Played ที่มี Club of club หน่อยได้ไหม?",
    "context": "CREATE TABLE table_name_15 (played VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_name_84 WHERE try_bp = \"0\"",
    "question_en": "Can you tell me the Club thay has the Try BP of 0?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่า Club นั้นมี Try BP เป็น 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_en": "What date did the Mountaineers score 27 points and their opponent scored more that 7?",
    "question_th": "นักปีนเขาทำคะแนนได้ 27 คะแนนเมื่อใดและคู่ต่อสู้ทำคะแนนได้มากกว่า 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_en": "What was the final result when the Mountaineers scored less than 13 and their opponents scored 26?",
    "question_th": "อะไรคือผลลัพธ์สุดท้ายเมื่อนักปีนเขาทำคะแนนได้น้อยกว่า 13 และคู่ต่อสู้ทำคะแนนได้ 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_en": "With a Tally of 0-14, what is the Rank in Kilkenny County?",
    "question_th": "ด้วยการนับ 0-14 อันดับใน 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_en": "What County has Dublin as the Opposition?",
    "question_th": "มณฑลใดมีดับลินเป็นฝ่ายค้าน?",
    "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_en": "In Limerick County, what is the Rank with a Total larger than 12 and Tipperary as the Opposition?",
    "question_th": "ในเทศมณฑล Limerick อันดับที่มีคะแนนรวมมากกว่า 12 และ Tipperary เป็นฝ่ายค้านคืออะไร",
    "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_en": "What Player in Opposition of Kilkenny has a Total of 10?",
    "question_th": "ผู้เล่นฝ่ายค้านคนใดของคิลเคนนี่มีคะแนนรวม 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_en": "What is the time in Romania that has a lane larger than 4?",
    "question_th": "เวลาใดในโรมาเนียที่มีเลนใหญ่กว่า 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_en": "Jin Hao had what amount of heat?",
    "question_th": "จินห่าวมีความร้อนมากแค่ไหน?",
    "context": "CREATE TABLE table_name_54 (heat VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT heat FROM table_name_1 WHERE time = \"15:29.69\"",
    "question_en": "At time 15:29.69 what was the heat?",
    "question_th": "เวลา 15:29.69 น. ร้อนแค่ไหน?",
    "context": "CREATE TABLE table_name_1 (heat VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_name_31 WHERE laps < 6",
    "question_en": "What is the class of the team when less than 6 laps were completed?",
    "question_th": "เมื่อครบ 6 รอบแล้วทีมคลาสอะไร?",
    "context": "CREATE TABLE table_name_31 (class VARCHAR, laps INTEGER)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_name_51 WHERE team = \"scuderia lancia corse\"",
    "question_en": "What is the year when Scuderia Lancia Corse competed?",
    "question_th": "Scuderia Lancia Corse แข่งขันในปีใด?",
    "context": "CREATE TABLE table_name_51 (year VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT pos FROM table_name_23 WHERE year < 1973",
    "question_en": "What was the position of the teams before 1973?",
    "question_th": "ตำแหน่งของทีมก่อนปี 1973 คืออะไร?",
    "context": "CREATE TABLE table_name_23 (pos VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT laid_down FROM table_name_33 WHERE name = \"kaki\"",
    "question_en": "What is the laid down date of Kaki?",
    "question_th": "กากีวางแผงวันที่เท่าไหร่คะ?",
    "context": "CREATE TABLE table_name_33 (laid_down VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT launched FROM table_name_70 WHERE kanji = \"栗\"",
    "question_en": "What is the launch date of 栗?",
    "question_th": "栗 เปิดตัวเมื่อใด?",
    "context": "CREATE TABLE table_name_70 (launched VARCHAR, kanji VARCHAR)"
  },
  {
    "answer": "SELECT completed FROM table_name_87 WHERE kanji = \"蓬\"",
    "question_en": "What is the completed date of 蓬?",
    "question_th": "蓬เสร็จสมบูรณ์เมื่อใด?",
    "context": "CREATE TABLE table_name_87 (completed VARCHAR, kanji VARCHAR)"
  },
  {
    "answer": "SELECT catalog FROM table_name_89 WHERE date = \"december 19, 2001\"",
    "question_en": "Which catalog was published on December 19, 2001?",
    "question_th": "แค็ตตาล็อกใดที่เผยแพร่เมื่อวันที่ 19 ธันวาคม พ.ศ. 2544",
    "context": "CREATE TABLE table_name_89 (catalog VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_37 WHERE date = \"october 21, 1981\"",
    "question_en": "What is the label for October 21, 1981?",
    "question_th": "ป้ายกำกับสำหรับวันที่ 21 ตุลาคม พ.ศ. 2524 คืออะไร",
    "context": "CREATE TABLE table_name_37 (label VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_94 WHERE catalog = \"alca-9201\"",
    "question_en": "What is the date for Catalog Alca-9201?",
    "question_th": "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_en": "What is the format for July 27, 1994?",
    "question_th": "รูปแบบของวันที่ 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_en": "What is the date of the label Alfa records, a CD format, and an alca-9201 catalog?",
    "question_th": "วันที่บนฉลาก Alfa บันทึก รูปแบบซีดี และแค็ตตาล็อก alca-9201 คือเมื่อใด",
    "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_en": "What catalog has the CD format?",
    "question_th": "แคตตาล็อกใดมีรูปแบบซีดี",
    "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_en": "Which nationaly is ranked greater than 1, with a time of 59.75?",
    "question_th": "ชาติใดติดอันดับมากกว่า 1 ด้วยเวลา 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_en": "Which france nationality has a lane larger than 3?",
    "question_th": "สัญชาติฝรั่งเศสใดที่มีเลนใหญ่กว่า 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_en": "What's the total rank of the lane smaller than 8 with a time of 59.80?",
    "question_th": "อันดับรวมเลนเล็กกว่า 8 ด้วยเวลา 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_en": "What's the top rank that's lane is smaller than 1?",
    "question_th": "อันดับสูงสุดที่เลนเล็กกว่า 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_en": "What year did deputy prime minister Mariano Rajoy Brey take office?",
    "question_th": "รองนายกรัฐมนตรี Mariano Rajoy Brey เข้ารับตำแหน่งในปีใด",
    "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_en": "Which deputy prime minister left office in 2004 and was in the 7th legislature?",
    "question_th": "รองนายกรัฐมนตรีคนใดลาออกจากตำแหน่งในปี 2547 และอยู่ในสภานิติบัญญัติชุดที่ 7",
    "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_en": "Which deputy prime minister left office in 1981?",
    "question_th": "รองนายกรัฐมนตรีคนใดลาออกจากตำแหน่งในปี 2524?",
    "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_en": "How many points did Connaught Type A chassis earn on average before 1955?",
    "question_th": "แชสซี Connaught Type A ได้รับคะแนนเฉลี่ยก่อนปี 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_en": "What is the lowest points with 6 draws and lower than rank 10?",
    "question_th": "แต้มต่ำสุด 6 เสมอ ต่ำกว่าอันดับ 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_en": "What is the lowest draw with rank 4?",
    "question_th": "เสมอต่ำสุดกับอันดับ 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_en": "How many draws has lower than rank 10 in rumba/cha-cha/jazz dance?",
    "question_th": "มีกี่งวดที่ต่ำกว่าอันดับ 10 ในการเต้นรุมบ้า/ชะชะ/แจ๊ส?",
    "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_en": "How many draws have rumba/tango dance styles?",
    "question_th": "มีกี่รูปแบบการเต้นจังหวะรุมบา/แทงโก้?",
    "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_en": "What's the sum of the totals for Russia with more than 1 gold and less than 10 bronze?",
    "question_th": "ผลรวมของรัสเซียที่มีมากกว่า 1 เหรียญทองและน้อยกว่า 10 เหรียญทองแดงเป็นเท่าใด",
    "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_en": "what tournament happened on march 27, 2006?",
    "question_th": "การแข่งขันอะไรเกิดขึ้นในวันที่ 27 มีนาคม 2549?",
    "context": "CREATE TABLE table_name_34 (tournament VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_59 WHERE opponent = \"scoville jenkins\"",
    "question_en": "what was the score when scoville jenkins was the opponent?",
    "question_th": "ตอนที่สโควิลล์ เจนกินส์เป็นคู่ต่อสู้ได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_59 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_91 WHERE date = \"november 14, 2005\"",
    "question_en": "what was the opponent on november 14, 2005?",
    "question_th": "คู่ต่อสู้เมื่อวันที่ 14 พฤศจิกายน 2548 คืออะไร?",
    "context": "CREATE TABLE table_name_91 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_94 WHERE date = \"may 2, 2011\"",
    "question_en": "what tournament happened on may 2, 2011?",
    "question_th": "การแข่งขันอะไรเกิดขึ้นในวันที่ 2 พฤษภาคม 2554?",
    "context": "CREATE TABLE table_name_94 (tournament VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_51 WHERE opponent = \"sam querrey\"",
    "question_en": "what tournament had sam querrey as the opponent?",
    "question_th": "การแข่งขันใดที่มี sam querrey เป็นคู่ต่อสู้?",
    "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_en": "what tournament was on a hard surface and saw jacob adaktusson as the opponent?",
    "question_th": "ทัวร์นาเมนต์ใดที่อยู่บนพื้นผิวแข็งและเห็น jacob adaktusson เป็นคู่ต่อสู้?",
    "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_en": "Who was the opponent on September 17, 1995?",
    "question_th": "คู่ต่อสู้เมื่อวันที่ 17 กันยายน 2538 คือใคร?",
    "context": "CREATE TABLE table_name_63 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_93 WHERE attendance = \"51,265\"",
    "question_en": "Which week had an attendance of 51,265?",
    "question_th": "สัปดาห์ใดมีผู้เข้าร่วม 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_en": "Who was the opponent on December 17, 1995?",
    "question_th": "คู่ต่อสู้เมื่อวันที่ 17 ธันวาคม 2538 คือใคร?",
    "context": "CREATE TABLE table_name_58 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_94 WHERE time = \"4:14\"",
    "question_en": "Which record has 4:14 as the time?",
    "question_th": "บันทึกใดที่มีเวลา 4:14 เป็นเวลา?",
    "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_en": "Which record has tko (strikes) as the method, and daan kooiman as the opponent?",
    "question_th": "บันทึกใดที่มี tko (นัดหยุดงาน) เป็นวิธีการ และ daan kooiman เป็นคู่ต่อสู้?",
    "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_en": "Which round has pain and glory 2006 as the event?",
    "question_th": "รอบไหนมีความเจ็บปวดและศักดิ์ศรี ปี 2549 เป็นงาน?",
    "context": "CREATE TABLE table_name_94 (round VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_14 WHERE opponent = \"john flemming\"",
    "question_en": "Which record has john flemming as the opponent?",
    "question_th": "บันทึกใดที่มีจอห์น เฟลมมิงเป็นคู่ต่อสู้?",
    "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_en": "Which record has 5:00 as the time, jess liaudin as the opponent for the location of england?",
    "question_th": "สถิติใดที่มีเวลา 5:00 น. เจส ลิออดินเป็นคู่ต่อสู้ในเรื่องตำแหน่งของอังกฤษ",
    "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_en": "Name the score for home of green bay packers",
    "question_th": "ตั้งชื่อคะแนนให้กับทีมเหย้าของกรีนเบย์แพ็คเกอร์ส",
    "context": "CREATE TABLE table_name_37 (score VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_93 WHERE score = \"21-17\"",
    "question_en": "Name the home for 21-17",
    "question_th": "ตั้งชื่อบ้านสำหรับวันที่ 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_en": "What engine did Scuderia Ambrosiana with fewer than 4 points have?",
    "question_th": "Scuderia Ambrosiana ที่มีคะแนนน้อยกว่า 4 แต้มมีเครื่องยนต์อะไร?",
    "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_en": "What chassis had fewer than 0 points in a year before 1954?",
    "question_th": "แชสซีใดมีคะแนนน้อยกว่า 0 ในหนึ่งปีก่อนปี 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_en": "What chassis had an entrant of G.A. Vandervell?",
    "question_th": "แชสซีใดที่มาจาก GA Vandervell",
    "context": "CREATE TABLE table_name_5 (chassis VARCHAR, entrant VARCHAR)"
  },
  {
    "answer": "SELECT MIN(attendance) FROM table_name_3 WHERE date = \"may 2\"",
    "question_en": "How many people were in attendance on may 2?",
    "question_th": "วันที่ 2 พฤษภาคม มีผู้เข้าร่วมกี่คน?",
    "context": "CREATE TABLE table_name_3 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT MIN(attendance) FROM table_name_7 WHERE date = \"may 17\"",
    "question_en": "How many people were in attendance on may 17?",
    "question_th": "วันที่ 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_en": "How many weeks did the single that entered the charts 14 september 2002 stay on the charts ?",
    "question_th": "ซิงเกิลที่เข้าชาร์ตในวันที่ 14 กันยายน พ.ศ. 2545 อยู่ในชาร์ตกี่สัปดาห์?",
    "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_en": "Which single was on the Charts for 23 weeks ?",
    "question_th": "ซิงเกิลไหนอยู่ในชาร์ตนานถึง 23 สัปดาห์?",
    "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_en": "How many ECTS credit points occur with Master in Management?",
    "question_th": "มีคะแนนเครดิต ECTS กี่คะแนนสำหรับ 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_en": "What is the teaching language for Master of Quantitative Finance?",
    "question_th": "ภาษาการสอนสำหรับปริญญาโทสาขาการเงินเชิงปริมาณคืออะไร?",
    "context": "CREATE TABLE table_name_69 (teaching_language VARCHAR, program VARCHAR)"
  },
  {
    "answer": "SELECT program FROM table_name_35 WHERE duration__years_ = 3.5",
    "question_en": "Which program has 3.5 years?",
    "question_th": "โปรแกรมไหนมี 3.5 ปี?",
    "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_en": "What is the teaching language for a less than 2 year duration and less than 65 ECTS credit points?",
    "question_th": "ภาษาการสอนสำหรับระยะเวลาน้อยกว่า 2 ปีและคะแนนเครดิตน้อยกว่า 65 ECTS คืออะไร",
    "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_en": "What engine has more than 0 pts?",
    "question_th": "เครื่องยนต์ใดที่มีมากกว่า 0 คะแนน?",
    "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_en": "What is the average pots of Alfa Romeo v12 after 1983?",
    "question_th": "หม้อเฉลี่ยของ Alfa Romeo v12 หลังปี 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_en": "What was the total against in uefa champions league/european cup with more than 1 draw?",
    "question_th": "ยูฟ่าแชมเปียนส์ลีก/ยูโรเปียนคัพ เสมอมากกว่า 1 นัด มีผลรวมเท่าไร?",
    "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_en": "What is the total against with 1 draw and less than 8 played?",
    "question_th": "ผลรวมของการเสมอ 1 ครั้งและเล่นน้อยกว่า 8 ครั้งเป็นเท่าใด?",
    "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_en": "How many times did Super Nova Racing win with a zytek engine?",
    "question_th": "Super Nova Racing ชนะด้วยเครื่องยนต์ zytek กี่ครั้ง?",
    "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_en": "How many main wins for France?",
    "question_th": "ชัยชนะหลักๆ ของฝรั่งเศสมีกี่นัด?",
    "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_en": "How many poles does status grand prix have?",
    "question_th": "สเตตัส กรังด์ปรีซ์ มีกี่โพล?",
    "context": "CREATE TABLE table_name_57 (poles VARCHAR, racing_team VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_77 WHERE record = \"88-74\"",
    "question_en": "Question does not make sense since there was no record of 88-74",
    "question_th": "คำถามไม่สมเหตุสมผลเนื่องจากไม่มีบันทึก 88-74",
    "context": "CREATE TABLE table_name_77 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT award FROM table_name_1 WHERE name = \"lowe\"",
    "question_en": "What is the award type for all Lowe awards?",
    "question_th": "รางวัลประเภทรางวัล Lowe ทั้งหมดคืออะไร?",
    "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_en": "Which engine(s) has a year of 1966, and a point of 42.",
    "question_th": "เครื่องยนต์ใดมีปี 1966 และคะแนน 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_en": "What was the score against hapoel tel aviv?",
    "question_th": "ฮาโปเอล เทล อาวีฟ ให้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_32 (score1 VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_51 WHERE opponent = \"cambridge united\"",
    "question_en": "What day did they play cambridge united?",
    "question_th": "พวกเขาเล่น Cambridge United วันไหน?",
    "context": "CREATE TABLE table_name_51 (date VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT ground FROM table_name_65 WHERE match = 8",
    "question_en": "Where was match 8 played?",
    "question_th": "นัดที่ 8 เล่นที่ไหน?",
    "context": "CREATE TABLE table_name_65 (ground VARCHAR, match VARCHAR)"
  },
  {
    "answer": "SELECT name_[b_] FROM table_name_63 WHERE Pwin_percentage = 0.696",
    "question_en": "What is the name of the person with a PWin% of .696?",
    "question_th": "คนที่มี PWin% เท่ากับ .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 = — AND term_[c_] = \"1987–1988\" AND win_percentage < 0.506",
    "question_en": "What is the sum of the game with a PWin% of —, Term [c] of 1987–1988, and Win% less than 0.506?",
    "question_th": "ผลรวมของเกมที่มี PWin% เป็น —, เทอม [c] ของปี 1987–1988 และ% ชนะน้อยกว่า 0.506 คืออะไร?",
    "context": "CREATE TABLE table_name_30 (games INTEGER, win_percentage VARCHAR, Pwin_percentage VARCHAR, — VARCHAR, term_ VARCHAR, c_ VARCHAR)"
  },
  {
    "answer": "SELECT win_percentage FROM table_name_88 WHERE games = 80 AND Pwin_percentage = — AND term_[c_] = \"1987–1988\"",
    "question_en": "What is the win% for the game 80 and a PWin% of —, and a Term [c ] of 1987–1988?",
    "question_th": "win% สำหรับเกม 80 และ PWin% ของ — และระยะเวลา [c ] ของปี 1987–1988 คืออะไร?",
    "context": "CREATE TABLE table_name_88 (win_percentage VARCHAR, games VARCHAR, Pwin_percentage VARCHAR, — VARCHAR, term_ VARCHAR, c_ VARCHAR)"
  },
  {
    "answer": "SELECT SUM(games) FROM table_name_24 WHERE term_[c_] = \"1969 – 1973\"",
    "question_en": "What is the of games when for the term [c] of 1969 – 1973?",
    "question_th": "อะไรคือเกมเมื่อใดสำหรับคำว่า [c] ของปี 1969 – 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_en": "What was the method of execution on September 24, 1830?",
    "question_th": "การประหารชีวิตในวันที่ 24 กันยายน พ.ศ. 2373 มีวิธีการอย่างไร?",
    "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_en": "How was the native american, Wau-Bau-Ne-Me-Mee, executed?",
    "question_th": "Wau-Bau-Ne-Me-Mee ชาวอเมริกันพื้นเมืองถูกประหารชีวิตอย่างไร?",
    "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_en": "What was the race of the person executed on December 27, 1827?",
    "question_th": "ผู้ที่ถูกประหารชีวิตเมื่อวันที่ 27 ธันวาคม พ.ศ. 2370 เป็นเชื้อชาติอะไร?",
    "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_en": "In what way was Kewaubis executed on December 27, 1827?",
    "question_th": "Kewaubis ถูกประหารชีวิตด้วยวิธีใดในวันที่ 27 ธันวาคม พ.ศ. 2370",
    "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_en": "How was the native american executed in July 1836?",
    "question_th": "ชนพื้นเมืองอเมริกันถูกประหารชีวิตอย่างไรในเดือนกรกฎาคม พ.ศ. 2379",
    "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_en": "How many draws have 1 win, 1 loss, and a Goal Differential of +1?",
    "question_th": "เสมอกันกี่ครั้งโดยชนะ 1 ครั้ง แพ้ 1 ครั้ง และผลต่างประตูเป็น +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_en": "What genre is Led Zeppelin?",
    "question_th": "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_en": "On what date was the Loss by Flanagan (6-7)?",
    "question_th": "ฟลานาแกน (6-7) พ่ายแพ้เมื่อใด",
    "context": "CREATE TABLE table_name_40 (date VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_45 WHERE record = \"48-50\"",
    "question_en": "During which loss was the record 48-50?",
    "question_th": "แพ้ 48-50 ในช่วงไหน?",
    "context": "CREATE TABLE table_name_45 (loss VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_22 WHERE record = \"47-49\"",
    "question_en": "What was the score that made the record 47-49?",
    "question_th": "สกอร์ที่ทำสถิติ 47-49 เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_22 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_61 WHERE date = \"july 29\"",
    "question_en": "Who was the Opponent on July 29?",
    "question_th": "ใครคือฝ่ายตรงข้ามในวันที่ 29 กรกฎาคม?",
    "context": "CREATE TABLE table_name_61 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_27 WHERE loss = \"key (7-11)\"",
    "question_en": "What was the record during the loss by key (7-11)?",
    "question_th": "ระหว่างทำคีย์หาย (7-11) มีสถิติอะไรบ้าง?",
    "context": "CREATE TABLE table_name_27 (record VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT SUM(diagram) FROM table_name_2 WHERE builder = \"york\"",
    "question_en": "What is the total diagram for builder york?",
    "question_th": "แผนภาพทั้งหมดสำหรับ 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_en": "What fleet  numbers have a diagram less than 99 and built in 1960?",
    "question_th": "หมายเลขกองเรือใดมีแผนผังน้อยกว่า 99 และสร้างขึ้นในปี 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_en": "What diagram built in 1962 has a lot number smaller than 30702?",
    "question_th": "แผนภาพใดที่สร้างขึ้นในปี 1962 มีจำนวนมากน้อยกว่า 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_en": "What builder has lot number 30702?",
    "question_th": "ช่างก่อสร้างคนไหนมีหมายเลขล็อต 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_en": "Which Genre has a Year before 2013, and a Name of kikumana?",
    "question_th": "ประเภทใดที่มีหนึ่งปีก่อนปี 2013 และชื่อของ 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_en": "In what year has a Post of designer?",
    "question_th": "มีตำแหน่งนักออกแบบในปีไหน?",
    "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_en": "Who is listed as the Visitor that has a Home of Boston Bruins and a Date of November 15?",
    "question_th": "ใครบ้างที่ถูกระบุว่าเป็นผู้มาเยือนที่มีบ้านของบอสตัน บรูอินส์ และมีวันที่ 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_en": "Which Visitor is listed as having a Date of December 17?",
    "question_th": "ผู้เข้าชมรายใดที่ถูกระบุว่ามีวันที่ 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_en": "What's the Score with the Visitor of Montreal Maroons and has a Date of December 28?",
    "question_th": "คะแนนของผู้เยี่ยมชม Montreal Maroons คืออะไรและมีวันที่ 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_en": "What's the attendance of the san diego chargers game before week 6?",
    "question_th": "แมตช์ซานดิเอโก ชาร์จเจอร์ส ก่อนสัปดาห์ที่ 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_en": "How many wins have a Top-25 of 1, Less than 2 cuts, and fewer than 5 events?",
    "question_th": "มีกี่ชัยชนะที่มี 25 อันดับแรกจาก 1 ครั้ง ตัดน้อยกว่า 2 ครั้ง และมีเหตุการณ์น้อยกว่า 5 รายการ",
    "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_en": "How many events have a Top-25 of 1 and made less than 1 cut?",
    "question_th": "มีกี่เหตุการณ์ที่มี 25 อันดับแรกจาก 1 และตัดน้อยกว่า 1 ครั้ง",
    "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_en": "During the PGA Championship, what's the lowest amount of events with wins greater than 0?",
    "question_th": "ในระหว่างการแข่งขัน PGA Championship จำนวนรายการต่ำสุดที่ชนะมากกว่า 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_en": "What's the lowest number of cuts made while the win was less than 0?",
    "question_th": "จำนวนการตัดต่ำสุดที่เกิดขึ้นในขณะที่ชนะน้อยกว่า 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_en": "Which Reactortype has a gross capacity of 417 mw and an Electricity Grid of 27.12.1971?",
    "question_th": "เครื่องปฏิกรณ์ประเภทใดมีกำลังการผลิตรวม 417 mw และโครงข่ายไฟฟ้าเท่ากับ 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_en": "Which Unit's Construction started on 01.07.1967?",
    "question_th": "การก่อสร้างหน่วยใดเริ่มในวันที่ 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_en": "Which Commercial Operation has both a Gross Capacity of 417 mw and an Electricity Grid 27.12.1971?",
    "question_th": "การดำเนินการเชิงพาณิชย์ใดที่มีทั้งกำลังการผลิตรวม 417 mw และสายส่งไฟฟ้า 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_en": "When did the Electricity Grid 28.12.1972 officially shutdown?",
    "question_th": "การไฟฟ้าในวันที่ 28.12.1972 ปิดอย่างเป็นทางการเมื่อใด",
    "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_en": "Which Electricity Grid started its Commercial Operation of 24.03.1973?",
    "question_th": "โครงข่ายไฟฟ้าใดที่เริ่มดำเนินการเชิงพาณิชย์ในวันที่ 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_en": "Tell what has the App(GS/Sub) of 14 (8/6)",
    "question_th": "บอกว่า App(GS/Sub) มีอะไรบ้าง 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_en": "Name the goals with since less than 2007 and App(GS/Sub) of 97 (69/28)",
    "question_th": "ตั้งชื่อเป้าหมายตั้งแต่น้อยกว่าปี 2550 และ App(GS/Sub) ที่ 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_en": "When is  Cadott Rock Fest taken place?",
    "question_th": "Cadott Rock Fest จัดขึ้นเมื่อไหร่?",
    "context": "CREATE TABLE table_name_65 (date VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_29 WHERE venue = \"mandalay bay resort\"",
    "question_en": "Which City has mandalay bay resort",
    "question_th": "ซึ่งเมืองนี้มีมัณฑะเลย์เบย์รีสอร์ท",
    "context": "CREATE TABLE table_name_29 (city VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_70 WHERE date = \"october 26, 2007\"",
    "question_en": "Which City has a Date on october 26, 2007",
    "question_th": "เมืองใดมีวันที่ 26 ตุลาคม 2550",
    "context": "CREATE TABLE table_name_70 (city VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_75 WHERE venue = \"mandalay bay resort\"",
    "question_en": "Which Attendance has Mandalay Bay Resort",
    "question_th": "ซึ่งผู้เข้าร่วมมีมั ณ ฑะเลย์เบย์รีสอร์ท",
    "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_en": "When is Country of united states, and a Venue of mandalay bay resort in?",
    "question_th": "ประเทศสหรัฐอเมริกา และสถานที่จัดงานของมั ณ ฑะเลย์ เบย์ รีสอร์ท จะมาเมื่อใด?",
    "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_en": "When has a City of san jacinto, california?",
    "question_th": "เมืองซานจาซินโต รัฐแคลิฟอร์เนีย มีเมื่อใด",
    "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_en": "Which Chassis has more than 0 points, an Entrant of Scuderia Ferrari, and was later than 1952?",
    "question_th": "แชสซีใดที่มีคะแนนมากกว่า 0 เป็นผู้เข้าร่วม Scuderia Ferrari และอยู่หลังปี 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_en": "Which Entrant has a vanwall straight-4 engine?",
    "question_th": "ผู้เข้าแข่งขันรายใดมีเครื่องยนต์ vanwall ตรง 4?",
    "context": "CREATE TABLE table_name_47 (entrant VARCHAR, engine VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_name_58 WHERE date = \"1970\"",
    "question_en": "Which region has a date of 1970?",
    "question_th": "ภูมิภาคใดมีวันที่ปี 1970",
    "context": "CREATE TABLE table_name_58 (region VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_52 WHERE date = \"1987\"",
    "question_en": "Which label has a date of 1987?",
    "question_th": "ป้ายใดมีวันที่ปี 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_en": "Which catalogue has a formate of \"CD Remastered with 3 bonus tracks\"?",
    "question_th": "แคตตาล็อกใดมีรูปแบบ \"CD Remastered with 3 Bonus Track\"?",
    "context": "CREATE TABLE table_name_39 (catalogue VARCHAR, format VARCHAR)"
  },
  {
    "answer": "SELECT catalogue FROM table_name_63 WHERE date = \"1987\"",
    "question_en": "Which catalogue has a date of 1987?",
    "question_th": "แคตตาล็อกใดมีวันที่ปี 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_en": "What is the latest season where Al Ahly is the runners-up?",
    "question_th": "ฤดูกาลล่าสุดที่อัล อาห์ลี รองแชมป์คืออะไร?",
    "context": "CREATE TABLE table_name_94 (season INTEGER, runners_up VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_87 WHERE score = \"vasco da gama\"",
    "question_en": "What is the season where Vasco da gama is the score?",
    "question_th": "ฤดูกาลไหนที่ วาสโก ดา กามา ทำสกอร์ได้?",
    "context": "CREATE TABLE table_name_87 (season VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT winners FROM table_name_92 WHERE season = 2010",
    "question_en": "Who is the winner in 2010?",
    "question_th": "ใครคือผู้ชนะในปี 2010?",
    "context": "CREATE TABLE table_name_92 (winners VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT winners FROM table_name_30 WHERE season = 2011",
    "question_en": "Who is the winner in 2011?",
    "question_th": "ใครคือผู้ชนะในปี 2554?",
    "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_en": "What was the third place of the performance in 2006 with the host Japan?",
    "question_th": "อันดับสามของการแสดงในปี 2549 กับเจ้าภาพญี่ปุ่นคืออะไร?",
    "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_en": "Which round did Dundee United end in?",
    "question_th": "ดันดี ยูไนเต็ด จบในรอบไหน?",
    "context": "CREATE TABLE table_name_11 (round VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_25 WHERE pursuit = \"18th\" AND sprint = \"20th\"",
    "question_en": "Name the event with pursuit of 18th and sprint of 20th",
    "question_th": "ตั้งชื่องานด้วยการไล่ตามวันที่ 18 และวิ่งวันที่ 20",
    "context": "CREATE TABLE table_name_25 (event VARCHAR, pursuit VARCHAR, sprint VARCHAR)"
  },
  {
    "answer": "SELECT pursuit FROM table_name_43 WHERE event = \"1994 lillehammer\"",
    "question_en": "Name the pursuit for 1994 lillehammer",
    "question_th": "ตั้งชื่อการติดตามลิลแฮมเมอร์ในปี 1994",
    "context": "CREATE TABLE table_name_43 (pursuit VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT sprint FROM table_name_28 WHERE mass_start = \"2nd\"",
    "question_en": "Name the sprint with mass start of 2nd",
    "question_th": "ตั้งชื่อการวิ่งโดยเริ่มจากมวลที่ 2",
    "context": "CREATE TABLE table_name_28 (sprint VARCHAR, mass_start VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_31 WHERE year = 1993",
    "question_en": "What country had a film in 1993?",
    "question_th": "ประเทศใดมีภาพยนตร์ในปี 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_en": "Where was Extreme Challenge 63 with a time of 2:00 held?",
    "question_th": "Extreme Challenge 63 เวลา 02.00 น. จัดขึ้นที่ไหน?",
    "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_en": "How many total rounds were there at UFC 114?",
    "question_th": "UFC 114 มีทั้งหมดกี่รอบ?",
    "context": "CREATE TABLE table_name_30 (round VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT res FROM table_name_1 WHERE time = \"0:20\"",
    "question_en": "In the round that lasted 0:20, what was the Res?",
    "question_th": "ในรอบที่กินเวลา 0:20 Res คืออะไร?",
    "context": "CREATE TABLE table_name_1 (res VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_94 WHERE event = \"ept baden classic\"",
    "question_en": "In what City was the Ept Baden Classic?",
    "question_th": "Ept Baden Classic ตั้งอยู่ในเมืองใด",
    "context": "CREATE TABLE table_name_94 (city VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_77 WHERE prize = \"€869,000\"",
    "question_en": "What Event has a Prize of €869,000?",
    "question_th": "กิจกรรมใดมีเงินรางวัล 869,000 ยูโร?",
    "context": "CREATE TABLE table_name_77 (event VARCHAR, prize VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_22 WHERE prize = \"zł2,153,999\"",
    "question_en": "What Winner had a Prize of zł2,153,999?",
    "question_th": "ผู้ชนะคนใดได้รับรางวัล zł2,153,999",
    "context": "CREATE TABLE table_name_22 (winner VARCHAR, prize VARCHAR)"
  },
  {
    "answer": "SELECT AVG(decile) FROM table_name_6 WHERE roll < 20",
    "question_en": "How many decile has a roll less than 20?",
    "question_th": "กี่เดซิล์มีม้วนน้อยกว่า 20?",
    "context": "CREATE TABLE table_name_6 (decile INTEGER, roll INTEGER)"
  },
  {
    "answer": "SELECT gender FROM table_name_62 WHERE roll = 627",
    "question_en": "Which gender had a roll of 627?",
    "question_th": "เพศไหนมีม้วน 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_en": "Glenorchy school has a decile less than 10 and is in what area?",
    "question_th": "โรงเรียน Glenorchy มีเดซิลน้อยกว่า 10 และอยู่เขตไหนคะ?",
    "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_en": "Makarora primary school has a roll less than 141 and what gender?",
    "question_th": "โรงเรียนประถมมากาโรระมีม้วนไม่ถึง 141 และเพศอะไร?",
    "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_en": "In what season did the Sporting CP Club have a 1. round?",
    "question_th": "สปอร์ติ้ง ซีพี คลับ มีรอบ 1. ในฤดูกาลใด?",
    "context": "CREATE TABLE table_name_78 (season VARCHAR, round VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT away FROM table_name_28 WHERE club = \"ekranas\"",
    "question_en": "The Club of Ekranas was an away with a score of what?",
    "question_th": "สโมสรเอครานัส เยือนด้วยสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_28 (away VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT lane FROM table_name_22 WHERE name = \"rhiannon leier\"",
    "question_en": "What is Rhiannon Leier's lane?",
    "question_th": "เลนของ Rhiannon Leier คืออะไร?",
    "context": "CREATE TABLE table_name_22 (lane VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT pennant FROM table_name_13 WHERE name = \"narbada\"",
    "question_en": "What pennant does Narbada have?",
    "question_th": "นาร์บาดามีธงอะไร?",
    "context": "CREATE TABLE table_name_13 (pennant VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT laid_down FROM table_name_26 WHERE pennant = \"u21\"",
    "question_en": "What date was the U21 pennant laid down?",
    "question_th": "ธง U21 วางวันไหน?",
    "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_en": "What position went lower than 106 from the College of Virginia?",
    "question_th": "ตำแหน่งใดที่ต่ำกว่า 106 จาก 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_en": "What is the lowest round a fullback went in?",
    "question_th": "ฟูลแบ็กเข้าไปรอบต่ำสุดที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_17 (round INTEGER, position VARCHAR)"
  },
  {
    "answer": "SELECT province FROM table_name_6 WHERE rank > 49",
    "question_en": "Name the province with rank more than 49",
    "question_th": "ตั้งชื่อจังหวัดที่มีอันดับมากกว่า 49",
    "context": "CREATE TABLE table_name_6 (province VARCHAR, rank INTEGER)"
  },
  {
    "answer": "SELECT mountain_peak FROM table_name_17 WHERE location = \"46.7000°n 60.5992°w\"",
    "question_en": "Name the mountain peak with location of 46.7000°n 60.5992°w",
    "question_th": "ตั้งชื่อยอดเขาด้วยตำแหน่ง 46.7000°n 60.5992°w",
    "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°n 75.0250°w\"",
    "question_en": "Name the mountain peak with rank less than 6 abd location of 81.9083°n 75.0250°w",
    "question_th": "ตั้งชื่อยอดเขาที่มียศน้อยกว่า 6 ตำแหน่ง 81.9083°n 75.0250°w",
    "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°n 78.6233°w\"",
    "question_en": "Name the mountain range for nunavut with location of 73.2294°n 78.6233°w",
    "question_th": "ตั้งชื่อเทือกเขาสำหรับนูนาวุตด้วยตำแหน่ง 73.2294°n 78.6233°w",
    "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_en": "Name the mountain peak of 49 rank",
    "question_th": "ชื่อยอดเขา49ยศ",
    "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_en": "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?",
    "question_th": "จำนวนการเกิดมีชีพทั้งหมดในปี 2549 โดยที่ 98.40% ของประชากรเป็นคนผิวขาวและมีมากกว่า 2 คนสำหรับ 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_en": "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?",
    "question_th": "GFR รวมต่ำสุดที่มีประชากร 95.80% เป็นคนผิวขาว และ TFR รวมมากกว่า 2.14 ในปี 2549 คือเท่าใด",
    "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_en": "In 2006, what is the highest number for Live births in the County of Cumbria that has a TFR larger than 1.76?",
    "question_th": "ในปี 2549 จำนวนการเกิดมีชีพสูงสุดในเขตคัมเบรียที่มี TFR มากกว่า 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_en": "Question doesn't make sense since there is no team of pramac d'antin ducati",
    "question_th": "คำถามไม่สมเหตุสมผลเนื่องจากไม่มีทีม 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_en": "Which player from the Ironi Nahariya club was born in 1980?",
    "question_th": "นักเตะคนไหนจากสโมสร Ironi Nahariya ที่เกิดในปี 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_en": "Which position from the Cherkassy Monkeys' club was born after 1978?",
    "question_th": "ตำแหน่งใดในสโมสร Cherkassy Monkeys ที่เกิดหลังปี 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_en": "What is the rank of the cinema when the headquarters are in toronto, ON and the screens is less than 1,438?",
    "question_th": "โรงภาพยนตร์อันดับไหนเมื่อสำนักงานใหญ่อยู่ที่โตรอนโต ON และจอน้อยกว่า 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_en": "what is the rank of the cinema when the number of sites is more than 62 and the circuit is cineplex entertainment?",
    "question_th": "โรงหนังอันดับไหนครับ เมื่อจำนวนโรงเกิน 62 แห่ง และวงจรเป็นซีนีเพล็กซ์ เอ็นเตอร์เทนเม้นท์?",
    "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_en": "what is the number of sites when the number of screens is 687 and rank is more than 7?",
    "question_th": "จำนวนไซต์เมื่อจำนวนหน้าจอคือ 687 และอันดับมากกว่า 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_en": "what is the lowest number of sites when the headquarters are in columbus, ga and the rank is smaller than 4?",
    "question_th": "จำนวนไซต์ต่ำสุดเมื่อสำนักงานใหญ่อยู่ในโคลัมบัส จอร์เจีย และอันดับน้อยกว่า 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_en": "What is the Other transliteration for value 1 000?",
    "question_th": "การทับศัพท์อื่นสำหรับค่า 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″ain\"",
    "question_en": "What is the word form for the ALA-LC transliteration of muay s″ain?",
    "question_th": "รูปแบบคำของการทับศัพท์ ALA-LC ของมวยไทยคืออะไร?",
    "context": "CREATE TABLE table_name_55 (word_form VARCHAR, ala_lc VARCHAR)"
  },
  {
    "answer": "SELECT value FROM table_name_90 WHERE other = \"muoy roy\"",
    "question_en": "What number value has the Other transliteration of muoy roy?",
    "question_th": "มอยรอยมีอักษรทับศัพท์อื่นเป็นค่าตัวเลขใด?",
    "context": "CREATE TABLE table_name_90 (value VARCHAR, other VARCHAR)"
  },
  {
    "answer": "SELECT word_form FROM table_name_79 WHERE ala_lc = \"muay bân\"",
    "question_en": "What is the word form for the ALA-LC transliteration of muay bân?",
    "question_th": "รูปแบบคำของการทับศัพท์ ALA-LC ของมวยบ้านคืออะไร?",
    "context": "CREATE TABLE table_name_79 (word_form VARCHAR, ala_lc VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_1 WHERE record = \"76-81\"",
    "question_en": "Name the loss when the record is 76-81",
    "question_th": "ตั้งชื่อขาดทุนเมื่อบันทึกเป็น 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_en": "Which average bronze had a silver greater than 2 and a gold larger than 7?",
    "question_th": "บรอนซ์โดยเฉลี่ยใดมีเงินมากกว่า 2 และทองมากกว่า 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_en": "When the total was 11 and silver was greater than 4 what was the highest gold?",
    "question_th": "เมื่อผลรวมเป็น 11 และเงินมากกว่า 4 ทองคำสูงสุดคืออะไร?",
    "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_en": "How many bronze had a total less than 4 and gold bigger than 1?",
    "question_th": "มีกี่เหรียญทองแดงที่มียอดรวมน้อยกว่า 4 และทองคำมากกว่า 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_en": "What is the enrollment associated with a capacity greater then 35,650?",
    "question_th": "การลงทะเบียนที่เกี่ยวข้องกับความจุที่มากกว่า 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_en": "Which Date has an Opposing Pitcher of jack morris, and an Inning of 4th?",
    "question_th": "วันที่ใดมีเหยือกตรงข้ามของแจ็ค มอร์ริส และอินนิงที่ 4",
    "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_en": "Which average Home Run has a Game of 89?",
    "question_th": "โฮมรันเฉลี่ยใดที่มีเกม 89 เกม",
    "context": "CREATE TABLE table_name_55 (home_run INTEGER, game VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_18 WHERE home_run = 27",
    "question_en": "Which team has a Home Run of 27?",
    "question_th": "ทีมใดมีโฮมรัน 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_en": "Which Assist/pass has a Score of 1-0, and a Goal of 5?",
    "question_th": "Assist/pass ใดที่มีคะแนน 1-0 และประตูที่ 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_en": "Which Assist/pass has a Result of 6-2?",
    "question_th": "Assist/pass ใดที่มีผล 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_en": "Which Assist/pass has a Goal of 5?",
    "question_th": "Assist/pass ใดที่มีประตู 5?",
    "context": "CREATE TABLE table_name_31 (assist_pass VARCHAR, goal VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_25 WHERE goal = \"2\"",
    "question_en": "Which location has a Goal of 2?",
    "question_th": "สถานที่ใดมีเป้าหมายที่ 2",
    "context": "CREATE TABLE table_name_25 (location VARCHAR, goal VARCHAR)"
  },
  {
    "answer": "SELECT lineup FROM table_name_95 WHERE location = \"usa virginia beach\"",
    "question_en": "Which lineup has a Location of usa virginia beach?",
    "question_th": "ผู้เล่นตัวจริงใดบ้างที่มีที่ตั้งของ 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_en": "Which date had a score of 5-1?",
    "question_th": "วันไหนมีสกอร์ 5-1?",
    "context": "CREATE TABLE table_name_20 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_73 WHERE score = \"2-1\"",
    "question_en": "What result had a score of 2-1?",
    "question_th": "ผลสกอร์ 2-1 เป็นยังไงบ้าง?",
    "context": "CREATE TABLE table_name_73 (result VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_52 WHERE score = \"3-2\"",
    "question_en": "Which date had a score of 3-2?",
    "question_th": "วันไหนมีสกอร์ 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_en": "What is the oldest model Porsche v12 that has points less than or equal to 0.",
    "question_th": "Porsche v12 รุ่นที่เก่าแก่ที่สุดคือรุ่นใดที่มีคะแนนน้อยกว่าหรือเท่ากับ 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_en": "Which design uses the theme alpine skiing?",
    "question_th": "ดีไซน์ใดใช้ธีมการเล่นสกีอัลไพน์?",
    "context": "CREATE TABLE table_name_50 (design VARCHAR, theme VARCHAR)"
  },
  {
    "answer": "SELECT date_of_issue FROM table_name_56 WHERE theme = \"bobsleigh\"",
    "question_en": "When did the Theme of bobsleigh release?",
    "question_th": "Theme of bobsleigh เปิดตัวเมื่อไหร่?",
    "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_en": "What is the highest pts after 1952 with connaught type a?",
    "question_th": "แต้มสูงสุดหลังปี 1952 กับประเภทการเชื่อมต่อ a คืออะไร?",
    "context": "CREATE TABLE table_name_79 (pts INTEGER, year VARCHAR, chassis VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_30 WHERE week = 8",
    "question_en": "Who did the Chiefs play in Week 8?",
    "question_th": "Chiefs เล่นใครในสัปดาห์ที่ 8",
    "context": "CREATE TABLE table_name_30 (opponent VARCHAR, week VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_68 WHERE date = \"26 august 2001\"",
    "question_en": "On what surface was the 26 August 2001 tournament played?",
    "question_th": "ทัวร์นาเมนต์วันที่ 26 สิงหาคม พ.ศ. 2544 เล่นบนพื้นผิวใด?",
    "context": "CREATE TABLE table_name_68 (surface VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT AVG(capacity) FROM table_name_46 WHERE suites = \"150\"",
    "question_en": "What is the average capacity for 150 suites?",
    "question_th": "ความจุเฉลี่ยของห้องสวีท 150 ห้องคือเท่าใด",
    "context": "CREATE TABLE table_name_46 (capacity INTEGER, suites VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_30 WHERE project = \"eren talu bidding project\"",
    "question_en": "Where is the Eren Talu bidding project located?",
    "question_th": "โครงการประมูลเอเรนทะลุอยู่ที่ไหน?",
    "context": "CREATE TABLE table_name_30 (location VARCHAR, project VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_94 WHERE capacity > 52 OFFSET 000",
    "question_en": "Which location has a capacity larger than 52,000?",
    "question_th": "สถานที่ใดมีความจุมากกว่า 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_en": "What is the highest capacity in Aslantepe in 2002-2005?",
    "question_th": "ความจุสูงสุดใน Aslantepe ในปี 2545-2548 คือเท่าใด",
    "context": "CREATE TABLE table_name_97 (capacity INTEGER, location VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT ungegn FROM table_name_40 WHERE khmer > ១០០០០០០០០",
    "question_en": "What is the UNGEGN, when the Khmer is greater than ១០០០០០០០០?",
    "question_th": "UNGEGN คืออะไร เมื่อภาษาเขมรยิ่งใหญ่กว่า ១០០០០០០០០?",
    "context": "CREATE TABLE table_name_40 (ungegn VARCHAR, khmer INTEGER)"
  },
  {
    "answer": "SELECT word_form FROM table_name_39 WHERE khmer > ១០០០០០ AND ungegn = \"(muŏy) dáb leăn\"",
    "question_en": "What is the Word Form, when the Khmer is greater than ១០០០០០, and the UNGEGN is (muŏy) dáb leăn?",
    "question_th": "รูปแบบคำคืออะไร เมื่อภาษาเขมรมีค่ามากกว่า ១០០០០០ และ UNGEGN คือ (muŏy) dáb leăn?",
    "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_en": "What is the UNGEGN, when the Value is 10 000?",
    "question_th": "UNGEGN คืออะไร เมื่อมูลค่าเป็น 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_en": "Name the 2008 for wta premier mandatory tournaments of 2007",
    "question_th": "ตั้งชื่อปี 2008 สำหรับทัวร์นาเมนต์ wta Premierบังคับของปี 2007",
    "context": "CREATE TABLE table_name_77 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_71 WHERE tournament = \"beijing\"",
    "question_en": "Name the tournament of beijing",
    "question_th": "ตั้งชื่อการแข่งขันของปักกิ่ง",
    "context": "CREATE TABLE table_name_71 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2009 FROM table_name_35 WHERE 2007 = \"2r\" AND tournament = \"wimbledon\"",
    "question_en": "Name the 2009 for 2007 of 2r and tournament of wimbledon",
    "question_th": "ตั้งชื่อปี 2009 สำหรับปี 2007 ของ 2r และทัวร์นาเมนต์วิมเบิลดัน",
    "context": "CREATE TABLE table_name_35 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_64 WHERE 2010 = \"olympic games\"",
    "question_en": "Name the 2011 for 2010 of olympic games",
    "question_th": "ตั้งชื่อกีฬาโอลิมปิกปี 2011 สำหรับปี 2010",
    "context": "CREATE TABLE table_name_64 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_62 WHERE tournament = \"tokyo\"",
    "question_en": "Name the 2011 for tokyo tournament",
    "question_th": "ตั้งชื่อการแข่งขันโตเกียวปี 2011",
    "context": "CREATE TABLE table_name_62 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2009 FROM table_name_99 WHERE tournament = \"wta premier mandatory tournaments\"",
    "question_en": "Name the 2009 for wta premier mandatory tournaments",
    "question_th": "ตั้งชื่อปี 2009 สำหรับทัวร์นาเมนต์บังคับระดับพรีเมียร์ของ wta",
    "context": "CREATE TABLE table_name_99 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_70 WHERE chassis = \"kurtis kraft 500g\"",
    "question_en": "Which year did Ray Crawford the Kurtis Kraft 500g chassis?",
    "question_th": "Ray Crawford กับแชสซี Kurtis Kraft 500g ปีไหน",
    "context": "CREATE TABLE table_name_70 (year VARCHAR, chassis VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_84 WHERE july__avg_high_°f_ < 84 AND january__avg_low_°f_ = \"34.3\"",
    "question_en": "What city had a july high below 84, and a january low of 34.3?",
    "question_th": "เมืองใดมีคะแนนสูงสุดในเดือนกรกฎาคมต่ำกว่า 84 และต่ำสุดในเดือนมกราคมที่ 34.3",
    "context": "CREATE TABLE table_name_84 (city VARCHAR, july__avg_high_°f_ VARCHAR, january__avg_low_°f_ VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(july__avg_low_) AS °f_ FROM table_name_28 WHERE january__avg_high_°f_ = \"30.4\"",
    "question_en": "What is the july average low associated with a january average high of 30.4?",
    "question_th": "ค่าต่ำสุดเฉลี่ยเดือนกรกฎาคมที่เกี่ยวข้องกับค่าสูงสุดเฉลี่ยเดือนมกราคมที่ 30.4 คืออะไร?",
    "context": "CREATE TABLE table_name_28 (july__avg_low_ VARCHAR, january__avg_high_°f_ VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_name_50 WHERE identifier = \"cbua-fm\"",
    "question_en": "Which class has an identifier of CBUA-FM?",
    "question_th": "คลาสใดมีตัวระบุ 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_en": "What is the city of license for the frequency 90.1 FM?",
    "question_th": "เมืองที่ได้รับอนุญาตสำหรับความถี่ 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_en": "What is the power when the city of license is Beaver Creek?",
    "question_th": "อำนาจอะไรเมื่อเมืองที่ได้รับใบอนุญาตคือบีเวอร์ครีก?",
    "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_en": "What is the city of license when the class is LP and the identifier is CBDK?",
    "question_th": "เมืองที่ได้รับอนุญาตคืออะไรเมื่อคลาสคือ LP และตัวระบุคือ 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_en": "What is the class when the frequency is 560 AM?",
    "question_th": "ความถี่คือ 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_en": "What are the smallest assets with a Company of piraeus bank, and a Revenue (US$ billion) smaller than 3.9?",
    "question_th": "สินทรัพย์ที่เล็กที่สุดของบริษัทของ piraeus bank และรายได้ (พันล้านเหรียญสหรัฐ) น้อยกว่า 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_en": "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?",
    "question_th": "มูลค่าตลาดเฉลี่ยที่มีรายได้มากกว่า 6.2 บริษัทของธนาคารแห่งชาติกรีซ และอันดับน้อยกว่า 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_en": "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?",
    "question_th": "บริษัทใดมีมูลค่าตลาดมากกว่า 1 สินทรัพย์ (พันล้านดอลลาร์สหรัฐ) น้อยกว่า 10.7 อันดับน้อยกว่า 10 และรายได้ (พันล้านดอลลาร์สหรัฐ) อยู่ที่ 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_en": "Tell me the venue with result of eng by 6 wkts",
    "question_th": "บอกสถานที่พร้อมผลภาษาอังกฤษภายใน 6 สัปดาห์",
    "context": "CREATE TABLE table_name_72 (venue VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT home_captain FROM table_name_14 WHERE venue = \"the oval\"",
    "question_en": "Name the Home captain for venue of the oval",
    "question_th": "ตั้งชื่อกัปตันทีมเหย้าสำหรับสถานที่วงรี",
    "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_en": "Name the away captain with result of wi by 9 wkts",
    "question_th": "ตั้งชื่อกัปตันทีมเยือนด้วยผล wi คูณ 9 สัปดาห์",
    "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_en": "Name the venue for eng by 6 wkts",
    "question_th": "ตั้งชื่อสถานที่สำหรับภาษาอังกฤษภายใน 6 สัปดาห์",
    "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_en": "What is the date of the last performance when the style is street dance and the name is George Maguire?",
    "question_th": "การแสดงครั้งสุดท้ายเมื่อใดคือสไตล์ Street Dance และชื่อ 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_en": "What is the date of the last performance for Liam Mower?",
    "question_th": "การแสดงครั้งสุดท้ายของ 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_en": "How many points did the Weslake v12 get in 1966?",
    "question_th": "Weslake v12 ได้กี่คะแนนในปี 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_en": "What was the name of the team in 1965 driving the Ferrari 158?",
    "question_th": "ชื่อของทีมในปี 1965 ที่ขับรถเฟอร์รารี 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_en": "What Chassis had a Weslake v12 in it?",
    "question_th": "แชสซีใดที่มี Weslake v12 อยู่ในนั้น?",
    "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_en": "Name the copaxone with mitoxantrone of no and betaseron (beta-1b) of no",
    "question_th": "ตั้งชื่อ copaxone ด้วย mitoxantrone ที่ no และ betaseron (beta-1b) ที่ 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_en": "Who has a career that has test larger than 41, catches over 33, and a total dismissals rate of 147?",
    "question_th": "ใครมีอาชีพที่สอบได้มากกว่า 41 คน สอบได้เกิน 33 คน และอัตราการเลิกจ้างรวม 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_en": "What is the average dismissals of 83 test and catches less than 33?",
    "question_th": "ค่าเฉลี่ยการไล่ออกของการทดสอบ 83 ครั้งและการจับได้น้อยกว่า 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_en": "Which winner has a points classification of Tony Rominger at stage 17?",
    "question_th": "ผู้ชนะคนใดมีการแบ่งประเภทคะแนนของ Tony Rominger ที่สเตจ 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_en": "Which stage has a mountains classification of Mariano Piccoli, a points classification of Mario Cipollini and was won by Laudelino Cubino?",
    "question_th": "เวทีใดมีการแบ่งประเภทภูเขาของ Mariano Piccoli การจัดประเภทคะแนนของ Mario Cipollini และได้รับรางวัลโดย 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_en": "Who won stage 16?",
    "question_th": "ใครชนะสเตจ 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_en": "Which mountains classification has a general classification of Tony Rominger and was won by Maurizio Fondriest?",
    "question_th": "การจำแนกประเภทภูเขาใดที่มีการจำแนกประเภททั่วไปของ Tony Rominger และได้รับรางวัลโดย 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_en": "What is the general classification at stage 18 that has a points classification of Tony Rominger?",
    "question_th": "การจำแนกประเภททั่วไปในสเตจที่ 18 ที่มีการจัดประเภทคะแนนของ 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_en": "Which stage has a mountains classification of Mariano Piccoli and was won by Giuseppe Citterio?",
    "question_th": "เวทีใดจัดเป็นประเภทภูเขาของ Mariano Piccoli และได้รับรางวัลโดย 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_en": "What is the year First elected when the Member is John Armitage?",
    "question_th": "ปีใดที่ได้รับเลือกครั้งแรกเมื่อสมาชิกคือ จอห์น อาร์มิเทจ?",
    "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_en": "Who is the Electorate, when the year for First elected is 1974, and when the Party is Country?",
    "question_th": "ใครคือผู้มีสิทธิเลือกตั้ง โดยปีที่ได้รับการเลือกตั้งครั้งแรกคือปี 1974 และเมื่อใดที่พรรคเป็นประเทศ",
    "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_en": "Who is the Member when the Party is Alp, and when the Electorate is Grey?",
    "question_th": "สมาชิกคือใครเมื่อพรรคเป็นแอลป์ และเมื่อผู้มีสิทธิเลือกตั้งเป็นสีเทา",
    "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_en": "What is the State, when the year First elected is 1966, and when the Member is Alan Jarman?",
    "question_th": "รัฐคืออะไร เมื่อปีที่ได้รับการเลือกตั้งครั้งแรกคือปี 1966 และเมื่อใดสมาชิกคือ 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_en": "What is the year First Elected, when the Party is Alp, and when the State is qld?",
    "question_th": "ปีใดที่ได้รับการเลือกตั้งครั้งแรก เมื่อพรรคเป็น Alp และเมื่อรัฐเป็น 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_en": "What is the year First elected, when the State is vic, and when the Member is Hon Don Chipp?",
    "question_th": "ปีใดที่ได้รับการเลือกตั้งครั้งแรก เมื่อรัฐเป็นผู้ชนะ และเมื่อใดสมาชิกคือ 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_en": "Which total number of starts has more than 2 wins and a money list rank greater than 1?",
    "question_th": "จำนวนการออกสตาร์ททั้งหมดใดที่มีชัยชนะมากกว่า 2 ครั้งและรายการเงินอยู่ในอันดับที่มากกว่า 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_en": "What is the sum of Top 10 performances that have more than 2 wins and is higher than number 16 in the Top 25?",
    "question_th": "ผลรวมของผลงาน 10 อันดับแรกที่ชนะมากกว่า 2 ครั้งและสูงกว่าอันดับที่ 16 ใน 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_en": "What is the greatest money list ranking that has a Top 25 higher than 2?",
    "question_th": "อันดับรายการเงินที่ยิ่งใหญ่ที่สุดที่มี 25 อันดับแรกสูงกว่า 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_en": "What Away team had an Attendance of 3,395?",
    "question_th": "ทีมเยือนทีมใดมีผู้ชม 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_en": "What Home team had an Attendance of 2,776?",
    "question_th": "ทีมเจ้าบ้านใดมีผู้เข้าร่วม 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_en": "Which engine has more than 1 point after 1981?",
    "question_th": "เครื่องยนต์ใดมีมากกว่า 1 คะแนนหลังจากปี 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_en": "Which engine did Marlboro Team Alfa Romeo used with a chassis of alfa romeo 179?",
    "question_th": "Marlboro Team Alfa Romeo ใช้เครื่องยนต์ใดกับแชสซีของ 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_en": "When has a surface of road and an event of half marathon?",
    "question_th": "เมื่อไหร่จะมีพื้นผิวถนนและมีงานฮาล์ฟมาราธอน?",
    "context": "CREATE TABLE table_name_63 (date VARCHAR, surface VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_54 WHERE place = \"lappeenranta\"",
    "question_en": "Which Surface has a Place of lappeenranta?",
    "question_th": "Surface ใดมีสถานที่ของ lapeenranta?",
    "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_en": "Which Class Pos have Laps smaller than 304, and a Year after 2001?",
    "question_th": "Class Pos ใดที่มีรอบน้อยกว่า 304 และหนึ่งปีหลังจากปี 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_en": "What is the lowest Laps that has a Year after 2002 with Alexander Frei Bruno Besson?",
    "question_th": "รอบต่ำสุดที่มีหนึ่งปีหลังจากปี 2002 กับ 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_en": "How many people attended the score of w 7-6?",
    "question_th": "คะแนน 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_en": "Who lost that has a score of w 4-3?",
    "question_th": "ใครแพ้มีสกอร์ W 4-3 บ้าง?",
    "context": "CREATE TABLE table_name_25 (loss VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_39 WHERE loss = \"schrom\"",
    "question_en": "Loss of schrom happened on what date?",
    "question_th": "โชมหายเกิดวันไหนครับ?",
    "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_en": "Opponent of @mil, and a Record of 45-16 happened on what date?",
    "question_th": "ฝ่ายตรงข้าม @mil และสถิติ 45-16 เกิดขึ้นวันไหน?",
    "context": "CREATE TABLE table_name_95 (date VARCHAR, opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_52 WHERE loss = \"willis\"",
    "question_en": "Loss of willis has what record?",
    "question_th": "การสูญเสียวิลลิสมีประวัติอะไรบ้าง?",
    "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_en": "Loss of wilcox, and a Date of jun 18 had what opponent?",
    "question_th": "แพ้วิลคอกซ์ และวันที่ 18 มิ.ย. มีคู่ต่อสู้คนไหน?",
    "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_en": "Name the to par for score of 74-74-74-71=293",
    "question_th": "ตั้งชื่อพาร์สำหรับคะแนน 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_en": "Name the player for 68-68-75-74=285",
    "question_th": "ตั้งชื่อผู้เล่น 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_en": "Name the to par for gene kunes",
    "question_th": "ตั้งชื่อพาร์สำหรับยีน kunes",
    "context": "CREATE TABLE table_name_39 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT AVG(points) FROM table_name_68 WHERE year < 1955",
    "question_en": "What is the average Points for a year before 1955?",
    "question_th": "คะแนนเฉลี่ยของปีก่อนปี 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_en": "What is the total year with a Team of scuderia ferrari, an Engine of ferrari 106 2.5 l4, and more than 12 points?",
    "question_th": "รวมทีม scuderia ferrari เครื่องยนต์ ferrari 106 2.5 l4 และมากกว่า 12 คะแนนเป็นเท่าใด",
    "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_en": "How many wins has a podiums greater than 1 and 9 as the races with a season after 1984?",
    "question_th": "มีกี่ชัยชนะที่มีโพเดียมมากกว่า 1 และ 9 ในการแข่งขันในหนึ่งฤดูกาลหลังปี 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_en": "What is the highest Podiums with 0 as wins, and a season later than 1985?",
    "question_th": "โพเดียมสูงสุดโดยชนะ 0 และหนึ่งฤดูกาลหลังจากปี 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_en": "What was the Top Gear budget in March 2013?",
    "question_th": "งบประมาณ Top Gear ในเดือนมีนาคม 2013 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_39 (budget VARCHAR, month_ VARCHAR, _year VARCHAR)"
  },
  {
    "answer": "SELECT episode FROM table_name_35 WHERE budget = \"£7,000\"",
    "question_en": "Which episode of Top Gear had a budget of £7,000?",
    "question_th": "Top Gear ตอนไหนมีงบ 7,000 ปอนด์?",
    "context": "CREATE TABLE table_name_35 (episode VARCHAR, budget VARCHAR)"
  },
  {
    "answer": "SELECT month_ & _year FROM table_name_18 WHERE title = \"bolivia special\"",
    "question_en": "Which month and year held the Bolivia Special title?",
    "question_th": "เดือนและปีใดที่จัดฉายาพิเศษโบลิเวีย?",
    "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_en": "Which team has a right wing position listed?",
    "question_th": "รายชื่อตำแหน่งปีกขวาของทีมใด?",
    "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_en": "What position is the player that is from Canada and on the Boston Bruins",
    "question_th": "ผู้เล่นที่มาจากแคนาดาและบอสตันบรูอินส์คือตำแหน่งใด",
    "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_en": "What is the position of the player on the Los Angeles Kings?",
    "question_th": "ตำแหน่งของผู้เล่นใน 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_en": "Which team has the # 64 pick?",
    "question_th": "ทีมไหนมีสิทธิ์เลือก #64?",
    "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_en": "What nationality is the #63 pick?",
    "question_th": "ตัวเลือกหมายเลข 63 สัญชาติใด",
    "context": "CREATE TABLE table_name_72 (nationality VARCHAR, pick__number VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_51 WHERE pick__number = \"69\"",
    "question_en": "What is the name of the player that is pick #69?",
    "question_th": "ผู้เล่นที่เลือก #69 ชื่ออะไร?",
    "context": "CREATE TABLE table_name_51 (player VARCHAR, pick__number VARCHAR)"
  },
  {
    "answer": "SELECT tyres FROM table_name_56 WHERE points = 8",
    "question_en": "Which tyres received 8 points?",
    "question_th": "ยางไหนได้ 8 คะแนน?",
    "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_en": "How many points were awarded to the Ford DFZ 3.5 V8?",
    "question_th": "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_en": "Which engine received 0 points in 1988?",
    "question_th": "เครื่องยนต์ใดได้รับ 0 คะแนนในปี 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_en": "What's the Issue Date for an Eric Prydz song with a no available Download information?",
    "question_th": "วันที่ออกสำหรับเพลง Eric Prydz ที่ไม่มีข้อมูลการดาวน์โหลดคือเมื่อใด",
    "context": "CREATE TABLE table_name_89 (issue_date VARCHAR, download VARCHAR, artist VARCHAR)"
  },
  {
    "answer": "SELECT download FROM table_name_45 WHERE week = 44",
    "question_en": "What's the Download information for the song from Week 44?",
    "question_th": "ข้อมูลการดาวน์โหลดเพลงจากสัปดาห์ที่ 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_en": "What is the title of the July 2 song that is downloaded as Crazy Frog?",
    "question_th": "เพลงวันที่ 2 กรกฎาคมที่ดาวน์โหลดเป็น 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_en": "What is the division record for Woodbridge?",
    "question_th": "บันทึกการแบ่งแผนกของ Woodbridge คืออะไร?",
    "context": "CREATE TABLE table_name_78 (division_record VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT runner_up FROM table_name_96 WHERE year = \"2004\"",
    "question_en": "Who was the runner-up in 2004?",
    "question_th": "ใครคือรองชนะเลิศในปี 2547?",
    "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_en": "Who was the 3rd place team at Pardubice?",
    "question_th": "ทีมอันดับที่ 3 ของ Pardubice คือใคร?",
    "context": "CREATE TABLE table_name_41 (venue VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_95 WHERE country = \"denmark\"",
    "question_en": "Name the To par for denmark",
    "question_th": "ตั้งชื่อ To par สำหรับเดนมาร์ก",
    "context": "CREATE TABLE table_name_95 (to_par VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_43 WHERE player = \"pat perez\"",
    "question_en": "Nam ethe place for pat perez",
    "question_th": "สถานที่ Nam ethe สำหรับ pat perez",
    "context": "CREATE TABLE table_name_43 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_16 WHERE player = \"vijay singh\"",
    "question_en": "Name the country vijay singh is from",
    "question_th": "ชื่อประเทศที่วีเจย์ซิงห์มาจาก",
    "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_en": "Which city has frequency under 106.5MHz and a callsign of w218ck?",
    "question_th": "เมืองใดมีความถี่ต่ำกว่า 106.5MHz และสัญญาณเรียกขาน 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_en": "Which class has a city of Richmond, Virginia?",
    "question_th": "เมืองริชมอนด์ รัฐเวอร์จิเนีย อยู่ในชั้นเรียนใด",
    "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_en": "What is the ERP W for the frequency of 91.3MHz?",
    "question_th": "ERP W สำหรับความถี่ 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_en": "Which call sign has a frequency greater than 98.5MHz and ERP W under 155?",
    "question_th": "สัญญาณเรียกขานใดมีความถี่มากกว่า 98.5MHz และ ERP W ต่ำกว่า 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_en": "Which tracks have a length of 18:36?",
    "question_th": "เพลงไหนมีความยาว 18:36?",
    "context": "CREATE TABLE table_name_26 (tracks INTEGER, length VARCHAR)"
  },
  {
    "answer": "SELECT length FROM table_name_13 WHERE disc = \"67\"",
    "question_en": "What is the length of disc 67?",
    "question_th": "จาน 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_en": "What points larger than 1950 has a maserati straight-6 engine?",
    "question_th": "จุดใดที่ใหญ่กว่าปี 1950 มีเครื่องยนต์ maserati ตรง 6?",
    "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_en": "What is the chassis for a 1952 officine alfieri maserati with an entrant?",
    "question_th": "แชสซีของ alfieri maserati รุ่นปี 1952 กับผู้เข้าร่วมคืออะไร",
    "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_en": "What type of engine does a 1951 alfa romeo 159m chasis have?",
    "question_th": "1951 alfa romeo 159m chasis มีเครื่องยนต์ประเภทใด?",
    "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_en": "What Entrant has a 1952 maserati straight-6 engine?",
    "question_th": "ผู้เข้าแข่งขันคนใดมีเครื่องยนต์ Maserati ตรง 6 ปี 1952",
    "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_en": "What Entrant older than 1950 has points smaller than 7?",
    "question_th": "ผู้เข้าร่วมคนใดที่มีอายุมากกว่าปี 1950 มีคะแนนน้อยกว่า 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_en": "What is the total points that an 1951 Entrant alfa romeo spa have?",
    "question_th": "คะแนนรวมที่สปาอัลฟ่าโรมิโอผู้เข้าร่วมปี 1951 มีคือเท่าใด",
    "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_en": "Who is the co-driver in 1999 with more than 32 laps?",
    "question_th": "ใครคือนักขับร่วมในปี 1999 ที่วิ่งเกิน 32 รอบ?",
    "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_en": "Name the winning constructor for when the fastest lap was mark webber at the malaysian grand prix",
    "question_th": "ตั้งชื่อผู้สร้างที่ชนะว่าเมื่อใดที่มีรอบเร็วที่สุดคือ Mark Webber ในการแข่งขัน 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_en": "Name the winning constructor for abu dhabi grand prix",
    "question_th": "ตั้งชื่อคอนสตรัคเตอร์ที่ชนะการแข่งขันอาบูดาบีกรังด์ปรีซ์",
    "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_en": "Name the pole position for belgian grand prix",
    "question_th": "ตั้งชื่อตำแหน่งโพลโพสิชันเบลเยียมกรังด์ปรีซ์",
    "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_en": "Name the pole positon for korean grand prix",
    "question_th": "ตั้งชื่อตำแหน่งโพลโพสิตันสำหรับกรังด์ปรีซ์เกาหลี",
    "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_en": "Name the pole position at the german grand prix",
    "question_th": "ตั้งชื่อตำแหน่งโพลโพซิชั่นในรายการเยอรมัน กรังด์ปรีซ์",
    "context": "CREATE TABLE table_name_3 (pole_position VARCHAR, grand_prix VARCHAR)"
  },
  {
    "answer": "SELECT code FROM table_name_21 WHERE currency = \"latvian lats\"",
    "question_en": "What is the code for Latvian Lats?",
    "question_th": "รหัส Lats ลัตเวียคืออะไร?",
    "context": "CREATE TABLE table_name_21 (code VARCHAR, currency VARCHAR)"
  },
  {
    "answer": "SELECT currency FROM table_name_45 WHERE central_rate = \"3.45280\"",
    "question_en": "Which currency has a central rate of 3.45280?",
    "question_th": "สกุลเงินใดมีอัตรากลาง 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_en": "Which currency has a central rate of 0.702804?",
    "question_th": "สกุลเงินใดมีอัตรากลางอยู่ที่ 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_en": "What is the entry ERM II for the Hungarian Forint?",
    "question_th": "รายการ ERM II สำหรับโฟรินท์ฮังการีคืออะไร?",
    "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_en": "What is the official target date for the Swedish Krona?",
    "question_th": "วันที่เป้าหมายอย่างเป็นทางการสำหรับโครนาสวีเดนคือเมื่อใด",
    "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_en": "The EPT German open was won by which listed winner?",
    "question_th": "EPT German open ชนะโดยผู้ชนะที่อยู่ในรายการใด",
    "context": "CREATE TABLE table_name_8 (winner VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_72 WHERE winner = \"will fry\"",
    "question_en": "What event did Will Fry win?",
    "question_th": "Will Fry ชนะรายการใด",
    "context": "CREATE TABLE table_name_72 (event VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_25 WHERE event = \"ept german open\"",
    "question_en": "The EPT German Open took place in what city?",
    "question_th": "EPT German Open จัดขึ้นที่เมืองใด",
    "context": "CREATE TABLE table_name_25 (city VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_58 WHERE city = \"copenhagen\"",
    "question_en": "When did an event take place in the City of Copenhagen?",
    "question_th": "งานจัดขึ้นที่เมืองโคเปนเฮเกนเมื่อใด?",
    "context": "CREATE TABLE table_name_58 (date VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT city FROM table_name_56 WHERE prize = \"£1,000,000\"",
    "question_en": "The prize of £1,000,000 was given by an event in what city?",
    "question_th": "รางวัล 1,000,000 ปอนด์ได้รับรางวัลจากงานในเมืองใด",
    "context": "CREATE TABLE table_name_56 (city VARCHAR, prize VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_93 WHERE winner = \"joão barbosa\"",
    "question_en": "João Barbosa was the winner of which event?",
    "question_th": "João Barbosa เป็นผู้ชนะกิจกรรมใด",
    "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_en": "What was the Attendance during the Home game where St. Johnstone was the Opponent?",
    "question_th": "ผู้เข้าชมเกมในบ้านมีอะไรบ้างโดยที่เซนต์ จอห์นสโตนเป็นฝ่ายตรงข้าม?",
    "context": "CREATE TABLE table_name_80 (attendance VARCHAR, opponent VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_name_36 WHERE year = 1968",
    "question_en": "Which class has a Year of 1968?",
    "question_th": "ชั้นเรียนใดมีปี พ.ศ. 2511?",
    "context": "CREATE TABLE table_name_36 (class VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_name_34 WHERE team = \"kouros racing team\"",
    "question_en": "Which class has a Team of kouros racing team?",
    "question_th": "คลาสไหนมีทีมแข่งคูรอสบ้าง?",
    "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_en": "Who is the Winner, when the Loser is the Baltimore Colts, when the Location is Schaefer Stadium, and when the Result is 42-3?",
    "question_th": "ใครคือผู้ชนะ เมื่อผู้แพ้คือบัลติมอร์ โคลท์ เมื่อสถานที่คือแชเฟอร์ สเตเดียม และเมื่อผลการแข่งขันคือ 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_en": "What is the Location, when the Winner is the Baltimore Colts, when the Year is before 1972, and when the Result is 14-6?",
    "question_th": "สถานที่คืออะไร เมื่อผู้ชนะคือบัลติมอร์ โคลท์ส เมื่อปีก่อนปี 1972 และเมื่อผลการแข่งขันคือ 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_en": "What is the Date, when the Year is after 1978, and when the Location is Memorial Stadium (Baltimore)?",
    "question_th": "วันที่คือเมื่อใด ปีคือหลังปี 1978 และเมื่อใดคือสถานที่คือ Memorial Stadium (บัลติมอร์)",
    "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_en": "Which engine has a Chassis of lotus 44 f2?",
    "question_th": "เครื่องยนต์ตัวไหนมีแชสซีของโลตัส 44 f2?",
    "context": "CREATE TABLE table_name_24 (engine VARCHAR, chassis VARCHAR)"
  },
  {
    "answer": "SELECT entrant FROM table_name_24 WHERE year = 1969",
    "question_en": "What entrant appeared in 1969?",
    "question_th": "ผู้เข้าแข่งขันคนใดที่ปรากฏในปี 2512?",
    "context": "CREATE TABLE table_name_24 (entrant VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT engine FROM table_name_7 WHERE year > 1969",
    "question_en": "Which engine has a Year larger than 1969?",
    "question_th": "เครื่องยนต์ใดมีปีใหญ่กว่าปี 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_en": "What is the largest year with an Entrant of ron harris / team lotus?",
    "question_th": "ปีที่ใหญ่ที่สุดที่มีผู้เข้าร่วม รอน แฮร์ริส / ทีมโลตัส คือปีใด?",
    "context": "CREATE TABLE table_name_79 (year INTEGER, entrant VARCHAR)"
  },
  {
    "answer": "SELECT intergiro_classification FROM table_name_22 WHERE stage = \"21\"",
    "question_en": "During stage 21, who held the Intergiro classification?",
    "question_th": "ระหว่างสเตจที่ 21 ใครจัดประเภท Intergiro?",
    "context": "CREATE TABLE table_name_22 (intergiro_classification VARCHAR, stage VARCHAR)"
  },
  {
    "answer": "SELECT stage FROM table_name_35 WHERE trofeo_fast_team = \"gatorade\"",
    "question_en": "During which stage was gatorade the Trofeo Fast Team?",
    "question_th": "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_en": "Who held the Intergiro classificaiton when the Trofeo Fast Team is gb-mg maglificio?",
    "question_th": "ใครเป็นผู้จัดการแข่งขัน Intergiro เมื่อทีม Trofeo Fast เป็น 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_en": "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?",
    "question_th": "ระหว่างช่วงใดที่การจัดประเภท Intergiro จัดโดย Miguel Indurain, การจัดประเภทคะแนนโดย Mario Cipollini และการจัดประเภทนักบิดรุ่นเยาว์จัดโดย 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_en": "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?",
    "question_th": "ใครคือผู้ชนะเมื่อ Miguel Indurain อยู่ในประเภททั่วไป, อยู่ในประเภทคะแนนโดย Mario Cipollini, อยู่ในประเภทเทือกเขาโดย Claudio Chiappucci และอยู่ในประเภท Young RIder โดย 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_en": "What is the goals against for the goalkeeper with 2520 minutes?",
    "question_th": "ประตูของผู้รักษาประตูในนาทีที่ 2520 คืออะไร?",
    "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_en": "What is the average Games Played for Bo Oshoniyi, who had more than 1170 minutes and 10 loses?",
    "question_th": "เกมโดยเฉลี่ยที่เล่นให้กับ Bo Oshoniyi ซึ่งมีเวลามากกว่า 1,170 นาทีและแพ้ 10 ครั้งคือเท่าใด",
    "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_en": "What is the highest goals against the goalkeeper of Dallas Burn, who had a GA average larger than 1.46, had?",
    "question_th": "ประตูสูงสุดในการเจอกับผู้รักษาประตูของ ดัลลัส เบิร์น ซึ่งมีค่าเฉลี่ย GA มากกว่า 1.46 คืออะไร?",
    "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_en": "What is the lowest number of losses a goalkeeper with more than 2776 minutes had?",
    "question_th": "จำนวนการเสียประตูที่น้อยที่สุดที่ผู้รักษาประตูทำได้มากกว่า 2,776 นาทีคือเท่าไร?",
    "context": "CREATE TABLE table_name_54 (loses INTEGER, minutes INTEGER)"
  },
  {
    "answer": "SELECT MIN(minutes) FROM table_name_25 WHERE games_played = 13",
    "question_en": "What is the lowest minutes a goalkeeper with 13 games played has?",
    "question_th": "นาทีที่น้อยที่สุดของผู้รักษาประตูที่ลงเล่น 13 เกมคือเท่าไร?",
    "context": "CREATE TABLE table_name_25 (minutes INTEGER, games_played VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_67 WHERE score = \"10-52\"",
    "question_en": "Which round resulted in 10-52?",
    "question_th": "รอบไหนสกอร์ 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_en": "What venue did Melbourne Storm played in Rd 7, 2006?",
    "question_th": "Melbourne Storm เล่นในสถานที่ใดบนถนน 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_en": "In which venue was the result a draw?",
    "question_th": "ผลเสมอกันที่สนามใด?",
    "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_en": "Which School Colors were Founded of 1969, with an Institution of barton community college?",
    "question_th": "School Colours ใดที่ก่อตั้งขึ้นในปี 1969 โดยมีสถาบันวิทยาลัยชุมชนบาร์ตัน",
    "context": "CREATE TABLE table_name_48 (school_colors VARCHAR, founded VARCHAR, institution VARCHAR)"
  },
  {
    "answer": "SELECT institution FROM table_name_43 WHERE mascot = \"broncbusters\"",
    "question_en": "Which Institution has a Mascot of broncbusters?",
    "question_th": "สถาบันใดมีมาสคอตของบรอนบัสเตอร์?",
    "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_en": "What is the largest Founded with an Institution of cloud county community college?",
    "question_th": "อะไรคือสถาบันที่ใหญ่ที่สุดที่ก่อตั้งโดยสถาบันวิทยาลัยชุมชนคลาวด์เคาน์ตี?",
    "context": "CREATE TABLE table_name_67 (founded INTEGER, institution VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(founded) FROM table_name_29 WHERE main_campus_location = \"liberal\"",
    "question_en": "What is the total Founded with a Main Campus Location of liberal?",
    "question_th": "ยอดรวมที่ก่อตั้งขึ้นโดยมีที่ตั้งวิทยาเขตหลักของเสรีนิยมคืออะไร?",
    "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_en": "What is the 2-person dive that has 2 as the surface?",
    "question_th": "การดำน้ำ 2 คนที่มี 2 เป็นพื้นผิวคืออะไร?",
    "context": "CREATE TABLE table_name_86 (surface VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_5 WHERE cage_dive = \"2\"",
    "question_en": "What surface has 2 as a cage dive?",
    "question_th": "พื้นผิวใดที่มี 2 เป็นการดำน้ำแบบกรง?",
    "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_en": "Which 3-person dive has 0 as a remote camera?",
    "question_th": "การดำน้ำ 3 คนคนไหนมี 0 เป็นกล้องระยะไกล?",
    "context": "CREATE TABLE table_name_29 (remote_camera VARCHAR)"
  },
  {
    "answer": "SELECT years FROM table_name_97 WHERE decile < 2 AND area = \"mohaka\"",
    "question_en": "Which years have a Decile smaller than 2, and an Area of mohaka?",
    "question_th": "ปีใดมีเดซิลน้อยกว่า 2 และพื้นที่โมฮากา",
    "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–8\" AND decile < 10 AND roll = 36",
    "question_en": "Which gender has an Authority of state, Years of 1–8, and a Decile smaller than 10, and a Roll of 36?",
    "question_th": "เพศใดมีอำนาจหน้าที่ของรัฐ ปีที่ 1–8 และมี Decile น้อยกว่า 10 และมีม้วนที่ 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_en": "Which roll has an Area of mahia?",
    "question_th": "ม้วนไหนมีพื้นที่มะเหาะ?",
    "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_en": "Which Decile has an Authority of state, a Roll smaller than 61, and an Area of kotemaori?",
    "question_th": "Decile ใดมีอำนาจหน้าที่ของรัฐ มีม้วนเล็กกว่า 61 และพื้นที่โคเทมาโอริ",
    "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_en": "What's the highest League Cup with an FA Cup thats larger than 2?",
    "question_th": "ลีกคัพสูงสุดที่มี FA Cup ที่มีขนาดใหญ่กว่า 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_en": "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?",
    "question_th": "จำนวนรวมของ FA Cup ที่มีรอบเพลย์ออฟ 3 และชื่อ Mitch Cook หมวดหมู่:บทความที่มี hCards และมีคะแนนรวมน้อยกว่า 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_en": "What's the total of number of FA Cup that has a League small than 29 with Play-offs less than 0?",
    "question_th": "เอฟเอ คัพ ที่มีลีกเล็กกว่า 29 และเพลย์ออฟน้อยกว่า 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_en": "What's the lowest Play-offs with a League of 4 and FA Cup larger than 1?",
    "question_th": "เพลย์ออฟที่ต่ำที่สุดที่มีลีก 4 และเอฟเอคัพมากกว่า 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_en": "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?",
    "question_th": "จำนวนลีกคัพที่มีรอบเพลย์ออฟมากกว่า 2 และชื่อของ Mitch Cook หมวดหมู่:บทความที่มี 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_en": "What is the average Channel 4 weekly rank for less than 2.19 million viewers on December 7, 2007?",
    "question_th": "อันดับเฉลี่ยรายสัปดาห์ของช่อง 4 สำหรับผู้ชมน้อยกว่า 2.19 ล้านคนในวันที่ 7 ธันวาคม 2550 คือเท่าใด",
    "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_en": "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?",
    "question_th": "จำนวนผู้ชมเป็นล้านสำหรับตอนนี้ในวันที่ 10 ตุลาคม 2551 และช่อง 4 รายสัปดาห์มีอันดับน้อยกว่า 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_en": "What is the duration of the flight with end time of 21:06?",
    "question_th": "บินกี่โมงครับ สิ้นสุดเวลา 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_en": "What is the spacecraft with end time of 4 September 04:51?",
    "question_th": "ยานอวกาศลำใดสิ้นสุดวันที่ 4 กันยายน 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_en": "What is the crew with the end time of 21:11?",
    "question_th": "ลูกเรือที่มีเวลาสิ้นสุดคือ 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_en": "What is the duration of the Expedition 20 ISS Zvezda?",
    "question_th": "ระยะเวลาของการเดินทาง 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_en": "Who was the crew for the duration of 12 minutes?",
    "question_th": "ลูกเรือในช่วง 12 นาทีคือใคร?",
    "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_en": "Name the sum of year for connaught engineering and points less than 0",
    "question_th": "ตั้งชื่อผลรวมของปีสำหรับวิศวกรรมคอนนอตและคะแนนน้อยกว่า 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_en": "What is the average win percentage of a season with a GB of 5?",
    "question_th": "เปอร์เซ็นต์การชนะโดยเฉลี่ยของฤดูกาลที่มี 5 GB เป็นเท่าใด",
    "context": "CREATE TABLE table_name_76 (win__percentage INTEGER, gb_ VARCHAR, d_ VARCHAR)"
  },
  {
    "answer": "SELECT start FROM table_name_49 WHERE laps > 200",
    "question_en": "What was the starting position of Joie Chitwood when he finished more than 200 laps?",
    "question_th": "Joie Chitwood ตำแหน่งเริ่มต้นเมื่อจบเกิน 200 รอบเป็นอย่างไร",
    "context": "CREATE TABLE table_name_49 (start VARCHAR, laps INTEGER)"
  },
  {
    "answer": "SELECT MIN(laps) FROM table_name_72 WHERE qual = \"124.619\"",
    "question_en": "What is Chitwood's lowest completed number of laps with a qualifying time of 124.619?",
    "question_th": "จำนวนรอบต่ำสุดของ Chitwood ด้วยเวลารอบคัดเลือกที่ 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_en": "Which venue was used on 12 September 1998?",
    "question_th": "สนามใดถูกใช้ในวันที่ 12 กันยายน พ.ศ. 2541?",
    "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_en": "What is the score [A] of the match at Vanuatu (n) on 5 September 1998?",
    "question_th": "สกอร์ [A] ของแมตช์ที่วานูอาตู (n) เมื่อวันที่ 5 กันยายน 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_en": "What is the score [A] of the match on 19 September 1998?",
    "question_th": "สกอร์ [A] ของแมตช์วันที่ 19 กันยายน 1998 เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_49 (score_ VARCHAR, a_ VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_40 WHERE record = \"32–19–7\"",
    "question_en": "What was the score of the game when the record was 32–19–7?",
    "question_th": "คะแนนของเกมเมื่อบันทึกคือ 32–19–7 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_40 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_78 WHERE record = \"9–5–2\"",
    "question_en": "What was the date of the game when the record was 9–5–2?",
    "question_th": "วันที่ของเกมคือเมื่อใดที่สถิติคือ 9–5–2?",
    "context": "CREATE TABLE table_name_78 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_23 WHERE record = \"36–21–8\"",
    "question_en": "Who was the home team when the record was 36–21–8?",
    "question_th": "เจ้าบ้านคือใครเมื่อทำสถิติ 36–21–8?",
    "context": "CREATE TABLE table_name_23 (home VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_17 WHERE visitor = \"calgary flames\" AND record = \"1–2–0\"",
    "question_en": "What was the date of the game when the Calgary Flames were the visiting team and there was a record of 1–2–0?",
    "question_th": "วันที่ของเกมคือวันที่คัลการี เฟลมส์เป็นทีมเยือนและมีสถิติ 1–2–0?",
    "context": "CREATE TABLE table_name_17 (date VARCHAR, visitor VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT home FROM table_name_15 WHERE record = \"27–14–6\"",
    "question_en": "Who was the home team when the record was 27–14–6?",
    "question_th": "เจ้าบ้านคือใครเมื่อทำสถิติ 27–14–6?",
    "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_en": "What was the lifespan of Representative Harry P. O'neill from the state of Pennsylvania?",
    "question_th": "อายุขัยของผู้แทน Harry P. O'neill จากรัฐเพนซิลวาเนียคือเท่าใด",
    "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_en": "What years did Representative Frank A. Oliver serve?",
    "question_th": "ผู้แทน Frank A. Oliver ดำรงตำแหน่งกี่ปี?",
    "context": "CREATE TABLE table_name_70 (years VARCHAR, representative VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_34 WHERE date = \"october 11\"",
    "question_en": "Name the record for october 11",
    "question_th": "ตั้งชื่อบันทึกสำหรับวันที่ 11 ตุลาคม",
    "context": "CREATE TABLE table_name_34 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_69 WHERE record = \"68-66\"",
    "question_en": "Name the score with record of 68-66",
    "question_th": "ตั้งชื่อสกอร์ด้วยสถิติ 68-66",
    "context": "CREATE TABLE table_name_69 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_24 WHERE date = \"august 28\"",
    "question_en": "Name the record for august 28",
    "question_th": "ตั้งชื่อบันทึกสำหรับวันที่ 28 สิงหาคม",
    "context": "CREATE TABLE table_name_24 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_63 WHERE player = \"leo diegel\"",
    "question_en": "What was the score for Leo Diegel?",
    "question_th": "ลีโอ ดีเจลได้คะแนนเท่าไหร่?",
    "context": "CREATE TABLE table_name_63 (score VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_41 WHERE to_par = \"–4\"",
    "question_en": "What is the name of the player with a To par of –4?",
    "question_th": "ผู้เล่นที่มีพาร์ถึง –4 ชื่ออะไร?",
    "context": "CREATE TABLE table_name_41 (player VARCHAR, to_par VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_35 WHERE partner = \"tiya rolle\"",
    "question_en": "What was the surface for the game that was played with partner Tiya Rolle?",
    "question_th": "พื้นผิวของเกมที่เล่นกับคู่หู 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_en": "What is the final score for the game played on January 10, 2011 with partner Mashona Washington?",
    "question_th": "คะแนนสุดท้ายของเกมที่เล่นเมื่อวันที่ 10 มกราคม 2554 กับคู่หู 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_en": "What was the outcome for the game that was played on 07-Jun-2010?",
    "question_th": "ผลลัพธ์ของเกมที่เล่นในวันที่ 07 มิ.ย. 2553 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_8 (outcome VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_93 WHERE date = \"29-jun-2009\"",
    "question_en": "What is the score for the game that was played on 29-Jun-2009?",
    "question_th": "คะแนนของเกมที่เล่นวันที่ 29 มิ.ย. 52 เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_93 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_50 WHERE date = \"12-apr-2005\"",
    "question_en": "What was the surface for the game that was played on 12-Apr-2005?",
    "question_th": "พื้นผิวของเกมที่เล่นในวันที่ 12 เมษายน 2548 เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_50 (surface VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_name_66 WHERE skipper = \"james allen\"",
    "question_en": "What points has james allen as the skipper?",
    "question_th": "เจมส์ อัลเลน เป็นกัปตันทีมมีคะแนนอะไรบ้าง?",
    "context": "CREATE TABLE table_name_66 (points VARCHAR, skipper VARCHAR)"
  },
  {
    "answer": "SELECT yacht_name FROM table_name_28 WHERE overall_place = \"12\"",
    "question_en": "What is the name of the yacht where 12 is the overall place?",
    "question_th": "เรือยอทช์ชื่ออะไร โดยเลข 12 คือตำแหน่งโดยรวม?",
    "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_en": "Which skipper has a combine elapsed time of 174d 01h 11m 59s?",
    "question_th": "กัปตันคนใดมีเวลารวมกันเป็น 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_en": "Which skipper has barclays adventurer as the name of the yacht?",
    "question_th": "กัปตันคนไหนมีนักผจญภัยบาร์เคลย์เป็นชื่อเรือยอชท์?",
    "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_en": "What is the overall place that has 170d 11h 31m 10s as the combined elapsed time?",
    "question_th": "สถานที่โดยรวมที่มี 170d 11h 31m 10s เป็นเวลาที่ใช้รวมกันคือสถานที่ใด",
    "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 = \"—\"",
    "question_en": "What was the senior status for the judge who was terminated because of death, with a Chief Judge entry of —?",
    "question_th": "สถานะอาวุโสของผู้พิพากษาที่ถูกไล่ออกเนื่องจากการเสียชีวิต โดยมีหัวหน้าผู้พิพากษาเข้ามาเป็นเช่นไร?",
    "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_en": "What is the location of Classification of T12?",
    "question_th": "การจัดประเภทของ 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_en": "What is the fastest time for athlete Jason Smyth?",
    "question_th": "เวลาที่เร็วที่สุดสำหรับนักกีฬา 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_en": "What was the final of play No. 2, Alzira Ricardo B.?",
    "question_th": "การเล่นหมายเลข 2 รอบชิงชนะเลิศคืออัลซิรา ริคาร์โด้ บี.?",
    "context": "CREATE TABLE table_name_34 (final VARCHAR, no2 VARCHAR)"
  },
  {
    "answer": "SELECT no10 FROM table_name_10 WHERE no8 = \"diana\"",
    "question_en": "What was the No. 10 team that has No. 8 of Diana?",
    "question_th": "ทีมอันดับที่ 10 ที่มีอันดับที่ 8 ของไดอาน่าคืออะไร?",
    "context": "CREATE TABLE table_name_10 (no10 VARCHAR, no8 VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_name_2 WHERE chassis = \"ensign n175\"",
    "question_en": "Name the total number of years for chassis of ensign n175",
    "question_th": "ระบุจำนวนปีทั้งหมดสำหรับแชสซีของธง n175",
    "context": "CREATE TABLE table_name_2 (year VARCHAR, chassis VARCHAR)"
  },
  {
    "answer": "SELECT MIN(attendance) FROM table_name_52 WHERE record = \"52-48\"",
    "question_en": "What was the Blue Jays lowest attendance when their record was 52-48?",
    "question_th": "อะไรคือการเข้าร่วมที่น้อยที่สุดของ Blue Jays เมื่อบันทึกของพวกเขาคือ 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_en": "What is the result when you play at home against Pride",
    "question_th": "ผลลัพธ์จะเป็นอย่างไรเมื่อคุณเล่นในบ้านกับไพรด์",
    "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_en": "What is the result of games played at frontier field",
    "question_th": "ผลการแข่งขันที่เล่นในสนามชายแดนเป็นอย่างไร",
    "context": "CREATE TABLE table_name_10 (result VARCHAR, field VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_20 WHERE field = \"hofstra stadium\"",
    "question_en": "What days were games played at Hofstra Stadium?",
    "question_th": "ที่สนามฮอฟสตรา สเตเดียม แข่งขันกันวันไหน?",
    "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_en": "What Field was played at in an away game against the bayhawks?",
    "question_th": "สนามใดที่เล่นในเกมเยือนกับเบย์ฮอว์กส์?",
    "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_en": "What is the score of the game played on February 18?",
    "question_th": "สกอร์ของเกมที่เล่นในวันที่ 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_en": "Who was the home team that played against the Boston Bruins on January 11?",
    "question_th": "ทีมเจ้าบ้านที่เล่นกับบอสตัน บรูอินส์เมื่อวันที่ 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_en": "Name the sum of year for olimpija ljubljana with height less than 2.04",
    "question_th": "ตั้งชื่อผลรวมของปีสำหรับโอลิมปิยา ลูบลิยานา ที่มีความสูงน้อยกว่า 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_en": "Name the position with height of 2.09",
    "question_th": "ตั้งชื่อตำแหน่งด้วยความสูง 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_en": "What was the attendance at the ballpark during the game where the Blue Jays had a record of 26-35 during the 1996 season?",
    "question_th": "อะไรคือการเข้าร่วมที่สนามเบสบอลระหว่างเกมที่ Blue Jays มีสถิติ 26-35 ในช่วงฤดูกาล 1996?",
    "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_en": "What nominated work received a tony award in 2009?",
    "question_th": "ผลงานที่ได้รับการเสนอชื่ออะไรบ้างที่ได้รับรางวัลโทนี่ในปี 2552",
    "context": "CREATE TABLE table_name_94 (nominated_work VARCHAR, award VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_38 WHERE year = 2012",
    "question_en": "What result in the table is from the year 2012?",
    "question_th": "ผลลัพธ์ในตารางตั้งแต่ปี 2555 คืออะไร?",
    "context": "CREATE TABLE table_name_38 (result VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT 2011 FROM table_name_59 WHERE 2010 = \"2r\"",
    "question_en": "Name the 2011 with 2010 of 2r",
    "question_th": "ตั้งชื่อปี 2011 ด้วย 2010 เป็น 2r",
    "context": "CREATE TABLE table_name_59 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2012 FROM table_name_97 WHERE 2011 = \"qf\"",
    "question_en": "Name the 2012 when 2011 is qf",
    "question_th": "ตั้งชื่อปี 2012 เมื่อปี 2011 คือ qf",
    "context": "CREATE TABLE table_name_97 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2012 FROM table_name_5 WHERE 2011 = \"1r\"",
    "question_en": "Name the 2012 for 2011 being 1r",
    "question_th": "ตั้งชื่อปี 2012 สำหรับปี 2011 เป็น 1r",
    "context": "CREATE TABLE table_name_5 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2012 FROM table_name_58 WHERE 2011 = \"qf\"",
    "question_en": "Name the 2012 for 2011 being qf",
    "question_th": "ตั้งชื่อปี 2012 สำหรับปี 2011 เป็น qf",
    "context": "CREATE TABLE table_name_58 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2008 FROM table_name_37 WHERE 2012 = \"f\"",
    "question_en": "Name the 2008 for 2012 f",
    "question_th": "ตั้งชื่อปี 2008 สำหรับปี 2012 f",
    "context": "CREATE TABLE table_name_37 (Id VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_47 WHERE date = \"february 29, 2012\"",
    "question_en": "What is the location of the match on February 29, 2012?",
    "question_th": "แมตช์การแข่งขันวันที่ 29 กุมภาพันธ์ 2555 อยู่ที่ใด?",
    "context": "CREATE TABLE table_name_47 (location VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_44 WHERE date = \"november 15, 2011\"",
    "question_en": "What is the score of the match on November 15, 2011?",
    "question_th": "ผลการแข่งขันวันที่ 15 พฤศจิกายน 2554 เป็นอย่างไรบ้าง?",
    "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_en": "How many races were in the Mallala Motor Sport Park circuit?",
    "question_th": "สนาม Mallala Motor Sport Park มีการแข่งขันทั้งหมดกี่รายการ?",
    "context": "CREATE TABLE table_name_48 (race VARCHAR, circuit VARCHAR)"
  },
  {
    "answer": "SELECT MIN(race) FROM table_name_52 WHERE location___state = \"launceston, tasmania\"",
    "question_en": "What was the first race in Launceston, Tasmania?",
    "question_th": "การแข่งขันครั้งแรกในเมืองลอนเซสตัน รัฐแทสเมเนียคืออะไร?",
    "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_en": "Name the 2nd leg for team 1 of hamburg",
    "question_th": "ตั้งชื่อเลกที่ 2 ให้ทีม 1 ฮัมบวร์ก",
    "context": "CREATE TABLE table_name_90 (team_1 VARCHAR)"
  },
  {
    "answer": "SELECT role FROM table_name_62 WHERE studio = \"mono\" AND title = \"paradise canyon\"",
    "question_en": "Name the role for mono studio and title of paradise canyon",
    "question_th": "ตั้งชื่อบทบาทให้กับสตูดิโอโมโนและชื่อ 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_en": "Name the title for marion burns leading lady and role of john mason",
    "question_th": "ตั้งชื่อตำแหน่งนักแสดงนำหญิง Marion Burns และบทบาทของ 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_en": "Name the role for studio of rep with sheila mannors leading lady and title of westward ho",
    "question_th": "ตั้งชื่อบทบาทให้กับสตูดิโอตัวแทนด้วย ชีล่า มาเนอร์ส นางเอก และตำแหน่งเวสต์เวิร์ด โฮ",
    "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_en": "Name the studio for john scott",
    "question_th": "ตั้งชื่อสตูดิโอให้ 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_en": "What is the amount of 000s from 1996?",
    "question_th": "จำนวนเงิน 000 จากปี 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_en": "What was the amount of 000s when Germany had 16.6?",
    "question_th": "จำนวนเงิน 000 เมื่อเยอรมนีมี 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_en": "Name the average concacaf for merconorte larger than 0 and player of jared borgetti",
    "question_th": "ตั้งชื่อคอนคาแคฟโดยเฉลี่ยสำหรับ Merconorte ที่มากกว่า 0 และผู้เล่นของ 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_en": "Name the least merconorte for interliga of 2 and matches more than 260 with superliga more than 7",
    "question_th": "ตั้งชื่อ Merconorte ที่น้อยที่สุดสำหรับอินเตอร์ลีกาที่ 2 และจับคู่มากกว่า 260 กับซูเปอร์ลีกามากกว่า 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–7, 6–4, [10–7]\"",
    "question_en": "What was the outcome for the match that ended in a score of 5–7, 6–4, [10–7]?",
    "question_th": "ผลลัพธ์ของการแข่งขันที่จบลงด้วยคะแนน 5–7, 6–4, [10–7] คืออะไร?",
    "context": "CREATE TABLE table_name_84 (outcome VARCHAR, score_in_final VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_1 WHERE score_in_final = \"5–7, 6–4, [10–7]\"",
    "question_en": "What was the surface of the match that ended in a score of 5–7, 6–4, [10–7]?",
    "question_th": "พื้นผิวของการแข่งขันที่จบลงด้วยคะแนน 5–7, 6–4, [10–7] คืออะไร?",
    "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_en": "Who were the opponents in the match or matches that ended in a score of W/O?",
    "question_th": "ใครคือคู่ต่อสู้ในการแข่งขันหรือการแข่งขันที่จบลงด้วยคะแนน 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_en": "What kind of Chassis supports a Maserati Straight-6 engine with Points greater than 0 and built in the year 1955?",
    "question_th": "แชสซีแบบใดที่รองรับเครื่องยนต์ Maserati Straight-6 ที่มีคะแนนมากกว่า 0 และผลิตในปี 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_en": "What kind of Chassis supports an Equipe Gordini Entrant?",
    "question_th": "แชสซีประเภทใดที่รองรับผู้เข้าแข่งขัน Equipe Gordini",
    "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_en": "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?",
    "question_th": "ผู้เข้าแข่งขันประเภทใดที่มีเครื่องยนต์ Maserati Straight-6 สร้างขึ้นในปี 1958 หรือต้นปี และมีแชสซี Maserati 250f ที่มีคะแนนน้อยกว่า 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_en": "What is the average year for Maserati Straight-4 Engines?",
    "question_th": "ปีเฉลี่ยของเครื่องยนต์ Maserati Straight-4 คือเท่าไร?",
    "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_en": "Name the sum of ERP W for class of d and frequency mhz of 98.7",
    "question_th": "ตั้งชื่อผลรวมของ ERP W สำหรับคลาส d และความถี่ mhz ที่ 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_en": "Name the ERP W with a frequency mhz more than 93.3 and city license of washington, georgia",
    "question_th": "ตั้งชื่อ ERP W ด้วยความถี่ mhz มากกว่า 93.3 และใบอนุญาตเมืองวอชิงตัน จอร์เจีย",
    "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_en": "Which record has a result of loss in the Hero's 3 event?",
    "question_th": "สถิติใดมีผลแพ้ในศึก 3 ฮีโร่?",
    "context": "CREATE TABLE table_name_41 (record VARCHAR, res VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_98 WHERE record = \"4-0\"",
    "question_en": "Which event led to a 4-0 record?",
    "question_th": "เหตุการณ์ใดนำไปสู่สถิติ 4-0?",
    "context": "CREATE TABLE table_name_98 (event VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_73 WHERE record = \"10-3\"",
    "question_en": "Which location led to a 10-3 record?",
    "question_th": "ตำแหน่งใดที่นำไปสู่สถิติ 10-3?",
    "context": "CREATE TABLE table_name_73 (location VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_90 WHERE opponent = \"masahiro oishi\"",
    "question_en": "In the match against Masahiro Oishi, what was the record?",
    "question_th": "แมตช์กับ มาซาฮิโระ โออิชิ มีสถิติอะไรบ้าง?",
    "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_en": "What is the fewest number of points for clubs with less than 2 draws and more than 8 matches played?",
    "question_th": "จำนวนแต้มน้อยที่สุดสำหรับสโมสรที่เสมอน้อยกว่า 2 นัดและลงเล่นมากกว่า 8 นัดคือข้อใด",
    "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_en": "What is the fewest drawn matches for teams with 2 points and fewer than 6 losses?",
    "question_th": "การแข่งขันที่เสมอน้อยที่สุดสำหรับทีมที่มี 2 แต้มและแพ้น้อยกว่า 6 นัดคืออะไร?",
    "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_en": "What is the most number of losses for Quetta Zorawar?",
    "question_th": "เควตต้า โซราวาร์ แพ้มากที่สุดคือเท่าไหร่?",
    "context": "CREATE TABLE table_name_15 (lost INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT SUM(drawn) FROM table_name_45 WHERE lost = 2",
    "question_en": "What is the sum of the drawn values for teams with 2 losses?",
    "question_th": "ผลรวมของมูลค่าที่สุ่มออกมาสำหรับทีมที่แพ้ 2 ครั้งคือเท่าไร?",
    "context": "CREATE TABLE table_name_45 (drawn INTEGER, lost VARCHAR)"
  },
  {
    "answer": "SELECT round FROM table_name_24 WHERE margin = \"178\"",
    "question_en": "which round has a margin of 178?",
    "question_th": "รอบไหนมีมาร์จิ้น 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_en": "Name the average total for gold less than 1 and rank less than 5",
    "question_th": "ตั้งชื่อผลรวมเฉลี่ยของทองคำที่น้อยกว่า 1 และอันดับที่น้อยกว่า 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_en": "Name the sum of silver when total is mor ethan 1, bronze is 1 and gold is les than 0",
    "question_th": "ตั้งชื่อผลรวมของเงินเมื่อผลรวมคือมอร์อีธาน 1 ทองแดงคือ 1 และทองคำมีค่าน้อยกว่า 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_en": "Name the most gold when bronze is more than 0 and rank is more than 5 with total more than 2",
    "question_th": "ตั้งชื่อทองมากที่สุดเมื่อทองแดงมากกว่า 0 และอันดับมากกว่า 5 รวมมากกว่า 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_en": "Name the average bronze with silver more than 0, total of 6 and gold more than 0",
    "question_th": "ตั้งชื่อบรอนซ์เฉลี่ยด้วยเงินมากกว่า 0 รวม 6 และทองมากกว่า 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_en": "Name the sum of total with gold more than 1 and bronze more than 0",
    "question_th": "ตั้งชื่อผลรวมด้วยทองมากกว่า 1 และทองแดงมากกว่า 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_en": "What country did Jonas Geirnaert direct a film in?",
    "question_th": "Jonas Geirnaert กำกับภาพยนตร์ในประเทศใด",
    "context": "CREATE TABLE table_name_30 (country VARCHAR, director_s_ VARCHAR)"
  },
  {
    "answer": "SELECT nominating_festival FROM table_name_35 WHERE country = \"germany\"",
    "question_en": "What Nominating Festival took place in Germany?",
    "question_th": "เทศกาลเสนอชื่ออะไรจัดขึ้นที่ประเทศเยอรมนี?",
    "context": "CREATE TABLE table_name_35 (nominating_festival VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT category FROM table_name_30 WHERE country = \"switzerland\"",
    "question_en": "What is the category of the film made in Switzerland?",
    "question_th": "ภาพยนตร์ที่ผลิตในสวิตเซอร์แลนด์จัดอยู่ในประเภทใด",
    "context": "CREATE TABLE table_name_30 (category VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT film FROM table_name_80 WHERE director_s_ = \"sandro aguilar\"",
    "question_en": "What film was directed by Sandro Aguilar?",
    "question_th": "ซานโดร อากีลาร์ กำกับภาพยนตร์เรื่องใด",
    "context": "CREATE TABLE table_name_80 (film VARCHAR, director_s_ VARCHAR)"
  },
  {
    "answer": "SELECT language FROM table_name_69 WHERE number = \"14\"",
    "question_en": "Name the language that has number of 14",
    "question_th": "ตั้งชื่อภาษาที่มีเลข 14",
    "context": "CREATE TABLE table_name_69 (language VARCHAR, number VARCHAR)"
  },
  {
    "answer": "SELECT number FROM table_name_73 WHERE language = \"other\"",
    "question_en": "Name the number which has language of other",
    "question_th": "ตั้งชื่อหมายเลขที่มีภาษาอื่น",
    "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_en": "Tell me the average goals for losses of 19 and goals against more than 59",
    "question_th": "บอกจำนวนประตูเฉลี่ยสำหรับการแพ้ 19 ประตูและประตูต่อมากกว่า 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_en": "Name the average position when the goals against are more than 42 and draws less than 16 with goals of 44",
    "question_th": "ตั้งชื่ออันดับเฉลี่ยเมื่อประตูต่อมากกว่า 42 และเสมอน้อยกว่า 16 โดยได้ประตู 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_en": "Which regular season was 2013 in?",
    "question_th": "ปี 2013 อยู่ในฤดูกาลปกติใด",
    "context": "CREATE TABLE table_name_50 (regular_season VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(year) FROM table_name_15 WHERE playoffs = \"conference semifinals\"",
    "question_en": "What year did the team make conference semifinals?",
    "question_th": "ทีมเข้ารอบรองชนะเลิศการประชุมปีไหน?",
    "context": "CREATE TABLE table_name_15 (year VARCHAR, playoffs VARCHAR)"
  },
  {
    "answer": "SELECT MIN(area__km²_) FROM table_name_21 WHERE country = \"russia\" AND rank = 23 AND population > 522 OFFSET 800",
    "question_en": "What's the smallest area in Russia that is ranked 23 with a population more than 522,800?",
    "question_th": "พื้นที่ใดที่เล็กที่สุดในรัสเซียซึ่งอยู่ในอันดับที่ 23 และมีประชากรมากกว่า 522,800 คนคือพื้นที่ใด",
    "context": "CREATE TABLE table_name_21 (area__km²_ INTEGER, population VARCHAR, country VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_32 WHERE date = \"june 8\"",
    "question_en": "On the date of June 8 what was the record?",
    "question_th": "เมื่อวันที่ 8 มิถุนายน มีสถิติอะไรบ้าง?",
    "context": "CREATE TABLE table_name_32 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_32 WHERE date = \"june 15\"",
    "question_en": "On the date of June 15 what was the score?",
    "question_th": "เมื่อวันที่ 15 มิ.ย. คะแนนเป็นอย่างไรบ้าง?",
    "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_en": "What College/junior/club had a player of United States nationality drafted by the Toronto Maple Leafs?",
    "question_th": "วิทยาลัย/จูเนียร์/สโมสรใดมีผู้เล่นสัญชาติสหรัฐอเมริกาที่ 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_en": "What is the college/junior/club team of the defence player drafted by the New York Rangers?",
    "question_th": "ทีมวิทยาลัย/จูเนียร์/สโมสรของผู้เล่นฝ่ายรับที่ร่างโดย 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_en": "What is the rank of the cadillac northstar lmp02 chassis?",
    "question_th": "แชสซีของ cadillac northstar lmp02 มีอันดับเท่าไหร่?",
    "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_en": "What is the entrant for the audi 3.6l turbo v8 engine and ranked 3rd with 163 points?",
    "question_th": "ผู้เข้าชิงเครื่องยนต์ audi 3.6l turbo v8 และอันดับที่ 3 มี 163 คะแนน คือใคร?",
    "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_en": "What is the rank with more than 123 points, an audi r8 chassis, and a lmp900 class?",
    "question_th": "คะแนนเกิน 123 ตัวถัง audi r8 และคลาส lmp900 อยู่ที่อันดับไหน?",
    "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_en": "What is the engine for the bmw motorsport entrant with 123 points before 2004?",
    "question_th": "เครื่องยนต์สำหรับผู้เข้าแข่งขัน BMW Motorsport ที่มี 123 คะแนนก่อนปี 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_en": "Which points have a Combined elapsed time of 175d 20h 46m 04s?",
    "question_th": "จุดใดมีเวลารวมที่ผ่านไปเป็น 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_en": "Which yacht name has a Combined elapsed time of 179d 11h 58m 14s?",
    "question_th": "เรือยอชท์ชื่อใดมีเวลารวมที่ผ่านไปที่ 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_en": "Which skipper has 78 points?",
    "question_th": "กัปตันคนไหนมี 78 แต้ม?",
    "context": "CREATE TABLE table_name_90 (skipper VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT overall_place FROM table_name_57 WHERE yacht_name = \"lg flatron\"",
    "question_en": "Which Overall place has a Yacht name of lg flatron?",
    "question_th": "สถานที่โดยรวมแห่งใดมีชื่อเรือยอชท์ว่า 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_en": "Which Combined elapsed time has a Skipper of stephen wilkins?",
    "question_th": "เวลาที่ผ่านไปแบบผสมผสานใดมีกัปตันของ 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_en": "Before the year 1988, what is the lowest number of points that entrant Coloni SpA scored?",
    "question_th": "ก่อนปี 1988 ผู้เข้าประกวด Coloni SpA ได้คะแนนต่ำสุดคือเท่าใด",
    "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_en": "Which chassis used by the entrant Automobiles Gonfaronnaises Sportives scored 0 points?",
    "question_th": "แชสซีใดที่ผู้เข้าแข่งขัน Automobiles Gonfaronnaises Sportives ได้คะแนน 0 คะแนน",
    "context": "CREATE TABLE table_name_65 (chassis VARCHAR, points VARCHAR, entrant VARCHAR)"
  },
  {
    "answer": "SELECT entrant FROM table_name_41 WHERE year < 1988",
    "question_en": "Who was the entrant before 1988?",
    "question_th": "ใครคือผู้เข้าแข่งขันก่อนปี 1988?",
    "context": "CREATE TABLE table_name_41 (entrant VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT engine FROM table_name_89 WHERE year = 1987",
    "question_en": "Which engine was used in 1987?",
    "question_th": "เครื่องยนต์ใดที่ใช้ในปี 1987?",
    "context": "CREATE TABLE table_name_89 (engine VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT league FROM table_name_39 WHERE year = 2001",
    "question_en": "What league did they play in 2001?",
    "question_th": "พวกเขาเล่นลีกอะไรในปี 2544?",
    "context": "CREATE TABLE table_name_39 (league VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT open_cup FROM table_name_21 WHERE reg_season = \"2nd, northeast\"",
    "question_en": "What open cup did they play in when they finished 2nd, northeast in the reg. season?",
    "question_th": "พวกเขาเล่นในโอเพ่นคัพอะไรเมื่อพวกเขาจบอันดับ 2 ทางตะวันออกเฉียงเหนือในเร็ก ฤดูกาล?",
    "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_en": "What is the week with a date of October 9, 1983, and attendance smaller than 40,492?",
    "question_th": "สัปดาห์ใดคือวันที่ 9 ตุลาคม พ.ศ. 2526 และมีผู้เข้าร่วมน้อยกว่า 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_en": "What is the lowest attendance with week 14?",
    "question_th": "ผู้เข้าร่วมต่ำสุดในสัปดาห์ที่ 14 คืออะไร?",
    "context": "CREATE TABLE table_name_30 (attendance INTEGER, week VARCHAR)"
  },
  {
    "answer": "SELECT game_site FROM table_name_90 WHERE week = 12",
    "question_en": "Where did the Oakland Raiders play in week 12 of their 1976 season?",
    "question_th": "Oakland Raiders เล่นที่ไหนในสัปดาห์ที่ 12 ของฤดูกาล 1976?",
    "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_en": "How many years did Barclay Nordica Arrows BMW enter with Cosworth v8 engine?",
    "question_th": "Barclay Nordica Arrows BMW เข้าสู่เครื่องยนต์ Cosworth v8 กี่ปี?",
    "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_en": "How many years did barclay nordica arrows bmw enter with a bmw str-4 t/c engine with less than 1 point?",
    "question_th": "barclay nordica arrows bmw เข้ามาพร้อมกับเครื่องยนต์ bmw str-4 t/c ที่มีคะแนนไม่ถึง 1 คะแนนมากี่ปีแล้ว?",
    "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_en": "How many years was ensign n180b a Chassis with 4 points?",
    "question_th": "แชสซี n180b มี 4 คะแนนมากี่ปีแล้ว?",
    "context": "CREATE TABLE table_name_12 (year INTEGER, points VARCHAR, chassis VARCHAR)"
  },
  {
    "answer": "SELECT division_record FROM table_name_26 WHERE team = \"indians\"",
    "question_en": "What is the division record for the Indians?",
    "question_th": "บันทึกการแบ่งฝ่ายสำหรับชาวอินเดียนแดงคืออะไร?",
    "context": "CREATE TABLE table_name_26 (division_record VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT overall_record FROM table_name_17 WHERE school = \"indian river\"",
    "question_en": "What is the overall record of Indian River?",
    "question_th": "บันทึกโดยรวมของ 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_en": "What was the season outcome of Lake Forest?",
    "question_th": "ผลลัพธ์ฤดูกาลของ 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_en": "How many Deciles are coed?",
    "question_th": "นิสิตมีกี่เดซิล?",
    "context": "CREATE TABLE table_name_51 (decile VARCHAR, gender VARCHAR)"
  },
  {
    "answer": "SELECT MIN(decile) FROM table_name_94 WHERE gender = \"coed\"",
    "question_en": "Which is the lowest Decile that is coed?",
    "question_th": "Decile ต่ำสุดที่ coed คือตัวไหน?",
    "context": "CREATE TABLE table_name_94 (decile INTEGER, gender VARCHAR)"
  },
  {
    "answer": "SELECT years FROM table_name_98 WHERE name = \"kawerau putauaki school\"",
    "question_en": "What are the years for Kawerau Putauaki School?",
    "question_th": "โรงเรียน Kawerau Putauaki คือกี่ปี?",
    "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_en": "What is the round or race of the winning driver Charles Hollings and what was his pole position?",
    "question_th": "รอบหรือการแข่งขันของนักแข่งที่ชนะ Charles Hollings คืออะไร และตำแหน่งโพลโพซิชั่นของเขาคืออะไร?",
    "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_en": "What was the earliest year in which long jump was performed in the world indoor Championships in 5th position?",
    "question_th": "ปีแรกสุดที่มีการกระโดดไกลในการแข่งขันชิงแชมป์โลกในร่มอันดับที่ 5 คืออะไร?",
    "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_en": "What was the latest year in which she took 4th position in Budapest, Hungary?",
    "question_th": "ปีล่าสุดที่เธอครองตำแหน่งที่ 4 ในเมืองบูดาเปสต์ ประเทศฮังการี คือปีใด",
    "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_en": "Which astronaut went on the Apollo 16 mission at the age of 36y 6m 18d to step on the moon?",
    "question_th": "นักบินอวกาศคนไหนไปปฏิบัติภารกิจ Apollo 16 เมื่ออายุ 36 ปี 6 นาที 18 วัน เพื่อเหยียบดวงจันทร์?",
    "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_en": "David Scott went on which mission?",
    "question_th": "David Scott ไปทำภารกิจอะไร?",
    "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_en": "The astronaut who was 37y 8m 4d when making a first step on the moon was in which service?",
    "question_th": "นักบินอวกาศที่ก้าวแรกบนดวงจันทร์ด้วยวัย 37 ปี 8 นาที 4 วัน ทำหน้าที่ใด",
    "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_en": "Pete Conrad was on the Apollo 12 mission but also had what Lunar EVA dates?",
    "question_th": "Pete Conrad อยู่ในภารกิจ Apollo 12 แต่ก็มี Lunar EVA วันที่ใดบ้างด้วย",
    "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_en": "The Apollo astronaut who was 38y 9m 7d when first stepping on the moon is who?",
    "question_th": "นักบินอวกาศ Apollo ที่เหยียบดวงจันทร์ครั้งแรกด้วยวัย 38 ปี 9 นาที 7 วัน คือใคร?",
    "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_en": "Which class has a year prior to 2011 and audi r15 tdi as the chassis?",
    "question_th": "คลาสใดที่มีหนึ่งปีก่อนปี 2011 และ audi r15 tdi เป็นแชสซี",
    "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_en": "Which engine has a year later than 2006 and 60 as the points?",
    "question_th": "เครื่องยนต์ใดที่มีคะแนนมากกว่าปี 2549 และ 60 ในหนึ่งปี?",
    "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_en": "How many years has an engine of audi 3.6l turbo v8 and 1st as the rank with an audi r8r as the chassis?",
    "question_th": "กี่ปีที่มีเครื่องยนต์ audi 3.6l turbo v8 และอันดับ 1 โดยมี audi r8r เป็นแชสซี?",
    "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_en": "Which entrant has 25th as the rank?",
    "question_th": "ผู้เข้าแข่งขันคนใดมีอันดับที่ 25 เป็นอันดับที่?",
    "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_en": "What is the average year Rich Beem had a to par less than 17?",
    "question_th": "ปีเฉลี่ยที่ Rich Beem มีพาร์น้อยกว่า 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_en": "What is the earliest year won with a total bigger than 156?",
    "question_th": "ปีแรกสุดที่ชนะด้วยคะแนนรวมมากกว่า 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_en": "What is the total for Bob Tway for the year won before 2002 with a to par bigger than 7?",
    "question_th": "จำนวนรวมของ Bob Tway สำหรับปีก่อนปี 2002 ที่พาร์มากกว่า 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_en": "What is the to par for Paul Azinger from the United States after 1986 for a total bigger than 145?",
    "question_th": "ค่าพาร์ของ Paul Azinger จากสหรัฐอเมริกาหลังปี 1986 ที่พาร์รวมมากกว่า 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_en": "What is the earliest year won Paul Azinger had with a to par higher than 5?",
    "question_th": "ปีแรกสุดที่ Paul Azinger ชนะโดยมีพาร์สูงกว่า 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_en": "What is the year won by Australia with a to par bigger than 16?",
    "question_th": "ออสเตรเลียชนะปีไหนโดยมีพาร์มากกว่า 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_en": "What is the Lifespan when the Representative is Theodore F. Kluttz?",
    "question_th": "อายุขัยเมื่อตัวแทนคือ Theodore F. Kluttz คืออะไร",
    "context": "CREATE TABLE table_name_96 (lifespan VARCHAR, representative VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_88 WHERE result = \"l 35–37\"",
    "question_en": "What week's game had a result of l 35–37?",
    "question_th": "เกมประจำสัปดาห์ใดมีผลการแข่งขัน l 35–37?",
    "context": "CREATE TABLE table_name_88 (week VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_16 WHERE entrant = \"trio brdeact wind allass\"",
    "question_en": "What year was trio brdeact wind allass the entrant?",
    "question_th": "ทั้งสามคนเป็นลมที่เข้ามาในปีใด?",
    "context": "CREATE TABLE table_name_16 (year VARCHAR, entrant VARCHAR)"
  },
  {
    "answer": "SELECT SUM(year) FROM table_name_46 WHERE chassis = \"kurtis kraft 500f\"",
    "question_en": "What is the year when kurtis kraft 500f was the chassis?",
    "question_th": "แชสซีของ Kurtis kraft 500f คือปีอะไร?",
    "context": "CREATE TABLE table_name_46 (year INTEGER, chassis VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_name_38 WHERE points > 0",
    "question_en": "What is the earliest year when the points were more than 0?",
    "question_th": "ปีแรกสุดที่คะแนนเกิน 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_en": "What's the school name in Balclutha that has a Decile of 7 and a roll larger than 186?",
    "question_th": "โรงเรียนชื่ออะไรใน Balclutha ที่มี Decile เท่ากับ 7 และม้วนใหญ่กว่า 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_en": "Which school in Balclutha has a roll smaller than 55?",
    "question_th": "โรงเรียนไหนใน Balclutha มีม้วนเล็กกว่า 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–6\"",
    "question_en": "When has winnipeg jets with a Score of 4–6?",
    "question_th": "วินนิเพกเจ็ตด้วยคะแนน 4–6 เมื่อใด",
    "context": "CREATE TABLE table_name_82 (date VARCHAR, home VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_99 WHERE home = \"edmonton oilers\"",
    "question_en": "When is Edmonton Oilers in?",
    "question_th": "Edmonton Oilers จัดขึ้นเมื่อไหร่?",
    "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_en": "What is the Score that has a Winnipeg Jets as Visitor on april 7?",
    "question_th": "คะแนนที่มี Winnipeg Jets เป็นผู้มาเยือนในวันที่ 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_en": "What is the Score on April 6?",
    "question_th": "คะแนนวันที่ 6 เมษายนเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_71 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_52 WHERE record = \"1–0\"",
    "question_en": "When has a Record of 1–0?",
    "question_th": "เมื่อมีสถิติ 1–0?",
    "context": "CREATE TABLE table_name_52 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT llws FROM table_name_37 WHERE year = 2003",
    "question_en": "What is the LLWS when the Year is 2003?",
    "question_th": "LLWS คืออะไรในปี 2546?",
    "context": "CREATE TABLE table_name_37 (llws VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_name_2 WHERE city = \"peabody\"",
    "question_en": "What is the earliest Year when the City is Peabody?",
    "question_th": "ปีแรกสุดคือเมืองพีบอดีคือปีใด?",
    "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_en": "What is the total number of Years when the LLWS is 4th place, and when the City is Westport?",
    "question_th": "จำนวนปีทั้งหมดเมื่อ LLWS อยู่ในอันดับที่ 4 และเมืองคือ 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_en": "What team has Pony as the kit manufacturer and Gary Mabbutt as the captain?",
    "question_th": "ทีมใดมี Pony เป็นผู้ผลิตอุปกรณ์ และมี Gary Mabbutt เป็นกัปตัน",
    "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_en": "Who is the manager 1 for Leeds United?",
    "question_th": "ใครคือผู้จัดการทีมคนที่ 1 ของลีดส์ ยูไนเต็ด?",
    "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_en": "What is the team with a Pony kit manufacturer and Julian Dicks as the captain?",
    "question_th": "ทีมอะไรที่มีผู้ผลิตชุด Pony และมี Julian Dicks เป็นกัปตัน?",
    "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_en": "What team has a kit manufacturer of Umbro and Eric Cantona as captain?",
    "question_th": "ทีมไหนมีผู้ผลิตชุดแข่งอย่างอัมโบรและเอริค คันโตน่าเป็นกัปตันทีม?",
    "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_en": "Who is the manager 1 with Puma as the kit manufacturer and Puma as the shirt sponsor?",
    "question_th": "ผู้จัดการทีมคนที่ 1 โดยมี พูม่า เป็นผู้ผลิตชุดแข่ง และ พูม่า เป็นผู้สนับสนุนเสื้อ?",
    "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_en": "What is the kit manufacturer with Walkers as the shirt sponsor?",
    "question_th": "ผู้ผลิตชุดอุปกรณ์ที่มีวอล์คเกอร์สเป็นผู้สนับสนุนเสื้อคืออะไร?",
    "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_en": "Name the average points for dallara 3087 lola t88/50 and year before 1988",
    "question_th": "ตั้งชื่อคะแนนเฉลี่ยสำหรับ dallara 3087 lola t88/50 และปีก่อนปี 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_en": "Name the sum of points for 1992",
    "question_th": "ตั้งชื่อผลรวมคะแนนสำหรับปี 1992",
    "context": "CREATE TABLE table_name_38 (points INTEGER, year VARCHAR)"
  },
  {
    "answer": "SELECT points FROM table_name_56 WHERE year > 1987",
    "question_en": "Name the points for year more than 1987",
    "question_th": "ตั้งชื่อคะแนนสำหรับปีมากกว่า 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_en": "Name the year for points less than 20 and chassis of dallara 3087",
    "question_th": "ตั้งชื่อปีสำหรับคะแนนน้อยกว่า 20 และแชสซีของ 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_en": "What is the most apps that a has a total season and 3 goals?",
    "question_th": "แอพใดที่มีทั้งฤดูกาลและ 3 ประตูมากที่สุด?",
    "context": "CREATE TABLE table_name_22 (apps INTEGER, season VARCHAR, goals VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(apps) FROM table_name_90 WHERE goals = 2",
    "question_en": "What is the final number of apps with 2 goals?",
    "question_th": "แอพสุดท้ายที่มี 2 เป้าหมายคือเท่าไหร่?",
    "context": "CREATE TABLE table_name_90 (apps VARCHAR, goals VARCHAR)"
  },
  {
    "answer": "SELECT airdate FROM table_name_62 WHERE bbc_one_weekly_ranking = 14",
    "question_en": "What date did the episode with a weekly ranking of 14 air?",
    "question_th": "ตอนที่มีอันดับ 14 ออกอากาศประจำสัปดาห์คือวันไหน?",
    "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_en": "What is the total number of total viewers with a share of 18.8% and a weekly ranking under 16?",
    "question_th": "จำนวนผู้ชมทั้งหมดที่มีส่วนแบ่ง 18.8% และอันดับรายสัปดาห์ต่ำกว่า 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_en": "Who has 37 grids?",
    "question_th": "ใครมี 37 กริดบ้าง?",
    "context": "CREATE TABLE table_name_36 (rider VARCHAR, grid VARCHAR)"
  },
  {
    "answer": "SELECT AVG(grid) FROM table_name_78 WHERE laps > 23",
    "question_en": "What is the average grid with more than 23 laps?",
    "question_th": "ตารางเฉลี่ยที่มากกว่า 23 รอบเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_78 (grid INTEGER, laps INTEGER)"
  },
  {
    "answer": "SELECT AVG(grid) FROM table_name_56 WHERE laps > 23",
    "question_en": "What is the average grid with more than 23 laps?",
    "question_th": "ตารางเฉลี่ยที่มากกว่า 23 รอบเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_56 (grid INTEGER, laps INTEGER)"
  },
  {
    "answer": "SELECT AVG(decile) FROM table_name_84 WHERE name = \"te puru school\"",
    "question_en": "What is the average decile for te puru school?",
    "question_th": "เดซิลเฉลี่ยของโรงเรียนเตปูรูคือเท่าไร?",
    "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_en": "What is the total decile with an Area of whitianga, and a Roll smaller than 835?",
    "question_th": "Decile รวมที่มีพื้นที่ Whitianga และม้วนเล็กกว่า 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_en": "Which name has an Area of kennedy bay?",
    "question_th": "ชื่อใดมีบริเวณอ่าวเคนเนดี",
    "context": "CREATE TABLE table_name_50 (name VARCHAR, area VARCHAR)"
  },
  {
    "answer": "SELECT years FROM table_name_55 WHERE decile > 4 AND area = \"thames\"",
    "question_en": "Which years have a Decile larger than 4, and an Area of thames?",
    "question_th": "ปีใดมีเดซิลมากกว่า 4 และพื้นที่แม่น้ำเทมส์",
    "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_en": "Which Authority has a Decile smaller than 6, and an Area of opoutere?",
    "question_th": "หน่วยงานใดที่มี Decile น้อยกว่า 6 และพื้นที่ของ opoutere?",
    "context": "CREATE TABLE table_name_68 (authority VARCHAR, decile VARCHAR, area VARCHAR)"
  },
  {
    "answer": "SELECT gender FROM table_name_17 WHERE years = \"1–8\" AND authority = \"state\" AND roll < 184 AND name = \"matatoki school\"",
    "question_en": "Which gender has Years of 1–8, an Authority of state, a Roll less than 184, and a Name of matatoki school?",
    "question_th": "เพศใดที่มีปี 1-8, ผู้มีอำนาจ, มีรายชื่อน้อยกว่า 184 และชื่อโรงเรียนมาทาโทกิ",
    "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 = –4(71 - 72 - 72 - 69 = 284)",
    "question_en": "What was the tournament that resulted in a winning score of –4 (71-72-72-69=284)?",
    "question_th": "การแข่งขันใดที่มีคะแนนชนะ –4 (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_en": "What was the winning score of the event where Brian Kamm was the runner-up?",
    "question_th": "คะแนนชนะของงานที่ Brian Kamm คว้ารองชนะเลิศคือเท่าไร?",
    "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 = –15(66 - 67 - 70 - 70 = 273)",
    "question_en": "Who was the runner-up for the event that ended with a winning score of –15 (66-67-70-70=273)?",
    "question_th": "ใครคือรองชนะเลิศในงานที่จบลงด้วยคะแนน –15 (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_en": "On what date was the Nike Colorado Classic held?",
    "question_th": "Nike Colorado Classic จัดขึ้นวันไหน?",
    "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_en": "What was the winning score of the Buy.com Siouxland Open?",
    "question_th": "คะแนนชนะของ 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_en": "What is the total with lower than rank 8, and higher than 27.6 score and 13.8 difficulty?",
    "question_th": "คะแนนรวมต่ำกว่าอันดับ 8 และสูงกว่า 27.6 คะแนน และความยาก 13.8 เป็นเท่าใด",
    "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_en": "What is the average medal total of the country who had 0 silver medals and participated in less than 15 games?",
    "question_th": "เหรียญเงินเฉลี่ยทั้งหมดของประเทศที่ได้ 0 เหรียญเงินและเข้าร่วมการแข่งขันน้อยกว่า 15 เกมคือเท่าใด",
    "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_en": "What is the least Points with Chassis of forti fg01b forti fg03, and a year less than 1996?",
    "question_th": "อะไรคือคะแนนที่น้อยที่สุดกับแชสซีของ forti fg01b forti fg03 และหนึ่งปีน้อยกว่าปี 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_en": "What is the lowest year for an engine of ford zetec-r v8, and points greater than 0?",
    "question_th": "ปีต่ำสุดสำหรับเครื่องยนต์ ford zetec-r v8 และคะแนนมากกว่า 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_en": "What are the average points for an engine of ford zetec-r v8?",
    "question_th": "คะแนนเฉลี่ยของเครื่องยนต์ 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_en": "Name the years for elsthorpe school",
    "question_th": "ตั้งชื่อปีของโรงเรียน elsthorpe",
    "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_en": "Name the total number of roll for st joseph's school when decile is less than 5",
    "question_th": "ตั้งชื่อจำนวนม้วนทั้งหมดสำหรับโรงเรียนเซนต์โจเซฟเมื่อเดไซล์น้อยกว่า 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_en": "Name the gender for elsthorpe school",
    "question_th": "ตั้งชื่อเพศสำหรับโรงเรียน elsthorpe",
    "context": "CREATE TABLE table_name_63 (gender VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT drivers FROM table_name_88 WHERE chassis = \"season cancelled\"",
    "question_en": "Name the drivers for chassis of season cancelled",
    "question_th": "ตั้งชื่อไดรเวอร์สำหรับแชสซีของฤดูกาลที่ถูกยกเลิก",
    "context": "CREATE TABLE table_name_88 (drivers VARCHAR, chassis VARCHAR)"
  },
  {
    "answer": "SELECT teams FROM table_name_95 WHERE third__points_ = \"season cancelled\"",
    "question_en": "Name the teams for third points of season cancelled",
    "question_th": "ยกเลิกรายชื่อทีมสำหรับแต้มที่ 3 ของฤดูกาล",
    "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_en": "Name the engine with rounds of 11 and teams of 25",
    "question_th": "ตั้งชื่อเครื่องยนต์ด้วยรอบ 11 และทีม 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_en": "What was the score for the loss of McDowell (12-7)?",
    "question_th": "แพ้แม็คโดเวลล์ (12-7) สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_39 (score VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT SUM(laps) FROM table_name_1 WHERE year = 2011",
    "question_en": "What is the total laps for the year 2011?",
    "question_th": "รอบทั้งหมดสำหรับปี 2554 เป็นเท่าใด?",
    "context": "CREATE TABLE table_name_1 (laps INTEGER, year VARCHAR)"
  },
  {
    "answer": "SELECT class AS pos FROM table_name_98 WHERE pos = \"9th\"",
    "question_en": "Which team is in 9th place?",
    "question_th": "ทีมไหนอยู่อันดับที่ 9?",
    "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_en": "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?",
    "question_th": "ผลรวมของดิวิชั่นที่มาจากประเทศเซอร์เบียและมอนเตเนโกรที่มีแอปน้อยกว่า 12 แอปโดยมีเป้าหมายมากกว่า 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_en": "What is the total number of goals that the Partizan team from the country of serbia had that was larger than 1?",
    "question_th": "จำนวนประตูทั้งหมดที่ทีมปาร์ติซานจากประเทศเซอร์เบียทำได้มากกว่า 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_en": "What year was the Honda ra168e 1.5 v6 t engine used?",
    "question_th": "เครื่องยนต์ Honda ra168e 1.5 v6 t ใช้ปีไหน?",
    "context": "CREATE TABLE table_name_47 (year VARCHAR, engine VARCHAR)"
  },
  {
    "answer": "SELECT tyres FROM table_name_40 WHERE chassis = \"mp4/14\"",
    "question_en": "What tyres were used with the mp4/14 chassis?",
    "question_th": "ยางอะไรที่ใช้กับแชสซี mp4/14",
    "context": "CREATE TABLE table_name_40 (tyres VARCHAR, chassis VARCHAR)"
  },
  {
    "answer": "SELECT tickets_sold___available FROM table_name_54 WHERE city = \"barcelona\"",
    "question_en": "How many tickets were there sold/available in Barcelona?",
    "question_th": "มีตั๋วที่ขาย/มีจำหน่ายในบาร์เซโลนากี่ใบ?",
    "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_en": "How many tickets were sold/available when the gross revenue (2011) was $366,916?",
    "question_th": "มีการขาย/จำหน่ายตั๋วจำนวนเท่าใดเมื่อรายได้รวม (2554) อยู่ที่ 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_en": "How many tickets were sold/available when the gross revenue (2011) was $5,948,390?",
    "question_th": "มีการขาย/จำหน่ายตั๋วจำนวนเท่าใดเมื่อรายได้รวม (2554) อยู่ที่ 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_en": "What was the gross revenue (1986) when there were tickets sold/available of 24,000 / 24,000 (100%)?",
    "question_th": "รายได้รวม (1986) เมื่อมีการขายตั๋ว/จำหน่าย 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_en": "What was the score in the 1st leg when Stade d'Abidjan was Team 2?",
    "question_th": "ในเลกแรกเมื่อสตาด ดาบีจานอยู่ทีม 2 สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_34 (team_2 VARCHAR)"
  },
  {
    "answer": "SELECT agg FROM table_name_55 WHERE team_1 = \"union douala\"",
    "question_en": "What was the aggregate score that had Union Douala as Team 1?",
    "question_th": "คะแนนรวมที่มี Union Douala เป็นทีม 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_en": "What was the 2nd leg score of the aggregate score of 4-9?",
    "question_th": "สกอร์รวม 4-9 เลกที่ 2 เป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_46 (agg VARCHAR)"
  },
  {
    "answer": "SELECT team_2 FROM table_name_81 WHERE team_1 = \"stationery stores\"",
    "question_en": "Who was Team 2 when Stationery Stores was Team 1?",
    "question_th": "ใครคือทีม 2 เมื่อร้านเครื่องเขียนคือทีม 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_en": "Which Team 1 has an aggregate score of 1-1 1?",
    "question_th": "ทีมใด 1 มีสกอร์รวม 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_en": "Can you tell me the Chassis that has the Year of 1977?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าแชสซีที่มีปี 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_en": "Can you tell me the Entrant that has the Chassis of march 742, and the Year larger than 1974?",
    "question_th": "คุณช่วยบอกฉันเกี่ยวกับผู้เข้าร่วมที่มีแชสซีของเดือนมีนาคม 742 และปีที่ใหญ่กว่าปี 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_en": "Can you tell me the Chassis that has the Entrant of trivellato racing team?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าแชสซีที่มีผู้เข้าร่วมทีมแข่ง trivellato?",
    "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_en": "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?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าแชสซีที่มีคะแนน 13 และปี 1975 และผู้เข้าร่วม 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_en": "What is the lowest value of a team with revenue less than 374 and a debt of 84%?",
    "question_th": "มูลค่าต่ำสุดของทีมที่มีรายได้น้อยกว่า 374 และมีหนี้สิน 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_en": "What is the highest operating income that change by 2% and is less than $1,036m?",
    "question_th": "รายได้จากการดำเนินงานสูงสุดที่เปลี่ยนแปลง 2% และน้อยกว่า 1,036 ล้านเหรียญสหรัฐคือข้อใด",
    "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_en": "Which team did they play on September 19?",
    "question_th": "พวกเขาเล่นทีมไหนในวันที่ 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_en": "What's the FCC info with a Frequency MHz thats smaller than 91.9 and has a CIty of license of Dansville, NY?",
    "question_th": "ข้อมูล FCC ที่มีความถี่ MHz ที่เล็กกว่า 91.9 และมีใบอนุญาต CIty ของ 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_en": "What's the FCC info with a Frequency MHz thats smaller than 100.3 and a City of License as Lowville, NY?",
    "question_th": "ข้อมูล FCC ที่มีความถี่ MHz ที่เล็กกว่า 100.3 และเมืองแห่งใบอนุญาตในชื่อ 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_en": "What's the Call sign with a Frequency MHz thats smaller than 95.9 and an ERP W of 10?",
    "question_th": "สัญญาณเรียกขานที่มีความถี่ MHz ที่เล็กกว่า 95.9 และ ERP W เท่ากับ 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_en": "What is listed as the highest ERP W with a Call sign of W262AC?",
    "question_th": "ERP W สูงสุดที่มีสัญญาณเรียกขาน 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_en": "What's the sum of ERP W with a Frequency MHz that larger than 97.7?",
    "question_th": "ผลรวมของ ERP W ที่มีความถี่ MHz ที่มากกว่า 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_en": "What was the score of the game played on September 9?",
    "question_th": "คะแนนของเกมที่เล่นในวันที่ 9 กันยายนเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_5 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT overall_record FROM table_name_9 WHERE school = \"indian river\"",
    "question_en": "Name the overall record for indian river",
    "question_th": "ตั้งชื่อบันทึกโดยรวมสำหรับแม่น้ำอินเดีย",
    "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_en": "How much money was won for the game with a score of 74-76-71-71=292?",
    "question_th": "เกมนี้ชนะเงินไปเท่าไหร่ด้วยคะแนน 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_en": "What country was the player from with a score of 70-79-74-68=291?",
    "question_th": "นักเตะจากประเทศไหน มีคะแนน 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_en": "When To par was less than 2, what was the score?",
    "question_th": "เมื่อถึงพาร์น้อยกว่า 2 สกอร์เท่าไหร่?",
    "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_en": "When was the match with a result of sa by 10 wkts?",
    "question_th": "การแข่งขันโดยผล sa คูณ 10 สัปดาห์คือเมื่อใด?",
    "context": "CREATE TABLE table_name_23 (date VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_18 WHERE result = \"sa by 10 wkts\"",
    "question_en": "When was the match with a result of sa by 10 wkts?",
    "question_th": "การแข่งขันโดยผล sa คูณ 10 สัปดาห์คือเมื่อใด?",
    "context": "CREATE TABLE table_name_18 (date VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_49 WHERE venue = \"centurion park\"",
    "question_en": "When was there a match in Centurion Park?",
    "question_th": "แมตช์ที่เซ็นจูเรียน พาร์ค จัดขึ้นเมื่อไหร่?",
    "context": "CREATE TABLE table_name_49 (date VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_1 WHERE qual = \"144.817\"",
    "question_en": "Name the finish which has qual of 144.817",
    "question_th": "ตั้งชื่อเส้นชัยซึ่งมีคุณสมบัติเท่ากับ 144.817",
    "context": "CREATE TABLE table_name_1 (finish VARCHAR, qual VARCHAR)"
  },
  {
    "answer": "SELECT qual FROM table_name_78 WHERE rank = \"9\"",
    "question_en": "Name the qual for rank of 9",
    "question_th": "ตั้งชื่อคุณสมบัติสำหรับอันดับที่ 9",
    "context": "CREATE TABLE table_name_78 (qual VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT qual FROM table_name_1 WHERE year = \"1957\"",
    "question_en": "Name the qual for 1957",
    "question_th": "ตั้งชื่อคุณสมบัติสำหรับปี 1957",
    "context": "CREATE TABLE table_name_1 (qual VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_61 WHERE name = \"de la red\"",
    "question_en": "What shows as the status for the name of de la red?",
    "question_th": "สถานะชื่อเดอลาแดงแสดงอะไรบ้าง?",
    "context": "CREATE TABLE table_name_61 (status VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_39 WHERE transfer_fee = \"—\" AND transfer_window = \"summer\" AND status = \"loaned out\" AND name = \"gonzález\"",
    "question_en": "What country has a Transfer fee of —, and a Transfer window of summer, and the Status of loaned out, and a Name of gonzález?",
    "question_th": "ประเทศใดมีค่าธรรมเนียมการโอน — และหน้าต่างโอนย้ายในช่วงฤดูร้อน และสถานะการยืมตัว และชื่อของกอนซาเลซ",
    "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_en": "What shows as the status for Diogo?",
    "question_th": "สถานะของดิโอโก้แสดงอะไร?",
    "context": "CREATE TABLE table_name_29 (status VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_20 WHERE country = \"esp\" AND transfer_fee = \"€ 7m\"",
    "question_en": "What is the name when the country is ESP and the transfer fee is € 7m?",
    "question_th": "ชื่ออะไรเมื่อประเทศคือ ESP และค่าธรรมเนียมการโอนคือ 7 ล้านยูโร?",
    "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_en": "What is the transfer window for the country of ESP and the name of de la red?",
    "question_th": "หน้าต่างการโอนสำหรับประเทศของ ESP และชื่อของเดอลาเรดคืออะไร?",
    "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_en": "What is the transfer fee of Diogo?",
    "question_th": "ค่าธรรมเนียมการโอนของ ดิโอโก้ คืออะไร?",
    "context": "CREATE TABLE table_name_53 (transfer_fee VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT MIN(att) FROM table_name_2 WHERE loss = \"lohse (12–11)\"",
    "question_en": "What was the lowest attendance at a game that had a loss of lohse (12–11)?",
    "question_th": "ผู้เข้าร่วมน้อยที่สุดในเกมที่แพ้โลเซ (12–11) คืออะไร?",
    "context": "CREATE TABLE table_name_2 (att INTEGER, loss VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_4 WHERE opponent = \"royals\" AND record = \"81–73\"",
    "question_en": "What was time of the game against the Royals with a record of 81–73?",
    "question_th": "ช่วงเวลาของเกมกับ Royals ด้วยสถิติ 81–73 คืออะไร?",
    "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_en": "Which round has a Kick Off of 1992-10-01 21:15?",
    "question_th": "รอบใดที่มี Kick Off ของ 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_en": "Which round has a Kick Off of 1993-02-17 20:30?",
    "question_th": "รอบใดที่มี Kick Off ของ 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_en": "What is the lowest maximum of fps with a width of 3072 and a height less than 1620?",
    "question_th": "ค่าสูงสุดต่ำสุดของ fps ที่มีความกว้าง 3072 และความสูงน้อยกว่า 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_en": "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?",
    "question_th": "fps สูงสุด HDRx ที่มีความสูงมากกว่า 1080 ด้วยการบีบอัดที่ 24 fps 6:1 ด้วยการบีบอัดที่ fps สูงสุดอย่างน้อย 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_en": "Who got the loss on the game that ended in a 52-36 record?",
    "question_th": "ใครเป็นผู้แพ้ในเกมที่จบลงด้วยสถิติ 52-36?",
    "context": "CREATE TABLE table_name_22 (loss VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_74 WHERE record = \"55-41\"",
    "question_en": "Who got the loss for the game ending in a record of 55-41?",
    "question_th": "ใครเป็นผู้แพ้ในเกมที่จบลงด้วยสถิติ 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_en": "Which team opponent had a loss with their pitcher Dotson (8-6)?",
    "question_th": "คู่ต่อสู้ของทีมใดที่แพ้ด้วยเหยือก 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_en": "What is the average 2006 value for wheat with a 2005 value greater than 7340?",
    "question_th": "มูลค่าเฉลี่ยปี 2549 สำหรับข้าวสาลีที่มีมูลค่าปี 2548 มากกว่า 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_en": "What is the average 2002 value for Sunflower, which had a 2010 value less than 5587 and a 2007 value greater than 546?",
    "question_th": "ค่าเฉลี่ยปี 2002 ของ Sunflower ซึ่งมีค่าปี 2010 น้อยกว่า 5587 และค่าปี 2007 มากกว่า 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_en": "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?",
    "question_th": "ค่าเฉลี่ยปี 2001 ที่มีมูลค่าปี 2010 มากกว่า 414 ค่าปี 2011 เป็น 7192 และค่าปี 2005 มากกว่า 7340 คืออะไร",
    "context": "CREATE TABLE table_name_41 (Id VARCHAR)"
  },
  {
    "answer": "SELECT SUM(2006) FROM table_name_83 WHERE 2011 > 4113 AND 2008 < 7181",
    "question_en": "What is the 2006 value with a 2011 value greater than 4113 and a 2008 value less than 7181?",
    "question_th": "ค่า 2006 ที่มีค่า 2011 มากกว่า 4113 และค่า 2008 น้อยกว่า 7181 คืออะไร",
    "context": "CREATE TABLE table_name_83 (Id VARCHAR)"
  },
  {
    "answer": "SELECT gamecenter FROM table_name_17 WHERE attendance = \"65,212\"",
    "question_en": "Name the gamecenter that has attendance of 65,212",
    "question_th": "ตั้งชื่อศูนย์เกมที่มีผู้เข้าร่วม 65,212 คน",
    "context": "CREATE TABLE table_name_17 (gamecenter VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT gamecenter FROM table_name_48 WHERE attendance = \"78,551\"",
    "question_en": "Name the gamecenter with attendance of 78,551",
    "question_th": "ตั้งชื่อศูนย์เกมด้วยจำนวนผู้เข้าร่วม 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_en": "Name the tv time for attendance of 69,551",
    "question_th": "แจ้งเวลาดูทีวี จำนวน 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_en": "what is the smallest number of laps imre toth has?",
    "question_th": "จำนวนรอบที่น้อยที่สุดมีจำนวนเท่าไร?",
    "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_en": "what is the smallest number of laps marco simoncelli has with grid less than 8 and gilera as the manufacturer?",
    "question_th": "Marco Simoncelli มีจำนวนรอบน้อยที่สุดเท่าใดโดยที่มีกริดน้อยกว่า 8 และมี gilera เป็นผู้ผลิต",
    "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_en": "Who was the away captain at Brisbane Cricket Ground?",
    "question_th": "ใครคือกัปตันทีมเยือนที่สนามคริกเก็ตบริสเบน?",
    "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_en": "Who was the home captain at Sydney Cricket Ground?",
    "question_th": "ใครคือกัปตันทีมเหย้าที่สนามคริกเก็ตซิดนีย์?",
    "context": "CREATE TABLE table_name_34 (home_captain VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_95 WHERE venue = \"brisbane cricket ground\"",
    "question_en": "On what date was the venue at Brisbane Cricket Ground?",
    "question_th": "สนามคริกเก็ตบริสเบนจัดขึ้นวันที่ใด?",
    "context": "CREATE TABLE table_name_95 (date VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT away_captain FROM table_name_60 WHERE venue = \"waca ground\"",
    "question_en": "Who was the away captain at Waca Ground?",
    "question_th": "ใครคือกัปตันทีมเยือนที่ 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_en": "On what date was the venue at Brisbane Cricket Ground?",
    "question_th": "สนามคริกเก็ตบริสเบนจัดขึ้นวันที่ใด?",
    "context": "CREATE TABLE table_name_23 (date VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_65 WHERE date = \"june 30\"",
    "question_en": "What was the score for the game on June 30?",
    "question_th": "สกอร์เกมวันที่ 30 มิถุนายน เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_65 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_12 WHERE catalog__number = \"pcr 502\"",
    "question_en": "What CD has a catalog # of PCR 502?",
    "question_th": "ซีดีใดมีแคตตาล็อก # ของ PCR 502",
    "context": "CREATE TABLE table_name_12 (title VARCHAR, catalog__number VARCHAR)"
  },
  {
    "answer": "SELECT title FROM table_name_64 WHERE released = 2009",
    "question_en": "What CD was released in 2009?",
    "question_th": "ซีดีชุดใดที่ออกในปี 2552",
    "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_en": "What is the highest Division when the playoffs were the quarter finals, with a Regular Season of 5th?",
    "question_th": "ดิวิชั่นสูงสุดคือทีมใดเมื่อรอบตัดเชือกเป็นรอบก่อนรองชนะเลิศ โดยมีฤดูกาลปกติที่ 5",
    "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_en": "What is the year when they did not qualify for the playoff and the Regular Season shows as 10th?",
    "question_th": "ปีใดที่พวกเขาไม่ผ่านเข้ารอบตัดเชือกและฤดูกาลปกติแสดงเป็นอันดับที่ 10 คือปีใด",
    "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_en": "What shows for Playoffs when the Open Cup shows as did not qualify, and a Regular Season was 3rd, south atlantic?",
    "question_th": "อะไรจะแสดงให้เห็นในรอบตัดเชือกเมื่อ Open Cup แสดงว่าไม่ผ่านเข้ารอบ และฤดูกาลปกติคืออันดับที่ 3 ในมหาสมุทรแอตแลนติกตอนใต้",
    "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_en": "What is the highest points value for 1962, in the 125cc class, and with 0 wins?",
    "question_th": "คะแนนสูงสุดในปี 1962 ในคลาส 125cc คืออะไร และชนะ 0 ครั้งคือเท่าใด",
    "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_en": "What is the highest points value for the 500cc class in years after 1962 with 0 wins?",
    "question_th": "ค่าคะแนนสูงสุดสำหรับคลาส 500cc ในปีหลังปี 1962 โดยชนะ 0 ครั้งคือเท่าใด",
    "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_en": "For Team AJS, what is the total number of points for drivers with 0 wins?",
    "question_th": "สำหรับทีม AJS แล้วนักแข่งที่ชนะ 0 ได้คะแนนรวมเป็นเท่าใด",
    "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_en": "Which year had 0 points and an AGS JH23B chassis?",
    "question_th": "ปีไหนมี 0 คะแนนและมีแชสซี AGS JH23B",
    "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_en": "How many points does the year after 1986 with a AGS JH23B chassis have?",
    "question_th": "ปีหลังปี 1986 กับแชสซี AGS JH23B มีกี่คะแนน?",
    "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_en": "How many points did the Tyrrell Racing Organisation have?",
    "question_th": "Tyrrell Racing Organisation มีคะแนนเท่าไร?",
    "context": "CREATE TABLE table_name_27 (points VARCHAR, entrant VARCHAR)"
  },
  {
    "answer": "SELECT week FROM table_name_46 WHERE date = \"september 23, 1973\"",
    "question_en": "September 23, 1973 landed on which week of the season?",
    "question_th": "23 กันยายน พ.ศ. 2516 ลงจอดในสัปดาห์ใดของฤดูกาล?",
    "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_en": "What's the lowest Gold if the Rank is over 4 but the Total is less than 1?",
    "question_th": "ทองคำต่ำสุดคืออะไรหากอันดับมากกว่า 4 แต่ผลรวมน้อยกว่า 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_en": "What's the highest bronze with a less than 1 Rank?",
    "question_th": "เหรียญทองแดงสูงสุดที่มีอันดับต่ำกว่า 1 คืออะไร?",
    "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_en": "What's the average total if the Bronze is 5 and the Silver is less than 4?",
    "question_th": "ผลรวมโดยเฉลี่ยคือเท่าใดหากเหรียญทองแดงคือ 5 และเหรียญเงินน้อยกว่า 4?",
    "context": "CREATE TABLE table_name_25 (total INTEGER, bronze VARCHAR, silver VARCHAR)"
  },
  {
    "answer": "SELECT votes FROM table_name_81 WHERE residence = \"halifax\"",
    "question_en": "How many Votes, when the Residence is Halifax?",
    "question_th": "โหวตกี่เสียงเมื่อที่อยู่อาศัยคือแฮลิแฟกซ์?",
    "context": "CREATE TABLE table_name_81 (votes VARCHAR, residence VARCHAR)"
  },
  {
    "answer": "SELECT riding FROM table_name_47 WHERE rank = \"4th\"",
    "question_en": "What is the Riding, when the Rank is 4th?",
    "question_th": "อะไรคือ Riding เมื่ออันดับ 4?",
    "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_en": "Name the most cuts made with top-25 more than 4 and top 5 of 1 with wins more than 0",
    "question_th": "ตั้งชื่อการตัดมากที่สุดที่มี 25 อันดับแรกมากกว่า 4 และ 5 อันดับแรกของ 1 ที่ชนะมากกว่า 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_en": "Name the top-25 with wins less than 1 and events of 12",
    "question_th": "ตั้งชื่อ 25 อันดับแรกด้วยการชนะน้อยกว่า 1 และเหตุการณ์ 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_en": "Who was the away team when the attendance was 7,891?",
    "question_th": "ทีมเยือนคือทีมไหนมีผู้ชม 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_en": "What was the score of the game when the attendance was 1,644?",
    "question_th": "ในเกมนั้นมีผู้เข้าร่วม 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_en": "Who was the away team when the home team was Lincoln City?",
    "question_th": "ทีมเยือนคือใครเมื่อเจ้าบ้านเป็นลินคอล์นซิตี้?",
    "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_en": "What was the score of the game when the home team was Lincoln City?",
    "question_th": "เกมนี้เจ้าบ้านเป็นลินคอล์นซิตี้สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_74 (score VARCHAR, home_team VARCHAR)"
  },
  {
    "answer": "SELECT away_team FROM table_name_64 WHERE attendance = \"7,891\"",
    "question_en": "Who was the away team when the attendance was 7,891?",
    "question_th": "ทีมเยือนคือทีมไหนมีผู้ชม 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_en": "What is the most amount of points for a team before 1983?",
    "question_th": "จำนวนคะแนนสูงสุดสำหรับทีมก่อนปี 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_en": "What team has 4 points and a Chassis of march 82/83c?",
    "question_th": "ทีมใดมี 4 แต้มและมีแชสซีของเดือนมีนาคม 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_en": "What engine was used by Curb Motorsports after 1982 that had 11 points?",
    "question_th": "Curb Motorsports ใช้เครื่องยนต์อะไรหลังปี 1982 ซึ่งมี 11 คะแนน",
    "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_en": "What is the Engine used before 1983?",
    "question_th": "เครื่องยนต์อะไรที่ใช้ก่อนปี 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_en": "Name the total number of average for wickets less than 265, runs less than 4564 and matches less than 52",
    "question_th": "ตั้งชื่อจำนวนเฉลี่ยรวมสำหรับประตูที่น้อยกว่า 265 วิ่งน้อยกว่า 4564 และจับคู่น้อยกว่า 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_en": "Name the total number of average for wickets more than 537, career of 1899/00-1925/26 and matches less than 211",
    "question_th": "ระบุจำนวนเฉลี่ยรวมประตูมากกว่า 537 อาชีพ 1899/00-1925/26 และนัดน้อยกว่า 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_en": "Name the least average with wickets more than 265 and career of 1888/89-1913/14 and matches more than 51",
    "question_th": "ตั้งชื่อค่าเฉลี่ยน้อยที่สุดด้วยประตูมากกว่า 265 และอาชีพ 1888/89-1913/57 และจับคู่มากกว่า 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_en": "Name the total number of matches with wickets less than 537 and career of 1898/99-1919/20 with runs more than 4476",
    "question_th": "ระบุจำนวนแมตช์รวมที่มีประตูน้อยกว่า 537 และอาชีพ 1898/99-1919/20 โดยวิ่งมากกว่า 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_en": "Can you tell me the Opponent that has the Series of 4-2?",
    "question_th": "คุณช่วยบอกฉันหน่อยได้ไหมว่าฝ่ายตรงข้ามที่มีซีรีส์ 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_en": "What is the to par of the player with a t4 place and a score of 75-69-74-72=290?",
    "question_th": "แต้มพาร์ของผู้เล่นอันดับ 4 และคะแนน 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_en": "Which entrant scored less than 8 points and used a Maserati chassis?",
    "question_th": "ผู้เข้าแข่งขันรายใดที่ทำคะแนนได้น้อยกว่า 8 คะแนนและใช้แชสซีของ Maserati",
    "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_en": "Which entrant, with an Offenhauser L4 engine and a Kurtis Kraft KK500A chassis, scored 9 points before 1955?",
    "question_th": "ผู้เข้าแข่งขันรายใดที่ใช้เครื่องยนต์ Offenhauser L4 และแชสซีของ Kurtis Kraft KK500A ได้คะแนน 9 คะแนนก่อนปี 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_en": "What type of engine did the Fuel Injection entrant use?",
    "question_th": "ผู้เข้าแข่งขันระบบฉีดเชื้อเพลิงใช้เครื่องยนต์ประเภทใด",
    "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_en": "What is the average number of points for an Offenhauser L4 engine with a Trevis chassis?",
    "question_th": "จำนวนคะแนนเฉลี่ยสำหรับเครื่องยนต์ Offenhauser L4 ที่มีแชสซี Trevis คือเท่าใด",
    "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_en": "What poll had Steve Poizner at 37%?",
    "question_th": "โพลใดที่ Steve Poizner ทำได้ 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_en": "When did Meg Whitman get 60%?",
    "question_th": "Meg Whitman ได้รับ 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_en": "How many players were drafted from the Boston Cannons in the round?",
    "question_th": "มีผู้เล่นกี่คนที่ถูกเกณฑ์ทหารจาก Boston Cannons ในรอบนี้",
    "context": "CREATE TABLE table_name_74 (round INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT MAX(round) FROM table_name_26 WHERE team = \"long island lizards\"",
    "question_en": "Which round was a player from the Long Island Lizards drafted in first?",
    "question_th": "ผู้เล่นจาก Long Island Lizards ที่ถูกดราฟท์ในรอบใดเป็นคนแรก",
    "context": "CREATE TABLE table_name_26 (round INTEGER, team VARCHAR)"
  },
  {
    "answer": "SELECT nationality FROM table_name_56 WHERE player = \"dave curry\"",
    "question_en": "Dave Curry has what Nationality?",
    "question_th": "Dave Curry มีสัญชาติอะไร?",
    "context": "CREATE TABLE table_name_56 (nationality VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT manufacturer FROM table_name_43 WHERE grid = 11",
    "question_en": "Name the manufacturer with grid of 11",
    "question_th": "ตั้งชื่อผู้ผลิตด้วยตาราง 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_en": "Name the manufacturer for grid more than 18 and laps more than 1 with tired/retired of +1 lap",
    "question_th": "ตั้งชื่อผู้ผลิตสำหรับกริดมากกว่า 18 และรอบมากกว่า 1 โดยมีการเหนื่อย/ออก +1 รอบ",
    "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_en": "Name the laps for suzuki and time/retired of +1:02.804",
    "question_th": "ตั้งชื่อรอบสำหรับ suzuki และเวลา/เกษียณของ +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_en": "Name the sum of laps for 12 grids",
    "question_th": "ตั้งชื่อผลรวมของรอบสำหรับ 12 ตาราง",
    "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_en": "Name the most # of total votes with % of popular vote of 32.41% and # of seats won more than 95",
    "question_th": "ระบุชื่อ #คะแนนโหวตสูงสุด ด้วย % คะแนนโหวตยอดนิยม 32.41% และ #ที่นั่ง ได้มากกว่า 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_en": "What was Jack McGrath's finish number in 1954?",
    "question_th": "หมายเลขเข้าเส้นชัยของ Jack McGrath ในปี 1954 คืออะไร?",
    "context": "CREATE TABLE table_name_95 (finish VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT start FROM table_name_72 WHERE qual = \"141.033\"",
    "question_en": "What place did Jack McGrath start in when he received a qual score of 141.033?",
    "question_th": "Jack McGrath เริ่มต้นในตำแหน่งใดเมื่อเขาได้รับคะแนนคัดเลือก 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_en": "What was Jack McGrath's rank in 1955 when he started at 3 and finished at 26?",
    "question_th": "อันดับของ Jack McGrath ในปี 1955 เมื่อเขาเริ่มต้นที่ 3 และจบที่ 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_en": "Which pre-season has May 5 of 21?",
    "question_th": "พรีซีซั่นใดที่มีวันที่ 5 พฤษภาคมจาก 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_en": "Which March 3 has a Poll of baseball america (top 25)?",
    "question_th": "มีนาคมใดที่มีโพลเบสบอลอเมริกา (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_en": "Which pre-season has a Mar. 3 of nr, and a Poll of usa today/espn coaches' poll (top 25)?",
    "question_th": "พรีซีซั่นใดที่มีคะแนน 3 มีนาคม และผลสำรวจของสหรัฐอเมริกาในวันนี้/แบบสำรวจโค้ชของ ESPN (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_en": "Who is the opponent on September 9, 1979?",
    "question_th": "คู่ต่อสู้ในวันที่ 9 กันยายน 2522 คือใคร?",
    "context": "CREATE TABLE table_name_99 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT SUM(week) FROM table_name_60 WHERE opponent = \"denver broncos\"",
    "question_en": "What is the sum of the week for the Denver Broncos?",
    "question_th": "ผลรวมของสัปดาห์สำหรับ 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_en": "What is the attendance number for December 2, 1979?",
    "question_th": "ผู้ที่เข้าร่วมประชุมในวันที่ 2 ธันวาคม 2522 คืออะไร?",
    "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_en": "Name the term in office for liberal and state of sa for ian mclachlan",
    "question_th": "ตั้งชื่อคำศัพท์ในตำแหน่งสำหรับเสรีนิยมและสถานะของ sa สำหรับเอียน 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_en": "What was the record for July 26?",
    "question_th": "บันทึกของวันที่ 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_en": "Played that has a Points of 38, and a B.P. larger than 5 has what sum?",
    "question_th": "เล่นโดยมีแต้ม 38 และ BP มากกว่า 5 จะมีผลรวมเท่าใด",
    "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_en": "B.P. of 0, and a Pts Agst smaller than 247 has how many total number of played?",
    "question_th": "BP 0 และ Pts Agst น้อยกว่า 247 มีจำนวนการเล่นทั้งหมดเท่าใด",
    "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_en": "Pts Agst of 572, and a Pts For larger than 346 has what total number of position?",
    "question_th": "Pts Agst ของ 572 และ Pts สำหรับมากกว่า 346 มีจำนวนตำแหน่งทั้งหมดเท่าใด",
    "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_en": "What is the most number of rounds that the Team from RBR Enterprises and having a Chevrolet Silverado ran?",
    "question_th": "ทีมจาก RBR Enterprises และรถ Chevrolet Silverado วิ่งได้มากที่สุดคือจำนวนรอบใด",
    "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_en": "Who was the crew chief for the team from Make Motorsports?",
    "question_th": "ใครคือหัวหน้าลูกเรือของทีม 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_en": "Who was the driver for crew chief Nick Carlson?",
    "question_th": "ใครคือคนขับรถของหัวหน้าลูกเรือ 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_en": "What is the truck used by Brett Moffitt, from Hattori Racing Enterprises?",
    "question_th": "Brett Moffitt จาก 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_en": "What was the losing bonus that had 1 draw and a 10 try bonus?",
    "question_th": "โบนัสที่เสียไปซึ่งมีการเสมอ 1 ครั้งและโบนัสการลอง 10 ครั้งคืออะไร?",
    "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_en": "How many resulted in draws with 34 tries for?",
    "question_th": "เสมอกันกี่ครั้งโดยพยายาม 34 ครั้ง?",
    "context": "CREATE TABLE table_name_99 (drawn VARCHAR, tries_for VARCHAR)"
  },
  {
    "answer": "SELECT tries_against FROM table_name_69 WHERE points_against = \"520\"",
    "question_en": "How many tries against were there with 520 points against?",
    "question_th": "มีความพยายามกี่ครั้งที่มี 520 แต้มต่อ?",
    "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_en": "How many tries for were there while having 479 points against?",
    "question_th": "มีความพยายามกี่ครั้งในขณะที่มี 479 แต้มต่อ?",
    "context": "CREATE TABLE table_name_38 (tries_for VARCHAR, points_against VARCHAR)"
  },
  {
    "answer": "SELECT lost FROM table_name_52 WHERE points_against = \"479\"",
    "question_en": "How many resulted in a loss with 479 points against?",
    "question_th": "แพ้ไปกี่แต้มกับ 479 แต้ม?",
    "context": "CREATE TABLE table_name_52 (lost VARCHAR, points_against VARCHAR)"
  },
  {
    "answer": "SELECT try_bonus FROM table_name_67 WHERE points = \"58\"",
    "question_en": "What is the try bonus when there were 58 points?",
    "question_th": "โบนัสลองเมื่อมี 58 คะแนนคืออะไร?",
    "context": "CREATE TABLE table_name_67 (try_bonus VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_2 WHERE record = \"44-28\"",
    "question_en": "Which opponent has a record of 44-28?",
    "question_th": "คู่ต่อสู้คนไหนมีสถิติ 44-28?",
    "context": "CREATE TABLE table_name_2 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_32 WHERE attendance = \"40,560\"",
    "question_en": "Which opponent has an attendance of 40,560?",
    "question_th": "คู่ต่อสู้คนไหนมีผู้ชม 40,560 คน?",
    "context": "CREATE TABLE table_name_32 (opponent VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_23 WHERE date = \"june 13\"",
    "question_en": "Which loss was on June 13?",
    "question_th": "การสูญเสียครั้งใดในวันที่ 13 มิถุนายน?",
    "context": "CREATE TABLE table_name_23 (loss VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_86 WHERE record = \"43-28\"",
    "question_en": "What is the attendance that has a record of 43-28?",
    "question_th": "ผู้เข้าร่วมที่มีสถิติ 43-28 คืออะไร?",
    "context": "CREATE TABLE table_name_86 (attendance VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_69 WHERE record = \"43-28\"",
    "question_en": "What was the date of the record of 43-28?",
    "question_th": "บันทึกวันที่ 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_en": "Goalsagainst that has a Points of 108, and a Lost smaller than 14 has what average?",
    "question_th": "เป้าหมายที่มีคะแนน 108 และแพ้น้อยกว่า 14 มีค่าเฉลี่ยเท่าใด",
    "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_en": "Lost of 42, and a Goalsfor larger than 195 contains how many number of games?",
    "question_th": "แพ้ 42 และประตูที่มากกว่า 195 มีกี่เกม",
    "context": "CREATE TABLE table_name_43 (games VARCHAR, lost VARCHAR, goalsfor VARCHAR)"
  },
  {
    "answer": "SELECT MIN(goalsfor) FROM table_name_38 WHERE season = \"2002–03\" AND lost > 14",
    "question_en": "Season of 2002–03, and a Lost larger than 14, what is the lowest goals?",
    "question_th": "ฤดูกาล 2545–03 และแพ้มากกว่า 14 ประตู อะไรคือประตูที่ต่ำที่สุด?",
    "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–07\" AND games < 70",
    "question_en": "Goalsagainst of 285, and a Season of 2006–07, and a Games smaller than 70 has what average points?",
    "question_th": "ประตูต่อ 285 ประตูและฤดูกาล 2549–07 และเกมที่น้อยกว่า 70 มีคะแนนเฉลี่ยเท่าใด",
    "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_en": "Goals for of 288, and Points smaller than 85 what is the highest goals against?",
    "question_th": "ประตูที่ทำได้ 288 ประตูและคะแนนน้อยกว่า 85 ประตูสูงสุดเทียบกับอะไร?",
    "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_en": "What player originally played for the Los Angeles Kings?",
    "question_th": "ผู้เล่นคนใดที่เคยเล่นให้กับ 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_en": "What Offer Team has a date of July 29, 1994?",
    "question_th": "ทีมข้อเสนออะไรมีวันที่ 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_en": "What is the Result that has the New York Rangers as the Offer Team and Adam Graves as the Player?",
    "question_th": "ผลลัพธ์ที่มี New York Rangers เป็นทีมข้อเสนอและ Adam Graves เป็นผู้เล่นคืออะไร?",
    "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_en": "What date has Vancouver Canucks as the original team, Ryan Kesler as the player, and matched as the Result?",
    "question_th": "วันที่เท่าไหร่ที่ Vancouver Canucks เป็นทีมดั้งเดิม Ryan Kesler เป็นผู้เล่น และตรงกับผลลัพธ์เมื่อใด",
    "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_en": "What was David Backes' Offer Team?",
    "question_th": "ทีมข้อเสนอของ David Backes คืออะไร",
    "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_en": "What is the result of Chris Gratton and Philadelphia Flyers as the Offer Team?",
    "question_th": "อะไรคือผลลัพธ์ของการที่ Chris Gratton และ Philadelphia Flyers ในฐานะทีมข้อเสนอ?",
    "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_en": "Which game had an attendance of 5,000 and was away?",
    "question_th": "เกมไหนมีผู้ชม 5,000 คนแล้วไม่อยู่?",
    "context": "CREATE TABLE table_name_23 (game INTEGER, venue VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_82 WHERE year = 1786",
    "question_en": "When was the date in 1786?",
    "question_th": "เมื่อเป็นวันที่ในปี 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_en": "How low is the Attendance that has an Opponent of devil rays and a Date of may 13?",
    "question_th": "ผู้เข้าร่วมที่มีฝ่ายตรงข้ามของรังสีมารและวันที่ 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_en": "How high is the Attendance with a Record of 29-25?",
    "question_th": "ผู้เข้าร่วมด้วยสถิติ 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_en": "Which Opponent has a lost of wells (6-2)?",
    "question_th": "ฝ่ายตรงข้ามคนไหนเสียหลุม (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_en": "What is the team 1 with a (g14)morolo team 2?",
    "question_th": "ทีม 1 กับทีม (g14)morolo 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_en": "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?",
    "question_th": "ผลรวมโดยเฉลี่ยคือเท่าใด เมื่อค่าของ Silver น้อยกว่า 1 เมื่อค่าของ Gold เป็น 0 เมื่อ Nation คือสวิตเซอร์แลนด์ และเมื่อค่าของ Bronze คือ 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_en": "What is the average Total, when the Nation is Sweden, and when the value for Bronze is less than 3?",
    "question_th": "ผลรวมโดยเฉลี่ยคือเท่าไร เมื่อประเทศคือสวีเดน และเมื่อค่าของ Bronze น้อยกว่า 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_en": "What is the average value for Gold, when the value for Silver is greater than 2, and when the Nation is West Germany?",
    "question_th": "มูลค่าเฉลี่ยของทองคำคือเท่าใด เมื่อมูลค่าของเงินมากกว่า 2 และเมื่อประเทศคือเยอรมนีตะวันตก",
    "context": "CREATE TABLE table_name_98 (gold INTEGER, silver VARCHAR, nation VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(gold) FROM table_name_31 WHERE bronze < 0",
    "question_en": "What is the value for Gold, when the value for Bronze is less than 0?",
    "question_th": "มูลค่าของทองคำจะเป็นเท่าใด เมื่อมูลค่าของทองแดงน้อยกว่า 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_en": "Where is the coed school with state authority, a Decile larger than 6 and 26 enrolled?",
    "question_th": "โรงเรียนสหศึกษาที่มีอำนาจของรัฐ ลงทะเบียน Decile มากกว่า 6 และ 26 อยู่ที่ไหน",
    "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_en": "What is the average roll for Fairfield school?",
    "question_th": "ค่าเฉลี่ยของโรงเรียน Fairfield คือเท่าไร?",
    "context": "CREATE TABLE table_name_18 (roll INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_5 WHERE roll > 26 AND area = \"fairfield\"",
    "question_en": "Which school has a roll larger than 26 and is located in Fairfield?",
    "question_th": "โรงเรียนใดมีม้วนใหญ่กว่า 26 และตั้งอยู่ในแฟร์ฟิลด์",
    "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_en": "how many points are there for a Chassis of porsche 718, and a Year smaller than 1964?",
    "question_th": "มีกี่คะแนนสำหรับแชสซีของปอร์เช่ 718 และปีที่เล็กกว่าปี 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_en": "what is the engine that saw 0 points, and a Chassis of porsche 718, in 1961?",
    "question_th": "เครื่องยนต์ที่เห็น 0 คะแนน และแชสซีของปอร์เช่ 718 ปี 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_en": "what is the engine that saw a Chassis of porsche 718, and 0 points, prior to 1964?",
    "question_th": "เครื่องยนต์ที่เห็นแชสซีของปอร์เช่ 718 และ 0 คะแนน ก่อนปี 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_en": "Which bronze has a Nation of poland?",
    "question_th": "บรอนซ์ใดมีชาติโปแลนด์?",
    "context": "CREATE TABLE table_name_85 (bronze VARCHAR, nation VARCHAR)"
  },
  {
    "answer": "SELECT gold FROM table_name_15 WHERE silver = \"3\" AND total = \"5\"",
    "question_en": "Which gold has 3 silver and a Total of 5?",
    "question_th": "ทองคำใดมี 3 เงินและรวม 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_en": "Which gold has a Bronze of 1, a Rank of 47, and a Nation of spain?",
    "question_th": "ทองคำใดมีเหรียญทองแดงอยู่ที่ 1 อันดับ 47 และมีสัญชาติสเปน",
    "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_en": "Which nation has a Silver of 1, a Gold of 0, and a Total of 1?",
    "question_th": "ชาติใดมีเหรียญเงิน 1 เหรียญทอง 0 และคะแนนรวม 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_en": "Which bronze has a Rank of 37?",
    "question_th": "บรอนซ์ใดมีอันดับ 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_en": "Which silver has a Bronze of 1, a Total of 4, and a Nation of slovakia?",
    "question_th": "เหรียญเงินใดมี 1 เหรียญทองแดง รวม 4 เหรียญ และมีชาติสโลวาเกีย",
    "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_en": "What car had the fewest laps with a qual of 138.750?",
    "question_th": "รถคันใดมีรอบน้อยที่สุดด้วยคะแนน 138.750?",
    "context": "CREATE TABLE table_name_16 (laps INTEGER, qual VARCHAR)"
  },
  {
    "answer": "SELECT laps FROM table_name_3 WHERE qual = \"138.750\"",
    "question_en": "How many laps were there for the car with a qual of 138.750?",
    "question_th": "รถมีรอบคัดเลือก 138.750 กี่รอบ?",
    "context": "CREATE TABLE table_name_3 (laps VARCHAR, qual VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_72 WHERE qual = \"134.288\"",
    "question_en": "For the car with a qual of 134.288, what was the rank?",
    "question_th": "รถที่ได้คะแนน 134.288 ได้อันดับที่เท่าไร?",
    "context": "CREATE TABLE table_name_72 (rank VARCHAR, qual VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_95 WHERE year = \"1953\"",
    "question_en": "What was the finishing place for 1953?",
    "question_th": "สถานที่สุดท้ายของปี 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_en": "Tell me the name for commissioned of 30 august 1941 and laid down of 22 september 1939",
    "question_th": "บอกชื่อที่รับหน้าที่เมื่อ 30 สิงหาคม 1941 และวางลงวันที่ 22 กันยายน 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–3)\"",
    "question_en": "What is the score when there was a Loss of birkbeck (0–3)?",
    "question_th": "คะแนนเมื่อมีการแพ้เบิร์คเบ็ค (0–3) คืออะไร?",
    "context": "CREATE TABLE table_name_70 (score VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT gpu‡ FROM table_name_31 WHERE application = \"cushaw\"",
    "question_en": "Which GPU has the cushaw application?",
    "question_th": "GPU ตัวใดมีแอพพลิเคชั่น Cushaw?",
    "context": "CREATE TABLE table_name_31 (gpu‡ VARCHAR, application VARCHAR)"
  },
  {
    "answer": "SELECT expected_speed_up† FROM table_name_47 WHERE application = \"gpu-hmmer\"",
    "question_en": "What is the expected speed up of the gpu-hmmer application?",
    "question_th": "ความเร็วที่คาดหวังของแอปพลิเคชัน gpu-hmmer คือเท่าใด",
    "context": "CREATE TABLE table_name_47 (expected_speed_up† VARCHAR, application VARCHAR)"
  },
  {
    "answer": "SELECT host_team FROM table_name_32 WHERE stadium = \"cleveland browns stadium\"",
    "question_en": "Who was the host team at the game at the Cleveland Browns Stadium?",
    "question_th": "ใครคือทีมเจ้าบ้านในเกมที่สนามกีฬาคลีฟแลนด์ บราวน์ส?",
    "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_en": "What was the final score when the Buffalo Bills were the visiting team?",
    "question_th": "สกอร์สุดท้ายเมื่อบัฟฟาโล่ บิลล์สเป็นทีมเยือนคือเท่าไหร่?",
    "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_en": "What was the final score when the Denver Broncos were the visiting team?",
    "question_th": "สกอร์สุดท้ายเมื่อเดนเวอร์ บรองโกส์เป็นทีมเยือนคือเท่าไหร่?",
    "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_en": "What is the date that a game at the Alltel Stadium had a final score of 6-20?",
    "question_th": "เกมที่ Alltel Stadium มีสกอร์สุดท้าย 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_en": "How many times was the motorcycle ducati 916 2nd place when wins is less than 7?",
    "question_th": "มอไซค์ ducati 916 ขึ้นอันดับ 2 กี่ครั้งแล้วที่ชนะน้อยกว่า 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_en": "What Catalog has a label of Alfa records and a date of November 21, 1980?",
    "question_th": "แคตตาล็อกใดมีป้ายกำกับบันทึกของ Alfa และวันที่ 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_en": "What catalog has a format of ED remaster CD  and a date of December 19, 2001?",
    "question_th": "แค็ตตาล็อกใดมีรูปแบบของ ED remaster CD และวันที่ 19 ธันวาคม 2544",
    "context": "CREATE TABLE table_name_68 (catalog VARCHAR, format VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_35 WHERE label = \"alfa records\"",
    "question_en": "What Date has a label of alfa records?",
    "question_th": "What Date มีป้ายกำกับของ 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_en": "What region has the label of alfa records and the date of January 23, 1987?",
    "question_th": "ภูมิภาคใดมีฉลากบันทึกอัลฟ่าและวันที่ 23 มกราคม พ.ศ. 2530",
    "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_en": "What date has the format of CD and catalog of alca-274?",
    "question_th": "ซีดีและแค็ตตาล็อกของ 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_en": "What date has the format of cd?",
    "question_th": "ซีดีมีรูปแบบวันที่เท่าไหร่?",
    "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_en": "What is the Decile number for St Mary's Catholic School?",
    "question_th": "หมายเลข Decile ของโรงเรียนคาทอลิก St Mary's คืออะไร?",
    "context": "CREATE TABLE table_name_33 (decile VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT authority FROM table_name_23 WHERE name = \"hauturu school\"",
    "question_en": "Which Authority is set for Hauturu School?",
    "question_th": "หน่วยงานใดที่กำหนดไว้สำหรับโรงเรียน Hauturu?",
    "context": "CREATE TABLE table_name_23 (authority VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_60 WHERE area = \"kio kio\"",
    "question_en": "What School is in the kio kio area?",
    "question_th": "โรงเรียนไหนในย่านคิโอคิโอ?",
    "context": "CREATE TABLE table_name_60 (name VARCHAR, area VARCHAR)"
  },
  {
    "answer": "SELECT race FROM table_name_61 WHERE position = \"5th\"",
    "question_en": "What race is in the 5th position?",
    "question_th": "แข่งอะไรอยู่อันดับที่ 5?",
    "context": "CREATE TABLE table_name_61 (race VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT replica FROM table_name_46 WHERE race = \"supersport race 1\"",
    "question_en": "What Replica has a race of supersport race 1?",
    "question_th": "Replica ใดที่มีการแข่งขัน supersport race 1?",
    "context": "CREATE TABLE table_name_46 (replica VARCHAR, race VARCHAR)"
  },
  {
    "answer": "SELECT replica FROM table_name_82 WHERE position = \"5th\"",
    "question_en": "What replica has the 5th position?",
    "question_th": "แบบจำลองใดมีตำแหน่งที่ 5?",
    "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_en": "When a Sigma 7 has a standard byte string, what is the value for the decimal?",
    "question_th": "เมื่อ Sigma 7 มีสตริงไบต์มาตรฐาน ค่าของทศนิยมจะเป็นเท่าใด",
    "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_en": "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?",
    "question_th": "ค่าสำหรับสตริงไบต์คืออะไรเมื่อการแมปหน่วยความจำ ทศนิยม และจุดลอยตัวเป็นมาตรฐานทั้งหมด และหน่วยความจำสูงสุดมีขนาดเล็กกว่า 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_en": "What model has both a standard byte string and floating-point?",
    "question_th": "รุ่นใดที่มีทั้งสตริงไบต์มาตรฐานและจุดลอยตัว",
    "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_en": "On a Sigma 9 with a standard byte string and more than 128 max memory, what is the value of the memory map?",
    "question_th": "บน Sigma 9 ที่มีสตริงไบต์มาตรฐานและหน่วยความจำสูงสุดมากกว่า 128 หน่วยความจำ ค่าของแผนผังหน่วยความจำคือเท่าใด",
    "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_en": "What is the decimal value when the memory map and byte string are standard, and the max memory is 512?",
    "question_th": "ค่าทศนิยมคืออะไรเมื่อการแมปหน่วยความจำและสตริงไบต์เป็นค่ามาตรฐาน และหน่วยความจำสูงสุดคือ 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_en": "Who was the co-driver in the DNF position in the GT1 class?",
    "question_th": "ใครคือผู้ร่วมขับในตำแหน่ง DNF ในคลาส GT1",
    "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_en": "Which co-driver was part of team Martini Lancia earlier than 1986?",
    "question_th": "นักขับร่วมคนใดที่เคยเป็นส่วนหนึ่งของทีม Martini Lancia ก่อนปี 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_en": "The Le Mans Porsche team Joest Racing is in which class?",
    "question_th": "ทีม Le Mans Porsche Joest Racing อยู่ในประเภทใด?",
    "context": "CREATE TABLE table_name_53 (class VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT build_date FROM table_name_65 WHERE total_produced = 146",
    "question_en": "Name the build date for total produced of 146",
    "question_th": "ตั้งชื่อวันที่สร้างสำหรับการผลิตทั้งหมด 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_en": "Name the model for specification of dl-066",
    "question_th": "ตั้งชื่อโมเดลสำหรับข้อกำหนดของ 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_en": "Name the power output for model of s-13",
    "question_th": "ตั้งชื่อกำลังไฟฟ้าเอาท์พุตสำหรับรุ่น 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_en": "What's the worst score for the worst dancer(s) john barnes, with a best score of 36?",
    "question_th": "คะแนนที่แย่ที่สุดสำหรับนักเต้นที่แย่ที่สุดอย่าง John Barnes โดยได้คะแนนสูงสุดคือ 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_en": "What's the worst dance of jive dancer(s)?",
    "question_th": "การเต้นรำที่แย่ที่สุดของนักเต้นหลอกคืออะไร?",
    "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_en": "What's the best score, with the worst dancer(s) gethin jones/kenny logan?",
    "question_th": "คะแนนที่ดีที่สุดกับนักเต้นที่แย่ที่สุดคือ 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_en": "What's the best average score with a bad score of 15?",
    "question_th": "คะแนนเฉลี่ยที่ดีที่สุดแต่คะแนนไม่ดีเท่ากับ 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_en": "What is the name of the opponent that has a record of 66-69?",
    "question_th": "คู่ต่อสู้ที่มีสถิติ 66-69 ชื่ออะไร?",
    "context": "CREATE TABLE table_name_46 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_88 WHERE player = \"olin dutra\"",
    "question_en": "What was Olin Dutra's score?",
    "question_th": "คะแนนของ Olin Dutra คืออะไร?",
    "context": "CREATE TABLE table_name_88 (score VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_22 WHERE player = \"craig wood\"",
    "question_en": "What was Craig Wood's score?",
    "question_th": "คะแนนของ Craig Wood คืออะไร?",
    "context": "CREATE TABLE table_name_22 (score VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_22 WHERE player = \"paul runyan\"",
    "question_en": "What was Paul Runyan's score?",
    "question_th": "คะแนนของ Paul Runyan คืออะไร?",
    "context": "CREATE TABLE table_name_22 (score VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_84 WHERE to_par = \"e\"",
    "question_en": "What country has a To par of e?",
    "question_th": "ประเทศใดมี To par ของ 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_en": "What position for the player from villa park high school?",
    "question_th": "ตำแหน่งใดของนักเตะจากโรงเรียนมัธยมวิลล่า พาร์ค?",
    "context": "CREATE TABLE table_name_5 (position VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT total FROM table_name_70 WHERE nation = \"czech republic\"",
    "question_en": "What is the total number of medals by the Czech republic?",
    "question_th": "สาธารณรัฐเช็กได้เหรียญทั้งหมดเท่าไร?",
    "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_en": "How many gold medals does the country ranked higher than 2 with more than 8 bronze have?",
    "question_th": "ประเทศอันดับสูงกว่า 2 และมากกว่า 8 เหรียญทองแดงมีกี่เหรียญทอง?",
    "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_en": "What is the highest rank a country with less than 3 gold, more than 2 silver, and less than 5 total medals has?",
    "question_th": "อันดับสูงสุดของประเทศที่มีน้อยกว่า 3 เหรียญทอง มากกว่า 2 เหรียญเงิน และมีเหรียญรางวัลทั้งหมดน้อยกว่า 5 เหรียญคืออะไร?",
    "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_en": "When is the record 5-4?",
    "question_th": "สถิติ 5-4 คือเมื่อไหร่?",
    "context": "CREATE TABLE table_name_51 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT genre FROM table_name_7 WHERE artist = \"prince\"",
    "question_en": "What is the Genre when the Artist is Prince?",
    "question_th": "เมื่อศิลปินเป็นเจ้าชายจะเป็นประเภทไหน?",
    "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_en": "What is the Genre, when the Release-year of first charted record is 1968, and when the Country of origin is United States?",
    "question_th": "ประเภทคืออะไร เมื่อปีที่วางจำหน่ายของสถิติชาร์ตแรกคือปี 1968 และเมื่อใดที่ประเทศต้นทางคือสหรัฐอเมริกา",
    "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_en": "Name the RR numbers of hudswell clarke and years before 1914",
    "question_th": "ตั้งชื่อหมายเลข RR ของฮัดสเวลล์ คลาร์ก และปีก่อนปี 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_en": "What is the To par has the presence of Vijay Singh?",
    "question_th": "To par คืออะไรเมื่อมี Vijay Singh อยู่?",
    "context": "CREATE TABLE table_name_67 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT laps FROM table_name_51 WHERE rank = \"14\"",
    "question_en": "How many laps did Dick Rathmann complete when he ranked 14?",
    "question_th": "Dick Rathmann จบไปกี่รอบเมื่อเขาอยู่ในอันดับที่ 14",
    "context": "CREATE TABLE table_name_51 (laps VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_35 WHERE qual = \"130.928\"",
    "question_en": "What was Dick Rathmann's Finish the year he Qualed at 130.928?",
    "question_th": "การจบสกอร์ของ Dick Rathmann ในปีที่เขาผ่านเข้ารอบที่ 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_en": "What is the average total produced when the prime mover is 12-251c?",
    "question_th": "ผลรวมเฉลี่ยที่ผลิตได้เมื่อตัวเสนอญัตติหลักคือ 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_en": "What is the build date when total produced is 2?",
    "question_th": "วันที่สร้างคือเมื่อใดเมื่อยอดผลิตทั้งหมดเป็น 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_en": "What is the smallest total produced with a model of M-420?",
    "question_th": "จำนวนรวมที่น้อยที่สุดที่ผลิตด้วยรุ่น 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_en": "What is the prime mover for a build date in 1975?",
    "question_th": "อะไรคือปัจจัยสำคัญสำหรับวันที่สร้างในปี 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_en": "What model has a total produced more than 5 and a prime move of 12-251c?",
    "question_th": "รุ่นใดมียอดผลิตมากกว่า 5 คัน และระยะไพรม์ 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–13–5–2\"",
    "question_en": "What was the date of the home Detroit game with a decision of Joseph and a record of 27–13–5–2?",
    "question_th": "วันที่เกมเหย้าดีทรอยต์ด้วยการตัดสินของโจเซฟและสถิติ 27–13–5–2 คือวันที่ใด",
    "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_en": "What was the score of the home Dallas game that had a decision of Legace?",
    "question_th": "เกมเหย้าดัลลัสที่ได้คะแนนจากเลกาซเป็นเท่าไหร่?",
    "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–13–4–2\"",
    "question_en": "What was the score of the game that had a record of 26–13–4–2 and a decision of Joseph?",
    "question_th": "อะไรคือคะแนนของเกมที่มีสถิติ 26–13–4–2 และการตัดสินของโจเซฟ?",
    "context": "CREATE TABLE table_name_24 (score VARCHAR, decision VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT visitor FROM table_name_86 WHERE record = \"28–14–6–2\"",
    "question_en": "Who was the visiting team when the record was 28–14–6–2?",
    "question_th": "ทีมเยือนคือใครเมื่อทำสถิติ 28–14–6–2?",
    "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_en": "What are the lowest points that have a Mugen V8 engine and a Reynard 91D chassis?",
    "question_th": "จุดต่ำสุดที่มีเครื่องยนต์ Mugen V8 และแชสซี Reynard 91D คืออะไร?",
    "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_en": "What are the highest points that have a Mugen V8 engine and happened in 1991?",
    "question_th": "จุดสูงสุดที่มีเครื่องยนต์ Mugen V8 และเกิดขึ้นในปี 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_en": "How many years did John Player Lotus used Cosworth v8?",
    "question_th": "John Player Lotus ใช้ 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_en": "Who used Eurobrun er189b after 1989?",
    "question_th": "ใครใช้ Eurobrun er189b หลังปี 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_en": "Who used Ford v8 and Jordan 191 after 1990 and got 8 points?",
    "question_th": "ใครใช้ Ford v8 และ Jordan 191 หลังปี 1990 และได้ 8 คะแนน?",
    "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_en": "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?",
    "question_th": "Leftfielder ชื่ออะไรเมื่อ Davey Lopes เป็นเบสที่สองและเบสคนแรกคือ steve garvey ซึ่งเป็นชอร์ตสต็อปของ Bill russell ก่อนหน้าปี 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_en": "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?",
    "question_th": "ชอร์ตสต็อปชื่ออะไรเมื่อ Catcher คือ johnny roseboro และเบสคนที่สามของ jim lefebvre และเบสคนที่สองของ 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_en": "Who was the First Baseman when the Shortstop was zoilo versalles?",
    "question_th": "ใครคือเบสคนแรกเมื่อชอร์ตสต็อปเป็น 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_en": "What is the name of the Leftfielder when the Shortstop was bill russell, and the Second Baseman was steve sax in 1983?",
    "question_th": "นักเตะฝ่ายซ้ายชื่ออะไรเมื่อชอร์ตสต็อปคือบิล รัสเซลล์ และเบสคนที่สองคือสตีฟ แซ็กโซโฟนในปี 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_en": "What is the earliest year with less than 3 points and Parmalat Forti Ford was the entrant?",
    "question_th": "ปีแรกสุดที่มีคะแนนน้อยกว่า 3 แต้มคือปีใด และมีพาร์มาลัต ฟอร์ติ ฟอร์ดเป็นผู้เข้าแข่งขัน?",
    "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_en": "What is the average Points when equipe ligier gauloises blondes is the entrant?",
    "question_th": "คะแนนเฉลี่ยคืออะไรเมื่อผู้เข้าประกวดมีผมบลอนด์ ligier gauloises?",
    "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_en": "What is the smallest amount of points for parmalat forti ford entrant later than 1995?",
    "question_th": "จำนวนคะแนนที่น้อยที่สุดสำหรับผู้เข้าประกวด Ford Parmalat Forti ภายหลังปี 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_en": "What is the company that made the chassis for the entrant danka arrows yamaha?",
    "question_th": "บริษัท ใดที่ผลิตแชสซีสำหรับผู้เข้าแข่งขัน 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_en": "What college did Ray Graves attend?",
    "question_th": "Ray Graves เข้าเรียนที่วิทยาลัยใด",
    "context": "CREATE TABLE table_name_2 (college VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT pick__number FROM table_name_70 WHERE name = \"bill athey\"",
    "question_en": "What number pick was Bill Athey?",
    "question_th": "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_en": "What is John Cole's overall pick number?",
    "question_th": "หมายเลขเลือกโดยรวมของ John Cole คืออะไร?",
    "context": "CREATE TABLE table_name_47 (overall VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT date_made FROM table_name_50 WHERE class = \"waterford\"",
    "question_en": "What is the date of the locomotive with a Waterford class?",
    "question_th": "รถจักรกับคลาส Waterford คือวันไหนครับ?",
    "context": "CREATE TABLE table_name_50 (date_made VARCHAR, class VARCHAR)"
  },
  {
    "answer": "SELECT date_made FROM table_name_69 WHERE names = \"blacklion glencar\"",
    "question_en": "What is the date of the locomotive named Blacklion Glencar?",
    "question_th": "หัวรถจักรชื่อ 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_en": "What is the quantity made of the locomotive with a Waterford class?",
    "question_th": "หัวรถจักรคลาสวอเตอร์ฟอร์ดทำปริมาณเท่าไหร่?",
    "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_en": "What is the class of the locomotive with a quantity made of 1 and a 0-6-0t type?",
    "question_th": "หัวรถจักรที่มีปริมาณเป็นประเภท 1 และ 0-6-0t เป็นรถประเภทใด",
    "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_en": "What is the class of the locomotive with a 0-4-0st type?",
    "question_th": "หัวรถจักรประเภท 0-4-0 มีคลาสอะไรบ้าง?",
    "context": "CREATE TABLE table_name_23 (class VARCHAR, type VARCHAR)"
  },
  {
    "answer": "SELECT names FROM table_name_98 WHERE class = \"glencar\"",
    "question_en": "What is the name of the locomotive with a Glencar class?",
    "question_th": "หัวรถจักรที่มีคลาส Glencar ชื่ออะไร?",
    "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_en": "What country has signed type moving from porto?",
    "question_th": "ประเทศไหนลงนามแบบย้ายจากปอร์โต?",
    "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_en": "Which transfer window was moving from borussia dortmund?",
    "question_th": "ตลาดซื้อขายนักเตะใดที่ย้ายมาจากโบรุสเซีย ดอร์ทมุนด์?",
    "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_en": "What is moving from esp with transfer fee of youth system?",
    "question_th": "อะไรจะย้ายจาก ESP กับค่าธรรมเนียมการโอนของระบบเยาวชน?",
    "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_en": "What is the transfer window in esp with promoted type and more than 2010 ends?",
    "question_th": "หน้าต่างการถ่ายโอนใน esp พร้อมประเภทที่ได้รับการเลื่อนระดับและมากกว่าปี 2010 สิ้นสุดลงคืออะไร",
    "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_en": "Who is the week 12 for the week 2 with Magda Tomek?",
    "question_th": "สัปดาห์ที่ 12 สำหรับสัปดาห์ที่ 2 กับ 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_en": "Who is the week 12 for the week 4 of Gerard Ewelina?",
    "question_th": "สัปดาห์ที่ 12 สำหรับสัปดาห์ที่ 4 ของเจอราร์ด เอเวลินาคือใคร",
    "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_en": "Who was the leader in Points when Al Jefferson (7) was the leader in Rebounds?",
    "question_th": "ใครเป็นผู้นำใน Points เมื่อ Al Jefferson (7) เป็นผู้นำใน Rebounds?",
    "context": "CREATE TABLE table_name_12 (points VARCHAR, rebounds VARCHAR)"
  },
  {
    "answer": "SELECT steals FROM table_name_87 WHERE rebounds = \"travis watson (9)\"",
    "question_en": "Who was the leader in Steals when Travis Watson (9) was the leader in Rebounds?",
    "question_th": "ใครเป็นผู้นำในเรื่อง Steals เมื่อ Travis Watson (9) เป็นผู้นำในเรื่อง 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_en": "What was the 1st Year Al Harrington (9) the leader in Rebounds?",
    "question_th": "Al Harrington (9) ปีที่ 1 เป็นผู้นำในการ 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_en": "Who was the leader in Points with Assists of 2 tied (5) and Steals of 3 tied (2)?",
    "question_th": "ใครคือผู้นำในแต้มที่มีแอสซิสต์ 2 เสมอ (5) และขโมย 3 แต้มเสมอ (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_en": "Name the average with tally of 0-29 and total more than 29",
    "question_th": "ตั้งชื่อค่าเฉลี่ยด้วยคะแนน 0-29 และคะแนนรวมมากกว่า 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_en": "Name the tally with total less than 27 and average more than 3.41",
    "question_th": "ตั้งชื่อผลรวมน้อยกว่า 27 และเฉลี่ยมากกว่า 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_en": "For engines of Maserati Straight-6 and entrants of H H Gould, what is the latest year?",
    "question_th": "สำหรับเครื่องยนต์ Maserati Straight-6 และผู้เข้าร่วม HH Gould ล่าสุดคือปีไหน?",
    "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_en": "What is the fewest number of points scored by Goulds' Garage (Bristol), engines of Maserati Straight-6, in years before 1956?",
    "question_th": "Goulds' Garage (Bristol) ซึ่งเป็นเครื่องยนต์ของ Maserati Straight-6 ได้คะแนนน้อยที่สุดในช่วงหลายปีก่อนปี 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_en": "Which chassis has fewer than 2 points, entrants of Goulds' Garage (Bristol), in 1954?",
    "question_th": "แชสซีใดที่มีคะแนนน้อยกว่า 2 คะแนน โดยผู้เข้าร่วม Goulds' Garage (Bristol) ในปี 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_en": "What is the most points that the Maserati 250F chassis scored in years after 1955?",
    "question_th": "อะไรคือคะแนนที่แชสซีของ Maserati 250F ทำคะแนนได้มากที่สุดในช่วงหลายปีหลังปี 1955?",
    "context": "CREATE TABLE table_name_39 (points INTEGER, chassis VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT engine FROM table_name_74 WHERE year > 1956",
    "question_en": "Which engine has a year larger than 1956?",
    "question_th": "เครื่องยนต์ใดมีปีใหญ่กว่าปี 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_en": "What is the lowest age of an astronaut named Stu Roosa?",
    "question_th": "อายุต่ำสุดของนักบินอวกาศชื่อ 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_en": "What mission did the astronaut who 38 years old on the mission and who served in NASA serve on?",
    "question_th": "นักบินอวกาศที่อายุ 38 ปีในภารกิจนี้และผู้ที่ทำหน้าที่ใน NASA ทำภารกิจอะไร",
    "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_en": "what is the type of lithium when rubidium is nabr (1.9)?",
    "question_th": "ลิเธียมประเภทใดเมื่อรูบิเดียมเป็น 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_en": "what is the properties of sodium when rubidium is nacl (2.1)?",
    "question_th": "เมื่อรูบิเดียมเป็น 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_en": "what is the properties of potassium when lithium is h a l o g e n s and sodium is bromine?",
    "question_th": "โพแทสเซียมมีคุณสมบัติอย่างไรเมื่อลิเธียมเป็นฮาโลเจนและโซเดียมเป็นโบรมีน?",
    "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_en": "what is the properties of lithium when caesium is ki (1.7)?",
    "question_th": "คุณสมบัติของลิเธียมเมื่อซีเซียมเป็น 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_en": "what is the properties of sodium when lithium is h a l o g e n s and rubidium is nacl (2.1)?",
    "question_th": "โซเดียมมีคุณสมบัติอย่างไร เมื่อลิเทียมเป็นฮาโลเจน และรูบิเดียมเป็น 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_en": "what is the properties of sodium when potassium is lii (1.5)?",
    "question_th": "โซเดียมมีคุณสมบัติอย่างไรเมื่อโพแทสเซียมมีค่าเป็น 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_en": "Which prime mover had a Model of rs-18?",
    "question_th": "ผู้เสนอญัตติสำคัญคนใดมีโมเดล 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_en": "Which model had a Specification of dl-718?",
    "question_th": "รุ่นไหนมี Spec ของ dl-718 ครับ?",
    "context": "CREATE TABLE table_name_98 (model VARCHAR, specification VARCHAR)"
  },
  {
    "answer": "SELECT power_output FROM table_name_23 WHERE build_date = \"1951–1956\"",
    "question_en": "Which power output had a Build date of 1951–1956?",
    "question_th": "กำลังไฟฟ้าใดที่มีวันที่สร้างเป็นปี 1951–1956",
    "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_en": "Which wheel arrangement had a Specification of dl-700?",
    "question_th": "การจัดเรียงล้อใดมีข้อกำหนดของ 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_en": "Who is the player born before 1985 who is less than 2.02 tall?",
    "question_th": "นักเตะที่เกิดก่อนปี 1985 สูงไม่เกิน 2.02 คือใคร?",
    "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_en": "Who is the player who was born before 1980 who currently plays for the Toronto Raptors?",
    "question_th": "ใครคือนักเตะที่เกิดก่อนปี 1980 และปัจจุบันเล่นให้กับทีม 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íguez\"",
    "question_en": "What position does Sergio Rodríguez, who is less than 1.96 tall and was born after 1980, play?",
    "question_th": "Sergio Rodríguez ซึ่งสูงน้อยกว่า 1.96 และเกิดหลังปี 1980 เล่นตำแหน่งใด",
    "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_en": "What year was the Guard who currently plays for the Memphis Grizzlies born?",
    "question_th": "การ์ดที่ปัจจุบันเล่นให้กับทีมเมมฟิส กริซลี่ส์เกิดในปีใด",
    "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_en": "What is the height of the Forward who currently plays for the Toronto Raptors?",
    "question_th": "กองหน้าที่เล่นให้กับ 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_en": "Date of 24 september 2002 is what group position?",
    "question_th": "วันที่ 24 กันยายน 2545 อยู่ในตำแหน่งใดของกลุ่ม?",
    "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_en": "Date of 24 september 2002 had what F-A result?",
    "question_th": "วันที่ 24 กันยายน 2545 FA สรุปผลเป็นอย่างไรบ้าง?",
    "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–0\"",
    "question_en": "Result F–A of 2–0 had what total number of attendance?",
    "question_th": "ผลการแข่งขัน F–A เท่ากับ 2–0 มีผู้เข้าร่วมทั้งหมดเท่าใด",
    "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_en": "What was the score of the game with a loss of Myers (5-6)?",
    "question_th": "ในเกมที่แพ้ไมเออร์ส (5-6) สกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_47 (score VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_50 WHERE attendance = \"41,212\"",
    "question_en": "What was the loss of the game attended by 41,212?",
    "question_th": "อะไรคือการสูญเสียของเกมที่มีผู้เข้าร่วม 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_en": "What was the attendance of the game that had a loss of Wolf (3-4)?",
    "question_th": "การเข้าร่วมเกมที่แพ้วูล์ฟ (3-4) เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_84 (attendance VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT nation FROM table_name_60 WHERE athlete = \"bianca knight\"",
    "question_en": "what nation is bianca knight the answer for?",
    "question_th": "bianca Knight คือคำตอบของชาติไหน?",
    "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_en": "what is the wind speed when brenda morehead was in the united states?",
    "question_th": "ตอนที่เบรนดา มอร์เฮด อยู่ที่สหรัฐอเมริกามีความเร็วลมเท่าไร",
    "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_en": "what is the highest rank in dresden with a time faster than 10.88?",
    "question_th": "อันดับสูงสุดในเดรสเดนด้วยเวลาเร็วกว่า 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_en": "What is the course on 1 June?",
    "question_th": "วันที่ 1 มิถุนายน หลักสูตรอะไร?",
    "context": "CREATE TABLE table_name_10 (course VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_95 WHERE course = \"florence to genoa\"",
    "question_en": "Who is the winner of the Florence to Genoa course?",
    "question_th": "ใครคือผู้ชนะหลักสูตรฟลอเรนซ์ถึงเจนัว",
    "context": "CREATE TABLE table_name_95 (winner VARCHAR, course VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_44 WHERE course = \"rome to florence\"",
    "question_en": "What is the date of the Rome to Florence course?",
    "question_th": "หลักสูตรโรมถึงฟลอเรนซ์คือวันที่เท่าไร",
    "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_en": "What is Assists that has a Blocks of 2 tied (1) with a Year larger than 1995",
    "question_th": "Assists คืออะไรที่มีบล็อก 2 บล็อกเท่ากัน (1) โดยมีอายุมากกว่าปี 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_en": "What is the highest lane for heat 6 with a time of dns?",
    "question_th": "เลนที่สูงที่สุดสำหรับฮีต 6 ด้วยเวลา 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_en": "What is the lowest lane with a time of 2:05.90, and a Heat larger than 3?",
    "question_th": "เลนต่ำสุดที่มีเวลา 2:05.90 น. และฮีตมากกว่า 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_en": "What nationality has a lane larger than 4 and a Time of 2:00.37?",
    "question_th": "สัญชาติใดที่มีเลนใหญ่กว่า 4 และเวลา 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_en": "What is the average Lane where Belarus is the nationality?",
    "question_th": "เลนเฉลี่ยที่เบลารุสเป็นสัญชาติคือเท่าใด",
    "context": "CREATE TABLE table_name_57 (lane INTEGER, nationality VARCHAR)"
  },
  {
    "answer": "SELECT MAX(lane) FROM table_name_16 WHERE name = \"nisha millet\"",
    "question_en": "What is the highest lane for nisha millet?",
    "question_th": "เลนที่สูงที่สุดสำหรับข้าวฟ่างนิชาคืออะไร?",
    "context": "CREATE TABLE table_name_16 (lane INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_31 WHERE course = \"rome to naples\"",
    "question_en": "On what date was the race course from Rome to Naples?",
    "question_th": "สนามแข่งจากโรมไปเนเปิลส์จัดขึ้นวันไหน?",
    "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_en": "Name the Losing BP with 22 played and 9 Try BP.",
    "question_th": "ตั้งชื่อ Losing BP ด้วยการเล่น 22 ครั้งและ Try BP 9 ครั้ง",
    "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_en": "Name the Losing BP with drawn of 1 and a Try BP of 6.",
    "question_th": "ตั้งชื่อ BP ที่แพ้โดยเสมอ 1 และ Try BP เท่ากับ 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_en": "Name the Losing BP of Newport Saracens RFC and has a Lost of 19.",
    "question_th": "ตั้งชื่อ Losing BP ของ Newport Saracens RFC และแพ้ 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_en": "Name the Drawn for Ystrad Rhondda RFC and has Played of 22.",
    "question_th": "ตั้งชื่อ Drawn ให้กับ Ystrad Rhondda RFC และเล่นไปแล้ว 22 รายการ",
    "context": "CREATE TABLE table_name_39 (drawn VARCHAR, played VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT drawn FROM table_name_60 WHERE lost = \"1\"",
    "question_en": "Can you name the drawn with a Lost of 1?",
    "question_th": "คุณสามารถตั้งชื่อการจับฉลากว่าแพ้ 1 ได้หรือไม่?",
    "context": "CREATE TABLE table_name_60 (drawn VARCHAR, lost VARCHAR)"
  },
  {
    "answer": "SELECT drawn FROM table_name_34 WHERE losing_bp = \"8\"",
    "question_en": "With a Losing BP of 8, what is the drawn?",
    "question_th": "หากสูญเสีย BP เท่ากับ 8 คุณจะได้อะไร?",
    "context": "CREATE TABLE table_name_34 (drawn VARCHAR, losing_bp VARCHAR)"
  },
  {
    "answer": "SELECT disposals FROM table_name_84 WHERE marks = \"134\"",
    "question_en": "What is the number of disposals when marks is 134?",
    "question_th": "จำนวนการจำหน่ายเมื่อเครื่องหมายคือ 134 คืออะไร?",
    "context": "CREATE TABLE table_name_84 (disposals VARCHAR, marks VARCHAR)"
  },
  {
    "answer": "SELECT score1 FROM table_name_9 WHERE match = 42",
    "question_en": "What is the Score1 of Match 42?",
    "question_th": "Score1 ของ 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_en": "On what date was the match higher than 8 on ground A against Guiseley?",
    "question_th": "นัดที่สูงกว่า 8 บนพื้น A กับ 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_en": "On what ground was the game on 31 Jul 2007?",
    "question_th": "เกมในวันที่ 31 กรกฎาคม พ.ศ. 2550 จัดขึ้นที่จุดใด?",
    "context": "CREATE TABLE table_name_60 (ground VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT SUM(total) FROM table_name_20 WHERE player = \"david toms\"",
    "question_en": "What is the total of David Toms?",
    "question_th": "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_en": "What is the average of Fiji with t10 Finish?",
    "question_th": "ค่าเฉลี่ยของฟิจิกับ 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_en": "Who won in 1983?",
    "question_th": "ใครชนะในปี 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_en": "Which english website has a daily frequency ?",
    "question_th": "เว็บไซต์ภาษาอังกฤษใดที่มีความถี่รายวัน?",
    "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_en": "What is the frequency of the newspaper, el diario de nuevo laredo in the city of nuevo laredo ?",
    "question_th": "ความถี่ของหนังสือพิมพ์ el diario de nuevo laredo ในเมือง 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_en": "What is the name of the newspaper with the website liderinformativo.com ?",
    "question_th": "หนังสือพิมพ์ชื่ออะไรที่มีเว็บไซต์ 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_en": "Which website is in english and has the frequency of an online newspaper ?",
    "question_th": "เว็บไซต์ใดเป็นภาษาอังกฤษและมีความถี่เท่ากับหนังสือพิมพ์ออนไลน์?",
    "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_en": "Which city has spanish news on the website ultimahora.com ?",
    "question_th": "เมืองใดมีข่าวภาษาสเปนบนเว็บไซต์ 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_en": "Which line after 1959 had the highest amount of points?",
    "question_th": "เส้นใดหลังปี 2502 มีคะแนนสูงสุด?",
    "context": "CREATE TABLE table_name_92 (points INTEGER, year INTEGER)"
  },
  {
    "answer": "SELECT MIN(points) FROM table_name_59 WHERE year = 1954",
    "question_en": "Which line has the lowest amount of points and a year of 1954?",
    "question_th": "เส้นไหนมีคะแนนน้อยที่สุดและปี พ.ศ. 2497?",
    "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_en": "What is the total amount of points that Christy has in the years before 1954?",
    "question_th": "คริสตี้มีคะแนนรวมก่อนปี 2497 กี่คะแนน?",
    "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_en": "Which is the latest year that has an engine of Offenhauser l4, a chassis of Kurtis Kraft 500c, and the entrant of Federal Engineering?",
    "question_th": "ปีล่าสุดที่มีเครื่องยนต์ Offenhauser l4, แชสซีของ Kurtis Kraft 500c และผู้เข้าร่วมจาก 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_en": "Which chasis was in the year 1954?",
    "question_th": "chasis ใดในปี 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_en": "What is the final score in 2007 for the world league in novi sad played against Italy?",
    "question_th": "คะแนนสุดท้ายในปี 2550 ของลีกโลกที่โนวีเศร้าที่เล่นกับอิตาลีคือเท่าไร?",
    "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_en": "what is the competition played in budva against italy?",
    "question_th": "การแข่งขันที่เล่นในบุดวา กับ อิตาลี คืออะไร?",
    "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_en": "what is the competition that had a final score of 6:5?",
    "question_th": "การแข่งขันที่มีสกอร์สุดท้าย 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_en": "who is the opponent when played in trieste before 2007?",
    "question_th": "คู่ต่อสู้เมื่อเล่นในตริเอสเตก่อนปี 2550 คือใคร?",
    "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_en": "What was Bob Jameson's lowest bonus where he had less than 15 rides?",
    "question_th": "โบนัสต่ำสุดของ Bob Jameson ที่เขาขี่น้อยกว่า 15 ครั้งคืออะไร",
    "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_en": "How many rides did it take to get less than 3 bonus pts in no more than 7 matches?",
    "question_th": "ต้องขี่กี่ครั้งถึงจะได้แต้มโบนัสน้อยกว่า 3 แต้มในการแข่งขันไม่เกิน 7 นัด?",
    "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_en": "What is the total for 34 matches with 111 rides, but no more than 15 bonus points?",
    "question_th": "รวม 34 นัด ขี่ 111 ครั้ง แต่ไม่เกิน 15 แต้มโบนัสเป็นเท่าไหร่?",
    "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_en": "How many rides did it take Ray Day to get 274 points in total with less than 3 bonus points?",
    "question_th": "Ray Day ใช้เวลาขี่กี่ครั้งถึงจะได้คะแนนรวม 274 คะแนนโดยมีคะแนนโบนัสน้อยกว่า 3 คะแนน",
    "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_en": "Which rider had less than 342 points in no more than 76 rides in 7 matches with more than 2 bonus points?",
    "question_th": "นักแข่งคนไหนมีคะแนนน้อยกว่า 342 คะแนนจากการขี่ไม่เกิน 76 ครั้งใน 7 นัดพร้อมคะแนนโบนัสมากกว่า 2 คะแนน",
    "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_en": "What is the Margin of victory on aug 11, 2002?",
    "question_th": "อัตรากำไรขั้นต้นของชัยชนะในวันที่ 11 สิงหาคม 2545 คืออะไร?",
    "context": "CREATE TABLE table_name_41 (margin_of_victory VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_98 WHERE winning_score = –16(70 - 65 - 65 = 200)",
    "question_en": "When has a Winning score of –16 (70-65-65=200)?",
    "question_th": "เมื่อใดมีคะแนนชนะเป็น –16 (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_en": "What is the Margin of victory on oct 5, 1997?",
    "question_th": "Margin of Victory ในวันที่ 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_en": "What is the Winning score on oct 22, 2000?",
    "question_th": "คะแนนชนะในวันที่ 22 ต.ค. 2543 เป็นเท่าใด",
    "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_en": "How many episodes have a share of 16.2% and an episode number of less than 1?",
    "question_th": "มีกี่ตอนมีส่วนแบ่ง 16.2% และมีจำนวนตอนน้อยกว่า 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_en": "If the French Open tournament had 2r in 2012, what was it in 2010?",
    "question_th": "หากการแข่งขัน French Open ได้อันดับที่ 2 ในปี 2012 แล้วในปี 2010 จะเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_31 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2012 FROM table_name_43 WHERE 2010 = \"2r\"",
    "question_en": "Which 2012 tournament had 2r in 2010?",
    "question_th": "ทัวร์นาเมนต์ใดในปี 2012 มี 2r ในปี 2010",
    "context": "CREATE TABLE table_name_43 (Id VARCHAR)"
  },
  {
    "answer": "SELECT tournament FROM table_name_60 WHERE 2010 = \"2r\"",
    "question_en": "Which tournament had 2r in 2010?",
    "question_th": "ทัวร์นาเมนต์ใดมี 2r ในปี 2010?",
    "context": "CREATE TABLE table_name_60 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2009 FROM table_name_71 WHERE 2012 = \"2r\" AND tournament = \"french open\"",
    "question_en": "If the French Open tournament had 2r in 2012, what was it in 2009?",
    "question_th": "หากการแข่งขัน French Open ได้อันดับที่ 2 ในปี 2012 แล้วในปี 2009 จะเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_71 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2010 FROM table_name_84 WHERE 2012 = \"2r\" AND tournament = \"us open\"",
    "question_en": "If the US Open tournament had 2r in 2012, what was it in 2010?",
    "question_th": "หากการแข่งขัน US Open ได้อันดับที่ 2 ในปี 2012 แล้วในปี 2010 จะเป็นอย่างไร",
    "context": "CREATE TABLE table_name_84 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_56 WHERE team = \"senators\"",
    "question_en": "What is the school, when the Team is Senators?",
    "question_th": "โรงเรียนอะไร ในเมื่อทีมเป็น ส.ส.?",
    "context": "CREATE TABLE table_name_56 (school VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT season_outcome FROM table_name_70 WHERE school = \"sussex tech\"",
    "question_en": "What is the Season Outcome, when the School is Sussex Tech?",
    "question_th": "ผลลัพธ์ตามฤดูกาลคืออะไร เมื่อโรงเรียนเป็น 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_en": "What is the School, when the Team is Golden Knights?",
    "question_th": "โรงเรียนคืออะไร ในเมื่อทีมคือ Golden Knights?",
    "context": "CREATE TABLE table_name_15 (school VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_2 WHERE result = \"5–1\"",
    "question_en": "What is the Venue where the Result is 5–1?",
    "question_th": "สถานที่ใดที่ผลการแข่งขันคือ 5–1?",
    "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_en": "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?",
    "question_th": "อะไรคือคะแนนที่เป้าหมายมากกว่า 11 และการแข่งขันถ้วยเนห์รูปี 2009 และมีวันที่ 24 สิงหาคม 2552?",
    "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_en": "What is the Result where Goal is 9?",
    "question_th": "ผลลัพธ์ที่เป้าหมายคือ 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–1\"",
    "question_en": "What was Goal that where Competition of international friendly, and a Result of 2–1?",
    "question_th": "เป้าหมายคืออะไรที่การแข่งขันกระชับมิตรระหว่างประเทศและผลการแข่งขัน 2–1?",
    "context": "CREATE TABLE table_name_65 (goal VARCHAR, competition VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_59 WHERE score = \"3–0\" AND goal > 4",
    "question_en": "What is the Competition where the Score was 3–0, and the was Goal larger than 4?",
    "question_th": "การแข่งขันคืออะไรที่คะแนนเป็น 3–0 และประตูมากกว่า 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_en": "What is the 2009 estimate population of the Northeast?",
    "question_th": "ประมาณการประชากรภาคตะวันออกเฉียงเหนือ พ.ศ. 2552 เป็นเท่าใด",
    "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_en": "What is the 2009 estimate population of the region with Manaus as the largest city?",
    "question_th": "ประชากรประมาณปี 2009 ของภูมิภาคนี้ที่มีมาเนาส์เป็นเมืองที่ใหญ่ที่สุดคืออะไร",
    "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_en": "How many states has a 2009 estimate population of 27,3 million?",
    "question_th": "มีกี่รัฐที่มีประชากรประมาณ 27.3 ล้านคนในปี 2552",
    "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_en": "What is the largest metropolitan area of the Central-West?",
    "question_th": "พื้นที่มหานครที่ใหญ่ที่สุดในภาคกลางตะวันตกคืออะไร?",
    "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_en": "What is the 2009 estimate population of the region with Manaus as the largest city?",
    "question_th": "ประชากรประมาณปี 2009 ของภูมิภาคนี้ที่มีมาเนาส์เป็นเมืองที่ใหญ่ที่สุดคืออะไร",
    "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_en": "Who was the leader at the summit when the stage was larger than 14, the category was 1, the start was Saint-Girons, and the finish was Cauterets?",
    "question_th": "ใครเป็นผู้นำในการประชุมสุดยอดเมื่อเวทีมีมากกว่า 14 คนประเภทคือ 1 ผู้ออกสตาร์ทคือ Saint-Girons และจบด้วย 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_en": "What was the earliest year that had a start of Saint-Gaudens and a stage smaller than 15?",
    "question_th": "ปีแรกสุดที่มีการเริ่มต้นของ Saint-Gaudens และระยะที่น้อยกว่า 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_en": "Which Model had 37-78 seats?",
    "question_th": "รุ่นไหนมี 37-78 ที่นั่ง?",
    "context": "CREATE TABLE table_name_62 (model VARCHAR, seats VARCHAR)"
  },
  {
    "answer": "SELECT studio FROM table_name_13 WHERE title = \"the oregon trail\"",
    "question_en": "Which studio did The Oregon Trail?",
    "question_th": "สตูดิโอไหนทำ 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_en": "Which title had Muriel Evans as leading lady?",
    "question_th": "ชื่อใดที่ Muriel Evans เป็นนางเอก?",
    "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_en": "Who is the leading lady in The Lonely Trail?",
    "question_th": "ใครคือนางเอกใน 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_en": "Who was the leading lady for Uni studio and Frank Strayer?",
    "question_th": "ใครคือนางเอกของ Uni studio และ 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_en": "In which title was Ann Rutherford the leading lady for Joseph Kane?",
    "question_th": "Ann Rutherford เป็นนางเอกของ 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_en": "Who is the leading lady in The Lonely Trail for Joseph Kane?",
    "question_th": "ใครคือนางเอกใน The Lonely Trail ของ 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_en": "What was the Chassis with less than 8 points before 1960?",
    "question_th": "แชสซีที่มีคะแนนน้อยกว่า 8 คะแนนก่อนปี 1960 คืออะไร?",
    "context": "CREATE TABLE table_name_12 (chassis VARCHAR, year VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT chassis FROM table_name_58 WHERE points = 0",
    "question_en": "Which Chassis has 0 points?",
    "question_th": "แชสซีใดมี 0 คะแนน?",
    "context": "CREATE TABLE table_name_58 (chassis VARCHAR, points VARCHAR)"
  },
  {
    "answer": "SELECT SUM(points) FROM table_name_85 WHERE year > 1957",
    "question_en": "What were the total Pints after 1957?",
    "question_th": "จำนวนไพนต์ทั้งหมดหลังปี 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_en": "What was the most recent year for Dean Van Lines?",
    "question_th": "ปีล่าสุดคือปีใดสำหรับ 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_en": "What Gold Coast has Auckland cancelled, and Adelaide yes?",
    "question_th": "โอ๊คแลนด์ที่โกลด์โคสต์ยกเลิก และแอดิเลดใช่หรือไม่",
    "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_en": "Which Sydney has Auckland cancelled and Perth yes?",
    "question_th": "ซิดนีย์ไหนที่โอ๊คแลนด์ยกเลิกและเพิร์ธใช่?",
    "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_en": "Which Sydney has Gold Coast no, Adelaide no< and Auckland no?",
    "question_th": "ซิดนีย์แห่งใดมีหมายเลขโกลด์โคสต์, หมายเลขแอดิเลด< และหมายเลขโอ๊คแลนด์",
    "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_en": "Which Gold Coast has Melbourne yes, and Auckland yes?",
    "question_th": "โกลด์โคสต์แห่งใดที่มีเมลเบิร์นใช่ และโอ๊คแลนด์ใช่",
    "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_en": "Which Perth has Auckland yes and Gold Coast yes?",
    "question_th": "เพิร์ธเมืองไหนมีโอ๊คแลนด์ใช่และโกลด์โคสต์ใช่",
    "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_en": "Which Gold Coast has Auckland no, Adelaide yes, and Melbourne no?",
    "question_th": "โกลด์โคสต์ใดมีโอ๊คแลนด์ใช่ แอดิเลดใช่ และเมลเบิร์นไม่ใช่",
    "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_en": "What round was on 7 January 2003?",
    "question_th": "วันที่ 7 มกราคม พ.ศ. 2546 จัดขึ้นรอบใด?",
    "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_en": "What is the result F_A on 17 December 2002?",
    "question_th": "ผล F_A เมื่อวันที่ 17 ธันวาคม พ.ศ. 2545 เป็นอย่างไร?",
    "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_en": "What attendance was on 7 January 2003?",
    "question_th": "วันที่ 7 มกราคม พ.ศ. 2546 มีผู้เข้าร่วมประชุมจำนวนเท่าใด",
    "context": "CREATE TABLE table_name_14 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT recording FROM table_name_86 WHERE year = \"2012\"",
    "question_en": "Name the recording for 2012",
    "question_th": "ตั้งชื่อการบันทึกสำหรับปี 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_en": "Name the year with the best female pop vocal album and result of won",
    "question_th": "ตั้งชื่อปีด้วยอัลบั้มนักร้องป๊อปหญิงที่ดีที่สุดและผลการชนะ",
    "context": "CREATE TABLE table_name_43 (year VARCHAR, category VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT category FROM table_name_15 WHERE year = \"2013\"",
    "question_en": "Name the category for 2013",
    "question_th": "ตั้งชื่อหมวดหมู่สำหรับปี 2013",
    "context": "CREATE TABLE table_name_15 (category VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT MIN(gold) FROM table_name_94 WHERE silver < 0",
    "question_en": "Which was the lowest gold when silver was smaller than 0?",
    "question_th": "ทองคำใดเป็นทองคำที่ต่ำที่สุดเมื่อเงินมีค่าน้อยกว่า 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_en": "Which is the highest total at rank 6, bronze 2, and gold larger than 0?",
    "question_th": "อะไรคือผลรวมสูงสุดในอันดับ 6, ทองแดง 2 และทองที่มากกว่า 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_en": "Which is the highest bronze at Chinese Taipei when the rank was higher than 5 and total was smaller than 1?",
    "question_th": "เหรียญทองแดงใดที่สูงที่สุดในไชนีสไทเปเมื่ออันดับสูงกว่า 5 และคะแนนรวมน้อยกว่า 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_en": "Name the US dance when the year is more than 1985",
    "question_th": "ตั้งชื่อการเต้นรำของสหรัฐอเมริกาเมื่อมากกว่าปี 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_en": "Name the US Hot 100 for album of I like you",
    "question_th": "ตั้งชื่อ US Hot 100 สำหรับอัลบั้ม 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_en": "Name the US R&B for 1981",
    "question_th": "ตั้งชื่อเพลง R&B ของสหรัฐอเมริกาในปี 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_en": "Who was the writer when Parkville Pictures Ltd was the recipient?",
    "question_th": "ใครคือผู้เขียนเมื่อ Parkville Pictures Ltd เป็นผู้รับ?",
    "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_en": "Alex Winckler wrote the film, who was the director?",
    "question_th": "Alex Winckler เขียนบทภาพยนตร์เรื่องนี้ ใครเป็นผู้กำกับ?",
    "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_en": "On what date was Edward Jeffreys the writer?",
    "question_th": "Edward Jeffreys เป็นผู้เขียนวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_43 (date VARCHAR, writer_s_ VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_48 WHERE award = \"£6,600\"",
    "question_en": "What date was the award of £6,600 was given?",
    "question_th": "จะมีการมอบรางวัลมูลค่า 6,600 ปอนด์เมื่อใด?",
    "context": "CREATE TABLE table_name_48 (date VARCHAR, award VARCHAR)"
  },
  {
    "answer": "SELECT director_s_ FROM table_name_54 WHERE recipient = \"redbag pictures ltd\"",
    "question_en": "Who was the director that had a recipient of Redbag Pictures Ltd?",
    "question_th": "ใครคือผู้กำกับที่ได้รับ 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_en": "What's the name of the award that Edward Jeffreys was the writer?",
    "question_th": "รางวัลที่ Edward Jeffreys เป็นผู้เขียนชื่ออะไร",
    "context": "CREATE TABLE table_name_64 (award VARCHAR, writer_s_ VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_40 WHERE year_born = 1981",
    "question_en": "Who is the Player born in 1981?",
    "question_th": "ผู้เล่นที่เกิดในปี 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_en": "What is the Height that has a year born before 1977",
    "question_th": "ส่วนสูงที่มีหนึ่งปีเกิดก่อนปี 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_en": "What is the lowest Total Region that has a Year after 2001, and a Broadsound greater than 6,843?",
    "question_th": "ภูมิภาครวมต่ำสุดที่มีหนึ่งปีหลังจากปี 2544 และ Broadsound มากกว่า 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_en": "What is the sum of Total Regions that have the Year 1954, and a Nebo greater than 447?",
    "question_th": "ผลรวมของภูมิภาคทั้งหมดที่มีปี 1954 และ Nebo มากกว่า 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_en": "What is the number of Bronze for the Nation of Uganda with less than 2 Gold and Total medals?",
    "question_th": "จำนวนเหรียญทองแดงสำหรับประเทศยูกันดาที่มีเหรียญทองน้อยกว่า 2 เหรียญและเหรียญทั้งหมดคือเท่าใด",
    "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_en": "With less than 7 Silver medals, how many Gold medals did Canada receive?",
    "question_th": "เหรียญเงินไม่ถึง 7 เหรียญ แคนาดาได้เหรียญทองกี่เหรียญ?",
    "context": "CREATE TABLE table_name_30 (gold INTEGER, nation VARCHAR, silver VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_4 WHERE score = \"6–1, 6–4\"",
    "question_en": "What is the outcome of a score that is 6–1, 6–4?",
    "question_th": "ผลลัพธ์ของคะแนนที่เป็น 6–1, 6–4 คืออะไร?",
    "context": "CREATE TABLE table_name_4 (outcome VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_40 WHERE score = \"7–6 (7–3) , 6–3\"",
    "question_en": "What is the surface of the score, 7–6 (7–3) , 6–3?",
    "question_th": "พื้นผิวของคะแนนคืออะไร 7–6 (7–3) , 6–3?",
    "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_en": "What venue did he play in before 2008 and finished 14th (q)?",
    "question_th": "เขาเล่นในสถานที่ใดก่อนปี 2008 และจบอันดับที่ 14 (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_en": "What competition did he compete in before 2007 in gothenburg, sweden?",
    "question_th": "เขาลงแข่งขันในรายการใดก่อนปี 2007 ที่เมืองโกเธนเบิร์ก ประเทศสวีเดน",
    "context": "CREATE TABLE table_name_6 (competition VARCHAR, year VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_55 WHERE position = \"7th\"",
    "question_en": "What venue did he finish 7th?",
    "question_th": "เขาจบอันดับที่ 7 ในสถานที่ใด?",
    "context": "CREATE TABLE table_name_55 (venue VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT MAX(performances) FROM table_name_43 WHERE role = \"geoffrey fitton\"",
    "question_en": "Name the most performances for geoffrey fitton",
    "question_th": "ตั้งชื่อการแสดงของเจฟฟรีย์ ฟิตตัน มากที่สุด",
    "context": "CREATE TABLE table_name_43 (performances INTEGER, role VARCHAR)"
  },
  {
    "answer": "SELECT role FROM table_name_49 WHERE closing_date = \"feb 4, 1961\"",
    "question_en": "Name the role for Feb 4, 1961 closing date",
    "question_th": "ตั้งชื่อตำแหน่งงานปิดรับสมัครวันที่ 4 ก.พ. 61",
    "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_en": "Name the theatre for aaron jablonski schuyler grogan with performances more than 49",
    "question_th": "ตั้งชื่อโรงละครให้กับ Aaron Jablonski Schuyler Grogan ที่มีการแสดงมากกว่า 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_en": "What are the titles for episodes prior to episode 4?",
    "question_th": "ตอนก่อนตอนที่ 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_en": "What are the titles for episodes prior to episode 4?",
    "question_th": "ตอนก่อนตอนที่ 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_en": "What the air dates for the episodes are episode 3 in the series?",
    "question_th": "ซีรีส์เรื่องนี้เป็นตอนที่ 3 ออกอากาศวันไหนคะ?",
    "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_en": "How many laps resulted from a Qual of 165.229?",
    "question_th": "รอบคัดเลือก 165.229 รอบมีกี่รอบ?",
    "context": "CREATE TABLE table_name_17 (laps INTEGER, qual VARCHAR)"
  },
  {
    "answer": "SELECT qual FROM table_name_4 WHERE start = \"15\"",
    "question_en": "Whent he start was 15, what was the Qual?",
    "question_th": "เมื่อเขาเริ่มอายุ 15 ปี 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_en": "What was the start result with a Rank of 7 and more than 100 laps?",
    "question_th": "ผลการออกสตาร์ทด้วยอันดับ 7 และมากกว่า 100 รอบเป็นอย่างไร?",
    "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_en": "Who was the shirt sponsor for the Blackburn Rovers?",
    "question_th": "ใครคือผู้สนับสนุนเสื้อของทีมแบล็คเบิร์น โรเวอร์ส?",
    "context": "CREATE TABLE table_name_59 (shirt_sponsor VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT captain FROM table_name_60 WHERE team = \"bolton wanderers\"",
    "question_en": "Who was the team captain of the Bolton Wanderers?",
    "question_th": "ใครคือกัปตันทีมโบลตัน วันเดอเรอร์ส?",
    "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_en": "For which team did Adidas manufacture kits and TDK sponsor shirts?",
    "question_th": "Adidas ผลิตชุดกีฬาและเสื้อสปอนเซอร์ TDK ให้กับทีมใด",
    "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_en": "On which team was Robbie Earle the captain?",
    "question_th": "ร็อบบี้ เอิร์ล เป็นกัปตันทีมใด",
    "context": "CREATE TABLE table_name_5 (team VARCHAR, captain VARCHAR)"
  },
  {
    "answer": "SELECT manager_1 FROM table_name_24 WHERE captain = \"neil redfearn\"",
    "question_en": "Who was the manager for the team with captain Neil Redfearn?",
    "question_th": "ใครเป็นผู้จัดการทีมร่วมกับกัปตันทีม นีล เรดเฟียร์น ?",
    "context": "CREATE TABLE table_name_24 (manager_1 VARCHAR, captain VARCHAR)"
  },
  {
    "answer": "SELECT captain FROM table_name_56 WHERE team = \"crystal palace\"",
    "question_en": "Who was the team captain for Crystal Palace?",
    "question_th": "ใครคือกัปตันทีมคริสตัล พาเลซ?",
    "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_en": "drop goals larger than 0, and a Penalties of 52, and a Number larger than 5 had what lowest score?",
    "question_th": "ดรอปประตูที่มากกว่า 0 และบทลงโทษ 52 และตัวเลขที่มากกว่า 5 มีคะแนนต่ำสุดคือเท่าใด",
    "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_en": "Player of jaco coetzee, and a Tries larger than 6 had what total number of score?",
    "question_th": "ผู้เล่นของ jaco coetzee และความพยายามที่มากกว่า 6 ได้คะแนนรวมเท่าใด",
    "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_en": "What is the highest round that has a draftee from Washington State University?",
    "question_th": "รอบสูงสุดที่มีผู้ดราฟท์จาก 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_en": "What round was Bob Randall selected in?",
    "question_th": "Bob Randall ถูกเลือกในรอบใด",
    "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_en": "Name the Ont of N.B. of 10 and normal total of 77",
    "question_th": "ตั้งชื่อ Ont ของ NB เป็น 10 และผลรวมปกติเป็น 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_en": "Name the date enacted for N.S. of 10 and normal total of 104",
    "question_th": "ตั้งชื่อวันที่ประกาศใช้สำหรับ NS เป็น 10 และผลรวมปกติเป็น 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_en": "Name the NS with normal total of 102",
    "question_th": "ตั้งชื่อ NS ด้วยผลรวมปกติเป็น 102",
    "context": "CREATE TABLE table_name_11 (ns VARCHAR, normal_total VARCHAR)"
  },
  {
    "answer": "SELECT normal_total FROM table_name_62 WHERE que = \"24\"",
    "question_en": "Name the normal with que of 24",
    "question_th": "ตั้งชื่อเรื่องปกติด้วย que ของ 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_en": "What is the sum of all the points won by Peter Whitehead in an alta f2 Chassis?",
    "question_th": "ผลรวมของคะแนนทั้งหมดที่ Peter Whitehead ชนะในแชสซี alta f2 เป็นเท่าใด",
    "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_en": "How many points does g a vandervell have?",
    "question_th": "กา แวนเดอร์เวลล์มีกี่คะแนน?",
    "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_en": "How many total points were earned with ferrari 125 Chassis after 1952?",
    "question_th": "แชสซีของ Ferrari 125 หลังปี 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_en": "What is the total number of Points that Peter Whitehead earned in a Ferrari 125?",
    "question_th": "จำนวนคะแนนทั้งหมดที่ Peter Whitehead ได้รับจาก Ferrari 125 คือเท่าใด",
    "context": "CREATE TABLE table_name_42 (points INTEGER, entrant VARCHAR, chassis VARCHAR)"
  },
  {
    "answer": "SELECT d_41_√ FROM table_name_20 WHERE d_43_o = \"r 13\"",
    "question_en": "Name the D 41 √ for having D 43 of r 13",
    "question_th": "ตั้งชื่อ D 41 √ ว่ามี D 43 ของ r 13",
    "context": "CREATE TABLE table_name_20 (d_41_√ VARCHAR, d_43_o VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(rank) FROM table_name_26 WHERE transfer_fee___€_million_ > 13 AND year > 2008",
    "question_en": "What was the rank of a transfer fee larger than 13 million, and after 2008?",
    "question_th": "ค่าตัวที่มากกว่า 13 ล้านอยู่อันดับไหน และหลังปี 2008?",
    "context": "CREATE TABLE table_name_26 (rank VARCHAR, transfer_fee___€_million_ VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT president FROM table_name_69 WHERE elected = 2010",
    "question_en": "What president was elected in 2010?",
    "question_th": "ประธานาธิบดีคนใดได้รับเลือกในปี 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_en": "When seats for 2001 is greater than 15 and % 2001 is greater than 100, what is the % 2006?",
    "question_th": "เมื่อที่นั่งสำหรับปี 2544 มากกว่า 15 และ % ปี 2544 มากกว่า 100 % ปี 2549 จะเป็นเท่าใด",
    "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_en": "What is the sum of % for 2001 if 2001 seats equals 7?",
    "question_th": "ผลรวมของ % สำหรับปี 2544 เป็นเท่าใดหากที่นั่งในปี 2544 เท่ากับ 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_en": "If 2006 is 13% and 2001 is greater than 12.1%, what is the greatest number of seats for 2001?",
    "question_th": "หากปี 2549 คือ 13% และปี 2544 มากกว่า 12.1% จำนวนที่นั่งสูงสุดสำหรับปี 2544 คือเท่าใด",
    "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_en": "What were the circumstances of the Hostile incident on the road to Jalalabad?",
    "question_th": "สถานการณ์ของเหตุการณ์ Hostile บนถนนสู่จาลาลาบัดเป็นอย่างไร?",
    "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_en": "What was the circumstance that happened on the road to Jalalabad?",
    "question_th": "เหตุการณ์ที่เกิดขึ้นบนถนนสู่จะลาลาบัดเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_89 (circumstances VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT circumstances FROM table_name_3 WHERE location = \"mazar-i-sharif\"",
    "question_en": "What happened in Mazar-i-sharif?",
    "question_th": "เกิดอะไรขึ้นในมาซารีชะรีฟ?",
    "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_en": "What is the Index number of Chen Bangjun Andie from Singapore?",
    "question_th": "หมายเลขดัชนีของ Chen Bangjun Andie จากสิงคโปร์คือเท่าไร?",
    "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_en": "What is the Chinese name of the Eliminated player from Singapore in Index f9?",
    "question_th": "ผู้เล่นที่ตกรอบจากสิงคโปร์ใน 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_en": "What is the Chinese name of the player in Index F10?",
    "question_th": "นักเตะใน 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_en": "What is the name of the player from Malaysia, Kuala Lumpur in Index f8?",
    "question_th": "นักเตะมาเลเซีย กัวลาลัมเปอร์ ใน 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_en": "Who was the opponent of the game on August 8?",
    "question_th": "คู่ต่อสู้ของเกมวันที่ 8 สิงหาคมคือใคร?",
    "context": "CREATE TABLE table_name_36 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT winners FROM table_name_29 WHERE venue = \"vojens\"",
    "question_en": "Who took the winning slot at the Vojens venue?",
    "question_th": "ใครเป็นผู้คว้าชัยชนะที่สนามโวเจนส์?",
    "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_en": "Who was the runner-up in 1980 at the Pocking venue?",
    "question_th": "ใครคือรองชนะเลิศในปี 1980 ที่สนาม Pocking?",
    "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_en": "What rank did the United States swimmer come in who posted 11.26 seconds in the 100-meter youth female division?",
    "question_th": "นักว่ายน้ำสหรัฐเข้าอันดับใดโดยโพสต์ 11.26 วินาทีในประเภทเยาวชนหญิง 100 เมตร",
    "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_en": "What is the lowest overall with more than 17 rounds?",
    "question_th": "รวมต่ำสุดเกิน 17 รอบคือเท่าไร?",
    "context": "CREATE TABLE table_name_25 (overall INTEGER, round INTEGER)"
  },
  {
    "answer": "SELECT position FROM table_name_15 WHERE round = 14",
    "question_en": "What position has 14 rounds?",
    "question_th": "ตำแหน่งอะไรมี 14 รอบ?",
    "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_en": "What United States player has a score of 69-73-68=210?",
    "question_th": "นักเตะสหรัฐคนไหนมีคะแนน 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_en": "What Argentina country is in t10 place?",
    "question_th": "ประเทศอาร์เจนตินาใดอยู่ในอันดับที่ 10",
    "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_en": "Which country has the score of 71-71-68=210?",
    "question_th": "ประเทศใดมีคะแนน 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_en": "What To par scored 72-71-68=211?",
    "question_th": "พาร์อะไรได้คะแนน 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_en": "Name the award won for category of choice tv villain in years after 2008",
    "question_th": "ตั้งชื่อรางวัลที่ได้รับ สาขา Choice TV Villain ในปีหลังปี 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_en": "Name the award for nominated result and year after 2011",
    "question_th": "ตั้งชื่อรางวัลสำหรับผลงานที่ได้รับการเสนอชื่อและปีหลังปี 2554",
    "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_en": "Which Perth also has Sydney yes, Gold Coast yes, and Adelaide no?",
    "question_th": "เมืองเพิร์ธเมืองไหนมีซิดนีย์ด้วย ใช่ โกลด์โคสต์ ใช่ และแอดิเลดไม่มี",
    "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_en": "Which Perth has Gold Coast yes, Sydney yes, Melbourne yes, and Adelaide yes?",
    "question_th": "เพิร์ธเมืองไหนมีโกลด์โคสต์ ใช่ ซิดนีย์ ใช่ เมลเบิร์น ใช่ และแอดิเลด ใช่",
    "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_en": "Which Adelaide has Sydney yes, Melbourne yes, and Perth no?",
    "question_th": "แอดิเลดไหนมีซิดนีย์ ใช่ เมลเบิร์น ใช่ และเพิร์ธ ไม่ใช่",
    "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_en": "Which Adelaide has Perth no, Gold Coast no, and Sydney yes?",
    "question_th": "แอดิเลดเมืองไหนมีเมืองเพิร์ธ เมืองโกลด์โคสต์ และเมืองซิดนีย์ ใช่หรือไม่",
    "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_en": "Which Melbourne has Gold Coast yes, Perth cancelled, and Adelaide cancelled?",
    "question_th": "เมลเบิร์นไหนมีโกลด์โคสต์ ใช่ เพิร์ธยกเลิก และแอดิเลดยกเลิก",
    "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_en": "Which Melbourne has Sydney yes, Gold Coast yes, and Perth yes?",
    "question_th": "เมลเบิร์นไหนมีซิดนีย์ใช่ โกลด์โคสต์ใช่ และเพิร์ธใช่",
    "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 žagar\"",
    "question_en": "Who came in 3rd when Matej žagar won?",
    "question_th": "Matej žagar ใครมาเป็นอันดับที่ 3?",
    "context": "CREATE TABLE table_name_30 (winners VARCHAR)"
  },
  {
    "answer": "SELECT winners FROM table_name_25 WHERE venue = \"krško\"",
    "question_en": "Who won at Krško?",
    "question_th": "ใครชนะที่คริชโก้?",
    "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_en": "Who came in 3rd when Nicolai Klindt won?",
    "question_th": "ใครมาเป็นที่ 3 เมื่อ Nicolai Klindt ชนะ?",
    "context": "CREATE TABLE table_name_2 (winners VARCHAR)"
  },
  {
    "answer": "SELECT 3 AS rd_place FROM table_name_99 WHERE \"venue\" = \"venue\"",
    "question_en": "Who came in 3rd at Venue?",
    "question_th": "ใครได้อันดับที่ 3 ของ Venue?",
    "context": "CREATE TABLE table_name_99 (Id VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(week) FROM table_name_99 WHERE record = \"1–0\"",
    "question_en": "What is the total number of weeks that the Steelers had a record of 1–0?",
    "question_th": "จำนวนสัปดาห์ทั้งหมดที่สตีลเลอร์สมีสถิติ 1–0 คือเท่าใด",
    "context": "CREATE TABLE table_name_99 (week VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_46 WHERE result = \"l 20–17\"",
    "question_en": "Who was the opponent at the Steelers game that had a result of l 20–17?",
    "question_th": "ใครคือคู่ต่อสู้ในเกมสตีลเลอร์สที่มีผลสกอร์ 20–17?",
    "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_en": "Name the condition for partial thromboplastin time of prolonged and platelet count of unaffected with bleeding time of prolonged",
    "question_th": "ตั้งชื่อเงื่อนไขสำหรับเวลา thromboplastin บางส่วนที่ยืดเยื้อและจำนวนเกล็ดเลือดที่ไม่ได้รับผลกระทบโดยมีเลือดออกเป็นเวลานาน",
    "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_en": "Name the condition with partial thromboplastin time of prolonged or unaffected",
    "question_th": "ตั้งชื่อเงื่อนไขด้วยเวลา thromboplastin บางส่วนที่ยืดเยื้อหรือไม่ได้รับผลกระทบ",
    "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_en": "Name the condition with partial thromboplastin time of unaffected and prothrombin time of unaffected with platelet count of decreased",
    "question_th": "ตั้งชื่อสภาวะด้วยเวลา thromboplastin บางส่วนที่ไม่ได้รับผลกระทบ และเวลาในการเกิด prothrombin ที่ไม่ได้รับผลกระทบ โดยจำนวนเกล็ดเลือดลดลง",
    "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_en": "Name the condition with platelet count of unaffected and bleeding time of unaffected with prothrombin time of prolonged and partial thromboplastin time of prolonged",
    "question_th": "ตั้งชื่อภาวะด้วยจำนวนเกล็ดเลือดที่ไม่ได้รับผลกระทบ และเวลาในการตกเลือด ของที่ไม่ได้รับผลกระทบ กับเวลาของ prothrombin ที่ยืดเยื้อ และ thromboplastin บางส่วนที่ยืดเยื้อ",
    "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_en": "Name the bleeding time with platelet count of unaffected and condition of factor xii deficiency",
    "question_th": "ตั้งชื่อเวลาเลือดออกด้วยจำนวนเกล็ดเลือดที่ไม่ได้รับผลกระทบและสภาวะของการขาดปัจจัย Xii",
    "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_en": "what is the number of losses with draws less than 1 and 6.3% efficiency?",
    "question_th": "จำนวนการสูญเสียที่มีประสิทธิภาพน้อยกว่า 1 และ 6.3% คือเท่าใด?",
    "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_en": "what is the number of draws for ali said gouled?",
    "question_th": "อาลีบอกว่า 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_en": "what is the number of draws when there are 4 losses and 28.6% efficiency?",
    "question_th": "จำนวนเสมอเมื่อแพ้ 4 ครั้งและมีประสิทธิภาพ 28.6% เป็นเท่าใด?",
    "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_en": "Name the females when males are 1 548",
    "question_th": "ตั้งชื่อหญิงเมื่อชายคือ 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_en": "Name the percentage with number of 1 343",
    "question_th": "ตั้งชื่อเปอร์เซ็นต์ด้วยตัวเลข 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_en": "Name the percentage which has females of 2",
    "question_th": "ตั้งชื่อเปอร์เซ็นต์ที่มีเพศหญิงจำนวน 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_en": "Name the males for language of persons that didn't name their native language",
    "question_th": "ตั้งชื่อผู้ชายตามภาษาของบุคคลที่ไม่ได้ตั้งชื่อภาษาแม่ของตน",
    "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_en": "What are the school colors for the college whose main campus is overland park?",
    "question_th": "โรงเรียนของวิทยาลัยที่มีวิทยาเขตหลักคือโอเวอร์แลนด์พาร์คมีสีอะไร?",
    "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_en": "What is independence community college's newest campus?",
    "question_th": "วิทยาเขตใหม่ล่าสุดของวิทยาลัยชุมชนอิสระคืออะไร?",
    "context": "CREATE TABLE table_name_37 (founded INTEGER, institution VARCHAR)"
  },
  {
    "answer": "SELECT main_campus_location FROM table_name_61 WHERE founded = 1967",
    "question_en": "What college was founded in 1967?",
    "question_th": "วิทยาลัยใดก่อตั้งในปี พ.ศ. 2510?",
    "context": "CREATE TABLE table_name_61 (main_campus_location VARCHAR, founded VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_9 WHERE function = \"explorator\"",
    "question_en": "Who had a function of explorator?",
    "question_th": "ใครมีหน้าที่เป็นนักสำรวจ?",
    "context": "CREATE TABLE table_name_9 (name VARCHAR, function VARCHAR)"
  },
  {
    "answer": "SELECT competing_entities FROM table_name_4 WHERE first_held < 1970",
    "question_en": "Can you tell me the Competing entities that has the First held smaller than 1970?",
    "question_th": "คุณช่วยบอกฉันเกี่ยวกับหน่วยงานคู่แข่งที่มีการจัดครั้งแรกน้อยกว่าปี 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_en": "What surface was played on on October 3, 2010?",
    "question_th": "ลงเล่นบนพื้นผิวใดในวันที่ 3 ตุลาคม พ.ศ. 2553?",
    "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_en": "What was the tier versus Manana Shapakidze?",
    "question_th": "เทียบกับ 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á\"",
    "question_en": "What was the score versus Michaela Pochabová?",
    "question_th": "คะแนนเทียบกับ Michaela Pochabová คืออะไร?",
    "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_en": "Who was the opponent on May 8, 2006?",
    "question_th": "คู่ต่อสู้เมื่อวันที่ 8 พฤษภาคม 2549 คือใคร?",
    "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_en": "What was the tier versus Annalisa bona?",
    "question_th": "แอนนาลิซ่า โบนา อยู่ระดับไหน?",
    "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_en": "Which song has votes greater than 640 and a draw of 1?",
    "question_th": "เพลงไหนมีคะแนนโหวตมากกว่า 640 และเสมอ 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_en": "When Keey has 58.1% what % does Bush have?",
    "question_th": "เมื่อ Keey มี 58.1% Bush มี % เท่าไร?",
    "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_en": "Which of Real Betis career had appearances smaller than 98, nationality of Spain, and goals greater than 15?",
    "question_th": "อาชีพใดของเรอัล เบติสที่ลงสนามน้อยกว่า 98 นัด สัญชาติสเปน และประตูมากกว่า 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_en": "What Decile has State Authority and Raumati South Area?",
    "question_th": "Decile ใดมีอำนาจของรัฐและพื้นที่ทางใต้ของ Raumati?",
    "context": "CREATE TABLE table_name_67 (decile VARCHAR, authority VARCHAR, area VARCHAR)"
  },
  {
    "answer": "SELECT SUM(decile) FROM table_name_6 WHERE area = \"waikanae\"",
    "question_en": "What is the total Decile with Waikanae Area?",
    "question_th": "Decile ทั้งหมดกับพื้นที่ Waikanae เป็นเท่าใด",
    "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_en": "What Player with a Place of T10 had a Score of 80-70-72-72=294?",
    "question_th": "ผู้เล่นคนใดที่ได้อันดับ T10 มีคะแนน 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_en": "What was the Money ($) amount for Lloyd Mangrum?",
    "question_th": "จำนวนเงิน ($) สำหรับ Lloyd Mangrum คือเท่าใด",
    "context": "CREATE TABLE table_name_19 (money___$__ VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT money___$__ FROM table_name_20 WHERE player = \"cary middlecoff\"",
    "question_en": "What was the Money ($) amount for Cary Middlecoff?",
    "question_th": "จำนวนเงิน ($) สำหรับ Cary Middlecoff เป็นเท่าใด",
    "context": "CREATE TABLE table_name_20 (money___$__ VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_98 WHERE score = \"5–2\" AND loss = \"lilly (9–9)\"",
    "question_en": "What date was the game with a score of 5–2, and a Loss of lilly (9–9)?",
    "question_th": "เกมวันที่เท่าไหร่ด้วยสกอร์ 5–2 และแพ้ลิลลี่ (9–9)?",
    "context": "CREATE TABLE table_name_98 (date VARCHAR, score VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_38 WHERE score = \"5–4 (11)\"",
    "question_en": "What team was the opponent when there was a score of 5–4 (11)?",
    "question_th": "ทีมใดเป็นคู่ต่อสู้เมื่อมีคะแนน 5–4 (11)?",
    "context": "CREATE TABLE table_name_38 (opponent VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_93 WHERE record = \"47–39\"",
    "question_en": "What date was the game with a record of 47–39?",
    "question_th": "เกมวันที่เท่าไหร่ที่มีสถิติ 47–39?",
    "context": "CREATE TABLE table_name_93 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT year_s__won FROM table_name_78 WHERE player = \"tom watson\"",
    "question_en": "What year did Tom Watson win?",
    "question_th": "Tom Watson ชนะในปีไหน?",
    "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_en": "What is the total number that Tom Watson parred larger than 10?",
    "question_th": "จำนวนทั้งหมดที่ทอม วัตสันพาร์ตได้มากกว่า 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_en": "Which date has a Record of 4-5?",
    "question_th": "วันไหนมีสถิติ 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_en": "Which score has a Loss of gubicza (0-1)?",
    "question_th": "สกอร์ไหนมี แพ้ กูบิชซ่า (0-1)?",
    "context": "CREATE TABLE table_name_66 (score VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_87 WHERE date = \"april 18\"",
    "question_en": "Which loss happened april 18?",
    "question_th": "การสูญเสียใดเกิดขึ้นในวันที่ 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_en": "Which record has an Opponent of orioles and a Date of april 14?",
    "question_th": "บันทึกใดมีฝ่ายตรงข้ามของ orioles และวันที่ 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_en": "Which record has a Date of april 25?",
    "question_th": "บันทึกใดมีวันที่ 25 เมษายน?",
    "context": "CREATE TABLE table_name_96 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_31 WHERE record = \"4-5\"",
    "question_en": "Which opponent has a Record of 4-5?",
    "question_th": "คู่ต่อสู้คนใดมีสถิติ 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_en": "Name the country which has prix uip venezia",
    "question_th": "ตั้งชื่อประเทศที่ได้รับรางวัล 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_en": "Name the nominating festival for director of 2004",
    "question_th": "ตั้งชื่อเทศกาลเสนอชื่อผู้กำกับประจำปี 2547",
    "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_en": "Name the category for prix uip berlin",
    "question_th": "ตั้งชื่อหมวดหมู่สำหรับ 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_en": "Name the nominating festival for un cartus de kent si un pachet de cafea",
    "question_th": "ตั้งชื่อเทศกาลที่ได้รับการเสนอชื่อสำหรับ 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_en": "Name the director of alt i alt",
    "question_th": "ตั้งชื่อผู้อำนวยการของ 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_en": "What's the score of the game they played against a team with a record of 81-54?",
    "question_th": "ในเกมที่พวกเขาเล่นกับทีมที่มีสถิติ 81-54 คะแนนเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_95 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_51 WHERE record = \"84-56\"",
    "question_en": "What game score was there for the team with a record of 84-56?",
    "question_th": "มีสกอร์เกมไหนบ้างสำหรับทีมที่มีสถิติ 84-56?",
    "context": "CREATE TABLE table_name_51 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_65 WHERE city = \"loutraki\"",
    "question_en": "Who is the Winner for the City of Loutraki?",
    "question_th": "ใครคือผู้ชนะของเมือง Loutraki?",
    "context": "CREATE TABLE table_name_65 (winner VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_71 WHERE event = \"ept copenhagen\"",
    "question_en": "What is the Date for the Event ept copenhagen?",
    "question_th": "วันที่จัดงาน pt โคเปนเฮเกนคือวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_71 (date VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_56 WHERE winner = \"john dibella\"",
    "question_en": "What Event did John dibella win?",
    "question_th": "John dibella ชนะรายการใด",
    "context": "CREATE TABLE table_name_56 (event VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT prize FROM table_name_11 WHERE winner = \"benny spindler\"",
    "question_en": "What was the prize for winner benny spindler?",
    "question_th": "รางวัลสำหรับผู้ชนะ เบนนี่ สปินด์เลอร์ คืออะไร?",
    "context": "CREATE TABLE table_name_11 (prize VARCHAR, winner VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_32 WHERE city = \"copenhagen\"",
    "question_en": "What was the Event in the city of copenhagen?",
    "question_th": "เหตุการณ์ในเมืองโคเปนเฮเกนคืออะไร?",
    "context": "CREATE TABLE table_name_32 (event VARCHAR, city VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_45 WHERE prize = \"€850,000\"",
    "question_en": "What was the Event for the prize of €850,000?",
    "question_th": "งานอะไรที่มีเงินรางวัล €850,000?",
    "context": "CREATE TABLE table_name_45 (event VARCHAR, prize VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_2 WHERE player = \"emmet french\"",
    "question_en": "In which place is Emmet French?",
    "question_th": "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_en": "What is the result for Gold Coast when Melbourne and Adelaide are yes, but Perth is no?",
    "question_th": "ผลลัพธ์ของโกลด์โคสต์จะเป็นอย่างไรเมื่อเมลเบิร์นและแอดิเลดใช่ แต่เพิร์ธไม่ใช่",
    "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_en": "What is the result for Melbourne when Adelaide, Sydney, and Perth are yes, and Gold Coast is no?",
    "question_th": "ผลลัพธ์สำหรับเมลเบิร์นจะเป็นอย่างไรเมื่อแอดิเลด ซิดนีย์ และเพิร์ธใช่ และโกลด์โคสต์ไม่ใช่",
    "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_en": "What is the result for Melbourne when Gold Coast, Perth, Auckland, and Sydney are no?",
    "question_th": "ผลลัพธ์สำหรับเมลเบิร์นเมื่อโกลด์โคสต์ เพิร์ธ โอ๊คแลนด์ และซิดนีย์ไม่มีคืออะไร?",
    "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_en": "What is the result for Gold Coast when Adelaide and Perth are yes, but Auckland is no?",
    "question_th": "ผลลัพธ์ของโกลด์โคสต์จะเป็นอย่างไรเมื่อแอดิเลดและเพิร์ธใช่ แต่โอ๊คแลนด์ไม่ใช่",
    "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_en": "What is the result for Gold Coast when Melbourne and Sydney are yes, while Auckland and Perth are no?",
    "question_th": "ผลลัพธ์สำหรับโกลด์โคสต์เมื่อเมลเบิร์นและซิดนีย์ใช่ ในขณะที่โอ๊คแลนด์และเพิร์ธไม่ใช่",
    "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_en": "What is the result for Melbourne when Adelaide is no, and Auckland is yes?",
    "question_th": "ผลลัพธ์สำหรับเมลเบิร์นเมื่อแอดิเลดไม่ใช่ และโอ๊คแลนด์คือใช่?",
    "context": "CREATE TABLE table_name_56 (melbourne VARCHAR, adelaide VARCHAR, auckland VARCHAR)"
  },
  {
    "answer": "SELECT winner FROM table_name_35 WHERE date = \"3 june\"",
    "question_en": "Who won on 3 june?",
    "question_th": "ใครชนะวันที่ 3 มิถุนายน?",
    "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_en": "Which date has a Race Leader of hermann buse ( ger ), and a Stage of 5?",
    "question_th": "วันไหนที่มีผู้นำการแข่งขันของเฮอร์มันน์ บัส ( ger ) และสเตจที่ 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_en": "Which race Leader has a Stage of 7?",
    "question_th": "ผู้นำการแข่งขันคนใดมีสเตจที่ 7?",
    "context": "CREATE TABLE table_name_33 (race_leader VARCHAR, stage VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_68 WHERE stage = \"12\"",
    "question_en": "Which date has a Stage of 12?",
    "question_th": "วันไหนมีสเตจ 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_en": "What was the result for song of the year award in 1994?",
    "question_th": "ผลรางวัลเพลงแห่งปี 2537 เป็นอย่างไร?",
    "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_en": "What was the result for work made by Neil Finn?",
    "question_th": "ผลลัพธ์ของงานที่ทำโดย 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_en": "what is the money for argentina?",
    "question_th": "เงินสำหรับอาร์เจนตินาคืออะไร?",
    "context": "CREATE TABLE table_name_34 (money___ VARCHAR, country VARCHAR)"
  },
  {
    "answer": "SELECT money___$__ FROM table_name_77 WHERE player = \"trevor immelman\"",
    "question_en": "what is the money for trevor immelman?",
    "question_th": "เงินสำหรับเทรเวอร์ อิมเมลมานคือเท่าไหร่?",
    "context": "CREATE TABLE table_name_77 (money___$__ VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_64 WHERE country = \"ireland\"",
    "question_en": "what is the place for ireland?",
    "question_th": "สถานที่สำหรับไอร์แลนด์คืออะไร?",
    "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_en": "What result was a date of 20/03/2008 with leeds as the opponent",
    "question_th": "ผลลัพธ์คือวันที่ 20/03/2551 โดยมีลีดส์เป็นคู่ต่อสู้",
    "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_en": "What was the HT for the game at Stadio Luigi Ferraris?",
    "question_th": "HT ของเกมที่สตาดิโอ ลุยจิ เฟอร์รารีสเป็นอย่างไรบ้าง?",
    "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_en": "What was the HT for the game at Zagreb, with a full-time score of 0-2?",
    "question_th": "HT ของเกมที่ซาเกร็บเป็นอย่างไรบ้าง โดยสกอร์เต็มเวลา 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_en": "What was the competition that was played in Zurich?",
    "question_th": "การแข่งขันที่เล่นในซูริคคืออะไร?",
    "context": "CREATE TABLE table_name_96 (competition VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT first_game FROM table_name_89 WHERE lost > 4",
    "question_en": "When was the first game associated with over 4 losses?",
    "question_th": "เกมแรกเกี่ยวข้องกับการแพ้มากกว่า 4 ครั้งเมื่อใด",
    "context": "CREATE TABLE table_name_89 (first_game VARCHAR, lost INTEGER)"
  },
  {
    "answer": "SELECT MIN(drawn) FROM table_name_39 WHERE played > 39",
    "question_en": "What is the lowest number of games drawn associated with over 39 games played?",
    "question_th": "จำนวนเกมที่น้อยที่สุดที่เสมอกันจากการเล่นมากกว่า 39 เกมคือเท่าใด?",
    "context": "CREATE TABLE table_name_39 (drawn INTEGER, played INTEGER)"
  },
  {
    "answer": "SELECT MAX(lost) FROM table_name_43 WHERE played < 1",
    "question_en": "What is the highest number of losses when there are under 1 games played?",
    "question_th": "จำนวนการแพ้สูงสุดเมื่อเล่นต่ำกว่า 1 เกมคือเท่าใด",
    "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_en": "What location has more than 2 games with 2:56?",
    "question_th": "สถานที่ใดที่มีมากกว่า 2 เกมด้วยเวลา 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_en": "What location has October 10 as date?",
    "question_th": "สถานที่ใดที่มีวันที่ 10 ตุลาคมเป็นวันที่?",
    "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_en": "what is the seats 2006 total with %2001 of 39 and seats 2001 less than 12?",
    "question_th": "จำนวนที่นั่งทั้งหมดในปี 2549 โดยมี %2544 จาก 39 ที่นั่งและปี 2544 น้อยกว่า 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_en": "what is the total number of seats 2006 that has parties and voter turnout in % and whose %2006 is greater than 51.5?",
    "question_th": "จำนวนที่นั่งทั้งหมดในปี 2549 ที่มีพรรคการเมืองและผู้มีสิทธิเลือกตั้งมีจำนวนเป็น % และ %2549 ของใครมากกว่า 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_en": "what is the total number of seats 2001 with seats 2006 more than 10 and voter communities of cdu?",
    "question_th": "จำนวนที่นั่งทั้งหมดในปี 2544 โดยมีที่นั่งในปี 2549 มากกว่า 10 ที่นั่งและชุมชนผู้มีสิทธิเลือกตั้งของ 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–2\"",
    "question_en": "What was the loss of the game when the record was 3–2?",
    "question_th": "อะไรคือความพ่ายแพ้ของเกมเมื่อสถิติอยู่ที่ 3–2?",
    "context": "CREATE TABLE table_name_56 (loss VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_12 WHERE loss = \"shields (1–1)\"",
    "question_en": "Who was the opponent at the game that had a loss of Shields (1–1)?",
    "question_th": "คู่ต่อสู้ในเกมที่แพ้โล่ (1–1) คือใคร?",
    "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_en": "Who is the opponent for Andrew Symonds in the 2004 season?",
    "question_th": "ใครคือคู่ต่อสู้ของแอนดรูว์ ไซมอนด์สในฤดูกาล 2004?",
    "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_en": "Name th country of origin for journey",
    "question_th": "ชื่อประเทศต้นทางสำหรับการเดินทาง",
    "context": "CREATE TABLE table_name_81 (country_of_origin VARCHAR, artist VARCHAR)"
  },
  {
    "answer": "SELECT period_active FROM table_name_42 WHERE artist = \"enya\"",
    "question_en": "Name the period active for enya",
    "question_th": "ตั้งชื่อช่วงเวลาที่ใช้งานอยู่สำหรับ 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_en": "Name the genre for release-year of firsst charted less than 1980 and origin of jamaica",
    "question_th": "ตั้งชื่อประเภทสำหรับปีที่วางจำหน่ายซึ่งติดชาร์ตครั้งแรกน้อยกว่าปี 1980 และต้นกำเนิดของจาเมกา",
    "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_en": "Who is the 2nd member during 1885 election?",
    "question_th": "สมาชิกคนที่ 2 ในระหว่างการเลือกตั้ง พ.ศ. 2428 คือใคร?",
    "context": "CREATE TABLE table_name_31 (election VARCHAR)"
  },
  {
    "answer": "SELECT 1 AS st_party FROM table_name_34 WHERE election = \"1857\"",
    "question_en": "What is the 1st party during the 1857 election?",
    "question_th": "พรรคที่ 1 ในระหว่างการเลือกตั้ง พ.ศ. 2400 คืออะไร?",
    "context": "CREATE TABLE table_name_34 (election VARCHAR)"
  },
  {
    "answer": "SELECT language FROM table_name_8 WHERE percentage___percentage_ = \"2.54\"",
    "question_en": "Which language has the percentage of 2.54?",
    "question_th": "ภาษาใดมีเปอร์เซ็นต์ 2.54",
    "context": "CREATE TABLE table_name_8 (language VARCHAR, percentage___percentage_ VARCHAR)"
  },
  {
    "answer": "SELECT females FROM table_name_66 WHERE language = \"polish\"",
    "question_en": "What is the number of females that has the Polish language?",
    "question_th": "ผู้หญิงที่มีภาษาโปแลนด์มีจำนวนเท่าไร?",
    "context": "CREATE TABLE table_name_66 (females VARCHAR, language VARCHAR)"
  },
  {
    "answer": "SELECT males FROM table_name_13 WHERE females = \"62 331\"",
    "question_en": "What was the number of males that had the number females 62 331?",
    "question_th": "ผู้ชายมีจำนวนผู้หญิง 62 331 กี่คน?",
    "context": "CREATE TABLE table_name_13 (males VARCHAR, females VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_31 WHERE class = \"sophomore\"",
    "question_en": "Which position has a sophomore class?",
    "question_th": "ตำแหน่งใดมีชั้นปีที่สอง?",
    "context": "CREATE TABLE table_name_31 (position VARCHAR, class VARCHAR)"
  },
  {
    "answer": "SELECT MIN(preliminaries) FROM table_name_94 WHERE evening_gown = 8.472",
    "question_en": "What is the lowest Preliminary score of a contestant that has an Evening Gown score of 8.472?",
    "question_th": "คะแนนเบื้องต้นต่ำสุดของผู้เข้าแข่งขันที่ได้คะแนนชุดราตรี 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–20\"",
    "question_en": "Which Set 3 has a Set 1 of 25–20?",
    "question_th": "ชุดที่ 3 ใดมีชุดที่ 1 จาก 25–20",
    "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–19\"",
    "question_en": "Which Set 3 has a Time of 10:00, and a Set 2 of 25–19?",
    "question_th": "ชุดที่ 3 ใดมีเวลา 10:00 น. และชุดที่ 2 จาก 25–19",
    "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–25\"",
    "question_en": "Which Set 1 has a Set 3 of 16–25?",
    "question_th": "ชุดที่ 1 ใดมีชุดที่ 3 จาก 16–25",
    "context": "CREATE TABLE table_name_25 (set_1 VARCHAR, set_3 VARCHAR)"
  },
  {
    "answer": "SELECT set_3 FROM table_name_56 WHERE score = \"0–3\" AND time = \"18:30\" AND date = \"july 10\"",
    "question_en": "Which Set 3 has a Score of 0–3, a Time of 18:30, and a Date of july 10?",
    "question_th": "ชุดที่ 3 ใดมีคะแนน 0–3 เวลา 18:30 น. และวันที่ 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–25\" AND total = \"48–75\"",
    "question_en": "Which score has a Set 2 of 17–25, and a Total of 48–75?",
    "question_th": "คะแนนใดมีชุดที่ 2 จาก 17–25 และคะแนนรวม 48–75",
    "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–2\" AND total = \"113–102\"",
    "question_en": "Which set 3 has a Time of 10:00, and a Score of 3–2, and a Total of 113–102?",
    "question_th": "เซต 3 ใดมีเวลา 10:00 น. และคะแนน 3–2 และคะแนนรวม 113–102",
    "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_en": "Is it live or studio before 1983?",
    "question_th": "มันเป็นการแสดงสดหรือสตูดิโอก่อนปี 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_en": "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?",
    "question_th": "รางวัลที่ 1 ทั้งหมด ($) ที่มีประเทศสหรัฐอเมริกามีคะแนนต่ำกว่า 271 และในหนึ่งปีหลังจากปี 1964 กับผู้ชนะของ 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_en": "What is the round for marcus howard?",
    "question_th": "มาร์คัส ฮาวเวิร์ด จะไปรอบไหน?",
    "context": "CREATE TABLE table_name_32 (round INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT MAX(laps) FROM table_name_89 WHERE finish = \"30\"",
    "question_en": "What is the highest laps with a 30 finish?",
    "question_th": "รอบสูงสุดเมื่อจบ 30 รอบคือเท่าไร?",
    "context": "CREATE TABLE table_name_89 (laps INTEGER, finish VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_34 WHERE qual = \"150.163\"",
    "question_en": "What is the rank of the 150.163 qual?",
    "question_th": "อันดับ 150.163 รอบคัดเลือกอยู่ที่เท่าไร?",
    "context": "CREATE TABLE table_name_34 (rank VARCHAR, qual VARCHAR)"
  },
  {
    "answer": "SELECT MIN(laps) FROM table_name_34 WHERE qual = \"142.744\"",
    "question_en": "What is the lowest laps with a 142.744 qual?",
    "question_th": "รอบต่ำสุดด้วยรอบคัดเลือก 142.744 คืออะไร?",
    "context": "CREATE TABLE table_name_34 (laps INTEGER, qual VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_25 WHERE laps < 160 AND rank = \"26\"",
    "question_en": "What year had less than 160 laps and a rank of 26?",
    "question_th": "ปีใดมีรอบน้อยกว่า 160 รอบและอันดับ 26?",
    "context": "CREATE TABLE table_name_25 (year VARCHAR, laps VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT khmer FROM table_name_40 WHERE other = \"soun\"",
    "question_en": "for the other of soun, what's the khmer?",
    "question_th": "ส่วนอีกเสียง ภาษาเขมรคืออะไร?",
    "context": "CREATE TABLE table_name_40 (khmer VARCHAR, other VARCHAR)"
  },
  {
    "answer": "SELECT khmer FROM table_name_20 WHERE other = \"mouy\"",
    "question_en": "for the other of mouy, what's the khmer?",
    "question_th": "สำหรับมอยอีกตัวหนึ่ง ภาษาเขมรคืออะไร?",
    "context": "CREATE TABLE table_name_20 (khmer VARCHAR, other VARCHAR)"
  },
  {
    "answer": "SELECT language FROM table_name_14 WHERE director = \"hans kristensen\"",
    "question_en": "What is the language of the film directed by Hans Kristensen?",
    "question_th": "ภาพยนตร์ที่กำกับโดย 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_en": "What is the original title of the film for which Dersu Uzala was nominated?",
    "question_th": "ชื่อดั้งเดิมของภาพยนตร์ที่ Dersu Uzala ได้รับการเสนอชื่อคืออะไร?",
    "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_en": "What is Argentina's language?",
    "question_th": "ภาษาของอาร์เจนตินาคืออะไร?",
    "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_en": "What chassis did Jolly Club Spa used after 1985?",
    "question_th": "Jolly Club Spa ใช้แชสซีอะไรหลังปี 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_en": "What engine was paired with Minardi m187?",
    "question_th": "เครื่องยนต์อะไรจับคู่กับ 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_en": "What is the highest points with g Tyres and Minardi m187?",
    "question_th": "จุดสูงสุดของ g Tyres และ 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_en": "What Chassis has g Tyres before 1987?",
    "question_th": "แชสซีใดมี g Tyres ก่อนปี 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_en": "How many years were g Tyres and Minardi m187 used?",
    "question_th": "g Tyres และ Minardi m187 ใช้งานกี่ปี?",
    "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_en": "What engine what in the vehicle when adt champion racing ranked in 1st place?",
    "question_th": "เครื่องยนต์อะไรในรถอะไรเมื่อแอดแชมป์เรซซิ่งติดอันดับที่ 1?",
    "context": "CREATE TABLE table_name_21 (engine VARCHAR, rank VARCHAR, entrant VARCHAR)"
  },
  {
    "answer": "SELECT chassis FROM table_name_18 WHERE rank = \"18th\"",
    "question_en": "What Chassis ranked 18th?",
    "question_th": "แชสซีใดอันดับที่ 18?",
    "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_en": "What was the class when adt champion racing ranked 1st with an audi r8 chassis, and less than 206 points?",
    "question_th": "อะไรคือคลาสเมื่อ adt Champion Racing ครองอันดับ 1 ด้วยแชสซี audi r8 และน้อยกว่า 206 คะแนน",
    "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_en": "Who were the winner and nominees in 2001?",
    "question_th": "ใครคือผู้ชนะและผู้ได้รับการเสนอชื่อในปี 2544?",
    "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_en": "Who is nominated for the film Rugrats Go Wild?",
    "question_th": "ใครได้รับการเสนอชื่อเข้าชิงภาพยนตร์เรื่อง 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_en": "How many goals did he score with under 26 appearances for werder bremen?",
    "question_th": "เขายิงได้กี่ประตูจากการลงเล่น 26 นัดให้กับแวร์เดอร์ เบรเมน?",
    "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_en": "How many goals did he have in the bundesliga with under 7 appearances?",
    "question_th": "เขาทำได้กี่ประตูในบุนเดสลีกาโดยลงเล่นต่ำกว่า 7 นัด?",
    "context": "CREATE TABLE table_name_32 (goals INTEGER, competition VARCHAR, apps VARCHAR)"
  },
  {
    "answer": "SELECT season FROM table_name_91 WHERE apps = 7",
    "question_en": "What season did he have 7 appearances?",
    "question_th": "เขาลงเล่น 7 นัดในฤดูกาลไหน?",
    "context": "CREATE TABLE table_name_91 (season VARCHAR, apps VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_71 WHERE score = 73 - 71 = 144",
    "question_en": "What is the to par for the score 73-71=144?",
    "question_th": "คะแนนพาร์ 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_en": "What area did Julius Boros play at?",
    "question_th": "จูเลียส โบรอส เล่นที่โซนไหน?",
    "context": "CREATE TABLE table_name_92 (place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_2 WHERE score = 74 - 70 = 144",
    "question_en": "What country  has a score of 74-70=144",
    "question_th": "ประเทศใดมีคะแนน 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_en": "Which of the Canterbury has a Central District of 276* M.D. Crowe & P.S. Briasco V (C) 1986/87?",
    "question_th": "Canterbury แห่งใดมีเขตศูนย์กลางอยู่ที่ 276* MD Crowe และ PS 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_en": "What is Auckland thats got Otago of 184 R.C. Blunt & W. Hawksworth V (C) 1931/32?",
    "question_th": "โอ๊คแลนด์คืออะไรที่มี Otago จาก 184 RC 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_en": "What tournament was after 2009?",
    "question_th": "การแข่งขันอะไรหลังจากปี 2009?",
    "context": "CREATE TABLE table_name_8 (tournament VARCHAR, year INTEGER)"
  },
  {
    "answer": "SELECT event FROM table_name_16 WHERE venue = \"chihuahua, mexico\"",
    "question_en": "What event was held in Chihuahua, Mexico?",
    "question_th": "งานอะไรจัดขึ้นที่เมืองชีวาวา ประเทศเม็กซิโก?",
    "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_en": "Can you tell me the sun of Population that has the Country/Region of hong kong, and the Rank smaller than 2?",
    "question_th": "คุณช่วยบอกฉันเกี่ยวกับดวงอาทิตย์ของประชากรที่มีประเทศ/ภูมิภาคของฮ่องกงและอันดับน้อยกว่า 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_en": "Who is the manager with the Hewlett-Packard shirt sponsor?",
    "question_th": "ใครคือผู้จัดการทีมสปอนเซอร์เสื้อฮิวเลตต์-แพคการ์ด?",
    "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_en": "Who is the captain of the team that has a kit manufacturer of Fox Leisure?",
    "question_th": "ใครคือกัปตันทีมที่มีผู้ผลิตชุดอุปกรณ์ของ 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_en": "One2one is the shirt sponsor for the captain of what team?",
    "question_th": "One2one เป็นสปอนเซอร์เสื้อกัปตันทีมอะไรครับ?",
    "context": "CREATE TABLE table_name_79 (captain VARCHAR, shirt_sponsor VARCHAR)"
  },
  {
    "answer": "SELECT kit_manufacturer FROM table_name_50 WHERE captain = \"gareth southgate\"",
    "question_en": "What company is the kit manufacturer that Gareth Southgate belongs to?",
    "question_th": "บริษัทใดเป็นผู้ผลิตชุดอุปกรณ์ของแกเร็ธ เซาธ์เกต?",
    "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_en": "for the tournament of world amateur championship what was the result in 2010?",
    "question_th": "สำหรับการแข่งขันชิงแชมป์โลกสมัครเล่น ผลการแข่งขันในปี 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_en": "Which location had a race that took place on 22 July 2011 and has a rank greater than 8?",
    "question_th": "สถานที่ใดที่มีการแข่งขันเกิดขึ้นเมื่อวันที่ 22 กรกฎาคม 2554 และมีอันดับมากกว่า 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_en": "How many gold medals for the school with 2 total medals and under 0 bronzes?",
    "question_th": "โรงเรียนได้กี่เหรียญทอง รวม 2 เหรียญ และต่ำกว่า 0 เหรียญทองแดง",
    "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_en": "How many gold medals for bellbrook HS with less than 1 silver?",
    "question_th": "Bellbrook HS น้อยกว่า 1 เหรียญเงิน ได้กี่เหรียญทอง?",
    "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_en": "How many silvers for a school with 2 golds and over 2 total?",
    "question_th": "โรงเรียนที่มี 2 เหรียญทองและมากกว่า 2 เหรียญทองได้กี่เหรียญ?",
    "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_en": "How many gold medals for the school with less than 1 total?",
    "question_th": "โรงเรียนที่ได้เหรียญทองรวมไม่ถึง 1 เหรียญมีกี่เหรียญทอง?",
    "context": "CREATE TABLE table_name_43 (gold_medals VARCHAR, total_medals INTEGER)"
  },
  {
    "answer": "SELECT entrant FROM table_name_76 WHERE year = 1967",
    "question_en": "What is the entrant for 1967?",
    "question_th": "ผู้เข้าร่วมในปี 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_en": "What ist he entrant later than 1963 with an eagle MK1 chassis?",
    "question_th": "เขาเข้ามาทำอะไรในช่วงปลายปี 1963 ด้วยแชสซี Eagle MK1?",
    "context": "CREATE TABLE table_name_11 (entrant VARCHAR, year VARCHAR, chassis VARCHAR)"
  },
  {
    "answer": "SELECT entrant FROM table_name_65 WHERE pts = \"0\"",
    "question_en": "What is the entrant that has 0 points?",
    "question_th": "ผู้เข้าร่วมที่มี 0 คะแนนคืออะไร?",
    "context": "CREATE TABLE table_name_65 (entrant VARCHAR, pts VARCHAR)"
  },
  {
    "answer": "SELECT MIN(year) FROM table_name_33 WHERE pts = \"16\"",
    "question_en": "What is the earliest year with 16 points?",
    "question_th": "ปีแรกสุดที่มี 16 คะแนนคือปีใด?",
    "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_en": "Name the venue for margin less than 66 and opponent of north queensland cowboys",
    "question_th": "ตั้งชื่อสถานที่สำหรับระยะขอบน้อยกว่า 66 และคู่ต่อสู้ของคาวบอยควีนส์แลนด์ตอนเหนือ",
    "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_en": "Name the sum of year for penrith panthers opponent",
    "question_th": "ตั้งชื่อผลรวมของปีสำหรับคู่ต่อสู้ของเพนริธแพนเทอร์",
    "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_en": "Name the opponent for 1996 at the mt smart stadium venue",
    "question_th": "ตั้งชื่อคู่ต่อสู้ในปี 1996 ที่สนามเอ็มที สมาร์ท สเตเดียม",
    "context": "CREATE TABLE table_name_52 (opponent VARCHAR, venue VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT AVG(year) FROM table_name_95 WHERE margin = 46",
    "question_en": "Name the average year for 46 margin",
    "question_th": "ตั้งชื่อปีเฉลี่ยสำหรับมาร์จิ้น 46",
    "context": "CREATE TABLE table_name_95 (year INTEGER, margin VARCHAR)"
  },
  {
    "answer": "SELECT margin FROM table_name_89 WHERE year = 2002",
    "question_en": "Name the margin for 2002",
    "question_th": "ตั้งชื่อส่วนต่างสำหรับปี 2545",
    "context": "CREATE TABLE table_name_89 (margin VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT affiliation FROM table_name_54 WHERE enrollment > 502",
    "question_en": "Which Affiliation has an Enrollement larger than 502?",
    "question_th": "สังกัดใดมีการลงทะเบียนมากกว่า 502?",
    "context": "CREATE TABLE table_name_54 (affiliation VARCHAR, enrollment INTEGER)"
  },
  {
    "answer": "SELECT school FROM table_name_76 WHERE enrollment < 301",
    "question_en": "What School has an Enrollement smaller than 301?",
    "question_th": "โรงเรียนใดมีการลงทะเบียนน้อยกว่า 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_en": "Which Grades has an Enrollment larger htan 443 with a Student body of Co-ed?",
    "question_th": "เกรดใดที่มีการลงทะเบียนมากกว่า htan 443 พร้อมด้วยนักศึกษา 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_en": "What's the Student Body with an Affiliation of Roman Catholic and has an Enrollment of 502?",
    "question_th": "คณะนักเรียนที่สังกัดนิกายโรมันคาทอลิกและมีการลงทะเบียน 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_en": "What is the average year that has a final Tour position of 54 and a final Vuelta position over 55?",
    "question_th": "ปีเฉลี่ยที่มีตำแหน่งทัวร์รอบสุดท้ายที่ 54 และตำแหน่งวูเอลตาสุดท้ายมากกว่า 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_en": "What is the final Vuelta position associated with a final Giro position over 39 and a final Tour position of 90?",
    "question_th": "ตำแหน่งวูเอลตาสุดท้ายที่เกี่ยวข้องกับตำแหน่ง Giro สุดท้ายที่มากกว่า 39 และตำแหน่งทัวร์รอบสุดท้ายที่ 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_en": "How many Giro positions are associated with the year 1971 and Tour final positions over 50?",
    "question_th": "มีกี่ตำแหน่ง Giro ที่เกี่ยวข้องกับปี 1971 และตำแหน่งสุดท้ายของ Tour มากกว่า 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_en": "How many laps did the rider Alex Baldolini take?",
    "question_th": "Alex Baldolini นักบิดใช้เวลากี่รอบ?",
    "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_en": "How many laps were completed in the time of +7.213 with a grid number larger than 7?",
    "question_th": "เสร็จสิ้นกี่รอบในเวลา +7.213 โดยมีจำนวนกริดมากกว่า 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_en": "What is total number of laps for bikes manufactured by KTM with a time of +3.578 and a grid number larger than 4?",
    "question_th": "จำนวนรอบรวมสำหรับจักรยานยนต์ที่ผลิตโดย KTM ด้วยเวลา +3.578 และจำนวนกริดมากกว่า 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_en": "What was the surface for the May 10, 2009 tournament?",
    "question_th": "พื้นผิวของทัวร์นาเมนต์วันที่ 10 พฤษภาคม 2552 เป็นอย่างไรบ้าง?",
    "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_en": "Which co-driver has fewer than 282 laps and type P tyres?",
    "question_th": "ผู้ขับร่วมคนใดมีรอบน้อยกว่า 282 รอบและยางประเภท P?",
    "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_en": "Which class more recent than 1988 has G tyres?",
    "question_th": "คลาสไหนใหม่กว่าปี 1988 ที่มียาง G?",
    "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_en": "What is the greatest number of caps for Bruce Djite?",
    "question_th": "Bruce Djite ติดแคปได้มากที่สุดคือเท่าไร?",
    "context": "CREATE TABLE table_name_54 (caps INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT goals FROM table_name_54 WHERE player = \"eugene galeković\"",
    "question_en": "How many goals were scored by Eugene Galeković?",
    "question_th": "ยูจีน กาเลโควิช ยิงได้กี่ประตู?",
    "context": "CREATE TABLE table_name_54 (goals VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT goals FROM table_name_45 WHERE caps > 16",
    "question_en": "How many goals were scored by players with more than 16 caps?",
    "question_th": "ผู้เล่นที่ติดทีมชาติมากกว่า 16 นัดทำประตูได้กี่ประตู?",
    "context": "CREATE TABLE table_name_45 (goals VARCHAR, caps INTEGER)"
  },
  {
    "answer": "SELECT MAX(rank) FROM table_name_75 WHERE nationality = \"netherlands\"",
    "question_en": "What is the highest place of a swimmer from the Netherlands?",
    "question_th": "สถานที่ที่สูงที่สุดของนักว่ายน้ำจากประเทศเนเธอร์แลนด์คืออะไร?",
    "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_en": "Name the authority for te akau with roll less than 254 and decile of 8",
    "question_th": "ตั้งชื่อผู้มีอำนาจสำหรับ te akau ด้วยทอยน้อยกว่า 254 และเดซิลของ 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_en": "Tell me the name with decile of 6 and roll of 93",
    "question_th": "บอกชื่อด้วยเดซิล 6 และทอย 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_en": "What is the result of the match on January 26, 2006?",
    "question_th": "ผลการแข่งขันวันที่ 26 มกราคม 2549 เป็นอย่างไรบ้าง?",
    "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_en": "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?",
    "question_th": "สถานะของ Bluetooth สำหรับรุ่นที่เปิดตัวหลังปี 2004 โดยมี ROM (MiB) 128 และ Wifi 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_en": "What is the RAM (MiB) value for the X30 Mid-Range model?",
    "question_th": "ค่า RAM (MiB) สำหรับรุ่น X30 Mid-Range คืออะไร?",
    "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_en": "How many points did the team with more than 68 games, 4 ties, and more than 272 goals against have?",
    "question_th": "ทีมที่มีมากกว่า 68 เกม 4 เสมอ และมากกว่า 272 ประตูมีกี่แต้ม?",
    "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_en": "Which event had the time 45.74?",
    "question_th": "เหตุการณ์ใดมีเวลา 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_en": "What was the time of December 15, 2010?",
    "question_th": "วันที่ 15 ธันวาคม 2553 เป็นเวลาเท่าใด",
    "context": "CREATE TABLE table_name_3 (time VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_name_89 WHERE time = \"45.74\"",
    "question_en": "What were the notes for the time 45.74?",
    "question_th": "บันทึกย่อสำหรับเวลา 45.74 คืออะไร",
    "context": "CREATE TABLE table_name_89 (notes VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_61 WHERE tries = 23",
    "question_en": "What Player has 23 Tries?",
    "question_th": "ผู้เล่นคนใดมี 23 ครั้ง?",
    "context": "CREATE TABLE table_name_61 (player VARCHAR, tries VARCHAR)"
  },
  {
    "answer": "SELECT goals FROM table_name_89 WHERE player = \"matt cook\"",
    "question_en": "How many Goals did Matt Cook have?",
    "question_th": "Matt Cook มีเป้าหมายกี่ประตู?",
    "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_en": "What Full Back Player has 0 Apps?",
    "question_th": "ผู้เล่นฟูลแบ็คคนไหนที่มี 0 แอพ?",
    "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_en": "With 0 Goals and less than 1 Tries, what is Matt James position?",
    "question_th": "ด้วย 0 ประตูและน้อยกว่า 1 ครั้ง ตำแหน่งของ Matt James คืออะไร?",
    "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_en": "What is the earliest round drafted for a University of Southern California player?",
    "question_th": "รอบแรกสุดที่ร่างไว้สำหรับผู้เล่นจาก University of Southern California คืออะไร?",
    "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_en": "What round drafted was the 1b and a Signed of no cardinals - 1969 june?",
    "question_th": "1b และไม่มีพระคาร์ดินัลลงนามในรอบใด - 1969 มิถุนายน?",
    "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_en": "Which event has an Opponent of akihiro gono, and a Method of decision?",
    "question_th": "เหตุการณ์ใดมีฝ่ายตรงข้ามของอากิฮิโระ โกโนะ และวิธีการตัดสินใจ?",
    "context": "CREATE TABLE table_name_60 (event VARCHAR, opponent VARCHAR, method VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_84 WHERE opponent = \"masanori suda\"",
    "question_en": "Which location has an Opponent of masanori suda?",
    "question_th": "ตำแหน่งใดที่มีฝ่ายตรงข้ามของมาซาโนริสุดะ?",
    "context": "CREATE TABLE table_name_84 (location VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_46 WHERE time = \"1:34\"",
    "question_en": "Which opponent has a Time of 1:34?",
    "question_th": "คู่ต่อสู้คนไหนมีเวลา 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_en": "Which event resulted in loss with an Opponent of maurice smith?",
    "question_th": "เหตุการณ์ใดส่งผลให้ฝ่ายตรงข้ามของมอริซ สมิธพ่ายแพ้?",
    "context": "CREATE TABLE table_name_52 (event VARCHAR, res VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT gold FROM table_name_97 WHERE bronze = \"↓ 1\" AND sport = \"cycling\"",
    "question_en": "What is the winner of gold  that also has ↓ 1 in the sport of cycling?",
    "question_th": "ผู้ชนะเหรียญทองที่มี ↓ 1 ในกีฬาปั่นจักรยานคืออะไร?",
    "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_en": "What is the most recent year that Gulf Racing Middle East won?",
    "question_th": "ล่าสุด Gulf Racing Middle East ชนะคือปีไหน?",
    "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_en": "What is the class of the co-driver emanuele pirro jj lehto?",
    "question_th": "เอ็มมานูเอเล ปิร์โร 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_en": "What was the final position of Arena Motorsports International?",
    "question_th": "ตำแหน่งสุดท้ายของ 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_en": "Who was the Co-Driver of the winner of 1992's race?",
    "question_th": "ใครคือผู้ร่วมขับของผู้ชนะการแข่งขันในปี 1992?",
    "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_en": "What is the score in the final with runner-up as the outcome and hard (i) as the surface?",
    "question_th": "คะแนนในรอบชิงชนะเลิศเป็นเท่าใด โดยรองชนะเลิศเป็นผลลัพธ์ และยาก (i) เป็นพื้นผิว?",
    "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_en": "What is the 1st leg score when US Mbila Nzambi is team 1?",
    "question_th": "สกอร์นัดแรกเป็นเท่าไหร่เมื่อ ยูเอส เอ็มบีลา นัมซัมบี เป็นทีม 1?",
    "context": "CREATE TABLE table_name_3 (team_1 VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_16 WHERE date = \"may 20\"",
    "question_en": "Who was the opponent on May 20?",
    "question_th": "คู่ต่อสู้ในวันที่ 20 พฤษภาคมคือใคร?",
    "context": "CREATE TABLE table_name_16 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_85 WHERE date = \"may 25\"",
    "question_en": "Who took the loss on May 25?",
    "question_th": "ใครเป็นผู้ขาดทุนในวันที่ 25 พฤษภาคม?",
    "context": "CREATE TABLE table_name_85 (loss VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_74 WHERE score = \"2-3\"",
    "question_en": "What was the record after the game that ended in a 2-3 loss?",
    "question_th": "หลังจากจบเกมที่จบลงด้วยการแพ้ 2-3 สถิติเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_74 (record VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_25 WHERE loss = \"politte (0-2)\"",
    "question_en": "What was the date of the game that had a loss of Politte (0-2)?",
    "question_th": "เกมที่แพ้ โพลิตต์ (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_en": "Who was the opponent at the game that had a loss of Hendrickson (0-1)?",
    "question_th": "คู่ต่อสู้ในเกมที่แพ้เฮนดริกสัน (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_en": "What was the smallest attendance at a game when the record was 7-15?",
    "question_th": "อะไรคือจำนวนผู้ชมที่น้อยที่สุดในเกมเมื่อสถิติคือ 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_en": "What was the average attendance at a game when the record was 6-13?",
    "question_th": "ผู้เข้าร่วมโดยเฉลี่ยในเกมเมื่อบันทึกคือ 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_−1__ < 0.301 AND half_life__s_ = 22.72 AND group > 2",
    "question_en": "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?",
    "question_th": "ผลผลิต นิวตรอนต่อฟิชชันของกลุ่มที่มีค่าคงที่การสลายตัวน้อยกว่า 0.301 ครึ่งชีวิต 22.72 และหมายเลขหมู่มากกว่า 2 คืออะไร",
    "context": "CREATE TABLE table_name_77 (_neutrons_per_fission VARCHAR, yield INTEGER, group VARCHAR, decay_constant__s_−1__ VARCHAR, half_life__s_ VARCHAR)"
  },
  {
    "answer": "SELECT MAX(overall) FROM table_name_38 WHERE round = 3 AND pick__number > 10",
    "question_en": "With Round 3 and Pick # over 10, what is the higher Overall number?",
    "question_th": "เมื่อยกที่ 3 และเลือก # มากกว่า 10 หมายเลขรวมที่สูงกว่าคือเท่าใด",
    "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_en": "What is the highest round for College of Nebraska if the Overall is under 190?",
    "question_th": "รอบสูงสุดสำหรับ College of Nebraska คือเมื่อคะแนนรวมต่ำกว่า 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_en": "Which college has a Pick # 1, Overall more than one, and Round is 7?",
    "question_th": "วิทยาลัยใดมี Pick # 1 รวมมากกว่าหนึ่ง และรอบคือ 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_en": "What was the attendance on 21 August 2004?",
    "question_th": "วันที่ 21 สิงหาคม 2547 มีผู้เข้าร่วมเป็นอย่างไรบ้าง",
    "context": "CREATE TABLE table_name_43 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT AVG(rank) FROM table_name_76 WHERE time > 53.38",
    "question_en": "What is the average rank of an athlete that holds a time higher than 53.38?",
    "question_th": "อันดับเฉลี่ยของนักกีฬาที่ครองเวลาสูงกว่า 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_en": "What lane did the swimmer with a time of 52.84 have?",
    "question_th": "นักว่ายน้ำที่ทำเวลา 52.84 เลนได้เลนไหน?",
    "context": "CREATE TABLE table_name_43 (lane INTEGER, time VARCHAR)"
  },
  {
    "answer": "SELECT MAX(lane) FROM table_name_57 WHERE rank = 3",
    "question_en": "What lane did the rank 3 swimmer use?",
    "question_th": "นักว่ายน้ำอันดับ 3 ใช้เลนใด?",
    "context": "CREATE TABLE table_name_57 (lane INTEGER, rank VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_3 WHERE date = \"july 15\"",
    "question_en": "Which opponent played on July 15?",
    "question_th": "คู่ต่อสู้คนไหนเล่นในวันที่ 15 กรกฎาคม?",
    "context": "CREATE TABLE table_name_3 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT place FROM table_name_94 WHERE player = \"jimmy demaret\"",
    "question_en": "Where has Jimmy Demaret as a player?",
    "question_th": "Jimmy Demaret ในฐานะผู้เล่นอยู่ที่ไหน?",
    "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_en": "How much does it cost for United States and Byron nelson?",
    "question_th": "ราคาเท่าไหร่สำหรับสหรัฐอเมริกาและไบรอนเนลสัน?",
    "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_en": "Which Country has a Place of t8 and byron nelson?",
    "question_th": "ประเทศใดมีสถานที่ของ t8 และ byron nelson?",
    "context": "CREATE TABLE table_name_11 (country VARCHAR, place VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT AVG(pop_¹) FROM table_name_75 WHERE region = \"chūgoku\" AND prefecture = \"okayama\"",
    "question_en": "Name the average pop for chūgoku and prefecture of okayama",
    "question_th": "ตั้งชื่อป๊อปเฉลี่ยสำหรับchūgokuและจังหวัดโอกายามะ",
    "context": "CREATE TABLE table_name_75 (pop_¹ INTEGER, region VARCHAR, prefecture VARCHAR)"
  },
  {
    "answer": "SELECT MAX(pop_¹) FROM table_name_11 WHERE prefecture = \"tottori\"",
    "question_en": "Name the highest pop for tottori",
    "question_th": "ตั้งชื่อป๊อปสูงสุดสำหรับทตโตริ",
    "context": "CREATE TABLE table_name_11 (pop_¹ INTEGER, prefecture VARCHAR)"
  },
  {
    "answer": "SELECT SUM(pop_¹) FROM table_name_13 WHERE prefecture = \"shizuoka\"",
    "question_en": "Name the sum of pop for shizuoka",
    "question_th": "ตั้งชื่อผลรวมของป๊อปสำหรับชิซูโอกะ",
    "context": "CREATE TABLE table_name_13 (pop_¹ INTEGER, prefecture VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(pop_¹) FROM table_name_10 WHERE prefecture = \"ibaraki\"",
    "question_en": "Name the total number of pop for ibaraki",
    "question_th": "ตั้งชื่อจำนวนป๊อปทั้งหมดสำหรับอิบารากิ",
    "context": "CREATE TABLE table_name_10 (pop_¹ VARCHAR, prefecture VARCHAR)"
  },
  {
    "answer": "SELECT mascot FROM table_name_16 WHERE location = \"mishawaka\"",
    "question_en": "Who is the mascot for Mishawaka?",
    "question_th": "มาสคอตของมิชาวากาคือใคร?",
    "context": "CREATE TABLE table_name_16 (mascot VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT previous_conference FROM table_name_67 WHERE school = \"penn\"",
    "question_en": "Which previous conference is associated with Penn school?",
    "question_th": "การประชุมครั้งก่อนๆ ใดที่เกี่ยวข้องกับโรงเรียนเพนน์",
    "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_en": "Which location is in 71 St. Joseph county with South Bend Washington school?",
    "question_th": "สถานที่ใดอยู่ใน 71 St. Joseph County กับโรงเรียน South Bend Washington",
    "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_en": "What is the mascot for South Bend Clay?",
    "question_th": "มาสคอตของ 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_en": "What was the address of the building with architects Edmund Woolley and Andrew Hamilton?",
    "question_th": "ที่อยู่ของอาคารร่วมกับสถาปนิก Edmund Woolley และ 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_en": "How many years as tallest building was the Tenth Presbyterian Church?",
    "question_th": "อาคารที่สูงที่สุดคือโบสถ์เพรสไบทีเรียนที่สิบกี่ปี",
    "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_en": "How many years as tallest building was Independence Hall?",
    "question_th": "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_en": "What is the height of the Tenth Presbyterian Church?",
    "question_th": "โบสถ์เพรสไบทีเรียนที่สิบสูงเท่าไร?",
    "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_en": "For the Loss of Plesac (1-5), what is the Record?",
    "question_th": "สำหรับการสูญเสีย Plesac (1-5) บันทึกคืออะไร?",
    "context": "CREATE TABLE table_name_63 (record VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_18 WHERE loss = \"plesac (1-5)\"",
    "question_en": "For the Loss of Plesac (1-5), what is the Record?",
    "question_th": "สำหรับการสูญเสีย Plesac (1-5) บันทึกคืออะไร?",
    "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_en": "Name the entrant for year less than 1990 and chassis of eurobrun er189",
    "question_th": "ตั้งชื่อผู้เข้าแข่งขันในปีที่ต่ำกว่า 1990 และแชสซีของ 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_en": "Name the engine for years before 1990 and chassis of eurobrun er189",
    "question_th": "ตั้งชื่อเครื่องยนต์ก่อนปี 1990 และแชสซีของ 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_en": "With games started smaller than 16 plus receptions of 51, what is the smallest amount of touchdowns listed?",
    "question_th": "เมื่อเกมเริ่มน้อยกว่า 16 ครั้งบวกกับการรับ 51 ครั้ง รายการทัชดาวน์ที่น้อยที่สุดคือเท่าใด",
    "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_en": "What are the highest number of games played that had game starts of 10, receptions of 6 and fumbles smaller than 3?",
    "question_th": "อะไรคือจำนวนเกมที่เล่นมากที่สุดโดยเริ่มเกมด้วย 10 นัด รับได้ 6 และคลำได้น้อยกว่า 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_en": "When was the location 15km NW of Pol-E Khomri, the circumstaances IED and the casualties of 1 WIA?",
    "question_th": "สถานที่ซึ่งอยู่ห่างจาก Pol-E Khomri ไปทางทิศเหนือ 15 กม. สถานการณ์ IED และผู้บาดเจ็บล้มตายของ 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_en": "When was the incident in Pol-E Khomri?",
    "question_th": "เหตุเกิดที่ พล.อ.คมรี เมื่อไหร่?",
    "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_en": "What was the incident in imam sahib area, kunduz province?",
    "question_th": "เหตุเกิดที่บริเวณอิหม่ามซาฮิบ จังหวัดคุนดุซ เป็นอย่างไร?",
    "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_en": "What gender has Romanized name and kim yoon-yeong?",
    "question_th": "ชื่อโรมันและคิม ยุนยองเป็นเพศอะไร",
    "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_en": "What year did Willis McGahee play fewer than 15 games with the Baltimore Ravens?",
    "question_th": "Willis McGahee เล่นเกมกับ Baltimore Ravens น้อยกว่า 15 เกมในปีใด",
    "context": "CREATE TABLE table_name_97 (year INTEGER, team VARCHAR, games VARCHAR)"
  },
  {
    "answer": "SELECT MIN(games) FROM table_name_81 WHERE year > 2013",
    "question_en": "After the 2013 season, what was the fewest number of games that Willis McGahee played in a single season?",
    "question_th": "หลังฤดูกาล 2013 วิลลิส แม็คกาฮีลงเล่นในหนึ่งฤดูกาลจำนวนเกมน้อยที่สุดคือเท่าใด",
    "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_en": "What is the result when the competition was the 2006 fifa world cup qualifier, and a Venue of warner park sporting complex, bassaterre?",
    "question_th": "ผลการแข่งขันจะเป็นอย่างไรเมื่อการแข่งขันฟุตบอลโลกรอบคัดเลือก 2006 และสถานที่จัดงานวอร์เนอร์ พาร์ค สปอร์ติ้ง คอมเพล็กซ์ บาสซาแตร์?",
    "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–3\"",
    "question_en": "What is the name of the venue when the competition was friendly, with a Result of 2–3?",
    "question_th": "ชื่อสถานที่เมื่อเป็นการแข่งขันกระชับมิตร โดยผลการแข่งขัน 2–3 คืออะไร?",
    "context": "CREATE TABLE table_name_98 (venue VARCHAR, competition VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_21 WHERE score = \"5–0\" AND competition = \"2007 caribbean cup qualifier\"",
    "question_en": "What is the name of the venue when the score was 5–0, and a Competition of 2007 caribbean cup qualifier?",
    "question_th": "สถานที่จัดงานเมื่อสกอร์เป็น 5–0 และการแข่งขันรอบคัดเลือกแคริบเบียนคัพ 2007 ชื่ออะไร",
    "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_en": "When did elisabeth of valois die?",
    "question_th": "อลิซาเบธแห่งวาลัวส์สิ้นพระชนม์เมื่อใด",
    "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_en": "Who is entered earlier than 1975 and has a Lotus 20 chassis?",
    "question_th": "ใครเข้ามาก่อนปี 1975 และมีแชสซี Lotus 20?",
    "context": "CREATE TABLE table_name_14 (entrant VARCHAR, year VARCHAR, chassis VARCHAR)"
  },
  {
    "answer": "SELECT engine FROM table_name_41 WHERE chassis = \"lotus 49c\"",
    "question_en": "Which engine has a Lotus 49c chassis?",
    "question_th": "เครื่องยนต์ใดมีแชสซี Lotus 49c",
    "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_en": "What are the average points of Scuderia Scribante with a Brabham bt11 chassis before 1968?",
    "question_th": "อะไรคือคะแนนเฉลี่ยของ Scuderia Scribante ที่มีแชสซี Brabham bt11 ก่อนปี 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_en": "How many points are there for a Mclaren m23 chassis later than 1972?",
    "question_th": "แชสซีของ Mclaren m23 หลังปี 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²_ = 546.74 AND population_density__per_km²_ > 0.5",
    "question_en": "What is the average change to have a land area of 546.74 and a population density greater than 0.5?",
    "question_th": "การเปลี่ยนแปลงโดยเฉลี่ยเพื่อให้มีพื้นที่ 546.74 และความหนาแน่นของประชากรมากกว่า 0.5 คือข้อใด",
    "context": "CREATE TABLE table_name_51 (change___percentage_ INTEGER, land_area__km²_ VARCHAR, population_density__per_km²_ VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_64 WHERE year > 1994 AND team = \"mb2\" AND start = \"31\"",
    "question_en": "What was the result after 1994 for team MB2 and 31 starts?",
    "question_th": "ผลลัพธ์หลังจากปี 1994 สำหรับทีม MB2 และ 31 ออกสตาร์ทเป็นอย่างไร",
    "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_en": "What team has 33 starts?",
    "question_th": "ทีมไหนมี 33 นัด?",
    "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_en": "What team finished 35 in a ford before 1997?",
    "question_th": "ทีมใดจบ 35 ในฟอร์ดก่อนปี 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_en": "What was the sum of the scores before the year 2002, that had the venue of Halmstad?",
    "question_th": "คะแนนรวมก่อนปี 2002 ที่มีสนามฮาล์มสตัดเป็นเท่าไหร่?",
    "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_en": "What was France's highest score when the venue was Bokskogens?",
    "question_th": "คะแนนสูงสุดของฝรั่งเศสเมื่อสนามคือ 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_en": "What was the earliest year during which the winner was Matthew King, and during which the score was higher than 270?",
    "question_th": "ปีแรกสุดที่ผู้ชนะคือ Matthew King คือปีใด และในปีใดที่มีคะแนนสูงกว่า 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_en": "What was the average year during which the score was 270?",
    "question_th": "ปีเฉลี่ยที่มีคะแนน 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_en": "What were the total number scores after 2005, when the winner was David Patrick?",
    "question_th": "คะแนนรวมหลังปี 2548 ผู้ชนะคือ 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_en": "What was the average year that the venue was Bokskogens?",
    "question_th": "ปีเฉลี่ยที่สถานที่จัดงานคือ Bokskogens คืออะไร?",
    "context": "CREATE TABLE table_name_16 (year INTEGER, venue VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_66 WHERE score = \"4 - 2\"",
    "question_en": "Who did the Toronto Blue Jays play against where the score was 4 - 2?",
    "question_th": "Toronto Blue Jays เล่นกับใครโดยสกอร์ 4 - 2?",
    "context": "CREATE TABLE table_name_66 (opponent VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_52 WHERE date = \"april 11\"",
    "question_en": "Who did the Blue Jays play against on April 11?",
    "question_th": "Blue Jays เล่นกับใครในวันที่ 11 เมษายน?",
    "context": "CREATE TABLE table_name_52 (opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_44 WHERE date = \"april 24\"",
    "question_en": "Who did the Blue Jays play against on April 24?",
    "question_th": "Blue Jays เล่นกับใครในวันที่ 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_en": "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?",
    "question_th": "อะไรคือมูลค่าเฉลี่ย ($M) เมื่อประเทศคืออังกฤษ รายได้จากการดำเนินงาน ($m) มากกว่า -5 และรายได้ ($M) น้อยกว่า 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_en": "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?",
    "question_th": "มูลค่ารวม ($M) คือเท่าใด เมื่อประเทศคือสเปน อันดับคือ 19 และหนี้ที่เป็น % ของมูลค่ามากกว่า 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_en": "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?",
    "question_th": "อะไรคือผลรวมของมูลค่า ($M) เมื่อรายได้ ($M) น้อยกว่า 307 ทีมคือ Valencia และอันดับน้อยกว่า 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_en": "What was the total amount of Value ($M), when the Rank was higher than 6, and the % change on year was -27?",
    "question_th": "มูลค่ารวม ($M) เป็นเท่าใดเมื่ออันดับสูงกว่า 6 และ % การเปลี่ยนแปลงในปีคือ -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_en": "What was the sum of Revenue ($M), when the Debt as % of value was higher than 27, and the Operating income($m) was 77?",
    "question_th": "ผลรวมของรายได้ ($M) คือเท่าใด เมื่อหนี้ที่เป็น % ของมูลค่าสูงกว่า 27 และรายได้จากการดำเนินงาน($m) เท่ากับ 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_en": "Name the screening completed for screening started 23 january 2006",
    "question_th": "ตั้งชื่อการคัดกรองเสร็จสิ้นสำหรับการคัดกรองเริ่มเมื่อวันที่ 23 มกราคม 2549",
    "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_en": "Name the screening started when it was completed 3 may 2006",
    "question_th": "ตั้งชื่อการคัดกรองที่เริ่มดำเนินการเมื่อแล้วเสร็จเมื่อวันที่ 3 พฤษภาคม พ.ศ. 2549",
    "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_en": "What award was Trent Tesoro nominated for in 2007?",
    "question_th": "เทรนต์ เทโซโรได้รับการเสนอชื่อเข้าชิงรางวัลอะไรในปี 2550",
    "context": "CREATE TABLE table_name_2 (award VARCHAR, result VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_43 WHERE record = \"80-64\"",
    "question_en": "What is the score for the team that has a record of 80-64?",
    "question_th": "คะแนนของทีมที่มีสถิติ 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_en": "What position did team scandia finish when their engine was cosworth?",
    "question_th": "ทีม scandia จบตำแหน่งใดเมื่อเครื่องยนต์ของพวกเขาอยู่ที่ 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_en": "What was the position of the team that used an oldsmobile engine and DNQ?",
    "question_th": "ตำแหน่งของทีมที่ใช้เครื่องยนต์ oldsmobile และ 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_en": "what is the least bronze when gold is more than 0 for russia?",
    "question_th": "ทองสัมฤทธิ์น้อยที่สุดคืออะไรเมื่อทองมากกว่า 0 สำหรับรัสเซีย?",
    "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_en": "what is the highest rank for italy when gold is more than 1?",
    "question_th": "อิตาลีอันดับสูงสุดเมื่อทองมากกว่า 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_en": "what is the total when bronze is more than 1 and gold smaller than 1?",
    "question_th": "ผลรวมเมื่อทองแดงมากกว่า 1 และทองคำน้อยกว่า 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_en": "What is the avg seek time for a device that is less than 3231?",
    "question_th": "เวลาค้นหาเฉลี่ยสำหรับอุปกรณ์ที่น้อยกว่า 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_en": "What is the smallest transfer rate for a 3243 device?",
    "question_th": "อัตราการถ่ายโอนที่เล็กที่สุดสำหรับอุปกรณ์ 3243 คือเท่าใด",
    "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_en": "Which entrant has a year after 1955?",
    "question_th": "ผู้เข้าแข่งขันคนใดมีหนึ่งปีหลังจากปี 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_en": "How many draws has a Club of real valladolid that was played less than 38?",
    "question_th": "สโมสรเรอัล บายาโดลิด เสมอกันกี่นัดที่เล่นน้อยกว่า 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_en": "How many losses are there with 5 goal differences, drew more than 10 times, and 43 goals against?",
    "question_th": "มีการสูญเสียกี่ครั้งโดยมีผลต่าง 5 ประตู เสมอมากกว่า 10 ครั้ง และเสียประตูไป 43 ประตู?",
    "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_en": "On which award show was Bad Girls nominated for Most Popular Drama in 2004?",
    "question_th": "การแสดงรางวัลใดที่ Bad Girls ได้รับการเสนอชื่อเข้าชิงรางวัลละครยอดนิยมในปี 2547",
    "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_en": "Who was the recipient when the show was nominated for Most Popular Drama after 2004?",
    "question_th": "ใครคือผู้รับเมื่อรายการได้รับการเสนอชื่อเข้าชิงละครยอดนิยมหลังปี 2547",
    "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_en": "In what award show was Bad Girls nominated for Best Loved Drama in 2002?",
    "question_th": "Bad Girls ได้รับการเสนอชื่อเข้าชิงรางวัล Best Loved Drama ในปี 2545 ในงานประกาศรางวัลใด",
    "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_en": "What is the average total number of medals for a nation with 2 silver medals and a rank larger than 7?",
    "question_th": "จำนวนเหรียญทั้งหมดโดยเฉลี่ยสำหรับประเทศที่มี 2 เหรียญเงินและอันดับมากกว่า 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_en": "What is the lowest rank of Ukraine with fewer than 14 silver medals, fewer than 3 bronze medals, and a total of 4 medals?",
    "question_th": "อันดับต่ำสุดของประเทศยูเครนคืออะไร โดยมีเหรียญเงินน้อยกว่า 14 เหรียญ เหรียญทองแดงน้อยกว่า 3 เหรียญ และเหรียญเงินทั้งหมด 4 เหรียญ",
    "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_en": "What is the total of bronze medals from nations with more than 16 total medals and ranks larger than 3?",
    "question_th": "เหรียญทองแดงจากประเทศที่มีมากกว่า 16 เหรียญและอันดับที่มากกว่า 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_en": "What is the total number of bronze medals with a total of 4 medals and 1 gold medal?",
    "question_th": "ได้เหรียญทองแดงทั้งหมด 4 เหรียญ 1 เหรียญทอง มีจำนวนเท่าไร?",
    "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_en": "What was the qualification with more than 162 laps in 1953?",
    "question_th": "ปี 1953 ผ่านเข้ารอบเกิน 162 รอบเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_35 (qual VARCHAR, laps VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT qual FROM table_name_16 WHERE laps = 585",
    "question_en": "What was the qualification with more than 585 laps?",
    "question_th": "รอบคัดเลือกเกิน 585 รอบเป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_16 (qual VARCHAR, laps VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(laps) FROM table_name_50 WHERE qual = \"136.168\"",
    "question_en": "How many laps had a qualification of 136.168?",
    "question_th": "มีกี่รอบผ่านเข้ารอบ 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_en": "Who was appointed with the title of envoy extraordinary and minister plenipotentiary, and a termination of mission of march 16, 1905?",
    "question_th": "ใครได้รับการแต่งตั้งให้ดำรงตำแหน่งทูตวิสามัญและรัฐมนตรีผู้มีอำนาจเต็ม และยุติภารกิจเมื่อวันที่ 16 มีนาคม พ.ศ. 2448",
    "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_en": "What is the GDP (billion US$) of the country that has a GDP per capita (US$) of 8,861?",
    "question_th": "GDP (พันล้านดอลลาร์สหรัฐ) ของประเทศที่มี GDP ต่อหัว (US$) เท่ากับ 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_en": "What is the name of the member country that has a Population of 1,341,664?",
    "question_th": "ประเทศสมาชิกที่มีประชากร 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_en": "What is the total population of the country that has a GDP per capita (US$) of 15,054?",
    "question_th": "ประชากรทั้งหมดของประเทศที่มี GDP ต่อหัว (US$) อยู่ที่ 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²_ = \"49,036\"",
    "question_en": "What is the name of the country that has an Area (km²) of 49,036?",
    "question_th": "ประเทศที่มีพื้นที่ (กม.²) 49,036 ชื่ออะไร",
    "context": "CREATE TABLE table_name_47 (member_countries VARCHAR, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT gdp__billion_us$_ FROM table_name_76 WHERE area__km²_ = \"316\"",
    "question_en": "What is the GDP (billion US$) of the country that has an Area (km²) of 316?",
    "question_th": "GDP (พันล้านดอลลาร์สหรัฐ) ของประเทศที่มีพื้นที่ (กม. ²) เท่ากับ 316 คือเท่าใด",
    "context": "CREATE TABLE table_name_76 (gdp__billion_us$_ VARCHAR, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT gdp_per_capita__us$_ FROM table_name_54 WHERE population = \"2,011,473\"",
    "question_en": "What is the GDP per capita (US$) of the country that has a Population of 2,011,473?",
    "question_th": "GDP ต่อหัว (US$) ของประเทศที่มีประชากร 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_en": "What is the original title for the Korean language film?",
    "question_th": "ชื่อเรื่องดั้งเดิมของภาพยนตร์ภาษาเกาหลีคืออะไร?",
    "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_en": "What language is the film La Diagonale du Fou in?",
    "question_th": "ภาพยนตร์เรื่อง La Diagonale du Fou ใช้ภาษาอะไร",
    "context": "CREATE TABLE table_name_24 (language VARCHAR, original_title VARCHAR)"
  },
  {
    "answer": "SELECT original_title FROM table_name_88 WHERE language = \"hindi\"",
    "question_en": "What was the original title of the Hindi film?",
    "question_th": "ภาพยนตร์ภาษาฮินดีมีชื่อดั้งเดิมว่าอะไร",
    "context": "CREATE TABLE table_name_88 (original_title VARCHAR, language VARCHAR)"
  },
  {
    "answer": "SELECT language FROM table_name_22 WHERE original_title = \"karnal\"",
    "question_en": "What language is the film Karnal in?",
    "question_th": "ภาพยนตร์เรื่อง Karnal เป็นภาษาอะไร?",
    "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_en": "What was the film title nominated from the Netherlands?",
    "question_th": "ชื่อภาพยนตร์ที่ได้รับการเสนอชื่อเข้าชิงจากประเทศเนเธอร์แลนด์คืออะไร",
    "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_en": "What was the film title nominated from the Sweden?",
    "question_th": "ชื่อภาพยนตร์ที่ได้รับการเสนอชื่อเข้าชิงจากสวีเดนคืออะไร?",
    "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_en": "On the Date of 15 June 1992 what is the Score that is listed?",
    "question_th": "เมื่อวันที่ 15 มิถุนายน พ.ศ. 2535 มีรายการคะแนนเท่าใด",
    "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_en": "What is the average Crimean War with a Second Afghan War totaling 1, and a School of hamblin and porter's school, cork?",
    "question_th": "สงครามไครเมียโดยเฉลี่ยกับสงครามอัฟกานิสถานครั้งที่สองรวมเป็น 1 และโรงเรียนแฮมบลินและโรงเรียนลูกหาบไม้ก๊อกคืออะไร?",
    "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_en": "What Venue has Basketball as a Sport?",
    "question_th": "สถานที่ใดที่มีบาสเกตบอลเป็นกีฬา?",
    "context": "CREATE TABLE table_name_92 (venue VARCHAR, sport VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_71 WHERE club = \"spartak st. petersburg\"",
    "question_en": "What Venue has Spartak St. Petersburg Club?",
    "question_th": "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_en": "What League of VSL Sport was Established in 1935?",
    "question_th": "ลีกของ VSL Sport ใดที่ก่อตั้งขึ้นเมื่อปี 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_en": "What Club Established in 2010 has a League of MHL?",
    "question_th": "สโมสรใดที่ก่อตั้งในปี 2010 มีลีก 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_en": "What was the highest attendance week 12?",
    "question_th": "สัปดาห์ที่ 12 มีผู้เข้าร่วมสูงสุดคือเท่าใด",
    "context": "CREATE TABLE table_name_64 (attendance INTEGER, week VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_4 WHERE result = \"w 33-3\"",
    "question_en": "What is the record for the result w 33-3?",
    "question_th": "บันทึกผลการแข่งขัน 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_en": "What Committee has the First Elected of 1993?",
    "question_th": "คณะกรรมการใดได้รับการเลือกตั้งครั้งแรกในปี พ.ศ. 2536?",
    "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_en": "What is the total number of First Elected that has counties represented of Anne Arundel, District of 30, and a Ways and Means Committee?",
    "question_th": "จำนวนผู้ที่ได้รับการเลือกตั้งครั้งแรกทั้งหมดที่มีมณฑลเป็นตัวแทนของแอนน์ อารันเดล เขต 30 และคณะกรรมการวิธีการและรายได้คือเท่าใด",
    "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_en": "What counties represented have a First Elected of 2006 and a Ways and Means Committee?",
    "question_th": "มณฑลใดบ้างที่ได้รับการเลือกตั้งครั้งแรกในปี 2006 และมีคณะกรรมการวิธีการและรายได้",
    "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_en": "What is the venue when the year is after 2001 for the summer olympics?",
    "question_th": "สถานที่จัดงานโอลิมปิกฤดูร้อนคือหลังปี 2001 คือที่ไหน?",
    "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_en": "What is the total attendance for the August 8 game?",
    "question_th": "ผู้เข้าร่วมทั้งหมดในเกมวันที่ 8 สิงหาคมคือเท่าไร?",
    "context": "CREATE TABLE table_name_48 (attendance INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_53 WHERE record = \"56-59\"",
    "question_en": "Which opponent led to a 56-59 record?",
    "question_th": "คู่ต่อสู้คนไหนทำสถิติ 56-59?",
    "context": "CREATE TABLE table_name_53 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_21 WHERE result = \"22-12\"",
    "question_en": "Where did they play that the score was 22-12?",
    "question_th": "พวกเขาเล่นที่ไหนที่สกอร์ 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_en": "What language is spoken after 2007 for the role of urvashi mathur?",
    "question_th": "พูดภาษาอะไรหลังจากปี 2550 สำหรับบทบาทของ 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_en": "What role is spoken in hindi in 2011?",
    "question_th": "บทบาทใดที่พูดเป็นภาษาฮินดีในปี 2554",
    "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_en": "What is the note section for the role with a language of hindi and a title of miley naa miley hum?",
    "question_th": "ส่วนหมายเหตุสำหรับบทบาทที่มีภาษาภาษาฮินดีและชื่อเรื่องของ 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_en": "What is the title of the song that has a translation of Without Me?",
    "question_th": "เพลงที่มีคำแปลชื่อเพลงอะไรคือเพลง 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_en": "what is the molecules when the percent mass is 1.0?",
    "question_th": "โมเลกุลเมื่อมวลเปอร์เซ็นต์เป็น 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_en": "what is the mol.weight (daltons) when the percent of mass is 1.5?",
    "question_th": "โมลน้ำหนัก (ดาลตัน) เป็นเท่าใดเมื่อเปอร์เซ็นต์ของมวลคือ 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_en": "what is the perfect of mass when the molecules is 1.74e14*?",
    "question_th": "อะไรคือความสมบูรณ์ของมวลเมื่อโมเลกุลมีค่า 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_en": "what is the percent of mass when the mol.weight (daltons) is 1e11?",
    "question_th": "เปอร์เซ็นต์ของมวลเมื่อน้ำหนักโมล (ดาลตัน) เท่ากับ 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_en": "How many people attended the game when the away team was dynamo kyiv, and a Home team of torpedo zaporizhia?",
    "question_th": "มีกี่คนที่เข้าร่วมเกมเมื่อทีมเยือนคือไดนาโม เคียฟ และทีมเจ้าบ้านเป็นตอร์ปิโด ซาโปริเซีย?",
    "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_en": "What was the round when the home team was chornomorets odessa?",
    "question_th": "รอบที่เจ้าบ้านคือ 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_en": "What is the rank when the game was at dnipro stadium , kremenchuk?",
    "question_th": "ตอนที่เกมอยู่ที่ ดนิโปร สเตเดี้ยม คราเมนชุก อยู่อันดับไหน?",
    "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_en": "What are the lowest points for the engines of the Lamborghini v12 and the Chassis on Minardi m191b?",
    "question_th": "จุดต่ำสุดสำหรับเครื่องยนต์ของ Lamborghini v12 และแชสซีบน 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_en": "What is the Chassis from before 1997 with a Lamborghini v12 engine?",
    "question_th": "แชสซีจากก่อนปี 1997 พร้อมเครื่องยนต์ Lamborghini v12 คืออะไร?",
    "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_en": "What is the total of the year with a point larger than 0 or the Chassis of Minardi m190?",
    "question_th": "ผลรวมของปีที่มีแต้มมากกว่า 0 หรือแชสซีของ 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_en": "What are the lowest points from 1992 with a Chassis of Minardi m192?",
    "question_th": "จุดต่ำสุดจากปี 1992 กับแชสซีของ 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_en": "What Entrant has 0 points and from 1997?",
    "question_th": "ผู้เข้าแข่งขันคนใดมี 0 คะแนน และตั้งแต่ปี 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_en": "What is the total roll with a decile less than 7, and an authority of state, in the Macraes Flat area?",
    "question_th": "จำนวนม้วนทั้งหมดที่มีเดซิลน้อยกว่า 7 และผู้มีอำนาจของรัฐในพื้นที่ Macraes Flat คืออะไร?",
    "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_en": "What year has a decile more than 6, in the Waikouaiti area?",
    "question_th": "ปีใดที่มีเดซิลมากกว่า 6 ในพื้นที่ Waikouaiti?",
    "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_en": "What place did the Nashville Metros place in the 1994/95 Season?",
    "question_th": "Nashville Metros อยู่ที่ไหนในฤดูกาล 1994/95?",
    "context": "CREATE TABLE table_name_64 (regular_season VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_63 WHERE league = \"usisl indoor\"",
    "question_en": "What years did the Nashville Metros have Usisl Indoor League?",
    "question_th": "Nashville Metros มี 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_en": "Which Round has kim eun-ha as an Opponent?",
    "question_th": "รอบไหนมีคิมอึนฮาเป็นคู่ต่อสู้?",
    "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_en": "Which kind of Edition that has a Surface of clay, and Park Sung-Hee as an opponent?",
    "question_th": "รุ่นไหนที่มีพื้นผิวเป็นดินเหนียว และมีปาร์ค ซองฮีเป็นคู่ต่อสู้?",
    "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_en": "What is the highest gold number count where a county had over 9 golds and 10 silvers?",
    "question_th": "จำนวนทองคำสูงสุดที่มณฑลมีมากกว่า 9 เหรียญทองและ 10 เงินคืออะไร?",
    "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_en": "How many bronze medals did the country with 7 medals and over 5 silver medals receive?",
    "question_th": "ประเทศได้เหรียญทองแดง 7 เหรียญ และเหรียญเงินมากกว่า 5 เหรียญ ได้ทั้งหมดกี่เหรียญ?",
    "context": "CREATE TABLE table_name_88 (bronze INTEGER, total VARCHAR, silver VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_78 WHERE venue = \"lord's\"",
    "question_en": "Name the date for venue of lord's",
    "question_th": "ตั้งชื่อวันสถานที่จัดงานของท่านลอร์ด",
    "context": "CREATE TABLE table_name_78 (date VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_82 WHERE venue = \"lord's\"",
    "question_en": "Name the result for venue of lord's",
    "question_th": "ตั้งชื่อผลสถานที่ของท่านลอร์ด",
    "context": "CREATE TABLE table_name_82 (result VARCHAR, venue VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_24 WHERE result = \"eng by 23 runs\"",
    "question_en": "Name the date for result of eng by 23 runs",
    "question_th": "ตั้งชื่อวันที่สำหรับผลลัพธ์ของภาษาอังกฤษด้วย 23 รัน",
    "context": "CREATE TABLE table_name_24 (date VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_37 WHERE result = \"draw\" AND venue = \"edgbaston\"",
    "question_en": "Name the date for result of draw, and venue of edgbaston",
    "question_th": "แจ้งวันผลการจับสลาก และสถานที่จัดการแข่งขันเอ็ดจ์บาสตัน",
    "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_en": "What is the total number of weeks that the Seahawks had a record of 5-5?",
    "question_th": "จำนวนสัปดาห์ทั้งหมดที่ Seahawks ทำสถิติ 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_en": "Who has 1 win, 1 loss, and has played 2 matches?",
    "question_th": "ใครชนะ 1 แพ้ 1 และลงเล่น 2 นัด?",
    "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_en": "Who has 5 losses and has played 11 matches?",
    "question_th": "ใครแพ้ 5 นัดและลงเล่น 11 นัด?",
    "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_en": "How many matches has Mohammad Al-Shamlan played when there is 1 win?",
    "question_th": "โมฮัมหมัด อัล-ชามลันลงเล่นกี่นัดเมื่อชนะ 1 นัด?",
    "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_en": "How many matches were played when there was 1 draw and 1 win?",
    "question_th": "แข่งไปกี่นัดแล้ว เสมอ 1 ชนะ 1?",
    "context": "CREATE TABLE table_name_92 (matches VARCHAR, draws VARCHAR, wins VARCHAR)"
  },
  {
    "answer": "SELECT played FROM table_name_65 WHERE lost = \"5\"",
    "question_en": "Name the played with lost of 5",
    "question_th": "ตั้งชื่อผู้เล่นที่แพ้ 5",
    "context": "CREATE TABLE table_name_65 (played VARCHAR, lost VARCHAR)"
  },
  {
    "answer": "SELECT played FROM table_name_95 WHERE points_against = \"points against\"",
    "question_en": "Name the played with points against of points against",
    "question_th": "ตั้งชื่อการเล่นโดยมีแต้มต่อแต้มต่อ",
    "context": "CREATE TABLE table_name_95 (played VARCHAR, points_against VARCHAR)"
  },
  {
    "answer": "SELECT tries_for FROM table_name_35 WHERE tries_against = \"38\"",
    "question_en": "Name the tries with tries against of 38",
    "question_th": "ตั้งชื่อความพยายามด้วยความพยายามต่อ 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_en": "Name the points against when tries against is 51 and points is 52 with played of 22",
    "question_th": "ตั้งชื่อแต้มต่อเมื่อพยายามต่อคือ 51 และแต้มคือ 52 โดยเล่นได้ 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_en": "Name the points against for cwmllynfell rfc",
    "question_th": "ตั้งชื่อคะแนนที่ขัดแย้งกับ 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_en": "What is lead for the Election Results polling firm and has a PSOE of 39.6% 175?",
    "question_th": "อะไรเป็นผู้นำสำหรับสำนักงานสำรวจผลการเลือกตั้งและมี PSOE ที่ 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_en": "What is the PSOE for the Local Elections polling firm?",
    "question_th": "PSOE สำหรับสำนักงานการเลือกตั้งท้องถิ่นคืออะไร",
    "context": "CREATE TABLE table_name_78 (psoe VARCHAR, polling_firm VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_86 WHERE psoe = \"36.1%\"",
    "question_en": "Which date has a PSOE of 36.1%?",
    "question_th": "วันไหนมี PSOE 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_en": "Name the height with 9 floors",
    "question_th": "ตั้งชื่อส่วนสูงด้วย 9 ชั้น",
    "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_en": "Name the years as tallest when floors are larger than 18",
    "question_th": "ตั้งชื่อปีที่สูงที่สุดเมื่อชั้นมีขนาดใหญ่กว่า 18 ปี",
    "context": "CREATE TABLE table_name_4 (years_as_tallest VARCHAR, floors INTEGER)"
  },
  {
    "answer": "SELECT name FROM table_name_25 WHERE floors = 17",
    "question_en": "Tell me the name that has 17 floors",
    "question_th": "บอกชื่อที่มี17ชั้นมาหน่อย",
    "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_en": "Which was the position for overall less than 254, round less than 5 and pick number less than 13?",
    "question_th": "ตำแหน่งใดโดยรวมน้อยกว่า 254 ปัดน้อยกว่า 5 และเลือกหมายเลขน้อยกว่า 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_en": "Name the round having an overall of 6",
    "question_th": "ตั้งชื่อรอบที่มีคะแนนรวมเป็น 6",
    "context": "CREATE TABLE table_name_84 (round VARCHAR, overall VARCHAR)"
  },
  {
    "answer": "SELECT position FROM table_name_96 WHERE college = \"virginia\"",
    "question_en": "Name the position of the player from college of virginia",
    "question_th": "ตั้งชื่อตำแหน่งผู้เล่นจากวิทยาลัยเวอร์จิเนีย",
    "context": "CREATE TABLE table_name_96 (position VARCHAR, college VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_48 WHERE goal = 3",
    "question_en": "What was the date of the game that had a goal of 3?",
    "question_th": "วันที่เกมที่มี 3 ประตูคือวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_48 (date VARCHAR, goal VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_58 WHERE goal = 4",
    "question_en": "What was the date of the game that had a goal of 4?",
    "question_th": "วันที่เกมที่มีประตู 4 คืออะไร?",
    "context": "CREATE TABLE table_name_58 (date VARCHAR, goal VARCHAR)"
  },
  {
    "answer": "SELECT MAX(rank) FROM table_name_20 WHERE lane = 5",
    "question_en": "What is the highest rank of a swimmer in lane 5?",
    "question_th": "นักว่ายน้ำอันดับสูงสุดในเลน 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_en": "What is the lowest rank of Jens Kruppa in a lane larger than 2?",
    "question_th": "ตำแหน่งต่ำสุดของ Jens Kruppa ในเลนที่มากกว่า 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_en": "Which nationality has a lane of 6 and a rank smaller than 6?",
    "question_th": "สัญชาติใดมีเลน 6 และอันดับน้อยกว่า 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_en": "What is Tony Jacklin's total?",
    "question_th": "ยอดรวมของ Tony Jacklin คืออะไร?",
    "context": "CREATE TABLE table_name_33 (total VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_9 WHERE player = \"todd hamilton\"",
    "question_en": "What was Todd Hamilton's to par?",
    "question_th": "ท็อดด์ แฮมิลตัน พาร์ได้เท่าไหร่?",
    "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_en": "When was a game won with more than 11 to par?",
    "question_th": "เมื่อใดที่เกมชนะโดยได้มากกว่า 11 พาร์?",
    "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_en": "Where is the place that has a Callsign of DWRJ-FM?",
    "question_th": "สถานที่ที่มีสัญญาณเรียกขานของ 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_en": "Which Power has Location in metro manila",
    "question_th": "ซึ่งอำนาจมีที่ตั้งในกรุงมะนิลา",
    "context": "CREATE TABLE table_name_75 (power__kw_ VARCHAR, location VARCHAR)"
  },
  {
    "answer": "SELECT tier FROM table_name_61 WHERE tournament = \"mont de marson\"",
    "question_en": "Which tier of the tournament has Mont de Marson in it?",
    "question_th": "มงต์ เดอ มาร์สัน อยู่ในทัวร์นาเมนต์ระดับใด?",
    "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_en": "Which date has opponents, Akgul Amanmuradova Nina Bratchikova, in the final?",
    "question_th": "คู่ต่อสู้คือ Akgul Amanmuradova Nina Bratchikova ในรอบชิงชนะเลิศวันไหน?",
    "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_en": "Which date has opponents, Claire De Gubernatis Alexandra Dulgheru, in the final?",
    "question_th": "คู่ต่อสู้แคลร์ เดอ กูเบอร์นาติส อเล็กซานดร้า ดัลเกรู มีนัดชิงชนะเลิศวันไหน?",
    "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_en": "What is the score in the touranament of Antalya-Belek?",
    "question_th": "คะแนนในการแข่งขันของ Antalya-Belek คืออะไร?",
    "context": "CREATE TABLE table_name_66 (score VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_66 WHERE tier = \"itf $10k\"",
    "question_en": "Which date has the tier of Itf $10k?",
    "question_th": "วันไหนที่มีระดับ 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_en": "What is the score vs. all when the score vs. Terran is 159?",
    "question_th": "คะแนนเทียบกับทั้งหมดคืออะไรเมื่อคะแนนเทียบกับ Terran คือ 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_en": "What is the score vs. Protoss when the score vs. Terran is 10 wins?",
    "question_th": "เมื่อสกอร์กับ Terran ชนะ 10 คะแนน เทียบกับ Protoss จะเป็นเท่าไหร่?",
    "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_en": "What is the score vs. Terran when the score vs. Zerg is 69?",
    "question_th": "สกอร์เทียบกับ Terran คืออะไร เมื่อสกอร์กับ Zerg คือ 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_en": "What occurrs as of September 1, 2012 when the value for vs. all is 65.47%?",
    "question_th": "จะเกิดอะไรขึ้น ณ วันที่ 1 กันยายน 2012 เมื่อค่าสำหรับเทียบกับทั้งหมดคือ 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_en": "What is the record of the opponent that has a bye?",
    "question_th": "คู่ต่อสู้ที่บายแล้วมีสถิติอะไรบ้าง?",
    "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_en": "What was the average total medals received by Roland Hayes School when there were 0 gold medals?",
    "question_th": "เหรียญรางวัลเฉลี่ยทั้งหมดที่โรงเรียนโรแลนด์ เฮย์ส ได้รับเมื่อมี 0 เหรียญทองคือเท่าใด",
    "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_en": "What was the total number of medals received by James Logan High School when it received less than 1 silver medal?",
    "question_th": "โรงเรียนมัธยมเจมส์ โลแกน ได้รับเหรียญทั้งหมดเมื่อได้รับน้อยกว่า 1 เหรียญเงินเป็นเท่าใด",
    "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_en": "What is the highest number of bronze medals received by an ensemble who received fewer than 0 gold medals?",
    "question_th": "จำนวนเหรียญทองแดงสูงสุดที่วงดนตรีที่ได้รับน้อยกว่า 0 เหรียญทองคือเท่าใด",
    "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_en": "What was the Score of the 2008 Africa Cup of Nations Competition?",
    "question_th": "คะแนนของการแข่งขัน Africa Cup of Nations 2008 เป็นเท่าใด",
    "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_en": "Name the most goals with losses less than 15 and position more than 8 with points of 42+4",
    "question_th": "ระบุชื่อประตูมากที่สุดโดยเสียน้อยกว่า 15 และอันดับมากกว่า 8 ด้วยคะแนน 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_en": "Name the average goals against for draws of 8 and wins more than 22 with losses less than 12",
    "question_th": "ตั้งชื่อประตูเฉลี่ยต่อผลเสมอ 8 และชนะมากกว่า 22 โดยแพ้น้อยกว่า 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_en": "Name the least wins for goal difference being less than -20 with position less than 20 and goals for of 35",
    "question_th": "ตั้งชื่อชัยชนะน้อยที่สุดสำหรับผลต่างประตูได้น้อยกว่า -20 โดยมีอันดับน้อยกว่า 20 และประตูได้ 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_en": "Name the average losses for draws larger than 6 and played more than 38",
    "question_th": "ตั้งชื่อการสูญเสียโดยเฉลี่ยสำหรับการเสมอที่มากกว่า 6 และเล่นมากกว่า 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_en": "Name the least goals against for played more than 38",
    "question_th": "ตั้งชื่อประตูน้อยที่สุดสำหรับการเล่นมากกว่า 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_en": "After 1961, who as the Entrant when the engine was a Ferrari v8, and when the points were lower than 23?",
    "question_th": "หลังปี 1961 ใครเป็นผู้เข้าแข่งขันเมื่อเครื่องยนต์เป็น Ferrari v8 และเมื่อคะแนนต่ำกว่า 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_en": "What is was the Chassis in 1967?",
    "question_th": "แชสซีคืออะไรในปี 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_en": "In 1962, what was the total number of points, when the Engine was Ferrari v6?",
    "question_th": "ในปี 1962 เมื่อเครื่องยนต์เป็น 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_en": "In 1961, what was the Chassis when the points were lower than 6?",
    "question_th": "ปี 1961 แชสซีเป็นรุ่นอะไรตอนที่คะแนนต่ำกว่า 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_en": "What was the sum of the years, when the entrant was Scuderia Ferrari, and when the Chassis was Ferrari 312/66?",
    "question_th": "ผลรวมของปีเป็นเท่าใด เมื่อผู้เข้าร่วมคือ Scuderia Ferrari และเมื่อแชสซีคือ 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_en": "What was the sum of the years, when the entrant was Scuderia Centro Sud, and when there were 6 points?",
    "question_th": "ผลรวมของปีเป็นเท่าใดเมื่อผู้เข้าแข่งขันคือ Scuderia Centro Sud และเมื่อมี 6 คะแนน",
    "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_en": "In the tkkm o manawatu coed school in kelvin grove, what is the Authority listed/",
    "question_th": "ในโรงเรียนนิสิต tkkm o manawatu ในเคลวินโกรฟ หน่วยงานมีรายชื่ออะไรบ้าง/",
    "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_en": "which Authority has a coed school with a decile greater than 4, with a 150 roll?",
    "question_th": "หน่วยงานใดมีโรงเรียนสหศึกษาที่มีเดซิลมากกว่า 4 โดยมี 150 ม้วน?",
    "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_en": "Name the language for trotta",
    "question_th": "ตั้งชื่อภาษาสำหรับทรอตต้า",
    "context": "CREATE TABLE table_name_68 (language VARCHAR, original_title VARCHAR)"
  },
  {
    "answer": "SELECT original_title FROM table_name_85 WHERE director = \"luis buñuel\"",
    "question_en": "Name the original title directed by luis buñuel",
    "question_th": "ตั้งชื่อชื่อต้นฉบับที่กำกับโดย luis buñuel",
    "context": "CREATE TABLE table_name_85 (original_title VARCHAR, director VARCHAR)"
  },
  {
    "answer": "SELECT original_title FROM table_name_79 WHERE director = \"sudhendu roy\"",
    "question_en": "Name the original title directed by sudhendu roy",
    "question_th": "ตั้งชื่อเรื่องดั้งเดิมที่กำกับโดย 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_en": "Name the film title that is spanish from peru",
    "question_th": "ตั้งชื่อหนังที่เป็นภาษาสเปนจากเปรู",
    "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_en": "Name the langauge for switzerland",
    "question_th": "ตั้งชื่อภาษาสำหรับสวิตเซอร์แลนด์",
    "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_en": "What is the Total with 0 Silver and Gold, 1 Bronze and Rank larger than 2?",
    "question_th": "ผลรวมที่มี 0 เงินและทอง 1 เหรียญทองแดงและอันดับมากกว่า 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_en": "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?",
    "question_th": "ประเทศที่มีอันดับต่ำกว่า 5 และได้รับมากกว่า 2 เหรียญทอง น้อยกว่า 4 เหรียญเงิน รวม 9 เหรียญได้รับเหรียญทองแดงกี่เหรียญ?",
    "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_en": "which order of bat belongs to the family of vespertilionidae and includes the northern long-eared myotis?",
    "question_th": "ค้างคาวลำดับใดอยู่ในวงศ์ vespertilionidae และรวมถึง myotis หูยาวภาคเหนือด้วย",
    "context": "CREATE TABLE table_name_26 (order VARCHAR, family VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_42 WHERE class = \"wsc\"",
    "question_en": "What year has WSC class?",
    "question_th": "WSC มีคลาสปีไหน?",
    "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_en": "Which race has D. Beadman for the jockey and a 4th place result?",
    "question_th": "การแข่งขันใดที่มี D. Beadman เป็นจ๊อกกี้และผลการแข่งขันอันดับที่ 4",
    "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_en": "Who is the 1st member in the 1884 by-election?",
    "question_th": "ใครคือสมาชิกคนที่ 1 ในการเลือกตั้งซ่อม พ.ศ. 2427?",
    "context": "CREATE TABLE table_name_7 (election VARCHAR)"
  },
  {
    "answer": "SELECT 2 AS nd_party FROM table_name_16 WHERE election = \"1874\"",
    "question_en": "What is the 2nd party in the 1874 election?",
    "question_th": "พรรคที่ 2 ในการเลือกตั้ง พ.ศ. 2417 คืออะไร?",
    "context": "CREATE TABLE table_name_16 (election VARCHAR)"
  },
  {
    "answer": "SELECT school FROM table_name_64 WHERE position = \"c\"",
    "question_en": "Which school had a player who played the C position?",
    "question_th": "โรงเรียนไหนมีผู้เล่นตำแหน่ง C บ้าง?",
    "context": "CREATE TABLE table_name_64 (school VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT AVG(game) FROM table_name_11 WHERE date = \"october 16\"",
    "question_en": "Which game is on the date October 16?",
    "question_th": "เกมไหนคือวันที่ 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_en": "What is the 2009 value with a q1 in 2006 in the French Open?",
    "question_th": "ค่า 2009 กับ q1 ในปี 2549 ใน French Open เป็นเท่าใด",
    "context": "CREATE TABLE table_name_75 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2010 FROM table_name_83 WHERE 2008 = \"2r\" AND 2013 = \"a\"",
    "question_en": "What is the 2010 value with a 2r in 2008 and A in 2013?",
    "question_th": "ค่า 2010 โดยมี 2r ในปี 2008 และ A ในปี 2013 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_83 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2007 FROM table_name_26 WHERE 2009 = \"1r\" AND tournament = \"us open\"",
    "question_en": "What is the 2007 value with 1r in 2009 in the US Open?",
    "question_th": "ค่า 2007 กับ 1r ในปี 2009 ใน US Open คืออะไร?",
    "context": "CREATE TABLE table_name_26 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2009 FROM table_name_55 WHERE 2011 = \"grand slam tournaments\"",
    "question_en": "What is the 2009 value in the 2011 Grand Slam Tournaments?",
    "question_th": "มูลค่าปี 2009 ในการแข่งขันแกรนด์สแลมปี 2011 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_55 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2005 FROM table_name_73 WHERE 2013 = \"1r\" AND 2011 = \"q2\"",
    "question_en": "What is the 2005 value with 1r in 2013 and q2 in 2011?",
    "question_th": "ค่าปี 2548 โดยมี 1r ในปี 2556 และไตรมาสที่ 2 ในปี 2554 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_73 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2010 FROM table_name_60 WHERE tournament = \"australian open\"",
    "question_en": "What is the 2010 value in the Australian Open?",
    "question_th": "มูลค่าปี 2010 ใน 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_en": "what is the city of license for the station with the frequency mhz less than 102.3 abd erp w of 25?",
    "question_th": "เมืองที่ได้รับอนุญาตสำหรับสถานีที่มีความถี่ mhz น้อยกว่า 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_en": "\\What is the class of the station with the call sign w254ah?",
    "question_th": "\\สถานีที่มีสัญญาณเรียกขาน w254ah เป็นคลาสอะไร?",
    "context": "CREATE TABLE table_name_35 (class VARCHAR, call_sign VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_name_54 WHERE erp_w > 30",
    "question_en": "what is the class of the station with erp w more than 30?",
    "question_th": "คลาสของสถานีที่มี erp w มากกว่า 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_en": "what is the highest frequency mhz with the call sign w292cu?",
    "question_th": "ความถี่สูงสุดที่มีสัญญาณเรียก 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_en": "Which constructor makes the ej15 ej15b chassis?",
    "question_th": "ตัวสร้างใดที่สร้างแชสซี ej15 ej15b",
    "context": "CREATE TABLE table_name_98 (constructor VARCHAR, chassis VARCHAR)"
  },
  {
    "answer": "SELECT tyre FROM table_name_35 WHERE driver = \"pedro de la rosa\"",
    "question_en": "Which tyre is on the car driven by Pedro de la Rosa?",
    "question_th": "ยางชนิดใดที่อยู่ในรถที่ขับเคลื่อนโดย 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_en": "Which constructor made the car with a rb1 chassis and which is driven by David Coulthard?",
    "question_th": "คอนสตรัคเตอร์คนไหนที่สร้างรถด้วยแชสซี rb1 และตัวไหนขับเคลื่อนโดย David Coulthard",
    "context": "CREATE TABLE table_name_34 (constructor VARCHAR, chassis VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT engine_† FROM table_name_85 WHERE chassis = \"c24\" AND driver = \"jacques villeneuve\"",
    "question_en": "Which constructor manufactured the car with a c24 chassis and which is driven by Jacques Villeneuve?",
    "question_th": "ผู้ผลิตรายใดที่ผลิตรถยนต์ด้วยแชสซี c24 และตัวใดขับเคลื่อนโดย Jacques Villeneuve",
    "context": "CREATE TABLE table_name_85 (engine_† VARCHAR, chassis VARCHAR, driver VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_name_39 WHERE catalog = \"mhcl-20004\"",
    "question_en": "What Region is the MHCL-20004 Catalog?",
    "question_th": "แคตตาล็อก MHCL-20004 คือภูมิภาคใด",
    "context": "CREATE TABLE table_name_39 (region VARCHAR, catalog VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_name_88 WHERE catalog = \"alca-272\"",
    "question_en": "What region is the ALCA-272 Catalog?",
    "question_th": "แคตตาล็อก ALCA-272 ในภูมิภาคใด",
    "context": "CREATE TABLE table_name_88 (region VARCHAR, catalog VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_77 WHERE catalog = \"alca-9197\"",
    "question_en": "What label is the ALCA-9197 Catalog?",
    "question_th": "แคตตาล็อก ALCA-9197 คืออะไร",
    "context": "CREATE TABLE table_name_77 (label VARCHAR, catalog VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_82 WHERE catalog = \"mhcl-20004\"",
    "question_en": "What date is the MHCL-20004 Catalog?",
    "question_th": "แคตตาล็อก MHCL-20004 คือวันที่ใด",
    "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_en": "On what date was the Ed Remaster CD and TOCT-24365 Catalog released?",
    "question_th": "ซีดี Ed Remaster และแคตตาล็อก TOCT-24365 เปิดตัวเมื่อใด",
    "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_en": "What identities have more than 5 DVD volumes?",
    "question_th": "ข้อมูลประจำตัวใดที่มีดีวีดีมากกว่า 5 เล่ม",
    "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_en": "How many DVD volumes was identified by Skippy Johnson?",
    "question_th": "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_en": "What was the score when St. Louis was the visiting team?",
    "question_th": "เมื่อเซนต์หลุยส์เป็นทีมเยือนสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_92 (score VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT decision FROM table_name_85 WHERE visitor = \"chicago\"",
    "question_en": "What was the decision when Chicago was the visiting team?",
    "question_th": "การตัดสินใจเมื่อชิคาโก้เป็นทีมเยือนคืออะไร?",
    "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_en": "What was the score on December 3 when Detroit was the home team and Legace took the decision?",
    "question_th": "เมื่อวันที่ 3 ธ.ค. ที่ผ่านมา ดีทรอยต์เป็นเจ้าบ้านและเลเกซเป็นคนตัดสินคะแนนเป็นเท่าไหร่?",
    "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_en": "What was the record when Minnesota was the visiting team?",
    "question_th": "อะไรคือสถิติเมื่อมินนิโซตาเป็นทีมเยือน?",
    "context": "CREATE TABLE table_name_68 (record VARCHAR, visitor VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_3 WHERE catalog = \"alca-275\"",
    "question_en": "On what date was the record with catalog ALCA-275 released?",
    "question_th": "บันทึกพร้อมแคตตาล็อก ALCA-275 เปิดตัวเมื่อใด",
    "context": "CREATE TABLE table_name_3 (date VARCHAR, catalog VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_9 WHERE date = \"march 25, 1984\"",
    "question_en": "What label released a record on March 25, 1984?",
    "question_th": "ค่ายเพลงใดออกอัลบั้มเมื่อวันที่ 25 มีนาคม พ.ศ. 2527",
    "context": "CREATE TABLE table_name_9 (label VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_83 WHERE date = \"december 19, 2001\"",
    "question_en": "What label released a record on December 19, 2001?",
    "question_th": "ค่ายเพลงใดออกอัลบั้มเมื่อวันที่ 19 ธันวาคม พ.ศ. 2544",
    "context": "CREATE TABLE table_name_83 (label VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT catalog FROM table_name_94 WHERE date = \"may 27, 2009\"",
    "question_en": "What is the catalog of the record released on May 27, 2009?",
    "question_th": "แคตตาล็อกของบันทึกที่เผยแพร่เมื่อวันที่ 27 พฤษภาคม พ.ศ. 2552 คืออะไร?",
    "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_en": "On what date was a record from Village Records with catalog VRCL-2205 released?",
    "question_th": "บันทึกจาก Village Records พร้อมแค็ตตาล็อก VRCL-2205 วางจำหน่ายวันไหน?",
    "context": "CREATE TABLE table_name_5 (date VARCHAR, label VARCHAR, catalog VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_32 WHERE catalog = \"alca-275\"",
    "question_en": "On what date was the record with catalog ALCA-275 released?",
    "question_th": "บันทึกพร้อมแคตตาล็อก ALCA-275 เปิดตัวเมื่อใด",
    "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_en": "What was the earliest year that Yvette Alexander took office and was up for reelection after 2016?",
    "question_th": "ปีแรกสุดที่ Yvette Alexander เข้ารับตำแหน่งและได้รับการเลือกตั้งใหม่หลังปี 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_en": "What is the earliest year a Chairman who took office after 2011 is up for reelection?",
    "question_th": "ประธานกรรมการที่เข้ารับตำแหน่งหลังปี 2554 จะได้รับการเลือกตั้งใหม่ในปีแรกสุดคือปีใด?",
    "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_en": "What year had less than 36 laps?",
    "question_th": "ปีไหนมีรอบน้อยกว่า 36 รอบ?",
    "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_en": "What was the most laps with a finish of 10 and qualification of 106.185?",
    "question_th": "รอบใดมากที่สุดโดยจบ 10 และผ่านเข้ารอบ 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_en": "What is the most laps with a qualification of 106.185?",
    "question_th": "รอบมากที่สุดด้วยคุณสมบัติ 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_en": "In what year were laps less than 64 and the finish at 25?",
    "question_th": "ในปีใดที่มีรอบน้อยกว่า 64 และจบที่ 25?",
    "context": "CREATE TABLE table_name_59 (year VARCHAR, laps VARCHAR, finish VARCHAR)"
  },
  {
    "answer": "SELECT qual FROM table_name_51 WHERE year = \"1932\"",
    "question_en": "What was the qualification in 1932?",
    "question_th": "วุฒิการศึกษาในปี พ.ศ. 2475 คืออะไร?",
    "context": "CREATE TABLE table_name_51 (qual VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT start FROM table_name_12 WHERE rank = \"3\" AND year = \"1936\"",
    "question_en": "What was the start with a rank of  3 in 1936?",
    "question_th": "เริ่มต้นด้วยอันดับ 3 ในปี 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_en": "For a Team 1 of Al-Merrikh, what was the aggregate?",
    "question_th": "สำหรับทีมที่ 1 ของ Al-Merrikh ผลรวมเป็นเท่าไหร่?",
    "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_en": "For an aggregate of 1-3, what was the 2nd leg?",
    "question_th": "รวม 1-3 นัดที่ 2 ได้เท่าไร?",
    "context": "CREATE TABLE table_name_74 (agg VARCHAR)"
  },
  {
    "answer": "SELECT 2 AS nd_leg FROM table_name_96 WHERE team_2 = \"al-faisaly\"",
    "question_en": "For a team 2 of Al-Faisaly, what was the 2nd leg?",
    "question_th": "สำหรับทีมที่ 2 ของอัล-ไฟซาลี เลกที่ 2 คืออะไร?",
    "context": "CREATE TABLE table_name_96 (team_2 VARCHAR)"
  },
  {
    "answer": "SELECT years FROM table_name_90 WHERE area = \"upper hutt\" AND authority = \"private\"",
    "question_en": "What years is the private school in upper hutt?",
    "question_th": "โรงเรียนเอกชนในอัปเปอร์ฮัตต์เปิดกี่ปี?",
    "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_en": "What school with a decile of 7 is in upper hutt?",
    "question_th": "Upper Hutt โรงเรียนใดที่มี Decile 7 อยู่?",
    "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_en": "What authority is the coed school in pinehaven?",
    "question_th": "โรงเรียนนิสิตในไพน์เฮเวนมีอำนาจอะไร?",
    "context": "CREATE TABLE table_name_58 (authority VARCHAR, gender VARCHAR, area VARCHAR)"
  },
  {
    "answer": "SELECT years FROM table_name_96 WHERE name = \"plateau school\"",
    "question_en": "What years does plateau school serve?",
    "question_th": "โรงเรียนที่ราบสูงเปิดสอนกี่ปี?",
    "context": "CREATE TABLE table_name_96 (years VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT authority FROM table_name_2 WHERE name = \"upper valley middle school\"",
    "question_en": "Is Upper valley middle school public or private?",
    "question_th": "โรงเรียนมัธยมต้น Upper Valley เป็นของรัฐหรือเอกชน?",
    "context": "CREATE TABLE table_name_2 (authority VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_57 WHERE date = \"june 13\"",
    "question_en": "What is the record on June 13?",
    "question_th": "บันทึกประจำวันที่ 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_en": "Name the most lot number with notes of b4 bogies and diagram of 185",
    "question_th": "ตั้งชื่อหมายเลขล็อตที่มากที่สุดด้วยหมายเหตุของโบกี้ b4 และแผนภาพ 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_en": "Name the fleet numbers for diagram of 186 and lot number of 30798",
    "question_th": "ตั้งชื่อหมายเลขกองเรือสำหรับแผนภาพ 186 และหมายเลขล็อต 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_en": "What line is 24.7 km and head towards Toyohashi East?",
    "question_th": "ระยะทาง 24.7 กม. และมุ่งหน้าไปยังโทโยฮาชิตะวันออก?",
    "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_en": "What is the record on November 18?",
    "question_th": "บันทึกเมื่อวันที่ 18 พฤศจิกายน คืออะไร?",
    "context": "CREATE TABLE table_name_26 (record VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT AVG(attendance) FROM table_name_22 WHERE home = \"chicago bears\"",
    "question_en": "What was the average attendance when Chicago Bears were the home team?",
    "question_th": "ผู้เข้าร่วมโดยเฉลี่ยเมื่อ Chicago Bears เป็นทีมเหย้าคือเท่าใด",
    "context": "CREATE TABLE table_name_22 (attendance INTEGER, home VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_52 WHERE record = \"5-4-1\"",
    "question_en": "What is the score when the record is 5-4-1?",
    "question_th": "เมื่อสถิติเป็น 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_en": "What is the largest number in attendance when the record is 1-1-0?",
    "question_th": "จำนวนผู้เข้าร่วมมากที่สุดเมื่อบันทึกคือ 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_en": "What is the GDP of the nation with 56,210,000 people?",
    "question_th": "GDP ของประเทศที่มีประชากร 56,210,000 คนเป็นเท่าใด?",
    "context": "CREATE TABLE table_name_77 (gdp_per_capita__us$_ VARCHAR, population VARCHAR)"
  },
  {
    "answer": "SELECT area__km²_ FROM table_name_11 WHERE gdp_per_capita__us$_ = \"11,929\"",
    "question_en": "What is the area of the nation with GDP per capita (US$) of 11,929?",
    "question_th": "พื้นที่ของประเทศที่มี GDP ต่อหัว (US$) เท่ากับ 11,929 คือเท่าใด",
    "context": "CREATE TABLE table_name_11 (area__km²_ VARCHAR, gdp_per_capita__us$_ VARCHAR)"
  },
  {
    "answer": "SELECT population FROM table_name_99 WHERE gdp_per_capita__us$_ = \"11,929\"",
    "question_en": "What is the population of the nation that has a GDP per capita (US$) of 11,929?",
    "question_th": "ประชากรของประเทศที่มี GDP ต่อหัว (US$) เท่ากับ 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²_ = \"70,273\"",
    "question_en": "What is the Population of the nation that has an Area (km²) of 70,273?",
    "question_th": "ประชากรของประเทศที่มีพื้นที่ (กม. ²) เท่ากับ 70,273 คือข้อใด",
    "context": "CREATE TABLE table_name_31 (population VARCHAR, area__km²_ VARCHAR)"
  },
  {
    "answer": "SELECT population FROM table_name_68 WHERE member_countries = \"existing members (1973)\"",
    "question_en": "What is the Population of the nation that has a Member countries consisting of existing members (1973)?",
    "question_th": "ประชากรของประเทศที่มีประเทศสมาชิกประกอบด้วยสมาชิกที่มีอยู่ (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_en": "What television network, founded in 2002, has a community type of network?",
    "question_th": "เครือข่ายโทรทัศน์ใดที่ก่อตั้งในปี 2545 มีเครือข่ายประเภทชุมชน",
    "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_en": "At what stadium did the Green Bay Packers play an away game?",
    "question_th": "Green Bay Packers เล่นเกมเยือนที่สนามใด?",
    "context": "CREATE TABLE table_name_67 (stadium VARCHAR, visiting_team VARCHAR)"
  },
  {
    "answer": "SELECT stadium FROM table_name_60 WHERE final_score = \"31-28\"",
    "question_en": "At what stadium was the final score 31-28?",
    "question_th": "สกอร์สุดท้าย 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_en": "Which team hosted the Kansas City Chiefs?",
    "question_th": "ทีมใดเป็นเจ้าภาพ 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_en": "What team hosted at Tampa Stadium?",
    "question_th": "ทีมใดเป็นเจ้าภาพที่แทมปาสเตเดียม?",
    "context": "CREATE TABLE table_name_75 (host_team VARCHAR, stadium VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_89 WHERE record = \"43-26\"",
    "question_en": "With a record of 43-26, what was the score that game?",
    "question_th": "ด้วยสถิติ 43-26 เกมนั้นสกอร์เท่าไหร่?",
    "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_en": "On June 8, what's the loss when the Blue Jays played the Tigers?",
    "question_th": "วันที่ 8 มิ.ย. เมื่อ บลูเจย์ส เจอกับ ไทเกอร์ แพ้อะไร?",
    "context": "CREATE TABLE table_name_58 (loss VARCHAR, opponent VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_71 WHERE record = \"38-22\"",
    "question_en": "What date was the record 38-22?",
    "question_th": "บันทึกวันที่ 38-22 คือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_71 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_77 WHERE record = \"39-25\"",
    "question_en": "The game that had a record of 39-25, what was the score?",
    "question_th": "เกมที่มีสถิติ 39-25 สกอร์เท่าไหร่?",
    "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_en": "Which runner-up has a 10 strokes margin of victory?",
    "question_th": "รองชนะเลิศคนไหนมีแต้มชนะถึง 10 แต้ม?",
    "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_en": "Which of the events only lasted no more than 0:55?",
    "question_th": "เหตุการณ์ใดเกิดขึ้นเพียงไม่เกิน 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_en": "Which event only lasted for 3 rounds against Fernando Terere?",
    "question_th": "รายการไหนเจอกับเฟอร์นันโด เทเรเรแค่ 3 นัดเท่านั้น",
    "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_en": "What is the Primary Sponsor for the team owned by Randy Humphrey?",
    "question_th": "ผู้สนับสนุนหลักสำหรับทีมที่แรนดี้ ฮัมฟรีย์เป็นเจ้าของคืออะไร",
    "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_en": "Who is the Driver on Bob Keselowski's team?",
    "question_th": "ใครคือนักแข่งในทีมของ Bob Keselowski?",
    "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_en": "Walter Giles is Crew Chief of what team?",
    "question_th": "Walter Giles เป็นหัวหน้าลูกเรือของทีมใด",
    "context": "CREATE TABLE table_name_50 (team VARCHAR, crew_chief VARCHAR)"
  },
  {
    "answer": "SELECT club FROM table_name_34 WHERE stadium = \"stc krymteplitsia\"",
    "question_en": "What club does the stadium stc krymteplitsia belong to?",
    "question_th": "สนามกีฬา stc krymteplitsia สังกัดสโมสรใด?",
    "context": "CREATE TABLE table_name_34 (club VARCHAR, stadium VARCHAR)"
  },
  {
    "answer": "SELECT qual FROM table_name_61 WHERE year = \"1947\"",
    "question_en": "What was Tony Bettenhausen's qualifying time in 1947?",
    "question_th": "เวลาคัดเลือกของ Tony Bettenhausen ในปี 1947 คืออะไร?",
    "context": "CREATE TABLE table_name_61 (qual VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_43 WHERE laps > 200",
    "question_en": "Which year did Tony Bettenhausen complete more than 200 laps?",
    "question_th": "Tony Bettenhausen ทำได้เกิน 200 รอบในปีใด",
    "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_en": "What was the value in 2006 when 2003 was not held and 2012 was A?",
    "question_th": "มูลค่าในปี 2549 เมื่อปี 2546 ไม่ได้จัดขึ้นและปี 2555 เป็น A คืออะไร",
    "context": "CREATE TABLE table_name_40 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2008 FROM table_name_35 WHERE 2012 = \"grand slam tournaments\"",
    "question_en": "What was the 2008 value when 2012 was Grand Slam Tournaments?",
    "question_th": "มูลค่าปี 2008 คืออะไรเมื่อปี 2012 เป็นการแข่งขัน Grand Slam",
    "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_en": "What was the value in 2008 when 2012 was 1R, 2010 was A, and 2005 was A?",
    "question_th": "ค่าในปี 2551 เป็นเท่าใดเมื่อปี 2555 เป็น 1R ปี 2553 เป็น A และปี 2548 เป็น A",
    "context": "CREATE TABLE table_name_1 (Id VARCHAR)"
  },
  {
    "answer": "SELECT 2003 FROM table_name_86 WHERE 2006 = \"wta premier mandatory tournaments\"",
    "question_en": "What was the value in 2003 when 2006 was WTA Premier Mandatory Tournaments?",
    "question_th": "มูลค่าในปี 2546 เมื่อปี 2549 เป็น 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_en": "What was the value in 2009 when 2005 was A for the Australian Open?",
    "question_th": "อะไรคือมูลค่าในปี 2009 เมื่อปี 2005 เป็น A สำหรับ Australian Open?",
    "context": "CREATE TABLE table_name_5 (tournament VARCHAR)"
  },
  {
    "answer": "SELECT 2012 FROM table_name_83 WHERE 2002 = \"q1\" AND 2010 = \"1r\"",
    "question_en": "What was the value in 2012 when 2002 was Q1 and 2010 was 1R?",
    "question_th": "มูลค่าในปี 2555 เมื่อปี 2545 เป็นไตรมาสที่ 1 และปี 2553 เป็น 1R คืออะไร",
    "context": "CREATE TABLE table_name_83 (Id VARCHAR)"
  },
  {
    "answer": "SELECT type FROM table_name_15 WHERE gnis_id = 1139805",
    "question_en": "What type has a GNIS ID of 1139805",
    "question_th": "ประเภทใดมี GNIS ID 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_en": "Which name has a USGS Map of clear lake?",
    "question_th": "ชื่อใดมีแผนที่ USGS ของทะเลสาบใส?",
    "context": "CREATE TABLE table_name_85 (name VARCHAR, usgs_map VARCHAR)"
  },
  {
    "answer": "SELECT status FROM table_name_31 WHERE name = \"norris\"",
    "question_en": "What is the status of Norris?",
    "question_th": "สถานะของนอร์ริสคืออะไร?",
    "context": "CREATE TABLE table_name_31 (status VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT source FROM table_name_18 WHERE name = \"laird\"",
    "question_en": "What is the source for Laird?",
    "question_th": "แหล่งที่มาของ Laird คืออะไร?",
    "context": "CREATE TABLE table_name_18 (source VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT 1958 AS _cié FROM table_name_69 WHERE class = \"s\"",
    "question_en": "What 1958 CIE is class s?",
    "question_th": "CIE ปี 1958 คือคลาส s คืออะไร",
    "context": "CREATE TABLE table_name_69 (class VARCHAR)"
  },
  {
    "answer": "SELECT date_withdrawn FROM table_name_96 WHERE fleet_numbers = \"12, 25, 42–46, 50, 70–71, 74–77, 106–107, 129\"",
    "question_en": "What day withdrawn is associated with fleet numbers of 12, 25, 42–46, 50, 70–71, 74–77, 106–107, 129?",
    "question_th": "วันใดที่ถอนออกเกี่ยวข้องกับจำนวนกองเรือ 12, 25, 42–46, 50, 70–71, 74–77, 106–107, 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_en": "Which player has a score of 74-74-73-70=291?",
    "question_th": "นักเตะคนไหนมีคะแนน 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_en": "What is the average earnings of a United States player who had a score of 72-68-74-72=286?",
    "question_th": "รายได้เฉลี่ยของผู้เล่นชาวสหรัฐอเมริกาที่มีคะแนน 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_en": "What was the attendance at the game that had a loss of Mercker (3-1)?",
    "question_th": "การมีส่วนร่วมในเกมที่แพ้เมอร์เกอร์ (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_en": "What was the attendance at the game that had a loss of Ayala (6-12)?",
    "question_th": "การมีส่วนร่วมในเกมที่แพ้อายาล่า (6-12) เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_49 (attendance VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_65 WHERE score = \"9-7\"",
    "question_en": "What was the loss of the game that had a score of 9-7?",
    "question_th": "เกมที่สกอร์ 9-7 แพ้เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_65 (loss VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_62 WHERE attendance = \"14,691\"",
    "question_en": "What was the loss of the game attended by 14,691?",
    "question_th": "การแพ้ของเกมที่มีผู้เข้าร่วม 14,691 คนคืออะไร?",
    "context": "CREATE TABLE table_name_62 (loss VARCHAR, attendance VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_21 WHERE attendance = \"29,704\"",
    "question_en": "What was the loss of the game attended by 29,704?",
    "question_th": "การสูญเสียของเกมที่มีผู้เข้าร่วม 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_en": "What is the Winner, when the Location is Clemson, SC, and when the Date is November 17, 2012?",
    "question_th": "ผู้ชนะคืออะไร เมื่อสถานที่คือ Clemson, SC และวันที่คือ 17 พฤศจิกายน 2555",
    "context": "CREATE TABLE table_name_66 (winner VARCHAR, location VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_88 WHERE score = \"38-29\"",
    "question_en": "What is the Location, when the Score is 38-29?",
    "question_th": "ทำเลไหนเมื่อคะแนนอยู่ที่ 38-29?",
    "context": "CREATE TABLE table_name_88 (location VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT location FROM table_name_63 WHERE score = \"35-31\"",
    "question_en": "What is the Location, when the Score is 35-31?",
    "question_th": "ทำเลไหนเมื่อคะแนนอยู่ที่ 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_en": "What is the Score, when the Location is Clemson, SC, when the Winner is Clemson, and when the Date is November 11, 2006?",
    "question_th": "คะแนนคืออะไร เมื่อสถานที่คือ Clemson, SC เมื่อผู้ชนะคือ Clemson และวันที่คือ 11 พฤศจิกายน 2549",
    "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_en": "What was the game result on November 16, 1969?",
    "question_th": "ผลการแข่งขันในวันที่ 16 พฤศจิกายน พ.ศ. 2512 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_83 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT general_classification FROM table_name_99 WHERE stage = \"3\"",
    "question_en": "What is the general classification of stage 3",
    "question_th": "การจำแนกประเภททั่วไปของระยะที่ 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_en": "How many points did lech piasecki, stephen roche, and carrera jeans-vagabond have?",
    "question_th": "เลช เปียเซคกี, สตีเฟน โรช และคาร์เรรา ยีนส์-เวกาบอนด์ ได้กี่คะแนน?",
    "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_en": "What venue was the 11 September 2012 game?",
    "question_th": "เกมวันที่ 11 กันยายน 2555 จัดขึ้นที่ใด?",
    "context": "CREATE TABLE table_name_23 (venue VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT MIN(decile) FROM table_name_40 WHERE roll < 3",
    "question_en": "What is the lowest Decile for a school with a roll smaller than 3?",
    "question_th": "Decile ต่ำสุดสำหรับโรงเรียนที่มีม้วนน้อยกว่า 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_en": "What is the Gender of students at a school with a Decile of 5 and a Roll of 90?",
    "question_th": "เพศของนักเรียนในโรงเรียนที่มี Decile 5 และ Roll 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_en": "Name the Years of schools with a Roll Larger than 23 and a Decile greater than 5.",
    "question_th": "ตั้งชื่อปีของโรงเรียนด้วยจำนวนม้วนที่มากกว่า 23 และเดซิลที่มากกว่า 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_en": "What is the total number of Rolls of State schools in Hapuku with a Decile greater than 4?",
    "question_th": "จำนวนโรงเรียน Rolls of State ใน Hapuku ที่มี Decile มากกว่า 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_en": "What is the D45 associated with a D42 of r 22?",
    "question_th": "D45 เกี่ยวข้องกับ D42 ของ 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_en": "What is the D43 associated with a D41 of r 21?",
    "question_th": "D43 เกี่ยวข้องกับ D41 ของ 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_en": "What is the D42 associated with a D47 of d 27?",
    "question_th": "D42 เกี่ยวข้องกับ D47 ของ 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_en": "What is the D43 associated with a D41 of r 16?",
    "question_th": "D43 เกี่ยวข้องกับ D41 ของ 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–13)\"",
    "question_en": "What is the record for the game when the loss was hargan (14–13)?",
    "question_th": "อะไรคือสถิติของเกมเมื่อแพ้ฮาร์แกน (14–13)?",
    "context": "CREATE TABLE table_name_84 (record VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_10 WHERE score = \"7–5\"",
    "question_en": "What is the record for the game with a score of 7–5?",
    "question_th": "สถิติของเกมด้วยคะแนน 7–5 คืออะไร?",
    "context": "CREATE TABLE table_name_10 (record VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_4 WHERE loss = \"aker (3–8)\"",
    "question_en": "What date was the game with  loss of Aker (3–8)?",
    "question_th": "เกมที่แพ้เอเคอร์ (3–8) คือวันไหน?",
    "context": "CREATE TABLE table_name_4 (date VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_86 WHERE score = \"7–1\"",
    "question_en": "What team was the opponent when the score was 7–1?",
    "question_th": "ทีมใดเป็นคู่ต่อสู้เมื่อสกอร์ 7–1?",
    "context": "CREATE TABLE table_name_86 (opponent VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_18 WHERE opponent = \"orioles\" AND loss = \"morehead (5–4)\"",
    "question_en": "What was the score when the opponent was the Orioles and the loss shows morehead (5–4)?",
    "question_th": "คะแนนเมื่อคู่ต่อสู้คือ Orioles และความพ่ายแพ้แสดงให้เห็นมากกว่า (5–4)?",
    "context": "CREATE TABLE table_name_18 (score VARCHAR, opponent VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_35 WHERE record = \"60-61\"",
    "question_en": "Name the opponent with a record of 60-61",
    "question_th": "ตั้งชื่อคู่ต่อสู้ด้วยสถิติ 60-61",
    "context": "CREATE TABLE table_name_35 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_94 WHERE perfection = \"77.96%\"",
    "question_en": "Who had a perfection percentage of 77.96%?",
    "question_th": "ใครมีเปอร์เซ็นต์ความสมบูรณ์แบบ 77.96%?",
    "context": "CREATE TABLE table_name_94 (name VARCHAR, perfection VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_46 WHERE name = \"svetlana fedorenko\"",
    "question_en": "What was the rank of Svetlana Fedorenko?",
    "question_th": "Svetlana Fedorenko มีอันดับเท่าไหร่?",
    "context": "CREATE TABLE table_name_46 (rank VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_62 WHERE perfection = \"73.24%\"",
    "question_en": "Who had a perfection percentage of 73.24%?",
    "question_th": "ใครมีเปอร์เซ็นต์ความสมบูรณ์แบบ 73.24%?",
    "context": "CREATE TABLE table_name_62 (name VARCHAR, perfection VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_38 WHERE date = \"june 1\"",
    "question_en": "What was the score of the game on June 1?",
    "question_th": "สกอร์เกมวันที่ 1 มิถุนายน เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_38 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_6 WHERE opponent = \"andrei pavel\"",
    "question_en": "What was the score against andrei pavel?",
    "question_th": "คะแนนเทียบกับ Andrei Pavel คืออะไร?",
    "context": "CREATE TABLE table_name_6 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_52 WHERE tournament = \"bologna\"",
    "question_en": "When was the tournament of bologna?",
    "question_th": "การแข่งขันโบโลญญาคือเมื่อไหร่?",
    "context": "CREATE TABLE table_name_52 (date VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_31 WHERE surface = \"clay\" AND score = \"6–1, 7–6\"",
    "question_en": "Who played on clay and had a score of 6–1, 7–6?",
    "question_th": "ใครเล่นบนดินเหนียวและมีคะแนน 6–1, 7–6?",
    "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_en": "Who played on clay on 3 march 2012?",
    "question_th": "ใครเล่นบนดินเหนียวในวันที่ 3 มีนาคม 2555?",
    "context": "CREATE TABLE table_name_16 (opponent VARCHAR, surface VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_66 WHERE opponent = \"fabrice martin\"",
    "question_en": "What was the score against fabrice martin?",
    "question_th": "ฟาบริซ มาร์ตินทำสกอร์เท่าไหร่?",
    "context": "CREATE TABLE table_name_66 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_58 WHERE score = \"7–5, 3–6, 7–6\"",
    "question_en": "What was the surface of the score of 7–5, 3–6, 7–6?",
    "question_th": "พื้นผิวของคะแนน 7–5, 3–6, 7–6 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_58 (surface VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT order FROM table_name_61 WHERE elector = \"marino bulcani\"",
    "question_en": "What's the Order with an Elector of Marino Bulcani?",
    "question_th": "ลำดับของผู้มีสิทธิเลือกตั้งของ 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_en": "What's the Elevator that has Elevated: 1378, September 18, an Order of Cardinal-Priest, and an Elector of Poncello Orsini?",
    "question_th": "ลิฟต์ที่ยกระดับคืออะไร: 1378, 18 กันยายน, เครื่องราชอิสริยาภรณ์ของพระคาร์ดินัล-นักบวช และผู้มีสิทธิเลือกของปอนเชลโล ออร์ซินี",
    "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_en": "What is listed as the Elector with the Title of Deacon of S. Maria in Domnica?",
    "question_th": "สิ่งใดที่ได้รับการระบุว่าเป็นผู้มีสิทธิเลือกตั้งซึ่งมีตำแหน่งสังฆานุกรของเอส. มาเรียในดอมนิกา",
    "context": "CREATE TABLE table_name_62 (elector VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT elevated FROM table_name_78 WHERE order = \"cardinal-bishop\"",
    "question_en": "What's listed for the Elevated category that has an Order of Cardinal-Bishop?",
    "question_th": "มีอะไรอยู่ในหมวดหมู่ระดับสูงที่มีเครื่องราชอิสริยาภรณ์พระคาร์ดินัล-บิชอป?",
    "context": "CREATE TABLE table_name_78 (elevated VARCHAR, order VARCHAR)"
  },
  {
    "answer": "SELECT division_record FROM table_name_79 WHERE school = \"milford\"",
    "question_en": "The Milford School has what Division Record?",
    "question_th": "โรงเรียนมิลฟอร์ดมีประวัติแผนกอะไรบ้าง",
    "context": "CREATE TABLE table_name_79 (division_record VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_29 WHERE school = \"sussex tech\"",
    "question_en": "What is the name of the School of the Sussex Tech's Team?",
    "question_th": "ทีมงาน School of the Sussex Tech ชื่ออะไร?",
    "context": "CREATE TABLE table_name_29 (team VARCHAR, school VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_5 WHERE player = \"arnold palmer\"",
    "question_en": "What was Arnold Palmer's score in the tournamnet?",
    "question_th": "คะแนนของ Arnold Palmer ในทัวร์นาเมนท์คือเท่าไร?",
    "context": "CREATE TABLE table_name_5 (score VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_name_31 WHERE member = \"peter white\"",
    "question_en": "What the name of Peter White's party?",
    "question_th": "ปาร์ตี้ของปีเตอร์ ไวท์ชื่ออะไร?",
    "context": "CREATE TABLE table_name_31 (party VARCHAR, member VARCHAR)"
  },
  {
    "answer": "SELECT term_in_office FROM table_name_73 WHERE electorate = \"indi\"",
    "question_en": "What term did an Electorate of indi have in office?",
    "question_th": "ผู้มีสิทธิเลือกตั้งของอินเดียดำรงตำแหน่งวาระใด",
    "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_en": "What term did hon ralph hunt serve in office?",
    "question_th": "ฮอน ราล์ฟ ฮันท์ ดำรงตำแหน่งในวาระใด",
    "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_en": "What party is Peter Fisher from Vic serve in office?",
    "question_th": "Peter Fisher จาก Vic ดำรงตำแหน่งในงานปาร์ตี้ใด",
    "context": "CREATE TABLE table_name_65 (party VARCHAR, state VARCHAR, member VARCHAR)"
  },
  {
    "answer": "SELECT SUM(laps) FROM table_name_26 WHERE year = 2012",
    "question_en": "How many laps were done in 2012?",
    "question_th": "ปี 2555 วิ่งไปกี่รอบแล้ว?",
    "context": "CREATE TABLE table_name_26 (laps INTEGER, year VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_12 WHERE score = \"1–6 6–1 3–6\"",
    "question_en": "On what day was the score of 1–6 6–1 3–6 achieved?",
    "question_th": "คะแนน 1–6 6–1 3–6 บรรลุวันไหน?",
    "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_en": "Name the average gold for czech republic and bronze less than 1 when total is less than 14",
    "question_th": "ตั้งชื่อทองคำเฉลี่ยสำหรับสาธารณรัฐเช็กและทองแดงน้อยกว่า 1 เมื่อรวมน้อยกว่า 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_en": "Name the highest rank when silver is 4 and bronze is less than 3",
    "question_th": "ตั้งชื่ออันดับสูงสุดเมื่อเงินคือ 4 และทองแดงน้อยกว่า 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_en": "Name the total number of total for bronze of 4 and silver more than 6",
    "question_th": "ตั้งชื่อจำนวนรวมสำหรับเหรียญทองแดงคือ 4 และเงินมากกว่า 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_en": "When the Surface was Carpet (i), what was the Outcome?",
    "question_th": "เมื่อพื้นผิวเป็นพรม (i) ผลลัพธ์คืออะไร",
    "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_en": "What is the draw number of the song with a place lower than 6 and more than 38 votes?",
    "question_th": "เพลงที่ได้คะแนนต่ำกว่า 6 และมากกว่า 38 โหวตมีเลขอะไร?",
    "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_en": "What is the total number of votes Sahlene with a place below 1 has?",
    "question_th": "Sahlene ที่มีคะแนนโหวตต่ำกว่า 1 มีคะแนนโหวตทั้งหมดเท่าใด?",
    "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_en": "What is the highest place of the song with 38 votes and a draw great than 3?",
    "question_th": "เพลงไหนได้คะแนนโหวตสูงสุด 38 คะแนน และเสมอกันมากกว่า 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_en": "How many votes did Yvetta Kadakas & Ivo Linna, who had less than 4 draws, have?",
    "question_th": "อีเวตต้า คาดากัส และ อิโว ลินนา ที่เสมอกันไม่ถึง 4 โหวตได้กี่คะแนน?",
    "context": "CREATE TABLE table_name_93 (votes INTEGER, draw VARCHAR, artist VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_27 WHERE finish = \"3\"",
    "question_en": "What year was there a finish of 3?",
    "question_th": "จบม.3ปีไหนคะ?",
    "context": "CREATE TABLE table_name_27 (year VARCHAR, finish VARCHAR)"
  },
  {
    "answer": "SELECT SUM(year) FROM table_name_97 WHERE start = \"33\"",
    "question_en": "What year was the start 33?",
    "question_th": "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_en": "When was there a team of Simon and the start was 3?",
    "question_th": "เมื่อไหร่จะมีทีมไซม่อนและออกสตาร์ทตี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_en": "What's the name of the 1985 city with a Spire (m) of 105, and a Roof (m) smaller than 96?",
    "question_th": "เมืองในปี 1985 ที่มียอดแหลม (ม.) เท่ากับ 105 และหลังคา (ม.) เล็กกว่า 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_en": "What's the average number of floors that were built in 2004, and have a roof (m) of 106?",
    "question_th": "จำนวนชั้นเฉลี่ยที่สร้างขึ้นในปี 2547 และมีหลังคา (ม.) คือเท่าไร?",
    "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_en": "What's the total number of floors built after 2006, and have a rank of 12?",
    "question_th": "จำนวนชั้นทั้งหมดที่สร้างขึ้นหลังปี 2549 และมีอันดับที่ 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_en": "What is the sum of attendance for H/A values of \"n\"?",
    "question_th": "ผลรวมของการเข้างานสำหรับค่า H/A ของ \"n\" เป็นเท่าใด",
    "context": "CREATE TABLE table_name_80 (attendance INTEGER, h___a VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_85 WHERE opponent = \"stefano galvani\"",
    "question_en": "Name the score which has opponent of stefano galvani",
    "question_th": "ทายชื่อสกอร์ที่มีคู่ต่อสู้ของสเตฟาโน กัลวานี่",
    "context": "CREATE TABLE table_name_85 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_44 WHERE opponent = \"javier genaro-martinez\"",
    "question_en": "Name the score with opponent of javier genaro-martinez",
    "question_th": "ทายสกอร์กับคู่ต่อสู้ของ ฮาเวียร์ เกนาโร-มาร์ติเนซ",
    "context": "CREATE TABLE table_name_44 (score VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_58 WHERE tournament = \"dunlop world challenge\"",
    "question_en": "Name the outcome for dunlop world challenge",
    "question_th": "ตั้งชื่อผลลัพธ์สำหรับการแข่งขัน 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_en": "Who was the visiting team on December 6?",
    "question_th": "ทีมเยือนวันที่ 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_en": "Who was the host team on October 4?",
    "question_th": "ทีมเจ้าภาพวันที่ 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_en": "In New Zealand, what's the value that has an unknown date and is an energy business?",
    "question_th": "ในนิวซีแลนด์ มูลค่าที่ไม่ทราบวันที่และเป็นธุรกิจพลังงานคือเท่าไร?",
    "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_en": "What company has an unknown date and is an energy business?",
    "question_th": "บริษัทใดไม่ทราบวันที่และเป็นธุรกิจพลังงาน?",
    "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_en": "In the United Kingdom, what company has an unknown date and is an energy business?",
    "question_th": "ในสหราชอาณาจักร บริษัทใดไม่ทราบวันที่และเป็นธุรกิจพลังงาน",
    "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_en": "For the United Kingdom, what's the date?",
    "question_th": "สำหรับสหราชอาณาจักรคือวันที่เท่าไหร่?",
    "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_en": "For the Enernoc Australia Pty Ltd, what's the country with an unknown date?",
    "question_th": "สำหรับ Enernoc Australia Pty Ltd ประเทศใดที่ไม่ทราบวันที่คือ?",
    "context": "CREATE TABLE table_name_15 (country VARCHAR, date VARCHAR, company VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_29 WHERE venue = \"luxembourg\"",
    "question_en": "Which date is associated with a venue of Luxembourg?",
    "question_th": "วันใดที่เกี่ยวข้องกับสถานที่จัดงานของลักเซมเบิร์ก?",
    "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_en": "What is the year with a Kurtis Kraft 500a chassis, and less than 1.5 points?",
    "question_th": "ปีไหนที่มีแชสซี Kurtis Kraft 500a และน้อยกว่า 1.5 แต้มคือปีไหน?",
    "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_en": "What is the year with a kurtis kraft 500a chassis?",
    "question_th": "แชสซี kurtis kraft 500a ปีอะไร?",
    "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_en": "What is the lowest Pick # of Saint Vincent College?",
    "question_th": "ตัวเลือกต่ำสุด # ของ 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_en": "What is the Overall for Pick # less than 5 Jack Harmon?",
    "question_th": "ภาพรวมของ Pick # น้อยกว่า 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__€_bn__ = \"€11.243\"",
    "question_en": "Which rank has a Total GDP (€ bn) of €11.243??",
    "question_th": "อันดับใดที่มี GDP รวม (€ bn) ที่ €11.243??",
    "context": "CREATE TABLE table_name_98 (rank VARCHAR, total_gdp__€_bn__ VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_name_58 WHERE total_gdp__€_bn__ = \"€11,745.353\"",
    "question_en": "What is the Region that has a Total GDP (€ bn ) of €11,745.353?",
    "question_th": "ภูมิภาคใดที่มี GDP รวม (€ พันล้าน) เท่ากับ €11,745.353?",
    "context": "CREATE TABLE table_name_58 (region VARCHAR, total_gdp__€_bn__ VARCHAR)"
  },
  {
    "answer": "SELECT region FROM table_name_24 WHERE _percentage_growth = \"−3.6\"",
    "question_en": "Which Region that has a growth of −3.6%?",
    "question_th": "ภูมิภาคใดที่มีการเติบโต −3.6%?",
    "context": "CREATE TABLE table_name_24 (region VARCHAR, _percentage_growth VARCHAR)"
  },
  {
    "answer": "SELECT per_capita FROM table_name_42 WHERE region = \"greece\"",
    "question_en": "What is the per capita of Greece?",
    "question_th": "ค่าหัวของกรีซต่อหัวคือเท่าไร?",
    "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_en": "What is the fewest number of silver medals received by a nation who received 40 bronze medals and more than 42 gold medals?",
    "question_th": "ประเทศที่ได้ 40 เหรียญทองแดง และมากกว่า 42 เหรียญทอง มีจำนวนเหรียญเงินน้อยที่สุดคือเท่าใด",
    "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_en": "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?",
    "question_th": "จำนวนเหรียญเงินต่ำสุดที่ออสเตรียได้รับเมื่อได้รับทั้งหมดมากกว่า 3 เหรียญ, เหรียญทองแดงมากกว่า 22 เหรียญ และเหรียญทองน้อยกว่า 395 เหรียญคือเท่าใด",
    "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_en": "What is the average number of silver medals with more than 6 gold meals and less than 5 bronze medals?",
    "question_th": "จำนวนเหรียญเงินโดยเฉลี่ยที่มีอาหารมากกว่า 6 เหรียญทองและน้อยกว่า 5 เหรียญทองแดงคือเท่าใด",
    "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_en": "How many ranks are for Switzerland with more than 2 total medals?",
    "question_th": "สวิตเซอร์แลนด์มีเหรียญรางวัลรวมมากกว่า 2 อันดับมีกี่อันดับ",
    "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_en": "What is the event of the match with a round larger than 2 and ended with a method of ko (kick)?",
    "question_th": "เหตุการณ์การแข่งขันที่มีรอบมากกว่า 2 และจบลงด้วยวิธีโก (เตะ) คืออะไร?",
    "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_en": "What is the method of the match after round 1 in the k-1 andy memorial 2001 japan gp final?",
    "question_th": "วิธีการแข่งขันหลังยกที่ 1 ในการแข่งขัน 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_en": "What is the highest round of the match with Rene Rooze as the opponent in Saitama, Japan?",
    "question_th": "รอบสูงสุดของแมตช์ที่มี Rene Rooze เป็นคู่ต่อสู้ที่ไซตามะ ประเทศญี่ปุ่น คืออะไร?",
    "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_en": "What is the highest round of the match with a time of 0:57?",
    "question_th": "แมตช์สูงสุดรอบไหนด้วยเวลา 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_en": "How many points did the Club score that has a try bonus of 7 and 52 tries for ?",
    "question_th": "คลับทำคะแนนได้กี่คะแนนโดยมีโบนัสลอง 7 และ 52 ครั้ง",
    "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_en": "What is the Losing bonus of the club that has 80 tries against ?",
    "question_th": "โบนัสการแพ้ของสโมสรที่มีการลองเล่น 80 ครั้งคืออะไร?",
    "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_en": "How many tries for does waunarlwydd rfc have ?",
    "question_th": "waunarlwydd rfc มีความพยายามกี่ครั้ง?",
    "context": "CREATE TABLE table_name_2 (tries_for VARCHAR, club VARCHAR)"
  },
  {
    "answer": "SELECT lost FROM table_name_7 WHERE points = \"47\"",
    "question_en": "How many losses did the club with 47 points have ?",
    "question_th": "สโมสรที่มี 47 แต้ม แพ้ไปกี่ครั้งแล้ว?",
    "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_en": "How many points against does the club that has a try bonus of 6 and tries against of 54 have ?",
    "question_th": "สโมสรที่ได้แต้มลองโบนัส 6 และแต้มพยายามต่อ 54 แต้มจะมีได้กี่แต้ม?",
    "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_en": "Who were the co-drivers in 2008?",
    "question_th": "ใครคือผู้ร่วมขับในปี 2551?",
    "context": "CREATE TABLE table_name_81 (co_drivers VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT pos FROM table_name_66 WHERE year = 2006",
    "question_en": "What was the position in 2006?",
    "question_th": "ปี 2549 ดำรงตำแหน่งอะไร?",
    "context": "CREATE TABLE table_name_66 (pos VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_name_32 WHERE laps = 325",
    "question_en": "What was the class when there were 325 laps?",
    "question_th": "คลาสไหนมี 325 รอบ?",
    "context": "CREATE TABLE table_name_32 (class VARCHAR, laps VARCHAR)"
  },
  {
    "answer": "SELECT english_title FROM table_name_89 WHERE year = 2001",
    "question_en": "What is the English title of the film from 2001?",
    "question_th": "ภาพยนตร์จากปี 2544 มีชื่อภาษาอังกฤษว่าอะไร?",
    "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_en": "What is the original title of the film from Japan/Taiwan before 2003?",
    "question_th": "ชื่อดั้งเดิมของภาพยนตร์จากญี่ปุ่น/ไต้หวันก่อนปี 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_en": "What is the English title of the film directed by Fernando Meirelles?",
    "question_th": "ชื่อภาษาอังกฤษของภาพยนตร์ที่กำกับโดย 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_en": "What is the country of the original title Cidade de deus?",
    "question_th": "ชื่อดั้งเดิม 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_en": "What is the earliest year of a film from Mexico?",
    "question_th": "ปีแรกของภาพยนตร์จากเม็กซิโกคือปีใด",
    "context": "CREATE TABLE table_name_44 (year INTEGER, country VARCHAR)"
  },
  {
    "answer": "SELECT AVG(year) FROM table_name_74 WHERE country = \"france/hong kong\"",
    "question_en": "What is the average year of the film from France/Hong Kong?",
    "question_th": "ปีเฉลี่ยของภาพยนตร์จากฝรั่งเศส/ฮ่องกงคือเท่าไร?",
    "context": "CREATE TABLE table_name_74 (year INTEGER, country VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_45 WHERE place = \"t3\"",
    "question_en": "Name the country for t3 place",
    "question_th": "ตั้งชื่อประเทศสำหรับสถานที่ t3",
    "context": "CREATE TABLE table_name_45 (country VARCHAR, place VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_28 WHERE to_par = \"+2\"",
    "question_en": "Name the country with +2 to par",
    "question_th": "ตั้งชื่อประเทศด้วย +2 ถึงพาร์",
    "context": "CREATE TABLE table_name_28 (country VARCHAR, to_par VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_30 WHERE player = \"colin montgomerie\"",
    "question_en": "Name the to par for colin montgomerie",
    "question_th": "ตั้งชื่อพาร์สำหรับคอลิน มอนต์โกเมอรี",
    "context": "CREATE TABLE table_name_30 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_64 WHERE country = \"scotland\"",
    "question_en": "Name the score for scotland",
    "question_th": "ตั้งชื่อคะแนนสำหรับสกอตแลนด์",
    "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_en": "What island has a population over 76, a height over 210, and an area larger than 12068?",
    "question_th": "เกาะใดมีประชากรมากกว่า 76 คน ส่วนสูงมากกว่า 210 คน และพื้นที่มากกว่า 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_en": "What is the highest population of Trondra Island in the Scalloway Islands?",
    "question_th": "ประชากรสูงสุดของเกาะ Trondra ในหมู่เกาะ Scalloway คืออะไร?",
    "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_en": "How many matches were drawn associated with a percentage of 7.14% and more than 12 losses?",
    "question_th": "มีการแข่งขันกี่นัดที่เกี่ยวข้องกับเปอร์เซ็นต์ 7.14% และแพ้มากกว่า 12 ครั้ง?",
    "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_en": "Which percentage has a first game before 1997, fewer than 2 losses, and fewer than 5 matches played?",
    "question_th": "เปอร์เซ็นต์ใดที่มีเกมแรกก่อนปี 1997 แพ้น้อยกว่า 2 นัด และเล่นน้อยกว่า 5 นัด",
    "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_en": "What is the total number of drawn matches from first game years before 2006 and fewer than 2 matches played?",
    "question_th": "จำนวนการแข่งขันที่เสมอจากเกมแรกก่อนปี 2549 และน้อยกว่า 2 นัดที่เล่นเป็นจำนวนเท่าใด",
    "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_en": "What is the highest number of losses associated with 2 matches played, a first game after 1997, and more than 0 draws?",
    "question_th": "จำนวนการแพ้สูงสุดที่เกี่ยวข้องกับ 2 นัดที่เล่น เกมแรกหลังปี 1997 และเสมอมากกว่า 0 คือเท่าใด",
    "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_en": "What is the Result of the Test match at the Edgbaston Venue on 5,6,7,8 June 1997?",
    "question_th": "ผลการแข่งขันนัดทดสอบที่สนาม Edgbaston เมื่อวันที่ 5,6,7,8 มิถุนายน 1997 เป็นอย่างไร?",
    "context": "CREATE TABLE table_name_53 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_12 WHERE venue = \"the oval\"",
    "question_en": "What is the Date of the Test match of Australia in England at The Oval Venue?",
    "question_th": "การแข่งขันนัดทดสอบของออสเตรเลียในอังกฤษที่ 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_en": "Who was the Away captain for the Test match of Australia in England where the Result was AUS by 264 runs?",
    "question_th": "ใครคือกัปตันทีมเยือนสำหรับนัดทดสอบของออสเตรเลียในอังกฤษซึ่งผลการแข่งขันคือ AUS 264 รัน?",
    "context": "CREATE TABLE table_name_56 (away_captain VARCHAR, result VARCHAR)"
  },
  {
    "answer": "SELECT home_captain FROM table_name_99 WHERE venue = \"edgbaston\"",
    "question_en": "Who was the Home captain for the Test match of Australia in England at the Edgbaston Venue?",
    "question_th": "ใครคือกัปตันทีมเหย้าสำหรับนัดทดสอบของออสเตรเลียในอังกฤษที่สนาม Edgbaston?",
    "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_en": "what is the name of the role that has co-protagonist in the notes field and the years of 2008-2009?",
    "question_th": "พระเอกร่วมวงการโน้ตและปี 2551-2552 มีชื่อว่าอะไร?",
    "context": "CREATE TABLE table_name_8 (role VARCHAR, notes VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT role FROM table_name_41 WHERE title = \"olvidarte jamas\"",
    "question_en": "What is the name of the role that has a Title of Olvidarte Jamas?",
    "question_th": "บทบาทที่มีชื่อว่า Olvidarte Jamas คืออะไร?",
    "context": "CREATE TABLE table_name_41 (role VARCHAR, title VARCHAR)"
  },
  {
    "answer": "SELECT production_company FROM table_name_45 WHERE year = \"2005\"",
    "question_en": "Which production company has the year of 2005 listed?",
    "question_th": "บริษัทผู้ผลิตใดมีรายการปี 2548 อยู่ในรายการ?",
    "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_en": "What is the name of the role that has a Title of Salud, Dinero y Amor and antagonist in the notes field?",
    "question_th": "ชื่อของบทบาทที่มีชื่อ Salud, Dinero y Amor และศัตรูในช่องโน้ตคืออะไร?",
    "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_en": "What is the name of the production company that has a year of 2008-2009?",
    "question_th": "บริษัทผู้ผลิตที่มีปี 2551-2552 ชื่ออะไร",
    "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_en": "What is the Authority for Kuranui Primary School that is located in the Area of Tirau?",
    "question_th": "หน่วยงานกำกับดูแลโรงเรียนประถมศึกษาคุรานุยที่ตั้งอยู่ในเขตติราอูคืออะไร?",
    "context": "CREATE TABLE table_name_82 (authority VARCHAR, area VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_38 WHERE decile > 7",
    "question_en": "Which Names have Deciles larger than 7?",
    "question_th": "ชื่อใดที่มี Deciles มากกว่า 7",
    "context": "CREATE TABLE table_name_38 (name VARCHAR, decile INTEGER)"
  },
  {
    "answer": "SELECT gender FROM table_name_62 WHERE roll = \"135\"",
    "question_en": "What Gender are the schools that have a Roll of 135?",
    "question_th": "โรงเรียนที่มีจำนวนม้วน 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_en": "What is the Name of a state Authority that has a Roll of 72?",
    "question_th": "ชื่อของหน่วยงานของรัฐที่มีม้วน 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_en": "Which friendly competition took place on 19 April 1979?",
    "question_th": "การแข่งขันกระชับมิตรใดเกิดขึ้นในวันที่ 19 เมษายน พ.ศ. 2522?",
    "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_en": "Which Team 1 faced Dynamos FC?",
    "question_th": "ทีมใด 1 เผชิญหน้า 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_en": "What is Team 1 Al-Hilal's Agg.?",
    "question_th": "Agg. ของทีม 1 Al-Hilal คืออะไร?",
    "context": "CREATE TABLE table_name_81 (agg VARCHAR, team_1 VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_34 WHERE date = \"may 7\"",
    "question_en": "Which record happened on the date of May 7?",
    "question_th": "บันทึกใดเกิดขึ้นในวันที่ 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_en": "Which tournament had Lubomira Bacheva as the opponent in the final?",
    "question_th": "ทัวร์นาเมนต์ใดที่มี Lubomira Bacheva เป็นคู่ต่อสู้ในรอบชิงชนะเลิศ?",
    "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_en": "Who was the opponent in the final on 5 July 1992?",
    "question_th": "คู่ต่อสู้ในรอบชิงชนะเลิศเมื่อวันที่ 5 กรกฎาคม พ.ศ. 2535 คือใคร?",
    "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_en": "What is the date of the tournament where Kyoko Nagatsuka was the opponent in the final?",
    "question_th": "วันที่ของทัวร์นาเมนต์ที่ Kyoko Nagatsuka เป็นคู่ต่อสู้ในรอบชิงชนะเลิศคือวันที่เท่าไร?",
    "context": "CREATE TABLE table_name_89 (date VARCHAR, opponent_in_the_final VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_24 WHERE tournament = \"vaihingen\"",
    "question_en": "What is the surface at the tournament of Vaihingen?",
    "question_th": "พื้นผิวของทัวร์นาเมนต์ของ 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_en": "What was the surface of the tournament where Anna Benzon was the opponent in the final?",
    "question_th": "อะไรคือพื้นผิวของทัวร์นาเมนต์ที่ Anna Benzon เป็นคู่ต่อสู้ในรอบชิงชนะเลิศ?",
    "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_en": "What is the average position of Eesti Põlevkivi Jõhvi when they had less than 13 points and worse than a -12 goal differential?",
    "question_th": "ตำแหน่งเฉลี่ยของ Eesti Põlevkivi Jõhvi คืออะไรเมื่อพวกเขามีน้อยกว่า 13 แต้มและแย่กว่าผลต่างประตู -12?",
    "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_en": "What is the to par for the player who had a score of 70-72-70-69=281?",
    "question_th": "พาร์สำหรับผู้เล่นที่มีคะแนน 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_en": "What year had the qual of totals",
    "question_th": "ปีใดมีคุณสมบัติของผลรวม",
    "context": "CREATE TABLE table_name_88 (year VARCHAR, qual VARCHAR)"
  },
  {
    "answer": "SELECT qual FROM table_name_64 WHERE finish = \"16\" AND year = \"1968\"",
    "question_en": "What qual had a finish of 16 in 1968?",
    "question_th": "รอบคัดเลือกใดที่จบอันดับที่ 16 ในปี พ.ศ. 2511?",
    "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_en": "What was the finish with the start of 25 and a lap larger than 46?",
    "question_th": "จบด้วยการออกสตาร์ท 25 และรอบที่ใหญ่กว่า 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_en": "What was the lowest lap with the ranking of 19?",
    "question_th": "รอบต่ำสุดด้วยอันดับ 19 คืออะไร?",
    "context": "CREATE TABLE table_name_99 (laps INTEGER, start VARCHAR)"
  },
  {
    "answer": "SELECT MIN(ovrs) FROM table_name_89 WHERE wkts = 0",
    "question_en": "Name the least ovrs for wkts of 0",
    "question_th": "ตั้งชื่อ ovrs น้อยที่สุดสำหรับ wkts เป็น 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_en": "Name the average econ for runs more than 703 and ovrs more than 25.5",
    "question_th": "ตั้งชื่อ econ เฉลี่ยสำหรับการวิ่งมากกว่า 703 และมากกว่า 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_en": "What is the average year that has a car that won 0 stages with a position of DNF?",
    "question_th": "ปีเฉลี่ยที่มีรถที่ชนะ 0 สเตจด้วยตำแหน่ง 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_en": "What is the class that that won 2 stages and has a position of DNF?",
    "question_th": "คลาสไหนที่ชนะ 2 สเตจและมีตำแหน่ง 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_en": "What position did the BMW vehicle made in 2006 hold?",
    "question_th": "รถยนต์ BMW ที่ผลิตในปี 2549 ดำรงตำแหน่งใด",
    "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_en": "Which builder has a Fuel Propulsion of diesel, a Model of d40lf, and an Order Year of 2005?",
    "question_th": "ผู้ผลิตรายใดมีระบบขับเคลื่อนเชื้อเพลิงดีเซล รุ่น d40lf และปีสั่งซื้อปี 2548",
    "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_en": "Which model has a Fleet Series (Quantity) of 11081-11092 (12)?",
    "question_th": "รุ่นใดมี Fleet Series (จำนวน) 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_en": "Which order year has a Fleet Series (Quantity) of 12081-12090 (10)?",
    "question_th": "ปีลำดับใดมีกองเรือ (ปริมาณ) 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_en": "Which Fleet Series (Quantity) that has a Builder of mci, and an Order Year of 2002?",
    "question_th": "Fleet Series (ปริมาณ) ใดที่มีตัวสร้าง mci และปีการสั่งซื้อ พ.ศ. 2545",
    "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_en": "Which Fleet Series (Quantity) has an Order Year of 2010, and a Model of de40lfr?",
    "question_th": "กองเรือใดซีรีส์ (ปริมาณ) มีการสั่งซื้อปี 2010 และรุ่น 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_en": "Which Fuel Propulsion has a Fleet Series (Quantity) of 04001-04125 (125)?",
    "question_th": "ระบบขับเคลื่อนเชื้อเพลิงใดมีกองเรือ (ปริมาณ) 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_en": "Name the sum of roll for morrinsville school",
    "question_th": "ตั้งชื่อผลรวมม้วนสำหรับโรงเรียนมอร์รินส์วิลล์",
    "context": "CREATE TABLE table_name_65 (roll INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT authority FROM table_name_88 WHERE name = \"morrinsville college\"",
    "question_en": "Name the authority for morrinsville college",
    "question_th": "ตั้งชื่อผู้มีอำนาจสำหรับวิทยาลัยมอร์รินส์วิลล์",
    "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_en": "Name the years when decile was less than 7 for waitoa school",
    "question_th": "ตั้งชื่อปีที่ decile น้อยกว่า 7 สำหรับโรงเรียน waitoa",
    "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_en": "Name the total number of roll for state authority and stanley avenue school with decile more than 5",
    "question_th": "ตั้งชื่อจำนวนม้วนทั้งหมดสำหรับหน่วยงานของรัฐและโรงเรียนสแตนลีย์อเวนิวที่มีเดซิลมากกว่า 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_en": "What is the grid total associated with 18 laps?",
    "question_th": "ผลรวมของกริดที่เกี่ยวข้องกับ 18 รอบเป็นเท่าใด",
    "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_en": "What rider is on an aprilia that went under 18 laps with a grid total of 17?",
    "question_th": "นักแข่งคนไหนที่ขี่ Aprilia ที่ทำได้ต่ำกว่า 18 รอบโดยมีกริดรวม 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_en": "What is the Manufacturer for simone corsi?",
    "question_th": "ผู้ผลิตสำหรับ 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_en": "What is the grid total associated with a Time/Retired of +33.634, and a Laps smaller than 19?",
    "question_th": "ผลรวมของกริดที่เกี่ยวข้องกับเวลา/เกษียณที่ +33.634 และรอบที่น้อยกว่า 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·m (lb·ft)/*n·m (lb·ft) @1750\"",
    "question_en": "Tell me the power when the torque is n·m (lb·ft)/*n·m (lb·ft) @1750",
    "question_th": "บอกกำลังเมื่อแรงบิดอยู่ที่ n·m (lb·ft)/*n·m (lb·ft) @ 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_en": "Name the capacity for the engine of 2.0 duratorq",
    "question_th": "ตั้งชื่อความจุเครื่องยนต์ 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·m (lb·ft) @4150\"",
    "question_en": "Name the capacity for the torque of n·m (lb·ft) @4150",
    "question_th": "ตั้งชื่อความจุของแรงบิด n·m (lb·ft) @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_en": "Name the power for 1.8 duratorq",
    "question_th": "ตั้งชื่อพาวเวอร์สำหรับ 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·m (lb·ft)/*n·m (lb·ft) @1750\"",
    "question_en": "Name the power for when the torque is n·m (lb·ft)/*n·m (lb·ft) @1750",
    "question_th": "ตั้งชื่อกำลังเมื่อแรงบิดเป็น n·m (lb·ft)/*n·m (lb·ft) @ 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_en": "What are the smallest goals with a Goal Ratio of 0.14, and a Debut in Europe smaller than 1995?",
    "question_th": "ประตูที่เล็กที่สุดที่มีอัตราส่วนเป้าหมาย 0.14 และการเปิดตัวครั้งแรกในยุโรปน้อยกว่าปี 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_en": "What's the average goal ratio with Goals larger than 1, Games larger than 161, and a Debut in Europe smaller than 1985?",
    "question_th": "อัตราส่วนประตูเฉลี่ยโดยมีเป้าหมายมากกว่า 1 ประตูมากกว่า 161 เกม และการเปิดตัวครั้งแรกในยุโรปน้อยกว่าปี 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_en": "What lowest games have 20 goals and a Goal Ratio smaller than 0.14?",
    "question_th": "เกมใดที่ต่ำที่สุดที่มี 20 ประตูและอัตราส่วนเป้าหมายที่น้อยกว่า 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_en": "What is the largest goal ratio with Goals smaller than 0?",
    "question_th": "อัตราส่วนเป้าหมายที่ใหญ่ที่สุดโดยมีเป้าหมายน้อยกว่า 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_en": "What lowest games have a Goal Ratio of 0, and Goals smaller than 0?",
    "question_th": "เกมใดที่ต่ำที่สุดที่มีอัตราส่วนประตูเป็น 0 และประตูที่น้อยกว่า 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_en": "How many debuts in Europe have less than 76 goals, more than 151 games, and a rank greater than 5?",
    "question_th": "กี่นัดในยุโรปที่ยิงได้น้อยกว่า 76 ประตู มากกว่า 151 เกม และอันดับมากกว่า 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_en": "What is the average points of the Ferrari 1512 Chassis after 1965?",
    "question_th": "คะแนนเฉลี่ยของแชสซี Ferrari 1512 หลังปี 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_en": "What is the Chassis of the Cooper Car Company after 1965 when the engine was a Maserati v12?",
    "question_th": "แชสซีของ Cooper Car Company หลังปี 1965 เมื่อเครื่องยนต์เป็น 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_en": "Which location had a round of 3, and an Opponent of matt horwich?",
    "question_th": "ตำแหน่งใดมีรอบ 3 และฝ่ายตรงข้ามของแมตต์ ฮอร์วิช?",
    "context": "CREATE TABLE table_name_9 (location VARCHAR, round VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_45 WHERE event = \"sportfight 10\"",
    "question_en": "What was the time of sportfight 10?",
    "question_th": "sportfight 10 ออกอากาศเมื่อไร?",
    "context": "CREATE TABLE table_name_45 (time VARCHAR, event VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_71 WHERE time = \"0:29\"",
    "question_en": "Which opponent had a time of 0:29?",
    "question_th": "คู่ต่อสู้คนไหนมีเวลา 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_en": "What number has the builder ruston hornsby, the date 1961, and the name Topsy?",
    "question_th": "รัสตัน ฮอร์นสบี ช่างก่อสร้างหมายเลขอะไร ปี 1961 และชื่อท็อปซี่",
    "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_en": "What is the number with the builder hunslet and a works number greater than 822?",
    "question_th": "ตัวเลขที่มี hunslet ของผู้สร้างและหมายเลขผลงานที่มากกว่า 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_en": "What was the score of the March 14 game?",
    "question_th": "สกอร์เกมวันที่ 14 มี.ค. เป็นอย่างไร?",
    "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_en": "What was the score for the December 11 game against the Ottawa Senators?",
    "question_th": "คะแนนของเกมวันที่ 11 ธันวาคม พบ ออตตาวา วุฒิสมาชิก เป็นเท่าไหร่?",
    "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_en": "Name the project with length overall being 25 and name of levante",
    "question_th": "ตั้งชื่อโครงการโดยมีความยาวรวม 25 และชื่อ 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_en": "Name the sum of Hull number with portugal destination",
    "question_th": "ตั้งชื่อผลรวมเลขตัวถังกับปลายทางโปรตุเกส",
    "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_en": "Name the sum of hull number for italy and year more than 1999",
    "question_th": "ตั้งชื่อผลรวมเลขตัวถังสำหรับอิตาลีและปีที่มากกว่า 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_en": "Give me the result for a format saying album with 1994 as the year.",
    "question_th": "ขอผลลัพธ์รูปแบบที่บอกว่าอัลบั้มมีปี 1994 ครับ",
    "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_en": "List the Award Descriptions for the year of 1989.",
    "question_th": "รายชื่อคำอธิบายรางวัลสำหรับปี 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_en": "What was the score of the game played on August 5?",
    "question_th": "สกอร์ของเกมที่เล่นในวันที่ 5 สิงหาคมเป็นเท่าไหร่?",
    "context": "CREATE TABLE table_name_66 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_25 WHERE record = \"60-56\"",
    "question_en": "On what date was the Blue Jays record 60-56?",
    "question_th": "บลูเจย์สทำสถิติ 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_en": "Tell me the name for first elected more than 1988 and district of mason",
    "question_th": "บอกชื่อผู้ได้รับเลือกครั้งแรกมากกว่าปี 2531 และเขตเมสันด้วย",
    "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_en": "Name the party with first elected more than 1999 and position of supervisor for john foust",
    "question_th": "ระบุชื่อพรรคที่ได้รับการเลือกตั้งครั้งแรกมากกว่าปี 2542 และตำแหน่งหัวหน้างานของจอห์น ฟัสต์",
    "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_en": "Name the total number of first elected for dranesville",
    "question_th": "ตั้งชื่อจำนวนผู้ได้รับเลือกเป็นคนแรกสำหรับเดรนส์วิลล์",
    "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_en": "What year was the venue at Sydney Cricket Ground, and the opponent was Parramatta Eels?",
    "question_th": "สนามคริกเก็ตซิดนีย์จัดในปีใด และคู่ต่อสู้คือ 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_en": "What was the competition in 1978?",
    "question_th": "การแข่งขันในปี 1978 คืออะไร?",
    "context": "CREATE TABLE table_name_71 (competition VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT AVG(year) FROM table_name_24 WHERE attendance = \"80,388\"",
    "question_en": "What year was the average attendance 80,388?",
    "question_th": "มีผู้เข้าร่วมเฉลี่ย 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_en": "What was the score with the opponent being New Zealand Warriors?",
    "question_th": "คู่ต่อสู้เป็น 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_en": "Which 1st Party has an election in 1847?",
    "question_th": "พรรคใดมีการเลือกตั้งในปี พ.ศ. 2390",
    "context": "CREATE TABLE table_name_28 (election VARCHAR)"
  },
  {
    "answer": "SELECT 1 AS st_party FROM table_name_92 WHERE election = \"1865\"",
    "question_en": "Which 1st Party has an election in 1865?",
    "question_th": "พรรคใดมีการเลือกตั้งในปี พ.ศ. 2408?",
    "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_en": "What was the average number of points with bonus pts less than 31 with the rider dennis gavros?",
    "question_th": "จำนวนคะแนนเฉลี่ยที่มีแต้มโบนัสน้อยกว่า 31 กับนักแข่งเดนนิส กาวรอส คือเท่าใด",
    "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_en": "How many total matches involving dennis gavros had total points less than 167?",
    "question_th": "เดนนิส กาฟรอส มีคะแนนรวมน้อยกว่า 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_en": "What is the smallest number of matches with Bonus Pts of 19 and Total Points greater than 421?",
    "question_th": "จำนวนแมตช์ที่น้อยที่สุดที่มีโบนัสแต้ม 19 และคะแนนรวมที่มากกว่า 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_en": "Which category earlier than 2006 has Bart Brentjens as rider 2?",
    "question_th": "ประเภทใดก่อนปี 2006 ที่มี Bart Brentjens เป็นนักบิด 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_en": "How many dates does the ladies category correspond to Rothaus-Cube?",
    "question_th": "หมวดหมู่ผู้หญิงตรงกับ 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_en": "Which category has a team of Cannondale Vredestein?",
    "question_th": "ประเภทใดมีทีม Cannondale Vredestein?",
    "context": "CREATE TABLE table_name_28 (category VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT qual FROM table_name_9 WHERE rank = \"9\"",
    "question_en": "What is the qual with a rank 9?",
    "question_th": "คุณสมบัติอันดับ 9 คืออะไร?",
    "context": "CREATE TABLE table_name_9 (qual VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT finish FROM table_name_17 WHERE year = \"1956\"",
    "question_en": "What is the finish in 1956?",
    "question_th": "ตอนจบในปี 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_en": "What is the finish with 200 laps and a start of 3?",
    "question_th": "จบด้วย 200 รอบและออกสตาร์ท 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_en": "What is the qual with 200 laps and a rank of 27?",
    "question_th": "รอบคัดเลือก 200 รอบ และอันดับ 27 คืออะไร?",
    "context": "CREATE TABLE table_name_86 (qual VARCHAR, laps VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_13 WHERE finish = \"14\"",
    "question_en": "What is the rank with a 14 finish?",
    "question_th": "จบอันดับที่ 14 ได้อันดับที่เท่าไร?",
    "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_en": "What is the lowest cuts made of the Masters tournament, which had a top-25 less than 0?",
    "question_th": "อะไรคือจุดตัดต่ำสุดของทัวร์นาเมนต์ Masters ซึ่งมี 25 อันดับแรกน้อยกว่า 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_en": "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?",
    "question_th": "จำนวนชัยชนะสูงสุดในทัวร์นาเมนต์โดยตัด 1 ครั้ง มี 25 อันดับแรกน้อยกว่า 1 และน้อยกว่า 2 รายการคือเท่าใด",
    "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_en": "What is the average number of events the Masters tournament, which has more than 0 top-25, has?",
    "question_th": "จำนวนเหตุการณ์โดยเฉลี่ยของทัวร์นาเมนต์ Masters ซึ่งมีมากกว่า 0 อันดับแรกมีเท่าไร?",
    "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_en": "What is the total number of top-25 a tournament with less than 2 events has?",
    "question_th": "จำนวนผู้เข้ารอบ 25 อันดับแรกในทัวร์นาเมนต์ที่มีน้อยกว่า 2 รายการมีเท่าใด",
    "context": "CREATE TABLE table_name_93 (top_25 VARCHAR, events INTEGER)"
  },
  {
    "answer": "SELECT date FROM table_name_98 WHERE loss = \"gott (2-7)\"",
    "question_en": "What was the date of the game that had a loss of Gott (2-7)?",
    "question_th": "เกมที่แพ้ ก๊อต (2-7) คือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_98 (date VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_13 WHERE record = \"54-58\"",
    "question_en": "Who was the opponent at the game when the record was 54-58?",
    "question_th": "คู่ต่อสู้ในเกมเมื่อสถิติอยู่ที่ 54-58 คือใคร?",
    "context": "CREATE TABLE table_name_13 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_77 WHERE record = \"59-65\"",
    "question_en": "What was the score of the game when the record was 59-65?",
    "question_th": "สกอร์ของเกมเมื่อตอนที่สถิติอยู่ที่ 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_en": "Who was the opponent at the game that had a loss of Caldwell (10-11)?",
    "question_th": "คู่ต่อสู้ในเกมที่แพ้คาลด์เวลล์คือใคร (10-11)?",
    "context": "CREATE TABLE table_name_35 (opponent VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_1 WHERE time = \"1:26\"",
    "question_en": "Which opponent had a time of 1:26?",
    "question_th": "ฝ่ายตรงข้ามคนไหนมีเวลา 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_en": "What was the date of the game with the Kansas City Royals when the Blue Jays record was 18-12?",
    "question_th": "วันที่ของเกมกับ Kansas City Royals เมื่อสถิติ Blue Jays อยู่ที่ 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_en": "Which catalogue is from the UK region, and is on vinyl, and was dated in 1986?",
    "question_th": "แค็ตตาล็อกใดที่มาจากภูมิภาคสหราชอาณาจักร และอยู่บนแผ่นเสียง และลงวันที่ในปี 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_en": "What region has a bronze label and a catalogue of 202 876-270?",
    "question_th": "ภูมิภาคใดมีป้ายทองสัมฤทธิ์และแคตตาล็อก 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_en": "Which label is from the Germany region?",
    "question_th": "ป้ายใดมาจากภูมิภาคเยอรมนี?",
    "context": "CREATE TABLE table_name_52 (label VARCHAR, region VARCHAR)"
  },
  {
    "answer": "SELECT label FROM table_name_31 WHERE catalogue = \"brol 34531\"",
    "question_en": "What label has brol 34531 as it's catalogue?",
    "question_th": "ป้ายใดมี brol 34531 เป็นแค็ตตาล็อก?",
    "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_en": "Which label has UK for its region, is on a CD, and is dated from 1986?",
    "question_th": "ค่ายเพลงใดที่มีสหราชอาณาจักรสำหรับภูมิภาคของตน อยู่ในซีดี และลงวันที่ตั้งแต่ปี 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_en": "Which catalogue has essential, castle music as it's label?",
    "question_th": "แค็ตตาล็อกใดมีเพลงประจำปราสาทที่สำคัญเป็นป้ายกำกับ",
    "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_en": "What's the period of a rock album released in 1973?",
    "question_th": "อัลบั้มร็อคที่ออกในปี 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_en": "Name the pick number for bill atessis",
    "question_th": "ตั้งชื่อหมายเลขการรับสินค้าสำหรับการยืนยันการเรียกเก็บเงิน",
    "context": "CREATE TABLE table_name_15 (pick__number VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(overall) FROM table_name_6 WHERE position = \"defensive tackle\"",
    "question_en": "Name the total number of overall for defensive tackle",
    "question_th": "ตั้งชื่อจำนวนรวมของการสกัดกั้น",
    "context": "CREATE TABLE table_name_6 (overall VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT engine FROM table_name_7 WHERE entrant = \"daimler benz ag\"",
    "question_en": "Which engine has daimler benz ag as an entrant?",
    "question_th": "เครื่องยนต์ใดที่มี daimler benz ag เข้ามามีส่วนร่วม?",
    "context": "CREATE TABLE table_name_7 (engine VARCHAR, entrant VARCHAR)"
  },
  {
    "answer": "SELECT year_s__won FROM table_name_86 WHERE to_par = \"+6\"",
    "question_en": "In which years was the to par +6?",
    "question_th": "พาร์ +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_en": "In 1991, what was the lowest total?",
    "question_th": "ในปี 1991 ยอดรวมต่ำสุดคือเท่าไร?",
    "context": "CREATE TABLE table_name_31 (total INTEGER, year_s__won VARCHAR)"
  },
  {
    "answer": "SELECT SUM(lane) FROM table_name_11 WHERE rank > 22",
    "question_en": "What are the total lanes that have a rank larger than 22?",
    "question_th": "เลนทั้งหมดที่มีอันดับมากกว่า 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_en": "Which one has a rank bigger than 2, lane of 1, and is from Hong Kong?",
    "question_th": "ตัวไหนมีอันดับใหญ่กว่า 2 เลน 1 และมาจากฮ่องกง?",
    "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_en": "What rank is from Japan, has a lane smaller than 7 and a heat smaller than 3?",
    "question_th": "อันดับอะไรจากญี่ปุ่น มีเลนเล็กกว่า 7 และฮีตน้อยกว่า 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_en": "What was Jim Hoff's sum of losses and a wins smaller than 12?",
    "question_th": "ผลรวมการสูญเสียของ Jim Hoff และการชนะที่น้อยกว่า 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_en": "What was the average of games that were one in 1978 that were smaller than 141?",
    "question_th": "ค่าเฉลี่ยของเกมที่มีหนึ่งเกมในปี 1978 ซึ่งมีขนาดเล็กกว่า 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_en": "What was the sum of Richie Hebner winning games that were smaller 34?",
    "question_th": "ผลรวมของเกมที่ชนะของ Richie Hebner ที่น้อยกว่า 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_en": "What was the average of wins with manager George Scherger smaller than 3 and losses smaller than 1?",
    "question_th": "ค่าเฉลี่ยของการชนะโดยผู้จัดการทีม George Scherger น้อยกว่า 3 และแพ้น้อยกว่า 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_en": "When was the golden slipper race?",
    "question_th": "การแข่งขันรองเท้าทองคำจัดขึ้นเมื่อไหร่?",
    "context": "CREATE TABLE table_name_53 (date VARCHAR, race VARCHAR)"
  },
  {
    "answer": "SELECT race FROM table_name_78 WHERE weight__kg_ < 55.5",
    "question_en": "In which races did the jockey weigh less than 55.5 kg?",
    "question_th": "จ๊อกกี้มีน้ำหนักน้อยกว่า 55.5 กิโลกรัมในการแข่งขันใดบ้าง",
    "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_en": "What was the result of the Todman stakes race at rosehill?",
    "question_th": "อะไรคือผลลัพธ์ของการแข่งขัน Todman Stakes ที่โรสฮิลล์?",
    "context": "CREATE TABLE table_name_28 (result VARCHAR, venue VARCHAR, race VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_80 WHERE player = \"ky laffoon\"",
    "question_en": "What Country has Player Ky Laffoon?",
    "question_th": "ประเทศใดมีผู้เล่น 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_en": "What Player is from the Country United States and Money ($) of 356?",
    "question_th": "ผู้เล่นคนไหนมาจากประเทศสหรัฐอเมริกาและเงิน ($) จาก 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_en": "What Player has a To par of +1 and the Score 75-70-71-73=289?",
    "question_th": "ผู้เล่นคนใดมีพาร์ถึง +1 และคะแนน 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_en": "What was the outcome for the Rome 2, Italy tournament?",
    "question_th": "ผลการแข่งขันโรม 2 ประเทศอิตาลีเป็นอย่างไร?",
    "context": "CREATE TABLE table_name_73 (outcome VARCHAR, tournament VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_38 WHERE opponents_in_the_final = \"marius călugăru ciprian petre porumb\"",
    "question_en": "What was the outcome of the match opponents in the final of Marius Călugăru Ciprian Petre Porumb?",
    "question_th": "ผลการแข่งขันของคู่ต่อสู้ในรอบชิงชนะเลิศของ Marius Călugăru 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_en": "How many golds have a Total of 11, and a Bronze smaller than 3?",
    "question_th": "ทองคำทั้งหมดมีทั้งหมด 11 เหรียญทอง และทองแดงหนึ่งอันมีค่าน้อยกว่า 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_en": "How many golds have a Bronze of 0, a Total larger than 1, a Nation of chad, and a Silver larger than 0?",
    "question_th": "มีกี่เหรียญทองที่มีเหรียญทองแดงเป็น 0, ผลรวมมากกว่า 1, ประเทศชาด และเหรียญเงินมากกว่า 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_en": "What is the smallest silver with a Gold of 1, and a Nation of lithuania?",
    "question_th": "เงินที่เล็กที่สุดที่มีทองคำ 1 และประเทศลิทัวเนียคืออะไร?",
    "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_en": "What is the total bronze with a Gold larger than 1, a Rank of 2, and a Silver smaller than 12?",
    "question_th": "ทองแดงรวมที่มีทองคำมากกว่า 1 อันดับ 2 และเงินน้อยกว่า 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_en": "Which Visiting Team is on december 23?",
    "question_th": "ทีมเยือนทีมไหนคือวันที่ 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_en": "Which Host Team has Final Score of 42-23?",
    "question_th": "ทีมเจ้าบ้านใดมีคะแนนสุดท้าย 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_en": "When did Final Score of 31-7 happen?",
    "question_th": "Final Score 31-7 เกิดขึ้นเมื่อใด?",
    "context": "CREATE TABLE table_name_64 (date VARCHAR, final_score VARCHAR)"
  },
  {
    "answer": "SELECT 2010 FROM table_name_74 WHERE 2011 = \"grand slam tournaments\"",
    "question_en": "Which Tournament in 2010 also has Grand Slam tournaments in 2011",
    "question_th": "ซึ่งทัวร์นาเมนต์ในปี 2010 ก็มีการแข่งขันแกรนด์สแลมในปี 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_en": "What was the average attendance when the New York Mets were opponents with a record of 51-33?",
    "question_th": "ผู้เข้าร่วมโดยเฉลี่ยเมื่อ New York Mets เป็นคู่ต่อสู้ด้วยสถิติ 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_en": "What visiting team played on October 18?",
    "question_th": "ทีมเยือนทีมใดเล่นในวันที่ 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_en": "What visiting team played at 3com park on October 7?",
    "question_th": "ทีมเยือนทีมใดเล่นที่ 3com park เมื่อวันที่ 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_en": "Which host team won on a final scoreline of 13-10?",
    "question_th": "ทีมเจ้าบ้านใดชนะด้วยสกอร์สุดท้าย 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_en": "In what stadium did a game result in a final scoreline reading 27-34?",
    "question_th": "เกมที่สนามใดส่งผลให้สกอร์สุดท้ายอ่านได้ 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_en": "In the game in which the Jacksonville Jaguars were hosts, what was the name of the visiting team?",
    "question_th": "ในเกมที่ แจ็คสันวิลล์ จากัวร์ส เป็นเจ้าภาพ ทีมเยือนชื่ออะไร?",
    "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_en": "Which visiting team wound up with a final score of 18-40?",
    "question_th": "ทีมเยือนทีมไหนจบลงด้วยสกอร์สุดท้าย 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_en": "Name the sum of attendacne for 16 weeks",
    "question_th": "ตั้งชื่อผลรวมของการเข้างานเป็นเวลา 16 สัปดาห์",
    "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_en": "Name the result for week less than 7 and game sites of los angeles memorial coliseum",
    "question_th": "ตั้งชื่อผลลัพธ์สำหรับสัปดาห์ที่น้อยกว่า 7 และไซต์เกมของสนามกีฬาอนุสรณ์สถานลอสแอนเจลิส",
    "context": "CREATE TABLE table_name_25 (result VARCHAR, week VARCHAR, game_site VARCHAR)"
  },
  {
    "answer": "SELECT result FROM table_name_14 WHERE week = 7",
    "question_en": "Name the result for week 7",
    "question_th": "ตั้งชื่อผลลัพธ์สำหรับสัปดาห์ที่ 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_en": "How many yards lost by the player with more gained than 51 and average/g of 3.6?",
    "question_th": "ผู้เล่นเสียไปกี่หลาโดยได้ระยะมากกว่า 51 และค่าเฉลี่ย/กรัม 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_en": "What are the gains for the player with average of 26.8 and lost yard fewer than 13?",
    "question_th": "อะไรคือสิ่งที่ได้รับสำหรับผู้เล่นที่มีค่าเฉลี่ย 26.8 และเสียหลาน้อยกว่า 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_en": "When did Mathieu play against Flavio Cipolla?",
    "question_th": "มาติเยอลงเล่นกับฟลาวิโอ ชิโปยาเมื่อไหร่?",
    "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–3, 6–2\"",
    "question_en": "Which tournament had a final score of 6–3, 6–2?",
    "question_th": "ทัวร์นาเมนต์ใดมีคะแนนสุดท้าย 6–3, 6–2?",
    "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ć\"",
    "question_en": "On which surface did Mathieu play against Antonio Veić?",
    "question_th": "มาติเยอเล่นกับอันโตนิโอ วีชบนพื้นสนามใด?",
    "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ć\"",
    "question_en": "When did Mathieu play against Antonio Veić?",
    "question_th": "มาติเยอลงเล่นกับอันโตนิโอ วีชเมื่อไหร่?",
    "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_en": "When did Mathieu play against Andrey Golubev?",
    "question_th": "Mathieu เล่นกับ 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_en": "What park opened in 1999?",
    "question_th": "สวนสาธารณะใดที่เปิดในปี 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_en": "Name the record for detroit and decision of denis",
    "question_th": "ตั้งชื่อบันทึกสำหรับดีทรอยต์และการตัดสินใจของเดนิส",
    "context": "CREATE TABLE table_name_39 (record VARCHAR, home VARCHAR, decision VARCHAR)"
  },
  {
    "answer": "SELECT AVG(attendance) FROM table_name_78 WHERE visitor = \"dallas\"",
    "question_en": "Name the average attendance with dallas visitor",
    "question_th": "ตั้งชื่อผู้เข้าร่วมโดยเฉลี่ยกับผู้เยี่ยมชมดัลลัส",
    "context": "CREATE TABLE table_name_78 (attendance INTEGER, visitor VARCHAR)"
  },
  {
    "answer": "SELECT to_par FROM table_name_29 WHERE player = \"tom kite\"",
    "question_en": "How close to par was Tom Kite when he played?",
    "question_th": "Tom Kite ลงเล่นใกล้พาร์แค่ไหน?",
    "context": "CREATE TABLE table_name_29 (to_par VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT country FROM table_name_8 WHERE score = 71 - 72 = 143",
    "question_en": "Which of the countries showed a score of 71-72=143?",
    "question_th": "ประเทศใดมีคะแนน 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_en": "Which country watch Tom Watson at t9 score 72-72=144?",
    "question_th": "ประเทศไหนดู Tom Watson ที่ t9 คะแนน 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_en": "What was the final score when the player was an e to par?",
    "question_th": "คะแนนสุดท้ายเมื่อผู้เล่นเป็นอีพาร์คืออะไร?",
    "context": "CREATE TABLE table_name_97 (score VARCHAR, to_par VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_7 WHERE attempts = \"307\"",
    "question_en": "What is the name of the team that has 307 attempts?",
    "question_th": "ทีมที่มีความพยายาม 307 ครั้งชื่ออะไร?",
    "context": "CREATE TABLE table_name_7 (team VARCHAR, attempts VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_8 WHERE attempts = \"1,317\"",
    "question_en": "What is the name of the team that has 1,317 attempts?",
    "question_th": "ทีมที่มีความพยายาม 1,317 ครั้งชื่ออะไร?",
    "context": "CREATE TABLE table_name_8 (team VARCHAR, attempts VARCHAR)"
  },
  {
    "answer": "SELECT year FROM table_name_68 WHERE yards = \"2,242\"",
    "question_en": "What year was 2,242 yards achieved?",
    "question_th": "ความสำเร็จ 2,242 หลาในปีใด",
    "context": "CREATE TABLE table_name_68 (year VARCHAR, yards VARCHAR)"
  },
  {
    "answer": "SELECT team FROM table_name_16 WHERE completion__percentage = \"59.8%\"",
    "question_en": "Which team has a 59.8% completion rate?",
    "question_th": "ทีมไหนมีอัตราการสำเร็จ 59.8%?",
    "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_en": "Which year has has a Engine of maserati straight-6?",
    "question_th": "ปีไหนมีเครื่องยนต์มาเซราติ ตรง-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_en": "What is the Point of Chassis of Lancia d50 in 1954",
    "question_th": "อะไรคือจุดสำคัญของแชสซีของ Lancia d50 ในปี 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_en": "What is the match total for a score over 299 and under 412 innings?",
    "question_th": "ผลรวมการแข่งขันสำหรับคะแนนที่มากกว่า 299 และต่ำกว่า 412 อินนิงเป็นเท่าใด",
    "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_en": "What is the high run total associated with a high score of 385 and under 407 innings?",
    "question_th": "ผลรวมรันสูงที่เกี่ยวข้องกับคะแนนสูงสุดที่ 385 และต่ำกว่า 407 อินนิงเป็นเท่าใด",
    "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_en": "What Team 1 has union douala as Team 2?",
    "question_th": "ทีม 1 ใดมี union douala เป็นทีม 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_en": "What was the score of the game that had a loss of Cerutti (0-1)?",
    "question_th": "เกมที่แพ้เซรุตติ (0-1) เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_91 (score VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_73 WHERE record = \"93-54\"",
    "question_en": "Who was the opponent at the game that had a record of 93-54?",
    "question_th": "คู่ต่อสู้ในเกมที่มีสถิติ 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_en": "What was the score to par for 156 strokes?",
    "question_th": "สกอร์พาร์ 156 สโตรกเป็นเท่าไหร่?",
    "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_en": "How many strokes for arnold palmer with a to par of greater than 9?",
    "question_th": "อาร์โนลด์ พาลเมอร์ มีพาร์มากกว่า 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_en": "What was the score to par in 1960?",
    "question_th": "คะแนนที่จะพาร์ในปี 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_en": "What is the earliest first game for a rugby team that has 7 lost games and 0 draws?",
    "question_th": "เกมแรกสุดของทีมรักบี้ที่แพ้ 7 เกม เสมอ 0 เกมคือเกมใด",
    "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_en": "How many games were played by a team that won 0.00% of their games and 0 draws?",
    "question_th": "มีกี่เกมที่เล่นโดยทีมที่ชนะ 0.00% ของเกมและ 0 เสมอ?",
    "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_en": "Name the 1st match for brisbane bears",
    "question_th": "ตั้งชื่อแมตช์ที่ 1 ให้กับหมีบริสเบน",
    "context": "CREATE TABLE table_name_61 (team VARCHAR)"
  },
  {
    "answer": "SELECT lost FROM table_name_66 WHERE matches = \"1 928\"",
    "question_en": "Name the lost for matches of 1 928",
    "question_th": "ตั้งชื่อผู้แพ้สำหรับนัดที่ 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_en": "Name the lost for % won of 55.37",
    "question_th": "ตั้งชื่อผู้แพ้เป็น % ชนะของ 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_en": "Name the matches for gold coast",
    "question_th": "ตั้งชื่อการแข่งขันสำหรับโกลด์โคสต์",
    "context": "CREATE TABLE table_name_11 (matches VARCHAR, team VARCHAR)"
  },
  {
    "answer": "SELECT lost FROM table_name_46 WHERE _percentage_won = \"55.37\"",
    "question_en": "Name the lost for % won of 55.37",
    "question_th": "ตั้งชื่อผู้แพ้เป็น % ชนะของ 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_en": "What is the year when cable was 4.6%?",
    "question_th": "ปีที่สายเคเบิลอยู่ที่ 4.6% คืออะไร?",
    "context": "CREATE TABLE table_name_99 (year VARCHAR, cable VARCHAR)"
  },
  {
    "answer": "SELECT other FROM table_name_54 WHERE year = \"2012\"",
    "question_en": "What is the other for 2012?",
    "question_th": "อะไรอีกในปี 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_en": "What is the xDSL for the other of 0.6% and FTTx of 35.4%?",
    "question_th": "xDSL สำหรับอีก 0.6% และ FTTx 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_en": "What is the other for a 78.2% xDSL?",
    "question_th": "อีกประการหนึ่งสำหรับ 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_en": "What is the xDSL in 2010 when the other was 0.6%?",
    "question_th": "xDSL ในปี 2010 คืออะไรเมื่ออีกอันอยู่ที่ 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_en": "Which date has a Result of won, and a Score of 1-0?",
    "question_th": "วันที่ใดมีผลการแข่งขันชนะและสกอร์ 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_en": "Which result has a Date of november 2, 2007?",
    "question_th": "ผลลัพธ์ใดมีวันที่ 2 พฤศจิกายน 2550",
    "context": "CREATE TABLE table_name_86 (result VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT competition FROM table_name_7 WHERE score = \"2-0\"",
    "question_en": "Which Competition has a Score of 2-0?",
    "question_th": "การแข่งขันใดมีสกอร์ 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_en": "Which Venue has a Date of january 9, 2011?",
    "question_th": "สถานที่ใดมีวันที่ 9 มกราคม 2554",
    "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_en": "What is the termination of mission date of the representative with a presentation of credentials date on July 4, 1898?",
    "question_th": "วันที่ภารกิจของตัวแทนจะสิ้นสุดลงเมื่อใดโดยนำเสนอหนังสือรับรองวันที่ 4 กรกฎาคม พ.ศ. 2441",
    "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úl h. castro\"",
    "question_en": "What is the presentation of credentials date of raúl h. castro, who has a title of ambassador extraordinary and plenipotentiary?",
    "question_th": "การนำเสนอข้อมูลประจำตัวของ raúl h. คืออะไร คาสโตร ใครมีตำแหน่งเอกอัครราชทูตวิสามัญและผู้มีอำนาจเต็ม?",
    "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_en": "Who is the representative with a presentation of credentials date on February 23, 1854?",
    "question_th": "ใครคือตัวแทนพร้อมนำเสนอหนังสือรับรอง วันที่ 23 กุมภาพันธ์ พ.ศ. 2397",
    "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_en": "What is the title of the representative appointed by James K. Polk?",
    "question_th": "ตัวแทนที่ได้รับการแต่งตั้งโดย 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é d'affaires\"",
    "question_en": "What is the termination of mission date of the representative appointed by Franklin Pierce with a title of chargé d'affaires?",
    "question_th": "ผู้แทนที่ได้รับการแต่งตั้งจากแฟรงคลิน เพียร์ซซึ่งมีตำแหน่งอุปทูตจะสิ้นสุดเมื่อใด",
    "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_en": "What is the Stadium held on november 29?",
    "question_th": "สนามกีฬาจะจัดขึ้นในวันที่ 29 พฤศจิกายนที่ใด?",
    "context": "CREATE TABLE table_name_41 (stadium VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT visiting_team FROM table_name_99 WHERE date = \"december 20\"",
    "question_en": "Who is the Visiting team on december 20?",
    "question_th": "ทีมเยือนวันที่ 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_en": "Which Stadium has a Visiting team of pittsburgh steelers?",
    "question_th": "สนามไหนมีทีมเยือนอย่างพิตต์สเบิร์ก สตีลเลอร์ส?",
    "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_en": "Who is the Host team that has a chicago bears as a visiting team?",
    "question_th": "ทีมเจ้าบ้านคนไหนมีชิคาโก้หมีเป็นทีมเยือน?",
    "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_en": "What is the Final score on november 22?",
    "question_th": "ผลคะแนนสุดท้ายวันที่ 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_en": "What is the Host team that has indianapolis colts as a Visiting team?",
    "question_th": "ทีมเจ้าบ้านที่มีอินเดียนาโพลิส โคลท์เป็นทีมเยือนคืออะไร?",
    "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_en": "Who won when np cooper av cooke was runner up?",
    "question_th": "ใครชนะเมื่อ np cooper av cooke รองชนะเลิศ?",
    "context": "CREATE TABLE table_name_34 (winners VARCHAR, runners_up VARCHAR)"
  },
  {
    "answer": "SELECT record FROM table_name_35 WHERE time = \"1:44\"",
    "question_en": "What was the record of the match that had a time of 1:44?",
    "question_th": "สถิติการแข่งขันที่ทำได้ในเวลา 1:44 คืออะไร?",
    "context": "CREATE TABLE table_name_35 (record VARCHAR, time VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_54 WHERE event = \"gcm – d.o.g. 4\"",
    "question_en": "Who was the opponent at GCM – D.O.G. 4?",
    "question_th": "คู่ต่อสู้ใน GCM – DOG 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_en": "What was the location of the match that ended before round 2, against Hikaru Sato?",
    "question_th": "แมตช์ที่จบก่อนยกที่ 2 พบกับฮิคารุ ซาโตะ อยู่ที่ไหน?",
    "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__£_ = \"75,000\" AND entrepreneur_s_ = \"geoff and colette bell\"",
    "question_en": "What was the Company or Product name where Entrepreneurs Geoff and Colette Bell requested £75,000?",
    "question_th": "ชื่อบริษัทหรือผลิตภัณฑ์ที่ผู้ประกอบการ Geoff และ Colette Bell ร้องขอเงินจำนวน 75,000 ปอนด์คืออะไร",
    "context": "CREATE TABLE table_name_25 (company_or_product_name VARCHAR, money_requested__£_ VARCHAR, entrepreneur_s_ VARCHAR)"
  },
  {
    "answer": "SELECT investing_dragon_s_ FROM table_name_82 WHERE episode = \"episode 9\" AND entrepreneur_s_ = \"ashley sayed\"",
    "question_en": "Which Investing Dragon(s) belong to Episode 9 with the Entrepreneur Ashley Sayed?",
    "question_th": "มังกรลงทุนตัวไหนอยู่ในตอนที่ 9 กับผู้ประกอบการ 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_en": "What Episode did Entrepreneur(s) Luke Booth and Christopher Eves take part?",
    "question_th": "ผู้ประกอบการ Luke Booth และ Christopher Eves มีส่วนร่วมในตอนใด",
    "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__£_ = \"70,000\"",
    "question_en": "Which Company or Product name requested £70,000 on Episode 11?",
    "question_th": "ชื่อบริษัทหรือผลิตภัณฑ์ใดที่ขอเงิน 70,000 ปอนด์ในตอนที่ 11",
    "context": "CREATE TABLE table_name_17 (company_or_product_name VARCHAR, episode VARCHAR, money_requested__£_ VARCHAR)"
  },
  {
    "answer": "SELECT MIN(height) FROM table_name_52 WHERE player = \"stephen arigbabu\"",
    "question_en": "What is stephen arigbabu's height?",
    "question_th": "ความสูงของ Stephen Arigbabu คืออะไร?",
    "context": "CREATE TABLE table_name_52 (height INTEGER, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(attendance) FROM table_name_12 WHERE visitor = \"los angeles\"",
    "question_en": "For all games with los angeles as visitor, what is the highest attendance of all?",
    "question_th": "สำหรับทุกเกมที่มีลอสแอนเจลิสเป็นผู้มาเยือน อะไรคือจำนวนผู้เข้าร่วมสูงสุด?",
    "context": "CREATE TABLE table_name_12 (attendance INTEGER, visitor VARCHAR)"
  },
  {
    "answer": "SELECT AVG(attendance) FROM table_name_1 WHERE home = \"calgary\"",
    "question_en": "For all games with calgary as home, what is the average number of attendees?",
    "question_th": "สำหรับทุกเกมที่มีคาลการีเป็นเจ้าบ้าน จำนวนผู้เข้าร่วมโดยเฉลี่ยคือเท่าใด",
    "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_en": "Who is no. 5 when Lena Claudisabel is no. 1 and Lena Sylvie is no. 2?",
    "question_th": "ใครคือไม่มี. 5 เมื่อลีน่า คลอดิซาเบลไม่อยู่ หมายเลข 1 และลีนา ซิลวีไม่ใช่ 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_en": "Who is no.3 when Claudio Sylvie is no.1?",
    "question_th": "ใครคือหมายเลข 3 ในเมื่อเคลาดิโอ ซิลวีคือหมายเลข 1?",
    "context": "CREATE TABLE table_name_62 (no3 VARCHAR, no1 VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_77 WHERE record = \"18-20\"",
    "question_en": "What was the score of the game when the record was 18-20?",
    "question_th": "เมื่อทำสถิติ 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_en": "Who was the Partner for Flavio Cipolla Simone Vagnozzi Opponents in the final?",
    "question_th": "ใครคือหุ้นส่วนของ Flavio Cipolla Simone Vagnozzi ฝ่ายตรงข้ามในรอบชิงชนะเลิศ?",
    "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_en": "Who were the Opponents in the final that played on a carpet (i) Surface?",
    "question_th": "ใครคือฝ่ายตรงข้ามในรอบสุดท้ายที่เล่นบนพรม (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_en": "Played on Clay Surface, what was the Score of the Dortmund Tournament?",
    "question_th": "เล่นบน Clay Surface คะแนนของ 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_en": "Who is Partner Frederik Nielsen's Opponents in the final?",
    "question_th": "ใครคือคู่ต่อสู้ของเฟรเดอริก นีลเซ่นในรอบชิงชนะเลิศ?",
    "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_en": "What is Partner Tomas Behrend's Score in the final?",
    "question_th": "คะแนนของ Partner Tomas Behrend ในรอบชิงชนะเลิศคือเท่าไร?",
    "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_en": "What Country does Larry Mize play for?",
    "question_th": "Larry Mize เล่นให้กับประเทศใด?",
    "context": "CREATE TABLE table_name_67 (country VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT MAX(total) FROM table_name_20 WHERE year_s__won = \"1976\"",
    "question_en": "What is the winning total from 1976?",
    "question_th": "ผลรวมที่ชนะจากปี 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_en": "What year was owner Michael E. Pegram's last win?",
    "question_th": "ชัยชนะครั้งสุดท้ายของเจ้าของ Michael E. Pegram ในปีใด",
    "context": "CREATE TABLE table_name_42 (year INTEGER, owner VARCHAR)"
  },
  {
    "answer": "SELECT trainer FROM table_name_94 WHERE owner = \"cherry valley farm\"",
    "question_en": "Who is the trainer for Cherry Valley Farm?",
    "question_th": "ใครคือผู้ฝึกสอนของ 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_en": "Who owned winner Blueeyesintherein after 2009?",
    "question_th": "ใครเป็นเจ้าของผู้ชนะ Blueeye ในนั้นหลังจากปี 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_en": "Who was the Blue Jays' opponent when their record was 33-15?",
    "question_th": "คู่ต่อสู้ของ Blue Jays คือใครเมื่อสถิติของพวกเขาคือ 33-15?",
    "context": "CREATE TABLE table_name_8 (opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_3 WHERE record = \"36-20\"",
    "question_en": "Who did the Blue Jays lose to when their record was 36-20?",
    "question_th": "Blue Jays แพ้ใครเมื่อสถิติของพวกเขาคือ 36-20?",
    "context": "CREATE TABLE table_name_3 (loss VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_3 WHERE qual = \"141.471\"",
    "question_en": "What is the rank of the qual 141.471?",
    "question_th": "อันดับของรอบคัดเลือก 141.471 คืออะไร?",
    "context": "CREATE TABLE table_name_3 (rank VARCHAR, qual VARCHAR)"
  },
  {
    "answer": "SELECT start FROM table_name_18 WHERE laps = 55",
    "question_en": "What is the start of lap 55?",
    "question_th": "จุดเริ่มต้นของรอบ 55 คืออะไร?",
    "context": "CREATE TABLE table_name_18 (start VARCHAR, laps VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_63 WHERE year = \"1956\"",
    "question_en": "What is rank of the year 1956?",
    "question_th": "ปี 2499 อยู่อันดับที่เท่าไร?",
    "context": "CREATE TABLE table_name_63 (rank VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT laps FROM table_name_78 WHERE rank = \"13\"",
    "question_en": "What is the lap number for the rank of 13?",
    "question_th": "หมายเลขรอบอันดับ 13 คืออะไร?",
    "context": "CREATE TABLE table_name_78 (laps VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT rank FROM table_name_33 WHERE year = \"1961\"",
    "question_en": "What is the rank for 1961?",
    "question_th": "ปี 61 อยู่อันดับไหนคะ?",
    "context": "CREATE TABLE table_name_33 (rank VARCHAR, year VARCHAR)"
  },
  {
    "answer": "SELECT SUM(laps) FROM table_name_60 WHERE finish = \"24\"",
    "question_en": "What is the sum of the lap with a finish of 24?",
    "question_th": "ผลรวมของรอบเมื่อเข้าเส้นชัย 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_en": "Which band plays Self Versus Self - Immersion?",
    "question_th": "วงไหนเล่น 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_en": "What Event used submission (rear naked choke) with 9-4?",
    "question_th": "เหตุการณ์ใดใช้ซับมิชชัน (โช้คหลัง) กับ 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_en": "What event was Donald Ouimet involved?",
    "question_th": "Donald Ouimet เกี่ยวข้องกับเหตุการณ์ใด",
    "context": "CREATE TABLE table_name_41 (event VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT event FROM table_name_37 WHERE position = \"3rd\" AND year = 2010",
    "question_en": "What event did she finish 3rd in 2010?",
    "question_th": "เหตุการณ์ใดที่เธอจบอันดับ 3 ในปี 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_en": "What year did she compete in tampere, finland?",
    "question_th": "เธอลงแข่งขันที่เมืองตัมเปเร ประเทศฟินแลนด์ ปีไหน?",
    "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_en": "Ben Hogan with a score larger than 66 had a place listed of what?",
    "question_th": "Ben Hogan ที่มีคะแนนมากกว่า 66 มีรายชื่ออยู่ในรายการอะไร",
    "context": "CREATE TABLE table_name_77 (place VARCHAR, score VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT player FROM table_name_27 WHERE score = 70",
    "question_en": "With a score of 70, this player's name is listed as what?",
    "question_th": "ด้วยคะแนน 70 นักเตะคนนี้ชื่ออะไร?",
    "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_en": "With a score smaller than 71 along with a place of t6, what is the To par score?",
    "question_th": "ด้วยคะแนนที่น้อยกว่า 71 พร้อมกับอันดับ t6 คะแนน To par คืออะไร?",
    "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_en": "Which Hanyu Pinyin has a GDP in 2011 larger than 688.02 billion yuan and a regional population of 8,700,400 in 2010?",
    "question_th": "Hanyu Pinyin ใดที่มี GDP ในปี 2554 มากกว่า 688.02 พันล้านหยวน และมีประชากรในภูมิภาค 8,700,400 คนในปี 2553",
    "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_en": "Which Hanzi has a Regional Population of 4,591,972 in 2010?",
    "question_th": "Hanzi ใดมีประชากรในภูมิภาค 4,591,972 ในปี 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_en": "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?",
    "question_th": "ชื่อของบุคคลจากเนเธอร์แลนด์ในเลนต่ำกว่า 5 ที่มีอันดับดีกว่า 5 และเวลาน้อยกว่า 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_en": "What is the highest Rank of Karen Pickering when she had a time of less than 55.71?",
    "question_th": "คาเรน พิกเคอริง มีเวลาต่ำกว่า 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_en": "What is the highest Lane number of a person with a time of 55.94 with a Rank that's bigger than 8?",
    "question_th": "หมายเลขเลนสูงสุดของบุคคลที่มีเวลา 55.94 และมีอันดับมากกว่า 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_en": "What was the date of the game that had a loss of Burns (0-1)?",
    "question_th": "เกมที่แพ้เบิร์นส์ (0-1) คือวันที่เท่าไหร่?",
    "context": "CREATE TABLE table_name_85 (date VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_77 WHERE record = \"20-16\"",
    "question_en": "What was the loss of the game when the record was 20-16?",
    "question_th": "ความพ่ายแพ้ของเกมเมื่อสถิติอยู่ที่ 20-16 คืออะไร?",
    "context": "CREATE TABLE table_name_77 (loss VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT loss FROM table_name_22 WHERE attendance = \"18,769\"",
    "question_en": "What was the loss of the game that had an attendance of 18,769?",
    "question_th": "การแพ้ของเกมที่มีผู้เข้าร่วม 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_en": "What was the date of the game that had a loss of Geisel (0-1)?",
    "question_th": "เกมที่แพ้ไกเซล (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_en": "What is the date of the game against the Royals that had an attendance of 12,699?",
    "question_th": "เกมกับรอยัลส์ที่มีผู้ชม 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_en": "When Regions center has a rank less than 11, what is the greatest number o floors?",
    "question_th": "เมื่อศูนย์กลางภูมิภาคมีอันดับต่ำกว่า 11 แล้วจำนวน o ชั้นมากที่สุดคือเท่าใด?",
    "context": "CREATE TABLE table_name_62 (floors INTEGER, name VARCHAR, rank VARCHAR)"
  },
  {
    "answer": "SELECT AVG(rank) FROM table_name_84 WHERE floors = 24",
    "question_en": "What is the average rank for a building with 24 floors?",
    "question_th": "อันดับเฉลี่ยของอาคาร 24 ชั้นคือเท่าไร?",
    "context": "CREATE TABLE table_name_84 (rank INTEGER, floors VARCHAR)"
  },
  {
    "answer": "SELECT SUM(rank) FROM table_name_89 WHERE name = \"omni nashville hotel\"",
    "question_en": "What is the rank for Omni nashville hotel?",
    "question_th": "โรงแรมออมนิ แนชวิลล์อยู่อันดับเท่าไหร่?",
    "context": "CREATE TABLE table_name_89 (rank INTEGER, name VARCHAR)"
  },
  {
    "answer": "SELECT MAX(rank) FROM table_name_27 WHERE name = \"fifth third center\"",
    "question_en": "What is the greatest rank for Fifth third center?",
    "question_th": "อันดับสูงสุดสำหรับเซ็นเตอร์คนที่ 5 อันดับ 3 คืออะไร?",
    "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_en": "When a building is 292 (89) ft (m) tall, has less than 23 floors, and ranks less than 14, what is the average year?",
    "question_th": "เมื่ออาคารมีความสูง 292 (89) ฟุต (ม.) มีชั้นน้อยกว่า 23 ชั้น และอยู่ในอันดับที่ต่ำกว่า 14 ปีเฉลี่ยคือเท่าใด",
    "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_en": "What type of regular season/preseason game was played on August 25, 2007?",
    "question_th": "เกมประจำฤดูกาล/ปรีซีซั่นประเภทใดที่เล่นในวันที่ 25 สิงหาคม พ.ศ. 2550",
    "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_en": "In what stadium was the game on August 22, 2008 played?",
    "question_th": "เกมเมื่อวันที่ 22 สิงหาคม พ.ศ. 2551 ลงเล่นที่สนามใด?",
    "context": "CREATE TABLE table_name_36 (stadium VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT stadium FROM table_name_89 WHERE home_team = \"dallas cowboys 21\"",
    "question_en": "In what stadium was the home team Dallas Cowboys 21?",
    "question_th": "เจ้าบ้าน ดัลลาส คาวบอยส์ 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_en": "On what date was the home team the Dallas Cowboys 34?",
    "question_th": "เจ้าบ้าน ดัลลัส คาวบอยส์ 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_en": "Who was the visiting team on October 15, 2006?",
    "question_th": "ทีมเยือนเมื่อวันที่ 15 ตุลาคม พ.ศ. 2549 คือใคร?",
    "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_en": "What's the smallest amount of Laps that had a finish of 7 with a start of 6?",
    "question_th": "จำนวนรอบที่น้อยที่สุดที่จบด้วย 7 โดยเริ่มต้นที่ 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_en": "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?",
    "question_th": "อะไรคือทองแดงที่เล็กที่สุดที่มีทองคำน้อยกว่า 3 และเงินมากกว่า 1 และอันดับ 6 และประเทศฮังการี?",
    "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_en": "What is the average bronze with a rank of 4 and less than 1 silver?",
    "question_th": "บรอนซ์โดยเฉลี่ยที่มีอันดับ 4 และน้อยกว่า 1 เหรียญเงินคือเท่าไร?",
    "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_en": "Which silver has a Gold larger than 4, and a Rank of 1?",
    "question_th": "เงินใดที่มีทองคำมากกว่า 4 และอันดับ 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_en": "What lowest bronze has a total of 3, a Nation of hungary, and a Gold smaller than 0?",
    "question_th": "เหรียญทองแดงใดที่ต่ำที่สุดมีทั้งหมด 3 เหรียญ ประเทศฮังการี และทองคำที่น้อยกว่า 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_en": "How many gold have a Rank of 7, and a Bronze of 1, and a Silver smaller than 0?",
    "question_th": "มีทองคำจำนวนเท่าใดที่มีอันดับ 7 และทองแดงอยู่ที่ 1 และเงินจำนวนหนึ่งที่น้อยกว่า 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_en": "How many Totals have a Silver smaller than 2, and a Nation of ukraine, and a Gold smaller than 3?",
    "question_th": "มีเงินทั้งหมดจำนวนเท่าใดที่มีเงินน้อยกว่า 2 และมีประเทศยูเครนและทองที่เล็กกว่า 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_en": "Which player played in 2007?",
    "question_th": "นักเตะคนไหนที่เล่นในปี 2550?",
    "context": "CREATE TABLE table_name_17 (player VARCHAR, season VARCHAR)"
  },
  {
    "answer": "SELECT bowling FROM table_name_7 WHERE player = \"min patel\"",
    "question_en": "What was Min Patel's bowling?",
    "question_th": "โบว์ลิ่งของ Min Patel คืออะไร?",
    "context": "CREATE TABLE table_name_7 (bowling VARCHAR, player VARCHAR)"
  },
  {
    "answer": "SELECT week_1 FROM table_name_35 WHERE week_2 = \"piia jarkko\"",
    "question_en": "Who was the week 1 nomination when the week 2 nomination was Piia Jarkko?",
    "question_th": "ผู้ที่ได้รับการเสนอชื่อเข้าชิงสัปดาห์ที่ 1 คือใคร เมื่อ Piia Jarkko ผู้ได้รับการเสนอชื่อเข้าชิงสัปดาห์ที่ 2 คือใคร",
    "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_en": "Who was the week 12 nomination when the week 9 nomination walked (day 11)?",
    "question_th": "ใครคือผู้ได้รับการเสนอชื่อเข้าชิงสัปดาห์ที่ 12 เมื่อได้รับการเสนอชื่อเข้าชิงสัปดาห์ที่ 9 (วันที่ 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_en": "What is the week 12 nomination that had a week 1 nomination of Maria Maxine and a week 2 nomination of Henri Satu?",
    "question_th": "การเสนอชื่อสัปดาห์ที่ 12 ที่ได้รับการเสนอชื่อเข้าชิง Maria Maxine สัปดาห์ที่ 1 และการเสนอชื่อ Henri Satu สัปดาห์ที่ 2 คืออะไร",
    "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_en": "Name the heightfor city of license of malone, ny",
    "question_th": "ตั้งชื่อส่วนสูงของเมืองใบอนุญาตของมาโลน นิวยอร์ก",
    "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_en": "Name the class with call sign of wmhn",
    "question_th": "ตั้งชื่อคลาสด้วยสัญญาณเรียก wmhn",
    "context": "CREATE TABLE table_name_74 (class VARCHAR, call_sign VARCHAR)"
  },
  {
    "answer": "SELECT frequency FROM table_name_78 WHERE class = \"b\"",
    "question_en": "Name the frequency with class of b",
    "question_th": "ตั้งชื่อความถี่ด้วยคลาสของ 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_en": "Name the city of license with frequency of 90.1 fm",
    "question_th": "ตั้งชื่อเมืองที่อนุญาตด้วยความถี่ 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_en": "Name the total number of ERP/Power W for frequency of 89.3 fm and facility ID less than 40430",
    "question_th": "ตั้งชื่อจำนวน ERP/Power W ทั้งหมดสำหรับความถี่ 89.3 fm และรหัสสิ่งอำนวยความสะดวกน้อยกว่า 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_en": "What is the Engine(s) that has  f Tyres in 1971?",
    "question_th": "เครื่องยนต์อะไรที่มียาง f ในปี 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_en": "What was the attendance on June 27?",
    "question_th": "ผู้เข้าร่วมในวันที่ 27 มิถุนายนมีอะไรบ้าง?",
    "context": "CREATE TABLE table_name_6 (att INTEGER, date VARCHAR)"
  },
  {
    "answer": "SELECT surface FROM table_name_3 WHERE date = \"12 september 2006\"",
    "question_en": "Name the surface for 12 september 2006",
    "question_th": "ตั้งชื่อพื้นผิวสำหรับ 12 กันยายน 2549",
    "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_en": "Name the score for opponent in the final being paul baccanello",
    "question_th": "ตั้งชื่อคะแนนของคู่ต่อสู้ในรอบชิงชนะเลิศเป็น พอล บัคคาเนลโล",
    "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_en": "Name the surface for 20 march 2007",
    "question_th": "ตั้งชื่อพื้นผิวสำหรับวันที่ 20 มีนาคม 2550",
    "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_en": "Name the date for opponent in the final being ignasi villacampa",
    "question_th": "ตั้งชื่อวันที่ของคู่ต่อสู้ในรอบชิงชนะเลิศคือ อิกนาซี วิลลากัมปา",
    "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_en": "Name the tournament for grass surface and opponent in the final being paul baccanello",
    "question_th": "ตั้งชื่อการแข่งขันสำหรับพื้นผิวหญ้าและคู่ต่อสู้ในรอบชิงชนะเลิศคือ 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_en": "When is the earliest year in milan that guillermo vilas was champion?",
    "question_th": "กิเยร์โม วิลาสเป็นแชมป์ในมิลานปีแรกสุดคือเมื่อไหร่?",
    "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_en": "Where in 1985 was tim mayotte runner up?",
    "question_th": "Tim Mayotte รองแชมป์อยู่ที่ไหนในปี 1985?",
    "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_en": "What was the score when stefan edberg won after 1978?",
    "question_th": "สเตฟาน เอ็ดเบิร์ก ชนะหลังปี 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_en": "What is the Facility ID that has a City of license of wheeling, and a ERP kW less than 4.5?",
    "question_th": "รหัสสิ่งอำนวยความสะดวกที่มีเมืองที่มีใบอนุญาตล้อและ ERP kW น้อยกว่า 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_en": "What is the City of license that has a ERP kW more than 4.5 and w23dr-d?",
    "question_th": "เมืองแห่งใบอนุญาตที่มี ERP kW มากกว่า 4.5 และ 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_en": "What is the location that has a date of demolition of 1940 and has a church named Christ Church Greyfriars?",
    "question_th": "สถานที่ซึ่งมีวันรื้อถอนในปี 1940 และมีโบสถ์ชื่อ 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_en": "How many dates of demolition are located on Wood Street?",
    "question_th": "มีการรื้อถอนที่ 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_en": "What was Olga Govortsova's score when she played on a clay surface on 19 May 2008?",
    "question_th": "คะแนนของ Olga Govortsova เมื่อเธอเล่นบนพื้นดินเมื่อวันที่ 19 พฤษภาคม พ.ศ. 2551 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_11 (score VARCHAR, surface VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT outcome FROM table_name_59 WHERE surface = \"grass\"",
    "question_en": "What was Olga Govortsova's outcome when she played on a grass surface?",
    "question_th": "ผลลัพธ์ของ Olga Govortsova เป็นอย่างไรเมื่อเธอเล่นบนพื้นหญ้า",
    "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_en": "What was Olga Govortsova's goal when she played on a clay surface on 26 May 2012?",
    "question_th": "เป้าหมายของ Olga Govortsova เมื่อเธอเล่นบนพื้นดินเหนียวเมื่อวันที่ 26 พฤษภาคม 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_en": "Which mountain range has a rank of 19?",
    "question_th": "เทือกเขาใดมีอันดับ 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_en": "Which location includes Coast Mountains with a rank less than 18 at Skihist Mountain?",
    "question_th": "สถานที่ใดรวมถึง Coast Mountains ที่มีอันดับน้อยกว่า 18 ใน 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_en": "Which mountain range includes Mount Hubbard?",
    "question_th": "เทือกเขาใดรวมถึง 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_en": "Which province includes Axel Heiberg Island?",
    "question_th": "จังหวัดใดรวมถึงเกาะ Axel Heiberg",
    "context": "CREATE TABLE table_name_25 (province VARCHAR, mountain_range VARCHAR)"
  },
  {
    "answer": "SELECT notes FROM table_name_94 WHERE position = \"12th\"",
    "question_en": "What are the notes of events that finished in 12th position?",
    "question_th": "บันทึกเหตุการณ์ที่จบอันดับที่ 12 มีอะไรบ้าง?",
    "context": "CREATE TABLE table_name_94 (notes VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_40 WHERE position = \"2nd\" AND year = 1985",
    "question_en": "Which venue was finished in 2nd position in 1985?",
    "question_th": "สนามไหนจบอันดับ 2 ในปี 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_en": "What is the average year of events that took place in Antwerp, Belgium?",
    "question_th": "เหตุการณ์ที่เกิดขึ้นในเมืองแอนต์เวิร์ป ประเทศเบลเยียม โดยเฉลี่ยคือปีใด",
    "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_en": "What's the year of the event that took place most recently in Antwerp, Belgium with team competition notes?",
    "question_th": "งานล่าสุดที่เมืองแอนต์เวิร์ป ประเทศเบลเยียม จัดขึ้นในปีใด พร้อมบันทึกการแข่งขันแบบทีม",
    "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_en": "What was the label's format LP and catalog of CH-9192?",
    "question_th": "รูปแบบของฉลาก LP และแค็ตตาล็อกของ 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_en": "When was Catalog CHD-9192 published?",
    "question_th": "แคตตาล็อก CHD-9192 ได้รับการเผยแพร่เมื่อใด",
    "context": "CREATE TABLE table_name_66 (date VARCHAR, catalog VARCHAR)"
  },
  {
    "answer": "SELECT fcc_info FROM table_name_64 WHERE frequency_mhz = 107.5",
    "question_en": "I need the FCC info on the radio Frequency MHz 107.5?",
    "question_th": "ฉันต้องการข้อมูล FCC เกี่ยวกับความถี่วิทยุ 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_en": "Give me the MHz Frequency of Allapattah, Florida.",
    "question_th": "ขอความถี่ MHz ของ 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_en": "What class does the w298ak sign belong to?",
    "question_th": "ป้าย w298ak อยู่ในคลาสใด?",
    "context": "CREATE TABLE table_name_10 (class VARCHAR, call_sign VARCHAR)"
  },
  {
    "answer": "SELECT class FROM table_name_9 WHERE erp_w = 800",
    "question_en": "What class is ERP W of 800?",
    "question_th": "ERP W ของ 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_en": "What is the total of Goals Conceded that has Points smaller than 21 and a Lost thats smaller than 8?",
    "question_th": "ประตูที่เสียไปทั้งหมดที่มีคะแนนน้อยกว่า 21 และแพ้ที่น้อยกว่า 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_en": "What's the total of Lost that's got Points larger than 28, Draw of 5, and Place that's smaller than 1?",
    "question_th": "ผลรวมของการแพ้ที่มีแต้มมากกว่า 28 เสมอ 5 และอันดับที่น้อยกว่า 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ético balboa\"",
    "question_en": "What's the total of Goals Scored with Points that's smaller than 27, and a Team of C.D. Atlético Balboa?",
    "question_th": "จำนวนประตูทั้งหมดที่ทำได้ด้วยคะแนนที่น้อยกว่า 27 และทีมของ CD Atlético 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_en": "What is listed as the Highest Played and that has a Place that is larger than 10?",
    "question_th": "อะไรคือรายการที่มีผู้เล่นสูงสุดและมีอันดับมากกว่า 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_en": "What is listed as the Highest Played, has Points of 17, and Draw that is smaller than 5?",
    "question_th": "อะไรคือสิ่งที่ระบุว่ามีผู้เล่นสูงสุด มีแต้ม 17 และเสมอที่น้อยกว่า 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_en": "When was the game that ended with a score of 6-4?",
    "question_th": "เกมที่จบลงด้วยสกอร์ 6-4 คือเมื่อไหร่?",
    "context": "CREATE TABLE table_name_38 (date VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_39 WHERE date = \"april 8\"",
    "question_en": "What was the score on April 8?",
    "question_th": "คะแนนวันที่ 8 เมษายน เป็นอย่างไรบ้าง?",
    "context": "CREATE TABLE table_name_39 (score VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT decision FROM table_name_12 WHERE home = \"minnesota\"",
    "question_en": "What was the decision in Minnesota?",
    "question_th": "การตัดสินใจในรัฐมินนิโซตาคืออะไร?",
    "context": "CREATE TABLE table_name_12 (decision VARCHAR, home VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_80 WHERE record = \"58–15–8\"",
    "question_en": "Which score has a record of 58–15–8?",
    "question_th": "คะแนนใดมีสถิติ 58–15–8?",
    "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_en": "Which section has a level of Tier 3, is in the 6th position, and is in the 1937-38 season?",
    "question_th": "ส่วนใดมีระดับเทียร์ 3 อยู่ในอันดับที่ 6 และอยู่ในฤดูกาล 1937-38?",
    "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_en": "Which section is in the 6th position?",
    "question_th": "ส่วนไหนอยู่ในอันดับที่ 6?",
    "context": "CREATE TABLE table_name_8 (section VARCHAR, position VARCHAR)"
  },
  {
    "answer": "SELECT attendance FROM table_name_92 WHERE date = \"june 11\"",
    "question_en": "Name the attendance with date of june 11",
    "question_th": "ตั้งชื่อการเข้าร่วมด้วยวันที่ 11 มิถุนายน",
    "context": "CREATE TABLE table_name_92 (attendance VARCHAR, date VARCHAR)"
  },
  {
    "answer": "SELECT partnerships FROM table_name_70 WHERE runs = \"27\"",
    "question_en": "Which partnership has a run number of 27?",
    "question_th": "ห้างหุ้นส่วนใดมีเลขวิ่ง 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_en": "What venue did the parntership of shoaib malik / misbah-ul-haq occur?",
    "question_th": "สถานประกอบการของชุอัยบ์ มาลิก / มิสบะฮ์-อุล-ฮัก เกิดขึ้นที่ใด?",
    "context": "CREATE TABLE table_name_79 (venue VARCHAR, partnerships VARCHAR)"
  },
  {
    "answer": "SELECT venue FROM table_name_74 WHERE partnerships = \"herschelle gibbs / justin kemp\"",
    "question_en": "What venue did the partnership of herschelle gibbs / justin kemp happen?",
    "question_th": "ความร่วมมือระหว่างเฮอร์เชล กิ๊บส์ / จัสติน เคมป์ เกิดขึ้นที่ใด?",
    "context": "CREATE TABLE table_name_74 (venue VARCHAR, partnerships VARCHAR)"
  },
  {
    "answer": "SELECT played FROM table_name_77 WHERE points_for = \"310\"",
    "question_en": "What is the number Played that has 310 Points for?",
    "question_th": "หมายเลขที่เล่นมี 310 แต้มเพื่ออะไร?",
    "context": "CREATE TABLE table_name_77 (played VARCHAR, points_for VARCHAR)"
  },
  {
    "answer": "SELECT losing_bonus FROM table_name_62 WHERE points_against = \"588\"",
    "question_en": "What Losing bonus has a Points against of 588?",
    "question_th": "โบนัสการแพ้ใดมีคะแนนเทียบกับ 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_en": "What Tries against has a Losing bonus of 7?",
    "question_th": "การพยายามต่อต้านอะไรมีโบนัสการสูญเสีย 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_en": "What Try bonus has a Points against of 488?",
    "question_th": "โบนัสลองอะไรมีคะแนนเทียบกับ 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_en": "What Points for has a Try bonus of 140?",
    "question_th": "คะแนนอะไรที่จะได้รับโบนัสลอง 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_en": "What Drawn has a Tries against of 0?",
    "question_th": "สิ่งที่เสมอกันมีความพยายามต่อ 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_en": "What is the days held the champion with a reign larger than 3 and 1 defense has?",
    "question_th": "สมัยใดที่ครองแชมป์ด้วยการครองราชย์มากกว่า 3 และ 1 การป้องกันได้?",
    "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_en": "What is the days held the champion with a reign larger than 3 and less than 1 defense has?",
    "question_th": "แชมป์ครองแชมป์ที่ครองราชย์มากกว่า 3 สมัย และป้องกันน้อยกว่า 1 สมัยคือวันไหน?",
    "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_en": "What is the average defenses a champion with 404 days held and a reign larger than 1 has?",
    "question_th": "การป้องกันโดยเฉลี่ยของแชมป์เปี้ยนที่ถือครอง 404 วันและการครองราชย์ที่มากกว่า 1 เป็นเท่าใด?",
    "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_en": "What is the lowest defense a champion with 345 days held has?",
    "question_th": "การป้องกันที่ต่ำที่สุดที่แชมป์เปี้ยนที่มี 345 วันมีคือเท่าใด?",
    "context": "CREATE TABLE table_name_46 (defenses INTEGER, days_held VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_6 WHERE record = \"76-72\"",
    "question_en": "On what date was there a record of 76-72?",
    "question_th": "มีสถิติ 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_en": "What was the attendance that had a loss of Ponson (1-5)?",
    "question_th": "ผู้เข้าร่วมที่มีการสูญเสีย 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_en": "On which day was there a record of 36-39?",
    "question_th": "มีสถิติ 36-39 วันไหน?",
    "context": "CREATE TABLE table_name_70 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_88 WHERE record = \"30-31\"",
    "question_en": "On what day was the record 30-31?",
    "question_th": "สถิติ 30-31 เกิดขึ้นวันไหน?",
    "context": "CREATE TABLE table_name_88 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT opponent FROM table_name_82 WHERE loss = \"leonard (7–8)\"",
    "question_en": "Who was the opponent at the game that had a loss of Leonard (7–8)?",
    "question_th": "คู่ต่อสู้ในเกมที่แพ้ลีโอนาร์ด (7–8) คือใคร?",
    "context": "CREATE TABLE table_name_82 (opponent VARCHAR, loss VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_3 WHERE record = \"18–43\"",
    "question_en": "What was the score of the game when the record was 18–43?",
    "question_th": "คะแนนของเกมเมื่อบันทึกคือ 18–43 เป็นเท่าใด",
    "context": "CREATE TABLE table_name_3 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_75 WHERE opponent = \"royals\" AND record = \"24–52\"",
    "question_en": "What was the score of the game against the Royals when the record was 24–52?",
    "question_th": "คะแนนของเกมกับรอยัลส์เมื่อสถิติอยู่ที่ 24–52 คืออะไร?",
    "context": "CREATE TABLE table_name_75 (score VARCHAR, opponent VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_36 WHERE record = \"22–46\"",
    "question_en": "What was the score of the game when the record was 22–46?",
    "question_th": "คะแนนของเกมเมื่อสถิติอยู่ที่ 22–46 คืออะไร?",
    "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_en": "What is the real name of the person whose primary military specialty is shock paratrooper?",
    "question_th": "ชื่อจริงของบุคคลที่เชี่ยวชาญด้านการทหารเบื้องต้นคือพลร่มช็อกคืออะไร?",
    "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_en": "What is the birthplace of Pete Sanderson?",
    "question_th": "บ้านเกิดของ 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_en": "What role did Jean-Luc Bouvier serve?",
    "question_th": "Jean-Luc Bouvier ทำหน้าที่อะไร?",
    "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_en": "What is the real name of the person who is a pilot of the silent attack kayak?",
    "question_th": "คนขับเรือคายัค Silent Attack ชื่อจริงชื่ออะไร?",
    "context": "CREATE TABLE table_name_28 (real_name VARCHAR, function__figure_ VARCHAR)"
  },
  {
    "answer": "SELECT code_name FROM table_name_94 WHERE birthplace = \"liverpool\"",
    "question_en": "What is the code name of the person born in Liverpool?",
    "question_th": "บุคคลที่เกิดในลิเวอร์พูลมีชื่อรหัสว่าอะไร?",
    "context": "CREATE TABLE table_name_94 (code_name VARCHAR, birthplace VARCHAR)"
  },
  {
    "answer": "SELECT name FROM table_name_25 WHERE sport = \"canoeing\"",
    "question_en": "What is the names for the medalist in the sport of canoeing?",
    "question_th": "ผู้ชนะเลิศกีฬาพายเรือแคนูชื่ออะไร",
    "context": "CREATE TABLE table_name_25 (name VARCHAR, sport VARCHAR)"
  },
  {
    "answer": "SELECT games FROM table_name_90 WHERE event = \"women's half middleweight\"",
    "question_en": "What games had the women's half middleweight event?",
    "question_th": "เกมใดบ้างที่มีการแข่งขันฮาล์ฟมิดเดิ้ลเวทหญิง?",
    "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_en": "Who received the bronze medal in the 2000 Sydney games?",
    "question_th": "ใครได้รับเหรียญทองแดงในเกมที่ซิดนีย์ปี 2000",
    "context": "CREATE TABLE table_name_95 (name VARCHAR, medal VARCHAR, games VARCHAR)"
  },
  {
    "answer": "SELECT COUNT(attendance) FROM table_name_80 WHERE opponent = \"twins\"",
    "question_en": "How many people attended when opponent was twins?",
    "question_th": "มีผู้เข้าร่วมกี่คนเมื่อคู่ต่อสู้เป็นฝาแฝด?",
    "context": "CREATE TABLE table_name_80 (attendance VARCHAR, opponent VARCHAR)"
  },
  {
    "answer": "SELECT date FROM table_name_55 WHERE record = \"41-46\"",
    "question_en": "Which date has a Record of 41-46?",
    "question_th": "วันไหนมีสถิติ 41-46?",
    "context": "CREATE TABLE table_name_55 (date VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_66 WHERE record = \"48-55\"",
    "question_en": "Which score has a Record of 48-55?",
    "question_th": "คะแนนใดมีสถิติ 48-55?",
    "context": "CREATE TABLE table_name_66 (score VARCHAR, record VARCHAR)"
  },
  {
    "answer": "SELECT score FROM table_name_96 WHERE record = \"44-49\"",
    "question_en": "Which score has a Record of 44-49?",
    "question_th": "คะแนนใดมีสถิติ 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_en": "Which score has an Opponent of white sox, and a Record of 2-0?",
    "question_th": "คะแนนใดมีฝ่ายตรงข้ามของทีมไวท์ซ็อกซ์และมีสถิติ 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_en": "How many votes did candice sjostrom receive?",
    "question_th": "Candice sjostrom ได้รับคะแนนโหวตกี่คะแนน?",
    "context": "CREATE TABLE table_name_94 (popular_votes INTEGER, candidate VARCHAR)"
  },
  {
    "answer": "SELECT percentage FROM table_name_23 WHERE candidate = \"chris wright\"",
    "question_en": "What percentage did chris wright receive?",
    "question_th": "คริส ไรท์ ได้รับกี่เปอร์เซ็นต์?",
    "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_en": "How many votes for the candidate after 1992, 1.59% of the vote, and the office of us representative 4?",
    "question_th": "จำนวนคะแนนเสียงสำหรับผู้สมัครหลังปี 1992, 1.59% ของคะแนนเสียง และสำนักงานของเราตัวแทน 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_en": "What years did J. Smith Young serve as a Representative?",
    "question_th": "J. Smith Young ดำรงตำแหน่งตัวแทนเมื่อกี่ปี?",
    "context": "CREATE TABLE table_name_36 (years VARCHAR, representative VARCHAR)"
  },
  {
    "answer": "SELECT party FROM table_name_58 WHERE representative = \"thomas l. young\"",
    "question_en": "Which party did Thomas L. Young belong to?",
    "question_th": "Thomas L. Young เป็นสมาชิกพรรคใด",
    "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_en": "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?",
    "question_th": "จำนวนเหรียญรวมต่ำสุดจากประเทศที่มี 0 เหรียญทอง มากกว่า 2 เหรียญทองแดง และมากกว่า 1 เหรียญเงิน คือเท่าใด",
    "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_en": "What is the total number of silver medals for countries of rank 14, with less than 1 total medals?",
    "question_th": "จำนวนเหรียญเงินทั้งหมดของประเทศอันดับ 14 โดยมีทั้งหมดน้อยกว่า 1 เหรียญคือเท่าใด",
    "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_en": "How many tackles for the player with over 0 fumble recovries and 0 forced fumbles?",
    "question_th": "ผู้เล่นสามารถสกัดกั้นได้กี่ครั้งโดยมีการฟื้นคืนชีพจากการคลำหา 0 ครั้งและการบังคับคลำ 0 ครั้ง?",
    "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_en": "How many forced fumbles for jim laney with under 2 solo tackles?",
    "question_th": "มีกี่ครั้งที่ถูกบังคับให้คลำหาจิม ลานีย์ด้วยการโหม่งเดี่ยวต่ำกว่า 2 ครั้ง?",
    "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_en": "What is the high total for players with over 15 solo tackles?",
    "question_th": "ยอดรวมสูงสุดสำหรับผู้เล่นที่มีการโหม่งเดี่ยวมากกว่า 15 ครั้งเป็นเท่าใด?",
    "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_en": "How many fumble recoveries for scott gajos with 0 forced fubmles, 0 sacks, and under 2 solo tackles?",
    "question_th": "สก็อตต์ กาโจส ฟูมเบิลที่ทำได้ 0 ครั้ง, 0 แซ็ค และโหม่งโซโลต่ำกว่า 2 ครั้งมีกี่ครั้ง?",
    "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_en": "Who is the Opponent playing at 20:00 GMT at Camp Nou?",
    "question_th": "ฝ่ายตรงข้ามจะเล่นเวลา 20:00 GMT ที่คัมป์นูคือใคร?",
    "context": "CREATE TABLE table_name_64 (opponent VARCHAR, time VARCHAR, ground VARCHAR)"
  },
  {
    "answer": "SELECT time FROM table_name_35 WHERE score = \"3-2\"",
    "question_en": "What time was the match played with a score of 3-2?",
    "question_th": "แมตช์นี้เล่นกันกี่โมงด้วยสกอร์ 3-2?",
    "context": "CREATE TABLE table_name_35 (time VARCHAR, score VARCHAR)"
  },
  {
    "answer": "SELECT ground FROM table_name_83 WHERE opponent = \"aston villa\"",
    "question_en": "On which ground did the team play Aston Villa?",
    "question_th": "ทีมเล่นกับแอสตันวิลล่าบนสนามไหน?",
    "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_en": "What kind of competition was it at San Siro at 18:30 GMT?",
    "question_th": "การแข่งขันประเภทใดที่ซาน ซิโร เวลา 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_en": "What is the total number of decile for the redwood school locality?",
    "question_th": "จำนวนเดซิลของเขตโรงเรียนเรดวูดทั้งหมดเป็นเท่าใด",
    "context": "CREATE TABLE table_name_34 (decile VARCHAR, name VARCHAR)"
  },
  {
    "answer": "SELECT report FROM table_name_71 WHERE circuit = \"tripoli\"",
    "question_en": "Which report includes a Circuit of Tripoli?",
    "question_th": "รายงานใดรวมถึง Circuit of Tripoli?",
    "context": "CREATE TABLE table_name_71 (report VARCHAR, circuit VARCHAR)"
  }
]